diff --git a/README.rst b/README.rst
index faf1176cdc5d18b03d5c3ff690fdcab964572c05..76c16180c859dd2e35bdd1d95cefb414e993d565 100644
--- a/README.rst
+++ b/README.rst
@@ -11,26 +11,93 @@
 
 |pipeline| |license| |coverage|
 
-Multiview Generator
-===================
+MAGE : Multi-view Artificial Generation Engine
+==============================================
 
-This package aims at generating customized mutliview datasets to facilitate the
-development of new multiview algorithms and their testing on simulated data
+This package aims at generating customized mutli-view datasets to facilitate the
+development of new multi-view algorithms and their testing on simulated data
 representing specific tasks.
 
-Understanding the concept
--------------------------
+Getting started
+---------------
 
-The main idea of the generator is to build several monoview sub-problems that
+This code has been originally developed on Ubuntu, but if the compatibility
+with Mac or Windows is mandatory for you, contact us so we adapt it.
 
++----------+-------------------+
+| Platform | Last positive test|
++==========+===================+
+|   Linux  |  |pipeline|       |
++----------+-------------------+
+| Mac      | Not verified yet  |
++----------+-------------------+
+| Windows  | Not verified yet  |
++----------+-------------------+
 
-.. image:: _static/fig_rec.png
-   :width: 100%
-   :align: center
+Prerequisites
+<<<<<<<<<<<<<
 
+To be able to use this project, you'll need :
 
-Structure
----------
-The class of intereset is located in ``generator/multiple_sub_problems.py`` and called ``MultiViewSubProblemsGenerator``.
+* `Python 3 <https://docs.python.org/3/>`_
 
-A demo is available in ``demo/demo.py`` and generates a 3D dataset, along with a figure that analyzes it.
\ No newline at end of file
+And the following python modules will be automatically installed  :
+
+* `numpy <http://www.numpy.org/>`_, `scipy <https://scipy.org/>`_,
+* `matplotlib <http://matplotlib.org/>`_ - Used to plot results,
+* `sklearn <http://scikit-learn.org/stable/>`_ - Used for the monoview classifiers,
+* `h5py <https://www.h5py.org>`_ - Used to generate HDF5 datasets on hard drive and use them to spare RAM,
+* `pandas <https://pandas.pydata.org/>`_ - Used to manipulate data efficiently,
+* `docutils <https://pypi.org/project/docutils/>`_ - Used to generate documentation,
+* `pyyaml <https://pypi.org/project/PyYAML/>`_ - Used to read the config files,
+* `plotly <https://plot.ly/>`_ - Used to generate interactive HTML visuals,
+* `tabulate <https://pypi.org/project/tabulate/>`_ - Used to generated the confusion matrix,
+* `jupyter <https://jupyter.org/>`_ - Used for the tutorials
+
+
+Installing
+<<<<<<<<<<
+
+Once you cloned the project from the `gitlab repository <https://gitlab.lis-lab.fr/dev/multiview_generator/>`_, you just have to use :
+
+.. code:: bash
+
+    cd path/to/multiview_generator/
+    pip3 install -e .
+
+
+In the `multiview_generator` directory to install MAGE and its dependencies.
+
+
+Running the tests
+<<<<<<<<<<<<<<<<<
+
+To run the test suite of MAGE, run :
+
+.. code:: bash
+
+    cd path/to/multiview_generator
+    pip install -e .[dev]
+    pytest
+
+The coverage report is automatically generated and stored in the ``htmlcov/`` directory
+
+Building the documentation
+<<<<<<<<<<<<<<<<<<<<<<<<<<
+
+To locally build the `documentation <https://dev.pages.lis-lab.fr/multiview_generator/>`_ run :
+
+.. code:: bash
+
+    cd path/to/multiview_generator
+    pip install -e .[doc]
+    python setup.py build_sphinx
+
+The locally built html files will be stored in ``path/to/multiview_generator/build/sphinx/html``
+
+Authors
+-------
+
+* **Baptiste BAUVIN**
+* **Dominique BENIELLI**
+* **Sokol Koço**
\ No newline at end of file
diff --git a/demo/tutorials/getting_started.ipynb b/demo/tutorials/getting_started.ipynb
index 9d42d7ea68689916023d857b0fcbc7294067ee80..69bfc41473b7197aad186ce3852835a90093584d 100644
--- a/demo/tutorials/getting_started.ipynb
+++ b/demo/tutorials/getting_started.ipynb
@@ -11,7 +11,7 @@
    "source": [
     "# Multiview Dataset Generator Demo\n",
     "\n",
-    "Once you have [installed](link_ton_install) SMuDGE, you are able to run it with this notebook."
+    "Once you have [installed](link_ton_install) MAGE, you are able to run it with this notebook."
    ]
   },
   {
@@ -25,7 +25,7 @@
    },
    "outputs": [],
    "source": [
-    "from multiview_generator.multiple_sub_problems import MultiViewSubProblemsGenerator\n",
+    "from multiview_generator.gaussian_classes import MultiViewGaussianSubProblemsGenerator\n",
     "from tabulate import tabulate\n",
     "import numpy as np\n",
     "\n",
@@ -86,21 +86,21 @@
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "+------+-----+------+------+\n",
-      "| 0.4  | 0.4 | 0.4  | 0.4  |\n",
-      "+------+-----+------+------+\n",
-      "| 0.55 | 0.4 | 0.4  | 0.4  |\n",
-      "+------+-----+------+------+\n",
-      "| 0.4  | 0.5 | 0.52 | 0.55 |\n",
-      "+------+-----+------+------+\n"
+      "+------+------+------+------+\n",
+      "| 0.3  | 0.32 | 0.38 | 0.3  |\n",
+      "+------+------+------+------+\n",
+      "| 0.35 | 0.28 | 0.2  | 0.15 |\n",
+      "+------+------+------+------+\n",
+      "| 0.25 | 0.29 | 0.15 | 0.21 |\n",
+      "+------+------+------+------+\n"
      ]
     }
    ],
    "source": [
     "error_matrix = [\n",
-    "   [0.4, 0.4, 0.4, 0.4],\n",
-    "   [0.55, 0.4, 0.4, 0.4],\n",
-    "   [0.4, 0.5, 0.52, 0.55]\n",
+    "   [0.30, 0.32, 0.38, 0.30],\n",
+    "   [0.35, 0.28, 0.20, 0.15],\n",
+    "   [0.25, 0.29, 0.15, 0.21]\n",
     "]\n",
     "print(tabulate(error_matrix, tablefmt=\"grid\"))"
    ]
@@ -162,12 +162,6 @@
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "4\n",
-      "2\n",
-      "4\n",
-      "2\n",
-      "4\n",
-      "2\n",
       "View 1 of shape (1998, 3)\n",
       "View 2 of shape (1998, 3)\n",
       "View 3 of shape (1998, 3)\n",
@@ -176,7 +170,7 @@
     }
    ],
    "source": [
-    "generator = MultiViewSubProblemsGenerator(name=name, n_views=n_views, \n",
+    "generator = MultiViewGaussianSubProblemsGenerator(name=name, n_views=n_views, \n",
     "                                          n_classes=n_classes, \n",
     "                                          n_samples=n_samples, \n",
     "                                          n_features=n_features, \n",
@@ -184,10 +178,10 @@
     "                                          error_matrix=error_matrix, \n",
     "                                          random_state=random_state)  \n",
     "\n",
-    "view_data, y = generator.generate_multi_view_dataset()\n",
+    "dataset, y = generator.generate_multi_view_dataset()\n",
     "\n",
-    "for view_index, view_datum in enumerate(view_data):\n",
-    "    print(\"View {} of shape {}\".format(view_index+1, view_datum.shape))\n"
+    "for view_index, view_data in enumerate(dataset):\n",
+    "    print(\"View {} of shape {}\".format(view_index+1, view_data.shape))\n"
    ]
   },
   {
@@ -199,7 +193,7 @@
     }
    },
    "source": [
-    "Here, we see that the output shape is 999 instead of 1000 as the classes are supposed to be equivalent. \n",
+    "Here, we see that the output shape is 1998 instead of 1000 as the classes are supposed to be equivalent. \n",
     "\n",
     "## Get a description of it\n",
     "\n",
@@ -248,9 +242,9 @@
       "text/markdown": [
        "# Generated dataset description\n",
        "\n",
-       "The dataset named `demo` has been generated by [SMuDGE](https://gitlab.lis-lab.fr/dev/m) and is comprised of \n",
+       "The dataset named `demo` has been generated by [MAGE](https://gitlab.lis-lab.fr/dev/multiview_generator) and is comprised of \n",
        "\n",
-       "* 1998 examples, splitted in \n",
+       "* 1998 samples, splitted in \n",
        "* 3 classes, described by \n",
        "* 4 views.\n",
        "\n",
@@ -258,95 +252,99 @@
        " \n",
        "|         |   View 1 |   View 2 |   View 3 |   View 4 |\n",
        "|---------|----------|----------|----------|----------|\n",
-       "| Class 1 |     0.4  |      0.4 |     0.4  |     0.4  |\n",
-       "| Class 2 |     0.55 |      0.4 |     0.4  |     0.4  |\n",
-       "| Class 3 |     0.4  |      0.5 |     0.52 |     0.55 |\n",
+       "| Class 1 |     0.3  |     0.32 |     0.38 |     0.3  |\n",
+       "| Class 2 |     0.35 |     0.28 |     0.2  |     0.15 |\n",
+       "| Class 3 |     0.25 |     0.29 |     0.15 |     0.21 |\n",
        "\n",
        " The classes are balanced as : \n",
        "\n",
-       "* Class 1 : 666 examples (33% of the dataset)\n",
-       "* Class 2 : 666 examples (33% of the dataset)\n",
-       "* Class 3 : 666 examples (33% of the dataset)\n",
+       "* Class 1 : 666 samples (33% of the dataset)\n",
+       "* Class 2 : 666 samples (33% of the dataset)\n",
+       "* Class 3 : 666 samples (33% of the dataset)\n",
        "\n",
        " The views have \n",
        "\n",
-       "* 0.0% redundancy, \n",
-       "* 0.0% mutual error and \n",
-       "* 0.0% complementarity,\n",
-       "\n",
-       "the remaining examples are randomly mis-labelled to fit the input error matrix.\n",
+       "* 64.56% redundancy, \n",
+       "* 1.0% mutual error and \n",
+       "* 34.53% complementarity with a level of [[3]\n",
+       " [3]\n",
+       " [3]].\n",
        "\n",
        "## Views description\n",
        "\n",
        "### View 1\n",
        "\n",
-       "This view is generated with [`make_classification`](https://scikit-learn.org/stable/modules/generated/sklearn.datasets.make_classification.html), with the following configuration : \n",
+       "This view is generated with StumpsGenerator, with the following configuration : \n",
        "```yaml\n",
-       "class_sep: 10.0\n",
-       "flip_y: 0\n",
-       "hypercube: true\n",
+       "class_sep: 1.0\n",
        "n_clusters_per_class: 1\n",
        "n_features: 3\n",
-       "n_informative: 3\n",
-       "n_redundant: 0\n",
-       "n_repeated: 0\n",
-       "scale: 1.0\n",
-       "shift: 0.0\n",
-       "shuffle: false\n",
        "```\n",
        "\n",
+       "This view has 3 features, among which 2 are relevant for classification (they are the 2 first columns of the view) the other are filled with uniform noise.\n",
+       "\n",
+       " Its empirical bayesian classifier is a decision stump\n",
+       "\n",
        "### View 2\n",
        "\n",
-       "This view is generated with [`make_classification`](https://scikit-learn.org/stable/modules/generated/sklearn.datasets.make_classification.html), with the following configuration : \n",
+       "This view is generated with StumpsGenerator, with the following configuration : \n",
        "```yaml\n",
-       "class_sep: 10.0\n",
-       "flip_y: 0\n",
-       "hypercube: true\n",
+       "class_sep: 1.0\n",
        "n_clusters_per_class: 1\n",
        "n_features: 3\n",
-       "n_informative: 3\n",
-       "n_redundant: 0\n",
-       "n_repeated: 0\n",
-       "scale: 1.0\n",
-       "shift: 0.0\n",
-       "shuffle: false\n",
        "```\n",
        "\n",
+       "This view has 3 features, among which 2 are relevant for classification (they are the 2 first columns of the view) the other are filled with uniform noise.\n",
+       "\n",
+       " Its empirical bayesian classifier is a decision stump\n",
+       "\n",
        "### View 3\n",
        "\n",
-       "This view is generated with [`make_classification`](https://scikit-learn.org/stable/modules/generated/sklearn.datasets.make_classification.html), with the following configuration : \n",
+       "This view is generated with StumpsGenerator, with the following configuration : \n",
        "```yaml\n",
-       "class_sep: 10.0\n",
-       "flip_y: 0\n",
-       "hypercube: true\n",
+       "class_sep: 1.0\n",
        "n_clusters_per_class: 1\n",
        "n_features: 3\n",
-       "n_informative: 3\n",
-       "n_redundant: 0\n",
-       "n_repeated: 0\n",
-       "scale: 1.0\n",
-       "shift: 0.0\n",
-       "shuffle: false\n",
        "```\n",
        "\n",
+       "This view has 3 features, among which 2 are relevant for classification (they are the 2 first columns of the view) the other are filled with uniform noise.\n",
+       "\n",
+       " Its empirical bayesian classifier is a decision stump\n",
+       "\n",
        "### View 4\n",
        "\n",
-       "This view is generated with [`make_classification`](https://scikit-learn.org/stable/modules/generated/sklearn.datasets.make_classification.html), with the following configuration : \n",
+       "This view is generated with StumpsGenerator, with the following configuration : \n",
        "```yaml\n",
-       "class_sep: 10.0\n",
-       "flip_y: 0\n",
-       "hypercube: true\n",
+       "class_sep: 1.0\n",
        "n_clusters_per_class: 1\n",
        "n_features: 3\n",
-       "n_informative: 3\n",
-       "n_redundant: 0\n",
-       "n_repeated: 0\n",
-       "scale: 1.0\n",
-       "shift: 0.0\n",
-       "shuffle: false\n",
        "```\n",
        "\n",
-       "This report has been automatically generated on January 25, 2021 at 10:49:17"
+       "This view has 3 features, among which 2 are relevant for classification (they are the 2 first columns of the view) the other are filled with uniform noise.\n",
+       "\n",
+       " Its empirical bayesian classifier is a decision stump\n",
+       "\n",
+       "## Statistical analysis\n",
+       "\n",
+       "Bayes error matrix : \n",
+       "\n",
+       "|        |   Class 1 |   Class 2 |   Class 3 |\n",
+       "|--------|-----------|-----------|-----------|\n",
+       "| View 1 |  0.328829 |  0.334835 |  0.25976  |\n",
+       "| View 2 |  0.33033  |  0.282282 |  0.283784 |\n",
+       "| View 3 |  0.369369 |  0.198198 |  0.126126 |\n",
+       "| View 4 |  0.310811 |  0.141141 |  0.189189 |\n",
+       "\n",
+       " The error, as computed by the 'empirical bayes' classifier of each view : \n",
+       "\n",
+       "|        |   Class 1 |   Class 2 |   Class 3 |\n",
+       "|--------|-----------|-----------|-----------|\n",
+       "| View 1 |  0.304805 |  0.297297 | 0.363363  |\n",
+       "| View 2 |  0.325826 |  0.280781 | 0.219219  |\n",
+       "| View 3 |  0.381381 |  0.160661 | 0.0975976 |\n",
+       "| View 4 |  0.279279 |  0.148649 | 0.171171  |\n",
+       "\n",
+       "This report has been automatically generated on June 10, 2021 at 08:50:21"
       ],
       "text/plain": [
        "<IPython.core.display.Markdown object>"
@@ -398,7 +396,7 @@
    "source": [
     "This will save the description in the current directory, in a file called `demo.md` as the name of the dataset is \"demo\".\n",
     "\n",
-    "## Save it in an HDF5 file \n",
+    "## Save the dataset in an HDF5 file \n",
     "\n",
     "Moreover, it is possible to save tha dataset in an HDF5 file, compatible with [SuMMIT](https://gitlab.lis-lab.fr/baptiste.bauvin/summit/) with \n",
     " "
@@ -428,14 +426,14 @@
    "source": [
     "## Visualizing the dataset with [plotly](https://plotly.com/)\n",
     "\n",
-    "Here, we purposely used ony 3 featrues per view, so the generated dataset is easily plottable in 3D. \n",
+    "Here, we purposely used only 3 featrues per view, so the generated dataset is easily plottable in 3D. \n",
     "\n",
     "Let us plot each view : "
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 10,
+   "execution_count": 15,
    "metadata": {
     "pycharm": {
      "is_executing": false,
@@ -443,34 +441,6 @@
     }
    },
    "outputs": [
-    {
-     "data": {
-      "text/html": [
-       "        <script type=\"text/javascript\">\n",
-       "        window.PlotlyConfig = {MathJaxConfig: 'local'};\n",
-       "        if (window.MathJax) {MathJax.Hub.Config({SVG: {font: \"STIX-Web\"}});}\n",
-       "        if (typeof require !== 'undefined') {\n",
-       "        require.undef(\"plotly\");\n",
-       "        define('plotly', function(require, exports, module) {\n",
-       "            /**\n",
-       "* plotly.js v1.50.1\n",
-       "* Copyright 2012-2019, Plotly, Inc.\n",
-       "* All rights reserved.\n",
-       "* Licensed under the MIT license\n",
-       "*/\n",
-       "!function(t){if(\"object\"==typeof exports&&\"undefined\"!=typeof module)module.exports=t();else if(\"function\"==typeof define&&define.amd)define([],t);else{(\"undefined\"!=typeof window?window:\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:this).Plotly=t()}}(function(){return function(){return function t(e,r,n){function a(o,s){if(!r[o]){if(!e[o]){var l=\"function\"==typeof require&&require;if(!s&&l)return l(o,!0);if(i)return i(o,!0);var c=new Error(\"Cannot find module '\"+o+\"'\");throw c.code=\"MODULE_NOT_FOUND\",c}var u=r[o]={exports:{}};e[o][0].call(u.exports,function(t){return a(e[o][1][t]||t)},u,u.exports,t,e,r,n)}return r[o].exports}for(var i=\"function\"==typeof require&&require,o=0;o<n.length;o++)a(n[o]);return a}}()({1:[function(t,e,r){\"use strict\";var n=t(\"../src/lib\"),a={\"X,X div\":\"direction:ltr;font-family:'Open Sans', verdana, arial, sans-serif;margin:0;padding:0;\",\"X input,X button\":\"font-family:'Open Sans', verdana, arial, sans-serif;\",\"X input:focus,X button:focus\":\"outline:none;\",\"X a\":\"text-decoration:none;\",\"X a:hover\":\"text-decoration:none;\",\"X .crisp\":\"shape-rendering:crispEdges;\",\"X .user-select-none\":\"-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;\",\"X svg\":\"overflow:hidden;\",\"X svg a\":\"fill:#447adb;\",\"X svg a:hover\":\"fill:#3c6dc5;\",\"X .main-svg\":\"position:absolute;top:0;left:0;pointer-events:none;\",\"X .main-svg .draglayer\":\"pointer-events:all;\",\"X .cursor-default\":\"cursor:default;\",\"X .cursor-pointer\":\"cursor:pointer;\",\"X .cursor-crosshair\":\"cursor:crosshair;\",\"X .cursor-move\":\"cursor:move;\",\"X .cursor-col-resize\":\"cursor:col-resize;\",\"X .cursor-row-resize\":\"cursor:row-resize;\",\"X .cursor-ns-resize\":\"cursor:ns-resize;\",\"X .cursor-ew-resize\":\"cursor:ew-resize;\",\"X .cursor-sw-resize\":\"cursor:sw-resize;\",\"X .cursor-s-resize\":\"cursor:s-resize;\",\"X .cursor-se-resize\":\"cursor:se-resize;\",\"X .cursor-w-resize\":\"cursor:w-resize;\",\"X .cursor-e-resize\":\"cursor:e-resize;\",\"X .cursor-nw-resize\":\"cursor:nw-resize;\",\"X .cursor-n-resize\":\"cursor:n-resize;\",\"X .cursor-ne-resize\":\"cursor:ne-resize;\",\"X .cursor-grab\":\"cursor:-webkit-grab;cursor:grab;\",\"X .modebar\":\"position:absolute;top:2px;right:2px;\",\"X .ease-bg\":\"-webkit-transition:background-color 0.3s ease 0s;-moz-transition:background-color 0.3s ease 0s;-ms-transition:background-color 0.3s ease 0s;-o-transition:background-color 0.3s ease 0s;transition:background-color 0.3s ease 0s;\",\"X .modebar--hover>:not(.watermark)\":\"opacity:0;-webkit-transition:opacity 0.3s ease 0s;-moz-transition:opacity 0.3s ease 0s;-ms-transition:opacity 0.3s ease 0s;-o-transition:opacity 0.3s ease 0s;transition:opacity 0.3s ease 0s;\",\"X:hover .modebar--hover .modebar-group\":\"opacity:1;\",\"X .modebar-group\":\"float:left;display:inline-block;box-sizing:border-box;padding-left:8px;position:relative;vertical-align:middle;white-space:nowrap;\",\"X .modebar-btn\":\"position:relative;font-size:16px;padding:3px 4px;height:22px;cursor:pointer;line-height:normal;box-sizing:border-box;\",\"X .modebar-btn svg\":\"position:relative;top:2px;\",\"X .modebar.vertical\":\"display:flex;flex-direction:column;flex-wrap:wrap;align-content:flex-end;max-height:100%;\",\"X .modebar.vertical svg\":\"top:-1px;\",\"X .modebar.vertical .modebar-group\":\"display:block;float:none;padding-left:0px;padding-bottom:8px;\",\"X .modebar.vertical .modebar-group .modebar-btn\":\"display:block;text-align:center;\",\"X [data-title]:before,X [data-title]:after\":\"position:absolute;-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);display:none;opacity:0;z-index:1001;pointer-events:none;top:110%;right:50%;\",\"X [data-title]:hover:before,X [data-title]:hover:after\":\"display:block;opacity:1;\",\"X [data-title]:before\":\"content:'';position:absolute;background:transparent;border:6px solid transparent;z-index:1002;margin-top:-12px;border-bottom-color:#69738a;margin-right:-6px;\",\"X [data-title]:after\":\"content:attr(data-title);background:#69738a;color:white;padding:8px 10px;font-size:12px;line-height:12px;white-space:nowrap;margin-right:-18px;border-radius:2px;\",\"X .vertical [data-title]:before,X .vertical [data-title]:after\":\"top:0%;right:200%;\",\"X .vertical [data-title]:before\":\"border:6px solid transparent;border-left-color:#69738a;margin-top:8px;margin-right:-30px;\",\"X .select-outline\":\"fill:none;stroke-width:1;shape-rendering:crispEdges;\",\"X .select-outline-1\":\"stroke:white;\",\"X .select-outline-2\":\"stroke:black;stroke-dasharray:2px 2px;\",Y:\"font-family:'Open Sans';position:fixed;top:50px;right:20px;z-index:10000;font-size:10pt;max-width:180px;\",\"Y p\":\"margin:0;\",\"Y .notifier-note\":\"min-width:180px;max-width:250px;border:1px solid #fff;z-index:3000;margin:0;background-color:#8c97af;background-color:rgba(140,151,175,0.9);color:#fff;padding:10px;overflow-wrap:break-word;word-wrap:break-word;-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto;\",\"Y .notifier-close\":\"color:#fff;opacity:0.8;float:right;padding:0 5px;background:none;border:none;font-size:20px;font-weight:bold;line-height:20px;\",\"Y .notifier-close:hover\":\"color:#444;text-decoration:none;cursor:pointer;\"};for(var i in a){var o=i.replace(/^,/,\" ,\").replace(/X/g,\".js-plotly-plot .plotly\").replace(/Y/g,\".plotly-notifier\");n.addStyleRule(o,a[i])}},{\"../src/lib\":719}],2:[function(t,e,r){\"use strict\";e.exports=t(\"../src/transforms/aggregate\")},{\"../src/transforms/aggregate\":1279}],3:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/bar\")},{\"../src/traces/bar\":865}],4:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/barpolar\")},{\"../src/traces/barpolar\":877}],5:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/box\")},{\"../src/traces/box\":887}],6:[function(t,e,r){\"use strict\";e.exports=t(\"../src/components/calendars\")},{\"../src/components/calendars\":592}],7:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/candlestick\")},{\"../src/traces/candlestick\":896}],8:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/carpet\")},{\"../src/traces/carpet\":915}],9:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/choropleth\")},{\"../src/traces/choropleth\":929}],10:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/choroplethmapbox\")},{\"../src/traces/choroplethmapbox\":936}],11:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/cone\")},{\"../src/traces/cone\":942}],12:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/contour\")},{\"../src/traces/contour\":957}],13:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/contourcarpet\")},{\"../src/traces/contourcarpet\":968}],14:[function(t,e,r){\"use strict\";e.exports=t(\"../src/core\")},{\"../src/core\":697}],15:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/densitymapbox\")},{\"../src/traces/densitymapbox\":976}],16:[function(t,e,r){\"use strict\";e.exports=t(\"../src/transforms/filter\")},{\"../src/transforms/filter\":1280}],17:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/funnel\")},{\"../src/traces/funnel\":986}],18:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/funnelarea\")},{\"../src/traces/funnelarea\":995}],19:[function(t,e,r){\"use strict\";e.exports=t(\"../src/transforms/groupby\")},{\"../src/transforms/groupby\":1281}],20:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/heatmap\")},{\"../src/traces/heatmap\":1008}],21:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/heatmapgl\")},{\"../src/traces/heatmapgl\":1017}],22:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/histogram\")},{\"../src/traces/histogram\":1029}],23:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/histogram2d\")},{\"../src/traces/histogram2d\":1035}],24:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/histogram2dcontour\")},{\"../src/traces/histogram2dcontour\":1039}],25:[function(t,e,r){\"use strict\";var n=t(\"./core\");n.register([t(\"./bar\"),t(\"./box\"),t(\"./heatmap\"),t(\"./histogram\"),t(\"./histogram2d\"),t(\"./histogram2dcontour\"),t(\"./contour\"),t(\"./scatterternary\"),t(\"./violin\"),t(\"./funnel\"),t(\"./waterfall\"),t(\"./pie\"),t(\"./sunburst\"),t(\"./treemap\"),t(\"./funnelarea\"),t(\"./scatter3d\"),t(\"./surface\"),t(\"./isosurface\"),t(\"./volume\"),t(\"./mesh3d\"),t(\"./cone\"),t(\"./streamtube\"),t(\"./scattergeo\"),t(\"./choropleth\"),t(\"./scattergl\"),t(\"./splom\"),t(\"./pointcloud\"),t(\"./heatmapgl\"),t(\"./parcoords\"),t(\"./parcats\"),t(\"./scattermapbox\"),t(\"./choroplethmapbox\"),t(\"./densitymapbox\"),t(\"./sankey\"),t(\"./indicator\"),t(\"./table\"),t(\"./carpet\"),t(\"./scattercarpet\"),t(\"./contourcarpet\"),t(\"./ohlc\"),t(\"./candlestick\"),t(\"./scatterpolar\"),t(\"./scatterpolargl\"),t(\"./barpolar\")]),n.register([t(\"./aggregate\"),t(\"./filter\"),t(\"./groupby\"),t(\"./sort\")]),n.register([t(\"./calendars\")]),e.exports=n},{\"./aggregate\":2,\"./bar\":3,\"./barpolar\":4,\"./box\":5,\"./calendars\":6,\"./candlestick\":7,\"./carpet\":8,\"./choropleth\":9,\"./choroplethmapbox\":10,\"./cone\":11,\"./contour\":12,\"./contourcarpet\":13,\"./core\":14,\"./densitymapbox\":15,\"./filter\":16,\"./funnel\":17,\"./funnelarea\":18,\"./groupby\":19,\"./heatmap\":20,\"./heatmapgl\":21,\"./histogram\":22,\"./histogram2d\":23,\"./histogram2dcontour\":24,\"./indicator\":26,\"./isosurface\":27,\"./mesh3d\":28,\"./ohlc\":29,\"./parcats\":30,\"./parcoords\":31,\"./pie\":32,\"./pointcloud\":33,\"./sankey\":34,\"./scatter3d\":35,\"./scattercarpet\":36,\"./scattergeo\":37,\"./scattergl\":38,\"./scattermapbox\":39,\"./scatterpolar\":40,\"./scatterpolargl\":41,\"./scatterternary\":42,\"./sort\":43,\"./splom\":44,\"./streamtube\":45,\"./sunburst\":46,\"./surface\":47,\"./table\":48,\"./treemap\":49,\"./violin\":50,\"./volume\":51,\"./waterfall\":52}],26:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/indicator\")},{\"../src/traces/indicator\":1045}],27:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/isosurface\")},{\"../src/traces/isosurface\":1051}],28:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/mesh3d\")},{\"../src/traces/mesh3d\":1056}],29:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/ohlc\")},{\"../src/traces/ohlc\":1061}],30:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/parcats\")},{\"../src/traces/parcats\":1070}],31:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/parcoords\")},{\"../src/traces/parcoords\":1080}],32:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/pie\")},{\"../src/traces/pie\":1091}],33:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/pointcloud\")},{\"../src/traces/pointcloud\":1100}],34:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/sankey\")},{\"../src/traces/sankey\":1106}],35:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/scatter3d\")},{\"../src/traces/scatter3d\":1142}],36:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/scattercarpet\")},{\"../src/traces/scattercarpet\":1148}],37:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/scattergeo\")},{\"../src/traces/scattergeo\":1155}],38:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/scattergl\")},{\"../src/traces/scattergl\":1166}],39:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/scattermapbox\")},{\"../src/traces/scattermapbox\":1175}],40:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/scatterpolar\")},{\"../src/traces/scatterpolar\":1182}],41:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/scatterpolargl\")},{\"../src/traces/scatterpolargl\":1188}],42:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/scatterternary\")},{\"../src/traces/scatterternary\":1195}],43:[function(t,e,r){\"use strict\";e.exports=t(\"../src/transforms/sort\")},{\"../src/transforms/sort\":1283}],44:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/splom\")},{\"../src/traces/splom\":1204}],45:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/streamtube\")},{\"../src/traces/streamtube\":1212}],46:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/sunburst\")},{\"../src/traces/sunburst\":1220}],47:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/surface\")},{\"../src/traces/surface\":1229}],48:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/table\")},{\"../src/traces/table\":1237}],49:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/treemap\")},{\"../src/traces/treemap\":1246}],50:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/violin\")},{\"../src/traces/violin\":1258}],51:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/volume\")},{\"../src/traces/volume\":1266}],52:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/waterfall\")},{\"../src/traces/waterfall\":1274}],53:[function(t,e,r){\"use strict\";e.exports=function(t){var e=(t=t||{}).eye||[0,0,1],r=t.center||[0,0,0],s=t.up||[0,1,0],l=t.distanceLimits||[0,1/0],c=t.mode||\"turntable\",u=n(),h=a(),f=i();return u.setDistanceLimits(l[0],l[1]),u.lookAt(0,e,r,s),h.setDistanceLimits(l[0],l[1]),h.lookAt(0,e,r,s),f.setDistanceLimits(l[0],l[1]),f.lookAt(0,e,r,s),new o({turntable:u,orbit:h,matrix:f},c)};var n=t(\"turntable-camera-controller\"),a=t(\"orbit-camera-controller\"),i=t(\"matrix-camera-controller\");function o(t,e){this._controllerNames=Object.keys(t),this._controllerList=this._controllerNames.map(function(e){return t[e]}),this._mode=e,this._active=t[e],this._active||(this._mode=\"turntable\",this._active=t.turntable),this.modes=this._controllerNames,this.computedMatrix=this._active.computedMatrix,this.computedEye=this._active.computedEye,this.computedUp=this._active.computedUp,this.computedCenter=this._active.computedCenter,this.computedRadius=this._active.computedRadius}var s=o.prototype;[[\"flush\",1],[\"idle\",1],[\"lookAt\",4],[\"rotate\",4],[\"pan\",4],[\"translate\",4],[\"setMatrix\",2],[\"setDistanceLimits\",2],[\"setDistance\",2]].forEach(function(t){for(var e=t[0],r=[],n=0;n<t[1];++n)r.push(\"a\"+n);var a=\"var cc=this._controllerList;for(var i=0;i<cc.length;++i){cc[i].\"+t[0]+\"(\"+r.join()+\")}\";s[e]=Function.apply(null,r.concat(a))}),s.recalcMatrix=function(t){this._active.recalcMatrix(t)},s.getDistance=function(t){return this._active.getDistance(t)},s.getDistanceLimits=function(t){return this._active.getDistanceLimits(t)},s.lastT=function(){return this._active.lastT()},s.setMode=function(t){if(t!==this._mode){var e=this._controllerNames.indexOf(t);if(!(e<0)){var r=this._active,n=this._controllerList[e],a=Math.max(r.lastT(),n.lastT());r.recalcMatrix(a),n.setMatrix(a,r.computedMatrix),this._active=n,this._mode=t,this.computedMatrix=this._active.computedMatrix,this.computedEye=this._active.computedEye,this.computedUp=this._active.computedUp,this.computedCenter=this._active.computedCenter,this.computedRadius=this._active.computedRadius}}},s.getMode=function(){return this._mode}},{\"matrix-camera-controller\":434,\"orbit-camera-controller\":457,\"turntable-camera-controller\":543}],54:[function(t,e,r){var n,a;n=this,a=function(t,e,r,n,a){\"use strict\";function i(t){return t.target.depth}function o(t,e){return t.sourceLinks.length?t.depth:e-1}function s(t){return function(){return t}}a=a&&a.hasOwnProperty(\"default\")?a.default:a;var l=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&\"function\"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?\"symbol\":typeof t};function c(t,e){return h(t.source,e.source)||t.index-e.index}function u(t,e){return h(t.target,e.target)||t.index-e.index}function h(t,e){return t.partOfCycle===e.partOfCycle?t.y0-e.y0:\"top\"===t.circularLinkType||\"bottom\"===e.circularLinkType?-1:1}function f(t){return t.value}function p(t){return(t.y0+t.y1)/2}function d(t){return p(t.source)}function g(t){return p(t.target)}function v(t){return t.index}function m(t){return t.nodes}function y(t){return t.links}function x(t,e){var r=t.get(e);if(!r)throw new Error(\"missing: \"+e);return r}function b(t,e){return e(t)}var _=25,w=10,k=.3;function T(t,e){var r=0,n=0;t.links.forEach(function(a){a.circular&&(a.source.circularLinkType||a.target.circularLinkType?a.circularLinkType=a.source.circularLinkType?a.source.circularLinkType:a.target.circularLinkType:a.circularLinkType=r<n?\"top\":\"bottom\",\"top\"==a.circularLinkType?r+=1:n+=1,t.nodes.forEach(function(t){b(t,e)!=b(a.source,e)&&b(t,e)!=b(a.target,e)||(t.circularLinkType=a.circularLinkType)}))}),t.links.forEach(function(t){t.circular&&(t.source.circularLinkType==t.target.circularLinkType&&(t.circularLinkType=t.source.circularLinkType),Y(t,e)&&(t.circularLinkType=t.source.circularLinkType))})}function A(t){var e=Math.abs(t.y1-t.y0),r=Math.abs(t.target.x0-t.source.x1);return Math.atan(r/e)}function M(t,e){var r=0;t.sourceLinks.forEach(function(t){r=t.circular&&!Y(t,e)?r+1:r});var n=0;return t.targetLinks.forEach(function(t){n=t.circular&&!Y(t,e)?n+1:n}),r+n}function S(t){var e=t.source.sourceLinks,r=0;e.forEach(function(t){r=t.circular?r+1:r});var n=t.target.targetLinks,a=0;return n.forEach(function(t){a=t.circular?a+1:a}),!(r>1||a>1)}function E(t,e,r){return t.sort(L),t.forEach(function(n,a){var i,o,s=0;if(Y(n,r)&&S(n))n.circularPathData.verticalBuffer=s+n.width/2;else{for(var l=0;l<a;l++)if(i=t[a],o=t[l],!(i.source.column<o.target.column||i.target.column>o.source.column)){var c=t[l].circularPathData.verticalBuffer+t[l].width/2+e;s=c>s?c:s}n.circularPathData.verticalBuffer=s+n.width/2}}),t}function C(t,r,a,i){var o=e.min(t.links,function(t){return t.source.y0});t.links.forEach(function(t){t.circular&&(t.circularPathData={})}),E(t.links.filter(function(t){return\"top\"==t.circularLinkType}),r,i),E(t.links.filter(function(t){return\"bottom\"==t.circularLinkType}),r,i),t.links.forEach(function(e){if(e.circular){if(e.circularPathData.arcRadius=e.width+w,e.circularPathData.leftNodeBuffer=5,e.circularPathData.rightNodeBuffer=5,e.circularPathData.sourceWidth=e.source.x1-e.source.x0,e.circularPathData.sourceX=e.source.x0+e.circularPathData.sourceWidth,e.circularPathData.targetX=e.target.x0,e.circularPathData.sourceY=e.y0,e.circularPathData.targetY=e.y1,Y(e,i)&&S(e))e.circularPathData.leftSmallArcRadius=w+e.width/2,e.circularPathData.leftLargeArcRadius=w+e.width/2,e.circularPathData.rightSmallArcRadius=w+e.width/2,e.circularPathData.rightLargeArcRadius=w+e.width/2,\"bottom\"==e.circularLinkType?(e.circularPathData.verticalFullExtent=e.source.y1+_+e.circularPathData.verticalBuffer,e.circularPathData.verticalLeftInnerExtent=e.circularPathData.verticalFullExtent-e.circularPathData.leftLargeArcRadius,e.circularPathData.verticalRightInnerExtent=e.circularPathData.verticalFullExtent-e.circularPathData.rightLargeArcRadius):(e.circularPathData.verticalFullExtent=e.source.y0-_-e.circularPathData.verticalBuffer,e.circularPathData.verticalLeftInnerExtent=e.circularPathData.verticalFullExtent+e.circularPathData.leftLargeArcRadius,e.circularPathData.verticalRightInnerExtent=e.circularPathData.verticalFullExtent+e.circularPathData.rightLargeArcRadius);else{var s=e.source.column,l=e.circularLinkType,c=t.links.filter(function(t){return t.source.column==s&&t.circularLinkType==l});\"bottom\"==e.circularLinkType?c.sort(O):c.sort(P);var u=0;c.forEach(function(t,n){t.circularLinkID==e.circularLinkID&&(e.circularPathData.leftSmallArcRadius=w+e.width/2+u,e.circularPathData.leftLargeArcRadius=w+e.width/2+n*r+u),u+=t.width}),s=e.target.column,c=t.links.filter(function(t){return t.target.column==s&&t.circularLinkType==l}),\"bottom\"==e.circularLinkType?c.sort(z):c.sort(I),u=0,c.forEach(function(t,n){t.circularLinkID==e.circularLinkID&&(e.circularPathData.rightSmallArcRadius=w+e.width/2+u,e.circularPathData.rightLargeArcRadius=w+e.width/2+n*r+u),u+=t.width}),\"bottom\"==e.circularLinkType?(e.circularPathData.verticalFullExtent=Math.max(a,e.source.y1,e.target.y1)+_+e.circularPathData.verticalBuffer,e.circularPathData.verticalLeftInnerExtent=e.circularPathData.verticalFullExtent-e.circularPathData.leftLargeArcRadius,e.circularPathData.verticalRightInnerExtent=e.circularPathData.verticalFullExtent-e.circularPathData.rightLargeArcRadius):(e.circularPathData.verticalFullExtent=o-_-e.circularPathData.verticalBuffer,e.circularPathData.verticalLeftInnerExtent=e.circularPathData.verticalFullExtent+e.circularPathData.leftLargeArcRadius,e.circularPathData.verticalRightInnerExtent=e.circularPathData.verticalFullExtent+e.circularPathData.rightLargeArcRadius)}e.circularPathData.leftInnerExtent=e.circularPathData.sourceX+e.circularPathData.leftNodeBuffer,e.circularPathData.rightInnerExtent=e.circularPathData.targetX-e.circularPathData.rightNodeBuffer,e.circularPathData.leftFullExtent=e.circularPathData.sourceX+e.circularPathData.leftLargeArcRadius+e.circularPathData.leftNodeBuffer,e.circularPathData.rightFullExtent=e.circularPathData.targetX-e.circularPathData.rightLargeArcRadius-e.circularPathData.rightNodeBuffer}if(e.circular)e.path=function(t){var e=\"\";e=\"top\"==t.circularLinkType?\"M\"+t.circularPathData.sourceX+\" \"+t.circularPathData.sourceY+\" L\"+t.circularPathData.leftInnerExtent+\" \"+t.circularPathData.sourceY+\" A\"+t.circularPathData.leftLargeArcRadius+\" \"+t.circularPathData.leftSmallArcRadius+\" 0 0 0 \"+t.circularPathData.leftFullExtent+\" \"+(t.circularPathData.sourceY-t.circularPathData.leftSmallArcRadius)+\" L\"+t.circularPathData.leftFullExtent+\" \"+t.circularPathData.verticalLeftInnerExtent+\" A\"+t.circularPathData.leftLargeArcRadius+\" \"+t.circularPathData.leftLargeArcRadius+\" 0 0 0 \"+t.circularPathData.leftInnerExtent+\" \"+t.circularPathData.verticalFullExtent+\" L\"+t.circularPathData.rightInnerExtent+\" \"+t.circularPathData.verticalFullExtent+\" A\"+t.circularPathData.rightLargeArcRadius+\" \"+t.circularPathData.rightLargeArcRadius+\" 0 0 0 \"+t.circularPathData.rightFullExtent+\" \"+t.circularPathData.verticalRightInnerExtent+\" L\"+t.circularPathData.rightFullExtent+\" \"+(t.circularPathData.targetY-t.circularPathData.rightSmallArcRadius)+\" A\"+t.circularPathData.rightLargeArcRadius+\" \"+t.circularPathData.rightSmallArcRadius+\" 0 0 0 \"+t.circularPathData.rightInnerExtent+\" \"+t.circularPathData.targetY+\" L\"+t.circularPathData.targetX+\" \"+t.circularPathData.targetY:\"M\"+t.circularPathData.sourceX+\" \"+t.circularPathData.sourceY+\" L\"+t.circularPathData.leftInnerExtent+\" \"+t.circularPathData.sourceY+\" A\"+t.circularPathData.leftLargeArcRadius+\" \"+t.circularPathData.leftSmallArcRadius+\" 0 0 1 \"+t.circularPathData.leftFullExtent+\" \"+(t.circularPathData.sourceY+t.circularPathData.leftSmallArcRadius)+\" L\"+t.circularPathData.leftFullExtent+\" \"+t.circularPathData.verticalLeftInnerExtent+\" A\"+t.circularPathData.leftLargeArcRadius+\" \"+t.circularPathData.leftLargeArcRadius+\" 0 0 1 \"+t.circularPathData.leftInnerExtent+\" \"+t.circularPathData.verticalFullExtent+\" L\"+t.circularPathData.rightInnerExtent+\" \"+t.circularPathData.verticalFullExtent+\" A\"+t.circularPathData.rightLargeArcRadius+\" \"+t.circularPathData.rightLargeArcRadius+\" 0 0 1 \"+t.circularPathData.rightFullExtent+\" \"+t.circularPathData.verticalRightInnerExtent+\" L\"+t.circularPathData.rightFullExtent+\" \"+(t.circularPathData.targetY+t.circularPathData.rightSmallArcRadius)+\" A\"+t.circularPathData.rightLargeArcRadius+\" \"+t.circularPathData.rightSmallArcRadius+\" 0 0 1 \"+t.circularPathData.rightInnerExtent+\" \"+t.circularPathData.targetY+\" L\"+t.circularPathData.targetX+\" \"+t.circularPathData.targetY;return e}(e);else{var h=n.linkHorizontal().source(function(t){return[t.source.x0+(t.source.x1-t.source.x0),t.y0]}).target(function(t){return[t.target.x0,t.y1]});e.path=h(e)}})}function L(t,e){return D(t)==D(e)?\"bottom\"==t.circularLinkType?O(t,e):P(t,e):D(e)-D(t)}function P(t,e){return t.y0-e.y0}function O(t,e){return e.y0-t.y0}function I(t,e){return t.y1-e.y1}function z(t,e){return e.y1-t.y1}function D(t){return t.target.column-t.source.column}function R(t){return t.target.x0-t.source.x1}function F(t,e){var r=A(t),n=R(e)/Math.tan(r);return\"up\"==G(t)?t.y1+n:t.y1-n}function B(t,e){var r=A(t),n=R(e)/Math.tan(r);return\"up\"==G(t)?t.y1-n:t.y1+n}function N(t,e,r,n){t.links.forEach(function(a){if(!a.circular&&a.target.column-a.source.column>1){var i=a.source.column+1,o=a.target.column-1,s=1,l=o-i+1;for(s=1;i<=o;i++,s++)t.nodes.forEach(function(o){if(o.column==i){var c,u=s/(l+1),h=Math.pow(1-u,3),f=3*u*Math.pow(1-u,2),p=3*Math.pow(u,2)*(1-u),d=Math.pow(u,3),g=h*a.y0+f*a.y0+p*a.y1+d*a.y1,v=g-a.width/2,m=g+a.width/2;v>o.y0&&v<o.y1?(c=o.y1-v+10,c=\"bottom\"==o.circularLinkType?c:-c,o=V(o,c,e,r),t.nodes.forEach(function(t){b(t,n)!=b(o,n)&&t.column==o.column&&j(o,t)&&V(t,c,e,r)})):m>o.y0&&m<o.y1?(c=m-o.y0+10,o=V(o,c,e,r),t.nodes.forEach(function(t){b(t,n)!=b(o,n)&&t.column==o.column&&t.y0<o.y1&&t.y1>o.y1&&V(t,c,e,r)})):v<o.y0&&m>o.y1&&(c=m-o.y0+10,o=V(o,c,e,r),t.nodes.forEach(function(t){b(t,n)!=b(o,n)&&t.column==o.column&&t.y0<o.y1&&t.y1>o.y1&&V(t,c,e,r)}))}})}})}function j(t,e){return t.y0>e.y0&&t.y0<e.y1||(t.y1>e.y0&&t.y1<e.y1||t.y0<e.y0&&t.y1>e.y1)}function V(t,e,r,n){return t.y0+e>=r&&t.y1+e<=n&&(t.y0=t.y0+e,t.y1=t.y1+e,t.targetLinks.forEach(function(t){t.y1=t.y1+e}),t.sourceLinks.forEach(function(t){t.y0=t.y0+e})),t}function U(t,e,r,n){t.nodes.forEach(function(a){n&&a.y+(a.y1-a.y0)>e&&(a.y=a.y-(a.y+(a.y1-a.y0)-e));var i=t.links.filter(function(t){return b(t.source,r)==b(a,r)}),o=i.length;o>1&&i.sort(function(t,e){if(!t.circular&&!e.circular){if(t.target.column==e.target.column)return t.y1-e.y1;if(!H(t,e))return t.y1-e.y1;if(t.target.column>e.target.column){var r=B(e,t);return t.y1-r}if(e.target.column>t.target.column)return B(t,e)-e.y1}return t.circular&&!e.circular?\"top\"==t.circularLinkType?-1:1:e.circular&&!t.circular?\"top\"==e.circularLinkType?1:-1:t.circular&&e.circular?t.circularLinkType===e.circularLinkType&&\"top\"==t.circularLinkType?t.target.column===e.target.column?t.target.y1-e.target.y1:e.target.column-t.target.column:t.circularLinkType===e.circularLinkType&&\"bottom\"==t.circularLinkType?t.target.column===e.target.column?e.target.y1-t.target.y1:t.target.column-e.target.column:\"top\"==t.circularLinkType?-1:1:void 0});var s=a.y0;i.forEach(function(t){t.y0=s+t.width/2,s+=t.width}),i.forEach(function(t,e){if(\"bottom\"==t.circularLinkType){for(var r=e+1,n=0;r<o;r++)n+=i[r].width;t.y0=a.y1-n-t.width/2}})})}function q(t,e,r){t.nodes.forEach(function(e){var n=t.links.filter(function(t){return b(t.target,r)==b(e,r)}),a=n.length;a>1&&n.sort(function(t,e){if(!t.circular&&!e.circular){if(t.source.column==e.source.column)return t.y0-e.y0;if(!H(t,e))return t.y0-e.y0;if(e.source.column<t.source.column){var r=F(e,t);return t.y0-r}if(t.source.column<e.source.column)return F(t,e)-e.y0}return t.circular&&!e.circular?\"top\"==t.circularLinkType?-1:1:e.circular&&!t.circular?\"top\"==e.circularLinkType?1:-1:t.circular&&e.circular?t.circularLinkType===e.circularLinkType&&\"top\"==t.circularLinkType?t.source.column===e.source.column?t.source.y1-e.source.y1:t.source.column-e.source.column:t.circularLinkType===e.circularLinkType&&\"bottom\"==t.circularLinkType?t.source.column===e.source.column?t.source.y1-e.source.y1:e.source.column-t.source.column:\"top\"==t.circularLinkType?-1:1:void 0});var i=e.y0;n.forEach(function(t){t.y1=i+t.width/2,i+=t.width}),n.forEach(function(t,r){if(\"bottom\"==t.circularLinkType){for(var i=r+1,o=0;i<a;i++)o+=n[i].width;t.y1=e.y1-o-t.width/2}})})}function H(t,e){return G(t)==G(e)}function G(t){return t.y0-t.y1>0?\"up\":\"down\"}function Y(t,e){return b(t.source,e)==b(t.target,e)}t.sankeyCircular=function(){var t,n,i=0,b=0,A=1,S=1,E=24,L=v,P=o,O=m,I=y,z=32,D=2,R=null;function F(){var o={nodes:O.apply(null,arguments),links:I.apply(null,arguments)};!function(t){t.nodes.forEach(function(t,e){t.index=e,t.sourceLinks=[],t.targetLinks=[]});var e=r.map(t.nodes,L);t.links.forEach(function(t,r){t.index=r;var n=t.source,a=t.target;\"object\"!==(\"undefined\"==typeof n?\"undefined\":l(n))&&(n=t.source=x(e,n)),\"object\"!==(\"undefined\"==typeof a?\"undefined\":l(a))&&(a=t.target=x(e,a)),n.sourceLinks.push(t),a.targetLinks.push(t)})}(o),function(t,e,r){var n=0;if(null===r){for(var i=[],o=0;o<t.links.length;o++){var s=t.links[o],l=s.source.index,c=s.target.index;i[l]||(i[l]=[]),i[c]||(i[c]=[]),-1===i[l].indexOf(c)&&i[l].push(c)}var u=a(i);u.sort(function(t,e){return t.length-e.length});var h={};for(o=0;o<u.length;o++){var f=u[o],p=f.slice(-2);h[p[0]]||(h[p[0]]={}),h[p[0]][p[1]]=!0}t.links.forEach(function(t){var e=t.target.index,r=t.source.index;e===r||h[r]&&h[r][e]?(t.circular=!0,t.circularLinkID=n,n+=1):t.circular=!1})}else t.links.forEach(function(t){t.source[r]<t.target[r]?t.circular=!1:(t.circular=!0,t.circularLinkID=n,n+=1)})}(o,0,R),function(t){t.nodes.forEach(function(t){t.partOfCycle=!1,t.value=Math.max(e.sum(t.sourceLinks,f),e.sum(t.targetLinks,f)),t.sourceLinks.forEach(function(e){e.circular&&(t.partOfCycle=!0,t.circularLinkType=e.circularLinkType)}),t.targetLinks.forEach(function(e){e.circular&&(t.partOfCycle=!0,t.circularLinkType=e.circularLinkType)})})}(o),function(t){var e,r,n;for(e=t.nodes,r=[],n=0;e.length;++n,e=r,r=[])e.forEach(function(t){t.depth=n,t.sourceLinks.forEach(function(t){r.indexOf(t.target)<0&&!t.circular&&r.push(t.target)})});for(e=t.nodes,r=[],n=0;e.length;++n,e=r,r=[])e.forEach(function(t){t.height=n,t.targetLinks.forEach(function(t){r.indexOf(t.source)<0&&!t.circular&&r.push(t.source)})});t.nodes.forEach(function(t){t.column=Math.floor(P.call(null,t,n))})}(o),T(o,L),function(a,o,s){var l=r.nest().key(function(t){return t.column}).sortKeys(e.ascending).entries(a.nodes).map(function(t){return t.values});(function(r){if(n){var o=1/0;l.forEach(function(t){var e=S*n/(t.length+1);o=e<o?e:o}),t=o}var s=e.min(l,function(r){return(S-b-(r.length-1)*t)/e.sum(r,f)});s*=k,a.links.forEach(function(t){t.width=t.value*s});var c=function(t){var r=0,n=0,a=0,i=0,o=e.max(t.nodes,function(t){return t.column});return t.links.forEach(function(t){t.circular&&(\"top\"==t.circularLinkType?r+=t.width:n+=t.width,0==t.target.column&&(i+=t.width),t.source.column==o&&(a+=t.width))}),{top:r=r>0?r+_+w:r,bottom:n=n>0?n+_+w:n,left:i=i>0?i+_+w:i,right:a=a>0?a+_+w:a}}(a),u=function(t,r){var n=e.max(t.nodes,function(t){return t.column}),a=A-i,o=S-b,s=a+r.right+r.left,l=o+r.top+r.bottom,c=a/s,u=o/l;return i=i*c+r.left,A=0==r.right?A:A*c,b=b*u+r.top,S*=u,t.nodes.forEach(function(t){t.x0=i+t.column*((A-i-E)/n),t.x1=t.x0+E}),u}(a,c);s*=u,a.links.forEach(function(t){t.width=t.value*s}),l.forEach(function(t){var e=t.length;t.forEach(function(t,n){t.depth==l.length-1&&1==e?(t.y0=S/2-t.value*s,t.y1=t.y0+t.value*s):0==t.depth&&1==e?(t.y0=S/2-t.value*s,t.y1=t.y0+t.value*s):t.partOfCycle?0==M(t,r)?(t.y0=S/2+n,t.y1=t.y0+t.value*s):\"top\"==t.circularLinkType?(t.y0=b+n,t.y1=t.y0+t.value*s):(t.y0=S-t.value*s-n,t.y1=t.y0+t.value*s):0==c.top||0==c.bottom?(t.y0=(S-b)/e*n,t.y1=t.y0+t.value*s):(t.y0=(S-b)/2-e/2+n,t.y1=t.y0+t.value*s)})})})(s),m();for(var c=1,u=o;u>0;--u)v(c*=.99,s),m();function v(t,r){var n=l.length;l.forEach(function(a){var i=a.length,o=a[0].depth;a.forEach(function(a){var s;if(a.sourceLinks.length||a.targetLinks.length)if(a.partOfCycle&&M(a,r)>0);else if(0==o&&1==i)s=a.y1-a.y0,a.y0=S/2-s/2,a.y1=S/2+s/2;else if(o==n-1&&1==i)s=a.y1-a.y0,a.y0=S/2-s/2,a.y1=S/2+s/2;else{var l=e.mean(a.sourceLinks,g),c=e.mean(a.targetLinks,d),u=((l&&c?(l+c)/2:l||c)-p(a))*t;a.y0+=u,a.y1+=u}})})}function m(){l.forEach(function(e){var r,n,a,i=b,o=e.length;for(e.sort(h),a=0;a<o;++a)r=e[a],(n=i-r.y0)>0&&(r.y0+=n,r.y1+=n),i=r.y1+t;if((n=i-t-S)>0)for(i=r.y0-=n,r.y1-=n,a=o-2;a>=0;--a)r=e[a],(n=r.y1+t-i)>0&&(r.y0-=n,r.y1-=n),i=r.y0})}}(o,z,L),B(o);for(var s=0;s<4;s++)U(o,S,L),q(o,0,L),N(o,b,S,L),U(o,S,L),q(o,0,L);return function(t,r,n){var a=t.nodes,i=t.links,o=!1,s=!1;if(i.forEach(function(t){\"top\"==t.circularLinkType?o=!0:\"bottom\"==t.circularLinkType&&(s=!0)}),0==o||0==s){var l=e.min(a,function(t){return t.y0}),c=e.max(a,function(t){return t.y1}),u=c-l,h=n-r,f=h/u;a.forEach(function(t){var e=(t.y1-t.y0)*f;t.y0=(t.y0-l)*f,t.y1=t.y0+e}),i.forEach(function(t){t.y0=(t.y0-l)*f,t.y1=(t.y1-l)*f,t.width=t.width*f})}}(o,b,S),C(o,D,S,L),o}function B(t){t.nodes.forEach(function(t){t.sourceLinks.sort(u),t.targetLinks.sort(c)}),t.nodes.forEach(function(t){var e=t.y0,r=e,n=t.y1,a=n;t.sourceLinks.forEach(function(t){t.circular?(t.y0=n-t.width/2,n-=t.width):(t.y0=e+t.width/2,e+=t.width)}),t.targetLinks.forEach(function(t){t.circular?(t.y1=a-t.width/2,a-=t.width):(t.y1=r+t.width/2,r+=t.width)})})}return F.nodeId=function(t){return arguments.length?(L=\"function\"==typeof t?t:s(t),F):L},F.nodeAlign=function(t){return arguments.length?(P=\"function\"==typeof t?t:s(t),F):P},F.nodeWidth=function(t){return arguments.length?(E=+t,F):E},F.nodePadding=function(e){return arguments.length?(t=+e,F):t},F.nodes=function(t){return arguments.length?(O=\"function\"==typeof t?t:s(t),F):O},F.links=function(t){return arguments.length?(I=\"function\"==typeof t?t:s(t),F):I},F.size=function(t){return arguments.length?(i=b=0,A=+t[0],S=+t[1],F):[A-i,S-b]},F.extent=function(t){return arguments.length?(i=+t[0][0],A=+t[1][0],b=+t[0][1],S=+t[1][1],F):[[i,b],[A,S]]},F.iterations=function(t){return arguments.length?(z=+t,F):z},F.circularLinkGap=function(t){return arguments.length?(D=+t,F):D},F.nodePaddingRatio=function(t){return arguments.length?(n=+t,F):n},F.sortNodes=function(t){return arguments.length?(R=t,F):R},F.update=function(t){return T(t,L),B(t),t.links.forEach(function(t){t.circular&&(t.circularLinkType=t.y0+t.y1<S?\"top\":\"bottom\",t.source.circularLinkType=t.circularLinkType,t.target.circularLinkType=t.circularLinkType)}),U(t,S,L,!1),q(t,0,L),C(t,D,S,L),t},F},t.sankeyCenter=function(t){return t.targetLinks.length?t.depth:t.sourceLinks.length?e.min(t.sourceLinks,i)-1:0},t.sankeyLeft=function(t){return t.depth},t.sankeyRight=function(t,e){return e-1-t.height},t.sankeyJustify=o,Object.defineProperty(t,\"__esModule\",{value:!0})},\"object\"==typeof r&&\"undefined\"!=typeof e?a(r,t(\"d3-array\"),t(\"d3-collection\"),t(\"d3-shape\"),t(\"elementary-circuits-directed-graph\")):a(n.d3=n.d3||{},n.d3,n.d3,n.d3,null)},{\"d3-array\":153,\"d3-collection\":154,\"d3-shape\":162,\"elementary-circuits-directed-graph\":173}],55:[function(t,e,r){var n,a;n=this,a=function(t,e,r,n){\"use strict\";function a(t){return t.target.depth}function i(t,e){return t.sourceLinks.length?t.depth:e-1}function o(t){return function(){return t}}function s(t,e){return c(t.source,e.source)||t.index-e.index}function l(t,e){return c(t.target,e.target)||t.index-e.index}function c(t,e){return t.y0-e.y0}function u(t){return t.value}function h(t){return(t.y0+t.y1)/2}function f(t){return h(t.source)*t.value}function p(t){return h(t.target)*t.value}function d(t){return t.index}function g(t){return t.nodes}function v(t){return t.links}function m(t,e){var r=t.get(e);if(!r)throw new Error(\"missing: \"+e);return r}function y(t){return[t.source.x1,t.y0]}function x(t){return[t.target.x0,t.y1]}t.sankey=function(){var t=0,n=0,a=1,y=1,x=24,b=8,_=d,w=i,k=g,T=v,A=32,M=2/3;function S(){var i={nodes:k.apply(null,arguments),links:T.apply(null,arguments)};return function(t){t.nodes.forEach(function(t,e){t.index=e,t.sourceLinks=[],t.targetLinks=[]});var e=r.map(t.nodes,_);t.links.forEach(function(t,r){t.index=r;var n=t.source,a=t.target;\"object\"!=typeof n&&(n=t.source=m(e,n)),\"object\"!=typeof a&&(a=t.target=m(e,a)),n.sourceLinks.push(t),a.targetLinks.push(t)})}(i),function(t){t.nodes.forEach(function(t){t.value=Math.max(e.sum(t.sourceLinks,u),e.sum(t.targetLinks,u))})}(i),function(e){var r,n,i;for(r=e.nodes,n=[],i=0;r.length;++i,r=n,n=[])r.forEach(function(t){t.depth=i,t.sourceLinks.forEach(function(t){n.indexOf(t.target)<0&&n.push(t.target)})});for(r=e.nodes,n=[],i=0;r.length;++i,r=n,n=[])r.forEach(function(t){t.height=i,t.targetLinks.forEach(function(t){n.indexOf(t.source)<0&&n.push(t.source)})});var o=(a-t-x)/(i-1);e.nodes.forEach(function(e){e.x1=(e.x0=t+Math.max(0,Math.min(i-1,Math.floor(w.call(null,e,i))))*o)+x})}(i),function(t){var a=r.nest().key(function(t){return t.x0}).sortKeys(e.ascending).entries(t.nodes).map(function(t){return t.values});(function(){var r=e.max(a,function(t){return t.length}),i=M*(y-n)/(r-1);b>i&&(b=i);var o=e.min(a,function(t){return(y-n-(t.length-1)*b)/e.sum(t,u)});a.forEach(function(t){t.forEach(function(t,e){t.y1=(t.y0=e)+t.value*o})}),t.links.forEach(function(t){t.width=t.value*o})})(),d();for(var i=1,o=A;o>0;--o)l(i*=.99),d(),s(i),d();function s(t){a.forEach(function(r){r.forEach(function(r){if(r.targetLinks.length){var n=(e.sum(r.targetLinks,f)/e.sum(r.targetLinks,u)-h(r))*t;r.y0+=n,r.y1+=n}})})}function l(t){a.slice().reverse().forEach(function(r){r.forEach(function(r){if(r.sourceLinks.length){var n=(e.sum(r.sourceLinks,p)/e.sum(r.sourceLinks,u)-h(r))*t;r.y0+=n,r.y1+=n}})})}function d(){a.forEach(function(t){var e,r,a,i=n,o=t.length;for(t.sort(c),a=0;a<o;++a)e=t[a],(r=i-e.y0)>0&&(e.y0+=r,e.y1+=r),i=e.y1+b;if((r=i-b-y)>0)for(i=e.y0-=r,e.y1-=r,a=o-2;a>=0;--a)e=t[a],(r=e.y1+b-i)>0&&(e.y0-=r,e.y1-=r),i=e.y0})}}(i),E(i),i}function E(t){t.nodes.forEach(function(t){t.sourceLinks.sort(l),t.targetLinks.sort(s)}),t.nodes.forEach(function(t){var e=t.y0,r=e;t.sourceLinks.forEach(function(t){t.y0=e+t.width/2,e+=t.width}),t.targetLinks.forEach(function(t){t.y1=r+t.width/2,r+=t.width})})}return S.update=function(t){return E(t),t},S.nodeId=function(t){return arguments.length?(_=\"function\"==typeof t?t:o(t),S):_},S.nodeAlign=function(t){return arguments.length?(w=\"function\"==typeof t?t:o(t),S):w},S.nodeWidth=function(t){return arguments.length?(x=+t,S):x},S.nodePadding=function(t){return arguments.length?(b=+t,S):b},S.nodes=function(t){return arguments.length?(k=\"function\"==typeof t?t:o(t),S):k},S.links=function(t){return arguments.length?(T=\"function\"==typeof t?t:o(t),S):T},S.size=function(e){return arguments.length?(t=n=0,a=+e[0],y=+e[1],S):[a-t,y-n]},S.extent=function(e){return arguments.length?(t=+e[0][0],a=+e[1][0],n=+e[0][1],y=+e[1][1],S):[[t,n],[a,y]]},S.iterations=function(t){return arguments.length?(A=+t,S):A},S},t.sankeyCenter=function(t){return t.targetLinks.length?t.depth:t.sourceLinks.length?e.min(t.sourceLinks,a)-1:0},t.sankeyLeft=function(t){return t.depth},t.sankeyRight=function(t,e){return e-1-t.height},t.sankeyJustify=i,t.sankeyLinkHorizontal=function(){return n.linkHorizontal().source(y).target(x)},Object.defineProperty(t,\"__esModule\",{value:!0})},\"object\"==typeof r&&\"undefined\"!=typeof e?a(r,t(\"d3-array\"),t(\"d3-collection\"),t(\"d3-shape\")):a(n.d3=n.d3||{},n.d3,n.d3,n.d3)},{\"d3-array\":153,\"d3-collection\":154,\"d3-shape\":162}],56:[function(t,e,r){\"use strict\";Object.defineProperty(r,\"__esModule\",{value:!0});var n=t(\"@turf/meta\"),a=6378137;function i(t){var e=0;if(t&&t.length>0){e+=Math.abs(o(t[0]));for(var r=1;r<t.length;r++)e-=Math.abs(o(t[r]))}return e}function o(t){var e,r,n,i,o,l,c=0,u=t.length;if(u>2){for(l=0;l<u;l++)l===u-2?(n=u-2,i=u-1,o=0):l===u-1?(n=u-1,i=0,o=1):(n=l,i=l+1,o=l+2),e=t[n],r=t[i],c+=(s(t[o][0])-s(e[0]))*Math.sin(s(r[1]));c=c*a*a/2}return c}function s(t){return t*Math.PI/180}r.default=function(t){return n.geomReduce(t,function(t,e){return t+function(t){var e,r=0;switch(t.type){case\"Polygon\":return i(t.coordinates);case\"MultiPolygon\":for(e=0;e<t.coordinates.length;e++)r+=i(t.coordinates[e]);return r;case\"Point\":case\"MultiPoint\":case\"LineString\":case\"MultiLineString\":return 0}return 0}(e)},0)}},{\"@turf/meta\":59}],57:[function(t,e,r){\"use strict\";Object.defineProperty(r,\"__esModule\",{value:!0});var n=t(\"@turf/meta\"),a=t(\"@turf/helpers\");r.default=function(t,e){void 0===e&&(e={});var r=0,i=0,o=0;return n.coordEach(t,function(t){r+=t[0],i+=t[1],o++}),a.point([r/o,i/o],e.properties)}},{\"@turf/helpers\":58,\"@turf/meta\":59}],58:[function(t,e,r){\"use strict\";function n(t,e,r){void 0===r&&(r={});var n={type:\"Feature\"};return(0===r.id||r.id)&&(n.id=r.id),r.bbox&&(n.bbox=r.bbox),n.properties=e||{},n.geometry=t,n}function a(t,e,r){return void 0===r&&(r={}),n({type:\"Point\",coordinates:t},e,r)}function i(t,e,r){void 0===r&&(r={});for(var a=0,i=t;a<i.length;a++){var o=i[a];if(o.length<4)throw new Error(\"Each LinearRing of a Polygon must have 4 or more Positions.\");for(var s=0;s<o[o.length-1].length;s++)if(o[o.length-1][s]!==o[0][s])throw new Error(\"First and last Position are not equivalent.\")}return n({type:\"Polygon\",coordinates:t},e,r)}function o(t,e,r){if(void 0===r&&(r={}),t.length<2)throw new Error(\"coordinates must be an array of two or more positions\");return n({type:\"LineString\",coordinates:t},e,r)}function s(t,e){void 0===e&&(e={});var r={type:\"FeatureCollection\"};return e.id&&(r.id=e.id),e.bbox&&(r.bbox=e.bbox),r.features=t,r}function l(t,e,r){return void 0===r&&(r={}),n({type:\"MultiLineString\",coordinates:t},e,r)}function c(t,e,r){return void 0===r&&(r={}),n({type:\"MultiPoint\",coordinates:t},e,r)}function u(t,e,r){return void 0===r&&(r={}),n({type:\"MultiPolygon\",coordinates:t},e,r)}function h(t,e){void 0===e&&(e=\"kilometers\");var n=r.factors[e];if(!n)throw new Error(e+\" units is invalid\");return t*n}function f(t,e){void 0===e&&(e=\"kilometers\");var n=r.factors[e];if(!n)throw new Error(e+\" units is invalid\");return t/n}function p(t){return 180*(t%(2*Math.PI))/Math.PI}function d(t){return!isNaN(t)&&null!==t&&!Array.isArray(t)&&!/^\\s*$/.test(t)}Object.defineProperty(r,\"__esModule\",{value:!0}),r.earthRadius=6371008.8,r.factors={centimeters:100*r.earthRadius,centimetres:100*r.earthRadius,degrees:r.earthRadius/111325,feet:3.28084*r.earthRadius,inches:39.37*r.earthRadius,kilometers:r.earthRadius/1e3,kilometres:r.earthRadius/1e3,meters:r.earthRadius,metres:r.earthRadius,miles:r.earthRadius/1609.344,millimeters:1e3*r.earthRadius,millimetres:1e3*r.earthRadius,nauticalmiles:r.earthRadius/1852,radians:1,yards:r.earthRadius/1.0936},r.unitsFactors={centimeters:100,centimetres:100,degrees:1/111325,feet:3.28084,inches:39.37,kilometers:.001,kilometres:.001,meters:1,metres:1,miles:1/1609.344,millimeters:1e3,millimetres:1e3,nauticalmiles:1/1852,radians:1/r.earthRadius,yards:1/1.0936},r.areaFactors={acres:247105e-9,centimeters:1e4,centimetres:1e4,feet:10.763910417,inches:1550.003100006,kilometers:1e-6,kilometres:1e-6,meters:1,metres:1,miles:3.86e-7,millimeters:1e6,millimetres:1e6,yards:1.195990046},r.feature=n,r.geometry=function(t,e,r){switch(void 0===r&&(r={}),t){case\"Point\":return a(e).geometry;case\"LineString\":return o(e).geometry;case\"Polygon\":return i(e).geometry;case\"MultiPoint\":return c(e).geometry;case\"MultiLineString\":return l(e).geometry;case\"MultiPolygon\":return u(e).geometry;default:throw new Error(t+\" is invalid\")}},r.point=a,r.points=function(t,e,r){return void 0===r&&(r={}),s(t.map(function(t){return a(t,e)}),r)},r.polygon=i,r.polygons=function(t,e,r){return void 0===r&&(r={}),s(t.map(function(t){return i(t,e)}),r)},r.lineString=o,r.lineStrings=function(t,e,r){return void 0===r&&(r={}),s(t.map(function(t){return o(t,e)}),r)},r.featureCollection=s,r.multiLineString=l,r.multiPoint=c,r.multiPolygon=u,r.geometryCollection=function(t,e,r){return void 0===r&&(r={}),n({type:\"GeometryCollection\",geometries:t},e,r)},r.round=function(t,e){if(void 0===e&&(e=0),e&&!(e>=0))throw new Error(\"precision must be a positive number\");var r=Math.pow(10,e||0);return Math.round(t*r)/r},r.radiansToLength=h,r.lengthToRadians=f,r.lengthToDegrees=function(t,e){return p(f(t,e))},r.bearingToAzimuth=function(t){var e=t%360;return e<0&&(e+=360),e},r.radiansToDegrees=p,r.degreesToRadians=function(t){return t%360*Math.PI/180},r.convertLength=function(t,e,r){if(void 0===e&&(e=\"kilometers\"),void 0===r&&(r=\"kilometers\"),!(t>=0))throw new Error(\"length must be a positive number\");return h(f(t,e),r)},r.convertArea=function(t,e,n){if(void 0===e&&(e=\"meters\"),void 0===n&&(n=\"kilometers\"),!(t>=0))throw new Error(\"area must be a positive number\");var a=r.areaFactors[e];if(!a)throw new Error(\"invalid original units\");var i=r.areaFactors[n];if(!i)throw new Error(\"invalid final units\");return t/a*i},r.isNumber=d,r.isObject=function(t){return!!t&&t.constructor===Object},r.validateBBox=function(t){if(!t)throw new Error(\"bbox is required\");if(!Array.isArray(t))throw new Error(\"bbox must be an Array\");if(4!==t.length&&6!==t.length)throw new Error(\"bbox must be an Array of 4 or 6 numbers\");t.forEach(function(t){if(!d(t))throw new Error(\"bbox must only contain numbers\")})},r.validateId=function(t){if(!t)throw new Error(\"id is required\");if(-1===[\"string\",\"number\"].indexOf(typeof t))throw new Error(\"id must be a number or a string\")},r.radians2degrees=function(){throw new Error(\"method has been renamed to `radiansToDegrees`\")},r.degrees2radians=function(){throw new Error(\"method has been renamed to `degreesToRadians`\")},r.distanceToDegrees=function(){throw new Error(\"method has been renamed to `lengthToDegrees`\")},r.distanceToRadians=function(){throw new Error(\"method has been renamed to `lengthToRadians`\")},r.radiansToDistance=function(){throw new Error(\"method has been renamed to `radiansToLength`\")},r.bearingToAngle=function(){throw new Error(\"method has been renamed to `bearingToAzimuth`\")},r.convertDistance=function(){throw new Error(\"method has been renamed to `convertLength`\")}},{}],59:[function(t,e,r){\"use strict\";Object.defineProperty(r,\"__esModule\",{value:!0});var n=t(\"@turf/helpers\");function a(t,e,r){if(null!==t)for(var n,i,o,s,l,c,u,h,f=0,p=0,d=t.type,g=\"FeatureCollection\"===d,v=\"Feature\"===d,m=g?t.features.length:1,y=0;y<m;y++){l=(h=!!(u=g?t.features[y].geometry:v?t.geometry:t)&&\"GeometryCollection\"===u.type)?u.geometries.length:1;for(var x=0;x<l;x++){var b=0,_=0;if(null!==(s=h?u.geometries[x]:u)){c=s.coordinates;var w=s.type;switch(f=!r||\"Polygon\"!==w&&\"MultiPolygon\"!==w?0:1,w){case null:break;case\"Point\":if(!1===e(c,p,y,b,_))return!1;p++,b++;break;case\"LineString\":case\"MultiPoint\":for(n=0;n<c.length;n++){if(!1===e(c[n],p,y,b,_))return!1;p++,\"MultiPoint\"===w&&b++}\"LineString\"===w&&b++;break;case\"Polygon\":case\"MultiLineString\":for(n=0;n<c.length;n++){for(i=0;i<c[n].length-f;i++){if(!1===e(c[n][i],p,y,b,_))return!1;p++}\"MultiLineString\"===w&&b++,\"Polygon\"===w&&_++}\"Polygon\"===w&&b++;break;case\"MultiPolygon\":for(n=0;n<c.length;n++){for(_=0,i=0;i<c[n].length;i++){for(o=0;o<c[n][i].length-f;o++){if(!1===e(c[n][i][o],p,y,b,_))return!1;p++}_++}b++}break;case\"GeometryCollection\":for(n=0;n<s.geometries.length;n++)if(!1===a(s.geometries[n],e,r))return!1;break;default:throw new Error(\"Unknown Geometry Type\")}}}}}function i(t,e){var r;switch(t.type){case\"FeatureCollection\":for(r=0;r<t.features.length&&!1!==e(t.features[r].properties,r);r++);break;case\"Feature\":e(t.properties,0)}}function o(t,e){if(\"Feature\"===t.type)e(t,0);else if(\"FeatureCollection\"===t.type)for(var r=0;r<t.features.length&&!1!==e(t.features[r],r);r++);}function s(t,e){var r,n,a,i,o,s,l,c,u,h,f=0,p=\"FeatureCollection\"===t.type,d=\"Feature\"===t.type,g=p?t.features.length:1;for(r=0;r<g;r++){for(s=p?t.features[r].geometry:d?t.geometry:t,c=p?t.features[r].properties:d?t.properties:{},u=p?t.features[r].bbox:d?t.bbox:void 0,h=p?t.features[r].id:d?t.id:void 0,o=(l=!!s&&\"GeometryCollection\"===s.type)?s.geometries.length:1,a=0;a<o;a++)if(null!==(i=l?s.geometries[a]:s))switch(i.type){case\"Point\":case\"LineString\":case\"MultiPoint\":case\"Polygon\":case\"MultiLineString\":case\"MultiPolygon\":if(!1===e(i,f,c,u,h))return!1;break;case\"GeometryCollection\":for(n=0;n<i.geometries.length;n++)if(!1===e(i.geometries[n],f,c,u,h))return!1;break;default:throw new Error(\"Unknown Geometry Type\")}else if(!1===e(null,f,c,u,h))return!1;f++}}function l(t,e){s(t,function(t,r,a,i,o){var s,l=null===t?null:t.type;switch(l){case null:case\"Point\":case\"LineString\":case\"Polygon\":return!1!==e(n.feature(t,a,{bbox:i,id:o}),r,0)&&void 0}switch(l){case\"MultiPoint\":s=\"Point\";break;case\"MultiLineString\":s=\"LineString\";break;case\"MultiPolygon\":s=\"Polygon\"}for(var c=0;c<t.coordinates.length;c++){var u={type:s,coordinates:t.coordinates[c]};if(!1===e(n.feature(u,a),r,c))return!1}})}function c(t,e){l(t,function(t,r,i){var o=0;if(t.geometry){var s=t.geometry.type;if(\"Point\"!==s&&\"MultiPoint\"!==s){var l,c=0,u=0,h=0;return!1!==a(t,function(a,s,f,p,d){if(void 0===l||r>c||p>u||d>h)return l=a,c=r,u=p,h=d,void(o=0);var g=n.lineString([l,a],t.properties);if(!1===e(g,r,i,d,o))return!1;o++,l=a})&&void 0}}})}function u(t,e){if(!t)throw new Error(\"geojson is required\");l(t,function(t,r,a){if(null!==t.geometry){var i=t.geometry.type,o=t.geometry.coordinates;switch(i){case\"LineString\":if(!1===e(t,r,a,0,0))return!1;break;case\"Polygon\":for(var s=0;s<o.length;s++)if(!1===e(n.lineString(o[s],t.properties),r,a,s))return!1}}})}r.coordEach=a,r.coordReduce=function(t,e,r,n){var i=r;return a(t,function(t,n,a,o,s){i=0===n&&void 0===r?t:e(i,t,n,a,o,s)},n),i},r.propEach=i,r.propReduce=function(t,e,r){var n=r;return i(t,function(t,a){n=0===a&&void 0===r?t:e(n,t,a)}),n},r.featureEach=o,r.featureReduce=function(t,e,r){var n=r;return o(t,function(t,a){n=0===a&&void 0===r?t:e(n,t,a)}),n},r.coordAll=function(t){var e=[];return a(t,function(t){e.push(t)}),e},r.geomEach=s,r.geomReduce=function(t,e,r){var n=r;return s(t,function(t,a,i,o,s){n=0===a&&void 0===r?t:e(n,t,a,i,o,s)}),n},r.flattenEach=l,r.flattenReduce=function(t,e,r){var n=r;return l(t,function(t,a,i){n=0===a&&0===i&&void 0===r?t:e(n,t,a,i)}),n},r.segmentEach=c,r.segmentReduce=function(t,e,r){var n=r,a=!1;return c(t,function(t,i,o,s,l){n=!1===a&&void 0===r?t:e(n,t,i,o,s,l),a=!0}),n},r.lineEach=u,r.lineReduce=function(t,e,r){var n=r;return u(t,function(t,a,i,o){n=0===a&&void 0===r?t:e(n,t,a,i,o)}),n},r.findSegment=function(t,e){if(e=e||{},!n.isObject(e))throw new Error(\"options is invalid\");var r,a=e.featureIndex||0,i=e.multiFeatureIndex||0,o=e.geometryIndex||0,s=e.segmentIndex||0,l=e.properties;switch(t.type){case\"FeatureCollection\":a<0&&(a=t.features.length+a),l=l||t.features[a].properties,r=t.features[a].geometry;break;case\"Feature\":l=l||t.properties,r=t.geometry;break;case\"Point\":case\"MultiPoint\":return null;case\"LineString\":case\"Polygon\":case\"MultiLineString\":case\"MultiPolygon\":r=t;break;default:throw new Error(\"geojson is invalid\")}if(null===r)return null;var c=r.coordinates;switch(r.type){case\"Point\":case\"MultiPoint\":return null;case\"LineString\":return s<0&&(s=c.length+s-1),n.lineString([c[s],c[s+1]],l,e);case\"Polygon\":return o<0&&(o=c.length+o),s<0&&(s=c[o].length+s-1),n.lineString([c[o][s],c[o][s+1]],l,e);case\"MultiLineString\":return i<0&&(i=c.length+i),s<0&&(s=c[i].length+s-1),n.lineString([c[i][s],c[i][s+1]],l,e);case\"MultiPolygon\":return i<0&&(i=c.length+i),o<0&&(o=c[i].length+o),s<0&&(s=c[i][o].length-s-1),n.lineString([c[i][o][s],c[i][o][s+1]],l,e)}throw new Error(\"geojson is invalid\")},r.findPoint=function(t,e){if(e=e||{},!n.isObject(e))throw new Error(\"options is invalid\");var r,a=e.featureIndex||0,i=e.multiFeatureIndex||0,o=e.geometryIndex||0,s=e.coordIndex||0,l=e.properties;switch(t.type){case\"FeatureCollection\":a<0&&(a=t.features.length+a),l=l||t.features[a].properties,r=t.features[a].geometry;break;case\"Feature\":l=l||t.properties,r=t.geometry;break;case\"Point\":case\"MultiPoint\":return null;case\"LineString\":case\"Polygon\":case\"MultiLineString\":case\"MultiPolygon\":r=t;break;default:throw new Error(\"geojson is invalid\")}if(null===r)return null;var c=r.coordinates;switch(r.type){case\"Point\":return n.point(c,l,e);case\"MultiPoint\":return i<0&&(i=c.length+i),n.point(c[i],l,e);case\"LineString\":return s<0&&(s=c.length+s),n.point(c[s],l,e);case\"Polygon\":return o<0&&(o=c.length+o),s<0&&(s=c[o].length+s),n.point(c[o][s],l,e);case\"MultiLineString\":return i<0&&(i=c.length+i),s<0&&(s=c[i].length+s),n.point(c[i][s],l,e);case\"MultiPolygon\":return i<0&&(i=c.length+i),o<0&&(o=c[i].length+o),s<0&&(s=c[i][o].length-s),n.point(c[i][o][s],l,e)}throw new Error(\"geojson is invalid\")}},{\"@turf/helpers\":58}],60:[function(t,e,r){\"use strict\";var n=\"undefined\"==typeof WeakMap?t(\"weak-map\"):WeakMap,a=t(\"gl-buffer\"),i=t(\"gl-vao\"),o=new n;e.exports=function(t){var e=o.get(t),r=e&&(e._triangleBuffer.handle||e._triangleBuffer.buffer);if(!r||!t.isBuffer(r)){var n=a(t,new Float32Array([-1,-1,-1,4,4,-1]));(e=i(t,[{buffer:n,type:t.FLOAT,size:2}]))._triangleBuffer=n,o.set(t,e)}e.bind(),t.drawArrays(t.TRIANGLES,0,3),e.unbind()}},{\"gl-buffer\":242,\"gl-vao\":328,\"weak-map\":553}],61:[function(t,e,r){e.exports=function(t){var e=0,r=0,n=0,a=0;return t.map(function(t){var i=(t=t.slice())[0],o=i.toUpperCase();if(i!=o)switch(t[0]=o,i){case\"a\":t[6]+=n,t[7]+=a;break;case\"v\":t[1]+=a;break;case\"h\":t[1]+=n;break;default:for(var s=1;s<t.length;)t[s++]+=n,t[s++]+=a}switch(o){case\"Z\":n=e,a=r;break;case\"H\":n=t[1];break;case\"V\":a=t[1];break;case\"M\":n=e=t[1],a=r=t[2];break;default:n=t[t.length-2],a=t[t.length-1]}return t})}},{}],62:[function(t,e,r){var n=t(\"pad-left\");e.exports=function(t,e,r){e=\"number\"==typeof e?e:1,r=r||\": \";var a=t.split(/\\r?\\n/),i=String(a.length+e-1).length;return a.map(function(t,a){var o=a+e,s=String(o).length,l=n(o,i-s);return l+r+t}).join(\"\\n\")}},{\"pad-left\":458}],63:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.length;if(0===e)return[];if(1===e)return[0];for(var r=t[0].length,n=[t[0]],i=[0],o=1;o<e;++o)if(n.push(t[o]),a(n,r)){if(i.push(o),i.length===r+1)return i}else n.pop();return i};var n=t(\"robust-orientation\");function a(t,e){for(var r=new Array(e+1),a=0;a<t.length;++a)r[a]=t[a];for(a=0;a<=t.length;++a){for(var i=t.length;i<=e;++i){for(var o=new Array(e),s=0;s<e;++s)o[s]=Math.pow(i+1-a,s);r[i]=o}if(n.apply(void 0,r))return!0}return!1}},{\"robust-orientation\":511}],64:[function(t,e,r){\"use strict\";e.exports=function(t,e){return n(e).filter(function(r){for(var n=new Array(r.length),i=0;i<r.length;++i)n[i]=e[r[i]];return a(n)*t<1})};var n=t(\"delaunay-triangulate\"),a=t(\"circumradius\")},{circumradius:115,\"delaunay-triangulate\":166}],65:[function(t,e,r){e.exports=function(t,e){return a(n(t,e))};var n=t(\"alpha-complex\"),a=t(\"simplicial-complex-boundary\")},{\"alpha-complex\":64,\"simplicial-complex-boundary\":518}],66:[function(t,e,r){\"use strict\";e.exports=function(t,e){if(!t||null==t.length)throw Error(\"Argument should be an array\");e=null==e?1:Math.floor(e);for(var r=Array(2*e),n=0;n<e;n++){for(var a=-1/0,i=1/0,o=n,s=t.length;o<s;o+=e)t[o]>a&&(a=t[o]),t[o]<i&&(i=t[o]);r[n]=i,r[e+n]=a}return r}},{}],67:[function(t,e,r){\"use strict\";var n=t(\"array-bounds\");e.exports=function(t,e,r){if(!t||null==t.length)throw Error(\"Argument should be an array\");null==e&&(e=1);null==r&&(r=n(t,e));for(var a=0;a<e;a++){var i=r[e+a],o=r[a],s=a,l=t.length;if(i===1/0&&o===-1/0)for(s=a;s<l;s+=e)t[s]=t[s]===i?1:t[s]===o?0:.5;else if(i===1/0)for(s=a;s<l;s+=e)t[s]=t[s]===i?1:0;else if(o===-1/0)for(s=a;s<l;s+=e)t[s]=t[s]===o?0:1;else{var c=i-o;for(s=a;s<l;s+=e)t[s]=0===c?.5:(t[s]-o)/c}}return t}},{\"array-bounds\":66}],68:[function(t,e,r){e.exports=function(t,e){var r=\"number\"==typeof t,n=\"number\"==typeof e;r&&!n?(e=t,t=0):r||n||(t=0,e=0);var a=(e|=0)-(t|=0);if(a<0)throw new Error(\"array length must be positive\");for(var i=new Array(a),o=0,s=t;o<a;o++,s++)i[o]=s;return i}},{}],69:[function(t,e,r){(function(r){\"use strict\";var n=t(\"object-assign\");function a(t,e){if(t===e)return 0;for(var r=t.length,n=e.length,a=0,i=Math.min(r,n);a<i;++a)if(t[a]!==e[a]){r=t[a],n=e[a];break}return r<n?-1:n<r?1:0}function i(t){return r.Buffer&&\"function\"==typeof r.Buffer.isBuffer?r.Buffer.isBuffer(t):!(null==t||!t._isBuffer)}var o=t(\"util/\"),s=Object.prototype.hasOwnProperty,l=Array.prototype.slice,c=\"foo\"===function(){}.name;function u(t){return Object.prototype.toString.call(t)}function h(t){return!i(t)&&(\"function\"==typeof r.ArrayBuffer&&(\"function\"==typeof ArrayBuffer.isView?ArrayBuffer.isView(t):!!t&&(t instanceof DataView||!!(t.buffer&&t.buffer instanceof ArrayBuffer))))}var f=e.exports=y,p=/\\s*function\\s+([^\\(\\s]*)\\s*/;function d(t){if(o.isFunction(t)){if(c)return t.name;var e=t.toString().match(p);return e&&e[1]}}function g(t,e){return\"string\"==typeof t?t.length<e?t:t.slice(0,e):t}function v(t){if(c||!o.isFunction(t))return o.inspect(t);var e=d(t);return\"[Function\"+(e?\": \"+e:\"\")+\"]\"}function m(t,e,r,n,a){throw new f.AssertionError({message:r,actual:t,expected:e,operator:n,stackStartFunction:a})}function y(t,e){t||m(t,!0,e,\"==\",f.ok)}function x(t,e,r,n){if(t===e)return!0;if(i(t)&&i(e))return 0===a(t,e);if(o.isDate(t)&&o.isDate(e))return t.getTime()===e.getTime();if(o.isRegExp(t)&&o.isRegExp(e))return t.source===e.source&&t.global===e.global&&t.multiline===e.multiline&&t.lastIndex===e.lastIndex&&t.ignoreCase===e.ignoreCase;if(null!==t&&\"object\"==typeof t||null!==e&&\"object\"==typeof e){if(h(t)&&h(e)&&u(t)===u(e)&&!(t instanceof Float32Array||t instanceof Float64Array))return 0===a(new Uint8Array(t.buffer),new Uint8Array(e.buffer));if(i(t)!==i(e))return!1;var s=(n=n||{actual:[],expected:[]}).actual.indexOf(t);return-1!==s&&s===n.expected.indexOf(e)||(n.actual.push(t),n.expected.push(e),function(t,e,r,n){if(null==t||null==e)return!1;if(o.isPrimitive(t)||o.isPrimitive(e))return t===e;if(r&&Object.getPrototypeOf(t)!==Object.getPrototypeOf(e))return!1;var a=b(t),i=b(e);if(a&&!i||!a&&i)return!1;if(a)return t=l.call(t),e=l.call(e),x(t,e,r);var s,c,u=k(t),h=k(e);if(u.length!==h.length)return!1;for(u.sort(),h.sort(),c=u.length-1;c>=0;c--)if(u[c]!==h[c])return!1;for(c=u.length-1;c>=0;c--)if(s=u[c],!x(t[s],e[s],r,n))return!1;return!0}(t,e,r,n))}return r?t===e:t==e}function b(t){return\"[object Arguments]\"==Object.prototype.toString.call(t)}function _(t,e){if(!t||!e)return!1;if(\"[object RegExp]\"==Object.prototype.toString.call(e))return e.test(t);try{if(t instanceof e)return!0}catch(t){}return!Error.isPrototypeOf(e)&&!0===e.call({},t)}function w(t,e,r,n){var a;if(\"function\"!=typeof e)throw new TypeError('\"block\" argument must be a function');\"string\"==typeof r&&(n=r,r=null),a=function(t){var e;try{t()}catch(t){e=t}return e}(e),n=(r&&r.name?\" (\"+r.name+\").\":\".\")+(n?\" \"+n:\".\"),t&&!a&&m(a,r,\"Missing expected exception\"+n);var i=\"string\"==typeof n,s=!t&&a&&!r;if((!t&&o.isError(a)&&i&&_(a,r)||s)&&m(a,r,\"Got unwanted exception\"+n),t&&a&&r&&!_(a,r)||!t&&a)throw a}f.AssertionError=function(t){var e;this.name=\"AssertionError\",this.actual=t.actual,this.expected=t.expected,this.operator=t.operator,t.message?(this.message=t.message,this.generatedMessage=!1):(this.message=g(v((e=this).actual),128)+\" \"+e.operator+\" \"+g(v(e.expected),128),this.generatedMessage=!0);var r=t.stackStartFunction||m;if(Error.captureStackTrace)Error.captureStackTrace(this,r);else{var n=new Error;if(n.stack){var a=n.stack,i=d(r),o=a.indexOf(\"\\n\"+i);if(o>=0){var s=a.indexOf(\"\\n\",o+1);a=a.substring(s+1)}this.stack=a}}},o.inherits(f.AssertionError,Error),f.fail=m,f.ok=y,f.equal=function(t,e,r){t!=e&&m(t,e,r,\"==\",f.equal)},f.notEqual=function(t,e,r){t==e&&m(t,e,r,\"!=\",f.notEqual)},f.deepEqual=function(t,e,r){x(t,e,!1)||m(t,e,r,\"deepEqual\",f.deepEqual)},f.deepStrictEqual=function(t,e,r){x(t,e,!0)||m(t,e,r,\"deepStrictEqual\",f.deepStrictEqual)},f.notDeepEqual=function(t,e,r){x(t,e,!1)&&m(t,e,r,\"notDeepEqual\",f.notDeepEqual)},f.notDeepStrictEqual=function t(e,r,n){x(e,r,!0)&&m(e,r,n,\"notDeepStrictEqual\",t)},f.strictEqual=function(t,e,r){t!==e&&m(t,e,r,\"===\",f.strictEqual)},f.notStrictEqual=function(t,e,r){t===e&&m(t,e,r,\"!==\",f.notStrictEqual)},f.throws=function(t,e,r){w(!0,t,e,r)},f.doesNotThrow=function(t,e,r){w(!1,t,e,r)},f.ifError=function(t){if(t)throw t},f.strict=n(function t(e,r){e||m(e,!0,r,\"==\",t)},f,{equal:f.strictEqual,deepEqual:f.deepStrictEqual,notEqual:f.notStrictEqual,notDeepEqual:f.notDeepStrictEqual}),f.strict.strict=f.strict;var k=Object.keys||function(t){var e=[];for(var r in t)s.call(t,r)&&e.push(r);return e}}).call(this,\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{\"object-assign\":455,\"util/\":72}],70:[function(t,e,r){\"function\"==typeof Object.create?e.exports=function(t,e){t.super_=e,t.prototype=Object.create(e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}})}:e.exports=function(t,e){t.super_=e;var r=function(){};r.prototype=e.prototype,t.prototype=new r,t.prototype.constructor=t}},{}],71:[function(t,e,r){e.exports=function(t){return t&&\"object\"==typeof t&&\"function\"==typeof t.copy&&\"function\"==typeof t.fill&&\"function\"==typeof t.readUInt8}},{}],72:[function(t,e,r){(function(e,n){var a=/%[sdj%]/g;r.format=function(t){if(!m(t)){for(var e=[],r=0;r<arguments.length;r++)e.push(s(arguments[r]));return e.join(\" \")}r=1;for(var n=arguments,i=n.length,o=String(t).replace(a,function(t){if(\"%%\"===t)return\"%\";if(r>=i)return t;switch(t){case\"%s\":return String(n[r++]);case\"%d\":return Number(n[r++]);case\"%j\":try{return JSON.stringify(n[r++])}catch(t){return\"[Circular]\"}default:return t}}),l=n[r];r<i;l=n[++r])g(l)||!b(l)?o+=\" \"+l:o+=\" \"+s(l);return o},r.deprecate=function(t,a){if(y(n.process))return function(){return r.deprecate(t,a).apply(this,arguments)};if(!0===e.noDeprecation)return t;var i=!1;return function(){if(!i){if(e.throwDeprecation)throw new Error(a);e.traceDeprecation?console.trace(a):console.error(a),i=!0}return t.apply(this,arguments)}};var i,o={};function s(t,e){var n={seen:[],stylize:c};return arguments.length>=3&&(n.depth=arguments[2]),arguments.length>=4&&(n.colors=arguments[3]),d(e)?n.showHidden=e:e&&r._extend(n,e),y(n.showHidden)&&(n.showHidden=!1),y(n.depth)&&(n.depth=2),y(n.colors)&&(n.colors=!1),y(n.customInspect)&&(n.customInspect=!0),n.colors&&(n.stylize=l),u(n,t,n.depth)}function l(t,e){var r=s.styles[e];return r?\"\\x1b[\"+s.colors[r][0]+\"m\"+t+\"\\x1b[\"+s.colors[r][1]+\"m\":t}function c(t,e){return t}function u(t,e,n){if(t.customInspect&&e&&k(e.inspect)&&e.inspect!==r.inspect&&(!e.constructor||e.constructor.prototype!==e)){var a=e.inspect(n,t);return m(a)||(a=u(t,a,n)),a}var i=function(t,e){if(y(e))return t.stylize(\"undefined\",\"undefined\");if(m(e)){var r=\"'\"+JSON.stringify(e).replace(/^\"|\"$/g,\"\").replace(/'/g,\"\\\\'\").replace(/\\\\\"/g,'\"')+\"'\";return t.stylize(r,\"string\")}if(v(e))return t.stylize(\"\"+e,\"number\");if(d(e))return t.stylize(\"\"+e,\"boolean\");if(g(e))return t.stylize(\"null\",\"null\")}(t,e);if(i)return i;var o=Object.keys(e),s=function(t){var e={};return t.forEach(function(t,r){e[t]=!0}),e}(o);if(t.showHidden&&(o=Object.getOwnPropertyNames(e)),w(e)&&(o.indexOf(\"message\")>=0||o.indexOf(\"description\")>=0))return h(e);if(0===o.length){if(k(e)){var l=e.name?\": \"+e.name:\"\";return t.stylize(\"[Function\"+l+\"]\",\"special\")}if(x(e))return t.stylize(RegExp.prototype.toString.call(e),\"regexp\");if(_(e))return t.stylize(Date.prototype.toString.call(e),\"date\");if(w(e))return h(e)}var c,b=\"\",T=!1,A=[\"{\",\"}\"];(p(e)&&(T=!0,A=[\"[\",\"]\"]),k(e))&&(b=\" [Function\"+(e.name?\": \"+e.name:\"\")+\"]\");return x(e)&&(b=\" \"+RegExp.prototype.toString.call(e)),_(e)&&(b=\" \"+Date.prototype.toUTCString.call(e)),w(e)&&(b=\" \"+h(e)),0!==o.length||T&&0!=e.length?n<0?x(e)?t.stylize(RegExp.prototype.toString.call(e),\"regexp\"):t.stylize(\"[Object]\",\"special\"):(t.seen.push(e),c=T?function(t,e,r,n,a){for(var i=[],o=0,s=e.length;o<s;++o)S(e,String(o))?i.push(f(t,e,r,n,String(o),!0)):i.push(\"\");return a.forEach(function(a){a.match(/^\\d+$/)||i.push(f(t,e,r,n,a,!0))}),i}(t,e,n,s,o):o.map(function(r){return f(t,e,n,s,r,T)}),t.seen.pop(),function(t,e,r){if(t.reduce(function(t,e){return 0,e.indexOf(\"\\n\")>=0&&0,t+e.replace(/\\u001b\\[\\d\\d?m/g,\"\").length+1},0)>60)return r[0]+(\"\"===e?\"\":e+\"\\n \")+\" \"+t.join(\",\\n  \")+\" \"+r[1];return r[0]+e+\" \"+t.join(\", \")+\" \"+r[1]}(c,b,A)):A[0]+b+A[1]}function h(t){return\"[\"+Error.prototype.toString.call(t)+\"]\"}function f(t,e,r,n,a,i){var o,s,l;if((l=Object.getOwnPropertyDescriptor(e,a)||{value:e[a]}).get?s=l.set?t.stylize(\"[Getter/Setter]\",\"special\"):t.stylize(\"[Getter]\",\"special\"):l.set&&(s=t.stylize(\"[Setter]\",\"special\")),S(n,a)||(o=\"[\"+a+\"]\"),s||(t.seen.indexOf(l.value)<0?(s=g(r)?u(t,l.value,null):u(t,l.value,r-1)).indexOf(\"\\n\")>-1&&(s=i?s.split(\"\\n\").map(function(t){return\"  \"+t}).join(\"\\n\").substr(2):\"\\n\"+s.split(\"\\n\").map(function(t){return\"   \"+t}).join(\"\\n\")):s=t.stylize(\"[Circular]\",\"special\")),y(o)){if(i&&a.match(/^\\d+$/))return s;(o=JSON.stringify(\"\"+a)).match(/^\"([a-zA-Z_][a-zA-Z_0-9]*)\"$/)?(o=o.substr(1,o.length-2),o=t.stylize(o,\"name\")):(o=o.replace(/'/g,\"\\\\'\").replace(/\\\\\"/g,'\"').replace(/(^\"|\"$)/g,\"'\"),o=t.stylize(o,\"string\"))}return o+\": \"+s}function p(t){return Array.isArray(t)}function d(t){return\"boolean\"==typeof t}function g(t){return null===t}function v(t){return\"number\"==typeof t}function m(t){return\"string\"==typeof t}function y(t){return void 0===t}function x(t){return b(t)&&\"[object RegExp]\"===T(t)}function b(t){return\"object\"==typeof t&&null!==t}function _(t){return b(t)&&\"[object Date]\"===T(t)}function w(t){return b(t)&&(\"[object Error]\"===T(t)||t instanceof Error)}function k(t){return\"function\"==typeof t}function T(t){return Object.prototype.toString.call(t)}function A(t){return t<10?\"0\"+t.toString(10):t.toString(10)}r.debuglog=function(t){if(y(i)&&(i=e.env.NODE_DEBUG||\"\"),t=t.toUpperCase(),!o[t])if(new RegExp(\"\\\\b\"+t+\"\\\\b\",\"i\").test(i)){var n=e.pid;o[t]=function(){var e=r.format.apply(r,arguments);console.error(\"%s %d: %s\",t,n,e)}}else o[t]=function(){};return o[t]},r.inspect=s,s.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},s.styles={special:\"cyan\",number:\"yellow\",boolean:\"yellow\",undefined:\"grey\",null:\"bold\",string:\"green\",date:\"magenta\",regexp:\"red\"},r.isArray=p,r.isBoolean=d,r.isNull=g,r.isNullOrUndefined=function(t){return null==t},r.isNumber=v,r.isString=m,r.isSymbol=function(t){return\"symbol\"==typeof t},r.isUndefined=y,r.isRegExp=x,r.isObject=b,r.isDate=_,r.isError=w,r.isFunction=k,r.isPrimitive=function(t){return null===t||\"boolean\"==typeof t||\"number\"==typeof t||\"string\"==typeof t||\"symbol\"==typeof t||\"undefined\"==typeof t},r.isBuffer=t(\"./support/isBuffer\");var M=[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"];function S(t,e){return Object.prototype.hasOwnProperty.call(t,e)}r.log=function(){var t,e;console.log(\"%s - %s\",(t=new Date,e=[A(t.getHours()),A(t.getMinutes()),A(t.getSeconds())].join(\":\"),[t.getDate(),M[t.getMonth()],e].join(\" \")),r.format.apply(r,arguments))},r.inherits=t(\"inherits\"),r._extend=function(t,e){if(!e||!b(e))return t;for(var r=Object.keys(e),n=r.length;n--;)t[r[n]]=e[r[n]];return t}}).call(this,t(\"_process\"),\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{\"./support/isBuffer\":71,_process:483,inherits:70}],73:[function(t,e,r){e.exports=function(t){return atob(t)}},{}],74:[function(t,e,r){\"use strict\";e.exports=function(t,e){for(var r=e.length,i=new Array(r+1),o=0;o<r;++o){for(var s=new Array(r+1),l=0;l<=r;++l)s[l]=t[l][o];i[o]=s}i[r]=new Array(r+1);for(var o=0;o<=r;++o)i[r][o]=1;for(var c=new Array(r+1),o=0;o<r;++o)c[o]=e[o];c[r]=1;var u=n(i,c),h=a(u[r+1]);0===h&&(h=1);for(var f=new Array(r+1),o=0;o<=r;++o)f[o]=a(u[o])/h;return f};var n=t(\"robust-linear-solve\");function a(t){for(var e=0,r=0;r<t.length;++r)e+=t[r];return e}},{\"robust-linear-solve\":510}],75:[function(t,e,r){\"use strict\";r.byteLength=function(t){var e=c(t),r=e[0],n=e[1];return 3*(r+n)/4-n},r.toByteArray=function(t){var e,r,n=c(t),o=n[0],s=n[1],l=new i(function(t,e,r){return 3*(e+r)/4-r}(0,o,s)),u=0,h=s>0?o-4:o;for(r=0;r<h;r+=4)e=a[t.charCodeAt(r)]<<18|a[t.charCodeAt(r+1)]<<12|a[t.charCodeAt(r+2)]<<6|a[t.charCodeAt(r+3)],l[u++]=e>>16&255,l[u++]=e>>8&255,l[u++]=255&e;2===s&&(e=a[t.charCodeAt(r)]<<2|a[t.charCodeAt(r+1)]>>4,l[u++]=255&e);1===s&&(e=a[t.charCodeAt(r)]<<10|a[t.charCodeAt(r+1)]<<4|a[t.charCodeAt(r+2)]>>2,l[u++]=e>>8&255,l[u++]=255&e);return l},r.fromByteArray=function(t){for(var e,r=t.length,a=r%3,i=[],o=0,s=r-a;o<s;o+=16383)i.push(u(t,o,o+16383>s?s:o+16383));1===a?(e=t[r-1],i.push(n[e>>2]+n[e<<4&63]+\"==\")):2===a&&(e=(t[r-2]<<8)+t[r-1],i.push(n[e>>10]+n[e>>4&63]+n[e<<2&63]+\"=\"));return i.join(\"\")};for(var n=[],a=[],i=\"undefined\"!=typeof Uint8Array?Uint8Array:Array,o=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/\",s=0,l=o.length;s<l;++s)n[s]=o[s],a[o.charCodeAt(s)]=s;function c(t){var e=t.length;if(e%4>0)throw new Error(\"Invalid string. Length must be a multiple of 4\");var r=t.indexOf(\"=\");return-1===r&&(r=e),[r,r===e?0:4-r%4]}function u(t,e,r){for(var a,i,o=[],s=e;s<r;s+=3)a=(t[s]<<16&16711680)+(t[s+1]<<8&65280)+(255&t[s+2]),o.push(n[(i=a)>>18&63]+n[i>>12&63]+n[i>>6&63]+n[63&i]);return o.join(\"\")}a[\"-\".charCodeAt(0)]=62,a[\"_\".charCodeAt(0)]=63},{}],76:[function(t,e,r){\"use strict\";var n=t(\"./lib/rationalize\");e.exports=function(t,e){return n(t[0].mul(e[1]).add(e[0].mul(t[1])),t[1].mul(e[1]))}},{\"./lib/rationalize\":86}],77:[function(t,e,r){\"use strict\";e.exports=function(t,e){return t[0].mul(e[1]).cmp(e[0].mul(t[1]))}},{}],78:[function(t,e,r){\"use strict\";var n=t(\"./lib/rationalize\");e.exports=function(t,e){return n(t[0].mul(e[1]),t[1].mul(e[0]))}},{\"./lib/rationalize\":86}],79:[function(t,e,r){\"use strict\";var n=t(\"./is-rat\"),a=t(\"./lib/is-bn\"),i=t(\"./lib/num-to-bn\"),o=t(\"./lib/str-to-bn\"),s=t(\"./lib/rationalize\"),l=t(\"./div\");e.exports=function t(e,r){if(n(e))return r?l(e,t(r)):[e[0].clone(),e[1].clone()];var c=0;var u,h;if(a(e))u=e.clone();else if(\"string\"==typeof e)u=o(e);else{if(0===e)return[i(0),i(1)];if(e===Math.floor(e))u=i(e);else{for(;e!==Math.floor(e);)e*=Math.pow(2,256),c-=256;u=i(e)}}if(n(r))u.mul(r[1]),h=r[0].clone();else if(a(r))h=r.clone();else if(\"string\"==typeof r)h=o(r);else if(r)if(r===Math.floor(r))h=i(r);else{for(;r!==Math.floor(r);)r*=Math.pow(2,256),c+=256;h=i(r)}else h=i(1);c>0?u=u.ushln(c):c<0&&(h=h.ushln(-c));return s(u,h)}},{\"./div\":78,\"./is-rat\":80,\"./lib/is-bn\":84,\"./lib/num-to-bn\":85,\"./lib/rationalize\":86,\"./lib/str-to-bn\":87}],80:[function(t,e,r){\"use strict\";var n=t(\"./lib/is-bn\");e.exports=function(t){return Array.isArray(t)&&2===t.length&&n(t[0])&&n(t[1])}},{\"./lib/is-bn\":84}],81:[function(t,e,r){\"use strict\";var n=t(\"bn.js\");e.exports=function(t){return t.cmp(new n(0))}},{\"bn.js\":95}],82:[function(t,e,r){\"use strict\";var n=t(\"./bn-sign\");e.exports=function(t){var e=t.length,r=t.words,a=0;if(1===e)a=r[0];else if(2===e)a=r[0]+67108864*r[1];else for(var i=0;i<e;i++){var o=r[i];a+=o*Math.pow(67108864,i)}return n(t)*a}},{\"./bn-sign\":81}],83:[function(t,e,r){\"use strict\";var n=t(\"double-bits\"),a=t(\"bit-twiddle\").countTrailingZeros;e.exports=function(t){var e=a(n.lo(t));if(e<32)return e;var r=a(n.hi(t));if(r>20)return 52;return r+32}},{\"bit-twiddle\":93,\"double-bits\":168}],84:[function(t,e,r){\"use strict\";t(\"bn.js\");e.exports=function(t){return t&&\"object\"==typeof t&&Boolean(t.words)}},{\"bn.js\":95}],85:[function(t,e,r){\"use strict\";var n=t(\"bn.js\"),a=t(\"double-bits\");e.exports=function(t){var e=a.exponent(t);return e<52?new n(t):new n(t*Math.pow(2,52-e)).ushln(e-52)}},{\"bn.js\":95,\"double-bits\":168}],86:[function(t,e,r){\"use strict\";var n=t(\"./num-to-bn\"),a=t(\"./bn-sign\");e.exports=function(t,e){var r=a(t),i=a(e);if(0===r)return[n(0),n(1)];if(0===i)return[n(0),n(0)];i<0&&(t=t.neg(),e=e.neg());var o=t.gcd(e);if(o.cmpn(1))return[t.div(o),e.div(o)];return[t,e]}},{\"./bn-sign\":81,\"./num-to-bn\":85}],87:[function(t,e,r){\"use strict\";var n=t(\"bn.js\");e.exports=function(t){return new n(t)}},{\"bn.js\":95}],88:[function(t,e,r){\"use strict\";var n=t(\"./lib/rationalize\");e.exports=function(t,e){return n(t[0].mul(e[0]),t[1].mul(e[1]))}},{\"./lib/rationalize\":86}],89:[function(t,e,r){\"use strict\";var n=t(\"./lib/bn-sign\");e.exports=function(t){return n(t[0])*n(t[1])}},{\"./lib/bn-sign\":81}],90:[function(t,e,r){\"use strict\";var n=t(\"./lib/rationalize\");e.exports=function(t,e){return n(t[0].mul(e[1]).sub(t[1].mul(e[0])),t[1].mul(e[1]))}},{\"./lib/rationalize\":86}],91:[function(t,e,r){\"use strict\";var n=t(\"./lib/bn-to-num\"),a=t(\"./lib/ctz\");e.exports=function(t){var e=t[0],r=t[1];if(0===e.cmpn(0))return 0;var i=e.abs().divmod(r.abs()),o=i.div,s=n(o),l=i.mod,c=e.negative!==r.negative?-1:1;if(0===l.cmpn(0))return c*s;if(s){var u=a(s)+4,h=n(l.ushln(u).divRound(r));return c*(s+h*Math.pow(2,-u))}var f=r.bitLength()-l.bitLength()+53,h=n(l.ushln(f).divRound(r));return f<1023?c*h*Math.pow(2,-f):(h*=Math.pow(2,-1023),c*h*Math.pow(2,1023-f))}},{\"./lib/bn-to-num\":82,\"./lib/ctz\":83}],92:[function(t,e,r){\"use strict\";function n(t,e,r,n,a,i){var o=[\"function \",t,\"(a,l,h,\",n.join(\",\"),\"){\",i?\"\":\"var i=\",r?\"l-1\":\"h+1\",\";while(l<=h){var m=(l+h)>>>1,x=a\",a?\".get(m)\":\"[m]\"];return i?e.indexOf(\"c\")<0?o.push(\";if(x===y){return m}else if(x<=y){\"):o.push(\";var p=c(x,y);if(p===0){return m}else if(p<=0){\"):o.push(\";if(\",e,\"){i=m;\"),r?o.push(\"l=m+1}else{h=m-1}\"):o.push(\"h=m-1}else{l=m+1}\"),o.push(\"}\"),i?o.push(\"return -1};\"):o.push(\"return i};\"),o.join(\"\")}function a(t,e,r,a){return new Function([n(\"A\",\"x\"+t+\"y\",e,[\"y\"],!1,a),n(\"B\",\"x\"+t+\"y\",e,[\"y\"],!0,a),n(\"P\",\"c(x,y)\"+t+\"0\",e,[\"y\",\"c\"],!1,a),n(\"Q\",\"c(x,y)\"+t+\"0\",e,[\"y\",\"c\"],!0,a),\"function dispatchBsearch\",r,\"(a,y,c,l,h){if(a.shape){if(typeof(c)==='function'){return Q(a,(l===undefined)?0:l|0,(h===undefined)?a.shape[0]-1:h|0,y,c)}else{return B(a,(c===undefined)?0:c|0,(l===undefined)?a.shape[0]-1:l|0,y)}}else{if(typeof(c)==='function'){return P(a,(l===undefined)?0:l|0,(h===undefined)?a.length-1:h|0,y,c)}else{return A(a,(c===undefined)?0:c|0,(l===undefined)?a.length-1:l|0,y)}}}return dispatchBsearch\",r].join(\"\"))()}e.exports={ge:a(\">=\",!1,\"GE\"),gt:a(\">\",!1,\"GT\"),lt:a(\"<\",!0,\"LT\"),le:a(\"<=\",!0,\"LE\"),eq:a(\"-\",!0,\"EQ\",!0)}},{}],93:[function(t,e,r){\"use strict\";function n(t){var e=32;return(t&=-t)&&e--,65535&t&&(e-=16),16711935&t&&(e-=8),252645135&t&&(e-=4),858993459&t&&(e-=2),1431655765&t&&(e-=1),e}r.INT_BITS=32,r.INT_MAX=2147483647,r.INT_MIN=-1<<31,r.sign=function(t){return(t>0)-(t<0)},r.abs=function(t){var e=t>>31;return(t^e)-e},r.min=function(t,e){return e^(t^e)&-(t<e)},r.max=function(t,e){return t^(t^e)&-(t<e)},r.isPow2=function(t){return!(t&t-1||!t)},r.log2=function(t){var e,r;return e=(t>65535)<<4,e|=r=((t>>>=e)>255)<<3,e|=r=((t>>>=r)>15)<<2,(e|=r=((t>>>=r)>3)<<1)|(t>>>=r)>>1},r.log10=function(t){return t>=1e9?9:t>=1e8?8:t>=1e7?7:t>=1e6?6:t>=1e5?5:t>=1e4?4:t>=1e3?3:t>=100?2:t>=10?1:0},r.popCount=function(t){return 16843009*((t=(858993459&(t-=t>>>1&1431655765))+(t>>>2&858993459))+(t>>>4)&252645135)>>>24},r.countTrailingZeros=n,r.nextPow2=function(t){return t+=0===t,--t,t|=t>>>1,t|=t>>>2,t|=t>>>4,t|=t>>>8,(t|=t>>>16)+1},r.prevPow2=function(t){return t|=t>>>1,t|=t>>>2,t|=t>>>4,t|=t>>>8,(t|=t>>>16)-(t>>>1)},r.parity=function(t){return t^=t>>>16,t^=t>>>8,t^=t>>>4,27030>>>(t&=15)&1};var a=new Array(256);!function(t){for(var e=0;e<256;++e){var r=e,n=e,a=7;for(r>>>=1;r;r>>>=1)n<<=1,n|=1&r,--a;t[e]=n<<a&255}}(a),r.reverse=function(t){return a[255&t]<<24|a[t>>>8&255]<<16|a[t>>>16&255]<<8|a[t>>>24&255]},r.interleave2=function(t,e){return(t=1431655765&((t=858993459&((t=252645135&((t=16711935&((t&=65535)|t<<8))|t<<4))|t<<2))|t<<1))|(e=1431655765&((e=858993459&((e=252645135&((e=16711935&((e&=65535)|e<<8))|e<<4))|e<<2))|e<<1))<<1},r.deinterleave2=function(t,e){return(t=65535&((t=16711935&((t=252645135&((t=858993459&((t=t>>>e&1431655765)|t>>>1))|t>>>2))|t>>>4))|t>>>16))<<16>>16},r.interleave3=function(t,e,r){return t=1227133513&((t=3272356035&((t=251719695&((t=4278190335&((t&=1023)|t<<16))|t<<8))|t<<4))|t<<2),(t|=(e=1227133513&((e=3272356035&((e=251719695&((e=4278190335&((e&=1023)|e<<16))|e<<8))|e<<4))|e<<2))<<1)|(r=1227133513&((r=3272356035&((r=251719695&((r=4278190335&((r&=1023)|r<<16))|r<<8))|r<<4))|r<<2))<<2},r.deinterleave3=function(t,e){return(t=1023&((t=4278190335&((t=251719695&((t=3272356035&((t=t>>>e&1227133513)|t>>>2))|t>>>4))|t>>>8))|t>>>16))<<22>>22},r.nextCombination=function(t){var e=t|t-1;return e+1|(~e&-~e)-1>>>n(t)+1}},{}],94:[function(t,e,r){\"use strict\";var n=t(\"clamp\");e.exports=function(t,e){e||(e={});var r,o,s,l,c,u,h,f,p,d,g,v=null==e.cutoff?.25:e.cutoff,m=null==e.radius?8:e.radius,y=e.channel||0;if(ArrayBuffer.isView(t)||Array.isArray(t)){if(!e.width||!e.height)throw Error(\"For raw data width and height should be provided by options\");r=e.width,o=e.height,l=t,u=e.stride?e.stride:Math.floor(t.length/r/o)}else window.HTMLCanvasElement&&t instanceof window.HTMLCanvasElement?(h=(f=t).getContext(\"2d\"),r=f.width,o=f.height,p=h.getImageData(0,0,r,o),l=p.data,u=4):window.CanvasRenderingContext2D&&t instanceof window.CanvasRenderingContext2D?(f=t.canvas,h=t,r=f.width,o=f.height,p=h.getImageData(0,0,r,o),l=p.data,u=4):window.ImageData&&t instanceof window.ImageData&&(p=t,r=t.width,o=t.height,l=p.data,u=4);if(s=Math.max(r,o),window.Uint8ClampedArray&&l instanceof window.Uint8ClampedArray||window.Uint8Array&&l instanceof window.Uint8Array)for(c=l,l=Array(r*o),d=0,g=c.length;d<g;d++)l[d]=c[d*u+y]/255;else if(1!==u)throw Error(\"Raw data can have only 1 value per pixel\");var x=Array(r*o),b=Array(r*o),_=Array(s),w=Array(s),k=Array(s+1),T=Array(s);for(d=0,g=r*o;d<g;d++){var A=l[d];x[d]=1===A?0:0===A?a:Math.pow(Math.max(0,.5-A),2),b[d]=1===A?a:0===A?0:Math.pow(Math.max(0,A-.5),2)}i(x,r,o,_,w,T,k),i(b,r,o,_,w,T,k);var M=window.Float32Array?new Float32Array(r*o):new Array(r*o);for(d=0,g=r*o;d<g;d++)M[d]=n(1-((x[d]-b[d])/m+v),0,1);return M};var a=1e20;function i(t,e,r,n,a,i,s){for(var l=0;l<e;l++){for(var c=0;c<r;c++)n[c]=t[c*e+l];for(o(n,a,i,s,r),c=0;c<r;c++)t[c*e+l]=a[c]}for(c=0;c<r;c++){for(l=0;l<e;l++)n[l]=t[c*e+l];for(o(n,a,i,s,e),l=0;l<e;l++)t[c*e+l]=Math.sqrt(a[l])}}function o(t,e,r,n,i){r[0]=0,n[0]=-a,n[1]=+a;for(var o=1,s=0;o<i;o++){for(var l=(t[o]+o*o-(t[r[s]]+r[s]*r[s]))/(2*o-2*r[s]);l<=n[s];)s--,l=(t[o]+o*o-(t[r[s]]+r[s]*r[s]))/(2*o-2*r[s]);r[++s]=o,n[s]=l,n[s+1]=+a}for(o=0,s=0;o<i;o++){for(;n[s+1]<o;)s++;e[o]=(o-r[s])*(o-r[s])+t[r[s]]}}},{clamp:116}],95:[function(t,e,r){!function(e,r){\"use strict\";function n(t,e){if(!t)throw new Error(e||\"Assertion failed\")}function a(t,e){t.super_=e;var r=function(){};r.prototype=e.prototype,t.prototype=new r,t.prototype.constructor=t}function i(t,e,r){if(i.isBN(t))return t;this.negative=0,this.words=null,this.length=0,this.red=null,null!==t&&(\"le\"!==e&&\"be\"!==e||(r=e,e=10),this._init(t||0,e||10,r||\"be\"))}var o;\"object\"==typeof e?e.exports=i:r.BN=i,i.BN=i,i.wordSize=26;try{o=t(\"buffer\").Buffer}catch(t){}function s(t,e,r){for(var n=0,a=Math.min(t.length,r),i=e;i<a;i++){var o=t.charCodeAt(i)-48;n<<=4,n|=o>=49&&o<=54?o-49+10:o>=17&&o<=22?o-17+10:15&o}return n}function l(t,e,r,n){for(var a=0,i=Math.min(t.length,r),o=e;o<i;o++){var s=t.charCodeAt(o)-48;a*=n,a+=s>=49?s-49+10:s>=17?s-17+10:s}return a}i.isBN=function(t){return t instanceof i||null!==t&&\"object\"==typeof t&&t.constructor.wordSize===i.wordSize&&Array.isArray(t.words)},i.max=function(t,e){return t.cmp(e)>0?t:e},i.min=function(t,e){return t.cmp(e)<0?t:e},i.prototype._init=function(t,e,r){if(\"number\"==typeof t)return this._initNumber(t,e,r);if(\"object\"==typeof t)return this._initArray(t,e,r);\"hex\"===e&&(e=16),n(e===(0|e)&&e>=2&&e<=36);var a=0;\"-\"===(t=t.toString().replace(/\\s+/g,\"\"))[0]&&a++,16===e?this._parseHex(t,a):this._parseBase(t,e,a),\"-\"===t[0]&&(this.negative=1),this.strip(),\"le\"===r&&this._initArray(this.toArray(),e,r)},i.prototype._initNumber=function(t,e,r){t<0&&(this.negative=1,t=-t),t<67108864?(this.words=[67108863&t],this.length=1):t<4503599627370496?(this.words=[67108863&t,t/67108864&67108863],this.length=2):(n(t<9007199254740992),this.words=[67108863&t,t/67108864&67108863,1],this.length=3),\"le\"===r&&this._initArray(this.toArray(),e,r)},i.prototype._initArray=function(t,e,r){if(n(\"number\"==typeof t.length),t.length<=0)return this.words=[0],this.length=1,this;this.length=Math.ceil(t.length/3),this.words=new Array(this.length);for(var a=0;a<this.length;a++)this.words[a]=0;var i,o,s=0;if(\"be\"===r)for(a=t.length-1,i=0;a>=0;a-=3)o=t[a]|t[a-1]<<8|t[a-2]<<16,this.words[i]|=o<<s&67108863,this.words[i+1]=o>>>26-s&67108863,(s+=24)>=26&&(s-=26,i++);else if(\"le\"===r)for(a=0,i=0;a<t.length;a+=3)o=t[a]|t[a+1]<<8|t[a+2]<<16,this.words[i]|=o<<s&67108863,this.words[i+1]=o>>>26-s&67108863,(s+=24)>=26&&(s-=26,i++);return this.strip()},i.prototype._parseHex=function(t,e){this.length=Math.ceil((t.length-e)/6),this.words=new Array(this.length);for(var r=0;r<this.length;r++)this.words[r]=0;var n,a,i=0;for(r=t.length-6,n=0;r>=e;r-=6)a=s(t,r,r+6),this.words[n]|=a<<i&67108863,this.words[n+1]|=a>>>26-i&4194303,(i+=24)>=26&&(i-=26,n++);r+6!==e&&(a=s(t,e,r+6),this.words[n]|=a<<i&67108863,this.words[n+1]|=a>>>26-i&4194303),this.strip()},i.prototype._parseBase=function(t,e,r){this.words=[0],this.length=1;for(var n=0,a=1;a<=67108863;a*=e)n++;n--,a=a/e|0;for(var i=t.length-r,o=i%n,s=Math.min(i,i-o)+r,c=0,u=r;u<s;u+=n)c=l(t,u,u+n,e),this.imuln(a),this.words[0]+c<67108864?this.words[0]+=c:this._iaddn(c);if(0!==o){var h=1;for(c=l(t,u,t.length,e),u=0;u<o;u++)h*=e;this.imuln(h),this.words[0]+c<67108864?this.words[0]+=c:this._iaddn(c)}},i.prototype.copy=function(t){t.words=new Array(this.length);for(var e=0;e<this.length;e++)t.words[e]=this.words[e];t.length=this.length,t.negative=this.negative,t.red=this.red},i.prototype.clone=function(){var t=new i(null);return this.copy(t),t},i.prototype._expand=function(t){for(;this.length<t;)this.words[this.length++]=0;return this},i.prototype.strip=function(){for(;this.length>1&&0===this.words[this.length-1];)this.length--;return this._normSign()},i.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},i.prototype.inspect=function(){return(this.red?\"<BN-R: \":\"<BN: \")+this.toString(16)+\">\"};var c=[\"\",\"0\",\"00\",\"000\",\"0000\",\"00000\",\"000000\",\"0000000\",\"00000000\",\"000000000\",\"0000000000\",\"00000000000\",\"000000000000\",\"0000000000000\",\"00000000000000\",\"000000000000000\",\"0000000000000000\",\"00000000000000000\",\"000000000000000000\",\"0000000000000000000\",\"00000000000000000000\",\"000000000000000000000\",\"0000000000000000000000\",\"00000000000000000000000\",\"000000000000000000000000\",\"0000000000000000000000000\"],u=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],h=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function f(t,e,r){r.negative=e.negative^t.negative;var n=t.length+e.length|0;r.length=n,n=n-1|0;var a=0|t.words[0],i=0|e.words[0],o=a*i,s=67108863&o,l=o/67108864|0;r.words[0]=s;for(var c=1;c<n;c++){for(var u=l>>>26,h=67108863&l,f=Math.min(c,e.length-1),p=Math.max(0,c-t.length+1);p<=f;p++){var d=c-p|0;u+=(o=(a=0|t.words[d])*(i=0|e.words[p])+h)/67108864|0,h=67108863&o}r.words[c]=0|h,l=0|u}return 0!==l?r.words[c]=0|l:r.length--,r.strip()}i.prototype.toString=function(t,e){var r;if(e=0|e||1,16===(t=t||10)||\"hex\"===t){r=\"\";for(var a=0,i=0,o=0;o<this.length;o++){var s=this.words[o],l=(16777215&(s<<a|i)).toString(16);r=0!==(i=s>>>24-a&16777215)||o!==this.length-1?c[6-l.length]+l+r:l+r,(a+=2)>=26&&(a-=26,o--)}for(0!==i&&(r=i.toString(16)+r);r.length%e!=0;)r=\"0\"+r;return 0!==this.negative&&(r=\"-\"+r),r}if(t===(0|t)&&t>=2&&t<=36){var f=u[t],p=h[t];r=\"\";var d=this.clone();for(d.negative=0;!d.isZero();){var g=d.modn(p).toString(t);r=(d=d.idivn(p)).isZero()?g+r:c[f-g.length]+g+r}for(this.isZero()&&(r=\"0\"+r);r.length%e!=0;)r=\"0\"+r;return 0!==this.negative&&(r=\"-\"+r),r}n(!1,\"Base should be between 2 and 36\")},i.prototype.toNumber=function(){var t=this.words[0];return 2===this.length?t+=67108864*this.words[1]:3===this.length&&1===this.words[2]?t+=4503599627370496+67108864*this.words[1]:this.length>2&&n(!1,\"Number can only safely store up to 53 bits\"),0!==this.negative?-t:t},i.prototype.toJSON=function(){return this.toString(16)},i.prototype.toBuffer=function(t,e){return n(\"undefined\"!=typeof o),this.toArrayLike(o,t,e)},i.prototype.toArray=function(t,e){return this.toArrayLike(Array,t,e)},i.prototype.toArrayLike=function(t,e,r){var a=this.byteLength(),i=r||Math.max(1,a);n(a<=i,\"byte array longer than desired length\"),n(i>0,\"Requested array length <= 0\"),this.strip();var o,s,l=\"le\"===e,c=new t(i),u=this.clone();if(l){for(s=0;!u.isZero();s++)o=u.andln(255),u.iushrn(8),c[s]=o;for(;s<i;s++)c[s]=0}else{for(s=0;s<i-a;s++)c[s]=0;for(s=0;!u.isZero();s++)o=u.andln(255),u.iushrn(8),c[i-s-1]=o}return c},Math.clz32?i.prototype._countBits=function(t){return 32-Math.clz32(t)}:i.prototype._countBits=function(t){var e=t,r=0;return e>=4096&&(r+=13,e>>>=13),e>=64&&(r+=7,e>>>=7),e>=8&&(r+=4,e>>>=4),e>=2&&(r+=2,e>>>=2),r+e},i.prototype._zeroBits=function(t){if(0===t)return 26;var e=t,r=0;return 0==(8191&e)&&(r+=13,e>>>=13),0==(127&e)&&(r+=7,e>>>=7),0==(15&e)&&(r+=4,e>>>=4),0==(3&e)&&(r+=2,e>>>=2),0==(1&e)&&r++,r},i.prototype.bitLength=function(){var t=this.words[this.length-1],e=this._countBits(t);return 26*(this.length-1)+e},i.prototype.zeroBits=function(){if(this.isZero())return 0;for(var t=0,e=0;e<this.length;e++){var r=this._zeroBits(this.words[e]);if(t+=r,26!==r)break}return t},i.prototype.byteLength=function(){return Math.ceil(this.bitLength()/8)},i.prototype.toTwos=function(t){return 0!==this.negative?this.abs().inotn(t).iaddn(1):this.clone()},i.prototype.fromTwos=function(t){return this.testn(t-1)?this.notn(t).iaddn(1).ineg():this.clone()},i.prototype.isNeg=function(){return 0!==this.negative},i.prototype.neg=function(){return this.clone().ineg()},i.prototype.ineg=function(){return this.isZero()||(this.negative^=1),this},i.prototype.iuor=function(t){for(;this.length<t.length;)this.words[this.length++]=0;for(var e=0;e<t.length;e++)this.words[e]=this.words[e]|t.words[e];return this.strip()},i.prototype.ior=function(t){return n(0==(this.negative|t.negative)),this.iuor(t)},i.prototype.or=function(t){return this.length>t.length?this.clone().ior(t):t.clone().ior(this)},i.prototype.uor=function(t){return this.length>t.length?this.clone().iuor(t):t.clone().iuor(this)},i.prototype.iuand=function(t){var e;e=this.length>t.length?t:this;for(var r=0;r<e.length;r++)this.words[r]=this.words[r]&t.words[r];return this.length=e.length,this.strip()},i.prototype.iand=function(t){return n(0==(this.negative|t.negative)),this.iuand(t)},i.prototype.and=function(t){return this.length>t.length?this.clone().iand(t):t.clone().iand(this)},i.prototype.uand=function(t){return this.length>t.length?this.clone().iuand(t):t.clone().iuand(this)},i.prototype.iuxor=function(t){var e,r;this.length>t.length?(e=this,r=t):(e=t,r=this);for(var n=0;n<r.length;n++)this.words[n]=e.words[n]^r.words[n];if(this!==e)for(;n<e.length;n++)this.words[n]=e.words[n];return this.length=e.length,this.strip()},i.prototype.ixor=function(t){return n(0==(this.negative|t.negative)),this.iuxor(t)},i.prototype.xor=function(t){return this.length>t.length?this.clone().ixor(t):t.clone().ixor(this)},i.prototype.uxor=function(t){return this.length>t.length?this.clone().iuxor(t):t.clone().iuxor(this)},i.prototype.inotn=function(t){n(\"number\"==typeof t&&t>=0);var e=0|Math.ceil(t/26),r=t%26;this._expand(e),r>0&&e--;for(var a=0;a<e;a++)this.words[a]=67108863&~this.words[a];return r>0&&(this.words[a]=~this.words[a]&67108863>>26-r),this.strip()},i.prototype.notn=function(t){return this.clone().inotn(t)},i.prototype.setn=function(t,e){n(\"number\"==typeof t&&t>=0);var r=t/26|0,a=t%26;return this._expand(r+1),this.words[r]=e?this.words[r]|1<<a:this.words[r]&~(1<<a),this.strip()},i.prototype.iadd=function(t){var e,r,n;if(0!==this.negative&&0===t.negative)return this.negative=0,e=this.isub(t),this.negative^=1,this._normSign();if(0===this.negative&&0!==t.negative)return t.negative=0,e=this.isub(t),t.negative=1,e._normSign();this.length>t.length?(r=this,n=t):(r=t,n=this);for(var a=0,i=0;i<n.length;i++)e=(0|r.words[i])+(0|n.words[i])+a,this.words[i]=67108863&e,a=e>>>26;for(;0!==a&&i<r.length;i++)e=(0|r.words[i])+a,this.words[i]=67108863&e,a=e>>>26;if(this.length=r.length,0!==a)this.words[this.length]=a,this.length++;else if(r!==this)for(;i<r.length;i++)this.words[i]=r.words[i];return this},i.prototype.add=function(t){var e;return 0!==t.negative&&0===this.negative?(t.negative=0,e=this.sub(t),t.negative^=1,e):0===t.negative&&0!==this.negative?(this.negative=0,e=t.sub(this),this.negative=1,e):this.length>t.length?this.clone().iadd(t):t.clone().iadd(this)},i.prototype.isub=function(t){if(0!==t.negative){t.negative=0;var e=this.iadd(t);return t.negative=1,e._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(t),this.negative=1,this._normSign();var r,n,a=this.cmp(t);if(0===a)return this.negative=0,this.length=1,this.words[0]=0,this;a>0?(r=this,n=t):(r=t,n=this);for(var i=0,o=0;o<n.length;o++)i=(e=(0|r.words[o])-(0|n.words[o])+i)>>26,this.words[o]=67108863&e;for(;0!==i&&o<r.length;o++)i=(e=(0|r.words[o])+i)>>26,this.words[o]=67108863&e;if(0===i&&o<r.length&&r!==this)for(;o<r.length;o++)this.words[o]=r.words[o];return this.length=Math.max(this.length,o),r!==this&&(this.negative=1),this.strip()},i.prototype.sub=function(t){return this.clone().isub(t)};var p=function(t,e,r){var n,a,i,o=t.words,s=e.words,l=r.words,c=0,u=0|o[0],h=8191&u,f=u>>>13,p=0|o[1],d=8191&p,g=p>>>13,v=0|o[2],m=8191&v,y=v>>>13,x=0|o[3],b=8191&x,_=x>>>13,w=0|o[4],k=8191&w,T=w>>>13,A=0|o[5],M=8191&A,S=A>>>13,E=0|o[6],C=8191&E,L=E>>>13,P=0|o[7],O=8191&P,I=P>>>13,z=0|o[8],D=8191&z,R=z>>>13,F=0|o[9],B=8191&F,N=F>>>13,j=0|s[0],V=8191&j,U=j>>>13,q=0|s[1],H=8191&q,G=q>>>13,Y=0|s[2],W=8191&Y,X=Y>>>13,Z=0|s[3],J=8191&Z,K=Z>>>13,Q=0|s[4],$=8191&Q,tt=Q>>>13,et=0|s[5],rt=8191&et,nt=et>>>13,at=0|s[6],it=8191&at,ot=at>>>13,st=0|s[7],lt=8191&st,ct=st>>>13,ut=0|s[8],ht=8191&ut,ft=ut>>>13,pt=0|s[9],dt=8191&pt,gt=pt>>>13;r.negative=t.negative^e.negative,r.length=19;var vt=(c+(n=Math.imul(h,V))|0)+((8191&(a=(a=Math.imul(h,U))+Math.imul(f,V)|0))<<13)|0;c=((i=Math.imul(f,U))+(a>>>13)|0)+(vt>>>26)|0,vt&=67108863,n=Math.imul(d,V),a=(a=Math.imul(d,U))+Math.imul(g,V)|0,i=Math.imul(g,U);var mt=(c+(n=n+Math.imul(h,H)|0)|0)+((8191&(a=(a=a+Math.imul(h,G)|0)+Math.imul(f,H)|0))<<13)|0;c=((i=i+Math.imul(f,G)|0)+(a>>>13)|0)+(mt>>>26)|0,mt&=67108863,n=Math.imul(m,V),a=(a=Math.imul(m,U))+Math.imul(y,V)|0,i=Math.imul(y,U),n=n+Math.imul(d,H)|0,a=(a=a+Math.imul(d,G)|0)+Math.imul(g,H)|0,i=i+Math.imul(g,G)|0;var yt=(c+(n=n+Math.imul(h,W)|0)|0)+((8191&(a=(a=a+Math.imul(h,X)|0)+Math.imul(f,W)|0))<<13)|0;c=((i=i+Math.imul(f,X)|0)+(a>>>13)|0)+(yt>>>26)|0,yt&=67108863,n=Math.imul(b,V),a=(a=Math.imul(b,U))+Math.imul(_,V)|0,i=Math.imul(_,U),n=n+Math.imul(m,H)|0,a=(a=a+Math.imul(m,G)|0)+Math.imul(y,H)|0,i=i+Math.imul(y,G)|0,n=n+Math.imul(d,W)|0,a=(a=a+Math.imul(d,X)|0)+Math.imul(g,W)|0,i=i+Math.imul(g,X)|0;var xt=(c+(n=n+Math.imul(h,J)|0)|0)+((8191&(a=(a=a+Math.imul(h,K)|0)+Math.imul(f,J)|0))<<13)|0;c=((i=i+Math.imul(f,K)|0)+(a>>>13)|0)+(xt>>>26)|0,xt&=67108863,n=Math.imul(k,V),a=(a=Math.imul(k,U))+Math.imul(T,V)|0,i=Math.imul(T,U),n=n+Math.imul(b,H)|0,a=(a=a+Math.imul(b,G)|0)+Math.imul(_,H)|0,i=i+Math.imul(_,G)|0,n=n+Math.imul(m,W)|0,a=(a=a+Math.imul(m,X)|0)+Math.imul(y,W)|0,i=i+Math.imul(y,X)|0,n=n+Math.imul(d,J)|0,a=(a=a+Math.imul(d,K)|0)+Math.imul(g,J)|0,i=i+Math.imul(g,K)|0;var bt=(c+(n=n+Math.imul(h,$)|0)|0)+((8191&(a=(a=a+Math.imul(h,tt)|0)+Math.imul(f,$)|0))<<13)|0;c=((i=i+Math.imul(f,tt)|0)+(a>>>13)|0)+(bt>>>26)|0,bt&=67108863,n=Math.imul(M,V),a=(a=Math.imul(M,U))+Math.imul(S,V)|0,i=Math.imul(S,U),n=n+Math.imul(k,H)|0,a=(a=a+Math.imul(k,G)|0)+Math.imul(T,H)|0,i=i+Math.imul(T,G)|0,n=n+Math.imul(b,W)|0,a=(a=a+Math.imul(b,X)|0)+Math.imul(_,W)|0,i=i+Math.imul(_,X)|0,n=n+Math.imul(m,J)|0,a=(a=a+Math.imul(m,K)|0)+Math.imul(y,J)|0,i=i+Math.imul(y,K)|0,n=n+Math.imul(d,$)|0,a=(a=a+Math.imul(d,tt)|0)+Math.imul(g,$)|0,i=i+Math.imul(g,tt)|0;var _t=(c+(n=n+Math.imul(h,rt)|0)|0)+((8191&(a=(a=a+Math.imul(h,nt)|0)+Math.imul(f,rt)|0))<<13)|0;c=((i=i+Math.imul(f,nt)|0)+(a>>>13)|0)+(_t>>>26)|0,_t&=67108863,n=Math.imul(C,V),a=(a=Math.imul(C,U))+Math.imul(L,V)|0,i=Math.imul(L,U),n=n+Math.imul(M,H)|0,a=(a=a+Math.imul(M,G)|0)+Math.imul(S,H)|0,i=i+Math.imul(S,G)|0,n=n+Math.imul(k,W)|0,a=(a=a+Math.imul(k,X)|0)+Math.imul(T,W)|0,i=i+Math.imul(T,X)|0,n=n+Math.imul(b,J)|0,a=(a=a+Math.imul(b,K)|0)+Math.imul(_,J)|0,i=i+Math.imul(_,K)|0,n=n+Math.imul(m,$)|0,a=(a=a+Math.imul(m,tt)|0)+Math.imul(y,$)|0,i=i+Math.imul(y,tt)|0,n=n+Math.imul(d,rt)|0,a=(a=a+Math.imul(d,nt)|0)+Math.imul(g,rt)|0,i=i+Math.imul(g,nt)|0;var wt=(c+(n=n+Math.imul(h,it)|0)|0)+((8191&(a=(a=a+Math.imul(h,ot)|0)+Math.imul(f,it)|0))<<13)|0;c=((i=i+Math.imul(f,ot)|0)+(a>>>13)|0)+(wt>>>26)|0,wt&=67108863,n=Math.imul(O,V),a=(a=Math.imul(O,U))+Math.imul(I,V)|0,i=Math.imul(I,U),n=n+Math.imul(C,H)|0,a=(a=a+Math.imul(C,G)|0)+Math.imul(L,H)|0,i=i+Math.imul(L,G)|0,n=n+Math.imul(M,W)|0,a=(a=a+Math.imul(M,X)|0)+Math.imul(S,W)|0,i=i+Math.imul(S,X)|0,n=n+Math.imul(k,J)|0,a=(a=a+Math.imul(k,K)|0)+Math.imul(T,J)|0,i=i+Math.imul(T,K)|0,n=n+Math.imul(b,$)|0,a=(a=a+Math.imul(b,tt)|0)+Math.imul(_,$)|0,i=i+Math.imul(_,tt)|0,n=n+Math.imul(m,rt)|0,a=(a=a+Math.imul(m,nt)|0)+Math.imul(y,rt)|0,i=i+Math.imul(y,nt)|0,n=n+Math.imul(d,it)|0,a=(a=a+Math.imul(d,ot)|0)+Math.imul(g,it)|0,i=i+Math.imul(g,ot)|0;var kt=(c+(n=n+Math.imul(h,lt)|0)|0)+((8191&(a=(a=a+Math.imul(h,ct)|0)+Math.imul(f,lt)|0))<<13)|0;c=((i=i+Math.imul(f,ct)|0)+(a>>>13)|0)+(kt>>>26)|0,kt&=67108863,n=Math.imul(D,V),a=(a=Math.imul(D,U))+Math.imul(R,V)|0,i=Math.imul(R,U),n=n+Math.imul(O,H)|0,a=(a=a+Math.imul(O,G)|0)+Math.imul(I,H)|0,i=i+Math.imul(I,G)|0,n=n+Math.imul(C,W)|0,a=(a=a+Math.imul(C,X)|0)+Math.imul(L,W)|0,i=i+Math.imul(L,X)|0,n=n+Math.imul(M,J)|0,a=(a=a+Math.imul(M,K)|0)+Math.imul(S,J)|0,i=i+Math.imul(S,K)|0,n=n+Math.imul(k,$)|0,a=(a=a+Math.imul(k,tt)|0)+Math.imul(T,$)|0,i=i+Math.imul(T,tt)|0,n=n+Math.imul(b,rt)|0,a=(a=a+Math.imul(b,nt)|0)+Math.imul(_,rt)|0,i=i+Math.imul(_,nt)|0,n=n+Math.imul(m,it)|0,a=(a=a+Math.imul(m,ot)|0)+Math.imul(y,it)|0,i=i+Math.imul(y,ot)|0,n=n+Math.imul(d,lt)|0,a=(a=a+Math.imul(d,ct)|0)+Math.imul(g,lt)|0,i=i+Math.imul(g,ct)|0;var Tt=(c+(n=n+Math.imul(h,ht)|0)|0)+((8191&(a=(a=a+Math.imul(h,ft)|0)+Math.imul(f,ht)|0))<<13)|0;c=((i=i+Math.imul(f,ft)|0)+(a>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,n=Math.imul(B,V),a=(a=Math.imul(B,U))+Math.imul(N,V)|0,i=Math.imul(N,U),n=n+Math.imul(D,H)|0,a=(a=a+Math.imul(D,G)|0)+Math.imul(R,H)|0,i=i+Math.imul(R,G)|0,n=n+Math.imul(O,W)|0,a=(a=a+Math.imul(O,X)|0)+Math.imul(I,W)|0,i=i+Math.imul(I,X)|0,n=n+Math.imul(C,J)|0,a=(a=a+Math.imul(C,K)|0)+Math.imul(L,J)|0,i=i+Math.imul(L,K)|0,n=n+Math.imul(M,$)|0,a=(a=a+Math.imul(M,tt)|0)+Math.imul(S,$)|0,i=i+Math.imul(S,tt)|0,n=n+Math.imul(k,rt)|0,a=(a=a+Math.imul(k,nt)|0)+Math.imul(T,rt)|0,i=i+Math.imul(T,nt)|0,n=n+Math.imul(b,it)|0,a=(a=a+Math.imul(b,ot)|0)+Math.imul(_,it)|0,i=i+Math.imul(_,ot)|0,n=n+Math.imul(m,lt)|0,a=(a=a+Math.imul(m,ct)|0)+Math.imul(y,lt)|0,i=i+Math.imul(y,ct)|0,n=n+Math.imul(d,ht)|0,a=(a=a+Math.imul(d,ft)|0)+Math.imul(g,ht)|0,i=i+Math.imul(g,ft)|0;var At=(c+(n=n+Math.imul(h,dt)|0)|0)+((8191&(a=(a=a+Math.imul(h,gt)|0)+Math.imul(f,dt)|0))<<13)|0;c=((i=i+Math.imul(f,gt)|0)+(a>>>13)|0)+(At>>>26)|0,At&=67108863,n=Math.imul(B,H),a=(a=Math.imul(B,G))+Math.imul(N,H)|0,i=Math.imul(N,G),n=n+Math.imul(D,W)|0,a=(a=a+Math.imul(D,X)|0)+Math.imul(R,W)|0,i=i+Math.imul(R,X)|0,n=n+Math.imul(O,J)|0,a=(a=a+Math.imul(O,K)|0)+Math.imul(I,J)|0,i=i+Math.imul(I,K)|0,n=n+Math.imul(C,$)|0,a=(a=a+Math.imul(C,tt)|0)+Math.imul(L,$)|0,i=i+Math.imul(L,tt)|0,n=n+Math.imul(M,rt)|0,a=(a=a+Math.imul(M,nt)|0)+Math.imul(S,rt)|0,i=i+Math.imul(S,nt)|0,n=n+Math.imul(k,it)|0,a=(a=a+Math.imul(k,ot)|0)+Math.imul(T,it)|0,i=i+Math.imul(T,ot)|0,n=n+Math.imul(b,lt)|0,a=(a=a+Math.imul(b,ct)|0)+Math.imul(_,lt)|0,i=i+Math.imul(_,ct)|0,n=n+Math.imul(m,ht)|0,a=(a=a+Math.imul(m,ft)|0)+Math.imul(y,ht)|0,i=i+Math.imul(y,ft)|0;var Mt=(c+(n=n+Math.imul(d,dt)|0)|0)+((8191&(a=(a=a+Math.imul(d,gt)|0)+Math.imul(g,dt)|0))<<13)|0;c=((i=i+Math.imul(g,gt)|0)+(a>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,n=Math.imul(B,W),a=(a=Math.imul(B,X))+Math.imul(N,W)|0,i=Math.imul(N,X),n=n+Math.imul(D,J)|0,a=(a=a+Math.imul(D,K)|0)+Math.imul(R,J)|0,i=i+Math.imul(R,K)|0,n=n+Math.imul(O,$)|0,a=(a=a+Math.imul(O,tt)|0)+Math.imul(I,$)|0,i=i+Math.imul(I,tt)|0,n=n+Math.imul(C,rt)|0,a=(a=a+Math.imul(C,nt)|0)+Math.imul(L,rt)|0,i=i+Math.imul(L,nt)|0,n=n+Math.imul(M,it)|0,a=(a=a+Math.imul(M,ot)|0)+Math.imul(S,it)|0,i=i+Math.imul(S,ot)|0,n=n+Math.imul(k,lt)|0,a=(a=a+Math.imul(k,ct)|0)+Math.imul(T,lt)|0,i=i+Math.imul(T,ct)|0,n=n+Math.imul(b,ht)|0,a=(a=a+Math.imul(b,ft)|0)+Math.imul(_,ht)|0,i=i+Math.imul(_,ft)|0;var St=(c+(n=n+Math.imul(m,dt)|0)|0)+((8191&(a=(a=a+Math.imul(m,gt)|0)+Math.imul(y,dt)|0))<<13)|0;c=((i=i+Math.imul(y,gt)|0)+(a>>>13)|0)+(St>>>26)|0,St&=67108863,n=Math.imul(B,J),a=(a=Math.imul(B,K))+Math.imul(N,J)|0,i=Math.imul(N,K),n=n+Math.imul(D,$)|0,a=(a=a+Math.imul(D,tt)|0)+Math.imul(R,$)|0,i=i+Math.imul(R,tt)|0,n=n+Math.imul(O,rt)|0,a=(a=a+Math.imul(O,nt)|0)+Math.imul(I,rt)|0,i=i+Math.imul(I,nt)|0,n=n+Math.imul(C,it)|0,a=(a=a+Math.imul(C,ot)|0)+Math.imul(L,it)|0,i=i+Math.imul(L,ot)|0,n=n+Math.imul(M,lt)|0,a=(a=a+Math.imul(M,ct)|0)+Math.imul(S,lt)|0,i=i+Math.imul(S,ct)|0,n=n+Math.imul(k,ht)|0,a=(a=a+Math.imul(k,ft)|0)+Math.imul(T,ht)|0,i=i+Math.imul(T,ft)|0;var Et=(c+(n=n+Math.imul(b,dt)|0)|0)+((8191&(a=(a=a+Math.imul(b,gt)|0)+Math.imul(_,dt)|0))<<13)|0;c=((i=i+Math.imul(_,gt)|0)+(a>>>13)|0)+(Et>>>26)|0,Et&=67108863,n=Math.imul(B,$),a=(a=Math.imul(B,tt))+Math.imul(N,$)|0,i=Math.imul(N,tt),n=n+Math.imul(D,rt)|0,a=(a=a+Math.imul(D,nt)|0)+Math.imul(R,rt)|0,i=i+Math.imul(R,nt)|0,n=n+Math.imul(O,it)|0,a=(a=a+Math.imul(O,ot)|0)+Math.imul(I,it)|0,i=i+Math.imul(I,ot)|0,n=n+Math.imul(C,lt)|0,a=(a=a+Math.imul(C,ct)|0)+Math.imul(L,lt)|0,i=i+Math.imul(L,ct)|0,n=n+Math.imul(M,ht)|0,a=(a=a+Math.imul(M,ft)|0)+Math.imul(S,ht)|0,i=i+Math.imul(S,ft)|0;var Ct=(c+(n=n+Math.imul(k,dt)|0)|0)+((8191&(a=(a=a+Math.imul(k,gt)|0)+Math.imul(T,dt)|0))<<13)|0;c=((i=i+Math.imul(T,gt)|0)+(a>>>13)|0)+(Ct>>>26)|0,Ct&=67108863,n=Math.imul(B,rt),a=(a=Math.imul(B,nt))+Math.imul(N,rt)|0,i=Math.imul(N,nt),n=n+Math.imul(D,it)|0,a=(a=a+Math.imul(D,ot)|0)+Math.imul(R,it)|0,i=i+Math.imul(R,ot)|0,n=n+Math.imul(O,lt)|0,a=(a=a+Math.imul(O,ct)|0)+Math.imul(I,lt)|0,i=i+Math.imul(I,ct)|0,n=n+Math.imul(C,ht)|0,a=(a=a+Math.imul(C,ft)|0)+Math.imul(L,ht)|0,i=i+Math.imul(L,ft)|0;var Lt=(c+(n=n+Math.imul(M,dt)|0)|0)+((8191&(a=(a=a+Math.imul(M,gt)|0)+Math.imul(S,dt)|0))<<13)|0;c=((i=i+Math.imul(S,gt)|0)+(a>>>13)|0)+(Lt>>>26)|0,Lt&=67108863,n=Math.imul(B,it),a=(a=Math.imul(B,ot))+Math.imul(N,it)|0,i=Math.imul(N,ot),n=n+Math.imul(D,lt)|0,a=(a=a+Math.imul(D,ct)|0)+Math.imul(R,lt)|0,i=i+Math.imul(R,ct)|0,n=n+Math.imul(O,ht)|0,a=(a=a+Math.imul(O,ft)|0)+Math.imul(I,ht)|0,i=i+Math.imul(I,ft)|0;var Pt=(c+(n=n+Math.imul(C,dt)|0)|0)+((8191&(a=(a=a+Math.imul(C,gt)|0)+Math.imul(L,dt)|0))<<13)|0;c=((i=i+Math.imul(L,gt)|0)+(a>>>13)|0)+(Pt>>>26)|0,Pt&=67108863,n=Math.imul(B,lt),a=(a=Math.imul(B,ct))+Math.imul(N,lt)|0,i=Math.imul(N,ct),n=n+Math.imul(D,ht)|0,a=(a=a+Math.imul(D,ft)|0)+Math.imul(R,ht)|0,i=i+Math.imul(R,ft)|0;var Ot=(c+(n=n+Math.imul(O,dt)|0)|0)+((8191&(a=(a=a+Math.imul(O,gt)|0)+Math.imul(I,dt)|0))<<13)|0;c=((i=i+Math.imul(I,gt)|0)+(a>>>13)|0)+(Ot>>>26)|0,Ot&=67108863,n=Math.imul(B,ht),a=(a=Math.imul(B,ft))+Math.imul(N,ht)|0,i=Math.imul(N,ft);var It=(c+(n=n+Math.imul(D,dt)|0)|0)+((8191&(a=(a=a+Math.imul(D,gt)|0)+Math.imul(R,dt)|0))<<13)|0;c=((i=i+Math.imul(R,gt)|0)+(a>>>13)|0)+(It>>>26)|0,It&=67108863;var zt=(c+(n=Math.imul(B,dt))|0)+((8191&(a=(a=Math.imul(B,gt))+Math.imul(N,dt)|0))<<13)|0;return c=((i=Math.imul(N,gt))+(a>>>13)|0)+(zt>>>26)|0,zt&=67108863,l[0]=vt,l[1]=mt,l[2]=yt,l[3]=xt,l[4]=bt,l[5]=_t,l[6]=wt,l[7]=kt,l[8]=Tt,l[9]=At,l[10]=Mt,l[11]=St,l[12]=Et,l[13]=Ct,l[14]=Lt,l[15]=Pt,l[16]=Ot,l[17]=It,l[18]=zt,0!==c&&(l[19]=c,r.length++),r};function d(t,e,r){return(new g).mulp(t,e,r)}function g(t,e){this.x=t,this.y=e}Math.imul||(p=f),i.prototype.mulTo=function(t,e){var r=this.length+t.length;return 10===this.length&&10===t.length?p(this,t,e):r<63?f(this,t,e):r<1024?function(t,e,r){r.negative=e.negative^t.negative,r.length=t.length+e.length;for(var n=0,a=0,i=0;i<r.length-1;i++){var o=a;a=0;for(var s=67108863&n,l=Math.min(i,e.length-1),c=Math.max(0,i-t.length+1);c<=l;c++){var u=i-c,h=(0|t.words[u])*(0|e.words[c]),f=67108863&h;s=67108863&(f=f+s|0),a+=(o=(o=o+(h/67108864|0)|0)+(f>>>26)|0)>>>26,o&=67108863}r.words[i]=s,n=o,o=a}return 0!==n?r.words[i]=n:r.length--,r.strip()}(this,t,e):d(this,t,e)},g.prototype.makeRBT=function(t){for(var e=new Array(t),r=i.prototype._countBits(t)-1,n=0;n<t;n++)e[n]=this.revBin(n,r,t);return e},g.prototype.revBin=function(t,e,r){if(0===t||t===r-1)return t;for(var n=0,a=0;a<e;a++)n|=(1&t)<<e-a-1,t>>=1;return n},g.prototype.permute=function(t,e,r,n,a,i){for(var o=0;o<i;o++)n[o]=e[t[o]],a[o]=r[t[o]]},g.prototype.transform=function(t,e,r,n,a,i){this.permute(i,t,e,r,n,a);for(var o=1;o<a;o<<=1)for(var s=o<<1,l=Math.cos(2*Math.PI/s),c=Math.sin(2*Math.PI/s),u=0;u<a;u+=s)for(var h=l,f=c,p=0;p<o;p++){var d=r[u+p],g=n[u+p],v=r[u+p+o],m=n[u+p+o],y=h*v-f*m;m=h*m+f*v,v=y,r[u+p]=d+v,n[u+p]=g+m,r[u+p+o]=d-v,n[u+p+o]=g-m,p!==s&&(y=l*h-c*f,f=l*f+c*h,h=y)}},g.prototype.guessLen13b=function(t,e){var r=1|Math.max(e,t),n=1&r,a=0;for(r=r/2|0;r;r>>>=1)a++;return 1<<a+1+n},g.prototype.conjugate=function(t,e,r){if(!(r<=1))for(var n=0;n<r/2;n++){var a=t[n];t[n]=t[r-n-1],t[r-n-1]=a,a=e[n],e[n]=-e[r-n-1],e[r-n-1]=-a}},g.prototype.normalize13b=function(t,e){for(var r=0,n=0;n<e/2;n++){var a=8192*Math.round(t[2*n+1]/e)+Math.round(t[2*n]/e)+r;t[n]=67108863&a,r=a<67108864?0:a/67108864|0}return t},g.prototype.convert13b=function(t,e,r,a){for(var i=0,o=0;o<e;o++)i+=0|t[o],r[2*o]=8191&i,i>>>=13,r[2*o+1]=8191&i,i>>>=13;for(o=2*e;o<a;++o)r[o]=0;n(0===i),n(0==(-8192&i))},g.prototype.stub=function(t){for(var e=new Array(t),r=0;r<t;r++)e[r]=0;return e},g.prototype.mulp=function(t,e,r){var n=2*this.guessLen13b(t.length,e.length),a=this.makeRBT(n),i=this.stub(n),o=new Array(n),s=new Array(n),l=new Array(n),c=new Array(n),u=new Array(n),h=new Array(n),f=r.words;f.length=n,this.convert13b(t.words,t.length,o,n),this.convert13b(e.words,e.length,c,n),this.transform(o,i,s,l,n,a),this.transform(c,i,u,h,n,a);for(var p=0;p<n;p++){var d=s[p]*u[p]-l[p]*h[p];l[p]=s[p]*h[p]+l[p]*u[p],s[p]=d}return this.conjugate(s,l,n),this.transform(s,l,f,i,n,a),this.conjugate(f,i,n),this.normalize13b(f,n),r.negative=t.negative^e.negative,r.length=t.length+e.length,r.strip()},i.prototype.mul=function(t){var e=new i(null);return e.words=new Array(this.length+t.length),this.mulTo(t,e)},i.prototype.mulf=function(t){var e=new i(null);return e.words=new Array(this.length+t.length),d(this,t,e)},i.prototype.imul=function(t){return this.clone().mulTo(t,this)},i.prototype.imuln=function(t){n(\"number\"==typeof t),n(t<67108864);for(var e=0,r=0;r<this.length;r++){var a=(0|this.words[r])*t,i=(67108863&a)+(67108863&e);e>>=26,e+=a/67108864|0,e+=i>>>26,this.words[r]=67108863&i}return 0!==e&&(this.words[r]=e,this.length++),this},i.prototype.muln=function(t){return this.clone().imuln(t)},i.prototype.sqr=function(){return this.mul(this)},i.prototype.isqr=function(){return this.imul(this.clone())},i.prototype.pow=function(t){var e=function(t){for(var e=new Array(t.bitLength()),r=0;r<e.length;r++){var n=r/26|0,a=r%26;e[r]=(t.words[n]&1<<a)>>>a}return e}(t);if(0===e.length)return new i(1);for(var r=this,n=0;n<e.length&&0===e[n];n++,r=r.sqr());if(++n<e.length)for(var a=r.sqr();n<e.length;n++,a=a.sqr())0!==e[n]&&(r=r.mul(a));return r},i.prototype.iushln=function(t){n(\"number\"==typeof t&&t>=0);var e,r=t%26,a=(t-r)/26,i=67108863>>>26-r<<26-r;if(0!==r){var o=0;for(e=0;e<this.length;e++){var s=this.words[e]&i,l=(0|this.words[e])-s<<r;this.words[e]=l|o,o=s>>>26-r}o&&(this.words[e]=o,this.length++)}if(0!==a){for(e=this.length-1;e>=0;e--)this.words[e+a]=this.words[e];for(e=0;e<a;e++)this.words[e]=0;this.length+=a}return this.strip()},i.prototype.ishln=function(t){return n(0===this.negative),this.iushln(t)},i.prototype.iushrn=function(t,e,r){var a;n(\"number\"==typeof t&&t>=0),a=e?(e-e%26)/26:0;var i=t%26,o=Math.min((t-i)/26,this.length),s=67108863^67108863>>>i<<i,l=r;if(a-=o,a=Math.max(0,a),l){for(var c=0;c<o;c++)l.words[c]=this.words[c];l.length=o}if(0===o);else if(this.length>o)for(this.length-=o,c=0;c<this.length;c++)this.words[c]=this.words[c+o];else this.words[0]=0,this.length=1;var u=0;for(c=this.length-1;c>=0&&(0!==u||c>=a);c--){var h=0|this.words[c];this.words[c]=u<<26-i|h>>>i,u=h&s}return l&&0!==u&&(l.words[l.length++]=u),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},i.prototype.ishrn=function(t,e,r){return n(0===this.negative),this.iushrn(t,e,r)},i.prototype.shln=function(t){return this.clone().ishln(t)},i.prototype.ushln=function(t){return this.clone().iushln(t)},i.prototype.shrn=function(t){return this.clone().ishrn(t)},i.prototype.ushrn=function(t){return this.clone().iushrn(t)},i.prototype.testn=function(t){n(\"number\"==typeof t&&t>=0);var e=t%26,r=(t-e)/26,a=1<<e;return!(this.length<=r)&&!!(this.words[r]&a)},i.prototype.imaskn=function(t){n(\"number\"==typeof t&&t>=0);var e=t%26,r=(t-e)/26;if(n(0===this.negative,\"imaskn works only with positive numbers\"),this.length<=r)return this;if(0!==e&&r++,this.length=Math.min(r,this.length),0!==e){var a=67108863^67108863>>>e<<e;this.words[this.length-1]&=a}return this.strip()},i.prototype.maskn=function(t){return this.clone().imaskn(t)},i.prototype.iaddn=function(t){return n(\"number\"==typeof t),n(t<67108864),t<0?this.isubn(-t):0!==this.negative?1===this.length&&(0|this.words[0])<t?(this.words[0]=t-(0|this.words[0]),this.negative=0,this):(this.negative=0,this.isubn(t),this.negative=1,this):this._iaddn(t)},i.prototype._iaddn=function(t){this.words[0]+=t;for(var e=0;e<this.length&&this.words[e]>=67108864;e++)this.words[e]-=67108864,e===this.length-1?this.words[e+1]=1:this.words[e+1]++;return this.length=Math.max(this.length,e+1),this},i.prototype.isubn=function(t){if(n(\"number\"==typeof t),n(t<67108864),t<0)return this.iaddn(-t);if(0!==this.negative)return this.negative=0,this.iaddn(t),this.negative=1,this;if(this.words[0]-=t,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var e=0;e<this.length&&this.words[e]<0;e++)this.words[e]+=67108864,this.words[e+1]-=1;return this.strip()},i.prototype.addn=function(t){return this.clone().iaddn(t)},i.prototype.subn=function(t){return this.clone().isubn(t)},i.prototype.iabs=function(){return this.negative=0,this},i.prototype.abs=function(){return this.clone().iabs()},i.prototype._ishlnsubmul=function(t,e,r){var a,i,o=t.length+r;this._expand(o);var s=0;for(a=0;a<t.length;a++){i=(0|this.words[a+r])+s;var l=(0|t.words[a])*e;s=((i-=67108863&l)>>26)-(l/67108864|0),this.words[a+r]=67108863&i}for(;a<this.length-r;a++)s=(i=(0|this.words[a+r])+s)>>26,this.words[a+r]=67108863&i;if(0===s)return this.strip();for(n(-1===s),s=0,a=0;a<this.length;a++)s=(i=-(0|this.words[a])+s)>>26,this.words[a]=67108863&i;return this.negative=1,this.strip()},i.prototype._wordDiv=function(t,e){var r=(this.length,t.length),n=this.clone(),a=t,o=0|a.words[a.length-1];0!==(r=26-this._countBits(o))&&(a=a.ushln(r),n.iushln(r),o=0|a.words[a.length-1]);var s,l=n.length-a.length;if(\"mod\"!==e){(s=new i(null)).length=l+1,s.words=new Array(s.length);for(var c=0;c<s.length;c++)s.words[c]=0}var u=n.clone()._ishlnsubmul(a,1,l);0===u.negative&&(n=u,s&&(s.words[l]=1));for(var h=l-1;h>=0;h--){var f=67108864*(0|n.words[a.length+h])+(0|n.words[a.length+h-1]);for(f=Math.min(f/o|0,67108863),n._ishlnsubmul(a,f,h);0!==n.negative;)f--,n.negative=0,n._ishlnsubmul(a,1,h),n.isZero()||(n.negative^=1);s&&(s.words[h]=f)}return s&&s.strip(),n.strip(),\"div\"!==e&&0!==r&&n.iushrn(r),{div:s||null,mod:n}},i.prototype.divmod=function(t,e,r){return n(!t.isZero()),this.isZero()?{div:new i(0),mod:new i(0)}:0!==this.negative&&0===t.negative?(s=this.neg().divmod(t,e),\"mod\"!==e&&(a=s.div.neg()),\"div\"!==e&&(o=s.mod.neg(),r&&0!==o.negative&&o.iadd(t)),{div:a,mod:o}):0===this.negative&&0!==t.negative?(s=this.divmod(t.neg(),e),\"mod\"!==e&&(a=s.div.neg()),{div:a,mod:s.mod}):0!=(this.negative&t.negative)?(s=this.neg().divmod(t.neg(),e),\"div\"!==e&&(o=s.mod.neg(),r&&0!==o.negative&&o.isub(t)),{div:s.div,mod:o}):t.length>this.length||this.cmp(t)<0?{div:new i(0),mod:this}:1===t.length?\"div\"===e?{div:this.divn(t.words[0]),mod:null}:\"mod\"===e?{div:null,mod:new i(this.modn(t.words[0]))}:{div:this.divn(t.words[0]),mod:new i(this.modn(t.words[0]))}:this._wordDiv(t,e);var a,o,s},i.prototype.div=function(t){return this.divmod(t,\"div\",!1).div},i.prototype.mod=function(t){return this.divmod(t,\"mod\",!1).mod},i.prototype.umod=function(t){return this.divmod(t,\"mod\",!0).mod},i.prototype.divRound=function(t){var e=this.divmod(t);if(e.mod.isZero())return e.div;var r=0!==e.div.negative?e.mod.isub(t):e.mod,n=t.ushrn(1),a=t.andln(1),i=r.cmp(n);return i<0||1===a&&0===i?e.div:0!==e.div.negative?e.div.isubn(1):e.div.iaddn(1)},i.prototype.modn=function(t){n(t<=67108863);for(var e=(1<<26)%t,r=0,a=this.length-1;a>=0;a--)r=(e*r+(0|this.words[a]))%t;return r},i.prototype.idivn=function(t){n(t<=67108863);for(var e=0,r=this.length-1;r>=0;r--){var a=(0|this.words[r])+67108864*e;this.words[r]=a/t|0,e=a%t}return this.strip()},i.prototype.divn=function(t){return this.clone().idivn(t)},i.prototype.egcd=function(t){n(0===t.negative),n(!t.isZero());var e=this,r=t.clone();e=0!==e.negative?e.umod(t):e.clone();for(var a=new i(1),o=new i(0),s=new i(0),l=new i(1),c=0;e.isEven()&&r.isEven();)e.iushrn(1),r.iushrn(1),++c;for(var u=r.clone(),h=e.clone();!e.isZero();){for(var f=0,p=1;0==(e.words[0]&p)&&f<26;++f,p<<=1);if(f>0)for(e.iushrn(f);f-- >0;)(a.isOdd()||o.isOdd())&&(a.iadd(u),o.isub(h)),a.iushrn(1),o.iushrn(1);for(var d=0,g=1;0==(r.words[0]&g)&&d<26;++d,g<<=1);if(d>0)for(r.iushrn(d);d-- >0;)(s.isOdd()||l.isOdd())&&(s.iadd(u),l.isub(h)),s.iushrn(1),l.iushrn(1);e.cmp(r)>=0?(e.isub(r),a.isub(s),o.isub(l)):(r.isub(e),s.isub(a),l.isub(o))}return{a:s,b:l,gcd:r.iushln(c)}},i.prototype._invmp=function(t){n(0===t.negative),n(!t.isZero());var e=this,r=t.clone();e=0!==e.negative?e.umod(t):e.clone();for(var a,o=new i(1),s=new i(0),l=r.clone();e.cmpn(1)>0&&r.cmpn(1)>0;){for(var c=0,u=1;0==(e.words[0]&u)&&c<26;++c,u<<=1);if(c>0)for(e.iushrn(c);c-- >0;)o.isOdd()&&o.iadd(l),o.iushrn(1);for(var h=0,f=1;0==(r.words[0]&f)&&h<26;++h,f<<=1);if(h>0)for(r.iushrn(h);h-- >0;)s.isOdd()&&s.iadd(l),s.iushrn(1);e.cmp(r)>=0?(e.isub(r),o.isub(s)):(r.isub(e),s.isub(o))}return(a=0===e.cmpn(1)?o:s).cmpn(0)<0&&a.iadd(t),a},i.prototype.gcd=function(t){if(this.isZero())return t.abs();if(t.isZero())return this.abs();var e=this.clone(),r=t.clone();e.negative=0,r.negative=0;for(var n=0;e.isEven()&&r.isEven();n++)e.iushrn(1),r.iushrn(1);for(;;){for(;e.isEven();)e.iushrn(1);for(;r.isEven();)r.iushrn(1);var a=e.cmp(r);if(a<0){var i=e;e=r,r=i}else if(0===a||0===r.cmpn(1))break;e.isub(r)}return r.iushln(n)},i.prototype.invm=function(t){return this.egcd(t).a.umod(t)},i.prototype.isEven=function(){return 0==(1&this.words[0])},i.prototype.isOdd=function(){return 1==(1&this.words[0])},i.prototype.andln=function(t){return this.words[0]&t},i.prototype.bincn=function(t){n(\"number\"==typeof t);var e=t%26,r=(t-e)/26,a=1<<e;if(this.length<=r)return this._expand(r+1),this.words[r]|=a,this;for(var i=a,o=r;0!==i&&o<this.length;o++){var s=0|this.words[o];i=(s+=i)>>>26,s&=67108863,this.words[o]=s}return 0!==i&&(this.words[o]=i,this.length++),this},i.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},i.prototype.cmpn=function(t){var e,r=t<0;if(0!==this.negative&&!r)return-1;if(0===this.negative&&r)return 1;if(this.strip(),this.length>1)e=1;else{r&&(t=-t),n(t<=67108863,\"Number is too big\");var a=0|this.words[0];e=a===t?0:a<t?-1:1}return 0!==this.negative?0|-e:e},i.prototype.cmp=function(t){if(0!==this.negative&&0===t.negative)return-1;if(0===this.negative&&0!==t.negative)return 1;var e=this.ucmp(t);return 0!==this.negative?0|-e:e},i.prototype.ucmp=function(t){if(this.length>t.length)return 1;if(this.length<t.length)return-1;for(var e=0,r=this.length-1;r>=0;r--){var n=0|this.words[r],a=0|t.words[r];if(n!==a){n<a?e=-1:n>a&&(e=1);break}}return e},i.prototype.gtn=function(t){return 1===this.cmpn(t)},i.prototype.gt=function(t){return 1===this.cmp(t)},i.prototype.gten=function(t){return this.cmpn(t)>=0},i.prototype.gte=function(t){return this.cmp(t)>=0},i.prototype.ltn=function(t){return-1===this.cmpn(t)},i.prototype.lt=function(t){return-1===this.cmp(t)},i.prototype.lten=function(t){return this.cmpn(t)<=0},i.prototype.lte=function(t){return this.cmp(t)<=0},i.prototype.eqn=function(t){return 0===this.cmpn(t)},i.prototype.eq=function(t){return 0===this.cmp(t)},i.red=function(t){return new w(t)},i.prototype.toRed=function(t){return n(!this.red,\"Already a number in reduction context\"),n(0===this.negative,\"red works only with positives\"),t.convertTo(this)._forceRed(t)},i.prototype.fromRed=function(){return n(this.red,\"fromRed works only with numbers in reduction context\"),this.red.convertFrom(this)},i.prototype._forceRed=function(t){return this.red=t,this},i.prototype.forceRed=function(t){return n(!this.red,\"Already a number in reduction context\"),this._forceRed(t)},i.prototype.redAdd=function(t){return n(this.red,\"redAdd works only with red numbers\"),this.red.add(this,t)},i.prototype.redIAdd=function(t){return n(this.red,\"redIAdd works only with red numbers\"),this.red.iadd(this,t)},i.prototype.redSub=function(t){return n(this.red,\"redSub works only with red numbers\"),this.red.sub(this,t)},i.prototype.redISub=function(t){return n(this.red,\"redISub works only with red numbers\"),this.red.isub(this,t)},i.prototype.redShl=function(t){return n(this.red,\"redShl works only with red numbers\"),this.red.shl(this,t)},i.prototype.redMul=function(t){return n(this.red,\"redMul works only with red numbers\"),this.red._verify2(this,t),this.red.mul(this,t)},i.prototype.redIMul=function(t){return n(this.red,\"redMul works only with red numbers\"),this.red._verify2(this,t),this.red.imul(this,t)},i.prototype.redSqr=function(){return n(this.red,\"redSqr works only with red numbers\"),this.red._verify1(this),this.red.sqr(this)},i.prototype.redISqr=function(){return n(this.red,\"redISqr works only with red numbers\"),this.red._verify1(this),this.red.isqr(this)},i.prototype.redSqrt=function(){return n(this.red,\"redSqrt works only with red numbers\"),this.red._verify1(this),this.red.sqrt(this)},i.prototype.redInvm=function(){return n(this.red,\"redInvm works only with red numbers\"),this.red._verify1(this),this.red.invm(this)},i.prototype.redNeg=function(){return n(this.red,\"redNeg works only with red numbers\"),this.red._verify1(this),this.red.neg(this)},i.prototype.redPow=function(t){return n(this.red&&!t.red,\"redPow(normalNum)\"),this.red._verify1(this),this.red.pow(this,t)};var v={k256:null,p224:null,p192:null,p25519:null};function m(t,e){this.name=t,this.p=new i(e,16),this.n=this.p.bitLength(),this.k=new i(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function y(){m.call(this,\"k256\",\"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f\")}function x(){m.call(this,\"p224\",\"ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001\")}function b(){m.call(this,\"p192\",\"ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff\")}function _(){m.call(this,\"25519\",\"7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed\")}function w(t){if(\"string\"==typeof t){var e=i._prime(t);this.m=e.p,this.prime=e}else n(t.gtn(1),\"modulus must be greater than 1\"),this.m=t,this.prime=null}function k(t){w.call(this,t),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new i(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}m.prototype._tmp=function(){var t=new i(null);return t.words=new Array(Math.ceil(this.n/13)),t},m.prototype.ireduce=function(t){var e,r=t;do{this.split(r,this.tmp),e=(r=(r=this.imulK(r)).iadd(this.tmp)).bitLength()}while(e>this.n);var n=e<this.n?-1:r.ucmp(this.p);return 0===n?(r.words[0]=0,r.length=1):n>0?r.isub(this.p):r.strip(),r},m.prototype.split=function(t,e){t.iushrn(this.n,0,e)},m.prototype.imulK=function(t){return t.imul(this.k)},a(y,m),y.prototype.split=function(t,e){for(var r=Math.min(t.length,9),n=0;n<r;n++)e.words[n]=t.words[n];if(e.length=r,t.length<=9)return t.words[0]=0,void(t.length=1);var a=t.words[9];for(e.words[e.length++]=4194303&a,n=10;n<t.length;n++){var i=0|t.words[n];t.words[n-10]=(4194303&i)<<4|a>>>22,a=i}a>>>=22,t.words[n-10]=a,0===a&&t.length>10?t.length-=10:t.length-=9},y.prototype.imulK=function(t){t.words[t.length]=0,t.words[t.length+1]=0,t.length+=2;for(var e=0,r=0;r<t.length;r++){var n=0|t.words[r];e+=977*n,t.words[r]=67108863&e,e=64*n+(e/67108864|0)}return 0===t.words[t.length-1]&&(t.length--,0===t.words[t.length-1]&&t.length--),t},a(x,m),a(b,m),a(_,m),_.prototype.imulK=function(t){for(var e=0,r=0;r<t.length;r++){var n=19*(0|t.words[r])+e,a=67108863&n;n>>>=26,t.words[r]=a,e=n}return 0!==e&&(t.words[t.length++]=e),t},i._prime=function(t){if(v[t])return v[t];var e;if(\"k256\"===t)e=new y;else if(\"p224\"===t)e=new x;else if(\"p192\"===t)e=new b;else{if(\"p25519\"!==t)throw new Error(\"Unknown prime \"+t);e=new _}return v[t]=e,e},w.prototype._verify1=function(t){n(0===t.negative,\"red works only with positives\"),n(t.red,\"red works only with red numbers\")},w.prototype._verify2=function(t,e){n(0==(t.negative|e.negative),\"red works only with positives\"),n(t.red&&t.red===e.red,\"red works only with red numbers\")},w.prototype.imod=function(t){return this.prime?this.prime.ireduce(t)._forceRed(this):t.umod(this.m)._forceRed(this)},w.prototype.neg=function(t){return t.isZero()?t.clone():this.m.sub(t)._forceRed(this)},w.prototype.add=function(t,e){this._verify2(t,e);var r=t.add(e);return r.cmp(this.m)>=0&&r.isub(this.m),r._forceRed(this)},w.prototype.iadd=function(t,e){this._verify2(t,e);var r=t.iadd(e);return r.cmp(this.m)>=0&&r.isub(this.m),r},w.prototype.sub=function(t,e){this._verify2(t,e);var r=t.sub(e);return r.cmpn(0)<0&&r.iadd(this.m),r._forceRed(this)},w.prototype.isub=function(t,e){this._verify2(t,e);var r=t.isub(e);return r.cmpn(0)<0&&r.iadd(this.m),r},w.prototype.shl=function(t,e){return this._verify1(t),this.imod(t.ushln(e))},w.prototype.imul=function(t,e){return this._verify2(t,e),this.imod(t.imul(e))},w.prototype.mul=function(t,e){return this._verify2(t,e),this.imod(t.mul(e))},w.prototype.isqr=function(t){return this.imul(t,t.clone())},w.prototype.sqr=function(t){return this.mul(t,t)},w.prototype.sqrt=function(t){if(t.isZero())return t.clone();var e=this.m.andln(3);if(n(e%2==1),3===e){var r=this.m.add(new i(1)).iushrn(2);return this.pow(t,r)}for(var a=this.m.subn(1),o=0;!a.isZero()&&0===a.andln(1);)o++,a.iushrn(1);n(!a.isZero());var s=new i(1).toRed(this),l=s.redNeg(),c=this.m.subn(1).iushrn(1),u=this.m.bitLength();for(u=new i(2*u*u).toRed(this);0!==this.pow(u,c).cmp(l);)u.redIAdd(l);for(var h=this.pow(u,a),f=this.pow(t,a.addn(1).iushrn(1)),p=this.pow(t,a),d=o;0!==p.cmp(s);){for(var g=p,v=0;0!==g.cmp(s);v++)g=g.redSqr();n(v<d);var m=this.pow(h,new i(1).iushln(d-v-1));f=f.redMul(m),h=m.redSqr(),p=p.redMul(h),d=v}return f},w.prototype.invm=function(t){var e=t._invmp(this.m);return 0!==e.negative?(e.negative=0,this.imod(e).redNeg()):this.imod(e)},w.prototype.pow=function(t,e){if(e.isZero())return new i(1).toRed(this);if(0===e.cmpn(1))return t.clone();var r=new Array(16);r[0]=new i(1).toRed(this),r[1]=t;for(var n=2;n<r.length;n++)r[n]=this.mul(r[n-1],t);var a=r[0],o=0,s=0,l=e.bitLength()%26;for(0===l&&(l=26),n=e.length-1;n>=0;n--){for(var c=e.words[n],u=l-1;u>=0;u--){var h=c>>u&1;a!==r[0]&&(a=this.sqr(a)),0!==h||0!==o?(o<<=1,o|=h,(4===++s||0===n&&0===u)&&(a=this.mul(a,r[o]),s=0,o=0)):s=0}l=26}return a},w.prototype.convertTo=function(t){var e=t.umod(this.m);return e===t?e.clone():e},w.prototype.convertFrom=function(t){var e=t.clone();return e.red=null,e},i.mont=function(t){return new k(t)},a(k,w),k.prototype.convertTo=function(t){return this.imod(t.ushln(this.shift))},k.prototype.convertFrom=function(t){var e=this.imod(t.mul(this.rinv));return e.red=null,e},k.prototype.imul=function(t,e){if(t.isZero()||e.isZero())return t.words[0]=0,t.length=1,t;var r=t.imul(e),n=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),a=r.isub(n).iushrn(this.shift),i=a;return a.cmp(this.m)>=0?i=a.isub(this.m):a.cmpn(0)<0&&(i=a.iadd(this.m)),i._forceRed(this)},k.prototype.mul=function(t,e){if(t.isZero()||e.isZero())return new i(0)._forceRed(this);var r=t.mul(e),n=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),a=r.isub(n).iushrn(this.shift),o=a;return a.cmp(this.m)>=0?o=a.isub(this.m):a.cmpn(0)<0&&(o=a.iadd(this.m)),o._forceRed(this)},k.prototype.invm=function(t){return this.imod(t._invmp(this.m).mul(this.r2))._forceRed(this)}}(\"undefined\"==typeof e||e,this)},{buffer:104}],96:[function(t,e,r){\"use strict\";e.exports=function(t){var e,r,n,a=t.length,i=0;for(e=0;e<a;++e)i+=t[e].length;var o=new Array(i),s=0;for(e=0;e<a;++e){var l=t[e],c=l.length;for(r=0;r<c;++r){var u=o[s++]=new Array(c-1),h=0;for(n=0;n<c;++n)n!==r&&(u[h++]=l[n]);if(1&r){var f=u[1];u[1]=u[0],u[0]=f}}}return o}},{}],97:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){switch(arguments.length){case 1:return n=[],c(a=t,a,u,!0),n;case 2:return\"function\"==typeof e?c(t,t,e,!0):function(t,e){return n=[],c(t,e,u,!1),n}(t,e);case 3:return c(t,e,r,!1);default:throw new Error(\"box-intersect: Invalid arguments\")}var a};var n,a=t(\"typedarray-pool\"),i=t(\"./lib/sweep\"),o=t(\"./lib/intersect\");function s(t,e){for(var r=0;r<t;++r)if(!(e[r]<=e[r+t]))return!0;return!1}function l(t,e,r,n){for(var a=0,i=0,o=0,l=t.length;o<l;++o){var c=t[o];if(!s(e,c)){for(var u=0;u<2*e;++u)r[a++]=c[u];n[i++]=o}}return i}function c(t,e,r,n){var s=t.length,c=e.length;if(!(s<=0||c<=0)){var u=t[0].length>>>1;if(!(u<=0)){var h,f=a.mallocDouble(2*u*s),p=a.mallocInt32(s);if((s=l(t,u,f,p))>0){if(1===u&&n)i.init(s),h=i.sweepComplete(u,r,0,s,f,p,0,s,f,p);else{var d=a.mallocDouble(2*u*c),g=a.mallocInt32(c);(c=l(e,u,d,g))>0&&(i.init(s+c),h=1===u?i.sweepBipartite(u,r,0,s,f,p,0,c,d,g):o(u,r,n,s,f,p,c,d,g),a.free(d),a.free(g))}a.free(f),a.free(p)}return h}}}function u(t,e){n.push([t,e])}},{\"./lib/intersect\":99,\"./lib/sweep\":103,\"typedarray-pool\":546}],98:[function(t,e,r){\"use strict\";var n=\"d\",a=\"ax\",i=\"vv\",o=\"fp\",s=\"es\",l=\"rs\",c=\"re\",u=\"rb\",h=\"ri\",f=\"rp\",p=\"bs\",d=\"be\",g=\"bb\",v=\"bi\",m=\"bp\",y=\"rv\",x=\"Q\",b=[n,a,i,l,c,u,h,p,d,g,v];function _(t){var e=\"bruteForce\"+(t?\"Full\":\"Partial\"),r=[],_=b.slice();t||_.splice(3,0,o);var w=[\"function \"+e+\"(\"+_.join()+\"){\"];function k(e,o){var _=function(t,e,r){var o=\"bruteForce\"+(t?\"Red\":\"Blue\")+(e?\"Flip\":\"\")+(r?\"Full\":\"\"),_=[\"function \",o,\"(\",b.join(),\"){\",\"var \",s,\"=2*\",n,\";\"],w=\"for(var i=\"+l+\",\"+f+\"=\"+s+\"*\"+l+\";i<\"+c+\";++i,\"+f+\"+=\"+s+\"){var x0=\"+u+\"[\"+a+\"+\"+f+\"],x1=\"+u+\"[\"+a+\"+\"+f+\"+\"+n+\"],xi=\"+h+\"[i];\",k=\"for(var j=\"+p+\",\"+m+\"=\"+s+\"*\"+p+\";j<\"+d+\";++j,\"+m+\"+=\"+s+\"){var y0=\"+g+\"[\"+a+\"+\"+m+\"],\"+(r?\"y1=\"+g+\"[\"+a+\"+\"+m+\"+\"+n+\"],\":\"\")+\"yi=\"+v+\"[j];\";return t?_.push(w,x,\":\",k):_.push(k,x,\":\",w),r?_.push(\"if(y1<x0||x1<y0)continue;\"):e?_.push(\"if(y0<=x0||x1<y0)continue;\"):_.push(\"if(y0<x0||x1<y0)continue;\"),_.push(\"for(var k=\"+a+\"+1;k<\"+n+\";++k){var r0=\"+u+\"[k+\"+f+\"],r1=\"+u+\"[k+\"+n+\"+\"+f+\"],b0=\"+g+\"[k+\"+m+\"],b1=\"+g+\"[k+\"+n+\"+\"+m+\"];if(r1<b0||b1<r0)continue \"+x+\";}var \"+y+\"=\"+i+\"(\"),e?_.push(\"yi,xi\"):_.push(\"xi,yi\"),_.push(\");if(\"+y+\"!==void 0)return \"+y+\";}}}\"),{name:o,code:_.join(\"\")}}(e,o,t);r.push(_.code),w.push(\"return \"+_.name+\"(\"+b.join()+\");\")}w.push(\"if(\"+c+\"-\"+l+\">\"+d+\"-\"+p+\"){\"),t?(k(!0,!1),w.push(\"}else{\"),k(!1,!1)):(w.push(\"if(\"+o+\"){\"),k(!0,!0),w.push(\"}else{\"),k(!0,!1),w.push(\"}}else{if(\"+o+\"){\"),k(!1,!0),w.push(\"}else{\"),k(!1,!1),w.push(\"}\")),w.push(\"}}return \"+e);var T=r.join(\"\")+w.join(\"\");return new Function(T)()}r.partial=_(!1),r.full=_(!0)},{}],99:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,i,u,S,E,C,L){!function(t,e){var r=8*a.log2(e+1)*(t+1)|0,i=a.nextPow2(b*r);w.length<i&&(n.free(w),w=n.mallocInt32(i));var o=a.nextPow2(_*r);k<o&&(n.free(k),k=n.mallocDouble(o))}(t,i+E);var P,O=0,I=2*t;T(O++,0,0,i,0,E,r?16:0,-1/0,1/0),r||T(O++,0,0,E,0,i,1,-1/0,1/0);for(;O>0;){var z=(O-=1)*b,D=w[z],R=w[z+1],F=w[z+2],B=w[z+3],N=w[z+4],j=w[z+5],V=O*_,U=k[V],q=k[V+1],H=1&j,G=!!(16&j),Y=u,W=S,X=C,Z=L;if(H&&(Y=C,W=L,X=u,Z=S),!(2&j&&(F=v(t,D,R,F,Y,W,q),R>=F)||4&j&&(R=m(t,D,R,F,Y,W,U))>=F)){var J=F-R,K=N-B;if(G){if(t*J*(J+K)<p){if(void 0!==(P=l.scanComplete(t,D,e,R,F,Y,W,B,N,X,Z)))return P;continue}}else{if(t*Math.min(J,K)<h){if(void 0!==(P=o(t,D,e,H,R,F,Y,W,B,N,X,Z)))return P;continue}if(t*J*K<f){if(void 0!==(P=l.scanBipartite(t,D,e,H,R,F,Y,W,B,N,X,Z)))return P;continue}}var Q=d(t,D,R,F,Y,W,U,q);if(R<Q)if(t*(Q-R)<h){if(void 0!==(P=s(t,D+1,e,R,Q,Y,W,B,N,X,Z)))return P}else if(D===t-2){if(void 0!==(P=H?l.sweepBipartite(t,e,B,N,X,Z,R,Q,Y,W):l.sweepBipartite(t,e,R,Q,Y,W,B,N,X,Z)))return P}else T(O++,D+1,R,Q,B,N,H,-1/0,1/0),T(O++,D+1,B,N,R,Q,1^H,-1/0,1/0);if(Q<F){var $=c(t,D,B,N,X,Z),tt=X[I*$+D],et=g(t,D,$,N,X,Z,tt);if(et<N&&T(O++,D,Q,F,et,N,(4|H)+(G?16:0),tt,q),B<$&&T(O++,D,Q,F,B,$,(2|H)+(G?16:0),U,tt),$+1===et){if(void 0!==(P=G?M(t,D,e,Q,F,Y,W,$,X,Z[$]):A(t,D,e,H,Q,F,Y,W,$,X,Z[$])))return P}else if($<et){var rt;if(G){if(rt=y(t,D,Q,F,Y,W,tt),Q<rt){var nt=g(t,D,Q,rt,Y,W,tt);if(D===t-2){if(Q<nt&&void 0!==(P=l.sweepComplete(t,e,Q,nt,Y,W,$,et,X,Z)))return P;if(nt<rt&&void 0!==(P=l.sweepBipartite(t,e,nt,rt,Y,W,$,et,X,Z)))return P}else Q<nt&&T(O++,D+1,Q,nt,$,et,16,-1/0,1/0),nt<rt&&(T(O++,D+1,nt,rt,$,et,0,-1/0,1/0),T(O++,D+1,$,et,nt,rt,1,-1/0,1/0))}}else rt=H?x(t,D,Q,F,Y,W,tt):y(t,D,Q,F,Y,W,tt),Q<rt&&(D===t-2?P=H?l.sweepBipartite(t,e,$,et,X,Z,Q,rt,Y,W):l.sweepBipartite(t,e,Q,rt,Y,W,$,et,X,Z):(T(O++,D+1,Q,rt,$,et,H,-1/0,1/0),T(O++,D+1,$,et,Q,rt,1^H,-1/0,1/0)))}}}}};var n=t(\"typedarray-pool\"),a=t(\"bit-twiddle\"),i=t(\"./brute\"),o=i.partial,s=i.full,l=t(\"./sweep\"),c=t(\"./median\"),u=t(\"./partition\"),h=128,f=1<<22,p=1<<22,d=u(\"!(lo>=p0)&&!(p1>=hi)\",[\"p0\",\"p1\"]),g=u(\"lo===p0\",[\"p0\"]),v=u(\"lo<p0\",[\"p0\"]),m=u(\"hi<=p0\",[\"p0\"]),y=u(\"lo<=p0&&p0<=hi\",[\"p0\"]),x=u(\"lo<p0&&p0<=hi\",[\"p0\"]),b=6,_=2,w=n.mallocInt32(1024),k=n.mallocDouble(1024);function T(t,e,r,n,a,i,o,s,l){var c=b*t;w[c]=e,w[c+1]=r,w[c+2]=n,w[c+3]=a,w[c+4]=i,w[c+5]=o;var u=_*t;k[u]=s,k[u+1]=l}function A(t,e,r,n,a,i,o,s,l,c,u){var h=2*t,f=l*h,p=c[f+e];t:for(var d=a,g=a*h;d<i;++d,g+=h){var v=o[g+e],m=o[g+e+t];if(!(p<v||m<p)&&(!n||p!==v)){for(var y,x=s[d],b=e+1;b<t;++b){v=o[g+b],m=o[g+b+t];var _=c[f+b],w=c[f+b+t];if(m<_||w<v)continue t}if(void 0!==(y=n?r(u,x):r(x,u)))return y}}}function M(t,e,r,n,a,i,o,s,l,c){var u=2*t,h=s*u,f=l[h+e];t:for(var p=n,d=n*u;p<a;++p,d+=u){var g=o[p];if(g!==c){var v=i[d+e],m=i[d+e+t];if(!(f<v||m<f)){for(var y=e+1;y<t;++y){v=i[d+y],m=i[d+y+t];var x=l[h+y],b=l[h+y+t];if(m<x||b<v)continue t}var _=r(g,c);if(void 0!==_)return _}}}}},{\"./brute\":98,\"./median\":100,\"./partition\":101,\"./sweep\":103,\"bit-twiddle\":93,\"typedarray-pool\":546}],100:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,o,s,l){if(o<=r+1)return r;var c=r,u=o,h=o+r>>>1,f=2*t,p=h,d=s[f*h+e];for(;c<u;){if(u-c<a){i(t,e,c,u,s,l),d=s[f*h+e];break}var g=u-c,v=Math.random()*g+c|0,m=s[f*v+e],y=Math.random()*g+c|0,x=s[f*y+e],b=Math.random()*g+c|0,_=s[f*b+e];m<=x?_>=x?(p=y,d=x):m>=_?(p=v,d=m):(p=b,d=_):x>=_?(p=y,d=x):_>=m?(p=v,d=m):(p=b,d=_);for(var w=f*(u-1),k=f*p,T=0;T<f;++T,++w,++k){var A=s[w];s[w]=s[k],s[k]=A}var M=l[u-1];l[u-1]=l[p],l[p]=M,p=n(t,e,c,u-1,s,l,d);for(var w=f*(u-1),k=f*p,T=0;T<f;++T,++w,++k){var A=s[w];s[w]=s[k],s[k]=A}var M=l[u-1];if(l[u-1]=l[p],l[p]=M,h<p){for(u=p-1;c<u&&s[f*(u-1)+e]===d;)u-=1;u+=1}else{if(!(p<h))break;for(c=p+1;c<u&&s[f*c+e]===d;)c+=1}}return n(t,e,r,h,s,l,s[f*h+e])};var n=t(\"./partition\")(\"lo<p0\",[\"p0\"]),a=8;function i(t,e,r,n,a,i){for(var o=2*t,s=o*(r+1)+e,l=r+1;l<n;++l,s+=o)for(var c=a[s],u=l,h=o*(l-1);u>r&&a[h+e]>c;--u,h-=o){for(var f=h,p=h+o,d=0;d<o;++d,++f,++p){var g=a[f];a[f]=a[p],a[p]=g}var v=i[u];i[u]=i[u-1],i[u-1]=v}}},{\"./partition\":101}],101:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=\"abcdef\".split(\"\").concat(e),a=[];t.indexOf(\"lo\")>=0&&a.push(\"lo=e[k+n]\");t.indexOf(\"hi\")>=0&&a.push(\"hi=e[k+o]\");return r.push(n.replace(\"_\",a.join()).replace(\"$\",t)),Function.apply(void 0,r)};var n=\"for(var j=2*a,k=j*c,l=k,m=c,n=b,o=a+b,p=c;d>p;++p,k+=j){var _;if($)if(m===p)m+=1,l+=j;else{for(var s=0;j>s;++s){var t=e[k+s];e[k+s]=e[l],e[l++]=t}var u=f[p];f[p]=f[m],f[m++]=u}}return m\"},{}],102:[function(t,e,r){\"use strict\";e.exports=function(t,e){e<=4*n?a(0,e-1,t):function t(e,r,h){var f=(r-e+1)/6|0,p=e+f,d=r-f,g=e+r>>1,v=g-f,m=g+f,y=p,x=v,b=g,_=m,w=d,k=e+1,T=r-1,A=0;c(y,x,h)&&(A=y,y=x,x=A);c(_,w,h)&&(A=_,_=w,w=A);c(y,b,h)&&(A=y,y=b,b=A);c(x,b,h)&&(A=x,x=b,b=A);c(y,_,h)&&(A=y,y=_,_=A);c(b,_,h)&&(A=b,b=_,_=A);c(x,w,h)&&(A=x,x=w,w=A);c(x,b,h)&&(A=x,x=b,b=A);c(_,w,h)&&(A=_,_=w,w=A);var M=h[2*x];var S=h[2*x+1];var E=h[2*_];var C=h[2*_+1];var L=2*y;var P=2*b;var O=2*w;var I=2*p;var z=2*g;var D=2*d;for(var R=0;R<2;++R){var F=h[L+R],B=h[P+R],N=h[O+R];h[I+R]=F,h[z+R]=B,h[D+R]=N}o(v,e,h);o(m,r,h);for(var j=k;j<=T;++j)if(u(j,M,S,h))j!==k&&i(j,k,h),++k;else if(!u(j,E,C,h))for(;;){if(u(T,E,C,h)){u(T,M,S,h)?(s(j,k,T,h),++k,--T):(i(j,T,h),--T);break}if(--T<j)break}l(e,k-1,M,S,h);l(r,T+1,E,C,h);k-2-e<=n?a(e,k-2,h):t(e,k-2,h);r-(T+2)<=n?a(T+2,r,h):t(T+2,r,h);T-k<=n?a(k,T,h):t(k,T,h)}(0,e-1,t)};var n=32;function a(t,e,r){for(var n=2*(t+1),a=t+1;a<=e;++a){for(var i=r[n++],o=r[n++],s=a,l=n-2;s-- >t;){var c=r[l-2],u=r[l-1];if(c<i)break;if(c===i&&u<o)break;r[l]=c,r[l+1]=u,l-=2}r[l]=i,r[l+1]=o}}function i(t,e,r){e*=2;var n=r[t*=2],a=r[t+1];r[t]=r[e],r[t+1]=r[e+1],r[e]=n,r[e+1]=a}function o(t,e,r){e*=2,r[t*=2]=r[e],r[t+1]=r[e+1]}function s(t,e,r,n){e*=2,r*=2;var a=n[t*=2],i=n[t+1];n[t]=n[e],n[t+1]=n[e+1],n[e]=n[r],n[e+1]=n[r+1],n[r]=a,n[r+1]=i}function l(t,e,r,n,a){e*=2,a[t*=2]=a[e],a[e]=r,a[t+1]=a[e+1],a[e+1]=n}function c(t,e,r){e*=2;var n=r[t*=2],a=r[e];return!(n<a)&&(n!==a||r[t+1]>r[e+1])}function u(t,e,r,n){var a=n[t*=2];return a<e||a===e&&n[t+1]<r}},{}],103:[function(t,e,r){\"use strict\";e.exports={init:function(t){var e=a.nextPow2(t);s.length<e&&(n.free(s),s=n.mallocInt32(e));l.length<e&&(n.free(l),l=n.mallocInt32(e));c.length<e&&(n.free(c),c=n.mallocInt32(e));u.length<e&&(n.free(u),u=n.mallocInt32(e));h.length<e&&(n.free(h),h=n.mallocInt32(e));f.length<e&&(n.free(f),f=n.mallocInt32(e));var r=8*e;p.length<r&&(n.free(p),p=n.mallocDouble(r))},sweepBipartite:function(t,e,r,n,a,h,f,v,m,y){for(var x=0,b=2*t,_=t-1,w=b-1,k=r;k<n;++k){var T=h[k],A=b*k;p[x++]=a[A+_],p[x++]=-(T+1),p[x++]=a[A+w],p[x++]=T}for(var k=f;k<v;++k){var T=y[k]+o,M=b*k;p[x++]=m[M+_],p[x++]=-T,p[x++]=m[M+w],p[x++]=T}var S=x>>>1;i(p,S);for(var E=0,C=0,k=0;k<S;++k){var L=0|p[2*k+1];if(L>=o)d(c,u,C--,L=L-o|0);else if(L>=0)d(s,l,E--,L);else if(L<=-o){L=-L-o|0;for(var P=0;P<E;++P){var O=e(s[P],L);if(void 0!==O)return O}g(c,u,C++,L)}else{L=-L-1|0;for(var P=0;P<C;++P){var O=e(L,c[P]);if(void 0!==O)return O}g(s,l,E++,L)}}},sweepComplete:function(t,e,r,n,a,o,v,m,y,x){for(var b=0,_=2*t,w=t-1,k=_-1,T=r;T<n;++T){var A=o[T]+1<<1,M=_*T;p[b++]=a[M+w],p[b++]=-A,p[b++]=a[M+k],p[b++]=A}for(var T=v;T<m;++T){var A=x[T]+1<<1,S=_*T;p[b++]=y[S+w],p[b++]=1|-A,p[b++]=y[S+k],p[b++]=1|A}var E=b>>>1;i(p,E);for(var C=0,L=0,P=0,T=0;T<E;++T){var O=0|p[2*T+1],I=1&O;if(T<E-1&&O>>1==p[2*T+3]>>1&&(I=2,T+=1),O<0){for(var z=-(O>>1)-1,D=0;D<P;++D){var R=e(h[D],z);if(void 0!==R)return R}if(0!==I)for(var D=0;D<C;++D){var R=e(s[D],z);if(void 0!==R)return R}if(1!==I)for(var D=0;D<L;++D){var R=e(c[D],z);if(void 0!==R)return R}0===I?g(s,l,C++,z):1===I?g(c,u,L++,z):2===I&&g(h,f,P++,z)}else{var z=(O>>1)-1;0===I?d(s,l,C--,z):1===I?d(c,u,L--,z):2===I&&d(h,f,P--,z)}}},scanBipartite:function(t,e,r,n,a,c,u,h,f,v,m,y){var x=0,b=2*t,_=e,w=e+t,k=1,T=1;n?T=o:k=o;for(var A=a;A<c;++A){var M=A+k,S=b*A;p[x++]=u[S+_],p[x++]=-M,p[x++]=u[S+w],p[x++]=M}for(var A=f;A<v;++A){var M=A+T,E=b*A;p[x++]=m[E+_],p[x++]=-M}var C=x>>>1;i(p,C);for(var L=0,A=0;A<C;++A){var P=0|p[2*A+1];if(P<0){var M=-P,O=!1;if(M>=o?(O=!n,M-=o):(O=!!n,M-=1),O)g(s,l,L++,M);else{var I=y[M],z=b*M,D=m[z+e+1],R=m[z+e+1+t];t:for(var F=0;F<L;++F){var B=s[F],N=b*B;if(!(R<u[N+e+1]||u[N+e+1+t]<D)){for(var j=e+2;j<t;++j)if(m[z+j+t]<u[N+j]||u[N+j+t]<m[z+j])continue t;var V,U=h[B];if(void 0!==(V=n?r(I,U):r(U,I)))return V}}}}else d(s,l,L--,P-k)}},scanComplete:function(t,e,r,n,a,l,c,u,h,f,d){for(var g=0,v=2*t,m=e,y=e+t,x=n;x<a;++x){var b=x+o,_=v*x;p[g++]=l[_+m],p[g++]=-b,p[g++]=l[_+y],p[g++]=b}for(var x=u;x<h;++x){var b=x+1,w=v*x;p[g++]=f[w+m],p[g++]=-b}var k=g>>>1;i(p,k);for(var T=0,x=0;x<k;++x){var A=0|p[2*x+1];if(A<0){var b=-A;if(b>=o)s[T++]=b-o;else{var M=d[b-=1],S=v*b,E=f[S+e+1],C=f[S+e+1+t];t:for(var L=0;L<T;++L){var P=s[L],O=c[P];if(O===M)break;var I=v*P;if(!(C<l[I+e+1]||l[I+e+1+t]<E)){for(var z=e+2;z<t;++z)if(f[S+z+t]<l[I+z]||l[I+z+t]<f[S+z])continue t;var D=r(O,M);if(void 0!==D)return D}}}}else{for(var b=A-o,L=T-1;L>=0;--L)if(s[L]===b){for(var z=L+1;z<T;++z)s[z-1]=s[z];break}--T}}}};var n=t(\"typedarray-pool\"),a=t(\"bit-twiddle\"),i=t(\"./sort\"),o=1<<28,s=n.mallocInt32(1024),l=n.mallocInt32(1024),c=n.mallocInt32(1024),u=n.mallocInt32(1024),h=n.mallocInt32(1024),f=n.mallocInt32(1024),p=n.mallocDouble(8192);function d(t,e,r,n){var a=e[n],i=t[r-1];t[a]=i,e[i]=a}function g(t,e,r,n){t[r]=n,e[n]=r}},{\"./sort\":102,\"bit-twiddle\":93,\"typedarray-pool\":546}],104:[function(t,e,r){},{}],105:[function(t,e,r){var n=Object.create||function(t){var e=function(){};return e.prototype=t,new e},a=Object.keys||function(t){var e=[];for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&e.push(r);return r},i=Function.prototype.bind||function(t){var e=this;return function(){return e.apply(t,arguments)}};function o(){this._events&&Object.prototype.hasOwnProperty.call(this,\"_events\")||(this._events=n(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0}e.exports=o,o.EventEmitter=o,o.prototype._events=void 0,o.prototype._maxListeners=void 0;var s,l=10;try{var c={};Object.defineProperty&&Object.defineProperty(c,\"x\",{value:0}),s=0===c.x}catch(t){s=!1}function u(t){return void 0===t._maxListeners?o.defaultMaxListeners:t._maxListeners}function h(t,e,r,a){var i,o,s;if(\"function\"!=typeof r)throw new TypeError('\"listener\" argument must be a function');if((o=t._events)?(o.newListener&&(t.emit(\"newListener\",e,r.listener?r.listener:r),o=t._events),s=o[e]):(o=t._events=n(null),t._eventsCount=0),s){if(\"function\"==typeof s?s=o[e]=a?[r,s]:[s,r]:a?s.unshift(r):s.push(r),!s.warned&&(i=u(t))&&i>0&&s.length>i){s.warned=!0;var l=new Error(\"Possible EventEmitter memory leak detected. \"+s.length+' \"'+String(e)+'\" listeners added. Use emitter.setMaxListeners() to increase limit.');l.name=\"MaxListenersExceededWarning\",l.emitter=t,l.type=e,l.count=s.length,\"object\"==typeof console&&console.warn&&console.warn(\"%s: %s\",l.name,l.message)}}else s=o[e]=r,++t._eventsCount;return t}function f(){if(!this.fired)switch(this.target.removeListener(this.type,this.wrapFn),this.fired=!0,arguments.length){case 0:return this.listener.call(this.target);case 1:return this.listener.call(this.target,arguments[0]);case 2:return this.listener.call(this.target,arguments[0],arguments[1]);case 3:return this.listener.call(this.target,arguments[0],arguments[1],arguments[2]);default:for(var t=new Array(arguments.length),e=0;e<t.length;++e)t[e]=arguments[e];this.listener.apply(this.target,t)}}function p(t,e,r){var n={fired:!1,wrapFn:void 0,target:t,type:e,listener:r},a=i.call(f,n);return a.listener=r,n.wrapFn=a,a}function d(t,e,r){var n=t._events;if(!n)return[];var a=n[e];return a?\"function\"==typeof a?r?[a.listener||a]:[a]:r?function(t){for(var e=new Array(t.length),r=0;r<e.length;++r)e[r]=t[r].listener||t[r];return e}(a):v(a,a.length):[]}function g(t){var e=this._events;if(e){var r=e[t];if(\"function\"==typeof r)return 1;if(r)return r.length}return 0}function v(t,e){for(var r=new Array(e),n=0;n<e;++n)r[n]=t[n];return r}s?Object.defineProperty(o,\"defaultMaxListeners\",{enumerable:!0,get:function(){return l},set:function(t){if(\"number\"!=typeof t||t<0||t!=t)throw new TypeError('\"defaultMaxListeners\" must be a positive number');l=t}}):o.defaultMaxListeners=l,o.prototype.setMaxListeners=function(t){if(\"number\"!=typeof t||t<0||isNaN(t))throw new TypeError('\"n\" argument must be a positive number');return this._maxListeners=t,this},o.prototype.getMaxListeners=function(){return u(this)},o.prototype.emit=function(t){var e,r,n,a,i,o,s=\"error\"===t;if(o=this._events)s=s&&null==o.error;else if(!s)return!1;if(s){if(arguments.length>1&&(e=arguments[1]),e instanceof Error)throw e;var l=new Error('Unhandled \"error\" event. ('+e+\")\");throw l.context=e,l}if(!(r=o[t]))return!1;var c=\"function\"==typeof r;switch(n=arguments.length){case 1:!function(t,e,r){if(e)t.call(r);else for(var n=t.length,a=v(t,n),i=0;i<n;++i)a[i].call(r)}(r,c,this);break;case 2:!function(t,e,r,n){if(e)t.call(r,n);else for(var a=t.length,i=v(t,a),o=0;o<a;++o)i[o].call(r,n)}(r,c,this,arguments[1]);break;case 3:!function(t,e,r,n,a){if(e)t.call(r,n,a);else for(var i=t.length,o=v(t,i),s=0;s<i;++s)o[s].call(r,n,a)}(r,c,this,arguments[1],arguments[2]);break;case 4:!function(t,e,r,n,a,i){if(e)t.call(r,n,a,i);else for(var o=t.length,s=v(t,o),l=0;l<o;++l)s[l].call(r,n,a,i)}(r,c,this,arguments[1],arguments[2],arguments[3]);break;default:for(a=new Array(n-1),i=1;i<n;i++)a[i-1]=arguments[i];!function(t,e,r,n){if(e)t.apply(r,n);else for(var a=t.length,i=v(t,a),o=0;o<a;++o)i[o].apply(r,n)}(r,c,this,a)}return!0},o.prototype.addListener=function(t,e){return h(this,t,e,!1)},o.prototype.on=o.prototype.addListener,o.prototype.prependListener=function(t,e){return h(this,t,e,!0)},o.prototype.once=function(t,e){if(\"function\"!=typeof e)throw new TypeError('\"listener\" argument must be a function');return this.on(t,p(this,t,e)),this},o.prototype.prependOnceListener=function(t,e){if(\"function\"!=typeof e)throw new TypeError('\"listener\" argument must be a function');return this.prependListener(t,p(this,t,e)),this},o.prototype.removeListener=function(t,e){var r,a,i,o,s;if(\"function\"!=typeof e)throw new TypeError('\"listener\" argument must be a function');if(!(a=this._events))return this;if(!(r=a[t]))return this;if(r===e||r.listener===e)0==--this._eventsCount?this._events=n(null):(delete a[t],a.removeListener&&this.emit(\"removeListener\",t,r.listener||e));else if(\"function\"!=typeof r){for(i=-1,o=r.length-1;o>=0;o--)if(r[o]===e||r[o].listener===e){s=r[o].listener,i=o;break}if(i<0)return this;0===i?r.shift():function(t,e){for(var r=e,n=r+1,a=t.length;n<a;r+=1,n+=1)t[r]=t[n];t.pop()}(r,i),1===r.length&&(a[t]=r[0]),a.removeListener&&this.emit(\"removeListener\",t,s||e)}return this},o.prototype.removeAllListeners=function(t){var e,r,i;if(!(r=this._events))return this;if(!r.removeListener)return 0===arguments.length?(this._events=n(null),this._eventsCount=0):r[t]&&(0==--this._eventsCount?this._events=n(null):delete r[t]),this;if(0===arguments.length){var o,s=a(r);for(i=0;i<s.length;++i)\"removeListener\"!==(o=s[i])&&this.removeAllListeners(o);return this.removeAllListeners(\"removeListener\"),this._events=n(null),this._eventsCount=0,this}if(\"function\"==typeof(e=r[t]))this.removeListener(t,e);else if(e)for(i=e.length-1;i>=0;i--)this.removeListener(t,e[i]);return this},o.prototype.listeners=function(t){return d(this,t,!0)},o.prototype.rawListeners=function(t){return d(this,t,!1)},o.listenerCount=function(t,e){return\"function\"==typeof t.listenerCount?t.listenerCount(e):g.call(t,e)},o.prototype.listenerCount=g,o.prototype.eventNames=function(){return this._eventsCount>0?Reflect.ownKeys(this._events):[]}},{}],106:[function(t,e,r){(function(e){\"use strict\";var n=t(\"base64-js\"),a=t(\"ieee754\"),i=\"function\"==typeof Symbol&&\"function\"==typeof Symbol.for?Symbol.for(\"nodejs.util.inspect.custom\"):null;r.Buffer=e,r.SlowBuffer=function(t){+t!=t&&(t=0);return e.alloc(+t)},r.INSPECT_MAX_BYTES=50;var o=2147483647;function s(t){if(t>o)throw new RangeError('The value \"'+t+'\" is invalid for option \"size\"');var r=new Uint8Array(t);return Object.setPrototypeOf(r,e.prototype),r}function e(t,e,r){if(\"number\"==typeof t){if(\"string\"==typeof e)throw new TypeError('The \"string\" argument must be of type string. Received type number');return u(t)}return l(t,e,r)}function l(t,r,n){if(\"string\"==typeof t)return function(t,r){\"string\"==typeof r&&\"\"!==r||(r=\"utf8\");if(!e.isEncoding(r))throw new TypeError(\"Unknown encoding: \"+r);var n=0|p(t,r),a=s(n),i=a.write(t,r);i!==n&&(a=a.slice(0,i));return a}(t,r);if(ArrayBuffer.isView(t))return h(t);if(null==t)throw new TypeError(\"The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type \"+typeof t);if(j(t,ArrayBuffer)||t&&j(t.buffer,ArrayBuffer))return function(t,r,n){if(r<0||t.byteLength<r)throw new RangeError('\"offset\" is outside of buffer bounds');if(t.byteLength<r+(n||0))throw new RangeError('\"length\" is outside of buffer bounds');var a;a=void 0===r&&void 0===n?new Uint8Array(t):void 0===n?new Uint8Array(t,r):new Uint8Array(t,r,n);return Object.setPrototypeOf(a,e.prototype),a}(t,r,n);if(\"number\"==typeof t)throw new TypeError('The \"value\" argument must not be of type number. Received type number');var a=t.valueOf&&t.valueOf();if(null!=a&&a!==t)return e.from(a,r,n);var i=function(t){if(e.isBuffer(t)){var r=0|f(t.length),n=s(r);return 0===n.length?n:(t.copy(n,0,0,r),n)}if(void 0!==t.length)return\"number\"!=typeof t.length||V(t.length)?s(0):h(t);if(\"Buffer\"===t.type&&Array.isArray(t.data))return h(t.data)}(t);if(i)return i;if(\"undefined\"!=typeof Symbol&&null!=Symbol.toPrimitive&&\"function\"==typeof t[Symbol.toPrimitive])return e.from(t[Symbol.toPrimitive](\"string\"),r,n);throw new TypeError(\"The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type \"+typeof t)}function c(t){if(\"number\"!=typeof t)throw new TypeError('\"size\" argument must be of type number');if(t<0)throw new RangeError('The value \"'+t+'\" is invalid for option \"size\"')}function u(t){return c(t),s(t<0?0:0|f(t))}function h(t){for(var e=t.length<0?0:0|f(t.length),r=s(e),n=0;n<e;n+=1)r[n]=255&t[n];return r}function f(t){if(t>=o)throw new RangeError(\"Attempt to allocate Buffer larger than maximum size: 0x\"+o.toString(16)+\" bytes\");return 0|t}function p(t,r){if(e.isBuffer(t))return t.length;if(ArrayBuffer.isView(t)||j(t,ArrayBuffer))return t.byteLength;if(\"string\"!=typeof t)throw new TypeError('The \"string\" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof t);var n=t.length,a=arguments.length>2&&!0===arguments[2];if(!a&&0===n)return 0;for(var i=!1;;)switch(r){case\"ascii\":case\"latin1\":case\"binary\":return n;case\"utf8\":case\"utf-8\":return F(t).length;case\"ucs2\":case\"ucs-2\":case\"utf16le\":case\"utf-16le\":return 2*n;case\"hex\":return n>>>1;case\"base64\":return B(t).length;default:if(i)return a?-1:F(t).length;r=(\"\"+r).toLowerCase(),i=!0}}function d(t,e,r){var n=t[e];t[e]=t[r],t[r]=n}function g(t,r,n,a,i){if(0===t.length)return-1;if(\"string\"==typeof n?(a=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),V(n=+n)&&(n=i?0:t.length-1),n<0&&(n=t.length+n),n>=t.length){if(i)return-1;n=t.length-1}else if(n<0){if(!i)return-1;n=0}if(\"string\"==typeof r&&(r=e.from(r,a)),e.isBuffer(r))return 0===r.length?-1:v(t,r,n,a,i);if(\"number\"==typeof r)return r&=255,\"function\"==typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(t,r,n):Uint8Array.prototype.lastIndexOf.call(t,r,n):v(t,[r],n,a,i);throw new TypeError(\"val must be string, number or Buffer\")}function v(t,e,r,n,a){var i,o=1,s=t.length,l=e.length;if(void 0!==n&&(\"ucs2\"===(n=String(n).toLowerCase())||\"ucs-2\"===n||\"utf16le\"===n||\"utf-16le\"===n)){if(t.length<2||e.length<2)return-1;o=2,s/=2,l/=2,r/=2}function c(t,e){return 1===o?t[e]:t.readUInt16BE(e*o)}if(a){var u=-1;for(i=r;i<s;i++)if(c(t,i)===c(e,-1===u?0:i-u)){if(-1===u&&(u=i),i-u+1===l)return u*o}else-1!==u&&(i-=i-u),u=-1}else for(r+l>s&&(r=s-l),i=r;i>=0;i--){for(var h=!0,f=0;f<l;f++)if(c(t,i+f)!==c(e,f)){h=!1;break}if(h)return i}return-1}function m(t,e,r,n){r=Number(r)||0;var a=t.length-r;n?(n=Number(n))>a&&(n=a):n=a;var i=e.length;n>i/2&&(n=i/2);for(var o=0;o<n;++o){var s=parseInt(e.substr(2*o,2),16);if(V(s))return o;t[r+o]=s}return o}function y(t,e,r,n){return N(F(e,t.length-r),t,r,n)}function x(t,e,r,n){return N(function(t){for(var e=[],r=0;r<t.length;++r)e.push(255&t.charCodeAt(r));return e}(e),t,r,n)}function b(t,e,r,n){return x(t,e,r,n)}function _(t,e,r,n){return N(B(e),t,r,n)}function w(t,e,r,n){return N(function(t,e){for(var r,n,a,i=[],o=0;o<t.length&&!((e-=2)<0);++o)r=t.charCodeAt(o),n=r>>8,a=r%256,i.push(a),i.push(n);return i}(e,t.length-r),t,r,n)}function k(t,e,r){return 0===e&&r===t.length?n.fromByteArray(t):n.fromByteArray(t.slice(e,r))}function T(t,e,r){r=Math.min(t.length,r);for(var n=[],a=e;a<r;){var i,o,s,l,c=t[a],u=null,h=c>239?4:c>223?3:c>191?2:1;if(a+h<=r)switch(h){case 1:c<128&&(u=c);break;case 2:128==(192&(i=t[a+1]))&&(l=(31&c)<<6|63&i)>127&&(u=l);break;case 3:i=t[a+1],o=t[a+2],128==(192&i)&&128==(192&o)&&(l=(15&c)<<12|(63&i)<<6|63&o)>2047&&(l<55296||l>57343)&&(u=l);break;case 4:i=t[a+1],o=t[a+2],s=t[a+3],128==(192&i)&&128==(192&o)&&128==(192&s)&&(l=(15&c)<<18|(63&i)<<12|(63&o)<<6|63&s)>65535&&l<1114112&&(u=l)}null===u?(u=65533,h=1):u>65535&&(u-=65536,n.push(u>>>10&1023|55296),u=56320|1023&u),n.push(u),a+=h}return function(t){var e=t.length;if(e<=A)return String.fromCharCode.apply(String,t);var r=\"\",n=0;for(;n<e;)r+=String.fromCharCode.apply(String,t.slice(n,n+=A));return r}(n)}r.kMaxLength=o,e.TYPED_ARRAY_SUPPORT=function(){try{var t=new Uint8Array(1),e={foo:function(){return 42}};return Object.setPrototypeOf(e,Uint8Array.prototype),Object.setPrototypeOf(t,e),42===t.foo()}catch(t){return!1}}(),e.TYPED_ARRAY_SUPPORT||\"undefined\"==typeof console||\"function\"!=typeof console.error||console.error(\"This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support.\"),Object.defineProperty(e.prototype,\"parent\",{enumerable:!0,get:function(){if(e.isBuffer(this))return this.buffer}}),Object.defineProperty(e.prototype,\"offset\",{enumerable:!0,get:function(){if(e.isBuffer(this))return this.byteOffset}}),\"undefined\"!=typeof Symbol&&null!=Symbol.species&&e[Symbol.species]===e&&Object.defineProperty(e,Symbol.species,{value:null,configurable:!0,enumerable:!1,writable:!1}),e.poolSize=8192,e.from=function(t,e,r){return l(t,e,r)},Object.setPrototypeOf(e.prototype,Uint8Array.prototype),Object.setPrototypeOf(e,Uint8Array),e.alloc=function(t,e,r){return function(t,e,r){return c(t),t<=0?s(t):void 0!==e?\"string\"==typeof r?s(t).fill(e,r):s(t).fill(e):s(t)}(t,e,r)},e.allocUnsafe=function(t){return u(t)},e.allocUnsafeSlow=function(t){return u(t)},e.isBuffer=function(t){return null!=t&&!0===t._isBuffer&&t!==e.prototype},e.compare=function(t,r){if(j(t,Uint8Array)&&(t=e.from(t,t.offset,t.byteLength)),j(r,Uint8Array)&&(r=e.from(r,r.offset,r.byteLength)),!e.isBuffer(t)||!e.isBuffer(r))throw new TypeError('The \"buf1\", \"buf2\" arguments must be one of type Buffer or Uint8Array');if(t===r)return 0;for(var n=t.length,a=r.length,i=0,o=Math.min(n,a);i<o;++i)if(t[i]!==r[i]){n=t[i],a=r[i];break}return n<a?-1:a<n?1:0},e.isEncoding=function(t){switch(String(t).toLowerCase()){case\"hex\":case\"utf8\":case\"utf-8\":case\"ascii\":case\"latin1\":case\"binary\":case\"base64\":case\"ucs2\":case\"ucs-2\":case\"utf16le\":case\"utf-16le\":return!0;default:return!1}},e.concat=function(t,r){if(!Array.isArray(t))throw new TypeError('\"list\" argument must be an Array of Buffers');if(0===t.length)return e.alloc(0);var n;if(void 0===r)for(r=0,n=0;n<t.length;++n)r+=t[n].length;var a=e.allocUnsafe(r),i=0;for(n=0;n<t.length;++n){var o=t[n];if(j(o,Uint8Array)&&(o=e.from(o)),!e.isBuffer(o))throw new TypeError('\"list\" argument must be an Array of Buffers');o.copy(a,i),i+=o.length}return a},e.byteLength=p,e.prototype._isBuffer=!0,e.prototype.swap16=function(){var t=this.length;if(t%2!=0)throw new RangeError(\"Buffer size must be a multiple of 16-bits\");for(var e=0;e<t;e+=2)d(this,e,e+1);return this},e.prototype.swap32=function(){var t=this.length;if(t%4!=0)throw new RangeError(\"Buffer size must be a multiple of 32-bits\");for(var e=0;e<t;e+=4)d(this,e,e+3),d(this,e+1,e+2);return this},e.prototype.swap64=function(){var t=this.length;if(t%8!=0)throw new RangeError(\"Buffer size must be a multiple of 64-bits\");for(var e=0;e<t;e+=8)d(this,e,e+7),d(this,e+1,e+6),d(this,e+2,e+5),d(this,e+3,e+4);return this},e.prototype.toString=function(){var t=this.length;return 0===t?\"\":0===arguments.length?T(this,0,t):function(t,e,r){var n=!1;if((void 0===e||e<0)&&(e=0),e>this.length)return\"\";if((void 0===r||r>this.length)&&(r=this.length),r<=0)return\"\";if((r>>>=0)<=(e>>>=0))return\"\";for(t||(t=\"utf8\");;)switch(t){case\"hex\":return E(this,e,r);case\"utf8\":case\"utf-8\":return T(this,e,r);case\"ascii\":return M(this,e,r);case\"latin1\":case\"binary\":return S(this,e,r);case\"base64\":return k(this,e,r);case\"ucs2\":case\"ucs-2\":case\"utf16le\":case\"utf-16le\":return C(this,e,r);default:if(n)throw new TypeError(\"Unknown encoding: \"+t);t=(t+\"\").toLowerCase(),n=!0}}.apply(this,arguments)},e.prototype.toLocaleString=e.prototype.toString,e.prototype.equals=function(t){if(!e.isBuffer(t))throw new TypeError(\"Argument must be a Buffer\");return this===t||0===e.compare(this,t)},e.prototype.inspect=function(){var t=\"\",e=r.INSPECT_MAX_BYTES;return t=this.toString(\"hex\",0,e).replace(/(.{2})/g,\"$1 \").trim(),this.length>e&&(t+=\" ... \"),\"<Buffer \"+t+\">\"},i&&(e.prototype[i]=e.prototype.inspect),e.prototype.compare=function(t,r,n,a,i){if(j(t,Uint8Array)&&(t=e.from(t,t.offset,t.byteLength)),!e.isBuffer(t))throw new TypeError('The \"target\" argument must be one of type Buffer or Uint8Array. Received type '+typeof t);if(void 0===r&&(r=0),void 0===n&&(n=t?t.length:0),void 0===a&&(a=0),void 0===i&&(i=this.length),r<0||n>t.length||a<0||i>this.length)throw new RangeError(\"out of range index\");if(a>=i&&r>=n)return 0;if(a>=i)return-1;if(r>=n)return 1;if(this===t)return 0;for(var o=(i>>>=0)-(a>>>=0),s=(n>>>=0)-(r>>>=0),l=Math.min(o,s),c=this.slice(a,i),u=t.slice(r,n),h=0;h<l;++h)if(c[h]!==u[h]){o=c[h],s=u[h];break}return o<s?-1:s<o?1:0},e.prototype.includes=function(t,e,r){return-1!==this.indexOf(t,e,r)},e.prototype.indexOf=function(t,e,r){return g(this,t,e,r,!0)},e.prototype.lastIndexOf=function(t,e,r){return g(this,t,e,r,!1)},e.prototype.write=function(t,e,r,n){if(void 0===e)n=\"utf8\",r=this.length,e=0;else if(void 0===r&&\"string\"==typeof e)n=e,r=this.length,e=0;else{if(!isFinite(e))throw new Error(\"Buffer.write(string, encoding, offset[, length]) is no longer supported\");e>>>=0,isFinite(r)?(r>>>=0,void 0===n&&(n=\"utf8\")):(n=r,r=void 0)}var a=this.length-e;if((void 0===r||r>a)&&(r=a),t.length>0&&(r<0||e<0)||e>this.length)throw new RangeError(\"Attempt to write outside buffer bounds\");n||(n=\"utf8\");for(var i=!1;;)switch(n){case\"hex\":return m(this,t,e,r);case\"utf8\":case\"utf-8\":return y(this,t,e,r);case\"ascii\":return x(this,t,e,r);case\"latin1\":case\"binary\":return b(this,t,e,r);case\"base64\":return _(this,t,e,r);case\"ucs2\":case\"ucs-2\":case\"utf16le\":case\"utf-16le\":return w(this,t,e,r);default:if(i)throw new TypeError(\"Unknown encoding: \"+n);n=(\"\"+n).toLowerCase(),i=!0}},e.prototype.toJSON=function(){return{type:\"Buffer\",data:Array.prototype.slice.call(this._arr||this,0)}};var A=4096;function M(t,e,r){var n=\"\";r=Math.min(t.length,r);for(var a=e;a<r;++a)n+=String.fromCharCode(127&t[a]);return n}function S(t,e,r){var n=\"\";r=Math.min(t.length,r);for(var a=e;a<r;++a)n+=String.fromCharCode(t[a]);return n}function E(t,e,r){var n=t.length;(!e||e<0)&&(e=0),(!r||r<0||r>n)&&(r=n);for(var a=\"\",i=e;i<r;++i)a+=R(t[i]);return a}function C(t,e,r){for(var n=t.slice(e,r),a=\"\",i=0;i<n.length;i+=2)a+=String.fromCharCode(n[i]+256*n[i+1]);return a}function L(t,e,r){if(t%1!=0||t<0)throw new RangeError(\"offset is not uint\");if(t+e>r)throw new RangeError(\"Trying to access beyond buffer length\")}function P(t,r,n,a,i,o){if(!e.isBuffer(t))throw new TypeError('\"buffer\" argument must be a Buffer instance');if(r>i||r<o)throw new RangeError('\"value\" argument is out of bounds');if(n+a>t.length)throw new RangeError(\"Index out of range\")}function O(t,e,r,n,a,i){if(r+n>t.length)throw new RangeError(\"Index out of range\");if(r<0)throw new RangeError(\"Index out of range\")}function I(t,e,r,n,i){return e=+e,r>>>=0,i||O(t,0,r,4),a.write(t,e,r,n,23,4),r+4}function z(t,e,r,n,i){return e=+e,r>>>=0,i||O(t,0,r,8),a.write(t,e,r,n,52,8),r+8}e.prototype.slice=function(t,r){var n=this.length;(t=~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),(r=void 0===r?n:~~r)<0?(r+=n)<0&&(r=0):r>n&&(r=n),r<t&&(r=t);var a=this.subarray(t,r);return Object.setPrototypeOf(a,e.prototype),a},e.prototype.readUIntLE=function(t,e,r){t>>>=0,e>>>=0,r||L(t,e,this.length);for(var n=this[t],a=1,i=0;++i<e&&(a*=256);)n+=this[t+i]*a;return n},e.prototype.readUIntBE=function(t,e,r){t>>>=0,e>>>=0,r||L(t,e,this.length);for(var n=this[t+--e],a=1;e>0&&(a*=256);)n+=this[t+--e]*a;return n},e.prototype.readUInt8=function(t,e){return t>>>=0,e||L(t,1,this.length),this[t]},e.prototype.readUInt16LE=function(t,e){return t>>>=0,e||L(t,2,this.length),this[t]|this[t+1]<<8},e.prototype.readUInt16BE=function(t,e){return t>>>=0,e||L(t,2,this.length),this[t]<<8|this[t+1]},e.prototype.readUInt32LE=function(t,e){return t>>>=0,e||L(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},e.prototype.readUInt32BE=function(t,e){return t>>>=0,e||L(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},e.prototype.readIntLE=function(t,e,r){t>>>=0,e>>>=0,r||L(t,e,this.length);for(var n=this[t],a=1,i=0;++i<e&&(a*=256);)n+=this[t+i]*a;return n>=(a*=128)&&(n-=Math.pow(2,8*e)),n},e.prototype.readIntBE=function(t,e,r){t>>>=0,e>>>=0,r||L(t,e,this.length);for(var n=e,a=1,i=this[t+--n];n>0&&(a*=256);)i+=this[t+--n]*a;return i>=(a*=128)&&(i-=Math.pow(2,8*e)),i},e.prototype.readInt8=function(t,e){return t>>>=0,e||L(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},e.prototype.readInt16LE=function(t,e){t>>>=0,e||L(t,2,this.length);var r=this[t]|this[t+1]<<8;return 32768&r?4294901760|r:r},e.prototype.readInt16BE=function(t,e){t>>>=0,e||L(t,2,this.length);var r=this[t+1]|this[t]<<8;return 32768&r?4294901760|r:r},e.prototype.readInt32LE=function(t,e){return t>>>=0,e||L(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},e.prototype.readInt32BE=function(t,e){return t>>>=0,e||L(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},e.prototype.readFloatLE=function(t,e){return t>>>=0,e||L(t,4,this.length),a.read(this,t,!0,23,4)},e.prototype.readFloatBE=function(t,e){return t>>>=0,e||L(t,4,this.length),a.read(this,t,!1,23,4)},e.prototype.readDoubleLE=function(t,e){return t>>>=0,e||L(t,8,this.length),a.read(this,t,!0,52,8)},e.prototype.readDoubleBE=function(t,e){return t>>>=0,e||L(t,8,this.length),a.read(this,t,!1,52,8)},e.prototype.writeUIntLE=function(t,e,r,n){(t=+t,e>>>=0,r>>>=0,n)||P(this,t,e,r,Math.pow(2,8*r)-1,0);var a=1,i=0;for(this[e]=255&t;++i<r&&(a*=256);)this[e+i]=t/a&255;return e+r},e.prototype.writeUIntBE=function(t,e,r,n){(t=+t,e>>>=0,r>>>=0,n)||P(this,t,e,r,Math.pow(2,8*r)-1,0);var a=r-1,i=1;for(this[e+a]=255&t;--a>=0&&(i*=256);)this[e+a]=t/i&255;return e+r},e.prototype.writeUInt8=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,1,255,0),this[e]=255&t,e+1},e.prototype.writeUInt16LE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,2,65535,0),this[e]=255&t,this[e+1]=t>>>8,e+2},e.prototype.writeUInt16BE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,2,65535,0),this[e]=t>>>8,this[e+1]=255&t,e+2},e.prototype.writeUInt32LE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,4,4294967295,0),this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t,e+4},e.prototype.writeUInt32BE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,4,4294967295,0),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},e.prototype.writeIntLE=function(t,e,r,n){if(t=+t,e>>>=0,!n){var a=Math.pow(2,8*r-1);P(this,t,e,r,a-1,-a)}var i=0,o=1,s=0;for(this[e]=255&t;++i<r&&(o*=256);)t<0&&0===s&&0!==this[e+i-1]&&(s=1),this[e+i]=(t/o>>0)-s&255;return e+r},e.prototype.writeIntBE=function(t,e,r,n){if(t=+t,e>>>=0,!n){var a=Math.pow(2,8*r-1);P(this,t,e,r,a-1,-a)}var i=r-1,o=1,s=0;for(this[e+i]=255&t;--i>=0&&(o*=256);)t<0&&0===s&&0!==this[e+i+1]&&(s=1),this[e+i]=(t/o>>0)-s&255;return e+r},e.prototype.writeInt8=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,1,127,-128),t<0&&(t=255+t+1),this[e]=255&t,e+1},e.prototype.writeInt16LE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,2,32767,-32768),this[e]=255&t,this[e+1]=t>>>8,e+2},e.prototype.writeInt16BE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,2,32767,-32768),this[e]=t>>>8,this[e+1]=255&t,e+2},e.prototype.writeInt32LE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,4,2147483647,-2147483648),this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24,e+4},e.prototype.writeInt32BE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},e.prototype.writeFloatLE=function(t,e,r){return I(this,t,e,!0,r)},e.prototype.writeFloatBE=function(t,e,r){return I(this,t,e,!1,r)},e.prototype.writeDoubleLE=function(t,e,r){return z(this,t,e,!0,r)},e.prototype.writeDoubleBE=function(t,e,r){return z(this,t,e,!1,r)},e.prototype.copy=function(t,r,n,a){if(!e.isBuffer(t))throw new TypeError(\"argument should be a Buffer\");if(n||(n=0),a||0===a||(a=this.length),r>=t.length&&(r=t.length),r||(r=0),a>0&&a<n&&(a=n),a===n)return 0;if(0===t.length||0===this.length)return 0;if(r<0)throw new RangeError(\"targetStart out of bounds\");if(n<0||n>=this.length)throw new RangeError(\"Index out of range\");if(a<0)throw new RangeError(\"sourceEnd out of bounds\");a>this.length&&(a=this.length),t.length-r<a-n&&(a=t.length-r+n);var i=a-n;if(this===t&&\"function\"==typeof Uint8Array.prototype.copyWithin)this.copyWithin(r,n,a);else if(this===t&&n<r&&r<a)for(var o=i-1;o>=0;--o)t[o+r]=this[o+n];else Uint8Array.prototype.set.call(t,this.subarray(n,a),r);return i},e.prototype.fill=function(t,r,n,a){if(\"string\"==typeof t){if(\"string\"==typeof r?(a=r,r=0,n=this.length):\"string\"==typeof n&&(a=n,n=this.length),void 0!==a&&\"string\"!=typeof a)throw new TypeError(\"encoding must be a string\");if(\"string\"==typeof a&&!e.isEncoding(a))throw new TypeError(\"Unknown encoding: \"+a);if(1===t.length){var i=t.charCodeAt(0);(\"utf8\"===a&&i<128||\"latin1\"===a)&&(t=i)}}else\"number\"==typeof t?t&=255:\"boolean\"==typeof t&&(t=Number(t));if(r<0||this.length<r||this.length<n)throw new RangeError(\"Out of range index\");if(n<=r)return this;var o;if(r>>>=0,n=void 0===n?this.length:n>>>0,t||(t=0),\"number\"==typeof t)for(o=r;o<n;++o)this[o]=t;else{var s=e.isBuffer(t)?t:e.from(t,a),l=s.length;if(0===l)throw new TypeError('The value \"'+t+'\" is invalid for argument \"value\"');for(o=0;o<n-r;++o)this[o+r]=s[o%l]}return this};var D=/[^+\\/0-9A-Za-z-_]/g;function R(t){return t<16?\"0\"+t.toString(16):t.toString(16)}function F(t,e){var r;e=e||1/0;for(var n=t.length,a=null,i=[],o=0;o<n;++o){if((r=t.charCodeAt(o))>55295&&r<57344){if(!a){if(r>56319){(e-=3)>-1&&i.push(239,191,189);continue}if(o+1===n){(e-=3)>-1&&i.push(239,191,189);continue}a=r;continue}if(r<56320){(e-=3)>-1&&i.push(239,191,189),a=r;continue}r=65536+(a-55296<<10|r-56320)}else a&&(e-=3)>-1&&i.push(239,191,189);if(a=null,r<128){if((e-=1)<0)break;i.push(r)}else if(r<2048){if((e-=2)<0)break;i.push(r>>6|192,63&r|128)}else if(r<65536){if((e-=3)<0)break;i.push(r>>12|224,r>>6&63|128,63&r|128)}else{if(!(r<1114112))throw new Error(\"Invalid code point\");if((e-=4)<0)break;i.push(r>>18|240,r>>12&63|128,r>>6&63|128,63&r|128)}}return i}function B(t){return n.toByteArray(function(t){if((t=(t=t.split(\"=\")[0]).trim().replace(D,\"\")).length<2)return\"\";for(;t.length%4!=0;)t+=\"=\";return t}(t))}function N(t,e,r,n){for(var a=0;a<n&&!(a+r>=e.length||a>=t.length);++a)e[a+r]=t[a];return a}function j(t,e){return t instanceof e||null!=t&&null!=t.constructor&&null!=t.constructor.name&&t.constructor.name===e.name}function V(t){return t!=t}}).call(this,t(\"buffer\").Buffer)},{\"base64-js\":75,buffer:106,ieee754:413}],107:[function(t,e,r){\"use strict\";var n=t(\"./lib/monotone\"),a=t(\"./lib/triangulation\"),i=t(\"./lib/delaunay\"),o=t(\"./lib/filter\");function s(t){return[Math.min(t[0],t[1]),Math.max(t[0],t[1])]}function l(t,e){return t[0]-e[0]||t[1]-e[1]}function c(t,e,r){return e in t?t[e]:r}e.exports=function(t,e,r){Array.isArray(e)?(r=r||{},e=e||[]):(r=e||{},e=[]);var u=!!c(r,\"delaunay\",!0),h=!!c(r,\"interior\",!0),f=!!c(r,\"exterior\",!0),p=!!c(r,\"infinity\",!1);if(!h&&!f||0===t.length)return[];var d=n(t,e);if(u||h!==f||p){for(var g=a(t.length,function(t){return t.map(s).sort(l)}(e)),v=0;v<d.length;++v){var m=d[v];g.addTriangle(m[0],m[1],m[2])}return u&&i(t,g),f?h?p?o(g,0,p):g.cells():o(g,1,p):o(g,-1)}return d}},{\"./lib/delaunay\":108,\"./lib/filter\":109,\"./lib/monotone\":110,\"./lib/triangulation\":111}],108:[function(t,e,r){\"use strict\";var n=t(\"robust-in-sphere\")[4];t(\"binary-search-bounds\");function a(t,e,r,a,i,o){var s=e.opposite(a,i);if(!(s<0)){if(i<a){var l=a;a=i,i=l,l=o,o=s,s=l}e.isConstraint(a,i)||n(t[a],t[i],t[o],t[s])<0&&r.push(a,i)}}e.exports=function(t,e){for(var r=[],i=t.length,o=e.stars,s=0;s<i;++s)for(var l=o[s],c=1;c<l.length;c+=2){var u=l[c];if(!(u<s)&&!e.isConstraint(s,u)){for(var h=l[c-1],f=-1,p=1;p<l.length;p+=2)if(l[p-1]===u){f=l[p];break}f<0||n(t[s],t[u],t[h],t[f])<0&&r.push(s,u)}}for(;r.length>0;){for(var u=r.pop(),s=r.pop(),h=-1,f=-1,l=o[s],d=1;d<l.length;d+=2){var g=l[d-1],v=l[d];g===u?f=v:v===u&&(h=g)}h<0||f<0||(n(t[s],t[u],t[h],t[f])>=0||(e.flip(s,u),a(t,e,r,h,s,f),a(t,e,r,s,f,h),a(t,e,r,f,u,h),a(t,e,r,u,h,f)))}}},{\"binary-search-bounds\":112,\"robust-in-sphere\":509}],109:[function(t,e,r){\"use strict\";var n,a=t(\"binary-search-bounds\");function i(t,e,r,n,a,i,o){this.cells=t,this.neighbor=e,this.flags=n,this.constraint=r,this.active=a,this.next=i,this.boundary=o}function o(t,e){return t[0]-e[0]||t[1]-e[1]||t[2]-e[2]}e.exports=function(t,e,r){var n=function(t,e){for(var r=t.cells(),n=r.length,a=0;a<n;++a){var s=r[a],l=s[0],c=s[1],u=s[2];c<u?c<l&&(s[0]=c,s[1]=u,s[2]=l):u<l&&(s[0]=u,s[1]=l,s[2]=c)}r.sort(o);for(var h=new Array(n),a=0;a<h.length;++a)h[a]=0;var f=[],p=[],d=new Array(3*n),g=new Array(3*n),v=null;e&&(v=[]);for(var m=new i(r,d,g,h,f,p,v),a=0;a<n;++a)for(var s=r[a],y=0;y<3;++y){var l=s[y],c=s[(y+1)%3],x=d[3*a+y]=m.locate(c,l,t.opposite(c,l)),b=g[3*a+y]=t.isConstraint(l,c);x<0&&(b?p.push(a):(f.push(a),h[a]=1),e&&v.push([c,l,-1]))}return m}(t,r);if(0===e)return r?n.cells.concat(n.boundary):n.cells;var a=1,s=n.active,l=n.next,c=n.flags,u=n.cells,h=n.constraint,f=n.neighbor;for(;s.length>0||l.length>0;){for(;s.length>0;){var p=s.pop();if(c[p]!==-a){c[p]=a;u[p];for(var d=0;d<3;++d){var g=f[3*p+d];g>=0&&0===c[g]&&(h[3*p+d]?l.push(g):(s.push(g),c[g]=a))}}}var v=l;l=s,s=v,l.length=0,a=-a}var m=function(t,e,r){for(var n=0,a=0;a<t.length;++a)e[a]===r&&(t[n++]=t[a]);return t.length=n,t}(u,c,e);if(r)return m.concat(n.boundary);return m},i.prototype.locate=(n=[0,0,0],function(t,e,r){var i=t,s=e,l=r;return e<r?e<t&&(i=e,s=r,l=t):r<t&&(i=r,s=t,l=e),i<0?-1:(n[0]=i,n[1]=s,n[2]=l,a.eq(this.cells,n,o))})},{\"binary-search-bounds\":112}],110:[function(t,e,r){\"use strict\";var n=t(\"binary-search-bounds\"),a=t(\"robust-orientation\")[3],i=0,o=1,s=2;function l(t,e,r,n,a){this.a=t,this.b=e,this.idx=r,this.lowerIds=n,this.upperIds=a}function c(t,e,r,n){this.a=t,this.b=e,this.type=r,this.idx=n}function u(t,e){var r=t.a[0]-e.a[0]||t.a[1]-e.a[1]||t.type-e.type;return r||(t.type!==i&&(r=a(t.a,t.b,e.b))?r:t.idx-e.idx)}function h(t,e){return a(t.a,t.b,e)}function f(t,e,r,i,o){for(var s=n.lt(e,i,h),l=n.gt(e,i,h),c=s;c<l;++c){for(var u=e[c],f=u.lowerIds,p=f.length;p>1&&a(r[f[p-2]],r[f[p-1]],i)>0;)t.push([f[p-1],f[p-2],o]),p-=1;f.length=p,f.push(o);var d=u.upperIds;for(p=d.length;p>1&&a(r[d[p-2]],r[d[p-1]],i)<0;)t.push([d[p-2],d[p-1],o]),p-=1;d.length=p,d.push(o)}}function p(t,e){var r;return(r=t.a[0]<e.a[0]?a(t.a,t.b,e.a):a(e.b,e.a,t.a))?r:(r=e.b[0]<t.b[0]?a(t.a,t.b,e.b):a(e.b,e.a,t.b))||t.idx-e.idx}function d(t,e,r){var a=n.le(t,r,p),i=t[a],o=i.upperIds,s=o[o.length-1];i.upperIds=[s],t.splice(a+1,0,new l(r.a,r.b,r.idx,[s],o))}function g(t,e,r){var a=r.a;r.a=r.b,r.b=a;var i=n.eq(t,r,p),o=t[i];t[i-1].upperIds=o.upperIds,t.splice(i,1)}e.exports=function(t,e){for(var r=t.length,n=e.length,a=[],h=0;h<r;++h)a.push(new c(t[h],null,i,h));for(var h=0;h<n;++h){var p=e[h],v=t[p[0]],m=t[p[1]];v[0]<m[0]?a.push(new c(v,m,s,h),new c(m,v,o,h)):v[0]>m[0]&&a.push(new c(m,v,s,h),new c(v,m,o,h))}a.sort(u);for(var y=a[0].a[0]-(1+Math.abs(a[0].a[0]))*Math.pow(2,-52),x=[new l([y,1],[y,0],-1,[],[],[],[])],b=[],h=0,_=a.length;h<_;++h){var w=a[h],k=w.type;k===i?f(b,x,t,w.a,w.idx):k===s?d(x,t,w):g(x,t,w)}return b}},{\"binary-search-bounds\":112,\"robust-orientation\":511}],111:[function(t,e,r){\"use strict\";var n=t(\"binary-search-bounds\");function a(t,e){this.stars=t,this.edges=e}e.exports=function(t,e){for(var r=new Array(t),n=0;n<t;++n)r[n]=[];return new a(r,e)};var i=a.prototype;function o(t,e,r){for(var n=1,a=t.length;n<a;n+=2)if(t[n-1]===e&&t[n]===r)return t[n-1]=t[a-2],t[n]=t[a-1],void(t.length=a-2)}i.isConstraint=function(){var t=[0,0];function e(t,e){return t[0]-e[0]||t[1]-e[1]}return function(r,a){return t[0]=Math.min(r,a),t[1]=Math.max(r,a),n.eq(this.edges,t,e)>=0}}(),i.removeTriangle=function(t,e,r){var n=this.stars;o(n[t],e,r),o(n[e],r,t),o(n[r],t,e)},i.addTriangle=function(t,e,r){var n=this.stars;n[t].push(e,r),n[e].push(r,t),n[r].push(t,e)},i.opposite=function(t,e){for(var r=this.stars[e],n=1,a=r.length;n<a;n+=2)if(r[n]===t)return r[n-1];return-1},i.flip=function(t,e){var r=this.opposite(t,e),n=this.opposite(e,t);this.removeTriangle(t,e,r),this.removeTriangle(e,t,n),this.addTriangle(t,n,r),this.addTriangle(e,r,n)},i.edges=function(){for(var t=this.stars,e=[],r=0,n=t.length;r<n;++r)for(var a=t[r],i=0,o=a.length;i<o;i+=2)e.push([a[i],a[i+1]]);return e},i.cells=function(){for(var t=this.stars,e=[],r=0,n=t.length;r<n;++r)for(var a=t[r],i=0,o=a.length;i<o;i+=2){var s=a[i],l=a[i+1];r<Math.min(s,l)&&e.push([r,s,l])}return e}},{\"binary-search-bounds\":112}],112:[function(t,e,r){\"use strict\";function n(t,e,r,n,a){var i=[\"function \",t,\"(a,l,h,\",n.join(\",\"),\"){\",a?\"\":\"var i=\",r?\"l-1\":\"h+1\",\";while(l<=h){var m=(l+h)>>>1,x=a[m]\"];return a?e.indexOf(\"c\")<0?i.push(\";if(x===y){return m}else if(x<=y){\"):i.push(\";var p=c(x,y);if(p===0){return m}else if(p<=0){\"):i.push(\";if(\",e,\"){i=m;\"),r?i.push(\"l=m+1}else{h=m-1}\"):i.push(\"h=m-1}else{l=m+1}\"),i.push(\"}\"),a?i.push(\"return -1};\"):i.push(\"return i};\"),i.join(\"\")}function a(t,e,r,a){return new Function([n(\"A\",\"x\"+t+\"y\",e,[\"y\"],a),n(\"P\",\"c(x,y)\"+t+\"0\",e,[\"y\",\"c\"],a),\"function dispatchBsearch\",r,\"(a,y,c,l,h){if(typeof(c)==='function'){return P(a,(l===void 0)?0:l|0,(h===void 0)?a.length-1:h|0,y,c)}else{return A(a,(c===void 0)?0:c|0,(l===void 0)?a.length-1:l|0,y)}}return dispatchBsearch\",r].join(\"\"))()}e.exports={ge:a(\">=\",!1,\"GE\"),gt:a(\">\",!1,\"GT\"),lt:a(\"<\",!0,\"LT\"),le:a(\"<=\",!0,\"LE\"),eq:a(\"-\",!0,\"EQ\",!0)}},{}],113:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=1,r=1;r<t.length;++r)for(var n=0;n<r;++n)if(t[r]<t[n])e=-e;else if(t[n]===t[r])return 0;return e}},{}],114:[function(t,e,r){\"use strict\";var n=t(\"dup\"),a=t(\"robust-linear-solve\");function i(t,e){for(var r=0,n=t.length,a=0;a<n;++a)r+=t[a]*e[a];return r}function o(t){var e=t.length;if(0===e)return[];t[0].length;var r=n([t.length+1,t.length+1],1),o=n([t.length+1],1);r[e][e]=0;for(var s=0;s<e;++s){for(var l=0;l<=s;++l)r[l][s]=r[s][l]=2*i(t[s],t[l]);o[s]=i(t[s],t[s])}var c=a(r,o),u=0,h=c[e+1];for(s=0;s<h.length;++s)u+=h[s];var f=new Array(e);for(s=0;s<e;++s){h=c[s];var p=0;for(l=0;l<h.length;++l)p+=h[l];f[s]=p/u}return f}function s(t){if(0===t.length)return[];for(var e=t[0].length,r=n([e]),a=o(t),i=0;i<t.length;++i)for(var s=0;s<e;++s)r[s]+=t[i][s]*a[i];return r}s.barycenetric=o,e.exports=s},{dup:171,\"robust-linear-solve\":510}],115:[function(t,e,r){e.exports=function(t){for(var e=n(t),r=0,a=0;a<t.length;++a)for(var i=t[a],o=0;o<e.length;++o)r+=Math.pow(i[o]-e[o],2);return Math.sqrt(r/t.length)};var n=t(\"circumcenter\")},{circumcenter:114}],116:[function(t,e,r){e.exports=function(t,e,r){return e<r?t<e?e:t>r?r:t:t<r?r:t>e?e:t}},{}],117:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){var n;if(r){n=e;for(var a=new Array(e.length),i=0;i<e.length;++i){var o=e[i];a[i]=[o[0],o[1],r[i]]}e=a}var s=function(t,e,r){var n=d(t,[],p(t));return m(e,n,r),!!n}(t,e,!!r);for(;y(t,e,!!r);)s=!0;if(r&&s){n.length=0,r.length=0;for(var i=0;i<e.length;++i){var o=e[i];n.push([o[0],o[1]]),r.push(o[2])}}return s};var n=t(\"union-find\"),a=t(\"box-intersect\"),i=t(\"robust-segment-intersect\"),o=t(\"big-rat\"),s=t(\"big-rat/cmp\"),l=t(\"big-rat/to-float\"),c=t(\"rat-vec\"),u=t(\"nextafter\"),h=t(\"./lib/rat-seg-intersect\");function f(t){var e=l(t);return[u(e,-1/0),u(e,1/0)]}function p(t){for(var e=new Array(t.length),r=0;r<t.length;++r){var n=t[r];e[r]=[u(n[0],-1/0),u(n[1],-1/0),u(n[0],1/0),u(n[1],1/0)]}return e}function d(t,e,r){for(var i=e.length,o=new n(i),s=[],l=0;l<e.length;++l){var c=e[l],h=f(c[0]),p=f(c[1]);s.push([u(h[0],-1/0),u(p[0],-1/0),u(h[1],1/0),u(p[1],1/0)])}a(s,function(t,e){o.link(t,e)});var d=!0,g=new Array(i);for(l=0;l<i;++l){(m=o.find(l))!==l&&(d=!1,t[m]=[Math.min(t[l][0],t[m][0]),Math.min(t[l][1],t[m][1])])}if(d)return null;var v=0;for(l=0;l<i;++l){var m;(m=o.find(l))===l?(g[l]=v,t[v++]=t[l]):g[l]=-1}t.length=v;for(l=0;l<i;++l)g[l]<0&&(g[l]=g[o.find(l)]);return g}function g(t,e){return t[0]-e[0]||t[1]-e[1]}function v(t,e){var r=t[0]-e[0]||t[1]-e[1];return r||(t[2]<e[2]?-1:t[2]>e[2]?1:0)}function m(t,e,r){if(0!==t.length){if(e)for(var n=0;n<t.length;++n){var a=e[(o=t[n])[0]],i=e[o[1]];o[0]=Math.min(a,i),o[1]=Math.max(a,i)}else for(n=0;n<t.length;++n){var o;a=(o=t[n])[0],i=o[1];o[0]=Math.min(a,i),o[1]=Math.max(a,i)}r?t.sort(v):t.sort(g);var s=1;for(n=1;n<t.length;++n){var l=t[n-1],c=t[n];(c[0]!==l[0]||c[1]!==l[1]||r&&c[2]!==l[2])&&(t[s++]=c)}t.length=s}}function y(t,e,r){var n=function(t,e){for(var r=new Array(e.length),n=0;n<e.length;++n){var a=e[n],i=t[a[0]],o=t[a[1]];r[n]=[u(Math.min(i[0],o[0]),-1/0),u(Math.min(i[1],o[1]),-1/0),u(Math.max(i[0],o[0]),1/0),u(Math.max(i[1],o[1]),1/0)]}return r}(t,e),f=function(t,e,r){var n=[];return a(r,function(r,a){var o=e[r],s=e[a];if(o[0]!==s[0]&&o[0]!==s[1]&&o[1]!==s[0]&&o[1]!==s[1]){var l=t[o[0]],c=t[o[1]],u=t[s[0]],h=t[s[1]];i(l,c,u,h)&&n.push([r,a])}}),n}(t,e,n),g=p(t),v=function(t,e,r,n){var o=[];return a(r,n,function(r,n){var a=e[r];if(a[0]!==n&&a[1]!==n){var s=t[n],l=t[a[0]],c=t[a[1]];i(l,c,s,s)&&o.push([r,n])}}),o}(t,e,n,g),y=d(t,function(t,e,r,n,a){var i,u,f=t.map(function(t){return[o(t[0]),o(t[1])]});for(i=0;i<r.length;++i){var p=r[i];u=p[0];var d=p[1],g=e[u],v=e[d],m=h(c(t[g[0]]),c(t[g[1]]),c(t[v[0]]),c(t[v[1]]));if(m){var y=t.length;t.push([l(m[0]),l(m[1])]),f.push(m),n.push([u,y],[d,y])}}for(n.sort(function(t,e){if(t[0]!==e[0])return t[0]-e[0];var r=f[t[1]],n=f[e[1]];return s(r[0],n[0])||s(r[1],n[1])}),i=n.length-1;i>=0;--i){var x=e[u=(S=n[i])[0]],b=x[0],_=x[1],w=t[b],k=t[_];if((w[0]-k[0]||w[1]-k[1])<0){var T=b;b=_,_=T}x[0]=b;var A,M=x[1]=S[1];for(a&&(A=x[2]);i>0&&n[i-1][0]===u;){var S,E=(S=n[--i])[1];a?e.push([M,E,A]):e.push([M,E]),M=E}a?e.push([M,_,A]):e.push([M,_])}return f}(t,e,f,v,r));return m(e,y,r),!!y||(f.length>0||v.length>0)}},{\"./lib/rat-seg-intersect\":118,\"big-rat\":79,\"big-rat/cmp\":77,\"big-rat/to-float\":91,\"box-intersect\":97,nextafter:452,\"rat-vec\":487,\"robust-segment-intersect\":514,\"union-find\":547}],118:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n){var i=s(e,t),h=s(n,r),f=u(i,h);if(0===o(f))return null;var p=s(t,r),d=u(h,p),g=a(d,f),v=c(i,g);return l(t,v)};var n=t(\"big-rat/mul\"),a=t(\"big-rat/div\"),i=t(\"big-rat/sub\"),o=t(\"big-rat/sign\"),s=t(\"rat-vec/sub\"),l=t(\"rat-vec/add\"),c=t(\"rat-vec/muls\");function u(t,e){return i(n(t[0],e[1]),n(t[1],e[0]))}},{\"big-rat/div\":78,\"big-rat/mul\":88,\"big-rat/sign\":89,\"big-rat/sub\":90,\"rat-vec/add\":486,\"rat-vec/muls\":488,\"rat-vec/sub\":489}],119:[function(t,e,r){\"use strict\";var n=t(\"clamp\");function a(t,e){null==e&&(e=!0);var r=t[0],a=t[1],i=t[2],o=t[3];return null==o&&(o=e?1:255),e&&(r*=255,a*=255,i*=255,o*=255),16777216*(r=255&n(r,0,255))+((a=255&n(a,0,255))<<16)+((i=255&n(i,0,255))<<8)+(o=255&n(o,0,255))}e.exports=a,e.exports.to=a,e.exports.from=function(t,e){var r=(t=+t)>>>24,n=(16711680&t)>>>16,a=(65280&t)>>>8,i=255&t;return!1===e?[r,n,a,i]:[r/255,n/255,a/255,i/255]}},{clamp:116}],120:[function(t,e,r){\"use strict\";e.exports={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]}},{}],121:[function(t,e,r){\"use strict\";var n=t(\"color-rgba\"),a=t(\"clamp\"),i=t(\"dtype\");e.exports=function(t,e){\"float\"!==e&&e||(e=\"array\"),\"uint\"===e&&(e=\"uint8\"),\"uint_clamped\"===e&&(e=\"uint8_clamped\");var r=new(i(e))(4),o=\"uint8\"!==e&&\"uint8_clamped\"!==e;return t.length&&\"string\"!=typeof t||((t=n(t))[0]/=255,t[1]/=255,t[2]/=255),function(t){return t instanceof Uint8Array||t instanceof Uint8ClampedArray||!!(Array.isArray(t)&&(t[0]>1||0===t[0])&&(t[1]>1||0===t[1])&&(t[2]>1||0===t[2])&&(!t[3]||t[3]>1))}(t)?(r[0]=t[0],r[1]=t[1],r[2]=t[2],r[3]=null!=t[3]?t[3]:255,o&&(r[0]/=255,r[1]/=255,r[2]/=255,r[3]/=255),r):(o?(r[0]=t[0],r[1]=t[1],r[2]=t[2],r[3]=null!=t[3]?t[3]:1):(r[0]=a(Math.floor(255*t[0]),0,255),r[1]=a(Math.floor(255*t[1]),0,255),r[2]=a(Math.floor(255*t[2]),0,255),r[3]=null==t[3]?255:a(Math.floor(255*t[3]),0,255)),r)}},{clamp:116,\"color-rgba\":123,dtype:170}],122:[function(t,e,r){(function(r){\"use strict\";var n=t(\"color-name\"),a=t(\"is-plain-obj\"),i=t(\"defined\");e.exports=function(t){var e,s,l=[],c=1;if(\"string\"==typeof t)if(n[t])l=n[t].slice(),s=\"rgb\";else if(\"transparent\"===t)c=0,s=\"rgb\",l=[0,0,0];else if(/^#[A-Fa-f0-9]+$/.test(t)){var u=t.slice(1),h=u.length,f=h<=4;c=1,f?(l=[parseInt(u[0]+u[0],16),parseInt(u[1]+u[1],16),parseInt(u[2]+u[2],16)],4===h&&(c=parseInt(u[3]+u[3],16)/255)):(l=[parseInt(u[0]+u[1],16),parseInt(u[2]+u[3],16),parseInt(u[4]+u[5],16)],8===h&&(c=parseInt(u[6]+u[7],16)/255)),l[0]||(l[0]=0),l[1]||(l[1]=0),l[2]||(l[2]=0),s=\"rgb\"}else if(e=/^((?:rgb|hs[lvb]|hwb|cmyk?|xy[zy]|gray|lab|lchu?v?|[ly]uv|lms)a?)\\s*\\(([^\\)]*)\\)/.exec(t)){var p=e[1],d=\"rgb\"===p,u=p.replace(/a$/,\"\");s=u;var h=\"cmyk\"===u?4:\"gray\"===u?1:3;l=e[2].trim().split(/\\s*,\\s*/).map(function(t,e){if(/%$/.test(t))return e===h?parseFloat(t)/100:\"rgb\"===u?255*parseFloat(t)/100:parseFloat(t);if(\"h\"===u[e]){if(/deg$/.test(t))return parseFloat(t);if(void 0!==o[t])return o[t]}return parseFloat(t)}),p===u&&l.push(1),c=d?1:void 0===l[h]?1:l[h],l=l.slice(0,h)}else t.length>10&&/[0-9](?:\\s|\\/)/.test(t)&&(l=t.match(/([0-9]+)/g).map(function(t){return parseFloat(t)}),s=t.match(/([a-z])/gi).join(\"\").toLowerCase());else if(isNaN(t))if(a(t)){var g=i(t.r,t.red,t.R,null);null!==g?(s=\"rgb\",l=[g,i(t.g,t.green,t.G),i(t.b,t.blue,t.B)]):(s=\"hsl\",l=[i(t.h,t.hue,t.H),i(t.s,t.saturation,t.S),i(t.l,t.lightness,t.L,t.b,t.brightness)]),c=i(t.a,t.alpha,t.opacity,1),null!=t.opacity&&(c/=100)}else(Array.isArray(t)||r.ArrayBuffer&&ArrayBuffer.isView&&ArrayBuffer.isView(t))&&(l=[t[0],t[1],t[2]],s=\"rgb\",c=4===t.length?t[3]:1);else s=\"rgb\",l=[t>>>16,(65280&t)>>>8,255&t];return{space:s,values:l,alpha:c}};var o={red:0,orange:60,yellow:120,green:180,blue:240,purple:300}}).call(this,\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{\"color-name\":120,defined:165,\"is-plain-obj\":423}],123:[function(t,e,r){\"use strict\";var n=t(\"color-parse\"),a=t(\"color-space/hsl\"),i=t(\"clamp\");e.exports=function(t){var e,r=n(t);return r.space?((e=Array(3))[0]=i(r.values[0],0,255),e[1]=i(r.values[1],0,255),e[2]=i(r.values[2],0,255),\"h\"===r.space[0]&&(e=a.rgb(e)),e.push(i(r.alpha,0,1)),e):[]}},{clamp:116,\"color-parse\":122,\"color-space/hsl\":124}],124:[function(t,e,r){\"use strict\";var n=t(\"./rgb\");e.exports={name:\"hsl\",min:[0,0,0],max:[360,100,100],channel:[\"hue\",\"saturation\",\"lightness\"],alias:[\"HSL\"],rgb:function(t){var e,r,n,a,i,o=t[0]/360,s=t[1]/100,l=t[2]/100;if(0===s)return[i=255*l,i,i];e=2*l-(r=l<.5?l*(1+s):l+s-l*s),a=[0,0,0];for(var c=0;c<3;c++)(n=o+1/3*-(c-1))<0?n++:n>1&&n--,i=6*n<1?e+6*(r-e)*n:2*n<1?r:3*n<2?e+(r-e)*(2/3-n)*6:e,a[c]=255*i;return a}},n.hsl=function(t){var e,r,n=t[0]/255,a=t[1]/255,i=t[2]/255,o=Math.min(n,a,i),s=Math.max(n,a,i),l=s-o;return s===o?e=0:n===s?e=(a-i)/l:a===s?e=2+(i-n)/l:i===s&&(e=4+(n-a)/l),(e=Math.min(60*e,360))<0&&(e+=360),r=(o+s)/2,[e,100*(s===o?0:r<=.5?l/(s+o):l/(2-s-o)),100*r]}},{\"./rgb\":125}],125:[function(t,e,r){\"use strict\";e.exports={name:\"rgb\",min:[0,0,0],max:[255,255,255],channel:[\"red\",\"green\",\"blue\"],alias:[\"RGB\"]}},{}],126:[function(t,e,r){e.exports={jet:[{index:0,rgb:[0,0,131]},{index:.125,rgb:[0,60,170]},{index:.375,rgb:[5,255,255]},{index:.625,rgb:[255,255,0]},{index:.875,rgb:[250,0,0]},{index:1,rgb:[128,0,0]}],hsv:[{index:0,rgb:[255,0,0]},{index:.169,rgb:[253,255,2]},{index:.173,rgb:[247,255,2]},{index:.337,rgb:[0,252,4]},{index:.341,rgb:[0,252,10]},{index:.506,rgb:[1,249,255]},{index:.671,rgb:[2,0,253]},{index:.675,rgb:[8,0,253]},{index:.839,rgb:[255,0,251]},{index:.843,rgb:[255,0,245]},{index:1,rgb:[255,0,6]}],hot:[{index:0,rgb:[0,0,0]},{index:.3,rgb:[230,0,0]},{index:.6,rgb:[255,210,0]},{index:1,rgb:[255,255,255]}],cool:[{index:0,rgb:[0,255,255]},{index:1,rgb:[255,0,255]}],spring:[{index:0,rgb:[255,0,255]},{index:1,rgb:[255,255,0]}],summer:[{index:0,rgb:[0,128,102]},{index:1,rgb:[255,255,102]}],autumn:[{index:0,rgb:[255,0,0]},{index:1,rgb:[255,255,0]}],winter:[{index:0,rgb:[0,0,255]},{index:1,rgb:[0,255,128]}],bone:[{index:0,rgb:[0,0,0]},{index:.376,rgb:[84,84,116]},{index:.753,rgb:[169,200,200]},{index:1,rgb:[255,255,255]}],copper:[{index:0,rgb:[0,0,0]},{index:.804,rgb:[255,160,102]},{index:1,rgb:[255,199,127]}],greys:[{index:0,rgb:[0,0,0]},{index:1,rgb:[255,255,255]}],yignbu:[{index:0,rgb:[8,29,88]},{index:.125,rgb:[37,52,148]},{index:.25,rgb:[34,94,168]},{index:.375,rgb:[29,145,192]},{index:.5,rgb:[65,182,196]},{index:.625,rgb:[127,205,187]},{index:.75,rgb:[199,233,180]},{index:.875,rgb:[237,248,217]},{index:1,rgb:[255,255,217]}],greens:[{index:0,rgb:[0,68,27]},{index:.125,rgb:[0,109,44]},{index:.25,rgb:[35,139,69]},{index:.375,rgb:[65,171,93]},{index:.5,rgb:[116,196,118]},{index:.625,rgb:[161,217,155]},{index:.75,rgb:[199,233,192]},{index:.875,rgb:[229,245,224]},{index:1,rgb:[247,252,245]}],yiorrd:[{index:0,rgb:[128,0,38]},{index:.125,rgb:[189,0,38]},{index:.25,rgb:[227,26,28]},{index:.375,rgb:[252,78,42]},{index:.5,rgb:[253,141,60]},{index:.625,rgb:[254,178,76]},{index:.75,rgb:[254,217,118]},{index:.875,rgb:[255,237,160]},{index:1,rgb:[255,255,204]}],bluered:[{index:0,rgb:[0,0,255]},{index:1,rgb:[255,0,0]}],rdbu:[{index:0,rgb:[5,10,172]},{index:.35,rgb:[106,137,247]},{index:.5,rgb:[190,190,190]},{index:.6,rgb:[220,170,132]},{index:.7,rgb:[230,145,90]},{index:1,rgb:[178,10,28]}],picnic:[{index:0,rgb:[0,0,255]},{index:.1,rgb:[51,153,255]},{index:.2,rgb:[102,204,255]},{index:.3,rgb:[153,204,255]},{index:.4,rgb:[204,204,255]},{index:.5,rgb:[255,255,255]},{index:.6,rgb:[255,204,255]},{index:.7,rgb:[255,153,255]},{index:.8,rgb:[255,102,204]},{index:.9,rgb:[255,102,102]},{index:1,rgb:[255,0,0]}],rainbow:[{index:0,rgb:[150,0,90]},{index:.125,rgb:[0,0,200]},{index:.25,rgb:[0,25,255]},{index:.375,rgb:[0,152,255]},{index:.5,rgb:[44,255,150]},{index:.625,rgb:[151,255,0]},{index:.75,rgb:[255,234,0]},{index:.875,rgb:[255,111,0]},{index:1,rgb:[255,0,0]}],portland:[{index:0,rgb:[12,51,131]},{index:.25,rgb:[10,136,186]},{index:.5,rgb:[242,211,56]},{index:.75,rgb:[242,143,56]},{index:1,rgb:[217,30,30]}],blackbody:[{index:0,rgb:[0,0,0]},{index:.2,rgb:[230,0,0]},{index:.4,rgb:[230,210,0]},{index:.7,rgb:[255,255,255]},{index:1,rgb:[160,200,255]}],earth:[{index:0,rgb:[0,0,130]},{index:.1,rgb:[0,180,180]},{index:.2,rgb:[40,210,40]},{index:.4,rgb:[230,230,50]},{index:.6,rgb:[120,70,20]},{index:1,rgb:[255,255,255]}],electric:[{index:0,rgb:[0,0,0]},{index:.15,rgb:[30,0,100]},{index:.4,rgb:[120,0,100]},{index:.6,rgb:[160,90,0]},{index:.8,rgb:[230,200,0]},{index:1,rgb:[255,250,220]}],alpha:[{index:0,rgb:[255,255,255,0]},{index:1,rgb:[255,255,255,1]}],viridis:[{index:0,rgb:[68,1,84]},{index:.13,rgb:[71,44,122]},{index:.25,rgb:[59,81,139]},{index:.38,rgb:[44,113,142]},{index:.5,rgb:[33,144,141]},{index:.63,rgb:[39,173,129]},{index:.75,rgb:[92,200,99]},{index:.88,rgb:[170,220,50]},{index:1,rgb:[253,231,37]}],inferno:[{index:0,rgb:[0,0,4]},{index:.13,rgb:[31,12,72]},{index:.25,rgb:[85,15,109]},{index:.38,rgb:[136,34,106]},{index:.5,rgb:[186,54,85]},{index:.63,rgb:[227,89,51]},{index:.75,rgb:[249,140,10]},{index:.88,rgb:[249,201,50]},{index:1,rgb:[252,255,164]}],magma:[{index:0,rgb:[0,0,4]},{index:.13,rgb:[28,16,68]},{index:.25,rgb:[79,18,123]},{index:.38,rgb:[129,37,129]},{index:.5,rgb:[181,54,122]},{index:.63,rgb:[229,80,100]},{index:.75,rgb:[251,135,97]},{index:.88,rgb:[254,194,135]},{index:1,rgb:[252,253,191]}],plasma:[{index:0,rgb:[13,8,135]},{index:.13,rgb:[75,3,161]},{index:.25,rgb:[125,3,168]},{index:.38,rgb:[168,34,150]},{index:.5,rgb:[203,70,121]},{index:.63,rgb:[229,107,93]},{index:.75,rgb:[248,148,65]},{index:.88,rgb:[253,195,40]},{index:1,rgb:[240,249,33]}],warm:[{index:0,rgb:[125,0,179]},{index:.13,rgb:[172,0,187]},{index:.25,rgb:[219,0,170]},{index:.38,rgb:[255,0,130]},{index:.5,rgb:[255,63,74]},{index:.63,rgb:[255,123,0]},{index:.75,rgb:[234,176,0]},{index:.88,rgb:[190,228,0]},{index:1,rgb:[147,255,0]}],cool:[{index:0,rgb:[125,0,179]},{index:.13,rgb:[116,0,218]},{index:.25,rgb:[98,74,237]},{index:.38,rgb:[68,146,231]},{index:.5,rgb:[0,204,197]},{index:.63,rgb:[0,247,146]},{index:.75,rgb:[0,255,88]},{index:.88,rgb:[40,255,8]},{index:1,rgb:[147,255,0]}],\"rainbow-soft\":[{index:0,rgb:[125,0,179]},{index:.1,rgb:[199,0,180]},{index:.2,rgb:[255,0,121]},{index:.3,rgb:[255,108,0]},{index:.4,rgb:[222,194,0]},{index:.5,rgb:[150,255,0]},{index:.6,rgb:[0,255,55]},{index:.7,rgb:[0,246,150]},{index:.8,rgb:[50,167,222]},{index:.9,rgb:[103,51,235]},{index:1,rgb:[124,0,186]}],bathymetry:[{index:0,rgb:[40,26,44]},{index:.13,rgb:[59,49,90]},{index:.25,rgb:[64,76,139]},{index:.38,rgb:[63,110,151]},{index:.5,rgb:[72,142,158]},{index:.63,rgb:[85,174,163]},{index:.75,rgb:[120,206,163]},{index:.88,rgb:[187,230,172]},{index:1,rgb:[253,254,204]}],cdom:[{index:0,rgb:[47,15,62]},{index:.13,rgb:[87,23,86]},{index:.25,rgb:[130,28,99]},{index:.38,rgb:[171,41,96]},{index:.5,rgb:[206,67,86]},{index:.63,rgb:[230,106,84]},{index:.75,rgb:[242,149,103]},{index:.88,rgb:[249,193,135]},{index:1,rgb:[254,237,176]}],chlorophyll:[{index:0,rgb:[18,36,20]},{index:.13,rgb:[25,63,41]},{index:.25,rgb:[24,91,59]},{index:.38,rgb:[13,119,72]},{index:.5,rgb:[18,148,80]},{index:.63,rgb:[80,173,89]},{index:.75,rgb:[132,196,122]},{index:.88,rgb:[175,221,162]},{index:1,rgb:[215,249,208]}],density:[{index:0,rgb:[54,14,36]},{index:.13,rgb:[89,23,80]},{index:.25,rgb:[110,45,132]},{index:.38,rgb:[120,77,178]},{index:.5,rgb:[120,113,213]},{index:.63,rgb:[115,151,228]},{index:.75,rgb:[134,185,227]},{index:.88,rgb:[177,214,227]},{index:1,rgb:[230,241,241]}],\"freesurface-blue\":[{index:0,rgb:[30,4,110]},{index:.13,rgb:[47,14,176]},{index:.25,rgb:[41,45,236]},{index:.38,rgb:[25,99,212]},{index:.5,rgb:[68,131,200]},{index:.63,rgb:[114,156,197]},{index:.75,rgb:[157,181,203]},{index:.88,rgb:[200,208,216]},{index:1,rgb:[241,237,236]}],\"freesurface-red\":[{index:0,rgb:[60,9,18]},{index:.13,rgb:[100,17,27]},{index:.25,rgb:[142,20,29]},{index:.38,rgb:[177,43,27]},{index:.5,rgb:[192,87,63]},{index:.63,rgb:[205,125,105]},{index:.75,rgb:[216,162,148]},{index:.88,rgb:[227,199,193]},{index:1,rgb:[241,237,236]}],oxygen:[{index:0,rgb:[64,5,5]},{index:.13,rgb:[106,6,15]},{index:.25,rgb:[144,26,7]},{index:.38,rgb:[168,64,3]},{index:.5,rgb:[188,100,4]},{index:.63,rgb:[206,136,11]},{index:.75,rgb:[220,174,25]},{index:.88,rgb:[231,215,44]},{index:1,rgb:[248,254,105]}],par:[{index:0,rgb:[51,20,24]},{index:.13,rgb:[90,32,35]},{index:.25,rgb:[129,44,34]},{index:.38,rgb:[159,68,25]},{index:.5,rgb:[182,99,19]},{index:.63,rgb:[199,134,22]},{index:.75,rgb:[212,171,35]},{index:.88,rgb:[221,210,54]},{index:1,rgb:[225,253,75]}],phase:[{index:0,rgb:[145,105,18]},{index:.13,rgb:[184,71,38]},{index:.25,rgb:[186,58,115]},{index:.38,rgb:[160,71,185]},{index:.5,rgb:[110,97,218]},{index:.63,rgb:[50,123,164]},{index:.75,rgb:[31,131,110]},{index:.88,rgb:[77,129,34]},{index:1,rgb:[145,105,18]}],salinity:[{index:0,rgb:[42,24,108]},{index:.13,rgb:[33,50,162]},{index:.25,rgb:[15,90,145]},{index:.38,rgb:[40,118,137]},{index:.5,rgb:[59,146,135]},{index:.63,rgb:[79,175,126]},{index:.75,rgb:[120,203,104]},{index:.88,rgb:[193,221,100]},{index:1,rgb:[253,239,154]}],temperature:[{index:0,rgb:[4,35,51]},{index:.13,rgb:[23,51,122]},{index:.25,rgb:[85,59,157]},{index:.38,rgb:[129,79,143]},{index:.5,rgb:[175,95,130]},{index:.63,rgb:[222,112,101]},{index:.75,rgb:[249,146,66]},{index:.88,rgb:[249,196,65]},{index:1,rgb:[232,250,91]}],turbidity:[{index:0,rgb:[34,31,27]},{index:.13,rgb:[65,50,41]},{index:.25,rgb:[98,69,52]},{index:.38,rgb:[131,89,57]},{index:.5,rgb:[161,112,59]},{index:.63,rgb:[185,140,66]},{index:.75,rgb:[202,174,88]},{index:.88,rgb:[216,209,126]},{index:1,rgb:[233,246,171]}],\"velocity-blue\":[{index:0,rgb:[17,32,64]},{index:.13,rgb:[35,52,116]},{index:.25,rgb:[29,81,156]},{index:.38,rgb:[31,113,162]},{index:.5,rgb:[50,144,169]},{index:.63,rgb:[87,173,176]},{index:.75,rgb:[149,196,189]},{index:.88,rgb:[203,221,211]},{index:1,rgb:[254,251,230]}],\"velocity-green\":[{index:0,rgb:[23,35,19]},{index:.13,rgb:[24,64,38]},{index:.25,rgb:[11,95,45]},{index:.38,rgb:[39,123,35]},{index:.5,rgb:[95,146,12]},{index:.63,rgb:[152,165,18]},{index:.75,rgb:[201,186,69]},{index:.88,rgb:[233,216,137]},{index:1,rgb:[255,253,205]}],cubehelix:[{index:0,rgb:[0,0,0]},{index:.07,rgb:[22,5,59]},{index:.13,rgb:[60,4,105]},{index:.2,rgb:[109,1,135]},{index:.27,rgb:[161,0,147]},{index:.33,rgb:[210,2,142]},{index:.4,rgb:[251,11,123]},{index:.47,rgb:[255,29,97]},{index:.53,rgb:[255,54,69]},{index:.6,rgb:[255,85,46]},{index:.67,rgb:[255,120,34]},{index:.73,rgb:[255,157,37]},{index:.8,rgb:[241,191,57]},{index:.87,rgb:[224,220,93]},{index:.93,rgb:[218,241,142]},{index:1,rgb:[227,253,198]}]}},{}],127:[function(t,e,r){\"use strict\";var n=t(\"./colorScale\"),a=t(\"lerp\");function i(t){return[t[0]/255,t[1]/255,t[2]/255,t[3]]}function o(t){for(var e,r=\"#\",n=0;n<3;++n)r+=(\"00\"+(e=(e=t[n]).toString(16))).substr(e.length);return r}function s(t){return\"rgba(\"+t.join(\",\")+\")\"}e.exports=function(t){var e,r,l,c,u,h,f,p,d,g;t||(t={});p=(t.nshades||72)-1,f=t.format||\"hex\",(h=t.colormap)||(h=\"jet\");if(\"string\"==typeof h){if(h=h.toLowerCase(),!n[h])throw Error(h+\" not a supported colorscale\");u=n[h]}else{if(!Array.isArray(h))throw Error(\"unsupported colormap option\",h);u=h.slice()}if(u.length>p+1)throw new Error(h+\" map requires nshades to be at least size \"+u.length);d=Array.isArray(t.alpha)?2!==t.alpha.length?[1,1]:t.alpha.slice():\"number\"==typeof t.alpha?[t.alpha,t.alpha]:[1,1];e=u.map(function(t){return Math.round(t.index*p)}),d[0]=Math.min(Math.max(d[0],0),1),d[1]=Math.min(Math.max(d[1],0),1);var v=u.map(function(t,e){var r=u[e].index,n=u[e].rgb.slice();return 4===n.length&&n[3]>=0&&n[3]<=1?n:(n[3]=d[0]+(d[1]-d[0])*r,n)}),m=[];for(g=0;g<e.length-1;++g){c=e[g+1]-e[g],r=v[g],l=v[g+1];for(var y=0;y<c;y++){var x=y/c;m.push([Math.round(a(r[0],l[0],x)),Math.round(a(r[1],l[1],x)),Math.round(a(r[2],l[2],x)),a(r[3],l[3],x)])}}m.push(u[u.length-1].rgb.concat(d[1])),\"hex\"===f?m=m.map(o):\"rgbaString\"===f?m=m.map(s):\"float\"===f&&(m=m.map(i));return m}},{\"./colorScale\":126,lerp:426}],128:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,i){var o=n(e,r,i);if(0===o){var s=a(n(t,e,r)),c=a(n(t,e,i));if(s===c){if(0===s){var u=l(t,e,r),h=l(t,e,i);return u===h?0:u?1:-1}return 0}return 0===c?s>0?-1:l(t,e,i)?-1:1:0===s?c>0?1:l(t,e,r)?1:-1:a(c-s)}var f=n(t,e,r);if(f>0)return o>0&&n(t,e,i)>0?1:-1;if(f<0)return o>0||n(t,e,i)>0?1:-1;var p=n(t,e,i);return p>0?1:l(t,e,r)?1:-1};var n=t(\"robust-orientation\"),a=t(\"signum\"),i=t(\"two-sum\"),o=t(\"robust-product\"),s=t(\"robust-sum\");function l(t,e,r){var n=i(t[0],-e[0]),a=i(t[1],-e[1]),l=i(r[0],-e[0]),c=i(r[1],-e[1]),u=s(o(n,l),o(a,c));return u[u.length-1]>=0}},{\"robust-orientation\":511,\"robust-product\":512,\"robust-sum\":516,signum:517,\"two-sum\":545}],129:[function(t,e,r){e.exports=function(t,e){var r=t.length,i=t.length-e.length;if(i)return i;switch(r){case 0:return 0;case 1:return t[0]-e[0];case 2:return t[0]+t[1]-e[0]-e[1]||n(t[0],t[1])-n(e[0],e[1]);case 3:var o=t[0]+t[1],s=e[0]+e[1];if(i=o+t[2]-(s+e[2]))return i;var l=n(t[0],t[1]),c=n(e[0],e[1]);return n(l,t[2])-n(c,e[2])||n(l+t[2],o)-n(c+e[2],s);case 4:var u=t[0],h=t[1],f=t[2],p=t[3],d=e[0],g=e[1],v=e[2],m=e[3];return u+h+f+p-(d+g+v+m)||n(u,h,f,p)-n(d,g,v,m,d)||n(u+h,u+f,u+p,h+f,h+p,f+p)-n(d+g,d+v,d+m,g+v,g+m,v+m)||n(u+h+f,u+h+p,u+f+p,h+f+p)-n(d+g+v,d+g+m,d+v+m,g+v+m);default:for(var y=t.slice().sort(a),x=e.slice().sort(a),b=0;b<r;++b)if(i=y[b]-x[b])return i;return 0}};var n=Math.min;function a(t,e){return t-e}},{}],130:[function(t,e,r){\"use strict\";var n=t(\"compare-cell\"),a=t(\"cell-orientation\");e.exports=function(t,e){return n(t,e)||a(t)-a(e)}},{\"cell-orientation\":113,\"compare-cell\":129}],131:[function(t,e,r){\"use strict\";var n=t(\"./lib/ch1d\"),a=t(\"./lib/ch2d\"),i=t(\"./lib/chnd\");e.exports=function(t){var e=t.length;if(0===e)return[];if(1===e)return[[0]];var r=t[0].length;if(0===r)return[];if(1===r)return n(t);if(2===r)return a(t);return i(t,r)}},{\"./lib/ch1d\":132,\"./lib/ch2d\":133,\"./lib/chnd\":134}],132:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=0,r=0,n=1;n<t.length;++n)t[n][0]<t[e][0]&&(e=n),t[n][0]>t[r][0]&&(r=n);return e<r?[[e],[r]]:e>r?[[r],[e]]:[[e]]}},{}],133:[function(t,e,r){\"use strict\";e.exports=function(t){var e=n(t),r=e.length;if(r<=2)return[];for(var a=new Array(r),i=e[r-1],o=0;o<r;++o){var s=e[o];a[o]=[i,s],i=s}return a};var n=t(\"monotone-convex-hull-2d\")},{\"monotone-convex-hull-2d\":435}],134:[function(t,e,r){\"use strict\";e.exports=function(t,e){try{return n(t,!0)}catch(s){var r=a(t);if(r.length<=e)return[];var i=function(t,e){for(var r=t.length,n=new Array(r),a=0;a<e.length;++a)n[a]=t[e[a]];for(var i=e.length,a=0;a<r;++a)e.indexOf(a)<0&&(n[i++]=t[a]);return n}(t,r),o=n(i,!0);return function(t,e){for(var r=t.length,n=e.length,a=0;a<r;++a)for(var i=t[a],o=0;o<i.length;++o){var s=i[o];if(s<n)i[o]=e[s];else{s-=n;for(var l=0;l<n;++l)s>=e[l]&&(s+=1);i[o]=s}}return t}(o,r)}};var n=t(\"incremental-convex-hull\"),a=t(\"affine-hull\")},{\"affine-hull\":63,\"incremental-convex-hull\":414}],135:[function(t,e,r){e.exports={AFG:\"afghan\",ALA:\"\\\\b\\\\wland\",ALB:\"albania\",DZA:\"algeria\",ASM:\"^(?=.*americ).*samoa\",AND:\"andorra\",AGO:\"angola\",AIA:\"anguill?a\",ATA:\"antarctica\",ATG:\"antigua\",ARG:\"argentin\",ARM:\"armenia\",ABW:\"^(?!.*bonaire).*\\\\baruba\",AUS:\"australia\",AUT:\"^(?!.*hungary).*austria|\\\\baustri.*\\\\bemp\",AZE:\"azerbaijan\",BHS:\"bahamas\",BHR:\"bahrain\",BGD:\"bangladesh|^(?=.*east).*paki?stan\",BRB:\"barbados\",BLR:\"belarus|byelo\",BEL:\"^(?!.*luxem).*belgium\",BLZ:\"belize|^(?=.*british).*honduras\",BEN:\"benin|dahome\",BMU:\"bermuda\",BTN:\"bhutan\",BOL:\"bolivia\",BES:\"^(?=.*bonaire).*eustatius|^(?=.*carib).*netherlands|\\\\bbes.?islands\",BIH:\"herzegovina|bosnia\",BWA:\"botswana|bechuana\",BVT:\"bouvet\",BRA:\"brazil\",IOT:\"british.?indian.?ocean\",BRN:\"brunei\",BGR:\"bulgaria\",BFA:\"burkina|\\\\bfaso|upper.?volta\",BDI:\"burundi\",CPV:\"verde\",KHM:\"cambodia|kampuchea|khmer\",CMR:\"cameroon\",CAN:\"canada\",CYM:\"cayman\",CAF:\"\\\\bcentral.african.republic\",TCD:\"\\\\bchad\",CHL:\"\\\\bchile\",CHN:\"^(?!.*\\\\bmac)(?!.*\\\\bhong)(?!.*\\\\btai)(?!.*\\\\brep).*china|^(?=.*peo)(?=.*rep).*china\",CXR:\"christmas\",CCK:\"\\\\bcocos|keeling\",COL:\"colombia\",COM:\"comoro\",COG:\"^(?!.*\\\\bdem)(?!.*\\\\bd[\\\\.]?r)(?!.*kinshasa)(?!.*zaire)(?!.*belg)(?!.*l.opoldville)(?!.*free).*\\\\bcongo\",COK:\"\\\\bcook\",CRI:\"costa.?rica\",CIV:\"ivoire|ivory\",HRV:\"croatia\",CUB:\"\\\\bcuba\",CUW:\"^(?!.*bonaire).*\\\\bcura(c|\\xe7)ao\",CYP:\"cyprus\",CSK:\"czechoslovakia\",CZE:\"^(?=.*rep).*czech|czechia|bohemia\",COD:\"\\\\bdem.*congo|congo.*\\\\bdem|congo.*\\\\bd[\\\\.]?r|\\\\bd[\\\\.]?r.*congo|belgian.?congo|congo.?free.?state|kinshasa|zaire|l.opoldville|drc|droc|rdc\",DNK:\"denmark\",DJI:\"djibouti\",DMA:\"dominica(?!n)\",DOM:\"dominican.rep\",ECU:\"ecuador\",EGY:\"egypt\",SLV:\"el.?salvador\",GNQ:\"guine.*eq|eq.*guine|^(?=.*span).*guinea\",ERI:\"eritrea\",EST:\"estonia\",ETH:\"ethiopia|abyssinia\",FLK:\"falkland|malvinas\",FRO:\"faroe|faeroe\",FJI:\"fiji\",FIN:\"finland\",FRA:\"^(?!.*\\\\bdep)(?!.*martinique).*france|french.?republic|\\\\bgaul\",GUF:\"^(?=.*french).*guiana\",PYF:\"french.?polynesia|tahiti\",ATF:\"french.?southern\",GAB:\"gabon\",GMB:\"gambia\",GEO:\"^(?!.*south).*georgia\",DDR:\"german.?democratic.?republic|democratic.?republic.*germany|east.germany\",DEU:\"^(?!.*east).*germany|^(?=.*\\\\bfed.*\\\\brep).*german\",GHA:\"ghana|gold.?coast\",GIB:\"gibraltar\",GRC:\"greece|hellenic|hellas\",GRL:\"greenland\",GRD:\"grenada\",GLP:\"guadeloupe\",GUM:\"\\\\bguam\",GTM:\"guatemala\",GGY:\"guernsey\",GIN:\"^(?!.*eq)(?!.*span)(?!.*bissau)(?!.*portu)(?!.*new).*guinea\",GNB:\"bissau|^(?=.*portu).*guinea\",GUY:\"guyana|british.?guiana\",HTI:\"haiti\",HMD:\"heard.*mcdonald\",VAT:\"holy.?see|vatican|papal.?st\",HND:\"^(?!.*brit).*honduras\",HKG:\"hong.?kong\",HUN:\"^(?!.*austr).*hungary\",ISL:\"iceland\",IND:\"india(?!.*ocea)\",IDN:\"indonesia\",IRN:\"\\\\biran|persia\",IRQ:\"\\\\biraq|mesopotamia\",IRL:\"(^ireland)|(^republic.*ireland)\",IMN:\"^(?=.*isle).*\\\\bman\",ISR:\"israel\",ITA:\"italy\",JAM:\"jamaica\",JPN:\"japan\",JEY:\"jersey\",JOR:\"jordan\",KAZ:\"kazak\",KEN:\"kenya|british.?east.?africa|east.?africa.?prot\",KIR:\"kiribati\",PRK:\"^(?=.*democrat|people|north|d.*p.*.r).*\\\\bkorea|dprk|korea.*(d.*p.*r)\",KWT:\"kuwait\",KGZ:\"kyrgyz|kirghiz\",LAO:\"\\\\blaos?\\\\b\",LVA:\"latvia\",LBN:\"lebanon\",LSO:\"lesotho|basuto\",LBR:\"liberia\",LBY:\"libya\",LIE:\"liechtenstein\",LTU:\"lithuania\",LUX:\"^(?!.*belg).*luxem\",MAC:\"maca(o|u)\",MDG:\"madagascar|malagasy\",MWI:\"malawi|nyasa\",MYS:\"malaysia\",MDV:\"maldive\",MLI:\"\\\\bmali\\\\b\",MLT:\"\\\\bmalta\",MHL:\"marshall\",MTQ:\"martinique\",MRT:\"mauritania\",MUS:\"mauritius\",MYT:\"\\\\bmayotte\",MEX:\"\\\\bmexic\",FSM:\"fed.*micronesia|micronesia.*fed\",MCO:\"monaco\",MNG:\"mongolia\",MNE:\"^(?!.*serbia).*montenegro\",MSR:\"montserrat\",MAR:\"morocco|\\\\bmaroc\",MOZ:\"mozambique\",MMR:\"myanmar|burma\",NAM:\"namibia\",NRU:\"nauru\",NPL:\"nepal\",NLD:\"^(?!.*\\\\bant)(?!.*\\\\bcarib).*netherlands\",ANT:\"^(?=.*\\\\bant).*(nether|dutch)\",NCL:\"new.?caledonia\",NZL:\"new.?zealand\",NIC:\"nicaragua\",NER:\"\\\\bniger(?!ia)\",NGA:\"nigeria\",NIU:\"niue\",NFK:\"norfolk\",MNP:\"mariana\",NOR:\"norway\",OMN:\"\\\\boman|trucial\",PAK:\"^(?!.*east).*paki?stan\",PLW:\"palau\",PSE:\"palestin|\\\\bgaza|west.?bank\",PAN:\"panama\",PNG:\"papua|new.?guinea\",PRY:\"paraguay\",PER:\"peru\",PHL:\"philippines\",PCN:\"pitcairn\",POL:\"poland\",PRT:\"portugal\",PRI:\"puerto.?rico\",QAT:\"qatar\",KOR:\"^(?!.*d.*p.*r)(?!.*democrat)(?!.*people)(?!.*north).*\\\\bkorea(?!.*d.*p.*r)\",MDA:\"moldov|b(a|e)ssarabia\",REU:\"r(e|\\xe9)union\",ROU:\"r(o|u|ou)mania\",RUS:\"\\\\brussia|soviet.?union|u\\\\.?s\\\\.?s\\\\.?r|socialist.?republics\",RWA:\"rwanda\",BLM:\"barth(e|\\xe9)lemy\",SHN:\"helena\",KNA:\"kitts|\\\\bnevis\",LCA:\"\\\\blucia\",MAF:\"^(?=.*collectivity).*martin|^(?=.*france).*martin(?!ique)|^(?=.*french).*martin(?!ique)\",SPM:\"miquelon\",VCT:\"vincent\",WSM:\"^(?!.*amer).*samoa\",SMR:\"san.?marino\",STP:\"\\\\bs(a|\\xe3)o.?tom(e|\\xe9)\",SAU:\"\\\\bsa\\\\w*.?arabia\",SEN:\"senegal\",SRB:\"^(?!.*monte).*serbia\",SYC:\"seychell\",SLE:\"sierra\",SGP:\"singapore\",SXM:\"^(?!.*martin)(?!.*saba).*maarten\",SVK:\"^(?!.*cze).*slovak\",SVN:\"slovenia\",SLB:\"solomon\",SOM:\"somali\",ZAF:\"south.africa|s\\\\\\\\..?africa\",SGS:\"south.?georgia|sandwich\",SSD:\"\\\\bs\\\\w*.?sudan\",ESP:\"spain\",LKA:\"sri.?lanka|ceylon\",SDN:\"^(?!.*\\\\bs(?!u)).*sudan\",SUR:\"surinam|dutch.?guiana\",SJM:\"svalbard\",SWZ:\"swaziland\",SWE:\"sweden\",CHE:\"switz|swiss\",SYR:\"syria\",TWN:\"taiwan|taipei|formosa|^(?!.*peo)(?=.*rep).*china\",TJK:\"tajik\",THA:\"thailand|\\\\bsiam\",MKD:\"macedonia|fyrom\",TLS:\"^(?=.*leste).*timor|^(?=.*east).*timor\",TGO:\"togo\",TKL:\"tokelau\",TON:\"tonga\",TTO:\"trinidad|tobago\",TUN:\"tunisia\",TUR:\"turkey\",TKM:\"turkmen\",TCA:\"turks\",TUV:\"tuvalu\",UGA:\"uganda\",UKR:\"ukrain\",ARE:\"emirates|^u\\\\.?a\\\\.?e\\\\.?$|united.?arab.?em\",GBR:\"united.?kingdom|britain|^u\\\\.?k\\\\.?$\",TZA:\"tanzania\",USA:\"united.?states\\\\b(?!.*islands)|\\\\bu\\\\.?s\\\\.?a\\\\.?\\\\b|^\\\\s*u\\\\.?s\\\\.?\\\\b(?!.*islands)\",UMI:\"minor.?outlying.?is\",URY:\"uruguay\",UZB:\"uzbek\",VUT:\"vanuatu|new.?hebrides\",VEN:\"venezuela\",VNM:\"^(?!.*republic).*viet.?nam|^(?=.*socialist).*viet.?nam\",VGB:\"^(?=.*\\\\bu\\\\.?\\\\s?k).*virgin|^(?=.*brit).*virgin|^(?=.*kingdom).*virgin\",VIR:\"^(?=.*\\\\bu\\\\.?\\\\s?s).*virgin|^(?=.*states).*virgin\",WLF:\"futuna|wallis\",ESH:\"western.sahara\",YEM:\"^(?!.*arab)(?!.*north)(?!.*sana)(?!.*peo)(?!.*dem)(?!.*south)(?!.*aden)(?!.*\\\\bp\\\\.?d\\\\.?r).*yemen\",YMD:\"^(?=.*peo).*yemen|^(?!.*rep)(?=.*dem).*yemen|^(?=.*south).*yemen|^(?=.*aden).*yemen|^(?=.*\\\\bp\\\\.?d\\\\.?r).*yemen\",YUG:\"yugoslavia\",ZMB:\"zambia|northern.?rhodesia\",EAZ:\"zanzibar\",ZWE:\"zimbabwe|^(?!.*northern).*rhodesia\"}},{}],136:[function(t,e,r){e.exports=[\"xx-small\",\"x-small\",\"small\",\"medium\",\"large\",\"x-large\",\"xx-large\",\"larger\",\"smaller\"]},{}],137:[function(t,e,r){e.exports=[\"normal\",\"condensed\",\"semi-condensed\",\"extra-condensed\",\"ultra-condensed\",\"expanded\",\"semi-expanded\",\"extra-expanded\",\"ultra-expanded\"]},{}],138:[function(t,e,r){e.exports=[\"normal\",\"italic\",\"oblique\"]},{}],139:[function(t,e,r){e.exports=[\"normal\",\"bold\",\"bolder\",\"lighter\",\"100\",\"200\",\"300\",\"400\",\"500\",\"600\",\"700\",\"800\",\"900\"]},{}],140:[function(t,e,r){\"use strict\";e.exports={parse:t(\"./parse\"),stringify:t(\"./stringify\")}},{\"./parse\":142,\"./stringify\":143}],141:[function(t,e,r){\"use strict\";var n=t(\"css-font-size-keywords\");e.exports={isSize:function(t){return/^[\\d\\.]/.test(t)||-1!==t.indexOf(\"/\")||-1!==n.indexOf(t)}}},{\"css-font-size-keywords\":136}],142:[function(t,e,r){\"use strict\";var n=t(\"unquote\"),a=t(\"css-global-keywords\"),i=t(\"css-system-font-keywords\"),o=t(\"css-font-weight-keywords\"),s=t(\"css-font-style-keywords\"),l=t(\"css-font-stretch-keywords\"),c=t(\"string-split-by\"),u=t(\"./lib/util\").isSize;e.exports=f;var h=f.cache={};function f(t){if(\"string\"!=typeof t)throw new Error(\"Font argument must be a string.\");if(h[t])return h[t];if(\"\"===t)throw new Error(\"Cannot parse an empty string.\");if(-1!==i.indexOf(t))return h[t]={system:t};for(var e,r={style:\"normal\",variant:\"normal\",weight:\"normal\",stretch:\"normal\",lineHeight:\"normal\",size:\"1rem\",family:[\"serif\"]},f=c(t,/\\s+/);e=f.shift();){if(-1!==a.indexOf(e))return[\"style\",\"variant\",\"weight\",\"stretch\"].forEach(function(t){r[t]=e}),h[t]=r;if(-1===s.indexOf(e))if(\"normal\"!==e&&\"small-caps\"!==e)if(-1===l.indexOf(e)){if(-1===o.indexOf(e)){if(u(e)){var d=c(e,\"/\");if(r.size=d[0],null!=d[1]?r.lineHeight=p(d[1]):\"/\"===f[0]&&(f.shift(),r.lineHeight=p(f.shift())),!f.length)throw new Error(\"Missing required font-family.\");return r.family=c(f.join(\" \"),/\\s*,\\s*/).map(n),h[t]=r}throw new Error(\"Unknown or unsupported font token: \"+e)}r.weight=e}else r.stretch=e;else r.variant=e;else r.style=e}throw new Error(\"Missing required font-size.\")}function p(t){var e=parseFloat(t);return e.toString()===t?e:t}},{\"./lib/util\":141,\"css-font-stretch-keywords\":137,\"css-font-style-keywords\":138,\"css-font-weight-keywords\":139,\"css-global-keywords\":144,\"css-system-font-keywords\":145,\"string-split-by\":530,unquote:549}],143:[function(t,e,r){\"use strict\";var n=t(\"pick-by-alias\"),a=t(\"./lib/util\").isSize,i=g(t(\"css-global-keywords\")),o=g(t(\"css-system-font-keywords\")),s=g(t(\"css-font-weight-keywords\")),l=g(t(\"css-font-style-keywords\")),c=g(t(\"css-font-stretch-keywords\")),u={normal:1,\"small-caps\":1},h={serif:1,\"sans-serif\":1,monospace:1,cursive:1,fantasy:1,\"system-ui\":1},f=\"1rem\",p=\"serif\";function d(t,e){if(t&&!e[t]&&!i[t])throw Error(\"Unknown keyword `\"+t+\"`\");return t}function g(t){for(var e={},r=0;r<t.length;r++)e[t[r]]=1;return e}e.exports=function(t){if((t=n(t,{style:\"style fontstyle fontStyle font-style slope distinction\",variant:\"variant font-variant fontVariant fontvariant var capitalization\",weight:\"weight w font-weight fontWeight fontweight\",stretch:\"stretch font-stretch fontStretch fontstretch width\",size:\"size s font-size fontSize fontsize height em emSize\",lineHeight:\"lh line-height lineHeight lineheight leading\",family:\"font family fontFamily font-family fontfamily type typeface face\",system:\"system reserved default global\"})).system)return t.system&&d(t.system,o),t.system;if(d(t.style,l),d(t.variant,u),d(t.weight,s),d(t.stretch,c),null==t.size&&(t.size=f),\"number\"==typeof t.size&&(t.size+=\"px\"),!a)throw Error(\"Bad size value `\"+t.size+\"`\");t.family||(t.family=p),Array.isArray(t.family)&&(t.family.length||(t.family=[p]),t.family=t.family.map(function(t){return h[t]?t:'\"'+t+'\"'}).join(\", \"));var e=[];return e.push(t.style),t.variant!==t.style&&e.push(t.variant),t.weight!==t.variant&&t.weight!==t.style&&e.push(t.weight),t.stretch!==t.weight&&t.stretch!==t.variant&&t.stretch!==t.style&&e.push(t.stretch),e.push(t.size+(null==t.lineHeight||\"normal\"===t.lineHeight||t.lineHeight+\"\"==\"1\"?\"\":\"/\"+t.lineHeight)),e.push(t.family),e.filter(Boolean).join(\" \")}},{\"./lib/util\":141,\"css-font-stretch-keywords\":137,\"css-font-style-keywords\":138,\"css-font-weight-keywords\":139,\"css-global-keywords\":144,\"css-system-font-keywords\":145,\"pick-by-alias\":466}],144:[function(t,e,r){e.exports=[\"inherit\",\"initial\",\"unset\"]},{}],145:[function(t,e,r){e.exports=[\"caption\",\"icon\",\"menu\",\"message-box\",\"small-caption\",\"status-bar\"]},{}],146:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,a,i){var o=a-1,s=a*a,l=o*o,c=(1+2*a)*l,u=a*l,h=s*(3-2*a),f=s*o;if(t.length){i||(i=new Array(t.length));for(var p=t.length-1;p>=0;--p)i[p]=c*t[p]+u*e[p]+h*r[p]+f*n[p];return i}return c*t+u*e+h*r+f*n},e.exports.derivative=function(t,e,r,n,a,i){var o=6*a*a-6*a,s=3*a*a-4*a+1,l=-6*a*a+6*a,c=3*a*a-2*a;if(t.length){i||(i=new Array(t.length));for(var u=t.length-1;u>=0;--u)i[u]=o*t[u]+s*e[u]+l*r[u]+c*n[u];return i}return o*t+s*e+l*r[u]+c*n}},{}],147:[function(t,e,r){\"use strict\";var n=t(\"./lib/thunk.js\");function a(){this.argTypes=[],this.shimArgs=[],this.arrayArgs=[],this.arrayBlockIndices=[],this.scalarArgs=[],this.offsetArgs=[],this.offsetArgIndex=[],this.indexArgs=[],this.shapeArgs=[],this.funcName=\"\",this.pre=null,this.body=null,this.post=null,this.debug=!1}e.exports=function(t){var e=new a;e.pre=t.pre,e.body=t.body,e.post=t.post;var r=t.args.slice(0);e.argTypes=r;for(var i=0;i<r.length;++i){var o=r[i];if(\"array\"===o||\"object\"==typeof o&&o.blockIndices){if(e.argTypes[i]=\"array\",e.arrayArgs.push(i),e.arrayBlockIndices.push(o.blockIndices?o.blockIndices:0),e.shimArgs.push(\"array\"+i),i<e.pre.args.length&&e.pre.args[i].count>0)throw new Error(\"cwise: pre() block may not reference array args\");if(i<e.post.args.length&&e.post.args[i].count>0)throw new Error(\"cwise: post() block may not reference array args\")}else if(\"scalar\"===o)e.scalarArgs.push(i),e.shimArgs.push(\"scalar\"+i);else if(\"index\"===o){if(e.indexArgs.push(i),i<e.pre.args.length&&e.pre.args[i].count>0)throw new Error(\"cwise: pre() block may not reference array index\");if(i<e.body.args.length&&e.body.args[i].lvalue)throw new Error(\"cwise: body() block may not write to array index\");if(i<e.post.args.length&&e.post.args[i].count>0)throw new Error(\"cwise: post() block may not reference array index\")}else if(\"shape\"===o){if(e.shapeArgs.push(i),i<e.pre.args.length&&e.pre.args[i].lvalue)throw new Error(\"cwise: pre() block may not write to array shape\");if(i<e.body.args.length&&e.body.args[i].lvalue)throw new Error(\"cwise: body() block may not write to array shape\");if(i<e.post.args.length&&e.post.args[i].lvalue)throw new Error(\"cwise: post() block may not write to array shape\")}else{if(\"object\"!=typeof o||!o.offset)throw new Error(\"cwise: Unknown argument type \"+r[i]);e.argTypes[i]=\"offset\",e.offsetArgs.push({array:o.array,offset:o.offset}),e.offsetArgIndex.push(i)}}if(e.arrayArgs.length<=0)throw new Error(\"cwise: No array arguments specified\");if(e.pre.args.length>r.length)throw new Error(\"cwise: Too many arguments in pre() block\");if(e.body.args.length>r.length)throw new Error(\"cwise: Too many arguments in body() block\");if(e.post.args.length>r.length)throw new Error(\"cwise: Too many arguments in post() block\");return e.debug=!!t.printCode||!!t.debug,e.funcName=t.funcName||\"cwise\",e.blockSize=t.blockSize||64,n(e)}},{\"./lib/thunk.js\":149}],148:[function(t,e,r){\"use strict\";var n=t(\"uniq\");function a(t,e,r){var n,a,i=t.length,o=e.arrayArgs.length,s=e.indexArgs.length>0,l=[],c=[],u=0,h=0;for(n=0;n<i;++n)c.push([\"i\",n,\"=0\"].join(\"\"));for(a=0;a<o;++a)for(n=0;n<i;++n)h=u,u=t[n],0===n?c.push([\"d\",a,\"s\",n,\"=t\",a,\"p\",u].join(\"\")):c.push([\"d\",a,\"s\",n,\"=(t\",a,\"p\",u,\"-s\",h,\"*t\",a,\"p\",h,\")\"].join(\"\"));for(c.length>0&&l.push(\"var \"+c.join(\",\")),n=i-1;n>=0;--n)u=t[n],l.push([\"for(i\",n,\"=0;i\",n,\"<s\",u,\";++i\",n,\"){\"].join(\"\"));for(l.push(r),n=0;n<i;++n){for(h=u,u=t[n],a=0;a<o;++a)l.push([\"p\",a,\"+=d\",a,\"s\",n].join(\"\"));s&&(n>0&&l.push([\"index[\",h,\"]-=s\",h].join(\"\")),l.push([\"++index[\",u,\"]\"].join(\"\"))),l.push(\"}\")}return l.join(\"\\n\")}function i(t,e,r){for(var n=t.body,a=[],i=[],o=0;o<t.args.length;++o){var s=t.args[o];if(!(s.count<=0)){var l=new RegExp(s.name,\"g\"),c=\"\",u=e.arrayArgs.indexOf(o);switch(e.argTypes[o]){case\"offset\":var h=e.offsetArgIndex.indexOf(o);u=e.offsetArgs[h].array,c=\"+q\"+h;case\"array\":c=\"p\"+u+c;var f=\"l\"+o,p=\"a\"+u;if(0===e.arrayBlockIndices[u])1===s.count?\"generic\"===r[u]?s.lvalue?(a.push([\"var \",f,\"=\",p,\".get(\",c,\")\"].join(\"\")),n=n.replace(l,f),i.push([p,\".set(\",c,\",\",f,\")\"].join(\"\"))):n=n.replace(l,[p,\".get(\",c,\")\"].join(\"\")):n=n.replace(l,[p,\"[\",c,\"]\"].join(\"\")):\"generic\"===r[u]?(a.push([\"var \",f,\"=\",p,\".get(\",c,\")\"].join(\"\")),n=n.replace(l,f),s.lvalue&&i.push([p,\".set(\",c,\",\",f,\")\"].join(\"\"))):(a.push([\"var \",f,\"=\",p,\"[\",c,\"]\"].join(\"\")),n=n.replace(l,f),s.lvalue&&i.push([p,\"[\",c,\"]=\",f].join(\"\")));else{for(var d=[s.name],g=[c],v=0;v<Math.abs(e.arrayBlockIndices[u]);v++)d.push(\"\\\\s*\\\\[([^\\\\]]+)\\\\]\"),g.push(\"$\"+(v+1)+\"*t\"+u+\"b\"+v);if(l=new RegExp(d.join(\"\"),\"g\"),c=g.join(\"+\"),\"generic\"===r[u])throw new Error(\"cwise: Generic arrays not supported in combination with blocks!\");n=n.replace(l,[p,\"[\",c,\"]\"].join(\"\"))}break;case\"scalar\":n=n.replace(l,\"Y\"+e.scalarArgs.indexOf(o));break;case\"index\":n=n.replace(l,\"index\");break;case\"shape\":n=n.replace(l,\"shape\")}}}return[a.join(\"\\n\"),n,i.join(\"\\n\")].join(\"\\n\").trim()}e.exports=function(t,e){for(var r=e[1].length-Math.abs(t.arrayBlockIndices[0])|0,o=new Array(t.arrayArgs.length),s=new Array(t.arrayArgs.length),l=0;l<t.arrayArgs.length;++l)s[l]=e[2*l],o[l]=e[2*l+1];var c=[],u=[],h=[],f=[],p=[];for(l=0;l<t.arrayArgs.length;++l){t.arrayBlockIndices[l]<0?(h.push(0),f.push(r),c.push(r),u.push(r+t.arrayBlockIndices[l])):(h.push(t.arrayBlockIndices[l]),f.push(t.arrayBlockIndices[l]+r),c.push(0),u.push(t.arrayBlockIndices[l]));for(var d=[],g=0;g<o[l].length;g++)h[l]<=o[l][g]&&o[l][g]<f[l]&&d.push(o[l][g]-h[l]);p.push(d)}var v=[\"SS\"],m=[\"'use strict'\"],y=[];for(g=0;g<r;++g)y.push([\"s\",g,\"=SS[\",g,\"]\"].join(\"\"));for(l=0;l<t.arrayArgs.length;++l){for(v.push(\"a\"+l),v.push(\"t\"+l),v.push(\"p\"+l),g=0;g<r;++g)y.push([\"t\",l,\"p\",g,\"=t\",l,\"[\",h[l]+g,\"]\"].join(\"\"));for(g=0;g<Math.abs(t.arrayBlockIndices[l]);++g)y.push([\"t\",l,\"b\",g,\"=t\",l,\"[\",c[l]+g,\"]\"].join(\"\"))}for(l=0;l<t.scalarArgs.length;++l)v.push(\"Y\"+l);if(t.shapeArgs.length>0&&y.push(\"shape=SS.slice(0)\"),t.indexArgs.length>0){var x=new Array(r);for(l=0;l<r;++l)x[l]=\"0\";y.push([\"index=[\",x.join(\",\"),\"]\"].join(\"\"))}for(l=0;l<t.offsetArgs.length;++l){var b=t.offsetArgs[l],_=[];for(g=0;g<b.offset.length;++g)0!==b.offset[g]&&(1===b.offset[g]?_.push([\"t\",b.array,\"p\",g].join(\"\")):_.push([b.offset[g],\"*t\",b.array,\"p\",g].join(\"\")));0===_.length?y.push(\"q\"+l+\"=0\"):y.push([\"q\",l,\"=\",_.join(\"+\")].join(\"\"))}var w=n([].concat(t.pre.thisVars).concat(t.body.thisVars).concat(t.post.thisVars));for((y=y.concat(w)).length>0&&m.push(\"var \"+y.join(\",\")),l=0;l<t.arrayArgs.length;++l)m.push(\"p\"+l+\"|=0\");t.pre.body.length>3&&m.push(i(t.pre,t,s));var k=i(t.body,t,s),T=function(t){for(var e=0,r=t[0].length;e<r;){for(var n=1;n<t.length;++n)if(t[n][e]!==t[0][e])return e;++e}return e}(p);T<r?m.push(function(t,e,r,n){for(var i=e.length,o=r.arrayArgs.length,s=r.blockSize,l=r.indexArgs.length>0,c=[],u=0;u<o;++u)c.push([\"var offset\",u,\"=p\",u].join(\"\"));for(u=t;u<i;++u)c.push([\"for(var j\"+u+\"=SS[\",e[u],\"]|0;j\",u,\">0;){\"].join(\"\")),c.push([\"if(j\",u,\"<\",s,\"){\"].join(\"\")),c.push([\"s\",e[u],\"=j\",u].join(\"\")),c.push([\"j\",u,\"=0\"].join(\"\")),c.push([\"}else{s\",e[u],\"=\",s].join(\"\")),c.push([\"j\",u,\"-=\",s,\"}\"].join(\"\")),l&&c.push([\"index[\",e[u],\"]=j\",u].join(\"\"));for(u=0;u<o;++u){for(var h=[\"offset\"+u],f=t;f<i;++f)h.push([\"j\",f,\"*t\",u,\"p\",e[f]].join(\"\"));c.push([\"p\",u,\"=(\",h.join(\"+\"),\")\"].join(\"\"))}for(c.push(a(e,r,n)),u=t;u<i;++u)c.push(\"}\");return c.join(\"\\n\")}(T,p[0],t,k)):m.push(a(p[0],t,k)),t.post.body.length>3&&m.push(i(t.post,t,s)),t.debug&&console.log(\"-----Generated cwise routine for \",e,\":\\n\"+m.join(\"\\n\")+\"\\n----------\");var A=[t.funcName||\"unnamed\",\"_cwise_loop_\",o[0].join(\"s\"),\"m\",T,function(t){for(var e=new Array(t.length),r=!0,n=0;n<t.length;++n){var a=t[n],i=a.match(/\\d+/);i=i?i[0]:\"\",0===a.charAt(0)?e[n]=\"u\"+a.charAt(1)+i:e[n]=a.charAt(0)+i,n>0&&(r=r&&e[n]===e[n-1])}return r?e[0]:e.join(\"\")}(s)].join(\"\");return new Function([\"function \",A,\"(\",v.join(\",\"),\"){\",m.join(\"\\n\"),\"} return \",A].join(\"\"))()}},{uniq:548}],149:[function(t,e,r){\"use strict\";var n=t(\"./compile.js\");e.exports=function(t){var e=[\"'use strict'\",\"var CACHED={}\"],r=[],a=t.funcName+\"_cwise_thunk\";e.push([\"return function \",a,\"(\",t.shimArgs.join(\",\"),\"){\"].join(\"\"));for(var i=[],o=[],s=[[\"array\",t.arrayArgs[0],\".shape.slice(\",Math.max(0,t.arrayBlockIndices[0]),t.arrayBlockIndices[0]<0?\",\"+t.arrayBlockIndices[0]+\")\":\")\"].join(\"\")],l=[],c=[],u=0;u<t.arrayArgs.length;++u){var h=t.arrayArgs[u];r.push([\"t\",h,\"=array\",h,\".dtype,\",\"r\",h,\"=array\",h,\".order\"].join(\"\")),i.push(\"t\"+h),i.push(\"r\"+h),o.push(\"t\"+h),o.push(\"r\"+h+\".join()\"),s.push(\"array\"+h+\".data\"),s.push(\"array\"+h+\".stride\"),s.push(\"array\"+h+\".offset|0\"),u>0&&(l.push(\"array\"+t.arrayArgs[0]+\".shape.length===array\"+h+\".shape.length+\"+(Math.abs(t.arrayBlockIndices[0])-Math.abs(t.arrayBlockIndices[u]))),c.push(\"array\"+t.arrayArgs[0]+\".shape[shapeIndex+\"+Math.max(0,t.arrayBlockIndices[0])+\"]===array\"+h+\".shape[shapeIndex+\"+Math.max(0,t.arrayBlockIndices[u])+\"]\"))}for(t.arrayArgs.length>1&&(e.push(\"if (!(\"+l.join(\" && \")+\")) throw new Error('cwise: Arrays do not all have the same dimensionality!')\"),e.push(\"for(var shapeIndex=array\"+t.arrayArgs[0]+\".shape.length-\"+Math.abs(t.arrayBlockIndices[0])+\"; shapeIndex--\\x3e0;) {\"),e.push(\"if (!(\"+c.join(\" && \")+\")) throw new Error('cwise: Arrays do not all have the same shape!')\"),e.push(\"}\")),u=0;u<t.scalarArgs.length;++u)s.push(\"scalar\"+t.scalarArgs[u]);return r.push([\"type=[\",o.join(\",\"),\"].join()\"].join(\"\")),r.push(\"proc=CACHED[type]\"),e.push(\"var \"+r.join(\",\")),e.push([\"if(!proc){\",\"CACHED[type]=proc=compile([\",i.join(\",\"),\"])}\",\"return proc(\",s.join(\",\"),\")}\"].join(\"\")),t.debug&&console.log(\"-----Generated thunk:\\n\"+e.join(\"\\n\")+\"\\n----------\"),new Function(\"compile\",e.join(\"\\n\"))(n.bind(void 0,t))}},{\"./compile.js\":148}],150:[function(t,e,r){e.exports=t(\"cwise-compiler\")},{\"cwise-compiler\":147}],151:[function(t,e,r){\"use strict\";var n,a=t(\"es5-ext/object/copy\"),i=t(\"es5-ext/object/normalize-options\"),o=t(\"es5-ext/object/valid-callable\"),s=t(\"es5-ext/object/map\"),l=t(\"es5-ext/object/valid-callable\"),c=t(\"es5-ext/object/valid-value\"),u=Function.prototype.bind,h=Object.defineProperty,f=Object.prototype.hasOwnProperty;n=function(t,e,r){var n,i=c(e)&&l(e.value);return delete(n=a(e)).writable,delete n.value,n.get=function(){return!r.overwriteDefinition&&f.call(this,t)?i:(e.value=u.call(i,r.resolveContext?r.resolveContext(this):this),h(this,t,e),this[t])},n},e.exports=function(t){var e=i(arguments[1]);return null!=e.resolveContext&&o(e.resolveContext),s(t,function(t,r){return n(r,t,e)})}},{\"es5-ext/object/copy\":190,\"es5-ext/object/map\":199,\"es5-ext/object/normalize-options\":200,\"es5-ext/object/valid-callable\":204,\"es5-ext/object/valid-value\":206}],152:[function(t,e,r){\"use strict\";var n=t(\"es5-ext/object/assign\"),a=t(\"es5-ext/object/normalize-options\"),i=t(\"es5-ext/object/is-callable\"),o=t(\"es5-ext/string/#/contains\");(e.exports=function(t,e){var r,i,s,l,c;return arguments.length<2||\"string\"!=typeof t?(l=e,e=t,t=null):l=arguments[2],null==t?(r=s=!0,i=!1):(r=o.call(t,\"c\"),i=o.call(t,\"e\"),s=o.call(t,\"w\")),c={value:e,configurable:r,enumerable:i,writable:s},l?n(a(l),c):c}).gs=function(t,e,r){var s,l,c,u;return\"string\"!=typeof t?(c=r,r=e,e=t,t=null):c=arguments[3],null==e?e=void 0:i(e)?null==r?r=void 0:i(r)||(c=r,r=void 0):(c=e,e=r=void 0),null==t?(s=!0,l=!1):(s=o.call(t,\"c\"),l=o.call(t,\"e\")),u={get:e,set:r,configurable:s,enumerable:l},c?n(a(c),u):u}},{\"es5-ext/object/assign\":187,\"es5-ext/object/is-callable\":193,\"es5-ext/object/normalize-options\":200,\"es5-ext/string/#/contains\":207}],153:[function(t,e,r){var n;n=this,function(t){\"use strict\";function e(t,e){return t<e?-1:t>e?1:t>=e?0:NaN}function r(t){var r;return 1===t.length&&(r=t,t=function(t,n){return e(r(t),n)}),{left:function(e,r,n,a){for(null==n&&(n=0),null==a&&(a=e.length);n<a;){var i=n+a>>>1;t(e[i],r)<0?n=i+1:a=i}return n},right:function(e,r,n,a){for(null==n&&(n=0),null==a&&(a=e.length);n<a;){var i=n+a>>>1;t(e[i],r)>0?a=i:n=i+1}return n}}}var n=r(e),a=n.right,i=n.left;function o(t,e){return[t,e]}function s(t){return null===t?NaN:+t}function l(t,e){var r,n,a=t.length,i=0,o=-1,l=0,c=0;if(null==e)for(;++o<a;)isNaN(r=s(t[o]))||(c+=(n=r-l)*(r-(l+=n/++i)));else for(;++o<a;)isNaN(r=s(e(t[o],o,t)))||(c+=(n=r-l)*(r-(l+=n/++i)));if(i>1)return c/(i-1)}function c(t,e){var r=l(t,e);return r?Math.sqrt(r):r}function u(t,e){var r,n,a,i=t.length,o=-1;if(null==e){for(;++o<i;)if(null!=(r=t[o])&&r>=r)for(n=a=r;++o<i;)null!=(r=t[o])&&(n>r&&(n=r),a<r&&(a=r))}else for(;++o<i;)if(null!=(r=e(t[o],o,t))&&r>=r)for(n=a=r;++o<i;)null!=(r=e(t[o],o,t))&&(n>r&&(n=r),a<r&&(a=r));return[n,a]}var h=Array.prototype,f=h.slice,p=h.map;function d(t){return function(){return t}}function g(t){return t}function v(t,e,r){t=+t,e=+e,r=(a=arguments.length)<2?(e=t,t=0,1):a<3?1:+r;for(var n=-1,a=0|Math.max(0,Math.ceil((e-t)/r)),i=new Array(a);++n<a;)i[n]=t+n*r;return i}var m=Math.sqrt(50),y=Math.sqrt(10),x=Math.sqrt(2);function b(t,e,r){var n=(e-t)/Math.max(0,r),a=Math.floor(Math.log(n)/Math.LN10),i=n/Math.pow(10,a);return a>=0?(i>=m?10:i>=y?5:i>=x?2:1)*Math.pow(10,a):-Math.pow(10,-a)/(i>=m?10:i>=y?5:i>=x?2:1)}function _(t,e,r){var n=Math.abs(e-t)/Math.max(0,r),a=Math.pow(10,Math.floor(Math.log(n)/Math.LN10)),i=n/a;return i>=m?a*=10:i>=y?a*=5:i>=x&&(a*=2),e<t?-a:a}function w(t){return Math.ceil(Math.log(t.length)/Math.LN2)+1}function k(t,e,r){if(null==r&&(r=s),n=t.length){if((e=+e)<=0||n<2)return+r(t[0],0,t);if(e>=1)return+r(t[n-1],n-1,t);var n,a=(n-1)*e,i=Math.floor(a),o=+r(t[i],i,t);return o+(+r(t[i+1],i+1,t)-o)*(a-i)}}function T(t,e){var r,n,a=t.length,i=-1;if(null==e){for(;++i<a;)if(null!=(r=t[i])&&r>=r)for(n=r;++i<a;)null!=(r=t[i])&&n>r&&(n=r)}else for(;++i<a;)if(null!=(r=e(t[i],i,t))&&r>=r)for(n=r;++i<a;)null!=(r=e(t[i],i,t))&&n>r&&(n=r);return n}function A(t){if(!(a=t.length))return[];for(var e=-1,r=T(t,M),n=new Array(r);++e<r;)for(var a,i=-1,o=n[e]=new Array(a);++i<a;)o[i]=t[i][e];return n}function M(t){return t.length}t.bisect=a,t.bisectRight=a,t.bisectLeft=i,t.ascending=e,t.bisector=r,t.cross=function(t,e,r){var n,a,i,s,l=t.length,c=e.length,u=new Array(l*c);for(null==r&&(r=o),n=i=0;n<l;++n)for(s=t[n],a=0;a<c;++a,++i)u[i]=r(s,e[a]);return u},t.descending=function(t,e){return e<t?-1:e>t?1:e>=t?0:NaN},t.deviation=c,t.extent=u,t.histogram=function(){var t=g,e=u,r=w;function n(n){var i,o,s=n.length,l=new Array(s);for(i=0;i<s;++i)l[i]=t(n[i],i,n);var c=e(l),u=c[0],h=c[1],f=r(l,u,h);Array.isArray(f)||(f=_(u,h,f),f=v(Math.ceil(u/f)*f,h,f));for(var p=f.length;f[0]<=u;)f.shift(),--p;for(;f[p-1]>h;)f.pop(),--p;var d,g=new Array(p+1);for(i=0;i<=p;++i)(d=g[i]=[]).x0=i>0?f[i-1]:u,d.x1=i<p?f[i]:h;for(i=0;i<s;++i)u<=(o=l[i])&&o<=h&&g[a(f,o,0,p)].push(n[i]);return g}return n.value=function(e){return arguments.length?(t=\"function\"==typeof e?e:d(e),n):t},n.domain=function(t){return arguments.length?(e=\"function\"==typeof t?t:d([t[0],t[1]]),n):e},n.thresholds=function(t){return arguments.length?(r=\"function\"==typeof t?t:Array.isArray(t)?d(f.call(t)):d(t),n):r},n},t.thresholdFreedmanDiaconis=function(t,r,n){return t=p.call(t,s).sort(e),Math.ceil((n-r)/(2*(k(t,.75)-k(t,.25))*Math.pow(t.length,-1/3)))},t.thresholdScott=function(t,e,r){return Math.ceil((r-e)/(3.5*c(t)*Math.pow(t.length,-1/3)))},t.thresholdSturges=w,t.max=function(t,e){var r,n,a=t.length,i=-1;if(null==e){for(;++i<a;)if(null!=(r=t[i])&&r>=r)for(n=r;++i<a;)null!=(r=t[i])&&r>n&&(n=r)}else for(;++i<a;)if(null!=(r=e(t[i],i,t))&&r>=r)for(n=r;++i<a;)null!=(r=e(t[i],i,t))&&r>n&&(n=r);return n},t.mean=function(t,e){var r,n=t.length,a=n,i=-1,o=0;if(null==e)for(;++i<n;)isNaN(r=s(t[i]))?--a:o+=r;else for(;++i<n;)isNaN(r=s(e(t[i],i,t)))?--a:o+=r;if(a)return o/a},t.median=function(t,r){var n,a=t.length,i=-1,o=[];if(null==r)for(;++i<a;)isNaN(n=s(t[i]))||o.push(n);else for(;++i<a;)isNaN(n=s(r(t[i],i,t)))||o.push(n);return k(o.sort(e),.5)},t.merge=function(t){for(var e,r,n,a=t.length,i=-1,o=0;++i<a;)o+=t[i].length;for(r=new Array(o);--a>=0;)for(e=(n=t[a]).length;--e>=0;)r[--o]=n[e];return r},t.min=T,t.pairs=function(t,e){null==e&&(e=o);for(var r=0,n=t.length-1,a=t[0],i=new Array(n<0?0:n);r<n;)i[r]=e(a,a=t[++r]);return i},t.permute=function(t,e){for(var r=e.length,n=new Array(r);r--;)n[r]=t[e[r]];return n},t.quantile=k,t.range=v,t.scan=function(t,r){if(n=t.length){var n,a,i=0,o=0,s=t[o];for(null==r&&(r=e);++i<n;)(r(a=t[i],s)<0||0!==r(s,s))&&(s=a,o=i);return 0===r(s,s)?o:void 0}},t.shuffle=function(t,e,r){for(var n,a,i=(null==r?t.length:r)-(e=null==e?0:+e);i;)a=Math.random()*i--|0,n=t[i+e],t[i+e]=t[a+e],t[a+e]=n;return t},t.sum=function(t,e){var r,n=t.length,a=-1,i=0;if(null==e)for(;++a<n;)(r=+t[a])&&(i+=r);else for(;++a<n;)(r=+e(t[a],a,t))&&(i+=r);return i},t.ticks=function(t,e,r){var n,a,i,o,s=-1;if(r=+r,(t=+t)==(e=+e)&&r>0)return[t];if((n=e<t)&&(a=t,t=e,e=a),0===(o=b(t,e,r))||!isFinite(o))return[];if(o>0)for(t=Math.ceil(t/o),e=Math.floor(e/o),i=new Array(a=Math.ceil(e-t+1));++s<a;)i[s]=(t+s)*o;else for(t=Math.floor(t*o),e=Math.ceil(e*o),i=new Array(a=Math.ceil(t-e+1));++s<a;)i[s]=(t-s)/o;return n&&i.reverse(),i},t.tickIncrement=b,t.tickStep=_,t.transpose=A,t.variance=l,t.zip=function(){return A(arguments)},Object.defineProperty(t,\"__esModule\",{value:!0})}(\"object\"==typeof r&&\"undefined\"!=typeof e?r:n.d3=n.d3||{})},{}],154:[function(t,e,r){var n;n=this,function(t){\"use strict\";function e(){}function r(t,r){var n=new e;if(t instanceof e)t.each(function(t,e){n.set(e,t)});else if(Array.isArray(t)){var a,i=-1,o=t.length;if(null==r)for(;++i<o;)n.set(i,t[i]);else for(;++i<o;)n.set(r(a=t[i],i,t),a)}else if(t)for(var s in t)n.set(s,t[s]);return n}e.prototype=r.prototype={constructor:e,has:function(t){return\"$\"+t in this},get:function(t){return this[\"$\"+t]},set:function(t,e){return this[\"$\"+t]=e,this},remove:function(t){var e=\"$\"+t;return e in this&&delete this[e]},clear:function(){for(var t in this)\"$\"===t[0]&&delete this[t]},keys:function(){var t=[];for(var e in this)\"$\"===e[0]&&t.push(e.slice(1));return t},values:function(){var t=[];for(var e in this)\"$\"===e[0]&&t.push(this[e]);return t},entries:function(){var t=[];for(var e in this)\"$\"===e[0]&&t.push({key:e.slice(1),value:this[e]});return t},size:function(){var t=0;for(var e in this)\"$\"===e[0]&&++t;return t},empty:function(){for(var t in this)if(\"$\"===t[0])return!1;return!0},each:function(t){for(var e in this)\"$\"===e[0]&&t(this[e],e.slice(1),this)}};function n(){return{}}function a(t,e,r){t[e]=r}function i(){return r()}function o(t,e,r){t.set(e,r)}function s(){}var l=r.prototype;function c(t,e){var r=new s;if(t instanceof s)t.each(function(t){r.add(t)});else if(t){var n=-1,a=t.length;if(null==e)for(;++n<a;)r.add(t[n]);else for(;++n<a;)r.add(e(t[n],n,t))}return r}s.prototype=c.prototype={constructor:s,has:l.has,add:function(t){return this[\"$\"+(t+=\"\")]=t,this},remove:l.remove,clear:l.clear,values:l.keys,size:l.size,empty:l.empty,each:l.each};t.nest=function(){var t,e,s,l=[],c=[];function u(n,a,i,o){if(a>=l.length)return null!=t&&n.sort(t),null!=e?e(n):n;for(var s,c,h,f=-1,p=n.length,d=l[a++],g=r(),v=i();++f<p;)(h=g.get(s=d(c=n[f])+\"\"))?h.push(c):g.set(s,[c]);return g.each(function(t,e){o(v,e,u(t,a,i,o))}),v}return s={object:function(t){return u(t,0,n,a)},map:function(t){return u(t,0,i,o)},entries:function(t){return function t(r,n){if(++n>l.length)return r;var a,i=c[n-1];return null!=e&&n>=l.length?a=r.entries():(a=[],r.each(function(e,r){a.push({key:r,values:t(e,n)})})),null!=i?a.sort(function(t,e){return i(t.key,e.key)}):a}(u(t,0,i,o),0)},key:function(t){return l.push(t),s},sortKeys:function(t){return c[l.length-1]=t,s},sortValues:function(e){return t=e,s},rollup:function(t){return e=t,s}}},t.set=c,t.map=r,t.keys=function(t){var e=[];for(var r in t)e.push(r);return e},t.values=function(t){var e=[];for(var r in t)e.push(t[r]);return e},t.entries=function(t){var e=[];for(var r in t)e.push({key:r,value:t[r]});return e},Object.defineProperty(t,\"__esModule\",{value:!0})}(\"object\"==typeof r&&\"undefined\"!=typeof e?r:n.d3=n.d3||{})},{}],155:[function(t,e,r){var n;n=this,function(t){\"use strict\";function e(t,e,r){t.prototype=e.prototype=r,r.constructor=t}function r(t,e){var r=Object.create(t.prototype);for(var n in e)r[n]=e[n];return r}function n(){}var a=\"\\\\s*([+-]?\\\\d+)\\\\s*\",i=\"\\\\s*([+-]?\\\\d*\\\\.?\\\\d+(?:[eE][+-]?\\\\d+)?)\\\\s*\",o=\"\\\\s*([+-]?\\\\d*\\\\.?\\\\d+(?:[eE][+-]?\\\\d+)?)%\\\\s*\",s=/^#([0-9a-f]{3})$/,l=/^#([0-9a-f]{6})$/,c=new RegExp(\"^rgb\\\\(\"+[a,a,a]+\"\\\\)$\"),u=new RegExp(\"^rgb\\\\(\"+[o,o,o]+\"\\\\)$\"),h=new RegExp(\"^rgba\\\\(\"+[a,a,a,i]+\"\\\\)$\"),f=new RegExp(\"^rgba\\\\(\"+[o,o,o,i]+\"\\\\)$\"),p=new RegExp(\"^hsl\\\\(\"+[i,o,o]+\"\\\\)$\"),d=new RegExp(\"^hsla\\\\(\"+[i,o,o,i]+\"\\\\)$\"),g={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};function v(t){var e;return t=(t+\"\").trim().toLowerCase(),(e=s.exec(t))?new _((e=parseInt(e[1],16))>>8&15|e>>4&240,e>>4&15|240&e,(15&e)<<4|15&e,1):(e=l.exec(t))?m(parseInt(e[1],16)):(e=c.exec(t))?new _(e[1],e[2],e[3],1):(e=u.exec(t))?new _(255*e[1]/100,255*e[2]/100,255*e[3]/100,1):(e=h.exec(t))?y(e[1],e[2],e[3],e[4]):(e=f.exec(t))?y(255*e[1]/100,255*e[2]/100,255*e[3]/100,e[4]):(e=p.exec(t))?k(e[1],e[2]/100,e[3]/100,1):(e=d.exec(t))?k(e[1],e[2]/100,e[3]/100,e[4]):g.hasOwnProperty(t)?m(g[t]):\"transparent\"===t?new _(NaN,NaN,NaN,0):null}function m(t){return new _(t>>16&255,t>>8&255,255&t,1)}function y(t,e,r,n){return n<=0&&(t=e=r=NaN),new _(t,e,r,n)}function x(t){return t instanceof n||(t=v(t)),t?new _((t=t.rgb()).r,t.g,t.b,t.opacity):new _}function b(t,e,r,n){return 1===arguments.length?x(t):new _(t,e,r,null==n?1:n)}function _(t,e,r,n){this.r=+t,this.g=+e,this.b=+r,this.opacity=+n}function w(t){return((t=Math.max(0,Math.min(255,Math.round(t)||0)))<16?\"0\":\"\")+t.toString(16)}function k(t,e,r,n){return n<=0?t=e=r=NaN:r<=0||r>=1?t=e=NaN:e<=0&&(t=NaN),new A(t,e,r,n)}function T(t,e,r,a){return 1===arguments.length?function(t){if(t instanceof A)return new A(t.h,t.s,t.l,t.opacity);if(t instanceof n||(t=v(t)),!t)return new A;if(t instanceof A)return t;var e=(t=t.rgb()).r/255,r=t.g/255,a=t.b/255,i=Math.min(e,r,a),o=Math.max(e,r,a),s=NaN,l=o-i,c=(o+i)/2;return l?(s=e===o?(r-a)/l+6*(r<a):r===o?(a-e)/l+2:(e-r)/l+4,l/=c<.5?o+i:2-o-i,s*=60):l=c>0&&c<1?0:s,new A(s,l,c,t.opacity)}(t):new A(t,e,r,null==a?1:a)}function A(t,e,r,n){this.h=+t,this.s=+e,this.l=+r,this.opacity=+n}function M(t,e,r){return 255*(t<60?e+(r-e)*t/60:t<180?r:t<240?e+(r-e)*(240-t)/60:e)}e(n,v,{displayable:function(){return this.rgb().displayable()},hex:function(){return this.rgb().hex()},toString:function(){return this.rgb()+\"\"}}),e(_,b,r(n,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new _(this.r*t,this.g*t,this.b*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new _(this.r*t,this.g*t,this.b*t,this.opacity)},rgb:function(){return this},displayable:function(){return 0<=this.r&&this.r<=255&&0<=this.g&&this.g<=255&&0<=this.b&&this.b<=255&&0<=this.opacity&&this.opacity<=1},hex:function(){return\"#\"+w(this.r)+w(this.g)+w(this.b)},toString:function(){var t=this.opacity;return(1===(t=isNaN(t)?1:Math.max(0,Math.min(1,t)))?\"rgb(\":\"rgba(\")+Math.max(0,Math.min(255,Math.round(this.r)||0))+\", \"+Math.max(0,Math.min(255,Math.round(this.g)||0))+\", \"+Math.max(0,Math.min(255,Math.round(this.b)||0))+(1===t?\")\":\", \"+t+\")\")}})),e(A,T,r(n,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new A(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new A(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=this.h%360+360*(this.h<0),e=isNaN(t)||isNaN(this.s)?0:this.s,r=this.l,n=r+(r<.5?r:1-r)*e,a=2*r-n;return new _(M(t>=240?t-240:t+120,a,n),M(t,a,n),M(t<120?t+240:t-120,a,n),this.opacity)},displayable:function(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1}}));var S=Math.PI/180,E=180/Math.PI,C=.96422,L=1,P=.82521,O=4/29,I=6/29,z=3*I*I,D=I*I*I;function R(t){if(t instanceof B)return new B(t.l,t.a,t.b,t.opacity);if(t instanceof G){if(isNaN(t.h))return new B(t.l,0,0,t.opacity);var e=t.h*S;return new B(t.l,Math.cos(e)*t.c,Math.sin(e)*t.c,t.opacity)}t instanceof _||(t=x(t));var r,n,a=U(t.r),i=U(t.g),o=U(t.b),s=N((.2225045*a+.7168786*i+.0606169*o)/L);return a===i&&i===o?r=n=s:(r=N((.4360747*a+.3850649*i+.1430804*o)/C),n=N((.0139322*a+.0971045*i+.7141733*o)/P)),new B(116*s-16,500*(r-s),200*(s-n),t.opacity)}function F(t,e,r,n){return 1===arguments.length?R(t):new B(t,e,r,null==n?1:n)}function B(t,e,r,n){this.l=+t,this.a=+e,this.b=+r,this.opacity=+n}function N(t){return t>D?Math.pow(t,1/3):t/z+O}function j(t){return t>I?t*t*t:z*(t-O)}function V(t){return 255*(t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055)}function U(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function q(t){if(t instanceof G)return new G(t.h,t.c,t.l,t.opacity);if(t instanceof B||(t=R(t)),0===t.a&&0===t.b)return new G(NaN,0,t.l,t.opacity);var e=Math.atan2(t.b,t.a)*E;return new G(e<0?e+360:e,Math.sqrt(t.a*t.a+t.b*t.b),t.l,t.opacity)}function H(t,e,r,n){return 1===arguments.length?q(t):new G(t,e,r,null==n?1:n)}function G(t,e,r,n){this.h=+t,this.c=+e,this.l=+r,this.opacity=+n}e(B,F,r(n,{brighter:function(t){return new B(this.l+18*(null==t?1:t),this.a,this.b,this.opacity)},darker:function(t){return new B(this.l-18*(null==t?1:t),this.a,this.b,this.opacity)},rgb:function(){var t=(this.l+16)/116,e=isNaN(this.a)?t:t+this.a/500,r=isNaN(this.b)?t:t-this.b/200;return new _(V(3.1338561*(e=C*j(e))-1.6168667*(t=L*j(t))-.4906146*(r=P*j(r))),V(-.9787684*e+1.9161415*t+.033454*r),V(.0719453*e-.2289914*t+1.4052427*r),this.opacity)}})),e(G,H,r(n,{brighter:function(t){return new G(this.h,this.c,this.l+18*(null==t?1:t),this.opacity)},darker:function(t){return new G(this.h,this.c,this.l-18*(null==t?1:t),this.opacity)},rgb:function(){return R(this).rgb()}}));var Y=-.14861,W=1.78277,X=-.29227,Z=-.90649,J=1.97294,K=J*Z,Q=J*W,$=W*X-Z*Y;function tt(t,e,r,n){return 1===arguments.length?function(t){if(t instanceof et)return new et(t.h,t.s,t.l,t.opacity);t instanceof _||(t=x(t));var e=t.r/255,r=t.g/255,n=t.b/255,a=($*n+K*e-Q*r)/($+K-Q),i=n-a,o=(J*(r-a)-X*i)/Z,s=Math.sqrt(o*o+i*i)/(J*a*(1-a)),l=s?Math.atan2(o,i)*E-120:NaN;return new et(l<0?l+360:l,s,a,t.opacity)}(t):new et(t,e,r,null==n?1:n)}function et(t,e,r,n){this.h=+t,this.s=+e,this.l=+r,this.opacity=+n}e(et,tt,r(n,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new et(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new et(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=isNaN(this.h)?0:(this.h+120)*S,e=+this.l,r=isNaN(this.s)?0:this.s*e*(1-e),n=Math.cos(t),a=Math.sin(t);return new _(255*(e+r*(Y*n+W*a)),255*(e+r*(X*n+Z*a)),255*(e+r*(J*n)),this.opacity)}})),t.color=v,t.rgb=b,t.hsl=T,t.lab=F,t.hcl=H,t.lch=function(t,e,r,n){return 1===arguments.length?q(t):new G(r,e,t,null==n?1:n)},t.gray=function(t,e){return new B(t,0,0,null==e?1:e)},t.cubehelix=tt,Object.defineProperty(t,\"__esModule\",{value:!0})}(\"object\"==typeof r&&\"undefined\"!=typeof e?r:n.d3=n.d3||{})},{}],156:[function(t,e,r){var n;n=this,function(t){\"use strict\";var e={value:function(){}};function r(){for(var t,e=0,r=arguments.length,a={};e<r;++e){if(!(t=arguments[e]+\"\")||t in a)throw new Error(\"illegal type: \"+t);a[t]=[]}return new n(a)}function n(t){this._=t}function a(t,e){for(var r,n=0,a=t.length;n<a;++n)if((r=t[n]).name===e)return r.value}function i(t,r,n){for(var a=0,i=t.length;a<i;++a)if(t[a].name===r){t[a]=e,t=t.slice(0,a).concat(t.slice(a+1));break}return null!=n&&t.push({name:r,value:n}),t}n.prototype=r.prototype={constructor:n,on:function(t,e){var r,n,o=this._,s=(n=o,(t+\"\").trim().split(/^|\\s+/).map(function(t){var e=\"\",r=t.indexOf(\".\");if(r>=0&&(e=t.slice(r+1),t=t.slice(0,r)),t&&!n.hasOwnProperty(t))throw new Error(\"unknown type: \"+t);return{type:t,name:e}})),l=-1,c=s.length;if(!(arguments.length<2)){if(null!=e&&\"function\"!=typeof e)throw new Error(\"invalid callback: \"+e);for(;++l<c;)if(r=(t=s[l]).type)o[r]=i(o[r],t.name,e);else if(null==e)for(r in o)o[r]=i(o[r],t.name,null);return this}for(;++l<c;)if((r=(t=s[l]).type)&&(r=a(o[r],t.name)))return r},copy:function(){var t={},e=this._;for(var r in e)t[r]=e[r].slice();return new n(t)},call:function(t,e){if((r=arguments.length-2)>0)for(var r,n,a=new Array(r),i=0;i<r;++i)a[i]=arguments[i+2];if(!this._.hasOwnProperty(t))throw new Error(\"unknown type: \"+t);for(i=0,r=(n=this._[t]).length;i<r;++i)n[i].value.apply(e,a)},apply:function(t,e,r){if(!this._.hasOwnProperty(t))throw new Error(\"unknown type: \"+t);for(var n=this._[t],a=0,i=n.length;a<i;++a)n[a].value.apply(e,r)}},t.dispatch=r,Object.defineProperty(t,\"__esModule\",{value:!0})}(\"object\"==typeof r&&\"undefined\"!=typeof e?r:n.d3=n.d3||{})},{}],157:[function(t,e,r){var n,a;n=this,a=function(t,e,r,n,a){\"use strict\";var i=function(t){return function(){return t}},o=function(){return 1e-6*(Math.random()-.5)};function s(t){return t.x+t.vx}function l(t){return t.y+t.vy}function c(t){return t.index}function u(t,e){var r=t.get(e);if(!r)throw new Error(\"missing: \"+e);return r}function h(t){return t.x}function f(t){return t.y}var p=10,d=Math.PI*(3-Math.sqrt(5));t.forceCenter=function(t,e){var r;function n(){var n,a,i=r.length,o=0,s=0;for(n=0;n<i;++n)o+=(a=r[n]).x,s+=a.y;for(o=o/i-t,s=s/i-e,n=0;n<i;++n)(a=r[n]).x-=o,a.y-=s}return null==t&&(t=0),null==e&&(e=0),n.initialize=function(t){r=t},n.x=function(e){return arguments.length?(t=+e,n):t},n.y=function(t){return arguments.length?(e=+t,n):e},n},t.forceCollide=function(t){var r,n,a=1,c=1;function u(){for(var t,i,u,f,p,d,g,v=r.length,m=0;m<c;++m)for(i=e.quadtree(r,s,l).visitAfter(h),t=0;t<v;++t)u=r[t],d=n[u.index],g=d*d,f=u.x+u.vx,p=u.y+u.vy,i.visit(y);function y(t,e,r,n,i){var s=t.data,l=t.r,c=d+l;if(!s)return e>f+c||n<f-c||r>p+c||i<p-c;if(s.index>u.index){var h=f-s.x-s.vx,v=p-s.y-s.vy,m=h*h+v*v;m<c*c&&(0===h&&(m+=(h=o())*h),0===v&&(m+=(v=o())*v),m=(c-(m=Math.sqrt(m)))/m*a,u.vx+=(h*=m)*(c=(l*=l)/(g+l)),u.vy+=(v*=m)*c,s.vx-=h*(c=1-c),s.vy-=v*c)}}}function h(t){if(t.data)return t.r=n[t.data.index];for(var e=t.r=0;e<4;++e)t[e]&&t[e].r>t.r&&(t.r=t[e].r)}function f(){if(r){var e,a,i=r.length;for(n=new Array(i),e=0;e<i;++e)a=r[e],n[a.index]=+t(a,e,r)}}return\"function\"!=typeof t&&(t=i(null==t?1:+t)),u.initialize=function(t){r=t,f()},u.iterations=function(t){return arguments.length?(c=+t,u):c},u.strength=function(t){return arguments.length?(a=+t,u):a},u.radius=function(e){return arguments.length?(t=\"function\"==typeof e?e:i(+e),f(),u):t},u},t.forceLink=function(t){var e,n,a,s,l,h=c,f=function(t){return 1/Math.min(s[t.source.index],s[t.target.index])},p=i(30),d=1;function g(r){for(var a=0,i=t.length;a<d;++a)for(var s,c,u,h,f,p,g,v=0;v<i;++v)c=(s=t[v]).source,h=(u=s.target).x+u.vx-c.x-c.vx||o(),f=u.y+u.vy-c.y-c.vy||o(),h*=p=((p=Math.sqrt(h*h+f*f))-n[v])/p*r*e[v],f*=p,u.vx-=h*(g=l[v]),u.vy-=f*g,c.vx+=h*(g=1-g),c.vy+=f*g}function v(){if(a){var i,o,c=a.length,f=t.length,p=r.map(a,h);for(i=0,s=new Array(c);i<f;++i)(o=t[i]).index=i,\"object\"!=typeof o.source&&(o.source=u(p,o.source)),\"object\"!=typeof o.target&&(o.target=u(p,o.target)),s[o.source.index]=(s[o.source.index]||0)+1,s[o.target.index]=(s[o.target.index]||0)+1;for(i=0,l=new Array(f);i<f;++i)o=t[i],l[i]=s[o.source.index]/(s[o.source.index]+s[o.target.index]);e=new Array(f),m(),n=new Array(f),y()}}function m(){if(a)for(var r=0,n=t.length;r<n;++r)e[r]=+f(t[r],r,t)}function y(){if(a)for(var e=0,r=t.length;e<r;++e)n[e]=+p(t[e],e,t)}return null==t&&(t=[]),g.initialize=function(t){a=t,v()},g.links=function(e){return arguments.length?(t=e,v(),g):t},g.id=function(t){return arguments.length?(h=t,g):h},g.iterations=function(t){return arguments.length?(d=+t,g):d},g.strength=function(t){return arguments.length?(f=\"function\"==typeof t?t:i(+t),m(),g):f},g.distance=function(t){return arguments.length?(p=\"function\"==typeof t?t:i(+t),y(),g):p},g},t.forceManyBody=function(){var t,r,n,a,s=i(-30),l=1,c=1/0,u=.81;function p(a){var i,o=t.length,s=e.quadtree(t,h,f).visitAfter(g);for(n=a,i=0;i<o;++i)r=t[i],s.visit(v)}function d(){if(t){var e,r,n=t.length;for(a=new Array(n),e=0;e<n;++e)r=t[e],a[r.index]=+s(r,e,t)}}function g(t){var e,r,n,i,o,s=0,l=0;if(t.length){for(n=i=o=0;o<4;++o)(e=t[o])&&(r=Math.abs(e.value))&&(s+=e.value,l+=r,n+=r*e.x,i+=r*e.y);t.x=n/l,t.y=i/l}else{(e=t).x=e.data.x,e.y=e.data.y;do{s+=a[e.data.index]}while(e=e.next)}t.value=s}function v(t,e,i,s){if(!t.value)return!0;var h=t.x-r.x,f=t.y-r.y,p=s-e,d=h*h+f*f;if(p*p/u<d)return d<c&&(0===h&&(d+=(h=o())*h),0===f&&(d+=(f=o())*f),d<l&&(d=Math.sqrt(l*d)),r.vx+=h*t.value*n/d,r.vy+=f*t.value*n/d),!0;if(!(t.length||d>=c)){(t.data!==r||t.next)&&(0===h&&(d+=(h=o())*h),0===f&&(d+=(f=o())*f),d<l&&(d=Math.sqrt(l*d)));do{t.data!==r&&(p=a[t.data.index]*n/d,r.vx+=h*p,r.vy+=f*p)}while(t=t.next)}}return p.initialize=function(e){t=e,d()},p.strength=function(t){return arguments.length?(s=\"function\"==typeof t?t:i(+t),d(),p):s},p.distanceMin=function(t){return arguments.length?(l=t*t,p):Math.sqrt(l)},p.distanceMax=function(t){return arguments.length?(c=t*t,p):Math.sqrt(c)},p.theta=function(t){return arguments.length?(u=t*t,p):Math.sqrt(u)},p},t.forceRadial=function(t,e,r){var n,a,o,s=i(.1);function l(t){for(var i=0,s=n.length;i<s;++i){var l=n[i],c=l.x-e||1e-6,u=l.y-r||1e-6,h=Math.sqrt(c*c+u*u),f=(o[i]-h)*a[i]*t/h;l.vx+=c*f,l.vy+=u*f}}function c(){if(n){var e,r=n.length;for(a=new Array(r),o=new Array(r),e=0;e<r;++e)o[e]=+t(n[e],e,n),a[e]=isNaN(o[e])?0:+s(n[e],e,n)}}return\"function\"!=typeof t&&(t=i(+t)),null==e&&(e=0),null==r&&(r=0),l.initialize=function(t){n=t,c()},l.strength=function(t){return arguments.length?(s=\"function\"==typeof t?t:i(+t),c(),l):s},l.radius=function(e){return arguments.length?(t=\"function\"==typeof e?e:i(+e),c(),l):t},l.x=function(t){return arguments.length?(e=+t,l):e},l.y=function(t){return arguments.length?(r=+t,l):r},l},t.forceSimulation=function(t){var e,i=1,o=.001,s=1-Math.pow(o,1/300),l=0,c=.6,u=r.map(),h=a.timer(g),f=n.dispatch(\"tick\",\"end\");function g(){v(),f.call(\"tick\",e),i<o&&(h.stop(),f.call(\"end\",e))}function v(){var e,r,n=t.length;for(i+=(l-i)*s,u.each(function(t){t(i)}),e=0;e<n;++e)null==(r=t[e]).fx?r.x+=r.vx*=c:(r.x=r.fx,r.vx=0),null==r.fy?r.y+=r.vy*=c:(r.y=r.fy,r.vy=0)}function m(){for(var e,r=0,n=t.length;r<n;++r){if((e=t[r]).index=r,isNaN(e.x)||isNaN(e.y)){var a=p*Math.sqrt(r),i=r*d;e.x=a*Math.cos(i),e.y=a*Math.sin(i)}(isNaN(e.vx)||isNaN(e.vy))&&(e.vx=e.vy=0)}}function y(e){return e.initialize&&e.initialize(t),e}return null==t&&(t=[]),m(),e={tick:v,restart:function(){return h.restart(g),e},stop:function(){return h.stop(),e},nodes:function(r){return arguments.length?(t=r,m(),u.each(y),e):t},alpha:function(t){return arguments.length?(i=+t,e):i},alphaMin:function(t){return arguments.length?(o=+t,e):o},alphaDecay:function(t){return arguments.length?(s=+t,e):+s},alphaTarget:function(t){return arguments.length?(l=+t,e):l},velocityDecay:function(t){return arguments.length?(c=1-t,e):1-c},force:function(t,r){return arguments.length>1?(null==r?u.remove(t):u.set(t,y(r)),e):u.get(t)},find:function(e,r,n){var a,i,o,s,l,c=0,u=t.length;for(null==n?n=1/0:n*=n,c=0;c<u;++c)(o=(a=e-(s=t[c]).x)*a+(i=r-s.y)*i)<n&&(l=s,n=o);return l},on:function(t,r){return arguments.length>1?(f.on(t,r),e):f.on(t)}}},t.forceX=function(t){var e,r,n,a=i(.1);function o(t){for(var a,i=0,o=e.length;i<o;++i)(a=e[i]).vx+=(n[i]-a.x)*r[i]*t}function s(){if(e){var i,o=e.length;for(r=new Array(o),n=new Array(o),i=0;i<o;++i)r[i]=isNaN(n[i]=+t(e[i],i,e))?0:+a(e[i],i,e)}}return\"function\"!=typeof t&&(t=i(null==t?0:+t)),o.initialize=function(t){e=t,s()},o.strength=function(t){return arguments.length?(a=\"function\"==typeof t?t:i(+t),s(),o):a},o.x=function(e){return arguments.length?(t=\"function\"==typeof e?e:i(+e),s(),o):t},o},t.forceY=function(t){var e,r,n,a=i(.1);function o(t){for(var a,i=0,o=e.length;i<o;++i)(a=e[i]).vy+=(n[i]-a.y)*r[i]*t}function s(){if(e){var i,o=e.length;for(r=new Array(o),n=new Array(o),i=0;i<o;++i)r[i]=isNaN(n[i]=+t(e[i],i,e))?0:+a(e[i],i,e)}}return\"function\"!=typeof t&&(t=i(null==t?0:+t)),o.initialize=function(t){e=t,s()},o.strength=function(t){return arguments.length?(a=\"function\"==typeof t?t:i(+t),s(),o):a},o.y=function(e){return arguments.length?(t=\"function\"==typeof e?e:i(+e),s(),o):t},o},Object.defineProperty(t,\"__esModule\",{value:!0})},\"object\"==typeof r&&\"undefined\"!=typeof e?a(r,t(\"d3-quadtree\"),t(\"d3-collection\"),t(\"d3-dispatch\"),t(\"d3-timer\")):a(n.d3=n.d3||{},n.d3,n.d3,n.d3,n.d3)},{\"d3-collection\":154,\"d3-dispatch\":156,\"d3-quadtree\":161,\"d3-timer\":163}],158:[function(t,e,r){var n;n=this,function(t){\"use strict\";function e(t,e){return t.parent===e.parent?1:2}function r(t,e){return t+e.x}function n(t,e){return Math.max(t,e.y)}function a(t){var e=0,r=t.children,n=r&&r.length;if(n)for(;--n>=0;)e+=r[n].value;else e=1;t.value=e}function i(t,e){var r,n,a,i,s,u=new c(t),h=+t.value&&(u.value=t.value),f=[u];for(null==e&&(e=o);r=f.pop();)if(h&&(r.value=+r.data.value),(a=e(r.data))&&(s=a.length))for(r.children=new Array(s),i=s-1;i>=0;--i)f.push(n=r.children[i]=new c(a[i])),n.parent=r,n.depth=r.depth+1;return u.eachBefore(l)}function o(t){return t.children}function s(t){t.data=t.data.data}function l(t){var e=0;do{t.height=e}while((t=t.parent)&&t.height<++e)}function c(t){this.data=t,this.depth=this.height=0,this.parent=null}c.prototype=i.prototype={constructor:c,count:function(){return this.eachAfter(a)},each:function(t){var e,r,n,a,i=this,o=[i];do{for(e=o.reverse(),o=[];i=e.pop();)if(t(i),r=i.children)for(n=0,a=r.length;n<a;++n)o.push(r[n])}while(o.length);return this},eachAfter:function(t){for(var e,r,n,a=this,i=[a],o=[];a=i.pop();)if(o.push(a),e=a.children)for(r=0,n=e.length;r<n;++r)i.push(e[r]);for(;a=o.pop();)t(a);return this},eachBefore:function(t){for(var e,r,n=this,a=[n];n=a.pop();)if(t(n),e=n.children)for(r=e.length-1;r>=0;--r)a.push(e[r]);return this},sum:function(t){return this.eachAfter(function(e){for(var r=+t(e.data)||0,n=e.children,a=n&&n.length;--a>=0;)r+=n[a].value;e.value=r})},sort:function(t){return this.eachBefore(function(e){e.children&&e.children.sort(t)})},path:function(t){for(var e=this,r=function(t,e){if(t===e)return t;var r=t.ancestors(),n=e.ancestors(),a=null;for(t=r.pop(),e=n.pop();t===e;)a=t,t=r.pop(),e=n.pop();return a}(e,t),n=[e];e!==r;)e=e.parent,n.push(e);for(var a=n.length;t!==r;)n.splice(a,0,t),t=t.parent;return n},ancestors:function(){for(var t=this,e=[t];t=t.parent;)e.push(t);return e},descendants:function(){var t=[];return this.each(function(e){t.push(e)}),t},leaves:function(){var t=[];return this.eachBefore(function(e){e.children||t.push(e)}),t},links:function(){var t=this,e=[];return t.each(function(r){r!==t&&e.push({source:r.parent,target:r})}),e},copy:function(){return i(this).eachBefore(s)}};var u=Array.prototype.slice;function h(t){for(var e,r,n=0,a=(t=function(t){for(var e,r,n=t.length;n;)r=Math.random()*n--|0,e=t[n],t[n]=t[r],t[r]=e;return t}(u.call(t))).length,i=[];n<a;)e=t[n],r&&d(r,e)?++n:(r=v(i=f(i,e)),n=0);return r}function f(t,e){var r,n;if(g(e,t))return[e];for(r=0;r<t.length;++r)if(p(e,t[r])&&g(m(t[r],e),t))return[t[r],e];for(r=0;r<t.length-1;++r)for(n=r+1;n<t.length;++n)if(p(m(t[r],t[n]),e)&&p(m(t[r],e),t[n])&&p(m(t[n],e),t[r])&&g(y(t[r],t[n],e),t))return[t[r],t[n],e];throw new Error}function p(t,e){var r=t.r-e.r,n=e.x-t.x,a=e.y-t.y;return r<0||r*r<n*n+a*a}function d(t,e){var r=t.r-e.r+1e-6,n=e.x-t.x,a=e.y-t.y;return r>0&&r*r>n*n+a*a}function g(t,e){for(var r=0;r<e.length;++r)if(!d(t,e[r]))return!1;return!0}function v(t){switch(t.length){case 1:return{x:(e=t[0]).x,y:e.y,r:e.r};case 2:return m(t[0],t[1]);case 3:return y(t[0],t[1],t[2])}var e}function m(t,e){var r=t.x,n=t.y,a=t.r,i=e.x,o=e.y,s=e.r,l=i-r,c=o-n,u=s-a,h=Math.sqrt(l*l+c*c);return{x:(r+i+l/h*u)/2,y:(n+o+c/h*u)/2,r:(h+a+s)/2}}function y(t,e,r){var n=t.x,a=t.y,i=t.r,o=e.x,s=e.y,l=e.r,c=r.x,u=r.y,h=r.r,f=n-o,p=n-c,d=a-s,g=a-u,v=l-i,m=h-i,y=n*n+a*a-i*i,x=y-o*o-s*s+l*l,b=y-c*c-u*u+h*h,_=p*d-f*g,w=(d*b-g*x)/(2*_)-n,k=(g*v-d*m)/_,T=(p*x-f*b)/(2*_)-a,A=(f*m-p*v)/_,M=k*k+A*A-1,S=2*(i+w*k+T*A),E=w*w+T*T-i*i,C=-(M?(S+Math.sqrt(S*S-4*M*E))/(2*M):E/S);return{x:n+w+k*C,y:a+T+A*C,r:C}}function x(t,e,r){var n,a,i,o,s=t.x-e.x,l=t.y-e.y,c=s*s+l*l;c?(a=e.r+r.r,a*=a,o=t.r+r.r,a>(o*=o)?(n=(c+o-a)/(2*c),i=Math.sqrt(Math.max(0,o/c-n*n)),r.x=t.x-n*s-i*l,r.y=t.y-n*l+i*s):(n=(c+a-o)/(2*c),i=Math.sqrt(Math.max(0,a/c-n*n)),r.x=e.x+n*s-i*l,r.y=e.y+n*l+i*s)):(r.x=e.x+r.r,r.y=e.y)}function b(t,e){var r=t.r+e.r-1e-6,n=e.x-t.x,a=e.y-t.y;return r>0&&r*r>n*n+a*a}function _(t){var e=t._,r=t.next._,n=e.r+r.r,a=(e.x*r.r+r.x*e.r)/n,i=(e.y*r.r+r.y*e.r)/n;return a*a+i*i}function w(t){this._=t,this.next=null,this.previous=null}function k(t){if(!(a=t.length))return 0;var e,r,n,a,i,o,s,l,c,u,f;if((e=t[0]).x=0,e.y=0,!(a>1))return e.r;if(r=t[1],e.x=-r.r,r.x=e.r,r.y=0,!(a>2))return e.r+r.r;x(r,e,n=t[2]),e=new w(e),r=new w(r),n=new w(n),e.next=n.previous=r,r.next=e.previous=n,n.next=r.previous=e;t:for(s=3;s<a;++s){x(e._,r._,n=t[s]),n=new w(n),l=r.next,c=e.previous,u=r._.r,f=e._.r;do{if(u<=f){if(b(l._,n._)){r=l,e.next=r,r.previous=e,--s;continue t}u+=l._.r,l=l.next}else{if(b(c._,n._)){(e=c).next=r,r.previous=e,--s;continue t}f+=c._.r,c=c.previous}}while(l!==c.next);for(n.previous=e,n.next=r,e.next=r.previous=r=n,i=_(e);(n=n.next)!==r;)(o=_(n))<i&&(e=n,i=o);r=e.next}for(e=[r._],n=r;(n=n.next)!==r;)e.push(n._);for(n=h(e),s=0;s<a;++s)(e=t[s]).x-=n.x,e.y-=n.y;return n.r}function T(t){if(\"function\"!=typeof t)throw new Error;return t}function A(){return 0}function M(t){return function(){return t}}function S(t){return Math.sqrt(t.value)}function E(t){return function(e){e.children||(e.r=Math.max(0,+t(e)||0))}}function C(t,e){return function(r){if(n=r.children){var n,a,i,o=n.length,s=t(r)*e||0;if(s)for(a=0;a<o;++a)n[a].r+=s;if(i=k(n),s)for(a=0;a<o;++a)n[a].r-=s;r.r=i+s}}}function L(t){return function(e){var r=e.parent;e.r*=t,r&&(e.x=r.x+t*e.x,e.y=r.y+t*e.y)}}function P(t){t.x0=Math.round(t.x0),t.y0=Math.round(t.y0),t.x1=Math.round(t.x1),t.y1=Math.round(t.y1)}function O(t,e,r,n,a){for(var i,o=t.children,s=-1,l=o.length,c=t.value&&(n-e)/t.value;++s<l;)(i=o[s]).y0=r,i.y1=a,i.x0=e,i.x1=e+=i.value*c}var I=\"$\",z={depth:-1},D={};function R(t){return t.id}function F(t){return t.parentId}function B(t,e){return t.parent===e.parent?1:2}function N(t){var e=t.children;return e?e[0]:t.t}function j(t){var e=t.children;return e?e[e.length-1]:t.t}function V(t,e,r){var n=r/(e.i-t.i);e.c-=n,e.s+=r,t.c+=n,e.z+=r,e.m+=r}function U(t,e,r){return t.a.parent===e.parent?t.a:r}function q(t,e){this._=t,this.parent=null,this.children=null,this.A=null,this.a=this,this.z=0,this.m=0,this.c=0,this.s=0,this.t=null,this.i=e}function H(t,e,r,n,a){for(var i,o=t.children,s=-1,l=o.length,c=t.value&&(a-r)/t.value;++s<l;)(i=o[s]).x0=e,i.x1=n,i.y0=r,i.y1=r+=i.value*c}q.prototype=Object.create(c.prototype);var G=(1+Math.sqrt(5))/2;function Y(t,e,r,n,a,i){for(var o,s,l,c,u,h,f,p,d,g,v,m=[],y=e.children,x=0,b=0,_=y.length,w=e.value;x<_;){l=a-r,c=i-n;do{u=y[b++].value}while(!u&&b<_);for(h=f=u,v=u*u*(g=Math.max(c/l,l/c)/(w*t)),d=Math.max(f/v,v/h);b<_;++b){if(u+=s=y[b].value,s<h&&(h=s),s>f&&(f=s),v=u*u*g,(p=Math.max(f/v,v/h))>d){u-=s;break}d=p}m.push(o={value:u,dice:l<c,children:y.slice(x,b)}),o.dice?O(o,r,n,a,w?n+=c*u/w:i):H(o,r,n,w?r+=l*u/w:a,i),w-=u,x=b}return m}var W=function t(e){function r(t,r,n,a,i){Y(e,t,r,n,a,i)}return r.ratio=function(e){return t((e=+e)>1?e:1)},r}(G);var X=function t(e){function r(t,r,n,a,i){if((o=t._squarify)&&o.ratio===e)for(var o,s,l,c,u,h=-1,f=o.length,p=t.value;++h<f;){for(l=(s=o[h]).children,c=s.value=0,u=l.length;c<u;++c)s.value+=l[c].value;s.dice?O(s,r,n,a,n+=(i-n)*s.value/p):H(s,r,n,r+=(a-r)*s.value/p,i),p-=s.value}else t._squarify=o=Y(e,t,r,n,a,i),o.ratio=e}return r.ratio=function(e){return t((e=+e)>1?e:1)},r}(G);t.cluster=function(){var t=e,a=1,i=1,o=!1;function s(e){var s,l=0;e.eachAfter(function(e){var a=e.children;a?(e.x=function(t){return t.reduce(r,0)/t.length}(a),e.y=function(t){return 1+t.reduce(n,0)}(a)):(e.x=s?l+=t(e,s):0,e.y=0,s=e)});var c=function(t){for(var e;e=t.children;)t=e[0];return t}(e),u=function(t){for(var e;e=t.children;)t=e[e.length-1];return t}(e),h=c.x-t(c,u)/2,f=u.x+t(u,c)/2;return e.eachAfter(o?function(t){t.x=(t.x-e.x)*a,t.y=(e.y-t.y)*i}:function(t){t.x=(t.x-h)/(f-h)*a,t.y=(1-(e.y?t.y/e.y:1))*i})}return s.separation=function(e){return arguments.length?(t=e,s):t},s.size=function(t){return arguments.length?(o=!1,a=+t[0],i=+t[1],s):o?null:[a,i]},s.nodeSize=function(t){return arguments.length?(o=!0,a=+t[0],i=+t[1],s):o?[a,i]:null},s},t.hierarchy=i,t.pack=function(){var t=null,e=1,r=1,n=A;function a(a){return a.x=e/2,a.y=r/2,t?a.eachBefore(E(t)).eachAfter(C(n,.5)).eachBefore(L(1)):a.eachBefore(E(S)).eachAfter(C(A,1)).eachAfter(C(n,a.r/Math.min(e,r))).eachBefore(L(Math.min(e,r)/(2*a.r))),a}return a.radius=function(e){return arguments.length?(t=null==(r=e)?null:T(r),a):t;var r},a.size=function(t){return arguments.length?(e=+t[0],r=+t[1],a):[e,r]},a.padding=function(t){return arguments.length?(n=\"function\"==typeof t?t:M(+t),a):n},a},t.packSiblings=function(t){return k(t),t},t.packEnclose=h,t.partition=function(){var t=1,e=1,r=0,n=!1;function a(a){var i=a.height+1;return a.x0=a.y0=r,a.x1=t,a.y1=e/i,a.eachBefore(function(t,e){return function(n){n.children&&O(n,n.x0,t*(n.depth+1)/e,n.x1,t*(n.depth+2)/e);var a=n.x0,i=n.y0,o=n.x1-r,s=n.y1-r;o<a&&(a=o=(a+o)/2),s<i&&(i=s=(i+s)/2),n.x0=a,n.y0=i,n.x1=o,n.y1=s}}(e,i)),n&&a.eachBefore(P),a}return a.round=function(t){return arguments.length?(n=!!t,a):n},a.size=function(r){return arguments.length?(t=+r[0],e=+r[1],a):[t,e]},a.padding=function(t){return arguments.length?(r=+t,a):r},a},t.stratify=function(){var t=R,e=F;function r(r){var n,a,i,o,s,u,h,f=r.length,p=new Array(f),d={};for(a=0;a<f;++a)n=r[a],s=p[a]=new c(n),null!=(u=t(n,a,r))&&(u+=\"\")&&(d[h=I+(s.id=u)]=h in d?D:s);for(a=0;a<f;++a)if(s=p[a],null!=(u=e(r[a],a,r))&&(u+=\"\")){if(!(o=d[I+u]))throw new Error(\"missing: \"+u);if(o===D)throw new Error(\"ambiguous: \"+u);o.children?o.children.push(s):o.children=[s],s.parent=o}else{if(i)throw new Error(\"multiple roots\");i=s}if(!i)throw new Error(\"no root\");if(i.parent=z,i.eachBefore(function(t){t.depth=t.parent.depth+1,--f}).eachBefore(l),i.parent=null,f>0)throw new Error(\"cycle\");return i}return r.id=function(e){return arguments.length?(t=T(e),r):t},r.parentId=function(t){return arguments.length?(e=T(t),r):e},r},t.tree=function(){var t=B,e=1,r=1,n=null;function a(a){var l=function(t){for(var e,r,n,a,i,o=new q(t,0),s=[o];e=s.pop();)if(n=e._.children)for(e.children=new Array(i=n.length),a=i-1;a>=0;--a)s.push(r=e.children[a]=new q(n[a],a)),r.parent=e;return(o.parent=new q(null,0)).children=[o],o}(a);if(l.eachAfter(i),l.parent.m=-l.z,l.eachBefore(o),n)a.eachBefore(s);else{var c=a,u=a,h=a;a.eachBefore(function(t){t.x<c.x&&(c=t),t.x>u.x&&(u=t),t.depth>h.depth&&(h=t)});var f=c===u?1:t(c,u)/2,p=f-c.x,d=e/(u.x+f+p),g=r/(h.depth||1);a.eachBefore(function(t){t.x=(t.x+p)*d,t.y=t.depth*g})}return a}function i(e){var r=e.children,n=e.parent.children,a=e.i?n[e.i-1]:null;if(r){!function(t){for(var e,r=0,n=0,a=t.children,i=a.length;--i>=0;)(e=a[i]).z+=r,e.m+=r,r+=e.s+(n+=e.c)}(e);var i=(r[0].z+r[r.length-1].z)/2;a?(e.z=a.z+t(e._,a._),e.m=e.z-i):e.z=i}else a&&(e.z=a.z+t(e._,a._));e.parent.A=function(e,r,n){if(r){for(var a,i=e,o=e,s=r,l=i.parent.children[0],c=i.m,u=o.m,h=s.m,f=l.m;s=j(s),i=N(i),s&&i;)l=N(l),(o=j(o)).a=e,(a=s.z+h-i.z-c+t(s._,i._))>0&&(V(U(s,e,n),e,a),c+=a,u+=a),h+=s.m,c+=i.m,f+=l.m,u+=o.m;s&&!j(o)&&(o.t=s,o.m+=h-u),i&&!N(l)&&(l.t=i,l.m+=c-f,n=e)}return n}(e,a,e.parent.A||n[0])}function o(t){t._.x=t.z+t.parent.m,t.m+=t.parent.m}function s(t){t.x*=e,t.y=t.depth*r}return a.separation=function(e){return arguments.length?(t=e,a):t},a.size=function(t){return arguments.length?(n=!1,e=+t[0],r=+t[1],a):n?null:[e,r]},a.nodeSize=function(t){return arguments.length?(n=!0,e=+t[0],r=+t[1],a):n?[e,r]:null},a},t.treemap=function(){var t=W,e=!1,r=1,n=1,a=[0],i=A,o=A,s=A,l=A,c=A;function u(t){return t.x0=t.y0=0,t.x1=r,t.y1=n,t.eachBefore(h),a=[0],e&&t.eachBefore(P),t}function h(e){var r=a[e.depth],n=e.x0+r,u=e.y0+r,h=e.x1-r,f=e.y1-r;h<n&&(n=h=(n+h)/2),f<u&&(u=f=(u+f)/2),e.x0=n,e.y0=u,e.x1=h,e.y1=f,e.children&&(r=a[e.depth+1]=i(e)/2,n+=c(e)-r,u+=o(e)-r,(h-=s(e)-r)<n&&(n=h=(n+h)/2),(f-=l(e)-r)<u&&(u=f=(u+f)/2),t(e,n,u,h,f))}return u.round=function(t){return arguments.length?(e=!!t,u):e},u.size=function(t){return arguments.length?(r=+t[0],n=+t[1],u):[r,n]},u.tile=function(e){return arguments.length?(t=T(e),u):t},u.padding=function(t){return arguments.length?u.paddingInner(t).paddingOuter(t):u.paddingInner()},u.paddingInner=function(t){return arguments.length?(i=\"function\"==typeof t?t:M(+t),u):i},u.paddingOuter=function(t){return arguments.length?u.paddingTop(t).paddingRight(t).paddingBottom(t).paddingLeft(t):u.paddingTop()},u.paddingTop=function(t){return arguments.length?(o=\"function\"==typeof t?t:M(+t),u):o},u.paddingRight=function(t){return arguments.length?(s=\"function\"==typeof t?t:M(+t),u):s},u.paddingBottom=function(t){return arguments.length?(l=\"function\"==typeof t?t:M(+t),u):l},u.paddingLeft=function(t){return arguments.length?(c=\"function\"==typeof t?t:M(+t),u):c},u},t.treemapBinary=function(t,e,r,n,a){var i,o,s=t.children,l=s.length,c=new Array(l+1);for(c[0]=o=i=0;i<l;++i)c[i+1]=o+=s[i].value;!function t(e,r,n,a,i,o,l){if(e>=r-1){var u=s[e];return u.x0=a,u.y0=i,u.x1=o,void(u.y1=l)}for(var h=c[e],f=n/2+h,p=e+1,d=r-1;p<d;){var g=p+d>>>1;c[g]<f?p=g+1:d=g}f-c[p-1]<c[p]-f&&e+1<p&&--p;var v=c[p]-h,m=n-v;if(o-a>l-i){var y=(a*m+o*v)/n;t(e,p,v,a,i,y,l),t(p,r,m,y,i,o,l)}else{var x=(i*m+l*v)/n;t(e,p,v,a,i,o,x),t(p,r,m,a,x,o,l)}}(0,l,t.value,e,r,n,a)},t.treemapDice=O,t.treemapSlice=H,t.treemapSliceDice=function(t,e,r,n,a){(1&t.depth?H:O)(t,e,r,n,a)},t.treemapSquarify=W,t.treemapResquarify=X,Object.defineProperty(t,\"__esModule\",{value:!0})}(\"object\"==typeof r&&\"undefined\"!=typeof e?r:n.d3=n.d3||{})},{}],159:[function(t,e,r){var n,a;n=this,a=function(t,e){\"use strict\";function r(t,e,r,n,a){var i=t*t,o=i*t;return((1-3*t+3*i-o)*e+(4-6*i+3*o)*r+(1+3*t+3*i-3*o)*n+o*a)/6}function n(t){var e=t.length-1;return function(n){var a=n<=0?n=0:n>=1?(n=1,e-1):Math.floor(n*e),i=t[a],o=t[a+1],s=a>0?t[a-1]:2*i-o,l=a<e-1?t[a+2]:2*o-i;return r((n-a/e)*e,s,i,o,l)}}function a(t){var e=t.length;return function(n){var a=Math.floor(((n%=1)<0?++n:n)*e),i=t[(a+e-1)%e],o=t[a%e],s=t[(a+1)%e],l=t[(a+2)%e];return r((n-a/e)*e,i,o,s,l)}}function i(t){return function(){return t}}function o(t,e){return function(r){return t+r*e}}function s(t,e){var r=e-t;return r?o(t,r>180||r<-180?r-360*Math.round(r/360):r):i(isNaN(t)?e:t)}function l(t){return 1==(t=+t)?c:function(e,r){return r-e?function(t,e,r){return t=Math.pow(t,r),e=Math.pow(e,r)-t,r=1/r,function(n){return Math.pow(t+n*e,r)}}(e,r,t):i(isNaN(e)?r:e)}}function c(t,e){var r=e-t;return r?o(t,r):i(isNaN(t)?e:t)}var u=function t(r){var n=l(r);function a(t,r){var a=n((t=e.rgb(t)).r,(r=e.rgb(r)).r),i=n(t.g,r.g),o=n(t.b,r.b),s=c(t.opacity,r.opacity);return function(e){return t.r=a(e),t.g=i(e),t.b=o(e),t.opacity=s(e),t+\"\"}}return a.gamma=t,a}(1);function h(t){return function(r){var n,a,i=r.length,o=new Array(i),s=new Array(i),l=new Array(i);for(n=0;n<i;++n)a=e.rgb(r[n]),o[n]=a.r||0,s[n]=a.g||0,l[n]=a.b||0;return o=t(o),s=t(s),l=t(l),a.opacity=1,function(t){return a.r=o(t),a.g=s(t),a.b=l(t),a+\"\"}}}var f=h(n),p=h(a);function d(t,e){var r,n=e?e.length:0,a=t?Math.min(n,t.length):0,i=new Array(a),o=new Array(n);for(r=0;r<a;++r)i[r]=_(t[r],e[r]);for(;r<n;++r)o[r]=e[r];return function(t){for(r=0;r<a;++r)o[r]=i[r](t);return o}}function g(t,e){var r=new Date;return e-=t=+t,function(n){return r.setTime(t+e*n),r}}function v(t,e){return e-=t=+t,function(r){return t+e*r}}function m(t,e){var r,n={},a={};for(r in null!==t&&\"object\"==typeof t||(t={}),null!==e&&\"object\"==typeof e||(e={}),e)r in t?n[r]=_(t[r],e[r]):a[r]=e[r];return function(t){for(r in n)a[r]=n[r](t);return a}}var y=/[-+]?(?:\\d+\\.?\\d*|\\.?\\d+)(?:[eE][-+]?\\d+)?/g,x=new RegExp(y.source,\"g\");function b(t,e){var r,n,a,i=y.lastIndex=x.lastIndex=0,o=-1,s=[],l=[];for(t+=\"\",e+=\"\";(r=y.exec(t))&&(n=x.exec(e));)(a=n.index)>i&&(a=e.slice(i,a),s[o]?s[o]+=a:s[++o]=a),(r=r[0])===(n=n[0])?s[o]?s[o]+=n:s[++o]=n:(s[++o]=null,l.push({i:o,x:v(r,n)})),i=x.lastIndex;return i<e.length&&(a=e.slice(i),s[o]?s[o]+=a:s[++o]=a),s.length<2?l[0]?function(t){return function(e){return t(e)+\"\"}}(l[0].x):function(t){return function(){return t}}(e):(e=l.length,function(t){for(var r,n=0;n<e;++n)s[(r=l[n]).i]=r.x(t);return s.join(\"\")})}function _(t,r){var n,a=typeof r;return null==r||\"boolean\"===a?i(r):(\"number\"===a?v:\"string\"===a?(n=e.color(r))?(r=n,u):b:r instanceof e.color?u:r instanceof Date?g:Array.isArray(r)?d:\"function\"!=typeof r.valueOf&&\"function\"!=typeof r.toString||isNaN(r)?m:v)(t,r)}var w,k,T,A,M=180/Math.PI,S={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function E(t,e,r,n,a,i){var o,s,l;return(o=Math.sqrt(t*t+e*e))&&(t/=o,e/=o),(l=t*r+e*n)&&(r-=t*l,n-=e*l),(s=Math.sqrt(r*r+n*n))&&(r/=s,n/=s,l/=s),t*n<e*r&&(t=-t,e=-e,l=-l,o=-o),{translateX:a,translateY:i,rotate:Math.atan2(e,t)*M,skewX:Math.atan(l)*M,scaleX:o,scaleY:s}}function C(t,e,r,n){function a(t){return t.length?t.pop()+\" \":\"\"}return function(i,o){var s=[],l=[];return i=t(i),o=t(o),function(t,n,a,i,o,s){if(t!==a||n!==i){var l=o.push(\"translate(\",null,e,null,r);s.push({i:l-4,x:v(t,a)},{i:l-2,x:v(n,i)})}else(a||i)&&o.push(\"translate(\"+a+e+i+r)}(i.translateX,i.translateY,o.translateX,o.translateY,s,l),function(t,e,r,i){t!==e?(t-e>180?e+=360:e-t>180&&(t+=360),i.push({i:r.push(a(r)+\"rotate(\",null,n)-2,x:v(t,e)})):e&&r.push(a(r)+\"rotate(\"+e+n)}(i.rotate,o.rotate,s,l),function(t,e,r,i){t!==e?i.push({i:r.push(a(r)+\"skewX(\",null,n)-2,x:v(t,e)}):e&&r.push(a(r)+\"skewX(\"+e+n)}(i.skewX,o.skewX,s,l),function(t,e,r,n,i,o){if(t!==r||e!==n){var s=i.push(a(i)+\"scale(\",null,\",\",null,\")\");o.push({i:s-4,x:v(t,r)},{i:s-2,x:v(e,n)})}else 1===r&&1===n||i.push(a(i)+\"scale(\"+r+\",\"+n+\")\")}(i.scaleX,i.scaleY,o.scaleX,o.scaleY,s,l),i=o=null,function(t){for(var e,r=-1,n=l.length;++r<n;)s[(e=l[r]).i]=e.x(t);return s.join(\"\")}}}var L=C(function(t){return\"none\"===t?S:(w||(w=document.createElement(\"DIV\"),k=document.documentElement,T=document.defaultView),w.style.transform=t,t=T.getComputedStyle(k.appendChild(w),null).getPropertyValue(\"transform\"),k.removeChild(w),E(+(t=t.slice(7,-1).split(\",\"))[0],+t[1],+t[2],+t[3],+t[4],+t[5]))},\"px, \",\"px)\",\"deg)\"),P=C(function(t){return null==t?S:(A||(A=document.createElementNS(\"http://www.w3.org/2000/svg\",\"g\")),A.setAttribute(\"transform\",t),(t=A.transform.baseVal.consolidate())?E((t=t.matrix).a,t.b,t.c,t.d,t.e,t.f):S)},\", \",\")\",\")\"),O=Math.SQRT2,I=2,z=4,D=1e-12;function R(t){return((t=Math.exp(t))+1/t)/2}function F(t){return function(r,n){var a=t((r=e.hsl(r)).h,(n=e.hsl(n)).h),i=c(r.s,n.s),o=c(r.l,n.l),s=c(r.opacity,n.opacity);return function(t){return r.h=a(t),r.s=i(t),r.l=o(t),r.opacity=s(t),r+\"\"}}}var B=F(s),N=F(c);function j(t){return function(r,n){var a=t((r=e.hcl(r)).h,(n=e.hcl(n)).h),i=c(r.c,n.c),o=c(r.l,n.l),s=c(r.opacity,n.opacity);return function(t){return r.h=a(t),r.c=i(t),r.l=o(t),r.opacity=s(t),r+\"\"}}}var V=j(s),U=j(c);function q(t){return function r(n){function a(r,a){var i=t((r=e.cubehelix(r)).h,(a=e.cubehelix(a)).h),o=c(r.s,a.s),s=c(r.l,a.l),l=c(r.opacity,a.opacity);return function(t){return r.h=i(t),r.s=o(t),r.l=s(Math.pow(t,n)),r.opacity=l(t),r+\"\"}}return n=+n,a.gamma=r,a}(1)}var H=q(s),G=q(c);t.interpolate=_,t.interpolateArray=d,t.interpolateBasis=n,t.interpolateBasisClosed=a,t.interpolateDate=g,t.interpolateDiscrete=function(t){var e=t.length;return function(r){return t[Math.max(0,Math.min(e-1,Math.floor(r*e)))]}},t.interpolateHue=function(t,e){var r=s(+t,+e);return function(t){var e=r(t);return e-360*Math.floor(e/360)}},t.interpolateNumber=v,t.interpolateObject=m,t.interpolateRound=function(t,e){return e-=t=+t,function(r){return Math.round(t+e*r)}},t.interpolateString=b,t.interpolateTransformCss=L,t.interpolateTransformSvg=P,t.interpolateZoom=function(t,e){var r,n,a=t[0],i=t[1],o=t[2],s=e[0],l=e[1],c=e[2],u=s-a,h=l-i,f=u*u+h*h;if(f<D)n=Math.log(c/o)/O,r=function(t){return[a+t*u,i+t*h,o*Math.exp(O*t*n)]};else{var p=Math.sqrt(f),d=(c*c-o*o+z*f)/(2*o*I*p),g=(c*c-o*o-z*f)/(2*c*I*p),v=Math.log(Math.sqrt(d*d+1)-d),m=Math.log(Math.sqrt(g*g+1)-g);n=(m-v)/O,r=function(t){var e,r=t*n,s=R(v),l=o/(I*p)*(s*(e=O*r+v,((e=Math.exp(2*e))-1)/(e+1))-function(t){return((t=Math.exp(t))-1/t)/2}(v));return[a+l*u,i+l*h,o*s/R(O*r+v)]}}return r.duration=1e3*n,r},t.interpolateRgb=u,t.interpolateRgbBasis=f,t.interpolateRgbBasisClosed=p,t.interpolateHsl=B,t.interpolateHslLong=N,t.interpolateLab=function(t,r){var n=c((t=e.lab(t)).l,(r=e.lab(r)).l),a=c(t.a,r.a),i=c(t.b,r.b),o=c(t.opacity,r.opacity);return function(e){return t.l=n(e),t.a=a(e),t.b=i(e),t.opacity=o(e),t+\"\"}},t.interpolateHcl=V,t.interpolateHclLong=U,t.interpolateCubehelix=H,t.interpolateCubehelixLong=G,t.piecewise=function(t,e){for(var r=0,n=e.length-1,a=e[0],i=new Array(n<0?0:n);r<n;)i[r]=t(a,a=e[++r]);return function(t){var e=Math.max(0,Math.min(n-1,Math.floor(t*=n)));return i[e](t-e)}},t.quantize=function(t,e){for(var r=new Array(e),n=0;n<e;++n)r[n]=t(n/(e-1));return r},Object.defineProperty(t,\"__esModule\",{value:!0})},\"object\"==typeof r&&\"undefined\"!=typeof e?a(r,t(\"d3-color\")):a(n.d3=n.d3||{},n.d3)},{\"d3-color\":155}],160:[function(t,e,r){var n;n=this,function(t){\"use strict\";var e=Math.PI,r=2*e,n=r-1e-6;function a(){this._x0=this._y0=this._x1=this._y1=null,this._=\"\"}function i(){return new a}a.prototype=i.prototype={constructor:a,moveTo:function(t,e){this._+=\"M\"+(this._x0=this._x1=+t)+\",\"+(this._y0=this._y1=+e)},closePath:function(){null!==this._x1&&(this._x1=this._x0,this._y1=this._y0,this._+=\"Z\")},lineTo:function(t,e){this._+=\"L\"+(this._x1=+t)+\",\"+(this._y1=+e)},quadraticCurveTo:function(t,e,r,n){this._+=\"Q\"+ +t+\",\"+ +e+\",\"+(this._x1=+r)+\",\"+(this._y1=+n)},bezierCurveTo:function(t,e,r,n,a,i){this._+=\"C\"+ +t+\",\"+ +e+\",\"+ +r+\",\"+ +n+\",\"+(this._x1=+a)+\",\"+(this._y1=+i)},arcTo:function(t,r,n,a,i){t=+t,r=+r,n=+n,a=+a,i=+i;var o=this._x1,s=this._y1,l=n-t,c=a-r,u=o-t,h=s-r,f=u*u+h*h;if(i<0)throw new Error(\"negative radius: \"+i);if(null===this._x1)this._+=\"M\"+(this._x1=t)+\",\"+(this._y1=r);else if(f>1e-6)if(Math.abs(h*l-c*u)>1e-6&&i){var p=n-o,d=a-s,g=l*l+c*c,v=p*p+d*d,m=Math.sqrt(g),y=Math.sqrt(f),x=i*Math.tan((e-Math.acos((g+f-v)/(2*m*y)))/2),b=x/y,_=x/m;Math.abs(b-1)>1e-6&&(this._+=\"L\"+(t+b*u)+\",\"+(r+b*h)),this._+=\"A\"+i+\",\"+i+\",0,0,\"+ +(h*p>u*d)+\",\"+(this._x1=t+_*l)+\",\"+(this._y1=r+_*c)}else this._+=\"L\"+(this._x1=t)+\",\"+(this._y1=r);else;},arc:function(t,a,i,o,s,l){t=+t,a=+a;var c=(i=+i)*Math.cos(o),u=i*Math.sin(o),h=t+c,f=a+u,p=1^l,d=l?o-s:s-o;if(i<0)throw new Error(\"negative radius: \"+i);null===this._x1?this._+=\"M\"+h+\",\"+f:(Math.abs(this._x1-h)>1e-6||Math.abs(this._y1-f)>1e-6)&&(this._+=\"L\"+h+\",\"+f),i&&(d<0&&(d=d%r+r),d>n?this._+=\"A\"+i+\",\"+i+\",0,1,\"+p+\",\"+(t-c)+\",\"+(a-u)+\"A\"+i+\",\"+i+\",0,1,\"+p+\",\"+(this._x1=h)+\",\"+(this._y1=f):d>1e-6&&(this._+=\"A\"+i+\",\"+i+\",0,\"+ +(d>=e)+\",\"+p+\",\"+(this._x1=t+i*Math.cos(s))+\",\"+(this._y1=a+i*Math.sin(s))))},rect:function(t,e,r,n){this._+=\"M\"+(this._x0=this._x1=+t)+\",\"+(this._y0=this._y1=+e)+\"h\"+ +r+\"v\"+ +n+\"h\"+-r+\"Z\"},toString:function(){return this._}},t.path=i,Object.defineProperty(t,\"__esModule\",{value:!0})}(\"object\"==typeof r&&\"undefined\"!=typeof e?r:n.d3=n.d3||{})},{}],161:[function(t,e,r){var n;n=this,function(t){\"use strict\";function e(t,e,r,n){if(isNaN(e)||isNaN(r))return t;var a,i,o,s,l,c,u,h,f,p=t._root,d={data:n},g=t._x0,v=t._y0,m=t._x1,y=t._y1;if(!p)return t._root=d,t;for(;p.length;)if((c=e>=(i=(g+m)/2))?g=i:m=i,(u=r>=(o=(v+y)/2))?v=o:y=o,a=p,!(p=p[h=u<<1|c]))return a[h]=d,t;if(s=+t._x.call(null,p.data),l=+t._y.call(null,p.data),e===s&&r===l)return d.next=p,a?a[h]=d:t._root=d,t;do{a=a?a[h]=new Array(4):t._root=new Array(4),(c=e>=(i=(g+m)/2))?g=i:m=i,(u=r>=(o=(v+y)/2))?v=o:y=o}while((h=u<<1|c)==(f=(l>=o)<<1|s>=i));return a[f]=p,a[h]=d,t}var r=function(t,e,r,n,a){this.node=t,this.x0=e,this.y0=r,this.x1=n,this.y1=a};function n(t){return t[0]}function a(t){return t[1]}function i(t,e,r){var i=new o(null==e?n:e,null==r?a:r,NaN,NaN,NaN,NaN);return null==t?i:i.addAll(t)}function o(t,e,r,n,a,i){this._x=t,this._y=e,this._x0=r,this._y0=n,this._x1=a,this._y1=i,this._root=void 0}function s(t){for(var e={data:t.data},r=e;t=t.next;)r=r.next={data:t.data};return e}var l=i.prototype=o.prototype;l.copy=function(){var t,e,r=new o(this._x,this._y,this._x0,this._y0,this._x1,this._y1),n=this._root;if(!n)return r;if(!n.length)return r._root=s(n),r;for(t=[{source:n,target:r._root=new Array(4)}];n=t.pop();)for(var a=0;a<4;++a)(e=n.source[a])&&(e.length?t.push({source:e,target:n.target[a]=new Array(4)}):n.target[a]=s(e));return r},l.add=function(t){var r=+this._x.call(null,t),n=+this._y.call(null,t);return e(this.cover(r,n),r,n,t)},l.addAll=function(t){var r,n,a,i,o=t.length,s=new Array(o),l=new Array(o),c=1/0,u=1/0,h=-1/0,f=-1/0;for(n=0;n<o;++n)isNaN(a=+this._x.call(null,r=t[n]))||isNaN(i=+this._y.call(null,r))||(s[n]=a,l[n]=i,a<c&&(c=a),a>h&&(h=a),i<u&&(u=i),i>f&&(f=i));for(h<c&&(c=this._x0,h=this._x1),f<u&&(u=this._y0,f=this._y1),this.cover(c,u).cover(h,f),n=0;n<o;++n)e(this,s[n],l[n],t[n]);return this},l.cover=function(t,e){if(isNaN(t=+t)||isNaN(e=+e))return this;var r=this._x0,n=this._y0,a=this._x1,i=this._y1;if(isNaN(r))a=(r=Math.floor(t))+1,i=(n=Math.floor(e))+1;else{if(!(r>t||t>a||n>e||e>i))return this;var o,s,l=a-r,c=this._root;switch(s=(e<(n+i)/2)<<1|t<(r+a)/2){case 0:do{(o=new Array(4))[s]=c,c=o}while(i=n+(l*=2),t>(a=r+l)||e>i);break;case 1:do{(o=new Array(4))[s]=c,c=o}while(i=n+(l*=2),(r=a-l)>t||e>i);break;case 2:do{(o=new Array(4))[s]=c,c=o}while(n=i-(l*=2),t>(a=r+l)||n>e);break;case 3:do{(o=new Array(4))[s]=c,c=o}while(n=i-(l*=2),(r=a-l)>t||n>e)}this._root&&this._root.length&&(this._root=c)}return this._x0=r,this._y0=n,this._x1=a,this._y1=i,this},l.data=function(){var t=[];return this.visit(function(e){if(!e.length)do{t.push(e.data)}while(e=e.next)}),t},l.extent=function(t){return arguments.length?this.cover(+t[0][0],+t[0][1]).cover(+t[1][0],+t[1][1]):isNaN(this._x0)?void 0:[[this._x0,this._y0],[this._x1,this._y1]]},l.find=function(t,e,n){var a,i,o,s,l,c,u,h=this._x0,f=this._y0,p=this._x1,d=this._y1,g=[],v=this._root;for(v&&g.push(new r(v,h,f,p,d)),null==n?n=1/0:(h=t-n,f=e-n,p=t+n,d=e+n,n*=n);c=g.pop();)if(!(!(v=c.node)||(i=c.x0)>p||(o=c.y0)>d||(s=c.x1)<h||(l=c.y1)<f))if(v.length){var m=(i+s)/2,y=(o+l)/2;g.push(new r(v[3],m,y,s,l),new r(v[2],i,y,m,l),new r(v[1],m,o,s,y),new r(v[0],i,o,m,y)),(u=(e>=y)<<1|t>=m)&&(c=g[g.length-1],g[g.length-1]=g[g.length-1-u],g[g.length-1-u]=c)}else{var x=t-+this._x.call(null,v.data),b=e-+this._y.call(null,v.data),_=x*x+b*b;if(_<n){var w=Math.sqrt(n=_);h=t-w,f=e-w,p=t+w,d=e+w,a=v.data}}return a},l.remove=function(t){if(isNaN(i=+this._x.call(null,t))||isNaN(o=+this._y.call(null,t)))return this;var e,r,n,a,i,o,s,l,c,u,h,f,p=this._root,d=this._x0,g=this._y0,v=this._x1,m=this._y1;if(!p)return this;if(p.length)for(;;){if((c=i>=(s=(d+v)/2))?d=s:v=s,(u=o>=(l=(g+m)/2))?g=l:m=l,e=p,!(p=p[h=u<<1|c]))return this;if(!p.length)break;(e[h+1&3]||e[h+2&3]||e[h+3&3])&&(r=e,f=h)}for(;p.data!==t;)if(n=p,!(p=p.next))return this;return(a=p.next)&&delete p.next,n?(a?n.next=a:delete n.next,this):e?(a?e[h]=a:delete e[h],(p=e[0]||e[1]||e[2]||e[3])&&p===(e[3]||e[2]||e[1]||e[0])&&!p.length&&(r?r[f]=p:this._root=p),this):(this._root=a,this)},l.removeAll=function(t){for(var e=0,r=t.length;e<r;++e)this.remove(t[e]);return this},l.root=function(){return this._root},l.size=function(){var t=0;return this.visit(function(e){if(!e.length)do{++t}while(e=e.next)}),t},l.visit=function(t){var e,n,a,i,o,s,l=[],c=this._root;for(c&&l.push(new r(c,this._x0,this._y0,this._x1,this._y1));e=l.pop();)if(!t(c=e.node,a=e.x0,i=e.y0,o=e.x1,s=e.y1)&&c.length){var u=(a+o)/2,h=(i+s)/2;(n=c[3])&&l.push(new r(n,u,h,o,s)),(n=c[2])&&l.push(new r(n,a,h,u,s)),(n=c[1])&&l.push(new r(n,u,i,o,h)),(n=c[0])&&l.push(new r(n,a,i,u,h))}return this},l.visitAfter=function(t){var e,n=[],a=[];for(this._root&&n.push(new r(this._root,this._x0,this._y0,this._x1,this._y1));e=n.pop();){var i=e.node;if(i.length){var o,s=e.x0,l=e.y0,c=e.x1,u=e.y1,h=(s+c)/2,f=(l+u)/2;(o=i[0])&&n.push(new r(o,s,l,h,f)),(o=i[1])&&n.push(new r(o,h,l,c,f)),(o=i[2])&&n.push(new r(o,s,f,h,u)),(o=i[3])&&n.push(new r(o,h,f,c,u))}a.push(e)}for(;e=a.pop();)t(e.node,e.x0,e.y0,e.x1,e.y1);return this},l.x=function(t){return arguments.length?(this._x=t,this):this._x},l.y=function(t){return arguments.length?(this._y=t,this):this._y},t.quadtree=i,Object.defineProperty(t,\"__esModule\",{value:!0})}(\"object\"==typeof r&&\"undefined\"!=typeof e?r:n.d3=n.d3||{})},{}],162:[function(t,e,r){var n,a;n=this,a=function(t,e){\"use strict\";function r(t){return function(){return t}}var n=Math.abs,a=Math.atan2,i=Math.cos,o=Math.max,s=Math.min,l=Math.sin,c=Math.sqrt,u=1e-12,h=Math.PI,f=h/2,p=2*h;function d(t){return t>=1?f:t<=-1?-f:Math.asin(t)}function g(t){return t.innerRadius}function v(t){return t.outerRadius}function m(t){return t.startAngle}function y(t){return t.endAngle}function x(t){return t&&t.padAngle}function b(t,e,r,n,a,i,s){var l=t-r,u=e-n,h=(s?i:-i)/c(l*l+u*u),f=h*u,p=-h*l,d=t+f,g=e+p,v=r+f,m=n+p,y=(d+v)/2,x=(g+m)/2,b=v-d,_=m-g,w=b*b+_*_,k=a-i,T=d*m-v*g,A=(_<0?-1:1)*c(o(0,k*k*w-T*T)),M=(T*_-b*A)/w,S=(-T*b-_*A)/w,E=(T*_+b*A)/w,C=(-T*b+_*A)/w,L=M-y,P=S-x,O=E-y,I=C-x;return L*L+P*P>O*O+I*I&&(M=E,S=C),{cx:M,cy:S,x01:-f,y01:-p,x11:M*(a/k-1),y11:S*(a/k-1)}}function _(t){this._context=t}function w(t){return new _(t)}function k(t){return t[0]}function T(t){return t[1]}function A(){var t=k,n=T,a=r(!0),i=null,o=w,s=null;function l(r){var l,c,u,h=r.length,f=!1;for(null==i&&(s=o(u=e.path())),l=0;l<=h;++l)!(l<h&&a(c=r[l],l,r))===f&&((f=!f)?s.lineStart():s.lineEnd()),f&&s.point(+t(c,l,r),+n(c,l,r));if(u)return s=null,u+\"\"||null}return l.x=function(e){return arguments.length?(t=\"function\"==typeof e?e:r(+e),l):t},l.y=function(t){return arguments.length?(n=\"function\"==typeof t?t:r(+t),l):n},l.defined=function(t){return arguments.length?(a=\"function\"==typeof t?t:r(!!t),l):a},l.curve=function(t){return arguments.length?(o=t,null!=i&&(s=o(i)),l):o},l.context=function(t){return arguments.length?(null==t?i=s=null:s=o(i=t),l):i},l}function M(){var t=k,n=null,a=r(0),i=T,o=r(!0),s=null,l=w,c=null;function u(r){var u,h,f,p,d,g=r.length,v=!1,m=new Array(g),y=new Array(g);for(null==s&&(c=l(d=e.path())),u=0;u<=g;++u){if(!(u<g&&o(p=r[u],u,r))===v)if(v=!v)h=u,c.areaStart(),c.lineStart();else{for(c.lineEnd(),c.lineStart(),f=u-1;f>=h;--f)c.point(m[f],y[f]);c.lineEnd(),c.areaEnd()}v&&(m[u]=+t(p,u,r),y[u]=+a(p,u,r),c.point(n?+n(p,u,r):m[u],i?+i(p,u,r):y[u]))}if(d)return c=null,d+\"\"||null}function h(){return A().defined(o).curve(l).context(s)}return u.x=function(e){return arguments.length?(t=\"function\"==typeof e?e:r(+e),n=null,u):t},u.x0=function(e){return arguments.length?(t=\"function\"==typeof e?e:r(+e),u):t},u.x1=function(t){return arguments.length?(n=null==t?null:\"function\"==typeof t?t:r(+t),u):n},u.y=function(t){return arguments.length?(a=\"function\"==typeof t?t:r(+t),i=null,u):a},u.y0=function(t){return arguments.length?(a=\"function\"==typeof t?t:r(+t),u):a},u.y1=function(t){return arguments.length?(i=null==t?null:\"function\"==typeof t?t:r(+t),u):i},u.lineX0=u.lineY0=function(){return h().x(t).y(a)},u.lineY1=function(){return h().x(t).y(i)},u.lineX1=function(){return h().x(n).y(a)},u.defined=function(t){return arguments.length?(o=\"function\"==typeof t?t:r(!!t),u):o},u.curve=function(t){return arguments.length?(l=t,null!=s&&(c=l(s)),u):l},u.context=function(t){return arguments.length?(null==t?s=c=null:c=l(s=t),u):s},u}function S(t,e){return e<t?-1:e>t?1:e>=t?0:NaN}function E(t){return t}_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:this._context.lineTo(t,e)}}};var C=P(w);function L(t){this._curve=t}function P(t){function e(e){return new L(t(e))}return e._curve=t,e}function O(t){var e=t.curve;return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t.curve=function(t){return arguments.length?e(P(t)):e()._curve},t}function I(){return O(A().curve(C))}function z(){var t=M().curve(C),e=t.curve,r=t.lineX0,n=t.lineX1,a=t.lineY0,i=t.lineY1;return t.angle=t.x,delete t.x,t.startAngle=t.x0,delete t.x0,t.endAngle=t.x1,delete t.x1,t.radius=t.y,delete t.y,t.innerRadius=t.y0,delete t.y0,t.outerRadius=t.y1,delete t.y1,t.lineStartAngle=function(){return O(r())},delete t.lineX0,t.lineEndAngle=function(){return O(n())},delete t.lineX1,t.lineInnerRadius=function(){return O(a())},delete t.lineY0,t.lineOuterRadius=function(){return O(i())},delete t.lineY1,t.curve=function(t){return arguments.length?e(P(t)):e()._curve},t}function D(t,e){return[(e=+e)*Math.cos(t-=Math.PI/2),e*Math.sin(t)]}L.prototype={areaStart:function(){this._curve.areaStart()},areaEnd:function(){this._curve.areaEnd()},lineStart:function(){this._curve.lineStart()},lineEnd:function(){this._curve.lineEnd()},point:function(t,e){this._curve.point(e*Math.sin(t),e*-Math.cos(t))}};var R=Array.prototype.slice;function F(t){return t.source}function B(t){return t.target}function N(t){var n=F,a=B,i=k,o=T,s=null;function l(){var r,l=R.call(arguments),c=n.apply(this,l),u=a.apply(this,l);if(s||(s=r=e.path()),t(s,+i.apply(this,(l[0]=c,l)),+o.apply(this,l),+i.apply(this,(l[0]=u,l)),+o.apply(this,l)),r)return s=null,r+\"\"||null}return l.source=function(t){return arguments.length?(n=t,l):n},l.target=function(t){return arguments.length?(a=t,l):a},l.x=function(t){return arguments.length?(i=\"function\"==typeof t?t:r(+t),l):i},l.y=function(t){return arguments.length?(o=\"function\"==typeof t?t:r(+t),l):o},l.context=function(t){return arguments.length?(s=null==t?null:t,l):s},l}function j(t,e,r,n,a){t.moveTo(e,r),t.bezierCurveTo(e=(e+n)/2,r,e,a,n,a)}function V(t,e,r,n,a){t.moveTo(e,r),t.bezierCurveTo(e,r=(r+a)/2,n,r,n,a)}function U(t,e,r,n,a){var i=D(e,r),o=D(e,r=(r+a)/2),s=D(n,r),l=D(n,a);t.moveTo(i[0],i[1]),t.bezierCurveTo(o[0],o[1],s[0],s[1],l[0],l[1])}var q={draw:function(t,e){var r=Math.sqrt(e/h);t.moveTo(r,0),t.arc(0,0,r,0,p)}},H={draw:function(t,e){var r=Math.sqrt(e/5)/2;t.moveTo(-3*r,-r),t.lineTo(-r,-r),t.lineTo(-r,-3*r),t.lineTo(r,-3*r),t.lineTo(r,-r),t.lineTo(3*r,-r),t.lineTo(3*r,r),t.lineTo(r,r),t.lineTo(r,3*r),t.lineTo(-r,3*r),t.lineTo(-r,r),t.lineTo(-3*r,r),t.closePath()}},G=Math.sqrt(1/3),Y=2*G,W={draw:function(t,e){var r=Math.sqrt(e/Y),n=r*G;t.moveTo(0,-r),t.lineTo(n,0),t.lineTo(0,r),t.lineTo(-n,0),t.closePath()}},X=Math.sin(h/10)/Math.sin(7*h/10),Z=Math.sin(p/10)*X,J=-Math.cos(p/10)*X,K={draw:function(t,e){var r=Math.sqrt(.8908130915292852*e),n=Z*r,a=J*r;t.moveTo(0,-r),t.lineTo(n,a);for(var i=1;i<5;++i){var o=p*i/5,s=Math.cos(o),l=Math.sin(o);t.lineTo(l*r,-s*r),t.lineTo(s*n-l*a,l*n+s*a)}t.closePath()}},Q={draw:function(t,e){var r=Math.sqrt(e),n=-r/2;t.rect(n,n,r,r)}},$=Math.sqrt(3),tt={draw:function(t,e){var r=-Math.sqrt(e/(3*$));t.moveTo(0,2*r),t.lineTo(-$*r,-r),t.lineTo($*r,-r),t.closePath()}},et=-.5,rt=Math.sqrt(3)/2,nt=1/Math.sqrt(12),at=3*(nt/2+1),it={draw:function(t,e){var r=Math.sqrt(e/at),n=r/2,a=r*nt,i=n,o=r*nt+r,s=-i,l=o;t.moveTo(n,a),t.lineTo(i,o),t.lineTo(s,l),t.lineTo(et*n-rt*a,rt*n+et*a),t.lineTo(et*i-rt*o,rt*i+et*o),t.lineTo(et*s-rt*l,rt*s+et*l),t.lineTo(et*n+rt*a,et*a-rt*n),t.lineTo(et*i+rt*o,et*o-rt*i),t.lineTo(et*s+rt*l,et*l-rt*s),t.closePath()}},ot=[q,H,W,Q,K,tt,it];function st(){}function lt(t,e,r){t._context.bezierCurveTo((2*t._x0+t._x1)/3,(2*t._y0+t._y1)/3,(t._x0+2*t._x1)/3,(t._y0+2*t._y1)/3,(t._x0+4*t._x1+e)/6,(t._y0+4*t._y1+r)/6)}function ct(t){this._context=t}function ut(t){this._context=t}function ht(t){this._context=t}function ft(t,e){this._basis=new ct(t),this._beta=e}ct.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){switch(this._point){case 3:lt(this,this._x1,this._y1);case 2:this._context.lineTo(this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3,this._context.lineTo((5*this._x0+this._x1)/6,(5*this._y0+this._y1)/6);default:lt(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},ut.prototype={areaStart:st,areaEnd:st,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._y0=this._y1=this._y2=this._y3=this._y4=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x2,this._y2),this._context.closePath();break;case 2:this._context.moveTo((this._x2+2*this._x3)/3,(this._y2+2*this._y3)/3),this._context.lineTo((this._x3+2*this._x2)/3,(this._y3+2*this._y2)/3),this._context.closePath();break;case 3:this.point(this._x2,this._y2),this.point(this._x3,this._y3),this.point(this._x4,this._y4)}},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._x2=t,this._y2=e;break;case 1:this._point=2,this._x3=t,this._y3=e;break;case 2:this._point=3,this._x4=t,this._y4=e,this._context.moveTo((this._x0+4*this._x1+t)/6,(this._y0+4*this._y1+e)/6);break;default:lt(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},ht.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3;var r=(this._x0+4*this._x1+t)/6,n=(this._y0+4*this._y1+e)/6;this._line?this._context.lineTo(r,n):this._context.moveTo(r,n);break;case 3:this._point=4;default:lt(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},ft.prototype={lineStart:function(){this._x=[],this._y=[],this._basis.lineStart()},lineEnd:function(){var t=this._x,e=this._y,r=t.length-1;if(r>0)for(var n,a=t[0],i=e[0],o=t[r]-a,s=e[r]-i,l=-1;++l<=r;)n=l/r,this._basis.point(this._beta*t[l]+(1-this._beta)*(a+n*o),this._beta*e[l]+(1-this._beta)*(i+n*s));this._x=this._y=null,this._basis.lineEnd()},point:function(t,e){this._x.push(+t),this._y.push(+e)}};var pt=function t(e){function r(t){return 1===e?new ct(t):new ft(t,e)}return r.beta=function(e){return t(+e)},r}(.85);function dt(t,e,r){t._context.bezierCurveTo(t._x1+t._k*(t._x2-t._x0),t._y1+t._k*(t._y2-t._y0),t._x2+t._k*(t._x1-e),t._y2+t._k*(t._y1-r),t._x2,t._y2)}function gt(t,e){this._context=t,this._k=(1-e)/6}gt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:dt(this,this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2,this._x1=t,this._y1=e;break;case 2:this._point=3;default:dt(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var vt=function t(e){function r(t){return new gt(t,e)}return r.tension=function(e){return t(+e)},r}(0);function mt(t,e){this._context=t,this._k=(1-e)/6}mt.prototype={areaStart:st,areaEnd:st,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:dt(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var yt=function t(e){function r(t){return new mt(t,e)}return r.tension=function(e){return t(+e)},r}(0);function xt(t,e){this._context=t,this._k=(1-e)/6}xt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:dt(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var bt=function t(e){function r(t){return new xt(t,e)}return r.tension=function(e){return t(+e)},r}(0);function _t(t,e,r){var n=t._x1,a=t._y1,i=t._x2,o=t._y2;if(t._l01_a>u){var s=2*t._l01_2a+3*t._l01_a*t._l12_a+t._l12_2a,l=3*t._l01_a*(t._l01_a+t._l12_a);n=(n*s-t._x0*t._l12_2a+t._x2*t._l01_2a)/l,a=(a*s-t._y0*t._l12_2a+t._y2*t._l01_2a)/l}if(t._l23_a>u){var c=2*t._l23_2a+3*t._l23_a*t._l12_a+t._l12_2a,h=3*t._l23_a*(t._l23_a+t._l12_a);i=(i*c+t._x1*t._l23_2a-e*t._l12_2a)/h,o=(o*c+t._y1*t._l23_2a-r*t._l12_2a)/h}t._context.bezierCurveTo(n,a,i,o,t._x2,t._y2)}function wt(t,e){this._context=t,this._alpha=e}wt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:this.point(this._x2,this._y2)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3;default:_t(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var kt=function t(e){function r(t){return e?new wt(t,e):new gt(t,0)}return r.alpha=function(e){return t(+e)},r}(.5);function Tt(t,e){this._context=t,this._alpha=e}Tt.prototype={areaStart:st,areaEnd:st,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:_t(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var At=function t(e){function r(t){return e?new Tt(t,e):new mt(t,0)}return r.alpha=function(e){return t(+e)},r}(.5);function Mt(t,e){this._context=t,this._alpha=e}Mt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:_t(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var St=function t(e){function r(t){return e?new Mt(t,e):new xt(t,0)}return r.alpha=function(e){return t(+e)},r}(.5);function Et(t){this._context=t}function Ct(t){return t<0?-1:1}function Lt(t,e,r){var n=t._x1-t._x0,a=e-t._x1,i=(t._y1-t._y0)/(n||a<0&&-0),o=(r-t._y1)/(a||n<0&&-0),s=(i*a+o*n)/(n+a);return(Ct(i)+Ct(o))*Math.min(Math.abs(i),Math.abs(o),.5*Math.abs(s))||0}function Pt(t,e){var r=t._x1-t._x0;return r?(3*(t._y1-t._y0)/r-e)/2:e}function Ot(t,e,r){var n=t._x0,a=t._y0,i=t._x1,o=t._y1,s=(i-n)/3;t._context.bezierCurveTo(n+s,a+s*e,i-s,o-s*r,i,o)}function It(t){this._context=t}function zt(t){this._context=new Dt(t)}function Dt(t){this._context=t}function Rt(t){this._context=t}function Ft(t){var e,r,n=t.length-1,a=new Array(n),i=new Array(n),o=new Array(n);for(a[0]=0,i[0]=2,o[0]=t[0]+2*t[1],e=1;e<n-1;++e)a[e]=1,i[e]=4,o[e]=4*t[e]+2*t[e+1];for(a[n-1]=2,i[n-1]=7,o[n-1]=8*t[n-1]+t[n],e=1;e<n;++e)r=a[e]/i[e-1],i[e]-=r,o[e]-=r*o[e-1];for(a[n-1]=o[n-1]/i[n-1],e=n-2;e>=0;--e)a[e]=(o[e]-a[e+1])/i[e];for(i[n-1]=(t[n]+a[n-1])/2,e=0;e<n-1;++e)i[e]=2*t[e+1]-a[e+1];return[a,i]}function Bt(t,e){this._context=t,this._t=e}function Nt(t,e){if((a=t.length)>1)for(var r,n,a,i=1,o=t[e[0]],s=o.length;i<a;++i)for(n=o,o=t[e[i]],r=0;r<s;++r)o[r][1]+=o[r][0]=isNaN(n[r][1])?n[r][0]:n[r][1]}function jt(t){for(var e=t.length,r=new Array(e);--e>=0;)r[e]=e;return r}function Vt(t,e){return t[e]}function Ut(t){var e=t.map(qt);return jt(t).sort(function(t,r){return e[t]-e[r]})}function qt(t){for(var e,r=-1,n=0,a=t.length,i=-1/0;++r<a;)(e=+t[r][1])>i&&(i=e,n=r);return n}function Ht(t){var e=t.map(Gt);return jt(t).sort(function(t,r){return e[t]-e[r]})}function Gt(t){for(var e,r=0,n=-1,a=t.length;++n<a;)(e=+t[n][1])&&(r+=e);return r}Et.prototype={areaStart:st,areaEnd:st,lineStart:function(){this._point=0},lineEnd:function(){this._point&&this._context.closePath()},point:function(t,e){t=+t,e=+e,this._point?this._context.lineTo(t,e):(this._point=1,this._context.moveTo(t,e))}},It.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=this._t0=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x1,this._y1);break;case 3:Ot(this,this._t0,Pt(this,this._t0))}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){var r=NaN;if(e=+e,(t=+t)!==this._x1||e!==this._y1){switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3,Ot(this,Pt(this,r=Lt(this,t,e)),r);break;default:Ot(this,this._t0,r=Lt(this,t,e))}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e,this._t0=r}}},(zt.prototype=Object.create(It.prototype)).point=function(t,e){It.prototype.point.call(this,e,t)},Dt.prototype={moveTo:function(t,e){this._context.moveTo(e,t)},closePath:function(){this._context.closePath()},lineTo:function(t,e){this._context.lineTo(e,t)},bezierCurveTo:function(t,e,r,n,a,i){this._context.bezierCurveTo(e,t,n,r,i,a)}},Rt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=[],this._y=[]},lineEnd:function(){var t=this._x,e=this._y,r=t.length;if(r)if(this._line?this._context.lineTo(t[0],e[0]):this._context.moveTo(t[0],e[0]),2===r)this._context.lineTo(t[1],e[1]);else for(var n=Ft(t),a=Ft(e),i=0,o=1;o<r;++i,++o)this._context.bezierCurveTo(n[0][i],a[0][i],n[1][i],a[1][i],t[o],e[o]);(this._line||0!==this._line&&1===r)&&this._context.closePath(),this._line=1-this._line,this._x=this._y=null},point:function(t,e){this._x.push(+t),this._y.push(+e)}},Bt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=this._y=NaN,this._point=0},lineEnd:function(){0<this._t&&this._t<1&&2===this._point&&this._context.lineTo(this._x,this._y),(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line>=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:if(this._t<=0)this._context.lineTo(this._x,e),this._context.lineTo(t,e);else{var r=this._x*(1-this._t)+t*this._t;this._context.lineTo(r,this._y),this._context.lineTo(r,e)}}this._x=t,this._y=e}},t.arc=function(){var t=g,o=v,_=r(0),w=null,k=m,T=y,A=x,M=null;function S(){var r,g,v,m=+t.apply(this,arguments),y=+o.apply(this,arguments),x=k.apply(this,arguments)-f,S=T.apply(this,arguments)-f,E=n(S-x),C=S>x;if(M||(M=r=e.path()),y<m&&(g=y,y=m,m=g),y>u)if(E>p-u)M.moveTo(y*i(x),y*l(x)),M.arc(0,0,y,x,S,!C),m>u&&(M.moveTo(m*i(S),m*l(S)),M.arc(0,0,m,S,x,C));else{var L,P,O=x,I=S,z=x,D=S,R=E,F=E,B=A.apply(this,arguments)/2,N=B>u&&(w?+w.apply(this,arguments):c(m*m+y*y)),j=s(n(y-m)/2,+_.apply(this,arguments)),V=j,U=j;if(N>u){var q=d(N/m*l(B)),H=d(N/y*l(B));(R-=2*q)>u?(z+=q*=C?1:-1,D-=q):(R=0,z=D=(x+S)/2),(F-=2*H)>u?(O+=H*=C?1:-1,I-=H):(F=0,O=I=(x+S)/2)}var G=y*i(O),Y=y*l(O),W=m*i(D),X=m*l(D);if(j>u){var Z,J=y*i(I),K=y*l(I),Q=m*i(z),$=m*l(z);if(E<h&&(Z=function(t,e,r,n,a,i,o,s){var l=r-t,c=n-e,h=o-a,f=s-i,p=f*l-h*c;if(!(p*p<u))return[t+(p=(h*(e-i)-f*(t-a))/p)*l,e+p*c]}(G,Y,Q,$,J,K,W,X))){var tt=G-Z[0],et=Y-Z[1],rt=J-Z[0],nt=K-Z[1],at=1/l(((v=(tt*rt+et*nt)/(c(tt*tt+et*et)*c(rt*rt+nt*nt)))>1?0:v<-1?h:Math.acos(v))/2),it=c(Z[0]*Z[0]+Z[1]*Z[1]);V=s(j,(m-it)/(at-1)),U=s(j,(y-it)/(at+1))}}F>u?U>u?(L=b(Q,$,G,Y,y,U,C),P=b(J,K,W,X,y,U,C),M.moveTo(L.cx+L.x01,L.cy+L.y01),U<j?M.arc(L.cx,L.cy,U,a(L.y01,L.x01),a(P.y01,P.x01),!C):(M.arc(L.cx,L.cy,U,a(L.y01,L.x01),a(L.y11,L.x11),!C),M.arc(0,0,y,a(L.cy+L.y11,L.cx+L.x11),a(P.cy+P.y11,P.cx+P.x11),!C),M.arc(P.cx,P.cy,U,a(P.y11,P.x11),a(P.y01,P.x01),!C))):(M.moveTo(G,Y),M.arc(0,0,y,O,I,!C)):M.moveTo(G,Y),m>u&&R>u?V>u?(L=b(W,X,J,K,m,-V,C),P=b(G,Y,Q,$,m,-V,C),M.lineTo(L.cx+L.x01,L.cy+L.y01),V<j?M.arc(L.cx,L.cy,V,a(L.y01,L.x01),a(P.y01,P.x01),!C):(M.arc(L.cx,L.cy,V,a(L.y01,L.x01),a(L.y11,L.x11),!C),M.arc(0,0,m,a(L.cy+L.y11,L.cx+L.x11),a(P.cy+P.y11,P.cx+P.x11),C),M.arc(P.cx,P.cy,V,a(P.y11,P.x11),a(P.y01,P.x01),!C))):M.arc(0,0,m,D,z,C):M.lineTo(W,X)}else M.moveTo(0,0);if(M.closePath(),r)return M=null,r+\"\"||null}return S.centroid=function(){var e=(+t.apply(this,arguments)+ +o.apply(this,arguments))/2,r=(+k.apply(this,arguments)+ +T.apply(this,arguments))/2-h/2;return[i(r)*e,l(r)*e]},S.innerRadius=function(e){return arguments.length?(t=\"function\"==typeof e?e:r(+e),S):t},S.outerRadius=function(t){return arguments.length?(o=\"function\"==typeof t?t:r(+t),S):o},S.cornerRadius=function(t){return arguments.length?(_=\"function\"==typeof t?t:r(+t),S):_},S.padRadius=function(t){return arguments.length?(w=null==t?null:\"function\"==typeof t?t:r(+t),S):w},S.startAngle=function(t){return arguments.length?(k=\"function\"==typeof t?t:r(+t),S):k},S.endAngle=function(t){return arguments.length?(T=\"function\"==typeof t?t:r(+t),S):T},S.padAngle=function(t){return arguments.length?(A=\"function\"==typeof t?t:r(+t),S):A},S.context=function(t){return arguments.length?(M=null==t?null:t,S):M},S},t.area=M,t.line=A,t.pie=function(){var t=E,e=S,n=null,a=r(0),i=r(p),o=r(0);function s(r){var s,l,c,u,h,f=r.length,d=0,g=new Array(f),v=new Array(f),m=+a.apply(this,arguments),y=Math.min(p,Math.max(-p,i.apply(this,arguments)-m)),x=Math.min(Math.abs(y)/f,o.apply(this,arguments)),b=x*(y<0?-1:1);for(s=0;s<f;++s)(h=v[g[s]=s]=+t(r[s],s,r))>0&&(d+=h);for(null!=e?g.sort(function(t,r){return e(v[t],v[r])}):null!=n&&g.sort(function(t,e){return n(r[t],r[e])}),s=0,c=d?(y-f*b)/d:0;s<f;++s,m=u)l=g[s],u=m+((h=v[l])>0?h*c:0)+b,v[l]={data:r[l],index:s,value:h,startAngle:m,endAngle:u,padAngle:x};return v}return s.value=function(e){return arguments.length?(t=\"function\"==typeof e?e:r(+e),s):t},s.sortValues=function(t){return arguments.length?(e=t,n=null,s):e},s.sort=function(t){return arguments.length?(n=t,e=null,s):n},s.startAngle=function(t){return arguments.length?(a=\"function\"==typeof t?t:r(+t),s):a},s.endAngle=function(t){return arguments.length?(i=\"function\"==typeof t?t:r(+t),s):i},s.padAngle=function(t){return arguments.length?(o=\"function\"==typeof t?t:r(+t),s):o},s},t.areaRadial=z,t.radialArea=z,t.lineRadial=I,t.radialLine=I,t.pointRadial=D,t.linkHorizontal=function(){return N(j)},t.linkVertical=function(){return N(V)},t.linkRadial=function(){var t=N(U);return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t},t.symbol=function(){var t=r(q),n=r(64),a=null;function i(){var r;if(a||(a=r=e.path()),t.apply(this,arguments).draw(a,+n.apply(this,arguments)),r)return a=null,r+\"\"||null}return i.type=function(e){return arguments.length?(t=\"function\"==typeof e?e:r(e),i):t},i.size=function(t){return arguments.length?(n=\"function\"==typeof t?t:r(+t),i):n},i.context=function(t){return arguments.length?(a=null==t?null:t,i):a},i},t.symbols=ot,t.symbolCircle=q,t.symbolCross=H,t.symbolDiamond=W,t.symbolSquare=Q,t.symbolStar=K,t.symbolTriangle=tt,t.symbolWye=it,t.curveBasisClosed=function(t){return new ut(t)},t.curveBasisOpen=function(t){return new ht(t)},t.curveBasis=function(t){return new ct(t)},t.curveBundle=pt,t.curveCardinalClosed=yt,t.curveCardinalOpen=bt,t.curveCardinal=vt,t.curveCatmullRomClosed=At,t.curveCatmullRomOpen=St,t.curveCatmullRom=kt,t.curveLinearClosed=function(t){return new Et(t)},t.curveLinear=w,t.curveMonotoneX=function(t){return new It(t)},t.curveMonotoneY=function(t){return new zt(t)},t.curveNatural=function(t){return new Rt(t)},t.curveStep=function(t){return new Bt(t,.5)},t.curveStepAfter=function(t){return new Bt(t,1)},t.curveStepBefore=function(t){return new Bt(t,0)},t.stack=function(){var t=r([]),e=jt,n=Nt,a=Vt;function i(r){var i,o,s=t.apply(this,arguments),l=r.length,c=s.length,u=new Array(c);for(i=0;i<c;++i){for(var h,f=s[i],p=u[i]=new Array(l),d=0;d<l;++d)p[d]=h=[0,+a(r[d],f,d,r)],h.data=r[d];p.key=f}for(i=0,o=e(u);i<c;++i)u[o[i]].index=i;return n(u,o),u}return i.keys=function(e){return arguments.length?(t=\"function\"==typeof e?e:r(R.call(e)),i):t},i.value=function(t){return arguments.length?(a=\"function\"==typeof t?t:r(+t),i):a},i.order=function(t){return arguments.length?(e=null==t?jt:\"function\"==typeof t?t:r(R.call(t)),i):e},i.offset=function(t){return arguments.length?(n=null==t?Nt:t,i):n},i},t.stackOffsetExpand=function(t,e){if((n=t.length)>0){for(var r,n,a,i=0,o=t[0].length;i<o;++i){for(a=r=0;r<n;++r)a+=t[r][i][1]||0;if(a)for(r=0;r<n;++r)t[r][i][1]/=a}Nt(t,e)}},t.stackOffsetDiverging=function(t,e){if((s=t.length)>1)for(var r,n,a,i,o,s,l=0,c=t[e[0]].length;l<c;++l)for(i=o=0,r=0;r<s;++r)(a=(n=t[e[r]][l])[1]-n[0])>=0?(n[0]=i,n[1]=i+=a):a<0?(n[1]=o,n[0]=o+=a):n[0]=i},t.stackOffsetNone=Nt,t.stackOffsetSilhouette=function(t,e){if((r=t.length)>0){for(var r,n=0,a=t[e[0]],i=a.length;n<i;++n){for(var o=0,s=0;o<r;++o)s+=t[o][n][1]||0;a[n][1]+=a[n][0]=-s/2}Nt(t,e)}},t.stackOffsetWiggle=function(t,e){if((a=t.length)>0&&(n=(r=t[e[0]]).length)>0){for(var r,n,a,i=0,o=1;o<n;++o){for(var s=0,l=0,c=0;s<a;++s){for(var u=t[e[s]],h=u[o][1]||0,f=(h-(u[o-1][1]||0))/2,p=0;p<s;++p){var d=t[e[p]];f+=(d[o][1]||0)-(d[o-1][1]||0)}l+=h,c+=f*h}r[o-1][1]+=r[o-1][0]=i,l&&(i-=c/l)}r[o-1][1]+=r[o-1][0]=i,Nt(t,e)}},t.stackOrderAppearance=Ut,t.stackOrderAscending=Ht,t.stackOrderDescending=function(t){return Ht(t).reverse()},t.stackOrderInsideOut=function(t){var e,r,n=t.length,a=t.map(Gt),i=Ut(t),o=0,s=0,l=[],c=[];for(e=0;e<n;++e)r=i[e],o<s?(o+=a[r],l.push(r)):(s+=a[r],c.push(r));return c.reverse().concat(l)},t.stackOrderNone=jt,t.stackOrderReverse=function(t){return jt(t).reverse()},Object.defineProperty(t,\"__esModule\",{value:!0})},\"object\"==typeof r&&\"undefined\"!=typeof e?a(r,t(\"d3-path\")):a(n.d3=n.d3||{},n.d3)},{\"d3-path\":160}],163:[function(t,e,r){var n;n=this,function(t){\"use strict\";var e,r,n=0,a=0,i=0,o=1e3,s=0,l=0,c=0,u=\"object\"==typeof performance&&performance.now?performance:Date,h=\"object\"==typeof window&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(t){setTimeout(t,17)};function f(){return l||(h(p),l=u.now()+c)}function p(){l=0}function d(){this._call=this._time=this._next=null}function g(t,e,r){var n=new d;return n.restart(t,e,r),n}function v(){f(),++n;for(var t,r=e;r;)(t=l-r._time)>=0&&r._call.call(null,t),r=r._next;--n}function m(){l=(s=u.now())+c,n=a=0;try{v()}finally{n=0,function(){var t,n,a=e,i=1/0;for(;a;)a._call?(i>a._time&&(i=a._time),t=a,a=a._next):(n=a._next,a._next=null,a=t?t._next=n:e=n);r=t,x(i)}(),l=0}}function y(){var t=u.now(),e=t-s;e>o&&(c-=e,s=t)}function x(t){n||(a&&(a=clearTimeout(a)),t-l>24?(t<1/0&&(a=setTimeout(m,t-u.now()-c)),i&&(i=clearInterval(i))):(i||(s=u.now(),i=setInterval(y,o)),n=1,h(m)))}d.prototype=g.prototype={constructor:d,restart:function(t,n,a){if(\"function\"!=typeof t)throw new TypeError(\"callback is not a function\");a=(null==a?f():+a)+(null==n?0:+n),this._next||r===this||(r?r._next=this:e=this,r=this),this._call=t,this._time=a,x()},stop:function(){this._call&&(this._call=null,this._time=1/0,x())}};t.now=f,t.timer=g,t.timerFlush=v,t.timeout=function(t,e,r){var n=new d;return e=null==e?0:+e,n.restart(function(r){n.stop(),t(r+e)},e,r),n},t.interval=function(t,e,r){var n=new d,a=e;return null==e?(n.restart(t,e,r),n):(e=+e,r=null==r?f():+r,n.restart(function i(o){o+=a,n.restart(i,a+=e,r),t(o)},e,r),n)},Object.defineProperty(t,\"__esModule\",{value:!0})}(\"object\"==typeof r&&\"undefined\"!=typeof e?r:n.d3=n.d3||{})},{}],164:[function(t,e,r){!function(){var t={version:\"3.5.17\"},r=[].slice,n=function(t){return r.call(t)},a=this.document;function i(t){return t&&(t.ownerDocument||t.document||t).documentElement}function o(t){return t&&(t.ownerDocument&&t.ownerDocument.defaultView||t.document&&t||t.defaultView)}if(a)try{n(a.documentElement.childNodes)[0].nodeType}catch(t){n=function(t){for(var e=t.length,r=new Array(e);e--;)r[e]=t[e];return r}}if(Date.now||(Date.now=function(){return+new Date}),a)try{a.createElement(\"DIV\").style.setProperty(\"opacity\",0,\"\")}catch(t){var s=this.Element.prototype,l=s.setAttribute,c=s.setAttributeNS,u=this.CSSStyleDeclaration.prototype,h=u.setProperty;s.setAttribute=function(t,e){l.call(this,t,e+\"\")},s.setAttributeNS=function(t,e,r){c.call(this,t,e,r+\"\")},u.setProperty=function(t,e,r){h.call(this,t,e+\"\",r)}}function f(t,e){return t<e?-1:t>e?1:t>=e?0:NaN}function p(t){return null===t?NaN:+t}function d(t){return!isNaN(t)}function g(t){return{left:function(e,r,n,a){for(arguments.length<3&&(n=0),arguments.length<4&&(a=e.length);n<a;){var i=n+a>>>1;t(e[i],r)<0?n=i+1:a=i}return n},right:function(e,r,n,a){for(arguments.length<3&&(n=0),arguments.length<4&&(a=e.length);n<a;){var i=n+a>>>1;t(e[i],r)>0?a=i:n=i+1}return n}}}t.ascending=f,t.descending=function(t,e){return e<t?-1:e>t?1:e>=t?0:NaN},t.min=function(t,e){var r,n,a=-1,i=t.length;if(1===arguments.length){for(;++a<i;)if(null!=(n=t[a])&&n>=n){r=n;break}for(;++a<i;)null!=(n=t[a])&&r>n&&(r=n)}else{for(;++a<i;)if(null!=(n=e.call(t,t[a],a))&&n>=n){r=n;break}for(;++a<i;)null!=(n=e.call(t,t[a],a))&&r>n&&(r=n)}return r},t.max=function(t,e){var r,n,a=-1,i=t.length;if(1===arguments.length){for(;++a<i;)if(null!=(n=t[a])&&n>=n){r=n;break}for(;++a<i;)null!=(n=t[a])&&n>r&&(r=n)}else{for(;++a<i;)if(null!=(n=e.call(t,t[a],a))&&n>=n){r=n;break}for(;++a<i;)null!=(n=e.call(t,t[a],a))&&n>r&&(r=n)}return r},t.extent=function(t,e){var r,n,a,i=-1,o=t.length;if(1===arguments.length){for(;++i<o;)if(null!=(n=t[i])&&n>=n){r=a=n;break}for(;++i<o;)null!=(n=t[i])&&(r>n&&(r=n),a<n&&(a=n))}else{for(;++i<o;)if(null!=(n=e.call(t,t[i],i))&&n>=n){r=a=n;break}for(;++i<o;)null!=(n=e.call(t,t[i],i))&&(r>n&&(r=n),a<n&&(a=n))}return[r,a]},t.sum=function(t,e){var r,n=0,a=t.length,i=-1;if(1===arguments.length)for(;++i<a;)d(r=+t[i])&&(n+=r);else for(;++i<a;)d(r=+e.call(t,t[i],i))&&(n+=r);return n},t.mean=function(t,e){var r,n=0,a=t.length,i=-1,o=a;if(1===arguments.length)for(;++i<a;)d(r=p(t[i]))?n+=r:--o;else for(;++i<a;)d(r=p(e.call(t,t[i],i)))?n+=r:--o;if(o)return n/o},t.quantile=function(t,e){var r=(t.length-1)*e+1,n=Math.floor(r),a=+t[n-1],i=r-n;return i?a+i*(t[n]-a):a},t.median=function(e,r){var n,a=[],i=e.length,o=-1;if(1===arguments.length)for(;++o<i;)d(n=p(e[o]))&&a.push(n);else for(;++o<i;)d(n=p(r.call(e,e[o],o)))&&a.push(n);if(a.length)return t.quantile(a.sort(f),.5)},t.variance=function(t,e){var r,n,a=t.length,i=0,o=0,s=-1,l=0;if(1===arguments.length)for(;++s<a;)d(r=p(t[s]))&&(o+=(n=r-i)*(r-(i+=n/++l)));else for(;++s<a;)d(r=p(e.call(t,t[s],s)))&&(o+=(n=r-i)*(r-(i+=n/++l)));if(l>1)return o/(l-1)},t.deviation=function(){var e=t.variance.apply(this,arguments);return e?Math.sqrt(e):e};var v=g(f);function m(t){return t.length}t.bisectLeft=v.left,t.bisect=t.bisectRight=v.right,t.bisector=function(t){return g(1===t.length?function(e,r){return f(t(e),r)}:t)},t.shuffle=function(t,e,r){(i=arguments.length)<3&&(r=t.length,i<2&&(e=0));for(var n,a,i=r-e;i;)a=Math.random()*i--|0,n=t[i+e],t[i+e]=t[a+e],t[a+e]=n;return t},t.permute=function(t,e){for(var r=e.length,n=new Array(r);r--;)n[r]=t[e[r]];return n},t.pairs=function(t){for(var e=0,r=t.length-1,n=t[0],a=new Array(r<0?0:r);e<r;)a[e]=[n,n=t[++e]];return a},t.transpose=function(e){if(!(i=e.length))return[];for(var r=-1,n=t.min(e,m),a=new Array(n);++r<n;)for(var i,o=-1,s=a[r]=new Array(i);++o<i;)s[o]=e[o][r];return a},t.zip=function(){return t.transpose(arguments)},t.keys=function(t){var e=[];for(var r in t)e.push(r);return e},t.values=function(t){var e=[];for(var r in t)e.push(t[r]);return e},t.entries=function(t){var e=[];for(var r in t)e.push({key:r,value:t[r]});return e},t.merge=function(t){for(var e,r,n,a=t.length,i=-1,o=0;++i<a;)o+=t[i].length;for(r=new Array(o);--a>=0;)for(e=(n=t[a]).length;--e>=0;)r[--o]=n[e];return r};var y=Math.abs;function x(t,e){for(var r in e)Object.defineProperty(t.prototype,r,{value:e[r],enumerable:!1})}function b(){this._=Object.create(null)}t.range=function(t,e,r){if(arguments.length<3&&(r=1,arguments.length<2&&(e=t,t=0)),(e-t)/r==1/0)throw new Error(\"infinite range\");var n,a=[],i=function(t){var e=1;for(;t*e%1;)e*=10;return e}(y(r)),o=-1;if(t*=i,e*=i,(r*=i)<0)for(;(n=t+r*++o)>e;)a.push(n/i);else for(;(n=t+r*++o)<e;)a.push(n/i);return a},t.map=function(t,e){var r=new b;if(t instanceof b)t.forEach(function(t,e){r.set(t,e)});else if(Array.isArray(t)){var n,a=-1,i=t.length;if(1===arguments.length)for(;++a<i;)r.set(a,t[a]);else for(;++a<i;)r.set(e.call(t,n=t[a],a),n)}else for(var o in t)r.set(o,t[o]);return r};var _=\"__proto__\",w=\"\\0\";function k(t){return(t+=\"\")===_||t[0]===w?w+t:t}function T(t){return(t+=\"\")[0]===w?t.slice(1):t}function A(t){return k(t)in this._}function M(t){return(t=k(t))in this._&&delete this._[t]}function S(){var t=[];for(var e in this._)t.push(T(e));return t}function E(){var t=0;for(var e in this._)++t;return t}function C(){for(var t in this._)return!1;return!0}function L(){this._=Object.create(null)}function P(t){return t}function O(t,e,r){return function(){var n=r.apply(e,arguments);return n===e?t:n}}function I(t,e){if(e in t)return e;e=e.charAt(0).toUpperCase()+e.slice(1);for(var r=0,n=z.length;r<n;++r){var a=z[r]+e;if(a in t)return a}}x(b,{has:A,get:function(t){return this._[k(t)]},set:function(t,e){return this._[k(t)]=e},remove:M,keys:S,values:function(){var t=[];for(var e in this._)t.push(this._[e]);return t},entries:function(){var t=[];for(var e in this._)t.push({key:T(e),value:this._[e]});return t},size:E,empty:C,forEach:function(t){for(var e in this._)t.call(this,T(e),this._[e])}}),t.nest=function(){var e,r,n={},a=[],i=[];function o(t,i,s){if(s>=a.length)return r?r.call(n,i):e?i.sort(e):i;for(var l,c,u,h,f=-1,p=i.length,d=a[s++],g=new b;++f<p;)(h=g.get(l=d(c=i[f])))?h.push(c):g.set(l,[c]);return t?(c=t(),u=function(e,r){c.set(e,o(t,r,s))}):(c={},u=function(e,r){c[e]=o(t,r,s)}),g.forEach(u),c}return n.map=function(t,e){return o(e,t,0)},n.entries=function(e){return function t(e,r){if(r>=a.length)return e;var n=[],o=i[r++];return e.forEach(function(e,a){n.push({key:e,values:t(a,r)})}),o?n.sort(function(t,e){return o(t.key,e.key)}):n}(o(t.map,e,0),0)},n.key=function(t){return a.push(t),n},n.sortKeys=function(t){return i[a.length-1]=t,n},n.sortValues=function(t){return e=t,n},n.rollup=function(t){return r=t,n},n},t.set=function(t){var e=new L;if(t)for(var r=0,n=t.length;r<n;++r)e.add(t[r]);return e},x(L,{has:A,add:function(t){return this._[k(t+=\"\")]=!0,t},remove:M,values:S,size:E,empty:C,forEach:function(t){for(var e in this._)t.call(this,T(e))}}),t.behavior={},t.rebind=function(t,e){for(var r,n=1,a=arguments.length;++n<a;)t[r=arguments[n]]=O(t,e,e[r]);return t};var z=[\"webkit\",\"ms\",\"moz\",\"Moz\",\"o\",\"O\"];function D(){}function R(){}function F(t){var e=[],r=new b;function n(){for(var r,n=e,a=-1,i=n.length;++a<i;)(r=n[a].on)&&r.apply(this,arguments);return t}return n.on=function(n,a){var i,o=r.get(n);return arguments.length<2?o&&o.on:(o&&(o.on=null,e=e.slice(0,i=e.indexOf(o)).concat(e.slice(i+1)),r.remove(n)),a&&e.push(r.set(n,{on:a})),t)},n}function B(){t.event.preventDefault()}function N(){for(var e,r=t.event;e=r.sourceEvent;)r=e;return r}function j(e){for(var r=new R,n=0,a=arguments.length;++n<a;)r[arguments[n]]=F(r);return r.of=function(n,a){return function(i){try{var o=i.sourceEvent=t.event;i.target=e,t.event=i,r[i.type].apply(n,a)}finally{t.event=o}}},r}t.dispatch=function(){for(var t=new R,e=-1,r=arguments.length;++e<r;)t[arguments[e]]=F(t);return t},R.prototype.on=function(t,e){var r=t.indexOf(\".\"),n=\"\";if(r>=0&&(n=t.slice(r+1),t=t.slice(0,r)),t)return arguments.length<2?this[t].on(n):this[t].on(n,e);if(2===arguments.length){if(null==e)for(t in this)this.hasOwnProperty(t)&&this[t].on(n,null);return this}},t.event=null,t.requote=function(t){return t.replace(V,\"\\\\$&\")};var V=/[\\\\\\^\\$\\*\\+\\?\\|\\[\\]\\(\\)\\.\\{\\}]/g,U={}.__proto__?function(t,e){t.__proto__=e}:function(t,e){for(var r in e)t[r]=e[r]};function q(t){return U(t,W),t}var H=function(t,e){return e.querySelector(t)},G=function(t,e){return e.querySelectorAll(t)},Y=function(t,e){var r=t.matches||t[I(t,\"matchesSelector\")];return(Y=function(t,e){return r.call(t,e)})(t,e)};\"function\"==typeof Sizzle&&(H=function(t,e){return Sizzle(t,e)[0]||null},G=Sizzle,Y=Sizzle.matchesSelector),t.selection=function(){return t.select(a.documentElement)};var W=t.selection.prototype=[];function X(t){return\"function\"==typeof t?t:function(){return H(t,this)}}function Z(t){return\"function\"==typeof t?t:function(){return G(t,this)}}W.select=function(t){var e,r,n,a,i=[];t=X(t);for(var o=-1,s=this.length;++o<s;){i.push(e=[]),e.parentNode=(n=this[o]).parentNode;for(var l=-1,c=n.length;++l<c;)(a=n[l])?(e.push(r=t.call(a,a.__data__,l,o)),r&&\"__data__\"in a&&(r.__data__=a.__data__)):e.push(null)}return q(i)},W.selectAll=function(t){var e,r,a=[];t=Z(t);for(var i=-1,o=this.length;++i<o;)for(var s=this[i],l=-1,c=s.length;++l<c;)(r=s[l])&&(a.push(e=n(t.call(r,r.__data__,l,i))),e.parentNode=r);return q(a)};var J=\"http://www.w3.org/1999/xhtml\",K={svg:\"http://www.w3.org/2000/svg\",xhtml:J,xlink:\"http://www.w3.org/1999/xlink\",xml:\"http://www.w3.org/XML/1998/namespace\",xmlns:\"http://www.w3.org/2000/xmlns/\"};function Q(e,r){return e=t.ns.qualify(e),null==r?e.local?function(){this.removeAttributeNS(e.space,e.local)}:function(){this.removeAttribute(e)}:\"function\"==typeof r?e.local?function(){var t=r.apply(this,arguments);null==t?this.removeAttributeNS(e.space,e.local):this.setAttributeNS(e.space,e.local,t)}:function(){var t=r.apply(this,arguments);null==t?this.removeAttribute(e):this.setAttribute(e,t)}:e.local?function(){this.setAttributeNS(e.space,e.local,r)}:function(){this.setAttribute(e,r)}}function $(t){return t.trim().replace(/\\s+/g,\" \")}function tt(e){return new RegExp(\"(?:^|\\\\s+)\"+t.requote(e)+\"(?:\\\\s+|$)\",\"g\")}function et(t){return(t+\"\").trim().split(/^|\\s+/)}function rt(t,e){var r=(t=et(t).map(nt)).length;return\"function\"==typeof e?function(){for(var n=-1,a=e.apply(this,arguments);++n<r;)t[n](this,a)}:function(){for(var n=-1;++n<r;)t[n](this,e)}}function nt(t){var e=tt(t);return function(r,n){if(a=r.classList)return n?a.add(t):a.remove(t);var a=r.getAttribute(\"class\")||\"\";n?(e.lastIndex=0,e.test(a)||r.setAttribute(\"class\",$(a+\" \"+t))):r.setAttribute(\"class\",$(a.replace(e,\" \")))}}function at(t,e,r){return null==e?function(){this.style.removeProperty(t)}:\"function\"==typeof e?function(){var n=e.apply(this,arguments);null==n?this.style.removeProperty(t):this.style.setProperty(t,n,r)}:function(){this.style.setProperty(t,e,r)}}function it(t,e){return null==e?function(){delete this[t]}:\"function\"==typeof e?function(){var r=e.apply(this,arguments);null==r?delete this[t]:this[t]=r}:function(){this[t]=e}}function ot(e){return\"function\"==typeof e?e:(e=t.ns.qualify(e)).local?function(){return this.ownerDocument.createElementNS(e.space,e.local)}:function(){var t=this.ownerDocument,r=this.namespaceURI;return r===J&&t.documentElement.namespaceURI===J?t.createElement(e):t.createElementNS(r,e)}}function st(){var t=this.parentNode;t&&t.removeChild(this)}function lt(t){return{__data__:t}}function ct(t){return function(){return Y(this,t)}}function ut(t,e){for(var r=0,n=t.length;r<n;r++)for(var a,i=t[r],o=0,s=i.length;o<s;o++)(a=i[o])&&e(a,o,r);return t}function ht(t){return U(t,ft),t}t.ns={prefix:K,qualify:function(t){var e=t.indexOf(\":\"),r=t;return e>=0&&\"xmlns\"!==(r=t.slice(0,e))&&(t=t.slice(e+1)),K.hasOwnProperty(r)?{space:K[r],local:t}:t}},W.attr=function(e,r){if(arguments.length<2){if(\"string\"==typeof e){var n=this.node();return(e=t.ns.qualify(e)).local?n.getAttributeNS(e.space,e.local):n.getAttribute(e)}for(r in e)this.each(Q(r,e[r]));return this}return this.each(Q(e,r))},W.classed=function(t,e){if(arguments.length<2){if(\"string\"==typeof t){var r=this.node(),n=(t=et(t)).length,a=-1;if(e=r.classList){for(;++a<n;)if(!e.contains(t[a]))return!1}else for(e=r.getAttribute(\"class\");++a<n;)if(!tt(t[a]).test(e))return!1;return!0}for(e in t)this.each(rt(e,t[e]));return this}return this.each(rt(t,e))},W.style=function(t,e,r){var n=arguments.length;if(n<3){if(\"string\"!=typeof t){for(r in n<2&&(e=\"\"),t)this.each(at(r,t[r],e));return this}if(n<2){var a=this.node();return o(a).getComputedStyle(a,null).getPropertyValue(t)}r=\"\"}return this.each(at(t,e,r))},W.property=function(t,e){if(arguments.length<2){if(\"string\"==typeof t)return this.node()[t];for(e in t)this.each(it(e,t[e]));return this}return this.each(it(t,e))},W.text=function(t){return arguments.length?this.each(\"function\"==typeof t?function(){var e=t.apply(this,arguments);this.textContent=null==e?\"\":e}:null==t?function(){this.textContent=\"\"}:function(){this.textContent=t}):this.node().textContent},W.html=function(t){return arguments.length?this.each(\"function\"==typeof t?function(){var e=t.apply(this,arguments);this.innerHTML=null==e?\"\":e}:null==t?function(){this.innerHTML=\"\"}:function(){this.innerHTML=t}):this.node().innerHTML},W.append=function(t){return t=ot(t),this.select(function(){return this.appendChild(t.apply(this,arguments))})},W.insert=function(t,e){return t=ot(t),e=X(e),this.select(function(){return this.insertBefore(t.apply(this,arguments),e.apply(this,arguments)||null)})},W.remove=function(){return this.each(st)},W.data=function(t,e){var r,n,a=-1,i=this.length;if(!arguments.length){for(t=new Array(i=(r=this[0]).length);++a<i;)(n=r[a])&&(t[a]=n.__data__);return t}function o(t,r){var n,a,i,o=t.length,u=r.length,h=Math.min(o,u),f=new Array(u),p=new Array(u),d=new Array(o);if(e){var g,v=new b,m=new Array(o);for(n=-1;++n<o;)(a=t[n])&&(v.has(g=e.call(a,a.__data__,n))?d[n]=a:v.set(g,a),m[n]=g);for(n=-1;++n<u;)(a=v.get(g=e.call(r,i=r[n],n)))?!0!==a&&(f[n]=a,a.__data__=i):p[n]=lt(i),v.set(g,!0);for(n=-1;++n<o;)n in m&&!0!==v.get(m[n])&&(d[n]=t[n])}else{for(n=-1;++n<h;)a=t[n],i=r[n],a?(a.__data__=i,f[n]=a):p[n]=lt(i);for(;n<u;++n)p[n]=lt(r[n]);for(;n<o;++n)d[n]=t[n]}p.update=f,p.parentNode=f.parentNode=d.parentNode=t.parentNode,s.push(p),l.push(f),c.push(d)}var s=ht([]),l=q([]),c=q([]);if(\"function\"==typeof t)for(;++a<i;)o(r=this[a],t.call(r,r.parentNode.__data__,a));else for(;++a<i;)o(r=this[a],t);return l.enter=function(){return s},l.exit=function(){return c},l},W.datum=function(t){return arguments.length?this.property(\"__data__\",t):this.property(\"__data__\")},W.filter=function(t){var e,r,n,a=[];\"function\"!=typeof t&&(t=ct(t));for(var i=0,o=this.length;i<o;i++){a.push(e=[]),e.parentNode=(r=this[i]).parentNode;for(var s=0,l=r.length;s<l;s++)(n=r[s])&&t.call(n,n.__data__,s,i)&&e.push(n)}return q(a)},W.order=function(){for(var t=-1,e=this.length;++t<e;)for(var r,n=this[t],a=n.length-1,i=n[a];--a>=0;)(r=n[a])&&(i&&i!==r.nextSibling&&i.parentNode.insertBefore(r,i),i=r);return this},W.sort=function(t){t=function(t){arguments.length||(t=f);return function(e,r){return e&&r?t(e.__data__,r.__data__):!e-!r}}.apply(this,arguments);for(var e=-1,r=this.length;++e<r;)this[e].sort(t);return this.order()},W.each=function(t){return ut(this,function(e,r,n){t.call(e,e.__data__,r,n)})},W.call=function(t){var e=n(arguments);return t.apply(e[0]=this,e),this},W.empty=function(){return!this.node()},W.node=function(){for(var t=0,e=this.length;t<e;t++)for(var r=this[t],n=0,a=r.length;n<a;n++){var i=r[n];if(i)return i}return null},W.size=function(){var t=0;return ut(this,function(){++t}),t};var ft=[];function pt(e,r,a){var i=\"__on\"+e,o=e.indexOf(\".\"),s=gt;o>0&&(e=e.slice(0,o));var l=dt.get(e);function c(){var t=this[i];t&&(this.removeEventListener(e,t,t.$),delete this[i])}return l&&(e=l,s=vt),o?r?function(){var t=s(r,n(arguments));c.call(this),this.addEventListener(e,this[i]=t,t.$=a),t._=r}:c:r?D:function(){var r,n=new RegExp(\"^__on([^.]+)\"+t.requote(e)+\"$\");for(var a in this)if(r=a.match(n)){var i=this[a];this.removeEventListener(r[1],i,i.$),delete this[a]}}}t.selection.enter=ht,t.selection.enter.prototype=ft,ft.append=W.append,ft.empty=W.empty,ft.node=W.node,ft.call=W.call,ft.size=W.size,ft.select=function(t){for(var e,r,n,a,i,o=[],s=-1,l=this.length;++s<l;){n=(a=this[s]).update,o.push(e=[]),e.parentNode=a.parentNode;for(var c=-1,u=a.length;++c<u;)(i=a[c])?(e.push(n[c]=r=t.call(a.parentNode,i.__data__,c,s)),r.__data__=i.__data__):e.push(null)}return q(o)},ft.insert=function(t,e){var r,n,a;return arguments.length<2&&(r=this,e=function(t,e,i){var o,s=r[i].update,l=s.length;for(i!=a&&(a=i,n=0),e>=n&&(n=e+1);!(o=s[n])&&++n<l;);return o}),W.insert.call(this,t,e)},t.select=function(t){var e;return\"string\"==typeof t?(e=[H(t,a)]).parentNode=a.documentElement:(e=[t]).parentNode=i(t),q([e])},t.selectAll=function(t){var e;return\"string\"==typeof t?(e=n(G(t,a))).parentNode=a.documentElement:(e=n(t)).parentNode=null,q([e])},W.on=function(t,e,r){var n=arguments.length;if(n<3){if(\"string\"!=typeof t){for(r in n<2&&(e=!1),t)this.each(pt(r,t[r],e));return this}if(n<2)return(n=this.node()[\"__on\"+t])&&n._;r=!1}return this.each(pt(t,e,r))};var dt=t.map({mouseenter:\"mouseover\",mouseleave:\"mouseout\"});function gt(e,r){return function(n){var a=t.event;t.event=n,r[0]=this.__data__;try{e.apply(this,r)}finally{t.event=a}}}function vt(t,e){var r=gt(t,e);return function(t){var e=t.relatedTarget;e&&(e===this||8&e.compareDocumentPosition(this))||r.call(this,t)}}a&&dt.forEach(function(t){\"on\"+t in a&&dt.remove(t)});var mt,yt=0;function xt(e){var r=\".dragsuppress-\"+ ++yt,n=\"click\"+r,a=t.select(o(e)).on(\"touchmove\"+r,B).on(\"dragstart\"+r,B).on(\"selectstart\"+r,B);if(null==mt&&(mt=!(\"onselectstart\"in e)&&I(e.style,\"userSelect\")),mt){var s=i(e).style,l=s[mt];s[mt]=\"none\"}return function(t){if(a.on(r,null),mt&&(s[mt]=l),t){var e=function(){a.on(n,null)};a.on(n,function(){B(),e()},!0),setTimeout(e,0)}}}t.mouse=function(t){return _t(t,N())};var bt=this.navigator&&/WebKit/.test(this.navigator.userAgent)?-1:0;function _t(e,r){r.changedTouches&&(r=r.changedTouches[0]);var n=e.ownerSVGElement||e;if(n.createSVGPoint){var a=n.createSVGPoint();if(bt<0){var i=o(e);if(i.scrollX||i.scrollY){var s=(n=t.select(\"body\").append(\"svg\").style({position:\"absolute\",top:0,left:0,margin:0,padding:0,border:\"none\"},\"important\"))[0][0].getScreenCTM();bt=!(s.f||s.e),n.remove()}}return bt?(a.x=r.pageX,a.y=r.pageY):(a.x=r.clientX,a.y=r.clientY),[(a=a.matrixTransform(e.getScreenCTM().inverse())).x,a.y]}var l=e.getBoundingClientRect();return[r.clientX-l.left-e.clientLeft,r.clientY-l.top-e.clientTop]}function wt(){return t.event.changedTouches[0].identifier}t.touch=function(t,e,r){if(arguments.length<3&&(r=e,e=N().changedTouches),e)for(var n,a=0,i=e.length;a<i;++a)if((n=e[a]).identifier===r)return _t(t,n)},t.behavior.drag=function(){var e=j(i,\"drag\",\"dragstart\",\"dragend\"),r=null,n=s(D,t.mouse,o,\"mousemove\",\"mouseup\"),a=s(wt,t.touch,P,\"touchmove\",\"touchend\");function i(){this.on(\"mousedown.drag\",n).on(\"touchstart.drag\",a)}function s(n,a,i,o,s){return function(){var l,c=t.event.target.correspondingElement||t.event.target,u=this.parentNode,h=e.of(this,arguments),f=0,p=n(),d=\".drag\"+(null==p?\"\":\"-\"+p),g=t.select(i(c)).on(o+d,function(){var t,e,r=a(u,p);if(!r)return;t=r[0]-m[0],e=r[1]-m[1],f|=t|e,m=r,h({type:\"drag\",x:r[0]+l[0],y:r[1]+l[1],dx:t,dy:e})}).on(s+d,function(){if(!a(u,p))return;g.on(o+d,null).on(s+d,null),v(f),h({type:\"dragend\"})}),v=xt(c),m=a(u,p);l=r?[(l=r.apply(this,arguments)).x-m[0],l.y-m[1]]:[0,0],h({type:\"dragstart\"})}}return i.origin=function(t){return arguments.length?(r=t,i):r},t.rebind(i,e,\"on\")},t.touches=function(t,e){return arguments.length<2&&(e=N().touches),e?n(e).map(function(e){var r=_t(t,e);return r.identifier=e.identifier,r}):[]};var kt=1e-6,Tt=kt*kt,At=Math.PI,Mt=2*At,St=Mt-kt,Et=At/2,Ct=At/180,Lt=180/At;function Pt(t){return t>0?1:t<0?-1:0}function Ot(t,e,r){return(e[0]-t[0])*(r[1]-t[1])-(e[1]-t[1])*(r[0]-t[0])}function It(t){return t>1?0:t<-1?At:Math.acos(t)}function zt(t){return t>1?Et:t<-1?-Et:Math.asin(t)}function Dt(t){return((t=Math.exp(t))+1/t)/2}function Rt(t){return(t=Math.sin(t/2))*t}var Ft=Math.SQRT2;t.interpolateZoom=function(t,e){var r,n,a=t[0],i=t[1],o=t[2],s=e[0],l=e[1],c=e[2],u=s-a,h=l-i,f=u*u+h*h;if(f<Tt)n=Math.log(c/o)/Ft,r=function(t){return[a+t*u,i+t*h,o*Math.exp(Ft*t*n)]};else{var p=Math.sqrt(f),d=(c*c-o*o+4*f)/(2*o*2*p),g=(c*c-o*o-4*f)/(2*c*2*p),v=Math.log(Math.sqrt(d*d+1)-d),m=Math.log(Math.sqrt(g*g+1)-g);n=(m-v)/Ft,r=function(t){var e,r=t*n,s=Dt(v),l=o/(2*p)*(s*(e=Ft*r+v,((e=Math.exp(2*e))-1)/(e+1))-function(t){return((t=Math.exp(t))-1/t)/2}(v));return[a+l*u,i+l*h,o*s/Dt(Ft*r+v)]}}return r.duration=1e3*n,r},t.behavior.zoom=function(){var e,r,n,i,s,l,c,u,h,f={x:0,y:0,k:1},p=[960,500],d=jt,g=250,v=0,m=\"mousedown.zoom\",y=\"mousemove.zoom\",x=\"mouseup.zoom\",b=\"touchstart.zoom\",_=j(w,\"zoomstart\",\"zoom\",\"zoomend\");function w(t){t.on(m,P).on(Nt+\".zoom\",I).on(\"dblclick.zoom\",z).on(b,O)}function k(t){return[(t[0]-f.x)/f.k,(t[1]-f.y)/f.k]}function T(t){f.k=Math.max(d[0],Math.min(d[1],t))}function A(t,e){e=function(t){return[t[0]*f.k+f.x,t[1]*f.k+f.y]}(e),f.x+=t[0]-e[0],f.y+=t[1]-e[1]}function M(e,n,a,i){e.__chart__={x:f.x,y:f.y,k:f.k},T(Math.pow(2,i)),A(r=n,a),e=t.select(e),g>0&&(e=e.transition().duration(g)),e.call(w.event)}function S(){c&&c.domain(l.range().map(function(t){return(t-f.x)/f.k}).map(l.invert)),h&&h.domain(u.range().map(function(t){return(t-f.y)/f.k}).map(u.invert))}function E(t){v++||t({type:\"zoomstart\"})}function C(t){S(),t({type:\"zoom\",scale:f.k,translate:[f.x,f.y]})}function L(t){--v||(t({type:\"zoomend\"}),r=null)}function P(){var e=this,r=_.of(e,arguments),n=0,a=t.select(o(e)).on(y,function(){n=1,A(t.mouse(e),i),C(r)}).on(x,function(){a.on(y,null).on(x,null),s(n),L(r)}),i=k(t.mouse(e)),s=xt(e);hs.call(e),E(r)}function O(){var e,r=this,n=_.of(r,arguments),a={},i=0,o=\".zoom-\"+t.event.changedTouches[0].identifier,l=\"touchmove\"+o,c=\"touchend\"+o,u=[],h=t.select(r),p=xt(r);function d(){var n=t.touches(r);return e=f.k,n.forEach(function(t){t.identifier in a&&(a[t.identifier]=k(t))}),n}function g(){var e=t.event.target;t.select(e).on(l,v).on(c,y),u.push(e);for(var n=t.event.changedTouches,o=0,h=n.length;o<h;++o)a[n[o].identifier]=null;var p=d(),g=Date.now();if(1===p.length){if(g-s<500){var m=p[0];M(r,m,a[m.identifier],Math.floor(Math.log(f.k)/Math.LN2)+1),B()}s=g}else if(p.length>1){m=p[0];var x=p[1],b=m[0]-x[0],_=m[1]-x[1];i=b*b+_*_}}function v(){var o,l,c,u,h=t.touches(r);hs.call(r);for(var f=0,p=h.length;f<p;++f,u=null)if(c=h[f],u=a[c.identifier]){if(l)break;o=c,l=u}if(u){var d=(d=c[0]-o[0])*d+(d=c[1]-o[1])*d,g=i&&Math.sqrt(d/i);o=[(o[0]+c[0])/2,(o[1]+c[1])/2],l=[(l[0]+u[0])/2,(l[1]+u[1])/2],T(g*e)}s=null,A(o,l),C(n)}function y(){if(t.event.touches.length){for(var e=t.event.changedTouches,r=0,i=e.length;r<i;++r)delete a[e[r].identifier];for(var s in a)return void d()}t.selectAll(u).on(o,null),h.on(m,P).on(b,O),p(),L(n)}g(),E(n),h.on(m,null).on(b,g)}function I(){var a=_.of(this,arguments);i?clearTimeout(i):(hs.call(this),e=k(r=n||t.mouse(this)),E(a)),i=setTimeout(function(){i=null,L(a)},50),B(),T(Math.pow(2,.002*Bt())*f.k),A(r,e),C(a)}function z(){var e=t.mouse(this),r=Math.log(f.k)/Math.LN2;M(this,e,k(e),t.event.shiftKey?Math.ceil(r)-1:Math.floor(r)+1)}return Nt||(Nt=\"onwheel\"in a?(Bt=function(){return-t.event.deltaY*(t.event.deltaMode?120:1)},\"wheel\"):\"onmousewheel\"in a?(Bt=function(){return t.event.wheelDelta},\"mousewheel\"):(Bt=function(){return-t.event.detail},\"MozMousePixelScroll\")),w.event=function(e){e.each(function(){var e=_.of(this,arguments),n=f;ds?t.select(this).transition().each(\"start.zoom\",function(){f=this.__chart__||{x:0,y:0,k:1},E(e)}).tween(\"zoom:zoom\",function(){var a=p[0],i=p[1],o=r?r[0]:a/2,s=r?r[1]:i/2,l=t.interpolateZoom([(o-f.x)/f.k,(s-f.y)/f.k,a/f.k],[(o-n.x)/n.k,(s-n.y)/n.k,a/n.k]);return function(t){var r=l(t),n=a/r[2];this.__chart__=f={x:o-r[0]*n,y:s-r[1]*n,k:n},C(e)}}).each(\"interrupt.zoom\",function(){L(e)}).each(\"end.zoom\",function(){L(e)}):(this.__chart__=f,E(e),C(e),L(e))})},w.translate=function(t){return arguments.length?(f={x:+t[0],y:+t[1],k:f.k},S(),w):[f.x,f.y]},w.scale=function(t){return arguments.length?(f={x:f.x,y:f.y,k:null},T(+t),S(),w):f.k},w.scaleExtent=function(t){return arguments.length?(d=null==t?jt:[+t[0],+t[1]],w):d},w.center=function(t){return arguments.length?(n=t&&[+t[0],+t[1]],w):n},w.size=function(t){return arguments.length?(p=t&&[+t[0],+t[1]],w):p},w.duration=function(t){return arguments.length?(g=+t,w):g},w.x=function(t){return arguments.length?(c=t,l=t.copy(),f={x:0,y:0,k:1},w):c},w.y=function(t){return arguments.length?(h=t,u=t.copy(),f={x:0,y:0,k:1},w):h},t.rebind(w,_,\"on\")};var Bt,Nt,jt=[0,1/0];function Vt(){}function Ut(t,e,r){return this instanceof Ut?(this.h=+t,this.s=+e,void(this.l=+r)):arguments.length<2?t instanceof Ut?new Ut(t.h,t.s,t.l):ue(\"\"+t,he,Ut):new Ut(t,e,r)}t.color=Vt,Vt.prototype.toString=function(){return this.rgb()+\"\"},t.hsl=Ut;var qt=Ut.prototype=new Vt;function Ht(t,e,r){var n,a;function i(t){return Math.round(255*function(t){return t>360?t-=360:t<0&&(t+=360),t<60?n+(a-n)*t/60:t<180?a:t<240?n+(a-n)*(240-t)/60:n}(t))}return t=isNaN(t)?0:(t%=360)<0?t+360:t,e=isNaN(e)?0:e<0?0:e>1?1:e,n=2*(r=r<0?0:r>1?1:r)-(a=r<=.5?r*(1+e):r+e-r*e),new ie(i(t+120),i(t),i(t-120))}function Gt(e,r,n){return this instanceof Gt?(this.h=+e,this.c=+r,void(this.l=+n)):arguments.length<2?e instanceof Gt?new Gt(e.h,e.c,e.l):ee(e instanceof Xt?e.l:(e=fe((e=t.rgb(e)).r,e.g,e.b)).l,e.a,e.b):new Gt(e,r,n)}qt.brighter=function(t){return t=Math.pow(.7,arguments.length?t:1),new Ut(this.h,this.s,this.l/t)},qt.darker=function(t){return t=Math.pow(.7,arguments.length?t:1),new Ut(this.h,this.s,t*this.l)},qt.rgb=function(){return Ht(this.h,this.s,this.l)},t.hcl=Gt;var Yt=Gt.prototype=new Vt;function Wt(t,e,r){return isNaN(t)&&(t=0),isNaN(e)&&(e=0),new Xt(r,Math.cos(t*=Ct)*e,Math.sin(t)*e)}function Xt(t,e,r){return this instanceof Xt?(this.l=+t,this.a=+e,void(this.b=+r)):arguments.length<2?t instanceof Xt?new Xt(t.l,t.a,t.b):t instanceof Gt?Wt(t.h,t.c,t.l):fe((t=ie(t)).r,t.g,t.b):new Xt(t,e,r)}Yt.brighter=function(t){return new Gt(this.h,this.c,Math.min(100,this.l+Zt*(arguments.length?t:1)))},Yt.darker=function(t){return new Gt(this.h,this.c,Math.max(0,this.l-Zt*(arguments.length?t:1)))},Yt.rgb=function(){return Wt(this.h,this.c,this.l).rgb()},t.lab=Xt;var Zt=18,Jt=.95047,Kt=1,Qt=1.08883,$t=Xt.prototype=new Vt;function te(t,e,r){var n=(t+16)/116,a=n+e/500,i=n-r/200;return new ie(ae(3.2404542*(a=re(a)*Jt)-1.5371385*(n=re(n)*Kt)-.4985314*(i=re(i)*Qt)),ae(-.969266*a+1.8760108*n+.041556*i),ae(.0556434*a-.2040259*n+1.0572252*i))}function ee(t,e,r){return t>0?new Gt(Math.atan2(r,e)*Lt,Math.sqrt(e*e+r*r),t):new Gt(NaN,NaN,t)}function re(t){return t>.206893034?t*t*t:(t-4/29)/7.787037}function ne(t){return t>.008856?Math.pow(t,1/3):7.787037*t+4/29}function ae(t){return Math.round(255*(t<=.00304?12.92*t:1.055*Math.pow(t,1/2.4)-.055))}function ie(t,e,r){return this instanceof ie?(this.r=~~t,this.g=~~e,void(this.b=~~r)):arguments.length<2?t instanceof ie?new ie(t.r,t.g,t.b):ue(\"\"+t,ie,Ht):new ie(t,e,r)}function oe(t){return new ie(t>>16,t>>8&255,255&t)}function se(t){return oe(t)+\"\"}$t.brighter=function(t){return new Xt(Math.min(100,this.l+Zt*(arguments.length?t:1)),this.a,this.b)},$t.darker=function(t){return new Xt(Math.max(0,this.l-Zt*(arguments.length?t:1)),this.a,this.b)},$t.rgb=function(){return te(this.l,this.a,this.b)},t.rgb=ie;var le=ie.prototype=new Vt;function ce(t){return t<16?\"0\"+Math.max(0,t).toString(16):Math.min(255,t).toString(16)}function ue(t,e,r){var n,a,i,o=0,s=0,l=0;if(n=/([a-z]+)\\((.*)\\)/.exec(t=t.toLowerCase()))switch(a=n[2].split(\",\"),n[1]){case\"hsl\":return r(parseFloat(a[0]),parseFloat(a[1])/100,parseFloat(a[2])/100);case\"rgb\":return e(de(a[0]),de(a[1]),de(a[2]))}return(i=ge.get(t))?e(i.r,i.g,i.b):(null==t||\"#\"!==t.charAt(0)||isNaN(i=parseInt(t.slice(1),16))||(4===t.length?(o=(3840&i)>>4,o|=o>>4,s=240&i,s|=s>>4,l=15&i,l|=l<<4):7===t.length&&(o=(16711680&i)>>16,s=(65280&i)>>8,l=255&i)),e(o,s,l))}function he(t,e,r){var n,a,i=Math.min(t/=255,e/=255,r/=255),o=Math.max(t,e,r),s=o-i,l=(o+i)/2;return s?(a=l<.5?s/(o+i):s/(2-o-i),n=t==o?(e-r)/s+(e<r?6:0):e==o?(r-t)/s+2:(t-e)/s+4,n*=60):(n=NaN,a=l>0&&l<1?0:n),new Ut(n,a,l)}function fe(t,e,r){var n=ne((.4124564*(t=pe(t))+.3575761*(e=pe(e))+.1804375*(r=pe(r)))/Jt),a=ne((.2126729*t+.7151522*e+.072175*r)/Kt);return Xt(116*a-16,500*(n-a),200*(a-ne((.0193339*t+.119192*e+.9503041*r)/Qt)))}function pe(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function de(t){var e=parseFloat(t);return\"%\"===t.charAt(t.length-1)?Math.round(2.55*e):e}le.brighter=function(t){t=Math.pow(.7,arguments.length?t:1);var e=this.r,r=this.g,n=this.b,a=30;return e||r||n?(e&&e<a&&(e=a),r&&r<a&&(r=a),n&&n<a&&(n=a),new ie(Math.min(255,e/t),Math.min(255,r/t),Math.min(255,n/t))):new ie(a,a,a)},le.darker=function(t){return new ie((t=Math.pow(.7,arguments.length?t:1))*this.r,t*this.g,t*this.b)},le.hsl=function(){return he(this.r,this.g,this.b)},le.toString=function(){return\"#\"+ce(this.r)+ce(this.g)+ce(this.b)};var ge=t.map({aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074});function ve(t){return\"function\"==typeof t?t:function(){return t}}function me(t){return function(e,r,n){return 2===arguments.length&&\"function\"==typeof r&&(n=r,r=null),ye(e,r,t,n)}}function ye(e,r,a,i){var o={},s=t.dispatch(\"beforesend\",\"progress\",\"load\",\"error\"),l={},c=new XMLHttpRequest,u=null;function h(){var t,e=c.status;if(!e&&function(t){var e=t.responseType;return e&&\"text\"!==e?t.response:t.responseText}(c)||e>=200&&e<300||304===e){try{t=a.call(o,c)}catch(t){return void s.error.call(o,t)}s.load.call(o,t)}else s.error.call(o,c)}return!this.XDomainRequest||\"withCredentials\"in c||!/^(http(s)?:)?\\/\\//.test(e)||(c=new XDomainRequest),\"onload\"in c?c.onload=c.onerror=h:c.onreadystatechange=function(){c.readyState>3&&h()},c.onprogress=function(e){var r=t.event;t.event=e;try{s.progress.call(o,c)}finally{t.event=r}},o.header=function(t,e){return t=(t+\"\").toLowerCase(),arguments.length<2?l[t]:(null==e?delete l[t]:l[t]=e+\"\",o)},o.mimeType=function(t){return arguments.length?(r=null==t?null:t+\"\",o):r},o.responseType=function(t){return arguments.length?(u=t,o):u},o.response=function(t){return a=t,o},[\"get\",\"post\"].forEach(function(t){o[t]=function(){return o.send.apply(o,[t].concat(n(arguments)))}}),o.send=function(t,n,a){if(2===arguments.length&&\"function\"==typeof n&&(a=n,n=null),c.open(t,e,!0),null==r||\"accept\"in l||(l.accept=r+\",*/*\"),c.setRequestHeader)for(var i in l)c.setRequestHeader(i,l[i]);return null!=r&&c.overrideMimeType&&c.overrideMimeType(r),null!=u&&(c.responseType=u),null!=a&&o.on(\"error\",a).on(\"load\",function(t){a(null,t)}),s.beforesend.call(o,c),c.send(null==n?null:n),o},o.abort=function(){return c.abort(),o},t.rebind(o,s,\"on\"),null==i?o:o.get(function(t){return 1===t.length?function(e,r){t(null==e?r:null)}:t}(i))}ge.forEach(function(t,e){ge.set(t,oe(e))}),t.functor=ve,t.xhr=me(P),t.dsv=function(t,e){var r=new RegExp('[\"'+t+\"\\n]\"),n=t.charCodeAt(0);function a(t,r,n){arguments.length<3&&(n=r,r=null);var a=ye(t,e,null==r?i:o(r),n);return a.row=function(t){return arguments.length?a.response(null==(r=t)?i:o(t)):r},a}function i(t){return a.parse(t.responseText)}function o(t){return function(e){return a.parse(e.responseText,t)}}function s(e){return e.map(l).join(t)}function l(t){return r.test(t)?'\"'+t.replace(/\\\"/g,'\"\"')+'\"':t}return a.parse=function(t,e){var r;return a.parseRows(t,function(t,n){if(r)return r(t,n-1);var a=new Function(\"d\",\"return {\"+t.map(function(t,e){return JSON.stringify(t)+\": d[\"+e+\"]\"}).join(\",\")+\"}\");r=e?function(t,r){return e(a(t),r)}:a})},a.parseRows=function(t,e){var r,a,i={},o={},s=[],l=t.length,c=0,u=0;function h(){if(c>=l)return o;if(a)return a=!1,i;var e=c;if(34===t.charCodeAt(e)){for(var r=e;r++<l;)if(34===t.charCodeAt(r)){if(34!==t.charCodeAt(r+1))break;++r}return c=r+2,13===(s=t.charCodeAt(r+1))?(a=!0,10===t.charCodeAt(r+2)&&++c):10===s&&(a=!0),t.slice(e+1,r).replace(/\"\"/g,'\"')}for(;c<l;){var s,u=1;if(10===(s=t.charCodeAt(c++)))a=!0;else if(13===s)a=!0,10===t.charCodeAt(c)&&(++c,++u);else if(s!==n)continue;return t.slice(e,c-u)}return t.slice(e)}for(;(r=h())!==o;){for(var f=[];r!==i&&r!==o;)f.push(r),r=h();e&&null==(f=e(f,u++))||s.push(f)}return s},a.format=function(e){if(Array.isArray(e[0]))return a.formatRows(e);var r=new L,n=[];return e.forEach(function(t){for(var e in t)r.has(e)||n.push(r.add(e))}),[n.map(l).join(t)].concat(e.map(function(e){return n.map(function(t){return l(e[t])}).join(t)})).join(\"\\n\")},a.formatRows=function(t){return t.map(s).join(\"\\n\")},a},t.csv=t.dsv(\",\",\"text/csv\"),t.tsv=t.dsv(\"\\t\",\"text/tab-separated-values\");var xe,be,_e,we,ke=this[I(this,\"requestAnimationFrame\")]||function(t){setTimeout(t,17)};function Te(t,e,r){var n=arguments.length;n<2&&(e=0),n<3&&(r=Date.now());var a={c:t,t:r+e,n:null};return be?be.n=a:xe=a,be=a,_e||(we=clearTimeout(we),_e=1,ke(Ae)),a}function Ae(){var t=Me(),e=Se()-t;e>24?(isFinite(e)&&(clearTimeout(we),we=setTimeout(Ae,e)),_e=0):(_e=1,ke(Ae))}function Me(){for(var t=Date.now(),e=xe;e;)t>=e.t&&e.c(t-e.t)&&(e.c=null),e=e.n;return t}function Se(){for(var t,e=xe,r=1/0;e;)e.c?(e.t<r&&(r=e.t),e=(t=e).n):e=t?t.n=e.n:xe=e.n;return be=t,r}function Ee(t,e){return e-(t?Math.ceil(Math.log(t)/Math.LN10):1)}t.timer=function(){Te.apply(this,arguments)},t.timer.flush=function(){Me(),Se()},t.round=function(t,e){return e?Math.round(t*(e=Math.pow(10,e)))/e:Math.round(t)};var Ce=[\"y\",\"z\",\"a\",\"f\",\"p\",\"n\",\"\\xb5\",\"m\",\"\",\"k\",\"M\",\"G\",\"T\",\"P\",\"E\",\"Z\",\"Y\"].map(function(t,e){var r=Math.pow(10,3*y(8-e));return{scale:e>8?function(t){return t/r}:function(t){return t*r},symbol:t}});t.formatPrefix=function(e,r){var n=0;return(e=+e)&&(e<0&&(e*=-1),r&&(e=t.round(e,Ee(e,r))),n=1+Math.floor(1e-12+Math.log(e)/Math.LN10),n=Math.max(-24,Math.min(24,3*Math.floor((n-1)/3)))),Ce[8+n/3]};var Le=/(?:([^{])?([<>=^]))?([+\\- ])?([$#])?(0)?(\\d+)?(,)?(\\.-?\\d+)?([a-z%])?/i,Pe=t.map({b:function(t){return t.toString(2)},c:function(t){return String.fromCharCode(t)},o:function(t){return t.toString(8)},x:function(t){return t.toString(16)},X:function(t){return t.toString(16).toUpperCase()},g:function(t,e){return t.toPrecision(e)},e:function(t,e){return t.toExponential(e)},f:function(t,e){return t.toFixed(e)},r:function(e,r){return(e=t.round(e,Ee(e,r))).toFixed(Math.max(0,Math.min(20,Ee(e*(1+1e-15),r))))}});function Oe(t){return t+\"\"}var Ie=t.time={},ze=Date;function De(){this._=new Date(arguments.length>1?Date.UTC.apply(this,arguments):arguments[0])}De.prototype={getDate:function(){return this._.getUTCDate()},getDay:function(){return this._.getUTCDay()},getFullYear:function(){return this._.getUTCFullYear()},getHours:function(){return this._.getUTCHours()},getMilliseconds:function(){return this._.getUTCMilliseconds()},getMinutes:function(){return this._.getUTCMinutes()},getMonth:function(){return this._.getUTCMonth()},getSeconds:function(){return this._.getUTCSeconds()},getTime:function(){return this._.getTime()},getTimezoneOffset:function(){return 0},valueOf:function(){return this._.valueOf()},setDate:function(){Re.setUTCDate.apply(this._,arguments)},setDay:function(){Re.setUTCDay.apply(this._,arguments)},setFullYear:function(){Re.setUTCFullYear.apply(this._,arguments)},setHours:function(){Re.setUTCHours.apply(this._,arguments)},setMilliseconds:function(){Re.setUTCMilliseconds.apply(this._,arguments)},setMinutes:function(){Re.setUTCMinutes.apply(this._,arguments)},setMonth:function(){Re.setUTCMonth.apply(this._,arguments)},setSeconds:function(){Re.setUTCSeconds.apply(this._,arguments)},setTime:function(){Re.setTime.apply(this._,arguments)}};var Re=Date.prototype;function Fe(t,e,r){function n(e){var r=t(e),n=i(r,1);return e-r<n-e?r:n}function a(r){return e(r=t(new ze(r-1)),1),r}function i(t,r){return e(t=new ze(+t),r),t}function o(t,n,i){var o=a(t),s=[];if(i>1)for(;o<n;)r(o)%i||s.push(new Date(+o)),e(o,1);else for(;o<n;)s.push(new Date(+o)),e(o,1);return s}t.floor=t,t.round=n,t.ceil=a,t.offset=i,t.range=o;var s=t.utc=Be(t);return s.floor=s,s.round=Be(n),s.ceil=Be(a),s.offset=Be(i),s.range=function(t,e,r){try{ze=De;var n=new De;return n._=t,o(n,e,r)}finally{ze=Date}},t}function Be(t){return function(e,r){try{ze=De;var n=new De;return n._=e,t(n,r)._}finally{ze=Date}}}Ie.year=Fe(function(t){return(t=Ie.day(t)).setMonth(0,1),t},function(t,e){t.setFullYear(t.getFullYear()+e)},function(t){return t.getFullYear()}),Ie.years=Ie.year.range,Ie.years.utc=Ie.year.utc.range,Ie.day=Fe(function(t){var e=new ze(2e3,0);return e.setFullYear(t.getFullYear(),t.getMonth(),t.getDate()),e},function(t,e){t.setDate(t.getDate()+e)},function(t){return t.getDate()-1}),Ie.days=Ie.day.range,Ie.days.utc=Ie.day.utc.range,Ie.dayOfYear=function(t){var e=Ie.year(t);return Math.floor((t-e-6e4*(t.getTimezoneOffset()-e.getTimezoneOffset()))/864e5)},[\"sunday\",\"monday\",\"tuesday\",\"wednesday\",\"thursday\",\"friday\",\"saturday\"].forEach(function(t,e){e=7-e;var r=Ie[t]=Fe(function(t){return(t=Ie.day(t)).setDate(t.getDate()-(t.getDay()+e)%7),t},function(t,e){t.setDate(t.getDate()+7*Math.floor(e))},function(t){var r=Ie.year(t).getDay();return Math.floor((Ie.dayOfYear(t)+(r+e)%7)/7)-(r!==e)});Ie[t+\"s\"]=r.range,Ie[t+\"s\"].utc=r.utc.range,Ie[t+\"OfYear\"]=function(t){var r=Ie.year(t).getDay();return Math.floor((Ie.dayOfYear(t)+(r+e)%7)/7)}}),Ie.week=Ie.sunday,Ie.weeks=Ie.sunday.range,Ie.weeks.utc=Ie.sunday.utc.range,Ie.weekOfYear=Ie.sundayOfYear;var Ne={\"-\":\"\",_:\" \",0:\"0\"},je=/^\\s*\\d+/,Ve=/^%/;function Ue(t,e,r){var n=t<0?\"-\":\"\",a=(n?-t:t)+\"\",i=a.length;return n+(i<r?new Array(r-i+1).join(e)+a:a)}function qe(e){return new RegExp(\"^(?:\"+e.map(t.requote).join(\"|\")+\")\",\"i\")}function He(t){for(var e=new b,r=-1,n=t.length;++r<n;)e.set(t[r].toLowerCase(),r);return e}function Ge(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r,r+1));return n?(t.w=+n[0],r+n[0].length):-1}function Ye(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r));return n?(t.U=+n[0],r+n[0].length):-1}function We(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r));return n?(t.W=+n[0],r+n[0].length):-1}function Xe(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r,r+4));return n?(t.y=+n[0],r+n[0].length):-1}function Ze(t,e,r){je.lastIndex=0;var n,a=je.exec(e.slice(r,r+2));return a?(t.y=(n=+a[0])+(n>68?1900:2e3),r+a[0].length):-1}function Je(t,e,r){return/^[+-]\\d{4}$/.test(e=e.slice(r,r+5))?(t.Z=-e,r+5):-1}function Ke(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r,r+2));return n?(t.m=n[0]-1,r+n[0].length):-1}function Qe(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r,r+2));return n?(t.d=+n[0],r+n[0].length):-1}function $e(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r,r+3));return n?(t.j=+n[0],r+n[0].length):-1}function tr(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r,r+2));return n?(t.H=+n[0],r+n[0].length):-1}function er(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r,r+2));return n?(t.M=+n[0],r+n[0].length):-1}function rr(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r,r+2));return n?(t.S=+n[0],r+n[0].length):-1}function nr(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r,r+3));return n?(t.L=+n[0],r+n[0].length):-1}function ar(t){var e=t.getTimezoneOffset(),r=e>0?\"-\":\"+\",n=y(e)/60|0,a=y(e)%60;return r+Ue(n,\"0\",2)+Ue(a,\"0\",2)}function ir(t,e,r){Ve.lastIndex=0;var n=Ve.exec(e.slice(r,r+1));return n?r+n[0].length:-1}function or(t){for(var e=t.length,r=-1;++r<e;)t[r][0]=this(t[r][0]);return function(e){for(var r=0,n=t[r];!n[1](e);)n=t[++r];return n[0](e)}}t.locale=function(e){return{numberFormat:function(e){var r=e.decimal,n=e.thousands,a=e.grouping,i=e.currency,o=a&&n?function(t,e){for(var r=t.length,i=[],o=0,s=a[0],l=0;r>0&&s>0&&(l+s+1>e&&(s=Math.max(1,e-l)),i.push(t.substring(r-=s,r+s)),!((l+=s+1)>e));)s=a[o=(o+1)%a.length];return i.reverse().join(n)}:P;return function(e){var n=Le.exec(e),a=n[1]||\" \",s=n[2]||\">\",l=n[3]||\"-\",c=n[4]||\"\",u=n[5],h=+n[6],f=n[7],p=n[8],d=n[9],g=1,v=\"\",m=\"\",y=!1,x=!0;switch(p&&(p=+p.substring(1)),(u||\"0\"===a&&\"=\"===s)&&(u=a=\"0\",s=\"=\"),d){case\"n\":f=!0,d=\"g\";break;case\"%\":g=100,m=\"%\",d=\"f\";break;case\"p\":g=100,m=\"%\",d=\"r\";break;case\"b\":case\"o\":case\"x\":case\"X\":\"#\"===c&&(v=\"0\"+d.toLowerCase());case\"c\":x=!1;case\"d\":y=!0,p=0;break;case\"s\":g=-1,d=\"r\"}\"$\"===c&&(v=i[0],m=i[1]),\"r\"!=d||p||(d=\"g\"),null!=p&&(\"g\"==d?p=Math.max(1,Math.min(21,p)):\"e\"!=d&&\"f\"!=d||(p=Math.max(0,Math.min(20,p)))),d=Pe.get(d)||Oe;var b=u&&f;return function(e){var n=m;if(y&&e%1)return\"\";var i=e<0||0===e&&1/e<0?(e=-e,\"-\"):\"-\"===l?\"\":l;if(g<0){var c=t.formatPrefix(e,p);e=c.scale(e),n=c.symbol+m}else e*=g;var _,w,k=(e=d(e,p)).lastIndexOf(\".\");if(k<0){var T=x?e.lastIndexOf(\"e\"):-1;T<0?(_=e,w=\"\"):(_=e.substring(0,T),w=e.substring(T))}else _=e.substring(0,k),w=r+e.substring(k+1);!u&&f&&(_=o(_,1/0));var A=v.length+_.length+w.length+(b?0:i.length),M=A<h?new Array(A=h-A+1).join(a):\"\";return b&&(_=o(M+_,M.length?h-w.length:1/0)),i+=v,e=_+w,(\"<\"===s?i+e+M:\">\"===s?M+i+e:\"^\"===s?M.substring(0,A>>=1)+i+e+M.substring(A):i+(b?e:M+e))+n}}}(e),timeFormat:function(e){var r=e.dateTime,n=e.date,a=e.time,i=e.periods,o=e.days,s=e.shortDays,l=e.months,c=e.shortMonths;function u(t){var e=t.length;function r(r){for(var n,a,i,o=[],s=-1,l=0;++s<e;)37===t.charCodeAt(s)&&(o.push(t.slice(l,s)),null!=(a=Ne[n=t.charAt(++s)])&&(n=t.charAt(++s)),(i=_[n])&&(n=i(r,null==a?\"e\"===n?\" \":\"0\":a)),o.push(n),l=s+1);return o.push(t.slice(l,s)),o.join(\"\")}return r.parse=function(e){var r={y:1900,m:0,d:1,H:0,M:0,S:0,L:0,Z:null};if(h(r,t,e,0)!=e.length)return null;\"p\"in r&&(r.H=r.H%12+12*r.p);var n=null!=r.Z&&ze!==De,a=new(n?De:ze);return\"j\"in r?a.setFullYear(r.y,0,r.j):\"W\"in r||\"U\"in r?(\"w\"in r||(r.w=\"W\"in r?1:0),a.setFullYear(r.y,0,1),a.setFullYear(r.y,0,\"W\"in r?(r.w+6)%7+7*r.W-(a.getDay()+5)%7:r.w+7*r.U-(a.getDay()+6)%7)):a.setFullYear(r.y,r.m,r.d),a.setHours(r.H+(r.Z/100|0),r.M+r.Z%100,r.S,r.L),n?a._:a},r.toString=function(){return t},r}function h(t,e,r,n){for(var a,i,o,s=0,l=e.length,c=r.length;s<l;){if(n>=c)return-1;if(37===(a=e.charCodeAt(s++))){if(o=e.charAt(s++),!(i=w[o in Ne?e.charAt(s++):o])||(n=i(t,r,n))<0)return-1}else if(a!=r.charCodeAt(n++))return-1}return n}u.utc=function(t){var e=u(t);function r(t){try{var r=new(ze=De);return r._=t,e(r)}finally{ze=Date}}return r.parse=function(t){try{ze=De;var r=e.parse(t);return r&&r._}finally{ze=Date}},r.toString=e.toString,r},u.multi=u.utc.multi=or;var f=t.map(),p=qe(o),d=He(o),g=qe(s),v=He(s),m=qe(l),y=He(l),x=qe(c),b=He(c);i.forEach(function(t,e){f.set(t.toLowerCase(),e)});var _={a:function(t){return s[t.getDay()]},A:function(t){return o[t.getDay()]},b:function(t){return c[t.getMonth()]},B:function(t){return l[t.getMonth()]},c:u(r),d:function(t,e){return Ue(t.getDate(),e,2)},e:function(t,e){return Ue(t.getDate(),e,2)},H:function(t,e){return Ue(t.getHours(),e,2)},I:function(t,e){return Ue(t.getHours()%12||12,e,2)},j:function(t,e){return Ue(1+Ie.dayOfYear(t),e,3)},L:function(t,e){return Ue(t.getMilliseconds(),e,3)},m:function(t,e){return Ue(t.getMonth()+1,e,2)},M:function(t,e){return Ue(t.getMinutes(),e,2)},p:function(t){return i[+(t.getHours()>=12)]},S:function(t,e){return Ue(t.getSeconds(),e,2)},U:function(t,e){return Ue(Ie.sundayOfYear(t),e,2)},w:function(t){return t.getDay()},W:function(t,e){return Ue(Ie.mondayOfYear(t),e,2)},x:u(n),X:u(a),y:function(t,e){return Ue(t.getFullYear()%100,e,2)},Y:function(t,e){return Ue(t.getFullYear()%1e4,e,4)},Z:ar,\"%\":function(){return\"%\"}},w={a:function(t,e,r){g.lastIndex=0;var n=g.exec(e.slice(r));return n?(t.w=v.get(n[0].toLowerCase()),r+n[0].length):-1},A:function(t,e,r){p.lastIndex=0;var n=p.exec(e.slice(r));return n?(t.w=d.get(n[0].toLowerCase()),r+n[0].length):-1},b:function(t,e,r){x.lastIndex=0;var n=x.exec(e.slice(r));return n?(t.m=b.get(n[0].toLowerCase()),r+n[0].length):-1},B:function(t,e,r){m.lastIndex=0;var n=m.exec(e.slice(r));return n?(t.m=y.get(n[0].toLowerCase()),r+n[0].length):-1},c:function(t,e,r){return h(t,_.c.toString(),e,r)},d:Qe,e:Qe,H:tr,I:tr,j:$e,L:nr,m:Ke,M:er,p:function(t,e,r){var n=f.get(e.slice(r,r+=2).toLowerCase());return null==n?-1:(t.p=n,r)},S:rr,U:Ye,w:Ge,W:We,x:function(t,e,r){return h(t,_.x.toString(),e,r)},X:function(t,e,r){return h(t,_.X.toString(),e,r)},y:Ze,Y:Xe,Z:Je,\"%\":ir};return u}(e)}};var sr=t.locale({decimal:\".\",thousands:\",\",grouping:[3],currency:[\"$\",\"\"],dateTime:\"%a %b %e %X %Y\",date:\"%m/%d/%Y\",time:\"%H:%M:%S\",periods:[\"AM\",\"PM\"],days:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],shortDays:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],months:[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],shortMonths:[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"]});function lr(){}t.format=sr.numberFormat,t.geo={},lr.prototype={s:0,t:0,add:function(t){ur(t,this.t,cr),ur(cr.s,this.s,this),this.s?this.t+=cr.t:this.s=cr.t},reset:function(){this.s=this.t=0},valueOf:function(){return this.s}};var cr=new lr;function ur(t,e,r){var n=r.s=t+e,a=n-t,i=n-a;r.t=t-i+(e-a)}function hr(t,e){t&&pr.hasOwnProperty(t.type)&&pr[t.type](t,e)}t.geo.stream=function(t,e){t&&fr.hasOwnProperty(t.type)?fr[t.type](t,e):hr(t,e)};var fr={Feature:function(t,e){hr(t.geometry,e)},FeatureCollection:function(t,e){for(var r=t.features,n=-1,a=r.length;++n<a;)hr(r[n].geometry,e)}},pr={Sphere:function(t,e){e.sphere()},Point:function(t,e){t=t.coordinates,e.point(t[0],t[1],t[2])},MultiPoint:function(t,e){for(var r=t.coordinates,n=-1,a=r.length;++n<a;)t=r[n],e.point(t[0],t[1],t[2])},LineString:function(t,e){dr(t.coordinates,e,0)},MultiLineString:function(t,e){for(var r=t.coordinates,n=-1,a=r.length;++n<a;)dr(r[n],e,0)},Polygon:function(t,e){gr(t.coordinates,e)},MultiPolygon:function(t,e){for(var r=t.coordinates,n=-1,a=r.length;++n<a;)gr(r[n],e)},GeometryCollection:function(t,e){for(var r=t.geometries,n=-1,a=r.length;++n<a;)hr(r[n],e)}};function dr(t,e,r){var n,a=-1,i=t.length-r;for(e.lineStart();++a<i;)n=t[a],e.point(n[0],n[1],n[2]);e.lineEnd()}function gr(t,e){var r=-1,n=t.length;for(e.polygonStart();++r<n;)dr(t[r],e,1);e.polygonEnd()}t.geo.area=function(e){return vr=0,t.geo.stream(e,Cr),vr};var vr,mr,yr,xr,br,_r,wr,kr,Tr,Ar,Mr,Sr,Er=new lr,Cr={sphere:function(){vr+=4*At},point:D,lineStart:D,lineEnd:D,polygonStart:function(){Er.reset(),Cr.lineStart=Lr},polygonEnd:function(){var t=2*Er;vr+=t<0?4*At+t:t,Cr.lineStart=Cr.lineEnd=Cr.point=D}};function Lr(){var t,e,r,n,a;function i(t,e){e=e*Ct/2+At/4;var i=(t*=Ct)-r,o=i>=0?1:-1,s=o*i,l=Math.cos(e),c=Math.sin(e),u=a*c,h=n*l+u*Math.cos(s),f=u*o*Math.sin(s);Er.add(Math.atan2(f,h)),r=t,n=l,a=c}Cr.point=function(o,s){Cr.point=i,r=(t=o)*Ct,n=Math.cos(s=(e=s)*Ct/2+At/4),a=Math.sin(s)},Cr.lineEnd=function(){i(t,e)}}function Pr(t){var e=t[0],r=t[1],n=Math.cos(r);return[n*Math.cos(e),n*Math.sin(e),Math.sin(r)]}function Or(t,e){return t[0]*e[0]+t[1]*e[1]+t[2]*e[2]}function Ir(t,e){return[t[1]*e[2]-t[2]*e[1],t[2]*e[0]-t[0]*e[2],t[0]*e[1]-t[1]*e[0]]}function zr(t,e){t[0]+=e[0],t[1]+=e[1],t[2]+=e[2]}function Dr(t,e){return[t[0]*e,t[1]*e,t[2]*e]}function Rr(t){var e=Math.sqrt(t[0]*t[0]+t[1]*t[1]+t[2]*t[2]);t[0]/=e,t[1]/=e,t[2]/=e}function Fr(t){return[Math.atan2(t[1],t[0]),zt(t[2])]}function Br(t,e){return y(t[0]-e[0])<kt&&y(t[1]-e[1])<kt}t.geo.bounds=function(){var e,r,n,a,i,o,s,l,c,u,h,f={point:p,lineStart:g,lineEnd:v,polygonStart:function(){f.point=m,f.lineStart=x,f.lineEnd=b,c=0,Cr.polygonStart()},polygonEnd:function(){Cr.polygonEnd(),f.point=p,f.lineStart=g,f.lineEnd=v,Er<0?(e=-(n=180),r=-(a=90)):c>kt?a=90:c<-kt&&(r=-90),h[0]=e,h[1]=n}};function p(t,i){u.push(h=[e=t,n=t]),i<r&&(r=i),i>a&&(a=i)}function d(t,o){var s=Pr([t*Ct,o*Ct]);if(l){var c=Ir(l,s),u=Ir([c[1],-c[0],0],c);Rr(u),u=Fr(u);var h=t-i,f=h>0?1:-1,d=u[0]*Lt*f,g=y(h)>180;if(g^(f*i<d&&d<f*t))(v=u[1]*Lt)>a&&(a=v);else if(g^(f*i<(d=(d+360)%360-180)&&d<f*t)){var v;(v=-u[1]*Lt)<r&&(r=v)}else o<r&&(r=o),o>a&&(a=o);g?t<i?_(e,t)>_(e,n)&&(n=t):_(t,n)>_(e,n)&&(e=t):n>=e?(t<e&&(e=t),t>n&&(n=t)):t>i?_(e,t)>_(e,n)&&(n=t):_(t,n)>_(e,n)&&(e=t)}else p(t,o);l=s,i=t}function g(){f.point=d}function v(){h[0]=e,h[1]=n,f.point=p,l=null}function m(t,e){if(l){var r=t-i;c+=y(r)>180?r+(r>0?360:-360):r}else o=t,s=e;Cr.point(t,e),d(t,e)}function x(){Cr.lineStart()}function b(){m(o,s),Cr.lineEnd(),y(c)>kt&&(e=-(n=180)),h[0]=e,h[1]=n,l=null}function _(t,e){return(e-=t)<0?e+360:e}function w(t,e){return t[0]-e[0]}function k(t,e){return e[0]<=e[1]?e[0]<=t&&t<=e[1]:t<e[0]||e[1]<t}return function(i){if(a=n=-(e=r=1/0),u=[],t.geo.stream(i,f),c=u.length){u.sort(w);for(var o=1,s=[g=u[0]];o<c;++o)k((p=u[o])[0],g)||k(p[1],g)?(_(g[0],p[1])>_(g[0],g[1])&&(g[1]=p[1]),_(p[0],g[1])>_(g[0],g[1])&&(g[0]=p[0])):s.push(g=p);for(var l,c,p,d=-1/0,g=(o=0,s[c=s.length-1]);o<=c;g=p,++o)p=s[o],(l=_(g[1],p[0]))>d&&(d=l,e=p[0],n=g[1])}return u=h=null,e===1/0||r===1/0?[[NaN,NaN],[NaN,NaN]]:[[e,r],[n,a]]}}(),t.geo.centroid=function(e){mr=yr=xr=br=_r=wr=kr=Tr=Ar=Mr=Sr=0,t.geo.stream(e,Nr);var r=Ar,n=Mr,a=Sr,i=r*r+n*n+a*a;return i<Tt&&(r=wr,n=kr,a=Tr,yr<kt&&(r=xr,n=br,a=_r),(i=r*r+n*n+a*a)<Tt)?[NaN,NaN]:[Math.atan2(n,r)*Lt,zt(a/Math.sqrt(i))*Lt]};var Nr={sphere:D,point:jr,lineStart:Ur,lineEnd:qr,polygonStart:function(){Nr.lineStart=Hr},polygonEnd:function(){Nr.lineStart=Ur}};function jr(t,e){t*=Ct;var r=Math.cos(e*=Ct);Vr(r*Math.cos(t),r*Math.sin(t),Math.sin(e))}function Vr(t,e,r){xr+=(t-xr)/++mr,br+=(e-br)/mr,_r+=(r-_r)/mr}function Ur(){var t,e,r;function n(n,a){n*=Ct;var i=Math.cos(a*=Ct),o=i*Math.cos(n),s=i*Math.sin(n),l=Math.sin(a),c=Math.atan2(Math.sqrt((c=e*l-r*s)*c+(c=r*o-t*l)*c+(c=t*s-e*o)*c),t*o+e*s+r*l);yr+=c,wr+=c*(t+(t=o)),kr+=c*(e+(e=s)),Tr+=c*(r+(r=l)),Vr(t,e,r)}Nr.point=function(a,i){a*=Ct;var o=Math.cos(i*=Ct);t=o*Math.cos(a),e=o*Math.sin(a),r=Math.sin(i),Nr.point=n,Vr(t,e,r)}}function qr(){Nr.point=jr}function Hr(){var t,e,r,n,a;function i(t,e){t*=Ct;var i=Math.cos(e*=Ct),o=i*Math.cos(t),s=i*Math.sin(t),l=Math.sin(e),c=n*l-a*s,u=a*o-r*l,h=r*s-n*o,f=Math.sqrt(c*c+u*u+h*h),p=r*o+n*s+a*l,d=f&&-It(p)/f,g=Math.atan2(f,p);Ar+=d*c,Mr+=d*u,Sr+=d*h,yr+=g,wr+=g*(r+(r=o)),kr+=g*(n+(n=s)),Tr+=g*(a+(a=l)),Vr(r,n,a)}Nr.point=function(o,s){t=o,e=s,Nr.point=i,o*=Ct;var l=Math.cos(s*=Ct);r=l*Math.cos(o),n=l*Math.sin(o),a=Math.sin(s),Vr(r,n,a)},Nr.lineEnd=function(){i(t,e),Nr.lineEnd=qr,Nr.point=jr}}function Gr(t,e){function r(r,n){return r=t(r,n),e(r[0],r[1])}return t.invert&&e.invert&&(r.invert=function(r,n){return(r=e.invert(r,n))&&t.invert(r[0],r[1])}),r}function Yr(){return!0}function Wr(t,e,r,n,a){var i=[],o=[];if(t.forEach(function(t){if(!((e=t.length-1)<=0)){var e,r=t[0],n=t[e];if(Br(r,n)){a.lineStart();for(var s=0;s<e;++s)a.point((r=t[s])[0],r[1]);a.lineEnd()}else{var l=new Zr(r,t,null,!0),c=new Zr(r,null,l,!1);l.o=c,i.push(l),o.push(c),l=new Zr(n,t,null,!1),c=new Zr(n,null,l,!0),l.o=c,i.push(l),o.push(c)}}}),o.sort(e),Xr(i),Xr(o),i.length){for(var s=0,l=r,c=o.length;s<c;++s)o[s].e=l=!l;for(var u,h,f=i[0];;){for(var p=f,d=!0;p.v;)if((p=p.n)===f)return;u=p.z,a.lineStart();do{if(p.v=p.o.v=!0,p.e){if(d)for(s=0,c=u.length;s<c;++s)a.point((h=u[s])[0],h[1]);else n(p.x,p.n.x,1,a);p=p.n}else{if(d)for(s=(u=p.p.z).length-1;s>=0;--s)a.point((h=u[s])[0],h[1]);else n(p.x,p.p.x,-1,a);p=p.p}u=(p=p.o).z,d=!d}while(!p.v);a.lineEnd()}}}function Xr(t){if(e=t.length){for(var e,r,n=0,a=t[0];++n<e;)a.n=r=t[n],r.p=a,a=r;a.n=r=t[0],r.p=a}}function Zr(t,e,r,n){this.x=t,this.z=e,this.o=r,this.e=n,this.v=!1,this.n=this.p=null}function Jr(e,r,n,a){return function(i,o){var s,l=r(o),c=i.invert(a[0],a[1]),u={point:h,lineStart:p,lineEnd:d,polygonStart:function(){u.point=b,u.lineStart=_,u.lineEnd=w,s=[],g=[]},polygonEnd:function(){u.point=h,u.lineStart=p,u.lineEnd=d,s=t.merge(s);var e=function(t,e){var r=t[0],n=t[1],a=[Math.sin(r),-Math.cos(r),0],i=0,o=0;Er.reset();for(var s=0,l=e.length;s<l;++s){var c=e[s],u=c.length;if(u)for(var h=c[0],f=h[0],p=h[1]/2+At/4,d=Math.sin(p),g=Math.cos(p),v=1;;){v===u&&(v=0);var m=(t=c[v])[0],y=t[1]/2+At/4,x=Math.sin(y),b=Math.cos(y),_=m-f,w=_>=0?1:-1,k=w*_,T=k>At,A=d*x;if(Er.add(Math.atan2(A*w*Math.sin(k),g*b+A*Math.cos(k))),i+=T?_+w*Mt:_,T^f>=r^m>=r){var M=Ir(Pr(h),Pr(t));Rr(M);var S=Ir(a,M);Rr(S);var E=(T^_>=0?-1:1)*zt(S[2]);(n>E||n===E&&(M[0]||M[1]))&&(o+=T^_>=0?1:-1)}if(!v++)break;f=m,d=x,g=b,h=t}}return(i<-kt||i<kt&&Er<-kt)^1&o}(c,g);s.length?(x||(o.polygonStart(),x=!0),Wr(s,$r,e,n,o)):e&&(x||(o.polygonStart(),x=!0),o.lineStart(),n(null,null,1,o),o.lineEnd()),x&&(o.polygonEnd(),x=!1),s=g=null},sphere:function(){o.polygonStart(),o.lineStart(),n(null,null,1,o),o.lineEnd(),o.polygonEnd()}};function h(t,r){var n=i(t,r);e(t=n[0],r=n[1])&&o.point(t,r)}function f(t,e){var r=i(t,e);l.point(r[0],r[1])}function p(){u.point=f,l.lineStart()}function d(){u.point=h,l.lineEnd()}var g,v,m=Qr(),y=r(m),x=!1;function b(t,e){v.push([t,e]);var r=i(t,e);y.point(r[0],r[1])}function _(){y.lineStart(),v=[]}function w(){b(v[0][0],v[0][1]),y.lineEnd();var t,e=y.clean(),r=m.buffer(),n=r.length;if(v.pop(),g.push(v),v=null,n)if(1&e){var a,i=-1;if((n=(t=r[0]).length-1)>0){for(x||(o.polygonStart(),x=!0),o.lineStart();++i<n;)o.point((a=t[i])[0],a[1]);o.lineEnd()}}else n>1&&2&e&&r.push(r.pop().concat(r.shift())),s.push(r.filter(Kr))}return u}}function Kr(t){return t.length>1}function Qr(){var t,e=[];return{lineStart:function(){e.push(t=[])},point:function(e,r){t.push([e,r])},lineEnd:D,buffer:function(){var r=e;return e=[],t=null,r},rejoin:function(){e.length>1&&e.push(e.pop().concat(e.shift()))}}}function $r(t,e){return((t=t.x)[0]<0?t[1]-Et-kt:Et-t[1])-((e=e.x)[0]<0?e[1]-Et-kt:Et-e[1])}var tn=Jr(Yr,function(t){var e,r=NaN,n=NaN,a=NaN;return{lineStart:function(){t.lineStart(),e=1},point:function(i,o){var s=i>0?At:-At,l=y(i-r);y(l-At)<kt?(t.point(r,n=(n+o)/2>0?Et:-Et),t.point(a,n),t.lineEnd(),t.lineStart(),t.point(s,n),t.point(i,n),e=0):a!==s&&l>=At&&(y(r-a)<kt&&(r-=a*kt),y(i-s)<kt&&(i-=s*kt),n=function(t,e,r,n){var a,i,o=Math.sin(t-r);return y(o)>kt?Math.atan((Math.sin(e)*(i=Math.cos(n))*Math.sin(r)-Math.sin(n)*(a=Math.cos(e))*Math.sin(t))/(a*i*o)):(e+n)/2}(r,n,i,o),t.point(a,n),t.lineEnd(),t.lineStart(),t.point(s,n),e=0),t.point(r=i,n=o),a=s},lineEnd:function(){t.lineEnd(),r=n=NaN},clean:function(){return 2-e}}},function(t,e,r,n){var a;if(null==t)a=r*Et,n.point(-At,a),n.point(0,a),n.point(At,a),n.point(At,0),n.point(At,-a),n.point(0,-a),n.point(-At,-a),n.point(-At,0),n.point(-At,a);else if(y(t[0]-e[0])>kt){var i=t[0]<e[0]?At:-At;a=r*i/2,n.point(-i,a),n.point(0,a),n.point(i,a)}else n.point(e[0],e[1])},[-At,-At/2]);function en(t,e,r,n){return function(a){var i,o=a.a,s=a.b,l=o.x,c=o.y,u=0,h=1,f=s.x-l,p=s.y-c;if(i=t-l,f||!(i>0)){if(i/=f,f<0){if(i<u)return;i<h&&(h=i)}else if(f>0){if(i>h)return;i>u&&(u=i)}if(i=r-l,f||!(i<0)){if(i/=f,f<0){if(i>h)return;i>u&&(u=i)}else if(f>0){if(i<u)return;i<h&&(h=i)}if(i=e-c,p||!(i>0)){if(i/=p,p<0){if(i<u)return;i<h&&(h=i)}else if(p>0){if(i>h)return;i>u&&(u=i)}if(i=n-c,p||!(i<0)){if(i/=p,p<0){if(i>h)return;i>u&&(u=i)}else if(p>0){if(i<u)return;i<h&&(h=i)}return u>0&&(a.a={x:l+u*f,y:c+u*p}),h<1&&(a.b={x:l+h*f,y:c+h*p}),a}}}}}}var rn=1e9;function nn(e,r,n,a){return function(l){var c,u,h,f,p,d,g,v,m,y,x,b=l,_=Qr(),w=en(e,r,n,a),k={point:M,lineStart:function(){k.point=S,u&&u.push(h=[]);y=!0,m=!1,g=v=NaN},lineEnd:function(){c&&(S(f,p),d&&m&&_.rejoin(),c.push(_.buffer()));k.point=M,m&&l.lineEnd()},polygonStart:function(){l=_,c=[],u=[],x=!0},polygonEnd:function(){l=b,c=t.merge(c);var r=function(t){for(var e=0,r=u.length,n=t[1],a=0;a<r;++a)for(var i,o=1,s=u[a],l=s.length,c=s[0];o<l;++o)i=s[o],c[1]<=n?i[1]>n&&Ot(c,i,t)>0&&++e:i[1]<=n&&Ot(c,i,t)<0&&--e,c=i;return 0!==e}([e,a]),n=x&&r,i=c.length;(n||i)&&(l.polygonStart(),n&&(l.lineStart(),T(null,null,1,l),l.lineEnd()),i&&Wr(c,o,r,T,l),l.polygonEnd()),c=u=h=null}};function T(t,o,l,c){var u=0,h=0;if(null==t||(u=i(t,l))!==(h=i(o,l))||s(t,o)<0^l>0)do{c.point(0===u||3===u?e:n,u>1?a:r)}while((u=(u+l+4)%4)!==h);else c.point(o[0],o[1])}function A(t,i){return e<=t&&t<=n&&r<=i&&i<=a}function M(t,e){A(t,e)&&l.point(t,e)}function S(t,e){var r=A(t=Math.max(-rn,Math.min(rn,t)),e=Math.max(-rn,Math.min(rn,e)));if(u&&h.push([t,e]),y)f=t,p=e,d=r,y=!1,r&&(l.lineStart(),l.point(t,e));else if(r&&m)l.point(t,e);else{var n={a:{x:g,y:v},b:{x:t,y:e}};w(n)?(m||(l.lineStart(),l.point(n.a.x,n.a.y)),l.point(n.b.x,n.b.y),r||l.lineEnd(),x=!1):r&&(l.lineStart(),l.point(t,e),x=!1)}g=t,v=e,m=r}return k};function i(t,a){return y(t[0]-e)<kt?a>0?0:3:y(t[0]-n)<kt?a>0?2:1:y(t[1]-r)<kt?a>0?1:0:a>0?3:2}function o(t,e){return s(t.x,e.x)}function s(t,e){var r=i(t,1),n=i(e,1);return r!==n?r-n:0===r?e[1]-t[1]:1===r?t[0]-e[0]:2===r?t[1]-e[1]:e[0]-t[0]}}function an(t){var e=0,r=At/3,n=Cn(t),a=n(e,r);return a.parallels=function(t){return arguments.length?n(e=t[0]*At/180,r=t[1]*At/180):[e/At*180,r/At*180]},a}function on(t,e){var r=Math.sin(t),n=(r+Math.sin(e))/2,a=1+r*(2*n-r),i=Math.sqrt(a)/n;function o(t,e){var r=Math.sqrt(a-2*n*Math.sin(e))/n;return[r*Math.sin(t*=n),i-r*Math.cos(t)]}return o.invert=function(t,e){var r=i-e;return[Math.atan2(t,r)/n,zt((a-(t*t+r*r)*n*n)/(2*n))]},o}t.geo.clipExtent=function(){var t,e,r,n,a,i,o={stream:function(t){return a&&(a.valid=!1),(a=i(t)).valid=!0,a},extent:function(s){return arguments.length?(i=nn(t=+s[0][0],e=+s[0][1],r=+s[1][0],n=+s[1][1]),a&&(a.valid=!1,a=null),o):[[t,e],[r,n]]}};return o.extent([[0,0],[960,500]])},(t.geo.conicEqualArea=function(){return an(on)}).raw=on,t.geo.albers=function(){return t.geo.conicEqualArea().rotate([96,0]).center([-.6,38.7]).parallels([29.5,45.5]).scale(1070)},t.geo.albersUsa=function(){var e,r,n,a,i=t.geo.albers(),o=t.geo.conicEqualArea().rotate([154,0]).center([-2,58.5]).parallels([55,65]),s=t.geo.conicEqualArea().rotate([157,0]).center([-3,19.9]).parallels([8,18]),l={point:function(t,r){e=[t,r]}};function c(t){var i=t[0],o=t[1];return e=null,r(i,o),e||(n(i,o),e)||a(i,o),e}return c.invert=function(t){var e=i.scale(),r=i.translate(),n=(t[0]-r[0])/e,a=(t[1]-r[1])/e;return(a>=.12&&a<.234&&n>=-.425&&n<-.214?o:a>=.166&&a<.234&&n>=-.214&&n<-.115?s:i).invert(t)},c.stream=function(t){var e=i.stream(t),r=o.stream(t),n=s.stream(t);return{point:function(t,a){e.point(t,a),r.point(t,a),n.point(t,a)},sphere:function(){e.sphere(),r.sphere(),n.sphere()},lineStart:function(){e.lineStart(),r.lineStart(),n.lineStart()},lineEnd:function(){e.lineEnd(),r.lineEnd(),n.lineEnd()},polygonStart:function(){e.polygonStart(),r.polygonStart(),n.polygonStart()},polygonEnd:function(){e.polygonEnd(),r.polygonEnd(),n.polygonEnd()}}},c.precision=function(t){return arguments.length?(i.precision(t),o.precision(t),s.precision(t),c):i.precision()},c.scale=function(t){return arguments.length?(i.scale(t),o.scale(.35*t),s.scale(t),c.translate(i.translate())):i.scale()},c.translate=function(t){if(!arguments.length)return i.translate();var e=i.scale(),u=+t[0],h=+t[1];return r=i.translate(t).clipExtent([[u-.455*e,h-.238*e],[u+.455*e,h+.238*e]]).stream(l).point,n=o.translate([u-.307*e,h+.201*e]).clipExtent([[u-.425*e+kt,h+.12*e+kt],[u-.214*e-kt,h+.234*e-kt]]).stream(l).point,a=s.translate([u-.205*e,h+.212*e]).clipExtent([[u-.214*e+kt,h+.166*e+kt],[u-.115*e-kt,h+.234*e-kt]]).stream(l).point,c},c.scale(1070)};var sn,ln,cn,un,hn,fn,pn={point:D,lineStart:D,lineEnd:D,polygonStart:function(){ln=0,pn.lineStart=dn},polygonEnd:function(){pn.lineStart=pn.lineEnd=pn.point=D,sn+=y(ln/2)}};function dn(){var t,e,r,n;function a(t,e){ln+=n*t-r*e,r=t,n=e}pn.point=function(i,o){pn.point=a,t=r=i,e=n=o},pn.lineEnd=function(){a(t,e)}}var gn={point:function(t,e){t<cn&&(cn=t);t>hn&&(hn=t);e<un&&(un=e);e>fn&&(fn=e)},lineStart:D,lineEnd:D,polygonStart:D,polygonEnd:D};function vn(){var t=mn(4.5),e=[],r={point:n,lineStart:function(){r.point=a},lineEnd:o,polygonStart:function(){r.lineEnd=s},polygonEnd:function(){r.lineEnd=o,r.point=n},pointRadius:function(e){return t=mn(e),r},result:function(){if(e.length){var t=e.join(\"\");return e=[],t}}};function n(r,n){e.push(\"M\",r,\",\",n,t)}function a(t,n){e.push(\"M\",t,\",\",n),r.point=i}function i(t,r){e.push(\"L\",t,\",\",r)}function o(){r.point=n}function s(){e.push(\"Z\")}return r}function mn(t){return\"m0,\"+t+\"a\"+t+\",\"+t+\" 0 1,1 0,\"+-2*t+\"a\"+t+\",\"+t+\" 0 1,1 0,\"+2*t+\"z\"}var yn,xn={point:bn,lineStart:_n,lineEnd:wn,polygonStart:function(){xn.lineStart=kn},polygonEnd:function(){xn.point=bn,xn.lineStart=_n,xn.lineEnd=wn}};function bn(t,e){xr+=t,br+=e,++_r}function _n(){var t,e;function r(r,n){var a=r-t,i=n-e,o=Math.sqrt(a*a+i*i);wr+=o*(t+r)/2,kr+=o*(e+n)/2,Tr+=o,bn(t=r,e=n)}xn.point=function(n,a){xn.point=r,bn(t=n,e=a)}}function wn(){xn.point=bn}function kn(){var t,e,r,n;function a(t,e){var a=t-r,i=e-n,o=Math.sqrt(a*a+i*i);wr+=o*(r+t)/2,kr+=o*(n+e)/2,Tr+=o,Ar+=(o=n*t-r*e)*(r+t),Mr+=o*(n+e),Sr+=3*o,bn(r=t,n=e)}xn.point=function(i,o){xn.point=a,bn(t=r=i,e=n=o)},xn.lineEnd=function(){a(t,e)}}function Tn(t){var e=4.5,r={point:n,lineStart:function(){r.point=a},lineEnd:o,polygonStart:function(){r.lineEnd=s},polygonEnd:function(){r.lineEnd=o,r.point=n},pointRadius:function(t){return e=t,r},result:D};function n(r,n){t.moveTo(r+e,n),t.arc(r,n,e,0,Mt)}function a(e,n){t.moveTo(e,n),r.point=i}function i(e,r){t.lineTo(e,r)}function o(){r.point=n}function s(){t.closePath()}return r}function An(t){var e=.5,r=Math.cos(30*Ct),n=16;function a(e){return(n?function(e){var r,a,o,s,l,c,u,h,f,p,d,g,v={point:m,lineStart:y,lineEnd:b,polygonStart:function(){e.polygonStart(),v.lineStart=_},polygonEnd:function(){e.polygonEnd(),v.lineStart=y}};function m(r,n){r=t(r,n),e.point(r[0],r[1])}function y(){h=NaN,v.point=x,e.lineStart()}function x(r,a){var o=Pr([r,a]),s=t(r,a);i(h,f,u,p,d,g,h=s[0],f=s[1],u=r,p=o[0],d=o[1],g=o[2],n,e),e.point(h,f)}function b(){v.point=m,e.lineEnd()}function _(){y(),v.point=w,v.lineEnd=k}function w(t,e){x(r=t,e),a=h,o=f,s=p,l=d,c=g,v.point=x}function k(){i(h,f,u,p,d,g,a,o,r,s,l,c,n,e),v.lineEnd=b,b()}return v}:function(e){return Sn(e,function(r,n){r=t(r,n),e.point(r[0],r[1])})})(e)}function i(n,a,o,s,l,c,u,h,f,p,d,g,v,m){var x=u-n,b=h-a,_=x*x+b*b;if(_>4*e&&v--){var w=s+p,k=l+d,T=c+g,A=Math.sqrt(w*w+k*k+T*T),M=Math.asin(T/=A),S=y(y(T)-1)<kt||y(o-f)<kt?(o+f)/2:Math.atan2(k,w),E=t(S,M),C=E[0],L=E[1],P=C-n,O=L-a,I=b*P-x*O;(I*I/_>e||y((x*P+b*O)/_-.5)>.3||s*p+l*d+c*g<r)&&(i(n,a,o,s,l,c,C,L,S,w/=A,k/=A,T,v,m),m.point(C,L),i(C,L,S,w,k,T,u,h,f,p,d,g,v,m))}}return a.precision=function(t){return arguments.length?(n=(e=t*t)>0&&16,a):Math.sqrt(e)},a}function Mn(t){this.stream=t}function Sn(t,e){return{point:e,sphere:function(){t.sphere()},lineStart:function(){t.lineStart()},lineEnd:function(){t.lineEnd()},polygonStart:function(){t.polygonStart()},polygonEnd:function(){t.polygonEnd()}}}function En(t){return Cn(function(){return t})()}function Cn(e){var r,n,a,i,o,s,l=An(function(t,e){return[(t=r(t,e))[0]*c+i,o-t[1]*c]}),c=150,u=480,h=250,f=0,p=0,d=0,g=0,v=0,m=tn,x=P,b=null,_=null;function w(t){return[(t=a(t[0]*Ct,t[1]*Ct))[0]*c+i,o-t[1]*c]}function k(t){return(t=a.invert((t[0]-i)/c,(o-t[1])/c))&&[t[0]*Lt,t[1]*Lt]}function T(){a=Gr(n=In(d,g,v),r);var t=r(f,p);return i=u-t[0]*c,o=h+t[1]*c,A()}function A(){return s&&(s.valid=!1,s=null),w}return w.stream=function(t){return s&&(s.valid=!1),(s=Ln(m(n,l(x(t))))).valid=!0,s},w.clipAngle=function(t){return arguments.length?(m=null==t?(b=t,tn):function(t){var e=Math.cos(t),r=e>0,n=y(e)>kt;return Jr(a,function(t){var e,s,l,c,u;return{lineStart:function(){c=l=!1,u=1},point:function(h,f){var p,d=[h,f],g=a(h,f),v=r?g?0:o(h,f):g?o(h+(h<0?At:-At),f):0;if(!e&&(c=l=g)&&t.lineStart(),g!==l&&(p=i(e,d),(Br(e,p)||Br(d,p))&&(d[0]+=kt,d[1]+=kt,g=a(d[0],d[1]))),g!==l)u=0,g?(t.lineStart(),p=i(d,e),t.point(p[0],p[1])):(p=i(e,d),t.point(p[0],p[1]),t.lineEnd()),e=p;else if(n&&e&&r^g){var m;v&s||!(m=i(d,e,!0))||(u=0,r?(t.lineStart(),t.point(m[0][0],m[0][1]),t.point(m[1][0],m[1][1]),t.lineEnd()):(t.point(m[1][0],m[1][1]),t.lineEnd(),t.lineStart(),t.point(m[0][0],m[0][1])))}!g||e&&Br(e,d)||t.point(d[0],d[1]),e=d,l=g,s=v},lineEnd:function(){l&&t.lineEnd(),e=null},clean:function(){return u|(c&&l)<<1}}},Fn(t,6*Ct),r?[0,-t]:[-At,t-At]);function a(t,r){return Math.cos(t)*Math.cos(r)>e}function i(t,r,n){var a=[1,0,0],i=Ir(Pr(t),Pr(r)),o=Or(i,i),s=i[0],l=o-s*s;if(!l)return!n&&t;var c=e*o/l,u=-e*s/l,h=Ir(a,i),f=Dr(a,c);zr(f,Dr(i,u));var p=h,d=Or(f,p),g=Or(p,p),v=d*d-g*(Or(f,f)-1);if(!(v<0)){var m=Math.sqrt(v),x=Dr(p,(-d-m)/g);if(zr(x,f),x=Fr(x),!n)return x;var b,_=t[0],w=r[0],k=t[1],T=r[1];w<_&&(b=_,_=w,w=b);var A=w-_,M=y(A-At)<kt;if(!M&&T<k&&(b=k,k=T,T=b),M||A<kt?M?k+T>0^x[1]<(y(x[0]-_)<kt?k:T):k<=x[1]&&x[1]<=T:A>At^(_<=x[0]&&x[0]<=w)){var S=Dr(p,(-d+m)/g);return zr(S,f),[x,Fr(S)]}}}function o(e,n){var a=r?t:At-t,i=0;return e<-a?i|=1:e>a&&(i|=2),n<-a?i|=4:n>a&&(i|=8),i}}((b=+t)*Ct),A()):b},w.clipExtent=function(t){return arguments.length?(_=t,x=t?nn(t[0][0],t[0][1],t[1][0],t[1][1]):P,A()):_},w.scale=function(t){return arguments.length?(c=+t,T()):c},w.translate=function(t){return arguments.length?(u=+t[0],h=+t[1],T()):[u,h]},w.center=function(t){return arguments.length?(f=t[0]%360*Ct,p=t[1]%360*Ct,T()):[f*Lt,p*Lt]},w.rotate=function(t){return arguments.length?(d=t[0]%360*Ct,g=t[1]%360*Ct,v=t.length>2?t[2]%360*Ct:0,T()):[d*Lt,g*Lt,v*Lt]},t.rebind(w,l,\"precision\"),function(){return r=e.apply(this,arguments),w.invert=r.invert&&k,T()}}function Ln(t){return Sn(t,function(e,r){t.point(e*Ct,r*Ct)})}function Pn(t,e){return[t,e]}function On(t,e){return[t>At?t-Mt:t<-At?t+Mt:t,e]}function In(t,e,r){return t?e||r?Gr(Dn(t),Rn(e,r)):Dn(t):e||r?Rn(e,r):On}function zn(t){return function(e,r){return[(e+=t)>At?e-Mt:e<-At?e+Mt:e,r]}}function Dn(t){var e=zn(t);return e.invert=zn(-t),e}function Rn(t,e){var r=Math.cos(t),n=Math.sin(t),a=Math.cos(e),i=Math.sin(e);function o(t,e){var o=Math.cos(e),s=Math.cos(t)*o,l=Math.sin(t)*o,c=Math.sin(e),u=c*r+s*n;return[Math.atan2(l*a-u*i,s*r-c*n),zt(u*a+l*i)]}return o.invert=function(t,e){var o=Math.cos(e),s=Math.cos(t)*o,l=Math.sin(t)*o,c=Math.sin(e),u=c*a-l*i;return[Math.atan2(l*a+c*i,s*r+u*n),zt(u*r-s*n)]},o}function Fn(t,e){var r=Math.cos(t),n=Math.sin(t);return function(a,i,o,s){var l=o*e;null!=a?(a=Bn(r,a),i=Bn(r,i),(o>0?a<i:a>i)&&(a+=o*Mt)):(a=t+o*Mt,i=t-.5*l);for(var c,u=a;o>0?u>i:u<i;u-=l)s.point((c=Fr([r,-n*Math.cos(u),-n*Math.sin(u)]))[0],c[1])}}function Bn(t,e){var r=Pr(e);r[0]-=t,Rr(r);var n=It(-r[1]);return((-r[2]<0?-n:n)+2*Math.PI-kt)%(2*Math.PI)}function Nn(e,r,n){var a=t.range(e,r-kt,n).concat(r);return function(t){return a.map(function(e){return[t,e]})}}function jn(e,r,n){var a=t.range(e,r-kt,n).concat(r);return function(t){return a.map(function(e){return[e,t]})}}function Vn(t){return t.source}function Un(t){return t.target}t.geo.path=function(){var e,r,n,a,i,o=4.5;function s(e){return e&&(\"function\"==typeof o&&a.pointRadius(+o.apply(this,arguments)),i&&i.valid||(i=n(a)),t.geo.stream(e,i)),a.result()}function l(){return i=null,s}return s.area=function(e){return sn=0,t.geo.stream(e,n(pn)),sn},s.centroid=function(e){return xr=br=_r=wr=kr=Tr=Ar=Mr=Sr=0,t.geo.stream(e,n(xn)),Sr?[Ar/Sr,Mr/Sr]:Tr?[wr/Tr,kr/Tr]:_r?[xr/_r,br/_r]:[NaN,NaN]},s.bounds=function(e){return hn=fn=-(cn=un=1/0),t.geo.stream(e,n(gn)),[[cn,un],[hn,fn]]},s.projection=function(t){return arguments.length?(n=(e=t)?t.stream||(r=t,a=An(function(t,e){return r([t*Lt,e*Lt])}),function(t){return Ln(a(t))}):P,l()):e;var r,a},s.context=function(t){return arguments.length?(a=null==(r=t)?new vn:new Tn(t),\"function\"!=typeof o&&a.pointRadius(o),l()):r},s.pointRadius=function(t){return arguments.length?(o=\"function\"==typeof t?t:(a.pointRadius(+t),+t),s):o},s.projection(t.geo.albersUsa()).context(null)},t.geo.transform=function(t){return{stream:function(e){var r=new Mn(e);for(var n in t)r[n]=t[n];return r}}},Mn.prototype={point:function(t,e){this.stream.point(t,e)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}},t.geo.projection=En,t.geo.projectionMutator=Cn,(t.geo.equirectangular=function(){return En(Pn)}).raw=Pn.invert=Pn,t.geo.rotation=function(t){function e(e){return(e=t(e[0]*Ct,e[1]*Ct))[0]*=Lt,e[1]*=Lt,e}return t=In(t[0]%360*Ct,t[1]*Ct,t.length>2?t[2]*Ct:0),e.invert=function(e){return(e=t.invert(e[0]*Ct,e[1]*Ct))[0]*=Lt,e[1]*=Lt,e},e},On.invert=Pn,t.geo.circle=function(){var t,e,r=[0,0],n=6;function a(){var t=\"function\"==typeof r?r.apply(this,arguments):r,n=In(-t[0]*Ct,-t[1]*Ct,0).invert,a=[];return e(null,null,1,{point:function(t,e){a.push(t=n(t,e)),t[0]*=Lt,t[1]*=Lt}}),{type:\"Polygon\",coordinates:[a]}}return a.origin=function(t){return arguments.length?(r=t,a):r},a.angle=function(r){return arguments.length?(e=Fn((t=+r)*Ct,n*Ct),a):t},a.precision=function(r){return arguments.length?(e=Fn(t*Ct,(n=+r)*Ct),a):n},a.angle(90)},t.geo.distance=function(t,e){var r,n=(e[0]-t[0])*Ct,a=t[1]*Ct,i=e[1]*Ct,o=Math.sin(n),s=Math.cos(n),l=Math.sin(a),c=Math.cos(a),u=Math.sin(i),h=Math.cos(i);return Math.atan2(Math.sqrt((r=h*o)*r+(r=c*u-l*h*s)*r),l*u+c*h*s)},t.geo.graticule=function(){var e,r,n,a,i,o,s,l,c,u,h,f,p=10,d=p,g=90,v=360,m=2.5;function x(){return{type:\"MultiLineString\",coordinates:b()}}function b(){return t.range(Math.ceil(a/g)*g,n,g).map(h).concat(t.range(Math.ceil(l/v)*v,s,v).map(f)).concat(t.range(Math.ceil(r/p)*p,e,p).filter(function(t){return y(t%g)>kt}).map(c)).concat(t.range(Math.ceil(o/d)*d,i,d).filter(function(t){return y(t%v)>kt}).map(u))}return x.lines=function(){return b().map(function(t){return{type:\"LineString\",coordinates:t}})},x.outline=function(){return{type:\"Polygon\",coordinates:[h(a).concat(f(s).slice(1),h(n).reverse().slice(1),f(l).reverse().slice(1))]}},x.extent=function(t){return arguments.length?x.majorExtent(t).minorExtent(t):x.minorExtent()},x.majorExtent=function(t){return arguments.length?(a=+t[0][0],n=+t[1][0],l=+t[0][1],s=+t[1][1],a>n&&(t=a,a=n,n=t),l>s&&(t=l,l=s,s=t),x.precision(m)):[[a,l],[n,s]]},x.minorExtent=function(t){return arguments.length?(r=+t[0][0],e=+t[1][0],o=+t[0][1],i=+t[1][1],r>e&&(t=r,r=e,e=t),o>i&&(t=o,o=i,i=t),x.precision(m)):[[r,o],[e,i]]},x.step=function(t){return arguments.length?x.majorStep(t).minorStep(t):x.minorStep()},x.majorStep=function(t){return arguments.length?(g=+t[0],v=+t[1],x):[g,v]},x.minorStep=function(t){return arguments.length?(p=+t[0],d=+t[1],x):[p,d]},x.precision=function(t){return arguments.length?(m=+t,c=Nn(o,i,90),u=jn(r,e,m),h=Nn(l,s,90),f=jn(a,n,m),x):m},x.majorExtent([[-180,-90+kt],[180,90-kt]]).minorExtent([[-180,-80-kt],[180,80+kt]])},t.geo.greatArc=function(){var e,r,n=Vn,a=Un;function i(){return{type:\"LineString\",coordinates:[e||n.apply(this,arguments),r||a.apply(this,arguments)]}}return i.distance=function(){return t.geo.distance(e||n.apply(this,arguments),r||a.apply(this,arguments))},i.source=function(t){return arguments.length?(n=t,e=\"function\"==typeof t?null:t,i):n},i.target=function(t){return arguments.length?(a=t,r=\"function\"==typeof t?null:t,i):a},i.precision=function(){return arguments.length?i:0},i},t.geo.interpolate=function(t,e){return r=t[0]*Ct,n=t[1]*Ct,a=e[0]*Ct,i=e[1]*Ct,o=Math.cos(n),s=Math.sin(n),l=Math.cos(i),c=Math.sin(i),u=o*Math.cos(r),h=o*Math.sin(r),f=l*Math.cos(a),p=l*Math.sin(a),d=2*Math.asin(Math.sqrt(Rt(i-n)+o*l*Rt(a-r))),g=1/Math.sin(d),(v=d?function(t){var e=Math.sin(t*=d)*g,r=Math.sin(d-t)*g,n=r*u+e*f,a=r*h+e*p,i=r*s+e*c;return[Math.atan2(a,n)*Lt,Math.atan2(i,Math.sqrt(n*n+a*a))*Lt]}:function(){return[r*Lt,n*Lt]}).distance=d,v;var r,n,a,i,o,s,l,c,u,h,f,p,d,g,v},t.geo.length=function(e){return yn=0,t.geo.stream(e,qn),yn};var qn={sphere:D,point:D,lineStart:function(){var t,e,r;function n(n,a){var i=Math.sin(a*=Ct),o=Math.cos(a),s=y((n*=Ct)-t),l=Math.cos(s);yn+=Math.atan2(Math.sqrt((s=o*Math.sin(s))*s+(s=r*i-e*o*l)*s),e*i+r*o*l),t=n,e=i,r=o}qn.point=function(a,i){t=a*Ct,e=Math.sin(i*=Ct),r=Math.cos(i),qn.point=n},qn.lineEnd=function(){qn.point=qn.lineEnd=D}},lineEnd:D,polygonStart:D,polygonEnd:D};function Hn(t,e){function r(e,r){var n=Math.cos(e),a=Math.cos(r),i=t(n*a);return[i*a*Math.sin(e),i*Math.sin(r)]}return r.invert=function(t,r){var n=Math.sqrt(t*t+r*r),a=e(n),i=Math.sin(a),o=Math.cos(a);return[Math.atan2(t*i,n*o),Math.asin(n&&r*i/n)]},r}var Gn=Hn(function(t){return Math.sqrt(2/(1+t))},function(t){return 2*Math.asin(t/2)});(t.geo.azimuthalEqualArea=function(){return En(Gn)}).raw=Gn;var Yn=Hn(function(t){var e=Math.acos(t);return e&&e/Math.sin(e)},P);function Wn(t,e){var r=Math.cos(t),n=function(t){return Math.tan(At/4+t/2)},a=t===e?Math.sin(t):Math.log(r/Math.cos(e))/Math.log(n(e)/n(t)),i=r*Math.pow(n(t),a)/a;if(!a)return Jn;function o(t,e){i>0?e<-Et+kt&&(e=-Et+kt):e>Et-kt&&(e=Et-kt);var r=i/Math.pow(n(e),a);return[r*Math.sin(a*t),i-r*Math.cos(a*t)]}return o.invert=function(t,e){var r=i-e,n=Pt(a)*Math.sqrt(t*t+r*r);return[Math.atan2(t,r)/a,2*Math.atan(Math.pow(i/n,1/a))-Et]},o}function Xn(t,e){var r=Math.cos(t),n=t===e?Math.sin(t):(r-Math.cos(e))/(e-t),a=r/n+t;if(y(n)<kt)return Pn;function i(t,e){var r=a-e;return[r*Math.sin(n*t),a-r*Math.cos(n*t)]}return i.invert=function(t,e){var r=a-e;return[Math.atan2(t,r)/n,a-Pt(n)*Math.sqrt(t*t+r*r)]},i}(t.geo.azimuthalEquidistant=function(){return En(Yn)}).raw=Yn,(t.geo.conicConformal=function(){return an(Wn)}).raw=Wn,(t.geo.conicEquidistant=function(){return an(Xn)}).raw=Xn;var Zn=Hn(function(t){return 1/t},Math.atan);function Jn(t,e){return[t,Math.log(Math.tan(At/4+e/2))]}function Kn(t){var e,r=En(t),n=r.scale,a=r.translate,i=r.clipExtent;return r.scale=function(){var t=n.apply(r,arguments);return t===r?e?r.clipExtent(null):r:t},r.translate=function(){var t=a.apply(r,arguments);return t===r?e?r.clipExtent(null):r:t},r.clipExtent=function(t){var o=i.apply(r,arguments);if(o===r){if(e=null==t){var s=At*n(),l=a();i([[l[0]-s,l[1]-s],[l[0]+s,l[1]+s]])}}else e&&(o=null);return o},r.clipExtent(null)}(t.geo.gnomonic=function(){return En(Zn)}).raw=Zn,Jn.invert=function(t,e){return[t,2*Math.atan(Math.exp(e))-Et]},(t.geo.mercator=function(){return Kn(Jn)}).raw=Jn;var Qn=Hn(function(){return 1},Math.asin);(t.geo.orthographic=function(){return En(Qn)}).raw=Qn;var $n=Hn(function(t){return 1/(1+t)},function(t){return 2*Math.atan(t)});function ta(t,e){return[Math.log(Math.tan(At/4+e/2)),-t]}function ea(t){return t[0]}function ra(t){return t[1]}function na(t){for(var e=t.length,r=[0,1],n=2,a=2;a<e;a++){for(;n>1&&Ot(t[r[n-2]],t[r[n-1]],t[a])<=0;)--n;r[n++]=a}return r.slice(0,n)}function aa(t,e){return t[0]-e[0]||t[1]-e[1]}(t.geo.stereographic=function(){return En($n)}).raw=$n,ta.invert=function(t,e){return[-e,2*Math.atan(Math.exp(t))-Et]},(t.geo.transverseMercator=function(){var t=Kn(ta),e=t.center,r=t.rotate;return t.center=function(t){return t?e([-t[1],t[0]]):[(t=e())[1],-t[0]]},t.rotate=function(t){return t?r([t[0],t[1],t.length>2?t[2]+90:90]):[(t=r())[0],t[1],t[2]-90]},r([0,0,90])}).raw=ta,t.geom={},t.geom.hull=function(t){var e=ea,r=ra;if(arguments.length)return n(t);function n(t){if(t.length<3)return[];var n,a=ve(e),i=ve(r),o=t.length,s=[],l=[];for(n=0;n<o;n++)s.push([+a.call(this,t[n],n),+i.call(this,t[n],n),n]);for(s.sort(aa),n=0;n<o;n++)l.push([s[n][0],-s[n][1]]);var c=na(s),u=na(l),h=u[0]===c[0],f=u[u.length-1]===c[c.length-1],p=[];for(n=c.length-1;n>=0;--n)p.push(t[s[c[n]][2]]);for(n=+h;n<u.length-f;++n)p.push(t[s[u[n]][2]]);return p}return n.x=function(t){return arguments.length?(e=t,n):e},n.y=function(t){return arguments.length?(r=t,n):r},n},t.geom.polygon=function(t){return U(t,ia),t};var ia=t.geom.polygon.prototype=[];function oa(t,e,r){return(r[0]-e[0])*(t[1]-e[1])<(r[1]-e[1])*(t[0]-e[0])}function sa(t,e,r,n){var a=t[0],i=r[0],o=e[0]-a,s=n[0]-i,l=t[1],c=r[1],u=e[1]-l,h=n[1]-c,f=(s*(l-c)-h*(a-i))/(h*o-s*u);return[a+f*o,l+f*u]}function la(t){var e=t[0],r=t[t.length-1];return!(e[0]-r[0]||e[1]-r[1])}ia.area=function(){for(var t,e=-1,r=this.length,n=this[r-1],a=0;++e<r;)t=n,n=this[e],a+=t[1]*n[0]-t[0]*n[1];return.5*a},ia.centroid=function(t){var e,r,n=-1,a=this.length,i=0,o=0,s=this[a-1];for(arguments.length||(t=-1/(6*this.area()));++n<a;)e=s,s=this[n],r=e[0]*s[1]-s[0]*e[1],i+=(e[0]+s[0])*r,o+=(e[1]+s[1])*r;return[i*t,o*t]},ia.clip=function(t){for(var e,r,n,a,i,o,s=la(t),l=-1,c=this.length-la(this),u=this[c-1];++l<c;){for(e=t.slice(),t.length=0,a=this[l],i=e[(n=e.length-s)-1],r=-1;++r<n;)oa(o=e[r],u,a)?(oa(i,u,a)||t.push(sa(i,o,u,a)),t.push(o)):oa(i,u,a)&&t.push(sa(i,o,u,a)),i=o;s&&t.push(t[0]),u=a}return t};var ca,ua,ha,fa,pa,da=[],ga=[];function va(){za(this),this.edge=this.site=this.circle=null}function ma(t){var e=da.pop()||new va;return e.site=t,e}function ya(t){Sa(t),ha.remove(t),da.push(t),za(t)}function xa(t){var e=t.circle,r=e.x,n=e.cy,a={x:r,y:n},i=t.P,o=t.N,s=[t];ya(t);for(var l=i;l.circle&&y(r-l.circle.x)<kt&&y(n-l.circle.cy)<kt;)i=l.P,s.unshift(l),ya(l),l=i;s.unshift(l),Sa(l);for(var c=o;c.circle&&y(r-c.circle.x)<kt&&y(n-c.circle.cy)<kt;)o=c.N,s.push(c),ya(c),c=o;s.push(c),Sa(c);var u,h=s.length;for(u=1;u<h;++u)c=s[u],l=s[u-1],Pa(c.edge,l.site,c.site,a);l=s[0],(c=s[h-1]).edge=La(l.site,c.site,null,a),Ma(l),Ma(c)}function ba(t){for(var e,r,n,a,i=t.x,o=t.y,s=ha._;s;)if((n=_a(s,o)-i)>kt)s=s.L;else{if(!((a=i-wa(s,o))>kt)){n>-kt?(e=s.P,r=s):a>-kt?(e=s,r=s.N):e=r=s;break}if(!s.R){e=s;break}s=s.R}var l=ma(t);if(ha.insert(e,l),e||r){if(e===r)return Sa(e),r=ma(e.site),ha.insert(l,r),l.edge=r.edge=La(e.site,l.site),Ma(e),void Ma(r);if(r){Sa(e),Sa(r);var c=e.site,u=c.x,h=c.y,f=t.x-u,p=t.y-h,d=r.site,g=d.x-u,v=d.y-h,m=2*(f*v-p*g),y=f*f+p*p,x=g*g+v*v,b={x:(v*y-p*x)/m+u,y:(f*x-g*y)/m+h};Pa(r.edge,c,d,b),l.edge=La(c,t,null,b),r.edge=La(t,d,null,b),Ma(e),Ma(r)}else l.edge=La(e.site,l.site)}}function _a(t,e){var r=t.site,n=r.x,a=r.y,i=a-e;if(!i)return n;var o=t.P;if(!o)return-1/0;var s=(r=o.site).x,l=r.y,c=l-e;if(!c)return s;var u=s-n,h=1/i-1/c,f=u/c;return h?(-f+Math.sqrt(f*f-2*h*(u*u/(-2*c)-l+c/2+a-i/2)))/h+n:(n+s)/2}function wa(t,e){var r=t.N;if(r)return _a(r,e);var n=t.site;return n.y===e?n.x:1/0}function ka(t){this.site=t,this.edges=[]}function Ta(t,e){return e.angle-t.angle}function Aa(){za(this),this.x=this.y=this.arc=this.site=this.cy=null}function Ma(t){var e=t.P,r=t.N;if(e&&r){var n=e.site,a=t.site,i=r.site;if(n!==i){var o=a.x,s=a.y,l=n.x-o,c=n.y-s,u=i.x-o,h=2*(l*(v=i.y-s)-c*u);if(!(h>=-Tt)){var f=l*l+c*c,p=u*u+v*v,d=(v*f-c*p)/h,g=(l*p-u*f)/h,v=g+s,m=ga.pop()||new Aa;m.arc=t,m.site=a,m.x=d+o,m.y=v+Math.sqrt(d*d+g*g),m.cy=v,t.circle=m;for(var y=null,x=pa._;x;)if(m.y<x.y||m.y===x.y&&m.x<=x.x){if(!x.L){y=x.P;break}x=x.L}else{if(!x.R){y=x;break}x=x.R}pa.insert(y,m),y||(fa=m)}}}}function Sa(t){var e=t.circle;e&&(e.P||(fa=e.N),pa.remove(e),ga.push(e),za(e),t.circle=null)}function Ea(t,e){var r=t.b;if(r)return!0;var n,a,i=t.a,o=e[0][0],s=e[1][0],l=e[0][1],c=e[1][1],u=t.l,h=t.r,f=u.x,p=u.y,d=h.x,g=h.y,v=(f+d)/2,m=(p+g)/2;if(g===p){if(v<o||v>=s)return;if(f>d){if(i){if(i.y>=c)return}else i={x:v,y:l};r={x:v,y:c}}else{if(i){if(i.y<l)return}else i={x:v,y:c};r={x:v,y:l}}}else if(a=m-(n=(f-d)/(g-p))*v,n<-1||n>1)if(f>d){if(i){if(i.y>=c)return}else i={x:(l-a)/n,y:l};r={x:(c-a)/n,y:c}}else{if(i){if(i.y<l)return}else i={x:(c-a)/n,y:c};r={x:(l-a)/n,y:l}}else if(p<g){if(i){if(i.x>=s)return}else i={x:o,y:n*o+a};r={x:s,y:n*s+a}}else{if(i){if(i.x<o)return}else i={x:s,y:n*s+a};r={x:o,y:n*o+a}}return t.a=i,t.b=r,!0}function Ca(t,e){this.l=t,this.r=e,this.a=this.b=null}function La(t,e,r,n){var a=new Ca(t,e);return ca.push(a),r&&Pa(a,t,e,r),n&&Pa(a,e,t,n),ua[t.i].edges.push(new Oa(a,t,e)),ua[e.i].edges.push(new Oa(a,e,t)),a}function Pa(t,e,r,n){t.a||t.b?t.l===r?t.b=n:t.a=n:(t.a=n,t.l=e,t.r=r)}function Oa(t,e,r){var n=t.a,a=t.b;this.edge=t,this.site=e,this.angle=r?Math.atan2(r.y-e.y,r.x-e.x):t.l===e?Math.atan2(a.x-n.x,n.y-a.y):Math.atan2(n.x-a.x,a.y-n.y)}function Ia(){this._=null}function za(t){t.U=t.C=t.L=t.R=t.P=t.N=null}function Da(t,e){var r=e,n=e.R,a=r.U;a?a.L===r?a.L=n:a.R=n:t._=n,n.U=a,r.U=n,r.R=n.L,r.R&&(r.R.U=r),n.L=r}function Ra(t,e){var r=e,n=e.L,a=r.U;a?a.L===r?a.L=n:a.R=n:t._=n,n.U=a,r.U=n,r.L=n.R,r.L&&(r.L.U=r),n.R=r}function Fa(t){for(;t.L;)t=t.L;return t}function Ba(t,e){var r,n,a,i=t.sort(Na).pop();for(ca=[],ua=new Array(t.length),ha=new Ia,pa=new Ia;;)if(a=fa,i&&(!a||i.y<a.y||i.y===a.y&&i.x<a.x))i.x===r&&i.y===n||(ua[i.i]=new ka(i),ba(i),r=i.x,n=i.y),i=t.pop();else{if(!a)break;xa(a.arc)}e&&(function(t){for(var e,r=ca,n=en(t[0][0],t[0][1],t[1][0],t[1][1]),a=r.length;a--;)(!Ea(e=r[a],t)||!n(e)||y(e.a.x-e.b.x)<kt&&y(e.a.y-e.b.y)<kt)&&(e.a=e.b=null,r.splice(a,1))}(e),function(t){for(var e,r,n,a,i,o,s,l,c,u,h=t[0][0],f=t[1][0],p=t[0][1],d=t[1][1],g=ua,v=g.length;v--;)if((i=g[v])&&i.prepare())for(l=(s=i.edges).length,o=0;o<l;)n=(u=s[o].end()).x,a=u.y,e=(c=s[++o%l].start()).x,r=c.y,(y(n-e)>kt||y(a-r)>kt)&&(s.splice(o,0,new Oa((m=i.site,x=u,b=y(n-h)<kt&&d-a>kt?{x:h,y:y(e-h)<kt?r:d}:y(a-d)<kt&&f-n>kt?{x:y(r-d)<kt?e:f,y:d}:y(n-f)<kt&&a-p>kt?{x:f,y:y(e-f)<kt?r:p}:y(a-p)<kt&&n-h>kt?{x:y(r-p)<kt?e:h,y:p}:null,_=void 0,_=new Ca(m,null),_.a=x,_.b=b,ca.push(_),_),i.site,null)),++l);var m,x,b,_}(e));var o={cells:ua,edges:ca};return ha=pa=ca=ua=null,o}function Na(t,e){return e.y-t.y||e.x-t.x}ka.prototype.prepare=function(){for(var t,e=this.edges,r=e.length;r--;)(t=e[r].edge).b&&t.a||e.splice(r,1);return e.sort(Ta),e.length},Oa.prototype={start:function(){return this.edge.l===this.site?this.edge.a:this.edge.b},end:function(){return this.edge.l===this.site?this.edge.b:this.edge.a}},Ia.prototype={insert:function(t,e){var r,n,a;if(t){if(e.P=t,e.N=t.N,t.N&&(t.N.P=e),t.N=e,t.R){for(t=t.R;t.L;)t=t.L;t.L=e}else t.R=e;r=t}else this._?(t=Fa(this._),e.P=null,e.N=t,t.P=t.L=e,r=t):(e.P=e.N=null,this._=e,r=null);for(e.L=e.R=null,e.U=r,e.C=!0,t=e;r&&r.C;)r===(n=r.U).L?(a=n.R)&&a.C?(r.C=a.C=!1,n.C=!0,t=n):(t===r.R&&(Da(this,r),r=(t=r).U),r.C=!1,n.C=!0,Ra(this,n)):(a=n.L)&&a.C?(r.C=a.C=!1,n.C=!0,t=n):(t===r.L&&(Ra(this,r),r=(t=r).U),r.C=!1,n.C=!0,Da(this,n)),r=t.U;this._.C=!1},remove:function(t){t.N&&(t.N.P=t.P),t.P&&(t.P.N=t.N),t.N=t.P=null;var e,r,n,a=t.U,i=t.L,o=t.R;if(r=i?o?Fa(o):i:o,a?a.L===t?a.L=r:a.R=r:this._=r,i&&o?(n=r.C,r.C=t.C,r.L=i,i.U=r,r!==o?(a=r.U,r.U=t.U,t=r.R,a.L=t,r.R=o,o.U=r):(r.U=a,a=r,t=r.R)):(n=t.C,t=r),t&&(t.U=a),!n)if(t&&t.C)t.C=!1;else{do{if(t===this._)break;if(t===a.L){if((e=a.R).C&&(e.C=!1,a.C=!0,Da(this,a),e=a.R),e.L&&e.L.C||e.R&&e.R.C){e.R&&e.R.C||(e.L.C=!1,e.C=!0,Ra(this,e),e=a.R),e.C=a.C,a.C=e.R.C=!1,Da(this,a),t=this._;break}}else if((e=a.L).C&&(e.C=!1,a.C=!0,Ra(this,a),e=a.L),e.L&&e.L.C||e.R&&e.R.C){e.L&&e.L.C||(e.R.C=!1,e.C=!0,Da(this,e),e=a.L),e.C=a.C,a.C=e.L.C=!1,Ra(this,a),t=this._;break}e.C=!0,t=a,a=a.U}while(!t.C);t&&(t.C=!1)}}},t.geom.voronoi=function(t){var e=ea,r=ra,n=e,a=r,i=ja;if(t)return o(t);function o(t){var e=new Array(t.length),r=i[0][0],n=i[0][1],a=i[1][0],o=i[1][1];return Ba(s(t),i).cells.forEach(function(i,s){var l=i.edges,c=i.site;(e[s]=l.length?l.map(function(t){var e=t.start();return[e.x,e.y]}):c.x>=r&&c.x<=a&&c.y>=n&&c.y<=o?[[r,o],[a,o],[a,n],[r,n]]:[]).point=t[s]}),e}function s(t){return t.map(function(t,e){return{x:Math.round(n(t,e)/kt)*kt,y:Math.round(a(t,e)/kt)*kt,i:e}})}return o.links=function(t){return Ba(s(t)).edges.filter(function(t){return t.l&&t.r}).map(function(e){return{source:t[e.l.i],target:t[e.r.i]}})},o.triangles=function(t){var e=[];return Ba(s(t)).cells.forEach(function(r,n){for(var a,i,o,s,l=r.site,c=r.edges.sort(Ta),u=-1,h=c.length,f=c[h-1].edge,p=f.l===l?f.r:f.l;++u<h;)f,a=p,p=(f=c[u].edge).l===l?f.r:f.l,n<a.i&&n<p.i&&(o=a,s=p,((i=l).x-s.x)*(o.y-i.y)-(i.x-o.x)*(s.y-i.y)<0)&&e.push([t[n],t[a.i],t[p.i]])}),e},o.x=function(t){return arguments.length?(n=ve(e=t),o):e},o.y=function(t){return arguments.length?(a=ve(r=t),o):r},o.clipExtent=function(t){return arguments.length?(i=null==t?ja:t,o):i===ja?null:i},o.size=function(t){return arguments.length?o.clipExtent(t&&[[0,0],t]):i===ja?null:i&&i[1]},o};var ja=[[-1e6,-1e6],[1e6,1e6]];function Va(t){return t.x}function Ua(t){return t.y}function qa(e,r){e=t.rgb(e),r=t.rgb(r);var n=e.r,a=e.g,i=e.b,o=r.r-n,s=r.g-a,l=r.b-i;return function(t){return\"#\"+ce(Math.round(n+o*t))+ce(Math.round(a+s*t))+ce(Math.round(i+l*t))}}function Ha(t,e){var r,n={},a={};for(r in t)r in e?n[r]=Za(t[r],e[r]):a[r]=t[r];for(r in e)r in t||(a[r]=e[r]);return function(t){for(r in n)a[r]=n[r](t);return a}}function Ga(t,e){return t=+t,e=+e,function(r){return t*(1-r)+e*r}}function Ya(t,e){var r,n,a,i=Wa.lastIndex=Xa.lastIndex=0,o=-1,s=[],l=[];for(t+=\"\",e+=\"\";(r=Wa.exec(t))&&(n=Xa.exec(e));)(a=n.index)>i&&(a=e.slice(i,a),s[o]?s[o]+=a:s[++o]=a),(r=r[0])===(n=n[0])?s[o]?s[o]+=n:s[++o]=n:(s[++o]=null,l.push({i:o,x:Ga(r,n)})),i=Xa.lastIndex;return i<e.length&&(a=e.slice(i),s[o]?s[o]+=a:s[++o]=a),s.length<2?l[0]?(e=l[0].x,function(t){return e(t)+\"\"}):function(){return e}:(e=l.length,function(t){for(var r,n=0;n<e;++n)s[(r=l[n]).i]=r.x(t);return s.join(\"\")})}t.geom.delaunay=function(e){return t.geom.voronoi().triangles(e)},t.geom.quadtree=function(t,e,r,n,a){var i,o=ea,s=ra;if(i=arguments.length)return o=Va,s=Ua,3===i&&(a=r,n=e,r=e=0),l(t);function l(t){var l,c,u,h,f,p,d,g,v,m=ve(o),x=ve(s);if(null!=e)p=e,d=r,g=n,v=a;else if(g=v=-(p=d=1/0),c=[],u=[],f=t.length,i)for(h=0;h<f;++h)(l=t[h]).x<p&&(p=l.x),l.y<d&&(d=l.y),l.x>g&&(g=l.x),l.y>v&&(v=l.y),c.push(l.x),u.push(l.y);else for(h=0;h<f;++h){var b=+m(l=t[h],h),_=+x(l,h);b<p&&(p=b),_<d&&(d=_),b>g&&(g=b),_>v&&(v=_),c.push(b),u.push(_)}var w=g-p,k=v-d;function T(t,e,r,n,a,i,o,s){if(!isNaN(r)&&!isNaN(n))if(t.leaf){var l=t.x,c=t.y;if(null!=l)if(y(l-r)+y(c-n)<.01)A(t,e,r,n,a,i,o,s);else{var u=t.point;t.x=t.y=t.point=null,A(t,u,l,c,a,i,o,s),A(t,e,r,n,a,i,o,s)}else t.x=r,t.y=n,t.point=e}else A(t,e,r,n,a,i,o,s)}function A(t,e,r,n,a,i,o,s){var l=.5*(a+o),c=.5*(i+s),u=r>=l,h=n>=c,f=h<<1|u;t.leaf=!1,u?a=l:o=l,h?i=c:s=c,T(t=t.nodes[f]||(t.nodes[f]={leaf:!0,nodes:[],point:null,x:null,y:null,add:function(t){T(M,t,+m(t,++h),+x(t,h),p,d,g,v)}}),e,r,n,a,i,o,s)}w>k?v=d+w:g=p+k;var M={leaf:!0,nodes:[],point:null,x:null,y:null,add:function(t){T(M,t,+m(t,++h),+x(t,h),p,d,g,v)}};if(M.visit=function(t){!function t(e,r,n,a,i,o){if(!e(r,n,a,i,o)){var s=.5*(n+i),l=.5*(a+o),c=r.nodes;c[0]&&t(e,c[0],n,a,s,l),c[1]&&t(e,c[1],s,a,i,l),c[2]&&t(e,c[2],n,l,s,o),c[3]&&t(e,c[3],s,l,i,o)}}(t,M,p,d,g,v)},M.find=function(t){return function(t,e,r,n,a,i,o){var s,l=1/0;return function t(c,u,h,f,p){if(!(u>i||h>o||f<n||p<a)){if(d=c.point){var d,g=e-c.x,v=r-c.y,m=g*g+v*v;if(m<l){var y=Math.sqrt(l=m);n=e-y,a=r-y,i=e+y,o=r+y,s=d}}for(var x=c.nodes,b=.5*(u+f),_=.5*(h+p),w=(r>=_)<<1|e>=b,k=w+4;w<k;++w)if(c=x[3&w])switch(3&w){case 0:t(c,u,h,b,_);break;case 1:t(c,b,h,f,_);break;case 2:t(c,u,_,b,p);break;case 3:t(c,b,_,f,p)}}}(t,n,a,i,o),s}(M,t[0],t[1],p,d,g,v)},h=-1,null==e){for(;++h<f;)T(M,t[h],c[h],u[h],p,d,g,v);--h}else t.forEach(M.add);return c=u=t=l=null,M}return l.x=function(t){return arguments.length?(o=t,l):o},l.y=function(t){return arguments.length?(s=t,l):s},l.extent=function(t){return arguments.length?(null==t?e=r=n=a=null:(e=+t[0][0],r=+t[0][1],n=+t[1][0],a=+t[1][1]),l):null==e?null:[[e,r],[n,a]]},l.size=function(t){return arguments.length?(null==t?e=r=n=a=null:(e=r=0,n=+t[0],a=+t[1]),l):null==e?null:[n-e,a-r]},l},t.interpolateRgb=qa,t.interpolateObject=Ha,t.interpolateNumber=Ga,t.interpolateString=Ya;var Wa=/[-+]?(?:\\d+\\.?\\d*|\\.?\\d+)(?:[eE][-+]?\\d+)?/g,Xa=new RegExp(Wa.source,\"g\");function Za(e,r){for(var n,a=t.interpolators.length;--a>=0&&!(n=t.interpolators[a](e,r)););return n}function Ja(t,e){var r,n=[],a=[],i=t.length,o=e.length,s=Math.min(t.length,e.length);for(r=0;r<s;++r)n.push(Za(t[r],e[r]));for(;r<i;++r)a[r]=t[r];for(;r<o;++r)a[r]=e[r];return function(t){for(r=0;r<s;++r)a[r]=n[r](t);return a}}t.interpolate=Za,t.interpolators=[function(t,e){var r=typeof e;return(\"string\"===r?ge.has(e.toLowerCase())||/^(#|rgb\\(|hsl\\()/i.test(e)?qa:Ya:e instanceof Vt?qa:Array.isArray(e)?Ja:\"object\"===r&&isNaN(e)?Ha:Ga)(t,e)}],t.interpolateArray=Ja;var Ka=function(){return P},Qa=t.map({linear:Ka,poly:function(t){return function(e){return Math.pow(e,t)}},quad:function(){return ri},cubic:function(){return ni},sin:function(){return ii},exp:function(){return oi},circle:function(){return si},elastic:function(t,e){var r;arguments.length<2&&(e=.45);arguments.length?r=e/Mt*Math.asin(1/t):(t=1,r=e/4);return function(n){return 1+t*Math.pow(2,-10*n)*Math.sin((n-r)*Mt/e)}},back:function(t){t||(t=1.70158);return function(e){return e*e*((t+1)*e-t)}},bounce:function(){return li}}),$a=t.map({in:P,out:ti,\"in-out\":ei,\"out-in\":function(t){return ei(ti(t))}});function ti(t){return function(e){return 1-t(1-e)}}function ei(t){return function(e){return.5*(e<.5?t(2*e):2-t(2-2*e))}}function ri(t){return t*t}function ni(t){return t*t*t}function ai(t){if(t<=0)return 0;if(t>=1)return 1;var e=t*t,r=e*t;return 4*(t<.5?r:3*(t-e)+r-.75)}function ii(t){return 1-Math.cos(t*Et)}function oi(t){return Math.pow(2,10*(t-1))}function si(t){return 1-Math.sqrt(1-t*t)}function li(t){return t<1/2.75?7.5625*t*t:t<2/2.75?7.5625*(t-=1.5/2.75)*t+.75:t<2.5/2.75?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375}function ci(t,e){return e-=t,function(r){return Math.round(t+e*r)}}function ui(t){var e,r,n,a=[t.a,t.b],i=[t.c,t.d],o=fi(a),s=hi(a,i),l=fi(((e=i)[0]+=(n=-s)*(r=a)[0],e[1]+=n*r[1],e))||0;a[0]*i[1]<i[0]*a[1]&&(a[0]*=-1,a[1]*=-1,o*=-1,s*=-1),this.rotate=(o?Math.atan2(a[1],a[0]):Math.atan2(-i[0],i[1]))*Lt,this.translate=[t.e,t.f],this.scale=[o,l],this.skew=l?Math.atan2(s,l)*Lt:0}function hi(t,e){return t[0]*e[0]+t[1]*e[1]}function fi(t){var e=Math.sqrt(hi(t,t));return e&&(t[0]/=e,t[1]/=e),e}t.ease=function(t){var e,n=t.indexOf(\"-\"),a=n>=0?t.slice(0,n):t,i=n>=0?t.slice(n+1):\"in\";return a=Qa.get(a)||Ka,i=$a.get(i)||P,e=i(a.apply(null,r.call(arguments,1))),function(t){return t<=0?0:t>=1?1:e(t)}},t.interpolateHcl=function(e,r){e=t.hcl(e),r=t.hcl(r);var n=e.h,a=e.c,i=e.l,o=r.h-n,s=r.c-a,l=r.l-i;isNaN(s)&&(s=0,a=isNaN(a)?r.c:a);isNaN(o)?(o=0,n=isNaN(n)?r.h:n):o>180?o-=360:o<-180&&(o+=360);return function(t){return Wt(n+o*t,a+s*t,i+l*t)+\"\"}},t.interpolateHsl=function(e,r){e=t.hsl(e),r=t.hsl(r);var n=e.h,a=e.s,i=e.l,o=r.h-n,s=r.s-a,l=r.l-i;isNaN(s)&&(s=0,a=isNaN(a)?r.s:a);isNaN(o)?(o=0,n=isNaN(n)?r.h:n):o>180?o-=360:o<-180&&(o+=360);return function(t){return Ht(n+o*t,a+s*t,i+l*t)+\"\"}},t.interpolateLab=function(e,r){e=t.lab(e),r=t.lab(r);var n=e.l,a=e.a,i=e.b,o=r.l-n,s=r.a-a,l=r.b-i;return function(t){return te(n+o*t,a+s*t,i+l*t)+\"\"}},t.interpolateRound=ci,t.transform=function(e){var r=a.createElementNS(t.ns.prefix.svg,\"g\");return(t.transform=function(t){if(null!=t){r.setAttribute(\"transform\",t);var e=r.transform.baseVal.consolidate()}return new ui(e?e.matrix:pi)})(e)},ui.prototype.toString=function(){return\"translate(\"+this.translate+\")rotate(\"+this.rotate+\")skewX(\"+this.skew+\")scale(\"+this.scale+\")\"};var pi={a:1,b:0,c:0,d:1,e:0,f:0};function di(t){return t.length?t.pop()+\",\":\"\"}function gi(e,r){var n=[],a=[];return e=t.transform(e),r=t.transform(r),function(t,e,r,n){if(t[0]!==e[0]||t[1]!==e[1]){var a=r.push(\"translate(\",null,\",\",null,\")\");n.push({i:a-4,x:Ga(t[0],e[0])},{i:a-2,x:Ga(t[1],e[1])})}else(e[0]||e[1])&&r.push(\"translate(\"+e+\")\")}(e.translate,r.translate,n,a),function(t,e,r,n){t!==e?(t-e>180?e+=360:e-t>180&&(t+=360),n.push({i:r.push(di(r)+\"rotate(\",null,\")\")-2,x:Ga(t,e)})):e&&r.push(di(r)+\"rotate(\"+e+\")\")}(e.rotate,r.rotate,n,a),function(t,e,r,n){t!==e?n.push({i:r.push(di(r)+\"skewX(\",null,\")\")-2,x:Ga(t,e)}):e&&r.push(di(r)+\"skewX(\"+e+\")\")}(e.skew,r.skew,n,a),function(t,e,r,n){if(t[0]!==e[0]||t[1]!==e[1]){var a=r.push(di(r)+\"scale(\",null,\",\",null,\")\");n.push({i:a-4,x:Ga(t[0],e[0])},{i:a-2,x:Ga(t[1],e[1])})}else 1===e[0]&&1===e[1]||r.push(di(r)+\"scale(\"+e+\")\")}(e.scale,r.scale,n,a),e=r=null,function(t){for(var e,r=-1,i=a.length;++r<i;)n[(e=a[r]).i]=e.x(t);return n.join(\"\")}}function vi(t,e){return e=(e-=t=+t)||1/e,function(r){return(r-t)/e}}function mi(t,e){return e=(e-=t=+t)||1/e,function(r){return Math.max(0,Math.min(1,(r-t)/e))}}function yi(t){for(var e=t.source,r=t.target,n=function(t,e){if(t===e)return t;var r=xi(t),n=xi(e),a=r.pop(),i=n.pop(),o=null;for(;a===i;)o=a,a=r.pop(),i=n.pop();return o}(e,r),a=[e];e!==n;)e=e.parent,a.push(e);for(var i=a.length;r!==n;)a.splice(i,0,r),r=r.parent;return a}function xi(t){for(var e=[],r=t.parent;null!=r;)e.push(t),t=r,r=r.parent;return e.push(t),e}function bi(t){t.fixed|=2}function _i(t){t.fixed&=-7}function wi(t){t.fixed|=4,t.px=t.x,t.py=t.y}function ki(t){t.fixed&=-5}t.interpolateTransform=gi,t.layout={},t.layout.bundle=function(){return function(t){for(var e=[],r=-1,n=t.length;++r<n;)e.push(yi(t[r]));return e}},t.layout.chord=function(){var e,r,n,a,i,o,s,l={},c=0;function u(){var l,u,f,p,d,g={},v=[],m=t.range(a),y=[];for(e=[],r=[],l=0,p=-1;++p<a;){for(u=0,d=-1;++d<a;)u+=n[p][d];v.push(u),y.push(t.range(a)),l+=u}for(i&&m.sort(function(t,e){return i(v[t],v[e])}),o&&y.forEach(function(t,e){t.sort(function(t,r){return o(n[e][t],n[e][r])})}),l=(Mt-c*a)/l,u=0,p=-1;++p<a;){for(f=u,d=-1;++d<a;){var x=m[p],b=y[x][d],_=n[x][b],w=u,k=u+=_*l;g[x+\"-\"+b]={index:x,subindex:b,startAngle:w,endAngle:k,value:_}}r[x]={index:x,startAngle:f,endAngle:u,value:v[x]},u+=c}for(p=-1;++p<a;)for(d=p-1;++d<a;){var T=g[p+\"-\"+d],A=g[d+\"-\"+p];(T.value||A.value)&&e.push(T.value<A.value?{source:A,target:T}:{source:T,target:A})}s&&h()}function h(){e.sort(function(t,e){return s((t.source.value+t.target.value)/2,(e.source.value+e.target.value)/2)})}return l.matrix=function(t){return arguments.length?(a=(n=t)&&n.length,e=r=null,l):n},l.padding=function(t){return arguments.length?(c=t,e=r=null,l):c},l.sortGroups=function(t){return arguments.length?(i=t,e=r=null,l):i},l.sortSubgroups=function(t){return arguments.length?(o=t,e=null,l):o},l.sortChords=function(t){return arguments.length?(s=t,e&&h(),l):s},l.chords=function(){return e||u(),e},l.groups=function(){return r||u(),r},l},t.layout.force=function(){var e,r,n,a,i,o,s={},l=t.dispatch(\"start\",\"tick\",\"end\"),c=[1,1],u=.9,h=Ti,f=Ai,p=-30,d=Mi,g=.1,v=.64,m=[],y=[];function x(t){return function(e,r,n,a){if(e.point!==t){var i=e.cx-t.x,o=e.cy-t.y,s=a-r,l=i*i+o*o;if(s*s/v<l){if(l<d){var c=e.charge/l;t.px-=i*c,t.py-=o*c}return!0}if(e.point&&l&&l<d){c=e.pointCharge/l;t.px-=i*c,t.py-=o*c}}return!e.charge}}function b(e){e.px=t.event.x,e.py=t.event.y,s.resume()}return s.tick=function(){if((n*=.99)<.005)return e=null,l.end({type:\"end\",alpha:n=0}),!0;var r,s,h,f,d,v,b,_,w,k=m.length,T=y.length;for(s=0;s<T;++s)f=(h=y[s]).source,(v=(_=(d=h.target).x-f.x)*_+(w=d.y-f.y)*w)&&(_*=v=n*i[s]*((v=Math.sqrt(v))-a[s])/v,w*=v,d.x-=_*(b=f.weight+d.weight?f.weight/(f.weight+d.weight):.5),d.y-=w*b,f.x+=_*(b=1-b),f.y+=w*b);if((b=n*g)&&(_=c[0]/2,w=c[1]/2,s=-1,b))for(;++s<k;)(h=m[s]).x+=(_-h.x)*b,h.y+=(w-h.y)*b;if(p)for(!function t(e,r,n){var a=0,i=0;e.charge=0;if(!e.leaf)for(var o,s=e.nodes,l=s.length,c=-1;++c<l;)null!=(o=s[c])&&(t(o,r,n),e.charge+=o.charge,a+=o.charge*o.cx,i+=o.charge*o.cy);if(e.point){e.leaf||(e.point.x+=Math.random()-.5,e.point.y+=Math.random()-.5);var u=r*n[e.point.index];e.charge+=e.pointCharge=u,a+=u*e.point.x,i+=u*e.point.y}e.cx=a/e.charge;e.cy=i/e.charge}(r=t.geom.quadtree(m),n,o),s=-1;++s<k;)(h=m[s]).fixed||r.visit(x(h));for(s=-1;++s<k;)(h=m[s]).fixed?(h.x=h.px,h.y=h.py):(h.x-=(h.px-(h.px=h.x))*u,h.y-=(h.py-(h.py=h.y))*u);l.tick({type:\"tick\",alpha:n})},s.nodes=function(t){return arguments.length?(m=t,s):m},s.links=function(t){return arguments.length?(y=t,s):y},s.size=function(t){return arguments.length?(c=t,s):c},s.linkDistance=function(t){return arguments.length?(h=\"function\"==typeof t?t:+t,s):h},s.distance=s.linkDistance,s.linkStrength=function(t){return arguments.length?(f=\"function\"==typeof t?t:+t,s):f},s.friction=function(t){return arguments.length?(u=+t,s):u},s.charge=function(t){return arguments.length?(p=\"function\"==typeof t?t:+t,s):p},s.chargeDistance=function(t){return arguments.length?(d=t*t,s):Math.sqrt(d)},s.gravity=function(t){return arguments.length?(g=+t,s):g},s.theta=function(t){return arguments.length?(v=t*t,s):Math.sqrt(v)},s.alpha=function(t){return arguments.length?(t=+t,n?t>0?n=t:(e.c=null,e.t=NaN,e=null,l.end({type:\"end\",alpha:n=0})):t>0&&(l.start({type:\"start\",alpha:n=t}),e=Te(s.tick)),s):n},s.start=function(){var t,e,r,n=m.length,l=y.length,u=c[0],d=c[1];for(t=0;t<n;++t)(r=m[t]).index=t,r.weight=0;for(t=0;t<l;++t)\"number\"==typeof(r=y[t]).source&&(r.source=m[r.source]),\"number\"==typeof r.target&&(r.target=m[r.target]),++r.source.weight,++r.target.weight;for(t=0;t<n;++t)r=m[t],isNaN(r.x)&&(r.x=g(\"x\",u)),isNaN(r.y)&&(r.y=g(\"y\",d)),isNaN(r.px)&&(r.px=r.x),isNaN(r.py)&&(r.py=r.y);if(a=[],\"function\"==typeof h)for(t=0;t<l;++t)a[t]=+h.call(this,y[t],t);else for(t=0;t<l;++t)a[t]=h;if(i=[],\"function\"==typeof f)for(t=0;t<l;++t)i[t]=+f.call(this,y[t],t);else for(t=0;t<l;++t)i[t]=f;if(o=[],\"function\"==typeof p)for(t=0;t<n;++t)o[t]=+p.call(this,m[t],t);else for(t=0;t<n;++t)o[t]=p;function g(r,a){if(!e){for(e=new Array(n),c=0;c<n;++c)e[c]=[];for(c=0;c<l;++c){var i=y[c];e[i.source.index].push(i.target),e[i.target.index].push(i.source)}}for(var o,s=e[t],c=-1,u=s.length;++c<u;)if(!isNaN(o=s[c][r]))return o;return Math.random()*a}return s.resume()},s.resume=function(){return s.alpha(.1)},s.stop=function(){return s.alpha(0)},s.drag=function(){if(r||(r=t.behavior.drag().origin(P).on(\"dragstart.force\",bi).on(\"drag.force\",b).on(\"dragend.force\",_i)),!arguments.length)return r;this.on(\"mouseover.force\",wi).on(\"mouseout.force\",ki).call(r)},t.rebind(s,l,\"on\")};var Ti=20,Ai=1,Mi=1/0;function Si(e,r){return t.rebind(e,r,\"sort\",\"children\",\"value\"),e.nodes=e,e.links=Ii,e}function Ei(t,e){for(var r=[t];null!=(t=r.pop());)if(e(t),(a=t.children)&&(n=a.length))for(var n,a;--n>=0;)r.push(a[n])}function Ci(t,e){for(var r=[t],n=[];null!=(t=r.pop());)if(n.push(t),(i=t.children)&&(a=i.length))for(var a,i,o=-1;++o<a;)r.push(i[o]);for(;null!=(t=n.pop());)e(t)}function Li(t){return t.children}function Pi(t){return t.value}function Oi(t,e){return e.value-t.value}function Ii(e){return t.merge(e.map(function(t){return(t.children||[]).map(function(e){return{source:t,target:e}})}))}t.layout.hierarchy=function(){var t=Oi,e=Li,r=Pi;function n(a){var i,o=[a],s=[];for(a.depth=0;null!=(i=o.pop());)if(s.push(i),(c=e.call(n,i,i.depth))&&(l=c.length)){for(var l,c,u;--l>=0;)o.push(u=c[l]),u.parent=i,u.depth=i.depth+1;r&&(i.value=0),i.children=c}else r&&(i.value=+r.call(n,i,i.depth)||0),delete i.children;return Ci(a,function(e){var n,a;t&&(n=e.children)&&n.sort(t),r&&(a=e.parent)&&(a.value+=e.value)}),s}return n.sort=function(e){return arguments.length?(t=e,n):t},n.children=function(t){return arguments.length?(e=t,n):e},n.value=function(t){return arguments.length?(r=t,n):r},n.revalue=function(t){return r&&(Ei(t,function(t){t.children&&(t.value=0)}),Ci(t,function(t){var e;t.children||(t.value=+r.call(n,t,t.depth)||0),(e=t.parent)&&(e.value+=t.value)})),t},n},t.layout.partition=function(){var e=t.layout.hierarchy(),r=[1,1];function n(t,n){var a=e.call(this,t,n);return function t(e,r,n,a){var i=e.children;if(e.x=r,e.y=e.depth*a,e.dx=n,e.dy=a,i&&(o=i.length)){var o,s,l,c=-1;for(n=e.value?n/e.value:0;++c<o;)t(s=i[c],r,l=s.value*n,a),r+=l}}(a[0],0,r[0],r[1]/function t(e){var r=e.children,n=0;if(r&&(a=r.length))for(var a,i=-1;++i<a;)n=Math.max(n,t(r[i]));return 1+n}(a[0])),a}return n.size=function(t){return arguments.length?(r=t,n):r},Si(n,e)},t.layout.pie=function(){var e=Number,r=zi,n=0,a=Mt,i=0;function o(s){var l,c=s.length,u=s.map(function(t,r){return+e.call(o,t,r)}),h=+(\"function\"==typeof n?n.apply(this,arguments):n),f=(\"function\"==typeof a?a.apply(this,arguments):a)-h,p=Math.min(Math.abs(f)/c,+(\"function\"==typeof i?i.apply(this,arguments):i)),d=p*(f<0?-1:1),g=t.sum(u),v=g?(f-c*d)/g:0,m=t.range(c),y=[];return null!=r&&m.sort(r===zi?function(t,e){return u[e]-u[t]}:function(t,e){return r(s[t],s[e])}),m.forEach(function(t){y[t]={data:s[t],value:l=u[t],startAngle:h,endAngle:h+=l*v+d,padAngle:p}}),y}return o.value=function(t){return arguments.length?(e=t,o):e},o.sort=function(t){return arguments.length?(r=t,o):r},o.startAngle=function(t){return arguments.length?(n=t,o):n},o.endAngle=function(t){return arguments.length?(a=t,o):a},o.padAngle=function(t){return arguments.length?(i=t,o):i},o};var zi={};function Di(t){return t.x}function Ri(t){return t.y}function Fi(t,e,r){t.y0=e,t.y=r}t.layout.stack=function(){var e=P,r=ji,n=Vi,a=Fi,i=Di,o=Ri;function s(l,c){if(!(p=l.length))return l;var u=l.map(function(t,r){return e.call(s,t,r)}),h=u.map(function(t){return t.map(function(t,e){return[i.call(s,t,e),o.call(s,t,e)]})}),f=r.call(s,h,c);u=t.permute(u,f),h=t.permute(h,f);var p,d,g,v,m=n.call(s,h,c),y=u[0].length;for(g=0;g<y;++g)for(a.call(s,u[0][g],v=m[g],h[0][g][1]),d=1;d<p;++d)a.call(s,u[d][g],v+=h[d-1][g][1],h[d][g][1]);return l}return s.values=function(t){return arguments.length?(e=t,s):e},s.order=function(t){return arguments.length?(r=\"function\"==typeof t?t:Bi.get(t)||ji,s):r},s.offset=function(t){return arguments.length?(n=\"function\"==typeof t?t:Ni.get(t)||Vi,s):n},s.x=function(t){return arguments.length?(i=t,s):i},s.y=function(t){return arguments.length?(o=t,s):o},s.out=function(t){return arguments.length?(a=t,s):a},s};var Bi=t.map({\"inside-out\":function(e){var r,n,a=e.length,i=e.map(Ui),o=e.map(qi),s=t.range(a).sort(function(t,e){return i[t]-i[e]}),l=0,c=0,u=[],h=[];for(r=0;r<a;++r)n=s[r],l<c?(l+=o[n],u.push(n)):(c+=o[n],h.push(n));return h.reverse().concat(u)},reverse:function(e){return t.range(e.length).reverse()},default:ji}),Ni=t.map({silhouette:function(t){var e,r,n,a=t.length,i=t[0].length,o=[],s=0,l=[];for(r=0;r<i;++r){for(e=0,n=0;e<a;e++)n+=t[e][r][1];n>s&&(s=n),o.push(n)}for(r=0;r<i;++r)l[r]=(s-o[r])/2;return l},wiggle:function(t){var e,r,n,a,i,o,s,l,c,u=t.length,h=t[0],f=h.length,p=[];for(p[0]=l=c=0,r=1;r<f;++r){for(e=0,a=0;e<u;++e)a+=t[e][r][1];for(e=0,i=0,s=h[r][0]-h[r-1][0];e<u;++e){for(n=0,o=(t[e][r][1]-t[e][r-1][1])/(2*s);n<e;++n)o+=(t[n][r][1]-t[n][r-1][1])/s;i+=o*t[e][r][1]}p[r]=l-=a?i/a*s:0,l<c&&(c=l)}for(r=0;r<f;++r)p[r]-=c;return p},expand:function(t){var e,r,n,a=t.length,i=t[0].length,o=1/a,s=[];for(r=0;r<i;++r){for(e=0,n=0;e<a;e++)n+=t[e][r][1];if(n)for(e=0;e<a;e++)t[e][r][1]/=n;else for(e=0;e<a;e++)t[e][r][1]=o}for(r=0;r<i;++r)s[r]=0;return s},zero:Vi});function ji(e){return t.range(e.length)}function Vi(t){for(var e=-1,r=t[0].length,n=[];++e<r;)n[e]=0;return n}function Ui(t){for(var e,r=1,n=0,a=t[0][1],i=t.length;r<i;++r)(e=t[r][1])>a&&(n=r,a=e);return n}function qi(t){return t.reduce(Hi,0)}function Hi(t,e){return t+e[1]}function Gi(t,e){return Yi(t,Math.ceil(Math.log(e.length)/Math.LN2+1))}function Yi(t,e){for(var r=-1,n=+t[0],a=(t[1]-n)/e,i=[];++r<=e;)i[r]=a*r+n;return i}function Wi(e){return[t.min(e),t.max(e)]}function Xi(t,e){return t.value-e.value}function Zi(t,e){var r=t._pack_next;t._pack_next=e,e._pack_prev=t,e._pack_next=r,r._pack_prev=e}function Ji(t,e){t._pack_next=e,e._pack_prev=t}function Ki(t,e){var r=e.x-t.x,n=e.y-t.y,a=t.r+e.r;return.999*a*a>r*r+n*n}function Qi(t){if((e=t.children)&&(l=e.length)){var e,r,n,a,i,o,s,l,c=1/0,u=-1/0,h=1/0,f=-1/0;if(e.forEach($i),(r=e[0]).x=-r.r,r.y=0,x(r),l>1&&((n=e[1]).x=n.r,n.y=0,x(n),l>2))for(eo(r,n,a=e[2]),x(a),Zi(r,a),r._pack_prev=a,Zi(a,n),n=r._pack_next,i=3;i<l;i++){eo(r,n,a=e[i]);var p=0,d=1,g=1;for(o=n._pack_next;o!==n;o=o._pack_next,d++)if(Ki(o,a)){p=1;break}if(1==p)for(s=r._pack_prev;s!==o._pack_prev&&!Ki(s,a);s=s._pack_prev,g++);p?(d<g||d==g&&n.r<r.r?Ji(r,n=o):Ji(r=s,n),i--):(Zi(r,a),n=a,x(a))}var v=(c+u)/2,m=(h+f)/2,y=0;for(i=0;i<l;i++)(a=e[i]).x-=v,a.y-=m,y=Math.max(y,a.r+Math.sqrt(a.x*a.x+a.y*a.y));t.r=y,e.forEach(to)}function x(t){c=Math.min(t.x-t.r,c),u=Math.max(t.x+t.r,u),h=Math.min(t.y-t.r,h),f=Math.max(t.y+t.r,f)}}function $i(t){t._pack_next=t._pack_prev=t}function to(t){delete t._pack_next,delete t._pack_prev}function eo(t,e,r){var n=t.r+r.r,a=e.x-t.x,i=e.y-t.y;if(n&&(a||i)){var o=e.r+r.r,s=a*a+i*i,l=.5+((n*=n)-(o*=o))/(2*s),c=Math.sqrt(Math.max(0,2*o*(n+s)-(n-=s)*n-o*o))/(2*s);r.x=t.x+l*a+c*i,r.y=t.y+l*i-c*a}else r.x=t.x+n,r.y=t.y}function ro(t,e){return t.parent==e.parent?1:2}function no(t){var e=t.children;return e.length?e[0]:t.t}function ao(t){var e,r=t.children;return(e=r.length)?r[e-1]:t.t}function io(t,e,r){var n=r/(e.i-t.i);e.c-=n,e.s+=r,t.c+=n,e.z+=r,e.m+=r}function oo(t,e,r){return t.a.parent===e.parent?t.a:r}function so(t){return{x:t.x,y:t.y,dx:t.dx,dy:t.dy}}function lo(t,e){var r=t.x+e[3],n=t.y+e[0],a=t.dx-e[1]-e[3],i=t.dy-e[0]-e[2];return a<0&&(r+=a/2,a=0),i<0&&(n+=i/2,i=0),{x:r,y:n,dx:a,dy:i}}function co(t){var e=t[0],r=t[t.length-1];return e<r?[e,r]:[r,e]}function uo(t){return t.rangeExtent?t.rangeExtent():co(t.range())}function ho(t,e,r,n){var a=r(t[0],t[1]),i=n(e[0],e[1]);return function(t){return i(a(t))}}function fo(t,e){var r,n=0,a=t.length-1,i=t[n],o=t[a];return o<i&&(r=n,n=a,a=r,r=i,i=o,o=r),t[n]=e.floor(i),t[a]=e.ceil(o),t}function po(t){return t?{floor:function(e){return Math.floor(e/t)*t},ceil:function(e){return Math.ceil(e/t)*t}}:go}t.layout.histogram=function(){var e=!0,r=Number,n=Wi,a=Gi;function i(i,o){for(var s,l,c=[],u=i.map(r,this),h=n.call(this,u,o),f=a.call(this,h,u,o),p=(o=-1,u.length),d=f.length-1,g=e?1:1/p;++o<d;)(s=c[o]=[]).dx=f[o+1]-(s.x=f[o]),s.y=0;if(d>0)for(o=-1;++o<p;)(l=u[o])>=h[0]&&l<=h[1]&&((s=c[t.bisect(f,l,1,d)-1]).y+=g,s.push(i[o]));return c}return i.value=function(t){return arguments.length?(r=t,i):r},i.range=function(t){return arguments.length?(n=ve(t),i):n},i.bins=function(t){return arguments.length?(a=\"number\"==typeof t?function(e){return Yi(e,t)}:ve(t),i):a},i.frequency=function(t){return arguments.length?(e=!!t,i):e},i},t.layout.pack=function(){var e,r=t.layout.hierarchy().sort(Xi),n=0,a=[1,1];function i(t,i){var o=r.call(this,t,i),s=o[0],l=a[0],c=a[1],u=null==e?Math.sqrt:\"function\"==typeof e?e:function(){return e};if(s.x=s.y=0,Ci(s,function(t){t.r=+u(t.value)}),Ci(s,Qi),n){var h=n*(e?1:Math.max(2*s.r/l,2*s.r/c))/2;Ci(s,function(t){t.r+=h}),Ci(s,Qi),Ci(s,function(t){t.r-=h})}return function t(e,r,n,a){var i=e.children;e.x=r+=a*e.x;e.y=n+=a*e.y;e.r*=a;if(i)for(var o=-1,s=i.length;++o<s;)t(i[o],r,n,a)}(s,l/2,c/2,e?1:1/Math.max(2*s.r/l,2*s.r/c)),o}return i.size=function(t){return arguments.length?(a=t,i):a},i.radius=function(t){return arguments.length?(e=null==t||\"function\"==typeof t?t:+t,i):e},i.padding=function(t){return arguments.length?(n=+t,i):n},Si(i,r)},t.layout.tree=function(){var e=t.layout.hierarchy().sort(null).value(null),r=ro,n=[1,1],a=null;function i(t,i){var c=e.call(this,t,i),u=c[0],h=function(t){var e,r={A:null,children:[t]},n=[r];for(;null!=(e=n.pop());)for(var a,i=e.children,o=0,s=i.length;o<s;++o)n.push((i[o]=a={_:i[o],parent:e,children:(a=i[o].children)&&a.slice()||[],A:null,a:null,z:0,m:0,c:0,s:0,t:null,i:o}).a=a);return r.children[0]}(u);if(Ci(h,o),h.parent.m=-h.z,Ei(h,s),a)Ei(u,l);else{var f=u,p=u,d=u;Ei(u,function(t){t.x<f.x&&(f=t),t.x>p.x&&(p=t),t.depth>d.depth&&(d=t)});var g=r(f,p)/2-f.x,v=n[0]/(p.x+r(p,f)/2+g),m=n[1]/(d.depth||1);Ei(u,function(t){t.x=(t.x+g)*v,t.y=t.depth*m})}return c}function o(t){var e=t.children,n=t.parent.children,a=t.i?n[t.i-1]:null;if(e.length){!function(t){var e,r=0,n=0,a=t.children,i=a.length;for(;--i>=0;)(e=a[i]).z+=r,e.m+=r,r+=e.s+(n+=e.c)}(t);var i=(e[0].z+e[e.length-1].z)/2;a?(t.z=a.z+r(t._,a._),t.m=t.z-i):t.z=i}else a&&(t.z=a.z+r(t._,a._));t.parent.A=function(t,e,n){if(e){for(var a,i=t,o=t,s=e,l=i.parent.children[0],c=i.m,u=o.m,h=s.m,f=l.m;s=ao(s),i=no(i),s&&i;)l=no(l),(o=ao(o)).a=t,(a=s.z+h-i.z-c+r(s._,i._))>0&&(io(oo(s,t,n),t,a),c+=a,u+=a),h+=s.m,c+=i.m,f+=l.m,u+=o.m;s&&!ao(o)&&(o.t=s,o.m+=h-u),i&&!no(l)&&(l.t=i,l.m+=c-f,n=t)}return n}(t,a,t.parent.A||n[0])}function s(t){t._.x=t.z+t.parent.m,t.m+=t.parent.m}function l(t){t.x*=n[0],t.y=t.depth*n[1]}return i.separation=function(t){return arguments.length?(r=t,i):r},i.size=function(t){return arguments.length?(a=null==(n=t)?l:null,i):a?null:n},i.nodeSize=function(t){return arguments.length?(a=null==(n=t)?null:l,i):a?n:null},Si(i,e)},t.layout.cluster=function(){var e=t.layout.hierarchy().sort(null).value(null),r=ro,n=[1,1],a=!1;function i(i,o){var s,l=e.call(this,i,o),c=l[0],u=0;Ci(c,function(e){var n=e.children;n&&n.length?(e.x=function(t){return t.reduce(function(t,e){return t+e.x},0)/t.length}(n),e.y=function(e){return 1+t.max(e,function(t){return t.y})}(n)):(e.x=s?u+=r(e,s):0,e.y=0,s=e)});var h=function t(e){var r=e.children;return r&&r.length?t(r[0]):e}(c),f=function t(e){var r,n=e.children;return n&&(r=n.length)?t(n[r-1]):e}(c),p=h.x-r(h,f)/2,d=f.x+r(f,h)/2;return Ci(c,a?function(t){t.x=(t.x-c.x)*n[0],t.y=(c.y-t.y)*n[1]}:function(t){t.x=(t.x-p)/(d-p)*n[0],t.y=(1-(c.y?t.y/c.y:1))*n[1]}),l}return i.separation=function(t){return arguments.length?(r=t,i):r},i.size=function(t){return arguments.length?(a=null==(n=t),i):a?null:n},i.nodeSize=function(t){return arguments.length?(a=null!=(n=t),i):a?n:null},Si(i,e)},t.layout.treemap=function(){var e,r=t.layout.hierarchy(),n=Math.round,a=[1,1],i=null,o=so,s=!1,l=\"squarify\",c=.5*(1+Math.sqrt(5));function u(t,e){for(var r,n,a=-1,i=t.length;++a<i;)n=(r=t[a]).value*(e<0?0:e),r.area=isNaN(n)||n<=0?0:n}function h(t){var e=t.children;if(e&&e.length){var r,n,a,i=o(t),s=[],c=e.slice(),f=1/0,g=\"slice\"===l?i.dx:\"dice\"===l?i.dy:\"slice-dice\"===l?1&t.depth?i.dy:i.dx:Math.min(i.dx,i.dy);for(u(c,i.dx*i.dy/t.value),s.area=0;(a=c.length)>0;)s.push(r=c[a-1]),s.area+=r.area,\"squarify\"!==l||(n=p(s,g))<=f?(c.pop(),f=n):(s.area-=s.pop().area,d(s,g,i,!1),g=Math.min(i.dx,i.dy),s.length=s.area=0,f=1/0);s.length&&(d(s,g,i,!0),s.length=s.area=0),e.forEach(h)}}function f(t){var e=t.children;if(e&&e.length){var r,n=o(t),a=e.slice(),i=[];for(u(a,n.dx*n.dy/t.value),i.area=0;r=a.pop();)i.push(r),i.area+=r.area,null!=r.z&&(d(i,r.z?n.dx:n.dy,n,!a.length),i.length=i.area=0);e.forEach(f)}}function p(t,e){for(var r,n=t.area,a=0,i=1/0,o=-1,s=t.length;++o<s;)(r=t[o].area)&&(r<i&&(i=r),r>a&&(a=r));return e*=e,(n*=n)?Math.max(e*a*c/n,n/(e*i*c)):1/0}function d(t,e,r,a){var i,o=-1,s=t.length,l=r.x,c=r.y,u=e?n(t.area/e):0;if(e==r.dx){for((a||u>r.dy)&&(u=r.dy);++o<s;)(i=t[o]).x=l,i.y=c,i.dy=u,l+=i.dx=Math.min(r.x+r.dx-l,u?n(i.area/u):0);i.z=!0,i.dx+=r.x+r.dx-l,r.y+=u,r.dy-=u}else{for((a||u>r.dx)&&(u=r.dx);++o<s;)(i=t[o]).x=l,i.y=c,i.dx=u,c+=i.dy=Math.min(r.y+r.dy-c,u?n(i.area/u):0);i.z=!1,i.dy+=r.y+r.dy-c,r.x+=u,r.dx-=u}}function g(t){var n=e||r(t),i=n[0];return i.x=i.y=0,i.value?(i.dx=a[0],i.dy=a[1]):i.dx=i.dy=0,e&&r.revalue(i),u([i],i.dx*i.dy/i.value),(e?f:h)(i),s&&(e=n),n}return g.size=function(t){return arguments.length?(a=t,g):a},g.padding=function(t){if(!arguments.length)return i;function e(e){return lo(e,t)}var r;return o=null==(i=t)?so:\"function\"==(r=typeof t)?function(e){var r=t.call(g,e,e.depth);return null==r?so(e):lo(e,\"number\"==typeof r?[r,r,r,r]:r)}:\"number\"===r?(t=[t,t,t,t],e):e,g},g.round=function(t){return arguments.length?(n=t?Math.round:Number,g):n!=Number},g.sticky=function(t){return arguments.length?(s=t,e=null,g):s},g.ratio=function(t){return arguments.length?(c=t,g):c},g.mode=function(t){return arguments.length?(l=t+\"\",g):l},Si(g,r)},t.random={normal:function(t,e){var r=arguments.length;return r<2&&(e=1),r<1&&(t=0),function(){var r,n,a;do{a=(r=2*Math.random()-1)*r+(n=2*Math.random()-1)*n}while(!a||a>1);return t+e*r*Math.sqrt(-2*Math.log(a)/a)}},logNormal:function(){var e=t.random.normal.apply(t,arguments);return function(){return Math.exp(e())}},bates:function(e){var r=t.random.irwinHall(e);return function(){return r()/e}},irwinHall:function(t){return function(){for(var e=0,r=0;r<t;r++)e+=Math.random();return e}}},t.scale={};var go={floor:P,ceil:P};function vo(e,r,n,a){var i=[],o=[],s=0,l=Math.min(e.length,r.length)-1;for(e[l]<e[0]&&(e=e.slice().reverse(),r=r.slice().reverse());++s<=l;)i.push(n(e[s-1],e[s])),o.push(a(r[s-1],r[s]));return function(r){var n=t.bisect(e,r,1,l)-1;return o[n](i[n](r))}}function mo(e,r){return t.rebind(e,r,\"range\",\"rangeRound\",\"interpolate\",\"clamp\")}function yo(t,e){return fo(t,po(xo(t,e)[2])),fo(t,po(xo(t,e)[2])),t}function xo(t,e){null==e&&(e=10);var r=co(t),n=r[1]-r[0],a=Math.pow(10,Math.floor(Math.log(n/e)/Math.LN10)),i=e/n*a;return i<=.15?a*=10:i<=.35?a*=5:i<=.75&&(a*=2),r[0]=Math.ceil(r[0]/a)*a,r[1]=Math.floor(r[1]/a)*a+.5*a,r[2]=a,r}function bo(e,r){return t.range.apply(t,xo(e,r))}function _o(e,r,n){var a=xo(e,r);if(n){var i=Le.exec(n);if(i.shift(),\"s\"===i[8]){var o=t.formatPrefix(Math.max(y(a[0]),y(a[1])));return i[7]||(i[7]=\".\"+ko(o.scale(a[2]))),i[8]=\"f\",n=t.format(i.join(\"\")),function(t){return n(o.scale(t))+o.symbol}}i[7]||(i[7]=\".\"+function(t,e){var r=ko(e[2]);return t in wo?Math.abs(r-ko(Math.max(y(e[0]),y(e[1]))))+ +(\"e\"!==t):r-2*(\"%\"===t)}(i[8],a)),n=i.join(\"\")}else n=\",.\"+ko(a[2])+\"f\";return t.format(n)}t.scale.linear=function(){return function t(e,r,n,a){var i,o;function s(){var t=Math.min(e.length,r.length)>2?vo:ho,s=a?mi:vi;return i=t(e,r,s,n),o=t(r,e,s,Za),l}function l(t){return i(t)}l.invert=function(t){return o(t)};l.domain=function(t){return arguments.length?(e=t.map(Number),s()):e};l.range=function(t){return arguments.length?(r=t,s()):r};l.rangeRound=function(t){return l.range(t).interpolate(ci)};l.clamp=function(t){return arguments.length?(a=t,s()):a};l.interpolate=function(t){return arguments.length?(n=t,s()):n};l.ticks=function(t){return bo(e,t)};l.tickFormat=function(t,r){return _o(e,t,r)};l.nice=function(t){return yo(e,t),s()};l.copy=function(){return t(e,r,n,a)};return s()}([0,1],[0,1],Za,!1)};var wo={s:1,g:1,p:1,r:1,e:1};function ko(t){return-Math.floor(Math.log(t)/Math.LN10+.01)}t.scale.log=function(){return function e(r,n,a,i){function o(t){return(a?Math.log(t<0?0:t):-Math.log(t>0?0:-t))/Math.log(n)}function s(t){return a?Math.pow(n,t):-Math.pow(n,-t)}function l(t){return r(o(t))}l.invert=function(t){return s(r.invert(t))};l.domain=function(t){return arguments.length?(a=t[0]>=0,r.domain((i=t.map(Number)).map(o)),l):i};l.base=function(t){return arguments.length?(n=+t,r.domain(i.map(o)),l):n};l.nice=function(){var t=fo(i.map(o),a?Math:Ao);return r.domain(t),i=t.map(s),l};l.ticks=function(){var t=co(i),e=[],r=t[0],l=t[1],c=Math.floor(o(r)),u=Math.ceil(o(l)),h=n%1?2:n;if(isFinite(u-c)){if(a){for(;c<u;c++)for(var f=1;f<h;f++)e.push(s(c)*f);e.push(s(c))}else for(e.push(s(c));c++<u;)for(var f=h-1;f>0;f--)e.push(s(c)*f);for(c=0;e[c]<r;c++);for(u=e.length;e[u-1]>l;u--);e=e.slice(c,u)}return e};l.tickFormat=function(e,r){if(!arguments.length)return To;arguments.length<2?r=To:\"function\"!=typeof r&&(r=t.format(r));var a=Math.max(1,n*e/l.ticks().length);return function(t){var e=t/s(Math.round(o(t)));return e*n<n-.5&&(e*=n),e<=a?r(t):\"\"}};l.copy=function(){return e(r.copy(),n,a,i)};return mo(l,r)}(t.scale.linear().domain([0,1]),10,!0,[1,10])};var To=t.format(\".0e\"),Ao={floor:function(t){return-Math.ceil(-t)},ceil:function(t){return-Math.floor(-t)}};function Mo(t){return function(e){return e<0?-Math.pow(-e,t):Math.pow(e,t)}}t.scale.pow=function(){return function t(e,r,n){var a=Mo(r),i=Mo(1/r);function o(t){return e(a(t))}o.invert=function(t){return i(e.invert(t))};o.domain=function(t){return arguments.length?(e.domain((n=t.map(Number)).map(a)),o):n};o.ticks=function(t){return bo(n,t)};o.tickFormat=function(t,e){return _o(n,t,e)};o.nice=function(t){return o.domain(yo(n,t))};o.exponent=function(t){return arguments.length?(a=Mo(r=t),i=Mo(1/r),e.domain(n.map(a)),o):r};o.copy=function(){return t(e.copy(),r,n)};return mo(o,e)}(t.scale.linear(),1,[0,1])},t.scale.sqrt=function(){return t.scale.pow().exponent(.5)},t.scale.ordinal=function(){return function e(r,n){var a,i,o;function s(t){return i[((a.get(t)||(\"range\"===n.t?a.set(t,r.push(t)):NaN))-1)%i.length]}function l(e,n){return t.range(r.length).map(function(t){return e+n*t})}s.domain=function(t){if(!arguments.length)return r;r=[],a=new b;for(var e,i=-1,o=t.length;++i<o;)a.has(e=t[i])||a.set(e,r.push(e));return s[n.t].apply(s,n.a)};s.range=function(t){return arguments.length?(i=t,o=0,n={t:\"range\",a:arguments},s):i};s.rangePoints=function(t,e){arguments.length<2&&(e=0);var a=t[0],c=t[1],u=r.length<2?(a=(a+c)/2,0):(c-a)/(r.length-1+e);return i=l(a+u*e/2,u),o=0,n={t:\"rangePoints\",a:arguments},s};s.rangeRoundPoints=function(t,e){arguments.length<2&&(e=0);var a=t[0],c=t[1],u=r.length<2?(a=c=Math.round((a+c)/2),0):(c-a)/(r.length-1+e)|0;return i=l(a+Math.round(u*e/2+(c-a-(r.length-1+e)*u)/2),u),o=0,n={t:\"rangeRoundPoints\",a:arguments},s};s.rangeBands=function(t,e,a){arguments.length<2&&(e=0),arguments.length<3&&(a=e);var c=t[1]<t[0],u=t[c-0],h=t[1-c],f=(h-u)/(r.length-e+2*a);return i=l(u+f*a,f),c&&i.reverse(),o=f*(1-e),n={t:\"rangeBands\",a:arguments},s};s.rangeRoundBands=function(t,e,a){arguments.length<2&&(e=0),arguments.length<3&&(a=e);var c=t[1]<t[0],u=t[c-0],h=t[1-c],f=Math.floor((h-u)/(r.length-e+2*a));return i=l(u+Math.round((h-u-(r.length-e)*f)/2),f),c&&i.reverse(),o=Math.round(f*(1-e)),n={t:\"rangeRoundBands\",a:arguments},s};s.rangeBand=function(){return o};s.rangeExtent=function(){return co(n.a[0])};s.copy=function(){return e(r,n)};return s.domain(r)}([],{t:\"range\",a:[[]]})},t.scale.category10=function(){return t.scale.ordinal().range(So)},t.scale.category20=function(){return t.scale.ordinal().range(Eo)},t.scale.category20b=function(){return t.scale.ordinal().range(Co)},t.scale.category20c=function(){return t.scale.ordinal().range(Lo)};var So=[2062260,16744206,2924588,14034728,9725885,9197131,14907330,8355711,12369186,1556175].map(se),Eo=[2062260,11454440,16744206,16759672,2924588,10018698,14034728,16750742,9725885,12955861,9197131,12885140,14907330,16234194,8355711,13092807,12369186,14408589,1556175,10410725].map(se),Co=[3750777,5395619,7040719,10264286,6519097,9216594,11915115,13556636,9202993,12426809,15186514,15190932,8666169,11356490,14049643,15177372,8077683,10834324,13528509,14589654].map(se),Lo=[3244733,7057110,10406625,13032431,15095053,16616764,16625259,16634018,3253076,7652470,10607003,13101504,7695281,10394312,12369372,14342891,6513507,9868950,12434877,14277081].map(se);function Po(){return 0}t.scale.quantile=function(){return function e(r,n){var a;function i(){var e=0,i=n.length;for(a=[];++e<i;)a[e-1]=t.quantile(r,e/i);return o}function o(e){if(!isNaN(e=+e))return n[t.bisect(a,e)]}o.domain=function(t){return arguments.length?(r=t.map(p).filter(d).sort(f),i()):r};o.range=function(t){return arguments.length?(n=t,i()):n};o.quantiles=function(){return a};o.invertExtent=function(t){return(t=n.indexOf(t))<0?[NaN,NaN]:[t>0?a[t-1]:r[0],t<a.length?a[t]:r[r.length-1]]};o.copy=function(){return e(r,n)};return i()}([],[])},t.scale.quantize=function(){return function t(e,r,n){var a,i;function o(t){return n[Math.max(0,Math.min(i,Math.floor(a*(t-e))))]}function s(){return a=n.length/(r-e),i=n.length-1,o}o.domain=function(t){return arguments.length?(e=+t[0],r=+t[t.length-1],s()):[e,r]};o.range=function(t){return arguments.length?(n=t,s()):n};o.invertExtent=function(t){return[t=(t=n.indexOf(t))<0?NaN:t/a+e,t+1/a]};o.copy=function(){return t(e,r,n)};return s()}(0,1,[0,1])},t.scale.threshold=function(){return function e(r,n){function a(e){if(e<=e)return n[t.bisect(r,e)]}a.domain=function(t){return arguments.length?(r=t,a):r};a.range=function(t){return arguments.length?(n=t,a):n};a.invertExtent=function(t){return t=n.indexOf(t),[r[t-1],r[t]]};a.copy=function(){return e(r,n)};return a}([.5],[0,1])},t.scale.identity=function(){return function t(e){function r(t){return+t}r.invert=r;r.domain=r.range=function(t){return arguments.length?(e=t.map(r),r):e};r.ticks=function(t){return bo(e,t)};r.tickFormat=function(t,r){return _o(e,t,r)};r.copy=function(){return t(e)};return r}([0,1])},t.svg={},t.svg.arc=function(){var t=Io,e=zo,r=Po,n=Oo,a=Do,i=Ro,o=Fo;function s(){var s=Math.max(0,+t.apply(this,arguments)),c=Math.max(0,+e.apply(this,arguments)),u=a.apply(this,arguments)-Et,h=i.apply(this,arguments)-Et,f=Math.abs(h-u),p=u>h?0:1;if(c<s&&(d=c,c=s,s=d),f>=St)return l(c,p)+(s?l(s,1-p):\"\")+\"Z\";var d,g,v,m,y,x,b,_,w,k,T,A,M=0,S=0,E=[];if((m=(+o.apply(this,arguments)||0)/2)&&(v=n===Oo?Math.sqrt(s*s+c*c):+n.apply(this,arguments),p||(S*=-1),c&&(S=zt(v/c*Math.sin(m))),s&&(M=zt(v/s*Math.sin(m)))),c){y=c*Math.cos(u+S),x=c*Math.sin(u+S),b=c*Math.cos(h-S),_=c*Math.sin(h-S);var C=Math.abs(h-u-2*S)<=At?0:1;if(S&&Bo(y,x,b,_)===p^C){var L=(u+h)/2;y=c*Math.cos(L),x=c*Math.sin(L),b=_=null}}else y=x=0;if(s){w=s*Math.cos(h-M),k=s*Math.sin(h-M),T=s*Math.cos(u+M),A=s*Math.sin(u+M);var P=Math.abs(u-h+2*M)<=At?0:1;if(M&&Bo(w,k,T,A)===1-p^P){var O=(u+h)/2;w=s*Math.cos(O),k=s*Math.sin(O),T=A=null}}else w=k=0;if(f>kt&&(d=Math.min(Math.abs(c-s)/2,+r.apply(this,arguments)))>.001){g=s<c^p?0:1;var I=d,z=d;if(f<At){var D=null==T?[w,k]:null==b?[y,x]:sa([y,x],[T,A],[b,_],[w,k]),R=y-D[0],F=x-D[1],B=b-D[0],N=_-D[1],j=1/Math.sin(Math.acos((R*B+F*N)/(Math.sqrt(R*R+F*F)*Math.sqrt(B*B+N*N)))/2),V=Math.sqrt(D[0]*D[0]+D[1]*D[1]);z=Math.min(d,(s-V)/(j-1)),I=Math.min(d,(c-V)/(j+1))}if(null!=b){var U=No(null==T?[w,k]:[T,A],[y,x],c,I,p),q=No([b,_],[w,k],c,I,p);d===I?E.push(\"M\",U[0],\"A\",I,\",\",I,\" 0 0,\",g,\" \",U[1],\"A\",c,\",\",c,\" 0 \",1-p^Bo(U[1][0],U[1][1],q[1][0],q[1][1]),\",\",p,\" \",q[1],\"A\",I,\",\",I,\" 0 0,\",g,\" \",q[0]):E.push(\"M\",U[0],\"A\",I,\",\",I,\" 0 1,\",g,\" \",q[0])}else E.push(\"M\",y,\",\",x);if(null!=T){var H=No([y,x],[T,A],s,-z,p),G=No([w,k],null==b?[y,x]:[b,_],s,-z,p);d===z?E.push(\"L\",G[0],\"A\",z,\",\",z,\" 0 0,\",g,\" \",G[1],\"A\",s,\",\",s,\" 0 \",p^Bo(G[1][0],G[1][1],H[1][0],H[1][1]),\",\",1-p,\" \",H[1],\"A\",z,\",\",z,\" 0 0,\",g,\" \",H[0]):E.push(\"L\",G[0],\"A\",z,\",\",z,\" 0 0,\",g,\" \",H[0])}else E.push(\"L\",w,\",\",k)}else E.push(\"M\",y,\",\",x),null!=b&&E.push(\"A\",c,\",\",c,\" 0 \",C,\",\",p,\" \",b,\",\",_),E.push(\"L\",w,\",\",k),null!=T&&E.push(\"A\",s,\",\",s,\" 0 \",P,\",\",1-p,\" \",T,\",\",A);return E.push(\"Z\"),E.join(\"\")}function l(t,e){return\"M0,\"+t+\"A\"+t+\",\"+t+\" 0 1,\"+e+\" 0,\"+-t+\"A\"+t+\",\"+t+\" 0 1,\"+e+\" 0,\"+t}return s.innerRadius=function(e){return arguments.length?(t=ve(e),s):t},s.outerRadius=function(t){return arguments.length?(e=ve(t),s):e},s.cornerRadius=function(t){return arguments.length?(r=ve(t),s):r},s.padRadius=function(t){return arguments.length?(n=t==Oo?Oo:ve(t),s):n},s.startAngle=function(t){return arguments.length?(a=ve(t),s):a},s.endAngle=function(t){return arguments.length?(i=ve(t),s):i},s.padAngle=function(t){return arguments.length?(o=ve(t),s):o},s.centroid=function(){var r=(+t.apply(this,arguments)+ +e.apply(this,arguments))/2,n=(+a.apply(this,arguments)+ +i.apply(this,arguments))/2-Et;return[Math.cos(n)*r,Math.sin(n)*r]},s};var Oo=\"auto\";function Io(t){return t.innerRadius}function zo(t){return t.outerRadius}function Do(t){return t.startAngle}function Ro(t){return t.endAngle}function Fo(t){return t&&t.padAngle}function Bo(t,e,r,n){return(t-r)*e-(e-n)*t>0?0:1}function No(t,e,r,n,a){var i=t[0]-e[0],o=t[1]-e[1],s=(a?n:-n)/Math.sqrt(i*i+o*o),l=s*o,c=-s*i,u=t[0]+l,h=t[1]+c,f=e[0]+l,p=e[1]+c,d=(u+f)/2,g=(h+p)/2,v=f-u,m=p-h,y=v*v+m*m,x=r-n,b=u*p-f*h,_=(m<0?-1:1)*Math.sqrt(Math.max(0,x*x*y-b*b)),w=(b*m-v*_)/y,k=(-b*v-m*_)/y,T=(b*m+v*_)/y,A=(-b*v+m*_)/y,M=w-d,S=k-g,E=T-d,C=A-g;return M*M+S*S>E*E+C*C&&(w=T,k=A),[[w-l,k-c],[w*r/x,k*r/x]]}function jo(t){var e=ea,r=ra,n=Yr,a=Uo,i=a.key,o=.7;function s(i){var s,l=[],c=[],u=-1,h=i.length,f=ve(e),p=ve(r);function d(){l.push(\"M\",a(t(c),o))}for(;++u<h;)n.call(this,s=i[u],u)?c.push([+f.call(this,s,u),+p.call(this,s,u)]):c.length&&(d(),c=[]);return c.length&&d(),l.length?l.join(\"\"):null}return s.x=function(t){return arguments.length?(e=t,s):e},s.y=function(t){return arguments.length?(r=t,s):r},s.defined=function(t){return arguments.length?(n=t,s):n},s.interpolate=function(t){return arguments.length?(i=\"function\"==typeof t?a=t:(a=Vo.get(t)||Uo).key,s):i},s.tension=function(t){return arguments.length?(o=t,s):o},s}t.svg.line=function(){return jo(P)};var Vo=t.map({linear:Uo,\"linear-closed\":qo,step:function(t){var e=0,r=t.length,n=t[0],a=[n[0],\",\",n[1]];for(;++e<r;)a.push(\"H\",(n[0]+(n=t[e])[0])/2,\"V\",n[1]);r>1&&a.push(\"H\",n[0]);return a.join(\"\")},\"step-before\":Ho,\"step-after\":Go,basis:Xo,\"basis-open\":function(t){if(t.length<4)return Uo(t);var e,r=[],n=-1,a=t.length,i=[0],o=[0];for(;++n<3;)e=t[n],i.push(e[0]),o.push(e[1]);r.push(Zo(Qo,i)+\",\"+Zo(Qo,o)),--n;for(;++n<a;)e=t[n],i.shift(),i.push(e[0]),o.shift(),o.push(e[1]),$o(r,i,o);return r.join(\"\")},\"basis-closed\":function(t){var e,r,n=-1,a=t.length,i=a+4,o=[],s=[];for(;++n<4;)r=t[n%a],o.push(r[0]),s.push(r[1]);e=[Zo(Qo,o),\",\",Zo(Qo,s)],--n;for(;++n<i;)r=t[n%a],o.shift(),o.push(r[0]),s.shift(),s.push(r[1]),$o(e,o,s);return e.join(\"\")},bundle:function(t,e){var r=t.length-1;if(r)for(var n,a,i=t[0][0],o=t[0][1],s=t[r][0]-i,l=t[r][1]-o,c=-1;++c<=r;)n=t[c],a=c/r,n[0]=e*n[0]+(1-e)*(i+a*s),n[1]=e*n[1]+(1-e)*(o+a*l);return Xo(t)},cardinal:function(t,e){return t.length<3?Uo(t):t[0]+Yo(t,Wo(t,e))},\"cardinal-open\":function(t,e){return t.length<4?Uo(t):t[1]+Yo(t.slice(1,-1),Wo(t,e))},\"cardinal-closed\":function(t,e){return t.length<3?qo(t):t[0]+Yo((t.push(t[0]),t),Wo([t[t.length-2]].concat(t,[t[1]]),e))},monotone:function(t){return t.length<3?Uo(t):t[0]+Yo(t,function(t){var e,r,n,a,i=[],o=function(t){var e=0,r=t.length-1,n=[],a=t[0],i=t[1],o=n[0]=ts(a,i);for(;++e<r;)n[e]=(o+(o=ts(a=i,i=t[e+1])))/2;return n[e]=o,n}(t),s=-1,l=t.length-1;for(;++s<l;)e=ts(t[s],t[s+1]),y(e)<kt?o[s]=o[s+1]=0:(r=o[s]/e,n=o[s+1]/e,(a=r*r+n*n)>9&&(a=3*e/Math.sqrt(a),o[s]=a*r,o[s+1]=a*n));s=-1;for(;++s<=l;)a=(t[Math.min(l,s+1)][0]-t[Math.max(0,s-1)][0])/(6*(1+o[s]*o[s])),i.push([a||0,o[s]*a||0]);return i}(t))}});function Uo(t){return t.length>1?t.join(\"L\"):t+\"Z\"}function qo(t){return t.join(\"L\")+\"Z\"}function Ho(t){for(var e=0,r=t.length,n=t[0],a=[n[0],\",\",n[1]];++e<r;)a.push(\"V\",(n=t[e])[1],\"H\",n[0]);return a.join(\"\")}function Go(t){for(var e=0,r=t.length,n=t[0],a=[n[0],\",\",n[1]];++e<r;)a.push(\"H\",(n=t[e])[0],\"V\",n[1]);return a.join(\"\")}function Yo(t,e){if(e.length<1||t.length!=e.length&&t.length!=e.length+2)return Uo(t);var r=t.length!=e.length,n=\"\",a=t[0],i=t[1],o=e[0],s=o,l=1;if(r&&(n+=\"Q\"+(i[0]-2*o[0]/3)+\",\"+(i[1]-2*o[1]/3)+\",\"+i[0]+\",\"+i[1],a=t[1],l=2),e.length>1){s=e[1],i=t[l],l++,n+=\"C\"+(a[0]+o[0])+\",\"+(a[1]+o[1])+\",\"+(i[0]-s[0])+\",\"+(i[1]-s[1])+\",\"+i[0]+\",\"+i[1];for(var c=2;c<e.length;c++,l++)i=t[l],s=e[c],n+=\"S\"+(i[0]-s[0])+\",\"+(i[1]-s[1])+\",\"+i[0]+\",\"+i[1]}if(r){var u=t[l];n+=\"Q\"+(i[0]+2*s[0]/3)+\",\"+(i[1]+2*s[1]/3)+\",\"+u[0]+\",\"+u[1]}return n}function Wo(t,e){for(var r,n=[],a=(1-e)/2,i=t[0],o=t[1],s=1,l=t.length;++s<l;)r=i,i=o,o=t[s],n.push([a*(o[0]-r[0]),a*(o[1]-r[1])]);return n}function Xo(t){if(t.length<3)return Uo(t);var e=1,r=t.length,n=t[0],a=n[0],i=n[1],o=[a,a,a,(n=t[1])[0]],s=[i,i,i,n[1]],l=[a,\",\",i,\"L\",Zo(Qo,o),\",\",Zo(Qo,s)];for(t.push(t[r-1]);++e<=r;)n=t[e],o.shift(),o.push(n[0]),s.shift(),s.push(n[1]),$o(l,o,s);return t.pop(),l.push(\"L\",n),l.join(\"\")}function Zo(t,e){return t[0]*e[0]+t[1]*e[1]+t[2]*e[2]+t[3]*e[3]}Vo.forEach(function(t,e){e.key=t,e.closed=/-closed$/.test(t)});var Jo=[0,2/3,1/3,0],Ko=[0,1/3,2/3,0],Qo=[0,1/6,2/3,1/6];function $o(t,e,r){t.push(\"C\",Zo(Jo,e),\",\",Zo(Jo,r),\",\",Zo(Ko,e),\",\",Zo(Ko,r),\",\",Zo(Qo,e),\",\",Zo(Qo,r))}function ts(t,e){return(e[1]-t[1])/(e[0]-t[0])}function es(t){for(var e,r,n,a=-1,i=t.length;++a<i;)r=(e=t[a])[0],n=e[1]-Et,e[0]=r*Math.cos(n),e[1]=r*Math.sin(n);return t}function rs(t){var e=ea,r=ea,n=0,a=ra,i=Yr,o=Uo,s=o.key,l=o,c=\"L\",u=.7;function h(s){var h,f,p,d=[],g=[],v=[],m=-1,y=s.length,x=ve(e),b=ve(n),_=e===r?function(){return f}:ve(r),w=n===a?function(){return p}:ve(a);function k(){d.push(\"M\",o(t(v),u),c,l(t(g.reverse()),u),\"Z\")}for(;++m<y;)i.call(this,h=s[m],m)?(g.push([f=+x.call(this,h,m),p=+b.call(this,h,m)]),v.push([+_.call(this,h,m),+w.call(this,h,m)])):g.length&&(k(),g=[],v=[]);return g.length&&k(),d.length?d.join(\"\"):null}return h.x=function(t){return arguments.length?(e=r=t,h):r},h.x0=function(t){return arguments.length?(e=t,h):e},h.x1=function(t){return arguments.length?(r=t,h):r},h.y=function(t){return arguments.length?(n=a=t,h):a},h.y0=function(t){return arguments.length?(n=t,h):n},h.y1=function(t){return arguments.length?(a=t,h):a},h.defined=function(t){return arguments.length?(i=t,h):i},h.interpolate=function(t){return arguments.length?(s=\"function\"==typeof t?o=t:(o=Vo.get(t)||Uo).key,l=o.reverse||o,c=o.closed?\"M\":\"L\",h):s},h.tension=function(t){return arguments.length?(u=t,h):u},h}function ns(t){return t.radius}function as(t){return[t.x,t.y]}function is(){return 64}function os(){return\"circle\"}function ss(t){var e=Math.sqrt(t/At);return\"M0,\"+e+\"A\"+e+\",\"+e+\" 0 1,1 0,\"+-e+\"A\"+e+\",\"+e+\" 0 1,1 0,\"+e+\"Z\"}t.svg.line.radial=function(){var t=jo(es);return t.radius=t.x,delete t.x,t.angle=t.y,delete t.y,t},Ho.reverse=Go,Go.reverse=Ho,t.svg.area=function(){return rs(P)},t.svg.area.radial=function(){var t=rs(es);return t.radius=t.x,delete t.x,t.innerRadius=t.x0,delete t.x0,t.outerRadius=t.x1,delete t.x1,t.angle=t.y,delete t.y,t.startAngle=t.y0,delete t.y0,t.endAngle=t.y1,delete t.y1,t},t.svg.chord=function(){var t=Vn,e=Un,r=ns,n=Do,a=Ro;function i(r,n){var a,i,c=o(this,t,r,n),u=o(this,e,r,n);return\"M\"+c.p0+s(c.r,c.p1,c.a1-c.a0)+(i=u,(a=c).a0==i.a0&&a.a1==i.a1?l(c.r,c.p1,c.r,c.p0):l(c.r,c.p1,u.r,u.p0)+s(u.r,u.p1,u.a1-u.a0)+l(u.r,u.p1,c.r,c.p0))+\"Z\"}function o(t,e,i,o){var s=e.call(t,i,o),l=r.call(t,s,o),c=n.call(t,s,o)-Et,u=a.call(t,s,o)-Et;return{r:l,a0:c,a1:u,p0:[l*Math.cos(c),l*Math.sin(c)],p1:[l*Math.cos(u),l*Math.sin(u)]}}function s(t,e,r){return\"A\"+t+\",\"+t+\" 0 \"+ +(r>At)+\",1 \"+e}function l(t,e,r,n){return\"Q 0,0 \"+n}return i.radius=function(t){return arguments.length?(r=ve(t),i):r},i.source=function(e){return arguments.length?(t=ve(e),i):t},i.target=function(t){return arguments.length?(e=ve(t),i):e},i.startAngle=function(t){return arguments.length?(n=ve(t),i):n},i.endAngle=function(t){return arguments.length?(a=ve(t),i):a},i},t.svg.diagonal=function(){var t=Vn,e=Un,r=as;function n(n,a){var i=t.call(this,n,a),o=e.call(this,n,a),s=(i.y+o.y)/2,l=[i,{x:i.x,y:s},{x:o.x,y:s},o];return\"M\"+(l=l.map(r))[0]+\"C\"+l[1]+\" \"+l[2]+\" \"+l[3]}return n.source=function(e){return arguments.length?(t=ve(e),n):t},n.target=function(t){return arguments.length?(e=ve(t),n):e},n.projection=function(t){return arguments.length?(r=t,n):r},n},t.svg.diagonal.radial=function(){var e=t.svg.diagonal(),r=as,n=e.projection;return e.projection=function(t){return arguments.length?n(function(t){return function(){var e=t.apply(this,arguments),r=e[0],n=e[1]-Et;return[r*Math.cos(n),r*Math.sin(n)]}}(r=t)):r},e},t.svg.symbol=function(){var t=os,e=is;function r(r,n){return(ls.get(t.call(this,r,n))||ss)(e.call(this,r,n))}return r.type=function(e){return arguments.length?(t=ve(e),r):t},r.size=function(t){return arguments.length?(e=ve(t),r):e},r};var ls=t.map({circle:ss,cross:function(t){var e=Math.sqrt(t/5)/2;return\"M\"+-3*e+\",\"+-e+\"H\"+-e+\"V\"+-3*e+\"H\"+e+\"V\"+-e+\"H\"+3*e+\"V\"+e+\"H\"+e+\"V\"+3*e+\"H\"+-e+\"V\"+e+\"H\"+-3*e+\"Z\"},diamond:function(t){var e=Math.sqrt(t/(2*us)),r=e*us;return\"M0,\"+-e+\"L\"+r+\",0 0,\"+e+\" \"+-r+\",0Z\"},square:function(t){var e=Math.sqrt(t)/2;return\"M\"+-e+\",\"+-e+\"L\"+e+\",\"+-e+\" \"+e+\",\"+e+\" \"+-e+\",\"+e+\"Z\"},\"triangle-down\":function(t){var e=Math.sqrt(t/cs),r=e*cs/2;return\"M0,\"+r+\"L\"+e+\",\"+-r+\" \"+-e+\",\"+-r+\"Z\"},\"triangle-up\":function(t){var e=Math.sqrt(t/cs),r=e*cs/2;return\"M0,\"+-r+\"L\"+e+\",\"+r+\" \"+-e+\",\"+r+\"Z\"}});t.svg.symbolTypes=ls.keys();var cs=Math.sqrt(3),us=Math.tan(30*Ct);W.transition=function(t){for(var e,r,n=ds||++ms,a=bs(t),i=[],o=gs||{time:Date.now(),ease:ai,delay:0,duration:250},s=-1,l=this.length;++s<l;){i.push(e=[]);for(var c=this[s],u=-1,h=c.length;++u<h;)(r=c[u])&&_s(r,u,a,n,o),e.push(r)}return ps(i,a,n)},W.interrupt=function(t){return this.each(null==t?hs:fs(bs(t)))};var hs=fs(bs());function fs(t){return function(){var e,r,n;(e=this[t])&&(n=e[r=e.active])&&(n.timer.c=null,n.timer.t=NaN,--e.count?delete e[r]:delete this[t],e.active+=.5,n.event&&n.event.interrupt.call(this,this.__data__,n.index))}}function ps(t,e,r){return U(t,vs),t.namespace=e,t.id=r,t}var ds,gs,vs=[],ms=0;function ys(t,e,r,n){var a=t.id,i=t.namespace;return ut(t,\"function\"==typeof r?function(t,o,s){t[i][a].tween.set(e,n(r.call(t,t.__data__,o,s)))}:(r=n(r),function(t){t[i][a].tween.set(e,r)}))}function xs(t){return null==t&&(t=\"\"),function(){this.textContent=t}}function bs(t){return null==t?\"__transition__\":\"__transition_\"+t+\"__\"}function _s(t,e,r,n,a){var i,o,s,l,c,u=t[r]||(t[r]={active:0,count:0}),h=u[n];function f(r){var a=u.active,f=u[a];for(var d in f&&(f.timer.c=null,f.timer.t=NaN,--u.count,delete u[a],f.event&&f.event.interrupt.call(t,t.__data__,f.index)),u)if(+d<n){var g=u[d];g.timer.c=null,g.timer.t=NaN,--u.count,delete u[d]}o.c=p,Te(function(){return o.c&&p(r||1)&&(o.c=null,o.t=NaN),1},0,i),u.active=n,h.event&&h.event.start.call(t,t.__data__,e),c=[],h.tween.forEach(function(r,n){(n=n.call(t,t.__data__,e))&&c.push(n)}),l=h.ease,s=h.duration}function p(a){for(var i=a/s,o=l(i),f=c.length;f>0;)c[--f].call(t,o);if(i>=1)return h.event&&h.event.end.call(t,t.__data__,e),--u.count?delete u[n]:delete t[r],1}h||(i=a.time,o=Te(function(t){var e=h.delay;if(o.t=e+i,e<=t)return f(t-e);o.c=f},0,i),h=u[n]={tween:new b,time:i,timer:o,delay:a.delay,duration:a.duration,ease:a.ease,index:e},a=null,++u.count)}vs.call=W.call,vs.empty=W.empty,vs.node=W.node,vs.size=W.size,t.transition=function(e,r){return e&&e.transition?ds?e.transition(r):e:t.selection().transition(e)},t.transition.prototype=vs,vs.select=function(t){var e,r,n,a=this.id,i=this.namespace,o=[];t=X(t);for(var s=-1,l=this.length;++s<l;){o.push(e=[]);for(var c=this[s],u=-1,h=c.length;++u<h;)(n=c[u])&&(r=t.call(n,n.__data__,u,s))?(\"__data__\"in n&&(r.__data__=n.__data__),_s(r,u,i,a,n[i][a]),e.push(r)):e.push(null)}return ps(o,i,a)},vs.selectAll=function(t){var e,r,n,a,i,o=this.id,s=this.namespace,l=[];t=Z(t);for(var c=-1,u=this.length;++c<u;)for(var h=this[c],f=-1,p=h.length;++f<p;)if(n=h[f]){i=n[s][o],r=t.call(n,n.__data__,f,c),l.push(e=[]);for(var d=-1,g=r.length;++d<g;)(a=r[d])&&_s(a,d,s,o,i),e.push(a)}return ps(l,s,o)},vs.filter=function(t){var e,r,n=[];\"function\"!=typeof t&&(t=ct(t));for(var a=0,i=this.length;a<i;a++){n.push(e=[]);for(var o,s=0,l=(o=this[a]).length;s<l;s++)(r=o[s])&&t.call(r,r.__data__,s,a)&&e.push(r)}return ps(n,this.namespace,this.id)},vs.tween=function(t,e){var r=this.id,n=this.namespace;return arguments.length<2?this.node()[n][r].tween.get(t):ut(this,null==e?function(e){e[n][r].tween.remove(t)}:function(a){a[n][r].tween.set(t,e)})},vs.attr=function(e,r){if(arguments.length<2){for(r in e)this.attr(r,e[r]);return this}var n=\"transform\"==e?gi:Za,a=t.ns.qualify(e);function i(){this.removeAttribute(a)}function o(){this.removeAttributeNS(a.space,a.local)}return ys(this,\"attr.\"+e,r,a.local?function(t){return null==t?o:(t+=\"\",function(){var e,r=this.getAttributeNS(a.space,a.local);return r!==t&&(e=n(r,t),function(t){this.setAttributeNS(a.space,a.local,e(t))})})}:function(t){return null==t?i:(t+=\"\",function(){var e,r=this.getAttribute(a);return r!==t&&(e=n(r,t),function(t){this.setAttribute(a,e(t))})})})},vs.attrTween=function(e,r){var n=t.ns.qualify(e);return this.tween(\"attr.\"+e,n.local?function(t,e){var a=r.call(this,t,e,this.getAttributeNS(n.space,n.local));return a&&function(t){this.setAttributeNS(n.space,n.local,a(t))}}:function(t,e){var a=r.call(this,t,e,this.getAttribute(n));return a&&function(t){this.setAttribute(n,a(t))}})},vs.style=function(t,e,r){var n=arguments.length;if(n<3){if(\"string\"!=typeof t){for(r in n<2&&(e=\"\"),t)this.style(r,t[r],e);return this}r=\"\"}function a(){this.style.removeProperty(t)}return ys(this,\"style.\"+t,e,function(e){return null==e?a:(e+=\"\",function(){var n,a=o(this).getComputedStyle(this,null).getPropertyValue(t);return a!==e&&(n=Za(a,e),function(e){this.style.setProperty(t,n(e),r)})})})},vs.styleTween=function(t,e,r){return arguments.length<3&&(r=\"\"),this.tween(\"style.\"+t,function(n,a){var i=e.call(this,n,a,o(this).getComputedStyle(this,null).getPropertyValue(t));return i&&function(e){this.style.setProperty(t,i(e),r)}})},vs.text=function(t){return ys(this,\"text\",t,xs)},vs.remove=function(){var t=this.namespace;return this.each(\"end.transition\",function(){var e;this[t].count<2&&(e=this.parentNode)&&e.removeChild(this)})},vs.ease=function(e){var r=this.id,n=this.namespace;return arguments.length<1?this.node()[n][r].ease:(\"function\"!=typeof e&&(e=t.ease.apply(t,arguments)),ut(this,function(t){t[n][r].ease=e}))},vs.delay=function(t){var e=this.id,r=this.namespace;return arguments.length<1?this.node()[r][e].delay:ut(this,\"function\"==typeof t?function(n,a,i){n[r][e].delay=+t.call(n,n.__data__,a,i)}:(t=+t,function(n){n[r][e].delay=t}))},vs.duration=function(t){var e=this.id,r=this.namespace;return arguments.length<1?this.node()[r][e].duration:ut(this,\"function\"==typeof t?function(n,a,i){n[r][e].duration=Math.max(1,t.call(n,n.__data__,a,i))}:(t=Math.max(1,t),function(n){n[r][e].duration=t}))},vs.each=function(e,r){var n=this.id,a=this.namespace;if(arguments.length<2){var i=gs,o=ds;try{ds=n,ut(this,function(t,r,i){gs=t[a][n],e.call(t,t.__data__,r,i)})}finally{gs=i,ds=o}}else ut(this,function(i){var o=i[a][n];(o.event||(o.event=t.dispatch(\"start\",\"end\",\"interrupt\"))).on(e,r)});return this},vs.transition=function(){for(var t,e,r,n=this.id,a=++ms,i=this.namespace,o=[],s=0,l=this.length;s<l;s++){o.push(t=[]);for(var c,u=0,h=(c=this[s]).length;u<h;u++)(e=c[u])&&_s(e,u,i,a,{time:(r=e[i][n]).time,ease:r.ease,delay:r.delay+r.duration,duration:r.duration}),t.push(e)}return ps(o,i,a)},t.svg.axis=function(){var e,r=t.scale.linear(),a=ws,i=6,o=6,s=3,l=[10],c=null;function u(n){n.each(function(){var n,u=t.select(this),h=this.__chart__||r,f=this.__chart__=r.copy(),p=null==c?f.ticks?f.ticks.apply(f,l):f.domain():c,d=null==e?f.tickFormat?f.tickFormat.apply(f,l):P:e,g=u.selectAll(\".tick\").data(p,f),v=g.enter().insert(\"g\",\".domain\").attr(\"class\",\"tick\").style(\"opacity\",kt),m=t.transition(g.exit()).style(\"opacity\",kt).remove(),y=t.transition(g.order()).style(\"opacity\",1),x=Math.max(i,0)+s,b=uo(f),_=u.selectAll(\".domain\").data([0]),w=(_.enter().append(\"path\").attr(\"class\",\"domain\"),t.transition(_));v.append(\"line\"),v.append(\"text\");var k,T,A,M,S=v.select(\"line\"),E=y.select(\"line\"),C=g.select(\"text\").text(d),L=v.select(\"text\"),O=y.select(\"text\"),I=\"top\"===a||\"left\"===a?-1:1;if(\"bottom\"===a||\"top\"===a?(n=Ts,k=\"x\",A=\"y\",T=\"x2\",M=\"y2\",C.attr(\"dy\",I<0?\"0em\":\".71em\").style(\"text-anchor\",\"middle\"),w.attr(\"d\",\"M\"+b[0]+\",\"+I*o+\"V0H\"+b[1]+\"V\"+I*o)):(n=As,k=\"y\",A=\"x\",T=\"y2\",M=\"x2\",C.attr(\"dy\",\".32em\").style(\"text-anchor\",I<0?\"end\":\"start\"),w.attr(\"d\",\"M\"+I*o+\",\"+b[0]+\"H0V\"+b[1]+\"H\"+I*o)),S.attr(M,I*i),L.attr(A,I*x),E.attr(T,0).attr(M,I*i),O.attr(k,0).attr(A,I*x),f.rangeBand){var z=f,D=z.rangeBand()/2;h=f=function(t){return z(t)+D}}else h.rangeBand?h=f:m.call(n,f,h);v.call(n,h,f),y.call(n,f,f)})}return u.scale=function(t){return arguments.length?(r=t,u):r},u.orient=function(t){return arguments.length?(a=t in ks?t+\"\":ws,u):a},u.ticks=function(){return arguments.length?(l=n(arguments),u):l},u.tickValues=function(t){return arguments.length?(c=t,u):c},u.tickFormat=function(t){return arguments.length?(e=t,u):e},u.tickSize=function(t){var e=arguments.length;return e?(i=+t,o=+arguments[e-1],u):i},u.innerTickSize=function(t){return arguments.length?(i=+t,u):i},u.outerTickSize=function(t){return arguments.length?(o=+t,u):o},u.tickPadding=function(t){return arguments.length?(s=+t,u):s},u.tickSubdivide=function(){return arguments.length&&u},u};var ws=\"bottom\",ks={top:1,right:1,bottom:1,left:1};function Ts(t,e,r){t.attr(\"transform\",function(t){var n=e(t);return\"translate(\"+(isFinite(n)?n:r(t))+\",0)\"})}function As(t,e,r){t.attr(\"transform\",function(t){var n=e(t);return\"translate(0,\"+(isFinite(n)?n:r(t))+\")\"})}t.svg.brush=function(){var e,r,n=j(f,\"brushstart\",\"brush\",\"brushend\"),a=null,i=null,s=[0,0],l=[0,0],c=!0,u=!0,h=Ss[0];function f(e){e.each(function(){var e=t.select(this).style(\"pointer-events\",\"all\").style(\"-webkit-tap-highlight-color\",\"rgba(0,0,0,0)\").on(\"mousedown.brush\",v).on(\"touchstart.brush\",v),r=e.selectAll(\".background\").data([0]);r.enter().append(\"rect\").attr(\"class\",\"background\").style(\"visibility\",\"hidden\").style(\"cursor\",\"crosshair\"),e.selectAll(\".extent\").data([0]).enter().append(\"rect\").attr(\"class\",\"extent\").style(\"cursor\",\"move\");var n=e.selectAll(\".resize\").data(h,P);n.exit().remove(),n.enter().append(\"g\").attr(\"class\",function(t){return\"resize \"+t}).style(\"cursor\",function(t){return Ms[t]}).append(\"rect\").attr(\"x\",function(t){return/[ew]$/.test(t)?-3:null}).attr(\"y\",function(t){return/^[ns]/.test(t)?-3:null}).attr(\"width\",6).attr(\"height\",6).style(\"visibility\",\"hidden\"),n.style(\"display\",f.empty()?\"none\":null);var o,s=t.transition(e),l=t.transition(r);a&&(o=uo(a),l.attr(\"x\",o[0]).attr(\"width\",o[1]-o[0]),d(s)),i&&(o=uo(i),l.attr(\"y\",o[0]).attr(\"height\",o[1]-o[0]),g(s)),p(s)})}function p(t){t.selectAll(\".resize\").attr(\"transform\",function(t){return\"translate(\"+s[+/e$/.test(t)]+\",\"+l[+/^s/.test(t)]+\")\"})}function d(t){t.select(\".extent\").attr(\"x\",s[0]),t.selectAll(\".extent,.n>rect,.s>rect\").attr(\"width\",s[1]-s[0])}function g(t){t.select(\".extent\").attr(\"y\",l[0]),t.selectAll(\".extent,.e>rect,.w>rect\").attr(\"height\",l[1]-l[0])}function v(){var h,v,m=this,y=t.select(t.event.target),x=n.of(m,arguments),b=t.select(m),_=y.datum(),w=!/^(n|s)$/.test(_)&&a,k=!/^(e|w)$/.test(_)&&i,T=y.classed(\"extent\"),A=xt(m),M=t.mouse(m),S=t.select(o(m)).on(\"keydown.brush\",function(){32==t.event.keyCode&&(T||(h=null,M[0]-=s[1],M[1]-=l[1],T=2),B())}).on(\"keyup.brush\",function(){32==t.event.keyCode&&2==T&&(M[0]+=s[1],M[1]+=l[1],T=0,B())});if(t.event.changedTouches?S.on(\"touchmove.brush\",L).on(\"touchend.brush\",O):S.on(\"mousemove.brush\",L).on(\"mouseup.brush\",O),b.interrupt().selectAll(\"*\").interrupt(),T)M[0]=s[0]-M[0],M[1]=l[0]-M[1];else if(_){var E=+/w$/.test(_),C=+/^n/.test(_);v=[s[1-E]-M[0],l[1-C]-M[1]],M[0]=s[E],M[1]=l[C]}else t.event.altKey&&(h=M.slice());function L(){var e=t.mouse(m),r=!1;v&&(e[0]+=v[0],e[1]+=v[1]),T||(t.event.altKey?(h||(h=[(s[0]+s[1])/2,(l[0]+l[1])/2]),M[0]=s[+(e[0]<h[0])],M[1]=l[+(e[1]<h[1])]):h=null),w&&P(e,a,0)&&(d(b),r=!0),k&&P(e,i,1)&&(g(b),r=!0),r&&(p(b),x({type:\"brush\",mode:T?\"move\":\"resize\"}))}function P(t,n,a){var i,o,f=uo(n),p=f[0],d=f[1],g=M[a],v=a?l:s,m=v[1]-v[0];if(T&&(p-=g,d-=m+g),i=(a?u:c)?Math.max(p,Math.min(d,t[a])):t[a],T?o=(i+=g)+m:(h&&(g=Math.max(p,Math.min(d,2*h[a]-i))),g<i?(o=i,i=g):o=g),v[0]!=i||v[1]!=o)return a?r=null:e=null,v[0]=i,v[1]=o,!0}function O(){L(),b.style(\"pointer-events\",\"all\").selectAll(\".resize\").style(\"display\",f.empty()?\"none\":null),t.select(\"body\").style(\"cursor\",null),S.on(\"mousemove.brush\",null).on(\"mouseup.brush\",null).on(\"touchmove.brush\",null).on(\"touchend.brush\",null).on(\"keydown.brush\",null).on(\"keyup.brush\",null),A(),x({type:\"brushend\"})}b.style(\"pointer-events\",\"none\").selectAll(\".resize\").style(\"display\",null),t.select(\"body\").style(\"cursor\",y.style(\"cursor\")),x({type:\"brushstart\"}),L()}return f.event=function(a){a.each(function(){var a=n.of(this,arguments),i={x:s,y:l,i:e,j:r},o=this.__chart__||i;this.__chart__=i,ds?t.select(this).transition().each(\"start.brush\",function(){e=o.i,r=o.j,s=o.x,l=o.y,a({type:\"brushstart\"})}).tween(\"brush:brush\",function(){var t=Ja(s,i.x),n=Ja(l,i.y);return e=r=null,function(e){s=i.x=t(e),l=i.y=n(e),a({type:\"brush\",mode:\"resize\"})}}).each(\"end.brush\",function(){e=i.i,r=i.j,a({type:\"brush\",mode:\"resize\"}),a({type:\"brushend\"})}):(a({type:\"brushstart\"}),a({type:\"brush\",mode:\"resize\"}),a({type:\"brushend\"}))})},f.x=function(t){return arguments.length?(h=Ss[!(a=t)<<1|!i],f):a},f.y=function(t){return arguments.length?(h=Ss[!a<<1|!(i=t)],f):i},f.clamp=function(t){return arguments.length?(a&&i?(c=!!t[0],u=!!t[1]):a?c=!!t:i&&(u=!!t),f):a&&i?[c,u]:a?c:i?u:null},f.extent=function(t){var n,o,c,u,h;return arguments.length?(a&&(n=t[0],o=t[1],i&&(n=n[0],o=o[0]),e=[n,o],a.invert&&(n=a(n),o=a(o)),o<n&&(h=n,n=o,o=h),n==s[0]&&o==s[1]||(s=[n,o])),i&&(c=t[0],u=t[1],a&&(c=c[1],u=u[1]),r=[c,u],i.invert&&(c=i(c),u=i(u)),u<c&&(h=c,c=u,u=h),c==l[0]&&u==l[1]||(l=[c,u])),f):(a&&(e?(n=e[0],o=e[1]):(n=s[0],o=s[1],a.invert&&(n=a.invert(n),o=a.invert(o)),o<n&&(h=n,n=o,o=h))),i&&(r?(c=r[0],u=r[1]):(c=l[0],u=l[1],i.invert&&(c=i.invert(c),u=i.invert(u)),u<c&&(h=c,c=u,u=h))),a&&i?[[n,c],[o,u]]:a?[n,o]:i&&[c,u])},f.clear=function(){return f.empty()||(s=[0,0],l=[0,0],e=r=null),f},f.empty=function(){return!!a&&s[0]==s[1]||!!i&&l[0]==l[1]},t.rebind(f,n,\"on\")};var Ms={n:\"ns-resize\",e:\"ew-resize\",s:\"ns-resize\",w:\"ew-resize\",nw:\"nwse-resize\",ne:\"nesw-resize\",se:\"nwse-resize\",sw:\"nesw-resize\"},Ss=[[\"n\",\"e\",\"s\",\"w\",\"nw\",\"ne\",\"se\",\"sw\"],[\"e\",\"w\"],[\"n\",\"s\"],[]],Es=Ie.format=sr.timeFormat,Cs=Es.utc,Ls=Cs(\"%Y-%m-%dT%H:%M:%S.%LZ\");function Ps(t){return t.toISOString()}function Os(e,r,n){function a(t){return e(t)}function i(e,n){var a=(e[1]-e[0])/n,i=t.bisect(zs,a);return i==zs.length?[r.year,xo(e.map(function(t){return t/31536e6}),n)[2]]:i?r[a/zs[i-1]<zs[i]/a?i-1:i]:[Fs,xo(e,n)[2]]}return a.invert=function(t){return Is(e.invert(t))},a.domain=function(t){return arguments.length?(e.domain(t),a):e.domain().map(Is)},a.nice=function(t,e){var r=a.domain(),n=co(r),o=null==t?i(n,10):\"number\"==typeof t&&i(n,t);function s(r){return!isNaN(r)&&!t.range(r,Is(+r+1),e).length}return o&&(t=o[0],e=o[1]),a.domain(fo(r,e>1?{floor:function(e){for(;s(e=t.floor(e));)e=Is(e-1);return e},ceil:function(e){for(;s(e=t.ceil(e));)e=Is(+e+1);return e}}:t))},a.ticks=function(t,e){var r=co(a.domain()),n=null==t?i(r,10):\"number\"==typeof t?i(r,t):!t.range&&[{range:t},e];return n&&(t=n[0],e=n[1]),t.range(r[0],Is(+r[1]+1),e<1?1:e)},a.tickFormat=function(){return n},a.copy=function(){return Os(e.copy(),r,n)},mo(a,e)}function Is(t){return new Date(t)}Es.iso=Date.prototype.toISOString&&+new Date(\"2000-01-01T00:00:00.000Z\")?Ps:Ls,Ps.parse=function(t){var e=new Date(t);return isNaN(e)?null:e},Ps.toString=Ls.toString,Ie.second=Fe(function(t){return new ze(1e3*Math.floor(t/1e3))},function(t,e){t.setTime(t.getTime()+1e3*Math.floor(e))},function(t){return t.getSeconds()}),Ie.seconds=Ie.second.range,Ie.seconds.utc=Ie.second.utc.range,Ie.minute=Fe(function(t){return new ze(6e4*Math.floor(t/6e4))},function(t,e){t.setTime(t.getTime()+6e4*Math.floor(e))},function(t){return t.getMinutes()}),Ie.minutes=Ie.minute.range,Ie.minutes.utc=Ie.minute.utc.range,Ie.hour=Fe(function(t){var e=t.getTimezoneOffset()/60;return new ze(36e5*(Math.floor(t/36e5-e)+e))},function(t,e){t.setTime(t.getTime()+36e5*Math.floor(e))},function(t){return t.getHours()}),Ie.hours=Ie.hour.range,Ie.hours.utc=Ie.hour.utc.range,Ie.month=Fe(function(t){return(t=Ie.day(t)).setDate(1),t},function(t,e){t.setMonth(t.getMonth()+e)},function(t){return t.getMonth()}),Ie.months=Ie.month.range,Ie.months.utc=Ie.month.utc.range;var zs=[1e3,5e3,15e3,3e4,6e4,3e5,9e5,18e5,36e5,108e5,216e5,432e5,864e5,1728e5,6048e5,2592e6,7776e6,31536e6],Ds=[[Ie.second,1],[Ie.second,5],[Ie.second,15],[Ie.second,30],[Ie.minute,1],[Ie.minute,5],[Ie.minute,15],[Ie.minute,30],[Ie.hour,1],[Ie.hour,3],[Ie.hour,6],[Ie.hour,12],[Ie.day,1],[Ie.day,2],[Ie.week,1],[Ie.month,1],[Ie.month,3],[Ie.year,1]],Rs=Es.multi([[\".%L\",function(t){return t.getMilliseconds()}],[\":%S\",function(t){return t.getSeconds()}],[\"%I:%M\",function(t){return t.getMinutes()}],[\"%I %p\",function(t){return t.getHours()}],[\"%a %d\",function(t){return t.getDay()&&1!=t.getDate()}],[\"%b %d\",function(t){return 1!=t.getDate()}],[\"%B\",function(t){return t.getMonth()}],[\"%Y\",Yr]]),Fs={range:function(e,r,n){return t.range(Math.ceil(e/n)*n,+r,n).map(Is)},floor:P,ceil:P};Ds.year=Ie.year,Ie.scale=function(){return Os(t.scale.linear(),Ds,Rs)};var Bs=Ds.map(function(t){return[t[0].utc,t[1]]}),Ns=Cs.multi([[\".%L\",function(t){return t.getUTCMilliseconds()}],[\":%S\",function(t){return t.getUTCSeconds()}],[\"%I:%M\",function(t){return t.getUTCMinutes()}],[\"%I %p\",function(t){return t.getUTCHours()}],[\"%a %d\",function(t){return t.getUTCDay()&&1!=t.getUTCDate()}],[\"%b %d\",function(t){return 1!=t.getUTCDate()}],[\"%B\",function(t){return t.getUTCMonth()}],[\"%Y\",Yr]]);function js(t){return JSON.parse(t.responseText)}function Vs(t){var e=a.createRange();return e.selectNode(a.body),e.createContextualFragment(t.responseText)}Bs.year=Ie.year.utc,Ie.scale.utc=function(){return Os(t.scale.linear(),Bs,Ns)},t.text=me(function(t){return t.responseText}),t.json=function(t,e){return ye(t,\"application/json\",js,e)},t.html=function(t,e){return ye(t,\"text/html\",Vs,e)},t.xml=me(function(t){return t.responseXML}),\"object\"==typeof e&&e.exports?e.exports=t:this.d3=t}()},{}],165:[function(t,e,r){e.exports=function(){for(var t=0;t<arguments.length;t++)if(void 0!==arguments[t])return arguments[t]}},{}],166:[function(t,e,r){\"use strict\";var n=t(\"incremental-convex-hull\"),a=t(\"uniq\");function i(t,e){this.point=t,this.index=e}function o(t,e){for(var r=t.point,n=e.point,a=r.length,i=0;i<a;++i){var o=n[i]-r[i];if(o)return o}return 0}e.exports=function(t,e){var r=t.length;if(0===r)return[];var s=t[0].length;if(s<1)return[];if(1===s)return function(t,e,r){if(1===t)return r?[[-1,0]]:[];var n=e.map(function(t,e){return[t[0],e]});n.sort(function(t,e){return t[0]-e[0]});for(var a=new Array(t-1),i=1;i<t;++i){var o=n[i-1],s=n[i];a[i-1]=[o[1],s[1]]}r&&a.push([-1,a[0][1]],[a[t-1][1],-1]);return a}(r,t,e);for(var l=new Array(r),c=1,u=0;u<r;++u){for(var h=t[u],f=new Array(s+1),p=0,d=0;d<s;++d){var g=h[d];f[d]=g,p+=g*g}f[s]=p,l[u]=new i(f,u),c=Math.max(p,c)}a(l,o),r=l.length;for(var v=new Array(r+s+1),m=new Array(r+s+1),y=(s+1)*(s+1)*c,x=new Array(s+1),u=0;u<=s;++u)x[u]=0;x[s]=y,v[0]=x.slice(),m[0]=-1;for(var u=0;u<=s;++u){var f=x.slice();f[u]=1,v[u+1]=f,m[u+1]=-1}for(var u=0;u<r;++u){var b=l[u];v[u+s+1]=b.point,m[u+s+1]=b.index}var _=n(v,!1);_=e?_.filter(function(t){for(var e=0,r=0;r<=s;++r){var n=m[t[r]];if(n<0&&++e>=2)return!1;t[r]=n}return!0}):_.filter(function(t){for(var e=0;e<=s;++e){var r=m[t[e]];if(r<0)return!1;t[e]=r}return!0});if(1&s)for(var u=0;u<_.length;++u){var b=_[u],f=b[0];b[0]=b[1],b[1]=f}return _}},{\"incremental-convex-hull\":414,uniq:548}],167:[function(t,e,r){\"use strict\";e.exports=i;var n=(i.canvas=document.createElement(\"canvas\")).getContext(\"2d\"),a=o([32,126]);function i(t,e){Array.isArray(t)&&(t=t.join(\", \"));var r,i={},s=16,l=.05;e&&(2===e.length&&\"number\"==typeof e[0]?r=o(e):Array.isArray(e)?r=e:(e.o?r=o(e.o):e.pairs&&(r=e.pairs),e.fontSize&&(s=e.fontSize),null!=e.threshold&&(l=e.threshold))),r||(r=a),n.font=s+\"px \"+t;for(var c=0;c<r.length;c++){var u=r[c],h=n.measureText(u[0]).width+n.measureText(u[1]).width,f=n.measureText(u).width;if(Math.abs(h-f)>s*l){var p=(f-h)/s;i[u]=1e3*p}}return i}function o(t){for(var e=[],r=t[0];r<=t[1];r++)for(var n=String.fromCharCode(r),a=t[0];a<t[1];a++){var i=n+String.fromCharCode(a);e.push(i)}return e}i.createPairs=o,i.ascii=a},{}],168:[function(t,e,r){(function(t){var r=!1;if(\"undefined\"!=typeof Float64Array){var n=new Float64Array(1),a=new Uint32Array(n.buffer);if(n[0]=1,r=!0,1072693248===a[1]){e.exports=function(t){return n[0]=t,[a[0],a[1]]},e.exports.pack=function(t,e){return a[0]=t,a[1]=e,n[0]},e.exports.lo=function(t){return n[0]=t,a[0]},e.exports.hi=function(t){return n[0]=t,a[1]}}else if(1072693248===a[0]){e.exports=function(t){return n[0]=t,[a[1],a[0]]},e.exports.pack=function(t,e){return a[1]=t,a[0]=e,n[0]},e.exports.lo=function(t){return n[0]=t,a[1]},e.exports.hi=function(t){return n[0]=t,a[0]}}else r=!1}if(!r){var i=new t(8);e.exports=function(t){return i.writeDoubleLE(t,0,!0),[i.readUInt32LE(0,!0),i.readUInt32LE(4,!0)]},e.exports.pack=function(t,e){return i.writeUInt32LE(t,0,!0),i.writeUInt32LE(e,4,!0),i.readDoubleLE(0,!0)},e.exports.lo=function(t){return i.writeDoubleLE(t,0,!0),i.readUInt32LE(0,!0)},e.exports.hi=function(t){return i.writeDoubleLE(t,0,!0),i.readUInt32LE(4,!0)}}e.exports.sign=function(t){return e.exports.hi(t)>>>31},e.exports.exponent=function(t){return(e.exports.hi(t)<<1>>>21)-1023},e.exports.fraction=function(t){var r=e.exports.lo(t),n=e.exports.hi(t),a=1048575&n;return 2146435072&n&&(a+=1<<20),[r,a]},e.exports.denormalized=function(t){return!(2146435072&e.exports.hi(t))}}).call(this,t(\"buffer\").Buffer)},{buffer:106}],169:[function(t,e,r){var n=t(\"abs-svg-path\"),a=t(\"normalize-svg-path\"),i={M:\"moveTo\",C:\"bezierCurveTo\"};e.exports=function(t,e){t.beginPath(),a(n(e)).forEach(function(e){var r=e[0],n=e.slice(1);t[i[r]].apply(t,n)}),t.closePath()}},{\"abs-svg-path\":61,\"normalize-svg-path\":453}],170:[function(t,e,r){e.exports=function(t){switch(t){case\"int8\":return Int8Array;case\"int16\":return Int16Array;case\"int32\":return Int32Array;case\"uint8\":return Uint8Array;case\"uint16\":return Uint16Array;case\"uint32\":return Uint32Array;case\"float32\":return Float32Array;case\"float64\":return Float64Array;case\"array\":return Array;case\"uint8_clamped\":return Uint8ClampedArray}}},{}],171:[function(t,e,r){\"use strict\";e.exports=function(t,e){switch(\"undefined\"==typeof e&&(e=0),typeof t){case\"number\":if(t>0)return function(t,e){var r,n;for(r=new Array(t),n=0;n<t;++n)r[n]=e;return r}(0|t,e);break;case\"object\":if(\"number\"==typeof t.length)return function t(e,r,n){var a=0|e[n];if(a<=0)return[];var i,o=new Array(a);if(n===e.length-1)for(i=0;i<a;++i)o[i]=r;else for(i=0;i<a;++i)o[i]=t(e,r,n+1);return o}(t,e,0)}return[]}},{}],172:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=t.length;if(\"number\"!=typeof e){e=0;for(var a=0;a<r;++a){var i=t[a];e=Math.max(e,i[0],i[1])}e=1+(0|e)}e|=0;for(var o=new Array(e),a=0;a<e;++a)o[a]=[];for(var a=0;a<r;++a){var i=t[a];o[i[0]].push(i[1]),o[i[1]].push(i[0])}for(var s=0;s<e;++s)n(o[s],function(t,e){return t-e});return o};var n=t(\"uniq\")},{uniq:548}],173:[function(t,e,r){var n=t(\"strongly-connected-components\");e.exports=function(t){var e,r=[],a=[],i=[],o={},s=[];function l(t){var r,n,u=!1;for(a.push(t),i[t]=!0,r=0;r<s[t].length;r++)(n=s[t][r])===e?(c(e,a),u=!0):i[n]||(u=l(n));if(u)!function t(e){i[e]=!1,o.hasOwnProperty(e)&&Object.keys(o[e]).forEach(function(r){delete o[e][r],i[r]&&t(r)})}(t);else for(r=0;r<s[t].length;r++){n=s[t][r];var h=o[n];h||(h={},o[n]=h),h[n]=!0}return a.pop(),u}function c(t,e){var n=[].concat(e).concat(t);r.push(n)}function u(e){!function(e){for(var r=0;r<t.length;r++)r<e&&(t[r]=[]),t[r]=t[r].filter(function(t){return t>=e})}(e);for(var r,a=n(t).components.filter(function(t){return t.length>1}),i=1/0,o=0;o<a.length;o++)for(var s=0;s<a[o].length;s++)a[o][s]<i&&(i=a[o][s],r=o);var l=a[r];return!!l&&{leastVertex:i,adjList:t.map(function(t,e){return-1===l.indexOf(e)?[]:t.filter(function(t){return-1!==l.indexOf(t)})})}}e=0;for(var h=t.length;e<h;){var f=u(e);if(e=f.leastVertex,s=f.adjList){for(var p=0;p<s.length;p++)for(var d=0;d<s[p].length;d++){var g=s[p][d];i[+g]=!1,o[g]={}}l(e),e+=1}else e=h}return r}},{\"strongly-connected-components\":531}],174:[function(t,e,r){\"use strict\";var n=t(\"../../object/valid-value\");e.exports=function(){return n(this).length=0,this}},{\"../../object/valid-value\":206}],175:[function(t,e,r){\"use strict\";e.exports=t(\"./is-implemented\")()?Array.from:t(\"./shim\")},{\"./is-implemented\":176,\"./shim\":177}],176:[function(t,e,r){\"use strict\";e.exports=function(){var t,e,r=Array.from;return\"function\"==typeof r&&(e=r(t=[\"raz\",\"dwa\"]),Boolean(e&&e!==t&&\"dwa\"===e[1]))}},{}],177:[function(t,e,r){\"use strict\";var n=t(\"es6-symbol\").iterator,a=t(\"../../function/is-arguments\"),i=t(\"../../function/is-function\"),o=t(\"../../number/to-pos-integer\"),s=t(\"../../object/valid-callable\"),l=t(\"../../object/valid-value\"),c=t(\"../../object/is-value\"),u=t(\"../../string/is-string\"),h=Array.isArray,f=Function.prototype.call,p={configurable:!0,enumerable:!0,writable:!0,value:null},d=Object.defineProperty;e.exports=function(t){var e,r,g,v,m,y,x,b,_,w,k=arguments[1],T=arguments[2];if(t=Object(l(t)),c(k)&&s(k),this&&this!==Array&&i(this))e=this;else{if(!k){if(a(t))return 1!==(m=t.length)?Array.apply(null,t):((v=new Array(1))[0]=t[0],v);if(h(t)){for(v=new Array(m=t.length),r=0;r<m;++r)v[r]=t[r];return v}}v=[]}if(!h(t))if(void 0!==(_=t[n])){for(x=s(_).call(t),e&&(v=new e),b=x.next(),r=0;!b.done;)w=k?f.call(k,T,b.value,r):b.value,e?(p.value=w,d(v,r,p)):v[r]=w,b=x.next(),++r;m=r}else if(u(t)){for(m=t.length,e&&(v=new e),r=0,g=0;r<m;++r)w=t[r],r+1<m&&(y=w.charCodeAt(0))>=55296&&y<=56319&&(w+=t[++r]),w=k?f.call(k,T,w,g):w,e?(p.value=w,d(v,g,p)):v[g]=w,++g;m=g}if(void 0===m)for(m=o(t.length),e&&(v=new e(m)),r=0;r<m;++r)w=k?f.call(k,T,t[r],r):t[r],e?(p.value=w,d(v,r,p)):v[r]=w;return e&&(p.value=null,v.length=m),v}},{\"../../function/is-arguments\":178,\"../../function/is-function\":179,\"../../number/to-pos-integer\":185,\"../../object/is-value\":195,\"../../object/valid-callable\":204,\"../../object/valid-value\":206,\"../../string/is-string\":210,\"es6-symbol\":220}],178:[function(t,e,r){\"use strict\";var n=Object.prototype.toString,a=n.call(function(){return arguments}());e.exports=function(t){return n.call(t)===a}},{}],179:[function(t,e,r){\"use strict\";var n=Object.prototype.toString,a=n.call(t(\"./noop\"));e.exports=function(t){return\"function\"==typeof t&&n.call(t)===a}},{\"./noop\":180}],180:[function(t,e,r){\"use strict\";e.exports=function(){}},{}],181:[function(t,e,r){\"use strict\";e.exports=t(\"./is-implemented\")()?Math.sign:t(\"./shim\")},{\"./is-implemented\":182,\"./shim\":183}],182:[function(t,e,r){\"use strict\";e.exports=function(){var t=Math.sign;return\"function\"==typeof t&&(1===t(10)&&-1===t(-20))}},{}],183:[function(t,e,r){\"use strict\";e.exports=function(t){return t=Number(t),isNaN(t)||0===t?t:t>0?1:-1}},{}],184:[function(t,e,r){\"use strict\";var n=t(\"../math/sign\"),a=Math.abs,i=Math.floor;e.exports=function(t){return isNaN(t)?0:0!==(t=Number(t))&&isFinite(t)?n(t)*i(a(t)):t}},{\"../math/sign\":181}],185:[function(t,e,r){\"use strict\";var n=t(\"./to-integer\"),a=Math.max;e.exports=function(t){return a(0,n(t))}},{\"./to-integer\":184}],186:[function(t,e,r){\"use strict\";var n=t(\"./valid-callable\"),a=t(\"./valid-value\"),i=Function.prototype.bind,o=Function.prototype.call,s=Object.keys,l=Object.prototype.propertyIsEnumerable;e.exports=function(t,e){return function(r,c){var u,h=arguments[2],f=arguments[3];return r=Object(a(r)),n(c),u=s(r),f&&u.sort(\"function\"==typeof f?i.call(f,r):void 0),\"function\"!=typeof t&&(t=u[t]),o.call(t,u,function(t,n){return l.call(r,t)?o.call(c,h,r[t],t,r,n):e})}}},{\"./valid-callable\":204,\"./valid-value\":206}],187:[function(t,e,r){\"use strict\";e.exports=t(\"./is-implemented\")()?Object.assign:t(\"./shim\")},{\"./is-implemented\":188,\"./shim\":189}],188:[function(t,e,r){\"use strict\";e.exports=function(){var t,e=Object.assign;return\"function\"==typeof e&&(e(t={foo:\"raz\"},{bar:\"dwa\"},{trzy:\"trzy\"}),t.foo+t.bar+t.trzy===\"razdwatrzy\")}},{}],189:[function(t,e,r){\"use strict\";var n=t(\"../keys\"),a=t(\"../valid-value\"),i=Math.max;e.exports=function(t,e){var r,o,s,l=i(arguments.length,2);for(t=Object(a(t)),s=function(n){try{t[n]=e[n]}catch(t){r||(r=t)}},o=1;o<l;++o)e=arguments[o],n(e).forEach(s);if(void 0!==r)throw r;return t}},{\"../keys\":196,\"../valid-value\":206}],190:[function(t,e,r){\"use strict\";var n=t(\"../array/from\"),a=t(\"./assign\"),i=t(\"./valid-value\");e.exports=function(t){var e=Object(i(t)),r=arguments[1],o=Object(arguments[2]);if(e!==t&&!r)return e;var s={};return r?n(r,function(e){(o.ensure||e in t)&&(s[e]=t[e])}):a(s,t),s}},{\"../array/from\":175,\"./assign\":187,\"./valid-value\":206}],191:[function(t,e,r){\"use strict\";var n,a,i,o,s=Object.create;t(\"./set-prototype-of/is-implemented\")()||(n=t(\"./set-prototype-of/shim\")),e.exports=n?1!==n.level?s:(a={},i={},o={configurable:!1,enumerable:!1,writable:!0,value:void 0},Object.getOwnPropertyNames(Object.prototype).forEach(function(t){i[t]=\"__proto__\"!==t?o:{configurable:!0,enumerable:!1,writable:!0,value:void 0}}),Object.defineProperties(a,i),Object.defineProperty(n,\"nullPolyfill\",{configurable:!1,enumerable:!1,writable:!1,value:a}),function(t,e){return s(null===t?a:t,e)}):s},{\"./set-prototype-of/is-implemented\":202,\"./set-prototype-of/shim\":203}],192:[function(t,e,r){\"use strict\";e.exports=t(\"./_iterate\")(\"forEach\")},{\"./_iterate\":186}],193:[function(t,e,r){\"use strict\";e.exports=function(t){return\"function\"==typeof t}},{}],194:[function(t,e,r){\"use strict\";var n=t(\"./is-value\"),a={function:!0,object:!0};e.exports=function(t){return n(t)&&a[typeof t]||!1}},{\"./is-value\":195}],195:[function(t,e,r){\"use strict\";var n=t(\"../function/noop\")();e.exports=function(t){return t!==n&&null!==t}},{\"../function/noop\":180}],196:[function(t,e,r){\"use strict\";e.exports=t(\"./is-implemented\")()?Object.keys:t(\"./shim\")},{\"./is-implemented\":197,\"./shim\":198}],197:[function(t,e,r){\"use strict\";e.exports=function(){try{return Object.keys(\"primitive\"),!0}catch(t){return!1}}},{}],198:[function(t,e,r){\"use strict\";var n=t(\"../is-value\"),a=Object.keys;e.exports=function(t){return a(n(t)?Object(t):t)}},{\"../is-value\":195}],199:[function(t,e,r){\"use strict\";var n=t(\"./valid-callable\"),a=t(\"./for-each\"),i=Function.prototype.call;e.exports=function(t,e){var r={},o=arguments[2];return n(e),a(t,function(t,n,a,s){r[n]=i.call(e,o,t,n,a,s)}),r}},{\"./for-each\":192,\"./valid-callable\":204}],200:[function(t,e,r){\"use strict\";var n=t(\"./is-value\"),a=Array.prototype.forEach,i=Object.create;e.exports=function(t){var e=i(null);return a.call(arguments,function(t){n(t)&&function(t,e){var r;for(r in t)e[r]=t[r]}(Object(t),e)}),e}},{\"./is-value\":195}],201:[function(t,e,r){\"use strict\";e.exports=t(\"./is-implemented\")()?Object.setPrototypeOf:t(\"./shim\")},{\"./is-implemented\":202,\"./shim\":203}],202:[function(t,e,r){\"use strict\";var n=Object.create,a=Object.getPrototypeOf,i={};e.exports=function(){var t=Object.setPrototypeOf,e=arguments[0]||n;return\"function\"==typeof t&&a(t(e(null),i))===i}},{}],203:[function(t,e,r){\"use strict\";var n,a,i,o,s=t(\"../is-object\"),l=t(\"../valid-value\"),c=Object.prototype.isPrototypeOf,u=Object.defineProperty,h={configurable:!0,enumerable:!1,writable:!0,value:void 0};n=function(t,e){if(l(t),null===e||s(e))return t;throw new TypeError(\"Prototype must be null or an object\")},e.exports=(a=function(){var t,e=Object.create(null),r={},n=Object.getOwnPropertyDescriptor(Object.prototype,\"__proto__\");if(n){try{(t=n.set).call(e,r)}catch(t){}if(Object.getPrototypeOf(e)===r)return{set:t,level:2}}return e.__proto__=r,Object.getPrototypeOf(e)===r?{level:2}:((e={}).__proto__=r,Object.getPrototypeOf(e)===r&&{level:1})}())?(2===a.level?a.set?(o=a.set,i=function(t,e){return o.call(n(t,e),e),t}):i=function(t,e){return n(t,e).__proto__=e,t}:i=function t(e,r){var a;return n(e,r),(a=c.call(t.nullPolyfill,e))&&delete t.nullPolyfill.__proto__,null===r&&(r=t.nullPolyfill),e.__proto__=r,a&&u(t.nullPolyfill,\"__proto__\",h),e},Object.defineProperty(i,\"level\",{configurable:!1,enumerable:!1,writable:!1,value:a.level})):null,t(\"../create\")},{\"../create\":191,\"../is-object\":194,\"../valid-value\":206}],204:[function(t,e,r){\"use strict\";e.exports=function(t){if(\"function\"!=typeof t)throw new TypeError(t+\" is not a function\");return t}},{}],205:[function(t,e,r){\"use strict\";var n=t(\"./is-object\");e.exports=function(t){if(!n(t))throw new TypeError(t+\" is not an Object\");return t}},{\"./is-object\":194}],206:[function(t,e,r){\"use strict\";var n=t(\"./is-value\");e.exports=function(t){if(!n(t))throw new TypeError(\"Cannot use null or undefined\");return t}},{\"./is-value\":195}],207:[function(t,e,r){\"use strict\";e.exports=t(\"./is-implemented\")()?String.prototype.contains:t(\"./shim\")},{\"./is-implemented\":208,\"./shim\":209}],208:[function(t,e,r){\"use strict\";var n=\"razdwatrzy\";e.exports=function(){return\"function\"==typeof n.contains&&(!0===n.contains(\"dwa\")&&!1===n.contains(\"foo\"))}},{}],209:[function(t,e,r){\"use strict\";var n=String.prototype.indexOf;e.exports=function(t){return n.call(this,t,arguments[1])>-1}},{}],210:[function(t,e,r){\"use strict\";var n=Object.prototype.toString,a=n.call(\"\");e.exports=function(t){return\"string\"==typeof t||t&&\"object\"==typeof t&&(t instanceof String||n.call(t)===a)||!1}},{}],211:[function(t,e,r){\"use strict\";var n=Object.create(null),a=Math.random;e.exports=function(){var t;do{t=a().toString(36).slice(2)}while(n[t]);return t}},{}],212:[function(t,e,r){\"use strict\";var n,a=t(\"es5-ext/object/set-prototype-of\"),i=t(\"es5-ext/string/#/contains\"),o=t(\"d\"),s=t(\"es6-symbol\"),l=t(\"./\"),c=Object.defineProperty;n=e.exports=function(t,e){if(!(this instanceof n))throw new TypeError(\"Constructor requires 'new'\");l.call(this,t),e=e?i.call(e,\"key+value\")?\"key+value\":i.call(e,\"key\")?\"key\":\"value\":\"value\",c(this,\"__kind__\",o(\"\",e))},a&&a(n,l),delete n.prototype.constructor,n.prototype=Object.create(l.prototype,{_resolve:o(function(t){return\"value\"===this.__kind__?this.__list__[t]:\"key+value\"===this.__kind__?[t,this.__list__[t]]:t})}),c(n.prototype,s.toStringTag,o(\"c\",\"Array Iterator\"))},{\"./\":215,d:152,\"es5-ext/object/set-prototype-of\":201,\"es5-ext/string/#/contains\":207,\"es6-symbol\":220}],213:[function(t,e,r){\"use strict\";var n=t(\"es5-ext/function/is-arguments\"),a=t(\"es5-ext/object/valid-callable\"),i=t(\"es5-ext/string/is-string\"),o=t(\"./get\"),s=Array.isArray,l=Function.prototype.call,c=Array.prototype.some;e.exports=function(t,e){var r,u,h,f,p,d,g,v,m=arguments[2];if(s(t)||n(t)?r=\"array\":i(t)?r=\"string\":t=o(t),a(e),h=function(){f=!0},\"array\"!==r)if(\"string\"!==r)for(u=t.next();!u.done;){if(l.call(e,m,u.value,h),f)return;u=t.next()}else for(d=t.length,p=0;p<d&&(g=t[p],p+1<d&&(v=g.charCodeAt(0))>=55296&&v<=56319&&(g+=t[++p]),l.call(e,m,g,h),!f);++p);else c.call(t,function(t){return l.call(e,m,t,h),f})}},{\"./get\":214,\"es5-ext/function/is-arguments\":178,\"es5-ext/object/valid-callable\":204,\"es5-ext/string/is-string\":210}],214:[function(t,e,r){\"use strict\";var n=t(\"es5-ext/function/is-arguments\"),a=t(\"es5-ext/string/is-string\"),i=t(\"./array\"),o=t(\"./string\"),s=t(\"./valid-iterable\"),l=t(\"es6-symbol\").iterator;e.exports=function(t){return\"function\"==typeof s(t)[l]?t[l]():n(t)?new i(t):a(t)?new o(t):new i(t)}},{\"./array\":212,\"./string\":217,\"./valid-iterable\":218,\"es5-ext/function/is-arguments\":178,\"es5-ext/string/is-string\":210,\"es6-symbol\":220}],215:[function(t,e,r){\"use strict\";var n,a=t(\"es5-ext/array/#/clear\"),i=t(\"es5-ext/object/assign\"),o=t(\"es5-ext/object/valid-callable\"),s=t(\"es5-ext/object/valid-value\"),l=t(\"d\"),c=t(\"d/auto-bind\"),u=t(\"es6-symbol\"),h=Object.defineProperty,f=Object.defineProperties;e.exports=n=function(t,e){if(!(this instanceof n))throw new TypeError(\"Constructor requires 'new'\");f(this,{__list__:l(\"w\",s(t)),__context__:l(\"w\",e),__nextIndex__:l(\"w\",0)}),e&&(o(e.on),e.on(\"_add\",this._onAdd),e.on(\"_delete\",this._onDelete),e.on(\"_clear\",this._onClear))},delete n.prototype.constructor,f(n.prototype,i({_next:l(function(){var t;if(this.__list__)return this.__redo__&&void 0!==(t=this.__redo__.shift())?t:this.__nextIndex__<this.__list__.length?this.__nextIndex__++:void this._unBind()}),next:l(function(){return this._createResult(this._next())}),_createResult:l(function(t){return void 0===t?{done:!0,value:void 0}:{done:!1,value:this._resolve(t)}}),_resolve:l(function(t){return this.__list__[t]}),_unBind:l(function(){this.__list__=null,delete this.__redo__,this.__context__&&(this.__context__.off(\"_add\",this._onAdd),this.__context__.off(\"_delete\",this._onDelete),this.__context__.off(\"_clear\",this._onClear),this.__context__=null)}),toString:l(function(){return\"[object \"+(this[u.toStringTag]||\"Object\")+\"]\"})},c({_onAdd:l(function(t){t>=this.__nextIndex__||(++this.__nextIndex__,this.__redo__?(this.__redo__.forEach(function(e,r){e>=t&&(this.__redo__[r]=++e)},this),this.__redo__.push(t)):h(this,\"__redo__\",l(\"c\",[t])))}),_onDelete:l(function(t){var e;t>=this.__nextIndex__||(--this.__nextIndex__,this.__redo__&&(-1!==(e=this.__redo__.indexOf(t))&&this.__redo__.splice(e,1),this.__redo__.forEach(function(e,r){e>t&&(this.__redo__[r]=--e)},this)))}),_onClear:l(function(){this.__redo__&&a.call(this.__redo__),this.__nextIndex__=0})}))),h(n.prototype,u.iterator,l(function(){return this}))},{d:152,\"d/auto-bind\":151,\"es5-ext/array/#/clear\":174,\"es5-ext/object/assign\":187,\"es5-ext/object/valid-callable\":204,\"es5-ext/object/valid-value\":206,\"es6-symbol\":220}],216:[function(t,e,r){\"use strict\";var n=t(\"es5-ext/function/is-arguments\"),a=t(\"es5-ext/object/is-value\"),i=t(\"es5-ext/string/is-string\"),o=t(\"es6-symbol\").iterator,s=Array.isArray;e.exports=function(t){return!!a(t)&&(!!s(t)||(!!i(t)||(!!n(t)||\"function\"==typeof t[o])))}},{\"es5-ext/function/is-arguments\":178,\"es5-ext/object/is-value\":195,\"es5-ext/string/is-string\":210,\"es6-symbol\":220}],217:[function(t,e,r){\"use strict\";var n,a=t(\"es5-ext/object/set-prototype-of\"),i=t(\"d\"),o=t(\"es6-symbol\"),s=t(\"./\"),l=Object.defineProperty;n=e.exports=function(t){if(!(this instanceof n))throw new TypeError(\"Constructor requires 'new'\");t=String(t),s.call(this,t),l(this,\"__length__\",i(\"\",t.length))},a&&a(n,s),delete n.prototype.constructor,n.prototype=Object.create(s.prototype,{_next:i(function(){if(this.__list__)return this.__nextIndex__<this.__length__?this.__nextIndex__++:void this._unBind()}),_resolve:i(function(t){var e,r=this.__list__[t];return this.__nextIndex__===this.__length__?r:(e=r.charCodeAt(0))>=55296&&e<=56319?r+this.__list__[this.__nextIndex__++]:r})}),l(n.prototype,o.toStringTag,i(\"c\",\"String Iterator\"))},{\"./\":215,d:152,\"es5-ext/object/set-prototype-of\":201,\"es6-symbol\":220}],218:[function(t,e,r){\"use strict\";var n=t(\"./is-iterable\");e.exports=function(t){if(!n(t))throw new TypeError(t+\" is not iterable\");return t}},{\"./is-iterable\":216}],219:[function(t,e,r){(function(n,a){!function(t,n){\"object\"==typeof r&&\"undefined\"!=typeof e?e.exports=n():t.ES6Promise=n()}(this,function(){\"use strict\";function e(t){return\"function\"==typeof t}var r=Array.isArray?Array.isArray:function(t){return\"[object Array]\"===Object.prototype.toString.call(t)},i=0,o=void 0,s=void 0,l=function(t,e){g[i]=t,g[i+1]=e,2===(i+=2)&&(s?s(v):_())};var c=\"undefined\"!=typeof window?window:void 0,u=c||{},h=u.MutationObserver||u.WebKitMutationObserver,f=\"undefined\"==typeof self&&\"undefined\"!=typeof n&&\"[object process]\"==={}.toString.call(n),p=\"undefined\"!=typeof Uint8ClampedArray&&\"undefined\"!=typeof importScripts&&\"undefined\"!=typeof MessageChannel;function d(){var t=setTimeout;return function(){return t(v,1)}}var g=new Array(1e3);function v(){for(var t=0;t<i;t+=2){(0,g[t])(g[t+1]),g[t]=void 0,g[t+1]=void 0}i=0}var m,y,x,b,_=void 0;function w(t,e){var r=arguments,n=this,a=new this.constructor(A);void 0===a[T]&&U(a);var i,o=n._state;return o?(i=r[o-1],l(function(){return j(o,a,i,n._result)})):R(n,a,t,e),a}function k(t){if(t&&\"object\"==typeof t&&t.constructor===this)return t;var e=new this(A);return O(e,t),e}f?_=function(){return n.nextTick(v)}:h?(y=0,x=new h(v),b=document.createTextNode(\"\"),x.observe(b,{characterData:!0}),_=function(){b.data=y=++y%2}):p?((m=new MessageChannel).port1.onmessage=v,_=function(){return m.port2.postMessage(0)}):_=void 0===c&&\"function\"==typeof t?function(){try{var e=t(\"vertx\");return o=e.runOnLoop||e.runOnContext,function(){o(v)}}catch(t){return d()}}():d();var T=Math.random().toString(36).substring(16);function A(){}var M=void 0,S=1,E=2,C=new B;function L(t){try{return t.then}catch(t){return C.error=t,C}}function P(t,r,n){r.constructor===t.constructor&&n===w&&r.constructor.resolve===k?function(t,e){e._state===S?z(t,e._result):e._state===E?D(t,e._result):R(e,void 0,function(e){return O(t,e)},function(e){return D(t,e)})}(t,r):n===C?D(t,C.error):void 0===n?z(t,r):e(n)?function(t,e,r){l(function(t){var n=!1,a=function(t,e,r,n){try{t.call(e,r,n)}catch(t){return t}}(r,e,function(r){n||(n=!0,e!==r?O(t,r):z(t,r))},function(e){n||(n=!0,D(t,e))},t._label);!n&&a&&(n=!0,D(t,a))},t)}(t,r,n):z(t,r)}function O(t,e){var r;t===e?D(t,new TypeError(\"You cannot resolve a promise with itself\")):\"function\"==typeof(r=e)||\"object\"==typeof r&&null!==r?P(t,e,L(e)):z(t,e)}function I(t){t._onerror&&t._onerror(t._result),F(t)}function z(t,e){t._state===M&&(t._result=e,t._state=S,0!==t._subscribers.length&&l(F,t))}function D(t,e){t._state===M&&(t._state=E,t._result=e,l(I,t))}function R(t,e,r,n){var a=t._subscribers,i=a.length;t._onerror=null,a[i]=e,a[i+S]=r,a[i+E]=n,0===i&&t._state&&l(F,t)}function F(t){var e=t._subscribers,r=t._state;if(0!==e.length){for(var n=void 0,a=void 0,i=t._result,o=0;o<e.length;o+=3)n=e[o],a=e[o+r],n?j(r,n,a,i):a(i);t._subscribers.length=0}}function B(){this.error=null}var N=new B;function j(t,r,n,a){var i=e(n),o=void 0,s=void 0,l=void 0,c=void 0;if(i){if((o=function(t,e){try{return t(e)}catch(t){return N.error=t,N}}(n,a))===N?(c=!0,s=o.error,o=null):l=!0,r===o)return void D(r,new TypeError(\"A promises callback cannot return that same promise.\"))}else o=a,l=!0;r._state!==M||(i&&l?O(r,o):c?D(r,s):t===S?z(r,o):t===E&&D(r,o))}var V=0;function U(t){t[T]=V++,t._state=void 0,t._result=void 0,t._subscribers=[]}function q(t,e){this._instanceConstructor=t,this.promise=new t(A),this.promise[T]||U(this.promise),r(e)?(this._input=e,this.length=e.length,this._remaining=e.length,this._result=new Array(this.length),0===this.length?z(this.promise,this._result):(this.length=this.length||0,this._enumerate(),0===this._remaining&&z(this.promise,this._result))):D(this.promise,new Error(\"Array Methods must be provided an Array\"))}function H(t){this[T]=V++,this._result=this._state=void 0,this._subscribers=[],A!==t&&(\"function\"!=typeof t&&function(){throw new TypeError(\"You must pass a resolver function as the first argument to the promise constructor\")}(),this instanceof H?function(t,e){try{e(function(e){O(t,e)},function(e){D(t,e)})}catch(e){D(t,e)}}(this,t):function(){throw new TypeError(\"Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function.\")}())}function G(){var t=void 0;if(\"undefined\"!=typeof a)t=a;else if(\"undefined\"!=typeof self)t=self;else try{t=Function(\"return this\")()}catch(t){throw new Error(\"polyfill failed because global object is unavailable in this environment\")}var e=t.Promise;if(e){var r=null;try{r=Object.prototype.toString.call(e.resolve())}catch(t){}if(\"[object Promise]\"===r&&!e.cast)return}t.Promise=H}return q.prototype._enumerate=function(){for(var t=this.length,e=this._input,r=0;this._state===M&&r<t;r++)this._eachEntry(e[r],r)},q.prototype._eachEntry=function(t,e){var r=this._instanceConstructor,n=r.resolve;if(n===k){var a=L(t);if(a===w&&t._state!==M)this._settledAt(t._state,e,t._result);else if(\"function\"!=typeof a)this._remaining--,this._result[e]=t;else if(r===H){var i=new r(A);P(i,t,a),this._willSettleAt(i,e)}else this._willSettleAt(new r(function(e){return e(t)}),e)}else this._willSettleAt(n(t),e)},q.prototype._settledAt=function(t,e,r){var n=this.promise;n._state===M&&(this._remaining--,t===E?D(n,r):this._result[e]=r),0===this._remaining&&z(n,this._result)},q.prototype._willSettleAt=function(t,e){var r=this;R(t,void 0,function(t){return r._settledAt(S,e,t)},function(t){return r._settledAt(E,e,t)})},H.all=function(t){return new q(this,t).promise},H.race=function(t){var e=this;return r(t)?new e(function(r,n){for(var a=t.length,i=0;i<a;i++)e.resolve(t[i]).then(r,n)}):new e(function(t,e){return e(new TypeError(\"You must pass an array to race.\"))})},H.resolve=k,H.reject=function(t){var e=new this(A);return D(e,t),e},H._setScheduler=function(t){s=t},H._setAsap=function(t){l=t},H._asap=l,H.prototype={constructor:H,then:w,catch:function(t){return this.then(null,t)}},G(),H.polyfill=G,H.Promise=H,H})}).call(this,t(\"_process\"),\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{_process:483}],220:[function(t,e,r){\"use strict\";e.exports=t(\"./is-implemented\")()?Symbol:t(\"./polyfill\")},{\"./is-implemented\":221,\"./polyfill\":223}],221:[function(t,e,r){\"use strict\";var n={object:!0,symbol:!0};e.exports=function(){var t;if(\"function\"!=typeof Symbol)return!1;t=Symbol(\"test symbol\");try{String(t)}catch(t){return!1}return!!n[typeof Symbol.iterator]&&(!!n[typeof Symbol.toPrimitive]&&!!n[typeof Symbol.toStringTag])}},{}],222:[function(t,e,r){\"use strict\";e.exports=function(t){return!!t&&(\"symbol\"==typeof t||!!t.constructor&&(\"Symbol\"===t.constructor.name&&\"Symbol\"===t[t.constructor.toStringTag]))}},{}],223:[function(t,e,r){\"use strict\";var n,a,i,o,s=t(\"d\"),l=t(\"./validate-symbol\"),c=Object.create,u=Object.defineProperties,h=Object.defineProperty,f=Object.prototype,p=c(null);if(\"function\"==typeof Symbol){n=Symbol;try{String(n()),o=!0}catch(t){}}var d,g=(d=c(null),function(t){for(var e,r,n=0;d[t+(n||\"\")];)++n;return d[t+=n||\"\"]=!0,h(f,e=\"@@\"+t,s.gs(null,function(t){r||(r=!0,h(this,e,s(t)),r=!1)})),e});i=function(t){if(this instanceof i)throw new TypeError(\"Symbol is not a constructor\");return a(t)},e.exports=a=function t(e){var r;if(this instanceof t)throw new TypeError(\"Symbol is not a constructor\");return o?n(e):(r=c(i.prototype),e=void 0===e?\"\":String(e),u(r,{__description__:s(\"\",e),__name__:s(\"\",g(e))}))},u(a,{for:s(function(t){return p[t]?p[t]:p[t]=a(String(t))}),keyFor:s(function(t){var e;for(e in l(t),p)if(p[e]===t)return e}),hasInstance:s(\"\",n&&n.hasInstance||a(\"hasInstance\")),isConcatSpreadable:s(\"\",n&&n.isConcatSpreadable||a(\"isConcatSpreadable\")),iterator:s(\"\",n&&n.iterator||a(\"iterator\")),match:s(\"\",n&&n.match||a(\"match\")),replace:s(\"\",n&&n.replace||a(\"replace\")),search:s(\"\",n&&n.search||a(\"search\")),species:s(\"\",n&&n.species||a(\"species\")),split:s(\"\",n&&n.split||a(\"split\")),toPrimitive:s(\"\",n&&n.toPrimitive||a(\"toPrimitive\")),toStringTag:s(\"\",n&&n.toStringTag||a(\"toStringTag\")),unscopables:s(\"\",n&&n.unscopables||a(\"unscopables\"))}),u(i.prototype,{constructor:s(a),toString:s(\"\",function(){return this.__name__})}),u(a.prototype,{toString:s(function(){return\"Symbol (\"+l(this).__description__+\")\"}),valueOf:s(function(){return l(this)})}),h(a.prototype,a.toPrimitive,s(\"\",function(){var t=l(this);return\"symbol\"==typeof t?t:t.toString()})),h(a.prototype,a.toStringTag,s(\"c\",\"Symbol\")),h(i.prototype,a.toStringTag,s(\"c\",a.prototype[a.toStringTag])),h(i.prototype,a.toPrimitive,s(\"c\",a.prototype[a.toPrimitive]))},{\"./validate-symbol\":224,d:152}],224:[function(t,e,r){\"use strict\";var n=t(\"./is-symbol\");e.exports=function(t){if(!n(t))throw new TypeError(t+\" is not a symbol\");return t}},{\"./is-symbol\":222}],225:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){var n=e||0,a=r||1;return[[t[12]+t[0],t[13]+t[1],t[14]+t[2],t[15]+t[3]],[t[12]-t[0],t[13]-t[1],t[14]-t[2],t[15]-t[3]],[t[12]+t[4],t[13]+t[5],t[14]+t[6],t[15]+t[7]],[t[12]-t[4],t[13]-t[5],t[14]-t[6],t[15]-t[7]],[n*t[12]+t[8],n*t[13]+t[9],n*t[14]+t[10],n*t[15]+t[11]],[a*t[12]-t[8],a*t[13]-t[9],a*t[14]-t[10],a*t[15]-t[11]]]}},{}],226:[function(t,e,r){\"use strict\";var n=t(\"is-string-blank\");e.exports=function(t){var e=typeof t;if(\"string\"===e){var r=t;if(0===(t=+t)&&n(r))return!1}else if(\"number\"!==e)return!1;return t-t<1}},{\"is-string-blank\":424}],227:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){switch(arguments.length){case 0:return new o([0],[0],0);case 1:if(\"number\"==typeof t){var n=l(t);return new o(n,n,0)}return new o(t,l(t.length),0);case 2:if(\"number\"==typeof e){var n=l(t.length);return new o(t,n,+e)}r=0;case 3:if(t.length!==e.length)throw new Error(\"state and velocity lengths must match\");return new o(t,e,r)}};var n=t(\"cubic-hermite\"),a=t(\"binary-search-bounds\");function i(t,e,r){return Math.min(e,Math.max(t,r))}function o(t,e,r){this.dimension=t.length,this.bounds=[new Array(this.dimension),new Array(this.dimension)];for(var n=0;n<this.dimension;++n)this.bounds[0][n]=-1/0,this.bounds[1][n]=1/0;this._state=t.slice().reverse(),this._velocity=e.slice().reverse(),this._time=[r],this._scratch=[t.slice(),t.slice(),t.slice(),t.slice(),t.slice()]}var s=o.prototype;function l(t){for(var e=new Array(t),r=0;r<t;++r)e[r]=0;return e}s.flush=function(t){var e=a.gt(this._time,t)-1;e<=0||(this._time.splice(0,e),this._state.splice(0,e*this.dimension),this._velocity.splice(0,e*this.dimension))},s.curve=function(t){var e=this._time,r=e.length,o=a.le(e,t),s=this._scratch[0],l=this._state,c=this._velocity,u=this.dimension,h=this.bounds;if(o<0)for(var f=u-1,p=0;p<u;++p,--f)s[p]=l[f];else if(o>=r-1){f=l.length-1;var d=t-e[r-1];for(p=0;p<u;++p,--f)s[p]=l[f]+d*c[f]}else{f=u*(o+1)-1;var g=e[o],v=e[o+1]-g||1,m=this._scratch[1],y=this._scratch[2],x=this._scratch[3],b=this._scratch[4],_=!0;for(p=0;p<u;++p,--f)m[p]=l[f],x[p]=c[f]*v,y[p]=l[f+u],b[p]=c[f+u]*v,_=_&&m[p]===y[p]&&x[p]===b[p]&&0===x[p];if(_)for(p=0;p<u;++p)s[p]=m[p];else n(m,x,y,b,(t-g)/v,s)}var w=h[0],k=h[1];for(p=0;p<u;++p)s[p]=i(w[p],k[p],s[p]);return s},s.dcurve=function(t){var e=this._time,r=e.length,i=a.le(e,t),o=this._scratch[0],s=this._state,l=this._velocity,c=this.dimension;if(i>=r-1)for(var u=s.length-1,h=(e[r-1],0);h<c;++h,--u)o[h]=l[u];else{u=c*(i+1)-1;var f=e[i],p=e[i+1]-f||1,d=this._scratch[1],g=this._scratch[2],v=this._scratch[3],m=this._scratch[4],y=!0;for(h=0;h<c;++h,--u)d[h]=s[u],v[h]=l[u]*p,g[h]=s[u+c],m[h]=l[u+c]*p,y=y&&d[h]===g[h]&&v[h]===m[h]&&0===v[h];if(y)for(h=0;h<c;++h)o[h]=0;else{n.derivative(d,v,g,m,(t-f)/p,o);for(h=0;h<c;++h)o[h]/=p}}return o},s.lastT=function(){var t=this._time;return t[t.length-1]},s.stable=function(){for(var t=this._velocity,e=t.length,r=this.dimension-1;r>=0;--r)if(t[--e])return!1;return!0},s.jump=function(t){var e=this.lastT(),r=this.dimension;if(!(t<e||arguments.length!==r+1)){var n=this._state,a=this._velocity,o=n.length-this.dimension,s=this.bounds,l=s[0],c=s[1];this._time.push(e,t);for(var u=0;u<2;++u)for(var h=0;h<r;++h)n.push(n[o++]),a.push(0);this._time.push(t);for(h=r;h>0;--h)n.push(i(l[h-1],c[h-1],arguments[h])),a.push(0)}},s.push=function(t){var e=this.lastT(),r=this.dimension;if(!(t<e||arguments.length!==r+1)){var n=this._state,a=this._velocity,o=n.length-this.dimension,s=t-e,l=this.bounds,c=l[0],u=l[1],h=s>1e-6?1/s:0;this._time.push(t);for(var f=r;f>0;--f){var p=i(c[f-1],u[f-1],arguments[f]);n.push(p),a.push((p-n[o++])*h)}}},s.set=function(t){var e=this.dimension;if(!(t<this.lastT()||arguments.length!==e+1)){var r=this._state,n=this._velocity,a=this.bounds,o=a[0],s=a[1];this._time.push(t);for(var l=e;l>0;--l)r.push(i(o[l-1],s[l-1],arguments[l])),n.push(0)}},s.move=function(t){var e=this.lastT(),r=this.dimension;if(!(t<=e||arguments.length!==r+1)){var n=this._state,a=this._velocity,o=n.length-this.dimension,s=this.bounds,l=s[0],c=s[1],u=t-e,h=u>1e-6?1/u:0;this._time.push(t);for(var f=r;f>0;--f){var p=arguments[f];n.push(i(l[f-1],c[f-1],n[o++]+p)),a.push(p*h)}}},s.idle=function(t){var e=this.lastT();if(!(t<e)){var r=this.dimension,n=this._state,a=this._velocity,o=n.length-r,s=this.bounds,l=s[0],c=s[1],u=t-e;this._time.push(t);for(var h=r-1;h>=0;--h)n.push(i(l[h],c[h],n[o]+u*a[o])),a.push(0),o+=1}}},{\"binary-search-bounds\":92,\"cubic-hermite\":146}],228:[function(t,e,r){var n=t(\"dtype\");e.exports=function(t,e,r){if(!t)throw new TypeError(\"must specify data as first parameter\");if(r=0|+(r||0),Array.isArray(t)&&t[0]&&\"number\"==typeof t[0][0]){var a,i,o,s,l=t[0].length,c=t.length*l;e&&\"string\"!=typeof e||(e=new(n(e||\"float32\"))(c+r));var u=e.length-r;if(c!==u)throw new Error(\"source length \"+c+\" (\"+l+\"x\"+t.length+\") does not match destination length \"+u);for(a=0,o=r;a<t.length;a++)for(i=0;i<l;i++)e[o++]=null===t[a][i]?NaN:t[a][i]}else if(e&&\"string\"!=typeof e)e.set(t,r);else{var h=n(e||\"float32\");if(Array.isArray(t)||\"array\"===e)for(e=new h(t.length+r),a=0,o=r,s=e.length;o<s;o++,a++)e[o]=null===t[a]?NaN:t[a];else 0===r?e=new h(t):(e=new h(t.length+r)).set(t,r)}return e}},{dtype:170}],229:[function(t,e,r){\"use strict\";var n=t(\"css-font/stringify\"),a=[32,126];e.exports=function(t){var e=(t=t||{}).shape?t.shape:t.canvas?[t.canvas.width,t.canvas.height]:[512,512],r=t.canvas||document.createElement(\"canvas\"),i=t.font,o=\"number\"==typeof t.step?[t.step,t.step]:t.step||[32,32],s=t.chars||a;i&&\"string\"!=typeof i&&(i=n(i));if(Array.isArray(s)){if(2===s.length&&\"number\"==typeof s[0]&&\"number\"==typeof s[1]){for(var l=[],c=s[0],u=0;c<=s[1];c++)l[u++]=String.fromCharCode(c);s=l}}else s=String(s).split(\"\");e=e.slice(),r.width=e[0],r.height=e[1];var h=r.getContext(\"2d\");h.fillStyle=\"#000\",h.fillRect(0,0,r.width,r.height),h.font=i,h.textAlign=\"center\",h.textBaseline=\"middle\",h.fillStyle=\"#fff\";for(var f=o[0]/2,p=o[1]/2,c=0;c<s.length;c++)h.fillText(s[c],f,p),(f+=o[0])>e[0]-o[0]/2&&(f=o[0]/2,p+=o[1]);return r}},{\"css-font/stringify\":143}],230:[function(t,e,r){\"use strict\";function n(t,e){e||(e={}),(\"string\"==typeof t||Array.isArray(t))&&(e.family=t);var r=Array.isArray(e.family)?e.family.join(\", \"):e.family;if(!r)throw Error(\"`family` must be defined\");var s=e.size||e.fontSize||e.em||48,l=e.weight||e.fontWeight||\"\",c=(t=[e.style||e.fontStyle||\"\",l,s].join(\" \")+\"px \"+r,e.origin||\"top\");if(n.cache[r]&&s<=n.cache[r].em)return a(n.cache[r],c);var u=e.canvas||n.canvas,h=u.getContext(\"2d\"),f={upper:void 0!==e.upper?e.upper:\"H\",lower:void 0!==e.lower?e.lower:\"x\",descent:void 0!==e.descent?e.descent:\"p\",ascent:void 0!==e.ascent?e.ascent:\"h\",tittle:void 0!==e.tittle?e.tittle:\"i\",overshoot:void 0!==e.overshoot?e.overshoot:\"O\"},p=Math.ceil(1.5*s);u.height=p,u.width=.5*p,h.font=t;var d={top:0};h.clearRect(0,0,p,p),h.textBaseline=\"top\",h.fillStyle=\"black\",h.fillText(\"H\",0,0);var g=i(h.getImageData(0,0,p,p));h.clearRect(0,0,p,p),h.textBaseline=\"bottom\",h.fillText(\"H\",0,p);var v=i(h.getImageData(0,0,p,p));d.lineHeight=d.bottom=p-v+g,h.clearRect(0,0,p,p),h.textBaseline=\"alphabetic\",h.fillText(\"H\",0,p);var m=p-i(h.getImageData(0,0,p,p))-1+g;d.baseline=d.alphabetic=m,h.clearRect(0,0,p,p),h.textBaseline=\"middle\",h.fillText(\"H\",0,.5*p);var y=i(h.getImageData(0,0,p,p));d.median=d.middle=p-y-1+g-.5*p,h.clearRect(0,0,p,p),h.textBaseline=\"hanging\",h.fillText(\"H\",0,.5*p);var x=i(h.getImageData(0,0,p,p));d.hanging=p-x-1+g-.5*p,h.clearRect(0,0,p,p),h.textBaseline=\"ideographic\",h.fillText(\"H\",0,p);var b=i(h.getImageData(0,0,p,p));if(d.ideographic=p-b-1+g,f.upper&&(h.clearRect(0,0,p,p),h.textBaseline=\"top\",h.fillText(f.upper,0,0),d.upper=i(h.getImageData(0,0,p,p)),d.capHeight=d.baseline-d.upper),f.lower&&(h.clearRect(0,0,p,p),h.textBaseline=\"top\",h.fillText(f.lower,0,0),d.lower=i(h.getImageData(0,0,p,p)),d.xHeight=d.baseline-d.lower),f.tittle&&(h.clearRect(0,0,p,p),h.textBaseline=\"top\",h.fillText(f.tittle,0,0),d.tittle=i(h.getImageData(0,0,p,p))),f.ascent&&(h.clearRect(0,0,p,p),h.textBaseline=\"top\",h.fillText(f.ascent,0,0),d.ascent=i(h.getImageData(0,0,p,p))),f.descent&&(h.clearRect(0,0,p,p),h.textBaseline=\"top\",h.fillText(f.descent,0,0),d.descent=o(h.getImageData(0,0,p,p))),f.overshoot){h.clearRect(0,0,p,p),h.textBaseline=\"top\",h.fillText(f.overshoot,0,0);var _=o(h.getImageData(0,0,p,p));d.overshoot=_-m}for(var w in d)d[w]/=s;return d.em=s,n.cache[r]=d,a(d,c)}function a(t,e){var r={};for(var n in\"string\"==typeof e&&(e=t[e]),t)\"em\"!==n&&(r[n]=t[n]-e);return r}function i(t){for(var e=t.height,r=t.data,n=3;n<r.length;n+=4)if(0!==r[n])return Math.floor(.25*(n-3)/e)}function o(t){for(var e=t.height,r=t.data,n=r.length-1;n>0;n-=4)if(0!==r[n])return Math.floor(.25*(n-3)/e)}e.exports=n,n.canvas=document.createElement(\"canvas\"),n.cache={}},{}],231:[function(t,e,r){\"use strict\";e.exports=function(t){return new c(t||d,null)};var n=0,a=1;function i(t,e,r,n,a,i){this._color=t,this.key=e,this.value=r,this.left=n,this.right=a,this._count=i}function o(t){return new i(t._color,t.key,t.value,t.left,t.right,t._count)}function s(t,e){return new i(t,e.key,e.value,e.left,e.right,e._count)}function l(t){t._count=1+(t.left?t.left._count:0)+(t.right?t.right._count:0)}function c(t,e){this._compare=t,this.root=e}var u=c.prototype;function h(t,e){this.tree=t,this._stack=e}Object.defineProperty(u,\"keys\",{get:function(){var t=[];return this.forEach(function(e,r){t.push(e)}),t}}),Object.defineProperty(u,\"values\",{get:function(){var t=[];return this.forEach(function(e,r){t.push(r)}),t}}),Object.defineProperty(u,\"length\",{get:function(){return this.root?this.root._count:0}}),u.insert=function(t,e){for(var r=this._compare,o=this.root,u=[],h=[];o;){var f=r(t,o.key);u.push(o),h.push(f),o=f<=0?o.left:o.right}u.push(new i(n,t,e,null,null,1));for(var p=u.length-2;p>=0;--p){o=u[p];h[p]<=0?u[p]=new i(o._color,o.key,o.value,u[p+1],o.right,o._count+1):u[p]=new i(o._color,o.key,o.value,o.left,u[p+1],o._count+1)}for(p=u.length-1;p>1;--p){var d=u[p-1];o=u[p];if(d._color===a||o._color===a)break;var g=u[p-2];if(g.left===d)if(d.left===o){if(!(v=g.right)||v._color!==n){if(g._color=n,g.left=d.right,d._color=a,d.right=g,u[p-2]=d,u[p-1]=o,l(g),l(d),p>=3)(m=u[p-3]).left===g?m.left=d:m.right=d;break}d._color=a,g.right=s(a,v),g._color=n,p-=1}else{if(!(v=g.right)||v._color!==n){if(d.right=o.left,g._color=n,g.left=o.right,o._color=a,o.left=d,o.right=g,u[p-2]=o,u[p-1]=d,l(g),l(d),l(o),p>=3)(m=u[p-3]).left===g?m.left=o:m.right=o;break}d._color=a,g.right=s(a,v),g._color=n,p-=1}else if(d.right===o){if(!(v=g.left)||v._color!==n){if(g._color=n,g.right=d.left,d._color=a,d.left=g,u[p-2]=d,u[p-1]=o,l(g),l(d),p>=3)(m=u[p-3]).right===g?m.right=d:m.left=d;break}d._color=a,g.left=s(a,v),g._color=n,p-=1}else{var v;if(!(v=g.left)||v._color!==n){var m;if(d.left=o.right,g._color=n,g.right=o.left,o._color=a,o.right=d,o.left=g,u[p-2]=o,u[p-1]=d,l(g),l(d),l(o),p>=3)(m=u[p-3]).right===g?m.right=o:m.left=o;break}d._color=a,g.left=s(a,v),g._color=n,p-=1}}return u[0]._color=a,new c(r,u[0])},u.forEach=function(t,e,r){if(this.root)switch(arguments.length){case 1:return function t(e,r){var n;if(r.left&&(n=t(e,r.left)))return n;return(n=e(r.key,r.value))||(r.right?t(e,r.right):void 0)}(t,this.root);case 2:return function t(e,r,n,a){if(r(e,a.key)<=0){var i;if(a.left&&(i=t(e,r,n,a.left)))return i;if(i=n(a.key,a.value))return i}if(a.right)return t(e,r,n,a.right)}(e,this._compare,t,this.root);case 3:if(this._compare(e,r)>=0)return;return function t(e,r,n,a,i){var o,s=n(e,i.key),l=n(r,i.key);if(s<=0){if(i.left&&(o=t(e,r,n,a,i.left)))return o;if(l>0&&(o=a(i.key,i.value)))return o}if(l>0&&i.right)return t(e,r,n,a,i.right)}(e,r,this._compare,t,this.root)}},Object.defineProperty(u,\"begin\",{get:function(){for(var t=[],e=this.root;e;)t.push(e),e=e.left;return new h(this,t)}}),Object.defineProperty(u,\"end\",{get:function(){for(var t=[],e=this.root;e;)t.push(e),e=e.right;return new h(this,t)}}),u.at=function(t){if(t<0)return new h(this,[]);for(var e=this.root,r=[];;){if(r.push(e),e.left){if(t<e.left._count){e=e.left;continue}t-=e.left._count}if(!t)return new h(this,r);if(t-=1,!e.right)break;if(t>=e.right._count)break;e=e.right}return new h(this,[])},u.ge=function(t){for(var e=this._compare,r=this.root,n=[],a=0;r;){var i=e(t,r.key);n.push(r),i<=0&&(a=n.length),r=i<=0?r.left:r.right}return n.length=a,new h(this,n)},u.gt=function(t){for(var e=this._compare,r=this.root,n=[],a=0;r;){var i=e(t,r.key);n.push(r),i<0&&(a=n.length),r=i<0?r.left:r.right}return n.length=a,new h(this,n)},u.lt=function(t){for(var e=this._compare,r=this.root,n=[],a=0;r;){var i=e(t,r.key);n.push(r),i>0&&(a=n.length),r=i<=0?r.left:r.right}return n.length=a,new h(this,n)},u.le=function(t){for(var e=this._compare,r=this.root,n=[],a=0;r;){var i=e(t,r.key);n.push(r),i>=0&&(a=n.length),r=i<0?r.left:r.right}return n.length=a,new h(this,n)},u.find=function(t){for(var e=this._compare,r=this.root,n=[];r;){var a=e(t,r.key);if(n.push(r),0===a)return new h(this,n);r=a<=0?r.left:r.right}return new h(this,[])},u.remove=function(t){var e=this.find(t);return e?e.remove():this},u.get=function(t){for(var e=this._compare,r=this.root;r;){var n=e(t,r.key);if(0===n)return r.value;r=n<=0?r.left:r.right}};var f=h.prototype;function p(t,e){t.key=e.key,t.value=e.value,t.left=e.left,t.right=e.right,t._color=e._color,t._count=e._count}function d(t,e){return t<e?-1:t>e?1:0}Object.defineProperty(f,\"valid\",{get:function(){return this._stack.length>0}}),Object.defineProperty(f,\"node\",{get:function(){return this._stack.length>0?this._stack[this._stack.length-1]:null},enumerable:!0}),f.clone=function(){return new h(this.tree,this._stack.slice())},f.remove=function(){var t=this._stack;if(0===t.length)return this.tree;var e=new Array(t.length),r=t[t.length-1];e[e.length-1]=new i(r._color,r.key,r.value,r.left,r.right,r._count);for(var u=t.length-2;u>=0;--u){(r=t[u]).left===t[u+1]?e[u]=new i(r._color,r.key,r.value,e[u+1],r.right,r._count):e[u]=new i(r._color,r.key,r.value,r.left,e[u+1],r._count)}if((r=e[e.length-1]).left&&r.right){var h=e.length;for(r=r.left;r.right;)e.push(r),r=r.right;var f=e[h-1];e.push(new i(r._color,f.key,f.value,r.left,r.right,r._count)),e[h-1].key=r.key,e[h-1].value=r.value;for(u=e.length-2;u>=h;--u)r=e[u],e[u]=new i(r._color,r.key,r.value,r.left,e[u+1],r._count);e[h-1].left=e[h]}if((r=e[e.length-1])._color===n){var d=e[e.length-2];d.left===r?d.left=null:d.right===r&&(d.right=null),e.pop();for(u=0;u<e.length;++u)e[u]._count--;return new c(this.tree._compare,e[0])}if(r.left||r.right){r.left?p(r,r.left):r.right&&p(r,r.right),r._color=a;for(u=0;u<e.length-1;++u)e[u]._count--;return new c(this.tree._compare,e[0])}if(1===e.length)return new c(this.tree._compare,null);for(u=0;u<e.length;++u)e[u]._count--;var g=e[e.length-2];return function(t){for(var e,r,i,c,u=t.length-1;u>=0;--u){if(e=t[u],0===u)return void(e._color=a);if((r=t[u-1]).left===e){if((i=r.right).right&&i.right._color===n)return c=(i=r.right=o(i)).right=o(i.right),r.right=i.left,i.left=r,i.right=c,i._color=r._color,e._color=a,r._color=a,c._color=a,l(r),l(i),u>1&&((h=t[u-2]).left===r?h.left=i:h.right=i),void(t[u-1]=i);if(i.left&&i.left._color===n)return c=(i=r.right=o(i)).left=o(i.left),r.right=c.left,i.left=c.right,c.left=r,c.right=i,c._color=r._color,r._color=a,i._color=a,e._color=a,l(r),l(i),l(c),u>1&&((h=t[u-2]).left===r?h.left=c:h.right=c),void(t[u-1]=c);if(i._color===a){if(r._color===n)return r._color=a,void(r.right=s(n,i));r.right=s(n,i);continue}i=o(i),r.right=i.left,i.left=r,i._color=r._color,r._color=n,l(r),l(i),u>1&&((h=t[u-2]).left===r?h.left=i:h.right=i),t[u-1]=i,t[u]=r,u+1<t.length?t[u+1]=e:t.push(e),u+=2}else{if((i=r.left).left&&i.left._color===n)return c=(i=r.left=o(i)).left=o(i.left),r.left=i.right,i.right=r,i.left=c,i._color=r._color,e._color=a,r._color=a,c._color=a,l(r),l(i),u>1&&((h=t[u-2]).right===r?h.right=i:h.left=i),void(t[u-1]=i);if(i.right&&i.right._color===n)return c=(i=r.left=o(i)).right=o(i.right),r.left=c.right,i.right=c.left,c.right=r,c.left=i,c._color=r._color,r._color=a,i._color=a,e._color=a,l(r),l(i),l(c),u>1&&((h=t[u-2]).right===r?h.right=c:h.left=c),void(t[u-1]=c);if(i._color===a){if(r._color===n)return r._color=a,void(r.left=s(n,i));r.left=s(n,i);continue}var h;i=o(i),r.left=i.right,i.right=r,i._color=r._color,r._color=n,l(r),l(i),u>1&&((h=t[u-2]).right===r?h.right=i:h.left=i),t[u-1]=i,t[u]=r,u+1<t.length?t[u+1]=e:t.push(e),u+=2}}}(e),g.left===r?g.left=null:g.right=null,new c(this.tree._compare,e[0])},Object.defineProperty(f,\"key\",{get:function(){if(this._stack.length>0)return this._stack[this._stack.length-1].key},enumerable:!0}),Object.defineProperty(f,\"value\",{get:function(){if(this._stack.length>0)return this._stack[this._stack.length-1].value},enumerable:!0}),Object.defineProperty(f,\"index\",{get:function(){var t=0,e=this._stack;if(0===e.length){var r=this.tree.root;return r?r._count:0}e[e.length-1].left&&(t=e[e.length-1].left._count);for(var n=e.length-2;n>=0;--n)e[n+1]===e[n].right&&(++t,e[n].left&&(t+=e[n].left._count));return t},enumerable:!0}),f.next=function(){var t=this._stack;if(0!==t.length){var e=t[t.length-1];if(e.right)for(e=e.right;e;)t.push(e),e=e.left;else for(t.pop();t.length>0&&t[t.length-1].right===e;)e=t[t.length-1],t.pop()}},Object.defineProperty(f,\"hasNext\",{get:function(){var t=this._stack;if(0===t.length)return!1;if(t[t.length-1].right)return!0;for(var e=t.length-1;e>0;--e)if(t[e-1].left===t[e])return!0;return!1}}),f.update=function(t){var e=this._stack;if(0===e.length)throw new Error(\"Can't update empty node!\");var r=new Array(e.length),n=e[e.length-1];r[r.length-1]=new i(n._color,n.key,t,n.left,n.right,n._count);for(var a=e.length-2;a>=0;--a)(n=e[a]).left===e[a+1]?r[a]=new i(n._color,n.key,n.value,r[a+1],n.right,n._count):r[a]=new i(n._color,n.key,n.value,n.left,r[a+1],n._count);return new c(this.tree._compare,r[0])},f.prev=function(){var t=this._stack;if(0!==t.length){var e=t[t.length-1];if(e.left)for(e=e.left;e;)t.push(e),e=e.right;else for(t.pop();t.length>0&&t[t.length-1].left===e;)e=t[t.length-1],t.pop()}},Object.defineProperty(f,\"hasPrev\",{get:function(){var t=this._stack;if(0===t.length)return!1;if(t[t.length-1].left)return!0;for(var e=t.length-1;e>0;--e)if(t[e-1].right===t[e])return!0;return!1}})},{}],232:[function(t,e,r){var n=[.9999999999998099,676.5203681218851,-1259.1392167224028,771.3234287776531,-176.6150291621406,12.507343278686905,-.13857109526572012,9984369578019572e-21,1.5056327351493116e-7],a=607/128,i=[.9999999999999971,57.15623566586292,-59.59796035547549,14.136097974741746,-.4919138160976202,3399464998481189e-20,4652362892704858e-20,-9837447530487956e-20,.0001580887032249125,-.00021026444172410488,.00021743961811521265,-.0001643181065367639,8441822398385275e-20,-26190838401581408e-21,36899182659531625e-22];function o(t){if(t<0)return Number(\"0/0\");for(var e=i[0],r=i.length-1;r>0;--r)e+=i[r]/(t+r);var n=t+a+.5;return.5*Math.log(2*Math.PI)+(t+.5)*Math.log(n)-n+Math.log(e)-Math.log(t)}e.exports=function t(e){if(e<.5)return Math.PI/(Math.sin(Math.PI*e)*t(1-e));if(e>100)return Math.exp(o(e));e-=1;for(var r=n[0],a=1;a<9;a++)r+=n[a]/(e+a);var i=e+7+.5;return Math.sqrt(2*Math.PI)*Math.pow(i,e+.5)*Math.exp(-i)*r},e.exports.log=o},{}],233:[function(t,e,r){e.exports=function(t,e){if(\"string\"!=typeof t)throw new TypeError(\"must specify type string\");if(e=e||{},\"undefined\"==typeof document&&!e.canvas)return null;var r=e.canvas||document.createElement(\"canvas\");\"number\"==typeof e.width&&(r.width=e.width);\"number\"==typeof e.height&&(r.height=e.height);var n,a=e;try{var i=[t];0===t.indexOf(\"webgl\")&&i.push(\"experimental-\"+t);for(var o=0;o<i.length;o++)if(n=r.getContext(i[o],a))return n}catch(t){n=null}return n||null}},{}],234:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=new u(t);return r.update(e),r};var n=t(\"./lib/text.js\"),a=t(\"./lib/lines.js\"),i=t(\"./lib/background.js\"),o=t(\"./lib/cube.js\"),s=t(\"./lib/ticks.js\"),l=new Float32Array([1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]);function c(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t}function u(t){this.gl=t,this.pixelRatio=1,this.bounds=[[-10,-10,-10],[10,10,10]],this.ticks=[[],[],[]],this.autoTicks=!0,this.tickSpacing=[1,1,1],this.tickEnable=[!0,!0,!0],this.tickFont=[\"sans-serif\",\"sans-serif\",\"sans-serif\"],this.tickSize=[12,12,12],this.tickAngle=[0,0,0],this.tickAlign=[\"auto\",\"auto\",\"auto\"],this.tickColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.tickPad=[10,10,10],this.lastCubeProps={cubeEdges:[0,0,0],axis:[0,0,0]},this.labels=[\"x\",\"y\",\"z\"],this.labelEnable=[!0,!0,!0],this.labelFont=\"sans-serif\",this.labelSize=[20,20,20],this.labelAngle=[0,0,0],this.labelAlign=[\"auto\",\"auto\",\"auto\"],this.labelColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.labelPad=[10,10,10],this.lineEnable=[!0,!0,!0],this.lineMirror=[!1,!1,!1],this.lineWidth=[1,1,1],this.lineColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.lineTickEnable=[!0,!0,!0],this.lineTickMirror=[!1,!1,!1],this.lineTickLength=[0,0,0],this.lineTickWidth=[1,1,1],this.lineTickColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.gridEnable=[!0,!0,!0],this.gridWidth=[1,1,1],this.gridColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.zeroEnable=[!0,!0,!0],this.zeroLineColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.zeroLineWidth=[2,2,2],this.backgroundEnable=[!1,!1,!1],this.backgroundColor=[[.8,.8,.8,.5],[.8,.8,.8,.5],[.8,.8,.8,.5]],this._firstInit=!0,this._text=null,this._lines=null,this._background=i(t)}var h=u.prototype;function f(){this.primalOffset=[0,0,0],this.primalMinor=[0,0,0],this.mirrorOffset=[0,0,0],this.mirrorMinor=[0,0,0]}h.update=function(t){function e(e,r,n){if(n in t){var a,i=t[n],o=this[n];(e?Array.isArray(i)&&Array.isArray(i[0]):Array.isArray(i))?this[n]=a=[r(i[0]),r(i[1]),r(i[2])]:this[n]=a=[r(i),r(i),r(i)];for(var s=0;s<3;++s)if(a[s]!==o[s])return!0}return!1}t=t||{};var r,i=e.bind(this,!1,Number),o=e.bind(this,!1,Boolean),l=e.bind(this,!1,String),c=e.bind(this,!0,function(t){if(Array.isArray(t)){if(3===t.length)return[+t[0],+t[1],+t[2],1];if(4===t.length)return[+t[0],+t[1],+t[2],+t[3]]}return[0,0,0,1]}),u=!1,h=!1;if(\"bounds\"in t)for(var f=t.bounds,p=0;p<2;++p)for(var d=0;d<3;++d)f[p][d]!==this.bounds[p][d]&&(h=!0),this.bounds[p][d]=f[p][d];if(\"ticks\"in t){r=t.ticks,u=!0,this.autoTicks=!1;for(p=0;p<3;++p)this.tickSpacing[p]=0}else i(\"tickSpacing\")&&(this.autoTicks=!0,h=!0);if(this._firstInit&&(\"ticks\"in t||\"tickSpacing\"in t||(this.autoTicks=!0),h=!0,u=!0,this._firstInit=!1),h&&this.autoTicks&&(r=s.create(this.bounds,this.tickSpacing),u=!0),u){for(p=0;p<3;++p)r[p].sort(function(t,e){return t.x-e.x});s.equal(r,this.ticks)?u=!1:this.ticks=r}o(\"tickEnable\"),l(\"tickFont\")&&(u=!0),i(\"tickSize\"),i(\"tickAngle\"),i(\"tickPad\"),c(\"tickColor\");var g=l(\"labels\");l(\"labelFont\")&&(g=!0),o(\"labelEnable\"),i(\"labelSize\"),i(\"labelPad\"),c(\"labelColor\"),o(\"lineEnable\"),o(\"lineMirror\"),i(\"lineWidth\"),c(\"lineColor\"),o(\"lineTickEnable\"),o(\"lineTickMirror\"),i(\"lineTickLength\"),i(\"lineTickWidth\"),c(\"lineTickColor\"),o(\"gridEnable\"),i(\"gridWidth\"),c(\"gridColor\"),o(\"zeroEnable\"),c(\"zeroLineColor\"),i(\"zeroLineWidth\"),o(\"backgroundEnable\"),c(\"backgroundColor\"),this._text?this._text&&(g||u)&&this._text.update(this.bounds,this.labels,this.labelFont,this.ticks,this.tickFont):this._text=n(this.gl,this.bounds,this.labels,this.labelFont,this.ticks,this.tickFont),this._lines&&u&&(this._lines.dispose(),this._lines=null),this._lines||(this._lines=a(this.gl,this.bounds,this.ticks))};var p=[new f,new f,new f];function d(t,e,r,n,a){for(var i=t.primalOffset,o=t.primalMinor,s=t.mirrorOffset,l=t.mirrorMinor,c=n[e],u=0;u<3;++u)if(e!==u){var h=i,f=s,p=o,d=l;c&1<<u&&(h=s,f=i,p=l,d=o),h[u]=r[0][u],f[u]=r[1][u],a[u]>0?(p[u]=-1,d[u]=0):(p[u]=0,d[u]=1)}}var g=[0,0,0],v={model:l,view:l,projection:l,_ortho:!1};h.isOpaque=function(){return!0},h.isTransparent=function(){return!1},h.drawTransparent=function(t){};var m=[0,0,0],y=[0,0,0],x=[0,0,0];h.draw=function(t){t=t||v;for(var e=this.gl,r=t.model||l,n=t.view||l,a=t.projection||l,i=this.bounds,s=t._ortho||!1,u=o(r,n,a,i,s),h=u.cubeEdges,f=u.axis,b=n[12],_=n[13],w=n[14],k=n[15],T=(s?2:1)*this.pixelRatio*(a[3]*b+a[7]*_+a[11]*w+a[15]*k)/e.drawingBufferHeight,A=0;A<3;++A)this.lastCubeProps.cubeEdges[A]=h[A],this.lastCubeProps.axis[A]=f[A];var M=p;for(A=0;A<3;++A)d(p[A],A,this.bounds,h,f);e=this.gl;var S,E=g;for(A=0;A<3;++A)this.backgroundEnable[A]?E[A]=f[A]:E[A]=0;this._background.draw(r,n,a,i,E,this.backgroundColor),this._lines.bind(r,n,a,this);for(A=0;A<3;++A){var C=[0,0,0];f[A]>0?C[A]=i[1][A]:C[A]=i[0][A];for(var L=0;L<2;++L){var P=(A+1+L)%3,O=(A+1+(1^L))%3;this.gridEnable[P]&&this._lines.drawGrid(P,O,this.bounds,C,this.gridColor[P],this.gridWidth[P]*this.pixelRatio)}for(L=0;L<2;++L){P=(A+1+L)%3,O=(A+1+(1^L))%3;this.zeroEnable[O]&&Math.min(i[0][O],i[1][O])<=0&&Math.max(i[0][O],i[1][O])>=0&&this._lines.drawZero(P,O,this.bounds,C,this.zeroLineColor[O],this.zeroLineWidth[O]*this.pixelRatio)}}for(A=0;A<3;++A){this.lineEnable[A]&&this._lines.drawAxisLine(A,this.bounds,M[A].primalOffset,this.lineColor[A],this.lineWidth[A]*this.pixelRatio),this.lineMirror[A]&&this._lines.drawAxisLine(A,this.bounds,M[A].mirrorOffset,this.lineColor[A],this.lineWidth[A]*this.pixelRatio);var I=c(m,M[A].primalMinor),z=c(y,M[A].mirrorMinor),D=this.lineTickLength;for(L=0;L<3;++L){var R=T/r[5*L];I[L]*=D[L]*R,z[L]*=D[L]*R}this.lineTickEnable[A]&&this._lines.drawAxisTicks(A,M[A].primalOffset,I,this.lineTickColor[A],this.lineTickWidth[A]*this.pixelRatio),this.lineTickMirror[A]&&this._lines.drawAxisTicks(A,M[A].mirrorOffset,z,this.lineTickColor[A],this.lineTickWidth[A]*this.pixelRatio)}this._lines.unbind(),this._text.bind(r,n,a,this.pixelRatio);var F,B;function N(t){(B=[0,0,0])[t]=1}function j(t,e,r){var n=(t+1)%3,a=(t+2)%3,i=e[n],o=e[a],s=r[n],l=r[a];i>0&&l>0?N(n):i>0&&l<0?N(n):i<0&&l>0?N(n):i<0&&l<0?N(n):o>0&&s>0?N(a):o>0&&s<0?N(a):o<0&&s>0?N(a):o<0&&s<0&&N(a)}for(A=0;A<3;++A){var V=M[A].primalMinor,U=M[A].mirrorMinor,q=c(x,M[A].primalOffset);for(L=0;L<3;++L)this.lineTickEnable[A]&&(q[L]+=T*V[L]*Math.max(this.lineTickLength[L],0)/r[5*L]);var H=[0,0,0];if(H[A]=1,this.tickEnable[A]){-3600===this.tickAngle[A]?(this.tickAngle[A]=0,this.tickAlign[A]=\"auto\"):this.tickAlign[A]=-1,F=1,\"auto\"===(S=[this.tickAlign[A],.5,F])[0]?S[0]=0:S[0]=parseInt(\"\"+S[0]),B=[0,0,0],j(A,V,U);for(L=0;L<3;++L)q[L]+=T*V[L]*this.tickPad[L]/r[5*L];this._text.drawTicks(A,this.tickSize[A],this.tickAngle[A],q,this.tickColor[A],H,B,S)}if(this.labelEnable[A]){F=0,B=[0,0,0],this.labels[A].length>4&&(N(A),F=1),\"auto\"===(S=[this.labelAlign[A],.5,F])[0]?S[0]=0:S[0]=parseInt(\"\"+S[0]);for(L=0;L<3;++L)q[L]+=T*V[L]*this.labelPad[L]/r[5*L];q[A]+=.5*(i[0][A]+i[1][A]),this._text.drawLabel(A,this.labelSize[A],this.labelAngle[A],q,this.labelColor[A],[0,0,0],B,S)}}this._text.unbind()},h.dispose=function(){this._text.dispose(),this._lines.dispose(),this._background.dispose(),this._lines=null,this._text=null,this._background=null,this.gl=null}},{\"./lib/background.js\":235,\"./lib/cube.js\":236,\"./lib/lines.js\":237,\"./lib/text.js\":239,\"./lib/ticks.js\":240}],235:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=[],r=[],s=0,l=0;l<3;++l)for(var c=(l+1)%3,u=(l+2)%3,h=[0,0,0],f=[0,0,0],p=-1;p<=1;p+=2){r.push(s,s+2,s+1,s+1,s+2,s+3),h[l]=p,f[l]=p;for(var d=-1;d<=1;d+=2){h[c]=d;for(var g=-1;g<=1;g+=2)h[u]=g,e.push(h[0],h[1],h[2],f[0],f[1],f[2]),s+=1}var v=c;c=u,u=v}var m=n(t,new Float32Array(e)),y=n(t,new Uint16Array(r),t.ELEMENT_ARRAY_BUFFER),x=a(t,[{buffer:m,type:t.FLOAT,size:3,offset:0,stride:24},{buffer:m,type:t.FLOAT,size:3,offset:12,stride:24}],y),b=i(t);return b.attributes.position.location=0,b.attributes.normal.location=1,new o(t,m,x,b)};var n=t(\"gl-buffer\"),a=t(\"gl-vao\"),i=t(\"./shaders\").bg;function o(t,e,r,n){this.gl=t,this.buffer=e,this.vao=r,this.shader=n}var s=o.prototype;s.draw=function(t,e,r,n,a,i){for(var o=!1,s=0;s<3;++s)o=o||a[s];if(o){var l=this.gl;l.enable(l.POLYGON_OFFSET_FILL),l.polygonOffset(1,2),this.shader.bind(),this.shader.uniforms={model:t,view:e,projection:r,bounds:n,enable:a,colors:i},this.vao.bind(),this.vao.draw(this.gl.TRIANGLES,36),this.vao.unbind(),l.disable(l.POLYGON_OFFSET_FILL)}},s.dispose=function(){this.vao.dispose(),this.buffer.dispose(),this.shader.dispose()}},{\"./shaders\":238,\"gl-buffer\":242,\"gl-vao\":328}],236:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,i,p){a(s,e,t),a(s,r,s);for(var y=0,x=0;x<2;++x){u[2]=i[x][2];for(var b=0;b<2;++b){u[1]=i[b][1];for(var _=0;_<2;++_)u[0]=i[_][0],f(l[y],u,s),y+=1}}for(var w=-1,x=0;x<8;++x){for(var k=l[x][3],T=0;T<3;++T)c[x][T]=l[x][T]/k;p&&(c[x][2]*=-1),k<0&&(w<0?w=x:c[x][2]<c[w][2]&&(w=x))}if(w<0){w=0;for(var A=0;A<3;++A){for(var M=(A+2)%3,S=(A+1)%3,E=-1,C=-1,L=0;L<2;++L){var P=L<<A,O=P+(L<<M)+(1-L<<S),I=P+(1-L<<M)+(L<<S);o(c[P],c[O],c[I],h)<0||(L?E=1:C=1)}if(E<0||C<0)C>E&&(w|=1<<A);else{for(var L=0;L<2;++L){var P=L<<A,O=P+(L<<M)+(1-L<<S),I=P+(1-L<<M)+(L<<S),z=d([l[P],l[O],l[I],l[P+(1<<M)+(1<<S)]]);L?E=z:C=z}C>E&&(w|=1<<A)}}}for(var D=7^w,R=-1,x=0;x<8;++x)x!==w&&x!==D&&(R<0?R=x:c[R][1]>c[x][1]&&(R=x));for(var F=-1,x=0;x<3;++x){var B=R^1<<x;if(B!==w&&B!==D){F<0&&(F=B);var S=c[B];S[0]<c[F][0]&&(F=B)}}for(var N=-1,x=0;x<3;++x){var B=R^1<<x;if(B!==w&&B!==D&&B!==F){N<0&&(N=B);var S=c[B];S[0]>c[N][0]&&(N=B)}}var j=g;j[0]=j[1]=j[2]=0,j[n.log2(F^R)]=R&F,j[n.log2(R^N)]=R&N;var V=7^N;V===w||V===D?(V=7^F,j[n.log2(N^V)]=V&N):j[n.log2(F^V)]=V&F;for(var U=v,q=w,A=0;A<3;++A)U[A]=q&1<<A?-1:1;return m};var n=t(\"bit-twiddle\"),a=t(\"gl-mat4/multiply\"),i=t(\"split-polygon\"),o=t(\"robust-orientation\"),s=new Array(16),l=new Array(8),c=new Array(8),u=new Array(3),h=[0,0,0];function f(t,e,r){for(var n=0;n<4;++n){t[n]=r[12+n];for(var a=0;a<3;++a)t[n]+=e[a]*r[4*a+n]}}!function(){for(var t=0;t<8;++t)l[t]=[1,1,1,1],c[t]=[1,1,1]}();var p=[[0,0,1,0,0],[0,0,-1,1,0],[0,-1,0,1,0],[0,1,0,1,0],[-1,0,0,1,0],[1,0,0,1,0]];function d(t){for(var e=0;e<p.length;++e)if((t=i.positive(t,p[e])).length<3)return 0;var r=t[0],n=r[0]/r[3],a=r[1]/r[3],o=0;for(e=1;e+1<t.length;++e){var s=t[e],l=t[e+1],c=s[0]/s[3]-n,u=s[1]/s[3]-a,h=l[0]/l[3]-n,f=l[1]/l[3]-a;o+=Math.abs(c*f-u*h)}return o}var g=[1,1,1],v=[0,0,0],m={cubeEdges:g,axis:v}},{\"bit-twiddle\":93,\"gl-mat4/multiply\":268,\"robust-orientation\":511,\"split-polygon\":528}],237:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){var o=[],s=[0,0,0],l=[0,0,0],c=[0,0,0],u=[0,0,0];o.push(0,0,1,0,1,1,0,0,-1,0,0,-1,0,1,1,0,1,-1);for(var h=0;h<3;++h){for(var f=o.length/3|0,d=0;d<r[h].length;++d){var g=+r[h][d].x;o.push(g,0,1,g,1,1,g,0,-1,g,0,-1,g,1,1,g,1,-1)}var v=o.length/3|0;s[h]=f,l[h]=v-f;for(var f=o.length/3|0,m=0;m<r[h].length;++m){var g=+r[h][m].x;o.push(g,0,1,g,1,1,g,0,-1,g,0,-1,g,1,1,g,1,-1)}var v=o.length/3|0;c[h]=f,u[h]=v-f}var y=n(t,new Float32Array(o)),x=a(t,[{buffer:y,type:t.FLOAT,size:3,stride:0,offset:0}]),b=i(t);return b.attributes.position.location=0,new p(t,y,x,b,l,s,u,c)};var n=t(\"gl-buffer\"),a=t(\"gl-vao\"),i=t(\"./shaders\").line,o=[0,0,0],s=[0,0,0],l=[0,0,0],c=[0,0,0],u=[1,1];function h(t){return t[0]=t[1]=t[2]=0,t}function f(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t}function p(t,e,r,n,a,i,o,s){this.gl=t,this.vertBuffer=e,this.vao=r,this.shader=n,this.tickCount=a,this.tickOffset=i,this.gridCount=o,this.gridOffset=s}var d=p.prototype;d.bind=function(t,e,r){this.shader.bind(),this.shader.uniforms.model=t,this.shader.uniforms.view=e,this.shader.uniforms.projection=r,u[0]=this.gl.drawingBufferWidth,u[1]=this.gl.drawingBufferHeight,this.shader.uniforms.screenShape=u,this.vao.bind()},d.unbind=function(){this.vao.unbind()},d.drawAxisLine=function(t,e,r,n,a){var i=h(s);this.shader.uniforms.majorAxis=s,i[t]=e[1][t]-e[0][t],this.shader.uniforms.minorAxis=i;var o,u=f(c,r);u[t]+=e[0][t],this.shader.uniforms.offset=u,this.shader.uniforms.lineWidth=a,this.shader.uniforms.color=n,(o=h(l))[(t+2)%3]=1,this.shader.uniforms.screenAxis=o,this.vao.draw(this.gl.TRIANGLES,6),(o=h(l))[(t+1)%3]=1,this.shader.uniforms.screenAxis=o,this.vao.draw(this.gl.TRIANGLES,6)},d.drawAxisTicks=function(t,e,r,n,a){if(this.tickCount[t]){var i=h(o);i[t]=1,this.shader.uniforms.majorAxis=i,this.shader.uniforms.offset=e,this.shader.uniforms.minorAxis=r,this.shader.uniforms.color=n,this.shader.uniforms.lineWidth=a;var s=h(l);s[t]=1,this.shader.uniforms.screenAxis=s,this.vao.draw(this.gl.TRIANGLES,this.tickCount[t],this.tickOffset[t])}},d.drawGrid=function(t,e,r,n,a,i){if(this.gridCount[t]){var u=h(s);u[e]=r[1][e]-r[0][e],this.shader.uniforms.minorAxis=u;var p=f(c,n);p[e]+=r[0][e],this.shader.uniforms.offset=p;var d=h(o);d[t]=1,this.shader.uniforms.majorAxis=d;var g=h(l);g[t]=1,this.shader.uniforms.screenAxis=g,this.shader.uniforms.lineWidth=i,this.shader.uniforms.color=a,this.vao.draw(this.gl.TRIANGLES,this.gridCount[t],this.gridOffset[t])}},d.drawZero=function(t,e,r,n,a,i){var o=h(s);this.shader.uniforms.majorAxis=o,o[t]=r[1][t]-r[0][t],this.shader.uniforms.minorAxis=o;var u=f(c,n);u[t]+=r[0][t],this.shader.uniforms.offset=u;var p=h(l);p[e]=1,this.shader.uniforms.screenAxis=p,this.shader.uniforms.lineWidth=i,this.shader.uniforms.color=a,this.vao.draw(this.gl.TRIANGLES,6)},d.dispose=function(){this.vao.dispose(),this.vertBuffer.dispose(),this.shader.dispose()}},{\"./shaders\":238,\"gl-buffer\":242,\"gl-vao\":328}],238:[function(t,e,r){\"use strict\";var n=t(\"glslify\"),a=t(\"gl-shader\"),i=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position;\\n\\nuniform mat4 model, view, projection;\\nuniform vec3 offset, majorAxis, minorAxis, screenAxis;\\nuniform float lineWidth;\\nuniform vec2 screenShape;\\n\\nvec3 project(vec3 p) {\\n  vec4 pp = projection * view * model * vec4(p, 1.0);\\n  return pp.xyz / max(pp.w, 0.0001);\\n}\\n\\nvoid main() {\\n  vec3 major = position.x * majorAxis;\\n  vec3 minor = position.y * minorAxis;\\n\\n  vec3 vPosition = major + minor + offset;\\n  vec3 pPosition = project(vPosition);\\n  vec3 offset = project(vPosition + screenAxis * position.z);\\n\\n  vec2 screen = normalize((offset - pPosition).xy * screenShape) / screenShape;\\n\\n  gl_Position = vec4(pPosition + vec3(0.5 * screen * lineWidth, 0), 1.0);\\n}\\n\"]),o=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nuniform vec4 color;\\nvoid main() {\\n  gl_FragColor = color;\\n}\"]);r.line=function(t){return a(t,i,o,null,[{name:\"position\",type:\"vec3\"}])};var s=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position;\\n\\nuniform mat4 model, view, projection;\\nuniform vec3 offset, axis, alignDir, alignOpt;\\nuniform float scale, angle, pixelScale;\\nuniform vec2 resolution;\\n\\nvec3 project(vec3 p) {\\n  vec4 pp = projection * view * model * vec4(p, 1.0);\\n  return pp.xyz / max(pp.w, 0.0001);\\n}\\n\\nfloat computeViewAngle(vec3 a, vec3 b) {\\n  vec3 A = project(a);\\n  vec3 B = project(b);\\n\\n  return atan(\\n    (B.y - A.y) * resolution.y,\\n    (B.x - A.x) * resolution.x\\n  );\\n}\\n\\nconst float PI = 3.141592;\\nconst float TWO_PI = 2.0 * PI;\\nconst float HALF_PI = 0.5 * PI;\\nconst float ONE_AND_HALF_PI = 1.5 * PI;\\n\\nint option = int(floor(alignOpt.x + 0.001));\\nfloat hv_ratio =       alignOpt.y;\\nbool enableAlign =    (alignOpt.z != 0.0);\\n\\nfloat mod_angle(float a) {\\n  return mod(a, PI);\\n}\\n\\nfloat positive_angle(float a) {\\n  return mod_angle((a < 0.0) ?\\n    a + TWO_PI :\\n    a\\n  );\\n}\\n\\nfloat look_upwards(float a) {\\n  float b = positive_angle(a);\\n  return ((b > HALF_PI) && (b <= ONE_AND_HALF_PI)) ?\\n    b - PI :\\n    b;\\n}\\n\\nfloat look_horizontal_or_vertical(float a, float ratio) {\\n  // ratio controls the ratio between being horizontal to (vertical + horizontal)\\n  // if ratio is set to 0.5 then it is 50%, 50%.\\n  // when using a higher ratio e.g. 0.75 the result would\\n  // likely be more horizontal than vertical.\\n\\n  float b = positive_angle(a);\\n\\n  return\\n    (b < (      ratio) * HALF_PI) ? 0.0 :\\n    (b < (2.0 - ratio) * HALF_PI) ? -HALF_PI :\\n    (b < (2.0 + ratio) * HALF_PI) ? 0.0 :\\n    (b < (4.0 - ratio) * HALF_PI) ? HALF_PI :\\n                                    0.0;\\n}\\n\\nfloat roundTo(float a, float b) {\\n  return float(b * floor((a + 0.5 * b) / b));\\n}\\n\\nfloat look_round_n_directions(float a, int n) {\\n  float b = positive_angle(a);\\n  float div = TWO_PI / float(n);\\n  float c = roundTo(b, div);\\n  return look_upwards(c);\\n}\\n\\nfloat applyAlignOption(float rawAngle, float delta) {\\n  return\\n    (option >  2) ? look_round_n_directions(rawAngle + delta, option) :       // option 3-n: round to n directions\\n    (option == 2) ? look_horizontal_or_vertical(rawAngle + delta, hv_ratio) : // horizontal or vertical\\n    (option == 1) ? rawAngle + delta :       // use free angle, and flip to align with one direction of the axis\\n    (option == 0) ? look_upwards(rawAngle) : // use free angle, and stay upwards\\n    (option ==-1) ? 0.0 :                    // useful for backward compatibility, all texts remains horizontal\\n                    rawAngle;                // otherwise return back raw input angle\\n}\\n\\nbool isAxisTitle = (axis.x == 0.0) &&\\n                   (axis.y == 0.0) &&\\n                   (axis.z == 0.0);\\n\\nvoid main() {\\n  //Compute world offset\\n  float axisDistance = position.z;\\n  vec3 dataPosition = axisDistance * axis + offset;\\n\\n  float beta = angle; // i.e. user defined attributes for each tick\\n\\n  float axisAngle;\\n  float clipAngle;\\n  float flip;\\n\\n  if (enableAlign) {\\n    axisAngle = (isAxisTitle) ? HALF_PI :\\n                      computeViewAngle(dataPosition, dataPosition + axis);\\n    clipAngle = computeViewAngle(dataPosition, dataPosition + alignDir);\\n\\n    axisAngle += (sin(axisAngle) < 0.0) ? PI : 0.0;\\n    clipAngle += (sin(clipAngle) < 0.0) ? PI : 0.0;\\n\\n    flip = (dot(vec2(cos(axisAngle), sin(axisAngle)),\\n                vec2(sin(clipAngle),-cos(clipAngle))) > 0.0) ? 1.0 : 0.0;\\n\\n    beta += applyAlignOption(clipAngle, flip * PI);\\n  }\\n\\n  //Compute plane offset\\n  vec2 planeCoord = position.xy * pixelScale;\\n\\n  mat2 planeXform = scale * mat2(\\n     cos(beta), sin(beta),\\n    -sin(beta), cos(beta)\\n  );\\n\\n  vec2 viewOffset = 2.0 * planeXform * planeCoord / resolution;\\n\\n  //Compute clip position\\n  vec3 clipPosition = project(dataPosition);\\n\\n  //Apply text offset in clip coordinates\\n  clipPosition += vec3(viewOffset, 0.0);\\n\\n  //Done\\n  gl_Position = vec4(clipPosition, 1.0);\\n}\"]),l=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nuniform vec4 color;\\nvoid main() {\\n  gl_FragColor = color;\\n}\"]);r.text=function(t){return a(t,s,l,null,[{name:\"position\",type:\"vec3\"}])};var c=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position;\\nattribute vec3 normal;\\n\\nuniform mat4 model, view, projection;\\nuniform vec3 enable;\\nuniform vec3 bounds[2];\\n\\nvarying vec3 colorChannel;\\n\\nvoid main() {\\n\\n  vec3 signAxis = sign(bounds[1] - bounds[0]);\\n\\n  vec3 realNormal = signAxis * normal;\\n\\n  if(dot(realNormal, enable) > 0.0) {\\n    vec3 minRange = min(bounds[0], bounds[1]);\\n    vec3 maxRange = max(bounds[0], bounds[1]);\\n    vec3 nPosition = mix(minRange, maxRange, 0.5 * (position + 1.0));\\n    gl_Position = projection * view * model * vec4(nPosition, 1.0);\\n  } else {\\n    gl_Position = vec4(0,0,0,0);\\n  }\\n\\n  colorChannel = abs(realNormal);\\n}\"]),u=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nuniform vec4 colors[3];\\n\\nvarying vec3 colorChannel;\\n\\nvoid main() {\\n  gl_FragColor = colorChannel.x * colors[0] +\\n                 colorChannel.y * colors[1] +\\n                 colorChannel.z * colors[2];\\n}\"]);r.bg=function(t){return a(t,c,u,null,[{name:\"position\",type:\"vec3\"},{name:\"normal\",type:\"vec3\"}])}},{\"gl-shader\":302,glslify:410}],239:[function(t,e,r){(function(r){\"use strict\";e.exports=function(t,e,r,i,s,l){var u=n(t),h=a(t,[{buffer:u,size:3}]),f=o(t);f.attributes.position.location=0;var p=new c(t,f,u,h);return p.update(e,r,i,s,l),p};var n=t(\"gl-buffer\"),a=t(\"gl-vao\"),i=t(\"vectorize-text\"),o=t(\"./shaders\").text,s=window||r.global||{},l=s.__TEXT_CACHE||{};s.__TEXT_CACHE={};function c(t,e,r,n){this.gl=t,this.shader=e,this.buffer=r,this.vao=n,this.tickOffset=this.tickCount=this.labelOffset=this.labelCount=null}var u=c.prototype,h=[0,0];u.bind=function(t,e,r,n){this.vao.bind(),this.shader.bind();var a=this.shader.uniforms;a.model=t,a.view=e,a.projection=r,a.pixelScale=n,h[0]=this.gl.drawingBufferWidth,h[1]=this.gl.drawingBufferHeight,this.shader.uniforms.resolution=h},u.unbind=function(){this.vao.unbind()},u.update=function(t,e,r,n,a){var o=[];function s(t,e,r,n,a,s){var c=l[r];c||(c=l[r]={});var u=c[e];u||(u=c[e]=function(t,e){try{return i(t,e)}catch(e){return console.warn('error vectorizing text:\"'+t+'\" error:',e),{cells:[],positions:[]}}}(e,{triangles:!0,font:r,textAlign:\"center\",textBaseline:\"middle\",lineSpacing:a,styletags:s}));for(var h=(n||12)/12,f=u.positions,p=u.cells,d=0,g=p.length;d<g;++d)for(var v=p[d],m=2;m>=0;--m){var y=f[v[m]];o.push(h*y[0],-h*y[1],t)}}for(var c=[0,0,0],u=[0,0,0],h=[0,0,0],f=[0,0,0],p={breaklines:!0,bolds:!0,italics:!0,subscripts:!0,superscripts:!0},d=0;d<3;++d){h[d]=o.length/3|0,s(.5*(t[0][d]+t[1][d]),e[d],r[d],12,1.25,p),f[d]=(o.length/3|0)-h[d],c[d]=o.length/3|0;for(var g=0;g<n[d].length;++g)n[d][g].text&&s(n[d][g].x,n[d][g].text,n[d][g].font||a,n[d][g].fontSize||12,1.25,p);u[d]=(o.length/3|0)-c[d]}this.buffer.update(o),this.tickOffset=c,this.tickCount=u,this.labelOffset=h,this.labelCount=f},u.drawTicks=function(t,e,r,n,a,i,o,s){this.tickCount[t]&&(this.shader.uniforms.axis=i,this.shader.uniforms.color=a,this.shader.uniforms.angle=r,this.shader.uniforms.scale=e,this.shader.uniforms.offset=n,this.shader.uniforms.alignDir=o,this.shader.uniforms.alignOpt=s,this.vao.draw(this.gl.TRIANGLES,this.tickCount[t],this.tickOffset[t]))},u.drawLabel=function(t,e,r,n,a,i,o,s){this.labelCount[t]&&(this.shader.uniforms.axis=i,this.shader.uniforms.color=a,this.shader.uniforms.angle=r,this.shader.uniforms.scale=e,this.shader.uniforms.offset=n,this.shader.uniforms.alignDir=o,this.shader.uniforms.alignOpt=s,this.vao.draw(this.gl.TRIANGLES,this.labelCount[t],this.labelOffset[t]))},u.dispose=function(){this.shader.dispose(),this.vao.dispose(),this.buffer.dispose()}}).call(this,t(\"_process\"))},{\"./shaders\":238,_process:483,\"gl-buffer\":242,\"gl-vao\":328,\"vectorize-text\":551}],240:[function(t,e,r){\"use strict\";function n(t,e){var r=t+\"\",n=r.indexOf(\".\"),a=0;n>=0&&(a=r.length-n-1);var i=Math.pow(10,a),o=Math.round(t*e*i),s=o+\"\";if(s.indexOf(\"e\")>=0)return s;var l=o/i,c=o%i;o<0?(l=0|-Math.ceil(l),c=0|-c):(l=0|Math.floor(l),c|=0);var u=\"\"+l;if(o<0&&(u=\"-\"+u),a){for(var h=\"\"+c;h.length<a;)h=\"0\"+h;return u+\".\"+h}return u}r.create=function(t,e){for(var r=[],a=0;a<3;++a){for(var i=[],o=(t[0][a],t[1][a],0);o*e[a]<=t[1][a];++o)i.push({x:o*e[a],text:n(e[a],o)});for(var o=-1;o*e[a]>=t[0][a];--o)i.push({x:o*e[a],text:n(e[a],o)});r.push(i)}return r},r.equal=function(t,e){for(var r=0;r<3;++r){if(t[r].length!==e[r].length)return!1;for(var n=0;n<t[r].length;++n){var a=t[r][n],i=e[r][n];if(a.x!==i.x||a.text!==i.text||a.font!==i.font||a.fontColor!==i.fontColor||a.fontSize!==i.fontSize||a.dx!==i.dx||a.dy!==i.dy)return!1}}return!0}},{}],241:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,l,h){var f=e.model||c,p=e.view||c,m=e.projection||c,y=e._ortho||!1,x=t.bounds,b=(h=h||i(f,p,m,x,y)).axis;o(u,p,f),o(u,m,u);for(var _=g,w=0;w<3;++w)_[w].lo=1/0,_[w].hi=-1/0,_[w].pixelsPerDataUnit=1/0;var k=n(s(u,u));s(u,u);for(var T=0;T<3;++T){var A=(T+1)%3,M=(T+2)%3,S=v;t:for(var w=0;w<2;++w){var E=[];if(b[T]<0!=!!w){S[T]=x[w][T];for(var C=0;C<2;++C){S[A]=x[C^w][A];for(var L=0;L<2;++L)S[M]=x[L^C^w][M],E.push(S.slice())}for(var P=y?5:4,C=P;C===P;++C){if(0===E.length)continue t;E=a.positive(E,k[C])}for(var C=0;C<E.length;++C)for(var M=E[C],O=d(v,u,M,r,l),L=0;L<3;++L)_[L].lo=Math.min(_[L].lo,M[L]),_[L].hi=Math.max(_[L].hi,M[L]),L!==T&&(_[L].pixelsPerDataUnit=Math.min(_[L].pixelsPerDataUnit,Math.abs(O[L])))}}}return _};var n=t(\"extract-frustum-planes\"),a=t(\"split-polygon\"),i=t(\"./lib/cube.js\"),o=t(\"gl-mat4/multiply\"),s=t(\"gl-mat4/transpose\"),l=t(\"gl-vec4/transformMat4\"),c=new Float32Array([1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]),u=new Float32Array(16);function h(t,e,r){this.lo=t,this.hi=e,this.pixelsPerDataUnit=r}var f=[0,0,0,1],p=[0,0,0,1];function d(t,e,r,n,a){for(var i=0;i<3;++i){for(var o=f,s=p,c=0;c<3;++c)s[c]=o[c]=r[c];s[3]=o[3]=1,s[i]+=1,l(s,s,e),s[3]<0&&(t[i]=1/0),o[i]-=1,l(o,o,e),o[3]<0&&(t[i]=1/0);var u=(o[0]/o[3]-s[0]/s[3])*n,h=(o[1]/o[3]-s[1]/s[3])*a;t[i]=.25*Math.sqrt(u*u+h*h)}return t}var g=[new h(1/0,-1/0,1/0),new h(1/0,-1/0,1/0),new h(1/0,-1/0,1/0)],v=[0,0,0]},{\"./lib/cube.js\":236,\"extract-frustum-planes\":225,\"gl-mat4/multiply\":268,\"gl-mat4/transpose\":277,\"gl-vec4/transformMat4\":399,\"split-polygon\":528}],242:[function(t,e,r){\"use strict\";var n=t(\"typedarray-pool\"),a=t(\"ndarray-ops\"),i=t(\"ndarray\"),o=[\"uint8\",\"uint8_clamped\",\"uint16\",\"uint32\",\"int8\",\"int16\",\"int32\",\"float32\"];function s(t,e,r,n,a){this.gl=t,this.type=e,this.handle=r,this.length=n,this.usage=a}var l=s.prototype;function c(t,e,r,n,a,i){var o=a.length*a.BYTES_PER_ELEMENT;if(i<0)return t.bufferData(e,a,n),o;if(o+i>r)throw new Error(\"gl-buffer: If resizing buffer, must not specify offset\");return t.bufferSubData(e,i,a),r}function u(t,e){for(var r=n.malloc(t.length,e),a=t.length,i=0;i<a;++i)r[i]=t[i];return r}l.bind=function(){this.gl.bindBuffer(this.type,this.handle)},l.unbind=function(){this.gl.bindBuffer(this.type,null)},l.dispose=function(){this.gl.deleteBuffer(this.handle)},l.update=function(t,e){if(\"number\"!=typeof e&&(e=-1),this.bind(),\"object\"==typeof t&&\"undefined\"!=typeof t.shape){var r=t.dtype;if(o.indexOf(r)<0&&(r=\"float32\"),this.type===this.gl.ELEMENT_ARRAY_BUFFER)r=gl.getExtension(\"OES_element_index_uint\")&&\"uint16\"!==r?\"uint32\":\"uint16\";if(r===t.dtype&&function(t,e){for(var r=1,n=e.length-1;n>=0;--n){if(e[n]!==r)return!1;r*=t[n]}return!0}(t.shape,t.stride))0===t.offset&&t.data.length===t.shape[0]?this.length=c(this.gl,this.type,this.length,this.usage,t.data,e):this.length=c(this.gl,this.type,this.length,this.usage,t.data.subarray(t.offset,t.shape[0]),e);else{var s=n.malloc(t.size,r),l=i(s,t.shape);a.assign(l,t),this.length=c(this.gl,this.type,this.length,this.usage,e<0?s:s.subarray(0,t.size),e),n.free(s)}}else if(Array.isArray(t)){var h;h=this.type===this.gl.ELEMENT_ARRAY_BUFFER?u(t,\"uint16\"):u(t,\"float32\"),this.length=c(this.gl,this.type,this.length,this.usage,e<0?h:h.subarray(0,t.length),e),n.free(h)}else if(\"object\"==typeof t&&\"number\"==typeof t.length)this.length=c(this.gl,this.type,this.length,this.usage,t,e);else{if(\"number\"!=typeof t&&void 0!==t)throw new Error(\"gl-buffer: Invalid data type\");if(e>=0)throw new Error(\"gl-buffer: Cannot specify offset when resizing buffer\");(t|=0)<=0&&(t=1),this.gl.bufferData(this.type,0|t,this.usage),this.length=t}},e.exports=function(t,e,r,n){if(r=r||t.ARRAY_BUFFER,n=n||t.DYNAMIC_DRAW,r!==t.ARRAY_BUFFER&&r!==t.ELEMENT_ARRAY_BUFFER)throw new Error(\"gl-buffer: Invalid type for webgl buffer, must be either gl.ARRAY_BUFFER or gl.ELEMENT_ARRAY_BUFFER\");if(n!==t.DYNAMIC_DRAW&&n!==t.STATIC_DRAW&&n!==t.STREAM_DRAW)throw new Error(\"gl-buffer: Invalid usage for buffer, must be either gl.DYNAMIC_DRAW, gl.STATIC_DRAW or gl.STREAM_DRAW\");var a=t.createBuffer(),i=new s(t,r,a,0,n);return i.update(e),i}},{ndarray:451,\"ndarray-ops\":445,\"typedarray-pool\":546}],243:[function(t,e,r){\"use strict\";var n=t(\"gl-vec3\"),a=function(t,e){for(var r=0;r<t.length;r++)if(t[r]>=e)return r-1;return r},i=n.create(),o=n.create(),s=function(t,e,r){return t<e?e:t>r?r:t},l=function(t,e,r,l){var c=t[0],u=t[1],h=t[2],f=r[0].length,p=r[1].length,d=r[2].length,g=a(r[0],c),v=a(r[1],u),m=a(r[2],h),y=g+1,x=v+1,b=m+1;if(l&&(g=s(g,0,f-1),y=s(y,0,f-1),v=s(v,0,p-1),x=s(x,0,p-1),m=s(m,0,d-1),b=s(b,0,d-1)),g<0||v<0||m<0||y>=f||x>=p||b>=d)return n.create();var _=(c-r[0][g])/(r[0][y]-r[0][g]),w=(u-r[1][v])/(r[1][x]-r[1][v]),k=(h-r[2][m])/(r[2][b]-r[2][m]);(_<0||_>1||isNaN(_))&&(_=0),(w<0||w>1||isNaN(w))&&(w=0),(k<0||k>1||isNaN(k))&&(k=0);var T=m*f*p,A=b*f*p,M=v*f,S=x*f,E=g,C=y,L=e[M+T+E],P=e[M+T+C],O=e[S+T+E],I=e[S+T+C],z=e[M+A+E],D=e[M+A+C],R=e[S+A+E],F=e[S+A+C],B=n.create();return n.lerp(B,L,P,_),n.lerp(i,O,I,_),n.lerp(B,B,i,w),n.lerp(i,z,D,_),n.lerp(o,R,F,_),n.lerp(i,i,o,w),n.lerp(B,B,i,k),B};e.exports=function(t,e){var r;r=t.positions?t.positions:function(t){for(var e=t[0],r=t[1],n=t[2],a=[],i=0;i<n.length;i++)for(var o=0;o<r.length;o++)for(var s=0;s<e.length;s++)a.push([n[i],r[o],e[s]]);return a}(t.meshgrid);var a=t.meshgrid,i=t.vectors,o={positions:[],vertexIntensity:[],vertexIntensityBounds:t.vertexIntensityBounds,vertexNormals:[],vectors:[],cells:[],coneOffset:t.coneOffset,colormap:t.colormap};if(0===t.positions.length)return e&&(e[0]=[0,0,0],e[1]=[0,0,0]),o;for(var s=0,c=1/0,u=-1/0,h=1/0,f=-1/0,p=1/0,d=-1/0,g=null,v=null,m=[],y=1/0,x=0;x<r.length;x++){var b,_=r[x];c=Math.min(_[0],c),u=Math.max(_[0],u),h=Math.min(_[1],h),f=Math.max(_[1],f),p=Math.min(_[2],p),d=Math.max(_[2],d),b=a?l(_,i,a,!0):i[x],n.length(b)>s&&(s=n.length(b)),x&&(y=Math.min(y,2*n.distance(g,_)/(n.length(v)+n.length(b)))),g=_,v=b,m.push(b)}var w=[c,h,p],k=[u,f,d];e&&(e[0]=w,e[1]=k),0===s&&(s=1);var T=1/s;isFinite(y)&&!isNaN(y)||(y=1),o.vectorScale=y;var A=function(t,e,r){var a=n.create();return void 0!==t&&n.set(a,t,e,r),a}(0,1,0),M=t.coneSize||.5;t.absoluteConeSize&&(M=t.absoluteConeSize*T),o.coneScale=M;x=0;for(var S=0;x<r.length;x++)for(var E=(_=r[x])[0],C=_[1],L=_[2],P=m[x],O=n.length(P)*T,I=0;I<8;I++){o.positions.push([E,C,L,S++]),o.positions.push([E,C,L,S++]),o.positions.push([E,C,L,S++]),o.positions.push([E,C,L,S++]),o.positions.push([E,C,L,S++]),o.positions.push([E,C,L,S++]),o.vectors.push(P),o.vectors.push(P),o.vectors.push(P),o.vectors.push(P),o.vectors.push(P),o.vectors.push(P),o.vertexIntensity.push(O,O,O),o.vertexIntensity.push(O,O,O),o.vertexNormals.push(A,A,A),o.vertexNormals.push(A,A,A);var z=o.positions.length;o.cells.push([z-6,z-5,z-4],[z-3,z-2,z-1])}return o},e.exports.createConeMesh=t(\"./lib/conemesh\")},{\"./lib/conemesh\":244,\"gl-vec3\":347}],244:[function(t,e,r){\"use strict\";var n=t(\"gl-shader\"),a=t(\"gl-buffer\"),i=t(\"gl-vao\"),o=t(\"gl-texture2d\"),s=t(\"normals\"),l=t(\"gl-mat4/multiply\"),c=t(\"gl-mat4/invert\"),u=t(\"ndarray\"),h=t(\"colormap\"),f=t(\"simplicial-complex-contour\"),p=t(\"typedarray-pool\"),d=t(\"./shaders\"),g=d.meshShader,v=d.pickShader,m=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function y(t,e,r,n,a,i,o,s,l,c,u,h,f,p,d,g,v,y,x,b,_,w,k,T){this.gl=t,this.pixelRatio=1,this.cells=[],this.positions=[],this.intensity=[],this.texture=e,this.dirty=!0,this.triShader=r,this.pickShader=n,this.trianglePositions=a,this.triangleVectors=i,this.triangleColors=s,this.triangleNormals=c,this.triangleUVs=l,this.triangleIds=o,this.triangleVAO=u,this.triangleCount=0,this.lineWidth=1,this.edgePositions=h,this.edgeColors=p,this.edgeUVs=d,this.edgeIds=f,this.edgeVAO=g,this.edgeCount=0,this.pointPositions=v,this.pointColors=x,this.pointUVs=b,this.pointSizes=_,this.pointIds=y,this.pointVAO=w,this.pointCount=0,this.contourLineWidth=1,this.contourPositions=k,this.contourVAO=T,this.contourCount=0,this.contourColor=[0,0,0],this.contourEnable=!0,this.pickId=1,this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.lightPosition=[1e5,1e5,0],this.ambientLight=.8,this.diffuseLight=.8,this.specularLight=2,this.roughness=.5,this.fresnel=1.5,this.opacity=1,this.coneScale=2,this.vectorScale=1,this.coneOffset=.25,this._model=m,this._view=m,this._projection=m,this._resolution=[1,1]}var x=y.prototype;function b(t){var e=n(t,v.vertex,v.fragment,null,v.attributes);return e.attributes.position.location=0,e.attributes.id.location=1,e.attributes.vector.location=5,e}x.isOpaque=function(){return this.opacity>=1},x.isTransparent=function(){return this.opacity<1},x.pickSlots=1,x.setPickBase=function(t){this.pickId=t},x.highlight=function(t){if(t&&this.contourEnable){for(var e=f(this.cells,this.intensity,t.intensity),r=e.cells,n=e.vertexIds,a=e.vertexWeights,i=r.length,o=p.mallocFloat32(6*i),s=0,l=0;l<i;++l)for(var c=r[l],u=0;u<2;++u){var h=c[0];2===c.length&&(h=c[u]);for(var d=n[h][0],g=n[h][1],v=a[h],m=1-v,y=this.positions[d],x=this.positions[g],b=0;b<3;++b)o[s++]=v*y[b]+m*x[b]}this.contourCount=s/3|0,this.contourPositions.update(o.subarray(0,s)),p.free(o)}else this.contourCount=0},x.update=function(t){t=t||{};var e=this.gl;this.dirty=!0,\"contourEnable\"in t&&(this.contourEnable=t.contourEnable),\"contourColor\"in t&&(this.contourColor=t.contourColor),\"lineWidth\"in t&&(this.lineWidth=t.lineWidth),\"lightPosition\"in t&&(this.lightPosition=t.lightPosition),\"opacity\"in t&&(this.opacity=t.opacity),\"ambient\"in t&&(this.ambientLight=t.ambient),\"diffuse\"in t&&(this.diffuseLight=t.diffuse),\"specular\"in t&&(this.specularLight=t.specular),\"roughness\"in t&&(this.roughness=t.roughness),\"fresnel\"in t&&(this.fresnel=t.fresnel),void 0!==t.vectorScale&&(this.vectorScale=t.vectorScale),void 0!==t.coneScale&&(this.coneScale=t.coneScale),void 0!==t.coneOffset&&(this.coneOffset=t.coneOffset),t.texture?(this.texture.dispose(),this.texture=o(e,t.texture)):t.colormap&&(this.texture.shape=[256,256],this.texture.minFilter=e.LINEAR_MIPMAP_LINEAR,this.texture.magFilter=e.LINEAR,this.texture.setPixels(function(t){for(var e=h({colormap:t,nshades:256,format:\"rgba\"}),r=new Uint8Array(1024),n=0;n<256;++n){for(var a=e[n],i=0;i<3;++i)r[4*n+i]=a[i];r[4*n+3]=255*a[3]}return u(r,[256,256,4],[4,0,1])}(t.colormap)),this.texture.generateMipmap());var r=t.cells,n=t.positions,a=t.vectors;if(n&&r&&a){var i=[],l=[],c=[],f=[],p=[],d=[],g=[],v=[],m=[],y=[],x=[],b=[],_=[],w=[],k=[];this.cells=r,this.positions=n;var T=t.vertexNormals,A=t.cellNormals,M=void 0===t.vertexNormalsEpsilon?1e-6:t.vertexNormalsEpsilon,S=void 0===t.faceNormalsEpsilon?1e-6:t.faceNormalsEpsilon;t.useFacetNormals&&!A&&(A=s.faceNormals(r,n,S)),A||T||(T=s.vertexNormals(r,n,M));var E=t.vertexColors,C=t.cellColors,L=t.meshColor||[1,1,1,1],P=t.vertexUVs,O=t.vertexIntensity,I=t.cellUVs,z=t.cellIntensity,D=1/0,R=-1/0;if(!P&&!I)if(O)if(t.vertexIntensityBounds)D=+t.vertexIntensityBounds[0],R=+t.vertexIntensityBounds[1];else for(var F=0;F<O.length;++F){var B=O[F];D=Math.min(D,B),R=Math.max(R,B)}else if(z)for(F=0;F<z.length;++F){B=z[F];D=Math.min(D,B),R=Math.max(R,B)}else for(F=0;F<n.length;++F){B=n[F][2];D=Math.min(D,B),R=Math.max(R,B)}this.intensity=O||(z?function(t,e,r){for(var n=new Array(e),a=0;a<e;++a)n[a]=0;var i=t.length;for(a=0;a<i;++a)for(var o=t[a],s=0;s<o.length;++s)n[o[s]]=r[a];return n}(r,n.length,z):function(t){for(var e=t.length,r=new Array(e),n=0;n<e;++n)r[n]=t[n][2];return r}(n));var N=t.pointSizes,j=t.pointSize||1;this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]];for(F=0;F<n.length;++F)for(var V=n[F],U=0;U<3;++U)!isNaN(V[U])&&isFinite(V[U])&&(this.bounds[0][U]=Math.min(this.bounds[0][U],V[U]),this.bounds[1][U]=Math.max(this.bounds[1][U],V[U]));var q=0,H=0,G=0;t:for(F=0;F<r.length;++F){var Y=r[F];switch(Y.length){case 1:for(V=n[X=Y[0]],U=0;U<3;++U)if(isNaN(V[U])||!isFinite(V[U]))continue t;x.push(V[0],V[1],V[2],V[3]),3===(Z=E?E[X]:C?C[F]:L).length?b.push(Z[0],Z[1],Z[2],1):b.push(Z[0],Z[1],Z[2],Z[3]),J=P?P[X]:O?[(O[X]-D)/(R-D),0]:I?I[F]:z?[(z[F]-D)/(R-D),0]:[(V[2]-D)/(R-D),0],_.push(J[0],J[1]),N?w.push(N[X]):w.push(j),k.push(F),G+=1;break;case 2:for(U=0;U<2;++U){V=n[X=Y[U]];for(var W=0;W<3;++W)if(isNaN(V[W])||!isFinite(V[W]))continue t}for(U=0;U<2;++U){V=n[X=Y[U]];g.push(V[0],V[1],V[2]),3===(Z=E?E[X]:C?C[F]:L).length?v.push(Z[0],Z[1],Z[2],1):v.push(Z[0],Z[1],Z[2],Z[3]),J=P?P[X]:O?[(O[X]-D)/(R-D),0]:I?I[F]:z?[(z[F]-D)/(R-D),0]:[(V[2]-D)/(R-D),0],m.push(J[0],J[1]),y.push(F)}H+=1;break;case 3:for(U=0;U<3;++U)for(V=n[X=Y[U]],W=0;W<3;++W)if(isNaN(V[W])||!isFinite(V[W]))continue t;for(U=0;U<3;++U){var X;V=n[X=Y[2-U]];i.push(V[0],V[1],V[2],V[3]);var Z,J,K,Q=a[X];l.push(Q[0],Q[1],Q[2]),3===(Z=E?E[X]:C?C[F]:L).length?c.push(Z[0],Z[1],Z[2],1):c.push(Z[0],Z[1],Z[2],Z[3]),J=P?P[X]:O?[(O[X]-D)/(R-D),0]:I?I[F]:z?[(z[F]-D)/(R-D),0]:[(V[2]-D)/(R-D),0],p.push(J[0],J[1]),K=T?T[X]:A[F],f.push(K[0],K[1],K[2]),d.push(F)}q+=1}}this.pointCount=G,this.edgeCount=H,this.triangleCount=q,this.pointPositions.update(x),this.pointColors.update(b),this.pointUVs.update(_),this.pointSizes.update(w),this.pointIds.update(new Uint32Array(k)),this.edgePositions.update(g),this.edgeColors.update(v),this.edgeUVs.update(m),this.edgeIds.update(new Uint32Array(y)),this.trianglePositions.update(i),this.triangleVectors.update(l),this.triangleColors.update(c),this.triangleUVs.update(p),this.triangleNormals.update(f),this.triangleIds.update(new Uint32Array(d))}},x.drawTransparent=x.draw=function(t){t=t||{};for(var e=this.gl,r=t.model||m,n=t.view||m,a=t.projection||m,i=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],o=0;o<3;++o)i[0][o]=Math.max(i[0][o],this.clipBounds[0][o]),i[1][o]=Math.min(i[1][o],this.clipBounds[1][o]);var s={model:r,view:n,projection:a,inverseModel:m.slice(),clipBounds:i,kambient:this.ambientLight,kdiffuse:this.diffuseLight,kspecular:this.specularLight,roughness:this.roughness,fresnel:this.fresnel,eyePosition:[0,0,0],lightPosition:[0,0,0],opacity:this.opacity,vectorScale:this.vectorScale,coneScale:this.coneScale,coneOffset:this.coneOffset,contourColor:this.contourColor,texture:0};s.inverseModel=c(s.inverseModel,s.model),e.disable(e.CULL_FACE),this.texture.bind(0);var u=new Array(16);l(u,s.view,s.model),l(u,s.projection,u),c(u,u);for(o=0;o<3;++o)s.eyePosition[o]=u[12+o]/u[15];var h=u[15];for(o=0;o<3;++o)h+=this.lightPosition[o]*u[4*o+3];for(o=0;o<3;++o){for(var f=u[12+o],p=0;p<3;++p)f+=u[4*p+o]*this.lightPosition[p];s.lightPosition[o]=f/h}if(this.triangleCount>0){var d=this.triShader;d.bind(),d.uniforms=s,this.triangleVAO.bind(),e.drawArrays(e.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind()}},x.drawPick=function(t){t=t||{};for(var e=this.gl,r=t.model||m,n=t.view||m,a=t.projection||m,i=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],o=0;o<3;++o)i[0][o]=Math.max(i[0][o],this.clipBounds[0][o]),i[1][o]=Math.min(i[1][o],this.clipBounds[1][o]);this._model=[].slice.call(r),this._view=[].slice.call(n),this._projection=[].slice.call(a),this._resolution=[e.drawingBufferWidth,e.drawingBufferHeight];var s={model:r,view:n,projection:a,clipBounds:i,vectorScale:this.vectorScale,coneScale:this.coneScale,coneOffset:this.coneOffset,pickId:this.pickId/255},l=this.pickShader;l.bind(),l.uniforms=s,this.triangleCount>0&&(this.triangleVAO.bind(),e.drawArrays(e.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind()),this.edgeCount>0&&(this.edgeVAO.bind(),e.lineWidth(this.lineWidth*this.pixelRatio),e.drawArrays(e.LINES,0,2*this.edgeCount),this.edgeVAO.unbind())},x.pick=function(t){if(!t)return null;if(t.id!==this.pickId)return null;var e=t.value[0]+256*t.value[1]+65536*t.value[2],r=this.cells[e],n=this.positions[r[1]].slice(0,3);return{index:Math.floor(r[1]/48),position:n,dataCoordinate:n}},x.dispose=function(){this.texture.dispose(),this.triShader.dispose(),this.pickShader.dispose(),this.triangleVAO.dispose(),this.trianglePositions.dispose(),this.triangleVectors.dispose(),this.triangleColors.dispose(),this.triangleUVs.dispose(),this.triangleNormals.dispose(),this.triangleIds.dispose(),this.edgeVAO.dispose(),this.edgePositions.dispose(),this.edgeColors.dispose(),this.edgeUVs.dispose(),this.edgeIds.dispose(),this.pointVAO.dispose(),this.pointPositions.dispose(),this.pointColors.dispose(),this.pointUVs.dispose(),this.pointSizes.dispose(),this.pointIds.dispose(),this.contourVAO.dispose(),this.contourPositions.dispose()},e.exports=function(t,e){1===arguments.length&&(t=(e=t).gl);var r=e.triShader||function(t){var e=n(t,g.vertex,g.fragment,null,g.attributes);return e.attributes.position.location=0,e.attributes.color.location=2,e.attributes.uv.location=3,e.attributes.vector.location=5,e}(t),s=b(t),l=o(t,u(new Uint8Array([255,255,255,255]),[1,1,4]));l.generateMipmap(),l.minFilter=t.LINEAR_MIPMAP_LINEAR,l.magFilter=t.LINEAR;var c=a(t),h=a(t),f=a(t),p=a(t),d=a(t),v=a(t),m=i(t,[{buffer:c,type:t.FLOAT,size:4},{buffer:v,type:t.UNSIGNED_BYTE,size:4,normalized:!0},{buffer:f,type:t.FLOAT,size:4},{buffer:p,type:t.FLOAT,size:2},{buffer:d,type:t.FLOAT,size:3},{buffer:h,type:t.FLOAT,size:3}]),x=a(t),_=a(t),w=a(t),k=a(t),T=i(t,[{buffer:x,type:t.FLOAT,size:3},{buffer:k,type:t.UNSIGNED_BYTE,size:4,normalized:!0},{buffer:_,type:t.FLOAT,size:4},{buffer:w,type:t.FLOAT,size:2}]),A=a(t),M=a(t),S=a(t),E=a(t),C=a(t),L=i(t,[{buffer:A,type:t.FLOAT,size:3},{buffer:C,type:t.UNSIGNED_BYTE,size:4,normalized:!0},{buffer:M,type:t.FLOAT,size:4},{buffer:S,type:t.FLOAT,size:2},{buffer:E,type:t.FLOAT,size:1}]),P=a(t),O=new y(t,l,r,s,c,h,v,f,p,d,m,x,k,_,w,T,A,C,M,S,E,L,P,i(t,[{buffer:P,type:t.FLOAT,size:3}]));return O.update(e),O}},{\"./shaders\":245,colormap:127,\"gl-buffer\":242,\"gl-mat4/invert\":266,\"gl-mat4/multiply\":268,\"gl-shader\":302,\"gl-texture2d\":323,\"gl-vao\":328,ndarray:451,normals:454,\"simplicial-complex-contour\":519,\"typedarray-pool\":546}],245:[function(t,e,r){var n=t(\"glslify\"),a=n([\"precision highp float;\\n\\nprecision highp float;\\n#define GLSLIFY 1\\n\\nvec3 getOrthogonalVector(vec3 v) {\\n  // Return up-vector for only-z vector.\\n  // Return ax + by + cz = 0, a point that lies on the plane that has v as a normal and that isn't (0,0,0).\\n  // From the above if-statement we have ||a|| > 0  U  ||b|| > 0.\\n  // Assign z = 0, x = -b, y = a:\\n  // a*-b + b*a + c*0 = -ba + ba + 0 = 0\\n  if (v.x*v.x > v.z*v.z || v.y*v.y > v.z*v.z) {\\n    return normalize(vec3(-v.y, v.x, 0.0));\\n  } else {\\n    return normalize(vec3(0.0, v.z, -v.y));\\n  }\\n}\\n\\n// Calculate the cone vertex and normal at the given index.\\n//\\n// The returned vertex is for a cone with its top at origin and height of 1.0,\\n// pointing in the direction of the vector attribute.\\n//\\n// Each cone is made up of a top vertex, a center base vertex and base perimeter vertices.\\n// These vertices are used to make up the triangles of the cone by the following:\\n//   segment + 0 top vertex\\n//   segment + 1 perimeter vertex a+1\\n//   segment + 2 perimeter vertex a\\n//   segment + 3 center base vertex\\n//   segment + 4 perimeter vertex a\\n//   segment + 5 perimeter vertex a+1\\n// Where segment is the number of the radial segment * 6 and a is the angle at that radial segment.\\n// To go from index to segment, floor(index / 6)\\n// To go from segment to angle, 2*pi * (segment/segmentCount)\\n// To go from index to segment index, index - (segment*6)\\n//\\nvec3 getConePosition(vec3 d, float rawIndex, float coneOffset, out vec3 normal) {\\n\\n  const float segmentCount = 8.0;\\n\\n  float index = rawIndex - floor(rawIndex /\\n    (segmentCount * 6.0)) *\\n    (segmentCount * 6.0);\\n\\n  float segment = floor(0.001 + index/6.0);\\n  float segmentIndex = index - (segment*6.0);\\n\\n  normal = -normalize(d);\\n\\n  if (segmentIndex > 2.99 && segmentIndex < 3.01) {\\n    return mix(vec3(0.0), -d, coneOffset);\\n  }\\n\\n  float nextAngle = (\\n    (segmentIndex > 0.99 &&  segmentIndex < 1.01) ||\\n    (segmentIndex > 4.99 &&  segmentIndex < 5.01)\\n  ) ? 1.0 : 0.0;\\n  float angle = 2.0 * 3.14159 * ((segment + nextAngle) / segmentCount);\\n\\n  vec3 v1 = mix(d, vec3(0.0), coneOffset);\\n  vec3 v2 = v1 - d;\\n\\n  vec3 u = getOrthogonalVector(d);\\n  vec3 v = normalize(cross(u, d));\\n\\n  vec3 x = u * cos(angle) * length(d)*0.25;\\n  vec3 y = v * sin(angle) * length(d)*0.25;\\n  vec3 v3 = v2 + x + y;\\n  if (segmentIndex < 3.0) {\\n    vec3 tx = u * sin(angle);\\n    vec3 ty = v * -cos(angle);\\n    vec3 tangent = tx + ty;\\n    normal = normalize(cross(v3 - v1, tangent));\\n  }\\n\\n  if (segmentIndex == 0.0) {\\n    return mix(d, vec3(0.0), coneOffset);\\n  }\\n  return v3;\\n}\\n\\nattribute vec3 vector;\\nattribute vec4 color, position;\\nattribute vec2 uv;\\nuniform float vectorScale;\\nuniform float coneScale;\\n\\nuniform float coneOffset;\\n\\nuniform mat4 model\\n           , view\\n           , projection\\n           , inverseModel;\\nuniform vec3 eyePosition\\n           , lightPosition;\\n\\nvarying vec3 f_normal\\n           , f_lightDirection\\n           , f_eyeDirection\\n           , f_data\\n           , f_position;\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n  // Scale the vector magnitude to stay constant with\\n  // model & view changes.\\n  vec3 normal;\\n  vec3 XYZ = getConePosition(mat3(model) * ((vectorScale * coneScale) * vector), position.w, coneOffset, normal);\\n  vec4 conePosition = model * vec4(position.xyz, 1.0) + vec4(XYZ, 0.0);\\n\\n  //Lighting geometry parameters\\n  vec4 cameraCoordinate = view * conePosition;\\n  cameraCoordinate.xyz /= cameraCoordinate.w;\\n  f_lightDirection = lightPosition - cameraCoordinate.xyz;\\n  f_eyeDirection   = eyePosition - cameraCoordinate.xyz;\\n  f_normal = normalize((vec4(normal,0.0) * inverseModel).xyz);\\n\\n  // vec4 m_position  = model * vec4(conePosition, 1.0);\\n  vec4 t_position  = view * conePosition;\\n  gl_Position      = projection * t_position;\\n\\n  f_color          = color;\\n  f_data           = conePosition.xyz;\\n  f_position       = position.xyz;\\n  f_uv             = uv;\\n}\\n\"]),i=n([\"#extension GL_OES_standard_derivatives : enable\\n\\nprecision highp float;\\n#define GLSLIFY 1\\n\\nfloat beckmannDistribution(float x, float roughness) {\\n  float NdotH = max(x, 0.0001);\\n  float cos2Alpha = NdotH * NdotH;\\n  float tan2Alpha = (cos2Alpha - 1.0) / cos2Alpha;\\n  float roughness2 = roughness * roughness;\\n  float denom = 3.141592653589793 * roughness2 * cos2Alpha * cos2Alpha;\\n  return exp(tan2Alpha / roughness2) / denom;\\n}\\n\\nfloat cookTorranceSpecular(\\n  vec3 lightDirection,\\n  vec3 viewDirection,\\n  vec3 surfaceNormal,\\n  float roughness,\\n  float fresnel) {\\n\\n  float VdotN = max(dot(viewDirection, surfaceNormal), 0.0);\\n  float LdotN = max(dot(lightDirection, surfaceNormal), 0.0);\\n\\n  //Half angle vector\\n  vec3 H = normalize(lightDirection + viewDirection);\\n\\n  //Geometric term\\n  float NdotH = max(dot(surfaceNormal, H), 0.0);\\n  float VdotH = max(dot(viewDirection, H), 0.000001);\\n  float LdotH = max(dot(lightDirection, H), 0.000001);\\n  float G1 = (2.0 * NdotH * VdotN) / VdotH;\\n  float G2 = (2.0 * NdotH * LdotN) / LdotH;\\n  float G = min(1.0, min(G1, G2));\\n  \\n  //Distribution term\\n  float D = beckmannDistribution(NdotH, roughness);\\n\\n  //Fresnel term\\n  float F = pow(1.0 - VdotN, fresnel);\\n\\n  //Multiply terms and done\\n  return  G * F * D / max(3.14159265 * VdotN, 0.000001);\\n}\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 clipBounds[2];\\nuniform float roughness\\n            , fresnel\\n            , kambient\\n            , kdiffuse\\n            , kspecular\\n            , opacity;\\nuniform sampler2D texture;\\n\\nvarying vec3 f_normal\\n           , f_lightDirection\\n           , f_eyeDirection\\n           , f_data\\n           , f_position;\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\\n  vec3 N = normalize(f_normal);\\n  vec3 L = normalize(f_lightDirection);\\n  vec3 V = normalize(f_eyeDirection);\\n\\n  if(gl_FrontFacing) {\\n    N = -N;\\n  }\\n\\n  float specular = min(1.0, max(0.0, cookTorranceSpecular(L, V, N, roughness, fresnel)));\\n  float diffuse  = min(kambient + kdiffuse * max(dot(N, L), 0.0), 1.0);\\n\\n  vec4 surfaceColor = f_color * texture2D(texture, f_uv);\\n  vec4 litColor = surfaceColor.a * vec4(diffuse * surfaceColor.rgb + kspecular * vec3(1,1,1) * specular,  1.0);\\n\\n  gl_FragColor = litColor * opacity;\\n}\\n\"]),o=n([\"precision highp float;\\n\\nprecision highp float;\\n#define GLSLIFY 1\\n\\nvec3 getOrthogonalVector(vec3 v) {\\n  // Return up-vector for only-z vector.\\n  // Return ax + by + cz = 0, a point that lies on the plane that has v as a normal and that isn't (0,0,0).\\n  // From the above if-statement we have ||a|| > 0  U  ||b|| > 0.\\n  // Assign z = 0, x = -b, y = a:\\n  // a*-b + b*a + c*0 = -ba + ba + 0 = 0\\n  if (v.x*v.x > v.z*v.z || v.y*v.y > v.z*v.z) {\\n    return normalize(vec3(-v.y, v.x, 0.0));\\n  } else {\\n    return normalize(vec3(0.0, v.z, -v.y));\\n  }\\n}\\n\\n// Calculate the cone vertex and normal at the given index.\\n//\\n// The returned vertex is for a cone with its top at origin and height of 1.0,\\n// pointing in the direction of the vector attribute.\\n//\\n// Each cone is made up of a top vertex, a center base vertex and base perimeter vertices.\\n// These vertices are used to make up the triangles of the cone by the following:\\n//   segment + 0 top vertex\\n//   segment + 1 perimeter vertex a+1\\n//   segment + 2 perimeter vertex a\\n//   segment + 3 center base vertex\\n//   segment + 4 perimeter vertex a\\n//   segment + 5 perimeter vertex a+1\\n// Where segment is the number of the radial segment * 6 and a is the angle at that radial segment.\\n// To go from index to segment, floor(index / 6)\\n// To go from segment to angle, 2*pi * (segment/segmentCount)\\n// To go from index to segment index, index - (segment*6)\\n//\\nvec3 getConePosition(vec3 d, float rawIndex, float coneOffset, out vec3 normal) {\\n\\n  const float segmentCount = 8.0;\\n\\n  float index = rawIndex - floor(rawIndex /\\n    (segmentCount * 6.0)) *\\n    (segmentCount * 6.0);\\n\\n  float segment = floor(0.001 + index/6.0);\\n  float segmentIndex = index - (segment*6.0);\\n\\n  normal = -normalize(d);\\n\\n  if (segmentIndex > 2.99 && segmentIndex < 3.01) {\\n    return mix(vec3(0.0), -d, coneOffset);\\n  }\\n\\n  float nextAngle = (\\n    (segmentIndex > 0.99 &&  segmentIndex < 1.01) ||\\n    (segmentIndex > 4.99 &&  segmentIndex < 5.01)\\n  ) ? 1.0 : 0.0;\\n  float angle = 2.0 * 3.14159 * ((segment + nextAngle) / segmentCount);\\n\\n  vec3 v1 = mix(d, vec3(0.0), coneOffset);\\n  vec3 v2 = v1 - d;\\n\\n  vec3 u = getOrthogonalVector(d);\\n  vec3 v = normalize(cross(u, d));\\n\\n  vec3 x = u * cos(angle) * length(d)*0.25;\\n  vec3 y = v * sin(angle) * length(d)*0.25;\\n  vec3 v3 = v2 + x + y;\\n  if (segmentIndex < 3.0) {\\n    vec3 tx = u * sin(angle);\\n    vec3 ty = v * -cos(angle);\\n    vec3 tangent = tx + ty;\\n    normal = normalize(cross(v3 - v1, tangent));\\n  }\\n\\n  if (segmentIndex == 0.0) {\\n    return mix(d, vec3(0.0), coneOffset);\\n  }\\n  return v3;\\n}\\n\\nattribute vec3 vector;\\nattribute vec4 position;\\nattribute vec4 id;\\n\\nuniform mat4 model, view, projection;\\n\\nuniform float vectorScale;\\nuniform float coneScale;\\nuniform float coneOffset;\\n\\nvarying vec3 f_position;\\nvarying vec4 f_id;\\n\\nvoid main() {\\n  vec3 normal;\\n  vec3 XYZ = getConePosition(mat3(model) * ((vectorScale * coneScale) * vector), position.w, coneOffset, normal);\\n  vec4 conePosition = model * vec4(position.xyz, 1.0) + vec4(XYZ, 0.0);\\n  gl_Position = projection * view * conePosition;\\n  f_id        = id;\\n  f_position  = position.xyz;\\n}\\n\"]),s=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3  clipBounds[2];\\nuniform float pickId;\\n\\nvarying vec3 f_position;\\nvarying vec4 f_id;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\\n\\n  gl_FragColor = vec4(pickId, f_id.xyz);\\n}\"]);r.meshShader={vertex:a,fragment:i,attributes:[{name:\"position\",type:\"vec4\"},{name:\"normal\",type:\"vec3\"},{name:\"color\",type:\"vec4\"},{name:\"uv\",type:\"vec2\"},{name:\"vector\",type:\"vec3\"}]},r.pickShader={vertex:o,fragment:s,attributes:[{name:\"position\",type:\"vec4\"},{name:\"id\",type:\"vec4\"},{name:\"vector\",type:\"vec3\"}]}},{glslify:410}],246:[function(t,e,r){e.exports={0:\"NONE\",1:\"ONE\",2:\"LINE_LOOP\",3:\"LINE_STRIP\",4:\"TRIANGLES\",5:\"TRIANGLE_STRIP\",6:\"TRIANGLE_FAN\",256:\"DEPTH_BUFFER_BIT\",512:\"NEVER\",513:\"LESS\",514:\"EQUAL\",515:\"LEQUAL\",516:\"GREATER\",517:\"NOTEQUAL\",518:\"GEQUAL\",519:\"ALWAYS\",768:\"SRC_COLOR\",769:\"ONE_MINUS_SRC_COLOR\",770:\"SRC_ALPHA\",771:\"ONE_MINUS_SRC_ALPHA\",772:\"DST_ALPHA\",773:\"ONE_MINUS_DST_ALPHA\",774:\"DST_COLOR\",775:\"ONE_MINUS_DST_COLOR\",776:\"SRC_ALPHA_SATURATE\",1024:\"STENCIL_BUFFER_BIT\",1028:\"FRONT\",1029:\"BACK\",1032:\"FRONT_AND_BACK\",1280:\"INVALID_ENUM\",1281:\"INVALID_VALUE\",1282:\"INVALID_OPERATION\",1285:\"OUT_OF_MEMORY\",1286:\"INVALID_FRAMEBUFFER_OPERATION\",2304:\"CW\",2305:\"CCW\",2849:\"LINE_WIDTH\",2884:\"CULL_FACE\",2885:\"CULL_FACE_MODE\",2886:\"FRONT_FACE\",2928:\"DEPTH_RANGE\",2929:\"DEPTH_TEST\",2930:\"DEPTH_WRITEMASK\",2931:\"DEPTH_CLEAR_VALUE\",2932:\"DEPTH_FUNC\",2960:\"STENCIL_TEST\",2961:\"STENCIL_CLEAR_VALUE\",2962:\"STENCIL_FUNC\",2963:\"STENCIL_VALUE_MASK\",2964:\"STENCIL_FAIL\",2965:\"STENCIL_PASS_DEPTH_FAIL\",2966:\"STENCIL_PASS_DEPTH_PASS\",2967:\"STENCIL_REF\",2968:\"STENCIL_WRITEMASK\",2978:\"VIEWPORT\",3024:\"DITHER\",3042:\"BLEND\",3088:\"SCISSOR_BOX\",3089:\"SCISSOR_TEST\",3106:\"COLOR_CLEAR_VALUE\",3107:\"COLOR_WRITEMASK\",3317:\"UNPACK_ALIGNMENT\",3333:\"PACK_ALIGNMENT\",3379:\"MAX_TEXTURE_SIZE\",3386:\"MAX_VIEWPORT_DIMS\",3408:\"SUBPIXEL_BITS\",3410:\"RED_BITS\",3411:\"GREEN_BITS\",3412:\"BLUE_BITS\",3413:\"ALPHA_BITS\",3414:\"DEPTH_BITS\",3415:\"STENCIL_BITS\",3553:\"TEXTURE_2D\",4352:\"DONT_CARE\",4353:\"FASTEST\",4354:\"NICEST\",5120:\"BYTE\",5121:\"UNSIGNED_BYTE\",5122:\"SHORT\",5123:\"UNSIGNED_SHORT\",5124:\"INT\",5125:\"UNSIGNED_INT\",5126:\"FLOAT\",5386:\"INVERT\",5890:\"TEXTURE\",6401:\"STENCIL_INDEX\",6402:\"DEPTH_COMPONENT\",6406:\"ALPHA\",6407:\"RGB\",6408:\"RGBA\",6409:\"LUMINANCE\",6410:\"LUMINANCE_ALPHA\",7680:\"KEEP\",7681:\"REPLACE\",7682:\"INCR\",7683:\"DECR\",7936:\"VENDOR\",7937:\"RENDERER\",7938:\"VERSION\",9728:\"NEAREST\",9729:\"LINEAR\",9984:\"NEAREST_MIPMAP_NEAREST\",9985:\"LINEAR_MIPMAP_NEAREST\",9986:\"NEAREST_MIPMAP_LINEAR\",9987:\"LINEAR_MIPMAP_LINEAR\",10240:\"TEXTURE_MAG_FILTER\",10241:\"TEXTURE_MIN_FILTER\",10242:\"TEXTURE_WRAP_S\",10243:\"TEXTURE_WRAP_T\",10497:\"REPEAT\",10752:\"POLYGON_OFFSET_UNITS\",16384:\"COLOR_BUFFER_BIT\",32769:\"CONSTANT_COLOR\",32770:\"ONE_MINUS_CONSTANT_COLOR\",32771:\"CONSTANT_ALPHA\",32772:\"ONE_MINUS_CONSTANT_ALPHA\",32773:\"BLEND_COLOR\",32774:\"FUNC_ADD\",32777:\"BLEND_EQUATION_RGB\",32778:\"FUNC_SUBTRACT\",32779:\"FUNC_REVERSE_SUBTRACT\",32819:\"UNSIGNED_SHORT_4_4_4_4\",32820:\"UNSIGNED_SHORT_5_5_5_1\",32823:\"POLYGON_OFFSET_FILL\",32824:\"POLYGON_OFFSET_FACTOR\",32854:\"RGBA4\",32855:\"RGB5_A1\",32873:\"TEXTURE_BINDING_2D\",32926:\"SAMPLE_ALPHA_TO_COVERAGE\",32928:\"SAMPLE_COVERAGE\",32936:\"SAMPLE_BUFFERS\",32937:\"SAMPLES\",32938:\"SAMPLE_COVERAGE_VALUE\",32939:\"SAMPLE_COVERAGE_INVERT\",32968:\"BLEND_DST_RGB\",32969:\"BLEND_SRC_RGB\",32970:\"BLEND_DST_ALPHA\",32971:\"BLEND_SRC_ALPHA\",33071:\"CLAMP_TO_EDGE\",33170:\"GENERATE_MIPMAP_HINT\",33189:\"DEPTH_COMPONENT16\",33306:\"DEPTH_STENCIL_ATTACHMENT\",33635:\"UNSIGNED_SHORT_5_6_5\",33648:\"MIRRORED_REPEAT\",33901:\"ALIASED_POINT_SIZE_RANGE\",33902:\"ALIASED_LINE_WIDTH_RANGE\",33984:\"TEXTURE0\",33985:\"TEXTURE1\",33986:\"TEXTURE2\",33987:\"TEXTURE3\",33988:\"TEXTURE4\",33989:\"TEXTURE5\",33990:\"TEXTURE6\",33991:\"TEXTURE7\",33992:\"TEXTURE8\",33993:\"TEXTURE9\",33994:\"TEXTURE10\",33995:\"TEXTURE11\",33996:\"TEXTURE12\",33997:\"TEXTURE13\",33998:\"TEXTURE14\",33999:\"TEXTURE15\",34000:\"TEXTURE16\",34001:\"TEXTURE17\",34002:\"TEXTURE18\",34003:\"TEXTURE19\",34004:\"TEXTURE20\",34005:\"TEXTURE21\",34006:\"TEXTURE22\",34007:\"TEXTURE23\",34008:\"TEXTURE24\",34009:\"TEXTURE25\",34010:\"TEXTURE26\",34011:\"TEXTURE27\",34012:\"TEXTURE28\",34013:\"TEXTURE29\",34014:\"TEXTURE30\",34015:\"TEXTURE31\",34016:\"ACTIVE_TEXTURE\",34024:\"MAX_RENDERBUFFER_SIZE\",34041:\"DEPTH_STENCIL\",34055:\"INCR_WRAP\",34056:\"DECR_WRAP\",34067:\"TEXTURE_CUBE_MAP\",34068:\"TEXTURE_BINDING_CUBE_MAP\",34069:\"TEXTURE_CUBE_MAP_POSITIVE_X\",34070:\"TEXTURE_CUBE_MAP_NEGATIVE_X\",34071:\"TEXTURE_CUBE_MAP_POSITIVE_Y\",34072:\"TEXTURE_CUBE_MAP_NEGATIVE_Y\",34073:\"TEXTURE_CUBE_MAP_POSITIVE_Z\",34074:\"TEXTURE_CUBE_MAP_NEGATIVE_Z\",34076:\"MAX_CUBE_MAP_TEXTURE_SIZE\",34338:\"VERTEX_ATTRIB_ARRAY_ENABLED\",34339:\"VERTEX_ATTRIB_ARRAY_SIZE\",34340:\"VERTEX_ATTRIB_ARRAY_STRIDE\",34341:\"VERTEX_ATTRIB_ARRAY_TYPE\",34342:\"CURRENT_VERTEX_ATTRIB\",34373:\"VERTEX_ATTRIB_ARRAY_POINTER\",34466:\"NUM_COMPRESSED_TEXTURE_FORMATS\",34467:\"COMPRESSED_TEXTURE_FORMATS\",34660:\"BUFFER_SIZE\",34661:\"BUFFER_USAGE\",34816:\"STENCIL_BACK_FUNC\",34817:\"STENCIL_BACK_FAIL\",34818:\"STENCIL_BACK_PASS_DEPTH_FAIL\",34819:\"STENCIL_BACK_PASS_DEPTH_PASS\",34877:\"BLEND_EQUATION_ALPHA\",34921:\"MAX_VERTEX_ATTRIBS\",34922:\"VERTEX_ATTRIB_ARRAY_NORMALIZED\",34930:\"MAX_TEXTURE_IMAGE_UNITS\",34962:\"ARRAY_BUFFER\",34963:\"ELEMENT_ARRAY_BUFFER\",34964:\"ARRAY_BUFFER_BINDING\",34965:\"ELEMENT_ARRAY_BUFFER_BINDING\",34975:\"VERTEX_ATTRIB_ARRAY_BUFFER_BINDING\",35040:\"STREAM_DRAW\",35044:\"STATIC_DRAW\",35048:\"DYNAMIC_DRAW\",35632:\"FRAGMENT_SHADER\",35633:\"VERTEX_SHADER\",35660:\"MAX_VERTEX_TEXTURE_IMAGE_UNITS\",35661:\"MAX_COMBINED_TEXTURE_IMAGE_UNITS\",35663:\"SHADER_TYPE\",35664:\"FLOAT_VEC2\",35665:\"FLOAT_VEC3\",35666:\"FLOAT_VEC4\",35667:\"INT_VEC2\",35668:\"INT_VEC3\",35669:\"INT_VEC4\",35670:\"BOOL\",35671:\"BOOL_VEC2\",35672:\"BOOL_VEC3\",35673:\"BOOL_VEC4\",35674:\"FLOAT_MAT2\",35675:\"FLOAT_MAT3\",35676:\"FLOAT_MAT4\",35678:\"SAMPLER_2D\",35680:\"SAMPLER_CUBE\",35712:\"DELETE_STATUS\",35713:\"COMPILE_STATUS\",35714:\"LINK_STATUS\",35715:\"VALIDATE_STATUS\",35716:\"INFO_LOG_LENGTH\",35717:\"ATTACHED_SHADERS\",35718:\"ACTIVE_UNIFORMS\",35719:\"ACTIVE_UNIFORM_MAX_LENGTH\",35720:\"SHADER_SOURCE_LENGTH\",35721:\"ACTIVE_ATTRIBUTES\",35722:\"ACTIVE_ATTRIBUTE_MAX_LENGTH\",35724:\"SHADING_LANGUAGE_VERSION\",35725:\"CURRENT_PROGRAM\",36003:\"STENCIL_BACK_REF\",36004:\"STENCIL_BACK_VALUE_MASK\",36005:\"STENCIL_BACK_WRITEMASK\",36006:\"FRAMEBUFFER_BINDING\",36007:\"RENDERBUFFER_BINDING\",36048:\"FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE\",36049:\"FRAMEBUFFER_ATTACHMENT_OBJECT_NAME\",36050:\"FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL\",36051:\"FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE\",36053:\"FRAMEBUFFER_COMPLETE\",36054:\"FRAMEBUFFER_INCOMPLETE_ATTACHMENT\",36055:\"FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT\",36057:\"FRAMEBUFFER_INCOMPLETE_DIMENSIONS\",36061:\"FRAMEBUFFER_UNSUPPORTED\",36064:\"COLOR_ATTACHMENT0\",36096:\"DEPTH_ATTACHMENT\",36128:\"STENCIL_ATTACHMENT\",36160:\"FRAMEBUFFER\",36161:\"RENDERBUFFER\",36162:\"RENDERBUFFER_WIDTH\",36163:\"RENDERBUFFER_HEIGHT\",36164:\"RENDERBUFFER_INTERNAL_FORMAT\",36168:\"STENCIL_INDEX8\",36176:\"RENDERBUFFER_RED_SIZE\",36177:\"RENDERBUFFER_GREEN_SIZE\",36178:\"RENDERBUFFER_BLUE_SIZE\",36179:\"RENDERBUFFER_ALPHA_SIZE\",36180:\"RENDERBUFFER_DEPTH_SIZE\",36181:\"RENDERBUFFER_STENCIL_SIZE\",36194:\"RGB565\",36336:\"LOW_FLOAT\",36337:\"MEDIUM_FLOAT\",36338:\"HIGH_FLOAT\",36339:\"LOW_INT\",36340:\"MEDIUM_INT\",36341:\"HIGH_INT\",36346:\"SHADER_COMPILER\",36347:\"MAX_VERTEX_UNIFORM_VECTORS\",36348:\"MAX_VARYING_VECTORS\",36349:\"MAX_FRAGMENT_UNIFORM_VECTORS\",37440:\"UNPACK_FLIP_Y_WEBGL\",37441:\"UNPACK_PREMULTIPLY_ALPHA_WEBGL\",37442:\"CONTEXT_LOST_WEBGL\",37443:\"UNPACK_COLORSPACE_CONVERSION_WEBGL\",37444:\"BROWSER_DEFAULT_WEBGL\"}},{}],247:[function(t,e,r){var n=t(\"./1.0/numbers\");e.exports=function(t){return n[t]}},{\"./1.0/numbers\":246}],248:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.gl,r=n(e),o=a(e,[{buffer:r,type:e.FLOAT,size:3,offset:0,stride:40},{buffer:r,type:e.FLOAT,size:4,offset:12,stride:40},{buffer:r,type:e.FLOAT,size:3,offset:28,stride:40}]),l=i(e);l.attributes.position.location=0,l.attributes.color.location=1,l.attributes.offset.location=2;var c=new s(e,r,o,l);return c.update(t),c};var n=t(\"gl-buffer\"),a=t(\"gl-vao\"),i=t(\"./shaders/index\"),o=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function s(t,e,r,n){this.gl=t,this.shader=n,this.buffer=e,this.vao=r,this.pixelRatio=1,this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.lineWidth=[1,1,1],this.capSize=[10,10,10],this.lineCount=[0,0,0],this.lineOffset=[0,0,0],this.opacity=1,this.hasAlpha=!1}var l=s.prototype;function c(t,e){for(var r=0;r<3;++r)t[0][r]=Math.min(t[0][r],e[r]),t[1][r]=Math.max(t[1][r],e[r])}l.isOpaque=function(){return!this.hasAlpha},l.isTransparent=function(){return this.hasAlpha},l.drawTransparent=l.draw=function(t){var e=this.gl,r=this.shader.uniforms;this.shader.bind();var n=r.view=t.view||o,a=r.projection=t.projection||o;r.model=t.model||o,r.clipBounds=this.clipBounds,r.opacity=this.opacity;var i=n[12],s=n[13],l=n[14],c=n[15],u=(t._ortho||!1?2:1)*this.pixelRatio*(a[3]*i+a[7]*s+a[11]*l+a[15]*c)/e.drawingBufferHeight;this.vao.bind();for(var h=0;h<3;++h)e.lineWidth(this.lineWidth[h]*this.pixelRatio),r.capSize=this.capSize[h]*u,this.lineCount[h]&&e.drawArrays(e.LINES,this.lineOffset[h],this.lineCount[h]);this.vao.unbind()};var u=function(){for(var t=new Array(3),e=0;e<3;++e){for(var r=[],n=1;n<=2;++n)for(var a=-1;a<=1;a+=2){var i=[0,0,0];i[(n+e)%3]=a,r.push(i)}t[e]=r}return t}();function h(t,e,r,n){for(var a=u[n],i=0;i<a.length;++i){var o=a[i];t.push(e[0],e[1],e[2],r[0],r[1],r[2],r[3],o[0],o[1],o[2])}return a.length}l.update=function(t){\"lineWidth\"in(t=t||{})&&(this.lineWidth=t.lineWidth,Array.isArray(this.lineWidth)||(this.lineWidth=[this.lineWidth,this.lineWidth,this.lineWidth])),\"capSize\"in t&&(this.capSize=t.capSize,Array.isArray(this.capSize)||(this.capSize=[this.capSize,this.capSize,this.capSize])),this.hasAlpha=!1,\"opacity\"in t&&(this.opacity=+t.opacity,this.opacity<1&&(this.hasAlpha=!0));var e=t.color||[[0,0,0],[0,0,0],[0,0,0]],r=t.position,n=t.error;if(Array.isArray(e[0])||(e=[e,e,e]),r&&n){var a=[],i=r.length,o=0;this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.lineCount=[0,0,0];for(var s=0;s<3;++s){this.lineOffset[s]=o;t:for(var l=0;l<i;++l){for(var u=r[l],f=0;f<3;++f)if(isNaN(u[f])||!isFinite(u[f]))continue t;var p=n[l],d=e[s];if(Array.isArray(d[0])&&(d=e[l]),3===d.length?d=[d[0],d[1],d[2],1]:4===d.length&&(d=[d[0],d[1],d[2],d[3]],!this.hasAlpha&&d[3]<1&&(this.hasAlpha=!0)),!isNaN(p[0][s])&&!isNaN(p[1][s])){var g;if(p[0][s]<0)(g=u.slice())[s]+=p[0][s],a.push(u[0],u[1],u[2],d[0],d[1],d[2],d[3],0,0,0,g[0],g[1],g[2],d[0],d[1],d[2],d[3],0,0,0),c(this.bounds,g),o+=2+h(a,g,d,s);if(p[1][s]>0)(g=u.slice())[s]+=p[1][s],a.push(u[0],u[1],u[2],d[0],d[1],d[2],d[3],0,0,0,g[0],g[1],g[2],d[0],d[1],d[2],d[3],0,0,0),c(this.bounds,g),o+=2+h(a,g,d,s)}}this.lineCount[s]=o-this.lineOffset[s]}this.buffer.update(a)}},l.dispose=function(){this.shader.dispose(),this.buffer.dispose(),this.vao.dispose()}},{\"./shaders/index\":249,\"gl-buffer\":242,\"gl-vao\":328}],249:[function(t,e,r){\"use strict\";var n=t(\"glslify\"),a=t(\"gl-shader\"),i=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position, offset;\\nattribute vec4 color;\\nuniform mat4 model, view, projection;\\nuniform float capSize;\\nvarying vec4 fragColor;\\nvarying vec3 fragPosition;\\n\\nvoid main() {\\n  vec4 worldPosition  = model * vec4(position, 1.0);\\n  worldPosition       = (worldPosition / worldPosition.w) + vec4(capSize * offset, 0.0);\\n  gl_Position         = projection * view * worldPosition;\\n  fragColor           = color;\\n  fragPosition        = position;\\n}\"]),o=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 clipBounds[2];\\nuniform float opacity;\\nvarying vec3 fragPosition;\\nvarying vec4 fragColor;\\n\\nvoid main() {\\n  if (\\n    outOfRange(clipBounds[0], clipBounds[1], fragPosition) ||\\n    fragColor.a * opacity == 0.\\n  ) discard;\\n\\n  gl_FragColor = opacity * fragColor;\\n}\"]);e.exports=function(t){return a(t,i,o,null,[{name:\"position\",type:\"vec3\"},{name:\"color\",type:\"vec4\"},{name:\"offset\",type:\"vec3\"}])}},{\"gl-shader\":302,glslify:410}],250:[function(t,e,r){\"use strict\";var n=t(\"gl-texture2d\");e.exports=function(t,e,r,n){a||(a=t.FRAMEBUFFER_UNSUPPORTED,i=t.FRAMEBUFFER_INCOMPLETE_ATTACHMENT,o=t.FRAMEBUFFER_INCOMPLETE_DIMENSIONS,s=t.FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT);var c=t.getExtension(\"WEBGL_draw_buffers\");!l&&c&&function(t,e){var r=t.getParameter(e.MAX_COLOR_ATTACHMENTS_WEBGL);l=new Array(r+1);for(var n=0;n<=r;++n){for(var a=new Array(r),i=0;i<n;++i)a[i]=t.COLOR_ATTACHMENT0+i;for(var i=n;i<r;++i)a[i]=t.NONE;l[n]=a}}(t,c);Array.isArray(e)&&(n=r,r=0|e[1],e=0|e[0]);if(\"number\"!=typeof e)throw new Error(\"gl-fbo: Missing shape parameter\");var u=t.getParameter(t.MAX_RENDERBUFFER_SIZE);if(e<0||e>u||r<0||r>u)throw new Error(\"gl-fbo: Parameters are too large for FBO\");var h=1;if(\"color\"in(n=n||{})){if((h=Math.max(0|n.color,0))<0)throw new Error(\"gl-fbo: Must specify a nonnegative number of colors\");if(h>1){if(!c)throw new Error(\"gl-fbo: Multiple draw buffer extension not supported\");if(h>t.getParameter(c.MAX_COLOR_ATTACHMENTS_WEBGL))throw new Error(\"gl-fbo: Context does not support \"+h+\" draw buffers\")}}var f=t.UNSIGNED_BYTE,p=t.getExtension(\"OES_texture_float\");if(n.float&&h>0){if(!p)throw new Error(\"gl-fbo: Context does not support floating point textures\");f=t.FLOAT}else n.preferFloat&&h>0&&p&&(f=t.FLOAT);var g=!0;\"depth\"in n&&(g=!!n.depth);var v=!1;\"stencil\"in n&&(v=!!n.stencil);return new d(t,e,r,f,h,g,v,c)};var a,i,o,s,l=null;function c(t){return[t.getParameter(t.FRAMEBUFFER_BINDING),t.getParameter(t.RENDERBUFFER_BINDING),t.getParameter(t.TEXTURE_BINDING_2D)]}function u(t,e){t.bindFramebuffer(t.FRAMEBUFFER,e[0]),t.bindRenderbuffer(t.RENDERBUFFER,e[1]),t.bindTexture(t.TEXTURE_2D,e[2])}function h(t){switch(t){case a:throw new Error(\"gl-fbo: Framebuffer unsupported\");case i:throw new Error(\"gl-fbo: Framebuffer incomplete attachment\");case o:throw new Error(\"gl-fbo: Framebuffer incomplete dimensions\");case s:throw new Error(\"gl-fbo: Framebuffer incomplete missing attachment\");default:throw new Error(\"gl-fbo: Framebuffer failed for unspecified reason\")}}function f(t,e,r,a,i,o){if(!a)return null;var s=n(t,e,r,i,a);return s.magFilter=t.NEAREST,s.minFilter=t.NEAREST,s.mipSamples=1,s.bind(),t.framebufferTexture2D(t.FRAMEBUFFER,o,t.TEXTURE_2D,s.handle,0),s}function p(t,e,r,n,a){var i=t.createRenderbuffer();return t.bindRenderbuffer(t.RENDERBUFFER,i),t.renderbufferStorage(t.RENDERBUFFER,n,e,r),t.framebufferRenderbuffer(t.FRAMEBUFFER,a,t.RENDERBUFFER,i),i}function d(t,e,r,n,a,i,o,s){this.gl=t,this._shape=[0|e,0|r],this._destroyed=!1,this._ext=s,this.color=new Array(a);for(var d=0;d<a;++d)this.color[d]=null;this._color_rb=null,this.depth=null,this._depth_rb=null,this._colorType=n,this._useDepth=i,this._useStencil=o;var g=this,v=[0|e,0|r];Object.defineProperties(v,{0:{get:function(){return g._shape[0]},set:function(t){return g.width=t}},1:{get:function(){return g._shape[1]},set:function(t){return g.height=t}}}),this._shapeVector=v,function(t){var e=c(t.gl),r=t.gl,n=t.handle=r.createFramebuffer(),a=t._shape[0],i=t._shape[1],o=t.color.length,s=t._ext,d=t._useStencil,g=t._useDepth,v=t._colorType;r.bindFramebuffer(r.FRAMEBUFFER,n);for(var m=0;m<o;++m)t.color[m]=f(r,a,i,v,r.RGBA,r.COLOR_ATTACHMENT0+m);0===o?(t._color_rb=p(r,a,i,r.RGBA4,r.COLOR_ATTACHMENT0),s&&s.drawBuffersWEBGL(l[0])):o>1&&s.drawBuffersWEBGL(l[o]);var y=r.getExtension(\"WEBGL_depth_texture\");y?d?t.depth=f(r,a,i,y.UNSIGNED_INT_24_8_WEBGL,r.DEPTH_STENCIL,r.DEPTH_STENCIL_ATTACHMENT):g&&(t.depth=f(r,a,i,r.UNSIGNED_SHORT,r.DEPTH_COMPONENT,r.DEPTH_ATTACHMENT)):g&&d?t._depth_rb=p(r,a,i,r.DEPTH_STENCIL,r.DEPTH_STENCIL_ATTACHMENT):g?t._depth_rb=p(r,a,i,r.DEPTH_COMPONENT16,r.DEPTH_ATTACHMENT):d&&(t._depth_rb=p(r,a,i,r.STENCIL_INDEX,r.STENCIL_ATTACHMENT));var x=r.checkFramebufferStatus(r.FRAMEBUFFER);if(x!==r.FRAMEBUFFER_COMPLETE){for(t._destroyed=!0,r.bindFramebuffer(r.FRAMEBUFFER,null),r.deleteFramebuffer(t.handle),t.handle=null,t.depth&&(t.depth.dispose(),t.depth=null),t._depth_rb&&(r.deleteRenderbuffer(t._depth_rb),t._depth_rb=null),m=0;m<t.color.length;++m)t.color[m].dispose(),t.color[m]=null;t._color_rb&&(r.deleteRenderbuffer(t._color_rb),t._color_rb=null),u(r,e),h(x)}u(r,e)}(this)}var g=d.prototype;function v(t,e,r){if(t._destroyed)throw new Error(\"gl-fbo: Can't resize destroyed FBO\");if(t._shape[0]!==e||t._shape[1]!==r){var n=t.gl,a=n.getParameter(n.MAX_RENDERBUFFER_SIZE);if(e<0||e>a||r<0||r>a)throw new Error(\"gl-fbo: Can't resize FBO, invalid dimensions\");t._shape[0]=e,t._shape[1]=r;for(var i=c(n),o=0;o<t.color.length;++o)t.color[o].shape=t._shape;t._color_rb&&(n.bindRenderbuffer(n.RENDERBUFFER,t._color_rb),n.renderbufferStorage(n.RENDERBUFFER,n.RGBA4,t._shape[0],t._shape[1])),t.depth&&(t.depth.shape=t._shape),t._depth_rb&&(n.bindRenderbuffer(n.RENDERBUFFER,t._depth_rb),t._useDepth&&t._useStencil?n.renderbufferStorage(n.RENDERBUFFER,n.DEPTH_STENCIL,t._shape[0],t._shape[1]):t._useDepth?n.renderbufferStorage(n.RENDERBUFFER,n.DEPTH_COMPONENT16,t._shape[0],t._shape[1]):t._useStencil&&n.renderbufferStorage(n.RENDERBUFFER,n.STENCIL_INDEX,t._shape[0],t._shape[1])),n.bindFramebuffer(n.FRAMEBUFFER,t.handle);var s=n.checkFramebufferStatus(n.FRAMEBUFFER);s!==n.FRAMEBUFFER_COMPLETE&&(t.dispose(),u(n,i),h(s)),u(n,i)}}Object.defineProperties(g,{shape:{get:function(){return this._destroyed?[0,0]:this._shapeVector},set:function(t){if(Array.isArray(t)||(t=[0|t,0|t]),2!==t.length)throw new Error(\"gl-fbo: Shape vector must be length 2\");var e=0|t[0],r=0|t[1];return v(this,e,r),[e,r]},enumerable:!1},width:{get:function(){return this._destroyed?0:this._shape[0]},set:function(t){return v(this,t|=0,this._shape[1]),t},enumerable:!1},height:{get:function(){return this._destroyed?0:this._shape[1]},set:function(t){return t|=0,v(this,this._shape[0],t),t},enumerable:!1}}),g.bind=function(){if(!this._destroyed){var t=this.gl;t.bindFramebuffer(t.FRAMEBUFFER,this.handle),t.viewport(0,0,this._shape[0],this._shape[1])}},g.dispose=function(){if(!this._destroyed){this._destroyed=!0;var t=this.gl;t.deleteFramebuffer(this.handle),this.handle=null,this.depth&&(this.depth.dispose(),this.depth=null),this._depth_rb&&(t.deleteRenderbuffer(this._depth_rb),this._depth_rb=null);for(var e=0;e<this.color.length;++e)this.color[e].dispose(),this.color[e]=null;this._color_rb&&(t.deleteRenderbuffer(this._color_rb),this._color_rb=null)}}},{\"gl-texture2d\":323}],251:[function(t,e,r){var n=t(\"sprintf-js\").sprintf,a=t(\"gl-constants/lookup\"),i=t(\"glsl-shader-name\"),o=t(\"add-line-numbers\");e.exports=function(t,e,r){\"use strict\";var s=i(e)||\"of unknown name (see npm glsl-shader-name)\",l=\"unknown type\";void 0!==r&&(l=r===a.FRAGMENT_SHADER?\"fragment\":\"vertex\");for(var c=n(\"Error compiling %s shader %s:\\n\",l,s),u=n(\"%s%s\",c,t),h=t.split(\"\\n\"),f={},p=0;p<h.length;p++){var d=h[p];if(\"\"!==d&&\"\\0\"!==d){var g=parseInt(d.split(\":\")[2]);if(isNaN(g))throw new Error(n(\"Could not parse error: %s\",d));f[g]=d}}for(var v=o(e).split(\"\\n\"),p=0;p<v.length;p++)if(f[p+3]||f[p+2]||f[p+1]){var m=v[p];if(c+=m+\"\\n\",f[p+1]){var y=f[p+1];y=y.substr(y.split(\":\",3).join(\":\").length+1).trim(),c+=n(\"^^^ %s\\n\\n\",y)}}return{long:c.trim(),short:u.trim()}}},{\"add-line-numbers\":62,\"gl-constants/lookup\":247,\"glsl-shader-name\":402,\"sprintf-js\":529}],252:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=t.gl,n=o(r,l.vertex,l.fragment),a=o(r,l.pickVertex,l.pickFragment),i=s(r),u=s(r),h=s(r),f=s(r),p=new c(t,n,a,i,u,h,f);return p.update(e),t.addObject(p),p};var n=t(\"binary-search-bounds\"),a=t(\"iota-array\"),i=t(\"typedarray-pool\"),o=t(\"gl-shader\"),s=t(\"gl-buffer\"),l=t(\"./lib/shaders\");function c(t,e,r,n,a,i,o){this.plot=t,this.shader=e,this.pickShader=r,this.positionBuffer=n,this.weightBuffer=a,this.colorBuffer=i,this.idBuffer=o,this.xData=[],this.yData=[],this.shape=[0,0],this.bounds=[1/0,1/0,-1/0,-1/0],this.pickOffset=0}var u,h=c.prototype,f=[0,0,1,0,0,1,1,0,1,1,0,1];h.draw=(u=[1,0,0,0,1,0,0,0,1],function(){var t=this.plot,e=this.shader,r=this.bounds,n=this.numVertices;if(!(n<=0)){var a=t.gl,i=t.dataBox,o=r[2]-r[0],s=r[3]-r[1],l=i[2]-i[0],c=i[3]-i[1];u[0]=2*o/l,u[4]=2*s/c,u[6]=2*(r[0]-i[0])/l-1,u[7]=2*(r[1]-i[1])/c-1,e.bind();var h=e.uniforms;h.viewTransform=u,h.shape=this.shape;var f=e.attributes;this.positionBuffer.bind(),f.position.pointer(),this.weightBuffer.bind(),f.weight.pointer(a.UNSIGNED_BYTE,!1),this.colorBuffer.bind(),f.color.pointer(a.UNSIGNED_BYTE,!0),a.drawArrays(a.TRIANGLES,0,n)}}),h.drawPick=function(){var t=[1,0,0,0,1,0,0,0,1],e=[0,0,0,0];return function(r){var n=this.plot,a=this.pickShader,i=this.bounds,o=this.numVertices;if(!(o<=0)){var s=n.gl,l=n.dataBox,c=i[2]-i[0],u=i[3]-i[1],h=l[2]-l[0],f=l[3]-l[1];t[0]=2*c/h,t[4]=2*u/f,t[6]=2*(i[0]-l[0])/h-1,t[7]=2*(i[1]-l[1])/f-1;for(var p=0;p<4;++p)e[p]=r>>8*p&255;this.pickOffset=r,a.bind();var d=a.uniforms;d.viewTransform=t,d.pickOffset=e,d.shape=this.shape;var g=a.attributes;return this.positionBuffer.bind(),g.position.pointer(),this.weightBuffer.bind(),g.weight.pointer(s.UNSIGNED_BYTE,!1),this.idBuffer.bind(),g.pickId.pointer(s.UNSIGNED_BYTE,!1),s.drawArrays(s.TRIANGLES,0,o),r+this.shape[0]*this.shape[1]}}}(),h.pick=function(t,e,r){var n=this.pickOffset,a=this.shape[0]*this.shape[1];if(r<n||r>=n+a)return null;var i=r-n,o=this.xData,s=this.yData;return{object:this,pointId:i,dataCoord:[o[i%this.shape[0]],s[i/this.shape[0]|0]]}},h.update=function(t){var e=(t=t||{}).shape||[0,0],r=t.x||a(e[0]),o=t.y||a(e[1]),s=t.z||new Float32Array(e[0]*e[1]);this.xData=r,this.yData=o;var l=t.colorLevels||[0],c=t.colorValues||[0,0,0,1],u=l.length,h=this.bounds,p=h[0]=r[0],d=h[1]=o[0],g=1/((h[2]=r[r.length-1])-p),v=1/((h[3]=o[o.length-1])-d),m=e[0],y=e[1];this.shape=[m,y];var x=(m-1)*(y-1)*(f.length>>>1);this.numVertices=x;for(var b=i.mallocUint8(4*x),_=i.mallocFloat32(2*x),w=i.mallocUint8(2*x),k=i.mallocUint32(x),T=0,A=0;A<y-1;++A)for(var M=v*(o[A]-d),S=v*(o[A+1]-d),E=0;E<m-1;++E)for(var C=g*(r[E]-p),L=g*(r[E+1]-p),P=0;P<f.length;P+=2){var O,I,z,D,R=f[P],F=f[P+1],B=s[(A+F)*m+(E+R)],N=n.le(l,B);if(N<0)O=c[0],I=c[1],z=c[2],D=c[3];else if(N===u-1)O=c[4*u-4],I=c[4*u-3],z=c[4*u-2],D=c[4*u-1];else{var j=(B-l[N])/(l[N+1]-l[N]),V=1-j,U=4*N,q=4*(N+1);O=V*c[U]+j*c[q],I=V*c[U+1]+j*c[q+1],z=V*c[U+2]+j*c[q+2],D=V*c[U+3]+j*c[q+3]}b[4*T]=255*O,b[4*T+1]=255*I,b[4*T+2]=255*z,b[4*T+3]=255*D,_[2*T]=.5*C+.5*L,_[2*T+1]=.5*M+.5*S,w[2*T]=R,w[2*T+1]=F,k[T]=A*m+E,T+=1}this.positionBuffer.update(_),this.weightBuffer.update(w),this.colorBuffer.update(b),this.idBuffer.update(k),i.free(_),i.free(b),i.free(w),i.free(k)},h.dispose=function(){this.shader.dispose(),this.pickShader.dispose(),this.positionBuffer.dispose(),this.weightBuffer.dispose(),this.colorBuffer.dispose(),this.idBuffer.dispose(),this.plot.removeObject(this)}},{\"./lib/shaders\":253,\"binary-search-bounds\":254,\"gl-buffer\":242,\"gl-shader\":302,\"iota-array\":417,\"typedarray-pool\":546}],253:[function(t,e,r){\"use strict\";var n=t(\"glslify\");e.exports={fragment:n([\"precision lowp float;\\n#define GLSLIFY 1\\nvarying vec4 fragColor;\\nvoid main() {\\n  gl_FragColor = vec4(fragColor.rgb * fragColor.a, fragColor.a);\\n}\\n\"]),vertex:n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec2 position;\\nattribute vec4 color;\\nattribute vec2 weight;\\n\\nuniform vec2 shape;\\nuniform mat3 viewTransform;\\n\\nvarying vec4 fragColor;\\n\\nvoid main() {\\n  vec3 vPosition = viewTransform * vec3( position + (weight-.5)/(shape-1.) , 1.0);\\n  fragColor = color;\\n  gl_Position = vec4(vPosition.xy, 0, vPosition.z);\\n}\\n\"]),pickFragment:n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nvarying vec4 fragId;\\nvarying vec2 vWeight;\\n\\nuniform vec2 shape;\\nuniform vec4 pickOffset;\\n\\nvoid main() {\\n  vec2 d = step(.5, vWeight);\\n  vec4 id = fragId + pickOffset;\\n  id.x += d.x + d.y*shape.x;\\n\\n  id.y += floor(id.x / 256.0);\\n  id.x -= floor(id.x / 256.0) * 256.0;\\n\\n  id.z += floor(id.y / 256.0);\\n  id.y -= floor(id.y / 256.0) * 256.0;\\n\\n  id.w += floor(id.z / 256.0);\\n  id.z -= floor(id.z / 256.0) * 256.0;\\n\\n  gl_FragColor = id/255.;\\n}\\n\"]),pickVertex:n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec2 position;\\nattribute vec4 pickId;\\nattribute vec2 weight;\\n\\nuniform vec2 shape;\\nuniform mat3 viewTransform;\\n\\nvarying vec4 fragId;\\nvarying vec2 vWeight;\\n\\nvoid main() {\\n  vWeight = weight;\\n\\n  fragId = pickId;\\n\\n  vec3 vPosition = viewTransform * vec3( position + (weight-.5)/(shape-1.) , 1.0);\\n  gl_Position = vec4(vPosition.xy, 0, vPosition.z);\\n}\\n\"])}},{glslify:410}],254:[function(t,e,r){arguments[4][112][0].apply(r,arguments)},{dup:112}],255:[function(t,e,r){var n=t(\"glslify\"),a=t(\"gl-shader\"),i=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position, nextPosition;\\nattribute float arcLength, lineWidth;\\nattribute vec4 color;\\n\\nuniform vec2 screenShape;\\nuniform float pixelRatio;\\nuniform mat4 model, view, projection;\\n\\nvarying vec4 fragColor;\\nvarying vec3 worldPosition;\\nvarying float pixelArcLength;\\n\\nvec4 project(vec3 p) {\\n  return projection * view * model * vec4(p, 1.0);\\n}\\n\\nvoid main() {\\n  vec4 startPoint = project(position);\\n  vec4 endPoint   = project(nextPosition);\\n\\n  vec2 A = startPoint.xy / startPoint.w;\\n  vec2 B =   endPoint.xy /   endPoint.w;\\n\\n  float clipAngle = atan(\\n    (B.y - A.y) * screenShape.y,\\n    (B.x - A.x) * screenShape.x\\n  );\\n\\n  vec2 offset = 0.5 * pixelRatio * lineWidth * vec2(\\n    sin(clipAngle),\\n    -cos(clipAngle)\\n  ) / screenShape;\\n\\n  gl_Position = vec4(startPoint.xy + startPoint.w * offset, startPoint.zw);\\n\\n  worldPosition = position;\\n  pixelArcLength = arcLength;\\n  fragColor = color;\\n}\\n\"]),o=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3      clipBounds[2];\\nuniform sampler2D dashTexture;\\nuniform float     dashScale;\\nuniform float     opacity;\\n\\nvarying vec3    worldPosition;\\nvarying float   pixelArcLength;\\nvarying vec4    fragColor;\\n\\nvoid main() {\\n  if (\\n    outOfRange(clipBounds[0], clipBounds[1], worldPosition) ||\\n    fragColor.a * opacity == 0.\\n  ) discard;\\n\\n  float dashWeight = texture2D(dashTexture, vec2(dashScale * pixelArcLength, 0)).r;\\n  if(dashWeight < 0.5) {\\n    discard;\\n  }\\n  gl_FragColor = fragColor * opacity;\\n}\\n\"]),s=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\n#define FLOAT_MAX  1.70141184e38\\n#define FLOAT_MIN  1.17549435e-38\\n\\nlowp vec4 encode_float_1604150559(highp float v) {\\n  highp float av = abs(v);\\n\\n  //Handle special cases\\n  if(av < FLOAT_MIN) {\\n    return vec4(0.0, 0.0, 0.0, 0.0);\\n  } else if(v > FLOAT_MAX) {\\n    return vec4(127.0, 128.0, 0.0, 0.0) / 255.0;\\n  } else if(v < -FLOAT_MAX) {\\n    return vec4(255.0, 128.0, 0.0, 0.0) / 255.0;\\n  }\\n\\n  highp vec4 c = vec4(0,0,0,0);\\n\\n  //Compute exponent and mantissa\\n  highp float e = floor(log2(av));\\n  highp float m = av * pow(2.0, -e) - 1.0;\\n  \\n  //Unpack mantissa\\n  c[1] = floor(128.0 * m);\\n  m -= c[1] / 128.0;\\n  c[2] = floor(32768.0 * m);\\n  m -= c[2] / 32768.0;\\n  c[3] = floor(8388608.0 * m);\\n  \\n  //Unpack exponent\\n  highp float ebias = e + 127.0;\\n  c[0] = floor(ebias / 2.0);\\n  ebias -= c[0] * 2.0;\\n  c[1] += floor(ebias) * 128.0; \\n\\n  //Unpack sign bit\\n  c[0] += 128.0 * step(0.0, -v);\\n\\n  //Scale back to range\\n  return c / 255.0;\\n}\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform float pickId;\\nuniform vec3 clipBounds[2];\\n\\nvarying vec3 worldPosition;\\nvarying float pixelArcLength;\\nvarying vec4 fragColor;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], worldPosition)) discard;\\n\\n  gl_FragColor = vec4(pickId/255.0, encode_float_1604150559(pixelArcLength).xyz);\\n}\"]),l=[{name:\"position\",type:\"vec3\"},{name:\"nextPosition\",type:\"vec3\"},{name:\"arcLength\",type:\"float\"},{name:\"lineWidth\",type:\"float\"},{name:\"color\",type:\"vec4\"}];r.createShader=function(t){return a(t,i,o,null,l)},r.createPickShader=function(t){return a(t,i,s,null,l)}},{\"gl-shader\":302,glslify:410}],256:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.gl||t.scene&&t.scene.gl,r=u(e);r.attributes.position.location=0,r.attributes.nextPosition.location=1,r.attributes.arcLength.location=2,r.attributes.lineWidth.location=3,r.attributes.color.location=4;var o=h(e);o.attributes.position.location=0,o.attributes.nextPosition.location=1,o.attributes.arcLength.location=2,o.attributes.lineWidth.location=3,o.attributes.color.location=4;for(var s=n(e),c=a(e,[{buffer:s,size:3,offset:0,stride:48},{buffer:s,size:3,offset:12,stride:48},{buffer:s,size:1,offset:24,stride:48},{buffer:s,size:1,offset:28,stride:48},{buffer:s,size:4,offset:32,stride:48}]),f=l(new Array(1024),[256,1,4]),p=0;p<1024;++p)f.data[p]=255;var d=i(e,f);d.wrap=e.REPEAT;var g=new v(e,r,o,s,c,d);return g.update(t),g};var n=t(\"gl-buffer\"),a=t(\"gl-vao\"),i=t(\"gl-texture2d\"),o=t(\"glsl-read-float\"),s=t(\"binary-search-bounds\"),l=t(\"ndarray\"),c=t(\"./lib/shaders\"),u=c.createShader,h=c.createPickShader,f=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function p(t,e){for(var r=0,n=0;n<3;++n){var a=t[n]-e[n];r+=a*a}return Math.sqrt(r)}function d(t){for(var e=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],r=0;r<3;++r)e[0][r]=Math.max(t[0][r],e[0][r]),e[1][r]=Math.min(t[1][r],e[1][r]);return e}function g(t,e,r,n){this.arcLength=t,this.position=e,this.index=r,this.dataCoordinate=n}function v(t,e,r,n,a,i){this.gl=t,this.shader=e,this.pickShader=r,this.buffer=n,this.vao=a,this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.points=[],this.arcLength=[],this.vertexCount=0,this.bounds=[[0,0,0],[0,0,0]],this.pickId=0,this.lineWidth=1,this.texture=i,this.dashScale=1,this.opacity=1,this.hasAlpha=!1,this.dirty=!0,this.pixelRatio=1}var m=v.prototype;m.isTransparent=function(){return this.hasAlpha},m.isOpaque=function(){return!this.hasAlpha},m.pickSlots=1,m.setPickBase=function(t){this.pickId=t},m.drawTransparent=m.draw=function(t){if(this.vertexCount){var e=this.gl,r=this.shader,n=this.vao;r.bind(),r.uniforms={model:t.model||f,view:t.view||f,projection:t.projection||f,clipBounds:d(this.clipBounds),dashTexture:this.texture.bind(),dashScale:this.dashScale/this.arcLength[this.arcLength.length-1],opacity:this.opacity,screenShape:[e.drawingBufferWidth,e.drawingBufferHeight],pixelRatio:this.pixelRatio},n.bind(),n.draw(e.TRIANGLE_STRIP,this.vertexCount),n.unbind()}},m.drawPick=function(t){if(this.vertexCount){var e=this.gl,r=this.pickShader,n=this.vao;r.bind(),r.uniforms={model:t.model||f,view:t.view||f,projection:t.projection||f,pickId:this.pickId,clipBounds:d(this.clipBounds),screenShape:[e.drawingBufferWidth,e.drawingBufferHeight],pixelRatio:this.pixelRatio},n.bind(),n.draw(e.TRIANGLE_STRIP,this.vertexCount),n.unbind()}},m.update=function(t){var e,r;this.dirty=!0;var n=!!t.connectGaps;\"dashScale\"in t&&(this.dashScale=t.dashScale),this.hasAlpha=!1,\"opacity\"in t&&(this.opacity=+t.opacity,this.opacity<1&&(this.hasAlpha=!0));var a=[],i=[],o=[],c=0,u=0,h=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],f=t.position||t.positions;if(f){var d=t.color||t.colors||[0,0,0,1],g=t.lineWidth||1,v=!1;t:for(e=1;e<f.length;++e){var m,y,x,b=f[e-1],_=f[e];for(i.push(c),o.push(b.slice()),r=0;r<3;++r){if(isNaN(b[r])||isNaN(_[r])||!isFinite(b[r])||!isFinite(_[r])){if(!n&&a.length>0){for(var w=0;w<24;++w)a.push(a[a.length-12]);u+=2,v=!0}continue t}h[0][r]=Math.min(h[0][r],b[r],_[r]),h[1][r]=Math.max(h[1][r],b[r],_[r])}Array.isArray(d[0])?(m=d.length>e-1?d[e-1]:d.length>0?d[d.length-1]:[0,0,0,1],y=d.length>e?d[e]:d.length>0?d[d.length-1]:[0,0,0,1]):m=y=d,3===m.length&&(m=[m[0],m[1],m[2],1]),3===y.length&&(y=[y[0],y[1],y[2],1]),!this.hasAlpha&&m[3]<1&&(this.hasAlpha=!0),x=Array.isArray(g)?g.length>e-1?g[e-1]:g.length>0?g[g.length-1]:[0,0,0,1]:g;var k=c;if(c+=p(b,_),v){for(r=0;r<2;++r)a.push(b[0],b[1],b[2],_[0],_[1],_[2],k,x,m[0],m[1],m[2],m[3]);u+=2,v=!1}a.push(b[0],b[1],b[2],_[0],_[1],_[2],k,x,m[0],m[1],m[2],m[3],b[0],b[1],b[2],_[0],_[1],_[2],k,-x,m[0],m[1],m[2],m[3],_[0],_[1],_[2],b[0],b[1],b[2],c,-x,y[0],y[1],y[2],y[3],_[0],_[1],_[2],b[0],b[1],b[2],c,x,y[0],y[1],y[2],y[3]),u+=4}}if(this.buffer.update(a),i.push(c),o.push(f[f.length-1].slice()),this.bounds=h,this.vertexCount=u,this.points=o,this.arcLength=i,\"dashes\"in t){var T=t.dashes.slice();for(T.unshift(0),e=1;e<T.length;++e)T[e]=T[e-1]+T[e];var A=l(new Array(1024),[256,1,4]);for(e=0;e<256;++e){for(r=0;r<4;++r)A.set(e,0,r,0);1&s.le(T,T[T.length-1]*e/255)?A.set(e,0,0,0):A.set(e,0,0,255)}this.texture.setPixels(A)}},m.dispose=function(){this.shader.dispose(),this.vao.dispose(),this.buffer.dispose()},m.pick=function(t){if(!t)return null;if(t.id!==this.pickId)return null;var e=o(t.value[0],t.value[1],t.value[2],0),r=s.le(this.arcLength,e);if(r<0)return null;if(r===this.arcLength.length-1)return new g(this.arcLength[this.arcLength.length-1],this.points[this.points.length-1].slice(),r);for(var n=this.points[r],a=this.points[Math.min(r+1,this.points.length-1)],i=(e-this.arcLength[r])/(this.arcLength[r+1]-this.arcLength[r]),l=1-i,c=[0,0,0],u=0;u<3;++u)c[u]=l*n[u]+i*a[u];var h=Math.min(i<.5?r:r+1,this.points.length-1);return new g(e,c,h,this.points[h])}},{\"./lib/shaders\":255,\"binary-search-bounds\":257,\"gl-buffer\":242,\"gl-texture2d\":323,\"gl-vao\":328,\"glsl-read-float\":401,ndarray:451}],257:[function(t,e,r){arguments[4][112][0].apply(r,arguments)},{dup:112}],258:[function(t,e,r){e.exports=function(t,e){var r=e[0],n=e[1],a=e[2],i=e[3],o=r*i-a*n;return o?(o=1/o,t[0]=i*o,t[1]=-n*o,t[2]=-a*o,t[3]=r*o,t):null}},{}],259:[function(t,e,r){e.exports=function(t,e){var r=e[0],n=e[1],a=e[2],i=e[3],o=e[4],s=e[5],l=e[6],c=e[7],u=e[8],h=u*o-s*c,f=-u*i+s*l,p=c*i-o*l,d=r*h+n*f+a*p;return d?(d=1/d,t[0]=h*d,t[1]=(-u*n+a*c)*d,t[2]=(s*n-a*o)*d,t[3]=f*d,t[4]=(u*r-a*l)*d,t[5]=(-s*r+a*i)*d,t[6]=p*d,t[7]=(-c*r+n*l)*d,t[8]=(o*r-n*i)*d,t):null}},{}],260:[function(t,e,r){e.exports=function(t){var e=new Float32Array(16);return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e[4]=t[4],e[5]=t[5],e[6]=t[6],e[7]=t[7],e[8]=t[8],e[9]=t[9],e[10]=t[10],e[11]=t[11],e[12]=t[12],e[13]=t[13],e[14]=t[14],e[15]=t[15],e}},{}],261:[function(t,e,r){e.exports=function(){var t=new Float32Array(16);return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}},{}],262:[function(t,e,r){e.exports=function(t){var e=t[0],r=t[1],n=t[2],a=t[3],i=t[4],o=t[5],s=t[6],l=t[7],c=t[8],u=t[9],h=t[10],f=t[11],p=t[12],d=t[13],g=t[14],v=t[15];return(e*o-r*i)*(h*v-f*g)-(e*s-n*i)*(u*v-f*d)+(e*l-a*i)*(u*g-h*d)+(r*s-n*o)*(c*v-f*p)-(r*l-a*o)*(c*g-h*p)+(n*l-a*s)*(c*d-u*p)}},{}],263:[function(t,e,r){e.exports=function(t,e){var r=e[0],n=e[1],a=e[2],i=e[3],o=r+r,s=n+n,l=a+a,c=r*o,u=n*o,h=n*s,f=a*o,p=a*s,d=a*l,g=i*o,v=i*s,m=i*l;return t[0]=1-h-d,t[1]=u+m,t[2]=f-v,t[3]=0,t[4]=u-m,t[5]=1-c-d,t[6]=p+g,t[7]=0,t[8]=f+v,t[9]=p-g,t[10]=1-c-h,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}},{}],264:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],a=e[1],i=e[2],o=e[3],s=n+n,l=a+a,c=i+i,u=n*s,h=n*l,f=n*c,p=a*l,d=a*c,g=i*c,v=o*s,m=o*l,y=o*c;return t[0]=1-(p+g),t[1]=h+y,t[2]=f-m,t[3]=0,t[4]=h-y,t[5]=1-(u+g),t[6]=d+v,t[7]=0,t[8]=f+m,t[9]=d-v,t[10]=1-(u+p),t[11]=0,t[12]=r[0],t[13]=r[1],t[14]=r[2],t[15]=1,t}},{}],265:[function(t,e,r){e.exports=function(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}},{}],266:[function(t,e,r){e.exports=function(t,e){var r=e[0],n=e[1],a=e[2],i=e[3],o=e[4],s=e[5],l=e[6],c=e[7],u=e[8],h=e[9],f=e[10],p=e[11],d=e[12],g=e[13],v=e[14],m=e[15],y=r*s-n*o,x=r*l-a*o,b=r*c-i*o,_=n*l-a*s,w=n*c-i*s,k=a*c-i*l,T=u*g-h*d,A=u*v-f*d,M=u*m-p*d,S=h*v-f*g,E=h*m-p*g,C=f*m-p*v,L=y*C-x*E+b*S+_*M-w*A+k*T;if(!L)return null;return L=1/L,t[0]=(s*C-l*E+c*S)*L,t[1]=(a*E-n*C-i*S)*L,t[2]=(g*k-v*w+m*_)*L,t[3]=(f*w-h*k-p*_)*L,t[4]=(l*M-o*C-c*A)*L,t[5]=(r*C-a*M+i*A)*L,t[6]=(v*b-d*k-m*x)*L,t[7]=(u*k-f*b+p*x)*L,t[8]=(o*E-s*M+c*T)*L,t[9]=(n*M-r*E-i*T)*L,t[10]=(d*w-g*b+m*y)*L,t[11]=(h*b-u*w-p*y)*L,t[12]=(s*A-o*S-l*T)*L,t[13]=(r*S-n*A+a*T)*L,t[14]=(g*x-d*_-v*y)*L,t[15]=(u*_-h*x+f*y)*L,t}},{}],267:[function(t,e,r){var n=t(\"./identity\");e.exports=function(t,e,r,a){var i,o,s,l,c,u,h,f,p,d,g=e[0],v=e[1],m=e[2],y=a[0],x=a[1],b=a[2],_=r[0],w=r[1],k=r[2];if(Math.abs(g-_)<1e-6&&Math.abs(v-w)<1e-6&&Math.abs(m-k)<1e-6)return n(t);h=g-_,f=v-w,p=m-k,d=1/Math.sqrt(h*h+f*f+p*p),i=x*(p*=d)-b*(f*=d),o=b*(h*=d)-y*p,s=y*f-x*h,(d=Math.sqrt(i*i+o*o+s*s))?(i*=d=1/d,o*=d,s*=d):(i=0,o=0,s=0);l=f*s-p*o,c=p*i-h*s,u=h*o-f*i,(d=Math.sqrt(l*l+c*c+u*u))?(l*=d=1/d,c*=d,u*=d):(l=0,c=0,u=0);return t[0]=i,t[1]=l,t[2]=h,t[3]=0,t[4]=o,t[5]=c,t[6]=f,t[7]=0,t[8]=s,t[9]=u,t[10]=p,t[11]=0,t[12]=-(i*g+o*v+s*m),t[13]=-(l*g+c*v+u*m),t[14]=-(h*g+f*v+p*m),t[15]=1,t}},{\"./identity\":265}],268:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],a=e[1],i=e[2],o=e[3],s=e[4],l=e[5],c=e[6],u=e[7],h=e[8],f=e[9],p=e[10],d=e[11],g=e[12],v=e[13],m=e[14],y=e[15],x=r[0],b=r[1],_=r[2],w=r[3];return t[0]=x*n+b*s+_*h+w*g,t[1]=x*a+b*l+_*f+w*v,t[2]=x*i+b*c+_*p+w*m,t[3]=x*o+b*u+_*d+w*y,x=r[4],b=r[5],_=r[6],w=r[7],t[4]=x*n+b*s+_*h+w*g,t[5]=x*a+b*l+_*f+w*v,t[6]=x*i+b*c+_*p+w*m,t[7]=x*o+b*u+_*d+w*y,x=r[8],b=r[9],_=r[10],w=r[11],t[8]=x*n+b*s+_*h+w*g,t[9]=x*a+b*l+_*f+w*v,t[10]=x*i+b*c+_*p+w*m,t[11]=x*o+b*u+_*d+w*y,x=r[12],b=r[13],_=r[14],w=r[15],t[12]=x*n+b*s+_*h+w*g,t[13]=x*a+b*l+_*f+w*v,t[14]=x*i+b*c+_*p+w*m,t[15]=x*o+b*u+_*d+w*y,t}},{}],269:[function(t,e,r){e.exports=function(t,e,r,n,a,i,o){var s=1/(e-r),l=1/(n-a),c=1/(i-o);return t[0]=-2*s,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=-2*l,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=2*c,t[11]=0,t[12]=(e+r)*s,t[13]=(a+n)*l,t[14]=(o+i)*c,t[15]=1,t}},{}],270:[function(t,e,r){e.exports=function(t,e,r,n,a){var i=1/Math.tan(e/2),o=1/(n-a);return t[0]=i/r,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=i,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=(a+n)*o,t[11]=-1,t[12]=0,t[13]=0,t[14]=2*a*n*o,t[15]=0,t}},{}],271:[function(t,e,r){e.exports=function(t,e,r,n){var a,i,o,s,l,c,u,h,f,p,d,g,v,m,y,x,b,_,w,k,T,A,M,S,E=n[0],C=n[1],L=n[2],P=Math.sqrt(E*E+C*C+L*L);if(Math.abs(P)<1e-6)return null;E*=P=1/P,C*=P,L*=P,a=Math.sin(r),i=Math.cos(r),o=1-i,s=e[0],l=e[1],c=e[2],u=e[3],h=e[4],f=e[5],p=e[6],d=e[7],g=e[8],v=e[9],m=e[10],y=e[11],x=E*E*o+i,b=C*E*o+L*a,_=L*E*o-C*a,w=E*C*o-L*a,k=C*C*o+i,T=L*C*o+E*a,A=E*L*o+C*a,M=C*L*o-E*a,S=L*L*o+i,t[0]=s*x+h*b+g*_,t[1]=l*x+f*b+v*_,t[2]=c*x+p*b+m*_,t[3]=u*x+d*b+y*_,t[4]=s*w+h*k+g*T,t[5]=l*w+f*k+v*T,t[6]=c*w+p*k+m*T,t[7]=u*w+d*k+y*T,t[8]=s*A+h*M+g*S,t[9]=l*A+f*M+v*S,t[10]=c*A+p*M+m*S,t[11]=u*A+d*M+y*S,e!==t&&(t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15]);return t}},{}],272:[function(t,e,r){e.exports=function(t,e,r){var n=Math.sin(r),a=Math.cos(r),i=e[4],o=e[5],s=e[6],l=e[7],c=e[8],u=e[9],h=e[10],f=e[11];e!==t&&(t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15]);return t[4]=i*a+c*n,t[5]=o*a+u*n,t[6]=s*a+h*n,t[7]=l*a+f*n,t[8]=c*a-i*n,t[9]=u*a-o*n,t[10]=h*a-s*n,t[11]=f*a-l*n,t}},{}],273:[function(t,e,r){e.exports=function(t,e,r){var n=Math.sin(r),a=Math.cos(r),i=e[0],o=e[1],s=e[2],l=e[3],c=e[8],u=e[9],h=e[10],f=e[11];e!==t&&(t[4]=e[4],t[5]=e[5],t[6]=e[6],t[7]=e[7],t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15]);return t[0]=i*a-c*n,t[1]=o*a-u*n,t[2]=s*a-h*n,t[3]=l*a-f*n,t[8]=i*n+c*a,t[9]=o*n+u*a,t[10]=s*n+h*a,t[11]=l*n+f*a,t}},{}],274:[function(t,e,r){e.exports=function(t,e,r){var n=Math.sin(r),a=Math.cos(r),i=e[0],o=e[1],s=e[2],l=e[3],c=e[4],u=e[5],h=e[6],f=e[7];e!==t&&(t[8]=e[8],t[9]=e[9],t[10]=e[10],t[11]=e[11],t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15]);return t[0]=i*a+c*n,t[1]=o*a+u*n,t[2]=s*a+h*n,t[3]=l*a+f*n,t[4]=c*a-i*n,t[5]=u*a-o*n,t[6]=h*a-s*n,t[7]=f*a-l*n,t}},{}],275:[function(t,e,r){e.exports=function(t,e,r){var n=r[0],a=r[1],i=r[2];return t[0]=e[0]*n,t[1]=e[1]*n,t[2]=e[2]*n,t[3]=e[3]*n,t[4]=e[4]*a,t[5]=e[5]*a,t[6]=e[6]*a,t[7]=e[7]*a,t[8]=e[8]*i,t[9]=e[9]*i,t[10]=e[10]*i,t[11]=e[11]*i,t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15],t}},{}],276:[function(t,e,r){e.exports=function(t,e,r){var n,a,i,o,s,l,c,u,h,f,p,d,g=r[0],v=r[1],m=r[2];e===t?(t[12]=e[0]*g+e[4]*v+e[8]*m+e[12],t[13]=e[1]*g+e[5]*v+e[9]*m+e[13],t[14]=e[2]*g+e[6]*v+e[10]*m+e[14],t[15]=e[3]*g+e[7]*v+e[11]*m+e[15]):(n=e[0],a=e[1],i=e[2],o=e[3],s=e[4],l=e[5],c=e[6],u=e[7],h=e[8],f=e[9],p=e[10],d=e[11],t[0]=n,t[1]=a,t[2]=i,t[3]=o,t[4]=s,t[5]=l,t[6]=c,t[7]=u,t[8]=h,t[9]=f,t[10]=p,t[11]=d,t[12]=n*g+s*v+h*m+e[12],t[13]=a*g+l*v+f*m+e[13],t[14]=i*g+c*v+p*m+e[14],t[15]=o*g+u*v+d*m+e[15]);return t}},{}],277:[function(t,e,r){e.exports=function(t,e){if(t===e){var r=e[1],n=e[2],a=e[3],i=e[6],o=e[7],s=e[11];t[1]=e[4],t[2]=e[8],t[3]=e[12],t[4]=r,t[6]=e[9],t[7]=e[13],t[8]=n,t[9]=i,t[11]=e[14],t[12]=a,t[13]=o,t[14]=s}else t[0]=e[0],t[1]=e[4],t[2]=e[8],t[3]=e[12],t[4]=e[1],t[5]=e[5],t[6]=e[9],t[7]=e[13],t[8]=e[2],t[9]=e[6],t[10]=e[10],t[11]=e[14],t[12]=e[3],t[13]=e[7],t[14]=e[11],t[15]=e[15];return t}},{}],278:[function(t,e,r){\"use strict\";e.exports=function(t,e){switch(e.length){case 0:break;case 1:t[0]=1/e[0];break;case 4:n(t,e);break;case 9:a(t,e);break;case 16:i(t,e);break;default:throw new Error(\"currently supports matrices up to 4x4\")}return t};var n=t(\"gl-mat2/invert\"),a=t(\"gl-mat3/invert\"),i=t(\"gl-mat4/invert\")},{\"gl-mat2/invert\":258,\"gl-mat3/invert\":259,\"gl-mat4/invert\":266}],279:[function(t,e,r){\"use strict\";var n=t(\"barycentric\"),a=t(\"polytope-closest-point/lib/closest_point_2d.js\");function i(t,e){for(var r=[0,0,0,0],n=0;n<4;++n)for(var a=0;a<4;++a)r[a]+=t[4*n+a]*e[n];return r}function o(t,e,r,n,a){for(var o=i(n,i(r,i(e,[t[0],t[1],t[2],1]))),s=0;s<3;++s)o[s]/=o[3];return[.5*a[0]*(1+o[0]),.5*a[1]*(1-o[1])]}e.exports=function(t,e,r,i,s,l){if(1===t.length)return[0,t[0].slice()];for(var c=new Array(t.length),u=0;u<t.length;++u)c[u]=o(t[u],r,i,s,l);for(var h=0,f=1/0,u=0;u<c.length;++u){for(var p=0,d=0;d<2;++d)p+=Math.pow(c[u][d]-e[d],2);p<f&&(f=p,h=u)}for(var g=function(t,e){if(2===t.length){for(var r=0,i=0,o=0;o<2;++o)r+=Math.pow(e[o]-t[0][o],2),i+=Math.pow(e[o]-t[1][o],2);return r=Math.sqrt(r),i=Math.sqrt(i),r+i<1e-6?[1,0]:[i/(r+i),r/(i+r)]}if(3===t.length){var s=[0,0];return a(t[0],t[1],t[2],e,s),n(t,s)}return[]}(c,e),v=0,u=0;u<3;++u){if(g[u]<-.001||g[u]>1.0001)return null;v+=g[u]}if(Math.abs(v-1)>.001)return null;return[h,function(t,e){for(var r=[0,0,0],n=0;n<t.length;++n)for(var a=t[n],i=e[n],o=0;o<3;++o)r[o]+=i*a[o];return r}(t,g),g]}},{barycentric:74,\"polytope-closest-point/lib/closest_point_2d.js\":482}],280:[function(t,e,r){var n=t(\"glslify\"),a=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position, normal;\\nattribute vec4 color;\\nattribute vec2 uv;\\n\\nuniform mat4 model\\n           , view\\n           , projection\\n           , inverseModel;\\nuniform vec3 eyePosition\\n           , lightPosition;\\n\\nvarying vec3 f_normal\\n           , f_lightDirection\\n           , f_eyeDirection\\n           , f_data;\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvec4 project(vec3 p) {\\n  return projection * view * model * vec4(p, 1.0);\\n}\\n\\nvoid main() {\\n  gl_Position      = project(position);\\n\\n  //Lighting geometry parameters\\n  vec4 cameraCoordinate = view * vec4(position , 1.0);\\n  cameraCoordinate.xyz /= cameraCoordinate.w;\\n  f_lightDirection = lightPosition - cameraCoordinate.xyz;\\n  f_eyeDirection   = eyePosition - cameraCoordinate.xyz;\\n  f_normal  = normalize((vec4(normal, 0.0) * inverseModel).xyz);\\n\\n  f_color          = color;\\n  f_data           = position;\\n  f_uv             = uv;\\n}\\n\"]),i=n([\"#extension GL_OES_standard_derivatives : enable\\n\\nprecision highp float;\\n#define GLSLIFY 1\\n\\nfloat beckmannDistribution(float x, float roughness) {\\n  float NdotH = max(x, 0.0001);\\n  float cos2Alpha = NdotH * NdotH;\\n  float tan2Alpha = (cos2Alpha - 1.0) / cos2Alpha;\\n  float roughness2 = roughness * roughness;\\n  float denom = 3.141592653589793 * roughness2 * cos2Alpha * cos2Alpha;\\n  return exp(tan2Alpha / roughness2) / denom;\\n}\\n\\nfloat cookTorranceSpecular(\\n  vec3 lightDirection,\\n  vec3 viewDirection,\\n  vec3 surfaceNormal,\\n  float roughness,\\n  float fresnel) {\\n\\n  float VdotN = max(dot(viewDirection, surfaceNormal), 0.0);\\n  float LdotN = max(dot(lightDirection, surfaceNormal), 0.0);\\n\\n  //Half angle vector\\n  vec3 H = normalize(lightDirection + viewDirection);\\n\\n  //Geometric term\\n  float NdotH = max(dot(surfaceNormal, H), 0.0);\\n  float VdotH = max(dot(viewDirection, H), 0.000001);\\n  float LdotH = max(dot(lightDirection, H), 0.000001);\\n  float G1 = (2.0 * NdotH * VdotN) / VdotH;\\n  float G2 = (2.0 * NdotH * LdotN) / LdotH;\\n  float G = min(1.0, min(G1, G2));\\n  \\n  //Distribution term\\n  float D = beckmannDistribution(NdotH, roughness);\\n\\n  //Fresnel term\\n  float F = pow(1.0 - VdotN, fresnel);\\n\\n  //Multiply terms and done\\n  return  G * F * D / max(3.14159265 * VdotN, 0.000001);\\n}\\n\\n//#pragma glslify: beckmann = require(glsl-specular-beckmann) // used in gl-surface3d\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 clipBounds[2];\\nuniform float roughness\\n            , fresnel\\n            , kambient\\n            , kdiffuse\\n            , kspecular;\\nuniform sampler2D texture;\\n\\nvarying vec3 f_normal\\n           , f_lightDirection\\n           , f_eyeDirection\\n           , f_data;\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n  if (f_color.a == 0.0 ||\\n    outOfRange(clipBounds[0], clipBounds[1], f_data)\\n  ) discard;\\n\\n  vec3 N = normalize(f_normal);\\n  vec3 L = normalize(f_lightDirection);\\n  vec3 V = normalize(f_eyeDirection);\\n\\n  if(gl_FrontFacing) {\\n    N = -N;\\n  }\\n\\n  float specular = min(1.0, max(0.0, cookTorranceSpecular(L, V, N, roughness, fresnel)));\\n  //float specular = max(0.0, beckmann(L, V, N, roughness)); // used in gl-surface3d\\n\\n  float diffuse  = min(kambient + kdiffuse * max(dot(N, L), 0.0), 1.0);\\n\\n  vec4 surfaceColor = vec4(f_color.rgb, 1.0) * texture2D(texture, f_uv);\\n  vec4 litColor = surfaceColor.a * vec4(diffuse * surfaceColor.rgb + kspecular * vec3(1,1,1) * specular,  1.0);\\n\\n  gl_FragColor = litColor * f_color.a;\\n}\\n\"]),o=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position;\\nattribute vec4 color;\\nattribute vec2 uv;\\n\\nuniform mat4 model, view, projection;\\n\\nvarying vec4 f_color;\\nvarying vec3 f_data;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n  gl_Position = projection * view * model * vec4(position, 1.0);\\n  f_color = color;\\n  f_data  = position;\\n  f_uv    = uv;\\n}\"]),s=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 clipBounds[2];\\nuniform sampler2D texture;\\nuniform float opacity;\\n\\nvarying vec4 f_color;\\nvarying vec3 f_data;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], f_data)) discard;\\n\\n  gl_FragColor = f_color * texture2D(texture, f_uv) * opacity;\\n}\"]),l=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nattribute vec3 position;\\nattribute vec4 color;\\nattribute vec2 uv;\\nattribute float pointSize;\\n\\nuniform mat4 model, view, projection;\\nuniform vec3 clipBounds[2];\\n\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], position)) {\\n\\n    gl_Position = vec4(0.0, 0.0 ,0.0 ,0.0);\\n  } else {\\n    gl_Position = projection * view * model * vec4(position, 1.0);\\n  }\\n  gl_PointSize = pointSize;\\n  f_color = color;\\n  f_uv = uv;\\n}\"]),c=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nuniform sampler2D texture;\\nuniform float opacity;\\n\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n  vec2 pointR = gl_PointCoord.xy - vec2(0.5, 0.5);\\n  if(dot(pointR, pointR) > 0.25) {\\n    discard;\\n  }\\n  gl_FragColor = f_color * texture2D(texture, f_uv) * opacity;\\n}\"]),u=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position;\\nattribute vec4 id;\\n\\nuniform mat4 model, view, projection;\\n\\nvarying vec3 f_position;\\nvarying vec4 f_id;\\n\\nvoid main() {\\n  gl_Position = projection * view * model * vec4(position, 1.0);\\n  f_id        = id;\\n  f_position  = position;\\n}\"]),h=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3  clipBounds[2];\\nuniform float pickId;\\n\\nvarying vec3 f_position;\\nvarying vec4 f_id;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\\n\\n  gl_FragColor = vec4(pickId, f_id.xyz);\\n}\"]),f=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nattribute vec3  position;\\nattribute float pointSize;\\nattribute vec4  id;\\n\\nuniform mat4 model, view, projection;\\nuniform vec3 clipBounds[2];\\n\\nvarying vec3 f_position;\\nvarying vec4 f_id;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], position)) {\\n\\n    gl_Position = vec4(0.0, 0.0, 0.0, 0.0);\\n  } else {\\n    gl_Position  = projection * view * model * vec4(position, 1.0);\\n    gl_PointSize = pointSize;\\n  }\\n  f_id         = id;\\n  f_position   = position;\\n}\"]),p=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position;\\n\\nuniform mat4 model, view, projection;\\n\\nvoid main() {\\n  gl_Position = projection * view * model * vec4(position, 1.0);\\n}\"]),d=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nuniform vec3 contourColor;\\n\\nvoid main() {\\n  gl_FragColor = vec4(contourColor, 1.0);\\n}\\n\"]);r.meshShader={vertex:a,fragment:i,attributes:[{name:\"position\",type:\"vec3\"},{name:\"normal\",type:\"vec3\"},{name:\"color\",type:\"vec4\"},{name:\"uv\",type:\"vec2\"}]},r.wireShader={vertex:o,fragment:s,attributes:[{name:\"position\",type:\"vec3\"},{name:\"color\",type:\"vec4\"},{name:\"uv\",type:\"vec2\"}]},r.pointShader={vertex:l,fragment:c,attributes:[{name:\"position\",type:\"vec3\"},{name:\"color\",type:\"vec4\"},{name:\"uv\",type:\"vec2\"},{name:\"pointSize\",type:\"float\"}]},r.pickShader={vertex:u,fragment:h,attributes:[{name:\"position\",type:\"vec3\"},{name:\"id\",type:\"vec4\"}]},r.pointPickShader={vertex:f,fragment:h,attributes:[{name:\"position\",type:\"vec3\"},{name:\"pointSize\",type:\"float\"},{name:\"id\",type:\"vec4\"}]},r.contourShader={vertex:p,fragment:d,attributes:[{name:\"position\",type:\"vec3\"}]}},{glslify:410}],281:[function(t,e,r){\"use strict\";var n=t(\"gl-shader\"),a=t(\"gl-buffer\"),i=t(\"gl-vao\"),o=t(\"gl-texture2d\"),s=t(\"normals\"),l=t(\"gl-mat4/multiply\"),c=t(\"gl-mat4/invert\"),u=t(\"ndarray\"),h=t(\"colormap\"),f=t(\"simplicial-complex-contour\"),p=t(\"typedarray-pool\"),d=t(\"./lib/shaders\"),g=t(\"./lib/closest-point\"),v=d.meshShader,m=d.wireShader,y=d.pointShader,x=d.pickShader,b=d.pointPickShader,_=d.contourShader,w=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function k(t,e,r,n,a,i,o,s,l,c,u,h,f,p,d,g,v,m,y,x,b,_,k,T,A,M,S){this.gl=t,this.pixelRatio=1,this.cells=[],this.positions=[],this.intensity=[],this.texture=e,this.dirty=!0,this.triShader=r,this.lineShader=n,this.pointShader=a,this.pickShader=i,this.pointPickShader=o,this.contourShader=s,this.trianglePositions=l,this.triangleColors=u,this.triangleNormals=f,this.triangleUVs=h,this.triangleIds=c,this.triangleVAO=p,this.triangleCount=0,this.lineWidth=1,this.edgePositions=d,this.edgeColors=v,this.edgeUVs=m,this.edgeIds=g,this.edgeVAO=y,this.edgeCount=0,this.pointPositions=x,this.pointColors=_,this.pointUVs=k,this.pointSizes=T,this.pointIds=b,this.pointVAO=A,this.pointCount=0,this.contourLineWidth=1,this.contourPositions=M,this.contourVAO=S,this.contourCount=0,this.contourColor=[0,0,0],this.contourEnable=!0,this.pickId=1,this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.lightPosition=[1e5,1e5,0],this.ambientLight=.8,this.diffuseLight=.8,this.specularLight=2,this.roughness=.5,this.fresnel=1.5,this.opacity=1,this.hasAlpha=!1,this.opacityscale=!1,this._model=w,this._view=w,this._projection=w,this._resolution=[1,1]}var T=k.prototype;function A(t,e){if(!e)return 1;if(!e.length)return 1;for(var r=0;r<e.length;++r){if(e.length<2)return 1;if(e[r][0]===t)return e[r][1];if(e[r][0]>t&&r>0){var n=(e[r][0]-t)/(e[r][0]-e[r-1][0]);return e[r][1]*(1-n)+n*e[r-1][1]}}return 1}function M(t){var e=n(t,y.vertex,y.fragment);return e.attributes.position.location=0,e.attributes.color.location=2,e.attributes.uv.location=3,e.attributes.pointSize.location=4,e}function S(t){var e=n(t,x.vertex,x.fragment);return e.attributes.position.location=0,e.attributes.id.location=1,e}function E(t){var e=n(t,b.vertex,b.fragment);return e.attributes.position.location=0,e.attributes.id.location=1,e.attributes.pointSize.location=4,e}function C(t){var e=n(t,_.vertex,_.fragment);return e.attributes.position.location=0,e}T.isOpaque=function(){return!this.hasAlpha},T.isTransparent=function(){return this.hasAlpha},T.pickSlots=1,T.setPickBase=function(t){this.pickId=t},T.highlight=function(t){if(t&&this.contourEnable){for(var e=f(this.cells,this.intensity,t.intensity),r=e.cells,n=e.vertexIds,a=e.vertexWeights,i=r.length,o=p.mallocFloat32(6*i),s=0,l=0;l<i;++l)for(var c=r[l],u=0;u<2;++u){var h=c[0];2===c.length&&(h=c[u]);for(var d=n[h][0],g=n[h][1],v=a[h],m=1-v,y=this.positions[d],x=this.positions[g],b=0;b<3;++b)o[s++]=v*y[b]+m*x[b]}this.contourCount=s/3|0,this.contourPositions.update(o.subarray(0,s)),p.free(o)}else this.contourCount=0},T.update=function(t){t=t||{};var e=this.gl;this.dirty=!0,\"contourEnable\"in t&&(this.contourEnable=t.contourEnable),\"contourColor\"in t&&(this.contourColor=t.contourColor),\"lineWidth\"in t&&(this.lineWidth=t.lineWidth),\"lightPosition\"in t&&(this.lightPosition=t.lightPosition),this.hasAlpha=!1,\"opacity\"in t&&(this.opacity=t.opacity,this.opacity<1&&(this.hasAlpha=!0)),\"opacityscale\"in t&&(this.opacityscale=t.opacityscale,this.hasAlpha=!0),\"ambient\"in t&&(this.ambientLight=t.ambient),\"diffuse\"in t&&(this.diffuseLight=t.diffuse),\"specular\"in t&&(this.specularLight=t.specular),\"roughness\"in t&&(this.roughness=t.roughness),\"fresnel\"in t&&(this.fresnel=t.fresnel),t.texture?(this.texture.dispose(),this.texture=o(e,t.texture)):t.colormap&&(this.texture.shape=[256,256],this.texture.minFilter=e.LINEAR_MIPMAP_LINEAR,this.texture.magFilter=e.LINEAR,this.texture.setPixels(function(t,e){for(var r=h({colormap:t,nshades:256,format:\"rgba\"}),n=new Uint8Array(1024),a=0;a<256;++a){for(var i=r[a],o=0;o<3;++o)n[4*a+o]=i[o];n[4*a+3]=e?255*A(a/255,e):255*i[3]}return u(n,[256,256,4],[4,0,1])}(t.colormap,this.opacityscale)),this.texture.generateMipmap());var r=t.cells,n=t.positions;if(n&&r){var a=[],i=[],l=[],c=[],f=[],p=[],d=[],g=[],v=[],m=[],y=[],x=[],b=[],_=[];this.cells=r,this.positions=n;var w=t.vertexNormals,k=t.cellNormals,T=void 0===t.vertexNormalsEpsilon?1e-6:t.vertexNormalsEpsilon,M=void 0===t.faceNormalsEpsilon?1e-6:t.faceNormalsEpsilon;t.useFacetNormals&&!k&&(k=s.faceNormals(r,n,M)),k||w||(w=s.vertexNormals(r,n,T));var S=t.vertexColors,E=t.cellColors,C=t.meshColor||[1,1,1,1],L=t.vertexUVs,P=t.vertexIntensity,O=t.cellUVs,I=t.cellIntensity,z=1/0,D=-1/0;if(!L&&!O)if(P)if(t.vertexIntensityBounds)z=+t.vertexIntensityBounds[0],D=+t.vertexIntensityBounds[1];else for(var R=0;R<P.length;++R){var F=P[R];z=Math.min(z,F),D=Math.max(D,F)}else if(I)for(R=0;R<I.length;++R){F=I[R];z=Math.min(z,F),D=Math.max(D,F)}else for(R=0;R<n.length;++R){F=n[R][2];z=Math.min(z,F),D=Math.max(D,F)}this.intensity=P||(I?function(t,e,r){for(var n=new Array(e),a=0;a<e;++a)n[a]=0;var i=t.length;for(a=0;a<i;++a)for(var o=t[a],s=0;s<o.length;++s)n[o[s]]=r[a];return n}(r,n.length,I):function(t){for(var e=t.length,r=new Array(e),n=0;n<e;++n)r[n]=t[n][2];return r}(n));var B=t.pointSizes,N=t.pointSize||1;this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]];for(R=0;R<n.length;++R)for(var j=n[R],V=0;V<3;++V)!isNaN(j[V])&&isFinite(j[V])&&(this.bounds[0][V]=Math.min(this.bounds[0][V],j[V]),this.bounds[1][V]=Math.max(this.bounds[1][V],j[V]));var U=0,q=0,H=0;t:for(R=0;R<r.length;++R){var G=r[R];switch(G.length){case 1:for(j=n[W=G[0]],V=0;V<3;++V)if(isNaN(j[V])||!isFinite(j[V]))continue t;m.push(j[0],j[1],j[2]),X=S?S[W]:E?E[R]:C,this.opacityscale&&P?i.push(X[0],X[1],X[2],this.opacity*A((P[W]-z)/(D-z),this.opacityscale)):3===X.length?y.push(X[0],X[1],X[2],this.opacity):(y.push(X[0],X[1],X[2],X[3]*this.opacity),!this.hasAlpha&&X[3]<1&&(this.hasAlpha=!0)),Z=L?L[W]:P?[(P[W]-z)/(D-z),0]:O?O[R]:I?[(I[R]-z)/(D-z),0]:[(j[2]-z)/(D-z),0],x.push(Z[0],Z[1]),B?b.push(B[W]):b.push(N),_.push(R),H+=1;break;case 2:for(V=0;V<2;++V){j=n[W=G[V]];for(var Y=0;Y<3;++Y)if(isNaN(j[Y])||!isFinite(j[Y]))continue t}for(V=0;V<2;++V){j=n[W=G[V]];p.push(j[0],j[1],j[2]),X=S?S[W]:E?E[R]:C,this.opacityscale&&P?i.push(X[0],X[1],X[2],this.opacity*A((P[W]-z)/(D-z),this.opacityscale)):3===X.length?d.push(X[0],X[1],X[2],this.opacity):(d.push(X[0],X[1],X[2],X[3]*this.opacity),!this.hasAlpha&&X[3]<1&&(this.hasAlpha=!0)),Z=L?L[W]:P?[(P[W]-z)/(D-z),0]:O?O[R]:I?[(I[R]-z)/(D-z),0]:[(j[2]-z)/(D-z),0],g.push(Z[0],Z[1]),v.push(R)}q+=1;break;case 3:for(V=0;V<3;++V)for(j=n[W=G[V]],Y=0;Y<3;++Y)if(isNaN(j[Y])||!isFinite(j[Y]))continue t;for(V=0;V<3;++V){var W,X,Z,J;j=n[W=G[2-V]];a.push(j[0],j[1],j[2]),X=S?S[W]:E?E[R]:C,this.opacityscale&&P?i.push(X[0],X[1],X[2],this.opacity*A((P[W]-z)/(D-z),this.opacityscale)):3===X.length?i.push(X[0],X[1],X[2],this.opacity):(i.push(X[0],X[1],X[2],X[3]*this.opacity),!this.hasAlpha&&X[3]<1&&(this.hasAlpha=!0)),Z=L?L[W]:P?[(P[W]-z)/(D-z),0]:O?O[R]:I?[(I[R]-z)/(D-z),0]:[(j[2]-z)/(D-z),0],c.push(Z[0],Z[1]),J=w?w[W]:k[R],l.push(J[0],J[1],J[2]),f.push(R)}U+=1}}this.pointCount=H,this.edgeCount=q,this.triangleCount=U,this.pointPositions.update(m),this.pointColors.update(y),this.pointUVs.update(x),this.pointSizes.update(b),this.pointIds.update(new Uint32Array(_)),this.edgePositions.update(p),this.edgeColors.update(d),this.edgeUVs.update(g),this.edgeIds.update(new Uint32Array(v)),this.trianglePositions.update(a),this.triangleColors.update(i),this.triangleUVs.update(c),this.triangleNormals.update(l),this.triangleIds.update(new Uint32Array(f))}},T.drawTransparent=T.draw=function(t){t=t||{};for(var e=this.gl,r=t.model||w,n=t.view||w,a=t.projection||w,i=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],o=0;o<3;++o)i[0][o]=Math.max(i[0][o],this.clipBounds[0][o]),i[1][o]=Math.min(i[1][o],this.clipBounds[1][o]);var s={model:r,view:n,projection:a,inverseModel:w.slice(),clipBounds:i,kambient:this.ambientLight,kdiffuse:this.diffuseLight,kspecular:this.specularLight,roughness:this.roughness,fresnel:this.fresnel,eyePosition:[0,0,0],lightPosition:[0,0,0],contourColor:this.contourColor,texture:0};s.inverseModel=c(s.inverseModel,s.model),e.disable(e.CULL_FACE),this.texture.bind(0);var u=new Array(16);l(u,s.view,s.model),l(u,s.projection,u),c(u,u);for(o=0;o<3;++o)s.eyePosition[o]=u[12+o]/u[15];var h,f=u[15];for(o=0;o<3;++o)f+=this.lightPosition[o]*u[4*o+3];for(o=0;o<3;++o){for(var p=u[12+o],d=0;d<3;++d)p+=u[4*d+o]*this.lightPosition[d];s.lightPosition[o]=p/f}this.triangleCount>0&&((h=this.triShader).bind(),h.uniforms=s,this.triangleVAO.bind(),e.drawArrays(e.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind());this.edgeCount>0&&this.lineWidth>0&&((h=this.lineShader).bind(),h.uniforms=s,this.edgeVAO.bind(),e.lineWidth(this.lineWidth*this.pixelRatio),e.drawArrays(e.LINES,0,2*this.edgeCount),this.edgeVAO.unbind());this.pointCount>0&&((h=this.pointShader).bind(),h.uniforms=s,this.pointVAO.bind(),e.drawArrays(e.POINTS,0,this.pointCount),this.pointVAO.unbind());this.contourEnable&&this.contourCount>0&&this.contourLineWidth>0&&((h=this.contourShader).bind(),h.uniforms=s,this.contourVAO.bind(),e.drawArrays(e.LINES,0,this.contourCount),this.contourVAO.unbind())},T.drawPick=function(t){t=t||{};for(var e=this.gl,r=t.model||w,n=t.view||w,a=t.projection||w,i=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],o=0;o<3;++o)i[0][o]=Math.max(i[0][o],this.clipBounds[0][o]),i[1][o]=Math.min(i[1][o],this.clipBounds[1][o]);this._model=[].slice.call(r),this._view=[].slice.call(n),this._projection=[].slice.call(a),this._resolution=[e.drawingBufferWidth,e.drawingBufferHeight];var s,l={model:r,view:n,projection:a,clipBounds:i,pickId:this.pickId/255};((s=this.pickShader).bind(),s.uniforms=l,this.triangleCount>0&&(this.triangleVAO.bind(),e.drawArrays(e.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind()),this.edgeCount>0&&(this.edgeVAO.bind(),e.lineWidth(this.lineWidth*this.pixelRatio),e.drawArrays(e.LINES,0,2*this.edgeCount),this.edgeVAO.unbind()),this.pointCount>0)&&((s=this.pointPickShader).bind(),s.uniforms=l,this.pointVAO.bind(),e.drawArrays(e.POINTS,0,this.pointCount),this.pointVAO.unbind())},T.pick=function(t){if(!t)return null;if(t.id!==this.pickId)return null;for(var e=t.value[0]+256*t.value[1]+65536*t.value[2],r=this.cells[e],n=this.positions,a=new Array(r.length),i=0;i<r.length;++i)a[i]=n[r[i]];var o=g(a,[t.coord[0],this._resolution[1]-t.coord[1]],this._model,this._view,this._projection,this._resolution);if(!o)return null;var s=o[2],l=0;for(i=0;i<r.length;++i)l+=s[i]*this.intensity[r[i]];return{position:o[1],index:r[o[0]],cell:r,cellId:e,intensity:l,dataCoordinate:this.positions[r[o[0]]]}},T.dispose=function(){this.texture.dispose(),this.triShader.dispose(),this.lineShader.dispose(),this.pointShader.dispose(),this.pickShader.dispose(),this.pointPickShader.dispose(),this.triangleVAO.dispose(),this.trianglePositions.dispose(),this.triangleColors.dispose(),this.triangleUVs.dispose(),this.triangleNormals.dispose(),this.triangleIds.dispose(),this.edgeVAO.dispose(),this.edgePositions.dispose(),this.edgeColors.dispose(),this.edgeUVs.dispose(),this.edgeIds.dispose(),this.pointVAO.dispose(),this.pointPositions.dispose(),this.pointColors.dispose(),this.pointUVs.dispose(),this.pointSizes.dispose(),this.pointIds.dispose(),this.contourVAO.dispose(),this.contourPositions.dispose(),this.contourShader.dispose()},e.exports=function(t,e){if(1===arguments.length&&(t=(e=t).gl),!(t.getExtension(\"OES_standard_derivatives\")||t.getExtension(\"MOZ_OES_standard_derivatives\")||t.getExtension(\"WEBKIT_OES_standard_derivatives\")))throw new Error(\"derivatives not supported\");var r=function(t){var e=n(t,v.vertex,v.fragment);return e.attributes.position.location=0,e.attributes.color.location=2,e.attributes.uv.location=3,e.attributes.normal.location=4,e}(t),s=function(t){var e=n(t,m.vertex,m.fragment);return e.attributes.position.location=0,e.attributes.color.location=2,e.attributes.uv.location=3,e}(t),l=M(t),c=S(t),h=E(t),f=C(t),p=o(t,u(new Uint8Array([255,255,255,255]),[1,1,4]));p.generateMipmap(),p.minFilter=t.LINEAR_MIPMAP_LINEAR,p.magFilter=t.LINEAR;var d=a(t),g=a(t),y=a(t),x=a(t),b=a(t),_=i(t,[{buffer:d,type:t.FLOAT,size:3},{buffer:b,type:t.UNSIGNED_BYTE,size:4,normalized:!0},{buffer:g,type:t.FLOAT,size:4},{buffer:y,type:t.FLOAT,size:2},{buffer:x,type:t.FLOAT,size:3}]),w=a(t),T=a(t),A=a(t),L=a(t),P=i(t,[{buffer:w,type:t.FLOAT,size:3},{buffer:L,type:t.UNSIGNED_BYTE,size:4,normalized:!0},{buffer:T,type:t.FLOAT,size:4},{buffer:A,type:t.FLOAT,size:2}]),O=a(t),I=a(t),z=a(t),D=a(t),R=a(t),F=i(t,[{buffer:O,type:t.FLOAT,size:3},{buffer:R,type:t.UNSIGNED_BYTE,size:4,normalized:!0},{buffer:I,type:t.FLOAT,size:4},{buffer:z,type:t.FLOAT,size:2},{buffer:D,type:t.FLOAT,size:1}]),B=a(t),N=new k(t,p,r,s,l,c,h,f,d,b,g,y,x,_,w,L,T,A,P,O,R,I,z,D,F,B,i(t,[{buffer:B,type:t.FLOAT,size:3}]));return N.update(e),N}},{\"./lib/closest-point\":279,\"./lib/shaders\":280,colormap:127,\"gl-buffer\":242,\"gl-mat4/invert\":266,\"gl-mat4/multiply\":268,\"gl-shader\":302,\"gl-texture2d\":323,\"gl-vao\":328,ndarray:451,normals:454,\"simplicial-complex-contour\":519,\"typedarray-pool\":546}],282:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.gl,r=n(e,[0,0,0,1,1,0,1,1]),s=a(e,i.boxVert,i.lineFrag);return new o(t,r,s)};var n=t(\"gl-buffer\"),a=t(\"gl-shader\"),i=t(\"./shaders\");function o(t,e,r){this.plot=t,this.vbo=e,this.shader=r}var s,l,c=o.prototype;c.bind=function(){var t=this.shader;this.vbo.bind(),this.shader.bind(),t.attributes.coord.pointer(),t.uniforms.screenBox=this.plot.screenBox},c.drawBox=(s=[0,0],l=[0,0],function(t,e,r,n,a){var i=this.plot,o=this.shader,c=i.gl;s[0]=t,s[1]=e,l[0]=r,l[1]=n,o.uniforms.lo=s,o.uniforms.hi=l,o.uniforms.color=a,c.drawArrays(c.TRIANGLE_STRIP,0,4)}),c.dispose=function(){this.vbo.dispose(),this.shader.dispose()}},{\"./shaders\":285,\"gl-buffer\":242,\"gl-shader\":302}],283:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.gl,r=n(e),i=a(e,o.gridVert,o.gridFrag),l=a(e,o.tickVert,o.gridFrag);return new s(t,r,i,l)};var n=t(\"gl-buffer\"),a=t(\"gl-shader\"),i=t(\"binary-search-bounds\"),o=t(\"./shaders\");function s(t,e,r,n){this.plot=t,this.vbo=e,this.shader=r,this.tickShader=n,this.ticks=[[],[]]}function l(t,e){return t-e}var c,u,h,f,p,d=s.prototype;d.draw=(c=[0,0],u=[0,0],h=[0,0],function(){for(var t=this.plot,e=this.vbo,r=this.shader,n=this.ticks,a=t.gl,i=t._tickBounds,o=t.dataBox,s=t.viewBox,l=t.gridLineWidth,f=t.gridLineColor,p=t.gridLineEnable,d=t.pixelRatio,g=0;g<2;++g){var v=i[g],m=i[g+2]-v,y=.5*(o[g+2]+o[g]),x=o[g+2]-o[g];u[g]=2*m/x,c[g]=2*(v-y)/x}r.bind(),e.bind(),r.attributes.dataCoord.pointer(),r.uniforms.dataShift=c,r.uniforms.dataScale=u;var b=0;for(g=0;g<2;++g){h[0]=h[1]=0,h[g]=1,r.uniforms.dataAxis=h,r.uniforms.lineWidth=l[g]/(s[g+2]-s[g])*d,r.uniforms.color=f[g];var _=6*n[g].length;p[g]&&_&&a.drawArrays(a.TRIANGLES,b,_),b+=_}}),d.drawTickMarks=function(){var t=[0,0],e=[0,0],r=[1,0],n=[0,1],a=[0,0],o=[0,0];return function(){for(var s=this.plot,c=this.vbo,u=this.tickShader,h=this.ticks,f=s.gl,p=s._tickBounds,d=s.dataBox,g=s.viewBox,v=s.pixelRatio,m=s.screenBox,y=m[2]-m[0],x=m[3]-m[1],b=g[2]-g[0],_=g[3]-g[1],w=0;w<2;++w){var k=p[w],T=p[w+2]-k,A=.5*(d[w+2]+d[w]),M=d[w+2]-d[w];e[w]=2*T/M,t[w]=2*(k-A)/M}e[0]*=b/y,t[0]*=b/y,e[1]*=_/x,t[1]*=_/x,u.bind(),c.bind(),u.attributes.dataCoord.pointer();var S=u.uniforms;S.dataShift=t,S.dataScale=e;var E=s.tickMarkLength,C=s.tickMarkWidth,L=s.tickMarkColor,P=6*h[0].length,O=Math.min(i.ge(h[0],(d[0]-p[0])/(p[2]-p[0]),l),h[0].length),I=Math.min(i.gt(h[0],(d[2]-p[0])/(p[2]-p[0]),l),h[0].length),z=0+6*O,D=6*Math.max(0,I-O),R=Math.min(i.ge(h[1],(d[1]-p[1])/(p[3]-p[1]),l),h[1].length),F=Math.min(i.gt(h[1],(d[3]-p[1])/(p[3]-p[1]),l),h[1].length),B=P+6*R,N=6*Math.max(0,F-R);a[0]=2*(g[0]-E[1])/y-1,a[1]=(g[3]+g[1])/x-1,o[0]=E[1]*v/y,o[1]=C[1]*v/x,N&&(S.color=L[1],S.tickScale=o,S.dataAxis=n,S.screenOffset=a,f.drawArrays(f.TRIANGLES,B,N)),a[0]=(g[2]+g[0])/y-1,a[1]=2*(g[1]-E[0])/x-1,o[0]=C[0]*v/y,o[1]=E[0]*v/x,D&&(S.color=L[0],S.tickScale=o,S.dataAxis=r,S.screenOffset=a,f.drawArrays(f.TRIANGLES,z,D)),a[0]=2*(g[2]+E[3])/y-1,a[1]=(g[3]+g[1])/x-1,o[0]=E[3]*v/y,o[1]=C[3]*v/x,N&&(S.color=L[3],S.tickScale=o,S.dataAxis=n,S.screenOffset=a,f.drawArrays(f.TRIANGLES,B,N)),a[0]=(g[2]+g[0])/y-1,a[1]=2*(g[3]+E[2])/x-1,o[0]=C[2]*v/y,o[1]=E[2]*v/x,D&&(S.color=L[2],S.tickScale=o,S.dataAxis=r,S.screenOffset=a,f.drawArrays(f.TRIANGLES,z,D))}}(),d.update=(f=[1,1,-1,-1,1,-1],p=[1,-1,1,1,-1,-1],function(t){for(var e=t.ticks,r=t.bounds,n=new Float32Array(18*(e[0].length+e[1].length)),a=(this.plot.zeroLineEnable,0),i=[[],[]],o=0;o<2;++o)for(var s=i[o],l=e[o],c=r[o],u=r[o+2],h=0;h<l.length;++h){var d=(l[h].x-c)/(u-c);s.push(d);for(var g=0;g<6;++g)n[a++]=d,n[a++]=f[g],n[a++]=p[g]}this.ticks=i,this.vbo.update(n)}),d.dispose=function(){this.vbo.dispose(),this.shader.dispose(),this.tickShader.dispose()}},{\"./shaders\":285,\"binary-search-bounds\":287,\"gl-buffer\":242,\"gl-shader\":302}],284:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.gl,r=n(e,[-1,-1,-1,1,1,-1,1,1]),s=a(e,i.lineVert,i.lineFrag);return new o(t,r,s)};var n=t(\"gl-buffer\"),a=t(\"gl-shader\"),i=t(\"./shaders\");function o(t,e,r){this.plot=t,this.vbo=e,this.shader=r}var s,l,c=o.prototype;c.bind=function(){var t=this.shader;this.vbo.bind(),this.shader.bind(),t.attributes.coord.pointer(),t.uniforms.screenBox=this.plot.screenBox},c.drawLine=(s=[0,0],l=[0,0],function(t,e,r,n,a,i){var o=this.plot,c=this.shader,u=o.gl;s[0]=t,s[1]=e,l[0]=r,l[1]=n,c.uniforms.start=s,c.uniforms.end=l,c.uniforms.width=a*o.pixelRatio,c.uniforms.color=i,u.drawArrays(u.TRIANGLE_STRIP,0,4)}),c.dispose=function(){this.vbo.dispose(),this.shader.dispose()}},{\"./shaders\":285,\"gl-buffer\":242,\"gl-shader\":302}],285:[function(t,e,r){\"use strict\";var n=t(\"glslify\"),a=n([\"precision lowp float;\\n#define GLSLIFY 1\\nuniform vec4 color;\\nvoid main() {\\n  gl_FragColor = vec4(color.xyz * color.w, color.w);\\n}\\n\"]);e.exports={lineVert:n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec2 coord;\\n\\nuniform vec4 screenBox;\\nuniform vec2 start, end;\\nuniform float width;\\n\\nvec2 perp(vec2 v) {\\n  return vec2(v.y, -v.x);\\n}\\n\\nvec2 screen(vec2 v) {\\n  return 2.0 * (v - screenBox.xy) / (screenBox.zw - screenBox.xy) - 1.0;\\n}\\n\\nvoid main() {\\n  vec2 delta = normalize(perp(start - end));\\n  vec2 offset = mix(start, end, 0.5 * (coord.y+1.0));\\n  gl_Position = vec4(screen(offset + 0.5 * width * delta * coord.x), 0, 1);\\n}\\n\"]),lineFrag:a,textVert:n([\"#define GLSLIFY 1\\nattribute vec3 textCoordinate;\\n\\nuniform vec2 dataScale, dataShift, dataAxis, screenOffset, textScale;\\nuniform float angle;\\n\\nvoid main() {\\n  float dataOffset  = textCoordinate.z;\\n  vec2 glyphOffset  = textCoordinate.xy;\\n  mat2 glyphMatrix = mat2(cos(angle), sin(angle), -sin(angle), cos(angle));\\n  vec2 screenCoordinate = dataAxis * (dataScale * dataOffset + dataShift) +\\n    glyphMatrix * glyphOffset * textScale + screenOffset;\\n  gl_Position = vec4(screenCoordinate, 0, 1);\\n}\\n\"]),textFrag:a,gridVert:n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec3 dataCoord;\\n\\nuniform vec2 dataAxis, dataShift, dataScale;\\nuniform float lineWidth;\\n\\nvoid main() {\\n  vec2 pos = dataAxis * (dataScale * dataCoord.x + dataShift);\\n  pos += 10.0 * dataCoord.y * vec2(dataAxis.y, -dataAxis.x) + dataCoord.z * lineWidth;\\n  gl_Position = vec4(pos, 0, 1);\\n}\\n\"]),gridFrag:a,boxVert:n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec2 coord;\\n\\nuniform vec4 screenBox;\\nuniform vec2 lo, hi;\\n\\nvec2 screen(vec2 v) {\\n  return 2.0 * (v - screenBox.xy) / (screenBox.zw - screenBox.xy) - 1.0;\\n}\\n\\nvoid main() {\\n  gl_Position = vec4(screen(mix(lo, hi, coord)), 0, 1);\\n}\\n\"]),tickVert:n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec3 dataCoord;\\n\\nuniform vec2 dataAxis, dataShift, dataScale, screenOffset, tickScale;\\n\\nvoid main() {\\n  vec2 pos = dataAxis * (dataScale * dataCoord.x + dataShift);\\n  gl_Position = vec4(pos + tickScale*dataCoord.yz + screenOffset, 0, 1);\\n}\\n\"])}},{glslify:410}],286:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.gl,r=n(e),i=a(e,s.textVert,s.textFrag);return new l(t,r,i)};var n=t(\"gl-buffer\"),a=t(\"gl-shader\"),i=t(\"text-cache\"),o=t(\"binary-search-bounds\"),s=t(\"./shaders\");function l(t,e,r){this.plot=t,this.vbo=e,this.shader=r,this.tickOffset=[[],[]],this.tickX=[[],[]],this.labelOffset=[0,0],this.labelCount=[0,0]}var c,u,h,f,p,d,g=l.prototype;g.drawTicks=(c=[0,0],u=[0,0],h=[0,0],function(t){var e=this.plot,r=this.shader,n=this.tickX[t],a=this.tickOffset[t],i=e.gl,s=e.viewBox,l=e.dataBox,f=e.screenBox,p=e.pixelRatio,d=e.tickEnable,g=e.tickPad,v=e.tickColor,m=e.tickAngle,y=e.labelEnable,x=e.labelPad,b=e.labelColor,_=e.labelAngle,w=this.labelOffset[t],k=this.labelCount[t],T=o.lt(n,l[t]),A=o.le(n,l[t+2]);c[0]=c[1]=0,c[t]=1,u[t]=(s[2+t]+s[t])/(f[2+t]-f[t])-1;var M=2/f[2+(1^t)]-f[1^t];u[1^t]=M*s[1^t]-1,d[t]&&(u[1^t]-=M*p*g[t],T<A&&a[A]>a[T]&&(r.uniforms.dataAxis=c,r.uniforms.screenOffset=u,r.uniforms.color=v[t],r.uniforms.angle=m[t],i.drawArrays(i.TRIANGLES,a[T],a[A]-a[T]))),y[t]&&k&&(u[1^t]-=M*p*x[t],r.uniforms.dataAxis=h,r.uniforms.screenOffset=u,r.uniforms.color=b[t],r.uniforms.angle=_[t],i.drawArrays(i.TRIANGLES,w,k)),u[1^t]=M*s[2+(1^t)]-1,d[t+2]&&(u[1^t]+=M*p*g[t+2],T<A&&a[A]>a[T]&&(r.uniforms.dataAxis=c,r.uniforms.screenOffset=u,r.uniforms.color=v[t+2],r.uniforms.angle=m[t+2],i.drawArrays(i.TRIANGLES,a[T],a[A]-a[T]))),y[t+2]&&k&&(u[1^t]+=M*p*x[t+2],r.uniforms.dataAxis=h,r.uniforms.screenOffset=u,r.uniforms.color=b[t+2],r.uniforms.angle=_[t+2],i.drawArrays(i.TRIANGLES,w,k))}),g.drawTitle=function(){var t=[0,0],e=[0,0];return function(){var r=this.plot,n=this.shader,a=r.gl,i=r.screenBox,o=r.titleCenter,s=r.titleAngle,l=r.titleColor,c=r.pixelRatio;if(this.titleCount){for(var u=0;u<2;++u)e[u]=2*(o[u]*c-i[u])/(i[2+u]-i[u])-1;n.bind(),n.uniforms.dataAxis=t,n.uniforms.screenOffset=e,n.uniforms.angle=s,n.uniforms.color=l,a.drawArrays(a.TRIANGLES,this.titleOffset,this.titleCount)}}}(),g.bind=(f=[0,0],p=[0,0],d=[0,0],function(){var t=this.plot,e=this.shader,r=t._tickBounds,n=t.dataBox,a=t.screenBox,i=t.viewBox;e.bind();for(var o=0;o<2;++o){var s=r[o],l=r[o+2]-s,c=.5*(n[o+2]+n[o]),u=n[o+2]-n[o],h=i[o],g=i[o+2]-h,v=a[o],m=a[o+2]-v;p[o]=2*l/u*g/m,f[o]=2*(s-c)/u*g/m}d[1]=2*t.pixelRatio/(a[3]-a[1]),d[0]=d[1]*(a[3]-a[1])/(a[2]-a[0]),e.uniforms.dataScale=p,e.uniforms.dataShift=f,e.uniforms.textScale=d,this.vbo.bind(),e.attributes.textCoordinate.pointer()}),g.update=function(t){var e,r,n,a,o,s=[],l=t.ticks,c=t.bounds;for(o=0;o<2;++o){var u=[Math.floor(s.length/3)],h=[-1/0],f=l[o];for(e=0;e<f.length;++e){var p=f[e],d=p.x,g=p.text,v=p.font||\"sans-serif\";a=p.fontSize||12;for(var m=1/(c[o+2]-c[o]),y=c[o],x=g.split(\"\\n\"),b=0;b<x.length;b++)for(n=i(v,x[b]).data,r=0;r<n.length;r+=2)s.push(n[r]*a,-n[r+1]*a-b*a*1.2,(d-y)*m);u.push(Math.floor(s.length/3)),h.push(d)}this.tickOffset[o]=u,this.tickX[o]=h}for(o=0;o<2;++o){for(this.labelOffset[o]=Math.floor(s.length/3),n=i(t.labelFont[o],t.labels[o],{textAlign:\"center\"}).data,a=t.labelSize[o],e=0;e<n.length;e+=2)s.push(n[e]*a,-n[e+1]*a,0);this.labelCount[o]=Math.floor(s.length/3)-this.labelOffset[o]}for(this.titleOffset=Math.floor(s.length/3),n=i(t.titleFont,t.title).data,a=t.titleSize,e=0;e<n.length;e+=2)s.push(n[e]*a,-n[e+1]*a,0);this.titleCount=Math.floor(s.length/3)-this.titleOffset,this.vbo.update(s)},g.dispose=function(){this.vbo.dispose(),this.shader.dispose()}},{\"./shaders\":285,\"binary-search-bounds\":287,\"gl-buffer\":242,\"gl-shader\":302,\"text-cache\":537}],287:[function(t,e,r){arguments[4][112][0].apply(r,arguments)},{dup:112}],288:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.gl,r=n(e,[e.drawingBufferWidth,e.drawingBufferHeight]),c=new l(e,r);return c.grid=a(c),c.text=i(c),c.line=o(c),c.box=s(c),c.update(t),c};var n=t(\"gl-select-static\"),a=t(\"./lib/grid\"),i=t(\"./lib/text\"),o=t(\"./lib/line\"),s=t(\"./lib/box\");function l(t,e){this.gl=t,this.pickBuffer=e,this.screenBox=[0,0,t.drawingBufferWidth,t.drawingBufferHeight],this.viewBox=[0,0,0,0],this.dataBox=[-10,-10,10,10],this.gridLineEnable=[!0,!0],this.gridLineWidth=[1,1],this.gridLineColor=[[0,0,0,1],[0,0,0,1]],this.pixelRatio=1,this.tickMarkLength=[0,0,0,0],this.tickMarkWidth=[0,0,0,0],this.tickMarkColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.tickPad=[15,15,15,15],this.tickAngle=[0,0,0,0],this.tickEnable=[!0,!0,!0,!0],this.tickColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.labelPad=[15,15,15,15],this.labelAngle=[0,Math.PI/2,0,3*Math.PI/2],this.labelEnable=[!0,!0,!0,!0],this.labelColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.titleCenter=[0,0],this.titleEnable=!0,this.titleAngle=0,this.titleColor=[0,0,0,1],this.borderColor=[0,0,0,0],this.backgroundColor=[0,0,0,0],this.zeroLineEnable=[!0,!0],this.zeroLineWidth=[4,4],this.zeroLineColor=[[0,0,0,1],[0,0,0,1]],this.borderLineEnable=[!0,!0,!0,!0],this.borderLineWidth=[2,2,2,2],this.borderLineColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.grid=null,this.text=null,this.line=null,this.box=null,this.objects=[],this.overlays=[],this._tickBounds=[1/0,1/0,-1/0,-1/0],this.static=!1,this.dirty=!1,this.pickDirty=!1,this.pickDelay=120,this.pickRadius=10,this._pickTimeout=null,this._drawPick=this.drawPick.bind(this),this._depthCounter=0}var c=l.prototype;function u(t){for(var e=t.slice(),r=0;r<e.length;++r)e[r]=e[r].slice();return e}function h(t,e){return t.x-e.x}c.setDirty=function(){this.dirty=this.pickDirty=!0},c.setOverlayDirty=function(){this.dirty=!0},c.nextDepthValue=function(){return this._depthCounter++/65536},c.draw=function(){var t=this.gl,e=this.screenBox,r=this.viewBox,n=this.dataBox,a=this.pixelRatio,i=this.grid,o=this.line,s=this.text,l=this.objects;if(this._depthCounter=0,this.pickDirty&&(this._pickTimeout&&clearTimeout(this._pickTimeout),this.pickDirty=!1,this._pickTimeout=setTimeout(this._drawPick,this.pickDelay)),this.dirty){if(this.dirty=!1,t.bindFramebuffer(t.FRAMEBUFFER,null),t.enable(t.SCISSOR_TEST),t.disable(t.DEPTH_TEST),t.depthFunc(t.LESS),t.depthMask(!1),t.enable(t.BLEND),t.blendEquation(t.FUNC_ADD,t.FUNC_ADD),t.blendFunc(t.ONE,t.ONE_MINUS_SRC_ALPHA),this.borderColor){t.scissor(e[0],e[1],e[2]-e[0],e[3]-e[1]);var c=this.borderColor;t.clearColor(c[0]*c[3],c[1]*c[3],c[2]*c[3],c[3]),t.clear(t.COLOR_BUFFER_BIT|t.DEPTH_BUFFER_BIT)}t.scissor(r[0],r[1],r[2]-r[0],r[3]-r[1]),t.viewport(r[0],r[1],r[2]-r[0],r[3]-r[1]);var u=this.backgroundColor;t.clearColor(u[0]*u[3],u[1]*u[3],u[2]*u[3],u[3]),t.clear(t.COLOR_BUFFER_BIT),i.draw();var h=this.zeroLineEnable,f=this.zeroLineColor,p=this.zeroLineWidth;if(h[0]||h[1]){o.bind();for(var d=0;d<2;++d)if(h[d]&&n[d]<=0&&n[d+2]>=0){var g=e[d]-n[d]*(e[d+2]-e[d])/(n[d+2]-n[d]);0===d?o.drawLine(g,e[1],g,e[3],p[d],f[d]):o.drawLine(e[0],g,e[2],g,p[d],f[d])}}for(d=0;d<l.length;++d)l[d].draw();t.viewport(e[0],e[1],e[2]-e[0],e[3]-e[1]),t.scissor(e[0],e[1],e[2]-e[0],e[3]-e[1]),this.grid.drawTickMarks(),o.bind();var v=this.borderLineEnable,m=this.borderLineWidth,y=this.borderLineColor;for(v[1]&&o.drawLine(r[0],r[1]-.5*m[1]*a,r[0],r[3]+.5*m[3]*a,m[1],y[1]),v[0]&&o.drawLine(r[0]-.5*m[0]*a,r[1],r[2]+.5*m[2]*a,r[1],m[0],y[0]),v[3]&&o.drawLine(r[2],r[1]-.5*m[1]*a,r[2],r[3]+.5*m[3]*a,m[3],y[3]),v[2]&&o.drawLine(r[0]-.5*m[0]*a,r[3],r[2]+.5*m[2]*a,r[3],m[2],y[2]),s.bind(),d=0;d<2;++d)s.drawTicks(d);this.titleEnable&&s.drawTitle();var x=this.overlays;for(d=0;d<x.length;++d)x[d].draw();t.disable(t.SCISSOR_TEST),t.disable(t.BLEND),t.depthMask(!0)}},c.drawPick=function(){if(!this.static){var t=this.pickBuffer;this.gl;this._pickTimeout=null,t.begin();for(var e=1,r=this.objects,n=0;n<r.length;++n)e=r[n].drawPick(e);t.end()}},c.pick=function(t,e){if(!this.static){var r=this.pixelRatio,n=this.pickPixelRatio,a=this.viewBox,i=0|Math.round((t-a[0]/r)*n),o=0|Math.round((e-a[1]/r)*n),s=this.pickBuffer.query(i,o,this.pickRadius);if(!s)return null;for(var l=s.id+(s.value[0]<<8)+(s.value[1]<<16)+(s.value[2]<<24),c=this.objects,u=0;u<c.length;++u){var h=c[u].pick(i,o,l);if(h)return h}return null}},c.setScreenBox=function(t){var e=this.screenBox,r=this.pixelRatio;e[0]=0|Math.round(t[0]*r),e[1]=0|Math.round(t[1]*r),e[2]=0|Math.round(t[2]*r),e[3]=0|Math.round(t[3]*r),this.setDirty()},c.setDataBox=function(t){var e=this.dataBox;(e[0]!==t[0]||e[1]!==t[1]||e[2]!==t[2]||e[3]!==t[3])&&(e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],this.setDirty())},c.setViewBox=function(t){var e=this.pixelRatio,r=this.viewBox;r[0]=0|Math.round(t[0]*e),r[1]=0|Math.round(t[1]*e),r[2]=0|Math.round(t[2]*e),r[3]=0|Math.round(t[3]*e);var n=this.pickPixelRatio;this.pickBuffer.shape=[0|Math.round((t[2]-t[0])*n),0|Math.round((t[3]-t[1])*n)],this.setDirty()},c.update=function(t){t=t||{};var e=this.gl;this.pixelRatio=t.pixelRatio||1;var r=this.pixelRatio;this.pickPixelRatio=Math.max(r,1),this.setScreenBox(t.screenBox||[0,0,e.drawingBufferWidth/r,e.drawingBufferHeight/r]);this.screenBox;this.setViewBox(t.viewBox||[.125*(this.screenBox[2]-this.screenBox[0])/r,.125*(this.screenBox[3]-this.screenBox[1])/r,.875*(this.screenBox[2]-this.screenBox[0])/r,.875*(this.screenBox[3]-this.screenBox[1])/r]);var n=this.viewBox,a=(n[2]-n[0])/(n[3]-n[1]);this.setDataBox(t.dataBox||[-10,-10/a,10,10/a]),this.borderColor=!1!==t.borderColor&&(t.borderColor||[0,0,0,0]).slice(),this.backgroundColor=(t.backgroundColor||[0,0,0,0]).slice(),this.gridLineEnable=(t.gridLineEnable||[!0,!0]).slice(),this.gridLineWidth=(t.gridLineWidth||[1,1]).slice(),this.gridLineColor=u(t.gridLineColor||[[.5,.5,.5,1],[.5,.5,.5,1]]),this.zeroLineEnable=(t.zeroLineEnable||[!0,!0]).slice(),this.zeroLineWidth=(t.zeroLineWidth||[4,4]).slice(),this.zeroLineColor=u(t.zeroLineColor||[[0,0,0,1],[0,0,0,1]]),this.tickMarkLength=(t.tickMarkLength||[0,0,0,0]).slice(),this.tickMarkWidth=(t.tickMarkWidth||[0,0,0,0]).slice(),this.tickMarkColor=u(t.tickMarkColor||[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]]),this.titleCenter=(t.titleCenter||[.5*(n[0]+n[2])/r,(n[3]+120)/r]).slice(),this.titleEnable=!(\"titleEnable\"in t&&!t.titleEnable),this.titleAngle=t.titleAngle||0,this.titleColor=(t.titleColor||[0,0,0,1]).slice(),this.labelPad=(t.labelPad||[15,15,15,15]).slice(),this.labelAngle=(t.labelAngle||[0,Math.PI/2,0,3*Math.PI/2]).slice(),this.labelEnable=(t.labelEnable||[!0,!0,!0,!0]).slice(),this.labelColor=u(t.labelColor||[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]]),this.tickPad=(t.tickPad||[15,15,15,15]).slice(),this.tickAngle=(t.tickAngle||[0,0,0,0]).slice(),this.tickEnable=(t.tickEnable||[!0,!0,!0,!0]).slice(),this.tickColor=u(t.tickColor||[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]]),this.borderLineEnable=(t.borderLineEnable||[!0,!0,!0,!0]).slice(),this.borderLineWidth=(t.borderLineWidth||[2,2,2,2]).slice(),this.borderLineColor=u(t.borderLineColor||[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]]);var i=t.ticks||[[],[]],o=this._tickBounds;o[0]=o[1]=1/0,o[2]=o[3]=-1/0;for(var s=0;s<2;++s){var l=i[s].slice(0);0!==l.length&&(l.sort(h),o[s]=Math.min(o[s],l[0].x),o[s+2]=Math.max(o[s+2],l[l.length-1].x))}this.grid.update({bounds:o,ticks:i}),this.text.update({bounds:o,ticks:i,labels:t.labels||[\"x\",\"y\"],labelSize:t.labelSize||[12,12],labelFont:t.labelFont||[\"sans-serif\",\"sans-serif\"],title:t.title||\"\",titleSize:t.titleSize||18,titleFont:t.titleFont||\"sans-serif\"}),this.static=!!t.static,this.setDirty()},c.dispose=function(){this.box.dispose(),this.grid.dispose(),this.text.dispose(),this.line.dispose();for(var t=this.objects.length-1;t>=0;--t)this.objects[t].dispose();this.objects.length=0;for(t=this.overlays.length-1;t>=0;--t)this.overlays[t].dispose();this.overlays.length=0,this.gl=null},c.addObject=function(t){this.objects.indexOf(t)<0&&(this.objects.push(t),this.setDirty())},c.removeObject=function(t){for(var e=this.objects,r=0;r<e.length;++r)if(e[r]===t){e.splice(r,1),this.setDirty();break}},c.addOverlay=function(t){this.overlays.indexOf(t)<0&&(this.overlays.push(t),this.setOverlayDirty())},c.removeOverlay=function(t){for(var e=this.overlays,r=0;r<e.length;++r)if(e[r]===t){e.splice(r,1),this.setOverlayDirty();break}}},{\"./lib/box\":282,\"./lib/grid\":283,\"./lib/line\":284,\"./lib/text\":286,\"gl-select-static\":301}],289:[function(t,e,r){\"use strict\";e.exports=function(t,e){t=t||document.body,e=e||{};var r=[.01,1/0];\"distanceLimits\"in e&&(r[0]=e.distanceLimits[0],r[1]=e.distanceLimits[1]);\"zoomMin\"in e&&(r[0]=e.zoomMin);\"zoomMax\"in e&&(r[1]=e.zoomMax);var c=a({center:e.center||[0,0,0],up:e.up||[0,1,0],eye:e.eye||[0,0,10],mode:e.mode||\"orbit\",distanceLimits:r}),u=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],h=0,f=t.clientWidth,p=t.clientHeight,d={keyBindingMode:\"rotate\",enableWheel:!0,view:c,element:t,delay:e.delay||16,rotateSpeed:e.rotateSpeed||1,zoomSpeed:e.zoomSpeed||1,translateSpeed:e.translateSpeed||1,flipX:!!e.flipX,flipY:!!e.flipY,modes:c.modes,_ortho:e._ortho||e.projection&&\"orthographic\"===e.projection.type||!1,tick:function(){var e=n(),r=this.delay,a=e-2*r;c.idle(e-r),c.recalcMatrix(a),c.flush(e-(100+2*r));for(var i=!0,o=c.computedMatrix,s=0;s<16;++s)i=i&&u[s]===o[s],u[s]=o[s];var l=t.clientWidth===f&&t.clientHeight===p;return f=t.clientWidth,p=t.clientHeight,i?!l:(h=Math.exp(c.computedRadius[0]),!0)},lookAt:function(t,e,r){c.lookAt(c.lastT(),t,e,r)},rotate:function(t,e,r){c.rotate(c.lastT(),t,e,r)},pan:function(t,e,r){c.pan(c.lastT(),t,e,r)},translate:function(t,e,r){c.translate(c.lastT(),t,e,r)}};return Object.defineProperties(d,{matrix:{get:function(){return c.computedMatrix},set:function(t){return c.setMatrix(c.lastT(),t),c.computedMatrix},enumerable:!0},mode:{get:function(){return c.getMode()},set:function(t){var e=c.computedUp.slice(),r=c.computedEye.slice(),a=c.computedCenter.slice();if(c.setMode(t),\"turntable\"===t){var i=n();c._active.lookAt(i,r,a,e),c._active.lookAt(i+500,r,a,[0,0,1]),c._active.flush(i)}return c.getMode()},enumerable:!0},center:{get:function(){return c.computedCenter},set:function(t){return c.lookAt(c.lastT(),null,t),c.computedCenter},enumerable:!0},eye:{get:function(){return c.computedEye},set:function(t){return c.lookAt(c.lastT(),t),c.computedEye},enumerable:!0},up:{get:function(){return c.computedUp},set:function(t){return c.lookAt(c.lastT(),null,null,t),c.computedUp},enumerable:!0},distance:{get:function(){return h},set:function(t){return c.setDistance(c.lastT(),t),t},enumerable:!0},distanceLimits:{get:function(){return c.getDistanceLimits(r)},set:function(t){return c.setDistanceLimits(t),t},enumerable:!0}}),t.addEventListener(\"contextmenu\",function(t){return t.preventDefault(),!1}),d._lastX=-1,d._lastY=-1,d._lastMods={shift:!1,control:!1,alt:!1,meta:!1},d.enableMouseListeners=function(){function e(e,r,a,i){var o=d.keyBindingMode;if(!1!==o){var s=\"rotate\"===o,l=\"pan\"===o,u=\"zoom\"===o,f=!!i.control,p=!!i.alt,g=!!i.shift,v=!!(1&e),m=!!(2&e),y=!!(4&e),x=1/t.clientHeight,b=x*(r-d._lastX),_=x*(a-d._lastY),w=d.flipX?1:-1,k=d.flipY?1:-1,T=Math.PI*d.rotateSpeed,A=n();if(-1!==d._lastX&&-1!==d._lastY&&((s&&v&&!f&&!p&&!g||v&&!f&&!p&&g)&&c.rotate(A,w*T*b,-k*T*_,0),(l&&v&&!f&&!p&&!g||m||v&&f&&!p&&!g)&&c.pan(A,-d.translateSpeed*b*h,d.translateSpeed*_*h,0),u&&v&&!f&&!p&&!g||y||v&&!f&&p&&!g)){var M=-d.zoomSpeed*_/window.innerHeight*(A-c.lastT())*100;c.pan(A,0,0,h*(Math.exp(M)-1))}return d._lastX=r,d._lastY=a,d._lastMods=i,!0}}d.mouseListener=i(t,e),t.addEventListener(\"touchstart\",function(r){var n=s(r.changedTouches[0],t);e(0,n[0],n[1],d._lastMods),e(1,n[0],n[1],d._lastMods),r.preventDefault()},!!l&&{passive:!1}),t.addEventListener(\"touchmove\",function(r){var n=s(r.changedTouches[0],t);e(1,n[0],n[1],d._lastMods),r.preventDefault()},!!l&&{passive:!1}),t.addEventListener(\"touchend\",function(t){e(0,d._lastX,d._lastY,d._lastMods),t.preventDefault()},!!l&&{passive:!1}),d.wheelListener=o(t,function(t,e){if(!1!==d.keyBindingMode&&d.enableWheel){var r=d.flipX?1:-1,a=d.flipY?1:-1,i=n();if(Math.abs(t)>Math.abs(e))c.rotate(i,0,0,-t*r*Math.PI*d.rotateSpeed/window.innerWidth);else if(!d._ortho){var o=-d.zoomSpeed*a*e/window.innerHeight*(i-c.lastT())/20;c.pan(i,0,0,h*(Math.exp(o)-1))}}},!0)},d.enableMouseListeners(),d};var n=t(\"right-now\"),a=t(\"3d-view\"),i=t(\"mouse-change\"),o=t(\"mouse-wheel\"),s=t(\"mouse-event-offset\"),l=t(\"has-passive-events\")},{\"3d-view\":53,\"has-passive-events\":412,\"mouse-change\":436,\"mouse-event-offset\":437,\"mouse-wheel\":439,\"right-now\":505}],290:[function(t,e,r){var n=t(\"glslify\"),a=t(\"gl-shader\"),i=n([\"precision mediump float;\\n#define GLSLIFY 1\\nattribute vec2 position;\\nvarying vec2 uv;\\nvoid main() {\\n  uv = position;\\n  gl_Position = vec4(position, 0, 1);\\n}\"]),o=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nuniform sampler2D accumBuffer;\\nvarying vec2 uv;\\n\\nvoid main() {\\n  vec4 accum = texture2D(accumBuffer, 0.5 * (uv + 1.0));\\n  gl_FragColor = min(vec4(1,1,1,1), accum);\\n}\"]);e.exports=function(t){return a(t,i,o,null,[{name:\"position\",type:\"vec2\"}])}},{\"gl-shader\":302,glslify:410}],291:[function(t,e,r){\"use strict\";var n=t(\"./camera.js\"),a=t(\"gl-axes3d\"),i=t(\"gl-axes3d/properties\"),o=t(\"gl-spikes3d\"),s=t(\"gl-select-static\"),l=t(\"gl-fbo\"),c=t(\"a-big-triangle\"),u=t(\"mouse-change\"),h=t(\"mouse-wheel\"),f=t(\"gl-mat4/perspective\"),p=t(\"gl-mat4/ortho\"),d=t(\"./lib/shader\"),g=t(\"is-mobile\")({tablet:!0});function v(){this.mouse=[-1,-1],this.screen=null,this.distance=1/0,this.index=null,this.dataCoordinate=null,this.dataPosition=null,this.object=null,this.data=null}function m(t){var e=Math.round(Math.log(Math.abs(t))/Math.log(10));if(e<0){var r=Math.round(Math.pow(10,-e));return Math.ceil(t*r)/r}if(e>0){r=Math.round(Math.pow(10,e));return Math.ceil(t/r)*r}return Math.ceil(t)}function y(t){return\"boolean\"!=typeof t||t}e.exports={createScene:function(t){(t=t||{}).camera=t.camera||{};var e=t.canvas;if(!e)if(e=document.createElement(\"canvas\"),t.container){var r=t.container;r.appendChild(e)}else document.body.appendChild(e);var x=t.gl;x||(x=function(t,e){var r=null;try{(r=t.getContext(\"webgl\",e))||(r=t.getContext(\"experimental-webgl\",e))}catch(t){return null}return r}(e,t.glOptions||{premultipliedAlpha:!0,antialias:!0,preserveDrawingBuffer:g}));if(!x)throw new Error(\"webgl not supported\");var b=t.bounds||[[-10,-10,-10],[10,10,10]],_=new v,w=l(x,[x.drawingBufferWidth,x.drawingBufferHeight],{preferFloat:!g}),k=d(x),T=t.cameraObject&&!0===t.cameraObject._ortho||t.camera.projection&&\"orthographic\"===t.camera.projection.type||!1,A={eye:t.camera.eye||[2,0,0],center:t.camera.center||[0,0,0],up:t.camera.up||[0,1,0],zoomMin:t.camera.zoomMax||.1,zoomMax:t.camera.zoomMin||100,mode:t.camera.mode||\"turntable\",_ortho:T},M=t.axes||{},S=a(x,M);S.enable=!M.disable;var E=t.spikes||{},C=o(x,E),L=[],P=[],O=[],I=[],z=!0,D=!0,R=new Array(16),F=new Array(16),B={view:null,projection:R,model:F,_ortho:!1},D=!0,N=[x.drawingBufferWidth,x.drawingBufferHeight],j=t.cameraObject||n(e,A),V={gl:x,contextLost:!1,pixelRatio:t.pixelRatio||1,canvas:e,selection:_,camera:j,axes:S,axesPixels:null,spikes:C,bounds:b,objects:L,shape:N,aspect:t.aspectRatio||[1,1,1],pickRadius:t.pickRadius||10,zNear:t.zNear||.01,zFar:t.zFar||1e3,fovy:t.fovy||Math.PI/4,clearColor:t.clearColor||[0,0,0,0],autoResize:y(t.autoResize),autoBounds:y(t.autoBounds),autoScale:!!t.autoScale,autoCenter:y(t.autoCenter),clipToBounds:y(t.clipToBounds),snapToData:!!t.snapToData,onselect:t.onselect||null,onrender:t.onrender||null,onclick:t.onclick||null,cameraParams:B,oncontextloss:null,mouseListener:null,_stopped:!1},U=[x.drawingBufferWidth/V.pixelRatio|0,x.drawingBufferHeight/V.pixelRatio|0];function q(){if(!V._stopped&&V.autoResize){var t=e.parentNode,r=1,n=1;t&&t!==document.body?(r=t.clientWidth,n=t.clientHeight):(r=window.innerWidth,n=window.innerHeight);var a=0|Math.ceil(r*V.pixelRatio),i=0|Math.ceil(n*V.pixelRatio);if(a!==e.width||i!==e.height){e.width=a,e.height=i;var o=e.style;o.position=o.position||\"absolute\",o.left=\"0px\",o.top=\"0px\",o.width=r+\"px\",o.height=n+\"px\",z=!0}}}V.autoResize&&q();function H(){for(var t=L.length,e=I.length,r=0;r<e;++r)O[r]=0;t:for(var r=0;r<t;++r){var n=L[r],a=n.pickSlots;if(a){for(var i=0;i<e;++i)if(O[i]+a<255){P[r]=i,n.setPickBase(O[i]+1),O[i]+=a;continue t}var o=s(x,N);P[r]=e,I.push(o),O.push(a),n.setPickBase(1),e+=1}else P[r]=-1}for(;e>0&&0===O[e-1];)O.pop(),I.pop().dispose()}function G(){if(V.contextLost)return!0;x.isContextLost()&&(V.contextLost=!0,V.mouseListener.enabled=!1,V.selection.object=null,V.oncontextloss&&V.oncontextloss())}window.addEventListener(\"resize\",q),V.update=function(t){V._stopped||(t=t||{},z=!0,D=!0)},V.add=function(t){V._stopped||(t.axes=S,L.push(t),P.push(-1),z=!0,D=!0,H())},V.remove=function(t){if(!V._stopped){var e=L.indexOf(t);e<0||(L.splice(e,1),P.pop(),z=!0,D=!0,H())}},V.dispose=function(){if(!V._stopped&&(V._stopped=!0,window.removeEventListener(\"resize\",q),e.removeEventListener(\"webglcontextlost\",G),V.mouseListener.enabled=!1,!V.contextLost)){S.dispose(),C.dispose();for(var t=0;t<L.length;++t)L[t].dispose();w.dispose();for(var t=0;t<I.length;++t)I[t].dispose();k.dispose(),x=null,S=null,C=null,L=[]}},V.wheelListener=h(e,function(t,e){if(!1!==j.keyBindingMode&&j.enableWheel&&j._ortho){var r=t>e?1.1:1/1.1;V.aspect[0]*=r,V.aspect[1]*=r,V.aspect[2]*=r,V.redraw()}},!0),V._mouseRotating=!1,V._prevButtons=0,V.enableMouseListeners=function(){V.mouseListener=u(e,function(t,e,r){if(!V._stopped){var n=I.length,a=L.length,i=_.object;_.distance=1/0,_.mouse[0]=e,_.mouse[1]=r,_.object=null,_.screen=null,_.dataCoordinate=_.dataPosition=null;var o=!1;if(t&&V._prevButtons)V._mouseRotating=!0;else{V._mouseRotating&&(D=!0),V._mouseRotating=!1;for(var s=0;s<n;++s){var l=I[s].query(e,U[1]-r-1,V.pickRadius);if(l){if(l.distance>_.distance)continue;for(var c=0;c<a;++c){var u=L[c];if(P[c]===s){var h=u.pick(l);h&&(_.buttons=t,_.screen=l.coord,_.distance=l.distance,_.object=u,_.index=h.distance,_.dataPosition=h.position,_.dataCoordinate=h.dataCoordinate,_.data=h,o=!0)}}}}}i&&i!==_.object&&(i.highlight&&i.highlight(null),z=!0),_.object&&(_.object.highlight&&_.object.highlight(_.data),z=!0),(o=o||_.object!==i)&&V.onselect&&V.onselect(_),1&t&&!(1&V._prevButtons)&&V.onclick&&V.onclick(_),V._prevButtons=t}})},e.addEventListener(\"webglcontextlost\",G);var Y=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],W=[Y[0].slice(),Y[1].slice()];function X(){if(!G()){q();var t=V.camera.tick();B.view=V.camera.matrix,z=z||t,D=D||t,S.pixelRatio=V.pixelRatio,C.pixelRatio=V.pixelRatio;var e=L.length,r=Y[0],n=Y[1];r[0]=r[1]=r[2]=1/0,n[0]=n[1]=n[2]=-1/0;for(var a=0;a<e;++a){var o=L[a];o.pixelRatio=V.pixelRatio,o.axes=V.axes,z=z||!!o.dirty,D=D||!!o.dirty;var s=o.bounds;if(s)for(var l=s[0],u=s[1],h=0;h<3;++h)r[h]=Math.min(r[h],l[h]),n[h]=Math.max(n[h],u[h])}var d=V.bounds;if(V.autoBounds)for(var h=0;h<3;++h){if(n[h]<r[h])r[h]=-1,n[h]=1;else{r[h]===n[h]&&(r[h]-=1,n[h]+=1);var g=.05*(n[h]-r[h]);r[h]=r[h]-g,n[h]=n[h]+g}d[0][h]=r[h],d[1][h]=n[h]}for(var v=!1,h=0;h<3;++h)v=v||W[0][h]!==d[0][h]||W[1][h]!==d[1][h],W[0][h]=d[0][h],W[1][h]=d[1][h];if(D=D||v,z=z||v){if(v){for(var y=[0,0,0],a=0;a<3;++a)y[a]=m((d[1][a]-d[0][a])/10);S.autoTicks?S.update({bounds:d,tickSpacing:y}):S.update({bounds:d})}var b=x.drawingBufferWidth,A=x.drawingBufferHeight;N[0]=b,N[1]=A,U[0]=0|Math.max(b/V.pixelRatio,1),U[1]=0|Math.max(A/V.pixelRatio,1),T?(p(R,-b/A,b/A,-1,1,V.zNear,V.zFar),B._ortho=!0):(f(R,V.fovy,b/A,V.zNear,V.zFar),B._ortho=!1);for(var a=0;a<16;++a)F[a]=0;F[15]=1;for(var M=0,a=0;a<3;++a)M=Math.max(M,d[1][a]-d[0][a]);for(var a=0;a<3;++a)V.autoScale?F[5*a]=V.aspect[a]/(d[1][a]-d[0][a]):F[5*a]=1/M,V.autoCenter&&(F[12+a]=.5*-F[5*a]*(d[0][a]+d[1][a]));for(var a=0;a<e;++a){var o=L[a];o.axesBounds=d,V.clipToBounds&&(o.clipBounds=d)}_.object&&(V.snapToData?C.position=_.dataCoordinate:C.position=_.dataPosition,C.bounds=d),D&&(D=!1,function(){if(G())return;x.colorMask(!0,!0,!0,!0),x.depthMask(!0),x.disable(x.BLEND),x.enable(x.DEPTH_TEST),x.depthFunc(x.LEQUAL);for(var t=L.length,e=I.length,r=0;r<e;++r){var n=I[r];n.shape=U,n.begin();for(var a=0;a<t;++a)if(P[a]===r){var i=L[a];i.drawPick&&(i.pixelRatio=1,i.drawPick(B))}n.end()}}()),V.axesPixels=i(V.axes,B,b,A),V.onrender&&V.onrender(),x.bindFramebuffer(x.FRAMEBUFFER,null),x.viewport(0,0,b,A);var E=V.clearColor;x.clearColor(E[0],E[1],E[2],E[3]),x.clear(x.COLOR_BUFFER_BIT|x.DEPTH_BUFFER_BIT),x.depthMask(!0),x.colorMask(!0,!0,!0,!0),x.enable(x.DEPTH_TEST),x.depthFunc(x.LEQUAL),x.disable(x.BLEND),x.disable(x.CULL_FACE);var O=!1;S.enable&&(O=O||S.isTransparent(),S.draw(B)),C.axes=S,_.object&&C.draw(B),x.disable(x.CULL_FACE);for(var a=0;a<e;++a){var o=L[a];o.axes=S,o.pixelRatio=V.pixelRatio,o.isOpaque&&o.isOpaque()&&o.draw(B),o.isTransparent&&o.isTransparent()&&(O=!0)}if(O){w.shape=N,w.bind(),x.clear(x.DEPTH_BUFFER_BIT),x.colorMask(!1,!1,!1,!1),x.depthMask(!0),x.depthFunc(x.LESS),S.enable&&S.isTransparent()&&S.drawTransparent(B);for(var a=0;a<e;++a){var o=L[a];o.isOpaque&&o.isOpaque()&&o.draw(B)}x.enable(x.BLEND),x.blendEquation(x.FUNC_ADD),x.blendFunc(x.ONE,x.ONE_MINUS_SRC_ALPHA),x.colorMask(!0,!0,!0,!0),x.depthMask(!1),x.clearColor(0,0,0,0),x.clear(x.COLOR_BUFFER_BIT),S.isTransparent()&&S.drawTransparent(B);for(var a=0;a<e;++a){var o=L[a];o.isTransparent&&o.isTransparent()&&o.drawTransparent(B)}x.bindFramebuffer(x.FRAMEBUFFER,null),x.blendFunc(x.ONE,x.ONE_MINUS_SRC_ALPHA),x.disable(x.DEPTH_TEST),k.bind(),w.color[0].bind(0),k.uniforms.accumBuffer=0,c(x),x.disable(x.BLEND)}z=!1;for(var a=0;a<e;++a)L[a].dirty=!1}}}return V.enableMouseListeners(),function t(){V._stopped||V.contextLost||(X(),requestAnimationFrame(t))}(),V.redraw=function(){V._stopped||(z=!0,X())},V},createCamera:n}},{\"./camera.js\":289,\"./lib/shader\":290,\"a-big-triangle\":60,\"gl-axes3d\":234,\"gl-axes3d/properties\":241,\"gl-fbo\":250,\"gl-mat4/ortho\":269,\"gl-mat4/perspective\":270,\"gl-select-static\":301,\"gl-spikes3d\":311,\"is-mobile\":421,\"mouse-change\":436,\"mouse-wheel\":439}],292:[function(t,e,r){var n=t(\"glslify\");r.pointVertex=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec2 position;\\n\\nuniform mat3 matrix;\\nuniform float pointSize;\\nuniform float pointCloud;\\n\\nhighp float rand(vec2 co) {\\n  highp float a = 12.9898;\\n  highp float b = 78.233;\\n  highp float c = 43758.5453;\\n  highp float d = dot(co.xy, vec2(a, b));\\n  highp float e = mod(d, 3.14);\\n  return fract(sin(e) * c);\\n}\\n\\nvoid main() {\\n  vec3 hgPosition = matrix * vec3(position, 1);\\n  gl_Position  = vec4(hgPosition.xy, 0, hgPosition.z);\\n    // if we don't jitter the point size a bit, overall point cloud\\n    // saturation 'jumps' on zooming, which is disturbing and confusing\\n  gl_PointSize = pointSize * ((19.5 + rand(position)) / 20.0);\\n  if(pointCloud != 0.0) { // pointCloud is truthy\\n    // get the same square surface as circle would be\\n    gl_PointSize *= 0.886;\\n  }\\n}\"]),r.pointFragment=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nuniform vec4 color, borderColor;\\nuniform float centerFraction;\\nuniform float pointCloud;\\n\\nvoid main() {\\n  float radius;\\n  vec4 baseColor;\\n  if(pointCloud != 0.0) { // pointCloud is truthy\\n    if(centerFraction == 1.0) {\\n      gl_FragColor = color;\\n    } else {\\n      gl_FragColor = mix(borderColor, color, centerFraction);\\n    }\\n  } else {\\n    radius = length(2.0 * gl_PointCoord.xy - 1.0);\\n    if(radius > 1.0) {\\n      discard;\\n    }\\n    baseColor = mix(borderColor, color, step(radius, centerFraction));\\n    gl_FragColor = vec4(baseColor.rgb * baseColor.a, baseColor.a);\\n  }\\n}\\n\"]),r.pickVertex=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec2 position;\\nattribute vec4 pickId;\\n\\nuniform mat3 matrix;\\nuniform float pointSize;\\nuniform vec4 pickOffset;\\n\\nvarying vec4 fragId;\\n\\nvoid main() {\\n  vec3 hgPosition = matrix * vec3(position, 1);\\n  gl_Position  = vec4(hgPosition.xy, 0, hgPosition.z);\\n  gl_PointSize = pointSize;\\n\\n  vec4 id = pickId + pickOffset;\\n  id.y += floor(id.x / 256.0);\\n  id.x -= floor(id.x / 256.0) * 256.0;\\n\\n  id.z += floor(id.y / 256.0);\\n  id.y -= floor(id.y / 256.0) * 256.0;\\n\\n  id.w += floor(id.z / 256.0);\\n  id.z -= floor(id.z / 256.0) * 256.0;\\n\\n  fragId = id;\\n}\\n\"]),r.pickFragment=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nvarying vec4 fragId;\\n\\nvoid main() {\\n  float radius = length(2.0 * gl_PointCoord.xy - 1.0);\\n  if(radius > 1.0) {\\n    discard;\\n  }\\n  gl_FragColor = fragId / 255.0;\\n}\\n\"])},{glslify:410}],293:[function(t,e,r){\"use strict\";var n=t(\"gl-shader\"),a=t(\"gl-buffer\"),i=t(\"typedarray-pool\"),o=t(\"./lib/shader\");function s(t,e,r,n,a){this.plot=t,this.offsetBuffer=e,this.pickBuffer=r,this.shader=n,this.pickShader=a,this.sizeMin=.5,this.sizeMinCap=2,this.sizeMax=20,this.areaRatio=1,this.pointCount=0,this.color=[1,0,0,1],this.borderColor=[0,0,0,1],this.blend=!1,this.pickOffset=0,this.points=null}e.exports=function(t,e){var r=t.gl,i=a(r),l=a(r),c=n(r,o.pointVertex,o.pointFragment),u=n(r,o.pickVertex,o.pickFragment),h=new s(t,i,l,c,u);return h.update(e),t.addObject(h),h};var l,c,u=s.prototype;u.dispose=function(){this.shader.dispose(),this.pickShader.dispose(),this.offsetBuffer.dispose(),this.pickBuffer.dispose(),this.plot.removeObject(this)},u.update=function(t){var e;function r(e,r){return e in t?t[e]:r}t=t||{},this.sizeMin=r(\"sizeMin\",.5),this.sizeMax=r(\"sizeMax\",20),this.color=r(\"color\",[1,0,0,1]).slice(),this.areaRatio=r(\"areaRatio\",1),this.borderColor=r(\"borderColor\",[0,0,0,1]).slice(),this.blend=r(\"blend\",!1);var n=t.positions.length>>>1,a=t.positions instanceof Float32Array,o=t.idToIndex instanceof Int32Array&&t.idToIndex.length>=n,s=t.positions,l=a?s:i.mallocFloat32(s.length),c=o?t.idToIndex:i.mallocInt32(n);if(a||l.set(s),!o)for(l.set(s),e=0;e<n;e++)c[e]=e;this.points=s,this.offsetBuffer.update(l),this.pickBuffer.update(c),a||i.free(l),o||i.free(c),this.pointCount=n,this.pickOffset=0},u.unifiedDraw=(l=[1,0,0,0,1,0,0,0,1],c=[0,0,0,0],function(t){var e=void 0!==t,r=e?this.pickShader:this.shader,n=this.plot.gl,a=this.plot.dataBox;if(0===this.pointCount)return t;var i=a[2]-a[0],o=a[3]-a[1],s=function(t,e){var r,n=0,a=t.length>>>1;for(r=0;r<a;r++){var i=t[2*r],o=t[2*r+1];i>=e[0]&&i<=e[2]&&o>=e[1]&&o<=e[3]&&n++}return n}(this.points,a),u=this.plot.pickPixelRatio*Math.max(Math.min(this.sizeMinCap,this.sizeMin),Math.min(this.sizeMax,this.sizeMax/Math.pow(s,.33333)));l[0]=2/i,l[4]=2/o,l[6]=-2*a[0]/i-1,l[7]=-2*a[1]/o-1,this.offsetBuffer.bind(),r.bind(),r.attributes.position.pointer(),r.uniforms.matrix=l,r.uniforms.color=this.color,r.uniforms.borderColor=this.borderColor,r.uniforms.pointCloud=u<5,r.uniforms.pointSize=u,r.uniforms.centerFraction=Math.min(1,Math.max(0,Math.sqrt(1-this.areaRatio))),e&&(c[0]=255&t,c[1]=t>>8&255,c[2]=t>>16&255,c[3]=t>>24&255,this.pickBuffer.bind(),r.attributes.pickId.pointer(n.UNSIGNED_BYTE),r.uniforms.pickOffset=c,this.pickOffset=t);var h=n.getParameter(n.BLEND),f=n.getParameter(n.DITHER);return h&&!this.blend&&n.disable(n.BLEND),f&&n.disable(n.DITHER),n.drawArrays(n.POINTS,0,this.pointCount),h&&!this.blend&&n.enable(n.BLEND),f&&n.enable(n.DITHER),t+this.pointCount}),u.draw=u.unifiedDraw,u.drawPick=u.unifiedDraw,u.pick=function(t,e,r){var n=this.pickOffset,a=this.pointCount;if(r<n||r>=n+a)return null;var i=r-n,o=this.points;return{object:this,pointId:i,dataCoord:[o[2*i],o[2*i+1]]}}},{\"./lib/shader\":292,\"gl-buffer\":242,\"gl-shader\":302,\"typedarray-pool\":546}],294:[function(t,e,r){e.exports=function(t,e,r,n){var a,i,o,s,l,c=e[0],u=e[1],h=e[2],f=e[3],p=r[0],d=r[1],g=r[2],v=r[3];(i=c*p+u*d+h*g+f*v)<0&&(i=-i,p=-p,d=-d,g=-g,v=-v);1-i>1e-6?(a=Math.acos(i),o=Math.sin(a),s=Math.sin((1-n)*a)/o,l=Math.sin(n*a)/o):(s=1-n,l=n);return t[0]=s*c+l*p,t[1]=s*u+l*d,t[2]=s*h+l*g,t[3]=s*f+l*v,t}},{}],295:[function(t,e,r){\"use strict\";e.exports=function(t){return t||0===t?t.toString():\"\"}},{}],296:[function(t,e,r){\"use strict\";var n=t(\"vectorize-text\");e.exports=function(t,e,r){var i=a[e];i||(i=a[e]={});if(t in i)return i[t];var o={textAlign:\"center\",textBaseline:\"middle\",lineHeight:1,font:e,lineSpacing:1.25,styletags:{breaklines:!0,bolds:!0,italics:!0,subscripts:!0,superscripts:!0},triangles:!0},s=n(t,o);o.triangles=!1;var l,c,u=n(t,o);if(r&&1!==r){for(l=0;l<s.positions.length;++l)for(c=0;c<s.positions[l].length;++c)s.positions[l][c]/=r;for(l=0;l<u.positions.length;++l)for(c=0;c<u.positions[l].length;++c)u.positions[l][c]/=r}var h=[[1/0,1/0],[-1/0,-1/0]],f=u.positions.length;for(l=0;l<f;++l){var p=u.positions[l];for(c=0;c<2;++c)h[0][c]=Math.min(h[0][c],p[c]),h[1][c]=Math.max(h[1][c],p[c])}return i[t]=[s,u,h]};var a={}},{\"vectorize-text\":551}],297:[function(t,e,r){var n=t(\"gl-shader\"),a=t(\"glslify\"),i=a([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nattribute vec3 position;\\nattribute vec4 color;\\nattribute vec2 glyph;\\nattribute vec4 id;\\n\\nuniform vec4 highlightId;\\nuniform float highlightScale;\\nuniform mat4 model, view, projection;\\nuniform vec3 clipBounds[2];\\n\\nvarying vec4 interpColor;\\nvarying vec4 pickId;\\nvarying vec3 dataCoordinate;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], position)) {\\n\\n    gl_Position = vec4(0,0,0,0);\\n  } else {\\n    float scale = 1.0;\\n    if(distance(highlightId, id) < 0.0001) {\\n      scale = highlightScale;\\n    }\\n\\n    vec4 worldPosition = model * vec4(position, 1);\\n    vec4 viewPosition = view * worldPosition;\\n    viewPosition = viewPosition / viewPosition.w;\\n    vec4 clipPosition = projection * (viewPosition + scale * vec4(glyph.x, -glyph.y, 0, 0));\\n\\n    gl_Position = clipPosition;\\n    interpColor = color;\\n    pickId = id;\\n    dataCoordinate = position;\\n  }\\n}\"]),o=a([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nattribute vec3 position;\\nattribute vec4 color;\\nattribute vec2 glyph;\\nattribute vec4 id;\\n\\nuniform mat4 model, view, projection;\\nuniform vec2 screenSize;\\nuniform vec3 clipBounds[2];\\nuniform float highlightScale, pixelRatio;\\nuniform vec4 highlightId;\\n\\nvarying vec4 interpColor;\\nvarying vec4 pickId;\\nvarying vec3 dataCoordinate;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], position)) {\\n\\n    gl_Position = vec4(0,0,0,0);\\n  } else {\\n    float scale = pixelRatio;\\n    if(distance(highlightId.bgr, id.bgr) < 0.001) {\\n      scale *= highlightScale;\\n    }\\n\\n    vec4 worldPosition = model * vec4(position, 1.0);\\n    vec4 viewPosition = view * worldPosition;\\n    vec4 clipPosition = projection * viewPosition;\\n    clipPosition /= clipPosition.w;\\n\\n    gl_Position = clipPosition + vec4(screenSize * scale * vec2(glyph.x, -glyph.y), 0.0, 0.0);\\n    interpColor = color;\\n    pickId = id;\\n    dataCoordinate = position;\\n  }\\n}\"]),s=a([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nattribute vec3 position;\\nattribute vec4 color;\\nattribute vec2 glyph;\\nattribute vec4 id;\\n\\nuniform float highlightScale;\\nuniform vec4 highlightId;\\nuniform vec3 axes[2];\\nuniform mat4 model, view, projection;\\nuniform vec2 screenSize;\\nuniform vec3 clipBounds[2];\\nuniform float scale, pixelRatio;\\n\\nvarying vec4 interpColor;\\nvarying vec4 pickId;\\nvarying vec3 dataCoordinate;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], position)) {\\n\\n    gl_Position = vec4(0,0,0,0);\\n  } else {\\n    float lscale = pixelRatio * scale;\\n    if(distance(highlightId, id) < 0.0001) {\\n      lscale *= highlightScale;\\n    }\\n\\n    vec4 clipCenter   = projection * view * model * vec4(position, 1);\\n    vec3 dataPosition = position + 0.5*lscale*(axes[0] * glyph.x + axes[1] * glyph.y) * clipCenter.w * screenSize.y;\\n    vec4 clipPosition = projection * view * model * vec4(dataPosition, 1);\\n\\n    gl_Position = clipPosition;\\n    interpColor = color;\\n    pickId = id;\\n    dataCoordinate = dataPosition;\\n  }\\n}\\n\"]),l=a([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 fragClipBounds[2];\\nuniform float opacity;\\n\\nvarying vec4 interpColor;\\nvarying vec3 dataCoordinate;\\n\\nvoid main() {\\n  if (\\n    outOfRange(fragClipBounds[0], fragClipBounds[1], dataCoordinate) ||\\n    interpColor.a * opacity == 0.\\n  ) discard;\\n  gl_FragColor = interpColor * opacity;\\n}\\n\"]),c=a([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 fragClipBounds[2];\\nuniform float pickGroup;\\n\\nvarying vec4 pickId;\\nvarying vec3 dataCoordinate;\\n\\nvoid main() {\\n  if (outOfRange(fragClipBounds[0], fragClipBounds[1], dataCoordinate)) discard;\\n\\n  gl_FragColor = vec4(pickGroup, pickId.bgr);\\n}\"]),u=[{name:\"position\",type:\"vec3\"},{name:\"color\",type:\"vec4\"},{name:\"glyph\",type:\"vec2\"},{name:\"id\",type:\"vec4\"}],h={vertex:i,fragment:l,attributes:u},f={vertex:o,fragment:l,attributes:u},p={vertex:s,fragment:l,attributes:u},d={vertex:i,fragment:c,attributes:u},g={vertex:o,fragment:c,attributes:u},v={vertex:s,fragment:c,attributes:u};function m(t,e){var r=n(t,e),a=r.attributes;return a.position.location=0,a.color.location=1,a.glyph.location=2,a.id.location=3,r}r.createPerspective=function(t){return m(t,h)},r.createOrtho=function(t){return m(t,f)},r.createProject=function(t){return m(t,p)},r.createPickPerspective=function(t){return m(t,d)},r.createPickOrtho=function(t){return m(t,g)},r.createPickProject=function(t){return m(t,v)}},{\"gl-shader\":302,glslify:410}],298:[function(t,e,r){\"use strict\";var n=t(\"is-string-blank\"),a=t(\"gl-buffer\"),i=t(\"gl-vao\"),o=t(\"typedarray-pool\"),s=t(\"gl-mat4/multiply\"),l=t(\"./lib/shaders\"),c=t(\"./lib/glyphs\"),u=t(\"./lib/get-simple-string\"),h=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function f(t,e){var r=t[0],n=t[1],a=t[2],i=t[3];return t[0]=e[0]*r+e[4]*n+e[8]*a+e[12]*i,t[1]=e[1]*r+e[5]*n+e[9]*a+e[13]*i,t[2]=e[2]*r+e[6]*n+e[10]*a+e[14]*i,t[3]=e[3]*r+e[7]*n+e[11]*a+e[15]*i,t}function p(t,e,r,n){return f(n,n),f(n,n),f(n,n)}function d(t,e){this.index=t,this.dataCoordinate=this.position=e}function g(t){return!0===t?1:t>1?1:t}function v(t,e,r,n,a,i,o,s,l,c,u,h){this.gl=t,this.pixelRatio=1,this.shader=e,this.orthoShader=r,this.projectShader=n,this.pointBuffer=a,this.colorBuffer=i,this.glyphBuffer=o,this.idBuffer=s,this.vao=l,this.vertexCount=0,this.lineVertexCount=0,this.opacity=1,this.hasAlpha=!1,this.lineWidth=0,this.projectScale=[2/3,2/3,2/3],this.projectOpacity=[1,1,1],this.projectHasAlpha=!1,this.pickId=0,this.pickPerspectiveShader=c,this.pickOrthoShader=u,this.pickProjectShader=h,this.points=[],this._selectResult=new d(0,[0,0,0]),this.useOrtho=!0,this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.axesProject=[!0,!0,!0],this.axesBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.highlightId=[1,1,1,1],this.highlightScale=2,this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.dirty=!0}e.exports=function(t){var e=t.gl,r=l.createPerspective(e),n=l.createOrtho(e),o=l.createProject(e),s=l.createPickPerspective(e),c=l.createPickOrtho(e),u=l.createPickProject(e),h=a(e),f=a(e),p=a(e),d=a(e),g=i(e,[{buffer:h,size:3,type:e.FLOAT},{buffer:f,size:4,type:e.FLOAT},{buffer:p,size:2,type:e.FLOAT},{buffer:d,size:4,type:e.UNSIGNED_BYTE,normalized:!0}]),m=new v(e,r,n,o,h,f,p,d,g,s,c,u);return m.update(t),m};var m=v.prototype;m.pickSlots=1,m.setPickBase=function(t){this.pickId=t},m.isTransparent=function(){if(this.hasAlpha)return!0;for(var t=0;t<3;++t)if(this.axesProject[t]&&this.projectHasAlpha)return!0;return!1},m.isOpaque=function(){if(!this.hasAlpha)return!0;for(var t=0;t<3;++t)if(this.axesProject[t]&&!this.projectHasAlpha)return!0;return!1};var y=[0,0],x=[0,0,0],b=[0,0,0],_=[0,0,0,1],w=[0,0,0,1],k=h.slice(),T=[0,0,0],A=[[0,0,0],[0,0,0]];function M(t){return t[0]=t[1]=t[2]=0,t}function S(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=1,t}function E(t,e,r,n){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[r]=n,t}function C(t,e,r,n){var a,i=e.axesProject,o=e.gl,l=t.uniforms,c=r.model||h,u=r.view||h,f=r.projection||h,d=e.axesBounds,g=function(t){for(var e=A,r=0;r<2;++r)for(var n=0;n<3;++n)e[r][n]=Math.max(Math.min(t[r][n],1e8),-1e8);return e}(e.clipBounds);a=e.axes&&e.axes.lastCubeProps?e.axes.lastCubeProps.axis:[1,1,1],y[0]=2/o.drawingBufferWidth,y[1]=2/o.drawingBufferHeight,t.bind(),l.view=u,l.projection=f,l.screenSize=y,l.highlightId=e.highlightId,l.highlightScale=e.highlightScale,l.clipBounds=g,l.pickGroup=e.pickId/255,l.pixelRatio=n;for(var v=0;v<3;++v)if(i[v]){l.scale=e.projectScale[v],l.opacity=e.projectOpacity[v];for(var m=k,C=0;C<16;++C)m[C]=0;for(C=0;C<4;++C)m[5*C]=1;m[5*v]=0,a[v]<0?m[12+v]=d[0][v]:m[12+v]=d[1][v],s(m,c,m),l.model=m;var L=(v+1)%3,P=(v+2)%3,O=M(x),I=M(b);O[L]=1,I[P]=1;var z=p(0,0,0,S(_,O)),D=p(0,0,0,S(w,I));if(Math.abs(z[1])>Math.abs(D[1])){var R=z;z=D,D=R,R=O,O=I,I=R;var F=L;L=P,P=F}z[0]<0&&(O[L]=-1),D[1]>0&&(I[P]=-1);var B=0,N=0;for(C=0;C<4;++C)B+=Math.pow(c[4*L+C],2),N+=Math.pow(c[4*P+C],2);O[L]/=Math.sqrt(B),I[P]/=Math.sqrt(N),l.axes[0]=O,l.axes[1]=I,l.fragClipBounds[0]=E(T,g[0],v,-1e8),l.fragClipBounds[1]=E(T,g[1],v,1e8),e.vao.bind(),e.vao.draw(o.TRIANGLES,e.vertexCount),e.lineWidth>0&&(o.lineWidth(e.lineWidth*n),e.vao.draw(o.LINES,e.lineVertexCount,e.vertexCount)),e.vao.unbind()}}var L=[[-1e8,-1e8,-1e8],[1e8,1e8,1e8]];function P(t,e,r,n,a,i,o){var s=r.gl;if((i===r.projectHasAlpha||o)&&C(e,r,n,a),i===r.hasAlpha||o){t.bind();var l=t.uniforms;l.model=n.model||h,l.view=n.view||h,l.projection=n.projection||h,y[0]=2/s.drawingBufferWidth,y[1]=2/s.drawingBufferHeight,l.screenSize=y,l.highlightId=r.highlightId,l.highlightScale=r.highlightScale,l.fragClipBounds=L,l.clipBounds=r.axes.bounds,l.opacity=r.opacity,l.pickGroup=r.pickId/255,l.pixelRatio=a,r.vao.bind(),r.vao.draw(s.TRIANGLES,r.vertexCount),r.lineWidth>0&&(s.lineWidth(r.lineWidth*a),r.vao.draw(s.LINES,r.lineVertexCount,r.vertexCount)),r.vao.unbind()}}function O(t,e,r,a){var i;i=Array.isArray(t)?e<t.length?t[e]:void 0:t,i=u(i);var o=!0;n(i)&&(i=\"\\u25bc\",o=!1);var s=c(i,r,a);return{mesh:s[0],lines:s[1],bounds:s[2],visible:o}}m.draw=function(t){P(this.useOrtho?this.orthoShader:this.shader,this.projectShader,this,t,this.pixelRatio,!1,!1)},m.drawTransparent=function(t){P(this.useOrtho?this.orthoShader:this.shader,this.projectShader,this,t,this.pixelRatio,!0,!1)},m.drawPick=function(t){P(this.useOrtho?this.pickOrthoShader:this.pickPerspectiveShader,this.pickProjectShader,this,t,1,!0,!0)},m.pick=function(t){if(!t)return null;if(t.id!==this.pickId)return null;var e=t.value[2]+(t.value[1]<<8)+(t.value[0]<<16);if(e>=this.pointCount||e<0)return null;var r=this.points[e],n=this._selectResult;n.index=e;for(var a=0;a<3;++a)n.position[a]=n.dataCoordinate[a]=r[a];return n},m.highlight=function(t){if(t){var e=t.index,r=255&e,n=e>>8&255,a=e>>16&255;this.highlightId=[r/255,n/255,a/255,0]}else this.highlightId=[1,1,1,1]},m.update=function(t){if(\"perspective\"in(t=t||{})&&(this.useOrtho=!t.perspective),\"orthographic\"in t&&(this.useOrtho=!!t.orthographic),\"lineWidth\"in t&&(this.lineWidth=t.lineWidth),\"project\"in t)if(Array.isArray(t.project))this.axesProject=t.project;else{var e=!!t.project;this.axesProject=[e,e,e]}if(\"projectScale\"in t)if(Array.isArray(t.projectScale))this.projectScale=t.projectScale.slice();else{var r=+t.projectScale;this.projectScale=[r,r,r]}if(this.projectHasAlpha=!1,\"projectOpacity\"in t){if(Array.isArray(t.projectOpacity))this.projectOpacity=t.projectOpacity.slice();else{r=+t.projectOpacity;this.projectOpacity=[r,r,r]}for(var n=0;n<3;++n)this.projectOpacity[n]=g(this.projectOpacity[n]),this.projectOpacity[n]<1&&(this.projectHasAlpha=!0)}this.hasAlpha=!1,\"opacity\"in t&&(this.opacity=g(t.opacity),this.opacity<1&&(this.hasAlpha=!0)),this.dirty=!0;var a,i,s=t.position,l=t.font||\"normal\",c=t.alignment||[0,0];if(2===c.length)a=c[0],i=c[1];else{a=[],i=[];for(n=0;n<c.length;++n)a[n]=c[n][0],i[n]=c[n][1]}var u=[1/0,1/0,1/0],h=[-1/0,-1/0,-1/0],f=t.glyph,p=t.color,d=t.size,v=t.angle,m=t.lineColor,y=-1,x=0,b=0,_=0;if(s.length){_=s.length;t:for(n=0;n<_;++n){for(var w=s[n],k=0;k<3;++k)if(isNaN(w[k])||!isFinite(w[k]))continue t;var T=(N=O(f,n,l,this.pixelRatio)).mesh,A=N.lines,M=N.bounds;x+=3*T.cells.length,b+=2*A.edges.length}}var S=x+b,E=o.mallocFloat(3*S),C=o.mallocFloat(4*S),L=o.mallocFloat(2*S),P=o.mallocUint32(S);if(S>0){var I=0,z=x,D=[0,0,0,1],R=[0,0,0,1],F=Array.isArray(p)&&Array.isArray(p[0]),B=Array.isArray(m)&&Array.isArray(m[0]);t:for(n=0;n<_;++n){y+=1;for(w=s[n],k=0;k<3;++k){if(isNaN(w[k])||!isFinite(w[k]))continue t;h[k]=Math.max(h[k],w[k]),u[k]=Math.min(u[k],w[k])}T=(N=O(f,n,l,this.pixelRatio)).mesh,A=N.lines,M=N.bounds;var N,j=N.visible;if(j)if(Array.isArray(p)){if(3===(V=F?n<p.length?p[n]:[0,0,0,0]:p).length){for(k=0;k<3;++k)D[k]=V[k];D[3]=1}else if(4===V.length){for(k=0;k<4;++k)D[k]=V[k];!this.hasAlpha&&V[3]<1&&(this.hasAlpha=!0)}}else D[0]=D[1]=D[2]=0,D[3]=1;else D=[1,1,1,0];if(j)if(Array.isArray(m)){var V;if(3===(V=B?n<m.length?m[n]:[0,0,0,0]:m).length){for(k=0;k<3;++k)R[k]=V[k];R[k]=1}else if(4===V.length){for(k=0;k<4;++k)R[k]=V[k];!this.hasAlpha&&V[3]<1&&(this.hasAlpha=!0)}}else R[0]=R[1]=R[2]=0,R[3]=1;else R=[1,1,1,0];var U=.5;j?Array.isArray(d)?U=n<d.length?+d[n]:12:d?U=+d:this.useOrtho&&(U=12):U=0;var q=0;Array.isArray(v)?q=n<v.length?+v[n]:0:v&&(q=+v);var H=Math.cos(q),G=Math.sin(q);for(w=s[n],k=0;k<3;++k)h[k]=Math.max(h[k],w[k]),u[k]=Math.min(u[k],w[k]);var Y=a,W=i;Y=0;Array.isArray(a)?Y=n<a.length?a[n]:0:a&&(Y=a);W=0;Array.isArray(i)?W=n<i.length?i[n]:0:i&&(W=i);var X=[Y*=Y>0?1-M[0][0]:Y<0?1+M[1][0]:1,W*=W>0?1-M[0][1]:W<0?1+M[1][1]:1],Z=T.cells||[],J=T.positions||[];for(k=0;k<Z.length;++k)for(var K=Z[k],Q=0;Q<3;++Q){for(var $=0;$<3;++$)E[3*I+$]=w[$];for($=0;$<4;++$)C[4*I+$]=D[$];P[I]=y;var tt=J[K[Q]];L[2*I]=U*(H*tt[0]-G*tt[1]+X[0]),L[2*I+1]=U*(G*tt[0]+H*tt[1]+X[1]),I+=1}for(Z=A.edges,J=A.positions,k=0;k<Z.length;++k)for(K=Z[k],Q=0;Q<2;++Q){for($=0;$<3;++$)E[3*z+$]=w[$];for($=0;$<4;++$)C[4*z+$]=R[$];P[z]=y;tt=J[K[Q]];L[2*z]=U*(H*tt[0]-G*tt[1]+X[0]),L[2*z+1]=U*(G*tt[0]+H*tt[1]+X[1]),z+=1}}}this.bounds=[u,h],this.points=s,this.pointCount=s.length,this.vertexCount=x,this.lineVertexCount=b,this.pointBuffer.update(E),this.colorBuffer.update(C),this.glyphBuffer.update(L),this.idBuffer.update(P),o.free(E),o.free(C),o.free(L),o.free(P)},m.dispose=function(){this.shader.dispose(),this.orthoShader.dispose(),this.pickPerspectiveShader.dispose(),this.pickOrthoShader.dispose(),this.vao.dispose(),this.pointBuffer.dispose(),this.colorBuffer.dispose(),this.glyphBuffer.dispose(),this.idBuffer.dispose()}},{\"./lib/get-simple-string\":295,\"./lib/glyphs\":296,\"./lib/shaders\":297,\"gl-buffer\":242,\"gl-mat4/multiply\":268,\"gl-vao\":328,\"is-string-blank\":424,\"typedarray-pool\":546}],299:[function(t,e,r){\"use strict\";var n=t(\"glslify\");r.boxVertex=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec2 vertex;\\n\\nuniform vec2 cornerA, cornerB;\\n\\nvoid main() {\\n  gl_Position = vec4(mix(cornerA, cornerB, vertex), 0, 1);\\n}\\n\"]),r.boxFragment=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nuniform vec4 color;\\n\\nvoid main() {\\n  gl_FragColor = color;\\n}\\n\"])},{glslify:410}],300:[function(t,e,r){\"use strict\";var n=t(\"gl-shader\"),a=t(\"gl-buffer\"),i=t(\"./lib/shaders\");function o(t,e,r){this.plot=t,this.boxBuffer=e,this.boxShader=r,this.enabled=!0,this.selectBox=[1/0,1/0,-1/0,-1/0],this.borderColor=[0,0,0,1],this.innerFill=!1,this.innerColor=[0,0,0,.25],this.outerFill=!0,this.outerColor=[0,0,0,.5],this.borderWidth=10}e.exports=function(t,e){var r=t.gl,s=a(r,[0,0,0,1,1,0,1,1]),l=n(r,i.boxVertex,i.boxFragment),c=new o(t,s,l);return c.update(e),t.addOverlay(c),c};var s=o.prototype;s.draw=function(){if(this.enabled){var t=this.plot,e=this.selectBox,r=this.borderWidth,n=(this.innerFill,this.innerColor),a=(this.outerFill,this.outerColor),i=this.borderColor,o=t.box,s=t.screenBox,l=t.dataBox,c=t.viewBox,u=t.pixelRatio,h=(e[0]-l[0])*(c[2]-c[0])/(l[2]-l[0])+c[0],f=(e[1]-l[1])*(c[3]-c[1])/(l[3]-l[1])+c[1],p=(e[2]-l[0])*(c[2]-c[0])/(l[2]-l[0])+c[0],d=(e[3]-l[1])*(c[3]-c[1])/(l[3]-l[1])+c[1];if(h=Math.max(h,c[0]),f=Math.max(f,c[1]),p=Math.min(p,c[2]),d=Math.min(d,c[3]),!(p<h||d<f)){o.bind();var g=s[2]-s[0],v=s[3]-s[1];if(this.outerFill&&(o.drawBox(0,0,g,f,a),o.drawBox(0,f,h,d,a),o.drawBox(0,d,g,v,a),o.drawBox(p,f,g,d,a)),this.innerFill&&o.drawBox(h,f,p,d,n),r>0){var m=r*u;o.drawBox(h-m,f-m,p+m,f+m,i),o.drawBox(h-m,d-m,p+m,d+m,i),o.drawBox(h-m,f-m,h+m,d+m,i),o.drawBox(p-m,f-m,p+m,d+m,i)}}}},s.update=function(t){t=t||{},this.innerFill=!!t.innerFill,this.outerFill=!!t.outerFill,this.innerColor=(t.innerColor||[0,0,0,.5]).slice(),this.outerColor=(t.outerColor||[0,0,0,.5]).slice(),this.borderColor=(t.borderColor||[0,0,0,1]).slice(),this.borderWidth=t.borderWidth||0,this.selectBox=(t.selectBox||this.selectBox).slice()},s.dispose=function(){this.boxBuffer.dispose(),this.boxShader.dispose(),this.plot.removeOverlay(this)}},{\"./lib/shaders\":299,\"gl-buffer\":242,\"gl-shader\":302}],301:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=n(t,e),i=a.mallocUint8(e[0]*e[1]*4);return new c(t,r,i)};var n=t(\"gl-fbo\"),a=t(\"typedarray-pool\"),i=t(\"ndarray\"),o=t(\"bit-twiddle\").nextPow2,s=t(\"cwise/lib/wrapper\")({args:[\"array\",{offset:[0,0,1],array:0},{offset:[0,0,2],array:0},{offset:[0,0,3],array:0},\"scalar\",\"scalar\",\"index\"],pre:{body:\"{this_closestD2=1e8,this_closestX=-1,this_closestY=-1}\",args:[],thisVars:[\"this_closestD2\",\"this_closestX\",\"this_closestY\"],localVars:[]},body:{body:\"{if(_inline_16_arg0_<255||_inline_16_arg1_<255||_inline_16_arg2_<255||_inline_16_arg3_<255){var _inline_16_l=_inline_16_arg4_-_inline_16_arg6_[0],_inline_16_a=_inline_16_arg5_-_inline_16_arg6_[1],_inline_16_f=_inline_16_l*_inline_16_l+_inline_16_a*_inline_16_a;_inline_16_f<this_closestD2&&(this_closestD2=_inline_16_f,this_closestX=_inline_16_arg6_[0],this_closestY=_inline_16_arg6_[1])}}\",args:[{name:\"_inline_16_arg0_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_16_arg1_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_16_arg2_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_16_arg3_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_16_arg4_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_16_arg5_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_16_arg6_\",lvalue:!1,rvalue:!0,count:4}],thisVars:[\"this_closestD2\",\"this_closestX\",\"this_closestY\"],localVars:[\"_inline_16_a\",\"_inline_16_f\",\"_inline_16_l\"]},post:{body:\"{return[this_closestX,this_closestY,this_closestD2]}\",args:[],thisVars:[\"this_closestD2\",\"this_closestX\",\"this_closestY\"],localVars:[]},debug:!1,funcName:\"cwise\",blockSize:64});function l(t,e,r,n,a){this.coord=[t,e],this.id=r,this.value=n,this.distance=a}function c(t,e,r){this.gl=t,this.fbo=e,this.buffer=r,this._readTimeout=null;var n=this;this._readCallback=function(){n.gl&&(e.bind(),t.readPixels(0,0,e.shape[0],e.shape[1],t.RGBA,t.UNSIGNED_BYTE,n.buffer),n._readTimeout=null)}}var u=c.prototype;Object.defineProperty(u,\"shape\",{get:function(){return this.gl?this.fbo.shape.slice():[0,0]},set:function(t){if(this.gl){this.fbo.shape=t;var e=this.fbo.shape[0],r=this.fbo.shape[1];if(r*e*4>this.buffer.length){a.free(this.buffer);for(var n=this.buffer=a.mallocUint8(o(r*e*4)),i=0;i<r*e*4;++i)n[i]=255}return t}}}),u.begin=function(){var t=this.gl;this.shape;t&&(this.fbo.bind(),t.clearColor(1,1,1,1),t.clear(t.COLOR_BUFFER_BIT|t.DEPTH_BUFFER_BIT))},u.end=function(){var t=this.gl;t&&(t.bindFramebuffer(t.FRAMEBUFFER,null),this._readTimeout||clearTimeout(this._readTimeout),this._readTimeout=setTimeout(this._readCallback,1))},u.query=function(t,e,r){if(!this.gl)return null;var n=this.fbo.shape.slice();t|=0,e|=0,\"number\"!=typeof r&&(r=1);var a=0|Math.min(Math.max(t-r,0),n[0]),o=0|Math.min(Math.max(t+r,0),n[0]),c=0|Math.min(Math.max(e-r,0),n[1]),u=0|Math.min(Math.max(e+r,0),n[1]);if(o<=a||u<=c)return null;var h=[o-a,u-c],f=i(this.buffer,[h[0],h[1],4],[4,4*n[0],1],4*(a+n[0]*c)),p=s(f.hi(h[0],h[1],1),r,r),d=p[0],g=p[1];return d<0||Math.pow(this.radius,2)<p[2]?null:new l(d+a|0,g+c|0,f.get(d,g,0),[f.get(d,g,1),f.get(d,g,2),f.get(d,g,3)],Math.sqrt(p[2]))},u.dispose=function(){this.gl&&(this.fbo.dispose(),a.free(this.buffer),this.gl=null,this._readTimeout&&clearTimeout(this._readTimeout))}},{\"bit-twiddle\":93,\"cwise/lib/wrapper\":150,\"gl-fbo\":250,ndarray:451,\"typedarray-pool\":546}],302:[function(t,e,r){\"use strict\";var n=t(\"./lib/create-uniforms\"),a=t(\"./lib/create-attributes\"),i=t(\"./lib/reflect\"),o=t(\"./lib/shader-cache\"),s=t(\"./lib/runtime-reflect\"),l=t(\"./lib/GLError\");function c(t){this.gl=t,this.gl.lastAttribCount=0,this._vref=this._fref=this._relink=this.vertShader=this.fragShader=this.program=this.attributes=this.uniforms=this.types=null}var u=c.prototype;function h(t,e){return t.name<e.name?-1:1}u.bind=function(){var t;this.program||this._relink();var e=this.gl.getProgramParameter(this.program,this.gl.ACTIVE_ATTRIBUTES),r=this.gl.lastAttribCount;if(e>r)for(t=r;t<e;t++)this.gl.enableVertexAttribArray(t);else if(r>e)for(t=e;t<r;t++)this.gl.disableVertexAttribArray(t);this.gl.lastAttribCount=e,this.gl.useProgram(this.program)},u.dispose=function(){for(var t=this.gl.lastAttribCount,e=0;e<t;e++)this.gl.disableVertexAttribArray(e);this.gl.lastAttribCount=0,this._fref&&this._fref.dispose(),this._vref&&this._vref.dispose(),this.attributes=this.types=this.vertShader=this.fragShader=this.program=this._relink=this._fref=this._vref=null},u.update=function(t,e,r,c){if(!e||1===arguments.length){var u=t;t=u.vertex,e=u.fragment,r=u.uniforms,c=u.attributes}var f=this,p=f.gl,d=f._vref;f._vref=o.shader(p,p.VERTEX_SHADER,t),d&&d.dispose(),f.vertShader=f._vref.shader;var g=this._fref;if(f._fref=o.shader(p,p.FRAGMENT_SHADER,e),g&&g.dispose(),f.fragShader=f._fref.shader,!r||!c){var v=p.createProgram();if(p.attachShader(v,f.fragShader),p.attachShader(v,f.vertShader),p.linkProgram(v),!p.getProgramParameter(v,p.LINK_STATUS)){var m=p.getProgramInfoLog(v);throw new l(m,\"Error linking program:\"+m)}r=r||s.uniforms(p,v),c=c||s.attributes(p,v),p.deleteProgram(v)}(c=c.slice()).sort(h);var y,x=[],b=[],_=[];for(y=0;y<c.length;++y){var w=c[y];if(w.type.indexOf(\"mat\")>=0){for(var k=0|w.type.charAt(w.type.length-1),T=new Array(k),A=0;A<k;++A)T[A]=_.length,b.push(w.name+\"[\"+A+\"]\"),\"number\"==typeof w.location?_.push(w.location+A):Array.isArray(w.location)&&w.location.length===k&&\"number\"==typeof w.location[A]?_.push(0|w.location[A]):_.push(-1);x.push({name:w.name,type:w.type,locations:T})}else x.push({name:w.name,type:w.type,locations:[_.length]}),b.push(w.name),\"number\"==typeof w.location?_.push(0|w.location):_.push(-1)}var M=0;for(y=0;y<_.length;++y)if(_[y]<0){for(;_.indexOf(M)>=0;)M+=1;_[y]=M}var S=new Array(r.length);function E(){f.program=o.program(p,f._vref,f._fref,b,_);for(var t=0;t<r.length;++t)S[t]=p.getUniformLocation(f.program,r[t].name)}E(),f._relink=E,f.types={uniforms:i(r),attributes:i(c)},f.attributes=a(p,f,x,_),Object.defineProperty(f,\"uniforms\",n(p,f,r,S))},e.exports=function(t,e,r,n,a){var i=new c(t);return i.update(e,r,n,a),i}},{\"./lib/GLError\":303,\"./lib/create-attributes\":304,\"./lib/create-uniforms\":305,\"./lib/reflect\":306,\"./lib/runtime-reflect\":307,\"./lib/shader-cache\":308}],303:[function(t,e,r){function n(t,e,r){this.shortMessage=e||\"\",this.longMessage=r||\"\",this.rawError=t||\"\",this.message=\"gl-shader: \"+(e||t||\"\")+(r?\"\\n\"+r:\"\"),this.stack=(new Error).stack}n.prototype=new Error,n.prototype.name=\"GLError\",n.prototype.constructor=n,e.exports=n},{}],304:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,a){for(var i={},l=0,c=r.length;l<c;++l){var u=r[l],h=u.name,f=u.type,p=u.locations;switch(f){case\"bool\":case\"int\":case\"float\":o(t,e,p[0],a,1,i,h);break;default:if(f.indexOf(\"vec\")>=0){var d=f.charCodeAt(f.length-1)-48;if(d<2||d>4)throw new n(\"\",\"Invalid data type for attribute \"+h+\": \"+f);o(t,e,p[0],a,d,i,h)}else{if(!(f.indexOf(\"mat\")>=0))throw new n(\"\",\"Unknown data type for attribute \"+h+\": \"+f);var d=f.charCodeAt(f.length-1)-48;if(d<2||d>4)throw new n(\"\",\"Invalid data type for attribute \"+h+\": \"+f);s(t,e,p,a,d,i,h)}}}return i};var n=t(\"./GLError\");function a(t,e,r,n,a,i){this._gl=t,this._wrapper=e,this._index=r,this._locations=n,this._dimension=a,this._constFunc=i}var i=a.prototype;function o(t,e,r,n,i,o,s){for(var l=[\"gl\",\"v\"],c=[],u=0;u<i;++u)l.push(\"x\"+u),c.push(\"x\"+u);l.push(\"if(x0.length===void 0){return gl.vertexAttrib\"+i+\"f(v,\"+c.join()+\")}else{return gl.vertexAttrib\"+i+\"fv(v,x0)}\");var h=Function.apply(null,l),f=new a(t,e,r,n,i,h);Object.defineProperty(o,s,{set:function(e){return t.disableVertexAttribArray(n[r]),h(t,n[r],e),e},get:function(){return f},enumerable:!0})}function s(t,e,r,n,a,i,s){for(var l=new Array(a),c=new Array(a),u=0;u<a;++u)o(t,e,r[u],n,a,l,u),c[u]=l[u];Object.defineProperty(l,\"location\",{set:function(t){if(Array.isArray(t))for(var e=0;e<a;++e)c[e].location=t[e];else for(e=0;e<a;++e)c[e].location=t+e;return t},get:function(){for(var t=new Array(a),e=0;e<a;++e)t[e]=n[r[e]];return t},enumerable:!0}),l.pointer=function(e,i,o,s){e=e||t.FLOAT,i=!!i,o=o||a*a,s=s||0;for(var l=0;l<a;++l){var c=n[r[l]];t.vertexAttribPointer(c,a,e,i,o,s+l*a),t.enableVertexAttribArray(c)}};var h=new Array(a),f=t[\"vertexAttrib\"+a+\"fv\"];Object.defineProperty(i,s,{set:function(e){for(var i=0;i<a;++i){var o=n[r[i]];if(t.disableVertexAttribArray(o),Array.isArray(e[0]))f.call(t,o,e[i]);else{for(var s=0;s<a;++s)h[s]=e[a*i+s];f.call(t,o,h)}}return e},get:function(){return l},enumerable:!0})}i.pointer=function(t,e,r,n){var a=this._gl,i=this._locations[this._index];a.vertexAttribPointer(i,this._dimension,t||a.FLOAT,!!e,r||0,n||0),a.enableVertexAttribArray(i)},i.set=function(t,e,r,n){return this._constFunc(this._locations[this._index],t,e,r,n)},Object.defineProperty(i,\"location\",{get:function(){return this._locations[this._index]},set:function(t){return t!==this._locations[this._index]&&(this._locations[this._index]=0|t,this._wrapper.program=null),0|t}})},{\"./GLError\":303}],305:[function(t,e,r){\"use strict\";var n=t(\"./reflect\"),a=t(\"./GLError\");function i(t){return new Function(\"y\",\"return function(){return y}\")(t)}function o(t,e){for(var r=new Array(t),n=0;n<t;++n)r[n]=e;return r}e.exports=function(t,e,r,s){function l(t,e,r){switch(r){case\"bool\":case\"int\":case\"sampler2D\":case\"samplerCube\":return\"gl.uniform1i(locations[\"+e+\"],obj\"+t+\")\";case\"float\":return\"gl.uniform1f(locations[\"+e+\"],obj\"+t+\")\";default:var n=r.indexOf(\"vec\");if(!(0<=n&&n<=1&&r.length===4+n)){if(0===r.indexOf(\"mat\")&&4===r.length){var i=r.charCodeAt(r.length-1)-48;if(i<2||i>4)throw new a(\"\",\"Invalid uniform dimension type for matrix \"+name+\": \"+r);return\"gl.uniformMatrix\"+i+\"fv(locations[\"+e+\"],false,obj\"+t+\")\"}throw new a(\"\",\"Unknown uniform data type for \"+name+\": \"+r)}var i=r.charCodeAt(r.length-1)-48;if(i<2||i>4)throw new a(\"\",\"Invalid data type\");switch(r.charAt(0)){case\"b\":case\"i\":return\"gl.uniform\"+i+\"iv(locations[\"+e+\"],obj\"+t+\")\";case\"v\":return\"gl.uniform\"+i+\"fv(locations[\"+e+\"],obj\"+t+\")\";default:throw new a(\"\",\"Unrecognized data type for vector \"+name+\": \"+r)}}}function c(e){for(var n=[\"return function updateProperty(obj){\"],a=function t(e,r){if(\"object\"!=typeof r)return[[e,r]];var n=[];for(var a in r){var i=r[a],o=e;parseInt(a)+\"\"===a?o+=\"[\"+a+\"]\":o+=\".\"+a,\"object\"==typeof i?n.push.apply(n,t(o,i)):n.push([o,i])}return n}(\"\",e),i=0;i<a.length;++i){var o=a[i],c=o[0],u=o[1];s[u]&&n.push(l(c,u,r[u].type))}n.push(\"return obj}\");var h=new Function(\"gl\",\"locations\",n.join(\"\\n\"));return h(t,s)}function u(n,l,u){if(\"object\"==typeof u){var f=h(u);Object.defineProperty(n,l,{get:i(f),set:c(u),enumerable:!0,configurable:!1})}else s[u]?Object.defineProperty(n,l,{get:(p=u,new Function(\"gl\",\"wrapper\",\"locations\",\"return function(){return gl.getUniform(wrapper.program,locations[\"+p+\"])}\")(t,e,s)),set:c(u),enumerable:!0,configurable:!1}):n[l]=function(t){switch(t){case\"bool\":return!1;case\"int\":case\"sampler2D\":case\"samplerCube\":case\"float\":return 0;default:var e=t.indexOf(\"vec\");if(0<=e&&e<=1&&t.length===4+e){var r=t.charCodeAt(t.length-1)-48;if(r<2||r>4)throw new a(\"\",\"Invalid data type\");return\"b\"===t.charAt(0)?o(r,!1):o(r,0)}if(0===t.indexOf(\"mat\")&&4===t.length){var r=t.charCodeAt(t.length-1)-48;if(r<2||r>4)throw new a(\"\",\"Invalid uniform dimension type for matrix \"+name+\": \"+t);return o(r*r,0)}throw new a(\"\",\"Unknown uniform data type for \"+name+\": \"+t)}}(r[u].type);var p}function h(t){var e;if(Array.isArray(t)){e=new Array(t.length);for(var r=0;r<t.length;++r)u(e,r,t[r])}else for(var n in e={},t)u(e,n,t[n]);return e}var f=n(r,!0);return{get:i(h(f)),set:c(f),enumerable:!0,configurable:!0}}},{\"./GLError\":303,\"./reflect\":306}],306:[function(t,e,r){\"use strict\";e.exports=function(t,e){for(var r={},n=0;n<t.length;++n)for(var a=t[n].name,i=a.split(\".\"),o=r,s=0;s<i.length;++s){var l=i[s].split(\"[\");if(l.length>1){l[0]in o||(o[l[0]]=[]),o=o[l[0]];for(var c=1;c<l.length;++c){var u=parseInt(l[c]);c<l.length-1||s<i.length-1?(u in o||(c<l.length-1?o[u]=[]:o[u]={}),o=o[u]):o[u]=e?n:t[n].type}}else s<i.length-1?(l[0]in o||(o[l[0]]={}),o=o[l[0]]):o[l[0]]=e?n:t[n].type}return r}},{}],307:[function(t,e,r){\"use strict\";r.uniforms=function(t,e){for(var r=t.getProgramParameter(e,t.ACTIVE_UNIFORMS),n=[],a=0;a<r;++a){var o=t.getActiveUniform(e,a);if(o){var s=i(t,o.type);if(o.size>1)for(var l=0;l<o.size;++l)n.push({name:o.name.replace(\"[0]\",\"[\"+l+\"]\"),type:s});else n.push({name:o.name,type:s})}}return n},r.attributes=function(t,e){for(var r=t.getProgramParameter(e,t.ACTIVE_ATTRIBUTES),n=[],a=0;a<r;++a){var o=t.getActiveAttrib(e,a);o&&n.push({name:o.name,type:i(t,o.type)})}return n};var n={FLOAT:\"float\",FLOAT_VEC2:\"vec2\",FLOAT_VEC3:\"vec3\",FLOAT_VEC4:\"vec4\",INT:\"int\",INT_VEC2:\"ivec2\",INT_VEC3:\"ivec3\",INT_VEC4:\"ivec4\",BOOL:\"bool\",BOOL_VEC2:\"bvec2\",BOOL_VEC3:\"bvec3\",BOOL_VEC4:\"bvec4\",FLOAT_MAT2:\"mat2\",FLOAT_MAT3:\"mat3\",FLOAT_MAT4:\"mat4\",SAMPLER_2D:\"sampler2D\",SAMPLER_CUBE:\"samplerCube\"},a=null;function i(t,e){if(!a){var r=Object.keys(n);a={};for(var i=0;i<r.length;++i){var o=r[i];a[t[o]]=n[o]}}return a[e]}},{}],308:[function(t,e,r){\"use strict\";r.shader=function(t,e,r){return u(t).getShaderReference(e,r)},r.program=function(t,e,r,n,a){return u(t).getProgram(e,r,n,a)};var n=t(\"./GLError\"),a=t(\"gl-format-compiler-error\"),i=new(\"undefined\"==typeof WeakMap?t(\"weakmap-shim\"):WeakMap),o=0;function s(t,e,r,n,a,i,o){this.id=t,this.src=e,this.type=r,this.shader=n,this.count=i,this.programs=[],this.cache=o}function l(t){this.gl=t,this.shaders=[{},{}],this.programs={}}s.prototype.dispose=function(){if(0==--this.count){for(var t=this.cache,e=t.gl,r=this.programs,n=0,a=r.length;n<a;++n){var i=t.programs[r[n]];i&&(delete t.programs[n],e.deleteProgram(i))}e.deleteShader(this.shader),delete t.shaders[this.type===e.FRAGMENT_SHADER|0][this.src]}};var c=l.prototype;function u(t){var e=i.get(t);return e||(e=new l(t),i.set(t,e)),e}c.getShaderReference=function(t,e){var r=this.gl,i=this.shaders[t===r.FRAGMENT_SHADER|0],l=i[e];if(l&&r.isShader(l.shader))l.count+=1;else{var c=function(t,e,r){var i=t.createShader(e);if(t.shaderSource(i,r),t.compileShader(i),!t.getShaderParameter(i,t.COMPILE_STATUS)){var o=t.getShaderInfoLog(i);try{var s=a(o,r,e)}catch(t){throw console.warn(\"Failed to format compiler error: \"+t),new n(o,\"Error compiling shader:\\n\"+o)}throw new n(o,s.short,s.long)}return i}(r,t,e);l=i[e]=new s(o++,e,t,c,[],1,this)}return l},c.getProgram=function(t,e,r,a){var i=[t.id,e.id,r.join(\":\"),a.join(\":\")].join(\"@\"),o=this.programs[i];return o&&this.gl.isProgram(o)||(this.programs[i]=o=function(t,e,r,a,i){var o=t.createProgram();t.attachShader(o,e),t.attachShader(o,r);for(var s=0;s<a.length;++s)t.bindAttribLocation(o,i[s],a[s]);if(t.linkProgram(o),!t.getProgramParameter(o,t.LINK_STATUS)){var l=t.getProgramInfoLog(o);throw new n(l,\"Error linking program: \"+l)}return o}(this.gl,t.shader,e.shader,r,a),t.programs.push(i),e.programs.push(i)),o}},{\"./GLError\":303,\"gl-format-compiler-error\":251,\"weakmap-shim\":556}],309:[function(t,e,r){\"use strict\";function n(t){this.plot=t,this.enable=[!0,!0,!1,!1],this.width=[1,1,1,1],this.color=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.center=[1/0,1/0]}e.exports=function(t,e){var r=new n(t);return r.update(e),t.addOverlay(r),r};var a=n.prototype;a.update=function(t){t=t||{},this.enable=(t.enable||[!0,!0,!1,!1]).slice(),this.width=(t.width||[1,1,1,1]).slice(),this.color=(t.color||[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]]).map(function(t){return t.slice()}),this.center=(t.center||[1/0,1/0]).slice(),this.plot.setOverlayDirty()},a.draw=function(){var t=this.enable,e=this.width,r=this.color,n=this.center,a=this.plot,i=a.line,o=a.dataBox,s=a.viewBox;if(i.bind(),o[0]<=n[0]&&n[0]<=o[2]&&o[1]<=n[1]&&n[1]<=o[3]){var l=s[0]+(n[0]-o[0])/(o[2]-o[0])*(s[2]-s[0]),c=s[1]+(n[1]-o[1])/(o[3]-o[1])*(s[3]-s[1]);t[0]&&i.drawLine(l,c,s[0],c,e[0],r[0]),t[1]&&i.drawLine(l,c,l,s[1],e[1],r[1]),t[2]&&i.drawLine(l,c,s[2],c,e[2],r[2]),t[3]&&i.drawLine(l,c,l,s[3],e[3],r[3])}},a.dispose=function(){this.plot.removeOverlay(this)}},{}],310:[function(t,e,r){\"use strict\";var n=t(\"glslify\"),a=t(\"gl-shader\"),i=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position, color;\\nattribute float weight;\\n\\nuniform mat4 model, view, projection;\\nuniform vec3 coordinates[3];\\nuniform vec4 colors[3];\\nuniform vec2 screenShape;\\nuniform float lineWidth;\\n\\nvarying vec4 fragColor;\\n\\nvoid main() {\\n  vec3 vertexPosition = mix(coordinates[0],\\n    mix(coordinates[2], coordinates[1], 0.5 * (position + 1.0)), abs(position));\\n\\n  vec4 clipPos = projection * view * model * vec4(vertexPosition, 1.0);\\n  vec2 clipOffset = (projection * view * model * vec4(color, 0.0)).xy;\\n  vec2 delta = weight * clipOffset * screenShape;\\n  vec2 lineOffset = normalize(vec2(delta.y, -delta.x)) / screenShape;\\n\\n  gl_Position   = vec4(clipPos.xy + clipPos.w * 0.5 * lineWidth * lineOffset, clipPos.z, clipPos.w);\\n  fragColor     = color.x * colors[0] + color.y * colors[1] + color.z * colors[2];\\n}\\n\"]),o=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nvarying vec4 fragColor;\\n\\nvoid main() {\\n  gl_FragColor = fragColor;\\n}\"]);e.exports=function(t){return a(t,i,o,null,[{name:\"position\",type:\"vec3\"},{name:\"color\",type:\"vec3\"},{name:\"weight\",type:\"float\"}])}},{\"gl-shader\":302,glslify:410}],311:[function(t,e,r){\"use strict\";var n=t(\"gl-buffer\"),a=t(\"gl-vao\"),i=t(\"./shaders/index\");e.exports=function(t,e){var r=[];function o(t,e,n,a,i,o){var s=[t,e,n,0,0,0,1];s[a+3]=1,s[a]=i,r.push.apply(r,s),s[6]=-1,r.push.apply(r,s),s[a]=o,r.push.apply(r,s),r.push.apply(r,s),s[6]=1,r.push.apply(r,s),s[a]=i,r.push.apply(r,s)}o(0,0,0,0,0,1),o(0,0,0,1,0,1),o(0,0,0,2,0,1),o(1,0,0,1,-1,1),o(1,0,0,2,-1,1),o(0,1,0,0,-1,1),o(0,1,0,2,-1,1),o(0,0,1,0,-1,1),o(0,0,1,1,-1,1);var l=n(t,r),c=a(t,[{type:t.FLOAT,buffer:l,size:3,offset:0,stride:28},{type:t.FLOAT,buffer:l,size:3,offset:12,stride:28},{type:t.FLOAT,buffer:l,size:1,offset:24,stride:28}]),u=i(t);u.attributes.position.location=0,u.attributes.color.location=1,u.attributes.weight.location=2;var h=new s(t,l,c,u);return h.update(e),h};var o=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function s(t,e,r,n){this.gl=t,this.buffer=e,this.vao=r,this.shader=n,this.pixelRatio=1,this.bounds=[[-1e3,-1e3,-1e3],[1e3,1e3,1e3]],this.position=[0,0,0],this.lineWidth=[2,2,2],this.colors=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.enabled=[!0,!0,!0],this.drawSides=[!0,!0,!0],this.axes=null}var l=s.prototype,c=[0,0,0],u=[0,0,0],h=[0,0];l.isTransparent=function(){return!1},l.drawTransparent=function(t){},l.draw=function(t){var e=this.gl,r=this.vao,n=this.shader;r.bind(),n.bind();var a,i=t.model||o,s=t.view||o,l=t.projection||o;this.axes&&(a=this.axes.lastCubeProps.axis);for(var f=c,p=u,d=0;d<3;++d)a&&a[d]<0?(f[d]=this.bounds[0][d],p[d]=this.bounds[1][d]):(f[d]=this.bounds[1][d],p[d]=this.bounds[0][d]);h[0]=e.drawingBufferWidth,h[1]=e.drawingBufferHeight,n.uniforms.model=i,n.uniforms.view=s,n.uniforms.projection=l,n.uniforms.coordinates=[this.position,f,p],n.uniforms.colors=this.colors,n.uniforms.screenShape=h;for(d=0;d<3;++d)n.uniforms.lineWidth=this.lineWidth[d]*this.pixelRatio,this.enabled[d]&&(r.draw(e.TRIANGLES,6,6*d),this.drawSides[d]&&r.draw(e.TRIANGLES,12,18+12*d));r.unbind()},l.update=function(t){t&&(\"bounds\"in t&&(this.bounds=t.bounds),\"position\"in t&&(this.position=t.position),\"lineWidth\"in t&&(this.lineWidth=t.lineWidth),\"colors\"in t&&(this.colors=t.colors),\"enabled\"in t&&(this.enabled=t.enabled),\"drawSides\"in t&&(this.drawSides=t.drawSides))},l.dispose=function(){this.vao.dispose(),this.buffer.dispose(),this.shader.dispose()}},{\"./shaders/index\":310,\"gl-buffer\":242,\"gl-vao\":328}],312:[function(t,e,r){var n=t(\"glslify\"),a=n([\"precision highp float;\\n\\nprecision highp float;\\n#define GLSLIFY 1\\n\\nvec3 getOrthogonalVector(vec3 v) {\\n  // Return up-vector for only-z vector.\\n  // Return ax + by + cz = 0, a point that lies on the plane that has v as a normal and that isn't (0,0,0).\\n  // From the above if-statement we have ||a|| > 0  U  ||b|| > 0.\\n  // Assign z = 0, x = -b, y = a:\\n  // a*-b + b*a + c*0 = -ba + ba + 0 = 0\\n  if (v.x*v.x > v.z*v.z || v.y*v.y > v.z*v.z) {\\n    return normalize(vec3(-v.y, v.x, 0.0));\\n  } else {\\n    return normalize(vec3(0.0, v.z, -v.y));\\n  }\\n}\\n\\n// Calculate the tube vertex and normal at the given index.\\n//\\n// The returned vertex is for a tube ring with its center at origin, radius of length(d), pointing in the direction of d.\\n//\\n// Each tube segment is made up of a ring of vertices.\\n// These vertices are used to make up the triangles of the tube by connecting them together in the vertex array.\\n// The indexes of tube segments run from 0 to 8.\\n//\\nvec3 getTubePosition(vec3 d, float index, out vec3 normal) {\\n  float segmentCount = 8.0;\\n\\n  float angle = 2.0 * 3.14159 * (index / segmentCount);\\n\\n  vec3 u = getOrthogonalVector(d);\\n  vec3 v = normalize(cross(u, d));\\n\\n  vec3 x = u * cos(angle) * length(d);\\n  vec3 y = v * sin(angle) * length(d);\\n  vec3 v3 = x + y;\\n\\n  normal = normalize(v3);\\n\\n  return v3;\\n}\\n\\nattribute vec4 vector;\\nattribute vec4 color, position;\\nattribute vec2 uv;\\nuniform float vectorScale;\\nuniform float tubeScale;\\n\\nuniform mat4 model\\n           , view\\n           , projection\\n           , inverseModel;\\nuniform vec3 eyePosition\\n           , lightPosition;\\n\\nvarying vec3 f_normal\\n           , f_lightDirection\\n           , f_eyeDirection\\n           , f_data\\n           , f_position;\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n  // Scale the vector magnitude to stay constant with\\n  // model & view changes.\\n  vec3 normal;\\n  vec3 XYZ = getTubePosition(mat3(model) * (tubeScale * vector.w * normalize(vector.xyz)), position.w, normal);\\n  vec4 tubePosition = model * vec4(position.xyz, 1.0) + vec4(XYZ, 0.0);\\n\\n  //Lighting geometry parameters\\n  vec4 cameraCoordinate = view * tubePosition;\\n  cameraCoordinate.xyz /= cameraCoordinate.w;\\n  f_lightDirection = lightPosition - cameraCoordinate.xyz;\\n  f_eyeDirection   = eyePosition - cameraCoordinate.xyz;\\n  f_normal = normalize((vec4(normal,0.0) * inverseModel).xyz);\\n\\n  // vec4 m_position  = model * vec4(tubePosition, 1.0);\\n  vec4 t_position  = view * tubePosition;\\n  gl_Position      = projection * t_position;\\n\\n  f_color          = color;\\n  f_data           = tubePosition.xyz;\\n  f_position       = position.xyz;\\n  f_uv             = uv;\\n}\\n\"]),i=n([\"#extension GL_OES_standard_derivatives : enable\\n\\nprecision highp float;\\n#define GLSLIFY 1\\n\\nfloat beckmannDistribution(float x, float roughness) {\\n  float NdotH = max(x, 0.0001);\\n  float cos2Alpha = NdotH * NdotH;\\n  float tan2Alpha = (cos2Alpha - 1.0) / cos2Alpha;\\n  float roughness2 = roughness * roughness;\\n  float denom = 3.141592653589793 * roughness2 * cos2Alpha * cos2Alpha;\\n  return exp(tan2Alpha / roughness2) / denom;\\n}\\n\\nfloat cookTorranceSpecular(\\n  vec3 lightDirection,\\n  vec3 viewDirection,\\n  vec3 surfaceNormal,\\n  float roughness,\\n  float fresnel) {\\n\\n  float VdotN = max(dot(viewDirection, surfaceNormal), 0.0);\\n  float LdotN = max(dot(lightDirection, surfaceNormal), 0.0);\\n\\n  //Half angle vector\\n  vec3 H = normalize(lightDirection + viewDirection);\\n\\n  //Geometric term\\n  float NdotH = max(dot(surfaceNormal, H), 0.0);\\n  float VdotH = max(dot(viewDirection, H), 0.000001);\\n  float LdotH = max(dot(lightDirection, H), 0.000001);\\n  float G1 = (2.0 * NdotH * VdotN) / VdotH;\\n  float G2 = (2.0 * NdotH * LdotN) / LdotH;\\n  float G = min(1.0, min(G1, G2));\\n  \\n  //Distribution term\\n  float D = beckmannDistribution(NdotH, roughness);\\n\\n  //Fresnel term\\n  float F = pow(1.0 - VdotN, fresnel);\\n\\n  //Multiply terms and done\\n  return  G * F * D / max(3.14159265 * VdotN, 0.000001);\\n}\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 clipBounds[2];\\nuniform float roughness\\n            , fresnel\\n            , kambient\\n            , kdiffuse\\n            , kspecular\\n            , opacity;\\nuniform sampler2D texture;\\n\\nvarying vec3 f_normal\\n           , f_lightDirection\\n           , f_eyeDirection\\n           , f_data\\n           , f_position;\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\\n  vec3 N = normalize(f_normal);\\n  vec3 L = normalize(f_lightDirection);\\n  vec3 V = normalize(f_eyeDirection);\\n\\n  if(gl_FrontFacing) {\\n    N = -N;\\n  }\\n\\n  float specular = min(1.0, max(0.0, cookTorranceSpecular(L, V, N, roughness, fresnel)));\\n  float diffuse  = min(kambient + kdiffuse * max(dot(N, L), 0.0), 1.0);\\n\\n  vec4 surfaceColor = f_color * texture2D(texture, f_uv);\\n  vec4 litColor = surfaceColor.a * vec4(diffuse * surfaceColor.rgb + kspecular * vec3(1,1,1) * specular,  1.0);\\n\\n  gl_FragColor = litColor * opacity;\\n}\\n\"]),o=n([\"precision highp float;\\n\\nprecision highp float;\\n#define GLSLIFY 1\\n\\nvec3 getOrthogonalVector(vec3 v) {\\n  // Return up-vector for only-z vector.\\n  // Return ax + by + cz = 0, a point that lies on the plane that has v as a normal and that isn't (0,0,0).\\n  // From the above if-statement we have ||a|| > 0  U  ||b|| > 0.\\n  // Assign z = 0, x = -b, y = a:\\n  // a*-b + b*a + c*0 = -ba + ba + 0 = 0\\n  if (v.x*v.x > v.z*v.z || v.y*v.y > v.z*v.z) {\\n    return normalize(vec3(-v.y, v.x, 0.0));\\n  } else {\\n    return normalize(vec3(0.0, v.z, -v.y));\\n  }\\n}\\n\\n// Calculate the tube vertex and normal at the given index.\\n//\\n// The returned vertex is for a tube ring with its center at origin, radius of length(d), pointing in the direction of d.\\n//\\n// Each tube segment is made up of a ring of vertices.\\n// These vertices are used to make up the triangles of the tube by connecting them together in the vertex array.\\n// The indexes of tube segments run from 0 to 8.\\n//\\nvec3 getTubePosition(vec3 d, float index, out vec3 normal) {\\n  float segmentCount = 8.0;\\n\\n  float angle = 2.0 * 3.14159 * (index / segmentCount);\\n\\n  vec3 u = getOrthogonalVector(d);\\n  vec3 v = normalize(cross(u, d));\\n\\n  vec3 x = u * cos(angle) * length(d);\\n  vec3 y = v * sin(angle) * length(d);\\n  vec3 v3 = x + y;\\n\\n  normal = normalize(v3);\\n\\n  return v3;\\n}\\n\\nattribute vec4 vector;\\nattribute vec4 position;\\nattribute vec4 id;\\n\\nuniform mat4 model, view, projection;\\nuniform float tubeScale;\\n\\nvarying vec3 f_position;\\nvarying vec4 f_id;\\n\\nvoid main() {\\n  vec3 normal;\\n  vec3 XYZ = getTubePosition(mat3(model) * (tubeScale * vector.w * normalize(vector.xyz)), position.w, normal);\\n  vec4 tubePosition = model * vec4(position.xyz, 1.0) + vec4(XYZ, 0.0);\\n\\n  gl_Position = projection * view * tubePosition;\\n  f_id        = id;\\n  f_position  = position.xyz;\\n}\\n\"]),s=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3  clipBounds[2];\\nuniform float pickId;\\n\\nvarying vec3 f_position;\\nvarying vec4 f_id;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\\n\\n  gl_FragColor = vec4(pickId, f_id.xyz);\\n}\"]);r.meshShader={vertex:a,fragment:i,attributes:[{name:\"position\",type:\"vec4\"},{name:\"normal\",type:\"vec3\"},{name:\"color\",type:\"vec4\"},{name:\"uv\",type:\"vec2\"},{name:\"vector\",type:\"vec4\"}]},r.pickShader={vertex:o,fragment:s,attributes:[{name:\"position\",type:\"vec4\"},{name:\"id\",type:\"vec4\"},{name:\"vector\",type:\"vec4\"}]}},{glslify:410}],313:[function(t,e,r){\"use strict\";var n=t(\"gl-shader\"),a=t(\"gl-buffer\"),i=t(\"gl-vao\"),o=t(\"gl-texture2d\"),s=t(\"normals\"),l=t(\"gl-mat4/multiply\"),c=t(\"gl-mat4/invert\"),u=t(\"ndarray\"),h=t(\"colormap\"),f=t(\"simplicial-complex-contour\"),p=t(\"typedarray-pool\"),d=t(\"./shaders\"),g=d.meshShader,v=d.pickShader,m=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function y(t,e,r,n,a,i,o,s,l,c,u,h,f,p,d,g,v,y,x,b,_,w,k,T){this.gl=t,this.cells=[],this.positions=[],this.intensity=[],this.texture=e,this.dirty=!0,this.triShader=r,this.pickShader=n,this.trianglePositions=a,this.triangleVectors=i,this.triangleColors=s,this.triangleNormals=c,this.triangleUVs=l,this.triangleIds=o,this.triangleVAO=u,this.triangleCount=0,this.lineWidth=1,this.edgePositions=h,this.edgeColors=p,this.edgeUVs=d,this.edgeIds=f,this.edgeVAO=g,this.edgeCount=0,this.pointPositions=v,this.pointColors=x,this.pointUVs=b,this.pointSizes=_,this.pointIds=y,this.pointVAO=w,this.pointCount=0,this.contourLineWidth=1,this.contourPositions=k,this.contourVAO=T,this.contourCount=0,this.contourColor=[0,0,0],this.contourEnable=!1,this.pickId=1,this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.lightPosition=[1e5,1e5,0],this.ambientLight=.8,this.diffuseLight=.8,this.specularLight=2,this.roughness=.5,this.fresnel=1.5,this.opacity=1,this.tubeScale=1,this._model=m,this._view=m,this._projection=m,this._resolution=[1,1],this.pixelRatio=1}var x=y.prototype;function b(t){var e=n(t,v.vertex,v.fragment,null,v.attributes);return e.attributes.position.location=0,e.attributes.id.location=1,e.attributes.vector.location=5,e}x.isOpaque=function(){return this.opacity>=1},x.isTransparent=function(){return this.opacity<1},x.pickSlots=1,x.setPickBase=function(t){this.pickId=t},x.highlight=function(t){if(t&&this.contourEnable){for(var e=f(this.cells,this.intensity,t.intensity),r=e.cells,n=e.vertexIds,a=e.vertexWeights,i=r.length,o=p.mallocFloat32(6*i),s=0,l=0;l<i;++l)for(var c=r[l],u=0;u<2;++u){var h=c[0];2===c.length&&(h=c[u]);for(var d=n[h][0],g=n[h][1],v=a[h],m=1-v,y=this.positions[d],x=this.positions[g],b=0;b<3;++b)o[s++]=v*y[b]+m*x[b]}this.contourCount=s/3|0,this.contourPositions.update(o.subarray(0,s)),p.free(o)}else this.contourCount=0},x.update=function(t){t=t||{};var e=this.gl;this.dirty=!0,\"contourEnable\"in t&&(this.contourEnable=t.contourEnable),\"contourColor\"in t&&(this.contourColor=t.contourColor),\"lineWidth\"in t&&(this.lineWidth=t.lineWidth),\"lightPosition\"in t&&(this.lightPosition=t.lightPosition),\"opacity\"in t&&(this.opacity=t.opacity),\"ambient\"in t&&(this.ambientLight=t.ambient),\"diffuse\"in t&&(this.diffuseLight=t.diffuse),\"specular\"in t&&(this.specularLight=t.specular),\"roughness\"in t&&(this.roughness=t.roughness),\"fresnel\"in t&&(this.fresnel=t.fresnel),t.texture?(this.texture.dispose(),this.texture=o(e,t.texture)):t.colormap&&(this.texture.shape=[256,256],this.texture.minFilter=e.LINEAR_MIPMAP_LINEAR,this.texture.magFilter=e.LINEAR,this.texture.setPixels(function(t){for(var e=h({colormap:t,nshades:256,format:\"rgba\"}),r=new Uint8Array(1024),n=0;n<256;++n){for(var a=e[n],i=0;i<3;++i)r[4*n+i]=a[i];r[4*n+3]=255*a[3]}return u(r,[256,256,4],[4,0,1])}(t.colormap)),this.texture.generateMipmap());var r=t.cells,n=t.positions,a=t.vectors;if(n&&r&&a){void 0!==t.tubeScale&&(this.tubeScale=t.tubeScale);var i=[],l=[],c=[],f=[],p=[],d=[],g=[],v=[],m=[],y=[],x=[],b=[],_=[],w=[],k=[];this.cells=r,this.positions=n,this.vectors=a;var T=t.vertexNormals,A=t.cellNormals,M=void 0===t.vertexNormalsEpsilon?1e-6:t.vertexNormalsEpsilon,S=void 0===t.faceNormalsEpsilon?1e-6:t.faceNormalsEpsilon;t.useFacetNormals&&!A&&(A=s.faceNormals(r,n,S)),A||T||(T=s.vertexNormals(r,n,M));var E=t.vertexColors,C=t.cellColors,L=t.meshColor||[1,1,1,1],P=t.vertexUVs,O=t.vertexIntensity,I=t.cellUVs,z=t.cellIntensity,D=1/0,R=-1/0;if(!P&&!I)if(O)if(t.vertexIntensityBounds)D=+t.vertexIntensityBounds[0],R=+t.vertexIntensityBounds[1];else for(var F=0;F<O.length;++F){var B=O[F];D=Math.min(D,B),R=Math.max(R,B)}else if(z)for(F=0;F<z.length;++F){B=z[F];D=Math.min(D,B),R=Math.max(R,B)}else for(F=0;F<n.length;++F){B=n[F][2];D=Math.min(D,B),R=Math.max(R,B)}this.intensity=O||(z?function(t,e,r){for(var n=new Array(e),a=0;a<e;++a)n[a]=0;var i=t.length;for(a=0;a<i;++a)for(var o=t[a],s=0;s<o.length;++s)n[o[s]]=r[a];return n}(r,n.length,z):function(t){for(var e=t.length,r=new Array(e),n=0;n<e;++n)r[n]=t[n][2];return r}(n));var N=t.pointSizes,j=t.pointSize||1;this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]];for(F=0;F<n.length;++F)for(var V=n[F],U=0;U<3;++U)!isNaN(V[U])&&isFinite(V[U])&&(this.bounds[0][U]=Math.min(this.bounds[0][U],V[U]),this.bounds[1][U]=Math.max(this.bounds[1][U],V[U]));var q=0,H=0,G=0;t:for(F=0;F<r.length;++F){var Y=r[F];switch(Y.length){case 1:for(V=n[X=Y[0]],U=0;U<3;++U)if(isNaN(V[U])||!isFinite(V[U]))continue t;x.push(V[0],V[1],V[2],V[3]),3===(Z=E?E[X]:C?C[F]:L).length?b.push(Z[0],Z[1],Z[2],1):b.push(Z[0],Z[1],Z[2],Z[3]),J=P?P[X]:O?[(O[X]-D)/(R-D),0]:I?I[F]:z?[(z[F]-D)/(R-D),0]:[(V[2]-D)/(R-D),0],_.push(J[0],J[1]),N?w.push(N[X]):w.push(j),k.push(F),G+=1;break;case 2:for(U=0;U<2;++U){V=n[X=Y[U]];for(var W=0;W<3;++W)if(isNaN(V[W])||!isFinite(V[W]))continue t}for(U=0;U<2;++U){V=n[X=Y[U]];g.push(V[0],V[1],V[2]),3===(Z=E?E[X]:C?C[F]:L).length?v.push(Z[0],Z[1],Z[2],1):v.push(Z[0],Z[1],Z[2],Z[3]),J=P?P[X]:O?[(O[X]-D)/(R-D),0]:I?I[F]:z?[(z[F]-D)/(R-D),0]:[(V[2]-D)/(R-D),0],m.push(J[0],J[1]),y.push(F)}H+=1;break;case 3:for(U=0;U<3;++U)for(V=n[X=Y[U]],W=0;W<3;++W)if(isNaN(V[W])||!isFinite(V[W]))continue t;for(U=0;U<3;++U){var X;V=n[X=Y[2-U]];i.push(V[0],V[1],V[2],V[3]);var Z,J,K,Q=a[X];l.push(Q[0],Q[1],Q[2],Q[3]),3===(Z=E?E[X]:C?C[F]:L).length?c.push(Z[0],Z[1],Z[2],1):c.push(Z[0],Z[1],Z[2],Z[3]),J=P?P[X]:O?[(O[X]-D)/(R-D),0]:I?I[F]:z?[(z[F]-D)/(R-D),0]:[(V[2]-D)/(R-D),0],p.push(J[0],J[1]),K=T?T[X]:A[F],f.push(K[0],K[1],K[2]),d.push(F)}q+=1}}this.pointCount=G,this.edgeCount=H,this.triangleCount=q,this.pointPositions.update(x),this.pointColors.update(b),this.pointUVs.update(_),this.pointSizes.update(w),this.pointIds.update(new Uint32Array(k)),this.edgePositions.update(g),this.edgeColors.update(v),this.edgeUVs.update(m),this.edgeIds.update(new Uint32Array(y)),this.trianglePositions.update(i),this.triangleVectors.update(l),this.triangleColors.update(c),this.triangleUVs.update(p),this.triangleNormals.update(f),this.triangleIds.update(new Uint32Array(d))}},x.drawTransparent=x.draw=function(t){t=t||{};for(var e=this.gl,r=t.model||m,n=t.view||m,a=t.projection||m,i=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],o=0;o<3;++o)i[0][o]=Math.max(i[0][o],this.clipBounds[0][o]),i[1][o]=Math.min(i[1][o],this.clipBounds[1][o]);var s={model:r,view:n,projection:a,inverseModel:m.slice(),clipBounds:i,kambient:this.ambientLight,kdiffuse:this.diffuseLight,kspecular:this.specularLight,roughness:this.roughness,fresnel:this.fresnel,eyePosition:[0,0,0],lightPosition:[0,0,0],opacity:this.opacity,tubeScale:this.tubeScale,contourColor:this.contourColor,texture:0};s.inverseModel=c(s.inverseModel,s.model),e.disable(e.CULL_FACE),this.texture.bind(0);var u=new Array(16);l(u,s.view,s.model),l(u,s.projection,u),c(u,u);for(o=0;o<3;++o)s.eyePosition[o]=u[12+o]/u[15];var h=u[15];for(o=0;o<3;++o)h+=this.lightPosition[o]*u[4*o+3];for(o=0;o<3;++o){for(var f=u[12+o],p=0;p<3;++p)f+=u[4*p+o]*this.lightPosition[p];s.lightPosition[o]=f/h}if(this.triangleCount>0){var d=this.triShader;d.bind(),d.uniforms=s,this.triangleVAO.bind(),e.drawArrays(e.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind()}},x.drawPick=function(t){t=t||{};for(var e=this.gl,r=t.model||m,n=t.view||m,a=t.projection||m,i=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],o=0;o<3;++o)i[0][o]=Math.max(i[0][o],this.clipBounds[0][o]),i[1][o]=Math.min(i[1][o],this.clipBounds[1][o]);this._model=[].slice.call(r),this._view=[].slice.call(n),this._projection=[].slice.call(a),this._resolution=[e.drawingBufferWidth,e.drawingBufferHeight];var s={model:r,view:n,projection:a,clipBounds:i,tubeScale:this.tubeScale,pickId:this.pickId/255},l=this.pickShader;l.bind(),l.uniforms=s,this.triangleCount>0&&(this.triangleVAO.bind(),e.drawArrays(e.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind()),this.edgeCount>0&&(this.edgeVAO.bind(),e.lineWidth(this.lineWidth*this.pixelRatio),e.drawArrays(e.LINES,0,2*this.edgeCount),this.edgeVAO.unbind())},x.pick=function(t){if(!t)return null;if(t.id!==this.pickId)return null;var e=t.value[0]+256*t.value[1]+65536*t.value[2],r=this.cells[e],n=this.positions[r[1]].slice(0,3);return{index:e,position:n,intensity:this.intensity[r[1]],velocity:this.vectors[r[1]].slice(0,3),divergence:this.vectors[r[1]][3],dataCoordinate:n}},x.dispose=function(){this.texture.dispose(),this.triShader.dispose(),this.pickShader.dispose(),this.triangleVAO.dispose(),this.trianglePositions.dispose(),this.triangleVectors.dispose(),this.triangleColors.dispose(),this.triangleUVs.dispose(),this.triangleNormals.dispose(),this.triangleIds.dispose(),this.edgeVAO.dispose(),this.edgePositions.dispose(),this.edgeColors.dispose(),this.edgeUVs.dispose(),this.edgeIds.dispose(),this.pointVAO.dispose(),this.pointPositions.dispose(),this.pointColors.dispose(),this.pointUVs.dispose(),this.pointSizes.dispose(),this.pointIds.dispose(),this.contourVAO.dispose(),this.contourPositions.dispose()},e.exports=function(t,e){1===arguments.length&&(t=(e=t).gl);var r=e.triShader||function(t){var e=n(t,g.vertex,g.fragment,null,g.attributes);return e.attributes.position.location=0,e.attributes.color.location=2,e.attributes.uv.location=3,e.attributes.vector.location=5,e}(t),s=b(t),l=o(t,u(new Uint8Array([255,255,255,255]),[1,1,4]));l.generateMipmap(),l.minFilter=t.LINEAR_MIPMAP_LINEAR,l.magFilter=t.LINEAR;var c=a(t),h=a(t),f=a(t),p=a(t),d=a(t),v=a(t),m=i(t,[{buffer:c,type:t.FLOAT,size:4},{buffer:v,type:t.UNSIGNED_BYTE,size:4,normalized:!0},{buffer:f,type:t.FLOAT,size:4},{buffer:p,type:t.FLOAT,size:2},{buffer:d,type:t.FLOAT,size:3},{buffer:h,type:t.FLOAT,size:4}]),x=a(t),_=a(t),w=a(t),k=a(t),T=i(t,[{buffer:x,type:t.FLOAT,size:3},{buffer:k,type:t.UNSIGNED_BYTE,size:4,normalized:!0},{buffer:_,type:t.FLOAT,size:4},{buffer:w,type:t.FLOAT,size:2}]),A=a(t),M=a(t),S=a(t),E=a(t),C=a(t),L=i(t,[{buffer:A,type:t.FLOAT,size:3},{buffer:C,type:t.UNSIGNED_BYTE,size:4,normalized:!0},{buffer:M,type:t.FLOAT,size:4},{buffer:S,type:t.FLOAT,size:2},{buffer:E,type:t.FLOAT,size:1}]),P=a(t),O=new y(t,l,r,s,c,h,v,f,p,d,m,x,k,_,w,T,A,C,M,S,E,L,P,i(t,[{buffer:P,type:t.FLOAT,size:3}]));return O.update(e),O}},{\"./shaders\":312,colormap:127,\"gl-buffer\":242,\"gl-mat4/invert\":266,\"gl-mat4/multiply\":268,\"gl-shader\":302,\"gl-texture2d\":323,\"gl-vao\":328,ndarray:451,normals:454,\"simplicial-complex-contour\":519,\"typedarray-pool\":546}],314:[function(t,e,r){\"use strict\";var n=t(\"gl-vec3\"),a=t(\"gl-vec4\"),i=function(t,e,r,i){for(var o=0,s=0;s<t.length;s++)for(var l=t[s].velocities,c=0;c<l.length;c++){var u=n.length(l[c]);u>o&&(o=u)}var h=t.map(function(t){return function(t,e,r,i){var o,s,l,c=t.points,u=t.velocities,h=t.divergences;n.set(n.create(),0,1,0),n.create(),n.create();n.create();for(var f=[],p=[],d=[],g=[],v=[],m=[],y=0,x=0,b=a.create(),_=a.create(),w=0;w<c.length;w++){o=c[w],s=u[w],l=h[w],0===e&&(l=.05*r),x=n.length(s)/i,b=a.create(),n.copy(b,s),b[3]=l;for(var k=0;k<8;k++)v[k]=[o[0],o[1],o[2],k];if(g.length>0)for(k=0;k<8;k++){var T=(k+1)%8;f.push(g[k],v[k],v[T],v[T],g[T],g[k]),d.push(_,b,b,b,_,_),m.push(y,x,x,x,y,y),p.push([f.length-6,f.length-5,f.length-4],[f.length-3,f.length-2,f.length-1])}var A=g;g=v,v=A,A=_,_=b,b=A,A=y,y=x,x=A}return{positions:f,cells:p,vectors:d,vertexIntensity:m}}(t,r,i,o)}),f=[],p=[],d=[],g=[];for(s=0;s<h.length;s++){var v=h[s],m=f.length;f=f.concat(v.positions),d=d.concat(v.vectors),g=g.concat(v.vertexIntensity);for(c=0;c<v.cells.length;c++){var y=v.cells[c],x=[];p.push(x);for(var b=0;b<y.length;b++)x.push(y[b]+m)}}return{positions:f,cells:p,vectors:d,vertexIntensity:g,colormap:e}},o=function(t,e){var r=n.create(),a=1e-4;n.add(r,t,[a,0,0]);var i=this.getVelocity(r);n.subtract(i,i,e),n.scale(i,i,1e4),n.add(r,t,[0,a,0]);var o=this.getVelocity(r);n.subtract(o,o,e),n.scale(o,o,1e4),n.add(r,t,[0,0,a]);var s=this.getVelocity(r);return n.subtract(s,s,e),n.scale(s,s,1e4),n.add(r,i,o),n.add(r,r,s),r},s=function(t){return f(t,this.vectors,this.meshgrid,this.clampBorders)},l=function(t,e){for(var r=0;r<t.length;r++){var n=t[r];if(n===e)return r;if(n>e)return r-1}return r},c=n.create(),u=n.create(),h=function(t,e,r){return t<e?e:t>r?r:t},f=function(t,e,r,a){var i=t[0],o=t[1],s=t[2],f=r[0].length,p=r[1].length,d=r[2].length,g=l(r[0],i),v=l(r[1],o),m=l(r[2],s),y=g+1,x=v+1,b=m+1;if(r[0][g]===i&&(y=g),r[1][v]===o&&(x=v),r[2][m]===s&&(b=m),a&&(g=h(g,0,f-1),y=h(y,0,f-1),v=h(v,0,p-1),x=h(x,0,p-1),m=h(m,0,d-1),b=h(b,0,d-1)),g<0||v<0||m<0||y>=f||x>=p||b>=d)return n.create();var _=(i-r[0][g])/(r[0][y]-r[0][g]),w=(o-r[1][v])/(r[1][x]-r[1][v]),k=(s-r[2][m])/(r[2][b]-r[2][m]);(_<0||_>1||isNaN(_))&&(_=0),(w<0||w>1||isNaN(w))&&(w=0),(k<0||k>1||isNaN(k))&&(k=0);var T=m*f*p,A=b*f*p,M=v*f,S=x*f,E=g,C=y,L=e[M+T+E],P=e[M+T+C],O=e[S+T+E],I=e[S+T+C],z=e[M+A+E],D=e[M+A+C],R=e[S+A+E],F=e[S+A+C],B=n.create();return n.lerp(B,L,P,_),n.lerp(c,O,I,_),n.lerp(B,B,c,w),n.lerp(c,z,D,_),n.lerp(u,R,F,_),n.lerp(c,c,u,w),n.lerp(B,B,c,k),B},p=function(t){var e=1/0;t.sort(function(t,e){return t-e});for(var r=1;r<t.length;r++){var n=Math.abs(t[r]-t[r-1]);n<e&&(e=n)}return e};e.exports=function(t,e){var r=t.startingPositions,a=t.maxLength||1e3,l=t.tubeSize||1,c=t.absoluteTubeSize;t.getDivergence||(t.getDivergence=o),t.getVelocity||(t.getVelocity=s),void 0===t.clampBorders&&(t.clampBorders=!0);var u=[],h=e[0][0],f=e[0][1],d=e[0][2],g=e[1][0],v=e[1][1],m=e[1][2],y=function(t,e){var r=e[0],n=e[1],a=e[2];return r>=h&&r<=g&&n>=f&&n<=v&&a>=d&&a<=m},x=10*n.distance(e[0],e[1])/a,b=x*x,_=1,w=0;n.create();r.length>=2&&(_=function(t){for(var e=[],r=[],n=[],a={},i={},o={},s=0;s<t.length;s++){var l=t[s],c=l[0],u=l[1],h=l[2];a[c]||(e.push(c),a[c]=!0),i[u]||(r.push(u),i[u]=!0),o[h]||(n.push(h),o[h]=!0)}var f=p(e),d=p(r),g=p(n),v=Math.min(f,d,g);return isFinite(v)?v:1}(r));for(var k=0;k<r.length;k++){var T=n.create();n.copy(T,r[k]);var A=[T],M=[],S=t.getVelocity(T),E=T;M.push(S);var C=[],L=t.getDivergence(T,S);(z=n.length(L))>w&&!isNaN(z)&&isFinite(z)&&(w=z),C.push(z),u.push({points:A,velocities:M,divergences:C});for(var P=0;P<100*a&&A.length<a&&y(0,T);){P++;var O=n.clone(S),I=n.squaredLength(O);if(0===I)break;if(I>b&&n.scale(O,O,x/Math.sqrt(I)),n.add(O,O,T),S=t.getVelocity(O),n.squaredDistance(E,O)-b>-1e-4*b){A.push(O),E=O,M.push(S);L=t.getDivergence(O,S);(z=n.length(L))>w&&!isNaN(z)&&isFinite(z)&&(w=z),C.push(z)}T=O}}for(k=0;k<C.length;k++){var z=C[k];!isNaN(z)&&isFinite(z)||(C[k]=w)}var D=i(u,t.colormap,w,_);return c?D.tubeScale=c:(0===w&&(w=1),D.tubeScale=.5*l*_/w),D},e.exports.createTubeMesh=t(\"./lib/tubemesh\")},{\"./lib/tubemesh\":313,\"gl-vec3\":347,\"gl-vec4\":383}],315:[function(t,e,r){var n=t(\"gl-shader\"),a=t(\"glslify\"),i=a([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec4 uv;\\nattribute vec3 f;\\nattribute vec3 normal;\\n\\nuniform vec3 objectOffset;\\nuniform mat4 model, view, projection, inverseModel;\\nuniform vec3 lightPosition, eyePosition;\\nuniform sampler2D colormap;\\n\\nvarying float value, kill;\\nvarying vec3 worldCoordinate;\\nvarying vec2 planeCoordinate;\\nvarying vec3 lightDirection, eyeDirection, surfaceNormal;\\nvarying vec4 vColor;\\n\\nvoid main() {\\n  vec3 localCoordinate = vec3(uv.zw, f.x);\\n  worldCoordinate = objectOffset + localCoordinate;\\n  vec4 worldPosition = model * vec4(worldCoordinate, 1.0);\\n  vec4 clipPosition = projection * view * worldPosition;\\n  gl_Position = clipPosition;\\n  kill = f.y;\\n  value = f.z;\\n  planeCoordinate = uv.xy;\\n\\n  vColor = texture2D(colormap, vec2(value, value));\\n\\n  //Lighting geometry parameters\\n  vec4 cameraCoordinate = view * worldPosition;\\n  cameraCoordinate.xyz /= cameraCoordinate.w;\\n  lightDirection = lightPosition - cameraCoordinate.xyz;\\n  eyeDirection   = eyePosition - cameraCoordinate.xyz;\\n  surfaceNormal  = normalize((vec4(normal,0) * inverseModel).xyz);\\n}\\n\"]),o=a([\"precision highp float;\\n#define GLSLIFY 1\\n\\nfloat beckmannDistribution(float x, float roughness) {\\n  float NdotH = max(x, 0.0001);\\n  float cos2Alpha = NdotH * NdotH;\\n  float tan2Alpha = (cos2Alpha - 1.0) / cos2Alpha;\\n  float roughness2 = roughness * roughness;\\n  float denom = 3.141592653589793 * roughness2 * cos2Alpha * cos2Alpha;\\n  return exp(tan2Alpha / roughness2) / denom;\\n}\\n\\nfloat beckmannSpecular(\\n  vec3 lightDirection,\\n  vec3 viewDirection,\\n  vec3 surfaceNormal,\\n  float roughness) {\\n  return beckmannDistribution(dot(surfaceNormal, normalize(lightDirection + viewDirection)), roughness);\\n}\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 lowerBound, upperBound;\\nuniform float contourTint;\\nuniform vec4 contourColor;\\nuniform sampler2D colormap;\\nuniform vec3 clipBounds[2];\\nuniform float roughness, fresnel, kambient, kdiffuse, kspecular, opacity;\\nuniform float vertexColor;\\n\\nvarying float value, kill;\\nvarying vec3 worldCoordinate;\\nvarying vec3 lightDirection, eyeDirection, surfaceNormal;\\nvarying vec4 vColor;\\n\\nvoid main() {\\n  if ((kill > 0.0) ||\\n      (outOfRange(clipBounds[0], clipBounds[1], worldCoordinate))) discard;\\n\\n  vec3 N = normalize(surfaceNormal);\\n  vec3 V = normalize(eyeDirection);\\n  vec3 L = normalize(lightDirection);\\n\\n  if(gl_FrontFacing) {\\n    N = -N;\\n  }\\n\\n  float specular = max(beckmannSpecular(L, V, N, roughness), 0.);\\n  float diffuse  = min(kambient + kdiffuse * max(dot(N, L), 0.0), 1.0);\\n\\n  //decide how to interpolate color \\u2014 in vertex or in fragment\\n  vec4 surfaceColor =\\n    step(vertexColor, .5) * texture2D(colormap, vec2(value, value)) +\\n    step(.5, vertexColor) * vColor;\\n\\n  vec4 litColor = surfaceColor.a * vec4(diffuse * surfaceColor.rgb + kspecular * vec3(1,1,1) * specular,  1.0);\\n\\n  gl_FragColor = mix(litColor, contourColor, contourTint) * opacity;\\n}\\n\"]),s=a([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec4 uv;\\nattribute float f;\\n\\nuniform vec3 objectOffset;\\nuniform mat3 permutation;\\nuniform mat4 model, view, projection;\\nuniform float height, zOffset;\\nuniform sampler2D colormap;\\n\\nvarying float value, kill;\\nvarying vec3 worldCoordinate;\\nvarying vec2 planeCoordinate;\\nvarying vec3 lightDirection, eyeDirection, surfaceNormal;\\nvarying vec4 vColor;\\n\\nvoid main() {\\n  vec3 dataCoordinate = permutation * vec3(uv.xy, height);\\n  worldCoordinate = objectOffset + dataCoordinate;\\n  vec4 worldPosition = model * vec4(worldCoordinate, 1.0);\\n\\n  vec4 clipPosition = projection * view * worldPosition;\\n  clipPosition.z += zOffset;\\n\\n  gl_Position = clipPosition;\\n  value = f + objectOffset.z;\\n  kill = -1.0;\\n  planeCoordinate = uv.zw;\\n\\n  vColor = texture2D(colormap, vec2(value, value));\\n\\n  //Don't do lighting for contours\\n  surfaceNormal   = vec3(1,0,0);\\n  eyeDirection    = vec3(0,1,0);\\n  lightDirection  = vec3(0,0,1);\\n}\\n\"]),l=a([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec2 shape;\\nuniform vec3 clipBounds[2];\\nuniform float pickId;\\n\\nvarying float value, kill;\\nvarying vec3 worldCoordinate;\\nvarying vec2 planeCoordinate;\\nvarying vec3 surfaceNormal;\\n\\nvec2 splitFloat(float v) {\\n  float vh = 255.0 * v;\\n  float upper = floor(vh);\\n  float lower = fract(vh);\\n  return vec2(upper / 255.0, floor(lower * 16.0) / 16.0);\\n}\\n\\nvoid main() {\\n  if ((kill > 0.0) ||\\n      (outOfRange(clipBounds[0], clipBounds[1], worldCoordinate))) discard;\\n\\n  vec2 ux = splitFloat(planeCoordinate.x / shape.x);\\n  vec2 uy = splitFloat(planeCoordinate.y / shape.y);\\n  gl_FragColor = vec4(pickId, ux.x, uy.x, ux.y + (uy.y/16.0));\\n}\\n\"]);r.createShader=function(t){var e=n(t,i,o,null,[{name:\"uv\",type:\"vec4\"},{name:\"f\",type:\"vec3\"},{name:\"normal\",type:\"vec3\"}]);return e.attributes.uv.location=0,e.attributes.f.location=1,e.attributes.normal.location=2,e},r.createPickShader=function(t){var e=n(t,i,l,null,[{name:\"uv\",type:\"vec4\"},{name:\"f\",type:\"vec3\"},{name:\"normal\",type:\"vec3\"}]);return e.attributes.uv.location=0,e.attributes.f.location=1,e.attributes.normal.location=2,e},r.createContourShader=function(t){var e=n(t,s,o,null,[{name:\"uv\",type:\"vec4\"},{name:\"f\",type:\"float\"}]);return e.attributes.uv.location=0,e.attributes.f.location=1,e},r.createPickContourShader=function(t){var e=n(t,s,l,null,[{name:\"uv\",type:\"vec4\"},{name:\"f\",type:\"float\"}]);return e.attributes.uv.location=0,e.attributes.f.location=1,e}},{\"gl-shader\":302,glslify:410}],316:[function(t,e,r){arguments[4][112][0].apply(r,arguments)},{dup:112}],317:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.gl,r=y(e),n=b(e),s=x(e),l=_(e),c=a(e),u=i(e,[{buffer:c,size:4,stride:w,offset:0},{buffer:c,size:3,stride:w,offset:16},{buffer:c,size:3,stride:w,offset:28}]),h=a(e),f=i(e,[{buffer:h,size:4,stride:20,offset:0},{buffer:h,size:1,stride:20,offset:16}]),p=a(e),d=i(e,[{buffer:p,size:2,type:e.FLOAT}]),g=o(e,1,S,e.RGBA,e.UNSIGNED_BYTE);g.minFilter=e.LINEAR,g.magFilter=e.LINEAR;var v=new E(e,[0,0],[[0,0,0],[0,0,0]],r,n,c,u,g,s,l,h,f,p,d,[0,0,0]),m={levels:[[],[],[]]};for(var k in t)m[k]=t[k];return m.colormap=m.colormap||\"jet\",v.update(m),v};var n=t(\"bit-twiddle\"),a=t(\"gl-buffer\"),i=t(\"gl-vao\"),o=t(\"gl-texture2d\"),s=t(\"typedarray-pool\"),l=t(\"colormap\"),c=t(\"ndarray-ops\"),u=t(\"ndarray-pack\"),h=t(\"ndarray\"),f=t(\"surface-nets\"),p=t(\"gl-mat4/multiply\"),d=t(\"gl-mat4/invert\"),g=t(\"binary-search-bounds\"),v=t(\"ndarray-gradient\"),m=t(\"./lib/shaders\"),y=m.createShader,x=m.createContourShader,b=m.createPickShader,_=m.createPickContourShader,w=40,k=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],T=[[0,0],[0,1],[1,0],[1,1],[1,0],[0,1]],A=[[0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0]];function M(t,e,r,n,a){this.position=t,this.index=e,this.uv=r,this.level=n,this.dataCoordinate=a}!function(){for(var t=0;t<3;++t){var e=A[t],r=(t+2)%3;e[(t+1)%3+0]=1,e[r+3]=1,e[t+6]=1}}();var S=256;function E(t,e,r,n,a,i,o,l,c,u,f,p,d,g,v){this.gl=t,this.shape=e,this.bounds=r,this.objectOffset=v,this.intensityBounds=[],this._shader=n,this._pickShader=a,this._coordinateBuffer=i,this._vao=o,this._colorMap=l,this._contourShader=c,this._contourPickShader=u,this._contourBuffer=f,this._contourVAO=p,this._contourOffsets=[[],[],[]],this._contourCounts=[[],[],[]],this._vertexCount=0,this._pickResult=new M([0,0,0],[0,0],[0,0],[0,0,0],[0,0,0]),this._dynamicBuffer=d,this._dynamicVAO=g,this._dynamicOffsets=[0,0,0],this._dynamicCounts=[0,0,0],this.contourWidth=[1,1,1],this.contourLevels=[[1],[1],[1]],this.contourTint=[0,0,0],this.contourColor=[[.5,.5,.5,1],[.5,.5,.5,1],[.5,.5,.5,1]],this.showContour=!0,this.showSurface=!0,this.enableHighlight=[!0,!0,!0],this.highlightColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.highlightTint=[1,1,1],this.highlightLevel=[-1,-1,-1],this.enableDynamic=[!0,!0,!0],this.dynamicLevel=[NaN,NaN,NaN],this.dynamicColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.dynamicTint=[1,1,1],this.dynamicWidth=[1,1,1],this.axesBounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.surfaceProject=[!1,!1,!1],this.contourProject=[[!1,!1,!1],[!1,!1,!1],[!1,!1,!1]],this.colorBounds=[!1,!1],this._field=[h(s.mallocFloat(1024),[0,0]),h(s.mallocFloat(1024),[0,0]),h(s.mallocFloat(1024),[0,0])],this.pickId=1,this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.snapToData=!1,this.pixelRatio=1,this.opacity=1,this.lightPosition=[10,1e4,0],this.ambientLight=.8,this.diffuseLight=.8,this.specularLight=2,this.roughness=.5,this.fresnel=1.5,this.vertexColor=0,this.dirty=!0}var C=E.prototype;C.isTransparent=function(){return this.opacity<1},C.isOpaque=function(){if(this.opacity>=1)return!0;for(var t=0;t<3;++t)if(this._contourCounts[t].length>0||this._dynamicCounts[t]>0)return!0;return!1},C.pickSlots=1,C.setPickBase=function(t){this.pickId=t};var L=[0,0,0],P={showSurface:!1,showContour:!1,projections:[k.slice(),k.slice(),k.slice()],clipBounds:[[[0,0,0],[0,0,0]],[[0,0,0],[0,0,0]],[[0,0,0],[0,0,0]]]};function O(t,e){var r,n,a,i=e.axes&&e.axes.lastCubeProps.axis||L,o=e.showSurface,s=e.showContour;for(r=0;r<3;++r)for(o=o||e.surfaceProject[r],n=0;n<3;++n)s=s||e.contourProject[r][n];for(r=0;r<3;++r){var l=P.projections[r];for(n=0;n<16;++n)l[n]=0;for(n=0;n<4;++n)l[5*n]=1;l[5*r]=0,l[12+r]=e.axesBounds[+(i[r]>0)][r],p(l,t.model,l);var c=P.clipBounds[r];for(a=0;a<2;++a)for(n=0;n<3;++n)c[a][n]=t.clipBounds[a][n];c[0][r]=-1e8,c[1][r]=1e8}return P.showSurface=o,P.showContour=s,P}var I={model:k,view:k,projection:k,inverseModel:k.slice(),lowerBound:[0,0,0],upperBound:[0,0,0],colorMap:0,clipBounds:[[0,0,0],[0,0,0]],height:0,contourTint:0,contourColor:[0,0,0,1],permutation:[1,0,0,0,1,0,0,0,1],zOffset:-1e-4,objectOffset:[0,0,0],kambient:1,kdiffuse:1,kspecular:1,lightPosition:[1e3,1e3,1e3],eyePosition:[0,0,0],roughness:1,fresnel:1,opacity:1,vertexColor:0},z=k.slice(),D=[1,0,0,0,1,0,0,0,1];function R(t,e){t=t||{};var r=this.gl;r.disable(r.CULL_FACE),this._colorMap.bind(0);var n=I;n.model=t.model||k,n.view=t.view||k,n.projection=t.projection||k,n.lowerBound=[this.bounds[0][0],this.bounds[0][1],this.colorBounds[0]||this.bounds[0][2]],n.upperBound=[this.bounds[1][0],this.bounds[1][1],this.colorBounds[1]||this.bounds[1][2]],n.objectOffset=this.objectOffset,n.contourColor=this.contourColor[0],n.inverseModel=d(n.inverseModel,n.model);for(var a=0;a<2;++a)for(var i=n.clipBounds[a],o=0;o<3;++o)i[o]=Math.min(Math.max(this.clipBounds[a][o],-1e8),1e8);n.kambient=this.ambientLight,n.kdiffuse=this.diffuseLight,n.kspecular=this.specularLight,n.roughness=this.roughness,n.fresnel=this.fresnel,n.opacity=this.opacity,n.height=0,n.permutation=D,n.vertexColor=this.vertexColor;var s=z;for(p(s,n.view,n.model),p(s,n.projection,s),d(s,s),a=0;a<3;++a)n.eyePosition[a]=s[12+a]/s[15];var l=s[15];for(a=0;a<3;++a)l+=this.lightPosition[a]*s[4*a+3];for(a=0;a<3;++a){var c=s[12+a];for(o=0;o<3;++o)c+=s[4*o+a]*this.lightPosition[o];n.lightPosition[a]=c/l}var u=O(n,this);if(u.showSurface&&e===this.opacity<1){for(this._shader.bind(),this._shader.uniforms=n,this._vao.bind(),this.showSurface&&this._vertexCount&&this._vao.draw(r.TRIANGLES,this._vertexCount),a=0;a<3;++a)this.surfaceProject[a]&&this.vertexCount&&(this._shader.uniforms.model=u.projections[a],this._shader.uniforms.clipBounds=u.clipBounds[a],this._vao.draw(r.TRIANGLES,this._vertexCount));this._vao.unbind()}if(u.showContour&&!e){var h=this._contourShader;n.kambient=1,n.kdiffuse=0,n.kspecular=0,n.opacity=1,h.bind(),h.uniforms=n;var f=this._contourVAO;for(f.bind(),a=0;a<3;++a)for(h.uniforms.permutation=A[a],r.lineWidth(this.contourWidth[a]*this.pixelRatio),o=0;o<this.contourLevels[a].length;++o)o===this.highlightLevel[a]?(h.uniforms.contourColor=this.highlightColor[a],h.uniforms.contourTint=this.highlightTint[a]):0!==o&&o-1!==this.highlightLevel[a]||(h.uniforms.contourColor=this.contourColor[a],h.uniforms.contourTint=this.contourTint[a]),this._contourCounts[a][o]&&(h.uniforms.height=this.contourLevels[a][o],f.draw(r.LINES,this._contourCounts[a][o],this._contourOffsets[a][o]));for(a=0;a<3;++a)for(h.uniforms.model=u.projections[a],h.uniforms.clipBounds=u.clipBounds[a],o=0;o<3;++o)if(this.contourProject[a][o]){h.uniforms.permutation=A[o],r.lineWidth(this.contourWidth[o]*this.pixelRatio);for(var g=0;g<this.contourLevels[o].length;++g)g===this.highlightLevel[o]?(h.uniforms.contourColor=this.highlightColor[o],h.uniforms.contourTint=this.highlightTint[o]):0!==g&&g-1!==this.highlightLevel[o]||(h.uniforms.contourColor=this.contourColor[o],h.uniforms.contourTint=this.contourTint[o]),this._contourCounts[o][g]&&(h.uniforms.height=this.contourLevels[o][g],f.draw(r.LINES,this._contourCounts[o][g],this._contourOffsets[o][g]))}for(f.unbind(),(f=this._dynamicVAO).bind(),a=0;a<3;++a)if(0!==this._dynamicCounts[a])for(h.uniforms.model=n.model,h.uniforms.clipBounds=n.clipBounds,h.uniforms.permutation=A[a],r.lineWidth(this.dynamicWidth[a]*this.pixelRatio),h.uniforms.contourColor=this.dynamicColor[a],h.uniforms.contourTint=this.dynamicTint[a],h.uniforms.height=this.dynamicLevel[a],f.draw(r.LINES,this._dynamicCounts[a],this._dynamicOffsets[a]),o=0;o<3;++o)this.contourProject[o][a]&&(h.uniforms.model=u.projections[o],h.uniforms.clipBounds=u.clipBounds[o],f.draw(r.LINES,this._dynamicCounts[a],this._dynamicOffsets[a]));f.unbind()}}C.draw=function(t){return R.call(this,t,!1)},C.drawTransparent=function(t){return R.call(this,t,!0)};var F={model:k,view:k,projection:k,inverseModel:k,clipBounds:[[0,0,0],[0,0,0]],height:0,shape:[0,0],pickId:0,lowerBound:[0,0,0],upperBound:[0,0,0],zOffset:0,objectOffset:[0,0,0],permutation:[1,0,0,0,1,0,0,0,1],lightPosition:[0,0,0],eyePosition:[0,0,0]};function B(t,e){return Array.isArray(t)?[e(t[0]),e(t[1]),e(t[2])]:[e(t),e(t),e(t)]}function N(t){return Array.isArray(t)?3===t.length?[t[0],t[1],t[2],1]:[t[0],t[1],t[2],t[3]]:[0,0,0,1]}function j(t){if(Array.isArray(t)){if(Array.isArray(t))return[N(t[0]),N(t[1]),N(t[2])];var e=N(t);return[e.slice(),e.slice(),e.slice()]}}C.drawPick=function(t){t=t||{};var e=this.gl;e.disable(e.CULL_FACE);var r=F;r.model=t.model||k,r.view=t.view||k,r.projection=t.projection||k,r.shape=this._field[2].shape,r.pickId=this.pickId/255,r.lowerBound=this.bounds[0],r.upperBound=this.bounds[1],r.objectOffset=this.objectOffset,r.permutation=D;for(var n=0;n<2;++n)for(var a=r.clipBounds[n],i=0;i<3;++i)a[i]=Math.min(Math.max(this.clipBounds[n][i],-1e8),1e8);var o=O(r,this);if(o.showSurface){for(this._pickShader.bind(),this._pickShader.uniforms=r,this._vao.bind(),this._vao.draw(e.TRIANGLES,this._vertexCount),n=0;n<3;++n)this.surfaceProject[n]&&(this._pickShader.uniforms.model=o.projections[n],this._pickShader.uniforms.clipBounds=o.clipBounds[n],this._vao.draw(e.TRIANGLES,this._vertexCount));this._vao.unbind()}if(o.showContour){var s=this._contourPickShader;s.bind(),s.uniforms=r;var l=this._contourVAO;for(l.bind(),i=0;i<3;++i)for(e.lineWidth(this.contourWidth[i]*this.pixelRatio),s.uniforms.permutation=A[i],n=0;n<this.contourLevels[i].length;++n)this._contourCounts[i][n]&&(s.uniforms.height=this.contourLevels[i][n],l.draw(e.LINES,this._contourCounts[i][n],this._contourOffsets[i][n]));for(n=0;n<3;++n)for(s.uniforms.model=o.projections[n],s.uniforms.clipBounds=o.clipBounds[n],i=0;i<3;++i)if(this.contourProject[n][i]){s.uniforms.permutation=A[i],e.lineWidth(this.contourWidth[i]*this.pixelRatio);for(var c=0;c<this.contourLevels[i].length;++c)this._contourCounts[i][c]&&(s.uniforms.height=this.contourLevels[i][c],l.draw(e.LINES,this._contourCounts[i][c],this._contourOffsets[i][c]))}l.unbind()}},C.pick=function(t){if(!t)return null;if(t.id!==this.pickId)return null;var e=this._field[2].shape,r=this._pickResult,n=e[0]*(t.value[0]+(t.value[2]>>4)/16)/255,a=Math.floor(n),i=n-a,o=e[1]*(t.value[1]+(15&t.value[2])/16)/255,s=Math.floor(o),l=o-s;a+=1,s+=1;var c=r.position;c[0]=c[1]=c[2]=0;for(var u=0;u<2;++u)for(var h=u?i:1-i,f=0;f<2;++f)for(var p=a+u,d=s+f,v=h*(f?l:1-l),m=0;m<3;++m)c[m]+=this._field[m].get(p,d)*v;for(var y=this._pickResult.level,x=0;x<3;++x)if(y[x]=g.le(this.contourLevels[x],c[x]),y[x]<0)this.contourLevels[x].length>0&&(y[x]=0);else if(y[x]<this.contourLevels[x].length-1){var b=this.contourLevels[x][y[x]],_=this.contourLevels[x][y[x]+1];Math.abs(b-c[x])>Math.abs(_-c[x])&&(y[x]+=1)}for(r.index[0]=i<.5?a:a+1,r.index[1]=l<.5?s:s+1,r.uv[0]=n/e[0],r.uv[1]=o/e[1],m=0;m<3;++m)r.dataCoordinate[m]=this._field[m].get(r.index[0],r.index[1]);return r},C.padField=function(t,e){var r=e.shape.slice(),n=t.shape.slice();c.assign(t.lo(1,1).hi(r[0],r[1]),e),c.assign(t.lo(1).hi(r[0],1),e.hi(r[0],1)),c.assign(t.lo(1,n[1]-1).hi(r[0],1),e.lo(0,r[1]-1).hi(r[0],1)),c.assign(t.lo(0,1).hi(1,r[1]),e.hi(1)),c.assign(t.lo(n[0]-1,1).hi(1,r[1]),e.lo(r[0]-1)),t.set(0,0,e.get(0,0)),t.set(0,n[1]-1,e.get(0,r[1]-1)),t.set(n[0]-1,0,e.get(r[0]-1,0)),t.set(n[0]-1,n[1]-1,e.get(r[0]-1,r[1]-1))},C.update=function(t){t=t||{},this.objectOffset=t.objectOffset||this.objectOffset,this.dirty=!0,\"contourWidth\"in t&&(this.contourWidth=B(t.contourWidth,Number)),\"showContour\"in t&&(this.showContour=B(t.showContour,Boolean)),\"showSurface\"in t&&(this.showSurface=!!t.showSurface),\"contourTint\"in t&&(this.contourTint=B(t.contourTint,Boolean)),\"contourColor\"in t&&(this.contourColor=j(t.contourColor)),\"contourProject\"in t&&(this.contourProject=B(t.contourProject,function(t){return B(t,Boolean)})),\"surfaceProject\"in t&&(this.surfaceProject=t.surfaceProject),\"dynamicColor\"in t&&(this.dynamicColor=j(t.dynamicColor)),\"dynamicTint\"in t&&(this.dynamicTint=B(t.dynamicTint,Number)),\"dynamicWidth\"in t&&(this.dynamicWidth=B(t.dynamicWidth,Number)),\"opacity\"in t&&(this.opacity=t.opacity),\"colorBounds\"in t&&(this.colorBounds=t.colorBounds),\"vertexColor\"in t&&(this.vertexColor=t.vertexColor?1:0);var e=t.field||t.coords&&t.coords[2]||null,r=!1;if(e||(e=this._field[2].shape[0]||this._field[2].shape[2]?this._field[2].lo(1,1).hi(this._field[2].shape[0]-2,this._field[2].shape[1]-2):this._field[2].hi(0,0)),\"field\"in t||\"coords\"in t){var a=(e.shape[0]+2)*(e.shape[1]+2);a>this._field[2].data.length&&(s.freeFloat(this._field[2].data),this._field[2].data=s.mallocFloat(n.nextPow2(a))),this._field[2]=h(this._field[2].data,[e.shape[0]+2,e.shape[1]+2]),this.padField(this._field[2],e),this.shape=e.shape.slice();for(var i=this.shape,o=0;o<2;++o)this._field[2].size>this._field[o].data.length&&(s.freeFloat(this._field[o].data),this._field[o].data=s.mallocFloat(this._field[2].size)),this._field[o]=h(this._field[o].data,[i[0]+2,i[1]+2]);if(t.coords){var p=t.coords;if(!Array.isArray(p)||3!==p.length)throw new Error(\"gl-surface: invalid coordinates for x/y\");for(o=0;o<2;++o){var d=p[o];for(b=0;b<2;++b)if(d.shape[b]!==i[b])throw new Error(\"gl-surface: coords have incorrect shape\");this.padField(this._field[o],d)}}else if(t.ticks){var g=t.ticks;if(!Array.isArray(g)||2!==g.length)throw new Error(\"gl-surface: invalid ticks\");for(o=0;o<2;++o){var m=g[o];if((Array.isArray(m)||m.length)&&(m=h(m)),m.shape[0]!==i[o])throw new Error(\"gl-surface: invalid tick length\");var y=h(m.data,i);y.stride[o]=m.stride[0],y.stride[1^o]=0,this.padField(this._field[o],y)}}else{for(o=0;o<2;++o){var x=[0,0];x[o]=1,this._field[o]=h(this._field[o].data,[i[0]+2,i[1]+2],x,0)}this._field[0].set(0,0,0);for(var b=0;b<i[0];++b)this._field[0].set(b+1,0,b);for(this._field[0].set(i[0]+1,0,i[0]-1),this._field[1].set(0,0,0),b=0;b<i[1];++b)this._field[1].set(0,b+1,b);this._field[1].set(0,i[1]+1,i[1]-1)}var _=this._field,w=h(s.mallocFloat(3*_[2].size*2),[3,i[0]+2,i[1]+2,2]);for(o=0;o<3;++o)v(w.pick(o),_[o],\"mirror\");var k=h(s.mallocFloat(3*_[2].size),[i[0]+2,i[1]+2,3]);for(o=0;o<i[0]+2;++o)for(b=0;b<i[1]+2;++b){var A=w.get(0,o,b,0),M=w.get(0,o,b,1),E=w.get(1,o,b,0),C=w.get(1,o,b,1),L=w.get(2,o,b,0),P=w.get(2,o,b,1),O=E*P-C*L,I=L*M-P*A,z=A*C-M*E,D=Math.sqrt(O*O+I*I+z*z);D<1e-8?(D=Math.max(Math.abs(O),Math.abs(I),Math.abs(z)))<1e-8?(z=1,I=O=0,D=1):D=1/D:D=1/Math.sqrt(D),k.set(o,b,0,O*D),k.set(o,b,1,I*D),k.set(o,b,2,z*D)}s.free(w.data);var R=[1/0,1/0,1/0],F=[-1/0,-1/0,-1/0],N=1/0,V=-1/0,U=(i[0]-1)*(i[1]-1)*6,q=s.mallocFloat(n.nextPow2(10*U)),H=0,G=0;for(o=0;o<i[0]-1;++o)t:for(b=0;b<i[1]-1;++b){for(var Y=0;Y<2;++Y)for(var W=0;W<2;++W)for(var X=0;X<3;++X){var Z=this._field[X].get(1+o+Y,1+b+W);if(isNaN(Z)||!isFinite(Z))continue t}for(X=0;X<6;++X){var J=o+T[X][0],K=b+T[X][1],Q=this._field[0].get(J+1,K+1),$=this._field[1].get(J+1,K+1);Z=this._field[2].get(J+1,K+1),O=k.get(J+1,K+1,0),I=k.get(J+1,K+1,1),z=k.get(J+1,K+1,2),t.intensity&&(tt=t.intensity.get(J,K));var tt=t.intensity?t.intensity.get(J,K):Z+this.objectOffset[2];q[H++]=J,q[H++]=K,q[H++]=Q,q[H++]=$,q[H++]=Z,q[H++]=0,q[H++]=tt,q[H++]=O,q[H++]=I,q[H++]=z,R[0]=Math.min(R[0],Q+this.objectOffset[0]),R[1]=Math.min(R[1],$+this.objectOffset[1]),R[2]=Math.min(R[2],Z+this.objectOffset[2]),N=Math.min(N,tt),F[0]=Math.max(F[0],Q+this.objectOffset[0]),F[1]=Math.max(F[1],$+this.objectOffset[1]),F[2]=Math.max(F[2],Z+this.objectOffset[2]),V=Math.max(V,tt),G+=1}}for(t.intensityBounds&&(N=+t.intensityBounds[0],V=+t.intensityBounds[1]),o=6;o<H;o+=10)q[o]=(q[o]-N)/(V-N);this._vertexCount=G,this._coordinateBuffer.update(q.subarray(0,H)),s.freeFloat(q),s.free(k.data),this.bounds=[R,F],this.intensity=t.intensity||this._field[2],this.intensityBounds[0]===N&&this.intensityBounds[1]===V||(r=!0),this.intensityBounds=[N,V]}if(\"levels\"in t){var et=t.levels;for(et=Array.isArray(et[0])?et.slice():[[],[],et],o=0;o<3;++o)et[o]=et[o].slice(),et[o].sort(function(t,e){return t-e});for(o=0;o<3;++o)for(b=0;b<et[o].length;++b)et[o][b]-=this.objectOffset[o];t:for(o=0;o<3;++o){if(et[o].length!==this.contourLevels[o].length){r=!0;break}for(b=0;b<et[o].length;++b)if(et[o][b]!==this.contourLevels[o][b]){r=!0;break t}}this.contourLevels=et}if(r){_=this._field,i=this.shape;for(var rt=[],nt=0;nt<3;++nt){var at=this.contourLevels[nt],it=[],ot=[],st=[0,0,0];for(o=0;o<at.length;++o){var lt=f(this._field[nt],at[o]);it.push(rt.length/5|0),G=0;t:for(b=0;b<lt.cells.length;++b){var ct=lt.cells[b];for(X=0;X<2;++X){var ut=lt.positions[ct[X]],ht=ut[0],ft=0|Math.floor(ht),pt=ht-ft,dt=ut[1],gt=0|Math.floor(dt),vt=dt-gt,mt=!1;e:for(var yt=0;yt<3;++yt){st[yt]=0;var xt=(nt+yt+1)%3;for(Y=0;Y<2;++Y){var bt=Y?pt:1-pt;for(J=0|Math.min(Math.max(ft+Y,0),i[0]),W=0;W<2;++W){var _t=W?vt:1-vt;if(K=0|Math.min(Math.max(gt+W,0),i[1]),Z=yt<2?this._field[xt].get(J,K):(this.intensity.get(J,K)-this.intensityBounds[0])/(this.intensityBounds[1]-this.intensityBounds[0]),!isFinite(Z)||isNaN(Z)){mt=!0;break e}var wt=bt*_t;st[yt]+=wt*Z}}}if(mt){if(X>0){for(var kt=0;kt<5;++kt)rt.pop();G-=1}continue t}rt.push(st[0],st[1],ut[0],ut[1],st[2]),G+=1}}ot.push(G)}this._contourOffsets[nt]=it,this._contourCounts[nt]=ot}var Tt=s.mallocFloat(rt.length);for(o=0;o<rt.length;++o)Tt[o]=rt[o];this._contourBuffer.update(Tt),s.freeFloat(Tt)}t.colormap&&this._colorMap.setPixels(function(t){var e=u([l({colormap:t,nshades:S,format:\"rgba\"}).map(function(t){return[t[0],t[1],t[2],255*t[3]]})]);return c.divseq(e,255),e}(t.colormap))},C.dispose=function(){this._shader.dispose(),this._vao.dispose(),this._coordinateBuffer.dispose(),this._colorMap.dispose(),this._contourBuffer.dispose(),this._contourVAO.dispose(),this._contourShader.dispose(),this._contourPickShader.dispose(),this._dynamicBuffer.dispose(),this._dynamicVAO.dispose();for(var t=0;t<3;++t)s.freeFloat(this._field[t].data)},C.highlight=function(t){var e,r;if(!t)return this._dynamicCounts=[0,0,0],this.dyanamicLevel=[NaN,NaN,NaN],void(this.highlightLevel=[-1,-1,-1]);for(e=0;e<3;++e)this.enableHighlight[e]?this.highlightLevel[e]=t.level[e]:this.highlightLevel[e]=-1;for(r=this.snapToData?t.dataCoordinate:t.position,e=0;e<3;++e)r[e]-=this.objectOffset[e];if(this.enableDynamic[0]&&r[0]!==this.dynamicLevel[0]||this.enableDynamic[1]&&r[1]!==this.dynamicLevel[1]||this.enableDynamic[2]&&r[2]!==this.dynamicLevel[2]){for(var n=0,a=this.shape,i=s.mallocFloat(12*a[0]*a[1]),o=0;o<3;++o)if(this.enableDynamic[o]){this.dynamicLevel[o]=r[o];var l=(o+1)%3,c=(o+2)%3,u=this._field[o],h=this._field[l],p=this._field[c],d=f(u,r[o]),g=d.cells,v=d.positions;for(this._dynamicOffsets[o]=n,e=0;e<g.length;++e)for(var m=g[e],y=0;y<2;++y){var x=v[m[y]],b=+x[0],_=0|b,w=0|Math.min(_+1,a[0]),k=b-_,T=1-k,A=+x[1],M=0|A,S=0|Math.min(M+1,a[1]),E=A-M,C=1-E,L=T*C,P=T*E,O=k*C,I=k*E,z=L*h.get(_,M)+P*h.get(_,S)+O*h.get(w,M)+I*h.get(w,S),D=L*p.get(_,M)+P*p.get(_,S)+O*p.get(w,M)+I*p.get(w,S);if(isNaN(z)||isNaN(D)){y&&(n-=1);break}i[2*n+0]=z,i[2*n+1]=D,n+=1}this._dynamicCounts[o]=n-this._dynamicOffsets[o]}else this.dynamicLevel[o]=NaN,this._dynamicCounts[o]=0;this._dynamicBuffer.update(i.subarray(0,2*n)),s.freeFloat(i)}}},{\"./lib/shaders\":315,\"binary-search-bounds\":316,\"bit-twiddle\":93,colormap:127,\"gl-buffer\":242,\"gl-mat4/invert\":266,\"gl-mat4/multiply\":268,\"gl-texture2d\":323,\"gl-vao\":328,ndarray:451,\"ndarray-gradient\":442,\"ndarray-ops\":445,\"ndarray-pack\":446,\"surface-nets\":532,\"typedarray-pool\":546}],318:[function(t,e,r){\"use strict\";var n=t(\"css-font\"),a=t(\"pick-by-alias\"),i=t(\"regl\"),o=t(\"gl-util/context\"),s=t(\"es6-weak-map\"),l=t(\"color-normalize\"),c=t(\"font-atlas\"),u=t(\"typedarray-pool\"),h=t(\"parse-rect\"),f=t(\"is-plain-obj\"),p=t(\"parse-unit\"),d=t(\"to-px\"),g=t(\"detect-kerning\"),v=t(\"object-assign\"),m=t(\"font-measure\"),y=t(\"flatten-vertex-data\"),x=t(\"bit-twiddle\").nextPow2,b=new s,_=!1;if(document.body){var w=document.body.appendChild(document.createElement(\"div\"));w.style.font=\"italic small-caps bold condensed 16px/2 cursive\",getComputedStyle(w).fontStretch&&(_=!0),document.body.removeChild(w)}var k=function(t){!function(t){return\"function\"==typeof t&&t._gl&&t.prop&&t.texture&&t.buffer}(t)?this.gl=o(t):(t={regl:t},this.gl=t.regl._gl),this.shader=b.get(this.gl),this.shader?this.regl=this.shader.regl:this.regl=t.regl||i({gl:this.gl}),this.charBuffer=this.regl.buffer({type:\"uint8\",usage:\"stream\"}),this.sizeBuffer=this.regl.buffer({type:\"float\",usage:\"stream\"}),this.shader||(this.shader=this.createShader(),b.set(this.gl,this.shader)),this.batch=[],this.fontSize=[],this.font=[],this.fontAtlas=[],this.draw=this.shader.draw.bind(this),this.render=function(){this.regl._refresh(),this.draw(this.batch)},this.canvas=this.gl.canvas,this.update(f(t)?t:{})};k.prototype.createShader=function(){var t=this.regl,e=t({blend:{enable:!0,color:[0,0,0,1],func:{srcRGB:\"src alpha\",dstRGB:\"one minus src alpha\",srcAlpha:\"one minus dst alpha\",dstAlpha:\"one\"}},stencil:{enable:!1},depth:{enable:!1},count:t.prop(\"count\"),offset:t.prop(\"offset\"),attributes:{charOffset:{offset:4,stride:8,buffer:t.this(\"sizeBuffer\")},width:{offset:0,stride:8,buffer:t.this(\"sizeBuffer\")},char:t.this(\"charBuffer\"),position:t.this(\"position\")},uniforms:{atlasSize:function(t,e){return[e.atlas.width,e.atlas.height]},atlasDim:function(t,e){return[e.atlas.cols,e.atlas.rows]},atlas:function(t,e){return e.atlas.texture},charStep:function(t,e){return e.atlas.step},em:function(t,e){return e.atlas.em},color:t.prop(\"color\"),opacity:t.prop(\"opacity\"),viewport:t.this(\"viewportArray\"),scale:t.this(\"scale\"),align:t.prop(\"align\"),baseline:t.prop(\"baseline\"),translate:t.this(\"translate\"),positionOffset:t.prop(\"positionOffset\")},primitive:\"points\",viewport:t.this(\"viewport\"),vert:\"\\n\\t\\t\\tprecision highp float;\\n\\t\\t\\tattribute float width, charOffset, char;\\n\\t\\t\\tattribute vec2 position;\\n\\t\\t\\tuniform float fontSize, charStep, em, align, baseline;\\n\\t\\t\\tuniform vec4 viewport;\\n\\t\\t\\tuniform vec4 color;\\n\\t\\t\\tuniform vec2 atlasSize, atlasDim, scale, translate, positionOffset;\\n\\t\\t\\tvarying vec2 charCoord, charId;\\n\\t\\t\\tvarying float charWidth;\\n\\t\\t\\tvarying vec4 fontColor;\\n\\t\\t\\tvoid main () {\\n\\t\\t\\t\\t\"+(k.normalViewport?\"\":\"vec2 positionOffset = vec2(positionOffset.x,- positionOffset.y);\")+\"\\n\\n\\t\\t\\t\\tvec2 offset = floor(em * (vec2(align + charOffset, baseline)\\n\\t\\t\\t\\t\\t+ positionOffset))\\n\\t\\t\\t\\t\\t/ (viewport.zw * scale.xy);\\n\\n\\t\\t\\t\\tvec2 position = (position + translate) * scale;\\n\\t\\t\\t\\tposition += offset * scale;\\n\\n\\t\\t\\t\\t\"+(k.normalViewport?\"position.y = 1. - position.y;\":\"\")+\"\\n\\n\\t\\t\\t\\tcharCoord = position * viewport.zw + viewport.xy;\\n\\n\\t\\t\\t\\tgl_Position = vec4(position * 2. - 1., 0, 1);\\n\\n\\t\\t\\t\\tgl_PointSize = charStep;\\n\\n\\t\\t\\t\\tcharId.x = mod(char, atlasDim.x);\\n\\t\\t\\t\\tcharId.y = floor(char / atlasDim.x);\\n\\n\\t\\t\\t\\tcharWidth = width * em;\\n\\n\\t\\t\\t\\tfontColor = color / 255.;\\n\\t\\t\\t}\",frag:\"\\n\\t\\t\\tprecision highp float;\\n\\t\\t\\tuniform sampler2D atlas;\\n\\t\\t\\tuniform float fontSize, charStep, opacity;\\n\\t\\t\\tuniform vec2 atlasSize;\\n\\t\\t\\tuniform vec4 viewport;\\n\\t\\t\\tvarying vec4 fontColor;\\n\\t\\t\\tvarying vec2 charCoord, charId;\\n\\t\\t\\tvarying float charWidth;\\n\\n\\t\\t\\tfloat lightness(vec4 color) {\\n\\t\\t\\t\\treturn color.r * 0.299 + color.g * 0.587 + color.b * 0.114;\\n\\t\\t\\t}\\n\\n\\t\\t\\tvoid main () {\\n\\t\\t\\t\\tvec2 uv = gl_FragCoord.xy - charCoord + charStep * .5;\\n\\t\\t\\t\\tfloat halfCharStep = floor(charStep * .5 + .5);\\n\\n\\t\\t\\t\\t// invert y and shift by 1px (FF expecially needs that)\\n\\t\\t\\t\\tuv.y = charStep - uv.y;\\n\\n\\t\\t\\t\\t// ignore points outside of character bounding box\\n\\t\\t\\t\\tfloat halfCharWidth = ceil(charWidth * .5);\\n\\t\\t\\t\\tif (floor(uv.x) > halfCharStep + halfCharWidth ||\\n\\t\\t\\t\\t\\tfloor(uv.x) < halfCharStep - halfCharWidth) return;\\n\\n\\t\\t\\t\\tuv += charId * charStep;\\n\\t\\t\\t\\tuv = uv / atlasSize;\\n\\n\\t\\t\\t\\tvec4 color = fontColor;\\n\\t\\t\\t\\tvec4 mask = texture2D(atlas, uv);\\n\\n\\t\\t\\t\\tfloat maskY = lightness(mask);\\n\\t\\t\\t\\t// float colorY = lightness(color);\\n\\t\\t\\t\\tcolor.a *= maskY;\\n\\t\\t\\t\\tcolor.a *= opacity;\\n\\n\\t\\t\\t\\t// color.a += .1;\\n\\n\\t\\t\\t\\t// antialiasing, see yiq color space y-channel formula\\n\\t\\t\\t\\t// color.rgb += (1. - color.rgb) * (1. - mask.rgb);\\n\\n\\t\\t\\t\\tgl_FragColor = color;\\n\\t\\t\\t}\"});return{regl:t,draw:e,atlas:{}}},k.prototype.update=function(t){var e=this;if(\"string\"==typeof t)t={text:t};else if(!t)return;null!=(t=a(t,{position:\"position positions coord coords coordinates\",font:\"font fontFace fontface typeface cssFont css-font family fontFamily\",fontSize:\"fontSize fontsize size font-size\",text:\"text texts chars characters value values symbols\",align:\"align alignment textAlign textbaseline\",baseline:\"baseline textBaseline textbaseline\",direction:\"dir direction textDirection\",color:\"color colour fill fill-color fillColor textColor textcolor\",kerning:\"kerning kern\",range:\"range dataBox\",viewport:\"vp viewport viewBox viewbox viewPort\",opacity:\"opacity alpha transparency visible visibility opaque\",offset:\"offset positionOffset padding shift indent indentation\"},!0)).opacity&&(Array.isArray(t.opacity)?this.opacity=t.opacity.map(function(t){return parseFloat(t)}):this.opacity=parseFloat(t.opacity)),null!=t.viewport&&(this.viewport=h(t.viewport),k.normalViewport&&(this.viewport.y=this.canvas.height-this.viewport.y-this.viewport.height),this.viewportArray=[this.viewport.x,this.viewport.y,this.viewport.width,this.viewport.height]),null==this.viewport&&(this.viewport={x:0,y:0,width:this.gl.drawingBufferWidth,height:this.gl.drawingBufferHeight},this.viewportArray=[this.viewport.x,this.viewport.y,this.viewport.width,this.viewport.height]),null!=t.kerning&&(this.kerning=t.kerning),null!=t.offset&&(\"number\"==typeof t.offset&&(t.offset=[t.offset,0]),this.positionOffset=y(t.offset)),t.direction&&(this.direction=t.direction),t.range&&(this.range=t.range,this.scale=[1/(t.range[2]-t.range[0]),1/(t.range[3]-t.range[1])],this.translate=[-t.range[0],-t.range[1]]),t.scale&&(this.scale=t.scale),t.translate&&(this.translate=t.translate),this.scale||(this.scale=[1/this.viewport.width,1/this.viewport.height]),this.translate||(this.translate=[0,0]),this.font.length||t.font||(t.font=k.baseFontSize+\"px sans-serif\");var r,i=!1,o=!1;if(t.font&&(Array.isArray(t.font)?t.font:[t.font]).forEach(function(t,r){if(\"string\"==typeof t)try{t=n.parse(t)}catch(e){t=n.parse(k.baseFontSize+\"px \"+t)}else t=n.parse(n.stringify(t));var a=n.stringify({size:k.baseFontSize,family:t.family,stretch:_?t.stretch:void 0,variant:t.variant,weight:t.weight,style:t.style}),s=p(t.size),l=Math.round(s[0]*d(s[1]));if(l!==e.fontSize[r]&&(o=!0,e.fontSize[r]=l),!(e.font[r]&&a==e.font[r].baseString||(i=!0,e.font[r]=k.fonts[a],e.font[r]))){var c=t.family.join(\", \"),u=[t.style];t.style!=t.variant&&u.push(t.variant),t.variant!=t.weight&&u.push(t.weight),_&&t.weight!=t.stretch&&u.push(t.stretch),e.font[r]={baseString:a,family:c,weight:t.weight,stretch:t.stretch,style:t.style,variant:t.variant,width:{},kerning:{},metrics:m(c,{origin:\"top\",fontSize:k.baseFontSize,fontStyle:u.join(\" \")})},k.fonts[a]=e.font[r]}}),(i||o)&&this.font.forEach(function(r,a){var i=n.stringify({size:e.fontSize[a],family:r.family,stretch:_?r.stretch:void 0,variant:r.variant,weight:r.weight,style:r.style});if(e.fontAtlas[a]=e.shader.atlas[i],!e.fontAtlas[a]){var o=r.metrics;e.shader.atlas[i]=e.fontAtlas[a]={fontString:i,step:2*Math.ceil(e.fontSize[a]*o.bottom*.5),em:e.fontSize[a],cols:0,rows:0,height:0,width:0,chars:[],ids:{},texture:e.regl.texture()}}null==t.text&&(t.text=e.text)}),\"string\"==typeof t.text&&t.position&&t.position.length>2){for(var s=Array(.5*t.position.length),f=0;f<s.length;f++)s[f]=t.text;t.text=s}if(null!=t.text||i){if(this.textOffsets=[0],Array.isArray(t.text)){this.count=t.text[0].length,this.counts=[this.count];for(var b=1;b<t.text.length;b++)this.textOffsets[b]=this.textOffsets[b-1]+t.text[b-1].length,this.count+=t.text[b].length,this.counts.push(t.text[b].length);this.text=t.text.join(\"\")}else this.text=t.text,this.count=this.text.length,this.counts=[this.count];r=[],this.font.forEach(function(t,n){k.atlasContext.font=t.baseString;for(var a=e.fontAtlas[n],i=0;i<e.text.length;i++){var o=e.text.charAt(i);if(null==a.ids[o]&&(a.ids[o]=a.chars.length,a.chars.push(o),r.push(o)),null==t.width[o]&&(t.width[o]=k.atlasContext.measureText(o).width/k.baseFontSize,e.kerning)){var s=[];for(var l in t.width)s.push(l+o,o+l);v(t.kerning,g(t.family,{pairs:s}))}}})}if(t.position)if(t.position.length>2){for(var w=!t.position[0].length,T=u.mallocFloat(2*this.count),A=0,M=0;A<this.counts.length;A++){var S=this.counts[A];if(w)for(var E=0;E<S;E++)T[M++]=t.position[2*A],T[M++]=t.position[2*A+1];else for(var C=0;C<S;C++)T[M++]=t.position[A][0],T[M++]=t.position[A][1]}this.position.call?this.position({type:\"float\",data:T}):this.position=this.regl.buffer({type:\"float\",data:T}),u.freeFloat(T)}else this.position.destroy&&this.position.destroy(),this.position={constant:t.position};if(t.text||i){var L=u.mallocUint8(this.count),P=u.mallocFloat(2*this.count);this.textWidth=[];for(var O=0,I=0;O<this.counts.length;O++){for(var z=this.counts[O],D=this.font[O]||this.font[0],R=this.fontAtlas[O]||this.fontAtlas[0],F=0;F<z;F++){var B=this.text.charAt(I),N=this.text.charAt(I-1);if(L[I]=R.ids[B],P[2*I]=D.width[B],F){var j=P[2*I-2],V=P[2*I],U=P[2*I-1]+.5*j+.5*V;if(this.kerning){var q=D.kerning[N+B];q&&(U+=.001*q)}P[2*I+1]=U}else P[2*I+1]=.5*P[2*I];I++}this.textWidth.push(P.length?.5*P[2*I-2]+P[2*I-1]:0)}t.align||(t.align=this.align),this.charBuffer({data:L,type:\"uint8\",usage:\"stream\"}),this.sizeBuffer({data:P,type:\"float\",usage:\"stream\"}),u.freeUint8(L),u.freeFloat(P),r.length&&this.font.forEach(function(t,r){var n=e.fontAtlas[r],a=n.step,i=Math.floor(k.maxAtlasSize/a),o=Math.min(i,n.chars.length),s=Math.ceil(n.chars.length/o),l=x(o*a),u=x(s*a);n.width=l,n.height=u,n.rows=s,n.cols=o,n.em&&n.texture({data:c({canvas:k.atlasCanvas,font:n.fontString,chars:n.chars,shape:[l,u],step:[a,a]})})})}if(t.align&&(this.align=t.align,this.alignOffset=this.textWidth.map(function(t,r){var n=Array.isArray(e.align)?e.align.length>1?e.align[r]:e.align[0]:e.align;if(\"number\"==typeof n)return n;switch(n){case\"right\":case\"end\":return-t;case\"center\":case\"centre\":case\"middle\":return.5*-t}return 0})),null==this.baseline&&null==t.baseline&&(t.baseline=0),null!=t.baseline&&(this.baseline=t.baseline,Array.isArray(this.baseline)||(this.baseline=[this.baseline]),this.baselineOffset=this.baseline.map(function(t,r){var n=(e.font[r]||e.font[0]).metrics,a=0;return a+=.5*n.bottom,a+=\"number\"==typeof t?t-n.baseline:-n[t],k.normalViewport||(a*=-1),a})),null!=t.color)if(t.color||(t.color=\"transparent\"),\"string\"!=typeof t.color&&isNaN(t.color)){var H;if(\"number\"==typeof t.color[0]&&t.color.length>this.counts.length){var G=t.color.length;H=u.mallocUint8(G);for(var Y=(t.color.subarray||t.color.slice).bind(t.color),W=0;W<G;W+=4)H.set(l(Y(W,W+4),\"uint8\"),W)}else{var X=t.color.length;H=u.mallocUint8(4*X);for(var Z=0;Z<X;Z++)H.set(l(t.color[Z]||0,\"uint8\"),4*Z)}this.color=H}else this.color=l(t.color,\"uint8\");if(t.position||t.text||t.color||t.baseline||t.align||t.font||t.offset||t.opacity)if(this.color.length>4||this.baselineOffset.length>1||this.align&&this.align.length>1||this.fontAtlas.length>1||this.positionOffset.length>2){var J=Math.max(.5*this.position.length||0,.25*this.color.length||0,this.baselineOffset.length||0,this.alignOffset.length||0,this.font.length||0,this.opacity.length||0,.5*this.positionOffset.length||0);this.batch=Array(J);for(var K=0;K<this.batch.length;K++)this.batch[K]={count:this.counts.length>1?this.counts[K]:this.counts[0],offset:this.textOffsets.length>1?this.textOffsets[K]:this.textOffsets[0],color:this.color?this.color.length<=4?this.color:this.color.subarray(4*K,4*K+4):[0,0,0,255],opacity:Array.isArray(this.opacity)?this.opacity[K]:this.opacity,baseline:null!=this.baselineOffset[K]?this.baselineOffset[K]:this.baselineOffset[0],align:this.align?null!=this.alignOffset[K]?this.alignOffset[K]:this.alignOffset[0]:0,atlas:this.fontAtlas[K]||this.fontAtlas[0],positionOffset:this.positionOffset.length>2?this.positionOffset.subarray(2*K,2*K+2):this.positionOffset}}else this.count?this.batch=[{count:this.count,offset:0,color:this.color||[0,0,0,255],opacity:Array.isArray(this.opacity)?this.opacity[0]:this.opacity,baseline:this.baselineOffset[0],align:this.alignOffset?this.alignOffset[0]:0,atlas:this.fontAtlas[0],positionOffset:this.positionOffset}]:this.batch=[]},k.prototype.destroy=function(){},k.prototype.kerning=!0,k.prototype.position={constant:new Float32Array(2)},k.prototype.translate=null,k.prototype.scale=null,k.prototype.font=null,k.prototype.text=\"\",k.prototype.positionOffset=[0,0],k.prototype.opacity=1,k.prototype.color=new Uint8Array([0,0,0,255]),k.prototype.alignOffset=[0,0],k.normalViewport=!1,k.maxAtlasSize=1024,k.atlasCanvas=document.createElement(\"canvas\"),k.atlasContext=k.atlasCanvas.getContext(\"2d\",{alpha:!1}),k.baseFontSize=64,k.fonts={},e.exports=k},{\"bit-twiddle\":93,\"color-normalize\":121,\"css-font\":140,\"detect-kerning\":167,\"es6-weak-map\":319,\"flatten-vertex-data\":228,\"font-atlas\":229,\"font-measure\":230,\"gl-util/context\":324,\"is-plain-obj\":423,\"object-assign\":455,\"parse-rect\":460,\"parse-unit\":462,\"pick-by-alias\":466,regl:503,\"to-px\":540,\"typedarray-pool\":546}],319:[function(t,e,r){\"use strict\";e.exports=t(\"./is-implemented\")()?WeakMap:t(\"./polyfill\")},{\"./is-implemented\":320,\"./polyfill\":322}],320:[function(t,e,r){\"use strict\";e.exports=function(){var t,e;if(\"function\"!=typeof WeakMap)return!1;try{t=new WeakMap([[e={},\"one\"],[{},\"two\"],[{},\"three\"]])}catch(t){return!1}return\"[object WeakMap]\"===String(t)&&(\"function\"==typeof t.set&&(t.set({},1)===t&&(\"function\"==typeof t.delete&&(\"function\"==typeof t.has&&\"one\"===t.get(e)))))}},{}],321:[function(t,e,r){\"use strict\";e.exports=\"function\"==typeof WeakMap&&\"[object WeakMap]\"===Object.prototype.toString.call(new WeakMap)},{}],322:[function(t,e,r){\"use strict\";var n,a=t(\"es5-ext/object/is-value\"),i=t(\"es5-ext/object/set-prototype-of\"),o=t(\"es5-ext/object/valid-object\"),s=t(\"es5-ext/object/valid-value\"),l=t(\"es5-ext/string/random-uniq\"),c=t(\"d\"),u=t(\"es6-iterator/get\"),h=t(\"es6-iterator/for-of\"),f=t(\"es6-symbol\").toStringTag,p=t(\"./is-native-implemented\"),d=Array.isArray,g=Object.defineProperty,v=Object.prototype.hasOwnProperty,m=Object.getPrototypeOf;e.exports=n=function(){var t,e=arguments[0];if(!(this instanceof n))throw new TypeError(\"Constructor requires 'new'\");return t=p&&i&&WeakMap!==n?i(new WeakMap,m(this)):this,a(e)&&(d(e)||(e=u(e))),g(t,\"__weakMapData__\",c(\"c\",\"$weakMap$\"+l())),e?(h(e,function(e){s(e),t.set(e[0],e[1])}),t):t},p&&(i&&i(n,WeakMap),n.prototype=Object.create(WeakMap.prototype,{constructor:c(n)})),Object.defineProperties(n.prototype,{delete:c(function(t){return!!v.call(o(t),this.__weakMapData__)&&(delete t[this.__weakMapData__],!0)}),get:c(function(t){if(v.call(o(t),this.__weakMapData__))return t[this.__weakMapData__]}),has:c(function(t){return v.call(o(t),this.__weakMapData__)}),set:c(function(t,e){return g(o(t),this.__weakMapData__,c(\"c\",e)),this}),toString:c(function(){return\"[object WeakMap]\"})}),g(n.prototype,f,c(\"c\",\"WeakMap\"))},{\"./is-native-implemented\":321,d:152,\"es5-ext/object/is-value\":195,\"es5-ext/object/set-prototype-of\":201,\"es5-ext/object/valid-object\":205,\"es5-ext/object/valid-value\":206,\"es5-ext/string/random-uniq\":211,\"es6-iterator/for-of\":213,\"es6-iterator/get\":214,\"es6-symbol\":220}],323:[function(t,e,r){\"use strict\";var n=t(\"ndarray\"),a=t(\"ndarray-ops\"),i=t(\"typedarray-pool\");e.exports=function(t){if(arguments.length<=1)throw new Error(\"gl-texture2d: Missing arguments for texture2d constructor\");o||function(t){o=[t.LINEAR,t.NEAREST_MIPMAP_LINEAR,t.LINEAR_MIPMAP_NEAREST,t.LINEAR_MIPMAP_NEAREST],s=[t.NEAREST,t.LINEAR,t.NEAREST_MIPMAP_NEAREST,t.NEAREST_MIPMAP_LINEAR,t.LINEAR_MIPMAP_NEAREST,t.LINEAR_MIPMAP_LINEAR],l=[t.REPEAT,t.CLAMP_TO_EDGE,t.MIRRORED_REPEAT]}(t);if(\"number\"==typeof arguments[1])return v(t,arguments[1],arguments[2],arguments[3]||t.RGBA,arguments[4]||t.UNSIGNED_BYTE);if(Array.isArray(arguments[1]))return v(t,0|arguments[1][0],0|arguments[1][1],arguments[2]||t.RGBA,arguments[3]||t.UNSIGNED_BYTE);if(\"object\"==typeof arguments[1]){var e=arguments[1],r=c(e)?e:e.raw;if(r)return function(t,e,r,n,a,i){var o=g(t);return t.texImage2D(t.TEXTURE_2D,0,a,a,i,e),new f(t,o,r,n,a,i)}(t,r,0|e.width,0|e.height,arguments[2]||t.RGBA,arguments[3]||t.UNSIGNED_BYTE);if(e.shape&&e.data&&e.stride)return function(t,e){var r=e.dtype,o=e.shape.slice(),s=t.getParameter(t.MAX_TEXTURE_SIZE);if(o[0]<0||o[0]>s||o[1]<0||o[1]>s)throw new Error(\"gl-texture2d: Invalid texture size\");var l=d(o,e.stride.slice()),c=0;\"float32\"===r?c=t.FLOAT:\"float64\"===r?(c=t.FLOAT,l=!1,r=\"float32\"):\"uint8\"===r?c=t.UNSIGNED_BYTE:(c=t.UNSIGNED_BYTE,l=!1,r=\"uint8\");var h,p,v=0;if(2===o.length)v=t.LUMINANCE,o=[o[0],o[1],1],e=n(e.data,o,[e.stride[0],e.stride[1],1],e.offset);else{if(3!==o.length)throw new Error(\"gl-texture2d: Invalid shape for texture\");if(1===o[2])v=t.ALPHA;else if(2===o[2])v=t.LUMINANCE_ALPHA;else if(3===o[2])v=t.RGB;else{if(4!==o[2])throw new Error(\"gl-texture2d: Invalid shape for pixel coords\");v=t.RGBA}}c!==t.FLOAT||t.getExtension(\"OES_texture_float\")||(c=t.UNSIGNED_BYTE,l=!1);var m=e.size;if(l)h=0===e.offset&&e.data.length===m?e.data:e.data.subarray(e.offset,e.offset+m);else{var y=[o[2],o[2]*o[0],1];p=i.malloc(m,r);var x=n(p,o,y,0);\"float32\"!==r&&\"float64\"!==r||c!==t.UNSIGNED_BYTE?a.assign(x,e):u(x,e),h=p.subarray(0,m)}var b=g(t);t.texImage2D(t.TEXTURE_2D,0,v,o[0],o[1],0,v,c,h),l||i.free(p);return new f(t,b,o[0],o[1],v,c)}(t,e)}throw new Error(\"gl-texture2d: Invalid arguments for texture2d constructor\")};var o=null,s=null,l=null;function c(t){return\"undefined\"!=typeof HTMLCanvasElement&&t instanceof HTMLCanvasElement||\"undefined\"!=typeof HTMLImageElement&&t instanceof HTMLImageElement||\"undefined\"!=typeof HTMLVideoElement&&t instanceof HTMLVideoElement||\"undefined\"!=typeof ImageData&&t instanceof ImageData}var u=function(t,e){a.muls(t,e,255)};function h(t,e,r){var n=t.gl,a=n.getParameter(n.MAX_TEXTURE_SIZE);if(e<0||e>a||r<0||r>a)throw new Error(\"gl-texture2d: Invalid texture size\");return t._shape=[e,r],t.bind(),n.texImage2D(n.TEXTURE_2D,0,t.format,e,r,0,t.format,t.type,null),t._mipLevels=[0],t}function f(t,e,r,n,a,i){this.gl=t,this.handle=e,this.format=a,this.type=i,this._shape=[r,n],this._mipLevels=[0],this._magFilter=t.NEAREST,this._minFilter=t.NEAREST,this._wrapS=t.CLAMP_TO_EDGE,this._wrapT=t.CLAMP_TO_EDGE,this._anisoSamples=1;var o=this,s=[this._wrapS,this._wrapT];Object.defineProperties(s,[{get:function(){return o._wrapS},set:function(t){return o.wrapS=t}},{get:function(){return o._wrapT},set:function(t){return o.wrapT=t}}]),this._wrapVector=s;var l=[this._shape[0],this._shape[1]];Object.defineProperties(l,[{get:function(){return o._shape[0]},set:function(t){return o.width=t}},{get:function(){return o._shape[1]},set:function(t){return o.height=t}}]),this._shapeVector=l}var p=f.prototype;function d(t,e){return 3===t.length?1===e[2]&&e[1]===t[0]*t[2]&&e[0]===t[2]:1===e[0]&&e[1]===t[0]}function g(t){var e=t.createTexture();return t.bindTexture(t.TEXTURE_2D,e),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MIN_FILTER,t.NEAREST),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MAG_FILTER,t.NEAREST),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_S,t.CLAMP_TO_EDGE),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_T,t.CLAMP_TO_EDGE),e}function v(t,e,r,n,a){var i=t.getParameter(t.MAX_TEXTURE_SIZE);if(e<0||e>i||r<0||r>i)throw new Error(\"gl-texture2d: Invalid texture shape\");if(a===t.FLOAT&&!t.getExtension(\"OES_texture_float\"))throw new Error(\"gl-texture2d: Floating point textures not supported on this platform\");var o=g(t);return t.texImage2D(t.TEXTURE_2D,0,n,e,r,0,n,a,null),new f(t,o,e,r,n,a)}Object.defineProperties(p,{minFilter:{get:function(){return this._minFilter},set:function(t){this.bind();var e=this.gl;if(this.type===e.FLOAT&&o.indexOf(t)>=0&&(e.getExtension(\"OES_texture_float_linear\")||(t=e.NEAREST)),s.indexOf(t)<0)throw new Error(\"gl-texture2d: Unknown filter mode \"+t);return e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MIN_FILTER,t),this._minFilter=t}},magFilter:{get:function(){return this._magFilter},set:function(t){this.bind();var e=this.gl;if(this.type===e.FLOAT&&o.indexOf(t)>=0&&(e.getExtension(\"OES_texture_float_linear\")||(t=e.NEAREST)),s.indexOf(t)<0)throw new Error(\"gl-texture2d: Unknown filter mode \"+t);return e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MAG_FILTER,t),this._magFilter=t}},mipSamples:{get:function(){return this._anisoSamples},set:function(t){var e=this._anisoSamples;if(this._anisoSamples=0|Math.max(t,1),e!==this._anisoSamples){var r=this.gl.getExtension(\"EXT_texture_filter_anisotropic\");r&&this.gl.texParameterf(this.gl.TEXTURE_2D,r.TEXTURE_MAX_ANISOTROPY_EXT,this._anisoSamples)}return this._anisoSamples}},wrapS:{get:function(){return this._wrapS},set:function(t){if(this.bind(),l.indexOf(t)<0)throw new Error(\"gl-texture2d: Unknown wrap mode \"+t);return this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_S,t),this._wrapS=t}},wrapT:{get:function(){return this._wrapT},set:function(t){if(this.bind(),l.indexOf(t)<0)throw new Error(\"gl-texture2d: Unknown wrap mode \"+t);return this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_T,t),this._wrapT=t}},wrap:{get:function(){return this._wrapVector},set:function(t){if(Array.isArray(t)||(t=[t,t]),2!==t.length)throw new Error(\"gl-texture2d: Must specify wrap mode for rows and columns\");for(var e=0;e<2;++e)if(l.indexOf(t[e])<0)throw new Error(\"gl-texture2d: Unknown wrap mode \"+t);this._wrapS=t[0],this._wrapT=t[1];var r=this.gl;return this.bind(),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_WRAP_S,this._wrapS),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_WRAP_T,this._wrapT),t}},shape:{get:function(){return this._shapeVector},set:function(t){if(Array.isArray(t)){if(2!==t.length)throw new Error(\"gl-texture2d: Invalid texture shape\")}else t=[0|t,0|t];return h(this,0|t[0],0|t[1]),[0|t[0],0|t[1]]}},width:{get:function(){return this._shape[0]},set:function(t){return h(this,t|=0,this._shape[1]),t}},height:{get:function(){return this._shape[1]},set:function(t){return t|=0,h(this,this._shape[0],t),t}}}),p.bind=function(t){var e=this.gl;return void 0!==t&&e.activeTexture(e.TEXTURE0+(0|t)),e.bindTexture(e.TEXTURE_2D,this.handle),void 0!==t?0|t:e.getParameter(e.ACTIVE_TEXTURE)-e.TEXTURE0},p.dispose=function(){this.gl.deleteTexture(this.handle)},p.generateMipmap=function(){this.bind(),this.gl.generateMipmap(this.gl.TEXTURE_2D);for(var t=Math.min(this._shape[0],this._shape[1]),e=0;t>0;++e,t>>>=1)this._mipLevels.indexOf(e)<0&&this._mipLevels.push(e)},p.setPixels=function(t,e,r,o){var s=this.gl;this.bind(),Array.isArray(e)?(o=r,r=0|e[1],e=0|e[0]):(e=e||0,r=r||0),o=o||0;var l=c(t)?t:t.raw;if(l){this._mipLevels.indexOf(o)<0?(s.texImage2D(s.TEXTURE_2D,0,this.format,this.format,this.type,l),this._mipLevels.push(o)):s.texSubImage2D(s.TEXTURE_2D,o,e,r,this.format,this.type,l)}else{if(!(t.shape&&t.stride&&t.data))throw new Error(\"gl-texture2d: Unsupported data type\");if(t.shape.length<2||e+t.shape[1]>this._shape[1]>>>o||r+t.shape[0]>this._shape[0]>>>o||e<0||r<0)throw new Error(\"gl-texture2d: Texture dimensions are out of bounds\");!function(t,e,r,o,s,l,c,h){var f=h.dtype,p=h.shape.slice();if(p.length<2||p.length>3)throw new Error(\"gl-texture2d: Invalid ndarray, must be 2d or 3d\");var g=0,v=0,m=d(p,h.stride.slice());\"float32\"===f?g=t.FLOAT:\"float64\"===f?(g=t.FLOAT,m=!1,f=\"float32\"):\"uint8\"===f?g=t.UNSIGNED_BYTE:(g=t.UNSIGNED_BYTE,m=!1,f=\"uint8\");if(2===p.length)v=t.LUMINANCE,p=[p[0],p[1],1],h=n(h.data,p,[h.stride[0],h.stride[1],1],h.offset);else{if(3!==p.length)throw new Error(\"gl-texture2d: Invalid shape for texture\");if(1===p[2])v=t.ALPHA;else if(2===p[2])v=t.LUMINANCE_ALPHA;else if(3===p[2])v=t.RGB;else{if(4!==p[2])throw new Error(\"gl-texture2d: Invalid shape for pixel coords\");v=t.RGBA}p[2]}v!==t.LUMINANCE&&v!==t.ALPHA||s!==t.LUMINANCE&&s!==t.ALPHA||(v=s);if(v!==s)throw new Error(\"gl-texture2d: Incompatible texture format for setPixels\");var y=h.size,x=c.indexOf(o)<0;x&&c.push(o);if(g===l&&m)0===h.offset&&h.data.length===y?x?t.texImage2D(t.TEXTURE_2D,o,s,p[0],p[1],0,s,l,h.data):t.texSubImage2D(t.TEXTURE_2D,o,e,r,p[0],p[1],s,l,h.data):x?t.texImage2D(t.TEXTURE_2D,o,s,p[0],p[1],0,s,l,h.data.subarray(h.offset,h.offset+y)):t.texSubImage2D(t.TEXTURE_2D,o,e,r,p[0],p[1],s,l,h.data.subarray(h.offset,h.offset+y));else{var b;b=l===t.FLOAT?i.mallocFloat32(y):i.mallocUint8(y);var _=n(b,p,[p[2],p[2]*p[0],1]);g===t.FLOAT&&l===t.UNSIGNED_BYTE?u(_,h):a.assign(_,h),x?t.texImage2D(t.TEXTURE_2D,o,s,p[0],p[1],0,s,l,b.subarray(0,y)):t.texSubImage2D(t.TEXTURE_2D,o,e,r,p[0],p[1],s,l,b.subarray(0,y)),l===t.FLOAT?i.freeFloat32(b):i.freeUint8(b)}}(s,e,r,o,this.format,this.type,this._mipLevels,t)}}},{ndarray:451,\"ndarray-ops\":445,\"typedarray-pool\":546}],324:[function(t,e,r){(function(r){\"use strict\";var n=t(\"pick-by-alias\");function a(t){if(t.container)if(t.container==document.body)document.body.style.width||(t.canvas.width=t.width||t.pixelRatio*r.innerWidth),document.body.style.height||(t.canvas.height=t.height||t.pixelRatio*r.innerHeight);else{var e=t.container.getBoundingClientRect();t.canvas.width=t.width||e.right-e.left,t.canvas.height=t.height||e.bottom-e.top}}function i(t){return\"function\"==typeof t.getContext&&\"width\"in t&&\"height\"in t}function o(){var t=document.createElement(\"canvas\");return t.style.position=\"absolute\",t.style.top=0,t.style.left=0,t}e.exports=function(t){var e;if(t?\"string\"==typeof t&&(t={container:t}):t={},i(t)?t={container:t}:t=\"string\"==typeof(e=t).nodeName&&\"function\"==typeof e.appendChild&&\"function\"==typeof e.getBoundingClientRect?{container:t}:function(t){return\"function\"==typeof t.drawArrays||\"function\"==typeof t.drawElements}(t)?{gl:t}:n(t,{container:\"container target element el canvas holder parent parentNode wrapper use ref root node\",gl:\"gl context webgl glContext\",attrs:\"attributes attrs contextAttributes\",pixelRatio:\"pixelRatio pxRatio px ratio pxratio pixelratio\",width:\"w width\",height:\"h height\"},!0),t.pixelRatio||(t.pixelRatio=r.pixelRatio||1),t.gl)return t.gl;if(t.canvas&&(t.container=t.canvas.parentNode),t.container){if(\"string\"==typeof t.container){var s=document.querySelector(t.container);if(!s)throw Error(\"Element \"+t.container+\" is not found\");t.container=s}i(t.container)?(t.canvas=t.container,t.container=t.canvas.parentNode):t.canvas||(t.canvas=o(),t.container.appendChild(t.canvas),a(t))}else if(!t.canvas){if(\"undefined\"==typeof document)throw Error(\"Not DOM environment. Use headless-gl.\");t.container=document.body||document.documentElement,t.canvas=o(),t.container.appendChild(t.canvas),a(t)}if(!t.gl)try{t.gl=t.canvas.getContext(\"webgl\",t.attrs)}catch(e){try{t.gl=t.canvas.getContext(\"experimental-webgl\",t.attrs)}catch(e){t.gl=t.canvas.getContext(\"webgl-experimental\",t.attrs)}}return t.gl}}).call(this,\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{\"pick-by-alias\":466}],325:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){e?e.bind():t.bindBuffer(t.ELEMENT_ARRAY_BUFFER,null);var n=0|t.getParameter(t.MAX_VERTEX_ATTRIBS);if(r){if(r.length>n)throw new Error(\"gl-vao: Too many vertex attributes\");for(var a=0;a<r.length;++a){var i=r[a];if(i.buffer){var o=i.buffer,s=i.size||4,l=i.type||t.FLOAT,c=!!i.normalized,u=i.stride||0,h=i.offset||0;o.bind(),t.enableVertexAttribArray(a),t.vertexAttribPointer(a,s,l,c,u,h)}else{if(\"number\"==typeof i)t.vertexAttrib1f(a,i);else if(1===i.length)t.vertexAttrib1f(a,i[0]);else if(2===i.length)t.vertexAttrib2f(a,i[0],i[1]);else if(3===i.length)t.vertexAttrib3f(a,i[0],i[1],i[2]);else{if(4!==i.length)throw new Error(\"gl-vao: Invalid vertex attribute\");t.vertexAttrib4f(a,i[0],i[1],i[2],i[3])}t.disableVertexAttribArray(a)}}for(;a<n;++a)t.disableVertexAttribArray(a)}else for(t.bindBuffer(t.ARRAY_BUFFER,null),a=0;a<n;++a)t.disableVertexAttribArray(a)}},{}],326:[function(t,e,r){\"use strict\";var n=t(\"./do-bind.js\");function a(t){this.gl=t,this._elements=null,this._attributes=null,this._elementsType=t.UNSIGNED_SHORT}a.prototype.bind=function(){n(this.gl,this._elements,this._attributes)},a.prototype.update=function(t,e,r){this._elements=e,this._attributes=t,this._elementsType=r||this.gl.UNSIGNED_SHORT},a.prototype.dispose=function(){},a.prototype.unbind=function(){},a.prototype.draw=function(t,e,r){r=r||0;var n=this.gl;this._elements?n.drawElements(t,e,this._elementsType,r):n.drawArrays(t,r,e)},e.exports=function(t){return new a(t)}},{\"./do-bind.js\":325}],327:[function(t,e,r){\"use strict\";var n=t(\"./do-bind.js\");function a(t,e,r,n,a,i){this.location=t,this.dimension=e,this.a=r,this.b=n,this.c=a,this.d=i}function i(t,e,r){this.gl=t,this._ext=e,this.handle=r,this._attribs=[],this._useElements=!1,this._elementsType=t.UNSIGNED_SHORT}a.prototype.bind=function(t){switch(this.dimension){case 1:t.vertexAttrib1f(this.location,this.a);break;case 2:t.vertexAttrib2f(this.location,this.a,this.b);break;case 3:t.vertexAttrib3f(this.location,this.a,this.b,this.c);break;case 4:t.vertexAttrib4f(this.location,this.a,this.b,this.c,this.d)}},i.prototype.bind=function(){this._ext.bindVertexArrayOES(this.handle);for(var t=0;t<this._attribs.length;++t)this._attribs[t].bind(this.gl)},i.prototype.unbind=function(){this._ext.bindVertexArrayOES(null)},i.prototype.dispose=function(){this._ext.deleteVertexArrayOES(this.handle)},i.prototype.update=function(t,e,r){if(this.bind(),n(this.gl,e,t),this.unbind(),this._attribs.length=0,t)for(var i=0;i<t.length;++i){var o=t[i];\"number\"==typeof o?this._attribs.push(new a(i,1,o)):Array.isArray(o)&&this._attribs.push(new a(i,o.length,o[0],o[1],o[2],o[3]))}this._useElements=!!e,this._elementsType=r||this.gl.UNSIGNED_SHORT},i.prototype.draw=function(t,e,r){r=r||0;var n=this.gl;this._useElements?n.drawElements(t,e,this._elementsType,r):n.drawArrays(t,r,e)},e.exports=function(t,e){return new i(t,e,e.createVertexArrayOES())}},{\"./do-bind.js\":325}],328:[function(t,e,r){\"use strict\";var n=t(\"./lib/vao-native.js\"),a=t(\"./lib/vao-emulated.js\");function i(t){this.bindVertexArrayOES=t.bindVertexArray.bind(t),this.createVertexArrayOES=t.createVertexArray.bind(t),this.deleteVertexArrayOES=t.deleteVertexArray.bind(t)}e.exports=function(t,e,r,o){var s,l=t.createVertexArray?new i(t):t.getExtension(\"OES_vertex_array_object\");return(s=l?n(t,l):a(t)).update(e,r,o),s}},{\"./lib/vao-emulated.js\":326,\"./lib/vao-native.js\":327}],329:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]+r[0],t[1]=e[1]+r[1],t[2]=e[2]+r[2],t}},{}],330:[function(t,e,r){e.exports=function(t,e){var r=n(t[0],t[1],t[2]),o=n(e[0],e[1],e[2]);a(r,r),a(o,o);var s=i(r,o);return s>1?0:Math.acos(s)};var n=t(\"./fromValues\"),a=t(\"./normalize\"),i=t(\"./dot\")},{\"./dot\":340,\"./fromValues\":346,\"./normalize\":357}],331:[function(t,e,r){e.exports=function(t,e){return t[0]=Math.ceil(e[0]),t[1]=Math.ceil(e[1]),t[2]=Math.ceil(e[2]),t}},{}],332:[function(t,e,r){e.exports=function(t){var e=new Float32Array(3);return e[0]=t[0],e[1]=t[1],e[2]=t[2],e}},{}],333:[function(t,e,r){e.exports=function(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t}},{}],334:[function(t,e,r){e.exports=function(){var t=new Float32Array(3);return t[0]=0,t[1]=0,t[2]=0,t}},{}],335:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],a=e[1],i=e[2],o=r[0],s=r[1],l=r[2];return t[0]=a*l-i*s,t[1]=i*o-n*l,t[2]=n*s-a*o,t}},{}],336:[function(t,e,r){e.exports=t(\"./distance\")},{\"./distance\":337}],337:[function(t,e,r){e.exports=function(t,e){var r=e[0]-t[0],n=e[1]-t[1],a=e[2]-t[2];return Math.sqrt(r*r+n*n+a*a)}},{}],338:[function(t,e,r){e.exports=t(\"./divide\")},{\"./divide\":339}],339:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]/r[0],t[1]=e[1]/r[1],t[2]=e[2]/r[2],t}},{}],340:[function(t,e,r){e.exports=function(t,e){return t[0]*e[0]+t[1]*e[1]+t[2]*e[2]}},{}],341:[function(t,e,r){e.exports=1e-6},{}],342:[function(t,e,r){e.exports=function(t,e){var r=t[0],a=t[1],i=t[2],o=e[0],s=e[1],l=e[2];return Math.abs(r-o)<=n*Math.max(1,Math.abs(r),Math.abs(o))&&Math.abs(a-s)<=n*Math.max(1,Math.abs(a),Math.abs(s))&&Math.abs(i-l)<=n*Math.max(1,Math.abs(i),Math.abs(l))};var n=t(\"./epsilon\")},{\"./epsilon\":341}],343:[function(t,e,r){e.exports=function(t,e){return t[0]===e[0]&&t[1]===e[1]&&t[2]===e[2]}},{}],344:[function(t,e,r){e.exports=function(t,e){return t[0]=Math.floor(e[0]),t[1]=Math.floor(e[1]),t[2]=Math.floor(e[2]),t}},{}],345:[function(t,e,r){e.exports=function(t,e,r,a,i,o){var s,l;e||(e=3);r||(r=0);l=a?Math.min(a*e+r,t.length):t.length;for(s=r;s<l;s+=e)n[0]=t[s],n[1]=t[s+1],n[2]=t[s+2],i(n,n,o),t[s]=n[0],t[s+1]=n[1],t[s+2]=n[2];return t};var n=t(\"./create\")()},{\"./create\":334}],346:[function(t,e,r){e.exports=function(t,e,r){var n=new Float32Array(3);return n[0]=t,n[1]=e,n[2]=r,n}},{}],347:[function(t,e,r){e.exports={EPSILON:t(\"./epsilon\"),create:t(\"./create\"),clone:t(\"./clone\"),angle:t(\"./angle\"),fromValues:t(\"./fromValues\"),copy:t(\"./copy\"),set:t(\"./set\"),equals:t(\"./equals\"),exactEquals:t(\"./exactEquals\"),add:t(\"./add\"),subtract:t(\"./subtract\"),sub:t(\"./sub\"),multiply:t(\"./multiply\"),mul:t(\"./mul\"),divide:t(\"./divide\"),div:t(\"./div\"),min:t(\"./min\"),max:t(\"./max\"),floor:t(\"./floor\"),ceil:t(\"./ceil\"),round:t(\"./round\"),scale:t(\"./scale\"),scaleAndAdd:t(\"./scaleAndAdd\"),distance:t(\"./distance\"),dist:t(\"./dist\"),squaredDistance:t(\"./squaredDistance\"),sqrDist:t(\"./sqrDist\"),length:t(\"./length\"),len:t(\"./len\"),squaredLength:t(\"./squaredLength\"),sqrLen:t(\"./sqrLen\"),negate:t(\"./negate\"),inverse:t(\"./inverse\"),normalize:t(\"./normalize\"),dot:t(\"./dot\"),cross:t(\"./cross\"),lerp:t(\"./lerp\"),random:t(\"./random\"),transformMat4:t(\"./transformMat4\"),transformMat3:t(\"./transformMat3\"),transformQuat:t(\"./transformQuat\"),rotateX:t(\"./rotateX\"),rotateY:t(\"./rotateY\"),rotateZ:t(\"./rotateZ\"),forEach:t(\"./forEach\")}},{\"./add\":329,\"./angle\":330,\"./ceil\":331,\"./clone\":332,\"./copy\":333,\"./create\":334,\"./cross\":335,\"./dist\":336,\"./distance\":337,\"./div\":338,\"./divide\":339,\"./dot\":340,\"./epsilon\":341,\"./equals\":342,\"./exactEquals\":343,\"./floor\":344,\"./forEach\":345,\"./fromValues\":346,\"./inverse\":348,\"./len\":349,\"./length\":350,\"./lerp\":351,\"./max\":352,\"./min\":353,\"./mul\":354,\"./multiply\":355,\"./negate\":356,\"./normalize\":357,\"./random\":358,\"./rotateX\":359,\"./rotateY\":360,\"./rotateZ\":361,\"./round\":362,\"./scale\":363,\"./scaleAndAdd\":364,\"./set\":365,\"./sqrDist\":366,\"./sqrLen\":367,\"./squaredDistance\":368,\"./squaredLength\":369,\"./sub\":370,\"./subtract\":371,\"./transformMat3\":372,\"./transformMat4\":373,\"./transformQuat\":374}],348:[function(t,e,r){e.exports=function(t,e){return t[0]=1/e[0],t[1]=1/e[1],t[2]=1/e[2],t}},{}],349:[function(t,e,r){e.exports=t(\"./length\")},{\"./length\":350}],350:[function(t,e,r){e.exports=function(t){var e=t[0],r=t[1],n=t[2];return Math.sqrt(e*e+r*r+n*n)}},{}],351:[function(t,e,r){e.exports=function(t,e,r,n){var a=e[0],i=e[1],o=e[2];return t[0]=a+n*(r[0]-a),t[1]=i+n*(r[1]-i),t[2]=o+n*(r[2]-o),t}},{}],352:[function(t,e,r){e.exports=function(t,e,r){return t[0]=Math.max(e[0],r[0]),t[1]=Math.max(e[1],r[1]),t[2]=Math.max(e[2],r[2]),t}},{}],353:[function(t,e,r){e.exports=function(t,e,r){return t[0]=Math.min(e[0],r[0]),t[1]=Math.min(e[1],r[1]),t[2]=Math.min(e[2],r[2]),t}},{}],354:[function(t,e,r){e.exports=t(\"./multiply\")},{\"./multiply\":355}],355:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]*r[0],t[1]=e[1]*r[1],t[2]=e[2]*r[2],t}},{}],356:[function(t,e,r){e.exports=function(t,e){return t[0]=-e[0],t[1]=-e[1],t[2]=-e[2],t}},{}],357:[function(t,e,r){e.exports=function(t,e){var r=e[0],n=e[1],a=e[2],i=r*r+n*n+a*a;i>0&&(i=1/Math.sqrt(i),t[0]=e[0]*i,t[1]=e[1]*i,t[2]=e[2]*i);return t}},{}],358:[function(t,e,r){e.exports=function(t,e){e=e||1;var r=2*Math.random()*Math.PI,n=2*Math.random()-1,a=Math.sqrt(1-n*n)*e;return t[0]=Math.cos(r)*a,t[1]=Math.sin(r)*a,t[2]=n*e,t}},{}],359:[function(t,e,r){e.exports=function(t,e,r,n){var a=r[1],i=r[2],o=e[1]-a,s=e[2]-i,l=Math.sin(n),c=Math.cos(n);return t[0]=e[0],t[1]=a+o*c-s*l,t[2]=i+o*l+s*c,t}},{}],360:[function(t,e,r){e.exports=function(t,e,r,n){var a=r[0],i=r[2],o=e[0]-a,s=e[2]-i,l=Math.sin(n),c=Math.cos(n);return t[0]=a+s*l+o*c,t[1]=e[1],t[2]=i+s*c-o*l,t}},{}],361:[function(t,e,r){e.exports=function(t,e,r,n){var a=r[0],i=r[1],o=e[0]-a,s=e[1]-i,l=Math.sin(n),c=Math.cos(n);return t[0]=a+o*c-s*l,t[1]=i+o*l+s*c,t[2]=e[2],t}},{}],362:[function(t,e,r){e.exports=function(t,e){return t[0]=Math.round(e[0]),t[1]=Math.round(e[1]),t[2]=Math.round(e[2]),t}},{}],363:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]*r,t[1]=e[1]*r,t[2]=e[2]*r,t}},{}],364:[function(t,e,r){e.exports=function(t,e,r,n){return t[0]=e[0]+r[0]*n,t[1]=e[1]+r[1]*n,t[2]=e[2]+r[2]*n,t}},{}],365:[function(t,e,r){e.exports=function(t,e,r,n){return t[0]=e,t[1]=r,t[2]=n,t}},{}],366:[function(t,e,r){e.exports=t(\"./squaredDistance\")},{\"./squaredDistance\":368}],367:[function(t,e,r){e.exports=t(\"./squaredLength\")},{\"./squaredLength\":369}],368:[function(t,e,r){e.exports=function(t,e){var r=e[0]-t[0],n=e[1]-t[1],a=e[2]-t[2];return r*r+n*n+a*a}},{}],369:[function(t,e,r){e.exports=function(t){var e=t[0],r=t[1],n=t[2];return e*e+r*r+n*n}},{}],370:[function(t,e,r){e.exports=t(\"./subtract\")},{\"./subtract\":371}],371:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]-r[0],t[1]=e[1]-r[1],t[2]=e[2]-r[2],t}},{}],372:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],a=e[1],i=e[2];return t[0]=n*r[0]+a*r[3]+i*r[6],t[1]=n*r[1]+a*r[4]+i*r[7],t[2]=n*r[2]+a*r[5]+i*r[8],t}},{}],373:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],a=e[1],i=e[2],o=r[3]*n+r[7]*a+r[11]*i+r[15];return o=o||1,t[0]=(r[0]*n+r[4]*a+r[8]*i+r[12])/o,t[1]=(r[1]*n+r[5]*a+r[9]*i+r[13])/o,t[2]=(r[2]*n+r[6]*a+r[10]*i+r[14])/o,t}},{}],374:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],a=e[1],i=e[2],o=r[0],s=r[1],l=r[2],c=r[3],u=c*n+s*i-l*a,h=c*a+l*n-o*i,f=c*i+o*a-s*n,p=-o*n-s*a-l*i;return t[0]=u*c+p*-o+h*-l-f*-s,t[1]=h*c+p*-s+f*-o-u*-l,t[2]=f*c+p*-l+u*-s-h*-o,t}},{}],375:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]+r[0],t[1]=e[1]+r[1],t[2]=e[2]+r[2],t[3]=e[3]+r[3],t}},{}],376:[function(t,e,r){e.exports=function(t){var e=new Float32Array(4);return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e}},{}],377:[function(t,e,r){e.exports=function(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t}},{}],378:[function(t,e,r){e.exports=function(){var t=new Float32Array(4);return t[0]=0,t[1]=0,t[2]=0,t[3]=0,t}},{}],379:[function(t,e,r){e.exports=function(t,e){var r=e[0]-t[0],n=e[1]-t[1],a=e[2]-t[2],i=e[3]-t[3];return Math.sqrt(r*r+n*n+a*a+i*i)}},{}],380:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]/r[0],t[1]=e[1]/r[1],t[2]=e[2]/r[2],t[3]=e[3]/r[3],t}},{}],381:[function(t,e,r){e.exports=function(t,e){return t[0]*e[0]+t[1]*e[1]+t[2]*e[2]+t[3]*e[3]}},{}],382:[function(t,e,r){e.exports=function(t,e,r,n){var a=new Float32Array(4);return a[0]=t,a[1]=e,a[2]=r,a[3]=n,a}},{}],383:[function(t,e,r){e.exports={create:t(\"./create\"),clone:t(\"./clone\"),fromValues:t(\"./fromValues\"),copy:t(\"./copy\"),set:t(\"./set\"),add:t(\"./add\"),subtract:t(\"./subtract\"),multiply:t(\"./multiply\"),divide:t(\"./divide\"),min:t(\"./min\"),max:t(\"./max\"),scale:t(\"./scale\"),scaleAndAdd:t(\"./scaleAndAdd\"),distance:t(\"./distance\"),squaredDistance:t(\"./squaredDistance\"),length:t(\"./length\"),squaredLength:t(\"./squaredLength\"),negate:t(\"./negate\"),inverse:t(\"./inverse\"),normalize:t(\"./normalize\"),dot:t(\"./dot\"),lerp:t(\"./lerp\"),random:t(\"./random\"),transformMat4:t(\"./transformMat4\"),transformQuat:t(\"./transformQuat\")}},{\"./add\":375,\"./clone\":376,\"./copy\":377,\"./create\":378,\"./distance\":379,\"./divide\":380,\"./dot\":381,\"./fromValues\":382,\"./inverse\":384,\"./length\":385,\"./lerp\":386,\"./max\":387,\"./min\":388,\"./multiply\":389,\"./negate\":390,\"./normalize\":391,\"./random\":392,\"./scale\":393,\"./scaleAndAdd\":394,\"./set\":395,\"./squaredDistance\":396,\"./squaredLength\":397,\"./subtract\":398,\"./transformMat4\":399,\"./transformQuat\":400}],384:[function(t,e,r){e.exports=function(t,e){return t[0]=1/e[0],t[1]=1/e[1],t[2]=1/e[2],t[3]=1/e[3],t}},{}],385:[function(t,e,r){e.exports=function(t){var e=t[0],r=t[1],n=t[2],a=t[3];return Math.sqrt(e*e+r*r+n*n+a*a)}},{}],386:[function(t,e,r){e.exports=function(t,e,r,n){var a=e[0],i=e[1],o=e[2],s=e[3];return t[0]=a+n*(r[0]-a),t[1]=i+n*(r[1]-i),t[2]=o+n*(r[2]-o),t[3]=s+n*(r[3]-s),t}},{}],387:[function(t,e,r){e.exports=function(t,e,r){return t[0]=Math.max(e[0],r[0]),t[1]=Math.max(e[1],r[1]),t[2]=Math.max(e[2],r[2]),t[3]=Math.max(e[3],r[3]),t}},{}],388:[function(t,e,r){e.exports=function(t,e,r){return t[0]=Math.min(e[0],r[0]),t[1]=Math.min(e[1],r[1]),t[2]=Math.min(e[2],r[2]),t[3]=Math.min(e[3],r[3]),t}},{}],389:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]*r[0],t[1]=e[1]*r[1],t[2]=e[2]*r[2],t[3]=e[3]*r[3],t}},{}],390:[function(t,e,r){e.exports=function(t,e){return t[0]=-e[0],t[1]=-e[1],t[2]=-e[2],t[3]=-e[3],t}},{}],391:[function(t,e,r){e.exports=function(t,e){var r=e[0],n=e[1],a=e[2],i=e[3],o=r*r+n*n+a*a+i*i;o>0&&(o=1/Math.sqrt(o),t[0]=r*o,t[1]=n*o,t[2]=a*o,t[3]=i*o);return t}},{}],392:[function(t,e,r){var n=t(\"./normalize\"),a=t(\"./scale\");e.exports=function(t,e){return e=e||1,t[0]=Math.random(),t[1]=Math.random(),t[2]=Math.random(),t[3]=Math.random(),n(t,t),a(t,t,e),t}},{\"./normalize\":391,\"./scale\":393}],393:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]*r,t[1]=e[1]*r,t[2]=e[2]*r,t[3]=e[3]*r,t}},{}],394:[function(t,e,r){e.exports=function(t,e,r,n){return t[0]=e[0]+r[0]*n,t[1]=e[1]+r[1]*n,t[2]=e[2]+r[2]*n,t[3]=e[3]+r[3]*n,t}},{}],395:[function(t,e,r){e.exports=function(t,e,r,n,a){return t[0]=e,t[1]=r,t[2]=n,t[3]=a,t}},{}],396:[function(t,e,r){e.exports=function(t,e){var r=e[0]-t[0],n=e[1]-t[1],a=e[2]-t[2],i=e[3]-t[3];return r*r+n*n+a*a+i*i}},{}],397:[function(t,e,r){e.exports=function(t){var e=t[0],r=t[1],n=t[2],a=t[3];return e*e+r*r+n*n+a*a}},{}],398:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]-r[0],t[1]=e[1]-r[1],t[2]=e[2]-r[2],t[3]=e[3]-r[3],t}},{}],399:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],a=e[1],i=e[2],o=e[3];return t[0]=r[0]*n+r[4]*a+r[8]*i+r[12]*o,t[1]=r[1]*n+r[5]*a+r[9]*i+r[13]*o,t[2]=r[2]*n+r[6]*a+r[10]*i+r[14]*o,t[3]=r[3]*n+r[7]*a+r[11]*i+r[15]*o,t}},{}],400:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],a=e[1],i=e[2],o=r[0],s=r[1],l=r[2],c=r[3],u=c*n+s*i-l*a,h=c*a+l*n-o*i,f=c*i+o*a-s*n,p=-o*n-s*a-l*i;return t[0]=u*c+p*-o+h*-l-f*-s,t[1]=h*c+p*-s+f*-o-u*-l,t[2]=f*c+p*-l+u*-s-h*-o,t[3]=e[3],t}},{}],401:[function(t,e,r){e.exports=function(t,e,r,i){return n[0]=i,n[1]=r,n[2]=e,n[3]=t,a[0]};var n=new Uint8Array(4),a=new Float32Array(n.buffer)},{}],402:[function(t,e,r){var n=t(\"glsl-tokenizer\"),a=t(\"atob-lite\");e.exports=function(t){for(var e=Array.isArray(t)?t:n(t),r=0;r<e.length;r++){var i=e[r];if(\"preprocessor\"===i.type){var o=i.data.match(/\\#define\\s+SHADER_NAME(_B64)?\\s+(.+)$/);if(o&&o[2]){var s=o[1],l=o[2];return(s?a(l):l).trim()}}}}},{\"atob-lite\":73,\"glsl-tokenizer\":409}],403:[function(t,e,r){e.exports=function(t){var e,r,k,T=0,A=0,M=l,S=[],E=[],C=1,L=0,P=0,O=!1,I=!1,z=\"\",D=i,R=n;\"300 es\"===(t=t||{}).version&&(D=s,R=o);return function(t){return E=[],null!==t?function(t){var r;T=0,k=(z+=t).length;for(;e=z[T],T<k;){switch(r=T,M){case u:T=V();break;case h:case f:T=j();break;case p:T=U();break;case d:T=G();break;case _:T=H();break;case g:T=Y();break;case c:T=W();break;case x:T=N();break;case l:T=B()}if(r!==T)switch(z[r]){case\"\\n\":L=0,++C;break;default:++L}}return A+=T,z=z.slice(T),E}(t.replace?t.replace(/\\r\\n/g,\"\\n\"):t):function(t){S.length&&F(S.join(\"\"));return M=b,F(\"(eof)\"),E}()};function F(t){t.length&&E.push({type:w[M],data:t,position:P,line:C,column:L})}function B(){return S=S.length?[]:S,\"/\"===r&&\"*\"===e?(P=A+T-1,M=u,r=e,T+1):\"/\"===r&&\"/\"===e?(P=A+T-1,M=h,r=e,T+1):\"#\"===e?(M=f,P=A+T,T):/\\s/.test(e)?(M=x,P=A+T,T):(O=/\\d/.test(e),I=/[^\\w_]/.test(e),P=A+T,M=O?d:I?p:c,T)}function N(){return/[^\\s]/g.test(e)?(F(S.join(\"\")),M=l,T):(S.push(e),r=e,T+1)}function j(){return\"\\r\"!==e&&\"\\n\"!==e||\"\\\\\"===r?(S.push(e),r=e,T+1):(F(S.join(\"\")),M=l,T)}function V(){return\"/\"===e&&\"*\"===r?(S.push(e),F(S.join(\"\")),M=l,T+1):(S.push(e),r=e,T+1)}function U(){if(\".\"===r&&/\\d/.test(e))return M=g,T;if(\"/\"===r&&\"*\"===e)return M=u,T;if(\"/\"===r&&\"/\"===e)return M=h,T;if(\".\"===e&&S.length){for(;q(S););return M=g,T}if(\";\"===e||\")\"===e||\"(\"===e){if(S.length)for(;q(S););return F(e),M=l,T+1}var t=2===S.length&&\"=\"!==e;if(/[\\w_\\d\\s]/.test(e)||t){for(;q(S););return M=l,T}return S.push(e),r=e,T+1}function q(t){for(var e,r,n=0;;){if(e=a.indexOf(t.slice(0,t.length+n).join(\"\")),r=a[e],-1===e){if(n--+t.length>0)continue;r=t.slice(0,1).join(\"\")}return F(r),P+=r.length,(S=S.slice(r.length)).length}}function H(){return/[^a-fA-F0-9]/.test(e)?(F(S.join(\"\")),M=l,T):(S.push(e),r=e,T+1)}function G(){return\".\"===e?(S.push(e),M=g,r=e,T+1):/[eE]/.test(e)?(S.push(e),M=g,r=e,T+1):\"x\"===e&&1===S.length&&\"0\"===S[0]?(M=_,S.push(e),r=e,T+1):/[^\\d]/.test(e)?(F(S.join(\"\")),M=l,T):(S.push(e),r=e,T+1)}function Y(){return\"f\"===e&&(S.push(e),r=e,T+=1),/[eE]/.test(e)?(S.push(e),r=e,T+1):\"-\"===e&&/[eE]/.test(r)?(S.push(e),r=e,T+1):/[^\\d]/.test(e)?(F(S.join(\"\")),M=l,T):(S.push(e),r=e,T+1)}function W(){if(/[^\\d\\w_]/.test(e)){var t=S.join(\"\");return M=R.indexOf(t)>-1?y:D.indexOf(t)>-1?m:v,F(S.join(\"\")),M=l,T}return S.push(e),r=e,T+1}};var n=t(\"./lib/literals\"),a=t(\"./lib/operators\"),i=t(\"./lib/builtins\"),o=t(\"./lib/literals-300es\"),s=t(\"./lib/builtins-300es\"),l=999,c=9999,u=0,h=1,f=2,p=3,d=4,g=5,v=6,m=7,y=8,x=9,b=10,_=11,w=[\"block-comment\",\"line-comment\",\"preprocessor\",\"operator\",\"integer\",\"float\",\"ident\",\"builtin\",\"keyword\",\"whitespace\",\"eof\",\"integer\"]},{\"./lib/builtins\":405,\"./lib/builtins-300es\":404,\"./lib/literals\":407,\"./lib/literals-300es\":406,\"./lib/operators\":408}],404:[function(t,e,r){var n=t(\"./builtins\");n=n.slice().filter(function(t){return!/^(gl\\_|texture)/.test(t)}),e.exports=n.concat([\"gl_VertexID\",\"gl_InstanceID\",\"gl_Position\",\"gl_PointSize\",\"gl_FragCoord\",\"gl_FrontFacing\",\"gl_FragDepth\",\"gl_PointCoord\",\"gl_MaxVertexAttribs\",\"gl_MaxVertexUniformVectors\",\"gl_MaxVertexOutputVectors\",\"gl_MaxFragmentInputVectors\",\"gl_MaxVertexTextureImageUnits\",\"gl_MaxCombinedTextureImageUnits\",\"gl_MaxTextureImageUnits\",\"gl_MaxFragmentUniformVectors\",\"gl_MaxDrawBuffers\",\"gl_MinProgramTexelOffset\",\"gl_MaxProgramTexelOffset\",\"gl_DepthRangeParameters\",\"gl_DepthRange\",\"trunc\",\"round\",\"roundEven\",\"isnan\",\"isinf\",\"floatBitsToInt\",\"floatBitsToUint\",\"intBitsToFloat\",\"uintBitsToFloat\",\"packSnorm2x16\",\"unpackSnorm2x16\",\"packUnorm2x16\",\"unpackUnorm2x16\",\"packHalf2x16\",\"unpackHalf2x16\",\"outerProduct\",\"transpose\",\"determinant\",\"inverse\",\"texture\",\"textureSize\",\"textureProj\",\"textureLod\",\"textureOffset\",\"texelFetch\",\"texelFetchOffset\",\"textureProjOffset\",\"textureLodOffset\",\"textureProjLod\",\"textureProjLodOffset\",\"textureGrad\",\"textureGradOffset\",\"textureProjGrad\",\"textureProjGradOffset\"])},{\"./builtins\":405}],405:[function(t,e,r){e.exports=[\"abs\",\"acos\",\"all\",\"any\",\"asin\",\"atan\",\"ceil\",\"clamp\",\"cos\",\"cross\",\"dFdx\",\"dFdy\",\"degrees\",\"distance\",\"dot\",\"equal\",\"exp\",\"exp2\",\"faceforward\",\"floor\",\"fract\",\"gl_BackColor\",\"gl_BackLightModelProduct\",\"gl_BackLightProduct\",\"gl_BackMaterial\",\"gl_BackSecondaryColor\",\"gl_ClipPlane\",\"gl_ClipVertex\",\"gl_Color\",\"gl_DepthRange\",\"gl_DepthRangeParameters\",\"gl_EyePlaneQ\",\"gl_EyePlaneR\",\"gl_EyePlaneS\",\"gl_EyePlaneT\",\"gl_Fog\",\"gl_FogCoord\",\"gl_FogFragCoord\",\"gl_FogParameters\",\"gl_FragColor\",\"gl_FragCoord\",\"gl_FragData\",\"gl_FragDepth\",\"gl_FragDepthEXT\",\"gl_FrontColor\",\"gl_FrontFacing\",\"gl_FrontLightModelProduct\",\"gl_FrontLightProduct\",\"gl_FrontMaterial\",\"gl_FrontSecondaryColor\",\"gl_LightModel\",\"gl_LightModelParameters\",\"gl_LightModelProducts\",\"gl_LightProducts\",\"gl_LightSource\",\"gl_LightSourceParameters\",\"gl_MaterialParameters\",\"gl_MaxClipPlanes\",\"gl_MaxCombinedTextureImageUnits\",\"gl_MaxDrawBuffers\",\"gl_MaxFragmentUniformComponents\",\"gl_MaxLights\",\"gl_MaxTextureCoords\",\"gl_MaxTextureImageUnits\",\"gl_MaxTextureUnits\",\"gl_MaxVaryingFloats\",\"gl_MaxVertexAttribs\",\"gl_MaxVertexTextureImageUnits\",\"gl_MaxVertexUniformComponents\",\"gl_ModelViewMatrix\",\"gl_ModelViewMatrixInverse\",\"gl_ModelViewMatrixInverseTranspose\",\"gl_ModelViewMatrixTranspose\",\"gl_ModelViewProjectionMatrix\",\"gl_ModelViewProjectionMatrixInverse\",\"gl_ModelViewProjectionMatrixInverseTranspose\",\"gl_ModelViewProjectionMatrixTranspose\",\"gl_MultiTexCoord0\",\"gl_MultiTexCoord1\",\"gl_MultiTexCoord2\",\"gl_MultiTexCoord3\",\"gl_MultiTexCoord4\",\"gl_MultiTexCoord5\",\"gl_MultiTexCoord6\",\"gl_MultiTexCoord7\",\"gl_Normal\",\"gl_NormalMatrix\",\"gl_NormalScale\",\"gl_ObjectPlaneQ\",\"gl_ObjectPlaneR\",\"gl_ObjectPlaneS\",\"gl_ObjectPlaneT\",\"gl_Point\",\"gl_PointCoord\",\"gl_PointParameters\",\"gl_PointSize\",\"gl_Position\",\"gl_ProjectionMatrix\",\"gl_ProjectionMatrixInverse\",\"gl_ProjectionMatrixInverseTranspose\",\"gl_ProjectionMatrixTranspose\",\"gl_SecondaryColor\",\"gl_TexCoord\",\"gl_TextureEnvColor\",\"gl_TextureMatrix\",\"gl_TextureMatrixInverse\",\"gl_TextureMatrixInverseTranspose\",\"gl_TextureMatrixTranspose\",\"gl_Vertex\",\"greaterThan\",\"greaterThanEqual\",\"inversesqrt\",\"length\",\"lessThan\",\"lessThanEqual\",\"log\",\"log2\",\"matrixCompMult\",\"max\",\"min\",\"mix\",\"mod\",\"normalize\",\"not\",\"notEqual\",\"pow\",\"radians\",\"reflect\",\"refract\",\"sign\",\"sin\",\"smoothstep\",\"sqrt\",\"step\",\"tan\",\"texture2D\",\"texture2DLod\",\"texture2DProj\",\"texture2DProjLod\",\"textureCube\",\"textureCubeLod\",\"texture2DLodEXT\",\"texture2DProjLodEXT\",\"textureCubeLodEXT\",\"texture2DGradEXT\",\"texture2DProjGradEXT\",\"textureCubeGradEXT\"]},{}],406:[function(t,e,r){var n=t(\"./literals\");e.exports=n.slice().concat([\"layout\",\"centroid\",\"smooth\",\"case\",\"mat2x2\",\"mat2x3\",\"mat2x4\",\"mat3x2\",\"mat3x3\",\"mat3x4\",\"mat4x2\",\"mat4x3\",\"mat4x4\",\"uint\",\"uvec2\",\"uvec3\",\"uvec4\",\"samplerCubeShadow\",\"sampler2DArray\",\"sampler2DArrayShadow\",\"isampler2D\",\"isampler3D\",\"isamplerCube\",\"isampler2DArray\",\"usampler2D\",\"usampler3D\",\"usamplerCube\",\"usampler2DArray\",\"coherent\",\"restrict\",\"readonly\",\"writeonly\",\"resource\",\"atomic_uint\",\"noperspective\",\"patch\",\"sample\",\"subroutine\",\"common\",\"partition\",\"active\",\"filter\",\"image1D\",\"image2D\",\"image3D\",\"imageCube\",\"iimage1D\",\"iimage2D\",\"iimage3D\",\"iimageCube\",\"uimage1D\",\"uimage2D\",\"uimage3D\",\"uimageCube\",\"image1DArray\",\"image2DArray\",\"iimage1DArray\",\"iimage2DArray\",\"uimage1DArray\",\"uimage2DArray\",\"image1DShadow\",\"image2DShadow\",\"image1DArrayShadow\",\"image2DArrayShadow\",\"imageBuffer\",\"iimageBuffer\",\"uimageBuffer\",\"sampler1DArray\",\"sampler1DArrayShadow\",\"isampler1D\",\"isampler1DArray\",\"usampler1D\",\"usampler1DArray\",\"isampler2DRect\",\"usampler2DRect\",\"samplerBuffer\",\"isamplerBuffer\",\"usamplerBuffer\",\"sampler2DMS\",\"isampler2DMS\",\"usampler2DMS\",\"sampler2DMSArray\",\"isampler2DMSArray\",\"usampler2DMSArray\"])},{\"./literals\":407}],407:[function(t,e,r){e.exports=[\"precision\",\"highp\",\"mediump\",\"lowp\",\"attribute\",\"const\",\"uniform\",\"varying\",\"break\",\"continue\",\"do\",\"for\",\"while\",\"if\",\"else\",\"in\",\"out\",\"inout\",\"float\",\"int\",\"void\",\"bool\",\"true\",\"false\",\"discard\",\"return\",\"mat2\",\"mat3\",\"mat4\",\"vec2\",\"vec3\",\"vec4\",\"ivec2\",\"ivec3\",\"ivec4\",\"bvec2\",\"bvec3\",\"bvec4\",\"sampler1D\",\"sampler2D\",\"sampler3D\",\"samplerCube\",\"sampler1DShadow\",\"sampler2DShadow\",\"struct\",\"asm\",\"class\",\"union\",\"enum\",\"typedef\",\"template\",\"this\",\"packed\",\"goto\",\"switch\",\"default\",\"inline\",\"noinline\",\"volatile\",\"public\",\"static\",\"extern\",\"external\",\"interface\",\"long\",\"short\",\"double\",\"half\",\"fixed\",\"unsigned\",\"input\",\"output\",\"hvec2\",\"hvec3\",\"hvec4\",\"dvec2\",\"dvec3\",\"dvec4\",\"fvec2\",\"fvec3\",\"fvec4\",\"sampler2DRect\",\"sampler3DRect\",\"sampler2DRectShadow\",\"sizeof\",\"cast\",\"namespace\",\"using\"]},{}],408:[function(t,e,r){e.exports=[\"<<=\",\">>=\",\"++\",\"--\",\"<<\",\">>\",\"<=\",\">=\",\"==\",\"!=\",\"&&\",\"||\",\"+=\",\"-=\",\"*=\",\"/=\",\"%=\",\"&=\",\"^^\",\"^=\",\"|=\",\"(\",\")\",\"[\",\"]\",\".\",\"!\",\"~\",\"*\",\"/\",\"%\",\"+\",\"-\",\"<\",\">\",\"&\",\"^\",\"|\",\"?\",\":\",\"=\",\",\",\";\",\"{\",\"}\"]},{}],409:[function(t,e,r){var n=t(\"./index\");e.exports=function(t,e){var r=n(e),a=[];return a=(a=a.concat(r(t))).concat(r(null))}},{\"./index\":403}],410:[function(t,e,r){e.exports=function(t){\"string\"==typeof t&&(t=[t]);for(var e=[].slice.call(arguments,1),r=[],n=0;n<t.length-1;n++)r.push(t[n],e[n]||\"\");return r.push(t[n]),r.join(\"\")}},{}],411:[function(t,e,r){(function(r){\"use strict\";var n,a=t(\"is-browser\");n=\"function\"==typeof r.matchMedia?!r.matchMedia(\"(hover: none)\").matches:a,e.exports=n}).call(this,\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{\"is-browser\":418}],412:[function(t,e,r){\"use strict\";var n=t(\"is-browser\");e.exports=n&&function(){var t=!1;try{var e=Object.defineProperty({},\"passive\",{get:function(){t=!0}});window.addEventListener(\"test\",null,e),window.removeEventListener(\"test\",null,e)}catch(e){t=!1}return t}()},{\"is-browser\":418}],413:[function(t,e,r){r.read=function(t,e,r,n,a){var i,o,s=8*a-n-1,l=(1<<s)-1,c=l>>1,u=-7,h=r?a-1:0,f=r?-1:1,p=t[e+h];for(h+=f,i=p&(1<<-u)-1,p>>=-u,u+=s;u>0;i=256*i+t[e+h],h+=f,u-=8);for(o=i&(1<<-u)-1,i>>=-u,u+=n;u>0;o=256*o+t[e+h],h+=f,u-=8);if(0===i)i=1-c;else{if(i===l)return o?NaN:1/0*(p?-1:1);o+=Math.pow(2,n),i-=c}return(p?-1:1)*o*Math.pow(2,i-n)},r.write=function(t,e,r,n,a,i){var o,s,l,c=8*i-a-1,u=(1<<c)-1,h=u>>1,f=23===a?Math.pow(2,-24)-Math.pow(2,-77):0,p=n?0:i-1,d=n?1:-1,g=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(s=isNaN(e)?1:0,o=u):(o=Math.floor(Math.log(e)/Math.LN2),e*(l=Math.pow(2,-o))<1&&(o--,l*=2),(e+=o+h>=1?f/l:f*Math.pow(2,1-h))*l>=2&&(o++,l/=2),o+h>=u?(s=0,o=u):o+h>=1?(s=(e*l-1)*Math.pow(2,a),o+=h):(s=e*Math.pow(2,h-1)*Math.pow(2,a),o=0));a>=8;t[r+p]=255&s,p+=d,s/=256,a-=8);for(o=o<<a|s,c+=a;c>0;t[r+p]=255&o,p+=d,o/=256,c-=8);t[r+p-d]|=128*g}},{}],414:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=t.length;if(0===r)throw new Error(\"Must have at least d+1 points\");var a=t[0].length;if(r<=a)throw new Error(\"Must input at least d+1 points\");var o=t.slice(0,a+1),s=n.apply(void 0,o);if(0===s)throw new Error(\"Input not in general position\");for(var l=new Array(a+1),u=0;u<=a;++u)l[u]=u;s<0&&(l[0]=1,l[1]=0);for(var h=new i(l,new Array(a+1),!1),f=h.adjacent,p=new Array(a+2),u=0;u<=a;++u){for(var d=l.slice(),g=0;g<=a;++g)g===u&&(d[g]=-1);var v=d[0];d[0]=d[1],d[1]=v;var m=new i(d,new Array(a+1),!0);f[u]=m,p[u]=m}p[a+1]=h;for(var u=0;u<=a;++u)for(var d=f[u].vertices,y=f[u].adjacent,g=0;g<=a;++g){var x=d[g];if(x<0)y[g]=h;else for(var b=0;b<=a;++b)f[b].vertices.indexOf(x)<0&&(y[g]=f[b])}for(var _=new c(a,o,p),w=!!e,u=a+1;u<r;++u)_.insert(t[u],w);return _.boundary()};var n=t(\"robust-orientation\"),a=t(\"simplicial-complex\").compareCells;function i(t,e,r){this.vertices=t,this.adjacent=e,this.boundary=r,this.lastVisited=-1}function o(t,e,r){this.vertices=t,this.cell=e,this.index=r}function s(t,e){return a(t.vertices,e.vertices)}i.prototype.flip=function(){var t=this.vertices[0];this.vertices[0]=this.vertices[1],this.vertices[1]=t;var e=this.adjacent[0];this.adjacent[0]=this.adjacent[1],this.adjacent[1]=e};var l=[];function c(t,e,r){this.dimension=t,this.vertices=e,this.simplices=r,this.interior=r.filter(function(t){return!t.boundary}),this.tuple=new Array(t+1);for(var a=0;a<=t;++a)this.tuple[a]=this.vertices[a];var i=l[t];i||(i=l[t]=function(t){for(var e=[\"function orient(){var tuple=this.tuple;return test(\"],r=0;r<=t;++r)r>0&&e.push(\",\"),e.push(\"tuple[\",r,\"]\");e.push(\")}return orient\");var a=new Function(\"test\",e.join(\"\")),i=n[t+1];return i||(i=n),a(i)}(t)),this.orient=i}var u=c.prototype;u.handleBoundaryDegeneracy=function(t,e){var r=this.dimension,n=this.vertices.length-1,a=this.tuple,i=this.vertices,o=[t];for(t.lastVisited=-n;o.length>0;){(t=o.pop()).vertices;for(var s=t.adjacent,l=0;l<=r;++l){var c=s[l];if(c.boundary&&!(c.lastVisited<=-n)){for(var u=c.vertices,h=0;h<=r;++h){var f=u[h];a[h]=f<0?e:i[f]}var p=this.orient();if(p>0)return c;c.lastVisited=-n,0===p&&o.push(c)}}}return null},u.walk=function(t,e){var r=this.vertices.length-1,n=this.dimension,a=this.vertices,i=this.tuple,o=e?this.interior.length*Math.random()|0:this.interior.length-1,s=this.interior[o];t:for(;!s.boundary;){for(var l=s.vertices,c=s.adjacent,u=0;u<=n;++u)i[u]=a[l[u]];s.lastVisited=r;for(u=0;u<=n;++u){var h=c[u];if(!(h.lastVisited>=r)){var f=i[u];i[u]=t;var p=this.orient();if(i[u]=f,p<0){s=h;continue t}h.boundary?h.lastVisited=-r:h.lastVisited=r}}return}return s},u.addPeaks=function(t,e){var r=this.vertices.length-1,n=this.dimension,a=this.vertices,l=this.tuple,c=this.interior,u=this.simplices,h=[e];e.lastVisited=r,e.vertices[e.vertices.indexOf(-1)]=r,e.boundary=!1,c.push(e);for(var f=[];h.length>0;){var p=(e=h.pop()).vertices,d=e.adjacent,g=p.indexOf(r);if(!(g<0))for(var v=0;v<=n;++v)if(v!==g){var m=d[v];if(m.boundary&&!(m.lastVisited>=r)){var y=m.vertices;if(m.lastVisited!==-r){for(var x=0,b=0;b<=n;++b)y[b]<0?(x=b,l[b]=t):l[b]=a[y[b]];if(this.orient()>0){y[x]=r,m.boundary=!1,c.push(m),h.push(m),m.lastVisited=r;continue}m.lastVisited=-r}var _=m.adjacent,w=p.slice(),k=d.slice(),T=new i(w,k,!0);u.push(T);var A=_.indexOf(e);if(!(A<0)){_[A]=T,k[g]=m,w[v]=-1,k[v]=e,d[v]=T,T.flip();for(b=0;b<=n;++b){var M=w[b];if(!(M<0||M===r)){for(var S=new Array(n-1),E=0,C=0;C<=n;++C){var L=w[C];L<0||C===b||(S[E++]=L)}f.push(new o(S,T,b))}}}}}}f.sort(s);for(v=0;v+1<f.length;v+=2){var P=f[v],O=f[v+1],I=P.index,z=O.index;I<0||z<0||(P.cell.adjacent[P.index]=O.cell,O.cell.adjacent[O.index]=P.cell)}},u.insert=function(t,e){var r=this.vertices;r.push(t);var n=this.walk(t,e);if(n){for(var a=this.dimension,i=this.tuple,o=0;o<=a;++o){var s=n.vertices[o];i[o]=s<0?t:r[s]}var l=this.orient(i);l<0||(0!==l||(n=this.handleBoundaryDegeneracy(n,t)))&&this.addPeaks(t,n)}},u.boundary=function(){for(var t=this.dimension,e=[],r=this.simplices,n=r.length,a=0;a<n;++a){var i=r[a];if(i.boundary){for(var o=new Array(t),s=i.vertices,l=0,c=0,u=0;u<=t;++u)s[u]>=0?o[l++]=s[u]:c=1&u;if(c===(1&t)){var h=o[0];o[0]=o[1],o[1]=h}e.push(o)}}return e}},{\"robust-orientation\":511,\"simplicial-complex\":521}],415:[function(t,e,r){\"use strict\";var n=t(\"binary-search-bounds\"),a=0,i=1;function o(t,e,r,n,a){this.mid=t,this.left=e,this.right=r,this.leftPoints=n,this.rightPoints=a,this.count=(e?e.count:0)+(r?r.count:0)+n.length}e.exports=function(t){if(!t||0===t.length)return new x(null);return new x(y(t))};var s=o.prototype;function l(t,e){t.mid=e.mid,t.left=e.left,t.right=e.right,t.leftPoints=e.leftPoints,t.rightPoints=e.rightPoints,t.count=e.count}function c(t,e){var r=y(e);t.mid=r.mid,t.left=r.left,t.right=r.right,t.leftPoints=r.leftPoints,t.rightPoints=r.rightPoints,t.count=r.count}function u(t,e){var r=t.intervals([]);r.push(e),c(t,r)}function h(t,e){var r=t.intervals([]),n=r.indexOf(e);return n<0?a:(r.splice(n,1),c(t,r),i)}function f(t,e,r){for(var n=0;n<t.length&&t[n][0]<=e;++n){var a=r(t[n]);if(a)return a}}function p(t,e,r){for(var n=t.length-1;n>=0&&t[n][1]>=e;--n){var a=r(t[n]);if(a)return a}}function d(t,e){for(var r=0;r<t.length;++r){var n=e(t[r]);if(n)return n}}function g(t,e){return t-e}function v(t,e){var r=t[0]-e[0];return r||t[1]-e[1]}function m(t,e){var r=t[1]-e[1];return r||t[0]-e[0]}function y(t){if(0===t.length)return null;for(var e=[],r=0;r<t.length;++r)e.push(t[r][0],t[r][1]);e.sort(g);var n=e[e.length>>1],a=[],i=[],s=[];for(r=0;r<t.length;++r){var l=t[r];l[1]<n?a.push(l):n<l[0]?i.push(l):s.push(l)}var c=s,u=s.slice();return c.sort(v),u.sort(m),new o(n,y(a),y(i),c,u)}function x(t){this.root=t}s.intervals=function(t){return t.push.apply(t,this.leftPoints),this.left&&this.left.intervals(t),this.right&&this.right.intervals(t),t},s.insert=function(t){var e=this.count-this.leftPoints.length;if(this.count+=1,t[1]<this.mid)this.left?4*(this.left.count+1)>3*(e+1)?u(this,t):this.left.insert(t):this.left=y([t]);else if(t[0]>this.mid)this.right?4*(this.right.count+1)>3*(e+1)?u(this,t):this.right.insert(t):this.right=y([t]);else{var r=n.ge(this.leftPoints,t,v),a=n.ge(this.rightPoints,t,m);this.leftPoints.splice(r,0,t),this.rightPoints.splice(a,0,t)}},s.remove=function(t){var e=this.count-this.leftPoints;if(t[1]<this.mid)return this.left?4*(this.right?this.right.count:0)>3*(e-1)?h(this,t):2===(c=this.left.remove(t))?(this.left=null,this.count-=1,i):(c===i&&(this.count-=1),c):a;if(t[0]>this.mid)return this.right?4*(this.left?this.left.count:0)>3*(e-1)?h(this,t):2===(c=this.right.remove(t))?(this.right=null,this.count-=1,i):(c===i&&(this.count-=1),c):a;if(1===this.count)return this.leftPoints[0]===t?2:a;if(1===this.leftPoints.length&&this.leftPoints[0]===t){if(this.left&&this.right){for(var r=this,o=this.left;o.right;)r=o,o=o.right;if(r===this)o.right=this.right;else{var s=this.left,c=this.right;r.count-=o.count,r.right=o.left,o.left=s,o.right=c}l(this,o),this.count=(this.left?this.left.count:0)+(this.right?this.right.count:0)+this.leftPoints.length}else this.left?l(this,this.left):l(this,this.right);return i}for(s=n.ge(this.leftPoints,t,v);s<this.leftPoints.length&&this.leftPoints[s][0]===t[0];++s)if(this.leftPoints[s]===t){this.count-=1,this.leftPoints.splice(s,1);for(c=n.ge(this.rightPoints,t,m);c<this.rightPoints.length&&this.rightPoints[c][1]===t[1];++c)if(this.rightPoints[c]===t)return this.rightPoints.splice(c,1),i}return a},s.queryPoint=function(t,e){if(t<this.mid){if(this.left)if(r=this.left.queryPoint(t,e))return r;return f(this.leftPoints,t,e)}if(t>this.mid){var r;if(this.right)if(r=this.right.queryPoint(t,e))return r;return p(this.rightPoints,t,e)}return d(this.leftPoints,e)},s.queryInterval=function(t,e,r){var n;if(t<this.mid&&this.left&&(n=this.left.queryInterval(t,e,r)))return n;if(e>this.mid&&this.right&&(n=this.right.queryInterval(t,e,r)))return n;return e<this.mid?f(this.leftPoints,e,r):t>this.mid?p(this.rightPoints,t,r):d(this.leftPoints,r)};var b=x.prototype;b.insert=function(t){this.root?this.root.insert(t):this.root=new o(t[0],null,null,[t],[t])},b.remove=function(t){if(this.root){var e=this.root.remove(t);return 2===e&&(this.root=null),e!==a}return!1},b.queryPoint=function(t,e){if(this.root)return this.root.queryPoint(t,e)},b.queryInterval=function(t,e,r){if(t<=e&&this.root)return this.root.queryInterval(t,e,r)},Object.defineProperty(b,\"count\",{get:function(){return this.root?this.root.count:0}}),Object.defineProperty(b,\"intervals\",{get:function(){return this.root?this.root.intervals([]):[]}})},{\"binary-search-bounds\":92}],416:[function(t,e,r){\"use strict\";e.exports=function(t,e){e=e||new Array(t.length);for(var r=0;r<t.length;++r)e[t[r]]=r;return e}},{}],417:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=new Array(t),r=0;r<t;++r)e[r]=r;return e}},{}],418:[function(t,e,r){e.exports=!0},{}],419:[function(t,e,r){function n(t){return!!t.constructor&&\"function\"==typeof t.constructor.isBuffer&&t.constructor.isBuffer(t)}e.exports=function(t){return null!=t&&(n(t)||function(t){return\"function\"==typeof t.readFloatLE&&\"function\"==typeof t.slice&&n(t.slice(0,0))}(t)||!!t._isBuffer)}},{}],420:[function(t,e,r){\"use strict\";e.exports=\"undefined\"!=typeof navigator&&(/MSIE/.test(navigator.userAgent)||/Trident\\//.test(navigator.appVersion))},{}],421:[function(t,e,r){\"use strict\";e.exports=i,e.exports.isMobile=i,e.exports.default=i;var n=/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series[46]0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i,a=/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series[46]0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino|android|ipad|playbook|silk/i;function i(t){t||(t={});var e=t.ua;return e||\"undefined\"==typeof navigator||(e=navigator.userAgent),e&&e.headers&&\"string\"==typeof e.headers[\"user-agent\"]&&(e=e.headers[\"user-agent\"]),\"string\"==typeof e&&(t.tablet?a.test(e):n.test(e))}},{}],422:[function(t,e,r){\"use strict\";e.exports=function(t){var e=typeof t;return null!==t&&(\"object\"===e||\"function\"===e)}},{}],423:[function(t,e,r){\"use strict\";var n=Object.prototype.toString;e.exports=function(t){var e;return\"[object Object]\"===n.call(t)&&(null===(e=Object.getPrototypeOf(t))||e===Object.getPrototypeOf({}))}},{}],424:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e,r=t.length,n=0;n<r;n++)if(((e=t.charCodeAt(n))<9||e>13)&&32!==e&&133!==e&&160!==e&&5760!==e&&6158!==e&&(e<8192||e>8205)&&8232!==e&&8233!==e&&8239!==e&&8287!==e&&8288!==e&&12288!==e&&65279!==e)return!1;return!0}},{}],425:[function(t,e,r){\"use strict\";e.exports=function(t){return\"string\"==typeof t&&(t=t.trim(),!!(/^[mzlhvcsqta]\\s*[-+.0-9][^mlhvzcsqta]+/i.test(t)&&/[\\dz]$/i.test(t)&&t.length>4))}},{}],426:[function(t,e,r){e.exports=function(t,e,r){return t*(1-r)+e*r}},{}],427:[function(t,e,r){var n,a;n=this,a=function(){\"use strict\";var t,e,r;function n(n,a){if(t)if(e){var i=\"var sharedChunk = {}; (\"+t+\")(sharedChunk); (\"+e+\")(sharedChunk);\",o={};t(o),(r=a(o)).workerUrl=window.URL.createObjectURL(new Blob([i],{type:\"text/javascript\"}))}else e=a;else t=a}return n(0,function(t){function e(t,e){return t(e={exports:{}},e.exports),e.exports}var r=n;function n(t,e,r,n){this.cx=3*t,this.bx=3*(r-t)-this.cx,this.ax=1-this.cx-this.bx,this.cy=3*e,this.by=3*(n-e)-this.cy,this.ay=1-this.cy-this.by,this.p1x=t,this.p1y=n,this.p2x=r,this.p2y=n}n.prototype.sampleCurveX=function(t){return((this.ax*t+this.bx)*t+this.cx)*t},n.prototype.sampleCurveY=function(t){return((this.ay*t+this.by)*t+this.cy)*t},n.prototype.sampleCurveDerivativeX=function(t){return(3*this.ax*t+2*this.bx)*t+this.cx},n.prototype.solveCurveX=function(t,e){var r,n,a,i,o;for(void 0===e&&(e=1e-6),a=t,o=0;o<8;o++){if(i=this.sampleCurveX(a)-t,Math.abs(i)<e)return a;var s=this.sampleCurveDerivativeX(a);if(Math.abs(s)<1e-6)break;a-=i/s}if((a=t)<(r=0))return r;if(a>(n=1))return n;for(;r<n;){if(i=this.sampleCurveX(a),Math.abs(i-t)<e)return a;t>i?r=a:n=a,a=.5*(n-r)+r}return a},n.prototype.solve=function(t,e){return this.sampleCurveY(this.solveCurveX(t,e))};var a=i;function i(t,e){this.x=t,this.y=e}function o(t,e){if(Array.isArray(t)){if(!Array.isArray(e)||t.length!==e.length)return!1;for(var r=0;r<t.length;r++)if(!o(t[r],e[r]))return!1;return!0}if(\"object\"==typeof t&&null!==t&&null!==e){if(\"object\"!=typeof e)return!1;if(Object.keys(t).length!==Object.keys(e).length)return!1;for(var n in t)if(!o(t[n],e[n]))return!1;return!0}return t===e}function s(t,e,n,a){var i=new r(t,e,n,a);return function(t){return i.solve(t)}}i.prototype={clone:function(){return new i(this.x,this.y)},add:function(t){return this.clone()._add(t)},sub:function(t){return this.clone()._sub(t)},multByPoint:function(t){return this.clone()._multByPoint(t)},divByPoint:function(t){return this.clone()._divByPoint(t)},mult:function(t){return this.clone()._mult(t)},div:function(t){return this.clone()._div(t)},rotate:function(t){return this.clone()._rotate(t)},rotateAround:function(t,e){return this.clone()._rotateAround(t,e)},matMult:function(t){return this.clone()._matMult(t)},unit:function(){return this.clone()._unit()},perp:function(){return this.clone()._perp()},round:function(){return this.clone()._round()},mag:function(){return Math.sqrt(this.x*this.x+this.y*this.y)},equals:function(t){return this.x===t.x&&this.y===t.y},dist:function(t){return Math.sqrt(this.distSqr(t))},distSqr:function(t){var e=t.x-this.x,r=t.y-this.y;return e*e+r*r},angle:function(){return Math.atan2(this.y,this.x)},angleTo:function(t){return Math.atan2(this.y-t.y,this.x-t.x)},angleWith:function(t){return this.angleWithSep(t.x,t.y)},angleWithSep:function(t,e){return Math.atan2(this.x*e-this.y*t,this.x*t+this.y*e)},_matMult:function(t){var e=t[0]*this.x+t[1]*this.y,r=t[2]*this.x+t[3]*this.y;return this.x=e,this.y=r,this},_add:function(t){return this.x+=t.x,this.y+=t.y,this},_sub:function(t){return this.x-=t.x,this.y-=t.y,this},_mult:function(t){return this.x*=t,this.y*=t,this},_div:function(t){return this.x/=t,this.y/=t,this},_multByPoint:function(t){return this.x*=t.x,this.y*=t.y,this},_divByPoint:function(t){return this.x/=t.x,this.y/=t.y,this},_unit:function(){return this._div(this.mag()),this},_perp:function(){var t=this.y;return this.y=this.x,this.x=-t,this},_rotate:function(t){var e=Math.cos(t),r=Math.sin(t),n=e*this.x-r*this.y,a=r*this.x+e*this.y;return this.x=n,this.y=a,this},_rotateAround:function(t,e){var r=Math.cos(t),n=Math.sin(t),a=e.x+r*(this.x-e.x)-n*(this.y-e.y),i=e.y+n*(this.x-e.x)+r*(this.y-e.y);return this.x=a,this.y=i,this},_round:function(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this}},i.convert=function(t){return t instanceof i?t:Array.isArray(t)?new i(t[0],t[1]):t};var l=s(.25,.1,.25,1);function c(t,e,r){return Math.min(r,Math.max(e,t))}function u(t,e,r){var n=r-e,a=((t-e)%n+n)%n+e;return a===e?r:a}function h(t){for(var e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];for(var n=0,a=e;n<a.length;n+=1){var i=a[n];for(var o in i)t[o]=i[o]}return t}var f=1;function p(){return f++}function d(){return function t(e){return e?(e^16*Math.random()>>e/4).toString(16):([1e7]+-[1e3]+-4e3+-8e3+-1e11).replace(/[018]/g,t)}()}function g(t){return!!t&&/^[0-9a-f]{8}-[0-9a-f]{4}-[4][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i.test(t)}function v(t,e){t.forEach(function(t){e[t]&&(e[t]=e[t].bind(e))})}function m(t,e){return-1!==t.indexOf(e,t.length-e.length)}function y(t,e,r){var n={};for(var a in t)n[a]=e.call(r||this,t[a],a,t);return n}function x(t,e,r){var n={};for(var a in t)e.call(r||this,t[a],a,t)&&(n[a]=t[a]);return n}function b(t){return Array.isArray(t)?t.map(b):\"object\"==typeof t&&t?y(t,b):t}var _={};function w(t){_[t]||(\"undefined\"!=typeof console&&console.warn(t),_[t]=!0)}function k(t,e,r){return(r.y-t.y)*(e.x-t.x)>(e.y-t.y)*(r.x-t.x)}function T(t){for(var e=0,r=0,n=t.length,a=n-1,i=void 0,o=void 0;r<n;a=r++)i=t[r],e+=((o=t[a]).x-i.x)*(i.y+o.y);return e}function A(t){var e={};if(t.replace(/(?:^|(?:\\s*\\,\\s*))([^\\x00-\\x20\\(\\)<>@\\,;\\:\\\\\"\\/\\[\\]\\?\\=\\{\\}\\x7F]+)(?:\\=(?:([^\\x00-\\x20\\(\\)<>@\\,;\\:\\\\\"\\/\\[\\]\\?\\=\\{\\}\\x7F]+)|(?:\\\"((?:[^\"\\\\]|\\\\.)*)\\\")))?/g,function(t,r,n,a){var i=n||a;return e[r]=!i||i.toLowerCase(),\"\"}),e[\"max-age\"]){var r=parseInt(e[\"max-age\"],10);isNaN(r)?delete e[\"max-age\"]:e[\"max-age\"]=r}return e}function M(t){try{var e=self[t];return e.setItem(\"_mapbox_test_\",1),e.removeItem(\"_mapbox_test_\"),!0}catch(t){return!1}}var S,E,C,L,P=self.performance&&self.performance.now?self.performance.now.bind(self.performance):Date.now.bind(Date),O=self.requestAnimationFrame||self.mozRequestAnimationFrame||self.webkitRequestAnimationFrame||self.msRequestAnimationFrame,I=self.cancelAnimationFrame||self.mozCancelAnimationFrame||self.webkitCancelAnimationFrame||self.msCancelAnimationFrame,z={now:P,frame:function(t){var e=O(t);return{cancel:function(){return I(e)}}},getImageData:function(t){var e=self.document.createElement(\"canvas\"),r=e.getContext(\"2d\");if(!r)throw new Error(\"failed to create canvas 2d context\");return e.width=t.width,e.height=t.height,r.drawImage(t,0,0,t.width,t.height),r.getImageData(0,0,t.width,t.height)},resolveURL:function(t){return S||(S=self.document.createElement(\"a\")),S.href=t,S.href},hardwareConcurrency:self.navigator.hardwareConcurrency||4,get devicePixelRatio(){return self.devicePixelRatio},get prefersReducedMotion(){return!!self.matchMedia&&(null==E&&(E=self.matchMedia(\"(prefers-reduced-motion: reduce)\")),E.matches)}},D={API_URL:\"https://api.mapbox.com\",get EVENTS_URL(){return this.API_URL?0===this.API_URL.indexOf(\"https://api.mapbox.cn\")?\"https://events.mapbox.cn/events/v2\":0===this.API_URL.indexOf(\"https://api.mapbox.com\")?\"https://events.mapbox.com/events/v2\":null:null},FEEDBACK_URL:\"https://apps.mapbox.com/feedback\",REQUIRE_ACCESS_TOKEN:!0,ACCESS_TOKEN:null,MAX_PARALLEL_IMAGE_REQUESTS:16},R={supported:!1,testSupport:function(t){!F&&L&&(B?N(t):C=t)}},F=!1,B=!1;function N(t){var e=t.createTexture();t.bindTexture(t.TEXTURE_2D,e);try{if(t.texImage2D(t.TEXTURE_2D,0,t.RGBA,t.RGBA,t.UNSIGNED_BYTE,L),t.isContextLost())return;R.supported=!0}catch(t){}t.deleteTexture(e),F=!0}self.document&&((L=self.document.createElement(\"img\")).onload=function(){C&&N(C),C=null,B=!0},L.onerror=function(){F=!0,C=null},L.src=\"data:image/webp;base64,UklGRh4AAABXRUJQVlA4TBEAAAAvAQAAAAfQ//73v/+BiOh/AAA=\");var j=\"01\",V=function(t,e){this._transformRequestFn=t,this._customAccessToken=e,this._createSkuToken()};function U(t){return 0===t.indexOf(\"mapbox:\")}V.prototype._createSkuToken=function(){var t=function(){for(var t=\"\",e=0;e<10;e++)t+=\"0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ\"[Math.floor(62*Math.random())];return{token:[\"1\",j,t].join(\"\"),tokenExpiresAt:Date.now()+432e5}}();this._skuToken=t.token,this._skuTokenExpiresAt=t.tokenExpiresAt},V.prototype._isSkuTokenExpired=function(){return Date.now()>this._skuTokenExpiresAt},V.prototype.transformRequest=function(t,e){return this._transformRequestFn&&this._transformRequestFn(t,e)||{url:t}},V.prototype.normalizeStyleURL=function(t,e){if(!U(t))return t;var r=Y(t);return r.path=\"/styles/v1\"+r.path,this._makeAPIURL(r,this._customAccessToken||e)},V.prototype.normalizeGlyphsURL=function(t,e){if(!U(t))return t;var r=Y(t);return r.path=\"/fonts/v1\"+r.path,this._makeAPIURL(r,this._customAccessToken||e)},V.prototype.normalizeSourceURL=function(t,e){if(!U(t))return t;var r=Y(t);return r.path=\"/v4/\"+r.authority+\".json\",r.params.push(\"secure\"),this._makeAPIURL(r,this._customAccessToken||e)},V.prototype.normalizeSpriteURL=function(t,e,r,n){var a=Y(t);return U(t)?(a.path=\"/styles/v1\"+a.path+\"/sprite\"+e+r,this._makeAPIURL(a,this._customAccessToken||n)):(a.path+=\"\"+e+r,W(a))},V.prototype.normalizeTileURL=function(t,e,r){if(this._isSkuTokenExpired()&&this._createSkuToken(),!e||!U(e))return t;var n=Y(t),a=z.devicePixelRatio>=2||512===r?\"@2x\":\"\",i=R.supported?\".webp\":\"$1\";return n.path=n.path.replace(/(\\.(png|jpg)\\d*)(?=$)/,\"\"+a+i),n.path=n.path.replace(/^.+\\/v4\\//,\"/\"),n.path=\"/v4\"+n.path,D.REQUIRE_ACCESS_TOKEN&&(D.ACCESS_TOKEN||this._customAccessToken)&&this._skuToken&&n.params.push(\"sku=\"+this._skuToken),this._makeAPIURL(n,this._customAccessToken)},V.prototype.canonicalizeTileURL=function(t){var e=Y(t);if(!e.path.match(/(^\\/v4\\/)/)||!e.path.match(/\\.[\\w]+$/))return t;var r=\"mapbox://tiles/\";r+=e.path.replace(\"/v4/\",\"\");var n=e.params.filter(function(t){return!t.match(/^access_token=/)});return n.length&&(r+=\"?\"+n.join(\"&\")),r},V.prototype.canonicalizeTileset=function(t,e){if(!U(e))return t.tiles||[];for(var r=[],n=0,a=t.tiles;n<a.length;n+=1){var i=a[n],o=this.canonicalizeTileURL(i);r.push(o)}return r},V.prototype._makeAPIURL=function(t,e){var r=\"See https://www.mapbox.com/api-documentation/#access-tokens-and-token-scopes\",n=Y(D.API_URL);if(t.protocol=n.protocol,t.authority=n.authority,\"/\"!==n.path&&(t.path=\"\"+n.path+t.path),!D.REQUIRE_ACCESS_TOKEN)return W(t);if(!(e=e||D.ACCESS_TOKEN))throw new Error(\"An API access token is required to use Mapbox GL. \"+r);if(\"s\"===e[0])throw new Error(\"Use a public access token (pk.*) with Mapbox GL, not a secret access token (sk.*). \"+r);return t.params=t.params.filter(function(t){return-1===t.indexOf(\"access_token\")}),t.params.push(\"access_token=\"+e),W(t)};var q=/^((https?:)?\\/\\/)?([^\\/]+\\.)?mapbox\\.c(n|om)(\\/|\\?|$)/i;function H(t){return q.test(t)}var G=/^(\\w+):\\/\\/([^\\/?]*)(\\/[^?]+)?\\??(.+)?/;function Y(t){var e=t.match(G);if(!e)throw new Error(\"Unable to parse URL object\");return{protocol:e[1],authority:e[2],path:e[3]||\"/\",params:e[4]?e[4].split(\"&\"):[]}}function W(t){var e=t.params.length?\"?\"+t.params.join(\"&\"):\"\";return t.protocol+\"://\"+t.authority+t.path+e}function X(t){if(!t)return null;var e,r=t.split(\".\");if(!r||3!==r.length)return null;try{return JSON.parse((e=r[1],decodeURIComponent(self.atob(e).split(\"\").map(function(t){return\"%\"+(\"00\"+t.charCodeAt(0).toString(16)).slice(-2)}).join(\"\"))))}catch(t){return null}}var Z=function(t){this.type=t,this.anonId=null,this.eventData={},this.queue=[],this.pendingRequest=null};Z.prototype.getStorageKey=function(t){var e,r=X(D.ACCESS_TOKEN),n=\"\";return r&&r.u?(e=r.u,n=self.btoa(encodeURIComponent(e).replace(/%([0-9A-F]{2})/g,function(t,e){return String.fromCharCode(Number(\"0x\"+e))}))):n=D.ACCESS_TOKEN||\"\",t?\"mapbox.eventData.\"+t+\":\"+n:\"mapbox.eventData:\"+n},Z.prototype.fetchEventData=function(){var t=M(\"localStorage\"),e=this.getStorageKey(),r=this.getStorageKey(\"uuid\");if(t)try{var n=self.localStorage.getItem(e);n&&(this.eventData=JSON.parse(n));var a=self.localStorage.getItem(r);a&&(this.anonId=a)}catch(t){w(\"Unable to read from LocalStorage\")}},Z.prototype.saveEventData=function(){var t=M(\"localStorage\"),e=this.getStorageKey(),r=this.getStorageKey(\"uuid\");if(t)try{self.localStorage.setItem(r,this.anonId),Object.keys(this.eventData).length>=1&&self.localStorage.setItem(e,JSON.stringify(this.eventData))}catch(t){w(\"Unable to write to LocalStorage\")}},Z.prototype.processRequests=function(t){},Z.prototype.postEvent=function(t,e,r,n){var a=this;if(D.EVENTS_URL){var i=Y(D.EVENTS_URL);i.params.push(\"access_token=\"+(n||D.ACCESS_TOKEN||\"\"));var o={event:this.type,created:new Date(t).toISOString(),sdkIdentifier:\"mapbox-gl-js\",sdkVersion:\"1.3.2\",skuId:j,userId:this.anonId},s=e?h(o,e):o,l={url:W(i),headers:{\"Content-Type\":\"text/plain\"},body:JSON.stringify([s])};this.pendingRequest=mt(l,function(t){a.pendingRequest=null,r(t),a.saveEventData(),a.processRequests(n)})}},Z.prototype.queueRequest=function(t,e){this.queue.push(t),this.processRequests(e)};var J,K=function(t){function e(){t.call(this,\"map.load\"),this.success={},this.skuToken=\"\"}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.postMapLoadEvent=function(t,e,r,n){this.skuToken=r,(D.EVENTS_URL&&n||D.ACCESS_TOKEN&&Array.isArray(t)&&t.some(function(t){return U(t)||H(t)}))&&this.queueRequest({id:e,timestamp:Date.now()},n)},e.prototype.processRequests=function(t){var e=this;if(!this.pendingRequest&&0!==this.queue.length){var r=this.queue.shift(),n=r.id,a=r.timestamp;n&&this.success[n]||(this.anonId||this.fetchEventData(),g(this.anonId)||(this.anonId=d()),this.postEvent(a,{skuToken:this.skuToken},function(t){t||n&&(e.success[n]=!0)},t))}},e}(Z),Q=new(function(t){function e(e){t.call(this,\"appUserTurnstile\"),this._customAccessToken=e}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.postTurnstileEvent=function(t,e){D.EVENTS_URL&&D.ACCESS_TOKEN&&Array.isArray(t)&&t.some(function(t){return U(t)||H(t)})&&this.queueRequest(Date.now(),e)},e.prototype.processRequests=function(t){var e=this;if(!this.pendingRequest&&0!==this.queue.length){this.anonId&&this.eventData.lastSuccess&&this.eventData.tokenU||this.fetchEventData();var r=X(D.ACCESS_TOKEN),n=r?r.u:D.ACCESS_TOKEN,a=n!==this.eventData.tokenU;g(this.anonId)||(this.anonId=d(),a=!0);var i=this.queue.shift();if(this.eventData.lastSuccess){var o=new Date(this.eventData.lastSuccess),s=new Date(i),l=(i-this.eventData.lastSuccess)/864e5;a=a||l>=1||l<-1||o.getDate()!==s.getDate()}else a=!0;if(!a)return this.processRequests();this.postEvent(i,{\"enabled.telemetry\":!1},function(t){t||(e.eventData.lastSuccess=i,e.eventData.tokenU=n)},t)}},e}(Z)),$=Q.postTurnstileEvent.bind(Q),tt=new K,et=tt.postMapLoadEvent.bind(tt),rt=\"mapbox-tiles\",nt=500,at=50,it=42e4;function ot(t){var e=t.indexOf(\"?\");return e<0?t:t.slice(0,e)}var st=1/0,lt={Unknown:\"Unknown\",Style:\"Style\",Source:\"Source\",Tile:\"Tile\",Glyphs:\"Glyphs\",SpriteImage:\"SpriteImage\",SpriteJSON:\"SpriteJSON\",Image:\"Image\"};\"function\"==typeof Object.freeze&&Object.freeze(lt);var ct=function(t){function e(e,r,n){401===r&&H(n)&&(e+=\": you may have provided an invalid Mapbox access token. See https://www.mapbox.com/api-documentation/#access-tokens-and-token-scopes\"),t.call(this,e),this.status=r,this.url=n,this.name=this.constructor.name,this.message=e}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.toString=function(){return this.name+\": \"+this.message+\" (\"+this.status+\"): \"+this.url},e}(Error);function ut(){return\"undefined\"!=typeof WorkerGlobalScope&&\"undefined\"!=typeof self&&self instanceof WorkerGlobalScope}var ht=ut()?function(){return self.worker&&self.worker.referrer}:function(){return(\"blob:\"===self.location.protocol?self.parent:self).location.href};function ft(t,e){var r,n=new self.AbortController,a=new self.Request(t.url,{method:t.method||\"GET\",body:t.body,credentials:t.credentials,headers:t.headers,referrer:ht(),signal:n.signal}),i=!1,o=!1,s=(r=a.url).indexOf(\"sku=\")>0&&H(r);\"json\"===t.type&&a.headers.set(\"Accept\",\"application/json\");var l=function(r,n,i){if(!o){if(r&&\"SecurityError\"!==r.message&&w(r),n&&i)return c(n);var l=Date.now();self.fetch(a).then(function(r){if(r.ok){var n=s?r.clone():null;return c(r,n,l)}return e(new ct(r.statusText,r.status,t.url))}).catch(function(t){20!==t.code&&e(new Error(t.message))})}},c=function(r,n,s){(\"arrayBuffer\"===t.type?r.arrayBuffer():\"json\"===t.type?r.json():r.text()).then(function(t){o||(n&&s&&function(t,e,r){if(self.caches){var n={status:e.status,statusText:e.statusText,headers:new self.Headers};e.headers.forEach(function(t,e){return n.headers.set(e,t)});var a=A(e.headers.get(\"Cache-Control\")||\"\");a[\"no-store\"]||(a[\"max-age\"]&&n.headers.set(\"Expires\",new Date(r+1e3*a[\"max-age\"]).toUTCString()),new Date(n.headers.get(\"Expires\")).getTime()-r<it||function(t,e){if(void 0===J)try{new Response(new ReadableStream),J=!0}catch(t){J=!1}J?e(t.body):t.blob().then(e)}(e,function(e){var r=new self.Response(e,n);self.caches.open(rt).then(function(e){return e.put(ot(t.url),r)}).catch(function(t){return w(t.message)})}))}}(a,n,s),i=!0,e(null,t,r.headers.get(\"Cache-Control\"),r.headers.get(\"Expires\")))}).catch(function(t){return e(new Error(t.message))})};return s?function(t,e){if(!self.caches)return e(null);var r=ot(t.url);self.caches.open(rt).then(function(t){t.match(r).then(function(n){var a=function(t){if(!t)return!1;var e=new Date(t.headers.get(\"Expires\")),r=A(t.headers.get(\"Cache-Control\")||\"\");return e>Date.now()&&!r[\"no-cache\"]}(n);t.delete(r),a&&t.put(r,n.clone()),e(null,n,a)}).catch(e)}).catch(e)}(a,l):l(null,null),{cancel:function(){o=!0,i||n.abort()}}}var pt,dt,gt=function(t,e){if(r=t.url,!(/^file:/.test(r)||/^file:/.test(ht())&&!/^\\w+:/.test(r))){if(self.fetch&&self.Request&&self.AbortController&&self.Request.prototype.hasOwnProperty(\"signal\"))return ft(t,e);if(ut()&&self.worker&&self.worker.actor)return self.worker.actor.send(\"getResource\",t,e)}var r;return function(t,e){var r=new self.XMLHttpRequest;for(var n in r.open(t.method||\"GET\",t.url,!0),\"arrayBuffer\"===t.type&&(r.responseType=\"arraybuffer\"),t.headers)r.setRequestHeader(n,t.headers[n]);return\"json\"===t.type&&(r.responseType=\"text\",r.setRequestHeader(\"Accept\",\"application/json\")),r.withCredentials=\"include\"===t.credentials,r.onerror=function(){e(new Error(r.statusText))},r.onload=function(){if((r.status>=200&&r.status<300||0===r.status)&&null!==r.response){var n=r.response;if(\"json\"===t.type)try{n=JSON.parse(r.response)}catch(t){return e(t)}e(null,n,r.getResponseHeader(\"Cache-Control\"),r.getResponseHeader(\"Expires\"))}else e(new ct(r.statusText,r.status,t.url))},r.send(t.body),{cancel:function(){return r.abort()}}}(t,e)},vt=function(t,e){return gt(h(t,{type:\"arrayBuffer\"}),e)},mt=function(t,e){return gt(h(t,{method:\"POST\"}),e)};pt=[],dt=0;var yt=function(t,e){if(dt>=D.MAX_PARALLEL_IMAGE_REQUESTS){var r={requestParameters:t,callback:e,cancelled:!1,cancel:function(){this.cancelled=!0}};return pt.push(r),r}dt++;var n=!1,a=function(){if(!n)for(n=!0,dt--;pt.length&&dt<D.MAX_PARALLEL_IMAGE_REQUESTS;){var t=pt.shift(),e=t.requestParameters,r=t.callback;t.cancelled||(t.cancel=yt(e,r).cancel)}},i=vt(t,function(t,r,n,i){if(a(),t)e(t);else if(r){var o=new self.Image,s=self.URL||self.webkitURL;o.onload=function(){e(null,o),s.revokeObjectURL(o.src)},o.onerror=function(){return e(new Error(\"Could not load image. Please make sure to use a supported image type such as PNG or JPEG. Note that SVGs are not supported.\"))};var l=new self.Blob([new Uint8Array(r)],{type:\"image/png\"});o.cacheControl=n,o.expires=i,o.src=r.byteLength?s.createObjectURL(l):\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAC0lEQVQYV2NgAAIAAAUAAarVyFEAAAAASUVORK5CYII=\"}});return{cancel:function(){i.cancel(),a()}}};function xt(t,e,r){r[t]&&-1!==r[t].indexOf(e)||(r[t]=r[t]||[],r[t].push(e))}function bt(t,e,r){if(r&&r[t]){var n=r[t].indexOf(e);-1!==n&&r[t].splice(n,1)}}var _t=function(t,e){void 0===e&&(e={}),h(this,e),this.type=t},wt=function(t){function e(e,r){void 0===r&&(r={}),t.call(this,\"error\",h({error:e},r))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}(_t),kt=function(){};kt.prototype.on=function(t,e){return this._listeners=this._listeners||{},xt(t,e,this._listeners),this},kt.prototype.off=function(t,e){return bt(t,e,this._listeners),bt(t,e,this._oneTimeListeners),this},kt.prototype.once=function(t,e){return this._oneTimeListeners=this._oneTimeListeners||{},xt(t,e,this._oneTimeListeners),this},kt.prototype.fire=function(t,e){\"string\"==typeof t&&(t=new _t(t,e||{}));var r=t.type;if(this.listens(r)){t.target=this;for(var n=0,a=this._listeners&&this._listeners[r]?this._listeners[r].slice():[];n<a.length;n+=1)a[n].call(this,t);for(var i=0,o=this._oneTimeListeners&&this._oneTimeListeners[r]?this._oneTimeListeners[r].slice():[];i<o.length;i+=1){var s=o[i];bt(r,s,this._oneTimeListeners),s.call(this,t)}var l=this._eventedParent;l&&(h(t,\"function\"==typeof this._eventedParentData?this._eventedParentData():this._eventedParentData),l.fire(t))}else t instanceof wt&&console.error(t.error);return this},kt.prototype.listens=function(t){return this._listeners&&this._listeners[t]&&this._listeners[t].length>0||this._oneTimeListeners&&this._oneTimeListeners[t]&&this._oneTimeListeners[t].length>0||this._eventedParent&&this._eventedParent.listens(t)},kt.prototype.setEventedParent=function(t,e){return this._eventedParent=t,this._eventedParentData=e,this};var Tt={$version:8,$root:{version:{required:!0,type:\"enum\",values:[8]},name:{type:\"string\"},metadata:{type:\"*\"},center:{type:\"array\",value:\"number\"},zoom:{type:\"number\"},bearing:{type:\"number\",default:0,period:360,units:\"degrees\"},pitch:{type:\"number\",default:0,units:\"degrees\"},light:{type:\"light\"},sources:{required:!0,type:\"sources\"},sprite:{type:\"string\"},glyphs:{type:\"string\"},transition:{type:\"transition\"},layers:{required:!0,type:\"array\",value:\"layer\"}},sources:{\"*\":{type:\"source\"}},source:[\"source_vector\",\"source_raster\",\"source_raster_dem\",\"source_geojson\",\"source_video\",\"source_image\"],source_vector:{type:{required:!0,type:\"enum\",values:{vector:{}}},url:{type:\"string\"},tiles:{type:\"array\",value:\"string\"},bounds:{type:\"array\",value:\"number\",length:4,default:[-180,-85.051129,180,85.051129]},scheme:{type:\"enum\",values:{xyz:{},tms:{}},default:\"xyz\"},minzoom:{type:\"number\",default:0},maxzoom:{type:\"number\",default:22},attribution:{type:\"string\"},\"*\":{type:\"*\"}},source_raster:{type:{required:!0,type:\"enum\",values:{raster:{}}},url:{type:\"string\"},tiles:{type:\"array\",value:\"string\"},bounds:{type:\"array\",value:\"number\",length:4,default:[-180,-85.051129,180,85.051129]},minzoom:{type:\"number\",default:0},maxzoom:{type:\"number\",default:22},tileSize:{type:\"number\",default:512,units:\"pixels\"},scheme:{type:\"enum\",values:{xyz:{},tms:{}},default:\"xyz\"},attribution:{type:\"string\"},\"*\":{type:\"*\"}},source_raster_dem:{type:{required:!0,type:\"enum\",values:{\"raster-dem\":{}}},url:{type:\"string\"},tiles:{type:\"array\",value:\"string\"},bounds:{type:\"array\",value:\"number\",length:4,default:[-180,-85.051129,180,85.051129]},minzoom:{type:\"number\",default:0},maxzoom:{type:\"number\",default:22},tileSize:{type:\"number\",default:512,units:\"pixels\"},attribution:{type:\"string\"},encoding:{type:\"enum\",values:{terrarium:{},mapbox:{}},default:\"mapbox\"},\"*\":{type:\"*\"}},source_geojson:{type:{required:!0,type:\"enum\",values:{geojson:{}}},data:{type:\"*\"},maxzoom:{type:\"number\",default:18},attribution:{type:\"string\"},buffer:{type:\"number\",default:128,maximum:512,minimum:0},tolerance:{type:\"number\",default:.375},cluster:{type:\"boolean\",default:!1},clusterRadius:{type:\"number\",default:50,minimum:0},clusterMaxZoom:{type:\"number\"},clusterProperties:{type:\"*\"},lineMetrics:{type:\"boolean\",default:!1},generateId:{type:\"boolean\",default:!1}},source_video:{type:{required:!0,type:\"enum\",values:{video:{}}},urls:{required:!0,type:\"array\",value:\"string\"},coordinates:{required:!0,type:\"array\",length:4,value:{type:\"array\",length:2,value:\"number\"}}},source_image:{type:{required:!0,type:\"enum\",values:{image:{}}},url:{required:!0,type:\"string\"},coordinates:{required:!0,type:\"array\",length:4,value:{type:\"array\",length:2,value:\"number\"}}},layer:{id:{type:\"string\",required:!0},type:{type:\"enum\",values:{fill:{},line:{},symbol:{},circle:{},heatmap:{},\"fill-extrusion\":{},raster:{},hillshade:{},background:{}},required:!0},metadata:{type:\"*\"},source:{type:\"string\"},\"source-layer\":{type:\"string\"},minzoom:{type:\"number\",minimum:0,maximum:24},maxzoom:{type:\"number\",minimum:0,maximum:24},filter:{type:\"filter\"},layout:{type:\"layout\"},paint:{type:\"paint\"}},layout:[\"layout_fill\",\"layout_line\",\"layout_circle\",\"layout_heatmap\",\"layout_fill-extrusion\",\"layout_symbol\",\"layout_raster\",\"layout_hillshade\",\"layout_background\"],layout_background:{visibility:{type:\"enum\",values:{visible:{},none:{}},default:\"visible\",\"property-type\":\"constant\"}},layout_fill:{\"fill-sort-key\":{type:\"number\",expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},visibility:{type:\"enum\",values:{visible:{},none:{}},default:\"visible\",\"property-type\":\"constant\"}},layout_circle:{\"circle-sort-key\":{type:\"number\",expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},visibility:{type:\"enum\",values:{visible:{},none:{}},default:\"visible\",\"property-type\":\"constant\"}},layout_heatmap:{visibility:{type:\"enum\",values:{visible:{},none:{}},default:\"visible\",\"property-type\":\"constant\"}},\"layout_fill-extrusion\":{visibility:{type:\"enum\",values:{visible:{},none:{}},default:\"visible\",\"property-type\":\"constant\"}},layout_line:{\"line-cap\":{type:\"enum\",values:{butt:{},round:{},square:{}},default:\"butt\",expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"line-join\":{type:\"enum\",values:{bevel:{},round:{},miter:{}},default:\"miter\",expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"line-miter-limit\":{type:\"number\",default:2,requires:[{\"line-join\":\"miter\"}],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"line-round-limit\":{type:\"number\",default:1.05,requires:[{\"line-join\":\"round\"}],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"line-sort-key\":{type:\"number\",expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},visibility:{type:\"enum\",values:{visible:{},none:{}},default:\"visible\",\"property-type\":\"constant\"}},layout_symbol:{\"symbol-placement\":{type:\"enum\",values:{point:{},line:{},\"line-center\":{}},default:\"point\",expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"symbol-spacing\":{type:\"number\",default:250,minimum:1,units:\"pixels\",requires:[{\"symbol-placement\":\"line\"}],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"symbol-avoid-edges\":{type:\"boolean\",default:!1,expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"symbol-sort-key\":{type:\"number\",expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"symbol-z-order\":{type:\"enum\",values:{auto:{},\"viewport-y\":{},source:{}},default:\"auto\",expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-allow-overlap\":{type:\"boolean\",default:!1,requires:[\"icon-image\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-ignore-placement\":{type:\"boolean\",default:!1,requires:[\"icon-image\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-optional\":{type:\"boolean\",default:!1,requires:[\"icon-image\",\"text-field\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-rotation-alignment\":{type:\"enum\",values:{map:{},viewport:{},auto:{}},default:\"auto\",requires:[\"icon-image\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-size\":{type:\"number\",default:1,minimum:0,units:\"factor of the original icon size\",requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"icon-text-fit\":{type:\"enum\",values:{none:{},width:{},height:{},both:{}},default:\"none\",requires:[\"icon-image\",\"text-field\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-text-fit-padding\":{type:\"array\",value:\"number\",length:4,default:[0,0,0,0],units:\"pixels\",requires:[\"icon-image\",\"text-field\",{\"icon-text-fit\":[\"both\",\"width\",\"height\"]}],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-image\":{type:\"string\",tokens:!0,expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"icon-rotate\":{type:\"number\",default:0,period:360,units:\"degrees\",requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"icon-padding\":{type:\"number\",default:2,minimum:0,units:\"pixels\",requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-keep-upright\":{type:\"boolean\",default:!1,requires:[\"icon-image\",{\"icon-rotation-alignment\":\"map\"},{\"symbol-placement\":[\"line\",\"line-center\"]}],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-offset\":{type:\"array\",value:\"number\",length:2,default:[0,0],requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"icon-anchor\":{type:\"enum\",values:{center:{},left:{},right:{},top:{},bottom:{},\"top-left\":{},\"top-right\":{},\"bottom-left\":{},\"bottom-right\":{}},default:\"center\",requires:[\"icon-image\"],expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"icon-pitch-alignment\":{type:\"enum\",values:{map:{},viewport:{},auto:{}},default:\"auto\",requires:[\"icon-image\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-pitch-alignment\":{type:\"enum\",values:{map:{},viewport:{},auto:{}},default:\"auto\",requires:[\"text-field\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-rotation-alignment\":{type:\"enum\",values:{map:{},viewport:{},auto:{}},default:\"auto\",requires:[\"text-field\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-field\":{type:\"formatted\",default:\"\",tokens:!0,expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-font\":{type:\"array\",value:\"string\",default:[\"Open Sans Regular\",\"Arial Unicode MS Regular\"],requires:[\"text-field\"],expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-size\":{type:\"number\",default:16,minimum:0,units:\"pixels\",requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-max-width\":{type:\"number\",default:10,minimum:0,units:\"ems\",requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-line-height\":{type:\"number\",default:1.2,units:\"ems\",requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-letter-spacing\":{type:\"number\",default:0,units:\"ems\",requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-justify\":{type:\"enum\",values:{auto:{},left:{},center:{},right:{}},default:\"center\",requires:[\"text-field\"],expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-radial-offset\":{type:\"number\",units:\"ems\",default:0,requires:[\"text-field\"],\"property-type\":\"data-driven\",expression:{interpolated:!0,parameters:[\"zoom\",\"feature\"]}},\"text-variable-anchor\":{type:\"array\",value:\"enum\",values:{center:{},left:{},right:{},top:{},bottom:{},\"top-left\":{},\"top-right\":{},\"bottom-left\":{},\"bottom-right\":{}},requires:[\"text-field\",{\"symbol-placement\":[\"point\"]}],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-anchor\":{type:\"enum\",values:{center:{},left:{},right:{},top:{},bottom:{},\"top-left\":{},\"top-right\":{},\"bottom-left\":{},\"bottom-right\":{}},default:\"center\",requires:[\"text-field\",{\"!\":\"text-variable-anchor\"}],expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-max-angle\":{type:\"number\",default:45,units:\"degrees\",requires:[\"text-field\",{\"symbol-placement\":[\"line\",\"line-center\"]}],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-writing-mode\":{type:\"array\",value:\"enum\",values:{horizontal:{},vertical:{}},requires:[\"text-field\",{\"symbol-placement\":[\"point\"]}],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-rotate\":{type:\"number\",default:0,period:360,units:\"degrees\",requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-padding\":{type:\"number\",default:2,minimum:0,units:\"pixels\",requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-keep-upright\":{type:\"boolean\",default:!0,requires:[\"text-field\",{\"text-rotation-alignment\":\"map\"},{\"symbol-placement\":[\"line\",\"line-center\"]}],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-transform\":{type:\"enum\",values:{none:{},uppercase:{},lowercase:{}},default:\"none\",requires:[\"text-field\"],expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-offset\":{type:\"array\",value:\"number\",units:\"ems\",length:2,default:[0,0],requires:[\"text-field\",{\"!\":\"text-radial-offset\"},{\"!\":\"text-variable-anchor\"}],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-allow-overlap\":{type:\"boolean\",default:!1,requires:[\"text-field\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-ignore-placement\":{type:\"boolean\",default:!1,requires:[\"text-field\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-optional\":{type:\"boolean\",default:!1,requires:[\"text-field\",\"icon-image\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},visibility:{type:\"enum\",values:{visible:{},none:{}},default:\"visible\",\"property-type\":\"constant\"}},layout_raster:{visibility:{type:\"enum\",values:{visible:{},none:{}},default:\"visible\",\"property-type\":\"constant\"}},layout_hillshade:{visibility:{type:\"enum\",values:{visible:{},none:{}},default:\"visible\",\"property-type\":\"constant\"}},filter:{type:\"array\",value:\"*\"},filter_operator:{type:\"enum\",values:{\"==\":{},\"!=\":{},\">\":{},\">=\":{},\"<\":{},\"<=\":{},in:{},\"!in\":{},all:{},any:{},none:{},has:{},\"!has\":{}}},geometry_type:{type:\"enum\",values:{Point:{},LineString:{},Polygon:{}}},function:{expression:{type:\"expression\"},stops:{type:\"array\",value:\"function_stop\"},base:{type:\"number\",default:1,minimum:0},property:{type:\"string\",default:\"$zoom\"},type:{type:\"enum\",values:{identity:{},exponential:{},interval:{},categorical:{}},default:\"exponential\"},colorSpace:{type:\"enum\",values:{rgb:{},lab:{},hcl:{}},default:\"rgb\"},default:{type:\"*\",required:!1}},function_stop:{type:\"array\",minimum:0,maximum:22,value:[\"number\",\"color\"],length:2},expression:{type:\"array\",value:\"*\",minimum:1},expression_name:{type:\"enum\",values:{let:{group:\"Variable binding\"},var:{group:\"Variable binding\"},literal:{group:\"Types\"},array:{group:\"Types\"},at:{group:\"Lookup\"},case:{group:\"Decision\"},match:{group:\"Decision\"},coalesce:{group:\"Decision\"},step:{group:\"Ramps, scales, curves\"},interpolate:{group:\"Ramps, scales, curves\"},\"interpolate-hcl\":{group:\"Ramps, scales, curves\"},\"interpolate-lab\":{group:\"Ramps, scales, curves\"},ln2:{group:\"Math\"},pi:{group:\"Math\"},e:{group:\"Math\"},typeof:{group:\"Types\"},string:{group:\"Types\"},number:{group:\"Types\"},boolean:{group:\"Types\"},object:{group:\"Types\"},collator:{group:\"Types\"},format:{group:\"Types\"},\"number-format\":{group:\"Types\"},\"to-string\":{group:\"Types\"},\"to-number\":{group:\"Types\"},\"to-boolean\":{group:\"Types\"},\"to-rgba\":{group:\"Color\"},\"to-color\":{group:\"Types\"},rgb:{group:\"Color\"},rgba:{group:\"Color\"},get:{group:\"Lookup\"},has:{group:\"Lookup\"},length:{group:\"Lookup\"},properties:{group:\"Feature data\"},\"feature-state\":{group:\"Feature data\"},\"geometry-type\":{group:\"Feature data\"},id:{group:\"Feature data\"},zoom:{group:\"Zoom\"},\"heatmap-density\":{group:\"Heatmap\"},\"line-progress\":{group:\"Feature data\"},accumulated:{group:\"Feature data\"},\"+\":{group:\"Math\"},\"*\":{group:\"Math\"},\"-\":{group:\"Math\"},\"/\":{group:\"Math\"},\"%\":{group:\"Math\"},\"^\":{group:\"Math\"},sqrt:{group:\"Math\"},log10:{group:\"Math\"},ln:{group:\"Math\"},log2:{group:\"Math\"},sin:{group:\"Math\"},cos:{group:\"Math\"},tan:{group:\"Math\"},asin:{group:\"Math\"},acos:{group:\"Math\"},atan:{group:\"Math\"},min:{group:\"Math\"},max:{group:\"Math\"},round:{group:\"Math\"},abs:{group:\"Math\"},ceil:{group:\"Math\"},floor:{group:\"Math\"},\"==\":{group:\"Decision\"},\"!=\":{group:\"Decision\"},\">\":{group:\"Decision\"},\"<\":{group:\"Decision\"},\">=\":{group:\"Decision\"},\"<=\":{group:\"Decision\"},all:{group:\"Decision\"},any:{group:\"Decision\"},\"!\":{group:\"Decision\"},\"is-supported-script\":{group:\"String\"},upcase:{group:\"String\"},downcase:{group:\"String\"},concat:{group:\"String\"},\"resolved-locale\":{group:\"String\"}}},light:{anchor:{type:\"enum\",default:\"viewport\",values:{map:{},viewport:{}},\"property-type\":\"data-constant\",transition:!1,expression:{interpolated:!1,parameters:[\"zoom\"]}},position:{type:\"array\",default:[1.15,210,30],length:3,value:\"number\",\"property-type\":\"data-constant\",transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]}},color:{type:\"color\",\"property-type\":\"data-constant\",default:\"#ffffff\",expression:{interpolated:!0,parameters:[\"zoom\"]},transition:!0},intensity:{type:\"number\",\"property-type\":\"data-constant\",default:.5,minimum:0,maximum:1,expression:{interpolated:!0,parameters:[\"zoom\"]},transition:!0}},paint:[\"paint_fill\",\"paint_line\",\"paint_circle\",\"paint_heatmap\",\"paint_fill-extrusion\",\"paint_symbol\",\"paint_raster\",\"paint_hillshade\",\"paint_background\"],paint_fill:{\"fill-antialias\":{type:\"boolean\",default:!0,expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"fill-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"fill-color\":{type:\"color\",default:\"#000000\",transition:!0,requires:[{\"!\":\"fill-pattern\"}],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"fill-outline-color\":{type:\"color\",transition:!0,requires:[{\"!\":\"fill-pattern\"},{\"fill-antialias\":!0}],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"fill-translate\":{type:\"array\",value:\"number\",length:2,default:[0,0],transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"fill-translate-anchor\":{type:\"enum\",values:{map:{},viewport:{}},default:\"map\",requires:[\"fill-translate\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"fill-pattern\":{type:\"string\",transition:!0,expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"cross-faded-data-driven\"}},\"paint_fill-extrusion\":{\"fill-extrusion-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"fill-extrusion-color\":{type:\"color\",default:\"#000000\",transition:!0,requires:[{\"!\":\"fill-extrusion-pattern\"}],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"fill-extrusion-translate\":{type:\"array\",value:\"number\",length:2,default:[0,0],transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"fill-extrusion-translate-anchor\":{type:\"enum\",values:{map:{},viewport:{}},default:\"map\",requires:[\"fill-extrusion-translate\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"fill-extrusion-pattern\":{type:\"string\",transition:!0,expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"cross-faded-data-driven\"},\"fill-extrusion-height\":{type:\"number\",default:0,minimum:0,units:\"meters\",transition:!0,expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"fill-extrusion-base\":{type:\"number\",default:0,minimum:0,units:\"meters\",transition:!0,requires:[\"fill-extrusion-height\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"fill-extrusion-vertical-gradient\":{type:\"boolean\",default:!0,transition:!1,expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"}},paint_line:{\"line-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"line-color\":{type:\"color\",default:\"#000000\",transition:!0,requires:[{\"!\":\"line-pattern\"}],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"line-translate\":{type:\"array\",value:\"number\",length:2,default:[0,0],transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"line-translate-anchor\":{type:\"enum\",values:{map:{},viewport:{}},default:\"map\",requires:[\"line-translate\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"line-width\":{type:\"number\",default:1,minimum:0,transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"line-gap-width\":{type:\"number\",default:0,minimum:0,transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"line-offset\":{type:\"number\",default:0,transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"line-blur\":{type:\"number\",default:0,minimum:0,transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"line-dasharray\":{type:\"array\",value:\"number\",minimum:0,transition:!0,units:\"line widths\",requires:[{\"!\":\"line-pattern\"}],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"cross-faded\"},\"line-pattern\":{type:\"string\",transition:!0,expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"cross-faded-data-driven\"},\"line-gradient\":{type:\"color\",transition:!1,requires:[{\"!\":\"line-dasharray\"},{\"!\":\"line-pattern\"},{source:\"geojson\",has:{lineMetrics:!0}}],expression:{interpolated:!0,parameters:[\"line-progress\"]},\"property-type\":\"color-ramp\"}},paint_circle:{\"circle-radius\":{type:\"number\",default:5,minimum:0,transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"circle-color\":{type:\"color\",default:\"#000000\",transition:!0,expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"circle-blur\":{type:\"number\",default:0,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"circle-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"circle-translate\":{type:\"array\",value:\"number\",length:2,default:[0,0],transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"circle-translate-anchor\":{type:\"enum\",values:{map:{},viewport:{}},default:\"map\",requires:[\"circle-translate\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"circle-pitch-scale\":{type:\"enum\",values:{map:{},viewport:{}},default:\"map\",expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"circle-pitch-alignment\":{type:\"enum\",values:{map:{},viewport:{}},default:\"viewport\",expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"circle-stroke-width\":{type:\"number\",default:0,minimum:0,transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"circle-stroke-color\":{type:\"color\",default:\"#000000\",transition:!0,expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"circle-stroke-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"}},paint_heatmap:{\"heatmap-radius\":{type:\"number\",default:30,minimum:1,transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"heatmap-weight\":{type:\"number\",default:1,minimum:0,transition:!1,expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"heatmap-intensity\":{type:\"number\",default:1,minimum:0,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"heatmap-color\":{type:\"color\",default:[\"interpolate\",[\"linear\"],[\"heatmap-density\"],0,\"rgba(0, 0, 255, 0)\",.1,\"royalblue\",.3,\"cyan\",.5,\"lime\",.7,\"yellow\",1,\"red\"],transition:!1,expression:{interpolated:!0,parameters:[\"heatmap-density\"]},\"property-type\":\"color-ramp\"},\"heatmap-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"}},paint_symbol:{\"icon-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"icon-color\":{type:\"color\",default:\"#000000\",transition:!0,requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"icon-halo-color\":{type:\"color\",default:\"rgba(0, 0, 0, 0)\",transition:!0,requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"icon-halo-width\":{type:\"number\",default:0,minimum:0,transition:!0,units:\"pixels\",requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"icon-halo-blur\":{type:\"number\",default:0,minimum:0,transition:!0,units:\"pixels\",requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"icon-translate\":{type:\"array\",value:\"number\",length:2,default:[0,0],transition:!0,units:\"pixels\",requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-translate-anchor\":{type:\"enum\",values:{map:{},viewport:{}},default:\"map\",requires:[\"icon-image\",\"icon-translate\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"text-color\":{type:\"color\",default:\"#000000\",transition:!0,overridable:!0,requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"text-halo-color\":{type:\"color\",default:\"rgba(0, 0, 0, 0)\",transition:!0,requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"text-halo-width\":{type:\"number\",default:0,minimum:0,transition:!0,units:\"pixels\",requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"text-halo-blur\":{type:\"number\",default:0,minimum:0,transition:!0,units:\"pixels\",requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"text-translate\":{type:\"array\",value:\"number\",length:2,default:[0,0],transition:!0,units:\"pixels\",requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-translate-anchor\":{type:\"enum\",values:{map:{},viewport:{}},default:\"map\",requires:[\"text-field\",\"text-translate\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"}},paint_raster:{\"raster-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"raster-hue-rotate\":{type:\"number\",default:0,period:360,transition:!0,units:\"degrees\",expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"raster-brightness-min\":{type:\"number\",default:0,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"raster-brightness-max\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"raster-saturation\":{type:\"number\",default:0,minimum:-1,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"raster-contrast\":{type:\"number\",default:0,minimum:-1,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"raster-resampling\":{type:\"enum\",values:{linear:{},nearest:{}},default:\"linear\",expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"raster-fade-duration\":{type:\"number\",default:300,minimum:0,transition:!1,units:\"milliseconds\",expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"}},paint_hillshade:{\"hillshade-illumination-direction\":{type:\"number\",default:335,minimum:0,maximum:359,transition:!1,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"hillshade-illumination-anchor\":{type:\"enum\",values:{map:{},viewport:{}},default:\"viewport\",expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"hillshade-exaggeration\":{type:\"number\",default:.5,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"hillshade-shadow-color\":{type:\"color\",default:\"#000000\",transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"hillshade-highlight-color\":{type:\"color\",default:\"#FFFFFF\",transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"hillshade-accent-color\":{type:\"color\",default:\"#000000\",transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"}},paint_background:{\"background-color\":{type:\"color\",default:\"#000000\",transition:!0,requires:[{\"!\":\"background-pattern\"}],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"background-pattern\":{type:\"string\",transition:!0,expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"cross-faded\"},\"background-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"}},transition:{duration:{type:\"number\",default:300,minimum:0,units:\"milliseconds\"},delay:{type:\"number\",default:0,minimum:0,units:\"milliseconds\"}},\"property-type\":{\"data-driven\":{type:\"property-type\"},\"cross-faded\":{type:\"property-type\"},\"cross-faded-data-driven\":{type:\"property-type\"},\"color-ramp\":{type:\"property-type\"},\"data-constant\":{type:\"property-type\"},constant:{type:\"property-type\"}}},At=function(t,e,r,n){this.message=(t?t+\": \":\"\")+r,n&&(this.identifier=n),null!=e&&e.__line__&&(this.line=e.__line__)};function Mt(t){var e=t.key,r=t.value;return r?[new At(e,r,\"constants have been deprecated as of v8\")]:[]}function St(t){for(var e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];for(var n=0,a=e;n<a.length;n+=1){var i=a[n];for(var o in i)t[o]=i[o]}return t}function Et(t){return t instanceof Number||t instanceof String||t instanceof Boolean}function Ct(t){return Et(t)?t.valueOf():t}function Lt(t){if(Array.isArray(t))return t.map(Lt);if(t instanceof Object&&!Et(t)){var e={};for(var r in t)e[r]=Lt(t[r]);return e}return Ct(t)}var Pt=function(t){function e(e,r){t.call(this,r),this.message=r,this.key=e}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}(Error),Ot=function(t,e){void 0===e&&(e=[]),this.parent=t,this.bindings={};for(var r=0,n=e;r<n.length;r+=1){var a=n[r],i=a[0],o=a[1];this.bindings[i]=o}};Ot.prototype.concat=function(t){return new Ot(this,t)},Ot.prototype.get=function(t){if(this.bindings[t])return this.bindings[t];if(this.parent)return this.parent.get(t);throw new Error(t+\" not found in scope.\")},Ot.prototype.has=function(t){return!!this.bindings[t]||!!this.parent&&this.parent.has(t)};var It={kind:\"null\"},zt={kind:\"number\"},Dt={kind:\"string\"},Rt={kind:\"boolean\"},Ft={kind:\"color\"},Bt={kind:\"object\"},Nt={kind:\"value\"},jt={kind:\"collator\"},Vt={kind:\"formatted\"};function Ut(t,e){return{kind:\"array\",itemType:t,N:e}}function qt(t){if(\"array\"===t.kind){var e=qt(t.itemType);return\"number\"==typeof t.N?\"array<\"+e+\", \"+t.N+\">\":\"value\"===t.itemType.kind?\"array\":\"array<\"+e+\">\"}return t.kind}var Ht=[It,zt,Dt,Rt,Ft,Vt,Bt,Ut(Nt)];function Gt(t,e){if(\"error\"===e.kind)return null;if(\"array\"===t.kind){if(\"array\"===e.kind&&(0===e.N&&\"value\"===e.itemType.kind||!Gt(t.itemType,e.itemType))&&(\"number\"!=typeof t.N||t.N===e.N))return null}else{if(t.kind===e.kind)return null;if(\"value\"===t.kind)for(var r=0,n=Ht;r<n.length;r+=1)if(!Gt(n[r],e))return null}return\"Expected \"+qt(t)+\" but found \"+qt(e)+\" instead.\"}var Yt=e(function(t,e){var r={transparent:[0,0,0,0],aliceblue:[240,248,255,1],antiquewhite:[250,235,215,1],aqua:[0,255,255,1],aquamarine:[127,255,212,1],azure:[240,255,255,1],beige:[245,245,220,1],bisque:[255,228,196,1],black:[0,0,0,1],blanchedalmond:[255,235,205,1],blue:[0,0,255,1],blueviolet:[138,43,226,1],brown:[165,42,42,1],burlywood:[222,184,135,1],cadetblue:[95,158,160,1],chartreuse:[127,255,0,1],chocolate:[210,105,30,1],coral:[255,127,80,1],cornflowerblue:[100,149,237,1],cornsilk:[255,248,220,1],crimson:[220,20,60,1],cyan:[0,255,255,1],darkblue:[0,0,139,1],darkcyan:[0,139,139,1],darkgoldenrod:[184,134,11,1],darkgray:[169,169,169,1],darkgreen:[0,100,0,1],darkgrey:[169,169,169,1],darkkhaki:[189,183,107,1],darkmagenta:[139,0,139,1],darkolivegreen:[85,107,47,1],darkorange:[255,140,0,1],darkorchid:[153,50,204,1],darkred:[139,0,0,1],darksalmon:[233,150,122,1],darkseagreen:[143,188,143,1],darkslateblue:[72,61,139,1],darkslategray:[47,79,79,1],darkslategrey:[47,79,79,1],darkturquoise:[0,206,209,1],darkviolet:[148,0,211,1],deeppink:[255,20,147,1],deepskyblue:[0,191,255,1],dimgray:[105,105,105,1],dimgrey:[105,105,105,1],dodgerblue:[30,144,255,1],firebrick:[178,34,34,1],floralwhite:[255,250,240,1],forestgreen:[34,139,34,1],fuchsia:[255,0,255,1],gainsboro:[220,220,220,1],ghostwhite:[248,248,255,1],gold:[255,215,0,1],goldenrod:[218,165,32,1],gray:[128,128,128,1],green:[0,128,0,1],greenyellow:[173,255,47,1],grey:[128,128,128,1],honeydew:[240,255,240,1],hotpink:[255,105,180,1],indianred:[205,92,92,1],indigo:[75,0,130,1],ivory:[255,255,240,1],khaki:[240,230,140,1],lavender:[230,230,250,1],lavenderblush:[255,240,245,1],lawngreen:[124,252,0,1],lemonchiffon:[255,250,205,1],lightblue:[173,216,230,1],lightcoral:[240,128,128,1],lightcyan:[224,255,255,1],lightgoldenrodyellow:[250,250,210,1],lightgray:[211,211,211,1],lightgreen:[144,238,144,1],lightgrey:[211,211,211,1],lightpink:[255,182,193,1],lightsalmon:[255,160,122,1],lightseagreen:[32,178,170,1],lightskyblue:[135,206,250,1],lightslategray:[119,136,153,1],lightslategrey:[119,136,153,1],lightsteelblue:[176,196,222,1],lightyellow:[255,255,224,1],lime:[0,255,0,1],limegreen:[50,205,50,1],linen:[250,240,230,1],magenta:[255,0,255,1],maroon:[128,0,0,1],mediumaquamarine:[102,205,170,1],mediumblue:[0,0,205,1],mediumorchid:[186,85,211,1],mediumpurple:[147,112,219,1],mediumseagreen:[60,179,113,1],mediumslateblue:[123,104,238,1],mediumspringgreen:[0,250,154,1],mediumturquoise:[72,209,204,1],mediumvioletred:[199,21,133,1],midnightblue:[25,25,112,1],mintcream:[245,255,250,1],mistyrose:[255,228,225,1],moccasin:[255,228,181,1],navajowhite:[255,222,173,1],navy:[0,0,128,1],oldlace:[253,245,230,1],olive:[128,128,0,1],olivedrab:[107,142,35,1],orange:[255,165,0,1],orangered:[255,69,0,1],orchid:[218,112,214,1],palegoldenrod:[238,232,170,1],palegreen:[152,251,152,1],paleturquoise:[175,238,238,1],palevioletred:[219,112,147,1],papayawhip:[255,239,213,1],peachpuff:[255,218,185,1],peru:[205,133,63,1],pink:[255,192,203,1],plum:[221,160,221,1],powderblue:[176,224,230,1],purple:[128,0,128,1],rebeccapurple:[102,51,153,1],red:[255,0,0,1],rosybrown:[188,143,143,1],royalblue:[65,105,225,1],saddlebrown:[139,69,19,1],salmon:[250,128,114,1],sandybrown:[244,164,96,1],seagreen:[46,139,87,1],seashell:[255,245,238,1],sienna:[160,82,45,1],silver:[192,192,192,1],skyblue:[135,206,235,1],slateblue:[106,90,205,1],slategray:[112,128,144,1],slategrey:[112,128,144,1],snow:[255,250,250,1],springgreen:[0,255,127,1],steelblue:[70,130,180,1],tan:[210,180,140,1],teal:[0,128,128,1],thistle:[216,191,216,1],tomato:[255,99,71,1],turquoise:[64,224,208,1],violet:[238,130,238,1],wheat:[245,222,179,1],white:[255,255,255,1],whitesmoke:[245,245,245,1],yellow:[255,255,0,1],yellowgreen:[154,205,50,1]};function n(t){return(t=Math.round(t))<0?0:t>255?255:t}function a(t){return t<0?0:t>1?1:t}function i(t){return\"%\"===t[t.length-1]?n(parseFloat(t)/100*255):n(parseInt(t))}function o(t){return\"%\"===t[t.length-1]?a(parseFloat(t)/100):a(parseFloat(t))}function s(t,e,r){return r<0?r+=1:r>1&&(r-=1),6*r<1?t+(e-t)*r*6:2*r<1?e:3*r<2?t+(e-t)*(2/3-r)*6:t}try{e.parseCSSColor=function(t){var e,a=t.replace(/ /g,\"\").toLowerCase();if(a in r)return r[a].slice();if(\"#\"===a[0])return 4===a.length?(e=parseInt(a.substr(1),16))>=0&&e<=4095?[(3840&e)>>4|(3840&e)>>8,240&e|(240&e)>>4,15&e|(15&e)<<4,1]:null:7===a.length&&(e=parseInt(a.substr(1),16))>=0&&e<=16777215?[(16711680&e)>>16,(65280&e)>>8,255&e,1]:null;var l=a.indexOf(\"(\"),c=a.indexOf(\")\");if(-1!==l&&c+1===a.length){var u=a.substr(0,l),h=a.substr(l+1,c-(l+1)).split(\",\"),f=1;switch(u){case\"rgba\":if(4!==h.length)return null;f=o(h.pop());case\"rgb\":return 3!==h.length?null:[i(h[0]),i(h[1]),i(h[2]),f];case\"hsla\":if(4!==h.length)return null;f=o(h.pop());case\"hsl\":if(3!==h.length)return null;var p=(parseFloat(h[0])%360+360)%360/360,d=o(h[1]),g=o(h[2]),v=g<=.5?g*(d+1):g+d-g*d,m=2*g-v;return[n(255*s(m,v,p+1/3)),n(255*s(m,v,p)),n(255*s(m,v,p-1/3)),f];default:return null}}return null}}catch(t){}}).parseCSSColor,Wt=function(t,e,r,n){void 0===n&&(n=1),this.r=t,this.g=e,this.b=r,this.a=n};Wt.parse=function(t){if(t){if(t instanceof Wt)return t;if(\"string\"==typeof t){var e=Yt(t);if(e)return new Wt(e[0]/255*e[3],e[1]/255*e[3],e[2]/255*e[3],e[3])}}},Wt.prototype.toString=function(){var t=this.toArray(),e=t[0],r=t[1],n=t[2],a=t[3];return\"rgba(\"+Math.round(e)+\",\"+Math.round(r)+\",\"+Math.round(n)+\",\"+a+\")\"},Wt.prototype.toArray=function(){var t=this.r,e=this.g,r=this.b,n=this.a;return 0===n?[0,0,0,0]:[255*t/n,255*e/n,255*r/n,n]},Wt.black=new Wt(0,0,0,1),Wt.white=new Wt(1,1,1,1),Wt.transparent=new Wt(0,0,0,0),Wt.red=new Wt(1,0,0,1);var Xt=function(t,e,r){this.sensitivity=t?e?\"variant\":\"case\":e?\"accent\":\"base\",this.locale=r,this.collator=new Intl.Collator(this.locale?this.locale:[],{sensitivity:this.sensitivity,usage:\"search\"})};Xt.prototype.compare=function(t,e){return this.collator.compare(t,e)},Xt.prototype.resolvedLocale=function(){return new Intl.Collator(this.locale?this.locale:[]).resolvedOptions().locale};var Zt=function(t,e,r,n){this.text=t,this.scale=e,this.fontStack=r,this.textColor=n},Jt=function(t){this.sections=t};function Kt(t,e,r,n){return\"number\"==typeof t&&t>=0&&t<=255&&\"number\"==typeof e&&e>=0&&e<=255&&\"number\"==typeof r&&r>=0&&r<=255?void 0===n||\"number\"==typeof n&&n>=0&&n<=1?null:\"Invalid rgba value [\"+[t,e,r,n].join(\", \")+\"]: 'a' must be between 0 and 1.\":\"Invalid rgba value [\"+(\"number\"==typeof n?[t,e,r,n]:[t,e,r]).join(\", \")+\"]: 'r', 'g', and 'b' must be between 0 and 255.\"}function Qt(t){if(null===t)return It;if(\"string\"==typeof t)return Dt;if(\"boolean\"==typeof t)return Rt;if(\"number\"==typeof t)return zt;if(t instanceof Wt)return Ft;if(t instanceof Xt)return jt;if(t instanceof Jt)return Vt;if(Array.isArray(t)){for(var e,r=t.length,n=0,a=t;n<a.length;n+=1){var i=Qt(a[n]);if(e){if(e===i)continue;e=Nt;break}e=i}return Ut(e||Nt,r)}return Bt}function $t(t){var e=typeof t;return null===t?\"\":\"string\"===e||\"number\"===e||\"boolean\"===e?String(t):t instanceof Wt||t instanceof Jt?t.toString():JSON.stringify(t)}Jt.fromString=function(t){return new Jt([new Zt(t,null,null,null)])},Jt.prototype.toString=function(){return this.sections.map(function(t){return t.text}).join(\"\")},Jt.prototype.serialize=function(){for(var t=[\"format\"],e=0,r=this.sections;e<r.length;e+=1){var n=r[e];t.push(n.text);var a={};n.fontStack&&(a[\"text-font\"]=[\"literal\",n.fontStack.split(\",\")]),n.scale&&(a[\"font-scale\"]=n.scale),n.textColor&&(a[\"text-color\"]=[\"rgba\"].concat(n.textColor.toArray())),t.push(a)}return t};var te=function(t,e){this.type=t,this.value=e};te.parse=function(t,e){if(2!==t.length)return e.error(\"'literal' expression requires exactly one argument, but found \"+(t.length-1)+\" instead.\");if(!function t(e){if(null===e)return!0;if(\"string\"==typeof e)return!0;if(\"boolean\"==typeof e)return!0;if(\"number\"==typeof e)return!0;if(e instanceof Wt)return!0;if(e instanceof Xt)return!0;if(e instanceof Jt)return!0;if(Array.isArray(e)){for(var r=0,n=e;r<n.length;r+=1)if(!t(n[r]))return!1;return!0}if(\"object\"==typeof e){for(var a in e)if(!t(e[a]))return!1;return!0}return!1}(t[1]))return e.error(\"invalid value\");var r=t[1],n=Qt(r),a=e.expectedType;return\"array\"!==n.kind||0!==n.N||!a||\"array\"!==a.kind||\"number\"==typeof a.N&&0!==a.N||(n=a),new te(n,r)},te.prototype.evaluate=function(){return this.value},te.prototype.eachChild=function(){},te.prototype.possibleOutputs=function(){return[this.value]},te.prototype.serialize=function(){return\"array\"===this.type.kind||\"object\"===this.type.kind?[\"literal\",this.value]:this.value instanceof Wt?[\"rgba\"].concat(this.value.toArray()):this.value instanceof Jt?this.value.serialize():this.value};var ee=function(t){this.name=\"ExpressionEvaluationError\",this.message=t};ee.prototype.toJSON=function(){return this.message};var re={string:Dt,number:zt,boolean:Rt,object:Bt},ne=function(t,e){this.type=t,this.args=e};ne.parse=function(t,e){if(t.length<2)return e.error(\"Expected at least one argument.\");var r,n=1,a=t[0];if(\"array\"===a){var i,o;if(t.length>2){var s=t[1];if(\"string\"!=typeof s||!(s in re)||\"object\"===s)return e.error('The item type argument of \"array\" must be one of string, number, boolean',1);i=re[s],n++}else i=Nt;if(t.length>3){if(null!==t[2]&&(\"number\"!=typeof t[2]||t[2]<0||t[2]!==Math.floor(t[2])))return e.error('The length argument to \"array\" must be a positive integer literal',2);o=t[2],n++}r=Ut(i,o)}else r=re[a];for(var l=[];n<t.length;n++){var c=e.parse(t[n],n,Nt);if(!c)return null;l.push(c)}return new ne(r,l)},ne.prototype.evaluate=function(t){for(var e=0;e<this.args.length;e++){var r=this.args[e].evaluate(t);if(!Gt(this.type,Qt(r)))return r;if(e===this.args.length-1)throw new ee(\"Expected value to be of type \"+qt(this.type)+\", but found \"+qt(Qt(r))+\" instead.\")}return null},ne.prototype.eachChild=function(t){this.args.forEach(t)},ne.prototype.possibleOutputs=function(){var t;return(t=[]).concat.apply(t,this.args.map(function(t){return t.possibleOutputs()}))},ne.prototype.serialize=function(){var t=this.type,e=[t.kind];if(\"array\"===t.kind){var r=t.itemType;if(\"string\"===r.kind||\"number\"===r.kind||\"boolean\"===r.kind){e.push(r.kind);var n=t.N;(\"number\"==typeof n||this.args.length>1)&&e.push(n)}}return e.concat(this.args.map(function(t){return t.serialize()}))};var ae=function(t){this.type=Vt,this.sections=t};ae.parse=function(t,e){if(t.length<3)return e.error(\"Expected at least two arguments.\");if((t.length-1)%2!=0)return e.error(\"Expected an even number of arguments.\");for(var r=[],n=1;n<t.length-1;n+=2){var a=e.parse(t[n],1,Nt);if(!a)return null;var i=a.type.kind;if(\"string\"!==i&&\"value\"!==i&&\"null\"!==i)return e.error(\"Formatted text type must be 'string', 'value', or 'null'.\");var o=t[n+1];if(\"object\"!=typeof o||Array.isArray(o))return e.error(\"Format options argument must be an object.\");var s=null;if(o[\"font-scale\"]&&!(s=e.parse(o[\"font-scale\"],1,zt)))return null;var l=null;if(o[\"text-font\"]&&!(l=e.parse(o[\"text-font\"],1,Ut(Dt))))return null;var c=null;if(o[\"text-color\"]&&!(c=e.parse(o[\"text-color\"],1,Ft)))return null;r.push({text:a,scale:s,font:l,textColor:c})}return new ae(r)},ae.prototype.evaluate=function(t){return new Jt(this.sections.map(function(e){return new Zt($t(e.text.evaluate(t)),e.scale?e.scale.evaluate(t):null,e.font?e.font.evaluate(t).join(\",\"):null,e.textColor?e.textColor.evaluate(t):null)}))},ae.prototype.eachChild=function(t){for(var e=0,r=this.sections;e<r.length;e+=1){var n=r[e];t(n.text),n.scale&&t(n.scale),n.font&&t(n.font),n.textColor&&t(n.textColor)}},ae.prototype.possibleOutputs=function(){return[void 0]},ae.prototype.serialize=function(){for(var t=[\"format\"],e=0,r=this.sections;e<r.length;e+=1){var n=r[e];t.push(n.text.serialize());var a={};n.scale&&(a[\"font-scale\"]=n.scale.serialize()),n.font&&(a[\"text-font\"]=n.font.serialize()),n.textColor&&(a[\"text-color\"]=n.textColor.serialize()),t.push(a)}return t};var ie={\"to-boolean\":Rt,\"to-color\":Ft,\"to-number\":zt,\"to-string\":Dt},oe=function(t,e){this.type=t,this.args=e};oe.parse=function(t,e){if(t.length<2)return e.error(\"Expected at least one argument.\");var r=t[0];if((\"to-boolean\"===r||\"to-string\"===r)&&2!==t.length)return e.error(\"Expected one argument.\");for(var n=ie[r],a=[],i=1;i<t.length;i++){var o=e.parse(t[i],i,Nt);if(!o)return null;a.push(o)}return new oe(n,a)},oe.prototype.evaluate=function(t){if(\"boolean\"===this.type.kind)return Boolean(this.args[0].evaluate(t));if(\"color\"===this.type.kind){for(var e,r,n=0,a=this.args;n<a.length;n+=1){if(r=null,(e=a[n].evaluate(t))instanceof Wt)return e;if(\"string\"==typeof e){var i=t.parseColor(e);if(i)return i}else if(Array.isArray(e)&&!(r=e.length<3||e.length>4?\"Invalid rbga value \"+JSON.stringify(e)+\": expected an array containing either three or four numeric values.\":Kt(e[0],e[1],e[2],e[3])))return new Wt(e[0]/255,e[1]/255,e[2]/255,e[3])}throw new ee(r||\"Could not parse color from value '\"+(\"string\"==typeof e?e:String(JSON.stringify(e)))+\"'\")}if(\"number\"===this.type.kind){for(var o=null,s=0,l=this.args;s<l.length;s+=1){if(null===(o=l[s].evaluate(t)))return 0;var c=Number(o);if(!isNaN(c))return c}throw new ee(\"Could not convert \"+JSON.stringify(o)+\" to number.\")}return\"formatted\"===this.type.kind?Jt.fromString($t(this.args[0].evaluate(t))):$t(this.args[0].evaluate(t))},oe.prototype.eachChild=function(t){this.args.forEach(t)},oe.prototype.possibleOutputs=function(){var t;return(t=[]).concat.apply(t,this.args.map(function(t){return t.possibleOutputs()}))},oe.prototype.serialize=function(){if(\"formatted\"===this.type.kind)return new ae([{text:this.args[0],scale:null,font:null,textColor:null}]).serialize();var t=[\"to-\"+this.type.kind];return this.eachChild(function(e){t.push(e.serialize())}),t};var se=[\"Unknown\",\"Point\",\"LineString\",\"Polygon\"],le=function(){this.globals=null,this.feature=null,this.featureState=null,this.formattedSection=null,this._parseColorCache={}};le.prototype.id=function(){return this.feature&&\"id\"in this.feature?this.feature.id:null},le.prototype.geometryType=function(){return this.feature?\"number\"==typeof this.feature.type?se[this.feature.type]:this.feature.type:null},le.prototype.properties=function(){return this.feature&&this.feature.properties||{}},le.prototype.parseColor=function(t){var e=this._parseColorCache[t];return e||(e=this._parseColorCache[t]=Wt.parse(t)),e};var ce=function(t,e,r,n){this.name=t,this.type=e,this._evaluate=r,this.args=n};ce.prototype.evaluate=function(t){return this._evaluate(t,this.args)},ce.prototype.eachChild=function(t){this.args.forEach(t)},ce.prototype.possibleOutputs=function(){return[void 0]},ce.prototype.serialize=function(){return[this.name].concat(this.args.map(function(t){return t.serialize()}))},ce.parse=function(t,e){var r,n=t[0],a=ce.definitions[n];if(!a)return e.error('Unknown expression \"'+n+'\". If you wanted a literal array, use [\"literal\", [...]].',0);for(var i=Array.isArray(a)?a[0]:a.type,o=Array.isArray(a)?[[a[1],a[2]]]:a.overloads,s=o.filter(function(e){var r=e[0];return!Array.isArray(r)||r.length===t.length-1}),l=null,c=0,u=s;c<u.length;c+=1){var h=u[c],f=h[0],p=h[1];l=new ge(e.registry,e.path,null,e.scope);for(var d=[],g=!1,v=1;v<t.length;v++){var m=t[v],y=Array.isArray(f)?f[v-1]:f.type,x=l.parse(m,1+d.length,y);if(!x){g=!0;break}d.push(x)}if(!g)if(Array.isArray(f)&&f.length!==d.length)l.error(\"Expected \"+f.length+\" arguments, but found \"+d.length+\" instead.\");else{for(var b=0;b<d.length;b++){var _=Array.isArray(f)?f[b]:f.type,w=d[b];l.concat(b+1).checkSubtype(_,w.type)}if(0===l.errors.length)return new ce(n,i,p,d)}}if(1===s.length)(r=e.errors).push.apply(r,l.errors);else{for(var k=(s.length?s:o).map(function(t){var e;return e=t[0],Array.isArray(e)?\"(\"+e.map(qt).join(\", \")+\")\":\"(\"+qt(e.type)+\"...)\"}).join(\" | \"),T=[],A=1;A<t.length;A++){var M=e.parse(t[A],1+T.length);if(!M)return null;T.push(qt(M.type))}e.error(\"Expected arguments of type \"+k+\", but found (\"+T.join(\", \")+\") instead.\")}return null},ce.register=function(t,e){for(var r in ce.definitions=e,e)t[r]=ce};var ue=function(t,e,r){this.type=jt,this.locale=r,this.caseSensitive=t,this.diacriticSensitive=e};function he(t){if(t instanceof ce){if(\"get\"===t.name&&1===t.args.length)return!1;if(\"feature-state\"===t.name)return!1;if(\"has\"===t.name&&1===t.args.length)return!1;if(\"properties\"===t.name||\"geometry-type\"===t.name||\"id\"===t.name)return!1;if(/^filter-/.test(t.name))return!1}var e=!0;return t.eachChild(function(t){e&&!he(t)&&(e=!1)}),e}function fe(t){if(t instanceof ce&&\"feature-state\"===t.name)return!1;var e=!0;return t.eachChild(function(t){e&&!fe(t)&&(e=!1)}),e}function pe(t,e){if(t instanceof ce&&e.indexOf(t.name)>=0)return!1;var r=!0;return t.eachChild(function(t){r&&!pe(t,e)&&(r=!1)}),r}ue.parse=function(t,e){if(2!==t.length)return e.error(\"Expected one argument.\");var r=t[1];if(\"object\"!=typeof r||Array.isArray(r))return e.error(\"Collator options argument must be an object.\");var n=e.parse(void 0!==r[\"case-sensitive\"]&&r[\"case-sensitive\"],1,Rt);if(!n)return null;var a=e.parse(void 0!==r[\"diacritic-sensitive\"]&&r[\"diacritic-sensitive\"],1,Rt);if(!a)return null;var i=null;return r.locale&&!(i=e.parse(r.locale,1,Dt))?null:new ue(n,a,i)},ue.prototype.evaluate=function(t){return new Xt(this.caseSensitive.evaluate(t),this.diacriticSensitive.evaluate(t),this.locale?this.locale.evaluate(t):null)},ue.prototype.eachChild=function(t){t(this.caseSensitive),t(this.diacriticSensitive),this.locale&&t(this.locale)},ue.prototype.possibleOutputs=function(){return[void 0]},ue.prototype.serialize=function(){var t={};return t[\"case-sensitive\"]=this.caseSensitive.serialize(),t[\"diacritic-sensitive\"]=this.diacriticSensitive.serialize(),this.locale&&(t.locale=this.locale.serialize()),[\"collator\",t]};var de=function(t,e){this.type=e.type,this.name=t,this.boundExpression=e};de.parse=function(t,e){if(2!==t.length||\"string\"!=typeof t[1])return e.error(\"'var' expression requires exactly one string literal argument.\");var r=t[1];return e.scope.has(r)?new de(r,e.scope.get(r)):e.error('Unknown variable \"'+r+'\". Make sure \"'+r+'\" has been bound in an enclosing \"let\" expression before using it.',1)},de.prototype.evaluate=function(t){return this.boundExpression.evaluate(t)},de.prototype.eachChild=function(){},de.prototype.possibleOutputs=function(){return[void 0]},de.prototype.serialize=function(){return[\"var\",this.name]};var ge=function(t,e,r,n,a){void 0===e&&(e=[]),void 0===n&&(n=new Ot),void 0===a&&(a=[]),this.registry=t,this.path=e,this.key=e.map(function(t){return\"[\"+t+\"]\"}).join(\"\"),this.scope=n,this.errors=a,this.expectedType=r};function ve(t,e){for(var r,n,a=t.length-1,i=0,o=a,s=0;i<=o;)if(r=t[s=Math.floor((i+o)/2)],n=t[s+1],r<=e){if(s===a||e<n)return s;i=s+1}else{if(!(r>e))throw new ee(\"Input is not a number.\");o=s-1}return 0}ge.prototype.parse=function(t,e,r,n,a){return void 0===a&&(a={}),e?this.concat(e,r,n)._parse(t,a):this._parse(t,a)},ge.prototype._parse=function(t,e){function r(t,e,r){return\"assert\"===r?new ne(e,[t]):\"coerce\"===r?new oe(e,[t]):t}if(null!==t&&\"string\"!=typeof t&&\"boolean\"!=typeof t&&\"number\"!=typeof t||(t=[\"literal\",t]),Array.isArray(t)){if(0===t.length)return this.error('Expected an array with at least one element. If you wanted a literal array, use [\"literal\", []].');var n=t[0];if(\"string\"!=typeof n)return this.error(\"Expression name must be a string, but found \"+typeof n+' instead. If you wanted a literal array, use [\"literal\", [...]].',0),null;var a=this.registry[n];if(a){var i=a.parse(t,this);if(!i)return null;if(this.expectedType){var o=this.expectedType,s=i.type;if(\"string\"!==o.kind&&\"number\"!==o.kind&&\"boolean\"!==o.kind&&\"object\"!==o.kind&&\"array\"!==o.kind||\"value\"!==s.kind)if(\"color\"!==o.kind&&\"formatted\"!==o.kind||\"value\"!==s.kind&&\"string\"!==s.kind){if(this.checkSubtype(o,s))return null}else i=r(i,o,e.typeAnnotation||\"coerce\");else i=r(i,o,e.typeAnnotation||\"assert\")}if(!(i instanceof te)&&function t(e){if(e instanceof de)return t(e.boundExpression);if(e instanceof ce&&\"error\"===e.name)return!1;if(e instanceof ue)return!1;var r=e instanceof oe||e instanceof ne,n=!0;return e.eachChild(function(e){n=r?n&&t(e):n&&e instanceof te}),!!n&&(he(e)&&pe(e,[\"zoom\",\"heatmap-density\",\"line-progress\",\"accumulated\",\"is-supported-script\"]))}(i)){var l=new le;try{i=new te(i.type,i.evaluate(l))}catch(t){return this.error(t.message),null}}return i}return this.error('Unknown expression \"'+n+'\". If you wanted a literal array, use [\"literal\", [...]].',0)}return void 0===t?this.error(\"'undefined' value invalid. Use null instead.\"):\"object\"==typeof t?this.error('Bare objects invalid. Use [\"literal\", {...}] instead.'):this.error(\"Expected an array, but found \"+typeof t+\" instead.\")},ge.prototype.concat=function(t,e,r){var n=\"number\"==typeof t?this.path.concat(t):this.path,a=r?this.scope.concat(r):this.scope;return new ge(this.registry,n,e||null,a,this.errors)},ge.prototype.error=function(t){for(var e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];var n=\"\"+this.key+e.map(function(t){return\"[\"+t+\"]\"}).join(\"\");this.errors.push(new Pt(n,t))},ge.prototype.checkSubtype=function(t,e){var r=Gt(t,e);return r&&this.error(r),r};var me=function(t,e,r){this.type=t,this.input=e,this.labels=[],this.outputs=[];for(var n=0,a=r;n<a.length;n+=1){var i=a[n],o=i[0],s=i[1];this.labels.push(o),this.outputs.push(s)}};function ye(t,e,r){return t*(1-r)+e*r}me.parse=function(t,e){if(t.length-1<4)return e.error(\"Expected at least 4 arguments, but found only \"+(t.length-1)+\".\");if((t.length-1)%2!=0)return e.error(\"Expected an even number of arguments.\");var r=e.parse(t[1],1,zt);if(!r)return null;var n=[],a=null;e.expectedType&&\"value\"!==e.expectedType.kind&&(a=e.expectedType);for(var i=1;i<t.length;i+=2){var o=1===i?-1/0:t[i],s=t[i+1],l=i,c=i+1;if(\"number\"!=typeof o)return e.error('Input/output pairs for \"step\" expressions must be defined using literal numeric values (not computed expressions) for the input values.',l);if(n.length&&n[n.length-1][0]>=o)return e.error('Input/output pairs for \"step\" expressions must be arranged with input values in strictly ascending order.',l);var u=e.parse(s,c,a);if(!u)return null;a=a||u.type,n.push([o,u])}return new me(a,r,n)},me.prototype.evaluate=function(t){var e=this.labels,r=this.outputs;if(1===e.length)return r[0].evaluate(t);var n=this.input.evaluate(t);if(n<=e[0])return r[0].evaluate(t);var a=e.length;return n>=e[a-1]?r[a-1].evaluate(t):r[ve(e,n)].evaluate(t)},me.prototype.eachChild=function(t){t(this.input);for(var e=0,r=this.outputs;e<r.length;e+=1)t(r[e])},me.prototype.possibleOutputs=function(){var t;return(t=[]).concat.apply(t,this.outputs.map(function(t){return t.possibleOutputs()}))},me.prototype.serialize=function(){for(var t=[\"step\",this.input.serialize()],e=0;e<this.labels.length;e++)e>0&&t.push(this.labels[e]),t.push(this.outputs[e].serialize());return t};var xe=Object.freeze({number:ye,color:function(t,e,r){return new Wt(ye(t.r,e.r,r),ye(t.g,e.g,r),ye(t.b,e.b,r),ye(t.a,e.a,r))},array:function(t,e,r){return t.map(function(t,n){return ye(t,e[n],r)})}}),be=.95047,_e=1,we=1.08883,ke=4/29,Te=6/29,Ae=3*Te*Te,Me=Te*Te*Te,Se=Math.PI/180,Ee=180/Math.PI;function Ce(t){return t>Me?Math.pow(t,1/3):t/Ae+ke}function Le(t){return t>Te?t*t*t:Ae*(t-ke)}function Pe(t){return 255*(t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055)}function Oe(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function Ie(t){var e=Oe(t.r),r=Oe(t.g),n=Oe(t.b),a=Ce((.4124564*e+.3575761*r+.1804375*n)/be),i=Ce((.2126729*e+.7151522*r+.072175*n)/_e);return{l:116*i-16,a:500*(a-i),b:200*(i-Ce((.0193339*e+.119192*r+.9503041*n)/we)),alpha:t.a}}function ze(t){var e=(t.l+16)/116,r=isNaN(t.a)?e:e+t.a/500,n=isNaN(t.b)?e:e-t.b/200;return e=_e*Le(e),r=be*Le(r),n=we*Le(n),new Wt(Pe(3.2404542*r-1.5371385*e-.4985314*n),Pe(-.969266*r+1.8760108*e+.041556*n),Pe(.0556434*r-.2040259*e+1.0572252*n),t.alpha)}var De={forward:Ie,reverse:ze,interpolate:function(t,e,r){return{l:ye(t.l,e.l,r),a:ye(t.a,e.a,r),b:ye(t.b,e.b,r),alpha:ye(t.alpha,e.alpha,r)}}},Re={forward:function(t){var e=Ie(t),r=e.l,n=e.a,a=e.b,i=Math.atan2(a,n)*Ee;return{h:i<0?i+360:i,c:Math.sqrt(n*n+a*a),l:r,alpha:t.a}},reverse:function(t){var e=t.h*Se,r=t.c;return ze({l:t.l,a:Math.cos(e)*r,b:Math.sin(e)*r,alpha:t.alpha})},interpolate:function(t,e,r){return{h:function(t,e,r){var n=e-t;return t+r*(n>180||n<-180?n-360*Math.round(n/360):n)}(t.h,e.h,r),c:ye(t.c,e.c,r),l:ye(t.l,e.l,r),alpha:ye(t.alpha,e.alpha,r)}}},Fe=Object.freeze({lab:De,hcl:Re}),Be=function(t,e,r,n,a){this.type=t,this.operator=e,this.interpolation=r,this.input=n,this.labels=[],this.outputs=[];for(var i=0,o=a;i<o.length;i+=1){var s=o[i],l=s[0],c=s[1];this.labels.push(l),this.outputs.push(c)}};function Ne(t,e,r,n){var a=n-r,i=t-r;return 0===a?0:1===e?i/a:(Math.pow(e,i)-1)/(Math.pow(e,a)-1)}Be.interpolationFactor=function(t,e,n,a){var i=0;if(\"exponential\"===t.name)i=Ne(e,t.base,n,a);else if(\"linear\"===t.name)i=Ne(e,1,n,a);else if(\"cubic-bezier\"===t.name){var o=t.controlPoints;i=new r(o[0],o[1],o[2],o[3]).solve(Ne(e,1,n,a))}return i},Be.parse=function(t,e){var r=t[0],n=t[1],a=t[2],i=t.slice(3);if(!Array.isArray(n)||0===n.length)return e.error(\"Expected an interpolation type expression.\",1);if(\"linear\"===n[0])n={name:\"linear\"};else if(\"exponential\"===n[0]){var o=n[1];if(\"number\"!=typeof o)return e.error(\"Exponential interpolation requires a numeric base.\",1,1);n={name:\"exponential\",base:o}}else{if(\"cubic-bezier\"!==n[0])return e.error(\"Unknown interpolation type \"+String(n[0]),1,0);var s=n.slice(1);if(4!==s.length||s.some(function(t){return\"number\"!=typeof t||t<0||t>1}))return e.error(\"Cubic bezier interpolation requires four numeric arguments with values between 0 and 1.\",1);n={name:\"cubic-bezier\",controlPoints:s}}if(t.length-1<4)return e.error(\"Expected at least 4 arguments, but found only \"+(t.length-1)+\".\");if((t.length-1)%2!=0)return e.error(\"Expected an even number of arguments.\");if(!(a=e.parse(a,2,zt)))return null;var l=[],c=null;\"interpolate-hcl\"===r||\"interpolate-lab\"===r?c=Ft:e.expectedType&&\"value\"!==e.expectedType.kind&&(c=e.expectedType);for(var u=0;u<i.length;u+=2){var h=i[u],f=i[u+1],p=u+3,d=u+4;if(\"number\"!=typeof h)return e.error('Input/output pairs for \"interpolate\" expressions must be defined using literal numeric values (not computed expressions) for the input values.',p);if(l.length&&l[l.length-1][0]>=h)return e.error('Input/output pairs for \"interpolate\" expressions must be arranged with input values in strictly ascending order.',p);var g=e.parse(f,d,c);if(!g)return null;c=c||g.type,l.push([h,g])}return\"number\"===c.kind||\"color\"===c.kind||\"array\"===c.kind&&\"number\"===c.itemType.kind&&\"number\"==typeof c.N?new Be(c,r,n,a,l):e.error(\"Type \"+qt(c)+\" is not interpolatable.\")},Be.prototype.evaluate=function(t){var e=this.labels,r=this.outputs;if(1===e.length)return r[0].evaluate(t);var n=this.input.evaluate(t);if(n<=e[0])return r[0].evaluate(t);var a=e.length;if(n>=e[a-1])return r[a-1].evaluate(t);var i=ve(e,n),o=e[i],s=e[i+1],l=Be.interpolationFactor(this.interpolation,n,o,s),c=r[i].evaluate(t),u=r[i+1].evaluate(t);return\"interpolate\"===this.operator?xe[this.type.kind.toLowerCase()](c,u,l):\"interpolate-hcl\"===this.operator?Re.reverse(Re.interpolate(Re.forward(c),Re.forward(u),l)):De.reverse(De.interpolate(De.forward(c),De.forward(u),l))},Be.prototype.eachChild=function(t){t(this.input);for(var e=0,r=this.outputs;e<r.length;e+=1)t(r[e])},Be.prototype.possibleOutputs=function(){var t;return(t=[]).concat.apply(t,this.outputs.map(function(t){return t.possibleOutputs()}))},Be.prototype.serialize=function(){var t;t=\"linear\"===this.interpolation.name?[\"linear\"]:\"exponential\"===this.interpolation.name?1===this.interpolation.base?[\"linear\"]:[\"exponential\",this.interpolation.base]:[\"cubic-bezier\"].concat(this.interpolation.controlPoints);for(var e=[this.operator,t,this.input.serialize()],r=0;r<this.labels.length;r++)e.push(this.labels[r],this.outputs[r].serialize());return e};var je=function(t,e){this.type=t,this.args=e};je.parse=function(t,e){if(t.length<2)return e.error(\"Expectected at least one argument.\");var r=null,n=e.expectedType;n&&\"value\"!==n.kind&&(r=n);for(var a=[],i=0,o=t.slice(1);i<o.length;i+=1){var s=o[i],l=e.parse(s,1+a.length,r,void 0,{typeAnnotation:\"omit\"});if(!l)return null;r=r||l.type,a.push(l)}var c=n&&a.some(function(t){return Gt(n,t.type)});return new je(c?Nt:r,a)},je.prototype.evaluate=function(t){for(var e=null,r=0,n=this.args;r<n.length&&null===(e=n[r].evaluate(t));r+=1);return e},je.prototype.eachChild=function(t){this.args.forEach(t)},je.prototype.possibleOutputs=function(){var t;return(t=[]).concat.apply(t,this.args.map(function(t){return t.possibleOutputs()}))},je.prototype.serialize=function(){var t=[\"coalesce\"];return this.eachChild(function(e){t.push(e.serialize())}),t};var Ve=function(t,e){this.type=e.type,this.bindings=[].concat(t),this.result=e};Ve.prototype.evaluate=function(t){return this.result.evaluate(t)},Ve.prototype.eachChild=function(t){for(var e=0,r=this.bindings;e<r.length;e+=1)t(r[e][1]);t(this.result)},Ve.parse=function(t,e){if(t.length<4)return e.error(\"Expected at least 3 arguments, but found \"+(t.length-1)+\" instead.\");for(var r=[],n=1;n<t.length-1;n+=2){var a=t[n];if(\"string\"!=typeof a)return e.error(\"Expected string, but found \"+typeof a+\" instead.\",n);if(/[^a-zA-Z0-9_]/.test(a))return e.error(\"Variable names must contain only alphanumeric characters or '_'.\",n);var i=e.parse(t[n+1],n+1);if(!i)return null;r.push([a,i])}var o=e.parse(t[t.length-1],t.length-1,e.expectedType,r);return o?new Ve(r,o):null},Ve.prototype.possibleOutputs=function(){return this.result.possibleOutputs()},Ve.prototype.serialize=function(){for(var t=[\"let\"],e=0,r=this.bindings;e<r.length;e+=1){var n=r[e],a=n[0],i=n[1];t.push(a,i.serialize())}return t.push(this.result.serialize()),t};var Ue=function(t,e,r){this.type=t,this.index=e,this.input=r};Ue.parse=function(t,e){if(3!==t.length)return e.error(\"Expected 2 arguments, but found \"+(t.length-1)+\" instead.\");var r=e.parse(t[1],1,zt),n=e.parse(t[2],2,Ut(e.expectedType||Nt));if(!r||!n)return null;var a=n.type;return new Ue(a.itemType,r,n)},Ue.prototype.evaluate=function(t){var e=this.index.evaluate(t),r=this.input.evaluate(t);if(e<0)throw new ee(\"Array index out of bounds: \"+e+\" < 0.\");if(e>=r.length)throw new ee(\"Array index out of bounds: \"+e+\" > \"+(r.length-1)+\".\");if(e!==Math.floor(e))throw new ee(\"Array index must be an integer, but found \"+e+\" instead.\");return r[e]},Ue.prototype.eachChild=function(t){t(this.index),t(this.input)},Ue.prototype.possibleOutputs=function(){return[void 0]},Ue.prototype.serialize=function(){return[\"at\",this.index.serialize(),this.input.serialize()]};var qe=function(t,e,r,n,a,i){this.inputType=t,this.type=e,this.input=r,this.cases=n,this.outputs=a,this.otherwise=i};qe.parse=function(t,e){if(t.length<5)return e.error(\"Expected at least 4 arguments, but found only \"+(t.length-1)+\".\");if(t.length%2!=1)return e.error(\"Expected an even number of arguments.\");var r,n;e.expectedType&&\"value\"!==e.expectedType.kind&&(n=e.expectedType);for(var a={},i=[],o=2;o<t.length-1;o+=2){var s=t[o],l=t[o+1];Array.isArray(s)||(s=[s]);var c=e.concat(o);if(0===s.length)return c.error(\"Expected at least one branch label.\");for(var u=0,h=s;u<h.length;u+=1){var f=h[u];if(\"number\"!=typeof f&&\"string\"!=typeof f)return c.error(\"Branch labels must be numbers or strings.\");if(\"number\"==typeof f&&Math.abs(f)>Number.MAX_SAFE_INTEGER)return c.error(\"Branch labels must be integers no larger than \"+Number.MAX_SAFE_INTEGER+\".\");if(\"number\"==typeof f&&Math.floor(f)!==f)return c.error(\"Numeric branch labels must be integer values.\");if(r){if(c.checkSubtype(r,Qt(f)))return null}else r=Qt(f);if(void 0!==a[String(f)])return c.error(\"Branch labels must be unique.\");a[String(f)]=i.length}var p=e.parse(l,o,n);if(!p)return null;n=n||p.type,i.push(p)}var d=e.parse(t[1],1,Nt);if(!d)return null;var g=e.parse(t[t.length-1],t.length-1,n);return g?\"value\"!==d.type.kind&&e.concat(1).checkSubtype(r,d.type)?null:new qe(r,n,d,a,i,g):null},qe.prototype.evaluate=function(t){var e=this.input.evaluate(t);return(Qt(e)===this.inputType&&this.outputs[this.cases[e]]||this.otherwise).evaluate(t)},qe.prototype.eachChild=function(t){t(this.input),this.outputs.forEach(t),t(this.otherwise)},qe.prototype.possibleOutputs=function(){var t;return(t=[]).concat.apply(t,this.outputs.map(function(t){return t.possibleOutputs()})).concat(this.otherwise.possibleOutputs())},qe.prototype.serialize=function(){for(var t=this,e=[\"match\",this.input.serialize()],r=[],n={},a=0,i=Object.keys(this.cases).sort();a<i.length;a+=1){var o=i[a];void 0===(h=n[this.cases[o]])?(n[this.cases[o]]=r.length,r.push([this.cases[o],[o]])):r[h][1].push(o)}for(var s=function(e){return\"number\"===t.inputType.kind?Number(e):e},l=0,c=r;l<c.length;l+=1){var u=c[l],h=u[0],f=u[1];1===f.length?e.push(s(f[0])):e.push(f.map(s)),e.push(this.outputs[outputIndex$1].serialize())}return e.push(this.otherwise.serialize()),e};var He=function(t,e,r){this.type=t,this.branches=e,this.otherwise=r};function Ge(t,e){return\"==\"===t||\"!=\"===t?\"boolean\"===e.kind||\"string\"===e.kind||\"number\"===e.kind||\"null\"===e.kind||\"value\"===e.kind:\"string\"===e.kind||\"number\"===e.kind||\"value\"===e.kind}function Ye(t,e,r,n){return 0===n.compare(e,r)}function We(t,e,r){var n=\"==\"!==t&&\"!=\"!==t;return function(){function a(t,e,r){this.type=Rt,this.lhs=t,this.rhs=e,this.collator=r,this.hasUntypedArgument=\"value\"===t.type.kind||\"value\"===e.type.kind}return a.parse=function(t,e){if(3!==t.length&&4!==t.length)return e.error(\"Expected two or three arguments.\");var r=t[0],i=e.parse(t[1],1,Nt);if(!i)return null;if(!Ge(r,i.type))return e.concat(1).error('\"'+r+\"\\\" comparisons are not supported for type '\"+qt(i.type)+\"'.\");var o=e.parse(t[2],2,Nt);if(!o)return null;if(!Ge(r,o.type))return e.concat(2).error('\"'+r+\"\\\" comparisons are not supported for type '\"+qt(o.type)+\"'.\");if(i.type.kind!==o.type.kind&&\"value\"!==i.type.kind&&\"value\"!==o.type.kind)return e.error(\"Cannot compare types '\"+qt(i.type)+\"' and '\"+qt(o.type)+\"'.\");n&&(\"value\"===i.type.kind&&\"value\"!==o.type.kind?i=new ne(o.type,[i]):\"value\"!==i.type.kind&&\"value\"===o.type.kind&&(o=new ne(i.type,[o])));var s=null;if(4===t.length){if(\"string\"!==i.type.kind&&\"string\"!==o.type.kind&&\"value\"!==i.type.kind&&\"value\"!==o.type.kind)return e.error(\"Cannot use collator to compare non-string types.\");if(!(s=e.parse(t[3],3,jt)))return null}return new a(i,o,s)},a.prototype.evaluate=function(a){var i=this.lhs.evaluate(a),o=this.rhs.evaluate(a);if(n&&this.hasUntypedArgument){var s=Qt(i),l=Qt(o);if(s.kind!==l.kind||\"string\"!==s.kind&&\"number\"!==s.kind)throw new ee('Expected arguments for \"'+t+'\" to be (string, string) or (number, number), but found ('+s.kind+\", \"+l.kind+\") instead.\")}if(this.collator&&!n&&this.hasUntypedArgument){var c=Qt(i),u=Qt(o);if(\"string\"!==c.kind||\"string\"!==u.kind)return e(a,i,o)}return this.collator?r(a,i,o,this.collator.evaluate(a)):e(a,i,o)},a.prototype.eachChild=function(t){t(this.lhs),t(this.rhs),this.collator&&t(this.collator)},a.prototype.possibleOutputs=function(){return[!0,!1]},a.prototype.serialize=function(){var e=[t];return this.eachChild(function(t){e.push(t.serialize())}),e},a}()}He.parse=function(t,e){if(t.length<4)return e.error(\"Expected at least 3 arguments, but found only \"+(t.length-1)+\".\");if(t.length%2!=0)return e.error(\"Expected an odd number of arguments.\");var r;e.expectedType&&\"value\"!==e.expectedType.kind&&(r=e.expectedType);for(var n=[],a=1;a<t.length-1;a+=2){var i=e.parse(t[a],a,Rt);if(!i)return null;var o=e.parse(t[a+1],a+1,r);if(!o)return null;n.push([i,o]),r=r||o.type}var s=e.parse(t[t.length-1],t.length-1,r);return s?new He(r,n,s):null},He.prototype.evaluate=function(t){for(var e=0,r=this.branches;e<r.length;e+=1){var n=r[e],a=n[0],i=n[1];if(a.evaluate(t))return i.evaluate(t)}return this.otherwise.evaluate(t)},He.prototype.eachChild=function(t){for(var e=0,r=this.branches;e<r.length;e+=1){var n=r[e],a=n[0],i=n[1];t(a),t(i)}t(this.otherwise)},He.prototype.possibleOutputs=function(){var t;return(t=[]).concat.apply(t,this.branches.map(function(t){return t[0],t[1].possibleOutputs()})).concat(this.otherwise.possibleOutputs())},He.prototype.serialize=function(){var t=[\"case\"];return this.eachChild(function(e){t.push(e.serialize())}),t};var Xe=We(\"==\",function(t,e,r){return e===r},Ye),Ze=We(\"!=\",function(t,e,r){return e!==r},function(t,e,r,n){return!Ye(0,e,r,n)}),Je=We(\"<\",function(t,e,r){return e<r},function(t,e,r,n){return n.compare(e,r)<0}),Ke=We(\">\",function(t,e,r){return e>r},function(t,e,r,n){return n.compare(e,r)>0}),Qe=We(\"<=\",function(t,e,r){return e<=r},function(t,e,r,n){return n.compare(e,r)<=0}),$e=We(\">=\",function(t,e,r){return e>=r},function(t,e,r,n){return n.compare(e,r)>=0}),tr=function(t,e,r,n,a){this.type=Dt,this.number=t,this.locale=e,this.currency=r,this.minFractionDigits=n,this.maxFractionDigits=a};tr.parse=function(t,e){if(3!==t.length)return e.error(\"Expected two arguments.\");var r=e.parse(t[1],1,zt);if(!r)return null;var n=t[2];if(\"object\"!=typeof n||Array.isArray(n))return e.error(\"NumberFormat options argument must be an object.\");var a=null;if(n.locale&&!(a=e.parse(n.locale,1,Dt)))return null;var i=null;if(n.currency&&!(i=e.parse(n.currency,1,Dt)))return null;var o=null;if(n[\"min-fraction-digits\"]&&!(o=e.parse(n[\"min-fraction-digits\"],1,zt)))return null;var s=null;return n[\"max-fraction-digits\"]&&!(s=e.parse(n[\"max-fraction-digits\"],1,zt))?null:new tr(r,a,i,o,s)},tr.prototype.evaluate=function(t){return new Intl.NumberFormat(this.locale?this.locale.evaluate(t):[],{style:this.currency?\"currency\":\"decimal\",currency:this.currency?this.currency.evaluate(t):void 0,minimumFractionDigits:this.minFractionDigits?this.minFractionDigits.evaluate(t):void 0,maximumFractionDigits:this.maxFractionDigits?this.maxFractionDigits.evaluate(t):void 0}).format(this.number.evaluate(t))},tr.prototype.eachChild=function(t){t(this.number),this.locale&&t(this.locale),this.currency&&t(this.currency),this.minFractionDigits&&t(this.minFractionDigits),this.maxFractionDigits&&t(this.maxFractionDigits)},tr.prototype.possibleOutputs=function(){return[void 0]},tr.prototype.serialize=function(){var t={};return this.locale&&(t.locale=this.locale.serialize()),this.currency&&(t.currency=this.currency.serialize()),this.minFractionDigits&&(t[\"min-fraction-digits\"]=this.minFractionDigits.serialize()),this.maxFractionDigits&&(t[\"max-fraction-digits\"]=this.maxFractionDigits.serialize()),[\"number-format\",this.number.serialize(),t]};var er=function(t){this.type=zt,this.input=t};er.parse=function(t,e){if(2!==t.length)return e.error(\"Expected 1 argument, but found \"+(t.length-1)+\" instead.\");var r=e.parse(t[1],1);return r?\"array\"!==r.type.kind&&\"string\"!==r.type.kind&&\"value\"!==r.type.kind?e.error(\"Expected argument of type string or array, but found \"+qt(r.type)+\" instead.\"):new er(r):null},er.prototype.evaluate=function(t){var e=this.input.evaluate(t);if(\"string\"==typeof e)return e.length;if(Array.isArray(e))return e.length;throw new ee(\"Expected value to be of type string or array, but found \"+qt(Qt(e))+\" instead.\")},er.prototype.eachChild=function(t){t(this.input)},er.prototype.possibleOutputs=function(){return[void 0]},er.prototype.serialize=function(){var t=[\"length\"];return this.eachChild(function(e){t.push(e.serialize())}),t};var rr={\"==\":Xe,\"!=\":Ze,\">\":Ke,\"<\":Je,\">=\":$e,\"<=\":Qe,array:ne,at:Ue,boolean:ne,case:He,coalesce:je,collator:ue,format:ae,interpolate:Be,\"interpolate-hcl\":Be,\"interpolate-lab\":Be,length:er,let:Ve,literal:te,match:qe,number:ne,\"number-format\":tr,object:ne,step:me,string:ne,\"to-boolean\":oe,\"to-color\":oe,\"to-number\":oe,\"to-string\":oe,var:de};function nr(t,e){var r=e[0],n=e[1],a=e[2],i=e[3];r=r.evaluate(t),n=n.evaluate(t),a=a.evaluate(t);var o=i?i.evaluate(t):1,s=Kt(r,n,a,o);if(s)throw new ee(s);return new Wt(r/255*o,n/255*o,a/255*o,o)}function ar(t,e){return t in e}function ir(t,e){var r=e[t];return void 0===r?null:r}function or(t){return{type:t}}function sr(t){return{result:\"success\",value:t}}function lr(t){return{result:\"error\",value:t}}function cr(t){return\"data-driven\"===t[\"property-type\"]||\"cross-faded-data-driven\"===t[\"property-type\"]}function ur(t){return!!t.expression&&t.expression.parameters.indexOf(\"zoom\")>-1}function hr(t){return!!t.expression&&t.expression.interpolated}function fr(t){return t instanceof Number?\"number\":t instanceof String?\"string\":t instanceof Boolean?\"boolean\":Array.isArray(t)?\"array\":null===t?\"null\":typeof t}function pr(t){return\"object\"==typeof t&&null!==t&&!Array.isArray(t)}function dr(t){return t}function gr(t,e,r){return void 0!==t?t:void 0!==e?e:void 0!==r?r:void 0}function vr(t,e,r,n,a){return gr(typeof r===a?n[r]:void 0,t.default,e.default)}function mr(t,e,r){if(\"number\"!==fr(r))return gr(t.default,e.default);var n=t.stops.length;if(1===n)return t.stops[0][1];if(r<=t.stops[0][0])return t.stops[0][1];if(r>=t.stops[n-1][0])return t.stops[n-1][1];var a=ve(t.stops.map(function(t){return t[0]}),r);return t.stops[a][1]}function yr(t,e,r){var n=void 0!==t.base?t.base:1;if(\"number\"!==fr(r))return gr(t.default,e.default);var a=t.stops.length;if(1===a)return t.stops[0][1];if(r<=t.stops[0][0])return t.stops[0][1];if(r>=t.stops[a-1][0])return t.stops[a-1][1];var i=ve(t.stops.map(function(t){return t[0]}),r),o=function(t,e,r,n){var a=n-r,i=t-r;return 0===a?0:1===e?i/a:(Math.pow(e,i)-1)/(Math.pow(e,a)-1)}(r,n,t.stops[i][0],t.stops[i+1][0]),s=t.stops[i][1],l=t.stops[i+1][1],c=xe[e.type]||dr;if(t.colorSpace&&\"rgb\"!==t.colorSpace){var u=Fe[t.colorSpace];c=function(t,e){return u.reverse(u.interpolate(u.forward(t),u.forward(e),o))}}return\"function\"==typeof s.evaluate?{evaluate:function(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];var r=s.evaluate.apply(void 0,t),n=l.evaluate.apply(void 0,t);if(void 0!==r&&void 0!==n)return c(r,n,o)}}:c(s,l,o)}function xr(t,e,r){return\"color\"===e.type?r=Wt.parse(r):\"formatted\"===e.type?r=Jt.fromString(r.toString()):fr(r)===e.type||\"enum\"===e.type&&e.values[r]||(r=void 0),gr(r,t.default,e.default)}ce.register(rr,{error:[{kind:\"error\"},[Dt],function(t,e){var r=e[0];throw new ee(r.evaluate(t))}],typeof:[Dt,[Nt],function(t,e){return qt(Qt(e[0].evaluate(t)))}],\"to-rgba\":[Ut(zt,4),[Ft],function(t,e){return e[0].evaluate(t).toArray()}],rgb:[Ft,[zt,zt,zt],nr],rgba:[Ft,[zt,zt,zt,zt],nr],has:{type:Rt,overloads:[[[Dt],function(t,e){return ar(e[0].evaluate(t),t.properties())}],[[Dt,Bt],function(t,e){var r=e[0],n=e[1];return ar(r.evaluate(t),n.evaluate(t))}]]},get:{type:Nt,overloads:[[[Dt],function(t,e){return ir(e[0].evaluate(t),t.properties())}],[[Dt,Bt],function(t,e){var r=e[0],n=e[1];return ir(r.evaluate(t),n.evaluate(t))}]]},\"feature-state\":[Nt,[Dt],function(t,e){return ir(e[0].evaluate(t),t.featureState||{})}],properties:[Bt,[],function(t){return t.properties()}],\"geometry-type\":[Dt,[],function(t){return t.geometryType()}],id:[Nt,[],function(t){return t.id()}],zoom:[zt,[],function(t){return t.globals.zoom}],\"heatmap-density\":[zt,[],function(t){return t.globals.heatmapDensity||0}],\"line-progress\":[zt,[],function(t){return t.globals.lineProgress||0}],accumulated:[Nt,[],function(t){return void 0===t.globals.accumulated?null:t.globals.accumulated}],\"+\":[zt,or(zt),function(t,e){for(var r=0,n=0,a=e;n<a.length;n+=1)r+=a[n].evaluate(t);return r}],\"*\":[zt,or(zt),function(t,e){for(var r=1,n=0,a=e;n<a.length;n+=1)r*=a[n].evaluate(t);return r}],\"-\":{type:zt,overloads:[[[zt,zt],function(t,e){var r=e[0],n=e[1];return r.evaluate(t)-n.evaluate(t)}],[[zt],function(t,e){return-e[0].evaluate(t)}]]},\"/\":[zt,[zt,zt],function(t,e){var r=e[0],n=e[1];return r.evaluate(t)/n.evaluate(t)}],\"%\":[zt,[zt,zt],function(t,e){var r=e[0],n=e[1];return r.evaluate(t)%n.evaluate(t)}],ln2:[zt,[],function(){return Math.LN2}],pi:[zt,[],function(){return Math.PI}],e:[zt,[],function(){return Math.E}],\"^\":[zt,[zt,zt],function(t,e){var r=e[0],n=e[1];return Math.pow(r.evaluate(t),n.evaluate(t))}],sqrt:[zt,[zt],function(t,e){var r=e[0];return Math.sqrt(r.evaluate(t))}],log10:[zt,[zt],function(t,e){var r=e[0];return Math.log(r.evaluate(t))/Math.LN10}],ln:[zt,[zt],function(t,e){var r=e[0];return Math.log(r.evaluate(t))}],log2:[zt,[zt],function(t,e){var r=e[0];return Math.log(r.evaluate(t))/Math.LN2}],sin:[zt,[zt],function(t,e){var r=e[0];return Math.sin(r.evaluate(t))}],cos:[zt,[zt],function(t,e){var r=e[0];return Math.cos(r.evaluate(t))}],tan:[zt,[zt],function(t,e){var r=e[0];return Math.tan(r.evaluate(t))}],asin:[zt,[zt],function(t,e){var r=e[0];return Math.asin(r.evaluate(t))}],acos:[zt,[zt],function(t,e){var r=e[0];return Math.acos(r.evaluate(t))}],atan:[zt,[zt],function(t,e){var r=e[0];return Math.atan(r.evaluate(t))}],min:[zt,or(zt),function(t,e){return Math.min.apply(Math,e.map(function(e){return e.evaluate(t)}))}],max:[zt,or(zt),function(t,e){return Math.max.apply(Math,e.map(function(e){return e.evaluate(t)}))}],abs:[zt,[zt],function(t,e){var r=e[0];return Math.abs(r.evaluate(t))}],round:[zt,[zt],function(t,e){var r=e[0].evaluate(t);return r<0?-Math.round(-r):Math.round(r)}],floor:[zt,[zt],function(t,e){var r=e[0];return Math.floor(r.evaluate(t))}],ceil:[zt,[zt],function(t,e){var r=e[0];return Math.ceil(r.evaluate(t))}],\"filter-==\":[Rt,[Dt,Nt],function(t,e){var r=e[0],n=e[1];return t.properties()[r.value]===n.value}],\"filter-id-==\":[Rt,[Nt],function(t,e){var r=e[0];return t.id()===r.value}],\"filter-type-==\":[Rt,[Dt],function(t,e){var r=e[0];return t.geometryType()===r.value}],\"filter-<\":[Rt,[Dt,Nt],function(t,e){var r=e[0],n=e[1],a=t.properties()[r.value],i=n.value;return typeof a==typeof i&&a<i}],\"filter-id-<\":[Rt,[Nt],function(t,e){var r=e[0],n=t.id(),a=r.value;return typeof n==typeof a&&n<a}],\"filter->\":[Rt,[Dt,Nt],function(t,e){var r=e[0],n=e[1],a=t.properties()[r.value],i=n.value;return typeof a==typeof i&&a>i}],\"filter-id->\":[Rt,[Nt],function(t,e){var r=e[0],n=t.id(),a=r.value;return typeof n==typeof a&&n>a}],\"filter-<=\":[Rt,[Dt,Nt],function(t,e){var r=e[0],n=e[1],a=t.properties()[r.value],i=n.value;return typeof a==typeof i&&a<=i}],\"filter-id-<=\":[Rt,[Nt],function(t,e){var r=e[0],n=t.id(),a=r.value;return typeof n==typeof a&&n<=a}],\"filter->=\":[Rt,[Dt,Nt],function(t,e){var r=e[0],n=e[1],a=t.properties()[r.value],i=n.value;return typeof a==typeof i&&a>=i}],\"filter-id->=\":[Rt,[Nt],function(t,e){var r=e[0],n=t.id(),a=r.value;return typeof n==typeof a&&n>=a}],\"filter-has\":[Rt,[Nt],function(t,e){return e[0].value in t.properties()}],\"filter-has-id\":[Rt,[],function(t){return null!==t.id()}],\"filter-type-in\":[Rt,[Ut(Dt)],function(t,e){return e[0].value.indexOf(t.geometryType())>=0}],\"filter-id-in\":[Rt,[Ut(Nt)],function(t,e){return e[0].value.indexOf(t.id())>=0}],\"filter-in-small\":[Rt,[Dt,Ut(Nt)],function(t,e){var r=e[0];return e[1].value.indexOf(t.properties()[r.value])>=0}],\"filter-in-large\":[Rt,[Dt,Ut(Nt)],function(t,e){var r=e[0],n=e[1];return function(t,e,r,n){for(;r<=n;){var a=r+n>>1;if(e[a]===t)return!0;e[a]>t?n=a-1:r=a+1}return!1}(t.properties()[r.value],n.value,0,n.value.length-1)}],all:{type:Rt,overloads:[[[Rt,Rt],function(t,e){var r=e[0],n=e[1];return r.evaluate(t)&&n.evaluate(t)}],[or(Rt),function(t,e){for(var r=0,n=e;r<n.length;r+=1)if(!n[r].evaluate(t))return!1;return!0}]]},any:{type:Rt,overloads:[[[Rt,Rt],function(t,e){var r=e[0],n=e[1];return r.evaluate(t)||n.evaluate(t)}],[or(Rt),function(t,e){for(var r=0,n=e;r<n.length;r+=1)if(n[r].evaluate(t))return!0;return!1}]]},\"!\":[Rt,[Rt],function(t,e){return!e[0].evaluate(t)}],\"is-supported-script\":[Rt,[Dt],function(t,e){var r=e[0],n=t.globals&&t.globals.isSupportedScript;return!n||n(r.evaluate(t))}],upcase:[Dt,[Dt],function(t,e){return e[0].evaluate(t).toUpperCase()}],downcase:[Dt,[Dt],function(t,e){return e[0].evaluate(t).toLowerCase()}],concat:[Dt,or(Nt),function(t,e){return e.map(function(e){return $t(e.evaluate(t))}).join(\"\")}],\"resolved-locale\":[Dt,[jt],function(t,e){return e[0].evaluate(t).resolvedLocale()}]});var br=function(t,e){this.expression=t,this._warningHistory={},this._evaluator=new le,this._defaultValue=e?function(t){return\"color\"===t.type&&pr(t.default)?new Wt(0,0,0,0):\"color\"===t.type?Wt.parse(t.default)||null:void 0===t.default?null:t.default}(e):null,this._enumValues=e&&\"enum\"===e.type?e.values:null};function _r(t){return Array.isArray(t)&&t.length>0&&\"string\"==typeof t[0]&&t[0]in rr}function wr(t,e){var r=new ge(rr,[],e?function(t){var e={color:Ft,string:Dt,number:zt,enum:Dt,boolean:Rt,formatted:Vt};return\"array\"===t.type?Ut(e[t.value]||Nt,t.length):e[t.type]}(e):void 0),n=r.parse(t,void 0,void 0,void 0,e&&\"string\"===e.type?{typeAnnotation:\"coerce\"}:void 0);return n?sr(new br(n,e)):lr(r.errors)}br.prototype.evaluateWithoutErrorHandling=function(t,e,r,n){return this._evaluator.globals=t,this._evaluator.feature=e,this._evaluator.featureState=r,this._evaluator.formattedSection=n,this.expression.evaluate(this._evaluator)},br.prototype.evaluate=function(t,e,r,n){this._evaluator.globals=t,this._evaluator.feature=e||null,this._evaluator.featureState=r||null,this._evaluator.formattedSection=n||null;try{var a=this.expression.evaluate(this._evaluator);if(null==a)return this._defaultValue;if(this._enumValues&&!(a in this._enumValues))throw new ee(\"Expected value to be one of \"+Object.keys(this._enumValues).map(function(t){return JSON.stringify(t)}).join(\", \")+\", but found \"+JSON.stringify(a)+\" instead.\");return a}catch(t){return this._warningHistory[t.message]||(this._warningHistory[t.message]=!0,\"undefined\"!=typeof console&&console.warn(t.message)),this._defaultValue}};var kr=function(t,e){this.kind=t,this._styleExpression=e,this.isStateDependent=\"constant\"!==t&&!fe(e.expression)};kr.prototype.evaluateWithoutErrorHandling=function(t,e,r,n){return this._styleExpression.evaluateWithoutErrorHandling(t,e,r,n)},kr.prototype.evaluate=function(t,e,r,n){return this._styleExpression.evaluate(t,e,r,n)};var Tr=function(t,e,r,n){this.kind=t,this.zoomStops=r,this._styleExpression=e,this.isStateDependent=\"camera\"!==t&&!fe(e.expression),this.interpolationType=n};function Ar(t,e){if(\"error\"===(t=wr(t,e)).result)return t;var r=t.value.expression,n=he(r);if(!n&&!cr(e))return lr([new Pt(\"\",\"data expressions not supported\")]);var a=pe(r,[\"zoom\"]);if(!a&&!ur(e))return lr([new Pt(\"\",\"zoom expressions not supported\")]);var i=function t(e){var r=null;if(e instanceof Ve)r=t(e.result);else if(e instanceof je)for(var n=0,a=e.args;n<a.length;n+=1){var i=a[n];if(r=t(i))break}else(e instanceof me||e instanceof Be)&&e.input instanceof ce&&\"zoom\"===e.input.name&&(r=e);return r instanceof Pt?r:(e.eachChild(function(e){var n=t(e);n instanceof Pt?r=n:!r&&n?r=new Pt(\"\",'\"zoom\" expression may only be used as input to a top-level \"step\" or \"interpolate\" expression.'):r&&n&&r!==n&&(r=new Pt(\"\",'Only one zoom-based \"step\" or \"interpolate\" subexpression may be used in an expression.'))}),r)}(r);if(!i&&!a)return lr([new Pt(\"\",'\"zoom\" expression may only be used as input to a top-level \"step\" or \"interpolate\" expression.')]);if(i instanceof Pt)return lr([i]);if(i instanceof Be&&!hr(e))return lr([new Pt(\"\",'\"interpolate\" expressions cannot be used with this property')]);if(!i)return sr(new kr(n?\"constant\":\"source\",t.value));var o=i instanceof Be?i.interpolation:void 0;return sr(new Tr(n?\"camera\":\"composite\",t.value,i.labels,o))}Tr.prototype.evaluateWithoutErrorHandling=function(t,e,r,n){return this._styleExpression.evaluateWithoutErrorHandling(t,e,r,n)},Tr.prototype.evaluate=function(t,e,r,n){return this._styleExpression.evaluate(t,e,r,n)},Tr.prototype.interpolationFactor=function(t,e,r){return this.interpolationType?Be.interpolationFactor(this.interpolationType,t,e,r):0};var Mr=function(t,e){this._parameters=t,this._specification=e,St(this,function t(e,r){var n,a,i,o=\"color\"===r.type,s=e.stops&&\"object\"==typeof e.stops[0][0],l=s||void 0!==e.property,c=s||!l,u=e.type||(hr(r)?\"exponential\":\"interval\");if(o&&((e=St({},e)).stops&&(e.stops=e.stops.map(function(t){return[t[0],Wt.parse(t[1])]})),e.default?e.default=Wt.parse(e.default):e.default=Wt.parse(r.default)),e.colorSpace&&\"rgb\"!==e.colorSpace&&!Fe[e.colorSpace])throw new Error(\"Unknown color space: \"+e.colorSpace);if(\"exponential\"===u)n=yr;else if(\"interval\"===u)n=mr;else if(\"categorical\"===u){n=vr,a=Object.create(null);for(var h=0,f=e.stops;h<f.length;h+=1){var p=f[h];a[p[0]]=p[1]}i=typeof e.stops[0][0]}else{if(\"identity\"!==u)throw new Error('Unknown function type \"'+u+'\"');n=xr}if(s){for(var d={},g=[],v=0;v<e.stops.length;v++){var m=e.stops[v],y=m[0].zoom;void 0===d[y]&&(d[y]={zoom:y,type:e.type,property:e.property,default:e.default,stops:[]},g.push(y)),d[y].stops.push([m[0].value,m[1]])}for(var x=[],b=0,_=g;b<_.length;b+=1){var w=_[b];x.push([d[w].zoom,t(d[w],r)])}var k={name:\"linear\"};return{kind:\"composite\",interpolationType:k,interpolationFactor:Be.interpolationFactor.bind(void 0,k),zoomStops:x.map(function(t){return t[0]}),evaluate:function(t,n){var a=t.zoom;return yr({stops:x,base:e.base},r,a).evaluate(a,n)}}}if(c){var T=\"exponential\"===u?{name:\"exponential\",base:void 0!==e.base?e.base:1}:null;return{kind:\"camera\",interpolationType:T,interpolationFactor:Be.interpolationFactor.bind(void 0,T),zoomStops:e.stops.map(function(t){return t[0]}),evaluate:function(t){var o=t.zoom;return n(e,r,o,a,i)}}}return{kind:\"source\",evaluate:function(t,o){var s=o&&o.properties?o.properties[e.property]:void 0;return void 0===s?gr(e.default,r.default):n(e,r,s,a,i)}}}(this._parameters,this._specification))};function Sr(t){var e=t.key,r=t.value,n=t.valueSpec||{},a=t.objectElementValidators||{},i=t.style,o=t.styleSpec,s=[],l=fr(r);if(\"object\"!==l)return[new At(e,r,\"object expected, \"+l+\" found\")];for(var c in r){var u=c.split(\".\")[0],h=n[u]||n[\"*\"],f=void 0;if(a[u])f=a[u];else if(n[u])f=Kr;else if(a[\"*\"])f=a[\"*\"];else{if(!n[\"*\"]){s.push(new At(e,r[c],'unknown property \"'+c+'\"'));continue}f=Kr}s=s.concat(f({key:(e?e+\".\":e)+c,value:r[c],valueSpec:h,style:i,styleSpec:o,object:r,objectKey:c},r))}for(var p in n)a[p]||n[p].required&&void 0===n[p].default&&void 0===r[p]&&s.push(new At(e,r,'missing required property \"'+p+'\"'));return s}function Er(t){var e=t.value,r=t.valueSpec,n=t.style,a=t.styleSpec,i=t.key,o=t.arrayElementValidator||Kr;if(\"array\"!==fr(e))return[new At(i,e,\"array expected, \"+fr(e)+\" found\")];if(r.length&&e.length!==r.length)return[new At(i,e,\"array length \"+r.length+\" expected, length \"+e.length+\" found\")];if(r[\"min-length\"]&&e.length<r[\"min-length\"])return[new At(i,e,\"array length at least \"+r[\"min-length\"]+\" expected, length \"+e.length+\" found\")];var s={type:r.value,values:r.values};a.$version<7&&(s.function=r.function),\"object\"===fr(r.value)&&(s=r.value);for(var l=[],c=0;c<e.length;c++)l=l.concat(o({array:e,arrayIndex:c,value:e[c],valueSpec:s,style:n,styleSpec:a,key:i+\"[\"+c+\"]\"}));return l}function Cr(t){var e=t.key,r=t.value,n=t.valueSpec,a=fr(r);return\"number\"!==a?[new At(e,r,\"number expected, \"+a+\" found\")]:\"minimum\"in n&&r<n.minimum?[new At(e,r,r+\" is less than the minimum value \"+n.minimum)]:\"maximum\"in n&&r>n.maximum?[new At(e,r,r+\" is greater than the maximum value \"+n.maximum)]:[]}function Lr(t){var e,r,n,a=t.valueSpec,i=Ct(t.value.type),o={},s=\"categorical\"!==i&&void 0===t.value.property,l=!s,c=\"array\"===fr(t.value.stops)&&\"array\"===fr(t.value.stops[0])&&\"object\"===fr(t.value.stops[0][0]),u=Sr({key:t.key,value:t.value,valueSpec:t.styleSpec.function,style:t.style,styleSpec:t.styleSpec,objectElementValidators:{stops:function(t){if(\"identity\"===i)return[new At(t.key,t.value,'identity function may not have a \"stops\" property')];var e=[],r=t.value;return e=e.concat(Er({key:t.key,value:r,valueSpec:t.valueSpec,style:t.style,styleSpec:t.styleSpec,arrayElementValidator:h})),\"array\"===fr(r)&&0===r.length&&e.push(new At(t.key,r,\"array must have at least one stop\")),e},default:function(t){return Kr({key:t.key,value:t.value,valueSpec:a,style:t.style,styleSpec:t.styleSpec})}}});return\"identity\"===i&&s&&u.push(new At(t.key,t.value,'missing required property \"property\"')),\"identity\"===i||t.value.stops||u.push(new At(t.key,t.value,'missing required property \"stops\"')),\"exponential\"===i&&t.valueSpec.expression&&!hr(t.valueSpec)&&u.push(new At(t.key,t.value,\"exponential functions not supported\")),t.styleSpec.$version>=8&&(l&&!cr(t.valueSpec)?u.push(new At(t.key,t.value,\"property functions not supported\")):s&&!ur(t.valueSpec)&&u.push(new At(t.key,t.value,\"zoom functions not supported\"))),\"categorical\"!==i&&!c||void 0!==t.value.property||u.push(new At(t.key,t.value,'\"property\" property is required')),u;function h(t){var e=[],i=t.value,s=t.key;if(\"array\"!==fr(i))return[new At(s,i,\"array expected, \"+fr(i)+\" found\")];if(2!==i.length)return[new At(s,i,\"array length 2 expected, length \"+i.length+\" found\")];if(c){if(\"object\"!==fr(i[0]))return[new At(s,i,\"object expected, \"+fr(i[0])+\" found\")];if(void 0===i[0].zoom)return[new At(s,i,\"object stop key must have zoom\")];if(void 0===i[0].value)return[new At(s,i,\"object stop key must have value\")];if(n&&n>Ct(i[0].zoom))return[new At(s,i[0].zoom,\"stop zoom values must appear in ascending order\")];Ct(i[0].zoom)!==n&&(n=Ct(i[0].zoom),r=void 0,o={}),e=e.concat(Sr({key:s+\"[0]\",value:i[0],valueSpec:{zoom:{}},style:t.style,styleSpec:t.styleSpec,objectElementValidators:{zoom:Cr,value:f}}))}else e=e.concat(f({key:s+\"[0]\",value:i[0],valueSpec:{},style:t.style,styleSpec:t.styleSpec},i));return _r(Lt(i[1]))?e.concat([new At(s+\"[1]\",i[1],\"expressions are not allowed in function stops.\")]):e.concat(Kr({key:s+\"[1]\",value:i[1],valueSpec:a,style:t.style,styleSpec:t.styleSpec}))}function f(t,n){var s=fr(t.value),l=Ct(t.value),c=null!==t.value?t.value:n;if(e){if(s!==e)return[new At(t.key,c,s+\" stop domain type must match previous stop domain type \"+e)]}else e=s;if(\"number\"!==s&&\"string\"!==s&&\"boolean\"!==s)return[new At(t.key,c,\"stop domain value must be a number, string, or boolean\")];if(\"number\"!==s&&\"categorical\"!==i){var u=\"number expected, \"+s+\" found\";return cr(a)&&void 0===i&&(u+='\\nIf you intended to use a categorical function, specify `\"type\": \"categorical\"`.'),[new At(t.key,c,u)]}return\"categorical\"!==i||\"number\"!==s||isFinite(l)&&Math.floor(l)===l?\"categorical\"!==i&&\"number\"===s&&void 0!==r&&l<r?[new At(t.key,c,\"stop domain values must appear in ascending order\")]:(r=l,\"categorical\"===i&&l in o?[new At(t.key,c,\"stop domain values must be unique\")]:(o[l]=!0,[])):[new At(t.key,c,\"integer expected, found \"+l)]}}function Pr(t){var e=(\"property\"===t.expressionContext?Ar:wr)(Lt(t.value),t.valueSpec);if(\"error\"===e.result)return e.value.map(function(e){return new At(\"\"+t.key+e.key,t.value,e.message)});var r=e.value.expression||e.value._styleExpression.expression;if(\"property\"===t.expressionContext&&\"text-font\"===t.propertyKey&&-1!==r.possibleOutputs().indexOf(void 0))return[new At(t.key,t.value,'Invalid data expression for \"'+t.propertyKey+'\". Output values must be contained as literals within the expression.')];if(\"property\"===t.expressionContext&&\"layout\"===t.propertyType&&!fe(r))return[new At(t.key,t.value,'\"feature-state\" data expressions are not supported with layout properties.')];if(\"filter\"===t.expressionContext&&!fe(r))return[new At(t.key,t.value,'\"feature-state\" data expressions are not supported with filters.')];if(t.expressionContext&&0===t.expressionContext.indexOf(\"cluster\")){if(!pe(r,[\"zoom\",\"feature-state\"]))return[new At(t.key,t.value,'\"zoom\" and \"feature-state\" expressions are not supported with cluster properties.')];if(\"cluster-initial\"===t.expressionContext&&!he(r))return[new At(t.key,t.value,\"Feature data expressions are not supported with initial expression part of cluster properties.\")]}return[]}function Or(t){var e=t.key,r=t.value,n=t.valueSpec,a=[];return Array.isArray(n.values)?-1===n.values.indexOf(Ct(r))&&a.push(new At(e,r,\"expected one of [\"+n.values.join(\", \")+\"], \"+JSON.stringify(r)+\" found\")):-1===Object.keys(n.values).indexOf(Ct(r))&&a.push(new At(e,r,\"expected one of [\"+Object.keys(n.values).join(\", \")+\"], \"+JSON.stringify(r)+\" found\")),a}function Ir(t){if(!0===t||!1===t)return!0;if(!Array.isArray(t)||0===t.length)return!1;switch(t[0]){case\"has\":return t.length>=2&&\"$id\"!==t[1]&&\"$type\"!==t[1];case\"in\":case\"!in\":case\"!has\":case\"none\":return!1;case\"==\":case\"!=\":case\">\":case\">=\":case\"<\":case\"<=\":return 3!==t.length||Array.isArray(t[1])||Array.isArray(t[2]);case\"any\":case\"all\":for(var e=0,r=t.slice(1);e<r.length;e+=1){var n=r[e];if(!Ir(n)&&\"boolean\"!=typeof n)return!1}return!0;default:return!0}}Mr.deserialize=function(t){return new Mr(t._parameters,t._specification)},Mr.serialize=function(t){return{_parameters:t._parameters,_specification:t._specification}};var zr={type:\"boolean\",default:!1,transition:!1,\"property-type\":\"data-driven\",expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]}};function Dr(t){if(null==t)return function(){return!0};Ir(t)||(t=Fr(t));var e=wr(t,zr);if(\"error\"===e.result)throw new Error(e.value.map(function(t){return t.key+\": \"+t.message}).join(\", \"));return function(t,r){return e.value.evaluate(t,r)}}function Rr(t,e){return t<e?-1:t>e?1:0}function Fr(t){if(!t)return!0;var e,r=t[0];return t.length<=1?\"any\"!==r:\"==\"===r?Br(t[1],t[2],\"==\"):\"!=\"===r?Vr(Br(t[1],t[2],\"==\")):\"<\"===r||\">\"===r||\"<=\"===r||\">=\"===r?Br(t[1],t[2],r):\"any\"===r?(e=t.slice(1),[\"any\"].concat(e.map(Fr))):\"all\"===r?[\"all\"].concat(t.slice(1).map(Fr)):\"none\"===r?[\"all\"].concat(t.slice(1).map(Fr).map(Vr)):\"in\"===r?Nr(t[1],t.slice(2)):\"!in\"===r?Vr(Nr(t[1],t.slice(2))):\"has\"===r?jr(t[1]):\"!has\"!==r||Vr(jr(t[1]))}function Br(t,e,r){switch(t){case\"$type\":return[\"filter-type-\"+r,e];case\"$id\":return[\"filter-id-\"+r,e];default:return[\"filter-\"+r,t,e]}}function Nr(t,e){if(0===e.length)return!1;switch(t){case\"$type\":return[\"filter-type-in\",[\"literal\",e]];case\"$id\":return[\"filter-id-in\",[\"literal\",e]];default:return e.length>200&&!e.some(function(t){return typeof t!=typeof e[0]})?[\"filter-in-large\",t,[\"literal\",e.sort(Rr)]]:[\"filter-in-small\",t,[\"literal\",e]]}}function jr(t){switch(t){case\"$type\":return!0;case\"$id\":return[\"filter-has-id\"];default:return[\"filter-has\",t]}}function Vr(t){return[\"!\",t]}function Ur(t){return Ir(Lt(t.value))?Pr(St({},t,{expressionContext:\"filter\",valueSpec:{value:\"boolean\"}})):function t(e){var r=e.value,n=e.key;if(\"array\"!==fr(r))return[new At(n,r,\"array expected, \"+fr(r)+\" found\")];var a,i=e.styleSpec,o=[];if(r.length<1)return[new At(n,r,\"filter array must have at least 1 element\")];switch(o=o.concat(Or({key:n+\"[0]\",value:r[0],valueSpec:i.filter_operator,style:e.style,styleSpec:e.styleSpec})),Ct(r[0])){case\"<\":case\"<=\":case\">\":case\">=\":r.length>=2&&\"$type\"===Ct(r[1])&&o.push(new At(n,r,'\"$type\" cannot be use with operator \"'+r[0]+'\"'));case\"==\":case\"!=\":3!==r.length&&o.push(new At(n,r,'filter array for operator \"'+r[0]+'\" must have 3 elements'));case\"in\":case\"!in\":r.length>=2&&\"string\"!==(a=fr(r[1]))&&o.push(new At(n+\"[1]\",r[1],\"string expected, \"+a+\" found\"));for(var s=2;s<r.length;s++)a=fr(r[s]),\"$type\"===Ct(r[1])?o=o.concat(Or({key:n+\"[\"+s+\"]\",value:r[s],valueSpec:i.geometry_type,style:e.style,styleSpec:e.styleSpec})):\"string\"!==a&&\"number\"!==a&&\"boolean\"!==a&&o.push(new At(n+\"[\"+s+\"]\",r[s],\"string, number, or boolean expected, \"+a+\" found\"));break;case\"any\":case\"all\":case\"none\":for(var l=1;l<r.length;l++)o=o.concat(t({key:n+\"[\"+l+\"]\",value:r[l],style:e.style,styleSpec:e.styleSpec}));break;case\"has\":case\"!has\":a=fr(r[1]),2!==r.length?o.push(new At(n,r,'filter array for \"'+r[0]+'\" operator must have 2 elements')):\"string\"!==a&&o.push(new At(n+\"[1]\",r[1],\"string expected, \"+a+\" found\"))}return o}(t)}function qr(t,e){var r=t.key,n=t.style,a=t.styleSpec,i=t.value,o=t.objectKey,s=a[e+\"_\"+t.layerType];if(!s)return[];var l=o.match(/^(.*)-transition$/);if(\"paint\"===e&&l&&s[l[1]]&&s[l[1]].transition)return Kr({key:r,value:i,valueSpec:a.transition,style:n,styleSpec:a});var c,u=t.valueSpec||s[o];if(!u)return[new At(r,i,'unknown property \"'+o+'\"')];if(\"string\"===fr(i)&&cr(u)&&!u.tokens&&(c=/^{([^}]+)}$/.exec(i)))return[new At(r,i,'\"'+o+'\" does not support interpolation syntax\\nUse an identity property function instead: `{ \"type\": \"identity\", \"property\": '+JSON.stringify(c[1])+\" }`.\")];var h=[];return\"symbol\"===t.layerType&&(\"text-field\"===o&&n&&!n.glyphs&&h.push(new At(r,i,'use of \"text-field\" requires a style \"glyphs\" property')),\"text-font\"===o&&pr(Lt(i))&&\"identity\"===Ct(i.type)&&h.push(new At(r,i,'\"text-font\" does not support identity functions'))),h.concat(Kr({key:t.key,value:i,valueSpec:u,style:n,styleSpec:a,expressionContext:\"property\",propertyType:e,propertyKey:o}))}function Hr(t){return qr(t,\"paint\")}function Gr(t){return qr(t,\"layout\")}function Yr(t){var e=[],r=t.value,n=t.key,a=t.style,i=t.styleSpec;r.type||r.ref||e.push(new At(n,r,'either \"type\" or \"ref\" is required'));var o,s=Ct(r.type),l=Ct(r.ref);if(r.id)for(var c=Ct(r.id),u=0;u<t.arrayIndex;u++){var h=a.layers[u];Ct(h.id)===c&&e.push(new At(n,r.id,'duplicate layer id \"'+r.id+'\", previously used at line '+h.id.__line__))}if(\"ref\"in r)[\"type\",\"source\",\"source-layer\",\"filter\",\"layout\"].forEach(function(t){t in r&&e.push(new At(n,r[t],'\"'+t+'\" is prohibited for ref layers'))}),a.layers.forEach(function(t){Ct(t.id)===l&&(o=t)}),o?o.ref?e.push(new At(n,r.ref,\"ref cannot reference another ref layer\")):s=Ct(o.type):e.push(new At(n,r.ref,'ref layer \"'+l+'\" not found'));else if(\"background\"!==s)if(r.source){var f=a.sources&&a.sources[r.source],p=f&&Ct(f.type);f?\"vector\"===p&&\"raster\"===s?e.push(new At(n,r.source,'layer \"'+r.id+'\" requires a raster source')):\"raster\"===p&&\"raster\"!==s?e.push(new At(n,r.source,'layer \"'+r.id+'\" requires a vector source')):\"vector\"!==p||r[\"source-layer\"]?\"raster-dem\"===p&&\"hillshade\"!==s?e.push(new At(n,r.source,\"raster-dem source can only be used with layer type 'hillshade'.\")):\"line\"!==s||!r.paint||!r.paint[\"line-gradient\"]||\"geojson\"===p&&f.lineMetrics||e.push(new At(n,r,'layer \"'+r.id+'\" specifies a line-gradient, which requires a GeoJSON source with `lineMetrics` enabled.')):e.push(new At(n,r,'layer \"'+r.id+'\" must specify a \"source-layer\"')):e.push(new At(n,r.source,'source \"'+r.source+'\" not found'))}else e.push(new At(n,r,'missing required property \"source\"'));return e=e.concat(Sr({key:n,value:r,valueSpec:i.layer,style:t.style,styleSpec:t.styleSpec,objectElementValidators:{\"*\":function(){return[]},type:function(){return Kr({key:n+\".type\",value:r.type,valueSpec:i.layer.type,style:t.style,styleSpec:t.styleSpec,object:r,objectKey:\"type\"})},filter:Ur,layout:function(t){return Sr({layer:r,key:t.key,value:t.value,style:t.style,styleSpec:t.styleSpec,objectElementValidators:{\"*\":function(t){return Gr(St({layerType:s},t))}}})},paint:function(t){return Sr({layer:r,key:t.key,value:t.value,style:t.style,styleSpec:t.styleSpec,objectElementValidators:{\"*\":function(t){return Hr(St({layerType:s},t))}}})}}}))}function Wr(t){var e=t.value,r=t.key,n=t.styleSpec,a=t.style;if(!e.type)return[new At(r,e,'\"type\" is required')];var i,o=Ct(e.type);switch(o){case\"vector\":case\"raster\":case\"raster-dem\":return Sr({key:r,value:e,valueSpec:n[\"source_\"+o.replace(\"-\",\"_\")],style:t.style,styleSpec:n});case\"geojson\":if(i=Sr({key:r,value:e,valueSpec:n.source_geojson,style:a,styleSpec:n}),e.cluster)for(var s in e.clusterProperties){var l=e.clusterProperties[s],c=l[0],u=l[1],h=\"string\"==typeof c?[c,[\"accumulated\"],[\"get\",s]]:c;i.push.apply(i,Pr({key:r+\".\"+s+\".map\",value:u,expressionContext:\"cluster-map\"})),i.push.apply(i,Pr({key:r+\".\"+s+\".reduce\",value:h,expressionContext:\"cluster-reduce\"}))}return i;case\"video\":return Sr({key:r,value:e,valueSpec:n.source_video,style:a,styleSpec:n});case\"image\":return Sr({key:r,value:e,valueSpec:n.source_image,style:a,styleSpec:n});case\"canvas\":return[new At(r,null,\"Please use runtime APIs to add canvas sources, rather than including them in stylesheets.\",\"source.canvas\")];default:return Or({key:r+\".type\",value:e.type,valueSpec:{values:[\"vector\",\"raster\",\"raster-dem\",\"geojson\",\"video\",\"image\"]},style:a,styleSpec:n})}}function Xr(t){var e=t.value,r=t.styleSpec,n=r.light,a=t.style,i=[],o=fr(e);if(void 0===e)return i;if(\"object\"!==o)return i.concat([new At(\"light\",e,\"object expected, \"+o+\" found\")]);for(var s in e){var l=s.match(/^(.*)-transition$/);i=l&&n[l[1]]&&n[l[1]].transition?i.concat(Kr({key:s,value:e[s],valueSpec:r.transition,style:a,styleSpec:r})):n[s]?i.concat(Kr({key:s,value:e[s],valueSpec:n[s],style:a,styleSpec:r})):i.concat([new At(s,e[s],'unknown property \"'+s+'\"')])}return i}function Zr(t){var e=t.value,r=t.key,n=fr(e);return\"string\"!==n?[new At(r,e,\"string expected, \"+n+\" found\")]:[]}var Jr={\"*\":function(){return[]},array:Er,boolean:function(t){var e=t.value,r=t.key,n=fr(e);return\"boolean\"!==n?[new At(r,e,\"boolean expected, \"+n+\" found\")]:[]},number:Cr,color:function(t){var e=t.key,r=t.value,n=fr(r);return\"string\"!==n?[new At(e,r,\"color expected, \"+n+\" found\")]:null===Yt(r)?[new At(e,r,'color expected, \"'+r+'\" found')]:[]},constants:Mt,enum:Or,filter:Ur,function:Lr,layer:Yr,object:Sr,source:Wr,light:Xr,string:Zr,formatted:function(t){return 0===Zr(t).length?[]:Pr(t)}};function Kr(t){var e=t.value,r=t.valueSpec,n=t.styleSpec;return r.expression&&pr(Ct(e))?Lr(t):r.expression&&_r(Lt(e))?Pr(t):r.type&&Jr[r.type]?Jr[r.type](t):Sr(St({},t,{valueSpec:r.type?n[r.type]:r}))}function Qr(t){var e=t.value,r=t.key,n=Zr(t);return n.length?n:(-1===e.indexOf(\"{fontstack}\")&&n.push(new At(r,e,'\"glyphs\" url must include a \"{fontstack}\" token')),-1===e.indexOf(\"{range}\")&&n.push(new At(r,e,'\"glyphs\" url must include a \"{range}\" token')),n)}function $r(t,e){e=e||Tt;var r=[];return r=r.concat(Kr({key:\"\",value:t,valueSpec:e.$root,styleSpec:e,style:t,objectElementValidators:{glyphs:Qr,\"*\":function(){return[]}}})),t.constants&&(r=r.concat(Mt({key:\"constants\",value:t.constants,style:t,styleSpec:e}))),tn(r)}function tn(t){return[].concat(t).sort(function(t,e){return t.line-e.line})}function en(t){return function(){for(var e=[],r=arguments.length;r--;)e[r]=arguments[r];return tn(t.apply(this,e))}}$r.source=en(Wr),$r.light=en(Xr),$r.layer=en(Yr),$r.filter=en(Ur),$r.paintProperty=en(Hr),$r.layoutProperty=en(Gr);var rn=$r,nn=rn.light,an=rn.paintProperty,on=rn.layoutProperty;function sn(t,e){var r=!1;if(e&&e.length)for(var n=0,a=e;n<a.length;n+=1){var i=a[n];t.fire(new wt(new Error(i.message))),r=!0}return r}var ln=un,cn=3;function un(t,e,r){var n=this.cells=[];if(t instanceof ArrayBuffer){this.arrayBuffer=t;var a=new Int32Array(this.arrayBuffer);t=a[0],e=a[1],r=a[2],this.d=e+2*r;for(var i=0;i<this.d*this.d;i++){var o=a[cn+i],s=a[cn+i+1];n.push(o===s?null:a.subarray(o,s))}var l=a[cn+n.length],c=a[cn+n.length+1];this.keys=a.subarray(l,c),this.bboxes=a.subarray(c),this.insert=this._insertReadonly}else{this.d=e+2*r;for(var u=0;u<this.d*this.d;u++)n.push([]);this.keys=[],this.bboxes=[]}this.n=e,this.extent=t,this.padding=r,this.scale=e/t,this.uid=0;var h=r/e*t;this.min=-h,this.max=t+h}un.prototype.insert=function(t,e,r,n,a){this._forEachCell(e,r,n,a,this._insertCell,this.uid++),this.keys.push(t),this.bboxes.push(e),this.bboxes.push(r),this.bboxes.push(n),this.bboxes.push(a)},un.prototype._insertReadonly=function(){throw\"Cannot insert into a GridIndex created from an ArrayBuffer.\"},un.prototype._insertCell=function(t,e,r,n,a,i){this.cells[a].push(i)},un.prototype.query=function(t,e,r,n,a){var i=this.min,o=this.max;if(t<=i&&e<=i&&o<=r&&o<=n&&!a)return Array.prototype.slice.call(this.keys);var s=[];return this._forEachCell(t,e,r,n,this._queryCell,s,{},a),s},un.prototype._queryCell=function(t,e,r,n,a,i,o,s){var l=this.cells[a];if(null!==l)for(var c=this.keys,u=this.bboxes,h=0;h<l.length;h++){var f=l[h];if(void 0===o[f]){var p=4*f;(s?s(u[p+0],u[p+1],u[p+2],u[p+3]):t<=u[p+2]&&e<=u[p+3]&&r>=u[p+0]&&n>=u[p+1])?(o[f]=!0,i.push(c[f])):o[f]=!1}}},un.prototype._forEachCell=function(t,e,r,n,a,i,o,s){for(var l=this._convertToCellCoord(t),c=this._convertToCellCoord(e),u=this._convertToCellCoord(r),h=this._convertToCellCoord(n),f=l;f<=u;f++)for(var p=c;p<=h;p++){var d=this.d*p+f;if((!s||s(this._convertFromCellCoord(f),this._convertFromCellCoord(p),this._convertFromCellCoord(f+1),this._convertFromCellCoord(p+1)))&&a.call(this,t,e,r,n,d,i,o,s))return}},un.prototype._convertFromCellCoord=function(t){return(t-this.padding)/this.scale},un.prototype._convertToCellCoord=function(t){return Math.max(0,Math.min(this.d-1,Math.floor(t*this.scale)+this.padding))},un.prototype.toArrayBuffer=function(){if(this.arrayBuffer)return this.arrayBuffer;for(var t=this.cells,e=cn+this.cells.length+1+1,r=0,n=0;n<this.cells.length;n++)r+=this.cells[n].length;var a=new Int32Array(e+r+this.keys.length+this.bboxes.length);a[0]=this.extent,a[1]=this.n,a[2]=this.padding;for(var i=e,o=0;o<t.length;o++){var s=t[o];a[cn+o]=i,a.set(s,i),i+=s.length}return a[cn+t.length]=i,a.set(this.keys,i),i+=this.keys.length,a[cn+t.length+1]=i,a.set(this.bboxes,i),i+=this.bboxes.length,a.buffer};var hn=self.ImageData,fn={};function pn(t,e,r){void 0===r&&(r={}),Object.defineProperty(e,\"_classRegistryKey\",{value:t,writeable:!1}),fn[t]={klass:e,omit:r.omit||[],shallow:r.shallow||[]}}for(var dn in pn(\"Object\",Object),ln.serialize=function(t,e){var r=t.toArrayBuffer();return e&&e.push(r),{buffer:r}},ln.deserialize=function(t){return new ln(t.buffer)},pn(\"Grid\",ln),pn(\"Color\",Wt),pn(\"Error\",Error),pn(\"StylePropertyFunction\",Mr),pn(\"StyleExpression\",br,{omit:[\"_evaluator\"]}),pn(\"ZoomDependentExpression\",Tr),pn(\"ZoomConstantExpression\",kr),pn(\"CompoundExpression\",ce,{omit:[\"_evaluate\"]}),rr)rr[dn]._classRegistryKey||pn(\"Expression_\"+dn,rr[dn]);function gn(t,e){if(null==t||\"boolean\"==typeof t||\"number\"==typeof t||\"string\"==typeof t||t instanceof Boolean||t instanceof Number||t instanceof String||t instanceof Date||t instanceof RegExp)return t;if(t instanceof ArrayBuffer)return e&&e.push(t),t;if(ArrayBuffer.isView(t)){var r=t;return e&&e.push(r.buffer),r}if(t instanceof hn)return e&&e.push(t.data.buffer),t;if(Array.isArray(t)){for(var n=[],a=0,i=t;a<i.length;a+=1){var o=i[a];n.push(gn(o,e))}return n}if(\"object\"==typeof t){var s=t.constructor,l=s._classRegistryKey;if(!l)throw new Error(\"can't serialize object of unregistered class\");var c=s.serialize?s.serialize(t,e):{};if(!s.serialize){for(var u in t)if(t.hasOwnProperty(u)&&!(fn[l].omit.indexOf(u)>=0)){var h=t[u];c[u]=fn[l].shallow.indexOf(u)>=0?h:gn(h,e)}t instanceof Error&&(c.message=t.message)}if(c.$name)throw new Error(\"$name property is reserved for worker serialization logic.\");return\"Object\"!==l&&(c.$name=l),c}throw new Error(\"can't serialize object of type \"+typeof t)}function vn(t){if(null==t||\"boolean\"==typeof t||\"number\"==typeof t||\"string\"==typeof t||t instanceof Boolean||t instanceof Number||t instanceof String||t instanceof Date||t instanceof RegExp||t instanceof ArrayBuffer||ArrayBuffer.isView(t)||t instanceof hn)return t;if(Array.isArray(t))return t.map(vn);if(\"object\"==typeof t){var e=t.$name||\"Object\",r=fn[e].klass;if(!r)throw new Error(\"can't deserialize unregistered class \"+e);if(r.deserialize)return r.deserialize(t);for(var n=Object.create(r.prototype),a=0,i=Object.keys(t);a<i.length;a+=1){var o=i[a];if(\"$name\"!==o){var s=t[o];n[o]=fn[e].shallow.indexOf(o)>=0?s:vn(s)}}return n}throw new Error(\"can't deserialize object of type \"+typeof t)}var mn=function(){this.first=!0};mn.prototype.update=function(t,e){var r=Math.floor(t);return this.first?(this.first=!1,this.lastIntegerZoom=r,this.lastIntegerZoomTime=0,this.lastZoom=t,this.lastFloorZoom=r,!0):(this.lastFloorZoom>r?(this.lastIntegerZoom=r+1,this.lastIntegerZoomTime=e):this.lastFloorZoom<r&&(this.lastIntegerZoom=r,this.lastIntegerZoomTime=e),t!==this.lastZoom&&(this.lastZoom=t,this.lastFloorZoom=r,!0))};var yn={\"Latin-1 Supplement\":function(t){return t>=128&&t<=255},Arabic:function(t){return t>=1536&&t<=1791},\"Arabic Supplement\":function(t){return t>=1872&&t<=1919},\"Arabic Extended-A\":function(t){return t>=2208&&t<=2303},\"Hangul Jamo\":function(t){return t>=4352&&t<=4607},\"Unified Canadian Aboriginal Syllabics\":function(t){return t>=5120&&t<=5759},Khmer:function(t){return t>=6016&&t<=6143},\"Unified Canadian Aboriginal Syllabics Extended\":function(t){return t>=6320&&t<=6399},\"General Punctuation\":function(t){return t>=8192&&t<=8303},\"Letterlike Symbols\":function(t){return t>=8448&&t<=8527},\"Number Forms\":function(t){return t>=8528&&t<=8591},\"Miscellaneous Technical\":function(t){return t>=8960&&t<=9215},\"Control Pictures\":function(t){return t>=9216&&t<=9279},\"Optical Character Recognition\":function(t){return t>=9280&&t<=9311},\"Enclosed Alphanumerics\":function(t){return t>=9312&&t<=9471},\"Geometric Shapes\":function(t){return t>=9632&&t<=9727},\"Miscellaneous Symbols\":function(t){return t>=9728&&t<=9983},\"Miscellaneous Symbols and Arrows\":function(t){return t>=11008&&t<=11263},\"CJK Radicals Supplement\":function(t){return t>=11904&&t<=12031},\"Kangxi Radicals\":function(t){return t>=12032&&t<=12255},\"Ideographic Description Characters\":function(t){return t>=12272&&t<=12287},\"CJK Symbols and Punctuation\":function(t){return t>=12288&&t<=12351},Hiragana:function(t){return t>=12352&&t<=12447},Katakana:function(t){return t>=12448&&t<=12543},Bopomofo:function(t){return t>=12544&&t<=12591},\"Hangul Compatibility Jamo\":function(t){return t>=12592&&t<=12687},Kanbun:function(t){return t>=12688&&t<=12703},\"Bopomofo Extended\":function(t){return t>=12704&&t<=12735},\"CJK Strokes\":function(t){return t>=12736&&t<=12783},\"Katakana Phonetic Extensions\":function(t){return t>=12784&&t<=12799},\"Enclosed CJK Letters and Months\":function(t){return t>=12800&&t<=13055},\"CJK Compatibility\":function(t){return t>=13056&&t<=13311},\"CJK Unified Ideographs Extension A\":function(t){return t>=13312&&t<=19903},\"Yijing Hexagram Symbols\":function(t){return t>=19904&&t<=19967},\"CJK Unified Ideographs\":function(t){return t>=19968&&t<=40959},\"Yi Syllables\":function(t){return t>=40960&&t<=42127},\"Yi Radicals\":function(t){return t>=42128&&t<=42191},\"Hangul Jamo Extended-A\":function(t){return t>=43360&&t<=43391},\"Hangul Syllables\":function(t){return t>=44032&&t<=55215},\"Hangul Jamo Extended-B\":function(t){return t>=55216&&t<=55295},\"Private Use Area\":function(t){return t>=57344&&t<=63743},\"CJK Compatibility Ideographs\":function(t){return t>=63744&&t<=64255},\"Arabic Presentation Forms-A\":function(t){return t>=64336&&t<=65023},\"Vertical Forms\":function(t){return t>=65040&&t<=65055},\"CJK Compatibility Forms\":function(t){return t>=65072&&t<=65103},\"Small Form Variants\":function(t){return t>=65104&&t<=65135},\"Arabic Presentation Forms-B\":function(t){return t>=65136&&t<=65279},\"Halfwidth and Fullwidth Forms\":function(t){return t>=65280&&t<=65519}};function xn(t){for(var e=0,r=t;e<r.length;e+=1)if(_n(r[e].charCodeAt(0)))return!0;return!1}function bn(t){return!(yn.Arabic(t)||yn[\"Arabic Supplement\"](t)||yn[\"Arabic Extended-A\"](t)||yn[\"Arabic Presentation Forms-A\"](t)||yn[\"Arabic Presentation Forms-B\"](t))}function _n(t){return!!(746===t||747===t||!(t<4352)&&(yn[\"Bopomofo Extended\"](t)||yn.Bopomofo(t)||yn[\"CJK Compatibility Forms\"](t)&&!(t>=65097&&t<=65103)||yn[\"CJK Compatibility Ideographs\"](t)||yn[\"CJK Compatibility\"](t)||yn[\"CJK Radicals Supplement\"](t)||yn[\"CJK Strokes\"](t)||!(!yn[\"CJK Symbols and Punctuation\"](t)||t>=12296&&t<=12305||t>=12308&&t<=12319||12336===t)||yn[\"CJK Unified Ideographs Extension A\"](t)||yn[\"CJK Unified Ideographs\"](t)||yn[\"Enclosed CJK Letters and Months\"](t)||yn[\"Hangul Compatibility Jamo\"](t)||yn[\"Hangul Jamo Extended-A\"](t)||yn[\"Hangul Jamo Extended-B\"](t)||yn[\"Hangul Jamo\"](t)||yn[\"Hangul Syllables\"](t)||yn.Hiragana(t)||yn[\"Ideographic Description Characters\"](t)||yn.Kanbun(t)||yn[\"Kangxi Radicals\"](t)||yn[\"Katakana Phonetic Extensions\"](t)||yn.Katakana(t)&&12540!==t||!(!yn[\"Halfwidth and Fullwidth Forms\"](t)||65288===t||65289===t||65293===t||t>=65306&&t<=65310||65339===t||65341===t||65343===t||t>=65371&&t<=65503||65507===t||t>=65512&&t<=65519)||!(!yn[\"Small Form Variants\"](t)||t>=65112&&t<=65118||t>=65123&&t<=65126)||yn[\"Unified Canadian Aboriginal Syllabics\"](t)||yn[\"Unified Canadian Aboriginal Syllabics Extended\"](t)||yn[\"Vertical Forms\"](t)||yn[\"Yijing Hexagram Symbols\"](t)||yn[\"Yi Syllables\"](t)||yn[\"Yi Radicals\"](t)))}function wn(t){return!(_n(t)||function(t){return!!(yn[\"Latin-1 Supplement\"](t)&&(167===t||169===t||174===t||177===t||188===t||189===t||190===t||215===t||247===t)||yn[\"General Punctuation\"](t)&&(8214===t||8224===t||8225===t||8240===t||8241===t||8251===t||8252===t||8258===t||8263===t||8264===t||8265===t||8273===t)||yn[\"Letterlike Symbols\"](t)||yn[\"Number Forms\"](t)||yn[\"Miscellaneous Technical\"](t)&&(t>=8960&&t<=8967||t>=8972&&t<=8991||t>=8996&&t<=9e3||9003===t||t>=9085&&t<=9114||t>=9150&&t<=9165||9167===t||t>=9169&&t<=9179||t>=9186&&t<=9215)||yn[\"Control Pictures\"](t)&&9251!==t||yn[\"Optical Character Recognition\"](t)||yn[\"Enclosed Alphanumerics\"](t)||yn[\"Geometric Shapes\"](t)||yn[\"Miscellaneous Symbols\"](t)&&!(t>=9754&&t<=9759)||yn[\"Miscellaneous Symbols and Arrows\"](t)&&(t>=11026&&t<=11055||t>=11088&&t<=11097||t>=11192&&t<=11243)||yn[\"CJK Symbols and Punctuation\"](t)||yn.Katakana(t)||yn[\"Private Use Area\"](t)||yn[\"CJK Compatibility Forms\"](t)||yn[\"Small Form Variants\"](t)||yn[\"Halfwidth and Fullwidth Forms\"](t)||8734===t||8756===t||8757===t||t>=9984&&t<=10087||t>=10102&&t<=10131||65532===t||65533===t)}(t))}function kn(t,e){return!(!e&&(t>=1424&&t<=2303||yn[\"Arabic Presentation Forms-A\"](t)||yn[\"Arabic Presentation Forms-B\"](t))||t>=2304&&t<=3583||t>=3840&&t<=4255||yn.Khmer(t))}var Tn,An=!1,Mn=null,Sn=!1,En=new kt,Cn={applyArabicShaping:null,processBidirectionalText:null,processStyledBidirectionalText:null,isLoaded:function(){return Sn||null!=Cn.applyArabicShaping}},Ln=function(t,e){this.zoom=t,e?(this.now=e.now,this.fadeDuration=e.fadeDuration,this.zoomHistory=e.zoomHistory,this.transition=e.transition):(this.now=0,this.fadeDuration=0,this.zoomHistory=new mn,this.transition={})};Ln.prototype.isSupportedScript=function(t){return function(t,e){for(var r=0,n=t;r<n.length;r+=1)if(!kn(n[r].charCodeAt(0),e))return!1;return!0}(t,Cn.isLoaded())},Ln.prototype.crossFadingFactor=function(){return 0===this.fadeDuration?1:Math.min((this.now-this.zoomHistory.lastIntegerZoomTime)/this.fadeDuration,1)},Ln.prototype.getCrossfadeParameters=function(){var t=this.zoom,e=t-Math.floor(t),r=this.crossFadingFactor();return t>this.zoomHistory.lastIntegerZoom?{fromScale:2,toScale:1,t:e+(1-e)*r}:{fromScale:.5,toScale:1,t:1-(1-r)*e}};var Pn=function(t,e){this.property=t,this.value=e,this.expression=function(t,e){if(pr(t))return new Mr(t,e);if(_r(t)){var r=Ar(t,e);if(\"error\"===r.result)throw new Error(r.value.map(function(t){return t.key+\": \"+t.message}).join(\", \"));return r.value}var n=t;return\"string\"==typeof t&&\"color\"===e.type&&(n=Wt.parse(t)),{kind:\"constant\",evaluate:function(){return n}}}(void 0===e?t.specification.default:e,t.specification)};Pn.prototype.isDataDriven=function(){return\"source\"===this.expression.kind||\"composite\"===this.expression.kind},Pn.prototype.possiblyEvaluate=function(t){return this.property.possiblyEvaluate(this,t)};var On=function(t){this.property=t,this.value=new Pn(t,void 0)};On.prototype.transitioned=function(t,e){return new zn(this.property,this.value,e,h({},t.transition,this.transition),t.now)},On.prototype.untransitioned=function(){return new zn(this.property,this.value,null,{},0)};var In=function(t){this._properties=t,this._values=Object.create(t.defaultTransitionablePropertyValues)};In.prototype.getValue=function(t){return b(this._values[t].value.value)},In.prototype.setValue=function(t,e){this._values.hasOwnProperty(t)||(this._values[t]=new On(this._values[t].property)),this._values[t].value=new Pn(this._values[t].property,null===e?void 0:b(e))},In.prototype.getTransition=function(t){return b(this._values[t].transition)},In.prototype.setTransition=function(t,e){this._values.hasOwnProperty(t)||(this._values[t]=new On(this._values[t].property)),this._values[t].transition=b(e)||void 0},In.prototype.serialize=function(){for(var t={},e=0,r=Object.keys(this._values);e<r.length;e+=1){var n=r[e],a=this.getValue(n);void 0!==a&&(t[n]=a);var i=this.getTransition(n);void 0!==i&&(t[n+\"-transition\"]=i)}return t},In.prototype.transitioned=function(t,e){for(var r=new Dn(this._properties),n=0,a=Object.keys(this._values);n<a.length;n+=1){var i=a[n];r._values[i]=this._values[i].transitioned(t,e._values[i])}return r},In.prototype.untransitioned=function(){for(var t=new Dn(this._properties),e=0,r=Object.keys(this._values);e<r.length;e+=1){var n=r[e];t._values[n]=this._values[n].untransitioned()}return t};var zn=function(t,e,r,n,a){this.property=t,this.value=e,this.begin=a+n.delay||0,this.end=this.begin+n.duration||0,t.specification.transition&&(n.delay||n.duration)&&(this.prior=r)};zn.prototype.possiblyEvaluate=function(t){var e=t.now||0,r=this.value.possiblyEvaluate(t),n=this.prior;if(n){if(e>this.end)return this.prior=null,r;if(this.value.isDataDriven())return this.prior=null,r;if(e<this.begin)return n.possiblyEvaluate(t);var a=(e-this.begin)/(this.end-this.begin);return this.property.interpolate(n.possiblyEvaluate(t),r,function(t){if(a<=0)return 0;if(a>=1)return 1;var e=a*a,r=e*a;return 4*(a<.5?r:3*(a-e)+r-.75)}())}return r};var Dn=function(t){this._properties=t,this._values=Object.create(t.defaultTransitioningPropertyValues)};Dn.prototype.possiblyEvaluate=function(t){for(var e=new Bn(this._properties),r=0,n=Object.keys(this._values);r<n.length;r+=1){var a=n[r];e._values[a]=this._values[a].possiblyEvaluate(t)}return e},Dn.prototype.hasTransition=function(){for(var t=0,e=Object.keys(this._values);t<e.length;t+=1){var r=e[t];if(this._values[r].prior)return!0}return!1};var Rn=function(t){this._properties=t,this._values=Object.create(t.defaultPropertyValues)};Rn.prototype.getValue=function(t){return b(this._values[t].value)},Rn.prototype.setValue=function(t,e){this._values[t]=new Pn(this._values[t].property,null===e?void 0:b(e))},Rn.prototype.serialize=function(){for(var t={},e=0,r=Object.keys(this._values);e<r.length;e+=1){var n=r[e],a=this.getValue(n);void 0!==a&&(t[n]=a)}return t},Rn.prototype.possiblyEvaluate=function(t){for(var e=new Bn(this._properties),r=0,n=Object.keys(this._values);r<n.length;r+=1){var a=n[r];e._values[a]=this._values[a].possiblyEvaluate(t)}return e};var Fn=function(t,e,r){this.property=t,this.value=e,this.parameters=r};Fn.prototype.isConstant=function(){return\"constant\"===this.value.kind},Fn.prototype.constantOr=function(t){return\"constant\"===this.value.kind?this.value.value:t},Fn.prototype.evaluate=function(t,e){return this.property.evaluate(this.value,this.parameters,t,e)};var Bn=function(t){this._properties=t,this._values=Object.create(t.defaultPossiblyEvaluatedValues)};Bn.prototype.get=function(t){return this._values[t]};var Nn=function(t){this.specification=t};Nn.prototype.possiblyEvaluate=function(t,e){return t.expression.evaluate(e)},Nn.prototype.interpolate=function(t,e,r){var n=xe[this.specification.type];return n?n(t,e,r):t};var jn=function(t,e){this.specification=t,this.overrides=e};jn.prototype.possiblyEvaluate=function(t,e){return\"constant\"===t.expression.kind||\"camera\"===t.expression.kind?new Fn(this,{kind:\"constant\",value:t.expression.evaluate(e)},e):new Fn(this,t.expression,e)},jn.prototype.interpolate=function(t,e,r){if(\"constant\"!==t.value.kind||\"constant\"!==e.value.kind)return t;if(void 0===t.value.value||void 0===e.value.value)return new Fn(this,{kind:\"constant\",value:void 0},t.parameters);var n=xe[this.specification.type];return n?new Fn(this,{kind:\"constant\",value:n(t.value.value,e.value.value,r)},t.parameters):t},jn.prototype.evaluate=function(t,e,r,n){return\"constant\"===t.kind?t.value:t.evaluate(e,r,n)};var Vn=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.possiblyEvaluate=function(t,e){if(void 0===t.value)return new Fn(this,{kind:\"constant\",value:void 0},e);if(\"constant\"===t.expression.kind){var r=t.expression.evaluate(e),n=this._calculate(r,r,r,e);return new Fn(this,{kind:\"constant\",value:n},e)}if(\"camera\"===t.expression.kind){var a=this._calculate(t.expression.evaluate({zoom:e.zoom-1}),t.expression.evaluate({zoom:e.zoom}),t.expression.evaluate({zoom:e.zoom+1}),e);return new Fn(this,{kind:\"constant\",value:a},e)}return new Fn(this,t.expression,e)},e.prototype.evaluate=function(t,e,r,n){if(\"source\"===t.kind){var a=t.evaluate(e,r,n);return this._calculate(a,a,a,e)}return\"composite\"===t.kind?this._calculate(t.evaluate({zoom:Math.floor(e.zoom)-1},r,n),t.evaluate({zoom:Math.floor(e.zoom)},r,n),t.evaluate({zoom:Math.floor(e.zoom)+1},r,n),e):t.value},e.prototype._calculate=function(t,e,r,n){return n.zoom>n.zoomHistory.lastIntegerZoom?{from:t,to:e}:{from:r,to:e}},e.prototype.interpolate=function(t){return t},e}(jn),Un=function(t){this.specification=t};Un.prototype.possiblyEvaluate=function(t,e){if(void 0!==t.value){if(\"constant\"===t.expression.kind){var r=t.expression.evaluate(e);return this._calculate(r,r,r,e)}return this._calculate(t.expression.evaluate(new Ln(Math.floor(e.zoom-1),e)),t.expression.evaluate(new Ln(Math.floor(e.zoom),e)),t.expression.evaluate(new Ln(Math.floor(e.zoom+1),e)),e)}},Un.prototype._calculate=function(t,e,r,n){return n.zoom>n.zoomHistory.lastIntegerZoom?{from:t,to:e}:{from:r,to:e}},Un.prototype.interpolate=function(t){return t};var qn=function(t){this.specification=t};qn.prototype.possiblyEvaluate=function(t,e){return!!t.expression.evaluate(e)},qn.prototype.interpolate=function(){return!1};var Hn=function(t){for(var e in this.properties=t,this.defaultPropertyValues={},this.defaultTransitionablePropertyValues={},this.defaultTransitioningPropertyValues={},this.defaultPossiblyEvaluatedValues={},this.overridableProperties=[],t){var r=t[e];r.specification.overridable&&this.overridableProperties.push(e);var n=this.defaultPropertyValues[e]=new Pn(r,void 0),a=this.defaultTransitionablePropertyValues[e]=new On(r);this.defaultTransitioningPropertyValues[e]=a.untransitioned(),this.defaultPossiblyEvaluatedValues[e]=n.possiblyEvaluate({})}};pn(\"DataDrivenProperty\",jn),pn(\"DataConstantProperty\",Nn),pn(\"CrossFadedDataDrivenProperty\",Vn),pn(\"CrossFadedProperty\",Un),pn(\"ColorRampProperty\",qn);var Gn=function(t){function e(e,r){if(t.call(this),this.id=e.id,this.type=e.type,this._featureFilter=function(){return!0},\"custom\"!==e.type&&(e=e,this.metadata=e.metadata,this.minzoom=e.minzoom,this.maxzoom=e.maxzoom,\"background\"!==e.type&&(this.source=e.source,this.sourceLayer=e[\"source-layer\"],this.filter=e.filter),r.layout&&(this._unevaluatedLayout=new Rn(r.layout)),r.paint)){for(var n in this._transitionablePaint=new In(r.paint),e.paint)this.setPaintProperty(n,e.paint[n],{validate:!1});for(var a in e.layout)this.setLayoutProperty(a,e.layout[a],{validate:!1});this._transitioningPaint=this._transitionablePaint.untransitioned()}}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getCrossfadeParameters=function(){return this._crossfadeParameters},e.prototype.getLayoutProperty=function(t){return\"visibility\"===t?this.visibility:this._unevaluatedLayout.getValue(t)},e.prototype.setLayoutProperty=function(t,e,r){if(void 0===r&&(r={}),null!=e){var n=\"layers.\"+this.id+\".layout.\"+t;if(this._validate(on,n,t,e,r))return}\"visibility\"!==t?this._unevaluatedLayout.setValue(t,e):this.visibility=e},e.prototype.getPaintProperty=function(t){return m(t,\"-transition\")?this._transitionablePaint.getTransition(t.slice(0,-\"-transition\".length)):this._transitionablePaint.getValue(t)},e.prototype.setPaintProperty=function(t,e,r){if(void 0===r&&(r={}),null!=e){var n=\"layers.\"+this.id+\".paint.\"+t;if(this._validate(an,n,t,e,r))return!1}if(m(t,\"-transition\"))return this._transitionablePaint.setTransition(t.slice(0,-\"-transition\".length),e||void 0),!1;var a=this._transitionablePaint._values[t],i=\"cross-faded-data-driven\"===a.property.specification[\"property-type\"],o=a.value.isDataDriven(),s=a.value;this._transitionablePaint.setValue(t,e),this._handleSpecialPaintPropertyUpdate(t);var l=this._transitionablePaint._values[t].value;return l.isDataDriven()||o||i||this._handleOverridablePaintPropertyUpdate(t,s,l)},e.prototype._handleSpecialPaintPropertyUpdate=function(t){},e.prototype._handleOverridablePaintPropertyUpdate=function(t,e,r){return!1},e.prototype.isHidden=function(t){return!!(this.minzoom&&t<this.minzoom)||!!(this.maxzoom&&t>=this.maxzoom)||\"none\"===this.visibility},e.prototype.updateTransitions=function(t){this._transitioningPaint=this._transitionablePaint.transitioned(t,this._transitioningPaint)},e.prototype.hasTransition=function(){return this._transitioningPaint.hasTransition()},e.prototype.recalculate=function(t){t.getCrossfadeParameters&&(this._crossfadeParameters=t.getCrossfadeParameters()),this._unevaluatedLayout&&(this.layout=this._unevaluatedLayout.possiblyEvaluate(t)),this.paint=this._transitioningPaint.possiblyEvaluate(t)},e.prototype.serialize=function(){var t={id:this.id,type:this.type,source:this.source,\"source-layer\":this.sourceLayer,metadata:this.metadata,minzoom:this.minzoom,maxzoom:this.maxzoom,filter:this.filter,layout:this._unevaluatedLayout&&this._unevaluatedLayout.serialize(),paint:this._transitionablePaint&&this._transitionablePaint.serialize()};return this.visibility&&(t.layout=t.layout||{},t.layout.visibility=this.visibility),x(t,function(t,e){return!(void 0===t||\"layout\"===e&&!Object.keys(t).length||\"paint\"===e&&!Object.keys(t).length)})},e.prototype._validate=function(t,e,r,n,a){return void 0===a&&(a={}),(!a||!1!==a.validate)&&sn(this,t.call(rn,{key:e,layerType:this.type,objectKey:r,value:n,styleSpec:Tt,style:{glyphs:!0,sprite:!0}}))},e.prototype.is3D=function(){return!1},e.prototype.isTileClipped=function(){return!1},e.prototype.hasOffscreenPass=function(){return!1},e.prototype.resize=function(){},e.prototype.isStateDependent=function(){for(var t in this.paint._values){var e=this.paint.get(t);if(e instanceof Fn&&cr(e.property.specification)&&(\"source\"===e.value.kind||\"composite\"===e.value.kind)&&e.value.isStateDependent)return!0}return!1},e}(kt),Yn={Int8:Int8Array,Uint8:Uint8Array,Int16:Int16Array,Uint16:Uint16Array,Int32:Int32Array,Uint32:Uint32Array,Float32:Float32Array},Wn=function(t,e){this._structArray=t,this._pos1=e*this.size,this._pos2=this._pos1/2,this._pos4=this._pos1/4,this._pos8=this._pos1/8},Xn=function(){this.isTransferred=!1,this.capacity=-1,this.resize(0)};function Zn(t,e){void 0===e&&(e=1);var r=0,n=0;return{members:t.map(function(t){var a,i=(a=t.type,Yn[a].BYTES_PER_ELEMENT),o=r=Jn(r,Math.max(e,i)),s=t.components||1;return n=Math.max(n,i),r+=i*s,{name:t.name,type:t.type,components:s,offset:o}}),size:Jn(r,Math.max(n,e)),alignment:e}}function Jn(t,e){return Math.ceil(t/e)*e}Xn.serialize=function(t,e){return t._trim(),e&&(t.isTransferred=!0,e.push(t.arrayBuffer)),{length:t.length,arrayBuffer:t.arrayBuffer}},Xn.deserialize=function(t){var e=Object.create(this.prototype);return e.arrayBuffer=t.arrayBuffer,e.length=t.length,e.capacity=t.arrayBuffer.byteLength/e.bytesPerElement,e._refreshViews(),e},Xn.prototype._trim=function(){this.length!==this.capacity&&(this.capacity=this.length,this.arrayBuffer=this.arrayBuffer.slice(0,this.length*this.bytesPerElement),this._refreshViews())},Xn.prototype.clear=function(){this.length=0},Xn.prototype.resize=function(t){this.reserve(t),this.length=t},Xn.prototype.reserve=function(t){if(t>this.capacity){this.capacity=Math.max(t,Math.floor(5*this.capacity),128),this.arrayBuffer=new ArrayBuffer(this.capacity*this.bytesPerElement);var e=this.uint8;this._refreshViews(),e&&this.uint8.set(e)}},Xn.prototype._refreshViews=function(){throw new Error(\"_refreshViews() must be implemented by each concrete StructArray layout\")};var Kn=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e){var r=this.length;return this.resize(r+1),this.emplace(r,t,e)},e.prototype.emplace=function(t,e,r){var n=2*t;return this.int16[n+0]=e,this.int16[n+1]=r,t},e}(Xn);Kn.prototype.bytesPerElement=4,pn(\"StructArrayLayout2i4\",Kn);var Qn=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n){var a=this.length;return this.resize(a+1),this.emplace(a,t,e,r,n)},e.prototype.emplace=function(t,e,r,n,a){var i=4*t;return this.int16[i+0]=e,this.int16[i+1]=r,this.int16[i+2]=n,this.int16[i+3]=a,t},e}(Xn);Qn.prototype.bytesPerElement=8,pn(\"StructArrayLayout4i8\",Qn);var $n=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,a,i){var o=this.length;return this.resize(o+1),this.emplace(o,t,e,r,n,a,i)},e.prototype.emplace=function(t,e,r,n,a,i,o){var s=6*t;return this.int16[s+0]=e,this.int16[s+1]=r,this.int16[s+2]=n,this.int16[s+3]=a,this.int16[s+4]=i,this.int16[s+5]=o,t},e}(Xn);$n.prototype.bytesPerElement=12,pn(\"StructArrayLayout2i4i12\",$n);var ta=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,a,i){var o=this.length;return this.resize(o+1),this.emplace(o,t,e,r,n,a,i)},e.prototype.emplace=function(t,e,r,n,a,i,o){var s=4*t,l=8*t;return this.int16[s+0]=e,this.int16[s+1]=r,this.uint8[l+4]=n,this.uint8[l+5]=a,this.uint8[l+6]=i,this.uint8[l+7]=o,t},e}(Xn);ta.prototype.bytesPerElement=8,pn(\"StructArrayLayout2i4ub8\",ta);var ea=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,a,i,o,s){var l=this.length;return this.resize(l+1),this.emplace(l,t,e,r,n,a,i,o,s)},e.prototype.emplace=function(t,e,r,n,a,i,o,s,l){var c=8*t;return this.uint16[c+0]=e,this.uint16[c+1]=r,this.uint16[c+2]=n,this.uint16[c+3]=a,this.uint16[c+4]=i,this.uint16[c+5]=o,this.uint16[c+6]=s,this.uint16[c+7]=l,t},e}(Xn);ea.prototype.bytesPerElement=16,pn(\"StructArrayLayout8ui16\",ea);var ra=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,a,i,o,s){var l=this.length;return this.resize(l+1),this.emplace(l,t,e,r,n,a,i,o,s)},e.prototype.emplace=function(t,e,r,n,a,i,o,s,l){var c=8*t;return this.int16[c+0]=e,this.int16[c+1]=r,this.int16[c+2]=n,this.int16[c+3]=a,this.uint16[c+4]=i,this.uint16[c+5]=o,this.uint16[c+6]=s,this.uint16[c+7]=l,t},e}(Xn);ra.prototype.bytesPerElement=16,pn(\"StructArrayLayout4i4ui16\",ra);var na=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r){var n=this.length;return this.resize(n+1),this.emplace(n,t,e,r)},e.prototype.emplace=function(t,e,r,n){var a=3*t;return this.float32[a+0]=e,this.float32[a+1]=r,this.float32[a+2]=n,t},e}(Xn);na.prototype.bytesPerElement=12,pn(\"StructArrayLayout3f12\",na);var aa=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t){var e=this.length;return this.resize(e+1),this.emplace(e,t)},e.prototype.emplace=function(t,e){var r=1*t;return this.uint32[r+0]=e,t},e}(Xn);aa.prototype.bytesPerElement=4,pn(\"StructArrayLayout1ul4\",aa);var ia=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,a,i,o,s,l,c,u){var h=this.length;return this.resize(h+1),this.emplace(h,t,e,r,n,a,i,o,s,l,c,u)},e.prototype.emplace=function(t,e,r,n,a,i,o,s,l,c,u,h){var f=12*t,p=6*t;return this.int16[f+0]=e,this.int16[f+1]=r,this.int16[f+2]=n,this.int16[f+3]=a,this.int16[f+4]=i,this.int16[f+5]=o,this.uint32[p+3]=s,this.uint16[f+8]=l,this.uint16[f+9]=c,this.int16[f+10]=u,this.int16[f+11]=h,t},e}(Xn);ia.prototype.bytesPerElement=24,pn(\"StructArrayLayout6i1ul2ui2i24\",ia);var oa=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,a,i){var o=this.length;return this.resize(o+1),this.emplace(o,t,e,r,n,a,i)},e.prototype.emplace=function(t,e,r,n,a,i,o){var s=6*t;return this.int16[s+0]=e,this.int16[s+1]=r,this.int16[s+2]=n,this.int16[s+3]=a,this.int16[s+4]=i,this.int16[s+5]=o,t},e}(Xn);oa.prototype.bytesPerElement=12,pn(\"StructArrayLayout2i2i2i12\",oa);var sa=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n){var a=this.length;return this.resize(a+1),this.emplace(a,t,e,r,n)},e.prototype.emplace=function(t,e,r,n,a){var i=12*t,o=3*t;return this.uint8[i+0]=e,this.uint8[i+1]=r,this.float32[o+1]=n,this.float32[o+2]=a,t},e}(Xn);sa.prototype.bytesPerElement=12,pn(\"StructArrayLayout2ub2f12\",sa);var la=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,a,i,o,s,l,c,u,h,f,p,d,g){var v=this.length;return this.resize(v+1),this.emplace(v,t,e,r,n,a,i,o,s,l,c,u,h,f,p,d,g)},e.prototype.emplace=function(t,e,r,n,a,i,o,s,l,c,u,h,f,p,d,g,v){var m=22*t,y=11*t,x=44*t;return this.int16[m+0]=e,this.int16[m+1]=r,this.uint16[m+2]=n,this.uint16[m+3]=a,this.uint32[y+2]=i,this.uint32[y+3]=o,this.uint32[y+4]=s,this.uint16[m+10]=l,this.uint16[m+11]=c,this.uint16[m+12]=u,this.float32[y+7]=h,this.float32[y+8]=f,this.uint8[x+36]=p,this.uint8[x+37]=d,this.uint8[x+38]=g,this.uint32[y+10]=v,t},e}(Xn);la.prototype.bytesPerElement=44,pn(\"StructArrayLayout2i2ui3ul3ui2f3ub1ul44\",la);var ca=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,a,i,o,s,l,c,u,h,f,p,d,g,v,m,y,x){var b=this.length;return this.resize(b+1),this.emplace(b,t,e,r,n,a,i,o,s,l,c,u,h,f,p,d,g,v,m,y,x)},e.prototype.emplace=function(t,e,r,n,a,i,o,s,l,c,u,h,f,p,d,g,v,m,y,x,b){var _=24*t,w=12*t;return this.int16[_+0]=e,this.int16[_+1]=r,this.int16[_+2]=n,this.int16[_+3]=a,this.int16[_+4]=i,this.int16[_+5]=o,this.uint16[_+6]=s,this.uint16[_+7]=l,this.uint16[_+8]=c,this.uint16[_+9]=u,this.uint16[_+10]=h,this.uint16[_+11]=f,this.uint16[_+12]=p,this.uint16[_+13]=d,this.uint16[_+14]=g,this.uint16[_+15]=v,this.uint16[_+16]=m,this.uint32[w+9]=y,this.float32[w+10]=x,this.float32[w+11]=b,t},e}(Xn);ca.prototype.bytesPerElement=48,pn(\"StructArrayLayout6i11ui1ul2f48\",ca);var ua=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t){var e=this.length;return this.resize(e+1),this.emplace(e,t)},e.prototype.emplace=function(t,e){var r=1*t;return this.float32[r+0]=e,t},e}(Xn);ua.prototype.bytesPerElement=4,pn(\"StructArrayLayout1f4\",ua);var ha=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r){var n=this.length;return this.resize(n+1),this.emplace(n,t,e,r)},e.prototype.emplace=function(t,e,r,n){var a=3*t;return this.int16[a+0]=e,this.int16[a+1]=r,this.int16[a+2]=n,t},e}(Xn);ha.prototype.bytesPerElement=6,pn(\"StructArrayLayout3i6\",ha);var fa=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r){var n=this.length;return this.resize(n+1),this.emplace(n,t,e,r)},e.prototype.emplace=function(t,e,r,n){var a=2*t,i=4*t;return this.uint32[a+0]=e,this.uint16[i+2]=r,this.uint16[i+3]=n,t},e}(Xn);fa.prototype.bytesPerElement=8,pn(\"StructArrayLayout1ul2ui8\",fa);var pa=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r){var n=this.length;return this.resize(n+1),this.emplace(n,t,e,r)},e.prototype.emplace=function(t,e,r,n){var a=3*t;return this.uint16[a+0]=e,this.uint16[a+1]=r,this.uint16[a+2]=n,t},e}(Xn);pa.prototype.bytesPerElement=6,pn(\"StructArrayLayout3ui6\",pa);var da=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e){var r=this.length;return this.resize(r+1),this.emplace(r,t,e)},e.prototype.emplace=function(t,e,r){var n=2*t;return this.uint16[n+0]=e,this.uint16[n+1]=r,t},e}(Xn);da.prototype.bytesPerElement=4,pn(\"StructArrayLayout2ui4\",da);var ga=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t){var e=this.length;return this.resize(e+1),this.emplace(e,t)},e.prototype.emplace=function(t,e){var r=1*t;return this.uint16[r+0]=e,t},e}(Xn);ga.prototype.bytesPerElement=2,pn(\"StructArrayLayout1ui2\",ga);var va=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e){var r=this.length;return this.resize(r+1),this.emplace(r,t,e)},e.prototype.emplace=function(t,e,r){var n=2*t;return this.float32[n+0]=e,this.float32[n+1]=r,t},e}(Xn);va.prototype.bytesPerElement=8,pn(\"StructArrayLayout2f8\",va);var ma=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n){var a=this.length;return this.resize(a+1),this.emplace(a,t,e,r,n)},e.prototype.emplace=function(t,e,r,n,a){var i=4*t;return this.float32[i+0]=e,this.float32[i+1]=r,this.float32[i+2]=n,this.float32[i+3]=a,t},e}(Xn);ma.prototype.bytesPerElement=16,pn(\"StructArrayLayout4f16\",ma);var ya=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={anchorPointX:{configurable:!0},anchorPointY:{configurable:!0},x1:{configurable:!0},y1:{configurable:!0},x2:{configurable:!0},y2:{configurable:!0},featureIndex:{configurable:!0},sourceLayerIndex:{configurable:!0},bucketIndex:{configurable:!0},radius:{configurable:!0},signedDistanceFromAnchor:{configurable:!0},anchorPoint:{configurable:!0}};return r.anchorPointX.get=function(){return this._structArray.int16[this._pos2+0]},r.anchorPointX.set=function(t){this._structArray.int16[this._pos2+0]=t},r.anchorPointY.get=function(){return this._structArray.int16[this._pos2+1]},r.anchorPointY.set=function(t){this._structArray.int16[this._pos2+1]=t},r.x1.get=function(){return this._structArray.int16[this._pos2+2]},r.x1.set=function(t){this._structArray.int16[this._pos2+2]=t},r.y1.get=function(){return this._structArray.int16[this._pos2+3]},r.y1.set=function(t){this._structArray.int16[this._pos2+3]=t},r.x2.get=function(){return this._structArray.int16[this._pos2+4]},r.x2.set=function(t){this._structArray.int16[this._pos2+4]=t},r.y2.get=function(){return this._structArray.int16[this._pos2+5]},r.y2.set=function(t){this._structArray.int16[this._pos2+5]=t},r.featureIndex.get=function(){return this._structArray.uint32[this._pos4+3]},r.featureIndex.set=function(t){this._structArray.uint32[this._pos4+3]=t},r.sourceLayerIndex.get=function(){return this._structArray.uint16[this._pos2+8]},r.sourceLayerIndex.set=function(t){this._structArray.uint16[this._pos2+8]=t},r.bucketIndex.get=function(){return this._structArray.uint16[this._pos2+9]},r.bucketIndex.set=function(t){this._structArray.uint16[this._pos2+9]=t},r.radius.get=function(){return this._structArray.int16[this._pos2+10]},r.radius.set=function(t){this._structArray.int16[this._pos2+10]=t},r.signedDistanceFromAnchor.get=function(){return this._structArray.int16[this._pos2+11]},r.signedDistanceFromAnchor.set=function(t){this._structArray.int16[this._pos2+11]=t},r.anchorPoint.get=function(){return new a(this.anchorPointX,this.anchorPointY)},Object.defineProperties(e.prototype,r),e}(Wn);ya.prototype.size=24;var xa=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.get=function(t){return new ya(this,t)},e}(ia);pn(\"CollisionBoxArray\",xa);var ba=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={anchorX:{configurable:!0},anchorY:{configurable:!0},glyphStartIndex:{configurable:!0},numGlyphs:{configurable:!0},vertexStartIndex:{configurable:!0},lineStartIndex:{configurable:!0},lineLength:{configurable:!0},segment:{configurable:!0},lowerSize:{configurable:!0},upperSize:{configurable:!0},lineOffsetX:{configurable:!0},lineOffsetY:{configurable:!0},writingMode:{configurable:!0},placedOrientation:{configurable:!0},hidden:{configurable:!0},crossTileID:{configurable:!0}};return r.anchorX.get=function(){return this._structArray.int16[this._pos2+0]},r.anchorX.set=function(t){this._structArray.int16[this._pos2+0]=t},r.anchorY.get=function(){return this._structArray.int16[this._pos2+1]},r.anchorY.set=function(t){this._structArray.int16[this._pos2+1]=t},r.glyphStartIndex.get=function(){return this._structArray.uint16[this._pos2+2]},r.glyphStartIndex.set=function(t){this._structArray.uint16[this._pos2+2]=t},r.numGlyphs.get=function(){return this._structArray.uint16[this._pos2+3]},r.numGlyphs.set=function(t){this._structArray.uint16[this._pos2+3]=t},r.vertexStartIndex.get=function(){return this._structArray.uint32[this._pos4+2]},r.vertexStartIndex.set=function(t){this._structArray.uint32[this._pos4+2]=t},r.lineStartIndex.get=function(){return this._structArray.uint32[this._pos4+3]},r.lineStartIndex.set=function(t){this._structArray.uint32[this._pos4+3]=t},r.lineLength.get=function(){return this._structArray.uint32[this._pos4+4]},r.lineLength.set=function(t){this._structArray.uint32[this._pos4+4]=t},r.segment.get=function(){return this._structArray.uint16[this._pos2+10]},r.segment.set=function(t){this._structArray.uint16[this._pos2+10]=t},r.lowerSize.get=function(){return this._structArray.uint16[this._pos2+11]},r.lowerSize.set=function(t){this._structArray.uint16[this._pos2+11]=t},r.upperSize.get=function(){return this._structArray.uint16[this._pos2+12]},r.upperSize.set=function(t){this._structArray.uint16[this._pos2+12]=t},r.lineOffsetX.get=function(){return this._structArray.float32[this._pos4+7]},r.lineOffsetX.set=function(t){this._structArray.float32[this._pos4+7]=t},r.lineOffsetY.get=function(){return this._structArray.float32[this._pos4+8]},r.lineOffsetY.set=function(t){this._structArray.float32[this._pos4+8]=t},r.writingMode.get=function(){return this._structArray.uint8[this._pos1+36]},r.writingMode.set=function(t){this._structArray.uint8[this._pos1+36]=t},r.placedOrientation.get=function(){return this._structArray.uint8[this._pos1+37]},r.placedOrientation.set=function(t){this._structArray.uint8[this._pos1+37]=t},r.hidden.get=function(){return this._structArray.uint8[this._pos1+38]},r.hidden.set=function(t){this._structArray.uint8[this._pos1+38]=t},r.crossTileID.get=function(){return this._structArray.uint32[this._pos4+10]},r.crossTileID.set=function(t){this._structArray.uint32[this._pos4+10]=t},Object.defineProperties(e.prototype,r),e}(Wn);ba.prototype.size=44;var _a=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.get=function(t){return new ba(this,t)},e}(la);pn(\"PlacedSymbolArray\",_a);var wa=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={anchorX:{configurable:!0},anchorY:{configurable:!0},rightJustifiedTextSymbolIndex:{configurable:!0},centerJustifiedTextSymbolIndex:{configurable:!0},leftJustifiedTextSymbolIndex:{configurable:!0},verticalPlacedTextSymbolIndex:{configurable:!0},key:{configurable:!0},textBoxStartIndex:{configurable:!0},textBoxEndIndex:{configurable:!0},verticalTextBoxStartIndex:{configurable:!0},verticalTextBoxEndIndex:{configurable:!0},iconBoxStartIndex:{configurable:!0},iconBoxEndIndex:{configurable:!0},featureIndex:{configurable:!0},numHorizontalGlyphVertices:{configurable:!0},numVerticalGlyphVertices:{configurable:!0},numIconVertices:{configurable:!0},crossTileID:{configurable:!0},textBoxScale:{configurable:!0},radialTextOffset:{configurable:!0}};return r.anchorX.get=function(){return this._structArray.int16[this._pos2+0]},r.anchorX.set=function(t){this._structArray.int16[this._pos2+0]=t},r.anchorY.get=function(){return this._structArray.int16[this._pos2+1]},r.anchorY.set=function(t){this._structArray.int16[this._pos2+1]=t},r.rightJustifiedTextSymbolIndex.get=function(){return this._structArray.int16[this._pos2+2]},r.rightJustifiedTextSymbolIndex.set=function(t){this._structArray.int16[this._pos2+2]=t},r.centerJustifiedTextSymbolIndex.get=function(){return this._structArray.int16[this._pos2+3]},r.centerJustifiedTextSymbolIndex.set=function(t){this._structArray.int16[this._pos2+3]=t},r.leftJustifiedTextSymbolIndex.get=function(){return this._structArray.int16[this._pos2+4]},r.leftJustifiedTextSymbolIndex.set=function(t){this._structArray.int16[this._pos2+4]=t},r.verticalPlacedTextSymbolIndex.get=function(){return this._structArray.int16[this._pos2+5]},r.verticalPlacedTextSymbolIndex.set=function(t){this._structArray.int16[this._pos2+5]=t},r.key.get=function(){return this._structArray.uint16[this._pos2+6]},r.key.set=function(t){this._structArray.uint16[this._pos2+6]=t},r.textBoxStartIndex.get=function(){return this._structArray.uint16[this._pos2+7]},r.textBoxStartIndex.set=function(t){this._structArray.uint16[this._pos2+7]=t},r.textBoxEndIndex.get=function(){return this._structArray.uint16[this._pos2+8]},r.textBoxEndIndex.set=function(t){this._structArray.uint16[this._pos2+8]=t},r.verticalTextBoxStartIndex.get=function(){return this._structArray.uint16[this._pos2+9]},r.verticalTextBoxStartIndex.set=function(t){this._structArray.uint16[this._pos2+9]=t},r.verticalTextBoxEndIndex.get=function(){return this._structArray.uint16[this._pos2+10]},r.verticalTextBoxEndIndex.set=function(t){this._structArray.uint16[this._pos2+10]=t},r.iconBoxStartIndex.get=function(){return this._structArray.uint16[this._pos2+11]},r.iconBoxStartIndex.set=function(t){this._structArray.uint16[this._pos2+11]=t},r.iconBoxEndIndex.get=function(){return this._structArray.uint16[this._pos2+12]},r.iconBoxEndIndex.set=function(t){this._structArray.uint16[this._pos2+12]=t},r.featureIndex.get=function(){return this._structArray.uint16[this._pos2+13]},r.featureIndex.set=function(t){this._structArray.uint16[this._pos2+13]=t},r.numHorizontalGlyphVertices.get=function(){return this._structArray.uint16[this._pos2+14]},r.numHorizontalGlyphVertices.set=function(t){this._structArray.uint16[this._pos2+14]=t},r.numVerticalGlyphVertices.get=function(){return this._structArray.uint16[this._pos2+15]},r.numVerticalGlyphVertices.set=function(t){this._structArray.uint16[this._pos2+15]=t},r.numIconVertices.get=function(){return this._structArray.uint16[this._pos2+16]},r.numIconVertices.set=function(t){this._structArray.uint16[this._pos2+16]=t},r.crossTileID.get=function(){return this._structArray.uint32[this._pos4+9]},r.crossTileID.set=function(t){this._structArray.uint32[this._pos4+9]=t},r.textBoxScale.get=function(){return this._structArray.float32[this._pos4+10]},r.textBoxScale.set=function(t){this._structArray.float32[this._pos4+10]=t},r.radialTextOffset.get=function(){return this._structArray.float32[this._pos4+11]},r.radialTextOffset.set=function(t){this._structArray.float32[this._pos4+11]=t},Object.defineProperties(e.prototype,r),e}(Wn);wa.prototype.size=48;var ka=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.get=function(t){return new wa(this,t)},e}(ca);pn(\"SymbolInstanceArray\",ka);var Ta=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={offsetX:{configurable:!0}};return r.offsetX.get=function(){return this._structArray.float32[this._pos4+0]},r.offsetX.set=function(t){this._structArray.float32[this._pos4+0]=t},Object.defineProperties(e.prototype,r),e}(Wn);Ta.prototype.size=4;var Aa=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getoffsetX=function(t){return this.float32[1*t+0]},e.prototype.get=function(t){return new Ta(this,t)},e}(ua);pn(\"GlyphOffsetArray\",Aa);var Ma=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={x:{configurable:!0},y:{configurable:!0},tileUnitDistanceFromAnchor:{configurable:!0}};return r.x.get=function(){return this._structArray.int16[this._pos2+0]},r.x.set=function(t){this._structArray.int16[this._pos2+0]=t},r.y.get=function(){return this._structArray.int16[this._pos2+1]},r.y.set=function(t){this._structArray.int16[this._pos2+1]=t},r.tileUnitDistanceFromAnchor.get=function(){return this._structArray.int16[this._pos2+2]},r.tileUnitDistanceFromAnchor.set=function(t){this._structArray.int16[this._pos2+2]=t},Object.defineProperties(e.prototype,r),e}(Wn);Ma.prototype.size=6;var Sa=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getx=function(t){return this.int16[3*t+0]},e.prototype.gety=function(t){return this.int16[3*t+1]},e.prototype.gettileUnitDistanceFromAnchor=function(t){return this.int16[3*t+2]},e.prototype.get=function(t){return new Ma(this,t)},e}(ha);pn(\"SymbolLineVertexArray\",Sa);var Ea=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={featureIndex:{configurable:!0},sourceLayerIndex:{configurable:!0},bucketIndex:{configurable:!0}};return r.featureIndex.get=function(){return this._structArray.uint32[this._pos4+0]},r.featureIndex.set=function(t){this._structArray.uint32[this._pos4+0]=t},r.sourceLayerIndex.get=function(){return this._structArray.uint16[this._pos2+2]},r.sourceLayerIndex.set=function(t){this._structArray.uint16[this._pos2+2]=t},r.bucketIndex.get=function(){return this._structArray.uint16[this._pos2+3]},r.bucketIndex.set=function(t){this._structArray.uint16[this._pos2+3]=t},Object.defineProperties(e.prototype,r),e}(Wn);Ea.prototype.size=8;var Ca=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.get=function(t){return new Ea(this,t)},e}(fa);pn(\"FeatureIndexArray\",Ca);var La=Zn([{name:\"a_pos\",components:2,type:\"Int16\"}],4).members,Pa=function(t){void 0===t&&(t=[]),this.segments=t};function Oa(t,e){return 256*(t=c(Math.floor(t),0,255))+c(Math.floor(e),0,255)}Pa.prototype.prepareSegment=function(t,e,r,n){var a=this.segments[this.segments.length-1];return t>Pa.MAX_VERTEX_ARRAY_LENGTH&&w(\"Max vertices per segment is \"+Pa.MAX_VERTEX_ARRAY_LENGTH+\": bucket requested \"+t),(!a||a.vertexLength+t>Pa.MAX_VERTEX_ARRAY_LENGTH||a.sortKey!==n)&&(a={vertexOffset:e.length,primitiveOffset:r.length,vertexLength:0,primitiveLength:0},void 0!==n&&(a.sortKey=n),this.segments.push(a)),a},Pa.prototype.get=function(){return this.segments},Pa.prototype.destroy=function(){for(var t=0,e=this.segments;t<e.length;t+=1){var r=e[t];for(var n in r.vaos)r.vaos[n].destroy()}},Pa.simpleSegment=function(t,e,r,n){return new Pa([{vertexOffset:t,primitiveOffset:e,vertexLength:r,primitiveLength:n,vaos:{},sortKey:0}])},Pa.MAX_VERTEX_ARRAY_LENGTH=Math.pow(2,16)-1,pn(\"SegmentVector\",Pa);var Ia=function(){this.ids=[],this.positions=[],this.indexed=!1};function za(t,e,r){var n=t[e];t[e]=t[r],t[r]=n}Ia.prototype.add=function(t,e,r,n){this.ids.push(t),this.positions.push(e,r,n)},Ia.prototype.getPositions=function(t){for(var e=0,r=this.ids.length-1;e<r;){var n=e+r>>1;this.ids[n]>=t?r=n:e=n+1}for(var a=[];this.ids[e]===t;){var i=this.positions[3*e],o=this.positions[3*e+1],s=this.positions[3*e+2];a.push({index:i,start:o,end:s}),e++}return a},Ia.serialize=function(t,e){var r=new Float64Array(t.ids),n=new Uint32Array(t.positions);return function t(e,r,n,a){if(!(n>=a)){for(var i=e[n+a>>1],o=n-1,s=a+1;;){do{o++}while(e[o]<i);do{s--}while(e[s]>i);if(o>=s)break;za(e,o,s),za(r,3*o,3*s),za(r,3*o+1,3*s+1),za(r,3*o+2,3*s+2)}t(e,r,n,s),t(e,r,s+1,a)}}(r,n,0,r.length-1),e.push(r.buffer,n.buffer),{ids:r,positions:n}},Ia.deserialize=function(t){var e=new Ia;return e.ids=t.ids,e.positions=t.positions,e.indexed=!0,e},pn(\"FeaturePositionMap\",Ia);var Da=function(t,e){this.gl=t.gl,this.location=e},Ra=function(t){function e(e,r){t.call(this,e,r),this.current=0}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.set=function(t){this.current!==t&&(this.current=t,this.gl.uniform1i(this.location,t))},e}(Da),Fa=function(t){function e(e,r){t.call(this,e,r),this.current=0}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.set=function(t){this.current!==t&&(this.current=t,this.gl.uniform1f(this.location,t))},e}(Da),Ba=function(t){function e(e,r){t.call(this,e,r),this.current=[0,0]}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.set=function(t){t[0]===this.current[0]&&t[1]===this.current[1]||(this.current=t,this.gl.uniform2f(this.location,t[0],t[1]))},e}(Da),Na=function(t){function e(e,r){t.call(this,e,r),this.current=[0,0,0]}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.set=function(t){t[0]===this.current[0]&&t[1]===this.current[1]&&t[2]===this.current[2]||(this.current=t,this.gl.uniform3f(this.location,t[0],t[1],t[2]))},e}(Da),ja=function(t){function e(e,r){t.call(this,e,r),this.current=[0,0,0,0]}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.set=function(t){t[0]===this.current[0]&&t[1]===this.current[1]&&t[2]===this.current[2]&&t[3]===this.current[3]||(this.current=t,this.gl.uniform4f(this.location,t[0],t[1],t[2],t[3]))},e}(Da),Va=function(t){function e(e,r){t.call(this,e,r),this.current=Wt.transparent}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.set=function(t){t.r===this.current.r&&t.g===this.current.g&&t.b===this.current.b&&t.a===this.current.a||(this.current=t,this.gl.uniform4f(this.location,t.r,t.g,t.b,t.a))},e}(Da),Ua=new Float32Array(16),qa=function(t){function e(e,r){t.call(this,e,r),this.current=Ua}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.set=function(t){if(t[12]!==this.current[12]||t[0]!==this.current[0])return this.current=t,void this.gl.uniformMatrix4fv(this.location,!1,t);for(var e=1;e<16;e++)if(t[e]!==this.current[e]){this.current=t,this.gl.uniformMatrix4fv(this.location,!1,t);break}},e}(Da);function Ha(t){return[Oa(255*t.r,255*t.g),Oa(255*t.b,255*t.a)]}var Ga=function(t,e,r){this.value=t,this.names=e,this.uniformNames=this.names.map(function(t){return\"u_\"+t}),this.type=r,this.maxValue=-1/0};Ga.prototype.defines=function(){return this.names.map(function(t){return\"#define HAS_UNIFORM_u_\"+t})},Ga.prototype.setConstantPatternPositions=function(){},Ga.prototype.populatePaintArray=function(){},Ga.prototype.updatePaintArray=function(){},Ga.prototype.upload=function(){},Ga.prototype.destroy=function(){},Ga.prototype.setUniforms=function(t,e,r,n){e.set(n.constantOr(this.value))},Ga.prototype.getBinding=function(t,e){return\"color\"===this.type?new Va(t,e):new Fa(t,e)},Ga.serialize=function(t){var e=t.value,r=t.names,n=t.type;return{value:gn(e),names:r,type:n}},Ga.deserialize=function(t){var e=t.value,r=t.names,n=t.type;return new Ga(vn(e),r,n)};var Ya=function(t,e,r){this.value=t,this.names=e,this.uniformNames=this.names.map(function(t){return\"u_\"+t}),this.type=r,this.maxValue=-1/0,this.patternPositions={patternTo:null,patternFrom:null}};Ya.prototype.defines=function(){return this.names.map(function(t){return\"#define HAS_UNIFORM_u_\"+t})},Ya.prototype.populatePaintArray=function(){},Ya.prototype.updatePaintArray=function(){},Ya.prototype.upload=function(){},Ya.prototype.destroy=function(){},Ya.prototype.setConstantPatternPositions=function(t,e){this.patternPositions.patternTo=t.tlbr,this.patternPositions.patternFrom=e.tlbr},Ya.prototype.setUniforms=function(t,e,r,n,a){var i=this.patternPositions;\"u_pattern_to\"===a&&i.patternTo&&e.set(i.patternTo),\"u_pattern_from\"===a&&i.patternFrom&&e.set(i.patternFrom)},Ya.prototype.getBinding=function(t,e){return new ja(t,e)};var Wa=function(t,e,r,n){this.expression=t,this.names=e,this.type=r,this.uniformNames=this.names.map(function(t){return\"a_\"+t}),this.maxValue=-1/0,this.paintVertexAttributes=e.map(function(t){return{name:\"a_\"+t,type:\"Float32\",components:\"color\"===r?2:1,offset:0}}),this.paintVertexArray=new n};Wa.prototype.defines=function(){return[]},Wa.prototype.setConstantPatternPositions=function(){},Wa.prototype.populatePaintArray=function(t,e,r,n){var a=this.paintVertexArray,i=a.length;a.reserve(t);var o=this.expression.evaluate(new Ln(0),e,{},n);if(\"color\"===this.type)for(var s=Ha(o),l=i;l<t;l++)a.emplaceBack(s[0],s[1]);else{for(var c=i;c<t;c++)a.emplaceBack(o);this.maxValue=Math.max(this.maxValue,o)}},Wa.prototype.updatePaintArray=function(t,e,r,n){var a=this.paintVertexArray,i=this.expression.evaluate({zoom:0},r,n);if(\"color\"===this.type)for(var o=Ha(i),s=t;s<e;s++)a.emplace(s,o[0],o[1]);else{for(var l=t;l<e;l++)a.emplace(l,i);this.maxValue=Math.max(this.maxValue,i)}},Wa.prototype.upload=function(t){this.paintVertexArray&&this.paintVertexArray.arrayBuffer&&(this.paintVertexBuffer&&this.paintVertexBuffer.buffer?this.paintVertexBuffer.updateData(this.paintVertexArray):this.paintVertexBuffer=t.createVertexBuffer(this.paintVertexArray,this.paintVertexAttributes,this.expression.isStateDependent))},Wa.prototype.destroy=function(){this.paintVertexBuffer&&this.paintVertexBuffer.destroy()},Wa.prototype.setUniforms=function(t,e){e.set(0)},Wa.prototype.getBinding=function(t,e){return new Fa(t,e)};var Xa=function(t,e,r,n,a,i){this.expression=t,this.names=e,this.uniformNames=this.names.map(function(t){return\"u_\"+t+\"_t\"}),this.type=r,this.useIntegerZoom=n,this.zoom=a,this.maxValue=-1/0;var o=i;this.paintVertexAttributes=e.map(function(t){return{name:\"a_\"+t,type:\"Float32\",components:\"color\"===r?4:2,offset:0}}),this.paintVertexArray=new o};Xa.prototype.defines=function(){return[]},Xa.prototype.setConstantPatternPositions=function(){},Xa.prototype.populatePaintArray=function(t,e,r,n){var a=this.paintVertexArray,i=a.length;a.reserve(t);var o=this.expression.evaluate(new Ln(this.zoom),e,{},n),s=this.expression.evaluate(new Ln(this.zoom+1),e,{},n);if(\"color\"===this.type)for(var l=Ha(o),c=Ha(s),u=i;u<t;u++)a.emplaceBack(l[0],l[1],c[0],c[1]);else{for(var h=i;h<t;h++)a.emplaceBack(o,s);this.maxValue=Math.max(this.maxValue,o,s)}},Xa.prototype.updatePaintArray=function(t,e,r,n){var a=this.paintVertexArray,i=this.expression.evaluate({zoom:this.zoom},r,n),o=this.expression.evaluate({zoom:this.zoom+1},r,n);if(\"color\"===this.type)for(var s=Ha(i),l=Ha(o),c=t;c<e;c++)a.emplace(c,s[0],s[1],l[0],l[1]);else{for(var u=t;u<e;u++)a.emplace(u,i,o);this.maxValue=Math.max(this.maxValue,i,o)}},Xa.prototype.upload=function(t){this.paintVertexArray&&this.paintVertexArray.arrayBuffer&&(this.paintVertexBuffer&&this.paintVertexBuffer.buffer?this.paintVertexBuffer.updateData(this.paintVertexArray):this.paintVertexBuffer=t.createVertexBuffer(this.paintVertexArray,this.paintVertexAttributes,this.expression.isStateDependent))},Xa.prototype.destroy=function(){this.paintVertexBuffer&&this.paintVertexBuffer.destroy()},Xa.prototype.interpolationFactor=function(t){return this.useIntegerZoom?this.expression.interpolationFactor(Math.floor(t),this.zoom,this.zoom+1):this.expression.interpolationFactor(t,this.zoom,this.zoom+1)},Xa.prototype.setUniforms=function(t,e,r){e.set(this.interpolationFactor(r.zoom))},Xa.prototype.getBinding=function(t,e){return new Fa(t,e)};var Za=function(t,e,r,n,a,i,o){this.expression=t,this.names=e,this.type=r,this.uniformNames=this.names.map(function(t){return\"u_\"+t+\"_t\"}),this.useIntegerZoom=n,this.zoom=a,this.maxValue=-1/0,this.layerId=o,this.paintVertexAttributes=e.map(function(t){return{name:\"a_\"+t,type:\"Uint16\",components:4,offset:0}}),this.zoomInPaintVertexArray=new i,this.zoomOutPaintVertexArray=new i};Za.prototype.defines=function(){return[]},Za.prototype.setConstantPatternPositions=function(){},Za.prototype.populatePaintArray=function(t,e,r){var n=this.zoomInPaintVertexArray,a=this.zoomOutPaintVertexArray,i=this.layerId,o=n.length;if(n.reserve(t),a.reserve(t),r&&e.patterns&&e.patterns[i]){var s=e.patterns[i],l=s.min,c=s.mid,u=s.max,h=r[l],f=r[c],p=r[u];if(!h||!f||!p)return;for(var d=o;d<t;d++)n.emplaceBack(f.tl[0],f.tl[1],f.br[0],f.br[1],h.tl[0],h.tl[1],h.br[0],h.br[1]),a.emplaceBack(f.tl[0],f.tl[1],f.br[0],f.br[1],p.tl[0],p.tl[1],p.br[0],p.br[1])}},Za.prototype.updatePaintArray=function(t,e,r,n,a){var i=this.zoomInPaintVertexArray,o=this.zoomOutPaintVertexArray,s=this.layerId;if(a&&r.patterns&&r.patterns[s]){var l=r.patterns[s],c=l.min,u=l.mid,h=l.max,f=a[c],p=a[u],d=a[h];if(!f||!p||!d)return;for(var g=t;g<e;g++)i.emplace(g,p.tl[0],p.tl[1],p.br[0],p.br[1],f.tl[0],f.tl[1],f.br[0],f.br[1]),o.emplace(g,p.tl[0],p.tl[1],p.br[0],p.br[1],d.tl[0],d.tl[1],d.br[0],d.br[1])}},Za.prototype.upload=function(t){this.zoomInPaintVertexArray&&this.zoomInPaintVertexArray.arrayBuffer&&this.zoomOutPaintVertexArray&&this.zoomOutPaintVertexArray.arrayBuffer&&(this.zoomInPaintVertexBuffer=t.createVertexBuffer(this.zoomInPaintVertexArray,this.paintVertexAttributes,this.expression.isStateDependent),this.zoomOutPaintVertexBuffer=t.createVertexBuffer(this.zoomOutPaintVertexArray,this.paintVertexAttributes,this.expression.isStateDependent))},Za.prototype.destroy=function(){this.zoomOutPaintVertexBuffer&&this.zoomOutPaintVertexBuffer.destroy(),this.zoomInPaintVertexBuffer&&this.zoomInPaintVertexBuffer.destroy()},Za.prototype.setUniforms=function(t,e){e.set(0)},Za.prototype.getBinding=function(t,e){return new Fa(t,e)};var Ja=function(){this.binders={},this.cacheKey=\"\",this._buffers=[],this._featureMap=new Ia,this._bufferOffset=0};Ja.createDynamic=function(t,e,r){var n=new Ja,a=[];for(var i in t.paint._values)if(r(i)){var o=t.paint.get(i);if(o instanceof Fn&&cr(o.property.specification)){var s=Qa(i,t.type),l=o.property.specification.type,c=o.property.useIntegerZoom;if(\"cross-faded\"===o.property.specification[\"property-type\"]||\"cross-faded-data-driven\"===o.property.specification[\"property-type\"])if(\"constant\"===o.value.kind)n.binders[i]=new Ya(o.value.value,s,l),a.push(\"/u_\"+i);else{var u=$a(i,l,\"source\");n.binders[i]=new Za(o.value,s,l,c,e,u,t.id),a.push(\"/a_\"+i)}else if(\"constant\"===o.value.kind)n.binders[i]=new Ga(o.value.value,s,l),a.push(\"/u_\"+i);else if(\"source\"===o.value.kind){var h=$a(i,l,\"source\");n.binders[i]=new Wa(o.value,s,l,h),a.push(\"/a_\"+i)}else{var f=$a(i,l,\"composite\");n.binders[i]=new Xa(o.value,s,l,c,e,f),a.push(\"/z_\"+i)}}}return n.cacheKey=a.sort().join(\"\"),n},Ja.prototype.populatePaintArrays=function(t,e,r,n,a){for(var i in this.binders)this.binders[i].populatePaintArray(t,e,n,a);void 0!==e.id&&this._featureMap.add(+e.id,r,this._bufferOffset,t),this._bufferOffset=t},Ja.prototype.setConstantPatternPositions=function(t,e){for(var r in this.binders)this.binders[r].setConstantPatternPositions(t,e)},Ja.prototype.updatePaintArrays=function(t,e,r,n){var a=!1;for(var i in t)for(var o=0,s=this._featureMap.getPositions(+i);o<s.length;o+=1){var l=s[o],c=e.feature(l.index);for(var u in this.binders){var h=this.binders[u];if(!(h instanceof Ga||h instanceof Ya)&&!0===h.expression.isStateDependent){var f=r.paint.get(u);h.expression=f.value,h.updatePaintArray(l.start,l.end,c,t[i],n),a=!0}}}return a},Ja.prototype.defines=function(){var t=[];for(var e in this.binders)t.push.apply(t,this.binders[e].defines());return t},Ja.prototype.getPaintVertexBuffers=function(){return this._buffers},Ja.prototype.getUniforms=function(t,e){var r=[];for(var n in this.binders)for(var a=this.binders[n],i=0,o=a.uniformNames;i<o.length;i+=1){var s=o[i];if(e[s]){var l=a.getBinding(t,e[s]);r.push({name:s,property:n,binding:l})}}return r},Ja.prototype.setUniforms=function(t,e,r,n){for(var a=0,i=e;a<i.length;a+=1){var o=i[a],s=o.name,l=o.property,c=o.binding;this.binders[l].setUniforms(t,c,n,r.get(l),s)}},Ja.prototype.updatePatternPaintBuffers=function(t){var e=[];for(var r in this.binders){var n=this.binders[r];if(n instanceof Za){var a=2===t.fromScale?n.zoomInPaintVertexBuffer:n.zoomOutPaintVertexBuffer;a&&e.push(a)}else(n instanceof Wa||n instanceof Xa)&&n.paintVertexBuffer&&e.push(n.paintVertexBuffer)}this._buffers=e},Ja.prototype.upload=function(t){for(var e in this.binders)this.binders[e].upload(t);var r=[];for(var n in this.binders){var a=this.binders[n];(a instanceof Wa||a instanceof Xa)&&a.paintVertexBuffer&&r.push(a.paintVertexBuffer)}this._buffers=r},Ja.prototype.destroy=function(){for(var t in this.binders)this.binders[t].destroy()};var Ka=function(t,e,r,n){void 0===n&&(n=function(){return!0}),this.programConfigurations={};for(var a=0,i=e;a<i.length;a+=1){var o=i[a];this.programConfigurations[o.id]=Ja.createDynamic(o,r,n),this.programConfigurations[o.id].layoutAttributes=t}this.needsUpload=!1};function Qa(t,e){return{\"text-opacity\":[\"opacity\"],\"icon-opacity\":[\"opacity\"],\"text-color\":[\"fill_color\"],\"icon-color\":[\"fill_color\"],\"text-halo-color\":[\"halo_color\"],\"icon-halo-color\":[\"halo_color\"],\"text-halo-blur\":[\"halo_blur\"],\"icon-halo-blur\":[\"halo_blur\"],\"text-halo-width\":[\"halo_width\"],\"icon-halo-width\":[\"halo_width\"],\"line-gap-width\":[\"gapwidth\"],\"line-pattern\":[\"pattern_to\",\"pattern_from\"],\"fill-pattern\":[\"pattern_to\",\"pattern_from\"],\"fill-extrusion-pattern\":[\"pattern_to\",\"pattern_from\"]}[t]||[t.replace(e+\"-\",\"\").replace(/-/g,\"_\")]}function $a(t,e,r){var n={color:{source:va,composite:ma},number:{source:ua,composite:va}},a=function(t){return{\"line-pattern\":{source:ea,composite:ea},\"fill-pattern\":{source:ea,composite:ea},\"fill-extrusion-pattern\":{source:ea,composite:ea}}[t]}(t);return a&&a[r]||n[e][r]}Ka.prototype.populatePaintArrays=function(t,e,r,n,a){for(var i in this.programConfigurations)this.programConfigurations[i].populatePaintArrays(t,e,r,n,a);this.needsUpload=!0},Ka.prototype.updatePaintArrays=function(t,e,r,n){for(var a=0,i=r;a<i.length;a+=1){var o=i[a];this.needsUpload=this.programConfigurations[o.id].updatePaintArrays(t,e,o,n)||this.needsUpload}},Ka.prototype.get=function(t){return this.programConfigurations[t]},Ka.prototype.upload=function(t){if(this.needsUpload){for(var e in this.programConfigurations)this.programConfigurations[e].upload(t);this.needsUpload=!1}},Ka.prototype.destroy=function(){for(var t in this.programConfigurations)this.programConfigurations[t].destroy()},pn(\"ConstantBinder\",Ga),pn(\"CrossFadedConstantBinder\",Ya),pn(\"SourceExpressionBinder\",Wa),pn(\"CrossFadedCompositeBinder\",Za),pn(\"CompositeExpressionBinder\",Xa),pn(\"ProgramConfiguration\",Ja,{omit:[\"_buffers\"]}),pn(\"ProgramConfigurationSet\",Ka);var ti=8192,ei=(15,{min:-1*Math.pow(2,14),max:Math.pow(2,14)-1});function ri(t){for(var e=ti/t.extent,r=t.loadGeometry(),n=0;n<r.length;n++)for(var a=r[n],i=0;i<a.length;i++){var o=a[i];o.x=Math.round(o.x*e),o.y=Math.round(o.y*e),(o.x<ei.min||o.x>ei.max||o.y<ei.min||o.y>ei.max)&&(w(\"Geometry exceeds allowed extent, reduce your vector tile buffer size\"),o.x=c(o.x,ei.min,ei.max),o.y=c(o.y,ei.min,ei.max))}return r}function ni(t,e,r,n,a){t.emplaceBack(2*e+(n+1)/2,2*r+(a+1)/2)}var ai=function(t){this.zoom=t.zoom,this.overscaling=t.overscaling,this.layers=t.layers,this.layerIds=this.layers.map(function(t){return t.id}),this.index=t.index,this.hasPattern=!1,this.layoutVertexArray=new Kn,this.indexArray=new pa,this.segments=new Pa,this.programConfigurations=new Ka(La,t.layers,t.zoom),this.stateDependentLayerIds=this.layers.filter(function(t){return t.isStateDependent()}).map(function(t){return t.id})};function ii(t,e){for(var r=0;r<t.length;r++)if(di(e,t[r]))return!0;for(var n=0;n<e.length;n++)if(di(t,e[n]))return!0;return!!ci(t,e)}function oi(t,e,r){return!!di(t,e)||!!hi(e,t,r)}function si(t,e){if(1===t.length)return pi(e,t[0]);for(var r=0;r<e.length;r++)for(var n=e[r],a=0;a<n.length;a++)if(di(t,n[a]))return!0;for(var i=0;i<t.length;i++)if(pi(e,t[i]))return!0;for(var o=0;o<e.length;o++)if(ci(t,e[o]))return!0;return!1}function li(t,e,r){if(t.length>1){if(ci(t,e))return!0;for(var n=0;n<e.length;n++)if(hi(e[n],t,r))return!0}for(var a=0;a<t.length;a++)if(hi(t[a],e,r))return!0;return!1}function ci(t,e){if(0===t.length||0===e.length)return!1;for(var r=0;r<t.length-1;r++)for(var n=t[r],a=t[r+1],i=0;i<e.length-1;i++)if(ui(n,a,e[i],e[i+1]))return!0;return!1}function ui(t,e,r,n){return k(t,r,n)!==k(e,r,n)&&k(t,e,r)!==k(t,e,n)}function hi(t,e,r){var n=r*r;if(1===e.length)return t.distSqr(e[0])<n;for(var a=1;a<e.length;a++)if(fi(t,e[a-1],e[a])<n)return!0;return!1}function fi(t,e,r){var n=e.distSqr(r);if(0===n)return t.distSqr(e);var a=((t.x-e.x)*(r.x-e.x)+(t.y-e.y)*(r.y-e.y))/n;return a<0?t.distSqr(e):a>1?t.distSqr(r):t.distSqr(r.sub(e)._mult(a)._add(e))}function pi(t,e){for(var r,n,a,i=!1,o=0;o<t.length;o++)for(var s=0,l=(r=t[o]).length-1;s<r.length;l=s++)n=r[s],a=r[l],n.y>e.y!=a.y>e.y&&e.x<(a.x-n.x)*(e.y-n.y)/(a.y-n.y)+n.x&&(i=!i);return i}function di(t,e){for(var r=!1,n=0,a=t.length-1;n<t.length;a=n++){var i=t[n],o=t[a];i.y>e.y!=o.y>e.y&&e.x<(o.x-i.x)*(e.y-i.y)/(o.y-i.y)+i.x&&(r=!r)}return r}function gi(t,e,r){var n=r[0],a=r[2];if(t.x<n.x&&e.x<n.x||t.x>a.x&&e.x>a.x||t.y<n.y&&e.y<n.y||t.y>a.y&&e.y>a.y)return!1;var i=k(t,e,r[0]);return i!==k(t,e,r[1])||i!==k(t,e,r[2])||i!==k(t,e,r[3])}function vi(t,e,r){var n=e.paint.get(t).value;return\"constant\"===n.kind?n.value:r.programConfigurations.get(e.id).binders[t].maxValue}function mi(t){return Math.sqrt(t[0]*t[0]+t[1]*t[1])}function yi(t,e,r,n,i){if(!e[0]&&!e[1])return t;var o=a.convert(e)._mult(i);\"viewport\"===r&&o._rotate(-n);for(var s=[],l=0;l<t.length;l++){var c=t[l];s.push(c.sub(o))}return s}ai.prototype.populate=function(t,e){var r=this.layers[0],n=[],a=null;\"circle\"===r.type&&(a=r.layout.get(\"circle-sort-key\"));for(var i=0,o=t;i<o.length;i+=1){var s=o[i],l=s.feature,c=s.index,u=s.sourceLayerIndex;if(this.layers[0]._featureFilter(new Ln(this.zoom),l)){var h=ri(l),f=a?a.evaluate(l,{}):void 0,p={id:l.id,properties:l.properties,type:l.type,sourceLayerIndex:u,index:c,geometry:h,patterns:{},sortKey:f};n.push(p)}}a&&n.sort(function(t,e){return t.sortKey-e.sortKey});for(var d=0,g=n;d<g.length;d+=1){var v=g[d],m=v,y=m.geometry,x=m.index,b=m.sourceLayerIndex,_=t[x].feature;this.addFeature(v,y,x),e.featureIndex.insert(_,y,x,b,this.index)}},ai.prototype.update=function(t,e,r){this.stateDependentLayers.length&&this.programConfigurations.updatePaintArrays(t,e,this.stateDependentLayers,r)},ai.prototype.isEmpty=function(){return 0===this.layoutVertexArray.length},ai.prototype.uploadPending=function(){return!this.uploaded||this.programConfigurations.needsUpload},ai.prototype.upload=function(t){this.uploaded||(this.layoutVertexBuffer=t.createVertexBuffer(this.layoutVertexArray,La),this.indexBuffer=t.createIndexBuffer(this.indexArray)),this.programConfigurations.upload(t),this.uploaded=!0},ai.prototype.destroy=function(){this.layoutVertexBuffer&&(this.layoutVertexBuffer.destroy(),this.indexBuffer.destroy(),this.programConfigurations.destroy(),this.segments.destroy())},ai.prototype.addFeature=function(t,e,r){for(var n=0,a=e;n<a.length;n+=1)for(var i=0,o=a[n];i<o.length;i+=1){var s=o[i],l=s.x,c=s.y;if(!(l<0||l>=ti||c<0||c>=ti)){var u=this.segments.prepareSegment(4,this.layoutVertexArray,this.indexArray,t.sortKey),h=u.vertexLength;ni(this.layoutVertexArray,l,c,-1,-1),ni(this.layoutVertexArray,l,c,1,-1),ni(this.layoutVertexArray,l,c,1,1),ni(this.layoutVertexArray,l,c,-1,1),this.indexArray.emplaceBack(h,h+1,h+2),this.indexArray.emplaceBack(h,h+3,h+2),u.vertexLength+=4,u.primitiveLength+=2}}this.programConfigurations.populatePaintArrays(this.layoutVertexArray.length,t,r,{})},pn(\"CircleBucket\",ai,{omit:[\"layers\"]});var xi,bi=new Hn({\"circle-sort-key\":new jn(Tt.layout_circle[\"circle-sort-key\"])}),_i={paint:new Hn({\"circle-radius\":new jn(Tt.paint_circle[\"circle-radius\"]),\"circle-color\":new jn(Tt.paint_circle[\"circle-color\"]),\"circle-blur\":new jn(Tt.paint_circle[\"circle-blur\"]),\"circle-opacity\":new jn(Tt.paint_circle[\"circle-opacity\"]),\"circle-translate\":new Nn(Tt.paint_circle[\"circle-translate\"]),\"circle-translate-anchor\":new Nn(Tt.paint_circle[\"circle-translate-anchor\"]),\"circle-pitch-scale\":new Nn(Tt.paint_circle[\"circle-pitch-scale\"]),\"circle-pitch-alignment\":new Nn(Tt.paint_circle[\"circle-pitch-alignment\"]),\"circle-stroke-width\":new jn(Tt.paint_circle[\"circle-stroke-width\"]),\"circle-stroke-color\":new jn(Tt.paint_circle[\"circle-stroke-color\"]),\"circle-stroke-opacity\":new jn(Tt.paint_circle[\"circle-stroke-opacity\"])}),layout:bi},wi=\"undefined\"!=typeof Float32Array?Float32Array:Array;function ki(t,e,r){var n=e[0],a=e[1],i=e[2],o=e[3];return t[0]=r[0]*n+r[4]*a+r[8]*i+r[12]*o,t[1]=r[1]*n+r[5]*a+r[9]*i+r[13]*o,t[2]=r[2]*n+r[6]*a+r[10]*i+r[14]*o,t[3]=r[3]*n+r[7]*a+r[11]*i+r[15]*o,t}Math.hypot||(Math.hypot=function(){for(var t=arguments,e=0,r=arguments.length;r--;)e+=t[r]*t[r];return Math.sqrt(e)}),xi=new wi(3),wi!=Float32Array&&(xi[0]=0,xi[1]=0,xi[2]=0),function(){var t=new wi(4);wi!=Float32Array&&(t[0]=0,t[1]=0,t[2]=0,t[3]=0)}();var Ti=function(t){function e(e){t.call(this,e,_i)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createBucket=function(t){return new ai(t)},e.prototype.queryRadius=function(t){var e=t;return vi(\"circle-radius\",this,e)+vi(\"circle-stroke-width\",this,e)+mi(this.paint.get(\"circle-translate\"))},e.prototype.queryIntersectsFeature=function(t,e,r,n,a,i,o,s){for(var l=yi(t,this.paint.get(\"circle-translate\"),this.paint.get(\"circle-translate-anchor\"),i.angle,o),c=this.paint.get(\"circle-radius\").evaluate(e,r)+this.paint.get(\"circle-stroke-width\").evaluate(e,r),u=\"map\"===this.paint.get(\"circle-pitch-alignment\"),h=u?l:function(t,e){return l.map(function(t){return Ai(t,e)})}(0,s),f=u?c*o:c,p=0,d=n;p<d.length;p+=1)for(var g=0,v=d[p];g<v.length;g+=1){var m=v[g],y=u?m:Ai(m,s),x=f,b=ki([],[m.x,m.y,0,1],s);if(\"viewport\"===this.paint.get(\"circle-pitch-scale\")&&\"map\"===this.paint.get(\"circle-pitch-alignment\")?x*=b[3]/i.cameraToCenterDistance:\"map\"===this.paint.get(\"circle-pitch-scale\")&&\"viewport\"===this.paint.get(\"circle-pitch-alignment\")&&(x*=i.cameraToCenterDistance/b[3]),oi(h,y,x))return!0}return!1},e}(Gn);function Ai(t,e){var r=ki([],[t.x,t.y,0,1],e);return new a(r[0]/r[3],r[1]/r[3])}var Mi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}(ai);function Si(t,e,r,n){var a=e.width,i=e.height;if(n){if(n instanceof Uint8ClampedArray)n=new Uint8Array(n.buffer);else if(n.length!==a*i*r)throw new RangeError(\"mismatched image size\")}else n=new Uint8Array(a*i*r);return t.width=a,t.height=i,t.data=n,t}function Ei(t,e,r){var n=e.width,a=e.height;if(n!==t.width||a!==t.height){var i=Si({},{width:n,height:a},r);Ci(t,i,{x:0,y:0},{x:0,y:0},{width:Math.min(t.width,n),height:Math.min(t.height,a)},r),t.width=n,t.height=a,t.data=i.data}}function Ci(t,e,r,n,a,i){if(0===a.width||0===a.height)return e;if(a.width>t.width||a.height>t.height||r.x>t.width-a.width||r.y>t.height-a.height)throw new RangeError(\"out of range source coordinates for image copy\");if(a.width>e.width||a.height>e.height||n.x>e.width-a.width||n.y>e.height-a.height)throw new RangeError(\"out of range destination coordinates for image copy\");for(var o=t.data,s=e.data,l=0;l<a.height;l++)for(var c=((r.y+l)*t.width+r.x)*i,u=((n.y+l)*e.width+n.x)*i,h=0;h<a.width*i;h++)s[u+h]=o[c+h];return e}pn(\"HeatmapBucket\",Mi,{omit:[\"layers\"]});var Li=function(t,e){Si(this,t,1,e)};Li.prototype.resize=function(t){Ei(this,t,1)},Li.prototype.clone=function(){return new Li({width:this.width,height:this.height},new Uint8Array(this.data))},Li.copy=function(t,e,r,n,a){Ci(t,e,r,n,a,1)};var Pi=function(t,e){Si(this,t,4,e)};Pi.prototype.resize=function(t){Ei(this,t,4)},Pi.prototype.replace=function(t,e){e?this.data.set(t):t instanceof Uint8ClampedArray?this.data=new Uint8Array(t.buffer):this.data=t},Pi.prototype.clone=function(){return new Pi({width:this.width,height:this.height},new Uint8Array(this.data))},Pi.copy=function(t,e,r,n,a){Ci(t,e,r,n,a,4)},pn(\"AlphaImage\",Li),pn(\"RGBAImage\",Pi);var Oi={paint:new Hn({\"heatmap-radius\":new jn(Tt.paint_heatmap[\"heatmap-radius\"]),\"heatmap-weight\":new jn(Tt.paint_heatmap[\"heatmap-weight\"]),\"heatmap-intensity\":new Nn(Tt.paint_heatmap[\"heatmap-intensity\"]),\"heatmap-color\":new qn(Tt.paint_heatmap[\"heatmap-color\"]),\"heatmap-opacity\":new Nn(Tt.paint_heatmap[\"heatmap-opacity\"])})};function Ii(t,e){for(var r=new Uint8Array(1024),n={},a=0,i=0;a<256;a++,i+=4){n[e]=a/255;var o=t.evaluate(n);r[i+0]=Math.floor(255*o.r/o.a),r[i+1]=Math.floor(255*o.g/o.a),r[i+2]=Math.floor(255*o.b/o.a),r[i+3]=Math.floor(255*o.a)}return new Pi({width:256,height:1},r)}var zi=function(t){function e(e){t.call(this,e,Oi),this._updateColorRamp()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createBucket=function(t){return new Mi(t)},e.prototype._handleSpecialPaintPropertyUpdate=function(t){\"heatmap-color\"===t&&this._updateColorRamp()},e.prototype._updateColorRamp=function(){var t=this._transitionablePaint._values[\"heatmap-color\"].value.expression;this.colorRamp=Ii(t,\"heatmapDensity\"),this.colorRampTexture=null},e.prototype.resize=function(){this.heatmapFbo&&(this.heatmapFbo.destroy(),this.heatmapFbo=null)},e.prototype.queryRadius=function(){return 0},e.prototype.queryIntersectsFeature=function(){return!1},e.prototype.hasOffscreenPass=function(){return 0!==this.paint.get(\"heatmap-opacity\")&&\"none\"!==this.visibility},e}(Gn),Di={paint:new Hn({\"hillshade-illumination-direction\":new Nn(Tt.paint_hillshade[\"hillshade-illumination-direction\"]),\"hillshade-illumination-anchor\":new Nn(Tt.paint_hillshade[\"hillshade-illumination-anchor\"]),\"hillshade-exaggeration\":new Nn(Tt.paint_hillshade[\"hillshade-exaggeration\"]),\"hillshade-shadow-color\":new Nn(Tt.paint_hillshade[\"hillshade-shadow-color\"]),\"hillshade-highlight-color\":new Nn(Tt.paint_hillshade[\"hillshade-highlight-color\"]),\"hillshade-accent-color\":new Nn(Tt.paint_hillshade[\"hillshade-accent-color\"])})},Ri=function(t){function e(e){t.call(this,e,Di)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.hasOffscreenPass=function(){return 0!==this.paint.get(\"hillshade-exaggeration\")&&\"none\"!==this.visibility},e}(Gn),Fi=Zn([{name:\"a_pos\",components:2,type:\"Int16\"}],4).members,Bi=ji,Ni=ji;function ji(t,e,r){r=r||2;var n,a,i,o,s,l,c,u=e&&e.length,h=u?e[0]*r:t.length,f=Vi(t,0,h,r,!0),p=[];if(!f||f.next===f.prev)return p;if(u&&(f=function(t,e,r,n){var a,i,o,s=[];for(a=0,i=e.length;a<i;a++)(o=Vi(t,e[a]*n,a<i-1?e[a+1]*n:t.length,n,!1))===o.next&&(o.steiner=!0),s.push(Qi(o));for(s.sort(Xi),a=0;a<s.length;a++)Zi(s[a],r),r=Ui(r,r.next);return r}(t,e,f,r)),t.length>80*r){n=i=t[0],a=o=t[1];for(var d=r;d<h;d+=r)(s=t[d])<n&&(n=s),(l=t[d+1])<a&&(a=l),s>i&&(i=s),l>o&&(o=l);c=0!==(c=Math.max(i-n,o-a))?1/c:0}return qi(f,p,r,n,a,c),p}function Vi(t,e,r,n,a){var i,o;if(a===ho(t,e,r,n)>0)for(i=e;i<r;i+=n)o=lo(i,t[i],t[i+1],o);else for(i=r-n;i>=e;i-=n)o=lo(i,t[i],t[i+1],o);return o&&ro(o,o.next)&&(co(o),o=o.next),o}function Ui(t,e){if(!t)return t;e||(e=t);var r,n=t;do{if(r=!1,n.steiner||!ro(n,n.next)&&0!==eo(n.prev,n,n.next))n=n.next;else{if(co(n),(n=e=n.prev)===n.next)break;r=!0}}while(r||n!==e);return e}function qi(t,e,r,n,a,i,o){if(t){!o&&i&&function(t,e,r,n){var a=t;do{null===a.z&&(a.z=Ki(a.x,a.y,e,r,n)),a.prevZ=a.prev,a.nextZ=a.next,a=a.next}while(a!==t);a.prevZ.nextZ=null,a.prevZ=null,function(t){var e,r,n,a,i,o,s,l,c=1;do{for(r=t,t=null,i=null,o=0;r;){for(o++,n=r,s=0,e=0;e<c&&(s++,n=n.nextZ);e++);for(l=c;s>0||l>0&&n;)0!==s&&(0===l||!n||r.z<=n.z)?(a=r,r=r.nextZ,s--):(a=n,n=n.nextZ,l--),i?i.nextZ=a:t=a,a.prevZ=i,i=a;r=n}i.nextZ=null,c*=2}while(o>1)}(a)}(t,n,a,i);for(var s,l,c=t;t.prev!==t.next;)if(s=t.prev,l=t.next,i?Gi(t,n,a,i):Hi(t))e.push(s.i/r),e.push(t.i/r),e.push(l.i/r),co(t),t=l.next,c=l.next;else if((t=l)===c){o?1===o?qi(t=Yi(Ui(t),e,r),e,r,n,a,i,2):2===o&&Wi(t,e,r,n,a,i):qi(Ui(t),e,r,n,a,i,1);break}}}function Hi(t){var e=t.prev,r=t,n=t.next;if(eo(e,r,n)>=0)return!1;for(var a=t.next.next;a!==t.prev;){if($i(e.x,e.y,r.x,r.y,n.x,n.y,a.x,a.y)&&eo(a.prev,a,a.next)>=0)return!1;a=a.next}return!0}function Gi(t,e,r,n){var a=t.prev,i=t,o=t.next;if(eo(a,i,o)>=0)return!1;for(var s=a.x<i.x?a.x<o.x?a.x:o.x:i.x<o.x?i.x:o.x,l=a.y<i.y?a.y<o.y?a.y:o.y:i.y<o.y?i.y:o.y,c=a.x>i.x?a.x>o.x?a.x:o.x:i.x>o.x?i.x:o.x,u=a.y>i.y?a.y>o.y?a.y:o.y:i.y>o.y?i.y:o.y,h=Ki(s,l,e,r,n),f=Ki(c,u,e,r,n),p=t.prevZ,d=t.nextZ;p&&p.z>=h&&d&&d.z<=f;){if(p!==t.prev&&p!==t.next&&$i(a.x,a.y,i.x,i.y,o.x,o.y,p.x,p.y)&&eo(p.prev,p,p.next)>=0)return!1;if(p=p.prevZ,d!==t.prev&&d!==t.next&&$i(a.x,a.y,i.x,i.y,o.x,o.y,d.x,d.y)&&eo(d.prev,d,d.next)>=0)return!1;d=d.nextZ}for(;p&&p.z>=h;){if(p!==t.prev&&p!==t.next&&$i(a.x,a.y,i.x,i.y,o.x,o.y,p.x,p.y)&&eo(p.prev,p,p.next)>=0)return!1;p=p.prevZ}for(;d&&d.z<=f;){if(d!==t.prev&&d!==t.next&&$i(a.x,a.y,i.x,i.y,o.x,o.y,d.x,d.y)&&eo(d.prev,d,d.next)>=0)return!1;d=d.nextZ}return!0}function Yi(t,e,r){var n=t;do{var a=n.prev,i=n.next.next;!ro(a,i)&&no(a,n,n.next,i)&&oo(a,i)&&oo(i,a)&&(e.push(a.i/r),e.push(n.i/r),e.push(i.i/r),co(n),co(n.next),n=t=i),n=n.next}while(n!==t);return Ui(n)}function Wi(t,e,r,n,a,i){var o=t;do{for(var s=o.next.next;s!==o.prev;){if(o.i!==s.i&&to(o,s)){var l=so(o,s);return o=Ui(o,o.next),l=Ui(l,l.next),qi(o,e,r,n,a,i),void qi(l,e,r,n,a,i)}s=s.next}o=o.next}while(o!==t)}function Xi(t,e){return t.x-e.x}function Zi(t,e){if(e=function(t,e){var r,n=e,a=t.x,i=t.y,o=-1/0;do{if(i<=n.y&&i>=n.next.y&&n.next.y!==n.y){var s=n.x+(i-n.y)*(n.next.x-n.x)/(n.next.y-n.y);if(s<=a&&s>o){if(o=s,s===a){if(i===n.y)return n;if(i===n.next.y)return n.next}r=n.x<n.next.x?n:n.next}}n=n.next}while(n!==e);if(!r)return null;if(a===o)return r;var l,c=r,u=r.x,h=r.y,f=1/0;n=r;do{a>=n.x&&n.x>=u&&a!==n.x&&$i(i<h?a:o,i,u,h,i<h?o:a,i,n.x,n.y)&&(l=Math.abs(i-n.y)/(a-n.x),oo(n,t)&&(l<f||l===f&&(n.x>r.x||n.x===r.x&&Ji(r,n)))&&(r=n,f=l)),n=n.next}while(n!==c);return r}(t,e)){var r=so(e,t);Ui(r,r.next)}}function Ji(t,e){return eo(t.prev,t,e.prev)<0&&eo(e.next,t,t.next)<0}function Ki(t,e,r,n,a){return(t=1431655765&((t=858993459&((t=252645135&((t=16711935&((t=32767*(t-r)*a)|t<<8))|t<<4))|t<<2))|t<<1))|(e=1431655765&((e=858993459&((e=252645135&((e=16711935&((e=32767*(e-n)*a)|e<<8))|e<<4))|e<<2))|e<<1))<<1}function Qi(t){var e=t,r=t;do{(e.x<r.x||e.x===r.x&&e.y<r.y)&&(r=e),e=e.next}while(e!==t);return r}function $i(t,e,r,n,a,i,o,s){return(a-o)*(e-s)-(t-o)*(i-s)>=0&&(t-o)*(n-s)-(r-o)*(e-s)>=0&&(r-o)*(i-s)-(a-o)*(n-s)>=0}function to(t,e){return t.next.i!==e.i&&t.prev.i!==e.i&&!function(t,e){var r=t;do{if(r.i!==t.i&&r.next.i!==t.i&&r.i!==e.i&&r.next.i!==e.i&&no(r,r.next,t,e))return!0;r=r.next}while(r!==t);return!1}(t,e)&&(oo(t,e)&&oo(e,t)&&function(t,e){var r=t,n=!1,a=(t.x+e.x)/2,i=(t.y+e.y)/2;do{r.y>i!=r.next.y>i&&r.next.y!==r.y&&a<(r.next.x-r.x)*(i-r.y)/(r.next.y-r.y)+r.x&&(n=!n),r=r.next}while(r!==t);return n}(t,e)&&(eo(t.prev,t,e.prev)||eo(t,e.prev,e))||ro(t,e)&&eo(t.prev,t,t.next)>0&&eo(e.prev,e,e.next)>0)}function eo(t,e,r){return(e.y-t.y)*(r.x-e.x)-(e.x-t.x)*(r.y-e.y)}function ro(t,e){return t.x===e.x&&t.y===e.y}function no(t,e,r,n){var a=io(eo(t,e,r)),i=io(eo(t,e,n)),o=io(eo(r,n,t)),s=io(eo(r,n,e));return a!==i&&o!==s||!(0!==a||!ao(t,r,e))||!(0!==i||!ao(t,n,e))||!(0!==o||!ao(r,t,n))||!(0!==s||!ao(r,e,n))}function ao(t,e,r){return e.x<=Math.max(t.x,r.x)&&e.x>=Math.min(t.x,r.x)&&e.y<=Math.max(t.y,r.y)&&e.y>=Math.min(t.y,r.y)}function io(t){return t>0?1:t<0?-1:0}function oo(t,e){return eo(t.prev,t,t.next)<0?eo(t,e,t.next)>=0&&eo(t,t.prev,e)>=0:eo(t,e,t.prev)<0||eo(t,t.next,e)<0}function so(t,e){var r=new uo(t.i,t.x,t.y),n=new uo(e.i,e.x,e.y),a=t.next,i=e.prev;return t.next=e,e.prev=t,r.next=a,a.prev=r,n.next=r,r.prev=n,i.next=n,n.prev=i,n}function lo(t,e,r,n){var a=new uo(t,e,r);return n?(a.next=n.next,a.prev=n,n.next.prev=a,n.next=a):(a.prev=a,a.next=a),a}function co(t){t.next.prev=t.prev,t.prev.next=t.next,t.prevZ&&(t.prevZ.nextZ=t.nextZ),t.nextZ&&(t.nextZ.prevZ=t.prevZ)}function uo(t,e,r){this.i=t,this.x=e,this.y=r,this.prev=null,this.next=null,this.z=null,this.prevZ=null,this.nextZ=null,this.steiner=!1}function ho(t,e,r,n){for(var a=0,i=e,o=r-n;i<r;i+=n)a+=(t[o]-t[i])*(t[i+1]+t[o+1]),o=i;return a}function fo(t,e,r,n,a){!function t(e,r,n,a,i){for(;a>n;){if(a-n>600){var o=a-n+1,s=r-n+1,l=Math.log(o),c=.5*Math.exp(2*l/3),u=.5*Math.sqrt(l*c*(o-c)/o)*(s-o/2<0?-1:1);t(e,r,Math.max(n,Math.floor(r-s*c/o+u)),Math.min(a,Math.floor(r+(o-s)*c/o+u)),i)}var h=e[r],f=n,p=a;for(po(e,n,r),i(e[a],h)>0&&po(e,n,a);f<p;){for(po(e,f,p),f++,p--;i(e[f],h)<0;)f++;for(;i(e[p],h)>0;)p--}0===i(e[n],h)?po(e,n,p):po(e,++p,a),p<=r&&(n=p+1),r<=p&&(a=p-1)}}(t,e,r||0,n||t.length-1,a||go)}function po(t,e,r){var n=t[e];t[e]=t[r],t[r]=n}function go(t,e){return t<e?-1:t>e?1:0}function vo(t,e){var r=t.length;if(r<=1)return[t];for(var n,a,i=[],o=0;o<r;o++){var s=T(t[o]);0!==s&&(t[o].area=Math.abs(s),void 0===a&&(a=s<0),a===s<0?(n&&i.push(n),n=[t[o]]):n.push(t[o]))}if(n&&i.push(n),e>1)for(var l=0;l<i.length;l++)i[l].length<=e||(fo(i[l],e,1,i[l].length-1,mo),i[l]=i[l].slice(0,e));return i}function mo(t,e){return e.area-t.area}function yo(t,e,r){for(var n=r.patternDependencies,a=!1,i=0,o=e;i<o.length;i+=1){var s=o[i].paint.get(t+\"-pattern\");s.isConstant()||(a=!0);var l=s.constantOr(null);l&&(a=!0,n[l.to]=!0,n[l.from]=!0)}return a}function xo(t,e,r,n,a){for(var i=a.patternDependencies,o=0,s=e;o<s.length;o+=1){var l=s[o],c=l.paint.get(t+\"-pattern\").value;if(\"constant\"!==c.kind){var u=c.evaluate({zoom:n-1},r,{}),h=c.evaluate({zoom:n},r,{}),f=c.evaluate({zoom:n+1},r,{});i[u]=!0,i[h]=!0,i[f]=!0,r.patterns[l.id]={min:u,mid:h,max:f}}}return r}ji.deviation=function(t,e,r,n){var a=e&&e.length,i=a?e[0]*r:t.length,o=Math.abs(ho(t,0,i,r));if(a)for(var s=0,l=e.length;s<l;s++){var c=e[s]*r,u=s<l-1?e[s+1]*r:t.length;o-=Math.abs(ho(t,c,u,r))}var h=0;for(s=0;s<n.length;s+=3){var f=n[s]*r,p=n[s+1]*r,d=n[s+2]*r;h+=Math.abs((t[f]-t[d])*(t[p+1]-t[f+1])-(t[f]-t[p])*(t[d+1]-t[f+1]))}return 0===o&&0===h?0:Math.abs((h-o)/o)},ji.flatten=function(t){for(var e=t[0][0].length,r={vertices:[],holes:[],dimensions:e},n=0,a=0;a<t.length;a++){for(var i=0;i<t[a].length;i++)for(var o=0;o<e;o++)r.vertices.push(t[a][i][o]);a>0&&(n+=t[a-1].length,r.holes.push(n))}return r},Bi.default=Ni;var bo=function(t){this.zoom=t.zoom,this.overscaling=t.overscaling,this.layers=t.layers,this.layerIds=this.layers.map(function(t){return t.id}),this.index=t.index,this.hasPattern=!1,this.patternFeatures=[],this.layoutVertexArray=new Kn,this.indexArray=new pa,this.indexArray2=new da,this.programConfigurations=new Ka(Fi,t.layers,t.zoom),this.segments=new Pa,this.segments2=new Pa,this.stateDependentLayerIds=this.layers.filter(function(t){return t.isStateDependent()}).map(function(t){return t.id})};bo.prototype.populate=function(t,e){this.hasPattern=yo(\"fill\",this.layers,e);for(var r=this.layers[0].layout.get(\"fill-sort-key\"),n=[],a=0,i=t;a<i.length;a+=1){var o=i[a],s=o.feature,l=o.index,c=o.sourceLayerIndex;if(this.layers[0]._featureFilter(new Ln(this.zoom),s)){var u=ri(s),h=r?r.evaluate(s,{}):void 0,f={id:s.id,properties:s.properties,type:s.type,sourceLayerIndex:c,index:l,geometry:u,patterns:{},sortKey:h};n.push(f)}}r&&n.sort(function(t,e){return t.sortKey-e.sortKey});for(var p=0,d=n;p<d.length;p+=1){var g=d[p],v=g,m=v.geometry,y=v.index,x=v.sourceLayerIndex;if(this.hasPattern){var b=xo(\"fill\",this.layers,g,this.zoom,e);this.patternFeatures.push(b)}else this.addFeature(g,m,y,{});var _=t[y].feature;e.featureIndex.insert(_,m,y,x,this.index)}},bo.prototype.update=function(t,e,r){this.stateDependentLayers.length&&this.programConfigurations.updatePaintArrays(t,e,this.stateDependentLayers,r)},bo.prototype.addFeatures=function(t,e){for(var r=0,n=this.patternFeatures;r<n.length;r+=1){var a=n[r];this.addFeature(a,a.geometry,a.index,e)}},bo.prototype.isEmpty=function(){return 0===this.layoutVertexArray.length},bo.prototype.uploadPending=function(){return!this.uploaded||this.programConfigurations.needsUpload},bo.prototype.upload=function(t){this.uploaded||(this.layoutVertexBuffer=t.createVertexBuffer(this.layoutVertexArray,Fi),this.indexBuffer=t.createIndexBuffer(this.indexArray),this.indexBuffer2=t.createIndexBuffer(this.indexArray2)),this.programConfigurations.upload(t),this.uploaded=!0},bo.prototype.destroy=function(){this.layoutVertexBuffer&&(this.layoutVertexBuffer.destroy(),this.indexBuffer.destroy(),this.indexBuffer2.destroy(),this.programConfigurations.destroy(),this.segments.destroy(),this.segments2.destroy())},bo.prototype.addFeature=function(t,e,r,n){for(var a=0,i=vo(e,500);a<i.length;a+=1){for(var o=i[a],s=0,l=0,c=o;l<c.length;l+=1)s+=c[l].length;for(var u=this.segments.prepareSegment(s,this.layoutVertexArray,this.indexArray),h=u.vertexLength,f=[],p=[],d=0,g=o;d<g.length;d+=1){var v=g[d];if(0!==v.length){v!==o[0]&&p.push(f.length/2);var m=this.segments2.prepareSegment(v.length,this.layoutVertexArray,this.indexArray2),y=m.vertexLength;this.layoutVertexArray.emplaceBack(v[0].x,v[0].y),this.indexArray2.emplaceBack(y+v.length-1,y),f.push(v[0].x),f.push(v[0].y);for(var x=1;x<v.length;x++)this.layoutVertexArray.emplaceBack(v[x].x,v[x].y),this.indexArray2.emplaceBack(y+x-1,y+x),f.push(v[x].x),f.push(v[x].y);m.vertexLength+=v.length,m.primitiveLength+=v.length}}for(var b=Bi(f,p),_=0;_<b.length;_+=3)this.indexArray.emplaceBack(h+b[_],h+b[_+1],h+b[_+2]);u.vertexLength+=s,u.primitiveLength+=b.length/3}this.programConfigurations.populatePaintArrays(this.layoutVertexArray.length,t,r,n)},pn(\"FillBucket\",bo,{omit:[\"layers\",\"patternFeatures\"]});var _o=new Hn({\"fill-sort-key\":new jn(Tt.layout_fill[\"fill-sort-key\"])}),wo={paint:new Hn({\"fill-antialias\":new Nn(Tt.paint_fill[\"fill-antialias\"]),\"fill-opacity\":new jn(Tt.paint_fill[\"fill-opacity\"]),\"fill-color\":new jn(Tt.paint_fill[\"fill-color\"]),\"fill-outline-color\":new jn(Tt.paint_fill[\"fill-outline-color\"]),\"fill-translate\":new Nn(Tt.paint_fill[\"fill-translate\"]),\"fill-translate-anchor\":new Nn(Tt.paint_fill[\"fill-translate-anchor\"]),\"fill-pattern\":new Vn(Tt.paint_fill[\"fill-pattern\"])}),layout:_o},ko=function(t){function e(e){t.call(this,e,wo)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.recalculate=function(e){t.prototype.recalculate.call(this,e);var r=this.paint._values[\"fill-outline-color\"];\"constant\"===r.value.kind&&void 0===r.value.value&&(this.paint._values[\"fill-outline-color\"]=this.paint._values[\"fill-color\"])},e.prototype.createBucket=function(t){return new bo(t)},e.prototype.queryRadius=function(){return mi(this.paint.get(\"fill-translate\"))},e.prototype.queryIntersectsFeature=function(t,e,r,n,a,i,o){return si(yi(t,this.paint.get(\"fill-translate\"),this.paint.get(\"fill-translate-anchor\"),i.angle,o),n)},e.prototype.isTileClipped=function(){return!0},e}(Gn),To=Zn([{name:\"a_pos\",components:2,type:\"Int16\"},{name:\"a_normal_ed\",components:4,type:\"Int16\"}],4).members,Ao=Mo;function Mo(t,e,r,n,a){this.properties={},this.extent=r,this.type=0,this._pbf=t,this._geometry=-1,this._keys=n,this._values=a,t.readFields(So,this,e)}function So(t,e,r){1==t?e.id=r.readVarint():2==t?function(t,e){for(var r=t.readVarint()+t.pos;t.pos<r;){var n=e._keys[t.readVarint()],a=e._values[t.readVarint()];e.properties[n]=a}}(r,e):3==t?e.type=r.readVarint():4==t&&(e._geometry=r.pos)}function Eo(t){for(var e,r,n=0,a=0,i=t.length,o=i-1;a<i;o=a++)e=t[a],n+=((r=t[o]).x-e.x)*(e.y+r.y);return n}Mo.types=[\"Unknown\",\"Point\",\"LineString\",\"Polygon\"],Mo.prototype.loadGeometry=function(){var t=this._pbf;t.pos=this._geometry;for(var e,r=t.readVarint()+t.pos,n=1,i=0,o=0,s=0,l=[];t.pos<r;){if(i<=0){var c=t.readVarint();n=7&c,i=c>>3}if(i--,1===n||2===n)o+=t.readSVarint(),s+=t.readSVarint(),1===n&&(e&&l.push(e),e=[]),e.push(new a(o,s));else{if(7!==n)throw new Error(\"unknown command \"+n);e&&e.push(e[0].clone())}}return e&&l.push(e),l},Mo.prototype.bbox=function(){var t=this._pbf;t.pos=this._geometry;for(var e=t.readVarint()+t.pos,r=1,n=0,a=0,i=0,o=1/0,s=-1/0,l=1/0,c=-1/0;t.pos<e;){if(n<=0){var u=t.readVarint();r=7&u,n=u>>3}if(n--,1===r||2===r)(a+=t.readSVarint())<o&&(o=a),a>s&&(s=a),(i+=t.readSVarint())<l&&(l=i),i>c&&(c=i);else if(7!==r)throw new Error(\"unknown command \"+r)}return[o,l,s,c]},Mo.prototype.toGeoJSON=function(t,e,r){var n,a,i=this.extent*Math.pow(2,r),o=this.extent*t,s=this.extent*e,l=this.loadGeometry(),c=Mo.types[this.type];function u(t){for(var e=0;e<t.length;e++){var r=t[e],n=180-360*(r.y+s)/i;t[e]=[360*(r.x+o)/i-180,360/Math.PI*Math.atan(Math.exp(n*Math.PI/180))-90]}}switch(this.type){case 1:var h=[];for(n=0;n<l.length;n++)h[n]=l[n][0];u(l=h);break;case 2:for(n=0;n<l.length;n++)u(l[n]);break;case 3:for(l=function(t){var e=t.length;if(e<=1)return[t];for(var r,n,a=[],i=0;i<e;i++){var o=Eo(t[i]);0!==o&&(void 0===n&&(n=o<0),n===o<0?(r&&a.push(r),r=[t[i]]):r.push(t[i]))}return r&&a.push(r),a}(l),n=0;n<l.length;n++)for(a=0;a<l[n].length;a++)u(l[n][a])}1===l.length?l=l[0]:c=\"Multi\"+c;var f={type:\"Feature\",geometry:{type:c,coordinates:l},properties:this.properties};return\"id\"in this&&(f.id=this.id),f};var Co=Lo;function Lo(t,e){this.version=1,this.name=null,this.extent=4096,this.length=0,this._pbf=t,this._keys=[],this._values=[],this._features=[],t.readFields(Po,this,e),this.length=this._features.length}function Po(t,e,r){15===t?e.version=r.readVarint():1===t?e.name=r.readString():5===t?e.extent=r.readVarint():2===t?e._features.push(r.pos):3===t?e._keys.push(r.readString()):4===t&&e._values.push(function(t){for(var e=null,r=t.readVarint()+t.pos;t.pos<r;){var n=t.readVarint()>>3;e=1===n?t.readString():2===n?t.readFloat():3===n?t.readDouble():4===n?t.readVarint64():5===n?t.readVarint():6===n?t.readSVarint():7===n?t.readBoolean():null}return e}(r))}function Oo(t,e,r){if(3===t){var n=new Co(r,r.readVarint()+r.pos);n.length&&(e[n.name]=n)}}Lo.prototype.feature=function(t){if(t<0||t>=this._features.length)throw new Error(\"feature index out of bounds\");this._pbf.pos=this._features[t];var e=this._pbf.readVarint()+this._pbf.pos;return new Ao(this._pbf,e,this.extent,this._keys,this._values)};var Io={VectorTile:function(t,e){this.layers=t.readFields(Oo,{},e)},VectorTileFeature:Ao,VectorTileLayer:Co},zo=Io.VectorTileFeature.types,Do=Math.pow(2,13);function Ro(t,e,r,n,a,i,o,s){t.emplaceBack(e,r,2*Math.floor(n*Do)+o,a*Do*2,i*Do*2,Math.round(s))}var Fo=function(t){this.zoom=t.zoom,this.overscaling=t.overscaling,this.layers=t.layers,this.layerIds=this.layers.map(function(t){return t.id}),this.index=t.index,this.hasPattern=!1,this.layoutVertexArray=new $n,this.indexArray=new pa,this.programConfigurations=new Ka(To,t.layers,t.zoom),this.segments=new Pa,this.stateDependentLayerIds=this.layers.filter(function(t){return t.isStateDependent()}).map(function(t){return t.id})};function Bo(t,e){return t.x===e.x&&(t.x<0||t.x>ti)||t.y===e.y&&(t.y<0||t.y>ti)}function No(t){return t.every(function(t){return t.x<0})||t.every(function(t){return t.x>ti})||t.every(function(t){return t.y<0})||t.every(function(t){return t.y>ti})}Fo.prototype.populate=function(t,e){this.features=[],this.hasPattern=yo(\"fill-extrusion\",this.layers,e);for(var r=0,n=t;r<n.length;r+=1){var a=n[r],i=a.feature,o=a.index,s=a.sourceLayerIndex;if(this.layers[0]._featureFilter(new Ln(this.zoom),i)){var l=ri(i),c={sourceLayerIndex:s,index:o,geometry:l,properties:i.properties,type:i.type,patterns:{}};void 0!==i.id&&(c.id=i.id),this.hasPattern?this.features.push(xo(\"fill-extrusion\",this.layers,c,this.zoom,e)):this.addFeature(c,l,o,{}),e.featureIndex.insert(i,l,o,s,this.index,!0)}}},Fo.prototype.addFeatures=function(t,e){for(var r=0,n=this.features;r<n.length;r+=1){var a=n[r],i=a.geometry;this.addFeature(a,i,a.index,e)}},Fo.prototype.update=function(t,e,r){this.stateDependentLayers.length&&this.programConfigurations.updatePaintArrays(t,e,this.stateDependentLayers,r)},Fo.prototype.isEmpty=function(){return 0===this.layoutVertexArray.length},Fo.prototype.uploadPending=function(){return!this.uploaded||this.programConfigurations.needsUpload},Fo.prototype.upload=function(t){this.uploaded||(this.layoutVertexBuffer=t.createVertexBuffer(this.layoutVertexArray,To),this.indexBuffer=t.createIndexBuffer(this.indexArray)),this.programConfigurations.upload(t),this.uploaded=!0},Fo.prototype.destroy=function(){this.layoutVertexBuffer&&(this.layoutVertexBuffer.destroy(),this.indexBuffer.destroy(),this.programConfigurations.destroy(),this.segments.destroy())},Fo.prototype.addFeature=function(t,e,r,n){for(var a=0,i=vo(e,500);a<i.length;a+=1){for(var o=i[a],s=0,l=0,c=o;l<c.length;l+=1)s+=c[l].length;for(var u=this.segments.prepareSegment(4,this.layoutVertexArray,this.indexArray),h=0,f=o;h<f.length;h+=1){var p=f[h];if(0!==p.length&&!No(p))for(var d=0,g=0;g<p.length;g++){var v=p[g];if(g>=1){var m=p[g-1];if(!Bo(v,m)){u.vertexLength+4>Pa.MAX_VERTEX_ARRAY_LENGTH&&(u=this.segments.prepareSegment(4,this.layoutVertexArray,this.indexArray));var y=v.sub(m)._perp()._unit(),x=m.dist(v);d+x>32768&&(d=0),Ro(this.layoutVertexArray,v.x,v.y,y.x,y.y,0,0,d),Ro(this.layoutVertexArray,v.x,v.y,y.x,y.y,0,1,d),d+=x,Ro(this.layoutVertexArray,m.x,m.y,y.x,y.y,0,0,d),Ro(this.layoutVertexArray,m.x,m.y,y.x,y.y,0,1,d);var b=u.vertexLength;this.indexArray.emplaceBack(b,b+2,b+1),this.indexArray.emplaceBack(b+1,b+2,b+3),u.vertexLength+=4,u.primitiveLength+=2}}}}if(u.vertexLength+s>Pa.MAX_VERTEX_ARRAY_LENGTH&&(u=this.segments.prepareSegment(s,this.layoutVertexArray,this.indexArray)),\"Polygon\"===zo[t.type]){for(var _=[],w=[],k=u.vertexLength,T=0,A=o;T<A.length;T+=1){var M=A[T];if(0!==M.length){M!==o[0]&&w.push(_.length/2);for(var S=0;S<M.length;S++){var E=M[S];Ro(this.layoutVertexArray,E.x,E.y,0,0,1,1,0),_.push(E.x),_.push(E.y)}}}for(var C=Bi(_,w),L=0;L<C.length;L+=3)this.indexArray.emplaceBack(k+C[L],k+C[L+2],k+C[L+1]);u.primitiveLength+=C.length/3,u.vertexLength+=s}}this.programConfigurations.populatePaintArrays(this.layoutVertexArray.length,t,r,n)},pn(\"FillExtrusionBucket\",Fo,{omit:[\"layers\",\"features\"]});var jo={paint:new Hn({\"fill-extrusion-opacity\":new Nn(Tt[\"paint_fill-extrusion\"][\"fill-extrusion-opacity\"]),\"fill-extrusion-color\":new jn(Tt[\"paint_fill-extrusion\"][\"fill-extrusion-color\"]),\"fill-extrusion-translate\":new Nn(Tt[\"paint_fill-extrusion\"][\"fill-extrusion-translate\"]),\"fill-extrusion-translate-anchor\":new Nn(Tt[\"paint_fill-extrusion\"][\"fill-extrusion-translate-anchor\"]),\"fill-extrusion-pattern\":new Vn(Tt[\"paint_fill-extrusion\"][\"fill-extrusion-pattern\"]),\"fill-extrusion-height\":new jn(Tt[\"paint_fill-extrusion\"][\"fill-extrusion-height\"]),\"fill-extrusion-base\":new jn(Tt[\"paint_fill-extrusion\"][\"fill-extrusion-base\"]),\"fill-extrusion-vertical-gradient\":new Nn(Tt[\"paint_fill-extrusion\"][\"fill-extrusion-vertical-gradient\"])})},Vo=function(t){function e(e){t.call(this,e,jo)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createBucket=function(t){return new Fo(t)},e.prototype.queryRadius=function(){return mi(this.paint.get(\"fill-extrusion-translate\"))},e.prototype.is3D=function(){return!0},e.prototype.queryIntersectsFeature=function(t,e,r,n,i,o,s,l){var c=yi(t,this.paint.get(\"fill-extrusion-translate\"),this.paint.get(\"fill-extrusion-translate-anchor\"),o.angle,s),u=this.paint.get(\"fill-extrusion-height\").evaluate(e,r),h=this.paint.get(\"fill-extrusion-base\").evaluate(e,r),f=function(t,e,r,n){for(var i=[],o=0,s=t;o<s.length;o+=1){var l=s[o],c=[l.x,l.y,0,1];ki(c,c,e),i.push(new a(c[0]/c[3],c[1]/c[3]))}return i}(c,l),p=function(t,e,r,n){for(var i=[],o=[],s=n[8]*e,l=n[9]*e,c=n[10]*e,u=n[11]*e,h=n[8]*r,f=n[9]*r,p=n[10]*r,d=n[11]*r,g=0,v=t;g<v.length;g+=1){for(var m=[],y=[],x=0,b=v[g];x<b.length;x+=1){var _=b[x],w=_.x,k=_.y,T=n[0]*w+n[4]*k+n[12],A=n[1]*w+n[5]*k+n[13],M=n[2]*w+n[6]*k+n[14],S=n[3]*w+n[7]*k+n[15],E=M+c,C=S+u,L=T+h,P=A+f,O=M+p,I=S+d,z=new a((T+s)/C,(A+l)/C);z.z=E/C,m.push(z);var D=new a(L/I,P/I);D.z=O/I,y.push(D)}i.push(m),o.push(y)}return[i,o]}(n,h,u,l);return function(t,e,r){var n=1/0;si(r,e)&&(n=qo(r,e[0]));for(var a=0;a<e.length;a++)for(var i=e[a],o=t[a],s=0;s<i.length-1;s++){var l=i[s],c=i[s+1],u=o[s],h=[l,c,o[s+1],u,l];ii(r,h)&&(n=Math.min(n,qo(r,h)))}return n!==1/0&&n}(p[0],p[1],f)},e}(Gn);function Uo(t,e){return t.x*e.x+t.y*e.y}function qo(t,e){if(1===t.length){var r=e[0],n=e[1],a=e[3],i=t[0],o=n.sub(r),s=a.sub(r),l=i.sub(r),c=Uo(o,o),u=Uo(o,s),h=Uo(s,s),f=Uo(l,o),p=Uo(l,s),d=c*h-u*u,g=(h*f-u*p)/d,v=(c*p-u*f)/d,m=1-g-v;return r.z*m+n.z*g+a.z*v}for(var y=1/0,x=0,b=e;x<b.length;x+=1){var _=b[x];y=Math.min(y,_.z)}return y}var Ho=Zn([{name:\"a_pos_normal\",components:2,type:\"Int16\"},{name:\"a_data\",components:4,type:\"Uint8\"}],4).members,Go=Io.VectorTileFeature.types,Yo=Math.cos(Math.PI/180*37.5),Wo=Math.pow(2,14)/.5,Xo=function(t){this.zoom=t.zoom,this.overscaling=t.overscaling,this.layers=t.layers,this.layerIds=this.layers.map(function(t){return t.id}),this.index=t.index,this.hasPattern=!1,this.patternFeatures=[],this.layoutVertexArray=new ta,this.indexArray=new pa,this.programConfigurations=new Ka(Ho,t.layers,t.zoom),this.segments=new Pa,this.stateDependentLayerIds=this.layers.filter(function(t){return t.isStateDependent()}).map(function(t){return t.id})};Xo.prototype.populate=function(t,e){this.hasPattern=yo(\"line\",this.layers,e);for(var r=this.layers[0].layout.get(\"line-sort-key\"),n=[],a=0,i=t;a<i.length;a+=1){var o=i[a],s=o.feature,l=o.index,c=o.sourceLayerIndex;if(this.layers[0]._featureFilter(new Ln(this.zoom),s)){var u=ri(s),h=r?r.evaluate(s,{}):void 0,f={id:s.id,properties:s.properties,type:s.type,sourceLayerIndex:c,index:l,geometry:u,patterns:{},sortKey:h};n.push(f)}}r&&n.sort(function(t,e){return t.sortKey-e.sortKey});for(var p=0,d=n;p<d.length;p+=1){var g=d[p],v=g,m=v.geometry,y=v.index,x=v.sourceLayerIndex;if(this.hasPattern){var b=xo(\"line\",this.layers,g,this.zoom,e);this.patternFeatures.push(b)}else this.addFeature(g,m,y,{});var _=t[y].feature;e.featureIndex.insert(_,m,y,x,this.index)}},Xo.prototype.update=function(t,e,r){this.stateDependentLayers.length&&this.programConfigurations.updatePaintArrays(t,e,this.stateDependentLayers,r)},Xo.prototype.addFeatures=function(t,e){for(var r=0,n=this.patternFeatures;r<n.length;r+=1){var a=n[r];this.addFeature(a,a.geometry,a.index,e)}},Xo.prototype.isEmpty=function(){return 0===this.layoutVertexArray.length},Xo.prototype.uploadPending=function(){return!this.uploaded||this.programConfigurations.needsUpload},Xo.prototype.upload=function(t){this.uploaded||(this.layoutVertexBuffer=t.createVertexBuffer(this.layoutVertexArray,Ho),this.indexBuffer=t.createIndexBuffer(this.indexArray)),this.programConfigurations.upload(t),this.uploaded=!0},Xo.prototype.destroy=function(){this.layoutVertexBuffer&&(this.layoutVertexBuffer.destroy(),this.indexBuffer.destroy(),this.programConfigurations.destroy(),this.segments.destroy())},Xo.prototype.addFeature=function(t,e,r,n){for(var a=this.layers[0].layout,i=a.get(\"line-join\").evaluate(t,{}),o=a.get(\"line-cap\"),s=a.get(\"line-miter-limit\"),l=a.get(\"line-round-limit\"),c=0,u=e;c<u.length;c+=1){var h=u[c];this.addLine(h,t,i,o,s,l,r,n)}},Xo.prototype.addLine=function(t,e,r,n,a,i,o,s){if(this.distance=0,this.scaledDistance=0,this.totalDistance=0,e.properties&&e.properties.hasOwnProperty(\"mapbox_clip_start\")&&e.properties.hasOwnProperty(\"mapbox_clip_end\")){this.clipStart=+e.properties.mapbox_clip_start,this.clipEnd=+e.properties.mapbox_clip_end;for(var l=0;l<t.length-1;l++)this.totalDistance+=t[l].dist(t[l+1])}for(var c=\"Polygon\"===Go[e.type],u=t.length;u>=2&&t[u-1].equals(t[u-2]);)u--;for(var h=0;h<u-1&&t[h].equals(t[h+1]);)h++;if(!(u<(c?3:2))){\"bevel\"===r&&(a=1.05);var f,p=ti/(512*this.overscaling)*15,d=this.segments.prepareSegment(10*u,this.layoutVertexArray,this.indexArray),g=void 0,v=void 0,m=void 0,y=void 0;this.e1=this.e2=-1,c&&(f=t[u-2],y=t[h].sub(f)._unit()._perp());for(var x=h;x<u;x++)if(!(v=c&&x===u-1?t[h+1]:t[x+1])||!t[x].equals(v)){y&&(m=y),f&&(g=f),f=t[x],y=v?v.sub(f)._unit()._perp():m;var b=(m=m||y).add(y);0===b.x&&0===b.y||b._unit();var _=m.x*y.x+m.y*y.y,w=b.x*y.x+b.y*y.y,k=0!==w?1/w:1/0,T=2*Math.sqrt(2-2*w),A=w<Yo&&g&&v,M=m.x*y.y-m.y*y.x>0;if(A&&x>h){var S=f.dist(g);if(S>2*p){var E=f.sub(f.sub(g)._mult(p/S)._round());this.updateDistance(g,E),this.addCurrentVertex(E,m,0,0,d),g=E}}var C=g&&v,L=C?r:c?\"butt\":n;if(C&&\"round\"===L&&(k<i?L=\"miter\":k<=2&&(L=\"fakeround\")),\"miter\"===L&&k>a&&(L=\"bevel\"),\"bevel\"===L&&(k>2&&(L=\"flipbevel\"),k<a&&(L=\"miter\")),g&&this.updateDistance(g,f),\"miter\"===L)b._mult(k),this.addCurrentVertex(f,b,0,0,d);else if(\"flipbevel\"===L){if(k>100)b=y.mult(-1);else{var P=k*m.add(y).mag()/m.sub(y).mag();b._perp()._mult(P*(M?-1:1))}this.addCurrentVertex(f,b,0,0,d),this.addCurrentVertex(f,b.mult(-1),0,0,d)}else if(\"bevel\"===L||\"fakeround\"===L){var O=-Math.sqrt(k*k-1),I=M?O:0,z=M?0:O;if(g&&this.addCurrentVertex(f,m,I,z,d),\"fakeround\"===L)for(var D=Math.round(180*T/Math.PI/20),R=1;R<D;R++){var F=R/D;if(.5!==F){var B=F-.5;F+=F*B*(F-1)*((1.0904+_*(_*(3.55645-1.43519*_)-3.2452))*B*B+(.848013+_*(.215638*_-1.06021)))}var N=y.sub(m)._mult(F)._add(m)._unit()._mult(M?-1:1);this.addHalfVertex(f,N.x,N.y,!1,M,0,d)}v&&this.addCurrentVertex(f,y,-I,-z,d)}else if(\"butt\"===L)this.addCurrentVertex(f,b,0,0,d);else if(\"square\"===L){var j=g?1:-1;this.addCurrentVertex(f,b,j,j,d)}else\"round\"===L&&(g&&(this.addCurrentVertex(f,m,0,0,d),this.addCurrentVertex(f,m,1,1,d,!0)),v&&(this.addCurrentVertex(f,y,-1,-1,d,!0),this.addCurrentVertex(f,y,0,0,d)));if(A&&x<u-1){var V=f.dist(v);if(V>2*p){var U=f.add(v.sub(f)._mult(p/V)._round());this.updateDistance(f,U),this.addCurrentVertex(U,y,0,0,d),f=U}}}this.programConfigurations.populatePaintArrays(this.layoutVertexArray.length,e,o,s)}},Xo.prototype.addCurrentVertex=function(t,e,r,n,a,i){void 0===i&&(i=!1);var o=e.x+e.y*r,s=e.y-e.x*r,l=-e.x+e.y*n,c=-e.y-e.x*n;this.addHalfVertex(t,o,s,i,!1,r,a),this.addHalfVertex(t,l,c,i,!0,-n,a),this.distance>Wo/2&&0===this.totalDistance&&(this.distance=0,this.addCurrentVertex(t,e,r,n,a,i))},Xo.prototype.addHalfVertex=function(t,e,r,n,a,i,o){var s=t.x,l=t.y,c=.5*this.scaledDistance;this.layoutVertexArray.emplaceBack((s<<1)+(n?1:0),(l<<1)+(a?1:0),Math.round(63*e)+128,Math.round(63*r)+128,1+(0===i?0:i<0?-1:1)|(63&c)<<2,c>>6);var u=o.vertexLength++;this.e1>=0&&this.e2>=0&&(this.indexArray.emplaceBack(this.e1,this.e2,u),o.primitiveLength++),a?this.e2=u:this.e1=u},Xo.prototype.updateDistance=function(t,e){this.distance+=t.dist(e),this.scaledDistance=this.totalDistance>0?(this.clipStart+(this.clipEnd-this.clipStart)*this.distance/this.totalDistance)*(Wo-1):this.distance},pn(\"LineBucket\",Xo,{omit:[\"layers\",\"patternFeatures\"]});var Zo=new Hn({\"line-cap\":new Nn(Tt.layout_line[\"line-cap\"]),\"line-join\":new jn(Tt.layout_line[\"line-join\"]),\"line-miter-limit\":new Nn(Tt.layout_line[\"line-miter-limit\"]),\"line-round-limit\":new Nn(Tt.layout_line[\"line-round-limit\"]),\"line-sort-key\":new jn(Tt.layout_line[\"line-sort-key\"])}),Jo={paint:new Hn({\"line-opacity\":new jn(Tt.paint_line[\"line-opacity\"]),\"line-color\":new jn(Tt.paint_line[\"line-color\"]),\"line-translate\":new Nn(Tt.paint_line[\"line-translate\"]),\"line-translate-anchor\":new Nn(Tt.paint_line[\"line-translate-anchor\"]),\"line-width\":new jn(Tt.paint_line[\"line-width\"]),\"line-gap-width\":new jn(Tt.paint_line[\"line-gap-width\"]),\"line-offset\":new jn(Tt.paint_line[\"line-offset\"]),\"line-blur\":new jn(Tt.paint_line[\"line-blur\"]),\"line-dasharray\":new Un(Tt.paint_line[\"line-dasharray\"]),\"line-pattern\":new Vn(Tt.paint_line[\"line-pattern\"]),\"line-gradient\":new qn(Tt.paint_line[\"line-gradient\"])}),layout:Zo},Ko=new(function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.possiblyEvaluate=function(e,r){return r=new Ln(Math.floor(r.zoom),{now:r.now,fadeDuration:r.fadeDuration,zoomHistory:r.zoomHistory,transition:r.transition}),t.prototype.possiblyEvaluate.call(this,e,r)},e.prototype.evaluate=function(e,r,n,a){return r=h({},r,{zoom:Math.floor(r.zoom)}),t.prototype.evaluate.call(this,e,r,n,a)},e}(jn))(Jo.paint.properties[\"line-width\"].specification);Ko.useIntegerZoom=!0;var Qo=function(t){function e(e){t.call(this,e,Jo)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._handleSpecialPaintPropertyUpdate=function(t){\"line-gradient\"===t&&this._updateGradient()},e.prototype._updateGradient=function(){var t=this._transitionablePaint._values[\"line-gradient\"].value.expression;this.gradient=Ii(t,\"lineProgress\"),this.gradientTexture=null},e.prototype.recalculate=function(e){t.prototype.recalculate.call(this,e),this.paint._values[\"line-floorwidth\"]=Ko.possiblyEvaluate(this._transitioningPaint._values[\"line-width\"].value,e)},e.prototype.createBucket=function(t){return new Xo(t)},e.prototype.queryRadius=function(t){var e=t,r=$o(vi(\"line-width\",this,e),vi(\"line-gap-width\",this,e)),n=vi(\"line-offset\",this,e);return r/2+Math.abs(n)+mi(this.paint.get(\"line-translate\"))},e.prototype.queryIntersectsFeature=function(t,e,r,n,i,o,s){var l=yi(t,this.paint.get(\"line-translate\"),this.paint.get(\"line-translate-anchor\"),o.angle,s),c=s/2*$o(this.paint.get(\"line-width\").evaluate(e,r),this.paint.get(\"line-gap-width\").evaluate(e,r)),u=this.paint.get(\"line-offset\").evaluate(e,r);return u&&(n=function(t,e){for(var r=[],n=new a(0,0),i=0;i<t.length;i++){for(var o=t[i],s=[],l=0;l<o.length;l++){var c=o[l-1],u=o[l],h=o[l+1],f=0===l?n:u.sub(c)._unit()._perp(),p=l===o.length-1?n:h.sub(u)._unit()._perp(),d=f._add(p)._unit(),g=d.x*p.x+d.y*p.y;d._mult(1/g),s.push(d._mult(e)._add(u))}r.push(s)}return r}(n,u*s)),function(t,e,r){for(var n=0;n<e.length;n++){var a=e[n];if(t.length>=3)for(var i=0;i<a.length;i++)if(di(t,a[i]))return!0;if(li(t,a,r))return!0}return!1}(l,n,c)},e.prototype.isTileClipped=function(){return!0},e}(Gn);function $o(t,e){return e>0?e+2*t:t}var ts=Zn([{name:\"a_pos_offset\",components:4,type:\"Int16\"},{name:\"a_data\",components:4,type:\"Uint16\"}]),es=Zn([{name:\"a_projected_pos\",components:3,type:\"Float32\"}],4),rs=(Zn([{name:\"a_fade_opacity\",components:1,type:\"Uint32\"}],4),Zn([{name:\"a_placed\",components:2,type:\"Uint8\"},{name:\"a_shift\",components:2,type:\"Float32\"}])),ns=(Zn([{type:\"Int16\",name:\"anchorPointX\"},{type:\"Int16\",name:\"anchorPointY\"},{type:\"Int16\",name:\"x1\"},{type:\"Int16\",name:\"y1\"},{type:\"Int16\",name:\"x2\"},{type:\"Int16\",name:\"y2\"},{type:\"Uint32\",name:\"featureIndex\"},{type:\"Uint16\",name:\"sourceLayerIndex\"},{type:\"Uint16\",name:\"bucketIndex\"},{type:\"Int16\",name:\"radius\"},{type:\"Int16\",name:\"signedDistanceFromAnchor\"}]),Zn([{name:\"a_pos\",components:2,type:\"Int16\"},{name:\"a_anchor_pos\",components:2,type:\"Int16\"},{name:\"a_extrude\",components:2,type:\"Int16\"}],4)),as=Zn([{name:\"a_pos\",components:2,type:\"Int16\"},{name:\"a_anchor_pos\",components:2,type:\"Int16\"},{name:\"a_extrude\",components:2,type:\"Int16\"}],4);function is(t,e,r){return t.sections.forEach(function(t){t.text=function(t,e,r){var n=e.layout.get(\"text-transform\").evaluate(r,{});return\"uppercase\"===n?t=t.toLocaleUpperCase():\"lowercase\"===n&&(t=t.toLocaleLowerCase()),Cn.applyArabicShaping&&(t=Cn.applyArabicShaping(t)),t}(t.text,e,r)}),t}Zn([{type:\"Int16\",name:\"anchorX\"},{type:\"Int16\",name:\"anchorY\"},{type:\"Uint16\",name:\"glyphStartIndex\"},{type:\"Uint16\",name:\"numGlyphs\"},{type:\"Uint32\",name:\"vertexStartIndex\"},{type:\"Uint32\",name:\"lineStartIndex\"},{type:\"Uint32\",name:\"lineLength\"},{type:\"Uint16\",name:\"segment\"},{type:\"Uint16\",name:\"lowerSize\"},{type:\"Uint16\",name:\"upperSize\"},{type:\"Float32\",name:\"lineOffsetX\"},{type:\"Float32\",name:\"lineOffsetY\"},{type:\"Uint8\",name:\"writingMode\"},{type:\"Uint8\",name:\"placedOrientation\"},{type:\"Uint8\",name:\"hidden\"},{type:\"Uint32\",name:\"crossTileID\"}]),Zn([{type:\"Int16\",name:\"anchorX\"},{type:\"Int16\",name:\"anchorY\"},{type:\"Int16\",name:\"rightJustifiedTextSymbolIndex\"},{type:\"Int16\",name:\"centerJustifiedTextSymbolIndex\"},{type:\"Int16\",name:\"leftJustifiedTextSymbolIndex\"},{type:\"Int16\",name:\"verticalPlacedTextSymbolIndex\"},{type:\"Uint16\",name:\"key\"},{type:\"Uint16\",name:\"textBoxStartIndex\"},{type:\"Uint16\",name:\"textBoxEndIndex\"},{type:\"Uint16\",name:\"verticalTextBoxStartIndex\"},{type:\"Uint16\",name:\"verticalTextBoxEndIndex\"},{type:\"Uint16\",name:\"iconBoxStartIndex\"},{type:\"Uint16\",name:\"iconBoxEndIndex\"},{type:\"Uint16\",name:\"featureIndex\"},{type:\"Uint16\",name:\"numHorizontalGlyphVertices\"},{type:\"Uint16\",name:\"numVerticalGlyphVertices\"},{type:\"Uint16\",name:\"numIconVertices\"},{type:\"Uint32\",name:\"crossTileID\"},{type:\"Float32\",name:\"textBoxScale\"},{type:\"Float32\",name:\"radialTextOffset\"}]),Zn([{type:\"Float32\",name:\"offsetX\"}]),Zn([{type:\"Int16\",name:\"x\"},{type:\"Int16\",name:\"y\"},{type:\"Int16\",name:\"tileUnitDistanceFromAnchor\"}]);var os={\"!\":\"\\ufe15\",\"#\":\"\\uff03\",$:\"\\uff04\",\"%\":\"\\uff05\",\"&\":\"\\uff06\",\"(\":\"\\ufe35\",\")\":\"\\ufe36\",\"*\":\"\\uff0a\",\"+\":\"\\uff0b\",\",\":\"\\ufe10\",\"-\":\"\\ufe32\",\".\":\"\\u30fb\",\"/\":\"\\uff0f\",\":\":\"\\ufe13\",\";\":\"\\ufe14\",\"<\":\"\\ufe3f\",\"=\":\"\\uff1d\",\">\":\"\\ufe40\",\"?\":\"\\ufe16\",\"@\":\"\\uff20\",\"[\":\"\\ufe47\",\"\\\\\":\"\\uff3c\",\"]\":\"\\ufe48\",\"^\":\"\\uff3e\",_:\"\\ufe33\",\"`\":\"\\uff40\",\"{\":\"\\ufe37\",\"|\":\"\\u2015\",\"}\":\"\\ufe38\",\"~\":\"\\uff5e\",\"\\xa2\":\"\\uffe0\",\"\\xa3\":\"\\uffe1\",\"\\xa5\":\"\\uffe5\",\"\\xa6\":\"\\uffe4\",\"\\xac\":\"\\uffe2\",\"\\xaf\":\"\\uffe3\",\"\\u2013\":\"\\ufe32\",\"\\u2014\":\"\\ufe31\",\"\\u2018\":\"\\ufe43\",\"\\u2019\":\"\\ufe44\",\"\\u201c\":\"\\ufe41\",\"\\u201d\":\"\\ufe42\",\"\\u2026\":\"\\ufe19\",\"\\u2027\":\"\\u30fb\",\"\\u20a9\":\"\\uffe6\",\"\\u3001\":\"\\ufe11\",\"\\u3002\":\"\\ufe12\",\"\\u3008\":\"\\ufe3f\",\"\\u3009\":\"\\ufe40\",\"\\u300a\":\"\\ufe3d\",\"\\u300b\":\"\\ufe3e\",\"\\u300c\":\"\\ufe41\",\"\\u300d\":\"\\ufe42\",\"\\u300e\":\"\\ufe43\",\"\\u300f\":\"\\ufe44\",\"\\u3010\":\"\\ufe3b\",\"\\u3011\":\"\\ufe3c\",\"\\u3014\":\"\\ufe39\",\"\\u3015\":\"\\ufe3a\",\"\\u3016\":\"\\ufe17\",\"\\u3017\":\"\\ufe18\",\"\\uff01\":\"\\ufe15\",\"\\uff08\":\"\\ufe35\",\"\\uff09\":\"\\ufe36\",\"\\uff0c\":\"\\ufe10\",\"\\uff0d\":\"\\ufe32\",\"\\uff0e\":\"\\u30fb\",\"\\uff1a\":\"\\ufe13\",\"\\uff1b\":\"\\ufe14\",\"\\uff1c\":\"\\ufe3f\",\"\\uff1e\":\"\\ufe40\",\"\\uff1f\":\"\\ufe16\",\"\\uff3b\":\"\\ufe47\",\"\\uff3d\":\"\\ufe48\",\"\\uff3f\":\"\\ufe33\",\"\\uff5b\":\"\\ufe37\",\"\\uff5c\":\"\\u2015\",\"\\uff5d\":\"\\ufe38\",\"\\uff5f\":\"\\ufe35\",\"\\uff60\":\"\\ufe36\",\"\\uff61\":\"\\ufe12\",\"\\uff62\":\"\\ufe41\",\"\\uff63\":\"\\ufe42\"},ss=24,ls={horizontal:1,vertical:2,horizontalOnly:3},cs=function(){this.text=\"\",this.sectionIndex=[],this.sections=[]};function us(t,e,r,n,a,i,o,s,l,c,u){var h,f=cs.fromFeature(t,r);c===ls.vertical&&f.verticalizePunctuation();var p=Cn.processBidirectionalText,d=Cn.processStyledBidirectionalText;if(p&&1===f.sections.length){h=[];for(var g=0,v=p(f.toString(),vs(f,s,n,e));g<v.length;g+=1){var m=v[g],y=new cs;y.text=m,y.sections=f.sections;for(var x=0;x<m.length;x++)y.sectionIndex.push(0);h.push(y)}}else if(d){h=[];for(var b=0,_=d(f.text,f.sectionIndex,vs(f,s,n,e));b<_.length;b+=1){var w=_[b],k=new cs;k.text=w[0],k.sectionIndex=w[1],k.sections=f.sections,h.push(k)}}else h=function(t,e){for(var r=[],n=t.text,a=0,i=0,o=e;i<o.length;i+=1){var s=o[i];r.push(t.substring(a,s)),a=s}return a<n.length&&r.push(t.substring(a,n.length)),r}(f,vs(f,s,n,e));var T=[],A={positionedGlyphs:T,text:f.toString(),top:l[1],bottom:l[1],left:l[0],right:l[0],writingMode:c,lineCount:h.length,yOffset:-17};return function(t,e,r,n,a,i,o,s,l){for(var c=0,u=t.yOffset,h=0,f=t.positionedGlyphs,p=\"right\"===i?1:\"left\"===i?0:.5,d=0,g=r;d<g.length;d+=1){var v=g[d];v.trim();var m=v.getMaxScale();if(v.length()){for(var y=f.length,x=0;x<v.length();x++){var b=v.getSection(x),_=v.getSectionIndex(x),w=v.getCharCode(x),k=24*(m-b.scale),T=e[b.fontStack],A=T&&T[w];A&&(o===ls.horizontal||!l&&!_n(w)||l&&(hs[w]||(S=w,yn.Arabic(S)||yn[\"Arabic Supplement\"](S)||yn[\"Arabic Extended-A\"](S)||yn[\"Arabic Presentation Forms-A\"](S)||yn[\"Arabic Presentation Forms-B\"](S)))?(f.push({glyph:w,x:c,y:u+k,vertical:!1,scale:b.scale,fontStack:b.fontStack,sectionIndex:_}),c+=A.metrics.advance*b.scale+s):(f.push({glyph:w,x:c,y:u+k,vertical:!0,scale:b.scale,fontStack:b.fontStack,sectionIndex:_}),c+=ss*b.scale+s))}if(f.length!==y){var M=c-s;h=Math.max(M,h),ys(f,e,y,f.length-1,p)}c=0,u+=n*m}else u+=n}var S,E=ms(a),C=E.horizontalAlign,L=E.verticalAlign;!function(t,e,r,n,a,i,o){for(var s=(e-r)*a,l=(-n*o+.5)*i,c=0;c<t.length;c++)t[c].x+=s,t[c].y+=l}(f,p,C,L,h,n,r.length);var P=u-t.yOffset;t.top+=-L*P,t.bottom=t.top+P,t.left+=-C*h,t.right=t.left+h}(A,e,h,a,i,o,c,s,u),!!T.length&&A}cs.fromFeature=function(t,e){for(var r=new cs,n=0;n<t.sections.length;n++){var a=t.sections[n];r.sections.push({scale:a.scale||1,fontStack:a.fontStack||e}),r.text+=a.text;for(var i=0;i<a.text.length;i++)r.sectionIndex.push(n)}return r},cs.prototype.length=function(){return this.text.length},cs.prototype.getSection=function(t){return this.sections[this.sectionIndex[t]]},cs.prototype.getSectionIndex=function(t){return this.sectionIndex[t]},cs.prototype.getCharCode=function(t){return this.text.charCodeAt(t)},cs.prototype.verticalizePunctuation=function(){this.text=function(t){for(var e=\"\",r=0;r<t.length;r++){var n=t.charCodeAt(r+1)||null,a=t.charCodeAt(r-1)||null;n&&wn(n)&&!os[t[r+1]]||a&&wn(a)&&!os[t[r-1]]||!os[t[r]]?e+=t[r]:e+=os[t[r]]}return e}(this.text)},cs.prototype.trim=function(){for(var t=0,e=0;e<this.text.length&&hs[this.text.charCodeAt(e)];e++)t++;for(var r=this.text.length,n=this.text.length-1;n>=0&&n>=t&&hs[this.text.charCodeAt(n)];n--)r--;this.text=this.text.substring(t,r),this.sectionIndex=this.sectionIndex.slice(t,r)},cs.prototype.substring=function(t,e){var r=new cs;return r.text=this.text.substring(t,e),r.sectionIndex=this.sectionIndex.slice(t,e),r.sections=this.sections,r},cs.prototype.toString=function(){return this.text},cs.prototype.getMaxScale=function(){var t=this;return this.sectionIndex.reduce(function(e,r){return Math.max(e,t.sections[r].scale)},0)};var hs={9:!0,10:!0,11:!0,12:!0,13:!0,32:!0},fs={};function ps(t,e,r,n){var a=Math.pow(t-e,2);return n?t<e?a/2:2*a:a+Math.abs(r)*r}function ds(t,e,r){var n=0;return 10===t&&(n-=1e4),r&&(n+=150),40!==t&&65288!==t||(n+=50),41!==e&&65289!==e||(n+=50),n}function gs(t,e,r,n,a,i){for(var o=null,s=ps(e,r,a,i),l=0,c=n;l<c.length;l+=1){var u=c[l],h=ps(e-u.x,r,a,i)+u.badness;h<=s&&(o=u,s=h)}return{index:t,x:e,priorBreak:o,badness:s}}function vs(t,e,r,n){if(!r)return[];if(!t)return[];for(var a,i=[],o=function(t,e,r,n){for(var a=0,i=0;i<t.length();i++){var o=t.getSection(i),s=n[o.fontStack],l=s&&s[t.getCharCode(i)];l&&(a+=l.metrics.advance*o.scale+e)}return a/Math.max(1,Math.ceil(a/r))}(t,e,r,n),s=t.text.indexOf(\"\\u200b\")>=0,l=0,c=0;c<t.length();c++){var u=t.getSection(c),h=t.getCharCode(c),f=n[u.fontStack],p=f&&f[h];if(p&&!hs[h]&&(l+=p.metrics.advance*u.scale+e),c<t.length()-1){var d=!((a=h)<11904||!(yn[\"Bopomofo Extended\"](a)||yn.Bopomofo(a)||yn[\"CJK Compatibility Forms\"](a)||yn[\"CJK Compatibility Ideographs\"](a)||yn[\"CJK Compatibility\"](a)||yn[\"CJK Radicals Supplement\"](a)||yn[\"CJK Strokes\"](a)||yn[\"CJK Symbols and Punctuation\"](a)||yn[\"CJK Unified Ideographs Extension A\"](a)||yn[\"CJK Unified Ideographs\"](a)||yn[\"Enclosed CJK Letters and Months\"](a)||yn[\"Halfwidth and Fullwidth Forms\"](a)||yn.Hiragana(a)||yn[\"Ideographic Description Characters\"](a)||yn[\"Kangxi Radicals\"](a)||yn[\"Katakana Phonetic Extensions\"](a)||yn.Katakana(a)||yn[\"Vertical Forms\"](a)||yn[\"Yi Radicals\"](a)||yn[\"Yi Syllables\"](a)));(fs[h]||d)&&i.push(gs(c+1,l,o,i,ds(h,t.getCharCode(c+1),d&&s),!1))}}return function t(e){return e?t(e.priorBreak).concat(e.index):[]}(gs(t.length(),l,o,i,0,!0))}function ms(t){var e=.5,r=.5;switch(t){case\"right\":case\"top-right\":case\"bottom-right\":e=1;break;case\"left\":case\"top-left\":case\"bottom-left\":e=0}switch(t){case\"bottom\":case\"bottom-right\":case\"bottom-left\":r=1;break;case\"top\":case\"top-right\":case\"top-left\":r=0}return{horizontalAlign:e,verticalAlign:r}}function ys(t,e,r,n,a){if(a){var i=t[n],o=e[i.fontStack],s=o&&o[i.glyph];if(s)for(var l=s.metrics.advance*i.scale,c=(t[n].x+l)*a,u=r;u<=n;u++)t[u].x-=c}}fs[10]=!0,fs[32]=!0,fs[38]=!0,fs[40]=!0,fs[41]=!0,fs[43]=!0,fs[45]=!0,fs[47]=!0,fs[173]=!0,fs[183]=!0,fs[8203]=!0,fs[8208]=!0,fs[8211]=!0,fs[8231]=!0;var xs=function(t){function e(e,r,n,a){t.call(this,e,r),this.angle=n,void 0!==a&&(this.segment=a)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.clone=function(){return new e(this.x,this.y,this.angle,this.segment)},e}(a);pn(\"Anchor\",xs);var bs=256;function _s(t,e){var r=e.expression;if(\"constant\"===r.kind)return{kind:\"constant\",layoutSize:r.evaluate(new Ln(t+1))};if(\"source\"===r.kind)return{kind:\"source\"};for(var n=r.zoomStops,a=r.interpolationType,i=0;i<n.length&&n[i]<=t;)i++;for(var o=i=Math.max(0,i-1);o<n.length&&n[o]<t+1;)o++;o=Math.min(n.length-1,o);var s=n[i],l=n[o];return\"composite\"===r.kind?{kind:\"composite\",minZoom:s,maxZoom:l,interpolationType:a}:{kind:\"camera\",minZoom:s,maxZoom:l,minSize:r.evaluate(new Ln(s)),maxSize:r.evaluate(new Ln(l)),interpolationType:a}}function ws(t,e,r){var n=e.uSize,a=e.uSizeT,i=r.lowerSize,o=r.upperSize;return\"source\"===t.kind?i/bs:\"composite\"===t.kind?ye(i/bs,o/bs,a):n}function ks(t,e){var r=0,n=0;if(\"constant\"===t.kind)n=t.layoutSize;else if(\"source\"!==t.kind){var a=t.interpolationType,i=t.minZoom,o=t.maxZoom,s=a?c(Be.interpolationFactor(a,e,i,o),0,1):0;\"camera\"===t.kind?n=ye(t.minSize,t.maxSize,s):r=s}return{uSizeT:r,uSize:n}}var Ts=Object.freeze({getSizeData:_s,evaluateSizeForFeature:ws,evaluateSizeForZoom:ks,SIZE_PACK_FACTOR:bs}),As=Io.VectorTileFeature.types,Ms=[{name:\"a_fade_opacity\",components:1,type:\"Uint8\",offset:0}];function Ss(t,e,r,n,a,i,o,s){t.emplaceBack(e,r,Math.round(32*n),Math.round(32*a),i,o,s?s[0]:0,s?s[1]:0)}function Es(t,e,r){t.emplaceBack(e.x,e.y,r),t.emplaceBack(e.x,e.y,r),t.emplaceBack(e.x,e.y,r),t.emplaceBack(e.x,e.y,r)}var Cs=function(t){this.layoutVertexArray=new ra,this.indexArray=new pa,this.programConfigurations=t,this.segments=new Pa,this.dynamicLayoutVertexArray=new na,this.opacityVertexArray=new aa,this.placedSymbolArray=new _a};Cs.prototype.upload=function(t,e,r,n){r&&(this.layoutVertexBuffer=t.createVertexBuffer(this.layoutVertexArray,ts.members),this.indexBuffer=t.createIndexBuffer(this.indexArray,e),this.dynamicLayoutVertexBuffer=t.createVertexBuffer(this.dynamicLayoutVertexArray,es.members,!0),this.opacityVertexBuffer=t.createVertexBuffer(this.opacityVertexArray,Ms,!0),this.opacityVertexBuffer.itemSize=1),(r||n)&&this.programConfigurations.upload(t)},Cs.prototype.destroy=function(){this.layoutVertexBuffer&&(this.layoutVertexBuffer.destroy(),this.indexBuffer.destroy(),this.programConfigurations.destroy(),this.segments.destroy(),this.dynamicLayoutVertexBuffer.destroy(),this.opacityVertexBuffer.destroy())},pn(\"SymbolBuffers\",Cs);var Ls=function(t,e,r){this.layoutVertexArray=new t,this.layoutAttributes=e,this.indexArray=new r,this.segments=new Pa,this.collisionVertexArray=new sa};Ls.prototype.upload=function(t){this.layoutVertexBuffer=t.createVertexBuffer(this.layoutVertexArray,this.layoutAttributes),this.indexBuffer=t.createIndexBuffer(this.indexArray),this.collisionVertexBuffer=t.createVertexBuffer(this.collisionVertexArray,rs.members,!0)},Ls.prototype.destroy=function(){this.layoutVertexBuffer&&(this.layoutVertexBuffer.destroy(),this.indexBuffer.destroy(),this.segments.destroy(),this.collisionVertexBuffer.destroy())},pn(\"CollisionBuffers\",Ls);var Ps=function(t){this.collisionBoxArray=t.collisionBoxArray,this.zoom=t.zoom,this.overscaling=t.overscaling,this.layers=t.layers,this.layerIds=this.layers.map(function(t){return t.id}),this.index=t.index,this.pixelRatio=t.pixelRatio,this.sourceLayerIndex=t.sourceLayerIndex,this.hasPattern=!1,this.hasPaintOverrides=!1;var e=this.layers[0]._unevaluatedLayout._values;this.textSizeData=_s(this.zoom,e[\"text-size\"]),this.iconSizeData=_s(this.zoom,e[\"icon-size\"]);var r=this.layers[0].layout,n=r.get(\"symbol-sort-key\"),a=r.get(\"symbol-z-order\");this.sortFeaturesByKey=\"viewport-y\"!==a&&void 0!==n.constantOr(1);var i=\"viewport-y\"===a||\"auto\"===a&&!this.sortFeaturesByKey;this.sortFeaturesByY=i&&(r.get(\"text-allow-overlap\")||r.get(\"icon-allow-overlap\")||r.get(\"text-ignore-placement\")||r.get(\"icon-ignore-placement\")),\"point\"===r.get(\"symbol-placement\")&&(this.writingModes=r.get(\"text-writing-mode\").map(function(t){return ls[t]})),this.stateDependentLayerIds=this.layers.filter(function(t){return t.isStateDependent()}).map(function(t){return t.id}),this.sourceID=t.sourceID};Ps.prototype.createArrays=function(){var t=this.layers[0].layout;this.hasPaintOverrides=Ds.hasPaintOverrides(t),this.text=new Cs(new Ka(ts.members,this.layers,this.zoom,function(t){return/^text/.test(t)})),this.icon=new Cs(new Ka(ts.members,this.layers,this.zoom,function(t){return/^icon/.test(t)})),this.collisionBox=new Ls(oa,ns.members,da),this.collisionCircle=new Ls(oa,as.members,pa),this.glyphOffsetArray=new Aa,this.lineVertexArray=new Sa,this.symbolInstances=new ka},Ps.prototype.calculateGlyphDependencies=function(t,e,r,n,a){for(var i=0;i<t.length;i++)if(e[t.charCodeAt(i)]=!0,(r||n)&&a){var o=os[t.charAt(i)];o&&(e[o.charCodeAt(0)]=!0)}},Ps.prototype.populate=function(t,e){var r=this.layers[0],n=r.layout,a=n.get(\"text-font\"),i=n.get(\"text-field\"),o=n.get(\"icon-image\"),s=(\"constant\"!==i.value.kind||i.value.value.toString().length>0)&&(\"constant\"!==a.value.kind||a.value.value.length>0),l=\"constant\"!==o.value.kind||o.value.value&&o.value.value.length>0,c=n.get(\"symbol-sort-key\");if(this.features=[],s||l){for(var u=e.iconDependencies,h=e.glyphDependencies,f=new Ln(this.zoom),p=0,d=t;p<d.length;p+=1){var g=d[p],v=g.feature,m=g.index,y=g.sourceLayerIndex;if(r._featureFilter(f,v)){var x=void 0;if(s){var b=r.getValueAndResolveTokens(\"text-field\",v);x=is(b instanceof Jt?b:Jt.fromString(b),r,v)}var _=void 0;if(l&&(_=r.getValueAndResolveTokens(\"icon-image\",v)),x||_){var w=this.sortFeaturesByKey?c.evaluate(v,{}):void 0,k={text:x,icon:_,index:m,sourceLayerIndex:y,geometry:ri(v),properties:v.properties,type:As[v.type],sortKey:w};if(void 0!==v.id&&(k.id=v.id),this.features.push(k),_&&(u[_]=!0),x){var T=a.evaluate(v,{}).join(\",\"),A=\"map\"===n.get(\"text-rotation-alignment\")&&\"point\"!==n.get(\"symbol-placement\");this.allowVerticalPlacement=this.writingModes&&this.writingModes.indexOf(ls.vertical)>=0;for(var M=0,S=x.sections;M<S.length;M+=1){var E=S[M],C=xn(x.toString()),L=E.fontStack||T,P=h[L]=h[L]||{};this.calculateGlyphDependencies(E.text,P,A,this.allowVerticalPlacement,C)}}}}}\"line\"===n.get(\"symbol-placement\")&&(this.features=function(t){var e={},r={},n=[],a=0;function i(e){n.push(t[e]),a++}function o(t,e,a){var i=r[t];return delete r[t],r[e]=i,n[i].geometry[0].pop(),n[i].geometry[0]=n[i].geometry[0].concat(a[0]),i}function s(t,r,a){var i=e[r];return delete e[r],e[t]=i,n[i].geometry[0].shift(),n[i].geometry[0]=a[0].concat(n[i].geometry[0]),i}function l(t,e,r){var n=r?e[0][e[0].length-1]:e[0][0];return t+\":\"+n.x+\":\"+n.y}for(var c=0;c<t.length;c++){var u=t[c],h=u.geometry,f=u.text?u.text.toString():null;if(f){var p=l(f,h),d=l(f,h,!0);if(p in r&&d in e&&r[p]!==e[d]){var g=s(p,d,h),v=o(p,d,n[g].geometry);delete e[p],delete r[d],r[l(f,n[v].geometry,!0)]=v,n[g].geometry=null}else p in r?o(p,d,h):d in e?s(p,d,h):(i(c),e[p]=a-1,r[d]=a-1)}else i(c)}return n.filter(function(t){return t.geometry})}(this.features)),this.sortFeaturesByKey&&this.features.sort(function(t,e){return t.sortKey-e.sortKey})}},Ps.prototype.update=function(t,e,r){this.stateDependentLayers.length&&(this.text.programConfigurations.updatePaintArrays(t,e,this.layers,r),this.icon.programConfigurations.updatePaintArrays(t,e,this.layers,r))},Ps.prototype.isEmpty=function(){return 0===this.symbolInstances.length},Ps.prototype.uploadPending=function(){return!this.uploaded||this.text.programConfigurations.needsUpload||this.icon.programConfigurations.needsUpload},Ps.prototype.upload=function(t){this.uploaded||(this.collisionBox.upload(t),this.collisionCircle.upload(t)),this.text.upload(t,this.sortFeaturesByY,!this.uploaded,this.text.programConfigurations.needsUpload),this.icon.upload(t,this.sortFeaturesByY,!this.uploaded,this.icon.programConfigurations.needsUpload),this.uploaded=!0},Ps.prototype.destroy=function(){this.text.destroy(),this.icon.destroy(),this.collisionBox.destroy(),this.collisionCircle.destroy()},Ps.prototype.addToLineVertexArray=function(t,e){var r=this.lineVertexArray.length;if(void 0!==t.segment){for(var n=t.dist(e[t.segment+1]),a=t.dist(e[t.segment]),i={},o=t.segment+1;o<e.length;o++)i[o]={x:e[o].x,y:e[o].y,tileUnitDistanceFromAnchor:n},o<e.length-1&&(n+=e[o+1].dist(e[o]));for(var s=t.segment||0;s>=0;s--)i[s]={x:e[s].x,y:e[s].y,tileUnitDistanceFromAnchor:a},s>0&&(a+=e[s-1].dist(e[s]));for(var l=0;l<e.length;l++){var c=i[l];this.lineVertexArray.emplaceBack(c.x,c.y,c.tileUnitDistanceFromAnchor)}}return{lineStartIndex:r,lineLength:this.lineVertexArray.length-r}},Ps.prototype.addSymbols=function(t,e,r,n,a,i,o,s,l,c){var u=this,h=t.indexArray,f=t.layoutVertexArray,p=t.dynamicLayoutVertexArray,d=t.segments.prepareSegment(4*e.length,t.layoutVertexArray,t.indexArray,i.sortKey),g=this.glyphOffsetArray.length,v=d.vertexLength,m=this.allowVerticalPlacement&&o===ls.vertical?Math.PI/2:0,y=function(t){var e=t.tl,n=t.tr,a=t.bl,i=t.br,o=t.tex,l=d.vertexLength,c=t.glyphOffset[1];Ss(f,s.x,s.y,e.x,c+e.y,o.x,o.y,r),Ss(f,s.x,s.y,n.x,c+n.y,o.x+o.w,o.y,r),Ss(f,s.x,s.y,a.x,c+a.y,o.x,o.y+o.h,r),Ss(f,s.x,s.y,i.x,c+i.y,o.x+o.w,o.y+o.h,r),Es(p,s,m),h.emplaceBack(l,l+1,l+2),h.emplaceBack(l+1,l+2,l+3),d.vertexLength+=4,d.primitiveLength+=2,u.glyphOffsetArray.emplaceBack(t.glyphOffset[0])};if(i.text&&i.text.sections){var x=i.text.sections;if(this.hasPaintOverrides){for(var b,_=function(e,r){void 0===b||b===e&&!r||t.programConfigurations.populatePaintArrays(t.layoutVertexArray.length,i,i.index,{},x[b]),b=e},w=0,k=e;w<k.length;w+=1){var T=k[w];_(T.sectionIndex,!1),y(T)}_(b,!0)}else{for(var A=0,M=e;A<M.length;A+=1)y(M[A]);t.programConfigurations.populatePaintArrays(t.layoutVertexArray.length,i,i.index,{},x[0])}}else{for(var S=0,E=e;S<E.length;S+=1)y(E[S]);t.programConfigurations.populatePaintArrays(t.layoutVertexArray.length,i,i.index,{})}t.placedSymbolArray.emplaceBack(s.x,s.y,g,this.glyphOffsetArray.length-g,v,l,c,s.segment,r?r[0]:0,r?r[1]:0,n[0],n[1],o,0,!1,0)},Ps.prototype._addCollisionDebugVertex=function(t,e,r,n,a,i){return e.emplaceBack(0,0),t.emplaceBack(r.x,r.y,n,a,Math.round(i.x),Math.round(i.y))},Ps.prototype.addCollisionDebugVertices=function(t,e,r,n,i,o,s,l){var c=i.segments.prepareSegment(4,i.layoutVertexArray,i.indexArray),u=c.vertexLength,h=i.layoutVertexArray,f=i.collisionVertexArray,p=s.anchorX,d=s.anchorY;if(this._addCollisionDebugVertex(h,f,o,p,d,new a(t,e)),this._addCollisionDebugVertex(h,f,o,p,d,new a(r,e)),this._addCollisionDebugVertex(h,f,o,p,d,new a(r,n)),this._addCollisionDebugVertex(h,f,o,p,d,new a(t,n)),c.vertexLength+=4,l){var g=i.indexArray;g.emplaceBack(u,u+1,u+2),g.emplaceBack(u,u+2,u+3),c.primitiveLength+=2}else{var v=i.indexArray;v.emplaceBack(u,u+1),v.emplaceBack(u+1,u+2),v.emplaceBack(u+2,u+3),v.emplaceBack(u+3,u),c.primitiveLength+=4}},Ps.prototype.addDebugCollisionBoxes=function(t,e,r){for(var n=t;n<e;n++){var a=this.collisionBoxArray.get(n),i=a.x1,o=a.y1,s=a.x2,l=a.y2,c=a.radius>0;this.addCollisionDebugVertices(i,o,s,l,c?this.collisionCircle:this.collisionBox,a.anchorPoint,r,c)}},Ps.prototype.generateCollisionDebugBuffers=function(){for(var t=0;t<this.symbolInstances.length;t++){var e=this.symbolInstances.get(t);this.addDebugCollisionBoxes(e.textBoxStartIndex,e.textBoxEndIndex,e),this.addDebugCollisionBoxes(e.verticalTextBoxStartIndex,e.verticalTextBoxEndIndex,e),this.addDebugCollisionBoxes(e.iconBoxStartIndex,e.iconBoxEndIndex,e)}},Ps.prototype._deserializeCollisionBoxesForSymbol=function(t,e,r,n,a,i,o){for(var s={},l=e;l<r;l++){var c=t.get(l);if(0===c.radius){s.textBox={x1:c.x1,y1:c.y1,x2:c.x2,y2:c.y2,anchorPointX:c.anchorPointX,anchorPointY:c.anchorPointY},s.textFeatureIndex=c.featureIndex;break}s.textCircles||(s.textCircles=[],s.textFeatureIndex=c.featureIndex),s.textCircles.push(c.anchorPointX,c.anchorPointY,c.radius,c.signedDistanceFromAnchor,1)}for(var u=n;u<a;u++){var h=t.get(u);if(0===h.radius){s.verticalTextBox={x1:h.x1,y1:h.y1,x2:h.x2,y2:h.y2,anchorPointX:h.anchorPointX,anchorPointY:h.anchorPointY},s.verticalTextFeatureIndex=h.featureIndex;break}}for(var f=i;f<o;f++){var p=t.get(f);if(0===p.radius){s.iconBox={x1:p.x1,y1:p.y1,x2:p.x2,y2:p.y2,anchorPointX:p.anchorPointX,anchorPointY:p.anchorPointY},s.iconFeatureIndex=p.featureIndex;break}}return s},Ps.prototype.deserializeCollisionBoxes=function(t){this.collisionArrays=[];for(var e=0;e<this.symbolInstances.length;e++){var r=this.symbolInstances.get(e);this.collisionArrays.push(this._deserializeCollisionBoxesForSymbol(t,r.textBoxStartIndex,r.textBoxEndIndex,r.verticalTextBoxStartIndex,r.verticalTextBoxEndIndex,r.iconBoxStartIndex,r.iconBoxEndIndex))}},Ps.prototype.hasTextData=function(){return this.text.segments.get().length>0},Ps.prototype.hasIconData=function(){return this.icon.segments.get().length>0},Ps.prototype.hasCollisionBoxData=function(){return this.collisionBox.segments.get().length>0},Ps.prototype.hasCollisionCircleData=function(){return this.collisionCircle.segments.get().length>0},Ps.prototype.addIndicesForPlacedTextSymbol=function(t){for(var e=this.text.placedSymbolArray.get(t),r=e.vertexStartIndex+4*e.numGlyphs,n=e.vertexStartIndex;n<r;n+=4)this.text.indexArray.emplaceBack(n,n+1,n+2),this.text.indexArray.emplaceBack(n+1,n+2,n+3)},Ps.prototype.getSortedSymbolIndexes=function(t){if(this.sortedAngle===t&&void 0!==this.symbolInstanceIndexes)return this.symbolInstanceIndexes;for(var e=Math.sin(t),r=Math.cos(t),n=[],a=[],i=[],o=0;o<this.symbolInstances.length;++o){i.push(o);var s=this.symbolInstances.get(o);n.push(0|Math.round(e*s.anchorX+r*s.anchorY)),a.push(s.featureIndex)}return i.sort(function(t,e){return n[t]-n[e]||a[e]-a[t]}),i},Ps.prototype.sortFeatures=function(t){var e=this;if(this.sortFeaturesByY&&this.sortedAngle!==t&&!(this.text.segments.get().length>1||this.icon.segments.get().length>1)){this.symbolInstanceIndexes=this.getSortedSymbolIndexes(t),this.sortedAngle=t,this.text.indexArray.clear(),this.icon.indexArray.clear(),this.featureSortOrder=[];for(var r=0,n=this.symbolInstanceIndexes;r<n.length;r+=1){var a=n[r],i=this.symbolInstances.get(a);this.featureSortOrder.push(i.featureIndex),[i.rightJustifiedTextSymbolIndex,i.centerJustifiedTextSymbolIndex,i.leftJustifiedTextSymbolIndex].forEach(function(t,r,n){t>=0&&n.indexOf(t)===r&&e.addIndicesForPlacedTextSymbol(t)}),i.verticalPlacedTextSymbolIndex>=0&&this.addIndicesForPlacedTextSymbol(i.verticalPlacedTextSymbolIndex);var o=this.icon.placedSymbolArray.get(a);if(o.numGlyphs){var s=o.vertexStartIndex;this.icon.indexArray.emplaceBack(s,s+1,s+2),this.icon.indexArray.emplaceBack(s+1,s+2,s+3)}}this.text.indexBuffer&&this.text.indexBuffer.updateData(this.text.indexArray),this.icon.indexBuffer&&this.icon.indexBuffer.updateData(this.icon.indexArray)}},pn(\"SymbolBucket\",Ps,{omit:[\"layers\",\"collisionBoxArray\",\"features\",\"compareText\"]}),Ps.MAX_GLYPHS=65535,Ps.addDynamicAttributes=Es;var Os=new Hn({\"symbol-placement\":new Nn(Tt.layout_symbol[\"symbol-placement\"]),\"symbol-spacing\":new Nn(Tt.layout_symbol[\"symbol-spacing\"]),\"symbol-avoid-edges\":new Nn(Tt.layout_symbol[\"symbol-avoid-edges\"]),\"symbol-sort-key\":new jn(Tt.layout_symbol[\"symbol-sort-key\"]),\"symbol-z-order\":new Nn(Tt.layout_symbol[\"symbol-z-order\"]),\"icon-allow-overlap\":new Nn(Tt.layout_symbol[\"icon-allow-overlap\"]),\"icon-ignore-placement\":new Nn(Tt.layout_symbol[\"icon-ignore-placement\"]),\"icon-optional\":new Nn(Tt.layout_symbol[\"icon-optional\"]),\"icon-rotation-alignment\":new Nn(Tt.layout_symbol[\"icon-rotation-alignment\"]),\"icon-size\":new jn(Tt.layout_symbol[\"icon-size\"]),\"icon-text-fit\":new Nn(Tt.layout_symbol[\"icon-text-fit\"]),\"icon-text-fit-padding\":new Nn(Tt.layout_symbol[\"icon-text-fit-padding\"]),\"icon-image\":new jn(Tt.layout_symbol[\"icon-image\"]),\"icon-rotate\":new jn(Tt.layout_symbol[\"icon-rotate\"]),\"icon-padding\":new Nn(Tt.layout_symbol[\"icon-padding\"]),\"icon-keep-upright\":new Nn(Tt.layout_symbol[\"icon-keep-upright\"]),\"icon-offset\":new jn(Tt.layout_symbol[\"icon-offset\"]),\"icon-anchor\":new jn(Tt.layout_symbol[\"icon-anchor\"]),\"icon-pitch-alignment\":new Nn(Tt.layout_symbol[\"icon-pitch-alignment\"]),\"text-pitch-alignment\":new Nn(Tt.layout_symbol[\"text-pitch-alignment\"]),\"text-rotation-alignment\":new Nn(Tt.layout_symbol[\"text-rotation-alignment\"]),\"text-field\":new jn(Tt.layout_symbol[\"text-field\"]),\"text-font\":new jn(Tt.layout_symbol[\"text-font\"]),\"text-size\":new jn(Tt.layout_symbol[\"text-size\"]),\"text-max-width\":new jn(Tt.layout_symbol[\"text-max-width\"]),\"text-line-height\":new Nn(Tt.layout_symbol[\"text-line-height\"]),\"text-letter-spacing\":new jn(Tt.layout_symbol[\"text-letter-spacing\"]),\"text-justify\":new jn(Tt.layout_symbol[\"text-justify\"]),\"text-radial-offset\":new jn(Tt.layout_symbol[\"text-radial-offset\"]),\"text-variable-anchor\":new Nn(Tt.layout_symbol[\"text-variable-anchor\"]),\"text-anchor\":new jn(Tt.layout_symbol[\"text-anchor\"]),\"text-max-angle\":new Nn(Tt.layout_symbol[\"text-max-angle\"]),\"text-writing-mode\":new Nn(Tt.layout_symbol[\"text-writing-mode\"]),\"text-rotate\":new jn(Tt.layout_symbol[\"text-rotate\"]),\"text-padding\":new Nn(Tt.layout_symbol[\"text-padding\"]),\"text-keep-upright\":new Nn(Tt.layout_symbol[\"text-keep-upright\"]),\"text-transform\":new jn(Tt.layout_symbol[\"text-transform\"]),\"text-offset\":new jn(Tt.layout_symbol[\"text-offset\"]),\"text-allow-overlap\":new Nn(Tt.layout_symbol[\"text-allow-overlap\"]),\"text-ignore-placement\":new Nn(Tt.layout_symbol[\"text-ignore-placement\"]),\"text-optional\":new Nn(Tt.layout_symbol[\"text-optional\"])}),Is={paint:new Hn({\"icon-opacity\":new jn(Tt.paint_symbol[\"icon-opacity\"]),\"icon-color\":new jn(Tt.paint_symbol[\"icon-color\"]),\"icon-halo-color\":new jn(Tt.paint_symbol[\"icon-halo-color\"]),\"icon-halo-width\":new jn(Tt.paint_symbol[\"icon-halo-width\"]),\"icon-halo-blur\":new jn(Tt.paint_symbol[\"icon-halo-blur\"]),\"icon-translate\":new Nn(Tt.paint_symbol[\"icon-translate\"]),\"icon-translate-anchor\":new Nn(Tt.paint_symbol[\"icon-translate-anchor\"]),\"text-opacity\":new jn(Tt.paint_symbol[\"text-opacity\"]),\"text-color\":new jn(Tt.paint_symbol[\"text-color\"],{runtimeType:Ft,getOverride:function(t){return t.textColor},hasOverride:function(t){return!!t.textColor}}),\"text-halo-color\":new jn(Tt.paint_symbol[\"text-halo-color\"]),\"text-halo-width\":new jn(Tt.paint_symbol[\"text-halo-width\"]),\"text-halo-blur\":new jn(Tt.paint_symbol[\"text-halo-blur\"]),\"text-translate\":new Nn(Tt.paint_symbol[\"text-translate\"]),\"text-translate-anchor\":new Nn(Tt.paint_symbol[\"text-translate-anchor\"])}),layout:Os},zs=function(t){this.type=t.property.overrides?t.property.overrides.runtimeType:It,this.defaultValue=t};zs.prototype.evaluate=function(t){if(t.formattedSection){var e=this.defaultValue.property.overrides;if(e&&e.hasOverride(t.formattedSection))return e.getOverride(t.formattedSection)}return t.feature&&t.featureState?this.defaultValue.evaluate(t.feature,t.featureState):this.defaultValue.property.specification.default},zs.prototype.eachChild=function(t){this.defaultValue.isConstant()||t(this.defaultValue.value._styleExpression.expression)},zs.prototype.possibleOutputs=function(){return[void 0]},zs.prototype.serialize=function(){return null},pn(\"FormatSectionOverride\",zs,{omit:[\"defaultValue\"]});var Ds=function(t){function e(e){t.call(this,e,Is)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.recalculate=function(e){if(t.prototype.recalculate.call(this,e),\"auto\"===this.layout.get(\"icon-rotation-alignment\")&&(\"point\"!==this.layout.get(\"symbol-placement\")?this.layout._values[\"icon-rotation-alignment\"]=\"map\":this.layout._values[\"icon-rotation-alignment\"]=\"viewport\"),\"auto\"===this.layout.get(\"text-rotation-alignment\")&&(\"point\"!==this.layout.get(\"symbol-placement\")?this.layout._values[\"text-rotation-alignment\"]=\"map\":this.layout._values[\"text-rotation-alignment\"]=\"viewport\"),\"auto\"===this.layout.get(\"text-pitch-alignment\")&&(this.layout._values[\"text-pitch-alignment\"]=this.layout.get(\"text-rotation-alignment\")),\"auto\"===this.layout.get(\"icon-pitch-alignment\")&&(this.layout._values[\"icon-pitch-alignment\"]=this.layout.get(\"icon-rotation-alignment\")),\"point\"===this.layout.get(\"symbol-placement\")){var r=this.layout.get(\"text-writing-mode\");if(r){for(var n=[],a=0,i=r;a<i.length;a+=1){var o=i[a];n.indexOf(o)<0&&n.push(o)}this.layout._values[\"text-writing-mode\"]=n}else this.layout._values[\"text-writing-mode\"]=[\"horizontal\"]}this._setPaintOverrides()},e.prototype.getValueAndResolveTokens=function(t,e){var r=this.layout.get(t).evaluate(e,{}),n=this._unevaluatedLayout._values[t];return n.isDataDriven()||_r(n.value)?r:function(t,e){return r.replace(/{([^{}]+)}/g,function(e,r){return r in t?String(t[r]):\"\"})}(e.properties)},e.prototype.createBucket=function(t){return new Ps(t)},e.prototype.queryRadius=function(){return 0},e.prototype.queryIntersectsFeature=function(){return!1},e.prototype._setPaintOverrides=function(){for(var t=0,r=Is.paint.overridableProperties;t<r.length;t+=1){var n=r[t];if(e.hasPaintOverride(this.layout,n)){var a,i=this.paint.get(n),o=new zs(i),s=new br(o,i.property.specification);a=\"constant\"===i.value.kind||\"source\"===i.value.kind?new kr(\"source\",s):new Tr(\"composite\",s,i.value.zoomStops,i.value._interpolationType),this.paint._values[n]=new Fn(i.property,a,i.parameters)}}},e.prototype._handleOverridablePaintPropertyUpdate=function(t,r,n){return!(!this.layout||r.isDataDriven()||n.isDataDriven())&&e.hasPaintOverride(this.layout,t)},e.hasPaintOverride=function(t,e){var r=t.get(\"text-field\"),n=Is.paint.properties[e],a=!1,i=function(t){for(var e=0,r=t;e<r.length;e+=1){var i=r[e];if(n.overrides&&n.overrides.hasOverride(i))return void(a=!0)}};if(\"constant\"===r.value.kind&&r.value.value instanceof Jt)i(r.value.value.sections);else if(\"source\"===r.value.kind){var o=function(t){if(!a)if(t instanceof te&&Qt(t.value)===Vt){var e=t.value;i(e.sections)}else t instanceof ae?i(t.sections):t.eachChild(o)},s=r.value;s._styleExpression&&o(s._styleExpression.expression)}return a},e.hasPaintOverrides=function(t){for(var r=0,n=Is.paint.overridableProperties;r<n.length;r+=1){var a=n[r];if(e.hasPaintOverride(t,a))return!0}return!1},e}(Gn),Rs={paint:new Hn({\"background-color\":new Nn(Tt.paint_background[\"background-color\"]),\"background-pattern\":new Un(Tt.paint_background[\"background-pattern\"]),\"background-opacity\":new Nn(Tt.paint_background[\"background-opacity\"])})},Fs=function(t){function e(e){t.call(this,e,Rs)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}(Gn),Bs={paint:new Hn({\"raster-opacity\":new Nn(Tt.paint_raster[\"raster-opacity\"]),\"raster-hue-rotate\":new Nn(Tt.paint_raster[\"raster-hue-rotate\"]),\"raster-brightness-min\":new Nn(Tt.paint_raster[\"raster-brightness-min\"]),\"raster-brightness-max\":new Nn(Tt.paint_raster[\"raster-brightness-max\"]),\"raster-saturation\":new Nn(Tt.paint_raster[\"raster-saturation\"]),\"raster-contrast\":new Nn(Tt.paint_raster[\"raster-contrast\"]),\"raster-resampling\":new Nn(Tt.paint_raster[\"raster-resampling\"]),\"raster-fade-duration\":new Nn(Tt.paint_raster[\"raster-fade-duration\"])})},Ns=function(t){function e(e){t.call(this,e,Bs)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}(Gn),js=function(t){function e(e){t.call(this,e,{}),this.implementation=e}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.is3D=function(){return\"3d\"===this.implementation.renderingMode},e.prototype.hasOffscreenPass=function(){return void 0!==this.implementation.prerender},e.prototype.recalculate=function(){},e.prototype.updateTransitions=function(){},e.prototype.hasTransition=function(){},e.prototype.serialize=function(){},e.prototype.onAdd=function(t){this.implementation.onAdd&&this.implementation.onAdd(t,t.painter.context.gl)},e.prototype.onRemove=function(t){this.implementation.onRemove&&this.implementation.onRemove(t,t.painter.context.gl)},e}(Gn),Vs={circle:Ti,heatmap:zi,hillshade:Ri,fill:ko,\"fill-extrusion\":Vo,line:Qo,symbol:Ds,background:Fs,raster:Ns};function Us(t){for(var e=0,r=0,n=0,a=t;n<a.length;n+=1){var i=a[n];e+=i.w*i.h,r=Math.max(r,i.w)}t.sort(function(t,e){return e.h-t.h});for(var o=[{x:0,y:0,w:Math.max(Math.ceil(Math.sqrt(e/.95)),r),h:1/0}],s=0,l=0,c=0,u=t;c<u.length;c+=1)for(var h=u[c],f=o.length-1;f>=0;f--){var p=o[f];if(!(h.w>p.w||h.h>p.h)){if(h.x=p.x,h.y=p.y,l=Math.max(l,h.y+h.h),s=Math.max(s,h.x+h.w),h.w===p.w&&h.h===p.h){var d=o.pop();f<o.length&&(o[f]=d)}else h.h===p.h?(p.x+=h.w,p.w-=h.w):h.w===p.w?(p.y+=h.h,p.h-=h.h):(o.push({x:p.x+h.w,y:p.y,w:p.w-h.w,h:h.h}),p.y+=h.h,p.h-=h.h);break}}return{w:s,h:l,fill:e/(s*l)||0}}var qs=function(t,e){var r=e.pixelRatio,n=e.version;this.paddedRect=t,this.pixelRatio=r,this.version=n},Hs={tl:{configurable:!0},br:{configurable:!0},tlbr:{configurable:!0},displaySize:{configurable:!0}};Hs.tl.get=function(){return[this.paddedRect.x+1,this.paddedRect.y+1]},Hs.br.get=function(){return[this.paddedRect.x+this.paddedRect.w-1,this.paddedRect.y+this.paddedRect.h-1]},Hs.tlbr.get=function(){return this.tl.concat(this.br)},Hs.displaySize.get=function(){return[(this.paddedRect.w-2)/this.pixelRatio,(this.paddedRect.h-2)/this.pixelRatio]},Object.defineProperties(qs.prototype,Hs);var Gs=function(t,e){var r={},n={};this.haveRenderCallbacks=[];var a=[];this.addImages(t,r,a),this.addImages(e,n,a);var i=Us(a),o=i.w,s=i.h,l=new Pi({width:o||1,height:s||1});for(var c in t){var u=t[c],h=r[c].paddedRect;Pi.copy(u.data,l,{x:0,y:0},{x:h.x+1,y:h.y+1},u.data)}for(var f in e){var p=e[f],d=n[f].paddedRect,g=d.x+1,v=d.y+1,m=p.data.width,y=p.data.height;Pi.copy(p.data,l,{x:0,y:0},{x:g,y:v},p.data),Pi.copy(p.data,l,{x:0,y:y-1},{x:g,y:v-1},{width:m,height:1}),Pi.copy(p.data,l,{x:0,y:0},{x:g,y:v+y},{width:m,height:1}),Pi.copy(p.data,l,{x:m-1,y:0},{x:g-1,y:v},{width:1,height:y}),Pi.copy(p.data,l,{x:0,y:0},{x:g+m,y:v},{width:1,height:y})}this.image=l,this.iconPositions=r,this.patternPositions=n};Gs.prototype.addImages=function(t,e,r){for(var n in t){var a=t[n],i={x:0,y:0,w:a.data.width+2,h:a.data.height+2};r.push(i),e[n]=new qs(i,a),a.hasRenderCallback&&this.haveRenderCallbacks.push(n)}},Gs.prototype.patchUpdatedImages=function(t,e){for(var r in t.dispatchRenderCallbacks(this.haveRenderCallbacks),t.updatedImages)this.patchUpdatedImage(this.iconPositions[r],t.getImage(r),e),this.patchUpdatedImage(this.patternPositions[r],t.getImage(r),e)},Gs.prototype.patchUpdatedImage=function(t,e,r){if(t&&e&&t.version!==e.version){t.version=e.version;var n=t.tl,a=n[0],i=n[1];r.update(e.data,void 0,{x:a,y:i})}},pn(\"ImagePosition\",qs),pn(\"ImageAtlas\",Gs);var Ys=self.HTMLImageElement,Ws=self.HTMLCanvasElement,Xs=self.HTMLVideoElement,Zs=self.ImageData,Js=function(t,e,r,n){this.context=t,this.format=r,this.texture=t.gl.createTexture(),this.update(e,n)};Js.prototype.update=function(t,e,r){var n=t.width,a=t.height,i=!(this.size&&this.size[0]===n&&this.size[1]===a||r),o=this.context,s=o.gl;if(this.useMipmap=Boolean(e&&e.useMipmap),s.bindTexture(s.TEXTURE_2D,this.texture),o.pixelStoreUnpackFlipY.set(!1),o.pixelStoreUnpack.set(1),o.pixelStoreUnpackPremultiplyAlpha.set(this.format===s.RGBA&&(!e||!1!==e.premultiply)),i)this.size=[n,a],t instanceof Ys||t instanceof Ws||t instanceof Xs||t instanceof Zs?s.texImage2D(s.TEXTURE_2D,0,this.format,this.format,s.UNSIGNED_BYTE,t):s.texImage2D(s.TEXTURE_2D,0,this.format,n,a,0,this.format,s.UNSIGNED_BYTE,t.data);else{var l=r||{x:0,y:0},c=l.x,u=l.y;t instanceof Ys||t instanceof Ws||t instanceof Xs||t instanceof Zs?s.texSubImage2D(s.TEXTURE_2D,0,c,u,s.RGBA,s.UNSIGNED_BYTE,t):s.texSubImage2D(s.TEXTURE_2D,0,c,u,n,a,s.RGBA,s.UNSIGNED_BYTE,t.data)}this.useMipmap&&this.isSizePowerOfTwo()&&s.generateMipmap(s.TEXTURE_2D)},Js.prototype.bind=function(t,e,r){var n=this.context.gl;n.bindTexture(n.TEXTURE_2D,this.texture),r!==n.LINEAR_MIPMAP_NEAREST||this.isSizePowerOfTwo()||(r=n.LINEAR),t!==this.filter&&(n.texParameteri(n.TEXTURE_2D,n.TEXTURE_MAG_FILTER,t),n.texParameteri(n.TEXTURE_2D,n.TEXTURE_MIN_FILTER,r||t),this.filter=t),e!==this.wrap&&(n.texParameteri(n.TEXTURE_2D,n.TEXTURE_WRAP_S,e),n.texParameteri(n.TEXTURE_2D,n.TEXTURE_WRAP_T,e),this.wrap=e)},Js.prototype.isSizePowerOfTwo=function(){return this.size[0]===this.size[1]&&Math.log(this.size[0])/Math.LN2%1==0},Js.prototype.destroy=function(){this.context.gl.deleteTexture(this.texture),this.texture=null};var Ks=function(t,e,r,n,a){var i,o,s=8*a-n-1,l=(1<<s)-1,c=l>>1,u=-7,h=r?a-1:0,f=r?-1:1,p=t[e+h];for(h+=f,i=p&(1<<-u)-1,p>>=-u,u+=s;u>0;i=256*i+t[e+h],h+=f,u-=8);for(o=i&(1<<-u)-1,i>>=-u,u+=n;u>0;o=256*o+t[e+h],h+=f,u-=8);if(0===i)i=1-c;else{if(i===l)return o?NaN:1/0*(p?-1:1);o+=Math.pow(2,n),i-=c}return(p?-1:1)*o*Math.pow(2,i-n)},Qs=function(t,e,r,n,a,i){var o,s,l,c=8*i-a-1,u=(1<<c)-1,h=u>>1,f=23===a?Math.pow(2,-24)-Math.pow(2,-77):0,p=n?0:i-1,d=n?1:-1,g=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(s=isNaN(e)?1:0,o=u):(o=Math.floor(Math.log(e)/Math.LN2),e*(l=Math.pow(2,-o))<1&&(o--,l*=2),(e+=o+h>=1?f/l:f*Math.pow(2,1-h))*l>=2&&(o++,l/=2),o+h>=u?(s=0,o=u):o+h>=1?(s=(e*l-1)*Math.pow(2,a),o+=h):(s=e*Math.pow(2,h-1)*Math.pow(2,a),o=0));a>=8;t[r+p]=255&s,p+=d,s/=256,a-=8);for(o=o<<a|s,c+=a;c>0;t[r+p]=255&o,p+=d,o/=256,c-=8);t[r+p-d]|=128*g},$s=tl;function tl(t){this.buf=ArrayBuffer.isView&&ArrayBuffer.isView(t)?t:new Uint8Array(t||0),this.pos=0,this.type=0,this.length=this.buf.length}function el(t){return t.type===tl.Bytes?t.readVarint()+t.pos:t.pos+1}function rl(t,e,r){return r?4294967296*e+(t>>>0):4294967296*(e>>>0)+(t>>>0)}function nl(t,e,r){var n=e<=16383?1:e<=2097151?2:e<=268435455?3:Math.floor(Math.log(e)/(7*Math.LN2));r.realloc(n);for(var a=r.pos-1;a>=t;a--)r.buf[a+n]=r.buf[a]}function al(t,e){for(var r=0;r<t.length;r++)e.writeVarint(t[r])}function il(t,e){for(var r=0;r<t.length;r++)e.writeSVarint(t[r])}function ol(t,e){for(var r=0;r<t.length;r++)e.writeFloat(t[r])}function sl(t,e){for(var r=0;r<t.length;r++)e.writeDouble(t[r])}function ll(t,e){for(var r=0;r<t.length;r++)e.writeBoolean(t[r])}function cl(t,e){for(var r=0;r<t.length;r++)e.writeFixed32(t[r])}function ul(t,e){for(var r=0;r<t.length;r++)e.writeSFixed32(t[r])}function hl(t,e){for(var r=0;r<t.length;r++)e.writeFixed64(t[r])}function fl(t,e){for(var r=0;r<t.length;r++)e.writeSFixed64(t[r])}function pl(t,e){return(t[e]|t[e+1]<<8|t[e+2]<<16)+16777216*t[e+3]}function dl(t,e,r){t[r]=e,t[r+1]=e>>>8,t[r+2]=e>>>16,t[r+3]=e>>>24}function gl(t,e){return(t[e]|t[e+1]<<8|t[e+2]<<16)+(t[e+3]<<24)}tl.Varint=0,tl.Fixed64=1,tl.Bytes=2,tl.Fixed32=5,tl.prototype={destroy:function(){this.buf=null},readFields:function(t,e,r){for(r=r||this.length;this.pos<r;){var n=this.readVarint(),a=n>>3,i=this.pos;this.type=7&n,t(a,e,this),this.pos===i&&this.skip(n)}return e},readMessage:function(t,e){return this.readFields(t,e,this.readVarint()+this.pos)},readFixed32:function(){var t=pl(this.buf,this.pos);return this.pos+=4,t},readSFixed32:function(){var t=gl(this.buf,this.pos);return this.pos+=4,t},readFixed64:function(){var t=pl(this.buf,this.pos)+4294967296*pl(this.buf,this.pos+4);return this.pos+=8,t},readSFixed64:function(){var t=pl(this.buf,this.pos)+4294967296*gl(this.buf,this.pos+4);return this.pos+=8,t},readFloat:function(){var t=Ks(this.buf,this.pos,!0,23,4);return this.pos+=4,t},readDouble:function(){var t=Ks(this.buf,this.pos,!0,52,8);return this.pos+=8,t},readVarint:function(t){var e,r,n=this.buf;return e=127&(r=n[this.pos++]),r<128?e:(e|=(127&(r=n[this.pos++]))<<7,r<128?e:(e|=(127&(r=n[this.pos++]))<<14,r<128?e:(e|=(127&(r=n[this.pos++]))<<21,r<128?e:function(t,e,r){var n,a,i=r.buf;if(n=(112&(a=i[r.pos++]))>>4,a<128)return rl(t,n,e);if(n|=(127&(a=i[r.pos++]))<<3,a<128)return rl(t,n,e);if(n|=(127&(a=i[r.pos++]))<<10,a<128)return rl(t,n,e);if(n|=(127&(a=i[r.pos++]))<<17,a<128)return rl(t,n,e);if(n|=(127&(a=i[r.pos++]))<<24,a<128)return rl(t,n,e);if(n|=(1&(a=i[r.pos++]))<<31,a<128)return rl(t,n,e);throw new Error(\"Expected varint not more than 10 bytes\")}(e|=(15&(r=n[this.pos]))<<28,t,this))))},readVarint64:function(){return this.readVarint(!0)},readSVarint:function(){var t=this.readVarint();return t%2==1?(t+1)/-2:t/2},readBoolean:function(){return Boolean(this.readVarint())},readString:function(){var t=this.readVarint()+this.pos,e=function(t,e,r){for(var n=\"\",a=e;a<r;){var i,o,s,l=t[a],c=null,u=l>239?4:l>223?3:l>191?2:1;if(a+u>r)break;1===u?l<128&&(c=l):2===u?128==(192&(i=t[a+1]))&&(c=(31&l)<<6|63&i)<=127&&(c=null):3===u?(i=t[a+1],o=t[a+2],128==(192&i)&&128==(192&o)&&((c=(15&l)<<12|(63&i)<<6|63&o)<=2047||c>=55296&&c<=57343)&&(c=null)):4===u&&(i=t[a+1],o=t[a+2],s=t[a+3],128==(192&i)&&128==(192&o)&&128==(192&s)&&((c=(15&l)<<18|(63&i)<<12|(63&o)<<6|63&s)<=65535||c>=1114112)&&(c=null)),null===c?(c=65533,u=1):c>65535&&(c-=65536,n+=String.fromCharCode(c>>>10&1023|55296),c=56320|1023&c),n+=String.fromCharCode(c),a+=u}return n}(this.buf,this.pos,t);return this.pos=t,e},readBytes:function(){var t=this.readVarint()+this.pos,e=this.buf.subarray(this.pos,t);return this.pos=t,e},readPackedVarint:function(t,e){if(this.type!==tl.Bytes)return t.push(this.readVarint(e));var r=el(this);for(t=t||[];this.pos<r;)t.push(this.readVarint(e));return t},readPackedSVarint:function(t){if(this.type!==tl.Bytes)return t.push(this.readSVarint());var e=el(this);for(t=t||[];this.pos<e;)t.push(this.readSVarint());return t},readPackedBoolean:function(t){if(this.type!==tl.Bytes)return t.push(this.readBoolean());var e=el(this);for(t=t||[];this.pos<e;)t.push(this.readBoolean());return t},readPackedFloat:function(t){if(this.type!==tl.Bytes)return t.push(this.readFloat());var e=el(this);for(t=t||[];this.pos<e;)t.push(this.readFloat());return t},readPackedDouble:function(t){if(this.type!==tl.Bytes)return t.push(this.readDouble());var e=el(this);for(t=t||[];this.pos<e;)t.push(this.readDouble());return t},readPackedFixed32:function(t){if(this.type!==tl.Bytes)return t.push(this.readFixed32());var e=el(this);for(t=t||[];this.pos<e;)t.push(this.readFixed32());return t},readPackedSFixed32:function(t){if(this.type!==tl.Bytes)return t.push(this.readSFixed32());var e=el(this);for(t=t||[];this.pos<e;)t.push(this.readSFixed32());return t},readPackedFixed64:function(t){if(this.type!==tl.Bytes)return t.push(this.readFixed64());var e=el(this);for(t=t||[];this.pos<e;)t.push(this.readFixed64());return t},readPackedSFixed64:function(t){if(this.type!==tl.Bytes)return t.push(this.readSFixed64());var e=el(this);for(t=t||[];this.pos<e;)t.push(this.readSFixed64());return t},skip:function(t){var e=7&t;if(e===tl.Varint)for(;this.buf[this.pos++]>127;);else if(e===tl.Bytes)this.pos=this.readVarint()+this.pos;else if(e===tl.Fixed32)this.pos+=4;else{if(e!==tl.Fixed64)throw new Error(\"Unimplemented type: \"+e);this.pos+=8}},writeTag:function(t,e){this.writeVarint(t<<3|e)},realloc:function(t){for(var e=this.length||16;e<this.pos+t;)e*=2;if(e!==this.length){var r=new Uint8Array(e);r.set(this.buf),this.buf=r,this.length=e}},finish:function(){return this.length=this.pos,this.pos=0,this.buf.subarray(0,this.length)},writeFixed32:function(t){this.realloc(4),dl(this.buf,t,this.pos),this.pos+=4},writeSFixed32:function(t){this.realloc(4),dl(this.buf,t,this.pos),this.pos+=4},writeFixed64:function(t){this.realloc(8),dl(this.buf,-1&t,this.pos),dl(this.buf,Math.floor(t*(1/4294967296)),this.pos+4),this.pos+=8},writeSFixed64:function(t){this.realloc(8),dl(this.buf,-1&t,this.pos),dl(this.buf,Math.floor(t*(1/4294967296)),this.pos+4),this.pos+=8},writeVarint:function(t){(t=+t||0)>268435455||t<0?function(t,e){var r,n;if(t>=0?(r=t%4294967296|0,n=t/4294967296|0):(n=~(-t/4294967296),4294967295^(r=~(-t%4294967296))?r=r+1|0:(r=0,n=n+1|0)),t>=0x10000000000000000||t<-0x10000000000000000)throw new Error(\"Given varint doesn't fit into 10 bytes\");e.realloc(10),function(t,e,r){r.buf[r.pos++]=127&t|128,t>>>=7,r.buf[r.pos++]=127&t|128,t>>>=7,r.buf[r.pos++]=127&t|128,t>>>=7,r.buf[r.pos++]=127&t|128,t>>>=7,r.buf[r.pos]=127&t}(r,0,e),function(t,e){var r=(7&t)<<4;e.buf[e.pos++]|=r|((t>>>=3)?128:0),t&&(e.buf[e.pos++]=127&t|((t>>>=7)?128:0),t&&(e.buf[e.pos++]=127&t|((t>>>=7)?128:0),t&&(e.buf[e.pos++]=127&t|((t>>>=7)?128:0),t&&(e.buf[e.pos++]=127&t|((t>>>=7)?128:0),t&&(e.buf[e.pos++]=127&t)))))}(n,e)}(t,this):(this.realloc(4),this.buf[this.pos++]=127&t|(t>127?128:0),t<=127||(this.buf[this.pos++]=127&(t>>>=7)|(t>127?128:0),t<=127||(this.buf[this.pos++]=127&(t>>>=7)|(t>127?128:0),t<=127||(this.buf[this.pos++]=t>>>7&127))))},writeSVarint:function(t){this.writeVarint(t<0?2*-t-1:2*t)},writeBoolean:function(t){this.writeVarint(Boolean(t))},writeString:function(t){t=String(t),this.realloc(4*t.length),this.pos++;var e=this.pos;this.pos=function(t,e,r){for(var n,a,i=0;i<e.length;i++){if((n=e.charCodeAt(i))>55295&&n<57344){if(!a){n>56319||i+1===e.length?(t[r++]=239,t[r++]=191,t[r++]=189):a=n;continue}if(n<56320){t[r++]=239,t[r++]=191,t[r++]=189,a=n;continue}n=a-55296<<10|n-56320|65536,a=null}else a&&(t[r++]=239,t[r++]=191,t[r++]=189,a=null);n<128?t[r++]=n:(n<2048?t[r++]=n>>6|192:(n<65536?t[r++]=n>>12|224:(t[r++]=n>>18|240,t[r++]=n>>12&63|128),t[r++]=n>>6&63|128),t[r++]=63&n|128)}return r}(this.buf,t,this.pos);var r=this.pos-e;r>=128&&nl(e,r,this),this.pos=e-1,this.writeVarint(r),this.pos+=r},writeFloat:function(t){this.realloc(4),Qs(this.buf,t,this.pos,!0,23,4),this.pos+=4},writeDouble:function(t){this.realloc(8),Qs(this.buf,t,this.pos,!0,52,8),this.pos+=8},writeBytes:function(t){var e=t.length;this.writeVarint(e),this.realloc(e);for(var r=0;r<e;r++)this.buf[this.pos++]=t[r]},writeRawMessage:function(t,e){this.pos++;var r=this.pos;t(e,this);var n=this.pos-r;n>=128&&nl(r,n,this),this.pos=r-1,this.writeVarint(n),this.pos+=n},writeMessage:function(t,e,r){this.writeTag(t,tl.Bytes),this.writeRawMessage(e,r)},writePackedVarint:function(t,e){e.length&&this.writeMessage(t,al,e)},writePackedSVarint:function(t,e){e.length&&this.writeMessage(t,il,e)},writePackedBoolean:function(t,e){e.length&&this.writeMessage(t,ll,e)},writePackedFloat:function(t,e){e.length&&this.writeMessage(t,ol,e)},writePackedDouble:function(t,e){e.length&&this.writeMessage(t,sl,e)},writePackedFixed32:function(t,e){e.length&&this.writeMessage(t,cl,e)},writePackedSFixed32:function(t,e){e.length&&this.writeMessage(t,ul,e)},writePackedFixed64:function(t,e){e.length&&this.writeMessage(t,hl,e)},writePackedSFixed64:function(t,e){e.length&&this.writeMessage(t,fl,e)},writeBytesField:function(t,e){this.writeTag(t,tl.Bytes),this.writeBytes(e)},writeFixed32Field:function(t,e){this.writeTag(t,tl.Fixed32),this.writeFixed32(e)},writeSFixed32Field:function(t,e){this.writeTag(t,tl.Fixed32),this.writeSFixed32(e)},writeFixed64Field:function(t,e){this.writeTag(t,tl.Fixed64),this.writeFixed64(e)},writeSFixed64Field:function(t,e){this.writeTag(t,tl.Fixed64),this.writeSFixed64(e)},writeVarintField:function(t,e){this.writeTag(t,tl.Varint),this.writeVarint(e)},writeSVarintField:function(t,e){this.writeTag(t,tl.Varint),this.writeSVarint(e)},writeStringField:function(t,e){this.writeTag(t,tl.Bytes),this.writeString(e)},writeFloatField:function(t,e){this.writeTag(t,tl.Fixed32),this.writeFloat(e)},writeDoubleField:function(t,e){this.writeTag(t,tl.Fixed64),this.writeDouble(e)},writeBooleanField:function(t,e){this.writeVarintField(t,Boolean(e))}};var vl=3;function ml(t,e,r){1===t&&r.readMessage(yl,e)}function yl(t,e,r){if(3===t){var n=r.readMessage(xl,{}),a=n.id,i=n.bitmap,o=n.width,s=n.height,l=n.left,c=n.top,u=n.advance;e.push({id:a,bitmap:new Li({width:o+2*vl,height:s+2*vl},i),metrics:{width:o,height:s,left:l,top:c,advance:u}})}}function xl(t,e,r){1===t?e.id=r.readVarint():2===t?e.bitmap=r.readBytes():3===t?e.width=r.readVarint():4===t?e.height=r.readVarint():5===t?e.left=r.readSVarint():6===t?e.top=r.readSVarint():7===t&&(e.advance=r.readVarint())}var bl=vl,_l=function(t){var e=this;this._callback=t,this._triggered=!1,\"undefined\"!=typeof MessageChannel&&(this._channel=new MessageChannel,this._channel.port2.onmessage=function(){e._triggered=!1,e._callback()})};_l.prototype.trigger=function(){var t=this;this._triggered||(this._triggered=!0,this._channel?this._channel.port1.postMessage(!0):setTimeout(function(){t._triggered=!1,t._callback()},0))};var wl=function(t,e,r){this.target=t,this.parent=e,this.mapId=r,this.callbacks={},this.tasks={},this.taskQueue=[],this.cancelCallbacks={},v([\"receive\",\"process\"],this),this.invoker=new _l(this.process),this.target.addEventListener(\"message\",this.receive,!1)};function kl(t,e,r){var n=2*Math.PI*6378137/256/Math.pow(2,r);return[t*n-2*Math.PI*6378137/2,e*n-2*Math.PI*6378137/2]}wl.prototype.send=function(t,e,r,n){var a=this,i=Math.round(1e18*Math.random()).toString(36).substring(0,10);r&&(this.callbacks[i]=r);var o=[];return this.target.postMessage({id:i,type:t,hasCallback:!!r,targetMapId:n,sourceMapId:this.mapId,data:gn(e,o)},o),{cancel:function(){r&&delete a.callbacks[i],a.target.postMessage({id:i,type:\"<cancel>\",targetMapId:n,sourceMapId:a.mapId})}}},wl.prototype.receive=function(t){var e=t.data,r=e.id;if(r&&(!e.targetMapId||this.mapId===e.targetMapId))if(\"<cancel>\"===e.type){delete this.tasks[r];var n=this.cancelCallbacks[r];delete this.cancelCallbacks[r],n&&n()}else this.tasks[r]=e,this.taskQueue.push(r),this.invoker.trigger()},wl.prototype.process=function(){var t=this;if(this.taskQueue.length){var e=this.taskQueue.shift(),r=this.tasks[e];if(delete this.tasks[e],this.taskQueue.length&&this.invoker.trigger(),r)if(\"<response>\"===r.type){var n=this.callbacks[e];delete this.callbacks[e],n&&(r.error?n(vn(r.error)):n(null,vn(r.data)))}else{var a=!1,i=r.hasCallback?function(r,n){a=!0,delete t.cancelCallbacks[e];var i=[];t.target.postMessage({id:e,type:\"<response>\",sourceMapId:t.mapId,error:r?gn(r):null,data:gn(n,i)},i)}:function(t){a=!0},o=null,s=vn(r.data);if(this.parent[r.type])o=this.parent[r.type](r.sourceMapId,s,i);else if(this.parent.getWorkerSource){var l=r.type.split(\".\");o=this.parent.getWorkerSource(r.sourceMapId,l[0],s.source)[l[1]](s,i)}else i(new Error(\"Could not find function \"+r.type));!a&&o&&o.cancel&&(this.cancelCallbacks[e]=o.cancel)}}},wl.prototype.remove=function(){this.target.removeEventListener(\"message\",this.receive,!1)};var Tl=function(t,e){t&&(e?this.setSouthWest(t).setNorthEast(e):4===t.length?this.setSouthWest([t[0],t[1]]).setNorthEast([t[2],t[3]]):this.setSouthWest(t[0]).setNorthEast(t[1]))};Tl.prototype.setNorthEast=function(t){return this._ne=t instanceof Al?new Al(t.lng,t.lat):Al.convert(t),this},Tl.prototype.setSouthWest=function(t){return this._sw=t instanceof Al?new Al(t.lng,t.lat):Al.convert(t),this},Tl.prototype.extend=function(t){var e,r,n=this._sw,a=this._ne;if(t instanceof Al)e=t,r=t;else{if(!(t instanceof Tl))return Array.isArray(t)?t.every(Array.isArray)?this.extend(Tl.convert(t)):this.extend(Al.convert(t)):this;if(e=t._sw,r=t._ne,!e||!r)return this}return n||a?(n.lng=Math.min(e.lng,n.lng),n.lat=Math.min(e.lat,n.lat),a.lng=Math.max(r.lng,a.lng),a.lat=Math.max(r.lat,a.lat)):(this._sw=new Al(e.lng,e.lat),this._ne=new Al(r.lng,r.lat)),this},Tl.prototype.getCenter=function(){return new Al((this._sw.lng+this._ne.lng)/2,(this._sw.lat+this._ne.lat)/2)},Tl.prototype.getSouthWest=function(){return this._sw},Tl.prototype.getNorthEast=function(){return this._ne},Tl.prototype.getNorthWest=function(){return new Al(this.getWest(),this.getNorth())},Tl.prototype.getSouthEast=function(){return new Al(this.getEast(),this.getSouth())},Tl.prototype.getWest=function(){return this._sw.lng},Tl.prototype.getSouth=function(){return this._sw.lat},Tl.prototype.getEast=function(){return this._ne.lng},Tl.prototype.getNorth=function(){return this._ne.lat},Tl.prototype.toArray=function(){return[this._sw.toArray(),this._ne.toArray()]},Tl.prototype.toString=function(){return\"LngLatBounds(\"+this._sw.toString()+\", \"+this._ne.toString()+\")\"},Tl.prototype.isEmpty=function(){return!(this._sw&&this._ne)},Tl.convert=function(t){return!t||t instanceof Tl?t:new Tl(t)};var Al=function(t,e){if(isNaN(t)||isNaN(e))throw new Error(\"Invalid LngLat object: (\"+t+\", \"+e+\")\");if(this.lng=+t,this.lat=+e,this.lat>90||this.lat<-90)throw new Error(\"Invalid LngLat latitude value: must be between -90 and 90\")};Al.prototype.wrap=function(){return new Al(u(this.lng,-180,180),this.lat)},Al.prototype.toArray=function(){return[this.lng,this.lat]},Al.prototype.toString=function(){return\"LngLat(\"+this.lng+\", \"+this.lat+\")\"},Al.prototype.toBounds=function(t){void 0===t&&(t=0);var e=360*t/40075017,r=e/Math.cos(Math.PI/180*this.lat);return new Tl(new Al(this.lng-r,this.lat-e),new Al(this.lng+r,this.lat+e))},Al.convert=function(t){if(t instanceof Al)return t;if(Array.isArray(t)&&(2===t.length||3===t.length))return new Al(Number(t[0]),Number(t[1]));if(!Array.isArray(t)&&\"object\"==typeof t&&null!==t)return new Al(Number(\"lng\"in t?t.lng:t.lon),Number(t.lat));throw new Error(\"`LngLatLike` argument must be specified as a LngLat instance, an object {lng: <lng>, lat: <lat>}, an object {lon: <lng>, lat: <lat>}, or an array of [<lng>, <lat>]\")};var Ml=2*Math.PI*6378137;function Sl(t){return Ml*Math.cos(t*Math.PI/180)}function El(t){return(180+t)/360}function Cl(t){return(180-180/Math.PI*Math.log(Math.tan(Math.PI/4+t*Math.PI/360)))/360}function Ll(t,e){return t/Sl(e)}function Pl(t){var e=180-360*t;return 360/Math.PI*Math.atan(Math.exp(e*Math.PI/180))-90}var Ol=function(t,e,r){void 0===r&&(r=0),this.x=+t,this.y=+e,this.z=+r};Ol.fromLngLat=function(t,e){void 0===e&&(e=0);var r=Al.convert(t);return new Ol(El(r.lng),Cl(r.lat),Ll(e,r.lat))},Ol.prototype.toLngLat=function(){return new Al(360*this.x-180,Pl(this.y))},Ol.prototype.toAltitude=function(){return this.z*Sl(Pl(this.y))},Ol.prototype.meterInMercatorCoordinateUnits=function(){return 1/Ml*(t=Pl(this.y),1/Math.cos(t*Math.PI/180));var t};var Il=function(t,e,r){this.z=t,this.x=e,this.y=r,this.key=Rl(0,t,e,r)};Il.prototype.equals=function(t){return this.z===t.z&&this.x===t.x&&this.y===t.y},Il.prototype.url=function(t,e){var r,n,a,i,o,s=(r=this.x,n=this.y,a=this.z,i=kl(256*r,256*(n=Math.pow(2,a)-n-1),a),o=kl(256*(r+1),256*(n+1),a),i[0]+\",\"+i[1]+\",\"+o[0]+\",\"+o[1]),l=function(t,e,r){for(var n,a=\"\",i=t;i>0;i--)a+=(e&(n=1<<i-1)?1:0)+(r&n?2:0);return a}(this.z,this.x,this.y);return t[(this.x+this.y)%t.length].replace(\"{prefix}\",(this.x%16).toString(16)+(this.y%16).toString(16)).replace(\"{z}\",String(this.z)).replace(\"{x}\",String(this.x)).replace(\"{y}\",String(\"tms\"===e?Math.pow(2,this.z)-this.y-1:this.y)).replace(\"{quadkey}\",l).replace(\"{bbox-epsg-3857}\",s)},Il.prototype.getTilePoint=function(t){var e=Math.pow(2,this.z);return new a((t.x*e-this.x)*ti,(t.y*e-this.y)*ti)};var zl=function(t,e){this.wrap=t,this.canonical=e,this.key=Rl(t,e.z,e.x,e.y)},Dl=function(t,e,r,n,a){this.overscaledZ=t,this.wrap=e,this.canonical=new Il(r,+n,+a),this.key=Rl(e,t,n,a)};function Rl(t,e,r,n){(t*=2)<0&&(t=-1*t-1);var a=1<<e;return 32*(a*a*t+a*n+r)+e}Dl.prototype.equals=function(t){return this.overscaledZ===t.overscaledZ&&this.wrap===t.wrap&&this.canonical.equals(t.canonical)},Dl.prototype.scaledTo=function(t){var e=this.canonical.z-t;return t>this.canonical.z?new Dl(t,this.wrap,this.canonical.z,this.canonical.x,this.canonical.y):new Dl(t,this.wrap,t,this.canonical.x>>e,this.canonical.y>>e)},Dl.prototype.isChildOf=function(t){if(t.wrap!==this.wrap)return!1;var e=this.canonical.z-t.canonical.z;return 0===t.overscaledZ||t.overscaledZ<this.overscaledZ&&t.canonical.x===this.canonical.x>>e&&t.canonical.y===this.canonical.y>>e},Dl.prototype.children=function(t){if(this.overscaledZ>=t)return[new Dl(this.overscaledZ+1,this.wrap,this.canonical.z,this.canonical.x,this.canonical.y)];var e=this.canonical.z+1,r=2*this.canonical.x,n=2*this.canonical.y;return[new Dl(e,this.wrap,e,r,n),new Dl(e,this.wrap,e,r+1,n),new Dl(e,this.wrap,e,r,n+1),new Dl(e,this.wrap,e,r+1,n+1)]},Dl.prototype.isLessThan=function(t){return this.wrap<t.wrap||!(this.wrap>t.wrap)&&(this.overscaledZ<t.overscaledZ||!(this.overscaledZ>t.overscaledZ)&&(this.canonical.x<t.canonical.x||!(this.canonical.x>t.canonical.x)&&this.canonical.y<t.canonical.y))},Dl.prototype.wrapped=function(){return new Dl(this.overscaledZ,0,this.canonical.z,this.canonical.x,this.canonical.y)},Dl.prototype.unwrapTo=function(t){return new Dl(this.overscaledZ,t,this.canonical.z,this.canonical.x,this.canonical.y)},Dl.prototype.overscaleFactor=function(){return Math.pow(2,this.overscaledZ-this.canonical.z)},Dl.prototype.toUnwrapped=function(){return new zl(this.wrap,this.canonical)},Dl.prototype.toString=function(){return this.overscaledZ+\"/\"+this.canonical.x+\"/\"+this.canonical.y},Dl.prototype.getTilePoint=function(t){return this.canonical.getTilePoint(new Ol(t.x-this.wrap,t.y))},pn(\"CanonicalTileID\",Il),pn(\"OverscaledTileID\",Dl,{omit:[\"posMatrix\"]});var Fl=function(t,e,r){if(this.uid=t,e.height!==e.width)throw new RangeError(\"DEM tiles must be square\");if(r&&\"mapbox\"!==r&&\"terrarium\"!==r)return w('\"'+r+'\" is not a valid encoding type. Valid types include \"mapbox\" and \"terrarium\".');var n=this.dim=e.height;this.stride=this.dim+2,this.data=new Int32Array(this.stride*this.stride);for(var a=e.data,i=\"terrarium\"===r?this._unpackTerrarium:this._unpackMapbox,o=0;o<n;o++)for(var s=0;s<n;s++){var l=4*(o*n+s);this.set(s,o,i(a[l],a[l+1],a[l+2]))}for(var c=0;c<n;c++)this.set(-1,c,this.get(0,c)),this.set(n,c,this.get(n-1,c)),this.set(c,-1,this.get(c,0)),this.set(c,n,this.get(c,n-1));this.set(-1,-1,this.get(0,0)),this.set(n,-1,this.get(n-1,0)),this.set(-1,n,this.get(0,n-1)),this.set(n,n,this.get(n-1,n-1))};Fl.prototype.set=function(t,e,r){this.data[this._idx(t,e)]=r+65536},Fl.prototype.get=function(t,e){return this.data[this._idx(t,e)]-65536},Fl.prototype._idx=function(t,e){if(t<-1||t>=this.dim+1||e<-1||e>=this.dim+1)throw new RangeError(\"out of range source coordinates for DEM data\");return(e+1)*this.stride+(t+1)},Fl.prototype._unpackMapbox=function(t,e,r){return(256*t*256+256*e+r)/10-1e4},Fl.prototype._unpackTerrarium=function(t,e,r){return 256*t+e+r/256-32768},Fl.prototype.getPixels=function(){return new Pi({width:this.stride,height:this.stride},new Uint8Array(this.data.buffer))},Fl.prototype.backfillBorder=function(t,e,r){if(this.dim!==t.dim)throw new Error(\"dem dimension mismatch\");var n=e*this.dim,a=e*this.dim+this.dim,i=r*this.dim,o=r*this.dim+this.dim;switch(e){case-1:n=a-1;break;case 1:a=n+1}switch(r){case-1:i=o-1;break;case 1:o=i+1}for(var s=-e*this.dim,l=-r*this.dim,c=i;c<o;c++)for(var u=n;u<a;u++)this.set(u,c,t.get(u+s,c+l))},pn(\"DEMData\",Fl);var Bl=Zn([{name:\"a_pos\",type:\"Int16\",components:2},{name:\"a_texture_pos\",type:\"Int16\",components:2}]),Nl=function(t){this._stringToNumber={},this._numberToString=[];for(var e=0;e<t.length;e++){var r=t[e];this._stringToNumber[r]=e,this._numberToString[e]=r}};Nl.prototype.encode=function(t){return this._stringToNumber[t]},Nl.prototype.decode=function(t){return this._numberToString[t]};var jl=function(t,e,r,n){this.type=\"Feature\",this._vectorTileFeature=t,t._z=e,t._x=r,t._y=n,this.properties=t.properties,null!=t.id&&(this.id=t.id)},Vl={geometry:{configurable:!0}};Vl.geometry.get=function(){return void 0===this._geometry&&(this._geometry=this._vectorTileFeature.toGeoJSON(this._vectorTileFeature._x,this._vectorTileFeature._y,this._vectorTileFeature._z).geometry),this._geometry},Vl.geometry.set=function(t){this._geometry=t},jl.prototype.toJSON=function(){var t={geometry:this.geometry};for(var e in this)\"_geometry\"!==e&&\"_vectorTileFeature\"!==e&&(t[e]=this[e]);return t},Object.defineProperties(jl.prototype,Vl);var Ul=function(){this.state={},this.stateChanges={},this.deletedStates={}};Ul.prototype.updateState=function(t,e,r){var n=String(e);if(this.stateChanges[t]=this.stateChanges[t]||{},this.stateChanges[t][n]=this.stateChanges[t][n]||{},h(this.stateChanges[t][n],r),null===this.deletedStates[t])for(var a in this.deletedStates[t]={},this.state[t])a!==n&&(this.deletedStates[t][a]=null);else if(this.deletedStates[t]&&null===this.deletedStates[t][n])for(var i in this.deletedStates[t][n]={},this.state[t][n])r[i]||(this.deletedStates[t][n][i]=null);else for(var o in r)this.deletedStates[t]&&this.deletedStates[t][n]&&null===this.deletedStates[t][n][o]&&delete this.deletedStates[t][n][o]},Ul.prototype.removeFeatureState=function(t,e,r){if(null!==this.deletedStates[t]){var n=String(e);if(this.deletedStates[t]=this.deletedStates[t]||{},r&&void 0!==e&&e>=0)null!==this.deletedStates[t][n]&&(this.deletedStates[t][n]=this.deletedStates[t][n]||{},this.deletedStates[t][n][r]=null);else if(void 0!==e&&e>=0)if(this.stateChanges[t]&&this.stateChanges[t][n])for(r in this.deletedStates[t][n]={},this.stateChanges[t][n])this.deletedStates[t][n][r]=null;else this.deletedStates[t][n]=null;else this.deletedStates[t]=null}},Ul.prototype.getState=function(t,e){var r=String(e),n=this.state[t]||{},a=this.stateChanges[t]||{},i=h({},n[r],a[r]);if(null===this.deletedStates[t])return{};if(this.deletedStates[t]){var o=this.deletedStates[t][e];if(null===o)return{};for(var s in o)delete i[s]}return i},Ul.prototype.initializeTileState=function(t,e){t.setFeatureState(this.state,e)},Ul.prototype.coalesceChanges=function(t,e){var r={};for(var n in this.stateChanges){this.state[n]=this.state[n]||{};var a={};for(var i in this.stateChanges[n])this.state[n][i]||(this.state[n][i]={}),h(this.state[n][i],this.stateChanges[n][i]),a[i]=this.state[n][i];r[n]=a}for(var o in this.deletedStates){this.state[o]=this.state[o]||{};var s={};if(null===this.deletedStates[o])for(var l in this.state[o])s[l]={},this.state[o][l]={};else for(var c in this.deletedStates[o]){if(null===this.deletedStates[o][c])this.state[o][c]={};else for(var u=0,f=Object.keys(this.deletedStates[o][c]);u<f.length;u+=1){var p=f[u];delete this.state[o][c][p]}s[c]=this.state[o][c]}r[o]=r[o]||{},h(r[o],s)}if(this.stateChanges={},this.deletedStates={},0!==Object.keys(r).length)for(var d in t)t[d].setFeatureState(r,e)};var ql=function(t,e,r){this.tileID=t,this.x=t.canonical.x,this.y=t.canonical.y,this.z=t.canonical.z,this.grid=e||new ln(ti,16,0),this.grid3D=new ln(ti,16,0),this.featureIndexArray=r||new Ca};function Hl(t){for(var e=1/0,r=1/0,n=-1/0,a=-1/0,i=0,o=t;i<o.length;i+=1){var s=o[i];e=Math.min(e,s.x),r=Math.min(r,s.y),n=Math.max(n,s.x),a=Math.max(a,s.y)}return{minX:e,minY:r,maxX:n,maxY:a}}function Gl(t,e){return e-t}ql.prototype.insert=function(t,e,r,n,a,i){var o=this.featureIndexArray.length;this.featureIndexArray.emplaceBack(r,n,a);for(var s=i?this.grid3D:this.grid,l=0;l<e.length;l++){for(var c=e[l],u=[1/0,1/0,-1/0,-1/0],h=0;h<c.length;h++){var f=c[h];u[0]=Math.min(u[0],f.x),u[1]=Math.min(u[1],f.y),u[2]=Math.max(u[2],f.x),u[3]=Math.max(u[3],f.y)}u[0]<ti&&u[1]<ti&&u[2]>=0&&u[3]>=0&&s.insert(o,u[0],u[1],u[2],u[3])}},ql.prototype.loadVTLayers=function(){return this.vtLayers||(this.vtLayers=new Io.VectorTile(new $s(this.rawTileData)).layers,this.sourceLayerCoder=new Nl(this.vtLayers?Object.keys(this.vtLayers).sort():[\"_geojsonTileLayer\"])),this.vtLayers},ql.prototype.query=function(t,e,r){var n=this;this.loadVTLayers();for(var i=t.params||{},o=ti/t.tileSize/t.scale,s=Dr(i.filter),l=t.queryGeometry,c=t.queryPadding*o,u=Hl(l),h=this.grid.query(u.minX-c,u.minY-c,u.maxX+c,u.maxY+c),f=Hl(t.cameraQueryGeometry),p=0,d=this.grid3D.query(f.minX-c,f.minY-c,f.maxX+c,f.maxY+c,function(e,r,n,i){return function(t,e,r,n,i){for(var o=0,s=t;o<s.length;o+=1){var l=s[o];if(e<=l.x&&r<=l.y&&n>=l.x&&i>=l.y)return!0}var c=[new a(e,r),new a(e,i),new a(n,i),new a(n,r)];if(t.length>2)for(var u=0,h=c;u<h.length;u+=1)if(di(t,h[u]))return!0;for(var f=0;f<t.length-1;f++)if(gi(t[f],t[f+1],c))return!0;return!1}(t.cameraQueryGeometry,e-c,r-c,n+c,i+c)});p<d.length;p+=1){var g=d[p];h.push(g)}h.sort(Gl);for(var v,m={},y=function(a){var c=h[a];if(c!==v){v=c;var u=n.featureIndexArray.get(c),f=null;n.loadMatchingFeature(m,u.bucketIndex,u.sourceLayerIndex,u.featureIndex,s,i.layers,e,function(e,a){f||(f=ri(e));var i={};return e.id&&(i=r.getState(a.sourceLayer||\"_geojsonTileLayer\",e.id)),a.queryIntersectsFeature(l,e,i,f,n.z,t.transform,o,t.pixelPosMatrix)})}},x=0;x<h.length;x++)y(x);return m},ql.prototype.loadMatchingFeature=function(t,e,r,n,a,i,o,s){var l=this.bucketLayerIDs[e];if(!i||function(t,e){for(var r=0;r<t.length;r++)if(e.indexOf(t[r])>=0)return!0;return!1}(i,l)){var c=this.sourceLayerCoder.decode(r),u=this.vtLayers[c].feature(n);if(a(new Ln(this.tileID.overscaledZ),u))for(var h=0;h<l.length;h++){var f=l[h];if(!(i&&i.indexOf(f)<0)){var p=o[f];if(p){var d=!s||s(u,p);if(d){var g=new jl(u,this.z,this.x,this.y);g.layer=p.serialize();var v=t[f];void 0===v&&(v=t[f]=[]),v.push({featureIndex:n,feature:g,intersectionZ:d})}}}}}},ql.prototype.lookupSymbolFeatures=function(t,e,r,n,a,i){var o={};this.loadVTLayers();for(var s=Dr(n),l=0,c=t;l<c.length;l+=1){var u=c[l];this.loadMatchingFeature(o,e,r,u,s,a,i)}return o},ql.prototype.hasLayer=function(t){for(var e=0,r=this.bucketLayerIDs;e<r.length;e+=1)for(var n=0,a=r[e];n<a.length;n+=1)if(t===a[n])return!0;return!1},pn(\"FeatureIndex\",ql,{omit:[\"rawTileData\",\"sourceLayerCoder\"]});var Yl=function(t,e){this.tileID=t,this.uid=p(),this.uses=0,this.tileSize=e,this.buckets={},this.expirationTime=null,this.queryPadding=0,this.hasSymbolBuckets=!1,this.expiredRequestCount=0,this.state=\"loading\"};function Wl(t,e,r,n,a){if(void 0===e.segment)return!0;for(var i=e,o=e.segment+1,s=0;s>-r/2;){if(--o<0)return!1;s-=t[o].dist(i),i=t[o]}s+=t[o].dist(t[o+1]),o++;for(var l=[],c=0;s<r/2;){var u=t[o-1],h=t[o],f=t[o+1];if(!f)return!1;var p=u.angleTo(h)-h.angleTo(f);for(p=Math.abs((p+3*Math.PI)%(2*Math.PI)-Math.PI),l.push({distance:s,angleDelta:p}),c+=p;s-l[0].distance>n;)c-=l.shift().angleDelta;if(c>a)return!1;o++,s+=h.dist(f)}return!0}function Xl(t){for(var e=0,r=0;r<t.length-1;r++)e+=t[r].dist(t[r+1]);return e}function Zl(t,e,r){return t?.6*e*r:0}function Jl(t,e){return Math.max(t?t.right-t.left:0,e?e.right-e.left:0)}function Kl(t,e,r,n,a,i){for(var o=Zl(r,a,i),s=Jl(r,n)*i,l=0,c=Xl(t)/2,u=0;u<t.length-1;u++){var h=t[u],f=t[u+1],p=h.dist(f);if(l+p>c){var d=(c-l)/p,g=ye(h.x,f.x,d),v=ye(h.y,f.y,d),m=new xs(g,v,f.angleTo(h),u);return m._round(),!o||Wl(t,m,s,o,e)?m:void 0}l+=p}}function Ql(t,e,r,n,a,i,o,s,l){var c=Zl(n,i,o),u=Jl(n,a),h=u*o,f=0===t[0].x||t[0].x===l||0===t[0].y||t[0].y===l;return e-h<e/4&&(e=h+e/4),function t(e,r,n,a,i,o,s,l,c){for(var u=o/2,h=Xl(e),f=0,p=r-n,d=[],g=0;g<e.length-1;g++){for(var v=e[g],m=e[g+1],y=v.dist(m),x=m.angleTo(v);p+n<f+y;){var b=((p+=n)-f)/y,_=ye(v.x,m.x,b),w=ye(v.y,m.y,b);if(_>=0&&_<c&&w>=0&&w<c&&p-u>=0&&p+u<=h){var k=new xs(_,w,x,g);k._round(),a&&!Wl(e,k,o,a,i)||d.push(k)}}f+=y}return l||d.length||s||(d=t(e,f/2,n,a,i,o,s,!0,c)),d}(t,f?e/2*s%e:(u/2+2*i)*o*s%e,e,c,r,h,f,!1,l)}Yl.prototype.registerFadeDuration=function(t){var e=t+this.timeAdded;e<z.now()||this.fadeEndTime&&e<this.fadeEndTime||(this.fadeEndTime=e)},Yl.prototype.wasRequested=function(){return\"errored\"===this.state||\"loaded\"===this.state||\"reloading\"===this.state},Yl.prototype.loadVectorData=function(t,e,r){if(this.hasData()&&this.unloadVectorData(),this.state=\"loaded\",t){for(var n in t.featureIndex&&(this.latestFeatureIndex=t.featureIndex,t.rawTileData?(this.latestRawTileData=t.rawTileData,this.latestFeatureIndex.rawTileData=t.rawTileData):this.latestRawTileData&&(this.latestFeatureIndex.rawTileData=this.latestRawTileData)),this.collisionBoxArray=t.collisionBoxArray,this.buckets=function(t,e){var r={};if(!e)return r;for(var n=function(){var t=i[a],n=t.layerIds.map(function(t){return e.getLayer(t)}).filter(Boolean);if(0!==n.length){t.layers=n,t.stateDependentLayerIds&&(t.stateDependentLayers=t.stateDependentLayerIds.map(function(t){return n.filter(function(e){return e.id===t})[0]}));for(var o=0,s=n;o<s.length;o+=1){var l=s[o];r[l.id]=t}}},a=0,i=t;a<i.length;a+=1)n();return r}(t.buckets,e.style),this.hasSymbolBuckets=!1,this.buckets){var a=this.buckets[n];if(a instanceof Ps){if(this.hasSymbolBuckets=!0,!r)break;a.justReloaded=!0}}for(var i in this.queryPadding=0,this.buckets){var o=this.buckets[i];this.queryPadding=Math.max(this.queryPadding,e.style.getLayer(i).queryRadius(o))}t.imageAtlas&&(this.imageAtlas=t.imageAtlas),t.glyphAtlasImage&&(this.glyphAtlasImage=t.glyphAtlasImage)}else this.collisionBoxArray=new xa},Yl.prototype.unloadVectorData=function(){for(var t in this.buckets)this.buckets[t].destroy();this.buckets={},this.imageAtlasTexture&&this.imageAtlasTexture.destroy(),this.imageAtlas&&(this.imageAtlas=null),this.glyphAtlasTexture&&this.glyphAtlasTexture.destroy(),this.latestFeatureIndex=null,this.state=\"unloaded\"},Yl.prototype.unloadDEMData=function(){this.dem=null,this.neighboringTiles=null,this.state=\"unloaded\"},Yl.prototype.getBucket=function(t){return this.buckets[t.id]},Yl.prototype.upload=function(t){for(var e in this.buckets){var r=this.buckets[e];r.uploadPending()&&r.upload(t)}var n=t.gl;this.imageAtlas&&!this.imageAtlas.uploaded&&(this.imageAtlasTexture=new Js(t,this.imageAtlas.image,n.RGBA),this.imageAtlas.uploaded=!0),this.glyphAtlasImage&&(this.glyphAtlasTexture=new Js(t,this.glyphAtlasImage,n.ALPHA),this.glyphAtlasImage=null)},Yl.prototype.prepare=function(t){this.imageAtlas&&this.imageAtlas.patchUpdatedImages(t,this.imageAtlasTexture)},Yl.prototype.queryRenderedFeatures=function(t,e,r,n,a,i,o,s,l){return this.latestFeatureIndex&&this.latestFeatureIndex.rawTileData?this.latestFeatureIndex.query({queryGeometry:r,cameraQueryGeometry:n,scale:a,tileSize:this.tileSize,pixelPosMatrix:l,transform:o,params:i,queryPadding:this.queryPadding*s},t,e):{}},Yl.prototype.querySourceFeatures=function(t,e){if(this.latestFeatureIndex&&this.latestFeatureIndex.rawTileData){var r=this.latestFeatureIndex.loadVTLayers(),n=e?e.sourceLayer:\"\",a=r._geojsonTileLayer||r[n];if(a)for(var i=Dr(e&&e.filter),o=this.tileID.canonical,s=o.z,l=o.x,c=o.y,u={z:s,x:l,y:c},h=0;h<a.length;h++){var f=a.feature(h);if(i(new Ln(this.tileID.overscaledZ),f)){var p=new jl(f,s,l,c);p.tile=u,t.push(p)}}}},Yl.prototype.clearMask=function(){this.segments&&(this.segments.destroy(),delete this.segments),this.maskedBoundsBuffer&&(this.maskedBoundsBuffer.destroy(),delete this.maskedBoundsBuffer),this.maskedIndexBuffer&&(this.maskedIndexBuffer.destroy(),delete this.maskedIndexBuffer)},Yl.prototype.setMask=function(t,e){if(!o(this.mask,t)&&(this.mask=t,this.clearMask(),!o(t,{0:!0}))){var r=new Qn,n=new pa;this.segments=new Pa,this.segments.prepareSegment(0,r,n);for(var i=Object.keys(t),s=0;s<i.length;s++){var l=t[+i[s]],c=ti>>l.z,u=new a(l.x*c,l.y*c),h=new a(u.x+c,u.y+c),f=this.segments.prepareSegment(4,r,n);r.emplaceBack(u.x,u.y,u.x,u.y),r.emplaceBack(h.x,u.y,h.x,u.y),r.emplaceBack(u.x,h.y,u.x,h.y),r.emplaceBack(h.x,h.y,h.x,h.y);var p=f.vertexLength;n.emplaceBack(p,p+1,p+2),n.emplaceBack(p+1,p+2,p+3),f.vertexLength+=4,f.primitiveLength+=2}this.maskedBoundsBuffer=e.createVertexBuffer(r,Bl.members),this.maskedIndexBuffer=e.createIndexBuffer(n)}},Yl.prototype.hasData=function(){return\"loaded\"===this.state||\"reloading\"===this.state||\"expired\"===this.state},Yl.prototype.patternsLoaded=function(){return this.imageAtlas&&!!Object.keys(this.imageAtlas.patternPositions).length},Yl.prototype.setExpiryData=function(t){var e=this.expirationTime;if(t.cacheControl){var r=A(t.cacheControl);r[\"max-age\"]&&(this.expirationTime=Date.now()+1e3*r[\"max-age\"])}else t.expires&&(this.expirationTime=new Date(t.expires).getTime());if(this.expirationTime){var n=Date.now(),a=!1;if(this.expirationTime>n)a=!1;else if(e)if(this.expirationTime<e)a=!0;else{var i=this.expirationTime-e;i?this.expirationTime=n+Math.max(i,3e4):a=!0}else a=!0;a?(this.expiredRequestCount++,this.state=\"expired\"):this.expiredRequestCount=0}},Yl.prototype.getExpiryTimeout=function(){if(this.expirationTime)return this.expiredRequestCount?1e3*(1<<Math.min(this.expiredRequestCount-1,31)):Math.min(this.expirationTime-(new Date).getTime(),Math.pow(2,31)-1)},Yl.prototype.setFeatureState=function(t,e){if(this.latestFeatureIndex&&this.latestFeatureIndex.rawTileData&&0!==Object.keys(t).length){var r=this.latestFeatureIndex.loadVTLayers();for(var n in this.buckets){var a=this.buckets[n],i=a.layers[0].sourceLayer||\"_geojsonTileLayer\",o=r[i],s=t[i];o&&s&&0!==Object.keys(s).length&&(a.update(s,o,this.imageAtlas&&this.imageAtlas.patternPositions||{}),e&&e.style&&(this.queryPadding=Math.max(this.queryPadding,e.style.getLayer(n).queryRadius(a))))}}},Yl.prototype.holdingForFade=function(){return void 0!==this.symbolFadeHoldUntil},Yl.prototype.symbolFadeFinished=function(){return!this.symbolFadeHoldUntil||this.symbolFadeHoldUntil<z.now()},Yl.prototype.clearFadeHold=function(){this.symbolFadeHoldUntil=void 0},Yl.prototype.setHoldDuration=function(t){this.symbolFadeHoldUntil=z.now()+t};var $l=function(t,e,r,n,i,o,s,l,c,u,h,f){var p=s.top*l-c,d=s.bottom*l+c,g=s.left*l-c,v=s.right*l+c;if(this.boxStartIndex=t.length,u){var m=d-p,y=v-g;m>0&&(m=Math.max(10*l,m),this._addLineCollisionCircles(t,e,r,r.segment,y,m,n,i,o,h))}else{if(f){var x=new a(g,p),b=new a(v,p),_=new a(g,d),w=new a(v,d),k=f*Math.PI/180;x._rotate(k),b._rotate(k),_._rotate(k),w._rotate(k),g=Math.min(x.x,b.x,_.x,w.x),v=Math.max(x.x,b.x,_.x,w.x),p=Math.min(x.y,b.y,_.y,w.y),d=Math.max(x.y,b.y,_.y,w.y)}t.emplaceBack(r.x,r.y,g,p,v,d,n,i,o,0,0)}this.boxEndIndex=t.length};$l.prototype._addLineCollisionCircles=function(t,e,r,n,a,i,o,s,l,c){var u=i/2,h=Math.floor(a/u)||1,f=1+.4*Math.log(c)/Math.LN2,p=Math.floor(h*f/2),d=-i/2,g=r,v=n+1,m=d,y=-a/2,x=y-a/4;do{if(--v<0){if(m>y)return;v=0;break}m-=e[v].dist(g),g=e[v]}while(m>x);for(var b=e[v].dist(e[v+1]),_=-p;_<h+p;_++){var w=_*u,k=y+w;if(w<0&&(k+=w),w>a&&(k+=w-a),!(k<m)){for(;m+b<k;){if(m+=b,++v+1>=e.length)return;b=e[v].dist(e[v+1])}var T=k-m,A=e[v],M=e[v+1].sub(A)._unit()._mult(T)._add(A)._round(),S=Math.abs(k-d)<u?0:.8*(k-d);t.emplaceBack(M.x,M.y,-i/2,-i/2,i/2,i/2,o,s,l,i/2,S)}}};var tc=function(t,e){if(void 0===t&&(t=[]),void 0===e&&(e=ec),this.data=t,this.length=this.data.length,this.compare=e,this.length>0)for(var r=(this.length>>1)-1;r>=0;r--)this._down(r)};function ec(t,e){return t<e?-1:t>e?1:0}function rc(t,e,r){void 0===e&&(e=1),void 0===r&&(r=!1);for(var n=1/0,i=1/0,o=-1/0,s=-1/0,l=t[0],c=0;c<l.length;c++){var u=l[c];(!c||u.x<n)&&(n=u.x),(!c||u.y<i)&&(i=u.y),(!c||u.x>o)&&(o=u.x),(!c||u.y>s)&&(s=u.y)}var h=o-n,f=s-i,p=Math.min(h,f),d=p/2,g=new tc([],nc);if(0===p)return new a(n,i);for(var v=n;v<o;v+=p)for(var m=i;m<s;m+=p)g.push(new ac(v+d,m+d,d,t));for(var y=function(t){for(var e=0,r=0,n=0,a=t[0],i=0,o=a.length,s=o-1;i<o;s=i++){var l=a[i],c=a[s],u=l.x*c.y-c.x*l.y;r+=(l.x+c.x)*u,n+=(l.y+c.y)*u,e+=3*u}return new ac(r/e,n/e,0,t)}(t),x=g.length;g.length;){var b=g.pop();(b.d>y.d||!y.d)&&(y=b,r&&console.log(\"found best %d after %d probes\",Math.round(1e4*b.d)/1e4,x)),b.max-y.d<=e||(d=b.h/2,g.push(new ac(b.p.x-d,b.p.y-d,d,t)),g.push(new ac(b.p.x+d,b.p.y-d,d,t)),g.push(new ac(b.p.x-d,b.p.y+d,d,t)),g.push(new ac(b.p.x+d,b.p.y+d,d,t)),x+=4)}return r&&(console.log(\"num probes: \"+x),console.log(\"best distance: \"+y.d)),y.p}function nc(t,e){return e.max-t.max}function ac(t,e,r,n){this.p=new a(t,e),this.h=r,this.d=function(t,e){for(var r=!1,n=1/0,a=0;a<e.length;a++)for(var i=e[a],o=0,s=i.length,l=s-1;o<s;l=o++){var c=i[o],u=i[l];c.y>t.y!=u.y>t.y&&t.x<(u.x-c.x)*(t.y-c.y)/(u.y-c.y)+c.x&&(r=!r),n=Math.min(n,fi(t,c,u))}return(r?1:-1)*Math.sqrt(n)}(this.p,n),this.max=this.d+this.h*Math.SQRT2}tc.prototype.push=function(t){this.data.push(t),this.length++,this._up(this.length-1)},tc.prototype.pop=function(){if(0!==this.length){var t=this.data[0],e=this.data.pop();return this.length--,this.length>0&&(this.data[0]=e,this._down(0)),t}},tc.prototype.peek=function(){return this.data[0]},tc.prototype._up=function(t){for(var e=this.data,r=this.compare,n=e[t];t>0;){var a=t-1>>1,i=e[a];if(r(n,i)>=0)break;e[t]=i,t=a}e[t]=n},tc.prototype._down=function(t){for(var e=this.data,r=this.compare,n=this.length>>1,a=e[t];t<n;){var i=1+(t<<1),o=e[i],s=i+1;if(s<this.length&&r(e[s],o)<0&&(i=s,o=e[s]),r(o,a)>=0)break;e[t]=o,t=i}e[t]=a};var ic=e(function(t){t.exports=function(t,e){var r,n,a,i,o,s,l,c;for(r=3&t.length,n=t.length-r,a=e,o=3432918353,s=461845907,c=0;c<n;)l=255&t.charCodeAt(c)|(255&t.charCodeAt(++c))<<8|(255&t.charCodeAt(++c))<<16|(255&t.charCodeAt(++c))<<24,++c,a=27492+(65535&(i=5*(65535&(a=(a^=l=(65535&(l=(l=(65535&l)*o+(((l>>>16)*o&65535)<<16)&4294967295)<<15|l>>>17))*s+(((l>>>16)*s&65535)<<16)&4294967295)<<13|a>>>19))+((5*(a>>>16)&65535)<<16)&4294967295))+((58964+(i>>>16)&65535)<<16);switch(l=0,r){case 3:l^=(255&t.charCodeAt(c+2))<<16;case 2:l^=(255&t.charCodeAt(c+1))<<8;case 1:a^=l=(65535&(l=(l=(65535&(l^=255&t.charCodeAt(c)))*o+(((l>>>16)*o&65535)<<16)&4294967295)<<15|l>>>17))*s+(((l>>>16)*s&65535)<<16)&4294967295}return a^=t.length,a=2246822507*(65535&(a^=a>>>16))+((2246822507*(a>>>16)&65535)<<16)&4294967295,a=3266489909*(65535&(a^=a>>>13))+((3266489909*(a>>>16)&65535)<<16)&4294967295,(a^=a>>>16)>>>0}}),oc=e(function(t){t.exports=function(t,e){for(var r,n=t.length,a=e^n,i=0;n>=4;)r=1540483477*(65535&(r=255&t.charCodeAt(i)|(255&t.charCodeAt(++i))<<8|(255&t.charCodeAt(++i))<<16|(255&t.charCodeAt(++i))<<24))+((1540483477*(r>>>16)&65535)<<16),a=1540483477*(65535&a)+((1540483477*(a>>>16)&65535)<<16)^(r=1540483477*(65535&(r^=r>>>24))+((1540483477*(r>>>16)&65535)<<16)),n-=4,++i;switch(n){case 3:a^=(255&t.charCodeAt(i+2))<<16;case 2:a^=(255&t.charCodeAt(i+1))<<8;case 1:a=1540483477*(65535&(a^=255&t.charCodeAt(i)))+((1540483477*(a>>>16)&65535)<<16)}return a=1540483477*(65535&(a^=a>>>13))+((1540483477*(a>>>16)&65535)<<16),(a^=a>>>15)>>>0}}),sc=ic,lc=ic,cc=oc;sc.murmur3=lc,sc.murmur2=cc;var uc=7;function hc(t,e){var r=0,n=0,a=e/Math.sqrt(2);switch(t){case\"top-right\":case\"top-left\":n=a-uc;break;case\"bottom-right\":case\"bottom-left\":n=-a+uc;break;case\"bottom\":n=-e+uc;break;case\"top\":n=e-uc}switch(t){case\"top-right\":case\"bottom-right\":r=-a;break;case\"top-left\":case\"bottom-left\":r=a;break;case\"left\":r=e;break;case\"right\":r=-e}return[r,n]}function fc(t){switch(t){case\"right\":case\"top-right\":case\"bottom-right\":return\"right\";case\"left\":case\"top-left\":case\"bottom-left\":return\"left\"}return\"center\"}var pc=65535;function dc(t,e,r,n,i,o,s,l,c,u,h,f,p){var d=function(t,e,r,n,i,o,s,l){for(var c=n.layout.get(\"text-rotate\").evaluate(o,{})*Math.PI/180,u=e.positionedGlyphs,h=[],f=0;f<u.length;f++){var p=u[f],d=s[p.fontStack],g=d&&d[p.glyph];if(g){var v=g.rect;if(v){var m=bl+1,y=g.metrics.advance*p.scale/2,x=i?[p.x+y,p.y]:[0,0],b=i?[0,0]:[p.x+y+r[0],p.y+r[1]],_=(i||l)&&p.vertical,w=[0,0];_&&(w=b,b=[0,0]);var k=(g.metrics.left-m)*p.scale-y+b[0],T=(-g.metrics.top-m)*p.scale+b[1],A=k+v.w*p.scale,M=T+v.h*p.scale,S=new a(k,T),E=new a(A,T),C=new a(k,M),L=new a(A,M);if(_){var P=new a(-y,y-e.yOffset),O=-Math.PI/2,I=ss/2-y,z=new a(5-e.yOffset-I,0),D=new(Function.prototype.bind.apply(a,[null].concat(w)));S._rotateAround(O,P)._add(z)._add(D),E._rotateAround(O,P)._add(z)._add(D),C._rotateAround(O,P)._add(z)._add(D),L._rotateAround(O,P)._add(z)._add(D)}if(c){var R=Math.sin(c),F=Math.cos(c),B=[F,-R,R,F];S._matMult(B),E._matMult(B),C._matMult(B),L._matMult(B)}h.push({tl:S,tr:E,bl:C,br:L,tex:v,writingMode:e.writingMode,glyphOffset:x,sectionIndex:p.sectionIndex})}}}return h}(0,r,s,n,i,o,f,t.allowVerticalPlacement),g=t.textSizeData,v=null;\"source\"===g.kind?(v=[bs*n.layout.get(\"text-size\").evaluate(o,{})])[0]>pc&&w(t.layerIds[0]+': Value for \"text-size\" is >= 256. Reduce your \"text-size\".'):\"composite\"===g.kind&&((v=[bs*p.compositeTextSizes[0].evaluate(o,{}),bs*p.compositeTextSizes[1].evaluate(o,{})])[0]>pc||v[1]>pc)&&w(t.layerIds[0]+': Value for \"text-size\" is >= 256. Reduce your \"text-size\".'),t.addSymbols(t.text,d,v,s,i,o,c,e,l.lineStartIndex,l.lineLength);for(var m=0,y=u;m<y.length;m+=1)h[y[m]]=t.text.placedSymbolArray.length-1;return 4*d.length}function gc(t){for(var e in t)return t[e];return null}function vc(t,e,r,n){var a=t.compareText;if(e in a){for(var i=a[e],o=i.length-1;o>=0;o--)if(n.dist(i[o])<r)return!0}else a[e]=[];return a[e].push(n),!1}t.Actor=wl,t.AlphaImage=Li,t.CanonicalTileID=Il,t.CollisionBoxArray=xa,t.Color=Wt,t.DEMData=Fl,t.DataConstantProperty=Nn,t.DictionaryCoder=Nl,t.EXTENT=ti,t.ErrorEvent=wt,t.EvaluationParameters=Ln,t.Event=_t,t.Evented=kt,t.FeatureIndex=ql,t.FillBucket=bo,t.FillExtrusionBucket=Fo,t.ImageAtlas=Gs,t.ImagePosition=qs,t.LineBucket=Xo,t.LngLat=Al,t.LngLatBounds=Tl,t.MercatorCoordinate=Ol,t.ONE_EM=ss,t.OverscaledTileID=Dl,t.Point=a,t.Point$1=a,t.ProgramConfiguration=Ja,t.Properties=Hn,t.Protobuf=$s,t.RGBAImage=Pi,t.RequestManager=V,t.ResourceType=lt,t.SegmentVector=Pa,t.SourceFeatureState=Ul,t.StructArrayLayout1ui2=ga,t.StructArrayLayout2i4=Kn,t.StructArrayLayout2ui4=da,t.StructArrayLayout3ui6=pa,t.StructArrayLayout4i8=Qn,t.SymbolBucket=Ps,t.Texture=Js,t.Tile=Yl,t.Transitionable=In,t.Uniform1f=Fa,t.Uniform1i=Ra,t.Uniform2f=Ba,t.Uniform3f=Na,t.Uniform4f=ja,t.UniformColor=Va,t.UniformMatrix4f=qa,t.UnwrappedTileID=zl,t.ValidationError=At,t.WritingMode=ls,t.ZoomHistory=mn,t.addDynamicAttributes=Es,t.asyncAll=function(t,e,r){if(!t.length)return r(null,[]);var n=t.length,a=new Array(t.length),i=null;t.forEach(function(t,o){e(t,function(t,e){t&&(i=t),a[o]=e,0==--n&&r(i,a)})})},t.bezier=s,t.bindAll=v,t.browser=z,t.cacheEntryPossiblyAdded=function(t){++st>at&&(t.getActor().send(\"enforceCacheSizeLimit\",nt),st=0)},t.clamp=c,t.clearTileCache=function(t){var e=self.caches.delete(rt);t&&e.catch(t).then(function(){return t()})},t.clone=function(t){var e=new wi(16);return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e[4]=t[4],e[5]=t[5],e[6]=t[6],e[7]=t[7],e[8]=t[8],e[9]=t[9],e[10]=t[10],e[11]=t[11],e[12]=t[12],e[13]=t[13],e[14]=t[14],e[15]=t[15],e},t.clone$1=b,t.config=D,t.create=function(){var t=new wi(16);return wi!=Float32Array&&(t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[11]=0,t[12]=0,t[13]=0,t[14]=0),t[0]=1,t[5]=1,t[10]=1,t[15]=1,t},t.create$1=function(){var t=new wi(9);return wi!=Float32Array&&(t[1]=0,t[2]=0,t[3]=0,t[5]=0,t[6]=0,t[7]=0),t[0]=1,t[4]=1,t[8]=1,t},t.create$2=function(){var t=new wi(4);return wi!=Float32Array&&(t[1]=0,t[2]=0),t[0]=1,t[3]=1,t},t.createCommonjsModule=e,t.createExpression=wr,t.createLayout=Zn,t.createStyleLayer=function(t){return\"custom\"===t.type?new js(t):new Vs[t.type](t)},t.deepEqual=o,t.ease=l,t.emitValidationErrors=sn,t.endsWith=m,t.enforceCacheSizeLimit=function(t){self.caches&&self.caches.open(rt).then(function(e){e.keys().then(function(r){for(var n=0;n<r.length-t;n++)e.delete(r[n])})})},t.evaluateRadialOffset=hc,t.evaluateSizeForFeature=ws,t.evaluateSizeForZoom=ks,t.evented=En,t.extend=h,t.featureFilter=Dr,t.filterObject=x,t.fromRotation=function(t,e){var r=Math.sin(e),n=Math.cos(e);return t[0]=n,t[1]=r,t[2]=0,t[3]=-r,t[4]=n,t[5]=0,t[6]=0,t[7]=0,t[8]=1,t},t.getAnchorAlignment=ms,t.getAnchorJustification=fc,t.getArrayBuffer=vt,t.getImage=yt,t.getJSON=function(t,e){return gt(h(t,{type:\"json\"}),e)},t.getReferrer=ht,t.getVideo=function(t,e){var r,n,a=self.document.createElement(\"video\");a.muted=!0,a.onloadstart=function(){e(null,a)};for(var i=0;i<t.length;i++){var o=self.document.createElement(\"source\");r=t[i],n=void 0,(n=self.document.createElement(\"a\")).href=r,(n.protocol!==self.document.location.protocol||n.host!==self.document.location.host)&&(a.crossOrigin=\"Anonymous\"),o.src=t[i],a.appendChild(o)}return{cancel:function(){}}},t.identity=function(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},t.invert=function(t,e){var r=e[0],n=e[1],a=e[2],i=e[3],o=e[4],s=e[5],l=e[6],c=e[7],u=e[8],h=e[9],f=e[10],p=e[11],d=e[12],g=e[13],v=e[14],m=e[15],y=r*s-n*o,x=r*l-a*o,b=r*c-i*o,_=n*l-a*s,w=n*c-i*s,k=a*c-i*l,T=u*g-h*d,A=u*v-f*d,M=u*m-p*d,S=h*v-f*g,E=h*m-p*g,C=f*m-p*v,L=y*C-x*E+b*S+_*M-w*A+k*T;return L?(L=1/L,t[0]=(s*C-l*E+c*S)*L,t[1]=(a*E-n*C-i*S)*L,t[2]=(g*k-v*w+m*_)*L,t[3]=(f*w-h*k-p*_)*L,t[4]=(l*M-o*C-c*A)*L,t[5]=(r*C-a*M+i*A)*L,t[6]=(v*b-d*k-m*x)*L,t[7]=(u*k-f*b+p*x)*L,t[8]=(o*E-s*M+c*T)*L,t[9]=(n*M-r*E-i*T)*L,t[10]=(d*w-g*b+m*y)*L,t[11]=(h*b-u*w-p*y)*L,t[12]=(s*A-o*S-l*T)*L,t[13]=(r*S-n*A+a*T)*L,t[14]=(g*x-d*_-v*y)*L,t[15]=(u*_-h*x+f*y)*L,t):null},t.isChar=yn,t.isMapboxURL=U,t.keysDifference=function(t,e){var r=[];for(var n in t)n in e||r.push(n);return r},t.makeRequest=gt,t.mapObject=y,t.mercatorXfromLng=El,t.mercatorYfromLat=Cl,t.mercatorZfromAltitude=Ll,t.multiply=function(t,e,r){var n=e[0],a=e[1],i=e[2],o=e[3],s=e[4],l=e[5],c=e[6],u=e[7],h=e[8],f=e[9],p=e[10],d=e[11],g=e[12],v=e[13],m=e[14],y=e[15],x=r[0],b=r[1],_=r[2],w=r[3];return t[0]=x*n+b*s+_*h+w*g,t[1]=x*a+b*l+_*f+w*v,t[2]=x*i+b*c+_*p+w*m,t[3]=x*o+b*u+_*d+w*y,x=r[4],b=r[5],_=r[6],w=r[7],t[4]=x*n+b*s+_*h+w*g,t[5]=x*a+b*l+_*f+w*v,t[6]=x*i+b*c+_*p+w*m,t[7]=x*o+b*u+_*d+w*y,x=r[8],b=r[9],_=r[10],w=r[11],t[8]=x*n+b*s+_*h+w*g,t[9]=x*a+b*l+_*f+w*v,t[10]=x*i+b*c+_*p+w*m,t[11]=x*o+b*u+_*d+w*y,x=r[12],b=r[13],_=r[14],w=r[15],t[12]=x*n+b*s+_*h+w*g,t[13]=x*a+b*l+_*f+w*v,t[14]=x*i+b*c+_*p+w*m,t[15]=x*o+b*u+_*d+w*y,t},t.mvt=Io,t.number=ye,t.ortho=function(t,e,r,n,a,i,o){var s=1/(e-r),l=1/(n-a),c=1/(i-o);return t[0]=-2*s,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=-2*l,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=2*c,t[11]=0,t[12]=(e+r)*s,t[13]=(a+n)*l,t[14]=(o+i)*c,t[15]=1,t},t.parseGlyphPBF=function(t){return new $s(t).readFields(ml,[])},t.pbf=$s,t.performSymbolLayout=function(t,e,r,n,i,o){t.createArrays();var s=512*t.overscaling;t.tilePixelRatio=ti/s,t.compareText={},t.iconsNeedLinear=!1;var l=t.layers[0].layout,c=t.layers[0]._unevaluatedLayout._values,u={};if(\"composite\"===t.textSizeData.kind){var h=t.textSizeData,f=h.minZoom,p=h.maxZoom;u.compositeTextSizes=[c[\"text-size\"].possiblyEvaluate(new Ln(f)),c[\"text-size\"].possiblyEvaluate(new Ln(p))]}if(\"composite\"===t.iconSizeData.kind){var d=t.iconSizeData,g=d.minZoom,v=d.maxZoom;u.compositeIconSizes=[c[\"icon-size\"].possiblyEvaluate(new Ln(g)),c[\"icon-size\"].possiblyEvaluate(new Ln(v))]}u.layoutTextSize=c[\"text-size\"].possiblyEvaluate(new Ln(t.zoom+1)),u.layoutIconSize=c[\"icon-size\"].possiblyEvaluate(new Ln(t.zoom+1)),u.textMaxSize=c[\"text-size\"].possiblyEvaluate(new Ln(18));for(var m=l.get(\"text-line-height\")*ss,y=\"map\"===l.get(\"text-rotation-alignment\")&&\"point\"!==l.get(\"symbol-placement\"),x=l.get(\"text-keep-upright\"),b=function(){var o=k[_],s=l.get(\"text-font\").evaluate(o,{}).join(\",\"),c=r,h={horizontal:{},vertical:void 0},f=o.text,p=[0,0];if(f){var d=f.toString(),g=l.get(\"text-letter-spacing\").evaluate(o,{})*ss,v=function(t){for(var e=0,r=d;e<r.length;e+=1)if(!bn(r[e].charCodeAt(0)))return!1;return!0}()?g:0,b=l.get(\"text-anchor\").evaluate(o,{}),T=l.get(\"text-variable-anchor\"),A=l.get(\"text-radial-offset\").evaluate(o,{});T||(p=A?hc(b,A*ss):l.get(\"text-offset\").evaluate(o,{}).map(function(t){return t*ss}));var M=y?\"center\":l.get(\"text-justify\").evaluate(o,{}),S=\"point\"===l.get(\"symbol-placement\")?l.get(\"text-max-width\").evaluate(o,{})*ss:0,E=function(){t.allowVerticalPlacement&&xn(d)&&(h.vertical=us(f,e,s,S,m,b,\"left\",v,p,ls.vertical,!0))};if(!y&&T){for(var C=\"auto\"===M?T.map(function(t){return fc(t)}):[M],L=!1,P=0;P<C.length;P++){var O=C[P];if(!h.horizontal[O])if(L)h.horizontal[O]=h.horizontal[0];else{var I=us(f,e,s,S,m,\"center\",O,v,p,ls.horizontal,!1);I&&(h.horizontal[O]=I,L=1===I.lineCount)}}E()}else{\"auto\"===M&&(M=fc(b));var z=us(f,e,s,S,m,b,M,v,p,ls.horizontal,!1);z&&(h.horizontal[M]=z),E(),xn(d)&&y&&x&&(h.vertical=us(f,e,s,S,m,b,M,v,p,ls.vertical,!1))}}var D=void 0;if(o.icon){var R=n[o.icon];R&&(D=function(t,e,r){var n=ms(r),a=n.horizontalAlign,i=n.verticalAlign,o=e[0],s=e[1],l=o-t.displaySize[0]*a,c=l+t.displaySize[0],u=s-t.displaySize[1]*i;return{image:t,top:u,bottom:u+t.displaySize[1],left:l,right:c}}(i[o.icon],l.get(\"icon-offset\").evaluate(o,{}),l.get(\"icon-anchor\").evaluate(o,{})),void 0===t.sdfIcons?t.sdfIcons=R.sdf:t.sdfIcons!==R.sdf&&w(\"Style sheet warning: Cannot mix SDF and non-SDF icons in one buffer\"),R.pixelRatio!==t.pixelRatio?t.iconsNeedLinear=!0:0!==l.get(\"icon-rotate\").constantOr(1)&&(t.iconsNeedLinear=!0))}(Object.keys(h.horizontal).length||D)&&function(t,e,r,n,i,o,s){var l=o.layoutTextSize.evaluate(e,{}),c=o.layoutIconSize.evaluate(e,{}),u=o.textMaxSize.evaluate(e,{});void 0===u&&(u=l);var h=t.layers[0].layout,f=h.get(\"icon-offset\").evaluate(e,{}),p=gc(r.horizontal),d=l/24,g=t.tilePixelRatio*d,v=t.tilePixelRatio*u/24,m=t.tilePixelRatio*c,y=t.tilePixelRatio*h.get(\"symbol-spacing\"),x=h.get(\"text-padding\")*t.tilePixelRatio,b=h.get(\"icon-padding\")*t.tilePixelRatio,_=h.get(\"text-max-angle\")/180*Math.PI,k=\"map\"===h.get(\"text-rotation-alignment\")&&\"point\"!==h.get(\"symbol-placement\"),T=\"map\"===h.get(\"icon-rotation-alignment\")&&\"point\"!==h.get(\"symbol-placement\"),A=h.get(\"symbol-placement\"),M=y/2,S=function(l,c){c.x<0||c.x>=ti||c.y<0||c.y>=ti||function(t,e,r,n,i,o,s,l,c,u,h,f,p,d,g,v,m,y,x,b,_){var k,T,A,M=t.addToLineVertexArray(e,r),S=0,E=0,C=0,L={},P=sc(\"\"),O=(o.layout.get(\"text-radial-offset\").evaluate(x,{})||0)*ss;if(t.allowVerticalPlacement&&n.vertical){var I=o.layout.get(\"text-rotate\").evaluate(x,{})+90,z=n.vertical;A=new $l(s,r,e,l,c,u,z,h,f,p,t.overscaling,I)}for(var D in n.horizontal){var R=n.horizontal[D];if(!k){P=sc(R.text);var F=o.layout.get(\"text-rotate\").evaluate(x,{});k=new $l(s,r,e,l,c,u,R,h,f,p,t.overscaling,F)}var B=1===R.lineCount;if(E+=dc(t,e,R,o,p,x,d,M,n.vertical?ls.horizontal:ls.horizontalOnly,B?Object.keys(n.horizontal):[D],L,b,_),B)break}n.vertical&&(C+=dc(t,e,n.vertical,o,p,x,d,M,ls.vertical,[\"vertical\"],L,b,_));var N=k?k.boxStartIndex:t.collisionBoxArray.length,j=k?k.boxEndIndex:t.collisionBoxArray.length,V=A?A.boxStartIndex:t.collisionBoxArray.length,U=A?A.boxEndIndex:t.collisionBoxArray.length;if(i){var q=function(t,e,r,n,i,o){var s,l,c,u,h=e.image,f=r.layout,p=e.top-1/h.pixelRatio,d=e.left-1/h.pixelRatio,g=e.bottom+1/h.pixelRatio,v=e.right+1/h.pixelRatio;if(\"none\"!==f.get(\"icon-text-fit\")&&i){var m=v-d,y=g-p,x=f.get(\"text-size\").evaluate(o,{})/24,b=i.left*x,_=i.right*x,w=i.top*x,k=_-b,T=i.bottom*x-w,A=f.get(\"icon-text-fit-padding\")[0],M=f.get(\"icon-text-fit-padding\")[1],S=f.get(\"icon-text-fit-padding\")[2],E=f.get(\"icon-text-fit-padding\")[3],C=\"width\"===f.get(\"icon-text-fit\")?.5*(T-y):0,L=\"height\"===f.get(\"icon-text-fit\")?.5*(k-m):0,P=\"width\"===f.get(\"icon-text-fit\")||\"both\"===f.get(\"icon-text-fit\")?k:m,O=\"height\"===f.get(\"icon-text-fit\")||\"both\"===f.get(\"icon-text-fit\")?T:y;s=new a(b+L-E,w+C-A),l=new a(b+L+M+P,w+C-A),c=new a(b+L+M+P,w+C+S+O),u=new a(b+L-E,w+C+S+O)}else s=new a(d,p),l=new a(v,p),c=new a(v,g),u=new a(d,g);var I=r.layout.get(\"icon-rotate\").evaluate(o,{})*Math.PI/180;if(I){var z=Math.sin(I),D=Math.cos(I),R=[D,-z,z,D];s._matMult(R),l._matMult(R),u._matMult(R),c._matMult(R)}return[{tl:s,tr:l,bl:u,br:c,tex:h.paddedRect,writingMode:void 0,glyphOffset:[0,0],sectionIndex:0}]}(0,i,o,0,gc(n.horizontal),x),H=o.layout.get(\"icon-rotate\").evaluate(x,{});T=new $l(s,r,e,l,c,u,i,g,v,!1,t.overscaling,H),S=4*q.length;var G=t.iconSizeData,Y=null;\"source\"===G.kind?(Y=[bs*o.layout.get(\"icon-size\").evaluate(x,{})])[0]>pc&&w(t.layerIds[0]+': Value for \"icon-size\" is >= 256. Reduce your \"icon-size\".'):\"composite\"===G.kind&&((Y=[bs*_.compositeIconSizes[0].evaluate(x,{}),bs*_.compositeIconSizes[1].evaluate(x,{})])[0]>pc||Y[1]>pc)&&w(t.layerIds[0]+': Value for \"icon-size\" is >= 256. Reduce your \"icon-size\".'),t.addSymbols(t.icon,q,Y,y,m,x,!1,e,M.lineStartIndex,M.lineLength)}var W=T?T.boxStartIndex:t.collisionBoxArray.length,X=T?T.boxEndIndex:t.collisionBoxArray.length;t.glyphOffsetArray.length>=Ps.MAX_GLYPHS&&w(\"Too many glyphs being rendered in a tile. See https://github.com/mapbox/mapbox-gl-js/issues/2907\"),t.symbolInstances.emplaceBack(e.x,e.y,L.right>=0?L.right:-1,L.center>=0?L.center:-1,L.left>=0?L.left:-1,L.vertical||-1,P,N,j,V,U,W,X,l,E,C,S,0,h,O)}(t,c,l,r,n,t.layers[0],t.collisionBoxArray,e.index,e.sourceLayerIndex,t.index,g,x,k,s,m,b,T,f,e,i,o)};if(\"line\"===A)for(var E=0,C=function(t,e,r,n,i){for(var o=[],s=0;s<t.length;s++)for(var l=t[s],c=void 0,u=0;u<l.length-1;u++){var h=l[u],f=l[u+1];h.x<0&&f.x<0||(h.x<0?h=new a(0,h.y+(f.y-h.y)*((0-h.x)/(f.x-h.x)))._round():f.x<0&&(f=new a(0,h.y+(f.y-h.y)*((0-h.x)/(f.x-h.x)))._round()),h.y<0&&f.y<0||(h.y<0?h=new a(h.x+(f.x-h.x)*((0-h.y)/(f.y-h.y)),0)._round():f.y<0&&(f=new a(h.x+(f.x-h.x)*((0-h.y)/(f.y-h.y)),0)._round()),h.x>=n&&f.x>=n||(h.x>=n?h=new a(n,h.y+(f.y-h.y)*((n-h.x)/(f.x-h.x)))._round():f.x>=n&&(f=new a(n,h.y+(f.y-h.y)*((n-h.x)/(f.x-h.x)))._round()),h.y>=i&&f.y>=i||(h.y>=i?h=new a(h.x+(f.x-h.x)*((i-h.y)/(f.y-h.y)),i)._round():f.y>=i&&(f=new a(h.x+(f.x-h.x)*((i-h.y)/(f.y-h.y)),i)._round()),c&&h.equals(c[c.length-1])||(c=[h],o.push(c)),c.push(f)))))}return o}(e.geometry,0,0,ti,ti);E<C.length;E+=1)for(var L=C[E],P=0,O=Ql(L,y,_,r.vertical||p,n,24,v,t.overscaling,ti);P<O.length;P+=1){var I=O[P];p&&vc(t,p.text,M,I)||S(L,I)}else if(\"line-center\"===A)for(var z=0,D=e.geometry;z<D.length;z+=1){var R=D[z];if(R.length>1){var F=Kl(R,_,r.vertical||p,n,24,v);F&&S(R,F)}}else if(\"Polygon\"===e.type)for(var B=0,N=vo(e.geometry,0);B<N.length;B+=1){var j=N[B],V=rc(j,16);S(j[0],new xs(V.x,V.y,0))}else if(\"LineString\"===e.type)for(var U=0,q=e.geometry;U<q.length;U+=1){var H=q[U];S(H,new xs(H[0].x,H[0].y,0))}else if(\"Point\"===e.type)for(var G=0,Y=e.geometry;G<Y.length;G+=1)for(var W=0,X=Y[G];W<X.length;W+=1){var Z=X[W];S([Z],new xs(Z.x,Z.y,0))}}(t,o,h,D,c,u,p)},_=0,k=t.features;_<k.length;_+=1)b();o&&t.generateCollisionDebugBuffers()},t.perspective=function(t,e,r,n,a){var i,o=1/Math.tan(e/2);return t[0]=o/r,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=o,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[11]=-1,t[12]=0,t[13]=0,t[15]=0,null!=a&&a!==1/0?(i=1/(n-a),t[10]=(a+n)*i,t[14]=2*a*n*i):(t[10]=-1,t[14]=-2*n),t},t.pick=function(t,e){for(var r={},n=0;n<e.length;n++){var a=e[n];a in t&&(r[a]=t[a])}return r},t.plugin=Cn,t.polygonIntersectsPolygon=ii,t.postMapLoadEvent=et,t.postTurnstileEvent=$,t.potpack=Us,t.rasterBoundsAttributes=Bl,t.refProperties=[\"type\",\"source\",\"source-layer\",\"minzoom\",\"maxzoom\",\"filter\",\"layout\"],t.register=pn,t.registerForPluginAvailability=function(t){return Mn?t({pluginURL:Mn,completionCallback:Tn}):En.once(\"pluginAvailable\",t),t},t.rotate=function(t,e,r){var n=e[0],a=e[1],i=e[2],o=e[3],s=Math.sin(r),l=Math.cos(r);return t[0]=n*l+i*s,t[1]=a*l+o*s,t[2]=n*-s+i*l,t[3]=a*-s+o*l,t},t.rotateX=function(t,e,r){var n=Math.sin(r),a=Math.cos(r),i=e[4],o=e[5],s=e[6],l=e[7],c=e[8],u=e[9],h=e[10],f=e[11];return e!==t&&(t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15]),t[4]=i*a+c*n,t[5]=o*a+u*n,t[6]=s*a+h*n,t[7]=l*a+f*n,t[8]=c*a-i*n,t[9]=u*a-o*n,t[10]=h*a-s*n,t[11]=f*a-l*n,t},t.rotateZ=function(t,e,r){var n=Math.sin(r),a=Math.cos(r),i=e[0],o=e[1],s=e[2],l=e[3],c=e[4],u=e[5],h=e[6],f=e[7];return e!==t&&(t[8]=e[8],t[9]=e[9],t[10]=e[10],t[11]=e[11],t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15]),t[0]=i*a+c*n,t[1]=o*a+u*n,t[2]=s*a+h*n,t[3]=l*a+f*n,t[4]=c*a-i*n,t[5]=u*a-o*n,t[6]=h*a-s*n,t[7]=f*a-l*n,t},t.scale=function(t,e,r){var n=r[0],a=r[1],i=r[2];return t[0]=e[0]*n,t[1]=e[1]*n,t[2]=e[2]*n,t[3]=e[3]*n,t[4]=e[4]*a,t[5]=e[5]*a,t[6]=e[6]*a,t[7]=e[7]*a,t[8]=e[8]*i,t[9]=e[9]*i,t[10]=e[10]*i,t[11]=e[11]*i,t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15],t},t.setCacheLimits=function(t,e){nt=t,at=e},t.setRTLTextPlugin=function(t,e){if(An)throw new Error(\"setRTLTextPlugin cannot be called multiple times.\");An=!0,Mn=z.resolveURL(t),Tn=function(t){t?(An=!1,Mn=null,e&&e(t)):Sn=!0},En.fire(new _t(\"pluginAvailable\",{pluginURL:Mn,completionCallback:Tn}))},t.sphericalToCartesian=function(t){var e=t[0],r=t[1],n=t[2];return r+=90,r*=Math.PI/180,n*=Math.PI/180,{x:e*Math.cos(r)*Math.sin(n),y:e*Math.sin(r)*Math.sin(n),z:e*Math.cos(n)}},t.styleSpec=Tt,t.symbolSize=Ts,t.transformMat3=function(t,e,r){var n=e[0],a=e[1],i=e[2];return t[0]=n*r[0]+a*r[3]+i*r[6],t[1]=n*r[1]+a*r[4]+i*r[7],t[2]=n*r[2]+a*r[5]+i*r[8],t},t.transformMat4=ki,t.translate=function(t,e,r){var n,a,i,o,s,l,c,u,h,f,p,d,g=r[0],v=r[1],m=r[2];return e===t?(t[12]=e[0]*g+e[4]*v+e[8]*m+e[12],t[13]=e[1]*g+e[5]*v+e[9]*m+e[13],t[14]=e[2]*g+e[6]*v+e[10]*m+e[14],t[15]=e[3]*g+e[7]*v+e[11]*m+e[15]):(n=e[0],a=e[1],i=e[2],o=e[3],s=e[4],l=e[5],c=e[6],u=e[7],h=e[8],f=e[9],p=e[10],d=e[11],t[0]=n,t[1]=a,t[2]=i,t[3]=o,t[4]=s,t[5]=l,t[6]=c,t[7]=u,t[8]=h,t[9]=f,t[10]=p,t[11]=d,t[12]=n*g+s*v+h*m+e[12],t[13]=a*g+l*v+f*m+e[13],t[14]=i*g+c*v+p*m+e[14],t[15]=o*g+u*v+d*m+e[15]),t},t.uniqueId=p,t.validateCustomStyleLayer=function(t){var e=[],r=t.id;return void 0===r&&e.push({message:\"layers.\"+r+': missing required property \"id\"'}),void 0===t.render&&e.push({message:\"layers.\"+r+': missing required method \"render\"'}),t.renderingMode&&\"2d\"!==t.renderingMode&&\"3d\"!==t.renderingMode&&e.push({message:\"layers.\"+r+': property \"renderingMode\" must be either \"2d\" or \"3d\"'}),e},t.validateLight=nn,t.validateStyle=rn,t.values=function(t){var e=[];for(var r in t)e.push(t[r]);return e},t.vectorTile=Io,t.version=\"1.3.2\",t.warnOnce=w,t.webpSupported=R,t.window=self,t.wrap=u}),n(0,function(t){function e(t){var r=typeof t;if(\"number\"===r||\"boolean\"===r||\"string\"===r||null==t)return JSON.stringify(t);if(Array.isArray(t)){for(var n=\"[\",a=0,i=t;a<i.length;a+=1)n+=e(i[a])+\",\";return n+\"]\"}for(var o=Object.keys(t).sort(),s=\"{\",l=0;l<o.length;l++)s+=JSON.stringify(o[l])+\":\"+e(t[o[l]])+\",\";return s+\"}\"}function r(r){for(var n=\"\",a=0,i=t.refProperties;a<i.length;a+=1)n+=\"/\"+e(r[i[a]]);return n}var n=function(t){this.keyCache={},t&&this.replace(t)};n.prototype.replace=function(t){this._layerConfigs={},this._layers={},this.update(t,[])},n.prototype.update=function(e,n){for(var a=this,i=0,o=e;i<o.length;i+=1){var s=o[i];this._layerConfigs[s.id]=s;var l=this._layers[s.id]=t.createStyleLayer(s);l._featureFilter=t.featureFilter(l.filter),this.keyCache[s.id]&&delete this.keyCache[s.id]}for(var c=0,u=n;c<u.length;c+=1){var h=u[c];delete this.keyCache[h],delete this._layerConfigs[h],delete this._layers[h]}this.familiesBySource={};for(var f=0,p=function(t,e){for(var n={},a=0;a<t.length;a++){var i=e&&e[t[a].id]||r(t[a]);e&&(e[t[a].id]=i);var o=n[i];o||(o=n[i]=[]),o.push(t[a])}var s=[];for(var l in n)s.push(n[l]);return s}(t.values(this._layerConfigs),this.keyCache);f<p.length;f+=1){var d=p[f].map(function(t){return a._layers[t.id]}),g=d[0];if(\"none\"!==g.visibility){var v=g.source||\"\",m=this.familiesBySource[v];m||(m=this.familiesBySource[v]={});var y=g.sourceLayer||\"_geojsonTileLayer\",x=m[y];x||(x=m[y]=[]),x.push(d)}}};var a=function(e){var r={},n=[];for(var a in e){var i=e[a],o=r[a]={};for(var s in i){var l=i[+s];if(l&&0!==l.bitmap.width&&0!==l.bitmap.height){var c={x:0,y:0,w:l.bitmap.width+2,h:l.bitmap.height+2};n.push(c),o[s]={rect:c,metrics:l.metrics}}}}var u=t.potpack(n),h=u.w,f=u.h,p=new t.AlphaImage({width:h||1,height:f||1});for(var d in e){var g=e[d];for(var v in g){var m=g[+v];if(m&&0!==m.bitmap.width&&0!==m.bitmap.height){var y=r[d][v].rect;t.AlphaImage.copy(m.bitmap,p,{x:0,y:0},{x:y.x+1,y:y.y+1},m.bitmap)}}}this.image=p,this.positions=r};t.register(\"GlyphAtlas\",a);var i=function(e){this.tileID=new t.OverscaledTileID(e.tileID.overscaledZ,e.tileID.wrap,e.tileID.canonical.z,e.tileID.canonical.x,e.tileID.canonical.y),this.uid=e.uid,this.zoom=e.zoom,this.pixelRatio=e.pixelRatio,this.tileSize=e.tileSize,this.source=e.source,this.overscaling=this.tileID.overscaleFactor(),this.showCollisionBoxes=e.showCollisionBoxes,this.collectResourceTiming=!!e.collectResourceTiming,this.returnDependencies=!!e.returnDependencies};function o(e,r){for(var n=new t.EvaluationParameters(r),a=0,i=e;a<i.length;a+=1)i[a].recalculate(n)}i.prototype.parse=function(e,r,n,i){var s=this;this.status=\"parsing\",this.data=e,this.collisionBoxArray=new t.CollisionBoxArray;var l=new t.DictionaryCoder(Object.keys(e.layers).sort()),c=new t.FeatureIndex(this.tileID);c.bucketLayerIDs=[];var u,h,f,p,d={},g={featureIndex:c,iconDependencies:{},patternDependencies:{},glyphDependencies:{}},v=r.familiesBySource[this.source];for(var m in v){var y=e.layers[m];if(y){1===y.version&&t.warnOnce('Vector tile source \"'+this.source+'\" layer \"'+m+'\" does not use vector tile spec v2 and therefore may have some rendering errors.');for(var x=l.encode(m),b=[],_=0;_<y.length;_++){var w=y.feature(_);b.push({feature:w,index:_,sourceLayerIndex:x})}for(var k=0,T=v[m];k<T.length;k+=1){var A=T[k],M=A[0];M.minzoom&&this.zoom<Math.floor(M.minzoom)||M.maxzoom&&this.zoom>=M.maxzoom||\"none\"!==M.visibility&&(o(A,this.zoom),(d[M.id]=M.createBucket({index:c.bucketLayerIDs.length,layers:A,zoom:this.zoom,pixelRatio:this.pixelRatio,overscaling:this.overscaling,collisionBoxArray:this.collisionBoxArray,sourceLayerIndex:x,sourceID:this.source})).populate(b,g),c.bucketLayerIDs.push(A.map(function(t){return t.id})))}}}var S=t.mapObject(g.glyphDependencies,function(t){return Object.keys(t).map(Number)});Object.keys(S).length?n.send(\"getGlyphs\",{uid:this.uid,stacks:S},function(t,e){u||(u=t,h=e,L.call(s))}):h={};var E=Object.keys(g.iconDependencies);E.length?n.send(\"getImages\",{icons:E},function(t,e){u||(u=t,f=e,L.call(s))}):f={};var C=Object.keys(g.patternDependencies);function L(){if(u)return i(u);if(h&&f&&p){var e=new a(h),r=new t.ImageAtlas(f,p);for(var n in d){var s=d[n];s instanceof t.SymbolBucket?(o(s.layers,this.zoom),t.performSymbolLayout(s,h,e.positions,f,r.iconPositions,this.showCollisionBoxes)):s.hasPattern&&(s instanceof t.LineBucket||s instanceof t.FillBucket||s instanceof t.FillExtrusionBucket)&&(o(s.layers,this.zoom),s.addFeatures(g,r.patternPositions))}this.status=\"done\",i(null,{buckets:t.values(d).filter(function(t){return!t.isEmpty()}),featureIndex:c,collisionBoxArray:this.collisionBoxArray,glyphAtlasImage:e.image,imageAtlas:r,glyphMap:this.returnDependencies?h:null,iconMap:this.returnDependencies?f:null,glyphPositions:this.returnDependencies?e.positions:null})}}C.length?n.send(\"getImages\",{icons:C},function(t,e){u||(u=t,p=e,L.call(s))}):p={},L.call(this)};var s=\"undefined\"!=typeof performance,l={getEntriesByName:function(t){return!!(s&&performance&&performance.getEntriesByName)&&performance.getEntriesByName(t)},mark:function(t){return!!(s&&performance&&performance.mark)&&performance.mark(t)},measure:function(t,e,r){return!!(s&&performance&&performance.measure)&&performance.measure(t,e,r)},clearMarks:function(t){return!!(s&&performance&&performance.clearMarks)&&performance.clearMarks(t)},clearMeasures:function(t){return!!(s&&performance&&performance.clearMeasures)&&performance.clearMeasures(t)}},c=function(t){this._marks={start:[t.url,\"start\"].join(\"#\"),end:[t.url,\"end\"].join(\"#\"),measure:t.url.toString()},l.mark(this._marks.start)};function u(e,r){var n=t.getArrayBuffer(e.request,function(e,n,a,i){e?r(e):n&&r(null,{vectorTile:new t.vectorTile.VectorTile(new t.pbf(n)),rawData:n,cacheControl:a,expires:i})});return function(){n.cancel(),r()}}c.prototype.finish=function(){l.mark(this._marks.end);var t=l.getEntriesByName(this._marks.measure);return 0===t.length&&(l.measure(this._marks.measure,this._marks.start,this._marks.end),t=l.getEntriesByName(this._marks.measure),l.clearMarks(this._marks.start),l.clearMarks(this._marks.end),l.clearMeasures(this._marks.measure)),t},l.Performance=c;var h=function(t,e,r){this.actor=t,this.layerIndex=e,this.loadVectorData=r||u,this.loading={},this.loaded={}};h.prototype.loadTile=function(e,r){var n=this,a=e.uid;this.loading||(this.loading={});var o=!!(e&&e.request&&e.request.collectResourceTiming)&&new l.Performance(e.request),s=this.loading[a]=new i(e);s.abort=this.loadVectorData(e,function(e,i){if(delete n.loading[a],e||!i)return s.status=\"done\",n.loaded[a]=s,r(e);var l=i.rawData,c={};i.expires&&(c.expires=i.expires),i.cacheControl&&(c.cacheControl=i.cacheControl);var u={};if(o){var h=o.finish();h&&(u.resourceTiming=JSON.parse(JSON.stringify(h)))}s.vectorTile=i.vectorTile,s.parse(i.vectorTile,n.layerIndex,n.actor,function(e,n){if(e||!n)return r(e);r(null,t.extend({rawTileData:l.slice(0)},n,c,u))}),n.loaded=n.loaded||{},n.loaded[a]=s})},h.prototype.reloadTile=function(t,e){var r=this.loaded,n=t.uid,a=this;if(r&&r[n]){var i=r[n];i.showCollisionBoxes=t.showCollisionBoxes;var o=function(t,r){var n=i.reloadCallback;n&&(delete i.reloadCallback,i.parse(i.vectorTile,a.layerIndex,a.actor,n)),e(t,r)};\"parsing\"===i.status?i.reloadCallback=o:\"done\"===i.status&&(i.vectorTile?i.parse(i.vectorTile,this.layerIndex,this.actor,o):o())}},h.prototype.abortTile=function(t,e){var r=this.loading,n=t.uid;r&&r[n]&&r[n].abort&&(r[n].abort(),delete r[n]),e()},h.prototype.removeTile=function(t,e){var r=this.loaded,n=t.uid;r&&r[n]&&delete r[n],e()};var f=function(){this.loaded={}};f.prototype.loadTile=function(e,r){var n=e.uid,a=e.encoding,i=e.rawImageData,o=new t.DEMData(n,i,a);this.loaded=this.loaded||{},this.loaded[n]=o,r(null,o)},f.prototype.removeTile=function(t){var e=this.loaded,r=t.uid;e&&e[r]&&delete e[r]};var p={RADIUS:6378137,FLATTENING:1/298.257223563,POLAR_RADIUS:6356752.3142};function d(t){var e=0;if(t&&t.length>0){e+=Math.abs(g(t[0]));for(var r=1;r<t.length;r++)e-=Math.abs(g(t[r]))}return e}function g(t){var e,r,n,a,i,o,s=0,l=t.length;if(l>2){for(o=0;o<l;o++)o===l-2?(n=l-2,a=l-1,i=0):o===l-1?(n=l-1,a=0,i=1):(n=o,a=o+1,i=o+2),e=t[n],r=t[a],s+=(v(t[i][0])-v(e[0]))*Math.sin(v(r[1]));s=s*p.RADIUS*p.RADIUS/2}return s}function v(t){return t*Math.PI/180}var m={geometry:function t(e){var r,n=0;switch(e.type){case\"Polygon\":return d(e.coordinates);case\"MultiPolygon\":for(r=0;r<e.coordinates.length;r++)n+=d(e.coordinates[r]);return n;case\"Point\":case\"MultiPoint\":case\"LineString\":case\"MultiLineString\":return 0;case\"GeometryCollection\":for(r=0;r<e.geometries.length;r++)n+=t(e.geometries[r]);return n}},ring:g};function y(t,e){return function(r){return t(r,e)}}function x(t,e){e=!!e,t[0]=b(t[0],e);for(var r=1;r<t.length;r++)t[r]=b(t[r],!e);return t}function b(t,e){return function(t){return m.ring(t)>=0}(t)===e?t:t.reverse()}var _=t.vectorTile.VectorTileFeature.prototype.toGeoJSON,w=function(e){this._feature=e,this.extent=t.EXTENT,this.type=e.type,this.properties=e.tags,\"id\"in e&&!isNaN(e.id)&&(this.id=parseInt(e.id,10))};w.prototype.loadGeometry=function(){if(1===this._feature.type){for(var e=[],r=0,n=this._feature.geometry;r<n.length;r+=1){var a=n[r];e.push([new t.Point$1(a[0],a[1])])}return e}for(var i=[],o=0,s=this._feature.geometry;o<s.length;o+=1){for(var l=[],c=0,u=s[o];c<u.length;c+=1){var h=u[c];l.push(new t.Point$1(h[0],h[1]))}i.push(l)}return i},w.prototype.toGeoJSON=function(t,e,r){return _.call(this,t,e,r)};var k=function(e){this.layers={_geojsonTileLayer:this},this.name=\"_geojsonTileLayer\",this.extent=t.EXTENT,this.length=e.length,this._features=e};k.prototype.feature=function(t){return new w(this._features[t])};var T=t.vectorTile.VectorTileFeature,A=M;function M(t,e){this.options=e||{},this.features=t,this.length=t.length}function S(t,e){this.id=\"number\"==typeof t.id?t.id:void 0,this.type=t.type,this.rawGeometry=1===t.type?[t.geometry]:t.geometry,this.properties=t.tags,this.extent=e||4096}M.prototype.feature=function(t){return new S(this.features[t],this.options.extent)},S.prototype.loadGeometry=function(){var e=this.rawGeometry;this.geometry=[];for(var r=0;r<e.length;r++){for(var n=e[r],a=[],i=0;i<n.length;i++)a.push(new t.Point$1(n[i][0],n[i][1]));this.geometry.push(a)}return this.geometry},S.prototype.bbox=function(){this.geometry||this.loadGeometry();for(var t=this.geometry,e=1/0,r=-1/0,n=1/0,a=-1/0,i=0;i<t.length;i++)for(var o=t[i],s=0;s<o.length;s++){var l=o[s];e=Math.min(e,l.x),r=Math.max(r,l.x),n=Math.min(n,l.y),a=Math.max(a,l.y)}return[e,n,r,a]},S.prototype.toGeoJSON=T.prototype.toGeoJSON;var E=P,C=P,L=A;function P(e){var r=new t.pbf;return function(t,e){for(var r in t.layers)e.writeMessage(3,O,t.layers[r])}(e,r),r.finish()}function O(t,e){var r;e.writeVarintField(15,t.version||1),e.writeStringField(1,t.name||\"\"),e.writeVarintField(5,t.extent||4096);var n={keys:[],values:[],keycache:{},valuecache:{}};for(r=0;r<t.length;r++)n.feature=t.feature(r),e.writeMessage(2,I,n);var a=n.keys;for(r=0;r<a.length;r++)e.writeStringField(3,a[r]);var i=n.values;for(r=0;r<i.length;r++)e.writeMessage(4,B,i[r])}function I(t,e){var r=t.feature;void 0!==r.id&&e.writeVarintField(1,r.id),e.writeMessage(2,z,t),e.writeVarintField(3,r.type),e.writeMessage(4,F,r)}function z(t,e){var r=t.feature,n=t.keys,a=t.values,i=t.keycache,o=t.valuecache;for(var s in r.properties){var l=i[s];void 0===l&&(n.push(s),l=n.length-1,i[s]=l),e.writeVarint(l);var c=r.properties[s],u=typeof c;\"string\"!==u&&\"boolean\"!==u&&\"number\"!==u&&(c=JSON.stringify(c));var h=u+\":\"+c,f=o[h];void 0===f&&(a.push(c),f=a.length-1,o[h]=f),e.writeVarint(f)}}function D(t,e){return(e<<3)+(7&t)}function R(t){return t<<1^t>>31}function F(t,e){for(var r=t.loadGeometry(),n=t.type,a=0,i=0,o=r.length,s=0;s<o;s++){var l=r[s],c=1;1===n&&(c=l.length),e.writeVarint(D(1,c));for(var u=3===n?l.length-1:l.length,h=0;h<u;h++){1===h&&1!==n&&e.writeVarint(D(2,u-1));var f=l[h].x-a,p=l[h].y-i;e.writeVarint(R(f)),e.writeVarint(R(p)),a+=f,i+=p}3===n&&e.writeVarint(D(7,1))}}function B(t,e){var r=typeof t;\"string\"===r?e.writeStringField(1,t):\"boolean\"===r?e.writeBooleanField(7,t):\"number\"===r&&(t%1!=0?e.writeDoubleField(3,t):t<0?e.writeSVarintField(6,t):e.writeVarintField(5,t))}function N(t,e,r,n){j(t,r,n),j(e,2*r,2*n),j(e,2*r+1,2*n+1)}function j(t,e,r){var n=t[e];t[e]=t[r],t[r]=n}function V(t,e,r,n){var a=t-r,i=e-n;return a*a+i*i}E.fromVectorTileJs=C,E.fromGeojsonVt=function(t,e){e=e||{};var r={};for(var n in t)r[n]=new A(t[n].features,e),r[n].name=n,r[n].version=e.version,r[n].extent=e.extent;return P({layers:r})},E.GeoJSONWrapper=L;var U=function(t){return t[0]},q=function(t){return t[1]},H=function(t,e,r,n,a){void 0===e&&(e=U),void 0===r&&(r=q),void 0===n&&(n=64),void 0===a&&(a=Float64Array),this.nodeSize=n,this.points=t;for(var i=t.length<65536?Uint16Array:Uint32Array,o=this.ids=new i(t.length),s=this.coords=new a(2*t.length),l=0;l<t.length;l++)o[l]=l,s[2*l]=e(t[l]),s[2*l+1]=r(t[l]);!function t(e,r,n,a,i,o){if(!(i-a<=n)){var s=a+i>>1;!function t(e,r,n,a,i,o){for(;i>a;){if(i-a>600){var s=i-a+1,l=n-a+1,c=Math.log(s),u=.5*Math.exp(2*c/3),h=.5*Math.sqrt(c*u*(s-u)/s)*(l-s/2<0?-1:1);t(e,r,n,Math.max(a,Math.floor(n-l*u/s+h)),Math.min(i,Math.floor(n+(s-l)*u/s+h)),o)}var f=r[2*n+o],p=a,d=i;for(N(e,r,a,n),r[2*i+o]>f&&N(e,r,a,i);p<d;){for(N(e,r,p,d),p++,d--;r[2*p+o]<f;)p++;for(;r[2*d+o]>f;)d--}r[2*a+o]===f?N(e,r,a,d):N(e,r,++d,i),d<=n&&(a=d+1),n<=d&&(i=d-1)}}(e,r,s,a,i,o%2),t(e,r,n,a,s-1,o+1),t(e,r,n,s+1,i,o+1)}}(o,s,n,0,o.length-1,0)};H.prototype.range=function(t,e,r,n){return function(t,e,r,n,a,i,o){for(var s,l,c=[0,t.length-1,0],u=[];c.length;){var h=c.pop(),f=c.pop(),p=c.pop();if(f-p<=o)for(var d=p;d<=f;d++)s=e[2*d],l=e[2*d+1],s>=r&&s<=a&&l>=n&&l<=i&&u.push(t[d]);else{var g=Math.floor((p+f)/2);s=e[2*g],l=e[2*g+1],s>=r&&s<=a&&l>=n&&l<=i&&u.push(t[g]);var v=(h+1)%2;(0===h?r<=s:n<=l)&&(c.push(p),c.push(g-1),c.push(v)),(0===h?a>=s:i>=l)&&(c.push(g+1),c.push(f),c.push(v))}}return u}(this.ids,this.coords,t,e,r,n,this.nodeSize)},H.prototype.within=function(t,e,r){return function(t,e,r,n,a,i){for(var o=[0,t.length-1,0],s=[],l=a*a;o.length;){var c=o.pop(),u=o.pop(),h=o.pop();if(u-h<=i)for(var f=h;f<=u;f++)V(e[2*f],e[2*f+1],r,n)<=l&&s.push(t[f]);else{var p=Math.floor((h+u)/2),d=e[2*p],g=e[2*p+1];V(d,g,r,n)<=l&&s.push(t[p]);var v=(c+1)%2;(0===c?r-a<=d:n-a<=g)&&(o.push(h),o.push(p-1),o.push(v)),(0===c?r+a>=d:n+a>=g)&&(o.push(p+1),o.push(u),o.push(v))}}return s}(this.ids,this.coords,t,e,r,this.nodeSize)};var G={minZoom:0,maxZoom:16,radius:40,extent:512,nodeSize:64,log:!1,reduce:null,map:function(t){return t}},Y=function(t){this.options=$(Object.create(G),t),this.trees=new Array(this.options.maxZoom+1)};function W(t,e,r,n,a){return{x:t,y:e,zoom:1/0,id:r,parentId:-1,numPoints:n,properties:a}}function X(t,e){var r=t.geometry.coordinates,n=r[0],a=r[1];return{x:K(n),y:Q(a),zoom:1/0,index:e,parentId:-1}}function Z(t){return{type:\"Feature\",id:t.id,properties:J(t),geometry:{type:\"Point\",coordinates:[(n=t.x,360*(n-.5)),(e=t.y,r=(180-360*e)*Math.PI/180,360*Math.atan(Math.exp(r))/Math.PI-90)]}};var e,r,n}function J(t){var e=t.numPoints,r=e>=1e4?Math.round(e/1e3)+\"k\":e>=1e3?Math.round(e/100)/10+\"k\":e;return $($({},t.properties),{cluster:!0,cluster_id:t.id,point_count:e,point_count_abbreviated:r})}function K(t){return t/360+.5}function Q(t){var e=Math.sin(t*Math.PI/180),r=.5-.25*Math.log((1+e)/(1-e))/Math.PI;return r<0?0:r>1?1:r}function $(t,e){for(var r in e)t[r]=e[r];return t}function tt(t){return t.x}function et(t){return t.y}function rt(t,e,r,n,a,i){var o=a-r,s=i-n;if(0!==o||0!==s){var l=((t-r)*o+(e-n)*s)/(o*o+s*s);l>1?(r=a,n=i):l>0&&(r+=o*l,n+=s*l)}return(o=t-r)*o+(s=e-n)*s}function nt(t,e,r,n){var a={id:void 0===t?null:t,type:e,geometry:r,tags:n,minX:1/0,minY:1/0,maxX:-1/0,maxY:-1/0};return function(t){var e=t.geometry,r=t.type;if(\"Point\"===r||\"MultiPoint\"===r||\"LineString\"===r)at(t,e);else if(\"Polygon\"===r||\"MultiLineString\"===r)for(var n=0;n<e.length;n++)at(t,e[n]);else if(\"MultiPolygon\"===r)for(n=0;n<e.length;n++)for(var a=0;a<e[n].length;a++)at(t,e[n][a])}(a),a}function at(t,e){for(var r=0;r<e.length;r+=3)t.minX=Math.min(t.minX,e[r]),t.minY=Math.min(t.minY,e[r+1]),t.maxX=Math.max(t.maxX,e[r]),t.maxY=Math.max(t.maxY,e[r+1])}function it(t,e,r,n){if(e.geometry){var a=e.geometry.coordinates,i=e.geometry.type,o=Math.pow(r.tolerance/((1<<r.maxZoom)*r.extent),2),s=[],l=e.id;if(r.promoteId?l=e.properties[r.promoteId]:r.generateId&&(l=n||0),\"Point\"===i)ot(a,s);else if(\"MultiPoint\"===i)for(var c=0;c<a.length;c++)ot(a[c],s);else if(\"LineString\"===i)st(a,s,o,!1);else if(\"MultiLineString\"===i){if(r.lineMetrics){for(c=0;c<a.length;c++)s=[],st(a[c],s,o,!1),t.push(nt(l,\"LineString\",s,e.properties));return}lt(a,s,o,!1)}else if(\"Polygon\"===i)lt(a,s,o,!0);else{if(\"MultiPolygon\"!==i){if(\"GeometryCollection\"===i){for(c=0;c<e.geometry.geometries.length;c++)it(t,{id:l,geometry:e.geometry.geometries[c],properties:e.properties},r,n);return}throw new Error(\"Input data is not a valid GeoJSON object.\")}for(c=0;c<a.length;c++){var u=[];lt(a[c],u,o,!0),s.push(u)}}t.push(nt(l,i,s,e.properties))}}function ot(t,e){e.push(ct(t[0])),e.push(ut(t[1])),e.push(0)}function st(t,e,r,n){for(var a,i,o=0,s=0;s<t.length;s++){var l=ct(t[s][0]),c=ut(t[s][1]);e.push(l),e.push(c),e.push(0),s>0&&(o+=n?(a*c-l*i)/2:Math.sqrt(Math.pow(l-a,2)+Math.pow(c-i,2))),a=l,i=c}var u=e.length-3;e[2]=1,function t(e,r,n,a){for(var i,o=a,s=n-r>>1,l=n-r,c=e[r],u=e[r+1],h=e[n],f=e[n+1],p=r+3;p<n;p+=3){var d=rt(e[p],e[p+1],c,u,h,f);if(d>o)i=p,o=d;else if(d===o){var g=Math.abs(p-s);g<l&&(i=p,l=g)}}o>a&&(i-r>3&&t(e,r,i,a),e[i+2]=o,n-i>3&&t(e,i,n,a))}(e,0,u,r),e[u+2]=1,e.size=Math.abs(o),e.start=0,e.end=e.size}function lt(t,e,r,n){for(var a=0;a<t.length;a++){var i=[];st(t[a],i,r,n),e.push(i)}}function ct(t){return t/360+.5}function ut(t){var e=Math.sin(t*Math.PI/180),r=.5-.25*Math.log((1+e)/(1-e))/Math.PI;return r<0?0:r>1?1:r}function ht(t,e,r,n,a,i,o,s){if(n/=e,i>=(r/=e)&&o<n)return t;if(o<r||i>=n)return null;for(var l=[],c=0;c<t.length;c++){var u=t[c],h=u.geometry,f=u.type,p=0===a?u.minX:u.minY,d=0===a?u.maxX:u.maxY;if(p>=r&&d<n)l.push(u);else if(!(d<r||p>=n)){var g=[];if(\"Point\"===f||\"MultiPoint\"===f)ft(h,g,r,n,a);else if(\"LineString\"===f)pt(h,g,r,n,a,!1,s.lineMetrics);else if(\"MultiLineString\"===f)gt(h,g,r,n,a,!1);else if(\"Polygon\"===f)gt(h,g,r,n,a,!0);else if(\"MultiPolygon\"===f)for(var v=0;v<h.length;v++){var m=[];gt(h[v],m,r,n,a,!0),m.length&&g.push(m)}if(g.length){if(s.lineMetrics&&\"LineString\"===f){for(v=0;v<g.length;v++)l.push(nt(u.id,f,g[v],u.tags));continue}\"LineString\"!==f&&\"MultiLineString\"!==f||(1===g.length?(f=\"LineString\",g=g[0]):f=\"MultiLineString\"),\"Point\"!==f&&\"MultiPoint\"!==f||(f=3===g.length?\"Point\":\"MultiPoint\"),l.push(nt(u.id,f,g,u.tags))}}}return l.length?l:null}function ft(t,e,r,n,a){for(var i=0;i<t.length;i+=3){var o=t[i+a];o>=r&&o<=n&&(e.push(t[i]),e.push(t[i+1]),e.push(t[i+2]))}}function pt(t,e,r,n,a,i,o){for(var s,l,c=dt(t),u=0===a?mt:yt,h=t.start,f=0;f<t.length-3;f+=3){var p=t[f],d=t[f+1],g=t[f+2],v=t[f+3],m=t[f+4],y=0===a?p:d,x=0===a?v:m,b=!1;o&&(s=Math.sqrt(Math.pow(p-v,2)+Math.pow(d-m,2))),y<r?x>r&&(l=u(c,p,d,v,m,r),o&&(c.start=h+s*l)):y>n?x<n&&(l=u(c,p,d,v,m,n),o&&(c.start=h+s*l)):vt(c,p,d,g),x<r&&y>=r&&(l=u(c,p,d,v,m,r),b=!0),x>n&&y<=n&&(l=u(c,p,d,v,m,n),b=!0),!i&&b&&(o&&(c.end=h+s*l),e.push(c),c=dt(t)),o&&(h+=s)}var _=t.length-3;p=t[_],d=t[_+1],g=t[_+2],(y=0===a?p:d)>=r&&y<=n&&vt(c,p,d,g),_=c.length-3,i&&_>=3&&(c[_]!==c[0]||c[_+1]!==c[1])&&vt(c,c[0],c[1],c[2]),c.length&&e.push(c)}function dt(t){var e=[];return e.size=t.size,e.start=t.start,e.end=t.end,e}function gt(t,e,r,n,a,i){for(var o=0;o<t.length;o++)pt(t[o],e,r,n,a,i,!1)}function vt(t,e,r,n){t.push(e),t.push(r),t.push(n)}function mt(t,e,r,n,a,i){var o=(i-e)/(n-e);return t.push(i),t.push(r+(a-r)*o),t.push(1),o}function yt(t,e,r,n,a,i){var o=(i-r)/(a-r);return t.push(e+(n-e)*o),t.push(i),t.push(1),o}function xt(t,e){for(var r=[],n=0;n<t.length;n++){var a,i=t[n],o=i.type;if(\"Point\"===o||\"MultiPoint\"===o||\"LineString\"===o)a=bt(i.geometry,e);else if(\"MultiLineString\"===o||\"Polygon\"===o){a=[];for(var s=0;s<i.geometry.length;s++)a.push(bt(i.geometry[s],e))}else if(\"MultiPolygon\"===o)for(a=[],s=0;s<i.geometry.length;s++){for(var l=[],c=0;c<i.geometry[s].length;c++)l.push(bt(i.geometry[s][c],e));a.push(l)}r.push(nt(i.id,o,a,i.tags))}return r}function bt(t,e){var r=[];r.size=t.size,void 0!==t.start&&(r.start=t.start,r.end=t.end);for(var n=0;n<t.length;n+=3)r.push(t[n]+e,t[n+1],t[n+2]);return r}function _t(t,e){if(t.transformed)return t;var r,n,a,i=1<<t.z,o=t.x,s=t.y;for(r=0;r<t.features.length;r++){var l=t.features[r],c=l.geometry,u=l.type;if(l.geometry=[],1===u)for(n=0;n<c.length;n+=2)l.geometry.push(wt(c[n],c[n+1],e,i,o,s));else for(n=0;n<c.length;n++){var h=[];for(a=0;a<c[n].length;a+=2)h.push(wt(c[n][a],c[n][a+1],e,i,o,s));l.geometry.push(h)}}return t.transformed=!0,t}function wt(t,e,r,n,a,i){return[Math.round(r*(t*n-a)),Math.round(r*(e*n-i))]}function kt(t,e,r,n,a){for(var i=e===a.maxZoom?0:a.tolerance/((1<<e)*a.extent),o={features:[],numPoints:0,numSimplified:0,numFeatures:0,source:null,x:r,y:n,z:e,transformed:!1,minX:2,minY:1,maxX:-1,maxY:0},s=0;s<t.length;s++){o.numFeatures++,Tt(o,t[s],i,a);var l=t[s].minX,c=t[s].minY,u=t[s].maxX,h=t[s].maxY;l<o.minX&&(o.minX=l),c<o.minY&&(o.minY=c),u>o.maxX&&(o.maxX=u),h>o.maxY&&(o.maxY=h)}return o}function Tt(t,e,r,n){var a=e.geometry,i=e.type,o=[];if(\"Point\"===i||\"MultiPoint\"===i)for(var s=0;s<a.length;s+=3)o.push(a[s]),o.push(a[s+1]),t.numPoints++,t.numSimplified++;else if(\"LineString\"===i)At(o,a,t,r,!1,!1);else if(\"MultiLineString\"===i||\"Polygon\"===i)for(s=0;s<a.length;s++)At(o,a[s],t,r,\"Polygon\"===i,0===s);else if(\"MultiPolygon\"===i)for(var l=0;l<a.length;l++){var c=a[l];for(s=0;s<c.length;s++)At(o,c[s],t,r,!0,0===s)}if(o.length){var u=e.tags||null;if(\"LineString\"===i&&n.lineMetrics){for(var h in u={},e.tags)u[h]=e.tags[h];u.mapbox_clip_start=a.start/a.size,u.mapbox_clip_end=a.end/a.size}var f={geometry:o,type:\"Polygon\"===i||\"MultiPolygon\"===i?3:\"LineString\"===i||\"MultiLineString\"===i?2:1,tags:u};null!==e.id&&(f.id=e.id),t.features.push(f)}}function At(t,e,r,n,a,i){var o=n*n;if(n>0&&e.size<(a?o:n))r.numPoints+=e.length/3;else{for(var s=[],l=0;l<e.length;l+=3)(0===n||e[l+2]>o)&&(r.numSimplified++,s.push(e[l]),s.push(e[l+1])),r.numPoints++;a&&function(t,e){for(var r=0,n=0,a=t.length,i=a-2;n<a;i=n,n+=2)r+=(t[n]-t[i])*(t[n+1]+t[i+1]);if(r>0===e)for(n=0,a=t.length;n<a/2;n+=2){var o=t[n],s=t[n+1];t[n]=t[a-2-n],t[n+1]=t[a-1-n],t[a-2-n]=o,t[a-1-n]=s}}(s,i),t.push(s)}}function Mt(t,e){var r=(e=this.options=function(t,e){for(var r in e)t[r]=e[r];return t}(Object.create(this.options),e)).debug;if(r&&console.time(\"preprocess data\"),e.maxZoom<0||e.maxZoom>24)throw new Error(\"maxZoom should be in the 0-24 range\");if(e.promoteId&&e.generateId)throw new Error(\"promoteId and generateId cannot be used together.\");var n=function(t,e){var r=[];if(\"FeatureCollection\"===t.type)for(var n=0;n<t.features.length;n++)it(r,t.features[n],e,n);else\"Feature\"===t.type?it(r,t,e):it(r,{geometry:t},e);return r}(t,e);this.tiles={},this.tileCoords=[],r&&(console.timeEnd(\"preprocess data\"),console.log(\"index: maxZoom: %d, maxPoints: %d\",e.indexMaxZoom,e.indexMaxPoints),console.time(\"generate tiles\"),this.stats={},this.total=0),(n=function(t,e){var r=e.buffer/e.extent,n=t,a=ht(t,1,-1-r,r,0,-1,2,e),i=ht(t,1,1-r,2+r,0,-1,2,e);return(a||i)&&(n=ht(t,1,-r,1+r,0,-1,2,e)||[],a&&(n=xt(a,1).concat(n)),i&&(n=n.concat(xt(i,-1)))),n}(n,e)).length&&this.splitTile(n,0,0,0),r&&(n.length&&console.log(\"features: %d, points: %d\",this.tiles[0].numFeatures,this.tiles[0].numPoints),console.timeEnd(\"generate tiles\"),console.log(\"tiles generated:\",this.total,JSON.stringify(this.stats)))}function St(t,e,r){return 32*((1<<t)*r+e)+t}function Et(t,e){var r=t.tileID.canonical;if(!this._geoJSONIndex)return e(null,null);var n=this._geoJSONIndex.getTile(r.z,r.x,r.y);if(!n)return e(null,null);var a=new k(n.features),i=E(a);0===i.byteOffset&&i.byteLength===i.buffer.byteLength||(i=new Uint8Array(i)),e(null,{vectorTile:a,rawData:i.buffer})}Y.prototype.load=function(t){var e=this.options,r=e.log,n=e.minZoom,a=e.maxZoom,i=e.nodeSize;r&&console.time(\"total time\");var o=\"prepare \"+t.length+\" points\";r&&console.time(o),this.points=t;for(var s=[],l=0;l<t.length;l++)t[l].geometry&&s.push(X(t[l],l));this.trees[a+1]=new H(s,tt,et,i,Float32Array),r&&console.timeEnd(o);for(var c=a;c>=n;c--){var u=+Date.now();s=this._cluster(s,c),this.trees[c]=new H(s,tt,et,i,Float32Array),r&&console.log(\"z%d: %d clusters in %dms\",c,s.length,+Date.now()-u)}return r&&console.timeEnd(\"total time\"),this},Y.prototype.getClusters=function(t,e){var r=((t[0]+180)%360+360)%360-180,n=Math.max(-90,Math.min(90,t[1])),a=180===t[2]?180:((t[2]+180)%360+360)%360-180,i=Math.max(-90,Math.min(90,t[3]));if(t[2]-t[0]>=360)r=-180,a=180;else if(r>a){var o=this.getClusters([r,n,180,i],e),s=this.getClusters([-180,n,a,i],e);return o.concat(s)}for(var l=this.trees[this._limitZoom(e)],c=[],u=0,h=l.range(K(r),Q(i),K(a),Q(n));u<h.length;u+=1){var f=h[u],p=l.points[f];c.push(p.numPoints?Z(p):this.points[p.index])}return c},Y.prototype.getChildren=function(t){var e=t>>5,r=t%32,n=\"No cluster with the specified id.\",a=this.trees[r];if(!a)throw new Error(n);var i=a.points[e];if(!i)throw new Error(n);for(var o=this.options.radius/(this.options.extent*Math.pow(2,r-1)),s=[],l=0,c=a.within(i.x,i.y,o);l<c.length;l+=1){var u=c[l],h=a.points[u];h.parentId===t&&s.push(h.numPoints?Z(h):this.points[h.index])}if(0===s.length)throw new Error(n);return s},Y.prototype.getLeaves=function(t,e,r){e=e||10,r=r||0;var n=[];return this._appendLeaves(n,t,e,r,0),n},Y.prototype.getTile=function(t,e,r){var n=this.trees[this._limitZoom(t)],a=Math.pow(2,t),i=this.options,o=i.extent,s=i.radius/o,l=(r-s)/a,c=(r+1+s)/a,u={features:[]};return this._addTileFeatures(n.range((e-s)/a,l,(e+1+s)/a,c),n.points,e,r,a,u),0===e&&this._addTileFeatures(n.range(1-s/a,l,1,c),n.points,a,r,a,u),e===a-1&&this._addTileFeatures(n.range(0,l,s/a,c),n.points,-1,r,a,u),u.features.length?u:null},Y.prototype.getClusterExpansionZoom=function(t){for(var e=t%32-1;e<=this.options.maxZoom;){var r=this.getChildren(t);if(e++,1!==r.length)break;t=r[0].properties.cluster_id}return e},Y.prototype._appendLeaves=function(t,e,r,n,a){for(var i=0,o=this.getChildren(e);i<o.length;i+=1){var s=o[i],l=s.properties;if(l&&l.cluster?a+l.point_count<=n?a+=l.point_count:a=this._appendLeaves(t,l.cluster_id,r,n,a):a<n?a++:t.push(s),t.length===r)break}return a},Y.prototype._addTileFeatures=function(t,e,r,n,a,i){for(var o=0,s=t;o<s.length;o+=1){var l=e[s[o]],c={type:1,geometry:[[Math.round(this.options.extent*(l.x*a-r)),Math.round(this.options.extent*(l.y*a-n))]],tags:l.numPoints?J(l):this.points[l.index].properties},u=l.numPoints?l.id:this.points[l.index].id;void 0!==u&&(c.id=u),i.features.push(c)}},Y.prototype._limitZoom=function(t){return Math.max(this.options.minZoom,Math.min(t,this.options.maxZoom+1))},Y.prototype._cluster=function(t,e){for(var r=[],n=this.options,a=n.radius,i=n.extent,o=n.reduce,s=a/(i*Math.pow(2,e)),l=0;l<t.length;l++){var c=t[l];if(!(c.zoom<=e)){c.zoom=e;for(var u=this.trees[e+1],h=u.within(c.x,c.y,s),f=c.numPoints||1,p=c.x*f,d=c.y*f,g=o&&f>1?this._map(c,!0):null,v=(l<<5)+(e+1),m=0,y=h;m<y.length;m+=1){var x=y[m],b=u.points[x];if(!(b.zoom<=e)){b.zoom=e;var _=b.numPoints||1;p+=b.x*_,d+=b.y*_,f+=_,b.parentId=v,o&&(g||(g=this._map(c,!0)),o(g,this._map(b)))}}1===f?r.push(c):(c.parentId=v,r.push(W(p/f,d/f,v,f,g)))}}return r},Y.prototype._map=function(t,e){if(t.numPoints)return e?$({},t.properties):t.properties;var r=this.points[t.index].properties,n=this.options.map(r);return e&&n===r?$({},n):n},Mt.prototype.options={maxZoom:14,indexMaxZoom:5,indexMaxPoints:1e5,tolerance:3,extent:4096,buffer:64,lineMetrics:!1,promoteId:null,generateId:!1,debug:0},Mt.prototype.splitTile=function(t,e,r,n,a,i,o){for(var s=[t,e,r,n],l=this.options,c=l.debug;s.length;){n=s.pop(),r=s.pop(),e=s.pop(),t=s.pop();var u=1<<e,h=St(e,r,n),f=this.tiles[h];if(!f&&(c>1&&console.time(\"creation\"),f=this.tiles[h]=kt(t,e,r,n,l),this.tileCoords.push({z:e,x:r,y:n}),c)){c>1&&(console.log(\"tile z%d-%d-%d (features: %d, points: %d, simplified: %d)\",e,r,n,f.numFeatures,f.numPoints,f.numSimplified),console.timeEnd(\"creation\"));var p=\"z\"+e;this.stats[p]=(this.stats[p]||0)+1,this.total++}if(f.source=t,a){if(e===l.maxZoom||e===a)continue;var d=1<<a-e;if(r!==Math.floor(i/d)||n!==Math.floor(o/d))continue}else if(e===l.indexMaxZoom||f.numPoints<=l.indexMaxPoints)continue;if(f.source=null,0!==t.length){c>1&&console.time(\"clipping\");var g,v,m,y,x,b,_=.5*l.buffer/l.extent,w=.5-_,k=.5+_,T=1+_;g=v=m=y=null,x=ht(t,u,r-_,r+k,0,f.minX,f.maxX,l),b=ht(t,u,r+w,r+T,0,f.minX,f.maxX,l),t=null,x&&(g=ht(x,u,n-_,n+k,1,f.minY,f.maxY,l),v=ht(x,u,n+w,n+T,1,f.minY,f.maxY,l),x=null),b&&(m=ht(b,u,n-_,n+k,1,f.minY,f.maxY,l),y=ht(b,u,n+w,n+T,1,f.minY,f.maxY,l),b=null),c>1&&console.timeEnd(\"clipping\"),s.push(g||[],e+1,2*r,2*n),s.push(v||[],e+1,2*r,2*n+1),s.push(m||[],e+1,2*r+1,2*n),s.push(y||[],e+1,2*r+1,2*n+1)}}},Mt.prototype.getTile=function(t,e,r){var n=this.options,a=n.extent,i=n.debug;if(t<0||t>24)return null;var o=1<<t,s=St(t,e=(e%o+o)%o,r);if(this.tiles[s])return _t(this.tiles[s],a);i>1&&console.log(\"drilling down to z%d-%d-%d\",t,e,r);for(var l,c=t,u=e,h=r;!l&&c>0;)c--,u=Math.floor(u/2),h=Math.floor(h/2),l=this.tiles[St(c,u,h)];return l&&l.source?(i>1&&console.log(\"found parent tile z%d-%d-%d\",c,u,h),i>1&&console.time(\"drilling down\"),this.splitTile(l.source,c,u,h,t,e,r),i>1&&console.timeEnd(\"drilling down\"),this.tiles[s]?_t(this.tiles[s],a):null):null};var Ct=function(e){function r(t,r,n){e.call(this,t,r,Et),n&&(this.loadGeoJSON=n)}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.loadData=function(t,e){this._pendingCallback&&this._pendingCallback(null,{abandoned:!0}),this._pendingCallback=e,this._pendingLoadDataParams=t,this._state&&\"Idle\"!==this._state?this._state=\"NeedsLoadData\":(this._state=\"Coalescing\",this._loadData())},r.prototype._loadData=function(){var e=this;if(this._pendingCallback&&this._pendingLoadDataParams){var r=this._pendingCallback,n=this._pendingLoadDataParams;delete this._pendingCallback,delete this._pendingLoadDataParams;var a=!!(n&&n.request&&n.request.collectResourceTiming)&&new l.Performance(n.request);this.loadGeoJSON(n,function(i,o){if(i||!o)return r(i);if(\"object\"!=typeof o)return r(new Error(\"Input data given to '\"+n.source+\"' is not a valid GeoJSON object.\"));!function t(e,r){switch(e&&e.type||null){case\"FeatureCollection\":return e.features=e.features.map(y(t,r)),e;case\"GeometryCollection\":return e.geometries=e.geometries.map(y(t,r)),e;case\"Feature\":return e.geometry=t(e.geometry,r),e;case\"Polygon\":case\"MultiPolygon\":return function(t,e){return\"Polygon\"===t.type?t.coordinates=x(t.coordinates,e):\"MultiPolygon\"===t.type&&(t.coordinates=t.coordinates.map(y(x,e))),t}(e,r);default:return e}}(o,!0);try{e._geoJSONIndex=n.cluster?new Y(function(e){var r=e.superclusterOptions,n=e.clusterProperties;if(!n||!r)return r;for(var a={},i={},o={accumulated:null,zoom:0},s={properties:null},l=Object.keys(n),c=0,u=l;c<u.length;c+=1){var h=u[c],f=n[h],p=f[0],d=f[1],g=t.createExpression(d),v=t.createExpression(\"string\"==typeof p?[p,[\"accumulated\"],[\"get\",h]]:p);a[h]=g.value,i[h]=v.value}return r.map=function(t){s.properties=t;for(var e={},r=0,n=l;r<n.length;r+=1){var i=n[r];e[i]=a[i].evaluate(o,s)}return e},r.reduce=function(t,e){s.properties=e;for(var r=0,n=l;r<n.length;r+=1){var a=n[r];o.accumulated=t[a],t[a]=i[a].evaluate(o,s)}},r}(n)).load(o.features):new Mt(o,n.geojsonVtOptions)}catch(i){return r(i)}e.loaded={};var s={};if(a){var l=a.finish();l&&(s.resourceTiming={},s.resourceTiming[n.source]=JSON.parse(JSON.stringify(l)))}r(null,s)})}},r.prototype.coalesce=function(){\"Coalescing\"===this._state?this._state=\"Idle\":\"NeedsLoadData\"===this._state&&(this._state=\"Coalescing\",this._loadData())},r.prototype.reloadTile=function(t,r){var n=this.loaded,a=t.uid;return n&&n[a]?e.prototype.reloadTile.call(this,t,r):this.loadTile(t,r)},r.prototype.loadGeoJSON=function(e,r){if(e.request)t.getJSON(e.request,r);else{if(\"string\"!=typeof e.data)return r(new Error(\"Input data given to '\"+e.source+\"' is not a valid GeoJSON object.\"));try{return r(null,JSON.parse(e.data))}catch(t){return r(new Error(\"Input data given to '\"+e.source+\"' is not a valid GeoJSON object.\"))}}},r.prototype.removeSource=function(t,e){this._pendingCallback&&this._pendingCallback(null,{abandoned:!0}),e()},r.prototype.getClusterExpansionZoom=function(t,e){e(null,this._geoJSONIndex.getClusterExpansionZoom(t.clusterId))},r.prototype.getClusterChildren=function(t,e){e(null,this._geoJSONIndex.getChildren(t.clusterId))},r.prototype.getClusterLeaves=function(t,e){e(null,this._geoJSONIndex.getLeaves(t.clusterId,t.limit,t.offset))},r}(h),Lt=function(e){var r=this;this.self=e,this.actor=new t.Actor(e,this),this.layerIndexes={},this.workerSourceTypes={vector:h,geojson:Ct},this.workerSources={},this.demWorkerSources={},this.self.registerWorkerSource=function(t,e){if(r.workerSourceTypes[t])throw new Error('Worker source with name \"'+t+'\" already registered.');r.workerSourceTypes[t]=e},this.self.registerRTLTextPlugin=function(e){if(t.plugin.isLoaded())throw new Error(\"RTL text plugin already registered.\");t.plugin.applyArabicShaping=e.applyArabicShaping,t.plugin.processBidirectionalText=e.processBidirectionalText,t.plugin.processStyledBidirectionalText=e.processStyledBidirectionalText}};return Lt.prototype.setReferrer=function(t,e){this.referrer=e},Lt.prototype.setLayers=function(t,e,r){this.getLayerIndex(t).replace(e),r()},Lt.prototype.updateLayers=function(t,e,r){this.getLayerIndex(t).update(e.layers,e.removedIds),r()},Lt.prototype.loadTile=function(t,e,r){this.getWorkerSource(t,e.type,e.source).loadTile(e,r)},Lt.prototype.loadDEMTile=function(t,e,r){this.getDEMWorkerSource(t,e.source).loadTile(e,r)},Lt.prototype.reloadTile=function(t,e,r){this.getWorkerSource(t,e.type,e.source).reloadTile(e,r)},Lt.prototype.abortTile=function(t,e,r){this.getWorkerSource(t,e.type,e.source).abortTile(e,r)},Lt.prototype.removeTile=function(t,e,r){this.getWorkerSource(t,e.type,e.source).removeTile(e,r)},Lt.prototype.removeDEMTile=function(t,e){this.getDEMWorkerSource(t,e.source).removeTile(e)},Lt.prototype.removeSource=function(t,e,r){if(this.workerSources[t]&&this.workerSources[t][e.type]&&this.workerSources[t][e.type][e.source]){var n=this.workerSources[t][e.type][e.source];delete this.workerSources[t][e.type][e.source],void 0!==n.removeSource?n.removeSource(e,r):r()}},Lt.prototype.loadWorkerSource=function(t,e,r){try{this.self.importScripts(e.url),r()}catch(t){r(t.toString())}},Lt.prototype.loadRTLTextPlugin=function(e,r,n){try{t.plugin.isLoaded()||(this.self.importScripts(r),n(t.plugin.isLoaded()?null:new Error(\"RTL Text Plugin failed to import scripts from \"+r)))}catch(t){n(t.toString())}},Lt.prototype.getLayerIndex=function(t){var e=this.layerIndexes[t];return e||(e=this.layerIndexes[t]=new n),e},Lt.prototype.getWorkerSource=function(t,e,r){var n=this;if(this.workerSources[t]||(this.workerSources[t]={}),this.workerSources[t][e]||(this.workerSources[t][e]={}),!this.workerSources[t][e][r]){var a={send:function(e,r,a){n.actor.send(e,r,a,t)}};this.workerSources[t][e][r]=new this.workerSourceTypes[e](a,this.getLayerIndex(t))}return this.workerSources[t][e][r]},Lt.prototype.getDEMWorkerSource=function(t,e){return this.demWorkerSources[t]||(this.demWorkerSources[t]={}),this.demWorkerSources[t][e]||(this.demWorkerSources[t][e]=new f),this.demWorkerSources[t][e]},Lt.prototype.enforceCacheSizeLimit=function(e,r){t.enforceCacheSizeLimit(r)},\"undefined\"!=typeof WorkerGlobalScope&&void 0!==t.window&&t.window instanceof WorkerGlobalScope&&(t.window.worker=new Lt(t.window)),Lt}),n(0,function(t){var e=t.createCommonjsModule(function(t){function e(t){return!!(\"undefined\"!=typeof window&&\"undefined\"!=typeof document&&Array.prototype&&Array.prototype.every&&Array.prototype.filter&&Array.prototype.forEach&&Array.prototype.indexOf&&Array.prototype.lastIndexOf&&Array.prototype.map&&Array.prototype.some&&Array.prototype.reduce&&Array.prototype.reduceRight&&Array.isArray&&Function.prototype&&Function.prototype.bind&&Object.keys&&Object.create&&Object.getPrototypeOf&&Object.getOwnPropertyNames&&Object.isSealed&&Object.isFrozen&&Object.isExtensible&&Object.getOwnPropertyDescriptor&&Object.defineProperty&&Object.defineProperties&&Object.seal&&Object.freeze&&Object.preventExtensions&&\"JSON\"in window&&\"parse\"in JSON&&\"stringify\"in JSON&&function(){if(!(\"Worker\"in window&&\"Blob\"in window&&\"URL\"in window))return!1;var t,e,r=new Blob([\"\"],{type:\"text/javascript\"}),n=URL.createObjectURL(r);try{e=new Worker(n),t=!0}catch(e){t=!1}return e&&e.terminate(),URL.revokeObjectURL(n),t}()&&\"Uint8ClampedArray\"in window&&ArrayBuffer.isView&&function(t){return void 0===r[t]&&(r[t]=function(t){var r=document.createElement(\"canvas\"),n=Object.create(e.webGLContextAttributes);return n.failIfMajorPerformanceCaveat=t,r.probablySupportsContext?r.probablySupportsContext(\"webgl\",n)||r.probablySupportsContext(\"experimental-webgl\",n):r.supportsContext?r.supportsContext(\"webgl\",n)||r.supportsContext(\"experimental-webgl\",n):r.getContext(\"webgl\",n)||r.getContext(\"experimental-webgl\",n)}(t)),r[t]}(t&&t.failIfMajorPerformanceCaveat))}t.exports?t.exports=e:window&&(window.mapboxgl=window.mapboxgl||{},window.mapboxgl.supported=e);var r={};e.webGLContextAttributes={antialias:!1,alpha:!0,stencil:!0,depth:!0}}),r={create:function(e,r,n){var a=t.window.document.createElement(e);return void 0!==r&&(a.className=r),n&&n.appendChild(a),a},createNS:function(e,r){return t.window.document.createElementNS(e,r)}},n=t.window.document.documentElement.style;function a(t){if(!n)return t[0];for(var e=0;e<t.length;e++)if(t[e]in n)return t[e];return t[0]}var i,o=a([\"userSelect\",\"MozUserSelect\",\"WebkitUserSelect\",\"msUserSelect\"]);r.disableDrag=function(){n&&o&&(i=n[o],n[o]=\"none\")},r.enableDrag=function(){n&&o&&(n[o]=i)};var s=a([\"transform\",\"WebkitTransform\"]);r.setTransform=function(t,e){t.style[s]=e};var l=!1;try{var c=Object.defineProperty({},\"passive\",{get:function(){l=!0}});t.window.addEventListener(\"test\",c,c),t.window.removeEventListener(\"test\",c,c)}catch(t){l=!1}r.addEventListener=function(t,e,r,n){void 0===n&&(n={}),\"passive\"in n&&l?t.addEventListener(e,r,n):t.addEventListener(e,r,n.capture)},r.removeEventListener=function(t,e,r,n){void 0===n&&(n={}),\"passive\"in n&&l?t.removeEventListener(e,r,n):t.removeEventListener(e,r,n.capture)};var u=function(e){e.preventDefault(),e.stopPropagation(),t.window.removeEventListener(\"click\",u,!0)};function h(t){var e=t.userImage;return!!(e&&e.render&&e.render())&&(t.data.replace(new Uint8Array(e.data.buffer)),!0)}r.suppressClick=function(){t.window.addEventListener(\"click\",u,!0),t.window.setTimeout(function(){t.window.removeEventListener(\"click\",u,!0)},0)},r.mousePos=function(e,r){var n=e.getBoundingClientRect(),a=t.window.TouchEvent&&r instanceof t.window.TouchEvent?r.touches[0]:r;return new t.Point(a.clientX-n.left-e.clientLeft,a.clientY-n.top-e.clientTop)},r.touchPos=function(e,r){for(var n=e.getBoundingClientRect(),a=[],i=\"touchend\"===r.type?r.changedTouches:r.touches,o=0;o<i.length;o++)a.push(new t.Point(i[o].clientX-n.left-e.clientLeft,i[o].clientY-n.top-e.clientTop));return a},r.mouseButton=function(e){return void 0!==t.window.InstallTrigger&&2===e.button&&e.ctrlKey&&t.window.navigator.platform.toUpperCase().indexOf(\"MAC\")>=0?0:e.button},r.remove=function(t){t.parentNode&&t.parentNode.removeChild(t)};var f=function(e){function r(){e.call(this),this.images={},this.updatedImages={},this.callbackDispatchedThisFrame={},this.loaded=!1,this.requestors=[],this.patterns={},this.atlasImage=new t.RGBAImage({width:1,height:1}),this.dirty=!0}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.isLoaded=function(){return this.loaded},r.prototype.setLoaded=function(t){if(this.loaded!==t&&(this.loaded=t,t)){for(var e=0,r=this.requestors;e<r.length;e+=1){var n=r[e],a=n.ids,i=n.callback;this._notify(a,i)}this.requestors=[]}},r.prototype.getImage=function(t){return this.images[t]},r.prototype.addImage=function(t,e){this.images[t]=e},r.prototype.updateImage=function(t,e){var r=this.images[t];e.version=r.version+1,this.images[t]=e,this.updatedImages[t]=!0},r.prototype.removeImage=function(t){var e=this.images[t];delete this.images[t],delete this.patterns[t],e.userImage&&e.userImage.onRemove&&e.userImage.onRemove()},r.prototype.listImages=function(){return Object.keys(this.images)},r.prototype.getImages=function(t,e){var r=!0;if(!this.isLoaded())for(var n=0,a=t;n<a.length;n+=1){var i=a[n];this.images[i]||(r=!1)}this.isLoaded()||r?this._notify(t,e):this.requestors.push({ids:t,callback:e})},r.prototype._notify=function(e,r){for(var n={},a=0,i=e;a<i.length;a+=1){var o=i[a];this.images[o]||this.fire(new t.Event(\"styleimagemissing\",{id:o}));var s=this.images[o];s?n[o]={data:s.data.clone(),pixelRatio:s.pixelRatio,sdf:s.sdf,version:s.version,hasRenderCallback:Boolean(s.userImage&&s.userImage.render)}:t.warnOnce('Image \"'+o+'\" could not be loaded. Please make sure you have added the image with map.addImage() or a \"sprite\" property in your style. You can provide missing images by listening for the \"styleimagemissing\" map event.')}r(null,n)},r.prototype.getPixelSize=function(){var t=this.atlasImage;return{width:t.width,height:t.height}},r.prototype.getPattern=function(e){var r=this.patterns[e],n=this.getImage(e);if(!n)return null;if(r&&r.position.version===n.version)return r.position;if(r)r.position.version=n.version;else{var a={w:n.data.width+2,h:n.data.height+2,x:0,y:0},i=new t.ImagePosition(a,n);this.patterns[e]={bin:a,position:i}}return this._updatePatternAtlas(),this.patterns[e].position},r.prototype.bind=function(e){var r=e.gl;this.atlasTexture?this.dirty&&(this.atlasTexture.update(this.atlasImage),this.dirty=!1):this.atlasTexture=new t.Texture(e,this.atlasImage,r.RGBA),this.atlasTexture.bind(r.LINEAR,r.CLAMP_TO_EDGE)},r.prototype._updatePatternAtlas=function(){var e=[];for(var r in this.patterns)e.push(this.patterns[r].bin);var n=t.potpack(e),a=n.w,i=n.h,o=this.atlasImage;for(var s in o.resize({width:a||1,height:i||1}),this.patterns){var l=this.patterns[s].bin,c=l.x+1,u=l.y+1,h=this.images[s].data,f=h.width,p=h.height;t.RGBAImage.copy(h,o,{x:0,y:0},{x:c,y:u},{width:f,height:p}),t.RGBAImage.copy(h,o,{x:0,y:p-1},{x:c,y:u-1},{width:f,height:1}),t.RGBAImage.copy(h,o,{x:0,y:0},{x:c,y:u+p},{width:f,height:1}),t.RGBAImage.copy(h,o,{x:f-1,y:0},{x:c-1,y:u},{width:1,height:p}),t.RGBAImage.copy(h,o,{x:0,y:0},{x:c+f,y:u},{width:1,height:p})}this.dirty=!0},r.prototype.beginFrame=function(){this.callbackDispatchedThisFrame={}},r.prototype.dispatchRenderCallbacks=function(t){for(var e=0,r=t;e<r.length;e+=1){var n=r[e];if(!this.callbackDispatchedThisFrame[n]){this.callbackDispatchedThisFrame[n]=!0;var a=this.images[n];h(a)&&this.updateImage(n,a)}}},r}(t.Evented),p=v,d=v,g=1e20;function v(t,e,r,n,a,i){this.fontSize=t||24,this.buffer=void 0===e?3:e,this.cutoff=n||.25,this.fontFamily=a||\"sans-serif\",this.fontWeight=i||\"normal\",this.radius=r||8;var o=this.size=this.fontSize+2*this.buffer;this.canvas=document.createElement(\"canvas\"),this.canvas.width=this.canvas.height=o,this.ctx=this.canvas.getContext(\"2d\"),this.ctx.font=this.fontWeight+\" \"+this.fontSize+\"px \"+this.fontFamily,this.ctx.textBaseline=\"middle\",this.ctx.fillStyle=\"black\",this.gridOuter=new Float64Array(o*o),this.gridInner=new Float64Array(o*o),this.f=new Float64Array(o),this.d=new Float64Array(o),this.z=new Float64Array(o+1),this.v=new Int16Array(o),this.middle=Math.round(o/2*(navigator.userAgent.indexOf(\"Gecko/\")>=0?1.2:1))}function m(t,e,r,n,a,i,o){for(var s=0;s<e;s++){for(var l=0;l<r;l++)n[l]=t[l*e+s];for(y(n,a,i,o,r),l=0;l<r;l++)t[l*e+s]=a[l]}for(l=0;l<r;l++){for(s=0;s<e;s++)n[s]=t[l*e+s];for(y(n,a,i,o,e),s=0;s<e;s++)t[l*e+s]=Math.sqrt(a[s])}}function y(t,e,r,n,a){r[0]=0,n[0]=-g,n[1]=+g;for(var i=1,o=0;i<a;i++){for(var s=(t[i]+i*i-(t[r[o]]+r[o]*r[o]))/(2*i-2*r[o]);s<=n[o];)o--,s=(t[i]+i*i-(t[r[o]]+r[o]*r[o]))/(2*i-2*r[o]);r[++o]=i,n[o]=s,n[o+1]=+g}for(i=0,o=0;i<a;i++){for(;n[o+1]<i;)o++;e[i]=(i-r[o])*(i-r[o])+t[r[o]]}}v.prototype.draw=function(t){this.ctx.clearRect(0,0,this.size,this.size),this.ctx.fillText(t,this.buffer,this.middle);for(var e=this.ctx.getImageData(0,0,this.size,this.size),r=new Uint8ClampedArray(this.size*this.size),n=0;n<this.size*this.size;n++){var a=e.data[4*n+3]/255;this.gridOuter[n]=1===a?0:0===a?g:Math.pow(Math.max(0,.5-a),2),this.gridInner[n]=1===a?g:0===a?0:Math.pow(Math.max(0,a-.5),2)}for(m(this.gridOuter,this.size,this.size,this.f,this.d,this.v,this.z),m(this.gridInner,this.size,this.size,this.f,this.d,this.v,this.z),n=0;n<this.size*this.size;n++){var i=this.gridOuter[n]-this.gridInner[n];r[n]=Math.max(0,Math.min(255,Math.round(255-255*(i/this.radius+this.cutoff))))}return r},p.default=d;var x=function(t,e){this.requestManager=t,this.localIdeographFontFamily=e,this.entries={}};x.prototype.setURL=function(t){this.url=t},x.prototype.getGlyphs=function(e,r){var n=this,a=[];for(var i in e)for(var o=0,s=e[i];o<s.length;o+=1){var l=s[o];a.push({stack:i,id:l})}t.asyncAll(a,function(t,e){var r=t.stack,a=t.id,i=n.entries[r];i||(i=n.entries[r]={glyphs:{},requests:{}});var o=i.glyphs[a];if(void 0===o){if(o=n._tinySDF(i,r,a))return i.glyphs[a]=o,void e(null,{stack:r,id:a,glyph:o});var s=Math.floor(a/256);if(256*s>65535)e(new Error(\"glyphs > 65535 not supported\"));else{var l=i.requests[s];l||(l=i.requests[s]=[],x.loadGlyphRange(r,s,n.url,n.requestManager,function(t,e){if(e)for(var r in e)n._doesCharSupportLocalGlyph(+r)||(i.glyphs[+r]=e[+r]);for(var a=0,o=l;a<o.length;a+=1)(0,o[a])(t,e);delete i.requests[s]})),l.push(function(t,n){t?e(t):n&&e(null,{stack:r,id:a,glyph:n[a]||null})})}}else e(null,{stack:r,id:a,glyph:o})},function(t,e){if(t)r(t);else if(e){for(var n={},a=0,i=e;a<i.length;a+=1){var o=i[a],s=o.stack,l=o.id,c=o.glyph;(n[s]||(n[s]={}))[l]=c&&{id:c.id,bitmap:c.bitmap.clone(),metrics:c.metrics}}r(null,n)}})},x.prototype._doesCharSupportLocalGlyph=function(e){return!!this.localIdeographFontFamily&&(t.isChar[\"CJK Unified Ideographs\"](e)||t.isChar[\"Hangul Syllables\"](e)||t.isChar.Hiragana(e)||t.isChar.Katakana(e))},x.prototype._tinySDF=function(e,r,n){var a=this.localIdeographFontFamily;if(a&&this._doesCharSupportLocalGlyph(n)){var i=e.tinySDF;if(!i){var o=\"400\";/bold/i.test(r)?o=\"900\":/medium/i.test(r)?o=\"500\":/light/i.test(r)&&(o=\"200\"),i=e.tinySDF=new x.TinySDF(24,3,8,.25,a,o)}return{id:n,bitmap:new t.AlphaImage({width:30,height:30},i.draw(String.fromCharCode(n))),metrics:{width:24,height:24,left:0,top:-8,advance:24}}}},x.loadGlyphRange=function(e,r,n,a,i){var o=256*r,s=o+255,l=a.transformRequest(a.normalizeGlyphsURL(n).replace(\"{fontstack}\",e).replace(\"{range}\",o+\"-\"+s),t.ResourceType.Glyphs);t.getArrayBuffer(l,function(e,r){if(e)i(e);else if(r){for(var n={},a=0,o=t.parseGlyphPBF(r);a<o.length;a+=1){var s=o[a];n[s.id]=s}i(null,n)}})},x.TinySDF=p;var b=function(){this.specification=t.styleSpec.light.position};b.prototype.possiblyEvaluate=function(e,r){return t.sphericalToCartesian(e.expression.evaluate(r))},b.prototype.interpolate=function(e,r,n){return{x:t.number(e.x,r.x,n),y:t.number(e.y,r.y,n),z:t.number(e.z,r.z,n)}};var _=new t.Properties({anchor:new t.DataConstantProperty(t.styleSpec.light.anchor),position:new b,color:new t.DataConstantProperty(t.styleSpec.light.color),intensity:new t.DataConstantProperty(t.styleSpec.light.intensity)}),w=function(e){function r(r){e.call(this),this._transitionable=new t.Transitionable(_),this.setLight(r),this._transitioning=this._transitionable.untransitioned()}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.getLight=function(){return this._transitionable.serialize()},r.prototype.setLight=function(e,r){if(void 0===r&&(r={}),!this._validate(t.validateLight,e,r))for(var n in e){var a=e[n];t.endsWith(n,\"-transition\")?this._transitionable.setTransition(n.slice(0,-\"-transition\".length),a):this._transitionable.setValue(n,a)}},r.prototype.updateTransitions=function(t){this._transitioning=this._transitionable.transitioned(t,this._transitioning)},r.prototype.hasTransition=function(){return this._transitioning.hasTransition()},r.prototype.recalculate=function(t){this.properties=this._transitioning.possiblyEvaluate(t)},r.prototype._validate=function(e,r,n){return(!n||!1!==n.validate)&&t.emitValidationErrors(this,e.call(t.validateStyle,t.extend({value:r,style:{glyphs:!0,sprite:!0},styleSpec:t.styleSpec})))},r}(t.Evented),k=function(t,e){this.width=t,this.height=e,this.nextRow=0,this.bytes=4,this.data=new Uint8Array(this.width*this.height*this.bytes),this.positions={}};k.prototype.getDash=function(t,e){var r=t.join(\",\")+String(e);return this.positions[r]||(this.positions[r]=this.addDash(t,e)),this.positions[r]},k.prototype.addDash=function(e,r){var n=r?7:0,a=2*n+1;if(this.nextRow+a>this.height)return t.warnOnce(\"LineAtlas out of space\"),null;for(var i=0,o=0;o<e.length;o++)i+=e[o];for(var s=this.width/i,l=s/2,c=e.length%2==1,u=-n;u<=n;u++)for(var h=this.nextRow+n+u,f=this.width*h,p=c?-e[e.length-1]:0,d=e[0],g=1,v=0;v<this.width;v++){for(;d<v/s;)p=d,d+=e[g],c&&g===e.length-1&&(d+=e[0]),g++;var m=Math.abs(v-p*s),y=Math.abs(v-d*s),x=Math.min(m,y),b=g%2==1,_=void 0;if(r){var w=n?u/n*(l+1):0;if(b){var k=l-Math.abs(w);_=Math.sqrt(x*x+k*k)}else _=l-Math.sqrt(x*x+w*w)}else _=(b?1:-1)*x;this.data[3+4*(f+v)]=Math.max(0,Math.min(255,_+128))}var T={y:(this.nextRow+n+.5)/this.height,height:2*n/this.height,width:i};return this.nextRow+=a,this.dirty=!0,T},k.prototype.bind=function(t){var e=t.gl;this.texture?(e.bindTexture(e.TEXTURE_2D,this.texture),this.dirty&&(this.dirty=!1,e.texSubImage2D(e.TEXTURE_2D,0,0,0,this.width,this.height,e.RGBA,e.UNSIGNED_BYTE,this.data))):(this.texture=e.createTexture(),e.bindTexture(e.TEXTURE_2D,this.texture),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_WRAP_S,e.REPEAT),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_WRAP_T,e.REPEAT),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MIN_FILTER,e.LINEAR),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MAG_FILTER,e.LINEAR),e.texImage2D(e.TEXTURE_2D,0,e.RGBA,this.width,this.height,0,e.RGBA,e.UNSIGNED_BYTE,this.data))};var T=function e(r,n){this.workerPool=r,this.actors=[],this.currentActor=0,this.id=t.uniqueId();for(var a=this.workerPool.acquire(this.id),i=0;i<a.length;i++){var o=a[i],s=new e.Actor(o,n,this.id);s.name=\"Worker \"+i,this.actors.push(s)}};function A(e,r,n){var a=function(a,i){if(a)return n(a);if(i){var o=t.pick(t.extend(i,e),[\"tiles\",\"minzoom\",\"maxzoom\",\"attribution\",\"mapbox_logo\",\"bounds\",\"scheme\",\"tileSize\",\"encoding\"]);i.vector_layers&&(o.vectorLayers=i.vector_layers,o.vectorLayerIds=o.vectorLayers.map(function(t){return t.id})),e.url&&(o.tiles=r.canonicalizeTileset(o,e.url)),n(null,o)}};return e.url?t.getJSON(r.transformRequest(r.normalizeSourceURL(e.url),t.ResourceType.Source),a):t.browser.frame(function(){return a(null,e)})}T.prototype.broadcast=function(e,r,n){n=n||function(){},t.asyncAll(this.actors,function(t,n){t.send(e,r,n)},n)},T.prototype.getActor=function(){return this.currentActor=(this.currentActor+1)%this.actors.length,this.actors[this.currentActor]},T.prototype.remove=function(){this.actors.forEach(function(t){t.remove()}),this.actors=[],this.workerPool.release(this.id)},T.Actor=t.Actor;var M=function(e,r,n){this.bounds=t.LngLatBounds.convert(this.validateBounds(e)),this.minzoom=r||0,this.maxzoom=n||24};M.prototype.validateBounds=function(t){return Array.isArray(t)&&4===t.length?[Math.max(-180,t[0]),Math.max(-90,t[1]),Math.min(180,t[2]),Math.min(90,t[3])]:[-180,-90,180,90]},M.prototype.contains=function(e){var r=Math.pow(2,e.z),n=Math.floor(t.mercatorXfromLng(this.bounds.getWest())*r),a=Math.floor(t.mercatorYfromLat(this.bounds.getNorth())*r),i=Math.ceil(t.mercatorXfromLng(this.bounds.getEast())*r),o=Math.ceil(t.mercatorYfromLat(this.bounds.getSouth())*r);return e.x>=n&&e.x<i&&e.y>=a&&e.y<o};var S=function(e){function r(r,n,a,i){if(e.call(this),this.id=r,this.dispatcher=a,this.type=\"vector\",this.minzoom=0,this.maxzoom=22,this.scheme=\"xyz\",this.tileSize=512,this.reparseOverscaled=!0,this.isTileClipped=!0,this._loaded=!1,t.extend(this,t.pick(n,[\"url\",\"scheme\",\"tileSize\"])),this._options=t.extend({type:\"vector\"},n),this._collectResourceTiming=n.collectResourceTiming,512!==this.tileSize)throw new Error(\"vector tile sources must have a tileSize of 512\");this.setEventedParent(i)}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.load=function(){var e=this;this._loaded=!1,this.fire(new t.Event(\"dataloading\",{dataType:\"source\"})),this._tileJSONRequest=A(this._options,this.map._requestManager,function(r,n){e._tileJSONRequest=null,e._loaded=!0,r?e.fire(new t.ErrorEvent(r)):n&&(t.extend(e,n),n.bounds&&(e.tileBounds=new M(n.bounds,e.minzoom,e.maxzoom)),t.postTurnstileEvent(n.tiles,e.map._requestManager._customAccessToken),t.postMapLoadEvent(n.tiles,e.map._getMapId(),e.map._requestManager._skuToken,e.map._requestManager._customAccessToken),e.fire(new t.Event(\"data\",{dataType:\"source\",sourceDataType:\"metadata\"})),e.fire(new t.Event(\"data\",{dataType:\"source\",sourceDataType:\"content\"})))})},r.prototype.loaded=function(){return this._loaded},r.prototype.hasTile=function(t){return!this.tileBounds||this.tileBounds.contains(t.canonical)},r.prototype.onAdd=function(t){this.map=t,this.load()},r.prototype.onRemove=function(){this._tileJSONRequest&&(this._tileJSONRequest.cancel(),this._tileJSONRequest=null)},r.prototype.serialize=function(){return t.extend({},this._options)},r.prototype.loadTile=function(e,r){var n=this.map._requestManager.normalizeTileURL(e.tileID.canonical.url(this.tiles,this.scheme),this.url,null),a={request:this.map._requestManager.transformRequest(n,t.ResourceType.Tile),uid:e.uid,tileID:e.tileID,zoom:e.tileID.overscaledZ,tileSize:this.tileSize*e.tileID.overscaleFactor(),type:this.type,source:this.id,pixelRatio:t.browser.devicePixelRatio,showCollisionBoxes:this.map.showCollisionBoxes};function i(n,a){return delete e.request,e.aborted?r(null):n&&404!==n.status?r(n):(a&&a.resourceTiming&&(e.resourceTiming=a.resourceTiming),this.map._refreshExpiredTiles&&a&&e.setExpiryData(a),e.loadVectorData(a,this.map.painter),t.cacheEntryPossiblyAdded(this.dispatcher),r(null),void(e.reloadCallback&&(this.loadTile(e,e.reloadCallback),e.reloadCallback=null)))}a.request.collectResourceTiming=this._collectResourceTiming,e.actor&&\"expired\"!==e.state?\"loading\"===e.state?e.reloadCallback=r:e.request=e.actor.send(\"reloadTile\",a,i.bind(this)):(e.actor=this.dispatcher.getActor(),e.request=e.actor.send(\"loadTile\",a,i.bind(this)))},r.prototype.abortTile=function(t){t.request&&(t.request.cancel(),delete t.request),t.actor&&t.actor.send(\"abortTile\",{uid:t.uid,type:this.type,source:this.id},void 0)},r.prototype.unloadTile=function(t){t.unloadVectorData(),t.actor&&t.actor.send(\"removeTile\",{uid:t.uid,type:this.type,source:this.id},void 0)},r.prototype.hasTransition=function(){return!1},r}(t.Evented),E=function(e){function r(r,n,a,i){e.call(this),this.id=r,this.dispatcher=a,this.setEventedParent(i),this.type=\"raster\",this.minzoom=0,this.maxzoom=22,this.roundZoom=!0,this.scheme=\"xyz\",this.tileSize=512,this._loaded=!1,this._options=t.extend({type:\"raster\"},n),t.extend(this,t.pick(n,[\"url\",\"scheme\",\"tileSize\"]))}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.load=function(){var e=this;this._loaded=!1,this.fire(new t.Event(\"dataloading\",{dataType:\"source\"})),this._tileJSONRequest=A(this._options,this.map._requestManager,function(r,n){e._tileJSONRequest=null,e._loaded=!0,r?e.fire(new t.ErrorEvent(r)):n&&(t.extend(e,n),n.bounds&&(e.tileBounds=new M(n.bounds,e.minzoom,e.maxzoom)),t.postTurnstileEvent(n.tiles),t.postMapLoadEvent(n.tiles,e.map._getMapId(),e.map._requestManager._skuToken),e.fire(new t.Event(\"data\",{dataType:\"source\",sourceDataType:\"metadata\"})),e.fire(new t.Event(\"data\",{dataType:\"source\",sourceDataType:\"content\"})))})},r.prototype.loaded=function(){return this._loaded},r.prototype.onAdd=function(t){this.map=t,this.load()},r.prototype.onRemove=function(){this._tileJSONRequest&&(this._tileJSONRequest.cancel(),this._tileJSONRequest=null)},r.prototype.serialize=function(){return t.extend({},this._options)},r.prototype.hasTile=function(t){return!this.tileBounds||this.tileBounds.contains(t.canonical)},r.prototype.loadTile=function(e,r){var n=this,a=this.map._requestManager.normalizeTileURL(e.tileID.canonical.url(this.tiles,this.scheme),this.url,this.tileSize);e.request=t.getImage(this.map._requestManager.transformRequest(a,t.ResourceType.Tile),function(a,i){if(delete e.request,e.aborted)e.state=\"unloaded\",r(null);else if(a)e.state=\"errored\",r(a);else if(i){n.map._refreshExpiredTiles&&e.setExpiryData(i),delete i.cacheControl,delete i.expires;var o=n.map.painter.context,s=o.gl;e.texture=n.map.painter.getTileTexture(i.width),e.texture?e.texture.update(i,{useMipmap:!0}):(e.texture=new t.Texture(o,i,s.RGBA,{useMipmap:!0}),e.texture.bind(s.LINEAR,s.CLAMP_TO_EDGE,s.LINEAR_MIPMAP_NEAREST),o.extTextureFilterAnisotropic&&s.texParameterf(s.TEXTURE_2D,o.extTextureFilterAnisotropic.TEXTURE_MAX_ANISOTROPY_EXT,o.extTextureFilterAnisotropicMax)),e.state=\"loaded\",t.cacheEntryPossiblyAdded(n.dispatcher),r(null)}})},r.prototype.abortTile=function(t,e){t.request&&(t.request.cancel(),delete t.request),e()},r.prototype.unloadTile=function(t,e){t.texture&&this.map.painter.saveTileTexture(t.texture),e()},r.prototype.hasTransition=function(){return!1},r}(t.Evented),C=function(e){function r(r,n,a,i){e.call(this,r,n,a,i),this.type=\"raster-dem\",this.maxzoom=22,this._options=t.extend({type:\"raster-dem\"},n),this.encoding=n.encoding||\"mapbox\"}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.serialize=function(){return{type:\"raster-dem\",url:this.url,tileSize:this.tileSize,tiles:this.tiles,bounds:this.bounds,encoding:this.encoding}},r.prototype.loadTile=function(e,r){var n=this.map._requestManager.normalizeTileURL(e.tileID.canonical.url(this.tiles,this.scheme),this.url,this.tileSize);e.request=t.getImage(this.map._requestManager.transformRequest(n,t.ResourceType.Tile),function(n,a){if(delete e.request,e.aborted)e.state=\"unloaded\",r(null);else if(n)e.state=\"errored\",r(n);else if(a){this.map._refreshExpiredTiles&&e.setExpiryData(a),delete a.cacheControl,delete a.expires;var i=t.browser.getImageData(a),o={uid:e.uid,coord:e.tileID,source:this.id,rawImageData:i,encoding:this.encoding};e.actor&&\"expired\"!==e.state||(e.actor=this.dispatcher.getActor(),e.actor.send(\"loadDEMTile\",o,function(t,n){t&&(e.state=\"errored\",r(t)),n&&(e.dem=n,e.needsHillshadePrepare=!0,e.state=\"loaded\",r(null))}.bind(this)))}}.bind(this)),e.neighboringTiles=this._getNeighboringTiles(e.tileID)},r.prototype._getNeighboringTiles=function(e){var r=e.canonical,n=Math.pow(2,r.z),a=(r.x-1+n)%n,i=0===r.x?e.wrap-1:e.wrap,o=(r.x+1+n)%n,s=r.x+1===n?e.wrap+1:e.wrap,l={};return l[new t.OverscaledTileID(e.overscaledZ,i,r.z,a,r.y).key]={backfilled:!1},l[new t.OverscaledTileID(e.overscaledZ,s,r.z,o,r.y).key]={backfilled:!1},r.y>0&&(l[new t.OverscaledTileID(e.overscaledZ,i,r.z,a,r.y-1).key]={backfilled:!1},l[new t.OverscaledTileID(e.overscaledZ,e.wrap,r.z,r.x,r.y-1).key]={backfilled:!1},l[new t.OverscaledTileID(e.overscaledZ,s,r.z,o,r.y-1).key]={backfilled:!1}),r.y+1<n&&(l[new t.OverscaledTileID(e.overscaledZ,i,r.z,a,r.y+1).key]={backfilled:!1},l[new t.OverscaledTileID(e.overscaledZ,e.wrap,r.z,r.x,r.y+1).key]={backfilled:!1},l[new t.OverscaledTileID(e.overscaledZ,s,r.z,o,r.y+1).key]={backfilled:!1}),l},r.prototype.unloadTile=function(t){t.demTexture&&this.map.painter.saveTileTexture(t.demTexture),t.fbo&&(t.fbo.destroy(),delete t.fbo),t.dem&&delete t.dem,delete t.neighboringTiles,t.state=\"unloaded\",t.actor&&t.actor.send(\"removeDEMTile\",{uid:t.uid,source:this.id})},r}(E),L=function(e){function r(r,n,a,i){e.call(this),this.id=r,this.type=\"geojson\",this.minzoom=0,this.maxzoom=18,this.tileSize=512,this.isTileClipped=!0,this.reparseOverscaled=!0,this._removed=!1,this._loaded=!1,this.actor=a.getActor(),this.setEventedParent(i),this._data=n.data,this._options=t.extend({},n),this._collectResourceTiming=n.collectResourceTiming,this._resourceTiming=[],void 0!==n.maxzoom&&(this.maxzoom=n.maxzoom),n.type&&(this.type=n.type),n.attribution&&(this.attribution=n.attribution);var o=t.EXTENT/this.tileSize;this.workerOptions=t.extend({source:this.id,cluster:n.cluster||!1,geojsonVtOptions:{buffer:(void 0!==n.buffer?n.buffer:128)*o,tolerance:(void 0!==n.tolerance?n.tolerance:.375)*o,extent:t.EXTENT,maxZoom:this.maxzoom,lineMetrics:n.lineMetrics||!1,generateId:n.generateId||!1},superclusterOptions:{maxZoom:void 0!==n.clusterMaxZoom?Math.min(n.clusterMaxZoom,this.maxzoom-1):this.maxzoom-1,extent:t.EXTENT,radius:(n.clusterRadius||50)*o,log:!1},clusterProperties:n.clusterProperties},n.workerOptions)}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.load=function(){var e=this;this.fire(new t.Event(\"dataloading\",{dataType:\"source\"})),this._updateWorkerData(function(r){if(r)e.fire(new t.ErrorEvent(r));else{var n={dataType:\"source\",sourceDataType:\"metadata\"};e._collectResourceTiming&&e._resourceTiming&&e._resourceTiming.length>0&&(n.resourceTiming=e._resourceTiming,e._resourceTiming=[]),e.fire(new t.Event(\"data\",n))}})},r.prototype.onAdd=function(t){this.map=t,this.load()},r.prototype.setData=function(e){var r=this;return this._data=e,this.fire(new t.Event(\"dataloading\",{dataType:\"source\"})),this._updateWorkerData(function(e){if(e)r.fire(new t.ErrorEvent(e));else{var n={dataType:\"source\",sourceDataType:\"content\"};r._collectResourceTiming&&r._resourceTiming&&r._resourceTiming.length>0&&(n.resourceTiming=r._resourceTiming,r._resourceTiming=[]),r.fire(new t.Event(\"data\",n))}}),this},r.prototype.getClusterExpansionZoom=function(t,e){return this.actor.send(\"geojson.getClusterExpansionZoom\",{clusterId:t,source:this.id},e),this},r.prototype.getClusterChildren=function(t,e){return this.actor.send(\"geojson.getClusterChildren\",{clusterId:t,source:this.id},e),this},r.prototype.getClusterLeaves=function(t,e,r,n){return this.actor.send(\"geojson.getClusterLeaves\",{source:this.id,clusterId:t,limit:e,offset:r},n),this},r.prototype._updateWorkerData=function(e){var r=this;this._loaded=!1;var n=t.extend({},this.workerOptions),a=this._data;\"string\"==typeof a?(n.request=this.map._requestManager.transformRequest(t.browser.resolveURL(a),t.ResourceType.Source),n.request.collectResourceTiming=this._collectResourceTiming):n.data=JSON.stringify(a),this.actor.send(this.type+\".loadData\",n,function(t,a){r._removed||a&&a.abandoned||(r._loaded=!0,a&&a.resourceTiming&&a.resourceTiming[r.id]&&(r._resourceTiming=a.resourceTiming[r.id].slice(0)),r.actor.send(r.type+\".coalesce\",{source:n.source},null),e(t))})},r.prototype.loaded=function(){return this._loaded},r.prototype.loadTile=function(e,r){var n=this,a=e.actor?\"reloadTile\":\"loadTile\";e.actor=this.actor;var i={type:this.type,uid:e.uid,tileID:e.tileID,zoom:e.tileID.overscaledZ,maxZoom:this.maxzoom,tileSize:this.tileSize,source:this.id,pixelRatio:t.browser.devicePixelRatio,showCollisionBoxes:this.map.showCollisionBoxes};e.request=this.actor.send(a,i,function(t,i){return delete e.request,e.unloadVectorData(),e.aborted?r(null):t?r(t):(e.loadVectorData(i,n.map.painter,\"reloadTile\"===a),r(null))})},r.prototype.abortTile=function(t){t.request&&(t.request.cancel(),delete t.request),t.aborted=!0},r.prototype.unloadTile=function(t){t.unloadVectorData(),this.actor.send(\"removeTile\",{uid:t.uid,type:this.type,source:this.id})},r.prototype.onRemove=function(){this._removed=!0,this.actor.send(\"removeSource\",{type:this.type,source:this.id})},r.prototype.serialize=function(){return t.extend({},this._options,{type:this.type,data:this._data})},r.prototype.hasTransition=function(){return!1},r}(t.Evented),P=function(e){function r(t,r,n,a){e.call(this),this.id=t,this.dispatcher=n,this.coordinates=r.coordinates,this.type=\"image\",this.minzoom=0,this.maxzoom=22,this.tileSize=512,this.tiles={},this._loaded=!1,this.setEventedParent(a),this.options=r}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.load=function(e,r){var n=this;this._loaded=!1,this.fire(new t.Event(\"dataloading\",{dataType:\"source\"})),this.url=this.options.url,t.getImage(this.map._requestManager.transformRequest(this.url,t.ResourceType.Image),function(a,i){n._loaded=!0,a?n.fire(new t.ErrorEvent(a)):i&&(n.image=i,e&&(n.coordinates=e),r&&r(),n._finishLoading())})},r.prototype.loaded=function(){return this._loaded},r.prototype.updateImage=function(t){var e=this;return this.image&&t.url?(this.options.url=t.url,this.load(t.coordinates,function(){e.texture=null}),this):this},r.prototype._finishLoading=function(){this.map&&(this.setCoordinates(this.coordinates),this.fire(new t.Event(\"data\",{dataType:\"source\",sourceDataType:\"metadata\"})))},r.prototype.onAdd=function(t){this.map=t,this.load()},r.prototype.setCoordinates=function(e){var r=this;this.coordinates=e;var n=e.map(t.MercatorCoordinate.fromLngLat);this.tileID=function(e){for(var r=1/0,n=1/0,a=-1/0,i=-1/0,o=0,s=e;o<s.length;o+=1){var l=s[o];r=Math.min(r,l.x),n=Math.min(n,l.y),a=Math.max(a,l.x),i=Math.max(i,l.y)}var c=a-r,u=i-n,h=Math.max(c,u),f=Math.max(0,Math.floor(-Math.log(h)/Math.LN2)),p=Math.pow(2,f);return new t.CanonicalTileID(f,Math.floor((r+a)/2*p),Math.floor((n+i)/2*p))}(n),this.minzoom=this.maxzoom=this.tileID.z;var a=n.map(function(t){return r.tileID.getTilePoint(t)._round()});return this._boundsArray=new t.StructArrayLayout4i8,this._boundsArray.emplaceBack(a[0].x,a[0].y,0,0),this._boundsArray.emplaceBack(a[1].x,a[1].y,t.EXTENT,0),this._boundsArray.emplaceBack(a[3].x,a[3].y,0,t.EXTENT),this._boundsArray.emplaceBack(a[2].x,a[2].y,t.EXTENT,t.EXTENT),this.boundsBuffer&&(this.boundsBuffer.destroy(),delete this.boundsBuffer),this.fire(new t.Event(\"data\",{dataType:\"source\",sourceDataType:\"content\"})),this},r.prototype.prepare=function(){if(0!==Object.keys(this.tiles).length&&this.image){var e=this.map.painter.context,r=e.gl;for(var n in this.boundsBuffer||(this.boundsBuffer=e.createVertexBuffer(this._boundsArray,t.rasterBoundsAttributes.members)),this.boundsSegments||(this.boundsSegments=t.SegmentVector.simpleSegment(0,0,4,2)),this.texture||(this.texture=new t.Texture(e,this.image,r.RGBA),this.texture.bind(r.LINEAR,r.CLAMP_TO_EDGE)),this.tiles){var a=this.tiles[n];\"loaded\"!==a.state&&(a.state=\"loaded\",a.texture=this.texture)}}},r.prototype.loadTile=function(t,e){this.tileID&&this.tileID.equals(t.tileID.canonical)?(this.tiles[String(t.tileID.wrap)]=t,t.buckets={},e(null)):(t.state=\"errored\",e(null))},r.prototype.serialize=function(){return{type:\"image\",url:this.options.url,coordinates:this.coordinates}},r.prototype.hasTransition=function(){return!1},r}(t.Evented),O=function(e){function r(t,r,n,a){e.call(this,t,r,n,a),this.roundZoom=!0,this.type=\"video\",this.options=r}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.load=function(){var e=this;this._loaded=!1;var r=this.options;this.urls=[];for(var n=0,a=r.urls;n<a.length;n+=1){var i=a[n];this.urls.push(this.map._requestManager.transformRequest(i,t.ResourceType.Source).url)}t.getVideo(this.urls,function(r,n){e._loaded=!0,r?e.fire(new t.ErrorEvent(r)):n&&(e.video=n,e.video.loop=!0,e.video.addEventListener(\"playing\",function(){e.map.triggerRepaint()}),e.map&&e.video.play(),e._finishLoading())})},r.prototype.pause=function(){this.video&&this.video.pause()},r.prototype.play=function(){this.video&&this.video.play()},r.prototype.seek=function(e){if(this.video){var r=this.video.seekable;e<r.start(0)||e>r.end(0)?this.fire(new t.ErrorEvent(new t.ValidationError(\"Playback for this video can be set only between the \"+r.start(0)+\" and \"+r.end(0)+\"-second mark.\"))):this.video.currentTime=e}},r.prototype.getVideo=function(){return this.video},r.prototype.onAdd=function(t){this.map||(this.map=t,this.load(),this.video&&(this.video.play(),this.setCoordinates(this.coordinates)))},r.prototype.prepare=function(){if(!(0===Object.keys(this.tiles).length||this.video.readyState<2)){var e=this.map.painter.context,r=e.gl;for(var n in this.boundsBuffer||(this.boundsBuffer=e.createVertexBuffer(this._boundsArray,t.rasterBoundsAttributes.members)),this.boundsSegments||(this.boundsSegments=t.SegmentVector.simpleSegment(0,0,4,2)),this.texture?this.video.paused||(this.texture.bind(r.LINEAR,r.CLAMP_TO_EDGE),r.texSubImage2D(r.TEXTURE_2D,0,0,0,r.RGBA,r.UNSIGNED_BYTE,this.video)):(this.texture=new t.Texture(e,this.video,r.RGBA),this.texture.bind(r.LINEAR,r.CLAMP_TO_EDGE)),this.tiles){var a=this.tiles[n];\"loaded\"!==a.state&&(a.state=\"loaded\",a.texture=this.texture)}}},r.prototype.serialize=function(){return{type:\"video\",urls:this.urls,coordinates:this.coordinates}},r.prototype.hasTransition=function(){return this.video&&!this.video.paused},r}(P),I=function(e){function r(r,n,a,i){e.call(this,r,n,a,i),n.coordinates?Array.isArray(n.coordinates)&&4===n.coordinates.length&&!n.coordinates.some(function(t){return!Array.isArray(t)||2!==t.length||t.some(function(t){return\"number\"!=typeof t})})||this.fire(new t.ErrorEvent(new t.ValidationError(\"sources.\"+r,null,'\"coordinates\" property must be an array of 4 longitude/latitude array pairs'))):this.fire(new t.ErrorEvent(new t.ValidationError(\"sources.\"+r,null,'missing required property \"coordinates\"'))),n.animate&&\"boolean\"!=typeof n.animate&&this.fire(new t.ErrorEvent(new t.ValidationError(\"sources.\"+r,null,'optional \"animate\" property must be a boolean value'))),n.canvas?\"string\"==typeof n.canvas||n.canvas instanceof t.window.HTMLCanvasElement||this.fire(new t.ErrorEvent(new t.ValidationError(\"sources.\"+r,null,'\"canvas\" must be either a string representing the ID of the canvas element from which to read, or an HTMLCanvasElement instance'))):this.fire(new t.ErrorEvent(new t.ValidationError(\"sources.\"+r,null,'missing required property \"canvas\"'))),this.options=n,this.animate=void 0===n.animate||n.animate}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.load=function(){this._loaded=!0,this.canvas||(this.canvas=this.options.canvas instanceof t.window.HTMLCanvasElement?this.options.canvas:t.window.document.getElementById(this.options.canvas)),this.width=this.canvas.width,this.height=this.canvas.height,this._hasInvalidDimensions()?this.fire(new t.ErrorEvent(new Error(\"Canvas dimensions cannot be less than or equal to zero.\"))):(this.play=function(){this._playing=!0,this.map.triggerRepaint()},this.pause=function(){this._playing&&(this.prepare(),this._playing=!1)},this._finishLoading())},r.prototype.getCanvas=function(){return this.canvas},r.prototype.onAdd=function(t){this.map=t,this.load(),this.canvas&&this.animate&&this.play()},r.prototype.onRemove=function(){this.pause()},r.prototype.prepare=function(){var e=!1;if(this.canvas.width!==this.width&&(this.width=this.canvas.width,e=!0),this.canvas.height!==this.height&&(this.height=this.canvas.height,e=!0),!this._hasInvalidDimensions()&&0!==Object.keys(this.tiles).length){var r=this.map.painter.context,n=r.gl;for(var a in this.boundsBuffer||(this.boundsBuffer=r.createVertexBuffer(this._boundsArray,t.rasterBoundsAttributes.members)),this.boundsSegments||(this.boundsSegments=t.SegmentVector.simpleSegment(0,0,4,2)),this.texture?(e||this._playing)&&this.texture.update(this.canvas,{premultiply:!0}):this.texture=new t.Texture(r,this.canvas,n.RGBA,{premultiply:!0}),this.tiles){var i=this.tiles[a];\"loaded\"!==i.state&&(i.state=\"loaded\",i.texture=this.texture)}}},r.prototype.serialize=function(){return{type:\"canvas\",coordinates:this.coordinates}},r.prototype.hasTransition=function(){return this._playing},r.prototype._hasInvalidDimensions=function(){for(var t=0,e=[this.canvas.width,this.canvas.height];t<e.length;t+=1){var r=e[t];if(isNaN(r)||r<=0)return!0}return!1},r}(P),z={vector:S,raster:E,\"raster-dem\":C,geojson:L,video:O,image:P,canvas:I},D=function(e,r,n,a){var i=new z[r.type](e,r,n,a);if(i.id!==e)throw new Error(\"Expected Source id to be \"+e+\" instead of \"+i.id);return t.bindAll([\"load\",\"abort\",\"unload\",\"serialize\",\"prepare\"],i),i};function R(e,r){var n=t.identity([]);return t.translate(n,n,[1,1,0]),t.scale(n,n,[.5*e.width,.5*e.height,1]),t.multiply(n,n,e.calculatePosMatrix(r.toUnwrapped()))}function F(t,e,r,n,a){var i=function(t,e,r){if(t)for(var n=0,a=t;n<a.length;n+=1){var i=e[a[n]];if(i&&i.source===r&&\"fill-extrusion\"===i.type)return!0}else for(var o in e){var s=e[o];if(s.source===r&&\"fill-extrusion\"===s.type)return!0}return!1}(n&&n.layers,e,t.id),o=a.maxPitchScaleFactor(),s=t.tilesIn(r,o,i);s.sort(B);for(var l=[],c=0,u=s;c<u.length;c+=1){var h=u[c];l.push({wrappedTileID:h.tileID.wrapped().key,queryResults:h.tile.queryRenderedFeatures(e,t._state,h.queryGeometry,h.cameraQueryGeometry,h.scale,n,a,o,R(t.transform,h.tileID))})}var f=function(t){for(var e={},r={},n=0,a=t;n<a.length;n+=1){var i=a[n],o=i.queryResults,s=i.wrappedTileID,l=r[s]=r[s]||{};for(var c in o)for(var u=o[c],h=l[c]=l[c]||{},f=e[c]=e[c]||[],p=0,d=u;p<d.length;p+=1){var g=d[p];h[g.featureIndex]||(h[g.featureIndex]=!0,f.push(g))}}return e}(l);for(var p in f)f[p].forEach(function(e){var r=e.feature,n=t.getFeatureState(r.layer[\"source-layer\"],r.id);r.source=r.layer.source,r.layer[\"source-layer\"]&&(r.sourceLayer=r.layer[\"source-layer\"]),r.state=n});return f}function B(t,e){var r=t.tileID,n=e.tileID;return r.overscaledZ-n.overscaledZ||r.canonical.y-n.canonical.y||r.wrap-n.wrap||r.canonical.x-n.canonical.x}var N=function(t,e){this.max=t,this.onRemove=e,this.reset()};N.prototype.reset=function(){for(var t in this.data)for(var e=0,r=this.data[t];e<r.length;e+=1){var n=r[e];n.timeout&&clearTimeout(n.timeout),this.onRemove(n.value)}return this.data={},this.order=[],this},N.prototype.add=function(t,e,r){var n=this,a=t.wrapped().key;void 0===this.data[a]&&(this.data[a]=[]);var i={value:e,timeout:void 0};if(void 0!==r&&(i.timeout=setTimeout(function(){n.remove(t,i)},r)),this.data[a].push(i),this.order.push(a),this.order.length>this.max){var o=this._getAndRemoveByKey(this.order[0]);o&&this.onRemove(o)}return this},N.prototype.has=function(t){return t.wrapped().key in this.data},N.prototype.getAndRemove=function(t){return this.has(t)?this._getAndRemoveByKey(t.wrapped().key):null},N.prototype._getAndRemoveByKey=function(t){var e=this.data[t].shift();return e.timeout&&clearTimeout(e.timeout),0===this.data[t].length&&delete this.data[t],this.order.splice(this.order.indexOf(t),1),e.value},N.prototype.get=function(t){return this.has(t)?this.data[t.wrapped().key][0].value:null},N.prototype.remove=function(t,e){if(!this.has(t))return this;var r=t.wrapped().key,n=void 0===e?0:this.data[r].indexOf(e),a=this.data[r][n];return this.data[r].splice(n,1),a.timeout&&clearTimeout(a.timeout),0===this.data[r].length&&delete this.data[r],this.onRemove(a.value),this.order.splice(this.order.indexOf(r),1),this},N.prototype.setMaxSize=function(t){for(this.max=t;this.order.length>this.max;){var e=this._getAndRemoveByKey(this.order[0]);e&&this.onRemove(e)}return this};var j=function(t,e,r){this.context=t;var n=t.gl;this.buffer=n.createBuffer(),this.dynamicDraw=Boolean(r),this.context.unbindVAO(),t.bindElementBuffer.set(this.buffer),n.bufferData(n.ELEMENT_ARRAY_BUFFER,e.arrayBuffer,this.dynamicDraw?n.DYNAMIC_DRAW:n.STATIC_DRAW),this.dynamicDraw||delete e.arrayBuffer};j.prototype.bind=function(){this.context.bindElementBuffer.set(this.buffer)},j.prototype.updateData=function(t){var e=this.context.gl;this.context.unbindVAO(),this.bind(),e.bufferSubData(e.ELEMENT_ARRAY_BUFFER,0,t.arrayBuffer)},j.prototype.destroy=function(){var t=this.context.gl;this.buffer&&(t.deleteBuffer(this.buffer),delete this.buffer)};var V={Int8:\"BYTE\",Uint8:\"UNSIGNED_BYTE\",Int16:\"SHORT\",Uint16:\"UNSIGNED_SHORT\",Int32:\"INT\",Uint32:\"UNSIGNED_INT\",Float32:\"FLOAT\"},U=function(t,e,r,n){this.length=e.length,this.attributes=r,this.itemSize=e.bytesPerElement,this.dynamicDraw=n,this.context=t;var a=t.gl;this.buffer=a.createBuffer(),t.bindVertexBuffer.set(this.buffer),a.bufferData(a.ARRAY_BUFFER,e.arrayBuffer,this.dynamicDraw?a.DYNAMIC_DRAW:a.STATIC_DRAW),this.dynamicDraw||delete e.arrayBuffer};U.prototype.bind=function(){this.context.bindVertexBuffer.set(this.buffer)},U.prototype.updateData=function(t){var e=this.context.gl;this.bind(),e.bufferSubData(e.ARRAY_BUFFER,0,t.arrayBuffer)},U.prototype.enableAttributes=function(t,e){for(var r=0;r<this.attributes.length;r++){var n=this.attributes[r],a=e.attributes[n.name];void 0!==a&&t.enableVertexAttribArray(a)}},U.prototype.setVertexAttribPointers=function(t,e,r){for(var n=0;n<this.attributes.length;n++){var a=this.attributes[n],i=e.attributes[a.name];void 0!==i&&t.vertexAttribPointer(i,a.components,t[V[a.type]],!1,this.itemSize,a.offset+this.itemSize*(r||0))}},U.prototype.destroy=function(){var t=this.context.gl;this.buffer&&(t.deleteBuffer(this.buffer),delete this.buffer)};var q=function(t){this.gl=t.gl,this.default=this.getDefault(),this.current=this.default,this.dirty=!1};q.prototype.get=function(){return this.current},q.prototype.set=function(t){},q.prototype.getDefault=function(){return this.default},q.prototype.setDefault=function(){this.set(this.default)};var H=function(e){function r(){e.apply(this,arguments)}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.getDefault=function(){return t.Color.transparent},r.prototype.set=function(t){var e=this.current;(t.r!==e.r||t.g!==e.g||t.b!==e.b||t.a!==e.a||this.dirty)&&(this.gl.clearColor(t.r,t.g,t.b,t.a),this.current=t,this.dirty=!1)},r}(q),G=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return 1},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.clearDepth(t),this.current=t,this.dirty=!1)},e}(q),Y=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return 0},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.clearStencil(t),this.current=t,this.dirty=!1)},e}(q),W=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return[!0,!0,!0,!0]},e.prototype.set=function(t){var e=this.current;(t[0]!==e[0]||t[1]!==e[1]||t[2]!==e[2]||t[3]!==e[3]||this.dirty)&&(this.gl.colorMask(t[0],t[1],t[2],t[3]),this.current=t,this.dirty=!1)},e}(q),X=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return!0},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.depthMask(t),this.current=t,this.dirty=!1)},e}(q),Z=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return 255},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.stencilMask(t),this.current=t,this.dirty=!1)},e}(q),J=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return{func:this.gl.ALWAYS,ref:0,mask:255}},e.prototype.set=function(t){var e=this.current;(t.func!==e.func||t.ref!==e.ref||t.mask!==e.mask||this.dirty)&&(this.gl.stencilFunc(t.func,t.ref,t.mask),this.current=t,this.dirty=!1)},e}(q),K=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){var t=this.gl;return[t.KEEP,t.KEEP,t.KEEP]},e.prototype.set=function(t){var e=this.current;(t[0]!==e[0]||t[1]!==e[1]||t[2]!==e[2]||this.dirty)&&(this.gl.stencilOp(t[0],t[1],t[2]),this.current=t,this.dirty=!1)},e}(q),Q=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return!1},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;t?e.enable(e.STENCIL_TEST):e.disable(e.STENCIL_TEST),this.current=t,this.dirty=!1}},e}(q),$=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return[0,1]},e.prototype.set=function(t){var e=this.current;(t[0]!==e[0]||t[1]!==e[1]||this.dirty)&&(this.gl.depthRange(t[0],t[1]),this.current=t,this.dirty=!1)},e}(q),tt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return!1},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;t?e.enable(e.DEPTH_TEST):e.disable(e.DEPTH_TEST),this.current=t,this.dirty=!1}},e}(q),et=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return this.gl.LESS},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.depthFunc(t),this.current=t,this.dirty=!1)},e}(q),rt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return!1},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;t?e.enable(e.BLEND):e.disable(e.BLEND),this.current=t,this.dirty=!1}},e}(q),nt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){var t=this.gl;return[t.ONE,t.ZERO]},e.prototype.set=function(t){var e=this.current;(t[0]!==e[0]||t[1]!==e[1]||this.dirty)&&(this.gl.blendFunc(t[0],t[1]),this.current=t,this.dirty=!1)},e}(q),at=function(e){function r(){e.apply(this,arguments)}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.getDefault=function(){return t.Color.transparent},r.prototype.set=function(t){var e=this.current;(t.r!==e.r||t.g!==e.g||t.b!==e.b||t.a!==e.a||this.dirty)&&(this.gl.blendColor(t.r,t.g,t.b,t.a),this.current=t,this.dirty=!1)},r}(q),it=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return this.gl.FUNC_ADD},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.blendEquation(t),this.current=t,this.dirty=!1)},e}(q),ot=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return!1},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;t?e.enable(e.CULL_FACE):e.disable(e.CULL_FACE),this.current=t,this.dirty=!1}},e}(q),st=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return this.gl.BACK},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.cullFace(t),this.current=t,this.dirty=!1)},e}(q),lt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return this.gl.CCW},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.frontFace(t),this.current=t,this.dirty=!1)},e}(q),ct=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return null},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.useProgram(t),this.current=t,this.dirty=!1)},e}(q),ut=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return this.gl.TEXTURE0},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.activeTexture(t),this.current=t,this.dirty=!1)},e}(q),ht=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){var t=this.gl;return[0,0,t.drawingBufferWidth,t.drawingBufferHeight]},e.prototype.set=function(t){var e=this.current;(t[0]!==e[0]||t[1]!==e[1]||t[2]!==e[2]||t[3]!==e[3]||this.dirty)&&(this.gl.viewport(t[0],t[1],t[2],t[3]),this.current=t,this.dirty=!1)},e}(q),ft=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return null},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;e.bindFramebuffer(e.FRAMEBUFFER,t),this.current=t,this.dirty=!1}},e}(q),pt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return null},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;e.bindRenderbuffer(e.RENDERBUFFER,t),this.current=t,this.dirty=!1}},e}(q),dt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return null},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;e.bindTexture(e.TEXTURE_2D,t),this.current=t,this.dirty=!1}},e}(q),gt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return null},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;e.bindBuffer(e.ARRAY_BUFFER,t),this.current=t,this.dirty=!1}},e}(q),vt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return null},e.prototype.set=function(t){var e=this.gl;e.bindBuffer(e.ELEMENT_ARRAY_BUFFER,t),this.current=t,this.dirty=!1},e}(q),mt=function(t){function e(e){t.call(this,e),this.vao=e.extVertexArrayObject}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return null},e.prototype.set=function(t){this.vao&&(t!==this.current||this.dirty)&&(this.vao.bindVertexArrayOES(t),this.current=t,this.dirty=!1)},e}(q),yt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return 4},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;e.pixelStorei(e.UNPACK_ALIGNMENT,t),this.current=t,this.dirty=!1}},e}(q),xt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return!1},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;e.pixelStorei(e.UNPACK_PREMULTIPLY_ALPHA_WEBGL,t),this.current=t,this.dirty=!1}},e}(q),bt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return!1},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;e.pixelStorei(e.UNPACK_FLIP_Y_WEBGL,t),this.current=t,this.dirty=!1}},e}(q),_t=function(t){function e(e,r){t.call(this,e),this.context=e,this.parent=r}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return null},e}(q),wt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setDirty=function(){this.dirty=!0},e.prototype.set=function(t){if(t!==this.current||this.dirty){this.context.bindFramebuffer.set(this.parent);var e=this.gl;e.framebufferTexture2D(e.FRAMEBUFFER,e.COLOR_ATTACHMENT0,e.TEXTURE_2D,t,0),this.current=t,this.dirty=!1}},e}(_t),kt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.set=function(t){if(t!==this.current||this.dirty){this.context.bindFramebuffer.set(this.parent);var e=this.gl;e.framebufferRenderbuffer(e.FRAMEBUFFER,e.DEPTH_ATTACHMENT,e.RENDERBUFFER,t),this.current=t,this.dirty=!1}},e}(_t),Tt=function(t,e,r){this.context=t,this.width=e,this.height=r;var n=t.gl,a=this.framebuffer=n.createFramebuffer();this.colorAttachment=new wt(t,a),this.depthAttachment=new kt(t,a)};Tt.prototype.destroy=function(){var t=this.context.gl,e=this.colorAttachment.get();e&&t.deleteTexture(e);var r=this.depthAttachment.get();r&&t.deleteRenderbuffer(r),t.deleteFramebuffer(this.framebuffer)};var At=function(t,e,r){this.func=t,this.mask=e,this.range=r};At.ReadOnly=!1,At.ReadWrite=!0,At.disabled=new At(519,At.ReadOnly,[0,1]);var Mt=function(t,e,r,n,a,i){this.test=t,this.ref=e,this.mask=r,this.fail=n,this.depthFail=a,this.pass=i};Mt.disabled=new Mt({func:519,mask:0},0,0,7680,7680,7680);var St=function(t,e,r){this.blendFunction=t,this.blendColor=e,this.mask=r};St.disabled=new St(St.Replace=[1,0],t.Color.transparent,[!1,!1,!1,!1]),St.unblended=new St(St.Replace,t.Color.transparent,[!0,!0,!0,!0]),St.alphaBlended=new St([1,771],t.Color.transparent,[!0,!0,!0,!0]);var Et=function(t,e,r){this.enable=t,this.mode=e,this.frontFace=r};Et.disabled=new Et(!1,1029,2305),Et.backCCW=new Et(!0,1029,2305);var Ct=function(t){this.gl=t,this.extVertexArrayObject=this.gl.getExtension(\"OES_vertex_array_object\"),this.clearColor=new H(this),this.clearDepth=new G(this),this.clearStencil=new Y(this),this.colorMask=new W(this),this.depthMask=new X(this),this.stencilMask=new Z(this),this.stencilFunc=new J(this),this.stencilOp=new K(this),this.stencilTest=new Q(this),this.depthRange=new $(this),this.depthTest=new tt(this),this.depthFunc=new et(this),this.blend=new rt(this),this.blendFunc=new nt(this),this.blendColor=new at(this),this.blendEquation=new it(this),this.cullFace=new ot(this),this.cullFaceSide=new st(this),this.frontFace=new lt(this),this.program=new ct(this),this.activeTexture=new ut(this),this.viewport=new ht(this),this.bindFramebuffer=new ft(this),this.bindRenderbuffer=new pt(this),this.bindTexture=new dt(this),this.bindVertexBuffer=new gt(this),this.bindElementBuffer=new vt(this),this.bindVertexArrayOES=this.extVertexArrayObject&&new mt(this),this.pixelStoreUnpack=new yt(this),this.pixelStoreUnpackPremultiplyAlpha=new xt(this),this.pixelStoreUnpackFlipY=new bt(this),this.extTextureFilterAnisotropic=t.getExtension(\"EXT_texture_filter_anisotropic\")||t.getExtension(\"MOZ_EXT_texture_filter_anisotropic\")||t.getExtension(\"WEBKIT_EXT_texture_filter_anisotropic\"),this.extTextureFilterAnisotropic&&(this.extTextureFilterAnisotropicMax=t.getParameter(this.extTextureFilterAnisotropic.MAX_TEXTURE_MAX_ANISOTROPY_EXT)),this.extTextureHalfFloat=t.getExtension(\"OES_texture_half_float\"),this.extTextureHalfFloat&&t.getExtension(\"OES_texture_half_float_linear\")};Ct.prototype.setDefault=function(){this.unbindVAO(),this.clearColor.setDefault(),this.clearDepth.setDefault(),this.clearStencil.setDefault(),this.colorMask.setDefault(),this.depthMask.setDefault(),this.stencilMask.setDefault(),this.stencilFunc.setDefault(),this.stencilOp.setDefault(),this.stencilTest.setDefault(),this.depthRange.setDefault(),this.depthTest.setDefault(),this.depthFunc.setDefault(),this.blend.setDefault(),this.blendFunc.setDefault(),this.blendColor.setDefault(),this.blendEquation.setDefault(),this.cullFace.setDefault(),this.cullFaceSide.setDefault(),this.frontFace.setDefault(),this.program.setDefault(),this.activeTexture.setDefault(),this.bindFramebuffer.setDefault(),this.pixelStoreUnpack.setDefault(),this.pixelStoreUnpackPremultiplyAlpha.setDefault(),this.pixelStoreUnpackFlipY.setDefault()},Ct.prototype.setDirty=function(){this.clearColor.dirty=!0,this.clearDepth.dirty=!0,this.clearStencil.dirty=!0,this.colorMask.dirty=!0,this.depthMask.dirty=!0,this.stencilMask.dirty=!0,this.stencilFunc.dirty=!0,this.stencilOp.dirty=!0,this.stencilTest.dirty=!0,this.depthRange.dirty=!0,this.depthTest.dirty=!0,this.depthFunc.dirty=!0,this.blend.dirty=!0,this.blendFunc.dirty=!0,this.blendColor.dirty=!0,this.blendEquation.dirty=!0,this.cullFace.dirty=!0,this.cullFaceSide.dirty=!0,this.frontFace.dirty=!0,this.program.dirty=!0,this.activeTexture.dirty=!0,this.viewport.dirty=!0,this.bindFramebuffer.dirty=!0,this.bindRenderbuffer.dirty=!0,this.bindTexture.dirty=!0,this.bindVertexBuffer.dirty=!0,this.bindElementBuffer.dirty=!0,this.extVertexArrayObject&&(this.bindVertexArrayOES.dirty=!0),this.pixelStoreUnpack.dirty=!0,this.pixelStoreUnpackPremultiplyAlpha.dirty=!0,this.pixelStoreUnpackFlipY.dirty=!0},Ct.prototype.createIndexBuffer=function(t,e){return new j(this,t,e)},Ct.prototype.createVertexBuffer=function(t,e,r){return new U(this,t,e,r)},Ct.prototype.createRenderbuffer=function(t,e,r){var n=this.gl,a=n.createRenderbuffer();return this.bindRenderbuffer.set(a),n.renderbufferStorage(n.RENDERBUFFER,t,e,r),this.bindRenderbuffer.set(null),a},Ct.prototype.createFramebuffer=function(t,e){return new Tt(this,t,e)},Ct.prototype.clear=function(t){var e=t.color,r=t.depth,n=this.gl,a=0;e&&(a|=n.COLOR_BUFFER_BIT,this.clearColor.set(e),this.colorMask.set([!0,!0,!0,!0])),void 0!==r&&(a|=n.DEPTH_BUFFER_BIT,this.depthRange.set([0,1]),this.clearDepth.set(r),this.depthMask.set(!0)),n.clear(a)},Ct.prototype.setCullFace=function(t){!1===t.enable?this.cullFace.set(!1):(this.cullFace.set(!0),this.cullFaceSide.set(t.mode),this.frontFace.set(t.frontFace))},Ct.prototype.setDepthMode=function(t){t.func!==this.gl.ALWAYS||t.mask?(this.depthTest.set(!0),this.depthFunc.set(t.func),this.depthMask.set(t.mask),this.depthRange.set(t.range)):this.depthTest.set(!1)},Ct.prototype.setStencilMode=function(t){t.test.func!==this.gl.ALWAYS||t.mask?(this.stencilTest.set(!0),this.stencilMask.set(t.mask),this.stencilOp.set([t.fail,t.depthFail,t.pass]),this.stencilFunc.set({func:t.test.func,ref:t.ref,mask:t.test.mask})):this.stencilTest.set(!1)},Ct.prototype.setColorMode=function(e){t.deepEqual(e.blendFunction,St.Replace)?this.blend.set(!1):(this.blend.set(!0),this.blendFunc.set(e.blendFunction),this.blendColor.set(e.blendColor)),this.colorMask.set(e.mask)},Ct.prototype.unbindVAO=function(){this.extVertexArrayObject&&this.bindVertexArrayOES.set(null)};var Lt=function(e){function r(r,n,a){var i=this;e.call(this),this.id=r,this.dispatcher=a,this.on(\"data\",function(t){\"source\"===t.dataType&&\"metadata\"===t.sourceDataType&&(i._sourceLoaded=!0),i._sourceLoaded&&!i._paused&&\"source\"===t.dataType&&\"content\"===t.sourceDataType&&(i.reload(),i.transform&&i.update(i.transform))}),this.on(\"error\",function(){i._sourceErrored=!0}),this._source=D(r,n,a,this),this._tiles={},this._cache=new N(0,this._unloadTile.bind(this)),this._timers={},this._cacheTimers={},this._maxTileCacheSize=null,this._coveredTiles={},this._state=new t.SourceFeatureState}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.onAdd=function(t){this.map=t,this._maxTileCacheSize=t?t._maxTileCacheSize:null,this._source&&this._source.onAdd&&this._source.onAdd(t)},r.prototype.onRemove=function(t){this._source&&this._source.onRemove&&this._source.onRemove(t)},r.prototype.loaded=function(){if(this._sourceErrored)return!0;if(!this._sourceLoaded)return!1;if(!this._source.loaded())return!1;for(var t in this._tiles){var e=this._tiles[t];if(\"loaded\"!==e.state&&\"errored\"!==e.state)return!1}return!0},r.prototype.getSource=function(){return this._source},r.prototype.pause=function(){this._paused=!0},r.prototype.resume=function(){if(this._paused){var t=this._shouldReloadOnResume;this._paused=!1,this._shouldReloadOnResume=!1,t&&this.reload(),this.transform&&this.update(this.transform)}},r.prototype._loadTile=function(t,e){return this._source.loadTile(t,e)},r.prototype._unloadTile=function(t){if(this._source.unloadTile)return this._source.unloadTile(t,function(){})},r.prototype._abortTile=function(t){if(this._source.abortTile)return this._source.abortTile(t,function(){})},r.prototype.serialize=function(){return this._source.serialize()},r.prototype.prepare=function(t){for(var e in this._source.prepare&&this._source.prepare(),this._state.coalesceChanges(this._tiles,this.map?this.map.painter:null),this._tiles){var r=this._tiles[e];r.upload(t),r.prepare(this.map.style.imageManager)}},r.prototype.getIds=function(){return Object.keys(this._tiles).map(Number).sort(Pt)},r.prototype.getRenderableIds=function(e){var r=this,n=[];for(var a in this._tiles)this._isIdRenderable(+a,e)&&n.push(+a);return e?n.sort(function(e,n){var a=r._tiles[e].tileID,i=r._tiles[n].tileID,o=new t.Point(a.canonical.x,a.canonical.y)._rotate(r.transform.angle),s=new t.Point(i.canonical.x,i.canonical.y)._rotate(r.transform.angle);return a.overscaledZ-i.overscaledZ||s.y-o.y||s.x-o.x}):n.sort(Pt)},r.prototype.hasRenderableParent=function(t){var e=this.findLoadedParent(t,0);return!!e&&this._isIdRenderable(e.tileID.key)},r.prototype._isIdRenderable=function(t,e){return this._tiles[t]&&this._tiles[t].hasData()&&!this._coveredTiles[t]&&(e||!this._tiles[t].holdingForFade())},r.prototype.reload=function(){if(this._paused)this._shouldReloadOnResume=!0;else for(var t in this._cache.reset(),this._tiles)\"errored\"!==this._tiles[t].state&&this._reloadTile(t,\"reloading\")},r.prototype._reloadTile=function(t,e){var r=this._tiles[t];r&&(\"loading\"!==r.state&&(r.state=e),this._loadTile(r,this._tileLoaded.bind(this,r,t,e)))},r.prototype._tileLoaded=function(e,r,n,a){if(a)return e.state=\"errored\",void(404!==a.status?this._source.fire(new t.ErrorEvent(a,{tile:e})):this.update(this.transform));e.timeAdded=t.browser.now(),\"expired\"===n&&(e.refreshedUponExpiration=!0),this._setTileReloadTimer(r,e),\"raster-dem\"===this.getSource().type&&e.dem&&this._backfillDEM(e),this._state.initializeTileState(e,this.map?this.map.painter:null),this._source.fire(new t.Event(\"data\",{dataType:\"source\",tile:e,coord:e.tileID}))},r.prototype._backfillDEM=function(t){for(var e=this.getRenderableIds(),r=0;r<e.length;r++){var n=e[r];if(t.neighboringTiles&&t.neighboringTiles[n]){var a=this.getTileByID(n);i(t,a),i(a,t)}}function i(t,e){t.needsHillshadePrepare=!0;var r=e.tileID.canonical.x-t.tileID.canonical.x,n=e.tileID.canonical.y-t.tileID.canonical.y,a=Math.pow(2,t.tileID.canonical.z),i=e.tileID.key;0===r&&0===n||Math.abs(n)>1||(Math.abs(r)>1&&(1===Math.abs(r+a)?r+=a:1===Math.abs(r-a)&&(r-=a)),e.dem&&t.dem&&(t.dem.backfillBorder(e.dem,r,n),t.neighboringTiles&&t.neighboringTiles[i]&&(t.neighboringTiles[i].backfilled=!0)))}},r.prototype.getTile=function(t){return this.getTileByID(t.key)},r.prototype.getTileByID=function(t){return this._tiles[t]},r.prototype.getZoom=function(t){return t.zoom+t.scaleZoom(t.tileSize/this._source.tileSize)},r.prototype._retainLoadedChildren=function(t,e,r,n){for(var a in this._tiles){var i=this._tiles[a];if(!(n[a]||!i.hasData()||i.tileID.overscaledZ<=e||i.tileID.overscaledZ>r)){for(var o=i.tileID;i&&i.tileID.overscaledZ>e+1;){var s=i.tileID.scaledTo(i.tileID.overscaledZ-1);(i=this._tiles[s.key])&&i.hasData()&&(o=s)}for(var l=o;l.overscaledZ>e;)if(t[(l=l.scaledTo(l.overscaledZ-1)).key]){n[o.key]=o;break}}}},r.prototype.findLoadedParent=function(t,e){for(var r=t.overscaledZ-1;r>=e;r--){var n=t.scaledTo(r);if(!n)return;var a=String(n.key),i=this._tiles[a];if(i&&i.hasData())return i;if(this._cache.has(n))return this._cache.get(n)}},r.prototype.updateCacheSize=function(t){var e=(Math.ceil(t.width/this._source.tileSize)+1)*(Math.ceil(t.height/this._source.tileSize)+1),r=Math.floor(5*e),n=\"number\"==typeof this._maxTileCacheSize?Math.min(this._maxTileCacheSize,r):r;this._cache.setMaxSize(n)},r.prototype.handleWrapJump=function(t){var e=(t-(void 0===this._prevLng?t:this._prevLng))/360,r=Math.round(e);if(this._prevLng=t,r){var n={};for(var a in this._tiles){var i=this._tiles[a];i.tileID=i.tileID.unwrapTo(i.tileID.wrap+r),n[i.tileID.key]=i}for(var o in this._tiles=n,this._timers)clearTimeout(this._timers[o]),delete this._timers[o];for(var s in this._tiles){var l=this._tiles[s];this._setTileReloadTimer(s,l)}}},r.prototype.update=function(e){var n=this;if(this.transform=e,this._sourceLoaded&&!this._paused){var a;this.updateCacheSize(e),this.handleWrapJump(this.transform.center.lng),this._coveredTiles={},this.used?this._source.tileID?a=e.getVisibleUnwrappedCoordinates(this._source.tileID).map(function(e){return new t.OverscaledTileID(e.canonical.z,e.wrap,e.canonical.z,e.canonical.x,e.canonical.y)}):(a=e.coveringTiles({tileSize:this._source.tileSize,minzoom:this._source.minzoom,maxzoom:this._source.maxzoom,roundZoom:this._source.roundZoom,reparseOverscaled:this._source.reparseOverscaled}),this._source.hasTile&&(a=a.filter(function(t){return n._source.hasTile(t)}))):a=[];var i=(this._source.roundZoom?Math.round:Math.floor)(this.getZoom(e)),o=Math.max(i-r.maxOverzooming,this._source.minzoom),s=Math.max(i+r.maxUnderzooming,this._source.minzoom),l=this._updateRetainedTiles(a,i);if(Ot(this._source.type)){for(var c={},u={},h=0,f=Object.keys(l);h<f.length;h+=1){var p=f[h],d=l[p],g=this._tiles[p];if(g&&!(g.fadeEndTime&&g.fadeEndTime<=t.browser.now())){var v=this.findLoadedParent(d,o);v&&(this._addTile(v.tileID),c[v.tileID.key]=v.tileID),u[p]=d}}for(var m in this._retainLoadedChildren(u,i,s,l),c)l[m]||(this._coveredTiles[m]=!0,l[m]=c[m])}for(var y in l)this._tiles[y].clearFadeHold();for(var x=0,b=t.keysDifference(this._tiles,l);x<b.length;x+=1){var _=b[x],w=this._tiles[_];w.hasSymbolBuckets&&!w.holdingForFade()?w.setHoldDuration(this.map._fadeDuration):w.hasSymbolBuckets&&!w.symbolFadeFinished()||this._removeTile(_)}}},r.prototype.releaseSymbolFadeTiles=function(){for(var t in this._tiles)this._tiles[t].holdingForFade()&&this._removeTile(t)},r.prototype._updateRetainedTiles=function(t,e){for(var n={},a={},i=Math.max(e-r.maxOverzooming,this._source.minzoom),o=Math.max(e+r.maxUnderzooming,this._source.minzoom),s={},l=0,c=t;l<c.length;l+=1){var u=c[l],h=this._addTile(u);n[u.key]=u,h.hasData()||e<this._source.maxzoom&&(s[u.key]=u)}this._retainLoadedChildren(s,e,o,n);for(var f=0,p=t;f<p.length;f+=1){var d=p[f],g=this._tiles[d.key];if(!g.hasData()){if(e+1>this._source.maxzoom){var v=d.children(this._source.maxzoom)[0],m=this.getTile(v);if(m&&m.hasData()){n[v.key]=v;continue}}else{var y=d.children(this._source.maxzoom);if(n[y[0].key]&&n[y[1].key]&&n[y[2].key]&&n[y[3].key])continue}for(var x=g.wasRequested(),b=d.overscaledZ-1;b>=i;--b){var _=d.scaledTo(b);if(a[_.key])break;if(a[_.key]=!0,!(g=this.getTile(_))&&x&&(g=this._addTile(_)),g&&(n[_.key]=_,x=g.wasRequested(),g.hasData()))break}}}return n},r.prototype._addTile=function(e){var r=this._tiles[e.key];if(r)return r;(r=this._cache.getAndRemove(e))&&(this._setTileReloadTimer(e.key,r),r.tileID=e,this._state.initializeTileState(r,this.map?this.map.painter:null),this._cacheTimers[e.key]&&(clearTimeout(this._cacheTimers[e.key]),delete this._cacheTimers[e.key],this._setTileReloadTimer(e.key,r)));var n=Boolean(r);return n||(r=new t.Tile(e,this._source.tileSize*e.overscaleFactor()),this._loadTile(r,this._tileLoaded.bind(this,r,e.key,r.state))),r?(r.uses++,this._tiles[e.key]=r,n||this._source.fire(new t.Event(\"dataloading\",{tile:r,coord:r.tileID,dataType:\"source\"})),r):null},r.prototype._setTileReloadTimer=function(t,e){var r=this;t in this._timers&&(clearTimeout(this._timers[t]),delete this._timers[t]);var n=e.getExpiryTimeout();n&&(this._timers[t]=setTimeout(function(){r._reloadTile(t,\"expired\"),delete r._timers[t]},n))},r.prototype._removeTile=function(t){var e=this._tiles[t];e&&(e.uses--,delete this._tiles[t],this._timers[t]&&(clearTimeout(this._timers[t]),delete this._timers[t]),e.uses>0||(e.hasData()&&\"reloading\"!==e.state?this._cache.add(e.tileID,e,e.getExpiryTimeout()):(e.aborted=!0,this._abortTile(e),this._unloadTile(e))))},r.prototype.clearTiles=function(){for(var t in this._shouldReloadOnResume=!1,this._paused=!1,this._tiles)this._removeTile(t);this._cache.reset()},r.prototype.tilesIn=function(e,r,n){var a=this,i=[],o=this.transform;if(!o)return i;for(var s=n?o.getCameraQueryGeometry(e):e,l=e.map(function(t){return o.pointCoordinate(t)}),c=s.map(function(t){return o.pointCoordinate(t)}),u=this.getIds(),h=1/0,f=1/0,p=-1/0,d=-1/0,g=0,v=c;g<v.length;g+=1){var m=v[g];h=Math.min(h,m.x),f=Math.min(f,m.y),p=Math.max(p,m.x),d=Math.max(d,m.y)}for(var y=function(e){var n=a._tiles[u[e]];if(!n.holdingForFade()){var s=n.tileID,g=Math.pow(2,o.zoom-n.tileID.overscaledZ),v=r*n.queryPadding*t.EXTENT/n.tileSize/g,m=[s.getTilePoint(new t.MercatorCoordinate(h,f)),s.getTilePoint(new t.MercatorCoordinate(p,d))];if(m[0].x-v<t.EXTENT&&m[0].y-v<t.EXTENT&&m[1].x+v>=0&&m[1].y+v>=0){var y=l.map(function(t){return s.getTilePoint(t)}),x=c.map(function(t){return s.getTilePoint(t)});i.push({tile:n,tileID:s,queryGeometry:y,cameraQueryGeometry:x,scale:g})}}},x=0;x<u.length;x++)y(x);return i},r.prototype.getVisibleCoordinates=function(t){for(var e=this,r=this.getRenderableIds(t).map(function(t){return e._tiles[t].tileID}),n=0,a=r;n<a.length;n+=1){var i=a[n];i.posMatrix=this.transform.calculatePosMatrix(i.toUnwrapped())}return r},r.prototype.hasTransition=function(){if(this._source.hasTransition())return!0;if(Ot(this._source.type))for(var e in this._tiles){var r=this._tiles[e];if(void 0!==r.fadeEndTime&&r.fadeEndTime>=t.browser.now())return!0}return!1},r.prototype.setFeatureState=function(t,e,r){t=t||\"_geojsonTileLayer\",this._state.updateState(t,e,r)},r.prototype.removeFeatureState=function(t,e,r){t=t||\"_geojsonTileLayer\",this._state.removeFeatureState(t,e,r)},r.prototype.getFeatureState=function(t,e){return t=t||\"_geojsonTileLayer\",this._state.getState(t,e)},r}(t.Evented);function Pt(t,e){return t%32-e%32||e-t}function Ot(t){return\"raster\"===t||\"image\"===t||\"video\"===t}function It(){return new t.window.Worker(Qn.workerUrl)}Lt.maxOverzooming=10,Lt.maxUnderzooming=3;var zt=function(){this.active={}};zt.prototype.acquire=function(t){if(!this.workers)for(this.workers=[];this.workers.length<zt.workerCount;)this.workers.push(new It);return this.active[t]=!0,this.workers.slice()},zt.prototype.release=function(t){delete this.active[t],0===Object.keys(this.active).length&&(this.workers.forEach(function(t){t.terminate()}),this.workers=null)};var Dt,Rt=Math.floor(t.browser.hardwareConcurrency/2);function Ft(e,r){var n={};for(var a in e)\"ref\"!==a&&(n[a]=e[a]);return t.refProperties.forEach(function(t){t in r&&(n[t]=r[t])}),n}function Bt(t){t=t.slice();for(var e=Object.create(null),r=0;r<t.length;r++)e[t[r].id]=t[r];for(var n=0;n<t.length;n++)\"ref\"in t[n]&&(t[n]=Ft(t[n],e[t[n].ref]));return t}zt.workerCount=Math.max(Math.min(Rt,6),1);var Nt={setStyle:\"setStyle\",addLayer:\"addLayer\",removeLayer:\"removeLayer\",setPaintProperty:\"setPaintProperty\",setLayoutProperty:\"setLayoutProperty\",setFilter:\"setFilter\",addSource:\"addSource\",removeSource:\"removeSource\",setGeoJSONSourceData:\"setGeoJSONSourceData\",setLayerZoomRange:\"setLayerZoomRange\",setLayerProperty:\"setLayerProperty\",setCenter:\"setCenter\",setZoom:\"setZoom\",setBearing:\"setBearing\",setPitch:\"setPitch\",setSprite:\"setSprite\",setGlyphs:\"setGlyphs\",setTransition:\"setTransition\",setLight:\"setLight\"};function jt(t,e,r){r.push({command:Nt.addSource,args:[t,e[t]]})}function Vt(t,e,r){e.push({command:Nt.removeSource,args:[t]}),r[t]=!0}function Ut(t,e,r,n){Vt(t,r,n),jt(t,e,r)}function qt(e,r,n){var a;for(a in e[n])if(e[n].hasOwnProperty(a)&&\"data\"!==a&&!t.deepEqual(e[n][a],r[n][a]))return!1;for(a in r[n])if(r[n].hasOwnProperty(a)&&\"data\"!==a&&!t.deepEqual(e[n][a],r[n][a]))return!1;return!0}function Ht(e,r,n,a,i,o){var s;for(s in r=r||{},e=e||{})e.hasOwnProperty(s)&&(t.deepEqual(e[s],r[s])||n.push({command:o,args:[a,s,r[s],i]}));for(s in r)r.hasOwnProperty(s)&&!e.hasOwnProperty(s)&&(t.deepEqual(e[s],r[s])||n.push({command:o,args:[a,s,r[s],i]}))}function Gt(t){return t.id}function Yt(t,e){return t[e.id]=e,t}var Wt=function(t,e,r){var n=this.boxCells=[],a=this.circleCells=[];this.xCellCount=Math.ceil(t/r),this.yCellCount=Math.ceil(e/r);for(var i=0;i<this.xCellCount*this.yCellCount;i++)n.push([]),a.push([]);this.circleKeys=[],this.boxKeys=[],this.bboxes=[],this.circles=[],this.width=t,this.height=e,this.xScale=this.xCellCount/t,this.yScale=this.yCellCount/e,this.boxUid=0,this.circleUid=0};function Xt(e,r,n,a,i){var o=t.create();return r?(t.scale(o,o,[1/i,1/i,1]),n||t.rotateZ(o,o,a.angle)):t.multiply(o,a.labelPlaneMatrix,e),o}function Zt(e,r,n,a,i){if(r){var o=t.clone(e);return t.scale(o,o,[i,i,1]),n||t.rotateZ(o,o,-a.angle),o}return a.glCoordMatrix}function Jt(e,r){var n=[e.x,e.y,0,1];oe(n,n,r);var a=n[3];return{point:new t.Point(n[0]/a,n[1]/a),signedDistanceFromCamera:a}}function Kt(t,e){var r=t[0]/t[3],n=t[1]/t[3];return r>=-e[0]&&r<=e[0]&&n>=-e[1]&&n<=e[1]}function Qt(e,r,n,a,i,o,s,l){var c=a?e.textSizeData:e.iconSizeData,u=t.evaluateSizeForZoom(c,n.transform.zoom),h=[256/n.width*2+1,256/n.height*2+1],f=a?e.text.dynamicLayoutVertexArray:e.icon.dynamicLayoutVertexArray;f.clear();for(var p=e.lineVertexArray,d=a?e.text.placedSymbolArray:e.icon.placedSymbolArray,g=n.transform.width/n.transform.height,v=!1,m=0;m<d.length;m++){var y=d.get(m);if(y.hidden||y.writingMode===t.WritingMode.vertical&&!v)ie(y.numGlyphs,f);else{v=!1;var x=[y.anchorX,y.anchorY,0,1];if(t.transformMat4(x,x,r),Kt(x,h)){var b=.5+x[3]/n.transform.cameraToCenterDistance*.5,_=t.evaluateSizeForFeature(c,u,y),w=s?_*b:_/b,k=new t.Point(y.anchorX,y.anchorY),T=Jt(k,i).point,A={},M=ee(y,w,!1,l,r,i,o,e.glyphOffsetArray,p,f,T,k,A,g);v=M.useVertical,(M.notEnoughRoom||v||M.needsFlipping&&ee(y,w,!0,l,r,i,o,e.glyphOffsetArray,p,f,T,k,A,g).notEnoughRoom)&&ie(y.numGlyphs,f)}else ie(y.numGlyphs,f)}}a?e.text.dynamicLayoutVertexBuffer.updateData(f):e.icon.dynamicLayoutVertexBuffer.updateData(f)}function $t(t,e,r,n,a,i,o,s,l,c,u,h){var f=s.glyphStartIndex+s.numGlyphs,p=s.lineStartIndex,d=s.lineStartIndex+s.lineLength,g=e.getoffsetX(s.glyphStartIndex),v=e.getoffsetX(f-1),m=ne(t*g,r,n,a,i,o,s.segment,p,d,l,c,u,h);if(!m)return null;var y=ne(t*v,r,n,a,i,o,s.segment,p,d,l,c,u,h);return y?{first:m,last:y}:null}function te(e,r,n,a){return e===t.WritingMode.horizontal&&Math.abs(n.y-r.y)>Math.abs(n.x-r.x)*a?{useVertical:!0}:(e===t.WritingMode.vertical?r.y<n.y:r.x>n.x)?{needsFlipping:!0}:null}function ee(e,r,n,a,i,o,s,l,c,u,h,f,p,d){var g,v=r/24,m=e.lineOffsetX*v,y=e.lineOffsetY*v;if(e.numGlyphs>1){var x=e.glyphStartIndex+e.numGlyphs,b=e.lineStartIndex,_=e.lineStartIndex+e.lineLength,w=$t(v,l,m,y,n,h,f,e,c,o,p,!1);if(!w)return{notEnoughRoom:!0};var k=Jt(w.first.point,s).point,T=Jt(w.last.point,s).point;if(a&&!n){var A=te(e.writingMode,k,T,d);if(A)return A}g=[w.first];for(var M=e.glyphStartIndex+1;M<x-1;M++)g.push(ne(v*l.getoffsetX(M),m,y,n,h,f,e.segment,b,_,c,o,p,!1));g.push(w.last)}else{if(a&&!n){var S=Jt(f,i).point,E=e.lineStartIndex+e.segment+1,C=new t.Point(c.getx(E),c.gety(E)),L=Jt(C,i),P=L.signedDistanceFromCamera>0?L.point:re(f,C,S,1,i),O=te(e.writingMode,S,P,d);if(O)return O}var I=ne(v*l.getoffsetX(e.glyphStartIndex),m,y,n,h,f,e.segment,e.lineStartIndex,e.lineStartIndex+e.lineLength,c,o,p,!1);if(!I)return{notEnoughRoom:!0};g=[I]}for(var z=0,D=g;z<D.length;z+=1){var R=D[z];t.addDynamicAttributes(u,R.point,R.angle)}return{}}function re(t,e,r,n,a){var i=Jt(t.add(t.sub(e)._unit()),a).point,o=r.sub(i);return r.add(o._mult(n/o.mag()))}function ne(e,r,n,a,i,o,s,l,c,u,h,f,p){var d=a?e-r:e+r,g=d>0?1:-1,v=0;a&&(g*=-1,v=Math.PI),g<0&&(v+=Math.PI);for(var m=g>0?l+s:l+s+1,y=m,x=i,b=i,_=0,w=0,k=Math.abs(d);_+w<=k;){if((m+=g)<l||m>=c)return null;if(b=x,void 0===(x=f[m])){var T=new t.Point(u.getx(m),u.gety(m)),A=Jt(T,h);if(A.signedDistanceFromCamera>0)x=f[m]=A.point;else{var M=m-g;x=re(0===_?o:new t.Point(u.getx(M),u.gety(M)),T,b,k-_+1,h)}}_+=w,w=b.dist(x)}var S=(k-_)/w,E=x.sub(b),C=E.mult(S)._add(b);return C._add(E._unit()._perp()._mult(n*g)),{point:C,angle:v+Math.atan2(x.y-b.y,x.x-b.x),tileDistance:p?{prevTileDistance:m-g===y?0:u.gettileUnitDistanceFromAnchor(m-g),lastSegmentViewportDistance:k-_}:null}}Wt.prototype.keysLength=function(){return this.boxKeys.length+this.circleKeys.length},Wt.prototype.insert=function(t,e,r,n,a){this._forEachCell(e,r,n,a,this._insertBoxCell,this.boxUid++),this.boxKeys.push(t),this.bboxes.push(e),this.bboxes.push(r),this.bboxes.push(n),this.bboxes.push(a)},Wt.prototype.insertCircle=function(t,e,r,n){this._forEachCell(e-n,r-n,e+n,r+n,this._insertCircleCell,this.circleUid++),this.circleKeys.push(t),this.circles.push(e),this.circles.push(r),this.circles.push(n)},Wt.prototype._insertBoxCell=function(t,e,r,n,a,i){this.boxCells[a].push(i)},Wt.prototype._insertCircleCell=function(t,e,r,n,a,i){this.circleCells[a].push(i)},Wt.prototype._query=function(t,e,r,n,a,i){if(r<0||t>this.width||n<0||e>this.height)return!a&&[];var o=[];if(t<=0&&e<=0&&this.width<=r&&this.height<=n){if(a)return!0;for(var s=0;s<this.boxKeys.length;s++)o.push({key:this.boxKeys[s],x1:this.bboxes[4*s],y1:this.bboxes[4*s+1],x2:this.bboxes[4*s+2],y2:this.bboxes[4*s+3]});for(var l=0;l<this.circleKeys.length;l++){var c=this.circles[3*l],u=this.circles[3*l+1],h=this.circles[3*l+2];o.push({key:this.circleKeys[l],x1:c-h,y1:u-h,x2:c+h,y2:u+h})}return i?o.filter(i):o}var f={hitTest:a,seenUids:{box:{},circle:{}}};return this._forEachCell(t,e,r,n,this._queryCell,o,f,i),a?o.length>0:o},Wt.prototype._queryCircle=function(t,e,r,n,a){var i=t-r,o=t+r,s=e-r,l=e+r;if(o<0||i>this.width||l<0||s>this.height)return!n&&[];var c=[],u={hitTest:n,circle:{x:t,y:e,radius:r},seenUids:{box:{},circle:{}}};return this._forEachCell(i,s,o,l,this._queryCellCircle,c,u,a),n?c.length>0:c},Wt.prototype.query=function(t,e,r,n,a){return this._query(t,e,r,n,!1,a)},Wt.prototype.hitTest=function(t,e,r,n,a){return this._query(t,e,r,n,!0,a)},Wt.prototype.hitTestCircle=function(t,e,r,n){return this._queryCircle(t,e,r,!0,n)},Wt.prototype._queryCell=function(t,e,r,n,a,i,o,s){var l=o.seenUids,c=this.boxCells[a];if(null!==c)for(var u=this.bboxes,h=0,f=c;h<f.length;h+=1){var p=f[h];if(!l.box[p]){l.box[p]=!0;var d=4*p;if(t<=u[d+2]&&e<=u[d+3]&&r>=u[d+0]&&n>=u[d+1]&&(!s||s(this.boxKeys[p]))){if(o.hitTest)return i.push(!0),!0;i.push({key:this.boxKeys[p],x1:u[d],y1:u[d+1],x2:u[d+2],y2:u[d+3]})}}}var g=this.circleCells[a];if(null!==g)for(var v=this.circles,m=0,y=g;m<y.length;m+=1){var x=y[m];if(!l.circle[x]){l.circle[x]=!0;var b=3*x;if(this._circleAndRectCollide(v[b],v[b+1],v[b+2],t,e,r,n)&&(!s||s(this.circleKeys[x]))){if(o.hitTest)return i.push(!0),!0;var _=v[b],w=v[b+1],k=v[b+2];i.push({key:this.circleKeys[x],x1:_-k,y1:w-k,x2:_+k,y2:w+k})}}}},Wt.prototype._queryCellCircle=function(t,e,r,n,a,i,o,s){var l=o.circle,c=o.seenUids,u=this.boxCells[a];if(null!==u)for(var h=this.bboxes,f=0,p=u;f<p.length;f+=1){var d=p[f];if(!c.box[d]){c.box[d]=!0;var g=4*d;if(this._circleAndRectCollide(l.x,l.y,l.radius,h[g+0],h[g+1],h[g+2],h[g+3])&&(!s||s(this.boxKeys[d])))return i.push(!0),!0}}var v=this.circleCells[a];if(null!==v)for(var m=this.circles,y=0,x=v;y<x.length;y+=1){var b=x[y];if(!c.circle[b]){c.circle[b]=!0;var _=3*b;if(this._circlesCollide(m[_],m[_+1],m[_+2],l.x,l.y,l.radius)&&(!s||s(this.circleKeys[b])))return i.push(!0),!0}}},Wt.prototype._forEachCell=function(t,e,r,n,a,i,o,s){for(var l=this._convertToXCellCoord(t),c=this._convertToYCellCoord(e),u=this._convertToXCellCoord(r),h=this._convertToYCellCoord(n),f=l;f<=u;f++)for(var p=c;p<=h;p++){var d=this.xCellCount*p+f;if(a.call(this,t,e,r,n,d,i,o,s))return}},Wt.prototype._convertToXCellCoord=function(t){return Math.max(0,Math.min(this.xCellCount-1,Math.floor(t*this.xScale)))},Wt.prototype._convertToYCellCoord=function(t){return Math.max(0,Math.min(this.yCellCount-1,Math.floor(t*this.yScale)))},Wt.prototype._circlesCollide=function(t,e,r,n,a,i){var o=n-t,s=a-e,l=r+i;return l*l>o*o+s*s},Wt.prototype._circleAndRectCollide=function(t,e,r,n,a,i,o){var s=(i-n)/2,l=Math.abs(t-(n+s));if(l>s+r)return!1;var c=(o-a)/2,u=Math.abs(e-(a+c));if(u>c+r)return!1;if(l<=s||u<=c)return!0;var h=l-s,f=u-c;return h*h+f*f<=r*r};var ae=new Float32Array([-1/0,-1/0,0,-1/0,-1/0,0,-1/0,-1/0,0,-1/0,-1/0,0]);function ie(t,e){for(var r=0;r<t;r++){var n=e.length;e.resize(n+4),e.float32.set(ae,3*n)}}function oe(t,e,r){var n=e[0],a=e[1];return t[0]=r[0]*n+r[4]*a+r[12],t[1]=r[1]*n+r[5]*a+r[13],t[3]=r[3]*n+r[7]*a+r[15],t}var se=function(t,e,r){void 0===e&&(e=new Wt(t.width+200,t.height+200,25)),void 0===r&&(r=new Wt(t.width+200,t.height+200,25)),this.transform=t,this.grid=e,this.ignoredGrid=r,this.pitchfactor=Math.cos(t._pitch)*t.cameraToCenterDistance,this.screenRightBoundary=t.width+100,this.screenBottomBoundary=t.height+100,this.gridRightBoundary=t.width+200,this.gridBottomBoundary=t.height+200};function le(t,e,r){t[e+4]=r?1:0}function ce(e,r,n){return r*(t.EXTENT/(e.tileSize*Math.pow(2,n-e.tileID.overscaledZ)))}se.prototype.placeCollisionBox=function(t,e,r,n,a){var i=this.projectAndGetPerspectiveRatio(n,t.anchorPointX,t.anchorPointY),o=r*i.perspectiveRatio,s=t.x1*o+i.point.x,l=t.y1*o+i.point.y,c=t.x2*o+i.point.x,u=t.y2*o+i.point.y;return!this.isInsideGrid(s,l,c,u)||!e&&this.grid.hitTest(s,l,c,u,a)?{box:[],offscreen:!1}:{box:[s,l,c,u],offscreen:this.isOffscreen(s,l,c,u)}},se.prototype.approximateTileDistance=function(t,e,r,n,a){var i=a?1:n/this.pitchfactor,o=t.lastSegmentViewportDistance*r;return t.prevTileDistance+o+(i-1)*o*Math.abs(Math.sin(e))},se.prototype.placeCollisionCircles=function(e,r,n,a,i,o,s,l,c,u,h,f,p){var d=[],g=this.projectAnchor(c,i.anchorX,i.anchorY),v=l/24,m=i.lineOffsetX*l,y=i.lineOffsetY*l,x=new t.Point(i.anchorX,i.anchorY),b=$t(v,s,m,y,!1,Jt(x,u).point,x,i,o,u,{},!0),_=!1,w=!1,k=!0,T=g.perspectiveRatio*a,A=1/(a*n),M=0,S=0;b&&(M=this.approximateTileDistance(b.first.tileDistance,b.first.angle,A,g.cameraDistance,f),S=this.approximateTileDistance(b.last.tileDistance,b.last.angle,A,g.cameraDistance,f));for(var E=0;E<e.length;E+=5){var C=e[E],L=e[E+1],P=e[E+2],O=e[E+3];if(!b||O<-M||O>S)le(e,E,!1);else{var I=this.projectPoint(c,C,L),z=P*T;if(d.length>0){var D=I.x-d[d.length-4],R=I.y-d[d.length-3];if(z*z*2>D*D+R*R&&E+8<e.length){var F=e[E+8];if(F>-M&&F<S){le(e,E,!1);continue}}}var B=E/5;d.push(I.x,I.y,z,B),le(e,E,!0);var N=I.x-z,j=I.y-z,V=I.x+z,U=I.y+z;if(k=k&&this.isOffscreen(N,j,V,U),w=w||this.isInsideGrid(N,j,V,U),!r&&this.grid.hitTestCircle(I.x,I.y,z,p)){if(!h)return{circles:[],offscreen:!1};_=!0}}}return{circles:_||!w?[]:d,offscreen:k}},se.prototype.queryRenderedSymbols=function(e){if(0===e.length||0===this.grid.keysLength()&&0===this.ignoredGrid.keysLength())return{};for(var r=[],n=1/0,a=1/0,i=-1/0,o=-1/0,s=0,l=e;s<l.length;s+=1){var c=l[s],u=new t.Point(c.x+100,c.y+100);n=Math.min(n,u.x),a=Math.min(a,u.y),i=Math.max(i,u.x),o=Math.max(o,u.y),r.push(u)}for(var h={},f={},p=0,d=this.grid.query(n,a,i,o).concat(this.ignoredGrid.query(n,a,i,o));p<d.length;p+=1){var g=d[p],v=g.key;if(void 0===h[v.bucketInstanceId]&&(h[v.bucketInstanceId]={}),!h[v.bucketInstanceId][v.featureIndex]){var m=[new t.Point(g.x1,g.y1),new t.Point(g.x2,g.y1),new t.Point(g.x2,g.y2),new t.Point(g.x1,g.y2)];t.polygonIntersectsPolygon(r,m)&&(h[v.bucketInstanceId][v.featureIndex]=!0,void 0===f[v.bucketInstanceId]&&(f[v.bucketInstanceId]=[]),f[v.bucketInstanceId].push(v.featureIndex))}}return f},se.prototype.insertCollisionBox=function(t,e,r,n,a){var i={bucketInstanceId:r,featureIndex:n,collisionGroupID:a};(e?this.ignoredGrid:this.grid).insert(i,t[0],t[1],t[2],t[3])},se.prototype.insertCollisionCircles=function(t,e,r,n,a){for(var i=e?this.ignoredGrid:this.grid,o={bucketInstanceId:r,featureIndex:n,collisionGroupID:a},s=0;s<t.length;s+=4)i.insertCircle(o,t[s],t[s+1],t[s+2])},se.prototype.projectAnchor=function(t,e,r){var n=[e,r,0,1];return oe(n,n,t),{perspectiveRatio:.5+this.transform.cameraToCenterDistance/n[3]*.5,cameraDistance:n[3]}},se.prototype.projectPoint=function(e,r,n){var a=[r,n,0,1];return oe(a,a,e),new t.Point((a[0]/a[3]+1)/2*this.transform.width+100,(-a[1]/a[3]+1)/2*this.transform.height+100)},se.prototype.projectAndGetPerspectiveRatio=function(e,r,n){var a=[r,n,0,1];return oe(a,a,e),{point:new t.Point((a[0]/a[3]+1)/2*this.transform.width+100,(-a[1]/a[3]+1)/2*this.transform.height+100),perspectiveRatio:.5+this.transform.cameraToCenterDistance/a[3]*.5}},se.prototype.isOffscreen=function(t,e,r,n){return r<100||t>=this.screenRightBoundary||n<100||e>this.screenBottomBoundary},se.prototype.isInsideGrid=function(t,e,r,n){return r>=0&&t<this.gridRightBoundary&&n>=0&&e<this.gridBottomBoundary};var ue=function(t,e,r,n){this.opacity=t?Math.max(0,Math.min(1,t.opacity+(t.placed?e:-e))):n&&r?1:0,this.placed=r};ue.prototype.isHidden=function(){return 0===this.opacity&&!this.placed};var he=function(t,e,r,n,a){this.text=new ue(t?t.text:null,e,r,a),this.icon=new ue(t?t.icon:null,e,n,a)};he.prototype.isHidden=function(){return this.text.isHidden()&&this.icon.isHidden()};var fe=function(t,e,r){this.text=t,this.icon=e,this.skipFade=r},pe=function(t,e,r,n,a){this.bucketInstanceId=t,this.featureIndex=e,this.sourceLayerIndex=r,this.bucketIndex=n,this.tileID=a},de=function(t){this.crossSourceCollisions=t,this.maxGroupID=0,this.collisionGroups={}};function ge(e,r,n,a,i){var o=t.getAnchorAlignment(e),s=-(o.horizontalAlign-.5)*r,l=-(o.verticalAlign-.5)*n,c=t.evaluateRadialOffset(e,a);return new t.Point(s+c[0]*i,l+c[1]*i)}de.prototype.get=function(t){if(this.crossSourceCollisions)return{ID:0,predicate:null};if(!this.collisionGroups[t]){var e=++this.maxGroupID;this.collisionGroups[t]={ID:e,predicate:function(t){return t.collisionGroupID===e}}}return this.collisionGroups[t]};var ve=function(t,e,r,n){this.transform=t.clone(),this.collisionIndex=new se(this.transform),this.placements={},this.opacities={},this.variableOffsets={},this.stale=!1,this.commitTime=0,this.fadeDuration=e,this.retainedQueryData={},this.collisionGroups=new de(r),this.prevPlacement=n,n&&(n.prevPlacement=void 0),this.placedOrientations={}};function me(t,e,r,n,a){t.emplaceBack(e?1:0,r?1:0,n||0,a||0),t.emplaceBack(e?1:0,r?1:0,n||0,a||0),t.emplaceBack(e?1:0,r?1:0,n||0,a||0),t.emplaceBack(e?1:0,r?1:0,n||0,a||0)}ve.prototype.placeLayerTile=function(e,r,n,a){var i=r.getBucket(e),o=r.latestFeatureIndex;if(i&&o&&e.id===i.layerIds[0]){var s=r.collisionBoxArray,l=i.layers[0].layout,c=Math.pow(2,this.transform.zoom-r.tileID.overscaledZ),u=r.tileSize/t.EXTENT,h=this.transform.calculatePosMatrix(r.tileID.toUnwrapped()),f=Xt(h,\"map\"===l.get(\"text-pitch-alignment\"),\"map\"===l.get(\"text-rotation-alignment\"),this.transform,ce(r,1,this.transform.zoom)),p=Xt(h,\"map\"===l.get(\"icon-pitch-alignment\"),\"map\"===l.get(\"icon-rotation-alignment\"),this.transform,ce(r,1,this.transform.zoom));this.retainedQueryData[i.bucketInstanceId]=new pe(i.bucketInstanceId,o,i.sourceLayerIndex,i.index,r.tileID),this.placeLayerBucket(i,h,f,p,c,u,n,r.holdingForFade(),a,s)}},ve.prototype.attemptAnchorPlacement=function(e,r,n,a,i,o,s,l,c,u,h,f,p,d,g){var v,m=ge(e,n,a,i,o),y=this.collisionIndex.placeCollisionBox(function(e,r,n,a,i,o){var s=e.x1,l=e.x2,c=e.y1,u=e.y2,h=e.anchorPointX,f=e.anchorPointY,p=new t.Point(r,n);return a&&p._rotate(i?o:-o),{x1:s+p.x,y1:c+p.y,x2:l+p.x,y2:u+p.y,anchorPointX:h,anchorPointY:f}}(r,m.x,m.y,s,l,this.transform.angle),f,c,u,h.predicate);if(y.box.length>0)return this.prevPlacement&&this.prevPlacement.variableOffsets[p.crossTileID]&&this.prevPlacement.placements[p.crossTileID]&&this.prevPlacement.placements[p.crossTileID].text&&(v=this.prevPlacement.variableOffsets[p.crossTileID].anchor),this.variableOffsets[p.crossTileID]={radialOffset:i,width:n,height:a,anchor:e,textBoxScale:o,prevAnchor:v},this.markUsedJustification(d,e,p,g),d.allowVerticalPlacement&&(this.markUsedOrientation(d,g,p),this.placedOrientations[p.crossTileID]=g),y},ve.prototype.placeLayerBucket=function(e,r,n,a,i,o,s,l,c,u){var h=this,f=e.layers[0].layout,p=t.evaluateSizeForZoom(e.textSizeData,this.transform.zoom),d=f.get(\"text-optional\"),g=f.get(\"icon-optional\"),v=f.get(\"text-allow-overlap\"),m=f.get(\"icon-allow-overlap\"),y=v&&(m||!e.hasIconData()||g),x=m&&(v||!e.hasTextData()||d),b=this.collisionGroups.get(e.sourceID),_=\"map\"===f.get(\"text-rotation-alignment\"),w=\"map\"===f.get(\"text-pitch-alignment\"),k=\"viewport-y\"===f.get(\"symbol-z-order\");!e.collisionArrays&&u&&e.deserializeCollisionBoxes(u);var T=function(a,u){if(!c[a.crossTileID])if(l)h.placements[a.crossTileID]=new fe(!1,!1,!1);else{var m,k=!1,T=!1,A=!0,M={box:null,offscreen:null},S={box:null,offscreen:null},E=null,C=null,L=0,P=0,O=0;u.textFeatureIndex&&(L=u.textFeatureIndex),u.verticalTextFeatureIndex&&(P=u.verticalTextFeatureIndex);var I=u.textBox;if(I){var z=function(r){var n=t.WritingMode.horizontal;if(e.allowVerticalPlacement&&!r&&h.prevPlacement){var i=h.prevPlacement.placedOrientations[a.crossTileID];i&&(h.placedOrientations[a.crossTileID]=i,n=i,h.markUsedOrientation(e,n,a))}return n},D=function(r,n){if(e.allowVerticalPlacement&&a.numVerticalGlyphVertices>0&&u.verticalTextBox)for(var i=0,o=e.writingModes;i<o.length&&(o[i]===t.WritingMode.vertical?(M=n(),S=M):M=r(),!(M&&M.box&&M.box.length));i+=1);else M=r()};if(f.get(\"text-variable-anchor\")){var R=f.get(\"text-variable-anchor\");if(h.prevPlacement&&h.prevPlacement.variableOffsets[a.crossTileID]){var F=h.prevPlacement.variableOffsets[a.crossTileID];R.indexOf(F.anchor)>0&&(R=R.filter(function(t){return t!==F.anchor})).unshift(F.anchor)}var B=function(t,n){for(var i=t.x2-t.x1,s=t.y2-t.y1,l=a.textBoxScale,c={box:[],offscreen:!1},u=v?2*R.length:R.length,f=0;f<u;++f){var p=R[f%R.length],d=f>=R.length;if((c=h.attemptAnchorPlacement(p,t,i,s,a.radialTextOffset,l,_,w,o,r,b,d,a,e,n))&&c.box&&c.box.length){k=!0;break}}return c};D(function(){return B(I,t.WritingMode.horizontal)},function(){var r=u.verticalTextBox,n=M&&M.box&&M.box.length;return e.allowVerticalPlacement&&!n&&a.numVerticalGlyphVertices>0&&r?B(r,t.WritingMode.vertical):{box:null,offscreen:null}}),M&&(k=M.box,A=M.offscreen);var N=z(M&&M.box);if(!k&&h.prevPlacement){var j=h.prevPlacement.variableOffsets[a.crossTileID];j&&(h.variableOffsets[a.crossTileID]=j,h.markUsedJustification(e,j.anchor,a,N))}}else{var V=function(t,n){var i=h.collisionIndex.placeCollisionBox(t,f.get(\"text-allow-overlap\"),o,r,b.predicate);return i&&i.box&&i.box.length&&(h.markUsedOrientation(e,n,a),h.placedOrientations[a.crossTileID]=n),i};D(function(){return V(I,t.WritingMode.horizontal)},function(){var r=u.verticalTextBox;return e.allowVerticalPlacement&&a.numVerticalGlyphVertices>0&&r?V(r,t.WritingMode.vertical):{box:null,offscreen:null}}),z(M&&M.box&&M.box.length)}}k=(m=M)&&m.box&&m.box.length>0,A=m&&m.offscreen;var U=u.textCircles;if(U){var q=e.text.placedSymbolArray.get(a.centerJustifiedTextSymbolIndex),H=t.evaluateSizeForFeature(e.textSizeData,p,q);E=h.collisionIndex.placeCollisionCircles(U,f.get(\"text-allow-overlap\"),i,o,q,e.lineVertexArray,e.glyphOffsetArray,H,r,n,s,w,b.predicate),k=f.get(\"text-allow-overlap\")||E.circles.length>0,A=A&&E.offscreen}u.iconFeatureIndex&&(O=u.iconFeatureIndex),u.iconBox&&(T=(C=h.collisionIndex.placeCollisionBox(u.iconBox,f.get(\"icon-allow-overlap\"),o,r,b.predicate)).box.length>0,A=A&&C.offscreen);var G=d||0===a.numHorizontalGlyphVertices&&0===a.numVerticalGlyphVertices,Y=g||0===a.numIconVertices;G||Y?Y?G||(T=T&&k):k=T&&k:T=k=T&&k,k&&m&&m.box&&(S&&S.box&&P?h.collisionIndex.insertCollisionBox(m.box,f.get(\"text-ignore-placement\"),e.bucketInstanceId,P,b.ID):h.collisionIndex.insertCollisionBox(m.box,f.get(\"text-ignore-placement\"),e.bucketInstanceId,L,b.ID)),T&&C&&h.collisionIndex.insertCollisionBox(C.box,f.get(\"icon-ignore-placement\"),e.bucketInstanceId,O,b.ID),k&&E&&h.collisionIndex.insertCollisionCircles(E.circles,f.get(\"text-ignore-placement\"),e.bucketInstanceId,L,b.ID),h.placements[a.crossTileID]=new fe(k||y,T||x,A||e.justReloaded),c[a.crossTileID]=!0}};if(k)for(var A=e.getSortedSymbolIndexes(this.transform.angle),M=A.length-1;M>=0;--M){var S=A[M];T(e.symbolInstances.get(S),e.collisionArrays[S])}else for(var E=0;E<e.symbolInstances.length;++E)T(e.symbolInstances.get(E),e.collisionArrays[E]);e.justReloaded=!1},ve.prototype.markUsedJustification=function(e,r,n,a){var i,o={left:n.leftJustifiedTextSymbolIndex,center:n.centerJustifiedTextSymbolIndex,right:n.rightJustifiedTextSymbolIndex};i=a===t.WritingMode.vertical?n.verticalPlacedTextSymbolIndex:o[t.getAnchorJustification(r)];for(var s=0,l=[n.leftJustifiedTextSymbolIndex,n.centerJustifiedTextSymbolIndex,n.rightJustifiedTextSymbolIndex,n.verticalPlacedTextSymbolIndex];s<l.length;s+=1){var c=l[s];c>=0&&(e.text.placedSymbolArray.get(c).crossTileID=i>=0&&c!==i?0:n.crossTileID)}},ve.prototype.markUsedOrientation=function(e,r,n){for(var a=r===t.WritingMode.horizontal||r===t.WritingMode.horizontalOnly?r:0,i=r===t.WritingMode.vertical?r:0,o=0,s=[n.leftJustifiedTextSymbolIndex,n.centerJustifiedTextSymbolIndex,n.rightJustifiedTextSymbolIndex];o<s.length;o+=1){var l=s[o];e.text.placedSymbolArray.get(l).placedOrientation=a}n.verticalPlacedTextSymbolIndex&&(e.text.placedSymbolArray.get(n.verticalPlacedTextSymbolIndex).placedOrientation=i)},ve.prototype.commit=function(t){this.commitTime=t;var e=this.prevPlacement,r=!1,n=e&&0!==this.fadeDuration?(this.commitTime-e.commitTime)/this.fadeDuration:1,a=e?e.opacities:{},i=e?e.variableOffsets:{},o=e?e.placedOrientations:{};for(var s in this.placements){var l=this.placements[s],c=a[s];c?(this.opacities[s]=new he(c,n,l.text,l.icon),r=r||l.text!==c.text.placed||l.icon!==c.icon.placed):(this.opacities[s]=new he(null,n,l.text,l.icon,l.skipFade),r=r||l.text||l.icon)}for(var u in a){var h=a[u];if(!this.opacities[u]){var f=new he(h,n,!1,!1);f.isHidden()||(this.opacities[u]=f,r=r||h.text.placed||h.icon.placed)}}for(var p in i)this.variableOffsets[p]||!this.opacities[p]||this.opacities[p].isHidden()||(this.variableOffsets[p]=i[p]);for(var d in o)this.placedOrientations[d]||!this.opacities[d]||this.opacities[d].isHidden()||(this.placedOrientations[d]=o[d]);r?this.lastPlacementChangeTime=t:\"number\"!=typeof this.lastPlacementChangeTime&&(this.lastPlacementChangeTime=e?e.lastPlacementChangeTime:t)},ve.prototype.updateLayerOpacities=function(t,e){for(var r={},n=0,a=e;n<a.length;n+=1){var i=a[n],o=i.getBucket(t);o&&i.latestFeatureIndex&&t.id===o.layerIds[0]&&this.updateBucketOpacities(o,r,i.collisionBoxArray)}},ve.prototype.updateBucketOpacities=function(e,r,n){e.hasTextData()&&e.text.opacityVertexArray.clear(),e.hasIconData()&&e.icon.opacityVertexArray.clear(),e.hasCollisionBoxData()&&e.collisionBox.collisionVertexArray.clear(),e.hasCollisionCircleData()&&e.collisionCircle.collisionVertexArray.clear();var a=e.layers[0].layout,i=new he(null,0,!1,!1,!0),o=a.get(\"text-allow-overlap\"),s=a.get(\"icon-allow-overlap\"),l=a.get(\"text-variable-anchor\"),c=\"map\"===a.get(\"text-rotation-alignment\"),u=\"map\"===a.get(\"text-pitch-alignment\"),h=new he(null,0,o&&(s||!e.hasIconData()||a.get(\"icon-optional\")),s&&(o||!e.hasTextData()||a.get(\"text-optional\")),!0);!e.collisionArrays&&n&&(e.hasCollisionBoxData()||e.hasCollisionCircleData())&&e.deserializeCollisionBoxes(n);for(var f=0;f<e.symbolInstances.length;f++){var p=e.symbolInstances.get(f),d=p.numHorizontalGlyphVertices,g=p.numVerticalGlyphVertices,v=p.crossTileID,m=r[v],y=this.opacities[v];m?y=i:y||(y=h,this.opacities[v]=y),r[v]=!0;var x=d>0||g>0,b=p.numIconVertices>0;if(x){for(var _=Ae(y.text),w=(d+g)/4,k=0;k<w;k++)e.text.opacityVertexArray.emplaceBack(_);var T=y.text.isHidden()?1:0,A=this.placedOrientations[p.crossTileID],M=A===t.WritingMode.horizontal||A===t.WritingMode.horizontalOnly?1:0,S=A===t.WritingMode.vertical?1:0;[p.rightJustifiedTextSymbolIndex,p.centerJustifiedTextSymbolIndex,p.leftJustifiedTextSymbolIndex].forEach(function(t){t>=0&&(e.text.placedSymbolArray.get(t).hidden=T||S)}),p.verticalPlacedTextSymbolIndex>=0&&(e.text.placedSymbolArray.get(p.verticalPlacedTextSymbolIndex).hidden=T||M);var E=this.variableOffsets[p.crossTileID];E&&this.markUsedJustification(e,E.anchor,p,A);var C=this.placedOrientations[p.crossTileID];C&&(this.markUsedJustification(e,\"left\",p,C),this.markUsedOrientation(e,C,p))}if(b){for(var L=Ae(y.icon),P=0;P<p.numIconVertices/4;P++)e.icon.opacityVertexArray.emplaceBack(L);e.icon.placedSymbolArray.get(f).hidden=y.icon.isHidden()}if(e.hasCollisionBoxData()||e.hasCollisionCircleData()){var O=e.collisionArrays[f];if(O){if(O.textBox){var I=new t.Point(0,0),z=!0;if(l){var D=this.variableOffsets[v];D?(I=ge(D.anchor,D.width,D.height,D.radialOffset,D.textBoxScale),c&&I._rotate(u?this.transform.angle:-this.transform.angle)):z=!1}me(e.collisionBox.collisionVertexArray,y.text.placed,!z,I.x,I.y)}O.iconBox&&me(e.collisionBox.collisionVertexArray,y.icon.placed,!1);var R=O.textCircles;if(R&&e.hasCollisionCircleData())for(var F=0;F<R.length;F+=5){var B=m||0===R[F+4];me(e.collisionCircle.collisionVertexArray,y.text.placed,B)}}}}e.sortFeatures(this.transform.angle),this.retainedQueryData[e.bucketInstanceId]&&(this.retainedQueryData[e.bucketInstanceId].featureSortOrder=e.featureSortOrder),e.hasTextData()&&e.text.opacityVertexBuffer&&e.text.opacityVertexBuffer.updateData(e.text.opacityVertexArray),e.hasIconData()&&e.icon.opacityVertexBuffer&&e.icon.opacityVertexBuffer.updateData(e.icon.opacityVertexArray),e.hasCollisionBoxData()&&e.collisionBox.collisionVertexBuffer&&e.collisionBox.collisionVertexBuffer.updateData(e.collisionBox.collisionVertexArray),e.hasCollisionCircleData()&&e.collisionCircle.collisionVertexBuffer&&e.collisionCircle.collisionVertexBuffer.updateData(e.collisionCircle.collisionVertexArray)},ve.prototype.symbolFadeChange=function(t){return 0===this.fadeDuration?1:(t-this.commitTime)/this.fadeDuration},ve.prototype.hasTransitions=function(t){return this.stale||t-this.lastPlacementChangeTime<this.fadeDuration},ve.prototype.stillRecent=function(t){return this.commitTime+this.fadeDuration>t},ve.prototype.setStale=function(){this.stale=!0};var ye=Math.pow(2,25),xe=Math.pow(2,24),be=Math.pow(2,17),_e=Math.pow(2,16),we=Math.pow(2,9),ke=Math.pow(2,8),Te=Math.pow(2,1);function Ae(t){if(0===t.opacity&&!t.placed)return 0;if(1===t.opacity&&t.placed)return 4294967295;var e=t.placed?1:0,r=Math.floor(127*t.opacity);return r*ye+e*xe+r*be+e*_e+r*we+e*ke+r*Te+e}var Me=function(){this._currentTileIndex=0,this._seenCrossTileIDs={}};Me.prototype.continuePlacement=function(t,e,r,n,a){for(;this._currentTileIndex<t.length;){var i=t[this._currentTileIndex];if(e.placeLayerTile(n,i,r,this._seenCrossTileIDs),this._currentTileIndex++,a())return!0}};var Se=function(t,e,r,n,a,i,o){this.placement=new ve(t,a,i,o),this._currentPlacementIndex=e.length-1,this._forceFullPlacement=r,this._showCollisionBoxes=n,this._done=!1};Se.prototype.isDone=function(){return this._done},Se.prototype.continuePlacement=function(e,r,n){for(var a=this,i=t.browser.now(),o=function(){var e=t.browser.now()-i;return!a._forceFullPlacement&&e>2};this._currentPlacementIndex>=0;){var s=r[e[this._currentPlacementIndex]],l=this.placement.collisionIndex.transform.zoom;if(\"symbol\"===s.type&&(!s.minzoom||s.minzoom<=l)&&(!s.maxzoom||s.maxzoom>l)){if(this._inProgressLayer||(this._inProgressLayer=new Me),this._inProgressLayer.continuePlacement(n[s.source],this.placement,this._showCollisionBoxes,s,o))return;delete this._inProgressLayer}this._currentPlacementIndex--}this._done=!0},Se.prototype.commit=function(t){return this.placement.commit(t),this.placement};var Ee=512/t.EXTENT/2,Ce=function(t,e,r){this.tileID=t,this.indexedSymbolInstances={},this.bucketInstanceId=r;for(var n=0;n<e.length;n++){var a=e.get(n),i=a.key;this.indexedSymbolInstances[i]||(this.indexedSymbolInstances[i]=[]),this.indexedSymbolInstances[i].push({crossTileID:a.crossTileID,coord:this.getScaledCoordinates(a,t)})}};Ce.prototype.getScaledCoordinates=function(e,r){var n=r.canonical.z-this.tileID.canonical.z,a=Ee/Math.pow(2,n);return{x:Math.floor((r.canonical.x*t.EXTENT+e.anchorX)*a),y:Math.floor((r.canonical.y*t.EXTENT+e.anchorY)*a)}},Ce.prototype.findMatches=function(t,e,r){for(var n=this.tileID.canonical.z<e.canonical.z?1:Math.pow(2,this.tileID.canonical.z-e.canonical.z),a=0;a<t.length;a++){var i=t.get(a);if(!i.crossTileID){var o=this.indexedSymbolInstances[i.key];if(o)for(var s=this.getScaledCoordinates(i,e),l=0,c=o;l<c.length;l+=1){var u=c[l];if(Math.abs(u.coord.x-s.x)<=n&&Math.abs(u.coord.y-s.y)<=n&&!r[u.crossTileID]){r[u.crossTileID]=!0,i.crossTileID=u.crossTileID;break}}}}};var Le=function(){this.maxCrossTileID=0};Le.prototype.generate=function(){return++this.maxCrossTileID};var Pe=function(){this.indexes={},this.usedCrossTileIDs={},this.lng=0};Pe.prototype.handleWrapJump=function(t){var e=Math.round((t-this.lng)/360);if(0!==e)for(var r in this.indexes){var n=this.indexes[r],a={};for(var i in n){var o=n[i];o.tileID=o.tileID.unwrapTo(o.tileID.wrap+e),a[o.tileID.key]=o}this.indexes[r]=a}this.lng=t},Pe.prototype.addBucket=function(t,e,r){if(this.indexes[t.overscaledZ]&&this.indexes[t.overscaledZ][t.key]){if(this.indexes[t.overscaledZ][t.key].bucketInstanceId===e.bucketInstanceId)return!1;this.removeBucketCrossTileIDs(t.overscaledZ,this.indexes[t.overscaledZ][t.key])}for(var n=0;n<e.symbolInstances.length;n++)e.symbolInstances.get(n).crossTileID=0;this.usedCrossTileIDs[t.overscaledZ]||(this.usedCrossTileIDs[t.overscaledZ]={});var a=this.usedCrossTileIDs[t.overscaledZ];for(var i in this.indexes){var o=this.indexes[i];if(Number(i)>t.overscaledZ)for(var s in o){var l=o[s];l.tileID.isChildOf(t)&&l.findMatches(e.symbolInstances,t,a)}else{var c=o[t.scaledTo(Number(i)).key];c&&c.findMatches(e.symbolInstances,t,a)}}for(var u=0;u<e.symbolInstances.length;u++){var h=e.symbolInstances.get(u);h.crossTileID||(h.crossTileID=r.generate(),a[h.crossTileID]=!0)}return void 0===this.indexes[t.overscaledZ]&&(this.indexes[t.overscaledZ]={}),this.indexes[t.overscaledZ][t.key]=new Ce(t,e.symbolInstances,e.bucketInstanceId),!0},Pe.prototype.removeBucketCrossTileIDs=function(t,e){for(var r in e.indexedSymbolInstances)for(var n=0,a=e.indexedSymbolInstances[r];n<a.length;n+=1){var i=a[n];delete this.usedCrossTileIDs[t][i.crossTileID]}},Pe.prototype.removeStaleBuckets=function(t){var e=!1;for(var r in this.indexes){var n=this.indexes[r];for(var a in n)t[n[a].bucketInstanceId]||(this.removeBucketCrossTileIDs(r,n[a]),delete n[a],e=!0)}return e};var Oe=function(){this.layerIndexes={},this.crossTileIDs=new Le,this.maxBucketInstanceId=0,this.bucketsInCurrentPlacement={}};Oe.prototype.addLayer=function(t,e,r){var n=this.layerIndexes[t.id];void 0===n&&(n=this.layerIndexes[t.id]=new Pe);var a=!1,i={};n.handleWrapJump(r);for(var o=0,s=e;o<s.length;o+=1){var l=s[o],c=l.getBucket(t);c&&t.id===c.layerIds[0]&&(c.bucketInstanceId||(c.bucketInstanceId=++this.maxBucketInstanceId),n.addBucket(l.tileID,c,this.crossTileIDs)&&(a=!0),i[c.bucketInstanceId]=!0)}return n.removeStaleBuckets(i)&&(a=!0),a},Oe.prototype.pruneUnusedLayers=function(t){var e={};for(var r in t.forEach(function(t){e[t]=!0}),this.layerIndexes)e[r]||delete this.layerIndexes[r]};var Ie=function(e,r){return t.emitValidationErrors(e,r&&r.filter(function(t){return\"source.canvas\"!==t.identifier}))},ze=t.pick(Nt,[\"addLayer\",\"removeLayer\",\"setPaintProperty\",\"setLayoutProperty\",\"setFilter\",\"addSource\",\"removeSource\",\"setLayerZoomRange\",\"setLight\",\"setTransition\",\"setGeoJSONSourceData\"]),De=t.pick(Nt,[\"setCenter\",\"setZoom\",\"setBearing\",\"setPitch\"]),Re=function(e){function r(n,a){var i=this;void 0===a&&(a={}),e.call(this),this.map=n,this.dispatcher=new T((Dt||(Dt=new zt),Dt),this),this.imageManager=new f,this.imageManager.setEventedParent(this),this.glyphManager=new x(n._requestManager,a.localIdeographFontFamily),this.lineAtlas=new k(256,512),this.crossTileSymbolIndex=new Oe,this._layers={},this._order=[],this.sourceCaches={},this.zoomHistory=new t.ZoomHistory,this._loaded=!1,this._resetUpdates(),this.dispatcher.broadcast(\"setReferrer\",t.getReferrer());var o=this;this._rtlTextPluginCallback=r.registerForPluginAvailability(function(t){for(var e in o.dispatcher.broadcast(\"loadRTLTextPlugin\",t.pluginURL,t.completionCallback),o.sourceCaches)o.sourceCaches[e].reload()}),this.on(\"data\",function(t){if(\"source\"===t.dataType&&\"metadata\"===t.sourceDataType){var e=i.sourceCaches[t.sourceId];if(e){var r=e.getSource();if(r&&r.vectorLayerIds)for(var n in i._layers){var a=i._layers[n];a.source===r.id&&i._validateLayer(a)}}}})}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.loadURL=function(e,r){var n=this;void 0===r&&(r={}),this.fire(new t.Event(\"dataloading\",{dataType:\"style\"}));var a=\"boolean\"==typeof r.validate?r.validate:!t.isMapboxURL(e);e=this.map._requestManager.normalizeStyleURL(e,r.accessToken);var i=this.map._requestManager.transformRequest(e,t.ResourceType.Style);this._request=t.getJSON(i,function(e,r){n._request=null,e?n.fire(new t.ErrorEvent(e)):r&&n._load(r,a)})},r.prototype.loadJSON=function(e,r){var n=this;void 0===r&&(r={}),this.fire(new t.Event(\"dataloading\",{dataType:\"style\"})),this._request=t.browser.frame(function(){n._request=null,n._load(e,!1!==r.validate)})},r.prototype._load=function(e,r){var n=this;if(!r||!Ie(this,t.validateStyle(e))){for(var a in this._loaded=!0,this.stylesheet=e,e.sources)this.addSource(a,e.sources[a],{validate:!1});e.sprite?this._spriteRequest=function(e,r,n){var a,i,o,s=t.browser.devicePixelRatio>1?\"@2x\":\"\",l=t.getJSON(r.transformRequest(r.normalizeSpriteURL(e,s,\".json\"),t.ResourceType.SpriteJSON),function(t,e){l=null,o||(o=t,a=e,u())}),c=t.getImage(r.transformRequest(r.normalizeSpriteURL(e,s,\".png\"),t.ResourceType.SpriteImage),function(t,e){c=null,o||(o=t,i=e,u())});function u(){if(o)n(o);else if(a&&i){var e=t.browser.getImageData(i),r={};for(var s in a){var l=a[s],c=l.width,u=l.height,h=l.x,f=l.y,p=l.sdf,d=l.pixelRatio,g=new t.RGBAImage({width:c,height:u});t.RGBAImage.copy(e,g,{x:h,y:f},{x:0,y:0},{width:c,height:u}),r[s]={data:g,pixelRatio:d,sdf:p}}n(null,r)}}return{cancel:function(){l&&(l.cancel(),l=null),c&&(c.cancel(),c=null)}}}(e.sprite,this.map._requestManager,function(e,r){if(n._spriteRequest=null,e)n.fire(new t.ErrorEvent(e));else if(r)for(var a in r)n.imageManager.addImage(a,r[a]);n.imageManager.setLoaded(!0),n.fire(new t.Event(\"data\",{dataType:\"style\"}))}):this.imageManager.setLoaded(!0),this.glyphManager.setURL(e.glyphs);var i=Bt(this.stylesheet.layers);this._order=i.map(function(t){return t.id}),this._layers={};for(var o=0,s=i;o<s.length;o+=1){var l=s[o];(l=t.createStyleLayer(l)).setEventedParent(this,{layer:{id:l.id}}),this._layers[l.id]=l}this.dispatcher.broadcast(\"setLayers\",this._serializeLayers(this._order)),this.light=new w(this.stylesheet.light),this.fire(new t.Event(\"data\",{dataType:\"style\"})),this.fire(new t.Event(\"style.load\"))}},r.prototype._validateLayer=function(e){var r=this.sourceCaches[e.source];if(r){var n=e.sourceLayer;if(n){var a=r.getSource();(\"geojson\"===a.type||a.vectorLayerIds&&-1===a.vectorLayerIds.indexOf(n))&&this.fire(new t.ErrorEvent(new Error('Source layer \"'+n+'\" does not exist on source \"'+a.id+'\" as specified by style layer \"'+e.id+'\"')))}}},r.prototype.loaded=function(){if(!this._loaded)return!1;if(Object.keys(this._updatedSources).length)return!1;for(var t in this.sourceCaches)if(!this.sourceCaches[t].loaded())return!1;return!!this.imageManager.isLoaded()},r.prototype._serializeLayers=function(t){for(var e=[],r=0,n=t;r<n.length;r+=1){var a=n[r],i=this._layers[a];\"custom\"!==i.type&&e.push(i.serialize())}return e},r.prototype.hasTransitions=function(){if(this.light&&this.light.hasTransition())return!0;for(var t in this.sourceCaches)if(this.sourceCaches[t].hasTransition())return!0;for(var e in this._layers)if(this._layers[e].hasTransition())return!0;return!1},r.prototype._checkLoaded=function(){if(!this._loaded)throw new Error(\"Style is not done loading\")},r.prototype.update=function(e){if(this._loaded){var r=this._changed;if(this._changed){var n=Object.keys(this._updatedLayers),a=Object.keys(this._removedLayers);for(var i in(n.length||a.length)&&this._updateWorkerLayers(n,a),this._updatedSources){var o=this._updatedSources[i];\"reload\"===o?this._reloadSource(i):\"clear\"===o&&this._clearSource(i)}for(var s in this._updatedPaintProps)this._layers[s].updateTransitions(e);this.light.updateTransitions(e),this._resetUpdates()}for(var l in this.sourceCaches)this.sourceCaches[l].used=!1;for(var c=0,u=this._order;c<u.length;c+=1){var h=u[c],f=this._layers[h];f.recalculate(e),!f.isHidden(e.zoom)&&f.source&&(this.sourceCaches[f.source].used=!0)}this.light.recalculate(e),this.z=e.zoom,r&&this.fire(new t.Event(\"data\",{dataType:\"style\"}))}},r.prototype._updateWorkerLayers=function(t,e){this.dispatcher.broadcast(\"updateLayers\",{layers:this._serializeLayers(t),removedIds:e})},r.prototype._resetUpdates=function(){this._changed=!1,this._updatedLayers={},this._removedLayers={},this._updatedSources={},this._updatedPaintProps={}},r.prototype.setState=function(e){var r=this;if(this._checkLoaded(),Ie(this,t.validateStyle(e)))return!1;(e=t.clone$1(e)).layers=Bt(e.layers);var n=function(e,r){if(!e)return[{command:Nt.setStyle,args:[r]}];var n=[];try{if(!t.deepEqual(e.version,r.version))return[{command:Nt.setStyle,args:[r]}];t.deepEqual(e.center,r.center)||n.push({command:Nt.setCenter,args:[r.center]}),t.deepEqual(e.zoom,r.zoom)||n.push({command:Nt.setZoom,args:[r.zoom]}),t.deepEqual(e.bearing,r.bearing)||n.push({command:Nt.setBearing,args:[r.bearing]}),t.deepEqual(e.pitch,r.pitch)||n.push({command:Nt.setPitch,args:[r.pitch]}),t.deepEqual(e.sprite,r.sprite)||n.push({command:Nt.setSprite,args:[r.sprite]}),t.deepEqual(e.glyphs,r.glyphs)||n.push({command:Nt.setGlyphs,args:[r.glyphs]}),t.deepEqual(e.transition,r.transition)||n.push({command:Nt.setTransition,args:[r.transition]}),t.deepEqual(e.light,r.light)||n.push({command:Nt.setLight,args:[r.light]});var a={},i=[];!function(e,r,n,a){var i;for(i in r=r||{},e=e||{})e.hasOwnProperty(i)&&(r.hasOwnProperty(i)||Vt(i,n,a));for(i in r)r.hasOwnProperty(i)&&(e.hasOwnProperty(i)?t.deepEqual(e[i],r[i])||(\"geojson\"===e[i].type&&\"geojson\"===r[i].type&&qt(e,r,i)?n.push({command:Nt.setGeoJSONSourceData,args:[i,r[i].data]}):Ut(i,r,n,a)):jt(i,r,n))}(e.sources,r.sources,i,a);var o=[];e.layers&&e.layers.forEach(function(t){a[t.source]?n.push({command:Nt.removeLayer,args:[t.id]}):o.push(t)}),n=n.concat(i),function(e,r,n){r=r||[];var a,i,o,s,l,c,u,h=(e=e||[]).map(Gt),f=r.map(Gt),p=e.reduce(Yt,{}),d=r.reduce(Yt,{}),g=h.slice(),v=Object.create(null);for(a=0,i=0;a<h.length;a++)o=h[a],d.hasOwnProperty(o)?i++:(n.push({command:Nt.removeLayer,args:[o]}),g.splice(g.indexOf(o,i),1));for(a=0,i=0;a<f.length;a++)o=f[f.length-1-a],g[g.length-1-a]!==o&&(p.hasOwnProperty(o)?(n.push({command:Nt.removeLayer,args:[o]}),g.splice(g.lastIndexOf(o,g.length-i),1)):i++,c=g[g.length-a],n.push({command:Nt.addLayer,args:[d[o],c]}),g.splice(g.length-a,0,o),v[o]=!0);for(a=0;a<f.length;a++)if(s=p[o=f[a]],l=d[o],!v[o]&&!t.deepEqual(s,l))if(t.deepEqual(s.source,l.source)&&t.deepEqual(s[\"source-layer\"],l[\"source-layer\"])&&t.deepEqual(s.type,l.type)){for(u in Ht(s.layout,l.layout,n,o,null,Nt.setLayoutProperty),Ht(s.paint,l.paint,n,o,null,Nt.setPaintProperty),t.deepEqual(s.filter,l.filter)||n.push({command:Nt.setFilter,args:[o,l.filter]}),t.deepEqual(s.minzoom,l.minzoom)&&t.deepEqual(s.maxzoom,l.maxzoom)||n.push({command:Nt.setLayerZoomRange,args:[o,l.minzoom,l.maxzoom]}),s)s.hasOwnProperty(u)&&\"layout\"!==u&&\"paint\"!==u&&\"filter\"!==u&&\"metadata\"!==u&&\"minzoom\"!==u&&\"maxzoom\"!==u&&(0===u.indexOf(\"paint.\")?Ht(s[u],l[u],n,o,u.slice(6),Nt.setPaintProperty):t.deepEqual(s[u],l[u])||n.push({command:Nt.setLayerProperty,args:[o,u,l[u]]}));for(u in l)l.hasOwnProperty(u)&&!s.hasOwnProperty(u)&&\"layout\"!==u&&\"paint\"!==u&&\"filter\"!==u&&\"metadata\"!==u&&\"minzoom\"!==u&&\"maxzoom\"!==u&&(0===u.indexOf(\"paint.\")?Ht(s[u],l[u],n,o,u.slice(6),Nt.setPaintProperty):t.deepEqual(s[u],l[u])||n.push({command:Nt.setLayerProperty,args:[o,u,l[u]]}))}else n.push({command:Nt.removeLayer,args:[o]}),c=g[g.lastIndexOf(o)+1],n.push({command:Nt.addLayer,args:[l,c]})}(o,r.layers,n)}catch(t){console.warn(\"Unable to compute style diff:\",t),n=[{command:Nt.setStyle,args:[r]}]}return n}(this.serialize(),e).filter(function(t){return!(t.command in De)});if(0===n.length)return!1;var a=n.filter(function(t){return!(t.command in ze)});if(a.length>0)throw new Error(\"Unimplemented: \"+a.map(function(t){return t.command}).join(\", \")+\".\");return n.forEach(function(t){\"setTransition\"!==t.command&&r[t.command].apply(r,t.args)}),this.stylesheet=e,!0},r.prototype.addImage=function(e,r){if(this.getImage(e))return this.fire(new t.ErrorEvent(new Error(\"An image with this name already exists.\")));this.imageManager.addImage(e,r),this.fire(new t.Event(\"data\",{dataType:\"style\"}))},r.prototype.updateImage=function(t,e){this.imageManager.updateImage(t,e)},r.prototype.getImage=function(t){return this.imageManager.getImage(t)},r.prototype.removeImage=function(e){if(!this.getImage(e))return this.fire(new t.ErrorEvent(new Error(\"No image with this name exists.\")));this.imageManager.removeImage(e),this.fire(new t.Event(\"data\",{dataType:\"style\"}))},r.prototype.listImages=function(){return this._checkLoaded(),this.imageManager.listImages()},r.prototype.addSource=function(e,r,n){var a=this;if(void 0===n&&(n={}),this._checkLoaded(),void 0!==this.sourceCaches[e])throw new Error(\"There is already a source with this ID\");if(!r.type)throw new Error(\"The type property must be defined, but the only the following properties were given: \"+Object.keys(r).join(\", \")+\".\");if(!([\"vector\",\"raster\",\"geojson\",\"video\",\"image\"].indexOf(r.type)>=0&&this._validate(t.validateStyle.source,\"sources.\"+e,r,null,n))){this.map&&this.map._collectResourceTiming&&(r.collectResourceTiming=!0);var i=this.sourceCaches[e]=new Lt(e,r,this.dispatcher);i.style=this,i.setEventedParent(this,function(){return{isSourceLoaded:a.loaded(),source:i.serialize(),sourceId:e}}),i.onAdd(this.map),this._changed=!0}},r.prototype.removeSource=function(e){if(this._checkLoaded(),void 0===this.sourceCaches[e])throw new Error(\"There is no source with this ID\");for(var r in this._layers)if(this._layers[r].source===e)return this.fire(new t.ErrorEvent(new Error('Source \"'+e+'\" cannot be removed while layer \"'+r+'\" is using it.')));var n=this.sourceCaches[e];delete this.sourceCaches[e],delete this._updatedSources[e],n.fire(new t.Event(\"data\",{sourceDataType:\"metadata\",dataType:\"source\",sourceId:e})),n.setEventedParent(null),n.clearTiles(),n.onRemove&&n.onRemove(this.map),this._changed=!0},r.prototype.setGeoJSONSourceData=function(t,e){this._checkLoaded(),this.sourceCaches[t].getSource().setData(e),this._changed=!0},r.prototype.getSource=function(t){return this.sourceCaches[t]&&this.sourceCaches[t].getSource()},r.prototype.addLayer=function(e,r,n){void 0===n&&(n={}),this._checkLoaded();var a=e.id;if(this.getLayer(a))this.fire(new t.ErrorEvent(new Error('Layer with id \"'+a+'\" already exists on this map')));else{var i;if(\"custom\"===e.type){if(Ie(this,t.validateCustomStyleLayer(e)))return;i=t.createStyleLayer(e)}else{if(\"object\"==typeof e.source&&(this.addSource(a,e.source),e=t.clone$1(e),e=t.extend(e,{source:a})),this._validate(t.validateStyle.layer,\"layers.\"+a,e,{arrayIndex:-1},n))return;i=t.createStyleLayer(e),this._validateLayer(i),i.setEventedParent(this,{layer:{id:a}})}var o=r?this._order.indexOf(r):this._order.length;if(r&&-1===o)this.fire(new t.ErrorEvent(new Error('Layer with id \"'+r+'\" does not exist on this map.')));else{if(this._order.splice(o,0,a),this._layerOrderChanged=!0,this._layers[a]=i,this._removedLayers[a]&&i.source&&\"custom\"!==i.type){var s=this._removedLayers[a];delete this._removedLayers[a],s.type!==i.type?this._updatedSources[i.source]=\"clear\":(this._updatedSources[i.source]=\"reload\",this.sourceCaches[i.source].pause())}this._updateLayer(i),i.onAdd&&i.onAdd(this.map)}}},r.prototype.moveLayer=function(e,r){if(this._checkLoaded(),this._changed=!0,this._layers[e]){if(e!==r){var n=this._order.indexOf(e);this._order.splice(n,1);var a=r?this._order.indexOf(r):this._order.length;r&&-1===a?this.fire(new t.ErrorEvent(new Error('Layer with id \"'+r+'\" does not exist on this map.'))):(this._order.splice(a,0,e),this._layerOrderChanged=!0)}}else this.fire(new t.ErrorEvent(new Error(\"The layer '\"+e+\"' does not exist in the map's style and cannot be moved.\")))},r.prototype.removeLayer=function(e){this._checkLoaded();var r=this._layers[e];if(r){r.setEventedParent(null);var n=this._order.indexOf(e);this._order.splice(n,1),this._layerOrderChanged=!0,this._changed=!0,this._removedLayers[e]=r,delete this._layers[e],delete this._updatedLayers[e],delete this._updatedPaintProps[e],r.onRemove&&r.onRemove(this.map)}else this.fire(new t.ErrorEvent(new Error(\"The layer '\"+e+\"' does not exist in the map's style and cannot be removed.\")))},r.prototype.getLayer=function(t){return this._layers[t]},r.prototype.setLayerZoomRange=function(e,r,n){this._checkLoaded();var a=this.getLayer(e);a?a.minzoom===r&&a.maxzoom===n||(null!=r&&(a.minzoom=r),null!=n&&(a.maxzoom=n),this._updateLayer(a)):this.fire(new t.ErrorEvent(new Error(\"The layer '\"+e+\"' does not exist in the map's style and cannot have zoom extent.\")))},r.prototype.setFilter=function(e,r,n){void 0===n&&(n={}),this._checkLoaded();var a=this.getLayer(e);if(a){if(!t.deepEqual(a.filter,r))return null==r?(a.filter=void 0,void this._updateLayer(a)):void(this._validate(t.validateStyle.filter,\"layers.\"+a.id+\".filter\",r,null,n)||(a.filter=t.clone$1(r),this._updateLayer(a)))}else this.fire(new t.ErrorEvent(new Error(\"The layer '\"+e+\"' does not exist in the map's style and cannot be filtered.\")))},r.prototype.getFilter=function(e){return t.clone$1(this.getLayer(e).filter)},r.prototype.setLayoutProperty=function(e,r,n,a){void 0===a&&(a={}),this._checkLoaded();var i=this.getLayer(e);i?t.deepEqual(i.getLayoutProperty(r),n)||(i.setLayoutProperty(r,n,a),this._updateLayer(i)):this.fire(new t.ErrorEvent(new Error(\"The layer '\"+e+\"' does not exist in the map's style and cannot be styled.\")))},r.prototype.getLayoutProperty=function(e,r){var n=this.getLayer(e);if(n)return n.getLayoutProperty(r);this.fire(new t.ErrorEvent(new Error(\"The layer '\"+e+\"' does not exist in the map's style.\")))},r.prototype.setPaintProperty=function(e,r,n,a){void 0===a&&(a={}),this._checkLoaded();var i=this.getLayer(e);i?t.deepEqual(i.getPaintProperty(r),n)||(i.setPaintProperty(r,n,a)&&this._updateLayer(i),this._changed=!0,this._updatedPaintProps[e]=!0):this.fire(new t.ErrorEvent(new Error(\"The layer '\"+e+\"' does not exist in the map's style and cannot be styled.\")))},r.prototype.getPaintProperty=function(t,e){return this.getLayer(t).getPaintProperty(e)},r.prototype.setFeatureState=function(e,r){this._checkLoaded();var n=e.source,a=e.sourceLayer,i=this.sourceCaches[n],o=parseInt(e.id,10);if(void 0!==i){var s=i.getSource().type;\"geojson\"===s&&a?this.fire(new t.ErrorEvent(new Error(\"GeoJSON sources cannot have a sourceLayer parameter.\"))):\"vector\"!==s||a?isNaN(o)||o<0?this.fire(new t.ErrorEvent(new Error(\"The feature id parameter must be provided and non-negative.\"))):i.setFeatureState(a,o,r):this.fire(new t.ErrorEvent(new Error(\"The sourceLayer parameter must be provided for vector source types.\")))}else this.fire(new t.ErrorEvent(new Error(\"The source '\"+n+\"' does not exist in the map's style.\")))},r.prototype.removeFeatureState=function(e,r){this._checkLoaded();var n=e.source,a=this.sourceCaches[n];if(void 0!==a){var i=a.getSource().type,o=\"vector\"===i?e.sourceLayer:void 0,s=parseInt(e.id,10);\"vector\"!==i||o?void 0!==e.id&&isNaN(s)||s<0?this.fire(new t.ErrorEvent(new Error(\"The feature id parameter must be non-negative.\"))):r&&\"string\"!=typeof e.id&&\"number\"!=typeof e.id?this.fire(new t.ErrorEvent(new Error(\"A feature id is requred to remove its specific state property.\"))):a.removeFeatureState(o,s,r):this.fire(new t.ErrorEvent(new Error(\"The sourceLayer parameter must be provided for vector source types.\")))}else this.fire(new t.ErrorEvent(new Error(\"The source '\"+n+\"' does not exist in the map's style.\")))},r.prototype.getFeatureState=function(e){this._checkLoaded();var r=e.source,n=e.sourceLayer,a=this.sourceCaches[r],i=parseInt(e.id,10);if(void 0!==a)if(\"vector\"!==a.getSource().type||n){if(!(isNaN(i)||i<0))return a.getFeatureState(n,i);this.fire(new t.ErrorEvent(new Error(\"The feature id parameter must be provided and non-negative.\")))}else this.fire(new t.ErrorEvent(new Error(\"The sourceLayer parameter must be provided for vector source types.\")));else this.fire(new t.ErrorEvent(new Error(\"The source '\"+r+\"' does not exist in the map's style.\")))},r.prototype.getTransition=function(){return t.extend({duration:300,delay:0},this.stylesheet&&this.stylesheet.transition)},r.prototype.serialize=function(){return t.filterObject({version:this.stylesheet.version,name:this.stylesheet.name,metadata:this.stylesheet.metadata,light:this.stylesheet.light,center:this.stylesheet.center,zoom:this.stylesheet.zoom,bearing:this.stylesheet.bearing,pitch:this.stylesheet.pitch,sprite:this.stylesheet.sprite,glyphs:this.stylesheet.glyphs,transition:this.stylesheet.transition,sources:t.mapObject(this.sourceCaches,function(t){return t.serialize()}),layers:this._serializeLayers(this._order)},function(t){return void 0!==t})},r.prototype._updateLayer=function(t){this._updatedLayers[t.id]=!0,t.source&&!this._updatedSources[t.source]&&(this._updatedSources[t.source]=\"reload\",this.sourceCaches[t.source].pause()),this._changed=!0},r.prototype._flattenAndSortRenderedFeatures=function(t){for(var e=this,r=function(t){return\"fill-extrusion\"===e._layers[t].type},n={},a=[],i=this._order.length-1;i>=0;i--){var o=this._order[i];if(r(o)){n[o]=i;for(var s=0,l=t;s<l.length;s+=1){var c=l[s][o];if(c)for(var u=0,h=c;u<h.length;u+=1){var f=h[u];a.push(f)}}}}a.sort(function(t,e){return e.intersectionZ-t.intersectionZ});for(var p=[],d=this._order.length-1;d>=0;d--){var g=this._order[d];if(r(g))for(var v=a.length-1;v>=0;v--){var m=a[v].feature;if(n[m.layer.id]<d)break;p.push(m),a.pop()}else for(var y=0,x=t;y<x.length;y+=1){var b=x[y][g];if(b)for(var _=0,w=b;_<w.length;_+=1){var k=w[_];p.push(k.feature)}}}return p},r.prototype.queryRenderedFeatures=function(e,r,n){r&&r.filter&&this._validate(t.validateStyle.filter,\"queryRenderedFeatures.filter\",r.filter,null,r);var a={};if(r&&r.layers){if(!Array.isArray(r.layers))return this.fire(new t.ErrorEvent(new Error(\"parameters.layers must be an Array.\"))),[];for(var i=0,o=r.layers;i<o.length;i+=1){var s=o[i],l=this._layers[s];if(!l)return this.fire(new t.ErrorEvent(new Error(\"The layer '\"+s+\"' does not exist in the map's style and cannot be queried for features.\"))),[];a[l.source]=!0}}var c=[];for(var u in this.sourceCaches)r.layers&&!a[u]||c.push(F(this.sourceCaches[u],this._layers,e,r,n));return this.placement&&c.push(function(t,e,r,n,a,i){for(var o={},s=a.queryRenderedSymbols(r),l=[],c=0,u=Object.keys(s).map(Number);c<u.length;c+=1){var h=u[c];l.push(i[h])}l.sort(B);for(var f=function(){var e=d[p],r=e.featureIndex.lookupSymbolFeatures(s[e.bucketInstanceId],e.bucketIndex,e.sourceLayerIndex,n.filter,n.layers,t);for(var a in r){var i=o[a]=o[a]||[],l=r[a];l.sort(function(t,r){var n=e.featureSortOrder;if(n){var a=n.indexOf(t.featureIndex);return n.indexOf(r.featureIndex)-a}return r.featureIndex-t.featureIndex});for(var c=0,u=l;c<u.length;c+=1){var h=u[c];i.push(h)}}},p=0,d=l;p<d.length;p+=1)f();var g=function(r){o[r].forEach(function(n){var a=n.feature,i=t[r],o=e[i.source].getFeatureState(a.layer[\"source-layer\"],a.id);a.source=a.layer.source,a.layer[\"source-layer\"]&&(a.sourceLayer=a.layer[\"source-layer\"]),a.state=o})};for(var v in o)g(v);return o}(this._layers,this.sourceCaches,e,r,this.placement.collisionIndex,this.placement.retainedQueryData)),this._flattenAndSortRenderedFeatures(c)},r.prototype.querySourceFeatures=function(e,r){r&&r.filter&&this._validate(t.validateStyle.filter,\"querySourceFeatures.filter\",r.filter,null,r);var n=this.sourceCaches[e];return n?function(t,e){for(var r=t.getRenderableIds().map(function(e){return t.getTileByID(e)}),n=[],a={},i=0;i<r.length;i++){var o=r[i],s=o.tileID.canonical.key;a[s]||(a[s]=!0,o.querySourceFeatures(n,e))}return n}(n,r):[]},r.prototype.addSourceType=function(t,e,n){return r.getSourceType(t)?n(new Error('A source type called \"'+t+'\" already exists.')):(r.setSourceType(t,e),e.workerSourceURL?void this.dispatcher.broadcast(\"loadWorkerSource\",{name:t,url:e.workerSourceURL},n):n(null,null))},r.prototype.getLight=function(){return this.light.getLight()},r.prototype.setLight=function(e,r){void 0===r&&(r={}),this._checkLoaded();var n=this.light.getLight(),a=!1;for(var i in e)if(!t.deepEqual(e[i],n[i])){a=!0;break}if(a){var o={now:t.browser.now(),transition:t.extend({duration:300,delay:0},this.stylesheet.transition)};this.light.setLight(e,r),this.light.updateTransitions(o)}},r.prototype._validate=function(e,r,n,a,i){return void 0===i&&(i={}),(!i||!1!==i.validate)&&Ie(this,e.call(t.validateStyle,t.extend({key:r,style:this.serialize(),value:n,styleSpec:t.styleSpec},a)))},r.prototype._remove=function(){for(var e in this._request&&(this._request.cancel(),this._request=null),this._spriteRequest&&(this._spriteRequest.cancel(),this._spriteRequest=null),t.evented.off(\"pluginAvailable\",this._rtlTextPluginCallback),this.sourceCaches)this.sourceCaches[e].clearTiles();this.dispatcher.remove()},r.prototype._clearSource=function(t){this.sourceCaches[t].clearTiles()},r.prototype._reloadSource=function(t){this.sourceCaches[t].resume(),this.sourceCaches[t].reload()},r.prototype._updateSources=function(t){for(var e in this.sourceCaches)this.sourceCaches[e].update(t)},r.prototype._generateCollisionBoxes=function(){for(var t in this.sourceCaches)this._reloadSource(t)},r.prototype._updatePlacement=function(e,r,n,a){for(var i=!1,o=!1,s={},l=0,c=this._order;l<c.length;l+=1){var u=c[l],h=this._layers[u];if(\"symbol\"===h.type){if(!s[h.source]){var f=this.sourceCaches[h.source];s[h.source]=f.getRenderableIds(!0).map(function(t){return f.getTileByID(t)}).sort(function(t,e){return e.tileID.overscaledZ-t.tileID.overscaledZ||(t.tileID.isLessThan(e.tileID)?-1:1)})}var p=this.crossTileSymbolIndex.addLayer(h,s[h.source],e.center.lng);i=i||p}}this.crossTileSymbolIndex.pruneUnusedLayers(this._order);var d=this._layerOrderChanged||0===n;if((d||!this.pauseablePlacement||this.pauseablePlacement.isDone()&&!this.placement.stillRecent(t.browser.now()))&&(this.pauseablePlacement=new Se(e,this._order,d,r,n,a,this.placement),this._layerOrderChanged=!1),this.pauseablePlacement.isDone()?this.placement.setStale():(this.pauseablePlacement.continuePlacement(this._order,this._layers,s),this.pauseablePlacement.isDone()&&(this.placement=this.pauseablePlacement.commit(t.browser.now()),o=!0),i&&this.pauseablePlacement.placement.setStale()),o||i)for(var g=0,v=this._order;g<v.length;g+=1){var m=v[g],y=this._layers[m];\"symbol\"===y.type&&this.placement.updateLayerOpacities(y,s[y.source])}return!this.pauseablePlacement.isDone()||this.placement.hasTransitions(t.browser.now())},r.prototype._releaseSymbolFadeTiles=function(){for(var t in this.sourceCaches)this.sourceCaches[t].releaseSymbolFadeTiles()},r.prototype.getImages=function(t,e,r){this.imageManager.getImages(e.icons,r)},r.prototype.getGlyphs=function(t,e,r){this.glyphManager.getGlyphs(e.stacks,r)},r.prototype.getResource=function(e,r,n){return t.makeRequest(r,n)},r}(t.Evented);Re.getSourceType=function(t){return z[t]},Re.setSourceType=function(t,e){z[t]=e},Re.registerForPluginAvailability=t.registerForPluginAvailability;var Fe=t.createLayout([{name:\"a_pos\",type:\"Int16\",components:2}]),Be=cr(\"#ifdef GL_ES\\nprecision mediump float;\\n#else\\n#if !defined(lowp)\\n#define lowp\\n#endif\\n#if !defined(mediump)\\n#define mediump\\n#endif\\n#if !defined(highp)\\n#define highp\\n#endif\\n#endif\",\"#ifdef GL_ES\\nprecision highp float;\\n#else\\n#if !defined(lowp)\\n#define lowp\\n#endif\\n#if !defined(mediump)\\n#define mediump\\n#endif\\n#if !defined(highp)\\n#define highp\\n#endif\\n#endif\\nvec2 unpack_float(const float packedValue) {int packedIntValue=int(packedValue);int v0=packedIntValue/256;return vec2(v0,packedIntValue-v0*256);}vec2 unpack_opacity(const float packedOpacity) {int intOpacity=int(packedOpacity)/2;return vec2(float(intOpacity)/127.0,mod(packedOpacity,2.0));}vec4 decode_color(const vec2 encodedColor) {return vec4(unpack_float(encodedColor[0])/255.0,unpack_float(encodedColor[1])/255.0\\n);}float unpack_mix_vec2(const vec2 packedValue,const float t) {return mix(packedValue[0],packedValue[1],t);}vec4 unpack_mix_color(const vec4 packedColors,const float t) {vec4 minColor=decode_color(vec2(packedColors[0],packedColors[1]));vec4 maxColor=decode_color(vec2(packedColors[2],packedColors[3]));return mix(minColor,maxColor,t);}vec2 get_pattern_pos(const vec2 pixel_coord_upper,const vec2 pixel_coord_lower,const vec2 pattern_size,const float tile_units_to_pixels,const vec2 pos) {vec2 offset=mod(mod(mod(pixel_coord_upper,pattern_size)*256.0,pattern_size)*256.0+pixel_coord_lower,pattern_size);return (tile_units_to_pixels*pos+offset)/pattern_size;}\"),Ne=cr(\"uniform vec4 u_color;uniform float u_opacity;void main() {gl_FragColor=u_color*u_opacity;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"attribute vec2 a_pos;uniform mat4 u_matrix;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);}\"),je=cr(\"uniform vec2 u_pattern_tl_a;uniform vec2 u_pattern_br_a;uniform vec2 u_pattern_tl_b;uniform vec2 u_pattern_br_b;uniform vec2 u_texsize;uniform float u_mix;uniform float u_opacity;uniform sampler2D u_image;varying vec2 v_pos_a;varying vec2 v_pos_b;void main() {vec2 imagecoord=mod(v_pos_a,1.0);vec2 pos=mix(u_pattern_tl_a/u_texsize,u_pattern_br_a/u_texsize,imagecoord);vec4 color1=texture2D(u_image,pos);vec2 imagecoord_b=mod(v_pos_b,1.0);vec2 pos2=mix(u_pattern_tl_b/u_texsize,u_pattern_br_b/u_texsize,imagecoord_b);vec4 color2=texture2D(u_image,pos2);gl_FragColor=mix(color1,color2,u_mix)*u_opacity;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform vec2 u_pattern_size_a;uniform vec2 u_pattern_size_b;uniform vec2 u_pixel_coord_upper;uniform vec2 u_pixel_coord_lower;uniform float u_scale_a;uniform float u_scale_b;uniform float u_tile_units_to_pixels;attribute vec2 a_pos;varying vec2 v_pos_a;varying vec2 v_pos_b;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);v_pos_a=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,u_scale_a*u_pattern_size_a,u_tile_units_to_pixels,a_pos);v_pos_b=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,u_scale_b*u_pattern_size_b,u_tile_units_to_pixels,a_pos);}\"),Ve=cr(\"varying vec3 v_data;\\n#pragma mapbox: define highp vec4 color\\n#pragma mapbox: define mediump float radius\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define highp vec4 stroke_color\\n#pragma mapbox: define mediump float stroke_width\\n#pragma mapbox: define lowp float stroke_opacity\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 color\\n#pragma mapbox: initialize mediump float radius\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize highp vec4 stroke_color\\n#pragma mapbox: initialize mediump float stroke_width\\n#pragma mapbox: initialize lowp float stroke_opacity\\nvec2 extrude=v_data.xy;float extrude_length=length(extrude);lowp float antialiasblur=v_data.z;float antialiased_blur=-max(blur,antialiasblur);float opacity_t=smoothstep(0.0,antialiased_blur,extrude_length-1.0);float color_t=stroke_width < 0.01 ? 0.0 : smoothstep(antialiased_blur,0.0,extrude_length-radius/(radius+stroke_width));gl_FragColor=opacity_t*mix(color*opacity,stroke_color*stroke_opacity,color_t);\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform bool u_scale_with_map;uniform bool u_pitch_with_map;uniform vec2 u_extrude_scale;uniform lowp float u_device_pixel_ratio;uniform highp float u_camera_to_center_distance;attribute vec2 a_pos;varying vec3 v_data;\\n#pragma mapbox: define highp vec4 color\\n#pragma mapbox: define mediump float radius\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define highp vec4 stroke_color\\n#pragma mapbox: define mediump float stroke_width\\n#pragma mapbox: define lowp float stroke_opacity\\nvoid main(void) {\\n#pragma mapbox: initialize highp vec4 color\\n#pragma mapbox: initialize mediump float radius\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize highp vec4 stroke_color\\n#pragma mapbox: initialize mediump float stroke_width\\n#pragma mapbox: initialize lowp float stroke_opacity\\nvec2 extrude=vec2(mod(a_pos,2.0)*2.0-1.0);vec2 circle_center=floor(a_pos*0.5);if (u_pitch_with_map) {vec2 corner_position=circle_center;if (u_scale_with_map) {corner_position+=extrude*(radius+stroke_width)*u_extrude_scale;} else {vec4 projected_center=u_matrix*vec4(circle_center,0,1);corner_position+=extrude*(radius+stroke_width)*u_extrude_scale*(projected_center.w/u_camera_to_center_distance);}gl_Position=u_matrix*vec4(corner_position,0,1);} else {gl_Position=u_matrix*vec4(circle_center,0,1);if (u_scale_with_map) {gl_Position.xy+=extrude*(radius+stroke_width)*u_extrude_scale*u_camera_to_center_distance;} else {gl_Position.xy+=extrude*(radius+stroke_width)*u_extrude_scale*gl_Position.w;}}lowp float antialiasblur=1.0/u_device_pixel_ratio/(radius+stroke_width);v_data=vec3(extrude.x,extrude.y,antialiasblur);}\"),Ue=cr(\"void main() {gl_FragColor=vec4(1.0);}\",\"attribute vec2 a_pos;uniform mat4 u_matrix;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);}\"),qe=cr(\"uniform highp float u_intensity;varying vec2 v_extrude;\\n#pragma mapbox: define highp float weight\\n#define GAUSS_COEF 0.3989422804014327\\nvoid main() {\\n#pragma mapbox: initialize highp float weight\\nfloat d=-0.5*3.0*3.0*dot(v_extrude,v_extrude);float val=weight*u_intensity*GAUSS_COEF*exp(d);gl_FragColor=vec4(val,1.0,1.0,1.0);\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform float u_extrude_scale;uniform float u_opacity;uniform float u_intensity;attribute vec2 a_pos;varying vec2 v_extrude;\\n#pragma mapbox: define highp float weight\\n#pragma mapbox: define mediump float radius\\nconst highp float ZERO=1.0/255.0/16.0;\\n#define GAUSS_COEF 0.3989422804014327\\nvoid main(void) {\\n#pragma mapbox: initialize highp float weight\\n#pragma mapbox: initialize mediump float radius\\nvec2 unscaled_extrude=vec2(mod(a_pos,2.0)*2.0-1.0);float S=sqrt(-2.0*log(ZERO/weight/u_intensity/GAUSS_COEF))/3.0;v_extrude=S*unscaled_extrude;vec2 extrude=v_extrude*radius*u_extrude_scale;vec4 pos=vec4(floor(a_pos*0.5)+extrude,0,1);gl_Position=u_matrix*pos;}\"),He=cr(\"uniform sampler2D u_image;uniform sampler2D u_color_ramp;uniform float u_opacity;varying vec2 v_pos;void main() {float t=texture2D(u_image,v_pos).r;vec4 color=texture2D(u_color_ramp,vec2(t,0.5));gl_FragColor=color*u_opacity;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(0.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform vec2 u_world;attribute vec2 a_pos;varying vec2 v_pos;void main() {gl_Position=u_matrix*vec4(a_pos*u_world,0,1);v_pos.x=a_pos.x;v_pos.y=1.0-a_pos.y;}\"),Ge=cr(\"varying float v_placed;varying float v_notUsed;void main() {float alpha=0.5;gl_FragColor=vec4(1.0,0.0,0.0,1.0)*alpha;if (v_placed > 0.5) {gl_FragColor=vec4(0.0,0.0,1.0,0.5)*alpha;}if (v_notUsed > 0.5) {gl_FragColor*=.1;}}\",\"attribute vec2 a_pos;attribute vec2 a_anchor_pos;attribute vec2 a_extrude;attribute vec2 a_placed;attribute vec2 a_shift;uniform mat4 u_matrix;uniform vec2 u_extrude_scale;uniform float u_camera_to_center_distance;varying float v_placed;varying float v_notUsed;void main() {vec4 projectedPoint=u_matrix*vec4(a_anchor_pos,0,1);highp float camera_to_anchor_distance=projectedPoint.w;highp float collision_perspective_ratio=clamp(0.5+0.5*(u_camera_to_center_distance/camera_to_anchor_distance),0.0,4.0);gl_Position=u_matrix*vec4(a_pos,0.0,1.0);gl_Position.xy+=(a_extrude+a_shift)*u_extrude_scale*gl_Position.w*collision_perspective_ratio;v_placed=a_placed.x;v_notUsed=a_placed.y;}\"),Ye=cr(\"uniform float u_overscale_factor;varying float v_placed;varying float v_notUsed;varying float v_radius;varying vec2 v_extrude;varying vec2 v_extrude_scale;void main() {float alpha=0.5;vec4 color=vec4(1.0,0.0,0.0,1.0)*alpha;if (v_placed > 0.5) {color=vec4(0.0,0.0,1.0,0.5)*alpha;}if (v_notUsed > 0.5) {color*=.2;}float extrude_scale_length=length(v_extrude_scale);float extrude_length=length(v_extrude)*extrude_scale_length;float stroke_width=15.0*extrude_scale_length/u_overscale_factor;float radius=v_radius*extrude_scale_length;float distance_to_edge=abs(extrude_length-radius);float opacity_t=smoothstep(-stroke_width,0.0,-distance_to_edge);gl_FragColor=opacity_t*color;}\",\"attribute vec2 a_pos;attribute vec2 a_anchor_pos;attribute vec2 a_extrude;attribute vec2 a_placed;uniform mat4 u_matrix;uniform vec2 u_extrude_scale;uniform float u_camera_to_center_distance;varying float v_placed;varying float v_notUsed;varying float v_radius;varying vec2 v_extrude;varying vec2 v_extrude_scale;void main() {vec4 projectedPoint=u_matrix*vec4(a_anchor_pos,0,1);highp float camera_to_anchor_distance=projectedPoint.w;highp float collision_perspective_ratio=clamp(0.5+0.5*(u_camera_to_center_distance/camera_to_anchor_distance),0.0,4.0);gl_Position=u_matrix*vec4(a_pos,0.0,1.0);highp float padding_factor=1.2;gl_Position.xy+=a_extrude*u_extrude_scale*padding_factor*gl_Position.w*collision_perspective_ratio;v_placed=a_placed.x;v_notUsed=a_placed.y;v_radius=abs(a_extrude.y);v_extrude=a_extrude*padding_factor;v_extrude_scale=u_extrude_scale*u_camera_to_center_distance*collision_perspective_ratio;}\"),We=cr(\"uniform highp vec4 u_color;void main() {gl_FragColor=u_color;}\",\"attribute vec2 a_pos;uniform mat4 u_matrix;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);}\"),Xe=cr(\"#pragma mapbox: define highp vec4 color\\n#pragma mapbox: define lowp float opacity\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 color\\n#pragma mapbox: initialize lowp float opacity\\ngl_FragColor=color*opacity;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"attribute vec2 a_pos;uniform mat4 u_matrix;\\n#pragma mapbox: define highp vec4 color\\n#pragma mapbox: define lowp float opacity\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 color\\n#pragma mapbox: initialize lowp float opacity\\ngl_Position=u_matrix*vec4(a_pos,0,1);}\"),Ze=cr(\"varying vec2 v_pos;\\n#pragma mapbox: define highp vec4 outline_color\\n#pragma mapbox: define lowp float opacity\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 outline_color\\n#pragma mapbox: initialize lowp float opacity\\nfloat dist=length(v_pos-gl_FragCoord.xy);float alpha=1.0-smoothstep(0.0,1.0,dist);gl_FragColor=outline_color*(alpha*opacity);\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"attribute vec2 a_pos;uniform mat4 u_matrix;uniform vec2 u_world;varying vec2 v_pos;\\n#pragma mapbox: define highp vec4 outline_color\\n#pragma mapbox: define lowp float opacity\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 outline_color\\n#pragma mapbox: initialize lowp float opacity\\ngl_Position=u_matrix*vec4(a_pos,0,1);v_pos=(gl_Position.xy/gl_Position.w+1.0)/2.0*u_world;}\"),Je=cr(\"uniform vec2 u_texsize;uniform sampler2D u_image;uniform float u_fade;varying vec2 v_pos_a;varying vec2 v_pos_b;varying vec2 v_pos;\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define lowp vec4 pattern_from\\n#pragma mapbox: define lowp vec4 pattern_to\\nvoid main() {\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize mediump vec4 pattern_from\\n#pragma mapbox: initialize mediump vec4 pattern_to\\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;vec2 imagecoord=mod(v_pos_a,1.0);vec2 pos=mix(pattern_tl_a/u_texsize,pattern_br_a/u_texsize,imagecoord);vec4 color1=texture2D(u_image,pos);vec2 imagecoord_b=mod(v_pos_b,1.0);vec2 pos2=mix(pattern_tl_b/u_texsize,pattern_br_b/u_texsize,imagecoord_b);vec4 color2=texture2D(u_image,pos2);float dist=length(v_pos-gl_FragCoord.xy);float alpha=1.0-smoothstep(0.0,1.0,dist);gl_FragColor=mix(color1,color2,u_fade)*alpha*opacity;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform vec2 u_world;uniform vec2 u_pixel_coord_upper;uniform vec2 u_pixel_coord_lower;uniform vec4 u_scale;attribute vec2 a_pos;varying vec2 v_pos_a;varying vec2 v_pos_b;varying vec2 v_pos;\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define lowp vec4 pattern_from\\n#pragma mapbox: define lowp vec4 pattern_to\\nvoid main() {\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize mediump vec4 pattern_from\\n#pragma mapbox: initialize mediump vec4 pattern_to\\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;float pixelRatio=u_scale.x;float tileRatio=u_scale.y;float fromScale=u_scale.z;float toScale=u_scale.w;gl_Position=u_matrix*vec4(a_pos,0,1);vec2 display_size_a=vec2((pattern_br_a.x-pattern_tl_a.x)/pixelRatio,(pattern_br_a.y-pattern_tl_a.y)/pixelRatio);vec2 display_size_b=vec2((pattern_br_b.x-pattern_tl_b.x)/pixelRatio,(pattern_br_b.y-pattern_tl_b.y)/pixelRatio);v_pos_a=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,fromScale*display_size_a,tileRatio,a_pos);v_pos_b=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,toScale*display_size_b,tileRatio,a_pos);v_pos=(gl_Position.xy/gl_Position.w+1.0)/2.0*u_world;}\"),Ke=cr(\"uniform vec2 u_texsize;uniform float u_fade;uniform sampler2D u_image;varying vec2 v_pos_a;varying vec2 v_pos_b;\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define lowp vec4 pattern_from\\n#pragma mapbox: define lowp vec4 pattern_to\\nvoid main() {\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize mediump vec4 pattern_from\\n#pragma mapbox: initialize mediump vec4 pattern_to\\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;vec2 imagecoord=mod(v_pos_a,1.0);vec2 pos=mix(pattern_tl_a/u_texsize,pattern_br_a/u_texsize,imagecoord);vec4 color1=texture2D(u_image,pos);vec2 imagecoord_b=mod(v_pos_b,1.0);vec2 pos2=mix(pattern_tl_b/u_texsize,pattern_br_b/u_texsize,imagecoord_b);vec4 color2=texture2D(u_image,pos2);gl_FragColor=mix(color1,color2,u_fade)*opacity;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform vec2 u_pixel_coord_upper;uniform vec2 u_pixel_coord_lower;uniform vec4 u_scale;attribute vec2 a_pos;varying vec2 v_pos_a;varying vec2 v_pos_b;\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define lowp vec4 pattern_from\\n#pragma mapbox: define lowp vec4 pattern_to\\nvoid main() {\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize mediump vec4 pattern_from\\n#pragma mapbox: initialize mediump vec4 pattern_to\\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;float pixelRatio=u_scale.x;float tileZoomRatio=u_scale.y;float fromScale=u_scale.z;float toScale=u_scale.w;vec2 display_size_a=vec2((pattern_br_a.x-pattern_tl_a.x)/pixelRatio,(pattern_br_a.y-pattern_tl_a.y)/pixelRatio);vec2 display_size_b=vec2((pattern_br_b.x-pattern_tl_b.x)/pixelRatio,(pattern_br_b.y-pattern_tl_b.y)/pixelRatio);gl_Position=u_matrix*vec4(a_pos,0,1);v_pos_a=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,fromScale*display_size_a,tileZoomRatio,a_pos);v_pos_b=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,toScale*display_size_b,tileZoomRatio,a_pos);}\"),Qe=cr(\"varying vec4 v_color;void main() {gl_FragColor=v_color;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform vec3 u_lightcolor;uniform lowp vec3 u_lightpos;uniform lowp float u_lightintensity;uniform float u_vertical_gradient;uniform lowp float u_opacity;attribute vec2 a_pos;attribute vec4 a_normal_ed;varying vec4 v_color;\\n#pragma mapbox: define highp float base\\n#pragma mapbox: define highp float height\\n#pragma mapbox: define highp vec4 color\\nvoid main() {\\n#pragma mapbox: initialize highp float base\\n#pragma mapbox: initialize highp float height\\n#pragma mapbox: initialize highp vec4 color\\nvec3 normal=a_normal_ed.xyz;base=max(0.0,base);height=max(0.0,height);float t=mod(normal.x,2.0);gl_Position=u_matrix*vec4(a_pos,t > 0.0 ? height : base,1);float colorvalue=color.r*0.2126+color.g*0.7152+color.b*0.0722;v_color=vec4(0.0,0.0,0.0,1.0);vec4 ambientlight=vec4(0.03,0.03,0.03,1.0);color+=ambientlight;float directional=clamp(dot(normal/16384.0,u_lightpos),0.0,1.0);directional=mix((1.0-u_lightintensity),max((1.0-colorvalue+u_lightintensity),1.0),directional);if (normal.y !=0.0) {directional*=((1.0-u_vertical_gradient)+(u_vertical_gradient*clamp((t+base)*pow(height/150.0,0.5),mix(0.7,0.98,1.0-u_lightintensity),1.0)));}v_color.r+=clamp(color.r*directional*u_lightcolor.r,mix(0.0,0.3,1.0-u_lightcolor.r),1.0);v_color.g+=clamp(color.g*directional*u_lightcolor.g,mix(0.0,0.3,1.0-u_lightcolor.g),1.0);v_color.b+=clamp(color.b*directional*u_lightcolor.b,mix(0.0,0.3,1.0-u_lightcolor.b),1.0);v_color*=u_opacity;}\"),$e=cr(\"uniform vec2 u_texsize;uniform float u_fade;uniform sampler2D u_image;varying vec2 v_pos_a;varying vec2 v_pos_b;varying vec4 v_lighting;\\n#pragma mapbox: define lowp float base\\n#pragma mapbox: define lowp float height\\n#pragma mapbox: define lowp vec4 pattern_from\\n#pragma mapbox: define lowp vec4 pattern_to\\nvoid main() {\\n#pragma mapbox: initialize lowp float base\\n#pragma mapbox: initialize lowp float height\\n#pragma mapbox: initialize mediump vec4 pattern_from\\n#pragma mapbox: initialize mediump vec4 pattern_to\\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;vec2 imagecoord=mod(v_pos_a,1.0);vec2 pos=mix(pattern_tl_a/u_texsize,pattern_br_a/u_texsize,imagecoord);vec4 color1=texture2D(u_image,pos);vec2 imagecoord_b=mod(v_pos_b,1.0);vec2 pos2=mix(pattern_tl_b/u_texsize,pattern_br_b/u_texsize,imagecoord_b);vec4 color2=texture2D(u_image,pos2);vec4 mixedColor=mix(color1,color2,u_fade);gl_FragColor=mixedColor*v_lighting;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform vec2 u_pixel_coord_upper;uniform vec2 u_pixel_coord_lower;uniform float u_height_factor;uniform vec4 u_scale;uniform float u_vertical_gradient;uniform lowp float u_opacity;uniform vec3 u_lightcolor;uniform lowp vec3 u_lightpos;uniform lowp float u_lightintensity;attribute vec2 a_pos;attribute vec4 a_normal_ed;varying vec2 v_pos_a;varying vec2 v_pos_b;varying vec4 v_lighting;\\n#pragma mapbox: define lowp float base\\n#pragma mapbox: define lowp float height\\n#pragma mapbox: define lowp vec4 pattern_from\\n#pragma mapbox: define lowp vec4 pattern_to\\nvoid main() {\\n#pragma mapbox: initialize lowp float base\\n#pragma mapbox: initialize lowp float height\\n#pragma mapbox: initialize mediump vec4 pattern_from\\n#pragma mapbox: initialize mediump vec4 pattern_to\\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;float pixelRatio=u_scale.x;float tileRatio=u_scale.y;float fromScale=u_scale.z;float toScale=u_scale.w;vec3 normal=a_normal_ed.xyz;float edgedistance=a_normal_ed.w;vec2 display_size_a=vec2((pattern_br_a.x-pattern_tl_a.x)/pixelRatio,(pattern_br_a.y-pattern_tl_a.y)/pixelRatio);vec2 display_size_b=vec2((pattern_br_b.x-pattern_tl_b.x)/pixelRatio,(pattern_br_b.y-pattern_tl_b.y)/pixelRatio);base=max(0.0,base);height=max(0.0,height);float t=mod(normal.x,2.0);float z=t > 0.0 ? height : base;gl_Position=u_matrix*vec4(a_pos,z,1);vec2 pos=normal.x==1.0 && normal.y==0.0 && normal.z==16384.0\\n? a_pos\\n: vec2(edgedistance,z*u_height_factor);v_pos_a=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,fromScale*display_size_a,tileRatio,pos);v_pos_b=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,toScale*display_size_b,tileRatio,pos);v_lighting=vec4(0.0,0.0,0.0,1.0);float directional=clamp(dot(normal/16383.0,u_lightpos),0.0,1.0);directional=mix((1.0-u_lightintensity),max((0.5+u_lightintensity),1.0),directional);if (normal.y !=0.0) {directional*=((1.0-u_vertical_gradient)+(u_vertical_gradient*clamp((t+base)*pow(height/150.0,0.5),mix(0.7,0.98,1.0-u_lightintensity),1.0)));}v_lighting.rgb+=clamp(directional*u_lightcolor,mix(vec3(0.0),vec3(0.3),1.0-u_lightcolor),vec3(1.0));v_lighting*=u_opacity;}\"),tr=cr(\"#ifdef GL_ES\\nprecision highp float;\\n#endif\\nuniform sampler2D u_image;varying vec2 v_pos;uniform vec2 u_dimension;uniform float u_zoom;uniform float u_maxzoom;float getElevation(vec2 coord,float bias) {vec4 data=texture2D(u_image,coord)*255.0;return (data.r+data.g*256.0+data.b*256.0*256.0)/4.0;}void main() {vec2 epsilon=1.0/u_dimension;float a=getElevation(v_pos+vec2(-epsilon.x,-epsilon.y),0.0);float b=getElevation(v_pos+vec2(0,-epsilon.y),0.0);float c=getElevation(v_pos+vec2(epsilon.x,-epsilon.y),0.0);float d=getElevation(v_pos+vec2(-epsilon.x,0),0.0);float e=getElevation(v_pos,0.0);float f=getElevation(v_pos+vec2(epsilon.x,0),0.0);float g=getElevation(v_pos+vec2(-epsilon.x,epsilon.y),0.0);float h=getElevation(v_pos+vec2(0,epsilon.y),0.0);float i=getElevation(v_pos+vec2(epsilon.x,epsilon.y),0.0);float exaggeration=u_zoom < 2.0 ? 0.4 : u_zoom < 4.5 ? 0.35 : 0.3;vec2 deriv=vec2((c+f+f+i)-(a+d+d+g),(g+h+h+i)-(a+b+b+c))/ pow(2.0,(u_zoom-u_maxzoom)*exaggeration+19.2562-u_zoom);gl_FragColor=clamp(vec4(deriv.x/2.0+0.5,deriv.y/2.0+0.5,1.0,1.0),0.0,1.0);\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform vec2 u_dimension;attribute vec2 a_pos;attribute vec2 a_texture_pos;varying vec2 v_pos;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);highp vec2 epsilon=1.0/u_dimension;float scale=(u_dimension.x-2.0)/u_dimension.x;v_pos=(a_texture_pos/8192.0)*scale+epsilon;}\"),er=cr(\"uniform sampler2D u_image;varying vec2 v_pos;uniform vec2 u_latrange;uniform vec2 u_light;uniform vec4 u_shadow;uniform vec4 u_highlight;uniform vec4 u_accent;\\n#define PI 3.141592653589793\\nvoid main() {vec4 pixel=texture2D(u_image,v_pos);vec2 deriv=((pixel.rg*2.0)-1.0);float scaleFactor=cos(radians((u_latrange[0]-u_latrange[1])*(1.0-v_pos.y)+u_latrange[1]));float slope=atan(1.25*length(deriv)/scaleFactor);float aspect=deriv.x !=0.0 ? atan(deriv.y,-deriv.x) : PI/2.0*(deriv.y > 0.0 ? 1.0 :-1.0);float intensity=u_light.x;float azimuth=u_light.y+PI;float base=1.875-intensity*1.75;float maxValue=0.5*PI;float scaledSlope=intensity !=0.5 ? ((pow(base,slope)-1.0)/(pow(base,maxValue)-1.0))*maxValue : slope;float accent=cos(scaledSlope);vec4 accent_color=(1.0-accent)*u_accent*clamp(intensity*2.0,0.0,1.0);float shade=abs(mod((aspect+azimuth)/PI+0.5,2.0)-1.0);vec4 shade_color=mix(u_shadow,u_highlight,shade)*sin(scaledSlope)*clamp(intensity*2.0,0.0,1.0);gl_FragColor=accent_color*(1.0-shade_color.a)+shade_color;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;attribute vec2 a_pos;attribute vec2 a_texture_pos;varying vec2 v_pos;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);v_pos=a_texture_pos/8192.0;}\"),rr=cr(\"uniform lowp float u_device_pixel_ratio;varying vec2 v_width2;varying vec2 v_normal;varying float v_gamma_scale;\\n#pragma mapbox: define highp vec4 color\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 color\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\nfloat dist=length(v_normal)*v_width2.s;float blur2=(blur+1.0/u_device_pixel_ratio)*v_gamma_scale;float alpha=clamp(min(dist-(v_width2.t-blur2),v_width2.s-dist)/blur2,0.0,1.0);gl_FragColor=color*(alpha*opacity);\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"\\n#define scale 0.015873016\\nattribute vec2 a_pos_normal;attribute vec4 a_data;uniform mat4 u_matrix;uniform mediump float u_ratio;uniform vec2 u_units_to_pixels;uniform lowp float u_device_pixel_ratio;varying vec2 v_normal;varying vec2 v_width2;varying float v_gamma_scale;varying highp float v_linesofar;\\n#pragma mapbox: define highp vec4 color\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define mediump float gapwidth\\n#pragma mapbox: define lowp float offset\\n#pragma mapbox: define mediump float width\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 color\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize mediump float gapwidth\\n#pragma mapbox: initialize lowp float offset\\n#pragma mapbox: initialize mediump float width\\nfloat ANTIALIASING=1.0/u_device_pixel_ratio/2.0;vec2 a_extrude=a_data.xy-128.0;float a_direction=mod(a_data.z,4.0)-1.0;v_linesofar=(floor(a_data.z/4.0)+a_data.w*64.0)*2.0;vec2 pos=floor(a_pos_normal*0.5);mediump vec2 normal=a_pos_normal-2.0*pos;normal.y=normal.y*2.0-1.0;v_normal=normal;gapwidth=gapwidth/2.0;float halfwidth=width/2.0;offset=-1.0*offset;float inset=gapwidth+(gapwidth > 0.0 ? ANTIALIASING : 0.0);float outset=gapwidth+halfwidth*(gapwidth > 0.0 ? 2.0 : 1.0)+(halfwidth==0.0 ? 0.0 : ANTIALIASING);mediump vec2 dist=outset*a_extrude*scale;mediump float u=0.5*a_direction;mediump float t=1.0-abs(u);mediump vec2 offset2=offset*a_extrude*scale*normal.y*mat2(t,-u,u,t);vec4 projected_extrude=u_matrix*vec4(dist/u_ratio,0.0,0.0);gl_Position=u_matrix*vec4(pos+offset2/u_ratio,0.0,1.0)+projected_extrude;float extrude_length_without_perspective=length(dist);float extrude_length_with_perspective=length(projected_extrude.xy/gl_Position.w*u_units_to_pixels);v_gamma_scale=extrude_length_without_perspective/extrude_length_with_perspective;v_width2=vec2(outset,inset);}\"),nr=cr(\"uniform lowp float u_device_pixel_ratio;uniform sampler2D u_image;varying vec2 v_width2;varying vec2 v_normal;varying float v_gamma_scale;varying highp float v_lineprogress;\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\nvoid main() {\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\nfloat dist=length(v_normal)*v_width2.s;float blur2=(blur+1.0/u_device_pixel_ratio)*v_gamma_scale;float alpha=clamp(min(dist-(v_width2.t-blur2),v_width2.s-dist)/blur2,0.0,1.0);vec4 color=texture2D(u_image,vec2(v_lineprogress,0.5));gl_FragColor=color*(alpha*opacity);\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"\\n#define MAX_LINE_DISTANCE 32767.0\\n#define scale 0.015873016\\nattribute vec2 a_pos_normal;attribute vec4 a_data;uniform mat4 u_matrix;uniform mediump float u_ratio;uniform lowp float u_device_pixel_ratio;uniform vec2 u_units_to_pixels;varying vec2 v_normal;varying vec2 v_width2;varying float v_gamma_scale;varying highp float v_lineprogress;\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define mediump float gapwidth\\n#pragma mapbox: define lowp float offset\\n#pragma mapbox: define mediump float width\\nvoid main() {\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize mediump float gapwidth\\n#pragma mapbox: initialize lowp float offset\\n#pragma mapbox: initialize mediump float width\\nfloat ANTIALIASING=1.0/u_device_pixel_ratio/2.0;vec2 a_extrude=a_data.xy-128.0;float a_direction=mod(a_data.z,4.0)-1.0;v_lineprogress=(floor(a_data.z/4.0)+a_data.w*64.0)*2.0/MAX_LINE_DISTANCE;vec2 pos=floor(a_pos_normal*0.5);mediump vec2 normal=a_pos_normal-2.0*pos;normal.y=normal.y*2.0-1.0;v_normal=normal;gapwidth=gapwidth/2.0;float halfwidth=width/2.0;offset=-1.0*offset;float inset=gapwidth+(gapwidth > 0.0 ? ANTIALIASING : 0.0);float outset=gapwidth+halfwidth*(gapwidth > 0.0 ? 2.0 : 1.0)+(halfwidth==0.0 ? 0.0 : ANTIALIASING);mediump vec2 dist=outset*a_extrude*scale;mediump float u=0.5*a_direction;mediump float t=1.0-abs(u);mediump vec2 offset2=offset*a_extrude*scale*normal.y*mat2(t,-u,u,t);vec4 projected_extrude=u_matrix*vec4(dist/u_ratio,0.0,0.0);gl_Position=u_matrix*vec4(pos+offset2/u_ratio,0.0,1.0)+projected_extrude;float extrude_length_without_perspective=length(dist);float extrude_length_with_perspective=length(projected_extrude.xy/gl_Position.w*u_units_to_pixels);v_gamma_scale=extrude_length_without_perspective/extrude_length_with_perspective;v_width2=vec2(outset,inset);}\"),ar=cr(\"uniform lowp float u_device_pixel_ratio;uniform vec2 u_texsize;uniform float u_fade;uniform mediump vec4 u_scale;uniform sampler2D u_image;varying vec2 v_normal;varying vec2 v_width2;varying float v_linesofar;varying float v_gamma_scale;\\n#pragma mapbox: define lowp vec4 pattern_from\\n#pragma mapbox: define lowp vec4 pattern_to\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\nvoid main() {\\n#pragma mapbox: initialize mediump vec4 pattern_from\\n#pragma mapbox: initialize mediump vec4 pattern_to\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;float pixelRatio=u_scale.x;float tileZoomRatio=u_scale.y;float fromScale=u_scale.z;float toScale=u_scale.w;vec2 display_size_a=vec2((pattern_br_a.x-pattern_tl_a.x)/pixelRatio,(pattern_br_a.y-pattern_tl_a.y)/pixelRatio);vec2 display_size_b=vec2((pattern_br_b.x-pattern_tl_b.x)/pixelRatio,(pattern_br_b.y-pattern_tl_b.y)/pixelRatio);vec2 pattern_size_a=vec2(display_size_a.x*fromScale/tileZoomRatio,display_size_a.y);vec2 pattern_size_b=vec2(display_size_b.x*toScale/tileZoomRatio,display_size_b.y);float dist=length(v_normal)*v_width2.s;float blur2=(blur+1.0/u_device_pixel_ratio)*v_gamma_scale;float alpha=clamp(min(dist-(v_width2.t-blur2),v_width2.s-dist)/blur2,0.0,1.0);float x_a=mod(v_linesofar/pattern_size_a.x,1.0);float x_b=mod(v_linesofar/pattern_size_b.x,1.0);float y_a=0.5+(v_normal.y*clamp(v_width2.s,0.0,(pattern_size_a.y+2.0)/2.0)/pattern_size_a.y);float y_b=0.5+(v_normal.y*clamp(v_width2.s,0.0,(pattern_size_b.y+2.0)/2.0)/pattern_size_b.y);vec2 pos_a=mix(pattern_tl_a/u_texsize,pattern_br_a/u_texsize,vec2(x_a,y_a));vec2 pos_b=mix(pattern_tl_b/u_texsize,pattern_br_b/u_texsize,vec2(x_b,y_b));vec4 color=mix(texture2D(u_image,pos_a),texture2D(u_image,pos_b),u_fade);gl_FragColor=color*alpha*opacity;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"\\n#define scale 0.015873016\\n#define LINE_DISTANCE_SCALE 2.0\\nattribute vec2 a_pos_normal;attribute vec4 a_data;uniform mat4 u_matrix;uniform vec2 u_units_to_pixels;uniform mediump float u_ratio;uniform lowp float u_device_pixel_ratio;varying vec2 v_normal;varying vec2 v_width2;varying float v_linesofar;varying float v_gamma_scale;\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define lowp float offset\\n#pragma mapbox: define mediump float gapwidth\\n#pragma mapbox: define mediump float width\\n#pragma mapbox: define lowp vec4 pattern_from\\n#pragma mapbox: define lowp vec4 pattern_to\\nvoid main() {\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize lowp float offset\\n#pragma mapbox: initialize mediump float gapwidth\\n#pragma mapbox: initialize mediump float width\\n#pragma mapbox: initialize mediump vec4 pattern_from\\n#pragma mapbox: initialize mediump vec4 pattern_to\\nfloat ANTIALIASING=1.0/u_device_pixel_ratio/2.0;vec2 a_extrude=a_data.xy-128.0;float a_direction=mod(a_data.z,4.0)-1.0;float a_linesofar=(floor(a_data.z/4.0)+a_data.w*64.0)*LINE_DISTANCE_SCALE;vec2 pos=floor(a_pos_normal*0.5);mediump vec2 normal=a_pos_normal-2.0*pos;normal.y=normal.y*2.0-1.0;v_normal=normal;gapwidth=gapwidth/2.0;float halfwidth=width/2.0;offset=-1.0*offset;float inset=gapwidth+(gapwidth > 0.0 ? ANTIALIASING : 0.0);float outset=gapwidth+halfwidth*(gapwidth > 0.0 ? 2.0 : 1.0)+(halfwidth==0.0 ? 0.0 : ANTIALIASING);mediump vec2 dist=outset*a_extrude*scale;mediump float u=0.5*a_direction;mediump float t=1.0-abs(u);mediump vec2 offset2=offset*a_extrude*scale*normal.y*mat2(t,-u,u,t);vec4 projected_extrude=u_matrix*vec4(dist/u_ratio,0.0,0.0);gl_Position=u_matrix*vec4(pos+offset2/u_ratio,0.0,1.0)+projected_extrude;float extrude_length_without_perspective=length(dist);float extrude_length_with_perspective=length(projected_extrude.xy/gl_Position.w*u_units_to_pixels);v_gamma_scale=extrude_length_without_perspective/extrude_length_with_perspective;v_linesofar=a_linesofar;v_width2=vec2(outset,inset);}\"),ir=cr(\"uniform lowp float u_device_pixel_ratio;uniform sampler2D u_image;uniform float u_sdfgamma;uniform float u_mix;varying vec2 v_normal;varying vec2 v_width2;varying vec2 v_tex_a;varying vec2 v_tex_b;varying float v_gamma_scale;\\n#pragma mapbox: define highp vec4 color\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define mediump float width\\n#pragma mapbox: define lowp float floorwidth\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 color\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize mediump float width\\n#pragma mapbox: initialize lowp float floorwidth\\nfloat dist=length(v_normal)*v_width2.s;float blur2=(blur+1.0/u_device_pixel_ratio)*v_gamma_scale;float alpha=clamp(min(dist-(v_width2.t-blur2),v_width2.s-dist)/blur2,0.0,1.0);float sdfdist_a=texture2D(u_image,v_tex_a).a;float sdfdist_b=texture2D(u_image,v_tex_b).a;float sdfdist=mix(sdfdist_a,sdfdist_b,u_mix);alpha*=smoothstep(0.5-u_sdfgamma/floorwidth,0.5+u_sdfgamma/floorwidth,sdfdist);gl_FragColor=color*(alpha*opacity);\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"\\n#define scale 0.015873016\\n#define LINE_DISTANCE_SCALE 2.0\\nattribute vec2 a_pos_normal;attribute vec4 a_data;uniform mat4 u_matrix;uniform mediump float u_ratio;uniform lowp float u_device_pixel_ratio;uniform vec2 u_patternscale_a;uniform float u_tex_y_a;uniform vec2 u_patternscale_b;uniform float u_tex_y_b;uniform vec2 u_units_to_pixels;varying vec2 v_normal;varying vec2 v_width2;varying vec2 v_tex_a;varying vec2 v_tex_b;varying float v_gamma_scale;\\n#pragma mapbox: define highp vec4 color\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define mediump float gapwidth\\n#pragma mapbox: define lowp float offset\\n#pragma mapbox: define mediump float width\\n#pragma mapbox: define lowp float floorwidth\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 color\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize mediump float gapwidth\\n#pragma mapbox: initialize lowp float offset\\n#pragma mapbox: initialize mediump float width\\n#pragma mapbox: initialize lowp float floorwidth\\nfloat ANTIALIASING=1.0/u_device_pixel_ratio/2.0;vec2 a_extrude=a_data.xy-128.0;float a_direction=mod(a_data.z,4.0)-1.0;float a_linesofar=(floor(a_data.z/4.0)+a_data.w*64.0)*LINE_DISTANCE_SCALE;vec2 pos=floor(a_pos_normal*0.5);mediump vec2 normal=a_pos_normal-2.0*pos;normal.y=normal.y*2.0-1.0;v_normal=normal;gapwidth=gapwidth/2.0;float halfwidth=width/2.0;offset=-1.0*offset;float inset=gapwidth+(gapwidth > 0.0 ? ANTIALIASING : 0.0);float outset=gapwidth+halfwidth*(gapwidth > 0.0 ? 2.0 : 1.0)+(halfwidth==0.0 ? 0.0 : ANTIALIASING);mediump vec2 dist=outset*a_extrude*scale;mediump float u=0.5*a_direction;mediump float t=1.0-abs(u);mediump vec2 offset2=offset*a_extrude*scale*normal.y*mat2(t,-u,u,t);vec4 projected_extrude=u_matrix*vec4(dist/u_ratio,0.0,0.0);gl_Position=u_matrix*vec4(pos+offset2/u_ratio,0.0,1.0)+projected_extrude;float extrude_length_without_perspective=length(dist);float extrude_length_with_perspective=length(projected_extrude.xy/gl_Position.w*u_units_to_pixels);v_gamma_scale=extrude_length_without_perspective/extrude_length_with_perspective;v_tex_a=vec2(a_linesofar*u_patternscale_a.x/floorwidth,normal.y*u_patternscale_a.y+u_tex_y_a);v_tex_b=vec2(a_linesofar*u_patternscale_b.x/floorwidth,normal.y*u_patternscale_b.y+u_tex_y_b);v_width2=vec2(outset,inset);}\"),or=cr(\"uniform float u_fade_t;uniform float u_opacity;uniform sampler2D u_image0;uniform sampler2D u_image1;varying vec2 v_pos0;varying vec2 v_pos1;uniform float u_brightness_low;uniform float u_brightness_high;uniform float u_saturation_factor;uniform float u_contrast_factor;uniform vec3 u_spin_weights;void main() {vec4 color0=texture2D(u_image0,v_pos0);vec4 color1=texture2D(u_image1,v_pos1);if (color0.a > 0.0) {color0.rgb=color0.rgb/color0.a;}if (color1.a > 0.0) {color1.rgb=color1.rgb/color1.a;}vec4 color=mix(color0,color1,u_fade_t);color.a*=u_opacity;vec3 rgb=color.rgb;rgb=vec3(dot(rgb,u_spin_weights.xyz),dot(rgb,u_spin_weights.zxy),dot(rgb,u_spin_weights.yzx));float average=(color.r+color.g+color.b)/3.0;rgb+=(average-rgb)*u_saturation_factor;rgb=(rgb-0.5)*u_contrast_factor+0.5;vec3 u_high_vec=vec3(u_brightness_low,u_brightness_low,u_brightness_low);vec3 u_low_vec=vec3(u_brightness_high,u_brightness_high,u_brightness_high);gl_FragColor=vec4(mix(u_high_vec,u_low_vec,rgb)*color.a,color.a);\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform vec2 u_tl_parent;uniform float u_scale_parent;uniform float u_buffer_scale;attribute vec2 a_pos;attribute vec2 a_texture_pos;varying vec2 v_pos0;varying vec2 v_pos1;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);v_pos0=(((a_texture_pos/8192.0)-0.5)/u_buffer_scale )+0.5;v_pos1=(v_pos0*u_scale_parent)+u_tl_parent;}\"),sr=cr(\"uniform sampler2D u_texture;varying vec2 v_tex;varying float v_fade_opacity;\\n#pragma mapbox: define lowp float opacity\\nvoid main() {\\n#pragma mapbox: initialize lowp float opacity\\nlowp float alpha=opacity*v_fade_opacity;gl_FragColor=texture2D(u_texture,v_tex)*alpha;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"const float PI=3.141592653589793;attribute vec4 a_pos_offset;attribute vec4 a_data;attribute vec3 a_projected_pos;attribute float a_fade_opacity;uniform bool u_is_size_zoom_constant;uniform bool u_is_size_feature_constant;uniform highp float u_size_t;uniform highp float u_size;uniform highp float u_camera_to_center_distance;uniform highp float u_pitch;uniform bool u_rotate_symbol;uniform highp float u_aspect_ratio;uniform float u_fade_change;uniform mat4 u_matrix;uniform mat4 u_label_plane_matrix;uniform mat4 u_coord_matrix;uniform bool u_is_text;uniform bool u_pitch_with_map;uniform vec2 u_texsize;varying vec2 v_tex;varying float v_fade_opacity;\\n#pragma mapbox: define lowp float opacity\\nvoid main() {\\n#pragma mapbox: initialize lowp float opacity\\nvec2 a_pos=a_pos_offset.xy;vec2 a_offset=a_pos_offset.zw;vec2 a_tex=a_data.xy;vec2 a_size=a_data.zw;highp float segment_angle=-a_projected_pos[2];float size;if (!u_is_size_zoom_constant && !u_is_size_feature_constant) {size=mix(a_size[0],a_size[1],u_size_t)/256.0;} else if (u_is_size_zoom_constant && !u_is_size_feature_constant) {size=a_size[0]/256.0;} else if (!u_is_size_zoom_constant && u_is_size_feature_constant) {size=u_size;} else {size=u_size;}vec4 projectedPoint=u_matrix*vec4(a_pos,0,1);highp float camera_to_anchor_distance=projectedPoint.w;highp float distance_ratio=u_pitch_with_map ?\\ncamera_to_anchor_distance/u_camera_to_center_distance :\\nu_camera_to_center_distance/camera_to_anchor_distance;highp float perspective_ratio=clamp(0.5+0.5*distance_ratio,0.0,4.0);size*=perspective_ratio;float fontScale=u_is_text ? size/24.0 : size;highp float symbol_rotation=0.0;if (u_rotate_symbol) {vec4 offsetProjectedPoint=u_matrix*vec4(a_pos+vec2(1,0),0,1);vec2 a=projectedPoint.xy/projectedPoint.w;vec2 b=offsetProjectedPoint.xy/offsetProjectedPoint.w;symbol_rotation=atan((b.y-a.y)/u_aspect_ratio,b.x-a.x);}highp float angle_sin=sin(segment_angle+symbol_rotation);highp float angle_cos=cos(segment_angle+symbol_rotation);mat2 rotation_matrix=mat2(angle_cos,-1.0*angle_sin,angle_sin,angle_cos);vec4 projected_pos=u_label_plane_matrix*vec4(a_projected_pos.xy,0.0,1.0);gl_Position=u_coord_matrix*vec4(projected_pos.xy/projected_pos.w+rotation_matrix*(a_offset/32.0*fontScale),0.0,1.0);v_tex=a_tex/u_texsize;vec2 fade_opacity=unpack_opacity(a_fade_opacity);float fade_change=fade_opacity[1] > 0.5 ? u_fade_change :-u_fade_change;v_fade_opacity=max(0.0,min(1.0,fade_opacity[0]+fade_change));}\"),lr=cr(\"#define SDF_PX 8.0\\nuniform bool u_is_halo;uniform sampler2D u_texture;uniform highp float u_gamma_scale;uniform lowp float u_device_pixel_ratio;uniform bool u_is_text;varying vec2 v_data0;varying vec3 v_data1;\\n#pragma mapbox: define highp vec4 fill_color\\n#pragma mapbox: define highp vec4 halo_color\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define lowp float halo_width\\n#pragma mapbox: define lowp float halo_blur\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 fill_color\\n#pragma mapbox: initialize highp vec4 halo_color\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize lowp float halo_width\\n#pragma mapbox: initialize lowp float halo_blur\\nfloat EDGE_GAMMA=0.105/u_device_pixel_ratio;vec2 tex=v_data0.xy;float gamma_scale=v_data1.x;float size=v_data1.y;float fade_opacity=v_data1[2];float fontScale=u_is_text ? size/24.0 : size;lowp vec4 color=fill_color;highp float gamma=EDGE_GAMMA/(fontScale*u_gamma_scale);lowp float buff=(256.0-64.0)/256.0;if (u_is_halo) {color=halo_color;gamma=(halo_blur*1.19/SDF_PX+EDGE_GAMMA)/(fontScale*u_gamma_scale);buff=(6.0-halo_width/fontScale)/SDF_PX;}lowp float dist=texture2D(u_texture,tex).a;highp float gamma_scaled=gamma*gamma_scale;highp float alpha=smoothstep(buff-gamma_scaled,buff+gamma_scaled,dist);gl_FragColor=color*(alpha*opacity*fade_opacity);\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"const float PI=3.141592653589793;attribute vec4 a_pos_offset;attribute vec4 a_data;attribute vec3 a_projected_pos;attribute float a_fade_opacity;uniform bool u_is_size_zoom_constant;uniform bool u_is_size_feature_constant;uniform highp float u_size_t;uniform highp float u_size;uniform mat4 u_matrix;uniform mat4 u_label_plane_matrix;uniform mat4 u_coord_matrix;uniform bool u_is_text;uniform bool u_pitch_with_map;uniform highp float u_pitch;uniform bool u_rotate_symbol;uniform highp float u_aspect_ratio;uniform highp float u_camera_to_center_distance;uniform float u_fade_change;uniform vec2 u_texsize;varying vec2 v_data0;varying vec3 v_data1;\\n#pragma mapbox: define highp vec4 fill_color\\n#pragma mapbox: define highp vec4 halo_color\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define lowp float halo_width\\n#pragma mapbox: define lowp float halo_blur\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 fill_color\\n#pragma mapbox: initialize highp vec4 halo_color\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize lowp float halo_width\\n#pragma mapbox: initialize lowp float halo_blur\\nvec2 a_pos=a_pos_offset.xy;vec2 a_offset=a_pos_offset.zw;vec2 a_tex=a_data.xy;vec2 a_size=a_data.zw;highp float segment_angle=-a_projected_pos[2];float size;if (!u_is_size_zoom_constant && !u_is_size_feature_constant) {size=mix(a_size[0],a_size[1],u_size_t)/256.0;} else if (u_is_size_zoom_constant && !u_is_size_feature_constant) {size=a_size[0]/256.0;} else if (!u_is_size_zoom_constant && u_is_size_feature_constant) {size=u_size;} else {size=u_size;}vec4 projectedPoint=u_matrix*vec4(a_pos,0,1);highp float camera_to_anchor_distance=projectedPoint.w;highp float distance_ratio=u_pitch_with_map ?\\ncamera_to_anchor_distance/u_camera_to_center_distance :\\nu_camera_to_center_distance/camera_to_anchor_distance;highp float perspective_ratio=clamp(0.5+0.5*distance_ratio,0.0,4.0);size*=perspective_ratio;float fontScale=u_is_text ? size/24.0 : size;highp float symbol_rotation=0.0;if (u_rotate_symbol) {vec4 offsetProjectedPoint=u_matrix*vec4(a_pos+vec2(1,0),0,1);vec2 a=projectedPoint.xy/projectedPoint.w;vec2 b=offsetProjectedPoint.xy/offsetProjectedPoint.w;symbol_rotation=atan((b.y-a.y)/u_aspect_ratio,b.x-a.x);}highp float angle_sin=sin(segment_angle+symbol_rotation);highp float angle_cos=cos(segment_angle+symbol_rotation);mat2 rotation_matrix=mat2(angle_cos,-1.0*angle_sin,angle_sin,angle_cos);vec4 projected_pos=u_label_plane_matrix*vec4(a_projected_pos.xy,0.0,1.0);gl_Position=u_coord_matrix*vec4(projected_pos.xy/projected_pos.w+rotation_matrix*(a_offset/32.0*fontScale),0.0,1.0);float gamma_scale=gl_Position.w;vec2 tex=a_tex/u_texsize;vec2 fade_opacity=unpack_opacity(a_fade_opacity);float fade_change=fade_opacity[1] > 0.5 ? u_fade_change :-u_fade_change;float interpolated_fade_opacity=max(0.0,min(1.0,fade_opacity[0]+fade_change));v_data0=vec2(tex.x,tex.y);v_data1=vec3(gamma_scale,size,interpolated_fade_opacity);}\");function cr(t,e){var r=/#pragma mapbox: ([\\w]+) ([\\w]+) ([\\w]+) ([\\w]+)/g,n={};return{fragmentSource:t=t.replace(r,function(t,e,r,a,i){return n[i]=!0,\"define\"===e?\"\\n#ifndef HAS_UNIFORM_u_\"+i+\"\\nvarying \"+r+\" \"+a+\" \"+i+\";\\n#else\\nuniform \"+r+\" \"+a+\" u_\"+i+\";\\n#endif\\n\":\"\\n#ifdef HAS_UNIFORM_u_\"+i+\"\\n    \"+r+\" \"+a+\" \"+i+\" = u_\"+i+\";\\n#endif\\n\"}),vertexSource:e=e.replace(r,function(t,e,r,a,i){var o=\"float\"===a?\"vec2\":\"vec4\",s=i.match(/color/)?\"color\":o;return n[i]?\"define\"===e?\"\\n#ifndef HAS_UNIFORM_u_\"+i+\"\\nuniform lowp float u_\"+i+\"_t;\\nattribute \"+r+\" \"+o+\" a_\"+i+\";\\nvarying \"+r+\" \"+a+\" \"+i+\";\\n#else\\nuniform \"+r+\" \"+a+\" u_\"+i+\";\\n#endif\\n\":\"vec4\"===s?\"\\n#ifndef HAS_UNIFORM_u_\"+i+\"\\n    \"+i+\" = a_\"+i+\";\\n#else\\n    \"+r+\" \"+a+\" \"+i+\" = u_\"+i+\";\\n#endif\\n\":\"\\n#ifndef HAS_UNIFORM_u_\"+i+\"\\n    \"+i+\" = unpack_mix_\"+s+\"(a_\"+i+\", u_\"+i+\"_t);\\n#else\\n    \"+r+\" \"+a+\" \"+i+\" = u_\"+i+\";\\n#endif\\n\":\"define\"===e?\"\\n#ifndef HAS_UNIFORM_u_\"+i+\"\\nuniform lowp float u_\"+i+\"_t;\\nattribute \"+r+\" \"+o+\" a_\"+i+\";\\n#else\\nuniform \"+r+\" \"+a+\" u_\"+i+\";\\n#endif\\n\":\"vec4\"===s?\"\\n#ifndef HAS_UNIFORM_u_\"+i+\"\\n    \"+r+\" \"+a+\" \"+i+\" = a_\"+i+\";\\n#else\\n    \"+r+\" \"+a+\" \"+i+\" = u_\"+i+\";\\n#endif\\n\":\"\\n#ifndef HAS_UNIFORM_u_\"+i+\"\\n    \"+r+\" \"+a+\" \"+i+\" = unpack_mix_\"+s+\"(a_\"+i+\", u_\"+i+\"_t);\\n#else\\n    \"+r+\" \"+a+\" \"+i+\" = u_\"+i+\";\\n#endif\\n\"})}}var ur=Object.freeze({prelude:Be,background:Ne,backgroundPattern:je,circle:Ve,clippingMask:Ue,heatmap:qe,heatmapTexture:He,collisionBox:Ge,collisionCircle:Ye,debug:We,fill:Xe,fillOutline:Ze,fillOutlinePattern:Je,fillPattern:Ke,fillExtrusion:Qe,fillExtrusionPattern:$e,hillshadePrepare:tr,hillshade:er,line:rr,lineGradient:nr,linePattern:ar,lineSDF:ir,raster:or,symbolIcon:sr,symbolSDF:lr}),hr=function(){this.boundProgram=null,this.boundLayoutVertexBuffer=null,this.boundPaintVertexBuffers=[],this.boundIndexBuffer=null,this.boundVertexOffset=null,this.boundDynamicVertexBuffer=null,this.vao=null};hr.prototype.bind=function(t,e,r,n,a,i,o,s){this.context=t;for(var l=this.boundPaintVertexBuffers.length!==n.length,c=0;!l&&c<n.length;c++)this.boundPaintVertexBuffers[c]!==n[c]&&(l=!0);var u=!this.vao||this.boundProgram!==e||this.boundLayoutVertexBuffer!==r||l||this.boundIndexBuffer!==a||this.boundVertexOffset!==i||this.boundDynamicVertexBuffer!==o||this.boundDynamicVertexBuffer2!==s;!t.extVertexArrayObject||u?this.freshBind(e,r,n,a,i,o,s):(t.bindVertexArrayOES.set(this.vao),o&&o.bind(),a&&a.dynamicDraw&&a.bind(),s&&s.bind())},hr.prototype.freshBind=function(t,e,r,n,a,i,o){var s,l=t.numAttributes,c=this.context,u=c.gl;if(c.extVertexArrayObject)this.vao&&this.destroy(),this.vao=c.extVertexArrayObject.createVertexArrayOES(),c.bindVertexArrayOES.set(this.vao),s=0,this.boundProgram=t,this.boundLayoutVertexBuffer=e,this.boundPaintVertexBuffers=r,this.boundIndexBuffer=n,this.boundVertexOffset=a,this.boundDynamicVertexBuffer=i,this.boundDynamicVertexBuffer2=o;else{s=c.currentNumAttributes||0;for(var h=l;h<s;h++)u.disableVertexAttribArray(h)}e.enableAttributes(u,t);for(var f=0,p=r;f<p.length;f+=1)p[f].enableAttributes(u,t);i&&i.enableAttributes(u,t),o&&o.enableAttributes(u,t),e.bind(),e.setVertexAttribPointers(u,t,a);for(var d=0,g=r;d<g.length;d+=1){var v=g[d];v.bind(),v.setVertexAttribPointers(u,t,a)}i&&(i.bind(),i.setVertexAttribPointers(u,t,a)),n&&n.bind(),o&&(o.bind(),o.setVertexAttribPointers(u,t,a)),c.currentNumAttributes=l},hr.prototype.destroy=function(){this.vao&&(this.context.extVertexArrayObject.deleteVertexArrayOES(this.vao),this.vao=null)};var fr=function(t,e,r,n,a){var i=t.gl;this.program=i.createProgram();var o=r.defines();a&&o.push(\"#define OVERDRAW_INSPECTOR;\");var s=o.concat(Be.fragmentSource,e.fragmentSource).join(\"\\n\"),l=o.concat(Be.vertexSource,e.vertexSource).join(\"\\n\"),c=i.createShader(i.FRAGMENT_SHADER);i.shaderSource(c,s),i.compileShader(c),i.attachShader(this.program,c);var u=i.createShader(i.VERTEX_SHADER);i.shaderSource(u,l),i.compileShader(u),i.attachShader(this.program,u);for(var h=r.layoutAttributes||[],f=0;f<h.length;f++)i.bindAttribLocation(this.program,f,h[f].name);i.linkProgram(this.program),this.numAttributes=i.getProgramParameter(this.program,i.ACTIVE_ATTRIBUTES),this.attributes={};for(var p={},d=0;d<this.numAttributes;d++){var g=i.getActiveAttrib(this.program,d);g&&(this.attributes[g.name]=i.getAttribLocation(this.program,g.name))}for(var v=i.getProgramParameter(this.program,i.ACTIVE_UNIFORMS),m=0;m<v;m++){var y=i.getActiveUniform(this.program,m);y&&(p[y.name]=i.getUniformLocation(this.program,y.name))}this.fixedUniforms=n(t,p),this.binderUniforms=r.getUniforms(t,p)};function pr(e,r,n){var a=1/ce(n,1,r.transform.tileZoom),i=Math.pow(2,n.tileID.overscaledZ),o=n.tileSize*Math.pow(2,r.transform.tileZoom)/i,s=o*(n.tileID.canonical.x+n.tileID.wrap*i),l=o*n.tileID.canonical.y;return{u_image:0,u_texsize:n.imageAtlasTexture.size,u_scale:[t.browser.devicePixelRatio,a,e.fromScale,e.toScale],u_fade:e.t,u_pixel_coord_upper:[s>>16,l>>16],u_pixel_coord_lower:[65535&s,65535&l]}}fr.prototype.draw=function(t,e,r,n,a,i,o,s,l,c,u,h,f,p,d,g){var v,m=t.gl;for(var y in t.program.set(this.program),t.setDepthMode(r),t.setStencilMode(n),t.setColorMode(a),t.setCullFace(i),this.fixedUniforms)this.fixedUniforms[y].set(o[y]);p&&p.setUniforms(t,this.binderUniforms,h,{zoom:f});for(var x=(v={},v[m.LINES]=2,v[m.TRIANGLES]=3,v[m.LINE_STRIP]=1,v)[e],b=0,_=u.get();b<_.length;b+=1){var w=_[b],k=w.vaos||(w.vaos={});(k[s]||(k[s]=new hr)).bind(t,this,l,p?p.getPaintVertexBuffers():[],c,w.vertexOffset,d,g),m.drawElements(e,w.primitiveLength*x,m.UNSIGNED_SHORT,w.primitiveOffset*x*2)}};var dr=function(e,r,n,a){var i=r.style.light,o=i.properties.get(\"position\"),s=[o.x,o.y,o.z],l=t.create$1();\"viewport\"===i.properties.get(\"anchor\")&&t.fromRotation(l,-r.transform.angle),t.transformMat3(s,s,l);var c=i.properties.get(\"color\");return{u_matrix:e,u_lightpos:s,u_lightintensity:i.properties.get(\"intensity\"),u_lightcolor:[c.r,c.g,c.b],u_vertical_gradient:+n,u_opacity:a}},gr=function(e,r,n,a,i,o,s){return t.extend(dr(e,r,n,a),pr(o,r,s),{u_height_factor:-Math.pow(2,i.overscaledZ)/s.tileSize/8})},vr=function(t){return{u_matrix:t}},mr=function(e,r,n,a){return t.extend(vr(e),pr(n,r,a))},yr=function(t,e){return{u_matrix:t,u_world:e}},xr=function(e,r,n,a,i){return t.extend(mr(e,r,n,a),{u_world:i})},br=function(e,r,n,a){var i,o,s=e.transform;if(\"map\"===a.paint.get(\"circle-pitch-alignment\")){var l=ce(n,1,s.zoom);i=!0,o=[l,l]}else i=!1,o=s.pixelsToGLUnits;return{u_camera_to_center_distance:s.cameraToCenterDistance,u_scale_with_map:+(\"map\"===a.paint.get(\"circle-pitch-scale\")),u_matrix:e.translatePosMatrix(r.posMatrix,n,a.paint.get(\"circle-translate\"),a.paint.get(\"circle-translate-anchor\")),u_pitch_with_map:+i,u_device_pixel_ratio:t.browser.devicePixelRatio,u_extrude_scale:o}},_r=function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_camera_to_center_distance:new t.Uniform1f(e,r.u_camera_to_center_distance),u_pixels_to_tile_units:new t.Uniform1f(e,r.u_pixels_to_tile_units),u_extrude_scale:new t.Uniform2f(e,r.u_extrude_scale),u_overscale_factor:new t.Uniform1f(e,r.u_overscale_factor)}},wr=function(t,e,r){var n=ce(r,1,e.zoom),a=Math.pow(2,e.zoom-r.tileID.overscaledZ),i=r.tileID.overscaleFactor();return{u_matrix:t,u_camera_to_center_distance:e.cameraToCenterDistance,u_pixels_to_tile_units:n,u_extrude_scale:[e.pixelsToGLUnits[0]/(n*a),e.pixelsToGLUnits[1]/(n*a)],u_overscale_factor:i}},kr=function(t,e){return{u_matrix:t,u_color:e}},Tr=function(t){return{u_matrix:t}},Ar=function(t,e,r,n){return{u_matrix:t,u_extrude_scale:ce(e,1,r),u_intensity:n}},Mr=function(t,e,r){var n=r.paint.get(\"hillshade-shadow-color\"),a=r.paint.get(\"hillshade-highlight-color\"),i=r.paint.get(\"hillshade-accent-color\"),o=r.paint.get(\"hillshade-illumination-direction\")*(Math.PI/180);\"viewport\"===r.paint.get(\"hillshade-illumination-anchor\")&&(o-=t.transform.angle);var s=!t.options.moving;return{u_matrix:t.transform.calculatePosMatrix(e.tileID.toUnwrapped(),s),u_image:0,u_latrange:Er(t,e.tileID),u_light:[r.paint.get(\"hillshade-exaggeration\"),o],u_shadow:n,u_highlight:a,u_accent:i}},Sr=function(e,r){var n=e.dem.stride,a=t.create();return t.ortho(a,0,t.EXTENT,-t.EXTENT,0,0,1),t.translate(a,a,[0,-t.EXTENT,0]),{u_matrix:a,u_image:1,u_dimension:[n,n],u_zoom:e.tileID.overscaledZ,u_maxzoom:r}};function Er(e,r){var n=Math.pow(2,r.canonical.z),a=r.canonical.y;return[new t.MercatorCoordinate(0,a/n).toLngLat().lat,new t.MercatorCoordinate(0,(a+1)/n).toLngLat().lat]}var Cr=function(e,r,n){var a=e.transform;return{u_matrix:zr(e,r,n),u_ratio:1/ce(r,1,a.zoom),u_device_pixel_ratio:t.browser.devicePixelRatio,u_units_to_pixels:[1/a.pixelsToGLUnits[0],1/a.pixelsToGLUnits[1]]}},Lr=function(e,r,n){return t.extend(Cr(e,r,n),{u_image:0})},Pr=function(e,r,n,a){var i=e.transform,o=Ir(r,i);return{u_matrix:zr(e,r,n),u_texsize:r.imageAtlasTexture.size,u_ratio:1/ce(r,1,i.zoom),u_device_pixel_ratio:t.browser.devicePixelRatio,u_image:0,u_scale:[t.browser.devicePixelRatio,o,a.fromScale,a.toScale],u_fade:a.t,u_units_to_pixels:[1/i.pixelsToGLUnits[0],1/i.pixelsToGLUnits[1]]}},Or=function(e,r,n,a,i){var o=e.transform,s=e.lineAtlas,l=Ir(r,o),c=\"round\"===n.layout.get(\"line-cap\"),u=s.getDash(a.from,c),h=s.getDash(a.to,c),f=u.width*i.fromScale,p=h.width*i.toScale;return t.extend(Cr(e,r,n),{u_patternscale_a:[l/f,-u.height/2],u_patternscale_b:[l/p,-h.height/2],u_sdfgamma:s.width/(256*Math.min(f,p)*t.browser.devicePixelRatio)/2,u_image:0,u_tex_y_a:u.y,u_tex_y_b:h.y,u_mix:i.t})};function Ir(t,e){return 1/ce(t,1,e.tileZoom)}function zr(t,e,r){return t.translatePosMatrix(e.tileID.posMatrix,e,r.paint.get(\"line-translate\"),r.paint.get(\"line-translate-anchor\"))}var Dr=function(t,e,r,n,a){return{u_matrix:t,u_tl_parent:e,u_scale_parent:r,u_buffer_scale:1,u_fade_t:n.mix,u_opacity:n.opacity*a.paint.get(\"raster-opacity\"),u_image0:0,u_image1:1,u_brightness_low:a.paint.get(\"raster-brightness-min\"),u_brightness_high:a.paint.get(\"raster-brightness-max\"),u_saturation_factor:(o=a.paint.get(\"raster-saturation\"),o>0?1-1/(1.001-o):-o),u_contrast_factor:(i=a.paint.get(\"raster-contrast\"),i>0?1/(1-i):1+i),u_spin_weights:function(t){t*=Math.PI/180;var e=Math.sin(t),r=Math.cos(t);return[(2*r+1)/3,(-Math.sqrt(3)*e-r+1)/3,(Math.sqrt(3)*e-r+1)/3]}(a.paint.get(\"raster-hue-rotate\"))};var i,o};var Rr=function(t,e,r,n,a,i,o,s,l,c){var u=a.transform;return{u_is_size_zoom_constant:+(\"constant\"===t||\"source\"===t),u_is_size_feature_constant:+(\"constant\"===t||\"camera\"===t),u_size_t:e?e.uSizeT:0,u_size:e?e.uSize:0,u_camera_to_center_distance:u.cameraToCenterDistance,u_pitch:u.pitch/360*2*Math.PI,u_rotate_symbol:+r,u_aspect_ratio:u.width/u.height,u_fade_change:a.options.fadeDuration?a.symbolFadeChange:1,u_matrix:i,u_label_plane_matrix:o,u_coord_matrix:s,u_is_text:+l,u_pitch_with_map:+n,u_texsize:c,u_texture:0}},Fr=function(e,r,n,a,i,o,s,l,c,u,h){var f=i.transform;return t.extend(Rr(e,r,n,a,i,o,s,l,c,u),{u_gamma_scale:a?Math.cos(f._pitch)*f.cameraToCenterDistance:1,u_device_pixel_ratio:t.browser.devicePixelRatio,u_is_halo:+h})},Br=function(t,e,r){return{u_matrix:t,u_opacity:e,u_color:r}},Nr=function(e,r,n,a,i,o){return t.extend(function(t,e,r,n){var a=r.imageManager.getPattern(t.from),i=r.imageManager.getPattern(t.to),o=r.imageManager.getPixelSize(),s=o.width,l=o.height,c=Math.pow(2,n.tileID.overscaledZ),u=n.tileSize*Math.pow(2,r.transform.tileZoom)/c,h=u*(n.tileID.canonical.x+n.tileID.wrap*c),f=u*n.tileID.canonical.y;return{u_image:0,u_pattern_tl_a:a.tl,u_pattern_br_a:a.br,u_pattern_tl_b:i.tl,u_pattern_br_b:i.br,u_texsize:[s,l],u_mix:e.t,u_pattern_size_a:a.displaySize,u_pattern_size_b:i.displaySize,u_scale_a:e.fromScale,u_scale_b:e.toScale,u_tile_units_to_pixels:1/ce(n,1,r.transform.tileZoom),u_pixel_coord_upper:[h>>16,f>>16],u_pixel_coord_lower:[65535&h,65535&f]}}(a,o,n,i),{u_matrix:e,u_opacity:r})},jr={fillExtrusion:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_lightpos:new t.Uniform3f(e,r.u_lightpos),u_lightintensity:new t.Uniform1f(e,r.u_lightintensity),u_lightcolor:new t.Uniform3f(e,r.u_lightcolor),u_vertical_gradient:new t.Uniform1f(e,r.u_vertical_gradient),u_opacity:new t.Uniform1f(e,r.u_opacity)}},fillExtrusionPattern:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_lightpos:new t.Uniform3f(e,r.u_lightpos),u_lightintensity:new t.Uniform1f(e,r.u_lightintensity),u_lightcolor:new t.Uniform3f(e,r.u_lightcolor),u_vertical_gradient:new t.Uniform1f(e,r.u_vertical_gradient),u_height_factor:new t.Uniform1f(e,r.u_height_factor),u_image:new t.Uniform1i(e,r.u_image),u_texsize:new t.Uniform2f(e,r.u_texsize),u_pixel_coord_upper:new t.Uniform2f(e,r.u_pixel_coord_upper),u_pixel_coord_lower:new t.Uniform2f(e,r.u_pixel_coord_lower),u_scale:new t.Uniform4f(e,r.u_scale),u_fade:new t.Uniform1f(e,r.u_fade),u_opacity:new t.Uniform1f(e,r.u_opacity)}},fill:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix)}},fillPattern:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_image:new t.Uniform1i(e,r.u_image),u_texsize:new t.Uniform2f(e,r.u_texsize),u_pixel_coord_upper:new t.Uniform2f(e,r.u_pixel_coord_upper),u_pixel_coord_lower:new t.Uniform2f(e,r.u_pixel_coord_lower),u_scale:new t.Uniform4f(e,r.u_scale),u_fade:new t.Uniform1f(e,r.u_fade)}},fillOutline:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_world:new t.Uniform2f(e,r.u_world)}},fillOutlinePattern:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_world:new t.Uniform2f(e,r.u_world),u_image:new t.Uniform1i(e,r.u_image),u_texsize:new t.Uniform2f(e,r.u_texsize),u_pixel_coord_upper:new t.Uniform2f(e,r.u_pixel_coord_upper),u_pixel_coord_lower:new t.Uniform2f(e,r.u_pixel_coord_lower),u_scale:new t.Uniform4f(e,r.u_scale),u_fade:new t.Uniform1f(e,r.u_fade)}},circle:function(e,r){return{u_camera_to_center_distance:new t.Uniform1f(e,r.u_camera_to_center_distance),u_scale_with_map:new t.Uniform1i(e,r.u_scale_with_map),u_pitch_with_map:new t.Uniform1i(e,r.u_pitch_with_map),u_extrude_scale:new t.Uniform2f(e,r.u_extrude_scale),u_device_pixel_ratio:new t.Uniform1f(e,r.u_device_pixel_ratio),u_matrix:new t.UniformMatrix4f(e,r.u_matrix)}},collisionBox:_r,collisionCircle:_r,debug:function(e,r){return{u_color:new t.UniformColor(e,r.u_color),u_matrix:new t.UniformMatrix4f(e,r.u_matrix)}},clippingMask:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix)}},heatmap:function(e,r){return{u_extrude_scale:new t.Uniform1f(e,r.u_extrude_scale),u_intensity:new t.Uniform1f(e,r.u_intensity),u_matrix:new t.UniformMatrix4f(e,r.u_matrix)}},heatmapTexture:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_world:new t.Uniform2f(e,r.u_world),u_image:new t.Uniform1i(e,r.u_image),u_color_ramp:new t.Uniform1i(e,r.u_color_ramp),u_opacity:new t.Uniform1f(e,r.u_opacity)}},hillshade:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_image:new t.Uniform1i(e,r.u_image),u_latrange:new t.Uniform2f(e,r.u_latrange),u_light:new t.Uniform2f(e,r.u_light),u_shadow:new t.UniformColor(e,r.u_shadow),u_highlight:new t.UniformColor(e,r.u_highlight),u_accent:new t.UniformColor(e,r.u_accent)}},hillshadePrepare:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_image:new t.Uniform1i(e,r.u_image),u_dimension:new t.Uniform2f(e,r.u_dimension),u_zoom:new t.Uniform1f(e,r.u_zoom),u_maxzoom:new t.Uniform1f(e,r.u_maxzoom)}},line:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_ratio:new t.Uniform1f(e,r.u_ratio),u_device_pixel_ratio:new t.Uniform1f(e,r.u_device_pixel_ratio),u_units_to_pixels:new t.Uniform2f(e,r.u_units_to_pixels)}},lineGradient:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_ratio:new t.Uniform1f(e,r.u_ratio),u_device_pixel_ratio:new t.Uniform1f(e,r.u_device_pixel_ratio),u_units_to_pixels:new t.Uniform2f(e,r.u_units_to_pixels),u_image:new t.Uniform1i(e,r.u_image)}},linePattern:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_texsize:new t.Uniform2f(e,r.u_texsize),u_ratio:new t.Uniform1f(e,r.u_ratio),u_device_pixel_ratio:new t.Uniform1f(e,r.u_device_pixel_ratio),u_image:new t.Uniform1i(e,r.u_image),u_units_to_pixels:new t.Uniform2f(e,r.u_units_to_pixels),u_scale:new t.Uniform4f(e,r.u_scale),u_fade:new t.Uniform1f(e,r.u_fade)}},lineSDF:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_ratio:new t.Uniform1f(e,r.u_ratio),u_device_pixel_ratio:new t.Uniform1f(e,r.u_device_pixel_ratio),u_units_to_pixels:new t.Uniform2f(e,r.u_units_to_pixels),u_patternscale_a:new t.Uniform2f(e,r.u_patternscale_a),u_patternscale_b:new t.Uniform2f(e,r.u_patternscale_b),u_sdfgamma:new t.Uniform1f(e,r.u_sdfgamma),u_image:new t.Uniform1i(e,r.u_image),u_tex_y_a:new t.Uniform1f(e,r.u_tex_y_a),u_tex_y_b:new t.Uniform1f(e,r.u_tex_y_b),u_mix:new t.Uniform1f(e,r.u_mix)}},raster:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_tl_parent:new t.Uniform2f(e,r.u_tl_parent),u_scale_parent:new t.Uniform1f(e,r.u_scale_parent),u_buffer_scale:new t.Uniform1f(e,r.u_buffer_scale),u_fade_t:new t.Uniform1f(e,r.u_fade_t),u_opacity:new t.Uniform1f(e,r.u_opacity),u_image0:new t.Uniform1i(e,r.u_image0),u_image1:new t.Uniform1i(e,r.u_image1),u_brightness_low:new t.Uniform1f(e,r.u_brightness_low),u_brightness_high:new t.Uniform1f(e,r.u_brightness_high),u_saturation_factor:new t.Uniform1f(e,r.u_saturation_factor),u_contrast_factor:new t.Uniform1f(e,r.u_contrast_factor),u_spin_weights:new t.Uniform3f(e,r.u_spin_weights)}},symbolIcon:function(e,r){return{u_is_size_zoom_constant:new t.Uniform1i(e,r.u_is_size_zoom_constant),u_is_size_feature_constant:new t.Uniform1i(e,r.u_is_size_feature_constant),u_size_t:new t.Uniform1f(e,r.u_size_t),u_size:new t.Uniform1f(e,r.u_size),u_camera_to_center_distance:new t.Uniform1f(e,r.u_camera_to_center_distance),u_pitch:new t.Uniform1f(e,r.u_pitch),u_rotate_symbol:new t.Uniform1i(e,r.u_rotate_symbol),u_aspect_ratio:new t.Uniform1f(e,r.u_aspect_ratio),u_fade_change:new t.Uniform1f(e,r.u_fade_change),u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_label_plane_matrix:new t.UniformMatrix4f(e,r.u_label_plane_matrix),u_coord_matrix:new t.UniformMatrix4f(e,r.u_coord_matrix),u_is_text:new t.Uniform1f(e,r.u_is_text),u_pitch_with_map:new t.Uniform1i(e,r.u_pitch_with_map),u_texsize:new t.Uniform2f(e,r.u_texsize),u_texture:new t.Uniform1i(e,r.u_texture)}},symbolSDF:function(e,r){return{u_is_size_zoom_constant:new t.Uniform1i(e,r.u_is_size_zoom_constant),u_is_size_feature_constant:new t.Uniform1i(e,r.u_is_size_feature_constant),u_size_t:new t.Uniform1f(e,r.u_size_t),u_size:new t.Uniform1f(e,r.u_size),u_camera_to_center_distance:new t.Uniform1f(e,r.u_camera_to_center_distance),u_pitch:new t.Uniform1f(e,r.u_pitch),u_rotate_symbol:new t.Uniform1i(e,r.u_rotate_symbol),u_aspect_ratio:new t.Uniform1f(e,r.u_aspect_ratio),u_fade_change:new t.Uniform1f(e,r.u_fade_change),u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_label_plane_matrix:new t.UniformMatrix4f(e,r.u_label_plane_matrix),u_coord_matrix:new t.UniformMatrix4f(e,r.u_coord_matrix),u_is_text:new t.Uniform1f(e,r.u_is_text),u_pitch_with_map:new t.Uniform1i(e,r.u_pitch_with_map),u_texsize:new t.Uniform2f(e,r.u_texsize),u_texture:new t.Uniform1i(e,r.u_texture),u_gamma_scale:new t.Uniform1f(e,r.u_gamma_scale),u_device_pixel_ratio:new t.Uniform1f(e,r.u_device_pixel_ratio),u_is_halo:new t.Uniform1f(e,r.u_is_halo)}},background:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_opacity:new t.Uniform1f(e,r.u_opacity),u_color:new t.UniformColor(e,r.u_color)}},backgroundPattern:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_opacity:new t.Uniform1f(e,r.u_opacity),u_image:new t.Uniform1i(e,r.u_image),u_pattern_tl_a:new t.Uniform2f(e,r.u_pattern_tl_a),u_pattern_br_a:new t.Uniform2f(e,r.u_pattern_br_a),u_pattern_tl_b:new t.Uniform2f(e,r.u_pattern_tl_b),u_pattern_br_b:new t.Uniform2f(e,r.u_pattern_br_b),u_texsize:new t.Uniform2f(e,r.u_texsize),u_mix:new t.Uniform1f(e,r.u_mix),u_pattern_size_a:new t.Uniform2f(e,r.u_pattern_size_a),u_pattern_size_b:new t.Uniform2f(e,r.u_pattern_size_b),u_scale_a:new t.Uniform1f(e,r.u_scale_a),u_scale_b:new t.Uniform1f(e,r.u_scale_b),u_pixel_coord_upper:new t.Uniform2f(e,r.u_pixel_coord_upper),u_pixel_coord_lower:new t.Uniform2f(e,r.u_pixel_coord_lower),u_tile_units_to_pixels:new t.Uniform1f(e,r.u_tile_units_to_pixels)}}};function Vr(e,r){for(var n=e.sort(function(t,e){return t.tileID.isLessThan(e.tileID)?-1:e.tileID.isLessThan(t.tileID)?1:0}),a=0;a<n.length;a++){var i={},o=n[a],s=n.slice(a+1);Ur(o.tileID.wrapped(),o.tileID,s,new t.OverscaledTileID(0,o.tileID.wrap+1,0,0,0),i),o.setMask(i,r)}}function Ur(e,r,n,a,i){for(var o=0;o<n.length;o++){var s=n[o];if(a.isLessThan(s.tileID))break;if(r.key===s.tileID.key)return;if(s.tileID.isChildOf(r)){for(var l=r.children(1/0),c=0;c<l.length;c++)Ur(e,l[c],n.slice(o),a,i);return}}var u=r.overscaledZ-e.overscaledZ,h=new t.CanonicalTileID(u,r.canonical.x-(e.canonical.x<<u),r.canonical.y-(e.canonical.y<<u));i[h.key]=i[h.key]||h}function qr(t,e,r,n,a){for(var i=t.context,o=i.gl,s=a?t.useProgram(\"collisionCircle\"):t.useProgram(\"collisionBox\"),l=0;l<n.length;l++){var c=n[l],u=e.getTile(c),h=u.getBucket(r);if(h){var f=a?h.collisionCircle:h.collisionBox;f&&s.draw(i,a?o.TRIANGLES:o.LINES,At.disabled,Mt.disabled,t.colorModeForRenderPass(),Et.disabled,wr(c.posMatrix,t.transform,u),r.id,f.layoutVertexBuffer,f.indexBuffer,f.segments,null,t.transform.zoom,null,null,f.collisionVertexBuffer)}}}var Hr=t.identity(new Float32Array(16));function Gr(e,r,n,a,i,o){var s=t.getAnchorAlignment(e),l=-(s.horizontalAlign-.5)*r,c=-(s.verticalAlign-.5)*n,u=t.evaluateRadialOffset(e,a);return new t.Point((l/i+u[0])*o,(c/i+u[1])*o)}function Yr(e,r,n,a,i,o,s,l,c,u){var h=e.text.placedSymbolArray,f=e.text.dynamicLayoutVertexArray;f.clear();for(var p=0;p<h.length;p++){var d=h.get(p),g=e.allowVerticalPlacement&&!d.placedOrientation,v=d.hidden||!d.crossTileID||g?null:a[d.crossTileID];if(v){var m=new t.Point(d.anchorX,d.anchorY),y=Jt(m,n?l:s),x=.5+o.cameraToCenterDistance/y.signedDistanceFromCamera*.5,b=i.evaluateSizeForFeature(e.textSizeData,u,d)*x/t.ONE_EM;n&&(b*=e.tilePixelRatio/c);for(var _=v.width,w=v.height,k=v.radialOffset,T=v.textBoxScale,A=Gr(v.anchor,_,w,k,T,b),M=n?Jt(m.add(A),s).point:y.point.add(r?A.rotate(-o.angle):A),S=e.allowVerticalPlacement&&d.placedOrientation===t.WritingMode.vertical?Math.PI/2:0,E=0;E<d.numGlyphs;E++)t.addDynamicAttributes(f,M,S)}else ie(d.numGlyphs,f)}e.text.dynamicLayoutVertexBuffer.updateData(f)}function Wr(e){var r=e.text.placedSymbolArray,n=e.text.dynamicLayoutVertexArray;n.clear();for(var a=0;a<r.length;a++){var i=r.get(a);if(i.hidden||!i.placedOrientation)ie(i.numGlyphs,n);else for(var o=new t.Point(i.anchorX,i.anchorY),s=e.allowVerticalPlacement&&i.placedOrientation===t.WritingMode.vertical?Math.PI/2:0,l=0;l<i.numGlyphs;l++)t.addDynamicAttributes(n,o,s)}e.text.dynamicLayoutVertexBuffer.updateData(n)}function Xr(e,r,n,a,i,o,s,l,c,u,h,f,p){for(var d,g,v=e.context,m=v.gl,y=e.transform,x=\"map\"===l,b=\"map\"===c,_=x&&\"point\"!==n.layout.get(\"symbol-placement\"),w=x&&!b&&!_,k=void 0!==n.layout.get(\"symbol-sort-key\").constantOr(1),T=e.depthModeForSublayer(0,At.ReadOnly),A=n.layout.get(\"text-variable-anchor\"),M=[],S=0,E=a;S<E.length;S+=1){var C=E[S],L=r.getTile(C),P=L.getBucket(n);if(P){var O=i?P.text:P.icon;if(O&&O.segments.get().length){var I=O.programConfigurations.get(n.id),z=i||P.sdfIcons,D=i?P.textSizeData:P.iconSizeData;d||(d=e.useProgram(z?\"symbolSDF\":\"symbolIcon\",I),g=t.evaluateSizeForZoom(D,y.zoom)),v.activeTexture.set(m.TEXTURE0);var R=void 0,F=void 0,B=void 0;if(i)F=L.glyphAtlasTexture,B=m.LINEAR,R=L.glyphAtlasTexture.size;else{var N=1!==n.layout.get(\"icon-size\").constantOr(0)||P.iconsNeedLinear,j=b||0!==y.pitch;F=L.imageAtlasTexture,B=z||e.options.rotating||e.options.zooming||N||j?m.LINEAR:m.NEAREST,R=L.imageAtlasTexture.size}var V=ce(L,1,e.transform.zoom),U=Xt(C.posMatrix,b,x,e.transform,V),q=Zt(C.posMatrix,b,x,e.transform,V);if(_)Qt(P,C.posMatrix,e,i,U,q,b,u);else if(i&&g&&A){var H=Math.pow(2,y.zoom-L.tileID.overscaledZ);Yr(P,x,b,p,t.symbolSize,y,U,C.posMatrix,H,g)}else i&&g&&P.allowVerticalPlacement&&Wr(P);var G=e.translatePosMatrix(C.posMatrix,L,o,s),Y=_||i&&A?Hr:U,W=e.translatePosMatrix(q,L,o,s,!0),X=z&&0!==n.paint.get(i?\"text-halo-width\":\"icon-halo-width\").constantOr(1),Z={program:d,buffers:O,uniformValues:z?Fr(D.kind,g,w,b,e,G,Y,W,i,R,!0):Rr(D.kind,g,w,b,e,G,Y,W,i,R),atlasTexture:F,atlasInterpolation:B,isSDF:z,hasHalo:X};if(k)for(var J=0,K=O.segments.get();J<K.length;J+=1){var Q=K[J];M.push({segments:new t.SegmentVector([Q]),sortKey:Q.sortKey,state:Z})}else M.push({segments:O.segments,sortKey:0,state:Z})}}}k&&M.sort(function(t,e){return t.sortKey-e.sortKey});for(var $=0,tt=M;$<tt.length;$+=1){var et=tt[$],rt=et.state;if(rt.atlasTexture.bind(rt.atlasInterpolation,m.CLAMP_TO_EDGE),rt.isSDF){var nt=rt.uniformValues;rt.hasHalo&&(nt.u_is_halo=1,Zr(rt.buffers,et.segments,n,e,rt.program,T,h,f,nt)),nt.u_is_halo=0}Zr(rt.buffers,et.segments,n,e,rt.program,T,h,f,rt.uniformValues)}}function Zr(t,e,r,n,a,i,o,s,l){var c=n.context,u=c.gl;a.draw(c,u.TRIANGLES,i,o,s,Et.disabled,l,r.id,t.layoutVertexBuffer,t.indexBuffer,e,r.paint,n.transform.zoom,t.programConfigurations.get(r.id),t.dynamicLayoutVertexBuffer,t.opacityVertexBuffer)}function Jr(t,e,r,n,a,i,o){var s,l,c,u,h,f=t.context.gl,p=r.paint.get(\"fill-pattern\"),d=p&&p.constantOr(1),g=r.getCrossfadeParameters();o?(l=d&&!r.getPaintProperty(\"fill-outline-color\")?\"fillOutlinePattern\":\"fillOutline\",s=f.LINES):(l=d?\"fillPattern\":\"fill\",s=f.TRIANGLES);for(var v=0,m=n;v<m.length;v+=1){var y=m[v],x=e.getTile(y);if(!d||x.patternsLoaded()){var b=x.getBucket(r);if(b){var _=b.programConfigurations.get(r.id),w=t.useProgram(l,_);d&&(t.context.activeTexture.set(f.TEXTURE0),x.imageAtlasTexture.bind(f.LINEAR,f.CLAMP_TO_EDGE),_.updatePatternPaintBuffers(g));var k=p.constantOr(null);if(k&&x.imageAtlas){var T=x.imageAtlas.patternPositions[k.to],A=x.imageAtlas.patternPositions[k.from];T&&A&&_.setConstantPatternPositions(T,A)}var M=t.translatePosMatrix(y.posMatrix,x,r.paint.get(\"fill-translate\"),r.paint.get(\"fill-translate-anchor\"));if(o){u=b.indexBuffer2,h=b.segments2;var S=[f.drawingBufferWidth,f.drawingBufferHeight];c=\"fillOutlinePattern\"===l&&d?xr(M,t,g,x,S):yr(M,S)}else u=b.indexBuffer,h=b.segments,c=d?mr(M,t,g,x):vr(M);w.draw(t.context,s,a,t.stencilModeForClipping(y),i,Et.disabled,c,r.id,b.layoutVertexBuffer,u,h,r.paint,t.transform.zoom,_)}}}}function Kr(t,e,r,n,a,i,o){for(var s=t.context,l=s.gl,c=r.paint.get(\"fill-extrusion-pattern\"),u=c.constantOr(1),h=r.getCrossfadeParameters(),f=r.paint.get(\"fill-extrusion-opacity\"),p=0,d=n;p<d.length;p+=1){var g=d[p],v=e.getTile(g),m=v.getBucket(r);if(m){var y=m.programConfigurations.get(r.id),x=t.useProgram(u?\"fillExtrusionPattern\":\"fillExtrusion\",y);u&&(t.context.activeTexture.set(l.TEXTURE0),v.imageAtlasTexture.bind(l.LINEAR,l.CLAMP_TO_EDGE),y.updatePatternPaintBuffers(h));var b=c.constantOr(null);if(b&&v.imageAtlas){var _=v.imageAtlas.patternPositions[b.to],w=v.imageAtlas.patternPositions[b.from];_&&w&&y.setConstantPatternPositions(_,w)}var k=t.translatePosMatrix(g.posMatrix,v,r.paint.get(\"fill-extrusion-translate\"),r.paint.get(\"fill-extrusion-translate-anchor\")),T=r.paint.get(\"fill-extrusion-vertical-gradient\"),A=u?gr(k,t,T,f,g,h,v):dr(k,t,T,f);x.draw(s,s.gl.TRIANGLES,a,i,o,Et.backCCW,A,r.id,m.layoutVertexBuffer,m.indexBuffer,m.segments,r.paint,t.transform.zoom,y)}}}function Qr(t,e,r,n,a,i){var o=t.context,s=o.gl,l=e.fbo;if(l){var c=t.useProgram(\"hillshade\");o.activeTexture.set(s.TEXTURE0),s.bindTexture(s.TEXTURE_2D,l.colorAttachment.get());var u=Mr(t,e,r);e.maskedBoundsBuffer&&e.maskedIndexBuffer&&e.segments?c.draw(o,s.TRIANGLES,n,a,i,Et.disabled,u,r.id,e.maskedBoundsBuffer,e.maskedIndexBuffer,e.segments):c.draw(o,s.TRIANGLES,n,a,i,Et.disabled,u,r.id,t.rasterBoundsBuffer,t.quadTriangleIndexBuffer,t.rasterBoundsSegments)}}function $r(e,r,n,a,i,o,s){var l=e.context,c=l.gl;if(r.dem&&r.dem.data){var u=r.dem.dim,h=r.dem.stride,f=r.dem.getPixels();if(l.activeTexture.set(c.TEXTURE1),l.pixelStoreUnpackPremultiplyAlpha.set(!1),r.demTexture=r.demTexture||e.getTileTexture(h),r.demTexture){var p=r.demTexture;p.update(f,{premultiply:!1}),p.bind(c.NEAREST,c.CLAMP_TO_EDGE)}else r.demTexture=new t.Texture(l,f,c.RGBA,{premultiply:!1}),r.demTexture.bind(c.NEAREST,c.CLAMP_TO_EDGE);l.activeTexture.set(c.TEXTURE0);var d=r.fbo;if(!d){var g=new t.Texture(l,{width:u,height:u,data:null},c.RGBA);g.bind(c.LINEAR,c.CLAMP_TO_EDGE),(d=r.fbo=l.createFramebuffer(u,u)).colorAttachment.set(g.texture)}l.bindFramebuffer.set(d.framebuffer),l.viewport.set([0,0,u,u]),e.useProgram(\"hillshadePrepare\").draw(l,c.TRIANGLES,i,o,s,Et.disabled,Sr(r,a),n.id,e.rasterBoundsBuffer,e.quadTriangleIndexBuffer,e.rasterBoundsSegments),r.needsHillshadePrepare=!1}}function tn(e,r,n,a,i){var o=a.paint.get(\"raster-fade-duration\");if(o>0){var s=t.browser.now(),l=(s-e.timeAdded)/o,c=r?(s-r.timeAdded)/o:-1,u=n.getSource(),h=i.coveringZoomLevel({tileSize:u.tileSize,roundZoom:u.roundZoom}),f=!r||Math.abs(r.tileID.overscaledZ-h)>Math.abs(e.tileID.overscaledZ-h),p=f&&e.refreshedUponExpiration?1:t.clamp(f?l:1-c,0,1);return e.refreshedUponExpiration&&l>=1&&(e.refreshedUponExpiration=!1),r?{opacity:1,mix:1-p}:{opacity:p,mix:0}}return{opacity:1,mix:0}}function en(e,r,n){var a=e.context,i=a.gl,o=n.posMatrix,s=e.useProgram(\"debug\"),l=At.disabled,c=Mt.disabled,u=e.colorModeForRenderPass(),h=\"$debug\";s.draw(a,i.LINE_STRIP,l,c,u,Et.disabled,kr(o,t.Color.red),h,e.debugBuffer,e.tileBorderIndexBuffer,e.debugSegments);for(var f=r.getTileByID(n.key).latestRawTileData,p=f&&f.byteLength||0,d=Math.floor(p/1024),g=r.getTile(n).tileSize,v=512/Math.min(g,512),m=function(t,e,r,n){n=n||1;var a,i,o,s,l,c,u,h,f=[];for(a=0,i=t.length;a<i;a++)if(l=rn[t[a]]){for(h=null,o=0,s=l[1].length;o<s;o+=2)-1===l[1][o]&&-1===l[1][o+1]?h=null:(c=e+l[1][o]*n,u=r-l[1][o+1]*n,h&&f.push(h.x,h.y,c,u),h={x:c,y:u});e+=l[0]*n}return f}(n.toString()+\" \"+d+\"kb\",50,200*v,5*v),y=new t.StructArrayLayout2i4,x=new t.StructArrayLayout2ui4,b=0;b<m.length;b+=2)y.emplaceBack(m[b],m[b+1]),x.emplaceBack(b,b+1);for(var _=a.createVertexBuffer(y,Fe.members),w=a.createIndexBuffer(x),k=t.SegmentVector.simpleSegment(0,0,y.length/2,y.length/2),T=t.EXTENT/(Math.pow(2,e.transform.zoom-n.overscaledZ)*g*v),A=[],M=-1;M<=1;M++)for(var S=-1;S<=1&&(0!==M||0!==S);S++)A.push([M,S]);for(var E=0;E<A.length;E++){var C=A[E];s.draw(a,i.LINES,l,c,u,Et.disabled,kr(t.translate([],o,[T*C[0],T*C[1],0]),t.Color.white),h,_,w,k)}s.draw(a,i.LINES,l,c,u,Et.disabled,kr(o,t.Color.black),h,_,w,k)}var rn={\" \":[16,[]],\"!\":[10,[5,21,5,7,-1,-1,5,2,4,1,5,0,6,1,5,2]],'\"':[16,[4,21,4,14,-1,-1,12,21,12,14]],\"#\":[21,[11,25,4,-7,-1,-1,17,25,10,-7,-1,-1,4,12,18,12,-1,-1,3,6,17,6]],$:[20,[8,25,8,-4,-1,-1,12,25,12,-4,-1,-1,17,18,15,20,12,21,8,21,5,20,3,18,3,16,4,14,5,13,7,12,13,10,15,9,16,8,17,6,17,3,15,1,12,0,8,0,5,1,3,3]],\"%\":[24,[21,21,3,0,-1,-1,8,21,10,19,10,17,9,15,7,14,5,14,3,16,3,18,4,20,6,21,8,21,10,20,13,19,16,19,19,20,21,21,-1,-1,17,7,15,6,14,4,14,2,16,0,18,0,20,1,21,3,21,5,19,7,17,7]],\"&\":[26,[23,12,23,13,22,14,21,14,20,13,19,11,17,6,15,3,13,1,11,0,7,0,5,1,4,2,3,4,3,6,4,8,5,9,12,13,13,14,14,16,14,18,13,20,11,21,9,20,8,18,8,16,9,13,11,10,16,3,18,1,20,0,22,0,23,1,23,2]],\"'\":[10,[5,19,4,20,5,21,6,20,6,18,5,16,4,15]],\"(\":[14,[11,25,9,23,7,20,5,16,4,11,4,7,5,2,7,-2,9,-5,11,-7]],\")\":[14,[3,25,5,23,7,20,9,16,10,11,10,7,9,2,7,-2,5,-5,3,-7]],\"*\":[16,[8,21,8,9,-1,-1,3,18,13,12,-1,-1,13,18,3,12]],\"+\":[26,[13,18,13,0,-1,-1,4,9,22,9]],\",\":[10,[6,1,5,0,4,1,5,2,6,1,6,-1,5,-3,4,-4]],\"-\":[26,[4,9,22,9]],\".\":[10,[5,2,4,1,5,0,6,1,5,2]],\"/\":[22,[20,25,2,-7]],0:[20,[9,21,6,20,4,17,3,12,3,9,4,4,6,1,9,0,11,0,14,1,16,4,17,9,17,12,16,17,14,20,11,21,9,21]],1:[20,[6,17,8,18,11,21,11,0]],2:[20,[4,16,4,17,5,19,6,20,8,21,12,21,14,20,15,19,16,17,16,15,15,13,13,10,3,0,17,0]],3:[20,[5,21,16,21,10,13,13,13,15,12,16,11,17,8,17,6,16,3,14,1,11,0,8,0,5,1,4,2,3,4]],4:[20,[13,21,3,7,18,7,-1,-1,13,21,13,0]],5:[20,[15,21,5,21,4,12,5,13,8,14,11,14,14,13,16,11,17,8,17,6,16,3,14,1,11,0,8,0,5,1,4,2,3,4]],6:[20,[16,18,15,20,12,21,10,21,7,20,5,17,4,12,4,7,5,3,7,1,10,0,11,0,14,1,16,3,17,6,17,7,16,10,14,12,11,13,10,13,7,12,5,10,4,7]],7:[20,[17,21,7,0,-1,-1,3,21,17,21]],8:[20,[8,21,5,20,4,18,4,16,5,14,7,13,11,12,14,11,16,9,17,7,17,4,16,2,15,1,12,0,8,0,5,1,4,2,3,4,3,7,4,9,6,11,9,12,13,13,15,14,16,16,16,18,15,20,12,21,8,21]],9:[20,[16,14,15,11,13,9,10,8,9,8,6,9,4,11,3,14,3,15,4,18,6,20,9,21,10,21,13,20,15,18,16,14,16,9,15,4,13,1,10,0,8,0,5,1,4,3]],\":\":[10,[5,14,4,13,5,12,6,13,5,14,-1,-1,5,2,4,1,5,0,6,1,5,2]],\";\":[10,[5,14,4,13,5,12,6,13,5,14,-1,-1,6,1,5,0,4,1,5,2,6,1,6,-1,5,-3,4,-4]],\"<\":[24,[20,18,4,9,20,0]],\"=\":[26,[4,12,22,12,-1,-1,4,6,22,6]],\">\":[24,[4,18,20,9,4,0]],\"?\":[18,[3,16,3,17,4,19,5,20,7,21,11,21,13,20,14,19,15,17,15,15,14,13,13,12,9,10,9,7,-1,-1,9,2,8,1,9,0,10,1,9,2]],\"@\":[27,[18,13,17,15,15,16,12,16,10,15,9,14,8,11,8,8,9,6,11,5,14,5,16,6,17,8,-1,-1,12,16,10,14,9,11,9,8,10,6,11,5,-1,-1,18,16,17,8,17,6,19,5,21,5,23,7,24,10,24,12,23,15,22,17,20,19,18,20,15,21,12,21,9,20,7,19,5,17,4,15,3,12,3,9,4,6,5,4,7,2,9,1,12,0,15,0,18,1,20,2,21,3,-1,-1,19,16,18,8,18,6,19,5]],A:[18,[9,21,1,0,-1,-1,9,21,17,0,-1,-1,4,7,14,7]],B:[21,[4,21,4,0,-1,-1,4,21,13,21,16,20,17,19,18,17,18,15,17,13,16,12,13,11,-1,-1,4,11,13,11,16,10,17,9,18,7,18,4,17,2,16,1,13,0,4,0]],C:[21,[18,16,17,18,15,20,13,21,9,21,7,20,5,18,4,16,3,13,3,8,4,5,5,3,7,1,9,0,13,0,15,1,17,3,18,5]],D:[21,[4,21,4,0,-1,-1,4,21,11,21,14,20,16,18,17,16,18,13,18,8,17,5,16,3,14,1,11,0,4,0]],E:[19,[4,21,4,0,-1,-1,4,21,17,21,-1,-1,4,11,12,11,-1,-1,4,0,17,0]],F:[18,[4,21,4,0,-1,-1,4,21,17,21,-1,-1,4,11,12,11]],G:[21,[18,16,17,18,15,20,13,21,9,21,7,20,5,18,4,16,3,13,3,8,4,5,5,3,7,1,9,0,13,0,15,1,17,3,18,5,18,8,-1,-1,13,8,18,8]],H:[22,[4,21,4,0,-1,-1,18,21,18,0,-1,-1,4,11,18,11]],I:[8,[4,21,4,0]],J:[16,[12,21,12,5,11,2,10,1,8,0,6,0,4,1,3,2,2,5,2,7]],K:[21,[4,21,4,0,-1,-1,18,21,4,7,-1,-1,9,12,18,0]],L:[17,[4,21,4,0,-1,-1,4,0,16,0]],M:[24,[4,21,4,0,-1,-1,4,21,12,0,-1,-1,20,21,12,0,-1,-1,20,21,20,0]],N:[22,[4,21,4,0,-1,-1,4,21,18,0,-1,-1,18,21,18,0]],O:[22,[9,21,7,20,5,18,4,16,3,13,3,8,4,5,5,3,7,1,9,0,13,0,15,1,17,3,18,5,19,8,19,13,18,16,17,18,15,20,13,21,9,21]],P:[21,[4,21,4,0,-1,-1,4,21,13,21,16,20,17,19,18,17,18,14,17,12,16,11,13,10,4,10]],Q:[22,[9,21,7,20,5,18,4,16,3,13,3,8,4,5,5,3,7,1,9,0,13,0,15,1,17,3,18,5,19,8,19,13,18,16,17,18,15,20,13,21,9,21,-1,-1,12,4,18,-2]],R:[21,[4,21,4,0,-1,-1,4,21,13,21,16,20,17,19,18,17,18,15,17,13,16,12,13,11,4,11,-1,-1,11,11,18,0]],S:[20,[17,18,15,20,12,21,8,21,5,20,3,18,3,16,4,14,5,13,7,12,13,10,15,9,16,8,17,6,17,3,15,1,12,0,8,0,5,1,3,3]],T:[16,[8,21,8,0,-1,-1,1,21,15,21]],U:[22,[4,21,4,6,5,3,7,1,10,0,12,0,15,1,17,3,18,6,18,21]],V:[18,[1,21,9,0,-1,-1,17,21,9,0]],W:[24,[2,21,7,0,-1,-1,12,21,7,0,-1,-1,12,21,17,0,-1,-1,22,21,17,0]],X:[20,[3,21,17,0,-1,-1,17,21,3,0]],Y:[18,[1,21,9,11,9,0,-1,-1,17,21,9,11]],Z:[20,[17,21,3,0,-1,-1,3,21,17,21,-1,-1,3,0,17,0]],\"[\":[14,[4,25,4,-7,-1,-1,5,25,5,-7,-1,-1,4,25,11,25,-1,-1,4,-7,11,-7]],\"\\\\\":[14,[0,21,14,-3]],\"]\":[14,[9,25,9,-7,-1,-1,10,25,10,-7,-1,-1,3,25,10,25,-1,-1,3,-7,10,-7]],\"^\":[16,[6,15,8,18,10,15,-1,-1,3,12,8,17,13,12,-1,-1,8,17,8,0]],_:[16,[0,-2,16,-2]],\"`\":[10,[6,21,5,20,4,18,4,16,5,15,6,16,5,17]],a:[19,[15,14,15,0,-1,-1,15,11,13,13,11,14,8,14,6,13,4,11,3,8,3,6,4,3,6,1,8,0,11,0,13,1,15,3]],b:[19,[4,21,4,0,-1,-1,4,11,6,13,8,14,11,14,13,13,15,11,16,8,16,6,15,3,13,1,11,0,8,0,6,1,4,3]],c:[18,[15,11,13,13,11,14,8,14,6,13,4,11,3,8,3,6,4,3,6,1,8,0,11,0,13,1,15,3]],d:[19,[15,21,15,0,-1,-1,15,11,13,13,11,14,8,14,6,13,4,11,3,8,3,6,4,3,6,1,8,0,11,0,13,1,15,3]],e:[18,[3,8,15,8,15,10,14,12,13,13,11,14,8,14,6,13,4,11,3,8,3,6,4,3,6,1,8,0,11,0,13,1,15,3]],f:[12,[10,21,8,21,6,20,5,17,5,0,-1,-1,2,14,9,14]],g:[19,[15,14,15,-2,14,-5,13,-6,11,-7,8,-7,6,-6,-1,-1,15,11,13,13,11,14,8,14,6,13,4,11,3,8,3,6,4,3,6,1,8,0,11,0,13,1,15,3]],h:[19,[4,21,4,0,-1,-1,4,10,7,13,9,14,12,14,14,13,15,10,15,0]],i:[8,[3,21,4,20,5,21,4,22,3,21,-1,-1,4,14,4,0]],j:[10,[5,21,6,20,7,21,6,22,5,21,-1,-1,6,14,6,-3,5,-6,3,-7,1,-7]],k:[17,[4,21,4,0,-1,-1,14,14,4,4,-1,-1,8,8,15,0]],l:[8,[4,21,4,0]],m:[30,[4,14,4,0,-1,-1,4,10,7,13,9,14,12,14,14,13,15,10,15,0,-1,-1,15,10,18,13,20,14,23,14,25,13,26,10,26,0]],n:[19,[4,14,4,0,-1,-1,4,10,7,13,9,14,12,14,14,13,15,10,15,0]],o:[19,[8,14,6,13,4,11,3,8,3,6,4,3,6,1,8,0,11,0,13,1,15,3,16,6,16,8,15,11,13,13,11,14,8,14]],p:[19,[4,14,4,-7,-1,-1,4,11,6,13,8,14,11,14,13,13,15,11,16,8,16,6,15,3,13,1,11,0,8,0,6,1,4,3]],q:[19,[15,14,15,-7,-1,-1,15,11,13,13,11,14,8,14,6,13,4,11,3,8,3,6,4,3,6,1,8,0,11,0,13,1,15,3]],r:[13,[4,14,4,0,-1,-1,4,8,5,11,7,13,9,14,12,14]],s:[17,[14,11,13,13,10,14,7,14,4,13,3,11,4,9,6,8,11,7,13,6,14,4,14,3,13,1,10,0,7,0,4,1,3,3]],t:[12,[5,21,5,4,6,1,8,0,10,0,-1,-1,2,14,9,14]],u:[19,[4,14,4,4,5,1,7,0,10,0,12,1,15,4,-1,-1,15,14,15,0]],v:[16,[2,14,8,0,-1,-1,14,14,8,0]],w:[22,[3,14,7,0,-1,-1,11,14,7,0,-1,-1,11,14,15,0,-1,-1,19,14,15,0]],x:[17,[3,14,14,0,-1,-1,14,14,3,0]],y:[16,[2,14,8,0,-1,-1,14,14,8,0,6,-4,4,-6,2,-7,1,-7]],z:[17,[14,14,3,0,-1,-1,3,14,14,14,-1,-1,3,0,14,0]],\"{\":[14,[9,25,7,24,6,23,5,21,5,19,6,17,7,16,8,14,8,12,6,10,-1,-1,7,24,6,22,6,20,7,18,8,17,9,15,9,13,8,11,4,9,8,7,9,5,9,3,8,1,7,0,6,-2,6,-4,7,-6,-1,-1,6,8,8,6,8,4,7,2,6,1,5,-1,5,-3,6,-5,7,-6,9,-7]],\"|\":[8,[4,25,4,-7]],\"}\":[14,[5,25,7,24,8,23,9,21,9,19,8,17,7,16,6,14,6,12,8,10,-1,-1,7,24,8,22,8,20,7,18,6,17,5,15,5,13,6,11,10,9,6,7,5,5,5,3,6,1,7,0,8,-2,8,-4,7,-6,-1,-1,8,8,6,6,6,4,7,2,8,1,9,-1,9,-3,8,-5,7,-6,5,-7]],\"~\":[24,[3,6,3,8,4,11,6,12,8,12,10,11,14,8,16,7,18,7,20,8,21,10,-1,-1,3,8,4,10,6,11,8,11,10,10,14,7,16,6,18,6,20,7,21,10,21,12]]},nn={symbol:function(t,e,r,n,a){if(\"translucent\"===t.renderPass){var i=Mt.disabled,o=t.colorModeForRenderPass();0!==r.paint.get(\"icon-opacity\").constantOr(1)&&Xr(t,e,r,n,!1,r.paint.get(\"icon-translate\"),r.paint.get(\"icon-translate-anchor\"),r.layout.get(\"icon-rotation-alignment\"),r.layout.get(\"icon-pitch-alignment\"),r.layout.get(\"icon-keep-upright\"),i,o,a),0!==r.paint.get(\"text-opacity\").constantOr(1)&&Xr(t,e,r,n,!0,r.paint.get(\"text-translate\"),r.paint.get(\"text-translate-anchor\"),r.layout.get(\"text-rotation-alignment\"),r.layout.get(\"text-pitch-alignment\"),r.layout.get(\"text-keep-upright\"),i,o,a),e.map.showCollisionBoxes&&function(t,e,r,n){qr(t,e,r,n,!1),qr(t,e,r,n,!0)}(t,e,r,n)}},circle:function(e,r,n,a){if(\"translucent\"===e.renderPass){var i=n.paint.get(\"circle-opacity\"),o=n.paint.get(\"circle-stroke-width\"),s=n.paint.get(\"circle-stroke-opacity\"),l=void 0!==n.layout.get(\"circle-sort-key\").constantOr(1);if(0!==i.constantOr(1)||0!==o.constantOr(1)&&0!==s.constantOr(1)){for(var c=e.context,u=c.gl,h=e.depthModeForSublayer(0,At.ReadOnly),f=Mt.disabled,p=e.colorModeForRenderPass(),d=[],g=0;g<a.length;g++){var v=a[g],m=r.getTile(v),y=m.getBucket(n);if(y){var x=y.programConfigurations.get(n.id),b={programConfiguration:x,program:e.useProgram(\"circle\",x),layoutVertexBuffer:y.layoutVertexBuffer,indexBuffer:y.indexBuffer,uniformValues:br(e,v,m,n)};if(l)for(var _=0,w=y.segments.get();_<w.length;_+=1){var k=w[_];d.push({segments:new t.SegmentVector([k]),sortKey:k.sortKey,state:b})}else d.push({segments:y.segments,sortKey:0,state:b})}}l&&d.sort(function(t,e){return t.sortKey-e.sortKey});for(var T=0,A=d;T<A.length;T+=1){var M=A[T],S=M.state,E=S.programConfiguration,C=S.program,L=S.layoutVertexBuffer,P=S.indexBuffer,O=S.uniformValues,I=M.segments;C.draw(c,u.TRIANGLES,h,f,p,Et.disabled,O,n.id,L,P,I,n.paint,e.transform.zoom,E)}}}},heatmap:function(e,r,n,a){if(0!==n.paint.get(\"heatmap-opacity\"))if(\"offscreen\"===e.renderPass){var i=e.context,o=i.gl,s=e.depthModeForSublayer(0,At.ReadOnly),l=Mt.disabled,c=new St([o.ONE,o.ONE],t.Color.transparent,[!0,!0,!0,!0]);!function(t,e,r){var n=t.gl;t.activeTexture.set(n.TEXTURE1),t.viewport.set([0,0,e.width/4,e.height/4]);var a=r.heatmapFbo;if(a)n.bindTexture(n.TEXTURE_2D,a.colorAttachment.get()),t.bindFramebuffer.set(a.framebuffer);else{var i=n.createTexture();n.bindTexture(n.TEXTURE_2D,i),n.texParameteri(n.TEXTURE_2D,n.TEXTURE_WRAP_S,n.CLAMP_TO_EDGE),n.texParameteri(n.TEXTURE_2D,n.TEXTURE_WRAP_T,n.CLAMP_TO_EDGE),n.texParameteri(n.TEXTURE_2D,n.TEXTURE_MIN_FILTER,n.LINEAR),n.texParameteri(n.TEXTURE_2D,n.TEXTURE_MAG_FILTER,n.LINEAR),a=r.heatmapFbo=t.createFramebuffer(e.width/4,e.height/4),function t(e,r,n,a){var i=e.gl;i.texImage2D(i.TEXTURE_2D,0,i.RGBA,r.width/4,r.height/4,0,i.RGBA,e.extTextureHalfFloat?e.extTextureHalfFloat.HALF_FLOAT_OES:i.UNSIGNED_BYTE,null),a.colorAttachment.set(n),e.extTextureHalfFloat&&i.checkFramebufferStatus(i.FRAMEBUFFER)!==i.FRAMEBUFFER_COMPLETE&&(e.extTextureHalfFloat=null,a.colorAttachment.setDirty(),t(e,r,n,a))}(t,e,i,a)}}(i,e,n),i.clear({color:t.Color.transparent});for(var u=0;u<a.length;u++){var h=a[u];if(!r.hasRenderableParent(h)){var f=r.getTile(h),p=f.getBucket(n);if(p){var d=p.programConfigurations.get(n.id),g=e.useProgram(\"heatmap\",d),v=e.transform.zoom;g.draw(i,o.TRIANGLES,s,l,c,Et.disabled,Ar(h.posMatrix,f,v,n.paint.get(\"heatmap-intensity\")),n.id,p.layoutVertexBuffer,p.indexBuffer,p.segments,n.paint,e.transform.zoom,d)}}}i.viewport.set([0,0,e.width,e.height])}else\"translucent\"===e.renderPass&&(e.context.setColorMode(e.colorModeForRenderPass()),function(e,r){var n=e.context,a=n.gl,i=r.heatmapFbo;if(i){n.activeTexture.set(a.TEXTURE0),a.bindTexture(a.TEXTURE_2D,i.colorAttachment.get()),n.activeTexture.set(a.TEXTURE1);var o=r.colorRampTexture;o||(o=r.colorRampTexture=new t.Texture(n,r.colorRamp,a.RGBA)),o.bind(a.LINEAR,a.CLAMP_TO_EDGE),e.useProgram(\"heatmapTexture\").draw(n,a.TRIANGLES,At.disabled,Mt.disabled,e.colorModeForRenderPass(),Et.disabled,function(e,r,n,a){var i=t.create();t.ortho(i,0,e.width,e.height,0,0,1);var o=e.context.gl;return{u_matrix:i,u_world:[o.drawingBufferWidth,o.drawingBufferHeight],u_image:n,u_color_ramp:a,u_opacity:r.paint.get(\"heatmap-opacity\")}}(e,r,0,1),r.id,e.viewportBuffer,e.quadTriangleIndexBuffer,e.viewportSegments,r.paint,e.transform.zoom)}}(e,n))},line:function(e,r,n,a){if(\"translucent\"===e.renderPass){var i=n.paint.get(\"line-opacity\"),o=n.paint.get(\"line-width\");if(0!==i.constantOr(1)&&0!==o.constantOr(1)){var s=e.depthModeForSublayer(0,At.ReadOnly),l=e.colorModeForRenderPass(),c=n.paint.get(\"line-dasharray\"),u=n.paint.get(\"line-pattern\"),h=u.constantOr(1),f=n.paint.get(\"line-gradient\"),p=n.getCrossfadeParameters(),d=c?\"lineSDF\":h?\"linePattern\":f?\"lineGradient\":\"line\",g=e.context,v=g.gl,m=!0;if(f){g.activeTexture.set(v.TEXTURE0);var y=n.gradientTexture;if(!n.gradient)return;y||(y=n.gradientTexture=new t.Texture(g,n.gradient,v.RGBA)),y.bind(v.LINEAR,v.CLAMP_TO_EDGE)}for(var x=0,b=a;x<b.length;x+=1){var _=b[x],w=r.getTile(_);if(!h||w.patternsLoaded()){var k=w.getBucket(n);if(k){var T=k.programConfigurations.get(n.id),A=e.context.program.get(),M=e.useProgram(d,T),S=m||M.program!==A,E=u.constantOr(null);if(E&&w.imageAtlas){var C=w.imageAtlas.patternPositions[E.to],L=w.imageAtlas.patternPositions[E.from];C&&L&&T.setConstantPatternPositions(C,L)}var P=c?Or(e,w,n,c,p):h?Pr(e,w,n,p):f?Lr(e,w,n):Cr(e,w,n);c&&(S||e.lineAtlas.dirty)?(g.activeTexture.set(v.TEXTURE0),e.lineAtlas.bind(g)):h&&(g.activeTexture.set(v.TEXTURE0),w.imageAtlasTexture.bind(v.LINEAR,v.CLAMP_TO_EDGE),T.updatePatternPaintBuffers(p)),M.draw(g,v.TRIANGLES,s,e.stencilModeForClipping(_),l,Et.disabled,P,n.id,k.layoutVertexBuffer,k.indexBuffer,k.segments,n.paint,e.transform.zoom,T),m=!1}}}}}},fill:function(e,r,n,a){var i=n.paint.get(\"fill-color\"),o=n.paint.get(\"fill-opacity\");if(0!==o.constantOr(1)){var s=e.colorModeForRenderPass(),l=n.paint.get(\"fill-pattern\"),c=e.opaquePassEnabledForLayer()&&!l.constantOr(1)&&1===i.constantOr(t.Color.transparent).a&&1===o.constantOr(0)?\"opaque\":\"translucent\";if(e.renderPass===c){var u=e.depthModeForSublayer(1,\"opaque\"===e.renderPass?At.ReadWrite:At.ReadOnly);Jr(e,r,n,a,u,s,!1)}if(\"translucent\"===e.renderPass&&n.paint.get(\"fill-antialias\")){var h=e.depthModeForSublayer(n.getPaintProperty(\"fill-outline-color\")?2:0,At.ReadOnly);Jr(e,r,n,a,h,s,!0)}}},\"fill-extrusion\":function(t,e,r,n){var a=r.paint.get(\"fill-extrusion-opacity\");if(0!==a&&\"translucent\"===t.renderPass){var i=new At(t.context.gl.LEQUAL,At.ReadWrite,t.depthRangeFor3D);if(1!==a||r.paint.get(\"fill-extrusion-pattern\").constantOr(1))Kr(t,e,r,n,i,Mt.disabled,St.disabled),Kr(t,e,r,n,i,t.stencilModeFor3D(),t.colorModeForRenderPass());else{var o=t.colorModeForRenderPass();Kr(t,e,r,n,i,Mt.disabled,o)}}},hillshade:function(t,e,r,n){if(\"offscreen\"===t.renderPass||\"translucent\"===t.renderPass){for(var a=t.context,i=e.getSource().maxzoom,o=t.depthModeForSublayer(0,At.ReadOnly),s=Mt.disabled,l=t.colorModeForRenderPass(),c=0,u=n;c<u.length;c+=1){var h=u[c],f=e.getTile(h);f.needsHillshadePrepare&&\"offscreen\"===t.renderPass?$r(t,f,r,i,o,s,l):\"translucent\"===t.renderPass&&Qr(t,f,r,o,s,l)}a.viewport.set([0,0,t.width,t.height])}},raster:function(t,e,r,n){if(\"translucent\"===t.renderPass&&0!==r.paint.get(\"raster-opacity\"))for(var a=t.context,i=a.gl,o=e.getSource(),s=t.useProgram(\"raster\"),l=Mt.disabled,c=t.colorModeForRenderPass(),u=n.length&&n[0].overscaledZ,h=!t.options.moving,f=0,p=n;f<p.length;f+=1){var d=p[f],g=t.depthModeForSublayer(d.overscaledZ-u,1===r.paint.get(\"raster-opacity\")?At.ReadWrite:At.ReadOnly,i.LESS),v=e.getTile(d),m=t.transform.calculatePosMatrix(d.toUnwrapped(),h);v.registerFadeDuration(r.paint.get(\"raster-fade-duration\"));var y=e.findLoadedParent(d,0),x=tn(v,y,e,r,t.transform),b=void 0,_=void 0,w=\"nearest\"===r.paint.get(\"raster-resampling\")?i.NEAREST:i.LINEAR;a.activeTexture.set(i.TEXTURE0),v.texture.bind(w,i.CLAMP_TO_EDGE,i.LINEAR_MIPMAP_NEAREST),a.activeTexture.set(i.TEXTURE1),y?(y.texture.bind(w,i.CLAMP_TO_EDGE,i.LINEAR_MIPMAP_NEAREST),b=Math.pow(2,y.tileID.overscaledZ-v.tileID.overscaledZ),_=[v.tileID.canonical.x*b%1,v.tileID.canonical.y*b%1]):v.texture.bind(w,i.CLAMP_TO_EDGE,i.LINEAR_MIPMAP_NEAREST);var k=Dr(m,_||[0,0],b||1,x,r);o instanceof P?s.draw(a,i.TRIANGLES,g,l,c,Et.disabled,k,r.id,o.boundsBuffer,t.quadTriangleIndexBuffer,o.boundsSegments):v.maskedBoundsBuffer&&v.maskedIndexBuffer&&v.segments?s.draw(a,i.TRIANGLES,g,l,c,Et.disabled,k,r.id,v.maskedBoundsBuffer,v.maskedIndexBuffer,v.segments,r.paint,t.transform.zoom):s.draw(a,i.TRIANGLES,g,l,c,Et.disabled,k,r.id,t.rasterBoundsBuffer,t.quadTriangleIndexBuffer,t.rasterBoundsSegments)}},background:function(t,e,r){var n=r.paint.get(\"background-color\"),a=r.paint.get(\"background-opacity\");if(0!==a){var i=t.context,o=i.gl,s=t.transform,l=s.tileSize,c=r.paint.get(\"background-pattern\");if(!t.isPatternMissing(c)){var u=!c&&1===n.a&&1===a&&t.opaquePassEnabledForLayer()?\"opaque\":\"translucent\";if(t.renderPass===u){var h=Mt.disabled,f=t.depthModeForSublayer(0,\"opaque\"===u?At.ReadWrite:At.ReadOnly),p=t.colorModeForRenderPass(),d=t.useProgram(c?\"backgroundPattern\":\"background\"),g=s.coveringTiles({tileSize:l});c&&(i.activeTexture.set(o.TEXTURE0),t.imageManager.bind(t.context));for(var v=r.getCrossfadeParameters(),m=0,y=g;m<y.length;m+=1){var x=y[m],b=t.transform.calculatePosMatrix(x.toUnwrapped()),_=c?Nr(b,a,t,c,{tileID:x,tileSize:l},v):Br(b,a,n);d.draw(i,o.TRIANGLES,f,h,p,Et.disabled,_,r.id,t.tileExtentBuffer,t.quadTriangleIndexBuffer,t.tileExtentSegments)}}}}},debug:function(t,e,r){for(var n=0;n<r.length;n++)en(t,e,r[n])},custom:function(t,e,r){var n=t.context,a=r.implementation;if(\"offscreen\"===t.renderPass){var i=a.prerender;i&&(t.setCustomLayerDefaults(),n.setColorMode(t.colorModeForRenderPass()),i.call(a,n.gl,t.transform.customLayerMatrix()),n.setDirty(),t.setBaseState())}else if(\"translucent\"===t.renderPass){t.setCustomLayerDefaults(),n.setColorMode(t.colorModeForRenderPass()),n.setStencilMode(Mt.disabled);var o=\"3d\"===a.renderingMode?new At(t.context.gl.LEQUAL,At.ReadWrite,t.depthRangeFor3D):t.depthModeForSublayer(0,At.ReadOnly);n.setDepthMode(o),a.render(n.gl,t.transform.customLayerMatrix()),n.setDirty(),t.setBaseState(),n.bindFramebuffer.set(null)}}},an=function(e,r){this.context=new Ct(e),this.transform=r,this._tileTextures={},this.setup(),this.numSublayers=Lt.maxUnderzooming+Lt.maxOverzooming+1,this.depthEpsilon=1/Math.pow(2,16),this.depthRboNeedsClear=!0,this.emptyProgramConfiguration=new t.ProgramConfiguration,this.crossTileSymbolIndex=new Oe};function on(t,e){if(t.y>e.y){var r=t;t=e,e=r}return{x0:t.x,y0:t.y,x1:e.x,y1:e.y,dx:e.x-t.x,dy:e.y-t.y}}function sn(t,e,r,n,a){var i=Math.max(r,Math.floor(e.y0)),o=Math.min(n,Math.ceil(e.y1));if(t.x0===e.x0&&t.y0===e.y0?t.x0+e.dy/t.dy*t.dx<e.x1:t.x1-e.dy/t.dy*t.dx<e.x0){var s=t;t=e,e=s}for(var l=t.dx/t.dy,c=e.dx/e.dy,u=t.dx>0,h=e.dx<0,f=i;f<o;f++){var p=l*Math.max(0,Math.min(t.dy,f+u-t.y0))+t.x0,d=c*Math.max(0,Math.min(e.dy,f+h-e.y0))+e.x0;a(Math.floor(d),Math.ceil(p),f)}}function ln(t,e,r,n,a,i){var o,s=on(t,e),l=on(e,r),c=on(r,t);s.dy>l.dy&&(o=s,s=l,l=o),s.dy>c.dy&&(o=s,s=c,c=o),l.dy>c.dy&&(o=l,l=c,c=o),s.dy&&sn(c,s,n,a,i),l.dy&&sn(c,l,n,a,i)}an.prototype.resize=function(e,r){var n=this.context.gl;if(this.width=e*t.browser.devicePixelRatio,this.height=r*t.browser.devicePixelRatio,this.context.viewport.set([0,0,this.width,this.height]),this.style)for(var a=0,i=this.style._order;a<i.length;a+=1){var o=i[a];this.style._layers[o].resize()}this.depthRbo&&(n.deleteRenderbuffer(this.depthRbo),this.depthRbo=null)},an.prototype.setup=function(){var e=this.context,r=new t.StructArrayLayout2i4;r.emplaceBack(0,0),r.emplaceBack(t.EXTENT,0),r.emplaceBack(0,t.EXTENT),r.emplaceBack(t.EXTENT,t.EXTENT),this.tileExtentBuffer=e.createVertexBuffer(r,Fe.members),this.tileExtentSegments=t.SegmentVector.simpleSegment(0,0,4,2);var n=new t.StructArrayLayout2i4;n.emplaceBack(0,0),n.emplaceBack(t.EXTENT,0),n.emplaceBack(0,t.EXTENT),n.emplaceBack(t.EXTENT,t.EXTENT),this.debugBuffer=e.createVertexBuffer(n,Fe.members),this.debugSegments=t.SegmentVector.simpleSegment(0,0,4,5);var a=new t.StructArrayLayout4i8;a.emplaceBack(0,0,0,0),a.emplaceBack(t.EXTENT,0,t.EXTENT,0),a.emplaceBack(0,t.EXTENT,0,t.EXTENT),a.emplaceBack(t.EXTENT,t.EXTENT,t.EXTENT,t.EXTENT),this.rasterBoundsBuffer=e.createVertexBuffer(a,t.rasterBoundsAttributes.members),this.rasterBoundsSegments=t.SegmentVector.simpleSegment(0,0,4,2);var i=new t.StructArrayLayout2i4;i.emplaceBack(0,0),i.emplaceBack(1,0),i.emplaceBack(0,1),i.emplaceBack(1,1),this.viewportBuffer=e.createVertexBuffer(i,Fe.members),this.viewportSegments=t.SegmentVector.simpleSegment(0,0,4,2);var o=new t.StructArrayLayout1ui2;o.emplaceBack(0),o.emplaceBack(1),o.emplaceBack(3),o.emplaceBack(2),o.emplaceBack(0),this.tileBorderIndexBuffer=e.createIndexBuffer(o);var s=new t.StructArrayLayout3ui6;s.emplaceBack(0,1,2),s.emplaceBack(2,1,3),this.quadTriangleIndexBuffer=e.createIndexBuffer(s);var l=this.context.gl;this.stencilClearMode=new Mt({func:l.ALWAYS,mask:0},0,255,l.ZERO,l.ZERO,l.ZERO)},an.prototype.clearStencil=function(){var e=this.context,r=e.gl;this.nextStencilID=1,this.currentStencilSource=void 0;var n=t.create();t.ortho(n,0,this.width,this.height,0,0,1),t.scale(n,n,[r.drawingBufferWidth,r.drawingBufferHeight,0]),this.useProgram(\"clippingMask\").draw(e,r.TRIANGLES,At.disabled,this.stencilClearMode,St.disabled,Et.disabled,Tr(n),\"$clipping\",this.viewportBuffer,this.quadTriangleIndexBuffer,this.viewportSegments)},an.prototype._renderTileClippingMasks=function(t,e){if(this.currentStencilSource!==t.source&&t.isTileClipped()&&e&&e.length){this.currentStencilSource=t.source;var r=this.context,n=r.gl;this.nextStencilID+e.length>256&&this.clearStencil(),r.setColorMode(St.disabled),r.setDepthMode(At.disabled);var a=this.useProgram(\"clippingMask\");this._tileClippingMaskIDs={};for(var i=0,o=e;i<o.length;i+=1){var s=o[i],l=this._tileClippingMaskIDs[s.key]=this.nextStencilID++;a.draw(r,n.TRIANGLES,At.disabled,new Mt({func:n.ALWAYS,mask:0},l,255,n.KEEP,n.KEEP,n.REPLACE),St.disabled,Et.disabled,Tr(s.posMatrix),\"$clipping\",this.tileExtentBuffer,this.quadTriangleIndexBuffer,this.tileExtentSegments)}}},an.prototype.stencilModeFor3D=function(){this.currentStencilSource=void 0,this.nextStencilID+1>256&&this.clearStencil();var t=this.nextStencilID++,e=this.context.gl;return new Mt({func:e.NOTEQUAL,mask:255},t,255,e.KEEP,e.KEEP,e.REPLACE)},an.prototype.stencilModeForClipping=function(t){var e=this.context.gl;return new Mt({func:e.EQUAL,mask:255},this._tileClippingMaskIDs[t.key],0,e.KEEP,e.KEEP,e.REPLACE)},an.prototype.colorModeForRenderPass=function(){var e=this.context.gl;return this._showOverdrawInspector?new St([e.CONSTANT_COLOR,e.ONE],new t.Color(1/8,1/8,1/8,0),[!0,!0,!0,!0]):\"opaque\"===this.renderPass?St.unblended:St.alphaBlended},an.prototype.depthModeForSublayer=function(t,e,r){if(!this.opaquePassEnabledForLayer())return At.disabled;var n=1-((1+this.currentLayer)*this.numSublayers+t)*this.depthEpsilon;return new At(r||this.context.gl.LEQUAL,e,[n,n])},an.prototype.opaquePassEnabledForLayer=function(){return this.currentLayer<this.opaquePassCutoff},an.prototype.render=function(e,r){this.style=e,this.options=r,this.lineAtlas=e.lineAtlas,this.imageManager=e.imageManager,this.glyphManager=e.glyphManager,this.symbolFadeChange=e.placement.symbolFadeChange(t.browser.now()),this.imageManager.beginFrame();var n=this.style._order,a=this.style.sourceCaches;for(var i in a){var o=a[i];o.used&&o.prepare(this.context)}var s={},l={},c={};for(var u in a){var h=a[u];s[u]=h.getVisibleCoordinates(),l[u]=s[u].slice().reverse(),c[u]=h.getVisibleCoordinates(!0).reverse()}for(var f in a){var p=a[f],d=p.getSource();if(\"raster\"===d.type||\"raster-dem\"===d.type){for(var g=[],v=0,m=s[f];v<m.length;v+=1){var y=m[v];g.push(p.getTile(y))}Vr(g,this.context)}}this.opaquePassCutoff=1/0;for(var x=0;x<n.length;x++){var b=n[x];if(this.style._layers[b].is3D()){this.opaquePassCutoff=x;break}}this.renderPass=\"offscreen\",this.depthRboNeedsClear=!0;for(var _=0,w=n;_<w.length;_+=1){var k=w[_],T=this.style._layers[k];if(T.hasOffscreenPass()&&!T.isHidden(this.transform.zoom)){var A=l[T.source];(\"custom\"===T.type||A.length)&&this.renderLayer(this,a[T.source],T,A)}}for(this.context.bindFramebuffer.set(null),this.context.clear({color:r.showOverdrawInspector?t.Color.black:t.Color.transparent,depth:1}),this.clearStencil(),this._showOverdrawInspector=r.showOverdrawInspector,this.depthRangeFor3D=[0,1-(e._order.length+2)*this.numSublayers*this.depthEpsilon],this.renderPass=\"opaque\",this.currentLayer=n.length-1;this.currentLayer>=0;this.currentLayer--){var M=this.style._layers[n[this.currentLayer]],S=a[M.source],E=s[M.source];this._renderTileClippingMasks(M,E),this.renderLayer(this,S,M,E)}for(this.renderPass=\"translucent\",this.currentLayer=0;this.currentLayer<n.length;this.currentLayer++){var C=this.style._layers[n[this.currentLayer]],L=a[C.source],P=(\"symbol\"===C.type?c:l)[C.source];this._renderTileClippingMasks(C,s[C.source]),this.renderLayer(this,L,C,P)}if(this.options.showTileBoundaries)for(var O in a){nn.debug(this,a[O],s[O]);break}this.context.setDefault()},an.prototype.setupOffscreenDepthRenderbuffer=function(){var t=this.context;this.depthRbo||(this.depthRbo=t.createRenderbuffer(t.gl.DEPTH_COMPONENT16,this.width,this.height))},an.prototype.renderLayer=function(t,e,r,n){r.isHidden(this.transform.zoom)||(\"background\"===r.type||\"custom\"===r.type||n.length)&&(this.id=r.id,nn[r.type](t,e,r,n,this.style.placement.variableOffsets))},an.prototype.translatePosMatrix=function(e,r,n,a,i){if(!n[0]&&!n[1])return e;var o=i?\"map\"===a?this.transform.angle:0:\"viewport\"===a?-this.transform.angle:0;if(o){var s=Math.sin(o),l=Math.cos(o);n=[n[0]*l-n[1]*s,n[0]*s+n[1]*l]}var c=[i?n[0]:ce(r,n[0],this.transform.zoom),i?n[1]:ce(r,n[1],this.transform.zoom),0],u=new Float32Array(16);return t.translate(u,e,c),u},an.prototype.saveTileTexture=function(t){var e=this._tileTextures[t.size[0]];e?e.push(t):this._tileTextures[t.size[0]]=[t]},an.prototype.getTileTexture=function(t){var e=this._tileTextures[t];return e&&e.length>0?e.pop():null},an.prototype.isPatternMissing=function(t){if(!t)return!1;var e=this.imageManager.getPattern(t.from),r=this.imageManager.getPattern(t.to);return!e||!r},an.prototype.useProgram=function(t,e){void 0===e&&(e=this.emptyProgramConfiguration),this.cache=this.cache||{};var r=\"\"+t+(e.cacheKey||\"\")+(this._showOverdrawInspector?\"/overdraw\":\"\");return this.cache[r]||(this.cache[r]=new fr(this.context,ur[t],e,jr[t],this._showOverdrawInspector)),this.cache[r]},an.prototype.setCustomLayerDefaults=function(){this.context.unbindVAO(),this.context.cullFace.setDefault(),this.context.activeTexture.setDefault(),this.context.pixelStoreUnpack.setDefault(),this.context.pixelStoreUnpackPremultiplyAlpha.setDefault(),this.context.pixelStoreUnpackFlipY.setDefault()},an.prototype.setBaseState=function(){var t=this.context.gl;this.context.cullFace.set(!1),this.context.viewport.set([0,0,this.width,this.height]),this.context.blendEquation.set(t.FUNC_ADD)};var cn=function(e,r,n){this.tileSize=512,this.maxValidLatitude=85.051129,this._renderWorldCopies=void 0===n||n,this._minZoom=e||0,this._maxZoom=r||22,this.setMaxBounds(),this.width=0,this.height=0,this._center=new t.LngLat(0,0),this.zoom=0,this.angle=0,this._fov=.6435011087932844,this._pitch=0,this._unmodified=!0,this._posMatrixCache={},this._alignedPosMatrixCache={}},un={minZoom:{configurable:!0},maxZoom:{configurable:!0},renderWorldCopies:{configurable:!0},worldSize:{configurable:!0},centerPoint:{configurable:!0},size:{configurable:!0},bearing:{configurable:!0},pitch:{configurable:!0},fov:{configurable:!0},zoom:{configurable:!0},center:{configurable:!0},unmodified:{configurable:!0},point:{configurable:!0}};cn.prototype.clone=function(){var t=new cn(this._minZoom,this._maxZoom,this._renderWorldCopies);return t.tileSize=this.tileSize,t.latRange=this.latRange,t.width=this.width,t.height=this.height,t._center=this._center,t.zoom=this.zoom,t.angle=this.angle,t._fov=this._fov,t._pitch=this._pitch,t._unmodified=this._unmodified,t._calcMatrices(),t},un.minZoom.get=function(){return this._minZoom},un.minZoom.set=function(t){this._minZoom!==t&&(this._minZoom=t,this.zoom=Math.max(this.zoom,t))},un.maxZoom.get=function(){return this._maxZoom},un.maxZoom.set=function(t){this._maxZoom!==t&&(this._maxZoom=t,this.zoom=Math.min(this.zoom,t))},un.renderWorldCopies.get=function(){return this._renderWorldCopies},un.renderWorldCopies.set=function(t){void 0===t?t=!0:null===t&&(t=!1),this._renderWorldCopies=t},un.worldSize.get=function(){return this.tileSize*this.scale},un.centerPoint.get=function(){return this.size._div(2)},un.size.get=function(){return new t.Point(this.width,this.height)},un.bearing.get=function(){return-this.angle/Math.PI*180},un.bearing.set=function(e){var r=-t.wrap(e,-180,180)*Math.PI/180;this.angle!==r&&(this._unmodified=!1,this.angle=r,this._calcMatrices(),this.rotationMatrix=t.create$2(),t.rotate(this.rotationMatrix,this.rotationMatrix,this.angle))},un.pitch.get=function(){return this._pitch/Math.PI*180},un.pitch.set=function(e){var r=t.clamp(e,0,60)/180*Math.PI;this._pitch!==r&&(this._unmodified=!1,this._pitch=r,this._calcMatrices())},un.fov.get=function(){return this._fov/Math.PI*180},un.fov.set=function(t){t=Math.max(.01,Math.min(60,t)),this._fov!==t&&(this._unmodified=!1,this._fov=t/180*Math.PI,this._calcMatrices())},un.zoom.get=function(){return this._zoom},un.zoom.set=function(t){var e=Math.min(Math.max(t,this.minZoom),this.maxZoom);this._zoom!==e&&(this._unmodified=!1,this._zoom=e,this.scale=this.zoomScale(e),this.tileZoom=Math.floor(e),this.zoomFraction=e-this.tileZoom,this._constrain(),this._calcMatrices())},un.center.get=function(){return this._center},un.center.set=function(t){t.lat===this._center.lat&&t.lng===this._center.lng||(this._unmodified=!1,this._center=t,this._constrain(),this._calcMatrices())},cn.prototype.coveringZoomLevel=function(t){return(t.roundZoom?Math.round:Math.floor)(this.zoom+this.scaleZoom(this.tileSize/t.tileSize))},cn.prototype.getVisibleUnwrappedCoordinates=function(e){var r=[new t.UnwrappedTileID(0,e)];if(this._renderWorldCopies)for(var n=this.pointCoordinate(new t.Point(0,0)),a=this.pointCoordinate(new t.Point(this.width,0)),i=this.pointCoordinate(new t.Point(this.width,this.height)),o=this.pointCoordinate(new t.Point(0,this.height)),s=Math.floor(Math.min(n.x,a.x,i.x,o.x)),l=Math.floor(Math.max(n.x,a.x,i.x,o.x)),c=s-1;c<=l+1;c++)0!==c&&r.push(new t.UnwrappedTileID(c,e));return r},cn.prototype.coveringTiles=function(e){var r=this.coveringZoomLevel(e),n=r;if(void 0!==e.minzoom&&r<e.minzoom)return[];void 0!==e.maxzoom&&r>e.maxzoom&&(r=e.maxzoom);var a=t.MercatorCoordinate.fromLngLat(this.center),i=Math.pow(2,r),o=new t.Point(i*a.x-.5,i*a.y-.5);return function(e,r,n,a){void 0===a&&(a=!0);var i=1<<e,o={};function s(r,s,l){var c,u,h,f;if(l>=0&&l<=i)for(c=r;c<s;c++)u=Math.floor(c/i),h=(c%i+i)%i,0!==u&&!0!==a||(f=new t.OverscaledTileID(n,u,e,h,l),o[f.key]=f)}var l=r.map(function(e){return new t.Point(e.x,e.y)._mult(i)});return ln(l[0],l[1],l[2],0,i,s),ln(l[2],l[3],l[0],0,i,s),Object.keys(o).map(function(t){return o[t]})}(r,[this.pointCoordinate(new t.Point(0,0)),this.pointCoordinate(new t.Point(this.width,0)),this.pointCoordinate(new t.Point(this.width,this.height)),this.pointCoordinate(new t.Point(0,this.height))],e.reparseOverscaled?n:r,this._renderWorldCopies).sort(function(t,e){return o.dist(t.canonical)-o.dist(e.canonical)})},cn.prototype.resize=function(t,e){this.width=t,this.height=e,this.pixelsToGLUnits=[2/t,-2/e],this._constrain(),this._calcMatrices()},un.unmodified.get=function(){return this._unmodified},cn.prototype.zoomScale=function(t){return Math.pow(2,t)},cn.prototype.scaleZoom=function(t){return Math.log(t)/Math.LN2},cn.prototype.project=function(e){var r=t.clamp(e.lat,-this.maxValidLatitude,this.maxValidLatitude);return new t.Point(t.mercatorXfromLng(e.lng)*this.worldSize,t.mercatorYfromLat(r)*this.worldSize)},cn.prototype.unproject=function(e){return new t.MercatorCoordinate(e.x/this.worldSize,e.y/this.worldSize).toLngLat()},un.point.get=function(){return this.project(this.center)},cn.prototype.setLocationAtPoint=function(e,r){var n=this.pointCoordinate(r),a=this.pointCoordinate(this.centerPoint),i=this.locationCoordinate(e),o=new t.MercatorCoordinate(i.x-(n.x-a.x),i.y-(n.y-a.y));this.center=this.coordinateLocation(o),this._renderWorldCopies&&(this.center=this.center.wrap())},cn.prototype.locationPoint=function(t){return this.coordinatePoint(this.locationCoordinate(t))},cn.prototype.pointLocation=function(t){return this.coordinateLocation(this.pointCoordinate(t))},cn.prototype.locationCoordinate=function(e){return t.MercatorCoordinate.fromLngLat(e)},cn.prototype.coordinateLocation=function(t){return t.toLngLat()},cn.prototype.pointCoordinate=function(e){var r=[e.x,e.y,0,1],n=[e.x,e.y,1,1];t.transformMat4(r,r,this.pixelMatrixInverse),t.transformMat4(n,n,this.pixelMatrixInverse);var a=r[3],i=n[3],o=r[0]/a,s=n[0]/i,l=r[1]/a,c=n[1]/i,u=r[2]/a,h=n[2]/i,f=u===h?0:(0-u)/(h-u);return new t.MercatorCoordinate(t.number(o,s,f)/this.worldSize,t.number(l,c,f)/this.worldSize)},cn.prototype.coordinatePoint=function(e){var r=[e.x*this.worldSize,e.y*this.worldSize,0,1];return t.transformMat4(r,r,this.pixelMatrix),new t.Point(r[0]/r[3],r[1]/r[3])},cn.prototype.getBounds=function(){return(new t.LngLatBounds).extend(this.pointLocation(new t.Point(0,0))).extend(this.pointLocation(new t.Point(this.width,0))).extend(this.pointLocation(new t.Point(this.width,this.height))).extend(this.pointLocation(new t.Point(0,this.height)))},cn.prototype.getMaxBounds=function(){return this.latRange&&2===this.latRange.length&&this.lngRange&&2===this.lngRange.length?new t.LngLatBounds([this.lngRange[0],this.latRange[0]],[this.lngRange[1],this.latRange[1]]):null},cn.prototype.setMaxBounds=function(t){t?(this.lngRange=[t.getWest(),t.getEast()],this.latRange=[t.getSouth(),t.getNorth()],this._constrain()):(this.lngRange=null,this.latRange=[-this.maxValidLatitude,this.maxValidLatitude])},cn.prototype.calculatePosMatrix=function(e,r){void 0===r&&(r=!1);var n=e.key,a=r?this._alignedPosMatrixCache:this._posMatrixCache;if(a[n])return a[n];var i=e.canonical,o=this.worldSize/this.zoomScale(i.z),s=i.x+Math.pow(2,i.z)*e.wrap,l=t.identity(new Float64Array(16));return t.translate(l,l,[s*o,i.y*o,0]),t.scale(l,l,[o/t.EXTENT,o/t.EXTENT,1]),t.multiply(l,r?this.alignedProjMatrix:this.projMatrix,l),a[n]=new Float32Array(l),a[n]},cn.prototype.customLayerMatrix=function(){return this.mercatorMatrix.slice()},cn.prototype._constrain=function(){if(this.center&&this.width&&this.height&&!this._constraining){this._constraining=!0;var e,r,n,a,i=-90,o=90,s=-180,l=180,c=this.size,u=this._unmodified;if(this.latRange){var h=this.latRange;i=t.mercatorYfromLat(h[1])*this.worldSize,e=(o=t.mercatorYfromLat(h[0])*this.worldSize)-i<c.y?c.y/(o-i):0}if(this.lngRange){var f=this.lngRange;s=t.mercatorXfromLng(f[0])*this.worldSize,r=(l=t.mercatorXfromLng(f[1])*this.worldSize)-s<c.x?c.x/(l-s):0}var p=this.point,d=Math.max(r||0,e||0);if(d)return this.center=this.unproject(new t.Point(r?(l+s)/2:p.x,e?(o+i)/2:p.y)),this.zoom+=this.scaleZoom(d),this._unmodified=u,void(this._constraining=!1);if(this.latRange){var g=p.y,v=c.y/2;g-v<i&&(a=i+v),g+v>o&&(a=o-v)}if(this.lngRange){var m=p.x,y=c.x/2;m-y<s&&(n=s+y),m+y>l&&(n=l-y)}void 0===n&&void 0===a||(this.center=this.unproject(new t.Point(void 0!==n?n:p.x,void 0!==a?a:p.y))),this._unmodified=u,this._constraining=!1}},cn.prototype._calcMatrices=function(){if(this.height){this.cameraToCenterDistance=.5/Math.tan(this._fov/2)*this.height;var e=this._fov/2,r=Math.PI/2+this._pitch,n=Math.sin(e)*this.cameraToCenterDistance/Math.sin(Math.PI-r-e),a=this.point,i=a.x,o=a.y,s=1.01*(Math.cos(Math.PI/2-this._pitch)*n+this.cameraToCenterDistance),l=this.height/50,c=new Float64Array(16);t.perspective(c,this._fov,this.width/this.height,l,s),t.scale(c,c,[1,-1,1]),t.translate(c,c,[0,0,-this.cameraToCenterDistance]),t.rotateX(c,c,this._pitch),t.rotateZ(c,c,this.angle),t.translate(c,c,[-i,-o,0]),this.mercatorMatrix=t.scale([],c,[this.worldSize,this.worldSize,this.worldSize]),t.scale(c,c,[1,1,t.mercatorZfromAltitude(1,this.center.lat)*this.worldSize,1]),this.projMatrix=c;var u=this.width%2/2,h=this.height%2/2,f=Math.cos(this.angle),p=Math.sin(this.angle),d=i-Math.round(i)+f*u+p*h,g=o-Math.round(o)+f*h+p*u,v=new Float64Array(c);if(t.translate(v,v,[d>.5?d-1:d,g>.5?g-1:g,0]),this.alignedProjMatrix=v,c=t.create(),t.scale(c,c,[this.width/2,-this.height/2,1]),t.translate(c,c,[1,-1,0]),this.labelPlaneMatrix=c,c=t.create(),t.scale(c,c,[1,-1,1]),t.translate(c,c,[-1,-1,0]),t.scale(c,c,[2/this.width,2/this.height,1]),this.glCoordMatrix=c,this.pixelMatrix=t.multiply(new Float64Array(16),this.labelPlaneMatrix,this.projMatrix),!(c=t.invert(new Float64Array(16),this.pixelMatrix)))throw new Error(\"failed to invert matrix\");this.pixelMatrixInverse=c,this._posMatrixCache={},this._alignedPosMatrixCache={}}},cn.prototype.maxPitchScaleFactor=function(){if(!this.pixelMatrixInverse)return 1;var e=this.pointCoordinate(new t.Point(0,0)),r=[e.x*this.worldSize,e.y*this.worldSize,0,1];return t.transformMat4(r,r,this.pixelMatrix)[3]/this.cameraToCenterDistance},cn.prototype.getCameraPoint=function(){var e=this._pitch,r=Math.tan(e)*(this.cameraToCenterDistance||1);return this.centerPoint.add(new t.Point(0,r))},cn.prototype.getCameraQueryGeometry=function(e){var r=this.getCameraPoint();if(1===e.length)return[e[0],r];for(var n=r.x,a=r.y,i=r.x,o=r.y,s=0,l=e;s<l.length;s+=1){var c=l[s];n=Math.min(n,c.x),a=Math.min(a,c.y),i=Math.max(i,c.x),o=Math.max(o,c.y)}return[new t.Point(n,a),new t.Point(i,a),new t.Point(i,o),new t.Point(n,o),new t.Point(n,a)]},Object.defineProperties(cn.prototype,un);var hn=function(){var e,r,n,a;t.bindAll([\"_onHashChange\",\"_updateHash\"],this),this._updateHash=(e=this._updateHashUnthrottled.bind(this),300,r=!1,n=null,a=function(){n=null,r&&(e(),n=setTimeout(a,300),r=!1)},function(){return r=!0,n||a(),n})};hn.prototype.addTo=function(e){return this._map=e,t.window.addEventListener(\"hashchange\",this._onHashChange,!1),this._map.on(\"moveend\",this._updateHash),this},hn.prototype.remove=function(){return t.window.removeEventListener(\"hashchange\",this._onHashChange,!1),this._map.off(\"moveend\",this._updateHash),clearTimeout(this._updateHash()),delete this._map,this},hn.prototype.getHashString=function(t){var e=this._map.getCenter(),r=Math.round(100*this._map.getZoom())/100,n=Math.ceil((r*Math.LN2+Math.log(512/360/.5))/Math.LN10),a=Math.pow(10,n),i=Math.round(e.lng*a)/a,o=Math.round(e.lat*a)/a,s=this._map.getBearing(),l=this._map.getPitch(),c=\"\";return c+=t?\"#/\"+i+\"/\"+o+\"/\"+r:\"#\"+r+\"/\"+o+\"/\"+i,(s||l)&&(c+=\"/\"+Math.round(10*s)/10),l&&(c+=\"/\"+Math.round(l)),c},hn.prototype._onHashChange=function(){var e=t.window.location.hash.replace(\"#\",\"\").split(\"/\");return e.length>=3&&(this._map.jumpTo({center:[+e[2],+e[1]],zoom:+e[0],bearing:+(e[3]||0),pitch:+(e[4]||0)}),!0)},hn.prototype._updateHashUnthrottled=function(){var e=this.getHashString();try{t.window.history.replaceState(t.window.history.state,\"\",e)}catch(t){}};var fn=function(e){function n(n,a,i,o){void 0===o&&(o={});var s=r.mousePos(a.getCanvasContainer(),i),l=a.unproject(s);e.call(this,n,t.extend({point:s,lngLat:l,originalEvent:i},o)),this._defaultPrevented=!1,this.target=a}e&&(n.__proto__=e),n.prototype=Object.create(e&&e.prototype),n.prototype.constructor=n;var a={defaultPrevented:{configurable:!0}};return n.prototype.preventDefault=function(){this._defaultPrevented=!0},a.defaultPrevented.get=function(){return this._defaultPrevented},Object.defineProperties(n.prototype,a),n}(t.Event),pn=function(e){function n(n,a,i){var o=r.touchPos(a.getCanvasContainer(),i),s=o.map(function(t){return a.unproject(t)}),l=o.reduce(function(t,e,r,n){return t.add(e.div(n.length))},new t.Point(0,0)),c=a.unproject(l);e.call(this,n,{points:o,point:l,lngLats:s,lngLat:c,originalEvent:i}),this._defaultPrevented=!1}e&&(n.__proto__=e),n.prototype=Object.create(e&&e.prototype),n.prototype.constructor=n;var a={defaultPrevented:{configurable:!0}};return n.prototype.preventDefault=function(){this._defaultPrevented=!0},a.defaultPrevented.get=function(){return this._defaultPrevented},Object.defineProperties(n.prototype,a),n}(t.Event),dn=function(t){function e(e,r,n){t.call(this,e,{originalEvent:n}),this._defaultPrevented=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={defaultPrevented:{configurable:!0}};return e.prototype.preventDefault=function(){this._defaultPrevented=!0},r.defaultPrevented.get=function(){return this._defaultPrevented},Object.defineProperties(e.prototype,r),e}(t.Event),gn=function(e){this._map=e,this._el=e.getCanvasContainer(),this._delta=0,this._defaultZoomRate=.01,this._wheelZoomRate=1/450,t.bindAll([\"_onWheel\",\"_onTimeout\",\"_onScrollFrame\",\"_onScrollFinished\"],this)};gn.prototype.setZoomRate=function(t){this._defaultZoomRate=t},gn.prototype.setWheelZoomRate=function(t){this._wheelZoomRate=t},gn.prototype.isEnabled=function(){return!!this._enabled},gn.prototype.isActive=function(){return!!this._active},gn.prototype.isZooming=function(){return!!this._zooming},gn.prototype.enable=function(t){this.isEnabled()||(this._enabled=!0,this._aroundCenter=t&&\"center\"===t.around)},gn.prototype.disable=function(){this.isEnabled()&&(this._enabled=!1)},gn.prototype.onWheel=function(e){if(this.isEnabled()){var r=e.deltaMode===t.window.WheelEvent.DOM_DELTA_LINE?40*e.deltaY:e.deltaY,n=t.browser.now(),a=n-(this._lastWheelEventTime||0);this._lastWheelEventTime=n,0!==r&&r%4.000244140625==0?this._type=\"wheel\":0!==r&&Math.abs(r)<4?this._type=\"trackpad\":a>400?(this._type=null,this._lastValue=r,this._timeout=setTimeout(this._onTimeout,40,e)):this._type||(this._type=Math.abs(a*r)<200?\"trackpad\":\"wheel\",this._timeout&&(clearTimeout(this._timeout),this._timeout=null,r+=this._lastValue)),e.shiftKey&&r&&(r/=4),this._type&&(this._lastWheelEvent=e,this._delta-=r,this.isActive()||this._start(e)),e.preventDefault()}},gn.prototype._onTimeout=function(t){this._type=\"wheel\",this._delta-=this._lastValue,this.isActive()||this._start(t)},gn.prototype._start=function(e){if(this._delta){this._frameId&&(this._map._cancelRenderFrame(this._frameId),this._frameId=null),this._active=!0,this.isZooming()||(this._zooming=!0,this._map.fire(new t.Event(\"movestart\",{originalEvent:e})),this._map.fire(new t.Event(\"zoomstart\",{originalEvent:e}))),this._finishTimeout&&clearTimeout(this._finishTimeout);var n=r.mousePos(this._el,e);this._around=t.LngLat.convert(this._aroundCenter?this._map.getCenter():this._map.unproject(n)),this._aroundPoint=this._map.transform.locationPoint(this._around),this._frameId||(this._frameId=this._map._requestRenderFrame(this._onScrollFrame))}},gn.prototype._onScrollFrame=function(){var e=this;if(this._frameId=null,this.isActive()){var r=this._map.transform;if(0!==this._delta){var n=\"wheel\"===this._type&&Math.abs(this._delta)>4.000244140625?this._wheelZoomRate:this._defaultZoomRate,a=2/(1+Math.exp(-Math.abs(this._delta*n)));this._delta<0&&0!==a&&(a=1/a);var i=\"number\"==typeof this._targetZoom?r.zoomScale(this._targetZoom):r.scale;this._targetZoom=Math.min(r.maxZoom,Math.max(r.minZoom,r.scaleZoom(i*a))),\"wheel\"===this._type&&(this._startZoom=r.zoom,this._easing=this._smoothOutEasing(200)),this._delta=0}var o=\"number\"==typeof this._targetZoom?this._targetZoom:r.zoom,s=this._startZoom,l=this._easing,c=!1;if(\"wheel\"===this._type&&s&&l){var u=Math.min((t.browser.now()-this._lastWheelEventTime)/200,1),h=l(u);r.zoom=t.number(s,o,h),u<1?this._frameId||(this._frameId=this._map._requestRenderFrame(this._onScrollFrame)):c=!0}else r.zoom=o,c=!0;r.setLocationAtPoint(this._around,this._aroundPoint),this._map.fire(new t.Event(\"move\",{originalEvent:this._lastWheelEvent})),this._map.fire(new t.Event(\"zoom\",{originalEvent:this._lastWheelEvent})),c&&(this._active=!1,this._finishTimeout=setTimeout(function(){e._zooming=!1,e._map.fire(new t.Event(\"zoomend\",{originalEvent:e._lastWheelEvent})),e._map.fire(new t.Event(\"moveend\",{originalEvent:e._lastWheelEvent})),delete e._targetZoom},200))}},gn.prototype._smoothOutEasing=function(e){var r=t.ease;if(this._prevEase){var n=this._prevEase,a=(t.browser.now()-n.start)/n.duration,i=n.easing(a+.01)-n.easing(a),o=.27/Math.sqrt(i*i+1e-4)*.01,s=Math.sqrt(.0729-o*o);r=t.bezier(o,s,.25,1)}return this._prevEase={start:t.browser.now(),duration:e,easing:r},r};var vn=function(e,r){this._map=e,this._el=e.getCanvasContainer(),this._container=e.getContainer(),this._clickTolerance=r.clickTolerance||1,t.bindAll([\"_onMouseMove\",\"_onMouseUp\",\"_onKeyDown\"],this)};vn.prototype.isEnabled=function(){return!!this._enabled},vn.prototype.isActive=function(){return!!this._active},vn.prototype.enable=function(){this.isEnabled()||(this._enabled=!0)},vn.prototype.disable=function(){this.isEnabled()&&(this._enabled=!1)},vn.prototype.onMouseDown=function(e){this.isEnabled()&&e.shiftKey&&0===e.button&&(t.window.document.addEventListener(\"mousemove\",this._onMouseMove,!1),t.window.document.addEventListener(\"keydown\",this._onKeyDown,!1),t.window.document.addEventListener(\"mouseup\",this._onMouseUp,!1),r.disableDrag(),this._startPos=this._lastPos=r.mousePos(this._el,e),this._active=!0)},vn.prototype._onMouseMove=function(t){var e=r.mousePos(this._el,t);if(!(this._lastPos.equals(e)||!this._box&&e.dist(this._startPos)<this._clickTolerance)){var n=this._startPos;this._lastPos=e,this._box||(this._box=r.create(\"div\",\"mapboxgl-boxzoom\",this._container),this._container.classList.add(\"mapboxgl-crosshair\"),this._fireEvent(\"boxzoomstart\",t));var a=Math.min(n.x,e.x),i=Math.max(n.x,e.x),o=Math.min(n.y,e.y),s=Math.max(n.y,e.y);r.setTransform(this._box,\"translate(\"+a+\"px,\"+o+\"px)\"),this._box.style.width=i-a+\"px\",this._box.style.height=s-o+\"px\"}},vn.prototype._onMouseUp=function(e){if(0===e.button){var n=this._startPos,a=r.mousePos(this._el,e);this._finish(),r.suppressClick(),n.x===a.x&&n.y===a.y?this._fireEvent(\"boxzoomcancel\",e):this._map.fitScreenCoordinates(n,a,this._map.getBearing(),{linear:!0}).fire(new t.Event(\"boxzoomend\",{originalEvent:e}))}},vn.prototype._onKeyDown=function(t){27===t.keyCode&&(this._finish(),this._fireEvent(\"boxzoomcancel\",t))},vn.prototype._finish=function(){this._active=!1,t.window.document.removeEventListener(\"mousemove\",this._onMouseMove,!1),t.window.document.removeEventListener(\"keydown\",this._onKeyDown,!1),t.window.document.removeEventListener(\"mouseup\",this._onMouseUp,!1),this._container.classList.remove(\"mapboxgl-crosshair\"),this._box&&(r.remove(this._box),this._box=null),r.enableDrag(),delete this._startPos,delete this._lastPos},vn.prototype._fireEvent=function(e,r){return this._map.fire(new t.Event(e,{originalEvent:r}))};var mn=t.bezier(0,0,.25,1),yn=function(e,r){this._map=e,this._el=r.element||e.getCanvasContainer(),this._state=\"disabled\",this._button=r.button||\"right\",this._bearingSnap=r.bearingSnap||0,this._pitchWithRotate=!1!==r.pitchWithRotate,t.bindAll([\"onMouseDown\",\"_onMouseMove\",\"_onMouseUp\",\"_onBlur\",\"_onDragFrame\"],this)};yn.prototype.isEnabled=function(){return\"disabled\"!==this._state},yn.prototype.isActive=function(){return\"active\"===this._state},yn.prototype.enable=function(){this.isEnabled()||(this._state=\"enabled\")},yn.prototype.disable=function(){if(this.isEnabled())switch(this._state){case\"active\":this._state=\"disabled\",this._unbind(),this._deactivate(),this._fireEvent(\"rotateend\"),this._pitchWithRotate&&this._fireEvent(\"pitchend\"),this._fireEvent(\"moveend\");break;case\"pending\":this._state=\"disabled\",this._unbind();break;default:this._state=\"disabled\"}},yn.prototype.onMouseDown=function(e){if(\"enabled\"===this._state){var n=\"touchstart\"===e.type;if(n)this._startTime=Date.now();else if(\"right\"===this._button){if(this._eventButton=r.mouseButton(e),this._eventButton!==(e.ctrlKey?0:2))return}else{if(e.ctrlKey||0!==r.mouseButton(e))return;this._eventButton=0}r.disableDrag(),n?(t.window.document.addEventListener(\"touchmove\",this._onMouseMove,{capture:!0}),t.window.document.addEventListener(\"touchend\",this._onMouseUp)):(t.window.document.addEventListener(\"mousemove\",this._onMouseMove,{capture:!0}),t.window.document.addEventListener(\"mouseup\",this._onMouseUp)),t.window.addEventListener(\"blur\",this._onBlur),this._state=\"pending\",this._inertia=[[t.browser.now(),this._map.getBearing()]],this._startPos=this._prevPos=this._lastPos=r.mousePos(this._el,e),this._center=this._map.transform.centerPoint,e.preventDefault()}},yn.prototype._onMouseMove=function(t){var e=r.mousePos(this._el,t);this._lastPos.equals(e)||(this._lastMoveEvent=t,this._lastPos=e,\"pending\"===this._state&&(this._state=\"active\",this._fireEvent(\"rotatestart\",t),this._fireEvent(\"movestart\",t),this._pitchWithRotate&&this._fireEvent(\"pitchstart\",t)),this._frameId||(this._frameId=this._map._requestRenderFrame(this._onDragFrame)))},yn.prototype._onDragFrame=function(){this._frameId=null;var e=this._lastMoveEvent;if(e){var r=this._map.transform,n=this._prevPos,a=this._lastPos,i=.8*(n.x-a.x),o=-.5*(n.y-a.y),s=r.bearing-i,l=r.pitch-o,c=this._inertia,u=c[c.length-1];this._drainInertiaBuffer(),c.push([t.browser.now(),this._map._normalizeBearing(s,u[1])]),r.bearing=s,this._pitchWithRotate&&(this._fireEvent(\"pitch\",e),r.pitch=l),this._fireEvent(\"rotate\",e),this._fireEvent(\"move\",e),delete this._lastMoveEvent,this._prevPos=this._lastPos}},yn.prototype._onMouseUp=function(t){if(\"touchend\"===t.type&&this._startPos===this._lastPos&&Date.now()-this._startTime<300&&this._el.click(),r.mouseButton(t)===this._eventButton)switch(this._state){case\"active\":this._state=\"enabled\",r.suppressClick(),this._unbind(),this._deactivate(),this._inertialRotate(t);break;case\"pending\":this._state=\"enabled\",this._unbind()}},yn.prototype._onBlur=function(t){switch(this._state){case\"active\":this._state=\"enabled\",this._unbind(),this._deactivate(),this._fireEvent(\"rotateend\",t),this._pitchWithRotate&&this._fireEvent(\"pitchend\",t),this._fireEvent(\"moveend\",t);break;case\"pending\":this._state=\"enabled\",this._unbind()}},yn.prototype._unbind=function(){t.window.document.removeEventListener(\"mousemove\",this._onMouseMove,{capture:!0}),t.window.document.removeEventListener(\"mouseup\",this._onMouseUp),t.window.document.removeEventListener(\"touchmove\",this._onMouseMove,{capture:!0}),t.window.document.removeEventListener(\"touchend\",this._onMouseUp),t.window.removeEventListener(\"blur\",this._onBlur),r.enableDrag()},yn.prototype._deactivate=function(){this._frameId&&(this._map._cancelRenderFrame(this._frameId),this._frameId=null),delete this._lastMoveEvent,delete this._startPos,delete this._prevPos,delete this._lastPos},yn.prototype._inertialRotate=function(t){var e=this;this._fireEvent(\"rotateend\",t),this._drainInertiaBuffer();var r=this._map,n=r.getBearing(),a=this._inertia,i=function(){Math.abs(n)<e._bearingSnap?r.resetNorth({noMoveStart:!0},{originalEvent:t}):e._fireEvent(\"moveend\",t),e._pitchWithRotate&&e._fireEvent(\"pitchend\",t)};if(a.length<2)i();else{var o=a[0],s=a[a.length-1],l=a[a.length-2],c=r._normalizeBearing(n,l[1]),u=s[1]-o[1],h=u<0?-1:1,f=(s[0]-o[0])/1e3;if(0!==u&&0!==f){var p=Math.abs(u*(.25/f));p>180&&(p=180);var d=p/180;c+=h*p*(d/2),Math.abs(r._normalizeBearing(c,0))<this._bearingSnap&&(c=r._normalizeBearing(0,c)),r.rotateTo(c,{duration:1e3*d,easing:mn,noMoveStart:!0},{originalEvent:t})}else i()}},yn.prototype._fireEvent=function(e,r){return this._map.fire(new t.Event(e,r?{originalEvent:r}:{}))},yn.prototype._drainInertiaBuffer=function(){for(var e=this._inertia,r=t.browser.now();e.length>0&&r-e[0][0]>160;)e.shift()};var xn=t.bezier(0,0,.3,1),bn=function(e,r){this._map=e,this._el=e.getCanvasContainer(),this._state=\"disabled\",this._clickTolerance=r.clickTolerance||1,t.bindAll([\"_onMove\",\"_onMouseUp\",\"_onTouchEnd\",\"_onBlur\",\"_onDragFrame\"],this)};bn.prototype.isEnabled=function(){return\"disabled\"!==this._state},bn.prototype.isActive=function(){return\"active\"===this._state},bn.prototype.enable=function(){this.isEnabled()||(this._el.classList.add(\"mapboxgl-touch-drag-pan\"),this._state=\"enabled\")},bn.prototype.disable=function(){if(this.isEnabled())switch(this._el.classList.remove(\"mapboxgl-touch-drag-pan\"),this._state){case\"active\":this._state=\"disabled\",this._unbind(),this._deactivate(),this._fireEvent(\"dragend\"),this._fireEvent(\"moveend\");break;case\"pending\":this._state=\"disabled\",this._unbind();break;default:this._state=\"disabled\"}},bn.prototype.onMouseDown=function(e){\"enabled\"===this._state&&(e.ctrlKey||0!==r.mouseButton(e)||(r.addEventListener(t.window.document,\"mousemove\",this._onMove,{capture:!0}),r.addEventListener(t.window.document,\"mouseup\",this._onMouseUp),this._start(e)))},bn.prototype.onTouchStart=function(e){\"enabled\"===this._state&&(e.touches.length>1||(r.addEventListener(t.window.document,\"touchmove\",this._onMove,{capture:!0,passive:!1}),r.addEventListener(t.window.document,\"touchend\",this._onTouchEnd),this._start(e)))},bn.prototype._start=function(e){t.window.addEventListener(\"blur\",this._onBlur),this._state=\"pending\",this._startPos=this._mouseDownPos=this._prevPos=this._lastPos=r.mousePos(this._el,e),this._inertia=[[t.browser.now(),this._startPos]]},bn.prototype._onMove=function(e){e.preventDefault();var n=r.mousePos(this._el,e);this._lastPos.equals(n)||\"pending\"===this._state&&n.dist(this._mouseDownPos)<this._clickTolerance||(this._lastMoveEvent=e,this._lastPos=n,this._drainInertiaBuffer(),this._inertia.push([t.browser.now(),this._lastPos]),\"pending\"===this._state&&(this._state=\"active\",this._fireEvent(\"dragstart\",e),this._fireEvent(\"movestart\",e)),this._frameId||(this._frameId=this._map._requestRenderFrame(this._onDragFrame)))},bn.prototype._onDragFrame=function(){this._frameId=null;var t=this._lastMoveEvent;if(t){var e=this._map.transform;e.setLocationAtPoint(e.pointLocation(this._prevPos),this._lastPos),this._fireEvent(\"drag\",t),this._fireEvent(\"move\",t),this._prevPos=this._lastPos,delete this._lastMoveEvent}},bn.prototype._onMouseUp=function(t){if(0===r.mouseButton(t))switch(this._state){case\"active\":this._state=\"enabled\",r.suppressClick(),this._unbind(),this._deactivate(),this._inertialPan(t);break;case\"pending\":this._state=\"enabled\",this._unbind()}},bn.prototype._onTouchEnd=function(t){switch(this._state){case\"active\":this._state=\"enabled\",this._unbind(),this._deactivate(),this._inertialPan(t);break;case\"pending\":this._state=\"enabled\",this._unbind()}},bn.prototype._onBlur=function(t){switch(this._state){case\"active\":this._state=\"enabled\",this._unbind(),this._deactivate(),this._fireEvent(\"dragend\",t),this._fireEvent(\"moveend\",t);break;case\"pending\":this._state=\"enabled\",this._unbind()}},bn.prototype._unbind=function(){r.removeEventListener(t.window.document,\"touchmove\",this._onMove,{capture:!0,passive:!1}),r.removeEventListener(t.window.document,\"touchend\",this._onTouchEnd),r.removeEventListener(t.window.document,\"mousemove\",this._onMove,{capture:!0}),r.removeEventListener(t.window.document,\"mouseup\",this._onMouseUp),r.removeEventListener(t.window,\"blur\",this._onBlur)},bn.prototype._deactivate=function(){this._frameId&&(this._map._cancelRenderFrame(this._frameId),this._frameId=null),delete this._lastMoveEvent,delete this._startPos,delete this._prevPos,delete this._mouseDownPos,delete this._lastPos},bn.prototype._inertialPan=function(t){this._fireEvent(\"dragend\",t),this._drainInertiaBuffer();var e=this._inertia;if(e.length<2)this._fireEvent(\"moveend\",t);else{var r=e[e.length-1],n=e[0],a=r[1].sub(n[1]),i=(r[0]-n[0])/1e3;if(0===i||r[1].equals(n[1]))this._fireEvent(\"moveend\",t);else{var o=a.mult(.3/i),s=o.mag();s>1400&&(s=1400,o._unit()._mult(s));var l=s/750,c=o.mult(-l/2);this._map.panBy(c,{duration:1e3*l,easing:xn,noMoveStart:!0},{originalEvent:t})}}},bn.prototype._fireEvent=function(e,r){return this._map.fire(new t.Event(e,r?{originalEvent:r}:{}))},bn.prototype._drainInertiaBuffer=function(){for(var e=this._inertia,r=t.browser.now();e.length>0&&r-e[0][0]>160;)e.shift()};var _n=function(e){this._map=e,this._el=e.getCanvasContainer(),t.bindAll([\"_onKeyDown\"],this)};function wn(t){return t*(2-t)}_n.prototype.isEnabled=function(){return!!this._enabled},_n.prototype.enable=function(){this.isEnabled()||(this._el.addEventListener(\"keydown\",this._onKeyDown,!1),this._enabled=!0)},_n.prototype.disable=function(){this.isEnabled()&&(this._el.removeEventListener(\"keydown\",this._onKeyDown),this._enabled=!1)},_n.prototype._onKeyDown=function(t){if(!(t.altKey||t.ctrlKey||t.metaKey)){var e=0,r=0,n=0,a=0,i=0;switch(t.keyCode){case 61:case 107:case 171:case 187:e=1;break;case 189:case 109:case 173:e=-1;break;case 37:t.shiftKey?r=-1:(t.preventDefault(),a=-1);break;case 39:t.shiftKey?r=1:(t.preventDefault(),a=1);break;case 38:t.shiftKey?n=1:(t.preventDefault(),i=-1);break;case 40:t.shiftKey?n=-1:(i=1,t.preventDefault());break;default:return}var o=this._map,s=o.getZoom(),l={duration:300,delayEndEvents:500,easing:wn,zoom:e?Math.round(s)+e*(t.shiftKey?2:1):s,bearing:o.getBearing()+15*r,pitch:o.getPitch()+10*n,offset:[100*-a,100*-i],center:o.getCenter()};o.easeTo(l,{originalEvent:t})}};var kn=function(e){this._map=e,t.bindAll([\"_onDblClick\",\"_onZoomEnd\"],this)};kn.prototype.isEnabled=function(){return!!this._enabled},kn.prototype.isActive=function(){return!!this._active},kn.prototype.enable=function(){this.isEnabled()||(this._enabled=!0)},kn.prototype.disable=function(){this.isEnabled()&&(this._enabled=!1)},kn.prototype.onTouchStart=function(t){var e=this;if(this.isEnabled()&&!(t.points.length>1))if(this._tapped){var r=t.points[0],n=this._tappedPoint;if(n&&n.dist(r)<=30){t.originalEvent.preventDefault();var a=function(){e._tapped&&e._zoom(t),e._map.off(\"touchcancel\",i),e._resetTapped()},i=function(){e._map.off(\"touchend\",a),e._resetTapped()};this._map.once(\"touchend\",a),this._map.once(\"touchcancel\",i)}else this._resetTapped()}else this._tappedPoint=t.points[0],this._tapped=setTimeout(function(){e._tapped=null,e._tappedPoint=null},300)},kn.prototype._resetTapped=function(){clearTimeout(this._tapped),this._tapped=null,this._tappedPoint=null},kn.prototype.onDblClick=function(t){this.isEnabled()&&(t.originalEvent.preventDefault(),this._zoom(t))},kn.prototype._zoom=function(t){this._active=!0,this._map.on(\"zoomend\",this._onZoomEnd),this._map.zoomTo(this._map.getZoom()+(t.originalEvent.shiftKey?-1:1),{around:t.lngLat},t)},kn.prototype._onZoomEnd=function(){this._active=!1,this._map.off(\"zoomend\",this._onZoomEnd)};var Tn=t.bezier(0,0,.15,1),An=function(e){this._map=e,this._el=e.getCanvasContainer(),t.bindAll([\"_onMove\",\"_onEnd\",\"_onTouchFrame\"],this)};An.prototype.isEnabled=function(){return!!this._enabled},An.prototype.enable=function(t){this.isEnabled()||(this._el.classList.add(\"mapboxgl-touch-zoom-rotate\"),this._enabled=!0,this._aroundCenter=!!t&&\"center\"===t.around)},An.prototype.disable=function(){this.isEnabled()&&(this._el.classList.remove(\"mapboxgl-touch-zoom-rotate\"),this._enabled=!1)},An.prototype.disableRotation=function(){this._rotationDisabled=!0},An.prototype.enableRotation=function(){this._rotationDisabled=!1},An.prototype.onStart=function(e){if(this.isEnabled()&&2===e.touches.length){var n=r.mousePos(this._el,e.touches[0]),a=r.mousePos(this._el,e.touches[1]),i=n.add(a).div(2);this._startVec=n.sub(a),this._startAround=this._map.transform.pointLocation(i),this._gestureIntent=void 0,this._inertia=[],r.addEventListener(t.window.document,\"touchmove\",this._onMove,{passive:!1}),r.addEventListener(t.window.document,\"touchend\",this._onEnd)}},An.prototype._getTouchEventData=function(t){var e=r.mousePos(this._el,t.touches[0]),n=r.mousePos(this._el,t.touches[1]),a=e.sub(n);return{vec:a,center:e.add(n).div(2),scale:a.mag()/this._startVec.mag(),bearing:this._rotationDisabled?0:180*a.angleWith(this._startVec)/Math.PI}},An.prototype._onMove=function(e){if(2===e.touches.length){var r=this._getTouchEventData(e),n=r.vec,a=r.scale,i=r.bearing;if(!this._gestureIntent){var o=this._rotationDisabled&&1!==a||Math.abs(1-a)>.15;Math.abs(i)>10?this._gestureIntent=\"rotate\":o&&(this._gestureIntent=\"zoom\"),this._gestureIntent&&(this._map.fire(new t.Event(this._gestureIntent+\"start\",{originalEvent:e})),this._map.fire(new t.Event(\"movestart\",{originalEvent:e})),this._startVec=n)}this._lastTouchEvent=e,this._frameId||(this._frameId=this._map._requestRenderFrame(this._onTouchFrame)),e.preventDefault()}},An.prototype._onTouchFrame=function(){this._frameId=null;var e=this._gestureIntent;if(e){var r=this._map.transform;this._startScale||(this._startScale=r.scale,this._startBearing=r.bearing);var n=this._getTouchEventData(this._lastTouchEvent),a=n.center,i=n.bearing,o=n.scale,s=r.pointLocation(a),l=r.locationPoint(s);\"rotate\"===e&&(r.bearing=this._startBearing+i),r.zoom=r.scaleZoom(this._startScale*o),r.setLocationAtPoint(this._startAround,l),this._map.fire(new t.Event(e,{originalEvent:this._lastTouchEvent})),this._map.fire(new t.Event(\"move\",{originalEvent:this._lastTouchEvent})),this._drainInertiaBuffer(),this._inertia.push([t.browser.now(),o,a])}},An.prototype._onEnd=function(e){r.removeEventListener(t.window.document,\"touchmove\",this._onMove,{passive:!1}),r.removeEventListener(t.window.document,\"touchend\",this._onEnd);var n=this._gestureIntent,a=this._startScale;if(this._frameId&&(this._map._cancelRenderFrame(this._frameId),this._frameId=null),delete this._gestureIntent,delete this._startScale,delete this._startBearing,delete this._lastTouchEvent,n){this._map.fire(new t.Event(n+\"end\",{originalEvent:e})),this._drainInertiaBuffer();var i=this._inertia,o=this._map;if(i.length<2)o.snapToNorth({},{originalEvent:e});else{var s=i[i.length-1],l=i[0],c=o.transform.scaleZoom(a*s[1]),u=o.transform.scaleZoom(a*l[1]),h=c-u,f=(s[0]-l[0])/1e3,p=s[2];if(0!==f&&c!==u){var d=.15*h/f;Math.abs(d)>2.5&&(d=d>0?2.5:-2.5);var g=1e3*Math.abs(d/(12*.15)),v=c+d*g/2e3;v<0&&(v=0),o.easeTo({zoom:v,duration:g,easing:Tn,around:this._aroundCenter?o.getCenter():o.unproject(p),noMoveStart:!0},{originalEvent:e})}else o.snapToNorth({},{originalEvent:e})}}},An.prototype._drainInertiaBuffer=function(){for(var e=this._inertia,r=t.browser.now();e.length>2&&r-e[0][0]>160;)e.shift()};var Mn={scrollZoom:gn,boxZoom:vn,dragRotate:yn,dragPan:bn,keyboard:_n,doubleClickZoom:kn,touchZoomRotate:An},Sn=function(e){function r(r,n){e.call(this),this._moving=!1,this._zooming=!1,this.transform=r,this._bearingSnap=n.bearingSnap,t.bindAll([\"_renderFrameCallback\"],this)}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.getCenter=function(){return new t.LngLat(this.transform.center.lng,this.transform.center.lat)},r.prototype.setCenter=function(t,e){return this.jumpTo({center:t},e)},r.prototype.panBy=function(e,r,n){return e=t.Point.convert(e).mult(-1),this.panTo(this.transform.center,t.extend({offset:e},r),n)},r.prototype.panTo=function(e,r,n){return this.easeTo(t.extend({center:e},r),n)},r.prototype.getZoom=function(){return this.transform.zoom},r.prototype.setZoom=function(t,e){return this.jumpTo({zoom:t},e),this},r.prototype.zoomTo=function(e,r,n){return this.easeTo(t.extend({zoom:e},r),n)},r.prototype.zoomIn=function(t,e){return this.zoomTo(this.getZoom()+1,t,e),this},r.prototype.zoomOut=function(t,e){return this.zoomTo(this.getZoom()-1,t,e),this},r.prototype.getBearing=function(){return this.transform.bearing},r.prototype.setBearing=function(t,e){return this.jumpTo({bearing:t},e),this},r.prototype.rotateTo=function(e,r,n){return this.easeTo(t.extend({bearing:e},r),n)},r.prototype.resetNorth=function(e,r){return this.rotateTo(0,t.extend({duration:1e3},e),r),this},r.prototype.resetNorthPitch=function(e,r){return this.easeTo(t.extend({bearing:0,pitch:0,duration:1e3},e),r),this},r.prototype.snapToNorth=function(t,e){return Math.abs(this.getBearing())<this._bearingSnap?this.resetNorth(t,e):this},r.prototype.getPitch=function(){return this.transform.pitch},r.prototype.setPitch=function(t,e){return this.jumpTo({pitch:t},e),this},r.prototype.cameraForBounds=function(e,r){return e=t.LngLatBounds.convert(e),this._cameraForBoxAndBearing(e.getNorthWest(),e.getSouthEast(),0,r)},r.prototype._cameraForBoxAndBearing=function(e,r,n,a){if(\"number\"==typeof(a=t.extend({padding:{top:0,bottom:0,right:0,left:0},offset:[0,0],maxZoom:this.transform.maxZoom},a)).padding){var i=a.padding;a.padding={top:i,bottom:i,right:i,left:i}}if(t.deepEqual(Object.keys(a.padding).sort(function(t,e){return t<e?-1:t>e?1:0}),[\"bottom\",\"left\",\"right\",\"top\"])){var o=this.transform,s=o.project(t.LngLat.convert(e)),l=o.project(t.LngLat.convert(r)),c=s.rotate(-n*Math.PI/180),u=l.rotate(-n*Math.PI/180),h=new t.Point(Math.max(c.x,u.x),Math.max(c.y,u.y)),f=new t.Point(Math.min(c.x,u.x),Math.min(c.y,u.y)),p=h.sub(f),d=(o.width-a.padding.left-a.padding.right)/p.x,g=(o.height-a.padding.top-a.padding.bottom)/p.y;if(!(g<0||d<0)){var v=Math.min(o.scaleZoom(o.scale*Math.min(d,g)),a.maxZoom),m=t.Point.convert(a.offset),y=(a.padding.left-a.padding.right)/2,x=(a.padding.top-a.padding.bottom)/2,b=new t.Point(m.x+y,m.y+x).mult(o.scale/o.zoomScale(v));return{center:o.unproject(s.add(l).div(2).sub(b)),zoom:v,bearing:n}}t.warnOnce(\"Map cannot fit within canvas with the given bounds, padding, and/or offset.\")}else t.warnOnce(\"options.padding must be a positive number, or an Object with keys 'bottom', 'left', 'right', 'top'\")},r.prototype.fitBounds=function(t,e,r){return this._fitInternal(this.cameraForBounds(t,e),e,r)},r.prototype.fitScreenCoordinates=function(e,r,n,a,i){return this._fitInternal(this._cameraForBoxAndBearing(this.transform.pointLocation(t.Point.convert(e)),this.transform.pointLocation(t.Point.convert(r)),n,a),a,i)},r.prototype._fitInternal=function(e,r,n){return e?(r=t.extend(e,r)).linear?this.easeTo(r,n):this.flyTo(r,n):this},r.prototype.jumpTo=function(e,r){this.stop();var n=this.transform,a=!1,i=!1,o=!1;return\"zoom\"in e&&n.zoom!==+e.zoom&&(a=!0,n.zoom=+e.zoom),void 0!==e.center&&(n.center=t.LngLat.convert(e.center)),\"bearing\"in e&&n.bearing!==+e.bearing&&(i=!0,n.bearing=+e.bearing),\"pitch\"in e&&n.pitch!==+e.pitch&&(o=!0,n.pitch=+e.pitch),this.fire(new t.Event(\"movestart\",r)).fire(new t.Event(\"move\",r)),a&&this.fire(new t.Event(\"zoomstart\",r)).fire(new t.Event(\"zoom\",r)).fire(new t.Event(\"zoomend\",r)),i&&this.fire(new t.Event(\"rotatestart\",r)).fire(new t.Event(\"rotate\",r)).fire(new t.Event(\"rotateend\",r)),o&&this.fire(new t.Event(\"pitchstart\",r)).fire(new t.Event(\"pitch\",r)).fire(new t.Event(\"pitchend\",r)),this.fire(new t.Event(\"moveend\",r))},r.prototype.easeTo=function(e,r){var n=this;this.stop(),(!1===(e=t.extend({offset:[0,0],duration:500,easing:t.ease},e)).animate||t.browser.prefersReducedMotion)&&(e.duration=0);var a=this.transform,i=this.getZoom(),o=this.getBearing(),s=this.getPitch(),l=\"zoom\"in e?+e.zoom:i,c=\"bearing\"in e?this._normalizeBearing(e.bearing,o):o,u=\"pitch\"in e?+e.pitch:s,h=a.centerPoint.add(t.Point.convert(e.offset)),f=a.pointLocation(h),p=t.LngLat.convert(e.center||f);this._normalizeCenter(p);var d,g,v=a.project(f),m=a.project(p).sub(v),y=a.zoomScale(l-i);return e.around&&(d=t.LngLat.convert(e.around),g=a.locationPoint(d)),this._zooming=l!==i,this._rotating=o!==c,this._pitching=u!==s,this._prepareEase(r,e.noMoveStart),clearTimeout(this._easeEndTimeoutID),this._ease(function(e){if(n._zooming&&(a.zoom=t.number(i,l,e)),n._rotating&&(a.bearing=t.number(o,c,e)),n._pitching&&(a.pitch=t.number(s,u,e)),d)a.setLocationAtPoint(d,g);else{var f=a.zoomScale(a.zoom-i),p=l>i?Math.min(2,y):Math.max(.5,y),x=Math.pow(p,1-e),b=a.unproject(v.add(m.mult(e*x)).mult(f));a.setLocationAtPoint(a.renderWorldCopies?b.wrap():b,h)}n._fireMoveEvents(r)},function(){e.delayEndEvents?n._easeEndTimeoutID=setTimeout(function(){return n._afterEase(r)},e.delayEndEvents):n._afterEase(r)},e),this},r.prototype._prepareEase=function(e,r){this._moving=!0,r||this.fire(new t.Event(\"movestart\",e)),this._zooming&&this.fire(new t.Event(\"zoomstart\",e)),this._rotating&&this.fire(new t.Event(\"rotatestart\",e)),this._pitching&&this.fire(new t.Event(\"pitchstart\",e))},r.prototype._fireMoveEvents=function(e){this.fire(new t.Event(\"move\",e)),this._zooming&&this.fire(new t.Event(\"zoom\",e)),this._rotating&&this.fire(new t.Event(\"rotate\",e)),this._pitching&&this.fire(new t.Event(\"pitch\",e))},r.prototype._afterEase=function(e){var r=this._zooming,n=this._rotating,a=this._pitching;this._moving=!1,this._zooming=!1,this._rotating=!1,this._pitching=!1,r&&this.fire(new t.Event(\"zoomend\",e)),n&&this.fire(new t.Event(\"rotateend\",e)),a&&this.fire(new t.Event(\"pitchend\",e)),this.fire(new t.Event(\"moveend\",e))},r.prototype.flyTo=function(e,r){var n=this;if(t.browser.prefersReducedMotion){var a=t.pick(e,[\"center\",\"zoom\",\"bearing\",\"pitch\",\"around\"]);return this.jumpTo(a,r)}this.stop(),e=t.extend({offset:[0,0],speed:1.2,curve:1.42,easing:t.ease},e);var i=this.transform,o=this.getZoom(),s=this.getBearing(),l=this.getPitch(),c=\"zoom\"in e?t.clamp(+e.zoom,i.minZoom,i.maxZoom):o,u=\"bearing\"in e?this._normalizeBearing(e.bearing,s):s,h=\"pitch\"in e?+e.pitch:l,f=i.zoomScale(c-o),p=i.centerPoint.add(t.Point.convert(e.offset)),d=i.pointLocation(p),g=t.LngLat.convert(e.center||d);this._normalizeCenter(g);var v=i.project(d),m=i.project(g).sub(v),y=e.curve,x=Math.max(i.width,i.height),b=x/f,_=m.mag();if(\"minZoom\"in e){var w=t.clamp(Math.min(e.minZoom,o,c),i.minZoom,i.maxZoom),k=x/i.zoomScale(w-o);y=Math.sqrt(k/_*2)}var T=y*y;function A(t){var e=(b*b-x*x+(t?-1:1)*T*T*_*_)/(2*(t?b:x)*T*_);return Math.log(Math.sqrt(e*e+1)-e)}function M(t){return(Math.exp(t)-Math.exp(-t))/2}function S(t){return(Math.exp(t)+Math.exp(-t))/2}var E=A(0),C=function(t){return S(E)/S(E+y*t)},L=function(t){return x*((S(E)*(M(e=E+y*t)/S(e))-M(E))/T)/_;var e},P=(A(1)-E)/y;if(Math.abs(_)<1e-6||!isFinite(P)){if(Math.abs(x-b)<1e-6)return this.easeTo(e,r);var O=b<x?-1:1;P=Math.abs(Math.log(b/x))/y,L=function(){return 0},C=function(t){return Math.exp(O*y*t)}}if(\"duration\"in e)e.duration=+e.duration;else{var I=\"screenSpeed\"in e?+e.screenSpeed/y:+e.speed;e.duration=1e3*P/I}return e.maxDuration&&e.duration>e.maxDuration&&(e.duration=0),this._zooming=!0,this._rotating=s!==u,this._pitching=h!==l,this._prepareEase(r,!1),this._ease(function(e){var a=e*P,f=1/C(a);i.zoom=1===e?c:o+i.scaleZoom(f),n._rotating&&(i.bearing=t.number(s,u,e)),n._pitching&&(i.pitch=t.number(l,h,e));var d=1===e?g:i.unproject(v.add(m.mult(L(a))).mult(f));i.setLocationAtPoint(i.renderWorldCopies?d.wrap():d,p),n._fireMoveEvents(r)},function(){return n._afterEase(r)},e),this},r.prototype.isEasing=function(){return!!this._easeFrameId},r.prototype.stop=function(){if(this._easeFrameId&&(this._cancelRenderFrame(this._easeFrameId),delete this._easeFrameId,delete this._onEaseFrame),this._onEaseEnd){var t=this._onEaseEnd;delete this._onEaseEnd,t.call(this)}return this},r.prototype._ease=function(e,r,n){!1===n.animate||0===n.duration?(e(1),r()):(this._easeStart=t.browser.now(),this._easeOptions=n,this._onEaseFrame=e,this._onEaseEnd=r,this._easeFrameId=this._requestRenderFrame(this._renderFrameCallback))},r.prototype._renderFrameCallback=function(){var e=Math.min((t.browser.now()-this._easeStart)/this._easeOptions.duration,1);this._onEaseFrame(this._easeOptions.easing(e)),e<1?this._easeFrameId=this._requestRenderFrame(this._renderFrameCallback):this.stop()},r.prototype._normalizeBearing=function(e,r){e=t.wrap(e,-180,180);var n=Math.abs(e-r);return Math.abs(e-360-r)<n&&(e-=360),Math.abs(e+360-r)<n&&(e+=360),e},r.prototype._normalizeCenter=function(t){var e=this.transform;if(e.renderWorldCopies&&!e.lngRange){var r=t.lng-e.center.lng;t.lng+=r>180?-360:r<-180?360:0}},r}(t.Evented),En=function(e){void 0===e&&(e={}),this.options=e,t.bindAll([\"_updateEditLink\",\"_updateData\",\"_updateCompact\"],this)};En.prototype.getDefaultPosition=function(){return\"bottom-right\"},En.prototype.onAdd=function(t){var e=this.options&&this.options.compact;return this._map=t,this._container=r.create(\"div\",\"mapboxgl-ctrl mapboxgl-ctrl-attrib\"),this._innerContainer=r.create(\"div\",\"mapboxgl-ctrl-attrib-inner\",this._container),e&&this._container.classList.add(\"mapboxgl-compact\"),this._updateAttributions(),this._updateEditLink(),this._map.on(\"styledata\",this._updateData),this._map.on(\"sourcedata\",this._updateData),this._map.on(\"moveend\",this._updateEditLink),void 0===e&&(this._map.on(\"resize\",this._updateCompact),this._updateCompact()),this._container},En.prototype.onRemove=function(){r.remove(this._container),this._map.off(\"styledata\",this._updateData),this._map.off(\"sourcedata\",this._updateData),this._map.off(\"moveend\",this._updateEditLink),this._map.off(\"resize\",this._updateCompact),this._map=void 0},En.prototype._updateEditLink=function(){var e=this._editLink;e||(e=this._editLink=this._container.querySelector(\".mapbox-improve-map\"));var r=[{key:\"owner\",value:this.styleOwner},{key:\"id\",value:this.styleId},{key:\"access_token\",value:this._map._requestManager._customAccessToken||t.config.ACCESS_TOKEN}];if(e){var n=r.reduce(function(t,e,n){return e.value&&(t+=e.key+\"=\"+e.value+(n<r.length-1?\"&\":\"\")),t},\"?\");e.href=t.config.FEEDBACK_URL+\"/\"+n+(this._map._hash?this._map._hash.getHashString(!0):\"\"),e.rel=\"noopener nofollow\"}},En.prototype._updateData=function(t){!t||\"metadata\"!==t.sourceDataType&&\"style\"!==t.dataType||(this._updateAttributions(),this._updateEditLink())},En.prototype._updateAttributions=function(){if(this._map.style){var t=[];if(this.options.customAttribution&&(Array.isArray(this.options.customAttribution)?t=t.concat(this.options.customAttribution.map(function(t){return\"string\"!=typeof t?\"\":t})):\"string\"==typeof this.options.customAttribution&&t.push(this.options.customAttribution)),this._map.style.stylesheet){var e=this._map.style.stylesheet;this.styleOwner=e.owner,this.styleId=e.id}var r=this._map.style.sourceCaches;for(var n in r){var a=r[n];if(a.used){var i=a.getSource();i.attribution&&t.indexOf(i.attribution)<0&&t.push(i.attribution)}}t.sort(function(t,e){return t.length-e.length});var o=(t=t.filter(function(e,r){for(var n=r+1;n<t.length;n++)if(t[n].indexOf(e)>=0)return!1;return!0})).join(\" | \");o!==this._attribHTML&&(this._attribHTML=o,t.length?(this._innerContainer.innerHTML=o,this._container.classList.remove(\"mapboxgl-attrib-empty\")):this._container.classList.add(\"mapboxgl-attrib-empty\"),this._editLink=null)}},En.prototype._updateCompact=function(){this._map.getCanvasContainer().offsetWidth<=640?this._container.classList.add(\"mapboxgl-compact\"):this._container.classList.remove(\"mapboxgl-compact\")};var Cn=function(){t.bindAll([\"_updateLogo\"],this),t.bindAll([\"_updateCompact\"],this)};Cn.prototype.onAdd=function(t){this._map=t,this._container=r.create(\"div\",\"mapboxgl-ctrl\");var e=r.create(\"a\",\"mapboxgl-ctrl-logo\");return e.target=\"_blank\",e.rel=\"noopener nofollow\",e.href=\"https://www.mapbox.com/\",e.setAttribute(\"aria-label\",\"Mapbox logo\"),e.setAttribute(\"rel\",\"noopener nofollow\"),this._container.appendChild(e),this._container.style.display=\"none\",this._map.on(\"sourcedata\",this._updateLogo),this._updateLogo(),this._map.on(\"resize\",this._updateCompact),this._updateCompact(),this._container},Cn.prototype.onRemove=function(){r.remove(this._container),this._map.off(\"sourcedata\",this._updateLogo),this._map.off(\"resize\",this._updateCompact)},Cn.prototype.getDefaultPosition=function(){return\"bottom-left\"},Cn.prototype._updateLogo=function(t){t&&\"metadata\"!==t.sourceDataType||(this._container.style.display=this._logoRequired()?\"block\":\"none\")},Cn.prototype._logoRequired=function(){if(this._map.style){var t=this._map.style.sourceCaches;for(var e in t)if(t[e].getSource().mapbox_logo)return!0;return!1}},Cn.prototype._updateCompact=function(){var t=this._container.children;if(t.length){var e=t[0];this._map.getCanvasContainer().offsetWidth<250?e.classList.add(\"mapboxgl-compact\"):e.classList.remove(\"mapboxgl-compact\")}};var Ln=function(){this._queue=[],this._id=0,this._cleared=!1,this._currentlyRunning=!1};Ln.prototype.add=function(t){var e=++this._id;return this._queue.push({callback:t,id:e,cancelled:!1}),e},Ln.prototype.remove=function(t){for(var e=this._currentlyRunning,r=0,n=e?this._queue.concat(e):this._queue;r<n.length;r+=1){var a=n[r];if(a.id===t)return void(a.cancelled=!0)}},Ln.prototype.run=function(){var t=this._currentlyRunning=this._queue;this._queue=[];for(var e=0,r=t;e<r.length;e+=1){var n=r[e];if(!n.cancelled&&(n.callback(),this._cleared))break}this._cleared=!1,this._currentlyRunning=!1},Ln.prototype.clear=function(){this._currentlyRunning&&(this._cleared=!0),this._queue=[]};var Pn=t.window.HTMLImageElement,On=t.window.HTMLElement,In={center:[0,0],zoom:0,bearing:0,pitch:0,minZoom:0,maxZoom:22,interactive:!0,scrollZoom:!0,boxZoom:!0,dragRotate:!0,dragPan:!0,keyboard:!0,doubleClickZoom:!0,touchZoomRotate:!0,bearingSnap:7,clickTolerance:3,hash:!1,attributionControl:!0,failIfMajorPerformanceCaveat:!1,preserveDrawingBuffer:!1,trackResize:!0,renderWorldCopies:!0,refreshExpiredTiles:!0,maxTileCacheSize:null,localIdeographFontFamily:\"sans-serif\",transformRequest:null,accessToken:null,fadeDuration:300,crossSourceCollisions:!0},zn=function(n){function a(e){var a=this;if(null!=(e=t.extend({},In,e)).minZoom&&null!=e.maxZoom&&e.minZoom>e.maxZoom)throw new Error(\"maxZoom must be greater than minZoom\");var i=new cn(e.minZoom,e.maxZoom,e.renderWorldCopies);if(n.call(this,i,e),this._interactive=e.interactive,this._maxTileCacheSize=e.maxTileCacheSize,this._failIfMajorPerformanceCaveat=e.failIfMajorPerformanceCaveat,this._preserveDrawingBuffer=e.preserveDrawingBuffer,this._antialias=e.antialias,this._trackResize=e.trackResize,this._bearingSnap=e.bearingSnap,this._refreshExpiredTiles=e.refreshExpiredTiles,this._fadeDuration=e.fadeDuration,this._crossSourceCollisions=e.crossSourceCollisions,this._crossFadingFactor=1,this._collectResourceTiming=e.collectResourceTiming,this._renderTaskQueue=new Ln,this._controls=[],this._mapId=t.uniqueId(),this._requestManager=new t.RequestManager(e.transformRequest,e.accessToken),\"string\"==typeof e.container){if(this._container=t.window.document.getElementById(e.container),!this._container)throw new Error(\"Container '\"+e.container+\"' not found.\")}else{if(!(e.container instanceof On))throw new Error(\"Invalid type: 'container' must be a String or HTMLElement.\");this._container=e.container}if(e.maxBounds&&this.setMaxBounds(e.maxBounds),t.bindAll([\"_onWindowOnline\",\"_onWindowResize\",\"_contextLost\",\"_contextRestored\"],this),this._setupContainer(),this._setupPainter(),void 0===this.painter)throw new Error(\"Failed to initialize WebGL.\");this.on(\"move\",function(){return a._update(!1)}),this.on(\"moveend\",function(){return a._update(!1)}),this.on(\"zoom\",function(){return a._update(!0)}),void 0!==t.window&&(t.window.addEventListener(\"online\",this._onWindowOnline,!1),t.window.addEventListener(\"resize\",this._onWindowResize,!1)),function(t,e){var n=t.getCanvasContainer(),a=null,i=!1,o=null;for(var s in Mn)t[s]=new Mn[s](t,e),e.interactive&&e[s]&&t[s].enable(e[s]);r.addEventListener(n,\"mouseout\",function(e){t.fire(new fn(\"mouseout\",t,e))}),r.addEventListener(n,\"mousedown\",function(a){i=!0,o=r.mousePos(n,a);var s=new fn(\"mousedown\",t,a);t.fire(s),s.defaultPrevented||(e.interactive&&!t.doubleClickZoom.isActive()&&t.stop(),t.boxZoom.onMouseDown(a),t.boxZoom.isActive()||t.dragPan.isActive()||t.dragRotate.onMouseDown(a),t.boxZoom.isActive()||t.dragRotate.isActive()||t.dragPan.onMouseDown(a))}),r.addEventListener(n,\"mouseup\",function(e){var r=t.dragRotate.isActive();a&&!r&&t.fire(new fn(\"contextmenu\",t,a)),a=null,i=!1,t.fire(new fn(\"mouseup\",t,e))}),r.addEventListener(n,\"mousemove\",function(e){if(!t.dragPan.isActive()&&!t.dragRotate.isActive()){for(var r=e.target;r&&r!==n;)r=r.parentNode;r===n&&t.fire(new fn(\"mousemove\",t,e))}}),r.addEventListener(n,\"mouseover\",function(e){for(var r=e.target;r&&r!==n;)r=r.parentNode;r===n&&t.fire(new fn(\"mouseover\",t,e))}),r.addEventListener(n,\"touchstart\",function(r){var n=new pn(\"touchstart\",t,r);t.fire(n),n.defaultPrevented||(e.interactive&&t.stop(),t.boxZoom.isActive()||t.dragRotate.isActive()||t.dragPan.onTouchStart(r),t.touchZoomRotate.onStart(r),t.doubleClickZoom.onTouchStart(n))},{passive:!1}),r.addEventListener(n,\"touchmove\",function(e){t.fire(new pn(\"touchmove\",t,e))},{passive:!1}),r.addEventListener(n,\"touchend\",function(e){t.fire(new pn(\"touchend\",t,e))}),r.addEventListener(n,\"touchcancel\",function(e){t.fire(new pn(\"touchcancel\",t,e))}),r.addEventListener(n,\"click\",function(a){var i=r.mousePos(n,a);(!o||i.equals(o)||i.dist(o)<e.clickTolerance)&&t.fire(new fn(\"click\",t,a))}),r.addEventListener(n,\"dblclick\",function(e){var r=new fn(\"dblclick\",t,e);t.fire(r),r.defaultPrevented||t.doubleClickZoom.onDblClick(r)}),r.addEventListener(n,\"contextmenu\",function(e){var r=t.dragRotate.isActive();i||r?i&&(a=e):t.fire(new fn(\"contextmenu\",t,e)),(t.dragRotate.isEnabled()||t.listens(\"contextmenu\"))&&e.preventDefault()}),r.addEventListener(n,\"wheel\",function(r){e.interactive&&t.stop();var n=new dn(\"wheel\",t,r);t.fire(n),n.defaultPrevented||t.scrollZoom.onWheel(r)},{passive:!1})}(this,e),this._hash=e.hash&&(new hn).addTo(this),this._hash&&this._hash._onHashChange()||(this.jumpTo({center:e.center,zoom:e.zoom,bearing:e.bearing,pitch:e.pitch}),e.bounds&&(this.resize(),this.fitBounds(e.bounds,t.extend({},e.fitBoundsOptions,{duration:0})))),this.resize(),this._localIdeographFontFamily=e.localIdeographFontFamily,e.style&&this.setStyle(e.style,{localIdeographFontFamily:e.localIdeographFontFamily}),e.attributionControl&&this.addControl(new En({customAttribution:e.customAttribution})),this.addControl(new Cn,e.logoPosition),this.on(\"style.load\",function(){a.transform.unmodified&&a.jumpTo(a.style.stylesheet)}),this.on(\"data\",function(e){a._update(\"style\"===e.dataType),a.fire(new t.Event(e.dataType+\"data\",e))}),this.on(\"dataloading\",function(e){a.fire(new t.Event(e.dataType+\"dataloading\",e))})}n&&(a.__proto__=n),a.prototype=Object.create(n&&n.prototype),a.prototype.constructor=a;var i={showTileBoundaries:{configurable:!0},showCollisionBoxes:{configurable:!0},showOverdrawInspector:{configurable:!0},repaint:{configurable:!0},vertices:{configurable:!0},version:{configurable:!0}};return a.prototype._getMapId=function(){return this._mapId},a.prototype.addControl=function(e,r){if(void 0===r&&e.getDefaultPosition&&(r=e.getDefaultPosition()),void 0===r&&(r=\"top-right\"),!e||!e.onAdd)return this.fire(new t.ErrorEvent(new Error(\"Invalid argument to map.addControl(). Argument must be a control with onAdd and onRemove methods.\")));var n=e.onAdd(this);this._controls.push(e);var a=this._controlPositions[r];return-1!==r.indexOf(\"bottom\")?a.insertBefore(n,a.firstChild):a.appendChild(n),this},a.prototype.removeControl=function(e){if(!e||!e.onRemove)return this.fire(new t.ErrorEvent(new Error(\"Invalid argument to map.removeControl(). Argument must be a control with onAdd and onRemove methods.\")));var r=this._controls.indexOf(e);return r>-1&&this._controls.splice(r,1),e.onRemove(this),this},a.prototype.resize=function(e){var r=this._containerDimensions(),n=r[0],a=r[1];return this._resizeCanvas(n,a),this.transform.resize(n,a),this.painter.resize(n,a),this.fire(new t.Event(\"movestart\",e)).fire(new t.Event(\"move\",e)).fire(new t.Event(\"resize\",e)).fire(new t.Event(\"moveend\",e)),this},a.prototype.getBounds=function(){return this.transform.getBounds()},a.prototype.getMaxBounds=function(){return this.transform.getMaxBounds()},a.prototype.setMaxBounds=function(e){return this.transform.setMaxBounds(t.LngLatBounds.convert(e)),this._update()},a.prototype.setMinZoom=function(t){if((t=null==t?0:t)>=0&&t<=this.transform.maxZoom)return this.transform.minZoom=t,this._update(),this.getZoom()<t&&this.setZoom(t),this;throw new Error(\"minZoom must be between 0 and the current maxZoom, inclusive\")},a.prototype.getMinZoom=function(){return this.transform.minZoom},a.prototype.setMaxZoom=function(t){if((t=null==t?22:t)>=this.transform.minZoom)return this.transform.maxZoom=t,this._update(),this.getZoom()>t&&this.setZoom(t),this;throw new Error(\"maxZoom must be greater than the current minZoom\")},a.prototype.getRenderWorldCopies=function(){return this.transform.renderWorldCopies},a.prototype.setRenderWorldCopies=function(t){return this.transform.renderWorldCopies=t,this._update()},a.prototype.getMaxZoom=function(){return this.transform.maxZoom},a.prototype.project=function(e){return this.transform.locationPoint(t.LngLat.convert(e))},a.prototype.unproject=function(e){return this.transform.pointLocation(t.Point.convert(e))},a.prototype.isMoving=function(){return this._moving||this.dragPan.isActive()||this.dragRotate.isActive()||this.scrollZoom.isActive()},a.prototype.isZooming=function(){return this._zooming||this.scrollZoom.isZooming()},a.prototype.isRotating=function(){return this._rotating||this.dragRotate.isActive()},a.prototype.on=function(t,e,r){var a=this;if(void 0===r)return n.prototype.on.call(this,t,e);var i=function(){var n;if(\"mouseenter\"===t||\"mouseover\"===t){var i=!1;return{layer:e,listener:r,delegates:{mousemove:function(n){var o=a.getLayer(e)?a.queryRenderedFeatures(n.point,{layers:[e]}):[];o.length?i||(i=!0,r.call(a,new fn(t,a,n.originalEvent,{features:o}))):i=!1},mouseout:function(){i=!1}}}}if(\"mouseleave\"===t||\"mouseout\"===t){var o=!1;return{layer:e,listener:r,delegates:{mousemove:function(n){(a.getLayer(e)?a.queryRenderedFeatures(n.point,{layers:[e]}):[]).length?o=!0:o&&(o=!1,r.call(a,new fn(t,a,n.originalEvent)))},mouseout:function(e){o&&(o=!1,r.call(a,new fn(t,a,e.originalEvent)))}}}}return{layer:e,listener:r,delegates:(n={},n[t]=function(t){var n=a.getLayer(e)?a.queryRenderedFeatures(t.point,{layers:[e]}):[];n.length&&(t.features=n,r.call(a,t),delete t.features)},n)}}();for(var o in this._delegatedListeners=this._delegatedListeners||{},this._delegatedListeners[t]=this._delegatedListeners[t]||[],this._delegatedListeners[t].push(i),i.delegates)this.on(o,i.delegates[o]);return this},a.prototype.off=function(t,e,r){if(void 0===r)return n.prototype.off.call(this,t,e);if(this._delegatedListeners&&this._delegatedListeners[t])for(var a=this._delegatedListeners[t],i=0;i<a.length;i++){var o=a[i];if(o.layer===e&&o.listener===r){for(var s in o.delegates)this.off(s,o.delegates[s]);return a.splice(i,1),this}}return this},a.prototype.queryRenderedFeatures=function(e,r){if(!this.style)return[];var n;if(void 0!==r||void 0===e||e instanceof t.Point||Array.isArray(e)||(r=e,e=void 0),r=r||{},(e=e||[[0,0],[this.transform.width,this.transform.height]])instanceof t.Point||\"number\"==typeof e[0])n=[t.Point.convert(e)];else{var a=t.Point.convert(e[0]),i=t.Point.convert(e[1]);n=[a,new t.Point(i.x,a.y),i,new t.Point(a.x,i.y),a]}return this.style.queryRenderedFeatures(n,r,this.transform)},a.prototype.querySourceFeatures=function(t,e){return this.style.querySourceFeatures(t,e)},a.prototype.setStyle=function(e,r){return!1!==(r=t.extend({},{localIdeographFontFamily:this._localIdeographFontFamily},r)).diff&&r.localIdeographFontFamily===this._localIdeographFontFamily&&this.style&&e?(this._diffStyle(e,r),this):(this._localIdeographFontFamily=r.localIdeographFontFamily,this._updateStyle(e,r))},a.prototype._updateStyle=function(t,e){return this.style&&(this.style.setEventedParent(null),this.style._remove()),t?(this.style=new Re(this,e||{}),this.style.setEventedParent(this,{style:this.style}),\"string\"==typeof t?this.style.loadURL(t):this.style.loadJSON(t),this):(delete this.style,this)},a.prototype._diffStyle=function(e,r){var n=this;if(\"string\"==typeof e){var a=this._requestManager.normalizeStyleURL(e),i=this._requestManager.transformRequest(a,t.ResourceType.Style);t.getJSON(i,function(e,a){e?n.fire(new t.ErrorEvent(e)):a&&n._updateDiff(a,r)})}else\"object\"==typeof e&&this._updateDiff(e,r)},a.prototype._updateDiff=function(e,r){try{this.style.setState(e)&&this._update(!0)}catch(n){t.warnOnce(\"Unable to perform style diff: \"+(n.message||n.error||n)+\".  Rebuilding the style from scratch.\"),this._updateStyle(e,r)}},a.prototype.getStyle=function(){if(this.style)return this.style.serialize()},a.prototype.isStyleLoaded=function(){return this.style?this.style.loaded():t.warnOnce(\"There is no style added to the map.\")},a.prototype.addSource=function(t,e){return this.style.addSource(t,e),this._update(!0)},a.prototype.isSourceLoaded=function(e){var r=this.style&&this.style.sourceCaches[e];if(void 0!==r)return r.loaded();this.fire(new t.ErrorEvent(new Error(\"There is no source with ID '\"+e+\"'\")))},a.prototype.areTilesLoaded=function(){var t=this.style&&this.style.sourceCaches;for(var e in t){var r=t[e]._tiles;for(var n in r){var a=r[n];if(\"loaded\"!==a.state&&\"errored\"!==a.state)return!1}}return!0},a.prototype.addSourceType=function(t,e,r){return this.style.addSourceType(t,e,r)},a.prototype.removeSource=function(t){return this.style.removeSource(t),this._update(!0)},a.prototype.getSource=function(t){return this.style.getSource(t)},a.prototype.addImage=function(e,r,n){void 0===n&&(n={});var a=n.pixelRatio;void 0===a&&(a=1);var i=n.sdf;if(void 0===i&&(i=!1),r instanceof Pn){var o=t.browser.getImageData(r),s=o.width,l=o.height,c=o.data;this.style.addImage(e,{data:new t.RGBAImage({width:s,height:l},c),pixelRatio:a,sdf:i,version:0})}else{if(void 0===r.width||void 0===r.height)return this.fire(new t.ErrorEvent(new Error(\"Invalid arguments to map.addImage(). The second argument must be an `HTMLImageElement`, `ImageData`, or object with `width`, `height`, and `data` properties with the same format as `ImageData`\")));var u=r.width,h=r.height,f=r.data,p=r;this.style.addImage(e,{data:new t.RGBAImage({width:u,height:h},new Uint8Array(f)),pixelRatio:a,sdf:i,version:0,userImage:p}),p.onAdd&&p.onAdd(this,e)}},a.prototype.updateImage=function(e,r){var n=this.style.getImage(e);if(!n)return this.fire(new t.ErrorEvent(new Error(\"The map has no image with that id. If you are adding a new image use `map.addImage(...)` instead.\")));var a=r instanceof Pn?t.browser.getImageData(r):r,i=a.width,o=a.height,s=a.data;if(void 0===i||void 0===o)return this.fire(new t.ErrorEvent(new Error(\"Invalid arguments to map.updateImage(). The second argument must be an `HTMLImageElement`, `ImageData`, or object with `width`, `height`, and `data` properties with the same format as `ImageData`\")));if(i!==n.data.width||o!==n.data.height)return this.fire(new t.ErrorEvent(new Error(\"The width and height of the updated image must be that same as the previous version of the image\")));var l=!(r instanceof Pn);n.data.replace(s,l),this.style.updateImage(e,n)},a.prototype.hasImage=function(e){return e?!!this.style.getImage(e):(this.fire(new t.ErrorEvent(new Error(\"Missing required image id\"))),!1)},a.prototype.removeImage=function(t){this.style.removeImage(t)},a.prototype.loadImage=function(e,r){t.getImage(this._requestManager.transformRequest(e,t.ResourceType.Image),r)},a.prototype.listImages=function(){return this.style.listImages()},a.prototype.addLayer=function(t,e){return this.style.addLayer(t,e),this._update(!0)},a.prototype.moveLayer=function(t,e){return this.style.moveLayer(t,e),this._update(!0)},a.prototype.removeLayer=function(t){return this.style.removeLayer(t),this._update(!0)},a.prototype.getLayer=function(t){return this.style.getLayer(t)},a.prototype.setFilter=function(t,e,r){return void 0===r&&(r={}),this.style.setFilter(t,e,r),this._update(!0)},a.prototype.setLayerZoomRange=function(t,e,r){return this.style.setLayerZoomRange(t,e,r),this._update(!0)},a.prototype.getFilter=function(t){return this.style.getFilter(t)},a.prototype.setPaintProperty=function(t,e,r,n){return void 0===n&&(n={}),this.style.setPaintProperty(t,e,r,n),this._update(!0)},a.prototype.getPaintProperty=function(t,e){return this.style.getPaintProperty(t,e)},a.prototype.setLayoutProperty=function(t,e,r,n){return void 0===n&&(n={}),this.style.setLayoutProperty(t,e,r,n),this._update(!0)},a.prototype.getLayoutProperty=function(t,e){return this.style.getLayoutProperty(t,e)},a.prototype.setLight=function(t,e){return void 0===e&&(e={}),this.style.setLight(t,e),this._update(!0)},a.prototype.getLight=function(){return this.style.getLight()},a.prototype.setFeatureState=function(t,e){return this.style.setFeatureState(t,e),this._update()},a.prototype.removeFeatureState=function(t,e){return this.style.removeFeatureState(t,e),this._update()},a.prototype.getFeatureState=function(t){return this.style.getFeatureState(t)},a.prototype.getContainer=function(){return this._container},a.prototype.getCanvasContainer=function(){return this._canvasContainer},a.prototype.getCanvas=function(){return this._canvas},a.prototype._containerDimensions=function(){var t=0,e=0;return this._container&&(t=this._container.clientWidth||400,e=this._container.clientHeight||300),[t,e]},a.prototype._detectMissingCSS=function(){\"rgb(250, 128, 114)\"!==t.window.getComputedStyle(this._missingCSSCanary).getPropertyValue(\"background-color\")&&t.warnOnce(\"This page appears to be missing CSS declarations for Mapbox GL JS, which may cause the map to display incorrectly. Please ensure your page includes mapbox-gl.css, as described in https://www.mapbox.com/mapbox-gl-js/api/.\")},a.prototype._setupContainer=function(){var t=this._container;t.classList.add(\"mapboxgl-map\"),(this._missingCSSCanary=r.create(\"div\",\"mapboxgl-canary\",t)).style.visibility=\"hidden\",this._detectMissingCSS();var e=this._canvasContainer=r.create(\"div\",\"mapboxgl-canvas-container\",t);this._interactive&&e.classList.add(\"mapboxgl-interactive\"),this._canvas=r.create(\"canvas\",\"mapboxgl-canvas\",e),this._canvas.style.position=\"absolute\",this._canvas.addEventListener(\"webglcontextlost\",this._contextLost,!1),this._canvas.addEventListener(\"webglcontextrestored\",this._contextRestored,!1),this._canvas.setAttribute(\"tabindex\",\"0\"),this._canvas.setAttribute(\"aria-label\",\"Map\");var n=this._containerDimensions();this._resizeCanvas(n[0],n[1]);var a=this._controlContainer=r.create(\"div\",\"mapboxgl-control-container\",t),i=this._controlPositions={};[\"top-left\",\"top-right\",\"bottom-left\",\"bottom-right\"].forEach(function(t){i[t]=r.create(\"div\",\"mapboxgl-ctrl-\"+t,a)})},a.prototype._resizeCanvas=function(e,r){var n=t.window.devicePixelRatio||1;this._canvas.width=n*e,this._canvas.height=n*r,this._canvas.style.width=e+\"px\",this._canvas.style.height=r+\"px\"},a.prototype._setupPainter=function(){var r=t.extend({},e.webGLContextAttributes,{failIfMajorPerformanceCaveat:this._failIfMajorPerformanceCaveat,preserveDrawingBuffer:this._preserveDrawingBuffer,antialias:this._antialias||!1}),n=this._canvas.getContext(\"webgl\",r)||this._canvas.getContext(\"experimental-webgl\",r);n?(this.painter=new an(n,this.transform),t.webpSupported.testSupport(n)):this.fire(new t.ErrorEvent(new Error(\"Failed to initialize WebGL\")))},a.prototype._contextLost=function(e){e.preventDefault(),this._frame&&(this._frame.cancel(),this._frame=null),this.fire(new t.Event(\"webglcontextlost\",{originalEvent:e}))},a.prototype._contextRestored=function(e){this._setupPainter(),this.resize(),this._update(),this.fire(new t.Event(\"webglcontextrestored\",{originalEvent:e}))},a.prototype.loaded=function(){return!this._styleDirty&&!this._sourcesDirty&&!!this.style&&this.style.loaded()},a.prototype._update=function(t){return this.style?(this._styleDirty=this._styleDirty||t,this._sourcesDirty=!0,this.triggerRepaint(),this):this},a.prototype._requestRenderFrame=function(t){return this._update(),this._renderTaskQueue.add(t)},a.prototype._cancelRenderFrame=function(t){this._renderTaskQueue.remove(t)},a.prototype._render=function(){this.painter.context.setDirty(),this.painter.setBaseState(),this._renderTaskQueue.run();var e=!1;if(this.style&&this._styleDirty){this._styleDirty=!1;var r=this.transform.zoom,n=t.browser.now();this.style.zoomHistory.update(r,n);var a=new t.EvaluationParameters(r,{now:n,fadeDuration:this._fadeDuration,zoomHistory:this.style.zoomHistory,transition:this.style.getTransition()}),i=a.crossFadingFactor();1===i&&i===this._crossFadingFactor||(e=!0,this._crossFadingFactor=i),this.style.update(a)}return this.style&&this._sourcesDirty&&(this._sourcesDirty=!1,this.style._updateSources(this.transform)),this._placementDirty=this.style&&this.style._updatePlacement(this.painter.transform,this.showCollisionBoxes,this._fadeDuration,this._crossSourceCollisions),this.painter.render(this.style,{showTileBoundaries:this.showTileBoundaries,showOverdrawInspector:this._showOverdrawInspector,rotating:this.isRotating(),zooming:this.isZooming(),moving:this.isMoving(),fadeDuration:this._fadeDuration}),this.fire(new t.Event(\"render\")),this.loaded()&&!this._loaded&&(this._loaded=!0,this.fire(new t.Event(\"load\"))),this.style&&(this.style.hasTransitions()||e)&&(this._styleDirty=!0),this.style&&!this._placementDirty&&this.style._releaseSymbolFadeTiles(),this._sourcesDirty||this._repaint||this._styleDirty||this._placementDirty?this.triggerRepaint():!this.isMoving()&&this.loaded()&&this.fire(new t.Event(\"idle\")),this},a.prototype.remove=function(){this._hash&&this._hash.remove();for(var e=0,r=this._controls;e<r.length;e+=1)r[e].onRemove(this);this._controls=[],this._frame&&(this._frame.cancel(),this._frame=null),this._renderTaskQueue.clear(),this.setStyle(null),void 0!==t.window&&(t.window.removeEventListener(\"resize\",this._onWindowResize,!1),t.window.removeEventListener(\"online\",this._onWindowOnline,!1));var n=this.painter.context.gl.getExtension(\"WEBGL_lose_context\");n&&n.loseContext(),Dn(this._canvasContainer),Dn(this._controlContainer),Dn(this._missingCSSCanary),this._container.classList.remove(\"mapboxgl-map\"),this.fire(new t.Event(\"remove\"))},a.prototype.triggerRepaint=function(){var e=this;this.style&&!this._frame&&(this._frame=t.browser.frame(function(){e._frame=null,e._render()}))},a.prototype._onWindowOnline=function(){this._update()},a.prototype._onWindowResize=function(){this._trackResize&&this.resize()._update()},i.showTileBoundaries.get=function(){return!!this._showTileBoundaries},i.showTileBoundaries.set=function(t){this._showTileBoundaries!==t&&(this._showTileBoundaries=t,this._update())},i.showCollisionBoxes.get=function(){return!!this._showCollisionBoxes},i.showCollisionBoxes.set=function(t){this._showCollisionBoxes!==t&&(this._showCollisionBoxes=t,t?this.style._generateCollisionBoxes():this._update())},i.showOverdrawInspector.get=function(){return!!this._showOverdrawInspector},i.showOverdrawInspector.set=function(t){this._showOverdrawInspector!==t&&(this._showOverdrawInspector=t,this._update())},i.repaint.get=function(){return!!this._repaint},i.repaint.set=function(t){this._repaint!==t&&(this._repaint=t,this.triggerRepaint())},i.vertices.get=function(){return!!this._vertices},i.vertices.set=function(t){this._vertices=t,this._update()},a.prototype._setCacheLimits=function(e,r){t.setCacheLimits(e,r)},i.version.get=function(){return t.version},Object.defineProperties(a.prototype,i),a}(Sn);function Dn(t){t.parentNode&&t.parentNode.removeChild(t)}var Rn={showCompass:!0,showZoom:!0,visualizePitch:!1},Fn=function(e){var n=this;this.options=t.extend({},Rn,e),this._container=r.create(\"div\",\"mapboxgl-ctrl mapboxgl-ctrl-group\"),this._container.addEventListener(\"contextmenu\",function(t){return t.preventDefault()}),this.options.showZoom&&(t.bindAll([\"_updateZoomButtons\"],this),this._zoomInButton=this._createButton(\"mapboxgl-ctrl-icon mapboxgl-ctrl-zoom-in\",\"Zoom in\",function(){return n._map.zoomIn()}),this._zoomOutButton=this._createButton(\"mapboxgl-ctrl-icon mapboxgl-ctrl-zoom-out\",\"Zoom out\",function(){return n._map.zoomOut()})),this.options.showCompass&&(t.bindAll([\"_rotateCompassArrow\"],this),this._compass=this._createButton(\"mapboxgl-ctrl-icon mapboxgl-ctrl-compass\",\"Reset bearing to north\",function(){n.options.visualizePitch?n._map.resetNorthPitch():n._map.resetNorth()}),this._compassArrow=r.create(\"span\",\"mapboxgl-ctrl-compass-arrow\",this._compass))};function Bn(e,r,n){if(e=new t.LngLat(e.lng,e.lat),r){var a=new t.LngLat(e.lng-360,e.lat),i=new t.LngLat(e.lng+360,e.lat),o=n.locationPoint(e).distSqr(r);n.locationPoint(a).distSqr(r)<o?e=a:n.locationPoint(i).distSqr(r)<o&&(e=i)}for(;Math.abs(e.lng-n.center.lng)>180;){var s=n.locationPoint(e);if(s.x>=0&&s.y>=0&&s.x<=n.width&&s.y<=n.height)break;e.lng>n.center.lng?e.lng-=360:e.lng+=360}return e}Fn.prototype._updateZoomButtons=function(){var t=this._map.getZoom();t===this._map.getMaxZoom()?this._zoomInButton.classList.add(\"mapboxgl-ctrl-icon-disabled\"):this._zoomInButton.classList.remove(\"mapboxgl-ctrl-icon-disabled\"),t===this._map.getMinZoom()?this._zoomOutButton.classList.add(\"mapboxgl-ctrl-icon-disabled\"):this._zoomOutButton.classList.remove(\"mapboxgl-ctrl-icon-disabled\")},Fn.prototype._rotateCompassArrow=function(){var t=this.options.visualizePitch?\"scale(\"+1/Math.pow(Math.cos(this._map.transform.pitch*(Math.PI/180)),.5)+\") rotateX(\"+this._map.transform.pitch+\"deg) rotateZ(\"+this._map.transform.angle*(180/Math.PI)+\"deg)\":\"rotate(\"+this._map.transform.angle*(180/Math.PI)+\"deg)\";this._compassArrow.style.transform=t},Fn.prototype.onAdd=function(t){return this._map=t,this.options.showZoom&&(this._map.on(\"zoom\",this._updateZoomButtons),this._updateZoomButtons()),this.options.showCompass&&(this.options.visualizePitch&&this._map.on(\"pitch\",this._rotateCompassArrow),this._map.on(\"rotate\",this._rotateCompassArrow),this._rotateCompassArrow(),this._handler=new yn(t,{button:\"left\",element:this._compass}),r.addEventListener(this._compass,\"mousedown\",this._handler.onMouseDown),r.addEventListener(this._compass,\"touchstart\",this._handler.onMouseDown,{passive:!1}),this._handler.enable()),this._container},Fn.prototype.onRemove=function(){r.remove(this._container),this.options.showZoom&&this._map.off(\"zoom\",this._updateZoomButtons),this.options.showCompass&&(this.options.visualizePitch&&this._map.off(\"pitch\",this._rotateCompassArrow),this._map.off(\"rotate\",this._rotateCompassArrow),r.removeEventListener(this._compass,\"mousedown\",this._handler.onMouseDown),r.removeEventListener(this._compass,\"touchstart\",this._handler.onMouseDown,{passive:!1}),this._handler.disable(),delete this._handler),delete this._map},Fn.prototype._createButton=function(t,e,n){var a=r.create(\"button\",t,this._container);return a.type=\"button\",a.title=e,a.setAttribute(\"aria-label\",e),a.addEventListener(\"click\",n),a};var Nn={center:\"translate(-50%,-50%)\",top:\"translate(-50%,0)\",\"top-left\":\"translate(0,0)\",\"top-right\":\"translate(-100%,0)\",bottom:\"translate(-50%,-100%)\",\"bottom-left\":\"translate(0,-100%)\",\"bottom-right\":\"translate(-100%,-100%)\",left:\"translate(0,-50%)\",right:\"translate(-100%,-50%)\"};function jn(t,e,r){var n=t.classList;for(var a in Nn)n.remove(\"mapboxgl-\"+r+\"-anchor-\"+a);n.add(\"mapboxgl-\"+r+\"-anchor-\"+e)}var Vn,Un=function(e){function n(n,a){if(e.call(this),(n instanceof t.window.HTMLElement||a)&&(n=t.extend({element:n},a)),t.bindAll([\"_update\",\"_onMove\",\"_onUp\",\"_addDragHandler\",\"_onMapClick\"],this),this._anchor=n&&n.anchor||\"center\",this._color=n&&n.color||\"#3FB1CE\",this._draggable=n&&n.draggable||!1,this._state=\"inactive\",n&&n.element)this._element=n.element,this._offset=t.Point.convert(n&&n.offset||[0,0]);else{this._defaultMarker=!0,this._element=r.create(\"div\");var i=r.createNS(\"http://www.w3.org/2000/svg\",\"svg\");i.setAttributeNS(null,\"display\",\"block\"),i.setAttributeNS(null,\"height\",\"41px\"),i.setAttributeNS(null,\"width\",\"27px\"),i.setAttributeNS(null,\"viewBox\",\"0 0 27 41\");var o=r.createNS(\"http://www.w3.org/2000/svg\",\"g\");o.setAttributeNS(null,\"stroke\",\"none\"),o.setAttributeNS(null,\"stroke-width\",\"1\"),o.setAttributeNS(null,\"fill\",\"none\"),o.setAttributeNS(null,\"fill-rule\",\"evenodd\");var s=r.createNS(\"http://www.w3.org/2000/svg\",\"g\");s.setAttributeNS(null,\"fill-rule\",\"nonzero\");var l=r.createNS(\"http://www.w3.org/2000/svg\",\"g\");l.setAttributeNS(null,\"transform\",\"translate(3.0, 29.0)\"),l.setAttributeNS(null,\"fill\",\"#000000\");for(var c=0,u=[{rx:\"10.5\",ry:\"5.25002273\"},{rx:\"10.5\",ry:\"5.25002273\"},{rx:\"9.5\",ry:\"4.77275007\"},{rx:\"8.5\",ry:\"4.29549936\"},{rx:\"7.5\",ry:\"3.81822308\"},{rx:\"6.5\",ry:\"3.34094679\"},{rx:\"5.5\",ry:\"2.86367051\"},{rx:\"4.5\",ry:\"2.38636864\"}];c<u.length;c+=1){var h=u[c],f=r.createNS(\"http://www.w3.org/2000/svg\",\"ellipse\");f.setAttributeNS(null,\"opacity\",\"0.04\"),f.setAttributeNS(null,\"cx\",\"10.5\"),f.setAttributeNS(null,\"cy\",\"5.80029008\"),f.setAttributeNS(null,\"rx\",h.rx),f.setAttributeNS(null,\"ry\",h.ry),l.appendChild(f)}var p=r.createNS(\"http://www.w3.org/2000/svg\",\"g\");p.setAttributeNS(null,\"fill\",this._color);var d=r.createNS(\"http://www.w3.org/2000/svg\",\"path\");d.setAttributeNS(null,\"d\",\"M27,13.5 C27,19.074644 20.250001,27.000002 14.75,34.500002 C14.016665,35.500004 12.983335,35.500004 12.25,34.500002 C6.7499993,27.000002 0,19.222562 0,13.5 C0,6.0441559 6.0441559,0 13.5,0 C20.955844,0 27,6.0441559 27,13.5 Z\"),p.appendChild(d);var g=r.createNS(\"http://www.w3.org/2000/svg\",\"g\");g.setAttributeNS(null,\"opacity\",\"0.25\"),g.setAttributeNS(null,\"fill\",\"#000000\");var v=r.createNS(\"http://www.w3.org/2000/svg\",\"path\");v.setAttributeNS(null,\"d\",\"M13.5,0 C6.0441559,0 0,6.0441559 0,13.5 C0,19.222562 6.7499993,27 12.25,34.5 C13,35.522727 14.016664,35.500004 14.75,34.5 C20.250001,27 27,19.074644 27,13.5 C27,6.0441559 20.955844,0 13.5,0 Z M13.5,1 C20.415404,1 26,6.584596 26,13.5 C26,15.898657 24.495584,19.181431 22.220703,22.738281 C19.945823,26.295132 16.705119,30.142167 13.943359,33.908203 C13.743445,34.180814 13.612715,34.322738 13.5,34.441406 C13.387285,34.322738 13.256555,34.180814 13.056641,33.908203 C10.284481,30.127985 7.4148684,26.314159 5.015625,22.773438 C2.6163816,19.232715 1,15.953538 1,13.5 C1,6.584596 6.584596,1 13.5,1 Z\"),g.appendChild(v);var m=r.createNS(\"http://www.w3.org/2000/svg\",\"g\");m.setAttributeNS(null,\"transform\",\"translate(6.0, 7.0)\"),m.setAttributeNS(null,\"fill\",\"#FFFFFF\");var y=r.createNS(\"http://www.w3.org/2000/svg\",\"g\");y.setAttributeNS(null,\"transform\",\"translate(8.0, 8.0)\");var x=r.createNS(\"http://www.w3.org/2000/svg\",\"circle\");x.setAttributeNS(null,\"fill\",\"#000000\"),x.setAttributeNS(null,\"opacity\",\"0.25\"),x.setAttributeNS(null,\"cx\",\"5.5\"),x.setAttributeNS(null,\"cy\",\"5.5\"),x.setAttributeNS(null,\"r\",\"5.4999962\");var b=r.createNS(\"http://www.w3.org/2000/svg\",\"circle\");b.setAttributeNS(null,\"fill\",\"#FFFFFF\"),b.setAttributeNS(null,\"cx\",\"5.5\"),b.setAttributeNS(null,\"cy\",\"5.5\"),b.setAttributeNS(null,\"r\",\"5.4999962\"),y.appendChild(x),y.appendChild(b),s.appendChild(l),s.appendChild(p),s.appendChild(g),s.appendChild(m),s.appendChild(y),i.appendChild(s),this._element.appendChild(i),this._offset=t.Point.convert(n&&n.offset||[0,-14])}this._element.classList.add(\"mapboxgl-marker\"),this._element.addEventListener(\"dragstart\",function(t){t.preventDefault()}),jn(this._element,this._anchor,\"marker\"),this._popup=null}return e&&(n.__proto__=e),n.prototype=Object.create(e&&e.prototype),n.prototype.constructor=n,n.prototype.addTo=function(t){return this.remove(),this._map=t,t.getCanvasContainer().appendChild(this._element),t.on(\"move\",this._update),t.on(\"moveend\",this._update),this.setDraggable(this._draggable),this._update(),this._map.on(\"click\",this._onMapClick),this},n.prototype.remove=function(){return this._map&&(this._map.off(\"click\",this._onMapClick),this._map.off(\"move\",this._update),this._map.off(\"moveend\",this._update),this._map.off(\"mousedown\",this._addDragHandler),this._map.off(\"touchstart\",this._addDragHandler),this._map.off(\"mouseup\",this._onUp),this._map.off(\"touchend\",this._onUp),this._map.off(\"mousemove\",this._onMove),this._map.off(\"touchmove\",this._onMove),delete this._map),r.remove(this._element),this._popup&&this._popup.remove(),this},n.prototype.getLngLat=function(){return this._lngLat},n.prototype.setLngLat=function(e){return this._lngLat=t.LngLat.convert(e),this._pos=null,this._popup&&this._popup.setLngLat(this._lngLat),this._update(),this},n.prototype.getElement=function(){return this._element},n.prototype.setPopup=function(t){if(this._popup&&(this._popup.remove(),this._popup=null),t){if(!(\"offset\"in t.options)){var e=Math.sqrt(Math.pow(13.5,2)/2);t.options.offset=this._defaultMarker?{top:[0,0],\"top-left\":[0,0],\"top-right\":[0,0],bottom:[0,-38.1],\"bottom-left\":[e,-1*(24.6+e)],\"bottom-right\":[-e,-1*(24.6+e)],left:[13.5,-24.6],right:[-13.5,-24.6]}:this._offset}this._popup=t,this._lngLat&&this._popup.setLngLat(this._lngLat)}return this},n.prototype._onMapClick=function(t){var e=t.originalEvent.target,r=this._element;this._popup&&(e===r||r.contains(e))&&this.togglePopup()},n.prototype.getPopup=function(){return this._popup},n.prototype.togglePopup=function(){var t=this._popup;return t?(t.isOpen()?t.remove():t.addTo(this._map),this):this},n.prototype._update=function(t){this._map&&(this._map.transform.renderWorldCopies&&(this._lngLat=Bn(this._lngLat,this._pos,this._map.transform)),this._pos=this._map.project(this._lngLat)._add(this._offset),t&&\"moveend\"!==t.type||(this._pos=this._pos.round()),r.setTransform(this._element,Nn[this._anchor]+\" translate(\"+this._pos.x+\"px, \"+this._pos.y+\"px)\"))},n.prototype.getOffset=function(){return this._offset},n.prototype.setOffset=function(e){return this._offset=t.Point.convert(e),this._update(),this},n.prototype._onMove=function(e){this._pos=e.point.sub(this._positionDelta),this._lngLat=this._map.unproject(this._pos),this.setLngLat(this._lngLat),this._element.style.pointerEvents=\"none\",\"pending\"===this._state&&(this._state=\"active\",this.fire(new t.Event(\"dragstart\"))),this.fire(new t.Event(\"drag\"))},n.prototype._onUp=function(){this._element.style.pointerEvents=\"auto\",this._positionDelta=null,this._map.off(\"mousemove\",this._onMove),this._map.off(\"touchmove\",this._onMove),\"active\"===this._state&&this.fire(new t.Event(\"dragend\")),this._state=\"inactive\"},n.prototype._addDragHandler=function(t){this._element.contains(t.originalEvent.target)&&(t.preventDefault(),this._positionDelta=t.point.sub(this._pos).add(this._offset),this._state=\"pending\",this._map.on(\"mousemove\",this._onMove),this._map.on(\"touchmove\",this._onMove),this._map.once(\"mouseup\",this._onUp),this._map.once(\"touchend\",this._onUp))},n.prototype.setDraggable=function(t){return this._draggable=!!t,this._map&&(t?(this._map.on(\"mousedown\",this._addDragHandler),this._map.on(\"touchstart\",this._addDragHandler)):(this._map.off(\"mousedown\",this._addDragHandler),this._map.off(\"touchstart\",this._addDragHandler))),this},n.prototype.isDraggable=function(){return this._draggable},n}(t.Evented),qn={positionOptions:{enableHighAccuracy:!1,maximumAge:0,timeout:6e3},fitBoundsOptions:{maxZoom:15},trackUserLocation:!1,showUserLocation:!0},Hn=function(e){function n(r){e.call(this),this.options=t.extend({},qn,r),t.bindAll([\"_onSuccess\",\"_onError\",\"_finish\",\"_setupUI\",\"_updateCamera\",\"_updateMarker\"],this)}return e&&(n.__proto__=e),n.prototype=Object.create(e&&e.prototype),n.prototype.constructor=n,n.prototype.onAdd=function(e){var n;return this._map=e,this._container=r.create(\"div\",\"mapboxgl-ctrl mapboxgl-ctrl-group\"),n=this._setupUI,void 0!==Vn?n(Vn):void 0!==t.window.navigator.permissions?t.window.navigator.permissions.query({name:\"geolocation\"}).then(function(t){Vn=\"denied\"!==t.state,n(Vn)}):(Vn=!!t.window.navigator.geolocation,n(Vn)),this._container},n.prototype.onRemove=function(){void 0!==this._geolocationWatchID&&(t.window.navigator.geolocation.clearWatch(this._geolocationWatchID),this._geolocationWatchID=void 0),this.options.showUserLocation&&this._userLocationDotMarker&&this._userLocationDotMarker.remove(),r.remove(this._container),this._map=void 0},n.prototype._onSuccess=function(e){if(this.options.trackUserLocation)switch(this._lastKnownPosition=e,this._watchState){case\"WAITING_ACTIVE\":case\"ACTIVE_LOCK\":case\"ACTIVE_ERROR\":this._watchState=\"ACTIVE_LOCK\",this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-waiting\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-active-error\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-active\");break;case\"BACKGROUND\":case\"BACKGROUND_ERROR\":this._watchState=\"BACKGROUND\",this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-waiting\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-background-error\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-background\")}this.options.showUserLocation&&\"OFF\"!==this._watchState&&this._updateMarker(e),this.options.trackUserLocation&&\"ACTIVE_LOCK\"!==this._watchState||this._updateCamera(e),this.options.showUserLocation&&this._dotElement.classList.remove(\"mapboxgl-user-location-dot-stale\"),this.fire(new t.Event(\"geolocate\",e)),this._finish()},n.prototype._updateCamera=function(e){var r=new t.LngLat(e.coords.longitude,e.coords.latitude),n=e.coords.accuracy,a=this._map.getBearing(),i=t.extend({bearing:a},this.options.fitBoundsOptions);this._map.fitBounds(r.toBounds(n),i,{geolocateSource:!0})},n.prototype._updateMarker=function(t){t?this._userLocationDotMarker.setLngLat([t.coords.longitude,t.coords.latitude]).addTo(this._map):this._userLocationDotMarker.remove()},n.prototype._onError=function(e){if(this.options.trackUserLocation)if(1===e.code)this._watchState=\"OFF\",this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-waiting\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-active\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-active-error\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-background\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-background-error\"),void 0!==this._geolocationWatchID&&this._clearWatch();else switch(this._watchState){case\"WAITING_ACTIVE\":this._watchState=\"ACTIVE_ERROR\",this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-active\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-active-error\");break;case\"ACTIVE_LOCK\":this._watchState=\"ACTIVE_ERROR\",this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-active\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-active-error\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-waiting\");break;case\"BACKGROUND\":this._watchState=\"BACKGROUND_ERROR\",this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-background\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-background-error\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-waiting\")}\"OFF\"!==this._watchState&&this.options.showUserLocation&&this._dotElement.classList.add(\"mapboxgl-user-location-dot-stale\"),this.fire(new t.Event(\"error\",e)),this._finish()},n.prototype._finish=function(){this._timeoutId&&clearTimeout(this._timeoutId),this._timeoutId=void 0},n.prototype._setupUI=function(e){var n=this;!1!==e?(this._container.addEventListener(\"contextmenu\",function(t){return t.preventDefault()}),this._geolocateButton=r.create(\"button\",\"mapboxgl-ctrl-icon mapboxgl-ctrl-geolocate\",this._container),this._geolocateButton.type=\"button\",this._geolocateButton.setAttribute(\"aria-label\",\"Geolocate\"),this.options.trackUserLocation&&(this._geolocateButton.setAttribute(\"aria-pressed\",\"false\"),this._watchState=\"OFF\"),this.options.showUserLocation&&(this._dotElement=r.create(\"div\",\"mapboxgl-user-location-dot\"),this._userLocationDotMarker=new Un(this._dotElement),this.options.trackUserLocation&&(this._watchState=\"OFF\")),this._geolocateButton.addEventListener(\"click\",this.trigger.bind(this)),this._setup=!0,this.options.trackUserLocation&&this._map.on(\"movestart\",function(e){e.geolocateSource||\"ACTIVE_LOCK\"!==n._watchState||(n._watchState=\"BACKGROUND\",n._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-background\"),n._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-active\"),n.fire(new t.Event(\"trackuserlocationend\")))})):t.warnOnce(\"Geolocation support is not available, the GeolocateControl will not be visible.\")},n.prototype.trigger=function(){if(!this._setup)return t.warnOnce(\"Geolocate control triggered before added to a map\"),!1;if(this.options.trackUserLocation){switch(this._watchState){case\"OFF\":this._watchState=\"WAITING_ACTIVE\",this.fire(new t.Event(\"trackuserlocationstart\"));break;case\"WAITING_ACTIVE\":case\"ACTIVE_LOCK\":case\"ACTIVE_ERROR\":case\"BACKGROUND_ERROR\":this._watchState=\"OFF\",this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-waiting\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-active\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-active-error\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-background\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-background-error\"),this.fire(new t.Event(\"trackuserlocationend\"));break;case\"BACKGROUND\":this._watchState=\"ACTIVE_LOCK\",this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-background\"),this._lastKnownPosition&&this._updateCamera(this._lastKnownPosition),this.fire(new t.Event(\"trackuserlocationstart\"))}switch(this._watchState){case\"WAITING_ACTIVE\":this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-waiting\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-active\");break;case\"ACTIVE_LOCK\":this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-active\");break;case\"ACTIVE_ERROR\":this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-waiting\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-active-error\");break;case\"BACKGROUND\":this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-background\");break;case\"BACKGROUND_ERROR\":this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-waiting\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-background-error\")}\"OFF\"===this._watchState&&void 0!==this._geolocationWatchID?this._clearWatch():void 0===this._geolocationWatchID&&(this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-waiting\"),this._geolocateButton.setAttribute(\"aria-pressed\",\"true\"),this._geolocationWatchID=t.window.navigator.geolocation.watchPosition(this._onSuccess,this._onError,this.options.positionOptions))}else t.window.navigator.geolocation.getCurrentPosition(this._onSuccess,this._onError,this.options.positionOptions),this._timeoutId=setTimeout(this._finish,1e4);return!0},n.prototype._clearWatch=function(){t.window.navigator.geolocation.clearWatch(this._geolocationWatchID),this._geolocationWatchID=void 0,this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-waiting\"),this._geolocateButton.setAttribute(\"aria-pressed\",\"false\"),this.options.showUserLocation&&this._updateMarker(null)},n}(t.Evented),Gn={maxWidth:100,unit:\"metric\"},Yn=function(e){this.options=t.extend({},Gn,e),t.bindAll([\"_onMove\",\"setUnit\"],this)};function Wn(t,e,r){var n,a,i,o,s,l,c=r&&r.maxWidth||100,u=t._container.clientHeight/2,h=(n=t.unproject([0,u]),a=t.unproject([c,u]),i=Math.PI/180,o=n.lat*i,s=a.lat*i,l=Math.sin(o)*Math.sin(s)+Math.cos(o)*Math.cos(s)*Math.cos((a.lng-n.lng)*i),6371e3*Math.acos(Math.min(l,1)));if(r&&\"imperial\"===r.unit){var f=3.2808*h;f>5280?Xn(e,c,f/5280,\"mi\"):Xn(e,c,f,\"ft\")}else r&&\"nautical\"===r.unit?Xn(e,c,h/1852,\"nm\"):Xn(e,c,h,\"m\")}function Xn(t,e,r,n){var a,i,o,s=(a=r,(i=Math.pow(10,(\"\"+Math.floor(a)).length-1))*(o=(o=a/i)>=10?10:o>=5?5:o>=3?3:o>=2?2:o>=1?1:function(t){var e=Math.pow(10,Math.ceil(-Math.log(t)/Math.LN10));return Math.round(t*e)/e}(o))),l=s/r;\"m\"===n&&s>=1e3&&(s/=1e3,n=\"km\"),t.style.width=e*l+\"px\",t.innerHTML=s+n}Yn.prototype.getDefaultPosition=function(){return\"bottom-left\"},Yn.prototype._onMove=function(){Wn(this._map,this._container,this.options)},Yn.prototype.onAdd=function(t){return this._map=t,this._container=r.create(\"div\",\"mapboxgl-ctrl mapboxgl-ctrl-scale\",t.getContainer()),this._map.on(\"move\",this._onMove),this._onMove(),this._container},Yn.prototype.onRemove=function(){r.remove(this._container),this._map.off(\"move\",this._onMove),this._map=void 0},Yn.prototype.setUnit=function(t){this.options.unit=t,Wn(this._map,this._container,this.options)};var Zn=function(e){this._fullscreen=!1,e&&e.container&&(e.container instanceof t.window.HTMLElement?this._container=e.container:t.warnOnce(\"Full screen control 'container' must be a DOM element.\")),t.bindAll([\"_onClickFullscreen\",\"_changeIcon\"],this),\"onfullscreenchange\"in t.window.document?this._fullscreenchange=\"fullscreenchange\":\"onmozfullscreenchange\"in t.window.document?this._fullscreenchange=\"mozfullscreenchange\":\"onwebkitfullscreenchange\"in t.window.document?this._fullscreenchange=\"webkitfullscreenchange\":\"onmsfullscreenchange\"in t.window.document&&(this._fullscreenchange=\"MSFullscreenChange\"),this._className=\"mapboxgl-ctrl\"};Zn.prototype.onAdd=function(e){return this._map=e,this._container||(this._container=this._map.getContainer()),this._controlContainer=r.create(\"div\",this._className+\" mapboxgl-ctrl-group\"),this._checkFullscreenSupport()?this._setupUI():(this._controlContainer.style.display=\"none\",t.warnOnce(\"This device does not support fullscreen mode.\")),this._controlContainer},Zn.prototype.onRemove=function(){r.remove(this._controlContainer),this._map=null,t.window.document.removeEventListener(this._fullscreenchange,this._changeIcon)},Zn.prototype._checkFullscreenSupport=function(){return!!(t.window.document.fullscreenEnabled||t.window.document.mozFullScreenEnabled||t.window.document.msFullscreenEnabled||t.window.document.webkitFullscreenEnabled)},Zn.prototype._setupUI=function(){(this._fullscreenButton=r.create(\"button\",this._className+\"-icon \"+this._className+\"-fullscreen\",this._controlContainer)).type=\"button\",this._updateTitle(),this._fullscreenButton.addEventListener(\"click\",this._onClickFullscreen),t.window.document.addEventListener(this._fullscreenchange,this._changeIcon)},Zn.prototype._updateTitle=function(){var t=this._isFullscreen()?\"Exit fullscreen\":\"Enter fullscreen\";this._fullscreenButton.setAttribute(\"aria-label\",t),this._fullscreenButton.title=t},Zn.prototype._isFullscreen=function(){return this._fullscreen},Zn.prototype._changeIcon=function(){(t.window.document.fullscreenElement||t.window.document.mozFullScreenElement||t.window.document.webkitFullscreenElement||t.window.document.msFullscreenElement)===this._container!==this._fullscreen&&(this._fullscreen=!this._fullscreen,this._fullscreenButton.classList.toggle(this._className+\"-shrink\"),this._fullscreenButton.classList.toggle(this._className+\"-fullscreen\"),this._updateTitle())},Zn.prototype._onClickFullscreen=function(){this._isFullscreen()?t.window.document.exitFullscreen?t.window.document.exitFullscreen():t.window.document.mozCancelFullScreen?t.window.document.mozCancelFullScreen():t.window.document.msExitFullscreen?t.window.document.msExitFullscreen():t.window.document.webkitCancelFullScreen&&t.window.document.webkitCancelFullScreen():this._container.requestFullscreen?this._container.requestFullscreen():this._container.mozRequestFullScreen?this._container.mozRequestFullScreen():this._container.msRequestFullscreen?this._container.msRequestFullscreen():this._container.webkitRequestFullscreen&&this._container.webkitRequestFullscreen()};var Jn={closeButton:!0,closeOnClick:!0,className:\"\",maxWidth:\"240px\"},Kn=function(e){function n(r){e.call(this),this.options=t.extend(Object.create(Jn),r),t.bindAll([\"_update\",\"_onClickClose\",\"remove\"],this)}return e&&(n.__proto__=e),n.prototype=Object.create(e&&e.prototype),n.prototype.constructor=n,n.prototype.addTo=function(e){var r=this;return this._map=e,this.options.closeOnClick&&this._map.on(\"click\",this._onClickClose),this._map.on(\"remove\",this.remove),this._update(),this._trackPointer?(this._map.on(\"mousemove\",function(t){r._update(t.point)}),this._map.on(\"mouseup\",function(t){r._update(t.point)}),this._container.classList.add(\"mapboxgl-popup-track-pointer\"),this._map._canvasContainer.classList.add(\"mapboxgl-track-pointer\")):this._map.on(\"move\",this._update),this.fire(new t.Event(\"open\")),this},n.prototype.isOpen=function(){return!!this._map},n.prototype.remove=function(){return this._content&&r.remove(this._content),this._container&&(r.remove(this._container),delete this._container),this._map&&(this._map.off(\"move\",this._update),this._map.off(\"click\",this._onClickClose),this._map.off(\"remove\",this.remove),this._map.off(\"mousemove\"),delete this._map),this.fire(new t.Event(\"close\")),this},n.prototype.getLngLat=function(){return this._lngLat},n.prototype.setLngLat=function(e){return this._lngLat=t.LngLat.convert(e),this._pos=null,this._trackPointer=!1,this._update(),this._map&&(this._map.on(\"move\",this._update),this._map.off(\"mousemove\"),this._container.classList.remove(\"mapboxgl-popup-track-pointer\"),this._map._canvasContainer.classList.remove(\"mapboxgl-track-pointer\")),this},n.prototype.trackPointer=function(){var t=this;return this._trackPointer=!0,this._pos=null,this._map&&(this._map.off(\"move\",this._update),this._map.on(\"mousemove\",function(e){t._update(e.point)}),this._map.on(\"drag\",function(e){t._update(e.point)}),this._container.classList.add(\"mapboxgl-popup-track-pointer\"),this._map._canvasContainer.classList.add(\"mapboxgl-track-pointer\")),this},n.prototype.getElement=function(){return this._container},n.prototype.setText=function(e){return this.setDOMContent(t.window.document.createTextNode(e))},n.prototype.setHTML=function(e){var r,n=t.window.document.createDocumentFragment(),a=t.window.document.createElement(\"body\");for(a.innerHTML=e;r=a.firstChild;)n.appendChild(r);return this.setDOMContent(n)},n.prototype.getMaxWidth=function(){return this._container.style.maxWidth},n.prototype.setMaxWidth=function(t){return this.options.maxWidth=t,this._update(),this},n.prototype.setDOMContent=function(t){return this._createContent(),this._content.appendChild(t),this._update(),this},n.prototype._createContent=function(){this._content&&r.remove(this._content),this._content=r.create(\"div\",\"mapboxgl-popup-content\",this._container),this.options.closeButton&&(this._closeButton=r.create(\"button\",\"mapboxgl-popup-close-button\",this._content),this._closeButton.type=\"button\",this._closeButton.setAttribute(\"aria-label\",\"Close popup\"),this._closeButton.innerHTML=\"&#215;\",this._closeButton.addEventListener(\"click\",this._onClickClose))},n.prototype._update=function(e){var n=this,a=this._lngLat||this._trackPointer;if(this._map&&a&&this._content&&(this._container||(this._container=r.create(\"div\",\"mapboxgl-popup\",this._map.getContainer()),this._tip=r.create(\"div\",\"mapboxgl-popup-tip\",this._container),this._container.appendChild(this._content),this.options.className&&this.options.className.split(\" \").forEach(function(t){return n._container.classList.add(t)})),this.options.maxWidth&&this._container.style.maxWidth!==this.options.maxWidth&&(this._container.style.maxWidth=this.options.maxWidth),this._map.transform.renderWorldCopies&&!this._trackPointer&&(this._lngLat=Bn(this._lngLat,this._pos,this._map.transform)),!this._trackPointer||e)){var i=this._pos=this._trackPointer&&e?e:this._map.project(this._lngLat),o=this.options.anchor,s=function e(r){if(r){if(\"number\"==typeof r){var n=Math.round(Math.sqrt(.5*Math.pow(r,2)));return{center:new t.Point(0,0),top:new t.Point(0,r),\"top-left\":new t.Point(n,n),\"top-right\":new t.Point(-n,n),bottom:new t.Point(0,-r),\"bottom-left\":new t.Point(n,-n),\"bottom-right\":new t.Point(-n,-n),left:new t.Point(r,0),right:new t.Point(-r,0)}}if(r instanceof t.Point||Array.isArray(r)){var a=t.Point.convert(r);return{center:a,top:a,\"top-left\":a,\"top-right\":a,bottom:a,\"bottom-left\":a,\"bottom-right\":a,left:a,right:a}}return{center:t.Point.convert(r.center||[0,0]),top:t.Point.convert(r.top||[0,0]),\"top-left\":t.Point.convert(r[\"top-left\"]||[0,0]),\"top-right\":t.Point.convert(r[\"top-right\"]||[0,0]),bottom:t.Point.convert(r.bottom||[0,0]),\"bottom-left\":t.Point.convert(r[\"bottom-left\"]||[0,0]),\"bottom-right\":t.Point.convert(r[\"bottom-right\"]||[0,0]),left:t.Point.convert(r.left||[0,0]),right:t.Point.convert(r.right||[0,0])}}return e(new t.Point(0,0))}(this.options.offset);if(!o){var l,c=this._container.offsetWidth,u=this._container.offsetHeight;l=i.y+s.bottom.y<u?[\"top\"]:i.y>this._map.transform.height-u?[\"bottom\"]:[],i.x<c/2?l.push(\"left\"):i.x>this._map.transform.width-c/2&&l.push(\"right\"),o=0===l.length?\"bottom\":l.join(\"-\")}var h=i.add(s[o]).round();r.setTransform(this._container,Nn[o]+\" translate(\"+h.x+\"px,\"+h.y+\"px)\"),jn(this._container,o,\"popup\")}},n.prototype._onClickClose=function(){this.remove()},n}(t.Evented),Qn={version:t.version,supported:e,setRTLTextPlugin:t.setRTLTextPlugin,Map:zn,NavigationControl:Fn,GeolocateControl:Hn,AttributionControl:En,ScaleControl:Yn,FullscreenControl:Zn,Popup:Kn,Marker:Un,Style:Re,LngLat:t.LngLat,LngLatBounds:t.LngLatBounds,Point:t.Point,MercatorCoordinate:t.MercatorCoordinate,Evented:t.Evented,config:t.config,get accessToken(){return t.config.ACCESS_TOKEN},set accessToken(e){t.config.ACCESS_TOKEN=e},get baseApiUrl(){return t.config.API_URL},set baseApiUrl(e){t.config.API_URL=e},get workerCount(){return zt.workerCount},set workerCount(t){zt.workerCount=t},get maxParallelImageRequests(){return t.config.MAX_PARALLEL_IMAGE_REQUESTS},set maxParallelImageRequests(e){t.config.MAX_PARALLEL_IMAGE_REQUESTS=e},clearStorage:function(e){t.clearTileCache(e)},workerUrl:\"\"};return Qn}),r},\"object\"==typeof r&&\"undefined\"!=typeof e?e.exports=a():(n=n||self).mapboxgl=a()},{}],428:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=1<<t+1,r=new Array(e),n=0;n<e;++n)r[n]=i(t,n);return r};var n=t(\"convex-hull\");function a(t,e,r){for(var n=new Array(t),a=0;a<t;++a)n[a]=0,a===e&&(n[a]+=.5),a===r&&(n[a]+=.5);return n}function i(t,e){if(0===e||e===(1<<t+1)-1)return[];for(var r=[],i=[],o=0;o<=t;++o)if(e&1<<o){r.push(a(t,o-1,o-1)),i.push(null);for(var s=0;s<=t;++s)~e&1<<s&&(r.push(a(t,o-1,s-1)),i.push([o,s]))}var l=n(r),c=[];t:for(o=0;o<l.length;++o){var u=l[o],h=[];for(s=0;s<u.length;++s){if(!i[u[s]])continue t;h.push(i[u[s]].slice())}c.push(h)}return c}},{\"convex-hull\":131}],429:[function(t,e,r){var n=t(\"./normalize\"),a=t(\"gl-mat4/create\"),i=t(\"gl-mat4/clone\"),o=t(\"gl-mat4/determinant\"),s=t(\"gl-mat4/invert\"),l=t(\"gl-mat4/transpose\"),c={length:t(\"gl-vec3/length\"),normalize:t(\"gl-vec3/normalize\"),dot:t(\"gl-vec3/dot\"),cross:t(\"gl-vec3/cross\")},u=a(),h=a(),f=[0,0,0,0],p=[[0,0,0],[0,0,0],[0,0,0]],d=[0,0,0];function g(t,e,r,n,a){t[0]=e[0]*n+r[0]*a,t[1]=e[1]*n+r[1]*a,t[2]=e[2]*n+r[2]*a}e.exports=function(t,e,r,a,v,m){if(e||(e=[0,0,0]),r||(r=[0,0,0]),a||(a=[0,0,0]),v||(v=[0,0,0,1]),m||(m=[0,0,0,1]),!n(u,t))return!1;if(i(h,u),h[3]=0,h[7]=0,h[11]=0,h[15]=1,Math.abs(o(h)<1e-8))return!1;var y,x,b,_,w,k,T,A=u[3],M=u[7],S=u[11],E=u[12],C=u[13],L=u[14],P=u[15];if(0!==A||0!==M||0!==S){if(f[0]=A,f[1]=M,f[2]=S,f[3]=P,!s(h,h))return!1;l(h,h),y=v,b=h,_=(x=f)[0],w=x[1],k=x[2],T=x[3],y[0]=b[0]*_+b[4]*w+b[8]*k+b[12]*T,y[1]=b[1]*_+b[5]*w+b[9]*k+b[13]*T,y[2]=b[2]*_+b[6]*w+b[10]*k+b[14]*T,y[3]=b[3]*_+b[7]*w+b[11]*k+b[15]*T}else v[0]=v[1]=v[2]=0,v[3]=1;if(e[0]=E,e[1]=C,e[2]=L,function(t,e){t[0][0]=e[0],t[0][1]=e[1],t[0][2]=e[2],t[1][0]=e[4],t[1][1]=e[5],t[1][2]=e[6],t[2][0]=e[8],t[2][1]=e[9],t[2][2]=e[10]}(p,u),r[0]=c.length(p[0]),c.normalize(p[0],p[0]),a[0]=c.dot(p[0],p[1]),g(p[1],p[1],p[0],1,-a[0]),r[1]=c.length(p[1]),c.normalize(p[1],p[1]),a[0]/=r[1],a[1]=c.dot(p[0],p[2]),g(p[2],p[2],p[0],1,-a[1]),a[2]=c.dot(p[1],p[2]),g(p[2],p[2],p[1],1,-a[2]),r[2]=c.length(p[2]),c.normalize(p[2],p[2]),a[1]/=r[2],a[2]/=r[2],c.cross(d,p[1],p[2]),c.dot(p[0],d)<0)for(var O=0;O<3;O++)r[O]*=-1,p[O][0]*=-1,p[O][1]*=-1,p[O][2]*=-1;return m[0]=.5*Math.sqrt(Math.max(1+p[0][0]-p[1][1]-p[2][2],0)),m[1]=.5*Math.sqrt(Math.max(1-p[0][0]+p[1][1]-p[2][2],0)),m[2]=.5*Math.sqrt(Math.max(1-p[0][0]-p[1][1]+p[2][2],0)),m[3]=.5*Math.sqrt(Math.max(1+p[0][0]+p[1][1]+p[2][2],0)),p[2][1]>p[1][2]&&(m[0]=-m[0]),p[0][2]>p[2][0]&&(m[1]=-m[1]),p[1][0]>p[0][1]&&(m[2]=-m[2]),!0}},{\"./normalize\":430,\"gl-mat4/clone\":260,\"gl-mat4/create\":261,\"gl-mat4/determinant\":262,\"gl-mat4/invert\":266,\"gl-mat4/transpose\":277,\"gl-vec3/cross\":335,\"gl-vec3/dot\":340,\"gl-vec3/length\":350,\"gl-vec3/normalize\":357}],430:[function(t,e,r){e.exports=function(t,e){var r=e[15];if(0===r)return!1;for(var n=1/r,a=0;a<16;a++)t[a]=e[a]*n;return!0}},{}],431:[function(t,e,r){var n=t(\"gl-vec3/lerp\"),a=t(\"mat4-recompose\"),i=t(\"mat4-decompose\"),o=t(\"gl-mat4/determinant\"),s=t(\"quat-slerp\"),l=h(),c=h(),u=h();function h(){return{translate:f(),scale:f(1),skew:f(),perspective:[0,0,0,1],quaternion:[0,0,0,1]}}function f(t){return[t||0,t||0,t||0]}e.exports=function(t,e,r,h){if(0===o(e)||0===o(r))return!1;var f=i(e,l.translate,l.scale,l.skew,l.perspective,l.quaternion),p=i(r,c.translate,c.scale,c.skew,c.perspective,c.quaternion);return!(!f||!p||(n(u.translate,l.translate,c.translate,h),n(u.skew,l.skew,c.skew,h),n(u.scale,l.scale,c.scale,h),n(u.perspective,l.perspective,c.perspective,h),s(u.quaternion,l.quaternion,c.quaternion,h),a(t,u.translate,u.scale,u.skew,u.perspective,u.quaternion),0))}},{\"gl-mat4/determinant\":262,\"gl-vec3/lerp\":351,\"mat4-decompose\":429,\"mat4-recompose\":432,\"quat-slerp\":484}],432:[function(t,e,r){var n={identity:t(\"gl-mat4/identity\"),translate:t(\"gl-mat4/translate\"),multiply:t(\"gl-mat4/multiply\"),create:t(\"gl-mat4/create\"),scale:t(\"gl-mat4/scale\"),fromRotationTranslation:t(\"gl-mat4/fromRotationTranslation\")},a=(n.create(),n.create());e.exports=function(t,e,r,i,o,s){return n.identity(t),n.fromRotationTranslation(t,s,e),t[3]=o[0],t[7]=o[1],t[11]=o[2],t[15]=o[3],n.identity(a),0!==i[2]&&(a[9]=i[2],n.multiply(t,t,a)),0!==i[1]&&(a[9]=0,a[8]=i[1],n.multiply(t,t,a)),0!==i[0]&&(a[8]=0,a[4]=i[0],n.multiply(t,t,a)),n.scale(t,t,r),t}},{\"gl-mat4/create\":261,\"gl-mat4/fromRotationTranslation\":264,\"gl-mat4/identity\":265,\"gl-mat4/multiply\":268,\"gl-mat4/scale\":275,\"gl-mat4/translate\":276}],433:[function(t,e,r){\"use strict\";e.exports=Math.log2||function(t){return Math.log(t)*Math.LOG2E}},{}],434:[function(t,e,r){\"use strict\";var n=t(\"binary-search-bounds\"),a=t(\"mat4-interpolate\"),i=t(\"gl-mat4/invert\"),o=t(\"gl-mat4/rotateX\"),s=t(\"gl-mat4/rotateY\"),l=t(\"gl-mat4/rotateZ\"),c=t(\"gl-mat4/lookAt\"),u=t(\"gl-mat4/translate\"),h=(t(\"gl-mat4/scale\"),t(\"gl-vec3/normalize\")),f=[0,0,0];function p(t){this._components=t.slice(),this._time=[0],this.prevMatrix=t.slice(),this.nextMatrix=t.slice(),this.computedMatrix=t.slice(),this.computedInverse=t.slice(),this.computedEye=[0,0,0],this.computedUp=[0,0,0],this.computedCenter=[0,0,0],this.computedRadius=[0],this._limits=[-1/0,1/0]}e.exports=function(t){return new p((t=t||{}).matrix||[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1])};var d=p.prototype;d.recalcMatrix=function(t){var e=this._time,r=n.le(e,t),o=this.computedMatrix;if(!(r<0)){var s=this._components;if(r===e.length-1)for(var l=16*r,c=0;c<16;++c)o[c]=s[l++];else{var u=e[r+1]-e[r],f=(l=16*r,this.prevMatrix),p=!0;for(c=0;c<16;++c)f[c]=s[l++];var d=this.nextMatrix;for(c=0;c<16;++c)d[c]=s[l++],p=p&&f[c]===d[c];if(u<1e-6||p)for(c=0;c<16;++c)o[c]=f[c];else a(o,f,d,(t-e[r])/u)}var g=this.computedUp;g[0]=o[1],g[1]=o[5],g[2]=o[9],h(g,g);var v=this.computedInverse;i(v,o);var m=this.computedEye,y=v[15];m[0]=v[12]/y,m[1]=v[13]/y,m[2]=v[14]/y;var x=this.computedCenter,b=Math.exp(this.computedRadius[0]);for(c=0;c<3;++c)x[c]=m[c]-o[2+4*c]*b}},d.idle=function(t){if(!(t<this.lastT())){for(var e=this._components,r=e.length-16,n=0;n<16;++n)e.push(e[r++]);this._time.push(t)}},d.flush=function(t){var e=n.gt(this._time,t)-2;e<0||(this._time.splice(0,e),this._components.splice(0,16*e))},d.lastT=function(){return this._time[this._time.length-1]},d.lookAt=function(t,e,r,n){this.recalcMatrix(t),e=e||this.computedEye,r=r||f,n=n||this.computedUp,this.setMatrix(t,c(this.computedMatrix,e,r,n));for(var a=0,i=0;i<3;++i)a+=Math.pow(r[i]-e[i],2);a=Math.log(Math.sqrt(a)),this.computedRadius[0]=a},d.rotate=function(t,e,r,n){this.recalcMatrix(t);var a=this.computedInverse;e&&s(a,a,e),r&&o(a,a,r),n&&l(a,a,n),this.setMatrix(t,i(this.computedMatrix,a))};var g=[0,0,0];d.pan=function(t,e,r,n){g[0]=-(e||0),g[1]=-(r||0),g[2]=-(n||0),this.recalcMatrix(t);var a=this.computedInverse;u(a,a,g),this.setMatrix(t,i(a,a))},d.translate=function(t,e,r,n){g[0]=e||0,g[1]=r||0,g[2]=n||0,this.recalcMatrix(t);var a=this.computedMatrix;u(a,a,g),this.setMatrix(t,a)},d.setMatrix=function(t,e){if(!(t<this.lastT())){this._time.push(t);for(var r=0;r<16;++r)this._components.push(e[r])}},d.setDistance=function(t,e){this.computedRadius[0]=e},d.setDistanceLimits=function(t,e){var r=this._limits;r[0]=t,r[1]=e},d.getDistanceLimits=function(t){var e=this._limits;return t?(t[0]=e[0],t[1]=e[1],t):e}},{\"binary-search-bounds\":92,\"gl-mat4/invert\":266,\"gl-mat4/lookAt\":267,\"gl-mat4/rotateX\":272,\"gl-mat4/rotateY\":273,\"gl-mat4/rotateZ\":274,\"gl-mat4/scale\":275,\"gl-mat4/translate\":276,\"gl-vec3/normalize\":357,\"mat4-interpolate\":431}],435:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.length;if(e<3){for(var r=new Array(e),a=0;a<e;++a)r[a]=a;return 2===e&&t[0][0]===t[1][0]&&t[0][1]===t[1][1]?[0]:r}for(var i=new Array(e),a=0;a<e;++a)i[a]=a;i.sort(function(e,r){var n=t[e][0]-t[r][0];return n||t[e][1]-t[r][1]});for(var o=[i[0],i[1]],s=[i[0],i[1]],a=2;a<e;++a){for(var l=i[a],c=t[l],u=o.length;u>1&&n(t[o[u-2]],t[o[u-1]],c)<=0;)u-=1,o.pop();for(o.push(l),u=s.length;u>1&&n(t[s[u-2]],t[s[u-1]],c)>=0;)u-=1,s.pop();s.push(l)}for(var r=new Array(s.length+o.length-2),h=0,a=0,f=o.length;a<f;++a)r[h++]=o[a];for(var p=s.length-2;p>0;--p)r[h++]=s[p];return r};var n=t(\"robust-orientation\")[3]},{\"robust-orientation\":511}],436:[function(t,e,r){\"use strict\";e.exports=function(t,e){e||(e=t,t=window);var r=0,a=0,i=0,o={shift:!1,alt:!1,control:!1,meta:!1},s=!1;function l(t){var e=!1;return\"altKey\"in t&&(e=e||t.altKey!==o.alt,o.alt=!!t.altKey),\"shiftKey\"in t&&(e=e||t.shiftKey!==o.shift,o.shift=!!t.shiftKey),\"ctrlKey\"in t&&(e=e||t.ctrlKey!==o.control,o.control=!!t.ctrlKey),\"metaKey\"in t&&(e=e||t.metaKey!==o.meta,o.meta=!!t.metaKey),e}function c(t,s){var c=n.x(s),u=n.y(s);\"buttons\"in s&&(t=0|s.buttons),(t!==r||c!==a||u!==i||l(s))&&(r=0|t,a=c||0,i=u||0,e&&e(r,a,i,o))}function u(t){c(0,t)}function h(){(r||a||i||o.shift||o.alt||o.meta||o.control)&&(a=i=0,r=0,o.shift=o.alt=o.control=o.meta=!1,e&&e(0,0,0,o))}function f(t){l(t)&&e&&e(r,a,i,o)}function p(t){0===n.buttons(t)?c(0,t):c(r,t)}function d(t){c(r|n.buttons(t),t)}function g(t){c(r&~n.buttons(t),t)}function v(){s||(s=!0,t.addEventListener(\"mousemove\",p),t.addEventListener(\"mousedown\",d),t.addEventListener(\"mouseup\",g),t.addEventListener(\"mouseleave\",u),t.addEventListener(\"mouseenter\",u),t.addEventListener(\"mouseout\",u),t.addEventListener(\"mouseover\",u),t.addEventListener(\"blur\",h),t.addEventListener(\"keyup\",f),t.addEventListener(\"keydown\",f),t.addEventListener(\"keypress\",f),t!==window&&(window.addEventListener(\"blur\",h),window.addEventListener(\"keyup\",f),window.addEventListener(\"keydown\",f),window.addEventListener(\"keypress\",f)))}v();var m={element:t};return Object.defineProperties(m,{enabled:{get:function(){return s},set:function(e){e?v():s&&(s=!1,t.removeEventListener(\"mousemove\",p),t.removeEventListener(\"mousedown\",d),t.removeEventListener(\"mouseup\",g),t.removeEventListener(\"mouseleave\",u),t.removeEventListener(\"mouseenter\",u),t.removeEventListener(\"mouseout\",u),t.removeEventListener(\"mouseover\",u),t.removeEventListener(\"blur\",h),t.removeEventListener(\"keyup\",f),t.removeEventListener(\"keydown\",f),t.removeEventListener(\"keypress\",f),t!==window&&(window.removeEventListener(\"blur\",h),window.removeEventListener(\"keyup\",f),window.removeEventListener(\"keydown\",f),window.removeEventListener(\"keypress\",f)))},enumerable:!0},buttons:{get:function(){return r},enumerable:!0},x:{get:function(){return a},enumerable:!0},y:{get:function(){return i},enumerable:!0},mods:{get:function(){return o},enumerable:!0}}),m};var n=t(\"mouse-event\")},{\"mouse-event\":438}],437:[function(t,e,r){var n={left:0,top:0};e.exports=function(t,e,r){e=e||t.currentTarget||t.srcElement,Array.isArray(r)||(r=[0,0]);var a=t.clientX||0,i=t.clientY||0,o=(s=e,s===window||s===document||s===document.body?n:s.getBoundingClientRect());var s;return r[0]=a-o.left,r[1]=i-o.top,r}},{}],438:[function(t,e,r){\"use strict\";function n(t){return t.target||t.srcElement||window}r.buttons=function(t){if(\"object\"==typeof t){if(\"buttons\"in t)return t.buttons;if(\"which\"in t){if(2===(e=t.which))return 4;if(3===e)return 2;if(e>0)return 1<<e-1}else if(\"button\"in t){var e;if(1===(e=t.button))return 4;if(2===e)return 2;if(e>=0)return 1<<e}}return 0},r.element=n,r.x=function(t){if(\"object\"==typeof t){if(\"offsetX\"in t)return t.offsetX;var e=n(t).getBoundingClientRect();return t.clientX-e.left}return 0},r.y=function(t){if(\"object\"==typeof t){if(\"offsetY\"in t)return t.offsetY;var e=n(t).getBoundingClientRect();return t.clientY-e.top}return 0}},{}],439:[function(t,e,r){\"use strict\";var n=t(\"to-px\");e.exports=function(t,e,r){\"function\"==typeof t&&(r=!!e,e=t,t=window);var a=n(\"ex\",t),i=function(t){r&&t.preventDefault();var n=t.deltaX||0,i=t.deltaY||0,o=t.deltaZ||0,s=t.deltaMode,l=1;switch(s){case 1:l=a;break;case 2:l=window.innerHeight}if(i*=l,o*=l,(n*=l)||i||o)return e(n,i,o,t)};return t.addEventListener(\"wheel\",i),i}},{\"to-px\":540}],440:[function(t,e,r){\"use strict\";var n=t(\"typedarray-pool\");function a(t){return\"a\"+t}function i(t){return\"d\"+t}function o(t,e){return\"c\"+t+\"_\"+e}function s(t){return\"s\"+t}function l(t,e){return\"t\"+t+\"_\"+e}function c(t){return\"o\"+t}function u(t){return\"x\"+t}function h(t){return\"p\"+t}function f(t,e){return\"d\"+t+\"_\"+e}function p(t){return\"i\"+t}function d(t,e){return\"u\"+t+\"_\"+e}function g(t){return\"b\"+t}function v(t){return\"y\"+t}function m(t){return\"e\"+t}function y(t){return\"v\"+t}e.exports=function(t){function e(t){throw new Error(\"ndarray-extract-contour: \"+t)}\"object\"!=typeof t&&e(\"Must specify arguments\");var r=t.order;Array.isArray(r)||e(\"Must specify order\");var M=t.arrayArguments||1;M<1&&e(\"Must have at least one array argument\");var S=t.scalarArguments||0;S<0&&e(\"Scalar arg count must be > 0\");\"function\"!=typeof t.vertex&&e(\"Must specify vertex creation function\");\"function\"!=typeof t.cell&&e(\"Must specify cell creation function\");\"function\"!=typeof t.phase&&e(\"Must specify phase function\");for(var E=t.getters||[],C=new Array(M),L=0;L<M;++L)E.indexOf(L)>=0?C[L]=!0:C[L]=!1;return function(t,e,r,M,S,E){var C=E.length,L=S.length;if(L<2)throw new Error(\"ndarray-extract-contour: Dimension must be at least 2\");for(var P=\"extractContour\"+S.join(\"_\"),O=[],I=[],z=[],D=0;D<C;++D)z.push(a(D));for(var D=0;D<M;++D)z.push(u(D));for(var D=0;D<L;++D)I.push(s(D)+\"=\"+a(0)+\".shape[\"+D+\"]|0\");for(var D=0;D<C;++D){I.push(i(D)+\"=\"+a(D)+\".data\",c(D)+\"=\"+a(D)+\".offset|0\");for(var R=0;R<L;++R)I.push(l(D,R)+\"=\"+a(D)+\".stride[\"+R+\"]|0\")}for(var D=0;D<C;++D){I.push(h(D)+\"=\"+c(D)),I.push(o(D,0));for(var R=1;R<1<<L;++R){for(var F=[],B=0;B<L;++B)R&1<<B&&F.push(\"-\"+l(D,B));I.push(f(D,R)+\"=(\"+F.join(\"\")+\")|0\"),I.push(o(D,R)+\"=0\")}}for(var D=0;D<C;++D)for(var R=0;R<L;++R){var N=[l(D,S[R])];R>0&&N.push(l(D,S[R-1])+\"*\"+s(S[R-1])),I.push(d(D,S[R])+\"=(\"+N.join(\"-\")+\")|0\")}for(var D=0;D<L;++D)I.push(p(D)+\"=0\");I.push(_+\"=0\");for(var j=[\"2\"],D=L-2;D>=0;--D)j.push(s(S[D]));I.push(w+\"=(\"+j.join(\"*\")+\")|0\",b+\"=mallocUint32(\"+w+\")\",x+\"=mallocUint32(\"+w+\")\",k+\"=0\"),I.push(g(0)+\"=0\");for(var R=1;R<1<<L;++R){for(var V=[],U=[],B=0;B<L;++B)R&1<<B&&(0===U.length?V.push(\"1\"):V.unshift(U.join(\"*\"))),U.push(s(S[B]));var q=\"\";V[0].indexOf(s(S[L-2]))<0&&(q=\"-\");var H=A(L,R,S);I.push(m(H)+\"=(-\"+V.join(\"-\")+\")|0\",v(H)+\"=(\"+q+V.join(\"-\")+\")|0\",g(H)+\"=0\")}function G(t,e){O.push(\"for(\",p(S[t]),\"=\",e,\";\",p(S[t]),\"<\",s(S[t]),\";\",\"++\",p(S[t]),\"){\")}function Y(t){for(var e=0;e<C;++e)O.push(h(e),\"+=\",d(e,S[t]),\";\");O.push(\"}\")}function W(){for(var t=1;t<1<<L;++t)O.push(T,\"=\",m(t),\";\",m(t),\"=\",v(t),\";\",v(t),\"=\",T,\";\")}I.push(y(0)+\"=0\",T+\"=0\"),function t(e,r){if(e<0)return void function(t){for(var e=0;e<C;++e)E[e]?O.push(o(e,0),\"=\",i(e),\".get(\",h(e),\");\"):O.push(o(e,0),\"=\",i(e),\"[\",h(e),\"];\");for(var r=[],e=0;e<C;++e)r.push(o(e,0));for(var e=0;e<M;++e)r.push(u(e));O.push(g(0),\"=\",b,\"[\",k,\"]=phase(\",r.join(),\");\");for(var n=1;n<1<<L;++n)O.push(g(n),\"=\",b,\"[\",k,\"+\",m(n),\"];\");for(var a=[],n=1;n<1<<L;++n)a.push(\"(\"+g(0)+\"!==\"+g(n)+\")\");O.push(\"if(\",a.join(\"||\"),\"){\");for(var s=[],e=0;e<L;++e)s.push(p(e));for(var e=0;e<C;++e){s.push(o(e,0));for(var n=1;n<1<<L;++n)E[e]?O.push(o(e,n),\"=\",i(e),\".get(\",h(e),\"+\",f(e,n),\");\"):O.push(o(e,n),\"=\",i(e),\"[\",h(e),\"+\",f(e,n),\"];\"),s.push(o(e,n))}for(var e=0;e<1<<L;++e)s.push(g(e));for(var e=0;e<M;++e)s.push(u(e));O.push(\"vertex(\",s.join(),\");\",y(0),\"=\",x,\"[\",k,\"]=\",_,\"++;\");for(var l=(1<<L)-1,c=g(l),n=0;n<L;++n)if(0==(t&~(1<<n))){for(var d=l^1<<n,v=g(d),w=[],T=d;T>0;T=T-1&d)w.push(x+\"[\"+k+\"+\"+m(T)+\"]\");w.push(y(0));for(var T=0;T<C;++T)1&n?w.push(o(T,l),o(T,d)):w.push(o(T,d),o(T,l));1&n?w.push(c,v):w.push(v,c);for(var T=0;T<M;++T)w.push(u(T));O.push(\"if(\",c,\"!==\",v,\"){\",\"face(\",w.join(),\")}\")}O.push(\"}\",k,\"+=1;\")}(r);!function(t){for(var e=t-1;e>=0;--e)G(e,0);for(var r=[],e=0;e<C;++e)E[e]?r.push(i(e)+\".get(\"+h(e)+\")\"):r.push(i(e)+\"[\"+h(e)+\"]\");for(var e=0;e<M;++e)r.push(u(e));O.push(b,\"[\",k,\"++]=phase(\",r.join(),\");\");for(var e=0;e<t;++e)Y(e);for(var n=0;n<C;++n)O.push(h(n),\"+=\",d(n,S[t]),\";\")}(e);O.push(\"if(\",s(S[e]),\">0){\",p(S[e]),\"=1;\");t(e-1,r|1<<S[e]);for(var n=0;n<C;++n)O.push(h(n),\"+=\",d(n,S[e]),\";\");e===L-1&&(O.push(k,\"=0;\"),W());G(e,2);t(e-1,r);e===L-1&&(O.push(\"if(\",p(S[L-1]),\"&1){\",k,\"=0;}\"),W());Y(e);O.push(\"}\")}(L-1,0),O.push(\"freeUint32(\",x,\");freeUint32(\",b,\");\");var X=[\"'use strict';\",\"function \",P,\"(\",z.join(),\"){\",\"var \",I.join(),\";\",O.join(\"\"),\"}\",\"return \",P].join(\"\");return new Function(\"vertex\",\"face\",\"phase\",\"mallocUint32\",\"freeUint32\",X)(t,e,r,n.mallocUint32,n.freeUint32)}(t.vertex,t.cell,t.phase,S,r,C)};var x=\"V\",b=\"P\",_=\"N\",w=\"Q\",k=\"X\",T=\"T\";function A(t,e,r){for(var n=0,a=0;a<t;++a)e&1<<a&&(n|=1<<r[a]);return n}},{\"typedarray-pool\":546}],441:[function(t,e,r){\"use strict\";var n=t(\"cwise/lib/wrapper\")({args:[\"index\",\"array\",\"scalar\"],pre:{body:\"{}\",args:[],thisVars:[],localVars:[]},body:{body:\"{_inline_1_arg1_=_inline_1_arg2_.apply(void 0,_inline_1_arg0_)}\",args:[{name:\"_inline_1_arg0_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_1_arg1_\",lvalue:!0,rvalue:!1,count:1},{name:\"_inline_1_arg2_\",lvalue:!1,rvalue:!0,count:1}],thisVars:[],localVars:[]},post:{body:\"{}\",args:[],thisVars:[],localVars:[]},debug:!1,funcName:\"cwise\",blockSize:64});e.exports=function(t,e){return n(t,e),t}},{\"cwise/lib/wrapper\":150}],442:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){if(Array.isArray(r)){if(r.length!==e.dimension)throw new Error(\"ndarray-gradient: invalid boundary conditions\")}else r=n(e.dimension,\"string\"==typeof r?r:\"clamp\");if(t.dimension!==e.dimension+1)throw new Error(\"ndarray-gradient: output dimension must be +1 input dimension\");if(t.shape[e.dimension]!==e.dimension)throw new Error(\"ndarray-gradient: output shape must match input shape\");for(var a=0;a<e.dimension;++a)if(t.shape[a]!==e.shape[a])throw new Error(\"ndarray-gradient: shape mismatch\");if(0===e.size)return t;if(e.dimension<=0)return t.set(0),t;return function(t){var e=t.join();if(m=o[e])return m;var r=t.length,n=[\"function gradient(dst,src){var s=src.shape.slice();\"];function a(e){for(var a=r-e.length,i=[],o=[],s=[],l=0;l<r;++l)e.indexOf(l+1)>=0?s.push(\"0\"):e.indexOf(-(l+1))>=0?s.push(\"s[\"+l+\"]-1\"):(s.push(\"-1\"),i.push(\"1\"),o.push(\"s[\"+l+\"]-2\"));var c=\".lo(\"+i.join()+\").hi(\"+o.join()+\")\";if(0===i.length&&(c=\"\"),a>0){n.push(\"if(1\");for(var l=0;l<r;++l)e.indexOf(l+1)>=0||e.indexOf(-(l+1))>=0||n.push(\"&&s[\",l,\"]>2\");n.push(\"){grad\",a,\"(src.pick(\",s.join(),\")\",c);for(var l=0;l<r;++l)e.indexOf(l+1)>=0||e.indexOf(-(l+1))>=0||n.push(\",dst.pick(\",s.join(),\",\",l,\")\",c);n.push(\");\")}for(var l=0;l<e.length;++l){var u=Math.abs(e[l])-1,h=\"dst.pick(\"+s.join()+\",\"+u+\")\"+c;switch(t[u]){case\"clamp\":var f=s.slice(),p=s.slice();e[l]<0?f[u]=\"s[\"+u+\"]-2\":p[u]=\"1\",0===a?n.push(\"if(s[\",u,\"]>1){dst.set(\",s.join(),\",\",u,\",0.5*(src.get(\",f.join(),\")-src.get(\",p.join(),\")))}else{dst.set(\",s.join(),\",\",u,\",0)};\"):n.push(\"if(s[\",u,\"]>1){diff(\",h,\",src.pick(\",f.join(),\")\",c,\",src.pick(\",p.join(),\")\",c,\");}else{zero(\",h,\");};\");break;case\"mirror\":0===a?n.push(\"dst.set(\",s.join(),\",\",u,\",0);\"):n.push(\"zero(\",h,\");\");break;case\"wrap\":var d=s.slice(),g=s.slice();e[l]<0?(d[u]=\"s[\"+u+\"]-2\",g[u]=\"0\"):(d[u]=\"s[\"+u+\"]-1\",g[u]=\"1\"),0===a?n.push(\"if(s[\",u,\"]>2){dst.set(\",s.join(),\",\",u,\",0.5*(src.get(\",d.join(),\")-src.get(\",g.join(),\")))}else{dst.set(\",s.join(),\",\",u,\",0)};\"):n.push(\"if(s[\",u,\"]>2){diff(\",h,\",src.pick(\",d.join(),\")\",c,\",src.pick(\",g.join(),\")\",c,\");}else{zero(\",h,\");};\");break;default:throw new Error(\"ndarray-gradient: Invalid boundary condition\")}}a>0&&n.push(\"};\")}for(var s=0;s<1<<r;++s){for(var h=[],f=0;f<r;++f)s&1<<f&&h.push(f+1);for(var p=0;p<1<<h.length;++p){for(var d=h.slice(),f=0;f<h.length;++f)p&1<<f&&(d[f]=-d[f]);a(d)}}n.push(\"return dst;};return gradient\");for(var g=[\"diff\",\"zero\"],v=[l,c],s=1;s<=r;++s)g.push(\"grad\"+s),v.push(u(s));g.push(n.join(\"\"));var m=Function.apply(void 0,g).apply(void 0,v);return i[e]=m,m}(r)(t,e)};var n=t(\"dup\"),a=t(\"cwise-compiler\"),i={},o={},s={body:\"\",args:[],thisVars:[],localVars:[]},l=a({args:[\"array\",\"array\",\"array\"],pre:s,post:s,body:{args:[{name:\"out\",lvalue:!0,rvalue:!1,count:1},{name:\"left\",lvalue:!1,rvalue:!0,count:1},{name:\"right\",lvalue:!1,rvalue:!0,count:1}],body:\"out=0.5*(left-right)\",thisVars:[],localVars:[]},funcName:\"cdiff\"}),c=a({args:[\"array\"],pre:s,post:s,body:{args:[{name:\"out\",lvalue:!0,rvalue:!1,count:1}],body:\"out=0\",thisVars:[],localVars:[]},funcName:\"zero\"});function u(t){if(t in i)return i[t];for(var e=[],r=0;r<t;++r)e.push(\"out\",r,\"s=0.5*(inp\",r,\"l-inp\",r,\"r);\");var o=[\"array\"],l=[\"junk\"];for(r=0;r<t;++r){o.push(\"array\"),l.push(\"out\"+r+\"s\");var c=n(t);c[r]=-1,o.push({array:0,offset:c.slice()}),c[r]=1,o.push({array:0,offset:c.slice()}),l.push(\"inp\"+r+\"l\",\"inp\"+r+\"r\")}return i[t]=a({args:o,pre:s,post:s,body:{body:e.join(\"\"),args:l.map(function(t){return{name:t,lvalue:0===t.indexOf(\"out\"),rvalue:0===t.indexOf(\"inp\"),count:\"junk\"!==t|0}}),thisVars:[],localVars:[]},funcName:\"fdTemplate\"+t})}},{\"cwise-compiler\":147,dup:171}],443:[function(t,e,r){\"use strict\";var n=t(\"ndarray-warp\"),a=t(\"gl-matrix-invert\");e.exports=function(t,e,r){var i=e.dimension,o=a([],r);return n(t,e,function(t,e){for(var r=0;r<i;++r){t[r]=o[(i+1)*i+r];for(var n=0;n<i;++n)t[r]+=o[(i+1)*n+r]*e[n]}var a=o[(i+1)*(i+1)-1];for(n=0;n<i;++n)a+=o[(i+1)*n+i]*e[n];var s=1/a;for(r=0;r<i;++r)t[r]*=s;return t}),t}},{\"gl-matrix-invert\":278,\"ndarray-warp\":450}],444:[function(t,e,r){\"use strict\";function n(t,e){var r=Math.floor(e),n=e-r,a=0<=r&&r<t.shape[0],i=0<=r+1&&r+1<t.shape[0];return(1-n)*(a?+t.get(r):0)+n*(i?+t.get(r+1):0)}function a(t,e,r){var n=Math.floor(e),a=e-n,i=0<=n&&n<t.shape[0],o=0<=n+1&&n+1<t.shape[0],s=Math.floor(r),l=r-s,c=0<=s&&s<t.shape[1],u=0<=s+1&&s+1<t.shape[1],h=i&&c?t.get(n,s):0,f=i&&u?t.get(n,s+1):0;return(1-l)*((1-a)*h+a*(o&&c?t.get(n+1,s):0))+l*((1-a)*f+a*(o&&u?t.get(n+1,s+1):0))}function i(t,e,r,n){var a=Math.floor(e),i=e-a,o=0<=a&&a<t.shape[0],s=0<=a+1&&a+1<t.shape[0],l=Math.floor(r),c=r-l,u=0<=l&&l<t.shape[1],h=0<=l+1&&l+1<t.shape[1],f=Math.floor(n),p=n-f,d=0<=f&&f<t.shape[2],g=0<=f+1&&f+1<t.shape[2],v=o&&u&&d?t.get(a,l,f):0,m=o&&h&&d?t.get(a,l+1,f):0,y=s&&u&&d?t.get(a+1,l,f):0,x=s&&h&&d?t.get(a+1,l+1,f):0,b=o&&u&&g?t.get(a,l,f+1):0,_=o&&h&&g?t.get(a,l+1,f+1):0;return(1-p)*((1-c)*((1-i)*v+i*y)+c*((1-i)*m+i*x))+p*((1-c)*((1-i)*b+i*(s&&u&&g?t.get(a+1,l,f+1):0))+c*((1-i)*_+i*(s&&h&&g?t.get(a+1,l+1,f+1):0)))}e.exports=function(t,e,r,o){switch(t.shape.length){case 0:return 0;case 1:return n(t,e);case 2:return a(t,e,r);case 3:return i(t,e,r,o);default:return function(t){var e,r,n=0|t.shape.length,a=new Array(n),i=new Array(n),o=new Array(n),s=new Array(n);for(e=0;e<n;++e)r=+arguments[e+1],a[e]=Math.floor(r),i[e]=r-a[e],o[e]=0<=a[e]&&a[e]<t.shape[e],s[e]=0<=a[e]+1&&a[e]+1<t.shape[e];var l,c,u,h=0;t:for(e=0;e<1<<n;++e){for(c=1,u=t.offset,l=0;l<n;++l)if(e&1<<l){if(!s[l])continue t;c*=i[l],u+=t.stride[l]*(a[l]+1)}else{if(!o[l])continue t;c*=1-i[l],u+=t.stride[l]*a[l]}h+=c*t.data[u]}return h}.apply(void 0,arguments)}},e.exports.d1=n,e.exports.d2=a,e.exports.d3=i},{}],445:[function(t,e,r){\"use strict\";var n=t(\"cwise-compiler\"),a={body:\"\",args:[],thisVars:[],localVars:[]};function i(t){if(!t)return a;for(var e=0;e<t.args.length;++e){var r=t.args[e];t.args[e]=0===e?{name:r,lvalue:!0,rvalue:!!t.rvalue,count:t.count||1}:{name:r,lvalue:!1,rvalue:!0,count:1}}return t.thisVars||(t.thisVars=[]),t.localVars||(t.localVars=[]),t}function o(t){for(var e=[],r=0;r<t.args.length;++r)e.push(\"a\"+r);return new Function(\"P\",[\"return function \",t.funcName,\"_ndarrayops(\",e.join(\",\"),\") {P(\",e.join(\",\"),\");return a0}\"].join(\"\"))(function(t){return n({args:t.args,pre:i(t.pre),body:i(t.body),post:i(t.proc),funcName:t.funcName})}(t))}var s={add:\"+\",sub:\"-\",mul:\"*\",div:\"/\",mod:\"%\",band:\"&\",bor:\"|\",bxor:\"^\",lshift:\"<<\",rshift:\">>\",rrshift:\">>>\"};!function(){for(var t in s){var e=s[t];r[t]=o({args:[\"array\",\"array\",\"array\"],body:{args:[\"a\",\"b\",\"c\"],body:\"a=b\"+e+\"c\"},funcName:t}),r[t+\"eq\"]=o({args:[\"array\",\"array\"],body:{args:[\"a\",\"b\"],body:\"a\"+e+\"=b\"},rvalue:!0,funcName:t+\"eq\"}),r[t+\"s\"]=o({args:[\"array\",\"array\",\"scalar\"],body:{args:[\"a\",\"b\",\"s\"],body:\"a=b\"+e+\"s\"},funcName:t+\"s\"}),r[t+\"seq\"]=o({args:[\"array\",\"scalar\"],body:{args:[\"a\",\"s\"],body:\"a\"+e+\"=s\"},rvalue:!0,funcName:t+\"seq\"})}}();var l={not:\"!\",bnot:\"~\",neg:\"-\",recip:\"1.0/\"};!function(){for(var t in l){var e=l[t];r[t]=o({args:[\"array\",\"array\"],body:{args:[\"a\",\"b\"],body:\"a=\"+e+\"b\"},funcName:t}),r[t+\"eq\"]=o({args:[\"array\"],body:{args:[\"a\"],body:\"a=\"+e+\"a\"},rvalue:!0,count:2,funcName:t+\"eq\"})}}();var c={and:\"&&\",or:\"||\",eq:\"===\",neq:\"!==\",lt:\"<\",gt:\">\",leq:\"<=\",geq:\">=\"};!function(){for(var t in c){var e=c[t];r[t]=o({args:[\"array\",\"array\",\"array\"],body:{args:[\"a\",\"b\",\"c\"],body:\"a=b\"+e+\"c\"},funcName:t}),r[t+\"s\"]=o({args:[\"array\",\"array\",\"scalar\"],body:{args:[\"a\",\"b\",\"s\"],body:\"a=b\"+e+\"s\"},funcName:t+\"s\"}),r[t+\"eq\"]=o({args:[\"array\",\"array\"],body:{args:[\"a\",\"b\"],body:\"a=a\"+e+\"b\"},rvalue:!0,count:2,funcName:t+\"eq\"}),r[t+\"seq\"]=o({args:[\"array\",\"scalar\"],body:{args:[\"a\",\"s\"],body:\"a=a\"+e+\"s\"},rvalue:!0,count:2,funcName:t+\"seq\"})}}();var u=[\"abs\",\"acos\",\"asin\",\"atan\",\"ceil\",\"cos\",\"exp\",\"floor\",\"log\",\"round\",\"sin\",\"sqrt\",\"tan\"];!function(){for(var t=0;t<u.length;++t){var e=u[t];r[e]=o({args:[\"array\",\"array\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\",\"b\"],body:\"a=this_f(b)\",thisVars:[\"this_f\"]},funcName:e}),r[e+\"eq\"]=o({args:[\"array\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\"],body:\"a=this_f(a)\",thisVars:[\"this_f\"]},rvalue:!0,count:2,funcName:e+\"eq\"})}}();var h=[\"max\",\"min\",\"atan2\",\"pow\"];!function(){for(var t=0;t<h.length;++t){var e=h[t];r[e]=o({args:[\"array\",\"array\",\"array\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\",\"b\",\"c\"],body:\"a=this_f(b,c)\",thisVars:[\"this_f\"]},funcName:e}),r[e+\"s\"]=o({args:[\"array\",\"array\",\"scalar\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\",\"b\",\"c\"],body:\"a=this_f(b,c)\",thisVars:[\"this_f\"]},funcName:e+\"s\"}),r[e+\"eq\"]=o({args:[\"array\",\"array\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\",\"b\"],body:\"a=this_f(a,b)\",thisVars:[\"this_f\"]},rvalue:!0,count:2,funcName:e+\"eq\"}),r[e+\"seq\"]=o({args:[\"array\",\"scalar\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\",\"b\"],body:\"a=this_f(a,b)\",thisVars:[\"this_f\"]},rvalue:!0,count:2,funcName:e+\"seq\"})}}();var f=[\"atan2\",\"pow\"];!function(){for(var t=0;t<f.length;++t){var e=f[t];r[e+\"op\"]=o({args:[\"array\",\"array\",\"array\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\",\"b\",\"c\"],body:\"a=this_f(c,b)\",thisVars:[\"this_f\"]},funcName:e+\"op\"}),r[e+\"ops\"]=o({args:[\"array\",\"array\",\"scalar\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\",\"b\",\"c\"],body:\"a=this_f(c,b)\",thisVars:[\"this_f\"]},funcName:e+\"ops\"}),r[e+\"opeq\"]=o({args:[\"array\",\"array\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\",\"b\"],body:\"a=this_f(b,a)\",thisVars:[\"this_f\"]},rvalue:!0,count:2,funcName:e+\"opeq\"}),r[e+\"opseq\"]=o({args:[\"array\",\"scalar\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\",\"b\"],body:\"a=this_f(b,a)\",thisVars:[\"this_f\"]},rvalue:!0,count:2,funcName:e+\"opseq\"})}}(),r.any=n({args:[\"array\"],pre:a,body:{args:[{name:\"a\",lvalue:!1,rvalue:!0,count:1}],body:\"if(a){return true}\",localVars:[],thisVars:[]},post:{args:[],localVars:[],thisVars:[],body:\"return false\"},funcName:\"any\"}),r.all=n({args:[\"array\"],pre:a,body:{args:[{name:\"x\",lvalue:!1,rvalue:!0,count:1}],body:\"if(!x){return false}\",localVars:[],thisVars:[]},post:{args:[],localVars:[],thisVars:[],body:\"return true\"},funcName:\"all\"}),r.sum=n({args:[\"array\"],pre:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"this_s=0\"},body:{args:[{name:\"a\",lvalue:!1,rvalue:!0,count:1}],body:\"this_s+=a\",localVars:[],thisVars:[\"this_s\"]},post:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"return this_s\"},funcName:\"sum\"}),r.prod=n({args:[\"array\"],pre:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"this_s=1\"},body:{args:[{name:\"a\",lvalue:!1,rvalue:!0,count:1}],body:\"this_s*=a\",localVars:[],thisVars:[\"this_s\"]},post:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"return this_s\"},funcName:\"prod\"}),r.norm2squared=n({args:[\"array\"],pre:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"this_s=0\"},body:{args:[{name:\"a\",lvalue:!1,rvalue:!0,count:2}],body:\"this_s+=a*a\",localVars:[],thisVars:[\"this_s\"]},post:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"return this_s\"},funcName:\"norm2squared\"}),r.norm2=n({args:[\"array\"],pre:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"this_s=0\"},body:{args:[{name:\"a\",lvalue:!1,rvalue:!0,count:2}],body:\"this_s+=a*a\",localVars:[],thisVars:[\"this_s\"]},post:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"return Math.sqrt(this_s)\"},funcName:\"norm2\"}),r.norminf=n({args:[\"array\"],pre:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"this_s=0\"},body:{args:[{name:\"a\",lvalue:!1,rvalue:!0,count:4}],body:\"if(-a>this_s){this_s=-a}else if(a>this_s){this_s=a}\",localVars:[],thisVars:[\"this_s\"]},post:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"return this_s\"},funcName:\"norminf\"}),r.norm1=n({args:[\"array\"],pre:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"this_s=0\"},body:{args:[{name:\"a\",lvalue:!1,rvalue:!0,count:3}],body:\"this_s+=a<0?-a:a\",localVars:[],thisVars:[\"this_s\"]},post:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"return this_s\"},funcName:\"norm1\"}),r.sup=n({args:[\"array\"],pre:{body:\"this_h=-Infinity\",args:[],thisVars:[\"this_h\"],localVars:[]},body:{body:\"if(_inline_1_arg0_>this_h)this_h=_inline_1_arg0_\",args:[{name:\"_inline_1_arg0_\",lvalue:!1,rvalue:!0,count:2}],thisVars:[\"this_h\"],localVars:[]},post:{body:\"return this_h\",args:[],thisVars:[\"this_h\"],localVars:[]}}),r.inf=n({args:[\"array\"],pre:{body:\"this_h=Infinity\",args:[],thisVars:[\"this_h\"],localVars:[]},body:{body:\"if(_inline_1_arg0_<this_h)this_h=_inline_1_arg0_\",args:[{name:\"_inline_1_arg0_\",lvalue:!1,rvalue:!0,count:2}],thisVars:[\"this_h\"],localVars:[]},post:{body:\"return this_h\",args:[],thisVars:[\"this_h\"],localVars:[]}}),r.argmin=n({args:[\"index\",\"array\",\"shape\"],pre:{body:\"{this_v=Infinity;this_i=_inline_0_arg2_.slice(0)}\",args:[{name:\"_inline_0_arg0_\",lvalue:!1,rvalue:!1,count:0},{name:\"_inline_0_arg1_\",lvalue:!1,rvalue:!1,count:0},{name:\"_inline_0_arg2_\",lvalue:!1,rvalue:!0,count:1}],thisVars:[\"this_i\",\"this_v\"],localVars:[]},body:{body:\"{if(_inline_1_arg1_<this_v){this_v=_inline_1_arg1_;for(var _inline_1_k=0;_inline_1_k<_inline_1_arg0_.length;++_inline_1_k){this_i[_inline_1_k]=_inline_1_arg0_[_inline_1_k]}}}\",args:[{name:\"_inline_1_arg0_\",lvalue:!1,rvalue:!0,count:2},{name:\"_inline_1_arg1_\",lvalue:!1,rvalue:!0,count:2}],thisVars:[\"this_i\",\"this_v\"],localVars:[\"_inline_1_k\"]},post:{body:\"{return this_i}\",args:[],thisVars:[\"this_i\"],localVars:[]}}),r.argmax=n({args:[\"index\",\"array\",\"shape\"],pre:{body:\"{this_v=-Infinity;this_i=_inline_0_arg2_.slice(0)}\",args:[{name:\"_inline_0_arg0_\",lvalue:!1,rvalue:!1,count:0},{name:\"_inline_0_arg1_\",lvalue:!1,rvalue:!1,count:0},{name:\"_inline_0_arg2_\",lvalue:!1,rvalue:!0,count:1}],thisVars:[\"this_i\",\"this_v\"],localVars:[]},body:{body:\"{if(_inline_1_arg1_>this_v){this_v=_inline_1_arg1_;for(var _inline_1_k=0;_inline_1_k<_inline_1_arg0_.length;++_inline_1_k){this_i[_inline_1_k]=_inline_1_arg0_[_inline_1_k]}}}\",args:[{name:\"_inline_1_arg0_\",lvalue:!1,rvalue:!0,count:2},{name:\"_inline_1_arg1_\",lvalue:!1,rvalue:!0,count:2}],thisVars:[\"this_i\",\"this_v\"],localVars:[\"_inline_1_k\"]},post:{body:\"{return this_i}\",args:[],thisVars:[\"this_i\"],localVars:[]}}),r.random=o({args:[\"array\"],pre:{args:[],body:\"this_f=Math.random\",thisVars:[\"this_f\"]},body:{args:[\"a\"],body:\"a=this_f()\",thisVars:[\"this_f\"]},funcName:\"random\"}),r.assign=o({args:[\"array\",\"array\"],body:{args:[\"a\",\"b\"],body:\"a=b\"},funcName:\"assign\"}),r.assigns=o({args:[\"array\",\"scalar\"],body:{args:[\"a\",\"b\"],body:\"a=b\"},funcName:\"assigns\"}),r.equals=n({args:[\"array\",\"array\"],pre:a,body:{args:[{name:\"x\",lvalue:!1,rvalue:!0,count:1},{name:\"y\",lvalue:!1,rvalue:!0,count:1}],body:\"if(x!==y){return false}\",localVars:[],thisVars:[]},post:{args:[],localVars:[],thisVars:[],body:\"return true\"},funcName:\"equals\"})},{\"cwise-compiler\":147}],446:[function(t,e,r){\"use strict\";var n=t(\"ndarray\"),a=t(\"./doConvert.js\");e.exports=function(t,e){for(var r=[],i=t,o=1;Array.isArray(i);)r.push(i.length),o*=i.length,i=i[0];return 0===r.length?n():(e||(e=n(new Float64Array(o),r)),a(e,t),e)}},{\"./doConvert.js\":447,ndarray:451}],447:[function(t,e,r){e.exports=t(\"cwise-compiler\")({args:[\"array\",\"scalar\",\"index\"],pre:{body:\"{}\",args:[],thisVars:[],localVars:[]},body:{body:\"{\\nvar _inline_1_v=_inline_1_arg1_,_inline_1_i\\nfor(_inline_1_i=0;_inline_1_i<_inline_1_arg2_.length-1;++_inline_1_i) {\\n_inline_1_v=_inline_1_v[_inline_1_arg2_[_inline_1_i]]\\n}\\n_inline_1_arg0_=_inline_1_v[_inline_1_arg2_[_inline_1_arg2_.length-1]]\\n}\",args:[{name:\"_inline_1_arg0_\",lvalue:!0,rvalue:!1,count:1},{name:\"_inline_1_arg1_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_1_arg2_\",lvalue:!1,rvalue:!0,count:4}],thisVars:[],localVars:[\"_inline_1_i\",\"_inline_1_v\"]},post:{body:\"{}\",args:[],thisVars:[],localVars:[]},funcName:\"convert\",blockSize:64})},{\"cwise-compiler\":147}],448:[function(t,e,r){\"use strict\";var n=t(\"typedarray-pool\"),a=32;function i(t){switch(t){case\"uint8\":return[n.mallocUint8,n.freeUint8];case\"uint16\":return[n.mallocUint16,n.freeUint16];case\"uint32\":return[n.mallocUint32,n.freeUint32];case\"int8\":return[n.mallocInt8,n.freeInt8];case\"int16\":return[n.mallocInt16,n.freeInt16];case\"int32\":return[n.mallocInt32,n.freeInt32];case\"float32\":return[n.mallocFloat,n.freeFloat];case\"float64\":return[n.mallocDouble,n.freeDouble];default:return null}}function o(t){for(var e=[],r=0;r<t;++r)e.push(\"s\"+r);for(r=0;r<t;++r)e.push(\"n\"+r);for(r=1;r<t;++r)e.push(\"d\"+r);for(r=1;r<t;++r)e.push(\"e\"+r);for(r=1;r<t;++r)e.push(\"f\"+r);return e}e.exports=function(t,e){var r=[\"'use strict'\"],n=[\"ndarraySortWrapper\",t.join(\"d\"),e].join(\"\");r.push([\"function \",n,\"(\",[\"array\"].join(\",\"),\"){\"].join(\"\"));for(var s=[\"data=array.data,offset=array.offset|0,shape=array.shape,stride=array.stride\"],l=0;l<t.length;++l)s.push([\"s\",l,\"=stride[\",l,\"]|0,n\",l,\"=shape[\",l,\"]|0\"].join(\"\"));var c=new Array(t.length),u=[];for(l=0;l<t.length;++l)0!==(p=t[l])&&(0===u.length?c[p]=\"1\":c[p]=u.join(\"*\"),u.push(\"n\"+p));var h=-1,f=-1;for(l=0;l<t.length;++l){var p,d=t[l];0!==d&&(h>0?s.push([\"d\",d,\"=s\",d,\"-d\",h,\"*n\",h].join(\"\")):s.push([\"d\",d,\"=s\",d].join(\"\")),h=d),0!=(p=t.length-1-l)&&(f>0?s.push([\"e\",p,\"=s\",p,\"-e\",f,\"*n\",f,\",f\",p,\"=\",c[p],\"-f\",f,\"*n\",f].join(\"\")):s.push([\"e\",p,\"=s\",p,\",f\",p,\"=\",c[p]].join(\"\")),f=p)}r.push(\"var \"+s.join(\",\"));var g=[\"0\",\"n0-1\",\"data\",\"offset\"].concat(o(t.length));r.push([\"if(n0<=\",a,\"){\",\"insertionSort(\",g.join(\",\"),\")}else{\",\"quickSort(\",g.join(\",\"),\")}\"].join(\"\")),r.push(\"}return \"+n);var v=new Function(\"insertionSort\",\"quickSort\",r.join(\"\\n\")),m=function(t,e){var r=[\"'use strict'\"],n=[\"ndarrayInsertionSort\",t.join(\"d\"),e].join(\"\"),a=[\"left\",\"right\",\"data\",\"offset\"].concat(o(t.length)),s=i(e),l=[\"i,j,cptr,ptr=left*s0+offset\"];if(t.length>1){for(var c=[],u=1;u<t.length;++u)l.push(\"i\"+u),c.push(\"n\"+u);s?l.push(\"scratch=malloc(\"+c.join(\"*\")+\")\"):l.push(\"scratch=new Array(\"+c.join(\"*\")+\")\"),l.push(\"dptr\",\"sptr\",\"a\",\"b\")}else l.push(\"scratch\");function h(t){return\"generic\"===e?[\"data.get(\",t,\")\"].join(\"\"):[\"data[\",t,\"]\"].join(\"\")}function f(t,r){return\"generic\"===e?[\"data.set(\",t,\",\",r,\")\"].join(\"\"):[\"data[\",t,\"]=\",r].join(\"\")}if(r.push([\"function \",n,\"(\",a.join(\",\"),\"){var \",l.join(\",\")].join(\"\"),\"for(i=left+1;i<=right;++i){\",\"j=i;ptr+=s0\",\"cptr=ptr\"),t.length>1){for(r.push(\"dptr=0;sptr=ptr\"),u=t.length-1;u>=0;--u)0!==(p=t[u])&&r.push([\"for(i\",p,\"=0;i\",p,\"<n\",p,\";++i\",p,\"){\"].join(\"\"));for(r.push(\"scratch[dptr++]=\",h(\"sptr\")),u=0;u<t.length;++u)0!==(p=t[u])&&r.push(\"sptr+=d\"+p,\"}\");for(r.push(\"__g:while(j--\\x3eleft){\",\"dptr=0\",\"sptr=cptr-s0\"),u=1;u<t.length;++u)1===u&&r.push(\"__l:\"),r.push([\"for(i\",u,\"=0;i\",u,\"<n\",u,\";++i\",u,\"){\"].join(\"\"));for(r.push([\"a=\",h(\"sptr\"),\"\\nb=scratch[dptr]\\nif(a<b){break __g}\\nif(a>b){break __l}\"].join(\"\")),u=t.length-1;u>=1;--u)r.push(\"sptr+=e\"+u,\"dptr+=f\"+u,\"}\");for(r.push(\"dptr=cptr;sptr=cptr-s0\"),u=t.length-1;u>=0;--u)0!==(p=t[u])&&r.push([\"for(i\",p,\"=0;i\",p,\"<n\",p,\";++i\",p,\"){\"].join(\"\"));for(r.push(f(\"dptr\",h(\"sptr\"))),u=0;u<t.length;++u)0!==(p=t[u])&&r.push([\"dptr+=d\",p,\";sptr+=d\",p].join(\"\"),\"}\");for(r.push(\"cptr-=s0\\n}\"),r.push(\"dptr=cptr;sptr=0\"),u=t.length-1;u>=0;--u)0!==(p=t[u])&&r.push([\"for(i\",p,\"=0;i\",p,\"<n\",p,\";++i\",p,\"){\"].join(\"\"));for(r.push(f(\"dptr\",\"scratch[sptr++]\")),u=0;u<t.length;++u){var p;0!==(p=t[u])&&r.push(\"dptr+=d\"+p,\"}\")}}else r.push(\"scratch=\"+h(\"ptr\"),\"while((j--\\x3eleft)&&(\"+h(\"cptr-s0\")+\">scratch)){\",f(\"cptr\",h(\"cptr-s0\")),\"cptr-=s0\",\"}\",f(\"cptr\",\"scratch\"));return r.push(\"}\"),t.length>1&&s&&r.push(\"free(scratch)\"),r.push(\"} return \"+n),s?new Function(\"malloc\",\"free\",r.join(\"\\n\"))(s[0],s[1]):new Function(r.join(\"\\n\"))()}(t,e),y=function(t,e,r){var n=[\"'use strict'\"],s=[\"ndarrayQuickSort\",t.join(\"d\"),e].join(\"\"),l=[\"left\",\"right\",\"data\",\"offset\"].concat(o(t.length)),c=i(e),u=0;n.push([\"function \",s,\"(\",l.join(\",\"),\"){\"].join(\"\"));var h=[\"sixth=((right-left+1)/6)|0\",\"index1=left+sixth\",\"index5=right-sixth\",\"index3=(left+right)>>1\",\"index2=index3-sixth\",\"index4=index3+sixth\",\"el1=index1\",\"el2=index2\",\"el3=index3\",\"el4=index4\",\"el5=index5\",\"less=left+1\",\"great=right-1\",\"pivots_are_equal=true\",\"tmp\",\"tmp0\",\"x\",\"y\",\"z\",\"k\",\"ptr0\",\"ptr1\",\"ptr2\",\"comp_pivot1=0\",\"comp_pivot2=0\",\"comp=0\"];if(t.length>1){for(var f=[],p=1;p<t.length;++p)f.push(\"n\"+p),h.push(\"i\"+p);for(p=0;p<8;++p)h.push(\"b_ptr\"+p);h.push(\"ptr3\",\"ptr4\",\"ptr5\",\"ptr6\",\"ptr7\",\"pivot_ptr\",\"ptr_shift\",\"elementSize=\"+f.join(\"*\")),c?h.push(\"pivot1=malloc(elementSize)\",\"pivot2=malloc(elementSize)\"):h.push(\"pivot1=new Array(elementSize),pivot2=new Array(elementSize)\")}else h.push(\"pivot1\",\"pivot2\");function d(t){return[\"(offset+\",t,\"*s0)\"].join(\"\")}function g(t){return\"generic\"===e?[\"data.get(\",t,\")\"].join(\"\"):[\"data[\",t,\"]\"].join(\"\")}function v(t,r){return\"generic\"===e?[\"data.set(\",t,\",\",r,\")\"].join(\"\"):[\"data[\",t,\"]=\",r].join(\"\")}function m(e,r,a){if(1===e.length)n.push(\"ptr0=\"+d(e[0]));else for(var i=0;i<e.length;++i)n.push([\"b_ptr\",i,\"=s0*\",e[i]].join(\"\"));for(r&&n.push(\"pivot_ptr=0\"),n.push(\"ptr_shift=offset\"),i=t.length-1;i>=0;--i)0!==(o=t[i])&&n.push([\"for(i\",o,\"=0;i\",o,\"<n\",o,\";++i\",o,\"){\"].join(\"\"));if(e.length>1)for(i=0;i<e.length;++i)n.push([\"ptr\",i,\"=b_ptr\",i,\"+ptr_shift\"].join(\"\"));for(n.push(a),r&&n.push(\"++pivot_ptr\"),i=0;i<t.length;++i){var o;0!==(o=t[i])&&(e.length>1?n.push(\"ptr_shift+=d\"+o):n.push(\"ptr0+=d\"+o),n.push(\"}\"))}}function y(e,r,a,i){if(1===r.length)n.push(\"ptr0=\"+d(r[0]));else{for(var o=0;o<r.length;++o)n.push([\"b_ptr\",o,\"=s0*\",r[o]].join(\"\"));n.push(\"ptr_shift=offset\")}for(a&&n.push(\"pivot_ptr=0\"),e&&n.push(e+\":\"),o=1;o<t.length;++o)n.push([\"for(i\",o,\"=0;i\",o,\"<n\",o,\";++i\",o,\"){\"].join(\"\"));if(r.length>1)for(o=0;o<r.length;++o)n.push([\"ptr\",o,\"=b_ptr\",o,\"+ptr_shift\"].join(\"\"));for(n.push(i),o=t.length-1;o>=1;--o)a&&n.push(\"pivot_ptr+=f\"+o),r.length>1?n.push(\"ptr_shift+=e\"+o):n.push(\"ptr0+=e\"+o),n.push(\"}\")}function x(){t.length>1&&c&&n.push(\"free(pivot1)\",\"free(pivot2)\")}function b(e,r){var a=\"el\"+e,i=\"el\"+r;if(t.length>1){var o=\"__l\"+ ++u;y(o,[a,i],!1,[\"comp=\",g(\"ptr0\"),\"-\",g(\"ptr1\"),\"\\n\",\"if(comp>0){tmp0=\",a,\";\",a,\"=\",i,\";\",i,\"=tmp0;break \",o,\"}\\n\",\"if(comp<0){break \",o,\"}\"].join(\"\"))}else n.push([\"if(\",g(d(a)),\">\",g(d(i)),\"){tmp0=\",a,\";\",a,\"=\",i,\";\",i,\"=tmp0}\"].join(\"\"))}function _(e,r){t.length>1?m([e,r],!1,v(\"ptr0\",g(\"ptr1\"))):n.push(v(d(e),g(d(r))))}function w(e,r,a){if(t.length>1){var i=\"__l\"+ ++u;y(i,[r],!0,[e,\"=\",g(\"ptr0\"),\"-pivot\",a,\"[pivot_ptr]\\n\",\"if(\",e,\"!==0){break \",i,\"}\"].join(\"\"))}else n.push([e,\"=\",g(d(r)),\"-pivot\",a].join(\"\"))}function k(e,r){t.length>1?m([e,r],!1,[\"tmp=\",g(\"ptr0\"),\"\\n\",v(\"ptr0\",g(\"ptr1\")),\"\\n\",v(\"ptr1\",\"tmp\")].join(\"\")):n.push([\"ptr0=\",d(e),\"\\n\",\"ptr1=\",d(r),\"\\n\",\"tmp=\",g(\"ptr0\"),\"\\n\",v(\"ptr0\",g(\"ptr1\")),\"\\n\",v(\"ptr1\",\"tmp\")].join(\"\"))}function T(e,r,a){t.length>1?(m([e,r,a],!1,[\"tmp=\",g(\"ptr0\"),\"\\n\",v(\"ptr0\",g(\"ptr1\")),\"\\n\",v(\"ptr1\",g(\"ptr2\")),\"\\n\",v(\"ptr2\",\"tmp\")].join(\"\")),n.push(\"++\"+r,\"--\"+a)):n.push([\"ptr0=\",d(e),\"\\n\",\"ptr1=\",d(r),\"\\n\",\"ptr2=\",d(a),\"\\n\",\"++\",r,\"\\n\",\"--\",a,\"\\n\",\"tmp=\",g(\"ptr0\"),\"\\n\",v(\"ptr0\",g(\"ptr1\")),\"\\n\",v(\"ptr1\",g(\"ptr2\")),\"\\n\",v(\"ptr2\",\"tmp\")].join(\"\"))}function A(t,e){k(t,e),n.push(\"--\"+e)}function M(e,r,a){t.length>1?m([e,r],!0,[v(\"ptr0\",g(\"ptr1\")),\"\\n\",v(\"ptr1\",[\"pivot\",a,\"[pivot_ptr]\"].join(\"\"))].join(\"\")):n.push(v(d(e),g(d(r))),v(d(r),\"pivot\"+a))}function S(e,r){n.push([\"if((\",r,\"-\",e,\")<=\",a,\"){\\n\",\"insertionSort(\",e,\",\",r,\",data,offset,\",o(t.length).join(\",\"),\")\\n\",\"}else{\\n\",s,\"(\",e,\",\",r,\",data,offset,\",o(t.length).join(\",\"),\")\\n\",\"}\"].join(\"\"))}function E(e,r,a){t.length>1?(n.push([\"__l\",++u,\":while(true){\"].join(\"\")),m([e],!0,[\"if(\",g(\"ptr0\"),\"!==pivot\",r,\"[pivot_ptr]){break __l\",u,\"}\"].join(\"\")),n.push(a,\"}\")):n.push([\"while(\",g(d(e)),\"===pivot\",r,\"){\",a,\"}\"].join(\"\"))}return n.push(\"var \"+h.join(\",\")),b(1,2),b(4,5),b(1,3),b(2,3),b(1,4),b(3,4),b(2,5),b(2,3),b(4,5),t.length>1?m([\"el1\",\"el2\",\"el3\",\"el4\",\"el5\",\"index1\",\"index3\",\"index5\"],!0,[\"pivot1[pivot_ptr]=\",g(\"ptr1\"),\"\\n\",\"pivot2[pivot_ptr]=\",g(\"ptr3\"),\"\\n\",\"pivots_are_equal=pivots_are_equal&&(pivot1[pivot_ptr]===pivot2[pivot_ptr])\\n\",\"x=\",g(\"ptr0\"),\"\\n\",\"y=\",g(\"ptr2\"),\"\\n\",\"z=\",g(\"ptr4\"),\"\\n\",v(\"ptr5\",\"x\"),\"\\n\",v(\"ptr6\",\"y\"),\"\\n\",v(\"ptr7\",\"z\")].join(\"\")):n.push([\"pivot1=\",g(d(\"el2\")),\"\\n\",\"pivot2=\",g(d(\"el4\")),\"\\n\",\"pivots_are_equal=pivot1===pivot2\\n\",\"x=\",g(d(\"el1\")),\"\\n\",\"y=\",g(d(\"el3\")),\"\\n\",\"z=\",g(d(\"el5\")),\"\\n\",v(d(\"index1\"),\"x\"),\"\\n\",v(d(\"index3\"),\"y\"),\"\\n\",v(d(\"index5\"),\"z\")].join(\"\")),_(\"index2\",\"left\"),_(\"index4\",\"right\"),n.push(\"if(pivots_are_equal){\"),n.push(\"for(k=less;k<=great;++k){\"),w(\"comp\",\"k\",1),n.push(\"if(comp===0){continue}\"),n.push(\"if(comp<0){\"),n.push(\"if(k!==less){\"),k(\"k\",\"less\"),n.push(\"}\"),n.push(\"++less\"),n.push(\"}else{\"),n.push(\"while(true){\"),w(\"comp\",\"great\",1),n.push(\"if(comp>0){\"),n.push(\"great--\"),n.push(\"}else if(comp<0){\"),T(\"k\",\"less\",\"great\"),n.push(\"break\"),n.push(\"}else{\"),A(\"k\",\"great\"),n.push(\"break\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}else{\"),n.push(\"for(k=less;k<=great;++k){\"),w(\"comp_pivot1\",\"k\",1),n.push(\"if(comp_pivot1<0){\"),n.push(\"if(k!==less){\"),k(\"k\",\"less\"),n.push(\"}\"),n.push(\"++less\"),n.push(\"}else{\"),w(\"comp_pivot2\",\"k\",2),n.push(\"if(comp_pivot2>0){\"),n.push(\"while(true){\"),w(\"comp\",\"great\",2),n.push(\"if(comp>0){\"),n.push(\"if(--great<k){break}\"),n.push(\"continue\"),n.push(\"}else{\"),w(\"comp\",\"great\",1),n.push(\"if(comp<0){\"),T(\"k\",\"less\",\"great\"),n.push(\"}else{\"),A(\"k\",\"great\"),n.push(\"}\"),n.push(\"break\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),M(\"left\",\"(less-1)\",1),M(\"right\",\"(great+1)\",2),S(\"left\",\"(less-2)\"),S(\"(great+2)\",\"right\"),n.push(\"if(pivots_are_equal){\"),x(),n.push(\"return\"),n.push(\"}\"),n.push(\"if(less<index1&&great>index5){\"),E(\"less\",1,\"++less\"),E(\"great\",2,\"--great\"),n.push(\"for(k=less;k<=great;++k){\"),w(\"comp_pivot1\",\"k\",1),n.push(\"if(comp_pivot1===0){\"),n.push(\"if(k!==less){\"),k(\"k\",\"less\"),n.push(\"}\"),n.push(\"++less\"),n.push(\"}else{\"),w(\"comp_pivot2\",\"k\",2),n.push(\"if(comp_pivot2===0){\"),n.push(\"while(true){\"),w(\"comp\",\"great\",2),n.push(\"if(comp===0){\"),n.push(\"if(--great<k){break}\"),n.push(\"continue\"),n.push(\"}else{\"),w(\"comp\",\"great\",1),n.push(\"if(comp<0){\"),T(\"k\",\"less\",\"great\"),n.push(\"}else{\"),A(\"k\",\"great\"),n.push(\"}\"),n.push(\"break\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),x(),S(\"less\",\"great\"),n.push(\"}return \"+s),t.length>1&&c?new Function(\"insertionSort\",\"malloc\",\"free\",n.join(\"\\n\"))(r,c[0],c[1]):new Function(\"insertionSort\",n.join(\"\\n\"))(r)}(t,e,m);return v(m,y)}},{\"typedarray-pool\":546}],449:[function(t,e,r){\"use strict\";var n=t(\"./lib/compile_sort.js\"),a={};e.exports=function(t){var e=t.order,r=t.dtype,i=[e,r].join(\":\"),o=a[i];return o||(a[i]=o=n(e,r)),o(t),t}},{\"./lib/compile_sort.js\":448}],450:[function(t,e,r){\"use strict\";var n=t(\"ndarray-linear-interpolate\"),a=t(\"cwise/lib/wrapper\")({args:[\"index\",\"array\",\"scalar\",\"scalar\",\"scalar\"],pre:{body:\"{this_warped=new Array(_inline_3_arg4_)}\",args:[{name:\"_inline_3_arg0_\",lvalue:!1,rvalue:!1,count:0},{name:\"_inline_3_arg1_\",lvalue:!1,rvalue:!1,count:0},{name:\"_inline_3_arg2_\",lvalue:!1,rvalue:!1,count:0},{name:\"_inline_3_arg3_\",lvalue:!1,rvalue:!1,count:0},{name:\"_inline_3_arg4_\",lvalue:!1,rvalue:!0,count:1}],thisVars:[\"this_warped\"],localVars:[]},body:{body:\"{_inline_4_arg2_(this_warped,_inline_4_arg0_),_inline_4_arg1_=_inline_4_arg3_.apply(void 0,this_warped)}\",args:[{name:\"_inline_4_arg0_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_4_arg1_\",lvalue:!0,rvalue:!1,count:1},{name:\"_inline_4_arg2_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_4_arg3_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_4_arg4_\",lvalue:!1,rvalue:!1,count:0}],thisVars:[\"this_warped\"],localVars:[]},post:{body:\"{}\",args:[],thisVars:[],localVars:[]},debug:!1,funcName:\"warpND\",blockSize:64}),i=t(\"cwise/lib/wrapper\")({args:[\"index\",\"array\",\"scalar\",\"scalar\",\"scalar\"],pre:{body:\"{this_warped=[0]}\",args:[],thisVars:[\"this_warped\"],localVars:[]},body:{body:\"{_inline_7_arg2_(this_warped,_inline_7_arg0_),_inline_7_arg1_=_inline_7_arg3_(_inline_7_arg4_,this_warped[0])}\",args:[{name:\"_inline_7_arg0_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_7_arg1_\",lvalue:!0,rvalue:!1,count:1},{name:\"_inline_7_arg2_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_7_arg3_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_7_arg4_\",lvalue:!1,rvalue:!0,count:1}],thisVars:[\"this_warped\"],localVars:[]},post:{body:\"{}\",args:[],thisVars:[],localVars:[]},debug:!1,funcName:\"warp1D\",blockSize:64}),o=t(\"cwise/lib/wrapper\")({args:[\"index\",\"array\",\"scalar\",\"scalar\",\"scalar\"],pre:{body:\"{this_warped=[0,0]}\",args:[],thisVars:[\"this_warped\"],localVars:[]},body:{body:\"{_inline_10_arg2_(this_warped,_inline_10_arg0_),_inline_10_arg1_=_inline_10_arg3_(_inline_10_arg4_,this_warped[0],this_warped[1])}\",args:[{name:\"_inline_10_arg0_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_10_arg1_\",lvalue:!0,rvalue:!1,count:1},{name:\"_inline_10_arg2_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_10_arg3_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_10_arg4_\",lvalue:!1,rvalue:!0,count:1}],thisVars:[\"this_warped\"],localVars:[]},post:{body:\"{}\",args:[],thisVars:[],localVars:[]},debug:!1,funcName:\"warp2D\",blockSize:64}),s=t(\"cwise/lib/wrapper\")({args:[\"index\",\"array\",\"scalar\",\"scalar\",\"scalar\"],pre:{body:\"{this_warped=[0,0,0]}\",args:[],thisVars:[\"this_warped\"],localVars:[]},body:{body:\"{_inline_13_arg2_(this_warped,_inline_13_arg0_),_inline_13_arg1_=_inline_13_arg3_(_inline_13_arg4_,this_warped[0],this_warped[1],this_warped[2])}\",args:[{name:\"_inline_13_arg0_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_13_arg1_\",lvalue:!0,rvalue:!1,count:1},{name:\"_inline_13_arg2_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_13_arg3_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_13_arg4_\",lvalue:!1,rvalue:!0,count:1}],thisVars:[\"this_warped\"],localVars:[]},post:{body:\"{}\",args:[],thisVars:[],localVars:[]},debug:!1,funcName:\"warp3D\",blockSize:64});e.exports=function(t,e,r){switch(e.shape.length){case 1:i(t,r,n.d1,e);break;case 2:o(t,r,n.d2,e);break;case 3:s(t,r,n.d3,e);break;default:a(t,r,n.bind(void 0,e),e.shape.length)}return t}},{\"cwise/lib/wrapper\":150,\"ndarray-linear-interpolate\":444}],451:[function(t,e,r){var n=t(\"iota-array\"),a=t(\"is-buffer\"),i=\"undefined\"!=typeof Float64Array;function o(t,e){return t[0]-e[0]}function s(){var t,e=this.stride,r=new Array(e.length);for(t=0;t<r.length;++t)r[t]=[Math.abs(e[t]),t];r.sort(o);var n=new Array(r.length);for(t=0;t<n.length;++t)n[t]=r[t][1];return n}function l(t,e){var r=[\"View\",e,\"d\",t].join(\"\");e<0&&(r=\"View_Nil\"+t);var a=\"generic\"===t;if(-1===e){var i=\"function \"+r+\"(a){this.data=a;};var proto=\"+r+\".prototype;proto.dtype='\"+t+\"';proto.index=function(){return -1};proto.size=0;proto.dimension=-1;proto.shape=proto.stride=proto.order=[];proto.lo=proto.hi=proto.transpose=proto.step=function(){return new \"+r+\"(this.data);};proto.get=proto.set=function(){};proto.pick=function(){return null};return function construct_\"+r+\"(a){return new \"+r+\"(a);}\";return new Function(i)()}if(0===e){i=\"function \"+r+\"(a,d) {this.data = a;this.offset = d};var proto=\"+r+\".prototype;proto.dtype='\"+t+\"';proto.index=function(){return this.offset};proto.dimension=0;proto.size=1;proto.shape=proto.stride=proto.order=[];proto.lo=proto.hi=proto.transpose=proto.step=function \"+r+\"_copy() {return new \"+r+\"(this.data,this.offset)};proto.pick=function \"+r+\"_pick(){return TrivialArray(this.data);};proto.valueOf=proto.get=function \"+r+\"_get(){return \"+(a?\"this.data.get(this.offset)\":\"this.data[this.offset]\")+\"};proto.set=function \"+r+\"_set(v){return \"+(a?\"this.data.set(this.offset,v)\":\"this.data[this.offset]=v\")+\"};return function construct_\"+r+\"(a,b,c,d){return new \"+r+\"(a,d)}\";return new Function(\"TrivialArray\",i)(c[t][0])}i=[\"'use strict'\"];var o=n(e),l=o.map(function(t){return\"i\"+t}),u=\"this.offset+\"+o.map(function(t){return\"this.stride[\"+t+\"]*i\"+t}).join(\"+\"),h=o.map(function(t){return\"b\"+t}).join(\",\"),f=o.map(function(t){return\"c\"+t}).join(\",\");i.push(\"function \"+r+\"(a,\"+h+\",\"+f+\",d){this.data=a\",\"this.shape=[\"+h+\"]\",\"this.stride=[\"+f+\"]\",\"this.offset=d|0}\",\"var proto=\"+r+\".prototype\",\"proto.dtype='\"+t+\"'\",\"proto.dimension=\"+e),i.push(\"Object.defineProperty(proto,'size',{get:function \"+r+\"_size(){return \"+o.map(function(t){return\"this.shape[\"+t+\"]\"}).join(\"*\"),\"}})\"),1===e?i.push(\"proto.order=[0]\"):(i.push(\"Object.defineProperty(proto,'order',{get:\"),e<4?(i.push(\"function \"+r+\"_order(){\"),2===e?i.push(\"return (Math.abs(this.stride[0])>Math.abs(this.stride[1]))?[1,0]:[0,1]}})\"):3===e&&i.push(\"var s0=Math.abs(this.stride[0]),s1=Math.abs(this.stride[1]),s2=Math.abs(this.stride[2]);if(s0>s1){if(s1>s2){return [2,1,0];}else if(s0>s2){return [1,2,0];}else{return [1,0,2];}}else if(s0>s2){return [2,0,1];}else if(s2>s1){return [0,1,2];}else{return [0,2,1];}}})\")):i.push(\"ORDER})\")),i.push(\"proto.set=function \"+r+\"_set(\"+l.join(\",\")+\",v){\"),a?i.push(\"return this.data.set(\"+u+\",v)}\"):i.push(\"return this.data[\"+u+\"]=v}\"),i.push(\"proto.get=function \"+r+\"_get(\"+l.join(\",\")+\"){\"),a?i.push(\"return this.data.get(\"+u+\")}\"):i.push(\"return this.data[\"+u+\"]}\"),i.push(\"proto.index=function \"+r+\"_index(\",l.join(),\"){return \"+u+\"}\"),i.push(\"proto.hi=function \"+r+\"_hi(\"+l.join(\",\")+\"){return new \"+r+\"(this.data,\"+o.map(function(t){return[\"(typeof i\",t,\"!=='number'||i\",t,\"<0)?this.shape[\",t,\"]:i\",t,\"|0\"].join(\"\")}).join(\",\")+\",\"+o.map(function(t){return\"this.stride[\"+t+\"]\"}).join(\",\")+\",this.offset)}\");var p=o.map(function(t){return\"a\"+t+\"=this.shape[\"+t+\"]\"}),d=o.map(function(t){return\"c\"+t+\"=this.stride[\"+t+\"]\"});i.push(\"proto.lo=function \"+r+\"_lo(\"+l.join(\",\")+\"){var b=this.offset,d=0,\"+p.join(\",\")+\",\"+d.join(\",\"));for(var g=0;g<e;++g)i.push(\"if(typeof i\"+g+\"==='number'&&i\"+g+\">=0){d=i\"+g+\"|0;b+=c\"+g+\"*d;a\"+g+\"-=d}\");i.push(\"return new \"+r+\"(this.data,\"+o.map(function(t){return\"a\"+t}).join(\",\")+\",\"+o.map(function(t){return\"c\"+t}).join(\",\")+\",b)}\"),i.push(\"proto.step=function \"+r+\"_step(\"+l.join(\",\")+\"){var \"+o.map(function(t){return\"a\"+t+\"=this.shape[\"+t+\"]\"}).join(\",\")+\",\"+o.map(function(t){return\"b\"+t+\"=this.stride[\"+t+\"]\"}).join(\",\")+\",c=this.offset,d=0,ceil=Math.ceil\");for(g=0;g<e;++g)i.push(\"if(typeof i\"+g+\"==='number'){d=i\"+g+\"|0;if(d<0){c+=b\"+g+\"*(a\"+g+\"-1);a\"+g+\"=ceil(-a\"+g+\"/d)}else{a\"+g+\"=ceil(a\"+g+\"/d)}b\"+g+\"*=d}\");i.push(\"return new \"+r+\"(this.data,\"+o.map(function(t){return\"a\"+t}).join(\",\")+\",\"+o.map(function(t){return\"b\"+t}).join(\",\")+\",c)}\");var v=new Array(e),m=new Array(e);for(g=0;g<e;++g)v[g]=\"a[i\"+g+\"]\",m[g]=\"b[i\"+g+\"]\";i.push(\"proto.transpose=function \"+r+\"_transpose(\"+l+\"){\"+l.map(function(t,e){return t+\"=(\"+t+\"===undefined?\"+e+\":\"+t+\"|0)\"}).join(\";\"),\"var a=this.shape,b=this.stride;return new \"+r+\"(this.data,\"+v.join(\",\")+\",\"+m.join(\",\")+\",this.offset)}\"),i.push(\"proto.pick=function \"+r+\"_pick(\"+l+\"){var a=[],b=[],c=this.offset\");for(g=0;g<e;++g)i.push(\"if(typeof i\"+g+\"==='number'&&i\"+g+\">=0){c=(c+this.stride[\"+g+\"]*i\"+g+\")|0}else{a.push(this.shape[\"+g+\"]);b.push(this.stride[\"+g+\"])}\");return i.push(\"var ctor=CTOR_LIST[a.length+1];return ctor(this.data,a,b,c)}\"),i.push(\"return function construct_\"+r+\"(data,shape,stride,offset){return new \"+r+\"(data,\"+o.map(function(t){return\"shape[\"+t+\"]\"}).join(\",\")+\",\"+o.map(function(t){return\"stride[\"+t+\"]\"}).join(\",\")+\",offset)}\"),new Function(\"CTOR_LIST\",\"ORDER\",i.join(\"\\n\"))(c[t],s)}var c={float32:[],float64:[],int8:[],int16:[],int32:[],uint8:[],uint16:[],uint32:[],array:[],uint8_clamped:[],buffer:[],generic:[]};e.exports=function(t,e,r,n){if(void 0===t)return(0,c.array[0])([]);\"number\"==typeof t&&(t=[t]),void 0===e&&(e=[t.length]);var o=e.length;if(void 0===r){r=new Array(o);for(var s=o-1,u=1;s>=0;--s)r[s]=u,u*=e[s]}if(void 0===n)for(n=0,s=0;s<o;++s)r[s]<0&&(n-=(e[s]-1)*r[s]);for(var h=function(t){if(a(t))return\"buffer\";if(i)switch(Object.prototype.toString.call(t)){case\"[object Float64Array]\":return\"float64\";case\"[object Float32Array]\":return\"float32\";case\"[object Int8Array]\":return\"int8\";case\"[object Int16Array]\":return\"int16\";case\"[object Int32Array]\":return\"int32\";case\"[object Uint8Array]\":return\"uint8\";case\"[object Uint16Array]\":return\"uint16\";case\"[object Uint32Array]\":return\"uint32\";case\"[object Uint8ClampedArray]\":return\"uint8_clamped\"}return Array.isArray(t)?\"array\":\"generic\"}(t),f=c[h];f.length<=o+1;)f.push(l(h,f.length-1));return(0,f[o+1])(t,e,r,n)}},{\"iota-array\":417,\"is-buffer\":419}],452:[function(t,e,r){\"use strict\";var n=t(\"double-bits\"),a=Math.pow(2,-1074),i=-1>>>0;e.exports=function(t,e){if(isNaN(t)||isNaN(e))return NaN;if(t===e)return t;if(0===t)return e<0?-a:a;var r=n.hi(t),o=n.lo(t);e>t==t>0?o===i?(r+=1,o=0):o+=1:0===o?(o=i,r-=1):o-=1;return n.pack(o,r)}},{\"double-bits\":168}],453:[function(t,e,r){var n=Math.PI,a=c(120);function i(t,e,r,n){return[\"C\",t,e,r,n,r,n]}function o(t,e,r,n,a,i){return[\"C\",t/3+2/3*r,e/3+2/3*n,a/3+2/3*r,i/3+2/3*n,a,i]}function s(t,e,r,i,o,c,u,h,f,p){if(p)k=p[0],T=p[1],_=p[2],w=p[3];else{var d=l(t,e,-o);t=d.x,e=d.y;var g=(t-(h=(d=l(h,f,-o)).x))/2,v=(e-(f=d.y))/2,m=g*g/(r*r)+v*v/(i*i);m>1&&(r*=m=Math.sqrt(m),i*=m);var y=r*r,x=i*i,b=(c==u?-1:1)*Math.sqrt(Math.abs((y*x-y*v*v-x*g*g)/(y*v*v+x*g*g)));b==1/0&&(b=1);var _=b*r*v/i+(t+h)/2,w=b*-i*g/r+(e+f)/2,k=Math.asin(((e-w)/i).toFixed(9)),T=Math.asin(((f-w)/i).toFixed(9));(k=t<_?n-k:k)<0&&(k=2*n+k),(T=h<_?n-T:T)<0&&(T=2*n+T),u&&k>T&&(k-=2*n),!u&&T>k&&(T-=2*n)}if(Math.abs(T-k)>a){var A=T,M=h,S=f;T=k+a*(u&&T>k?1:-1);var E=s(h=_+r*Math.cos(T),f=w+i*Math.sin(T),r,i,o,0,u,M,S,[T,A,_,w])}var C=Math.tan((T-k)/4),L=4/3*r*C,P=4/3*i*C,O=[2*t-(t+L*Math.sin(k)),2*e-(e-P*Math.cos(k)),h+L*Math.sin(T),f-P*Math.cos(T),h,f];if(p)return O;E&&(O=O.concat(E));for(var I=0;I<O.length;){var z=l(O[I],O[I+1],o);O[I++]=z.x,O[I++]=z.y}return O}function l(t,e,r){return{x:t*Math.cos(r)-e*Math.sin(r),y:t*Math.sin(r)+e*Math.cos(r)}}function c(t){return t*(n/180)}e.exports=function(t){for(var e,r=[],n=0,a=0,l=0,u=0,h=null,f=null,p=0,d=0,g=0,v=t.length;g<v;g++){var m=t[g],y=m[0];switch(y){case\"M\":l=m[1],u=m[2];break;case\"A\":(m=s(p,d,m[1],m[2],c(m[3]),m[4],m[5],m[6],m[7])).unshift(\"C\"),m.length>7&&(r.push(m.splice(0,7)),m.unshift(\"C\"));break;case\"S\":var x=p,b=d;\"C\"!=e&&\"S\"!=e||(x+=x-n,b+=b-a),m=[\"C\",x,b,m[1],m[2],m[3],m[4]];break;case\"T\":\"Q\"==e||\"T\"==e?(h=2*p-h,f=2*d-f):(h=p,f=d),m=o(p,d,h,f,m[1],m[2]);break;case\"Q\":h=m[1],f=m[2],m=o(p,d,m[1],m[2],m[3],m[4]);break;case\"L\":m=i(p,d,m[1],m[2]);break;case\"H\":m=i(p,d,m[1],d);break;case\"V\":m=i(p,d,p,m[1]);break;case\"Z\":m=i(p,d,l,u)}e=y,p=m[m.length-2],d=m[m.length-1],m.length>4?(n=m[m.length-4],a=m[m.length-3]):(n=p,a=d),r.push(m)}return r}},{}],454:[function(t,e,r){r.vertexNormals=function(t,e,r){for(var n=e.length,a=new Array(n),i=void 0===r?1e-6:r,o=0;o<n;++o)a[o]=[0,0,0];for(o=0;o<t.length;++o)for(var s=t[o],l=0,c=s[s.length-1],u=s[0],h=0;h<s.length;++h){l=c,c=u,u=s[(h+1)%s.length];for(var f=e[l],p=e[c],d=e[u],g=new Array(3),v=0,m=new Array(3),y=0,x=0;x<3;++x)g[x]=f[x]-p[x],v+=g[x]*g[x],m[x]=d[x]-p[x],y+=m[x]*m[x];if(v*y>i){var b=a[c],_=1/Math.sqrt(v*y);for(x=0;x<3;++x){var w=(x+1)%3,k=(x+2)%3;b[x]+=_*(m[w]*g[k]-m[k]*g[w])}}}for(o=0;o<n;++o){b=a[o];var T=0;for(x=0;x<3;++x)T+=b[x]*b[x];if(T>i)for(_=1/Math.sqrt(T),x=0;x<3;++x)b[x]*=_;else for(x=0;x<3;++x)b[x]=0}return a},r.faceNormals=function(t,e,r){for(var n=t.length,a=new Array(n),i=void 0===r?1e-6:r,o=0;o<n;++o){for(var s=t[o],l=new Array(3),c=0;c<3;++c)l[c]=e[s[c]];var u=new Array(3),h=new Array(3);for(c=0;c<3;++c)u[c]=l[1][c]-l[0][c],h[c]=l[2][c]-l[0][c];var f=new Array(3),p=0;for(c=0;c<3;++c){var d=(c+1)%3,g=(c+2)%3;f[c]=u[d]*h[g]-u[g]*h[d],p+=f[c]*f[c]}p=p>i?1/Math.sqrt(p):0;for(c=0;c<3;++c)f[c]*=p;a[o]=f}return a}},{}],455:[function(t,e,r){\"use strict\";var n=Object.getOwnPropertySymbols,a=Object.prototype.hasOwnProperty,i=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var t=new String(\"abc\");if(t[5]=\"de\",\"5\"===Object.getOwnPropertyNames(t)[0])return!1;for(var e={},r=0;r<10;r++)e[\"_\"+String.fromCharCode(r)]=r;if(\"0123456789\"!==Object.getOwnPropertyNames(e).map(function(t){return e[t]}).join(\"\"))return!1;var n={};return\"abcdefghijklmnopqrst\".split(\"\").forEach(function(t){n[t]=t}),\"abcdefghijklmnopqrst\"===Object.keys(Object.assign({},n)).join(\"\")}catch(t){return!1}}()?Object.assign:function(t,e){for(var r,o,s=function(t){if(null==t)throw new TypeError(\"Object.assign cannot be called with null or undefined\");return Object(t)}(t),l=1;l<arguments.length;l++){for(var c in r=Object(arguments[l]))a.call(r,c)&&(s[c]=r[c]);if(n){o=n(r);for(var u=0;u<o.length;u++)i.call(r,o[u])&&(s[o[u]]=r[o[u]])}}return s}},{}],456:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,a,i,o,s,l,c){var u=e+i+c;if(h>0){var h=Math.sqrt(u+1);t[0]=.5*(o-l)/h,t[1]=.5*(s-n)/h,t[2]=.5*(r-i)/h,t[3]=.5*h}else{var f=Math.max(e,i,c),h=Math.sqrt(2*f-u+1);e>=f?(t[0]=.5*h,t[1]=.5*(a+r)/h,t[2]=.5*(s+n)/h,t[3]=.5*(o-l)/h):i>=f?(t[0]=.5*(r+a)/h,t[1]=.5*h,t[2]=.5*(l+o)/h,t[3]=.5*(s-n)/h):(t[0]=.5*(n+s)/h,t[1]=.5*(o+l)/h,t[2]=.5*h,t[3]=.5*(r-a)/h)}return t}},{}],457:[function(t,e,r){\"use strict\";e.exports=function(t){var e=(t=t||{}).center||[0,0,0],r=t.rotation||[0,0,0,1],n=t.radius||1;e=[].slice.call(e,0,3),u(r=[].slice.call(r,0,4),r);var a=new h(r,e,Math.log(n));a.setDistanceLimits(t.zoomMin,t.zoomMax),(\"eye\"in t||\"up\"in t)&&a.lookAt(0,t.eye,t.center,t.up);return a};var n=t(\"filtered-vector\"),a=t(\"gl-mat4/lookAt\"),i=t(\"gl-mat4/fromQuat\"),o=t(\"gl-mat4/invert\"),s=t(\"./lib/quatFromFrame\");function l(t,e,r){return Math.sqrt(Math.pow(t,2)+Math.pow(e,2)+Math.pow(r,2))}function c(t,e,r,n){return Math.sqrt(Math.pow(t,2)+Math.pow(e,2)+Math.pow(r,2)+Math.pow(n,2))}function u(t,e){var r=e[0],n=e[1],a=e[2],i=e[3],o=c(r,n,a,i);o>1e-6?(t[0]=r/o,t[1]=n/o,t[2]=a/o,t[3]=i/o):(t[0]=t[1]=t[2]=0,t[3]=1)}function h(t,e,r){this.radius=n([r]),this.center=n(e),this.rotation=n(t),this.computedRadius=this.radius.curve(0),this.computedCenter=this.center.curve(0),this.computedRotation=this.rotation.curve(0),this.computedUp=[.1,0,0],this.computedEye=[.1,0,0],this.computedMatrix=[.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],this.recalcMatrix(0)}var f=h.prototype;f.lastT=function(){return Math.max(this.radius.lastT(),this.center.lastT(),this.rotation.lastT())},f.recalcMatrix=function(t){this.radius.curve(t),this.center.curve(t),this.rotation.curve(t);var e=this.computedRotation;u(e,e);var r=this.computedMatrix;i(r,e);var n=this.computedCenter,a=this.computedEye,o=this.computedUp,s=Math.exp(this.computedRadius[0]);a[0]=n[0]+s*r[2],a[1]=n[1]+s*r[6],a[2]=n[2]+s*r[10],o[0]=r[1],o[1]=r[5],o[2]=r[9];for(var l=0;l<3;++l){for(var c=0,h=0;h<3;++h)c+=r[l+4*h]*a[h];r[12+l]=-c}},f.getMatrix=function(t,e){this.recalcMatrix(t);var r=this.computedMatrix;if(e){for(var n=0;n<16;++n)e[n]=r[n];return e}return r},f.idle=function(t){this.center.idle(t),this.radius.idle(t),this.rotation.idle(t)},f.flush=function(t){this.center.flush(t),this.radius.flush(t),this.rotation.flush(t)},f.pan=function(t,e,r,n){e=e||0,r=r||0,n=n||0,this.recalcMatrix(t);var a=this.computedMatrix,i=a[1],o=a[5],s=a[9],c=l(i,o,s);i/=c,o/=c,s/=c;var u=a[0],h=a[4],f=a[8],p=u*i+h*o+f*s,d=l(u-=i*p,h-=o*p,f-=s*p);u/=d,h/=d,f/=d;var g=a[2],v=a[6],m=a[10],y=g*i+v*o+m*s,x=g*u+v*h+m*f,b=l(g-=y*i+x*u,v-=y*o+x*h,m-=y*s+x*f);g/=b,v/=b,m/=b;var _=u*e+i*r,w=h*e+o*r,k=f*e+s*r;this.center.move(t,_,w,k);var T=Math.exp(this.computedRadius[0]);T=Math.max(1e-4,T+n),this.radius.set(t,Math.log(T))},f.rotate=function(t,e,r,n){this.recalcMatrix(t),e=e||0,r=r||0;var a=this.computedMatrix,i=a[0],o=a[4],s=a[8],u=a[1],h=a[5],f=a[9],p=a[2],d=a[6],g=a[10],v=e*i+r*u,m=e*o+r*h,y=e*s+r*f,x=-(d*y-g*m),b=-(g*v-p*y),_=-(p*m-d*v),w=Math.sqrt(Math.max(0,1-Math.pow(x,2)-Math.pow(b,2)-Math.pow(_,2))),k=c(x,b,_,w);k>1e-6?(x/=k,b/=k,_/=k,w/=k):(x=b=_=0,w=1);var T=this.computedRotation,A=T[0],M=T[1],S=T[2],E=T[3],C=A*w+E*x+M*_-S*b,L=M*w+E*b+S*x-A*_,P=S*w+E*_+A*b-M*x,O=E*w-A*x-M*b-S*_;if(n){x=p,b=d,_=g;var I=Math.sin(n)/l(x,b,_);x*=I,b*=I,_*=I,O=O*(w=Math.cos(e))-(C=C*w+O*x+L*_-P*b)*x-(L=L*w+O*b+P*x-C*_)*b-(P=P*w+O*_+C*b-L*x)*_}var z=c(C,L,P,O);z>1e-6?(C/=z,L/=z,P/=z,O/=z):(C=L=P=0,O=1),this.rotation.set(t,C,L,P,O)},f.lookAt=function(t,e,r,n){this.recalcMatrix(t),r=r||this.computedCenter,e=e||this.computedEye,n=n||this.computedUp;var i=this.computedMatrix;a(i,e,r,n);var o=this.computedRotation;s(o,i[0],i[1],i[2],i[4],i[5],i[6],i[8],i[9],i[10]),u(o,o),this.rotation.set(t,o[0],o[1],o[2],o[3]);for(var l=0,c=0;c<3;++c)l+=Math.pow(r[c]-e[c],2);this.radius.set(t,.5*Math.log(Math.max(l,1e-6))),this.center.set(t,r[0],r[1],r[2])},f.translate=function(t,e,r,n){this.center.move(t,e||0,r||0,n||0)},f.setMatrix=function(t,e){var r=this.computedRotation;s(r,e[0],e[1],e[2],e[4],e[5],e[6],e[8],e[9],e[10]),u(r,r),this.rotation.set(t,r[0],r[1],r[2],r[3]);var n=this.computedMatrix;o(n,e);var a=n[15];if(Math.abs(a)>1e-6){var i=n[12]/a,l=n[13]/a,c=n[14]/a;this.recalcMatrix(t);var h=Math.exp(this.computedRadius[0]);this.center.set(t,i-n[2]*h,l-n[6]*h,c-n[10]*h),this.radius.idle(t)}else this.center.idle(t),this.radius.idle(t)},f.setDistance=function(t,e){e>0&&this.radius.set(t,Math.log(e))},f.setDistanceLimits=function(t,e){t=t>0?Math.log(t):-1/0,e=e>0?Math.log(e):1/0,e=Math.max(e,t),this.radius.bounds[0][0]=t,this.radius.bounds[1][0]=e},f.getDistanceLimits=function(t){var e=this.radius.bounds;return t?(t[0]=Math.exp(e[0][0]),t[1]=Math.exp(e[1][0]),t):[Math.exp(e[0][0]),Math.exp(e[1][0])]},f.toJSON=function(){return this.recalcMatrix(this.lastT()),{center:this.computedCenter.slice(),rotation:this.computedRotation.slice(),distance:Math.log(this.computedRadius[0]),zoomMin:this.radius.bounds[0][0],zoomMax:this.radius.bounds[1][0]}},f.fromJSON=function(t){var e=this.lastT(),r=t.center;r&&this.center.set(e,r[0],r[1],r[2]);var n=t.rotation;n&&this.rotation.set(e,n[0],n[1],n[2],n[3]);var a=t.distance;a&&a>0&&this.radius.set(e,Math.log(a)),this.setDistanceLimits(t.zoomMin,t.zoomMax)}},{\"./lib/quatFromFrame\":456,\"filtered-vector\":227,\"gl-mat4/fromQuat\":263,\"gl-mat4/invert\":266,\"gl-mat4/lookAt\":267}],458:[function(t,e,r){\"use strict\";var n=t(\"repeat-string\");e.exports=function(t,e,r){return n(r=\"undefined\"!=typeof r?r+\"\":\" \",e)+t}},{\"repeat-string\":504}],459:[function(t,e,r){\"use strict\";function n(t,e){if(\"string\"!=typeof t)return[t];var r=[t];\"string\"==typeof e||Array.isArray(e)?e={brackets:e}:e||(e={});var n=e.brackets?Array.isArray(e.brackets)?e.brackets:[e.brackets]:[\"{}\",\"[]\",\"()\"],a=e.escape||\"___\",i=!!e.flat;n.forEach(function(t){var e=new RegExp([\"\\\\\",t[0],\"[^\\\\\",t[0],\"\\\\\",t[1],\"]*\\\\\",t[1]].join(\"\")),n=[];function i(e,i,o){var s=r.push(e.slice(t[0].length,-t[1].length))-1;return n.push(s),a+s+a}r.forEach(function(t,n){for(var a,o=0;t!=a;)if(a=t,t=t.replace(e,i),o++>1e4)throw Error(\"References have circular dependency. Please, check them.\");r[n]=t}),n=n.reverse(),r=r.map(function(e){return n.forEach(function(r){e=e.replace(new RegExp(\"(\\\\\"+a+r+\"\\\\\"+a+\")\",\"g\"),t[0]+\"$1\"+t[1])}),e})});var o=new RegExp(\"\\\\\"+a+\"([0-9]+)\\\\\"+a);return i?r:function t(e,r,n){for(var a,i=[],s=0;a=o.exec(e);){if(s++>1e4)throw Error(\"Circular references in parenthesis\");i.push(e.slice(0,a.index)),i.push(t(r[a[1]],r)),e=e.slice(a.index+a[0].length)}return i.push(e),i}(r[0],r)}function a(t,e){if(e&&e.flat){var r,n=e&&e.escape||\"___\",a=t[0];if(!a)return\"\";for(var i=new RegExp(\"\\\\\"+n+\"([0-9]+)\\\\\"+n),o=0;a!=r;){if(o++>1e4)throw Error(\"Circular references in \"+t);r=a,a=a.replace(i,s)}return a}return t.reduce(function t(e,r){return Array.isArray(r)&&(r=r.reduce(t,\"\")),e+r},\"\");function s(e,r){if(null==t[r])throw Error(\"Reference \"+r+\"is undefined\");return t[r]}}function i(t,e){return Array.isArray(t)?a(t,e):n(t,e)}i.parse=n,i.stringify=a,e.exports=i},{}],460:[function(t,e,r){\"use strict\";var n=t(\"pick-by-alias\");e.exports=function(t){var e;arguments.length>1&&(t=arguments);\"string\"==typeof t?t=t.split(/\\s/).map(parseFloat):\"number\"==typeof t&&(t=[t]);t.length&&\"number\"==typeof t[0]?e=1===t.length?{width:t[0],height:t[0],x:0,y:0}:2===t.length?{width:t[0],height:t[1],x:0,y:0}:{x:t[0],y:t[1],width:t[2]-t[0]||0,height:t[3]-t[1]||0}:t&&(t=n(t,{left:\"x l left Left\",top:\"y t top Top\",width:\"w width W Width\",height:\"h height W Width\",bottom:\"b bottom Bottom\",right:\"r right Right\"}),e={x:t.left||0,y:t.top||0},null==t.width?t.right?e.width=t.right-e.x:e.width=0:e.width=t.width,null==t.height?t.bottom?e.height=t.bottom-e.y:e.height=0:e.height=t.height);return e}},{\"pick-by-alias\":466}],461:[function(t,e,r){e.exports=function(t){var e=[];return t.replace(a,function(t,r,a){var o=r.toLowerCase();for(a=function(t){var e=t.match(i);return e?e.map(Number):[]}(a),\"m\"==o&&a.length>2&&(e.push([r].concat(a.splice(0,2))),o=\"l\",r=\"m\"==r?\"l\":\"L\");;){if(a.length==n[o])return a.unshift(r),e.push(a);if(a.length<n[o])throw new Error(\"malformed path data\");e.push([r].concat(a.splice(0,n[o])))}}),e};var n={a:7,c:6,h:1,l:2,m:2,q:4,s:4,t:2,v:1,z:0},a=/([astvzqmhlc])([^astvzqmhlc]*)/gi;var i=/-?[0-9]*\\.?[0-9]+(?:e[-+]?\\d+)?/gi},{}],462:[function(t,e,r){e.exports=function(t,e){e||(e=[0,\"\"]),t=String(t);var r=parseFloat(t,10);return e[0]=r,e[1]=t.match(/[\\d.\\-\\+]*\\s*(.*)/)[1]||\"\",e}},{}],463:[function(t,e,r){(function(t){(function(){var r,n,a,i,o,s;\"undefined\"!=typeof performance&&null!==performance&&performance.now?e.exports=function(){return performance.now()}:\"undefined\"!=typeof t&&null!==t&&t.hrtime?(e.exports=function(){return(r()-o)/1e6},n=t.hrtime,i=(r=function(){var t;return 1e9*(t=n())[0]+t[1]})(),s=1e9*t.uptime(),o=i-s):Date.now?(e.exports=function(){return Date.now()-a},a=Date.now()):(e.exports=function(){return(new Date).getTime()-a},a=(new Date).getTime())}).call(this)}).call(this,t(\"_process\"))},{_process:483}],464:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.length;if(e<n){for(var r=1,i=0;i<e;++i)for(var o=0;o<i;++o)if(t[i]<t[o])r=-r;else if(t[i]===t[o])return 0;return r}for(var s=a.mallocUint8(e),i=0;i<e;++i)s[i]=0;for(var r=1,i=0;i<e;++i)if(!s[i]){var l=1;s[i]=1;for(var o=t[i];o!==i;o=t[o]){if(s[o])return a.freeUint8(s),0;l+=1,s[o]=1}1&l||(r=-r)}return a.freeUint8(s),r};var n=32,a=t(\"typedarray-pool\")},{\"typedarray-pool\":546}],465:[function(t,e,r){\"use strict\";var n=t(\"typedarray-pool\"),a=t(\"invert-permutation\");r.rank=function(t){var e=t.length;switch(e){case 0:case 1:return 0;case 2:return t[1]}var r,i,o,s=n.mallocUint32(e),l=n.mallocUint32(e),c=0;for(a(t,l),o=0;o<e;++o)s[o]=t[o];for(o=e-1;o>0;--o)i=l[o],r=s[o],s[o]=s[i],s[i]=r,l[o]=l[r],l[r]=i,c=(c+r)*o;return n.freeUint32(l),n.freeUint32(s),c},r.unrank=function(t,e,r){switch(t){case 0:return r||[];case 1:return r?(r[0]=0,r):[0];case 2:return r?(e?(r[0]=0,r[1]=1):(r[0]=1,r[1]=0),r):e?[0,1]:[1,0]}var n,a,i,o=1;for((r=r||new Array(t))[0]=0,i=1;i<t;++i)r[i]=i,o=o*i|0;for(i=t-1;i>0;--i)e=e-(n=e/o|0)*o|0,o=o/i|0,a=0|r[i],r[i]=0|r[n],r[n]=0|a;return r}},{\"invert-permutation\":416,\"typedarray-pool\":546}],466:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){var n,i,o={};if(\"string\"==typeof e&&(e=a(e)),Array.isArray(e)){var s={};for(i=0;i<e.length;i++)s[e[i]]=!0;e=s}for(n in e)e[n]=a(e[n]);var l={};for(n in e){var c=e[n];if(Array.isArray(c))for(i=0;i<c.length;i++){var u=c[i];if(r&&(l[u]=!0),u in t){if(o[n]=t[u],r)for(var h=i;h<c.length;h++)l[c[h]]=!0;break}}else n in t&&(e[n]&&(o[n]=t[n]),r&&(l[n]=!0))}if(r)for(n in t)l[n]||(o[n]=t[n]);return o};var n={};function a(t){return n[t]?n[t]:(\"string\"==typeof t&&(t=n[t]=t.split(/\\s*,\\s*|\\s+/)),t)}},{}],467:[function(t,e,r){\"use strict\";e.exports=function(t,e){for(var r=0|e.length,a=t.length,i=[new Array(r),new Array(r)],o=0;o<r;++o)i[0][o]=[],i[1][o]=[];for(var o=0;o<a;++o){var s=t[o];i[0][s[0]].push(s),i[1][s[1]].push(s)}for(var l=[],o=0;o<r;++o)i[0][o].length+i[1][o].length===0&&l.push([o]);function c(t,e){var r=i[e][t[e]];r.splice(r.indexOf(t),1)}function u(t,r,a){for(var o,s,l,u=0;u<2;++u)if(i[u][r].length>0){o=i[u][r][0],l=u;break}s=o[1^l];for(var h=0;h<2;++h)for(var f=i[h][r],p=0;p<f.length;++p){var d=f[p],g=d[1^h],v=n(e[t],e[r],e[s],e[g]);v>0&&(o=d,s=g,l=h)}return a?s:(o&&c(o,l),s)}function h(t,r){var a=i[r][t][0],o=[t];c(a,r);for(var s=a[1^r];;){for(;s!==t;)o.push(s),s=u(o[o.length-2],s,!1);if(i[0][t].length+i[1][t].length===0)break;var l=o[o.length-1],h=t,f=o[1],p=u(l,h,!0);if(n(e[l],e[h],e[f],e[p])<0)break;o.push(t),s=u(l,h)}return o}function f(t,e){return e[1]===e[e.length-1]}for(var o=0;o<r;++o)for(var p=0;p<2;++p){for(var d=[];i[p][o].length>0;){i[0][o].length;var g=h(o,p);f(d,g)?d.push.apply(d,g):(d.length>0&&l.push(d),d=g)}d.length>0&&l.push(d)}return l};var n=t(\"compare-angle\")},{\"compare-angle\":128}],468:[function(t,e,r){\"use strict\";e.exports=function(t,e){for(var r=n(t,e.length),a=new Array(e.length),i=new Array(e.length),o=[],s=0;s<e.length;++s){var l=r[s].length;i[s]=l,a[s]=!0,l<=1&&o.push(s)}for(;o.length>0;){var c=o.pop();a[c]=!1;for(var u=r[c],s=0;s<u.length;++s){var h=u[s];0==--i[h]&&o.push(h)}}for(var f=new Array(e.length),p=[],s=0;s<e.length;++s)if(a[s]){var c=p.length;f[s]=c,p.push(e[s])}else f[s]=-1;for(var d=[],s=0;s<t.length;++s){var g=t[s];a[g[0]]&&a[g[1]]&&d.push([f[g[0]],f[g[1]]])}return[d,p]};var n=t(\"edges-to-adjacency-list\")},{\"edges-to-adjacency-list\":172}],469:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=c(t,e);t=r[0];for(var h=(e=r[1]).length,f=(t.length,n(t,e.length)),p=0;p<h;++p)if(f[p].length%2==1)throw new Error(\"planar-graph-to-polyline: graph must be manifold\");var d=a(t,e);for(var g=(d=d.filter(function(t){for(var r=t.length,n=[0],a=0;a<r;++a){var i=e[t[a]],l=e[t[(a+1)%r]],c=o(-i[0],i[1]),u=o(-i[0],l[1]),h=o(l[0],i[1]),f=o(l[0],l[1]);n=s(n,s(s(c,u),s(h,f)))}return n[n.length-1]>0})).length,v=new Array(g),m=new Array(g),p=0;p<g;++p){v[p]=p;var y=new Array(g),x=d[p].map(function(t){return e[t]}),b=i([x]),_=0;t:for(var w=0;w<g;++w)if(y[w]=0,p!==w){for(var k=d[w],T=k.length,A=0;A<T;++A){var M=b(e[k[A]]);if(0!==M){M<0&&(y[w]=1,_+=1);continue t}}y[w]=1,_+=1}m[p]=[_,p,y]}m.sort(function(t,e){return e[0]-t[0]});for(var p=0;p<g;++p)for(var y=m[p],S=y[1],E=y[2],w=0;w<g;++w)E[w]&&(v[w]=S);for(var C=function(t){for(var e=new Array(t),r=0;r<t;++r)e[r]=[];return e}(g),p=0;p<g;++p)C[p].push(v[p]),C[v[p]].push(p);for(var L={},P=u(h,!1),p=0;p<g;++p)for(var k=d[p],T=k.length,w=0;w<T;++w){var O=k[w],I=k[(w+1)%T],z=Math.min(O,I)+\":\"+Math.max(O,I);if(z in L){var D=L[z];C[D].push(p),C[p].push(D),P[O]=P[I]=!0}else L[z]=p}function R(t){for(var e=t.length,r=0;r<e;++r)if(!P[t[r]])return!1;return!0}for(var F=[],B=u(g,-1),p=0;p<g;++p)v[p]!==p||R(d[p])?B[p]=-1:(F.push(p),B[p]=0);var r=[];for(;F.length>0;){var N=F.pop(),j=C[N];l(j,function(t,e){return t-e});var V,U=j.length,q=B[N];if(0===q){var k=d[N];V=[k]}for(var p=0;p<U;++p){var H=j[p];if(!(B[H]>=0)&&(B[H]=1^q,F.push(H),0===q)){var k=d[H];R(k)||(k.reverse(),V.push(k))}}0===q&&r.push(V)}return r};var n=t(\"edges-to-adjacency-list\"),a=t(\"planar-dual\"),i=t(\"point-in-big-polygon\"),o=t(\"two-product\"),s=t(\"robust-sum\"),l=t(\"uniq\"),c=t(\"./lib/trim-leaves\");function u(t,e){for(var r=new Array(t),n=0;n<t;++n)r[n]=e;return r}},{\"./lib/trim-leaves\":468,\"edges-to-adjacency-list\":172,\"planar-dual\":467,\"point-in-big-polygon\":473,\"robust-sum\":516,\"two-product\":544,uniq:548}],470:[function(t,e,r){\"use strict\";e.exports=t(\"./quad\")},{\"./quad\":472}],471:[function(t,e,r){arguments[4][112][0].apply(r,arguments)},{dup:112}],472:[function(t,e,r){\"use strict\";var n=t(\"binary-search-bounds\"),a=t(\"clamp\"),i=t(\"parse-rect\"),o=t(\"array-bounds\"),s=t(\"pick-by-alias\"),l=t(\"defined\"),c=t(\"flatten-vertex-data\"),u=t(\"is-obj\"),h=t(\"dtype\"),f=t(\"math-log2\");function p(t,e){for(var r=e[0],n=e[1],i=1/(e[2]-r),o=1/(e[3]-n),s=new Array(t.length),l=0,c=t.length/2;l<c;l++)s[2*l]=a((t[2*l]-r)*i,0,1),s[2*l+1]=a((t[2*l+1]-n)*o,0,1);return s}e.exports=function(t,e){e||(e={}),t=c(t,\"float64\"),e=s(e,{bounds:\"range bounds dataBox databox\",maxDepth:\"depth maxDepth maxdepth level maxLevel maxlevel levels\",dtype:\"type dtype format out dst output destination\"});var r=l(e.maxDepth,255),a=l(e.bounds,o(t,2));a[0]===a[2]&&a[2]++,a[1]===a[3]&&a[3]++;var d,g=p(t,a),v=t.length>>>1;e.dtype||(e.dtype=\"array\"),\"string\"==typeof e.dtype?d=new(h(e.dtype))(v):e.dtype&&(d=e.dtype,Array.isArray(d)&&(d.length=v));for(var m=0;m<v;++m)d[m]=m;var y=[],x=[],b=[],_=[];!function t(e,n,a,i,o,s){if(!i.length)return null;var l=y[o]||(y[o]=[]);var c=b[o]||(b[o]=[]);var u=x[o]||(x[o]=[]);var h=l.length;o++;if(o>r){for(var f=0;f<i.length;f++)l.push(i[f]),c.push(s),u.push(null,null,null,null);return h}l.push(i[0]);c.push(s);if(i.length<=1)return u.push(null,null,null,null),h;var p=.5*a;var d=e+p,v=n+p;var m=[],_=[],w=[],k=[];for(var T=1,A=i.length;T<A;T++){var M=i[T],S=g[2*M],E=g[2*M+1];S<d?E<v?m.push(M):_.push(M):E<v?w.push(M):k.push(M)}s<<=2;u.push(t(e,n,p,m,o,s),t(e,v,p,_,o,s+1),t(d,n,p,w,o,s+2),t(d,v,p,k,o,s+3));return h}(0,0,1,d,0,1);for(var w=0,k=0;k<y.length;k++){var T=y[k];if(d.set)d.set(T,w);else for(var A=0,M=T.length;A<M;A++)d[A+w]=T[A];var S=w+y[k].length;_[k]=[w,S],w=S}return d.range=function(){var e,r=[],o=arguments.length;for(;o--;)r[o]=arguments[o];if(u(r[r.length-1])){var c=r.pop();r.length||null==c.x&&null==c.l&&null==c.left||(r=[c],e={}),e=s(c,{level:\"level maxLevel\",d:\"d diam diameter r radius px pxSize pixel pixelSize maxD size minSize\",lod:\"lod details ranges offsets\"})}else e={};r.length||(r=a);var h=i.apply(void 0,r),d=[Math.min(h.x,h.x+h.width),Math.min(h.y,h.y+h.height),Math.max(h.x,h.x+h.width),Math.max(h.y,h.y+h.height)],g=d[0],v=d[1],m=d[2],w=d[3],k=p([g,v,m,w],a),T=k[0],A=k[1],M=k[2],S=k[3],C=l(e.level,y.length);if(null!=e.d){var L;\"number\"==typeof e.d?L=[e.d,e.d]:e.d.length&&(L=e.d),C=Math.min(Math.max(Math.ceil(-f(Math.abs(L[0])/(a[2]-a[0]))),Math.ceil(-f(Math.abs(L[1])/(a[3]-a[1])))),C)}if(C=Math.min(C,y.length),e.lod)return function(t,e,r,a,i){for(var o=[],s=0;s<i;s++){var l=b[s],c=_[s][0],u=E(t,e,s),h=E(r,a,s),f=n.ge(l,u),p=n.gt(l,h,f,l.length-1);o[s]=[f+c,p+c]}return o}(T,A,M,S,C);var P=[];return function e(r,n,a,i,o,s){if(null!==o&&null!==s){var l=r+a,c=n+a;if(!(T>l||A>c||M<r||S<n||i>=C||o===s)){var u=y[i];void 0===s&&(s=u.length);for(var h=o;h<s;h++){var f=u[h],p=t[2*f],d=t[2*f+1];p>=g&&p<=m&&d>=v&&d<=w&&P.push(f)}var b=x[i],_=b[4*o+0],k=b[4*o+1],E=b[4*o+2],L=b[4*o+3],O=function(t,e){for(var r=null,n=0;null===r;)if(r=t[4*e+n],++n>t.length)return null;return r}(b,o+1),I=.5*a,z=i+1;e(r,n,I,z,_,k||E||L||O),e(r,n+I,I,z,k,E||L||O),e(r+I,n,I,z,E,L||O),e(r+I,n+I,I,z,L,O)}}}(0,0,1,0,0,1),P},d;function E(t,e,r){for(var n=1,a=.5,i=.5,o=.5,s=0;s<r;s++)n<<=2,n+=t<a?e<i?0:1:e<i?2:3,o*=.5,a+=t<a?-o:o,i+=e<i?-o:o;return n}}},{\"array-bounds\":66,\"binary-search-bounds\":471,clamp:116,defined:165,dtype:170,\"flatten-vertex-data\":228,\"is-obj\":422,\"math-log2\":433,\"parse-rect\":460,\"pick-by-alias\":466}],473:[function(t,e,r){e.exports=function(t){for(var e=t.length,r=[],i=[],s=0;s<e;++s)for(var u=t[s],h=u.length,f=h-1,p=0;p<h;f=p++){var d=u[f],g=u[p];d[0]===g[0]?i.push([d,g]):r.push([d,g])}if(0===r.length)return 0===i.length?c:(v=l(i),function(t){return v(t[0],t[1])?0:1});var v;var m=a(r),y=function(t,e){return function(r){var a=o.le(e,r[0]);if(a<0)return 1;var i=t[a];if(!i){if(!(a>0&&e[a]===r[0]))return 1;i=t[a-1]}for(var s=1;i;){var l=i.key,c=n(r,l[0],l[1]);if(l[0][0]<l[1][0])if(c<0)i=i.left;else{if(!(c>0))return 0;s=-1,i=i.right}else if(c>0)i=i.left;else{if(!(c<0))return 0;s=1,i=i.right}}return s}}(m.slabs,m.coordinates);return 0===i.length?y:function(t,e){return function(r){return t(r[0],r[1])?0:e(r)}}(l(i),y)};var n=t(\"robust-orientation\")[3],a=t(\"slab-decomposition\"),i=t(\"interval-tree-1d\"),o=t(\"binary-search-bounds\");function s(){return!0}function l(t){for(var e={},r=0;r<t.length;++r){var n=t[r],a=n[0][0],o=n[0][1],l=n[1][1],c=[Math.min(o,l),Math.max(o,l)];a in e?e[a].push(c):e[a]=[c]}var u={},h=Object.keys(e);for(r=0;r<h.length;++r){var f=e[h[r]];u[h[r]]=i(f)}return function(t){return function(e,r){var n=t[e];return!!n&&!!n.queryPoint(r,s)}}(u)}function c(t){return 1}},{\"binary-search-bounds\":92,\"interval-tree-1d\":415,\"robust-orientation\":511,\"slab-decomposition\":527}],474:[function(t,e,r){var n,a=t(\"./lib/build-log\"),i=t(\"./lib/epsilon\"),o=t(\"./lib/intersecter\"),s=t(\"./lib/segment-chainer\"),l=t(\"./lib/segment-selector\"),c=t(\"./lib/geojson\"),u=!1,h=i();function f(t,e,r){var a=n.segments(t),i=n.segments(e),o=r(n.combine(a,i));return n.polygon(o)}n={buildLog:function(t){return!0===t?u=a():!1===t&&(u=!1),!1!==u&&u.list},epsilon:function(t){return h.epsilon(t)},segments:function(t){var e=o(!0,h,u);return t.regions.forEach(e.addRegion),{segments:e.calculate(t.inverted),inverted:t.inverted}},combine:function(t,e){return{combined:o(!1,h,u).calculate(t.segments,t.inverted,e.segments,e.inverted),inverted1:t.inverted,inverted2:e.inverted}},selectUnion:function(t){return{segments:l.union(t.combined,u),inverted:t.inverted1||t.inverted2}},selectIntersect:function(t){return{segments:l.intersect(t.combined,u),inverted:t.inverted1&&t.inverted2}},selectDifference:function(t){return{segments:l.difference(t.combined,u),inverted:t.inverted1&&!t.inverted2}},selectDifferenceRev:function(t){return{segments:l.differenceRev(t.combined,u),inverted:!t.inverted1&&t.inverted2}},selectXor:function(t){return{segments:l.xor(t.combined,u),inverted:t.inverted1!==t.inverted2}},polygon:function(t){return{regions:s(t.segments,h,u),inverted:t.inverted}},polygonFromGeoJSON:function(t){return c.toPolygon(n,t)},polygonToGeoJSON:function(t){return c.fromPolygon(n,h,t)},union:function(t,e){return f(t,e,n.selectUnion)},intersect:function(t,e){return f(t,e,n.selectIntersect)},difference:function(t,e){return f(t,e,n.selectDifference)},differenceRev:function(t,e){return f(t,e,n.selectDifferenceRev)},xor:function(t,e){return f(t,e,n.selectXor)}},\"object\"==typeof window&&(window.PolyBool=n),e.exports=n},{\"./lib/build-log\":475,\"./lib/epsilon\":476,\"./lib/geojson\":477,\"./lib/intersecter\":478,\"./lib/segment-chainer\":480,\"./lib/segment-selector\":481}],475:[function(t,e,r){e.exports=function(){var t,e=0,r=!1;function n(e,r){return t.list.push({type:e,data:r?JSON.parse(JSON.stringify(r)):void 0}),t}return t={list:[],segmentId:function(){return e++},checkIntersection:function(t,e){return n(\"check\",{seg1:t,seg2:e})},segmentChop:function(t,e){return n(\"div_seg\",{seg:t,pt:e}),n(\"chop\",{seg:t,pt:e})},statusRemove:function(t){return n(\"pop_seg\",{seg:t})},segmentUpdate:function(t){return n(\"seg_update\",{seg:t})},segmentNew:function(t,e){return n(\"new_seg\",{seg:t,primary:e})},segmentRemove:function(t){return n(\"rem_seg\",{seg:t})},tempStatus:function(t,e,r){return n(\"temp_status\",{seg:t,above:e,below:r})},rewind:function(t){return n(\"rewind\",{seg:t})},status:function(t,e,r){return n(\"status\",{seg:t,above:e,below:r})},vert:function(e){return e===r?t:(r=e,n(\"vert\",{x:e}))},log:function(t){return\"string\"!=typeof t&&(t=JSON.stringify(t,!1,\"  \")),n(\"log\",{txt:t})},reset:function(){return n(\"reset\")},selected:function(t){return n(\"selected\",{segs:t})},chainStart:function(t){return n(\"chain_start\",{seg:t})},chainRemoveHead:function(t,e){return n(\"chain_rem_head\",{index:t,pt:e})},chainRemoveTail:function(t,e){return n(\"chain_rem_tail\",{index:t,pt:e})},chainNew:function(t,e){return n(\"chain_new\",{pt1:t,pt2:e})},chainMatch:function(t){return n(\"chain_match\",{index:t})},chainClose:function(t){return n(\"chain_close\",{index:t})},chainAddHead:function(t,e){return n(\"chain_add_head\",{index:t,pt:e})},chainAddTail:function(t,e){return n(\"chain_add_tail\",{index:t,pt:e})},chainConnect:function(t,e){return n(\"chain_con\",{index1:t,index2:e})},chainReverse:function(t){return n(\"chain_rev\",{index:t})},chainJoin:function(t,e){return n(\"chain_join\",{index1:t,index2:e})},done:function(){return n(\"done\")}}}},{}],476:[function(t,e,r){e.exports=function(t){\"number\"!=typeof t&&(t=1e-10);var e={epsilon:function(e){return\"number\"==typeof e&&(t=e),t},pointAboveOrOnLine:function(e,r,n){var a=r[0],i=r[1],o=n[0],s=n[1],l=e[0];return(o-a)*(e[1]-i)-(s-i)*(l-a)>=-t},pointBetween:function(e,r,n){var a=e[1]-r[1],i=n[0]-r[0],o=e[0]-r[0],s=n[1]-r[1],l=o*i+a*s;return!(l<t||l-(i*i+s*s)>-t)},pointsSameX:function(e,r){return Math.abs(e[0]-r[0])<t},pointsSameY:function(e,r){return Math.abs(e[1]-r[1])<t},pointsSame:function(t,r){return e.pointsSameX(t,r)&&e.pointsSameY(t,r)},pointsCompare:function(t,r){return e.pointsSameX(t,r)?e.pointsSameY(t,r)?0:t[1]<r[1]?-1:1:t[0]<r[0]?-1:1},pointsCollinear:function(e,r,n){var a=e[0]-r[0],i=e[1]-r[1],o=r[0]-n[0],s=r[1]-n[1];return Math.abs(a*s-o*i)<t},linesIntersect:function(e,r,n,a){var i=r[0]-e[0],o=r[1]-e[1],s=a[0]-n[0],l=a[1]-n[1],c=i*l-o*s;if(Math.abs(c)<t)return!1;var u=e[0]-n[0],h=e[1]-n[1],f=(s*h-l*u)/c,p=(i*h-o*u)/c,d={alongA:0,alongB:0,pt:[e[0]+f*i,e[1]+f*o]};return d.alongA=f<=-t?-2:f<t?-1:f-1<=-t?0:f-1<t?1:2,d.alongB=p<=-t?-2:p<t?-1:p-1<=-t?0:p-1<t?1:2,d},pointInsideRegion:function(e,r){for(var n=e[0],a=e[1],i=r[r.length-1][0],o=r[r.length-1][1],s=!1,l=0;l<r.length;l++){var c=r[l][0],u=r[l][1];u-a>t!=o-a>t&&(i-c)*(a-u)/(o-u)+c-n>t&&(s=!s),i=c,o=u}return s}};return e}},{}],477:[function(t,e,r){var n={toPolygon:function(t,e){function r(e){if(e.length<=0)return t.segments({inverted:!1,regions:[]});function r(e){var r=e.slice(0,e.length-1);return t.segments({inverted:!1,regions:[r]})}for(var n=r(e[0]),a=1;a<e.length;a++)n=t.selectDifference(t.combine(n,r(e[a])));return n}if(\"Polygon\"===e.type)return t.polygon(r(e.coordinates));if(\"MultiPolygon\"===e.type){for(var n=t.segments({inverted:!1,regions:[]}),a=0;a<e.coordinates.length;a++)n=t.selectUnion(t.combine(n,r(e.coordinates[a])));return t.polygon(n)}throw new Error(\"PolyBool: Cannot convert GeoJSON object to PolyBool polygon\")},fromPolygon:function(t,e,r){function n(t,r){return e.pointInsideRegion([.5*(t[0][0]+t[1][0]),.5*(t[0][1]+t[1][1])],r)}function a(t){return{region:t,children:[]}}r=t.polygon(t.segments(r));var i=a(null);function o(t,e){for(var r=0;r<t.children.length;r++){if(n(e,(s=t.children[r]).region))return void o(s,e)}var i=a(e);for(r=0;r<t.children.length;r++){var s;n((s=t.children[r]).region,e)&&(i.children.push(s),t.children.splice(r,1),r--)}t.children.push(i)}for(var s=0;s<r.regions.length;s++){var l=r.regions[s];l.length<3||o(i,l)}function c(t,e){for(var r=0,n=t[t.length-1][0],a=t[t.length-1][1],i=[],o=0;o<t.length;o++){var s=t[o][0],l=t[o][1];i.push([s,l]),r+=l*n-s*a,n=s,a=l}return r<0!==e&&i.reverse(),i.push([i[0][0],i[0][1]]),i}var u=[];function h(t){var e=[c(t.region,!1)];u.push(e);for(var r=0;r<t.children.length;r++)e.push(f(t.children[r]))}function f(t){for(var e=0;e<t.children.length;e++)h(t.children[e]);return c(t.region,!0)}for(s=0;s<i.children.length;s++)h(i.children[s]);return u.length<=0?{type:\"Polygon\",coordinates:[]}:1==u.length?{type:\"Polygon\",coordinates:u[0]}:{type:\"MultiPolygon\",coordinates:u}}};e.exports=n},{}],478:[function(t,e,r){var n=t(\"./linked-list\");e.exports=function(t,e,r){function a(t,e,n){return{id:r?r.segmentId():-1,start:t,end:e,myFill:{above:n.myFill.above,below:n.myFill.below},otherFill:null}}var i=n.create();function o(t,r){i.insertBefore(t,function(n){return function(t,r,n,a,i,o){var s=e.pointsCompare(r,i);return 0!==s?s:e.pointsSame(n,o)?0:t!==a?t?1:-1:e.pointAboveOrOnLine(n,a?i:o,a?o:i)?1:-1}(t.isStart,t.pt,r,n.isStart,n.pt,n.other.pt)<0})}function s(t,e){var r=function(t,e){var r=n.node({isStart:!0,pt:t.start,seg:t,primary:e,other:null,status:null});return o(r,t.end),r}(t,e);return function(t,e,r){var a=n.node({isStart:!1,pt:e.end,seg:e,primary:r,other:t,status:null});t.other=a,o(a,t.pt)}(r,t,e),r}function l(t,e){var n=a(e,t.seg.end,t.seg);return function(t,e){r&&r.segmentChop(t.seg,e),t.other.remove(),t.seg.end=e,t.other.pt=e,o(t.other,t.pt)}(t,e),s(n,t.primary)}function c(a,o){var s=n.create();function c(t){return s.findTransition(function(r){var n,a,i,o,s,l;return n=t,a=r.ev,i=n.seg.start,o=n.seg.end,s=a.seg.start,l=a.seg.end,(e.pointsCollinear(i,s,l)?e.pointsCollinear(o,s,l)?1:e.pointAboveOrOnLine(o,s,l)?1:-1:e.pointAboveOrOnLine(i,s,l)?1:-1)>0})}function u(t,n){var a=t.seg,i=n.seg,o=a.start,s=a.end,c=i.start,u=i.end;r&&r.checkIntersection(a,i);var h=e.linesIntersect(o,s,c,u);if(!1===h){if(!e.pointsCollinear(o,s,c))return!1;if(e.pointsSame(o,u)||e.pointsSame(s,c))return!1;var f=e.pointsSame(o,c),p=e.pointsSame(s,u);if(f&&p)return n;var d=!f&&e.pointBetween(o,c,u),g=!p&&e.pointBetween(s,c,u);if(f)return g?l(n,s):l(t,u),n;d&&(p||(g?l(n,s):l(t,u)),l(n,o))}else 0===h.alongA&&(-1===h.alongB?l(t,c):0===h.alongB?l(t,h.pt):1===h.alongB&&l(t,u)),0===h.alongB&&(-1===h.alongA?l(n,o):0===h.alongA?l(n,h.pt):1===h.alongA&&l(n,s));return!1}for(var h=[];!i.isEmpty();){var f=i.getHead();if(r&&r.vert(f.pt[0]),f.isStart){r&&r.segmentNew(f.seg,f.primary);var p=c(f),d=p.before?p.before.ev:null,g=p.after?p.after.ev:null;function v(){if(d){var t=u(f,d);if(t)return t}return!!g&&u(f,g)}r&&r.tempStatus(f.seg,!!d&&d.seg,!!g&&g.seg);var m,y,x=v();if(x)t?(y=null===f.seg.myFill.below||f.seg.myFill.above!==f.seg.myFill.below)&&(x.seg.myFill.above=!x.seg.myFill.above):x.seg.otherFill=f.seg.myFill,r&&r.segmentUpdate(x.seg),f.other.remove(),f.remove();if(i.getHead()!==f){r&&r.rewind(f.seg);continue}t?(y=null===f.seg.myFill.below||f.seg.myFill.above!==f.seg.myFill.below,f.seg.myFill.below=g?g.seg.myFill.above:a,f.seg.myFill.above=y?!f.seg.myFill.below:f.seg.myFill.below):null===f.seg.otherFill&&(m=g?f.primary===g.primary?g.seg.otherFill.above:g.seg.myFill.above:f.primary?o:a,f.seg.otherFill={above:m,below:m}),r&&r.status(f.seg,!!d&&d.seg,!!g&&g.seg),f.other.status=p.insert(n.node({ev:f}))}else{var b=f.status;if(null===b)throw new Error(\"PolyBool: Zero-length segment detected; your epsilon is probably too small or too large\");if(s.exists(b.prev)&&s.exists(b.next)&&u(b.prev.ev,b.next.ev),r&&r.statusRemove(b.ev.seg),b.remove(),!f.primary){var _=f.seg.myFill;f.seg.myFill=f.seg.otherFill,f.seg.otherFill=_}h.push(f.seg)}i.getHead().remove()}return r&&r.done(),h}return t?{addRegion:function(t){for(var n,a,i,o=t[t.length-1],l=0;l<t.length;l++){n=o,o=t[l];var c=e.pointsCompare(n,o);0!==c&&s((a=c<0?n:o,i=c<0?o:n,{id:r?r.segmentId():-1,start:a,end:i,myFill:{above:null,below:null},otherFill:null}),!0)}},calculate:function(t){return c(t,!1)}}:{calculate:function(t,e,r,n){return t.forEach(function(t){s(a(t.start,t.end,t),!0)}),r.forEach(function(t){s(a(t.start,t.end,t),!1)}),c(e,n)}}}},{\"./linked-list\":479}],479:[function(t,e,r){e.exports={create:function(){var t={root:{root:!0,next:null},exists:function(e){return null!==e&&e!==t.root},isEmpty:function(){return null===t.root.next},getHead:function(){return t.root.next},insertBefore:function(e,r){for(var n=t.root,a=t.root.next;null!==a;){if(r(a))return e.prev=a.prev,e.next=a,a.prev.next=e,void(a.prev=e);n=a,a=a.next}n.next=e,e.prev=n,e.next=null},findTransition:function(e){for(var r=t.root,n=t.root.next;null!==n&&!e(n);)r=n,n=n.next;return{before:r===t.root?null:r,after:n,insert:function(t){return t.prev=r,t.next=n,r.next=t,null!==n&&(n.prev=t),t}}}};return t},node:function(t){return t.prev=null,t.next=null,t.remove=function(){t.prev.next=t.next,t.next&&(t.next.prev=t.prev),t.prev=null,t.next=null},t}}},{}],480:[function(t,e,r){e.exports=function(t,e,r){var n=[],a=[];return t.forEach(function(t){var i=t.start,o=t.end;if(e.pointsSame(i,o))console.warn(\"PolyBool: Warning: Zero-length segment detected; your epsilon is probably too small or too large\");else{r&&r.chainStart(t);for(var s={index:0,matches_head:!1,matches_pt1:!1},l={index:0,matches_head:!1,matches_pt1:!1},c=s,u=0;u<n.length;u++){var h=(v=n[u])[0],f=(v[1],v[v.length-1]);if(v[v.length-2],e.pointsSame(h,i)){if(T(u,!0,!0))break}else if(e.pointsSame(h,o)){if(T(u,!0,!1))break}else if(e.pointsSame(f,i)){if(T(u,!1,!0))break}else if(e.pointsSame(f,o)&&T(u,!1,!1))break}if(c===s)return n.push([i,o]),void(r&&r.chainNew(i,o));if(c===l){r&&r.chainMatch(s.index);var p=s.index,d=s.matches_pt1?o:i,g=s.matches_head,v=n[p],m=g?v[0]:v[v.length-1],y=g?v[1]:v[v.length-2],x=g?v[v.length-1]:v[0],b=g?v[v.length-2]:v[1];return e.pointsCollinear(y,m,d)&&(g?(r&&r.chainRemoveHead(s.index,d),v.shift()):(r&&r.chainRemoveTail(s.index,d),v.pop()),m=y),e.pointsSame(x,d)?(n.splice(p,1),e.pointsCollinear(b,x,m)&&(g?(r&&r.chainRemoveTail(s.index,m),v.pop()):(r&&r.chainRemoveHead(s.index,m),v.shift())),r&&r.chainClose(s.index),void a.push(v)):void(g?(r&&r.chainAddHead(s.index,d),v.unshift(d)):(r&&r.chainAddTail(s.index,d),v.push(d)))}var _=s.index,w=l.index;r&&r.chainConnect(_,w);var k=n[_].length<n[w].length;s.matches_head?l.matches_head?k?(A(_),M(_,w)):(A(w),M(w,_)):M(w,_):l.matches_head?M(_,w):k?(A(_),M(w,_)):(A(w),M(_,w))}function T(t,e,r){return c.index=t,c.matches_head=e,c.matches_pt1=r,c===s?(c=l,!1):(c=null,!0)}function A(t){r&&r.chainReverse(t),n[t].reverse()}function M(t,a){var i=n[t],o=n[a],s=i[i.length-1],l=i[i.length-2],c=o[0],u=o[1];e.pointsCollinear(l,s,c)&&(r&&r.chainRemoveTail(t,s),i.pop(),s=l),e.pointsCollinear(s,c,u)&&(r&&r.chainRemoveHead(a,c),o.shift()),r&&r.chainJoin(t,a),n[t]=i.concat(o),n.splice(a,1)}}),a}},{}],481:[function(t,e,r){function n(t,e,r){var n=[];return t.forEach(function(t){var a=(t.myFill.above?8:0)+(t.myFill.below?4:0)+(t.otherFill&&t.otherFill.above?2:0)+(t.otherFill&&t.otherFill.below?1:0);0!==e[a]&&n.push({id:r?r.segmentId():-1,start:t.start,end:t.end,myFill:{above:1===e[a],below:2===e[a]},otherFill:null})}),r&&r.selected(n),n}var a={union:function(t,e){return n(t,[0,2,1,0,2,2,0,0,1,0,1,0,0,0,0,0],e)},intersect:function(t,e){return n(t,[0,0,0,0,0,2,0,2,0,0,1,1,0,2,1,0],e)},difference:function(t,e){return n(t,[0,0,0,0,2,0,2,0,1,1,0,0,0,1,2,0],e)},differenceRev:function(t,e){return n(t,[0,2,1,0,0,0,1,1,0,2,0,2,0,0,0,0],e)},xor:function(t,e){return n(t,[0,2,1,0,2,0,0,1,1,0,0,2,0,1,2,0],e)}};e.exports=a},{}],482:[function(t,e,r){\"use strict\";var n=new Float64Array(4),a=new Float64Array(4),i=new Float64Array(4);e.exports=function(t,e,r,o,s){n.length<o.length&&(n=new Float64Array(o.length),a=new Float64Array(o.length),i=new Float64Array(o.length));for(var l=0;l<o.length;++l)n[l]=t[l]-o[l],a[l]=e[l]-t[l],i[l]=r[l]-t[l];var c=0,u=0,h=0,f=0,p=0,d=0;for(l=0;l<o.length;++l){var g=a[l],v=i[l],m=n[l];c+=g*g,u+=g*v,h+=v*v,f+=m*g,p+=m*v,d+=m*m}var y,x,b,_,w,k=Math.abs(c*h-u*u),T=u*p-h*f,A=u*f-c*p;if(T+A<=k)if(T<0)A<0&&f<0?(A=0,-f>=c?(T=1,y=c+2*f+d):y=f*(T=-f/c)+d):(T=0,p>=0?(A=0,y=d):-p>=h?(A=1,y=h+2*p+d):y=p*(A=-p/h)+d);else if(A<0)A=0,f>=0?(T=0,y=d):-f>=c?(T=1,y=c+2*f+d):y=f*(T=-f/c)+d;else{var M=1/k;y=(T*=M)*(c*T+u*(A*=M)+2*f)+A*(u*T+h*A+2*p)+d}else T<0?(b=h+p)>(x=u+f)?(_=b-x)>=(w=c-2*u+h)?(T=1,A=0,y=c+2*f+d):y=(T=_/w)*(c*T+u*(A=1-T)+2*f)+A*(u*T+h*A+2*p)+d:(T=0,b<=0?(A=1,y=h+2*p+d):p>=0?(A=0,y=d):y=p*(A=-p/h)+d):A<0?(b=c+f)>(x=u+p)?(_=b-x)>=(w=c-2*u+h)?(A=1,T=0,y=h+2*p+d):y=(T=1-(A=_/w))*(c*T+u*A+2*f)+A*(u*T+h*A+2*p)+d:(A=0,b<=0?(T=1,y=c+2*f+d):f>=0?(T=0,y=d):y=f*(T=-f/c)+d):(_=h+p-u-f)<=0?(T=0,A=1,y=h+2*p+d):_>=(w=c-2*u+h)?(T=1,A=0,y=c+2*f+d):y=(T=_/w)*(c*T+u*(A=1-T)+2*f)+A*(u*T+h*A+2*p)+d;var S=1-T-A;for(l=0;l<o.length;++l)s[l]=S*t[l]+T*e[l]+A*r[l];return y<0?0:y}},{}],483:[function(t,e,r){var n,a,i=e.exports={};function o(){throw new Error(\"setTimeout has not been defined\")}function s(){throw new Error(\"clearTimeout has not been defined\")}function l(t){if(n===setTimeout)return setTimeout(t,0);if((n===o||!n)&&setTimeout)return n=setTimeout,setTimeout(t,0);try{return n(t,0)}catch(e){try{return n.call(null,t,0)}catch(e){return n.call(this,t,0)}}}!function(){try{n=\"function\"==typeof setTimeout?setTimeout:o}catch(t){n=o}try{a=\"function\"==typeof clearTimeout?clearTimeout:s}catch(t){a=s}}();var c,u=[],h=!1,f=-1;function p(){h&&c&&(h=!1,c.length?u=c.concat(u):f=-1,u.length&&d())}function d(){if(!h){var t=l(p);h=!0;for(var e=u.length;e;){for(c=u,u=[];++f<e;)c&&c[f].run();f=-1,e=u.length}c=null,h=!1,function(t){if(a===clearTimeout)return clearTimeout(t);if((a===s||!a)&&clearTimeout)return a=clearTimeout,clearTimeout(t);try{a(t)}catch(e){try{return a.call(null,t)}catch(e){return a.call(this,t)}}}(t)}}function g(t,e){this.fun=t,this.array=e}function v(){}i.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var r=1;r<arguments.length;r++)e[r-1]=arguments[r];u.push(new g(t,e)),1!==u.length||h||l(d)},g.prototype.run=function(){this.fun.apply(null,this.array)},i.title=\"browser\",i.browser=!0,i.env={},i.argv=[],i.version=\"\",i.versions={},i.on=v,i.addListener=v,i.once=v,i.off=v,i.removeListener=v,i.removeAllListeners=v,i.emit=v,i.prependListener=v,i.prependOnceListener=v,i.listeners=function(t){return[]},i.binding=function(t){throw new Error(\"process.binding is not supported\")},i.cwd=function(){return\"/\"},i.chdir=function(t){throw new Error(\"process.chdir is not supported\")},i.umask=function(){return 0}},{}],484:[function(t,e,r){e.exports=t(\"gl-quat/slerp\")},{\"gl-quat/slerp\":294}],485:[function(t,e,r){(function(r){for(var n=t(\"performance-now\"),a=\"undefined\"==typeof window?r:window,i=[\"moz\",\"webkit\"],o=\"AnimationFrame\",s=a[\"request\"+o],l=a[\"cancel\"+o]||a[\"cancelRequest\"+o],c=0;!s&&c<i.length;c++)s=a[i[c]+\"Request\"+o],l=a[i[c]+\"Cancel\"+o]||a[i[c]+\"CancelRequest\"+o];if(!s||!l){var u=0,h=0,f=[];s=function(t){if(0===f.length){var e=n(),r=Math.max(0,1e3/60-(e-u));u=r+e,setTimeout(function(){var t=f.slice(0);f.length=0;for(var e=0;e<t.length;e++)if(!t[e].cancelled)try{t[e].callback(u)}catch(t){setTimeout(function(){throw t},0)}},Math.round(r))}return f.push({handle:++h,callback:t,cancelled:!1}),h},l=function(t){for(var e=0;e<f.length;e++)f[e].handle===t&&(f[e].cancelled=!0)}}e.exports=function(t){return s.call(a,t)},e.exports.cancel=function(){l.apply(a,arguments)},e.exports.polyfill=function(t){t||(t=a),t.requestAnimationFrame=s,t.cancelAnimationFrame=l}}).call(this,\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{\"performance-now\":463}],486:[function(t,e,r){\"use strict\";var n=t(\"big-rat/add\");e.exports=function(t,e){for(var r=t.length,a=new Array(r),i=0;i<r;++i)a[i]=n(t[i],e[i]);return a}},{\"big-rat/add\":76}],487:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=new Array(t.length),r=0;r<t.length;++r)e[r]=n(t[r]);return e};var n=t(\"big-rat\")},{\"big-rat\":79}],488:[function(t,e,r){\"use strict\";var n=t(\"big-rat\"),a=t(\"big-rat/mul\");e.exports=function(t,e){for(var r=n(e),i=t.length,o=new Array(i),s=0;s<i;++s)o[s]=a(t[s],r);return o}},{\"big-rat\":79,\"big-rat/mul\":88}],489:[function(t,e,r){\"use strict\";var n=t(\"big-rat/sub\");e.exports=function(t,e){for(var r=t.length,a=new Array(r),i=0;i<r;++i)a[i]=n(t[i],e[i]);return a}},{\"big-rat/sub\":90}],490:[function(t,e,r){\"use strict\";var n=t(\"compare-cell\"),a=t(\"compare-oriented-cell\"),i=t(\"cell-orientation\");e.exports=function(t){t.sort(a);for(var e=t.length,r=0,o=0;o<e;++o){var s=t[o],l=i(s);if(0!==l){if(r>0){var c=t[r-1];if(0===n(s,c)&&i(c)!==l){r-=1;continue}}t[r++]=s}}return t.length=r,t}},{\"cell-orientation\":113,\"compare-cell\":129,\"compare-oriented-cell\":130}],491:[function(t,e,r){\"use strict\";var n=t(\"array-bounds\"),a=t(\"color-normalize\"),i=t(\"update-diff\"),o=t(\"pick-by-alias\"),s=t(\"object-assign\"),l=t(\"flatten-vertex-data\"),c=t(\"to-float32\"),u=c.float32,h=c.fract32;e.exports=function(t,e){\"function\"==typeof t?(e||(e={}),e.regl=t):e=t;e.length&&(e.positions=e);if(!(t=e.regl).hasExtension(\"ANGLE_instanced_arrays\"))throw Error(\"regl-error2d: `ANGLE_instanced_arrays` extension should be enabled\");var r,c,p,d,g,v,m=t._gl,y={color:\"black\",capSize:5,lineWidth:1,opacity:1,viewport:null,range:null,offset:0,count:0,bounds:null,positions:[],errors:[]},x=[];return d=t.buffer({usage:\"dynamic\",type:\"uint8\",data:new Uint8Array(0)}),c=t.buffer({usage:\"dynamic\",type:\"float\",data:new Uint8Array(0)}),p=t.buffer({usage:\"dynamic\",type:\"float\",data:new Uint8Array(0)}),g=t.buffer({usage:\"dynamic\",type:\"float\",data:new Uint8Array(0)}),v=t.buffer({usage:\"static\",type:\"float\",data:f}),k(e),r=t({vert:\"\\n\\t\\tprecision highp float;\\n\\n\\t\\tattribute vec2 position, positionFract;\\n\\t\\tattribute vec4 error;\\n\\t\\tattribute vec4 color;\\n\\n\\t\\tattribute vec2 direction, lineOffset, capOffset;\\n\\n\\t\\tuniform vec4 viewport;\\n\\t\\tuniform float lineWidth, capSize;\\n\\t\\tuniform vec2 scale, scaleFract, translate, translateFract;\\n\\n\\t\\tvarying vec4 fragColor;\\n\\n\\t\\tvoid main() {\\n\\t\\t\\tfragColor = color / 255.;\\n\\n\\t\\t\\tvec2 pixelOffset = lineWidth * lineOffset + (capSize + lineWidth) * capOffset;\\n\\n\\t\\t\\tvec2 dxy = -step(.5, direction.xy) * error.xz + step(direction.xy, vec2(-.5)) * error.yw;\\n\\n\\t\\t\\tvec2 position = position + dxy;\\n\\n\\t\\t\\tvec2 pos = (position + translate) * scale\\n\\t\\t\\t\\t+ (positionFract + translateFract) * scale\\n\\t\\t\\t\\t+ (position + translate) * scaleFract\\n\\t\\t\\t\\t+ (positionFract + translateFract) * scaleFract;\\n\\n\\t\\t\\tpos += pixelOffset / viewport.zw;\\n\\n\\t\\t\\tgl_Position = vec4(pos * 2. - 1., 0, 1);\\n\\t\\t}\\n\\t\\t\",frag:\"\\n\\t\\tprecision highp float;\\n\\n\\t\\tvarying vec4 fragColor;\\n\\n\\t\\tuniform float opacity;\\n\\n\\t\\tvoid main() {\\n\\t\\t\\tgl_FragColor = fragColor;\\n\\t\\t\\tgl_FragColor.a *= opacity;\\n\\t\\t}\\n\\t\\t\",uniforms:{range:t.prop(\"range\"),lineWidth:t.prop(\"lineWidth\"),capSize:t.prop(\"capSize\"),opacity:t.prop(\"opacity\"),scale:t.prop(\"scale\"),translate:t.prop(\"translate\"),scaleFract:t.prop(\"scaleFract\"),translateFract:t.prop(\"translateFract\"),viewport:function(t,e){return[e.viewport.x,e.viewport.y,t.viewportWidth,t.viewportHeight]}},attributes:{color:{buffer:d,offset:function(t,e){return 4*e.offset},divisor:1},position:{buffer:c,offset:function(t,e){return 8*e.offset},divisor:1},positionFract:{buffer:p,offset:function(t,e){return 8*e.offset},divisor:1},error:{buffer:g,offset:function(t,e){return 16*e.offset},divisor:1},direction:{buffer:v,stride:24,offset:0},lineOffset:{buffer:v,stride:24,offset:8},capOffset:{buffer:v,stride:24,offset:16}},primitive:\"triangles\",blend:{enable:!0,color:[0,0,0,0],equation:{rgb:\"add\",alpha:\"add\"},func:{srcRGB:\"src alpha\",dstRGB:\"one minus src alpha\",srcAlpha:\"one minus dst alpha\",dstAlpha:\"one\"}},depth:{enable:!1},scissor:{enable:!0,box:t.prop(\"viewport\")},viewport:t.prop(\"viewport\"),stencil:!1,instances:t.prop(\"count\"),count:f.length}),s(b,{update:k,draw:_,destroy:T,regl:t,gl:m,canvas:m.canvas,groups:x}),b;function b(t){t?k(t):null===t&&T(),_()}function _(e){if(\"number\"==typeof e)return w(e);e&&!Array.isArray(e)&&(e=[e]),t._refresh(),x.forEach(function(t,r){t&&(e&&(e[r]?t.draw=!0:t.draw=!1),t.draw?w(r):t.draw=!0)})}function w(t){\"number\"==typeof t&&(t=x[t]),null!=t&&t&&t.count&&t.color&&t.opacity&&t.positions&&t.positions.length>1&&(t.scaleRatio=[t.scale[0]*t.viewport.width,t.scale[1]*t.viewport.height],r(t),t.after&&t.after(t))}function k(t){if(t){null!=t.length?\"number\"==typeof t[0]&&(t=[{positions:t}]):Array.isArray(t)||(t=[t]);var e=0,r=0;if(b.groups=x=t.map(function(t,c){var u=x[c];return t?(\"function\"==typeof t?t={after:t}:\"number\"==typeof t[0]&&(t={positions:t}),t=o(t,{color:\"color colors fill\",capSize:\"capSize cap capsize cap-size\",lineWidth:\"lineWidth line-width width line thickness\",opacity:\"opacity alpha\",range:\"range dataBox\",viewport:\"viewport viewBox\",errors:\"errors error\",positions:\"positions position data points\"}),u||(x[c]=u={id:c,scale:null,translate:null,scaleFract:null,translateFract:null,draw:!0},t=s({},y,t)),i(u,t,[{lineWidth:function(t){return.5*+t},capSize:function(t){return.5*+t},opacity:parseFloat,errors:function(t){return t=l(t),r+=t.length,t},positions:function(t,r){return t=l(t,\"float64\"),r.count=Math.floor(t.length/2),r.bounds=n(t,2),r.offset=e,e+=r.count,t}},{color:function(t,e){var r=e.count;if(t||(t=\"transparent\"),!Array.isArray(t)||\"number\"==typeof t[0]){var n=t;t=Array(r);for(var i=0;i<r;i++)t[i]=n}if(t.length<r)throw Error(\"Not enough colors\");for(var o=new Uint8Array(4*r),s=0;s<r;s++){var l=a(t[s],\"uint8\");o.set(l,4*s)}return o},range:function(t,e,r){var n=e.bounds;return t||(t=n),e.scale=[1/(t[2]-t[0]),1/(t[3]-t[1])],e.translate=[-t[0],-t[1]],e.scaleFract=h(e.scale),e.translateFract=h(e.translate),t},viewport:function(t){var e;return Array.isArray(t)?e={x:t[0],y:t[1],width:t[2]-t[0],height:t[3]-t[1]}:t?(e={x:t.x||t.left||0,y:t.y||t.top||0},t.right?e.width=t.right-e.x:e.width=t.w||t.width||0,t.bottom?e.height=t.bottom-e.y:e.height=t.h||t.height||0):e={x:0,y:0,width:m.drawingBufferWidth,height:m.drawingBufferHeight},e}}]),u):u}),e||r){var f=x.reduce(function(t,e,r){return t+(e?e.count:0)},0),v=new Float64Array(2*f),_=new Uint8Array(4*f),w=new Float32Array(4*f);x.forEach(function(t,e){if(t){var r=t.positions,n=t.count,a=t.offset,i=t.color,o=t.errors;n&&(_.set(i,4*a),w.set(o,4*a),v.set(r,2*a))}}),c(u(v)),p(h(v)),d(_),g(w)}}}function T(){c.destroy(),p.destroy(),d.destroy(),g.destroy(),v.destroy()}};var f=[[1,0,0,1,0,0],[1,0,0,-1,0,0],[-1,0,0,-1,0,0],[-1,0,0,-1,0,0],[-1,0,0,1,0,0],[1,0,0,1,0,0],[1,0,-1,0,0,1],[1,0,-1,0,0,-1],[1,0,1,0,0,-1],[1,0,1,0,0,-1],[1,0,1,0,0,1],[1,0,-1,0,0,1],[-1,0,-1,0,0,1],[-1,0,-1,0,0,-1],[-1,0,1,0,0,-1],[-1,0,1,0,0,-1],[-1,0,1,0,0,1],[-1,0,-1,0,0,1],[0,1,1,0,0,0],[0,1,-1,0,0,0],[0,-1,-1,0,0,0],[0,-1,-1,0,0,0],[0,1,1,0,0,0],[0,-1,1,0,0,0],[0,1,0,-1,1,0],[0,1,0,-1,-1,0],[0,1,0,1,-1,0],[0,1,0,1,1,0],[0,1,0,-1,1,0],[0,1,0,1,-1,0],[0,-1,0,-1,1,0],[0,-1,0,-1,-1,0],[0,-1,0,1,-1,0],[0,-1,0,1,1,0],[0,-1,0,-1,1,0],[0,-1,0,1,-1,0]]},{\"array-bounds\":66,\"color-normalize\":121,\"flatten-vertex-data\":228,\"object-assign\":455,\"pick-by-alias\":466,\"to-float32\":539,\"update-diff\":550}],492:[function(t,e,r){\"use strict\";var n=t(\"color-normalize\"),a=t(\"array-bounds\"),i=t(\"object-assign\"),o=t(\"glslify\"),s=t(\"pick-by-alias\"),l=t(\"flatten-vertex-data\"),c=t(\"earcut\"),u=t(\"array-normalize\"),h=t(\"to-float32\"),f=h.float32,p=h.fract32,d=t(\"es6-weak-map\"),g=t(\"parse-rect\");function v(t,e){if(!(this instanceof v))return new v(t,e);if(\"function\"==typeof t?(e||(e={}),e.regl=t):e=t,e.length&&(e.positions=e),!(t=e.regl).hasExtension(\"ANGLE_instanced_arrays\"))throw Error(\"regl-error2d: `ANGLE_instanced_arrays` extension should be enabled\");this.gl=t._gl,this.regl=t,this.passes=[],this.shaders=v.shaders.has(t)?v.shaders.get(t):v.shaders.set(t,v.createShaders(t)).get(t),this.update(e)}e.exports=v,v.dashMult=2,v.maxPatternLength=256,v.precisionThreshold=3e6,v.maxPoints=1e4,v.maxLines=2048,v.shaders=new d,v.createShaders=function(t){var e,r=t.buffer({usage:\"static\",type:\"float\",data:[0,1,0,0,1,1,1,0]}),n={primitive:\"triangle strip\",instances:t.prop(\"count\"),count:4,offset:0,uniforms:{miterMode:function(t,e){return\"round\"===e.join?2:1},miterLimit:t.prop(\"miterLimit\"),scale:t.prop(\"scale\"),scaleFract:t.prop(\"scaleFract\"),translateFract:t.prop(\"translateFract\"),translate:t.prop(\"translate\"),thickness:t.prop(\"thickness\"),dashPattern:t.prop(\"dashTexture\"),opacity:t.prop(\"opacity\"),pixelRatio:t.context(\"pixelRatio\"),id:t.prop(\"id\"),dashSize:t.prop(\"dashLength\"),viewport:function(t,e){return[e.viewport.x,e.viewport.y,t.viewportWidth,t.viewportHeight]},depth:t.prop(\"depth\")},blend:{enable:!0,color:[0,0,0,0],equation:{rgb:\"add\",alpha:\"add\"},func:{srcRGB:\"src alpha\",dstRGB:\"one minus src alpha\",srcAlpha:\"one minus dst alpha\",dstAlpha:\"one\"}},depth:{enable:function(t,e){return!e.overlay}},stencil:{enable:!1},scissor:{enable:!0,box:t.prop(\"viewport\")},viewport:t.prop(\"viewport\")},a=t(i({vert:o([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec2 aCoord, bCoord, aCoordFract, bCoordFract;\\nattribute vec4 color;\\nattribute float lineEnd, lineTop;\\n\\nuniform vec2 scale, scaleFract, translate, translateFract;\\nuniform float thickness, pixelRatio, id, depth;\\nuniform vec4 viewport;\\n\\nvarying vec4 fragColor;\\nvarying vec2 tangent;\\n\\nvec2 project(vec2 position, vec2 positionFract, vec2 scale, vec2 scaleFract, vec2 translate, vec2 translateFract) {\\n\\t// the order is important\\n\\treturn position * scale + translate\\n       + positionFract * scale + translateFract\\n       + position * scaleFract\\n       + positionFract * scaleFract;\\n}\\n\\nvoid main() {\\n\\tfloat lineStart = 1. - lineEnd;\\n\\tfloat lineOffset = lineTop * 2. - 1.;\\n\\n\\tvec2 diff = (bCoord + bCoordFract - aCoord - aCoordFract);\\n\\ttangent = normalize(diff * scale * viewport.zw);\\n\\tvec2 normal = vec2(-tangent.y, tangent.x);\\n\\n\\tvec2 position = project(aCoord, aCoordFract, scale, scaleFract, translate, translateFract) * lineStart\\n\\t\\t+ project(bCoord, bCoordFract, scale, scaleFract, translate, translateFract) * lineEnd\\n\\n\\t\\t+ thickness * normal * .5 * lineOffset / viewport.zw;\\n\\n\\tgl_Position = vec4(position * 2.0 - 1.0, depth, 1);\\n\\n\\tfragColor = color / 255.;\\n}\\n\"]),frag:o([\"precision highp float;\\n#define GLSLIFY 1\\n\\nuniform sampler2D dashPattern;\\n\\nuniform float dashSize, pixelRatio, thickness, opacity, id;\\n\\nvarying vec4 fragColor;\\nvarying vec2 tangent;\\n\\nvoid main() {\\n\\tfloat alpha = 1.;\\n\\n\\tfloat t = fract(dot(tangent, gl_FragCoord.xy) / dashSize) * .5 + .25;\\n\\tfloat dash = texture2D(dashPattern, vec2(t, .5)).r;\\n\\n\\tgl_FragColor = fragColor;\\n\\tgl_FragColor.a *= alpha * opacity * dash;\\n}\\n\"]),attributes:{lineEnd:{buffer:r,divisor:0,stride:8,offset:0},lineTop:{buffer:r,divisor:0,stride:8,offset:4},aCoord:{buffer:t.prop(\"positionBuffer\"),stride:8,offset:8,divisor:1},bCoord:{buffer:t.prop(\"positionBuffer\"),stride:8,offset:16,divisor:1},aCoordFract:{buffer:t.prop(\"positionFractBuffer\"),stride:8,offset:8,divisor:1},bCoordFract:{buffer:t.prop(\"positionFractBuffer\"),stride:8,offset:16,divisor:1},color:{buffer:t.prop(\"colorBuffer\"),stride:4,offset:0,divisor:1}}},n));try{e=t(i({cull:{enable:!0,face:\"back\"},vert:o([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec2 aCoord, bCoord, nextCoord, prevCoord;\\nattribute vec4 aColor, bColor;\\nattribute float lineEnd, lineTop;\\n\\nuniform vec2 scale, translate;\\nuniform float thickness, pixelRatio, id, depth;\\nuniform vec4 viewport;\\nuniform float miterLimit, miterMode;\\n\\nvarying vec4 fragColor;\\nvarying vec4 startCutoff, endCutoff;\\nvarying vec2 tangent;\\nvarying vec2 startCoord, endCoord;\\nvarying float enableStartMiter, enableEndMiter;\\n\\nconst float REVERSE_THRESHOLD = -.875;\\nconst float MIN_DIFF = 1e-6;\\n\\n// TODO: possible optimizations: avoid overcalculating all for vertices and calc just one instead\\n// TODO: precalculate dot products, normalize things beforehead etc.\\n// TODO: refactor to rectangular algorithm\\n\\nfloat distToLine(vec2 p, vec2 a, vec2 b) {\\n\\tvec2 diff = b - a;\\n\\tvec2 perp = normalize(vec2(-diff.y, diff.x));\\n\\treturn dot(p - a, perp);\\n}\\n\\nbool isNaN( float val ){\\n  return ( val < 0.0 || 0.0 < val || val == 0.0 ) ? false : true;\\n}\\n\\nvoid main() {\\n\\tvec2 aCoord = aCoord, bCoord = bCoord, prevCoord = prevCoord, nextCoord = nextCoord;\\n\\n  vec2 adjustedScale;\\n  adjustedScale.x = (abs(scale.x) < MIN_DIFF) ? MIN_DIFF : scale.x;\\n  adjustedScale.y = (abs(scale.y) < MIN_DIFF) ? MIN_DIFF : scale.y;\\n\\n  vec2 scaleRatio = adjustedScale * viewport.zw;\\n\\tvec2 normalWidth = thickness / scaleRatio;\\n\\n\\tfloat lineStart = 1. - lineEnd;\\n\\tfloat lineBot = 1. - lineTop;\\n\\n\\tfragColor = (lineStart * aColor + lineEnd * bColor) / 255.;\\n\\n\\tif (isNaN(aCoord.x) || isNaN(aCoord.y) || isNaN(bCoord.x) || isNaN(bCoord.y)) return;\\n\\n\\tif (aCoord == prevCoord) prevCoord = aCoord + normalize(bCoord - aCoord);\\n\\tif (bCoord == nextCoord) nextCoord = bCoord - normalize(bCoord - aCoord);\\n\\n\\tvec2 prevDiff = aCoord - prevCoord;\\n\\tvec2 currDiff = bCoord - aCoord;\\n\\tvec2 nextDiff = nextCoord - bCoord;\\n\\n\\tvec2 prevTangent = normalize(prevDiff * scaleRatio);\\n\\tvec2 currTangent = normalize(currDiff * scaleRatio);\\n\\tvec2 nextTangent = normalize(nextDiff * scaleRatio);\\n\\n\\tvec2 prevNormal = vec2(-prevTangent.y, prevTangent.x);\\n\\tvec2 currNormal = vec2(-currTangent.y, currTangent.x);\\n\\tvec2 nextNormal = vec2(-nextTangent.y, nextTangent.x);\\n\\n\\tvec2 startJoinDirection = normalize(prevTangent - currTangent);\\n\\tvec2 endJoinDirection = normalize(currTangent - nextTangent);\\n\\n\\t// collapsed/unidirectional segment cases\\n\\t// FIXME: there should be more elegant solution\\n\\tvec2 prevTanDiff = abs(prevTangent - currTangent);\\n\\tvec2 nextTanDiff = abs(nextTangent - currTangent);\\n\\tif (max(prevTanDiff.x, prevTanDiff.y) < MIN_DIFF) {\\n\\t\\tstartJoinDirection = currNormal;\\n\\t}\\n\\tif (max(nextTanDiff.x, nextTanDiff.y) < MIN_DIFF) {\\n\\t\\tendJoinDirection = currNormal;\\n\\t}\\n\\tif (aCoord == bCoord) {\\n\\t\\tendJoinDirection = startJoinDirection;\\n\\t\\tcurrNormal = prevNormal;\\n\\t\\tcurrTangent = prevTangent;\\n\\t}\\n\\n\\ttangent = currTangent;\\n\\n\\t//calculate join shifts relative to normals\\n\\tfloat startJoinShift = dot(currNormal, startJoinDirection);\\n\\tfloat endJoinShift = dot(currNormal, endJoinDirection);\\n\\n\\tfloat startMiterRatio = abs(1. / startJoinShift);\\n\\tfloat endMiterRatio = abs(1. / endJoinShift);\\n\\n\\tvec2 startJoin = startJoinDirection * startMiterRatio;\\n\\tvec2 endJoin = endJoinDirection * endMiterRatio;\\n\\n\\tvec2 startTopJoin, startBotJoin, endTopJoin, endBotJoin;\\n\\tstartTopJoin = sign(startJoinShift) * startJoin * .5;\\n\\tstartBotJoin = -startTopJoin;\\n\\n\\tendTopJoin = sign(endJoinShift) * endJoin * .5;\\n\\tendBotJoin = -endTopJoin;\\n\\n\\tvec2 aTopCoord = aCoord + normalWidth * startTopJoin;\\n\\tvec2 bTopCoord = bCoord + normalWidth * endTopJoin;\\n\\tvec2 aBotCoord = aCoord + normalWidth * startBotJoin;\\n\\tvec2 bBotCoord = bCoord + normalWidth * endBotJoin;\\n\\n\\t//miter anti-clipping\\n\\tfloat baClipping = distToLine(bCoord, aCoord, aBotCoord) / dot(normalize(normalWidth * endBotJoin), normalize(normalWidth.yx * vec2(-startBotJoin.y, startBotJoin.x)));\\n\\tfloat abClipping = distToLine(aCoord, bCoord, bTopCoord) / dot(normalize(normalWidth * startBotJoin), normalize(normalWidth.yx * vec2(-endBotJoin.y, endBotJoin.x)));\\n\\n\\t//prevent close to reverse direction switch\\n\\tbool prevReverse = dot(currTangent, prevTangent) <= REVERSE_THRESHOLD && abs(dot(currTangent, prevNormal)) * min(length(prevDiff), length(currDiff)) <  length(normalWidth * currNormal);\\n\\tbool nextReverse = dot(currTangent, nextTangent) <= REVERSE_THRESHOLD && abs(dot(currTangent, nextNormal)) * min(length(nextDiff), length(currDiff)) <  length(normalWidth * currNormal);\\n\\n\\tif (prevReverse) {\\n\\t\\t//make join rectangular\\n\\t\\tvec2 miterShift = normalWidth * startJoinDirection * miterLimit * .5;\\n\\t\\tfloat normalAdjust = 1. - min(miterLimit / startMiterRatio, 1.);\\n\\t\\taBotCoord = aCoord + miterShift - normalAdjust * normalWidth * currNormal * .5;\\n\\t\\taTopCoord = aCoord + miterShift + normalAdjust * normalWidth * currNormal * .5;\\n\\t}\\n\\telse if (!nextReverse && baClipping > 0. && baClipping < length(normalWidth * endBotJoin)) {\\n\\t\\t//handle miter clipping\\n\\t\\tbTopCoord -= normalWidth * endTopJoin;\\n\\t\\tbTopCoord += normalize(endTopJoin * normalWidth) * baClipping;\\n\\t}\\n\\n\\tif (nextReverse) {\\n\\t\\t//make join rectangular\\n\\t\\tvec2 miterShift = normalWidth * endJoinDirection * miterLimit * .5;\\n\\t\\tfloat normalAdjust = 1. - min(miterLimit / endMiterRatio, 1.);\\n\\t\\tbBotCoord = bCoord + miterShift - normalAdjust * normalWidth * currNormal * .5;\\n\\t\\tbTopCoord = bCoord + miterShift + normalAdjust * normalWidth * currNormal * .5;\\n\\t}\\n\\telse if (!prevReverse && abClipping > 0. && abClipping < length(normalWidth * startBotJoin)) {\\n\\t\\t//handle miter clipping\\n\\t\\taBotCoord -= normalWidth * startBotJoin;\\n\\t\\taBotCoord += normalize(startBotJoin * normalWidth) * abClipping;\\n\\t}\\n\\n\\tvec2 aTopPosition = (aTopCoord) * adjustedScale + translate;\\n\\tvec2 aBotPosition = (aBotCoord) * adjustedScale + translate;\\n\\n\\tvec2 bTopPosition = (bTopCoord) * adjustedScale + translate;\\n\\tvec2 bBotPosition = (bBotCoord) * adjustedScale + translate;\\n\\n\\t//position is normalized 0..1 coord on the screen\\n\\tvec2 position = (aTopPosition * lineTop + aBotPosition * lineBot) * lineStart + (bTopPosition * lineTop + bBotPosition * lineBot) * lineEnd;\\n\\n\\tstartCoord = aCoord * scaleRatio + translate * viewport.zw + viewport.xy;\\n\\tendCoord = bCoord * scaleRatio + translate * viewport.zw + viewport.xy;\\n\\n\\tgl_Position = vec4(position  * 2.0 - 1.0, depth, 1);\\n\\n\\tenableStartMiter = step(dot(currTangent, prevTangent), .5);\\n\\tenableEndMiter = step(dot(currTangent, nextTangent), .5);\\n\\n\\t//bevel miter cutoffs\\n\\tif (miterMode == 1.) {\\n\\t\\tif (enableStartMiter == 1.) {\\n\\t\\t\\tvec2 startMiterWidth = vec2(startJoinDirection) * thickness * miterLimit * .5;\\n\\t\\t\\tstartCutoff = vec4(aCoord, aCoord);\\n\\t\\t\\tstartCutoff.zw += vec2(-startJoinDirection.y, startJoinDirection.x) / scaleRatio;\\n\\t\\t\\tstartCutoff = startCutoff * scaleRatio.xyxy + translate.xyxy * viewport.zwzw;\\n\\t\\t\\tstartCutoff += viewport.xyxy;\\n\\t\\t\\tstartCutoff += startMiterWidth.xyxy;\\n\\t\\t}\\n\\n\\t\\tif (enableEndMiter == 1.) {\\n\\t\\t\\tvec2 endMiterWidth = vec2(endJoinDirection) * thickness * miterLimit * .5;\\n\\t\\t\\tendCutoff = vec4(bCoord, bCoord);\\n\\t\\t\\tendCutoff.zw += vec2(-endJoinDirection.y, endJoinDirection.x)  / scaleRatio;\\n\\t\\t\\tendCutoff = endCutoff * scaleRatio.xyxy + translate.xyxy * viewport.zwzw;\\n\\t\\t\\tendCutoff += viewport.xyxy;\\n\\t\\t\\tendCutoff += endMiterWidth.xyxy;\\n\\t\\t}\\n\\t}\\n\\n\\t//round miter cutoffs\\n\\telse if (miterMode == 2.) {\\n\\t\\tif (enableStartMiter == 1.) {\\n\\t\\t\\tvec2 startMiterWidth = vec2(startJoinDirection) * thickness * abs(dot(startJoinDirection, currNormal)) * .5;\\n\\t\\t\\tstartCutoff = vec4(aCoord, aCoord);\\n\\t\\t\\tstartCutoff.zw += vec2(-startJoinDirection.y, startJoinDirection.x) / scaleRatio;\\n\\t\\t\\tstartCutoff = startCutoff * scaleRatio.xyxy + translate.xyxy * viewport.zwzw;\\n\\t\\t\\tstartCutoff += viewport.xyxy;\\n\\t\\t\\tstartCutoff += startMiterWidth.xyxy;\\n\\t\\t}\\n\\n\\t\\tif (enableEndMiter == 1.) {\\n\\t\\t\\tvec2 endMiterWidth = vec2(endJoinDirection) * thickness * abs(dot(endJoinDirection, currNormal)) * .5;\\n\\t\\t\\tendCutoff = vec4(bCoord, bCoord);\\n\\t\\t\\tendCutoff.zw += vec2(-endJoinDirection.y, endJoinDirection.x)  / scaleRatio;\\n\\t\\t\\tendCutoff = endCutoff * scaleRatio.xyxy + translate.xyxy * viewport.zwzw;\\n\\t\\t\\tendCutoff += viewport.xyxy;\\n\\t\\t\\tendCutoff += endMiterWidth.xyxy;\\n\\t\\t}\\n\\t}\\n}\\n\"]),frag:o([\"precision highp float;\\n#define GLSLIFY 1\\n\\nuniform sampler2D dashPattern;\\nuniform float dashSize, pixelRatio, thickness, opacity, id, miterMode;\\n\\nvarying vec4 fragColor;\\nvarying vec2 tangent;\\nvarying vec4 startCutoff, endCutoff;\\nvarying vec2 startCoord, endCoord;\\nvarying float enableStartMiter, enableEndMiter;\\n\\nfloat distToLine(vec2 p, vec2 a, vec2 b) {\\n\\tvec2 diff = b - a;\\n\\tvec2 perp = normalize(vec2(-diff.y, diff.x));\\n\\treturn dot(p - a, perp);\\n}\\n\\nvoid main() {\\n\\tfloat alpha = 1., distToStart, distToEnd;\\n\\tfloat cutoff = thickness * .5;\\n\\n\\t//bevel miter\\n\\tif (miterMode == 1.) {\\n\\t\\tif (enableStartMiter == 1.) {\\n\\t\\t\\tdistToStart = distToLine(gl_FragCoord.xy, startCutoff.xy, startCutoff.zw);\\n\\t\\t\\tif (distToStart < -1.) {\\n\\t\\t\\t\\tdiscard;\\n\\t\\t\\t\\treturn;\\n\\t\\t\\t}\\n\\t\\t\\talpha *= min(max(distToStart + 1., 0.), 1.);\\n\\t\\t}\\n\\n\\t\\tif (enableEndMiter == 1.) {\\n\\t\\t\\tdistToEnd = distToLine(gl_FragCoord.xy, endCutoff.xy, endCutoff.zw);\\n\\t\\t\\tif (distToEnd < -1.) {\\n\\t\\t\\t\\tdiscard;\\n\\t\\t\\t\\treturn;\\n\\t\\t\\t}\\n\\t\\t\\talpha *= min(max(distToEnd + 1., 0.), 1.);\\n\\t\\t}\\n\\t}\\n\\n\\t// round miter\\n\\telse if (miterMode == 2.) {\\n\\t\\tif (enableStartMiter == 1.) {\\n\\t\\t\\tdistToStart = distToLine(gl_FragCoord.xy, startCutoff.xy, startCutoff.zw);\\n\\t\\t\\tif (distToStart < 0.) {\\n\\t\\t\\t\\tfloat radius = length(gl_FragCoord.xy - startCoord);\\n\\n\\t\\t\\t\\tif(radius > cutoff + .5) {\\n\\t\\t\\t\\t\\tdiscard;\\n\\t\\t\\t\\t\\treturn;\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\talpha -= smoothstep(cutoff - .5, cutoff + .5, radius);\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\tif (enableEndMiter == 1.) {\\n\\t\\t\\tdistToEnd = distToLine(gl_FragCoord.xy, endCutoff.xy, endCutoff.zw);\\n\\t\\t\\tif (distToEnd < 0.) {\\n\\t\\t\\t\\tfloat radius = length(gl_FragCoord.xy - endCoord);\\n\\n\\t\\t\\t\\tif(radius > cutoff + .5) {\\n\\t\\t\\t\\t\\tdiscard;\\n\\t\\t\\t\\t\\treturn;\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\talpha -= smoothstep(cutoff - .5, cutoff + .5, radius);\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\tfloat t = fract(dot(tangent, gl_FragCoord.xy) / dashSize) * .5 + .25;\\n\\tfloat dash = texture2D(dashPattern, vec2(t, .5)).r;\\n\\n\\tgl_FragColor = fragColor;\\n\\tgl_FragColor.a *= alpha * opacity * dash;\\n}\\n\"]),attributes:{lineEnd:{buffer:r,divisor:0,stride:8,offset:0},lineTop:{buffer:r,divisor:0,stride:8,offset:4},aColor:{buffer:t.prop(\"colorBuffer\"),stride:4,offset:0,divisor:1},bColor:{buffer:t.prop(\"colorBuffer\"),stride:4,offset:4,divisor:1},prevCoord:{buffer:t.prop(\"positionBuffer\"),stride:8,offset:0,divisor:1},aCoord:{buffer:t.prop(\"positionBuffer\"),stride:8,offset:8,divisor:1},bCoord:{buffer:t.prop(\"positionBuffer\"),stride:8,offset:16,divisor:1},nextCoord:{buffer:t.prop(\"positionBuffer\"),stride:8,offset:24,divisor:1}}},n))}catch(t){e=a}return{fill:t({primitive:\"triangle\",elements:function(t,e){return e.triangles},offset:0,vert:o([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec2 position, positionFract;\\n\\nuniform vec4 color;\\nuniform vec2 scale, scaleFract, translate, translateFract;\\nuniform float pixelRatio, id;\\nuniform vec4 viewport;\\nuniform float opacity;\\n\\nvarying vec4 fragColor;\\n\\nconst float MAX_LINES = 256.;\\n\\nvoid main() {\\n\\tfloat depth = (MAX_LINES - 4. - id) / (MAX_LINES);\\n\\n\\tvec2 position = position * scale + translate\\n       + positionFract * scale + translateFract\\n       + position * scaleFract\\n       + positionFract * scaleFract;\\n\\n\\tgl_Position = vec4(position * 2.0 - 1.0, depth, 1);\\n\\n\\tfragColor = color / 255.;\\n\\tfragColor.a *= opacity;\\n}\\n\"]),frag:o([\"precision highp float;\\n#define GLSLIFY 1\\n\\nvarying vec4 fragColor;\\n\\nvoid main() {\\n\\tgl_FragColor = fragColor;\\n}\\n\"]),uniforms:{scale:t.prop(\"scale\"),color:t.prop(\"fill\"),scaleFract:t.prop(\"scaleFract\"),translateFract:t.prop(\"translateFract\"),translate:t.prop(\"translate\"),opacity:t.prop(\"opacity\"),pixelRatio:t.context(\"pixelRatio\"),id:t.prop(\"id\"),viewport:function(t,e){return[e.viewport.x,e.viewport.y,t.viewportWidth,t.viewportHeight]}},attributes:{position:{buffer:t.prop(\"positionBuffer\"),stride:8,offset:8},positionFract:{buffer:t.prop(\"positionFractBuffer\"),stride:8,offset:8}},blend:n.blend,depth:{enable:!1},scissor:n.scissor,stencil:n.stencil,viewport:n.viewport}),rect:a,miter:e}},v.defaults={dashes:null,join:\"miter\",miterLimit:1,thickness:10,cap:\"square\",color:\"black\",opacity:1,overlay:!1,viewport:null,range:null,close:!1,fill:null},v.prototype.render=function(){for(var t,e=[],r=arguments.length;r--;)e[r]=arguments[r];e.length&&(t=this).update.apply(t,e),this.draw()},v.prototype.draw=function(){for(var t=this,e=[],r=arguments.length;r--;)e[r]=arguments[r];return(e.length?e:this.passes).forEach(function(e,r){var n;if(e&&Array.isArray(e))return(n=t).draw.apply(n,e);\"number\"==typeof e&&(e=t.passes[e]),e&&e.count>1&&e.opacity&&(t.regl._refresh(),e.fill&&e.triangles&&e.triangles.length>2&&t.shaders.fill(e),e.thickness&&(e.scale[0]*e.viewport.width>v.precisionThreshold||e.scale[1]*e.viewport.height>v.precisionThreshold?t.shaders.rect(e):\"rect\"===e.join||!e.join&&(e.thickness<=2||e.count>=v.maxPoints)?t.shaders.rect(e):t.shaders.miter(e)))}),this},v.prototype.update=function(t){var e=this;if(t){null!=t.length?\"number\"==typeof t[0]&&(t=[{positions:t}]):Array.isArray(t)||(t=[t]);var r=this.regl,o=this.gl;if(t.forEach(function(t,h){var d=e.passes[h];if(void 0!==t)if(null!==t){if(\"number\"==typeof t[0]&&(t={positions:t}),t=s(t,{positions:\"positions points data coords\",thickness:\"thickness lineWidth lineWidths line-width linewidth width stroke-width strokewidth strokeWidth\",join:\"lineJoin linejoin join type mode\",miterLimit:\"miterlimit miterLimit\",dashes:\"dash dashes dasharray dash-array dashArray\",color:\"color colour stroke colors colours stroke-color strokeColor\",fill:\"fill fill-color fillColor\",opacity:\"alpha opacity\",overlay:\"overlay crease overlap intersect\",close:\"closed close closed-path closePath\",range:\"range dataBox\",viewport:\"viewport viewBox\",hole:\"holes hole hollow\"}),d||(e.passes[h]=d={id:h,scale:null,scaleFract:null,translate:null,translateFract:null,count:0,hole:[],depth:0,dashLength:1,dashTexture:r.texture({channels:1,data:new Uint8Array([255]),width:1,height:1,mag:\"linear\",min:\"linear\"}),colorBuffer:r.buffer({usage:\"dynamic\",type:\"uint8\",data:new Uint8Array}),positionBuffer:r.buffer({usage:\"dynamic\",type:\"float\",data:new Uint8Array}),positionFractBuffer:r.buffer({usage:\"dynamic\",type:\"float\",data:new Uint8Array})},t=i({},v.defaults,t)),null!=t.thickness&&(d.thickness=parseFloat(t.thickness)),null!=t.opacity&&(d.opacity=parseFloat(t.opacity)),null!=t.miterLimit&&(d.miterLimit=parseFloat(t.miterLimit)),null!=t.overlay&&(d.overlay=!!t.overlay,h<v.maxLines&&(d.depth=2*(v.maxLines-1-h%v.maxLines)/v.maxLines-1)),null!=t.join&&(d.join=t.join),null!=t.hole&&(d.hole=t.hole),null!=t.fill&&(d.fill=t.fill?n(t.fill,\"uint8\"):null),null!=t.viewport&&(d.viewport=g(t.viewport)),d.viewport||(d.viewport=g([o.drawingBufferWidth,o.drawingBufferHeight])),null!=t.close&&(d.close=t.close),null===t.positions&&(t.positions=[]),t.positions){var m,y;if(t.positions.x&&t.positions.y){var x=t.positions.x,b=t.positions.y;y=d.count=Math.max(x.length,b.length),m=new Float64Array(2*y);for(var _=0;_<y;_++)m[2*_]=x[_],m[2*_+1]=b[_]}else m=l(t.positions,\"float64\"),y=d.count=Math.floor(m.length/2);var w=d.bounds=a(m,2);if(d.fill){for(var k=[],T={},A=0,M=0,S=0,E=d.count;M<E;M++){var C=m[2*M],L=m[2*M+1];isNaN(C)||isNaN(L)||null==C||null==L?(C=m[2*A],L=m[2*A+1],T[M]=A):A=M,k[S++]=C,k[S++]=L}for(var P=c(k,d.hole||[]),O=0,I=P.length;O<I;O++)null!=T[P[O]]&&(P[O]=T[P[O]]);d.triangles=P}var z=new Float64Array(m);u(z,2,w);var D=new Float64Array(2*y+6);d.close?m[0]===m[2*y-2]&&m[1]===m[2*y-1]?(D[0]=z[2*y-4],D[1]=z[2*y-3]):(D[0]=z[2*y-2],D[1]=z[2*y-1]):(D[0]=z[0],D[1]=z[1]),D.set(z,2),d.close?m[0]===m[2*y-2]&&m[1]===m[2*y-1]?(D[2*y+2]=z[2],D[2*y+3]=z[3],d.count-=1):(D[2*y+2]=z[0],D[2*y+3]=z[1],D[2*y+4]=z[2],D[2*y+5]=z[3]):(D[2*y+2]=z[2*y-2],D[2*y+3]=z[2*y-1],D[2*y+4]=z[2*y-2],D[2*y+5]=z[2*y-1]),d.positionBuffer(f(D)),d.positionFractBuffer(p(D))}if(t.range?d.range=t.range:d.range||(d.range=d.bounds),(t.range||t.positions)&&d.count){var R=d.bounds,F=R[2]-R[0],B=R[3]-R[1],N=d.range[2]-d.range[0],j=d.range[3]-d.range[1];d.scale=[F/N,B/j],d.translate=[-d.range[0]/N+R[0]/N||0,-d.range[1]/j+R[1]/j||0],d.scaleFract=p(d.scale),d.translateFract=p(d.translate)}if(t.dashes){var V,U=0;if(!t.dashes||t.dashes.length<2)U=1,V=new Uint8Array([255,255,255,255,255,255,255,255]);else{U=0;for(var q=0;q<t.dashes.length;++q)U+=t.dashes[q];V=new Uint8Array(U*v.dashMult);for(var H=0,G=255,Y=0;Y<2;Y++)for(var W=0;W<t.dashes.length;++W){for(var X=0,Z=t.dashes[W]*v.dashMult*.5;X<Z;++X)V[H++]=G;G^=255}}d.dashLength=U,d.dashTexture({channels:1,data:V,width:V.length,height:1,mag:\"linear\",min:\"linear\"},0,0)}if(t.color){var J=d.count,K=t.color;K||(K=\"transparent\");var Q=new Uint8Array(4*J+4);if(Array.isArray(K)&&\"number\"!=typeof K[0]){for(var $=0;$<J;$++){var tt=n(K[$],\"uint8\");Q.set(tt,4*$)}Q.set(n(K[0],\"uint8\"),4*J)}else for(var et=n(K,\"uint8\"),rt=0;rt<J+1;rt++)Q.set(et,4*rt);d.colorBuffer({usage:\"dynamic\",type:\"uint8\",data:Q})}}else e.passes[h]=null}),t.length<this.passes.length){for(var h=t.length;h<this.passes.length;h++){var d=e.passes[h];d&&(d.colorBuffer.destroy(),d.positionBuffer.destroy(),d.dashTexture.destroy())}this.passes.length=t.length}for(var m=[],y=0;y<this.passes.length;y++)null!==e.passes[y]&&m.push(e.passes[y]);return this.passes=m,this}},v.prototype.destroy=function(){return this.passes.forEach(function(t){t.colorBuffer.destroy(),t.positionBuffer.destroy(),t.dashTexture.destroy()}),this.passes.length=0,this}},{\"array-bounds\":66,\"array-normalize\":67,\"color-normalize\":121,earcut:493,\"es6-weak-map\":494,\"flatten-vertex-data\":228,glslify:410,\"object-assign\":455,\"parse-rect\":460,\"pick-by-alias\":466,\"to-float32\":539}],493:[function(t,e,r){\"use strict\";function n(t,e,r){r=r||2;var n,s,l,c,u,p,g,v=e&&e.length,m=v?e[0]*r:t.length,y=a(t,0,m,r,!0),x=[];if(!y||y.next===y.prev)return x;if(v&&(y=function(t,e,r,n){var o,s,l,c,u,p=[];for(o=0,s=e.length;o<s;o++)l=e[o]*n,c=o<s-1?e[o+1]*n:t.length,(u=a(t,l,c,n,!1))===u.next&&(u.steiner=!0),p.push(d(u));for(p.sort(h),o=0;o<p.length;o++)f(p[o],r),r=i(r,r.next);return r}(t,e,y,r)),t.length>80*r){n=l=t[0],s=c=t[1];for(var b=r;b<m;b+=r)(u=t[b])<n&&(n=u),(p=t[b+1])<s&&(s=p),u>l&&(l=u),p>c&&(c=p);g=0!==(g=Math.max(l-n,c-s))?1/g:0}return o(y,x,r,n,s,g),x}function a(t,e,r,n,a){var i,o;if(a===A(t,e,r,n)>0)for(i=e;i<r;i+=n)o=w(i,t[i],t[i+1],o);else for(i=r-n;i>=e;i-=n)o=w(i,t[i],t[i+1],o);return o&&y(o,o.next)&&(k(o),o=o.next),o}function i(t,e){if(!t)return t;e||(e=t);var r,n=t;do{if(r=!1,n.steiner||!y(n,n.next)&&0!==m(n.prev,n,n.next))n=n.next;else{if(k(n),(n=e=n.prev)===n.next)break;r=!0}}while(r||n!==e);return e}function o(t,e,r,n,a,h,f){if(t){!f&&h&&function(t,e,r,n){var a=t;do{null===a.z&&(a.z=p(a.x,a.y,e,r,n)),a.prevZ=a.prev,a.nextZ=a.next,a=a.next}while(a!==t);a.prevZ.nextZ=null,a.prevZ=null,function(t){var e,r,n,a,i,o,s,l,c=1;do{for(r=t,t=null,i=null,o=0;r;){for(o++,n=r,s=0,e=0;e<c&&(s++,n=n.nextZ);e++);for(l=c;s>0||l>0&&n;)0!==s&&(0===l||!n||r.z<=n.z)?(a=r,r=r.nextZ,s--):(a=n,n=n.nextZ,l--),i?i.nextZ=a:t=a,a.prevZ=i,i=a;r=n}i.nextZ=null,c*=2}while(o>1)}(a)}(t,n,a,h);for(var d,g,v=t;t.prev!==t.next;)if(d=t.prev,g=t.next,h?l(t,n,a,h):s(t))e.push(d.i/r),e.push(t.i/r),e.push(g.i/r),k(t),t=g.next,v=g.next;else if((t=g)===v){f?1===f?o(t=c(t,e,r),e,r,n,a,h,2):2===f&&u(t,e,r,n,a,h):o(i(t),e,r,n,a,h,1);break}}}function s(t){var e=t.prev,r=t,n=t.next;if(m(e,r,n)>=0)return!1;for(var a=t.next.next;a!==t.prev;){if(g(e.x,e.y,r.x,r.y,n.x,n.y,a.x,a.y)&&m(a.prev,a,a.next)>=0)return!1;a=a.next}return!0}function l(t,e,r,n){var a=t.prev,i=t,o=t.next;if(m(a,i,o)>=0)return!1;for(var s=a.x<i.x?a.x<o.x?a.x:o.x:i.x<o.x?i.x:o.x,l=a.y<i.y?a.y<o.y?a.y:o.y:i.y<o.y?i.y:o.y,c=a.x>i.x?a.x>o.x?a.x:o.x:i.x>o.x?i.x:o.x,u=a.y>i.y?a.y>o.y?a.y:o.y:i.y>o.y?i.y:o.y,h=p(s,l,e,r,n),f=p(c,u,e,r,n),d=t.prevZ,v=t.nextZ;d&&d.z>=h&&v&&v.z<=f;){if(d!==t.prev&&d!==t.next&&g(a.x,a.y,i.x,i.y,o.x,o.y,d.x,d.y)&&m(d.prev,d,d.next)>=0)return!1;if(d=d.prevZ,v!==t.prev&&v!==t.next&&g(a.x,a.y,i.x,i.y,o.x,o.y,v.x,v.y)&&m(v.prev,v,v.next)>=0)return!1;v=v.nextZ}for(;d&&d.z>=h;){if(d!==t.prev&&d!==t.next&&g(a.x,a.y,i.x,i.y,o.x,o.y,d.x,d.y)&&m(d.prev,d,d.next)>=0)return!1;d=d.prevZ}for(;v&&v.z<=f;){if(v!==t.prev&&v!==t.next&&g(a.x,a.y,i.x,i.y,o.x,o.y,v.x,v.y)&&m(v.prev,v,v.next)>=0)return!1;v=v.nextZ}return!0}function c(t,e,r){var n=t;do{var a=n.prev,i=n.next.next;!y(a,i)&&x(a,n,n.next,i)&&b(a,i)&&b(i,a)&&(e.push(a.i/r),e.push(n.i/r),e.push(i.i/r),k(n),k(n.next),n=t=i),n=n.next}while(n!==t);return n}function u(t,e,r,n,a,s){var l=t;do{for(var c=l.next.next;c!==l.prev;){if(l.i!==c.i&&v(l,c)){var u=_(l,c);return l=i(l,l.next),u=i(u,u.next),o(l,e,r,n,a,s),void o(u,e,r,n,a,s)}c=c.next}l=l.next}while(l!==t)}function h(t,e){return t.x-e.x}function f(t,e){if(e=function(t,e){var r,n=e,a=t.x,i=t.y,o=-1/0;do{if(i<=n.y&&i>=n.next.y&&n.next.y!==n.y){var s=n.x+(i-n.y)*(n.next.x-n.x)/(n.next.y-n.y);if(s<=a&&s>o){if(o=s,s===a){if(i===n.y)return n;if(i===n.next.y)return n.next}r=n.x<n.next.x?n:n.next}}n=n.next}while(n!==e);if(!r)return null;if(a===o)return r.prev;var l,c=r,u=r.x,h=r.y,f=1/0;n=r.next;for(;n!==c;)a>=n.x&&n.x>=u&&a!==n.x&&g(i<h?a:o,i,u,h,i<h?o:a,i,n.x,n.y)&&((l=Math.abs(i-n.y)/(a-n.x))<f||l===f&&n.x>r.x)&&b(n,t)&&(r=n,f=l),n=n.next;return r}(t,e)){var r=_(e,t);i(r,r.next)}}function p(t,e,r,n,a){return(t=1431655765&((t=858993459&((t=252645135&((t=16711935&((t=32767*(t-r)*a)|t<<8))|t<<4))|t<<2))|t<<1))|(e=1431655765&((e=858993459&((e=252645135&((e=16711935&((e=32767*(e-n)*a)|e<<8))|e<<4))|e<<2))|e<<1))<<1}function d(t){var e=t,r=t;do{(e.x<r.x||e.x===r.x&&e.y<r.y)&&(r=e),e=e.next}while(e!==t);return r}function g(t,e,r,n,a,i,o,s){return(a-o)*(e-s)-(t-o)*(i-s)>=0&&(t-o)*(n-s)-(r-o)*(e-s)>=0&&(r-o)*(i-s)-(a-o)*(n-s)>=0}function v(t,e){return t.next.i!==e.i&&t.prev.i!==e.i&&!function(t,e){var r=t;do{if(r.i!==t.i&&r.next.i!==t.i&&r.i!==e.i&&r.next.i!==e.i&&x(r,r.next,t,e))return!0;r=r.next}while(r!==t);return!1}(t,e)&&b(t,e)&&b(e,t)&&function(t,e){var r=t,n=!1,a=(t.x+e.x)/2,i=(t.y+e.y)/2;do{r.y>i!=r.next.y>i&&r.next.y!==r.y&&a<(r.next.x-r.x)*(i-r.y)/(r.next.y-r.y)+r.x&&(n=!n),r=r.next}while(r!==t);return n}(t,e)}function m(t,e,r){return(e.y-t.y)*(r.x-e.x)-(e.x-t.x)*(r.y-e.y)}function y(t,e){return t.x===e.x&&t.y===e.y}function x(t,e,r,n){return!!(y(t,e)&&y(r,n)||y(t,n)&&y(r,e))||m(t,e,r)>0!=m(t,e,n)>0&&m(r,n,t)>0!=m(r,n,e)>0}function b(t,e){return m(t.prev,t,t.next)<0?m(t,e,t.next)>=0&&m(t,t.prev,e)>=0:m(t,e,t.prev)<0||m(t,t.next,e)<0}function _(t,e){var r=new T(t.i,t.x,t.y),n=new T(e.i,e.x,e.y),a=t.next,i=e.prev;return t.next=e,e.prev=t,r.next=a,a.prev=r,n.next=r,r.prev=n,i.next=n,n.prev=i,n}function w(t,e,r,n){var a=new T(t,e,r);return n?(a.next=n.next,a.prev=n,n.next.prev=a,n.next=a):(a.prev=a,a.next=a),a}function k(t){t.next.prev=t.prev,t.prev.next=t.next,t.prevZ&&(t.prevZ.nextZ=t.nextZ),t.nextZ&&(t.nextZ.prevZ=t.prevZ)}function T(t,e,r){this.i=t,this.x=e,this.y=r,this.prev=null,this.next=null,this.z=null,this.prevZ=null,this.nextZ=null,this.steiner=!1}function A(t,e,r,n){for(var a=0,i=e,o=r-n;i<r;i+=n)a+=(t[o]-t[i])*(t[i+1]+t[o+1]),o=i;return a}e.exports=n,e.exports.default=n,n.deviation=function(t,e,r,n){var a=e&&e.length,i=a?e[0]*r:t.length,o=Math.abs(A(t,0,i,r));if(a)for(var s=0,l=e.length;s<l;s++){var c=e[s]*r,u=s<l-1?e[s+1]*r:t.length;o-=Math.abs(A(t,c,u,r))}var h=0;for(s=0;s<n.length;s+=3){var f=n[s]*r,p=n[s+1]*r,d=n[s+2]*r;h+=Math.abs((t[f]-t[d])*(t[p+1]-t[f+1])-(t[f]-t[p])*(t[d+1]-t[f+1]))}return 0===o&&0===h?0:Math.abs((h-o)/o)},n.flatten=function(t){for(var e=t[0][0].length,r={vertices:[],holes:[],dimensions:e},n=0,a=0;a<t.length;a++){for(var i=0;i<t[a].length;i++)for(var o=0;o<e;o++)r.vertices.push(t[a][i][o]);a>0&&(n+=t[a-1].length,r.holes.push(n))}return r}},{}],494:[function(t,e,r){arguments[4][319][0].apply(r,arguments)},{\"./is-implemented\":495,\"./polyfill\":497,dup:319}],495:[function(t,e,r){arguments[4][320][0].apply(r,arguments)},{dup:320}],496:[function(t,e,r){arguments[4][321][0].apply(r,arguments)},{dup:321}],497:[function(t,e,r){arguments[4][322][0].apply(r,arguments)},{\"./is-native-implemented\":496,d:152,dup:322,\"es5-ext/object/is-value\":195,\"es5-ext/object/set-prototype-of\":201,\"es5-ext/object/valid-object\":205,\"es5-ext/object/valid-value\":206,\"es5-ext/string/random-uniq\":211,\"es6-iterator/for-of\":213,\"es6-iterator/get\":214,\"es6-symbol\":220}],498:[function(t,e,r){\"use strict\";function n(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var r=[],n=!0,a=!1,i=void 0;try{for(var o,s=t[Symbol.iterator]();!(n=(o=s.next()).done)&&(r.push(o.value),!e||r.length!==e);n=!0);}catch(t){a=!0,i=t}finally{try{n||null==s.return||s.return()}finally{if(a)throw i}}return r}(t,e)||function(){throw new TypeError(\"Invalid attempt to destructure non-iterable instance\")}()}function a(t){return function(t){if(Array.isArray(t)){for(var e=0,r=new Array(t.length);e<t.length;e++)r[e]=t[e];return r}}(t)||function(t){if(Symbol.iterator in Object(t)||\"[object Arguments]\"===Object.prototype.toString.call(t))return Array.from(t)}(t)||function(){throw new TypeError(\"Invalid attempt to spread non-iterable instance\")}()}var i=t(\"color-normalize\"),o=t(\"array-bounds\"),s=t(\"color-id\"),l=t(\"point-cluster\"),c=t(\"object-assign\"),u=t(\"glslify\"),h=t(\"pick-by-alias\"),f=t(\"update-diff\"),p=t(\"flatten-vertex-data\"),d=t(\"is-iexplorer\"),g=t(\"to-float32\"),v=t(\"parse-rect\"),m=y;function y(t,e){var r=this;if(!(this instanceof y))return new y(t,e);\"function\"==typeof t?(e||(e={}),e.regl=t):(e=t,t=null),e&&e.length&&(e.positions=e);var n,a=(t=e.regl)._gl,i=[];this.tooManyColors=d,n=t.texture({data:new Uint8Array(1020),width:255,height:1,type:\"uint8\",format:\"rgba\",wrapS:\"clamp\",wrapT:\"clamp\",mag:\"nearest\",min:\"nearest\"}),c(this,{regl:t,gl:a,groups:[],markerCache:[null],markerTextures:[null],palette:i,paletteIds:{},paletteTexture:n,maxColors:255,maxSize:100,canvas:a.canvas}),this.update(e);var o={uniforms:{pixelRatio:t.context(\"pixelRatio\"),palette:n,paletteSize:function(t,e){return[r.tooManyColors?0:255,n.height]},scale:t.prop(\"scale\"),scaleFract:t.prop(\"scaleFract\"),translate:t.prop(\"translate\"),translateFract:t.prop(\"translateFract\"),opacity:t.prop(\"opacity\"),marker:t.prop(\"markerTexture\")},attributes:{x:function(t,e){return e.xAttr||{buffer:e.positionBuffer,stride:8,offset:0}},y:function(t,e){return e.yAttr||{buffer:e.positionBuffer,stride:8,offset:4}},xFract:function(t,e){return e.xAttr?{constant:[0,0]}:{buffer:e.positionFractBuffer,stride:8,offset:0}},yFract:function(t,e){return e.yAttr?{constant:[0,0]}:{buffer:e.positionFractBuffer,stride:8,offset:4}},size:function(t,e){return e.size.length?{buffer:e.sizeBuffer,stride:2,offset:0}:{constant:[Math.round(255*e.size/r.maxSize)]}},borderSize:function(t,e){return e.borderSize.length?{buffer:e.sizeBuffer,stride:2,offset:1}:{constant:[Math.round(255*e.borderSize/r.maxSize)]}},colorId:function(t,e){return e.color.length?{buffer:e.colorBuffer,stride:r.tooManyColors?8:4,offset:0}:{constant:r.tooManyColors?i.slice(4*e.color,4*e.color+4):[e.color]}},borderColorId:function(t,e){return e.borderColor.length?{buffer:e.colorBuffer,stride:r.tooManyColors?8:4,offset:r.tooManyColors?4:2}:{constant:r.tooManyColors?i.slice(4*e.borderColor,4*e.borderColor+4):[e.borderColor]}},isActive:function(t,e){return!0===e.activation?{constant:[1]}:e.activation?e.activation:{constant:[0]}}},blend:{enable:!0,color:[0,0,0,1],func:{srcRGB:\"src alpha\",dstRGB:\"one minus src alpha\",srcAlpha:\"one minus dst alpha\",dstAlpha:\"one\"}},scissor:{enable:!0,box:t.prop(\"viewport\")},viewport:t.prop(\"viewport\"),stencil:{enable:!1},depth:{enable:!1},elements:t.prop(\"elements\"),count:t.prop(\"count\"),offset:t.prop(\"offset\"),primitive:\"points\"},s=c({},o);s.frag=u([\"precision highp float;\\n#define GLSLIFY 1\\n\\nvarying vec4 fragColor, fragBorderColor;\\nvarying float fragWidth, fragBorderColorLevel, fragColorLevel;\\n\\nuniform sampler2D marker;\\nuniform float pixelRatio, opacity;\\n\\nfloat smoothStep(float x, float y) {\\n  return 1.0 / (1.0 + exp(50.0*(x - y)));\\n}\\n\\nvoid main() {\\n  float dist = texture2D(marker, gl_PointCoord).r, delta = fragWidth;\\n\\n  // max-distance alpha\\n  if (dist < 0.003) discard;\\n\\n  // null-border case\\n  if (fragBorderColorLevel == fragColorLevel || fragBorderColor.a == 0.) {\\n    float colorAmt = smoothstep(.5 - delta, .5 + delta, dist);\\n    gl_FragColor = vec4(fragColor.rgb, colorAmt * fragColor.a * opacity);\\n  }\\n  else {\\n    float borderColorAmt = smoothstep(fragBorderColorLevel - delta, fragBorderColorLevel + delta, dist);\\n    float colorAmt = smoothstep(fragColorLevel - delta, fragColorLevel + delta, dist);\\n\\n    vec4 color = fragBorderColor;\\n    color.a *= borderColorAmt;\\n    color = mix(color, fragColor, colorAmt);\\n    color.a *= opacity;\\n\\n    gl_FragColor = color;\\n  }\\n\\n}\\n\"]),s.vert=u([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute float x, y, xFract, yFract;\\nattribute float size, borderSize;\\nattribute vec4 colorId, borderColorId;\\nattribute float isActive;\\n\\nuniform vec2 scale, scaleFract, translate, translateFract, paletteSize;\\nuniform float pixelRatio;\\nuniform sampler2D palette;\\n\\nconst float maxSize = 100.;\\nconst float borderLevel = .5;\\n\\nvarying vec4 fragColor, fragBorderColor;\\nvarying float fragPointSize, fragBorderRadius, fragWidth, fragBorderColorLevel, fragColorLevel;\\n\\nbool isDirect = (paletteSize.x < 1.);\\n\\nvec4 getColor(vec4 id) {\\n  return isDirect ? id / 255. : texture2D(palette,\\n    vec2(\\n      (id.x + .5) / paletteSize.x,\\n      (id.y + .5) / paletteSize.y\\n    )\\n  );\\n}\\n\\nvoid main() {\\n  if (isActive == 0.) return;\\n\\n  vec2 position = vec2(x, y);\\n  vec2 positionFract = vec2(xFract, yFract);\\n\\n  vec4 color = getColor(colorId);\\n  vec4 borderColor = getColor(borderColorId);\\n\\n  float size = size * maxSize / 255.;\\n  float borderSize = borderSize * maxSize / 255.;\\n\\n  gl_PointSize = 2. * size * pixelRatio;\\n  fragPointSize = size * pixelRatio;\\n\\n  vec2 pos = (position + translate) * scale\\n      + (positionFract + translateFract) * scale\\n      + (position + translate) * scaleFract\\n      + (positionFract + translateFract) * scaleFract;\\n\\n  gl_Position = vec4(pos * 2. - 1., 0, 1);\\n\\n  fragColor = color;\\n  fragBorderColor = borderColor;\\n  fragWidth = 1. / gl_PointSize;\\n\\n  fragBorderColorLevel = clamp(borderLevel - borderLevel * borderSize / size, 0., 1.);\\n  fragColorLevel = clamp(borderLevel + (1. - borderLevel) * borderSize / size, 0., 1.);\\n}\"]),this.drawMarker=t(s);var l=c({},o);l.frag=u([\"precision highp float;\\n#define GLSLIFY 1\\n\\nvarying vec4 fragColor, fragBorderColor;\\n\\nuniform float opacity;\\nvarying float fragBorderRadius, fragWidth;\\n\\nfloat smoothStep(float edge0, float edge1, float x) {\\n\\tfloat t;\\n\\tt = clamp((x - edge0) / (edge1 - edge0), 0.0, 1.0);\\n\\treturn t * t * (3.0 - 2.0 * t);\\n}\\n\\nvoid main() {\\n\\tfloat radius, alpha = 1.0, delta = fragWidth;\\n\\n\\tradius = length(2.0 * gl_PointCoord.xy - 1.0);\\n\\n\\tif (radius > 1.0 + delta) {\\n\\t\\tdiscard;\\n\\t}\\n\\n\\talpha -= smoothstep(1.0 - delta, 1.0 + delta, radius);\\n\\n\\tfloat borderRadius = fragBorderRadius;\\n\\tfloat ratio = smoothstep(borderRadius - delta, borderRadius + delta, radius);\\n\\tvec4 color = mix(fragColor, fragBorderColor, ratio);\\n\\tcolor.a *= alpha * opacity;\\n\\tgl_FragColor = color;\\n}\\n\"]),l.vert=u([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute float x, y, xFract, yFract;\\nattribute float size, borderSize;\\nattribute vec4 colorId, borderColorId;\\nattribute float isActive;\\n\\nuniform vec2 scale, scaleFract, translate, translateFract;\\nuniform float pixelRatio;\\nuniform sampler2D palette;\\nuniform vec2 paletteSize;\\n\\nconst float maxSize = 100.;\\n\\nvarying vec4 fragColor, fragBorderColor;\\nvarying float fragBorderRadius, fragWidth;\\n\\nbool isDirect = (paletteSize.x < 1.);\\n\\nvec4 getColor(vec4 id) {\\n  return isDirect ? id / 255. : texture2D(palette,\\n    vec2(\\n      (id.x + .5) / paletteSize.x,\\n      (id.y + .5) / paletteSize.y\\n    )\\n  );\\n}\\n\\nvoid main() {\\n  // ignore inactive points\\n  if (isActive == 0.) return;\\n\\n  vec2 position = vec2(x, y);\\n  vec2 positionFract = vec2(xFract, yFract);\\n\\n  vec4 color = getColor(colorId);\\n  vec4 borderColor = getColor(borderColorId);\\n\\n  float size = size * maxSize / 255.;\\n  float borderSize = borderSize * maxSize / 255.;\\n\\n  gl_PointSize = (size + borderSize) * pixelRatio;\\n\\n  vec2 pos = (position + translate) * scale\\n      + (positionFract + translateFract) * scale\\n      + (position + translate) * scaleFract\\n      + (positionFract + translateFract) * scaleFract;\\n\\n  gl_Position = vec4(pos * 2. - 1., 0, 1);\\n\\n  fragBorderRadius = 1. - 2. * borderSize / (size + borderSize);\\n  fragColor = color;\\n  fragBorderColor = borderColor.a == 0. || borderSize == 0. ? vec4(color.rgb, 0.) : borderColor;\\n  fragWidth = 1. / gl_PointSize;\\n}\\n\"]),d&&(l.frag=l.frag.replace(\"smoothstep\",\"smoothStep\"),s.frag=s.frag.replace(\"smoothstep\",\"smoothStep\")),this.drawCircle=t(l)}y.defaults={color:\"black\",borderColor:\"transparent\",borderSize:0,size:12,opacity:1,marker:void 0,viewport:null,range:null,pixelSize:null,count:0,offset:0,bounds:null,positions:[],snap:1e4},y.prototype.render=function(){return arguments.length&&this.update.apply(this,arguments),this.draw(),this},y.prototype.draw=function(){for(var t=this,e=arguments.length,r=new Array(e),n=0;n<e;n++)r[n]=arguments[n];var a=this.groups;if(1===r.length&&Array.isArray(r[0])&&(null===r[0][0]||Array.isArray(r[0][0]))&&(r=r[0]),this.regl._refresh(),r.length)for(var i=0;i<r.length;i++)this.drawItem(i,r[i]);else a.forEach(function(e,r){t.drawItem(r)});return this},y.prototype.drawItem=function(t,e){var r=this.groups,n=r[t];if(\"number\"==typeof e&&(t=e,n=r[e],e=null),n&&n.count&&n.opacity){n.activation[0]&&this.drawCircle(this.getMarkerDrawOptions(0,n,e));for(var i=[],o=1;o<n.activation.length;o++)n.activation[o]&&(!0===n.activation[o]||n.activation[o].data.length)&&i.push.apply(i,a(this.getMarkerDrawOptions(o,n,e)));i.length&&this.drawMarker(i)}},y.prototype.getMarkerDrawOptions=function(t,e,r){var a=e.range,i=e.tree,o=e.viewport,s=e.activation,l=e.selectionBuffer,u=e.count;this.regl;if(!i)return r?[c({},e,{markerTexture:this.markerTextures[t],activation:s[t],count:r.length,elements:r,offset:0})]:[c({},e,{markerTexture:this.markerTextures[t],activation:s[t],offset:0})];var h=[],f=i.range(a,{lod:!0,px:[(a[2]-a[0])/o.width,(a[3]-a[1])/o.height]});if(r){for(var p=s[t].data,d=new Uint8Array(u),g=0;g<r.length;g++){var v=r[g];d[v]=p?p[v]:1}l.subdata(d)}for(var m=f.length;m--;){var y=n(f[m],2),x=y[0],b=y[1];h.push(c({},e,{markerTexture:this.markerTextures[t],activation:r?l:s[t],offset:x,count:b-x}))}return h},y.prototype.update=function(){for(var t=this,e=arguments.length,r=new Array(e),n=0;n<e;n++)r[n]=arguments[n];if(r.length){1===r.length&&Array.isArray(r[0])&&(r=r[0]);var a=this.groups,i=this.gl,s=this.regl,u=this.maxSize,d=this.maxColors,m=this.palette;this.groups=a=r.map(function(e,r){var n=a[r];if(void 0===e)return n;null===e?e={positions:null}:\"function\"==typeof e?e={ondraw:e}:\"number\"==typeof e[0]&&(e={positions:e}),null===(e=h(e,{positions:\"positions data points\",snap:\"snap cluster lod tree\",size:\"sizes size radius\",borderSize:\"borderSizes borderSize border-size bordersize borderWidth borderWidths border-width borderwidth stroke-width strokeWidth strokewidth outline\",color:\"colors color fill fill-color fillColor\",borderColor:\"borderColors borderColor stroke stroke-color strokeColor\",marker:\"markers marker shape\",range:\"range dataBox databox\",viewport:\"viewport viewPort viewBox viewbox\",opacity:\"opacity alpha transparency\",bounds:\"bound bounds boundaries limits\",tooManyColors:\"tooManyColors palette paletteMode optimizePalette enablePalette\"})).positions&&(e.positions=[]),null!=e.tooManyColors&&(t.tooManyColors=e.tooManyColors),n||(a[r]=n={id:r,scale:null,translate:null,scaleFract:null,translateFract:null,activation:[],selectionBuffer:s.buffer({data:new Uint8Array(0),usage:\"stream\",type:\"uint8\"}),sizeBuffer:s.buffer({data:new Uint8Array(0),usage:\"dynamic\",type:\"uint8\"}),colorBuffer:s.buffer({data:new Uint8Array(0),usage:\"dynamic\",type:\"uint8\"}),positionBuffer:s.buffer({data:new Uint8Array(0),usage:\"dynamic\",type:\"float\"}),positionFractBuffer:s.buffer({data:new Uint8Array(0),usage:\"dynamic\",type:\"float\"})},e=c({},y.defaults,e)),!e.positions||\"marker\"in e||(e.marker=n.marker,delete n.marker),!e.marker||\"positions\"in e||(e.positions=n.positions,delete n.positions);var x=0,b=0;if(f(n,e,[{snap:!0,size:function(t,e){return null==t&&(t=y.defaults.size),x+=t&&t.length?1:0,t},borderSize:function(t,e){return null==t&&(t=y.defaults.borderSize),x+=t&&t.length?1:0,t},opacity:parseFloat,color:function(e,r){return null==e&&(e=y.defaults.color),e=t.updateColor(e),b++,e},borderColor:function(e,r){return null==e&&(e=y.defaults.borderColor),e=t.updateColor(e),b++,e},bounds:function(t,e,r){return\"range\"in r||(r.range=null),t},positions:function(t,e,r){var n=e.snap,a=e.positionBuffer,i=e.positionFractBuffer,c=e.selectionBuffer;if(t.x||t.y)return t.x.length?e.xAttr={buffer:s.buffer(t.x),offset:0,stride:4,count:t.x.length}:e.xAttr={buffer:t.x.buffer,offset:4*t.x.offset||0,stride:4*(t.x.stride||1),count:t.x.count},t.y.length?e.yAttr={buffer:s.buffer(t.y),offset:0,stride:4,count:t.y.length}:e.yAttr={buffer:t.y.buffer,offset:4*t.y.offset||0,stride:4*(t.y.stride||1),count:t.y.count},e.count=Math.max(e.xAttr.count,e.yAttr.count),t;t=p(t,\"float64\");var u=e.count=Math.floor(t.length/2),h=e.bounds=u?o(t,2):null;if(r.range||e.range||(delete e.range,r.range=h),r.marker||e.marker||(delete e.marker,r.marker=null),n&&(!0===n||u>n)?e.tree=l(t,{bounds:h}):n&&n.length&&(e.tree=n),e.tree){var f={primitive:\"points\",usage:\"static\",data:e.tree,type:\"uint32\"};e.elements?e.elements(f):e.elements=s.elements(f)}return a({data:g.float(t),usage:\"dynamic\"}),i({data:g.fract(t),usage:\"dynamic\"}),c({data:new Uint8Array(u),type:\"uint8\",usage:\"stream\"}),t}},{marker:function(e,r,n){var a=r.activation;if(a.forEach(function(t){return t&&t.destroy&&t.destroy()}),a.length=0,e&&\"number\"!=typeof e[0]){for(var i=[],o=0,l=Math.min(e.length,r.count);o<l;o++){var c=t.addMarker(e[o]);i[c]||(i[c]=new Uint8Array(r.count)),i[c][o]=1}for(var u=0;u<i.length;u++)if(i[u]){var h={data:i[u],type:\"uint8\",usage:\"static\"};a[u]?a[u](h):a[u]=s.buffer(h),a[u].data=i[u]}}else{a[t.addMarker(e)]=!0}return e},range:function(t,e,r){var n=e.bounds;if(n)return t||(t=n),e.scale=[1/(t[2]-t[0]),1/(t[3]-t[1])],e.translate=[-t[0],-t[1]],e.scaleFract=g.fract(e.scale),e.translateFract=g.fract(e.translate),t},viewport:function(t){return v(t||[i.drawingBufferWidth,i.drawingBufferHeight])}}]),x){var _=n,w=_.count,k=_.size,T=_.borderSize,A=_.sizeBuffer,M=new Uint8Array(2*w);if(k.length||T.length)for(var S=0;S<w;S++)M[2*S]=Math.round(255*(null==k[S]?k:k[S])/u),M[2*S+1]=Math.round(255*(null==T[S]?T:T[S])/u);A({data:M,usage:\"dynamic\"})}if(b){var E,C=n,L=C.count,P=C.color,O=C.borderColor,I=C.colorBuffer;if(t.tooManyColors){if(P.length||O.length){E=new Uint8Array(8*L);for(var z=0;z<L;z++){var D=P[z];E[8*z]=m[4*D],E[8*z+1]=m[4*D+1],E[8*z+2]=m[4*D+2],E[8*z+3]=m[4*D+3];var R=O[z];E[8*z+4]=m[4*R],E[8*z+5]=m[4*R+1],E[8*z+6]=m[4*R+2],E[8*z+7]=m[4*R+3]}}}else if(P.length||O.length){E=new Uint8Array(4*L+2);for(var F=0;F<L;F++)null!=P[F]&&(E[4*F]=P[F]%d,E[4*F+1]=Math.floor(P[F]/d)),null!=O[F]&&(E[4*F+2]=O[F]%d,E[4*F+3]=Math.floor(O[F]/d))}I({data:E||new Uint8Array(0),type:\"uint8\",usage:\"dynamic\"})}return n})}},y.prototype.addMarker=function(t){var e,r=this.markerTextures,n=this.regl,a=this.markerCache,i=null==t?0:a.indexOf(t);if(i>=0)return i;if(t instanceof Uint8Array||t instanceof Uint8ClampedArray)e=t;else{e=new Uint8Array(t.length);for(var o=0,s=t.length;o<s;o++)e[o]=255*t[o]}var l=Math.floor(Math.sqrt(e.length));return i=r.length,a.push(t),r.push(n.texture({channels:1,data:e,radius:l,mag:\"linear\",min:\"linear\"})),i},y.prototype.updateColor=function(t){var e=this.paletteIds,r=this.palette,n=this.maxColors;Array.isArray(t)||(t=[t]);var a=[];if(\"number\"==typeof t[0]){var o=[];if(Array.isArray(t))for(var l=0;l<t.length;l+=4)o.push(t.slice(l,l+4));else for(var c=0;c<t.length;c+=4)o.push(t.subarray(c,c+4));t=o}for(var u=0;u<t.length;u++){var h=t[u];h=i(h,\"uint8\");var f=s(h,!1);if(null==e[f]){var p=r.length;e[f]=Math.floor(p/4),r[p]=h[0],r[p+1]=h[1],r[p+2]=h[2],r[p+3]=h[3]}a[u]=e[f]}return!this.tooManyColors&&r.length>4*n&&(this.tooManyColors=!0),this.updatePalette(r),1===a.length?a[0]:a},y.prototype.updatePalette=function(t){if(!this.tooManyColors){var e=this.maxColors,r=this.paletteTexture,n=Math.ceil(.25*t.length/e);if(n>1)for(var a=.25*(t=t.slice()).length%e;a<n*e;a++)t.push(0,0,0,0);r.height<n&&r.resize(e,n),r.subimage({width:Math.min(.25*t.length,e),height:n,data:t},0,0)}},y.prototype.destroy=function(){return this.groups.forEach(function(t){t.sizeBuffer.destroy(),t.positionBuffer.destroy(),t.positionFractBuffer.destroy(),t.colorBuffer.destroy(),t.activation.forEach(function(t){return t&&t.destroy&&t.destroy()}),t.selectionBuffer.destroy(),t.elements&&t.elements.destroy()}),this.groups.length=0,this.paletteTexture.destroy(),this.markerTextures.forEach(function(t){return t&&t.destroy&&t.destroy()}),this};var x=t(\"object-assign\");e.exports=function(t,e){var r=new m(t,e),n=r.render.bind(r);return x(n,{render:n,update:r.update.bind(r),draw:r.draw.bind(r),destroy:r.destroy.bind(r),regl:r.regl,gl:r.gl,canvas:r.gl.canvas,groups:r.groups,markers:r.markerCache,palette:r.palette}),n}},{\"array-bounds\":66,\"color-id\":119,\"color-normalize\":121,\"flatten-vertex-data\":228,glslify:410,\"is-iexplorer\":420,\"object-assign\":455,\"parse-rect\":460,\"pick-by-alias\":466,\"point-cluster\":500,\"to-float32\":539,\"update-diff\":550}],499:[function(t,e,r){arguments[4][112][0].apply(r,arguments)},{dup:112}],500:[function(t,e,r){\"use strict\";e.exports=t(\"./quad\")},{\"./quad\":501}],501:[function(t,e,r){\"use strict\";var n=t(\"binary-search-bounds\"),a=t(\"clamp\"),i=t(\"parse-rect\"),o=t(\"array-bounds\"),s=t(\"pick-by-alias\"),l=t(\"defined\"),c=t(\"flatten-vertex-data\"),u=t(\"is-obj\"),h=t(\"dtype\"),f=t(\"math-log2\"),p=1073741824;function d(t,e){for(var r=e[0],n=e[1],i=1/(e[2]-r),o=1/(e[3]-n),s=new Array(t.length),l=0,c=t.length/2;l<c;l++)s[2*l]=a((t[2*l]-r)*i,0,1),s[2*l+1]=a((t[2*l+1]-n)*o,0,1);return s}e.exports=function(t,e){e||(e={}),t=c(t,\"float64\"),e=s(e,{bounds:\"range bounds dataBox databox\",maxDepth:\"depth maxDepth maxdepth level maxLevel maxlevel levels\",dtype:\"type dtype format out dst output destination\"});var r=l(e.maxDepth,255),a=l(e.bounds,o(t,2));a[0]===a[2]&&a[2]++,a[1]===a[3]&&a[3]++;var g,v=d(t,a),m=t.length>>>1;e.dtype||(e.dtype=\"array\"),\"string\"==typeof e.dtype?g=new(h(e.dtype))(m):e.dtype&&(g=e.dtype,Array.isArray(g)&&(g.length=m));for(var y=0;y<m;++y)g[y]=y;var x=[],b=[],_=[],w=[];!function t(e,n,a,i,o,s){if(!i.length)return null;var l=x[o]||(x[o]=[]);var c=_[o]||(_[o]=[]);var u=b[o]||(b[o]=[]);var h=l.length;o++;if(o>r||s>p){for(var f=0;f<i.length;f++)l.push(i[f]),c.push(s),u.push(null,null,null,null);return h}l.push(i[0]);c.push(s);if(i.length<=1)return u.push(null,null,null,null),h;var d=.5*a;var g=e+d,m=n+d;var y=[],w=[],k=[],T=[];for(var A=1,M=i.length;A<M;A++){var S=i[A],E=v[2*S],C=v[2*S+1];E<g?C<m?y.push(S):w.push(S):C<m?k.push(S):T.push(S)}s<<=2;u.push(t(e,n,d,y,o,s),t(e,m,d,w,o,s+1),t(g,n,d,k,o,s+2),t(g,m,d,T,o,s+3));return h}(0,0,1,g,0,1);for(var k=0,T=0;T<x.length;T++){var A=x[T];if(g.set)g.set(A,k);else for(var M=0,S=A.length;M<S;M++)g[M+k]=A[M];var E=k+x[T].length;w[T]=[k,E],k=E}return g.range=function(){var e,r=[],o=arguments.length;for(;o--;)r[o]=arguments[o];if(u(r[r.length-1])){var c=r.pop();r.length||null==c.x&&null==c.l&&null==c.left||(r=[c],e={}),e=s(c,{level:\"level maxLevel\",d:\"d diam diameter r radius px pxSize pixel pixelSize maxD size minSize\",lod:\"lod details ranges offsets\"})}else e={};r.length||(r=a);var h=i.apply(void 0,r),p=[Math.min(h.x,h.x+h.width),Math.min(h.y,h.y+h.height),Math.max(h.x,h.x+h.width),Math.max(h.y,h.y+h.height)],g=p[0],v=p[1],m=p[2],y=p[3],k=d([g,v,m,y],a),T=k[0],A=k[1],M=k[2],S=k[3],E=l(e.level,x.length);if(null!=e.d){var L;\"number\"==typeof e.d?L=[e.d,e.d]:e.d.length&&(L=e.d),E=Math.min(Math.max(Math.ceil(-f(Math.abs(L[0])/(a[2]-a[0]))),Math.ceil(-f(Math.abs(L[1])/(a[3]-a[1])))),E)}if(E=Math.min(E,x.length),e.lod)return function(t,e,r,a,i){for(var o=[],s=0;s<i;s++){var l=_[s],c=w[s][0],u=C(t,e,s),h=C(r,a,s),f=n.ge(l,u),p=n.gt(l,h,f,l.length-1);o[s]=[f+c,p+c]}return o}(T,A,M,S,E);var P=[];return function e(r,n,a,i,o,s){if(null!==o&&null!==s){var l=r+a,c=n+a;if(!(T>l||A>c||M<r||S<n||i>=E||o===s)){var u=x[i];void 0===s&&(s=u.length);for(var h=o;h<s;h++){var f=u[h],p=t[2*f],d=t[2*f+1];p>=g&&p<=m&&d>=v&&d<=y&&P.push(f)}var _=b[i],w=_[4*o+0],k=_[4*o+1],C=_[4*o+2],L=_[4*o+3],O=function(t,e){for(var r=null,n=0;null===r;)if(r=t[4*e+n],++n>t.length)return null;return r}(_,o+1),I=.5*a,z=i+1;e(r,n,I,z,w,k||C||L||O),e(r,n+I,I,z,k,C||L||O),e(r+I,n,I,z,C,L||O),e(r+I,n+I,I,z,L,O)}}}(0,0,1,0,0,1),P},g;function C(t,e,r){for(var n=1,a=.5,i=.5,o=.5,s=0;s<r;s++)n<<=2,n+=t<a?e<i?0:1:e<i?2:3,o*=.5,a+=t<a?-o:o,i+=e<i?-o:o;return n}}},{\"array-bounds\":66,\"binary-search-bounds\":499,clamp:116,defined:165,dtype:170,\"flatten-vertex-data\":228,\"is-obj\":422,\"math-log2\":433,\"parse-rect\":460,\"pick-by-alias\":466}],502:[function(t,e,r){\"use strict\";var n=t(\"regl-scatter2d\"),a=t(\"pick-by-alias\"),i=t(\"array-bounds\"),o=t(\"raf\"),s=t(\"array-range\"),l=t(\"parse-rect\"),c=t(\"flatten-vertex-data\");function u(t,e){if(!(this instanceof u))return new u(t,e);this.traces=[],this.passes={},this.regl=t,this.scatter=n(t),this.canvas=this.scatter.canvas}function h(t,e,r){return(null!=t.id?t.id:t)<<16|(255&e)<<8|255&r}function f(t,e,r){var n,a,i,o,s=t[e],l=t[r];return s.length>2?(s[0],s[2],n=s[1],a=s[3]):s.length?(n=s[0],a=s[1]):(s.x,n=s.y,s.x+s.width,a=s.y+s.height),l.length>2?(i=l[0],o=l[2],l[1],l[3]):l.length?(i=l[0],o=l[1]):(i=l.x,l.y,o=l.x+l.width,l.y+l.height),[i,n,o,a]}function p(t){if(\"number\"==typeof t)return[t,t,t,t];if(2===t.length)return[t[0],t[1],t[0],t[1]];var e=l(t);return[e.x,e.y,e.x+e.width,e.y+e.height]}e.exports=u,u.prototype.render=function(){for(var t,e=this,r=[],n=arguments.length;n--;)r[n]=arguments[n];return r.length&&(t=this).update.apply(t,r),this.regl.attributes.preserveDrawingBuffer?this.draw():(this.dirty?null==this.planned&&(this.planned=o(function(){e.draw(),e.dirty=!0,e.planned=null})):(this.draw(),this.dirty=!0,o(function(){e.dirty=!1})),this)},u.prototype.update=function(){for(var t,e=[],r=arguments.length;r--;)e[r]=arguments[r];if(e.length){for(var n=0;n<e.length;n++)this.updateItem(n,e[n]);this.traces=this.traces.filter(Boolean);for(var a=[],i=0,o=0;o<this.traces.length;o++){for(var s=this.traces[o],l=this.traces[o].passes,c=0;c<l.length;c++)a.push(this.passes[l[c]]);s.passOffset=i,i+=s.passes.length}return(t=this.scatter).update.apply(t,a),this}},u.prototype.updateItem=function(t,e){var r=this.regl;if(null===e)return this.traces[t]=null,this;if(!e)return this;var n,o=a(e,{data:\"data items columns rows values dimensions samples x\",snap:\"snap cluster\",size:\"sizes size radius\",color:\"colors color fill fill-color fillColor\",opacity:\"opacity alpha transparency opaque\",borderSize:\"borderSizes borderSize border-size bordersize borderWidth borderWidths border-width borderwidth stroke-width strokeWidth strokewidth outline\",borderColor:\"borderColors borderColor bordercolor stroke stroke-color strokeColor\",marker:\"markers marker shape\",range:\"range ranges databox dataBox\",viewport:\"viewport viewBox viewbox\",domain:\"domain domains area areas\",padding:\"pad padding paddings pads margin margins\",transpose:\"transpose transposed\",diagonal:\"diagonal diag showDiagonal\",upper:\"upper up top upperhalf upperHalf showupperhalf showUpper showUpperHalf\",lower:\"lower low bottom lowerhalf lowerHalf showlowerhalf showLowerHalf showLower\"}),s=this.traces[t]||(this.traces[t]={id:t,buffer:r.buffer({usage:\"dynamic\",type:\"float\",data:new Uint8Array}),color:\"black\",marker:null,size:12,borderColor:\"transparent\",borderSize:1,viewport:l([r._gl.drawingBufferWidth,r._gl.drawingBufferHeight]),padding:[0,0,0,0],opacity:1,diagonal:!0,upper:!0,lower:!0});if(null!=o.color&&(s.color=o.color),null!=o.size&&(s.size=o.size),null!=o.marker&&(s.marker=o.marker),null!=o.borderColor&&(s.borderColor=o.borderColor),null!=o.borderSize&&(s.borderSize=o.borderSize),null!=o.opacity&&(s.opacity=o.opacity),o.viewport&&(s.viewport=l(o.viewport)),null!=o.diagonal&&(s.diagonal=o.diagonal),null!=o.upper&&(s.upper=o.upper),null!=o.lower&&(s.lower=o.lower),o.data){s.buffer(c(o.data)),s.columns=o.data.length,s.count=o.data[0].length,s.bounds=[];for(var u=0;u<s.columns;u++)s.bounds[u]=i(o.data[u],1)}o.range&&(s.range=o.range,n=s.range&&\"number\"!=typeof s.range[0]),o.domain&&(s.domain=o.domain);var d=!1;null!=o.padding&&(Array.isArray(o.padding)&&o.padding.length===s.columns&&\"number\"==typeof o.padding[o.padding.length-1]?(s.padding=o.padding.map(p),d=!0):s.padding=p(o.padding));var g=s.columns,v=s.count,m=s.viewport.width,y=s.viewport.height,x=s.viewport.x,b=s.viewport.y,_=m/g,w=y/g;s.passes=[];for(var k=0;k<g;k++)for(var T=0;T<g;T++)if((s.diagonal||T!==k)&&(s.upper||!(k>T))&&(s.lower||!(k<T))){var A=h(s.id,k,T),M=this.passes[A]||(this.passes[A]={});if(o.data&&(o.transpose?M.positions={x:{buffer:s.buffer,offset:T,count:v,stride:g},y:{buffer:s.buffer,offset:k,count:v,stride:g}}:M.positions={x:{buffer:s.buffer,offset:T*v,count:v},y:{buffer:s.buffer,offset:k*v,count:v}},M.bounds=f(s.bounds,k,T)),o.domain||o.viewport||o.data){var S=d?f(s.padding,k,T):s.padding;if(s.domain){var E=f(s.domain,k,T),C=E[0],L=E[1],P=E[2],O=E[3];M.viewport=[x+C*m+S[0],b+L*y+S[1],x+P*m-S[2],b+O*y-S[3]]}else M.viewport=[x+T*_+_*S[0],b+k*w+w*S[1],x+(T+1)*_-_*S[2],b+(k+1)*w-w*S[3]]}o.color&&(M.color=s.color),o.size&&(M.size=s.size),o.marker&&(M.marker=s.marker),o.borderSize&&(M.borderSize=s.borderSize),o.borderColor&&(M.borderColor=s.borderColor),o.opacity&&(M.opacity=s.opacity),o.range&&(M.range=n?f(s.range,k,T):s.range||M.bounds),s.passes.push(A)}return this},u.prototype.draw=function(){for(var t,e=[],r=arguments.length;r--;)e[r]=arguments[r];if(e.length){for(var n=[],a=0;a<e.length;a++)if(\"number\"==typeof e[a]){var i=this.traces[e[a]],o=i.passes,l=i.passOffset;n.push.apply(n,s(l,l+o.length))}else if(e[a].length){var c=e[a],u=this.traces[a],h=u.passes,f=u.passOffset;h=h.map(function(t,e){n[f+e]=c})}(t=this.scatter).draw.apply(t,n)}else this.scatter.draw();return this},u.prototype.destroy=function(){return this.traces.forEach(function(t){t.buffer&&t.buffer.destroy&&t.buffer.destroy()}),this.traces=null,this.passes=null,this.scatter.destroy(),this}},{\"array-bounds\":66,\"array-range\":68,\"flatten-vertex-data\":228,\"parse-rect\":460,\"pick-by-alias\":466,raf:485,\"regl-scatter2d\":498}],503:[function(t,e,r){var n,a;n=this,a=function(){function t(t,e){this.id=V++,this.type=t,this.data=e}function e(t){return\"[\"+function t(e){if(0===e.length)return[];var r=e.charAt(0),n=e.charAt(e.length-1);if(1<e.length&&r===n&&('\"'===r||\"'\"===r))return['\"'+e.substr(1,e.length-2).replace(/\\\\/g,\"\\\\\\\\\").replace(/\"/g,'\\\\\"')+'\"'];if(r=/\\[(false|true|null|\\d+|'[^']*'|\"[^\"]*\")\\]/.exec(e))return t(e.substr(0,r.index)).concat(t(r[1])).concat(t(e.substr(r.index+r[0].length)));if(1===(r=e.split(\".\")).length)return['\"'+e.replace(/\\\\/g,\"\\\\\\\\\").replace(/\"/g,'\\\\\"')+'\"'];for(e=[],n=0;n<r.length;++n)e=e.concat(t(r[n]));return e}(t).join(\"][\")+\"]\"}function r(t){return\"string\"==typeof t?t.split():t}function n(t){return\"string\"==typeof t?document.querySelector(t):t}function a(t){var e,a,i,o,s=t||{};t={};var l=[],c=[],u=\"undefined\"==typeof window?1:window.devicePixelRatio,h=!1,f=function(t){},p=function(){};if(\"string\"==typeof s?e=document.querySelector(s):\"object\"==typeof s&&(\"string\"==typeof s.nodeName&&\"function\"==typeof s.appendChild&&\"function\"==typeof s.getBoundingClientRect?e=s:\"function\"==typeof s.drawArrays||\"function\"==typeof s.drawElements?i=(o=s).canvas:(\"gl\"in s?o=s.gl:\"canvas\"in s?i=n(s.canvas):\"container\"in s&&(a=n(s.container)),\"attributes\"in s&&(t=s.attributes),\"extensions\"in s&&(l=r(s.extensions)),\"optionalExtensions\"in s&&(c=r(s.optionalExtensions)),\"onDone\"in s&&(f=s.onDone),\"profile\"in s&&(h=!!s.profile),\"pixelRatio\"in s&&(u=+s.pixelRatio))),e&&(\"canvas\"===e.nodeName.toLowerCase()?i=e:a=e),!o){if(!i){if(!(e=function(t,e,r){function n(){var e=window.innerWidth,n=window.innerHeight;t!==document.body&&(e=(n=t.getBoundingClientRect()).right-n.left,n=n.bottom-n.top),a.width=r*e,a.height=r*n,j(a.style,{width:e+\"px\",height:n+\"px\"})}var a=document.createElement(\"canvas\");return j(a.style,{border:0,margin:0,padding:0,top:0,left:0}),t.appendChild(a),t===document.body&&(a.style.position=\"absolute\",j(t.style,{margin:0,padding:0})),window.addEventListener(\"resize\",n,!1),n(),{canvas:a,onDestroy:function(){window.removeEventListener(\"resize\",n),t.removeChild(a)}}}(a||document.body,0,u)))return null;i=e.canvas,p=e.onDestroy}o=function(t,e){function r(r){try{return t.getContext(r,e)}catch(t){return null}}return r(\"webgl\")||r(\"experimental-webgl\")||r(\"webgl-experimental\")}(i,t)}return o?{gl:o,canvas:i,container:a,extensions:l,optionalExtensions:c,pixelRatio:u,profile:h,onDone:f,onDestroy:p}:(p(),f(\"webgl not supported, try upgrading your browser or graphics drivers http://get.webgl.org\"),null)}function i(t,e){for(var r=Array(t),n=0;n<t;++n)r[n]=e(n);return r}function o(t){var e,r;return e=(65535<t)<<4,e|=r=(255<(t>>>=e))<<3,(e|=r=(15<(t>>>=r))<<2)|(r=(3<(t>>>=r))<<1)|t>>>r>>1}function s(){function t(t){t:{for(var e=16;268435456>=e;e*=16)if(t<=e){t=e;break t}t=0}return 0<(e=r[o(t)>>2]).length?e.pop():new ArrayBuffer(t)}function e(t){r[o(t.byteLength)>>2].push(t)}var r=i(8,function(){return[]});return{alloc:t,free:e,allocType:function(e,r){var n=null;switch(e){case 5120:n=new Int8Array(t(r),0,r);break;case 5121:n=new Uint8Array(t(r),0,r);break;case 5122:n=new Int16Array(t(2*r),0,r);break;case 5123:n=new Uint16Array(t(2*r),0,r);break;case 5124:n=new Int32Array(t(4*r),0,r);break;case 5125:n=new Uint32Array(t(4*r),0,r);break;case 5126:n=new Float32Array(t(4*r),0,r);break;default:return null}return n.length!==r?n.subarray(0,r):n},freeType:function(t){e(t.buffer)}}}function l(t){return!!t&&\"object\"==typeof t&&Array.isArray(t.shape)&&Array.isArray(t.stride)&&\"number\"==typeof t.offset&&t.shape.length===t.stride.length&&(Array.isArray(t.data)||W(t.data))}function c(t,e,r,n,a,i){for(var o=0;o<e;++o)for(var s=t[o],l=0;l<r;++l)for(var c=s[l],u=0;u<n;++u)a[i++]=c[u]}function u(t){return 0|J[Object.prototype.toString.call(t)]}function h(t,e){for(var r=0;r<e.length;++r)t[r]=e[r]}function f(t,e,r,n,a,i,o){for(var s=0,l=0;l<r;++l)for(var c=0;c<n;++c)t[s++]=e[a*l+i*c+o]}function p(t,e,r,n){function a(e){this.id=c++,this.buffer=t.createBuffer(),this.type=e,this.usage=35044,this.byteLength=0,this.dimension=1,this.dtype=5121,this.persistentData=null,r.profile&&(this.stats={size:0})}function i(e,r,n){e.byteLength=r.byteLength,t.bufferData(e.type,r,n)}function o(t,e,r,n,a,o){if(t.usage=r,Array.isArray(e)){if(t.dtype=n||5126,0<e.length)if(Array.isArray(e[0])){a=tt(e);for(var s=n=1;s<a.length;++s)n*=a[s];t.dimension=n,i(t,e=$(e,a,t.dtype),r),o?t.persistentData=e:G.freeType(e)}else\"number\"==typeof e[0]?(t.dimension=a,h(a=G.allocType(t.dtype,e.length),e),i(t,a,r),o?t.persistentData=a:G.freeType(a)):W(e[0])&&(t.dimension=e[0].length,t.dtype=n||u(e[0])||5126,i(t,e=$(e,[e.length,e[0].length],t.dtype),r),o?t.persistentData=e:G.freeType(e))}else if(W(e))t.dtype=n||u(e),t.dimension=a,i(t,e,r),o&&(t.persistentData=new Uint8Array(new Uint8Array(e.buffer)));else if(l(e)){a=e.shape;var c=e.stride,p=(s=e.offset,0),d=0,g=0,v=0;1===a.length?(p=a[0],d=1,g=c[0],v=0):2===a.length&&(p=a[0],d=a[1],g=c[0],v=c[1]),t.dtype=n||u(e.data)||5126,t.dimension=d,f(a=G.allocType(t.dtype,p*d),e.data,p,d,g,v,s),i(t,a,r),o?t.persistentData=a:G.freeType(a)}}function s(r){e.bufferCount--;for(var a=0;a<n.state.length;++a){var i=n.state[a];i.buffer===r&&(t.disableVertexAttribArray(a),i.buffer=null)}t.deleteBuffer(r.buffer),r.buffer=null,delete p[r.id]}var c=0,p={};a.prototype.bind=function(){t.bindBuffer(this.type,this.buffer)},a.prototype.destroy=function(){s(this)};var d=[];return r.profile&&(e.getTotalBufferSize=function(){var t=0;return Object.keys(p).forEach(function(e){t+=p[e].stats.size}),t}),{create:function(n,i,c,d){function g(e){var n=35044,a=null,i=0,s=0,c=1;return Array.isArray(e)||W(e)||l(e)?a=e:\"number\"==typeof e?i=0|e:e&&(\"data\"in e&&(a=e.data),\"usage\"in e&&(n=Q[e.usage]),\"type\"in e&&(s=K[e.type]),\"dimension\"in e&&(c=0|e.dimension),\"length\"in e&&(i=0|e.length)),v.bind(),a?o(v,a,n,s,c,d):(i&&t.bufferData(v.type,i,n),v.dtype=s||5121,v.usage=n,v.dimension=c,v.byteLength=i),r.profile&&(v.stats.size=v.byteLength*et[v.dtype]),g}e.bufferCount++;var v=new a(i);return p[v.id]=v,c||g(n),g._reglType=\"buffer\",g._buffer=v,g.subdata=function(e,r){var n,a=0|(r||0);if(v.bind(),W(e))t.bufferSubData(v.type,a,e);else if(Array.isArray(e)){if(0<e.length)if(\"number\"==typeof e[0]){var i=G.allocType(v.dtype,e.length);h(i,e),t.bufferSubData(v.type,a,i),G.freeType(i)}else(Array.isArray(e[0])||W(e[0]))&&(n=tt(e),i=$(e,n,v.dtype),t.bufferSubData(v.type,a,i),G.freeType(i))}else if(l(e)){n=e.shape;var o=e.stride,s=i=0,c=0,p=0;1===n.length?(i=n[0],s=1,c=o[0],p=0):2===n.length&&(i=n[0],s=n[1],c=o[0],p=o[1]),n=Array.isArray(e.data)?v.dtype:u(e.data),f(n=G.allocType(n,i*s),e.data,i,s,c,p,e.offset),t.bufferSubData(v.type,a,n),G.freeType(n)}return g},r.profile&&(g.stats=v.stats),g.destroy=function(){s(v)},g},createStream:function(t,e){var r=d.pop();return r||(r=new a(t)),r.bind(),o(r,e,35040,0,1,!1),r},destroyStream:function(t){d.push(t)},clear:function(){X(p).forEach(s),d.forEach(s)},getBuffer:function(t){return t&&t._buffer instanceof a?t._buffer:null},restore:function(){X(p).forEach(function(e){e.buffer=t.createBuffer(),t.bindBuffer(e.type,e.buffer),t.bufferData(e.type,e.persistentData||e.byteLength,e.usage)})},_initBuffer:o}}function d(t,e,r,n){function a(t){this.id=c++,s[this.id]=this,this.buffer=t,this.primType=4,this.type=this.vertCount=0}function i(n,a,i,o,s,c,u){if(n.buffer.bind(),a){var h=u;u||W(a)&&(!l(a)||W(a.data))||(h=e.oes_element_index_uint?5125:5123),r._initBuffer(n.buffer,a,i,h,3)}else t.bufferData(34963,c,i),n.buffer.dtype=h||5121,n.buffer.usage=i,n.buffer.dimension=3,n.buffer.byteLength=c;if(h=u,!u){switch(n.buffer.dtype){case 5121:case 5120:h=5121;break;case 5123:case 5122:h=5123;break;case 5125:case 5124:h=5125}n.buffer.dtype=h}n.type=h,0>(a=s)&&(a=n.buffer.byteLength,5123===h?a>>=1:5125===h&&(a>>=2)),n.vertCount=a,a=o,0>o&&(a=4,1===(o=n.buffer.dimension)&&(a=0),2===o&&(a=1),3===o&&(a=4)),n.primType=a}function o(t){n.elementsCount--,delete s[t.id],t.buffer.destroy(),t.buffer=null}var s={},c=0,u={uint8:5121,uint16:5123};e.oes_element_index_uint&&(u.uint32=5125),a.prototype.bind=function(){this.buffer.bind()};var h=[];return{create:function(t,e){function s(t){if(t)if(\"number\"==typeof t)c(t),h.primType=4,h.vertCount=0|t,h.type=5121;else{var e=null,r=35044,n=-1,a=-1,o=0,f=0;Array.isArray(t)||W(t)||l(t)?e=t:(\"data\"in t&&(e=t.data),\"usage\"in t&&(r=Q[t.usage]),\"primitive\"in t&&(n=rt[t.primitive]),\"count\"in t&&(a=0|t.count),\"type\"in t&&(f=u[t.type]),\"length\"in t?o=0|t.length:(o=a,5123===f||5122===f?o*=2:5125!==f&&5124!==f||(o*=4))),i(h,e,r,n,a,o,f)}else c(),h.primType=4,h.vertCount=0,h.type=5121;return s}var c=r.create(null,34963,!0),h=new a(c._buffer);return n.elementsCount++,s(t),s._reglType=\"elements\",s._elements=h,s.subdata=function(t,e){return c.subdata(t,e),s},s.destroy=function(){o(h)},s},createStream:function(t){var e=h.pop();return e||(e=new a(r.create(null,34963,!0,!1)._buffer)),i(e,t,35040,-1,-1,0,0),e},destroyStream:function(t){h.push(t)},getElements:function(t){return\"function\"==typeof t&&t._elements instanceof a?t._elements:null},clear:function(){X(s).forEach(o)}}}function g(t){for(var e=G.allocType(5123,t.length),r=0;r<t.length;++r)if(isNaN(t[r]))e[r]=65535;else if(1/0===t[r])e[r]=31744;else if(-1/0===t[r])e[r]=64512;else{nt[0]=t[r];var n=(i=at[0])>>>31<<15,a=(i<<1>>>24)-127,i=i>>13&1023;e[r]=-24>a?n:-14>a?n+(i+1024>>-14-a):15<a?n+31744:n+(a+15<<10)+i}return e}function v(t){return Array.isArray(t)||W(t)}function m(t){return\"[object \"+t+\"]\"}function y(t){return Array.isArray(t)&&(0===t.length||\"number\"==typeof t[0])}function x(t){return!(!Array.isArray(t)||0===t.length||!v(t[0]))}function b(t){return Object.prototype.toString.call(t)}function _(t){if(!t)return!1;var e=b(t);return 0<=pt.indexOf(e)||(y(t)||x(t)||l(t))}function w(t,e){36193===t.type?(t.data=g(e),G.freeType(e)):t.data=e}function k(t,e,r,n,a,i){if(t=\"undefined\"!=typeof gt[t]?gt[t]:st[t]*dt[e],i&&(t*=6),a){for(n=0;1<=r;)n+=t*r*r,r/=2;return n}return t*r*n}function T(t,e,r,n,a,i,o){function s(){this.format=this.internalformat=6408,this.type=5121,this.flipY=this.premultiplyAlpha=this.compressed=!1,this.unpackAlignment=1,this.colorSpace=37444,this.channels=this.height=this.width=0}function c(t,e){t.internalformat=e.internalformat,t.format=e.format,t.type=e.type,t.compressed=e.compressed,t.premultiplyAlpha=e.premultiplyAlpha,t.flipY=e.flipY,t.unpackAlignment=e.unpackAlignment,t.colorSpace=e.colorSpace,t.width=e.width,t.height=e.height,t.channels=e.channels}function u(t,e){if(\"object\"==typeof e&&e){\"premultiplyAlpha\"in e&&(t.premultiplyAlpha=e.premultiplyAlpha),\"flipY\"in e&&(t.flipY=e.flipY),\"alignment\"in e&&(t.unpackAlignment=e.alignment),\"colorSpace\"in e&&(t.colorSpace=q[e.colorSpace]),\"type\"in e&&(t.type=H[e.type]);var r=t.width,n=t.height,a=t.channels,i=!1;\"shape\"in e?(r=e.shape[0],n=e.shape[1],3===e.shape.length&&(a=e.shape[2],i=!0)):(\"radius\"in e&&(r=n=e.radius),\"width\"in e&&(r=e.width),\"height\"in e&&(n=e.height),\"channels\"in e&&(a=e.channels,i=!0)),t.width=0|r,t.height=0|n,t.channels=0|a,r=!1,\"format\"in e&&(r=e.format,n=t.internalformat=Y[r],t.format=pt[n],r in H&&!(\"type\"in e)&&(t.type=H[r]),r in K&&(t.compressed=!0),r=!0),!i&&r?t.channels=st[t.format]:i&&!r&&t.channels!==ot[t.format]&&(t.format=t.internalformat=ot[t.channels])}}function h(e){t.pixelStorei(37440,e.flipY),t.pixelStorei(37441,e.premultiplyAlpha),t.pixelStorei(37443,e.colorSpace),t.pixelStorei(3317,e.unpackAlignment)}function f(){s.call(this),this.yOffset=this.xOffset=0,this.data=null,this.needsFree=!1,this.element=null,this.needsCopy=!1}function p(t,e){var r=null;if(_(e)?r=e:e&&(u(t,e),\"x\"in e&&(t.xOffset=0|e.x),\"y\"in e&&(t.yOffset=0|e.y),_(e.data)&&(r=e.data)),e.copy){var n=a.viewportWidth,i=a.viewportHeight;t.width=t.width||n-t.xOffset,t.height=t.height||i-t.yOffset,t.needsCopy=!0}else if(r){if(W(r))t.channels=t.channels||4,t.data=r,\"type\"in e||5121!==t.type||(t.type=0|J[Object.prototype.toString.call(r)]);else if(y(r)){switch(t.channels=t.channels||4,i=(n=r).length,t.type){case 5121:case 5123:case 5125:case 5126:(i=G.allocType(t.type,i)).set(n),t.data=i;break;case 36193:t.data=g(n)}t.alignment=1,t.needsFree=!0}else if(l(r)){n=r.data,Array.isArray(n)||5121!==t.type||(t.type=0|J[Object.prototype.toString.call(n)]);i=r.shape;var o,s,c,h,f=r.stride;3===i.length?(c=i[2],h=f[2]):h=c=1,o=i[0],s=i[1],i=f[0],f=f[1],t.alignment=1,t.width=o,t.height=s,t.channels=c,t.format=t.internalformat=ot[c],t.needsFree=!0,o=h,r=r.offset,c=t.width,h=t.height,s=t.channels;for(var p=G.allocType(36193===t.type?5126:t.type,c*h*s),d=0,m=0;m<h;++m)for(var k=0;k<c;++k)for(var T=0;T<s;++T)p[d++]=n[i*k+f*m+o*T+r];w(t,p)}else if(b(r)===lt||b(r)===ct)b(r)===lt?t.element=r:t.element=r.canvas,t.width=t.element.width,t.height=t.element.height,t.channels=4;else if(b(r)===ut)t.element=r,t.width=r.width,t.height=r.height,t.channels=4;else if(b(r)===ht)t.element=r,t.width=r.naturalWidth,t.height=r.naturalHeight,t.channels=4;else if(b(r)===ft)t.element=r,t.width=r.videoWidth,t.height=r.videoHeight,t.channels=4;else if(x(r)){for(n=t.width||r[0].length,i=t.height||r.length,f=t.channels,f=v(r[0][0])?f||r[0][0].length:f||1,o=Z.shape(r),c=1,h=0;h<o.length;++h)c*=o[h];c=G.allocType(36193===t.type?5126:t.type,c),Z.flatten(r,o,\"\",c),w(t,c),t.alignment=1,t.width=n,t.height=i,t.channels=f,t.format=t.internalformat=ot[f],t.needsFree=!0}}else t.width=t.width||1,t.height=t.height||1,t.channels=t.channels||4}function d(e,r,a,i,o){var s=e.element,l=e.data,c=e.internalformat,u=e.format,f=e.type,p=e.width,d=e.height;h(e),s?t.texSubImage2D(r,o,a,i,u,f,s):e.compressed?t.compressedTexSubImage2D(r,o,a,i,c,p,d,l):e.needsCopy?(n(),t.copyTexSubImage2D(r,o,a,i,e.xOffset,e.yOffset,p,d)):t.texSubImage2D(r,o,a,i,p,d,u,f,l)}function m(){return dt.pop()||new f}function T(t){t.needsFree&&G.freeType(t.data),f.call(t),dt.push(t)}function A(){s.call(this),this.genMipmaps=!1,this.mipmapHint=4352,this.mipmask=0,this.images=Array(16)}function M(t,e,r){var n=t.images[0]=m();t.mipmask=1,n.width=t.width=e,n.height=t.height=r,n.channels=t.channels=4}function S(t,e){var r=null;if(_(e))c(r=t.images[0]=m(),t),p(r,e),t.mipmask=1;else if(u(t,e),Array.isArray(e.mipmap))for(var n=e.mipmap,a=0;a<n.length;++a)c(r=t.images[a]=m(),t),r.width>>=a,r.height>>=a,p(r,n[a]),t.mipmask|=1<<a;else c(r=t.images[0]=m(),t),p(r,e),t.mipmask=1;c(t,t.images[0])}function E(e,r){for(var a=e.images,i=0;i<a.length&&a[i];++i){var o=a[i],s=r,l=i,c=o.element,u=o.data,f=o.internalformat,p=o.format,d=o.type,g=o.width,v=o.height,m=o.channels;h(o),c?t.texImage2D(s,l,p,p,d,c):o.compressed?t.compressedTexImage2D(s,l,f,g,v,0,u):o.needsCopy?(n(),t.copyTexImage2D(s,l,p,o.xOffset,o.yOffset,g,v,0)):((o=!u)&&(u=G.zero.allocType(d,g*v*m)),t.texImage2D(s,l,p,g,v,0,p,d,u),o&&u&&G.zero.freeType(u))}}function C(){var t=gt.pop()||new A;s.call(t);for(var e=t.mipmask=0;16>e;++e)t.images[e]=null;return t}function L(t){for(var e=t.images,r=0;r<e.length;++r)e[r]&&T(e[r]),e[r]=null;gt.push(t)}function P(){this.magFilter=this.minFilter=9728,this.wrapT=this.wrapS=33071,this.anisotropic=1,this.genMipmaps=!1,this.mipmapHint=4352}function O(t,e){\"min\"in e&&(t.minFilter=U[e.min],0<=it.indexOf(t.minFilter)&&!(\"faces\"in e)&&(t.genMipmaps=!0)),\"mag\"in e&&(t.magFilter=V[e.mag]);var r=t.wrapS,n=t.wrapT;if(\"wrap\"in e){var a=e.wrap;\"string\"==typeof a?r=n=N[a]:Array.isArray(a)&&(r=N[a[0]],n=N[a[1]])}else\"wrapS\"in e&&(r=N[e.wrapS]),\"wrapT\"in e&&(n=N[e.wrapT]);if(t.wrapS=r,t.wrapT=n,\"anisotropic\"in e&&(t.anisotropic=e.anisotropic),\"mipmap\"in e){switch(r=!1,typeof e.mipmap){case\"string\":t.mipmapHint=B[e.mipmap],r=t.genMipmaps=!0;break;case\"boolean\":r=t.genMipmaps=e.mipmap;break;case\"object\":t.genMipmaps=!1,r=!0}!r||\"min\"in e||(t.minFilter=9984)}}function I(r,n){t.texParameteri(n,10241,r.minFilter),t.texParameteri(n,10240,r.magFilter),t.texParameteri(n,10242,r.wrapS),t.texParameteri(n,10243,r.wrapT),e.ext_texture_filter_anisotropic&&t.texParameteri(n,34046,r.anisotropic),r.genMipmaps&&(t.hint(33170,r.mipmapHint),t.generateMipmap(n))}function z(e){s.call(this),this.mipmask=0,this.internalformat=6408,this.id=vt++,this.refCount=1,this.target=e,this.texture=t.createTexture(),this.unit=-1,this.bindCount=0,this.texInfo=new P,o.profile&&(this.stats={size:0})}function D(e){t.activeTexture(33984),t.bindTexture(e.target,e.texture)}function R(){var e=xt[0];e?t.bindTexture(e.target,e.texture):t.bindTexture(3553,null)}function F(e){var r=e.texture,n=e.unit,a=e.target;0<=n&&(t.activeTexture(33984+n),t.bindTexture(a,null),xt[n]=null),t.deleteTexture(r),e.texture=null,e.params=null,e.pixels=null,e.refCount=0,delete mt[e.id],i.textureCount--}var B={\"don't care\":4352,\"dont care\":4352,nice:4354,fast:4353},N={repeat:10497,clamp:33071,mirror:33648},V={nearest:9728,linear:9729},U=j({mipmap:9987,\"nearest mipmap nearest\":9984,\"linear mipmap nearest\":9985,\"nearest mipmap linear\":9986,\"linear mipmap linear\":9987},V),q={none:0,browser:37444},H={uint8:5121,rgba4:32819,rgb565:33635,\"rgb5 a1\":32820},Y={alpha:6406,luminance:6409,\"luminance alpha\":6410,rgb:6407,rgba:6408,rgba4:32854,\"rgb5 a1\":32855,rgb565:36194},K={};e.ext_srgb&&(Y.srgb=35904,Y.srgba=35906),e.oes_texture_float&&(H.float32=H.float=5126),e.oes_texture_half_float&&(H.float16=H[\"half float\"]=36193),e.webgl_depth_texture&&(j(Y,{depth:6402,\"depth stencil\":34041}),j(H,{uint16:5123,uint32:5125,\"depth stencil\":34042})),e.webgl_compressed_texture_s3tc&&j(K,{\"rgb s3tc dxt1\":33776,\"rgba s3tc dxt1\":33777,\"rgba s3tc dxt3\":33778,\"rgba s3tc dxt5\":33779}),e.webgl_compressed_texture_atc&&j(K,{\"rgb atc\":35986,\"rgba atc explicit alpha\":35987,\"rgba atc interpolated alpha\":34798}),e.webgl_compressed_texture_pvrtc&&j(K,{\"rgb pvrtc 4bppv1\":35840,\"rgb pvrtc 2bppv1\":35841,\"rgba pvrtc 4bppv1\":35842,\"rgba pvrtc 2bppv1\":35843}),e.webgl_compressed_texture_etc1&&(K[\"rgb etc1\"]=36196);var Q=Array.prototype.slice.call(t.getParameter(34467));Object.keys(K).forEach(function(t){var e=K[t];0<=Q.indexOf(e)&&(Y[t]=e)});var $=Object.keys(Y);r.textureFormats=$;var tt=[];Object.keys(Y).forEach(function(t){tt[Y[t]]=t});var et=[];Object.keys(H).forEach(function(t){et[H[t]]=t});var rt=[];Object.keys(V).forEach(function(t){rt[V[t]]=t});var nt=[];Object.keys(U).forEach(function(t){nt[U[t]]=t});var at=[];Object.keys(N).forEach(function(t){at[N[t]]=t});var pt=$.reduce(function(t,e){var r=Y[e];return 6409===r||6406===r||6409===r||6410===r||6402===r||34041===r?t[r]=r:32855===r||0<=e.indexOf(\"rgba\")?t[r]=6408:t[r]=6407,t},{}),dt=[],gt=[],vt=0,mt={},yt=r.maxTextureUnits,xt=Array(yt).map(function(){return null});return j(z.prototype,{bind:function(){this.bindCount+=1;var e=this.unit;if(0>e){for(var r=0;r<yt;++r){var n=xt[r];if(n){if(0<n.bindCount)continue;n.unit=-1}xt[r]=this,e=r;break}o.profile&&i.maxTextureUnits<e+1&&(i.maxTextureUnits=e+1),this.unit=e,t.activeTexture(33984+e),t.bindTexture(this.target,this.texture)}return e},unbind:function(){--this.bindCount},decRef:function(){0>=--this.refCount&&F(this)}}),o.profile&&(i.getTotalTextureSize=function(){var t=0;return Object.keys(mt).forEach(function(e){t+=mt[e].stats.size}),t}),{create2D:function(e,r){function n(t,e){var r=a.texInfo;P.call(r);var i=C();return\"number\"==typeof t?M(i,0|t,\"number\"==typeof e?0|e:0|t):t?(O(r,t),S(i,t)):M(i,1,1),r.genMipmaps&&(i.mipmask=(i.width<<1)-1),a.mipmask=i.mipmask,c(a,i),a.internalformat=i.internalformat,n.width=i.width,n.height=i.height,D(a),E(i,3553),I(r,3553),R(),L(i),o.profile&&(a.stats.size=k(a.internalformat,a.type,i.width,i.height,r.genMipmaps,!1)),n.format=tt[a.internalformat],n.type=et[a.type],n.mag=rt[r.magFilter],n.min=nt[r.minFilter],n.wrapS=at[r.wrapS],n.wrapT=at[r.wrapT],n}var a=new z(3553);return mt[a.id]=a,i.textureCount++,n(e,r),n.subimage=function(t,e,r,i){e|=0,r|=0,i|=0;var o=m();return c(o,a),o.width=0,o.height=0,p(o,t),o.width=o.width||(a.width>>i)-e,o.height=o.height||(a.height>>i)-r,D(a),d(o,3553,e,r,i),R(),T(o),n},n.resize=function(e,r){var i=0|e,s=0|r||i;if(i===a.width&&s===a.height)return n;n.width=a.width=i,n.height=a.height=s,D(a);for(var l,c=a.channels,u=a.type,h=0;a.mipmask>>h;++h){var f=i>>h,p=s>>h;if(!f||!p)break;l=G.zero.allocType(u,f*p*c),t.texImage2D(3553,h,a.format,f,p,0,a.format,a.type,l),l&&G.zero.freeType(l)}return R(),o.profile&&(a.stats.size=k(a.internalformat,a.type,i,s,!1,!1)),n},n._reglType=\"texture2d\",n._texture=a,o.profile&&(n.stats=a.stats),n.destroy=function(){a.decRef()},n},createCube:function(e,r,n,a,s,l){function h(t,e,r,n,a,i){var s,l=f.texInfo;for(P.call(l),s=0;6>s;++s)g[s]=C();if(\"number\"!=typeof t&&t){if(\"object\"==typeof t)if(e)S(g[0],t),S(g[1],e),S(g[2],r),S(g[3],n),S(g[4],a),S(g[5],i);else if(O(l,t),u(f,t),\"faces\"in t)for(t=t.faces,s=0;6>s;++s)c(g[s],f),S(g[s],t[s]);else for(s=0;6>s;++s)S(g[s],t)}else for(t=0|t||1,s=0;6>s;++s)M(g[s],t,t);for(c(f,g[0]),f.mipmask=l.genMipmaps?(g[0].width<<1)-1:g[0].mipmask,f.internalformat=g[0].internalformat,h.width=g[0].width,h.height=g[0].height,D(f),s=0;6>s;++s)E(g[s],34069+s);for(I(l,34067),R(),o.profile&&(f.stats.size=k(f.internalformat,f.type,h.width,h.height,l.genMipmaps,!0)),h.format=tt[f.internalformat],h.type=et[f.type],h.mag=rt[l.magFilter],h.min=nt[l.minFilter],h.wrapS=at[l.wrapS],h.wrapT=at[l.wrapT],s=0;6>s;++s)L(g[s]);return h}var f=new z(34067);mt[f.id]=f,i.cubeCount++;var g=Array(6);return h(e,r,n,a,s,l),h.subimage=function(t,e,r,n,a){r|=0,n|=0,a|=0;var i=m();return c(i,f),i.width=0,i.height=0,p(i,e),i.width=i.width||(f.width>>a)-r,i.height=i.height||(f.height>>a)-n,D(f),d(i,34069+t,r,n,a),R(),T(i),h},h.resize=function(e){if((e|=0)!==f.width){h.width=f.width=e,h.height=f.height=e,D(f);for(var r=0;6>r;++r)for(var n=0;f.mipmask>>n;++n)t.texImage2D(34069+r,n,f.format,e>>n,e>>n,0,f.format,f.type,null);return R(),o.profile&&(f.stats.size=k(f.internalformat,f.type,h.width,h.height,!1,!0)),h}},h._reglType=\"textureCube\",h._texture=f,o.profile&&(h.stats=f.stats),h.destroy=function(){f.decRef()},h},clear:function(){for(var e=0;e<yt;++e)t.activeTexture(33984+e),t.bindTexture(3553,null),xt[e]=null;X(mt).forEach(F),i.cubeCount=0,i.textureCount=0},getTexture:function(t){return null},restore:function(){for(var e=0;e<yt;++e){var r=xt[e];r&&(r.bindCount=0,r.unit=-1,xt[e]=null)}X(mt).forEach(function(e){e.texture=t.createTexture(),t.bindTexture(e.target,e.texture);for(var r=0;32>r;++r)if(0!=(e.mipmask&1<<r))if(3553===e.target)t.texImage2D(3553,r,e.internalformat,e.width>>r,e.height>>r,0,e.internalformat,e.type,null);else for(var n=0;6>n;++n)t.texImage2D(34069+n,r,e.internalformat,e.width>>r,e.height>>r,0,e.internalformat,e.type,null);I(e.texInfo,e.target)})}}}function A(t,e,r,n,a,i){function o(t,e,r){this.target=t,this.texture=e,this.renderbuffer=r;var n=t=0;e?(t=e.width,n=e.height):r&&(t=r.width,n=r.height),this.width=t,this.height=n}function s(t){t&&(t.texture&&t.texture._texture.decRef(),t.renderbuffer&&t.renderbuffer._renderbuffer.decRef())}function l(t,e,r){t&&(t.texture?t.texture._texture.refCount+=1:t.renderbuffer._renderbuffer.refCount+=1)}function c(e,r){r&&(r.texture?t.framebufferTexture2D(36160,e,r.target,r.texture._texture.texture,0):t.framebufferRenderbuffer(36160,e,36161,r.renderbuffer._renderbuffer.renderbuffer))}function u(t){var e=3553,r=null,n=null,a=t;return\"object\"==typeof t&&(a=t.data,\"target\"in t&&(e=0|t.target)),\"texture2d\"===(t=a._reglType)?r=a:\"textureCube\"===t?r=a:\"renderbuffer\"===t&&(n=a,e=36161),new o(e,r,n)}function h(t,e,r,i,s){return r?((t=n.create2D({width:t,height:e,format:i,type:s}))._texture.refCount=0,new o(3553,t,null)):((t=a.create({width:t,height:e,format:i}))._renderbuffer.refCount=0,new o(36161,null,t))}function f(t){return t&&(t.texture||t.renderbuffer)}function p(t,e,r){t&&(t.texture?t.texture.resize(e,r):t.renderbuffer&&t.renderbuffer.resize(e,r),t.width=e,t.height=r)}function d(){this.id=k++,T[this.id]=this,this.framebuffer=t.createFramebuffer(),this.height=this.width=0,this.colorAttachments=[],this.depthStencilAttachment=this.stencilAttachment=this.depthAttachment=null}function g(t){t.colorAttachments.forEach(s),s(t.depthAttachment),s(t.stencilAttachment),s(t.depthStencilAttachment)}function v(e){t.deleteFramebuffer(e.framebuffer),e.framebuffer=null,i.framebufferCount--,delete T[e.id]}function m(e){var n;t.bindFramebuffer(36160,e.framebuffer);var a=e.colorAttachments;for(n=0;n<a.length;++n)c(36064+n,a[n]);for(n=a.length;n<r.maxColorAttachments;++n)t.framebufferTexture2D(36160,36064+n,3553,null,0);t.framebufferTexture2D(36160,33306,3553,null,0),t.framebufferTexture2D(36160,36096,3553,null,0),t.framebufferTexture2D(36160,36128,3553,null,0),c(36096,e.depthAttachment),c(36128,e.stencilAttachment),c(33306,e.depthStencilAttachment),t.checkFramebufferStatus(36160),t.isContextLost(),t.bindFramebuffer(36160,x.next?x.next.framebuffer:null),x.cur=x.next,t.getError()}function y(t,e){function r(t,e){var a,i=0,o=0,s=!0,c=!0;a=null;var p=!0,d=\"rgba\",v=\"uint8\",y=1,x=null,w=null,k=null,T=!1;\"number\"==typeof t?(i=0|t,o=0|e||i):t?(\"shape\"in t?(i=(o=t.shape)[0],o=o[1]):(\"radius\"in t&&(i=o=t.radius),\"width\"in t&&(i=t.width),\"height\"in t&&(o=t.height)),(\"color\"in t||\"colors\"in t)&&(a=t.color||t.colors,Array.isArray(a)),a||(\"colorCount\"in t&&(y=0|t.colorCount),\"colorTexture\"in t&&(p=!!t.colorTexture,d=\"rgba4\"),\"colorType\"in t&&(v=t.colorType,!p)&&(\"half float\"===v||\"float16\"===v?d=\"rgba16f\":\"float\"!==v&&\"float32\"!==v||(d=\"rgba32f\")),\"colorFormat\"in t&&(d=t.colorFormat,0<=b.indexOf(d)?p=!0:0<=_.indexOf(d)&&(p=!1))),(\"depthTexture\"in t||\"depthStencilTexture\"in t)&&(T=!(!t.depthTexture&&!t.depthStencilTexture)),\"depth\"in t&&(\"boolean\"==typeof t.depth?s=t.depth:(x=t.depth,c=!1)),\"stencil\"in t&&(\"boolean\"==typeof t.stencil?c=t.stencil:(w=t.stencil,s=!1)),\"depthStencil\"in t&&(\"boolean\"==typeof t.depthStencil?s=c=t.depthStencil:(k=t.depthStencil,c=s=!1))):i=o=1;var A=null,M=null,S=null,E=null;if(Array.isArray(a))A=a.map(u);else if(a)A=[u(a)];else for(A=Array(y),a=0;a<y;++a)A[a]=h(i,o,p,d,v);for(i=i||A[0].width,o=o||A[0].height,x?M=u(x):s&&!c&&(M=h(i,o,T,\"depth\",\"uint32\")),w?S=u(w):c&&!s&&(S=h(i,o,!1,\"stencil\",\"uint8\")),k?E=u(k):!x&&!w&&c&&s&&(E=h(i,o,T,\"depth stencil\",\"depth stencil\")),s=null,a=0;a<A.length;++a)l(A[a]),A[a]&&A[a].texture&&(c=yt[A[a].texture._texture.format]*xt[A[a].texture._texture.type],null===s&&(s=c));return l(M),l(S),l(E),g(n),n.width=i,n.height=o,n.colorAttachments=A,n.depthAttachment=M,n.stencilAttachment=S,n.depthStencilAttachment=E,r.color=A.map(f),r.depth=f(M),r.stencil=f(S),r.depthStencil=f(E),r.width=n.width,r.height=n.height,m(n),r}var n=new d;return i.framebufferCount++,r(t,e),j(r,{resize:function(t,e){var a=Math.max(0|t,1),i=Math.max(0|e||a,1);if(a===n.width&&i===n.height)return r;for(var o=n.colorAttachments,s=0;s<o.length;++s)p(o[s],a,i);return p(n.depthAttachment,a,i),p(n.stencilAttachment,a,i),p(n.depthStencilAttachment,a,i),n.width=r.width=a,n.height=r.height=i,m(n),r},_reglType:\"framebuffer\",_framebuffer:n,destroy:function(){v(n),g(n)},use:function(t){x.setFBO({framebuffer:r},t)}})}var x={cur:null,next:null,dirty:!1,setFBO:null},b=[\"rgba\"],_=[\"rgba4\",\"rgb565\",\"rgb5 a1\"];e.ext_srgb&&_.push(\"srgba\"),e.ext_color_buffer_half_float&&_.push(\"rgba16f\",\"rgb16f\"),e.webgl_color_buffer_float&&_.push(\"rgba32f\");var w=[\"uint8\"];e.oes_texture_half_float&&w.push(\"half float\",\"float16\"),e.oes_texture_float&&w.push(\"float\",\"float32\");var k=0,T={};return j(x,{getFramebuffer:function(t){return\"function\"==typeof t&&\"framebuffer\"===t._reglType&&(t=t._framebuffer)instanceof d?t:null},create:y,createCube:function(t){function e(t){var a,i={color:null},o=0,s=null;a=\"rgba\";var l=\"uint8\",c=1;if(\"number\"==typeof t?o=0|t:t?(\"shape\"in t?o=t.shape[0]:(\"radius\"in t&&(o=0|t.radius),\"width\"in t?o=0|t.width:\"height\"in t&&(o=0|t.height)),(\"color\"in t||\"colors\"in t)&&(s=t.color||t.colors,Array.isArray(s)),s||(\"colorCount\"in t&&(c=0|t.colorCount),\"colorType\"in t&&(l=t.colorType),\"colorFormat\"in t&&(a=t.colorFormat)),\"depth\"in t&&(i.depth=t.depth),\"stencil\"in t&&(i.stencil=t.stencil),\"depthStencil\"in t&&(i.depthStencil=t.depthStencil)):o=1,s)if(Array.isArray(s))for(t=[],a=0;a<s.length;++a)t[a]=s[a];else t=[s];else for(t=Array(c),s={radius:o,format:a,type:l},a=0;a<c;++a)t[a]=n.createCube(s);for(i.color=Array(t.length),a=0;a<t.length;++a)c=t[a],o=o||c.width,i.color[a]={target:34069,data:t[a]};for(a=0;6>a;++a){for(c=0;c<t.length;++c)i.color[c].target=34069+a;0<a&&(i.depth=r[0].depth,i.stencil=r[0].stencil,i.depthStencil=r[0].depthStencil),r[a]?r[a](i):r[a]=y(i)}return j(e,{width:o,height:o,color:t})}var r=Array(6);return e(t),j(e,{faces:r,resize:function(t){var n=0|t;if(n===e.width)return e;var a=e.color;for(t=0;t<a.length;++t)a[t].resize(n);for(t=0;6>t;++t)r[t].resize(n);return e.width=e.height=n,e},_reglType:\"framebufferCube\",destroy:function(){r.forEach(function(t){t.destroy()})}})},clear:function(){X(T).forEach(v)},restore:function(){x.cur=null,x.next=null,x.dirty=!0,X(T).forEach(function(e){e.framebuffer=t.createFramebuffer(),m(e)})}})}function M(){this.w=this.z=this.y=this.x=this.state=0,this.buffer=null,this.size=0,this.normalized=!1,this.type=5126,this.divisor=this.stride=this.offset=0}function S(t,e,r,n){function a(t,e,r,n){this.name=t,this.id=e,this.location=r,this.info=n}function i(t,e){for(var r=0;r<t.length;++r)if(t[r].id===e.id)return void(t[r].location=e.location);t.push(e)}function o(r,n,a){if(!(o=(a=35632===r?c:u)[n])){var i=e.str(n),o=t.createShader(r);t.shaderSource(o,i),t.compileShader(o),a[n]=o}return o}function s(t,e){this.id=p++,this.fragId=t,this.vertId=e,this.program=null,this.uniforms=[],this.attributes=[],n.profile&&(this.stats={uniformsCount:0,attributesCount:0})}function l(r,s){var l,c;l=o(35632,r.fragId),c=o(35633,r.vertId);var u=r.program=t.createProgram();t.attachShader(u,l),t.attachShader(u,c),t.linkProgram(u);var h=t.getProgramParameter(u,35718);n.profile&&(r.stats.uniformsCount=h);var f=r.uniforms;for(l=0;l<h;++l)if(c=t.getActiveUniform(u,l))if(1<c.size)for(var p=0;p<c.size;++p){var d=c.name.replace(\"[0]\",\"[\"+p+\"]\");i(f,new a(d,e.id(d),t.getUniformLocation(u,d),c))}else i(f,new a(c.name,e.id(c.name),t.getUniformLocation(u,c.name),c));for(h=t.getProgramParameter(u,35721),n.profile&&(r.stats.attributesCount=h),f=r.attributes,l=0;l<h;++l)(c=t.getActiveAttrib(u,l))&&i(f,new a(c.name,e.id(c.name),t.getAttribLocation(u,c.name),c))}var c={},u={},h={},f=[],p=0;return n.profile&&(r.getMaxUniformsCount=function(){var t=0;return f.forEach(function(e){e.stats.uniformsCount>t&&(t=e.stats.uniformsCount)}),t},r.getMaxAttributesCount=function(){var t=0;return f.forEach(function(e){e.stats.attributesCount>t&&(t=e.stats.attributesCount)}),t}),{clear:function(){var e=t.deleteShader.bind(t);X(c).forEach(e),c={},X(u).forEach(e),u={},f.forEach(function(e){t.deleteProgram(e.program)}),f.length=0,h={},r.shaderCount=0},program:function(t,e,n){var a=h[e];a||(a=h[e]={});var i=a[t];return i||(i=new s(e,t),r.shaderCount++,l(i),a[t]=i,f.push(i)),i},restore:function(){c={},u={};for(var t=0;t<f.length;++t)l(f[t])},shader:o,frag:-1,vert:-1}}function E(t,e,r,n,a,i,o){function s(a){var i;i=null===e.next?5121:e.next.colorAttachments[0].texture._texture.type;var o=0,s=0,l=n.framebufferWidth,c=n.framebufferHeight,u=null;return W(a)?u=a:a&&(o=0|a.x,s=0|a.y,l=0|(a.width||n.framebufferWidth-o),c=0|(a.height||n.framebufferHeight-s),u=a.data||null),r(),a=l*c*4,u||(5121===i?u=new Uint8Array(a):5126===i&&(u=u||new Float32Array(a))),t.pixelStorei(3333,4),t.readPixels(o,s,l,c,6408,i,u),u}return function(t){return t&&\"framebuffer\"in t?function(t){var r;return e.setFBO({framebuffer:t.framebuffer},function(){r=s(t)}),r}(t):s(t)}}function C(t){return Array.prototype.slice.call(t)}function L(t){return C(t).join(\"\")}function P(){function t(){var t=[],e=[];return j(function(){t.push.apply(t,C(arguments))},{def:function(){var n=\"v\"+r++;return e.push(n),0<arguments.length&&(t.push(n,\"=\"),t.push.apply(t,C(arguments)),t.push(\";\")),n},toString:function(){return L([0<e.length?\"var \"+e+\";\":\"\",L(t)])}})}function e(){function e(t,e){n(t,e,\"=\",r.def(t,e),\";\")}var r=t(),n=t(),a=r.toString,i=n.toString;return j(function(){r.apply(r,C(arguments))},{def:r.def,entry:r,exit:n,save:e,set:function(t,n,a){e(t,n),r(t,n,\"=\",a,\";\")},toString:function(){return a()+i()}})}var r=0,n=[],a=[],i=t(),o={};return{global:i,link:function(t){for(var e=0;e<a.length;++e)if(a[e]===t)return n[e];return e=\"g\"+r++,n.push(e),a.push(t),e},block:t,proc:function(t,r){function n(){var t=\"a\"+a.length;return a.push(t),t}var a=[];r=r||0;for(var i=0;i<r;++i)n();var s=(i=e()).toString;return o[t]=j(i,{arg:n,toString:function(){return L([\"function(\",a.join(),\"){\",s(),\"}\"])}})},scope:e,cond:function(){var t=L(arguments),r=e(),n=e(),a=r.toString,i=n.toString;return j(r,{then:function(){return r.apply(r,C(arguments)),this},else:function(){return n.apply(n,C(arguments)),this},toString:function(){var e=i();return e&&(e=\"else{\"+e+\"}\"),L([\"if(\",t,\"){\",a(),\"}\",e])}})},compile:function(){var t=['\"use strict\";',i,\"return {\"];Object.keys(o).forEach(function(e){t.push('\"',e,'\":',o[e].toString(),\",\")}),t.push(\"}\");var e=L(t).replace(/;/g,\";\\n\").replace(/}/g,\"}\\n\").replace(/{/g,\"{\\n\");return Function.apply(null,n.concat(e)).apply(null,a)}}}function O(t){return Array.isArray(t)||W(t)||l(t)}function I(t){return t.sort(function(t,e){return\"viewport\"===t?-1:\"viewport\"===e?1:t<e?-1:1})}function z(t,e,r,n){this.thisDep=t,this.contextDep=e,this.propDep=r,this.append=n}function D(t){return t&&!(t.thisDep||t.contextDep||t.propDep)}function R(t){return new z(!1,!1,!1,t)}function F(t,e){var r=t.type;return 0===r?new z(!0,1<=(r=t.data.length),2<=r,e):4===r?new z((r=t.data).thisDep,r.contextDep,r.propDep,e):new z(3===r,2===r,1===r,e)}function B(t,e,r,n,a,o,s,l,c,u,h,f,p,d,g){function m(t){return t.replace(\".\",\"_\")}function y(t,e,r){var n=m(t);nt.push(t),et[n]=tt[n]=!!r,at[n]=e}function x(t,e,r){var n=m(t);nt.push(t),Array.isArray(r)?(tt[n]=r.slice(),et[n]=r.slice()):tt[n]=et[n]=r,it[n]=e}function b(){var t=P(),r=t.link,n=t.global;t.id=lt++,t.batchId=\"0\";var a=r(ot),i=t.shared={props:\"a0\"};Object.keys(ot).forEach(function(t){i[t]=n.def(a,\".\",t)});var o=t.next={},s=t.current={};Object.keys(it).forEach(function(t){Array.isArray(tt[t])&&(o[t]=n.def(i.next,\".\",t),s[t]=n.def(i.current,\".\",t))});var l=t.constants={};Object.keys(st).forEach(function(t){l[t]=n.def(JSON.stringify(st[t]))}),t.invoke=function(e,n){switch(n.type){case 0:var a=[\"this\",i.context,i.props,t.batchId];return e.def(r(n.data),\".call(\",a.slice(0,Math.max(n.data.length+1,4)),\")\");case 1:return e.def(i.props,n.data);case 2:return e.def(i.context,n.data);case 3:return e.def(\"this\",n.data);case 4:return n.data.append(t,e),n.data.ref}},t.attribCache={};var c={};return t.scopeAttrib=function(t){if((t=e.id(t))in c)return c[t];var n=u.scope[t];return n||(n=u.scope[t]=new Z),c[t]=r(n)},t}function _(t,e){var r=t.static,n=t.dynamic;if(\"framebuffer\"in r){var a=r.framebuffer;return a?(a=l.getFramebuffer(a),R(function(t,e){var r=t.link(a),n=t.shared;return e.set(n.framebuffer,\".next\",r),n=n.context,e.set(n,\".framebufferWidth\",r+\".width\"),e.set(n,\".framebufferHeight\",r+\".height\"),r})):R(function(t,e){var r=t.shared;return e.set(r.framebuffer,\".next\",\"null\"),r=r.context,e.set(r,\".framebufferWidth\",r+\".drawingBufferWidth\"),e.set(r,\".framebufferHeight\",r+\".drawingBufferHeight\"),\"null\"})}if(\"framebuffer\"in n){var i=n.framebuffer;return F(i,function(t,e){var r=t.invoke(e,i),n=t.shared,a=n.framebuffer;r=e.def(a,\".getFramebuffer(\",r,\")\");return e.set(a,\".next\",r),n=n.context,e.set(n,\".framebufferWidth\",r+\"?\"+r+\".width:\"+n+\".drawingBufferWidth\"),e.set(n,\".framebufferHeight\",r+\"?\"+r+\".height:\"+n+\".drawingBufferHeight\"),r})}return null}function w(t){function r(t){if(t in n){var r=e.id(n[t]);return(t=R(function(){return r})).id=r,t}if(t in a){var i=a[t];return F(i,function(t,e){var r=t.invoke(e,i);return e.def(t.shared.strings,\".id(\",r,\")\")})}return null}var n=t.static,a=t.dynamic,i=r(\"frag\"),o=r(\"vert\"),s=null;return D(i)&&D(o)?(s=h.program(o.id,i.id),t=R(function(t,e){return t.link(s)})):t=new z(i&&i.thisDep||o&&o.thisDep,i&&i.contextDep||o&&o.contextDep,i&&i.propDep||o&&o.propDep,function(t,e){var r,n,a=t.shared.shader;return r=i?i.append(t,e):e.def(a,\".\",\"frag\"),n=o?o.append(t,e):e.def(a,\".\",\"vert\"),e.def(a+\".program(\"+n+\",\"+r+\")\")}),{frag:i,vert:o,progVar:t,program:s}}function k(t,e){function r(t,e){if(t in n){var r=0|n[t];return R(function(t,n){return e&&(t.OFFSET=r),r})}if(t in a){var o=a[t];return F(o,function(t,r){var n=t.invoke(r,o);return e&&(t.OFFSET=n),n})}return e&&i?R(function(t,e){return t.OFFSET=\"0\",0}):null}var n=t.static,a=t.dynamic,i=function(){if(\"elements\"in n){var t=n.elements;O(t)?t=o.getElements(o.create(t,!0)):t&&(t=o.getElements(t));var e=R(function(e,r){if(t){var n=e.link(t);return e.ELEMENTS=n}return e.ELEMENTS=null});return e.value=t,e}if(\"elements\"in a){var r=a.elements;return F(r,function(t,e){var n=(a=t.shared).isBufferArgs,a=a.elements,i=t.invoke(e,r),o=e.def(\"null\");n=e.def(n,\"(\",i,\")\"),i=t.cond(n).then(o,\"=\",a,\".createStream(\",i,\");\").else(o,\"=\",a,\".getElements(\",i,\");\");return e.entry(i),e.exit(t.cond(n).then(a,\".destroyStream(\",o,\");\")),t.ELEMENTS=o})}return null}(),s=r(\"offset\",!0);return{elements:i,primitive:function(){if(\"primitive\"in n){var t=n.primitive;return R(function(e,r){return rt[t]})}if(\"primitive\"in a){var e=a.primitive;return F(e,function(t,r){var n=t.constants.primTypes,a=t.invoke(r,e);return r.def(n,\"[\",a,\"]\")})}return i?D(i)?i.value?R(function(t,e){return e.def(t.ELEMENTS,\".primType\")}):R(function(){return 4}):new z(i.thisDep,i.contextDep,i.propDep,function(t,e){var r=t.ELEMENTS;return e.def(r,\"?\",r,\".primType:\",4)}):null}(),count:function(){if(\"count\"in n){var t=0|n.count;return R(function(){return t})}if(\"count\"in a){var e=a.count;return F(e,function(t,r){return t.invoke(r,e)})}return i?D(i)?i?s?new z(s.thisDep,s.contextDep,s.propDep,function(t,e){return e.def(t.ELEMENTS,\".vertCount-\",t.OFFSET)}):R(function(t,e){return e.def(t.ELEMENTS,\".vertCount\")}):R(function(){return-1}):new z(i.thisDep||s.thisDep,i.contextDep||s.contextDep,i.propDep||s.propDep,function(t,e){var r=t.ELEMENTS;return t.OFFSET?e.def(r,\"?\",r,\".vertCount-\",t.OFFSET,\":-1\"):e.def(r,\"?\",r,\".vertCount:-1\")}):null}(),instances:r(\"instances\",!1),offset:s}}function T(t,r){var n=t.static,i=t.dynamic,o={};return Object.keys(n).forEach(function(t){var r=n[t],i=e.id(t),s=new Z;if(O(r))s.state=1,s.buffer=a.getBuffer(a.create(r,34962,!1,!0)),s.type=0;else if(c=a.getBuffer(r))s.state=1,s.buffer=c,s.type=0;else if(\"constant\"in r){var l=r.constant;s.buffer=\"null\",s.state=2,\"number\"==typeof l?s.x=l:bt.forEach(function(t,e){e<l.length&&(s[t]=l[e])})}else{var c=O(r.buffer)?a.getBuffer(a.create(r.buffer,34962,!1,!0)):a.getBuffer(r.buffer),u=0|r.offset,h=0|r.stride,f=0|r.size,p=!!r.normalized,d=0;\"type\"in r&&(d=K[r.type]),r=0|r.divisor,s.buffer=c,s.state=1,s.size=f,s.normalized=p,s.type=d||c.dtype,s.offset=u,s.stride=h,s.divisor=r}o[t]=R(function(t,e){var r=t.attribCache;if(i in r)return r[i];var n={isStream:!1};return Object.keys(s).forEach(function(t){n[t]=s[t]}),s.buffer&&(n.buffer=t.link(s.buffer),n.type=n.type||n.buffer+\".dtype\"),r[i]=n})}),Object.keys(i).forEach(function(t){var e=i[t];o[t]=F(e,function(t,r){function n(t){r(l[t],\"=\",a,\".\",t,\"|0;\")}var a=t.invoke(r,e),i=t.shared,o=i.isBufferArgs,s=i.buffer,l={isStream:r.def(!1)},c=new Z;c.state=1,Object.keys(c).forEach(function(t){l[t]=r.def(\"\"+c[t])});var u=l.buffer,h=l.type;return r(\"if(\",o,\"(\",a,\")){\",l.isStream,\"=true;\",u,\"=\",s,\".createStream(\",34962,\",\",a,\");\",h,\"=\",u,\".dtype;\",\"}else{\",u,\"=\",s,\".getBuffer(\",a,\");\",\"if(\",u,\"){\",h,\"=\",u,\".dtype;\",'}else if(\"constant\" in ',a,\"){\",l.state,\"=\",2,\";\",\"if(typeof \"+a+'.constant === \"number\"){',l[bt[0]],\"=\",a,\".constant;\",bt.slice(1).map(function(t){return l[t]}).join(\"=\"),\"=0;\",\"}else{\",bt.map(function(t,e){return l[t]+\"=\"+a+\".constant.length>\"+e+\"?\"+a+\".constant[\"+e+\"]:0;\"}).join(\"\"),\"}}else{\",\"if(\",o,\"(\",a,\".buffer)){\",u,\"=\",s,\".createStream(\",34962,\",\",a,\".buffer);\",\"}else{\",u,\"=\",s,\".getBuffer(\",a,\".buffer);\",\"}\",h,'=\"type\" in ',a,\"?\",i.glTypes,\"[\",a,\".type]:\",u,\".dtype;\",l.normalized,\"=!!\",a,\".normalized;\"),n(\"size\"),n(\"offset\"),n(\"stride\"),n(\"divisor\"),r(\"}}\"),r.exit(\"if(\",l.isStream,\"){\",s,\".destroyStream(\",u,\");\",\"}\"),l})}),o}function A(t,e,r,n,a){var o=_(t),s=function(t,e,r){function n(t){if(t in a){var r=a[t];t=!0;var n,o,s=0|r.x,l=0|r.y;return\"width\"in r?n=0|r.width:t=!1,\"height\"in r?o=0|r.height:t=!1,new z(!t&&e&&e.thisDep,!t&&e&&e.contextDep,!t&&e&&e.propDep,function(t,e){var a=t.shared.context,i=n;\"width\"in r||(i=e.def(a,\".\",\"framebufferWidth\",\"-\",s));var c=o;return\"height\"in r||(c=e.def(a,\".\",\"framebufferHeight\",\"-\",l)),[s,l,i,c]})}if(t in i){var c=i[t];return t=F(c,function(t,e){var r=t.invoke(e,c),n=t.shared.context,a=e.def(r,\".x|0\"),i=e.def(r,\".y|0\");return[a,i,e.def('\"width\" in ',r,\"?\",r,\".width|0:\",\"(\",n,\".\",\"framebufferWidth\",\"-\",a,\")\"),r=e.def('\"height\" in ',r,\"?\",r,\".height|0:\",\"(\",n,\".\",\"framebufferHeight\",\"-\",i,\")\")]}),e&&(t.thisDep=t.thisDep||e.thisDep,t.contextDep=t.contextDep||e.contextDep,t.propDep=t.propDep||e.propDep),t}return e?new z(e.thisDep,e.contextDep,e.propDep,function(t,e){var r=t.shared.context;return[0,0,e.def(r,\".\",\"framebufferWidth\"),e.def(r,\".\",\"framebufferHeight\")]}):null}var a=t.static,i=t.dynamic;if(t=n(\"viewport\")){var o=t;t=new z(t.thisDep,t.contextDep,t.propDep,function(t,e){var r=o.append(t,e),n=t.shared.context;return e.set(n,\".viewportWidth\",r[2]),e.set(n,\".viewportHeight\",r[3]),r})}return{viewport:t,scissor_box:n(\"scissor.box\")}}(t,o),l=k(t),c=function(t,e){var r=t.static,n=t.dynamic,a={};return nt.forEach(function(t){function e(e,i){if(t in r){var s=e(r[t]);a[o]=R(function(){return s})}else if(t in n){var l=n[t];a[o]=F(l,function(t,e){return i(t,e,t.invoke(e,l))})}}var o=m(t);switch(t){case\"cull.enable\":case\"blend.enable\":case\"dither\":case\"stencil.enable\":case\"depth.enable\":case\"scissor.enable\":case\"polygonOffset.enable\":case\"sample.alpha\":case\"sample.enable\":case\"depth.mask\":return e(function(t){return t},function(t,e,r){return r});case\"depth.func\":return e(function(t){return kt[t]},function(t,e,r){return e.def(t.constants.compareFuncs,\"[\",r,\"]\")});case\"depth.range\":return e(function(t){return t},function(t,e,r){return[e.def(\"+\",r,\"[0]\"),e=e.def(\"+\",r,\"[1]\")]});case\"blend.func\":return e(function(t){return[wt[\"srcRGB\"in t?t.srcRGB:t.src],wt[\"dstRGB\"in t?t.dstRGB:t.dst],wt[\"srcAlpha\"in t?t.srcAlpha:t.src],wt[\"dstAlpha\"in t?t.dstAlpha:t.dst]]},function(t,e,r){function n(t,n){return e.def('\"',t,n,'\" in ',r,\"?\",r,\".\",t,n,\":\",r,\".\",t)}t=t.constants.blendFuncs;var a=n(\"src\",\"RGB\"),i=n(\"dst\",\"RGB\"),o=(a=e.def(t,\"[\",a,\"]\"),e.def(t,\"[\",n(\"src\",\"Alpha\"),\"]\"));return[a,i=e.def(t,\"[\",i,\"]\"),o,t=e.def(t,\"[\",n(\"dst\",\"Alpha\"),\"]\")]});case\"blend.equation\":return e(function(t){return\"string\"==typeof t?[J[t],J[t]]:\"object\"==typeof t?[J[t.rgb],J[t.alpha]]:void 0},function(t,e,r){var n=t.constants.blendEquations,a=e.def(),i=e.def();return(t=t.cond(\"typeof \",r,'===\"string\"')).then(a,\"=\",i,\"=\",n,\"[\",r,\"];\"),t.else(a,\"=\",n,\"[\",r,\".rgb];\",i,\"=\",n,\"[\",r,\".alpha];\"),e(t),[a,i]});case\"blend.color\":return e(function(t){return i(4,function(e){return+t[e]})},function(t,e,r){return i(4,function(t){return e.def(\"+\",r,\"[\",t,\"]\")})});case\"stencil.mask\":return e(function(t){return 0|t},function(t,e,r){return e.def(r,\"|0\")});case\"stencil.func\":return e(function(t){return[kt[t.cmp||\"keep\"],t.ref||0,\"mask\"in t?t.mask:-1]},function(t,e,r){return[t=e.def('\"cmp\" in ',r,\"?\",t.constants.compareFuncs,\"[\",r,\".cmp]\",\":\",7680),e.def(r,\".ref|0\"),e=e.def('\"mask\" in ',r,\"?\",r,\".mask|0:-1\")]});case\"stencil.opFront\":case\"stencil.opBack\":return e(function(e){return[\"stencil.opBack\"===t?1029:1028,Tt[e.fail||\"keep\"],Tt[e.zfail||\"keep\"],Tt[e.zpass||\"keep\"]]},function(e,r,n){function a(t){return r.def('\"',t,'\" in ',n,\"?\",i,\"[\",n,\".\",t,\"]:\",7680)}var i=e.constants.stencilOps;return[\"stencil.opBack\"===t?1029:1028,a(\"fail\"),a(\"zfail\"),a(\"zpass\")]});case\"polygonOffset.offset\":return e(function(t){return[0|t.factor,0|t.units]},function(t,e,r){return[e.def(r,\".factor|0\"),e=e.def(r,\".units|0\")]});case\"cull.face\":return e(function(t){var e=0;return\"front\"===t?e=1028:\"back\"===t&&(e=1029),e},function(t,e,r){return e.def(r,'===\"front\"?',1028,\":\",1029)});case\"lineWidth\":return e(function(t){return t},function(t,e,r){return r});case\"frontFace\":return e(function(t){return At[t]},function(t,e,r){return e.def(r+'===\"cw\"?2304:2305')});case\"colorMask\":return e(function(t){return t.map(function(t){return!!t})},function(t,e,r){return i(4,function(t){return\"!!\"+r+\"[\"+t+\"]\"})});case\"sample.coverage\":return e(function(t){return[\"value\"in t?t.value:1,!!t.invert]},function(t,e,r){return[e.def('\"value\" in ',r,\"?+\",r,\".value:1\"),e=e.def(\"!!\",r,\".invert\")]})}}),a}(t),u=w(t),h=s.viewport;return h&&(c.viewport=h),(s=s[h=m(\"scissor.box\")])&&(c[h]=s),(o={framebuffer:o,draw:l,shader:u,state:c,dirty:s=0<Object.keys(c).length}).profile=function(t){var e,r=t.static;if(t=t.dynamic,\"profile\"in r){var n=!!r.profile;(e=R(function(t,e){return n})).enable=n}else if(\"profile\"in t){var a=t.profile;e=F(a,function(t,e){return t.invoke(e,a)})}return e}(t),o.uniforms=function(t,e){var r=t.static,n=t.dynamic,a={};return Object.keys(r).forEach(function(t){var e,n=r[t];if(\"number\"==typeof n||\"boolean\"==typeof n)e=R(function(){return n});else if(\"function\"==typeof n){var o=n._reglType;\"texture2d\"===o||\"textureCube\"===o?e=R(function(t){return t.link(n)}):\"framebuffer\"!==o&&\"framebufferCube\"!==o||(e=R(function(t){return t.link(n.color[0])}))}else v(n)&&(e=R(function(t){return t.global.def(\"[\",i(n.length,function(t){return n[t]}),\"]\")}));e.value=n,a[t]=e}),Object.keys(n).forEach(function(t){var e=n[t];a[t]=F(e,function(t,r){return t.invoke(r,e)})}),a}(r),o.attributes=T(e),o.context=function(t){var e=t.static,r=t.dynamic,n={};return Object.keys(e).forEach(function(t){var r=e[t];n[t]=R(function(t,e){return\"number\"==typeof r||\"boolean\"==typeof r?\"\"+r:t.link(r)})}),Object.keys(r).forEach(function(t){var e=r[t];n[t]=F(e,function(t,r){return t.invoke(r,e)})}),n}(n),o}function M(t,e,r){var n=t.shared.context,a=t.scope();Object.keys(r).forEach(function(i){e.save(n,\".\"+i),a(n,\".\",i,\"=\",r[i].append(t,e),\";\")}),e(a)}function S(t,e,r,n){var a,i=(s=t.shared).gl,o=s.framebuffer;$&&(a=e.def(s.extensions,\".webgl_draw_buffers\"));var s=(l=t.constants).drawBuffer,l=l.backBuffer;t=r?r.append(t,e):e.def(o,\".next\"),n||e(\"if(\",t,\"!==\",o,\".cur){\"),e(\"if(\",t,\"){\",i,\".bindFramebuffer(\",36160,\",\",t,\".framebuffer);\"),$&&e(a,\".drawBuffersWEBGL(\",s,\"[\",t,\".colorAttachments.length]);\"),e(\"}else{\",i,\".bindFramebuffer(\",36160,\",null);\"),$&&e(a,\".drawBuffersWEBGL(\",l,\");\"),e(\"}\",o,\".cur=\",t,\";\"),n||e(\"}\")}function E(t,e,r){var n=t.shared,a=n.gl,o=t.current,s=t.next,l=n.current,c=n.next,u=t.cond(l,\".dirty\");nt.forEach(function(e){var n,h;if(!((e=m(e))in r.state))if(e in s){n=s[e],h=o[e];var f=i(tt[e].length,function(t){return u.def(n,\"[\",t,\"]\")});u(t.cond(f.map(function(t,e){return t+\"!==\"+h+\"[\"+e+\"]\"}).join(\"||\")).then(a,\".\",it[e],\"(\",f,\");\",f.map(function(t,e){return h+\"[\"+e+\"]=\"+t}).join(\";\"),\";\"))}else n=u.def(c,\".\",e),f=t.cond(n,\"!==\",l,\".\",e),u(f),e in at?f(t.cond(n).then(a,\".enable(\",at[e],\");\").else(a,\".disable(\",at[e],\");\"),l,\".\",e,\"=\",n,\";\"):f(a,\".\",it[e],\"(\",n,\");\",l,\".\",e,\"=\",n,\";\")}),0===Object.keys(r.state).length&&u(l,\".dirty=false;\"),e(u)}function C(t,e,r,n){var a=t.shared,i=t.current,o=a.current,s=a.gl;I(Object.keys(r)).forEach(function(a){var l=r[a];if(!n||n(l)){var c=l.append(t,e);if(at[a]){var u=at[a];D(l)?e(s,c?\".enable(\":\".disable(\",u,\");\"):e(t.cond(c).then(s,\".enable(\",u,\");\").else(s,\".disable(\",u,\");\")),e(o,\".\",a,\"=\",c,\";\")}else if(v(c)){var h=i[a];e(s,\".\",it[a],\"(\",c,\");\",c.map(function(t,e){return h+\"[\"+e+\"]=\"+t}).join(\";\"),\";\")}else e(s,\".\",it[a],\"(\",c,\");\",o,\".\",a,\"=\",c,\";\")}})}function L(t,e){Q&&(t.instancing=e.def(t.shared.extensions,\".angle_instanced_arrays\"))}function B(t,e,r,n,a){function i(){return\"undefined\"==typeof performance?\"Date.now()\":\"performance.now()\"}function o(t){t(c=e.def(),\"=\",i(),\";\"),\"string\"==typeof a?t(f,\".count+=\",a,\";\"):t(f,\".count++;\"),d&&(n?t(u=e.def(),\"=\",g,\".getNumPendingQueries();\"):t(g,\".beginQuery(\",f,\");\"))}function s(t){t(f,\".cpuTime+=\",i(),\"-\",c,\";\"),d&&(n?t(g,\".pushScopeStats(\",u,\",\",g,\".getNumPendingQueries(),\",f,\");\"):t(g,\".endQuery();\"))}function l(t){var r=e.def(p,\".profile\");e(p,\".profile=\",t,\";\"),e.exit(p,\".profile=\",r,\";\")}var c,u,h=t.shared,f=t.stats,p=h.current,g=h.timer;if(r=r.profile){if(D(r))return void(r.enable?(o(e),s(e.exit),l(\"true\")):l(\"false\"));l(r=r.append(t,e))}else r=e.def(p,\".profile\");o(h=t.block()),e(\"if(\",r,\"){\",h,\"}\"),s(t=t.block()),e.exit(\"if(\",r,\"){\",t,\"}\")}function N(t,e,r,n,a){function i(r,n,a){function i(){e(\"if(!\",u,\".buffer){\",l,\".enableVertexAttribArray(\",c,\");}\");var r,i=a.type;r=a.size?e.def(a.size,\"||\",n):n,e(\"if(\",u,\".type!==\",i,\"||\",u,\".size!==\",r,\"||\",p.map(function(t){return u+\".\"+t+\"!==\"+a[t]}).join(\"||\"),\"){\",l,\".bindBuffer(\",34962,\",\",h,\".buffer);\",l,\".vertexAttribPointer(\",[c,r,i,a.normalized,a.stride,a.offset],\");\",u,\".type=\",i,\";\",u,\".size=\",r,\";\",p.map(function(t){return u+\".\"+t+\"=\"+a[t]+\";\"}).join(\"\"),\"}\"),Q&&(i=a.divisor,e(\"if(\",u,\".divisor!==\",i,\"){\",t.instancing,\".vertexAttribDivisorANGLE(\",[c,i],\");\",u,\".divisor=\",i,\";}\"))}function s(){e(\"if(\",u,\".buffer){\",l,\".disableVertexAttribArray(\",c,\");\",\"}if(\",bt.map(function(t,e){return u+\".\"+t+\"!==\"+f[e]}).join(\"||\"),\"){\",l,\".vertexAttrib4f(\",c,\",\",f,\");\",bt.map(function(t,e){return u+\".\"+t+\"=\"+f[e]+\";\"}).join(\"\"),\"}\")}var l=o.gl,c=e.def(r,\".location\"),u=e.def(o.attributes,\"[\",c,\"]\");r=a.state;var h=a.buffer,f=[a.x,a.y,a.z,a.w],p=[\"buffer\",\"normalized\",\"offset\",\"stride\"];1===r?i():2===r?s():(e(\"if(\",r,\"===\",1,\"){\"),i(),e(\"}else{\"),s(),e(\"}\"))}var o=t.shared;n.forEach(function(n){var o,s=n.name,l=r.attributes[s];if(l){if(!a(l))return;o=l.append(t,e)}else{if(!a(Mt))return;var c=t.scopeAttrib(s);o={},Object.keys(new Z).forEach(function(t){o[t]=e.def(c,\".\",t)})}i(t.link(n),function(t){switch(t){case 35664:case 35667:case 35671:return 2;case 35665:case 35668:case 35672:return 3;case 35666:case 35669:case 35673:return 4;default:return 1}}(n.info.type),o)})}function j(t,r,n,a,o){for(var s,l=t.shared,c=l.gl,u=0;u<a.length;++u){var h,f=(g=a[u]).name,p=g.info.type,d=n.uniforms[f],g=t.link(g)+\".location\";if(d){if(!o(d))continue;if(D(d)){if(f=d.value,35678===p||35680===p)r(c,\".uniform1i(\",g,\",\",(p=t.link(f._texture||f.color[0]._texture))+\".bind());\"),r.exit(p,\".unbind();\");else if(35674===p||35675===p||35676===p)d=2,35675===p?d=3:35676===p&&(d=4),r(c,\".uniformMatrix\",d,\"fv(\",g,\",false,\",f=t.global.def(\"new Float32Array([\"+Array.prototype.slice.call(f)+\"])\"),\");\");else{switch(p){case 5126:s=\"1f\";break;case 35664:s=\"2f\";break;case 35665:s=\"3f\";break;case 35666:s=\"4f\";break;case 35670:case 5124:s=\"1i\";break;case 35671:case 35667:s=\"2i\";break;case 35672:case 35668:s=\"3i\";break;case 35673:s=\"4i\";break;case 35669:s=\"4i\"}r(c,\".uniform\",s,\"(\",g,\",\",v(f)?Array.prototype.slice.call(f):f,\");\")}continue}h=d.append(t,r)}else{if(!o(Mt))continue;h=r.def(l.uniforms,\"[\",e.id(f),\"]\")}switch(35678===p?r(\"if(\",h,\"&&\",h,'._reglType===\"framebuffer\"){',h,\"=\",h,\".color[0];\",\"}\"):35680===p&&r(\"if(\",h,\"&&\",h,'._reglType===\"framebufferCube\"){',h,\"=\",h,\".color[0];\",\"}\"),f=1,p){case 35678:case 35680:p=r.def(h,\"._texture\"),r(c,\".uniform1i(\",g,\",\",p,\".bind());\"),r.exit(p,\".unbind();\");continue;case 5124:case 35670:s=\"1i\";break;case 35667:case 35671:s=\"2i\",f=2;break;case 35668:case 35672:s=\"3i\",f=3;break;case 35669:case 35673:s=\"4i\",f=4;break;case 5126:s=\"1f\";break;case 35664:s=\"2f\",f=2;break;case 35665:s=\"3f\",f=3;break;case 35666:s=\"4f\",f=4;break;case 35674:s=\"Matrix2fv\";break;case 35675:s=\"Matrix3fv\";break;case 35676:s=\"Matrix4fv\"}if(r(c,\".uniform\",s,\"(\",g,\",\"),\"M\"===s.charAt(0)){g=Math.pow(p-35674+2,2);var m=t.global.def(\"new Float32Array(\",g,\")\");r(\"false,(Array.isArray(\",h,\")||\",h,\" instanceof Float32Array)?\",h,\":(\",i(g,function(t){return m+\"[\"+t+\"]=\"+h+\"[\"+t+\"]\"}),\",\",m,\")\")}else r(1<f?i(f,function(t){return h+\"[\"+t+\"]\"}):h);r(\");\")}}function V(t,e,r,n){function a(a){var i=f[a];return i?i.contextDep&&n.contextDynamic||i.propDep?i.append(t,r):i.append(t,e):e.def(h,\".\",a)}function i(){function t(){r(l,\".drawElementsInstancedANGLE(\",[d,v,m,g+\"<<((\"+m+\"-5121)>>1)\",s],\");\")}function e(){r(l,\".drawArraysInstancedANGLE(\",[d,g,v,s],\");\")}p?y?t():(r(\"if(\",p,\"){\"),t(),r(\"}else{\"),e(),r(\"}\")):e()}function o(){function t(){r(u+\".drawElements(\"+[d,v,m,g+\"<<((\"+m+\"-5121)>>1)\"]+\");\")}function e(){r(u+\".drawArrays(\"+[d,g,v]+\");\")}p?y?t():(r(\"if(\",p,\"){\"),t(),r(\"}else{\"),e(),r(\"}\")):e()}var s,l,c=t.shared,u=c.gl,h=c.draw,f=n.draw,p=function(){var a=f.elements,i=e;return a?((a.contextDep&&n.contextDynamic||a.propDep)&&(i=r),a=a.append(t,i)):a=i.def(h,\".\",\"elements\"),a&&i(\"if(\"+a+\")\"+u+\".bindBuffer(34963,\"+a+\".buffer.buffer);\"),a}(),d=a(\"primitive\"),g=a(\"offset\"),v=function(){var a=f.count,i=e;return a?((a.contextDep&&n.contextDynamic||a.propDep)&&(i=r),a=a.append(t,i)):a=i.def(h,\".\",\"count\"),a}();if(\"number\"==typeof v){if(0===v)return}else r(\"if(\",v,\"){\"),r.exit(\"}\");Q&&(s=a(\"instances\"),l=t.instancing);var m=p+\".type\",y=f.elements&&D(f.elements);Q&&(\"number\"!=typeof s||0<=s)?\"string\"==typeof s?(r(\"if(\",s,\">0){\"),i(),r(\"}else if(\",s,\"<0){\"),o(),r(\"}\")):i():o()}function q(t,e,r,n,a){return a=(e=b()).proc(\"body\",a),Q&&(e.instancing=a.def(e.shared.extensions,\".angle_instanced_arrays\")),t(e,a,r,n),e.compile().body}function H(t,e,r,n){L(t,e),N(t,e,r,n.attributes,function(){return!0}),j(t,e,r,n.uniforms,function(){return!0}),V(t,e,e,r)}function G(t,e,r,n){function a(){return!0}t.batchId=\"a1\",L(t,e),N(t,e,r,n.attributes,a),j(t,e,r,n.uniforms,a),V(t,e,e,r)}function Y(t,e,r,n){function a(t){return t.contextDep&&o||t.propDep}function i(t){return!a(t)}L(t,e);var o=r.contextDep,s=e.def(),l=e.def();t.shared.props=l,t.batchId=s;var c=t.scope(),u=t.scope();e(c.entry,\"for(\",s,\"=0;\",s,\"<\",\"a1\",\";++\",s,\"){\",l,\"=\",\"a0\",\"[\",s,\"];\",u,\"}\",c.exit),r.needsContext&&M(t,u,r.context),r.needsFramebuffer&&S(t,u,r.framebuffer),C(t,u,r.state,a),r.profile&&a(r.profile)&&B(t,u,r,!1,!0),n?(N(t,c,r,n.attributes,i),N(t,u,r,n.attributes,a),j(t,c,r,n.uniforms,i),j(t,u,r,n.uniforms,a),V(t,c,u,r)):(e=t.global.def(\"{}\"),n=r.shader.progVar.append(t,u),l=u.def(n,\".id\"),c=u.def(e,\"[\",l,\"]\"),u(t.shared.gl,\".useProgram(\",n,\".program);\",\"if(!\",c,\"){\",c,\"=\",e,\"[\",l,\"]=\",t.link(function(e){return q(G,t,r,e,2)}),\"(\",n,\");}\",c,\".call(this,a0[\",s,\"],\",s,\");\"))}function W(t,r){function n(e){var n=r.shader[e];n&&a.set(i.shader,\".\"+e,n.append(t,a))}var a=t.proc(\"scope\",3);t.batchId=\"a2\";var i=t.shared,o=i.current;M(t,a,r.context),r.framebuffer&&r.framebuffer.append(t,a),I(Object.keys(r.state)).forEach(function(e){var n=r.state[e].append(t,a);v(n)?n.forEach(function(r,n){a.set(t.next[e],\"[\"+n+\"]\",r)}):a.set(i.next,\".\"+e,n)}),B(t,a,r,!0,!0),[\"elements\",\"offset\",\"count\",\"instances\",\"primitive\"].forEach(function(e){var n=r.draw[e];n&&a.set(i.draw,\".\"+e,\"\"+n.append(t,a))}),Object.keys(r.uniforms).forEach(function(n){a.set(i.uniforms,\"[\"+e.id(n)+\"]\",r.uniforms[n].append(t,a))}),Object.keys(r.attributes).forEach(function(e){var n=r.attributes[e].append(t,a),i=t.scopeAttrib(e);Object.keys(new Z).forEach(function(t){a.set(i,\".\"+t,n[t])})}),n(\"vert\"),n(\"frag\"),0<Object.keys(r.state).length&&(a(o,\".dirty=true;\"),a.exit(o,\".dirty=true;\")),a(\"a1(\",t.shared.context,\",a0,\",t.batchId,\");\")}function X(t,e,r){var n=e.static[r];if(n&&function(t){if(\"object\"==typeof t&&!v(t)){for(var e=Object.keys(t),r=0;r<e.length;++r)if(U.isDynamic(t[e[r]]))return!0;return!1}}(n)){var a=t.global,i=Object.keys(n),o=!1,s=!1,l=!1,c=t.global.def(\"{}\");i.forEach(function(e){var r=n[e];if(U.isDynamic(r))\"function\"==typeof r&&(r=n[e]=U.unbox(r)),e=F(r,null),o=o||e.thisDep,l=l||e.propDep,s=s||e.contextDep;else{switch(a(c,\".\",e,\"=\"),typeof r){case\"number\":a(r);break;case\"string\":a('\"',r,'\"');break;case\"object\":Array.isArray(r)&&a(\"[\",r.join(),\"]\");break;default:a(t.link(r))}a(\";\")}}),e.dynamic[r]=new U.DynamicVariable(4,{thisDep:o,contextDep:s,propDep:l,ref:c,append:function(t,e){i.forEach(function(r){var a=n[r];U.isDynamic(a)&&(a=t.invoke(e,a),e(c,\".\",r,\"=\",a,\";\"))})}}),delete e.static[r]}}var Z=u.Record,J={add:32774,subtract:32778,\"reverse subtract\":32779};r.ext_blend_minmax&&(J.min=32775,J.max=32776);var Q=r.angle_instanced_arrays,$=r.webgl_draw_buffers,tt={dirty:!0,profile:g.profile},et={},nt=[],at={},it={};y(\"dither\",3024),y(\"blend.enable\",3042),x(\"blend.color\",\"blendColor\",[0,0,0,0]),x(\"blend.equation\",\"blendEquationSeparate\",[32774,32774]),x(\"blend.func\",\"blendFuncSeparate\",[1,0,1,0]),y(\"depth.enable\",2929,!0),x(\"depth.func\",\"depthFunc\",513),x(\"depth.range\",\"depthRange\",[0,1]),x(\"depth.mask\",\"depthMask\",!0),x(\"colorMask\",\"colorMask\",[!0,!0,!0,!0]),y(\"cull.enable\",2884),x(\"cull.face\",\"cullFace\",1029),x(\"frontFace\",\"frontFace\",2305),x(\"lineWidth\",\"lineWidth\",1),y(\"polygonOffset.enable\",32823),x(\"polygonOffset.offset\",\"polygonOffset\",[0,0]),y(\"sample.alpha\",32926),y(\"sample.enable\",32928),x(\"sample.coverage\",\"sampleCoverage\",[1,!1]),y(\"stencil.enable\",2960),x(\"stencil.mask\",\"stencilMask\",-1),x(\"stencil.func\",\"stencilFunc\",[519,0,-1]),x(\"stencil.opFront\",\"stencilOpSeparate\",[1028,7680,7680,7680]),x(\"stencil.opBack\",\"stencilOpSeparate\",[1029,7680,7680,7680]),y(\"scissor.enable\",3089),x(\"scissor.box\",\"scissor\",[0,0,t.drawingBufferWidth,t.drawingBufferHeight]),x(\"viewport\",\"viewport\",[0,0,t.drawingBufferWidth,t.drawingBufferHeight]);var ot={gl:t,context:p,strings:e,next:et,current:tt,draw:f,elements:o,buffer:a,shader:h,attributes:u.state,uniforms:c,framebuffer:l,extensions:r,timer:d,isBufferArgs:O},st={primTypes:rt,compareFuncs:kt,blendFuncs:wt,blendEquations:J,stencilOps:Tt,glTypes:K,orientationType:At};$&&(st.backBuffer=[1029],st.drawBuffer=i(n.maxDrawbuffers,function(t){return 0===t?[0]:i(t,function(t){return 36064+t})}));var lt=0;return{next:et,current:tt,procs:function(){var t=b(),e=t.proc(\"poll\"),r=t.proc(\"refresh\"),a=t.block();e(a),r(a);var o,s=t.shared,l=s.gl,c=s.next,u=s.current;a(u,\".dirty=false;\"),S(t,e),S(t,r,null,!0),Q&&(o=t.link(Q));for(var h=0;h<n.maxAttributes;++h){var f=r.def(s.attributes,\"[\",h,\"]\"),p=t.cond(f,\".buffer\");p.then(l,\".enableVertexAttribArray(\",h,\");\",l,\".bindBuffer(\",34962,\",\",f,\".buffer.buffer);\",l,\".vertexAttribPointer(\",h,\",\",f,\".size,\",f,\".type,\",f,\".normalized,\",f,\".stride,\",f,\".offset);\").else(l,\".disableVertexAttribArray(\",h,\");\",l,\".vertexAttrib4f(\",h,\",\",f,\".x,\",f,\".y,\",f,\".z,\",f,\".w);\",f,\".buffer=null;\"),r(p),Q&&r(o,\".vertexAttribDivisorANGLE(\",h,\",\",f,\".divisor);\")}return Object.keys(at).forEach(function(n){var i=at[n],o=a.def(c,\".\",n),s=t.block();s(\"if(\",o,\"){\",l,\".enable(\",i,\")}else{\",l,\".disable(\",i,\")}\",u,\".\",n,\"=\",o,\";\"),r(s),e(\"if(\",o,\"!==\",u,\".\",n,\"){\",s,\"}\")}),Object.keys(it).forEach(function(n){var o,s,h=it[n],f=tt[n],p=t.block();p(l,\".\",h,\"(\"),v(f)?(h=f.length,o=t.global.def(c,\".\",n),s=t.global.def(u,\".\",n),p(i(h,function(t){return o+\"[\"+t+\"]\"}),\");\",i(h,function(t){return s+\"[\"+t+\"]=\"+o+\"[\"+t+\"];\"}).join(\"\")),e(\"if(\",i(h,function(t){return o+\"[\"+t+\"]!==\"+s+\"[\"+t+\"]\"}).join(\"||\"),\"){\",p,\"}\")):(o=a.def(c,\".\",n),s=a.def(u,\".\",n),p(o,\");\",u,\".\",n,\"=\",o,\";\"),e(\"if(\",o,\"!==\",s,\"){\",p,\"}\")),r(p)}),t.compile()}(),compile:function(t,e,r,n,a){var i=b();return i.stats=i.link(a),Object.keys(e.static).forEach(function(t){X(i,e,t)}),_t.forEach(function(e){X(i,t,e)}),r=A(t,e,r,n),function(t,e){var r=t.proc(\"draw\",1);L(t,r),M(t,r,e.context),S(t,r,e.framebuffer),E(t,r,e),C(t,r,e.state),B(t,r,e,!1,!0);var n=e.shader.progVar.append(t,r);if(r(t.shared.gl,\".useProgram(\",n,\".program);\"),e.shader.program)H(t,r,e,e.shader.program);else{var a=t.global.def(\"{}\"),i=r.def(n,\".id\"),o=r.def(a,\"[\",i,\"]\");r(t.cond(o).then(o,\".call(this,a0);\").else(o,\"=\",a,\"[\",i,\"]=\",t.link(function(r){return q(H,t,e,r,1)}),\"(\",n,\");\",o,\".call(this,a0);\"))}0<Object.keys(e.state).length&&r(t.shared.current,\".dirty=true;\")}(i,r),W(i,r),function(t,e){function r(t){return t.contextDep&&a||t.propDep}var n=t.proc(\"batch\",2);t.batchId=\"0\",L(t,n);var a=!1,i=!0;Object.keys(e.context).forEach(function(t){a=a||e.context[t].propDep}),a||(M(t,n,e.context),i=!1);var o=!1;if((s=e.framebuffer)?(s.propDep?a=o=!0:s.contextDep&&a&&(o=!0),o||S(t,n,s)):S(t,n,null),e.state.viewport&&e.state.viewport.propDep&&(a=!0),E(t,n,e),C(t,n,e.state,function(t){return!r(t)}),e.profile&&r(e.profile)||B(t,n,e,!1,\"a1\"),e.contextDep=a,e.needsContext=i,e.needsFramebuffer=o,(i=e.shader.progVar).contextDep&&a||i.propDep)Y(t,n,e,null);else if(i=i.append(t,n),n(t.shared.gl,\".useProgram(\",i,\".program);\"),e.shader.program)Y(t,n,e,e.shader.program);else{var s=t.global.def(\"{}\"),l=(o=n.def(i,\".id\"),n.def(s,\"[\",o,\"]\"));n(t.cond(l).then(l,\".call(this,a0,a1);\").else(l,\"=\",s,\"[\",o,\"]=\",t.link(function(r){return q(Y,t,e,r,2)}),\"(\",i,\");\",l,\".call(this,a0,a1);\"))}0<Object.keys(e.state).length&&n(t.shared.current,\".dirty=true;\")}(i,r),i.compile()}}}function N(t,e){for(var r=0;r<t.length;++r)if(t[r]===e)return r;return-1}var j=function(t,e){for(var r=Object.keys(e),n=0;n<r.length;++n)t[r[n]]=e[r[n]];return t},V=0,U={DynamicVariable:t,define:function(r,n){return new t(r,e(n+\"\"))},isDynamic:function(e){return\"function\"==typeof e&&!e._reglType||e instanceof t},unbox:function(e,r){return\"function\"==typeof e?new t(0,e):e},accessor:e},q={next:\"function\"==typeof requestAnimationFrame?function(t){return requestAnimationFrame(t)}:function(t){return setTimeout(t,16)},cancel:\"function\"==typeof cancelAnimationFrame?function(t){return cancelAnimationFrame(t)}:clearTimeout},H=\"undefined\"!=typeof performance&&performance.now?function(){return performance.now()}:function(){return+new Date},G=s();G.zero=s();var Y=function(t,e){var r=1;e.ext_texture_filter_anisotropic&&(r=t.getParameter(34047));var n=1,a=1;e.webgl_draw_buffers&&(n=t.getParameter(34852),a=t.getParameter(36063));var i=!!e.oes_texture_float;if(i){i=t.createTexture(),t.bindTexture(3553,i),t.texImage2D(3553,0,6408,1,1,0,6408,5126,null);var o=t.createFramebuffer();if(t.bindFramebuffer(36160,o),t.framebufferTexture2D(36160,36064,3553,i,0),t.bindTexture(3553,null),36053!==t.checkFramebufferStatus(36160))i=!1;else{t.viewport(0,0,1,1),t.clearColor(1,0,0,1),t.clear(16384);var s=G.allocType(5126,4);t.readPixels(0,0,1,1,6408,5126,s),t.getError()?i=!1:(t.deleteFramebuffer(o),t.deleteTexture(i),i=1===s[0]),G.freeType(s)}}return s=!0,\"undefined\"!=typeof navigator&&(/MSIE/.test(navigator.userAgent)||/Trident\\//.test(navigator.appVersion)||/Edge/.test(navigator.userAgent))||(s=t.createTexture(),o=G.allocType(5121,36),t.activeTexture(33984),t.bindTexture(34067,s),t.texImage2D(34069,0,6408,3,3,0,6408,5121,o),G.freeType(o),t.bindTexture(34067,null),t.deleteTexture(s),s=!t.getError()),{colorBits:[t.getParameter(3410),t.getParameter(3411),t.getParameter(3412),t.getParameter(3413)],depthBits:t.getParameter(3414),stencilBits:t.getParameter(3415),subpixelBits:t.getParameter(3408),extensions:Object.keys(e).filter(function(t){return!!e[t]}),maxAnisotropic:r,maxDrawbuffers:n,maxColorAttachments:a,pointSizeDims:t.getParameter(33901),lineWidthDims:t.getParameter(33902),maxViewportDims:t.getParameter(3386),maxCombinedTextureUnits:t.getParameter(35661),maxCubeMapSize:t.getParameter(34076),maxRenderbufferSize:t.getParameter(34024),maxTextureUnits:t.getParameter(34930),maxTextureSize:t.getParameter(3379),maxAttributes:t.getParameter(34921),maxVertexUniforms:t.getParameter(36347),maxVertexTextureUnits:t.getParameter(35660),maxVaryingVectors:t.getParameter(36348),maxFragmentUniforms:t.getParameter(36349),glsl:t.getParameter(35724),renderer:t.getParameter(7937),vendor:t.getParameter(7936),version:t.getParameter(7938),readFloat:i,npotTextureCube:s}},W=function(t){return t instanceof Uint8Array||t instanceof Uint16Array||t instanceof Uint32Array||t instanceof Int8Array||t instanceof Int16Array||t instanceof Int32Array||t instanceof Float32Array||t instanceof Float64Array||t instanceof Uint8ClampedArray},X=function(t){return Object.keys(t).map(function(e){return t[e]})},Z={shape:function(t){for(var e=[];t.length;t=t[0])e.push(t.length);return e},flatten:function(t,e,r,n){var a=1;if(e.length)for(var i=0;i<e.length;++i)a*=e[i];else a=0;switch(r=n||G.allocType(r,a),e.length){case 0:break;case 1:for(n=e[0],e=0;e<n;++e)r[e]=t[e];break;case 2:for(n=e[0],e=e[1],i=a=0;i<n;++i)for(var o=t[i],s=0;s<e;++s)r[a++]=o[s];break;case 3:c(t,e[0],e[1],e[2],r,0);break;default:!function t(e,r,n,a,i){for(var o=1,s=n+1;s<r.length;++s)o*=r[s];var l=r[n];if(4==r.length-n){var u=r[n+1],h=r[n+2];for(r=r[n+3],s=0;s<l;++s)c(e[s],u,h,r,a,i),i+=o}else for(s=0;s<l;++s)t(e[s],r,n+1,a,i),i+=o}(t,e,0,r,0)}return r}},J={\"[object Int8Array]\":5120,\"[object Int16Array]\":5122,\"[object Int32Array]\":5124,\"[object Uint8Array]\":5121,\"[object Uint8ClampedArray]\":5121,\"[object Uint16Array]\":5123,\"[object Uint32Array]\":5125,\"[object Float32Array]\":5126,\"[object Float64Array]\":5121,\"[object ArrayBuffer]\":5121},K={int8:5120,int16:5122,int32:5124,uint8:5121,uint16:5123,uint32:5125,float:5126,float32:5126},Q={dynamic:35048,stream:35040,static:35044},$=Z.flatten,tt=Z.shape,et=[];et[5120]=1,et[5122]=2,et[5124]=4,et[5121]=1,et[5123]=2,et[5125]=4,et[5126]=4;var rt={points:0,point:0,lines:1,line:1,triangles:4,triangle:4,\"line loop\":2,\"line strip\":3,\"triangle strip\":5,\"triangle fan\":6},nt=new Float32Array(1),at=new Uint32Array(nt.buffer),it=[9984,9986,9985,9987],ot=[0,6409,6410,6407,6408],st={};st[6409]=st[6406]=st[6402]=1,st[34041]=st[6410]=2,st[6407]=st[35904]=3,st[6408]=st[35906]=4;var lt=m(\"HTMLCanvasElement\"),ct=m(\"CanvasRenderingContext2D\"),ut=m(\"ImageBitmap\"),ht=m(\"HTMLImageElement\"),ft=m(\"HTMLVideoElement\"),pt=Object.keys(J).concat([lt,ct,ut,ht,ft]),dt=[];dt[5121]=1,dt[5126]=4,dt[36193]=2,dt[5123]=2,dt[5125]=4;var gt=[];gt[32854]=2,gt[32855]=2,gt[36194]=2,gt[34041]=4,gt[33776]=.5,gt[33777]=.5,gt[33778]=1,gt[33779]=1,gt[35986]=.5,gt[35987]=1,gt[34798]=1,gt[35840]=.5,gt[35841]=.25,gt[35842]=.5,gt[35843]=.25,gt[36196]=.5;var vt=[];vt[32854]=2,vt[32855]=2,vt[36194]=2,vt[33189]=2,vt[36168]=1,vt[34041]=4,vt[35907]=4,vt[34836]=16,vt[34842]=8,vt[34843]=6;var mt=function(t,e,r,n,a){function i(t){this.id=c++,this.refCount=1,this.renderbuffer=t,this.format=32854,this.height=this.width=0,a.profile&&(this.stats={size:0})}function o(e){var r=e.renderbuffer;t.bindRenderbuffer(36161,null),t.deleteRenderbuffer(r),e.renderbuffer=null,e.refCount=0,delete u[e.id],n.renderbufferCount--}var s={rgba4:32854,rgb565:36194,\"rgb5 a1\":32855,depth:33189,stencil:36168,\"depth stencil\":34041};e.ext_srgb&&(s.srgba=35907),e.ext_color_buffer_half_float&&(s.rgba16f=34842,s.rgb16f=34843),e.webgl_color_buffer_float&&(s.rgba32f=34836);var l=[];Object.keys(s).forEach(function(t){l[s[t]]=t});var c=0,u={};return i.prototype.decRef=function(){0>=--this.refCount&&o(this)},a.profile&&(n.getTotalRenderbufferSize=function(){var t=0;return Object.keys(u).forEach(function(e){t+=u[e].stats.size}),t}),{create:function(e,r){function o(e,r){var n=0,i=0,u=32854;if(\"object\"==typeof e&&e?(\"shape\"in e?(n=0|(i=e.shape)[0],i=0|i[1]):(\"radius\"in e&&(n=i=0|e.radius),\"width\"in e&&(n=0|e.width),\"height\"in e&&(i=0|e.height)),\"format\"in e&&(u=s[e.format])):\"number\"==typeof e?(n=0|e,i=\"number\"==typeof r?0|r:n):e||(n=i=1),n!==c.width||i!==c.height||u!==c.format)return o.width=c.width=n,o.height=c.height=i,c.format=u,t.bindRenderbuffer(36161,c.renderbuffer),t.renderbufferStorage(36161,u,n,i),a.profile&&(c.stats.size=vt[c.format]*c.width*c.height),o.format=l[c.format],o}var c=new i(t.createRenderbuffer());return u[c.id]=c,n.renderbufferCount++,o(e,r),o.resize=function(e,r){var n=0|e,i=0|r||n;return n===c.width&&i===c.height?o:(o.width=c.width=n,o.height=c.height=i,t.bindRenderbuffer(36161,c.renderbuffer),t.renderbufferStorage(36161,c.format,n,i),a.profile&&(c.stats.size=vt[c.format]*c.width*c.height),o)},o._reglType=\"renderbuffer\",o._renderbuffer=c,a.profile&&(o.stats=c.stats),o.destroy=function(){c.decRef()},o},clear:function(){X(u).forEach(o)},restore:function(){X(u).forEach(function(e){e.renderbuffer=t.createRenderbuffer(),t.bindRenderbuffer(36161,e.renderbuffer),t.renderbufferStorage(36161,e.format,e.width,e.height)}),t.bindRenderbuffer(36161,null)}}},yt=[];yt[6408]=4,yt[6407]=3;var xt=[];xt[5121]=1,xt[5126]=4,xt[36193]=2;var bt=[\"x\",\"y\",\"z\",\"w\"],_t=\"blend.func blend.equation stencil.func stencil.opFront stencil.opBack sample.coverage viewport scissor.box polygonOffset.offset\".split(\" \"),wt={0:0,1:1,zero:0,one:1,\"src color\":768,\"one minus src color\":769,\"src alpha\":770,\"one minus src alpha\":771,\"dst color\":774,\"one minus dst color\":775,\"dst alpha\":772,\"one minus dst alpha\":773,\"constant color\":32769,\"one minus constant color\":32770,\"constant alpha\":32771,\"one minus constant alpha\":32772,\"src alpha saturate\":776},kt={never:512,less:513,\"<\":513,equal:514,\"=\":514,\"==\":514,\"===\":514,lequal:515,\"<=\":515,greater:516,\">\":516,notequal:517,\"!=\":517,\"!==\":517,gequal:518,\">=\":518,always:519},Tt={0:0,zero:0,keep:7680,replace:7681,increment:7682,decrement:7683,\"increment wrap\":34055,\"decrement wrap\":34056,invert:5386},At={cw:2304,ccw:2305},Mt=new z(!1,!1,!1,function(){});return function(t){function e(){if(0===Z.length)w&&w.update(),$=null;else{$=q.next(e),h();for(var t=Z.length-1;0<=t;--t){var r=Z[t];r&&r(P,null,0)}v.flush(),w&&w.update()}}function r(){!$&&0<Z.length&&($=q.next(e))}function n(){$&&(q.cancel(e),$=null)}function i(t){t.preventDefault(),n(),J.forEach(function(t){t()})}function o(t){v.getError(),y.restore(),D.restore(),I.restore(),R.restore(),F.restore(),V.restore(),w&&w.restore(),G.procs.refresh(),r(),K.forEach(function(t){t()})}function s(t){function e(t){var e={},r={};return Object.keys(t).forEach(function(n){var a=t[n];U.isDynamic(a)?r[n]=U.unbox(a,n):e[n]=a}),{dynamic:r,static:e}}var r=e(t.context||{}),n=e(t.uniforms||{}),a=e(t.attributes||{}),i=e(function(t){function e(t){if(t in r){var e=r[t];delete r[t],Object.keys(e).forEach(function(n){r[t+\".\"+n]=e[n]})}}var r=j({},t);return delete r.uniforms,delete r.attributes,delete r.context,\"stencil\"in r&&r.stencil.op&&(r.stencil.opBack=r.stencil.opFront=r.stencil.op,delete r.stencil.op),e(\"blend\"),e(\"depth\"),e(\"cull\"),e(\"stencil\"),e(\"polygonOffset\"),e(\"scissor\"),e(\"sample\"),r}(t));t={gpuTime:0,cpuTime:0,count:0};var o=(r=G.compile(i,a,n,r,t)).draw,s=r.batch,l=r.scope,c=[];return j(function(t,e){var r;if(\"function\"==typeof t)return l.call(this,null,t,0);if(\"function\"==typeof e)if(\"number\"==typeof t)for(r=0;r<t;++r)l.call(this,null,e,r);else{if(!Array.isArray(t))return l.call(this,t,e,0);for(r=0;r<t.length;++r)l.call(this,t[r],e,r)}else if(\"number\"==typeof t){if(0<t)return s.call(this,function(t){for(;c.length<t;)c.push(null);return c}(0|t),0|t)}else{if(!Array.isArray(t))return o.call(this,t);if(t.length)return s.call(this,t,t.length)}},{stats:t})}function l(t,e){var r=0;G.procs.poll();var n=e.color;n&&(v.clearColor(+n[0]||0,+n[1]||0,+n[2]||0,+n[3]||0),r|=16384),\"depth\"in e&&(v.clearDepth(+e.depth),r|=256),\"stencil\"in e&&(v.clearStencil(0|e.stencil),r|=1024),v.clear(r)}function c(t){return Z.push(t),r(),{cancel:function(){var e=N(Z,t);Z[e]=function t(){var e=N(Z,t);Z[e]=Z[Z.length-1],--Z.length,0>=Z.length&&n()}}}}function u(){var t=W.viewport,e=W.scissor_box;t[0]=t[1]=e[0]=e[1]=0,P.viewportWidth=P.framebufferWidth=P.drawingBufferWidth=t[2]=e[2]=v.drawingBufferWidth,P.viewportHeight=P.framebufferHeight=P.drawingBufferHeight=t[3]=e[3]=v.drawingBufferHeight}function h(){P.tick+=1,P.time=g(),u(),G.procs.poll()}function f(){u(),G.procs.refresh(),w&&w.update()}function g(){return(H()-k)/1e3}if(!(t=a(t)))return null;var v=t.gl,m=v.getContextAttributes();v.isContextLost();var y=function(t,e){function r(e){var r;e=e.toLowerCase();try{r=n[e]=t.getExtension(e)}catch(t){}return!!r}for(var n={},a=0;a<e.extensions.length;++a){var i=e.extensions[a];if(!r(i))return e.onDestroy(),e.onDone('\"'+i+'\" extension is not supported by the current WebGL context, try upgrading your system or a different browser'),null}return e.optionalExtensions.forEach(r),{extensions:n,restore:function(){Object.keys(n).forEach(function(t){if(n[t]&&!r(t))throw Error(\"(regl): error restoring extension \"+t)})}}}(v,t);if(!y)return null;var x=function(){var t={\"\":0},e=[\"\"];return{id:function(r){var n=t[r];return n||(n=t[r]=e.length,e.push(r),n)},str:function(t){return e[t]}}}(),b={bufferCount:0,elementsCount:0,framebufferCount:0,shaderCount:0,textureCount:0,cubeCount:0,renderbufferCount:0,maxTextureUnits:0},_=y.extensions,w=function(t,e){function r(){this.endQueryIndex=this.startQueryIndex=-1,this.sum=0,this.stats=null}function n(t,e,n){var a=o.pop()||new r;a.startQueryIndex=t,a.endQueryIndex=e,a.sum=0,a.stats=n,s.push(a)}if(!e.ext_disjoint_timer_query)return null;var a=[],i=[],o=[],s=[],l=[],c=[];return{beginQuery:function(t){var r=a.pop()||e.ext_disjoint_timer_query.createQueryEXT();e.ext_disjoint_timer_query.beginQueryEXT(35007,r),i.push(r),n(i.length-1,i.length,t)},endQuery:function(){e.ext_disjoint_timer_query.endQueryEXT(35007)},pushScopeStats:n,update:function(){var t,r;if(0!==(t=i.length)){c.length=Math.max(c.length,t+1),l.length=Math.max(l.length,t+1),l[0]=0;var n=c[0]=0;for(r=t=0;r<i.length;++r){var u=i[r];e.ext_disjoint_timer_query.getQueryObjectEXT(u,34919)?(n+=e.ext_disjoint_timer_query.getQueryObjectEXT(u,34918),a.push(u)):i[t++]=u,l[r+1]=n,c[r+1]=t}for(i.length=t,r=t=0;r<s.length;++r){var h=(n=s[r]).startQueryIndex;u=n.endQueryIndex,n.sum+=l[u]-l[h],h=c[h],(u=c[u])===h?(n.stats.gpuTime+=n.sum/1e6,o.push(n)):(n.startQueryIndex=h,n.endQueryIndex=u,s[t++]=n)}s.length=t}},getNumPendingQueries:function(){return i.length},clear:function(){a.push.apply(a,i);for(var t=0;t<a.length;t++)e.ext_disjoint_timer_query.deleteQueryEXT(a[t]);i.length=0,a.length=0},restore:function(){i.length=0,a.length=0}}}(0,_),k=H(),C=v.drawingBufferWidth,L=v.drawingBufferHeight,P={tick:0,time:0,viewportWidth:C,viewportHeight:L,framebufferWidth:C,framebufferHeight:L,drawingBufferWidth:C,drawingBufferHeight:L,pixelRatio:t.pixelRatio},O=Y(v,_),I=(C=function(t,e,r,n){for(t=r.maxAttributes,e=Array(t),r=0;r<t;++r)e[r]=new M;return{Record:M,scope:{},state:e}}(v,_,O),p(v,b,t,C)),z=d(v,_,I,b),D=S(v,x,b,t),R=T(v,_,O,function(){G.procs.poll()},P,b,t),F=mt(v,_,0,b,t),V=A(v,_,O,R,F,b),G=B(v,x,_,O,I,z,0,V,{},C,D,{elements:null,primitive:4,count:-1,offset:0,instances:-1},P,w,t),W=(x=E(v,V,G.procs.poll,P),G.next),X=v.canvas,Z=[],J=[],K=[],Q=[t.onDestroy],$=null;X&&(X.addEventListener(\"webglcontextlost\",i,!1),X.addEventListener(\"webglcontextrestored\",o,!1));var tt=V.setFBO=s({framebuffer:U.define.call(null,1,\"framebuffer\")});return f(),m=j(s,{clear:function(t){if(\"framebuffer\"in t)if(t.framebuffer&&\"framebufferCube\"===t.framebuffer_reglType)for(var e=0;6>e;++e)tt(j({framebuffer:t.framebuffer.faces[e]},t),l);else tt(t,l);else l(0,t)},prop:U.define.bind(null,1),context:U.define.bind(null,2),this:U.define.bind(null,3),draw:s({}),buffer:function(t){return I.create(t,34962,!1,!1)},elements:function(t){return z.create(t,!1)},texture:R.create2D,cube:R.createCube,renderbuffer:F.create,framebuffer:V.create,framebufferCube:V.createCube,attributes:m,frame:c,on:function(t,e){var r;switch(t){case\"frame\":return c(e);case\"lost\":r=J;break;case\"restore\":r=K;break;case\"destroy\":r=Q}return r.push(e),{cancel:function(){for(var t=0;t<r.length;++t)if(r[t]===e){r[t]=r[r.length-1],r.pop();break}}}},limits:O,hasExtension:function(t){return 0<=O.extensions.indexOf(t.toLowerCase())},read:x,destroy:function(){Z.length=0,n(),X&&(X.removeEventListener(\"webglcontextlost\",i),X.removeEventListener(\"webglcontextrestored\",o)),D.clear(),V.clear(),F.clear(),R.clear(),z.clear(),I.clear(),w&&w.clear(),Q.forEach(function(t){t()})},_gl:v,_refresh:f,poll:function(){h(),w&&w.update()},now:g,stats:b}),t.onDone(null,m),m}},\"object\"==typeof r&&\"undefined\"!=typeof e?e.exports=a():n.createREGL=a()},{}],504:[function(t,e,r){\"use strict\";var n,a=\"\";e.exports=function(t,e){if(\"string\"!=typeof t)throw new TypeError(\"expected a string\");if(1===e)return t;if(2===e)return t+t;var r=t.length*e;if(n!==t||\"undefined\"==typeof n)n=t,a=\"\";else if(a.length>=r)return a.substr(0,r);for(;r>a.length&&e>1;)1&e&&(a+=t),e>>=1,t+=t;return a=(a+=t).substr(0,r)}},{}],505:[function(t,e,r){(function(t){e.exports=t.performance&&t.performance.now?function(){return performance.now()}:Date.now||function(){return+new Date}}).call(this,\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{}],506:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=t.length,r=t[t.length-1],n=e,a=e-2;a>=0;--a){var i=r,o=t[a],s=(r=i+o)-i,l=o-s;l&&(t[--n]=r,r=l)}for(var c=0,a=n;a<e;++a){var i=t[a],o=r,s=(r=i+o)-i,l=o-s;l&&(t[c++]=l)}return t[c++]=r,t.length=c,t}},{}],507:[function(t,e,r){\"use strict\";var n=t(\"two-product\"),a=t(\"robust-sum\"),i=t(\"robust-scale\"),o=t(\"robust-compress\"),s=6;function l(t,e){for(var r=new Array(t.length-1),n=1;n<t.length;++n)for(var a=r[n-1]=new Array(t.length-1),i=0,o=0;i<t.length;++i)i!==e&&(a[o++]=t[n][i]);return r}function c(t){if(2===t.length)return[\"sum(prod(\",t[0][0],\",\",t[1][1],\"),prod(-\",t[0][1],\",\",t[1][0],\"))\"].join(\"\");for(var e=[],r=0;r<t.length;++r)e.push([\"scale(\",c(l(t,r)),\",\",(n=r,1&n?\"-\":\"\"),t[0][r],\")\"].join(\"\"));return function t(e){if(1===e.length)return e[0];if(2===e.length)return[\"sum(\",e[0],\",\",e[1],\")\"].join(\"\");var r=e.length>>1;return[\"sum(\",t(e.slice(0,r)),\",\",t(e.slice(r)),\")\"].join(\"\")}(e);var n}function u(t){return new Function(\"sum\",\"scale\",\"prod\",\"compress\",[\"function robustDeterminant\",t,\"(m){return compress(\",c(function(t){for(var e=new Array(t),r=0;r<t;++r){e[r]=new Array(t);for(var n=0;n<t;++n)e[r][n]=[\"m[\",r,\"][\",n,\"]\"].join(\"\")}return e}(t)),\")};return robustDeterminant\",t].join(\"\"))(a,i,n,o)}var h=[function(){return[0]},function(t){return[t[0][0]]}];!function(){for(;h.length<s;)h.push(u(h.length));for(var t=[],r=[\"function robustDeterminant(m){switch(m.length){\"],n=0;n<s;++n)t.push(\"det\"+n),r.push(\"case \",n,\":return det\",n,\"(m);\");r.push(\"}var det=CACHE[m.length];if(!det)det=CACHE[m.length]=gen(m.length);return det(m);}return robustDeterminant\"),t.push(\"CACHE\",\"gen\",r.join(\"\"));var a=Function.apply(void 0,t);for(e.exports=a.apply(void 0,h.concat([h,u])),n=0;n<h.length;++n)e.exports[n]=h[n]}()},{\"robust-compress\":506,\"robust-scale\":513,\"robust-sum\":516,\"two-product\":544}],508:[function(t,e,r){\"use strict\";var n=t(\"two-product\"),a=t(\"robust-sum\");e.exports=function(t,e){for(var r=n(t[0],e[0]),i=1;i<t.length;++i)r=a(r,n(t[i],e[i]));return r}},{\"robust-sum\":516,\"two-product\":544}],509:[function(t,e,r){\"use strict\";var n=t(\"two-product\"),a=t(\"robust-sum\"),i=t(\"robust-subtract\"),o=t(\"robust-scale\"),s=6;function l(t,e){for(var r=new Array(t.length-1),n=1;n<t.length;++n)for(var a=r[n-1]=new Array(t.length-1),i=0,o=0;i<t.length;++i)i!==e&&(a[o++]=t[n][i]);return r}function c(t){if(1===t.length)return t[0];if(2===t.length)return[\"sum(\",t[0],\",\",t[1],\")\"].join(\"\");var e=t.length>>1;return[\"sum(\",c(t.slice(0,e)),\",\",c(t.slice(e)),\")\"].join(\"\")}function u(t,e){if(\"m\"===t.charAt(0)){if(\"w\"===e.charAt(0)){var r=t.split(\"[\");return[\"w\",e.substr(1),\"m\",r[0].substr(1)].join(\"\")}return[\"prod(\",t,\",\",e,\")\"].join(\"\")}return u(e,t)}function h(t){if(2===t.length)return[[\"diff(\",u(t[0][0],t[1][1]),\",\",u(t[1][0],t[0][1]),\")\"].join(\"\")];for(var e=[],r=0;r<t.length;++r)e.push([\"scale(\",c(h(l(t,r))),\",\",(n=r,!0&n?\"-\":\"\"),t[0][r],\")\"].join(\"\"));return e;var n}function f(t,e){for(var r=[],n=0;n<e-2;++n)r.push([\"prod(m\",t,\"[\",n,\"],m\",t,\"[\",n,\"])\"].join(\"\"));return c(r)}function p(t){for(var e=[],r=[],s=function(t){for(var e=new Array(t),r=0;r<t;++r){e[r]=new Array(t);for(var n=0;n<t;++n)e[r][n]=[\"m\",n,\"[\",t-r-2,\"]\"].join(\"\")}return e}(t),u=0;u<t;++u)s[0][u]=\"1\",s[t-1][u]=\"w\"+u;for(u=0;u<t;++u)0==(1&u)?e.push.apply(e,h(l(s,u))):r.push.apply(r,h(l(s,u)));var p=c(e),d=c(r),g=\"exactInSphere\"+t,v=[];for(u=0;u<t;++u)v.push(\"m\"+u);var m=[\"function \",g,\"(\",v.join(),\"){\"];for(u=0;u<t;++u){m.push(\"var w\",u,\"=\",f(u,t),\";\");for(var y=0;y<t;++y)y!==u&&m.push(\"var w\",u,\"m\",y,\"=scale(w\",u,\",m\",y,\"[0]);\")}return m.push(\"var p=\",p,\",n=\",d,\",d=diff(p,n);return d[d.length-1];}return \",g),new Function(\"sum\",\"diff\",\"prod\",\"scale\",m.join(\"\"))(a,i,n,o)}var d=[function(){return 0},function(){return 0},function(){return 0}];!function(){for(;d.length<=s;)d.push(p(d.length));for(var t=[],r=[\"slow\"],n=0;n<=s;++n)t.push(\"a\"+n),r.push(\"o\"+n);var a=[\"function testInSphere(\",t.join(),\"){switch(arguments.length){case 0:case 1:return 0;\"];for(n=2;n<=s;++n)a.push(\"case \",n,\":return o\",n,\"(\",t.slice(0,n).join(),\");\");a.push(\"}var s=new Array(arguments.length);for(var i=0;i<arguments.length;++i){s[i]=arguments[i]};return slow(s);}return testInSphere\"),r.push(a.join(\"\"));var i=Function.apply(void 0,r);for(e.exports=i.apply(void 0,[function(t){var e=d[t.length];return e||(e=d[t.length]=p(t.length)),e.apply(void 0,t)}].concat(d)),n=0;n<=s;++n)e.exports[n]=d[n]}()},{\"robust-scale\":513,\"robust-subtract\":515,\"robust-sum\":516,\"two-product\":544}],510:[function(t,e,r){\"use strict\";var n=t(\"robust-determinant\"),a=6;function i(t){for(var e=\"robustLinearSolve\"+t+\"d\",r=[\"function \",e,\"(A,b){return [\"],a=0;a<t;++a){r.push(\"det([\");for(var i=0;i<t;++i){i>0&&r.push(\",\"),r.push(\"[\");for(var o=0;o<t;++o)o>0&&r.push(\",\"),o===a?r.push(\"+b[\",i,\"]\"):r.push(\"+A[\",i,\"][\",o,\"]\");r.push(\"]\")}r.push(\"]),\")}r.push(\"det(A)]}return \",e);var s=new Function(\"det\",r.join(\"\"));return s(t<6?n[t]:n)}var o=[function(){return[0]},function(t,e){return[[e[0]],[t[0][0]]]}];!function(){for(;o.length<a;)o.push(i(o.length));for(var t=[],r=[\"function dispatchLinearSolve(A,b){switch(A.length){\"],n=0;n<a;++n)t.push(\"s\"+n),r.push(\"case \",n,\":return s\",n,\"(A,b);\");r.push(\"}var s=CACHE[A.length];if(!s)s=CACHE[A.length]=g(A.length);return s(A,b)}return dispatchLinearSolve\"),t.push(\"CACHE\",\"g\",r.join(\"\"));var s=Function.apply(void 0,t);for(e.exports=s.apply(void 0,o.concat([o,i])),n=0;n<a;++n)e.exports[n]=o[n]}()},{\"robust-determinant\":507}],511:[function(t,e,r){\"use strict\";var n=t(\"two-product\"),a=t(\"robust-sum\"),i=t(\"robust-scale\"),o=t(\"robust-subtract\"),s=5;function l(t,e){for(var r=new Array(t.length-1),n=1;n<t.length;++n)for(var a=r[n-1]=new Array(t.length-1),i=0,o=0;i<t.length;++i)i!==e&&(a[o++]=t[n][i]);return r}function c(t){if(1===t.length)return t[0];if(2===t.length)return[\"sum(\",t[0],\",\",t[1],\")\"].join(\"\");var e=t.length>>1;return[\"sum(\",c(t.slice(0,e)),\",\",c(t.slice(e)),\")\"].join(\"\")}function u(t){if(2===t.length)return[[\"sum(prod(\",t[0][0],\",\",t[1][1],\"),prod(-\",t[0][1],\",\",t[1][0],\"))\"].join(\"\")];for(var e=[],r=0;r<t.length;++r)e.push([\"scale(\",c(u(l(t,r))),\",\",(n=r,1&n?\"-\":\"\"),t[0][r],\")\"].join(\"\"));return e;var n}function h(t){for(var e=[],r=[],s=function(t){for(var e=new Array(t),r=0;r<t;++r){e[r]=new Array(t);for(var n=0;n<t;++n)e[r][n]=[\"m\",n,\"[\",t-r-1,\"]\"].join(\"\")}return e}(t),h=[],f=0;f<t;++f)0==(1&f)?e.push.apply(e,u(l(s,f))):r.push.apply(r,u(l(s,f))),h.push(\"m\"+f);var p=c(e),d=c(r),g=\"orientation\"+t+\"Exact\",v=[\"function \",g,\"(\",h.join(),\"){var p=\",p,\",n=\",d,\",d=sub(p,n);return d[d.length-1];};return \",g].join(\"\");return new Function(\"sum\",\"prod\",\"scale\",\"sub\",v)(a,n,i,o)}var f=h(3),p=h(4),d=[function(){return 0},function(){return 0},function(t,e){return e[0]-t[0]},function(t,e,r){var n,a=(t[1]-r[1])*(e[0]-r[0]),i=(t[0]-r[0])*(e[1]-r[1]),o=a-i;if(a>0){if(i<=0)return o;n=a+i}else{if(!(a<0))return o;if(i>=0)return o;n=-(a+i)}var s=3.3306690738754716e-16*n;return o>=s||o<=-s?o:f(t,e,r)},function(t,e,r,n){var a=t[0]-n[0],i=e[0]-n[0],o=r[0]-n[0],s=t[1]-n[1],l=e[1]-n[1],c=r[1]-n[1],u=t[2]-n[2],h=e[2]-n[2],f=r[2]-n[2],d=i*c,g=o*l,v=o*s,m=a*c,y=a*l,x=i*s,b=u*(d-g)+h*(v-m)+f*(y-x),_=7.771561172376103e-16*((Math.abs(d)+Math.abs(g))*Math.abs(u)+(Math.abs(v)+Math.abs(m))*Math.abs(h)+(Math.abs(y)+Math.abs(x))*Math.abs(f));return b>_||-b>_?b:p(t,e,r,n)}];!function(){for(;d.length<=s;)d.push(h(d.length));for(var t=[],r=[\"slow\"],n=0;n<=s;++n)t.push(\"a\"+n),r.push(\"o\"+n);var a=[\"function getOrientation(\",t.join(),\"){switch(arguments.length){case 0:case 1:return 0;\"];for(n=2;n<=s;++n)a.push(\"case \",n,\":return o\",n,\"(\",t.slice(0,n).join(),\");\");a.push(\"}var s=new Array(arguments.length);for(var i=0;i<arguments.length;++i){s[i]=arguments[i]};return slow(s);}return getOrientation\"),r.push(a.join(\"\"));var i=Function.apply(void 0,r);for(e.exports=i.apply(void 0,[function(t){var e=d[t.length];return e||(e=d[t.length]=h(t.length)),e.apply(void 0,t)}].concat(d)),n=0;n<=s;++n)e.exports[n]=d[n]}()},{\"robust-scale\":513,\"robust-subtract\":515,\"robust-sum\":516,\"two-product\":544}],512:[function(t,e,r){\"use strict\";var n=t(\"robust-sum\"),a=t(\"robust-scale\");e.exports=function(t,e){if(1===t.length)return a(e,t[0]);if(1===e.length)return a(t,e[0]);if(0===t.length||0===e.length)return[0];var r=[0];if(t.length<e.length)for(var i=0;i<t.length;++i)r=n(r,a(e,t[i]));else for(var i=0;i<e.length;++i)r=n(r,a(t,e[i]));return r}},{\"robust-scale\":513,\"robust-sum\":516}],513:[function(t,e,r){\"use strict\";var n=t(\"two-product\"),a=t(\"two-sum\");e.exports=function(t,e){var r=t.length;if(1===r){var i=n(t[0],e);return i[0]?i:[i[1]]}var o=new Array(2*r),s=[.1,.1],l=[.1,.1],c=0;n(t[0],e,s),s[0]&&(o[c++]=s[0]);for(var u=1;u<r;++u){n(t[u],e,l);var h=s[1];a(h,l[0],s),s[0]&&(o[c++]=s[0]);var f=l[1],p=s[1],d=f+p,g=d-f,v=p-g;s[1]=d,v&&(o[c++]=v)}s[1]&&(o[c++]=s[1]);0===c&&(o[c++]=0);return o.length=c,o}},{\"two-product\":544,\"two-sum\":545}],514:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,a){var i=n(t,r,a),o=n(e,r,a);if(i>0&&o>0||i<0&&o<0)return!1;var s=n(r,t,e),l=n(a,t,e);if(s>0&&l>0||s<0&&l<0)return!1;if(0===i&&0===o&&0===s&&0===l)return function(t,e,r,n){for(var a=0;a<2;++a){var i=t[a],o=e[a],s=Math.min(i,o),l=Math.max(i,o),c=r[a],u=n[a],h=Math.min(c,u),f=Math.max(c,u);if(f<s||l<h)return!1}return!0}(t,e,r,a);return!0};var n=t(\"robust-orientation\")[3]},{\"robust-orientation\":511}],515:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=0|t.length,n=0|e.length;if(1===r&&1===n)return function(t,e){var r=t+e,n=r-t,a=t-(r-n)+(e-n);if(a)return[a,r];return[r]}(t[0],-e[0]);var a,i,o=new Array(r+n),s=0,l=0,c=0,u=Math.abs,h=t[l],f=u(h),p=-e[c],d=u(p);f<d?(i=h,(l+=1)<r&&(h=t[l],f=u(h))):(i=p,(c+=1)<n&&(p=-e[c],d=u(p)));l<r&&f<d||c>=n?(a=h,(l+=1)<r&&(h=t[l],f=u(h))):(a=p,(c+=1)<n&&(p=-e[c],d=u(p)));var g,v,m=a+i,y=m-a,x=i-y,b=x,_=m;for(;l<r&&c<n;)f<d?(a=h,(l+=1)<r&&(h=t[l],f=u(h))):(a=p,(c+=1)<n&&(p=-e[c],d=u(p))),(x=(i=b)-(y=(m=a+i)-a))&&(o[s++]=x),b=_-((g=_+m)-(v=g-_))+(m-v),_=g;for(;l<r;)(x=(i=b)-(y=(m=(a=h)+i)-a))&&(o[s++]=x),b=_-((g=_+m)-(v=g-_))+(m-v),_=g,(l+=1)<r&&(h=t[l]);for(;c<n;)(x=(i=b)-(y=(m=(a=p)+i)-a))&&(o[s++]=x),b=_-((g=_+m)-(v=g-_))+(m-v),_=g,(c+=1)<n&&(p=-e[c]);b&&(o[s++]=b);_&&(o[s++]=_);s||(o[s++]=0);return o.length=s,o}},{}],516:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=0|t.length,n=0|e.length;if(1===r&&1===n)return function(t,e){var r=t+e,n=r-t,a=t-(r-n)+(e-n);if(a)return[a,r];return[r]}(t[0],e[0]);var a,i,o=new Array(r+n),s=0,l=0,c=0,u=Math.abs,h=t[l],f=u(h),p=e[c],d=u(p);f<d?(i=h,(l+=1)<r&&(h=t[l],f=u(h))):(i=p,(c+=1)<n&&(p=e[c],d=u(p)));l<r&&f<d||c>=n?(a=h,(l+=1)<r&&(h=t[l],f=u(h))):(a=p,(c+=1)<n&&(p=e[c],d=u(p)));var g,v,m=a+i,y=m-a,x=i-y,b=x,_=m;for(;l<r&&c<n;)f<d?(a=h,(l+=1)<r&&(h=t[l],f=u(h))):(a=p,(c+=1)<n&&(p=e[c],d=u(p))),(x=(i=b)-(y=(m=a+i)-a))&&(o[s++]=x),b=_-((g=_+m)-(v=g-_))+(m-v),_=g;for(;l<r;)(x=(i=b)-(y=(m=(a=h)+i)-a))&&(o[s++]=x),b=_-((g=_+m)-(v=g-_))+(m-v),_=g,(l+=1)<r&&(h=t[l]);for(;c<n;)(x=(i=b)-(y=(m=(a=p)+i)-a))&&(o[s++]=x),b=_-((g=_+m)-(v=g-_))+(m-v),_=g,(c+=1)<n&&(p=e[c]);b&&(o[s++]=b);_&&(o[s++]=_);s||(o[s++]=0);return o.length=s,o}},{}],517:[function(t,e,r){\"use strict\";e.exports=function(t){return t<0?-1:t>0?1:0}},{}],518:[function(t,e,r){\"use strict\";e.exports=function(t){return a(n(t))};var n=t(\"boundary-cells\"),a=t(\"reduce-simplicial-complex\")},{\"boundary-cells\":96,\"reduce-simplicial-complex\":490}],519:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,s){r=r||0,\"undefined\"==typeof s&&(s=function(t){for(var e=t.length,r=0,n=0;n<e;++n)r=0|Math.max(r,t[n].length);return r-1}(t));if(0===t.length||s<1)return{cells:[],vertexIds:[],vertexWeights:[]};var l=function(t,e){for(var r=t.length,n=a.mallocUint8(r),i=0;i<r;++i)n[i]=t[i]<e|0;return n}(e,+r),c=function(t,e){for(var r=t.length,o=e*(e+1)/2*r|0,s=a.mallocUint32(2*o),l=0,c=0;c<r;++c)for(var u=t[c],e=u.length,h=0;h<e;++h)for(var f=0;f<h;++f){var p=u[f],d=u[h];s[l++]=0|Math.min(p,d),s[l++]=0|Math.max(p,d)}i(n(s,[l/2|0,2]));for(var g=2,c=2;c<l;c+=2)s[c-2]===s[c]&&s[c-1]===s[c+1]||(s[g++]=s[c],s[g++]=s[c+1]);return n(s,[g/2|0,2])}(t,s),u=function(t,e,r,i){for(var o=t.data,s=t.shape[0],l=a.mallocDouble(s),c=0,u=0;u<s;++u){var h=o[2*u],f=o[2*u+1];if(r[h]!==r[f]){var p=e[h],d=e[f];o[2*c]=h,o[2*c+1]=f,l[c++]=(d-i)/(d-p)}}return t.shape[0]=c,n(l,[c])}(c,e,l,+r),h=function(t,e){var r=a.mallocInt32(2*e),n=t.shape[0],i=t.data;r[0]=0;for(var o=0,s=0;s<n;++s){var l=i[2*s];if(l!==o){for(r[2*o+1]=s;++o<l;)r[2*o]=s,r[2*o+1]=s;r[2*o]=s}}r[2*o+1]=n;for(;++o<e;)r[2*o]=r[2*o+1]=n;return r}(c,0|e.length),f=o(s)(t,c.data,h,l),p=function(t){for(var e=0|t.shape[0],r=t.data,n=new Array(e),a=0;a<e;++a)n[a]=[r[2*a],r[2*a+1]];return n}(c),d=[].slice.call(u.data,0,u.shape[0]);return a.free(l),a.free(c.data),a.free(u.data),a.free(h),{cells:f,vertexIds:p,vertexWeights:d}};var n=t(\"ndarray\"),a=t(\"typedarray-pool\"),i=t(\"ndarray-sort\"),o=t(\"./lib/codegen\")},{\"./lib/codegen\":520,ndarray:451,\"ndarray-sort\":449,\"typedarray-pool\":546}],520:[function(t,e,r){\"use strict\";e.exports=function(t){var e=i[t];e||(e=i[t]=function(t){var e=0,r=new Array(t+1);r[0]=[[]];for(var i=1;i<=t;++i)for(var o=r[i]=a(i),s=0;s<o.length;++s)e=Math.max(e,o[i].length);var l=[\"function B(C,E,i,j){\",\"var a=Math.min(i,j)|0,b=Math.max(i,j)|0,l=C[2*a],h=C[2*a+1];\",\"while(l<h){\",\"var m=(l+h)>>1,v=E[2*m+1];\",\"if(v===b){return m}\",\"if(b<v){h=m}else{l=m+1}\",\"}\",\"return l;\",\"};\",\"function getContour\",t,\"d(F,E,C,S){\",\"var n=F.length,R=[];\",\"for(var i=0;i<n;++i){var c=F[i],l=c.length;\"];function c(t){if(!(t.length<=0)){l.push(\"R.push(\");for(var e=0;e<t.length;++e){var r=t[e];e>0&&l.push(\",\"),l.push(\"[\");for(var n=0;n<r.length;++n){var a=r[n];n>0&&l.push(\",\"),l.push(\"B(C,E,c[\",a[0],\"],c[\",a[1],\"])\")}l.push(\"]\")}l.push(\");\")}}for(var i=t+1;i>1;--i){i<t+1&&l.push(\"else \"),l.push(\"if(l===\",i,\"){\");for(var u=[],s=0;s<i;++s)u.push(\"(S[c[\"+s+\"]]<<\"+s+\")\");l.push(\"var M=\",u.join(\"+\"),\";if(M===0||M===\",(1<<i)-1,\"){continue}switch(M){\");for(var o=r[i-1],s=0;s<o.length;++s)l.push(\"case \",s,\":\"),c(o[s]),l.push(\"break;\");l.push(\"}}\")}return l.push(\"}return R;};return getContour\",t,\"d\"),new Function(\"pool\",l.join(\"\"))(n)}(t));return e};var n=t(\"typedarray-pool\"),a=t(\"marching-simplex-table\"),i={}},{\"marching-simplex-table\":428,\"typedarray-pool\":546}],521:[function(t,e,r){\"use strict\";var n=t(\"bit-twiddle\"),a=t(\"union-find\");function i(t,e){var r=t.length,n=t.length-e.length,a=Math.min;if(n)return n;switch(r){case 0:return 0;case 1:return t[0]-e[0];case 2:return(s=t[0]+t[1]-e[0]-e[1])||a(t[0],t[1])-a(e[0],e[1]);case 3:var i=t[0]+t[1],o=e[0]+e[1];if(s=i+t[2]-(o+e[2]))return s;var s,l=a(t[0],t[1]),c=a(e[0],e[1]);return(s=a(l,t[2])-a(c,e[2]))||a(l+t[2],i)-a(c+e[2],o);default:var u=t.slice(0);u.sort();var h=e.slice(0);h.sort();for(var f=0;f<r;++f)if(n=u[f]-h[f])return n;return 0}}function o(t,e){return i(t[0],e[0])}function s(t,e){if(e){for(var r=t.length,n=new Array(r),a=0;a<r;++a)n[a]=[t[a],e[a]];n.sort(o);for(a=0;a<r;++a)t[a]=n[a][0],e[a]=n[a][1];return t}return t.sort(i),t}function l(t){if(0===t.length)return[];for(var e=1,r=t.length,n=1;n<r;++n){var a=t[n];if(i(a,t[n-1])){if(n===e){e++;continue}t[e++]=a}}return t.length=e,t}function c(t,e){for(var r=0,n=t.length-1,a=-1;r<=n;){var o=r+n>>1,s=i(t[o],e);s<=0?(0===s&&(a=o),r=o+1):s>0&&(n=o-1)}return a}function u(t,e){for(var r=new Array(t.length),a=0,o=r.length;a<o;++a)r[a]=[];for(var s=[],l=(a=0,e.length);a<l;++a)for(var u=e[a],h=u.length,f=1,p=1<<h;f<p;++f){s.length=n.popCount(f);for(var d=0,g=0;g<h;++g)f&1<<g&&(s[d++]=u[g]);var v=c(t,s);if(!(v<0))for(;r[v++].push(a),!(v>=t.length||0!==i(t[v],s)););}return r}function h(t,e){if(e<0)return[];for(var r=[],a=(1<<e+1)-1,i=0;i<t.length;++i)for(var o=t[i],l=a;l<1<<o.length;l=n.nextCombination(l)){for(var c=new Array(e+1),u=0,h=0;h<o.length;++h)l&1<<h&&(c[u++]=o[h]);r.push(c)}return s(r)}r.dimension=function(t){for(var e=0,r=Math.max,n=0,a=t.length;n<a;++n)e=r(e,t[n].length);return e-1},r.countVertices=function(t){for(var e=-1,r=Math.max,n=0,a=t.length;n<a;++n)for(var i=t[n],o=0,s=i.length;o<s;++o)e=r(e,i[o]);return e+1},r.cloneCells=function(t){for(var e=new Array(t.length),r=0,n=t.length;r<n;++r)e[r]=t[r].slice(0);return e},r.compareCells=i,r.normalize=s,r.unique=l,r.findCell=c,r.incidence=u,r.dual=function(t,e){if(!e)return u(l(h(t,0)),t);for(var r=new Array(e),n=0;n<e;++n)r[n]=[];n=0;for(var a=t.length;n<a;++n)for(var i=t[n],o=0,s=i.length;o<s;++o)r[i[o]].push(n);return r},r.explode=function(t){for(var e=[],r=0,n=t.length;r<n;++r)for(var a=t[r],i=0|a.length,o=1,l=1<<i;o<l;++o){for(var c=[],u=0;u<i;++u)o>>>u&1&&c.push(a[u]);e.push(c)}return s(e)},r.skeleton=h,r.boundary=function(t){for(var e=[],r=0,n=t.length;r<n;++r)for(var a=t[r],i=0,o=a.length;i<o;++i){for(var l=new Array(a.length-1),c=0,u=0;c<o;++c)c!==i&&(l[u++]=a[c]);e.push(l)}return s(e)},r.connectedComponents=function(t,e){return e?function(t,e){for(var r=new a(e),n=0;n<t.length;++n)for(var i=t[n],o=0;o<i.length;++o)for(var s=o+1;s<i.length;++s)r.link(i[o],i[s]);var l=[],c=r.ranks;for(n=0;n<c.length;++n)c[n]=-1;for(n=0;n<t.length;++n){var u=r.find(t[n][0]);c[u]<0?(c[u]=l.length,l.push([t[n].slice(0)])):l[c[u]].push(t[n].slice(0))}return l}(t,e):function(t){for(var e=l(s(h(t,0))),r=new a(e.length),n=0;n<t.length;++n)for(var i=t[n],o=0;o<i.length;++o)for(var u=c(e,[i[o]]),f=o+1;f<i.length;++f)r.link(u,c(e,[i[f]]));var p=[],d=r.ranks;for(n=0;n<d.length;++n)d[n]=-1;for(n=0;n<t.length;++n){var g=r.find(c(e,[t[n][0]]));d[g]<0?(d[g]=p.length,p.push([t[n].slice(0)])):p[d[g]].push(t[n].slice(0))}return p}(t)}},{\"bit-twiddle\":93,\"union-find\":547}],522:[function(t,e,r){arguments[4][93][0].apply(r,arguments)},{dup:93}],523:[function(t,e,r){arguments[4][521][0].apply(r,arguments)},{\"bit-twiddle\":522,dup:521,\"union-find\":524}],524:[function(t,e,r){\"use strict\";function n(t){this.roots=new Array(t),this.ranks=new Array(t);for(var e=0;e<t;++e)this.roots[e]=e,this.ranks[e]=0}e.exports=n,n.prototype.length=function(){return this.roots.length},n.prototype.makeSet=function(){var t=this.roots.length;return this.roots.push(t),this.ranks.push(0),t},n.prototype.find=function(t){for(var e=this.roots;e[t]!==t;){var r=e[t];e[t]=e[r],t=r}return t},n.prototype.link=function(t,e){var r=this.find(t),n=this.find(e);if(r!==n){var a=this.ranks,i=this.roots,o=a[r],s=a[n];o<s?i[r]=n:s<o?i[n]=r:(i[n]=r,++a[r])}}},{}],525:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){for(var i=e.length,o=t.length,s=new Array(i),l=new Array(i),c=new Array(i),u=new Array(i),h=0;h<i;++h)s[h]=l[h]=-1,c[h]=1/0,u[h]=!1;for(var h=0;h<o;++h){var f=t[h];if(2!==f.length)throw new Error(\"Input must be a graph\");var p=f[1],d=f[0];-1!==l[d]?l[d]=-2:l[d]=p,-1!==s[p]?s[p]=-2:s[p]=d}function g(t){if(u[t])return 1/0;var r,a,i,o,c,h=s[t],f=l[t];return h<0||f<0?1/0:(r=e[t],a=e[h],i=e[f],o=Math.abs(n(r,a,i)),c=Math.sqrt(Math.pow(a[0]-i[0],2)+Math.pow(a[1]-i[1],2)),o/c)}function v(t,e){var r=T[t],n=T[e];T[t]=n,T[e]=r,A[r]=e,A[n]=t}function m(t){return c[T[t]]}function y(t){return 1&t?t-1>>1:(t>>1)-1}function x(t){for(var e=m(t);;){var r=e,n=2*t+1,a=2*(t+1),i=t;if(n<S){var o=m(n);o<r&&(i=n,r=o)}if(a<S){var s=m(a);s<r&&(i=a)}if(i===t)return t;v(t,i),t=i}}function b(t){for(var e=m(t);t>0;){var r=y(t);if(r>=0){var n=m(r);if(e<n){v(t,r),t=r;continue}}return t}}function _(){if(S>0){var t=T[0];return v(0,S-1),S-=1,x(0),t}return-1}function w(t,e){var r=T[t];return c[r]===e?t:(c[r]=-1/0,b(t),_(),c[r]=e,b((S+=1)-1))}function k(t){if(!u[t]){u[t]=!0;var e=s[t],r=l[t];s[r]>=0&&(s[r]=e),l[e]>=0&&(l[e]=r),A[e]>=0&&w(A[e],g(e)),A[r]>=0&&w(A[r],g(r))}}for(var T=[],A=new Array(i),h=0;h<i;++h){var M=c[h]=g(h);M<1/0?(A[h]=T.length,T.push(h)):A[h]=-1}for(var S=T.length,h=S>>1;h>=0;--h)x(h);for(;;){var E=_();if(E<0||c[E]>r)break;k(E)}for(var C=[],h=0;h<i;++h)u[h]||(A[h]=C.length,C.push(e[h].slice()));C.length;function L(t,e){if(t[e]<0)return e;var r=e,n=e;do{var a=t[n];if(!u[n]||a<0||a===n)break;if(a=t[n=a],!u[n]||a<0||a===n)break;n=a,r=t[r]}while(r!==n);for(var i=e;i!==n;i=t[i])t[i]=n;return n}var P=[];return t.forEach(function(t){var e=L(s,t[0]),r=L(l,t[1]);if(e>=0&&r>=0&&e!==r){var n=A[e],a=A[r];n!==a&&P.push([n,a])}}),a.unique(a.normalize(P)),{positions:C,edges:P}};var n=t(\"robust-orientation\"),a=t(\"simplicial-complex\")},{\"robust-orientation\":511,\"simplicial-complex\":523}],526:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r,i,o,s;if(e[0][0]<e[1][0])r=e[0],i=e[1];else{if(!(e[0][0]>e[1][0]))return a(e,t);r=e[1],i=e[0]}if(t[0][0]<t[1][0])o=t[0],s=t[1];else{if(!(t[0][0]>t[1][0]))return-a(t,e);o=t[1],s=t[0]}var l=n(r,i,s),c=n(r,i,o);if(l<0){if(c<=0)return l}else if(l>0){if(c>=0)return l}else if(c)return c;if(l=n(s,o,i),c=n(s,o,r),l<0){if(c<=0)return l}else if(l>0){if(c>=0)return l}else if(c)return c;return i[0]-s[0]};var n=t(\"robust-orientation\");function a(t,e){var r,a,i,o;if(e[0][0]<e[1][0])r=e[0],a=e[1];else{if(!(e[0][0]>e[1][0])){var s=Math.min(t[0][1],t[1][1]),l=Math.max(t[0][1],t[1][1]),c=Math.min(e[0][1],e[1][1]),u=Math.max(e[0][1],e[1][1]);return l<c?l-c:s>u?s-u:l-u}r=e[1],a=e[0]}t[0][1]<t[1][1]?(i=t[0],o=t[1]):(i=t[1],o=t[0]);var h=n(a,r,i);return h||((h=n(a,r,o))||o-a)}},{\"robust-orientation\":511}],527:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=t.length,r=2*e,n=new Array(r),i=0;i<e;++i){var l=t[i],c=l[0][0]<l[1][0];n[2*i]=new h(l[0][0],l,c,i),n[2*i+1]=new h(l[1][0],l,!c,i)}n.sort(function(t,e){var r=t.x-e.x;return r||((r=t.create-e.create)||Math.min(t.segment[0][1],t.segment[1][1])-Math.min(e.segment[0][1],e.segment[1][1]))});for(var f=a(o),p=[],d=[],g=[],i=0;i<r;){for(var v=n[i].x,m=[];i<r;){var y=n[i];if(y.x!==v)break;i+=1,y.segment[0][0]===y.x&&y.segment[1][0]===y.x?y.create&&(y.segment[0][1]<y.segment[1][1]?(m.push(new u(y.segment[0][1],y.index,!0,!0)),m.push(new u(y.segment[1][1],y.index,!1,!1))):(m.push(new u(y.segment[1][1],y.index,!0,!1)),m.push(new u(y.segment[0][1],y.index,!1,!0)))):f=y.create?f.insert(y.segment,y.index):f.remove(y.segment)}p.push(f.root),d.push(v),g.push(m)}return new s(p,d,g)};var n=t(\"binary-search-bounds\"),a=t(\"functional-red-black-tree\"),i=t(\"robust-orientation\"),o=t(\"./lib/order-segments\");function s(t,e,r){this.slabs=t,this.coordinates=e,this.horizontal=r}function l(t,e){return t.y-e}function c(t,e){for(var r=null;t;){var n,a,o=t.key;o[0][0]<o[1][0]?(n=o[0],a=o[1]):(n=o[1],a=o[0]);var s=i(n,a,e);if(s<0)t=t.left;else if(s>0)if(e[0]!==o[1][0])r=t,t=t.right;else{if(l=c(t.right,e))return l;t=t.left}else{if(e[0]!==o[1][0])return t;var l;if(l=c(t.right,e))return l;t=t.left}}return r}function u(t,e,r,n){this.y=t,this.index=e,this.start=r,this.closed=n}function h(t,e,r,n){this.x=t,this.segment=e,this.create=r,this.index=n}s.prototype.castUp=function(t){var e=n.le(this.coordinates,t[0]);if(e<0)return-1;this.slabs[e];var r=c(this.slabs[e],t),a=-1;if(r&&(a=r.value),this.coordinates[e]===t[0]){var s=null;if(r&&(s=r.key),e>0){var u=c(this.slabs[e-1],t);u&&(s?o(u.key,s)>0&&(s=u.key,a=u.value):(a=u.value,s=u.key))}var h=this.horizontal[e];if(h.length>0){var f=n.ge(h,t[1],l);if(f<h.length){var p=h[f];if(t[1]===p.y){if(p.closed)return p.index;for(;f<h.length-1&&h[f+1].y===t[1];)if((p=h[f+=1]).closed)return p.index;if(p.y===t[1]&&!p.start){if((f+=1)>=h.length)return a;p=h[f]}}if(p.start)if(s){var d=i(s[0],s[1],[t[0],p.y]);s[0][0]>s[1][0]&&(d=-d),d>0&&(a=p.index)}else a=p.index;else p.y!==t[1]&&(a=p.index)}}}return a}},{\"./lib/order-segments\":526,\"binary-search-bounds\":92,\"functional-red-black-tree\":231,\"robust-orientation\":511}],528:[function(t,e,r){\"use strict\";var n=t(\"robust-dot-product\"),a=t(\"robust-sum\");function i(t,e){var r=a(n(t,e),[e[e.length-1]]);return r[r.length-1]}function o(t,e,r,n){var a=-e/(n-e);a<0?a=0:a>1&&(a=1);for(var i=1-a,o=t.length,s=new Array(o),l=0;l<o;++l)s[l]=a*t[l]+i*r[l];return s}e.exports=function(t,e){for(var r=[],n=[],a=i(t[t.length-1],e),s=t[t.length-1],l=t[0],c=0;c<t.length;++c,s=l){var u=i(l=t[c],e);if(a<0&&u>0||a>0&&u<0){var h=o(s,u,l,a);r.push(h),n.push(h.slice())}u<0?n.push(l.slice()):u>0?r.push(l.slice()):(r.push(l.slice()),n.push(l.slice())),a=u}return{positive:r,negative:n}},e.exports.positive=function(t,e){for(var r=[],n=i(t[t.length-1],e),a=t[t.length-1],s=t[0],l=0;l<t.length;++l,a=s){var c=i(s=t[l],e);(n<0&&c>0||n>0&&c<0)&&r.push(o(a,c,s,n)),c>=0&&r.push(s.slice()),n=c}return r},e.exports.negative=function(t,e){for(var r=[],n=i(t[t.length-1],e),a=t[t.length-1],s=t[0],l=0;l<t.length;++l,a=s){var c=i(s=t[l],e);(n<0&&c>0||n>0&&c<0)&&r.push(o(a,c,s,n)),c<=0&&r.push(s.slice()),n=c}return r}},{\"robust-dot-product\":508,\"robust-sum\":516}],529:[function(t,e,r){!function(){\"use strict\";var t={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\\x25]+/,modulo:/^\\x25{2}/,placeholder:/^\\x25(?:([1-9]\\d*)\\$|\\(([^)]+)\\))?(\\+)?(0|'[^$])?(-)?(\\d+)?(?:\\.(\\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\\d]*)/i,key_access:/^\\.([a-z_][a-z_\\d]*)/i,index_access:/^\\[(\\d+)\\]/,sign:/^[+-]/};function e(r){return function(r,n){var a,i,o,s,l,c,u,h,f,p=1,d=r.length,g=\"\";for(i=0;i<d;i++)if(\"string\"==typeof r[i])g+=r[i];else if(\"object\"==typeof r[i]){if((s=r[i]).keys)for(a=n[p],o=0;o<s.keys.length;o++){if(null==a)throw new Error(e('[sprintf] Cannot access property \"%s\" of undefined value \"%s\"',s.keys[o],s.keys[o-1]));a=a[s.keys[o]]}else a=s.param_no?n[s.param_no]:n[p++];if(t.not_type.test(s.type)&&t.not_primitive.test(s.type)&&a instanceof Function&&(a=a()),t.numeric_arg.test(s.type)&&\"number\"!=typeof a&&isNaN(a))throw new TypeError(e(\"[sprintf] expecting number but found %T\",a));switch(t.number.test(s.type)&&(h=a>=0),s.type){case\"b\":a=parseInt(a,10).toString(2);break;case\"c\":a=String.fromCharCode(parseInt(a,10));break;case\"d\":case\"i\":a=parseInt(a,10);break;case\"j\":a=JSON.stringify(a,null,s.width?parseInt(s.width):0);break;case\"e\":a=s.precision?parseFloat(a).toExponential(s.precision):parseFloat(a).toExponential();break;case\"f\":a=s.precision?parseFloat(a).toFixed(s.precision):parseFloat(a);break;case\"g\":a=s.precision?String(Number(a.toPrecision(s.precision))):parseFloat(a);break;case\"o\":a=(parseInt(a,10)>>>0).toString(8);break;case\"s\":a=String(a),a=s.precision?a.substring(0,s.precision):a;break;case\"t\":a=String(!!a),a=s.precision?a.substring(0,s.precision):a;break;case\"T\":a=Object.prototype.toString.call(a).slice(8,-1).toLowerCase(),a=s.precision?a.substring(0,s.precision):a;break;case\"u\":a=parseInt(a,10)>>>0;break;case\"v\":a=a.valueOf(),a=s.precision?a.substring(0,s.precision):a;break;case\"x\":a=(parseInt(a,10)>>>0).toString(16);break;case\"X\":a=(parseInt(a,10)>>>0).toString(16).toUpperCase()}t.json.test(s.type)?g+=a:(!t.number.test(s.type)||h&&!s.sign?f=\"\":(f=h?\"+\":\"-\",a=a.toString().replace(t.sign,\"\")),c=s.pad_char?\"0\"===s.pad_char?\"0\":s.pad_char.charAt(1):\" \",u=s.width-(f+a).length,l=s.width&&u>0?c.repeat(u):\"\",g+=s.align?f+a+l:\"0\"===c?f+l+a:l+f+a)}return g}(function(e){if(a[e])return a[e];var r,n=e,i=[],o=0;for(;n;){if(null!==(r=t.text.exec(n)))i.push(r[0]);else if(null!==(r=t.modulo.exec(n)))i.push(\"%\");else{if(null===(r=t.placeholder.exec(n)))throw new SyntaxError(\"[sprintf] unexpected placeholder\");if(r[2]){o|=1;var s=[],l=r[2],c=[];if(null===(c=t.key.exec(l)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");for(s.push(c[1]);\"\"!==(l=l.substring(c[0].length));)if(null!==(c=t.key_access.exec(l)))s.push(c[1]);else{if(null===(c=t.index_access.exec(l)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");s.push(c[1])}r[2]=s}else o|=2;if(3===o)throw new Error(\"[sprintf] mixing positional and named placeholders is not (yet) supported\");i.push({placeholder:r[0],param_no:r[1],keys:r[2],sign:r[3],pad_char:r[4],align:r[5],width:r[6],precision:r[7],type:r[8]})}n=n.substring(r[0].length)}return a[e]=i}(r),arguments)}function n(t,r){return e.apply(null,[t].concat(r||[]))}var a=Object.create(null);\"undefined\"!=typeof r&&(r.sprintf=e,r.vsprintf=n),\"undefined\"!=typeof window&&(window.sprintf=e,window.vsprintf=n)}()},{}],530:[function(t,e,r){\"use strict\";var n=t(\"parenthesis\");e.exports=function(t,e,r){if(null==t)throw Error(\"First argument should be a string\");if(null==e)throw Error(\"Separator should be a string or a RegExp\");r?(\"string\"==typeof r||Array.isArray(r))&&(r={ignore:r}):r={},null==r.escape&&(r.escape=!0),null==r.ignore?r.ignore=[\"[]\",\"()\",\"{}\",\"<>\",'\"\"',\"''\",\"``\",\"\\u201c\\u201d\",\"\\xab\\xbb\"]:(\"string\"==typeof r.ignore&&(r.ignore=[r.ignore]),r.ignore=r.ignore.map(function(t){return 1===t.length&&(t+=t),t}));var a=n.parse(t,{flat:!0,brackets:r.ignore}),i=a[0].split(e);if(r.escape){for(var o=[],s=0;s<i.length;s++){var l=i[s],c=i[s+1];\"\\\\\"===l[l.length-1]&&\"\\\\\"!==l[l.length-2]?(o.push(l+e+c),s++):o.push(l)}i=o}for(s=0;s<i.length;s++)a[0]=i[s],i[s]=n.stringify(a,{flat:!0});return i}},{parenthesis:459}],531:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=t.length,r=new Array(e),n=new Array(e),a=new Array(e),i=new Array(e),o=new Array(e),s=new Array(e),l=0;l<e;++l)r[l]=-1,n[l]=0,a[l]=!1,i[l]=0,o[l]=-1,s[l]=[];var c,u=0,h=[],f=[];function p(e){var l=[e],c=[e];for(r[e]=n[e]=u,a[e]=!0,u+=1;c.length>0;){e=c[c.length-1];var p=t[e];if(i[e]<p.length){for(var d=i[e];d<p.length;++d){var g=p[d];if(r[g]<0){r[g]=n[g]=u,a[g]=!0,u+=1,l.push(g),c.push(g);break}a[g]&&(n[e]=0|Math.min(n[e],n[g])),o[g]>=0&&s[e].push(o[g])}i[e]=d}else{if(n[e]===r[e]){for(var v=[],m=[],y=0,d=l.length-1;d>=0;--d){var x=l[d];if(a[x]=!1,v.push(x),m.push(s[x]),y+=s[x].length,o[x]=h.length,x===e){l.length=d;break}}h.push(v);for(var b=new Array(y),d=0;d<m.length;d++)for(var _=0;_<m[d].length;_++)b[--y]=m[d][_];f.push(b)}c.pop()}}}for(var l=0;l<e;++l)r[l]<0&&p(l);for(var l=0;l<f.length;l++){var d=f[l];if(0!==d.length){d.sort(function(t,e){return t-e}),c=[d[0]];for(var g=1;g<d.length;g++)d[g]!==d[g-1]&&c.push(d[g]);f[l]=c}}return{components:h,adjacencyList:f}}},{}],532:[function(t,e,r){\"use strict\";e.exports=function(t,e){if(t.dimension<=0)return{positions:[],cells:[]};if(1===t.dimension)return function(t,e){for(var r=i(t,e),n=r.length,a=new Array(n),o=new Array(n),s=0;s<n;++s)a[s]=[r[s]],o[s]=[s];return{positions:a,cells:o}}(t,e);var r=t.order.join()+\"-\"+t.dtype,s=o[r],e=+e||0;s||(s=o[r]=function(t,e){var r=t.length,i=[\"'use strict';\"],o=\"surfaceNets\"+t.join(\"_\")+\"d\"+e;i.push(\"var contour=genContour({\",\"order:[\",t.join(),\"],\",\"scalarArguments: 3,\",\"phase:function phaseFunc(p,a,b,c) { return (p > c)|0 },\"),\"generic\"===e&&i.push(\"getters:[0],\");for(var s=[],l=[],c=0;c<r;++c)s.push(\"d\"+c),l.push(\"d\"+c);for(var c=0;c<1<<r;++c)s.push(\"v\"+c),l.push(\"v\"+c);for(var c=0;c<1<<r;++c)s.push(\"p\"+c),l.push(\"p\"+c);s.push(\"a\",\"b\",\"c\"),l.push(\"a\",\"c\"),i.push(\"vertex:function vertexFunc(\",s.join(),\"){\");for(var u=[],c=0;c<1<<r;++c)u.push(\"(p\"+c+\"<<\"+c+\")\");i.push(\"var m=(\",u.join(\"+\"),\")|0;if(m===0||m===\",(1<<(1<<r))-1,\"){return}\");var h=[],f=[];1<<(1<<r)<=128?(i.push(\"switch(m){\"),f=i):i.push(\"switch(m>>>7){\");for(var c=0;c<1<<(1<<r);++c){if(1<<(1<<r)>128&&c%128==0){h.length>0&&f.push(\"}}\");var p=\"vExtra\"+h.length;i.push(\"case \",c>>>7,\":\",p,\"(m&0x7f,\",l.join(),\");break;\"),f=[\"function \",p,\"(m,\",l.join(),\"){switch(m){\"],h.push(f)}f.push(\"case \",127&c,\":\");for(var d=new Array(r),g=new Array(r),v=new Array(r),m=new Array(r),y=0,x=0;x<r;++x)d[x]=[],g[x]=[],v[x]=0,m[x]=0;for(var x=0;x<1<<r;++x)for(var b=0;b<r;++b){var _=x^1<<b;if(!(_>x)&&!(c&1<<_)!=!(c&1<<x)){var w=1;c&1<<_?g[b].push(\"v\"+_+\"-v\"+x):(g[b].push(\"v\"+x+\"-v\"+_),w=-w),w<0?(d[b].push(\"-v\"+x+\"-v\"+_),v[b]+=2):(d[b].push(\"v\"+x+\"+v\"+_),v[b]-=2),y+=1;for(var k=0;k<r;++k)k!==b&&(_&1<<k?m[k]+=1:m[k]-=1)}}for(var T=[],b=0;b<r;++b)if(0===d[b].length)T.push(\"d\"+b+\"-0.5\");else{var A=\"\";v[b]<0?A=v[b]+\"*c\":v[b]>0&&(A=\"+\"+v[b]+\"*c\");var M=d[b].length/y*.5,S=.5+m[b]/y*.5;T.push(\"d\"+b+\"-\"+S+\"-\"+M+\"*(\"+d[b].join(\"+\")+A+\")/(\"+g[b].join(\"+\")+\")\")}f.push(\"a.push([\",T.join(),\"]);\",\"break;\")}i.push(\"}},\"),h.length>0&&f.push(\"}}\");for(var E=[],c=0;c<1<<r-1;++c)E.push(\"v\"+c);E.push(\"c0\",\"c1\",\"p0\",\"p1\",\"a\",\"b\",\"c\"),i.push(\"cell:function cellFunc(\",E.join(),\"){\");var C=a(r-1);i.push(\"if(p0){b.push(\",C.map(function(t){return\"[\"+t.map(function(t){return\"v\"+t})+\"]\"}).join(),\")}else{b.push(\",C.map(function(t){var e=t.slice();return e.reverse(),\"[\"+e.map(function(t){return\"v\"+t})+\"]\"}).join(),\")}}});function \",o,\"(array,level){var verts=[],cells=[];contour(array,verts,cells,level);return {positions:verts,cells:cells};} return \",o,\";\");for(var c=0;c<h.length;++c)i.push(h[c].join(\"\"));return new Function(\"genContour\",i.join(\"\"))(n)}(t.order,t.dtype));return s(t,e)};var n=t(\"ndarray-extract-contour\"),a=t(\"triangulate-hypercube\"),i=t(\"zero-crossings\");var o={}},{\"ndarray-extract-contour\":440,\"triangulate-hypercube\":542,\"zero-crossings\":575}],533:[function(t,e,r){\"use strict\";Object.defineProperty(r,\"__esModule\",{value:!0});var n=function(){return function(t,e){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return function(t,e){var r=[],n=!0,a=!1,i=void 0;try{for(var o,s=t[Symbol.iterator]();!(n=(o=s.next()).done)&&(r.push(o.value),!e||r.length!==e);n=!0);}catch(t){a=!0,i=t}finally{try{!n&&s.return&&s.return()}finally{if(a)throw i}}return r}(t,e);throw new TypeError(\"Invalid attempt to destructure non-iterable instance\")}}(),a=2*Math.PI,i=function(t,e,r,n,a,i,o){var s=t.x,l=t.y;return{x:n*(s*=e)-a*(l*=r)+i,y:a*s+n*l+o}},o=function(t,e){var r=.551915024494*(e<0?-1:1),n=Math.cos(t),a=Math.sin(t),i=Math.cos(t+e),o=Math.sin(t+e);return[{x:n-a*r,y:a+n*r},{x:i+o*r,y:o-i*r},{x:i,y:o}]},s=function(t,e,r,n){var a=t*n-e*r<0?-1:1,i=(t*r+e*n)/(Math.sqrt(t*t+e*e)*Math.sqrt(t*t+e*e));return i>1&&(i=1),i<-1&&(i=-1),a*Math.acos(i)};r.default=function(t){var e=t.px,r=t.py,l=t.cx,c=t.cy,u=t.rx,h=t.ry,f=t.xAxisRotation,p=void 0===f?0:f,d=t.largeArcFlag,g=void 0===d?0:d,v=t.sweepFlag,m=void 0===v?0:v,y=[];if(0===u||0===h)return[];var x=Math.sin(p*a/360),b=Math.cos(p*a/360),_=b*(e-l)/2+x*(r-c)/2,w=-x*(e-l)/2+b*(r-c)/2;if(0===_&&0===w)return[];u=Math.abs(u),h=Math.abs(h);var k=Math.pow(_,2)/Math.pow(u,2)+Math.pow(w,2)/Math.pow(h,2);k>1&&(u*=Math.sqrt(k),h*=Math.sqrt(k));var T=function(t,e,r,n,i,o,l,c,u,h,f,p){var d=Math.pow(i,2),g=Math.pow(o,2),v=Math.pow(f,2),m=Math.pow(p,2),y=d*g-d*m-g*v;y<0&&(y=0),y/=d*m+g*v;var x=(y=Math.sqrt(y)*(l===c?-1:1))*i/o*p,b=y*-o/i*f,_=h*x-u*b+(t+r)/2,w=u*x+h*b+(e+n)/2,k=(f-x)/i,T=(p-b)/o,A=(-f-x)/i,M=(-p-b)/o,S=s(1,0,k,T),E=s(k,T,A,M);return 0===c&&E>0&&(E-=a),1===c&&E<0&&(E+=a),[_,w,S,E]}(e,r,l,c,u,h,g,m,x,b,_,w),A=n(T,4),M=A[0],S=A[1],E=A[2],C=A[3],L=Math.abs(C)/(a/4);Math.abs(1-L)<1e-7&&(L=1);var P=Math.max(Math.ceil(L),1);C/=P;for(var O=0;O<P;O++)y.push(o(E,C)),E+=C;return y.map(function(t){var e=i(t[0],u,h,b,x,M,S),r=e.x,n=e.y,a=i(t[1],u,h,b,x,M,S),o=a.x,s=a.y,l=i(t[2],u,h,b,x,M,S);return{x1:r,y1:n,x2:o,y2:s,x:l.x,y:l.y}})},e.exports=r.default},{}],534:[function(t,e,r){\"use strict\";var n=t(\"parse-svg-path\"),a=t(\"abs-svg-path\"),i=t(\"normalize-svg-path\"),o=t(\"is-svg-path\"),s=t(\"assert\");e.exports=function(t){Array.isArray(t)&&1===t.length&&\"string\"==typeof t[0]&&(t=t[0]);\"string\"==typeof t&&(s(o(t),\"String is not an SVG path.\"),t=n(t));if(s(Array.isArray(t),\"Argument should be a string or an array of path segments.\"),t=a(t),!(t=i(t)).length)return[0,0,0,0];for(var e=[1/0,1/0,-1/0,-1/0],r=0,l=t.length;r<l;r++)for(var c=t[r].slice(1),u=0;u<c.length;u+=2)c[u+0]<e[0]&&(e[0]=c[u+0]),c[u+1]<e[1]&&(e[1]=c[u+1]),c[u+0]>e[2]&&(e[2]=c[u+0]),c[u+1]>e[3]&&(e[3]=c[u+1]);return e}},{\"abs-svg-path\":61,assert:69,\"is-svg-path\":425,\"normalize-svg-path\":535,\"parse-svg-path\":461}],535:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e,r=[],o=0,s=0,l=0,c=0,u=null,h=null,f=0,p=0,d=0,g=t.length;d<g;d++){var v=t[d],m=v[0];switch(m){case\"M\":l=v[1],c=v[2];break;case\"A\":var y=n({px:f,py:p,cx:v[6],cy:v[7],rx:v[1],ry:v[2],xAxisRotation:v[3],largeArcFlag:v[4],sweepFlag:v[5]});if(!y.length)continue;for(var x,b=0;b<y.length;b++)x=y[b],v=[\"C\",x.x1,x.y1,x.x2,x.y2,x.x,x.y],b<y.length-1&&r.push(v);break;case\"S\":var _=f,w=p;\"C\"!=e&&\"S\"!=e||(_+=_-o,w+=w-s),v=[\"C\",_,w,v[1],v[2],v[3],v[4]];break;case\"T\":\"Q\"==e||\"T\"==e?(u=2*f-u,h=2*p-h):(u=f,h=p),v=i(f,p,u,h,v[1],v[2]);break;case\"Q\":u=v[1],h=v[2],v=i(f,p,v[1],v[2],v[3],v[4]);break;case\"L\":v=a(f,p,v[1],v[2]);break;case\"H\":v=a(f,p,v[1],p);break;case\"V\":v=a(f,p,f,v[1]);break;case\"Z\":v=a(f,p,l,c)}e=m,f=v[v.length-2],p=v[v.length-1],v.length>4?(o=v[v.length-4],s=v[v.length-3]):(o=f,s=p),r.push(v)}return r};var n=t(\"svg-arc-to-cubic-bezier\");function a(t,e,r,n){return[\"C\",t,e,r,n,r,n]}function i(t,e,r,n,a,i){return[\"C\",t/3+2/3*r,e/3+2/3*n,a/3+2/3*r,i/3+2/3*n,a,i]}},{\"svg-arc-to-cubic-bezier\":533}],536:[function(t,e,r){\"use strict\";var n,a=t(\"svg-path-bounds\"),i=t(\"parse-svg-path\"),o=t(\"draw-svg-path\"),s=t(\"is-svg-path\"),l=t(\"bitmap-sdf\"),c=document.createElement(\"canvas\"),u=c.getContext(\"2d\");e.exports=function(t,e){if(!s(t))throw Error(\"Argument should be valid svg path string\");e||(e={});var r,h;e.shape?(r=e.shape[0],h=e.shape[1]):(r=c.width=e.w||e.width||200,h=c.height=e.h||e.height||200);var f=Math.min(r,h),p=e.stroke||0,d=e.viewbox||e.viewBox||a(t),g=[r/(d[2]-d[0]),h/(d[3]-d[1])],v=Math.min(g[0]||0,g[1]||0)/2;u.fillStyle=\"black\",u.fillRect(0,0,r,h),u.fillStyle=\"white\",p&&(\"number\"!=typeof p&&(p=1),u.strokeStyle=p>0?\"white\":\"black\",u.lineWidth=Math.abs(p));if(u.translate(.5*r,.5*h),u.scale(v,v),function(){if(null!=n)return n;var t=document.createElement(\"canvas\").getContext(\"2d\");if(t.canvas.width=t.canvas.height=1,!window.Path2D)return n=!1;var e=new Path2D(\"M0,0h1v1h-1v-1Z\");t.fillStyle=\"black\",t.fill(e);var r=t.getImageData(0,0,1,1);return n=r&&r.data&&255===r.data[3]}()){var m=new Path2D(t);u.fill(m),p&&u.stroke(m)}else{var y=i(t);o(u,y),u.fill(),p&&u.stroke()}return u.setTransform(1,0,0,1,0,0),l(u,{cutoff:null!=e.cutoff?e.cutoff:.5,radius:null!=e.radius?e.radius:.5*f})}},{\"bitmap-sdf\":94,\"draw-svg-path\":169,\"is-svg-path\":425,\"parse-svg-path\":461,\"svg-path-bounds\":534}],537:[function(t,e,r){(function(r){\"use strict\";e.exports=function t(e,r,a){var a=a||{};var o=i[e];o||(o=i[e]={\" \":{data:new Float32Array(0),shape:.2}});var s=o[r];if(!s)if(r.length<=1||!/\\d/.test(r))s=o[r]=function(t){for(var e=t.cells,r=t.positions,n=new Float32Array(6*e.length),a=0,i=0,o=0;o<e.length;++o)for(var s=e[o],l=0;l<3;++l){var c=r[s[l]];n[a++]=c[0],n[a++]=c[1]+1.4,i=Math.max(c[0],i)}return{data:n,shape:i}}(n(r,{triangles:!0,font:e,textAlign:a.textAlign||\"left\",textBaseline:\"alphabetic\",styletags:{breaklines:!0,bolds:!0,italics:!0,subscripts:!0,superscripts:!0}}));else{for(var l=r.split(/(\\d|\\s)/),c=new Array(l.length),u=0,h=0,f=0;f<l.length;++f)c[f]=t(e,l[f]),u+=c[f].data.length,h+=c[f].shape,f>0&&(h+=.02);for(var p=new Float32Array(u),d=0,g=-.5*h,f=0;f<c.length;++f){for(var v=c[f].data,m=0;m<v.length;m+=2)p[d++]=v[m]+g,p[d++]=v[m+1];g+=c[f].shape+.02}s=o[r]={data:p,shape:h}}return s};var n=t(\"vectorize-text\"),a=window||r.global||{},i=a.__TEXT_CACHE||{};a.__TEXT_CACHE={}}).call(this,t(\"_process\"))},{_process:483,\"vectorize-text\":551}],538:[function(t,e,r){!function(t){var r=/^\\s+/,n=/\\s+$/,a=0,i=t.round,o=t.min,s=t.max,l=t.random;function c(e,l){if(l=l||{},(e=e||\"\")instanceof c)return e;if(!(this instanceof c))return new c(e,l);var u=function(e){var a={r:0,g:0,b:0},i=1,l=null,c=null,u=null,h=!1,f=!1;\"string\"==typeof e&&(e=function(t){t=t.replace(r,\"\").replace(n,\"\").toLowerCase();var e,a=!1;if(S[t])t=S[t],a=!0;else if(\"transparent\"==t)return{r:0,g:0,b:0,a:0,format:\"name\"};if(e=j.rgb.exec(t))return{r:e[1],g:e[2],b:e[3]};if(e=j.rgba.exec(t))return{r:e[1],g:e[2],b:e[3],a:e[4]};if(e=j.hsl.exec(t))return{h:e[1],s:e[2],l:e[3]};if(e=j.hsla.exec(t))return{h:e[1],s:e[2],l:e[3],a:e[4]};if(e=j.hsv.exec(t))return{h:e[1],s:e[2],v:e[3]};if(e=j.hsva.exec(t))return{h:e[1],s:e[2],v:e[3],a:e[4]};if(e=j.hex8.exec(t))return{r:O(e[1]),g:O(e[2]),b:O(e[3]),a:R(e[4]),format:a?\"name\":\"hex8\"};if(e=j.hex6.exec(t))return{r:O(e[1]),g:O(e[2]),b:O(e[3]),format:a?\"name\":\"hex\"};if(e=j.hex4.exec(t))return{r:O(e[1]+\"\"+e[1]),g:O(e[2]+\"\"+e[2]),b:O(e[3]+\"\"+e[3]),a:R(e[4]+\"\"+e[4]),format:a?\"name\":\"hex8\"};if(e=j.hex3.exec(t))return{r:O(e[1]+\"\"+e[1]),g:O(e[2]+\"\"+e[2]),b:O(e[3]+\"\"+e[3]),format:a?\"name\":\"hex\"};return!1}(e));\"object\"==typeof e&&(V(e.r)&&V(e.g)&&V(e.b)?(p=e.r,d=e.g,g=e.b,a={r:255*L(p,255),g:255*L(d,255),b:255*L(g,255)},h=!0,f=\"%\"===String(e.r).substr(-1)?\"prgb\":\"rgb\"):V(e.h)&&V(e.s)&&V(e.v)?(l=z(e.s),c=z(e.v),a=function(e,r,n){e=6*L(e,360),r=L(r,100),n=L(n,100);var a=t.floor(e),i=e-a,o=n*(1-r),s=n*(1-i*r),l=n*(1-(1-i)*r),c=a%6;return{r:255*[n,s,o,o,l,n][c],g:255*[l,n,n,s,o,o][c],b:255*[o,o,l,n,n,s][c]}}(e.h,l,c),h=!0,f=\"hsv\"):V(e.h)&&V(e.s)&&V(e.l)&&(l=z(e.s),u=z(e.l),a=function(t,e,r){var n,a,i;function o(t,e,r){return r<0&&(r+=1),r>1&&(r-=1),r<1/6?t+6*(e-t)*r:r<.5?e:r<2/3?t+(e-t)*(2/3-r)*6:t}if(t=L(t,360),e=L(e,100),r=L(r,100),0===e)n=a=i=r;else{var s=r<.5?r*(1+e):r+e-r*e,l=2*r-s;n=o(l,s,t+1/3),a=o(l,s,t),i=o(l,s,t-1/3)}return{r:255*n,g:255*a,b:255*i}}(e.h,l,u),h=!0,f=\"hsl\"),e.hasOwnProperty(\"a\")&&(i=e.a));var p,d,g;return i=C(i),{ok:h,format:e.format||f,r:o(255,s(a.r,0)),g:o(255,s(a.g,0)),b:o(255,s(a.b,0)),a:i}}(e);this._originalInput=e,this._r=u.r,this._g=u.g,this._b=u.b,this._a=u.a,this._roundA=i(100*this._a)/100,this._format=l.format||u.format,this._gradientType=l.gradientType,this._r<1&&(this._r=i(this._r)),this._g<1&&(this._g=i(this._g)),this._b<1&&(this._b=i(this._b)),this._ok=u.ok,this._tc_id=a++}function u(t,e,r){t=L(t,255),e=L(e,255),r=L(r,255);var n,a,i=s(t,e,r),l=o(t,e,r),c=(i+l)/2;if(i==l)n=a=0;else{var u=i-l;switch(a=c>.5?u/(2-i-l):u/(i+l),i){case t:n=(e-r)/u+(e<r?6:0);break;case e:n=(r-t)/u+2;break;case r:n=(t-e)/u+4}n/=6}return{h:n,s:a,l:c}}function h(t,e,r){t=L(t,255),e=L(e,255),r=L(r,255);var n,a,i=s(t,e,r),l=o(t,e,r),c=i,u=i-l;if(a=0===i?0:u/i,i==l)n=0;else{switch(i){case t:n=(e-r)/u+(e<r?6:0);break;case e:n=(r-t)/u+2;break;case r:n=(t-e)/u+4}n/=6}return{h:n,s:a,v:c}}function f(t,e,r,n){var a=[I(i(t).toString(16)),I(i(e).toString(16)),I(i(r).toString(16))];return n&&a[0].charAt(0)==a[0].charAt(1)&&a[1].charAt(0)==a[1].charAt(1)&&a[2].charAt(0)==a[2].charAt(1)?a[0].charAt(0)+a[1].charAt(0)+a[2].charAt(0):a.join(\"\")}function p(t,e,r,n){return[I(D(n)),I(i(t).toString(16)),I(i(e).toString(16)),I(i(r).toString(16))].join(\"\")}function d(t,e){e=0===e?0:e||10;var r=c(t).toHsl();return r.s-=e/100,r.s=P(r.s),c(r)}function g(t,e){e=0===e?0:e||10;var r=c(t).toHsl();return r.s+=e/100,r.s=P(r.s),c(r)}function v(t){return c(t).desaturate(100)}function m(t,e){e=0===e?0:e||10;var r=c(t).toHsl();return r.l+=e/100,r.l=P(r.l),c(r)}function y(t,e){e=0===e?0:e||10;var r=c(t).toRgb();return r.r=s(0,o(255,r.r-i(-e/100*255))),r.g=s(0,o(255,r.g-i(-e/100*255))),r.b=s(0,o(255,r.b-i(-e/100*255))),c(r)}function x(t,e){e=0===e?0:e||10;var r=c(t).toHsl();return r.l-=e/100,r.l=P(r.l),c(r)}function b(t,e){var r=c(t).toHsl(),n=(r.h+e)%360;return r.h=n<0?360+n:n,c(r)}function _(t){var e=c(t).toHsl();return e.h=(e.h+180)%360,c(e)}function w(t){var e=c(t).toHsl(),r=e.h;return[c(t),c({h:(r+120)%360,s:e.s,l:e.l}),c({h:(r+240)%360,s:e.s,l:e.l})]}function k(t){var e=c(t).toHsl(),r=e.h;return[c(t),c({h:(r+90)%360,s:e.s,l:e.l}),c({h:(r+180)%360,s:e.s,l:e.l}),c({h:(r+270)%360,s:e.s,l:e.l})]}function T(t){var e=c(t).toHsl(),r=e.h;return[c(t),c({h:(r+72)%360,s:e.s,l:e.l}),c({h:(r+216)%360,s:e.s,l:e.l})]}function A(t,e,r){e=e||6,r=r||30;var n=c(t).toHsl(),a=360/r,i=[c(t)];for(n.h=(n.h-(a*e>>1)+720)%360;--e;)n.h=(n.h+a)%360,i.push(c(n));return i}function M(t,e){e=e||6;for(var r=c(t).toHsv(),n=r.h,a=r.s,i=r.v,o=[],s=1/e;e--;)o.push(c({h:n,s:a,v:i})),i=(i+s)%1;return o}c.prototype={isDark:function(){return this.getBrightness()<128},isLight:function(){return!this.isDark()},isValid:function(){return this._ok},getOriginalInput:function(){return this._originalInput},getFormat:function(){return this._format},getAlpha:function(){return this._a},getBrightness:function(){var t=this.toRgb();return(299*t.r+587*t.g+114*t.b)/1e3},getLuminance:function(){var e,r,n,a=this.toRgb();return e=a.r/255,r=a.g/255,n=a.b/255,.2126*(e<=.03928?e/12.92:t.pow((e+.055)/1.055,2.4))+.7152*(r<=.03928?r/12.92:t.pow((r+.055)/1.055,2.4))+.0722*(n<=.03928?n/12.92:t.pow((n+.055)/1.055,2.4))},setAlpha:function(t){return this._a=C(t),this._roundA=i(100*this._a)/100,this},toHsv:function(){var t=h(this._r,this._g,this._b);return{h:360*t.h,s:t.s,v:t.v,a:this._a}},toHsvString:function(){var t=h(this._r,this._g,this._b),e=i(360*t.h),r=i(100*t.s),n=i(100*t.v);return 1==this._a?\"hsv(\"+e+\", \"+r+\"%, \"+n+\"%)\":\"hsva(\"+e+\", \"+r+\"%, \"+n+\"%, \"+this._roundA+\")\"},toHsl:function(){var t=u(this._r,this._g,this._b);return{h:360*t.h,s:t.s,l:t.l,a:this._a}},toHslString:function(){var t=u(this._r,this._g,this._b),e=i(360*t.h),r=i(100*t.s),n=i(100*t.l);return 1==this._a?\"hsl(\"+e+\", \"+r+\"%, \"+n+\"%)\":\"hsla(\"+e+\", \"+r+\"%, \"+n+\"%, \"+this._roundA+\")\"},toHex:function(t){return f(this._r,this._g,this._b,t)},toHexString:function(t){return\"#\"+this.toHex(t)},toHex8:function(t){return function(t,e,r,n,a){var o=[I(i(t).toString(16)),I(i(e).toString(16)),I(i(r).toString(16)),I(D(n))];if(a&&o[0].charAt(0)==o[0].charAt(1)&&o[1].charAt(0)==o[1].charAt(1)&&o[2].charAt(0)==o[2].charAt(1)&&o[3].charAt(0)==o[3].charAt(1))return o[0].charAt(0)+o[1].charAt(0)+o[2].charAt(0)+o[3].charAt(0);return o.join(\"\")}(this._r,this._g,this._b,this._a,t)},toHex8String:function(t){return\"#\"+this.toHex8(t)},toRgb:function(){return{r:i(this._r),g:i(this._g),b:i(this._b),a:this._a}},toRgbString:function(){return 1==this._a?\"rgb(\"+i(this._r)+\", \"+i(this._g)+\", \"+i(this._b)+\")\":\"rgba(\"+i(this._r)+\", \"+i(this._g)+\", \"+i(this._b)+\", \"+this._roundA+\")\"},toPercentageRgb:function(){return{r:i(100*L(this._r,255))+\"%\",g:i(100*L(this._g,255))+\"%\",b:i(100*L(this._b,255))+\"%\",a:this._a}},toPercentageRgbString:function(){return 1==this._a?\"rgb(\"+i(100*L(this._r,255))+\"%, \"+i(100*L(this._g,255))+\"%, \"+i(100*L(this._b,255))+\"%)\":\"rgba(\"+i(100*L(this._r,255))+\"%, \"+i(100*L(this._g,255))+\"%, \"+i(100*L(this._b,255))+\"%, \"+this._roundA+\")\"},toName:function(){return 0===this._a?\"transparent\":!(this._a<1)&&(E[f(this._r,this._g,this._b,!0)]||!1)},toFilter:function(t){var e=\"#\"+p(this._r,this._g,this._b,this._a),r=e,n=this._gradientType?\"GradientType = 1, \":\"\";if(t){var a=c(t);r=\"#\"+p(a._r,a._g,a._b,a._a)}return\"progid:DXImageTransform.Microsoft.gradient(\"+n+\"startColorstr=\"+e+\",endColorstr=\"+r+\")\"},toString:function(t){var e=!!t;t=t||this._format;var r=!1,n=this._a<1&&this._a>=0;return e||!n||\"hex\"!==t&&\"hex6\"!==t&&\"hex3\"!==t&&\"hex4\"!==t&&\"hex8\"!==t&&\"name\"!==t?(\"rgb\"===t&&(r=this.toRgbString()),\"prgb\"===t&&(r=this.toPercentageRgbString()),\"hex\"!==t&&\"hex6\"!==t||(r=this.toHexString()),\"hex3\"===t&&(r=this.toHexString(!0)),\"hex4\"===t&&(r=this.toHex8String(!0)),\"hex8\"===t&&(r=this.toHex8String()),\"name\"===t&&(r=this.toName()),\"hsl\"===t&&(r=this.toHslString()),\"hsv\"===t&&(r=this.toHsvString()),r||this.toHexString()):\"name\"===t&&0===this._a?this.toName():this.toRgbString()},clone:function(){return c(this.toString())},_applyModification:function(t,e){var r=t.apply(null,[this].concat([].slice.call(e)));return this._r=r._r,this._g=r._g,this._b=r._b,this.setAlpha(r._a),this},lighten:function(){return this._applyModification(m,arguments)},brighten:function(){return this._applyModification(y,arguments)},darken:function(){return this._applyModification(x,arguments)},desaturate:function(){return this._applyModification(d,arguments)},saturate:function(){return this._applyModification(g,arguments)},greyscale:function(){return this._applyModification(v,arguments)},spin:function(){return this._applyModification(b,arguments)},_applyCombination:function(t,e){return t.apply(null,[this].concat([].slice.call(e)))},analogous:function(){return this._applyCombination(A,arguments)},complement:function(){return this._applyCombination(_,arguments)},monochromatic:function(){return this._applyCombination(M,arguments)},splitcomplement:function(){return this._applyCombination(T,arguments)},triad:function(){return this._applyCombination(w,arguments)},tetrad:function(){return this._applyCombination(k,arguments)}},c.fromRatio=function(t,e){if(\"object\"==typeof t){var r={};for(var n in t)t.hasOwnProperty(n)&&(r[n]=\"a\"===n?t[n]:z(t[n]));t=r}return c(t,e)},c.equals=function(t,e){return!(!t||!e)&&c(t).toRgbString()==c(e).toRgbString()},c.random=function(){return c.fromRatio({r:l(),g:l(),b:l()})},c.mix=function(t,e,r){r=0===r?0:r||50;var n=c(t).toRgb(),a=c(e).toRgb(),i=r/100;return c({r:(a.r-n.r)*i+n.r,g:(a.g-n.g)*i+n.g,b:(a.b-n.b)*i+n.b,a:(a.a-n.a)*i+n.a})},c.readability=function(e,r){var n=c(e),a=c(r);return(t.max(n.getLuminance(),a.getLuminance())+.05)/(t.min(n.getLuminance(),a.getLuminance())+.05)},c.isReadable=function(t,e,r){var n,a,i=c.readability(t,e);switch(a=!1,(n=function(t){var e,r;e=((t=t||{level:\"AA\",size:\"small\"}).level||\"AA\").toUpperCase(),r=(t.size||\"small\").toLowerCase(),\"AA\"!==e&&\"AAA\"!==e&&(e=\"AA\");\"small\"!==r&&\"large\"!==r&&(r=\"small\");return{level:e,size:r}}(r)).level+n.size){case\"AAsmall\":case\"AAAlarge\":a=i>=4.5;break;case\"AAlarge\":a=i>=3;break;case\"AAAsmall\":a=i>=7}return a},c.mostReadable=function(t,e,r){var n,a,i,o,s=null,l=0;a=(r=r||{}).includeFallbackColors,i=r.level,o=r.size;for(var u=0;u<e.length;u++)(n=c.readability(t,e[u]))>l&&(l=n,s=c(e[u]));return c.isReadable(t,s,{level:i,size:o})||!a?s:(r.includeFallbackColors=!1,c.mostReadable(t,[\"#fff\",\"#000\"],r))};var S=c.names={aliceblue:\"f0f8ff\",antiquewhite:\"faebd7\",aqua:\"0ff\",aquamarine:\"7fffd4\",azure:\"f0ffff\",beige:\"f5f5dc\",bisque:\"ffe4c4\",black:\"000\",blanchedalmond:\"ffebcd\",blue:\"00f\",blueviolet:\"8a2be2\",brown:\"a52a2a\",burlywood:\"deb887\",burntsienna:\"ea7e5d\",cadetblue:\"5f9ea0\",chartreuse:\"7fff00\",chocolate:\"d2691e\",coral:\"ff7f50\",cornflowerblue:\"6495ed\",cornsilk:\"fff8dc\",crimson:\"dc143c\",cyan:\"0ff\",darkblue:\"00008b\",darkcyan:\"008b8b\",darkgoldenrod:\"b8860b\",darkgray:\"a9a9a9\",darkgreen:\"006400\",darkgrey:\"a9a9a9\",darkkhaki:\"bdb76b\",darkmagenta:\"8b008b\",darkolivegreen:\"556b2f\",darkorange:\"ff8c00\",darkorchid:\"9932cc\",darkred:\"8b0000\",darksalmon:\"e9967a\",darkseagreen:\"8fbc8f\",darkslateblue:\"483d8b\",darkslategray:\"2f4f4f\",darkslategrey:\"2f4f4f\",darkturquoise:\"00ced1\",darkviolet:\"9400d3\",deeppink:\"ff1493\",deepskyblue:\"00bfff\",dimgray:\"696969\",dimgrey:\"696969\",dodgerblue:\"1e90ff\",firebrick:\"b22222\",floralwhite:\"fffaf0\",forestgreen:\"228b22\",fuchsia:\"f0f\",gainsboro:\"dcdcdc\",ghostwhite:\"f8f8ff\",gold:\"ffd700\",goldenrod:\"daa520\",gray:\"808080\",green:\"008000\",greenyellow:\"adff2f\",grey:\"808080\",honeydew:\"f0fff0\",hotpink:\"ff69b4\",indianred:\"cd5c5c\",indigo:\"4b0082\",ivory:\"fffff0\",khaki:\"f0e68c\",lavender:\"e6e6fa\",lavenderblush:\"fff0f5\",lawngreen:\"7cfc00\",lemonchiffon:\"fffacd\",lightblue:\"add8e6\",lightcoral:\"f08080\",lightcyan:\"e0ffff\",lightgoldenrodyellow:\"fafad2\",lightgray:\"d3d3d3\",lightgreen:\"90ee90\",lightgrey:\"d3d3d3\",lightpink:\"ffb6c1\",lightsalmon:\"ffa07a\",lightseagreen:\"20b2aa\",lightskyblue:\"87cefa\",lightslategray:\"789\",lightslategrey:\"789\",lightsteelblue:\"b0c4de\",lightyellow:\"ffffe0\",lime:\"0f0\",limegreen:\"32cd32\",linen:\"faf0e6\",magenta:\"f0f\",maroon:\"800000\",mediumaquamarine:\"66cdaa\",mediumblue:\"0000cd\",mediumorchid:\"ba55d3\",mediumpurple:\"9370db\",mediumseagreen:\"3cb371\",mediumslateblue:\"7b68ee\",mediumspringgreen:\"00fa9a\",mediumturquoise:\"48d1cc\",mediumvioletred:\"c71585\",midnightblue:\"191970\",mintcream:\"f5fffa\",mistyrose:\"ffe4e1\",moccasin:\"ffe4b5\",navajowhite:\"ffdead\",navy:\"000080\",oldlace:\"fdf5e6\",olive:\"808000\",olivedrab:\"6b8e23\",orange:\"ffa500\",orangered:\"ff4500\",orchid:\"da70d6\",palegoldenrod:\"eee8aa\",palegreen:\"98fb98\",paleturquoise:\"afeeee\",palevioletred:\"db7093\",papayawhip:\"ffefd5\",peachpuff:\"ffdab9\",peru:\"cd853f\",pink:\"ffc0cb\",plum:\"dda0dd\",powderblue:\"b0e0e6\",purple:\"800080\",rebeccapurple:\"663399\",red:\"f00\",rosybrown:\"bc8f8f\",royalblue:\"4169e1\",saddlebrown:\"8b4513\",salmon:\"fa8072\",sandybrown:\"f4a460\",seagreen:\"2e8b57\",seashell:\"fff5ee\",sienna:\"a0522d\",silver:\"c0c0c0\",skyblue:\"87ceeb\",slateblue:\"6a5acd\",slategray:\"708090\",slategrey:\"708090\",snow:\"fffafa\",springgreen:\"00ff7f\",steelblue:\"4682b4\",tan:\"d2b48c\",teal:\"008080\",thistle:\"d8bfd8\",tomato:\"ff6347\",turquoise:\"40e0d0\",violet:\"ee82ee\",wheat:\"f5deb3\",white:\"fff\",whitesmoke:\"f5f5f5\",yellow:\"ff0\",yellowgreen:\"9acd32\"},E=c.hexNames=function(t){var e={};for(var r in t)t.hasOwnProperty(r)&&(e[t[r]]=r);return e}(S);function C(t){return t=parseFloat(t),(isNaN(t)||t<0||t>1)&&(t=1),t}function L(e,r){(function(t){return\"string\"==typeof t&&-1!=t.indexOf(\".\")&&1===parseFloat(t)})(e)&&(e=\"100%\");var n=function(t){return\"string\"==typeof t&&-1!=t.indexOf(\"%\")}(e);return e=o(r,s(0,parseFloat(e))),n&&(e=parseInt(e*r,10)/100),t.abs(e-r)<1e-6?1:e%r/parseFloat(r)}function P(t){return o(1,s(0,t))}function O(t){return parseInt(t,16)}function I(t){return 1==t.length?\"0\"+t:\"\"+t}function z(t){return t<=1&&(t=100*t+\"%\"),t}function D(e){return t.round(255*parseFloat(e)).toString(16)}function R(t){return O(t)/255}var F,B,N,j=(B=\"[\\\\s|\\\\(]+(\"+(F=\"(?:[-\\\\+]?\\\\d*\\\\.\\\\d+%?)|(?:[-\\\\+]?\\\\d+%?)\")+\")[,|\\\\s]+(\"+F+\")[,|\\\\s]+(\"+F+\")\\\\s*\\\\)?\",N=\"[\\\\s|\\\\(]+(\"+F+\")[,|\\\\s]+(\"+F+\")[,|\\\\s]+(\"+F+\")[,|\\\\s]+(\"+F+\")\\\\s*\\\\)?\",{CSS_UNIT:new RegExp(F),rgb:new RegExp(\"rgb\"+B),rgba:new RegExp(\"rgba\"+N),hsl:new RegExp(\"hsl\"+B),hsla:new RegExp(\"hsla\"+N),hsv:new RegExp(\"hsv\"+B),hsva:new RegExp(\"hsva\"+N),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/});function V(t){return!!j.CSS_UNIT.exec(t)}\"undefined\"!=typeof e&&e.exports?e.exports=c:window.tinycolor=c}(Math)},{}],539:[function(t,e,r){\"use strict\";e.exports=a,e.exports.float32=e.exports.float=a,e.exports.fract32=e.exports.fract=function(t){if(t.length){for(var e=a(t),r=0,n=e.length;r<n;r++)e[r]=t[r]-e[r];return e}return a(t-a(t))};var n=new Float32Array(1);function a(t){if(t.length){if(t instanceof Float32Array)return t;var e=new Float32Array(t);return e.set(t),e}return n[0]=t,n[0]}},{}],540:[function(t,e,r){\"use strict\";var n=t(\"parse-unit\");e.exports=o;var a=96;function i(t,e){var r=n(getComputedStyle(t).getPropertyValue(e));return r[0]*o(r[1],t)}function o(t,e){switch(e=e||document.body,t=(t||\"px\").trim().toLowerCase(),e!==window&&e!==document||(e=document.body),t){case\"%\":return e.clientHeight/100;case\"ch\":case\"ex\":return function(t,e){var r=document.createElement(\"div\");r.style[\"font-size\"]=\"128\"+t,e.appendChild(r);var n=i(r,\"font-size\")/128;return e.removeChild(r),n}(t,e);case\"em\":return i(e,\"font-size\");case\"rem\":return i(document.body,\"font-size\");case\"vw\":return window.innerWidth/100;case\"vh\":return window.innerHeight/100;case\"vmin\":return Math.min(window.innerWidth,window.innerHeight)/100;case\"vmax\":return Math.max(window.innerWidth,window.innerHeight)/100;case\"in\":return a;case\"cm\":return a/2.54;case\"mm\":return a/25.4;case\"pt\":return a/72;case\"pc\":return a/6}return 1}},{\"parse-unit\":462}],541:[function(t,e,r){var n;n=this,function(t){\"use strict\";var e=function(t){return t},r=function(t){if(null==(r=t.transform))return e;var r,n,a,i=r.scale[0],o=r.scale[1],s=r.translate[0],l=r.translate[1];return function(t,e){return e||(n=a=0),t[0]=(n+=t[0])*i+s,t[1]=(a+=t[1])*o+l,t}},n=function(t){var e=t.bbox;function n(t){l[0]=t[0],l[1]=t[1],s(l),l[0]<c&&(c=l[0]),l[0]>h&&(h=l[0]),l[1]<u&&(u=l[1]),l[1]>f&&(f=l[1])}function a(t){switch(t.type){case\"GeometryCollection\":t.geometries.forEach(a);break;case\"Point\":n(t.coordinates);break;case\"MultiPoint\":t.coordinates.forEach(n)}}if(!e){var i,o,s=r(t),l=new Array(2),c=1/0,u=c,h=-c,f=-c;for(o in t.arcs.forEach(function(t){for(var e=-1,r=t.length;++e<r;)i=t[e],l[0]=i[0],l[1]=i[1],s(l,e),l[0]<c&&(c=l[0]),l[0]>h&&(h=l[0]),l[1]<u&&(u=l[1]),l[1]>f&&(f=l[1])}),t.objects)a(t.objects[o]);e=t.bbox=[c,u,h,f]}return e},a=function(t,e){for(var r,n=t.length,a=n-e;a<--n;)r=t[a],t[a++]=t[n],t[n]=r};function i(t,e){var r=e.id,n=e.bbox,a=null==e.properties?{}:e.properties,i=o(t,e);return null==r&&null==n?{type:\"Feature\",properties:a,geometry:i}:null==n?{type:\"Feature\",id:r,properties:a,geometry:i}:{type:\"Feature\",id:r,bbox:n,properties:a,geometry:i}}function o(t,e){var n=r(t),i=t.arcs;function o(t,e){e.length&&e.pop();for(var r=i[t<0?~t:t],o=0,s=r.length;o<s;++o)e.push(n(r[o].slice(),o));t<0&&a(e,s)}function s(t){return n(t.slice())}function l(t){for(var e=[],r=0,n=t.length;r<n;++r)o(t[r],e);return e.length<2&&e.push(e[0].slice()),e}function c(t){for(var e=l(t);e.length<4;)e.push(e[0].slice());return e}function u(t){return t.map(c)}return function t(e){var r,n=e.type;switch(n){case\"GeometryCollection\":return{type:n,geometries:e.geometries.map(t)};case\"Point\":r=s(e.coordinates);break;case\"MultiPoint\":r=e.coordinates.map(s);break;case\"LineString\":r=l(e.arcs);break;case\"MultiLineString\":r=e.arcs.map(l);break;case\"Polygon\":r=u(e.arcs);break;case\"MultiPolygon\":r=e.arcs.map(u);break;default:return null}return{type:n,coordinates:r}}(e)}var s=function(t,e){var r={},n={},a={},i=[],o=-1;function s(t,e){for(var n in t){var a=t[n];delete e[a.start],delete a.start,delete a.end,a.forEach(function(t){r[t<0?~t:t]=1}),i.push(a)}}return e.forEach(function(r,n){var a,i=t.arcs[r<0?~r:r];i.length<3&&!i[1][0]&&!i[1][1]&&(a=e[++o],e[o]=r,e[n]=a)}),e.forEach(function(e){var r,i,o=function(e){var r,n=t.arcs[e<0?~e:e],a=n[0];t.transform?(r=[0,0],n.forEach(function(t){r[0]+=t[0],r[1]+=t[1]})):r=n[n.length-1];return e<0?[r,a]:[a,r]}(e),s=o[0],l=o[1];if(r=a[s])if(delete a[r.end],r.push(e),r.end=l,i=n[l]){delete n[i.start];var c=i===r?r:r.concat(i);n[c.start=r.start]=a[c.end=i.end]=c}else n[r.start]=a[r.end]=r;else if(r=n[l])if(delete n[r.start],r.unshift(e),r.start=s,i=a[s]){delete a[i.end];var u=i===r?r:i.concat(r);n[u.start=i.start]=a[u.end=r.end]=u}else n[r.start]=a[r.end]=r;else n[(r=[e]).start=s]=a[r.end=l]=r}),s(a,n),s(n,a),e.forEach(function(t){r[t<0?~t:t]||i.push([t])}),i};function l(t,e,r){var n,a,i;if(arguments.length>1)n=function(t,e,r){var n,a=[],i=[];function o(t){var e=t<0?~t:t;(i[e]||(i[e]=[])).push({i:t,g:n})}function s(t){t.forEach(o)}function l(t){t.forEach(s)}return function t(e){switch(n=e,e.type){case\"GeometryCollection\":e.geometries.forEach(t);break;case\"LineString\":s(e.arcs);break;case\"MultiLineString\":case\"Polygon\":l(e.arcs);break;case\"MultiPolygon\":e.arcs.forEach(l)}}(e),i.forEach(null==r?function(t){a.push(t[0].i)}:function(t){r(t[0].g,t[t.length-1].g)&&a.push(t[0].i)}),a}(0,e,r);else for(a=0,n=new Array(i=t.arcs.length);a<i;++a)n[a]=a;return{type:\"MultiLineString\",arcs:s(t,n)}}function c(t,e){var r={},n=[],a=[];function i(t){t.forEach(function(e){e.forEach(function(e){(r[e=e<0?~e:e]||(r[e]=[])).push(t)})}),n.push(t)}function l(e){return function(t){for(var e,r=-1,n=t.length,a=t[n-1],i=0;++r<n;)e=a,a=t[r],i+=e[0]*a[1]-e[1]*a[0];return Math.abs(i)}(o(t,{type:\"Polygon\",arcs:[e]}).coordinates[0])}return e.forEach(function t(e){switch(e.type){case\"GeometryCollection\":e.geometries.forEach(t);break;case\"Polygon\":i(e.arcs);break;case\"MultiPolygon\":e.arcs.forEach(i)}}),n.forEach(function(t){if(!t._){var e=[],n=[t];for(t._=1,a.push(e);t=n.pop();)e.push(t),t.forEach(function(t){t.forEach(function(t){r[t<0?~t:t].forEach(function(t){t._||(t._=1,n.push(t))})})})}}),n.forEach(function(t){delete t._}),{type:\"MultiPolygon\",arcs:a.map(function(e){var n,a=[];if(e.forEach(function(t){t.forEach(function(t){t.forEach(function(t){r[t<0?~t:t].length<2&&a.push(t)})})}),(n=(a=s(t,a)).length)>1)for(var i,o,c=1,u=l(a[0]);c<n;++c)(i=l(a[c]))>u&&(o=a[0],a[0]=a[c],a[c]=o,u=i);return a})}}var u=function(t,e){for(var r=0,n=t.length;r<n;){var a=r+n>>>1;t[a]<e?r=a+1:n=a}return r};t.bbox=n,t.feature=function(t,e){return\"GeometryCollection\"===e.type?{type:\"FeatureCollection\",features:e.geometries.map(function(e){return i(t,e)})}:i(t,e)},t.mesh=function(t){return o(t,l.apply(this,arguments))},t.meshArcs=l,t.merge=function(t){return o(t,c.apply(this,arguments))},t.mergeArcs=c,t.neighbors=function(t){var e={},r=t.map(function(){return[]});function n(t,r){t.forEach(function(t){t<0&&(t=~t);var n=e[t];n?n.push(r):e[t]=[r]})}function a(t,e){t.forEach(function(t){n(t,e)})}var i={LineString:n,MultiLineString:a,Polygon:a,MultiPolygon:function(t,e){t.forEach(function(t){a(t,e)})}};for(var o in t.forEach(function t(e,r){\"GeometryCollection\"===e.type?e.geometries.forEach(function(e){t(e,r)}):e.type in i&&i[e.type](e.arcs,r)}),e)for(var s=e[o],l=s.length,c=0;c<l;++c)for(var h=c+1;h<l;++h){var f,p=s[c],d=s[h];(f=r[p])[o=u(f,d)]!==d&&f.splice(o,0,d),(f=r[d])[o=u(f,p)]!==p&&f.splice(o,0,p)}return r},t.quantize=function(t,e){if(!((e=Math.floor(e))>=2))throw new Error(\"n must be \\u22652\");if(t.transform)throw new Error(\"already quantized\");var r,a=n(t),i=a[0],o=(a[2]-i)/(e-1)||1,s=a[1],l=(a[3]-s)/(e-1)||1;function c(t){t[0]=Math.round((t[0]-i)/o),t[1]=Math.round((t[1]-s)/l)}function u(t){switch(t.type){case\"GeometryCollection\":t.geometries.forEach(u);break;case\"Point\":c(t.coordinates);break;case\"MultiPoint\":t.coordinates.forEach(c)}}for(r in t.arcs.forEach(function(t){for(var e,r,n,a=1,c=1,u=t.length,h=t[0],f=h[0]=Math.round((h[0]-i)/o),p=h[1]=Math.round((h[1]-s)/l);a<u;++a)h=t[a],r=Math.round((h[0]-i)/o),n=Math.round((h[1]-s)/l),r===f&&n===p||((e=t[c++])[0]=r-f,f=r,e[1]=n-p,p=n);c<2&&((e=t[c++])[0]=0,e[1]=0),t.length=c}),t.objects)u(t.objects[r]);return t.transform={scale:[o,l],translate:[i,s]},t},t.transform=r,t.untransform=function(t){if(null==(r=t.transform))return e;var r,n,a,i=r.scale[0],o=r.scale[1],s=r.translate[0],l=r.translate[1];return function(t,e){e||(n=a=0);var r=Math.round((t[0]-s)/i),c=Math.round((t[1]-l)/o);return t[0]=r-n,n=r,t[1]=c-a,a=c,t}},Object.defineProperty(t,\"__esModule\",{value:!0})}(\"object\"==typeof r&&\"undefined\"!=typeof e?r:n.topojson=n.topojson||{})},{}],542:[function(t,e,r){\"use strict\";e.exports=function(t){if(t<0)return[];if(0===t)return[[0]];for(var e=0|Math.round(i(t+1)),r=[],o=0;o<e;++o){for(var s=n.unrank(t,o),l=[0],c=0,u=0;u<s.length;++u)c+=1<<s[u],l.push(c);a(s)<1&&(l[0]=c,l[t]=0),r.push(l)}return r};var n=t(\"permutation-rank\"),a=t(\"permutation-parity\"),i=t(\"gamma\")},{gamma:232,\"permutation-parity\":464,\"permutation-rank\":465}],543:[function(t,e,r){\"use strict\";e.exports=function(t){var e=(t=t||{}).center||[0,0,0],r=t.up||[0,1,0],n=t.right||h(r),a=t.radius||1,i=t.theta||0,u=t.phi||0;if(e=[].slice.call(e,0,3),r=[].slice.call(r,0,3),s(r,r),n=[].slice.call(n,0,3),s(n,n),\"eye\"in t){var p=t.eye,d=[p[0]-e[0],p[1]-e[1],p[2]-e[2]];o(n,d,r),c(n[0],n[1],n[2])<1e-6?n=h(r):s(n,n),a=c(d[0],d[1],d[2]);var g=l(r,d)/a,v=l(n,d)/a;u=Math.acos(g),i=Math.acos(v)}return a=Math.log(a),new f(t.zoomMin,t.zoomMax,e,r,n,a,i,u)};var n=t(\"filtered-vector\"),a=t(\"gl-mat4/invert\"),i=t(\"gl-mat4/rotate\"),o=t(\"gl-vec3/cross\"),s=t(\"gl-vec3/normalize\"),l=t(\"gl-vec3/dot\");function c(t,e,r){return Math.sqrt(Math.pow(t,2)+Math.pow(e,2)+Math.pow(r,2))}function u(t){return Math.min(1,Math.max(-1,t))}function h(t){var e=Math.abs(t[0]),r=Math.abs(t[1]),n=Math.abs(t[2]),a=[0,0,0];e>Math.max(r,n)?a[2]=1:r>Math.max(e,n)?a[0]=1:a[1]=1;for(var i=0,o=0,l=0;l<3;++l)i+=t[l]*t[l],o+=a[l]*t[l];for(l=0;l<3;++l)a[l]-=o/i*t[l];return s(a,a),a}function f(t,e,r,a,i,o,s,l){this.center=n(r),this.up=n(a),this.right=n(i),this.radius=n([o]),this.angle=n([s,l]),this.angle.bounds=[[-1/0,-Math.PI/2],[1/0,Math.PI/2]],this.setDistanceLimits(t,e),this.computedCenter=this.center.curve(0),this.computedUp=this.up.curve(0),this.computedRight=this.right.curve(0),this.computedRadius=this.radius.curve(0),this.computedAngle=this.angle.curve(0),this.computedToward=[0,0,0],this.computedEye=[0,0,0],this.computedMatrix=new Array(16);for(var c=0;c<16;++c)this.computedMatrix[c]=.5;this.recalcMatrix(0)}var p=f.prototype;p.setDistanceLimits=function(t,e){t=t>0?Math.log(t):-1/0,e=e>0?Math.log(e):1/0,e=Math.max(e,t),this.radius.bounds[0][0]=t,this.radius.bounds[1][0]=e},p.getDistanceLimits=function(t){var e=this.radius.bounds[0];return t?(t[0]=Math.exp(e[0][0]),t[1]=Math.exp(e[1][0]),t):[Math.exp(e[0][0]),Math.exp(e[1][0])]},p.recalcMatrix=function(t){this.center.curve(t),this.up.curve(t),this.right.curve(t),this.radius.curve(t),this.angle.curve(t);for(var e=this.computedUp,r=this.computedRight,n=0,a=0,i=0;i<3;++i)a+=e[i]*r[i],n+=e[i]*e[i];var l=Math.sqrt(n),u=0;for(i=0;i<3;++i)r[i]-=e[i]*a/n,u+=r[i]*r[i],e[i]/=l;var h=Math.sqrt(u);for(i=0;i<3;++i)r[i]/=h;var f=this.computedToward;o(f,e,r),s(f,f);var p=Math.exp(this.computedRadius[0]),d=this.computedAngle[0],g=this.computedAngle[1],v=Math.cos(d),m=Math.sin(d),y=Math.cos(g),x=Math.sin(g),b=this.computedCenter,_=v*y,w=m*y,k=x,T=-v*x,A=-m*x,M=y,S=this.computedEye,E=this.computedMatrix;for(i=0;i<3;++i){var C=_*r[i]+w*f[i]+k*e[i];E[4*i+1]=T*r[i]+A*f[i]+M*e[i],E[4*i+2]=C,E[4*i+3]=0}var L=E[1],P=E[5],O=E[9],I=E[2],z=E[6],D=E[10],R=P*D-O*z,F=O*I-L*D,B=L*z-P*I,N=c(R,F,B);R/=N,F/=N,B/=N,E[0]=R,E[4]=F,E[8]=B;for(i=0;i<3;++i)S[i]=b[i]+E[2+4*i]*p;for(i=0;i<3;++i){u=0;for(var j=0;j<3;++j)u+=E[i+4*j]*S[j];E[12+i]=-u}E[15]=1},p.getMatrix=function(t,e){this.recalcMatrix(t);var r=this.computedMatrix;if(e){for(var n=0;n<16;++n)e[n]=r[n];return e}return r};var d=[0,0,0];p.rotate=function(t,e,r,n){if(this.angle.move(t,e,r),n){this.recalcMatrix(t);var a=this.computedMatrix;d[0]=a[2],d[1]=a[6],d[2]=a[10];for(var o=this.computedUp,s=this.computedRight,l=this.computedToward,c=0;c<3;++c)a[4*c]=o[c],a[4*c+1]=s[c],a[4*c+2]=l[c];i(a,a,n,d);for(c=0;c<3;++c)o[c]=a[4*c],s[c]=a[4*c+1];this.up.set(t,o[0],o[1],o[2]),this.right.set(t,s[0],s[1],s[2])}},p.pan=function(t,e,r,n){e=e||0,r=r||0,n=n||0,this.recalcMatrix(t);var a=this.computedMatrix,i=(Math.exp(this.computedRadius[0]),a[1]),o=a[5],s=a[9],l=c(i,o,s);i/=l,o/=l,s/=l;var u=a[0],h=a[4],f=a[8],p=u*i+h*o+f*s,d=c(u-=i*p,h-=o*p,f-=s*p),g=(u/=d)*e+i*r,v=(h/=d)*e+o*r,m=(f/=d)*e+s*r;this.center.move(t,g,v,m);var y=Math.exp(this.computedRadius[0]);y=Math.max(1e-4,y+n),this.radius.set(t,Math.log(y))},p.translate=function(t,e,r,n){this.center.move(t,e||0,r||0,n||0)},p.setMatrix=function(t,e,r,n){var i=1;\"number\"==typeof r&&(i=0|r),(i<0||i>3)&&(i=1);var o=(i+2)%3;e||(this.recalcMatrix(t),e=this.computedMatrix);var s=e[i],l=e[i+4],h=e[i+8];if(n){var f=Math.abs(s),p=Math.abs(l),d=Math.abs(h),g=Math.max(f,p,d);f===g?(s=s<0?-1:1,l=h=0):d===g?(h=h<0?-1:1,s=l=0):(l=l<0?-1:1,s=h=0)}else{var v=c(s,l,h);s/=v,l/=v,h/=v}var m,y,x=e[o],b=e[o+4],_=e[o+8],w=x*s+b*l+_*h,k=c(x-=s*w,b-=l*w,_-=h*w),T=l*(_/=k)-h*(b/=k),A=h*(x/=k)-s*_,M=s*b-l*x,S=c(T,A,M);if(T/=S,A/=S,M/=S,this.center.jump(t,H,G,Y),this.radius.idle(t),this.up.jump(t,s,l,h),this.right.jump(t,x,b,_),2===i){var E=e[1],C=e[5],L=e[9],P=E*x+C*b+L*_,O=E*T+C*A+L*M;m=R<0?-Math.PI/2:Math.PI/2,y=Math.atan2(O,P)}else{var I=e[2],z=e[6],D=e[10],R=I*s+z*l+D*h,F=I*x+z*b+D*_,B=I*T+z*A+D*M;m=Math.asin(u(R)),y=Math.atan2(B,F)}this.angle.jump(t,y,m),this.recalcMatrix(t);var N=e[2],j=e[6],V=e[10],U=this.computedMatrix;a(U,e);var q=U[15],H=U[12]/q,G=U[13]/q,Y=U[14]/q,W=Math.exp(this.computedRadius[0]);this.center.jump(t,H-N*W,G-j*W,Y-V*W)},p.lastT=function(){return Math.max(this.center.lastT(),this.up.lastT(),this.right.lastT(),this.radius.lastT(),this.angle.lastT())},p.idle=function(t){this.center.idle(t),this.up.idle(t),this.right.idle(t),this.radius.idle(t),this.angle.idle(t)},p.flush=function(t){this.center.flush(t),this.up.flush(t),this.right.flush(t),this.radius.flush(t),this.angle.flush(t)},p.setDistance=function(t,e){e>0&&this.radius.set(t,Math.log(e))},p.lookAt=function(t,e,r,n){this.recalcMatrix(t),e=e||this.computedEye,r=r||this.computedCenter;var a=(n=n||this.computedUp)[0],i=n[1],o=n[2],s=c(a,i,o);if(!(s<1e-6)){a/=s,i/=s,o/=s;var l=e[0]-r[0],h=e[1]-r[1],f=e[2]-r[2],p=c(l,h,f);if(!(p<1e-6)){l/=p,h/=p,f/=p;var d=this.computedRight,g=d[0],v=d[1],m=d[2],y=a*g+i*v+o*m,x=c(g-=y*a,v-=y*i,m-=y*o);if(!(x<.01&&(x=c(g=i*f-o*h,v=o*l-a*f,m=a*h-i*l))<1e-6)){g/=x,v/=x,m/=x,this.up.set(t,a,i,o),this.right.set(t,g,v,m),this.center.set(t,r[0],r[1],r[2]),this.radius.set(t,Math.log(p));var b=i*m-o*v,_=o*g-a*m,w=a*v-i*g,k=c(b,_,w),T=a*l+i*h+o*f,A=g*l+v*h+m*f,M=(b/=k)*l+(_/=k)*h+(w/=k)*f,S=Math.asin(u(T)),E=Math.atan2(M,A),C=this.angle._state,L=C[C.length-1],P=C[C.length-2];L%=2*Math.PI;var O=Math.abs(L+2*Math.PI-E),I=Math.abs(L-E),z=Math.abs(L-2*Math.PI-E);O<I&&(L+=2*Math.PI),z<I&&(L-=2*Math.PI),this.angle.jump(this.angle.lastT(),L,P),this.angle.set(t,E,S)}}}}},{\"filtered-vector\":227,\"gl-mat4/invert\":266,\"gl-mat4/rotate\":271,\"gl-vec3/cross\":335,\"gl-vec3/dot\":340,\"gl-vec3/normalize\":357}],544:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){var a=t*e,i=n*t,o=i-(i-t),s=t-o,l=n*e,c=l-(l-e),u=e-c,h=s*u-(a-o*c-s*c-o*u);if(r)return r[0]=h,r[1]=a,r;return[h,a]};var n=+(Math.pow(2,27)+1)},{}],545:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){var n=t+e,a=n-t,i=e-a,o=t-(n-a);if(r)return r[0]=o+i,r[1]=n,r;return[o+i,n]}},{}],546:[function(t,e,r){(function(e,n){\"use strict\";var a=t(\"bit-twiddle\"),i=t(\"dup\");e.__TYPEDARRAY_POOL||(e.__TYPEDARRAY_POOL={UINT8:i([32,0]),UINT16:i([32,0]),UINT32:i([32,0]),INT8:i([32,0]),INT16:i([32,0]),INT32:i([32,0]),FLOAT:i([32,0]),DOUBLE:i([32,0]),DATA:i([32,0]),UINT8C:i([32,0]),BUFFER:i([32,0])});var o=\"undefined\"!=typeof Uint8ClampedArray,s=e.__TYPEDARRAY_POOL;s.UINT8C||(s.UINT8C=i([32,0])),s.BUFFER||(s.BUFFER=i([32,0]));var l=s.DATA,c=s.BUFFER;function u(t){if(t){var e=t.length||t.byteLength,r=a.log2(e);l[r].push(t)}}function h(t){t=a.nextPow2(t);var e=a.log2(t),r=l[e];return r.length>0?r.pop():new ArrayBuffer(t)}function f(t){return new Uint8Array(h(t),0,t)}function p(t){return new Uint16Array(h(2*t),0,t)}function d(t){return new Uint32Array(h(4*t),0,t)}function g(t){return new Int8Array(h(t),0,t)}function v(t){return new Int16Array(h(2*t),0,t)}function m(t){return new Int32Array(h(4*t),0,t)}function y(t){return new Float32Array(h(4*t),0,t)}function x(t){return new Float64Array(h(8*t),0,t)}function b(t){return o?new Uint8ClampedArray(h(t),0,t):f(t)}function _(t){return new DataView(h(t),0,t)}function w(t){t=a.nextPow2(t);var e=a.log2(t),r=c[e];return r.length>0?r.pop():new n(t)}r.free=function(t){if(n.isBuffer(t))c[a.log2(t.length)].push(t);else{if(\"[object ArrayBuffer]\"!==Object.prototype.toString.call(t)&&(t=t.buffer),!t)return;var e=t.length||t.byteLength,r=0|a.log2(e);l[r].push(t)}},r.freeUint8=r.freeUint16=r.freeUint32=r.freeInt8=r.freeInt16=r.freeInt32=r.freeFloat32=r.freeFloat=r.freeFloat64=r.freeDouble=r.freeUint8Clamped=r.freeDataView=function(t){u(t.buffer)},r.freeArrayBuffer=u,r.freeBuffer=function(t){c[a.log2(t.length)].push(t)},r.malloc=function(t,e){if(void 0===e||\"arraybuffer\"===e)return h(t);switch(e){case\"uint8\":return f(t);case\"uint16\":return p(t);case\"uint32\":return d(t);case\"int8\":return g(t);case\"int16\":return v(t);case\"int32\":return m(t);case\"float\":case\"float32\":return y(t);case\"double\":case\"float64\":return x(t);case\"uint8_clamped\":return b(t);case\"buffer\":return w(t);case\"data\":case\"dataview\":return _(t);default:return null}return null},r.mallocArrayBuffer=h,r.mallocUint8=f,r.mallocUint16=p,r.mallocUint32=d,r.mallocInt8=g,r.mallocInt16=v,r.mallocInt32=m,r.mallocFloat32=r.mallocFloat=y,r.mallocFloat64=r.mallocDouble=x,r.mallocUint8Clamped=b,r.mallocDataView=_,r.mallocBuffer=w,r.clearCache=function(){for(var t=0;t<32;++t)s.UINT8[t].length=0,s.UINT16[t].length=0,s.UINT32[t].length=0,s.INT8[t].length=0,s.INT16[t].length=0,s.INT32[t].length=0,s.FLOAT[t].length=0,s.DOUBLE[t].length=0,s.UINT8C[t].length=0,l[t].length=0,c[t].length=0}}).call(this,\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{},t(\"buffer\").Buffer)},{\"bit-twiddle\":93,buffer:106,dup:171}],547:[function(t,e,r){\"use strict\";function n(t){this.roots=new Array(t),this.ranks=new Array(t);for(var e=0;e<t;++e)this.roots[e]=e,this.ranks[e]=0}e.exports=n;var a=n.prototype;Object.defineProperty(a,\"length\",{get:function(){return this.roots.length}}),a.makeSet=function(){var t=this.roots.length;return this.roots.push(t),this.ranks.push(0),t},a.find=function(t){for(var e=t,r=this.roots;r[t]!==t;)t=r[t];for(;r[e]!==t;){var n=r[e];r[e]=t,e=n}return t},a.link=function(t,e){var r=this.find(t),n=this.find(e);if(r!==n){var a=this.ranks,i=this.roots,o=a[r],s=a[n];o<s?i[r]=n:s<o?i[n]=r:(i[n]=r,++a[r])}}},{}],548:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){return 0===t.length?t:e?(r||t.sort(e),function(t,e){for(var r=1,n=t.length,a=t[0],i=t[0],o=1;o<n;++o)if(i=a,e(a=t[o],i)){if(o===r){r++;continue}t[r++]=a}return t.length=r,t}(t,e)):(r||t.sort(),function(t){for(var e=1,r=t.length,n=t[0],a=t[0],i=1;i<r;++i,a=n)if(a=n,(n=t[i])!==a){if(i===e){e++;continue}t[e++]=n}return t.length=e,t}(t))}},{}],549:[function(t,e,r){var n=/[\\'\\\"]/;e.exports=function(t){return t?(n.test(t.charAt(0))&&(t=t.substr(1)),n.test(t.charAt(t.length-1))&&(t=t.substr(0,t.length-1)),t):\"\"}},{}],550:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){Array.isArray(r)||(r=[].slice.call(arguments,2));for(var n=0,a=r.length;n<a;n++){var i=r[n];for(var o in i)if((void 0===e[o]||Array.isArray(e[o])||t[o]!==e[o])&&o in e){var s;if(!0===i[o])s=e[o];else{if(!1===i[o])continue;if(\"function\"==typeof i[o]&&void 0===(s=i[o](e[o],t,e)))continue}t[o]=s}}return t}},{}],551:[function(t,e,r){\"use strict\";e.exports=function(t,e){\"object\"==typeof e&&null!==e||(e={});return n(t,e.canvas||a,e.context||i,e)};var n=t(\"./lib/vtext\"),a=null,i=null;\"undefined\"!=typeof document&&((a=document.createElement(\"canvas\")).width=8192,a.height=1024,i=a.getContext(\"2d\"))},{\"./lib/vtext\":552}],552:[function(t,e,r){e.exports=function(t,e,r,n){var i=64,o=1.25,s={breaklines:!1,bolds:!1,italics:!1,subscripts:!1,superscripts:!1};n&&(n.size&&n.size>0&&(i=n.size),n.lineSpacing&&n.lineSpacing>0&&(o=n.lineSpacing),n.styletags&&n.styletags.breaklines&&(s.breaklines=!!n.styletags.breaklines),n.styletags&&n.styletags.bolds&&(s.bolds=!!n.styletags.bolds),n.styletags&&n.styletags.italics&&(s.italics=!!n.styletags.italics),n.styletags&&n.styletags.subscripts&&(s.subscripts=!!n.styletags.subscripts),n.styletags&&n.styletags.superscripts&&(s.superscripts=!!n.styletags.superscripts));return r.font=[n.fontStyle,n.fontVariant,n.fontWeight,i+\"px\",n.font].filter(function(t){return t}).join(\" \"),r.textAlign=\"start\",r.textBaseline=\"alphabetic\",r.direction=\"ltr\",w(function(t,e,r,n,i,o){r=r.replace(/\\n/g,\"\"),r=!0===o.breaklines?r.replace(/\\<br\\>/g,\"\\n\"):r.replace(/\\<br\\>/g,\" \");var s=\"\",l=[];for(k=0;k<r.length;++k)l[k]=s;!0===o.bolds&&(l=x(c,u,r,l)),!0===o.italics&&(l=x(h,f,r,l)),!0===o.superscripts&&(l=x(p,g,r,l)),!0===o.subscripts&&(l=x(v,y,r,l));var b=[],_=\"\";for(k=0;k<r.length;++k)null!==l[k]&&(_+=r[k],b.push(l[k]));var w,k,T,A,M,S=_.split(\"\\n\"),E=S.length,C=Math.round(i*n),L=n,P=2*n,O=0,I=E*C+P;t.height<I&&(t.height=I),e.fillStyle=\"#000\",e.fillRect(0,0,t.width,t.height),e.fillStyle=\"#fff\";var z=0,D=\"\";function R(){if(\"\"!==D){var t=e.measureText(D).width;e.fillText(D,L+T,P+A),T+=t}}function F(){return Math.round(M)+\"px \"}function B(t,r){var n=\"\"+e.font;if(!0===o.subscripts){var a=t.indexOf(m),i=r.indexOf(m),s=a>-1?parseInt(t[1+a]):0,l=i>-1?parseInt(r[1+i]):0;s!==l&&(n=n.replace(F(),\"?px \"),M*=Math.pow(.75,l-s),n=n.replace(\"?px \",F())),A+=.25*C*(l-s)}if(!0===o.superscripts){var c=t.indexOf(d),h=r.indexOf(d),p=c>-1?parseInt(t[1+c]):0,g=h>-1?parseInt(r[1+h]):0;p!==g&&(n=n.replace(F(),\"?px \"),M*=Math.pow(.75,g-p),n=n.replace(\"?px \",F())),A-=.25*C*(g-p)}if(!0===o.bolds){var v=t.indexOf(u)>-1,y=r.indexOf(u)>-1;!v&&y&&(n=x?n.replace(\"italic \",\"italic bold \"):\"bold \"+n),v&&!y&&(n=n.replace(\"bold \",\"\"))}if(!0===o.italics){var x=t.indexOf(f)>-1,b=r.indexOf(f)>-1;!x&&b&&(n=\"italic \"+n),x&&!b&&(n=n.replace(\"italic \",\"\"))}e.font=n}for(w=0;w<E;++w){var N=S[w]+\"\\n\";for(T=0,A=w*C,M=n,D=\"\",k=0;k<N.length;++k){var j=k+z<b.length?b[k+z]:b[b.length-1];s===j?D+=N[k]:(R(),D=N[k],void 0!==j&&(B(s,j),s=j))}R(),z+=N.length;var V=0|Math.round(T+2*L);O<V&&(O=V)}var U=O,q=P+C*E;return a(e.getImageData(0,0,U,q).data,[q,U,4]).pick(-1,-1,0).transpose(1,0)}(e,r,t,i,o,s),n,i)},e.exports.processPixels=w;var n=t(\"surface-nets\"),a=t(\"ndarray\"),i=t(\"simplify-planar-graph\"),o=t(\"clean-pslg\"),s=t(\"cdt2d\"),l=t(\"planar-graph-to-polyline\"),c=\"b\",u=\"b|\",h=\"i\",f=\"i|\",p=\"sup\",d=\"+\",g=\"+1\",v=\"sub\",m=\"-\",y=\"-1\";function x(t,e,r,n){for(var a=\"<\"+t+\">\",i=\"</\"+t+\">\",o=a.length,s=i.length,l=e[0]===d||e[0]===m,c=0,u=-s;c>-1&&-1!==(c=r.indexOf(a,c))&&-1!==(u=r.indexOf(i,c+o))&&!(u<=c);){for(var h=c;h<u+s;++h)if(h<c+o||h>=u)n[h]=null,r=r.substr(0,h)+\" \"+r.substr(h+1);else if(null!==n[h]){var f=n[h].indexOf(e[0]);-1===f?n[h]+=e:l&&(n[h]=n[h].substr(0,f+1)+(1+parseInt(n[h][f+1]))+n[h].substr(f+2))}var p=c+o,g=r.substr(p,u-p).indexOf(a);c=-1!==g?g:u+s}return n}function b(t,e){var r=n(t,128);return e?i(r.cells,r.positions,.25):{edges:r.cells,positions:r.positions}}function _(t,e,r,n){var a=b(t,n),i=function(t,e,r){for(var n=e.textAlign||\"start\",a=e.textBaseline||\"alphabetic\",i=[1<<30,1<<30],o=[0,0],s=t.length,l=0;l<s;++l)for(var c=t[l],u=0;u<2;++u)i[u]=0|Math.min(i[u],c[u]),o[u]=0|Math.max(o[u],c[u]);var h=0;switch(n){case\"center\":h=-.5*(i[0]+o[0]);break;case\"right\":case\"end\":h=-o[0];break;case\"left\":case\"start\":h=-i[0];break;default:throw new Error(\"vectorize-text: Unrecognized textAlign: '\"+n+\"'\")}var f=0;switch(a){case\"hanging\":case\"top\":f=-i[1];break;case\"middle\":f=-.5*(i[1]+o[1]);break;case\"alphabetic\":case\"ideographic\":f=-3*r;break;case\"bottom\":f=-o[1];break;default:throw new Error(\"vectorize-text: Unrecoginized textBaseline: '\"+a+\"'\")}var p=1/r;return\"lineHeight\"in e?p*=+e.lineHeight:\"width\"in e?p=e.width/(o[0]-i[0]):\"height\"in e&&(p=e.height/(o[1]-i[1])),t.map(function(t){return[p*(t[0]+h),p*(t[1]+f)]})}(a.positions,e,r),c=a.edges,u=\"ccw\"===e.orientation;if(o(i,c),e.polygons||e.polygon||e.polyline){for(var h=l(c,i),f=new Array(h.length),p=0;p<h.length;++p){for(var d=h[p],g=new Array(d.length),v=0;v<d.length;++v){for(var m=d[v],y=new Array(m.length),x=0;x<m.length;++x)y[x]=i[m[x]].slice();u&&y.reverse(),g[v]=y}f[p]=g}return f}return e.triangles||e.triangulate||e.triangle?{cells:s(i,c,{delaunay:!1,exterior:!1,interior:!0}),positions:i}:{edges:c,positions:i}}function w(t,e,r){try{return _(t,e,r,!0)}catch(t){}try{return _(t,e,r,!1)}catch(t){}return e.polygons||e.polyline||e.polygon?[]:e.triangles||e.triangulate||e.triangle?{cells:[],positions:[]}:{edges:[],positions:[]}}},{cdt2d:107,\"clean-pslg\":117,ndarray:451,\"planar-graph-to-polyline\":469,\"simplify-planar-graph\":525,\"surface-nets\":532}],553:[function(t,e,r){!function(){\"use strict\";if(\"undefined\"==typeof ses||!ses.ok||ses.ok()){\"undefined\"!=typeof ses&&(ses.weakMapPermitHostObjects=v);var t=!1;if(\"function\"==typeof WeakMap){var r=WeakMap;if(\"undefined\"!=typeof navigator&&/Firefox/.test(navigator.userAgent));else{var n=new r,a=Object.freeze({});if(n.set(a,1),1===n.get(a))return void(e.exports=WeakMap);t=!0}}Object.prototype.hasOwnProperty;var i=Object.getOwnPropertyNames,o=Object.defineProperty,s=Object.isExtensible,l=\"weakmap:\",c=l+\"ident:\"+Math.random()+\"___\";if(\"undefined\"!=typeof crypto&&\"function\"==typeof crypto.getRandomValues&&\"function\"==typeof ArrayBuffer&&\"function\"==typeof Uint8Array){var u=new ArrayBuffer(25),h=new Uint8Array(u);crypto.getRandomValues(h),c=l+\"rand:\"+Array.prototype.map.call(h,function(t){return(t%36).toString(36)}).join(\"\")+\"___\"}if(o(Object,\"getOwnPropertyNames\",{value:function(t){return i(t).filter(m)}}),\"getPropertyNames\"in Object){var f=Object.getPropertyNames;o(Object,\"getPropertyNames\",{value:function(t){return f(t).filter(m)}})}!function(){var t=Object.freeze;o(Object,\"freeze\",{value:function(e){return y(e),t(e)}});var e=Object.seal;o(Object,\"seal\",{value:function(t){return y(t),e(t)}});var r=Object.preventExtensions;o(Object,\"preventExtensions\",{value:function(t){return y(t),r(t)}})}();var p=!1,d=0,g=function(){this instanceof g||b();var t=[],e=[],r=d++;return Object.create(g.prototype,{get___:{value:x(function(n,a){var i,o=y(n);return o?r in o?o[r]:a:(i=t.indexOf(n))>=0?e[i]:a})},has___:{value:x(function(e){var n=y(e);return n?r in n:t.indexOf(e)>=0})},set___:{value:x(function(n,a){var i,o=y(n);return o?o[r]=a:(i=t.indexOf(n))>=0?e[i]=a:(i=t.length,e[i]=a,t[i]=n),this})},delete___:{value:x(function(n){var a,i,o=y(n);return o?r in o&&delete o[r]:!((a=t.indexOf(n))<0||(i=t.length-1,t[a]=void 0,e[a]=e[i],t[a]=t[i],t.length=i,e.length=i,0))})}})};g.prototype=Object.create(Object.prototype,{get:{value:function(t,e){return this.get___(t,e)},writable:!0,configurable:!0},has:{value:function(t){return this.has___(t)},writable:!0,configurable:!0},set:{value:function(t,e){return this.set___(t,e)},writable:!0,configurable:!0},delete:{value:function(t){return this.delete___(t)},writable:!0,configurable:!0}}),\"function\"==typeof r?function(){function n(){this instanceof g||b();var e,n=new r,a=void 0,i=!1;return e=t?function(t,e){return n.set(t,e),n.has(t)||(a||(a=new g),a.set(t,e)),this}:function(t,e){if(i)try{n.set(t,e)}catch(r){a||(a=new g),a.set___(t,e)}else n.set(t,e);return this},Object.create(g.prototype,{get___:{value:x(function(t,e){return a?n.has(t)?n.get(t):a.get___(t,e):n.get(t,e)})},has___:{value:x(function(t){return n.has(t)||!!a&&a.has___(t)})},set___:{value:x(e)},delete___:{value:x(function(t){var e=!!n.delete(t);return a&&a.delete___(t)||e})},permitHostObjects___:{value:x(function(t){if(t!==v)throw new Error(\"bogus call to permitHostObjects___\");i=!0})}})}t&&\"undefined\"!=typeof Proxy&&(Proxy=void 0),n.prototype=g.prototype,e.exports=n,Object.defineProperty(WeakMap.prototype,\"constructor\",{value:WeakMap,enumerable:!1,configurable:!0,writable:!0})}():(\"undefined\"!=typeof Proxy&&(Proxy=void 0),e.exports=g)}function v(t){t.permitHostObjects___&&t.permitHostObjects___(v)}function m(t){return!(t.substr(0,l.length)==l&&\"___\"===t.substr(t.length-3))}function y(t){if(t!==Object(t))throw new TypeError(\"Not an object: \"+t);var e=t[c];if(e&&e.key===t)return e;if(s(t)){e={key:t};try{return o(t,c,{value:e,writable:!1,enumerable:!1,configurable:!1}),e}catch(t){return}}}function x(t){return t.prototype=null,Object.freeze(t)}function b(){p||\"undefined\"==typeof console||(p=!0,console.warn(\"WeakMap should be invoked as new WeakMap(), not WeakMap(). This will be an error in the future.\"))}}()},{}],554:[function(t,e,r){var n=t(\"./hidden-store.js\");e.exports=function(){var t={};return function(e){if((\"object\"!=typeof e||null===e)&&\"function\"!=typeof e)throw new Error(\"Weakmap-shim: Key must be object\");var r=e.valueOf(t);return r&&r.identity===t?r:n(e,t)}}},{\"./hidden-store.js\":555}],555:[function(t,e,r){e.exports=function(t,e){var r={identity:e},n=t.valueOf;return Object.defineProperty(t,\"valueOf\",{value:function(t){return t!==e?n.apply(this,arguments):r},writable:!0}),r}},{}],556:[function(t,e,r){var n=t(\"./create-store.js\");e.exports=function(){var t=n();return{get:function(e,r){var n=t(e);return n.hasOwnProperty(\"value\")?n.value:r},set:function(e,r){return t(e).value=r,this},has:function(e){return\"value\"in t(e)},delete:function(e){return delete t(e).value}}}},{\"./create-store.js\":554}],557:[function(t,e,r){var n=t(\"get-canvas-context\");e.exports=function(t){return n(\"webgl\",t)}},{\"get-canvas-context\":233}],558:[function(t,e,r){var n=t(\"../main\"),a=t(\"object-assign\"),i=n.instance();function o(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}o.prototype=new n.baseCalendar,a(o.prototype,{name:\"Chinese\",jdEpoch:1721425.5,hasYearZero:!1,minMonth:0,firstMonth:0,minDay:1,regionalOptions:{\"\":{name:\"Chinese\",epochs:[\"BEC\",\"EC\"],monthNumbers:function(t,e){if(\"string\"==typeof t){var r=t.match(l);return r?r[0]:\"\"}var n=this._validateYear(t),a=t.month(),i=\"\"+this.toChineseMonth(n,a);return e&&i.length<2&&(i=\"0\"+i),this.isIntercalaryMonth(n,a)&&(i+=\"i\"),i},monthNames:function(t){if(\"string\"==typeof t){var e=t.match(c);return e?e[0]:\"\"}var r=this._validateYear(t),n=t.month(),a=[\"\\u4e00\\u6708\",\"\\u4e8c\\u6708\",\"\\u4e09\\u6708\",\"\\u56db\\u6708\",\"\\u4e94\\u6708\",\"\\u516d\\u6708\",\"\\u4e03\\u6708\",\"\\u516b\\u6708\",\"\\u4e5d\\u6708\",\"\\u5341\\u6708\",\"\\u5341\\u4e00\\u6708\",\"\\u5341\\u4e8c\\u6708\"][this.toChineseMonth(r,n)-1];return this.isIntercalaryMonth(r,n)&&(a=\"\\u95f0\"+a),a},monthNamesShort:function(t){if(\"string\"==typeof t){var e=t.match(u);return e?e[0]:\"\"}var r=this._validateYear(t),n=t.month(),a=[\"\\u4e00\",\"\\u4e8c\",\"\\u4e09\",\"\\u56db\",\"\\u4e94\",\"\\u516d\",\"\\u4e03\",\"\\u516b\",\"\\u4e5d\",\"\\u5341\",\"\\u5341\\u4e00\",\"\\u5341\\u4e8c\"][this.toChineseMonth(r,n)-1];return this.isIntercalaryMonth(r,n)&&(a=\"\\u95f0\"+a),a},parseMonth:function(t,e){t=this._validateYear(t);var r,n=parseInt(e);if(isNaN(n))\"\\u95f0\"===e[0]&&(r=!0,e=e.substring(1)),\"\\u6708\"===e[e.length-1]&&(e=e.substring(0,e.length-1)),n=1+[\"\\u4e00\",\"\\u4e8c\",\"\\u4e09\",\"\\u56db\",\"\\u4e94\",\"\\u516d\",\"\\u4e03\",\"\\u516b\",\"\\u4e5d\",\"\\u5341\",\"\\u5341\\u4e00\",\"\\u5341\\u4e8c\"].indexOf(e);else{var a=e[e.length-1];r=\"i\"===a||\"I\"===a}return this.toMonthIndex(t,n,r)},dayNames:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],dayNamesShort:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],dayNamesMin:[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"],digits:null,dateFormat:\"yyyy/mm/dd\",firstDay:1,isRTL:!1}},_validateYear:function(t,e){if(t.year&&(t=t.year()),\"number\"!=typeof t||t<1888||t>2111)throw e.replace(/\\{0\\}/,this.local.name);return t},toMonthIndex:function(t,e,r){var a=this.intercalaryMonth(t);if(r&&e!==a||e<1||e>12)throw n.local.invalidMonth.replace(/\\{0\\}/,this.local.name);return a?!r&&e<=a?e-1:e:e-1},toChineseMonth:function(t,e){t.year&&(e=(t=t.year()).month());var r=this.intercalaryMonth(t);if(e<0||e>(r?12:11))throw n.local.invalidMonth.replace(/\\{0\\}/,this.local.name);return r?e<r?e+1:e:e+1},intercalaryMonth:function(t){return t=this._validateYear(t),h[t-h[0]]>>13},isIntercalaryMonth:function(t,e){t.year&&(e=(t=t.year()).month());var r=this.intercalaryMonth(t);return!!r&&r===e},leapYear:function(t){return 0!==this.intercalaryMonth(t)},weekOfYear:function(t,e,r){var a,o=this._validateYear(t,n.local.invalidyear),s=f[o-f[0]],l=s>>9&4095,c=s>>5&15,u=31&s;(a=i.newDate(l,c,u)).add(4-(a.dayOfWeek()||7),\"d\");var h=this.toJD(t,e,r)-a.toJD();return 1+Math.floor(h/7)},monthsInYear:function(t){return this.leapYear(t)?13:12},daysInMonth:function(t,e){t.year&&(e=t.month(),t=t.year()),t=this._validateYear(t);var r=h[t-h[0]];if(e>(r>>13?12:11))throw n.local.invalidMonth.replace(/\\{0\\}/,this.local.name);return r&1<<12-e?30:29},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var a=this._validate(t,s,r,n.local.invalidDate);t=this._validateYear(a.year()),e=a.month(),r=a.day();var o=this.isIntercalaryMonth(t,e),s=this.toChineseMonth(t,e),l=function(t,e,r,n,a){var i,o,s;if(\"object\"==typeof t)o=t,i=e||{};else{var l=\"number\"==typeof t&&t>=1888&&t<=2111;if(!l)throw new Error(\"Lunar year outside range 1888-2111\");var c=\"number\"==typeof e&&e>=1&&e<=12;if(!c)throw new Error(\"Lunar month outside range 1 - 12\");var u,p=\"number\"==typeof r&&r>=1&&r<=30;if(!p)throw new Error(\"Lunar day outside range 1 - 30\");\"object\"==typeof n?(u=!1,i=n):(u=!!n,i=a||{}),o={year:t,month:e,day:r,isIntercalary:u}}s=o.day-1;var d,g=h[o.year-h[0]],v=g>>13;d=v?o.month>v?o.month:o.isIntercalary?o.month:o.month-1:o.month-1;for(var m=0;m<d;m++){var y=g&1<<12-m?30:29;s+=y}var x=f[o.year-f[0]],b=new Date(x>>9&4095,(x>>5&15)-1,(31&x)+s);return i.year=b.getFullYear(),i.month=1+b.getMonth(),i.day=b.getDate(),i}(t,s,r,o);return i.toJD(l.year,l.month,l.day)},fromJD:function(t){var e=i.fromJD(t),r=function(t,e,r,n){var a,i;if(\"object\"==typeof t)a=t,i=e||{};else{var o=\"number\"==typeof t&&t>=1888&&t<=2111;if(!o)throw new Error(\"Solar year outside range 1888-2111\");var s=\"number\"==typeof e&&e>=1&&e<=12;if(!s)throw new Error(\"Solar month outside range 1 - 12\");var l=\"number\"==typeof r&&r>=1&&r<=31;if(!l)throw new Error(\"Solar day outside range 1 - 31\");a={year:t,month:e,day:r},i=n||{}}var c=f[a.year-f[0]],u=a.year<<9|a.month<<5|a.day;i.year=u>=c?a.year:a.year-1,c=f[i.year-f[0]];var p,d=new Date(c>>9&4095,(c>>5&15)-1,31&c),g=new Date(a.year,a.month-1,a.day);p=Math.round((g-d)/864e5);var v,m=h[i.year-h[0]];for(v=0;v<13;v++){var y=m&1<<12-v?30:29;if(p<y)break;p-=y}var x=m>>13;!x||v<x?(i.isIntercalary=!1,i.month=1+v):v===x?(i.isIntercalary=!0,i.month=v):(i.isIntercalary=!1,i.month=v);return i.day=1+p,i}(e.year(),e.month(),e.day()),n=this.toMonthIndex(r.year,r.month,r.isIntercalary);return this.newDate(r.year,n,r.day)},fromString:function(t){var e=t.match(s),r=this._validateYear(+e[1]),n=+e[2],a=!!e[3],i=this.toMonthIndex(r,n,a),o=+e[4];return this.newDate(r,i,o)},add:function(t,e,r){var n=t.year(),a=t.month(),i=this.isIntercalaryMonth(n,a),s=this.toChineseMonth(n,a),l=Object.getPrototypeOf(o.prototype).add.call(this,t,e,r);if(\"y\"===r){var c=l.year(),u=l.month(),h=this.isIntercalaryMonth(c,s),f=i&&h?this.toMonthIndex(c,s,!0):this.toMonthIndex(c,s,!1);f!==u&&l.month(f)}return l}});var s=/^\\s*(-?\\d\\d\\d\\d|\\d\\d)[-\\/](\\d?\\d)([iI]?)[-\\/](\\d?\\d)/m,l=/^\\d?\\d[iI]?/m,c=/^\\u95f0?\\u5341?[\\u4e00\\u4e8c\\u4e09\\u56db\\u4e94\\u516d\\u4e03\\u516b\\u4e5d]?\\u6708/m,u=/^\\u95f0?\\u5341?[\\u4e00\\u4e8c\\u4e09\\u56db\\u4e94\\u516d\\u4e03\\u516b\\u4e5d]?/m;n.calendars.chinese=o;var h=[1887,5780,5802,19157,2742,50359,1198,2646,46378,7466,3412,30122,5482,67949,2396,5294,43597,6732,6954,36181,2772,4954,18781,2396,54427,5274,6730,47781,5800,6868,21210,4790,59703,2350,5270,46667,3402,3496,38325,1388,4782,18735,2350,52374,6804,7498,44457,2906,1388,29294,4700,63789,6442,6804,56138,5802,2772,38235,1210,4698,22827,5418,63125,3476,5802,43701,2484,5302,27223,2646,70954,7466,3412,54698,5482,2412,38062,5294,2636,32038,6954,60245,2772,4826,43357,2394,5274,39501,6730,72357,5800,5844,53978,4790,2358,38039,5270,87627,3402,3496,54708,5484,4782,43311,2350,3222,27978,7498,68965,2904,5484,45677,4700,6444,39573,6804,6986,19285,2772,62811,1210,4698,47403,5418,5780,38570,5546,76469,2420,5302,51799,2646,5414,36501,3412,5546,18869,2412,54446,5276,6732,48422,6822,2900,28010,4826,92509,2394,5274,55883,6730,6820,47956,5812,2778,18779,2358,62615,5270,5450,46757,3492,5556,27318,4718,67887,2350,3222,52554,7498,3428,38252,5468,4700,31022,6444,64149,6804,6986,43861,2772,5338,35421,2650,70955,5418,5780,54954,5546,2740,38074,5302,2646,29991,3366,61011,3412,5546,43445,2412,5294,35406,6732,72998,6820,6996,52586,2778,2396,38045,5274,6698,23333,6820,64338,5812,2746,43355,2358,5270,39499,5450,79525,3492,5548],f=[1887,966732,967231,967733,968265,968766,969297,969798,970298,970829,971330,971830,972362,972863,973395,973896,974397,974928,975428,975929,976461,976962,977462,977994,978494,979026,979526,980026,980558,981059,981559,982091,982593,983124,983624,984124,984656,985157,985656,986189,986690,987191,987722,988222,988753,989254,989754,990286,990788,991288,991819,992319,992851,993352,993851,994383,994885,995385,995917,996418,996918,997450,997949,998481,998982,999483,1000014,1000515,1001016,1001548,1002047,1002578,1003080,1003580,1004111,1004613,1005113,1005645,1006146,1006645,1007177,1007678,1008209,1008710,1009211,1009743,1010243,1010743,1011275,1011775,1012306,1012807,1013308,1013840,1014341,1014841,1015373,1015874,1016404,1016905,1017405,1017937,1018438,1018939,1019471,1019972,1020471,1021002,1021503,1022035,1022535,1023036,1023568,1024069,1024568,1025100,1025601,1026102,1026633,1027133,1027666,1028167,1028666,1029198,1029699,1030199,1030730,1031231,1031763,1032264,1032764,1033296,1033797,1034297,1034828,1035329,1035830,1036362,1036861,1037393,1037894,1038394,1038925,1039427,1039927,1040459,1040959,1041491,1041992,1042492,1043023,1043524,1044024,1044556,1045057,1045558,1046090,1046590,1047121,1047622,1048122,1048654,1049154,1049655,1050187,1050689,1051219,1051720,1052220,1052751,1053252,1053752,1054284,1054786,1055285,1055817,1056317,1056849,1057349,1057850,1058382,1058883,1059383,1059915,1060415,1060947,1061447,1061947,1062479,1062981,1063480,1064012,1064514,1065014,1065545,1066045,1066577,1067078,1067578,1068110,1068611,1069112,1069642,1070142,1070674,1071175,1071675,1072207,1072709,1073209,1073740,1074241,1074741,1075273,1075773,1076305,1076807,1077308,1077839,1078340,1078840,1079372,1079871,1080403,1080904]},{\"../main\":572,\"object-assign\":455}],559:[function(t,e,r){var n=t(\"../main\"),a=t(\"object-assign\");function i(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}i.prototype=new n.baseCalendar,a(i.prototype,{name:\"Coptic\",jdEpoch:1825029.5,daysPerMonth:[30,30,30,30,30,30,30,30,30,30,30,30,5],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Coptic\",epochs:[\"BAM\",\"AM\"],monthNames:[\"Thout\",\"Paopi\",\"Hathor\",\"Koiak\",\"Tobi\",\"Meshir\",\"Paremhat\",\"Paremoude\",\"Pashons\",\"Paoni\",\"Epip\",\"Mesori\",\"Pi Kogi Enavot\"],monthNamesShort:[\"Tho\",\"Pao\",\"Hath\",\"Koi\",\"Tob\",\"Mesh\",\"Pat\",\"Pad\",\"Pash\",\"Pao\",\"Epi\",\"Meso\",\"PiK\"],dayNames:[\"Tkyriaka\",\"Pesnau\",\"Pshoment\",\"Peftoou\",\"Ptiou\",\"Psoou\",\"Psabbaton\"],dayNamesShort:[\"Tky\",\"Pes\",\"Psh\",\"Pef\",\"Pti\",\"Pso\",\"Psa\"],dayNamesMin:[\"Tk\",\"Pes\",\"Psh\",\"Pef\",\"Pt\",\"Pso\",\"Psa\"],digits:null,dateFormat:\"dd/mm/yyyy\",firstDay:0,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);return(t=e.year()+(e.year()<0?1:0))%4==3||t%4==-1},monthsInYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear||n.regionalOptions[\"\"].invalidYear),13},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-n.dayOfWeek(),\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(13===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate);return(t=a.year())<0&&t++,a.day()+30*(a.month()-1)+365*(t-1)+Math.floor(t/4)+this.jdEpoch-1},fromJD:function(t){var e=Math.floor(t)+.5-this.jdEpoch,r=Math.floor((e-Math.floor((e+366)/1461))/365)+1;r<=0&&r--,e=Math.floor(t)+.5-this.newDate(r,1,1).toJD();var n=Math.floor(e/30)+1,a=e-30*(n-1)+1;return this.newDate(r,n,a)}}),n.calendars.coptic=i},{\"../main\":572,\"object-assign\":455}],560:[function(t,e,r){var n=t(\"../main\"),a=t(\"object-assign\");function i(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}i.prototype=new n.baseCalendar,a(i.prototype,{name:\"Discworld\",jdEpoch:1721425.5,daysPerMonth:[16,32,32,32,32,32,32,32,32,32,32,32,32],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Discworld\",epochs:[\"BUC\",\"UC\"],monthNames:[\"Ick\",\"Offle\",\"February\",\"March\",\"April\",\"May\",\"June\",\"Grune\",\"August\",\"Spune\",\"Sektober\",\"Ember\",\"December\"],monthNamesShort:[\"Ick\",\"Off\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Gru\",\"Aug\",\"Spu\",\"Sek\",\"Emb\",\"Dec\"],dayNames:[\"Sunday\",\"Octeday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],dayNamesShort:[\"Sun\",\"Oct\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],dayNamesMin:[\"Su\",\"Oc\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"],digits:null,dateFormat:\"yyyy/mm/dd\",firstDay:2,isRTL:!1}},leapYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear),!1},monthsInYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear),13},daysInYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear),400},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-n.dayOfWeek(),\"d\"),Math.floor((n.dayOfYear()-1)/8)+1},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]},daysInWeek:function(){return 8},dayOfWeek:function(t,e,r){return(this._validate(t,e,r,n.local.invalidDate).day()+1)%8},weekDay:function(t,e,r){var n=this.dayOfWeek(t,e,r);return n>=2&&n<=6},extraInfo:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate);return{century:o[Math.floor((a.year()-1)/100)+1]||\"\"}},toJD:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate);return t=a.year()+(a.year()<0?1:0),e=a.month(),(r=a.day())+(e>1?16:0)+(e>2?32*(e-2):0)+400*(t-1)+this.jdEpoch-1},fromJD:function(t){t=Math.floor(t+.5)-Math.floor(this.jdEpoch)-1;var e=Math.floor(t/400)+1;t-=400*(e-1),t+=t>15?16:0;var r=Math.floor(t/32)+1,n=t-32*(r-1)+1;return this.newDate(e<=0?e-1:e,r,n)}});var o={20:\"Fruitbat\",21:\"Anchovy\"};n.calendars.discworld=i},{\"../main\":572,\"object-assign\":455}],561:[function(t,e,r){var n=t(\"../main\"),a=t(\"object-assign\");function i(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}i.prototype=new n.baseCalendar,a(i.prototype,{name:\"Ethiopian\",jdEpoch:1724220.5,daysPerMonth:[30,30,30,30,30,30,30,30,30,30,30,30,5],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Ethiopian\",epochs:[\"BEE\",\"EE\"],monthNames:[\"Meskerem\",\"Tikemet\",\"Hidar\",\"Tahesas\",\"Tir\",\"Yekatit\",\"Megabit\",\"Miazia\",\"Genbot\",\"Sene\",\"Hamle\",\"Nehase\",\"Pagume\"],monthNamesShort:[\"Mes\",\"Tik\",\"Hid\",\"Tah\",\"Tir\",\"Yek\",\"Meg\",\"Mia\",\"Gen\",\"Sen\",\"Ham\",\"Neh\",\"Pag\"],dayNames:[\"Ehud\",\"Segno\",\"Maksegno\",\"Irob\",\"Hamus\",\"Arb\",\"Kidame\"],dayNamesShort:[\"Ehu\",\"Seg\",\"Mak\",\"Iro\",\"Ham\",\"Arb\",\"Kid\"],dayNamesMin:[\"Eh\",\"Se\",\"Ma\",\"Ir\",\"Ha\",\"Ar\",\"Ki\"],digits:null,dateFormat:\"dd/mm/yyyy\",firstDay:0,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);return(t=e.year()+(e.year()<0?1:0))%4==3||t%4==-1},monthsInYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear||n.regionalOptions[\"\"].invalidYear),13},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-n.dayOfWeek(),\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(13===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate);return(t=a.year())<0&&t++,a.day()+30*(a.month()-1)+365*(t-1)+Math.floor(t/4)+this.jdEpoch-1},fromJD:function(t){var e=Math.floor(t)+.5-this.jdEpoch,r=Math.floor((e-Math.floor((e+366)/1461))/365)+1;r<=0&&r--,e=Math.floor(t)+.5-this.newDate(r,1,1).toJD();var n=Math.floor(e/30)+1,a=e-30*(n-1)+1;return this.newDate(r,n,a)}}),n.calendars.ethiopian=i},{\"../main\":572,\"object-assign\":455}],562:[function(t,e,r){var n=t(\"../main\"),a=t(\"object-assign\");function i(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}function o(t,e){return t-e*Math.floor(t/e)}i.prototype=new n.baseCalendar,a(i.prototype,{name:\"Hebrew\",jdEpoch:347995.5,daysPerMonth:[30,29,30,29,30,29,30,29,30,29,30,29,29],hasYearZero:!1,minMonth:1,firstMonth:7,minDay:1,regionalOptions:{\"\":{name:\"Hebrew\",epochs:[\"BAM\",\"AM\"],monthNames:[\"Nisan\",\"Iyar\",\"Sivan\",\"Tammuz\",\"Av\",\"Elul\",\"Tishrei\",\"Cheshvan\",\"Kislev\",\"Tevet\",\"Shevat\",\"Adar\",\"Adar II\"],monthNamesShort:[\"Nis\",\"Iya\",\"Siv\",\"Tam\",\"Av\",\"Elu\",\"Tis\",\"Che\",\"Kis\",\"Tev\",\"She\",\"Ada\",\"Ad2\"],dayNames:[\"Yom Rishon\",\"Yom Sheni\",\"Yom Shlishi\",\"Yom Revi'i\",\"Yom Chamishi\",\"Yom Shishi\",\"Yom Shabbat\"],dayNamesShort:[\"Ris\",\"She\",\"Shl\",\"Rev\",\"Cha\",\"Shi\",\"Sha\"],dayNamesMin:[\"Ri\",\"She\",\"Shl\",\"Re\",\"Ch\",\"Shi\",\"Sha\"],digits:null,dateFormat:\"dd/mm/yyyy\",firstDay:0,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);return this._leapYear(e.year())},_leapYear:function(t){return o(7*(t=t<0?t+1:t)+1,19)<7},monthsInYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear),this._leapYear(t.year?t.year():t)?13:12},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-n.dayOfWeek(),\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInYear:function(t){return t=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear).year(),this.toJD(-1===t?1:t+1,7,1)-this.toJD(t,7,1)},daysInMonth:function(t,e){return t.year&&(e=t.month(),t=t.year()),this._validate(t,e,this.minDay,n.local.invalidMonth),12===e&&this.leapYear(t)?30:8===e&&5===o(this.daysInYear(t),10)?30:9===e&&3===o(this.daysInYear(t),10)?29:this.daysPerMonth[e-1]},weekDay:function(t,e,r){return 6!==this.dayOfWeek(t,e,r)},extraInfo:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate);return{yearType:(this.leapYear(a)?\"embolismic\":\"common\")+\" \"+[\"deficient\",\"regular\",\"complete\"][this.daysInYear(a)%10-3]}},toJD:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate);t=a.year(),e=a.month(),r=a.day();var i=t<=0?t+1:t,o=this.jdEpoch+this._delay1(i)+this._delay2(i)+r+1;if(e<7){for(var s=7;s<=this.monthsInYear(t);s++)o+=this.daysInMonth(t,s);for(s=1;s<e;s++)o+=this.daysInMonth(t,s)}else for(s=7;s<e;s++)o+=this.daysInMonth(t,s);return o},_delay1:function(t){var e=Math.floor((235*t-234)/19),r=12084+13753*e,n=29*e+Math.floor(r/25920);return o(3*(n+1),7)<3&&n++,n},_delay2:function(t){var e=this._delay1(t-1),r=this._delay1(t);return this._delay1(t+1)-r==356?2:r-e==382?1:0},fromJD:function(t){t=Math.floor(t)+.5;for(var e=Math.floor(98496*(t-this.jdEpoch)/35975351)-1;t>=this.toJD(-1===e?1:e+1,7,1);)e++;for(var r=t<this.toJD(e,1,1)?7:1;t>this.toJD(e,r,this.daysInMonth(e,r));)r++;var n=t-this.toJD(e,r,1)+1;return this.newDate(e,r,n)}}),n.calendars.hebrew=i},{\"../main\":572,\"object-assign\":455}],563:[function(t,e,r){var n=t(\"../main\"),a=t(\"object-assign\");function i(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}i.prototype=new n.baseCalendar,a(i.prototype,{name:\"Islamic\",jdEpoch:1948439.5,daysPerMonth:[30,29,30,29,30,29,30,29,30,29,30,29],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Islamic\",epochs:[\"BH\",\"AH\"],monthNames:[\"Muharram\",\"Safar\",\"Rabi' al-awwal\",\"Rabi' al-thani\",\"Jumada al-awwal\",\"Jumada al-thani\",\"Rajab\",\"Sha'aban\",\"Ramadan\",\"Shawwal\",\"Dhu al-Qi'dah\",\"Dhu al-Hijjah\"],monthNamesShort:[\"Muh\",\"Saf\",\"Rab1\",\"Rab2\",\"Jum1\",\"Jum2\",\"Raj\",\"Sha'\",\"Ram\",\"Shaw\",\"DhuQ\",\"DhuH\"],dayNames:[\"Yawm al-ahad\",\"Yawm al-ithnayn\",\"Yawm ath-thulaathaa'\",\"Yawm al-arbi'aa'\",\"Yawm al-kham\\u012bs\",\"Yawm al-jum'a\",\"Yawm as-sabt\"],dayNamesShort:[\"Aha\",\"Ith\",\"Thu\",\"Arb\",\"Kha\",\"Jum\",\"Sab\"],dayNamesMin:[\"Ah\",\"It\",\"Th\",\"Ar\",\"Kh\",\"Ju\",\"Sa\"],digits:null,dateFormat:\"yyyy/mm/dd\",firstDay:6,isRTL:!1}},leapYear:function(t){return(11*this._validate(t,this.minMonth,this.minDay,n.local.invalidYear).year()+14)%30<11},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-n.dayOfWeek(),\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInYear:function(t){return this.leapYear(t)?355:354},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(12===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return 5!==this.dayOfWeek(t,e,r)},toJD:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate);return t=a.year(),e=a.month(),t=t<=0?t+1:t,(r=a.day())+Math.ceil(29.5*(e-1))+354*(t-1)+Math.floor((3+11*t)/30)+this.jdEpoch-1},fromJD:function(t){t=Math.floor(t)+.5;var e=Math.floor((30*(t-this.jdEpoch)+10646)/10631);e=e<=0?e-1:e;var r=Math.min(12,Math.ceil((t-29-this.toJD(e,1,1))/29.5)+1),n=t-this.toJD(e,r,1)+1;return this.newDate(e,r,n)}}),n.calendars.islamic=i},{\"../main\":572,\"object-assign\":455}],564:[function(t,e,r){var n=t(\"../main\"),a=t(\"object-assign\");function i(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}i.prototype=new n.baseCalendar,a(i.prototype,{name:\"Julian\",jdEpoch:1721423.5,daysPerMonth:[31,28,31,30,31,30,31,31,30,31,30,31],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Julian\",epochs:[\"BC\",\"AD\"],monthNames:[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],monthNamesShort:[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],dayNames:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],dayNamesShort:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],dayNamesMin:[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"],digits:null,dateFormat:\"mm/dd/yyyy\",firstDay:0,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);return(t=e.year()<0?e.year()+1:e.year())%4==0},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(4-(n.dayOfWeek()||7),\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(2===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate);return t=a.year(),e=a.month(),r=a.day(),t<0&&t++,e<=2&&(t--,e+=12),Math.floor(365.25*(t+4716))+Math.floor(30.6001*(e+1))+r-1524.5},fromJD:function(t){var e=Math.floor(t+.5)+1524,r=Math.floor((e-122.1)/365.25),n=Math.floor(365.25*r),a=Math.floor((e-n)/30.6001),i=a-Math.floor(a<14?1:13),o=r-Math.floor(i>2?4716:4715),s=e-n-Math.floor(30.6001*a);return o<=0&&o--,this.newDate(o,i,s)}}),n.calendars.julian=i},{\"../main\":572,\"object-assign\":455}],565:[function(t,e,r){var n=t(\"../main\"),a=t(\"object-assign\");function i(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}function o(t,e){return t-e*Math.floor(t/e)}function s(t,e){return o(t-1,e)+1}i.prototype=new n.baseCalendar,a(i.prototype,{name:\"Mayan\",jdEpoch:584282.5,hasYearZero:!0,minMonth:0,firstMonth:0,minDay:0,regionalOptions:{\"\":{name:\"Mayan\",epochs:[\"\",\"\"],monthNames:[\"0\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"13\",\"14\",\"15\",\"16\",\"17\"],monthNamesShort:[\"0\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"13\",\"14\",\"15\",\"16\",\"17\"],dayNames:[\"0\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"13\",\"14\",\"15\",\"16\",\"17\",\"18\",\"19\"],dayNamesShort:[\"0\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"13\",\"14\",\"15\",\"16\",\"17\",\"18\",\"19\"],dayNamesMin:[\"0\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"13\",\"14\",\"15\",\"16\",\"17\",\"18\",\"19\"],digits:null,dateFormat:\"YYYY.m.d\",firstDay:0,isRTL:!1,haabMonths:[\"Pop\",\"Uo\",\"Zip\",\"Zotz\",\"Tzec\",\"Xul\",\"Yaxkin\",\"Mol\",\"Chen\",\"Yax\",\"Zac\",\"Ceh\",\"Mac\",\"Kankin\",\"Muan\",\"Pax\",\"Kayab\",\"Cumku\",\"Uayeb\"],tzolkinMonths:[\"Imix\",\"Ik\",\"Akbal\",\"Kan\",\"Chicchan\",\"Cimi\",\"Manik\",\"Lamat\",\"Muluc\",\"Oc\",\"Chuen\",\"Eb\",\"Ben\",\"Ix\",\"Men\",\"Cib\",\"Caban\",\"Etznab\",\"Cauac\",\"Ahau\"]}},leapYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear),!1},formatYear:function(t){t=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear).year();var e=Math.floor(t/400);return t%=400,t+=t<0?400:0,e+\".\"+Math.floor(t/20)+\".\"+t%20},forYear:function(t){if((t=t.split(\".\")).length<3)throw\"Invalid Mayan year\";for(var e=0,r=0;r<t.length;r++){var n=parseInt(t[r],10);if(Math.abs(n)>19||r>0&&n<0)throw\"Invalid Mayan year\";e=20*e+n}return e},monthsInYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear),18},weekOfYear:function(t,e,r){return this._validate(t,e,r,n.local.invalidDate),0},daysInYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear),360},daysInMonth:function(t,e){return this._validate(t,e,this.minDay,n.local.invalidMonth),20},daysInWeek:function(){return 5},dayOfWeek:function(t,e,r){return this._validate(t,e,r,n.local.invalidDate).day()},weekDay:function(t,e,r){return this._validate(t,e,r,n.local.invalidDate),!0},extraInfo:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate).toJD(),i=this._toHaab(a),o=this._toTzolkin(a);return{haabMonthName:this.local.haabMonths[i[0]-1],haabMonth:i[0],haabDay:i[1],tzolkinDayName:this.local.tzolkinMonths[o[0]-1],tzolkinDay:o[0],tzolkinTrecena:o[1]}},_toHaab:function(t){var e=o((t-=this.jdEpoch)+8+340,365);return[Math.floor(e/20)+1,o(e,20)]},_toTzolkin:function(t){return[s((t-=this.jdEpoch)+20,20),s(t+4,13)]},toJD:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate);return a.day()+20*a.month()+360*a.year()+this.jdEpoch},fromJD:function(t){t=Math.floor(t)+.5-this.jdEpoch;var e=Math.floor(t/360);t%=360,t+=t<0?360:0;var r=Math.floor(t/20),n=t%20;return this.newDate(e,r,n)}}),n.calendars.mayan=i},{\"../main\":572,\"object-assign\":455}],566:[function(t,e,r){var n=t(\"../main\"),a=t(\"object-assign\");function i(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}i.prototype=new n.baseCalendar;var o=n.instance(\"gregorian\");a(i.prototype,{name:\"Nanakshahi\",jdEpoch:2257673.5,daysPerMonth:[31,31,31,31,31,30,30,30,30,30,30,30],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Nanakshahi\",epochs:[\"BN\",\"AN\"],monthNames:[\"Chet\",\"Vaisakh\",\"Jeth\",\"Harh\",\"Sawan\",\"Bhadon\",\"Assu\",\"Katak\",\"Maghar\",\"Poh\",\"Magh\",\"Phagun\"],monthNamesShort:[\"Che\",\"Vai\",\"Jet\",\"Har\",\"Saw\",\"Bha\",\"Ass\",\"Kat\",\"Mgr\",\"Poh\",\"Mgh\",\"Pha\"],dayNames:[\"Somvaar\",\"Mangalvar\",\"Budhvaar\",\"Veervaar\",\"Shukarvaar\",\"Sanicharvaar\",\"Etvaar\"],dayNamesShort:[\"Som\",\"Mangal\",\"Budh\",\"Veer\",\"Shukar\",\"Sanichar\",\"Et\"],dayNamesMin:[\"So\",\"Ma\",\"Bu\",\"Ve\",\"Sh\",\"Sa\",\"Et\"],digits:null,dateFormat:\"dd-mm-yyyy\",firstDay:0,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear||n.regionalOptions[\"\"].invalidYear);return o.leapYear(e.year()+(e.year()<1?1:0)+1469)},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(1-(n.dayOfWeek()||7),\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(12===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidMonth);(t=a.year())<0&&t++;for(var i=a.day(),s=1;s<a.month();s++)i+=this.daysPerMonth[s-1];return i+o.toJD(t+1468,3,13)},fromJD:function(t){t=Math.floor(t+.5);for(var e=Math.floor((t-(this.jdEpoch-1))/366);t>=this.toJD(e+1,1,1);)e++;for(var r=t-Math.floor(this.toJD(e,1,1)+.5)+1,n=1;r>this.daysInMonth(e,n);)r-=this.daysInMonth(e,n),n++;return this.newDate(e,n,r)}}),n.calendars.nanakshahi=i},{\"../main\":572,\"object-assign\":455}],567:[function(t,e,r){var n=t(\"../main\"),a=t(\"object-assign\");function i(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}i.prototype=new n.baseCalendar,a(i.prototype,{name:\"Nepali\",jdEpoch:1700709.5,daysPerMonth:[31,31,32,32,31,30,30,29,30,29,30,30],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,daysPerYear:365,regionalOptions:{\"\":{name:\"Nepali\",epochs:[\"BBS\",\"ABS\"],monthNames:[\"Baisakh\",\"Jestha\",\"Ashadh\",\"Shrawan\",\"Bhadra\",\"Ashwin\",\"Kartik\",\"Mangsir\",\"Paush\",\"Mangh\",\"Falgun\",\"Chaitra\"],monthNamesShort:[\"Bai\",\"Je\",\"As\",\"Shra\",\"Bha\",\"Ash\",\"Kar\",\"Mang\",\"Pau\",\"Ma\",\"Fal\",\"Chai\"],dayNames:[\"Aaitabaar\",\"Sombaar\",\"Manglbaar\",\"Budhabaar\",\"Bihibaar\",\"Shukrabaar\",\"Shanibaar\"],dayNamesShort:[\"Aaita\",\"Som\",\"Mangl\",\"Budha\",\"Bihi\",\"Shukra\",\"Shani\"],dayNamesMin:[\"Aai\",\"So\",\"Man\",\"Bu\",\"Bi\",\"Shu\",\"Sha\"],digits:null,dateFormat:\"dd/mm/yyyy\",firstDay:1,isRTL:!1}},leapYear:function(t){return this.daysInYear(t)!==this.daysPerYear},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-n.dayOfWeek(),\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInYear:function(t){if(t=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear).year(),\"undefined\"==typeof this.NEPALI_CALENDAR_DATA[t])return this.daysPerYear;for(var e=0,r=this.minMonth;r<=12;r++)e+=this.NEPALI_CALENDAR_DATA[t][r];return e},daysInMonth:function(t,e){return t.year&&(e=t.month(),t=t.year()),this._validate(t,e,this.minDay,n.local.invalidMonth),\"undefined\"==typeof this.NEPALI_CALENDAR_DATA[t]?this.daysPerMonth[e-1]:this.NEPALI_CALENDAR_DATA[t][e]},weekDay:function(t,e,r){return 6!==this.dayOfWeek(t,e,r)},toJD:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate);t=a.year(),e=a.month(),r=a.day();var i=n.instance(),o=0,s=e,l=t;this._createMissingCalendarData(t);var c=t-(s>9||9===s&&r>=this.NEPALI_CALENDAR_DATA[l][0]?56:57);for(9!==e&&(o=r,s--);9!==s;)s<=0&&(s=12,l--),o+=this.NEPALI_CALENDAR_DATA[l][s],s--;return 9===e?(o+=r-this.NEPALI_CALENDAR_DATA[l][0])<0&&(o+=i.daysInYear(c)):o+=this.NEPALI_CALENDAR_DATA[l][9]-this.NEPALI_CALENDAR_DATA[l][0],i.newDate(c,1,1).add(o,\"d\").toJD()},fromJD:function(t){var e=n.instance().fromJD(t),r=e.year(),a=e.dayOfYear(),i=r+56;this._createMissingCalendarData(i);for(var o=9,s=this.NEPALI_CALENDAR_DATA[i][0],l=this.NEPALI_CALENDAR_DATA[i][o]-s+1;a>l;)++o>12&&(o=1,i++),l+=this.NEPALI_CALENDAR_DATA[i][o];var c=this.NEPALI_CALENDAR_DATA[i][o]-(l-a);return this.newDate(i,o,c)},_createMissingCalendarData:function(t){var e=this.daysPerMonth.slice(0);e.unshift(17);for(var r=t-1;r<t+2;r++)\"undefined\"==typeof this.NEPALI_CALENDAR_DATA[r]&&(this.NEPALI_CALENDAR_DATA[r]=e)},NEPALI_CALENDAR_DATA:{1970:[18,31,31,32,31,31,31,30,29,30,29,30,30],1971:[18,31,31,32,31,32,30,30,29,30,29,30,30],1972:[17,31,32,31,32,31,30,30,30,29,29,30,30],1973:[19,30,32,31,32,31,30,30,30,29,30,29,31],1974:[19,31,31,32,30,31,31,30,29,30,29,30,30],1975:[18,31,31,32,32,30,31,30,29,30,29,30,30],1976:[17,31,32,31,32,31,30,30,30,29,29,30,31],1977:[18,31,32,31,32,31,31,29,30,29,30,29,31],1978:[18,31,31,32,31,31,31,30,29,30,29,30,30],1979:[18,31,31,32,32,31,30,30,29,30,29,30,30],1980:[17,31,32,31,32,31,30,30,30,29,29,30,31],1981:[18,31,31,31,32,31,31,29,30,30,29,30,30],1982:[18,31,31,32,31,31,31,30,29,30,29,30,30],1983:[18,31,31,32,32,31,30,30,29,30,29,30,30],1984:[17,31,32,31,32,31,30,30,30,29,29,30,31],1985:[18,31,31,31,32,31,31,29,30,30,29,30,30],1986:[18,31,31,32,31,31,31,30,29,30,29,30,30],1987:[18,31,32,31,32,31,30,30,29,30,29,30,30],1988:[17,31,32,31,32,31,30,30,30,29,29,30,31],1989:[18,31,31,31,32,31,31,30,29,30,29,30,30],1990:[18,31,31,32,31,31,31,30,29,30,29,30,30],1991:[18,31,32,31,32,31,30,30,29,30,29,30,30],1992:[17,31,32,31,32,31,30,30,30,29,30,29,31],1993:[18,31,31,31,32,31,31,30,29,30,29,30,30],1994:[18,31,31,32,31,31,31,30,29,30,29,30,30],1995:[17,31,32,31,32,31,30,30,30,29,29,30,30],1996:[17,31,32,31,32,31,30,30,30,29,30,29,31],1997:[18,31,31,32,31,31,31,30,29,30,29,30,30],1998:[18,31,31,32,31,31,31,30,29,30,29,30,30],1999:[17,31,32,31,32,31,30,30,30,29,29,30,31],2000:[17,30,32,31,32,31,30,30,30,29,30,29,31],2001:[18,31,31,32,31,31,31,30,29,30,29,30,30],2002:[18,31,31,32,32,31,30,30,29,30,29,30,30],2003:[17,31,32,31,32,31,30,30,30,29,29,30,31],2004:[17,30,32,31,32,31,30,30,30,29,30,29,31],2005:[18,31,31,32,31,31,31,30,29,30,29,30,30],2006:[18,31,31,32,32,31,30,30,29,30,29,30,30],2007:[17,31,32,31,32,31,30,30,30,29,29,30,31],2008:[17,31,31,31,32,31,31,29,30,30,29,29,31],2009:[18,31,31,32,31,31,31,30,29,30,29,30,30],2010:[18,31,31,32,32,31,30,30,29,30,29,30,30],2011:[17,31,32,31,32,31,30,30,30,29,29,30,31],2012:[17,31,31,31,32,31,31,29,30,30,29,30,30],2013:[18,31,31,32,31,31,31,30,29,30,29,30,30],2014:[18,31,31,32,32,31,30,30,29,30,29,30,30],2015:[17,31,32,31,32,31,30,30,30,29,29,30,31],2016:[17,31,31,31,32,31,31,29,30,30,29,30,30],2017:[18,31,31,32,31,31,31,30,29,30,29,30,30],2018:[18,31,32,31,32,31,30,30,29,30,29,30,30],2019:[17,31,32,31,32,31,30,30,30,29,30,29,31],2020:[17,31,31,31,32,31,31,30,29,30,29,30,30],2021:[18,31,31,32,31,31,31,30,29,30,29,30,30],2022:[17,31,32,31,32,31,30,30,30,29,29,30,30],2023:[17,31,32,31,32,31,30,30,30,29,30,29,31],2024:[17,31,31,31,32,31,31,30,29,30,29,30,30],2025:[18,31,31,32,31,31,31,30,29,30,29,30,30],2026:[17,31,32,31,32,31,30,30,30,29,29,30,31],2027:[17,30,32,31,32,31,30,30,30,29,30,29,31],2028:[17,31,31,32,31,31,31,30,29,30,29,30,30],2029:[18,31,31,32,31,32,30,30,29,30,29,30,30],2030:[17,31,32,31,32,31,30,30,30,30,30,30,31],2031:[17,31,32,31,32,31,31,31,31,31,31,31,31],2032:[17,32,32,32,32,32,32,32,32,32,32,32,32],2033:[18,31,31,32,32,31,30,30,29,30,29,30,30],2034:[17,31,32,31,32,31,30,30,30,29,29,30,31],2035:[17,30,32,31,32,31,31,29,30,30,29,29,31],2036:[17,31,31,32,31,31,31,30,29,30,29,30,30],2037:[18,31,31,32,32,31,30,30,29,30,29,30,30],2038:[17,31,32,31,32,31,30,30,30,29,29,30,31],2039:[17,31,31,31,32,31,31,29,30,30,29,30,30],2040:[17,31,31,32,31,31,31,30,29,30,29,30,30],2041:[18,31,31,32,32,31,30,30,29,30,29,30,30],2042:[17,31,32,31,32,31,30,30,30,29,29,30,31],2043:[17,31,31,31,32,31,31,29,30,30,29,30,30],2044:[17,31,31,32,31,31,31,30,29,30,29,30,30],2045:[18,31,32,31,32,31,30,30,29,30,29,30,30],2046:[17,31,32,31,32,31,30,30,30,29,29,30,31],2047:[17,31,31,31,32,31,31,30,29,30,29,30,30],2048:[17,31,31,32,31,31,31,30,29,30,29,30,30],2049:[17,31,32,31,32,31,30,30,30,29,29,30,30],2050:[17,31,32,31,32,31,30,30,30,29,30,29,31],2051:[17,31,31,31,32,31,31,30,29,30,29,30,30],2052:[17,31,31,32,31,31,31,30,29,30,29,30,30],2053:[17,31,32,31,32,31,30,30,30,29,29,30,30],2054:[17,31,32,31,32,31,30,30,30,29,30,29,31],2055:[17,31,31,32,31,31,31,30,29,30,30,29,30],2056:[17,31,31,32,31,32,30,30,29,30,29,30,30],2057:[17,31,32,31,32,31,30,30,30,29,29,30,31],2058:[17,30,32,31,32,31,30,30,30,29,30,29,31],2059:[17,31,31,32,31,31,31,30,29,30,29,30,30],2060:[17,31,31,32,32,31,30,30,29,30,29,30,30],2061:[17,31,32,31,32,31,30,30,30,29,29,30,31],2062:[17,30,32,31,32,31,31,29,30,29,30,29,31],2063:[17,31,31,32,31,31,31,30,29,30,29,30,30],2064:[17,31,31,32,32,31,30,30,29,30,29,30,30],2065:[17,31,32,31,32,31,30,30,30,29,29,30,31],2066:[17,31,31,31,32,31,31,29,30,30,29,29,31],2067:[17,31,31,32,31,31,31,30,29,30,29,30,30],2068:[17,31,31,32,32,31,30,30,29,30,29,30,30],2069:[17,31,32,31,32,31,30,30,30,29,29,30,31],2070:[17,31,31,31,32,31,31,29,30,30,29,30,30],2071:[17,31,31,32,31,31,31,30,29,30,29,30,30],2072:[17,31,32,31,32,31,30,30,29,30,29,30,30],2073:[17,31,32,31,32,31,30,30,30,29,29,30,31],2074:[17,31,31,31,32,31,31,30,29,30,29,30,30],2075:[17,31,31,32,31,31,31,30,29,30,29,30,30],2076:[16,31,32,31,32,31,30,30,30,29,29,30,30],2077:[17,31,32,31,32,31,30,30,30,29,30,29,31],2078:[17,31,31,31,32,31,31,30,29,30,29,30,30],2079:[17,31,31,32,31,31,31,30,29,30,29,30,30],2080:[16,31,32,31,32,31,30,30,30,29,29,30,30],2081:[17,31,31,32,32,31,30,30,30,29,30,30,30],2082:[17,31,32,31,32,31,30,30,30,29,30,30,30],2083:[17,31,31,32,31,31,30,30,30,29,30,30,30],2084:[17,31,31,32,31,31,30,30,30,29,30,30,30],2085:[17,31,32,31,32,31,31,30,30,29,30,30,30],2086:[17,31,32,31,32,31,30,30,30,29,30,30,30],2087:[16,31,31,32,31,31,31,30,30,29,30,30,30],2088:[16,30,31,32,32,30,31,30,30,29,30,30,30],2089:[17,31,32,31,32,31,30,30,30,29,30,30,30],2090:[17,31,32,31,32,31,30,30,30,29,30,30,30],2091:[16,31,31,32,31,31,31,30,30,29,30,30,30],2092:[16,31,31,32,32,31,30,30,30,29,30,30,30],2093:[17,31,32,31,32,31,30,30,30,29,30,30,30],2094:[17,31,31,32,31,31,30,30,30,29,30,30,30],2095:[17,31,31,32,31,31,31,30,29,30,30,30,30],2096:[17,30,31,32,32,31,30,30,29,30,29,30,30],2097:[17,31,32,31,32,31,30,30,30,29,30,30,30],2098:[17,31,31,32,31,31,31,29,30,29,30,30,31],2099:[17,31,31,32,31,31,31,30,29,29,30,30,30],2100:[17,31,32,31,32,30,31,30,29,30,29,30,30]}}),n.calendars.nepali=i},{\"../main\":572,\"object-assign\":455}],568:[function(t,e,r){var n=t(\"../main\"),a=t(\"object-assign\");function i(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}function o(t,e){return t-e*Math.floor(t/e)}i.prototype=new n.baseCalendar,a(i.prototype,{name:\"Persian\",jdEpoch:1948320.5,daysPerMonth:[31,31,31,31,31,31,30,30,30,30,30,29],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Persian\",epochs:[\"BP\",\"AP\"],monthNames:[\"Farvardin\",\"Ordibehesht\",\"Khordad\",\"Tir\",\"Mordad\",\"Shahrivar\",\"Mehr\",\"Aban\",\"Azar\",\"Day\",\"Bahman\",\"Esfand\"],monthNamesShort:[\"Far\",\"Ord\",\"Kho\",\"Tir\",\"Mor\",\"Sha\",\"Meh\",\"Aba\",\"Aza\",\"Day\",\"Bah\",\"Esf\"],dayNames:[\"Yekshambe\",\"Doshambe\",\"Seshambe\",\"Ch\\xe6harshambe\",\"Panjshambe\",\"Jom'e\",\"Shambe\"],dayNamesShort:[\"Yek\",\"Do\",\"Se\",\"Ch\\xe6\",\"Panj\",\"Jom\",\"Sha\"],dayNamesMin:[\"Ye\",\"Do\",\"Se\",\"Ch\",\"Pa\",\"Jo\",\"Sh\"],digits:null,dateFormat:\"yyyy/mm/dd\",firstDay:6,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);return 682*((e.year()-(e.year()>0?474:473))%2820+474+38)%2816<682},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-(n.dayOfWeek()+1)%7,\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(12===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return 5!==this.dayOfWeek(t,e,r)},toJD:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate);t=a.year(),e=a.month(),r=a.day();var i=t-(t>=0?474:473),s=474+o(i,2820);return r+(e<=7?31*(e-1):30*(e-1)+6)+Math.floor((682*s-110)/2816)+365*(s-1)+1029983*Math.floor(i/2820)+this.jdEpoch-1},fromJD:function(t){var e=(t=Math.floor(t)+.5)-this.toJD(475,1,1),r=Math.floor(e/1029983),n=o(e,1029983),a=2820;if(1029982!==n){var i=Math.floor(n/366),s=o(n,366);a=Math.floor((2134*i+2816*s+2815)/1028522)+i+1}var l=a+2820*r+474;l=l<=0?l-1:l;var c=t-this.toJD(l,1,1)+1,u=c<=186?Math.ceil(c/31):Math.ceil((c-6)/30),h=t-this.toJD(l,u,1)+1;return this.newDate(l,u,h)}}),n.calendars.persian=i,n.calendars.jalali=i},{\"../main\":572,\"object-assign\":455}],569:[function(t,e,r){var n=t(\"../main\"),a=t(\"object-assign\"),i=n.instance();function o(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}o.prototype=new n.baseCalendar,a(o.prototype,{name:\"Taiwan\",jdEpoch:2419402.5,yearsOffset:1911,daysPerMonth:[31,28,31,30,31,30,31,31,30,31,30,31],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Taiwan\",epochs:[\"BROC\",\"ROC\"],monthNames:[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],monthNamesShort:[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],dayNames:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],dayNamesShort:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],dayNamesMin:[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"],digits:null,dateFormat:\"yyyy/mm/dd\",firstDay:1,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);t=this._t2gYear(e.year());return i.leapYear(t)},weekOfYear:function(t,e,r){var a=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);t=this._t2gYear(a.year());return i.weekOfYear(t,a.month(),a.day())},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(2===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate);t=this._t2gYear(a.year());return i.toJD(t,a.month(),a.day())},fromJD:function(t){var e=i.fromJD(t),r=this._g2tYear(e.year());return this.newDate(r,e.month(),e.day())},_t2gYear:function(t){return t+this.yearsOffset+(t>=-this.yearsOffset&&t<=-1?1:0)},_g2tYear:function(t){return t-this.yearsOffset-(t>=1&&t<=this.yearsOffset?1:0)}}),n.calendars.taiwan=o},{\"../main\":572,\"object-assign\":455}],570:[function(t,e,r){var n=t(\"../main\"),a=t(\"object-assign\"),i=n.instance();function o(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}o.prototype=new n.baseCalendar,a(o.prototype,{name:\"Thai\",jdEpoch:1523098.5,yearsOffset:543,daysPerMonth:[31,28,31,30,31,30,31,31,30,31,30,31],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Thai\",epochs:[\"BBE\",\"BE\"],monthNames:[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],monthNamesShort:[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],dayNames:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],dayNamesShort:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],dayNamesMin:[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"],digits:null,dateFormat:\"dd/mm/yyyy\",firstDay:0,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);t=this._t2gYear(e.year());return i.leapYear(t)},weekOfYear:function(t,e,r){var a=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);t=this._t2gYear(a.year());return i.weekOfYear(t,a.month(),a.day())},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(2===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate);t=this._t2gYear(a.year());return i.toJD(t,a.month(),a.day())},fromJD:function(t){var e=i.fromJD(t),r=this._g2tYear(e.year());return this.newDate(r,e.month(),e.day())},_t2gYear:function(t){return t-this.yearsOffset-(t>=1&&t<=this.yearsOffset?1:0)},_g2tYear:function(t){return t+this.yearsOffset+(t>=-this.yearsOffset&&t<=-1?1:0)}}),n.calendars.thai=o},{\"../main\":572,\"object-assign\":455}],571:[function(t,e,r){var n=t(\"../main\"),a=t(\"object-assign\");function i(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}i.prototype=new n.baseCalendar,a(i.prototype,{name:\"UmmAlQura\",hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Umm al-Qura\",epochs:[\"BH\",\"AH\"],monthNames:[\"Al-Muharram\",\"Safar\",\"Rabi' al-awwal\",\"Rabi' Al-Thani\",\"Jumada Al-Awwal\",\"Jumada Al-Thani\",\"Rajab\",\"Sha'aban\",\"Ramadan\",\"Shawwal\",\"Dhu al-Qi'dah\",\"Dhu al-Hijjah\"],monthNamesShort:[\"Muh\",\"Saf\",\"Rab1\",\"Rab2\",\"Jum1\",\"Jum2\",\"Raj\",\"Sha'\",\"Ram\",\"Shaw\",\"DhuQ\",\"DhuH\"],dayNames:[\"Yawm al-Ahad\",\"Yawm al-Ithnain\",\"Yawm al-Thal\\u0101th\\u0101\\u2019\",\"Yawm al-Arba\\u2018\\u0101\\u2019\",\"Yawm al-Kham\\u012bs\",\"Yawm al-Jum\\u2018a\",\"Yawm al-Sabt\"],dayNamesMin:[\"Ah\",\"Ith\",\"Th\",\"Ar\",\"Kh\",\"Ju\",\"Sa\"],digits:null,dateFormat:\"yyyy/mm/dd\",firstDay:6,isRTL:!0}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);return 355===this.daysInYear(e.year())},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-n.dayOfWeek(),\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInYear:function(t){for(var e=0,r=1;r<=12;r++)e+=this.daysInMonth(t,r);return e},daysInMonth:function(t,e){for(var r=this._validate(t,e,this.minDay,n.local.invalidMonth).toJD()-24e5+.5,a=0,i=0;i<o.length;i++){if(o[i]>r)return o[a]-o[a-1];a++}return 30},weekDay:function(t,e,r){return 5!==this.dayOfWeek(t,e,r)},toJD:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate),i=12*(a.year()-1)+a.month()-15292;return a.day()+o[i-1]-1+24e5-.5},fromJD:function(t){for(var e=t-24e5+.5,r=0,n=0;n<o.length&&!(o[n]>e);n++)r++;var a=r+15292,i=Math.floor((a-1)/12),s=i+1,l=a-12*i,c=e-o[r-1]+1;return this.newDate(s,l,c)},isValid:function(t,e,r){var a=n.baseCalendar.prototype.isValid.apply(this,arguments);return a&&(a=(t=null!=t.year?t.year:t)>=1276&&t<=1500),a},_validate:function(t,e,r,a){var i=n.baseCalendar.prototype._validate.apply(this,arguments);if(i.year<1276||i.year>1500)throw a.replace(/\\{0\\}/,this.local.name);return i}}),n.calendars.ummalqura=i;var o=[20,50,79,109,138,168,197,227,256,286,315,345,374,404,433,463,492,522,551,581,611,641,670,700,729,759,788,818,847,877,906,936,965,995,1024,1054,1083,1113,1142,1172,1201,1231,1260,1290,1320,1350,1379,1409,1438,1468,1497,1527,1556,1586,1615,1645,1674,1704,1733,1763,1792,1822,1851,1881,1910,1940,1969,1999,2028,2058,2087,2117,2146,2176,2205,2235,2264,2294,2323,2353,2383,2413,2442,2472,2501,2531,2560,2590,2619,2649,2678,2708,2737,2767,2796,2826,2855,2885,2914,2944,2973,3003,3032,3062,3091,3121,3150,3180,3209,3239,3268,3298,3327,3357,3386,3416,3446,3476,3505,3535,3564,3594,3623,3653,3682,3712,3741,3771,3800,3830,3859,3889,3918,3948,3977,4007,4036,4066,4095,4125,4155,4185,4214,4244,4273,4303,4332,4362,4391,4421,4450,4480,4509,4539,4568,4598,4627,4657,4686,4716,4745,4775,4804,4834,4863,4893,4922,4952,4981,5011,5040,5070,5099,5129,5158,5188,5218,5248,5277,5307,5336,5366,5395,5425,5454,5484,5513,5543,5572,5602,5631,5661,5690,5720,5749,5779,5808,5838,5867,5897,5926,5956,5985,6015,6044,6074,6103,6133,6162,6192,6221,6251,6281,6311,6340,6370,6399,6429,6458,6488,6517,6547,6576,6606,6635,6665,6694,6724,6753,6783,6812,6842,6871,6901,6930,6960,6989,7019,7048,7078,7107,7137,7166,7196,7225,7255,7284,7314,7344,7374,7403,7433,7462,7492,7521,7551,7580,7610,7639,7669,7698,7728,7757,7787,7816,7846,7875,7905,7934,7964,7993,8023,8053,8083,8112,8142,8171,8201,8230,8260,8289,8319,8348,8378,8407,8437,8466,8496,8525,8555,8584,8614,8643,8673,8702,8732,8761,8791,8821,8850,8880,8909,8938,8968,8997,9027,9056,9086,9115,9145,9175,9205,9234,9264,9293,9322,9352,9381,9410,9440,9470,9499,9529,9559,9589,9618,9648,9677,9706,9736,9765,9794,9824,9853,9883,9913,9943,9972,10002,10032,10061,10090,10120,10149,10178,10208,10237,10267,10297,10326,10356,10386,10415,10445,10474,10504,10533,10562,10592,10621,10651,10680,10710,10740,10770,10799,10829,10858,10888,10917,10947,10976,11005,11035,11064,11094,11124,11153,11183,11213,11242,11272,11301,11331,11360,11389,11419,11448,11478,11507,11537,11567,11596,11626,11655,11685,11715,11744,11774,11803,11832,11862,11891,11921,11950,11980,12010,12039,12069,12099,12128,12158,12187,12216,12246,12275,12304,12334,12364,12393,12423,12453,12483,12512,12542,12571,12600,12630,12659,12688,12718,12747,12777,12807,12837,12866,12896,12926,12955,12984,13014,13043,13072,13102,13131,13161,13191,13220,13250,13280,13310,13339,13368,13398,13427,13456,13486,13515,13545,13574,13604,13634,13664,13693,13723,13752,13782,13811,13840,13870,13899,13929,13958,13988,14018,14047,14077,14107,14136,14166,14195,14224,14254,14283,14313,14342,14372,14401,14431,14461,14490,14520,14550,14579,14609,14638,14667,14697,14726,14756,14785,14815,14844,14874,14904,14933,14963,14993,15021,15051,15081,15110,15140,15169,15199,15228,15258,15287,15317,15347,15377,15406,15436,15465,15494,15524,15553,15582,15612,15641,15671,15701,15731,15760,15790,15820,15849,15878,15908,15937,15966,15996,16025,16055,16085,16114,16144,16174,16204,16233,16262,16292,16321,16350,16380,16409,16439,16468,16498,16528,16558,16587,16617,16646,16676,16705,16734,16764,16793,16823,16852,16882,16912,16941,16971,17001,17030,17060,17089,17118,17148,17177,17207,17236,17266,17295,17325,17355,17384,17414,17444,17473,17502,17532,17561,17591,17620,17650,17679,17709,17738,17768,17798,17827,17857,17886,17916,17945,17975,18004,18034,18063,18093,18122,18152,18181,18211,18241,18270,18300,18330,18359,18388,18418,18447,18476,18506,18535,18565,18595,18625,18654,18684,18714,18743,18772,18802,18831,18860,18890,18919,18949,18979,19008,19038,19068,19098,19127,19156,19186,19215,19244,19274,19303,19333,19362,19392,19422,19452,19481,19511,19540,19570,19599,19628,19658,19687,19717,19746,19776,19806,19836,19865,19895,19924,19954,19983,20012,20042,20071,20101,20130,20160,20190,20219,20249,20279,20308,20338,20367,20396,20426,20455,20485,20514,20544,20573,20603,20633,20662,20692,20721,20751,20780,20810,20839,20869,20898,20928,20957,20987,21016,21046,21076,21105,21135,21164,21194,21223,21253,21282,21312,21341,21371,21400,21430,21459,21489,21519,21548,21578,21607,21637,21666,21696,21725,21754,21784,21813,21843,21873,21902,21932,21962,21991,22021,22050,22080,22109,22138,22168,22197,22227,22256,22286,22316,22346,22375,22405,22434,22464,22493,22522,22552,22581,22611,22640,22670,22700,22730,22759,22789,22818,22848,22877,22906,22936,22965,22994,23024,23054,23083,23113,23143,23173,23202,23232,23261,23290,23320,23349,23379,23408,23438,23467,23497,23527,23556,23586,23616,23645,23674,23704,23733,23763,23792,23822,23851,23881,23910,23940,23970,23999,24029,24058,24088,24117,24147,24176,24206,24235,24265,24294,24324,24353,24383,24413,24442,24472,24501,24531,24560,24590,24619,24648,24678,24707,24737,24767,24796,24826,24856,24885,24915,24944,24974,25003,25032,25062,25091,25121,25150,25180,25210,25240,25269,25299,25328,25358,25387,25416,25446,25475,25505,25534,25564,25594,25624,25653,25683,25712,25742,25771,25800,25830,25859,25888,25918,25948,25977,26007,26037,26067,26096,26126,26155,26184,26214,26243,26272,26302,26332,26361,26391,26421,26451,26480,26510,26539,26568,26598,26627,26656,26686,26715,26745,26775,26805,26834,26864,26893,26923,26952,26982,27011,27041,27070,27099,27129,27159,27188,27218,27248,27277,27307,27336,27366,27395,27425,27454,27484,27513,27542,27572,27602,27631,27661,27691,27720,27750,27779,27809,27838,27868,27897,27926,27956,27985,28015,28045,28074,28104,28134,28163,28193,28222,28252,28281,28310,28340,28369,28399,28428,28458,28488,28517,28547,28577,28607,28636,28665,28695,28724,28754,28783,28813,28843,28872,28901,28931,28960,28990,29019,29049,29078,29108,29137,29167,29196,29226,29255,29285,29315,29345,29375,29404,29434,29463,29492,29522,29551,29580,29610,29640,29669,29699,29729,29759,29788,29818,29847,29876,29906,29935,29964,29994,30023,30053,30082,30112,30141,30171,30200,30230,30259,30289,30318,30348,30378,30408,30437,30467,30496,30526,30555,30585,30614,30644,30673,30703,30732,30762,30791,30821,30850,30880,30909,30939,30968,30998,31027,31057,31086,31116,31145,31175,31204,31234,31263,31293,31322,31352,31381,31411,31441,31471,31500,31530,31559,31589,31618,31648,31676,31706,31736,31766,31795,31825,31854,31884,31913,31943,31972,32002,32031,32061,32090,32120,32150,32180,32209,32239,32268,32298,32327,32357,32386,32416,32445,32475,32504,32534,32563,32593,32622,32652,32681,32711,32740,32770,32799,32829,32858,32888,32917,32947,32976,33006,33035,33065,33094,33124,33153,33183,33213,33243,33272,33302,33331,33361,33390,33420,33450,33479,33509,33539,33568,33598,33627,33657,33686,33716,33745,33775,33804,33834,33863,33893,33922,33952,33981,34011,34040,34069,34099,34128,34158,34187,34217,34247,34277,34306,34336,34365,34395,34424,34454,34483,34512,34542,34571,34601,34631,34660,34690,34719,34749,34778,34808,34837,34867,34896,34926,34955,34985,35015,35044,35074,35103,35133,35162,35192,35222,35251,35280,35310,35340,35370,35399,35429,35458,35488,35517,35547,35576,35605,35635,35665,35694,35723,35753,35782,35811,35841,35871,35901,35930,35960,35989,36019,36048,36078,36107,36136,36166,36195,36225,36254,36284,36314,36343,36373,36403,36433,36462,36492,36521,36551,36580,36610,36639,36669,36698,36728,36757,36786,36816,36845,36875,36904,36934,36963,36993,37022,37052,37081,37111,37141,37170,37200,37229,37259,37288,37318,37347,37377,37406,37436,37465,37495,37524,37554,37584,37613,37643,37672,37701,37731,37760,37790,37819,37849,37878,37908,37938,37967,37997,38027,38056,38085,38115,38144,38174,38203,38233,38262,38292,38322,38351,38381,38410,38440,38469,38499,38528,38558,38587,38617,38646,38676,38705,38735,38764,38794,38823,38853,38882,38912,38941,38971,39001,39030,39059,39089,39118,39148,39178,39208,39237,39267,39297,39326,39355,39385,39414,39444,39473,39503,39532,39562,39592,39621,39650,39680,39709,39739,39768,39798,39827,39857,39886,39916,39946,39975,40005,40035,40064,40094,40123,40153,40182,40212,40241,40271,40300,40330,40359,40389,40418,40448,40477,40507,40536,40566,40595,40625,40655,40685,40714,40744,40773,40803,40832,40862,40892,40921,40951,40980,41009,41039,41068,41098,41127,41157,41186,41216,41245,41275,41304,41334,41364,41393,41422,41452,41481,41511,41540,41570,41599,41629,41658,41688,41718,41748,41777,41807,41836,41865,41894,41924,41953,41983,42012,42042,42072,42102,42131,42161,42190,42220,42249,42279,42308,42337,42367,42397,42426,42456,42485,42515,42545,42574,42604,42633,42662,42692,42721,42751,42780,42810,42839,42869,42899,42929,42958,42988,43017,43046,43076,43105,43135,43164,43194,43223,43253,43283,43312,43342,43371,43401,43430,43460,43489,43519,43548,43578,43607,43637,43666,43696,43726,43755,43785,43814,43844,43873,43903,43932,43962,43991,44021,44050,44080,44109,44139,44169,44198,44228,44258,44287,44317,44346,44375,44405,44434,44464,44493,44523,44553,44582,44612,44641,44671,44700,44730,44759,44788,44818,44847,44877,44906,44936,44966,44996,45025,45055,45084,45114,45143,45172,45202,45231,45261,45290,45320,45350,45380,45409,45439,45468,45498,45527,45556,45586,45615,45644,45674,45704,45733,45763,45793,45823,45852,45882,45911,45940,45970,45999,46028,46058,46088,46117,46147,46177,46206,46236,46265,46295,46324,46354,46383,46413,46442,46472,46501,46531,46560,46590,46620,46649,46679,46708,46738,46767,46797,46826,46856,46885,46915,46944,46974,47003,47033,47063,47092,47122,47151,47181,47210,47240,47269,47298,47328,47357,47387,47417,47446,47476,47506,47535,47565,47594,47624,47653,47682,47712,47741,47771,47800,47830,47860,47890,47919,47949,47978,48008,48037,48066,48096,48125,48155,48184,48214,48244,48273,48303,48333,48362,48392,48421,48450,48480,48509,48538,48568,48598,48627,48657,48687,48717,48746,48776,48805,48834,48864,48893,48922,48952,48982,49011,49041,49071,49100,49130,49160,49189,49218,49248,49277,49306,49336,49365,49395,49425,49455,49484,49514,49543,49573,49602,49632,49661,49690,49720,49749,49779,49809,49838,49868,49898,49927,49957,49986,50016,50045,50075,50104,50133,50163,50192,50222,50252,50281,50311,50340,50370,50400,50429,50459,50488,50518,50547,50576,50606,50635,50665,50694,50724,50754,50784,50813,50843,50872,50902,50931,50960,50990,51019,51049,51078,51108,51138,51167,51197,51227,51256,51286,51315,51345,51374,51403,51433,51462,51492,51522,51552,51582,51611,51641,51670,51699,51729,51758,51787,51816,51846,51876,51906,51936,51965,51995,52025,52054,52083,52113,52142,52171,52200,52230,52260,52290,52319,52349,52379,52408,52438,52467,52497,52526,52555,52585,52614,52644,52673,52703,52733,52762,52792,52822,52851,52881,52910,52939,52969,52998,53028,53057,53087,53116,53146,53176,53205,53235,53264,53294,53324,53353,53383,53412,53441,53471,53500,53530,53559,53589,53619,53648,53678,53708,53737,53767,53796,53825,53855,53884,53913,53943,53973,54003,54032,54062,54092,54121,54151,54180,54209,54239,54268,54297,54327,54357,54387,54416,54446,54476,54505,54535,54564,54593,54623,54652,54681,54711,54741,54770,54800,54830,54859,54889,54919,54948,54977,55007,55036,55066,55095,55125,55154,55184,55213,55243,55273,55302,55332,55361,55391,55420,55450,55479,55508,55538,55567,55597,55627,55657,55686,55716,55745,55775,55804,55834,55863,55892,55922,55951,55981,56011,56040,56070,56100,56129,56159,56188,56218,56247,56276,56306,56335,56365,56394,56424,56454,56483,56513,56543,56572,56601,56631,56660,56690,56719,56749,56778,56808,56837,56867,56897,56926,56956,56985,57015,57044,57074,57103,57133,57162,57192,57221,57251,57280,57310,57340,57369,57399,57429,57458,57487,57517,57546,57576,57605,57634,57664,57694,57723,57753,57783,57813,57842,57871,57901,57930,57959,57989,58018,58048,58077,58107,58137,58167,58196,58226,58255,58285,58314,58343,58373,58402,58432,58461,58491,58521,58551,58580,58610,58639,58669,58698,58727,58757,58786,58816,58845,58875,58905,58934,58964,58994,59023,59053,59082,59111,59141,59170,59200,59229,59259,59288,59318,59348,59377,59407,59436,59466,59495,59525,59554,59584,59613,59643,59672,59702,59731,59761,59791,59820,59850,59879,59909,59939,59968,59997,60027,60056,60086,60115,60145,60174,60204,60234,60264,60293,60323,60352,60381,60411,60440,60469,60499,60528,60558,60588,60618,60648,60677,60707,60736,60765,60795,60824,60853,60883,60912,60942,60972,61002,61031,61061,61090,61120,61149,61179,61208,61237,61267,61296,61326,61356,61385,61415,61445,61474,61504,61533,61563,61592,61621,61651,61680,61710,61739,61769,61799,61828,61858,61888,61917,61947,61976,62006,62035,62064,62094,62123,62153,62182,62212,62242,62271,62301,62331,62360,62390,62419,62448,62478,62507,62537,62566,62596,62625,62655,62685,62715,62744,62774,62803,62832,62862,62891,62921,62950,62980,63009,63039,63069,63099,63128,63157,63187,63216,63246,63275,63305,63334,63363,63393,63423,63453,63482,63512,63541,63571,63600,63630,63659,63689,63718,63747,63777,63807,63836,63866,63895,63925,63955,63984,64014,64043,64073,64102,64131,64161,64190,64220,64249,64279,64309,64339,64368,64398,64427,64457,64486,64515,64545,64574,64603,64633,64663,64692,64722,64752,64782,64811,64841,64870,64899,64929,64958,64987,65017,65047,65076,65106,65136,65166,65195,65225,65254,65283,65313,65342,65371,65401,65431,65460,65490,65520,65549,65579,65608,65638,65667,65697,65726,65755,65785,65815,65844,65874,65903,65933,65963,65992,66022,66051,66081,66110,66140,66169,66199,66228,66258,66287,66317,66346,66376,66405,66435,66465,66494,66524,66553,66583,66612,66641,66671,66700,66730,66760,66789,66819,66849,66878,66908,66937,66967,66996,67025,67055,67084,67114,67143,67173,67203,67233,67262,67292,67321,67351,67380,67409,67439,67468,67497,67527,67557,67587,67617,67646,67676,67705,67735,67764,67793,67823,67852,67882,67911,67941,67971,68e3,68030,68060,68089,68119,68148,68177,68207,68236,68266,68295,68325,68354,68384,68414,68443,68473,68502,68532,68561,68591,68620,68650,68679,68708,68738,68768,68797,68827,68857,68886,68916,68946,68975,69004,69034,69063,69092,69122,69152,69181,69211,69240,69270,69300,69330,69359,69388,69418,69447,69476,69506,69535,69565,69595,69624,69654,69684,69713,69743,69772,69802,69831,69861,69890,69919,69949,69978,70008,70038,70067,70097,70126,70156,70186,70215,70245,70274,70303,70333,70362,70392,70421,70451,70481,70510,70540,70570,70599,70629,70658,70687,70717,70746,70776,70805,70835,70864,70894,70924,70954,70983,71013,71042,71071,71101,71130,71159,71189,71218,71248,71278,71308,71337,71367,71397,71426,71455,71485,71514,71543,71573,71602,71632,71662,71691,71721,71751,71781,71810,71839,71869,71898,71927,71957,71986,72016,72046,72075,72105,72135,72164,72194,72223,72253,72282,72311,72341,72370,72400,72429,72459,72489,72518,72548,72577,72607,72637,72666,72695,72725,72754,72784,72813,72843,72872,72902,72931,72961,72991,73020,73050,73080,73109,73139,73168,73197,73227,73256,73286,73315,73345,73375,73404,73434,73464,73493,73523,73552,73581,73611,73640,73669,73699,73729,73758,73788,73818,73848,73877,73907,73936,73965,73995,74024,74053,74083,74113,74142,74172,74202,74231,74261,74291,74320,74349,74379,74408,74437,74467,74497,74526,74556,74586,74615,74645,74675,74704,74733,74763,74792,74822,74851,74881,74910,74940,74969,74999,75029,75058,75088,75117,75147,75176,75206,75235,75264,75294,75323,75353,75383,75412,75442,75472,75501,75531,75560,75590,75619,75648,75678,75707,75737,75766,75796,75826,75856,75885,75915,75944,75974,76003,76032,76062,76091,76121,76150,76180,76210,76239,76269,76299,76328,76358,76387,76416,76446,76475,76505,76534,76564,76593,76623,76653,76682,76712,76741,76771,76801,76830,76859,76889,76918,76948,76977,77007,77036,77066,77096,77125,77155,77185,77214,77243,77273,77302,77332,77361,77390,77420,77450,77479,77509,77539,77569,77598,77627,77657,77686,77715,77745,77774,77804,77833,77863,77893,77923,77952,77982,78011,78041,78070,78099,78129,78158,78188,78217,78247,78277,78307,78336,78366,78395,78425,78454,78483,78513,78542,78572,78601,78631,78661,78690,78720,78750,78779,78808,78838,78867,78897,78926,78956,78985,79015,79044,79074,79104,79133,79163,79192,79222,79251,79281,79310,79340,79369,79399,79428,79458,79487,79517,79546,79576,79606,79635,79665,79695,79724,79753,79783,79812,79841,79871,79900,79930,79960,79990]},{\"../main\":572,\"object-assign\":455}],572:[function(t,e,r){var n=t(\"object-assign\");function a(){this.regionalOptions=[],this.regionalOptions[\"\"]={invalidCalendar:\"Calendar {0} not found\",invalidDate:\"Invalid {0} date\",invalidMonth:\"Invalid {0} month\",invalidYear:\"Invalid {0} year\",differentCalendars:\"Cannot mix {0} and {1} dates\"},this.local=this.regionalOptions[\"\"],this.calendars={},this._localCals={}}function i(t,e,r,n){if(this._calendar=t,this._year=e,this._month=r,this._day=n,0===this._calendar._validateLevel&&!this._calendar.isValid(this._year,this._month,this._day))throw(c.local.invalidDate||c.regionalOptions[\"\"].invalidDate).replace(/\\{0\\}/,this._calendar.local.name)}function o(t,e){return\"000000\".substring(0,e-(t=\"\"+t).length)+t}function s(){this.shortYearCutoff=\"+10\"}function l(t){this.local=this.regionalOptions[t]||this.regionalOptions[\"\"]}n(a.prototype,{instance:function(t,e){t=(t||\"gregorian\").toLowerCase(),e=e||\"\";var r=this._localCals[t+\"-\"+e];if(!r&&this.calendars[t]&&(r=new this.calendars[t](e),this._localCals[t+\"-\"+e]=r),!r)throw(this.local.invalidCalendar||this.regionalOptions[\"\"].invalidCalendar).replace(/\\{0\\}/,t);return r},newDate:function(t,e,r,n,a){return(n=(null!=t&&t.year?t.calendar():\"string\"==typeof n?this.instance(n,a):n)||this.instance()).newDate(t,e,r)},substituteDigits:function(t){return function(e){return(e+\"\").replace(/[0-9]/g,function(e){return t[e]})}},substituteChineseDigits:function(t,e){return function(r){for(var n=\"\",a=0;r>0;){var i=r%10;n=(0===i?\"\":t[i]+e[a])+n,a++,r=Math.floor(r/10)}return 0===n.indexOf(t[1]+e[1])&&(n=n.substr(1)),n||t[0]}}}),n(i.prototype,{newDate:function(t,e,r){return this._calendar.newDate(null==t?this:t,e,r)},year:function(t){return 0===arguments.length?this._year:this.set(t,\"y\")},month:function(t){return 0===arguments.length?this._month:this.set(t,\"m\")},day:function(t){return 0===arguments.length?this._day:this.set(t,\"d\")},date:function(t,e,r){if(!this._calendar.isValid(t,e,r))throw(c.local.invalidDate||c.regionalOptions[\"\"].invalidDate).replace(/\\{0\\}/,this._calendar.local.name);return this._year=t,this._month=e,this._day=r,this},leapYear:function(){return this._calendar.leapYear(this)},epoch:function(){return this._calendar.epoch(this)},formatYear:function(){return this._calendar.formatYear(this)},monthOfYear:function(){return this._calendar.monthOfYear(this)},weekOfYear:function(){return this._calendar.weekOfYear(this)},daysInYear:function(){return this._calendar.daysInYear(this)},dayOfYear:function(){return this._calendar.dayOfYear(this)},daysInMonth:function(){return this._calendar.daysInMonth(this)},dayOfWeek:function(){return this._calendar.dayOfWeek(this)},weekDay:function(){return this._calendar.weekDay(this)},extraInfo:function(){return this._calendar.extraInfo(this)},add:function(t,e){return this._calendar.add(this,t,e)},set:function(t,e){return this._calendar.set(this,t,e)},compareTo:function(t){if(this._calendar.name!==t._calendar.name)throw(c.local.differentCalendars||c.regionalOptions[\"\"].differentCalendars).replace(/\\{0\\}/,this._calendar.local.name).replace(/\\{1\\}/,t._calendar.local.name);var e=this._year!==t._year?this._year-t._year:this._month!==t._month?this.monthOfYear()-t.monthOfYear():this._day-t._day;return 0===e?0:e<0?-1:1},calendar:function(){return this._calendar},toJD:function(){return this._calendar.toJD(this)},fromJD:function(t){return this._calendar.fromJD(t)},toJSDate:function(){return this._calendar.toJSDate(this)},fromJSDate:function(t){return this._calendar.fromJSDate(t)},toString:function(){return(this.year()<0?\"-\":\"\")+o(Math.abs(this.year()),4)+\"-\"+o(this.month(),2)+\"-\"+o(this.day(),2)}}),n(s.prototype,{_validateLevel:0,newDate:function(t,e,r){return null==t?this.today():(t.year&&(this._validate(t,e,r,c.local.invalidDate||c.regionalOptions[\"\"].invalidDate),r=t.day(),e=t.month(),t=t.year()),new i(this,t,e,r))},today:function(){return this.fromJSDate(new Date)},epoch:function(t){return this._validate(t,this.minMonth,this.minDay,c.local.invalidYear||c.regionalOptions[\"\"].invalidYear).year()<0?this.local.epochs[0]:this.local.epochs[1]},formatYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,c.local.invalidYear||c.regionalOptions[\"\"].invalidYear);return(e.year()<0?\"-\":\"\")+o(Math.abs(e.year()),4)},monthsInYear:function(t){return this._validate(t,this.minMonth,this.minDay,c.local.invalidYear||c.regionalOptions[\"\"].invalidYear),12},monthOfYear:function(t,e){var r=this._validate(t,e,this.minDay,c.local.invalidMonth||c.regionalOptions[\"\"].invalidMonth);return(r.month()+this.monthsInYear(r)-this.firstMonth)%this.monthsInYear(r)+this.minMonth},fromMonthOfYear:function(t,e){var r=(e+this.firstMonth-2*this.minMonth)%this.monthsInYear(t)+this.minMonth;return this._validate(t,r,this.minDay,c.local.invalidMonth||c.regionalOptions[\"\"].invalidMonth),r},daysInYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,c.local.invalidYear||c.regionalOptions[\"\"].invalidYear);return this.leapYear(e)?366:365},dayOfYear:function(t,e,r){var n=this._validate(t,e,r,c.local.invalidDate||c.regionalOptions[\"\"].invalidDate);return n.toJD()-this.newDate(n.year(),this.fromMonthOfYear(n.year(),this.minMonth),this.minDay).toJD()+1},daysInWeek:function(){return 7},dayOfWeek:function(t,e,r){var n=this._validate(t,e,r,c.local.invalidDate||c.regionalOptions[\"\"].invalidDate);return(Math.floor(this.toJD(n))+2)%this.daysInWeek()},extraInfo:function(t,e,r){return this._validate(t,e,r,c.local.invalidDate||c.regionalOptions[\"\"].invalidDate),{}},add:function(t,e,r){return this._validate(t,this.minMonth,this.minDay,c.local.invalidDate||c.regionalOptions[\"\"].invalidDate),this._correctAdd(t,this._add(t,e,r),e,r)},_add:function(t,e,r){if(this._validateLevel++,\"d\"===r||\"w\"===r){var n=t.toJD()+e*(\"w\"===r?this.daysInWeek():1),a=t.calendar().fromJD(n);return this._validateLevel--,[a.year(),a.month(),a.day()]}try{var i=t.year()+(\"y\"===r?e:0),o=t.monthOfYear()+(\"m\"===r?e:0);a=t.day();\"y\"===r?(t.month()!==this.fromMonthOfYear(i,o)&&(o=this.newDate(i,t.month(),this.minDay).monthOfYear()),o=Math.min(o,this.monthsInYear(i)),a=Math.min(a,this.daysInMonth(i,this.fromMonthOfYear(i,o)))):\"m\"===r&&(!function(t){for(;o<t.minMonth;)i--,o+=t.monthsInYear(i);for(var e=t.monthsInYear(i);o>e-1+t.minMonth;)i++,o-=e,e=t.monthsInYear(i)}(this),a=Math.min(a,this.daysInMonth(i,this.fromMonthOfYear(i,o))));var s=[i,this.fromMonthOfYear(i,o),a];return this._validateLevel--,s}catch(t){throw this._validateLevel--,t}},_correctAdd:function(t,e,r,n){if(!(this.hasYearZero||\"y\"!==n&&\"m\"!==n||0!==e[0]&&t.year()>0==e[0]>0)){var a={y:[1,1,\"y\"],m:[1,this.monthsInYear(-1),\"m\"],w:[this.daysInWeek(),this.daysInYear(-1),\"d\"],d:[1,this.daysInYear(-1),\"d\"]}[n],i=r<0?-1:1;e=this._add(t,r*a[0]+i*a[1],a[2])}return t.date(e[0],e[1],e[2])},set:function(t,e,r){this._validate(t,this.minMonth,this.minDay,c.local.invalidDate||c.regionalOptions[\"\"].invalidDate);var n=\"y\"===r?e:t.year(),a=\"m\"===r?e:t.month(),i=\"d\"===r?e:t.day();return\"y\"!==r&&\"m\"!==r||(i=Math.min(i,this.daysInMonth(n,a))),t.date(n,a,i)},isValid:function(t,e,r){this._validateLevel++;var n=this.hasYearZero||0!==t;if(n){var a=this.newDate(t,e,this.minDay);n=e>=this.minMonth&&e-this.minMonth<this.monthsInYear(a)&&r>=this.minDay&&r-this.minDay<this.daysInMonth(a)}return this._validateLevel--,n},toJSDate:function(t,e,r){var n=this._validate(t,e,r,c.local.invalidDate||c.regionalOptions[\"\"].invalidDate);return c.instance().fromJD(this.toJD(n)).toJSDate()},fromJSDate:function(t){return this.fromJD(c.instance().fromJSDate(t).toJD())},_validate:function(t,e,r,n){if(t.year){if(0===this._validateLevel&&this.name!==t.calendar().name)throw(c.local.differentCalendars||c.regionalOptions[\"\"].differentCalendars).replace(/\\{0\\}/,this.local.name).replace(/\\{1\\}/,t.calendar().local.name);return t}try{if(this._validateLevel++,1===this._validateLevel&&!this.isValid(t,e,r))throw n.replace(/\\{0\\}/,this.local.name);var a=this.newDate(t,e,r);return this._validateLevel--,a}catch(t){throw this._validateLevel--,t}}}),l.prototype=new s,n(l.prototype,{name:\"Gregorian\",jdEpoch:1721425.5,daysPerMonth:[31,28,31,30,31,30,31,31,30,31,30,31],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Gregorian\",epochs:[\"BCE\",\"CE\"],monthNames:[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],monthNamesShort:[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],dayNames:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],dayNamesShort:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],dayNamesMin:[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"],digits:null,dateFormat:\"mm/dd/yyyy\",firstDay:0,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,c.local.invalidYear||c.regionalOptions[\"\"].invalidYear);return(t=e.year()+(e.year()<0?1:0))%4==0&&(t%100!=0||t%400==0)},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(4-(n.dayOfWeek()||7),\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,c.local.invalidMonth||c.regionalOptions[\"\"].invalidMonth);return this.daysPerMonth[r.month()-1]+(2===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var n=this._validate(t,e,r,c.local.invalidDate||c.regionalOptions[\"\"].invalidDate);t=n.year(),e=n.month(),r=n.day(),t<0&&t++,e<3&&(e+=12,t--);var a=Math.floor(t/100),i=2-a+Math.floor(a/4);return Math.floor(365.25*(t+4716))+Math.floor(30.6001*(e+1))+r+i-1524.5},fromJD:function(t){var e=Math.floor(t+.5),r=Math.floor((e-1867216.25)/36524.25),n=(r=e+1+r-Math.floor(r/4))+1524,a=Math.floor((n-122.1)/365.25),i=Math.floor(365.25*a),o=Math.floor((n-i)/30.6001),s=n-i-Math.floor(30.6001*o),l=o-(o>13.5?13:1),c=a-(l>2.5?4716:4715);return c<=0&&c--,this.newDate(c,l,s)},toJSDate:function(t,e,r){var n=this._validate(t,e,r,c.local.invalidDate||c.regionalOptions[\"\"].invalidDate),a=new Date(n.year(),n.month()-1,n.day());return a.setHours(0),a.setMinutes(0),a.setSeconds(0),a.setMilliseconds(0),a.setHours(a.getHours()>12?a.getHours()+2:0),a},fromJSDate:function(t){return this.newDate(t.getFullYear(),t.getMonth()+1,t.getDate())}});var c=e.exports=new a;c.cdate=i,c.baseCalendar=s,c.calendars.gregorian=l},{\"object-assign\":455}],573:[function(t,e,r){var n=t(\"object-assign\"),a=t(\"./main\");n(a.regionalOptions[\"\"],{invalidArguments:\"Invalid arguments\",invalidFormat:\"Cannot format a date from another calendar\",missingNumberAt:\"Missing number at position {0}\",unknownNameAt:\"Unknown name at position {0}\",unexpectedLiteralAt:\"Unexpected literal at position {0}\",unexpectedText:\"Additional text found at end\"}),a.local=a.regionalOptions[\"\"],n(a.cdate.prototype,{formatDate:function(t,e){return\"string\"!=typeof t&&(e=t,t=\"\"),this._calendar.formatDate(t||\"\",this,e)}}),n(a.baseCalendar.prototype,{UNIX_EPOCH:a.instance().newDate(1970,1,1).toJD(),SECS_PER_DAY:86400,TICKS_EPOCH:a.instance().jdEpoch,TICKS_PER_DAY:864e9,ATOM:\"yyyy-mm-dd\",COOKIE:\"D, dd M yyyy\",FULL:\"DD, MM d, yyyy\",ISO_8601:\"yyyy-mm-dd\",JULIAN:\"J\",RFC_822:\"D, d M yy\",RFC_850:\"DD, dd-M-yy\",RFC_1036:\"D, d M yy\",RFC_1123:\"D, d M yyyy\",RFC_2822:\"D, d M yyyy\",RSS:\"D, d M yy\",TICKS:\"!\",TIMESTAMP:\"@\",W3C:\"yyyy-mm-dd\",formatDate:function(t,e,r){if(\"string\"!=typeof t&&(r=e,e=t,t=\"\"),!e)return\"\";if(e.calendar()!==this)throw a.local.invalidFormat||a.regionalOptions[\"\"].invalidFormat;t=t||this.local.dateFormat;for(var n,i,o,s,l=(r=r||{}).dayNamesShort||this.local.dayNamesShort,c=r.dayNames||this.local.dayNames,u=r.monthNumbers||this.local.monthNumbers,h=r.monthNamesShort||this.local.monthNamesShort,f=r.monthNames||this.local.monthNames,p=(r.calculateWeek||this.local.calculateWeek,function(e,r){for(var n=1;w+n<t.length&&t.charAt(w+n)===e;)n++;return w+=n-1,Math.floor(n/(r||1))>1}),d=function(t,e,r,n){var a=\"\"+e;if(p(t,n))for(;a.length<r;)a=\"0\"+a;return a},g=this,v=function(t){return\"function\"==typeof u?u.call(g,t,p(\"m\")):x(d(\"m\",t.month(),2))},m=function(t,e){return e?\"function\"==typeof f?f.call(g,t):f[t.month()-g.minMonth]:\"function\"==typeof h?h.call(g,t):h[t.month()-g.minMonth]},y=this.local.digits,x=function(t){return r.localNumbers&&y?y(t):t},b=\"\",_=!1,w=0;w<t.length;w++)if(_)\"'\"!==t.charAt(w)||p(\"'\")?b+=t.charAt(w):_=!1;else switch(t.charAt(w)){case\"d\":b+=x(d(\"d\",e.day(),2));break;case\"D\":b+=(n=\"D\",i=e.dayOfWeek(),o=l,s=c,p(n)?s[i]:o[i]);break;case\"o\":b+=d(\"o\",e.dayOfYear(),3);break;case\"w\":b+=d(\"w\",e.weekOfYear(),2);break;case\"m\":b+=v(e);break;case\"M\":b+=m(e,p(\"M\"));break;case\"y\":b+=p(\"y\",2)?e.year():(e.year()%100<10?\"0\":\"\")+e.year()%100;break;case\"Y\":p(\"Y\",2),b+=e.formatYear();break;case\"J\":b+=e.toJD();break;case\"@\":b+=(e.toJD()-this.UNIX_EPOCH)*this.SECS_PER_DAY;break;case\"!\":b+=(e.toJD()-this.TICKS_EPOCH)*this.TICKS_PER_DAY;break;case\"'\":p(\"'\")?b+=\"'\":_=!0;break;default:b+=t.charAt(w)}return b},parseDate:function(t,e,r){if(null==e)throw a.local.invalidArguments||a.regionalOptions[\"\"].invalidArguments;if(\"\"===(e=\"object\"==typeof e?e.toString():e+\"\"))return null;t=t||this.local.dateFormat;var n=(r=r||{}).shortYearCutoff||this.shortYearCutoff;n=\"string\"!=typeof n?n:this.today().year()%100+parseInt(n,10);for(var i=r.dayNamesShort||this.local.dayNamesShort,o=r.dayNames||this.local.dayNames,s=r.parseMonth||this.local.parseMonth,l=r.monthNumbers||this.local.monthNumbers,c=r.monthNamesShort||this.local.monthNamesShort,u=r.monthNames||this.local.monthNames,h=-1,f=-1,p=-1,d=-1,g=-1,v=!1,m=!1,y=function(e,r){for(var n=1;M+n<t.length&&t.charAt(M+n)===e;)n++;return M+=n-1,Math.floor(n/(r||1))>1},x=function(t,r){var n=y(t,r),i=[2,3,n?4:2,n?4:2,10,11,20][\"oyYJ@!\".indexOf(t)+1],o=new RegExp(\"^-?\\\\d{1,\"+i+\"}\"),s=e.substring(A).match(o);if(!s)throw(a.local.missingNumberAt||a.regionalOptions[\"\"].missingNumberAt).replace(/\\{0\\}/,A);return A+=s[0].length,parseInt(s[0],10)},b=this,_=function(){if(\"function\"==typeof l){y(\"m\");var t=l.call(b,e.substring(A));return A+=t.length,t}return x(\"m\")},w=function(t,r,n,i){for(var o=y(t,i)?n:r,s=0;s<o.length;s++)if(e.substr(A,o[s].length).toLowerCase()===o[s].toLowerCase())return A+=o[s].length,s+b.minMonth;throw(a.local.unknownNameAt||a.regionalOptions[\"\"].unknownNameAt).replace(/\\{0\\}/,A)},k=function(){if(\"function\"==typeof u){var t=y(\"M\")?u.call(b,e.substring(A)):c.call(b,e.substring(A));return A+=t.length,t}return w(\"M\",c,u)},T=function(){if(e.charAt(A)!==t.charAt(M))throw(a.local.unexpectedLiteralAt||a.regionalOptions[\"\"].unexpectedLiteralAt).replace(/\\{0\\}/,A);A++},A=0,M=0;M<t.length;M++)if(m)\"'\"!==t.charAt(M)||y(\"'\")?T():m=!1;else switch(t.charAt(M)){case\"d\":d=x(\"d\");break;case\"D\":w(\"D\",i,o);break;case\"o\":g=x(\"o\");break;case\"w\":x(\"w\");break;case\"m\":p=_();break;case\"M\":p=k();break;case\"y\":var S=M;v=!y(\"y\",2),M=S,f=x(\"y\",2);break;case\"Y\":f=x(\"Y\",2);break;case\"J\":h=x(\"J\")+.5,\".\"===e.charAt(A)&&(A++,x(\"J\"));break;case\"@\":h=x(\"@\")/this.SECS_PER_DAY+this.UNIX_EPOCH;break;case\"!\":h=x(\"!\")/this.TICKS_PER_DAY+this.TICKS_EPOCH;break;case\"*\":A=e.length;break;case\"'\":y(\"'\")?T():m=!0;break;default:T()}if(A<e.length)throw a.local.unexpectedText||a.regionalOptions[\"\"].unexpectedText;if(-1===f?f=this.today().year():f<100&&v&&(f+=-1===n?1900:this.today().year()-this.today().year()%100-(f<=n?0:100)),\"string\"==typeof p&&(p=s.call(this,f,p)),g>-1){p=1,d=g;for(var E=this.daysInMonth(f,p);d>E;E=this.daysInMonth(f,p))p++,d-=E}return h>-1?this.fromJD(h):this.newDate(f,p,d)},determineDate:function(t,e,r,n,a){r&&\"object\"!=typeof r&&(a=n,n=r,r=null),\"string\"!=typeof n&&(a=n,n=\"\");var i=this;return e=e?e.newDate():null,t=null==t?e:\"string\"==typeof t?function(t){try{return i.parseDate(n,t,a)}catch(t){}for(var e=((t=t.toLowerCase()).match(/^c/)&&r?r.newDate():null)||i.today(),o=/([+-]?[0-9]+)\\s*(d|w|m|y)?/g,s=o.exec(t);s;)e.add(parseInt(s[1],10),s[2]||\"d\"),s=o.exec(t);return e}(t):\"number\"==typeof t?isNaN(t)||t===1/0||t===-1/0?e:i.today().add(t,\"d\"):i.newDate(t)}})},{\"./main\":572,\"object-assign\":455}],574:[function(t,e,r){e.exports=t(\"cwise-compiler\")({args:[\"array\",{offset:[1],array:0},\"scalar\",\"scalar\",\"index\"],pre:{body:\"{}\",args:[],thisVars:[],localVars:[]},post:{body:\"{}\",args:[],thisVars:[],localVars:[]},body:{body:\"{\\n        var _inline_1_da = _inline_1_arg0_ - _inline_1_arg3_\\n        var _inline_1_db = _inline_1_arg1_ - _inline_1_arg3_\\n        if((_inline_1_da >= 0) !== (_inline_1_db >= 0)) {\\n          _inline_1_arg2_.push(_inline_1_arg4_[0] + 0.5 + 0.5 * (_inline_1_da + _inline_1_db) / (_inline_1_da - _inline_1_db))\\n        }\\n      }\",args:[{name:\"_inline_1_arg0_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_1_arg1_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_1_arg2_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_1_arg3_\",lvalue:!1,rvalue:!0,count:2},{name:\"_inline_1_arg4_\",lvalue:!1,rvalue:!0,count:1}],thisVars:[],localVars:[\"_inline_1_da\",\"_inline_1_db\"]},funcName:\"zeroCrossings\"})},{\"cwise-compiler\":147}],575:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=[];return e=+e||0,n(t.hi(t.shape[0]-1),r,e),r};var n=t(\"./lib/zc-core\")},{\"./lib/zc-core\":574}],576:[function(t,e,r){\"use strict\";e.exports=[{path:\"\",backoff:0},{path:\"M-2.4,-3V3L0.6,0Z\",backoff:.6},{path:\"M-3.7,-2.5V2.5L1.3,0Z\",backoff:1.3},{path:\"M-4.45,-3L-1.65,-0.2V0.2L-4.45,3L1.55,0Z\",backoff:1.55},{path:\"M-2.2,-2.2L-0.2,-0.2V0.2L-2.2,2.2L-1.4,3L1.6,0L-1.4,-3Z\",backoff:1.6},{path:\"M-4.4,-2.1L-0.6,-0.2V0.2L-4.4,2.1L-4,3L2,0L-4,-3Z\",backoff:2},{path:\"M2,0A2,2 0 1,1 0,-2A2,2 0 0,1 2,0Z\",backoff:0,noRotate:!0},{path:\"M2,2V-2H-2V2Z\",backoff:0,noRotate:!0}]},{}],577:[function(t,e,r){\"use strict\";var n=t(\"./arrow_paths\"),a=t(\"../../plots/font_attributes\"),i=t(\"../../plots/cartesian/constants\"),o=t(\"../../plot_api/plot_template\").templatedArray;e.exports=o(\"annotation\",{visible:{valType:\"boolean\",dflt:!0,editType:\"calc+arraydraw\"},text:{valType:\"string\",editType:\"calc+arraydraw\"},textangle:{valType:\"angle\",dflt:0,editType:\"calc+arraydraw\"},font:a({editType:\"calc+arraydraw\",colorEditType:\"arraydraw\"}),width:{valType:\"number\",min:1,dflt:null,editType:\"calc+arraydraw\"},height:{valType:\"number\",min:1,dflt:null,editType:\"calc+arraydraw\"},opacity:{valType:\"number\",min:0,max:1,dflt:1,editType:\"arraydraw\"},align:{valType:\"enumerated\",values:[\"left\",\"center\",\"right\"],dflt:\"center\",editType:\"arraydraw\"},valign:{valType:\"enumerated\",values:[\"top\",\"middle\",\"bottom\"],dflt:\"middle\",editType:\"arraydraw\"},bgcolor:{valType:\"color\",dflt:\"rgba(0,0,0,0)\",editType:\"arraydraw\"},bordercolor:{valType:\"color\",dflt:\"rgba(0,0,0,0)\",editType:\"arraydraw\"},borderpad:{valType:\"number\",min:0,dflt:1,editType:\"calc+arraydraw\"},borderwidth:{valType:\"number\",min:0,dflt:1,editType:\"calc+arraydraw\"},showarrow:{valType:\"boolean\",dflt:!0,editType:\"calc+arraydraw\"},arrowcolor:{valType:\"color\",editType:\"arraydraw\"},arrowhead:{valType:\"integer\",min:0,max:n.length,dflt:1,editType:\"arraydraw\"},startarrowhead:{valType:\"integer\",min:0,max:n.length,dflt:1,editType:\"arraydraw\"},arrowside:{valType:\"flaglist\",flags:[\"end\",\"start\"],extras:[\"none\"],dflt:\"end\",editType:\"arraydraw\"},arrowsize:{valType:\"number\",min:.3,dflt:1,editType:\"calc+arraydraw\"},startarrowsize:{valType:\"number\",min:.3,dflt:1,editType:\"calc+arraydraw\"},arrowwidth:{valType:\"number\",min:.1,editType:\"calc+arraydraw\"},standoff:{valType:\"number\",min:0,dflt:0,editType:\"calc+arraydraw\"},startstandoff:{valType:\"number\",min:0,dflt:0,editType:\"calc+arraydraw\"},ax:{valType:\"any\",editType:\"calc+arraydraw\"},ay:{valType:\"any\",editType:\"calc+arraydraw\"},axref:{valType:\"enumerated\",dflt:\"pixel\",values:[\"pixel\",i.idRegex.x.toString()],editType:\"calc\"},ayref:{valType:\"enumerated\",dflt:\"pixel\",values:[\"pixel\",i.idRegex.y.toString()],editType:\"calc\"},xref:{valType:\"enumerated\",values:[\"paper\",i.idRegex.x.toString()],editType:\"calc\"},x:{valType:\"any\",editType:\"calc+arraydraw\"},xanchor:{valType:\"enumerated\",values:[\"auto\",\"left\",\"center\",\"right\"],dflt:\"auto\",editType:\"calc+arraydraw\"},xshift:{valType:\"number\",dflt:0,editType:\"calc+arraydraw\"},yref:{valType:\"enumerated\",values:[\"paper\",i.idRegex.y.toString()],editType:\"calc\"},y:{valType:\"any\",editType:\"calc+arraydraw\"},yanchor:{valType:\"enumerated\",values:[\"auto\",\"top\",\"middle\",\"bottom\"],dflt:\"auto\",editType:\"calc+arraydraw\"},yshift:{valType:\"number\",dflt:0,editType:\"calc+arraydraw\"},clicktoshow:{valType:\"enumerated\",values:[!1,\"onoff\",\"onout\"],dflt:!1,editType:\"arraydraw\"},xclick:{valType:\"any\",editType:\"arraydraw\"},yclick:{valType:\"any\",editType:\"arraydraw\"},hovertext:{valType:\"string\",editType:\"arraydraw\"},hoverlabel:{bgcolor:{valType:\"color\",editType:\"arraydraw\"},bordercolor:{valType:\"color\",editType:\"arraydraw\"},font:a({editType:\"arraydraw\"}),editType:\"arraydraw\"},captureevents:{valType:\"boolean\",editType:\"arraydraw\"},editType:\"calc\",_deprecated:{ref:{valType:\"string\",editType:\"calc\"}}})},{\"../../plot_api/plot_template\":757,\"../../plots/cartesian/constants\":773,\"../../plots/font_attributes\":793,\"./arrow_paths\":576}],578:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"./draw\").draw;function o(t){var e=t._fullLayout;n.filterVisible(e.annotations).forEach(function(e){var r=a.getFromId(t,e.xref),n=a.getFromId(t,e.yref);e._extremes={},r&&s(e,r),n&&s(e,n)})}function s(t,e){var r,n=e._id,i=n.charAt(0),o=t[i],s=t[\"a\"+i],l=t[i+\"ref\"],c=t[\"a\"+i+\"ref\"],u=t[\"_\"+i+\"padplus\"],h=t[\"_\"+i+\"padminus\"],f={x:1,y:-1}[i]*t[i+\"shift\"],p=3*t.arrowsize*t.arrowwidth||0,d=p+f,g=p-f,v=3*t.startarrowsize*t.arrowwidth||0,m=v+f,y=v-f;if(c===l){var x=a.findExtremes(e,[e.r2c(o)],{ppadplus:d,ppadminus:g}),b=a.findExtremes(e,[e.r2c(s)],{ppadplus:Math.max(u,m),ppadminus:Math.max(h,y)});r={min:[x.min[0],b.min[0]],max:[x.max[0],b.max[0]]}}else m=s?m+s:m,y=s?y-s:y,r=a.findExtremes(e,[e.r2c(o)],{ppadplus:Math.max(u,d,m),ppadminus:Math.max(h,g,y)});t._extremes[n]=r}e.exports=function(t){var e=t._fullLayout;if(n.filterVisible(e.annotations).length&&t._fullData.length)return n.syncOrAsync([i,o],t)}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"./draw\":583}],579:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../registry\"),i=t(\"../../plot_api/plot_template\").arrayEditor;function o(t,e){var r,n,a,i,o,l,c,u=t._fullLayout.annotations,h=[],f=[],p=[],d=(e||[]).length;for(r=0;r<u.length;r++)if(i=(a=u[r]).clicktoshow){for(n=0;n<d;n++)if(l=(o=e[n]).xaxis,c=o.yaxis,l._id===a.xref&&c._id===a.yref&&l.d2r(o.x)===s(a._xclick,l)&&c.d2r(o.y)===s(a._yclick,c)){(a.visible?\"onout\"===i?f:p:h).push(r);break}n===d&&a.visible&&\"onout\"===i&&f.push(r)}return{on:h,off:f,explicitOff:p}}function s(t,e){return\"log\"===e.type?e.l2r(t):e.d2r(t)}e.exports={hasClickToShow:function(t,e){var r=o(t,e);return r.on.length>0||r.explicitOff.length>0},onClick:function(t,e){var r,s,l=o(t,e),c=l.on,u=l.off.concat(l.explicitOff),h={},f=t._fullLayout.annotations;if(!c.length&&!u.length)return;for(r=0;r<c.length;r++)(s=i(t.layout,\"annotations\",f[c[r]])).modifyItem(\"visible\",!0),n.extendFlat(h,s.getUpdateObj());for(r=0;r<u.length;r++)(s=i(t.layout,\"annotations\",f[u[r]])).modifyItem(\"visible\",!1),n.extendFlat(h,s.getUpdateObj());return a.call(\"update\",t,{},h)}}},{\"../../lib\":719,\"../../plot_api/plot_template\":757,\"../../registry\":848}],580:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../color\");e.exports=function(t,e,r,i){i(\"opacity\");var o=i(\"bgcolor\"),s=i(\"bordercolor\"),l=a.opacity(s);i(\"borderpad\");var c=i(\"borderwidth\"),u=i(\"showarrow\");if(i(\"text\",u?\" \":r._dfltTitle.annotation),i(\"textangle\"),n.coerceFont(i,\"font\",r.font),i(\"width\"),i(\"align\"),i(\"height\")&&i(\"valign\"),u){var h,f,p=i(\"arrowside\");-1!==p.indexOf(\"end\")&&(h=i(\"arrowhead\"),f=i(\"arrowsize\")),-1!==p.indexOf(\"start\")&&(i(\"startarrowhead\",h),i(\"startarrowsize\",f)),i(\"arrowcolor\",l?e.bordercolor:a.defaultLine),i(\"arrowwidth\",2*(l&&c||1)),i(\"standoff\"),i(\"startstandoff\")}var d=i(\"hovertext\"),g=r.hoverlabel||{};if(d){var v=i(\"hoverlabel.bgcolor\",g.bgcolor||(a.opacity(o)?a.rgb(o):a.defaultLine)),m=i(\"hoverlabel.bordercolor\",g.bordercolor||a.contrast(v));n.coerceFont(i,\"hoverlabel.font\",{family:g.font.family,size:g.font.size,color:g.font.color||m})}i(\"captureevents\",!!d)}},{\"../../lib\":719,\"../color\":594}],581:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib/to_log_range\");e.exports=function(t,e,r,i){e=e||{};var o=\"log\"===r&&\"linear\"===e.type,s=\"linear\"===r&&\"log\"===e.type;if(o||s)for(var l,c,u=t._fullLayout.annotations,h=e._id.charAt(0),f=0;f<u.length;f++)l=u[f],c=\"annotations[\"+f+\"].\",l[h+\"ref\"]===e._id&&p(h),l[\"a\"+h+\"ref\"]===e._id&&p(\"a\"+h);function p(t){var r=l[t],s=null;s=o?a(r,e.range):Math.pow(10,r),n(s)||(s=null),i(c+t,s)}}},{\"../../lib/to_log_range\":745,\"fast-isnumeric\":226}],582:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"../../plots/array_container_defaults\"),o=t(\"./common_defaults\"),s=t(\"./attributes\");function l(t,e,r){function i(r,a){return n.coerce(t,e,s,r,a)}var l=i(\"visible\"),c=i(\"clicktoshow\");if(l||c){o(t,e,r,i);for(var u=e.showarrow,h=[\"x\",\"y\"],f=[-10,-30],p={_fullLayout:r},d=0;d<2;d++){var g=h[d],v=a.coerceRef(t,e,p,g,\"\",\"paper\");if(\"paper\"!==v)a.getFromId(p,v)._annIndices.push(e._index);if(a.coercePosition(e,p,i,v,g,.5),u){var m=\"a\"+g,y=a.coerceRef(t,e,p,m,\"pixel\");\"pixel\"!==y&&y!==v&&(y=e[m]=\"pixel\");var x=\"pixel\"===y?f[d]:.4;a.coercePosition(e,p,i,y,m,x)}i(g+\"anchor\"),i(g+\"shift\")}if(n.noneOrAll(t,e,[\"x\",\"y\"]),u&&n.noneOrAll(t,e,[\"ax\",\"ay\"]),c){var b=i(\"xclick\"),_=i(\"yclick\");e._xclick=void 0===b?e.x:a.cleanPosition(b,p,e.xref),e._yclick=void 0===_?e.y:a.cleanPosition(_,p,e.yref)}}}e.exports=function(t,e){i(t,e,{name:\"annotations\",handleItemDefaults:l})}},{\"../../lib\":719,\"../../plots/array_container_defaults\":763,\"../../plots/cartesian/axes\":767,\"./attributes\":577,\"./common_defaults\":580}],583:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../registry\"),i=t(\"../../plots/plots\"),o=t(\"../../lib\"),s=t(\"../../plots/cartesian/axes\"),l=t(\"../color\"),c=t(\"../drawing\"),u=t(\"../fx\"),h=t(\"../../lib/svg_text_utils\"),f=t(\"../../lib/setcursor\"),p=t(\"../dragelement\"),d=t(\"../../plot_api/plot_template\").arrayEditor,g=t(\"./draw_arrow_head\");function v(t,e){var r=t._fullLayout.annotations[e]||{},n=s.getFromId(t,r.xref),a=s.getFromId(t,r.yref);n&&n.setScale(),a&&a.setScale(),m(t,r,e,!1,n,a)}function m(t,e,r,i,s,v){var m,y,x=t._fullLayout,b=t._fullLayout._size,_=t._context.edits;i?(m=\"annotation-\"+i,y=i+\".annotations\"):(m=\"annotation\",y=\"annotations\");var w=d(t.layout,y,e),k=w.modifyBase,T=w.modifyItem,A=w.getUpdateObj;x._infolayer.selectAll(\".\"+m+'[data-index=\"'+r+'\"]').remove();var M=\"clip\"+x._uid+\"_ann\"+r;if(e._input&&!1!==e.visible){var S={x:{},y:{}},E=+e.textangle||0,C=x._infolayer.append(\"g\").classed(m,!0).attr(\"data-index\",String(r)).style(\"opacity\",e.opacity),L=C.append(\"g\").classed(\"annotation-text-g\",!0),P=_[e.showarrow?\"annotationTail\":\"annotationPosition\"],O=e.captureevents||_.annotationText||P,I=L.append(\"g\").style(\"pointer-events\",O?\"all\":null).call(f,\"pointer\").on(\"click\",function(){t._dragging=!1,t.emit(\"plotly_clickannotation\",q(n.event))});e.hovertext&&I.on(\"mouseover\",function(){var r=e.hoverlabel,n=r.font,a=this.getBoundingClientRect(),i=t.getBoundingClientRect();u.loneHover({x0:a.left-i.left,x1:a.right-i.left,y:(a.top+a.bottom)/2-i.top,text:e.hovertext,color:r.bgcolor,borderColor:r.bordercolor,fontFamily:n.family,fontSize:n.size,fontColor:n.color},{container:x._hoverlayer.node(),outerContainer:x._paper.node(),gd:t})}).on(\"mouseout\",function(){u.loneUnhover(x._hoverlayer.node())});var z=e.borderwidth,D=e.borderpad,R=z+D,F=I.append(\"rect\").attr(\"class\",\"bg\").style(\"stroke-width\",z+\"px\").call(l.stroke,e.bordercolor).call(l.fill,e.bgcolor),B=e.width||e.height,N=x._topclips.selectAll(\"#\"+M).data(B?[0]:[]);N.enter().append(\"clipPath\").classed(\"annclip\",!0).attr(\"id\",M).append(\"rect\"),N.exit().remove();var j=e.font,V=x._meta?o.templateString(e.text,x._meta):e.text,U=I.append(\"text\").classed(\"annotation-text\",!0).text(V);_.annotationText?U.call(h.makeEditable,{delegate:I,gd:t}).call(H).on(\"edit\",function(r){e.text=r,this.call(H),T(\"text\",r),s&&s.autorange&&k(s._name+\".autorange\",!0),v&&v.autorange&&k(v._name+\".autorange\",!0),a.call(\"_guiRelayout\",t,A())}):U.call(H)}else n.selectAll(\"#\"+M).remove();function q(t){var n={index:r,annotation:e._input,fullAnnotation:e,event:t};return i&&(n.subplotId=i),n}function H(r){return r.call(c.font,j).attr({\"text-anchor\":{left:\"start\",right:\"end\"}[e.align]||\"middle\"}),h.convertToTspans(r,t,G),r}function G(){var r=U.selectAll(\"a\");1===r.size()&&r.text()===U.text()&&I.insert(\"a\",\":first-child\").attr({\"xlink:xlink:href\":r.attr(\"xlink:href\"),\"xlink:xlink:show\":r.attr(\"xlink:show\")}).style({cursor:\"pointer\"}).node().appendChild(F.node());var n=I.select(\".annotation-text-math-group\"),u=!n.empty(),d=c.bBox((u?n:U).node()),m=d.width,y=d.height,w=e.width||m,O=e.height||y,D=Math.round(w+2*R),j=Math.round(O+2*R);function V(t,e){return\"auto\"===e&&(e=t<1/3?\"left\":t>2/3?\"right\":\"center\"),{center:0,middle:0,left:.5,bottom:-.5,right:-.5,top:.5}[e]}for(var H=!1,G=[\"x\",\"y\"],Y=0;Y<G.length;Y++){var W,X,Z,J,K,Q=G[Y],$=e[Q+\"ref\"]||Q,tt=e[\"a\"+Q+\"ref\"],et={x:s,y:v}[Q],rt=(E+(\"x\"===Q?0:-90))*Math.PI/180,nt=D*Math.cos(rt),at=j*Math.sin(rt),it=Math.abs(nt)+Math.abs(at),ot=e[Q+\"anchor\"],st=e[Q+\"shift\"]*(\"x\"===Q?1:-1),lt=S[Q];if(et){var ct=et.r2fraction(e[Q]);(ct<0||ct>1)&&(tt===$?((ct=et.r2fraction(e[\"a\"+Q]))<0||ct>1)&&(H=!0):H=!0),W=et._offset+et.r2p(e[Q]),J=.5}else\"x\"===Q?(Z=e[Q],W=b.l+b.w*Z):(Z=1-e[Q],W=b.t+b.h*Z),J=e.showarrow?.5:Z;if(e.showarrow){lt.head=W;var ut=e[\"a\"+Q];K=nt*V(.5,e.xanchor)-at*V(.5,e.yanchor),tt===$?(lt.tail=et._offset+et.r2p(ut),X=K):(lt.tail=W+ut,X=K+ut),lt.text=lt.tail+K;var ht=x[\"x\"===Q?\"width\":\"height\"];if(\"paper\"===$&&(lt.head=o.constrain(lt.head,1,ht-1)),\"pixel\"===tt){var ft=-Math.max(lt.tail-3,lt.text),pt=Math.min(lt.tail+3,lt.text)-ht;ft>0?(lt.tail+=ft,lt.text+=ft):pt>0&&(lt.tail-=pt,lt.text-=pt)}lt.tail+=st,lt.head+=st}else X=K=it*V(J,ot),lt.text=W+K;lt.text+=st,K+=st,X+=st,e[\"_\"+Q+\"padplus\"]=it/2+X,e[\"_\"+Q+\"padminus\"]=it/2-X,e[\"_\"+Q+\"size\"]=it,e[\"_\"+Q+\"shift\"]=K}if(H)I.remove();else{var dt=0,gt=0;if(\"left\"!==e.align&&(dt=(w-m)*(\"center\"===e.align?.5:1)),\"top\"!==e.valign&&(gt=(O-y)*(\"middle\"===e.valign?.5:1)),u)n.select(\"svg\").attr({x:R+dt-1,y:R+gt}).call(c.setClipUrl,B?M:null,t);else{var vt=R+gt-d.top,mt=R+dt-d.left;U.call(h.positionText,mt,vt).call(c.setClipUrl,B?M:null,t)}N.select(\"rect\").call(c.setRect,R,R,w,O),F.call(c.setRect,z/2,z/2,D-z,j-z),I.call(c.setTranslate,Math.round(S.x.text-D/2),Math.round(S.y.text-j/2)),L.attr({transform:\"rotate(\"+E+\",\"+S.x.text+\",\"+S.y.text+\")\"});var yt,xt=function(r,n){C.selectAll(\".annotation-arrow-g\").remove();var u=S.x.head,h=S.y.head,f=S.x.tail+r,d=S.y.tail+n,m=S.x.text+r,y=S.y.text+n,x=o.rotationXYMatrix(E,m,y),w=o.apply2DTransform(x),M=o.apply2DTransform2(x),P=+F.attr(\"width\"),O=+F.attr(\"height\"),z=m-.5*P,D=z+P,R=y-.5*O,B=R+O,N=[[z,R,z,B],[z,B,D,B],[D,B,D,R],[D,R,z,R]].map(M);if(!N.reduce(function(t,e){return t^!!o.segmentsIntersect(u,h,u+1e6,h+1e6,e[0],e[1],e[2],e[3])},!1)){N.forEach(function(t){var e=o.segmentsIntersect(f,d,u,h,t[0],t[1],t[2],t[3]);e&&(f=e.x,d=e.y)});var j=e.arrowwidth,V=e.arrowcolor,U=e.arrowside,q=C.append(\"g\").style({opacity:l.opacity(V)}).classed(\"annotation-arrow-g\",!0),H=q.append(\"path\").attr(\"d\",\"M\"+f+\",\"+d+\"L\"+u+\",\"+h).style(\"stroke-width\",j+\"px\").call(l.stroke,l.rgb(V));if(g(H,U,e),_.annotationPosition&&H.node().parentNode&&!i){var G=u,Y=h;if(e.standoff){var W=Math.sqrt(Math.pow(u-f,2)+Math.pow(h-d,2));G+=e.standoff*(f-u)/W,Y+=e.standoff*(d-h)/W}var X,Z,J=q.append(\"path\").classed(\"annotation-arrow\",!0).classed(\"anndrag\",!0).classed(\"cursor-move\",!0).attr({d:\"M3,3H-3V-3H3ZM0,0L\"+(f-G)+\",\"+(d-Y),transform:\"translate(\"+G+\",\"+Y+\")\"}).style(\"stroke-width\",j+6+\"px\").call(l.stroke,\"rgba(0,0,0,0)\").call(l.fill,\"rgba(0,0,0,0)\");p.init({element:J.node(),gd:t,prepFn:function(){var t=c.getTranslate(I);X=t.x,Z=t.y,s&&s.autorange&&k(s._name+\".autorange\",!0),v&&v.autorange&&k(v._name+\".autorange\",!0)},moveFn:function(t,r){var n=w(X,Z),a=n[0]+t,i=n[1]+r;I.call(c.setTranslate,a,i),T(\"x\",s?s.p2r(s.r2p(e.x)+t):e.x+t/b.w),T(\"y\",v?v.p2r(v.r2p(e.y)+r):e.y-r/b.h),e.axref===e.xref&&T(\"ax\",s.p2r(s.r2p(e.ax)+t)),e.ayref===e.yref&&T(\"ay\",v.p2r(v.r2p(e.ay)+r)),q.attr(\"transform\",\"translate(\"+t+\",\"+r+\")\"),L.attr({transform:\"rotate(\"+E+\",\"+a+\",\"+i+\")\"})},doneFn:function(){a.call(\"_guiRelayout\",t,A());var e=document.querySelector(\".js-notes-box-panel\");e&&e.redraw(e.selectedObj)}})}}};if(e.showarrow&&xt(0,0),P)p.init({element:I.node(),gd:t,prepFn:function(){yt=L.attr(\"transform\")},moveFn:function(t,r){var n=\"pointer\";if(e.showarrow)e.axref===e.xref?T(\"ax\",s.p2r(s.r2p(e.ax)+t)):T(\"ax\",e.ax+t),e.ayref===e.yref?T(\"ay\",v.p2r(v.r2p(e.ay)+r)):T(\"ay\",e.ay+r),xt(t,r);else{if(i)return;var a,o;if(s)a=s.p2r(s.r2p(e.x)+t);else{var l=e._xsize/b.w,c=e.x+(e._xshift-e.xshift)/b.w-l/2;a=p.align(c+t/b.w,l,0,1,e.xanchor)}if(v)o=v.p2r(v.r2p(e.y)+r);else{var u=e._ysize/b.h,h=e.y-(e._yshift+e.yshift)/b.h-u/2;o=p.align(h-r/b.h,u,0,1,e.yanchor)}T(\"x\",a),T(\"y\",o),s&&v||(n=p.getCursor(s?.5:a,v?.5:o,e.xanchor,e.yanchor))}L.attr({transform:\"translate(\"+t+\",\"+r+\")\"+yt}),f(I,n)},clickFn:function(r,n){e.captureevents&&t.emit(\"plotly_clickannotation\",q(n))},doneFn:function(){f(I),a.call(\"_guiRelayout\",t,A());var e=document.querySelector(\".js-notes-box-panel\");e&&e.redraw(e.selectedObj)}})}}}e.exports={draw:function(t){var e=t._fullLayout;e._infolayer.selectAll(\".annotation\").remove();for(var r=0;r<e.annotations.length;r++)e.annotations[r].visible&&v(t,r);return i.previousPromises(t)},drawOne:v,drawRaw:m}},{\"../../lib\":719,\"../../lib/setcursor\":739,\"../../lib/svg_text_utils\":743,\"../../plot_api/plot_template\":757,\"../../plots/cartesian/axes\":767,\"../../plots/plots\":828,\"../../registry\":848,\"../color\":594,\"../dragelement\":612,\"../drawing\":615,\"../fx\":632,\"./draw_arrow_head\":584,d3:164}],584:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../color\"),i=t(\"./arrow_paths\");e.exports=function(t,e,r){var o,s,l,c,u=t.node(),h=i[r.arrowhead||0],f=i[r.startarrowhead||0],p=(r.arrowwidth||1)*(r.arrowsize||1),d=(r.arrowwidth||1)*(r.startarrowsize||1),g=e.indexOf(\"start\")>=0,v=e.indexOf(\"end\")>=0,m=h.backoff*p+r.standoff,y=f.backoff*d+r.startstandoff;if(\"line\"===u.nodeName){o={x:+t.attr(\"x1\"),y:+t.attr(\"y1\")},s={x:+t.attr(\"x2\"),y:+t.attr(\"y2\")};var x=o.x-s.x,b=o.y-s.y;if(c=(l=Math.atan2(b,x))+Math.PI,m&&y&&m+y>Math.sqrt(x*x+b*b))return void P();if(m){if(m*m>x*x+b*b)return void P();var _=m*Math.cos(l),w=m*Math.sin(l);s.x+=_,s.y+=w,t.attr({x2:s.x,y2:s.y})}if(y){if(y*y>x*x+b*b)return void P();var k=y*Math.cos(l),T=y*Math.sin(l);o.x-=k,o.y-=T,t.attr({x1:o.x,y1:o.y})}}else if(\"path\"===u.nodeName){var A=u.getTotalLength(),M=\"\";if(A<m+y)return void P();var S=u.getPointAtLength(0),E=u.getPointAtLength(.1);l=Math.atan2(S.y-E.y,S.x-E.x),o=u.getPointAtLength(Math.min(y,A)),M=\"0px,\"+y+\"px,\";var C=u.getPointAtLength(A),L=u.getPointAtLength(A-.1);c=Math.atan2(C.y-L.y,C.x-L.x),s=u.getPointAtLength(Math.max(0,A-m)),M+=A-(M?y+m:m)+\"px,\"+A+\"px\",t.style(\"stroke-dasharray\",M)}function P(){t.style(\"stroke-dasharray\",\"0px,100px\")}function O(e,i,o,s){e.path&&(e.noRotate&&(o=0),n.select(u.parentNode).append(\"path\").attr({class:t.attr(\"class\"),d:e.path,transform:\"translate(\"+i.x+\",\"+i.y+\")\"+(o?\"rotate(\"+180*o/Math.PI+\")\":\"\")+\"scale(\"+s+\")\"}).style({fill:a.rgb(r.arrowcolor),\"stroke-width\":0}))}g&&O(f,o,l,d),v&&O(h,s,c,p)}},{\"../color\":594,\"./arrow_paths\":576,d3:164}],585:[function(t,e,r){\"use strict\";var n=t(\"./draw\"),a=t(\"./click\");e.exports={moduleType:\"component\",name:\"annotations\",layoutAttributes:t(\"./attributes\"),supplyLayoutDefaults:t(\"./defaults\"),includeBasePlot:t(\"../../plots/cartesian/include_components\")(\"annotations\"),calcAutorange:t(\"./calc_autorange\"),draw:n.draw,drawOne:n.drawOne,drawRaw:n.drawRaw,hasClickToShow:a.hasClickToShow,onClick:a.onClick,convertCoords:t(\"./convert_coords\")}},{\"../../plots/cartesian/include_components\":777,\"./attributes\":577,\"./calc_autorange\":578,\"./click\":579,\"./convert_coords\":581,\"./defaults\":582,\"./draw\":583}],586:[function(t,e,r){\"use strict\";var n=t(\"../annotations/attributes\"),a=t(\"../../plot_api/edit_types\").overrideAll,i=t(\"../../plot_api/plot_template\").templatedArray;e.exports=a(i(\"annotation\",{visible:n.visible,x:{valType:\"any\"},y:{valType:\"any\"},z:{valType:\"any\"},ax:{valType:\"number\"},ay:{valType:\"number\"},xanchor:n.xanchor,xshift:n.xshift,yanchor:n.yanchor,yshift:n.yshift,text:n.text,textangle:n.textangle,font:n.font,width:n.width,height:n.height,opacity:n.opacity,align:n.align,valign:n.valign,bgcolor:n.bgcolor,bordercolor:n.bordercolor,borderpad:n.borderpad,borderwidth:n.borderwidth,showarrow:n.showarrow,arrowcolor:n.arrowcolor,arrowhead:n.arrowhead,startarrowhead:n.startarrowhead,arrowside:n.arrowside,arrowsize:n.arrowsize,startarrowsize:n.startarrowsize,arrowwidth:n.arrowwidth,standoff:n.standoff,startstandoff:n.startstandoff,hovertext:n.hovertext,hoverlabel:n.hoverlabel,captureevents:n.captureevents}),\"calc\",\"from-root\")},{\"../../plot_api/edit_types\":750,\"../../plot_api/plot_template\":757,\"../annotations/attributes\":577}],587:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\");function i(t,e){var r=e.fullSceneLayout.domain,i=e.fullLayout._size,o={pdata:null,type:\"linear\",autorange:!1,range:[-1/0,1/0]};t._xa={},n.extendFlat(t._xa,o),a.setConvert(t._xa),t._xa._offset=i.l+r.x[0]*i.w,t._xa.l2p=function(){return.5*(1+t._pdata[0]/t._pdata[3])*i.w*(r.x[1]-r.x[0])},t._ya={},n.extendFlat(t._ya,o),a.setConvert(t._ya),t._ya._offset=i.t+(1-r.y[1])*i.h,t._ya.l2p=function(){return.5*(1-t._pdata[1]/t._pdata[3])*i.h*(r.y[1]-r.y[0])}}e.exports=function(t){for(var e=t.fullSceneLayout.annotations,r=0;r<e.length;r++)i(e[r],t);t.fullLayout._infolayer.selectAll(\".annotation-\"+t.id).remove()}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767}],588:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"../../plots/array_container_defaults\"),o=t(\"../annotations/common_defaults\"),s=t(\"./attributes\");function l(t,e,r,i){function l(r,a){return n.coerce(t,e,s,r,a)}function c(t){var n=t+\"axis\",i={_fullLayout:{}};return i._fullLayout[n]=r[n],a.coercePosition(e,i,l,t,t,.5)}l(\"visible\")&&(o(t,e,i.fullLayout,l),c(\"x\"),c(\"y\"),c(\"z\"),n.noneOrAll(t,e,[\"x\",\"y\",\"z\"]),e.xref=\"x\",e.yref=\"y\",e.zref=\"z\",l(\"xanchor\"),l(\"yanchor\"),l(\"xshift\"),l(\"yshift\"),e.showarrow&&(e.axref=\"pixel\",e.ayref=\"pixel\",l(\"ax\",-10),l(\"ay\",-30),n.noneOrAll(t,e,[\"ax\",\"ay\"])))}e.exports=function(t,e,r){i(t,e,{name:\"annotations\",handleItemDefaults:l,fullLayout:r.fullLayout})}},{\"../../lib\":719,\"../../plots/array_container_defaults\":763,\"../../plots/cartesian/axes\":767,\"../annotations/common_defaults\":580,\"./attributes\":586}],589:[function(t,e,r){\"use strict\";var n=t(\"../annotations/draw\").drawRaw,a=t(\"../../plots/gl3d/project\"),i=[\"x\",\"y\",\"z\"];e.exports=function(t){for(var e=t.fullSceneLayout,r=t.dataScale,o=e.annotations,s=0;s<o.length;s++){for(var l=o[s],c=!1,u=0;u<3;u++){var h=i[u],f=l[h],p=e[h+\"axis\"].r2fraction(f);if(p<0||p>1){c=!0;break}}c?t.fullLayout._infolayer.select(\".annotation-\"+t.id+'[data-index=\"'+s+'\"]').remove():(l._pdata=a(t.glplot.cameraParams,[e.xaxis.r2l(l.x)*r[0],e.yaxis.r2l(l.y)*r[1],e.zaxis.r2l(l.z)*r[2]]),n(t.graphDiv,l,s,t.id,l._xa,l._ya))}}},{\"../../plots/gl3d/project\":816,\"../annotations/draw\":583}],590:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\");e.exports={moduleType:\"component\",name:\"annotations3d\",schema:{subplots:{scene:{annotations:t(\"./attributes\")}}},layoutAttributes:t(\"./attributes\"),handleDefaults:t(\"./defaults\"),includeBasePlot:function(t,e){var r=n.subplotsRegistry.gl3d;if(!r)return;for(var i=r.attrRegex,o=Object.keys(t),s=0;s<o.length;s++){var l=o[s];i.test(l)&&(t[l].annotations||[]).length&&(a.pushUnique(e._basePlotModules,r),a.pushUnique(e._subplots.gl3d,l))}},convert:t(\"./convert\"),draw:t(\"./draw\")}},{\"../../lib\":719,\"../../registry\":848,\"./attributes\":586,\"./convert\":587,\"./defaults\":588,\"./draw\":589}],591:[function(t,e,r){\"use strict\";e.exports=t(\"world-calendars/dist/main\"),t(\"world-calendars/dist/plus\"),t(\"world-calendars/dist/calendars/chinese\"),t(\"world-calendars/dist/calendars/coptic\"),t(\"world-calendars/dist/calendars/discworld\"),t(\"world-calendars/dist/calendars/ethiopian\"),t(\"world-calendars/dist/calendars/hebrew\"),t(\"world-calendars/dist/calendars/islamic\"),t(\"world-calendars/dist/calendars/julian\"),t(\"world-calendars/dist/calendars/mayan\"),t(\"world-calendars/dist/calendars/nanakshahi\"),t(\"world-calendars/dist/calendars/nepali\"),t(\"world-calendars/dist/calendars/persian\"),t(\"world-calendars/dist/calendars/taiwan\"),t(\"world-calendars/dist/calendars/thai\"),t(\"world-calendars/dist/calendars/ummalqura\")},{\"world-calendars/dist/calendars/chinese\":558,\"world-calendars/dist/calendars/coptic\":559,\"world-calendars/dist/calendars/discworld\":560,\"world-calendars/dist/calendars/ethiopian\":561,\"world-calendars/dist/calendars/hebrew\":562,\"world-calendars/dist/calendars/islamic\":563,\"world-calendars/dist/calendars/julian\":564,\"world-calendars/dist/calendars/mayan\":565,\"world-calendars/dist/calendars/nanakshahi\":566,\"world-calendars/dist/calendars/nepali\":567,\"world-calendars/dist/calendars/persian\":568,\"world-calendars/dist/calendars/taiwan\":569,\"world-calendars/dist/calendars/thai\":570,\"world-calendars/dist/calendars/ummalqura\":571,\"world-calendars/dist/main\":572,\"world-calendars/dist/plus\":573}],592:[function(t,e,r){\"use strict\";var n=t(\"./calendars\"),a=t(\"../../lib\"),i=t(\"../../constants/numerical\"),o=i.EPOCHJD,s=i.ONEDAY,l={valType:\"enumerated\",values:Object.keys(n.calendars),editType:\"calc\",dflt:\"gregorian\"},c=function(t,e,r,n){var i={};return i[r]=l,a.coerce(t,e,i,r,n)},u=\"##\",h={d:{0:\"dd\",\"-\":\"d\"},e:{0:\"d\",\"-\":\"d\"},a:{0:\"D\",\"-\":\"D\"},A:{0:\"DD\",\"-\":\"DD\"},j:{0:\"oo\",\"-\":\"o\"},W:{0:\"ww\",\"-\":\"w\"},m:{0:\"mm\",\"-\":\"m\"},b:{0:\"M\",\"-\":\"M\"},B:{0:\"MM\",\"-\":\"MM\"},y:{0:\"yy\",\"-\":\"yy\"},Y:{0:\"yyyy\",\"-\":\"yyyy\"},U:u,w:u,c:{0:\"D M d %X yyyy\",\"-\":\"D M d %X yyyy\"},x:{0:\"mm/dd/yyyy\",\"-\":\"mm/dd/yyyy\"}};var f={};function p(t){var e=f[t];return e||(e=f[t]=n.instance(t))}function d(t){return a.extendFlat({},l,{description:t})}function g(t){return\"Sets the calendar system to use with `\"+t+\"` date data.\"}var v={xcalendar:d(g(\"x\"))},m=a.extendFlat({},v,{ycalendar:d(g(\"y\"))}),y=a.extendFlat({},m,{zcalendar:d(g(\"z\"))}),x=d([\"Sets the calendar system to use for `range` and `tick0`\",\"if this is a date axis. This does not set the calendar for\",\"interpreting data on this axis, that's specified in the trace\",\"or via the global `layout.calendar`\"].join(\" \"));e.exports={moduleType:\"component\",name:\"calendars\",schema:{traces:{scatter:m,bar:m,box:m,heatmap:m,contour:m,histogram:m,histogram2d:m,histogram2dcontour:m,scatter3d:y,surface:y,mesh3d:y,scattergl:m,ohlc:v,candlestick:v},layout:{calendar:d([\"Sets the default calendar system to use for interpreting and\",\"displaying dates throughout the plot.\"].join(\" \"))},subplots:{xaxis:{calendar:x},yaxis:{calendar:x},scene:{xaxis:{calendar:x},yaxis:{calendar:x},zaxis:{calendar:x}},polar:{radialaxis:{calendar:x}}},transforms:{filter:{valuecalendar:d([\"Sets the calendar system to use for `value`, if it is a date.\"].join(\" \")),targetcalendar:d([\"Sets the calendar system to use for `target`, if it is an\",\"array of dates. If `target` is a string (eg *x*) we use the\",\"corresponding trace attribute (eg `xcalendar`) if it exists,\",\"even if `targetcalendar` is provided.\"].join(\" \"))}}},layoutAttributes:l,handleDefaults:c,handleTraceDefaults:function(t,e,r,n){for(var a=0;a<r.length;a++)c(t,e,r[a]+\"calendar\",n.calendar)},CANONICAL_SUNDAY:{chinese:\"2000-01-02\",coptic:\"2000-01-03\",discworld:\"2000-01-03\",ethiopian:\"2000-01-05\",hebrew:\"5000-01-01\",islamic:\"1000-01-02\",julian:\"2000-01-03\",mayan:\"5000-01-01\",nanakshahi:\"1000-01-05\",nepali:\"2000-01-05\",persian:\"1000-01-01\",jalali:\"1000-01-01\",taiwan:\"1000-01-04\",thai:\"2000-01-04\",ummalqura:\"1400-01-06\"},CANONICAL_TICK:{chinese:\"2000-01-01\",coptic:\"2000-01-01\",discworld:\"2000-01-01\",ethiopian:\"2000-01-01\",hebrew:\"5000-01-01\",islamic:\"1000-01-01\",julian:\"2000-01-01\",mayan:\"5000-01-01\",nanakshahi:\"1000-01-01\",nepali:\"2000-01-01\",persian:\"1000-01-01\",jalali:\"1000-01-01\",taiwan:\"1000-01-01\",thai:\"2000-01-01\",ummalqura:\"1400-01-01\"},DFLTRANGE:{chinese:[\"2000-01-01\",\"2001-01-01\"],coptic:[\"1700-01-01\",\"1701-01-01\"],discworld:[\"1800-01-01\",\"1801-01-01\"],ethiopian:[\"2000-01-01\",\"2001-01-01\"],hebrew:[\"5700-01-01\",\"5701-01-01\"],islamic:[\"1400-01-01\",\"1401-01-01\"],julian:[\"2000-01-01\",\"2001-01-01\"],mayan:[\"5200-01-01\",\"5201-01-01\"],nanakshahi:[\"0500-01-01\",\"0501-01-01\"],nepali:[\"2000-01-01\",\"2001-01-01\"],persian:[\"1400-01-01\",\"1401-01-01\"],jalali:[\"1400-01-01\",\"1401-01-01\"],taiwan:[\"0100-01-01\",\"0101-01-01\"],thai:[\"2500-01-01\",\"2501-01-01\"],ummalqura:[\"1400-01-01\",\"1401-01-01\"]},getCal:p,worldCalFmt:function(t,e,r){for(var n,a,i,l,c,f=Math.floor((e+.05)/s)+o,d=p(r).fromJD(f),g=0;-1!==(g=t.indexOf(\"%\",g));)\"0\"===(n=t.charAt(g+1))||\"-\"===n||\"_\"===n?(i=3,a=t.charAt(g+2),\"_\"===n&&(n=\"-\")):(a=n,n=\"0\",i=2),(l=h[a])?(c=l===u?u:d.formatDate(l[n]),t=t.substr(0,g)+c+t.substr(g+i),g+=c.length):g+=i;return t}}},{\"../../constants/numerical\":695,\"../../lib\":719,\"./calendars\":591}],593:[function(t,e,r){\"use strict\";r.defaults=[\"#1f77b4\",\"#ff7f0e\",\"#2ca02c\",\"#d62728\",\"#9467bd\",\"#8c564b\",\"#e377c2\",\"#7f7f7f\",\"#bcbd22\",\"#17becf\"],r.defaultLine=\"#444\",r.lightLine=\"#eee\",r.background=\"#fff\",r.borderLine=\"#BEC8D9\",r.lightFraction=1e3/11},{}],594:[function(t,e,r){\"use strict\";var n=t(\"tinycolor2\"),a=t(\"fast-isnumeric\"),i=e.exports={},o=t(\"./attributes\");i.defaults=o.defaults;var s=i.defaultLine=o.defaultLine;i.lightLine=o.lightLine;var l=i.background=o.background;function c(t){if(a(t)||\"string\"!=typeof t)return t;var e=t.trim();if(\"rgb\"!==e.substr(0,3))return t;var r=e.match(/^rgba?\\s*\\(([^()]*)\\)$/);if(!r)return t;var n=r[1].trim().split(/\\s*[\\s,]\\s*/),i=\"a\"===e.charAt(3)&&4===n.length;if(!i&&3!==n.length)return t;for(var o=0;o<n.length;o++){if(!n[o].length)return t;if(n[o]=Number(n[o]),!(n[o]>=0))return t;if(3===o)n[o]>1&&(n[o]=1);else if(n[o]>=1)return t}var s=Math.round(255*n[0])+\", \"+Math.round(255*n[1])+\", \"+Math.round(255*n[2]);return i?\"rgba(\"+s+\", \"+n[3]+\")\":\"rgb(\"+s+\")\"}i.tinyRGB=function(t){var e=t.toRgb();return\"rgb(\"+Math.round(e.r)+\", \"+Math.round(e.g)+\", \"+Math.round(e.b)+\")\"},i.rgb=function(t){return i.tinyRGB(n(t))},i.opacity=function(t){return t?n(t).getAlpha():0},i.addOpacity=function(t,e){var r=n(t).toRgb();return\"rgba(\"+Math.round(r.r)+\", \"+Math.round(r.g)+\", \"+Math.round(r.b)+\", \"+e+\")\"},i.combine=function(t,e){var r=n(t).toRgb();if(1===r.a)return n(t).toRgbString();var a=n(e||l).toRgb(),i=1===a.a?a:{r:255*(1-a.a)+a.r*a.a,g:255*(1-a.a)+a.g*a.a,b:255*(1-a.a)+a.b*a.a},o={r:i.r*(1-r.a)+r.r*r.a,g:i.g*(1-r.a)+r.g*r.a,b:i.b*(1-r.a)+r.b*r.a};return n(o).toRgbString()},i.contrast=function(t,e,r){var a=n(t);return 1!==a.getAlpha()&&(a=n(i.combine(t,l))),(a.isDark()?e?a.lighten(e):l:r?a.darken(r):s).toString()},i.stroke=function(t,e){var r=n(e);t.style({stroke:i.tinyRGB(r),\"stroke-opacity\":r.getAlpha()})},i.fill=function(t,e){var r=n(e);t.style({fill:i.tinyRGB(r),\"fill-opacity\":r.getAlpha()})},i.clean=function(t){if(t&&\"object\"==typeof t){var e,r,n,a,o=Object.keys(t);for(e=0;e<o.length;e++)if(a=t[n=o[e]],\"color\"===n.substr(n.length-5))if(Array.isArray(a))for(r=0;r<a.length;r++)a[r]=c(a[r]);else t[n]=c(a);else if(\"colorscale\"===n.substr(n.length-10)&&Array.isArray(a))for(r=0;r<a.length;r++)Array.isArray(a[r])&&(a[r][1]=c(a[r][1]));else if(Array.isArray(a)){var s=a[0];if(!Array.isArray(s)&&s&&\"object\"==typeof s)for(r=0;r<a.length;r++)i.clean(a[r])}else a&&\"object\"==typeof a&&i.clean(a)}}},{\"./attributes\":593,\"fast-isnumeric\":226,tinycolor2:538}],595:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/layout_attributes\"),a=t(\"../../plots/font_attributes\"),i=t(\"../../lib/extend\").extendFlat,o=t(\"../../plot_api/edit_types\").overrideAll;e.exports=o({thicknessmode:{valType:\"enumerated\",values:[\"fraction\",\"pixels\"],dflt:\"pixels\"},thickness:{valType:\"number\",min:0,dflt:30},lenmode:{valType:\"enumerated\",values:[\"fraction\",\"pixels\"],dflt:\"fraction\"},len:{valType:\"number\",min:0,dflt:1},x:{valType:\"number\",dflt:1.02,min:-2,max:3},xanchor:{valType:\"enumerated\",values:[\"left\",\"center\",\"right\"],dflt:\"left\"},xpad:{valType:\"number\",min:0,dflt:10},y:{valType:\"number\",dflt:.5,min:-2,max:3},yanchor:{valType:\"enumerated\",values:[\"top\",\"middle\",\"bottom\"],dflt:\"middle\"},ypad:{valType:\"number\",min:0,dflt:10},outlinecolor:n.linecolor,outlinewidth:n.linewidth,bordercolor:n.linecolor,borderwidth:{valType:\"number\",min:0,dflt:0},bgcolor:{valType:\"color\",dflt:\"rgba(0,0,0,0)\"},tickmode:n.tickmode,nticks:n.nticks,tick0:n.tick0,dtick:n.dtick,tickvals:n.tickvals,ticktext:n.ticktext,ticks:i({},n.ticks,{dflt:\"\"}),ticklen:n.ticklen,tickwidth:n.tickwidth,tickcolor:n.tickcolor,showticklabels:n.showticklabels,tickfont:a({}),tickangle:n.tickangle,tickformat:n.tickformat,tickformatstops:n.tickformatstops,tickprefix:n.tickprefix,showtickprefix:n.showtickprefix,ticksuffix:n.ticksuffix,showticksuffix:n.showticksuffix,separatethousands:n.separatethousands,exponentformat:n.exponentformat,showexponent:n.showexponent,title:{text:{valType:\"string\"},font:a({}),side:{valType:\"enumerated\",values:[\"right\",\"top\",\"bottom\"],dflt:\"top\"}},_deprecated:{title:{valType:\"string\"},titlefont:a({}),titleside:{valType:\"enumerated\",values:[\"right\",\"top\",\"bottom\"],dflt:\"top\"}}},\"colorbars\",\"from-root\")},{\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../../plots/cartesian/layout_attributes\":779,\"../../plots/font_attributes\":793}],596:[function(t,e,r){\"use strict\";e.exports={cn:{colorbar:\"colorbar\",cbbg:\"cbbg\",cbfill:\"cbfill\",cbfills:\"cbfills\",cbline:\"cbline\",cblines:\"cblines\",cbaxis:\"cbaxis\",cbtitleunshift:\"cbtitleunshift\",cbtitle:\"cbtitle\",cboutline:\"cboutline\",crisp:\"crisp\",jsPlaceholder:\"js-placeholder\"}}},{}],597:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plot_api/plot_template\"),i=t(\"../../plots/cartesian/tick_value_defaults\"),o=t(\"../../plots/cartesian/tick_mark_defaults\"),s=t(\"../../plots/cartesian/tick_label_defaults\"),l=t(\"./attributes\");e.exports=function(t,e,r){var c=a.newContainer(e,\"colorbar\"),u=t.colorbar||{};function h(t,e){return n.coerce(u,c,l,t,e)}var f=h(\"thicknessmode\");h(\"thickness\",\"fraction\"===f?30/(r.width-r.margin.l-r.margin.r):30);var p=h(\"lenmode\");h(\"len\",\"fraction\"===p?1:r.height-r.margin.t-r.margin.b),h(\"x\"),h(\"xanchor\"),h(\"xpad\"),h(\"y\"),h(\"yanchor\"),h(\"ypad\"),n.noneOrAll(u,c,[\"x\",\"y\"]),h(\"outlinecolor\"),h(\"outlinewidth\"),h(\"bordercolor\"),h(\"borderwidth\"),h(\"bgcolor\"),i(u,c,h,\"linear\");var d={outerTicks:!1,font:r.font};s(u,c,h,\"linear\",d),o(u,c,h,\"linear\",d),h(\"title.text\",r._dfltTitle.colorbar),n.coerceFont(h,\"title.font\",r.font),h(\"title.side\")}},{\"../../lib\":719,\"../../plot_api/plot_template\":757,\"../../plots/cartesian/tick_label_defaults\":786,\"../../plots/cartesian/tick_mark_defaults\":787,\"../../plots/cartesian/tick_value_defaults\":788,\"./attributes\":595}],598:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"tinycolor2\"),i=t(\"../../plots/plots\"),o=t(\"../../registry\"),s=t(\"../../plots/cartesian/axes\"),l=t(\"../dragelement\"),c=t(\"../../lib\"),u=t(\"../../lib/extend\").extendFlat,h=t(\"../../lib/setcursor\"),f=t(\"../drawing\"),p=t(\"../color\"),d=t(\"../titles\"),g=t(\"../../lib/svg_text_utils\"),v=t(\"../colorscale/helpers\").flipScale,m=t(\"../../plots/cartesian/axis_defaults\"),y=t(\"../../plots/cartesian/position_defaults\"),x=t(\"../../plots/cartesian/layout_attributes\"),b=t(\"../../constants/alignment\"),_=b.LINE_SPACING,w=b.FROM_TL,k=b.FROM_BR,T=t(\"./constants\").cn;e.exports={draw:function(t){var e=t._fullLayout._infolayer.selectAll(\"g.\"+T.colorbar).data(function(t){var e,r,n,a,i=t._fullLayout,o=t.calcdata,s=[];function l(t){return u(t,{_fillcolor:null,_line:{color:null,width:null,dash:null},_levels:{start:null,end:null,size:null},_filllevels:null,_fillgradient:null,_zrange:null})}function c(){\"function\"==typeof a.calc?a.calc(t,n,e):(e._fillgradient=r.reversescale?v(r.colorscale):r.colorscale,e._zrange=[r[a.min],r[a.max]])}for(var h=0;h<o.length;h++){var f=o[h],p=(n=f[0].trace)._module.colorbar;if(!0===n.visible&&p)for(var d=Array.isArray(p),g=d?p:[p],m=0;m<g.length;m++){var y=(a=g[m]).container;(r=y?n[y]:n)&&r.showscale&&((e=l(r.colorbar))._id=\"cb\"+n.uid+(d&&y?\"-\"+y:\"\"),e._traceIndex=n.index,e._propPrefix=(y?y+\".\":\"\")+\"colorbar.\",e._meta=n._meta,c(),s.push(e))}}for(var x in i._colorAxes)if((r=i[x]).showscale){var b=i._colorAxes[x];(e=l(r.colorbar))._id=\"cb\"+x,e._propPrefix=x+\".colorbar.\",e._meta=i._meta,a={min:\"cmin\",max:\"cmax\"},\"heatmap\"!==b[0]&&(n=b[1],a.calc=n._module.colorbar.calc),c(),s.push(e)}return s}(t),function(t){return t._id});e.enter().append(\"g\").attr(\"class\",function(t){return t._id}).classed(T.colorbar,!0),e.each(function(e){var r=n.select(this);c.ensureSingle(r,\"rect\",T.cbbg),c.ensureSingle(r,\"g\",T.cbfills),c.ensureSingle(r,\"g\",T.cblines),c.ensureSingle(r,\"g\",T.cbaxis,function(t){t.classed(T.crisp,!0)}),c.ensureSingle(r,\"g\",T.cbtitleunshift,function(t){t.append(\"g\").classed(T.cbtitle,!0)}),c.ensureSingle(r,\"rect\",T.cboutline);var v=function(t,e,r){var o=r._fullLayout,l=o._size,h=e._fillcolor,v=e._line,b=e.title,A=b.side,M=e._zrange||n.extent((\"function\"==typeof h?h:v.color).domain()),S=\"function\"==typeof v.color?v.color:function(){return v.color},E=\"function\"==typeof h?h:function(){return h},C=e._levels,L=function(t,e,r){var n,a,i=e._levels,o=[],s=[],l=i.end+i.size/100,c=i.size,u=1.001*r[0]-.001*r[1],h=1.001*r[1]-.001*r[0];for(a=0;a<1e5&&(n=i.start+a*c,!(c>0?n>=l:n<=l));a++)n>u&&n<h&&o.push(n);if(e._fillgradient)s=[0];else if(\"function\"==typeof e._fillcolor){var f=e._filllevels;if(f)for(l=f.end+f.size/100,c=f.size,a=0;a<1e5&&(n=f.start+a*c,!(c>0?n>=l:n<=l));a++)n>r[0]&&n<r[1]&&s.push(n);else(s=o.map(function(t){return t-i.size/2})).push(s[s.length-1]+i.size)}else e._fillcolor&&\"string\"==typeof e._fillcolor&&(s=[0]);return i.size<0&&(o.reverse(),s.reverse()),{line:o,fill:s}}(0,e,M),P=L.fill,O=L.line,I=Math.round(e.thickness*(\"fraction\"===e.thicknessmode?l.w:1)),z=I/l.w,D=Math.round(e.len*(\"fraction\"===e.lenmode?l.h:1)),R=D/l.h,F=e.xpad/l.w,B=(e.borderwidth+e.outlinewidth)/2,N=e.ypad/l.h,j=Math.round(e.x*l.w+e.xpad),V=e.x-z*({middle:.5,right:1}[e.xanchor]||0),U=e.y+R*(({top:-.5,bottom:.5}[e.yanchor]||0)-.5),q=Math.round(l.h*(1-U)),H=q-D;e._lenFrac=R,e._thickFrac=z,e._xLeftFrac=V,e._yBottomFrac=U;var G=e._axis=function(t,e,r){var n=t._fullLayout,a={type:\"linear\",range:r,tickmode:e.tickmode,nticks:e.nticks,tick0:e.tick0,dtick:e.dtick,tickvals:e.tickvals,ticktext:e.ticktext,ticks:e.ticks,ticklen:e.ticklen,tickwidth:e.tickwidth,tickcolor:e.tickcolor,showticklabels:e.showticklabels,tickfont:e.tickfont,tickangle:e.tickangle,tickformat:e.tickformat,exponentformat:e.exponentformat,separatethousands:e.separatethousands,showexponent:e.showexponent,showtickprefix:e.showtickprefix,tickprefix:e.tickprefix,showticksuffix:e.showticksuffix,ticksuffix:e.ticksuffix,title:e.title,showline:!0,anchor:\"free\",side:\"right\",position:1},i={type:\"linear\",_id:\"y\"+e._id},o={letter:\"y\",font:n.font,noHover:!0,noTickson:!0,calendar:n.calendar};function s(t,e){return c.coerce(a,i,x,t,e)}return m(a,i,s,o,n),y(a,i,s,o),i}(r,e,M);if(G.position=e.x+F+z,-1!==[\"top\",\"bottom\"].indexOf(A)&&(G.title.side=A,G.titlex=e.x+F,G.titley=U+(\"top\"===b.side?R-N:N)),v.color&&\"auto\"===e.tickmode){G.tickmode=\"linear\",G.tick0=C.start;var Y=C.size,W=c.constrain((q-H)/50,4,15)+1,X=(M[1]-M[0])/((e.nticks||W)*Y);if(X>1){var Z=Math.pow(10,Math.floor(Math.log(X)/Math.LN10));Y*=Z*c.roundUp(X/Z,[2,5,10]),(Math.abs(C.start)/C.size+1e-6)%1<2e-6&&(G.tick0=0)}G.dtick=Y}G.domain=[U+N,U+R-N],G.setScale(),t.attr(\"transform\",\"translate(\"+Math.round(l.l)+\",\"+Math.round(l.t)+\")\");var J,K=t.select(\".\"+T.cbtitleunshift).attr(\"transform\",\"translate(-\"+Math.round(l.l)+\",-\"+Math.round(l.t)+\")\"),Q=t.select(\".\"+T.cbaxis),$=0;function tt(n,a){var i={propContainer:G,propName:e._propPrefix+\"title\",traceIndex:e._traceIndex,_meta:e._meta,placeholder:o._dfltTitle.colorbar,containerGroup:t.select(\".\"+T.cbtitle)},s=\"h\"===n.charAt(0)?n.substr(1):\"h\"+n;t.selectAll(\".\"+s+\",.\"+s+\"-math-group\").remove(),d.draw(r,n,u(i,a||{}))}return c.syncOrAsync([i.previousPromises,function(){if(-1!==[\"top\",\"bottom\"].indexOf(A)){var t,r=l.l+(e.x+F)*l.w,n=G.title.font.size;t=\"top\"===A?(1-(U+R-N))*l.h+l.t+3+.75*n:(1-(U+N))*l.h+l.t-3-.25*n,tt(G._id+\"title\",{attributes:{x:r,y:t,\"text-anchor\":\"start\"}})}},function(){if(-1!==[\"top\",\"bottom\"].indexOf(A)){var i=t.select(\".\"+T.cbtitle),o=i.select(\"text\"),u=[-e.outlinewidth/2,e.outlinewidth/2],h=i.select(\".h\"+G._id+\"title-math-group\").node(),p=15.6;if(o.node()&&(p=parseInt(o.node().style.fontSize,10)*_),h?($=f.bBox(h).height)>p&&(u[1]-=($-p)/2):o.node()&&!o.classed(T.jsPlaceholder)&&($=f.bBox(o.node()).height),$){if($+=5,\"top\"===A)G.domain[1]-=$/l.h,u[1]*=-1;else{G.domain[0]+=$/l.h;var d=g.lineCount(o);u[1]+=(1-d)*p}i.attr(\"transform\",\"translate(\"+u+\")\"),G.setScale()}}t.selectAll(\".\"+T.cbfills+\",.\"+T.cblines).attr(\"transform\",\"translate(0,\"+Math.round(l.h*(1-G.domain[1]))+\")\"),Q.attr(\"transform\",\"translate(0,\"+Math.round(-l.t)+\")\");var m=t.select(\".\"+T.cbfills).selectAll(\"rect.\"+T.cbfill).data(P);m.enter().append(\"rect\").classed(T.cbfill,!0).style(\"stroke\",\"none\"),m.exit().remove();var y=M.map(G.c2p).map(Math.round).sort(function(t,e){return t-e});m.each(function(t,i){var o=[0===i?M[0]:(P[i]+P[i-1])/2,i===P.length-1?M[1]:(P[i]+P[i+1])/2].map(G.c2p).map(Math.round);o[1]=c.constrain(o[1]+(o[1]>o[0])?1:-1,y[0],y[1]);var s=n.select(this).attr({x:j,width:Math.max(I,2),y:n.min(o),height:Math.max(n.max(o)-n.min(o),2)});if(e._fillgradient)f.gradient(s,r,e._id,\"vertical\",e._fillgradient,\"fill\");else{var l=E(t).replace(\"e-\",\"\");s.attr(\"fill\",a(l).toHexString())}});var x=t.select(\".\"+T.cblines).selectAll(\"path.\"+T.cbline).data(v.color&&v.width?O:[]);x.enter().append(\"path\").classed(T.cbline,!0),x.exit().remove(),x.each(function(t){n.select(this).attr(\"d\",\"M\"+j+\",\"+(Math.round(G.c2p(t))+v.width/2%1)+\"h\"+I).call(f.lineGroupStyle,v.width,S(t),v.dash)}),Q.selectAll(\"g.\"+G._id+\"tick,path\").remove();var b=j+I+(e.outlinewidth||0)/2-(\"outside\"===e.ticks?1:0),w=s.calcTicks(G),k=s.makeTransFn(G),C=s.getTickSigns(G)[2];return s.drawTicks(r,G,{vals:\"inside\"===G.ticks?s.clipEnds(G,w):w,layer:Q,path:s.makeTickPath(G,b,C),transFn:k}),s.drawLabels(r,G,{vals:w,layer:Q,transFn:k,labelFns:s.makeLabelFns(G,b)})},function(){if(-1===[\"top\",\"bottom\"].indexOf(A)){var t=G.title.font.size,e=G._offset+G._length/2,a=l.l+(G.position||0)*l.w+(\"right\"===G.side?10+t*(G.showticklabels?1:.5):-10-t*(G.showticklabels?.5:0));tt(\"h\"+G._id+\"title\",{avoid:{selection:n.select(r).selectAll(\"g.\"+G._id+\"tick\"),side:A,offsetLeft:l.l,offsetTop:0,maxShift:o.width},attributes:{x:a,y:e,\"text-anchor\":\"middle\"},transform:{rotate:\"-90\",offset:0}})}},i.previousPromises,function(){var n=I+e.outlinewidth/2+f.bBox(Q.node()).width;if((J=K.select(\"text\")).node()&&!J.classed(T.jsPlaceholder)){var a,o=K.select(\".h\"+G._id+\"title-math-group\").node();a=o&&-1!==[\"top\",\"bottom\"].indexOf(A)?f.bBox(o).width:f.bBox(K.node()).right-j-l.l,n=Math.max(n,a)}var s=2*e.xpad+n+e.borderwidth+e.outlinewidth/2,c=q-H;t.select(\".\"+T.cbbg).attr({x:j-e.xpad-(e.borderwidth+e.outlinewidth)/2,y:H-B,width:Math.max(s,2),height:Math.max(c+2*B,2)}).call(p.fill,e.bgcolor).call(p.stroke,e.bordercolor).style(\"stroke-width\",e.borderwidth),t.selectAll(\".\"+T.cboutline).attr({x:j,y:H+e.ypad+(\"top\"===A?$:0),width:Math.max(I,2),height:Math.max(c-2*e.ypad-$,2)}).call(p.stroke,e.outlinecolor).style({fill:\"none\",\"stroke-width\":e.outlinewidth});var u=({center:.5,right:1}[e.xanchor]||0)*s;t.attr(\"transform\",\"translate(\"+(l.l-u)+\",\"+l.t+\")\");var h={},d=w[e.yanchor],g=k[e.yanchor];\"pixels\"===e.lenmode?(h.y=e.y,h.t=c*d,h.b=c*g):(h.t=h.b=0,h.yt=e.y+e.len*d,h.yb=e.y-e.len*g);var v=w[e.xanchor],m=k[e.xanchor];if(\"pixels\"===e.thicknessmode)h.x=e.x,h.l=s*v,h.r=s*m;else{var y=s-I;h.l=y*v,h.r=y*m,h.xl=e.x-e.thickness*v,h.xr=e.x+e.thickness*m}i.autoMargin(r,e._id,h)}],r)}(r,e,t);v&&v.then&&(t._promises||[]).push(v),t._context.edits.colorbarPosition&&function(t,e,r){var n,a,i,s=r._fullLayout._size;l.init({element:t.node(),gd:r,prepFn:function(){n=t.attr(\"transform\"),h(t)},moveFn:function(r,o){t.attr(\"transform\",n+\" translate(\"+r+\",\"+o+\")\"),a=l.align(e._xLeftFrac+r/s.w,e._thickFrac,0,1,e.xanchor),i=l.align(e._yBottomFrac-o/s.h,e._lenFrac,0,1,e.yanchor);var c=l.getCursor(a,i,e.xanchor,e.yanchor);h(t,c)},doneFn:function(){if(h(t),void 0!==a&&void 0!==i){var n={};n[e._propPrefix+\"x\"]=a,n[e._propPrefix+\"y\"]=i,void 0!==e._traceIndex?o.call(\"_guiRestyle\",r,n,e._traceIndex):o.call(\"_guiRelayout\",r,n)}}})}(r,e,t)}),e.exit().each(function(e){i.autoMargin(t,e._id)}).remove(),e.order()}}},{\"../../constants/alignment\":688,\"../../lib\":719,\"../../lib/extend\":710,\"../../lib/setcursor\":739,\"../../lib/svg_text_utils\":743,\"../../plots/cartesian/axes\":767,\"../../plots/cartesian/axis_defaults\":769,\"../../plots/cartesian/layout_attributes\":779,\"../../plots/cartesian/position_defaults\":782,\"../../plots/plots\":828,\"../../registry\":848,\"../color\":594,\"../colorscale/helpers\":605,\"../dragelement\":612,\"../drawing\":615,\"../titles\":681,\"./constants\":596,d3:164,tinycolor2:538}],599:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t){return n.isPlainObject(t.colorbar)}},{\"../../lib\":719}],600:[function(t,e,r){\"use strict\";e.exports={moduleType:\"component\",name:\"colorbar\",attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),draw:t(\"./draw\").draw,hasColorbar:t(\"./has_colorbar\")}},{\"./attributes\":595,\"./defaults\":597,\"./draw\":598,\"./has_colorbar\":599}],601:[function(t,e,r){\"use strict\";var n=t(\"../colorbar/attributes\"),a=t(\"../../lib/regex\").counter,i=t(\"./scales.js\").scales;Object.keys(i);function o(t){return\"`\"+t+\"`\"}e.exports=function(t,e){t=t||\"\";var r,s=(e=e||{}).cLetter||\"c\",l=(\"onlyIfNumerical\"in e?e.onlyIfNumerical:Boolean(t),\"noScale\"in e?e.noScale:\"marker.line\"===t),c=\"showScaleDflt\"in e?e.showScaleDflt:\"z\"===s,u=\"string\"==typeof e.colorscaleDflt?i[e.colorscaleDflt]:null,h=e.editTypeOverride||\"\",f=t?t+\".\":\"\";\"colorAttr\"in e?(r=e.colorAttr,e.colorAttr):o(f+(r={z:\"z\",c:\"color\"}[s]));var p=s+\"auto\",d=s+\"min\",g=s+\"max\",v=s+\"mid\",m=(o(f+p),o(f+d),o(f+g),{});m[d]=m[g]=void 0;var y={};y[p]=!1;var x={};return\"color\"===r&&(x.color={valType:\"color\",arrayOk:!0,editType:h||\"style\"},e.anim&&(x.color.anim=!0)),x[p]={valType:\"boolean\",dflt:!0,editType:\"calc\",impliedEdits:m},x[d]={valType:\"number\",dflt:null,editType:h||\"plot\",impliedEdits:y},x[g]={valType:\"number\",dflt:null,editType:h||\"plot\",impliedEdits:y},x[v]={valType:\"number\",dflt:null,editType:\"calc\",impliedEdits:m},x.colorscale={valType:\"colorscale\",editType:\"calc\",dflt:u,impliedEdits:{autocolorscale:!1}},x.autocolorscale={valType:\"boolean\",dflt:!1!==e.autoColorDflt,editType:\"calc\",impliedEdits:{colorscale:void 0}},x.reversescale={valType:\"boolean\",dflt:!1,editType:\"plot\"},l||(x.showscale={valType:\"boolean\",dflt:c,editType:\"calc\"},x.colorbar=n),e.noColorAxis||(x.coloraxis={valType:\"subplotid\",regex:a(\"coloraxis\"),dflt:null,editType:\"calc\"}),x}},{\"../../lib/regex\":735,\"../colorbar/attributes\":595,\"./scales.js\":609}],602:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\"),i=t(\"./helpers\").extractOpts;e.exports=function(t,e,r){var o,s=t._fullLayout,l=r.vals,c=r.containerStr,u=c?a.nestedProperty(e,c).get():e,h=i(u),f=!1!==h.auto,p=h.min,d=h.max,g=h.mid,v=function(){return a.aggNums(Math.min,null,l)},m=function(){return a.aggNums(Math.max,null,l)};(void 0===p?p=v():f&&(p=u._colorAx&&n(p)?Math.min(p,v()):v()),void 0===d?d=m():f&&(d=u._colorAx&&n(d)?Math.max(d,m()):m()),f&&void 0!==g&&(d-g>g-p?p=g-(d-g):d-g<g-p&&(d=g+(g-p))),p===d&&(p-=.5,d+=.5),h._sync(\"min\",p),h._sync(\"max\",d),h.autocolorscale)&&(o=p*d<0?s.colorscale.diverging:p>=0?s.colorscale.sequential:s.colorscale.sequentialminus,h._sync(\"colorscale\",o))}},{\"../../lib\":719,\"./helpers\":605,\"fast-isnumeric\":226}],603:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./helpers\").hasColorscale,i=t(\"./helpers\").extractOpts;e.exports=function(t,e){function r(t,e){var r=t[\"_\"+e];void 0!==r&&(t[e]=r)}function o(t,a){var o=a.container?n.nestedProperty(t,a.container).get():t;if(o)if(o.coloraxis)o._colorAx=e[o.coloraxis];else{var s=i(o),l=s.auto;(l||void 0===s.min)&&r(o,a.min),(l||void 0===s.max)&&r(o,a.max),s.autocolorscale&&r(o,\"colorscale\")}}for(var s=0;s<t.length;s++){var l=t[s],c=l._module.colorbar;if(c)if(Array.isArray(c))for(var u=0;u<c.length;u++)o(l,c[u]);else o(l,c);a(l,\"marker.line\")&&o(l,{container:\"marker.line\",min:\"cmin\",max:\"cmax\"})}for(var h in e._colorAxes)o(e[h],{min:\"cmin\",max:\"cmax\"})}},{\"../../lib\":719,\"./helpers\":605}],604:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\"),i=t(\"../colorbar/has_colorbar\"),o=t(\"../colorbar/defaults\"),s=t(\"./scales\").isValid,l=t(\"../../registry\").traceIs;function c(t,e){var r=e.slice(0,e.length-1);return e?a.nestedProperty(t,r).get()||{}:t}e.exports=function t(e,r,u,h,f){var p=f.prefix,d=f.cLetter,g=\"_module\"in r,v=c(e,p),m=c(r,p),y=c(r._template||{},p)||{},x=function(){return delete e.coloraxis,delete r.coloraxis,t(e,r,u,h,f)};if(g){var b=u._colorAxes||{},_=h(p+\"coloraxis\");if(_){var w=l(r,\"contour\")&&a.nestedProperty(r,\"contours.coloring\").get()||\"heatmap\",k=b[_];return void(k?(k[2].push(x),k[0]!==w&&(k[0]=!1,a.warn([\"Ignoring coloraxis:\",_,\"setting\",\"as it is linked to incompatible colorscales.\"].join(\" \")))):b[_]=[w,r,[x]])}}var T=v[d+\"min\"],A=v[d+\"max\"],M=n(T)&&n(A)&&T<A;h(p+d+\"auto\",!M)?h(p+d+\"mid\"):(h(p+d+\"min\"),h(p+d+\"max\"));var S,E,C=v.colorscale,L=y.colorscale;(void 0!==C&&(S=!s(C)),void 0!==L&&(S=!s(L)),h(p+\"autocolorscale\",S),h(p+\"colorscale\"),h(p+\"reversescale\"),\"marker.line.\"!==p)&&(p&&g&&(E=i(v)),h(p+\"showscale\",E)&&o(v,m,u))}},{\"../../lib\":719,\"../../registry\":848,\"../colorbar/defaults\":597,\"../colorbar/has_colorbar\":599,\"./scales\":609,\"fast-isnumeric\":226}],605:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"tinycolor2\"),i=t(\"fast-isnumeric\"),o=t(\"../../lib\"),s=t(\"../color\"),l=t(\"./scales\").isValid;var c=[\"showscale\",\"autocolorscale\",\"colorscale\",\"reversescale\",\"colorbar\"],u=[\"min\",\"max\",\"mid\",\"auto\"];function h(t){var e,r,n,a=t._colorAx,i=a||t,o={};for(r=0;r<c.length;r++)o[n=c[r]]=i[n];if(a)for(e=\"c\",r=0;r<u.length;r++)o[n=u[r]]=i[\"c\"+n];else{var s;for(r=0;r<u.length;r++)(s=\"c\"+(n=u[r]))in i?o[n]=i[s]:(s=\"z\"+n)in i&&(o[n]=i[s]);e=s.charAt(0)}return o._sync=function(t,r){var n=-1!==u.indexOf(t)?e+t:t;i[n]=i[\"_\"+n]=r},o}function f(t){for(var e=h(t),r=e.min,n=e.max,a=e.reversescale?p(e.colorscale):e.colorscale,i=a.length,o=new Array(i),s=new Array(i),l=0;l<i;l++){var c=a[l];o[l]=r+c[0]*(n-r),s[l]=c[1]}return{domain:o,range:s}}function p(t){for(var e=t.length,r=new Array(e),n=e-1,a=0;n>=0;n--,a++){var i=t[n];r[a]=[1-i[0],i[1]]}return r}function d(t,e){e=e||{};for(var r=t.domain,o=t.range,l=o.length,c=new Array(l),u=0;u<l;u++){var h=a(o[u]).toRgb();c[u]=[h.r,h.g,h.b,h.a]}var f,p=n.scale.linear().domain(r).range(c).clamp(!0),d=e.noNumericCheck,v=e.returnArray;return(f=d&&v?p:d?function(t){return g(p(t))}:v?function(t){return i(t)?p(t):a(t).isValid()?t:s.defaultLine}:function(t){return i(t)?g(p(t)):a(t).isValid()?t:s.defaultLine}).domain=p.domain,f.range=function(){return o},f}function g(t){var e={r:t[0],g:t[1],b:t[2],a:t[3]};return a(e).toRgbString()}e.exports={hasColorscale:function(t,e,r){var n=e?o.nestedProperty(t,e).get()||{}:t,a=n[r||\"color\"],s=!1;if(o.isArrayOrTypedArray(a))for(var c=0;c<a.length;c++)if(i(a[c])){s=!0;break}return o.isPlainObject(n)&&(s||!0===n.showscale||i(n.cmin)&&i(n.cmax)||l(n.colorscale)||o.isPlainObject(n.colorbar))},extractOpts:h,extractScale:f,flipScale:p,makeColorScaleFunc:d,makeColorScaleFuncFromTrace:function(t,e){return d(f(t),e)}}},{\"../../lib\":719,\"../color\":594,\"./scales\":609,d3:164,\"fast-isnumeric\":226,tinycolor2:538}],606:[function(t,e,r){\"use strict\";var n=t(\"./scales\"),a=t(\"./helpers\");e.exports={moduleType:\"component\",name:\"colorscale\",attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyLayoutDefaults:t(\"./layout_defaults\"),handleDefaults:t(\"./defaults\"),crossTraceDefaults:t(\"./cross_trace_defaults\"),calc:t(\"./calc\"),scales:n.scales,defaultScale:n.defaultScale,getScale:n.get,isValidScale:n.isValid,hasColorscale:a.hasColorscale,extractOpts:a.extractOpts,extractScale:a.extractScale,flipScale:a.flipScale,makeColorScaleFunc:a.makeColorScaleFunc,makeColorScaleFuncFromTrace:a.makeColorScaleFuncFromTrace}},{\"./attributes\":601,\"./calc\":602,\"./cross_trace_defaults\":603,\"./defaults\":604,\"./helpers\":605,\"./layout_attributes\":607,\"./layout_defaults\":608,\"./scales\":609}],607:[function(t,e,r){\"use strict\";var n=t(\"../../lib/extend\").extendFlat,a=t(\"./attributes\"),i=t(\"./scales\").scales;e.exports={editType:\"calc\",colorscale:{editType:\"calc\",sequential:{valType:\"colorscale\",dflt:i.Reds,editType:\"calc\"},sequentialminus:{valType:\"colorscale\",dflt:i.Blues,editType:\"calc\"},diverging:{valType:\"colorscale\",dflt:i.RdBu,editType:\"calc\"}},coloraxis:n({_isSubplotObj:!0,editType:\"calc\"},a(\"\",{colorAttr:\"corresponding trace color array(s)\",noColorAxis:!0,showScaleDflt:!0}))}},{\"../../lib/extend\":710,\"./attributes\":601,\"./scales\":609}],608:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plot_api/plot_template\"),i=t(\"./layout_attributes\"),o=t(\"./defaults\");e.exports=function(t,e){function r(r,a){return n.coerce(t,e,i,r,a)}r(\"colorscale.sequential\"),r(\"colorscale.sequentialminus\"),r(\"colorscale.diverging\");var s,l,c=e._colorAxes;function u(t,e){return n.coerce(s,l,i.coloraxis,t,e)}for(var h in c){var f=c[h];if(f[0])s=t[h]||{},(l=a.newContainer(e,h,\"coloraxis\"))._name=h,o(s,l,e,u,{prefix:\"\",cLetter:\"c\"});else{for(var p=0;p<f[2].length;p++)f[2][p]();delete e._colorAxes[h]}}}},{\"../../lib\":719,\"../../plot_api/plot_template\":757,\"./defaults\":604,\"./layout_attributes\":607}],609:[function(t,e,r){\"use strict\";var n=t(\"tinycolor2\"),a={Greys:[[0,\"rgb(0,0,0)\"],[1,\"rgb(255,255,255)\"]],YlGnBu:[[0,\"rgb(8,29,88)\"],[.125,\"rgb(37,52,148)\"],[.25,\"rgb(34,94,168)\"],[.375,\"rgb(29,145,192)\"],[.5,\"rgb(65,182,196)\"],[.625,\"rgb(127,205,187)\"],[.75,\"rgb(199,233,180)\"],[.875,\"rgb(237,248,217)\"],[1,\"rgb(255,255,217)\"]],Greens:[[0,\"rgb(0,68,27)\"],[.125,\"rgb(0,109,44)\"],[.25,\"rgb(35,139,69)\"],[.375,\"rgb(65,171,93)\"],[.5,\"rgb(116,196,118)\"],[.625,\"rgb(161,217,155)\"],[.75,\"rgb(199,233,192)\"],[.875,\"rgb(229,245,224)\"],[1,\"rgb(247,252,245)\"]],YlOrRd:[[0,\"rgb(128,0,38)\"],[.125,\"rgb(189,0,38)\"],[.25,\"rgb(227,26,28)\"],[.375,\"rgb(252,78,42)\"],[.5,\"rgb(253,141,60)\"],[.625,\"rgb(254,178,76)\"],[.75,\"rgb(254,217,118)\"],[.875,\"rgb(255,237,160)\"],[1,\"rgb(255,255,204)\"]],Bluered:[[0,\"rgb(0,0,255)\"],[1,\"rgb(255,0,0)\"]],RdBu:[[0,\"rgb(5,10,172)\"],[.35,\"rgb(106,137,247)\"],[.5,\"rgb(190,190,190)\"],[.6,\"rgb(220,170,132)\"],[.7,\"rgb(230,145,90)\"],[1,\"rgb(178,10,28)\"]],Reds:[[0,\"rgb(220,220,220)\"],[.2,\"rgb(245,195,157)\"],[.4,\"rgb(245,160,105)\"],[1,\"rgb(178,10,28)\"]],Blues:[[0,\"rgb(5,10,172)\"],[.35,\"rgb(40,60,190)\"],[.5,\"rgb(70,100,245)\"],[.6,\"rgb(90,120,245)\"],[.7,\"rgb(106,137,247)\"],[1,\"rgb(220,220,220)\"]],Picnic:[[0,\"rgb(0,0,255)\"],[.1,\"rgb(51,153,255)\"],[.2,\"rgb(102,204,255)\"],[.3,\"rgb(153,204,255)\"],[.4,\"rgb(204,204,255)\"],[.5,\"rgb(255,255,255)\"],[.6,\"rgb(255,204,255)\"],[.7,\"rgb(255,153,255)\"],[.8,\"rgb(255,102,204)\"],[.9,\"rgb(255,102,102)\"],[1,\"rgb(255,0,0)\"]],Rainbow:[[0,\"rgb(150,0,90)\"],[.125,\"rgb(0,0,200)\"],[.25,\"rgb(0,25,255)\"],[.375,\"rgb(0,152,255)\"],[.5,\"rgb(44,255,150)\"],[.625,\"rgb(151,255,0)\"],[.75,\"rgb(255,234,0)\"],[.875,\"rgb(255,111,0)\"],[1,\"rgb(255,0,0)\"]],Portland:[[0,\"rgb(12,51,131)\"],[.25,\"rgb(10,136,186)\"],[.5,\"rgb(242,211,56)\"],[.75,\"rgb(242,143,56)\"],[1,\"rgb(217,30,30)\"]],Jet:[[0,\"rgb(0,0,131)\"],[.125,\"rgb(0,60,170)\"],[.375,\"rgb(5,255,255)\"],[.625,\"rgb(255,255,0)\"],[.875,\"rgb(250,0,0)\"],[1,\"rgb(128,0,0)\"]],Hot:[[0,\"rgb(0,0,0)\"],[.3,\"rgb(230,0,0)\"],[.6,\"rgb(255,210,0)\"],[1,\"rgb(255,255,255)\"]],Blackbody:[[0,\"rgb(0,0,0)\"],[.2,\"rgb(230,0,0)\"],[.4,\"rgb(230,210,0)\"],[.7,\"rgb(255,255,255)\"],[1,\"rgb(160,200,255)\"]],Earth:[[0,\"rgb(0,0,130)\"],[.1,\"rgb(0,180,180)\"],[.2,\"rgb(40,210,40)\"],[.4,\"rgb(230,230,50)\"],[.6,\"rgb(120,70,20)\"],[1,\"rgb(255,255,255)\"]],Electric:[[0,\"rgb(0,0,0)\"],[.15,\"rgb(30,0,100)\"],[.4,\"rgb(120,0,100)\"],[.6,\"rgb(160,90,0)\"],[.8,\"rgb(230,200,0)\"],[1,\"rgb(255,250,220)\"]],Viridis:[[0,\"#440154\"],[.06274509803921569,\"#48186a\"],[.12549019607843137,\"#472d7b\"],[.18823529411764706,\"#424086\"],[.25098039215686274,\"#3b528b\"],[.3137254901960784,\"#33638d\"],[.3764705882352941,\"#2c728e\"],[.4392156862745098,\"#26828e\"],[.5019607843137255,\"#21918c\"],[.5647058823529412,\"#1fa088\"],[.6274509803921569,\"#28ae80\"],[.6901960784313725,\"#3fbc73\"],[.7529411764705882,\"#5ec962\"],[.8156862745098039,\"#84d44b\"],[.8784313725490196,\"#addc30\"],[.9411764705882353,\"#d8e219\"],[1,\"#fde725\"]],Cividis:[[0,\"rgb(0,32,76)\"],[.058824,\"rgb(0,42,102)\"],[.117647,\"rgb(0,52,110)\"],[.176471,\"rgb(39,63,108)\"],[.235294,\"rgb(60,74,107)\"],[.294118,\"rgb(76,85,107)\"],[.352941,\"rgb(91,95,109)\"],[.411765,\"rgb(104,106,112)\"],[.470588,\"rgb(117,117,117)\"],[.529412,\"rgb(131,129,120)\"],[.588235,\"rgb(146,140,120)\"],[.647059,\"rgb(161,152,118)\"],[.705882,\"rgb(176,165,114)\"],[.764706,\"rgb(192,177,109)\"],[.823529,\"rgb(209,191,102)\"],[.882353,\"rgb(225,204,92)\"],[.941176,\"rgb(243,219,79)\"],[1,\"rgb(255,233,69)\"]]},i=a.RdBu;function o(t){var e=0;if(!Array.isArray(t)||t.length<2)return!1;if(!t[0]||!t[t.length-1])return!1;if(0!=+t[0][0]||1!=+t[t.length-1][0])return!1;for(var r=0;r<t.length;r++){var a=t[r];if(2!==a.length||+a[0]<e||!n(a[1]).isValid())return!1;e=+a[0]}return!0}e.exports={scales:a,defaultScale:i,get:function(t,e){if(e||(e=i),!t)return e;function r(){try{t=a[t]||JSON.parse(t)}catch(r){t=e}}return\"string\"==typeof t&&(r(),\"string\"==typeof t&&r()),o(t)?t:e},isValid:function(t){return void 0!==a[t]||o(t)}}},{tinycolor2:538}],610:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,a){var i=(t-r)/(n-r),o=i+e/(n-r),s=(i+o)/2;return\"left\"===a||\"bottom\"===a?i:\"center\"===a||\"middle\"===a?s:\"right\"===a||\"top\"===a?o:i<2/3-s?i:o>4/3-s?o:s}},{}],611:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=[[\"sw-resize\",\"s-resize\",\"se-resize\"],[\"w-resize\",\"move\",\"e-resize\"],[\"nw-resize\",\"n-resize\",\"ne-resize\"]];e.exports=function(t,e,r,i){return t=\"left\"===r?0:\"center\"===r?1:\"right\"===r?2:n.constrain(Math.floor(3*t),0,2),e=\"bottom\"===i?0:\"middle\"===i?1:\"top\"===i?2:n.constrain(Math.floor(3*e),0,2),a[e][t]}},{\"../../lib\":719}],612:[function(t,e,r){\"use strict\";var n=t(\"mouse-event-offset\"),a=t(\"has-hover\"),i=t(\"has-passive-events\"),o=t(\"../../lib\").removeElement,s=t(\"../../plots/cartesian/constants\"),l=e.exports={};l.align=t(\"./align\"),l.getCursor=t(\"./cursor\");var c=t(\"./unhover\");function u(){var t=document.createElement(\"div\");t.className=\"dragcover\";var e=t.style;return e.position=\"fixed\",e.left=0,e.right=0,e.top=0,e.bottom=0,e.zIndex=999999999,e.background=\"none\",document.body.appendChild(t),t}function h(t){return n(t.changedTouches?t.changedTouches[0]:t,document.body)}l.unhover=c.wrapped,l.unhoverRaw=c.raw,l.init=function(t){var e,r,n,c,f,p,d,g,v=t.gd,m=1,y=v._context.doubleClickDelay,x=t.element;v._mouseDownTime||(v._mouseDownTime=0),x.style.pointerEvents=\"all\",x.onmousedown=_,i?(x._ontouchstart&&x.removeEventListener(\"touchstart\",x._ontouchstart),x._ontouchstart=_,x.addEventListener(\"touchstart\",_,{passive:!1})):x.ontouchstart=_;var b=t.clampFn||function(t,e,r){return Math.abs(t)<r&&(t=0),Math.abs(e)<r&&(e=0),[t,e]};function _(i){v._dragged=!1,v._dragging=!0;var o=h(i);e=o[0],r=o[1],d=i.target,p=i,g=2===i.buttons||i.ctrlKey,\"undefined\"==typeof i.clientX&&\"undefined\"==typeof i.clientY&&(i.clientX=e,i.clientY=r),(n=(new Date).getTime())-v._mouseDownTime<y?m+=1:(m=1,v._mouseDownTime=n),t.prepFn&&t.prepFn(i,e,r),a&&!g?(f=u()).style.cursor=window.getComputedStyle(x).cursor:a||(f=document,c=window.getComputedStyle(document.documentElement).cursor,document.documentElement.style.cursor=window.getComputedStyle(x).cursor),document.addEventListener(\"mouseup\",k),document.addEventListener(\"touchend\",k),!1!==t.dragmode&&(i.preventDefault(),document.addEventListener(\"mousemove\",w),document.addEventListener(\"touchmove\",w,{passive:!1}))}function w(n){n.preventDefault();var a=h(n),i=t.minDrag||s.MINDRAG,o=b(a[0]-e,a[1]-r,i),c=o[0],u=o[1];(c||u)&&(v._dragged=!0,l.unhover(v)),v._dragged&&t.moveFn&&!g&&(v._dragdata={element:x,dx:c,dy:u},t.moveFn(c,u))}function k(e){if(delete v._dragdata,!1!==t.dragmode&&(e.preventDefault(),document.removeEventListener(\"mousemove\",w),document.removeEventListener(\"touchmove\",w)),document.removeEventListener(\"mouseup\",k),document.removeEventListener(\"touchend\",k),a?o(f):c&&(f.documentElement.style.cursor=c,c=null),v._dragging){if(v._dragging=!1,(new Date).getTime()-v._mouseDownTime>y&&(m=Math.max(m-1,1)),v._dragged)t.doneFn&&t.doneFn();else if(t.clickFn&&t.clickFn(m,p),!g){var r;try{r=new MouseEvent(\"click\",e)}catch(t){var n=h(e);(r=document.createEvent(\"MouseEvents\")).initMouseEvent(\"click\",e.bubbles,e.cancelable,e.view,e.detail,e.screenX,e.screenY,n[0],n[1],e.ctrlKey,e.altKey,e.shiftKey,e.metaKey,e.button,e.relatedTarget)}d.dispatchEvent(r)}v._dragging=!1,v._dragged=!1}else v._dragged=!1}},l.coverSlip=u},{\"../../lib\":719,\"../../plots/cartesian/constants\":773,\"./align\":610,\"./cursor\":611,\"./unhover\":613,\"has-hover\":411,\"has-passive-events\":412,\"mouse-event-offset\":437}],613:[function(t,e,r){\"use strict\";var n=t(\"../../lib/events\"),a=t(\"../../lib/throttle\"),i=t(\"../../lib/dom\").getGraphDiv,o=t(\"../fx/constants\"),s=e.exports={};s.wrapped=function(t,e,r){(t=i(t))._fullLayout&&a.clear(t._fullLayout._uid+o.HOVERID),s.raw(t,e,r)},s.raw=function(t,e){var r=t._fullLayout,a=t._hoverdata;e||(e={}),e.target&&!1===n.triggerHandler(t,\"plotly_beforehover\",e)||(r._hoverlayer.selectAll(\"g\").remove(),r._hoverlayer.selectAll(\"line\").remove(),r._hoverlayer.selectAll(\"circle\").remove(),t._hoverdata=void 0,e.target&&a&&t.emit(\"plotly_unhover\",{event:e,points:a}))}},{\"../../lib/dom\":708,\"../../lib/events\":709,\"../../lib/throttle\":744,\"../fx/constants\":627}],614:[function(t,e,r){\"use strict\";r.dash={valType:\"string\",values:[\"solid\",\"dot\",\"dash\",\"longdash\",\"dashdot\",\"longdashdot\"],dflt:\"solid\",editType:\"style\"}},{}],615:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"fast-isnumeric\"),i=t(\"tinycolor2\"),o=t(\"../../registry\"),s=t(\"../color\"),l=t(\"../colorscale\"),c=t(\"../../lib\"),u=t(\"../../lib/svg_text_utils\"),h=t(\"../../constants/xmlns_namespaces\"),f=t(\"../../constants/alignment\").LINE_SPACING,p=t(\"../../constants/interactions\").DESELECTDIM,d=t(\"../../traces/scatter/subtypes\"),g=t(\"../../traces/scatter/make_bubble_size_func\"),v=e.exports={},m=t(\"../fx/helpers\").appendArrayPointValue;v.font=function(t,e,r,n){c.isPlainObject(e)&&(n=e.color,r=e.size,e=e.family),e&&t.style(\"font-family\",e),r+1&&t.style(\"font-size\",r+\"px\"),n&&t.call(s.fill,n)},v.setPosition=function(t,e,r){t.attr(\"x\",e).attr(\"y\",r)},v.setSize=function(t,e,r){t.attr(\"width\",e).attr(\"height\",r)},v.setRect=function(t,e,r,n,a){t.call(v.setPosition,e,r).call(v.setSize,n,a)},v.translatePoint=function(t,e,r,n){var i=r.c2p(t.x),o=n.c2p(t.y);return!!(a(i)&&a(o)&&e.node())&&(\"text\"===e.node().nodeName?e.attr(\"x\",i).attr(\"y\",o):e.attr(\"transform\",\"translate(\"+i+\",\"+o+\")\"),!0)},v.translatePoints=function(t,e,r){t.each(function(t){var a=n.select(this);v.translatePoint(t,a,e,r)})},v.hideOutsideRangePoint=function(t,e,r,n,a,i){e.attr(\"display\",r.isPtWithinRange(t,a)&&n.isPtWithinRange(t,i)?null:\"none\")},v.hideOutsideRangePoints=function(t,e){if(e._hasClipOnAxisFalse){var r=e.xaxis,a=e.yaxis;t.each(function(e){var i=e[0].trace,s=i.xcalendar,l=i.ycalendar,c=o.traceIs(i,\"bar-like\")?\".bartext\":\".point,.textpoint\";t.selectAll(c).each(function(t){v.hideOutsideRangePoint(t,n.select(this),r,a,s,l)})})}},v.crispRound=function(t,e,r){return e&&a(e)?t._context.staticPlot?e:e<1?1:Math.round(e):r||0},v.singleLineStyle=function(t,e,r,n,a){e.style(\"fill\",\"none\");var i=(((t||[])[0]||{}).trace||{}).line||{},o=r||i.width||0,l=a||i.dash||\"\";s.stroke(e,n||i.color),v.dashLine(e,l,o)},v.lineGroupStyle=function(t,e,r,a){t.style(\"fill\",\"none\").each(function(t){var i=(((t||[])[0]||{}).trace||{}).line||{},o=e||i.width||0,l=a||i.dash||\"\";n.select(this).call(s.stroke,r||i.color).call(v.dashLine,l,o)})},v.dashLine=function(t,e,r){r=+r||0,e=v.dashStyle(e,r),t.style({\"stroke-dasharray\":e,\"stroke-width\":r+\"px\"})},v.dashStyle=function(t,e){e=+e||1;var r=Math.max(e,3);return\"solid\"===t?t=\"\":\"dot\"===t?t=r+\"px,\"+r+\"px\":\"dash\"===t?t=3*r+\"px,\"+3*r+\"px\":\"longdash\"===t?t=5*r+\"px,\"+5*r+\"px\":\"dashdot\"===t?t=3*r+\"px,\"+r+\"px,\"+r+\"px,\"+r+\"px\":\"longdashdot\"===t&&(t=5*r+\"px,\"+2*r+\"px,\"+r+\"px,\"+2*r+\"px\"),t},v.singleFillStyle=function(t){var e=(((n.select(t.node()).data()[0]||[])[0]||{}).trace||{}).fillcolor;e&&t.call(s.fill,e)},v.fillGroupStyle=function(t){t.style(\"stroke-width\",0).each(function(t){var e=n.select(this);t[0].trace&&e.call(s.fill,t[0].trace.fillcolor)})};var y=t(\"./symbol_defs\");v.symbolNames=[],v.symbolFuncs=[],v.symbolNeedLines={},v.symbolNoDot={},v.symbolNoFill={},v.symbolList=[],Object.keys(y).forEach(function(t){var e=y[t];v.symbolList=v.symbolList.concat([e.n,t,e.n+100,t+\"-open\"]),v.symbolNames[e.n]=t,v.symbolFuncs[e.n]=e.f,e.needLine&&(v.symbolNeedLines[e.n]=!0),e.noDot?v.symbolNoDot[e.n]=!0:v.symbolList=v.symbolList.concat([e.n+200,t+\"-dot\",e.n+300,t+\"-open-dot\"]),e.noFill&&(v.symbolNoFill[e.n]=!0)});var x=v.symbolNames.length,b=\"M0,0.5L0.5,0L0,-0.5L-0.5,0Z\";function _(t,e){var r=t%100;return v.symbolFuncs[r](e)+(t>=200?b:\"\")}v.symbolNumber=function(t){if(\"string\"==typeof t){var e=0;t.indexOf(\"-open\")>0&&(e=100,t=t.replace(\"-open\",\"\")),t.indexOf(\"-dot\")>0&&(e+=200,t=t.replace(\"-dot\",\"\")),(t=v.symbolNames.indexOf(t))>=0&&(t+=e)}return t%100>=x||t>=400?0:Math.floor(Math.max(t,0))};var w={x1:1,x2:0,y1:0,y2:0},k={x1:0,x2:0,y1:1,y2:0},T=n.format(\"~.1f\"),A={radial:{node:\"radialGradient\"},radialreversed:{node:\"radialGradient\",reversed:!0},horizontal:{node:\"linearGradient\",attrs:w},horizontalreversed:{node:\"linearGradient\",attrs:w,reversed:!0},vertical:{node:\"linearGradient\",attrs:k},verticalreversed:{node:\"linearGradient\",attrs:k,reversed:!0}};v.gradient=function(t,e,r,a,o,l){for(var u=o.length,h=A[a],f=new Array(u),p=0;p<u;p++)h.reversed?f[u-1-p]=[T(100*(1-o[p][0])),o[p][1]]:f[p]=[T(100*o[p][0]),o[p][1]];var d=\"g\"+e._fullLayout._uid+\"-\"+r,g=e._fullLayout._defs.select(\".gradients\").selectAll(\"#\"+d).data([a+f.join(\";\")],c.identity);g.exit().remove(),g.enter().append(h.node).each(function(){var t=n.select(this);h.attrs&&t.attr(h.attrs),t.attr(\"id\",d);var e=t.selectAll(\"stop\").data(f);e.exit().remove(),e.enter().append(\"stop\"),e.each(function(t){var e=i(t[1]);n.select(this).attr({offset:t[0]+\"%\",\"stop-color\":s.tinyRGB(e),\"stop-opacity\":e.getAlpha()})})}),t.style(l,D(d,e)).style(l+\"-opacity\",null)},v.initGradients=function(t){c.ensureSingle(t._fullLayout._defs,\"g\",\"gradients\").selectAll(\"linearGradient,radialGradient\").remove()},v.pointStyle=function(t,e,r){if(t.size()){var a=v.makePointStyleFns(e);t.each(function(t){v.singlePointStyle(t,n.select(this),e,a,r)})}},v.singlePointStyle=function(t,e,r,n,a){var i=r.marker,o=i.line;if(e.style(\"opacity\",n.selectedOpacityFn?n.selectedOpacityFn(t):void 0===t.mo?i.opacity:t.mo),n.ms2mrc){var l;l=\"various\"===t.ms||\"various\"===i.size?3:n.ms2mrc(t.ms),t.mrc=l,n.selectedSizeFn&&(l=t.mrc=n.selectedSizeFn(t));var u=v.symbolNumber(t.mx||i.symbol)||0;t.om=u%200>=100,e.attr(\"d\",_(u,l))}var h,f,p,d=!1;if(t.so)p=o.outlierwidth,f=o.outliercolor,h=i.outliercolor;else{var g=(o||{}).width;p=(t.mlw+1||g+1||(t.trace?(t.trace.marker.line||{}).width:0)+1)-1||0,f=\"mlc\"in t?t.mlcc=n.lineScale(t.mlc):c.isArrayOrTypedArray(o.color)?s.defaultLine:o.color,c.isArrayOrTypedArray(i.color)&&(h=s.defaultLine,d=!0),h=\"mc\"in t?t.mcc=n.markerScale(t.mc):i.color||\"rgba(0,0,0,0)\",n.selectedColorFn&&(h=n.selectedColorFn(t))}if(t.om)e.call(s.stroke,h).style({\"stroke-width\":(p||1)+\"px\",fill:\"none\"});else{e.style(\"stroke-width\",(t.isBlank?0:p)+\"px\");var m=i.gradient,y=t.mgt;if(y?d=!0:y=m&&m.type,Array.isArray(y)&&(y=y[0],A[y]||(y=0)),y&&\"none\"!==y){var x=t.mgc;x?d=!0:x=m.color;var b=r.uid;d&&(b+=\"-\"+t.i),v.gradient(e,a,b,y,[[0,x],[1,h]],\"fill\")}else s.fill(e,h);p&&s.stroke(e,f)}},v.makePointStyleFns=function(t){var e={},r=t.marker;return e.markerScale=v.tryColorscale(r,\"\"),e.lineScale=v.tryColorscale(r,\"line\"),o.traceIs(t,\"symbols\")&&(e.ms2mrc=d.isBubble(t)?g(t):function(){return(r.size||6)/2}),t.selectedpoints&&c.extendFlat(e,v.makeSelectedPointStyleFns(t)),e},v.makeSelectedPointStyleFns=function(t){var e={},r=t.selected||{},n=t.unselected||{},a=t.marker||{},i=r.marker||{},s=n.marker||{},l=a.opacity,u=i.opacity,h=s.opacity,f=void 0!==u,d=void 0!==h;(c.isArrayOrTypedArray(l)||f||d)&&(e.selectedOpacityFn=function(t){var e=void 0===t.mo?a.opacity:t.mo;return t.selected?f?u:e:d?h:p*e});var g=a.color,v=i.color,m=s.color;(v||m)&&(e.selectedColorFn=function(t){var e=t.mcc||g;return t.selected?v||e:m||e});var y=a.size,x=i.size,b=s.size,_=void 0!==x,w=void 0!==b;return o.traceIs(t,\"symbols\")&&(_||w)&&(e.selectedSizeFn=function(t){var e=t.mrc||y/2;return t.selected?_?x/2:e:w?b/2:e}),e},v.makeSelectedTextStyleFns=function(t){var e={},r=t.selected||{},n=t.unselected||{},a=t.textfont||{},i=r.textfont||{},o=n.textfont||{},l=a.color,c=i.color,u=o.color;return e.selectedTextColorFn=function(t){var e=t.tc||l;return t.selected?c||e:u||(c?e:s.addOpacity(e,p))},e},v.selectedPointStyle=function(t,e){if(t.size()&&e.selectedpoints){var r=v.makeSelectedPointStyleFns(e),a=e.marker||{},i=[];r.selectedOpacityFn&&i.push(function(t,e){t.style(\"opacity\",r.selectedOpacityFn(e))}),r.selectedColorFn&&i.push(function(t,e){s.fill(t,r.selectedColorFn(e))}),r.selectedSizeFn&&i.push(function(t,e){var n=e.mx||a.symbol||0,i=r.selectedSizeFn(e);t.attr(\"d\",_(v.symbolNumber(n),i)),e.mrc2=i}),i.length&&t.each(function(t){for(var e=n.select(this),r=0;r<i.length;r++)i[r](e,t)})}},v.tryColorscale=function(t,e){var r=e?c.nestedProperty(t,e).get():t;if(r){var n=r.color;if((r.colorscale||r._colorAx)&&c.isArrayOrTypedArray(n))return l.makeColorScaleFuncFromTrace(r)}return c.identity};var M={start:1,end:-1,middle:0,bottom:1,top:-1};function S(t,e,r,a){var i=n.select(t.node().parentNode),o=-1!==e.indexOf(\"top\")?\"top\":-1!==e.indexOf(\"bottom\")?\"bottom\":\"middle\",s=-1!==e.indexOf(\"left\")?\"end\":-1!==e.indexOf(\"right\")?\"start\":\"middle\",l=a?a/.8+1:0,c=(u.lineCount(t)-1)*f+1,h=M[s]*l,p=.75*r+M[o]*l+(M[o]-1)*c*r/2;t.attr(\"text-anchor\",s),i.attr(\"transform\",\"translate(\"+h+\",\"+p+\")\")}function E(t,e){var r=t.ts||e.textfont.size;return a(r)&&r>0?r:0}v.textPointStyle=function(t,e,r,a){if(t.size()){var i;if(e.selectedpoints){var o=v.makeSelectedTextStyleFns(e);i=o.selectedTextColorFn}var s=e.texttemplate;a&&(s=!1),t.each(function(t){var a=n.select(this),o=c.extractOption(t,e,s?\"txt\":\"tx\",s?\"texttemplate\":\"text\");if(o||0===o){if(s){var l={};m(l,e,t.i),o=c.texttemplateString(o,{},r._fullLayout._d3locale,l,t,e._meta||{})}var h=t.tp||e.textposition,f=E(t,e),p=i?i(t):t.tc||e.textfont.color;a.call(v.font,t.tf||e.textfont.family,f,p).text(o).call(u.convertToTspans,r).call(S,h,f,t.mrc)}else a.remove()})}},v.selectedTextStyle=function(t,e){if(t.size()&&e.selectedpoints){var r=v.makeSelectedTextStyleFns(e);t.each(function(t){var a=n.select(this),i=r.selectedTextColorFn(t),o=t.tp||e.textposition,l=E(t,e);s.fill(a,i),S(a,o,l,t.mrc2||t.mrc)})}};var C=.5;function L(t,e,r,a){var i=t[0]-e[0],o=t[1]-e[1],s=r[0]-e[0],l=r[1]-e[1],c=Math.pow(i*i+o*o,C/2),u=Math.pow(s*s+l*l,C/2),h=(u*u*i-c*c*s)*a,f=(u*u*o-c*c*l)*a,p=3*u*(c+u),d=3*c*(c+u);return[[n.round(e[0]+(p&&h/p),2),n.round(e[1]+(p&&f/p),2)],[n.round(e[0]-(d&&h/d),2),n.round(e[1]-(d&&f/d),2)]]}v.smoothopen=function(t,e){if(t.length<3)return\"M\"+t.join(\"L\");var r,n=\"M\"+t[0],a=[];for(r=1;r<t.length-1;r++)a.push(L(t[r-1],t[r],t[r+1],e));for(n+=\"Q\"+a[0][0]+\" \"+t[1],r=2;r<t.length-1;r++)n+=\"C\"+a[r-2][1]+\" \"+a[r-1][0]+\" \"+t[r];return n+=\"Q\"+a[t.length-3][1]+\" \"+t[t.length-1]},v.smoothclosed=function(t,e){if(t.length<3)return\"M\"+t.join(\"L\")+\"Z\";var r,n=\"M\"+t[0],a=t.length-1,i=[L(t[a],t[0],t[1],e)];for(r=1;r<a;r++)i.push(L(t[r-1],t[r],t[r+1],e));for(i.push(L(t[a-1],t[a],t[0],e)),r=1;r<=a;r++)n+=\"C\"+i[r-1][1]+\" \"+i[r][0]+\" \"+t[r];return n+=\"C\"+i[a][1]+\" \"+i[0][0]+\" \"+t[0]+\"Z\"};var P={hv:function(t,e){return\"H\"+n.round(e[0],2)+\"V\"+n.round(e[1],2)},vh:function(t,e){return\"V\"+n.round(e[1],2)+\"H\"+n.round(e[0],2)},hvh:function(t,e){return\"H\"+n.round((t[0]+e[0])/2,2)+\"V\"+n.round(e[1],2)+\"H\"+n.round(e[0],2)},vhv:function(t,e){return\"V\"+n.round((t[1]+e[1])/2,2)+\"H\"+n.round(e[0],2)+\"V\"+n.round(e[1],2)}},O=function(t,e){return\"L\"+n.round(e[0],2)+\",\"+n.round(e[1],2)};v.steps=function(t){var e=P[t]||O;return function(t){for(var r=\"M\"+n.round(t[0][0],2)+\",\"+n.round(t[0][1],2),a=1;a<t.length;a++)r+=e(t[a-1],t[a]);return r}},v.makeTester=function(){var t=c.ensureSingleById(n.select(\"body\"),\"svg\",\"js-plotly-tester\",function(t){t.attr(h.svgAttrs).style({position:\"absolute\",left:\"-10000px\",top:\"-10000px\",width:\"9000px\",height:\"9000px\",\"z-index\":\"1\"})}),e=c.ensureSingle(t,\"path\",\"js-reference-point\",function(t){t.attr(\"d\",\"M0,0H1V1H0Z\").style({\"stroke-width\":0,fill:\"black\"})});v.tester=t,v.testref=e},v.savedBBoxes={};var I=0;function z(t){var e=t.getAttribute(\"data-unformatted\");if(null!==e)return e+t.getAttribute(\"data-math\")+t.getAttribute(\"text-anchor\")+t.getAttribute(\"style\")}function D(t,e){if(!t)return null;var r=e._context;return\"url('\"+(r._exportedPlot?\"\":r._baseUrl||\"\")+\"#\"+t+\"')\"}v.bBox=function(t,e,r){var a,i,o;if(r||(r=z(t)),r){if(a=v.savedBBoxes[r])return c.extendFlat({},a)}else if(1===t.childNodes.length){var s=t.childNodes[0];if(r=z(s)){var l=+s.getAttribute(\"x\")||0,h=+s.getAttribute(\"y\")||0,f=s.getAttribute(\"transform\");if(!f){var p=v.bBox(s,!1,r);return l&&(p.left+=l,p.right+=l),h&&(p.top+=h,p.bottom+=h),p}if(r+=\"~\"+l+\"~\"+h+\"~\"+f,a=v.savedBBoxes[r])return c.extendFlat({},a)}}e?i=t:(o=v.tester.node(),i=t.cloneNode(!0),o.appendChild(i)),n.select(i).attr(\"transform\",null).call(u.positionText,0,0);var d=i.getBoundingClientRect(),g=v.testref.node().getBoundingClientRect();e||o.removeChild(i);var m={height:d.height,width:d.width,left:d.left-g.left,top:d.top-g.top,right:d.right-g.left,bottom:d.bottom-g.top};return I>=1e4&&(v.savedBBoxes={},I=0),r&&(v.savedBBoxes[r]=m),I++,c.extendFlat({},m)},v.setClipUrl=function(t,e,r){t.attr(\"clip-path\",D(e,r))},v.getTranslate=function(t){var e=(t[t.attr?\"attr\":\"getAttribute\"](\"transform\")||\"\").replace(/.*\\btranslate\\((-?\\d*\\.?\\d*)[^-\\d]*(-?\\d*\\.?\\d*)[^\\d].*/,function(t,e,r){return[e,r].join(\" \")}).split(\" \");return{x:+e[0]||0,y:+e[1]||0}},v.setTranslate=function(t,e,r){var n=t.attr?\"attr\":\"getAttribute\",a=t.attr?\"attr\":\"setAttribute\",i=t[n](\"transform\")||\"\";return e=e||0,r=r||0,i=i.replace(/(\\btranslate\\(.*?\\);?)/,\"\").trim(),i=(i+=\" translate(\"+e+\", \"+r+\")\").trim(),t[a](\"transform\",i),i},v.getScale=function(t){var e=(t[t.attr?\"attr\":\"getAttribute\"](\"transform\")||\"\").replace(/.*\\bscale\\((\\d*\\.?\\d*)[^\\d]*(\\d*\\.?\\d*)[^\\d].*/,function(t,e,r){return[e,r].join(\" \")}).split(\" \");return{x:+e[0]||1,y:+e[1]||1}},v.setScale=function(t,e,r){var n=t.attr?\"attr\":\"getAttribute\",a=t.attr?\"attr\":\"setAttribute\",i=t[n](\"transform\")||\"\";return e=e||1,r=r||1,i=i.replace(/(\\bscale\\(.*?\\);?)/,\"\").trim(),i=(i+=\" scale(\"+e+\", \"+r+\")\").trim(),t[a](\"transform\",i),i};var R=/\\s*sc.*/;v.setPointGroupScale=function(t,e,r){if(e=e||1,r=r||1,t){var n=1===e&&1===r?\"\":\" scale(\"+e+\",\"+r+\")\";t.each(function(){var t=(this.getAttribute(\"transform\")||\"\").replace(R,\"\");t=(t+=n).trim(),this.setAttribute(\"transform\",t)})}};var F=/translate\\([^)]*\\)\\s*$/;v.setTextPointsScale=function(t,e,r){t&&t.each(function(){var t,a=n.select(this),i=a.select(\"text\");if(i.node()){var o=parseFloat(i.attr(\"x\")||0),s=parseFloat(i.attr(\"y\")||0),l=(a.attr(\"transform\")||\"\").match(F);t=1===e&&1===r?[]:[\"translate(\"+o+\",\"+s+\")\",\"scale(\"+e+\",\"+r+\")\",\"translate(\"+-o+\",\"+-s+\")\"],l&&t.push(l),a.attr(\"transform\",t.join(\" \"))}})}},{\"../../constants/alignment\":688,\"../../constants/interactions\":694,\"../../constants/xmlns_namespaces\":696,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../../registry\":848,\"../../traces/scatter/make_bubble_size_func\":1127,\"../../traces/scatter/subtypes\":1134,\"../color\":594,\"../colorscale\":606,\"../fx/helpers\":629,\"./symbol_defs\":616,d3:164,\"fast-isnumeric\":226,tinycolor2:538}],616:[function(t,e,r){\"use strict\";var n=t(\"d3\");e.exports={circle:{n:0,f:function(t){var e=n.round(t,2);return\"M\"+e+\",0A\"+e+\",\"+e+\" 0 1,1 0,-\"+e+\"A\"+e+\",\"+e+\" 0 0,1 \"+e+\",0Z\"}},square:{n:1,f:function(t){var e=n.round(t,2);return\"M\"+e+\",\"+e+\"H-\"+e+\"V-\"+e+\"H\"+e+\"Z\"}},diamond:{n:2,f:function(t){var e=n.round(1.3*t,2);return\"M\"+e+\",0L0,\"+e+\"L-\"+e+\",0L0,-\"+e+\"Z\"}},cross:{n:3,f:function(t){var e=n.round(.4*t,2),r=n.round(1.2*t,2);return\"M\"+r+\",\"+e+\"H\"+e+\"V\"+r+\"H-\"+e+\"V\"+e+\"H-\"+r+\"V-\"+e+\"H-\"+e+\"V-\"+r+\"H\"+e+\"V-\"+e+\"H\"+r+\"Z\"}},x:{n:4,f:function(t){var e=n.round(.8*t/Math.sqrt(2),2),r=\"l\"+e+\",\"+e,a=\"l\"+e+\",-\"+e,i=\"l-\"+e+\",-\"+e,o=\"l-\"+e+\",\"+e;return\"M0,\"+e+r+a+i+a+i+o+i+o+r+o+r+\"Z\"}},\"triangle-up\":{n:5,f:function(t){var e=n.round(2*t/Math.sqrt(3),2);return\"M-\"+e+\",\"+n.round(t/2,2)+\"H\"+e+\"L0,-\"+n.round(t,2)+\"Z\"}},\"triangle-down\":{n:6,f:function(t){var e=n.round(2*t/Math.sqrt(3),2);return\"M-\"+e+\",-\"+n.round(t/2,2)+\"H\"+e+\"L0,\"+n.round(t,2)+\"Z\"}},\"triangle-left\":{n:7,f:function(t){var e=n.round(2*t/Math.sqrt(3),2);return\"M\"+n.round(t/2,2)+\",-\"+e+\"V\"+e+\"L-\"+n.round(t,2)+\",0Z\"}},\"triangle-right\":{n:8,f:function(t){var e=n.round(2*t/Math.sqrt(3),2);return\"M-\"+n.round(t/2,2)+\",-\"+e+\"V\"+e+\"L\"+n.round(t,2)+\",0Z\"}},\"triangle-ne\":{n:9,f:function(t){var e=n.round(.6*t,2),r=n.round(1.2*t,2);return\"M-\"+r+\",-\"+e+\"H\"+e+\"V\"+r+\"Z\"}},\"triangle-se\":{n:10,f:function(t){var e=n.round(.6*t,2),r=n.round(1.2*t,2);return\"M\"+e+\",-\"+r+\"V\"+e+\"H-\"+r+\"Z\"}},\"triangle-sw\":{n:11,f:function(t){var e=n.round(.6*t,2),r=n.round(1.2*t,2);return\"M\"+r+\",\"+e+\"H-\"+e+\"V-\"+r+\"Z\"}},\"triangle-nw\":{n:12,f:function(t){var e=n.round(.6*t,2),r=n.round(1.2*t,2);return\"M-\"+e+\",\"+r+\"V-\"+e+\"H\"+r+\"Z\"}},pentagon:{n:13,f:function(t){var e=n.round(.951*t,2),r=n.round(.588*t,2),a=n.round(-t,2),i=n.round(-.309*t,2);return\"M\"+e+\",\"+i+\"L\"+r+\",\"+n.round(.809*t,2)+\"H-\"+r+\"L-\"+e+\",\"+i+\"L0,\"+a+\"Z\"}},hexagon:{n:14,f:function(t){var e=n.round(t,2),r=n.round(t/2,2),a=n.round(t*Math.sqrt(3)/2,2);return\"M\"+a+\",-\"+r+\"V\"+r+\"L0,\"+e+\"L-\"+a+\",\"+r+\"V-\"+r+\"L0,-\"+e+\"Z\"}},hexagon2:{n:15,f:function(t){var e=n.round(t,2),r=n.round(t/2,2),a=n.round(t*Math.sqrt(3)/2,2);return\"M-\"+r+\",\"+a+\"H\"+r+\"L\"+e+\",0L\"+r+\",-\"+a+\"H-\"+r+\"L-\"+e+\",0Z\"}},octagon:{n:16,f:function(t){var e=n.round(.924*t,2),r=n.round(.383*t,2);return\"M-\"+r+\",-\"+e+\"H\"+r+\"L\"+e+\",-\"+r+\"V\"+r+\"L\"+r+\",\"+e+\"H-\"+r+\"L-\"+e+\",\"+r+\"V-\"+r+\"Z\"}},star:{n:17,f:function(t){var e=1.4*t,r=n.round(.225*e,2),a=n.round(.951*e,2),i=n.round(.363*e,2),o=n.round(.588*e,2),s=n.round(-e,2),l=n.round(-.309*e,2),c=n.round(.118*e,2),u=n.round(.809*e,2);return\"M\"+r+\",\"+l+\"H\"+a+\"L\"+i+\",\"+c+\"L\"+o+\",\"+u+\"L0,\"+n.round(.382*e,2)+\"L-\"+o+\",\"+u+\"L-\"+i+\",\"+c+\"L-\"+a+\",\"+l+\"H-\"+r+\"L0,\"+s+\"Z\"}},hexagram:{n:18,f:function(t){var e=n.round(.66*t,2),r=n.round(.38*t,2),a=n.round(.76*t,2);return\"M-\"+a+\",0l-\"+r+\",-\"+e+\"h\"+a+\"l\"+r+\",-\"+e+\"l\"+r+\",\"+e+\"h\"+a+\"l-\"+r+\",\"+e+\"l\"+r+\",\"+e+\"h-\"+a+\"l-\"+r+\",\"+e+\"l-\"+r+\",-\"+e+\"h-\"+a+\"Z\"}},\"star-triangle-up\":{n:19,f:function(t){var e=n.round(t*Math.sqrt(3)*.8,2),r=n.round(.8*t,2),a=n.round(1.6*t,2),i=n.round(4*t,2),o=\"A \"+i+\",\"+i+\" 0 0 1 \";return\"M-\"+e+\",\"+r+o+e+\",\"+r+o+\"0,-\"+a+o+\"-\"+e+\",\"+r+\"Z\"}},\"star-triangle-down\":{n:20,f:function(t){var e=n.round(t*Math.sqrt(3)*.8,2),r=n.round(.8*t,2),a=n.round(1.6*t,2),i=n.round(4*t,2),o=\"A \"+i+\",\"+i+\" 0 0 1 \";return\"M\"+e+\",-\"+r+o+\"-\"+e+\",-\"+r+o+\"0,\"+a+o+e+\",-\"+r+\"Z\"}},\"star-square\":{n:21,f:function(t){var e=n.round(1.1*t,2),r=n.round(2*t,2),a=\"A \"+r+\",\"+r+\" 0 0 1 \";return\"M-\"+e+\",-\"+e+a+\"-\"+e+\",\"+e+a+e+\",\"+e+a+e+\",-\"+e+a+\"-\"+e+\",-\"+e+\"Z\"}},\"star-diamond\":{n:22,f:function(t){var e=n.round(1.4*t,2),r=n.round(1.9*t,2),a=\"A \"+r+\",\"+r+\" 0 0 1 \";return\"M-\"+e+\",0\"+a+\"0,\"+e+a+e+\",0\"+a+\"0,-\"+e+a+\"-\"+e+\",0Z\"}},\"diamond-tall\":{n:23,f:function(t){var e=n.round(.7*t,2),r=n.round(1.4*t,2);return\"M0,\"+r+\"L\"+e+\",0L0,-\"+r+\"L-\"+e+\",0Z\"}},\"diamond-wide\":{n:24,f:function(t){var e=n.round(1.4*t,2),r=n.round(.7*t,2);return\"M0,\"+r+\"L\"+e+\",0L0,-\"+r+\"L-\"+e+\",0Z\"}},hourglass:{n:25,f:function(t){var e=n.round(t,2);return\"M\"+e+\",\"+e+\"H-\"+e+\"L\"+e+\",-\"+e+\"H-\"+e+\"Z\"},noDot:!0},bowtie:{n:26,f:function(t){var e=n.round(t,2);return\"M\"+e+\",\"+e+\"V-\"+e+\"L-\"+e+\",\"+e+\"V-\"+e+\"Z\"},noDot:!0},\"circle-cross\":{n:27,f:function(t){var e=n.round(t,2);return\"M0,\"+e+\"V-\"+e+\"M\"+e+\",0H-\"+e+\"M\"+e+\",0A\"+e+\",\"+e+\" 0 1,1 0,-\"+e+\"A\"+e+\",\"+e+\" 0 0,1 \"+e+\",0Z\"},needLine:!0,noDot:!0},\"circle-x\":{n:28,f:function(t){var e=n.round(t,2),r=n.round(t/Math.sqrt(2),2);return\"M\"+r+\",\"+r+\"L-\"+r+\",-\"+r+\"M\"+r+\",-\"+r+\"L-\"+r+\",\"+r+\"M\"+e+\",0A\"+e+\",\"+e+\" 0 1,1 0,-\"+e+\"A\"+e+\",\"+e+\" 0 0,1 \"+e+\",0Z\"},needLine:!0,noDot:!0},\"square-cross\":{n:29,f:function(t){var e=n.round(t,2);return\"M0,\"+e+\"V-\"+e+\"M\"+e+\",0H-\"+e+\"M\"+e+\",\"+e+\"H-\"+e+\"V-\"+e+\"H\"+e+\"Z\"},needLine:!0,noDot:!0},\"square-x\":{n:30,f:function(t){var e=n.round(t,2);return\"M\"+e+\",\"+e+\"L-\"+e+\",-\"+e+\"M\"+e+\",-\"+e+\"L-\"+e+\",\"+e+\"M\"+e+\",\"+e+\"H-\"+e+\"V-\"+e+\"H\"+e+\"Z\"},needLine:!0,noDot:!0},\"diamond-cross\":{n:31,f:function(t){var e=n.round(1.3*t,2);return\"M\"+e+\",0L0,\"+e+\"L-\"+e+\",0L0,-\"+e+\"ZM0,-\"+e+\"V\"+e+\"M-\"+e+\",0H\"+e},needLine:!0,noDot:!0},\"diamond-x\":{n:32,f:function(t){var e=n.round(1.3*t,2),r=n.round(.65*t,2);return\"M\"+e+\",0L0,\"+e+\"L-\"+e+\",0L0,-\"+e+\"ZM-\"+r+\",-\"+r+\"L\"+r+\",\"+r+\"M-\"+r+\",\"+r+\"L\"+r+\",-\"+r},needLine:!0,noDot:!0},\"cross-thin\":{n:33,f:function(t){var e=n.round(1.4*t,2);return\"M0,\"+e+\"V-\"+e+\"M\"+e+\",0H-\"+e},needLine:!0,noDot:!0,noFill:!0},\"x-thin\":{n:34,f:function(t){var e=n.round(t,2);return\"M\"+e+\",\"+e+\"L-\"+e+\",-\"+e+\"M\"+e+\",-\"+e+\"L-\"+e+\",\"+e},needLine:!0,noDot:!0,noFill:!0},asterisk:{n:35,f:function(t){var e=n.round(1.2*t,2),r=n.round(.85*t,2);return\"M0,\"+e+\"V-\"+e+\"M\"+e+\",0H-\"+e+\"M\"+r+\",\"+r+\"L-\"+r+\",-\"+r+\"M\"+r+\",-\"+r+\"L-\"+r+\",\"+r},needLine:!0,noDot:!0,noFill:!0},hash:{n:36,f:function(t){var e=n.round(t/2,2),r=n.round(t,2);return\"M\"+e+\",\"+r+\"V-\"+r+\"m-\"+r+\",0V\"+r+\"M\"+r+\",\"+e+\"H-\"+r+\"m0,-\"+r+\"H\"+r},needLine:!0,noFill:!0},\"y-up\":{n:37,f:function(t){var e=n.round(1.2*t,2),r=n.round(1.6*t,2),a=n.round(.8*t,2);return\"M-\"+e+\",\"+a+\"L0,0M\"+e+\",\"+a+\"L0,0M0,-\"+r+\"L0,0\"},needLine:!0,noDot:!0,noFill:!0},\"y-down\":{n:38,f:function(t){var e=n.round(1.2*t,2),r=n.round(1.6*t,2),a=n.round(.8*t,2);return\"M-\"+e+\",-\"+a+\"L0,0M\"+e+\",-\"+a+\"L0,0M0,\"+r+\"L0,0\"},needLine:!0,noDot:!0,noFill:!0},\"y-left\":{n:39,f:function(t){var e=n.round(1.2*t,2),r=n.round(1.6*t,2),a=n.round(.8*t,2);return\"M\"+a+\",\"+e+\"L0,0M\"+a+\",-\"+e+\"L0,0M-\"+r+\",0L0,0\"},needLine:!0,noDot:!0,noFill:!0},\"y-right\":{n:40,f:function(t){var e=n.round(1.2*t,2),r=n.round(1.6*t,2),a=n.round(.8*t,2);return\"M-\"+a+\",\"+e+\"L0,0M-\"+a+\",-\"+e+\"L0,0M\"+r+\",0L0,0\"},needLine:!0,noDot:!0,noFill:!0},\"line-ew\":{n:41,f:function(t){var e=n.round(1.4*t,2);return\"M\"+e+\",0H-\"+e},needLine:!0,noDot:!0,noFill:!0},\"line-ns\":{n:42,f:function(t){var e=n.round(1.4*t,2);return\"M0,\"+e+\"V-\"+e},needLine:!0,noDot:!0,noFill:!0},\"line-ne\":{n:43,f:function(t){var e=n.round(t,2);return\"M\"+e+\",-\"+e+\"L-\"+e+\",\"+e},needLine:!0,noDot:!0,noFill:!0},\"line-nw\":{n:44,f:function(t){var e=n.round(t,2);return\"M\"+e+\",\"+e+\"L-\"+e+\",-\"+e},needLine:!0,noDot:!0,noFill:!0}}},{d3:164}],617:[function(t,e,r){\"use strict\";e.exports={visible:{valType:\"boolean\",editType:\"calc\"},type:{valType:\"enumerated\",values:[\"percent\",\"constant\",\"sqrt\",\"data\"],editType:\"calc\"},symmetric:{valType:\"boolean\",editType:\"calc\"},array:{valType:\"data_array\",editType:\"calc\"},arrayminus:{valType:\"data_array\",editType:\"calc\"},value:{valType:\"number\",min:0,dflt:10,editType:\"calc\"},valueminus:{valType:\"number\",min:0,dflt:10,editType:\"calc\"},traceref:{valType:\"integer\",min:0,dflt:0,editType:\"style\"},tracerefminus:{valType:\"integer\",min:0,dflt:0,editType:\"style\"},copy_ystyle:{valType:\"boolean\",editType:\"plot\"},copy_zstyle:{valType:\"boolean\",editType:\"style\"},color:{valType:\"color\",editType:\"style\"},thickness:{valType:\"number\",min:0,dflt:2,editType:\"style\"},width:{valType:\"number\",min:0,editType:\"plot\"},editType:\"calc\",_deprecated:{opacity:{valType:\"number\",editType:\"style\"}}}},{}],618:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../registry\"),i=t(\"../../plots/cartesian/axes\"),o=t(\"../../lib\"),s=t(\"./compute_error\");function l(t,e,r,a){var l=e[\"error_\"+a]||{},c=[];if(l.visible&&-1!==[\"linear\",\"log\"].indexOf(r.type)){for(var u=s(l),h=0;h<t.length;h++){var f=t[h],p=f.i;if(void 0===p)p=h;else if(null===p)continue;var d=f[a];if(n(r.c2l(d))){var g=u(d,p);if(n(g[0])&&n(g[1])){var v=f[a+\"s\"]=d-g[0],m=f[a+\"h\"]=d+g[1];c.push(v,m)}}}var y=r._id,x=e._extremes[y],b=i.findExtremes(r,c,o.extendFlat({tozero:x.opts.tozero},{padded:!0}));x.min=x.min.concat(b.min),x.max=x.max.concat(b.max)}}e.exports=function(t){for(var e=t.calcdata,r=0;r<e.length;r++){var n=e[r],o=n[0].trace;if(!0===o.visible&&a.traceIs(o,\"errorBarsOK\")){var s=i.getFromId(t,o.xaxis),c=i.getFromId(t,o.yaxis);l(n,o,s,\"x\"),l(n,o,c,\"y\")}}}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../../registry\":848,\"./compute_error\":619,\"fast-isnumeric\":226}],619:[function(t,e,r){\"use strict\";function n(t,e){return\"percent\"===t?function(t){return Math.abs(t*e/100)}:\"constant\"===t?function(){return Math.abs(e)}:\"sqrt\"===t?function(t){return Math.sqrt(Math.abs(t))}:void 0}e.exports=function(t){var e=t.type,r=t.symmetric;if(\"data\"===e){var a=t.array||[];if(r)return function(t,e){var r=+a[e];return[r,r]};var i=t.arrayminus||[];return function(t,e){var r=+a[e],n=+i[e];return isNaN(r)&&isNaN(n)?[NaN,NaN]:[n||0,r||0]}}var o=n(e,t.value),s=n(e,t.valueminus);return r||void 0===t.valueminus?function(t){var e=o(t);return[e,e]}:function(t){return[s(t),o(t)]}}},{}],620:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../registry\"),i=t(\"../../lib\"),o=t(\"../../plot_api/plot_template\"),s=t(\"./attributes\");e.exports=function(t,e,r,l){var c=\"error_\"+l.axis,u=o.newContainer(e,c),h=t[c]||{};function f(t,e){return i.coerce(h,u,s,t,e)}if(!1!==f(\"visible\",void 0!==h.array||void 0!==h.value||\"sqrt\"===h.type)){var p=f(\"type\",\"array\"in h?\"data\":\"percent\"),d=!0;\"sqrt\"!==p&&(d=f(\"symmetric\",!((\"data\"===p?\"arrayminus\":\"valueminus\")in h))),\"data\"===p?(f(\"array\"),f(\"traceref\"),d||(f(\"arrayminus\"),f(\"tracerefminus\"))):\"percent\"!==p&&\"constant\"!==p||(f(\"value\"),d||f(\"valueminus\"));var g=\"copy_\"+l.inherit+\"style\";if(l.inherit)(e[\"error_\"+l.inherit]||{}).visible&&f(g,!(h.color||n(h.thickness)||n(h.width)));l.inherit&&u[g]||(f(\"color\",r),f(\"thickness\"),f(\"width\",a.traceIs(e,\"gl3d\")?0:4))}}},{\"../../lib\":719,\"../../plot_api/plot_template\":757,\"../../registry\":848,\"./attributes\":617,\"fast-isnumeric\":226}],621:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plot_api/edit_types\").overrideAll,i=t(\"./attributes\"),o={error_x:n.extendFlat({},i),error_y:n.extendFlat({},i)};delete o.error_x.copy_zstyle,delete o.error_y.copy_zstyle,delete o.error_y.copy_ystyle;var s={error_x:n.extendFlat({},i),error_y:n.extendFlat({},i),error_z:n.extendFlat({},i)};delete s.error_x.copy_ystyle,delete s.error_y.copy_ystyle,delete s.error_z.copy_ystyle,delete s.error_z.copy_zstyle,e.exports={moduleType:\"component\",name:\"errorbars\",schema:{traces:{scatter:o,bar:o,histogram:o,scatter3d:a(s,\"calc\",\"nested\"),scattergl:a(o,\"calc\",\"nested\")}},supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),makeComputeError:t(\"./compute_error\"),plot:t(\"./plot\"),style:t(\"./style\"),hoverInfo:function(t,e,r){(e.error_y||{}).visible&&(r.yerr=t.yh-t.y,e.error_y.symmetric||(r.yerrneg=t.y-t.ys));(e.error_x||{}).visible&&(r.xerr=t.xh-t.x,e.error_x.symmetric||(r.xerrneg=t.x-t.xs))}}},{\"../../lib\":719,\"../../plot_api/edit_types\":750,\"./attributes\":617,\"./calc\":618,\"./compute_error\":619,\"./defaults\":620,\"./plot\":622,\"./style\":623}],622:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"fast-isnumeric\"),i=t(\"../drawing\"),o=t(\"../../traces/scatter/subtypes\");e.exports=function(t,e,r,s){var l=r.xaxis,c=r.yaxis,u=s&&s.duration>0;e.each(function(e){var h,f=e[0].trace,p=f.error_x||{},d=f.error_y||{};f.ids&&(h=function(t){return t.id});var g=o.hasMarkers(f)&&f.marker.maxdisplayed>0;d.visible||p.visible||(e=[]);var v=n.select(this).selectAll(\"g.errorbar\").data(e,h);if(v.exit().remove(),e.length){p.visible||v.selectAll(\"path.xerror\").remove(),d.visible||v.selectAll(\"path.yerror\").remove(),v.style(\"opacity\",1);var m=v.enter().append(\"g\").classed(\"errorbar\",!0);u&&m.style(\"opacity\",0).transition().duration(s.duration).style(\"opacity\",1),i.setClipUrl(v,r.layerClipId,t),v.each(function(t){var e=n.select(this),r=function(t,e,r){var n={x:e.c2p(t.x),y:r.c2p(t.y)};void 0!==t.yh&&(n.yh=r.c2p(t.yh),n.ys=r.c2p(t.ys),a(n.ys)||(n.noYS=!0,n.ys=r.c2p(t.ys,!0)));void 0!==t.xh&&(n.xh=e.c2p(t.xh),n.xs=e.c2p(t.xs),a(n.xs)||(n.noXS=!0,n.xs=e.c2p(t.xs,!0)));return n}(t,l,c);if(!g||t.vis){var i,o=e.select(\"path.yerror\");if(d.visible&&a(r.x)&&a(r.yh)&&a(r.ys)){var h=d.width;i=\"M\"+(r.x-h)+\",\"+r.yh+\"h\"+2*h+\"m-\"+h+\",0V\"+r.ys,r.noYS||(i+=\"m-\"+h+\",0h\"+2*h),!o.size()?o=e.append(\"path\").style(\"vector-effect\",\"non-scaling-stroke\").classed(\"yerror\",!0):u&&(o=o.transition().duration(s.duration).ease(s.easing)),o.attr(\"d\",i)}else o.remove();var f=e.select(\"path.xerror\");if(p.visible&&a(r.y)&&a(r.xh)&&a(r.xs)){var v=(p.copy_ystyle?d:p).width;i=\"M\"+r.xh+\",\"+(r.y-v)+\"v\"+2*v+\"m0,-\"+v+\"H\"+r.xs,r.noXS||(i+=\"m0,-\"+v+\"v\"+2*v),!f.size()?f=e.append(\"path\").style(\"vector-effect\",\"non-scaling-stroke\").classed(\"xerror\",!0):u&&(f=f.transition().duration(s.duration).ease(s.easing)),f.attr(\"d\",i)}else f.remove()}})}})}},{\"../../traces/scatter/subtypes\":1134,\"../drawing\":615,d3:164,\"fast-isnumeric\":226}],623:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../color\");e.exports=function(t){t.each(function(t){var e=t[0].trace,r=e.error_y||{},i=e.error_x||{},o=n.select(this);o.selectAll(\"path.yerror\").style(\"stroke-width\",r.thickness+\"px\").call(a.stroke,r.color),i.copy_ystyle&&(i=r),o.selectAll(\"path.xerror\").style(\"stroke-width\",i.thickness+\"px\").call(a.stroke,i.color)})}},{\"../color\":594,d3:164}],624:[function(t,e,r){\"use strict\";var n=t(\"../../plots/font_attributes\"),a=t(\"./layout_attributes\").hoverlabel,i=t(\"../../lib/extend\").extendFlat;e.exports={hoverlabel:{bgcolor:i({},a.bgcolor,{arrayOk:!0}),bordercolor:i({},a.bordercolor,{arrayOk:!0}),font:n({arrayOk:!0,editType:\"none\"}),align:i({},a.align,{arrayOk:!0}),namelength:i({},a.namelength,{arrayOk:!0}),editType:\"none\"}}},{\"../../lib/extend\":710,\"../../plots/font_attributes\":793,\"./layout_attributes\":633}],625:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../registry\");function i(t,e,r,a){a=a||n.identity,Array.isArray(t)&&(e[0][r]=a(t))}e.exports=function(t){var e=t.calcdata,r=t._fullLayout;function o(t){return function(e){return n.coerceHoverinfo({hoverinfo:e},{_module:t._module},r)}}for(var s=0;s<e.length;s++){var l=e[s],c=l[0].trace;if(!a.traceIs(c,\"pie-like\")){var u=a.traceIs(c,\"2dMap\")?i:n.fillArray;u(c.hoverinfo,l,\"hi\",o(c)),c.hovertemplate&&u(c.hovertemplate,l,\"ht\"),c.hoverlabel&&(u(c.hoverlabel.bgcolor,l,\"hbg\"),u(c.hoverlabel.bordercolor,l,\"hbc\"),u(c.hoverlabel.font.size,l,\"hts\"),u(c.hoverlabel.font.color,l,\"htc\"),u(c.hoverlabel.font.family,l,\"htf\"),u(c.hoverlabel.namelength,l,\"hnl\"),u(c.hoverlabel.align,l,\"hta\"))}}}},{\"../../lib\":719,\"../../registry\":848}],626:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"./hover\").hover;e.exports=function(t,e,r){var i=n.getComponentMethod(\"annotations\",\"onClick\")(t,t._hoverdata);function o(){t.emit(\"plotly_click\",{points:t._hoverdata,event:e})}void 0!==r&&a(t,e,r,!0),t._hoverdata&&e&&e.target&&(i&&i.then?i.then(o):o(),e.stopImmediatePropagation&&e.stopImmediatePropagation())}},{\"../../registry\":848,\"./hover\":630}],627:[function(t,e,r){\"use strict\";e.exports={YANGLE:60,HOVERARROWSIZE:6,HOVERTEXTPAD:3,HOVERFONTSIZE:13,HOVERFONT:\"Arial, sans-serif\",HOVERMINTIME:50,HOVERID:\"-hover\"}},{}],628:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./attributes\"),i=t(\"./hoverlabel_defaults\");e.exports=function(t,e,r,o){var s=n.extendFlat({},o.hoverlabel);e.hovertemplate&&(s.namelength=-1),i(t,e,function(r,i){return n.coerce(t,e,a,r,i)},s)}},{\"../../lib\":719,\"./attributes\":624,\"./hoverlabel_defaults\":631}],629:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");r.getSubplot=function(t){return t.subplot||t.xaxis+t.yaxis||t.geo},r.isTraceInSubplots=function(t,e){if(\"splom\"===t.type){for(var n=t.xaxes||[],a=t.yaxes||[],i=0;i<n.length;i++)for(var o=0;o<a.length;o++)if(-1!==e.indexOf(n[i]+a[o]))return!0;return!1}return-1!==e.indexOf(r.getSubplot(t))},r.flat=function(t,e){for(var r=new Array(t.length),n=0;n<t.length;n++)r[n]=e;return r},r.p2c=function(t,e){for(var r=new Array(t.length),n=0;n<t.length;n++)r[n]=t[n].p2c(e);return r},r.getDistanceFunction=function(t,e,n,a){return\"closest\"===t?a||r.quadrature(e,n):\"x\"===t?e:n},r.getClosest=function(t,e,r){if(!1!==r.index)r.index>=0&&r.index<t.length?r.distance=0:r.index=!1;else for(var n=0;n<t.length;n++){var a=e(t[n]);a<=r.distance&&(r.index=n,r.distance=a)}return r},r.inbox=function(t,e,r){return t*e<0||0===t?r:1/0},r.quadrature=function(t,e){return function(r){var n=t(r),a=e(r);return Math.sqrt(n*n+a*a)}},r.makeEventData=function(t,e,n){var a=\"index\"in t?t.index:t.pointNumber,i={data:e._input,fullData:e,curveNumber:e.index,pointNumber:a};if(e._indexToPoints){var o=e._indexToPoints[a];1===o.length?i.pointIndex=o[0]:i.pointIndices=o}else i.pointIndex=a;return e._module.eventData?i=e._module.eventData(i,t,e,n,a):(\"xVal\"in t?i.x=t.xVal:\"x\"in t&&(i.x=t.x),\"yVal\"in t?i.y=t.yVal:\"y\"in t&&(i.y=t.y),t.xa&&(i.xaxis=t.xa),t.ya&&(i.yaxis=t.ya),void 0!==t.zLabelVal&&(i.z=t.zLabelVal)),r.appendArrayPointValue(i,e,a),i},r.appendArrayPointValue=function(t,e,r){var a=e._arrayAttrs;if(a)for(var s=0;s<a.length;s++){var l=a[s],c=i(l);if(void 0===t[c]){var u=o(n.nestedProperty(e,l).get(),r);void 0!==u&&(t[c]=u)}}},r.appendArrayMultiPointValues=function(t,e,r){var a=e._arrayAttrs;if(a)for(var s=0;s<a.length;s++){var l=a[s],c=i(l);if(void 0===t[c]){for(var u=n.nestedProperty(e,l).get(),h=new Array(r.length),f=0;f<r.length;f++)h[f]=o(u,r[f]);t[c]=h}}};var a={ids:\"id\",locations:\"location\",labels:\"label\",values:\"value\",\"marker.colors\":\"color\",parents:\"parent\"};function i(t){return a[t]||t}function o(t,e){return Array.isArray(e)?Array.isArray(t)&&Array.isArray(t[e[0]])?t[e[0]][e[1]]:void 0:t[e]}},{\"../../lib\":719}],630:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"fast-isnumeric\"),i=t(\"tinycolor2\"),o=t(\"../../lib\"),s=t(\"../../lib/events\"),l=t(\"../../lib/svg_text_utils\"),c=t(\"../../lib/override_cursor\"),u=t(\"../drawing\"),h=t(\"../color\"),f=t(\"../dragelement\"),p=t(\"../../plots/cartesian/axes\"),d=t(\"../../registry\"),g=t(\"./helpers\"),v=t(\"./constants\"),m=v.YANGLE,y=Math.PI*m/180,x=1/Math.sin(y),b=Math.cos(y),_=Math.sin(y),w=v.HOVERARROWSIZE,k=v.HOVERTEXTPAD;r.hover=function(t,e,r,i){t=o.getGraphDiv(t),o.throttle(t._fullLayout._uid+v.HOVERID,v.HOVERMINTIME,function(){!function(t,e,r,i){r||(r=\"xy\");var l=Array.isArray(r)?r:[r],u=t._fullLayout,p=u._plots||[],v=p[r],m=u._has(\"cartesian\");if(v){var y=v.overlays.map(function(t){return t.id});l=l.concat(y)}for(var b=l.length,_=new Array(b),w=new Array(b),k=!1,T=0;T<b;T++){var L=l[T];if(p[L])k=!0,_[T]=p[L].xaxis,w[T]=p[L].yaxis;else{if(!u[L]||!u[L]._subplot)return void o.warn(\"Unrecognized subplot: \"+L);var P=u[L]._subplot;_[T]=P.xaxis,w[T]=P.yaxis}}var O=e.hovermode||u.hovermode;O&&!k&&(O=\"closest\");if(-1===[\"x\",\"y\",\"closest\"].indexOf(O)||!t.calcdata||t.querySelector(\".zoombox\")||t._dragging)return f.unhoverRaw(t,e);var I,z,D,R,F,B,N,j,V,U,q,H,G,Y=-1===u.hoverdistance?1/0:u.hoverdistance,W=-1===u.spikedistance?1/0:u.spikedistance,X=[],Z=[],J={hLinePoint:null,vLinePoint:null},K=!1;if(Array.isArray(e))for(O=\"array\",D=0;D<e.length;D++)(F=t.calcdata[e[D].curveNumber||0])&&(B=F[0].trace,\"skip\"!==F[0].trace.hoverinfo&&(Z.push(F),\"h\"===B.orientation&&(K=!0)));else{for(R=0;R<t.calcdata.length;R++)F=t.calcdata[R],\"skip\"!==(B=F[0].trace).hoverinfo&&g.isTraceInSubplots(B,l)&&(Z.push(F),\"h\"===B.orientation&&(K=!0));var Q,$,tt=!e.target;if(tt)Q=\"xpx\"in e?e.xpx:_[0]._length/2,$=\"ypx\"in e?e.ypx:w[0]._length/2;else{if(!1===s.triggerHandler(t,\"plotly_beforehover\",e))return;var et=e.target.getBoundingClientRect();if(Q=e.clientX-et.left,$=e.clientY-et.top,Q<0||Q>_[0]._length||$<0||$>w[0]._length)return f.unhoverRaw(t,e)}if(e.pointerX=Q+_[0]._offset,e.pointerY=$+w[0]._offset,I=\"xval\"in e?g.flat(l,e.xval):g.p2c(_,Q),z=\"yval\"in e?g.flat(l,e.yval):g.p2c(w,$),!a(I[0])||!a(z[0]))return o.warn(\"Fx.hover failed\",e,t),f.unhoverRaw(t,e)}var rt=1/0;for(R=0;R<Z.length;R++)if((F=Z[R])&&F[0]&&F[0].trace&&!0===(B=F[0].trace).visible&&0!==B._length&&-1===[\"carpet\",\"contourcarpet\"].indexOf(B._module.name)){if(\"splom\"===B.type?N=l[j=0]:(N=g.getSubplot(B),j=l.indexOf(N)),V=O,H={cd:F,trace:B,xa:_[j],ya:w[j],maxHoverDistance:Y,maxSpikeDistance:W,index:!1,distance:Math.min(rt,Y),spikeDistance:1/0,xSpike:void 0,ySpike:void 0,color:h.defaultLine,name:B.name,x0:void 0,x1:void 0,y0:void 0,y1:void 0,xLabelVal:void 0,yLabelVal:void 0,zLabelVal:void 0,text:void 0},u[N]&&(H.subplot=u[N]._subplot),u._splomScenes&&u._splomScenes[B.uid]&&(H.scene=u._splomScenes[B.uid]),G=X.length,\"array\"===V){var nt=e[R];\"pointNumber\"in nt?(H.index=nt.pointNumber,V=\"closest\"):(V=\"\",\"xval\"in nt&&(U=nt.xval,V=\"x\"),\"yval\"in nt&&(q=nt.yval,V=V?\"closest\":\"y\"))}else U=I[j],q=z[j];if(0!==Y)if(B._module&&B._module.hoverPoints){var at=B._module.hoverPoints(H,U,q,V,u._hoverlayer);if(at)for(var it,ot=0;ot<at.length;ot++)it=at[ot],a(it.x0)&&a(it.y0)&&X.push(S(it,O))}else o.log(\"Unrecognized trace type in hover:\",B);if(\"closest\"===O&&X.length>G&&(X.splice(0,G),rt=X[0].distance),m&&0!==W&&0===X.length){H.distance=W,H.index=!1;var st=B._module.hoverPoints(H,U,q,\"closest\",u._hoverlayer);if(st&&(st=st.filter(function(t){return t.spikeDistance<=W})),st&&st.length){var lt,ct=st.filter(function(t){return t.xa.showspikes});if(ct.length){var ut=ct[0];a(ut.x0)&&a(ut.y0)&&(lt=dt(ut),(!J.vLinePoint||J.vLinePoint.spikeDistance>lt.spikeDistance)&&(J.vLinePoint=lt))}var ht=st.filter(function(t){return t.ya.showspikes});if(ht.length){var ft=ht[0];a(ft.x0)&&a(ft.y0)&&(lt=dt(ft),(!J.hLinePoint||J.hLinePoint.spikeDistance>lt.spikeDistance)&&(J.hLinePoint=lt))}}}}function pt(t,e){for(var r,n=null,a=1/0,i=0;i<t.length;i++)(r=t[i].spikeDistance)<a&&r<=e&&(n=t[i],a=r);return n}function dt(t){return t?{xa:t.xa,ya:t.ya,x:void 0!==t.xSpike?t.xSpike:(t.x0+t.x1)/2,y:void 0!==t.ySpike?t.ySpike:(t.y0+t.y1)/2,distance:t.distance,spikeDistance:t.spikeDistance,curveNumber:t.trace.index,color:t.color,pointNumber:t.index}:null}var gt={fullLayout:u,container:u._hoverlayer,outerContainer:u._paperdiv,event:e},vt=t._spikepoints,mt={vLinePoint:J.vLinePoint,hLinePoint:J.hLinePoint};if(t._spikepoints=mt,m&&0!==W&&0!==X.length){var yt=X.filter(function(t){return t.ya.showspikes}),xt=pt(yt,W);J.hLinePoint=dt(xt);var bt=X.filter(function(t){return t.xa.showspikes}),_t=pt(bt,W);J.vLinePoint=dt(_t)}if(0===X.length){var wt=f.unhoverRaw(t,e);return!m||null===J.hLinePoint&&null===J.vLinePoint||C(vt)&&E(t,J,gt),wt}m&&C(vt)&&E(t,J,gt);X.sort(function(t,e){return t.distance-e.distance});var kt=t._hoverdata,Tt=[];for(D=0;D<X.length;D++){var At=X[D],Mt=g.makeEventData(At,At.trace,At.cd);if(!1!==At.hovertemplate){var St=!1;At.cd[At.index]&&At.cd[At.index].ht&&(St=At.cd[At.index].ht),At.hovertemplate=St||At.trace.hovertemplate||!1}At.eventData=[Mt],Tt.push(Mt)}t._hoverdata=Tt;var Et=\"y\"===O&&(Z.length>1||X.length>1)||\"closest\"===O&&K&&X.length>1,Ct=h.combine(u.plot_bgcolor||h.background,u.paper_bgcolor),Lt={hovermode:O,rotateLabels:Et,bgColor:Ct,container:u._hoverlayer,outerContainer:u._paperdiv,commonLabelOpts:u.hoverlabel,hoverdistance:u.hoverdistance},Pt=A(X,Lt,t);if(function(t,e,r){var n,a,i,o,s,l,c,u=0,h=1,f=t.size(),p=new Array(f),d=0;function g(t){var e=t[0],r=t[t.length-1];if(a=e.pmin-e.pos-e.dp+e.size,i=r.pos+r.dp+r.size-e.pmax,a>.01){for(s=t.length-1;s>=0;s--)t[s].dp+=a;n=!1}if(!(i<.01)){if(a<-.01){for(s=t.length-1;s>=0;s--)t[s].dp-=i;n=!1}if(n){var c=0;for(o=0;o<t.length;o++)(l=t[o]).pos+l.dp+l.size>e.pmax&&c++;for(o=t.length-1;o>=0&&!(c<=0);o--)(l=t[o]).pos>e.pmax-1&&(l.del=!0,c--);for(o=0;o<t.length&&!(c<=0);o++)if((l=t[o]).pos<e.pmin+1)for(l.del=!0,c--,i=2*l.size,s=t.length-1;s>=0;s--)t[s].dp-=i;for(o=t.length-1;o>=0&&!(c<=0);o--)(l=t[o]).pos+l.dp+l.size>e.pmax&&(l.del=!0,c--)}}}for(t.each(function(t){var n=t[e],a=\"x\"===n._id.charAt(0),i=n.range;0===d&&i&&i[0]>i[1]!==a&&(h=-1),p[d++]=[{datum:t,traceIndex:t.trace.index,dp:0,pos:t.pos,posref:t.posref,size:t.by*(a?x:1)/2,pmin:0,pmax:a?r.width:r.height}]}),p.sort(function(t,e){return t[0].posref-e[0].posref||h*(e[0].traceIndex-t[0].traceIndex)});!n&&u<=f;){for(u++,n=!0,o=0;o<p.length-1;){var v=p[o],m=p[o+1],y=v[v.length-1],b=m[0];if((a=y.pos+y.dp+y.size-b.pos-b.dp+b.size)>.01&&y.pmin===b.pmin&&y.pmax===b.pmax){for(s=m.length-1;s>=0;s--)m[s].dp+=a;for(v.push.apply(v,m),p.splice(o+1,1),c=0,s=v.length-1;s>=0;s--)c+=v[s].dp;for(i=c/v.length,s=v.length-1;s>=0;s--)v[s].dp-=i;n=!1}else o++}p.forEach(g)}for(o=p.length-1;o>=0;o--){var _=p[o];for(s=_.length-1;s>=0;s--){var w=_[s],k=w.datum;k.offset=w.dp,k.del=w.del}}}(Pt,Et?\"xa\":\"ya\",u),M(Pt,Et),e.target&&e.target.tagName){var Ot=d.getComponentMethod(\"annotations\",\"hasClickToShow\")(t,Tt);c(n.select(e.target),Ot?\"pointer\":\"\")}if(!e.target||i||!function(t,e,r){if(!r||r.length!==t._hoverdata.length)return!0;for(var n=r.length-1;n>=0;n--){var a=r[n],i=t._hoverdata[n];if(a.curveNumber!==i.curveNumber||String(a.pointNumber)!==String(i.pointNumber)||String(a.pointNumbers)!==String(i.pointNumbers))return!0}return!1}(t,0,kt))return;kt&&t.emit(\"plotly_unhover\",{event:e,points:kt});t.emit(\"plotly_hover\",{event:e,points:t._hoverdata,xaxes:_,yaxes:w,xvals:I,yvals:z})}(t,e,r,i)})},r.loneHover=function(t,e){var r=!0;Array.isArray(t)||(r=!1,t=[t]);var a=t.map(function(t){return{color:t.color||h.defaultLine,x0:t.x0||t.x||0,x1:t.x1||t.x||0,y0:t.y0||t.y||0,y1:t.y1||t.y||0,xLabel:t.xLabel,yLabel:t.yLabel,zLabel:t.zLabel,text:t.text,name:t.name,idealAlign:t.idealAlign,borderColor:t.borderColor,fontFamily:t.fontFamily,fontSize:t.fontSize,fontColor:t.fontColor,nameLength:t.nameLength,textAlign:t.textAlign,trace:t.trace||{index:0,hoverinfo:\"\"},xa:{_offset:0},ya:{_offset:0},index:0,hovertemplate:t.hovertemplate||!1,eventData:t.eventData||!1,hovertemplateLabels:t.hovertemplateLabels||!1}}),i=n.select(e.container),o=e.outerContainer?n.select(e.outerContainer):i,s={hovermode:\"closest\",rotateLabels:!1,bgColor:e.bgColor||h.background,container:i,outerContainer:o},l=A(a,s,e.gd),c=0,u=0;return l.sort(function(t,e){return t.y0-e.y0}).each(function(t,r){var n=t.y0-t.by/2;t.offset=n-5<c?c-n+5:0,c=n+t.by+t.offset,r===e.anchorIndex&&(u=t.offset)}).each(function(t){t.offset-=u}),M(l,s.rotateLabels),r?l:l.node()};var T=/<extra>([\\s\\S]*)<\\/extra>/;function A(t,e,r){var a=r._fullLayout,i=e.hovermode,s=e.rotateLabels,c=e.bgColor,f=e.container,p=e.outerContainer,d=e.commonLabelOpts||{},g=e.fontFamily||v.HOVERFONT,y=e.fontSize||v.HOVERFONTSIZE,x=t[0],b=x.xa,_=x.ya,A=\"y\"===i?\"yLabel\":\"xLabel\",M=x[A],S=(String(M)||\"\").split(\" \")[0],E=p.node().getBoundingClientRect(),C=E.top,P=E.width,O=E.height,I=void 0!==M&&x.distance<=e.hoverdistance&&(\"x\"===i||\"y\"===i);if(I){var z,D,R=!0;for(z=0;z<t.length;z++)if(R&&void 0===t[z].zLabel&&(R=!1),D=t[z].hoverinfo||t[z].trace.hoverinfo){var F=Array.isArray(D)?D:D.split(\"+\");if(-1===F.indexOf(\"all\")&&-1===F.indexOf(i)){I=!1;break}}R&&(I=!1)}var B=f.selectAll(\"g.axistext\").data(I?[0]:[]);B.enter().append(\"g\").classed(\"axistext\",!0),B.exit().remove(),B.each(function(){var e=n.select(this),a=o.ensureSingle(e,\"path\",\"\",function(t){t.style({\"stroke-width\":\"1px\"})}),s=o.ensureSingle(e,\"text\",\"\",function(t){t.attr(\"data-notex\",1)}),c=d.bgcolor||h.defaultLine,f=d.bordercolor||h.contrast(c),p=h.contrast(c);a.style({fill:c,stroke:f}),s.text(M).call(u.font,d.font.family||g,d.font.size||y,d.font.color||p).call(l.positionText,0,0).call(l.convertToTspans,r),e.attr(\"transform\",\"\");var v=s.node().getBoundingClientRect();if(\"x\"===i){s.attr(\"text-anchor\",\"middle\").call(l.positionText,0,\"top\"===b.side?C-v.bottom-w-k:C-v.top+w+k);var m=\"top\"===b.side?\"-\":\"\";a.attr(\"d\",\"M0,0L\"+w+\",\"+m+w+\"H\"+(k+v.width/2)+\"v\"+m+(2*k+v.height)+\"H-\"+(k+v.width/2)+\"V\"+m+w+\"H-\"+w+\"Z\"),e.attr(\"transform\",\"translate(\"+(b._offset+(x.x0+x.x1)/2)+\",\"+(_._offset+(\"top\"===b.side?0:_._length))+\")\")}else{s.attr(\"text-anchor\",\"right\"===_.side?\"start\":\"end\").call(l.positionText,(\"right\"===_.side?1:-1)*(k+w),C-v.top-v.height/2);var T=\"right\"===_.side?\"\":\"-\";a.attr(\"d\",\"M0,0L\"+T+w+\",\"+w+\"V\"+(k+v.height/2)+\"h\"+T+(2*k+v.width)+\"V-\"+(k+v.height/2)+\"H\"+T+w+\"V-\"+w+\"Z\"),e.attr(\"transform\",\"translate(\"+(b._offset+(\"right\"===_.side?b._length:0))+\",\"+(_._offset+(x.y0+x.y1)/2)+\")\")}t=t.filter(function(t){return void 0!==t.zLabelVal||(t[A]||\"\").split(\" \")[0]===S})});var N=f.selectAll(\"g.hovertext\").data(t,function(t){return[t.trace.index,t.index,t.x0,t.y0,t.name,t.attr,t.xa,t.ya||\"\"].join(\",\")});return N.enter().append(\"g\").classed(\"hovertext\",!0).each(function(){var t=n.select(this);t.append(\"rect\").call(h.fill,h.addOpacity(c,.8)),t.append(\"text\").classed(\"name\",!0),t.append(\"path\").style(\"stroke-width\",\"1px\"),t.append(\"text\").classed(\"nums\",!0).call(u.font,g,y)}),N.exit().remove(),N.each(function(t){var e=n.select(this).attr(\"transform\",\"\"),f=\"\",p=\"\",d=t.bgcolor||t.color,v=h.combine(h.opacity(d)?d:h.defaultLine,c),x=h.combine(h.opacity(t.color)?t.color:h.defaultLine,c),b=t.borderColor||h.contrast(v);void 0!==t.nameOverride&&(t.name=t.nameOverride),t.name&&(t.trace._meta&&(t.name=o.templateString(t.name,t.trace._meta)),f=L(t.name,t.nameLength)),void 0!==t.zLabel?(void 0!==t.xLabel&&(p+=\"x: \"+t.xLabel+\"<br>\"),void 0!==t.yLabel&&(p+=\"y: \"+t.yLabel+\"<br>\"),\"choropleth\"!==t.trace.type&&\"choroplethmapbox\"!==t.trace.type&&(p+=(p?\"z: \":\"\")+t.zLabel)):I&&t[i+\"Label\"]===M?p=t[(\"x\"===i?\"y\":\"x\")+\"Label\"]||\"\":void 0===t.xLabel?void 0!==t.yLabel&&\"scattercarpet\"!==t.trace.type&&(p=t.yLabel):p=void 0===t.yLabel?t.xLabel:\"(\"+t.xLabel+\", \"+t.yLabel+\")\",!t.text&&0!==t.text||Array.isArray(t.text)||(p+=(p?\"<br>\":\"\")+t.text),void 0!==t.extraText&&(p+=(p?\"<br>\":\"\")+t.extraText),\"\"!==p||t.hovertemplate||(\"\"===f&&e.remove(),p=f);var _=a._d3locale,A=t.hovertemplate||!1,S=t.hovertemplateLabels||t,E=t.eventData[0]||{};A&&(p=(p=o.hovertemplateString(A,S,_,E,t.trace._meta)).replace(T,function(e,r){return f=L(r,t.nameLength),\"\"}));var z=e.select(\"text.nums\").call(u.font,t.fontFamily||g,t.fontSize||y,t.fontColor||b).text(p).attr(\"data-notex\",1).call(l.positionText,0,0).call(l.convertToTspans,r),D=e.select(\"text.name\"),R=0,F=0;if(f&&f!==p){D.call(u.font,t.fontFamily||g,t.fontSize||y,x).text(f).attr(\"data-notex\",1).call(l.positionText,0,0).call(l.convertToTspans,r);var B=D.node().getBoundingClientRect();R=B.width+2*k,F=B.height+2*k}else D.remove(),e.select(\"rect\").remove();e.select(\"path\").style({fill:v,stroke:b});var N,j,V=z.node().getBoundingClientRect(),U=t.xa._offset+(t.x0+t.x1)/2,q=t.ya._offset+(t.y0+t.y1)/2,H=Math.abs(t.x1-t.x0),G=Math.abs(t.y1-t.y0),Y=V.width+w+k+R;if(t.ty0=C-V.top,t.bx=V.width+2*k,t.by=Math.max(V.height+2*k,F),t.anchor=\"start\",t.txwidth=V.width,t.tx2width=R,t.offset=0,s)t.pos=U,N=q+G/2+Y<=O,j=q-G/2-Y>=0,\"top\"!==t.idealAlign&&N||!j?N?(q+=G/2,t.anchor=\"start\"):t.anchor=\"middle\":(q-=G/2,t.anchor=\"end\");else if(t.pos=q,N=U+H/2+Y<=P,j=U-H/2-Y>=0,\"left\"!==t.idealAlign&&N||!j)if(N)U+=H/2,t.anchor=\"start\";else{t.anchor=\"middle\";var W=Y/2,X=U+W-P,Z=U-W;X>0&&(U-=X),Z<0&&(U+=-Z)}else U-=H/2,t.anchor=\"end\";z.attr(\"text-anchor\",t.anchor),R&&D.attr(\"text-anchor\",t.anchor),e.attr(\"transform\",\"translate(\"+U+\",\"+q+\")\"+(s?\"rotate(\"+m+\")\":\"\"))}),N}function M(t,e){t.each(function(t){var r=n.select(this);if(t.del)return r.remove();var a=r.select(\"text.nums\"),i=t.anchor,o=\"end\"===i?-1:1,s={start:1,end:-1,middle:0}[i],c=s*(w+k),h=c+s*(t.txwidth+k),f=0,p=t.offset;\"middle\"===i&&(c-=t.tx2width/2,h+=t.txwidth/2+k),e&&(p*=-_,f=t.offset*b),r.select(\"path\").attr(\"d\",\"middle\"===i?\"M-\"+(t.bx/2+t.tx2width/2)+\",\"+(p-t.by/2)+\"h\"+t.bx+\"v\"+t.by+\"h-\"+t.bx+\"Z\":\"M0,0L\"+(o*w+f)+\",\"+(w+p)+\"v\"+(t.by/2-w)+\"h\"+o*t.bx+\"v-\"+t.by+\"H\"+(o*w+f)+\"V\"+(p-w)+\"Z\");var d=c+f,g=p+t.ty0-t.by/2+k,v=t.textAlign||\"auto\";\"auto\"!==v&&(\"left\"===v&&\"start\"!==i?(a.attr(\"text-anchor\",\"start\"),d=\"middle\"===i?-t.bx/2-t.tx2width/2+k:-t.bx-k):\"right\"===v&&\"end\"!==i&&(a.attr(\"text-anchor\",\"end\"),d=\"middle\"===i?t.bx/2-t.tx2width/2-k:t.bx+k)),a.call(l.positionText,d,g),t.tx2width&&(r.select(\"text.name\").call(l.positionText,h+s*k+f,p+t.ty0-t.by/2+k),r.select(\"rect\").call(u.setRect,h+(s-1)*t.tx2width/2+f,p-t.by/2-1,t.tx2width,t.by+2))})}function S(t,e){var r=t.index,n=t.trace||{},i=t.cd[0],s=t.cd[r]||{};function l(t){return t||a(t)&&0===t}var c=Array.isArray(r)?function(t,e){var a=o.castOption(i,r,t);return l(a)?a:o.extractOption({},n,\"\",e)}:function(t,e){return o.extractOption(s,n,t,e)};function u(e,r,n){var a=c(r,n);l(a)&&(t[e]=a)}if(u(\"hoverinfo\",\"hi\",\"hoverinfo\"),u(\"bgcolor\",\"hbg\",\"hoverlabel.bgcolor\"),u(\"borderColor\",\"hbc\",\"hoverlabel.bordercolor\"),u(\"fontFamily\",\"htf\",\"hoverlabel.font.family\"),u(\"fontSize\",\"hts\",\"hoverlabel.font.size\"),u(\"fontColor\",\"htc\",\"hoverlabel.font.color\"),u(\"nameLength\",\"hnl\",\"hoverlabel.namelength\"),u(\"textAlign\",\"hta\",\"hoverlabel.align\"),t.posref=\"y\"===e||\"closest\"===e&&\"h\"===n.orientation?t.xa._offset+(t.x0+t.x1)/2:t.ya._offset+(t.y0+t.y1)/2,t.x0=o.constrain(t.x0,0,t.xa._length),t.x1=o.constrain(t.x1,0,t.xa._length),t.y0=o.constrain(t.y0,0,t.ya._length),t.y1=o.constrain(t.y1,0,t.ya._length),void 0!==t.xLabelVal&&(t.xLabel=\"xLabel\"in t?t.xLabel:p.hoverLabelText(t.xa,t.xLabelVal),t.xVal=t.xa.c2d(t.xLabelVal)),void 0!==t.yLabelVal&&(t.yLabel=\"yLabel\"in t?t.yLabel:p.hoverLabelText(t.ya,t.yLabelVal),t.yVal=t.ya.c2d(t.yLabelVal)),void 0!==t.zLabelVal&&void 0===t.zLabel&&(t.zLabel=String(t.zLabelVal)),!(isNaN(t.xerr)||\"log\"===t.xa.type&&t.xerr<=0)){var h=p.tickText(t.xa,t.xa.c2l(t.xerr),\"hover\").text;void 0!==t.xerrneg?t.xLabel+=\" +\"+h+\" / -\"+p.tickText(t.xa,t.xa.c2l(t.xerrneg),\"hover\").text:t.xLabel+=\" \\xb1 \"+h,\"x\"===e&&(t.distance+=1)}if(!(isNaN(t.yerr)||\"log\"===t.ya.type&&t.yerr<=0)){var f=p.tickText(t.ya,t.ya.c2l(t.yerr),\"hover\").text;void 0!==t.yerrneg?t.yLabel+=\" +\"+f+\" / -\"+p.tickText(t.ya,t.ya.c2l(t.yerrneg),\"hover\").text:t.yLabel+=\" \\xb1 \"+f,\"y\"===e&&(t.distance+=1)}var d=t.hoverinfo||t.trace.hoverinfo;return d&&\"all\"!==d&&(-1===(d=Array.isArray(d)?d:d.split(\"+\")).indexOf(\"x\")&&(t.xLabel=void 0),-1===d.indexOf(\"y\")&&(t.yLabel=void 0),-1===d.indexOf(\"z\")&&(t.zLabel=void 0),-1===d.indexOf(\"text\")&&(t.text=void 0),-1===d.indexOf(\"name\")&&(t.name=void 0)),t}function E(t,e,r){var n,a,o=r.container,s=r.fullLayout,l=s._size,c=r.event,f=!!e.hLinePoint,d=!!e.vLinePoint;if(o.selectAll(\".spikeline\").remove(),d||f){var g=h.combine(s.plot_bgcolor,s.paper_bgcolor);if(f){var v,m,y=e.hLinePoint;n=y&&y.xa,\"cursor\"===(a=y&&y.ya).spikesnap?(v=c.pointerX,m=c.pointerY):(v=n._offset+y.x,m=a._offset+y.y);var x,b,_=i.readability(y.color,g)<1.5?h.contrast(g):y.color,w=a.spikemode,k=a.spikethickness,T=a.spikecolor||_,A=p.getPxPosition(t,a);if(-1!==w.indexOf(\"toaxis\")||-1!==w.indexOf(\"across\")){if(-1!==w.indexOf(\"toaxis\")&&(x=A,b=v),-1!==w.indexOf(\"across\")){var M=a._counterDomainMin,S=a._counterDomainMax;\"free\"===a.anchor&&(M=Math.min(M,a.position),S=Math.max(S,a.position)),x=l.l+M*l.w,b=l.l+S*l.w}o.insert(\"line\",\":first-child\").attr({x1:x,x2:b,y1:m,y2:m,\"stroke-width\":k,stroke:T,\"stroke-dasharray\":u.dashStyle(a.spikedash,k)}).classed(\"spikeline\",!0).classed(\"crisp\",!0),o.insert(\"line\",\":first-child\").attr({x1:x,x2:b,y1:m,y2:m,\"stroke-width\":k+2,stroke:g}).classed(\"spikeline\",!0).classed(\"crisp\",!0)}-1!==w.indexOf(\"marker\")&&o.insert(\"circle\",\":first-child\").attr({cx:A+(\"right\"!==a.side?k:-k),cy:m,r:k,fill:T}).classed(\"spikeline\",!0)}if(d){var E,C,L=e.vLinePoint;n=L&&L.xa,a=L&&L.ya,\"cursor\"===n.spikesnap?(E=c.pointerX,C=c.pointerY):(E=n._offset+L.x,C=a._offset+L.y);var P,O,I=i.readability(L.color,g)<1.5?h.contrast(g):L.color,z=n.spikemode,D=n.spikethickness,R=n.spikecolor||I,F=p.getPxPosition(t,n);if(-1!==z.indexOf(\"toaxis\")||-1!==z.indexOf(\"across\")){if(-1!==z.indexOf(\"toaxis\")&&(P=F,O=C),-1!==z.indexOf(\"across\")){var B=n._counterDomainMin,N=n._counterDomainMax;\"free\"===n.anchor&&(B=Math.min(B,n.position),N=Math.max(N,n.position)),P=l.t+(1-N)*l.h,O=l.t+(1-B)*l.h}o.insert(\"line\",\":first-child\").attr({x1:E,x2:E,y1:P,y2:O,\"stroke-width\":D,stroke:R,\"stroke-dasharray\":u.dashStyle(n.spikedash,D)}).classed(\"spikeline\",!0).classed(\"crisp\",!0),o.insert(\"line\",\":first-child\").attr({x1:E,x2:E,y1:P,y2:O,\"stroke-width\":D+2,stroke:g}).classed(\"spikeline\",!0).classed(\"crisp\",!0)}-1!==z.indexOf(\"marker\")&&o.insert(\"circle\",\":first-child\").attr({cx:E,cy:F-(\"top\"!==n.side?D:-D),r:D,fill:R}).classed(\"spikeline\",!0)}}}function C(t,e){return!e||(e.vLinePoint!==t._spikepoints.vLinePoint||e.hLinePoint!==t._spikepoints.hLinePoint)}function L(t,e){return l.plainText(t||\"\",{len:e,allowedTags:[\"br\",\"sub\",\"sup\",\"b\",\"i\",\"em\"]})}},{\"../../lib\":719,\"../../lib/events\":709,\"../../lib/override_cursor\":730,\"../../lib/svg_text_utils\":743,\"../../plots/cartesian/axes\":767,\"../../registry\":848,\"../color\":594,\"../dragelement\":612,\"../drawing\":615,\"./constants\":627,\"./helpers\":629,d3:164,\"fast-isnumeric\":226,tinycolor2:538}],631:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e,r,a){r(\"hoverlabel.bgcolor\",(a=a||{}).bgcolor),r(\"hoverlabel.bordercolor\",a.bordercolor),r(\"hoverlabel.namelength\",a.namelength),n.coerceFont(r,\"hoverlabel.font\",a.font),r(\"hoverlabel.align\",a.align)}},{\"../../lib\":719}],632:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../lib\"),i=t(\"../dragelement\"),o=t(\"./helpers\"),s=t(\"./layout_attributes\"),l=t(\"./hover\");e.exports={moduleType:\"component\",name:\"fx\",constants:t(\"./constants\"),schema:{layout:s},attributes:t(\"./attributes\"),layoutAttributes:s,supplyLayoutGlobalDefaults:t(\"./layout_global_defaults\"),supplyDefaults:t(\"./defaults\"),supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\"),getDistanceFunction:o.getDistanceFunction,getClosest:o.getClosest,inbox:o.inbox,quadrature:o.quadrature,appendArrayPointValue:o.appendArrayPointValue,castHoverOption:function(t,e,r){return a.castOption(t,e,\"hoverlabel.\"+r)},castHoverinfo:function(t,e,r){return a.castOption(t,r,\"hoverinfo\",function(r){return a.coerceHoverinfo({hoverinfo:r},{_module:t._module},e)})},hover:l.hover,unhover:i.unhover,loneHover:l.loneHover,loneUnhover:function(t){var e=a.isD3Selection(t)?t:n.select(t);e.selectAll(\"g.hovertext\").remove(),e.selectAll(\".spikeline\").remove()},click:t(\"./click\")}},{\"../../lib\":719,\"../dragelement\":612,\"./attributes\":624,\"./calc\":625,\"./click\":626,\"./constants\":627,\"./defaults\":628,\"./helpers\":629,\"./hover\":630,\"./layout_attributes\":633,\"./layout_defaults\":634,\"./layout_global_defaults\":635,d3:164}],633:[function(t,e,r){\"use strict\";var n=t(\"./constants\"),a=t(\"../../plots/font_attributes\")({editType:\"none\"});a.family.dflt=n.HOVERFONT,a.size.dflt=n.HOVERFONTSIZE,e.exports={clickmode:{valType:\"flaglist\",flags:[\"event\",\"select\"],dflt:\"event\",editType:\"plot\",extras:[\"none\"]},dragmode:{valType:\"enumerated\",values:[\"zoom\",\"pan\",\"select\",\"lasso\",\"orbit\",\"turntable\",!1],dflt:\"zoom\",editType:\"modebar\"},hovermode:{valType:\"enumerated\",values:[\"x\",\"y\",\"closest\",!1],editType:\"modebar\"},hoverdistance:{valType:\"integer\",min:-1,dflt:20,editType:\"none\"},spikedistance:{valType:\"integer\",min:-1,dflt:20,editType:\"none\"},hoverlabel:{bgcolor:{valType:\"color\",editType:\"none\"},bordercolor:{valType:\"color\",editType:\"none\"},font:a,align:{valType:\"enumerated\",values:[\"left\",\"right\",\"auto\"],dflt:\"auto\",editType:\"none\"},namelength:{valType:\"integer\",min:-1,dflt:15,editType:\"none\"},editType:\"none\"},selectdirection:{valType:\"enumerated\",values:[\"h\",\"v\",\"d\",\"any\"],dflt:\"any\",editType:\"none\"}}},{\"../../plots/font_attributes\":793,\"./constants\":627}],634:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./layout_attributes\");e.exports=function(t,e,r){function i(r,i){return n.coerce(t,e,a,r,i)}var o,s=i(\"clickmode\");\"select\"===i(\"dragmode\")&&i(\"selectdirection\"),e._has(\"cartesian\")?s.indexOf(\"select\")>-1?o=\"closest\":(e._isHoriz=function(t,e){for(var r=e._scatterStackOpts||{},n=0;n<t.length;n++){var a=t[n],i=a.xaxis+a.yaxis,o=r[i]||{},s=o[a.stackgroup]||{};if(\"h\"!==a.orientation&&\"h\"!==s.orientation)return!1}return!0}(r,e),o=e._isHoriz?\"y\":\"x\"):o=\"closest\",i(\"hovermode\",o)&&(i(\"hoverdistance\"),i(\"spikedistance\"));var l=e._has(\"mapbox\"),c=e._has(\"geo\"),u=e._basePlotModules.length;\"zoom\"===e.dragmode&&((l||c)&&1===u||l&&c&&2===u)&&(e.dragmode=\"pan\")}},{\"../../lib\":719,\"./layout_attributes\":633}],635:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./hoverlabel_defaults\"),i=t(\"./layout_attributes\");e.exports=function(t,e){a(t,e,function(r,a){return n.coerce(t,e,i,r,a)})}},{\"../../lib\":719,\"./hoverlabel_defaults\":631,\"./layout_attributes\":633}],636:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../lib/regex\").counter,i=t(\"../../plots/domain\").attributes,o=t(\"../../plots/cartesian/constants\").idRegex,s=t(\"../../plot_api/plot_template\"),l={rows:{valType:\"integer\",min:1,editType:\"plot\"},roworder:{valType:\"enumerated\",values:[\"top to bottom\",\"bottom to top\"],dflt:\"top to bottom\",editType:\"plot\"},columns:{valType:\"integer\",min:1,editType:\"plot\"},subplots:{valType:\"info_array\",freeLength:!0,dimensions:2,items:{valType:\"enumerated\",values:[a(\"xy\").toString(),\"\"],editType:\"plot\"},editType:\"plot\"},xaxes:{valType:\"info_array\",freeLength:!0,items:{valType:\"enumerated\",values:[o.x.toString(),\"\"],editType:\"plot\"},editType:\"plot\"},yaxes:{valType:\"info_array\",freeLength:!0,items:{valType:\"enumerated\",values:[o.y.toString(),\"\"],editType:\"plot\"},editType:\"plot\"},pattern:{valType:\"enumerated\",values:[\"independent\",\"coupled\"],dflt:\"coupled\",editType:\"plot\"},xgap:{valType:\"number\",min:0,max:1,editType:\"plot\"},ygap:{valType:\"number\",min:0,max:1,editType:\"plot\"},domain:i({name:\"grid\",editType:\"plot\",noGridCell:!0},{}),xside:{valType:\"enumerated\",values:[\"bottom\",\"bottom plot\",\"top plot\",\"top\"],dflt:\"bottom plot\",editType:\"plot\"},yside:{valType:\"enumerated\",values:[\"left\",\"left plot\",\"right plot\",\"right\"],dflt:\"left plot\",editType:\"plot\"},editType:\"plot\"};function c(t,e,r){var n=e[r+\"axes\"],a=Object.keys((t._splomAxes||{})[r]||{});return Array.isArray(n)?n:a.length?a:void 0}function u(t,e,r,n,a,i){var o=e(t+\"gap\",r),s=e(\"domain.\"+t);e(t+\"side\",n);for(var l=new Array(a),c=s[0],u=(s[1]-c)/(a-o),h=u*(1-o),f=0;f<a;f++){var p=c+u*f;l[i?a-1-f:f]=[p,p+h]}return l}function h(t,e,r,n,a){var i,o=new Array(r);function s(t,r){-1!==e.indexOf(r)&&void 0===n[r]?(o[t]=r,n[r]=t):o[t]=\"\"}if(Array.isArray(t))for(i=0;i<r;i++)s(i,t[i]);else for(s(0,a),i=1;i<r;i++)s(i,a+(i+1));return o}e.exports={moduleType:\"component\",name:\"grid\",schema:{layout:{grid:l}},layoutAttributes:l,sizeDefaults:function(t,e){var r=t.grid||{},a=c(e,r,\"x\"),i=c(e,r,\"y\");if(t.grid||a||i){var o,h,f=Array.isArray(r.subplots)&&Array.isArray(r.subplots[0]),p=Array.isArray(a),d=Array.isArray(i),g=p&&a!==r.xaxes&&d&&i!==r.yaxes;f?(o=r.subplots.length,h=r.subplots[0].length):(d&&(o=i.length),p&&(h=a.length));var v=s.newContainer(e,\"grid\"),m=T(\"rows\",o),y=T(\"columns\",h);if(m*y>1){f||p||d||\"independent\"===T(\"pattern\")&&(f=!0),v._hasSubplotGrid=f;var x,b,_=\"top to bottom\"===T(\"roworder\"),w=f?.2:.1,k=f?.3:.1;g&&e._splomGridDflt&&(x=e._splomGridDflt.xside,b=e._splomGridDflt.yside),v._domains={x:u(\"x\",T,w,x,y),y:u(\"y\",T,k,b,m,_)}}else delete e.grid}function T(t,e){return n.coerce(r,v,l,t,e)}},contentDefaults:function(t,e){var r=e.grid;if(r&&r._domains){var n,a,i,o,s,l,u,f=t.grid||{},p=e._subplots,d=r._hasSubplotGrid,g=r.rows,v=r.columns,m=\"independent\"===r.pattern,y=r._axisMap={};if(d){var x=f.subplots||[];l=r.subplots=new Array(g);var b=1;for(n=0;n<g;n++){var _=l[n]=new Array(v),w=x[n]||[];for(a=0;a<v;a++)if(m?(s=1===b?\"xy\":\"x\"+b+\"y\"+b,b++):s=w[a],_[a]=\"\",-1!==p.cartesian.indexOf(s)){if(u=s.indexOf(\"y\"),i=s.slice(0,u),o=s.slice(u),void 0!==y[i]&&y[i]!==a||void 0!==y[o]&&y[o]!==n)continue;_[a]=s,y[i]=a,y[o]=n}}}else{var k=c(e,f,\"x\"),T=c(e,f,\"y\");r.xaxes=h(k,p.xaxis,v,y,\"x\"),r.yaxes=h(T,p.yaxis,g,y,\"y\")}var A=r._anchors={},M=\"top to bottom\"===r.roworder;for(var S in y){var E,C,L,P=S.charAt(0),O=r[P+\"side\"];if(O.length<8)A[S]=\"free\";else if(\"x\"===P){if(\"t\"===O.charAt(0)===M?(E=0,C=1,L=g):(E=g-1,C=-1,L=-1),d){var I=y[S];for(n=E;n!==L;n+=C)if((s=l[n][I])&&(u=s.indexOf(\"y\"),s.slice(0,u)===S)){A[S]=s.slice(u);break}}else for(n=E;n!==L;n+=C)if(o=r.yaxes[n],-1!==p.cartesian.indexOf(S+o)){A[S]=o;break}}else if(\"l\"===O.charAt(0)?(E=0,C=1,L=v):(E=v-1,C=-1,L=-1),d){var z=y[S];for(n=E;n!==L;n+=C)if((s=l[z][n])&&(u=s.indexOf(\"y\"),s.slice(u)===S)){A[S]=s.slice(0,u);break}}else for(n=E;n!==L;n+=C)if(i=r.xaxes[n],-1!==p.cartesian.indexOf(i+S)){A[S]=i;break}}}}}},{\"../../lib\":719,\"../../lib/regex\":735,\"../../plot_api/plot_template\":757,\"../../plots/cartesian/constants\":773,\"../../plots/domain\":792}],637:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/constants\"),a=t(\"../../plot_api/plot_template\").templatedArray;e.exports=a(\"image\",{visible:{valType:\"boolean\",dflt:!0,editType:\"arraydraw\"},source:{valType:\"string\",editType:\"arraydraw\"},layer:{valType:\"enumerated\",values:[\"below\",\"above\"],dflt:\"above\",editType:\"arraydraw\"},sizex:{valType:\"number\",dflt:0,editType:\"arraydraw\"},sizey:{valType:\"number\",dflt:0,editType:\"arraydraw\"},sizing:{valType:\"enumerated\",values:[\"fill\",\"contain\",\"stretch\"],dflt:\"contain\",editType:\"arraydraw\"},opacity:{valType:\"number\",min:0,max:1,dflt:1,editType:\"arraydraw\"},x:{valType:\"any\",dflt:0,editType:\"arraydraw\"},y:{valType:\"any\",dflt:0,editType:\"arraydraw\"},xanchor:{valType:\"enumerated\",values:[\"left\",\"center\",\"right\"],dflt:\"left\",editType:\"arraydraw\"},yanchor:{valType:\"enumerated\",values:[\"top\",\"middle\",\"bottom\"],dflt:\"top\",editType:\"arraydraw\"},xref:{valType:\"enumerated\",values:[\"paper\",n.idRegex.x.toString()],dflt:\"paper\",editType:\"arraydraw\"},yref:{valType:\"enumerated\",values:[\"paper\",n.idRegex.y.toString()],dflt:\"paper\",editType:\"arraydraw\"},editType:\"arraydraw\"})},{\"../../plot_api/plot_template\":757,\"../../plots/cartesian/constants\":773}],638:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib/to_log_range\");e.exports=function(t,e,r,i){e=e||{};var o=\"log\"===r&&\"linear\"===e.type,s=\"linear\"===r&&\"log\"===e.type;if(o||s)for(var l,c,u=t._fullLayout.images,h=e._id.charAt(0),f=0;f<u.length;f++)if(c=\"images[\"+f+\"].\",(l=u[f])[h+\"ref\"]===e._id){var p=l[h],d=l[\"size\"+h],g=null,v=null;if(o){g=a(p,e.range);var m=d/Math.pow(10,g)/2;v=2*Math.log(m+Math.sqrt(1+m*m))/Math.LN10}else v=(g=Math.pow(10,p))*(Math.pow(10,d/2)-Math.pow(10,-d/2));n(g)?n(v)||(v=null):(g=null,v=null),i(c+h,g),i(c+\"size\"+h,v)}}},{\"../../lib/to_log_range\":745,\"fast-isnumeric\":226}],639:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"../../plots/array_container_defaults\"),o=t(\"./attributes\");function s(t,e,r){function i(r,a){return n.coerce(t,e,o,r,a)}var s=i(\"source\");if(!i(\"visible\",!!s))return e;i(\"layer\"),i(\"xanchor\"),i(\"yanchor\"),i(\"sizex\"),i(\"sizey\"),i(\"sizing\"),i(\"opacity\");for(var l={_fullLayout:r},c=[\"x\",\"y\"],u=0;u<2;u++){var h=c[u],f=a.coerceRef(t,e,l,h,\"paper\");if(\"paper\"!==f)a.getFromId(l,f)._imgIndices.push(e._index);a.coercePosition(e,l,i,f,h,0)}return e}e.exports=function(t,e){i(t,e,{name:\"images\",handleItemDefaults:s})}},{\"../../lib\":719,\"../../plots/array_container_defaults\":763,\"../../plots/cartesian/axes\":767,\"./attributes\":637}],640:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../drawing\"),i=t(\"../../plots/cartesian/axes\"),o=t(\"../../constants/xmlns_namespaces\");e.exports=function(t){var e,r,s=t._fullLayout,l=[],c={},u=[];for(r=0;r<s.images.length;r++){var h=s.images[r];if(h.visible)if(\"below\"===h.layer&&\"paper\"!==h.xref&&\"paper\"!==h.yref){e=h.xref+h.yref;var f=s._plots[e];if(!f){u.push(h);continue}f.mainplot&&(e=f.mainplot.id),c[e]||(c[e]=[]),c[e].push(h)}else\"above\"===h.layer?l.push(h):u.push(h)}var p={x:{left:{sizing:\"xMin\",offset:0},center:{sizing:\"xMid\",offset:-.5},right:{sizing:\"xMax\",offset:-1}},y:{top:{sizing:\"YMin\",offset:0},middle:{sizing:\"YMid\",offset:-.5},bottom:{sizing:\"YMax\",offset:-1}}};function d(e){var r=n.select(this);if(this._imgSrc!==e.source)if(r.attr(\"xmlns\",o.svg),e.source&&\"data:\"===e.source.slice(0,5))r.attr(\"xlink:href\",e.source),this._imgSrc=e.source;else{var a=new Promise(function(t){var n=new Image;function a(){r.remove(),t()}this.img=n,n.setAttribute(\"crossOrigin\",\"anonymous\"),n.onerror=a,n.onload=function(){var e=document.createElement(\"canvas\");e.width=this.width,e.height=this.height,e.getContext(\"2d\").drawImage(this,0,0);var n=e.toDataURL(\"image/png\");r.attr(\"xlink:href\",n),t()},r.on(\"error\",a),n.src=e.source,this._imgSrc=e.source}.bind(this));t._promises.push(a)}}function g(e){var r=n.select(this),o=i.getFromId(t,e.xref),l=i.getFromId(t,e.yref),c=s._size,u=o?Math.abs(o.l2p(e.sizex)-o.l2p(0)):e.sizex*c.w,h=l?Math.abs(l.l2p(e.sizey)-l.l2p(0)):e.sizey*c.h,f=u*p.x[e.xanchor].offset,d=h*p.y[e.yanchor].offset,g=p.x[e.xanchor].sizing+p.y[e.yanchor].sizing,v=(o?o.r2p(e.x)+o._offset:e.x*c.w+c.l)+f,m=(l?l.r2p(e.y)+l._offset:c.h-e.y*c.h+c.t)+d;switch(e.sizing){case\"fill\":g+=\" slice\";break;case\"stretch\":g=\"none\"}r.attr({x:v,y:m,width:u,height:h,preserveAspectRatio:g,opacity:e.opacity});var y=(o?o._id:\"\")+(l?l._id:\"\");a.setClipUrl(r,y?\"clip\"+s._uid+y:null,t)}var v=s._imageLowerLayer.selectAll(\"image\").data(u),m=s._imageUpperLayer.selectAll(\"image\").data(l);v.enter().append(\"image\"),m.enter().append(\"image\"),v.exit().remove(),m.exit().remove(),v.each(function(t){d.bind(this)(t),g.bind(this)(t)}),m.each(function(t){d.bind(this)(t),g.bind(this)(t)});var y=Object.keys(s._plots);for(r=0;r<y.length;r++){e=y[r];var x=s._plots[e];if(x.imagelayer){var b=x.imagelayer.selectAll(\"image\").data(c[e]||[]);b.enter().append(\"image\"),b.exit().remove(),b.each(function(t){d.bind(this)(t),g.bind(this)(t)})}}}},{\"../../constants/xmlns_namespaces\":696,\"../../plots/cartesian/axes\":767,\"../drawing\":615,d3:164}],641:[function(t,e,r){\"use strict\";e.exports={moduleType:\"component\",name:\"images\",layoutAttributes:t(\"./attributes\"),supplyLayoutDefaults:t(\"./defaults\"),includeBasePlot:t(\"../../plots/cartesian/include_components\")(\"images\"),draw:t(\"./draw\"),convertCoords:t(\"./convert_coords\")}},{\"../../plots/cartesian/include_components\":777,\"./attributes\":637,\"./convert_coords\":638,\"./defaults\":639,\"./draw\":640}],642:[function(t,e,r){\"use strict\";var n=t(\"../../plots/font_attributes\"),a=t(\"../color/attributes\");e.exports={bgcolor:{valType:\"color\",editType:\"legend\"},bordercolor:{valType:\"color\",dflt:a.defaultLine,editType:\"legend\"},borderwidth:{valType:\"number\",min:0,dflt:0,editType:\"legend\"},font:n({editType:\"legend\"}),orientation:{valType:\"enumerated\",values:[\"v\",\"h\"],dflt:\"v\",editType:\"legend\"},traceorder:{valType:\"flaglist\",flags:[\"reversed\",\"grouped\"],extras:[\"normal\"],editType:\"legend\"},tracegroupgap:{valType:\"number\",min:0,dflt:10,editType:\"legend\"},itemsizing:{valType:\"enumerated\",values:[\"trace\",\"constant\"],dflt:\"trace\",editType:\"legend\"},itemclick:{valType:\"enumerated\",values:[\"toggle\",\"toggleothers\",!1],dflt:\"toggle\",editType:\"legend\"},itemdoubleclick:{valType:\"enumerated\",values:[\"toggle\",\"toggleothers\",!1],dflt:\"toggleothers\",editType:\"legend\"},x:{valType:\"number\",min:-2,max:3,editType:\"legend\"},xanchor:{valType:\"enumerated\",values:[\"auto\",\"left\",\"center\",\"right\"],dflt:\"left\",editType:\"legend\"},y:{valType:\"number\",min:-2,max:3,editType:\"legend\"},yanchor:{valType:\"enumerated\",values:[\"auto\",\"top\",\"middle\",\"bottom\"],editType:\"legend\"},uirevision:{valType:\"any\",editType:\"none\"},valign:{valType:\"enumerated\",values:[\"top\",\"middle\",\"bottom\"],dflt:\"middle\",editType:\"legend\"},editType:\"legend\"}},{\"../../plots/font_attributes\":793,\"../color/attributes\":593}],643:[function(t,e,r){\"use strict\";e.exports={scrollBarWidth:6,scrollBarMinHeight:20,scrollBarColor:\"#808BA4\",scrollBarMargin:4,scrollBarEnterAttrs:{rx:20,ry:3,width:0,height:0},textGap:40,itemGap:5}},{}],644:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\"),i=t(\"../../plot_api/plot_template\"),o=t(\"./attributes\"),s=t(\"../../plots/layout_attributes\"),l=t(\"./helpers\");e.exports=function(t,e,r){for(var c=t.legend||{},u=0,h=!1,f=\"normal\",p=0;p<r.length;p++){var d=r[p];d.visible&&((d.showlegend||d._dfltShowLegend)&&(u++,d.showlegend&&(h=!0,(n.traceIs(d,\"pie-like\")||!0===d._input.showlegend)&&u++)),(n.traceIs(d,\"bar\")&&\"stack\"===e.barmode||-1!==[\"tonextx\",\"tonexty\"].indexOf(d.fill))&&(f=l.isGrouped({traceorder:f})?\"grouped+reversed\":\"reversed\"),void 0!==d.legendgroup&&\"\"!==d.legendgroup&&(f=l.isReversed({traceorder:f})?\"reversed+grouped\":\"grouped\"))}var g=a.coerce(t,e,s,\"showlegend\",h&&u>1);if(!1!==g||c.uirevision){var v,m,y,x=i.newContainer(e,\"legend\");if(b(\"uirevision\",e.uirevision),!1!==g)b(\"bgcolor\",e.paper_bgcolor),b(\"bordercolor\"),b(\"borderwidth\"),a.coerceFont(b,\"font\",e.font),\"h\"===b(\"orientation\")?(v=0,n.getComponentMethod(\"rangeslider\",\"isVisible\")(t.xaxis)?(m=1.1,y=\"bottom\"):(m=-.1,y=\"top\")):(v=1.02,m=1,y=\"auto\"),b(\"traceorder\",f),l.isGrouped(e.legend)&&b(\"tracegroupgap\"),b(\"itemsizing\"),b(\"itemclick\"),b(\"itemdoubleclick\"),b(\"x\",v),b(\"xanchor\"),b(\"y\",m),b(\"yanchor\",y),b(\"valign\"),a.noneOrAll(c,x,[\"x\",\"y\"])}function b(t,e){return a.coerce(c,x,o,t,e)}}},{\"../../lib\":719,\"../../plot_api/plot_template\":757,\"../../plots/layout_attributes\":819,\"../../registry\":848,\"./attributes\":642,\"./helpers\":648}],645:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../lib\"),i=t(\"../../plots/plots\"),o=t(\"../../registry\"),s=t(\"../../lib/events\"),l=t(\"../dragelement\"),c=t(\"../drawing\"),u=t(\"../color\"),h=t(\"../../lib/svg_text_utils\"),f=t(\"./handle_click\"),p=t(\"./constants\"),d=t(\"../../constants/alignment\"),g=d.LINE_SPACING,v=d.FROM_TL,m=d.FROM_BR,y=t(\"./get_legend_data\"),x=t(\"./style\"),b=t(\"./helpers\");function _(t,e,r,n,a){var i=r.data()[0][0].trace,l={event:a,node:r.node(),curveNumber:i.index,expandedIndex:i._expandedIndex,data:t.data,layout:t.layout,frames:t._transitionData._frames,config:t._context,fullData:t._fullData,fullLayout:t._fullLayout};if(i._group&&(l.group=i._group),o.traceIs(i,\"pie-like\")&&(l.label=r.datum()[0].label),!1!==s.triggerHandler(t,\"plotly_legendclick\",l))if(1===n)e._clickTimeout=setTimeout(function(){f(r,t,n)},t._context.doubleClickDelay);else if(2===n){e._clickTimeout&&clearTimeout(e._clickTimeout),t._legendMouseDownTime=0,!1!==s.triggerHandler(t,\"plotly_legenddoubleclick\",l)&&f(r,t,n)}}function w(t,e){var r=t.data()[0][0],n=e._fullLayout,i=n.legend,s=r.trace,l=o.traceIs(s,\"pie-like\"),u=s.index,f=e._context.edits.legendText&&!l,d=i._maxNameLength,v=l?r.label:s.name;s._meta&&(v=a.templateString(v,s._meta));var m=a.ensureSingle(t,\"text\",\"legendtext\");function y(r){h.convertToTspans(r,e,function(){!function(t,e){var r=t.data()[0][0];if(!r.trace.showlegend)return void t.remove();var n,a,i=t.select(\"g[class*=math-group]\"),o=i.node(),s=e._fullLayout.legend.font.size*g;if(o){var l=c.bBox(o);n=l.height,a=l.width,c.setTranslate(i,0,n/4)}else{var u=t.select(\".legendtext\"),f=h.lineCount(u),d=u.node();n=s*f,a=d?c.bBox(d).width:0;var v=s*(.3+(1-f)/2);h.positionText(u,p.textGap,v)}r.lineHeight=s,r.height=Math.max(n,16)+3,r.width=a}(t,e)})}m.attr(\"text-anchor\",\"start\").classed(\"user-select-none\",!0).call(c.font,n.legend.font).text(f?k(v,d):v),h.positionText(m,p.textGap,0),f?m.call(h.makeEditable,{gd:e,text:v}).call(y).on(\"edit\",function(t){this.text(k(t,d)).call(y);var n=r.trace._fullInput||{},i={};if(o.hasTransform(n,\"groupby\")){var s=o.getTransformIndices(n,\"groupby\"),l=s[s.length-1],c=a.keyedContainer(n,\"transforms[\"+l+\"].styles\",\"target\",\"value.name\");c.set(r.trace._group,t),i=c.constructUpdate()}else i.name=t;return o.call(\"_guiRestyle\",e,i,u)}):y(m)}function k(t,e){var r=Math.max(4,e);if(t&&t.trim().length>=r/2)return t;for(var n=r-(t=t||\"\").length;n>0;n--)t+=\" \";return t}function T(t,e){var r,i=e._context.doubleClickDelay,o=1,s=a.ensureSingle(t,\"rect\",\"legendtoggle\",function(t){t.style(\"cursor\",\"pointer\").attr(\"pointer-events\",\"all\").call(u.fill,\"rgba(0,0,0,0)\")});s.on(\"mousedown\",function(){(r=(new Date).getTime())-e._legendMouseDownTime<i?o+=1:(o=1,e._legendMouseDownTime=r)}),s.on(\"mouseup\",function(){if(!e._dragged&&!e._editing){var r=e._fullLayout.legend;(new Date).getTime()-e._legendMouseDownTime>i&&(o=Math.max(o-1,1)),_(e,r,t,o,n.event)}})}function A(t){return a.isRightAnchor(t)?\"right\":a.isCenterAnchor(t)?\"center\":\"left\"}function M(t){return a.isBottomAnchor(t)?\"bottom\":a.isMiddleAnchor(t)?\"middle\":\"top\"}e.exports=function(t){var e=t._fullLayout,r=\"legend\"+e._uid;if(e._infolayer&&t.calcdata){t._legendMouseDownTime||(t._legendMouseDownTime=0);var s=e.legend,h=e.showlegend&&y(t.calcdata,s),f=e.hiddenlabels||[];if(!e.showlegend||!h.length)return e._infolayer.selectAll(\".legend\").remove(),e._topdefs.select(\"#\"+r).remove(),i.autoMargin(t,\"legend\");var d=a.ensureSingle(e._infolayer,\"g\",\"legend\",function(t){t.attr(\"pointer-events\",\"all\")}),g=a.ensureSingleById(e._topdefs,\"clipPath\",r,function(t){t.append(\"rect\")}),k=a.ensureSingle(d,\"rect\",\"bg\",function(t){t.attr(\"shape-rendering\",\"crispEdges\")});k.call(u.stroke,s.bordercolor).call(u.fill,s.bgcolor).style(\"stroke-width\",s.borderwidth+\"px\");var S=a.ensureSingle(d,\"g\",\"scrollbox\"),E=a.ensureSingle(d,\"rect\",\"scrollbar\",function(t){t.attr(p.scrollBarEnterAttrs).call(u.fill,p.scrollBarColor)}),C=S.selectAll(\"g.groups\").data(h);C.enter().append(\"g\").attr(\"class\",\"groups\"),C.exit().remove();var L=C.selectAll(\"g.traces\").data(a.identity);L.enter().append(\"g\").attr(\"class\",\"traces\"),L.exit().remove(),L.style(\"opacity\",function(t){var e=t[0].trace;return o.traceIs(e,\"pie-like\")?-1!==f.indexOf(t[0].label)?.5:1:\"legendonly\"===e.visible?.5:1}).each(function(){n.select(this).call(w,t)}).call(x,t).each(function(){n.select(this).call(T,t)}),a.syncOrAsync([i.previousPromises,function(){return function(t,e,r){var a=t._fullLayout,i=a.legend,o=a._size,s=b.isVertical(i),l=b.isGrouped(i),u=i.borderwidth,h=2*u,f=p.textGap,d=p.itemGap,g=2*(u+d),v=M(i),m=i.y<0||0===i.y&&\"top\"===v,y=i.y>1||1===i.y&&\"bottom\"===v;i._maxHeight=Math.max(m||y?a.height/2:o.h,30);var x=0;if(i._width=0,i._height=0,s)r.each(function(t){var e=t[0].height;c.setTranslate(this,u,d+u+i._height+e/2),i._height+=e,i._width=Math.max(i._width,t[0].width)}),x=f+i._width,i._width+=d+f+h,i._height+=g,l&&(e.each(function(t,e){c.setTranslate(this,0,e*i.tracegroupgap)}),i._height+=(i._lgroupsLength-1)*i.tracegroupgap);else{var _=A(i),w=i.x<0||0===i.x&&\"right\"===_,k=i.x>1||1===i.x&&\"left\"===_,T=y||m,S=a.width/2;i._maxWidth=Math.max(w?T&&\"left\"===_?o.l+o.w:S:k?T&&\"right\"===_?o.r+o.w:S:o.w,2*f);var E=0,C=0;r.each(function(t){var e=t[0].width+f;E=Math.max(E,e),C+=e}),x=null;var L=0;if(l){var P=0,O=0,I=0;e.each(function(){var t=0,e=0;n.select(this).selectAll(\"g.traces\").each(function(r){var n=r[0].height;c.setTranslate(this,0,d+u+n/2+e),e+=n,t=Math.max(t,f+r[0].width)}),P=Math.max(P,e);var r=t+d;r+u+O>i._maxWidth&&(L=Math.max(L,O),O=0,I+=P+i.tracegroupgap,P=e),c.setTranslate(this,O,I),O+=r}),i._width=Math.max(L,O)+u,i._height=I+P+g}else{var z=r.size(),D=C+h+(z-1)*d<i._maxWidth,R=0,F=0,B=0,N=0;r.each(function(t){var e=t[0].height,r=f+t[0].width,n=(D?r:E)+d;n+u+F>i._maxWidth&&(L=Math.max(L,N),F=0,B+=R,i._height+=R,R=0),c.setTranslate(this,u+F,d+u+e/2+B),N=F+r+d,F+=n,R=Math.max(R,e)}),D?(i._width=F+h,i._height=R+g):(i._width=Math.max(L,N)+h,i._height+=R+g)}}i._width=Math.ceil(i._width),i._height=Math.ceil(i._height),i._effHeight=Math.min(i._height,i._maxHeight);var j=t._context.edits,V=j.legendText||j.legendPosition;r.each(function(t){var e=n.select(this).select(\".legendtoggle\"),r=t[0].height,a=V?f:x||f+t[0].width;s||(a+=d/2),c.setRect(e,0,-r/2,a,r)})}(t,C,L)},function(){if(!function(t){var e=t._fullLayout.legend,r=A(e),n=M(e);return i.autoMargin(t,\"legend\",{x:e.x,y:e.y,l:e._width*v[r],r:e._width*m[r],b:e._effHeight*m[n],t:e._effHeight*v[n]})}(t)){var u,h,f,y,x=e._size,b=s.borderwidth,w=x.l+x.w*s.x-v[A(s)]*s._width,T=x.t+x.h*(1-s.y)-v[M(s)]*s._effHeight;if(e.margin.autoexpand){var C=w,L=T;w=a.constrain(w,0,e.width-s._width),T=a.constrain(T,0,e.height-s._effHeight),w!==C&&a.log(\"Constrain legend.x to make legend fit inside graph\"),T!==L&&a.log(\"Constrain legend.y to make legend fit inside graph\")}if(c.setTranslate(d,w,T),E.on(\".drag\",null),d.on(\"wheel\",null),s._height<=s._maxHeight||t._context.staticPlot)k.attr({width:s._width-b,height:s._effHeight-b,x:b/2,y:b/2}),c.setTranslate(S,0,0),g.select(\"rect\").attr({width:s._width-2*b,height:s._effHeight-2*b,x:b,y:b}),c.setClipUrl(S,r,t),c.setRect(E,0,0,0,0),delete s._scrollY;else{var P,O,I,z=Math.max(p.scrollBarMinHeight,s._effHeight*s._effHeight/s._height),D=s._effHeight-z-2*p.scrollBarMargin,R=s._height-s._effHeight,F=D/R,B=Math.min(s._scrollY||0,R);k.attr({width:s._width-2*b+p.scrollBarWidth+p.scrollBarMargin,height:s._effHeight-b,x:b/2,y:b/2}),g.select(\"rect\").attr({width:s._width-2*b+p.scrollBarWidth+p.scrollBarMargin,height:s._effHeight-2*b,x:b,y:b+B}),c.setClipUrl(S,r,t),V(B,z,F),d.on(\"wheel\",function(){V(B=a.constrain(s._scrollY+n.event.deltaY/D*R,0,R),z,F),0!==B&&B!==R&&n.event.preventDefault()});var N=n.behavior.drag().on(\"dragstart\",function(){var t=n.event.sourceEvent;P=\"touchstart\"===t.type?t.changedTouches[0].clientY:t.clientY,I=B}).on(\"drag\",function(){var t=n.event.sourceEvent;2===t.buttons||t.ctrlKey||(O=\"touchmove\"===t.type?t.changedTouches[0].clientY:t.clientY,V(B=function(t,e,r){var n=(r-e)/F+t;return a.constrain(n,0,R)}(I,P,O),z,F))});E.call(N);var j=n.behavior.drag().on(\"dragstart\",function(){var t=n.event.sourceEvent;\"touchstart\"===t.type&&(P=t.changedTouches[0].clientY,I=B)}).on(\"drag\",function(){var t=n.event.sourceEvent;\"touchmove\"===t.type&&(O=t.changedTouches[0].clientY,V(B=function(t,e,r){var n=(e-r)/F+t;return a.constrain(n,0,R)}(I,P,O),z,F))});S.call(j)}if(t._context.edits.legendPosition)d.classed(\"cursor-move\",!0),l.init({element:d.node(),gd:t,prepFn:function(){var t=c.getTranslate(d);f=t.x,y=t.y},moveFn:function(t,e){var r=f+t,n=y+e;c.setTranslate(d,r,n),u=l.align(r,0,x.l,x.l+x.w,s.xanchor),h=l.align(n,0,x.t+x.h,x.t,s.yanchor)},doneFn:function(){void 0!==u&&void 0!==h&&o.call(\"_guiRelayout\",t,{\"legend.x\":u,\"legend.y\":h})},clickFn:function(r,n){var a=e._infolayer.selectAll(\"g.traces\").filter(function(){var t=this.getBoundingClientRect();return n.clientX>=t.left&&n.clientX<=t.right&&n.clientY>=t.top&&n.clientY<=t.bottom});a.size()>0&&_(t,d,a,r,n)}})}function V(e,r,n){s._scrollY=t._fullLayout.legend._scrollY=e,c.setTranslate(S,0,-e),c.setRect(E,s._width,p.scrollBarMargin+e*n,p.scrollBarWidth,r),g.select(\"rect\").attr(\"y\",b+e)}}],t)}}},{\"../../constants/alignment\":688,\"../../lib\":719,\"../../lib/events\":709,\"../../lib/svg_text_utils\":743,\"../../plots/plots\":828,\"../../registry\":848,\"../color\":594,\"../dragelement\":612,\"../drawing\":615,\"./constants\":643,\"./get_legend_data\":646,\"./handle_click\":647,\"./helpers\":648,\"./style\":650,d3:164}],646:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"./helpers\");e.exports=function(t,e){var r,i,o={},s=[],l=!1,c={},u=0,h=0;function f(t,r){if(\"\"!==t&&a.isGrouped(e))-1===s.indexOf(t)?(s.push(t),l=!0,o[t]=[[r]]):o[t].push([r]);else{var n=\"~~i\"+u;s.push(n),o[n]=[[r]],u++}}for(r=0;r<t.length;r++){var p=t[r],d=p[0],g=d.trace,v=g.legendgroup;if(g.visible&&g.showlegend)if(n.traceIs(g,\"pie-like\"))for(c[v]||(c[v]={}),i=0;i<p.length;i++){var m=p[i].label;c[v][m]||(f(v,{label:m,color:p[i].color,i:p[i].i,trace:g,pts:p[i].pts}),c[v][m]=!0,h=Math.max(h,(m||\"\").length))}else f(v,d),h=Math.max(h,(g.name||\"\").length)}if(!s.length)return[];var y,x,b=s.length;if(l&&a.isGrouped(e))for(x=new Array(b),r=0;r<b;r++)y=o[s[r]],x[r]=a.isReversed(e)?y.reverse():y;else{for(x=[new Array(b)],r=0;r<b;r++)y=o[s[r]][0],x[0][a.isReversed(e)?b-r-1:r]=y;b=1}return e._lgroupsLength=b,e._maxNameLength=h,x}},{\"../../registry\":848,\"./helpers\":648}],647:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../registry\"),i=!0;e.exports=function(t,e,r){var o=e._fullLayout;if(!e._dragged&&!e._editing){var s,l=o.legend.itemclick,c=o.legend.itemdoubleclick;if(1===r&&\"toggle\"===l&&\"toggleothers\"===c&&i&&e.data&&e._context.showTips?(n.notifier(n._(e,\"Double-click on legend to isolate one trace\"),\"long\"),i=!1):i=!1,1===r?s=l:2===r&&(s=c),s){var u,h,f,p,d,g=o.hiddenlabels?o.hiddenlabels.slice():[],v=t.data()[0][0],m=e._fullData,y=v.trace,x=y.legendgroup,b={},_=[],w=[],k=[];if(a.traceIs(y,\"pie-like\")){var T=v.label,A=g.indexOf(T);\"toggle\"===s?-1===A?g.push(T):g.splice(A,1):\"toggleothers\"===s&&(g=[],e.calcdata[0].forEach(function(t){T!==t.label&&g.push(t.label)}),e._fullLayout.hiddenlabels&&e._fullLayout.hiddenlabels.length===g.length&&-1===A&&(g=[])),a.call(\"_guiRelayout\",e,\"hiddenlabels\",g)}else{var M,S=x&&x.length,E=[];if(S)for(u=0;u<m.length;u++)(M=m[u]).visible&&M.legendgroup===x&&E.push(u);if(\"toggle\"===s){var C;switch(y.visible){case!0:C=\"legendonly\";break;case!1:C=!1;break;case\"legendonly\":C=!0}if(S)for(u=0;u<m.length;u++)!1!==m[u].visible&&m[u].legendgroup===x&&R(m[u],C);else R(y,C)}else if(\"toggleothers\"===s){var L,P,O=!0;for(u=0;u<m.length;u++)if(!(m[u]===y)&&!(L=S&&m[u].legendgroup===x)&&!0===m[u].visible&&!a.traceIs(m[u],\"notLegendIsolatable\")){O=!1;break}for(u=0;u<m.length;u++)if(!1!==m[u].visible&&!a.traceIs(m[u],\"notLegendIsolatable\"))switch(y.visible){case\"legendonly\":R(m[u],!0);break;case!0:P=!!O||\"legendonly\",L=m[u]===y||S&&m[u].legendgroup===x,R(m[u],!!L||P)}}for(u=0;u<w.length;u++)if(f=w[u]){var I=f.constructUpdate(),z=Object.keys(I);for(h=0;h<z.length;h++)p=z[h],(b[p]=b[p]||[])[k[u]]=I[p]}for(d=Object.keys(b),u=0;u<d.length;u++)for(p=d[u],h=0;h<_.length;h++)b[p].hasOwnProperty(h)||(b[p][h]=void 0);a.call(\"_guiRestyle\",e,b,_)}}}function D(t,e,r){var n=_.indexOf(t),a=b[e];return a||(a=b[e]=[]),-1===_.indexOf(t)&&(_.push(t),n=_.length-1),a[n]=r,n}function R(t,e){var r=t._fullInput;if(a.hasTransform(r,\"groupby\")){var i=w[r.index];if(!i){var o=a.getTransformIndices(r,\"groupby\"),s=o[o.length-1];i=n.keyedContainer(r,\"transforms[\"+s+\"].styles\",\"target\",\"value.visible\"),w[r.index]=i}var l=i.get(t._group);void 0===l&&(l=!0),!1!==l&&i.set(t._group,e),k[r.index]=D(r.index,\"visible\",!1!==r.visible)}else{var c=!1!==r.visible&&e;D(r.index,\"visible\",c)}}}},{\"../../lib\":719,\"../../registry\":848}],648:[function(t,e,r){\"use strict\";r.isGrouped=function(t){return-1!==(t.traceorder||\"\").indexOf(\"grouped\")},r.isVertical=function(t){return\"h\"!==t.orientation},r.isReversed=function(t){return-1!==(t.traceorder||\"\").indexOf(\"reversed\")}},{}],649:[function(t,e,r){\"use strict\";e.exports={moduleType:\"component\",name:\"legend\",layoutAttributes:t(\"./attributes\"),supplyLayoutDefaults:t(\"./defaults\"),draw:t(\"./draw\"),style:t(\"./style\")}},{\"./attributes\":642,\"./defaults\":644,\"./draw\":645,\"./style\":650}],650:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../registry\"),i=t(\"../../lib\"),o=t(\"../drawing\"),s=t(\"../color\"),l=t(\"../../traces/scatter/subtypes\"),c=t(\"../../traces/pie/style_one\"),u=t(\"../../traces/pie/helpers\").castOption,h=12,f=5,p=2,d=10,g=5;e.exports=function(t,e){var r=e._fullLayout.legend,v=\"constant\"===r.itemsizing;function m(t,e,r,n){var a;if(t+1)a=t;else{if(!(e&&e.width>0))return 0;a=e.width}return v?n:Math.min(a,r)}function y(t,e,r){var i=t[0].trace,o=i.marker||{},l=o.line||{},c=r?i.type===r&&i.visible:a.traceIs(i,\"bar\"),u=n.select(e).select(\"g.legendpoints\").selectAll(\"path.legend\"+r).data(c?[t]:[]);u.enter().append(\"path\").classed(\"legend\"+r,!0).attr(\"d\",\"M6,6H-6V-6H6Z\").attr(\"transform\",\"translate(20,0)\"),u.exit().remove(),u.each(function(t){var e=n.select(this),r=t[0],a=m(r.mlw,o.line,g,p);e.style(\"stroke-width\",a+\"px\").call(s.fill,r.mc||o.color),a&&s.stroke(e,r.mlc||l.color)})}function x(t,e,r){var o=t[0],s=o.trace,l=r?s.type===r&&s.visible:a.traceIs(s,r),h=n.select(e).select(\"g.legendpoints\").selectAll(\"path.legend\"+r).data(l?[t]:[]);if(h.enter().append(\"path\").classed(\"legend\"+r,!0).attr(\"d\",\"M6,6H-6V-6H6Z\").attr(\"transform\",\"translate(20,0)\"),h.exit().remove(),h.size()){var f=(s.marker||{}).line,d=m(u(f.width,o.pts),f,g,p),v=i.minExtend(s,{marker:{line:{width:d}}});v.marker.line.color=f.color;var y=i.minExtend(o,{trace:v});c(h,y,v)}}t.each(function(t){var e=n.select(this),a=i.ensureSingle(e,\"g\",\"layers\");a.style(\"opacity\",t[0].trace.opacity);var o=r.valign,s=t[0].lineHeight,l=t[0].height;if(\"middle\"!==o&&s&&l){var c={top:1,bottom:-1}[o]*(.5*(s-l+3));a.attr(\"transform\",\"translate(0,\"+c+\")\")}else a.attr(\"transform\",null);a.selectAll(\"g.legendfill\").data([t]).enter().append(\"g\").classed(\"legendfill\",!0),a.selectAll(\"g.legendlines\").data([t]).enter().append(\"g\").classed(\"legendlines\",!0);var u=a.selectAll(\"g.legendsymbols\").data([t]);u.enter().append(\"g\").classed(\"legendsymbols\",!0),u.selectAll(\"g.legendpoints\").data([t]).enter().append(\"g\").classed(\"legendpoints\",!0)}).each(function(t){var e=t[0].trace,r=[];\"waterfall\"===e.type&&e.visible&&(r=t[0].hasTotals?[[\"increasing\",\"M-6,-6V6H0Z\"],[\"totals\",\"M6,6H0L-6,-6H-0Z\"],[\"decreasing\",\"M6,6V-6H0Z\"]]:[[\"increasing\",\"M-6,-6V6H6Z\"],[\"decreasing\",\"M6,6V-6H-6Z\"]]);var a=n.select(this).select(\"g.legendpoints\").selectAll(\"path.legendwaterfall\").data(r);a.enter().append(\"path\").classed(\"legendwaterfall\",!0).attr(\"transform\",\"translate(20,0)\").style(\"stroke-miterlimit\",1),a.exit().remove(),a.each(function(t){var r=n.select(this),a=e[t[0]].marker,i=m(void 0,a.line,g,p);r.attr(\"d\",t[1]).style(\"stroke-width\",i+\"px\").call(s.fill,a.color),i&&r.call(s.stroke,a.line.color)})}).each(function(t){y(t,this,\"funnel\")}).each(function(t){y(t,this)}).each(function(t){var r=t[0].trace,l=n.select(this).select(\"g.legendpoints\").selectAll(\"path.legendbox\").data(a.traceIs(r,\"box-violin\")&&r.visible?[t]:[]);l.enter().append(\"path\").classed(\"legendbox\",!0).attr(\"d\",\"M6,6H-6V-6H6Z\").attr(\"transform\",\"translate(20,0)\"),l.exit().remove(),l.each(function(){var t=n.select(this);if(\"all\"!==r.boxpoints&&\"all\"!==r.points||0!==s.opacity(r.fillcolor)||0!==s.opacity((r.line||{}).color)){var a=m(void 0,r.line,g,p);t.style(\"stroke-width\",a+\"px\").call(s.fill,r.fillcolor),a&&s.stroke(t,r.line.color)}else{var c=i.minExtend(r,{marker:{size:v?h:i.constrain(r.marker.size,2,16),sizeref:1,sizemin:1,sizemode:\"diameter\"}});l.call(o.pointStyle,c,e)}})}).each(function(t){x(t,this,\"funnelarea\")}).each(function(t){x(t,this,\"pie\")}).each(function(t){var r,a,s=t[0],c=s.trace,u=c.visible&&c.fill&&\"none\"!==c.fill,h=l.hasLines(c),p=c.contours,g=!1,v=!1;if(p){var y=p.coloring;\"lines\"===y?g=!0:h=\"none\"===y||\"heatmap\"===y||p.showlines,\"constraint\"===p.type?u=\"=\"!==p._operation:\"fill\"!==y&&\"heatmap\"!==y||(v=!0)}var x=l.hasMarkers(c)||l.hasText(c),b=u||v,_=h||g,w=x||!b?\"M5,0\":_?\"M5,-2\":\"M5,-3\",k=n.select(this),T=k.select(\".legendfill\").selectAll(\"path\").data(u||v?[t]:[]);if(T.enter().append(\"path\").classed(\"js-fill\",!0),T.exit().remove(),T.attr(\"d\",w+\"h30v6h-30z\").call(u?o.fillGroupStyle:function(t){if(t.size()){var r=\"legendfill-\"+c.uid;o.gradient(t,e,r,\"horizontalreversed\",c.colorscale,\"fill\")}}),h||g){var A=m(void 0,c.line,d,f);a=i.minExtend(c,{line:{width:A}}),r=[i.minExtend(s,{trace:a})]}var M=k.select(\".legendlines\").selectAll(\"path\").data(h||g?[r]:[]);M.enter().append(\"path\").classed(\"js-line\",!0),M.exit().remove(),M.attr(\"d\",w+(g?\"l30,0.0001\":\"h30\")).call(h?o.lineGroupStyle:function(t){if(t.size()){var r=\"legendline-\"+c.uid;o.lineGroupStyle(t),o.gradient(t,e,r,\"horizontalreversed\",c.colorscale,\"stroke\")}})}).each(function(t){var r,a,s=t[0],c=s.trace,u=l.hasMarkers(c),d=l.hasText(c),g=l.hasLines(c);function m(t,e,r,n){var a=i.nestedProperty(c,t).get(),o=i.isArrayOrTypedArray(a)&&e?e(a):a;if(v&&o&&void 0!==n&&(o=n),r){if(o<r[0])return r[0];if(o>r[1])return r[1]}return o}function y(t){return t[0]}if(u||d||g){var x={},b={};if(u){x.mc=m(\"marker.color\",y),x.mx=m(\"marker.symbol\",y),x.mo=m(\"marker.opacity\",i.mean,[.2,1]),x.mlc=m(\"marker.line.color\",y),x.mlw=m(\"marker.line.width\",i.mean,[0,5],p),b.marker={sizeref:1,sizemin:1,sizemode:\"diameter\"};var _=m(\"marker.size\",i.mean,[2,16],h);x.ms=_,b.marker.size=_}g&&(b.line={width:m(\"line.width\",y,[0,10],f)}),d&&(x.tx=\"Aa\",x.tp=m(\"textposition\",y),x.ts=10,x.tc=m(\"textfont.color\",y),x.tf=m(\"textfont.family\",y)),r=[i.minExtend(s,x)],(a=i.minExtend(c,b)).selectedpoints=null}var w=n.select(this).select(\"g.legendpoints\"),k=w.selectAll(\"path.scatterpts\").data(u?r:[]);k.enter().insert(\"path\",\":first-child\").classed(\"scatterpts\",!0).attr(\"transform\",\"translate(20,0)\"),k.exit().remove(),k.call(o.pointStyle,a,e),u&&(r[0].mrc=3);var T=w.selectAll(\"g.pointtext\").data(d?r:[]);T.enter().append(\"g\").classed(\"pointtext\",!0).append(\"text\").attr(\"transform\",\"translate(20,0)\"),T.exit().remove(),T.selectAll(\"text\").call(o.textPointStyle,a,e,!0)}).each(function(t){var e=t[0].trace,r=n.select(this).select(\"g.legendpoints\").selectAll(\"path.legendcandle\").data(\"candlestick\"===e.type&&e.visible?[t,t]:[]);r.enter().append(\"path\").classed(\"legendcandle\",!0).attr(\"d\",function(t,e){return e?\"M-15,0H-8M-8,6V-6H8Z\":\"M15,0H8M8,-6V6H-8Z\"}).attr(\"transform\",\"translate(20,0)\").style(\"stroke-miterlimit\",1),r.exit().remove(),r.each(function(t,r){var a=n.select(this),i=e[r?\"increasing\":\"decreasing\"],o=m(void 0,i.line,g,p);a.style(\"stroke-width\",o+\"px\").call(s.fill,i.fillcolor),o&&s.stroke(a,i.line.color)})}).each(function(t){var e=t[0].trace,r=n.select(this).select(\"g.legendpoints\").selectAll(\"path.legendohlc\").data(\"ohlc\"===e.type&&e.visible?[t,t]:[]);r.enter().append(\"path\").classed(\"legendohlc\",!0).attr(\"d\",function(t,e){return e?\"M-15,0H0M-8,-6V0\":\"M15,0H0M8,6V0\"}).attr(\"transform\",\"translate(20,0)\").style(\"stroke-miterlimit\",1),r.exit().remove(),r.each(function(t,r){var a=n.select(this),i=e[r?\"increasing\":\"decreasing\"],l=m(void 0,i.line,g,p);a.style(\"fill\",\"none\").call(o.dashLine,i.line.dash,l),l&&s.stroke(a,i.line.color)})})}},{\"../../lib\":719,\"../../registry\":848,\"../../traces/pie/helpers\":1090,\"../../traces/pie/style_one\":1096,\"../../traces/scatter/subtypes\":1134,\"../color\":594,\"../drawing\":615,d3:164}],651:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../plots/plots\"),i=t(\"../../plots/cartesian/axis_ids\"),o=t(\"../../lib\"),s=t(\"../../fonts/ploticon\"),l=o._,c=e.exports={};function u(t,e){var r,a,o=e.currentTarget,s=o.getAttribute(\"data-attr\"),l=o.getAttribute(\"data-val\")||!0,c=t._fullLayout,u={},h=i.list(t,null,!0),f=c._cartesianSpikesEnabled;if(\"zoom\"===s){var p,d=\"in\"===l?.5:2,g=(1+d)/2,v=(1-d)/2;for(a=0;a<h.length;a++)if(!(r=h[a]).fixedrange)if(p=r._name,\"auto\"===l)u[p+\".autorange\"]=!0;else if(\"reset\"===l){if(void 0===r._rangeInitial)u[p+\".autorange\"]=!0;else{var m=r._rangeInitial.slice();u[p+\".range[0]\"]=m[0],u[p+\".range[1]\"]=m[1]}void 0!==r._showSpikeInitial&&(u[p+\".showspikes\"]=r._showSpikeInitial,\"on\"!==f||r._showSpikeInitial||(f=\"off\"))}else{var y=[r.r2l(r.range[0]),r.r2l(r.range[1])],x=[g*y[0]+v*y[1],g*y[1]+v*y[0]];u[p+\".range[0]\"]=r.l2r(x[0]),u[p+\".range[1]\"]=r.l2r(x[1])}}else\"hovermode\"!==s||\"x\"!==l&&\"y\"!==l||(l=c._isHoriz?\"y\":\"x\",o.setAttribute(\"data-val\",l)),u[s]=l;c._cartesianSpikesEnabled=f,n.call(\"_guiRelayout\",t,u)}function h(t,e){for(var r=e.currentTarget,a=r.getAttribute(\"data-attr\"),i=r.getAttribute(\"data-val\")||!0,o=t._fullLayout._subplots.gl3d,s={},l=a.split(\".\"),c=0;c<o.length;c++)s[o[c]+\".\"+l[1]]=i;var u=\"pan\"===i?i:\"zoom\";s.dragmode=u,n.call(\"_guiRelayout\",t,s)}function f(t,e){for(var r=e.currentTarget.getAttribute(\"data-attr\"),a=t._fullLayout,i=a._subplots.gl3d||[],o={},s=0;s<i.length;s++){var l=i[s],c=l+\".camera\",u=a[l]._scene;\"resetLastSave\"===r?(o[c+\".up\"]=u.viewInitial.up,o[c+\".eye\"]=u.viewInitial.eye,o[c+\".center\"]=u.viewInitial.center):\"resetDefault\"===r&&(o[c+\".up\"]=null,o[c+\".eye\"]=null,o[c+\".center\"]=null)}n.call(\"_guiRelayout\",t,o)}function p(t,e){var r=e.currentTarget,n=r._previousVal,a=t._fullLayout,i=a._subplots.gl3d||[],o=[\"xaxis\",\"yaxis\",\"zaxis\"],s={},l={};if(n)l=n,r._previousVal=null;else{for(var c=0;c<i.length;c++){var u=i[c],h=a[u],f=u+\".hovermode\";s[f]=h.hovermode,l[f]=!1;for(var p=0;p<3;p++){var d=o[p],g=u+\".\"+d+\".showspikes\";l[g]=!1,s[g]=h[d].showspikes}}r._previousVal=s}return l}function d(t,e){for(var r=e.currentTarget,a=r.getAttribute(\"data-attr\"),i=r.getAttribute(\"data-val\")||!0,o=t._fullLayout,s=o._subplots.geo,l=0;l<s.length;l++){var c=s[l],u=o[c];if(\"zoom\"===a){var h=u.projection.scale,f=\"in\"===i?2*h:.5*h;n.call(\"_guiRelayout\",t,c+\".projection.scale\",f)}else\"reset\"===a&&m(t,\"geo\")}}function g(t){var e=t._fullLayout;return!e.hovermode&&(e._has(\"cartesian\")?e._isHoriz?\"y\":\"x\":\"closest\")}function v(t){var e=g(t);n.call(\"_guiRelayout\",t,\"hovermode\",e)}function m(t,e){for(var r=t._fullLayout,a=r._subplots[e]||[],i={},o=0;o<a.length;o++)for(var s=a[o],l=r[s]._subplot.viewInitial,c=Object.keys(l),u=0;u<c.length;u++){var h=c[u];i[s+\".\"+h]=l[h]}n.call(\"_guiRelayout\",t,i)}c.toImage={name:\"toImage\",title:function(t){var e=(t._context.toImageButtonOptions||{}).format||\"png\";return l(t,\"png\"===e?\"Download plot as a png\":\"Download plot\")},icon:s.camera,click:function(t){var e=t._context.toImageButtonOptions,r={format:e.format||\"png\"};o.notifier(l(t,\"Taking snapshot - this may take a few seconds\"),\"long\"),\"svg\"!==r.format&&o.isIE()&&(o.notifier(l(t,\"IE only supports svg.  Changing format to svg.\"),\"long\"),r.format=\"svg\"),[\"filename\",\"width\",\"height\",\"scale\"].forEach(function(t){t in e&&(r[t]=e[t])}),n.call(\"downloadImage\",t,r).then(function(e){o.notifier(l(t,\"Snapshot succeeded\")+\" - \"+e,\"long\")}).catch(function(){o.notifier(l(t,\"Sorry, there was a problem downloading your snapshot!\"),\"long\")})}},c.sendDataToCloud={name:\"sendDataToCloud\",title:function(t){return l(t,\"Edit in Chart Studio\")},icon:s.disk,click:function(t){a.sendDataToCloud(t)}},c.editInChartStudio={name:\"editInChartStudio\",title:function(t){return l(t,\"Edit in Chart Studio\")},icon:s.pencil,click:function(t){a.sendDataToCloud(t)}},c.zoom2d={name:\"zoom2d\",title:function(t){return l(t,\"Zoom\")},attr:\"dragmode\",val:\"zoom\",icon:s.zoombox,click:u},c.pan2d={name:\"pan2d\",title:function(t){return l(t,\"Pan\")},attr:\"dragmode\",val:\"pan\",icon:s.pan,click:u},c.select2d={name:\"select2d\",title:function(t){return l(t,\"Box Select\")},attr:\"dragmode\",val:\"select\",icon:s.selectbox,click:u},c.lasso2d={name:\"lasso2d\",title:function(t){return l(t,\"Lasso Select\")},attr:\"dragmode\",val:\"lasso\",icon:s.lasso,click:u},c.zoomIn2d={name:\"zoomIn2d\",title:function(t){return l(t,\"Zoom in\")},attr:\"zoom\",val:\"in\",icon:s.zoom_plus,click:u},c.zoomOut2d={name:\"zoomOut2d\",title:function(t){return l(t,\"Zoom out\")},attr:\"zoom\",val:\"out\",icon:s.zoom_minus,click:u},c.autoScale2d={name:\"autoScale2d\",title:function(t){return l(t,\"Autoscale\")},attr:\"zoom\",val:\"auto\",icon:s.autoscale,click:u},c.resetScale2d={name:\"resetScale2d\",title:function(t){return l(t,\"Reset axes\")},attr:\"zoom\",val:\"reset\",icon:s.home,click:u},c.hoverClosestCartesian={name:\"hoverClosestCartesian\",title:function(t){return l(t,\"Show closest data on hover\")},attr:\"hovermode\",val:\"closest\",icon:s.tooltip_basic,gravity:\"ne\",click:u},c.hoverCompareCartesian={name:\"hoverCompareCartesian\",title:function(t){return l(t,\"Compare data on hover\")},attr:\"hovermode\",val:function(t){return t._fullLayout._isHoriz?\"y\":\"x\"},icon:s.tooltip_compare,gravity:\"ne\",click:u},c.zoom3d={name:\"zoom3d\",title:function(t){return l(t,\"Zoom\")},attr:\"scene.dragmode\",val:\"zoom\",icon:s.zoombox,click:h},c.pan3d={name:\"pan3d\",title:function(t){return l(t,\"Pan\")},attr:\"scene.dragmode\",val:\"pan\",icon:s.pan,click:h},c.orbitRotation={name:\"orbitRotation\",title:function(t){return l(t,\"Orbital rotation\")},attr:\"scene.dragmode\",val:\"orbit\",icon:s[\"3d_rotate\"],click:h},c.tableRotation={name:\"tableRotation\",title:function(t){return l(t,\"Turntable rotation\")},attr:\"scene.dragmode\",val:\"turntable\",icon:s[\"z-axis\"],click:h},c.resetCameraDefault3d={name:\"resetCameraDefault3d\",title:function(t){return l(t,\"Reset camera to default\")},attr:\"resetDefault\",icon:s.home,click:f},c.resetCameraLastSave3d={name:\"resetCameraLastSave3d\",title:function(t){return l(t,\"Reset camera to last save\")},attr:\"resetLastSave\",icon:s.movie,click:f},c.hoverClosest3d={name:\"hoverClosest3d\",title:function(t){return l(t,\"Toggle show closest data on hover\")},attr:\"hovermode\",val:null,toggle:!0,icon:s.tooltip_basic,gravity:\"ne\",click:function(t,e){var r=p(t,e);n.call(\"_guiRelayout\",t,r)}},c.zoomInGeo={name:\"zoomInGeo\",title:function(t){return l(t,\"Zoom in\")},attr:\"zoom\",val:\"in\",icon:s.zoom_plus,click:d},c.zoomOutGeo={name:\"zoomOutGeo\",title:function(t){return l(t,\"Zoom out\")},attr:\"zoom\",val:\"out\",icon:s.zoom_minus,click:d},c.resetGeo={name:\"resetGeo\",title:function(t){return l(t,\"Reset\")},attr:\"reset\",val:null,icon:s.autoscale,click:d},c.hoverClosestGeo={name:\"hoverClosestGeo\",title:function(t){return l(t,\"Toggle show closest data on hover\")},attr:\"hovermode\",val:null,toggle:!0,icon:s.tooltip_basic,gravity:\"ne\",click:v},c.hoverClosestGl2d={name:\"hoverClosestGl2d\",title:function(t){return l(t,\"Toggle show closest data on hover\")},attr:\"hovermode\",val:null,toggle:!0,icon:s.tooltip_basic,gravity:\"ne\",click:v},c.hoverClosestPie={name:\"hoverClosestPie\",title:function(t){return l(t,\"Toggle show closest data on hover\")},attr:\"hovermode\",val:\"closest\",icon:s.tooltip_basic,gravity:\"ne\",click:v},c.resetViewSankey={name:\"resetSankeyGroup\",title:function(t){return l(t,\"Reset view\")},icon:s.home,click:function(t){for(var e={\"node.groups\":[],\"node.x\":[],\"node.y\":[]},r=0;r<t._fullData.length;r++){var a=t._fullData[r]._viewInitial;e[\"node.groups\"].push(a.node.groups.slice()),e[\"node.x\"].push(a.node.x.slice()),e[\"node.y\"].push(a.node.y.slice())}n.call(\"restyle\",t,e)}},c.toggleHover={name:\"toggleHover\",title:function(t){return l(t,\"Toggle show closest data on hover\")},attr:\"hovermode\",val:null,toggle:!0,icon:s.tooltip_basic,gravity:\"ne\",click:function(t,e){var r=p(t,e);r.hovermode=g(t),n.call(\"_guiRelayout\",t,r)}},c.resetViews={name:\"resetViews\",title:function(t){return l(t,\"Reset views\")},icon:s.home,click:function(t,e){var r=e.currentTarget;r.setAttribute(\"data-attr\",\"zoom\"),r.setAttribute(\"data-val\",\"reset\"),u(t,e),r.setAttribute(\"data-attr\",\"resetLastSave\"),f(t,e),m(t,\"geo\"),m(t,\"mapbox\")}},c.toggleSpikelines={name:\"toggleSpikelines\",title:function(t){return l(t,\"Toggle Spike Lines\")},icon:s.spikeline,attr:\"_cartesianSpikesEnabled\",val:\"on\",click:function(t){var e=t._fullLayout,r=e._cartesianSpikesEnabled;e._cartesianSpikesEnabled=\"on\"===r?\"off\":\"on\",n.call(\"_guiRelayout\",t,function(t){for(var e=\"on\"===t._fullLayout._cartesianSpikesEnabled,r=i.list(t,null,!0),n={},a=0;a<r.length;a++){var o=r[a];n[o._name+\".showspikes\"]=!!e||o._showSpikeInitial}return n}(t))}},c.resetViewMapbox={name:\"resetViewMapbox\",title:function(t){return l(t,\"Reset view\")},attr:\"reset\",icon:s.home,click:function(t){m(t,\"mapbox\")}}},{\"../../fonts/ploticon\":699,\"../../lib\":719,\"../../plots/cartesian/axis_ids\":770,\"../../plots/plots\":828,\"../../registry\":848}],652:[function(t,e,r){\"use strict\";r.manage=t(\"./manage\")},{\"./manage\":653}],653:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axis_ids\"),a=t(\"../../traces/scatter/subtypes\"),i=t(\"../../registry\"),o=t(\"./modebar\"),s=t(\"./buttons\");e.exports=function(t){var e=t._fullLayout,r=t._context,l=e._modeBar;if(r.displayModeBar||r.watermark){if(!Array.isArray(r.modeBarButtonsToRemove))throw new Error([\"*modeBarButtonsToRemove* configuration options\",\"must be an array.\"].join(\" \"));if(!Array.isArray(r.modeBarButtonsToAdd))throw new Error([\"*modeBarButtonsToAdd* configuration options\",\"must be an array.\"].join(\" \"));var c,u=r.modeBarButtons;c=Array.isArray(u)&&u.length?function(t){for(var e=0;e<t.length;e++)for(var r=t[e],n=0;n<r.length;n++){var a=r[n];if(\"string\"==typeof a){if(void 0===s[a])throw new Error([\"*modeBarButtons* configuration options\",\"invalid button name\"].join(\" \"));t[e][n]=s[a]}}return t}(u):!r.displayModeBar&&r.watermark?[]:function(t){var e=t._fullLayout,r=t._fullData,o=t._context,l=o.modeBarButtonsToRemove,c=o.modeBarButtonsToAdd,u=e._has(\"cartesian\"),h=e._has(\"gl3d\"),f=e._has(\"geo\"),p=e._has(\"pie\"),d=e._has(\"funnelarea\"),g=e._has(\"gl2d\"),v=e._has(\"ternary\"),m=e._has(\"mapbox\"),y=e._has(\"polar\"),x=e._has(\"sankey\"),b=function(t){for(var e=n.list({_fullLayout:t},null,!0),r=0;r<e.length;r++)if(!e[r].fixedrange)return!1;return!0}(e),_=[];function w(t){if(t.length){for(var e=[],r=0;r<t.length;r++){var n=t[r];-1===l.indexOf(n)&&e.push(s[n])}_.push(e)}}var k=[\"toImage\"];o.showEditInChartStudio?k.push(\"editInChartStudio\"):o.showSendToCloud&&k.push(\"sendDataToCloud\");w(k);var T=[],A=[],M=[],S=[];(u||g||p||d||v)+f+h+m+y>1?(A=[\"toggleHover\"],M=[\"resetViews\"]):f?(T=[\"zoomInGeo\",\"zoomOutGeo\"],A=[\"hoverClosestGeo\"],M=[\"resetGeo\"]):h?(A=[\"hoverClosest3d\"],M=[\"resetCameraDefault3d\",\"resetCameraLastSave3d\"]):m?(A=[\"toggleHover\"],M=[\"resetViewMapbox\"]):g?A=[\"hoverClosestGl2d\"]:p?A=[\"hoverClosestPie\"]:x?(A=[\"hoverClosestCartesian\",\"hoverCompareCartesian\"],M=[\"resetViewSankey\"]):A=[\"toggleHover\"];u&&(A=[\"toggleSpikelines\",\"hoverClosestCartesian\",\"hoverCompareCartesian\"]);(function(t){for(var e=0;e<t.length;e++)if(!i.traceIs(t[e],\"noHover\"))return!1;return!0})(r)&&(A=[]);!u&&!g||b||(T=[\"zoomIn2d\",\"zoomOut2d\",\"autoScale2d\"],\"resetViews\"!==M[0]&&(M=[\"resetScale2d\"]));h?S=[\"zoom3d\",\"pan3d\",\"orbitRotation\",\"tableRotation\"]:(u||g)&&!b||v?S=[\"zoom2d\",\"pan2d\"]:m||f?S=[\"pan2d\"]:y&&(S=[\"zoom2d\"]);(function(t){for(var e=!1,r=0;r<t.length&&!e;r++){var n=t[r];n._module&&n._module.selectPoints&&(i.traceIs(n,\"scatter-like\")?(a.hasMarkers(n)||a.hasText(n))&&(e=!0):i.traceIs(n,\"box-violin\")&&\"all\"!==n.boxpoints&&\"all\"!==n.points||(e=!0))}return e})(r)&&S.push(\"select2d\",\"lasso2d\");return w(S),w(T.concat(M)),w(A),function(t,e){if(e.length)if(Array.isArray(e[0]))for(var r=0;r<e.length;r++)t.push(e[r]);else t.push(e);return t}(_,c)}(t),l?l.update(t,c):e._modeBar=o(t,c)}else l&&(l.destroy(),delete e._modeBar)}},{\"../../plots/cartesian/axis_ids\":770,\"../../registry\":848,\"../../traces/scatter/subtypes\":1134,\"./buttons\":651,\"./modebar\":654}],654:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"fast-isnumeric\"),i=t(\"../../lib\"),o=t(\"../../fonts/ploticon\"),s=new DOMParser;function l(t){this.container=t.container,this.element=document.createElement(\"div\"),this.update(t.graphInfo,t.buttons),this.container.appendChild(this.element)}var c=l.prototype;c.update=function(t,e){this.graphInfo=t;var r=this.graphInfo._context,n=this.graphInfo._fullLayout,a=\"modebar-\"+n._uid;this.element.setAttribute(\"id\",a),this._uid=a,this.element.className=\"modebar\",\"hover\"===r.displayModeBar&&(this.element.className+=\" modebar--hover ease-bg\"),\"v\"===n.modebar.orientation&&(this.element.className+=\" vertical\",e=e.reverse());var o=n.modebar,s=\"hover\"===r.displayModeBar?\".js-plotly-plot .plotly:hover \":\"\";i.deleteRelatedStyleRule(a),i.addRelatedStyleRule(a,s+\"#\"+a+\" .modebar-group\",\"background-color: \"+o.bgcolor),i.addRelatedStyleRule(a,\"#\"+a+\" .modebar-btn .icon path\",\"fill: \"+o.color),i.addRelatedStyleRule(a,\"#\"+a+\" .modebar-btn:hover .icon path\",\"fill: \"+o.activecolor),i.addRelatedStyleRule(a,\"#\"+a+\" .modebar-btn.active .icon path\",\"fill: \"+o.activecolor);var l=!this.hasButtons(e),c=this.hasLogo!==r.displaylogo,u=this.locale!==r.locale;if(this.locale=r.locale,(l||c||u)&&(this.removeAllButtons(),this.updateButtons(e),r.watermark||r.displaylogo)){var h=this.getLogo();r.watermark&&(h.className=h.className+\" watermark\"),\"v\"===n.modebar.orientation?this.element.insertBefore(h,this.element.childNodes[0]):this.element.appendChild(h),this.hasLogo=!0}this.updateActiveButton()},c.updateButtons=function(t){var e=this;this.buttons=t,this.buttonElements=[],this.buttonsNames=[],this.buttons.forEach(function(t){var r=e.createGroup();t.forEach(function(t){var n=t.name;if(!n)throw new Error(\"must provide button 'name' in button config\");if(-1!==e.buttonsNames.indexOf(n))throw new Error(\"button name '\"+n+\"' is taken\");e.buttonsNames.push(n);var a=e.createButton(t);e.buttonElements.push(a),r.appendChild(a)}),e.element.appendChild(r)})},c.createGroup=function(){var t=document.createElement(\"div\");return t.className=\"modebar-group\",t},c.createButton=function(t){var e=this,r=document.createElement(\"a\");r.setAttribute(\"rel\",\"tooltip\"),r.className=\"modebar-btn\";var a=t.title;void 0===a?a=t.name:\"function\"==typeof a&&(a=a(this.graphInfo)),(a||0===a)&&r.setAttribute(\"data-title\",a),void 0!==t.attr&&r.setAttribute(\"data-attr\",t.attr);var i=t.val;if(void 0!==i&&(\"function\"==typeof i&&(i=i(this.graphInfo)),r.setAttribute(\"data-val\",i)),\"function\"!=typeof t.click)throw new Error(\"must provide button 'click' function in button config\");r.addEventListener(\"click\",function(r){t.click(e.graphInfo,r),e.updateActiveButton(r.currentTarget)}),r.setAttribute(\"data-toggle\",t.toggle||!1),t.toggle&&n.select(r).classed(\"active\",!0);var s=t.icon;return\"function\"==typeof s?r.appendChild(s()):r.appendChild(this.createIcon(s||o.question)),r.setAttribute(\"data-gravity\",t.gravity||\"n\"),r},c.createIcon=function(t){var e,r=a(t.height)?Number(t.height):t.ascent-t.descent,n=\"http://www.w3.org/2000/svg\";if(t.path){(e=document.createElementNS(n,\"svg\")).setAttribute(\"viewBox\",[0,0,t.width,r].join(\" \")),e.setAttribute(\"class\",\"icon\");var i=document.createElementNS(n,\"path\");i.setAttribute(\"d\",t.path),t.transform?i.setAttribute(\"transform\",t.transform):void 0!==t.ascent&&i.setAttribute(\"transform\",\"matrix(1 0 0 -1 0 \"+t.ascent+\")\"),e.appendChild(i)}t.svg&&(e=s.parseFromString(t.svg,\"application/xml\").childNodes[0]);return e.setAttribute(\"height\",\"1em\"),e.setAttribute(\"width\",\"1em\"),e},c.updateActiveButton=function(t){var e=this.graphInfo._fullLayout,r=void 0!==t?t.getAttribute(\"data-attr\"):null;this.buttonElements.forEach(function(t){var a=t.getAttribute(\"data-val\")||!0,o=t.getAttribute(\"data-attr\"),s=\"true\"===t.getAttribute(\"data-toggle\"),l=n.select(t);if(s)o===r&&l.classed(\"active\",!l.classed(\"active\"));else{var c=null===o?o:i.nestedProperty(e,o).get();l.classed(\"active\",c===a)}})},c.hasButtons=function(t){var e=this.buttons;if(!e)return!1;if(t.length!==e.length)return!1;for(var r=0;r<t.length;++r){if(t[r].length!==e[r].length)return!1;for(var n=0;n<t[r].length;n++)if(t[r][n].name!==e[r][n].name)return!1}return!0},c.getLogo=function(){var t=this.createGroup(),e=document.createElement(\"a\");return e.href=\"https://plot.ly/\",e.target=\"_blank\",e.setAttribute(\"data-title\",i._(this.graphInfo,\"Produced with Plotly\")),e.className=\"modebar-btn plotlyjsicon modebar-btn--logo\",e.appendChild(this.createIcon(o.newplotlylogo)),t.appendChild(e),t},c.removeAllButtons=function(){for(;this.element.firstChild;)this.element.removeChild(this.element.firstChild);this.hasLogo=!1},c.destroy=function(){i.removeElement(this.container.querySelector(\".modebar\")),i.deleteRelatedStyleRule(this._uid)},e.exports=function(t,e){var r=t._fullLayout,a=new l({graphInfo:t,container:r._modebardiv.node(),buttons:e});return r._privateplot&&n.select(a.element).append(\"span\").classed(\"badge-private float--left\",!0).text(\"PRIVATE\"),a}},{\"../../fonts/ploticon\":699,\"../../lib\":719,d3:164,\"fast-isnumeric\":226}],655:[function(t,e,r){\"use strict\";var n=t(\"../../plots/font_attributes\"),a=t(\"../color/attributes\"),i=(0,t(\"../../plot_api/plot_template\").templatedArray)(\"button\",{visible:{valType:\"boolean\",dflt:!0,editType:\"plot\"},step:{valType:\"enumerated\",values:[\"month\",\"year\",\"day\",\"hour\",\"minute\",\"second\",\"all\"],dflt:\"month\",editType:\"plot\"},stepmode:{valType:\"enumerated\",values:[\"backward\",\"todate\"],dflt:\"backward\",editType:\"plot\"},count:{valType:\"number\",min:0,dflt:1,editType:\"plot\"},label:{valType:\"string\",editType:\"plot\"},editType:\"plot\"});e.exports={visible:{valType:\"boolean\",editType:\"plot\"},buttons:i,x:{valType:\"number\",min:-2,max:3,editType:\"plot\"},xanchor:{valType:\"enumerated\",values:[\"auto\",\"left\",\"center\",\"right\"],dflt:\"left\",editType:\"plot\"},y:{valType:\"number\",min:-2,max:3,editType:\"plot\"},yanchor:{valType:\"enumerated\",values:[\"auto\",\"top\",\"middle\",\"bottom\"],dflt:\"bottom\",editType:\"plot\"},font:n({editType:\"plot\"}),bgcolor:{valType:\"color\",dflt:a.lightLine,editType:\"plot\"},activecolor:{valType:\"color\",editType:\"plot\"},bordercolor:{valType:\"color\",dflt:a.defaultLine,editType:\"plot\"},borderwidth:{valType:\"number\",min:0,dflt:0,editType:\"plot\"},editType:\"plot\"}},{\"../../plot_api/plot_template\":757,\"../../plots/font_attributes\":793,\"../color/attributes\":593}],656:[function(t,e,r){\"use strict\";e.exports={yPad:.02,minButtonWidth:30,rx:3,ry:3,lightAmount:25,darkAmount:10}},{}],657:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../color\"),i=t(\"../../plot_api/plot_template\"),o=t(\"../../plots/array_container_defaults\"),s=t(\"./attributes\"),l=t(\"./constants\");function c(t,e,r,a){var i=a.calendar;function o(r,a){return n.coerce(t,e,s.buttons,r,a)}if(o(\"visible\")){var l=o(\"step\");\"all\"!==l&&(!i||\"gregorian\"===i||\"month\"!==l&&\"year\"!==l?o(\"stepmode\"):e.stepmode=\"backward\",o(\"count\")),o(\"label\")}}e.exports=function(t,e,r,u,h){var f=t.rangeselector||{},p=i.newContainer(e,\"rangeselector\");function d(t,e){return n.coerce(f,p,s,t,e)}if(d(\"visible\",o(f,p,{name:\"buttons\",handleItemDefaults:c,calendar:h}).length>0)){var g=function(t,e,r){for(var n=r.filter(function(r){return e[r].anchor===t._id}),a=0,i=0;i<n.length;i++){var o=e[n[i]].domain;o&&(a=Math.max(o[1],a))}return[t.domain[0],a+l.yPad]}(e,r,u);d(\"x\",g[0]),d(\"y\",g[1]),n.noneOrAll(t,e,[\"x\",\"y\"]),d(\"xanchor\"),d(\"yanchor\"),n.coerceFont(d,\"font\",r.font);var v=d(\"bgcolor\");d(\"activecolor\",a.contrast(v,l.lightAmount,l.darkAmount)),d(\"bordercolor\"),d(\"borderwidth\")}}},{\"../../lib\":719,\"../../plot_api/plot_template\":757,\"../../plots/array_container_defaults\":763,\"../color\":594,\"./attributes\":655,\"./constants\":656}],658:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../registry\"),i=t(\"../../plots/plots\"),o=t(\"../color\"),s=t(\"../drawing\"),l=t(\"../../lib\"),c=t(\"../../lib/svg_text_utils\"),u=t(\"../../plots/cartesian/axis_ids\"),h=t(\"../../constants/alignment\"),f=h.LINE_SPACING,p=h.FROM_TL,d=h.FROM_BR,g=t(\"./constants\"),v=t(\"./get_update_object\");function m(t){return t._id}function y(t,e,r){var n=l.ensureSingle(t,\"rect\",\"selector-rect\",function(t){t.attr(\"shape-rendering\",\"crispEdges\")});n.attr({rx:g.rx,ry:g.ry}),n.call(o.stroke,e.bordercolor).call(o.fill,function(t,e){return e._isActive||e._isHovered?t.activecolor:t.bgcolor}(e,r)).style(\"stroke-width\",e.borderwidth+\"px\")}function x(t,e,r,n){l.ensureSingle(t,\"text\",\"selector-text\",function(t){t.classed(\"user-select-none\",!0).attr(\"text-anchor\",\"middle\")}).call(s.font,e.font).text(function(t,e){if(t.label)return e?l.templateString(t.label,e):t.label;return\"all\"===t.step?\"all\":t.count+t.step.charAt(0)}(r,n._fullLayout._meta)).call(function(t){c.convertToTspans(t,n)})}e.exports=function(t){var e=t._fullLayout._infolayer.selectAll(\".rangeselector\").data(function(t){for(var e=u.list(t,\"x\",!0),r=[],n=0;n<e.length;n++){var a=e[n];a.rangeselector&&a.rangeselector.visible&&r.push(a)}return r}(t),m);e.enter().append(\"g\").classed(\"rangeselector\",!0),e.exit().remove(),e.style({cursor:\"pointer\",\"pointer-events\":\"all\"}),e.each(function(e){var r=n.select(this),o=e,u=o.rangeselector,h=r.selectAll(\"g.button\").data(l.filterVisible(u.buttons));h.enter().append(\"g\").classed(\"button\",!0),h.exit().remove(),h.each(function(e){var r=n.select(this),i=v(o,e);e._isActive=function(t,e,r){if(\"all\"===e.step)return!0===t.autorange;var n=Object.keys(r);return t.range[0]===r[n[0]]&&t.range[1]===r[n[1]]}(o,e,i),r.call(y,u,e),r.call(x,u,e,t),r.on(\"click\",function(){t._dragged||a.call(\"_guiRelayout\",t,i)}),r.on(\"mouseover\",function(){e._isHovered=!0,r.call(y,u,e)}),r.on(\"mouseout\",function(){e._isHovered=!1,r.call(y,u,e)})}),function(t,e,r,a,o){var u=0,h=0,v=r.borderwidth;e.each(function(){var t=n.select(this),e=t.select(\".selector-text\"),a=r.font.size*f,i=Math.max(a*c.lineCount(e),16)+3;h=Math.max(h,i)}),e.each(function(){var t=n.select(this),e=t.select(\".selector-rect\"),a=t.select(\".selector-text\"),i=a.node()&&s.bBox(a.node()).width,o=r.font.size*f,l=c.lineCount(a),p=Math.max(i+10,g.minButtonWidth);t.attr(\"transform\",\"translate(\"+(v+u)+\",\"+v+\")\"),e.attr({x:0,y:0,width:p,height:h}),c.positionText(a,p/2,h/2-(l-1)*o/2+3),u+=p+5});var m=t._fullLayout._size,y=m.l+m.w*r.x,x=m.t+m.h*(1-r.y),b=\"left\";l.isRightAnchor(r)&&(y-=u,b=\"right\");l.isCenterAnchor(r)&&(y-=u/2,b=\"center\");var _=\"top\";l.isBottomAnchor(r)&&(x-=h,_=\"bottom\");l.isMiddleAnchor(r)&&(x-=h/2,_=\"middle\");u=Math.ceil(u),h=Math.ceil(h),y=Math.round(y),x=Math.round(x),i.autoMargin(t,a+\"-range-selector\",{x:r.x,y:r.y,l:u*p[b],r:u*d[b],b:h*d[_],t:h*p[_]}),o.attr(\"transform\",\"translate(\"+y+\",\"+x+\")\")}(t,h,u,o._name,r)})}},{\"../../constants/alignment\":688,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../../plots/cartesian/axis_ids\":770,\"../../plots/plots\":828,\"../../registry\":848,\"../color\":594,\"../drawing\":615,\"./constants\":656,\"./get_update_object\":659,d3:164}],659:[function(t,e,r){\"use strict\";var n=t(\"d3\");e.exports=function(t,e){var r=t._name,a={};if(\"all\"===e.step)a[r+\".autorange\"]=!0;else{var i=function(t,e){var r,a=t.range,i=new Date(t.r2l(a[1])),o=e.step,s=e.count;switch(e.stepmode){case\"backward\":r=t.l2r(+n.time[o].utc.offset(i,-s));break;case\"todate\":var l=n.time[o].utc.offset(i,-s);r=t.l2r(+n.time[o].utc.ceil(l))}var c=a[1];return[r,c]}(t,e);a[r+\".range[0]\"]=i[0],a[r+\".range[1]\"]=i[1]}return a}},{d3:164}],660:[function(t,e,r){\"use strict\";e.exports={moduleType:\"component\",name:\"rangeselector\",schema:{subplots:{xaxis:{rangeselector:t(\"./attributes\")}}},layoutAttributes:t(\"./attributes\"),handleDefaults:t(\"./defaults\"),draw:t(\"./draw\")}},{\"./attributes\":655,\"./defaults\":657,\"./draw\":658}],661:[function(t,e,r){\"use strict\";var n=t(\"../color/attributes\");e.exports={bgcolor:{valType:\"color\",dflt:n.background,editType:\"plot\"},bordercolor:{valType:\"color\",dflt:n.defaultLine,editType:\"plot\"},borderwidth:{valType:\"integer\",dflt:0,min:0,editType:\"plot\"},autorange:{valType:\"boolean\",dflt:!0,editType:\"calc\",impliedEdits:{\"range[0]\":void 0,\"range[1]\":void 0}},range:{valType:\"info_array\",items:[{valType:\"any\",editType:\"calc\",impliedEdits:{\"^autorange\":!1}},{valType:\"any\",editType:\"calc\",impliedEdits:{\"^autorange\":!1}}],editType:\"calc\",impliedEdits:{autorange:!1}},thickness:{valType:\"number\",dflt:.15,min:0,max:1,editType:\"plot\"},visible:{valType:\"boolean\",dflt:!0,editType:\"calc\"},editType:\"calc\"}},{\"../color/attributes\":593}],662:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axis_ids\").list,a=t(\"../../plots/cartesian/autorange\").getAutoRange,i=t(\"./constants\");e.exports=function(t){for(var e=n(t,\"x\",!0),r=0;r<e.length;r++){var o=e[r],s=o[i.name];s&&s.visible&&s.autorange&&(s._input.autorange=!0,s._input.range=s.range=a(t,o))}}},{\"../../plots/cartesian/autorange\":766,\"../../plots/cartesian/axis_ids\":770,\"./constants\":663}],663:[function(t,e,r){\"use strict\";e.exports={name:\"rangeslider\",containerClassName:\"rangeslider-container\",bgClassName:\"rangeslider-bg\",rangePlotClassName:\"rangeslider-rangeplot\",maskMinClassName:\"rangeslider-mask-min\",maskMaxClassName:\"rangeslider-mask-max\",slideBoxClassName:\"rangeslider-slidebox\",grabberMinClassName:\"rangeslider-grabber-min\",grabAreaMinClassName:\"rangeslider-grabarea-min\",handleMinClassName:\"rangeslider-handle-min\",grabberMaxClassName:\"rangeslider-grabber-max\",grabAreaMaxClassName:\"rangeslider-grabarea-max\",handleMaxClassName:\"rangeslider-handle-max\",maskMinOppAxisClassName:\"rangeslider-mask-min-opp-axis\",maskMaxOppAxisClassName:\"rangeslider-mask-max-opp-axis\",maskColor:\"rgba(0,0,0,0.4)\",maskOppAxisColor:\"rgba(0,0,0,0.2)\",slideBoxFill:\"transparent\",slideBoxCursor:\"ew-resize\",grabAreaFill:\"transparent\",grabAreaCursor:\"col-resize\",grabAreaWidth:10,handleWidth:4,handleRadius:1,handleStrokeWidth:1,extraPad:15}},{}],664:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plot_api/plot_template\"),i=t(\"../../plots/cartesian/axis_ids\"),o=t(\"./attributes\"),s=t(\"./oppaxis_attributes\");e.exports=function(t,e,r){var l=t[r],c=e[r];if(l.rangeslider||e._requestRangeslider[c._id]){n.isPlainObject(l.rangeslider)||(l.rangeslider={});var u,h,f=l.rangeslider,p=a.newContainer(c,\"rangeslider\");if(_(\"visible\")){_(\"bgcolor\",e.plot_bgcolor),_(\"bordercolor\"),_(\"borderwidth\"),_(\"thickness\"),_(\"autorange\",!c.isValidRange(f.range)),_(\"range\");var d=e._subplots;if(d)for(var g=d.cartesian.filter(function(t){return t.substr(0,t.indexOf(\"y\"))===i.name2id(r)}).map(function(t){return t.substr(t.indexOf(\"y\"),t.length)}),v=n.simpleMap(g,i.id2name),m=0;m<v.length;m++){var y=v[m];u=f[y]||{},h=a.newContainer(p,y,\"yaxis\");var x,b=e[y];u.range&&b.isValidRange(u.range)&&(x=\"fixed\"),\"match\"!==w(\"rangemode\",x)&&w(\"range\",b.range.slice())}p._input=f}}function _(t,e){return n.coerce(f,p,o,t,e)}function w(t,e){return n.coerce(u,h,s,t,e)}}},{\"../../lib\":719,\"../../plot_api/plot_template\":757,\"../../plots/cartesian/axis_ids\":770,\"./attributes\":661,\"./oppaxis_attributes\":668}],665:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../registry\"),i=t(\"../../plots/plots\"),o=t(\"../../lib\"),s=t(\"../drawing\"),l=t(\"../color\"),c=t(\"../titles\"),u=t(\"../../plots/cartesian\"),h=t(\"../../plots/cartesian/axis_ids\"),f=t(\"../dragelement\"),p=t(\"../../lib/setcursor\"),d=t(\"./constants\");function g(t,e,r,n){var a=o.ensureSingle(t,\"rect\",d.bgClassName,function(t){t.attr({x:0,y:0,\"shape-rendering\":\"crispEdges\"})}),i=n.borderwidth%2==0?n.borderwidth:n.borderwidth-1,l=-n._offsetShift,c=s.crispRound(e,n.borderwidth);a.attr({width:n._width+i,height:n._height+i,transform:\"translate(\"+l+\",\"+l+\")\",fill:n.bgcolor,stroke:n.bordercolor,\"stroke-width\":c})}function v(t,e,r,n){var a=e._fullLayout;o.ensureSingleById(a._topdefs,\"clipPath\",n._clipId,function(t){t.append(\"rect\").attr({x:0,y:0})}).select(\"rect\").attr({width:n._width,height:n._height})}function m(t,e,r,a){var l,c=e.calcdata,f=t.selectAll(\"g.\"+d.rangePlotClassName).data(r._subplotsWith,o.identity);f.enter().append(\"g\").attr(\"class\",function(t){return d.rangePlotClassName+\" \"+t}).call(s.setClipUrl,a._clipId,e),f.order(),f.exit().remove(),f.each(function(t,o){var s=n.select(this),f=0===o,p=h.getFromId(e,t,\"y\"),d=p._name,g=a[d],v={data:[],layout:{xaxis:{type:r.type,domain:[0,1],range:a.range.slice(),calendar:r.calendar},width:a._width,height:a._height,margin:{t:0,b:0,l:0,r:0}},_context:e._context};v.layout[d]={type:p.type,domain:[0,1],range:\"match\"!==g.rangemode?g.range.slice():p.range.slice(),calendar:p.calendar},i.supplyDefaults(v);var m=v._fullLayout.xaxis,y=v._fullLayout[d];m.clearCalc(),m.setScale(),y.clearCalc(),y.setScale();var x={id:t,plotgroup:s,xaxis:m,yaxis:y,isRangePlot:!0};f?l=x:(x.mainplot=\"xy\",x.mainplotinfo=l),u.rangePlot(e,x,function(t,e){for(var r=[],n=0;n<t.length;n++){var a=t[n],i=a[0].trace;i.xaxis+i.yaxis===e&&r.push(a)}return r}(c,t))})}function y(t,e,r,n,a){(o.ensureSingle(t,\"rect\",d.maskMinClassName,function(t){t.attr({x:0,y:0,\"shape-rendering\":\"crispEdges\"})}).attr(\"height\",n._height).call(l.fill,d.maskColor),o.ensureSingle(t,\"rect\",d.maskMaxClassName,function(t){t.attr({y:0,\"shape-rendering\":\"crispEdges\"})}).attr(\"height\",n._height).call(l.fill,d.maskColor),\"match\"!==a.rangemode)&&(o.ensureSingle(t,\"rect\",d.maskMinOppAxisClassName,function(t){t.attr({y:0,\"shape-rendering\":\"crispEdges\"})}).attr(\"width\",n._width).call(l.fill,d.maskOppAxisColor),o.ensureSingle(t,\"rect\",d.maskMaxOppAxisClassName,function(t){t.attr({y:0,\"shape-rendering\":\"crispEdges\"})}).attr(\"width\",n._width).style(\"border-top\",d.maskOppBorder).call(l.fill,d.maskOppAxisColor))}function x(t,e,r,n){e._context.staticPlot||o.ensureSingle(t,\"rect\",d.slideBoxClassName,function(t){t.attr({y:0,cursor:d.slideBoxCursor,\"shape-rendering\":\"crispEdges\"})}).attr({height:n._height,fill:d.slideBoxFill})}function b(t,e,r,n){var a=o.ensureSingle(t,\"g\",d.grabberMinClassName),i=o.ensureSingle(t,\"g\",d.grabberMaxClassName),s={x:0,width:d.handleWidth,rx:d.handleRadius,fill:l.background,stroke:l.defaultLine,\"stroke-width\":d.handleStrokeWidth,\"shape-rendering\":\"crispEdges\"},c={y:Math.round(n._height/4),height:Math.round(n._height/2)};if(o.ensureSingle(a,\"rect\",d.handleMinClassName,function(t){t.attr(s)}).attr(c),o.ensureSingle(i,\"rect\",d.handleMaxClassName,function(t){t.attr(s)}).attr(c),!e._context.staticPlot){var u={width:d.grabAreaWidth,x:0,y:0,fill:d.grabAreaFill,cursor:d.grabAreaCursor};o.ensureSingle(a,\"rect\",d.grabAreaMinClassName,function(t){t.attr(u)}).attr(\"height\",n._height),o.ensureSingle(i,\"rect\",d.grabAreaMaxClassName,function(t){t.attr(u)}).attr(\"height\",n._height)}}e.exports=function(t){for(var e=t._fullLayout,r=e._rangeSliderData,i=0;i<r.length;i++){var s=r[i][d.name];s._clipId=s._id+\"-\"+e._uid}var l=e._infolayer.selectAll(\"g.\"+d.containerClassName).data(r,function(t){return t._name});l.exit().each(function(t){var r=t[d.name];e._topdefs.select(\"#\"+r._clipId).remove()}).remove(),0!==r.length&&(l.enter().append(\"g\").classed(d.containerClassName,!0).attr(\"pointer-events\",\"all\"),l.each(function(r){var i=n.select(this),s=r[d.name],l=e[h.id2name(r.anchor)],u=s[h.id2name(r.anchor)];if(s.range){var _,w=o.simpleMap(s.range,r.r2l),k=o.simpleMap(r.range,r.r2l);_=k[0]<k[1]?[Math.min(w[0],k[0]),Math.max(w[1],k[1])]:[Math.max(w[0],k[0]),Math.min(w[1],k[1])],s.range=s._input.range=o.simpleMap(_,r.l2r)}r.cleanRange(\"rangeslider.range\");var T=e._size,A=r.domain;s._width=T.w*(A[1]-A[0]);var M=Math.round(T.l+T.w*A[0]),S=Math.round(T.t+T.h*(1-r._counterDomainMin)+(\"bottom\"===r.side?r._depth:0)+s._offsetShift+d.extraPad);i.attr(\"transform\",\"translate(\"+M+\",\"+S+\")\");var E=r.r2l(s.range[0]),C=r.r2l(s.range[1]),L=C-E;if(s.p2d=function(t){return t/s._width*L+E},s.d2p=function(t){return(t-E)/L*s._width},s._rl=[E,C],\"match\"!==u.rangemode){var P=l.r2l(u.range[0]),O=l.r2l(u.range[1])-P;s.d2pOppAxis=function(t){return(t-P)/O*s._height}}i.call(g,t,r,s).call(v,t,r,s).call(m,t,r,s).call(y,t,r,s,u).call(x,t,r,s).call(b,t,r,s),function(t,e,r,i){var s=t.select(\"rect.\"+d.slideBoxClassName).node(),l=t.select(\"rect.\"+d.grabAreaMinClassName).node(),c=t.select(\"rect.\"+d.grabAreaMaxClassName).node();t.on(\"mousedown\",function(){var u=n.event,h=u.target,d=u.clientX,g=d-t.node().getBoundingClientRect().left,v=i.d2p(r._rl[0]),m=i.d2p(r._rl[1]),y=f.coverSlip();function x(t){var u,f,x,b=+t.clientX-d;switch(h){case s:x=\"ew-resize\",u=v+b,f=m+b;break;case l:x=\"col-resize\",u=v+b,f=m;break;case c:x=\"col-resize\",u=v,f=m+b;break;default:x=\"ew-resize\",u=g,f=g+b}if(f<u){var _=f;f=u,u=_}i._pixelMin=u,i._pixelMax=f,p(n.select(y),x),function(t,e,r,n){function i(t){return r.l2r(o.constrain(t,n._rl[0],n._rl[1]))}var s=i(n.p2d(n._pixelMin)),l=i(n.p2d(n._pixelMax));window.requestAnimationFrame(function(){a.call(\"_guiRelayout\",e,r._name+\".range\",[s,l])})}(0,e,r,i)}y.addEventListener(\"mousemove\",x),y.addEventListener(\"mouseup\",function t(){y.removeEventListener(\"mousemove\",x);y.removeEventListener(\"mouseup\",t);o.removeElement(y)})})}(i,t,r,s),function(t,e,r,n,a,i){var s=d.handleWidth/2;function l(t){return o.constrain(t,0,n._width)}function c(t){return o.constrain(t,0,n._height)}function u(t){return o.constrain(t,-s,n._width+s)}var h=l(n.d2p(r._rl[0])),f=l(n.d2p(r._rl[1]));if(t.select(\"rect.\"+d.slideBoxClassName).attr(\"x\",h).attr(\"width\",f-h),t.select(\"rect.\"+d.maskMinClassName).attr(\"width\",h),t.select(\"rect.\"+d.maskMaxClassName).attr(\"x\",f).attr(\"width\",n._width-f),\"match\"!==i.rangemode){var p=n._height-c(n.d2pOppAxis(a._rl[1])),g=n._height-c(n.d2pOppAxis(a._rl[0]));t.select(\"rect.\"+d.maskMinOppAxisClassName).attr(\"x\",h).attr(\"height\",p).attr(\"width\",f-h),t.select(\"rect.\"+d.maskMaxOppAxisClassName).attr(\"x\",h).attr(\"y\",g).attr(\"height\",n._height-g).attr(\"width\",f-h),t.select(\"rect.\"+d.slideBoxClassName).attr(\"y\",p).attr(\"height\",g-p)}var v=Math.round(u(h-s))-.5,m=Math.round(u(f-s))+.5;t.select(\"g.\"+d.grabberMinClassName).attr(\"transform\",\"translate(\"+v+\",0.5)\"),t.select(\"g.\"+d.grabberMaxClassName).attr(\"transform\",\"translate(\"+m+\",0.5)\")}(i,0,r,s,l,u),\"bottom\"===r.side&&c.draw(t,r._id+\"title\",{propContainer:r,propName:r._name+\".title\",placeholder:e._dfltTitle.x,attributes:{x:r._offset+r._length/2,y:S+s._height+s._offsetShift+10+1.5*r.title.font.size,\"text-anchor\":\"middle\"}})}))}},{\"../../lib\":719,\"../../lib/setcursor\":739,\"../../plots/cartesian\":778,\"../../plots/cartesian/axis_ids\":770,\"../../plots/plots\":828,\"../../registry\":848,\"../color\":594,\"../dragelement\":612,\"../drawing\":615,\"../titles\":681,\"./constants\":663,d3:164}],666:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axis_ids\"),a=t(\"../../lib/svg_text_utils\"),i=t(\"./constants\"),o=t(\"../../constants/alignment\").LINE_SPACING,s=i.name;function l(t){var e=t&&t[s];return e&&e.visible}r.isVisible=l,r.makeData=function(t){var e=n.list({_fullLayout:t},\"x\",!0),r=t.margin,a=[];if(!t._has(\"gl2d\"))for(var i=0;i<e.length;i++){var o=e[i];if(l(o)){a.push(o);var c=o[s];c._id=s+o._id,c._height=(t.height-r.b-r.t)*c.thickness,c._offsetShift=Math.floor(c.borderwidth/2)}}t._rangeSliderData=a},r.autoMarginOpts=function(t,e){var r=t._fullLayout,n=e[s],l=e._id.charAt(0),c=0,u=0;\"bottom\"===e.side&&(c=e._depth,e.title.text!==r._dfltTitle[l]&&(u=1.5*e.title.font.size+10+n._offsetShift,u+=(e.title.text.match(a.BR_TAG_ALL)||[]).length*e.title.font.size*o));return{x:0,y:e._counterDomainMin,l:0,r:0,t:0,b:n._height+c+Math.max(r.margin.b,u),pad:i.extraPad+2*n._offsetShift}}},{\"../../constants/alignment\":688,\"../../lib/svg_text_utils\":743,\"../../plots/cartesian/axis_ids\":770,\"./constants\":663}],667:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./attributes\"),i=t(\"./oppaxis_attributes\"),o=t(\"./helpers\");e.exports={moduleType:\"component\",name:\"rangeslider\",schema:{subplots:{xaxis:{rangeslider:n.extendFlat({},a,{yaxis:i})}}},layoutAttributes:t(\"./attributes\"),handleDefaults:t(\"./defaults\"),calcAutorange:t(\"./calc_autorange\"),draw:t(\"./draw\"),isVisible:o.isVisible,makeData:o.makeData,autoMarginOpts:o.autoMarginOpts}},{\"../../lib\":719,\"./attributes\":661,\"./calc_autorange\":662,\"./defaults\":664,\"./draw\":665,\"./helpers\":666,\"./oppaxis_attributes\":668}],668:[function(t,e,r){\"use strict\";e.exports={_isSubplotObj:!0,rangemode:{valType:\"enumerated\",values:[\"auto\",\"fixed\",\"match\"],dflt:\"match\",editType:\"calc\"},range:{valType:\"info_array\",items:[{valType:\"any\",editType:\"plot\"},{valType:\"any\",editType:\"plot\"}],editType:\"plot\"},editType:\"calc\"}},{}],669:[function(t,e,r){\"use strict\";var n=t(\"../annotations/attributes\"),a=t(\"../../traces/scatter/attributes\").line,i=t(\"../drawing/attributes\").dash,o=t(\"../../lib/extend\").extendFlat,s=t(\"../../plot_api/plot_template\").templatedArray;e.exports=s(\"shape\",{visible:{valType:\"boolean\",dflt:!0,editType:\"calc+arraydraw\"},type:{valType:\"enumerated\",values:[\"circle\",\"rect\",\"path\",\"line\"],editType:\"calc+arraydraw\"},layer:{valType:\"enumerated\",values:[\"below\",\"above\"],dflt:\"above\",editType:\"arraydraw\"},xref:o({},n.xref,{}),xsizemode:{valType:\"enumerated\",values:[\"scaled\",\"pixel\"],dflt:\"scaled\",editType:\"calc+arraydraw\"},xanchor:{valType:\"any\",editType:\"calc+arraydraw\"},x0:{valType:\"any\",editType:\"calc+arraydraw\"},x1:{valType:\"any\",editType:\"calc+arraydraw\"},yref:o({},n.yref,{}),ysizemode:{valType:\"enumerated\",values:[\"scaled\",\"pixel\"],dflt:\"scaled\",editType:\"calc+arraydraw\"},yanchor:{valType:\"any\",editType:\"calc+arraydraw\"},y0:{valType:\"any\",editType:\"calc+arraydraw\"},y1:{valType:\"any\",editType:\"calc+arraydraw\"},path:{valType:\"string\",editType:\"calc+arraydraw\"},opacity:{valType:\"number\",min:0,max:1,dflt:1,editType:\"arraydraw\"},line:{color:o({},a.color,{editType:\"arraydraw\"}),width:o({},a.width,{editType:\"calc+arraydraw\"}),dash:o({},i,{editType:\"arraydraw\"}),editType:\"calc+arraydraw\"},fillcolor:{valType:\"color\",dflt:\"rgba(0,0,0,0)\",editType:\"arraydraw\"},editType:\"arraydraw\"})},{\"../../lib/extend\":710,\"../../plot_api/plot_template\":757,\"../../traces/scatter/attributes\":1111,\"../annotations/attributes\":577,\"../drawing/attributes\":614}],670:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"./constants\"),o=t(\"./helpers\");function s(t){return c(t.line.width,t.xsizemode,t.x0,t.x1,t.path,!1)}function l(t){return c(t.line.width,t.ysizemode,t.y0,t.y1,t.path,!0)}function c(t,e,r,a,s,l){var c=t/2,u=l;if(\"pixel\"===e){var h=s?o.extractPathCoords(s,l?i.paramIsY:i.paramIsX):[r,a],f=n.aggNums(Math.max,null,h),p=n.aggNums(Math.min,null,h),d=p<0?Math.abs(p)+c:c,g=f>0?f+c:c;return{ppad:c,ppadplus:u?d:g,ppadminus:u?g:d}}return{ppad:c}}function u(t,e,r,n,a){var s=\"category\"===t.type||\"multicategory\"===t.type?t.r2c:t.d2c;if(void 0!==e)return[s(e),s(r)];if(n){var l,c,u,h,f=1/0,p=-1/0,d=n.match(i.segmentRE);for(\"date\"===t.type&&(s=o.decodeDate(s)),l=0;l<d.length;l++)void 0!==(c=a[d[l].charAt(0)].drawn)&&(!(u=d[l].substr(1).match(i.paramRE))||u.length<c||((h=s(u[c]))<f&&(f=h),h>p&&(p=h)));return p>=f?[f,p]:void 0}}e.exports=function(t){var e=t._fullLayout,r=n.filterVisible(e.shapes);if(r.length&&t._fullData.length)for(var o=0;o<r.length;o++){var c,h,f=r[o];if(f._extremes={},\"paper\"!==f.xref){var p=\"pixel\"===f.xsizemode?f.xanchor:f.x0,d=\"pixel\"===f.xsizemode?f.xanchor:f.x1;(h=u(c=a.getFromId(t,f.xref),p,d,f.path,i.paramIsX))&&(f._extremes[c._id]=a.findExtremes(c,h,s(f)))}if(\"paper\"!==f.yref){var g=\"pixel\"===f.ysizemode?f.yanchor:f.y0,v=\"pixel\"===f.ysizemode?f.yanchor:f.y1;(h=u(c=a.getFromId(t,f.yref),g,v,f.path,i.paramIsY))&&(f._extremes[c._id]=a.findExtremes(c,h,l(f)))}}}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"./constants\":671,\"./helpers\":674}],671:[function(t,e,r){\"use strict\";e.exports={segmentRE:/[MLHVQCTSZ][^MLHVQCTSZ]*/g,paramRE:/[^\\s,]+/g,paramIsX:{M:{0:!0,drawn:0},L:{0:!0,drawn:0},H:{0:!0,drawn:0},V:{},Q:{0:!0,2:!0,drawn:2},C:{0:!0,2:!0,4:!0,drawn:4},T:{0:!0,drawn:0},S:{0:!0,2:!0,drawn:2},Z:{}},paramIsY:{M:{1:!0,drawn:1},L:{1:!0,drawn:1},H:{},V:{0:!0,drawn:0},Q:{1:!0,3:!0,drawn:3},C:{1:!0,3:!0,5:!0,drawn:5},T:{1:!0,drawn:1},S:{1:!0,3:!0,drawn:5},Z:{}},numParams:{M:2,L:2,H:1,V:1,Q:4,C:6,T:2,S:4,Z:0}}},{}],672:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"../../plots/array_container_defaults\"),o=t(\"./attributes\"),s=t(\"./helpers\");function l(t,e,r){function i(r,a){return n.coerce(t,e,o,r,a)}if(i(\"visible\")){i(\"layer\"),i(\"opacity\"),i(\"fillcolor\"),i(\"line.color\"),i(\"line.width\"),i(\"line.dash\");for(var l=i(\"type\",t.path?\"path\":\"rect\"),c=i(\"xsizemode\"),u=i(\"ysizemode\"),h=[\"x\",\"y\"],f=0;f<2;f++){var p,d,g,v=h[f],m=v+\"anchor\",y=\"x\"===v?c:u,x={_fullLayout:r},b=a.coerceRef(t,e,x,v,\"\",\"paper\");if(\"paper\"!==b?((p=a.getFromId(x,b))._shapeIndices.push(e._index),g=s.rangeToShapePosition(p),d=s.shapePositionToRange(p)):d=g=n.identity,\"path\"!==l){var _=v+\"0\",w=v+\"1\",k=t[_],T=t[w];t[_]=d(t[_],!0),t[w]=d(t[w],!0),\"pixel\"===y?(i(_,0),i(w,10)):(a.coercePosition(e,x,i,b,_,.25),a.coercePosition(e,x,i,b,w,.75)),e[_]=g(e[_]),e[w]=g(e[w]),t[_]=k,t[w]=T}if(\"pixel\"===y){var A=t[m];t[m]=d(t[m],!0),a.coercePosition(e,x,i,b,m,.25),e[m]=g(e[m]),t[m]=A}}\"path\"===l?i(\"path\"):n.noneOrAll(t,e,[\"x0\",\"x1\",\"y0\",\"y1\"])}}e.exports=function(t,e){i(t,e,{name:\"shapes\",handleItemDefaults:l})}},{\"../../lib\":719,\"../../plots/array_container_defaults\":763,\"../../plots/cartesian/axes\":767,\"./attributes\":669,\"./helpers\":674}],673:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\"),i=t(\"../../plots/cartesian/axes\"),o=t(\"../color\"),s=t(\"../drawing\"),l=t(\"../../plot_api/plot_template\").arrayEditor,c=t(\"../dragelement\"),u=t(\"../../lib/setcursor\"),h=t(\"./constants\"),f=t(\"./helpers\");function p(t,e){t._fullLayout._paperdiv.selectAll('.shapelayer [data-index=\"'+e+'\"]').remove();var r=t._fullLayout.shapes[e]||{};if(r._input&&!1!==r.visible)if(\"below\"!==r.layer)m(t._fullLayout._shapeUpperLayer);else if(\"paper\"===r.xref||\"paper\"===r.yref)m(t._fullLayout._shapeLowerLayer);else{var p=t._fullLayout._plots[r.xref+r.yref];if(p)m((p.mainplotinfo||p).shapelayer);else m(t._fullLayout._shapeLowerLayer)}function m(p){var m={\"data-index\":e,\"fill-rule\":\"evenodd\",d:g(t,r)},y=r.line.width?r.line.color:\"rgba(0,0,0,0)\",x=p.append(\"path\").attr(m).style(\"opacity\",r.opacity).call(o.stroke,y).call(o.fill,r.fillcolor).call(s.dashLine,r.line.dash,r.line.width);d(x,t,r),t._context.edits.shapePosition&&function(t,e,r,o,p){var m,y,x,b,_,w,k,T,A,M,S,E,C,L,P,O,I=10,z=10,D=\"pixel\"===r.xsizemode,R=\"pixel\"===r.ysizemode,F=\"line\"===r.type,B=\"path\"===r.type,N=l(t.layout,\"shapes\",r),j=N.modifyItem,V=i.getFromId(t,r.xref),U=i.getFromId(t,r.yref),q=f.getDataToPixel(t,V),H=f.getDataToPixel(t,U,!0),G=f.getPixelToData(t,V),Y=f.getPixelToData(t,U,!0),W=F?function(){var t=Math.max(r.line.width,10),n=p.append(\"g\").attr(\"data-index\",o);n.append(\"path\").attr(\"d\",e.attr(\"d\")).style({cursor:\"move\",\"stroke-width\":t,\"stroke-opacity\":\"0\"});var a={\"fill-opacity\":\"0\"},i=t/2>10?t/2:10;return n.append(\"circle\").attr({\"data-line-point\":\"start-point\",cx:D?q(r.xanchor)+r.x0:q(r.x0),cy:R?H(r.yanchor)-r.y0:H(r.y0),r:i}).style(a).classed(\"cursor-grab\",!0),n.append(\"circle\").attr({\"data-line-point\":\"end-point\",cx:D?q(r.xanchor)+r.x1:q(r.x1),cy:R?H(r.yanchor)-r.y1:H(r.y1),r:i}).style(a).classed(\"cursor-grab\",!0),n}():e,X={element:W.node(),gd:t,prepFn:function(n){D&&(_=q(r.xanchor));R&&(w=H(r.yanchor));\"path\"===r.type?P=r.path:(m=D?r.x0:q(r.x0),y=R?r.y0:H(r.y0),x=D?r.x1:q(r.x1),b=R?r.y1:H(r.y1));m<x?(A=m,C=\"x0\",M=x,L=\"x1\"):(A=x,C=\"x1\",M=m,L=\"x0\");!R&&y<b||R&&y>b?(k=y,S=\"y0\",T=b,E=\"y1\"):(k=b,S=\"y1\",T=y,E=\"y0\");Z(n),Q(p,r),function(t,e,r){var n=e.xref,a=e.yref,o=i.getFromId(r,n),l=i.getFromId(r,a),c=\"\";\"paper\"===n||o.autorange||(c+=n);\"paper\"===a||l.autorange||(c+=a);s.setClipUrl(t,c?\"clip\"+r._fullLayout._uid+c:null,r)}(e,r,t),X.moveFn=\"move\"===O?J:K},doneFn:function(){u(e),$(p),d(e,t,r),n.call(\"_guiRelayout\",t,N.getUpdateObj())},clickFn:function(){$(p)}};function Z(t){if(F)O=\"path\"===t.target.tagName?\"move\":\"start-point\"===t.target.attributes[\"data-line-point\"].value?\"resize-over-start-point\":\"resize-over-end-point\";else{var r=X.element.getBoundingClientRect(),n=r.right-r.left,a=r.bottom-r.top,i=t.clientX-r.left,o=t.clientY-r.top,s=!B&&n>I&&a>z&&!t.shiftKey?c.getCursor(i/n,1-o/a):\"move\";u(e,s),O=s.split(\"-\")[0]}}function J(n,a){if(\"path\"===r.type){var i=function(t){return t},o=i,s=i;D?j(\"xanchor\",r.xanchor=G(_+n)):(o=function(t){return G(q(t)+n)},V&&\"date\"===V.type&&(o=f.encodeDate(o))),R?j(\"yanchor\",r.yanchor=Y(w+a)):(s=function(t){return Y(H(t)+a)},U&&\"date\"===U.type&&(s=f.encodeDate(s))),j(\"path\",r.path=v(P,o,s))}else D?j(\"xanchor\",r.xanchor=G(_+n)):(j(\"x0\",r.x0=G(m+n)),j(\"x1\",r.x1=G(x+n))),R?j(\"yanchor\",r.yanchor=Y(w+a)):(j(\"y0\",r.y0=Y(y+a)),j(\"y1\",r.y1=Y(b+a)));e.attr(\"d\",g(t,r)),Q(p,r)}function K(n,a){if(B){var i=function(t){return t},o=i,s=i;D?j(\"xanchor\",r.xanchor=G(_+n)):(o=function(t){return G(q(t)+n)},V&&\"date\"===V.type&&(o=f.encodeDate(o))),R?j(\"yanchor\",r.yanchor=Y(w+a)):(s=function(t){return Y(H(t)+a)},U&&\"date\"===U.type&&(s=f.encodeDate(s))),j(\"path\",r.path=v(P,o,s))}else if(F){if(\"resize-over-start-point\"===O){var l=m+n,c=R?y-a:y+a;j(\"x0\",r.x0=D?l:G(l)),j(\"y0\",r.y0=R?c:Y(c))}else if(\"resize-over-end-point\"===O){var u=x+n,h=R?b-a:b+a;j(\"x1\",r.x1=D?u:G(u)),j(\"y1\",r.y1=R?h:Y(h))}}else{var d=~O.indexOf(\"n\")?k+a:k,N=~O.indexOf(\"s\")?T+a:T,W=~O.indexOf(\"w\")?A+n:A,X=~O.indexOf(\"e\")?M+n:M;~O.indexOf(\"n\")&&R&&(d=k-a),~O.indexOf(\"s\")&&R&&(N=T-a),(!R&&N-d>z||R&&d-N>z)&&(j(S,r[S]=R?d:Y(d)),j(E,r[E]=R?N:Y(N))),X-W>I&&(j(C,r[C]=D?W:G(W)),j(L,r[L]=D?X:G(X)))}e.attr(\"d\",g(t,r)),Q(p,r)}function Q(t,e){(D||R)&&function(){var r=\"path\"!==e.type,n=t.selectAll(\".visual-cue\").data([0]);n.enter().append(\"path\").attr({fill:\"#fff\",\"fill-rule\":\"evenodd\",stroke:\"#000\",\"stroke-width\":1}).classed(\"visual-cue\",!0);var i=q(D?e.xanchor:a.midRange(r?[e.x0,e.x1]:f.extractPathCoords(e.path,h.paramIsX))),o=H(R?e.yanchor:a.midRange(r?[e.y0,e.y1]:f.extractPathCoords(e.path,h.paramIsY)));if(i=f.roundPositionForSharpStrokeRendering(i,1),o=f.roundPositionForSharpStrokeRendering(o,1),D&&R){var s=\"M\"+(i-1-1)+\",\"+(o-1-1)+\"h-8v2h8 v8h2v-8 h8v-2h-8 v-8h-2 Z\";n.attr(\"d\",s)}else if(D){var l=\"M\"+(i-1-1)+\",\"+(o-9-1)+\"v18 h2 v-18 Z\";n.attr(\"d\",l)}else{var c=\"M\"+(i-9-1)+\",\"+(o-1-1)+\"h18 v2 h-18 Z\";n.attr(\"d\",c)}}()}function $(t){t.selectAll(\".visual-cue\").remove()}c.init(X),W.node().onmousemove=Z}(t,x,r,e,p)}}function d(t,e,r){var n=(r.xref+r.yref).replace(/paper/g,\"\");s.setClipUrl(t,n?\"clip\"+e._fullLayout._uid+n:null,e)}function g(t,e){var r,n,o,s,l,c,u,p,d=e.type,g=i.getFromId(t,e.xref),v=i.getFromId(t,e.yref),m=t._fullLayout._size;if(g?(r=f.shapePositionToRange(g),n=function(t){return g._offset+g.r2p(r(t,!0))}):n=function(t){return m.l+m.w*t},v?(o=f.shapePositionToRange(v),s=function(t){return v._offset+v.r2p(o(t,!0))}):s=function(t){return m.t+m.h*(1-t)},\"path\"===d)return g&&\"date\"===g.type&&(n=f.decodeDate(n)),v&&\"date\"===v.type&&(s=f.decodeDate(s)),function(t,e,r){var n=t.path,i=t.xsizemode,o=t.ysizemode,s=t.xanchor,l=t.yanchor;return n.replace(h.segmentRE,function(t){var n=0,c=t.charAt(0),u=h.paramIsX[c],f=h.paramIsY[c],p=h.numParams[c],d=t.substr(1).replace(h.paramRE,function(t){return u[n]?t=\"pixel\"===i?e(s)+Number(t):e(t):f[n]&&(t=\"pixel\"===o?r(l)-Number(t):r(t)),++n>p&&(t=\"X\"),t});return n>p&&(d=d.replace(/[\\s,]*X.*/,\"\"),a.log(\"Ignoring extra params in segment \"+t)),c+d})}(e,n,s);if(\"pixel\"===e.xsizemode){var y=n(e.xanchor);l=y+e.x0,c=y+e.x1}else l=n(e.x0),c=n(e.x1);if(\"pixel\"===e.ysizemode){var x=s(e.yanchor);u=x-e.y0,p=x-e.y1}else u=s(e.y0),p=s(e.y1);if(\"line\"===d)return\"M\"+l+\",\"+u+\"L\"+c+\",\"+p;if(\"rect\"===d)return\"M\"+l+\",\"+u+\"H\"+c+\"V\"+p+\"H\"+l+\"Z\";var b=(l+c)/2,_=(u+p)/2,w=Math.abs(b-l),k=Math.abs(_-u),T=\"A\"+w+\",\"+k,A=b+w+\",\"+_;return\"M\"+A+T+\" 0 1,1 \"+(b+\",\"+(_-k))+T+\" 0 0,1 \"+A+\"Z\"}function v(t,e,r){return t.replace(h.segmentRE,function(t){var n=0,a=t.charAt(0),i=h.paramIsX[a],o=h.paramIsY[a],s=h.numParams[a];return a+t.substr(1).replace(h.paramRE,function(t){return n>=s?t:(i[n]?t=e(t):o[n]&&(t=r(t)),n++,t)})})}e.exports={draw:function(t){var e=t._fullLayout;for(var r in e._shapeUpperLayer.selectAll(\"path\").remove(),e._shapeLowerLayer.selectAll(\"path\").remove(),e._plots){var n=e._plots[r].shapelayer;n&&n.selectAll(\"path\").remove()}for(var a=0;a<e.shapes.length;a++)e.shapes[a].visible&&p(t,a)},drawOne:p}},{\"../../lib\":719,\"../../lib/setcursor\":739,\"../../plot_api/plot_template\":757,\"../../plots/cartesian/axes\":767,\"../../registry\":848,\"../color\":594,\"../dragelement\":612,\"../drawing\":615,\"./constants\":671,\"./helpers\":674}],674:[function(t,e,r){\"use strict\";var n=t(\"./constants\"),a=t(\"../../lib\");r.rangeToShapePosition=function(t){return\"log\"===t.type?t.r2d:function(t){return t}},r.shapePositionToRange=function(t){return\"log\"===t.type?t.d2r:function(t){return t}},r.decodeDate=function(t){return function(e){return e.replace&&(e=e.replace(\"_\",\" \")),t(e)}},r.encodeDate=function(t){return function(e){return t(e).replace(\" \",\"_\")}},r.extractPathCoords=function(t,e){var r=[];return t.match(n.segmentRE).forEach(function(t){var i=e[t.charAt(0)].drawn;if(void 0!==i){var o=t.substr(1).match(n.paramRE);!o||o.length<i||r.push(a.cleanNumber(o[i]))}}),r},r.getDataToPixel=function(t,e,n){var a,i=t._fullLayout._size;if(e){var o=r.shapePositionToRange(e);a=function(t){return e._offset+e.r2p(o(t,!0))},\"date\"===e.type&&(a=r.decodeDate(a))}else a=n?function(t){return i.t+i.h*(1-t)}:function(t){return i.l+i.w*t};return a},r.getPixelToData=function(t,e,n){var a,i=t._fullLayout._size;if(e){var o=r.rangeToShapePosition(e);a=function(t){return o(e.p2r(t-e._offset))}}else a=n?function(t){return 1-(t-i.t)/i.h}:function(t){return(t-i.l)/i.w};return a},r.roundPositionForSharpStrokeRendering=function(t,e){var r=1===Math.round(e%2),n=Math.round(t);return r?n+.5:n}},{\"../../lib\":719,\"./constants\":671}],675:[function(t,e,r){\"use strict\";var n=t(\"./draw\");e.exports={moduleType:\"component\",name:\"shapes\",layoutAttributes:t(\"./attributes\"),supplyLayoutDefaults:t(\"./defaults\"),includeBasePlot:t(\"../../plots/cartesian/include_components\")(\"shapes\"),calcAutorange:t(\"./calc_autorange\"),draw:n.draw,drawOne:n.drawOne}},{\"../../plots/cartesian/include_components\":777,\"./attributes\":669,\"./calc_autorange\":670,\"./defaults\":672,\"./draw\":673}],676:[function(t,e,r){\"use strict\";var n=t(\"../../plots/font_attributes\"),a=t(\"../../plots/pad_attributes\"),i=t(\"../../lib/extend\").extendDeepAll,o=t(\"../../plot_api/edit_types\").overrideAll,s=t(\"../../plots/animation_attributes\"),l=t(\"../../plot_api/plot_template\").templatedArray,c=t(\"./constants\"),u=l(\"step\",{visible:{valType:\"boolean\",dflt:!0},method:{valType:\"enumerated\",values:[\"restyle\",\"relayout\",\"animate\",\"update\",\"skip\"],dflt:\"restyle\"},args:{valType:\"info_array\",freeLength:!0,items:[{valType:\"any\"},{valType:\"any\"},{valType:\"any\"}]},label:{valType:\"string\"},value:{valType:\"string\"},execute:{valType:\"boolean\",dflt:!0}});e.exports=o(l(\"slider\",{visible:{valType:\"boolean\",dflt:!0},active:{valType:\"number\",min:0,dflt:0},steps:u,lenmode:{valType:\"enumerated\",values:[\"fraction\",\"pixels\"],dflt:\"fraction\"},len:{valType:\"number\",min:0,dflt:1},x:{valType:\"number\",min:-2,max:3,dflt:0},pad:i(a({editType:\"arraydraw\"}),{},{t:{dflt:20}}),xanchor:{valType:\"enumerated\",values:[\"auto\",\"left\",\"center\",\"right\"],dflt:\"left\"},y:{valType:\"number\",min:-2,max:3,dflt:0},yanchor:{valType:\"enumerated\",values:[\"auto\",\"top\",\"middle\",\"bottom\"],dflt:\"top\"},transition:{duration:{valType:\"number\",min:0,dflt:150},easing:{valType:\"enumerated\",values:s.transition.easing.values,dflt:\"cubic-in-out\"}},currentvalue:{visible:{valType:\"boolean\",dflt:!0},xanchor:{valType:\"enumerated\",values:[\"left\",\"center\",\"right\"],dflt:\"left\"},offset:{valType:\"number\",dflt:10},prefix:{valType:\"string\"},suffix:{valType:\"string\"},font:n({})},font:n({}),activebgcolor:{valType:\"color\",dflt:c.gripBgActiveColor},bgcolor:{valType:\"color\",dflt:c.railBgColor},bordercolor:{valType:\"color\",dflt:c.railBorderColor},borderwidth:{valType:\"number\",min:0,dflt:c.railBorderWidth},ticklen:{valType:\"number\",min:0,dflt:c.tickLength},tickcolor:{valType:\"color\",dflt:c.tickColor},tickwidth:{valType:\"number\",min:0,dflt:1},minorticklen:{valType:\"number\",min:0,dflt:c.minorTickLength}}),\"arraydraw\",\"from-root\")},{\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../../plot_api/plot_template\":757,\"../../plots/animation_attributes\":762,\"../../plots/font_attributes\":793,\"../../plots/pad_attributes\":827,\"./constants\":677}],677:[function(t,e,r){\"use strict\";e.exports={name:\"sliders\",containerClassName:\"slider-container\",groupClassName:\"slider-group\",inputAreaClass:\"slider-input-area\",railRectClass:\"slider-rail-rect\",railTouchRectClass:\"slider-rail-touch-rect\",gripRectClass:\"slider-grip-rect\",tickRectClass:\"slider-tick-rect\",inputProxyClass:\"slider-input-proxy\",labelsClass:\"slider-labels\",labelGroupClass:\"slider-label-group\",labelClass:\"slider-label\",currentValueClass:\"slider-current-value\",railHeight:5,menuIndexAttrName:\"slider-active-index\",autoMarginIdRoot:\"slider-\",minWidth:30,minHeight:30,textPadX:40,arrowOffsetX:4,railRadius:2,railWidth:5,railBorder:4,railBorderWidth:1,railBorderColor:\"#bec8d9\",railBgColor:\"#f8fafc\",railInset:8,stepInset:10,gripRadius:10,gripWidth:20,gripHeight:20,gripBorder:20,gripBorderWidth:1,gripBorderColor:\"#bec8d9\",gripBgColor:\"#f6f8fa\",gripBgActiveColor:\"#dbdde0\",labelPadding:8,labelOffset:0,tickWidth:1,tickColor:\"#333\",tickOffset:25,tickLength:7,minorTickOffset:25,minorTickColor:\"#333\",minorTickLength:4,currentValuePadding:8,currentValueInset:0}},{}],678:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/array_container_defaults\"),i=t(\"./attributes\"),o=t(\"./constants\").name,s=i.steps;function l(t,e,r){function o(r,a){return n.coerce(t,e,i,r,a)}for(var s=a(t,e,{name:\"steps\",handleItemDefaults:c}),l=0,u=0;u<s.length;u++)s[u].visible&&l++;if(l<2?e.visible=!1:o(\"visible\")){e._stepCount=l;var h=e._visibleSteps=n.filterVisible(s);(s[o(\"active\")]||{}).visible||(e.active=h[0]._index),o(\"x\"),o(\"y\"),n.noneOrAll(t,e,[\"x\",\"y\"]),o(\"xanchor\"),o(\"yanchor\"),o(\"len\"),o(\"lenmode\"),o(\"pad.t\"),o(\"pad.r\"),o(\"pad.b\"),o(\"pad.l\"),n.coerceFont(o,\"font\",r.font),o(\"currentvalue.visible\")&&(o(\"currentvalue.xanchor\"),o(\"currentvalue.prefix\"),o(\"currentvalue.suffix\"),o(\"currentvalue.offset\"),n.coerceFont(o,\"currentvalue.font\",e.font)),o(\"transition.duration\"),o(\"transition.easing\"),o(\"bgcolor\"),o(\"activebgcolor\"),o(\"bordercolor\"),o(\"borderwidth\"),o(\"ticklen\"),o(\"tickwidth\"),o(\"tickcolor\"),o(\"minorticklen\")}}function c(t,e){function r(r,a){return n.coerce(t,e,s,r,a)}if(\"skip\"===t.method||Array.isArray(t.args)?r(\"visible\"):e.visible=!1){r(\"method\"),r(\"args\");var a=r(\"label\",\"step-\"+e._index);r(\"value\",a),r(\"execute\")}}e.exports=function(t,e){a(t,e,{name:o,handleItemDefaults:l})}},{\"../../lib\":719,\"../../plots/array_container_defaults\":763,\"./attributes\":676,\"./constants\":677}],679:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../plots/plots\"),i=t(\"../color\"),o=t(\"../drawing\"),s=t(\"../../lib\"),l=t(\"../../lib/svg_text_utils\"),c=t(\"../../plot_api/plot_template\").arrayEditor,u=t(\"./constants\"),h=t(\"../../constants/alignment\"),f=h.LINE_SPACING,p=h.FROM_TL,d=h.FROM_BR;function g(t){return u.autoMarginIdRoot+t._index}function v(t){return t._index}function m(t,e){var r=o.tester.selectAll(\"g.\"+u.labelGroupClass).data(e._visibleSteps);r.enter().append(\"g\").classed(u.labelGroupClass,!0);var i=0,c=0;r.each(function(t){var r=b(n.select(this),{step:t},e).node();if(r){var a=o.bBox(r);c=Math.max(c,a.height),i=Math.max(i,a.width)}}),r.remove();var h=e._dims={};h.inputAreaWidth=Math.max(u.railWidth,u.gripHeight);var f=t._fullLayout._size;h.lx=f.l+f.w*e.x,h.ly=f.t+f.h*(1-e.y),\"fraction\"===e.lenmode?h.outerLength=Math.round(f.w*e.len):h.outerLength=e.len,h.inputAreaStart=0,h.inputAreaLength=Math.round(h.outerLength-e.pad.l-e.pad.r);var v=(h.inputAreaLength-2*u.stepInset)/(e._stepCount-1),m=i+u.labelPadding;if(h.labelStride=Math.max(1,Math.ceil(m/v)),h.labelHeight=c,h.currentValueMaxWidth=0,h.currentValueHeight=0,h.currentValueTotalHeight=0,h.currentValueMaxLines=1,e.currentvalue.visible){var x=o.tester.append(\"g\");r.each(function(t){var r=y(x,e,t.label),n=r.node()&&o.bBox(r.node())||{width:0,height:0},a=l.lineCount(r);h.currentValueMaxWidth=Math.max(h.currentValueMaxWidth,Math.ceil(n.width)),h.currentValueHeight=Math.max(h.currentValueHeight,Math.ceil(n.height)),h.currentValueMaxLines=Math.max(h.currentValueMaxLines,a)}),h.currentValueTotalHeight=h.currentValueHeight+e.currentvalue.offset,x.remove()}h.height=h.currentValueTotalHeight+u.tickOffset+e.ticklen+u.labelOffset+h.labelHeight+e.pad.t+e.pad.b;var _=\"left\";s.isRightAnchor(e)&&(h.lx-=h.outerLength,_=\"right\"),s.isCenterAnchor(e)&&(h.lx-=h.outerLength/2,_=\"center\");var w=\"top\";s.isBottomAnchor(e)&&(h.ly-=h.height,w=\"bottom\"),s.isMiddleAnchor(e)&&(h.ly-=h.height/2,w=\"middle\"),h.outerLength=Math.ceil(h.outerLength),h.height=Math.ceil(h.height),h.lx=Math.round(h.lx),h.ly=Math.round(h.ly);var k={y:e.y,b:h.height*d[w],t:h.height*p[w]};\"fraction\"===e.lenmode?(k.l=0,k.xl=e.x-e.len*p[_],k.r=0,k.xr=e.x+e.len*d[_]):(k.x=e.x,k.l=h.outerLength*p[_],k.r=h.outerLength*d[_]),a.autoMargin(t,g(e),k)}function y(t,e,r){if(e.currentvalue.visible){var n,a,i=e._dims;switch(e.currentvalue.xanchor){case\"right\":n=i.inputAreaLength-u.currentValueInset-i.currentValueMaxWidth,a=\"left\";break;case\"center\":n=.5*i.inputAreaLength,a=\"middle\";break;default:n=u.currentValueInset,a=\"left\"}var c=s.ensureSingle(t,\"text\",u.labelClass,function(t){t.classed(\"user-select-none\",!0).attr({\"text-anchor\":a,\"data-notex\":1})}),h=e.currentvalue.prefix?e.currentvalue.prefix:\"\";if(\"string\"==typeof r)h+=r;else{var p=e.steps[e.active].label,d=e._gd._fullLayout._meta;d&&(p=s.templateString(p,d)),h+=p}e.currentvalue.suffix&&(h+=e.currentvalue.suffix),c.call(o.font,e.currentvalue.font).text(h).call(l.convertToTspans,e._gd);var g=l.lineCount(c),v=(i.currentValueMaxLines+1-g)*e.currentvalue.font.size*f;return l.positionText(c,n,v),c}}function x(t,e,r){s.ensureSingle(t,\"rect\",u.gripRectClass,function(n){n.call(T,e,t,r).style(\"pointer-events\",\"all\")}).attr({width:u.gripWidth,height:u.gripHeight,rx:u.gripRadius,ry:u.gripRadius}).call(i.stroke,r.bordercolor).call(i.fill,r.bgcolor).style(\"stroke-width\",r.borderwidth+\"px\")}function b(t,e,r){var n=s.ensureSingle(t,\"text\",u.labelClass,function(t){t.classed(\"user-select-none\",!0).attr({\"text-anchor\":\"middle\",\"data-notex\":1})}),a=e.step.label,i=r._gd._fullLayout._meta;return i&&(a=s.templateString(a,i)),n.call(o.font,r.font).text(a).call(l.convertToTspans,r._gd),n}function _(t,e){var r=s.ensureSingle(t,\"g\",u.labelsClass),a=e._dims,i=r.selectAll(\"g.\"+u.labelGroupClass).data(a.labelSteps);i.enter().append(\"g\").classed(u.labelGroupClass,!0),i.exit().remove(),i.each(function(t){var r=n.select(this);r.call(b,t,e),o.setTranslate(r,S(e,t.fraction),u.tickOffset+e.ticklen+e.font.size*f+u.labelOffset+a.currentValueTotalHeight)})}function w(t,e,r,n,a){var i=Math.round(n*(r._stepCount-1)),o=r._visibleSteps[i]._index;o!==r.active&&k(t,e,r,o,!0,a)}function k(t,e,r,n,i,o){var s=r.active;r.active=n,c(t.layout,u.name,r).applyUpdate(\"active\",n);var l=r.steps[r.active];e.call(M,r,o),e.call(y,r),t.emit(\"plotly_sliderchange\",{slider:r,step:r.steps[r.active],interaction:i,previousActive:s}),l&&l.method&&i&&(e._nextMethod?(e._nextMethod.step=l,e._nextMethod.doCallback=i,e._nextMethod.doTransition=o):(e._nextMethod={step:l,doCallback:i,doTransition:o},e._nextMethodRaf=window.requestAnimationFrame(function(){var r=e._nextMethod.step;r.method&&(r.execute&&a.executeAPICommand(t,r.method,r.args),e._nextMethod=null,e._nextMethodRaf=null)})))}function T(t,e,r){var a=r.node(),o=n.select(e);function s(){return r.data()[0]}t.on(\"mousedown\",function(){var t=s();e.emit(\"plotly_sliderstart\",{slider:t});var l=r.select(\".\"+u.gripRectClass);n.event.stopPropagation(),n.event.preventDefault(),l.call(i.fill,t.activebgcolor);var c=E(t,n.mouse(a)[0]);w(e,r,t,c,!0),t._dragging=!0,o.on(\"mousemove\",function(){var t=s(),i=E(t,n.mouse(a)[0]);w(e,r,t,i,!1)}),o.on(\"mouseup\",function(){var t=s();t._dragging=!1,l.call(i.fill,t.bgcolor),o.on(\"mouseup\",null),o.on(\"mousemove\",null),e.emit(\"plotly_sliderend\",{slider:t,step:t.steps[t.active]})})})}function A(t,e){var r=t.selectAll(\"rect.\"+u.tickRectClass).data(e._visibleSteps),a=e._dims;r.enter().append(\"rect\").classed(u.tickRectClass,!0),r.exit().remove(),r.attr({width:e.tickwidth+\"px\",\"shape-rendering\":\"crispEdges\"}),r.each(function(t,r){var s=r%a.labelStride==0,l=n.select(this);l.attr({height:s?e.ticklen:e.minorticklen}).call(i.fill,e.tickcolor),o.setTranslate(l,S(e,r/(e._stepCount-1))-.5*e.tickwidth,(s?u.tickOffset:u.minorTickOffset)+a.currentValueTotalHeight)})}function M(t,e,r){for(var n=t.select(\"rect.\"+u.gripRectClass),a=0,i=0;i<e._stepCount;i++)if(e._visibleSteps[i]._index===e.active){a=i;break}var o=S(e,a/(e._stepCount-1));if(!e._invokingCommand){var s=n;r&&e.transition.duration>0&&(s=s.transition().duration(e.transition.duration).ease(e.transition.easing)),s.attr(\"transform\",\"translate(\"+(o-.5*u.gripWidth)+\",\"+e._dims.currentValueTotalHeight+\")\")}}function S(t,e){var r=t._dims;return r.inputAreaStart+u.stepInset+(r.inputAreaLength-2*u.stepInset)*Math.min(1,Math.max(0,e))}function E(t,e){var r=t._dims;return Math.min(1,Math.max(0,(e-u.stepInset-r.inputAreaStart)/(r.inputAreaLength-2*u.stepInset-2*r.inputAreaStart)))}function C(t,e,r){var n=r._dims,a=s.ensureSingle(t,\"rect\",u.railTouchRectClass,function(n){n.call(T,e,t,r).style(\"pointer-events\",\"all\")});a.attr({width:n.inputAreaLength,height:Math.max(n.inputAreaWidth,u.tickOffset+r.ticklen+n.labelHeight)}).call(i.fill,r.bgcolor).attr(\"opacity\",0),o.setTranslate(a,0,n.currentValueTotalHeight)}function L(t,e){var r=e._dims,n=r.inputAreaLength-2*u.railInset,a=s.ensureSingle(t,\"rect\",u.railRectClass);a.attr({width:n,height:u.railWidth,rx:u.railRadius,ry:u.railRadius,\"shape-rendering\":\"crispEdges\"}).call(i.stroke,e.bordercolor).call(i.fill,e.bgcolor).style(\"stroke-width\",e.borderwidth+\"px\"),o.setTranslate(a,u.railInset,.5*(r.inputAreaWidth-u.railWidth)+r.currentValueTotalHeight)}e.exports=function(t){var e=t._fullLayout,r=function(t,e){for(var r=t[u.name],n=[],a=0;a<r.length;a++){var i=r[a];i.visible&&(i._gd=e,n.push(i))}return n}(e,t),i=e._infolayer.selectAll(\"g.\"+u.containerClassName).data(r.length>0?[0]:[]);function s(e){e._commandObserver&&(e._commandObserver.remove(),delete e._commandObserver),a.autoMargin(t,g(e))}if(i.enter().append(\"g\").classed(u.containerClassName,!0).style(\"cursor\",\"ew-resize\"),i.exit().each(function(){n.select(this).selectAll(\"g.\"+u.groupClassName).each(s)}).remove(),0!==r.length){var l=i.selectAll(\"g.\"+u.groupClassName).data(r,v);l.enter().append(\"g\").classed(u.groupClassName,!0),l.exit().each(s).remove();for(var c=0;c<r.length;c++){var h=r[c];m(t,h)}l.each(function(e){var r=n.select(this);!function(t){var e=t._dims;e.labelSteps=[];for(var r=t._stepCount,n=0;n<r;n+=e.labelStride)e.labelSteps.push({fraction:n/(r-1),step:t._visibleSteps[n]})}(e),a.manageCommandObserver(t,e,e._visibleSteps,function(e){var n=r.data()[0];n.active!==e.index&&(n._dragging||k(t,r,n,e.index,!1,!0))}),function(t,e,r){(r.steps[r.active]||{}).visible||(r.active=r._visibleSteps[0]._index);e.call(y,r).call(L,r).call(_,r).call(A,r).call(C,t,r).call(x,t,r);var n=r._dims;o.setTranslate(e,n.lx+r.pad.l,n.ly+r.pad.t),e.call(M,r,!1),e.call(y,r)}(t,n.select(this),e)})}}},{\"../../constants/alignment\":688,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../../plot_api/plot_template\":757,\"../../plots/plots\":828,\"../color\":594,\"../drawing\":615,\"./constants\":677,d3:164}],680:[function(t,e,r){\"use strict\";var n=t(\"./constants\");e.exports={moduleType:\"component\",name:n.name,layoutAttributes:t(\"./attributes\"),supplyLayoutDefaults:t(\"./defaults\"),draw:t(\"./draw\")}},{\"./attributes\":676,\"./constants\":677,\"./defaults\":678,\"./draw\":679}],681:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"fast-isnumeric\"),i=t(\"../../plots/plots\"),o=t(\"../../registry\"),s=t(\"../../lib\"),l=t(\"../drawing\"),c=t(\"../color\"),u=t(\"../../lib/svg_text_utils\"),h=t(\"../../constants/interactions\");e.exports={draw:function(t,e,r){var p,d=r.propContainer,g=r.propName,v=r.placeholder,m=r.traceIndex,y=r.avoid||{},x=r.attributes,b=r.transform,_=r.containerGroup,w=t._fullLayout,k=1,T=!1,A=d.title,M=(A&&A.text?A.text:\"\").trim(),S=A&&A.font?A.font:{},E=S.family,C=S.size,L=S.color;\"title.text\"===g?p=\"titleText\":-1!==g.indexOf(\"axis\")?p=\"axisTitleText\":g.indexOf(!0)&&(p=\"colorbarTitleText\");var P=t._context.edits[p];\"\"===M?k=0:M.replace(f,\" % \")===v.replace(f,\" % \")&&(k=.2,T=!0,P||(M=\"\"));r._meta?M=s.templateString(M,r._meta):w._meta&&(M=s.templateString(M,w._meta));var O=M||P;_||(_=s.ensureSingle(w._infolayer,\"g\",\"g-\"+e));var I=_.selectAll(\"text\").data(O?[0]:[]);if(I.enter().append(\"text\"),I.text(M).attr(\"class\",e),I.exit().remove(),!O)return _;function z(t){s.syncOrAsync([D,R],t)}function D(e){var r;return b?(r=\"\",b.rotate&&(r+=\"rotate(\"+[b.rotate,x.x,x.y]+\")\"),b.offset&&(r+=\"translate(0, \"+b.offset+\")\")):r=null,e.attr(\"transform\",r),e.style({\"font-family\":E,\"font-size\":n.round(C,2)+\"px\",fill:c.rgb(L),opacity:k*c.opacity(L),\"font-weight\":i.fontWeight}).attr(x).call(u.convertToTspans,t),i.previousPromises(t)}function R(t){var e=n.select(t.node().parentNode);if(y&&y.selection&&y.side&&M){e.attr(\"transform\",null);var r=0,i={left:\"right\",right:\"left\",top:\"bottom\",bottom:\"top\"}[y.side],o=-1!==[\"left\",\"top\"].indexOf(y.side)?-1:1,c=a(y.pad)?y.pad:2,u=l.bBox(e.node()),h={left:0,top:0,right:w.width,bottom:w.height},f=y.maxShift||(h[y.side]-u[y.side])*(\"left\"===y.side||\"top\"===y.side?-1:1);if(f<0)r=f;else{var p=y.offsetLeft||0,d=y.offsetTop||0;u.left-=p,u.right-=p,u.top-=d,u.bottom-=d,y.selection.each(function(){var t=l.bBox(this);s.bBoxIntersect(u,t,c)&&(r=Math.max(r,o*(t[y.side]-u[i])+c))}),r=Math.min(f,r)}if(r>0||f<0){var g={left:[-r,0],right:[r,0],top:[0,-r],bottom:[0,r]}[y.side];e.attr(\"transform\",\"translate(\"+g+\")\")}}}I.call(z),P&&(M?I.on(\".opacity\",null):(k=0,T=!0,I.text(v).on(\"mouseover.opacity\",function(){n.select(this).transition().duration(h.SHOW_PLACEHOLDER).style(\"opacity\",1)}).on(\"mouseout.opacity\",function(){n.select(this).transition().duration(h.HIDE_PLACEHOLDER).style(\"opacity\",0)})),I.call(u.makeEditable,{gd:t}).on(\"edit\",function(e){void 0!==m?o.call(\"_guiRestyle\",t,g,e,m):o.call(\"_guiRelayout\",t,g,e)}).on(\"cancel\",function(){this.text(this.attr(\"data-unformatted\")).call(z)}).on(\"input\",function(t){this.text(t||\" \").call(u.positionText,x.x,x.y)}));return I.classed(\"js-placeholder\",T),_}};var f=/ [XY][0-9]* /},{\"../../constants/interactions\":694,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../../plots/plots\":828,\"../../registry\":848,\"../color\":594,\"../drawing\":615,d3:164,\"fast-isnumeric\":226}],682:[function(t,e,r){\"use strict\";var n=t(\"../../plots/font_attributes\"),a=t(\"../color/attributes\"),i=t(\"../../lib/extend\").extendFlat,o=t(\"../../plot_api/edit_types\").overrideAll,s=t(\"../../plots/pad_attributes\"),l=t(\"../../plot_api/plot_template\").templatedArray,c=l(\"button\",{visible:{valType:\"boolean\"},method:{valType:\"enumerated\",values:[\"restyle\",\"relayout\",\"animate\",\"update\",\"skip\"],dflt:\"restyle\"},args:{valType:\"info_array\",freeLength:!0,items:[{valType:\"any\"},{valType:\"any\"},{valType:\"any\"}]},label:{valType:\"string\",dflt:\"\"},execute:{valType:\"boolean\",dflt:!0}});e.exports=o(l(\"updatemenu\",{_arrayAttrRegexps:[/^updatemenus\\[(0|[1-9][0-9]+)\\]\\.buttons/],visible:{valType:\"boolean\"},type:{valType:\"enumerated\",values:[\"dropdown\",\"buttons\"],dflt:\"dropdown\"},direction:{valType:\"enumerated\",values:[\"left\",\"right\",\"up\",\"down\"],dflt:\"down\"},active:{valType:\"integer\",min:-1,dflt:0},showactive:{valType:\"boolean\",dflt:!0},buttons:c,x:{valType:\"number\",min:-2,max:3,dflt:-.05},xanchor:{valType:\"enumerated\",values:[\"auto\",\"left\",\"center\",\"right\"],dflt:\"right\"},y:{valType:\"number\",min:-2,max:3,dflt:1},yanchor:{valType:\"enumerated\",values:[\"auto\",\"top\",\"middle\",\"bottom\"],dflt:\"top\"},pad:i(s({editType:\"arraydraw\"}),{}),font:n({}),bgcolor:{valType:\"color\"},bordercolor:{valType:\"color\",dflt:a.borderLine},borderwidth:{valType:\"number\",min:0,dflt:1,editType:\"arraydraw\"}}),\"arraydraw\",\"from-root\")},{\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../../plot_api/plot_template\":757,\"../../plots/font_attributes\":793,\"../../plots/pad_attributes\":827,\"../color/attributes\":593}],683:[function(t,e,r){\"use strict\";e.exports={name:\"updatemenus\",containerClassName:\"updatemenu-container\",headerGroupClassName:\"updatemenu-header-group\",headerClassName:\"updatemenu-header\",headerArrowClassName:\"updatemenu-header-arrow\",dropdownButtonGroupClassName:\"updatemenu-dropdown-button-group\",dropdownButtonClassName:\"updatemenu-dropdown-button\",buttonClassName:\"updatemenu-button\",itemRectClassName:\"updatemenu-item-rect\",itemTextClassName:\"updatemenu-item-text\",menuIndexAttrName:\"updatemenu-active-index\",autoMarginIdRoot:\"updatemenu-\",blankHeaderOpts:{label:\"  \"},minWidth:30,minHeight:30,textPadX:24,arrowPadX:16,rx:2,ry:2,textOffsetX:12,textOffsetY:3,arrowOffsetX:4,gapButtonHeader:5,gapButton:2,activeColor:\"#F4FAFF\",hoverColor:\"#F4FAFF\",arrowSymbol:{left:\"\\u25c4\",right:\"\\u25ba\",up:\"\\u25b2\",down:\"\\u25bc\"}}},{}],684:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/array_container_defaults\"),i=t(\"./attributes\"),o=t(\"./constants\").name,s=i.buttons;function l(t,e,r){function o(r,a){return n.coerce(t,e,i,r,a)}o(\"visible\",a(t,e,{name:\"buttons\",handleItemDefaults:c}).length>0)&&(o(\"active\"),o(\"direction\"),o(\"type\"),o(\"showactive\"),o(\"x\"),o(\"y\"),n.noneOrAll(t,e,[\"x\",\"y\"]),o(\"xanchor\"),o(\"yanchor\"),o(\"pad.t\"),o(\"pad.r\"),o(\"pad.b\"),o(\"pad.l\"),n.coerceFont(o,\"font\",r.font),o(\"bgcolor\",r.paper_bgcolor),o(\"bordercolor\"),o(\"borderwidth\"))}function c(t,e){function r(r,a){return n.coerce(t,e,s,r,a)}r(\"visible\",\"skip\"===t.method||Array.isArray(t.args))&&(r(\"method\"),r(\"args\"),r(\"label\"),r(\"execute\"))}e.exports=function(t,e){a(t,e,{name:o,handleItemDefaults:l})}},{\"../../lib\":719,\"../../plots/array_container_defaults\":763,\"./attributes\":682,\"./constants\":683}],685:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../plots/plots\"),i=t(\"../color\"),o=t(\"../drawing\"),s=t(\"../../lib\"),l=t(\"../../lib/svg_text_utils\"),c=t(\"../../plot_api/plot_template\").arrayEditor,u=t(\"../../constants/alignment\").LINE_SPACING,h=t(\"./constants\"),f=t(\"./scrollbox\");function p(t){return t._index}function d(t,e){return+t.attr(h.menuIndexAttrName)===e._index}function g(t,e,r,n,a,i,o,s){e.active=o,c(t.layout,h.name,e).applyUpdate(\"active\",o),\"buttons\"===e.type?m(t,n,null,null,e):\"dropdown\"===e.type&&(a.attr(h.menuIndexAttrName,\"-1\"),v(t,n,a,i,e),s||m(t,n,a,i,e))}function v(t,e,r,n,a){var i=s.ensureSingle(e,\"g\",h.headerClassName,function(t){t.style(\"pointer-events\",\"all\")}),l=a._dims,c=a.active,u=a.buttons[c]||h.blankHeaderOpts,f={y:a.pad.t,yPad:0,x:a.pad.l,xPad:0,index:0},p={width:l.headerWidth,height:l.headerHeight};i.call(y,a,u,t).call(M,a,f,p),s.ensureSingle(e,\"text\",h.headerArrowClassName,function(t){t.classed(\"user-select-none\",!0).attr(\"text-anchor\",\"end\").call(o.font,a.font).text(h.arrowSymbol[a.direction])}).attr({x:l.headerWidth-h.arrowOffsetX+a.pad.l,y:l.headerHeight/2+h.textOffsetY+a.pad.t}),i.on(\"click\",function(){r.call(S,String(d(r,a)?-1:a._index)),m(t,e,r,n,a)}),i.on(\"mouseover\",function(){i.call(w)}),i.on(\"mouseout\",function(){i.call(k,a)}),o.setTranslate(e,l.lx,l.ly)}function m(t,e,r,i,o){r||(r=e).attr(\"pointer-events\",\"all\");var l=function(t){return-1==+t.attr(h.menuIndexAttrName)}(r)&&\"buttons\"!==o.type?[]:o.buttons,c=\"dropdown\"===o.type?h.dropdownButtonClassName:h.buttonClassName,u=r.selectAll(\"g.\"+c).data(s.filterVisible(l)),f=u.enter().append(\"g\").classed(c,!0),p=u.exit();\"dropdown\"===o.type?(f.attr(\"opacity\",\"0\").transition().attr(\"opacity\",\"1\"),p.transition().attr(\"opacity\",\"0\").remove()):p.remove();var d=0,v=0,m=o._dims,x=-1!==[\"up\",\"down\"].indexOf(o.direction);\"dropdown\"===o.type&&(x?v=m.headerHeight+h.gapButtonHeader:d=m.headerWidth+h.gapButtonHeader),\"dropdown\"===o.type&&\"up\"===o.direction&&(v=-h.gapButtonHeader+h.gapButton-m.openHeight),\"dropdown\"===o.type&&\"left\"===o.direction&&(d=-h.gapButtonHeader+h.gapButton-m.openWidth);var b={x:m.lx+d+o.pad.l,y:m.ly+v+o.pad.t,yPad:h.gapButton,xPad:h.gapButton,index:0},T={l:b.x+o.borderwidth,t:b.y+o.borderwidth};u.each(function(s,l){var c=n.select(this);c.call(y,o,s,t).call(M,o,b),c.on(\"click\",function(){n.event.defaultPrevented||(g(t,o,0,e,r,i,l),s.execute&&a.executeAPICommand(t,s.method,s.args),t.emit(\"plotly_buttonclicked\",{menu:o,button:s,active:o.active}))}),c.on(\"mouseover\",function(){c.call(w)}),c.on(\"mouseout\",function(){c.call(k,o),u.call(_,o)})}),u.call(_,o),x?(T.w=Math.max(m.openWidth,m.headerWidth),T.h=b.y-T.t):(T.w=b.x-T.l,T.h=Math.max(m.openHeight,m.headerHeight)),T.direction=o.direction,i&&(u.size()?function(t,e,r,n,a,i){var o,s,l,c=a.direction,u=\"up\"===c||\"down\"===c,f=a._dims,p=a.active;if(u)for(s=0,l=0;l<p;l++)s+=f.heights[l]+h.gapButton;else for(o=0,l=0;l<p;l++)o+=f.widths[l]+h.gapButton;n.enable(i,o,s),n.hbar&&n.hbar.attr(\"opacity\",\"0\").transition().attr(\"opacity\",\"1\");n.vbar&&n.vbar.attr(\"opacity\",\"0\").transition().attr(\"opacity\",\"1\")}(0,0,0,i,o,T):function(t){var e=!!t.hbar,r=!!t.vbar;e&&t.hbar.transition().attr(\"opacity\",\"0\").each(\"end\",function(){e=!1,r||t.disable()});r&&t.vbar.transition().attr(\"opacity\",\"0\").each(\"end\",function(){r=!1,e||t.disable()})}(i))}function y(t,e,r,n){t.call(x,e).call(b,e,r,n)}function x(t,e){s.ensureSingle(t,\"rect\",h.itemRectClassName,function(t){t.attr({rx:h.rx,ry:h.ry,\"shape-rendering\":\"crispEdges\"})}).call(i.stroke,e.bordercolor).call(i.fill,e.bgcolor).style(\"stroke-width\",e.borderwidth+\"px\")}function b(t,e,r,n){var a=s.ensureSingle(t,\"text\",h.itemTextClassName,function(t){t.classed(\"user-select-none\",!0).attr({\"text-anchor\":\"start\",\"data-notex\":1})}),i=r.label,c=n._fullLayout._meta;c&&(i=s.templateString(i,c)),a.call(o.font,e.font).text(i).call(l.convertToTspans,n)}function _(t,e){var r=e.active;t.each(function(t,a){var o=n.select(this);a===r&&e.showactive&&o.select(\"rect.\"+h.itemRectClassName).call(i.fill,h.activeColor)})}function w(t){t.select(\"rect.\"+h.itemRectClassName).call(i.fill,h.hoverColor)}function k(t,e){t.select(\"rect.\"+h.itemRectClassName).call(i.fill,e.bgcolor)}function T(t,e){var r=e._dims={width1:0,height1:0,heights:[],widths:[],totalWidth:0,totalHeight:0,openWidth:0,openHeight:0,lx:0,ly:0},i=o.tester.selectAll(\"g.\"+h.dropdownButtonClassName).data(s.filterVisible(e.buttons));i.enter().append(\"g\").classed(h.dropdownButtonClassName,!0);var c=-1!==[\"up\",\"down\"].indexOf(e.direction);i.each(function(a,i){var s=n.select(this);s.call(y,e,a,t);var f=s.select(\".\"+h.itemTextClassName),p=f.node()&&o.bBox(f.node()).width,d=Math.max(p+h.textPadX,h.minWidth),g=e.font.size*u,v=l.lineCount(f),m=Math.max(g*v,h.minHeight)+h.textOffsetY;m=Math.ceil(m),d=Math.ceil(d),r.widths[i]=d,r.heights[i]=m,r.height1=Math.max(r.height1,m),r.width1=Math.max(r.width1,d),c?(r.totalWidth=Math.max(r.totalWidth,d),r.openWidth=r.totalWidth,r.totalHeight+=m+h.gapButton,r.openHeight+=m+h.gapButton):(r.totalWidth+=d+h.gapButton,r.openWidth+=d+h.gapButton,r.totalHeight=Math.max(r.totalHeight,m),r.openHeight=r.totalHeight)}),c?r.totalHeight-=h.gapButton:r.totalWidth-=h.gapButton,r.headerWidth=r.width1+h.arrowPadX,r.headerHeight=r.height1,\"dropdown\"===e.type&&(c?(r.width1+=h.arrowPadX,r.totalHeight=r.height1):r.totalWidth=r.width1,r.totalWidth+=h.arrowPadX),i.remove();var f=r.totalWidth+e.pad.l+e.pad.r,p=r.totalHeight+e.pad.t+e.pad.b,d=t._fullLayout._size;r.lx=d.l+d.w*e.x,r.ly=d.t+d.h*(1-e.y);var g=\"left\";s.isRightAnchor(e)&&(r.lx-=f,g=\"right\"),s.isCenterAnchor(e)&&(r.lx-=f/2,g=\"center\");var v=\"top\";s.isBottomAnchor(e)&&(r.ly-=p,v=\"bottom\"),s.isMiddleAnchor(e)&&(r.ly-=p/2,v=\"middle\"),r.totalWidth=Math.ceil(r.totalWidth),r.totalHeight=Math.ceil(r.totalHeight),r.lx=Math.round(r.lx),r.ly=Math.round(r.ly),a.autoMargin(t,A(e),{x:e.x,y:e.y,l:f*({right:1,center:.5}[g]||0),r:f*({left:1,center:.5}[g]||0),b:p*({top:1,middle:.5}[v]||0),t:p*({bottom:1,middle:.5}[v]||0)})}function A(t){return h.autoMarginIdRoot+t._index}function M(t,e,r,n){n=n||{};var a=t.select(\".\"+h.itemRectClassName),i=t.select(\".\"+h.itemTextClassName),s=e.borderwidth,c=r.index,f=e._dims;o.setTranslate(t,s+r.x,s+r.y);var p=-1!==[\"up\",\"down\"].indexOf(e.direction),d=n.height||(p?f.heights[c]:f.height1);a.attr({x:0,y:0,width:n.width||(p?f.width1:f.widths[c]),height:d});var g=e.font.size*u,v=(l.lineCount(i)-1)*g/2;l.positionText(i,h.textOffsetX,d/2-v+h.textOffsetY),p?r.y+=f.heights[c]+r.yPad:r.x+=f.widths[c]+r.xPad,r.index++}function S(t,e){t.attr(h.menuIndexAttrName,e||\"-1\").selectAll(\"g.\"+h.dropdownButtonClassName).remove()}e.exports=function(t){var e=t._fullLayout,r=s.filterVisible(e[h.name]);function i(e){a.autoMargin(t,A(e))}var o=e._menulayer.selectAll(\"g.\"+h.containerClassName).data(r.length>0?[0]:[]);if(o.enter().append(\"g\").classed(h.containerClassName,!0).style(\"cursor\",\"pointer\"),o.exit().each(function(){n.select(this).selectAll(\"g.\"+h.headerGroupClassName).each(i)}).remove(),0!==r.length){var l=o.selectAll(\"g.\"+h.headerGroupClassName).data(r,p);l.enter().append(\"g\").classed(h.headerGroupClassName,!0);for(var c=s.ensureSingle(o,\"g\",h.dropdownButtonGroupClassName,function(t){t.style(\"pointer-events\",\"all\")}),u=0;u<r.length;u++){var y=r[u];T(t,y)}var x=\"updatemenus\"+e._uid,b=new f(t,c,x);l.enter().size()&&(c.node().parentNode.appendChild(c.node()),c.call(S)),l.exit().each(function(t){c.call(S),i(t)}).remove(),l.each(function(e){var r=n.select(this),i=\"dropdown\"===e.type?c:null;a.manageCommandObserver(t,e,e.buttons,function(n){g(t,e,e.buttons[n.index],r,i,b,n.index,!0)}),\"dropdown\"===e.type?(v(t,r,c,b,e),d(c,e)&&m(t,r,c,b,e)):m(t,r,null,null,e)})}}},{\"../../constants/alignment\":688,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../../plot_api/plot_template\":757,\"../../plots/plots\":828,\"../color\":594,\"../drawing\":615,\"./constants\":683,\"./scrollbox\":687,d3:164}],686:[function(t,e,r){arguments[4][680][0].apply(r,arguments)},{\"./attributes\":682,\"./constants\":683,\"./defaults\":684,\"./draw\":685,dup:680}],687:[function(t,e,r){\"use strict\";e.exports=s;var n=t(\"d3\"),a=t(\"../color\"),i=t(\"../drawing\"),o=t(\"../../lib\");function s(t,e,r){this.gd=t,this.container=e,this.id=r,this.position=null,this.translateX=null,this.translateY=null,this.hbar=null,this.vbar=null,this.bg=this.container.selectAll(\"rect.scrollbox-bg\").data([0]),this.bg.exit().on(\".drag\",null).on(\"wheel\",null).remove(),this.bg.enter().append(\"rect\").classed(\"scrollbox-bg\",!0).style(\"pointer-events\",\"all\").attr({opacity:0,x:0,y:0,width:0,height:0})}s.barWidth=2,s.barLength=20,s.barRadius=2,s.barPad=1,s.barColor=\"#808BA4\",s.prototype.enable=function(t,e,r){var o=this.gd._fullLayout,l=o.width,c=o.height;this.position=t;var u,h,f,p,d=this.position.l,g=this.position.w,v=this.position.t,m=this.position.h,y=this.position.direction,x=\"down\"===y,b=\"left\"===y,_=\"up\"===y,w=g,k=m;x||b||\"right\"===y||_||(this.position.direction=\"down\",x=!0),x||_?(h=(u=d)+w,x?(f=v,k=(p=Math.min(f+k,c))-f):k=(p=v+k)-(f=Math.max(p-k,0))):(p=(f=v)+k,b?w=(h=d+w)-(u=Math.max(h-w,0)):(u=d,w=(h=Math.min(u+w,l))-u)),this._box={l:u,t:f,w:w,h:k};var T=g>w,A=s.barLength+2*s.barPad,M=s.barWidth+2*s.barPad,S=d,E=v+m;E+M>c&&(E=c-M);var C=this.container.selectAll(\"rect.scrollbar-horizontal\").data(T?[0]:[]);C.exit().on(\".drag\",null).remove(),C.enter().append(\"rect\").classed(\"scrollbar-horizontal\",!0).call(a.fill,s.barColor),T?(this.hbar=C.attr({rx:s.barRadius,ry:s.barRadius,x:S,y:E,width:A,height:M}),this._hbarXMin=S+A/2,this._hbarTranslateMax=w-A):(delete this.hbar,delete this._hbarXMin,delete this._hbarTranslateMax);var L=m>k,P=s.barWidth+2*s.barPad,O=s.barLength+2*s.barPad,I=d+g,z=v;I+P>l&&(I=l-P);var D=this.container.selectAll(\"rect.scrollbar-vertical\").data(L?[0]:[]);D.exit().on(\".drag\",null).remove(),D.enter().append(\"rect\").classed(\"scrollbar-vertical\",!0).call(a.fill,s.barColor),L?(this.vbar=D.attr({rx:s.barRadius,ry:s.barRadius,x:I,y:z,width:P,height:O}),this._vbarYMin=z+O/2,this._vbarTranslateMax=k-O):(delete this.vbar,delete this._vbarYMin,delete this._vbarTranslateMax);var R=this.id,F=u-.5,B=L?h+P+.5:h+.5,N=f-.5,j=T?p+M+.5:p+.5,V=o._topdefs.selectAll(\"#\"+R).data(T||L?[0]:[]);if(V.exit().remove(),V.enter().append(\"clipPath\").attr(\"id\",R).append(\"rect\"),T||L?(this._clipRect=V.select(\"rect\").attr({x:Math.floor(F),y:Math.floor(N),width:Math.ceil(B)-Math.floor(F),height:Math.ceil(j)-Math.floor(N)}),this.container.call(i.setClipUrl,R,this.gd),this.bg.attr({x:d,y:v,width:g,height:m})):(this.bg.attr({width:0,height:0}),this.container.on(\"wheel\",null).on(\".drag\",null).call(i.setClipUrl,null),delete this._clipRect),T||L){var U=n.behavior.drag().on(\"dragstart\",function(){n.event.sourceEvent.preventDefault()}).on(\"drag\",this._onBoxDrag.bind(this));this.container.on(\"wheel\",null).on(\"wheel\",this._onBoxWheel.bind(this)).on(\".drag\",null).call(U);var q=n.behavior.drag().on(\"dragstart\",function(){n.event.sourceEvent.preventDefault(),n.event.sourceEvent.stopPropagation()}).on(\"drag\",this._onBarDrag.bind(this));T&&this.hbar.on(\".drag\",null).call(q),L&&this.vbar.on(\".drag\",null).call(q)}this.setTranslate(e,r)},s.prototype.disable=function(){(this.hbar||this.vbar)&&(this.bg.attr({width:0,height:0}),this.container.on(\"wheel\",null).on(\".drag\",null).call(i.setClipUrl,null),delete this._clipRect),this.hbar&&(this.hbar.on(\".drag\",null),this.hbar.remove(),delete this.hbar,delete this._hbarXMin,delete this._hbarTranslateMax),this.vbar&&(this.vbar.on(\".drag\",null),this.vbar.remove(),delete this.vbar,delete this._vbarYMin,delete this._vbarTranslateMax)},s.prototype._onBoxDrag=function(){var t=this.translateX,e=this.translateY;this.hbar&&(t-=n.event.dx),this.vbar&&(e-=n.event.dy),this.setTranslate(t,e)},s.prototype._onBoxWheel=function(){var t=this.translateX,e=this.translateY;this.hbar&&(t+=n.event.deltaY),this.vbar&&(e+=n.event.deltaY),this.setTranslate(t,e)},s.prototype._onBarDrag=function(){var t=this.translateX,e=this.translateY;if(this.hbar){var r=t+this._hbarXMin,a=r+this._hbarTranslateMax;t=(o.constrain(n.event.x,r,a)-r)/(a-r)*(this.position.w-this._box.w)}if(this.vbar){var i=e+this._vbarYMin,s=i+this._vbarTranslateMax;e=(o.constrain(n.event.y,i,s)-i)/(s-i)*(this.position.h-this._box.h)}this.setTranslate(t,e)},s.prototype.setTranslate=function(t,e){var r=this.position.w-this._box.w,n=this.position.h-this._box.h;if(t=o.constrain(t||0,0,r),e=o.constrain(e||0,0,n),this.translateX=t,this.translateY=e,this.container.call(i.setTranslate,this._box.l-this.position.l-t,this._box.t-this.position.t-e),this._clipRect&&this._clipRect.attr({x:Math.floor(this.position.l+t-.5),y:Math.floor(this.position.t+e-.5)}),this.hbar){var a=t/r;this.hbar.call(i.setTranslate,t+a*this._hbarTranslateMax,e)}if(this.vbar){var s=e/n;this.vbar.call(i.setTranslate,t,e+s*this._vbarTranslateMax)}}},{\"../../lib\":719,\"../color\":594,\"../drawing\":615,d3:164}],688:[function(t,e,r){\"use strict\";e.exports={FROM_BL:{left:0,center:.5,right:1,bottom:0,middle:.5,top:1},FROM_TL:{left:0,center:.5,right:1,bottom:1,middle:.5,top:0},FROM_BR:{left:1,center:.5,right:0,bottom:0,middle:.5,top:1},LINE_SPACING:1.3,CAP_SHIFT:.7,MID_SHIFT:.35,OPPOSITE_SIDE:{left:\"right\",right:\"left\",top:\"bottom\",bottom:\"top\"}}},{}],689:[function(t,e,r){\"use strict\";e.exports={INCREASING:{COLOR:\"#3D9970\",SYMBOL:\"\\u25b2\"},DECREASING:{COLOR:\"#FF4136\",SYMBOL:\"\\u25bc\"}}},{}],690:[function(t,e,r){\"use strict\";e.exports={FORMAT_LINK:\"https://github.com/d3/d3-3.x-api-reference/blob/master/Formatting.md#d3_format\",DATE_FORMAT_LINK:\"https://github.com/d3/d3-3.x-api-reference/blob/master/Time-Formatting.md#format\"}},{}],691:[function(t,e,r){\"use strict\";e.exports={COMPARISON_OPS:[\"=\",\"!=\",\"<\",\">=\",\">\",\"<=\"],COMPARISON_OPS2:[\"=\",\"<\",\">=\",\">\",\"<=\"],INTERVAL_OPS:[\"[]\",\"()\",\"[)\",\"(]\",\"][\",\")(\",\"](\",\")[\"],SET_OPS:[\"{}\",\"}{\"],CONSTRAINT_REDUCTION:{\"=\":\"=\",\"<\":\"<\",\"<=\":\"<\",\">\":\">\",\">=\":\">\",\"[]\":\"[]\",\"()\":\"[]\",\"[)\":\"[]\",\"(]\":\"[]\",\"][\":\"][\",\")(\":\"][\",\"](\":\"][\",\")[\":\"][\"}}},{}],692:[function(t,e,r){\"use strict\";e.exports={solid:[[],0],dot:[[.5,1],200],dash:[[.5,1],50],longdash:[[.5,1],10],dashdot:[[.5,.625,.875,1],50],longdashdot:[[.5,.7,.8,1],10]}},{}],693:[function(t,e,r){\"use strict\";e.exports={circle:\"\\u25cf\",\"circle-open\":\"\\u25cb\",square:\"\\u25a0\",\"square-open\":\"\\u25a1\",diamond:\"\\u25c6\",\"diamond-open\":\"\\u25c7\",cross:\"+\",x:\"\\u274c\"}},{}],694:[function(t,e,r){\"use strict\";e.exports={SHOW_PLACEHOLDER:100,HIDE_PLACEHOLDER:1e3,DESELECTDIM:.2}},{}],695:[function(t,e,r){\"use strict\";e.exports={BADNUM:void 0,FP_SAFE:Number.MAX_VALUE/1e4,ONEAVGYEAR:315576e5,ONEAVGMONTH:26298e5,ONEDAY:864e5,ONEHOUR:36e5,ONEMIN:6e4,ONESEC:1e3,EPOCHJD:2440587.5,ALMOST_EQUAL:1-1e-6,LOG_CLIP:10,MINUS_SIGN:\"\\u2212\"}},{}],696:[function(t,e,r){\"use strict\";r.xmlns=\"http://www.w3.org/2000/xmlns/\",r.svg=\"http://www.w3.org/2000/svg\",r.xlink=\"http://www.w3.org/1999/xlink\",r.svgAttrs={xmlns:r.svg,\"xmlns:xlink\":r.xlink}},{}],697:[function(t,e,r){\"use strict\";r.version=\"1.50.1\",t(\"es6-promise\").polyfill(),t(\"../build/plotcss\"),t(\"./fonts/mathjax_config\")();for(var n=t(\"./registry\"),a=r.register=n.register,i=t(\"./plot_api\"),o=Object.keys(i),s=0;s<o.length;s++){var l=o[s];\"_\"!==l.charAt(0)&&(r[l]=i[l]),a({moduleType:\"apiMethod\",name:l,fn:i[l]})}a(t(\"./traces/scatter\")),a([t(\"./components/fx\"),t(\"./components/legend\"),t(\"./components/annotations\"),t(\"./components/annotations3d\"),t(\"./components/shapes\"),t(\"./components/images\"),t(\"./components/updatemenus\"),t(\"./components/sliders\"),t(\"./components/rangeslider\"),t(\"./components/rangeselector\"),t(\"./components/grid\"),t(\"./components/errorbars\"),t(\"./components/colorscale\"),t(\"./components/colorbar\")]),a([t(\"./locale-en\"),t(\"./locale-en-us\")]),r.Icons=t(\"./fonts/ploticon\"),r.Plots=t(\"./plots/plots\"),r.Fx=t(\"./components/fx\"),r.Snapshot=t(\"./snapshot\"),r.PlotSchema=t(\"./plot_api/plot_schema\"),r.Queue=t(\"./lib/queue\"),r.d3=t(\"d3\")},{\"../build/plotcss\":1,\"./components/annotations\":585,\"./components/annotations3d\":590,\"./components/colorbar\":600,\"./components/colorscale\":606,\"./components/errorbars\":621,\"./components/fx\":632,\"./components/grid\":636,\"./components/images\":641,\"./components/legend\":649,\"./components/rangeselector\":660,\"./components/rangeslider\":667,\"./components/shapes\":675,\"./components/sliders\":680,\"./components/updatemenus\":686,\"./fonts/mathjax_config\":698,\"./fonts/ploticon\":699,\"./lib/queue\":734,\"./locale-en\":748,\"./locale-en-us\":747,\"./plot_api\":752,\"./plot_api/plot_schema\":756,\"./plots/plots\":828,\"./registry\":848,\"./snapshot\":853,\"./traces/scatter\":1122,d3:164,\"es6-promise\":219}],698:[function(t,e,r){\"use strict\";e.exports=function(){\"undefined\"!=typeof MathJax&&(\"local\"!==(window.PlotlyConfig||{}).MathJaxConfig&&(MathJax.Hub.Config({messageStyle:\"none\",skipStartupTypeset:!0,displayAlign:\"left\",tex2jax:{inlineMath:[[\"$\",\"$\"],[\"\\\\(\",\"\\\\)\"]]}}),MathJax.Hub.Configured()))}},{}],699:[function(t,e,r){\"use strict\";e.exports={undo:{width:857.1,height:1e3,path:\"m857 350q0-87-34-166t-91-137-137-92-166-34q-96 0-183 41t-147 114q-4 6-4 13t5 11l76 77q6 5 14 5 9-1 13-7 41-53 100-82t126-29q58 0 110 23t92 61 61 91 22 111-22 111-61 91-92 61-110 23q-55 0-105-20t-90-57l77-77q17-16 8-38-10-23-33-23h-250q-15 0-25 11t-11 25v250q0 24 22 33 22 10 39-8l72-72q60 57 137 88t159 31q87 0 166-34t137-92 91-137 34-166z\",transform:\"matrix(1 0 0 -1 0 850)\"},home:{width:928.6,height:1e3,path:\"m786 296v-267q0-15-11-26t-25-10h-214v214h-143v-214h-214q-15 0-25 10t-11 26v267q0 1 0 2t0 2l321 264 321-264q1-1 1-4z m124 39l-34-41q-5-5-12-6h-2q-7 0-12 3l-386 322-386-322q-7-4-13-4-7 2-12 7l-35 41q-4 5-3 13t6 12l401 334q18 15 42 15t43-15l136-114v109q0 8 5 13t13 5h107q8 0 13-5t5-13v-227l122-102q5-5 6-12t-4-13z\",transform:\"matrix(1 0 0 -1 0 850)\"},\"camera-retro\":{width:1e3,height:1e3,path:\"m518 386q0 8-5 13t-13 5q-37 0-63-27t-26-63q0-8 5-13t13-5 12 5 5 13q0 23 16 38t38 16q8 0 13 5t5 13z m125-73q0-59-42-101t-101-42-101 42-42 101 42 101 101 42 101-42 42-101z m-572-320h858v71h-858v-71z m643 320q0 89-62 152t-152 62-151-62-63-152 63-151 151-63 152 63 62 151z m-571 358h214v72h-214v-72z m-72-107h858v143h-462l-36-71h-360v-72z m929 143v-714q0-30-21-51t-50-21h-858q-29 0-50 21t-21 51v714q0 30 21 51t50 21h858q29 0 50-21t21-51z\",transform:\"matrix(1 0 0 -1 0 850)\"},zoombox:{width:1e3,height:1e3,path:\"m1000-25l-250 251c40 63 63 138 63 218 0 224-182 406-407 406-224 0-406-182-406-406s183-406 407-406c80 0 155 22 218 62l250-250 125 125z m-812 250l0 438 437 0 0-438-437 0z m62 375l313 0 0-312-313 0 0 312z\",transform:\"matrix(1 0 0 -1 0 850)\"},pan:{width:1e3,height:1e3,path:\"m1000 350l-187 188 0-125-250 0 0 250 125 0-188 187-187-187 125 0 0-250-250 0 0 125-188-188 186-187 0 125 252 0 0-250-125 0 187-188 188 188-125 0 0 250 250 0 0-126 187 188z\",transform:\"matrix(1 0 0 -1 0 850)\"},zoom_plus:{width:875,height:1e3,path:\"m1 787l0-875 875 0 0 875-875 0z m687-500l-187 0 0-187-125 0 0 187-188 0 0 125 188 0 0 187 125 0 0-187 187 0 0-125z\",transform:\"matrix(1 0 0 -1 0 850)\"},zoom_minus:{width:875,height:1e3,path:\"m0 788l0-876 875 0 0 876-875 0z m688-500l-500 0 0 125 500 0 0-125z\",transform:\"matrix(1 0 0 -1 0 850)\"},autoscale:{width:1e3,height:1e3,path:\"m250 850l-187 0-63 0 0-62 0-188 63 0 0 188 187 0 0 62z m688 0l-188 0 0-62 188 0 0-188 62 0 0 188 0 62-62 0z m-875-938l0 188-63 0 0-188 0-62 63 0 187 0 0 62-187 0z m875 188l0-188-188 0 0-62 188 0 62 0 0 62 0 188-62 0z m-125 188l-1 0-93-94-156 156 156 156 92-93 2 0 0 250-250 0 0-2 93-92-156-156-156 156 94 92 0 2-250 0 0-250 0 0 93 93 157-156-157-156-93 94 0 0 0-250 250 0 0 0-94 93 156 157 156-157-93-93 0 0 250 0 0 250z\",transform:\"matrix(1 0 0 -1 0 850)\"},tooltip_basic:{width:1500,height:1e3,path:\"m375 725l0 0-375-375 375-374 0-1 1125 0 0 750-1125 0z\",transform:\"matrix(1 0 0 -1 0 850)\"},tooltip_compare:{width:1125,height:1e3,path:\"m187 786l0 2-187-188 188-187 0 0 937 0 0 373-938 0z m0-499l0 1-187-188 188-188 0 0 937 0 0 376-938-1z\",transform:\"matrix(1 0 0 -1 0 850)\"},plotlylogo:{width:1542,height:1e3,path:\"m0-10h182v-140h-182v140z m228 146h183v-286h-183v286z m225 714h182v-1000h-182v1000z m225-285h182v-715h-182v715z m225 142h183v-857h-183v857z m231-428h182v-429h-182v429z m225-291h183v-138h-183v138z\",transform:\"matrix(1 0 0 -1 0 850)\"},\"z-axis\":{width:1e3,height:1e3,path:\"m833 5l-17 108v41l-130-65 130-66c0 0 0 38 0 39 0-1 36-14 39-25 4-15-6-22-16-30-15-12-39-16-56-20-90-22-187-23-279-23-261 0-341 34-353 59 3 60 228 110 228 110-140-8-351-35-351-116 0-120 293-142 474-142 155 0 477 22 477 142 0 50-74 79-163 96z m-374 94c-58-5-99-21-99-40 0-24 65-43 144-43 79 0 143 19 143 43 0 19-42 34-98 40v216h87l-132 135-133-135h88v-216z m167 515h-136v1c16 16 31 34 46 52l84 109v54h-230v-71h124v-1c-16-17-28-32-44-51l-89-114v-51h245v72z\",transform:\"matrix(1 0 0 -1 0 850)\"},\"3d_rotate\":{width:1e3,height:1e3,path:\"m922 660c-5 4-9 7-14 11-359 263-580-31-580-31l-102 28 58-400c0 1 1 1 2 2 118 108 351 249 351 249s-62 27-100 42c88 83 222 183 347 122 16-8 30-17 44-27-2 1-4 2-6 4z m36-329c0 0 64 229-88 296-62 27-124 14-175-11 157-78 225-208 249-266 8-19 11-31 11-31 2 5 6 15 11 32-5-13-8-20-8-20z m-775-239c70-31 117-50 198-32-121 80-199 346-199 346l-96-15-58-12c0 0 55-226 155-287z m603 133l-317-139c0 0 4-4 19-14 7-5 24-15 24-15s-177-147-389 4c235-287 536-112 536-112l31-22 100 299-4-1z m-298-153c6-4 14-9 24-15 0 0-17 10-24 15z\",transform:\"matrix(1 0 0 -1 0 850)\"},camera:{width:1e3,height:1e3,path:\"m500 450c-83 0-150-67-150-150 0-83 67-150 150-150 83 0 150 67 150 150 0 83-67 150-150 150z m400 150h-120c-16 0-34 13-39 29l-31 93c-6 15-23 28-40 28h-340c-16 0-34-13-39-28l-31-94c-6-15-23-28-40-28h-120c-55 0-100-45-100-100v-450c0-55 45-100 100-100h800c55 0 100 45 100 100v450c0 55-45 100-100 100z m-400-550c-138 0-250 112-250 250 0 138 112 250 250 250 138 0 250-112 250-250 0-138-112-250-250-250z m365 380c-19 0-35 16-35 35 0 19 16 35 35 35 19 0 35-16 35-35 0-19-16-35-35-35z\",transform:\"matrix(1 0 0 -1 0 850)\"},movie:{width:1e3,height:1e3,path:\"m938 413l-188-125c0 37-17 71-44 94 64 38 107 107 107 187 0 121-98 219-219 219-121 0-219-98-219-219 0-61 25-117 66-156h-115c30 33 49 76 49 125 0 103-84 187-187 187s-188-84-188-187c0-57 26-107 65-141-38-22-65-62-65-109v-250c0-70 56-126 125-126h500c69 0 125 56 125 126l188-126c34 0 62 28 62 63v375c0 35-28 63-62 63z m-750 0c-69 0-125 56-125 125s56 125 125 125 125-56 125-125-56-125-125-125z m406-1c-87 0-157 70-157 157 0 86 70 156 157 156s156-70 156-156-70-157-156-157z\",transform:\"matrix(1 0 0 -1 0 850)\"},question:{width:857.1,height:1e3,path:\"m500 82v107q0 8-5 13t-13 5h-107q-8 0-13-5t-5-13v-107q0-8 5-13t13-5h107q8 0 13 5t5 13z m143 375q0 49-31 91t-77 65-95 23q-136 0-207-119-9-14 4-24l74-55q4-4 10-4 9 0 14 7 30 38 48 51 19 14 48 14 27 0 48-15t21-33q0-21-11-34t-38-25q-35-16-65-48t-29-70v-20q0-8 5-13t13-5h107q8 0 13 5t5 13q0 10 12 27t30 28q18 10 28 16t25 19 25 27 16 34 7 45z m214-107q0-117-57-215t-156-156-215-58-216 58-155 156-58 215 58 215 155 156 216 58 215-58 156-156 57-215z\",transform:\"matrix(1 0 0 -1 0 850)\"},disk:{width:857.1,height:1e3,path:\"m214-7h429v214h-429v-214z m500 0h72v500q0 8-6 21t-11 20l-157 156q-5 6-19 12t-22 5v-232q0-22-15-38t-38-16h-322q-22 0-37 16t-16 38v232h-72v-714h72v232q0 22 16 38t37 16h465q22 0 38-16t15-38v-232z m-214 518v178q0 8-5 13t-13 5h-107q-7 0-13-5t-5-13v-178q0-8 5-13t13-5h107q7 0 13 5t5 13z m357-18v-518q0-22-15-38t-38-16h-750q-23 0-38 16t-16 38v750q0 22 16 38t38 16h517q23 0 50-12t42-26l156-157q16-15 27-42t11-49z\",transform:\"matrix(1 0 0 -1 0 850)\"},lasso:{width:1031,height:1e3,path:\"m1018 538c-36 207-290 336-568 286-277-48-473-256-436-463 10-57 36-108 76-151-13-66 11-137 68-183 34-28 75-41 114-42l-55-70 0 0c-2-1-3-2-4-3-10-14-8-34 5-45 14-11 34-8 45 4 1 1 2 3 2 5l0 0 113 140c16 11 31 24 45 40 4 3 6 7 8 11 48-3 100 0 151 9 278 48 473 255 436 462z m-624-379c-80 14-149 48-197 96 42 42 109 47 156 9 33-26 47-66 41-105z m-187-74c-19 16-33 37-39 60 50-32 109-55 174-68-42-25-95-24-135 8z m360 75c-34-7-69-9-102-8 8 62-16 128-68 170-73 59-175 54-244-5-9 20-16 40-20 61-28 159 121 317 333 354s407-60 434-217c28-159-121-318-333-355z\",transform:\"matrix(1 0 0 -1 0 850)\"},selectbox:{width:1e3,height:1e3,path:\"m0 850l0-143 143 0 0 143-143 0z m286 0l0-143 143 0 0 143-143 0z m285 0l0-143 143 0 0 143-143 0z m286 0l0-143 143 0 0 143-143 0z m-857-286l0-143 143 0 0 143-143 0z m857 0l0-143 143 0 0 143-143 0z m-857-285l0-143 143 0 0 143-143 0z m857 0l0-143 143 0 0 143-143 0z m-857-286l0-143 143 0 0 143-143 0z m286 0l0-143 143 0 0 143-143 0z m285 0l0-143 143 0 0 143-143 0z m286 0l0-143 143 0 0 143-143 0z\",transform:\"matrix(1 0 0 -1 0 850)\"},spikeline:{width:1e3,height:1e3,path:\"M512 409c0-57-46-104-103-104-57 0-104 47-104 104 0 57 47 103 104 103 57 0 103-46 103-103z m-327-39l92 0 0 92-92 0z m-185 0l92 0 0 92-92 0z m370-186l92 0 0 93-92 0z m0-184l92 0 0 92-92 0z\",transform:\"matrix(1.5 0 0 -1.5 0 850)\"},pencil:{width:1792,height:1792,path:\"M491 1536l91-91-235-235-91 91v107h128v128h107zm523-928q0-22-22-22-10 0-17 7l-542 542q-7 7-7 17 0 22 22 22 10 0 17-7l542-542q7-7 7-17zm-54-192l416 416-832 832h-416v-416zm683 96q0 53-37 90l-166 166-416-416 166-165q36-38 90-38 53 0 91 38l235 234q37 39 37 91z\",transform:\"matrix(1 0 0 1 0 1)\"},newplotlylogo:{name:\"newplotlylogo\",svg:\"<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 132 132'><defs><style>.cls-1 {fill: #119dff;} .cls-2 {fill: #25fefd;} .cls-3 {fill: #fff;}</style></defs><title>plotly-logomark</title><g id='symbol'><rect class='cls-1' width='132' height='132' rx='6' ry='6'/><circle class='cls-2' cx='78' cy='54' r='6'/><circle class='cls-2' cx='102' cy='30' r='6'/><circle class='cls-2' cx='78' cy='30' r='6'/><circle class='cls-2' cx='54' cy='30' r='6'/><circle class='cls-2' cx='30' cy='30' r='6'/><circle class='cls-2' cx='30' cy='54' r='6'/><path class='cls-3' d='M30,72a6,6,0,0,0-6,6v24a6,6,0,0,0,12,0V78A6,6,0,0,0,30,72Z'/><path class='cls-3' d='M78,72a6,6,0,0,0-6,6v24a6,6,0,0,0,12,0V78A6,6,0,0,0,78,72Z'/><path class='cls-3' d='M54,48a6,6,0,0,0-6,6v48a6,6,0,0,0,12,0V54A6,6,0,0,0,54,48Z'/><path class='cls-3' d='M102,48a6,6,0,0,0-6,6v48a6,6,0,0,0,12,0V54A6,6,0,0,0,102,48Z'/></g></svg>\"}}},{}],700:[function(t,e,r){\"use strict\";r.isLeftAnchor=function(t){return\"left\"===t.xanchor||\"auto\"===t.xanchor&&t.x<=1/3},r.isCenterAnchor=function(t){return\"center\"===t.xanchor||\"auto\"===t.xanchor&&t.x>1/3&&t.x<2/3},r.isRightAnchor=function(t){return\"right\"===t.xanchor||\"auto\"===t.xanchor&&t.x>=2/3},r.isTopAnchor=function(t){return\"top\"===t.yanchor||\"auto\"===t.yanchor&&t.y>=2/3},r.isMiddleAnchor=function(t){return\"middle\"===t.yanchor||\"auto\"===t.yanchor&&t.y>1/3&&t.y<2/3},r.isBottomAnchor=function(t){return\"bottom\"===t.yanchor||\"auto\"===t.yanchor&&t.y<=1/3}},{}],701:[function(t,e,r){\"use strict\";var n=t(\"./mod\"),a=n.mod,i=n.modHalf,o=Math.PI,s=2*o;function l(t){return Math.abs(t[1]-t[0])>s-1e-14}function c(t,e){return i(e-t,s)}function u(t,e){if(l(e))return!0;var r,n;e[0]<e[1]?(r=e[0],n=e[1]):(r=e[1],n=e[0]),(r=a(r,s))>(n=a(n,s))&&(n+=s);var i=a(t,s),o=i+s;return i>=r&&i<=n||o>=r&&o<=n}function h(t,e,r,n,a,i,c){a=a||0,i=i||0;var u,h,f,p,d,g=l([r,n]);function v(t,e){return[t*Math.cos(e)+a,i-t*Math.sin(e)]}g?(u=0,h=o,f=s):r<n?(u=r,f=n):(u=n,f=r),t<e?(p=t,d=e):(p=e,d=t);var m,y=Math.abs(f-u)<=o?0:1;function x(t,e,r){return\"A\"+[t,t]+\" \"+[0,y,r]+\" \"+v(t,e)}return g?m=null===p?\"M\"+v(d,u)+x(d,h,0)+x(d,f,0)+\"Z\":\"M\"+v(p,u)+x(p,h,0)+x(p,f,0)+\"ZM\"+v(d,u)+x(d,h,1)+x(d,f,1)+\"Z\":null===p?(m=\"M\"+v(d,u)+x(d,f,0),c&&(m+=\"L0,0Z\")):m=\"M\"+v(p,u)+\"L\"+v(d,u)+x(d,f,0)+\"L\"+v(p,f)+x(p,u,1)+\"Z\",m}e.exports={deg2rad:function(t){return t/180*o},rad2deg:function(t){return t/o*180},angleDelta:c,angleDist:function(t,e){return Math.abs(c(t,e))},isFullCircle:l,isAngleInsideSector:u,isPtInsideSector:function(t,e,r,n){return!!u(e,n)&&(r[0]<r[1]?(a=r[0],i=r[1]):(a=r[1],i=r[0]),t>=a&&t<=i);var a,i},pathArc:function(t,e,r,n,a){return h(null,t,e,r,n,a,0)},pathSector:function(t,e,r,n,a){return h(null,t,e,r,n,a,1)},pathAnnulus:function(t,e,r,n,a,i){return h(t,e,r,n,a,i,1)}}},{\"./mod\":726}],702:[function(t,e,r){\"use strict\";var n=Array.isArray,a=\"undefined\"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer:{isView:function(){return!1}},i=\"undefined\"==typeof DataView?function(){}:DataView;function o(t){return a.isView(t)&&!(t instanceof i)}function s(t){return n(t)||o(t)}function l(t,e,r){if(s(t)){if(s(t[0])){for(var n=r,a=0;a<t.length;a++)n=e(n,t[a].length);return n}return t.length}return 0}r.isTypedArray=o,r.isArrayOrTypedArray=s,r.isArray1D=function(t){return!s(t[0])},r.ensureArray=function(t,e){return n(t)||(t=[]),t.length=e,t},r.concat=function(){var t,e,r,a,i,o,s,l,c=[],u=!0,h=0;for(r=0;r<arguments.length;r++)(o=(a=arguments[r]).length)&&(e?c.push(a):(e=a,i=o),n(a)?t=!1:(u=!1,h?t!==a.constructor&&(t=!1):t=a.constructor),h+=o);if(!h)return[];if(!c.length)return e;if(u)return e.concat.apply(e,c);if(t){for((s=new t(h)).set(e),r=0;r<c.length;r++)a=c[r],s.set(a,i),i+=a.length;return s}for(s=new Array(h),l=0;l<e.length;l++)s[l]=e[l];for(r=0;r<c.length;r++){for(a=c[r],l=0;l<a.length;l++)s[i+l]=a[l];i+=l}return s},r.maxRowLength=function(t){return l(t,Math.max,0)},r.minRowLength=function(t){return l(t,Math.min,1/0)}},{}],703:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../constants/numerical\").BADNUM,i=/^['\"%,$#\\s']+|[, ]|['\"%,$#\\s']+$/g;e.exports=function(t){return\"string\"==typeof t&&(t=t.replace(i,\"\")),n(t)?Number(t):a}},{\"../constants/numerical\":695,\"fast-isnumeric\":226}],704:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t._fullLayout;e._glcanvas&&e._glcanvas.size()&&e._glcanvas.each(function(t){t.regl&&t.regl.clear({color:!0,depth:!0})})}},{}],705:[function(t,e,r){\"use strict\";e.exports=function(t){t._responsiveChartHandler&&(window.removeEventListener(\"resize\",t._responsiveChartHandler),delete t._responsiveChartHandler)}},{}],706:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"tinycolor2\"),i=t(\"../plots/attributes\"),o=t(\"../components/colorscale/scales\"),s=t(\"../constants/interactions\").DESELECTDIM,l=t(\"./nested_property\"),c=t(\"./regex\").counter,u=t(\"./mod\").modHalf,h=t(\"./array\").isArrayOrTypedArray;function f(t,e){var n=r.valObjectMeta[e.valType];if(e.arrayOk&&h(t))return!0;if(n.validateFunction)return n.validateFunction(t,e);var a={},i=a,o={set:function(t){i=t}};return n.coerceFunction(t,o,a,e),i!==a}r.valObjectMeta={data_array:{coerceFunction:function(t,e,r){h(t)?e.set(t):void 0!==r&&e.set(r)}},enumerated:{coerceFunction:function(t,e,r,n){n.coerceNumber&&(t=+t),-1===n.values.indexOf(t)?e.set(r):e.set(t)},validateFunction:function(t,e){e.coerceNumber&&(t=+t);for(var r=e.values,n=0;n<r.length;n++){var a=String(r[n]);if(\"/\"===a.charAt(0)&&\"/\"===a.charAt(a.length-1)){if(new RegExp(a.substr(1,a.length-2)).test(t))return!0}else if(t===r[n])return!0}return!1}},boolean:{coerceFunction:function(t,e,r){!0===t||!1===t?e.set(t):e.set(r)}},number:{coerceFunction:function(t,e,r,a){!n(t)||void 0!==a.min&&t<a.min||void 0!==a.max&&t>a.max?e.set(r):e.set(+t)}},integer:{coerceFunction:function(t,e,r,a){t%1||!n(t)||void 0!==a.min&&t<a.min||void 0!==a.max&&t>a.max?e.set(r):e.set(+t)}},string:{coerceFunction:function(t,e,r,n){if(\"string\"!=typeof t){var a=\"number\"==typeof t;!0!==n.strict&&a?e.set(String(t)):e.set(r)}else n.noBlank&&!t?e.set(r):e.set(t)}},color:{coerceFunction:function(t,e,r){a(t).isValid()?e.set(t):e.set(r)}},colorlist:{coerceFunction:function(t,e,r){Array.isArray(t)&&t.length&&t.every(function(t){return a(t).isValid()})?e.set(t):e.set(r)}},colorscale:{coerceFunction:function(t,e,r){e.set(o.get(t,r))}},angle:{coerceFunction:function(t,e,r){\"auto\"===t?e.set(\"auto\"):n(t)?e.set(u(+t,360)):e.set(r)}},subplotid:{coerceFunction:function(t,e,r,n){var a=n.regex||c(r);\"string\"==typeof t&&a.test(t)?e.set(t):e.set(r)},validateFunction:function(t,e){var r=e.dflt;return t===r||\"string\"==typeof t&&!!c(r).test(t)}},flaglist:{coerceFunction:function(t,e,r,n){if(\"string\"==typeof t)if(-1===(n.extras||[]).indexOf(t)){for(var a=t.split(\"+\"),i=0;i<a.length;){var o=a[i];-1===n.flags.indexOf(o)||a.indexOf(o)<i?a.splice(i,1):i++}a.length?e.set(a.join(\"+\")):e.set(r)}else e.set(t);else e.set(r)}},any:{coerceFunction:function(t,e,r){void 0===t?e.set(r):e.set(t)}},info_array:{coerceFunction:function(t,e,n,a){function i(t,e,n){var a,i={set:function(t){a=t}};return void 0===n&&(n=e.dflt),r.valObjectMeta[e.valType].coerceFunction(t,i,n,e),a}var o=2===a.dimensions||\"1-2\"===a.dimensions&&Array.isArray(t)&&Array.isArray(t[0]);if(Array.isArray(t)){var s,l,c,u,h,f,p=a.items,d=[],g=Array.isArray(p),v=g&&o&&Array.isArray(p[0]),m=o&&g&&!v,y=g&&!m?p.length:t.length;if(n=Array.isArray(n)?n:[],o)for(s=0;s<y;s++)for(d[s]=[],c=Array.isArray(t[s])?t[s]:[],h=m?p.length:g?p[s].length:c.length,l=0;l<h;l++)u=m?p[l]:g?p[s][l]:p,void 0!==(f=i(c[l],u,(n[s]||[])[l]))&&(d[s][l]=f);else for(s=0;s<y;s++)void 0!==(f=i(t[s],g?p[s]:p,n[s]))&&(d[s]=f);e.set(d)}else e.set(n)},validateFunction:function(t,e){if(!Array.isArray(t))return!1;var r=e.items,n=Array.isArray(r),a=2===e.dimensions;if(!e.freeLength&&t.length!==r.length)return!1;for(var i=0;i<t.length;i++)if(a){if(!Array.isArray(t[i])||!e.freeLength&&t[i].length!==r[i].length)return!1;for(var o=0;o<t[i].length;o++)if(!f(t[i][o],n?r[i][o]:r))return!1}else if(!f(t[i],n?r[i]:r))return!1;return!0}}},r.coerce=function(t,e,n,a,i){var o=l(n,a).get(),s=l(t,a),c=l(e,a),u=s.get(),p=e._template;if(void 0===u&&p&&(u=l(p,a).get(),p=0),void 0===i&&(i=o.dflt),o.arrayOk&&h(u))return c.set(u),u;var d=r.valObjectMeta[o.valType].coerceFunction;d(u,c,i,o);var g=c.get();return p&&g===i&&!f(u,o)&&(d(u=l(p,a).get(),c,i,o),g=c.get()),g},r.coerce2=function(t,e,n,a,i){var o=l(t,a),s=r.coerce(t,e,n,a,i),c=o.get();return null!=c&&s},r.coerceFont=function(t,e,r){var n={};return r=r||{},n.family=t(e+\".family\",r.family),n.size=t(e+\".size\",r.size),n.color=t(e+\".color\",r.color),n},r.coerceHoverinfo=function(t,e,n){var a,o=e._module.attributes,s=o.hoverinfo?o:i,l=s.hoverinfo;if(1===n._dataLength){var c=\"all\"===l.dflt?l.flags.slice():l.dflt.split(\"+\");c.splice(c.indexOf(\"name\"),1),a=c.join(\"+\")}return r.coerce(t,e,s,\"hoverinfo\",a)},r.coerceSelectionMarkerOpacity=function(t,e){if(t.marker){var r,n,a=t.marker.opacity;if(void 0!==a)h(a)||t.selected||t.unselected||(r=a,n=s*a),e(\"selected.marker.opacity\",r),e(\"unselected.marker.opacity\",n)}},r.validate=f},{\"../components/colorscale/scales\":609,\"../constants/interactions\":694,\"../plots/attributes\":764,\"./array\":702,\"./mod\":726,\"./nested_property\":727,\"./regex\":735,\"fast-isnumeric\":226,tinycolor2:538}],707:[function(t,e,r){\"use strict\";var n,a,i=t(\"d3\"),o=t(\"fast-isnumeric\"),s=t(\"./loggers\"),l=t(\"./mod\").mod,c=t(\"../constants/numerical\"),u=c.BADNUM,h=c.ONEDAY,f=c.ONEHOUR,p=c.ONEMIN,d=c.ONESEC,g=c.EPOCHJD,v=t(\"../registry\"),m=i.time.format.utc,y=/^\\s*(-?\\d\\d\\d\\d|\\d\\d)(-(\\d?\\d)(-(\\d?\\d)([ Tt]([01]?\\d|2[0-3])(:([0-5]\\d)(:([0-5]\\d(\\.\\d+)?))?(Z|z|[+\\-]\\d\\d:?\\d\\d)?)?)?)?)?\\s*$/m,x=/^\\s*(-?\\d\\d\\d\\d|\\d\\d)(-(\\d?\\di?)(-(\\d?\\d)([ Tt]([01]?\\d|2[0-3])(:([0-5]\\d)(:([0-5]\\d(\\.\\d+)?))?(Z|z|[+\\-]\\d\\d:?\\d\\d)?)?)?)?)?\\s*$/m,b=(new Date).getFullYear()-70;function _(t){return t&&v.componentsRegistry.calendars&&\"string\"==typeof t&&\"gregorian\"!==t}function w(t,e){return String(t+Math.pow(10,e)).substr(1)}r.dateTick0=function(t,e){return _(t)?e?v.getComponentMethod(\"calendars\",\"CANONICAL_SUNDAY\")[t]:v.getComponentMethod(\"calendars\",\"CANONICAL_TICK\")[t]:e?\"2000-01-02\":\"2000-01-01\"},r.dfltRange=function(t){return _(t)?v.getComponentMethod(\"calendars\",\"DFLTRANGE\")[t]:[\"2000-01-01\",\"2001-01-01\"]},r.isJSDate=function(t){return\"object\"==typeof t&&null!==t&&\"function\"==typeof t.getTime},r.dateTime2ms=function(t,e){if(r.isJSDate(t)){var i=t.getTimezoneOffset()*p,o=(t.getUTCMinutes()-t.getMinutes())*p+(t.getUTCSeconds()-t.getSeconds())*d+(t.getUTCMilliseconds()-t.getMilliseconds());if(o){var s=3*p;i=i-s/2+l(o-i+s/2,s)}return(t=Number(t)-i)>=n&&t<=a?t:u}if(\"string\"!=typeof t&&\"number\"!=typeof t)return u;t=String(t);var c=_(e),m=t.charAt(0);!c||\"G\"!==m&&\"g\"!==m||(t=t.substr(1),e=\"\");var w=c&&\"chinese\"===e.substr(0,7),k=t.match(w?x:y);if(!k)return u;var T=k[1],A=k[3]||\"1\",M=Number(k[5]||1),S=Number(k[7]||0),E=Number(k[9]||0),C=Number(k[11]||0);if(c){if(2===T.length)return u;var L;T=Number(T);try{var P=v.getComponentMethod(\"calendars\",\"getCal\")(e);if(w){var O=\"i\"===A.charAt(A.length-1);A=parseInt(A,10),L=P.newDate(T,P.toMonthIndex(T,A,O),M)}else L=P.newDate(T,Number(A),M)}catch(t){return u}return L?(L.toJD()-g)*h+S*f+E*p+C*d:u}T=2===T.length?(Number(T)+2e3-b)%100+b:Number(T),A-=1;var I=new Date(Date.UTC(2e3,A,M,S,E));return I.setUTCFullYear(T),I.getUTCMonth()!==A?u:I.getUTCDate()!==M?u:I.getTime()+C*d},n=r.MIN_MS=r.dateTime2ms(\"-9999\"),a=r.MAX_MS=r.dateTime2ms(\"9999-12-31 23:59:59.9999\"),r.isDateTime=function(t,e){return r.dateTime2ms(t,e)!==u};var k=90*h,T=3*f,A=5*p;function M(t,e,r,n,a){if((e||r||n||a)&&(t+=\" \"+w(e,2)+\":\"+w(r,2),(n||a)&&(t+=\":\"+w(n,2),a))){for(var i=4;a%10==0;)i-=1,a/=10;t+=\".\"+w(a,i)}return t}r.ms2DateTime=function(t,e,r){if(\"number\"!=typeof t||!(t>=n&&t<=a))return u;e||(e=0);var i,o,s,c,y,x,b=Math.floor(10*l(t+.05,1)),w=Math.round(t-b/10);if(_(r)){var S=Math.floor(w/h)+g,E=Math.floor(l(t,h));try{i=v.getComponentMethod(\"calendars\",\"getCal\")(r).fromJD(S).formatDate(\"yyyy-mm-dd\")}catch(t){i=m(\"G%Y-%m-%d\")(new Date(w))}if(\"-\"===i.charAt(0))for(;i.length<11;)i=\"-0\"+i.substr(1);else for(;i.length<10;)i=\"0\"+i;o=e<k?Math.floor(E/f):0,s=e<k?Math.floor(E%f/p):0,c=e<T?Math.floor(E%p/d):0,y=e<A?E%d*10+b:0}else x=new Date(w),i=m(\"%Y-%m-%d\")(x),o=e<k?x.getUTCHours():0,s=e<k?x.getUTCMinutes():0,c=e<T?x.getUTCSeconds():0,y=e<A?10*x.getUTCMilliseconds()+b:0;return M(i,o,s,c,y)},r.ms2DateTimeLocal=function(t){if(!(t>=n+h&&t<=a-h))return u;var e=Math.floor(10*l(t+.05,1)),r=new Date(Math.round(t-e/10));return M(i.time.format(\"%Y-%m-%d\")(r),r.getHours(),r.getMinutes(),r.getSeconds(),10*r.getUTCMilliseconds()+e)},r.cleanDate=function(t,e,n){if(t===u)return e;if(r.isJSDate(t)||\"number\"==typeof t&&isFinite(t)){if(_(n))return s.error(\"JS Dates and milliseconds are incompatible with world calendars\",t),e;if(!(t=r.ms2DateTimeLocal(+t))&&void 0!==e)return e}else if(!r.isDateTime(t,n))return s.error(\"unrecognized date\",t),e;return t};var S=/%\\d?f/g;function E(t,e,r,n){t=t.replace(S,function(t){var r=Math.min(+t.charAt(1)||6,6);return(e/1e3%1+2).toFixed(r).substr(2).replace(/0+$/,\"\")||\"0\"});var a=new Date(Math.floor(e+.05));if(_(n))try{t=v.getComponentMethod(\"calendars\",\"worldCalFmt\")(t,e,n)}catch(t){return\"Invalid\"}return r(t)(a)}var C=[59,59.9,59.99,59.999,59.9999];r.formatDate=function(t,e,r,n,a,i){if(a=_(a)&&a,!e)if(\"y\"===r)e=i.year;else if(\"m\"===r)e=i.month;else{if(\"d\"!==r)return function(t,e){var r=l(t+.05,h),n=w(Math.floor(r/f),2)+\":\"+w(l(Math.floor(r/p),60),2);if(\"M\"!==e){o(e)||(e=0);var a=(100+Math.min(l(t/d,60),C[e])).toFixed(e).substr(1);e>0&&(a=a.replace(/0+$/,\"\").replace(/[\\.]$/,\"\")),n+=\":\"+a}return n}(t,r)+\"\\n\"+E(i.dayMonthYear,t,n,a);e=i.dayMonth+\"\\n\"+i.year}return E(e,t,n,a)};var L=3*h;r.incrementMonth=function(t,e,r){r=_(r)&&r;var n=l(t,h);if(t=Math.round(t-n),r)try{var a=Math.round(t/h)+g,i=v.getComponentMethod(\"calendars\",\"getCal\")(r),o=i.fromJD(a);return e%12?i.add(o,e,\"m\"):i.add(o,e/12,\"y\"),(o.toJD()-g)*h+n}catch(e){s.error(\"invalid ms \"+t+\" in calendar \"+r)}var c=new Date(t+L);return c.setUTCMonth(c.getUTCMonth()+e)+n-L},r.findExactDates=function(t,e){for(var r,n,a=0,i=0,s=0,l=0,c=_(e)&&v.getComponentMethod(\"calendars\",\"getCal\")(e),u=0;u<t.length;u++)if(n=t[u],o(n)){if(!(n%h))if(c)try{1===(r=c.fromJD(n/h+g)).day()?1===r.month()?a++:i++:s++}catch(t){}else 1===(r=new Date(n)).getUTCDate()?0===r.getUTCMonth()?a++:i++:s++}else l++;s+=i+=a;var f=t.length-l;return{exactYears:a/f,exactMonths:i/f,exactDays:s/f}}},{\"../constants/numerical\":695,\"../registry\":848,\"./loggers\":723,\"./mod\":726,d3:164,\"fast-isnumeric\":226}],708:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"./loggers\");function i(t){var e=t&&t.parentNode;e&&e.removeChild(t)}function o(t,e,r){var n=\"plotly.js-style-\"+t,i=document.getElementById(n);i||((i=document.createElement(\"style\")).setAttribute(\"id\",n),i.appendChild(document.createTextNode(\"\")),document.head.appendChild(i));var o=i.sheet;o.insertRule?o.insertRule(e+\"{\"+r+\"}\",0):o.addRule?o.addRule(e,r,0):a.warn(\"addStyleRule failed\")}e.exports={getGraphDiv:function(t){var e;if(\"string\"==typeof t){if(null===(e=document.getElementById(t)))throw new Error(\"No DOM element with id '\"+t+\"' exists on the page.\");return e}if(null==t)throw new Error(\"DOM element provided is null or undefined\");return t},isPlotDiv:function(t){var e=n.select(t);return e.node()instanceof HTMLElement&&e.size()&&e.classed(\"js-plotly-plot\")},removeElement:i,addStyleRule:function(t,e){o(\"global\",t,e)},addRelatedStyleRule:o,deleteRelatedStyleRule:function(t){var e=\"plotly.js-style-\"+t,r=document.getElementById(e);r&&i(r)}}},{\"./loggers\":723,d3:164}],709:[function(t,e,r){\"use strict\";var n=t(\"events\").EventEmitter,a={init:function(t){if(t._ev instanceof n)return t;var e=new n,r=new n;return t._ev=e,t._internalEv=r,t.on=e.on.bind(e),t.once=e.once.bind(e),t.removeListener=e.removeListener.bind(e),t.removeAllListeners=e.removeAllListeners.bind(e),t._internalOn=r.on.bind(r),t._internalOnce=r.once.bind(r),t._removeInternalListener=r.removeListener.bind(r),t._removeAllInternalListeners=r.removeAllListeners.bind(r),t.emit=function(n,a){\"undefined\"!=typeof jQuery&&jQuery(t).trigger(n,a),e.emit(n,a),r.emit(n,a)},t},triggerHandler:function(t,e,r){var n,a;\"undefined\"!=typeof jQuery&&(n=jQuery(t).triggerHandler(e,r));var i=t._ev;if(!i)return n;var o,s=i._events[e];if(!s)return n;function l(t){return t.listener?(i.removeListener(e,t.listener),t.fired?void 0:(t.fired=!0,t.listener.apply(i,[r]))):t.apply(i,[r])}for(s=Array.isArray(s)?s:[s],o=0;o<s.length-1;o++)l(s[o]);return a=l(s[o]),void 0!==n?n:a},purge:function(t){return delete t._ev,delete t.on,delete t.once,delete t.removeListener,delete t.removeAllListeners,delete t.emit,delete t._ev,delete t._internalEv,delete t._internalOn,delete t._internalOnce,delete t._removeInternalListener,delete t._removeAllInternalListeners,t}};e.exports=a},{events:105}],710:[function(t,e,r){\"use strict\";var n=t(\"./is_plain_object.js\"),a=Array.isArray;function i(t,e,r,o){var s,l,c,u,h,f,p=t[0],d=t.length;if(2===d&&a(p)&&a(t[1])&&0===p.length){if(function(t,e){var r,n;for(r=0;r<t.length;r++){if(null!==(n=t[r])&&\"object\"==typeof n)return!1;void 0!==n&&(e[r]=n)}return!0}(t[1],p))return p;p.splice(0,p.length)}for(var g=1;g<d;g++)for(l in s=t[g])c=p[l],u=s[l],o&&a(u)?p[l]=u:e&&u&&(n(u)||(h=a(u)))?(h?(h=!1,f=c&&a(c)?c:[]):f=c&&n(c)?c:{},p[l]=i([f,u],e,r,o)):(\"undefined\"!=typeof u||r)&&(p[l]=u);return p}r.extendFlat=function(){return i(arguments,!1,!1,!1)},r.extendDeep=function(){return i(arguments,!0,!1,!1)},r.extendDeepAll=function(){return i(arguments,!0,!0,!1)},r.extendDeepNoArrays=function(){return i(arguments,!0,!1,!0)}},{\"./is_plain_object.js\":720}],711:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e={},r=[],n=0,a=0;a<t.length;a++){var i=t[a];1!==e[i]&&(e[i]=1,r[n++]=i)}return r}},{}],712:[function(t,e,r){\"use strict\";function n(t){return!0===t.visible}function a(t){var e=t[0].trace;return!0===e.visible&&0!==e._length}e.exports=function(t){for(var e,r=(e=t,Array.isArray(e)&&Array.isArray(e[0])&&e[0][0]&&e[0][0].trace?a:n),i=[],o=0;o<t.length;o++){var s=t[o];r(s)&&i.push(s)}return i}},{}],713:[function(t,e,r){\"use strict\";var n=t(\"country-regex\"),a=t(\"../lib\"),i=Object.keys(n),o={\"ISO-3\":a.identity,\"USA-states\":a.identity,\"country names\":function(t){for(var e=0;e<i.length;e++){var r=i[e],o=new RegExp(n[r]);if(o.test(t.trim().toLowerCase()))return r}return a.log(\"Unrecognized country name: \"+t+\".\"),!1}};e.exports={locationToFeature:function(t,e,r){if(!e||\"string\"!=typeof e)return!1;var n,i,s,l=o[t](e);if(l){if(\"USA-states\"===t)for(n=[],s=0;s<r.length;s++)(i=r[s]).properties&&i.properties.gu&&\"USA\"===i.properties.gu&&n.push(i);else n=r;for(s=0;s<n.length;s++)if((i=n[s]).id===l)return i;a.log([\"Location with id\",l,\"does not have a matching topojson feature at this resolution.\"].join(\" \"))}return!1}}},{\"../lib\":719,\"country-regex\":135}],714:[function(t,e,r){\"use strict\";var n=t(\"../constants/numerical\").BADNUM;r.calcTraceToLineCoords=function(t){for(var e=t[0].trace.connectgaps,r=[],a=[],i=0;i<t.length;i++){var o=t[i].lonlat;o[0]!==n?a.push(o):!e&&a.length>0&&(r.push(a),a=[])}return a.length>0&&r.push(a),r},r.makeLine=function(t){return 1===t.length?{type:\"LineString\",coordinates:t[0]}:{type:\"MultiLineString\",coordinates:t}},r.makePolygon=function(t){if(1===t.length)return{type:\"Polygon\",coordinates:t};for(var e=new Array(t.length),r=0;r<t.length;r++)e[r]=[t[r]];return{type:\"MultiPolygon\",coordinates:e}},r.makeBlank=function(){return{type:\"Point\",coordinates:[]}}},{\"../constants/numerical\":695}],715:[function(t,e,r){\"use strict\";var n,a,i,o=t(\"./mod\").mod;function s(t,e,r,n,a,i,o,s){var l=r-t,c=a-t,u=o-a,h=n-e,f=i-e,p=s-i,d=l*p-u*h;if(0===d)return null;var g=(c*p-u*f)/d,v=(c*h-l*f)/d;return v<0||v>1||g<0||g>1?null:{x:t+l*g,y:e+h*g}}function l(t,e,r,n,a){var i=n*t+a*e;if(i<0)return n*n+a*a;if(i>r){var o=n-t,s=a-e;return o*o+s*s}var l=n*e-a*t;return l*l/r}r.segmentsIntersect=s,r.segmentDistance=function(t,e,r,n,a,i,o,c){if(s(t,e,r,n,a,i,o,c))return 0;var u=r-t,h=n-e,f=o-a,p=c-i,d=u*u+h*h,g=f*f+p*p,v=Math.min(l(u,h,d,a-t,i-e),l(u,h,d,o-t,c-e),l(f,p,g,t-a,e-i),l(f,p,g,r-a,n-i));return Math.sqrt(v)},r.getTextLocation=function(t,e,r,s){if(t===a&&s===i||(n={},a=t,i=s),n[r])return n[r];var l=t.getPointAtLength(o(r-s/2,e)),c=t.getPointAtLength(o(r+s/2,e)),u=Math.atan((c.y-l.y)/(c.x-l.x)),h=t.getPointAtLength(o(r,e)),f={x:(4*h.x+l.x+c.x)/6,y:(4*h.y+l.y+c.y)/6,theta:u};return n[r]=f,f},r.clearLocationCache=function(){a=null},r.getVisibleSegment=function(t,e,r){var n,a,i=e.left,o=e.right,s=e.top,l=e.bottom,c=0,u=t.getTotalLength(),h=u;function f(e){var r=t.getPointAtLength(e);0===e?n=r:e===u&&(a=r);var c=r.x<i?i-r.x:r.x>o?r.x-o:0,h=r.y<s?s-r.y:r.y>l?r.y-l:0;return Math.sqrt(c*c+h*h)}for(var p=f(c);p;){if((c+=p+r)>h)return;p=f(c)}for(p=f(h);p;){if(c>(h-=p+r))return;p=f(h)}return{min:c,max:h,len:h-c,total:u,isClosed:0===c&&h===u&&Math.abs(n.x-a.x)<.1&&Math.abs(n.y-a.y)<.1}},r.findPointOnPath=function(t,e,r,n){for(var a,i,o,s=(n=n||{}).pathLength||t.getTotalLength(),l=n.tolerance||.001,c=n.iterationLimit||30,u=t.getPointAtLength(0)[r]>t.getPointAtLength(s)[r]?-1:1,h=0,f=0,p=s;h<c;){if(a=(f+p)/2,o=(i=t.getPointAtLength(a))[r]-e,Math.abs(o)<l)return i;u*o>0?p=a:f=a,h++}return i}},{\"./mod\":726}],716:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"tinycolor2\"),i=t(\"color-normalize\"),o=t(\"../components/colorscale\"),s=t(\"../components/color/attributes\").defaultLine,l=t(\"./array\").isArrayOrTypedArray,c=i(s),u=1;function h(t,e){var r=t;return r[3]*=e,r}function f(t){if(n(t))return c;var e=i(t);return e.length?e:c}function p(t){return n(t)?t:u}e.exports={formatColor:function(t,e,r){var n,a,s,d,g,v=t.color,m=l(v),y=l(e),x=o.extractOpts(t),b=[];if(n=void 0!==x.colorscale?o.makeColorScaleFuncFromTrace(t):f,a=m?function(t,e){return void 0===t[e]?c:i(n(t[e]))}:f,s=y?function(t,e){return void 0===t[e]?u:p(t[e])}:p,m||y)for(var _=0;_<r;_++)d=a(v,_),g=s(e,_),b[_]=h(d,g);else b=h(i(v),e);return b},parseColorScale:function(t,e){void 0===e&&(e=1);var r=o.extractOpts(t);return(r.reversescale?o.flipScale(r.colorscale):r.colorscale).map(function(t){var r=t[0],n=a(t[1]).toRgb();return{index:r,rgb:[n.r,n.g,n.b,e]}})}}},{\"../components/color/attributes\":593,\"../components/colorscale\":606,\"./array\":702,\"color-normalize\":121,\"fast-isnumeric\":226,tinycolor2:538}],717:[function(t,e,r){\"use strict\";var n=t(\"./identity\");function a(t){return[t]}e.exports={keyFun:function(t){return t.key},repeat:a,descend:n,wrap:a,unwrap:function(t){return t[0]}}},{\"./identity\":718}],718:[function(t,e,r){\"use strict\";e.exports=function(t){return t}},{}],719:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"fast-isnumeric\"),i=t(\"../constants/numerical\"),o=i.FP_SAFE,s=i.BADNUM,l=e.exports={};l.nestedProperty=t(\"./nested_property\"),l.keyedContainer=t(\"./keyed_container\"),l.relativeAttr=t(\"./relative_attr\"),l.isPlainObject=t(\"./is_plain_object\"),l.toLogRange=t(\"./to_log_range\"),l.relinkPrivateKeys=t(\"./relink_private\");var c=t(\"./array\");l.isTypedArray=c.isTypedArray,l.isArrayOrTypedArray=c.isArrayOrTypedArray,l.isArray1D=c.isArray1D,l.ensureArray=c.ensureArray,l.concat=c.concat,l.maxRowLength=c.maxRowLength,l.minRowLength=c.minRowLength;var u=t(\"./mod\");l.mod=u.mod,l.modHalf=u.modHalf;var h=t(\"./coerce\");l.valObjectMeta=h.valObjectMeta,l.coerce=h.coerce,l.coerce2=h.coerce2,l.coerceFont=h.coerceFont,l.coerceHoverinfo=h.coerceHoverinfo,l.coerceSelectionMarkerOpacity=h.coerceSelectionMarkerOpacity,l.validate=h.validate;var f=t(\"./dates\");l.dateTime2ms=f.dateTime2ms,l.isDateTime=f.isDateTime,l.ms2DateTime=f.ms2DateTime,l.ms2DateTimeLocal=f.ms2DateTimeLocal,l.cleanDate=f.cleanDate,l.isJSDate=f.isJSDate,l.formatDate=f.formatDate,l.incrementMonth=f.incrementMonth,l.dateTick0=f.dateTick0,l.dfltRange=f.dfltRange,l.findExactDates=f.findExactDates,l.MIN_MS=f.MIN_MS,l.MAX_MS=f.MAX_MS;var p=t(\"./search\");l.findBin=p.findBin,l.sorterAsc=p.sorterAsc,l.sorterDes=p.sorterDes,l.distinctVals=p.distinctVals,l.roundUp=p.roundUp,l.sort=p.sort,l.findIndexOfMin=p.findIndexOfMin;var d=t(\"./stats\");l.aggNums=d.aggNums,l.len=d.len,l.mean=d.mean,l.median=d.median,l.midRange=d.midRange,l.variance=d.variance,l.stdev=d.stdev,l.interp=d.interp;var g=t(\"./matrix\");l.init2dArray=g.init2dArray,l.transposeRagged=g.transposeRagged,l.dot=g.dot,l.translationMatrix=g.translationMatrix,l.rotationMatrix=g.rotationMatrix,l.rotationXYMatrix=g.rotationXYMatrix,l.apply2DTransform=g.apply2DTransform,l.apply2DTransform2=g.apply2DTransform2;var v=t(\"./angles\");l.deg2rad=v.deg2rad,l.rad2deg=v.rad2deg,l.angleDelta=v.angleDelta,l.angleDist=v.angleDist,l.isFullCircle=v.isFullCircle,l.isAngleInsideSector=v.isAngleInsideSector,l.isPtInsideSector=v.isPtInsideSector,l.pathArc=v.pathArc,l.pathSector=v.pathSector,l.pathAnnulus=v.pathAnnulus;var m=t(\"./anchor_utils\");l.isLeftAnchor=m.isLeftAnchor,l.isCenterAnchor=m.isCenterAnchor,l.isRightAnchor=m.isRightAnchor,l.isTopAnchor=m.isTopAnchor,l.isMiddleAnchor=m.isMiddleAnchor,l.isBottomAnchor=m.isBottomAnchor;var y=t(\"./geometry2d\");l.segmentsIntersect=y.segmentsIntersect,l.segmentDistance=y.segmentDistance,l.getTextLocation=y.getTextLocation,l.clearLocationCache=y.clearLocationCache,l.getVisibleSegment=y.getVisibleSegment,l.findPointOnPath=y.findPointOnPath;var x=t(\"./extend\");l.extendFlat=x.extendFlat,l.extendDeep=x.extendDeep,l.extendDeepAll=x.extendDeepAll,l.extendDeepNoArrays=x.extendDeepNoArrays;var b=t(\"./loggers\");l.log=b.log,l.warn=b.warn,l.error=b.error;var _=t(\"./regex\");l.counterRegex=_.counter;var w=t(\"./throttle\");l.throttle=w.throttle,l.throttleDone=w.done,l.clearThrottle=w.clear;var k=t(\"./dom\");function T(t){var e={};for(var r in t)for(var n=t[r],a=0;a<n.length;a++)e[n[a]]=+r;return e}l.getGraphDiv=k.getGraphDiv,l.isPlotDiv=k.isPlotDiv,l.removeElement=k.removeElement,l.addStyleRule=k.addStyleRule,l.addRelatedStyleRule=k.addRelatedStyleRule,l.deleteRelatedStyleRule=k.deleteRelatedStyleRule,l.clearResponsive=t(\"./clear_responsive\"),l.makeTraceGroups=t(\"./make_trace_groups\"),l._=t(\"./localize\"),l.notifier=t(\"./notifier\"),l.filterUnique=t(\"./filter_unique\"),l.filterVisible=t(\"./filter_visible\"),l.pushUnique=t(\"./push_unique\"),l.cleanNumber=t(\"./clean_number\"),l.ensureNumber=function(t){return a(t)?(t=Number(t))<-o||t>o?s:a(t)?Number(t):s:s},l.isIndex=function(t,e){return!(void 0!==e&&t>=e)&&(a(t)&&t>=0&&t%1==0)},l.noop=t(\"./noop\"),l.identity=t(\"./identity\"),l.repeat=function(t,e){for(var r=new Array(e),n=0;n<e;n++)r[n]=t;return r},l.swapAttrs=function(t,e,r,n){r||(r=\"x\"),n||(n=\"y\");for(var a=0;a<e.length;a++){var i=e[a],o=l.nestedProperty(t,i.replace(\"?\",r)),s=l.nestedProperty(t,i.replace(\"?\",n)),c=o.get();o.set(s.get()),s.set(c)}},l.raiseToTop=function(t){t.parentNode.appendChild(t)},l.cancelTransition=function(t){return t.transition().duration(0)},l.constrain=function(t,e,r){return e>r?Math.max(r,Math.min(e,t)):Math.max(e,Math.min(r,t))},l.bBoxIntersect=function(t,e,r){return r=r||0,t.left<=e.right+r&&e.left<=t.right+r&&t.top<=e.bottom+r&&e.top<=t.bottom+r},l.simpleMap=function(t,e,r,n){for(var a=t.length,i=new Array(a),o=0;o<a;o++)i[o]=e(t[o],r,n);return i},l.randstr=function t(e,r,n,a){if(n||(n=16),void 0===r&&(r=24),r<=0)return\"0\";var i,o,s=Math.log(Math.pow(2,r))/Math.log(n),c=\"\";for(i=2;s===1/0;i*=2)s=Math.log(Math.pow(2,r/i))/Math.log(n)*i;var u=s-Math.floor(s);for(i=0;i<Math.floor(s);i++)c=Math.floor(Math.random()*n).toString(n)+c;u&&(o=Math.pow(n,u),c=Math.floor(Math.random()*o).toString(n)+c);var h=parseInt(c,n);return e&&e[c]||h!==1/0&&h>=Math.pow(2,r)?a>10?(l.warn(\"randstr failed uniqueness\"),c):t(e,r,n,(a||0)+1):c},l.OptionControl=function(t,e){t||(t={}),e||(e=\"opt\");var r={optionList:[],_newoption:function(n){n[e]=t,r[n.name]=n,r.optionList.push(n)}};return r[\"_\"+e]=t,r},l.smooth=function(t,e){if((e=Math.round(e)||0)<2)return t;var r,n,a,i,o=t.length,s=2*o,l=2*e-1,c=new Array(l),u=new Array(o);for(r=0;r<l;r++)c[r]=(1-Math.cos(Math.PI*(r+1)/e))/(2*e);for(r=0;r<o;r++){for(i=0,n=0;n<l;n++)(a=r+n+1-e)<-o?a-=s*Math.round(a/s):a>=s&&(a-=s*Math.floor(a/s)),a<0?a=-1-a:a>=o&&(a=s-1-a),i+=t[a]*c[n];u[r]=i}return u},l.syncOrAsync=function(t,e,r){var n;function a(){return l.syncOrAsync(t,e,r)}for(;t.length;)if((n=(0,t.splice(0,1)[0])(e))&&n.then)return n.then(a).then(void 0,l.promiseError);return r&&r(e)},l.stripTrailingSlash=function(t){return\"/\"===t.substr(-1)?t.substr(0,t.length-1):t},l.noneOrAll=function(t,e,r){if(t){var n,a=!1,i=!0;for(n=0;n<r.length;n++)null!=t[r[n]]?a=!0:i=!1;if(a&&!i)for(n=0;n<r.length;n++)t[r[n]]=e[r[n]]}},l.mergeArray=function(t,e,r,n){var a=\"function\"==typeof n;if(l.isArrayOrTypedArray(t))for(var i=Math.min(t.length,e.length),o=0;o<i;o++){var s=t[o];e[o][r]=a?n(s):s}},l.mergeArrayCastPositive=function(t,e,r){return l.mergeArray(t,e,r,function(t){var e=+t;return isFinite(e)&&e>0?e:0})},l.fillArray=function(t,e,r,n){if(n=n||l.identity,l.isArrayOrTypedArray(t))for(var a=0;a<e.length;a++)e[a][r]=n(t[a])},l.castOption=function(t,e,r,n){n=n||l.identity;var a=l.nestedProperty(t,r).get();return l.isArrayOrTypedArray(a)?Array.isArray(e)&&l.isArrayOrTypedArray(a[e[0]])?n(a[e[0]][e[1]]):n(a[e]):a},l.extractOption=function(t,e,r,n){if(r in t)return t[r];var a=l.nestedProperty(e,n).get();return Array.isArray(a)?void 0:a},l.tagSelected=function(t,e,r){var n,a,i=e.selectedpoints,o=e._indexToPoints;o&&(n=T(o));for(var s=0;s<i.length;s++){var c=i[s];if(l.isIndex(c)){var u=n?n[c]:c,h=r?r[u]:u;void 0!==(a=h)&&a<t.length&&(t[h].selected=1)}}},l.selIndices2selPoints=function(t){var e=t.selectedpoints,r=t._indexToPoints;if(r){for(var n=T(r),a=[],i=0;i<e.length;i++){var o=e[i];if(l.isIndex(o)){var s=n[o];l.isIndex(s)&&a.push(s)}}return a}return e},l.getTargetArray=function(t,e){var r=e.target;if(\"string\"==typeof r&&r){var n=l.nestedProperty(t,r).get();return!!Array.isArray(n)&&n}return!!Array.isArray(r)&&r},l.minExtend=function(t,e){var r={};\"object\"!=typeof e&&(e={});var n,a,i,o=Object.keys(t);for(n=0;n<o.length;n++)i=t[a=o[n]],\"_\"!==a.charAt(0)&&\"function\"!=typeof i&&(\"module\"===a?r[a]=i:Array.isArray(i)?r[a]=\"colorscale\"===a?i.slice():i.slice(0,3):l.isTypedArray(i)?r[a]=i.subarray(0,3):r[a]=i&&\"object\"==typeof i?l.minExtend(t[a],e[a]):i);for(o=Object.keys(e),n=0;n<o.length;n++)\"object\"==typeof(i=e[a=o[n]])&&a in r&&\"object\"==typeof r[a]||(r[a]=i);return r},l.titleCase=function(t){return t.charAt(0).toUpperCase()+t.substr(1)},l.containsAny=function(t,e){for(var r=0;r<e.length;r++)if(-1!==t.indexOf(e[r]))return!0;return!1},l.isIE=function(){return\"undefined\"!=typeof window.navigator.msSaveBlob};var A=/MSIE [1-9]\\./;l.isIE9orBelow=function(){return l.isIE()&&A.test(window.navigator.userAgent)};var M=/Version\\/[\\d\\.]+.*Safari/;l.isSafari=function(){return M.test(window.navigator.userAgent)},l.isD3Selection=function(t){return t&&\"function\"==typeof t.classed},l.ensureSingle=function(t,e,r,n){var a=t.select(e+(r?\".\"+r:\"\"));if(a.size())return a;var i=t.append(e);return r&&i.classed(r,!0),n&&i.call(n),i},l.ensureSingleById=function(t,e,r,n){var a=t.select(e+\"#\"+r);if(a.size())return a;var i=t.append(e).attr(\"id\",r);return n&&i.call(n),i},l.objectFromPath=function(t,e){for(var r,n=t.split(\".\"),a=r={},i=0;i<n.length;i++){var o=n[i],s=null,l=n[i].match(/(.*)\\[([0-9]+)\\]/);l?(o=l[1],s=l[2],r=r[o]=[],i===n.length-1?r[s]=e:r[s]={},r=r[s]):(i===n.length-1?r[o]=e:r[o]={},r=r[o])}return a};var S=/^([^\\[\\.]+)\\.(.+)?/,E=/^([^\\.]+)\\[([0-9]+)\\](\\.)?(.+)?/;l.expandObjectPaths=function(t){var e,r,n,a,i,o,s;if(\"object\"==typeof t&&!Array.isArray(t))for(r in t)t.hasOwnProperty(r)&&((e=r.match(S))?(a=t[r],n=e[1],delete t[r],t[n]=l.extendDeepNoArrays(t[n]||{},l.objectFromPath(r,l.expandObjectPaths(a))[n])):(e=r.match(E))?(a=t[r],n=e[1],i=parseInt(e[2]),delete t[r],t[n]=t[n]||[],\".\"===e[3]?(s=e[4],o=t[n][i]=t[n][i]||{},l.extendDeepNoArrays(o,l.objectFromPath(s,l.expandObjectPaths(a)))):t[n][i]=l.expandObjectPaths(a)):t[r]=l.expandObjectPaths(t[r]));return t},l.numSeparate=function(t,e,r){if(r||(r=!1),\"string\"!=typeof e||0===e.length)throw new Error(\"Separator string required for formatting!\");\"number\"==typeof t&&(t=String(t));var n=/(\\d+)(\\d{3})/,a=e.charAt(0),i=e.charAt(1),o=t.split(\".\"),s=o[0],l=o.length>1?a+o[1]:\"\";if(i&&(o.length>1||s.length>4||r))for(;n.test(s);)s=s.replace(n,\"$1\"+i+\"$2\");return s+l},l.TEMPLATE_STRING_REGEX=/%{([^\\s%{}:]*)([:|\\|][^}]*)?}/g;var C=/^\\w*$/;l.templateString=function(t,e){var r={};return t.replace(l.TEMPLATE_STRING_REGEX,function(t,n){return C.test(n)?e[n]||\"\":(r[n]=r[n]||l.nestedProperty(e,n).get,r[n]()||\"\")})};var L={max:10,count:0,name:\"hovertemplate\"};l.hovertemplateString=function(){return I.apply(L,arguments)};var P={max:10,count:0,name:\"texttemplate\"};l.texttemplateString=function(){return I.apply(P,arguments)};var O=/^[:|\\|]/;function I(t,e,r){var a=this,i=arguments;e||(e={});var o={};return t.replace(l.TEMPLATE_STRING_REGEX,function(t,s,c){var u,h,f,p;for(f=3;f<i.length;f++)if(u=i[f]){if(u.hasOwnProperty(s)){h=u[s];break}if(C.test(s)||(h=o[s]||l.nestedProperty(u,s).get())&&(o[s]=h),void 0!==h)break}if(void 0===h&&a)return a.count<a.max&&(l.warn(\"Variable '\"+s+\"' in \"+a.name+\" could not be found!\"),h=t),a.count===a.max&&l.warn(\"Too many \"+a.name+\" warnings - additional warnings will be suppressed\"),a.count++,t;if(c){if(\":\"===c[0]&&(h=(p=r?r.numberFormat:n.format)(c.replace(O,\"\"))(h)),\"|\"===c[0]){p=r?r.timeFormat.utc:n.time.format.utc;var d=l.dateTime2ms(h);h=l.formatDate(d,c.replace(O,\"\"),!1,p)}}else e.hasOwnProperty(s+\"Label\")&&(h=e[s+\"Label\"]);return h})}l.subplotSort=function(t,e){for(var r=Math.min(t.length,e.length)+1,n=0,a=0,i=0;i<r;i++){var o=t.charCodeAt(i)||0,s=e.charCodeAt(i)||0,l=o>=48&&o<=57,c=s>=48&&s<=57;if(l&&(n=10*n+o-48),c&&(a=10*a+s-48),!l||!c){if(n!==a)return n-a;if(o!==s)return o-s}}return a-n};var z=2e9;l.seedPseudoRandom=function(){z=2e9},l.pseudoRandom=function(){var t=z;return z=(69069*z+1)%4294967296,Math.abs(z-t)<429496729?l.pseudoRandom():z/4294967296},l.fillText=function(t,e,r){var n=Array.isArray(r)?function(t){r.push(t)}:function(t){r.text=t},a=l.extractOption(t,e,\"htx\",\"hovertext\");if(l.isValidTextValue(a))return n(a);var i=l.extractOption(t,e,\"tx\",\"text\");return l.isValidTextValue(i)?n(i):void 0},l.isValidTextValue=function(t){return t||0===t},l.formatPercent=function(t,e){e=e||0;for(var r=(Math.round(100*t*Math.pow(10,e))*Math.pow(.1,e)).toFixed(e)+\"%\",n=0;n<e;n++)-1!==r.indexOf(\".\")&&(r=(r=r.replace(\"0%\",\"%\")).replace(\".%\",\"%\"));return r},l.isHidden=function(t){var e=window.getComputedStyle(t).display;return!e||\"none\"===e},l.getTextTransform=function(t){var e,r=t.textX,n=t.textY,a=t.targetX,i=t.targetY,o=t.scale,s=t.rotate;return o<1?e=\"scale(\"+o+\") \":(o=1,e=\"\"),\"translate(\"+(a-o*r)+\" \"+(i-o*n)+\")\"+e+(s?\"rotate(\"+s+\" \"+r+\" \"+n+\") \":\"\")}},{\"../constants/numerical\":695,\"./anchor_utils\":700,\"./angles\":701,\"./array\":702,\"./clean_number\":703,\"./clear_responsive\":705,\"./coerce\":706,\"./dates\":707,\"./dom\":708,\"./extend\":710,\"./filter_unique\":711,\"./filter_visible\":712,\"./geometry2d\":715,\"./identity\":718,\"./is_plain_object\":720,\"./keyed_container\":721,\"./localize\":722,\"./loggers\":723,\"./make_trace_groups\":724,\"./matrix\":725,\"./mod\":726,\"./nested_property\":727,\"./noop\":728,\"./notifier\":729,\"./push_unique\":733,\"./regex\":735,\"./relative_attr\":736,\"./relink_private\":737,\"./search\":738,\"./stats\":741,\"./throttle\":744,\"./to_log_range\":745,d3:164,\"fast-isnumeric\":226}],720:[function(t,e,r){\"use strict\";e.exports=function(t){return window&&window.process&&window.process.versions?\"[object Object]\"===Object.prototype.toString.call(t):\"[object Object]\"===Object.prototype.toString.call(t)&&Object.getPrototypeOf(t)===Object.prototype}},{}],721:[function(t,e,r){\"use strict\";var n=t(\"./nested_property\"),a=/^\\w*$/;e.exports=function(t,e,r,i){var o,s,l;r=r||\"name\",i=i||\"value\";var c={};e&&e.length?(l=n(t,e),s=l.get()):s=t,e=e||\"\";var u={};if(s)for(o=0;o<s.length;o++)u[s[o][r]]=o;var h=a.test(i),f={set:function(t,e){var a=null===e?4:0;if(!s){if(!l||4===a)return;s=[],l.set(s)}var o=u[t];if(void 0===o){if(4===a)return;a|=3,o=s.length,u[t]=o}else e!==(h?s[o][i]:n(s[o],i).get())&&(a|=2);var p=s[o]=s[o]||{};return p[r]=t,h?p[i]=e:n(p,i).set(e),null!==e&&(a&=-5),c[o]=c[o]|a,f},get:function(t){if(s){var e=u[t];return void 0===e?void 0:h?s[e][i]:n(s[e],i).get()}},rename:function(t,e){var n=u[t];return void 0===n?f:(c[n]=1|c[n],u[e]=n,delete u[t],s[n][r]=e,f)},remove:function(t){var e=u[t];if(void 0===e)return f;var a=s[e];if(Object.keys(a).length>2)return c[e]=2|c[e],f.set(t,null);if(h){for(o=e;o<s.length;o++)c[o]=3|c[o];for(o=e;o<s.length;o++)u[s[o][r]]--;s.splice(e,1),delete u[t]}else n(a,i).set(null),c[e]=6|c[e];return f},constructUpdate:function(){for(var t,a,o={},l=Object.keys(c),u=0;u<l.length;u++)a=l[u],t=e+\"[\"+a+\"]\",s[a]?(1&c[a]&&(o[t+\".\"+r]=s[a][r]),2&c[a]&&(o[t+\".\"+i]=h?4&c[a]?null:s[a][i]:4&c[a]?null:n(s[a],i).get())):o[t]=null;return o}};return f}},{\"./nested_property\":727}],722:[function(t,e,r){\"use strict\";var n=t(\"../registry\");e.exports=function(t,e){for(var r=t._context.locale,a=0;a<2;a++){for(var i=t._context.locales,o=0;o<2;o++){var s=(i[r]||{}).dictionary;if(s){var l=s[e];if(l)return l}i=n.localeRegistry}var c=r.split(\"-\")[0];if(c===r)break;r=c}return e}},{\"../registry\":848}],723:[function(t,e,r){\"use strict\";var n=t(\"../plot_api/plot_config\").dfltConfig,a=e.exports={};function i(t,e){if(t&&t.apply)try{return void t.apply(console,e)}catch(t){}for(var r=0;r<e.length;r++)try{t(e[r])}catch(t){console.log(e[r])}}a.log=function(){if(n.logging>1){for(var t=[\"LOG:\"],e=0;e<arguments.length;e++)t.push(arguments[e]);i(console.trace||console.log,t)}},a.warn=function(){if(n.logging>0){for(var t=[\"WARN:\"],e=0;e<arguments.length;e++)t.push(arguments[e]);i(console.trace||console.log,t)}},a.error=function(){if(n.logging>0){for(var t=[\"ERROR:\"],e=0;e<arguments.length;e++)t.push(arguments[e]);i(console.error,t)}}},{\"../plot_api/plot_config\":755}],724:[function(t,e,r){\"use strict\";var n=t(\"d3\");e.exports=function(t,e,r){var a=t.selectAll(\"g.\"+r.replace(/\\s/g,\".\")).data(e,function(t){return t[0].trace.uid});a.exit().remove(),a.enter().append(\"g\").attr(\"class\",r),a.order();var i=t.classed(\"rangeplot\")?\"nodeRangePlot3\":\"node3\";return a.each(function(t){t[0][i]=n.select(this)}),a}},{d3:164}],725:[function(t,e,r){\"use strict\";r.init2dArray=function(t,e){for(var r=new Array(t),n=0;n<t;n++)r[n]=new Array(e);return r},r.transposeRagged=function(t){var e,r,n=0,a=t.length;for(e=0;e<a;e++)n=Math.max(n,t[e].length);var i=new Array(n);for(e=0;e<n;e++)for(i[e]=new Array(a),r=0;r<a;r++)i[e][r]=t[r][e];return i},r.dot=function(t,e){if(!t.length||!e.length||t.length!==e.length)return null;var n,a,i=t.length;if(t[0].length)for(n=new Array(i),a=0;a<i;a++)n[a]=r.dot(t[a],e);else if(e[0].length){var o=r.transposeRagged(e);for(n=new Array(o.length),a=0;a<o.length;a++)n[a]=r.dot(t,o[a])}else for(n=0,a=0;a<i;a++)n+=t[a]*e[a];return n},r.translationMatrix=function(t,e){return[[1,0,t],[0,1,e],[0,0,1]]},r.rotationMatrix=function(t){var e=t*Math.PI/180;return[[Math.cos(e),-Math.sin(e),0],[Math.sin(e),Math.cos(e),0],[0,0,1]]},r.rotationXYMatrix=function(t,e,n){return r.dot(r.dot(r.translationMatrix(e,n),r.rotationMatrix(t)),r.translationMatrix(-e,-n))},r.apply2DTransform=function(t){return function(){var e=arguments;3===e.length&&(e=e[0]);var n=1===arguments.length?e[0]:[e[0],e[1]];return r.dot(t,[n[0],n[1],1]).slice(0,2)}},r.apply2DTransform2=function(t){var e=r.apply2DTransform(t);return function(t){return e(t.slice(0,2)).concat(e(t.slice(2,4)))}}},{}],726:[function(t,e,r){\"use strict\";e.exports={mod:function(t,e){var r=t%e;return r<0?r+e:r},modHalf:function(t,e){return Math.abs(t)>e/2?t-Math.round(t/e)*e:t}}},{}],727:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"./array\").isArrayOrTypedArray;e.exports=function(t,e){if(n(e))e=String(e);else if(\"string\"!=typeof e||\"[-1]\"===e.substr(e.length-4))throw\"bad property string\";for(var r,i,o,l=0,c=e.split(\".\");l<c.length;){if(r=String(c[l]).match(/^([^\\[\\]]*)((\\[\\-?[0-9]*\\])+)$/)){if(r[1])c[l]=r[1];else{if(0!==l)throw\"bad property string\";c.splice(0,1)}for(i=r[2].substr(1,r[2].length-2).split(\"][\"),o=0;o<i.length;o++)l++,c.splice(l,0,Number(i[o]))}l++}return\"object\"!=typeof t?function(t,e,r){return{set:function(){throw\"bad container\"},get:function(){},astr:e,parts:r,obj:t}}(t,e,c):{set:s(t,c,e),get:function t(e,r){return function(){var n,i,o,s,l,c=e;for(s=0;s<r.length-1;s++){if(-1===(n=r[s])){for(i=!0,o=[],l=0;l<c.length;l++)o[l]=t(c[l],r.slice(s+1))(),o[l]!==o[0]&&(i=!1);return i?o[0]:o}if(\"number\"==typeof n&&!a(c))return;if(\"object\"!=typeof(c=c[n])||null===c)return}if(\"object\"==typeof c&&null!==c&&null!==(o=c[r[s]]))return o}}(t,c),astr:e,parts:c,obj:t}};var i=/(^|\\.)args\\[/;function o(t,e){return void 0===t||null===t&&!e.match(i)}function s(t,e,r){return function(n){var i,s,h=t,f=\"\",p=[[t,f]],d=o(n,r);for(s=0;s<e.length-1;s++){if(\"number\"==typeof(i=e[s])&&!a(h))throw\"array index but container is not an array\";if(-1===i){if(d=!c(h,e.slice(s+1),n,r))break;return}if(!u(h,i,e[s+1],d))break;if(\"object\"!=typeof(h=h[i])||null===h)throw\"container is not an object\";f=l(f,i),p.push([h,f])}if(d){if(s===e.length-1&&(delete h[e[s]],Array.isArray(h)&&+e[s]==h.length-1))for(;h.length&&void 0===h[h.length-1];)h.pop()}else h[e[s]]=n}}function l(t,e){var r=e;return n(e)?r=\"[\"+e+\"]\":t&&(r=\".\"+e),t+r}function c(t,e,r,n){var i,l=a(r),c=!0,h=r,f=n.replace(\"-1\",0),p=!l&&o(r,f),d=e[0];for(i=0;i<t.length;i++)f=n.replace(\"-1\",i),l&&(p=o(h=r[i%r.length],f)),p&&(c=!1),u(t,i,d,p)&&s(t[i],e,n.replace(\"-1\",i))(h);return c}function u(t,e,r,n){if(void 0===t[e]){if(n)return!1;t[e]=\"number\"==typeof r?[]:{}}return!0}},{\"./array\":702,\"fast-isnumeric\":226}],728:[function(t,e,r){\"use strict\";e.exports=function(){}},{}],729:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"fast-isnumeric\"),i=[];e.exports=function(t,e){if(-1===i.indexOf(t)){i.push(t);var r=1e3;a(e)?r=e:\"long\"===e&&(r=3e3);var o=n.select(\"body\").selectAll(\".plotly-notifier\").data([0]);o.enter().append(\"div\").classed(\"plotly-notifier\",!0),o.selectAll(\".notifier-note\").data(i).enter().append(\"div\").classed(\"notifier-note\",!0).style(\"opacity\",0).each(function(t){var e=n.select(this);e.append(\"button\").classed(\"notifier-close\",!0).html(\"&times;\").on(\"click\",function(){e.transition().call(s)});for(var a=e.append(\"p\"),i=t.split(/<br\\s*\\/?>/g),o=0;o<i.length;o++)o&&a.append(\"br\"),a.append(\"span\").text(i[o]);e.transition().duration(700).style(\"opacity\",1).transition().delay(r).call(s)})}function s(t){t.duration(700).style(\"opacity\",0).each(\"end\",function(t){var e=i.indexOf(t);-1!==e&&i.splice(e,1),n.select(this).remove()})}}},{d3:164,\"fast-isnumeric\":226}],730:[function(t,e,r){\"use strict\";var n=t(\"./setcursor\"),a=\"data-savedcursor\";e.exports=function(t,e){var r=t.attr(a);if(e){if(!r){for(var i=(t.attr(\"class\")||\"\").split(\" \"),o=0;o<i.length;o++){var s=i[o];0===s.indexOf(\"cursor-\")&&t.attr(a,s.substr(7)).classed(s,!1)}t.attr(a)||t.attr(a,\"!!\")}n(t,e)}else r&&(t.attr(a,null),\"!!\"===r?n(t):n(t,r))}},{\"./setcursor\":739}],731:[function(t,e,r){\"use strict\";var n=t(\"./matrix\").dot,a=t(\"../constants/numerical\").BADNUM,i=e.exports={};i.tester=function(t){var e,r=t.slice(),n=r[0][0],i=n,o=r[0][1],s=o;for(r.push(r[0]),e=1;e<r.length;e++)n=Math.min(n,r[e][0]),i=Math.max(i,r[e][0]),o=Math.min(o,r[e][1]),s=Math.max(s,r[e][1]);var l,c=!1;5===r.length&&(r[0][0]===r[1][0]?r[2][0]===r[3][0]&&r[0][1]===r[3][1]&&r[1][1]===r[2][1]&&(c=!0,l=function(t){return t[0]===r[0][0]}):r[0][1]===r[1][1]&&r[2][1]===r[3][1]&&r[0][0]===r[3][0]&&r[1][0]===r[2][0]&&(c=!0,l=function(t){return t[1]===r[0][1]}));var u=!0,h=r[0];for(e=1;e<r.length;e++)if(h[0]!==r[e][0]||h[1]!==r[e][1]){u=!1;break}return{xmin:n,xmax:i,ymin:o,ymax:s,pts:r,contains:c?function(t,e){var r=t[0],c=t[1];return!(r===a||r<n||r>i||c===a||c<o||c>s||e&&l(t))}:function(t,e){var l=t[0],c=t[1];if(l===a||l<n||l>i||c===a||c<o||c>s)return!1;var u,h,f,p,d,g=r.length,v=r[0][0],m=r[0][1],y=0;for(u=1;u<g;u++)if(h=v,f=m,v=r[u][0],m=r[u][1],!(l<(p=Math.min(h,v))||l>Math.max(h,v)||c>Math.max(f,m)))if(c<Math.min(f,m))l!==p&&y++;else{if(c===(d=v===h?c:f+(l-h)*(m-f)/(v-h)))return 1!==u||!e;c<=d&&l!==p&&y++}return y%2==1},isRect:c,degenerate:u}},i.isSegmentBent=function(t,e,r,a){var i,o,s,l=t[e],c=[t[r][0]-l[0],t[r][1]-l[1]],u=n(c,c),h=Math.sqrt(u),f=[-c[1]/h,c[0]/h];for(i=e+1;i<r;i++)if(o=[t[i][0]-l[0],t[i][1]-l[1]],(s=n(o,c))<0||s>u||Math.abs(n(o,f))>a)return!0;return!1},i.filter=function(t,e){var r=[t[0]],n=0,a=0;function o(o){t.push(o);var s=r.length,l=n;r.splice(a+1);for(var c=l+1;c<t.length;c++)(c===t.length-1||i.isSegmentBent(t,l,c+1,e))&&(r.push(t[c]),r.length<s-2&&(n=c,a=r.length-1),l=c)}t.length>1&&o(t.pop());return{addPt:o,raw:t,filtered:r}}},{\"../constants/numerical\":695,\"./matrix\":725}],732:[function(t,e,r){(function(r){\"use strict\";var n=t(\"./show_no_webgl_msg\"),a=t(\"regl\");e.exports=function(t,e){var i=t._fullLayout,o=!0;return i._glcanvas.each(function(n){if(!n.regl&&(!n.pick||i._has(\"parcoords\"))){try{n.regl=a({canvas:this,attributes:{antialias:!n.pick,preserveDrawingBuffer:!0},pixelRatio:t._context.plotGlPixelRatio||r.devicePixelRatio,extensions:e||[]})}catch(t){o=!1}o&&this.addEventListener(\"webglcontextlost\",function(e){t&&t.emit&&t.emit(\"plotly_webglcontextlost\",{event:e,layer:n.key})},!1)}}),o||n({container:i._glcontainer.node()}),o}}).call(this,\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{\"./show_no_webgl_msg\":740,regl:503}],733:[function(t,e,r){\"use strict\";e.exports=function(t,e){if(e instanceof RegExp){for(var r=e.toString(),n=0;n<t.length;n++)if(t[n]instanceof RegExp&&t[n].toString()===r)return t;t.push(e)}else!e&&0!==e||-1!==t.indexOf(e)||t.push(e);return t}},{}],734:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),a=t(\"../plot_api/plot_config\").dfltConfig;var i={add:function(t,e,r,n,i){var o,s;t.undoQueue=t.undoQueue||{index:0,queue:[],sequence:!1},s=t.undoQueue.index,t.autoplay?t.undoQueue.inSequence||(t.autoplay=!1):(!t.undoQueue.sequence||t.undoQueue.beginSequence?(o={undo:{calls:[],args:[]},redo:{calls:[],args:[]}},t.undoQueue.queue.splice(s,t.undoQueue.queue.length-s,o),t.undoQueue.index+=1):o=t.undoQueue.queue[s-1],t.undoQueue.beginSequence=!1,o&&(o.undo.calls.unshift(e),o.undo.args.unshift(r),o.redo.calls.push(n),o.redo.args.push(i)),t.undoQueue.queue.length>a.queueLength&&(t.undoQueue.queue.shift(),t.undoQueue.index--))},startSequence:function(t){t.undoQueue=t.undoQueue||{index:0,queue:[],sequence:!1},t.undoQueue.sequence=!0,t.undoQueue.beginSequence=!0},stopSequence:function(t){t.undoQueue=t.undoQueue||{index:0,queue:[],sequence:!1},t.undoQueue.sequence=!1,t.undoQueue.beginSequence=!1},undo:function(t){var e,r;if(t.framework&&t.framework.isPolar)t.framework.undo();else if(!(void 0===t.undoQueue||isNaN(t.undoQueue.index)||t.undoQueue.index<=0)){for(t.undoQueue.index--,e=t.undoQueue.queue[t.undoQueue.index],t.undoQueue.inSequence=!0,r=0;r<e.undo.calls.length;r++)i.plotDo(t,e.undo.calls[r],e.undo.args[r]);t.undoQueue.inSequence=!1,t.autoplay=!1}},redo:function(t){var e,r;if(t.framework&&t.framework.isPolar)t.framework.redo();else if(!(void 0===t.undoQueue||isNaN(t.undoQueue.index)||t.undoQueue.index>=t.undoQueue.queue.length)){for(e=t.undoQueue.queue[t.undoQueue.index],t.undoQueue.inSequence=!0,r=0;r<e.redo.calls.length;r++)i.plotDo(t,e.redo.calls[r],e.redo.args[r]);t.undoQueue.inSequence=!1,t.autoplay=!1,t.undoQueue.index++}}};i.plotDo=function(t,e,r){t.autoplay=!0,r=function(t,e){for(var r,a=[],i=0;i<e.length;i++)r=e[i],a[i]=r===t?r:\"object\"==typeof r?Array.isArray(r)?n.extendDeep([],r):n.extendDeepAll({},r):r;return a}(t,r),e.apply(null,r)},e.exports=i},{\"../lib\":719,\"../plot_api/plot_config\":755}],735:[function(t,e,r){\"use strict\";r.counter=function(t,e,r,n){var a=(e||\"\")+(r?\"\":\"$\"),i=!1===n?\"\":\"^\";return\"xy\"===t?new RegExp(i+\"x([2-9]|[1-9][0-9]+)?y([2-9]|[1-9][0-9]+)?\"+a):new RegExp(i+t+\"([2-9]|[1-9][0-9]+)?\"+a)}},{}],736:[function(t,e,r){\"use strict\";var n=/^(.*)(\\.[^\\.\\[\\]]+|\\[\\d\\])$/,a=/^[^\\.\\[\\]]+$/;e.exports=function(t,e){for(;e;){var r=t.match(n);if(r)t=r[1];else{if(!t.match(a))throw new Error(\"bad relativeAttr call:\"+[t,e]);t=\"\"}if(\"^\"!==e.charAt(0))break;e=e.slice(1)}return t&&\"[\"!==e.charAt(0)?t+\".\"+e:t+e}},{}],737:[function(t,e,r){\"use strict\";var n=t(\"./array\").isArrayOrTypedArray,a=t(\"./is_plain_object\");e.exports=function t(e,r){for(var i in r){var o=r[i],s=e[i];if(s!==o)if(\"_\"===i.charAt(0)||\"function\"==typeof o){if(i in e)continue;e[i]=o}else if(n(o)&&n(s)&&a(o[0])){if(\"customdata\"===i||\"ids\"===i)continue;for(var l=Math.min(o.length,s.length),c=0;c<l;c++)s[c]!==o[c]&&a(o[c])&&a(s[c])&&t(s[c],o[c])}else a(o)&&a(s)&&(t(s,o),Object.keys(s).length||delete e[i])}}},{\"./array\":702,\"./is_plain_object\":720}],738:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"./loggers\"),i=t(\"./identity\");function o(t,e){return t<e}function s(t,e){return t<=e}function l(t,e){return t>e}function c(t,e){return t>=e}r.findBin=function(t,e,r){if(n(e.start))return r?Math.ceil((t-e.start)/e.size-1e-9)-1:Math.floor((t-e.start)/e.size+1e-9);var i,u,h=0,f=e.length,p=0,d=f>1?(e[f-1]-e[0])/(f-1):1;for(u=d>=0?r?o:s:r?c:l,t+=1e-9*d*(r?-1:1)*(d>=0?1:-1);h<f&&p++<100;)u(e[i=Math.floor((h+f)/2)],t)?h=i+1:f=i;return p>90&&a.log(\"Long binary search...\"),h-1},r.sorterAsc=function(t,e){return t-e},r.sorterDes=function(t,e){return e-t},r.distinctVals=function(t){var e=t.slice();e.sort(r.sorterAsc);for(var n=e.length-1,a=e[n]-e[0]||1,i=a/(n||1)/1e4,o=[e[0]],s=0;s<n;s++)e[s+1]>e[s]+i&&(a=Math.min(a,e[s+1]-e[s]),o.push(e[s+1]));return{vals:o,minDiff:a}},r.roundUp=function(t,e,r){for(var n,a=0,i=e.length-1,o=0,s=r?0:1,l=r?1:0,c=r?Math.ceil:Math.floor;a<i&&o++<100;)e[n=c((a+i)/2)]<=t?a=n+s:i=n-l;return e[a]},r.sort=function(t,e){for(var r=0,n=0,a=1;a<t.length;a++){var i=e(t[a],t[a-1]);if(i<0?r=1:i>0&&(n=1),r&&n)return t.sort(e)}return n?t:t.reverse()},r.findIndexOfMin=function(t,e){e=e||i;for(var r,n=1/0,a=0;a<t.length;a++){var o=e(t[a]);o<n&&(n=o,r=a)}return r}},{\"./identity\":718,\"./loggers\":723,\"fast-isnumeric\":226}],739:[function(t,e,r){\"use strict\";e.exports=function(t,e){(t.attr(\"class\")||\"\").split(\" \").forEach(function(e){0===e.indexOf(\"cursor-\")&&t.classed(e,!1)}),e&&t.classed(\"cursor-\"+e,!0)}},{}],740:[function(t,e,r){\"use strict\";var n=t(\"../components/color\"),a=function(){};e.exports=function(t){for(var e in t)\"function\"==typeof t[e]&&(t[e]=a);t.destroy=function(){t.container.parentNode.removeChild(t.container)};var r=document.createElement(\"div\");r.className=\"no-webgl\",r.style.cursor=\"pointer\",r.style.fontSize=\"24px\",r.style.color=n.defaults[0],r.style.position=\"absolute\",r.style.left=r.style.top=\"0px\",r.style.width=r.style.height=\"100%\",r.style[\"background-color\"]=n.lightLine,r.style[\"z-index\"]=30;var i=document.createElement(\"p\");return i.textContent=\"WebGL is not supported by your browser - visit https://get.webgl.org for more info\",i.style.position=\"relative\",i.style.top=\"50%\",i.style.left=\"50%\",i.style.height=\"30%\",i.style.width=\"50%\",i.style.margin=\"-15% 0 0 -25%\",r.appendChild(i),t.container.appendChild(r),t.container.style.background=\"#FFFFFF\",t.container.onclick=function(){window.open(\"https://get.webgl.org\")},!1}},{\"../components/color\":594}],741:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"./array\").isArrayOrTypedArray;r.aggNums=function(t,e,i,o){var s,l;if((!o||o>i.length)&&(o=i.length),n(e)||(e=!1),a(i[0])){for(l=new Array(o),s=0;s<o;s++)l[s]=r.aggNums(t,e,i[s]);i=l}for(s=0;s<o;s++)n(e)?n(i[s])&&(e=t(+e,+i[s])):e=i[s];return e},r.len=function(t){return r.aggNums(function(t){return t+1},0,t)},r.mean=function(t,e){return e||(e=r.len(t)),r.aggNums(function(t,e){return t+e},0,t)/e},r.midRange=function(t){if(void 0!==t&&0!==t.length)return(r.aggNums(Math.max,null,t)+r.aggNums(Math.min,null,t))/2},r.variance=function(t,e,a){return e||(e=r.len(t)),n(a)||(a=r.mean(t,e)),r.aggNums(function(t,e){return t+Math.pow(e-a,2)},0,t)/e},r.stdev=function(t,e,n){return Math.sqrt(r.variance(t,e,n))},r.median=function(t){var e=t.slice().sort();return r.interp(e,.5)},r.interp=function(t,e){if(!n(e))throw\"n should be a finite number\";if((e=e*t.length-.5)<0)return t[0];if(e>t.length-1)return t[t.length-1];var r=e%1;return r*t[Math.ceil(e)]+(1-r)*t[Math.floor(e)]}},{\"./array\":702,\"fast-isnumeric\":226}],742:[function(t,e,r){\"use strict\";var n=t(\"color-normalize\");e.exports=function(t){return t?n(t):[0,0,0,1]}},{\"color-normalize\":121}],743:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../lib\"),i=t(\"../constants/xmlns_namespaces\"),o=t(\"../constants/alignment\").LINE_SPACING;function s(t,e){return t.node().getBoundingClientRect()[e]}var l=/([^$]*)([$]+[^$]*[$]+)([^$]*)/;r.convertToTspans=function(t,e,M){var S=t.text(),C=!t.attr(\"data-notex\")&&\"undefined\"!=typeof MathJax&&S.match(l),L=n.select(t.node().parentNode);if(!L.empty()){var P=t.attr(\"class\")?t.attr(\"class\").split(\" \")[0]:\"text\";return P+=\"-math\",L.selectAll(\"svg.\"+P).remove(),L.selectAll(\"g.\"+P+\"-group\").remove(),t.style(\"display\",null).attr({\"data-unformatted\":S,\"data-math\":\"N\"}),C?(e&&e._promises||[]).push(new Promise(function(e){t.style(\"display\",\"none\");var r=parseInt(t.node().style.fontSize,10),i={fontSize:r};!function(t,e,r){var i,o,s,l;MathJax.Hub.Queue(function(){return o=a.extendDeepAll({},MathJax.Hub.config),s=MathJax.Hub.processSectionDelay,void 0!==MathJax.Hub.processSectionDelay&&(MathJax.Hub.processSectionDelay=0),MathJax.Hub.Config({messageStyle:\"none\",tex2jax:{inlineMath:[[\"$\",\"$\"],[\"\\\\(\",\"\\\\)\"]]},displayAlign:\"left\"})},function(){if(\"SVG\"!==(i=MathJax.Hub.config.menuSettings.renderer))return MathJax.Hub.setRenderer(\"SVG\")},function(){var r=\"math-output-\"+a.randstr({},64);return l=n.select(\"body\").append(\"div\").attr({id:r}).style({visibility:\"hidden\",position:\"absolute\"}).style({\"font-size\":e.fontSize+\"px\"}).text(t.replace(c,\"\\\\lt \").replace(u,\"\\\\gt \")),MathJax.Hub.Typeset(l.node())},function(){var e=n.select(\"body\").select(\"#MathJax_SVG_glyphs\");if(l.select(\".MathJax_SVG\").empty()||!l.select(\"svg\").node())a.log(\"There was an error in the tex syntax.\",t),r();else{var o=l.select(\"svg\").node().getBoundingClientRect();r(l.select(\".MathJax_SVG\"),e,o)}if(l.remove(),\"SVG\"!==i)return MathJax.Hub.setRenderer(i)},function(){return void 0!==s&&(MathJax.Hub.processSectionDelay=s),MathJax.Hub.Config(o)})}(C[2],i,function(n,a,i){L.selectAll(\"svg.\"+P).remove(),L.selectAll(\"g.\"+P+\"-group\").remove();var o=n&&n.select(\"svg\");if(!o||!o.node())return O(),void e();var l=L.append(\"g\").classed(P+\"-group\",!0).attr({\"pointer-events\":\"none\",\"data-unformatted\":S,\"data-math\":\"Y\"});l.node().appendChild(o.node()),a&&a.node()&&o.node().insertBefore(a.node().cloneNode(!0),o.node().firstChild),o.attr({class:P,height:i.height,preserveAspectRatio:\"xMinYMin meet\"}).style({overflow:\"visible\",\"pointer-events\":\"none\"});var c=t.node().style.fill||\"black\",u=o.select(\"g\");u.attr({fill:c,stroke:c});var h=s(u,\"width\"),f=s(u,\"height\"),p=+t.attr(\"x\")-h*{start:0,middle:.5,end:1}[t.attr(\"text-anchor\")||\"start\"],d=-(r||s(t,\"height\"))/4;\"y\"===P[0]?(l.attr({transform:\"rotate(\"+[-90,+t.attr(\"x\"),+t.attr(\"y\")]+\") translate(\"+[-h/2,d-f/2]+\")\"}),o.attr({x:+t.attr(\"x\"),y:+t.attr(\"y\")})):\"l\"===P[0]?o.attr({x:t.attr(\"x\"),y:d-f/2}):\"a\"===P[0]&&0!==P.indexOf(\"atitle\")?o.attr({x:0,y:d}):o.attr({x:p,y:+t.attr(\"y\")+d-f/2}),M&&M.call(t,l),e(l)})})):O(),t}function O(){L.empty()||(P=t.attr(\"class\")+\"-math\",L.select(\"svg.\"+P).remove()),t.text(\"\").style(\"white-space\",\"pre\"),function(t,e){e=e.replace(v,\" \");var r,s=!1,l=[],c=-1;function u(){c++;var e=document.createElementNS(i.svg,\"tspan\");n.select(e).attr({class:\"line\",dy:c*o+\"em\"}),t.appendChild(e),r=e;var a=l;if(l=[{node:e}],a.length>1)for(var s=1;s<a.length;s++)M(a[s])}function M(t){var e,a=t.type,o={};if(\"a\"===a){e=\"a\";var s=t.target,c=t.href,u=t.popup;c&&(o={\"xlink:xlink:show\":\"_blank\"===s||\"_\"!==s.charAt(0)?\"new\":\"replace\",target:s,\"xlink:xlink:href\":c},u&&(o.onclick='window.open(this.href.baseVal,this.target.baseVal,\"'+u+'\");return false;'))}else e=\"tspan\";t.style&&(o.style=t.style);var h=document.createElementNS(i.svg,e);if(\"sup\"===a||\"sub\"===a){S(r,d),r.appendChild(h);var g=document.createElementNS(i.svg,\"tspan\");S(g,d),n.select(g).attr(\"dy\",p[a]),o.dy=f[a],r.appendChild(h),r.appendChild(g)}else r.appendChild(h);n.select(h).attr(o),r=t.node=h,l.push(t)}function S(t,e){t.appendChild(document.createTextNode(e))}function C(t){if(1!==l.length){var n=l.pop();t!==n.type&&a.log(\"Start tag <\"+n.type+\"> doesnt match end tag <\"+t+\">. Pretending it did match.\",e),r=l[l.length-1].node}else a.log(\"Ignoring unexpected end tag </\"+t+\">.\",e)}x.test(e)?u():(r=t,l=[{node:t}]);for(var L=e.split(m),P=0;P<L.length;P++){var O=L[P],I=O.match(y),z=I&&I[2].toLowerCase(),D=h[z];if(\"br\"===z)u();else if(void 0===D)S(r,E(O));else if(I[1])C(z);else{var R=I[4],F={type:z},B=T(R,b);if(B?(B=B.replace(A,\"$1 fill:\"),D&&(B+=\";\"+D)):D&&(B=D),B&&(F.style=B),\"a\"===z){s=!0;var N=T(R,_);if(N){var j=document.createElement(\"a\");j.href=N,-1!==g.indexOf(j.protocol)&&(F.href=encodeURI(decodeURI(N)),F.target=T(R,w)||\"_blank\",F.popup=T(R,k))}}M(F)}}return s}(t.node(),S)&&t.style(\"pointer-events\",\"all\"),r.positionText(t),M&&M.call(t)}};var c=/(<|&lt;|&#60;)/g,u=/(>|&gt;|&#62;)/g;var h={sup:\"font-size:70%\",sub:\"font-size:70%\",b:\"font-weight:bold\",i:\"font-style:italic\",a:\"cursor:pointer\",span:\"\",em:\"font-style:italic;font-weight:bold\"},f={sub:\"0.3em\",sup:\"-0.6em\"},p={sub:\"-0.21em\",sup:\"0.42em\"},d=\"\\u200b\",g=[\"http:\",\"https:\",\"mailto:\",\"\",void 0,\":\"],v=r.NEWLINES=/(\\r\\n?|\\n)/g,m=/(<[^<>]*>)/,y=/<(\\/?)([^ >]*)(\\s+(.*))?>/i,x=/<br(\\s+.*)?>/i;r.BR_TAG_ALL=/<br(\\s+.*)?>/gi;var b=/(^|[\\s\"'])style\\s*=\\s*(\"([^\"]*);?\"|'([^']*);?')/i,_=/(^|[\\s\"'])href\\s*=\\s*(\"([^\"]*)\"|'([^']*)')/i,w=/(^|[\\s\"'])target\\s*=\\s*(\"([^\"\\s]*)\"|'([^'\\s]*)')/i,k=/(^|[\\s\"'])popup\\s*=\\s*(\"([\\w=,]*)\"|'([\\w=,]*)')/i;function T(t,e){if(!t)return null;var r=t.match(e),n=r&&(r[3]||r[4]);return n&&E(n)}var A=/(^|;)\\s*color:/;r.plainText=function(t,e){for(var r=void 0!==(e=e||{}).len&&-1!==e.len?e.len:1/0,n=void 0!==e.allowedTags?e.allowedTags:[\"br\"],a=\"...\".length,i=t.split(m),o=[],s=\"\",l=0,c=0;c<i.length;c++){var u=i[c],h=u.match(y),f=h&&h[2].toLowerCase();if(f)-1!==n.indexOf(f)&&(o.push(u),s=f);else{var p=u.length;if(l+p<r)o.push(u),l+=p;else if(l<r){var d=r-l;s&&(\"br\"!==s||d<=a||p<=a)&&o.pop(),r>a?o.push(u.substr(0,d-a)+\"...\"):o.push(u.substr(0,d));break}s=\"\"}}return o.join(\"\")};var M={mu:\"\\u03bc\",amp:\"&\",lt:\"<\",gt:\">\",nbsp:\"\\xa0\",times:\"\\xd7\",plusmn:\"\\xb1\",deg:\"\\xb0\"},S=/&(#\\d+|#x[\\da-fA-F]+|[a-z]+);/g;function E(t){return t.replace(S,function(t,e){return(\"#\"===e.charAt(0)?function(t){if(t>1114111)return;var e=String.fromCodePoint;if(e)return e(t);var r=String.fromCharCode;return t<=65535?r(t):r(55232+(t>>10),t%1024+56320)}(\"x\"===e.charAt(1)?parseInt(e.substr(2),16):parseInt(e.substr(1),10)):M[e])||t})}function C(t,e,r){var n,a,i,o=r.horizontalAlign,s=r.verticalAlign||\"top\",l=t.node().getBoundingClientRect(),c=e.node().getBoundingClientRect();return a=\"bottom\"===s?function(){return l.bottom-n.height}:\"middle\"===s?function(){return l.top+(l.height-n.height)/2}:function(){return l.top},i=\"right\"===o?function(){return l.right-n.width}:\"center\"===o?function(){return l.left+(l.width-n.width)/2}:function(){return l.left},function(){return n=this.node().getBoundingClientRect(),this.style({top:a()-c.top+\"px\",left:i()-c.left+\"px\",\"z-index\":1e3}),this}}r.convertEntities=E,r.lineCount=function(t){return t.selectAll(\"tspan.line\").size()||1},r.positionText=function(t,e,r){return t.each(function(){var t=n.select(this);function a(e,r){return void 0===r?null===(r=t.attr(e))&&(t.attr(e,0),r=0):t.attr(e,r),r}var i=a(\"x\",e),o=a(\"y\",r);\"text\"===this.nodeName&&t.selectAll(\"tspan.line\").attr({x:i,y:o})})},r.makeEditable=function(t,e){var r=e.gd,a=e.delegate,i=n.dispatch(\"edit\",\"input\",\"cancel\"),o=a||t;if(t.style({\"pointer-events\":a?\"none\":\"all\"}),1!==t.size())throw new Error(\"boo\");function s(){!function(){var a=n.select(r).select(\".svg-container\"),o=a.append(\"div\"),s=t.node().style,c=parseFloat(s.fontSize||12),u=e.text;void 0===u&&(u=t.attr(\"data-unformatted\"));o.classed(\"plugin-editable editable\",!0).style({position:\"absolute\",\"font-family\":s.fontFamily||\"Arial\",\"font-size\":c,color:e.fill||s.fill||\"black\",opacity:1,\"background-color\":e.background||\"transparent\",outline:\"#ffffff33 1px solid\",margin:[-c/8+1,0,0,-1].join(\"px \")+\"px\",padding:\"0\",\"box-sizing\":\"border-box\"}).attr({contenteditable:!0}).text(u).call(C(t,a,e)).on(\"blur\",function(){r._editing=!1,t.text(this.textContent).style({opacity:1});var e,a=n.select(this).attr(\"class\");(e=a?\".\"+a.split(\" \")[0]+\"-math-group\":\"[class*=-math-group]\")&&n.select(t.node().parentNode).select(e).style({opacity:0});var o=this.textContent;n.select(this).transition().duration(0).remove(),n.select(document).on(\"mouseup\",null),i.edit.call(t,o)}).on(\"focus\",function(){var t=this;r._editing=!0,n.select(document).on(\"mouseup\",function(){if(n.event.target===t)return!1;document.activeElement===o.node()&&o.node().blur()})}).on(\"keyup\",function(){27===n.event.which?(r._editing=!1,t.style({opacity:1}),n.select(this).style({opacity:0}).on(\"blur\",function(){return!1}).transition().remove(),i.cancel.call(t,this.textContent)):(i.input.call(t,this.textContent),n.select(this).call(C(t,a,e)))}).on(\"keydown\",function(){13===n.event.which&&this.blur()}).call(l)}(),t.style({opacity:0});var a,s=o.attr(\"class\");(a=s?\".\"+s.split(\" \")[0]+\"-math-group\":\"[class*=-math-group]\")&&n.select(t.node().parentNode).select(a).style({opacity:0})}function l(t){var e=t.node(),r=document.createRange();r.selectNodeContents(e);var n=window.getSelection();n.removeAllRanges(),n.addRange(r),e.focus()}return e.immediate?s():o.on(\"click\",s),n.rebind(t,i,\"on\")}},{\"../constants/alignment\":688,\"../constants/xmlns_namespaces\":696,\"../lib\":719,d3:164}],744:[function(t,e,r){\"use strict\";var n={};function a(t){t&&null!==t.timer&&(clearTimeout(t.timer),t.timer=null)}r.throttle=function(t,e,r){var i=n[t],o=Date.now();if(!i){for(var s in n)n[s].ts<o-6e4&&delete n[s];i=n[t]={ts:0,timer:null}}function l(){r(),i.ts=Date.now(),i.onDone&&(i.onDone(),i.onDone=null)}a(i),o>i.ts+e?l():i.timer=setTimeout(function(){l(),i.timer=null},e)},r.done=function(t){var e=n[t];return e&&e.timer?new Promise(function(t){var r=e.onDone;e.onDone=function(){r&&r(),t(),e.onDone=null}}):Promise.resolve()},r.clear=function(t){if(t)a(n[t]),delete n[t];else for(var e in n)r.clear(e)}},{}],745:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\");e.exports=function(t,e){if(t>0)return Math.log(t)/Math.LN10;var r=Math.log(Math.min(e[0],e[1]))/Math.LN10;return n(r)||(r=Math.log(Math.max(e[0],e[1]))/Math.LN10-6),r}},{\"fast-isnumeric\":226}],746:[function(t,e,r){\"use strict\";var n=e.exports={},a=t(\"../plots/geo/constants\").locationmodeToLayer,i=t(\"topojson-client\").feature;n.getTopojsonName=function(t){return[t.scope.replace(/ /g,\"-\"),\"_\",t.resolution.toString(),\"m\"].join(\"\")},n.getTopojsonPath=function(t,e){return t+e+\".json\"},n.getTopojsonFeatures=function(t,e){var r=a[t.locationmode],n=e.objects[r];return i(e,n).features}},{\"../plots/geo/constants\":795,\"topojson-client\":541}],747:[function(t,e,r){\"use strict\";e.exports={moduleType:\"locale\",name:\"en-US\",dictionary:{\"Click to enter Colorscale title\":\"Click to enter Colorscale title\"},format:{date:\"%m/%d/%Y\"}}},{}],748:[function(t,e,r){\"use strict\";e.exports={moduleType:\"locale\",name:\"en\",dictionary:{\"Click to enter Colorscale title\":\"Click to enter Colourscale title\"},format:{days:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],shortDays:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],months:[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],shortMonths:[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],periods:[\"AM\",\"PM\"],dateTime:\"%a %b %e %X %Y\",date:\"%d/%m/%Y\",time:\"%H:%M:%S\",decimal:\".\",thousands:\",\",grouping:[3],currency:[\"$\",\"\"],year:\"%Y\",month:\"%b %Y\",dayMonth:\"%b %-d\",dayMonthYear:\"%b %-d, %Y\"}}},{}],749:[function(t,e,r){\"use strict\";var n=t(\"../registry\");e.exports=function(t){for(var e,r,a=n.layoutArrayContainers,i=n.layoutArrayRegexes,o=t.split(\"[\")[0],s=0;s<i.length;s++)if((r=t.match(i[s]))&&0===r.index){e=r[0];break}if(e||(e=a[a.indexOf(o)]),!e)return!1;var l=t.substr(e.length);return l?!!(r=l.match(/^\\[(0|[1-9][0-9]*)\\](\\.(.+))?$/))&&{array:e,index:Number(r[1]),property:r[3]||\"\"}:{array:e,index:\"\",property:\"\"}}},{\"../registry\":848}],750:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),a=n.extendFlat,i=n.isPlainObject,o={valType:\"flaglist\",extras:[\"none\"],flags:[\"calc\",\"clearAxisTypes\",\"plot\",\"style\",\"markerSize\",\"colorbars\"]},s={valType:\"flaglist\",extras:[\"none\"],flags:[\"calc\",\"plot\",\"legend\",\"ticks\",\"axrange\",\"layoutstyle\",\"modebar\",\"camera\",\"arraydraw\",\"colorbars\"]},l=o.flags.slice().concat([\"fullReplot\"]),c=s.flags.slice().concat(\"layoutReplot\");function u(t){for(var e={},r=0;r<t.length;r++)e[t[r]]=!1;return e}function h(t,e,r){var n=a({},t);for(var o in n){var s=n[o];i(s)&&(n[o]=f(s,e,r,o))}return\"from-root\"===r&&(n.editType=e),n}function f(t,e,r,n){if(t.valType){var i=a({},t);if(i.editType=e,Array.isArray(t.items)){i.items=new Array(t.items.length);for(var o=0;o<t.items.length;o++)i.items[o]=f(t.items[o],e,\"from-root\")}return i}return h(t,e,\"_\"===n.charAt(0)?\"nested\":\"from-root\")}e.exports={traces:o,layout:s,traceFlags:function(){return u(l)},layoutFlags:function(){return u(c)},update:function(t,e){var r=e.editType;if(r&&\"none\"!==r)for(var n=r.split(\"+\"),a=0;a<n.length;a++)t[n[a]]=!0},overrideAll:h}},{\"../lib\":719}],751:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"gl-mat4/fromQuat\"),i=t(\"../registry\"),o=t(\"../lib\"),s=t(\"../plots/plots\"),l=t(\"../plots/cartesian/axis_ids\"),c=t(\"../components/color\"),u=l.cleanId,h=l.getFromTrace,f=i.traceIs;function p(t,e){var r=t[e],n=e.charAt(0);r&&\"paper\"!==r&&(t[e]=u(r,n))}function d(t){function e(e,r){var n=t[e],a=t.title&&t.title[r];n&&!a&&(t.title||(t.title={}),t.title[r]=t[e],delete t[e])}t&&(\"string\"!=typeof t.title&&\"number\"!=typeof t.title||(t.title={text:t.title}),e(\"titlefont\",\"font\"),e(\"titleposition\",\"position\"),e(\"titleside\",\"side\"),e(\"titleoffset\",\"offset\"))}function g(t){if(!o.isPlainObject(t))return!1;var e=t.name;return delete t.name,delete t.showlegend,(\"string\"==typeof e||\"number\"==typeof e)&&String(e)}function v(t,e,r,n){if(r&&!n)return t;if(n&&!r)return e;if(!t.trim())return e;if(!e.trim())return t;var a,i=Math.min(t.length,e.length);for(a=0;a<i&&t.charAt(a)===e.charAt(a);a++);return t.substr(0,a).trim()}function m(t){var e=\"middle\",r=\"center\";return\"string\"==typeof t&&(-1!==t.indexOf(\"top\")?e=\"top\":-1!==t.indexOf(\"bottom\")&&(e=\"bottom\"),-1!==t.indexOf(\"left\")?r=\"left\":-1!==t.indexOf(\"right\")&&(r=\"right\")),e+\" \"+r}function y(t,e){return e in t&&\"object\"==typeof t[e]&&0===Object.keys(t[e]).length}r.clearPromiseQueue=function(t){Array.isArray(t._promises)&&t._promises.length>0&&o.log(\"Clearing previous rejected promises from queue.\"),t._promises=[]},r.cleanLayout=function(t){var e,n;t||(t={}),t.xaxis1&&(t.xaxis||(t.xaxis=t.xaxis1),delete t.xaxis1),t.yaxis1&&(t.yaxis||(t.yaxis=t.yaxis1),delete t.yaxis1),t.scene1&&(t.scene||(t.scene=t.scene1),delete t.scene1);var i=(s.subplotsRegistry.cartesian||{}).attrRegex,l=(s.subplotsRegistry.polar||{}).attrRegex,h=(s.subplotsRegistry.ternary||{}).attrRegex,f=(s.subplotsRegistry.gl3d||{}).attrRegex,g=Object.keys(t);for(e=0;e<g.length;e++){var v=g[e];if(i&&i.test(v)){var m=t[v];m.anchor&&\"free\"!==m.anchor&&(m.anchor=u(m.anchor)),m.overlaying&&(m.overlaying=u(m.overlaying)),m.type||(m.isdate?m.type=\"date\":m.islog?m.type=\"log\":!1===m.isdate&&!1===m.islog&&(m.type=\"linear\")),\"withzero\"!==m.autorange&&\"tozero\"!==m.autorange||(m.autorange=!0,m.rangemode=\"tozero\"),delete m.islog,delete m.isdate,delete m.categories,y(m,\"domain\")&&delete m.domain,void 0!==m.autotick&&(void 0===m.tickmode&&(m.tickmode=m.autotick?\"auto\":\"linear\"),delete m.autotick),d(m)}else if(l&&l.test(v)){d(t[v].radialaxis)}else if(h&&h.test(v)){var x=t[v];d(x.aaxis),d(x.baxis),d(x.caxis)}else if(f&&f.test(v)){var b=t[v],_=b.cameraposition;if(Array.isArray(_)&&4===_[0].length){var w=_[0],k=_[1],T=_[2],A=a([],w),M=[];for(n=0;n<3;++n)M[n]=k[n]+T*A[2+4*n];b.camera={eye:{x:M[0],y:M[1],z:M[2]},center:{x:k[0],y:k[1],z:k[2]},up:{x:0,y:0,z:1}},delete b.cameraposition}d(b.xaxis),d(b.yaxis),d(b.zaxis)}}var S=Array.isArray(t.annotations)?t.annotations.length:0;for(e=0;e<S;e++){var E=t.annotations[e];o.isPlainObject(E)&&(E.ref&&(\"paper\"===E.ref?(E.xref=\"paper\",E.yref=\"paper\"):\"data\"===E.ref&&(E.xref=\"x\",E.yref=\"y\"),delete E.ref),p(E,\"xref\"),p(E,\"yref\"))}var C=Array.isArray(t.shapes)?t.shapes.length:0;for(e=0;e<C;e++){var L=t.shapes[e];o.isPlainObject(L)&&(p(L,\"xref\"),p(L,\"yref\"))}var P=t.legend;return P&&(P.x>3?(P.x=1.02,P.xanchor=\"left\"):P.x<-2&&(P.x=-.02,P.xanchor=\"right\"),P.y>3?(P.y=1.02,P.yanchor=\"bottom\"):P.y<-2&&(P.y=-.02,P.yanchor=\"top\")),d(t),\"rotate\"===t.dragmode&&(t.dragmode=\"orbit\"),c.clean(t),t.template&&t.template.layout&&r.cleanLayout(t.template.layout),t},r.cleanData=function(t){for(var e=0;e<t.length;e++){var n,a=t[e];if(\"histogramy\"===a.type&&\"xbins\"in a&&!(\"ybins\"in a)&&(a.ybins=a.xbins,delete a.xbins),a.error_y&&\"opacity\"in a.error_y){var l=c.defaults,h=a.error_y.color||(f(a,\"bar\")?c.defaultLine:l[e%l.length]);a.error_y.color=c.addOpacity(c.rgb(h),c.opacity(h)*a.error_y.opacity),delete a.error_y.opacity}if(\"bardir\"in a&&(\"h\"!==a.bardir||!f(a,\"bar\")&&\"histogram\"!==a.type.substr(0,9)||(a.orientation=\"h\",r.swapXYData(a)),delete a.bardir),\"histogramy\"===a.type&&r.swapXYData(a),\"histogramx\"!==a.type&&\"histogramy\"!==a.type||(a.type=\"histogram\"),\"scl\"in a&&!(\"colorscale\"in a)&&(a.colorscale=a.scl,delete a.scl),\"reversescl\"in a&&!(\"reversescale\"in a)&&(a.reversescale=a.reversescl,delete a.reversescl),a.xaxis&&(a.xaxis=u(a.xaxis,\"x\")),a.yaxis&&(a.yaxis=u(a.yaxis,\"y\")),f(a,\"gl3d\")&&a.scene&&(a.scene=s.subplotsRegistry.gl3d.cleanId(a.scene)),!f(a,\"pie-like\")&&!f(a,\"bar-like\"))if(Array.isArray(a.textposition))for(n=0;n<a.textposition.length;n++)a.textposition[n]=m(a.textposition[n]);else a.textposition&&(a.textposition=m(a.textposition));var p=i.getModule(a);if(p&&p.colorbar){var x=p.colorbar.container,b=x?a[x]:a;b&&b.colorscale&&(\"YIGnBu\"===b.colorscale&&(b.colorscale=\"YlGnBu\"),\"YIOrRd\"===b.colorscale&&(b.colorscale=\"YlOrRd\"))}if(\"surface\"===a.type&&o.isPlainObject(a.contours)){var _=[\"x\",\"y\",\"z\"];for(n=0;n<_.length;n++){var w=a.contours[_[n]];o.isPlainObject(w)&&(w.highlightColor&&(w.highlightcolor=w.highlightColor,delete w.highlightColor),w.highlightWidth&&(w.highlightwidth=w.highlightWidth,delete w.highlightWidth))}}if(\"candlestick\"===a.type||\"ohlc\"===a.type){var k=!1!==(a.increasing||{}).showlegend,T=!1!==(a.decreasing||{}).showlegend,A=g(a.increasing),M=g(a.decreasing);if(!1!==A&&!1!==M){var S=v(A,M,k,T);S&&(a.name=S)}else!A&&!M||a.name||(a.name=A||M)}if(Array.isArray(a.transforms)){var E=a.transforms;for(n=0;n<E.length;n++){var C=E[n];if(o.isPlainObject(C))switch(C.type){case\"filter\":C.filtersrc&&(C.target=C.filtersrc,delete C.filtersrc),C.calendar&&(C.valuecalendar||(C.valuecalendar=C.calendar),delete C.calendar);break;case\"groupby\":if(C.styles=C.styles||C.style,C.styles&&!Array.isArray(C.styles)){var L=C.styles,P=Object.keys(L);C.styles=[];for(var O=0;O<P.length;O++)C.styles.push({target:P[O],value:L[P[O]]})}}}}y(a,\"line\")&&delete a.line,\"marker\"in a&&(y(a.marker,\"line\")&&delete a.marker.line,y(a,\"marker\")&&delete a.marker),c.clean(a),a.autobinx&&(delete a.autobinx,delete a.xbins),a.autobiny&&(delete a.autobiny,delete a.ybins),d(a),a.colorbar&&d(a.colorbar),a.marker&&a.marker.colorbar&&d(a.marker.colorbar),a.line&&a.line.colorbar&&d(a.line.colorbar),a.aaxis&&d(a.aaxis),a.baxis&&d(a.baxis)}},r.swapXYData=function(t){var e;if(o.swapAttrs(t,[\"?\",\"?0\",\"d?\",\"?bins\",\"nbins?\",\"autobin?\",\"?src\",\"error_?\"]),Array.isArray(t.z)&&Array.isArray(t.z[0])&&(t.transpose?delete t.transpose:t.transpose=!0),t.error_x&&t.error_y){var r=t.error_y,n=\"copy_ystyle\"in r?r.copy_ystyle:!(r.color||r.thickness||r.width);o.swapAttrs(t,[\"error_?.copy_ystyle\"]),n&&o.swapAttrs(t,[\"error_?.color\",\"error_?.thickness\",\"error_?.width\"])}if(\"string\"==typeof t.hoverinfo){var a=t.hoverinfo.split(\"+\");for(e=0;e<a.length;e++)\"x\"===a[e]?a[e]=\"y\":\"y\"===a[e]&&(a[e]=\"x\");t.hoverinfo=a.join(\"+\")}},r.coerceTraceIndices=function(t,e){if(n(e))return[e];if(!Array.isArray(e)||!e.length)return t.data.map(function(t,e){return e});if(Array.isArray(e)){for(var r=[],a=0;a<e.length;a++)o.isIndex(e[a],t.data.length)?r.push(e[a]):o.warn(\"trace index (\",e[a],\") is not a number or is out of bounds\");return r}return e},r.manageArrayContainers=function(t,e,r){var a=t.obj,i=t.parts,s=i.length,l=i[s-1],c=n(l);if(c&&null===e){var u=i.slice(0,s-1).join(\".\");o.nestedProperty(a,u).get().splice(l,1)}else c&&void 0===t.get()?(void 0===t.get()&&(r[t.astr]=null),t.set(e)):t.set(e)};var x=/(\\.[^\\[\\]\\.]+|\\[[^\\[\\]\\.]+\\])$/;function b(t){var e=t.search(x);if(e>0)return t.substr(0,e)}r.hasParent=function(t,e){for(var r=b(e);r;){if(r in t)return!0;r=b(r)}return!1};var _=[\"x\",\"y\",\"z\"];r.clearAxisTypes=function(t,e,r){for(var n=0;n<e.length;n++)for(var a=t._fullData[n],i=0;i<3;i++){var s=h(t,a,_[i]);if(s&&\"log\"!==s.type){var l=s._name,c=s._id.substr(1);if(\"scene\"===c.substr(0,5)){if(void 0!==r[c])continue;l=c+\".\"+l}var u=l+\".type\";void 0===r[l]&&void 0===r[u]&&o.nestedProperty(t.layout,u).set(null)}}}},{\"../components/color\":594,\"../lib\":719,\"../plots/cartesian/axis_ids\":770,\"../plots/plots\":828,\"../registry\":848,\"fast-isnumeric\":226,\"gl-mat4/fromQuat\":263}],752:[function(t,e,r){\"use strict\";var n=t(\"./plot_api\");r.plot=n.plot,r.newPlot=n.newPlot,r.restyle=n.restyle,r.relayout=n.relayout,r.redraw=n.redraw,r.update=n.update,r._guiRestyle=n._guiRestyle,r._guiRelayout=n._guiRelayout,r._guiUpdate=n._guiUpdate,r._storeDirectGUIEdit=n._storeDirectGUIEdit,r.react=n.react,r.extendTraces=n.extendTraces,r.prependTraces=n.prependTraces,r.addTraces=n.addTraces,r.deleteTraces=n.deleteTraces,r.moveTraces=n.moveTraces,r.purge=n.purge,r.addFrames=n.addFrames,r.deleteFrames=n.deleteFrames,r.animate=n.animate,r.setPlotConfig=n.setPlotConfig,r.toImage=t(\"./to_image\"),r.validate=t(\"./validate\"),r.downloadImage=t(\"../snapshot/download\");var a=t(\"./template_api\");r.makeTemplate=a.makeTemplate,r.validateTemplate=a.validateTemplate},{\"../snapshot/download\":850,\"./plot_api\":754,\"./template_api\":759,\"./to_image\":760,\"./validate\":761}],753:[function(t,e,r){\"use strict\";var n=t(\"../lib/is_plain_object\"),a=t(\"../lib/noop\"),i=t(\"../lib/loggers\"),o=t(\"../lib/search\").sorterAsc,s=t(\"../registry\");r.containerArrayMatch=t(\"./container_array_match\");var l=r.isAddVal=function(t){return\"add\"===t||n(t)},c=r.isRemoveVal=function(t){return null===t||\"remove\"===t};r.applyContainerArrayChanges=function(t,e,r,n,u){var h=e.astr,f=s.getComponentMethod(h,\"supplyLayoutDefaults\"),p=s.getComponentMethod(h,\"draw\"),d=s.getComponentMethod(h,\"drawOne\"),g=n.replot||n.recalc||f===a||p===a,v=t.layout,m=t._fullLayout;if(r[\"\"]){Object.keys(r).length>1&&i.warn(\"Full array edits are incompatible with other edits\",h);var y=r[\"\"][\"\"];if(c(y))e.set(null);else{if(!Array.isArray(y))return i.warn(\"Unrecognized full array edit value\",h,y),!0;e.set(y)}return!g&&(f(v,m),p(t),!0)}var x,b,_,w,k,T,A,M,S=Object.keys(r).map(Number).sort(o),E=e.get(),C=E||[],L=u(m,h).get(),P=[],O=-1,I=C.length;for(x=0;x<S.length;x++)if(w=r[_=S[x]],k=Object.keys(w),T=w[\"\"],A=l(T),_<0||_>C.length-(A?0:1))i.warn(\"index out of range\",h,_);else if(void 0!==T)k.length>1&&i.warn(\"Insertion & removal are incompatible with edits to the same index.\",h,_),c(T)?P.push(_):A?(\"add\"===T&&(T={}),C.splice(_,0,T),L&&L.splice(_,0,{})):i.warn(\"Unrecognized full object edit value\",h,_,T),-1===O&&(O=_);else for(b=0;b<k.length;b++)M=h+\"[\"+_+\"].\",u(C[_],k[b],M).set(w[k[b]]);for(x=P.length-1;x>=0;x--)C.splice(P[x],1),L&&L.splice(P[x],1);if(C.length?E||e.set(C):e.set(null),g)return!1;if(f(v,m),d!==a){var z;if(-1===O)z=S;else{for(I=Math.max(C.length,I),z=[],x=0;x<S.length&&!((_=S[x])>=O);x++)z.push(_);for(x=O;x<I;x++)z.push(x)}for(x=0;x<z.length;x++)d(t,z[x])}else p(t);return!0}},{\"../lib/is_plain_object\":720,\"../lib/loggers\":723,\"../lib/noop\":728,\"../lib/search\":738,\"../registry\":848,\"./container_array_match\":749}],754:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"fast-isnumeric\"),i=t(\"has-hover\"),o=t(\"../lib\"),s=o.nestedProperty,l=t(\"../lib/events\"),c=t(\"../lib/queue\"),u=t(\"../registry\"),h=t(\"./plot_schema\"),f=t(\"../plots/plots\"),p=t(\"../plots/polar/legacy\"),d=t(\"../plots/cartesian/axes\"),g=t(\"../components/drawing\"),v=t(\"../components/color\"),m=t(\"../plots/cartesian/graph_interact\").initInteractions,y=t(\"../constants/xmlns_namespaces\"),x=t(\"../lib/svg_text_utils\"),b=t(\"../plots/cartesian/select\").clearSelect,_=t(\"./plot_config\").dfltConfig,w=t(\"./manage_arrays\"),k=t(\"./helpers\"),T=t(\"./subroutines\"),A=t(\"./edit_types\"),M=t(\"../plots/cartesian/constants\").AX_NAME_PATTERN,S=0,E=5;function C(t){var e=t._fullLayout;e._redrawFromAutoMarginCount?e._redrawFromAutoMarginCount--:t.emit(\"plotly_afterplot\")}function L(t,e){try{t._fullLayout._paper.style(\"background\",e)}catch(t){o.error(t)}}function P(t,e){L(t,v.combine(e,\"white\"))}function O(t,e){if(!t._context){t._context=o.extendDeep({},_);var r=n.select(\"base\");t._context._baseUrl=r.size()&&r.attr(\"href\")?window.location.href.split(\"#\")[0]:\"\"}var a,s,l,c=t._context;if(e){for(s=Object.keys(e),a=0;a<s.length;a++)\"editable\"!==(l=s[a])&&\"edits\"!==l&&l in c&&(\"setBackground\"===l&&\"opaque\"===e[l]?c[l]=P:c[l]=e[l]);e.plot3dPixelRatio&&!c.plotGlPixelRatio&&(c.plotGlPixelRatio=c.plot3dPixelRatio);var u=e.editable;if(void 0!==u)for(c.editable=u,s=Object.keys(c.edits),a=0;a<s.length;a++)c.edits[s[a]]=u;if(e.edits)for(s=Object.keys(e.edits),a=0;a<s.length;a++)(l=s[a])in c.edits&&(c.edits[l]=e.edits[l]);c._exportedPlot=e._exportedPlot}c.staticPlot&&(c.editable=!1,c.edits={},c.autosizable=!1,c.scrollZoom=!1,c.doubleClick=!1,c.showTips=!1,c.showLink=!1,c.displayModeBar=!1),\"hover\"!==c.displayModeBar||i||(c.displayModeBar=!0),\"transparent\"!==c.setBackground&&\"function\"==typeof c.setBackground||(c.setBackground=L),c._hasZeroHeight=c._hasZeroHeight||0===t.clientHeight,c._hasZeroWidth=c._hasZeroWidth||0===t.clientWidth;var h=c.scrollZoom,f=c._scrollZoom={};if(!0===h)f.cartesian=1,f.gl3d=1,f.geo=1,f.mapbox=1;else if(\"string\"==typeof h){var p=h.split(\"+\");for(a=0;a<p.length;a++)f[p[a]]=1}else!1!==h&&(f.gl3d=1,f.geo=1,f.mapbox=1)}function I(t,e){var r,n,a=e+1,i=[];for(r=0;r<t.length;r++)(n=t[r])<0?i.push(a+n):i.push(n);return i}function z(t,e,r){var n,a;for(n=0;n<e.length;n++){if((a=e[n])!==parseInt(a,10))throw new Error(\"all values in \"+r+\" must be integers\");if(a>=t.data.length||a<-t.data.length)throw new Error(r+\" must be valid indices for gd.data.\");if(e.indexOf(a,n+1)>-1||a>=0&&e.indexOf(-t.data.length+a)>-1||a<0&&e.indexOf(t.data.length+a)>-1)throw new Error(\"each index in \"+r+\" must be unique.\")}}function D(t,e,r){if(!Array.isArray(t.data))throw new Error(\"gd.data must be an array.\");if(\"undefined\"==typeof e)throw new Error(\"currentIndices is a required argument.\");if(Array.isArray(e)||(e=[e]),z(t,e,\"currentIndices\"),\"undefined\"==typeof r||Array.isArray(r)||(r=[r]),\"undefined\"!=typeof r&&z(t,r,\"newIndices\"),\"undefined\"!=typeof r&&e.length!==r.length)throw new Error(\"current and new indices must be of equal length.\")}function R(t,e,r,n,i){!function(t,e,r,n){var a=o.isPlainObject(n);if(!Array.isArray(t.data))throw new Error(\"gd.data must be an array\");if(!o.isPlainObject(e))throw new Error(\"update must be a key:value object\");if(\"undefined\"==typeof r)throw new Error(\"indices must be an integer or array of integers\");for(var i in z(t,r,\"indices\"),e){if(!Array.isArray(e[i])||e[i].length!==r.length)throw new Error(\"attribute \"+i+\" must be an array of length equal to indices array length\");if(a&&(!(i in n)||!Array.isArray(n[i])||n[i].length!==e[i].length))throw new Error(\"when maxPoints is set as a key:value object it must contain a 1:1 corrispondence with the keys and number of traces in the update object\")}}(t,e,r,n);for(var l=function(t,e,r,n){var i,l,c,u,h,f=o.isPlainObject(n),p=[];for(var d in Array.isArray(r)||(r=[r]),r=I(r,t.data.length-1),e)for(var g=0;g<r.length;g++){if(i=t.data[r[g]],l=(c=s(i,d)).get(),u=e[d][g],!o.isArrayOrTypedArray(u))throw new Error(\"attribute: \"+d+\" index: \"+g+\" must be an array\");if(!o.isArrayOrTypedArray(l))throw new Error(\"cannot extend missing or non-array attribute: \"+d);if(l.constructor!==u.constructor)throw new Error(\"cannot extend array with an array of a different type: \"+d);h=f?n[d][g]:n,a(h)||(h=-1),p.push({prop:c,target:l,insert:u,maxp:Math.floor(h)})}return p}(t,e,r,n),c={},u={},h=0;h<l.length;h++){var f=l[h].prop,p=l[h].maxp,d=i(l[h].target,l[h].insert,p);f.set(d[0]),Array.isArray(c[f.astr])||(c[f.astr]=[]),c[f.astr].push(d[1]),Array.isArray(u[f.astr])||(u[f.astr]=[]),u[f.astr].push(l[h].target.length)}return{update:c,maxPoints:u}}function F(t,e){var r=new t.constructor(t.length+e.length);return r.set(t),r.set(e,t.length),r}function B(t,e,n,a){t=o.getGraphDiv(t),k.clearPromiseQueue(t);var i={};if(\"string\"==typeof e)i[e]=n;else{if(!o.isPlainObject(e))return o.warn(\"Restyle fail.\",e,n,a),Promise.reject();i=o.extendFlat({},e),void 0===a&&(a=n)}Object.keys(i).length&&(t.changed=!0);var s=k.coerceTraceIndices(t,a),l=U(t,i,s),u=l.flags;u.calc&&(t.calcdata=void 0),u.clearAxisTypes&&k.clearAxisTypes(t,s,{});var h=[];u.fullReplot?h.push(r.plot):(h.push(f.previousPromises),f.supplyDefaults(t),u.markerSize&&(f.doCalcdata(t),Y(h)),u.style&&h.push(T.doTraceStyle),u.colorbars&&h.push(T.doColorBars),h.push(C)),h.push(f.rehover,f.redrag),c.add(t,B,[t,l.undoit,l.traces],B,[t,l.redoit,l.traces]);var p=o.syncOrAsync(h,t);return p&&p.then||(p=Promise.resolve()),p.then(function(){return t.emit(\"plotly_restyle\",l.eventData),t})}function N(t){return void 0===t?null:t}function j(t,e){return e?function(e,r,n){var a=s(e,r),i=a.set;return a.set=function(e){V((n||\"\")+r,a.get(),e,t),i(e)},a}:s}function V(t,e,r,n){if(Array.isArray(e)||Array.isArray(r))for(var a=Array.isArray(e)?e:[],i=Array.isArray(r)?r:[],s=Math.max(a.length,i.length),l=0;l<s;l++)V(t+\"[\"+l+\"]\",a[l],i[l],n);else if(o.isPlainObject(e)||o.isPlainObject(r)){var c=o.isPlainObject(e)?e:{},u=o.isPlainObject(r)?r:{},h=o.extendFlat({},c,u);for(var f in h)V(t+\".\"+f,c[f],u[f],n)}else void 0===n[t]&&(n[t]=N(e))}function U(t,e,r){var n,a=t._fullLayout,i=t._fullData,l=t.data,c=a._guiEditing,p=j(a._preGUI,c),g=o.extendDeepAll({},e);q(e);var v,m=A.traceFlags(),y={},x={};function b(){return r.map(function(){})}function _(t){var e=d.id2name(t);-1===v.indexOf(e)&&v.push(e)}function w(t){return\"LAYOUT\"+t+\".autorange\"}function T(t){return\"LAYOUT\"+t+\".range\"}function M(t){for(var e=t;e<i.length;e++)if(i[e]._input===l[t])return i[e]}function S(n,i,o){if(Array.isArray(n))n.forEach(function(t){S(t,i,o)});else if(!(n in e||k.hasParent(e,n))){var s;if(\"LAYOUT\"===n.substr(0,6))s=p(t.layout,n.replace(\"LAYOUT\",\"\"));else{var u=r[o];s=j(a._tracePreGUI[M(u)._fullInput.uid],c)(l[u],n)}n in x||(x[n]=b()),void 0===x[n][o]&&(x[n][o]=N(s.get())),void 0!==i&&s.set(i)}}function E(t){return function(e){return i[e][t]}}function C(t){return function(e,n){return!1===e?i[r[n]][t]:null}}for(var L in e){if(k.hasParent(e,L))throw new Error(\"cannot set \"+L+\" and a parent attribute simultaneously\");var P,O,I,z,D,R,F=e[L];if(\"autobinx\"!==L&&\"autobiny\"!==L||(L=L.charAt(L.length-1)+\"bins\",F=Array.isArray(F)?F.map(C(L)):!1===F?r.map(E(L)):null),y[L]=F,\"LAYOUT\"!==L.substr(0,6)){for(x[L]=b(),n=0;n<r.length;n++){if(P=l[r[n]],O=M(r[n]),z=(I=j(a._tracePreGUI[O._fullInput.uid],c)(P,L)).get(),void 0!==(D=Array.isArray(F)?F[n%F.length]:F)){var B=I.parts[I.parts.length-1],V=L.substr(0,L.length-B.length-1),U=V?V+\".\":\"\",H=V?s(O,V).get():O;if((R=h.getTraceValObject(O,I.parts))&&R.impliedEdits&&null!==D)for(var G in R.impliedEdits)S(o.relativeAttr(L,G),R.impliedEdits[G],n);else if(\"thicknessmode\"!==B&&\"lenmode\"!==B||z===D||\"fraction\"!==D&&\"pixels\"!==D||!H){if(\"type\"===L&&(\"pie\"===D!=(\"pie\"===z)||\"funnelarea\"===D!=(\"funnelarea\"===z))){var Y=\"x\",W=\"y\";\"bar\"!==D&&\"bar\"!==z||\"h\"!==P.orientation||(Y=\"y\",W=\"x\"),o.swapAttrs(P,[\"?\",\"?src\"],\"labels\",Y),o.swapAttrs(P,[\"d?\",\"?0\"],\"label\",Y),o.swapAttrs(P,[\"?\",\"?src\"],\"values\",W),\"pie\"===z||\"funnelarea\"===z?(s(P,\"marker.color\").set(s(P,\"marker.colors\").get()),a._pielayer.selectAll(\"g.trace\").remove()):u.traceIs(P,\"cartesian\")&&s(P,\"marker.colors\").set(s(P,\"marker.color\").get())}}else{var X=a._size,Z=H.orient,J=\"top\"===Z||\"bottom\"===Z;if(\"thicknessmode\"===B){var K=J?X.h:X.w;S(U+\"thickness\",H.thickness*(\"fraction\"===D?1/K:K),n)}else{var Q=J?X.w:X.h;S(U+\"len\",H.len*(\"fraction\"===D?1/Q:Q),n)}}x[L][n]=N(z);if(-1!==[\"swapxy\",\"swapxyaxes\",\"orientation\",\"orientationaxes\"].indexOf(L)){if(\"orientation\"===L){I.set(D);var $=P.x&&!P.y?\"h\":\"v\";if((I.get()||$)===O.orientation)continue}else\"orientationaxes\"===L&&(P.orientation={v:\"h\",h:\"v\"}[O.orientation]);k.swapXYData(P),m.calc=m.clearAxisTypes=!0}else-1!==f.dataArrayContainers.indexOf(I.parts[0])?(k.manageArrayContainers(I,D,x),m.calc=!0):(R?R.arrayOk&&!u.traceIs(O,\"regl\")&&(o.isArrayOrTypedArray(D)||o.isArrayOrTypedArray(z))?m.calc=!0:A.update(m,R):m.calc=!0,I.set(D))}}if(-1!==[\"swapxyaxes\",\"orientationaxes\"].indexOf(L)&&d.swap(t,r),\"orientationaxes\"===L){var tt=s(t.layout,\"hovermode\");\"x\"===tt.get()?tt.set(\"y\"):\"y\"===tt.get()&&tt.set(\"x\")}if(-1!==[\"orientation\",\"type\"].indexOf(L)){for(v=[],n=0;n<r.length;n++){var et=l[r[n]];u.traceIs(et,\"cartesian\")&&(_(et.xaxis||\"x\"),_(et.yaxis||\"y\"))}S(v.map(w),!0,0),S(v.map(T),[0,1],0)}}else I=p(t.layout,L.replace(\"LAYOUT\",\"\")),x[L]=[N(I.get())],I.set(Array.isArray(F)?F[0]:F),m.calc=!0}return(m.calc||m.plot)&&(m.fullReplot=!0),{flags:m,undoit:x,redoit:y,traces:r,eventData:o.extendDeepNoArrays([],[g,r])}}function q(t){var e,r,n,a=o.counterRegex(\"axis\",\".title\",!1,!1),i=/colorbar\\.title$/,s=Object.keys(t);for(e=0;e<s.length;e++)r=s[e],n=t[r],\"title\"!==r&&!a.test(r)&&!i.test(r)||\"string\"!=typeof n&&\"number\"!=typeof n?r.indexOf(\"titlefont\")>-1?l(r,r.replace(\"titlefont\",\"title.font\")):r.indexOf(\"titleposition\")>-1?l(r,r.replace(\"titleposition\",\"title.position\")):r.indexOf(\"titleside\")>-1?l(r,r.replace(\"titleside\",\"title.side\")):r.indexOf(\"titleoffset\")>-1&&l(r,r.replace(\"titleoffset\",\"title.offset\")):l(r,r.replace(\"title\",\"title.text\"));function l(e,r){t[r]=t[e],delete t[e]}}function H(t,e,r){if(t=o.getGraphDiv(t),k.clearPromiseQueue(t),t.framework&&t.framework.isPolar)return Promise.resolve(t);var n={};if(\"string\"==typeof e)n[e]=r;else{if(!o.isPlainObject(e))return o.warn(\"Relayout fail.\",e,r),Promise.reject();n=o.extendFlat({},e)}Object.keys(n).length&&(t.changed=!0);var a=J(t,n),i=a.flags;i.calc&&(t.calcdata=void 0);var s=[f.previousPromises];i.layoutReplot?s.push(T.layoutReplot):Object.keys(n).length&&(G(t,i,a)||f.supplyDefaults(t),i.legend&&s.push(T.doLegend),i.layoutstyle&&s.push(T.layoutStyles),i.axrange&&Y(s,a.rangesAltered),i.ticks&&s.push(T.doTicksRelayout),i.modebar&&s.push(T.doModeBar),i.camera&&s.push(T.doCamera),i.colorbars&&s.push(T.doColorBars),s.push(C)),s.push(f.rehover,f.redrag),c.add(t,H,[t,a.undoit],H,[t,a.redoit]);var l=o.syncOrAsync(s,t);return l&&l.then||(l=Promise.resolve(t)),l.then(function(){return t.emit(\"plotly_relayout\",a.eventData),t})}function G(t,e,r){var n=t._fullLayout;if(!e.axrange)return!1;for(var a in e)if(\"axrange\"!==a&&e[a])return!1;for(var i in r.rangesAltered){var o=d.id2name(i),s=t.layout[o],l=n[o];if(l.autorange=s.autorange,l.range=s.range.slice(),l.cleanRange(),l._matchGroup)for(var c in l._matchGroup)if(c!==i){var u=n[d.id2name(c)];u.autorange=l.autorange,u.range=l.range.slice(),u._input.range=l.range.slice()}}return!0}function Y(t,e){var r=e?function(t){var r=[],n=!0;for(var a in e){var i=d.getFromId(t,a);if(r.push(a),i._matchGroup)for(var o in i._matchGroup)e[o]||r.push(o);i.automargin&&(n=!1)}return d.draw(t,r,{skipTitle:n})}:function(t){return d.draw(t,\"redraw\")};t.push(b,T.doAutoRangeAndConstraints,r,T.drawData,T.finalDraw)}var W=/^[xyz]axis[0-9]*\\.range(\\[[0|1]\\])?$/,X=/^[xyz]axis[0-9]*\\.autorange$/,Z=/^[xyz]axis[0-9]*\\.domain(\\[[0|1]\\])?$/;function J(t,e){var r,n,a,i=t.layout,l=t._fullLayout,c=l._guiEditing,f=j(l._preGUI,c),p=Object.keys(e),g=d.list(t),v=o.extendDeepAll({},e),m={};for(q(e),p=Object.keys(e),n=0;n<p.length;n++)if(0===p[n].indexOf(\"allaxes\")){for(a=0;a<g.length;a++){var y=g[a]._id.substr(1),x=-1!==y.indexOf(\"scene\")?y+\".\":\"\",b=p[n].replace(\"allaxes\",x+g[a]._name);e[b]||(e[b]=e[p[n]])}delete e[p[n]]}var _=A.layoutFlags(),T={},S={};function E(t,r){if(Array.isArray(t))t.forEach(function(t){E(t,r)});else if(!(t in e||k.hasParent(e,t))){var n=f(i,t);t in S||(S[t]=N(n.get())),void 0!==r&&n.set(r)}}var C,L={};function P(t){var e=d.name2id(t.split(\".\")[0]);return L[e]=1,e}for(var O in e){if(k.hasParent(e,O))throw new Error(\"cannot set \"+O+\" and a parent attribute simultaneously\");for(var I=f(i,O),z=e[O],D=I.parts.length-1;D>0&&\"string\"!=typeof I.parts[D];)D--;var R=I.parts[D],F=I.parts[D-1]+\".\"+R,B=I.parts.slice(0,D).join(\".\"),V=s(t.layout,B).get(),U=s(l,B).get(),H=I.get();if(void 0!==z){T[O]=z,S[O]=\"reverse\"===R?z:N(H);var G=h.getLayoutValObject(l,I.parts);if(G&&G.impliedEdits&&null!==z)for(var Y in G.impliedEdits)E(o.relativeAttr(O,Y),G.impliedEdits[Y]);if(-1!==[\"width\",\"height\"].indexOf(O))if(z){E(\"autosize\",null);var J=\"height\"===O?\"width\":\"height\";E(J,l[J])}else l[O]=t._initialAutoSize[O];else if(\"autosize\"===O)E(\"width\",z?null:l.width),E(\"height\",z?null:l.height);else if(F.match(W))P(F),s(l,B+\"._inputRange\").set(null);else if(F.match(X)){P(F),s(l,B+\"._inputRange\").set(null);var Q=s(l,B).get();Q._inputDomain&&(Q._input.domain=Q._inputDomain.slice())}else F.match(Z)&&s(l,B+\"._inputDomain\").set(null);if(\"type\"===R){var $=V,tt=\"linear\"===U.type&&\"log\"===z,et=\"log\"===U.type&&\"linear\"===z;if(tt||et){if($&&$.range)if(U.autorange)tt&&($.range=$.range[1]>$.range[0]?[1,2]:[2,1]);else{var rt=$.range[0],nt=$.range[1];tt?(rt<=0&&nt<=0&&E(B+\".autorange\",!0),rt<=0?rt=nt/1e6:nt<=0&&(nt=rt/1e6),E(B+\".range[0]\",Math.log(rt)/Math.LN10),E(B+\".range[1]\",Math.log(nt)/Math.LN10)):(E(B+\".range[0]\",Math.pow(10,rt)),E(B+\".range[1]\",Math.pow(10,nt)))}else E(B+\".autorange\",!0);Array.isArray(l._subplots.polar)&&l._subplots.polar.length&&l[I.parts[0]]&&\"radialaxis\"===I.parts[1]&&delete l[I.parts[0]]._subplot.viewInitial[\"radialaxis.range\"],u.getComponentMethod(\"annotations\",\"convertCoords\")(t,U,z,E),u.getComponentMethod(\"images\",\"convertCoords\")(t,U,z,E)}else E(B+\".autorange\",!0),E(B+\".range\",null);s(l,B+\"._inputRange\").set(null)}else if(R.match(M)){var at=s(l,O).get(),it=(z||{}).type;it&&\"-\"!==it||(it=\"linear\"),u.getComponentMethod(\"annotations\",\"convertCoords\")(t,at,it,E),u.getComponentMethod(\"images\",\"convertCoords\")(t,at,it,E)}var ot=w.containerArrayMatch(O);if(ot){r=ot.array,n=ot.index;var st=ot.property,lt=G||{editType:\"calc\"};\"\"!==n&&\"\"===st&&(w.isAddVal(z)?S[O]=null:w.isRemoveVal(z)?S[O]=(s(i,r).get()||[])[n]:o.warn(\"unrecognized full object value\",e)),A.update(_,lt),m[r]||(m[r]={});var ct=m[r][n];ct||(ct=m[r][n]={}),ct[st]=z,delete e[O]}else\"reverse\"===R?(V.range?V.range.reverse():(E(B+\".autorange\",!0),V.range=[1,0]),U.autorange?_.calc=!0:_.plot=!0):(l._has(\"scatter-like\")&&l._has(\"regl\")&&\"dragmode\"===O&&(\"lasso\"===z||\"select\"===z)&&\"lasso\"!==H&&\"select\"!==H?_.plot=!0:l._has(\"gl2d\")?_.plot=!0:G?A.update(_,G):_.calc=!0,I.set(z))}}for(r in m){w.applyContainerArrayChanges(t,f(i,r),m[r],_,f)||(_.plot=!0)}var ut=l._axisConstraintGroups||[];for(C in L)for(n=0;n<ut.length;n++){var ht=ut[n];if(ht[C])for(var ft in _.calc=!0,ht)L[ft]||(d.getFromId(t,ft)._constraintShrinkable=!0)}return(K(t)||e.height||e.width)&&(_.plot=!0),(_.plot||_.calc)&&(_.layoutReplot=!0),{flags:_,rangesAltered:L,undoit:S,redoit:T,eventData:v}}function K(t){var e=t._fullLayout,r=e.width,n=e.height;return t.layout.autosize&&f.plotAutoSize(t,t.layout,e),e.width!==r||e.height!==n}function Q(t,e,n,a){if(t=o.getGraphDiv(t),k.clearPromiseQueue(t),t.framework&&t.framework.isPolar)return Promise.resolve(t);o.isPlainObject(e)||(e={}),o.isPlainObject(n)||(n={}),Object.keys(e).length&&(t.changed=!0),Object.keys(n).length&&(t.changed=!0);var i=k.coerceTraceIndices(t,a),s=U(t,o.extendFlat({},e),i),l=s.flags,u=J(t,o.extendFlat({},n)),h=u.flags;(l.calc||h.calc)&&(t.calcdata=void 0),l.clearAxisTypes&&k.clearAxisTypes(t,i,n);var p=[];h.layoutReplot?p.push(T.layoutReplot):l.fullReplot?p.push(r.plot):(p.push(f.previousPromises),G(t,h,u)||f.supplyDefaults(t),l.style&&p.push(T.doTraceStyle),(l.colorbars||h.colorbars)&&p.push(T.doColorBars),h.legend&&p.push(T.doLegend),h.layoutstyle&&p.push(T.layoutStyles),h.axrange&&Y(p,u.rangesAltered),h.ticks&&p.push(T.doTicksRelayout),h.modebar&&p.push(T.doModeBar),h.camera&&p.push(T.doCamera),p.push(C)),p.push(f.rehover,f.redrag),c.add(t,Q,[t,s.undoit,u.undoit,s.traces],Q,[t,s.redoit,u.redoit,s.traces]);var d=o.syncOrAsync(p,t);return d&&d.then||(d=Promise.resolve(t)),d.then(function(){return t.emit(\"plotly_update\",{data:s.eventData,layout:u.eventData}),t})}function $(t){return function(e){e._fullLayout._guiEditing=!0;var r=t.apply(null,arguments);return e._fullLayout._guiEditing=!1,r}}var tt=[{pattern:/^hiddenlabels/,attr:\"legend.uirevision\"},{pattern:/^((x|y)axis\\d*)\\.((auto)?range|title\\.text)/},{pattern:/axis\\d*\\.showspikes$/,attr:\"modebar.uirevision\"},{pattern:/(hover|drag)mode$/,attr:\"modebar.uirevision\"},{pattern:/^(scene\\d*)\\.camera/},{pattern:/^(geo\\d*)\\.(projection|center)/},{pattern:/^(ternary\\d*\\.[abc]axis)\\.(min|title\\.text)$/},{pattern:/^(polar\\d*\\.radialaxis)\\.((auto)?range|angle|title\\.text)/},{pattern:/^(polar\\d*\\.angularaxis)\\.rotation/},{pattern:/^(mapbox\\d*)\\.(center|zoom|bearing|pitch)/},{pattern:/^legend\\.(x|y)$/,attr:\"editrevision\"},{pattern:/^(shapes|annotations)/,attr:\"editrevision\"},{pattern:/^title\\.text$/,attr:\"editrevision\"}],et=[{pattern:/^selectedpoints$/,attr:\"selectionrevision\"},{pattern:/(^|value\\.)visible$/,attr:\"legend.uirevision\"},{pattern:/^dimensions\\[\\d+\\]\\.constraintrange/},{pattern:/^node\\.(x|y|groups)/},{pattern:/^level$/},{pattern:/(^|value\\.)name$/},{pattern:/colorbar\\.title\\.text$/},{pattern:/colorbar\\.(x|y)$/,attr:\"editrevision\"}];function rt(t,e){for(var r=0;r<e.length;r++){var n=e[r],a=t.match(n.pattern);if(a)return{head:a[1],attr:n.attr}}}function nt(t,e){var r=s(e,t).get();if(void 0!==r)return r;var n=t.split(\".\");for(n.pop();n.length>1;)if(n.pop(),void 0!==(r=s(e,n.join(\".\")+\".uirevision\").get()))return r;return e.uirevision}function at(t,e){for(var r=0;r<e.length;r++)if(e[r]._fullInput.uid===t)return r;return-1}function it(t,e,r){for(var n=0;n<e.length;n++)if(e[n].uid===t)return n;return!e[r]||e[r].uid?-1:r}function ot(t,e){var r=o.isPlainObject(t),n=Array.isArray(t);return r||n?(r&&o.isPlainObject(e)||n&&Array.isArray(e))&&JSON.stringify(t)===JSON.stringify(e):t===e}function st(t,e,r,n){var a,i,l,c=n.getValObject,u=n.flags,h=n.immutable,f=n.inArray,p=n.arrayIndex;function d(){var t=a.editType;f&&-1!==t.indexOf(\"arraydraw\")?o.pushUnique(u.arrays[f],p):(A.update(u,a),\"none\"!==t&&u.nChanges++,n.transition&&a.anim&&u.nChangesAnim++,(W.test(l)||X.test(l))&&(u.rangesAltered[r[0]]=1),Z.test(l)&&s(e,\"_inputDomain\").set(null),\"datarevision\"===i&&(u.newDataRevision=1))}function g(t){return\"data_array\"===t.valType||t.arrayOk}for(i in t){if(u.calc&&!n.transition)return;var v=t[i],m=e[i],y=r.concat(i);if(l=y.join(\".\"),\"_\"!==i.charAt(0)&&\"function\"!=typeof v&&v!==m){if((\"tick0\"===i||\"dtick\"===i)&&\"geo\"!==r[0]){var x=e.tickmode;if(\"auto\"===x||\"array\"===x||!x)continue}if((\"range\"!==i||!e.autorange)&&(\"zmin\"!==i&&\"zmax\"!==i||\"contourcarpet\"!==e.type)&&(a=c(y))&&(!a._compareAsJSON||JSON.stringify(v)!==JSON.stringify(m))){var b,_=a.valType,w=g(a),k=Array.isArray(v),T=Array.isArray(m);if(k&&T){var M=\"_input_\"+i,S=t[M],E=e[M];if(Array.isArray(S)&&S===E)continue}if(void 0===m)w&&k?u.calc=!0:d();else if(a._isLinkedToArray){var C=[],L=!1;f||(u.arrays[i]=C);var P=Math.min(v.length,m.length),O=Math.max(v.length,m.length);if(P!==O){if(\"arraydraw\"!==a.editType){d();continue}L=!0}for(b=0;b<P;b++)st(v[b],m[b],y.concat(b),o.extendFlat({inArray:i,arrayIndex:b},n));if(L)for(b=P;b<O;b++)C.push(b)}else!_&&o.isPlainObject(v)?st(v,m,y,n):w?k&&T?(h&&(u.calc=!0),(h||n.newDataRevision)&&d()):k!==T?u.calc=!0:d():k&&T&&v.length===m.length&&String(v)===String(m)||d()}}}for(i in e)if(!(i in t||\"_\"===i.charAt(0)||\"function\"==typeof e[i])){if(g(a=c(r.concat(i)))&&Array.isArray(e[i]))return void(u.calc=!0);d()}}function lt(t){var e=n.select(t),r=t._fullLayout;if(r._container=e.selectAll(\".plot-container\").data([0]),r._container.enter().insert(\"div\",\":first-child\").classed(\"plot-container\",!0).classed(\"plotly\",!0),r._paperdiv=r._container.selectAll(\".svg-container\").data([0]),r._paperdiv.enter().append(\"div\").classed(\"svg-container\",!0).style(\"position\",\"relative\"),r._glcontainer=r._paperdiv.selectAll(\".gl-container\").data([{}]),r._glcontainer.enter().append(\"div\").classed(\"gl-container\",!0),r._paperdiv.selectAll(\".main-svg\").remove(),r._paperdiv.select(\".modebar-container\").remove(),r._paper=r._paperdiv.insert(\"svg\",\":first-child\").classed(\"main-svg\",!0),r._toppaper=r._paperdiv.append(\"svg\").classed(\"main-svg\",!0),r._modebardiv=r._paperdiv.append(\"div\"),r._hoverpaper=r._paperdiv.append(\"svg\").classed(\"main-svg\",!0),!r._uid){var a={};n.selectAll(\"defs\").each(function(){this.id&&(a[this.id.split(\"-\")[1]]=1)}),r._uid=o.randstr(a)}r._paperdiv.selectAll(\".main-svg\").attr(y.svgAttrs),r._defs=r._paper.append(\"defs\").attr(\"id\",\"defs-\"+r._uid),r._clips=r._defs.append(\"g\").classed(\"clips\",!0),r._topdefs=r._toppaper.append(\"defs\").attr(\"id\",\"topdefs-\"+r._uid),r._topclips=r._topdefs.append(\"g\").classed(\"clips\",!0),r._bgLayer=r._paper.append(\"g\").classed(\"bglayer\",!0),r._draggers=r._paper.append(\"g\").classed(\"draglayer\",!0);var i=r._paper.append(\"g\").classed(\"layer-below\",!0);r._imageLowerLayer=i.append(\"g\").classed(\"imagelayer\",!0),r._shapeLowerLayer=i.append(\"g\").classed(\"shapelayer\",!0),r._cartesianlayer=r._paper.append(\"g\").classed(\"cartesianlayer\",!0),r._polarlayer=r._paper.append(\"g\").classed(\"polarlayer\",!0),r._ternarylayer=r._paper.append(\"g\").classed(\"ternarylayer\",!0),r._geolayer=r._paper.append(\"g\").classed(\"geolayer\",!0),r._funnelarealayer=r._paper.append(\"g\").classed(\"funnelarealayer\",!0),r._pielayer=r._paper.append(\"g\").classed(\"pielayer\",!0),r._treemaplayer=r._paper.append(\"g\").classed(\"treemaplayer\",!0),r._sunburstlayer=r._paper.append(\"g\").classed(\"sunburstlayer\",!0),r._indicatorlayer=r._toppaper.append(\"g\").classed(\"indicatorlayer\",!0),r._glimages=r._paper.append(\"g\").classed(\"glimages\",!0);var s=r._toppaper.append(\"g\").classed(\"layer-above\",!0);r._imageUpperLayer=s.append(\"g\").classed(\"imagelayer\",!0),r._shapeUpperLayer=s.append(\"g\").classed(\"shapelayer\",!0),r._infolayer=r._toppaper.append(\"g\").classed(\"infolayer\",!0),r._menulayer=r._toppaper.append(\"g\").classed(\"menulayer\",!0),r._zoomlayer=r._toppaper.append(\"g\").classed(\"zoomlayer\",!0),r._hoverlayer=r._hoverpaper.append(\"g\").classed(\"hoverlayer\",!0),r._modebardiv.classed(\"modebar-container\",!0).style(\"position\",\"absolute\").style(\"top\",\"0px\").style(\"right\",\"0px\"),t.emit(\"plotly_framework\")}r.animate=function(t,e,r){if(t=o.getGraphDiv(t),!o.isPlotDiv(t))throw new Error(\"This element is not a Plotly plot: \"+t+\". It's likely that you've failed to create a plot before animating it. For more details, see https://plot.ly/javascript/animations/\");var n=t._transitionData;n._frameQueue||(n._frameQueue=[]);var a=(r=f.supplyAnimationDefaults(r)).transition,i=r.frame;function s(t){return Array.isArray(a)?t>=a.length?a[0]:a[t]:a}function l(t){return Array.isArray(i)?t>=i.length?i[0]:i[t]:i}function c(t,e){var r=0;return function(){if(t&&++r===e)return t()}}return void 0===n._frameWaitingCnt&&(n._frameWaitingCnt=0),new Promise(function(i,u){function h(){n._currentFrame&&n._currentFrame.onComplete&&n._currentFrame.onComplete();var e=n._currentFrame=n._frameQueue.shift();if(e){var r=e.name?e.name.toString():null;t._fullLayout._currentFrame=r,n._lastFrameAt=Date.now(),n._timeToNext=e.frameOpts.duration,f.transition(t,e.frame.data,e.frame.layout,k.coerceTraceIndices(t,e.frame.traces),e.frameOpts,e.transitionOpts).then(function(){e.onComplete&&e.onComplete()}),t.emit(\"plotly_animatingframe\",{name:r,frame:e.frame,animation:{frame:e.frameOpts,transition:e.transitionOpts}})}else t.emit(\"plotly_animated\"),window.cancelAnimationFrame(n._animationRaf),n._animationRaf=null}function p(){t.emit(\"plotly_animating\"),n._lastFrameAt=-1/0,n._timeToNext=0,n._runningTransitions=0,n._currentFrame=null;var e=function(){n._animationRaf=window.requestAnimationFrame(e),Date.now()-n._lastFrameAt>n._timeToNext&&h()};e()}var d,g,v=0;function m(t){return Array.isArray(a)?v>=a.length?t.transitionOpts=a[v]:t.transitionOpts=a[0]:t.transitionOpts=a,v++,t}var y=[],x=null==e,b=Array.isArray(e);if(x||b||!o.isPlainObject(e)){if(x||-1!==[\"string\",\"number\"].indexOf(typeof e))for(d=0;d<n._frames.length;d++)(g=n._frames[d])&&(x||String(g.group)===String(e))&&y.push({type:\"byname\",name:String(g.name),data:m({name:g.name})});else if(b)for(d=0;d<e.length;d++){var _=e[d];-1!==[\"number\",\"string\"].indexOf(typeof _)?(_=String(_),y.push({type:\"byname\",name:_,data:m({name:_})})):o.isPlainObject(_)&&y.push({type:\"object\",data:m(o.extendFlat({},_))})}}else y.push({type:\"object\",data:m(o.extendFlat({},e))});for(d=0;d<y.length;d++)if(\"byname\"===(g=y[d]).type&&!n._frameHash[g.data.name])return o.warn('animate failure: frame not found: \"'+g.data.name+'\"'),void u();-1!==[\"next\",\"immediate\"].indexOf(r.mode)&&function(){if(0!==n._frameQueue.length){for(;n._frameQueue.length;){var e=n._frameQueue.pop();e.onInterrupt&&e.onInterrupt()}t.emit(\"plotly_animationinterrupted\",[])}}(),\"reverse\"===r.direction&&y.reverse();var w=t._fullLayout._currentFrame;if(w&&r.fromcurrent){var T=-1;for(d=0;d<y.length;d++)if(\"byname\"===(g=y[d]).type&&g.name===w){T=d;break}if(T>0&&T<y.length-1){var A=[];for(d=0;d<y.length;d++)g=y[d],(\"byname\"!==y[d].type||d>T)&&A.push(g);y=A}}y.length>0?function(e){if(0!==e.length){for(var a=0;a<e.length;a++){var o;o=\"byname\"===e[a].type?f.computeFrame(t,e[a].name):e[a].data;var h=l(a),d=s(a);d.duration=Math.min(d.duration,h.duration);var g={frame:o,name:e[a].name,frameOpts:h,transitionOpts:d};a===e.length-1&&(g.onComplete=c(i,2),g.onInterrupt=u),n._frameQueue.push(g)}\"immediate\"===r.mode&&(n._lastFrameAt=-1/0),n._animationRaf||p()}}(y):(t.emit(\"plotly_animated\"),i())})},r.addFrames=function(t,e,r){if(t=o.getGraphDiv(t),null==e)return Promise.resolve();if(!o.isPlotDiv(t))throw new Error(\"This element is not a Plotly plot: \"+t+\". It's likely that you've failed to create a plot before adding frames. For more details, see https://plot.ly/javascript/animations/\");var n,a,i,s,l=t._transitionData._frames,u=t._transitionData._frameHash;if(!Array.isArray(e))throw new Error(\"addFrames failure: frameList must be an Array of frame definitions\"+e);var h=l.length+2*e.length,p=[],d={};for(n=e.length-1;n>=0;n--)if(o.isPlainObject(e[n])){var g=e[n].name,v=(u[g]||d[g]||{}).name,m=e[n].name,y=u[v]||d[v];v&&m&&\"number\"==typeof m&&y&&S<E&&(S++,o.warn('addFrames: overwriting frame \"'+(u[v]||d[v]).name+'\" with a frame whose name of type \"number\" also equates to \"'+v+'\". This is valid but may potentially lead to unexpected behavior since all plotly.js frame names are stored internally as strings.'),S===E&&o.warn(\"addFrames: This API call has yielded too many of these warnings. For the rest of this call, further warnings about numeric frame names will be suppressed.\")),d[g]={name:g},p.push({frame:f.supplyFrameDefaults(e[n]),index:r&&void 0!==r[n]&&null!==r[n]?r[n]:h+n})}p.sort(function(t,e){return t.index>e.index?-1:t.index<e.index?1:0});var x=[],b=[],_=l.length;for(n=p.length-1;n>=0;n--){if(\"number\"==typeof(a=p[n].frame).name&&o.warn(\"Warning: addFrames accepts frames with numeric names, but the numbers areimplicitly cast to strings\"),!a.name)for(;u[a.name=\"frame \"+t._transitionData._counter++];);if(u[a.name]){for(i=0;i<l.length&&(l[i]||{}).name!==a.name;i++);x.push({type:\"replace\",index:i,value:a}),b.unshift({type:\"replace\",index:i,value:l[i]})}else s=Math.max(0,Math.min(p[n].index,_)),x.push({type:\"insert\",index:s,value:a}),b.unshift({type:\"delete\",index:s}),_++}var w=f.modifyFrames,k=f.modifyFrames,T=[t,b],A=[t,x];return c&&c.add(t,w,T,k,A),f.modifyFrames(t,x)},r.deleteFrames=function(t,e){if(t=o.getGraphDiv(t),!o.isPlotDiv(t))throw new Error(\"This element is not a Plotly plot: \"+t);var r,n,a=t._transitionData._frames,i=[],s=[];if(!e)for(e=[],r=0;r<a.length;r++)e.push(r);for((e=e.slice()).sort(),r=e.length-1;r>=0;r--)n=e[r],i.push({type:\"delete\",index:n}),s.unshift({type:\"insert\",index:n,value:a[n]});var l=f.modifyFrames,u=f.modifyFrames,h=[t,s],p=[t,i];return c&&c.add(t,l,h,u,p),f.modifyFrames(t,i)},r.addTraces=function t(e,n,a){e=o.getGraphDiv(e);var i,s,l=[],u=r.deleteTraces,h=t,f=[e,l],p=[e,n];for(function(t,e,r){var n,a;if(!Array.isArray(t.data))throw new Error(\"gd.data must be an array.\");if(\"undefined\"==typeof e)throw new Error(\"traces must be defined.\");for(Array.isArray(e)||(e=[e]),n=0;n<e.length;n++)if(\"object\"!=typeof(a=e[n])||Array.isArray(a)||null===a)throw new Error(\"all values in traces array must be non-array objects\");if(\"undefined\"==typeof r||Array.isArray(r)||(r=[r]),\"undefined\"!=typeof r&&r.length!==e.length)throw new Error(\"if indices is specified, traces.length must equal indices.length\")}(e,n,a),Array.isArray(n)||(n=[n]),n=n.map(function(t){return o.extendFlat({},t)}),k.cleanData(n),i=0;i<n.length;i++)e.data.push(n[i]);for(i=0;i<n.length;i++)l.push(-n.length+i);if(\"undefined\"==typeof a)return s=r.redraw(e),c.add(e,u,f,h,p),s;Array.isArray(a)||(a=[a]);try{D(e,l,a)}catch(t){throw e.data.splice(e.data.length-n.length,n.length),t}return c.startSequence(e),c.add(e,u,f,h,p),s=r.moveTraces(e,l,a),c.stopSequence(e),s},r.deleteTraces=function t(e,n){e=o.getGraphDiv(e);var a,i,s=[],l=r.addTraces,u=t,h=[e,s,n],f=[e,n];if(\"undefined\"==typeof n)throw new Error(\"indices must be an integer or array of integers.\");for(Array.isArray(n)||(n=[n]),z(e,n,\"indices\"),(n=I(n,e.data.length-1)).sort(o.sorterDes),a=0;a<n.length;a+=1)i=e.data.splice(n[a],1)[0],s.push(i);var p=r.redraw(e);return c.add(e,l,h,u,f),p},r.extendTraces=function t(e,n,a,i){var s=R(e=o.getGraphDiv(e),n,a,i,function(t,e,r){var n,a;if(o.isTypedArray(t))if(r<0){var i=new t.constructor(0),s=F(t,e);r<0?(n=s,a=i):(n=i,a=s)}else if(n=new t.constructor(r),a=new t.constructor(t.length+e.length-r),r===e.length)n.set(e),a.set(t);else if(r<e.length){var l=e.length-r;n.set(e.subarray(l)),a.set(t),a.set(e.subarray(0,l),t.length)}else{var c=r-e.length,u=t.length-c;n.set(t.subarray(u)),n.set(e,c),a.set(t.subarray(0,u))}else n=t.concat(e),a=r>=0&&r<n.length?n.splice(0,n.length-r):[];return[n,a]}),l=r.redraw(e),u=[e,s.update,a,s.maxPoints];return c.add(e,r.prependTraces,u,t,arguments),l},r.moveTraces=function t(e,n,a){var i,s=[],l=[],u=t,h=t,f=[e=o.getGraphDiv(e),a,n],p=[e,n,a];if(D(e,n,a),n=Array.isArray(n)?n:[n],\"undefined\"==typeof a)for(a=[],i=0;i<n.length;i++)a.push(-n.length+i);for(a=Array.isArray(a)?a:[a],n=I(n,e.data.length-1),a=I(a,e.data.length-1),i=0;i<e.data.length;i++)-1===n.indexOf(i)&&s.push(e.data[i]);for(i=0;i<n.length;i++)l.push({newIndex:a[i],trace:e.data[n[i]]});for(l.sort(function(t,e){return t.newIndex-e.newIndex}),i=0;i<l.length;i+=1)s.splice(l[i].newIndex,0,l[i].trace);e.data=s;var d=r.redraw(e);return c.add(e,u,f,h,p),d},r.prependTraces=function t(e,n,a,i){var s=R(e=o.getGraphDiv(e),n,a,i,function(t,e,r){var n,a;if(o.isTypedArray(t))if(r<=0){var i=new t.constructor(0),s=F(e,t);r<0?(n=s,a=i):(n=i,a=s)}else if(n=new t.constructor(r),a=new t.constructor(t.length+e.length-r),r===e.length)n.set(e),a.set(t);else if(r<e.length){var l=e.length-r;n.set(e.subarray(0,l)),a.set(e.subarray(l)),a.set(t,l)}else{var c=r-e.length;n.set(e),n.set(t.subarray(0,c),e.length),a.set(t.subarray(c))}else n=e.concat(t),a=r>=0&&r<n.length?n.splice(r,n.length):[];return[n,a]}),l=r.redraw(e),u=[e,s.update,a,s.maxPoints];return c.add(e,r.extendTraces,u,t,arguments),l},r.newPlot=function(t,e,n,a){return t=o.getGraphDiv(t),f.cleanPlot([],{},t._fullData||[],t._fullLayout||{}),f.purge(t),r.plot(t,e,n,a)},r.plot=function(t,e,a,i){var s;if(t=o.getGraphDiv(t),l.init(t),o.isPlainObject(e)){var c=e;e=c.data,a=c.layout,i=c.config,s=c.frames}if(!1===l.triggerHandler(t,\"plotly_beforeplot\",[e,a,i]))return Promise.reject();e||a||o.isPlotDiv(t)||o.warn(\"Calling Plotly.plot as if redrawing but this container doesn't yet have a plot.\",t),O(t,i),a||(a={}),n.select(t).classed(\"js-plotly-plot\",!0),g.makeTester(),Array.isArray(t._promises)||(t._promises=[]);var h=0===(t.data||[]).length&&Array.isArray(e);Array.isArray(e)&&(k.cleanData(e),h?t.data=e:t.data.push.apply(t.data,e),t.empty=!1),t.layout&&!h||(t.layout=k.cleanLayout(a)),f.supplyDefaults(t);var v=t._fullLayout,y=v._has(\"cartesian\");if(!v._has(\"polar\")&&e&&e[0]&&e[0].r)return o.log(\"Legacy polar charts are deprecated!\"),function(t,e,r){var a=n.select(t).selectAll(\".plot-container\").data([0]);a.enter().insert(\"div\",\":first-child\").classed(\"plot-container plotly\",!0);var i=a.selectAll(\".svg-container\").data([0]);i.enter().append(\"div\").classed(\"svg-container\",!0).style(\"position\",\"relative\"),i.html(\"\"),e&&(t.data=e),r&&(t.layout=r),p.manager.fillLayout(t),i.style({width:t._fullLayout.width+\"px\",height:t._fullLayout.height+\"px\"}),t.framework=p.manager.framework(t),t.framework({data:t.data,layout:t.layout},i.node()),t.framework.setUndoPoint();var s=t.framework.svg(),l=1,c=t._fullLayout.title?t._fullLayout.title.text:\"\";\"\"!==c&&c||(l=0);var u=function(){this.call(x.convertToTspans,t)},h=s.select(\".title-group text\").call(u);if(t._context.edits.titleText){var d=o._(t,\"Click to enter Plot title\");c&&c!==d||(l=.2,h.attr({\"data-unformatted\":d}).text(d).style({opacity:l}).on(\"mouseover.opacity\",function(){n.select(this).transition().duration(100).style(\"opacity\",1)}).on(\"mouseout.opacity\",function(){n.select(this).transition().duration(1e3).style(\"opacity\",0)}));var g=function(){this.call(x.makeEditable,{gd:t}).on(\"edit\",function(e){t.framework({layout:{title:{text:e}}}),this.text(e).call(u),this.call(g)}).on(\"cancel\",function(){var t=this.attr(\"data-unformatted\");this.text(t).call(u)})};h.call(g)}return t._context.setBackground(t,t._fullLayout.paper_bgcolor),f.addLinks(t),Promise.resolve()}(t,e,a);v._replotting=!0,h&&lt(t),t.framework!==lt&&(t.framework=lt,lt(t)),g.initGradients(t),h&&d.saveShowSpikeInitial(t);var b=!t.calcdata||t.calcdata.length!==(t._fullData||[]).length;b&&f.doCalcdata(t);for(var _=0;_<t.calcdata.length;_++)t.calcdata[_][0].trace=t._fullData[_];t._context.responsive?t._responsiveChartHandler||(t._responsiveChartHandler=function(){o.isHidden(t)||f.resize(t)},window.addEventListener(\"resize\",t._responsiveChartHandler)):o.clearResponsive(t);var w=o.extendFlat({},v._size),A=0;function M(){return f.clearAutoMarginIds(t),T.drawMarginPushers(t),d.allowAutoMargin(t),f.doAutoMargin(t),f.previousPromises(t)}function S(){t._transitioning||(T.doAutoRangeAndConstraints(t),h&&d.saveRangeInitial(t),u.getComponentMethod(\"rangeslider\",\"calcAutorange\")(t))}var E=[f.previousPromises,function(){if(s)return r.addFrames(t,s)},function e(){for(var r=v._basePlotModules,n=0;n<r.length;n++)r[n].drawFramework&&r[n].drawFramework(t);if(!v._glcanvas&&v._has(\"gl\")&&(v._glcanvas=v._glcontainer.selectAll(\".gl-canvas\").data([{key:\"contextLayer\",context:!0,pick:!1},{key:\"focusLayer\",context:!1,pick:!1},{key:\"pickLayer\",context:!1,pick:!0}],function(t){return t.key}),v._glcanvas.enter().append(\"canvas\").attr(\"class\",function(t){return\"gl-canvas gl-canvas-\"+t.key.replace(\"Layer\",\"\")}).style({position:\"absolute\",top:0,left:0,overflow:\"visible\",\"pointer-events\":\"none\"})),v._glcanvas){v._glcanvas.attr(\"width\",v.width).attr(\"height\",v.height);var a=v._glcanvas.data()[0].regl;if(a&&(Math.floor(v.width)!==a._gl.drawingBufferWidth||Math.floor(v.height)!==a._gl.drawingBufferHeight)){var i=\"WebGL context buffer and canvas dimensions do not match due to browser/WebGL bug.\";if(!A)return o.log(i+\" Clearing graph and plotting again.\"),f.cleanPlot([],{},t._fullData,v),f.supplyDefaults(t),v=t._fullLayout,f.doCalcdata(t),A++,e();o.error(i)}}return\"h\"===v.modebar.orientation?v._modebardiv.style(\"height\",null).style(\"width\",\"100%\"):v._modebardiv.style(\"width\",null).style(\"height\",v.height+\"px\"),f.previousPromises(t)},M,function(){if(f.didMarginChange(w,v._size))return o.syncOrAsync([M,T.layoutStyles],t)}];y&&E.push(function(){if(b)return o.syncOrAsync([u.getComponentMethod(\"shapes\",\"calcAutorange\"),u.getComponentMethod(\"annotations\",\"calcAutorange\"),S],t);S()}),E.push(T.layoutStyles),y&&E.push(function(){return d.draw(t,h?\"\":\"redraw\")}),E.push(T.drawData,T.finalDraw,m,f.addLinks,f.rehover,f.redrag,f.doAutoMargin,f.previousPromises);var L=o.syncOrAsync(E,t);return L&&L.then||(L=Promise.resolve()),L.then(function(){return C(t),t})},r.purge=function(t){var e=(t=o.getGraphDiv(t))._fullLayout||{},r=t._fullData||[];return f.cleanPlot([],{},r,e),f.purge(t),l.purge(t),e._container&&e._container.remove(),delete t._context,t},r.react=function(t,e,n,a){var i,l;t=o.getGraphDiv(t),k.clearPromiseQueue(t);var c=t._fullData,p=t._fullLayout;if(o.isPlotDiv(t)&&c&&p){if(o.isPlainObject(e)){var d=e;e=d.data,n=d.layout,a=d.config,i=d.frames}var g=!1;if(a){var v=o.extendDeep({},t._context);t._context=void 0,O(t,a),g=function t(e,r){var n;for(n in e)if(\"_\"!==n.charAt(0)){var a=e[n],i=r[n];if(a!==i)if(o.isPlainObject(a)&&o.isPlainObject(i)){if(t(a,i))return!0}else{if(!Array.isArray(a)||!Array.isArray(i))return!0;if(a.length!==i.length)return!0;for(var s=0;s<a.length;s++)if(a[s]!==i[s]){if(!o.isPlainObject(a[s])||!o.isPlainObject(i[s]))return!0;if(t(a[s],i[s]))return!0}}}}(v,t._context)}t.data=e||[],k.cleanData(t.data),t.layout=n||{},k.cleanLayout(t.layout),function(t,e,r,n){var a,i,l,c,u,h,f,p,d=n._preGUI,g=[],v={};for(a in d){if(u=rt(a,tt)){if(i=u.attr||u.head+\".uirevision\",(c=(l=s(n,i).get())&&nt(i,e))&&c===l&&(null===(h=d[a])&&(h=void 0),ot(p=(f=s(e,a)).get(),h))){void 0===p&&\"autorange\"===a.substr(a.length-9)&&g.push(a.substr(0,a.length-10)),f.set(N(s(n,a).get()));continue}}else o.warn(\"unrecognized GUI edit: \"+a);delete d[a],\"range[\"===a.substr(a.length-8,6)&&(v[a.substr(0,a.length-9)]=1)}for(var m=0;m<g.length;m++){var y=g[m];if(v[y]){var x=s(e,y).get();x&&delete x.autorange}}var b=n._tracePreGUI;for(var _ in b){var w,k=b[_],T=null;for(a in k){if(!T){var A=at(_,r);if(A<0){delete b[_];break}var M=it(_,t,(w=r[A]._fullInput).index);if(M<0){delete b[_];break}T=t[M]}if(u=rt(a,et)){if(u.attr?c=(l=s(n,u.attr).get())&&nt(u.attr,e):(l=w.uirevision,void 0===(c=T.uirevision)&&(c=e.uirevision)),c&&c===l&&(null===(h=k[a])&&(h=void 0),ot(p=(f=s(T,a)).get(),h))){f.set(N(s(w,a).get()));continue}}else o.warn(\"unrecognized GUI edit: \"+a+\" in trace uid \"+_);delete k[a]}}}(t.data,t.layout,c,p),f.supplyDefaults(t,{skipUpdateCalc:!0});var m=t._fullData,y=t._fullLayout,x=void 0===y.datarevision,b=y.transition,_=function(t,e,r,n,a){var i=A.layoutFlags();return i.arrays={},i.rangesAltered={},i.nChanges=0,i.nChangesAnim=0,st(e,r,[],{getValObject:function(t){return h.getLayoutValObject(r,t)},flags:i,immutable:n,transition:a,gd:t}),(i.plot||i.calc)&&(i.layoutReplot=!0),a&&i.nChanges&&i.nChangesAnim&&(i.anim=i.nChanges===i.nChangesAnim?\"all\":\"some\"),i}(t,p,y,x,b),w=_.newDataRevision,M=function(t,e,r,n,a,i){var o=e.length===r.length;if(!a&&!o)return{fullReplot:!0,calc:!0};var s,l,c=A.traceFlags();c.arrays={},c.nChanges=0,c.nChangesAnim=0;var u={getValObject:function(t){var e=h.getTraceValObject(l,t);return!l._module.animatable&&e.anim&&(e.anim=!1),e},flags:c,immutable:n,transition:a,newDataRevision:i,gd:t},p={};for(s=0;s<e.length;s++)if(r[s]){if(l=r[s]._fullInput,f.hasMakesDataTransform(l)&&(l=r[s]),p[l.uid])continue;p[l.uid]=1,st(e[s]._fullInput,l,[],u)}return(c.calc||c.plot)&&(c.fullReplot=!0),a&&c.nChanges&&c.nChangesAnim&&(c.anim=c.nChanges===c.nChangesAnim&&o?\"all\":\"some\"),c}(t,c,m,x,b,w);K(t)&&(_.layoutReplot=!0),M.calc||_.calc?t.calcdata=void 0:f.supplyDefaultsUpdateCalc(t.calcdata,m);var S=[];if(i&&(t._transitionData={},f.createTransitionData(t),S.push(function(){return r.addFrames(t,i)})),y.transition&&!g&&(M.anim||_.anim))f.doCalcdata(t),T.doAutoRangeAndConstraints(t),S.push(function(){return f.transitionFromReact(t,M,_,p)});else if(M.fullReplot||_.layoutReplot||g)t._fullLayout._skipDefaults=!0,S.push(r.plot);else{for(var E in _.arrays){var L=_.arrays[E];if(L.length){var P=u.getComponentMethod(E,\"drawOne\");if(P!==o.noop)for(var I=0;I<L.length;I++)P(t,L[I]);else{var z=u.getComponentMethod(E,\"draw\");if(z===o.noop)throw new Error(\"cannot draw components: \"+E);z(t)}}}S.push(f.previousPromises),M.style&&S.push(T.doTraceStyle),(M.colorbars||_.colorbars)&&S.push(T.doColorBars),_.legend&&S.push(T.doLegend),_.layoutstyle&&S.push(T.layoutStyles),_.axrange&&Y(S),_.ticks&&S.push(T.doTicksRelayout),_.modebar&&S.push(T.doModeBar),_.camera&&S.push(T.doCamera),S.push(C)}S.push(f.rehover,f.redrag),(l=o.syncOrAsync(S,t))&&l.then||(l=Promise.resolve(t))}else l=r.newPlot(t,e,n,a);return l.then(function(){return t.emit(\"plotly_react\",{data:e,layout:n}),t})},r.redraw=function(t){if(t=o.getGraphDiv(t),!o.isPlotDiv(t))throw new Error(\"This element is not a Plotly plot: \"+t);return k.cleanData(t.data),k.cleanLayout(t.layout),t.calcdata=void 0,r.plot(t).then(function(){return t.emit(\"plotly_redraw\"),t})},r.relayout=H,r.restyle=B,r.setPlotConfig=function(t){return o.extendFlat(_,t)},r.update=Q,r._guiRelayout=$(H),r._guiRestyle=$(B),r._guiUpdate=$(Q),r._storeDirectGUIEdit=function(t,e,r){for(var n in r)V(n,s(t,n).get(),r[n],e)}},{\"../components/color\":594,\"../components/drawing\":615,\"../constants/xmlns_namespaces\":696,\"../lib\":719,\"../lib/events\":709,\"../lib/queue\":734,\"../lib/svg_text_utils\":743,\"../plots/cartesian/axes\":767,\"../plots/cartesian/constants\":773,\"../plots/cartesian/graph_interact\":776,\"../plots/cartesian/select\":784,\"../plots/plots\":828,\"../plots/polar/legacy\":836,\"../registry\":848,\"./edit_types\":750,\"./helpers\":751,\"./manage_arrays\":753,\"./plot_config\":755,\"./plot_schema\":756,\"./subroutines\":758,d3:164,\"fast-isnumeric\":226,\"has-hover\":411}],755:[function(t,e,r){\"use strict\";var n={staticPlot:{valType:\"boolean\",dflt:!1},plotlyServerURL:{valType:\"string\",dflt:\"https://plot.ly\"},editable:{valType:\"boolean\",dflt:!1},edits:{annotationPosition:{valType:\"boolean\",dflt:!1},annotationTail:{valType:\"boolean\",dflt:!1},annotationText:{valType:\"boolean\",dflt:!1},axisTitleText:{valType:\"boolean\",dflt:!1},colorbarPosition:{valType:\"boolean\",dflt:!1},colorbarTitleText:{valType:\"boolean\",dflt:!1},legendPosition:{valType:\"boolean\",dflt:!1},legendText:{valType:\"boolean\",dflt:!1},shapePosition:{valType:\"boolean\",dflt:!1},titleText:{valType:\"boolean\",dflt:!1}},autosizable:{valType:\"boolean\",dflt:!1},responsive:{valType:\"boolean\",dflt:!1},fillFrame:{valType:\"boolean\",dflt:!1},frameMargins:{valType:\"number\",dflt:0,min:0,max:.5},scrollZoom:{valType:\"flaglist\",flags:[\"cartesian\",\"gl3d\",\"geo\",\"mapbox\"],extras:[!0,!1],dflt:\"gl3d+geo+mapbox\"},doubleClick:{valType:\"enumerated\",values:[!1,\"reset\",\"autosize\",\"reset+autosize\"],dflt:\"reset+autosize\"},doubleClickDelay:{valType:\"number\",dflt:300,min:0},showAxisDragHandles:{valType:\"boolean\",dflt:!0},showAxisRangeEntryBoxes:{valType:\"boolean\",dflt:!0},showTips:{valType:\"boolean\",dflt:!0},showLink:{valType:\"boolean\",dflt:!1},linkText:{valType:\"string\",dflt:\"Edit chart\",noBlank:!0},sendData:{valType:\"boolean\",dflt:!0},showSources:{valType:\"any\",dflt:!1},displayModeBar:{valType:\"enumerated\",values:[\"hover\",!0,!1],dflt:\"hover\"},showSendToCloud:{valType:\"boolean\",dflt:!1},showEditInChartStudio:{valType:\"boolean\",dflt:!1},modeBarButtonsToRemove:{valType:\"any\",dflt:[]},modeBarButtonsToAdd:{valType:\"any\",dflt:[]},modeBarButtons:{valType:\"any\",dflt:!1},toImageButtonOptions:{valType:\"any\",dflt:{}},displaylogo:{valType:\"boolean\",dflt:!0},watermark:{valType:\"boolean\",dflt:!1},plotGlPixelRatio:{valType:\"number\",dflt:2,min:1,max:4},setBackground:{valType:\"any\",dflt:\"transparent\"},topojsonURL:{valType:\"string\",noBlank:!0,dflt:\"https://cdn.plot.ly/\"},mapboxAccessToken:{valType:\"string\",dflt:null},logging:{valType:\"boolean\",dflt:1},queueLength:{valType:\"integer\",min:0,dflt:0},globalTransforms:{valType:\"any\",dflt:[]},locale:{valType:\"string\",dflt:\"en-US\"},locales:{valType:\"any\",dflt:{}}},a={};!function t(e,r){for(var n in e){var a=e[n];a.valType?r[n]=a.dflt:(r[n]||(r[n]={}),t(a,r[n]))}}(n,a),e.exports={configAttributes:n,dfltConfig:a}},{}],756:[function(t,e,r){\"use strict\";var n=t(\"../registry\"),a=t(\"../lib\"),i=t(\"../plots/attributes\"),o=t(\"../plots/layout_attributes\"),s=t(\"../plots/frame_attributes\"),l=t(\"../plots/animation_attributes\"),c=t(\"./plot_config\").configAttributes,u=t(\"../plots/polar/legacy/area_attributes\"),h=t(\"../plots/polar/legacy/axis_attributes\"),f=t(\"./edit_types\"),p=a.extendFlat,d=a.extendDeepAll,g=a.isPlainObject,v=a.isArrayOrTypedArray,m=a.nestedProperty,y=a.valObjectMeta,x=\"_isSubplotObj\",b=\"_isLinkedToArray\",_=[x,b,\"_arrayAttrRegexps\",\"_deprecated\"];function w(t,e,r){if(!t)return!1;if(t._isLinkedToArray)if(k(e[r]))r++;else if(r<e.length)return!1;for(;r<e.length;r++){var n=t[e[r]];if(!g(n))break;if(t=n,r===e.length-1)break;if(t._isLinkedToArray){if(!k(e[++r]))return!1}else if(\"info_array\"===t.valType){var a=e[++r];if(!k(a))return!1;var i=t.items;if(Array.isArray(i)){if(a>=i.length)return!1;if(2===t.dimensions){if(r++,e.length===r)return t;var o=e[r];if(!k(o))return!1;t=i[a][o]}else t=i[a]}else t=i}}return t}function k(t){return t===Math.round(t)&&t>=0}function T(t){return function(t){r.crawl(t,function(t,e,n){r.isValObject(t)?\"data_array\"===t.valType?(t.role=\"data\",n[e+\"src\"]={valType:\"string\",editType:\"none\"}):!0===t.arrayOk&&(n[e+\"src\"]={valType:\"string\",editType:\"none\"}):g(t)&&(t.role=\"object\")})}(t),function(t){r.crawl(t,function(t,e,r){if(!t)return;var n=t[b];if(!n)return;delete t[b],r[e]={items:{}},r[e].items[n]=t,r[e].role=\"object\"})}(t),function(t){!function t(e){for(var r in e)if(g(e[r]))t(e[r]);else if(Array.isArray(e[r]))for(var n=0;n<e[r].length;n++)t(e[r][n]);else e[r]instanceof RegExp&&(e[r]=e[r].toString())}(t)}(t),t}function A(t,e,r){var n=m(t,r),a=d({},e.layoutAttributes);a[x]=!0,n.set(a)}function M(t,e,r){var n=m(t,r);n.set(d(n.get()||{},e))}r.IS_SUBPLOT_OBJ=x,r.IS_LINKED_TO_ARRAY=b,r.DEPRECATED=\"_deprecated\",r.UNDERSCORE_ATTRS=_,r.get=function(){var t={};n.allTypes.concat(\"area\").forEach(function(e){t[e]=function(t){var e,a;\"area\"===t?(e={attributes:u},a={}):(e=n.modules[t]._module,a=e.basePlotModule);var o={type:null},s=d({},i),l=d({},e.attributes);r.crawl(l,function(t,e,r,n,a){m(s,a).set(void 0),void 0===t&&m(l,a).set(void 0)}),d(o,s),n.traceIs(t,\"noOpacity\")&&delete o.opacity;n.traceIs(t,\"showLegend\")||(delete o.showlegend,delete o.legendgroup);n.traceIs(t,\"noHover\")&&(delete o.hoverinfo,delete o.hoverlabel);e.selectPoints||delete o.selectedpoints;d(o,l),a.attributes&&d(o,a.attributes);o.type=t;var c={meta:e.meta||{},categories:e.categories||{},animatable:Boolean(e.animatable),type:t,attributes:T(o)};if(e.layoutAttributes){var h={};d(h,e.layoutAttributes),c.layoutAttributes=T(h)}e.animatable||r.crawl(c,function(t){r.isValObject(t)&&\"anim\"in t&&delete t.anim});return c}(e)});var e,a={};return Object.keys(n.transformsRegistry).forEach(function(t){a[t]=function(t){var e=n.transformsRegistry[t],r=d({},e.attributes);return Object.keys(n.componentsRegistry).forEach(function(e){var a=n.componentsRegistry[e];a.schema&&a.schema.transforms&&a.schema.transforms[t]&&Object.keys(a.schema.transforms[t]).forEach(function(e){M(r,a.schema.transforms[t][e],e)})}),{attributes:T(r)}}(t)}),{defs:{valObjects:y,metaKeys:_.concat([\"description\",\"role\",\"editType\",\"impliedEdits\"]),editType:{traces:f.traces,layout:f.layout},impliedEdits:{}},traces:t,layout:function(){var t,e,r={};for(t in d(r,o),n.subplotsRegistry)if((e=n.subplotsRegistry[t]).layoutAttributes)if(Array.isArray(e.attr))for(var a=0;a<e.attr.length;a++)A(r,e,e.attr[a]);else{var i=\"subplot\"===e.attr?e.name:e.attr;A(r,e,i)}for(t in r=function(t){return p(t,{radialaxis:h.radialaxis,angularaxis:h.angularaxis}),p(t,h.layout),t}(r),n.componentsRegistry){var s=(e=n.componentsRegistry[t]).schema;if(s&&(s.subplots||s.layout)){var l=s.subplots;if(l&&l.xaxis&&!l.yaxis)for(var c in l.xaxis)delete r.yaxis[c]}else\"colorscale\"===e.name?d(r,e.layoutAttributes):e.layoutAttributes&&M(r,e.layoutAttributes,e.name)}return{layoutAttributes:T(r)}}(),transforms:a,frames:(e={frames:d({},s)},T(e),e.frames),animation:T(l),config:T(c)}},r.crawl=function(t,e,n,a){var i=n||0;a=a||\"\",Object.keys(t).forEach(function(n){var o=t[n];if(-1===_.indexOf(n)){var s=(a?a+\".\":\"\")+n;e(o,n,t,i,s),r.isValObject(o)||g(o)&&\"impliedEdits\"!==n&&r.crawl(o,e,i+1,s)}})},r.isValObject=function(t){return t&&void 0!==t.valType},r.findArrayAttributes=function(t){var e,n,a=[],o=[],s=[];function l(t,r,i,l){o=o.slice(0,l).concat([r]),s=s.slice(0,l).concat([t&&t._isLinkedToArray]),t&&(\"data_array\"===t.valType||!0===t.arrayOk)&&!(\"colorbar\"===o[l-1]&&(\"ticktext\"===r||\"tickvals\"===r))&&function t(e,r,i){var l=e[o[r]];var c=i+o[r];if(r===o.length-1)v(l)&&a.push(n+c);else if(s[r]){if(Array.isArray(l))for(var u=0;u<l.length;u++)g(l[u])&&t(l[u],r+1,c+\"[\"+u+\"].\")}else g(l)&&t(l,r+1,c+\".\")}(e,0,\"\")}e=t,n=\"\",r.crawl(i,l),t._module&&t._module.attributes&&r.crawl(t._module.attributes,l);var c=t.transforms;if(c)for(var u=0;u<c.length;u++){var h=c[u],f=h._module;f&&(n=\"transforms[\"+u+\"].\",e=h,r.crawl(f.attributes,l))}return a},r.getTraceValObject=function(t,e){var r,a,o=e[0],s=1;if(\"transforms\"===o){if(1===e.length)return i.transforms;var l=t.transforms;if(!Array.isArray(l)||!l.length)return!1;var c=e[1];if(!k(c)||c>=l.length)return!1;a=(r=(n.transformsRegistry[l[c].type]||{}).attributes)&&r[e[2]],s=3}else if(\"area\"===t.type)a=u[o];else{var h=t._module;if(h||(h=(n.modules[t.type||i.type.dflt]||{})._module),!h)return!1;if(!(a=(r=h.attributes)&&r[o])){var f=h.basePlotModule;f&&f.attributes&&(a=f.attributes[o])}a||(a=i[o])}return w(a,e,s)},r.getLayoutValObject=function(t,e){return w(function(t,e){var r,a,i,s,l=t._basePlotModules;if(l){var c;for(r=0;r<l.length;r++){if((i=l[r]).attrRegex&&i.attrRegex.test(e)){if(i.layoutAttrOverrides)return i.layoutAttrOverrides;!c&&i.layoutAttributes&&(c=i.layoutAttributes)}var u=i.baseLayoutAttrOverrides;if(u&&e in u)return u[e]}if(c)return c}var f=t._modules;if(f)for(r=0;r<f.length;r++)if((s=f[r].layoutAttributes)&&e in s)return s[e];for(a in n.componentsRegistry){if(\"colorscale\"===(i=n.componentsRegistry[a]).name&&0===e.indexOf(\"coloraxis\"))return i.layoutAttributes[e];if(!i.schema&&e===i.name)return i.layoutAttributes}if(e in o)return o[e];if(\"radialaxis\"===e||\"angularaxis\"===e)return h[e];return h.layout[e]||!1}(t,e[0]),e,1)}},{\"../lib\":719,\"../plots/animation_attributes\":762,\"../plots/attributes\":764,\"../plots/frame_attributes\":794,\"../plots/layout_attributes\":819,\"../plots/polar/legacy/area_attributes\":834,\"../plots/polar/legacy/axis_attributes\":835,\"../registry\":848,\"./edit_types\":750,\"./plot_config\":755}],757:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),a=t(\"../plots/attributes\"),i=\"templateitemname\",o={name:{valType:\"string\",editType:\"none\"}};function s(t){return t&&\"string\"==typeof t}function l(t){var e=t.length-1;return\"s\"!==t.charAt(e)&&n.warn(\"bad argument to arrayDefaultKey: \"+t),t.substr(0,t.length-1)+\"defaults\"}o[i]={valType:\"string\",editType:\"calc\"},r.templatedArray=function(t,e){return e._isLinkedToArray=t,e.name=o.name,e[i]=o[i],e},r.traceTemplater=function(t){var e,r,i={};for(e in t)r=t[e],Array.isArray(r)&&r.length&&(i[e]=0);return{newTrace:function(o){var s={type:e=n.coerce(o,{},a,\"type\"),_template:null};if(e in i){r=t[e];var l=i[e]%r.length;i[e]++,s._template=r[l]}return s}}},r.newContainer=function(t,e,r){var a=t._template,i=a&&(a[e]||r&&a[r]);return n.isPlainObject(i)||(i=null),t[e]={_template:i}},r.arrayTemplater=function(t,e,r){var n=t._template,a=n&&n[l(e)],o=n&&n[e];Array.isArray(o)&&o.length||(o=[]);var c={};return{newItem:function(t){var e={name:t.name,_input:t},n=e[i]=t[i];if(!s(n))return e._template=a,e;for(var l=0;l<o.length;l++){var u=o[l];if(u.name===n)return c[n]=1,e._template=u,e}return e[r]=t[r]||!1,e._template=!1,e},defaultItems:function(){for(var t=[],e=0;e<o.length;e++){var r=o[e],n=r.name;if(s(n)&&!c[n]){var a={_template:r,name:n,_input:{_templateitemname:n}};a[i]=r[i],t.push(a),c[n]=1}}return t}}},r.arrayDefaultKey=l,r.arrayEditor=function(t,e,r){var a=(n.nestedProperty(t,e).get()||[]).length,o=r._index,s=o>=a&&(r._input||{})._templateitemname;s&&(o=a);var l,c=e+\"[\"+o+\"]\";function u(){l={},s&&(l[c]={},l[c][i]=s)}function h(t,e){s?n.nestedProperty(l[c],t).set(e):l[c+\".\"+t]=e}function f(){var t=l;return u(),t}return u(),{modifyBase:function(t,e){l[t]=e},modifyItem:h,getUpdateObj:f,applyUpdate:function(e,r){e&&h(e,r);var a=f();for(var i in a)n.nestedProperty(t,i).set(a[i])}}}},{\"../lib\":719,\"../plots/attributes\":764}],758:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../registry\"),i=t(\"../plots/plots\"),o=t(\"../lib\"),s=t(\"../lib/clear_gl_canvases\"),l=t(\"../components/color\"),c=t(\"../components/drawing\"),u=t(\"../components/titles\"),h=t(\"../components/modebar\"),f=t(\"../plots/cartesian/axes\"),p=t(\"../constants/alignment\"),d=t(\"../plots/cartesian/constraints\"),g=d.enforce,v=d.clean,m=t(\"../plots/cartesian/autorange\").doAutoRange,y=\"start\",x=\"middle\",b=\"end\";function _(t,e,r){for(var n=0;n<r.length;n++){var a=r[n][0],i=r[n][1];if(!(a[0]>=t[1]||a[1]<=t[0])&&(i[0]<e[1]&&i[1]>e[0]))return!0}return!1}function w(t){var e,a,s,u,d,g,v=t._fullLayout,m=v._size,y=m.p,x=f.list(t,\"\",!0);if(v._paperdiv.style({width:t._context.responsive&&v.autosize&&!t._context._hasZeroWidth&&!t.layout.width?\"100%\":v.width+\"px\",height:t._context.responsive&&v.autosize&&!t._context._hasZeroHeight&&!t.layout.height?\"100%\":v.height+\"px\"}).selectAll(\".main-svg\").call(c.setSize,v.width,v.height),t._context.setBackground(t,v.paper_bgcolor),r.drawMainTitle(t),h.manage(t),!v._has(\"cartesian\"))return i.previousPromises(t);function b(t,e,r){var n=t._lw/2;return\"x\"===t._id.charAt(0)?e?\"top\"===r?e._offset-y-n:e._offset+e._length+y+n:m.t+m.h*(1-(t.position||0))+n%1:e?\"right\"===r?e._offset+e._length+y+n:e._offset-y-n:m.l+m.w*(t.position||0)+n%1}for(e=0;e<x.length;e++){var w=(u=x[e])._anchorAxis;u._linepositions={},u._lw=c.crispRound(t,u.linewidth,1),u._mainLinePosition=b(u,w,u.side),u._mainMirrorPosition=u.mirror&&w?b(u,w,p.OPPOSITE_SIDE[u.side]):null}var T=[],M=[],S=[],E=1===l.opacity(v.paper_bgcolor)&&1===l.opacity(v.plot_bgcolor)&&v.paper_bgcolor===v.plot_bgcolor;for(a in v._plots)if((s=v._plots[a]).mainplot)s.bg&&s.bg.remove(),s.bg=void 0;else{var C=s.xaxis.domain,L=s.yaxis.domain,P=s.plotgroup;if(_(C,L,S)){var O=P.node(),I=s.bg=o.ensureSingle(P,\"rect\",\"bg\");O.insertBefore(I.node(),O.childNodes[0]),M.push(a)}else P.select(\"rect.bg\").remove(),S.push([C,L]),E||(T.push(a),M.push(a))}var z,D,R,F,B,N,j,V,U,q,H,G,Y,W=v._bgLayer.selectAll(\".bg\").data(T);for(W.enter().append(\"rect\").classed(\"bg\",!0),W.exit().remove(),W.each(function(t){v._plots[t].bg=n.select(this)}),e=0;e<M.length;e++)s=v._plots[M[e]],d=s.xaxis,g=s.yaxis,s.bg&&s.bg.call(c.setRect,d._offset-y,g._offset-y,d._length+2*y,g._length+2*y).call(l.fill,v.plot_bgcolor).style(\"stroke-width\",0);if(!v._hasOnlyLargeSploms)for(a in v._plots){s=v._plots[a],d=s.xaxis,g=s.yaxis;var X,Z,J=s.clipId=\"clip\"+v._uid+a+\"plot\",K=o.ensureSingleById(v._clips,\"clipPath\",J,function(t){t.classed(\"plotclip\",!0).append(\"rect\")});s.clipRect=K.select(\"rect\").attr({width:d._length,height:g._length}),c.setTranslate(s.plot,d._offset,g._offset),s._hasClipOnAxisFalse?(X=null,Z=J):(X=J,Z=null),c.setClipUrl(s.plot,X,t),s.layerClipId=Z}function Q(t){return\"M\"+z+\",\"+t+\"H\"+D}function $(t){return\"M\"+d._offset+\",\"+t+\"h\"+d._length}function tt(t){return\"M\"+t+\",\"+V+\"V\"+j}function et(t){return\"M\"+t+\",\"+g._offset+\"v\"+g._length}function rt(t,e,r){if(!t.showline||a!==t._mainSubplot)return\"\";if(!t._anchorAxis)return r(t._mainLinePosition);var n=e(t._mainLinePosition);return t.mirror&&(n+=e(t._mainMirrorPosition)),n}for(a in v._plots){s=v._plots[a],d=s.xaxis,g=s.yaxis;var nt=\"M0,0\";k(d,a)&&(B=A(d,\"left\",g,x),z=d._offset-(B?y+B:0),N=A(d,\"right\",g,x),D=d._offset+d._length+(N?y+N:0),R=b(d,g,\"bottom\"),F=b(d,g,\"top\"),!(Y=!d._anchorAxis||a!==d._mainSubplot)||\"allticks\"!==d.mirror&&\"all\"!==d.mirror||(d._linepositions[a]=[R,F]),nt=rt(d,Q,$),Y&&d.showline&&(\"all\"===d.mirror||\"allticks\"===d.mirror)&&(nt+=Q(R)+Q(F)),s.xlines.style(\"stroke-width\",d._lw+\"px\").call(l.stroke,d.showline?d.linecolor:\"rgba(0,0,0,0)\")),s.xlines.attr(\"d\",nt);var at=\"M0,0\";k(g,a)&&(H=A(g,\"bottom\",d,x),j=g._offset+g._length+(H?y:0),G=A(g,\"top\",d,x),V=g._offset-(G?y:0),U=b(g,d,\"left\"),q=b(g,d,\"right\"),!(Y=!g._anchorAxis||a!==g._mainSubplot)||\"allticks\"!==g.mirror&&\"all\"!==g.mirror||(g._linepositions[a]=[U,q]),at=rt(g,tt,et),Y&&g.showline&&(\"all\"===g.mirror||\"allticks\"===g.mirror)&&(at+=tt(U)+tt(q)),s.ylines.style(\"stroke-width\",g._lw+\"px\").call(l.stroke,g.showline?g.linecolor:\"rgba(0,0,0,0)\")),s.ylines.attr(\"d\",at)}return f.makeClipPaths(t),i.previousPromises(t)}function k(t,e){return(t.ticks||t.showline)&&(e===t._mainSubplot||\"all\"===t.mirror||\"allticks\"===t.mirror)}function T(t,e,r){if(!r.showline||!r._lw)return!1;if(\"all\"===r.mirror||\"allticks\"===r.mirror)return!0;var n=r._anchorAxis;if(!n)return!1;var a=p.FROM_BL[e];return r.side===e?n.domain[a]===t.domain[a]:r.mirror&&n.domain[1-a]===t.domain[1-a]}function A(t,e,r,n){if(T(t,e,r))return r._lw;for(var a=0;a<n.length;a++){var i=n[a];if(i._mainAxis===r._mainAxis&&T(t,e,i))return i._lw}return 0}r.layoutStyles=function(t){return o.syncOrAsync([i.doAutoMargin,w],t)},r.drawMainTitle=function(t){var e=t._fullLayout,r=function(t){var e=t.title,r=x;o.isRightAnchor(e)?r=b:o.isLeftAnchor(e)&&(r=y);return r}(e),n=function(t){var e=t.title,r=\"0em\";o.isTopAnchor(e)?r=p.CAP_SHIFT+\"em\":o.isMiddleAnchor(e)&&(r=p.MID_SHIFT+\"em\");return r}(e);u.draw(t,\"gtitle\",{propContainer:e,propName:\"title.text\",placeholder:e._dfltTitle.plot,attributes:{x:function(t,e){var r=t.title,n=t._size,a=0;e===y?a=r.pad.l:e===b&&(a=-r.pad.r);switch(r.xref){case\"paper\":return n.l+n.w*r.x+a;case\"container\":default:return t.width*r.x+a}}(e,r),y:function(t,e){var r=t.title,n=t._size,a=0;\"0em\"!==e&&e?e===p.CAP_SHIFT+\"em\"&&(a=r.pad.t):a=-r.pad.b;if(\"auto\"===r.y)return n.t/2;switch(r.yref){case\"paper\":return n.t+n.h-n.h*r.y+a;case\"container\":default:return t.height-t.height*r.y+a}}(e,n),\"text-anchor\":r,dy:n}})},r.doTraceStyle=function(t){var e,n=t.calcdata,o=[];for(e=0;e<n.length;e++){var l=n[e],c=l[0]||{},u=c.trace||{},h=u._module||{},f=h.arraysToCalcdata;f&&f(l,u);var p=h.editStyle;p&&o.push({fn:p,cd0:c})}if(o.length){for(e=0;e<o.length;e++){var d=o[e];d.fn(t,d.cd0)}s(t),r.redrawReglTraces(t)}return i.style(t),a.getComponentMethod(\"legend\",\"draw\")(t),i.previousPromises(t)},r.doColorBars=function(t){return a.getComponentMethod(\"colorbar\",\"draw\")(t),i.previousPromises(t)},r.layoutReplot=function(t){var e=t.layout;return t.layout=void 0,a.call(\"plot\",t,\"\",e)},r.doLegend=function(t){return a.getComponentMethod(\"legend\",\"draw\")(t),i.previousPromises(t)},r.doTicksRelayout=function(t){return f.draw(t,\"redraw\"),t._fullLayout._hasOnlyLargeSploms&&(a.subplotsRegistry.splom.updateGrid(t),s(t),r.redrawReglTraces(t)),r.drawMainTitle(t),i.previousPromises(t)},r.doModeBar=function(t){var e=t._fullLayout;h.manage(t);for(var r=0;r<e._basePlotModules.length;r++){var n=e._basePlotModules[r].updateFx;n&&n(t)}return i.previousPromises(t)},r.doCamera=function(t){for(var e=t._fullLayout,r=e._subplots.gl3d,n=0;n<r.length;n++){var a=e[r[n]],i=a._scene,o=a.camera;i.setCamera(o)}},r.drawData=function(t){var e=t._fullLayout;s(t);for(var n=e._basePlotModules,o=0;o<n.length;o++)n[o].plot(t);return r.redrawReglTraces(t),i.style(t),a.getComponentMethod(\"shapes\",\"draw\")(t),a.getComponentMethod(\"annotations\",\"draw\")(t),a.getComponentMethod(\"images\",\"draw\")(t),e._replotting=!1,i.previousPromises(t)},r.redrawReglTraces=function(t){var e=t._fullLayout;if(e._has(\"regl\")){var r,n,a=t._fullData,i=[],s=[];for(e._hasOnlyLargeSploms&&e._splomGrid.draw(),r=0;r<a.length;r++){var l=a[r];!0===l.visible&&0!==l._length&&(\"splom\"===l.type?e._splomScenes[l.uid].draw():\"scattergl\"===l.type?o.pushUnique(i,l.xaxis+l.yaxis):\"scatterpolargl\"===l.type&&o.pushUnique(s,l.subplot))}for(r=0;r<i.length;r++)(n=e._plots[i[r]])._scene&&n._scene.draw();for(r=0;r<s.length;r++)(n=e[s[r]]._subplot)._scene&&n._scene.draw()}},r.doAutoRangeAndConstraints=function(t){for(var e,r,n=t._fullLayout,a=f.list(t,\"\",!0),i=n._axisMatchGroups||[],s=0;s<a.length;s++)e=a[s],v(t,e),m(t,e);g(t);t:for(var l=0;l<i.length;l++){var c,u=i[l],h=null;for(c in u){if(!1===(e=f.getFromId(t,c)).autorange)continue t;r=o.simpleMap(e.range,e.r2l),h?h[0]<h[1]?(h[0]=Math.min(h[0],r[0]),h[1]=Math.max(h[1],r[1])):(h[0]=Math.max(h[0],r[0]),h[1]=Math.min(h[1],r[1])):h=r}for(c in u)(e=f.getFromId(t,c)).range=o.simpleMap(h,e.l2r),e._input.range=e.range.slice(),e.setScale()}},r.finalDraw=function(t){a.getComponentMethod(\"rangeslider\",\"draw\")(t),a.getComponentMethod(\"rangeselector\",\"draw\")(t)},r.drawMarginPushers=function(t){a.getComponentMethod(\"legend\",\"draw\")(t),a.getComponentMethod(\"rangeselector\",\"draw\")(t),a.getComponentMethod(\"sliders\",\"draw\")(t),a.getComponentMethod(\"updatemenus\",\"draw\")(t),a.getComponentMethod(\"colorbar\",\"draw\")(t)}},{\"../components/color\":594,\"../components/drawing\":615,\"../components/modebar\":652,\"../components/titles\":681,\"../constants/alignment\":688,\"../lib\":719,\"../lib/clear_gl_canvases\":704,\"../plots/cartesian/autorange\":766,\"../plots/cartesian/axes\":767,\"../plots/cartesian/constraints\":774,\"../plots/plots\":828,\"../registry\":848,d3:164}],759:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),a=n.isPlainObject,i=t(\"./plot_schema\"),o=t(\"../plots/plots\"),s=t(\"../plots/attributes\"),l=t(\"./plot_template\"),c=t(\"./plot_config\").dfltConfig;function u(t,e){t=n.extendDeep({},t);var r,i,o=Object.keys(t).sort();function s(e,r,n){if(a(r)&&a(e))u(e,r);else if(Array.isArray(r)&&Array.isArray(e)){var o=l.arrayTemplater({_template:t},n);for(i=0;i<r.length;i++){var s=r[i],c=o.newItem(s)._template;c&&u(c,s)}var h=o.defaultItems();for(i=0;i<h.length;i++)r.push(h[i]._template);for(i=0;i<r.length;i++)delete r[i].templateitemname}}for(r=0;r<o.length;r++){var c=o[r],f=t[c];if(c in e?s(f,e[c],c):e[c]=f,h(c)===c)for(var p in e){var d=h(p);p===d||d!==c||p in t||s(f,e[p],c)}}}function h(t){return t.replace(/[0-9]+$/,\"\")}function f(t,e,r,i,o){var s=o&&r(o);for(var c in t){var u=t[c],d=p(t,c,i),g=p(t,c,o),v=r(g);if(!v){var m=h(c);m!==c&&(v=r(g=p(t,m,o)))}if((!s||s!==v)&&!(!v||v._noTemplating||\"data_array\"===v.valType||v.arrayOk&&Array.isArray(u)))if(!v.valType&&a(u))f(u,e,r,d,g);else if(v._isLinkedToArray&&Array.isArray(u))for(var y=!1,x=0,b={},_=0;_<u.length;_++){var w=u[_];if(a(w)){var k=w.name;if(k)b[k]||(f(w,e,r,p(u,x,d),p(u,x,g)),x++,b[k]=1);else if(!y){var T=p(t,l.arrayDefaultKey(c),i),A=p(u,x,d);f(w,e,r,A,p(u,x,g));var M=n.nestedProperty(e,A);n.nestedProperty(e,T).set(M.get()),M.set(null),y=!0}}}else{n.nestedProperty(e,d).set(u)}}}function p(t,e,r){return r?Array.isArray(t)?r+\"[\"+e+\"]\":r+\".\"+e:e}function d(t){for(var e=0;e<t.length;e++)if(a(t[e]))return!0}function g(t){var e;switch(t.code){case\"data\":e=\"The template has no key data.\";break;case\"layout\":e=\"The template has no key layout.\";break;case\"missing\":e=t.path?\"There are no templates for item \"+t.path+\" with name \"+t.templateitemname:\"There are no templates for trace \"+t.index+\", of type \"+t.traceType+\".\";break;case\"unused\":e=t.path?\"The template item at \"+t.path+\" was not used in constructing the plot.\":t.dataCount?\"Some of the templates of type \"+t.traceType+\" were not used. The template has \"+t.templateCount+\" traces, the data only has \"+t.dataCount+\" of this type.\":\"The template has \"+t.templateCount+\" traces of type \"+t.traceType+\" but there are none in the data.\";break;case\"reused\":e=\"Some of the templates of type \"+t.traceType+\" were used more than once. The template has \"+t.templateCount+\" traces, the data has \"+t.dataCount+\" of this type.\"}return t.msg=e,t}r.makeTemplate=function(t){t=n.isPlainObject(t)?t:n.getGraphDiv(t),t=n.extendDeep({_context:c},{data:t.data,layout:t.layout}),o.supplyDefaults(t);var e=t.data||[],r=t.layout||{};r._basePlotModules=t._fullLayout._basePlotModules,r._modules=t._fullLayout._modules;var l={data:{},layout:{}};e.forEach(function(t){var e={};f(t,e,function(t,e){return i.getTraceValObject(t,n.nestedProperty({},e).parts)}.bind(null,t));var r=n.coerce(t,{},s,\"type\"),a=l.data[r];a||(a=l.data[r]=[]),a.push(e)}),f(r,l.layout,function(t,e){return i.getLayoutValObject(t,n.nestedProperty({},e).parts)}.bind(null,r)),delete l.layout.template;var h=r.template;if(a(h)){var p,d,g,v,m,y,x=h.layout;a(x)&&u(x,l.layout);var b=h.data;if(a(b)){for(d in l.data)if(g=b[d],Array.isArray(g)){for(y=(m=l.data[d]).length,v=g.length,p=0;p<y;p++)u(g[p%v],m[p]);for(p=y;p<v;p++)m.push(n.extendDeep({},g[p]))}for(d in b)d in l.data||(l.data[d]=n.extendDeep([],b[d]))}}return l},r.validateTemplate=function(t,e){var r=n.extendDeep({},{_context:c,data:t.data,layout:t.layout}),i=r.layout||{};a(e)||(e=i.template||{});var s=e.layout,l=e.data,u=[];r.layout=i,r.layout.template=e,o.supplyDefaults(r);var f=r._fullLayout,v=r._fullData,m={};if(a(s)?(!function t(e,r){for(var n in e)if(\"_\"!==n.charAt(0)&&a(e[n])){var i,o=h(n),s=[];for(i=0;i<r.length;i++)s.push(p(e,n,r[i])),o!==n&&s.push(p(e,o,r[i]));for(i=0;i<s.length;i++)m[s[i]]=1;t(e[n],s)}}(f,[\"layout\"]),function t(e,r){for(var n in e)if(-1===n.indexOf(\"defaults\")&&a(e[n])){var i=p(e,n,r);m[i]?t(e[n],i):u.push({code:\"unused\",path:i})}}(s,\"layout\")):u.push({code:\"layout\"}),a(l)){for(var y,x={},b=0;b<v.length;b++){var _=v[b];x[y=_.type]=(x[y]||0)+1,_._fullInput._template||u.push({code:\"missing\",index:_._fullInput.index,traceType:y})}for(y in l){var w=l[y].length,k=x[y]||0;w>k?u.push({code:\"unused\",traceType:y,templateCount:w,dataCount:k}):k>w&&u.push({code:\"reused\",traceType:y,templateCount:w,dataCount:k})}}else u.push({code:\"data\"});if(function t(e,r){for(var n in e)if(\"_\"!==n.charAt(0)){var i=e[n],o=p(e,n,r);a(i)?(Array.isArray(e)&&!1===i._template&&i.templateitemname&&u.push({code:\"missing\",path:o,templateitemname:i.templateitemname}),t(i,o)):Array.isArray(i)&&d(i)&&t(i,o)}}({data:v,layout:f},\"\"),u.length)return u.map(g)}},{\"../lib\":719,\"../plots/attributes\":764,\"../plots/plots\":828,\"./plot_config\":755,\"./plot_schema\":756,\"./plot_template\":757}],760:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"./plot_api\"),i=t(\"../lib\"),o=t(\"../snapshot/helpers\"),s=t(\"../snapshot/tosvg\"),l=t(\"../snapshot/svgtoimg\"),c={format:{valType:\"enumerated\",values:[\"png\",\"jpeg\",\"webp\",\"svg\"],dflt:\"png\"},width:{valType:\"number\",min:1},height:{valType:\"number\",min:1},scale:{valType:\"number\",min:0,dflt:1},setBackground:{valType:\"any\",dflt:!1},imageDataOnly:{valType:\"boolean\",dflt:!1}};e.exports=function(t,e){var r,u,h,f;function p(t){return!(t in e)||i.validate(e[t],c[t])}if(e=e||{},i.isPlainObject(t)?(r=t.data||[],u=t.layout||{},h=t.config||{},f={}):(t=i.getGraphDiv(t),r=i.extendDeep([],t.data),u=i.extendDeep({},t.layout),h=t._context,f=t._fullLayout||{}),!p(\"width\")&&null!==e.width||!p(\"height\")&&null!==e.height)throw new Error(\"Height and width should be pixel values.\");if(!p(\"format\"))throw new Error(\"Image format is not jpeg, png, svg or webp.\");var d={};function g(t,r){return i.coerce(e,d,c,t,r)}var v=g(\"format\"),m=g(\"width\"),y=g(\"height\"),x=g(\"scale\"),b=g(\"setBackground\"),_=g(\"imageDataOnly\"),w=document.createElement(\"div\");w.style.position=\"absolute\",w.style.left=\"-5000px\",document.body.appendChild(w);var k=i.extendFlat({},u);m?k.width=m:null===e.width&&n(f.width)&&(k.width=f.width),y?k.height=y:null===e.height&&n(f.height)&&(k.height=f.height);var T=i.extendFlat({},h,{_exportedPlot:!0,staticPlot:!0,setBackground:b}),A=o.getRedrawFunc(w);function M(){return new Promise(function(t){setTimeout(t,o.getDelay(w._fullLayout))})}function S(){return new Promise(function(t,e){var r=s(w,v,x),n=w._fullLayout.width,c=w._fullLayout.height;if(a.purge(w),document.body.removeChild(w),\"svg\"===v)return t(_?r:o.encodeSVG(r));var u=document.createElement(\"canvas\");u.id=i.randstr(),l({format:v,width:n,height:c,scale:x,canvas:u,svg:r,promise:!0}).then(t).catch(e)})}return new Promise(function(t,e){a.plot(w,r,k,T).then(A).then(M).then(S).then(function(e){t(function(t){return _?t.replace(o.IMAGE_URL_PREFIX,\"\"):t}(e))}).catch(function(t){e(t)})})}},{\"../lib\":719,\"../snapshot/helpers\":852,\"../snapshot/svgtoimg\":854,\"../snapshot/tosvg\":856,\"./plot_api\":754,\"fast-isnumeric\":226}],761:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),a=t(\"../plots/plots\"),i=t(\"./plot_schema\"),o=t(\"./plot_config\").dfltConfig,s=n.isPlainObject,l=Array.isArray,c=n.isArrayOrTypedArray;function u(t,e,r,a,i,o){o=o||[];for(var h=Object.keys(t),f=0;f<h.length;f++){var v=h[f];if(\"transforms\"!==v){var m=o.slice();m.push(v);var y=t[v],x=e[v],b=g(r,v),_=\"info_array\"===(b||{}).valType,w=\"colorscale\"===(b||{}).valType,k=(b||{}).items;if(d(r,v))if(s(y)&&s(x))u(y,x,b,a,i,m);else if(_&&l(y)){y.length>x.length&&a.push(p(\"unused\",i,m.concat(x.length)));var T,A,M,S,E,C=x.length,L=Array.isArray(k);if(L&&(C=Math.min(C,k.length)),2===b.dimensions)for(A=0;A<C;A++)if(l(y[A])){y[A].length>x[A].length&&a.push(p(\"unused\",i,m.concat(A,x[A].length)));var P=x[A].length;for(T=0;T<(L?Math.min(P,k[A].length):P);T++)M=L?k[A][T]:k,S=y[A][T],E=x[A][T],n.validate(S,M)?E!==S&&E!==+S&&a.push(p(\"dynamic\",i,m.concat(A,T),S,E)):a.push(p(\"value\",i,m.concat(A,T),S))}else a.push(p(\"array\",i,m.concat(A),y[A]));else for(A=0;A<C;A++)M=L?k[A]:k,S=y[A],E=x[A],n.validate(S,M)?E!==S&&E!==+S&&a.push(p(\"dynamic\",i,m.concat(A),S,E)):a.push(p(\"value\",i,m.concat(A),S))}else if(b.items&&!_&&l(y)){var O,I,z=k[Object.keys(k)[0]],D=[];for(O=0;O<x.length;O++){var R=x[O]._index||O;if((I=m.slice()).push(R),s(y[R])&&s(x[O])){D.push(R);var F=y[R],B=x[O];s(F)&&!1!==F.visible&&!1===B.visible?a.push(p(\"invisible\",i,I)):u(F,B,z,a,i,I)}}for(O=0;O<y.length;O++)(I=m.slice()).push(O),s(y[O])?-1===D.indexOf(O)&&a.push(p(\"unused\",i,I)):a.push(p(\"object\",i,I,y[O]))}else!s(y)&&s(x)?a.push(p(\"object\",i,m,y)):c(y)||!c(x)||_||w?v in e?n.validate(y,b)?\"enumerated\"===b.valType&&(b.coerceNumber&&y!==+x||y!==x)&&a.push(p(\"dynamic\",i,m,y,x)):a.push(p(\"value\",i,m,y)):a.push(p(\"unused\",i,m,y)):a.push(p(\"array\",i,m,y));else a.push(p(\"schema\",i,m))}}return a}e.exports=function(t,e){var r,c,h=i.get(),f=[],d={_context:n.extendFlat({},o)};l(t)?(d.data=n.extendDeep([],t),r=t):(d.data=[],r=[],f.push(p(\"array\",\"data\"))),s(e)?(d.layout=n.extendDeep({},e),c=e):(d.layout={},c={},arguments.length>1&&f.push(p(\"object\",\"layout\"))),a.supplyDefaults(d);for(var g=d._fullData,v=r.length,m=0;m<v;m++){var y=r[m],x=[\"data\",m];if(s(y)){var b=g[m],_=b.type,w=h.traces[_].attributes;w.type={valType:\"enumerated\",values:[_]},!1===b.visible&&!1!==y.visible&&f.push(p(\"invisible\",x)),u(y,b,w,f,x);var k=y.transforms,T=b.transforms;if(k){l(k)||f.push(p(\"array\",x,[\"transforms\"])),x.push(\"transforms\");for(var A=0;A<k.length;A++){var M=[\"transforms\",A],S=k[A].type;if(s(k[A])){var E=h.transforms[S]?h.transforms[S].attributes:{};E.type={valType:\"enumerated\",values:Object.keys(h.transforms)},u(k[A],T[A],E,f,x,M)}else f.push(p(\"object\",x,M))}}}else f.push(p(\"object\",x))}return u(c,d._fullLayout,function(t,e){for(var r=t.layout.layoutAttributes,a=0;a<e.length;a++){var i=e[a],o=t.traces[i.type],s=o.layoutAttributes;s&&(i.subplot?n.extendFlat(r[o.attributes.subplot.dflt],s):n.extendFlat(r,s))}return r}(h,g),f,\"layout\"),0===f.length?void 0:f};var h={object:function(t,e){return(\"layout\"===t&&\"\"===e?\"The layout argument\":\"data\"===t[0]&&\"\"===e?\"Trace \"+t[1]+\" in the data argument\":f(t)+\"key \"+e)+\" must be linked to an object container\"},array:function(t,e){return(\"data\"===t?\"The data argument\":f(t)+\"key \"+e)+\" must be linked to an array container\"},schema:function(t,e){return f(t)+\"key \"+e+\" is not part of the schema\"},unused:function(t,e,r){var n=s(r)?\"container\":\"key\";return f(t)+n+\" \"+e+\" did not get coerced\"},dynamic:function(t,e,r,n){return[f(t)+\"key\",e,\"(set to '\"+r+\"')\",\"got reset to\",\"'\"+n+\"'\",\"during defaults.\"].join(\" \")},invisible:function(t,e){return(e?f(t)+\"item \"+e:\"Trace \"+t[1])+\" got defaulted to be not visible\"},value:function(t,e,r){return[f(t)+\"key \"+e,\"is set to an invalid value (\"+r+\")\"].join(\" \")}};function f(t){return l(t)?\"In data trace \"+t[1]+\", \":\"In \"+t+\", \"}function p(t,e,r,a,i){var o,s;r=r||\"\",l(e)?(o=e[0],s=e[1]):(o=e,s=null);var c=function(t){if(!l(t))return String(t);for(var e=\"\",r=0;r<t.length;r++){var n=t[r];\"number\"==typeof n?e=e.substr(0,e.length-1)+\"[\"+n+\"]\":e+=n,r<t.length-1&&(e+=\".\")}return e}(r),u=h[t](e,c,a,i);return n.log(u),{code:t,container:o,trace:s,path:r,astr:c,msg:u}}function d(t,e){var r=m(e),n=r.keyMinusId,a=r.id;return!!(n in t&&t[n]._isSubplotObj&&a)||e in t}function g(t,e){return e in t?t[e]:t[m(e).keyMinusId]}var v=n.counterRegex(\"([a-z]+)\");function m(t){var e=t.match(v);return{keyMinusId:e&&e[1],id:e&&e[2]}}},{\"../lib\":719,\"../plots/plots\":828,\"./plot_config\":755,\"./plot_schema\":756}],762:[function(t,e,r){\"use strict\";e.exports={mode:{valType:\"enumerated\",dflt:\"afterall\",values:[\"immediate\",\"next\",\"afterall\"]},direction:{valType:\"enumerated\",values:[\"forward\",\"reverse\"],dflt:\"forward\"},fromcurrent:{valType:\"boolean\",dflt:!1},frame:{duration:{valType:\"number\",min:0,dflt:500},redraw:{valType:\"boolean\",dflt:!0}},transition:{duration:{valType:\"number\",min:0,dflt:500,editType:\"none\"},easing:{valType:\"enumerated\",dflt:\"cubic-in-out\",values:[\"linear\",\"quad\",\"cubic\",\"sin\",\"exp\",\"circle\",\"elastic\",\"back\",\"bounce\",\"linear-in\",\"quad-in\",\"cubic-in\",\"sin-in\",\"exp-in\",\"circle-in\",\"elastic-in\",\"back-in\",\"bounce-in\",\"linear-out\",\"quad-out\",\"cubic-out\",\"sin-out\",\"exp-out\",\"circle-out\",\"elastic-out\",\"back-out\",\"bounce-out\",\"linear-in-out\",\"quad-in-out\",\"cubic-in-out\",\"sin-in-out\",\"exp-in-out\",\"circle-in-out\",\"elastic-in-out\",\"back-in-out\",\"bounce-in-out\"],editType:\"none\"},ordering:{valType:\"enumerated\",values:[\"layout first\",\"traces first\"],dflt:\"layout first\",editType:\"none\"}}}},{}],763:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),a=t(\"../plot_api/plot_template\");e.exports=function(t,e,r){var i,o,s=r.name,l=r.inclusionAttr||\"visible\",c=e[s],u=n.isArrayOrTypedArray(t[s])?t[s]:[],h=e[s]=[],f=a.arrayTemplater(e,s,l);for(i=0;i<u.length;i++){var p=u[i];n.isPlainObject(p)?o=f.newItem(p):(o=f.newItem({}))[l]=!1,o._index=i,!1!==o[l]&&r.handleItemDefaults(p,o,e,r),h.push(o)}var d=f.defaultItems();for(i=0;i<d.length;i++)(o=d[i])._index=h.length,r.handleItemDefaults({},o,e,r,{}),h.push(o);if(n.isArrayOrTypedArray(c)){var g=Math.min(c.length,h.length);for(i=0;i<g;i++)n.relinkPrivateKeys(h[i],c[i])}return h}},{\"../lib\":719,\"../plot_api/plot_template\":757}],764:[function(t,e,r){\"use strict\";var n=t(\"../components/fx/attributes\");e.exports={type:{valType:\"enumerated\",values:[],dflt:\"scatter\",editType:\"calc+clearAxisTypes\",_noTemplating:!0},visible:{valType:\"enumerated\",values:[!0,!1,\"legendonly\"],dflt:!0,editType:\"calc\"},showlegend:{valType:\"boolean\",dflt:!0,editType:\"style\"},legendgroup:{valType:\"string\",dflt:\"\",editType:\"style\"},opacity:{valType:\"number\",min:0,max:1,dflt:1,editType:\"style\"},name:{valType:\"string\",editType:\"style\"},uid:{valType:\"string\",editType:\"plot\",anim:!0},ids:{valType:\"data_array\",editType:\"calc\",anim:!0},customdata:{valType:\"data_array\",editType:\"calc\"},meta:{valType:\"any\",arrayOk:!0,editType:\"plot\"},selectedpoints:{valType:\"any\",editType:\"calc\"},hoverinfo:{valType:\"flaglist\",flags:[\"x\",\"y\",\"z\",\"text\",\"name\"],extras:[\"all\",\"none\",\"skip\"],arrayOk:!0,dflt:\"all\",editType:\"none\"},hoverlabel:n.hoverlabel,stream:{token:{valType:\"string\",noBlank:!0,strict:!0,editType:\"calc\"},maxpoints:{valType:\"number\",min:0,max:1e4,dflt:500,editType:\"calc\"},editType:\"calc\"},transforms:{_isLinkedToArray:\"transform\",editType:\"calc\"},uirevision:{valType:\"any\",editType:\"none\"}}},{\"../components/fx/attributes\":624}],765:[function(t,e,r){\"use strict\";e.exports={xaxis:{valType:\"subplotid\",dflt:\"x\",editType:\"calc+clearAxisTypes\"},yaxis:{valType:\"subplotid\",dflt:\"y\",editType:\"calc+clearAxisTypes\"}}},{}],766:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\"),i=t(\"../../constants/numerical\").FP_SAFE,o=t(\"../../registry\");function s(t,e){var r,n,i=[],o=l(e),s=c(t,e),u=s.min,h=s.max;if(0===u.length||0===h.length)return a.simpleMap(e.range,e.r2l);var f=u[0].val,p=h[0].val;for(r=1;r<u.length&&f===p;r++)f=Math.min(f,u[r].val);for(r=1;r<h.length&&f===p;r++)p=Math.max(p,h[r].val);var d=!1;if(e.range){var g=a.simpleMap(e.range,e.r2l);d=g[1]<g[0]}\"reversed\"===e.autorange&&(d=!0,e.autorange=!0);var v,m,y,x,b,_,w=e.rangemode,k=\"tozero\"===w,T=\"nonnegative\"===w,A=e._length,M=A/10,S=0;for(r=0;r<u.length;r++)for(v=u[r],n=0;n<h.length;n++)(_=(m=h[n]).val-v.val)>0&&((b=A-o(v)-o(m))>M?_/b>S&&(y=v,x=m,S=_/b):_/A>S&&(y={val:v.val,pad:0},x={val:m.val,pad:0},S=_/A));if(f===p){var E=f-1,C=f+1;if(k)if(0===f)i=[0,1];else{var L=(f>0?h:u).reduce(function(t,e){return Math.max(t,o(e))},0),P=f/(1-Math.min(.5,L/A));i=f>0?[0,P]:[P,0]}else i=T?[Math.max(0,E),Math.max(1,C)]:[E,C]}else k?(y.val>=0&&(y={val:0,pad:0}),x.val<=0&&(x={val:0,pad:0})):T&&(y.val-S*o(y)<0&&(y={val:0,pad:0}),x.val<=0&&(x={val:1,pad:0})),S=(x.val-y.val)/(A-o(y)-o(x)),i=[y.val-S*o(y),x.val+S*o(x)];return d&&i.reverse(),a.simpleMap(i,e.l2r||Number)}function l(t){var e=t._length/20;return\"domain\"===t.constrain&&t._inputDomain&&(e*=(t._inputDomain[1]-t._inputDomain[0])/(t.domain[1]-t.domain[0])),function(t){return t.pad+(t.extrapad?e:0)}}function c(t,e){var r,n,a,i=e._id,o=t._fullData,s=t._fullLayout,l=[],c=[];function f(t,e){for(r=0;r<e.length;r++){var o=t[e[r]],s=(o._extremes||{})[i];if(!0===o.visible&&s){for(n=0;n<s.min.length;n++)a=s.min[n],u(l,a.val,a.pad,{extrapad:a.extrapad});for(n=0;n<s.max.length;n++)a=s.max[n],h(c,a.val,a.pad,{extrapad:a.extrapad})}}}return f(o,e._traceIndices),f(s.annotations||[],e._annIndices||[]),f(s.shapes||[],e._shapeIndices||[]),{min:l,max:c}}function u(t,e,r,n){f(t,e,r,n,d)}function h(t,e,r,n){f(t,e,r,n,g)}function f(t,e,r,n,a){for(var i=n.tozero,o=n.extrapad,s=!0,l=0;l<t.length&&s;l++){var c=t[l];if(a(c.val,e)&&c.pad>=r&&(c.extrapad||!o)){s=!1;break}a(e,c.val)&&c.pad<=r&&(o||!c.extrapad)&&(t.splice(l,1),l--)}if(s){var u=i&&0===e;t.push({val:e,pad:u?0:r,extrapad:!u&&o})}}function p(t){return n(t)&&Math.abs(t)<i}function d(t,e){return t<=e}function g(t,e){return t>=e}e.exports={getAutoRange:s,makePadFn:l,doAutoRange:function(t,e){if(e.setScale(),e.autorange){e.range=s(t,e),e._r=e.range.slice(),e._rl=a.simpleMap(e._r,e.r2l);var r=e._input,n={};n[e._attr+\".range\"]=e.range,n[e._attr+\".autorange\"]=e.autorange,o.call(\"_storeDirectGUIEdit\",t.layout,t._fullLayout._preGUI,n),r.range=e.range.slice(),r.autorange=e.autorange}var i=e._anchorAxis;if(i&&i.rangeslider){var l=i.rangeslider[e._name];l&&\"auto\"===l.rangemode&&(l.range=s(t,e)),i._input.rangeslider[e._name]=a.extendFlat({},l)}},findExtremes:function(t,e,r){r||(r={});t._m||t.setScale();var a,o,s,l,c,f,d,g,v,m=[],y=[],x=e.length,b=r.padded||!1,_=r.tozero&&(\"linear\"===t.type||\"-\"===t.type),w=\"log\"===t.type,k=!1;function T(t){if(Array.isArray(t))return k=!0,function(e){return Math.max(Number(t[e]||0),0)};var e=Math.max(Number(t||0),0);return function(){return e}}var A=T((t._m>0?r.ppadplus:r.ppadminus)||r.ppad||0),M=T((t._m>0?r.ppadminus:r.ppadplus)||r.ppad||0),S=T(r.vpadplus||r.vpad),E=T(r.vpadminus||r.vpad);if(!k){if(g=1/0,v=-1/0,w)for(a=0;a<x;a++)(o=e[a])<g&&o>0&&(g=o),o>v&&o<i&&(v=o);else for(a=0;a<x;a++)(o=e[a])<g&&o>-i&&(g=o),o>v&&o<i&&(v=o);e=[g,v],x=2}var C={tozero:_,extrapad:b};function L(r){s=e[r],n(s)&&(f=A(r),d=M(r),g=s-E(r),v=s+S(r),w&&g<v/10&&(g=v/10),l=t.c2l(g),c=t.c2l(v),_&&(l=Math.min(0,l),c=Math.max(0,c)),p(l)&&u(m,l,d,C),p(c)&&h(y,c,f,C))}var P=Math.min(6,x);for(a=0;a<P;a++)L(a);for(a=x-1;a>=P;a--)L(a);return{min:m,max:y,opts:r}},concatExtremes:c}},{\"../../constants/numerical\":695,\"../../lib\":719,\"../../registry\":848,\"fast-isnumeric\":226}],767:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"fast-isnumeric\"),i=t(\"../../plots/plots\"),o=t(\"../../registry\"),s=t(\"../../lib\"),l=t(\"../../lib/svg_text_utils\"),c=t(\"../../components/titles\"),u=t(\"../../components/color\"),h=t(\"../../components/drawing\"),f=t(\"./layout_attributes\"),p=t(\"./clean_ticks\"),d=t(\"../../constants/numerical\"),g=d.ONEAVGYEAR,v=d.ONEAVGMONTH,m=d.ONEDAY,y=d.ONEHOUR,x=d.ONEMIN,b=d.ONESEC,_=d.MINUS_SIGN,w=d.BADNUM,k=t(\"../../constants/alignment\").MID_SHIFT,T=t(\"../../constants/alignment\").LINE_SPACING,A=t(\"../../constants/alignment\").OPPOSITE_SIDE,M=e.exports={};M.setConvert=t(\"./set_convert\");var S=t(\"./axis_autotype\"),E=t(\"./axis_ids\");M.id2name=E.id2name,M.name2id=E.name2id,M.cleanId=E.cleanId,M.list=E.list,M.listIds=E.listIds,M.getFromId=E.getFromId,M.getFromTrace=E.getFromTrace;var C=t(\"./autorange\");M.getAutoRange=C.getAutoRange,M.findExtremes=C.findExtremes,M.coerceRef=function(t,e,r,n,a,i){var o=n.charAt(n.length-1),l=r._fullLayout._subplots[o+\"axis\"],c=n+\"ref\",u={};return a||(a=l[0]||i),i||(i=a),u[c]={valType:\"enumerated\",values:l.concat(i?[i]:[]),dflt:a},s.coerce(t,e,u,c)},M.coercePosition=function(t,e,r,n,a,i){var o,l;if(\"paper\"===n||\"pixel\"===n)o=s.ensureNumber,l=r(a,i);else{var c=M.getFromId(e,n);l=r(a,i=c.fraction2r(i)),o=c.cleanPos}t[a]=o(l)},M.cleanPosition=function(t,e,r){return(\"paper\"===r||\"pixel\"===r?s.ensureNumber:M.getFromId(e,r).cleanPos)(t)},M.redrawComponents=function(t,e){e=e||M.listIds(t);var r=t._fullLayout;function n(n,a,i,s){for(var l=o.getComponentMethod(n,a),c={},u=0;u<e.length;u++)for(var h=r[M.id2name(e[u])][i],f=0;f<h.length;f++){var p=h[f];if(!c[p]&&(l(t,p),c[p]=1,s))return}}n(\"annotations\",\"drawOne\",\"_annIndices\"),n(\"shapes\",\"drawOne\",\"_shapeIndices\"),n(\"images\",\"draw\",\"_imgIndices\",!0)};var L=M.getDataConversions=function(t,e,r,n){var a,i=\"x\"===r||\"y\"===r||\"z\"===r?r:n;if(Array.isArray(i)){if(a={type:S(n),_categories:[]},M.setConvert(a),\"category\"===a.type)for(var o=0;o<n.length;o++)a.d2c(n[o])}else a=M.getFromTrace(t,e,i);return a?{d2c:a.d2c,c2d:a.c2d}:\"ids\"===i?{d2c:O,c2d:O}:{d2c:P,c2d:P}};function P(t){return+t}function O(t){return String(t)}M.getDataToCoordFunc=function(t,e,r,n){return L(t,e,r,n).d2c},M.counterLetter=function(t){var e=t.charAt(0);return\"x\"===e?\"y\":\"y\"===e?\"x\":void 0},M.minDtick=function(t,e,r,n){-1===[\"log\",\"category\",\"multicategory\"].indexOf(t.type)&&n?void 0===t._minDtick?(t._minDtick=e,t._forceTick0=r):t._minDtick&&((t._minDtick/e+1e-6)%1<2e-6&&((r-t._forceTick0)/e%1+1.000001)%1<2e-6?(t._minDtick=e,t._forceTick0=r):((e/t._minDtick+1e-6)%1>2e-6||((r-t._forceTick0)/t._minDtick%1+1.000001)%1>2e-6)&&(t._minDtick=0)):t._minDtick=0},M.saveRangeInitial=function(t,e){for(var r=M.list(t,\"\",!0),n=!1,a=0;a<r.length;a++){var i=r[a],o=void 0===i._rangeInitial,s=o||!(i.range[0]===i._rangeInitial[0]&&i.range[1]===i._rangeInitial[1]);(o&&!1===i.autorange||e&&s)&&(i._rangeInitial=i.range.slice(),n=!0)}return n},M.saveShowSpikeInitial=function(t,e){for(var r=M.list(t,\"\",!0),n=!1,a=\"on\",i=0;i<r.length;i++){var o=r[i],s=void 0===o._showSpikeInitial,l=s||!(o.showspikes===o._showspikes);(s||e&&l)&&(o._showSpikeInitial=o.showspikes,n=!0),\"on\"!==a||o.showspikes||(a=\"off\")}return t._fullLayout._cartesianSpikesEnabled=a,n},M.autoBin=function(t,e,r,n,i,o){var l,c=s.aggNums(Math.min,null,t),u=s.aggNums(Math.max,null,t);if(\"category\"===e.type||\"multicategory\"===e.type)return{start:c-.5,end:u+.5,size:Math.max(1,Math.round(o)||1),_dataSpan:u-c};if(i||(i=e.calendar),l=\"log\"===e.type?{type:\"linear\",range:[c,u]}:{type:e.type,range:s.simpleMap([c,u],e.c2r,0,i),calendar:i},M.setConvert(l),o=o&&p.dtick(o,l.type))l.dtick=o,l.tick0=p.tick0(void 0,l.type,i);else{var h;if(r)h=(u-c)/r;else{var f=s.distinctVals(t),d=Math.pow(10,Math.floor(Math.log(f.minDiff)/Math.LN10)),g=d*s.roundUp(f.minDiff/d,[.9,1.9,4.9,9.9],!0);h=Math.max(g,2*s.stdev(t)/Math.pow(t.length,n?.25:.4)),a(h)||(h=1)}M.autoTicks(l,h)}var v,y=l.dtick,x=M.tickIncrement(M.tickFirst(l),y,\"reverse\",i);if(\"number\"==typeof y)v=(x=function(t,e,r,n,i){var o=0,s=0,l=0,c=0;function u(e){return(1+100*(e-t)/r.dtick)%100<2}for(var h=0;h<e.length;h++)e[h]%1==0?l++:a(e[h])||c++,u(e[h])&&o++,u(e[h]+r.dtick/2)&&s++;var f=e.length-c;if(l===f&&\"date\"!==r.type)r.dtick<1?t=n-.5*r.dtick:(t-=.5)+r.dtick<n&&(t+=r.dtick);else if(s<.1*f&&(o>.3*f||u(n)||u(i))){var p=r.dtick/2;t+=t+p<n?p:-p}return t}(x,t,l,c,u))+(1+Math.floor((u-x)/y))*y;else for(\"M\"===l.dtick.charAt(0)&&(x=function(t,e,r,n,a){var i=s.findExactDates(e,a);if(i.exactDays>.8){var o=Number(r.substr(1));i.exactYears>.8&&o%12==0?t=M.tickIncrement(t,\"M6\",\"reverse\")+1.5*m:i.exactMonths>.8?t=M.tickIncrement(t,\"M1\",\"reverse\")+15.5*m:t-=m/2;var l=M.tickIncrement(t,r);if(l<=n)return l}return t}(x,t,y,c,i)),v=x,0;v<=u;)v=M.tickIncrement(v,y,!1,i),0;return{start:e.c2r(x,0,i),end:e.c2r(v,0,i),size:y,_dataSpan:u-c}},M.prepTicks=function(t){var e=s.simpleMap(t.range,t.r2l);if(\"auto\"===t.tickmode||!t.dtick){var r,n=t.nticks;n||(\"category\"===t.type||\"multicategory\"===t.type?(r=t.tickfont?1.2*(t.tickfont.size||12):15,n=t._length/r):(r=\"y\"===t._id.charAt(0)?40:80,n=s.constrain(t._length/r,4,9)+1),\"radialaxis\"===t._name&&(n*=2)),\"array\"===t.tickmode&&(n*=100),M.autoTicks(t,Math.abs(e[1]-e[0])/n),t._minDtick>0&&t.dtick<2*t._minDtick&&(t.dtick=t._minDtick,t.tick0=t.l2r(t._forceTick0))}t.tick0||(t.tick0=\"date\"===t.type?\"2000-01-01\":0),\"date\"===t.type&&t.dtick<.1&&(t.dtick=.1),V(t)},M.calcTicks=function(t){M.prepTicks(t);var e=s.simpleMap(t.range,t.r2l);if(\"array\"===t.tickmode)return function(t){var e=t.tickvals,r=t.ticktext,n=new Array(e.length),a=s.simpleMap(t.range,t.r2l),i=1.0001*a[0]-1e-4*a[1],o=1.0001*a[1]-1e-4*a[0],l=Math.min(i,o),c=Math.max(i,o),u=0;Array.isArray(r)||(r=[]);var h=\"category\"===t.type?t.d2l_noadd:t.d2l;\"log\"===t.type&&\"L\"!==String(t.dtick).charAt(0)&&(t.dtick=\"L\"+Math.pow(10,Math.floor(Math.min(t.range[0],t.range[1]))-1));for(var f=0;f<e.length;f++){var p=h(e[f]);p>l&&p<c&&(void 0===r[f]?n[u]=M.tickText(t,p):n[u]=U(t,p,String(r[f])),u++)}u<e.length&&n.splice(u,e.length-u);return n}(t);t._tmin=M.tickFirst(t);var r=1.0001*e[0]-1e-4*e[1],n=1.0001*e[1]-1e-4*e[0],i=e[1]<e[0];if(t._tmin<r!==i)return[];var o=[];\"category\"!==t.type&&\"multicategory\"!==t.type||(n=i?Math.max(-.5,n):Math.min(t._categories.length-.5,n));for(var l=\"log\"===t.type&&!(a(t.dtick)||\"L\"===t.dtick.charAt(0)),c=null,u=Math.max(1e3,t._length||0),h=t._tmin;(i?h>=n:h<=n)&&!(o.length>u||h===c);h=M.tickIncrement(h,t.dtick,i,t.calendar)){c=h;var f=!1;l&&h!==(0|h)&&(f=!0),o.push({minor:f,value:h})}rt(t)&&360===Math.abs(e[1]-e[0])&&o.pop(),t._tmax=(o[o.length-1]||{}).value,t._prevDateHead=\"\",t._inCalcTicks=!0;for(var p=new Array(o.length),d=0;d<o.length;d++)p[d]=M.tickText(t,o[d].value,!1,o[d].minor);return t._inCalcTicks=!1,p};var I=[2,5,10],z=[1,2,3,6,12],D=[1,2,5,10,15,30],R=[1,2,3,7,14],F=[-.046,0,.301,.477,.602,.699,.778,.845,.903,.954,1],B=[-.301,0,.301,.699,1],N=[15,30,45,90,180];function j(t,e,r){return e*s.roundUp(t/e,r)}function V(t){var e=t.dtick;if(t._tickexponent=0,a(e)||\"string\"==typeof e||(e=1),\"category\"!==t.type&&\"multicategory\"!==t.type||(t._tickround=null),\"date\"===t.type){var r=t.r2l(t.tick0),n=t.l2r(r).replace(/(^-|i)/g,\"\"),i=n.length;if(\"M\"===String(e).charAt(0))i>10||\"01-01\"!==n.substr(5)?t._tickround=\"d\":t._tickround=+e.substr(1)%12==0?\"y\":\"m\";else if(e>=m&&i<=10||e>=15*m)t._tickround=\"d\";else if(e>=x&&i<=16||e>=y)t._tickround=\"M\";else if(e>=b&&i<=19||e>=x)t._tickround=\"S\";else{var o=t.l2r(r+e).replace(/^-/,\"\").length;t._tickround=Math.max(i,o)-20,t._tickround<0&&(t._tickround=4)}}else if(a(e)||\"L\"===e.charAt(0)){var s=t.range.map(t.r2d||Number);a(e)||(e=Number(e.substr(1))),t._tickround=2-Math.floor(Math.log(e)/Math.LN10+.01);var l=Math.max(Math.abs(s[0]),Math.abs(s[1])),c=Math.floor(Math.log(l)/Math.LN10+.01);Math.abs(c)>3&&(H(t.exponentformat)&&!G(c)?t._tickexponent=3*Math.round((c-1)/3):t._tickexponent=c)}else t._tickround=null}function U(t,e,r){var n=t.tickfont||{};return{x:e,dx:0,dy:0,text:r||\"\",fontSize:n.size,font:n.family,fontColor:n.color}}M.autoTicks=function(t,e){var r;function n(t){return Math.pow(t,Math.floor(Math.log(e)/Math.LN10))}if(\"date\"===t.type){t.tick0=s.dateTick0(t.calendar);var i=2*e;i>g?(e/=g,r=n(10),t.dtick=\"M\"+12*j(e,r,I)):i>v?(e/=v,t.dtick=\"M\"+j(e,1,z)):i>m?(t.dtick=j(e,m,R),t.tick0=s.dateTick0(t.calendar,!0)):i>y?t.dtick=j(e,y,z):i>x?t.dtick=j(e,x,D):i>b?t.dtick=j(e,b,D):(r=n(10),t.dtick=j(e,r,I))}else if(\"log\"===t.type){t.tick0=0;var o=s.simpleMap(t.range,t.r2l);if(e>.7)t.dtick=Math.ceil(e);else if(Math.abs(o[1]-o[0])<1){var l=1.5*Math.abs((o[1]-o[0])/e);e=Math.abs(Math.pow(10,o[1])-Math.pow(10,o[0]))/l,r=n(10),t.dtick=\"L\"+j(e,r,I)}else t.dtick=e>.3?\"D2\":\"D1\"}else\"category\"===t.type||\"multicategory\"===t.type?(t.tick0=0,t.dtick=Math.ceil(Math.max(e,1))):rt(t)?(t.tick0=0,r=1,t.dtick=j(e,r,N)):(t.tick0=0,r=n(10),t.dtick=j(e,r,I));if(0===t.dtick&&(t.dtick=1),!a(t.dtick)&&\"string\"!=typeof t.dtick){var c=t.dtick;throw t.dtick=1,\"ax.dtick error: \"+String(c)}},M.tickIncrement=function(t,e,r,i){var o=r?-1:1;if(a(e))return t+o*e;var l=e.charAt(0),c=o*Number(e.substr(1));if(\"M\"===l)return s.incrementMonth(t,c,i);if(\"L\"===l)return Math.log(Math.pow(10,t)+c)/Math.LN10;if(\"D\"===l){var u=\"D2\"===e?B:F,h=t+.01*o,f=s.roundUp(s.mod(h,1),u,r);return Math.floor(h)+Math.log(n.round(Math.pow(10,f),1))/Math.LN10}throw\"unrecognized dtick \"+String(e)},M.tickFirst=function(t){var e=t.r2l||Number,r=s.simpleMap(t.range,e),i=r[1]<r[0],o=i?Math.floor:Math.ceil,l=1.0001*r[0]-1e-4*r[1],c=t.dtick,u=e(t.tick0);if(a(c)){var h=o((l-u)/c)*c+u;return\"category\"!==t.type&&\"multicategory\"!==t.type||(h=s.constrain(h,0,t._categories.length-1)),h}var f=c.charAt(0),p=Number(c.substr(1));if(\"M\"===f){for(var d,g,v,m=0,y=u;m<10;){if(((d=M.tickIncrement(y,c,i,t.calendar))-l)*(y-l)<=0)return i?Math.min(y,d):Math.max(y,d);g=(l-(y+d)/2)/(d-y),v=f+(Math.abs(Math.round(g))||1)*p,y=M.tickIncrement(y,v,g<0?!i:i,t.calendar),m++}return s.error(\"tickFirst did not converge\",t),y}if(\"L\"===f)return Math.log(o((Math.pow(10,l)-u)/p)*p+u)/Math.LN10;if(\"D\"===f){var x=\"D2\"===c?B:F,b=s.roundUp(s.mod(l,1),x,i);return Math.floor(l)+Math.log(n.round(Math.pow(10,b),1))/Math.LN10}throw\"unrecognized dtick \"+String(c)},M.tickText=function(t,e,r,n){var i,o=U(t,e),l=\"array\"===t.tickmode,c=r||l,u=t.type,h=\"category\"===u?t.d2l_noadd:t.d2l;if(l&&Array.isArray(t.ticktext)){var f=s.simpleMap(t.range,t.r2l),p=Math.abs(f[1]-f[0])/1e4;for(i=0;i<t.ticktext.length&&!(Math.abs(e-h(t.tickvals[i]))<p);i++);if(i<t.ticktext.length)return o.text=String(t.ticktext[i]),o}function d(n){if(void 0===n)return!0;if(r)return\"none\"===n;var a={first:t._tmin,last:t._tmax}[n];return\"all\"!==n&&e!==a}var g=r?\"never\":\"none\"!==t.exponentformat&&d(t.showexponent)?\"hide\":\"\";if(\"date\"===u?function(t,e,r,n){var i=t._tickround,o=r&&t.hoverformat||M.getTickFormat(t);n&&(i=a(i)?4:{y:\"m\",m:\"d\",d:\"M\",M:\"S\",S:4}[i]);var l,c=s.formatDate(e.x,o,i,t._dateFormat,t.calendar,t._extraFormat),u=c.indexOf(\"\\n\");-1!==u&&(l=c.substr(u+1),c=c.substr(0,u));n&&(\"00:00:00\"===c||\"00:00\"===c?(c=l,l=\"\"):8===c.length&&(c=c.replace(/:00$/,\"\")));l&&(r?\"d\"===i?c+=\", \"+l:c=l+(c?\", \"+c:\"\"):t._inCalcTicks&&l===t._prevDateHead||(c+=\"<br>\"+l,t._prevDateHead=l));e.text=c}(t,o,r,c):\"log\"===u?function(t,e,r,n,i){var o=t.dtick,l=e.x,c=t.tickformat,u=\"string\"==typeof o&&o.charAt(0);\"never\"===i&&(i=\"\");n&&\"L\"!==u&&(o=\"L3\",u=\"L\");if(c||\"L\"===u)e.text=Y(Math.pow(10,l),t,i,n);else if(a(o)||\"D\"===u&&s.mod(l+.01,1)<.1){var h=Math.round(l),f=Math.abs(h),p=t.exponentformat;\"power\"===p||H(p)&&G(h)?(e.text=0===h?1:1===h?\"10\":\"10<sup>\"+(h>1?\"\":_)+f+\"</sup>\",e.fontSize*=1.25):(\"e\"===p||\"E\"===p)&&f>2?e.text=\"1\"+p+(h>0?\"+\":_)+f:(e.text=Y(Math.pow(10,l),t,\"\",\"fakehover\"),\"D1\"===o&&\"y\"===t._id.charAt(0)&&(e.dy-=e.fontSize/6))}else{if(\"D\"!==u)throw\"unrecognized dtick \"+String(o);e.text=String(Math.round(Math.pow(10,s.mod(l,1)))),e.fontSize*=.75}if(\"D1\"===t.dtick){var d=String(e.text).charAt(0);\"0\"!==d&&\"1\"!==d||(\"y\"===t._id.charAt(0)?e.dx-=e.fontSize/4:(e.dy+=e.fontSize/2,e.dx+=(t.range[1]>t.range[0]?1:-1)*e.fontSize*(l<0?.5:.25)))}}(t,o,0,c,g):\"category\"===u?function(t,e){var r=t._categories[Math.round(e.x)];void 0===r&&(r=\"\");e.text=String(r)}(t,o):\"multicategory\"===u?function(t,e,r){var n=Math.round(e.x),a=t._categories[n]||[],i=void 0===a[1]?\"\":String(a[1]),o=void 0===a[0]?\"\":String(a[0]);r?e.text=o+\" - \"+i:(e.text=i,e.text2=o)}(t,o,r):rt(t)?function(t,e,r,n,a){if(\"radians\"!==t.thetaunit||r)e.text=Y(e.x,t,a,n);else{var i=e.x/180;if(0===i)e.text=\"0\";else{var o=function(t){function e(t,e){return Math.abs(t-e)<=1e-6}var r=function(t){var r=1;for(;!e(Math.round(t*r)/r,t);)r*=10;return r}(t),n=t*r,a=Math.abs(function t(r,n){return e(n,0)?r:t(n,r%n)}(n,r));return[Math.round(n/a),Math.round(r/a)]}(i);if(o[1]>=100)e.text=Y(s.deg2rad(e.x),t,a,n);else{var l=e.x<0;1===o[1]?1===o[0]?e.text=\"\\u03c0\":e.text=o[0]+\"\\u03c0\":e.text=[\"<sup>\",o[0],\"</sup>\",\"\\u2044\",\"<sub>\",o[1],\"</sub>\",\"\\u03c0\"].join(\"\"),l&&(e.text=_+e.text)}}}}(t,o,r,c,g):function(t,e,r,n,a){\"never\"===a?a=\"\":\"all\"===t.showexponent&&Math.abs(e.x/t.dtick)<1e-6&&(a=\"hide\");e.text=Y(e.x,t,a,n)}(t,o,0,c,g),n||(t.tickprefix&&!d(t.showtickprefix)&&(o.text=t.tickprefix+o.text),t.ticksuffix&&!d(t.showticksuffix)&&(o.text+=t.ticksuffix)),\"boundaries\"===t.tickson||t.showdividers){var v=function(e){var r=t.l2p(e);return r>=0&&r<=t._length?e:null};o.xbnd=[v(o.x-.5),v(o.x+t.dtick-.5)]}return o},M.hoverLabelText=function(t,e,r){if(r!==w&&r!==e)return M.hoverLabelText(t,e)+\" - \"+M.hoverLabelText(t,r);var n=\"log\"===t.type&&e<=0,a=M.tickText(t,t.c2l(n?-e:e),\"hover\").text;return n?0===e?\"0\":_+a:a};var q=[\"f\",\"p\",\"n\",\"\\u03bc\",\"m\",\"\",\"k\",\"M\",\"G\",\"T\"];function H(t){return\"SI\"===t||\"B\"===t}function G(t){return t>14||t<-15}function Y(t,e,r,n){var i=t<0,o=e._tickround,l=r||e.exponentformat||\"B\",c=e._tickexponent,u=M.getTickFormat(e),h=e.separatethousands;if(n){var f={exponentformat:l,dtick:\"none\"===e.showexponent?e.dtick:a(t)&&Math.abs(t)||1,range:\"none\"===e.showexponent?e.range.map(e.r2d):[0,t||1]};V(f),o=(Number(f._tickround)||0)+4,c=f._tickexponent,e.hoverformat&&(u=e.hoverformat)}if(u)return e._numFormat(u)(t).replace(/-/g,_);var p,d=Math.pow(10,-o)/2;if(\"none\"===l&&(c=0),(t=Math.abs(t))<d)t=\"0\",i=!1;else{if(t+=d,c&&(t*=Math.pow(10,-c),o+=c),0===o)t=String(Math.floor(t));else if(o<0){t=(t=String(Math.round(t))).substr(0,t.length+o);for(var g=o;g<0;g++)t+=\"0\"}else{var v=(t=String(t)).indexOf(\".\")+1;v&&(t=t.substr(0,v+o).replace(/\\.?0+$/,\"\"))}t=s.numSeparate(t,e._separators,h)}c&&\"hide\"!==l&&(H(l)&&G(c)&&(l=\"power\"),p=c<0?_+-c:\"power\"!==l?\"+\"+c:String(c),\"e\"===l||\"E\"===l?t+=l+p:\"power\"===l?t+=\"\\xd710<sup>\"+p+\"</sup>\":\"B\"===l&&9===c?t+=\"B\":H(l)&&(t+=q[c/3+5]));return i?_+t:t}function W(t){return[t.text,t.x,t.axInfo,t.font,t.fontSize,t.fontColor].join(\"_\")}function X(t,e){var r=t.l2p(e);return r>1&&r<t._length-1}function Z(t){var e=n.select(t),r=e.select(\".text-math-group\");return r.empty()?e.select(\"text\"):r}function J(t){return t._id+\".automargin\"}function K(t){return J(t)+\".mirror\"}function Q(t){return t._id+\".rangeslider\"}function $(t,e){for(var r=0;r<e.length;r++)-1===t.indexOf(e[r])&&t.push(e[r])}function tt(t,e,r){var n,a,i=[],o=[],l=t.layout;for(n=0;n<e.length;n++)i.push(M.getFromId(t,e[n]));for(n=0;n<r.length;n++)o.push(M.getFromId(t,r[n]));var c=Object.keys(f),u=[\"anchor\",\"domain\",\"overlaying\",\"position\",\"side\",\"tickangle\",\"editType\"],h=[\"linear\",\"log\"];for(n=0;n<c.length;n++){var p=c[n],d=i[0][p],g=o[0][p],v=!0,m=!1,y=!1;if(\"_\"!==p.charAt(0)&&\"function\"!=typeof d&&-1===u.indexOf(p)){for(a=1;a<i.length&&v;a++){var x=i[a][p];\"type\"===p&&-1!==h.indexOf(d)&&-1!==h.indexOf(x)&&d!==x?m=!0:x!==d&&(v=!1)}for(a=1;a<o.length&&v;a++){var b=o[a][p];\"type\"===p&&-1!==h.indexOf(g)&&-1!==h.indexOf(b)&&g!==b?y=!0:o[a][p]!==g&&(v=!1)}v&&(m&&(l[i[0]._name].type=\"linear\"),y&&(l[o[0]._name].type=\"linear\"),et(l,p,i,o,t._fullLayout._dfltTitle))}}for(n=0;n<t._fullLayout.annotations.length;n++){var _=t._fullLayout.annotations[n];-1!==e.indexOf(_.xref)&&-1!==r.indexOf(_.yref)&&s.swapAttrs(l.annotations[n],[\"?\"])}}function et(t,e,r,n,a){var i,o=s.nestedProperty,l=o(t[r[0]._name],e).get(),c=o(t[n[0]._name],e).get();for(\"title\"===e&&(l&&l.text===a.x&&(l.text=a.y),c&&c.text===a.y&&(c.text=a.x)),i=0;i<r.length;i++)o(t,r[i]._name+\".\"+e).set(c);for(i=0;i<n.length;i++)o(t,n[i]._name+\".\"+e).set(l)}function rt(t){return\"angularaxis\"===t._id}M.getTickFormat=function(t){var e,r,n,a,i,o,s,l;function c(t){return\"string\"!=typeof t?t:Number(t.replace(\"M\",\"\"))*v}function u(t,e){var r=[\"L\",\"D\"];if(typeof t==typeof e){if(\"number\"==typeof t)return t-e;var n=r.indexOf(t.charAt(0)),a=r.indexOf(e.charAt(0));return n===a?Number(t.replace(/(L|D)/g,\"\"))-Number(e.replace(/(L|D)/g,\"\")):n-a}return\"number\"==typeof t?1:-1}function h(t,e){var r=null===e[0],n=null===e[1],a=u(t,e[0])>=0,i=u(t,e[1])<=0;return(r||a)&&(n||i)}if(t.tickformatstops&&t.tickformatstops.length>0)switch(t.type){case\"date\":case\"linear\":for(e=0;e<t.tickformatstops.length;e++)if((n=t.tickformatstops[e]).enabled&&(a=t.dtick,i=n.dtickrange,o=void 0,void 0,void 0,o=c||function(t){return t},s=i[0],l=i[1],(!s&&\"number\"!=typeof s||o(s)<=o(a))&&(!l&&\"number\"!=typeof l||o(l)>=o(a)))){r=n;break}break;case\"log\":for(e=0;e<t.tickformatstops.length;e++)if((n=t.tickformatstops[e]).enabled&&h(t.dtick,n.dtickrange)){r=n;break}}return r?r.value:t.tickformat},M.getSubplots=function(t,e){var r=t._fullLayout._subplots,n=r.cartesian.concat(r.gl2d||[]),a=e?M.findSubplotsWithAxis(n,e):n;return a.sort(function(t,e){var r=t.substr(1).split(\"y\"),n=e.substr(1).split(\"y\");return r[0]===n[0]?+r[1]-+n[1]:+r[0]-+n[0]}),a},M.findSubplotsWithAxis=function(t,e){for(var r=new RegExp(\"x\"===e._id.charAt(0)?\"^\"+e._id+\"y\":e._id+\"$\"),n=[],a=0;a<t.length;a++){var i=t[a];r.test(i)&&n.push(i)}return n},M.makeClipPaths=function(t){var e=t._fullLayout;if(!e._hasOnlyLargeSploms){var r,a,i={_offset:0,_length:e.width,_id:\"\"},o={_offset:0,_length:e.height,_id:\"\"},s=M.list(t,\"x\",!0),l=M.list(t,\"y\",!0),c=[];for(r=0;r<s.length;r++)for(c.push({x:s[r],y:o}),a=0;a<l.length;a++)0===r&&c.push({x:i,y:l[a]}),c.push({x:s[r],y:l[a]});var u=e._clips.selectAll(\".axesclip\").data(c,function(t){return t.x._id+t.y._id});u.enter().append(\"clipPath\").classed(\"axesclip\",!0).attr(\"id\",function(t){return\"clip\"+e._uid+t.x._id+t.y._id}).append(\"rect\"),u.exit().remove(),u.each(function(t){n.select(this).select(\"rect\").attr({x:t.x._offset||0,y:t.y._offset||0,width:t.x._length||1,height:t.y._length||1})})}},M.draw=function(t,e,r){var n=t._fullLayout;\"redraw\"===e&&n._paper.selectAll(\"g.subplot\").each(function(t){var e=t[0],r=n._plots[e],a=r.xaxis,i=r.yaxis;r.xaxislayer.selectAll(\".\"+a._id+\"tick\").remove(),r.yaxislayer.selectAll(\".\"+i._id+\"tick\").remove(),r.xaxislayer.selectAll(\".\"+a._id+\"tick2\").remove(),r.yaxislayer.selectAll(\".\"+i._id+\"tick2\").remove(),r.xaxislayer.selectAll(\".\"+a._id+\"divider\").remove(),r.yaxislayer.selectAll(\".\"+i._id+\"divider\").remove(),r.gridlayer&&r.gridlayer.selectAll(\"path\").remove(),r.zerolinelayer&&r.zerolinelayer.selectAll(\"path\").remove(),n._infolayer.select(\".g-\"+a._id+\"title\").remove(),n._infolayer.select(\".g-\"+i._id+\"title\").remove()});var a=e&&\"redraw\"!==e?e:M.listIds(t);return s.syncOrAsync(a.map(function(e){return function(){if(e){var n=M.getFromId(t,e),a=M.drawOne(t,n,r);return n._r=n.range.slice(),n._rl=s.simpleMap(n._r,n.r2l),a}}}))},M.drawOne=function(t,e,r){var n,a,f;r=r||{},e.setScale();var p=t._fullLayout,d=e._id,g=d.charAt(0),v=M.counterLetter(d),m=e._mainLinePosition,y=e._mainMirrorPosition,x=p._plots[e._mainSubplot][g+\"axislayer\"],b=e._vals=M.calcTicks(e),_=[e.mirror,m,y].join(\"_\");for(n=0;n<b.length;n++)b[n].axInfo=_;e._selections={},e._tickAngles&&(e._prevTickAngles=e._tickAngles),e._tickAngles={},e._depth=null;var w={};function k(t){var r=d+(t||\"tick\");return w[r]||(w[r]=function(t,e){var r,n,a,i;t._selections[e].size()?(r=1/0,n=-1/0,a=1/0,i=-1/0,t._selections[e].each(function(){var t=Z(this),e=h.bBox(t.node().parentNode);r=Math.min(r,e.top),n=Math.max(n,e.bottom),a=Math.min(a,e.left),i=Math.max(i,e.right)})):(r=0,n=0,a=0,i=0);return{top:r,bottom:n,left:a,right:i,height:n-r,width:i-a}}(e,r)),w[r]}if(e.visible){var S,E,C=M.makeTransFn(e);if(\"boundaries\"===e.tickson){var L=function(t,e){var r,n=[],a=function(t,e){var r=t.xbnd[e];null!==r&&n.push(s.extendFlat({},t,{x:r}))};if(e.length){for(r=0;r<e.length;r++)a(e[r],0);a(e[r-1],1)}return n}(0,b);E=M.clipEnds(e,L),S=\"inside\"===e.ticks?E:L}else E=M.clipEnds(e,b),S=\"inside\"===e.ticks?E:b;var P=e._gridVals=E,O=function(t,e){var r,n,a=[],i=function(t,e){var r=t.xbnd[e];null!==r&&a.push(s.extendFlat({},t,{x:r}))};if(t.showdividers&&e.length){for(r=0;r<e.length;r++){var o=e[r];o.text2!==n&&i(o,0),n=o.text2}i(e[r-1],1)}return a}(e,b);if(!p._hasOnlyLargeSploms){var I=e._subplotsWith,z={};for(n=0;n<I.length;n++){a=I[n];var D=(f=p._plots[a])[v+\"axis\"],R=D._mainAxis._id;if(!z[R]){z[R]=1;var F=\"x\"===g?\"M0,\"+D._offset+\"v\"+D._length:\"M\"+D._offset+\",0h\"+D._length;M.drawGrid(t,e,{vals:P,counterAxis:D,layer:f.gridlayer.select(\".\"+d),path:F,transFn:C}),M.drawZeroLine(t,e,{counterAxis:D,layer:f.zerolinelayer,path:F,transFn:C})}}}var B=M.getTickSigns(e),N=[];if(e.ticks){var j,V,q,H=M.makeTickPath(e,m,B[2]);if(e._anchorAxis&&e.mirror&&!0!==e.mirror?(j=M.makeTickPath(e,y,B[3]),V=H+j):(j=\"\",V=H),e.showdividers&&\"outside\"===e.ticks&&\"boundaries\"===e.tickson){var G={};for(n=0;n<O.length;n++)G[O[n].x]=1;q=function(t){return G[t.x]?j:V}}else q=V;M.drawTicks(t,e,{vals:S,layer:x,path:q,transFn:C}),\"allticks\"===e.mirror&&(N=Object.keys(e._linepositions||{}))}for(n=0;n<N.length;n++){a=N[n],f=p._plots[a];var Y=e._linepositions[a]||[],X=M.makeTickPath(e,Y[0],B[0])+M.makeTickPath(e,Y[1],B[1]);M.drawTicks(t,e,{vals:S,layer:f[g+\"axislayer\"],path:X,transFn:C})}var $=[];if($.push(function(){return M.drawLabels(t,e,{vals:b,layer:x,transFn:C,labelFns:M.makeLabelFns(e,m)})}),\"multicategory\"===e.type){var tt={x:2,y:10}[g],et={l:-1,t:-1,r:1,b:1}[e.side.charAt(0)];$.push(function(){var r={x:\"height\",y:\"width\"}[g],n=k()[r]+tt+(e._tickAngles[d+\"tick\"]?e.tickfont.size*T:0);return M.drawLabels(t,e,{vals:function(t,e){for(var r=[],n={},a=0;a<e.length;a++){var i=e[a];n[i.text2]?n[i.text2].push(i.x):n[i.text2]=[i.x]}for(var o in n)r.push(U(t,s.interp(n[o],.5),o));return r}(e,b),layer:x,cls:d+\"tick2\",repositionOnUpdate:!0,secondary:!0,transFn:C,labelFns:M.makeLabelFns(e,m+n*et)})}),$.push(function(){return e._depth=et*(k(\"tick2\")[e.side]-m),function(t,e,r){var n=e._id+\"divider\",a=r.vals,i=r.layer.selectAll(\"path.\"+n).data(a,W);i.exit().remove(),i.enter().insert(\"path\",\":first-child\").classed(n,1).classed(\"crisp\",1).call(u.stroke,e.dividercolor).style(\"stroke-width\",h.crispRound(t,e.dividerwidth,1)+\"px\"),i.attr(\"transform\",r.transFn).attr(\"d\",r.path)}(t,e,{vals:O,layer:x,path:M.makeTickPath(e,m,et,e._depth),transFn:C})})}var rt=o.getComponentMethod(\"rangeslider\",\"isVisible\")(e);return $.push(function(){var r,n,a,s,c=e.side.charAt(0),u=A[e.side].charAt(0),h=M.getPxPosition(t,e),f=\"outside\"===e.ticks?e.ticklen:0;if((e.automargin||rt)&&(\"multicategory\"===e.type?r=k(\"tick2\"):(r=k(),\"x\"===g&&\"b\"===c&&(e._depth=Math.max(r.width>0?r.bottom-h:0,f)))),e.automargin){n={x:0,y:0,r:0,l:0,t:0,b:0};var d=[0,1];if(\"x\"===g){if(\"b\"===c?n[c]=e._depth:(n[c]=e._depth=Math.max(r.width>0?h-r.top:0,f),d.reverse()),r.width>0){var m=r.right-(e._offset+e._length);m>0&&(n.xr=1,n.r=m);var y=e._offset-r.left;y>0&&(n.xl=0,n.l=y)}}else if(\"l\"===c?n[c]=e._depth=Math.max(r.height>0?h-r.left:0,f):(n[c]=e._depth=Math.max(r.height>0?r.right-h:0,f),d.reverse()),r.height>0){var x=r.bottom-(e._offset+e._length);x>0&&(n.yb=0,n.b=x);var b=e._offset-r.top;b>0&&(n.yt=1,n.t=b)}if(n[v]=\"free\"===e.anchor?e.position:e._anchorAxis.domain[d[0]],e.title.text!==p._dfltTitle[g]){var _=(e.title.text.match(l.BR_TAG_ALL)||[]).length;n[c]+=_?e.title.font.size*(_+1)*T:e.title.font.size}e.mirror&&\"free\"!==e.anchor&&((a={x:0,y:0,r:0,l:0,t:0,b:0})[u]=e.linewidth,e.mirror&&!0!==e.mirror&&(a[u]+=f),!0===e.mirror||\"ticks\"===e.mirror?a[v]=e._anchorAxis.domain[d[1]]:\"all\"!==e.mirror&&\"allticks\"!==e.mirror||(a[v]=[e._counterDomainMin,e._counterDomainMax][d[1]]))}rt&&(s=o.getComponentMethod(\"rangeslider\",\"autoMarginOpts\")(t,e)),i.autoMargin(t,J(e),n),i.autoMargin(t,K(e),a),i.autoMargin(t,Q(e),s)}),r.skipTitle||rt&&\"bottom\"===e.side||$.push(function(){return function(t,e){var r,n=t._fullLayout,a=e._id,i=a.charAt(0),o=e.title.font.size;if(\"multicategory\"===e.type)r=e._depth;else{r=10+1.5*o+(e.linewidth?e.linewidth-1:0)}var s,l,u,f,p=M.getPxPosition(t,e);\"x\"===i?(l=e._offset+e._length/2,u=\"top\"===e.side?-r-o*(e.showticklabels?1:0):r+o*(e.showticklabels?1.5:.5),u+=p):(u=e._offset+e._length/2,l=\"right\"===e.side?r+o*(e.showticklabels?1:.5):-r-o*(e.showticklabels?.5:0),l+=p,s={rotate:\"-90\",offset:0});if(\"multicategory\"!==e.type){var d=e._selections[e._id+\"tick\"];if(f={selection:d,side:e.side},d&&d.node()&&d.node().parentNode){var g=h.getTranslate(d.node().parentNode);f.offsetLeft=g.x,f.offsetTop=g.y}}return c.draw(t,a+\"title\",{propContainer:e,propName:e._name+\".title.text\",placeholder:n._dfltTitle[i],avoid:f,transform:s,attributes:{x:l,y:u,\"text-anchor\":\"middle\"}})}(t,e)}),s.syncOrAsync($)}},M.getTickSigns=function(t){var e=t._id.charAt(0),r={x:\"top\",y:\"right\"}[e],n=t.side===r?1:-1,a=[-1,1,n,-n];return\"inside\"!==t.ticks==(\"x\"===e)&&(a=a.map(function(t){return-t})),a},M.makeTransFn=function(t){var e=t._id.charAt(0),r=t._offset;return\"x\"===e?function(e){return\"translate(\"+(r+t.l2p(e.x))+\",0)\"}:function(e){return\"translate(0,\"+(r+t.l2p(e.x))+\")\"}},M.makeTickPath=function(t,e,r,n){n=void 0!==n?n:t.ticklen;var a=t._id.charAt(0),i=(t.linewidth||1)/2;return\"x\"===a?\"M0,\"+(e+i*r)+\"v\"+n*r:\"M\"+(e+i*r)+\",0h\"+n*r},M.makeLabelFns=function(t,e,r){var n=t._id.charAt(0),i=\"boundaries\"!==t.tickson&&\"outside\"===t.ticks,o=0,l=0;if(i&&(o+=t.ticklen),r&&\"outside\"===t.ticks){var c=s.deg2rad(r);o=t.ticklen*Math.cos(c)+1,l=t.ticklen*Math.sin(c)}t.showticklabels&&(i||t.showline)&&(o+=.2*t.tickfont.size);var u,h,f,p,d={labelStandoff:o+=(t.linewidth||1)/2,labelShift:l};return\"x\"===n?(p=\"bottom\"===t.side?1:-1,u=l*p,h=e+o*p,f=\"bottom\"===t.side?1:-.2,d.xFn=function(t){return t.dx+u},d.yFn=function(t){return t.dy+h+t.fontSize*f},d.anchorFn=function(t,e){return a(e)&&0!==e&&180!==e?e*p<0?\"end\":\"start\":\"middle\"},d.heightFn=function(e,r,n){return r<-60||r>60?-.5*n:\"top\"===t.side?-n:0}):\"y\"===n&&(p=\"right\"===t.side?1:-1,u=o,h=-l*p,f=90===Math.abs(t.tickangle)?.5:0,d.xFn=function(t){return t.dx+e+(u+t.fontSize*f)*p},d.yFn=function(t){return t.dy+h+t.fontSize*k},d.anchorFn=function(e,r){return a(r)&&90===Math.abs(r)?\"middle\":\"right\"===t.side?\"start\":\"end\"},d.heightFn=function(e,r,n){return(r*=\"left\"===t.side?1:-1)<-30?-n:r<30?-.5*n:0}),d},M.drawTicks=function(t,e,r){r=r||{};var n=e._id+\"tick\",a=r.layer.selectAll(\"path.\"+n).data(e.ticks?r.vals:[],W);a.exit().remove(),a.enter().append(\"path\").classed(n,1).classed(\"ticks\",1).classed(\"crisp\",!1!==r.crisp).call(u.stroke,e.tickcolor).style(\"stroke-width\",h.crispRound(t,e.tickwidth,1)+\"px\").attr(\"d\",r.path),a.attr(\"transform\",r.transFn)},M.drawGrid=function(t,e,r){r=r||{};var n=e._id+\"grid\",a=r.vals,i=r.counterAxis;if(!1===e.showgrid)a=[];else if(i&&M.shouldShowZeroLine(t,e,i))for(var o=\"array\"===e.tickmode,s=0;s<a.length;s++){var l=a[s].x;if(o?!l:Math.abs(l)<e.dtick/100){if(a=a.slice(0,s).concat(a.slice(s+1)),!o)break;s--}}var c=r.layer.selectAll(\"path.\"+n).data(a,W);c.exit().remove(),c.enter().append(\"path\").classed(n,1).classed(\"crisp\",!1!==r.crisp),e._gw=h.crispRound(t,e.gridwidth,1),c.attr(\"transform\",r.transFn).attr(\"d\",r.path).call(u.stroke,e.gridcolor||\"#ddd\").style(\"stroke-width\",e._gw+\"px\"),\"function\"==typeof r.path&&c.attr(\"d\",r.path)},M.drawZeroLine=function(t,e,r){r=r||r;var n=e._id+\"zl\",a=M.shouldShowZeroLine(t,e,r.counterAxis),i=r.layer.selectAll(\"path.\"+n).data(a?[{x:0,id:e._id}]:[]);i.exit().remove(),i.enter().append(\"path\").classed(n,1).classed(\"zl\",1).classed(\"crisp\",!1!==r.crisp).each(function(){r.layer.selectAll(\"path\").sort(function(t,e){return E.idSort(t.id,e.id)})}),i.attr(\"transform\",r.transFn).attr(\"d\",r.path).call(u.stroke,e.zerolinecolor||u.defaultLine).style(\"stroke-width\",h.crispRound(t,e.zerolinewidth,e._gw||1)+\"px\")},M.drawLabels=function(t,e,r){r=r||{};var i=t._fullLayout,o=e._id,c=o.charAt(0),u=r.cls||o+\"tick\",f=r.vals,p=r.labelFns,d=r.secondary?0:e.tickangle,g=(e._prevTickAngles||{})[u],v=r.layer.selectAll(\"g.\"+u).data(e.showticklabels?f:[],W),m=[];function y(t,e){t.each(function(t){var i=n.select(this),o=i.select(\".text-math-group\"),s=p.anchorFn(t,e),c=r.transFn.call(i.node(),t)+(a(e)&&0!=+e?\" rotate(\"+e+\",\"+p.xFn(t)+\",\"+(p.yFn(t)-t.fontSize/2)+\")\":\"\"),u=l.lineCount(i),f=T*t.fontSize,d=p.heightFn(t,a(e)?+e:0,(u-1)*f);if(d&&(c+=\" translate(0, \"+d+\")\"),o.empty())i.select(\"text\").attr({transform:c,\"text-anchor\":s});else{var g=h.bBox(o.node()).width*{end:-.5,start:.5}[s];o.attr(\"transform\",c+(g?\"translate(\"+g+\",0)\":\"\"))}})}v.enter().append(\"g\").classed(u,1).append(\"text\").attr(\"text-anchor\",\"middle\").each(function(e){var r=n.select(this),a=t._promises.length;r.call(l.positionText,p.xFn(e),p.yFn(e)).call(h.font,e.font,e.fontSize,e.fontColor).text(e.text).call(l.convertToTspans,t),t._promises[a]?m.push(t._promises.pop().then(function(){y(r,d)})):y(r,d)}),v.exit().remove(),r.repositionOnUpdate&&v.each(function(t){n.select(this).select(\"text\").call(l.positionText,p.xFn(t),p.yFn(t))}),y(v,g+1?g:d);var x=null;e._selections&&(e._selections[u]=v);var b=[function(){return m.length&&Promise.all(m)}];e.automargin&&i._redrawFromAutoMarginCount&&90===g?(x=90,b.push(function(){y(v,g)})):b.push(function(){if(y(v,d),f.length&&\"x\"===c&&!a(d)&&(\"log\"!==e.type||\"D\"!==String(e.dtick).charAt(0))){x=0;var t,n=0,i=[];if(v.each(function(t){n=Math.max(n,t.fontSize);var r=e.l2p(t.x),a=Z(this),o=h.bBox(a.node());i.push({top:0,bottom:10,height:10,left:r-o.width/2,right:r+o.width/2+2,width:o.width+2})}),\"boundaries\"!==e.tickson&&!e.showdividers||r.secondary){var o=f.length,l=Math.abs((f[o-1].x-f[0].x)*e._m)/(o-1)<2.5*n||\"multicategory\"===e.type;for(t=0;t<i.length-1;t++)if(s.bBoxIntersect(i[t],i[t+1])){x=l?90:30;break}}else{var u=2;for(e.ticks&&(u+=e.tickwidth/2),t=0;t<i.length;t++){var p=f[t].xbnd,g=i[t];if(null!==p[0]&&g.left-e.l2p(p[0])<u||null!==p[1]&&e.l2p(p[1])-g.right<u){x=90;break}}}x&&y(v,x)}}),e._tickAngles&&b.push(function(){e._tickAngles[u]=null===x?a(d)?d:0:x});var _=s.syncOrAsync(b);return _&&_.then&&t._promises.push(_),_},M.getPxPosition=function(t,e){var r,n=t._fullLayout._size,a=e._id.charAt(0),i=e.side;return\"free\"!==e.anchor?r=e._anchorAxis:\"x\"===a?r={_offset:n.t+(1-(e.position||0))*n.h,_length:0}:\"y\"===a&&(r={_offset:n.l+(e.position||0)*n.w,_length:0}),\"top\"===i||\"left\"===i?r._offset:\"bottom\"===i||\"right\"===i?r._offset+r._length:void 0},M.shouldShowZeroLine=function(t,e,r){var n=s.simpleMap(e.range,e.r2l);return n[0]*n[1]<=0&&e.zeroline&&(\"linear\"===e.type||\"-\"===e.type)&&(X(e,0)||!function(t,e,r,n){var a=r._mainAxis;if(!a)return;var i=t._fullLayout,o=e._id.charAt(0),s=M.counterLetter(e._id),l=e._offset+(Math.abs(n[0])<Math.abs(n[1])==(\"x\"===o)?0:e._length);function c(t){if(!t.showline||!t.linewidth)return!1;var r=Math.max((t.linewidth+e.zerolinewidth)/2,1);function n(t){return\"number\"==typeof t&&Math.abs(t-l)<r}if(n(t._mainLinePosition)||n(t._mainMirrorPosition))return!0;var a=t._linepositions||{};for(var i in a)if(n(a[i][0])||n(a[i][1]))return!0}var u=i._plots[r._mainSubplot];if(!(u.mainplotinfo||u).overlays.length)return c(r);for(var h=M.list(t,s),f=0;f<h.length;f++){var p=h[f];if(p._mainAxis===a&&c(p))return!0}}(t,e,r,n)||function(t,e){for(var r=t._fullData,n=e._mainSubplot,a=e._id.charAt(0),i=0;i<r.length;i++){var s=r[i];if(!0===s.visible&&s.xaxis+s.yaxis===n){if(o.traceIs(s,\"bar-like\")&&s.orientation==={x:\"h\",y:\"v\"}[a])return!0;if(s.fill&&s.fill.charAt(s.fill.length-1)===a)return!0}}return!1}(t,e))},M.clipEnds=function(t,e){return e.filter(function(e){return X(t,e.x)})},M.allowAutoMargin=function(t){for(var e=M.list(t,\"\",!0),r=0;r<e.length;r++){var n=e[r];n.automargin&&(i.allowAutoMargin(t,J(n)),n.mirror&&i.allowAutoMargin(t,K(n))),o.getComponentMethod(\"rangeslider\",\"isVisible\")(n)&&i.allowAutoMargin(t,Q(n))}},M.swap=function(t,e){for(var r=function(t,e){var r,n,a=[];for(r=0;r<e.length;r++){var i=[],o=t._fullData[e[r]].xaxis,s=t._fullData[e[r]].yaxis;if(o&&s){for(n=0;n<a.length;n++)-1===a[n].x.indexOf(o)&&-1===a[n].y.indexOf(s)||i.push(n);if(i.length){var l,c=a[i[0]];if(i.length>1)for(n=1;n<i.length;n++)l=a[i[n]],$(c.x,l.x),$(c.y,l.y);$(c.x,[o]),$(c.y,[s])}else a.push({x:[o],y:[s]})}}return a}(t,e),n=0;n<r.length;n++)tt(t,r[n].x,r[n].y)}},{\"../../components/color\":594,\"../../components/drawing\":615,\"../../components/titles\":681,\"../../constants/alignment\":688,\"../../constants/numerical\":695,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../../plots/plots\":828,\"../../registry\":848,\"./autorange\":766,\"./axis_autotype\":768,\"./axis_ids\":770,\"./clean_ticks\":772,\"./layout_attributes\":779,\"./set_convert\":785,d3:164,\"fast-isnumeric\":226}],768:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\"),i=t(\"../../constants/numerical\").BADNUM;e.exports=function(t,e,r){return!(r=r||{}).noMultiCategory&&(o=t,a.isArrayOrTypedArray(o[0])&&a.isArrayOrTypedArray(o[1]))?\"multicategory\":function(t,e){for(var r=Math.max(1,(t.length-1)/1e3),i=0,o=0,s={},l=0;l<t.length;l+=r){var c=t[Math.round(l)],u=String(c);s[u]||(s[u]=1,a.isDateTime(c,e)&&(i+=1),n(c)&&(o+=1))}return i>2*o}(t,e)?\"date\":function(t){for(var e=Math.max(1,(t.length-1)/1e3),r=0,n=0,o={},s=0;s<t.length;s+=e){var l=t[Math.round(s)],c=String(l);o[c]||(o[c]=1,\"boolean\"==typeof l?n++:a.cleanNumber(l)!==i?r++:\"string\"==typeof l&&n++)}return n>2*r}(t)?\"category\":function(t){if(!t)return!1;for(var e=0;e<t.length;e++)if(n(t[e]))return!0;return!1}(t)?\"linear\":\"-\";var o}},{\"../../constants/numerical\":695,\"../../lib\":719,\"fast-isnumeric\":226}],769:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\"),i=t(\"./layout_attributes\"),o=t(\"./tick_value_defaults\"),s=t(\"./tick_mark_defaults\"),l=t(\"./tick_label_defaults\"),c=t(\"./category_order_defaults\"),u=t(\"./line_grid_defaults\"),h=t(\"./set_convert\");e.exports=function(t,e,r,f,p){var d=f.letter,g=f.font||{},v=f.splomStash||{},m=r(\"visible\",!f.visibleDflt),y=e.type;\"date\"===y&&n.getComponentMethod(\"calendars\",\"handleDefaults\")(t,e,\"calendar\",f.calendar);h(e,p);var x=!e.isValidRange(t.range);x&&f.reverseDflt&&(x=\"reversed\"),!r(\"autorange\",x)||\"linear\"!==y&&\"-\"!==y||r(\"rangemode\"),r(\"range\"),e.cleanRange(),c(t,e,r,f),\"category\"===y||f.noHover||r(\"hoverformat\");var b=r(\"color\"),_=b!==i.color.dflt?b:g.color,w=v.label||p._dfltTitle[d];if(l(t,e,r,y,f,{pass:1}),!m)return e;r(\"title.text\",w),a.coerceFont(r,\"title.font\",{family:g.family,size:Math.round(1.2*g.size),color:_}),o(t,e,r,y),l(t,e,r,y,f,{pass:2}),s(t,e,r,f),u(t,e,r,{dfltColor:b,bgColor:f.bgColor,showGrid:f.showGrid,attributes:i}),(e.showline||e.ticks)&&r(\"mirror\"),f.automargin&&r(\"automargin\");var k,T=\"multicategory\"===e.type;f.noTickson||\"category\"!==e.type&&!T||!e.ticks&&!e.showgrid||(T&&(k=\"boundaries\"),r(\"tickson\",k));T&&(r(\"showdividers\")&&(r(\"dividercolor\"),r(\"dividerwidth\")));return e}},{\"../../lib\":719,\"../../registry\":848,\"./category_order_defaults\":771,\"./layout_attributes\":779,\"./line_grid_defaults\":781,\"./set_convert\":785,\"./tick_label_defaults\":786,\"./tick_mark_defaults\":787,\"./tick_value_defaults\":788}],770:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"./constants\");r.id2name=function(t){if(\"string\"==typeof t&&t.match(a.AX_ID_PATTERN)){var e=t.substr(1);return\"1\"===e&&(e=\"\"),t.charAt(0)+\"axis\"+e}},r.name2id=function(t){if(t.match(a.AX_NAME_PATTERN)){var e=t.substr(5);return\"1\"===e&&(e=\"\"),t.charAt(0)+e}},r.cleanId=function(t,e){if(t.match(a.AX_ID_PATTERN)&&(!e||t.charAt(0)===e)){var r=t.substr(1).replace(/^0+/,\"\");return\"1\"===r&&(r=\"\"),t.charAt(0)+r}},r.list=function(t,e,n){var a=t._fullLayout;if(!a)return[];var i,o=r.listIds(t,e),s=new Array(o.length);for(i=0;i<o.length;i++){var l=o[i];s[i]=a[l.charAt(0)+\"axis\"+l.substr(1)]}if(!n){var c=a._subplots.gl3d||[];for(i=0;i<c.length;i++){var u=a[c[i]];e?s.push(u[e+\"axis\"]):s.push(u.xaxis,u.yaxis,u.zaxis)}}return s},r.listIds=function(t,e){var r=t._fullLayout;if(!r)return[];var n=r._subplots;return e?n[e+\"axis\"]:n.xaxis.concat(n.yaxis)},r.getFromId=function(t,e,n){var a=t._fullLayout;return\"x\"===n?e=e.replace(/y[0-9]*/,\"\"):\"y\"===n&&(e=e.replace(/x[0-9]*/,\"\")),a[r.id2name(e)]},r.getFromTrace=function(t,e,a){var i=t._fullLayout,o=null;if(n.traceIs(e,\"gl3d\")){var s=e.scene;\"scene\"===s.substr(0,5)&&(o=i[s][a+\"axis\"])}else o=r.getFromId(t,e[a+\"axis\"]||a);return o},r.idSort=function(t,e){var r=t.charAt(0),n=e.charAt(0);return r!==n?r>n?1:-1:+(t.substr(1)||1)-+(e.substr(1)||1)},r.getAxisGroup=function(t,e){for(var r=t._axisMatchGroups,n=0;n<r.length;n++){if(r[n][e])return\"g\"+n}return e}},{\"../../registry\":848,\"./constants\":773}],771:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n){if(\"category\"===e.type){var a,i=t.categoryarray,o=Array.isArray(i)&&i.length>0;o&&(a=\"array\");var s,l=r(\"categoryorder\",a);\"array\"===l&&(s=r(\"categoryarray\")),o||\"array\"!==l||(l=e.categoryorder=\"trace\"),\"trace\"===l?e._initialCategories=[]:\"array\"===l?e._initialCategories=s.slice():(s=function(t,e){var r,n,a,i=e.dataAttr||t._id.charAt(0),o={};if(e.axData)r=e.axData;else for(r=[],n=0;n<e.data.length;n++){var s=e.data[n];s[i+\"axis\"]===t._id&&r.push(s)}for(n=0;n<r.length;n++){var l=r[n][i];for(a=0;a<l.length;a++){var c=l[a];null!=c&&(o[c]=1)}}return Object.keys(o)}(e,n).sort(),\"category ascending\"===l?e._initialCategories=s:\"category descending\"===l&&(e._initialCategories=s.reverse()))}}},{}],772:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\"),i=t(\"../../constants/numerical\").ONEDAY;r.dtick=function(t,e){var r=\"log\"===e,a=\"date\"===e,o=\"category\"===e,s=a?i:1;if(!t)return s;if(n(t))return(t=Number(t))<=0?s:o?Math.max(1,Math.round(t)):a?Math.max(.1,t):t;if(\"string\"!=typeof t||!a&&!r)return s;var l=t.charAt(0),c=t.substr(1);return(c=n(c)?Number(c):0)<=0||!(a&&\"M\"===l&&c===Math.round(c)||r&&\"L\"===l||r&&\"D\"===l&&(1===c||2===c))?s:t},r.tick0=function(t,e,r,i){return\"date\"===e?a.cleanDate(t,a.dateTick0(r)):\"D1\"!==i&&\"D2\"!==i?n(t)?Number(t):0:void 0}},{\"../../constants/numerical\":695,\"../../lib\":719,\"fast-isnumeric\":226}],773:[function(t,e,r){\"use strict\";var n=t(\"../../lib/regex\").counter;e.exports={idRegex:{x:n(\"x\"),y:n(\"y\")},attrRegex:n(\"[xy]axis\"),xAxisMatch:n(\"xaxis\"),yAxisMatch:n(\"yaxis\"),AX_ID_PATTERN:/^[xyz][0-9]*$/,AX_NAME_PATTERN:/^[xyz]axis[0-9]*$/,SUBPLOT_PATTERN:/^x([0-9]*)y([0-9]*)$/,MINDRAG:8,MINSELECT:12,MINZOOM:20,DRAGGERSIZE:20,BENDPX:1.5,REDRAWDELAY:50,SELECTDELAY:100,SELECTID:\"-select\",DFLTRANGEX:[-1,6],DFLTRANGEY:[-1,4],traceLayerClasses:[\"heatmaplayer\",\"contourcarpetlayer\",\"contourlayer\",\"funnellayer\",\"waterfalllayer\",\"barlayer\",\"carpetlayer\",\"violinlayer\",\"boxlayer\",\"ohlclayer\",\"scattercarpetlayer\",\"scatterlayer\"],clipOnAxisFalseQuery:[\".scatterlayer\",\".barlayer\",\".funnellayer\",\".waterfalllayer\"],layerValue2layerClass:{\"above traces\":\"above\",\"below traces\":\"below\"}}},{\"../../lib/regex\":735}],774:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./axis_ids\").id2name,i=t(\"./scale_zoom\"),o=t(\"./autorange\").makePadFn,s=t(\"./autorange\").concatExtremes,l=t(\"../../constants/numerical\").ALMOST_EQUAL,c=t(\"../../constants/alignment\").FROM_BL;function u(t,e,r,n,i){var o,s,l,c,u=\"range\"!==i,h=n[a(e)].type,f=[];for(s=0;s<r.length;s++)if((l=r[s])!==e&&(c=n[a(l)]).type===h)if(c.fixedrange){if(u&&c.anchor){n[a(c.anchor)].fixedrange&&f.push(l)}}else f.push(l);for(o=0;o<t.length;o++)if(t[o][e]){var p=t[o],d=[];for(s=0;s<f.length;s++)p[l=f[s]]||d.push(l);return{linkableAxes:d,thisGroup:p}}return{linkableAxes:f,thisGroup:null}}function h(t,e,r,n,a){var i,o,s,l,c;null===e?((e={})[r]=1,c=t.length,t.push(e)):c=t.indexOf(e);var u=Object.keys(e);for(i=0;i<t.length;i++)if(s=t[i],i!==c&&s[n]){var h=s[n];for(o=0;o<u.length;o++)s[l=u[o]]=h*a*e[l];return void t.splice(c,1)}if(1!==a)for(o=0;o<u.length;o++)e[u[o]]*=a;e[n]=1}function f(t,e){var r=t._inputDomain,n=c[t.constraintoward],a=r[0]+(r[1]-r[0])*n;t.domain=t._input.domain=[a+(r[0]-a)/e,a+(r[1]-a)/e],t.setScale()}r.handleConstraintDefaults=function(t,e,r,a,i){var o,s,l,c,f=i._axisConstraintGroups,p=i._axisMatchGroups,d=e._id,g=d.charAt(0),v=((i._splomAxes||{})[g]||{})[d]||{},m=e._id,y=m.charAt(0),x=r(\"constrain\");if(n.coerce(t,e,{constraintoward:{valType:\"enumerated\",values:\"x\"===y?[\"left\",\"center\",\"right\"]:[\"bottom\",\"middle\",\"top\"],dflt:\"x\"===y?\"center\":\"middle\"}},\"constraintoward\"),!t.matches&&!v.matches||e.fixedrange||(s=u(p,m,a,i),o=n.coerce(t,e,{matches:{valType:\"enumerated\",values:s.linkableAxes||[],dflt:v.matches}},\"matches\")),o||!t.scaleanchor||e.fixedrange&&\"domain\"!==x||(c=u(f,m,a,i,x),l=n.coerce(t,e,{scaleanchor:{valType:\"enumerated\",values:c.linkableAxes||[]}},\"scaleanchor\")),o?(delete e.constrain,h(p,s.thisGroup,m,o,1)):-1!==a.indexOf(t.matches)&&n.warn(\"ignored \"+e._name+'.matches: \"'+t.matches+'\" to avoid either an infinite loop or because the target axis has fixed range.'),l){var b=r(\"scaleratio\");b||(b=e.scaleratio=1),h(f,c.thisGroup,m,l,b)}else-1!==a.indexOf(t.scaleanchor)&&n.warn(\"ignored \"+e._name+'.scaleanchor: \"'+t.scaleanchor+'\" to avoid either an infinite loop and possibly inconsistent scaleratios, or because the target axis has fixed range or this axis declares a *matches* constraint.')},r.enforce=function(t){var e,r,n,c,u,h,p,d=t._fullLayout,g=d._axisConstraintGroups||[];for(e=0;e<g.length;e++){var v=g[e],m=Object.keys(v),y=1/0,x=0,b=1/0,_={},w={},k=!1;for(r=0;r<m.length;r++)w[n=m[r]]=c=d[a(n)],c._inputDomain?c.domain=c._inputDomain.slice():c._inputDomain=c.domain.slice(),c._inputRange||(c._inputRange=c.range.slice()),c.setScale(),_[n]=u=Math.abs(c._m)/v[n],y=Math.min(y,u),\"domain\"!==c.constrain&&c._constraintShrinkable||(b=Math.min(b,u)),delete c._constraintShrinkable,x=Math.max(x,u),\"domain\"===c.constrain&&(k=!0);if(!(y>l*x)||k)for(r=0;r<m.length;r++)if(u=_[n=m[r]],h=(c=w[n]).constrain,u!==b||\"domain\"===h)if(p=u/b,\"range\"===h)i(c,p);else{var T=c._inputDomain,A=(c.domain[1]-c.domain[0])/(T[1]-T[0]),M=(c.r2l(c.range[1])-c.r2l(c.range[0]))/(c.r2l(c._inputRange[1])-c.r2l(c._inputRange[0]));if((p/=A)*M<1){c.domain=c._input.domain=T.slice(),i(c,p);continue}if(M<1&&(c.range=c._input.range=c._inputRange.slice(),p*=M),c.autorange){var S=c.r2l(c.range[0]),E=c.r2l(c.range[1]),C=(S+E)/2,L=C,P=C,O=Math.abs(E-C),I=C-O*p*1.0001,z=C+O*p*1.0001,D=o(c);f(c,p);var R,F,B=Math.abs(c._m),N=s(t,c),j=N.min,V=N.max;for(F=0;F<j.length;F++)(R=j[F].val-D(j[F])/B)>I&&R<L&&(L=R);for(F=0;F<V.length;F++)(R=V[F].val+D(V[F])/B)<z&&R>P&&(P=R);p/=(P-L)/(2*O),L=c.l2r(L),P=c.l2r(P),c.range=c._input.range=S<E?[L,P]:[P,L]}f(c,p)}}},r.clean=function(t,e){if(e._inputDomain){for(var r=!1,n=e._id,a=t._fullLayout._axisConstraintGroups,i=0;i<a.length;i++)if(a[i][n]){r=!0;break}r&&\"domain\"===e.constrain||(e._input.domain=e.domain=e._inputDomain,delete e._inputDomain)}}},{\"../../constants/alignment\":688,\"../../constants/numerical\":695,\"../../lib\":719,\"./autorange\":766,\"./axis_ids\":770,\"./scale_zoom\":783}],775:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"tinycolor2\"),i=t(\"has-passive-events\"),o=t(\"../../registry\"),s=t(\"../../lib\"),l=t(\"../../lib/svg_text_utils\"),c=t(\"../../components/color\"),u=t(\"../../components/drawing\"),h=t(\"../../components/fx\"),f=t(\"./axes\"),p=t(\"../../lib/setcursor\"),d=t(\"../../components/dragelement\"),g=t(\"../../constants/alignment\").FROM_TL,v=t(\"../../lib/clear_gl_canvases\"),m=t(\"../../plot_api/subroutines\").redrawReglTraces,y=t(\"../plots\"),x=t(\"./axis_ids\").getFromId,b=t(\"./select\").prepSelect,_=t(\"./select\").clearSelect,w=t(\"./select\").selectOnClick,k=t(\"./scale_zoom\"),T=t(\"./constants\"),A=T.MINDRAG,M=T.MINZOOM,S=!0;function E(t,e,r,n){var a=s.ensureSingle(t.draglayer,e,r,function(e){e.classed(\"drag\",!0).style({fill:\"transparent\",\"stroke-width\":0}).attr(\"data-subplot\",t.id)});return a.call(p,n),a.node()}function C(t,e,r,a,i,o,s){var l=E(t,\"rect\",e,r);return n.select(l).call(u.setRect,a,i,o,s),l}function L(t,e){for(var r=0;r<t.length;r++)if(!t[r].fixedrange)return e;return\"\"}function P(t,e,r,n,a){for(var i=0;i<t.length;i++){var o=t[i];if(!o.fixedrange){var s=o._rl[0],l=o._rl[1]-s;n[o._name+\".range[0]\"]=o.l2r(s+l*e),n[o._name+\".range[1]\"]=o.l2r(s+l*r)}}if(a&&a.length){var c=(e+(1-r))/2;P(a,c,1-c,n,[])}}function O(t,e){for(var r=0;r<t.length;r++){var n=t[r];n.fixedrange||(n.range=[n.l2r(n._rl[0]-e/n._m),n.l2r(n._rl[1]-e/n._m)])}}function I(t){return 1-(t>=0?Math.min(t,.9):1/(1/Math.max(t,-.3)+3.222))}function z(t,e,r,n,a){return t.append(\"path\").attr(\"class\",\"zoombox\").style({fill:e>.2?\"rgba(0,0,0,0)\":\"rgba(255,255,255,0)\",\"stroke-width\":0}).attr(\"transform\",\"translate(\"+r+\", \"+n+\")\").attr(\"d\",a+\"Z\")}function D(t,e,r){return t.append(\"path\").attr(\"class\",\"zoombox-corners\").style({fill:c.background,stroke:c.defaultLine,\"stroke-width\":1,opacity:0}).attr(\"transform\",\"translate(\"+e+\", \"+r+\")\").attr(\"d\",\"M0,0Z\")}function R(t,e,r,n,a,i){t.attr(\"d\",n+\"M\"+r.l+\",\"+r.t+\"v\"+r.h+\"h\"+r.w+\"v-\"+r.h+\"h-\"+r.w+\"Z\"),F(t,e,a,i)}function F(t,e,r,n){r||(t.transition().style(\"fill\",n>.2?\"rgba(0,0,0,0.4)\":\"rgba(255,255,255,0.3)\").duration(200),e.transition().style(\"opacity\",1).duration(200))}function B(t){n.select(t).selectAll(\".zoombox,.js-zoombox-backdrop,.js-zoombox-menu,.zoombox-corners\").remove()}function N(t){S&&t.data&&t._context.showTips&&(s.notifier(s._(t,\"Double-click to zoom back out\"),\"long\"),S=!1)}function j(t){return\"lasso\"===t||\"select\"===t}function V(t){var e=Math.floor(Math.min(t.b-t.t,t.r-t.l,M)/2);return\"M\"+(t.l-3.5)+\",\"+(t.t-.5+e)+\"h3v\"+-e+\"h\"+e+\"v-3h-\"+(e+3)+\"ZM\"+(t.r+3.5)+\",\"+(t.t-.5+e)+\"h-3v\"+-e+\"h\"+-e+\"v-3h\"+(e+3)+\"ZM\"+(t.r+3.5)+\",\"+(t.b+.5-e)+\"h-3v\"+e+\"h\"+-e+\"v3h\"+(e+3)+\"ZM\"+(t.l-3.5)+\",\"+(t.b+.5-e)+\"h3v\"+e+\"h\"+e+\"v3h-\"+(e+3)+\"Z\"}function U(t,e,r,n){for(var a,i,o,l,c=!1,u={},h={},f=0;f<e.length;f++){var p=e[f];for(a in r)if(p[a]){for(o in p)(\"x\"===o.charAt(0)?r:n)[o]||(u[o]=a);for(i in n)p[i]&&(c=!0)}for(i in n)if(p[i])for(l in p)(\"x\"===l.charAt(0)?r:n)[l]||(h[l]=i)}c&&(s.extendFlat(u,h),h={});var d={},g=[];for(o in u){var v=x(t,o);g.push(v),d[v._id]=v}var m={},y=[];for(l in h){var b=x(t,l);y.push(b),m[b._id]=b}return{xaHash:d,yaHash:m,xaxes:g,yaxes:y,xLinks:u,yLinks:h,isSubplotConstrained:c}}function q(t,e){if(i){var r=void 0!==t.onwheel?\"wheel\":\"mousewheel\";t._onwheel&&t.removeEventListener(r,t._onwheel),t._onwheel=e,t.addEventListener(r,e,{passive:!1})}else void 0!==t.onwheel?t.onwheel=e:void 0!==t.onmousewheel&&(t.onmousewheel=e)}function H(t){var e=[];for(var r in t)e.push(t[r]);return e}e.exports={makeDragBox:function(t,e,r,i,c,p,S,E){var F,G,Y,W,X,Z,J,K,Q,$,tt,et,rt,nt,at,it,ot,st,lt,ct,ut,ht=t._fullLayout._zoomlayer,ft=S+E===\"nsew\",pt=1===(S+E).length;function dt(){if(F=e.xaxis,G=e.yaxis,Q=F._length,$=G._length,J=F._offset,K=G._offset,(Y={})[F._id]=F,(W={})[G._id]=G,S&&E)for(var r=e.overlays,n=0;n<r.length;n++){var a=r[n].xaxis;Y[a._id]=a;var i=r[n].yaxis;W[i._id]=i}X=H(Y),Z=H(W),rt=L(X,E),nt=L(Z,S),at=!nt&&!rt,tt=U(t,t._fullLayout._axisConstraintGroups,Y,W),et=U(t,t._fullLayout._axisMatchGroups,Y,W),it=E||tt.isSubplotConstrained||et.isSubplotConstrained,ot=S||tt.isSubplotConstrained||et.isSubplotConstrained;var o=t._fullLayout;st=o._has(\"scattergl\"),lt=o._has(\"splom\"),ct=o._has(\"svg\")}dt();var gt=function(t,e,r){return t?\"nsew\"===t?r?\"\":\"pan\"===e?\"move\":\"crosshair\":t.toLowerCase()+\"-resize\":\"pointer\"}(nt+rt,t._fullLayout.dragmode,ft),vt=C(e,S+E+\"drag\",gt,r,i,c,p);if(at&&!ft)return vt.onmousedown=null,vt.style.pointerEvents=\"none\",vt;var mt,yt,xt,bt,_t,wt,kt,Tt,At,Mt,St={element:vt,gd:t,plotinfo:e};function Et(){St.plotinfo.selection=!1,_(t)}function Ct(r,a){var i=t._fullLayout.clickmode;if(B(t),2!==r||pt||function(){if(!t._transitioningWithDuration){var e=t._context.doubleClick,r=[];rt&&(r=r.concat(X)),nt&&(r=r.concat(Z)),et.xaxes&&(r=r.concat(et.xaxes)),et.yaxes&&(r=r.concat(et.yaxes));var n,a,i,s={};if(\"reset+autosize\"===e)for(e=\"autosize\",a=0;a<r.length;a++)if((n=r[a])._rangeInitial&&(n.range[0]!==n._rangeInitial[0]||n.range[1]!==n._rangeInitial[1])||!n._rangeInitial&&!n.autorange){e=\"reset\";break}if(\"autosize\"===e)for(a=0;a<r.length;a++)(n=r[a]).fixedrange||(s[n._name+\".autorange\"]=!0);else if(\"reset\"===e)for((rt||tt.isSubplotConstrained)&&(r=r.concat(tt.xaxes)),nt&&!tt.isSubplotConstrained&&(r=r.concat(tt.yaxes)),tt.isSubplotConstrained&&(rt?nt||(r=r.concat(Z)):r=r.concat(X)),a=0;a<r.length;a++)(n=r[a]).fixedrange||(n._rangeInitial?(i=n._rangeInitial,s[n._name+\".range[0]\"]=i[0],s[n._name+\".range[1]\"]=i[1]):s[n._name+\".autorange\"]=!0);t.emit(\"plotly_doubleclick\",null),o.call(\"_guiRelayout\",t,s)}}(),ft)i.indexOf(\"select\")>-1&&w(a,t,X,Z,e.id,St),i.indexOf(\"event\")>-1&&h.click(t,a,e.id);else if(1===r&&pt){var s=S?G:F,c=\"s\"===S||\"w\"===E?0:1,u=s._name+\".range[\"+c+\"]\",f=function(t,e){var r,a=t.range[e],i=Math.abs(a-t.range[1-e]);return\"date\"===t.type?a:\"log\"===t.type?(r=Math.ceil(Math.max(0,-Math.log(i)/Math.LN10))+3,n.format(\".\"+r+\"g\")(Math.pow(10,a))):(r=Math.floor(Math.log(Math.abs(a))/Math.LN10)-Math.floor(Math.log(i)/Math.LN10)+4,n.format(\".\"+String(r)+\"g\")(a))}(s,c),p=\"left\",d=\"middle\";if(s.fixedrange)return;S?(d=\"n\"===S?\"top\":\"bottom\",\"right\"===s.side&&(p=\"right\")):\"e\"===E&&(p=\"right\"),t._context.showAxisRangeEntryBoxes&&n.select(vt).call(l.makeEditable,{gd:t,immediate:!0,background:t._fullLayout.paper_bgcolor,text:String(f),fill:s.tickfont?s.tickfont.color:\"#444\",horizontalAlign:p,verticalAlign:d}).on(\"edit\",function(e){var r=s.d2r(e);void 0!==r&&o.call(\"_guiRelayout\",t,u,r)})}}function Lt(e,r){if(t._transitioningWithDuration)return!1;var n=Math.max(0,Math.min(Q,e+mt)),a=Math.max(0,Math.min($,r+yt)),i=Math.abs(n-mt),o=Math.abs(a-yt);function s(){kt=\"\",xt.r=xt.l,xt.t=xt.b,At.attr(\"d\",\"M0,0Z\")}if(xt.l=Math.min(mt,n),xt.r=Math.max(mt,n),xt.t=Math.min(yt,a),xt.b=Math.max(yt,a),tt.isSubplotConstrained)i>M||o>M?(kt=\"xy\",i/Q>o/$?(o=i*$/Q,yt>a?xt.t=yt-o:xt.b=yt+o):(i=o*Q/$,mt>n?xt.l=mt-i:xt.r=mt+i),At.attr(\"d\",V(xt))):s();else if(et.isSubplotConstrained)if(i>M||o>M){kt=\"xy\";var l=Math.min(xt.l/Q,($-xt.b)/$),c=Math.max(xt.r/Q,($-xt.t)/$);xt.l=l*Q,xt.r=c*Q,xt.b=(1-l)*$,xt.t=(1-c)*$,At.attr(\"d\",V(xt))}else s();else!nt||o<Math.min(Math.max(.6*i,A),M)?i<A||!rt?s():(xt.t=0,xt.b=$,kt=\"x\",At.attr(\"d\",function(t,e){return\"M\"+(t.l-.5)+\",\"+(e-M-.5)+\"h-3v\"+(2*M+1)+\"h3ZM\"+(t.r+.5)+\",\"+(e-M-.5)+\"h3v\"+(2*M+1)+\"h-3Z\"}(xt,yt))):!rt||i<Math.min(.6*o,M)?(xt.l=0,xt.r=Q,kt=\"y\",At.attr(\"d\",function(t,e){return\"M\"+(e-M-.5)+\",\"+(t.t-.5)+\"v-3h\"+(2*M+1)+\"v3ZM\"+(e-M-.5)+\",\"+(t.b+.5)+\"v3h\"+(2*M+1)+\"v-3Z\"}(xt,mt))):(kt=\"xy\",At.attr(\"d\",V(xt)));xt.w=xt.r-xt.l,xt.h=xt.b-xt.t,kt&&(Mt=!0),t._dragged=Mt,R(Tt,At,xt,_t,wt,bt),Pt(),t.emit(\"plotly_relayouting\",ut),wt=!0}function Pt(){ut={},\"xy\"!==kt&&\"x\"!==kt||(P(X,xt.l/Q,xt.r/Q,ut,tt.xaxes),Bt(\"x\",ut)),\"xy\"!==kt&&\"y\"!==kt||(P(Z,($-xt.b)/$,($-xt.t)/$,ut,tt.yaxes),Bt(\"y\",ut))}function Ot(){Pt(),B(t),jt(),N(t)}St.prepFn=function(e,r,n){var i=St.dragmode,o=t._fullLayout.dragmode;o!==i&&(St.dragmode=o),dt(),at||(ft?e.shiftKey?\"pan\"===o?o=\"zoom\":j(o)||(o=\"pan\"):e.ctrlKey&&(o=\"pan\"):o=\"pan\"),St.minDrag=\"lasso\"===o?1:void 0,j(o)?(St.xaxes=X,St.yaxes=Z,b(e,r,n,St,o)):(St.clickFn=Ct,j(i)&&Et(),at||(\"zoom\"===o?(St.moveFn=Lt,St.doneFn=Ot,St.minDrag=1,function(e,r,n){var i=vt.getBoundingClientRect();mt=r-i.left,yt=n-i.top,xt={l:mt,r:mt,w:0,t:yt,b:yt,h:0},bt=t._hmpixcount?t._hmlumcount/t._hmpixcount:a(t._fullLayout.plot_bgcolor).getLuminance(),wt=!1,kt=\"xy\",Mt=!1,Tt=z(ht,bt,J,K,_t=\"M0,0H\"+Q+\"V\"+$+\"H0V0\"),At=D(ht,J,K)}(0,r,n)):\"pan\"===o&&(St.moveFn=Ft,St.doneFn=jt))),t._fullLayout._redrag=function(){var e=t._dragdata;e&&e.element===vt&&(j(t._fullLayout.dragmode)||(dt(),Vt([0,0,Q,$]),St.moveFn(e.dx,e.dy)))}},d.init(St);var It=[0,0,Q,$],zt=null,Dt=T.REDRAWDELAY,Rt=e.mainplot?t._fullLayout._plots[e.mainplot]:e;function Ft(e,r){if(!t._transitioningWithDuration){if(t._fullLayout._replotting=!0,\"ew\"===rt||\"ns\"===nt)return rt&&(O(X,e),Bt(\"x\")),nt&&(O(Z,r),Bt(\"y\")),Vt([rt?-e:0,nt?-r:0,Q,$]),Nt(),void t.emit(\"plotly_relayouting\",ut);if(tt.isSubplotConstrained&&rt&&nt){var n=\"w\"===rt==(\"n\"===nt)?1:-1,a=(e/Q+n*r/$)/2;e=a*Q,r=n*a*$}\"w\"===rt?e=l(X,0,e):\"e\"===rt?e=l(X,1,-e):rt||(e=0),\"n\"===nt?r=l(Z,1,r):\"s\"===nt?r=l(Z,0,-r):nt||(r=0);var i=\"w\"===rt?e:0,o=\"n\"===nt?r:0;if(tt.isSubplotConstrained){var s;if(!rt&&1===nt.length){for(s=0;s<X.length;s++)X[s].range=X[s]._r.slice(),k(X[s],1-r/$);i=(e=r*Q/$)/2}if(!nt&&1===rt.length){for(s=0;s<Z.length;s++)Z[s].range=Z[s]._r.slice(),k(Z[s],1-e/Q);o=(r=e*$/Q)/2}}Bt(\"x\"),Bt(\"y\"),Vt([i,o,Q-e,$-r]),Nt(),t.emit(\"plotly_relayouting\",ut)}function l(t,e,r){for(var n,a,i=1-e,o=0;o<t.length;o++){var s=t[o];if(!s.fixedrange){n=s,a=s._rl[i]+(s._rl[e]-s._rl[i])/I(r/s._length);var l=s.l2r(a);!1!==l&&void 0!==l&&(s.range[e]=l)}}return n._length*(n._rl[e]-a)/(n._rl[e]-n._rl[i])}}function Bt(t,e){for(var r=et.isSubplotConstrained?{x:Z,y:X}[t]:et[t+\"axes\"],n=et.isSubplotConstrained?{x:X,y:Z}[t]:[],a=0;a<r.length;a++){var i=r[a],o=i._id,s=et.xLinks[o]||et.yLinks[o],l=n[0]||Y[s]||W[s];l&&(e?(e[i._name+\".range[0]\"]=e[l._name+\".range[0]\"],e[i._name+\".range[1]\"]=e[l._name+\".range[1]\"]):i.range=l.range.slice())}}function Nt(){var e,r=[];function n(t){for(e=0;e<t.length;e++)t[e].fixedrange||r.push(t[e]._id)}for(it&&(n(X),n(tt.xaxes),n(et.xaxes)),ot&&(n(Z),n(tt.yaxes),n(et.yaxes)),ut={},e=0;e<r.length;e++){var a=r[e],i=x(t,a);f.drawOne(t,i,{skipTitle:!0}),ut[i._name+\".range[0]\"]=i.range[0],ut[i._name+\".range[1]\"]=i.range[1]}f.redrawComponents(t,r)}function jt(){Vt([0,0,Q,$]),s.syncOrAsync([y.previousPromises,function(){t._fullLayout._replotting=!1,o.call(\"_guiRelayout\",t,ut)}],t)}function Vt(e){var r,n,a,i,l=t._fullLayout,c=l._plots,h=l._subplots.cartesian;if(lt&&o.subplotsRegistry.splom.drag(t),st)for(r=0;r<h.length;r++)if(a=(n=c[h[r]]).xaxis,i=n.yaxis,n._scene){var f=s.simpleMap(a.range,a.r2l),p=s.simpleMap(i.range,i.r2l);n._scene.update({range:[f[0],p[0],f[1],p[1]]})}if((lt||st)&&(v(t),m(t)),ct){var d=e[2]/F._length,g=e[3]/G._length;for(r=0;r<h.length;r++){a=(n=c[h[r]]).xaxis,i=n.yaxis;var y,x,b,_,w=it&&!a.fixedrange&&Y[a._id],k=ot&&!i.fixedrange&&W[i._id];if(w?(y=d,b=E?e[0]:Ht(a,y)):et.xaHash[a._id]?(y=d,b=e[0]*a._length/F._length):et.yaHash[a._id]?(y=g,b=\"ns\"===nt?-e[1]*a._length/G._length:Ht(a,y,{n:\"top\",s:\"bottom\"}[nt])):b=qt(a,y=Ut(a,d,g)),k?(x=g,_=S?e[1]:Ht(i,x)):et.yaHash[i._id]?(x=g,_=e[1]*i._length/G._length):et.xaHash[i._id]?(x=d,_=\"ew\"===rt?-e[0]*i._length/F._length:Ht(i,x,{e:\"right\",w:\"left\"}[rt])):_=qt(i,x=Ut(i,d,g)),y||x){y||(y=1),x||(x=1);var T=a._offset-b/y,A=i._offset-_/x;n.clipRect.call(u.setTranslate,b,_).call(u.setScale,y,x),n.plot.call(u.setTranslate,T,A).call(u.setScale,1/y,1/x),y===n.xScaleFactor&&x===n.yScaleFactor||(u.setPointGroupScale(n.zoomScalePts,y,x),u.setTextPointsScale(n.zoomScaleTxt,y,x)),u.hideOutsideRangePoints(n.clipOnAxisFalseTraces,n),n.xScaleFactor=y,n.yScaleFactor=x}}}}function Ut(t,e,r){return t.fixedrange?0:it&&tt.xaHash[t._id]?e:ot&&(tt.isSubplotConstrained?tt.xaHash:tt.yaHash)[t._id]?r:0}function qt(t,e){return e?(t.range=t._r.slice(),k(t,e),Ht(t,e)):0}function Ht(t,e,r){return t._length*(1-e)*g[r||t.constraintoward||\"middle\"]}return S.length*E.length!=1&&q(vt,function(e){if(t._context._scrollZoom.cartesian||t._fullLayout._enablescrollzoom){if(Et(),t._transitioningWithDuration)return e.preventDefault(),void e.stopPropagation();dt(),clearTimeout(zt);var r=-e.deltaY;if(isFinite(r)||(r=e.wheelDelta/10),isFinite(r)){var n,a=Math.exp(-Math.min(Math.max(r,-20),20)/200),i=Rt.draglayer.select(\".nsewdrag\").node().getBoundingClientRect(),o=(e.clientX-i.left)/i.width,l=(i.bottom-e.clientY)/i.height;if(it){for(E||(o=.5),n=0;n<X.length;n++)c(X[n],o,a);Bt(\"x\"),It[2]*=a,It[0]+=It[2]*o*(1/a-1)}if(ot){for(S||(l=.5),n=0;n<Z.length;n++)c(Z[n],l,a);Bt(\"y\"),It[3]*=a,It[1]+=It[3]*(1-l)*(1/a-1)}Vt(It),Nt(),t.emit(\"plotly_relayouting\",ut),zt=setTimeout(function(){It=[0,0,Q,$],jt()},Dt),e.preventDefault()}else s.log(\"Did not find wheel motion attributes: \",e)}function c(t,e,r){if(!t.fixedrange){var n=s.simpleMap(t.range,t.r2l),a=n[0]+(n[1]-n[0])*e;t.range=n.map(function(e){return t.l2r(a+(e-a)*r)})}}}),vt},makeDragger:E,makeRectDragger:C,makeZoombox:z,makeCorners:D,updateZoombox:R,xyCorners:V,transitionZoombox:F,removeZoombox:B,showDoubleClickNotifier:N,attachWheelEventHandler:q}},{\"../../components/color\":594,\"../../components/dragelement\":612,\"../../components/drawing\":615,\"../../components/fx\":632,\"../../constants/alignment\":688,\"../../lib\":719,\"../../lib/clear_gl_canvases\":704,\"../../lib/setcursor\":739,\"../../lib/svg_text_utils\":743,\"../../plot_api/subroutines\":758,\"../../registry\":848,\"../plots\":828,\"./axes\":767,\"./axis_ids\":770,\"./constants\":773,\"./scale_zoom\":783,\"./select\":784,d3:164,\"has-passive-events\":412,tinycolor2:538}],776:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/fx\"),i=t(\"../../components/dragelement\"),o=t(\"../../lib/setcursor\"),s=t(\"./dragbox\").makeDragBox,l=t(\"./constants\").DRAGGERSIZE;r.initInteractions=function(t){var e=t._fullLayout;if(t._context.staticPlot)n.select(t).selectAll(\".drag\").remove();else if(e._has(\"cartesian\")||e._has(\"splom\")){Object.keys(e._plots||{}).sort(function(t,r){if((e._plots[t].mainplot&&!0)===(e._plots[r].mainplot&&!0)){var n=t.split(\"y\"),a=r.split(\"y\");return n[0]===a[0]?Number(n[1]||1)-Number(a[1]||1):Number(n[0]||1)-Number(a[0]||1)}return e._plots[t].mainplot?1:-1}).forEach(function(r){var n=e._plots[r],o=n.xaxis,c=n.yaxis;if(!n.mainplot){var u=s(t,n,o._offset,c._offset,o._length,c._length,\"ns\",\"ew\");u.onmousemove=function(e){t._fullLayout._rehover=function(){t._fullLayout._hoversubplot===r&&t._fullLayout._plots[r]&&a.hover(t,e,r)},a.hover(t,e,r),t._fullLayout._lasthover=u,t._fullLayout._hoversubplot=r},u.onmouseout=function(e){t._dragging||(t._fullLayout._hoversubplot=null,i.unhover(t,e))},t._context.showAxisDragHandles&&(s(t,n,o._offset-l,c._offset-l,l,l,\"n\",\"w\"),s(t,n,o._offset+o._length,c._offset-l,l,l,\"n\",\"e\"),s(t,n,o._offset-l,c._offset+c._length,l,l,\"s\",\"w\"),s(t,n,o._offset+o._length,c._offset+c._length,l,l,\"s\",\"e\"))}if(t._context.showAxisDragHandles){if(r===o._mainSubplot){var h=o._mainLinePosition;\"top\"===o.side&&(h-=l),s(t,n,o._offset+.1*o._length,h,.8*o._length,l,\"\",\"ew\"),s(t,n,o._offset,h,.1*o._length,l,\"\",\"w\"),s(t,n,o._offset+.9*o._length,h,.1*o._length,l,\"\",\"e\")}if(r===c._mainSubplot){var f=c._mainLinePosition;\"right\"!==c.side&&(f-=l),s(t,n,f,c._offset+.1*c._length,l,.8*c._length,\"ns\",\"\"),s(t,n,f,c._offset+.9*c._length,l,.1*c._length,\"s\",\"\"),s(t,n,f,c._offset,l,.1*c._length,\"n\",\"\")}}});var o=e._hoverlayer.node();o.onmousemove=function(r){r.target=t._fullLayout._lasthover,a.hover(t,r,e._hoversubplot)},o.onclick=function(e){e.target=t._fullLayout._lasthover,a.click(t,e)},o.onmousedown=function(e){t._fullLayout._lasthover.onmousedown(e)},r.updateFx(t)}},r.updateFx=function(t){var e=t._fullLayout,r=\"pan\"===e.dragmode?\"move\":\"crosshair\";o(e._draggers,r)}},{\"../../components/dragelement\":612,\"../../components/fx\":632,\"../../lib/setcursor\":739,\"./constants\":773,\"./dragbox\":775,d3:164}],777:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\");e.exports=function(t){return function(e,r){var i=e[t];if(Array.isArray(i))for(var o=n.subplotsRegistry.cartesian,s=o.idRegex,l=r._subplots,c=l.xaxis,u=l.yaxis,h=l.cartesian,f=r._has(\"cartesian\")||r._has(\"gl2d\"),p=0;p<i.length;p++){var d=i[p];if(a.isPlainObject(d)){var g=d.xref,v=d.yref,m=s.x.test(g),y=s.y.test(v);if(m||y){f||a.pushUnique(r._basePlotModules,o);var x=!1;m&&-1===c.indexOf(g)&&(c.push(g),x=!0),y&&-1===u.indexOf(v)&&(u.push(v),x=!0),x&&m&&y&&h.push(g+v)}}}}}},{\"../../lib\":719,\"../../registry\":848}],778:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../registry\"),i=t(\"../../lib\"),o=t(\"../plots\"),s=t(\"../../components/drawing\"),l=t(\"../get_data\").getModuleCalcData,c=t(\"./axis_ids\"),u=t(\"./constants\"),h=t(\"../../constants/xmlns_namespaces\"),f=i.ensureSingle;function p(t,e,r){return i.ensureSingle(t,e,r,function(t){t.datum(r)})}function d(t,e,r,i,o){for(var c,h,f,p=u.traceLayerClasses,d=t._fullLayout,g=d._modules,v=[],m=[],y=0;y<g.length;y++){var x=(c=g[y]).name,b=a.modules[x].categories;if(b.svg){var _=c.layerName||x+\"layer\",w=c.plot;f=(h=l(r,w))[0],r=h[1],f.length&&v.push({i:p.indexOf(_),className:_,plotMethod:w,cdModule:f}),b.zoomScale&&m.push(\".\"+_)}}v.sort(function(t,e){return t.i-e.i});var k=e.plot.selectAll(\"g.mlayer\").data(v,function(t){return t.className});if(k.enter().append(\"g\").attr(\"class\",function(t){return t.className}).classed(\"mlayer\",!0).classed(\"rangeplot\",e.isRangePlot),k.exit().remove(),k.order(),k.each(function(r){var a=n.select(this),l=r.className;r.plotMethod(t,e,r.cdModule,a,i,o),-1===u.clipOnAxisFalseQuery.indexOf(\".\"+l)&&s.setClipUrl(a,e.layerClipId,t)}),d._has(\"scattergl\")&&(c=a.getModule(\"scattergl\"),f=l(r,c)[0],c.plot(t,e,f)),!t._context.staticPlot&&(e._hasClipOnAxisFalse&&(e.clipOnAxisFalseTraces=e.plot.selectAll(u.clipOnAxisFalseQuery.join(\",\")).selectAll(\".trace\")),m.length)){var T=e.plot.selectAll(m.join(\",\")).selectAll(\".trace\");e.zoomScalePts=T.selectAll(\"path.point\"),e.zoomScaleTxt=T.selectAll(\".textpoint\")}}function g(t,e){var r=e.plotgroup,n=e.id,a=u.layerValue2layerClass[e.xaxis.layer],i=u.layerValue2layerClass[e.yaxis.layer],o=t._fullLayout._hasOnlyLargeSploms;if(e.mainplot){var s=e.mainplotinfo,l=s.plotgroup,h=n+\"-x\",d=n+\"-y\";e.gridlayer=s.gridlayer,e.zerolinelayer=s.zerolinelayer,f(s.overlinesBelow,\"path\",h),f(s.overlinesBelow,\"path\",d),f(s.overaxesBelow,\"g\",h),f(s.overaxesBelow,\"g\",d),e.plot=f(s.overplot,\"g\",n),f(s.overlinesAbove,\"path\",h),f(s.overlinesAbove,\"path\",d),f(s.overaxesAbove,\"g\",h),f(s.overaxesAbove,\"g\",d),e.xlines=l.select(\".overlines-\"+a).select(\".\"+h),e.ylines=l.select(\".overlines-\"+i).select(\".\"+d),e.xaxislayer=l.select(\".overaxes-\"+a).select(\".\"+h),e.yaxislayer=l.select(\".overaxes-\"+i).select(\".\"+d)}else if(o)e.xlines=f(r,\"path\",\"xlines-above\"),e.ylines=f(r,\"path\",\"ylines-above\"),e.xaxislayer=f(r,\"g\",\"xaxislayer-above\"),e.yaxislayer=f(r,\"g\",\"yaxislayer-above\");else{var g=f(r,\"g\",\"layer-subplot\");e.shapelayer=f(g,\"g\",\"shapelayer\"),e.imagelayer=f(g,\"g\",\"imagelayer\"),e.gridlayer=f(r,\"g\",\"gridlayer\"),e.zerolinelayer=f(r,\"g\",\"zerolinelayer\"),f(r,\"path\",\"xlines-below\"),f(r,\"path\",\"ylines-below\"),e.overlinesBelow=f(r,\"g\",\"overlines-below\"),f(r,\"g\",\"xaxislayer-below\"),f(r,\"g\",\"yaxislayer-below\"),e.overaxesBelow=f(r,\"g\",\"overaxes-below\"),e.plot=f(r,\"g\",\"plot\"),e.overplot=f(r,\"g\",\"overplot\"),e.xlines=f(r,\"path\",\"xlines-above\"),e.ylines=f(r,\"path\",\"ylines-above\"),e.overlinesAbove=f(r,\"g\",\"overlines-above\"),f(r,\"g\",\"xaxislayer-above\"),f(r,\"g\",\"yaxislayer-above\"),e.overaxesAbove=f(r,\"g\",\"overaxes-above\"),e.xlines=r.select(\".xlines-\"+a),e.ylines=r.select(\".ylines-\"+i),e.xaxislayer=r.select(\".xaxislayer-\"+a),e.yaxislayer=r.select(\".yaxislayer-\"+i)}o||(p(e.gridlayer,\"g\",e.xaxis._id),p(e.gridlayer,\"g\",e.yaxis._id),e.gridlayer.selectAll(\"g\").map(function(t){return t[0]}).sort(c.idSort)),e.xlines.style(\"fill\",\"none\").classed(\"crisp\",!0),e.ylines.style(\"fill\",\"none\").classed(\"crisp\",!0)}function v(t,e){if(t){var r={};for(var a in t.each(function(t){var a=t[0];n.select(this).remove(),m(a,e),r[a]=!0}),e._plots)for(var i=e._plots[a].overlays||[],o=0;o<i.length;o++){var s=i[o];r[s.id]&&s.plot.selectAll(\".trace\").remove()}}}function m(t,e){e._draggers.selectAll(\"g.\"+t).remove(),e._defs.select(\"#clip\"+e._uid+t+\"plot\").remove()}r.name=\"cartesian\",r.attr=[\"xaxis\",\"yaxis\"],r.idRoot=[\"x\",\"y\"],r.idRegex=u.idRegex,r.attrRegex=u.attrRegex,r.attributes=t(\"./attributes\"),r.layoutAttributes=t(\"./layout_attributes\"),r.supplyLayoutDefaults=t(\"./layout_defaults\"),r.transitionAxes=t(\"./transition_axes\"),r.finalizeSubplots=function(t,e){var r,n,a,o=e._subplots,s=o.xaxis,l=o.yaxis,h=o.cartesian,f=h.concat(o.gl2d||[]),p={},d={};for(r=0;r<f.length;r++){var g=f[r].split(\"y\");p[g[0]]=1,d[\"y\"+g[1]]=1}for(r=0;r<s.length;r++)p[n=s[r]]||(a=(t[c.id2name(n)]||{}).anchor,u.idRegex.y.test(a)||(a=\"y\"),h.push(n+a),f.push(n+a),d[a]||(d[a]=1,i.pushUnique(l,a)));for(r=0;r<l.length;r++)d[a=l[r]]||(n=(t[c.id2name(a)]||{}).anchor,u.idRegex.x.test(n)||(n=\"x\"),h.push(n+a),f.push(n+a),p[n]||(p[n]=1,i.pushUnique(s,n)));if(!f.length){for(var v in n=\"\",a=\"\",t){if(u.attrRegex.test(v))\"x\"===v.charAt(0)?(!n||+v.substr(5)<+n.substr(5))&&(n=v):(!a||+v.substr(5)<+a.substr(5))&&(a=v)}n=n?c.name2id(n):\"x\",a=a?c.name2id(a):\"y\",s.push(n),l.push(a),h.push(n+a)}},r.plot=function(t,e,r,n){var a,i=t._fullLayout,o=i._subplots.cartesian,s=t.calcdata;if(!Array.isArray(e))for(e=[],a=0;a<s.length;a++)e.push(a);for(a=0;a<o.length;a++){for(var l,c=o[a],u=i._plots[c],h=[],f=0;f<s.length;f++){var p=s[f],g=p[0].trace;g.xaxis+g.yaxis===c&&((-1!==e.indexOf(g.index)||g.carpet)&&(l&&l[0].trace.xaxis+l[0].trace.yaxis===c&&-1!==[\"tonextx\",\"tonexty\",\"tonext\"].indexOf(g.fill)&&-1===h.indexOf(l)&&h.push(l),h.push(p)),l=p)}d(t,u,h,r,n)}},r.clean=function(t,e,r,n){var a,i,o,s=n._plots||{},l=e._plots||{},u=n._subplots||{};if(n._hasOnlyLargeSploms&&!e._hasOnlyLargeSploms)for(o in s)(a=s[o]).plotgroup&&a.plotgroup.remove();var h=n._has&&n._has(\"gl\"),f=e._has&&e._has(\"gl\");if(h&&!f)for(o in s)(a=s[o])._scene&&a._scene.destroy();if(u.xaxis&&u.yaxis){var p=c.listIds({_fullLayout:n});for(i=0;i<p.length;i++){var d=p[i];e[c.id2name(d)]||n._infolayer.selectAll(\".g-\"+d+\"title\").remove()}}var g=n._has&&n._has(\"cartesian\"),y=e._has&&e._has(\"cartesian\");if(g&&!y)v(n._cartesianlayer.selectAll(\".subplot\"),n),n._defs.selectAll(\".axesclip\").remove(),delete n._axisConstraintGroups;else if(u.cartesian)for(i=0;i<u.cartesian.length;i++){var x=u.cartesian[i];if(!l[x]){var b=\".\"+x+\",.\"+x+\"-x,.\"+x+\"-y\";n._cartesianlayer.selectAll(b).remove(),m(x,n)}}},r.drawFramework=function(t){var e=t._fullLayout,r=function(t){var e,r,n,a,i,o,s=t._fullLayout,l=s._subplots.cartesian,c=l.length,u=[],h=[];for(e=0;e<c;e++){n=l[e],a=s._plots[n],i=a.xaxis,o=a.yaxis;var f=i._mainAxis,p=o._mainAxis,d=f._id+p._id,g=s._plots[d];a.overlays=[],d!==n&&g?(a.mainplot=d,a.mainplotinfo=g,h.push(n)):(a.mainplot=void 0,a.mainPlotinfo=void 0,u.push(n))}for(e=0;e<h.length;e++)n=h[e],(a=s._plots[n]).mainplotinfo.overlays.push(a);var v=u.concat(h),m=new Array(c);for(e=0;e<c;e++){n=v[e],a=s._plots[n],i=a.xaxis,o=a.yaxis;var y=[n,i.layer,o.layer,i.overlaying||\"\",o.overlaying||\"\"];for(r=0;r<a.overlays.length;r++)y.push(a.overlays[r].id);m[e]=y}return m}(t),a=e._cartesianlayer.selectAll(\".subplot\").data(r,String);a.enter().append(\"g\").attr(\"class\",function(t){return\"subplot \"+t[0]}),a.order(),a.exit().call(v,e),a.each(function(r){var a=r[0],i=e._plots[a];i.plotgroup=n.select(this),g(t,i),i.draglayer=f(e._draggers,\"g\",a)})},r.rangePlot=function(t,e,r){g(t,e),d(t,e,r),o.style(t)},r.toSVG=function(t){var e=t._fullLayout._glimages,r=n.select(t).selectAll(\".svg-container\");r.filter(function(t,e){return e===r.size()-1}).selectAll(\".gl-canvas-context, .gl-canvas-focus\").each(function(){var t=this.toDataURL(\"image/png\");e.append(\"svg:image\").attr({xmlns:h.svg,\"xlink:href\":t,preserveAspectRatio:\"none\",x:0,y:0,width:this.width,height:this.height})})},r.updateFx=t(\"./graph_interact\").updateFx},{\"../../components/drawing\":615,\"../../constants/xmlns_namespaces\":696,\"../../lib\":719,\"../../registry\":848,\"../get_data\":802,\"../plots\":828,\"./attributes\":765,\"./axis_ids\":770,\"./constants\":773,\"./graph_interact\":776,\"./layout_attributes\":779,\"./layout_defaults\":780,\"./transition_axes\":789,d3:164}],779:[function(t,e,r){\"use strict\";var n=t(\"../font_attributes\"),a=t(\"../../components/color/attributes\"),i=t(\"../../components/drawing/attributes\").dash,o=t(\"../../lib/extend\").extendFlat,s=t(\"../../plot_api/plot_template\").templatedArray,l=(t(\"../../constants/docs\").FORMAT_LINK,t(\"../../constants/docs\").DATE_FORMAT_LINK,t(\"./constants\"));e.exports={visible:{valType:\"boolean\",editType:\"plot\"},color:{valType:\"color\",dflt:a.defaultLine,editType:\"ticks\"},title:{text:{valType:\"string\",editType:\"ticks\"},font:n({editType:\"ticks\"}),editType:\"ticks\"},type:{valType:\"enumerated\",values:[\"-\",\"linear\",\"log\",\"date\",\"category\",\"multicategory\"],dflt:\"-\",editType:\"calc\",_noTemplating:!0},autorange:{valType:\"enumerated\",values:[!0,!1,\"reversed\"],dflt:!0,editType:\"axrange\",impliedEdits:{\"range[0]\":void 0,\"range[1]\":void 0}},rangemode:{valType:\"enumerated\",values:[\"normal\",\"tozero\",\"nonnegative\"],dflt:\"normal\",editType:\"plot\"},range:{valType:\"info_array\",items:[{valType:\"any\",editType:\"axrange\",impliedEdits:{\"^autorange\":!1},anim:!0},{valType:\"any\",editType:\"axrange\",impliedEdits:{\"^autorange\":!1},anim:!0}],editType:\"axrange\",impliedEdits:{autorange:!1},anim:!0},fixedrange:{valType:\"boolean\",dflt:!1,editType:\"calc\"},scaleanchor:{valType:\"enumerated\",values:[l.idRegex.x.toString(),l.idRegex.y.toString()],editType:\"plot\"},scaleratio:{valType:\"number\",min:0,dflt:1,editType:\"plot\"},constrain:{valType:\"enumerated\",values:[\"range\",\"domain\"],dflt:\"range\",editType:\"plot\"},constraintoward:{valType:\"enumerated\",values:[\"left\",\"center\",\"right\",\"top\",\"middle\",\"bottom\"],editType:\"plot\"},matches:{valType:\"enumerated\",values:[l.idRegex.x.toString(),l.idRegex.y.toString()],editType:\"calc\"},tickmode:{valType:\"enumerated\",values:[\"auto\",\"linear\",\"array\"],editType:\"ticks\",impliedEdits:{tick0:void 0,dtick:void 0}},nticks:{valType:\"integer\",min:0,dflt:0,editType:\"ticks\"},tick0:{valType:\"any\",editType:\"ticks\",impliedEdits:{tickmode:\"linear\"}},dtick:{valType:\"any\",editType:\"ticks\",impliedEdits:{tickmode:\"linear\"}},tickvals:{valType:\"data_array\",editType:\"ticks\"},ticktext:{valType:\"data_array\",editType:\"ticks\"},ticks:{valType:\"enumerated\",values:[\"outside\",\"inside\",\"\"],editType:\"ticks\"},tickson:{valType:\"enumerated\",values:[\"labels\",\"boundaries\"],dflt:\"labels\",editType:\"ticks\"},mirror:{valType:\"enumerated\",values:[!0,\"ticks\",!1,\"all\",\"allticks\"],dflt:!1,editType:\"ticks+layoutstyle\"},ticklen:{valType:\"number\",min:0,dflt:5,editType:\"ticks\"},tickwidth:{valType:\"number\",min:0,dflt:1,editType:\"ticks\"},tickcolor:{valType:\"color\",dflt:a.defaultLine,editType:\"ticks\"},showticklabels:{valType:\"boolean\",dflt:!0,editType:\"ticks\"},automargin:{valType:\"boolean\",dflt:!1,editType:\"ticks\"},showspikes:{valType:\"boolean\",dflt:!1,editType:\"modebar\"},spikecolor:{valType:\"color\",dflt:null,editType:\"none\"},spikethickness:{valType:\"number\",dflt:3,editType:\"none\"},spikedash:o({},i,{dflt:\"dash\",editType:\"none\"}),spikemode:{valType:\"flaglist\",flags:[\"toaxis\",\"across\",\"marker\"],dflt:\"toaxis\",editType:\"none\"},spikesnap:{valType:\"enumerated\",values:[\"data\",\"cursor\"],dflt:\"data\",editType:\"none\"},tickfont:n({editType:\"ticks\"}),tickangle:{valType:\"angle\",dflt:\"auto\",editType:\"ticks\"},tickprefix:{valType:\"string\",dflt:\"\",editType:\"ticks\"},showtickprefix:{valType:\"enumerated\",values:[\"all\",\"first\",\"last\",\"none\"],dflt:\"all\",editType:\"ticks\"},ticksuffix:{valType:\"string\",dflt:\"\",editType:\"ticks\"},showticksuffix:{valType:\"enumerated\",values:[\"all\",\"first\",\"last\",\"none\"],dflt:\"all\",editType:\"ticks\"},showexponent:{valType:\"enumerated\",values:[\"all\",\"first\",\"last\",\"none\"],dflt:\"all\",editType:\"ticks\"},exponentformat:{valType:\"enumerated\",values:[\"none\",\"e\",\"E\",\"power\",\"SI\",\"B\"],dflt:\"B\",editType:\"ticks\"},separatethousands:{valType:\"boolean\",dflt:!1,editType:\"ticks\"},tickformat:{valType:\"string\",dflt:\"\",editType:\"ticks\"},tickformatstops:s(\"tickformatstop\",{enabled:{valType:\"boolean\",dflt:!0,editType:\"ticks\"},dtickrange:{valType:\"info_array\",items:[{valType:\"any\",editType:\"ticks\"},{valType:\"any\",editType:\"ticks\"}],editType:\"ticks\"},value:{valType:\"string\",dflt:\"\",editType:\"ticks\"},editType:\"ticks\"}),hoverformat:{valType:\"string\",dflt:\"\",editType:\"none\"},showline:{valType:\"boolean\",dflt:!1,editType:\"ticks+layoutstyle\"},linecolor:{valType:\"color\",dflt:a.defaultLine,editType:\"layoutstyle\"},linewidth:{valType:\"number\",min:0,dflt:1,editType:\"ticks+layoutstyle\"},showgrid:{valType:\"boolean\",editType:\"ticks\"},gridcolor:{valType:\"color\",dflt:a.lightLine,editType:\"ticks\"},gridwidth:{valType:\"number\",min:0,dflt:1,editType:\"ticks\"},zeroline:{valType:\"boolean\",editType:\"ticks\"},zerolinecolor:{valType:\"color\",dflt:a.defaultLine,editType:\"ticks\"},zerolinewidth:{valType:\"number\",dflt:1,editType:\"ticks\"},showdividers:{valType:\"boolean\",dflt:!0,editType:\"ticks\"},dividercolor:{valType:\"color\",dflt:a.defaultLine,editType:\"ticks\"},dividerwidth:{valType:\"number\",dflt:1,editType:\"ticks\"},anchor:{valType:\"enumerated\",values:[\"free\",l.idRegex.x.toString(),l.idRegex.y.toString()],editType:\"plot\"},side:{valType:\"enumerated\",values:[\"top\",\"bottom\",\"left\",\"right\"],editType:\"plot\"},overlaying:{valType:\"enumerated\",values:[\"free\",l.idRegex.x.toString(),l.idRegex.y.toString()],editType:\"plot\"},layer:{valType:\"enumerated\",values:[\"above traces\",\"below traces\"],dflt:\"above traces\",editType:\"plot\"},domain:{valType:\"info_array\",items:[{valType:\"number\",min:0,max:1,editType:\"plot\"},{valType:\"number\",min:0,max:1,editType:\"plot\"}],dflt:[0,1],editType:\"plot\"},position:{valType:\"number\",min:0,max:1,dflt:0,editType:\"plot\"},categoryorder:{valType:\"enumerated\",values:[\"trace\",\"category ascending\",\"category descending\",\"array\",\"total ascending\",\"total descending\",\"min ascending\",\"min descending\",\"max ascending\",\"max descending\",\"sum ascending\",\"sum descending\",\"mean ascending\",\"mean descending\",\"median ascending\",\"median descending\"],dflt:\"trace\",editType:\"calc\"},categoryarray:{valType:\"data_array\",editType:\"calc\"},uirevision:{valType:\"any\",editType:\"none\"},editType:\"calc\",_deprecated:{autotick:{valType:\"boolean\",editType:\"ticks\"},title:{valType:\"string\",editType:\"ticks\"},titlefont:n({editType:\"ticks\"})}}},{\"../../components/color/attributes\":593,\"../../components/drawing/attributes\":614,\"../../constants/docs\":690,\"../../lib/extend\":710,\"../../plot_api/plot_template\":757,\"../font_attributes\":793,\"./constants\":773}],780:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/color\"),i=t(\"../../plot_api/plot_template\"),o=t(\"../layout_attributes\"),s=t(\"./layout_attributes\"),l=t(\"./type_defaults\"),c=t(\"./axis_defaults\"),u=t(\"./constraints\").handleConstraintDefaults,h=t(\"./position_defaults\"),f=t(\"./axis_ids\"),p=f.id2name,d=f.name2id,g=t(\"../../registry\"),v=g.traceIs,m=g.getComponentMethod;function y(t,e,r){Array.isArray(t[e])?t[e].push(r):t[e]=[r]}e.exports=function(t,e,r){var f,g,x={},b={},_={},w={},k={},T={},A={},M={},S={};for(f=0;f<r.length;f++){var E=r[f];if(v(E,\"cartesian\")||v(E,\"gl2d\")){var C,L;if(E.xaxis)y(x,C=p(E.xaxis),E);else if(E.xaxes)for(g=0;g<E.xaxes.length;g++)y(x,p(E.xaxes[g]),E);if(E.yaxis)y(x,L=p(E.yaxis),E);else if(E.yaxes)for(g=0;g<E.yaxes.length;g++)y(x,p(E.yaxes[g]),E);if(\"funnel\"===E.type?\"h\"===E.orientation?(C&&(b[C]=!0),L&&(A[L]=!0)):L&&(_[L]=!0):(L&&(k[L]=!0,T[L]=!0),v(E,\"carpet\")&&(\"carpet\"!==E.type||E._cheater)||C&&(w[C]=!0)),\"carpet\"===E.type&&E._cheater&&C&&(b[C]=!0),v(E,\"2dMap\")&&(M[C]=!0,M[L]=!0),v(E,\"oriented\"))S[\"h\"===E.orientation?L:C]=!0}}var P=e._subplots,O=P.xaxis,I=P.yaxis,z=n.simpleMap(O,p),D=n.simpleMap(I,p),R=z.concat(D),F=a.background;O.length&&I.length&&(F=n.coerce(t,e,o,\"plot_bgcolor\"));var B,N,j,V,U=a.combine(F,e.paper_bgcolor);function q(t,e){return n.coerce(j,V,s,t,e)}function H(t,e){return n.coerce2(j,V,s,t,e)}function G(t){return\"x\"===t?I:O}var Y={x:G(\"x\"),y:G(\"y\")},W=Y.x.concat(Y.y);function X(e,r){for(var n=\"x\"===e?z:D,a=[],i=0;i<n.length;i++){var o=n[i];o===r||(t[o]||{}).overlaying||a.push(d(o))}return a}for(f=0;f<R.length;f++){N=(B=R[f]).charAt(0),n.isPlainObject(t[B])||(t[B]={}),j=t[B],V=i.newContainer(e,B,N+\"axis\");var Z=x[B]||[];V._traceIndices=Z.map(function(t){return t._expandedIndex}),V._annIndices=[],V._shapeIndices=[],V._imgIndices=[],V._subplotsWith=[],V._counterAxes=[],V._name=V._attr=B;var J=V._id=d(B),K=X(N,B),Q=\"x\"===N&&!w[B]&&b[B]||\"y\"===N&&!k[B]&&_[B],$=\"y\"===N&&!T[B]&&A[B],tt={letter:N,font:e.font,outerTicks:M[B],showGrid:!S[B],data:Z,bgColor:U,calendar:e.calendar,automargin:!0,visibleDflt:Q,reverseDflt:$,splomStash:((e._splomAxes||{})[N]||{})[J]};q(\"uirevision\",e.uirevision),l(j,V,q,tt),c(j,V,q,tt,e);var et=H(\"spikecolor\"),rt=H(\"spikethickness\"),nt=H(\"spikedash\"),at=H(\"spikemode\"),it=H(\"spikesnap\");q(\"showspikes\",!!(et||rt||nt||at||it))||(delete V.spikecolor,delete V.spikethickness,delete V.spikedash,delete V.spikemode,delete V.spikesnap),h(j,V,q,{letter:N,counterAxes:Y[N],overlayableAxes:K,grid:e.grid}),V._input=j}var ot=m(\"rangeslider\",\"handleDefaults\"),st=m(\"rangeselector\",\"handleDefaults\");for(f=0;f<z.length;f++)B=z[f],j=t[B],V=e[B],ot(t,e,B),\"date\"===V.type&&st(j,V,e,D,V.calendar),q(\"fixedrange\");for(f=0;f<D.length;f++){B=D[f],j=t[B],V=e[B];var lt=e[p(V.anchor)];q(\"fixedrange\",m(\"rangeslider\",\"isVisible\")(lt))}var ct=e._axisConstraintGroups=[],ut=e._axisMatchGroups=[];for(f=0;f<R.length;f++)N=(B=R[f]).charAt(0),j=t[B],V=e[B],u(j,V,q,W,e);for(f=0;f<ut.length;f++){var ht,ft=ut[f],pt=null,dt=null;for(ht in ft)(V=e[p(ht)]).matches||(pt=V.range,dt=V.autorange);if(null===pt||null===dt)for(ht in ft){pt=(V=e[p(ht)]).range,dt=V.autorange;break}for(ht in ft)(V=e[p(ht)]).matches&&(V.range=pt.slice(),V.autorange=dt),V._matchGroup=ft;if(ct.length)for(ht in ft)for(g=0;g<ct.length;g++){var gt=ct[g];for(var vt in gt)ht===vt&&(n.warn(\"Axis \"+vt+\" is set with both a *scaleanchor* and *matches* constraint; ignoring the scale constraint.\"),delete gt[vt],Object.keys(gt).length<2&&ct.splice(g,1))}}}},{\"../../components/color\":594,\"../../lib\":719,\"../../plot_api/plot_template\":757,\"../../registry\":848,\"../layout_attributes\":819,\"./axis_defaults\":769,\"./axis_ids\":770,\"./constraints\":774,\"./layout_attributes\":779,\"./position_defaults\":782,\"./type_defaults\":790}],781:[function(t,e,r){\"use strict\";var n=t(\"tinycolor2\").mix,a=t(\"../../components/color/attributes\").lightFraction,i=t(\"../../lib\");e.exports=function(t,e,r,o){var s=(o=o||{}).dfltColor;function l(r,n){return i.coerce2(t,e,o.attributes,r,n)}var c=l(\"linecolor\",s),u=l(\"linewidth\");r(\"showline\",o.showLine||!!c||!!u)||(delete e.linecolor,delete e.linewidth);var h=l(\"gridcolor\",n(s,o.bgColor,o.blend||a).toRgbString()),f=l(\"gridwidth\");if(r(\"showgrid\",o.showGrid||!!h||!!f)||(delete e.gridcolor,delete e.gridwidth),!o.noZeroLine){var p=l(\"zerolinecolor\",s),d=l(\"zerolinewidth\");r(\"zeroline\",o.showGrid||!!p||!!d)||(delete e.zerolinecolor,delete e.zerolinewidth)}}},{\"../../components/color/attributes\":593,\"../../lib\":719,tinycolor2:538}],782:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\");e.exports=function(t,e,r,i){var o,s,l,c,u=i.counterAxes||[],h=i.overlayableAxes||[],f=i.letter,p=i.grid;p&&(s=p._domains[f][p._axisMap[e._id]],o=p._anchors[e._id],s&&(l=p[f+\"side\"].split(\" \")[0],c=p.domain[f][\"right\"===l||\"top\"===l?1:0])),s=s||[0,1],o=o||(n(t.position)?\"free\":u[0]||\"free\"),l=l||(\"x\"===f?\"bottom\":\"left\"),c=c||0,\"free\"===a.coerce(t,e,{anchor:{valType:\"enumerated\",values:[\"free\"].concat(u),dflt:o}},\"anchor\")&&r(\"position\",c),a.coerce(t,e,{side:{valType:\"enumerated\",values:\"x\"===f?[\"bottom\",\"top\"]:[\"left\",\"right\"],dflt:l}},\"side\");var d=!1;if(h.length&&(d=a.coerce(t,e,{overlaying:{valType:\"enumerated\",values:[!1].concat(h),dflt:!1}},\"overlaying\")),!d){var g=r(\"domain\",s);g[0]>g[1]-1/4096&&(e.domain=s),a.noneOrAll(t.domain,e.domain,s)}return r(\"layer\"),e}},{\"../../lib\":719,\"fast-isnumeric\":226}],783:[function(t,e,r){\"use strict\";var n=t(\"../../constants/alignment\").FROM_BL;e.exports=function(t,e,r){void 0===r&&(r=n[t.constraintoward||\"center\"]);var a=[t.r2l(t.range[0]),t.r2l(t.range[1])],i=a[0]+(a[1]-a[0])*r;t.range=t._input.range=[t.l2r(i+(a[0]-i)*e),t.l2r(i+(a[1]-i)*e)]}},{\"../../constants/alignment\":688}],784:[function(t,e,r){\"use strict\";var n=t(\"polybooljs\"),a=t(\"../../registry\"),i=t(\"../../components/color\"),o=t(\"../../components/fx\"),s=t(\"../../lib\"),l=t(\"../../lib/polygon\"),c=t(\"../../lib/throttle\"),u=t(\"../../components/fx/helpers\").makeEventData,h=t(\"./axis_ids\").getFromId,f=t(\"../../lib/clear_gl_canvases\"),p=t(\"../../plot_api/subroutines\").redrawReglTraces,d=t(\"./constants\"),g=d.MINSELECT,v=l.filter,m=l.tester;function y(t){return t._id}function x(t,e,r,n,a,i,o){var s,l,c,u,h,f,p,d,g,v=e._hoverdata,m=e._fullLayout.clickmode.indexOf(\"event\")>-1,y=[];if(function(t){return t&&Array.isArray(t)&&!0!==t[0].hoverOnBox}(v)){k(t,e,i);var x=function(t,e){var r,n,a=t[0],i=-1,o=[];for(n=0;n<e.length;n++)if(r=e[n],a.fullData._expandedIndex===r.cd[0].trace._expandedIndex){if(!0===a.hoverOnBox)break;void 0!==a.pointNumber?i=a.pointNumber:void 0!==a.binNumber&&(i=a.binNumber,o=a.pointNumbers);break}return{pointNumber:i,pointNumbers:o,searchInfo:r}}(v,s=A(e,r,n,a));if(x.pointNumbers.length>0?function(t,e){var r,n,a,i=[];for(a=0;a<t.length;a++)(r=t[a]).cd[0].trace.selectedpoints&&r.cd[0].trace.selectedpoints.length>0&&i.push(r);if(1===i.length&&i[0]===e.searchInfo&&(n=e.searchInfo.cd[0].trace).selectedpoints.length===e.pointNumbers.length){for(a=0;a<e.pointNumbers.length;a++)if(n.selectedpoints.indexOf(e.pointNumbers[a])<0)return!1;return!0}return!1}(s,x):function(t){var e,r,n,a=0;for(n=0;n<t.length;n++)if(e=t[n],(r=e.cd[0].trace).selectedpoints){if(r.selectedpoints.length>1)return!1;if((a+=r.selectedpoints.length)>1)return!1}return 1===a}(s)&&(f=S(x))){for(o&&o.remove(),g=0;g<s.length;g++)(l=s[g])._module.selectPoints(l,!1);E(e,s),T(i),m&&e.emit(\"plotly_deselect\",null)}else{for(p=t.shiftKey&&(void 0!==f?f:S(x)),c=function(t,e,r){return{pointNumber:t,searchInfo:e,subtract:r}}(x.pointNumber,x.searchInfo,p),u=w(i.selectionDefs.concat([c])),g=0;g<s.length;g++)if(h=C(s[g]._module.selectPoints(s[g],u),s[g]),y.length)for(var b=0;b<h.length;b++)y.push(h[b]);else y=h;E(e,s,d={points:y}),c&&i&&i.selectionDefs.push(c),o&&M(i.mergedPolygons,o),m&&e.emit(\"plotly_selected\",d)}}}function b(t){return\"pointNumber\"in t&&\"searchInfo\"in t}function _(t){return{xmin:0,xmax:0,ymin:0,ymax:0,pts:[],contains:function(e,r,n,a){var i=t.searchInfo.cd[0].trace._expandedIndex;return a.cd[0].trace._expandedIndex===i&&n===t.pointNumber},isRect:!1,degenerate:!1,subtract:t.subtract}}function w(t){for(var e=[],r=b(t[0])?0:t[0][0][0],n=r,a=b(t[0])?0:t[0][0][1],i=a,o=0;o<t.length;o++)if(b(t[o]))e.push(_(t[o]));else{var s=l.tester(t[o]);s.subtract=t[o].subtract,e.push(s),r=Math.min(r,s.xmin),n=Math.max(n,s.xmax),a=Math.min(a,s.ymin),i=Math.max(i,s.ymax)}return{xmin:r,xmax:n,ymin:a,ymax:i,pts:[],contains:function(t,r,n,a){for(var i=!1,o=0;o<e.length;o++)e[o].contains(t,r,n,a)&&(i=!1===e[o].subtract);return i},isRect:!1,degenerate:!1}}function k(t,e,r){var n=e._fullLayout,a=r.plotinfo,i=n._lastSelectedSubplot&&n._lastSelectedSubplot===a.id,o=t.shiftKey||t.altKey;i&&o&&a.selection&&a.selection.selectionDefs&&!r.selectionDefs?(r.selectionDefs=a.selection.selectionDefs,r.mergedPolygons=a.selection.mergedPolygons):o&&a.selection||T(r),i||(L(e),n._lastSelectedSubplot=a.id)}function T(t){var e=t.plotinfo;e.selection={},e.selection.selectionDefs=t.selectionDefs=[],e.selection.mergedPolygons=t.mergedPolygons=[]}function A(t,e,r,n){var a,i,o,s=[],l=e.map(y),c=r.map(y);for(o=0;o<t.calcdata.length;o++)if(!0===(i=(a=t.calcdata[o])[0].trace).visible&&i._module&&i._module.selectPoints)if(!n||i.subplot!==n&&i.geo!==n)if(\"splom\"===i.type&&i._xaxes[l[0]]&&i._yaxes[c[0]]){var u=p(i._module,a,e[0],r[0]);u.scene=t._fullLayout._splomScenes[i.uid],s.push(u)}else if(\"sankey\"===i.type){var f=p(i._module,a,e[0],r[0]);s.push(f)}else{if(-1===l.indexOf(i.xaxis))continue;if(-1===c.indexOf(i.yaxis))continue;s.push(p(i._module,a,h(t,i.xaxis),h(t,i.yaxis)))}else s.push(p(i._module,a,e[0],r[0]));return s;function p(t,e,r,n){return{_module:t,cd:e,xaxis:r,yaxis:n}}}function M(t,e){var r,n,a=[];for(r=0;r<t.length;r++){var i=t[r];a.push(i.join(\"L\")+\"L\"+i[0])}n=t.length>0?\"M\"+a.join(\"M\")+\"Z\":\"M0,0Z\",e.attr(\"d\",n)}function S(t){var e=t.searchInfo.cd[0].trace,r=t.pointNumber,n=t.pointNumbers,a=n.length>0?n[0]:r;return!!e.selectedpoints&&e.selectedpoints.indexOf(a)>-1}function E(t,e,r){var n,i,o,s;for(n=0;n<e.length;n++){var l=e[n].cd[0].trace._fullInput,c=t._fullLayout._tracePreGUI[l.uid]||{};void 0===c.selectedpoints&&(c.selectedpoints=l._input.selectedpoints||null)}if(r){var u=r.points||[];for(n=0;n<e.length;n++)(s=e[n].cd[0].trace)._input.selectedpoints=s._fullInput.selectedpoints=[],s._fullInput!==s&&(s.selectedpoints=[]);for(n=0;n<u.length;n++){var h=u[n],d=h.data,g=h.fullData;h.pointIndices?([].push.apply(d.selectedpoints,h.pointIndices),s._fullInput!==s&&[].push.apply(g.selectedpoints,h.pointIndices)):(d.selectedpoints.push(h.pointIndex),s._fullInput!==s&&g.selectedpoints.push(h.pointIndex))}}else for(n=0;n<e.length;n++)delete(s=e[n].cd[0].trace).selectedpoints,delete s._input.selectedpoints,s._fullInput!==s&&delete s._fullInput.selectedpoints;var v=!1;for(n=0;n<e.length;n++){s=(o=(i=e[n]).cd)[0].trace,a.traceIs(s,\"regl\")&&(v=!0);var m=i._module,y=m.styleOnSelect||m.style;y&&(y(t,o,o[0].node3),o[0].nodeRangePlot3&&y(t,o,o[0].nodeRangePlot3))}v&&(f(t),p(t))}function C(t,e){if(Array.isArray(t))for(var r=e.cd,n=e.cd[0].trace,a=0;a<t.length;a++)t[a]=u(t[a],n,r);return t}function L(t){var e=(t._fullLayout||{})._zoomlayer;e&&e.selectAll(\".select-outline\").remove()}e.exports={prepSelect:function(t,e,r,a,l){var u,h,f,p,y,b,_,S=a.gd,L=S._fullLayout,P=L._zoomlayer,O=a.element.getBoundingClientRect(),I=a.plotinfo,z=I.xaxis._offset,D=I.yaxis._offset,R=e-O.left,F=r-O.top,B=R,N=F,j=\"M\"+R+\",\"+F,V=a.xaxes[0]._length,U=a.yaxes[0]._length,q=a.xaxes.concat(a.yaxes),H=t.altKey;k(t,S,a),\"lasso\"===l&&(u=v([[R,F]],d.BENDPX));var G=P.selectAll(\"path.select-outline-\"+I.id).data([1,2]);G.enter().append(\"path\").attr(\"class\",function(t){return\"select-outline select-outline-\"+t+\" select-outline-\"+I.id}).attr(\"transform\",\"translate(\"+z+\", \"+D+\")\").attr(\"d\",j+\"Z\");var Y,W=P.append(\"path\").attr(\"class\",\"zoombox-corners\").style({fill:i.background,stroke:i.defaultLine,\"stroke-width\":1}).attr(\"transform\",\"translate(\"+z+\", \"+D+\")\").attr(\"d\",\"M0,0Z\"),X=L._uid+d.SELECTID,Z=[],J=A(S,a.xaxes,a.yaxes,a.subplot);function K(t,e){return\"log\"===t.type?t.p2d(e):t.p2r(e)}function Q(t){var e=\"y\"===t._id.charAt(0)?1:0;return function(r){return K(t,r[e])}}function $(t,e){return t-e}Y=I.fillRangeItems?I.fillRangeItems:\"select\"===l?function(t,e){var r=t.range={};for(y=0;y<q.length;y++){var n=q[y],a=n._id.charAt(0);r[n._id]=[K(n,e[a+\"min\"]),K(n,e[a+\"max\"])].sort($)}}:function(t,e,r){var n=t.lassoPoints={};for(y=0;y<q.length;y++){var a=q[y];n[a._id]=r.filtered.map(Q(a))}},a.moveFn=function(t,e){B=Math.max(0,Math.min(V,t+R)),N=Math.max(0,Math.min(U,e+F));var r=Math.abs(B-R),i=Math.abs(N-F);if(\"select\"===l){var o=L.selectdirection;\"h\"===(o=\"any\"===L.selectdirection?i<Math.min(.6*r,g)?\"h\":r<Math.min(.6*i,g)?\"v\":\"d\":L.selectdirection)?((p=[[R,0],[R,U],[B,U],[B,0]]).xmin=Math.min(R,B),p.xmax=Math.max(R,B),p.ymin=Math.min(0,U),p.ymax=Math.max(0,U),W.attr(\"d\",\"M\"+p.xmin+\",\"+(F-g)+\"h-4v\"+2*g+\"h4ZM\"+(p.xmax-1)+\",\"+(F-g)+\"h4v\"+2*g+\"h-4Z\")):\"v\"===o?((p=[[0,F],[0,N],[V,N],[V,F]]).xmin=Math.min(0,V),p.xmax=Math.max(0,V),p.ymin=Math.min(F,N),p.ymax=Math.max(F,N),W.attr(\"d\",\"M\"+(R-g)+\",\"+p.ymin+\"v-4h\"+2*g+\"v4ZM\"+(R-g)+\",\"+(p.ymax-1)+\"v4h\"+2*g+\"v-4Z\")):\"d\"===o&&((p=[[R,F],[R,N],[B,N],[B,F]]).xmin=Math.min(R,B),p.xmax=Math.max(R,B),p.ymin=Math.min(F,N),p.ymax=Math.max(F,N),W.attr(\"d\",\"M0,0Z\"))}else\"lasso\"===l&&(u.addPt([B,N]),p=u.filtered);a.selectionDefs&&a.selectionDefs.length?(f=function(t,e,r){return r?n.difference({regions:t,inverted:!1},{regions:[e],inverted:!1}).regions:n.union({regions:t,inverted:!1},{regions:[e],inverted:!1}).regions}(a.mergedPolygons,p,H),p.subtract=H,h=w(a.selectionDefs.concat([p]))):(f=[p],h=m(p)),M(f,G),c.throttle(X,d.SELECTDELAY,function(){var t;Z=[];var e,r=[];for(y=0;y<J.length;y++)if(e=(b=J[y])._module.selectPoints(b,h),r.push(e),t=C(e,b),Z.length)for(var n=0;n<t.length;n++)Z.push(t[n]);else Z=t;E(S,J,_={points:Z}),Y(_,p,u),a.gd.emit(\"plotly_selecting\",_)})},a.clickFn=function(t,e){var r=L.clickmode;W.remove(),c.done(X).then(function(){if(c.clear(X),2===t){for(G.remove(),y=0;y<J.length;y++)(b=J[y])._module.selectPoints(b,!1);E(S,J),T(a),S.emit(\"plotly_deselect\",null)}else r.indexOf(\"select\")>-1&&x(e,S,a.xaxes,a.yaxes,a.subplot,a,G),\"event\"===r&&S.emit(\"plotly_selected\",void 0);o.click(S,e)}).catch(s.error)},a.doneFn=function(){W.remove(),c.done(X).then(function(){c.clear(X),a.gd.emit(\"plotly_selected\",_),p&&a.selectionDefs&&(p.subtract=H,a.selectionDefs.push(p),a.mergedPolygons.length=0,[].push.apply(a.mergedPolygons,f)),a.doneFnCompleted&&a.doneFnCompleted(Z)}).catch(s.error)}},clearSelect:L,selectOnClick:x}},{\"../../components/color\":594,\"../../components/fx\":632,\"../../components/fx/helpers\":629,\"../../lib\":719,\"../../lib/clear_gl_canvases\":704,\"../../lib/polygon\":731,\"../../lib/throttle\":744,\"../../plot_api/subroutines\":758,\"../../registry\":848,\"./axis_ids\":770,\"./constants\":773,polybooljs:474}],785:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"fast-isnumeric\"),i=t(\"../../lib\"),o=i.cleanNumber,s=i.ms2DateTime,l=i.dateTime2ms,c=i.ensureNumber,u=i.isArrayOrTypedArray,h=t(\"../../constants/numerical\"),f=h.FP_SAFE,p=h.BADNUM,d=h.LOG_CLIP,g=t(\"./constants\"),v=t(\"./axis_ids\");function m(t){return Math.pow(10,t)}function y(t){return null!=t}e.exports=function(t,e){e=e||{};var r=t._id||\"x\",h=r.charAt(0);function x(e,r){if(e>0)return Math.log(e)/Math.LN10;if(e<=0&&r&&t.range&&2===t.range.length){var n=t.range[0],a=t.range[1];return.5*(n+a-2*d*Math.abs(n-a))}return p}function b(e,r,n){var o=l(e,n||t.calendar);if(o===p){if(!a(e))return p;e=+e;var s=Math.floor(10*i.mod(e+.05,1)),c=Math.round(e-s/10);o=l(new Date(c))+s/10}return o}function _(e,r,n){return s(e,r,n||t.calendar)}function w(e){return t._categories[Math.round(e)]}function k(e){if(y(e)){if(void 0===t._categoriesMap&&(t._categoriesMap={}),void 0!==t._categoriesMap[e])return t._categoriesMap[e];t._categories.push(\"number\"==typeof e?String(e):e);var r=t._categories.length-1;return t._categoriesMap[e]=r,r}return p}function T(e){if(t._categoriesMap)return t._categoriesMap[e]}function A(t){var e=T(t);return void 0!==e?e:a(t)?+t:void 0}function M(e){return a(e)?n.round(t._b+t._m*e,2):p}function S(e){return(e-t._b)/t._m}t.c2l=\"log\"===t.type?x:c,t.l2c=\"log\"===t.type?m:c,t.l2p=M,t.p2l=S,t.c2p=\"log\"===t.type?function(t,e){return M(x(t,e))}:M,t.p2c=\"log\"===t.type?function(t){return m(S(t))}:S,-1!==[\"linear\",\"-\"].indexOf(t.type)?(t.d2r=t.r2d=t.d2c=t.r2c=t.d2l=t.r2l=o,t.c2d=t.c2r=t.l2d=t.l2r=c,t.d2p=t.r2p=function(e){return t.l2p(o(e))},t.p2d=t.p2r=S,t.cleanPos=c):\"log\"===t.type?(t.d2r=t.d2l=function(t,e){return x(o(t),e)},t.r2d=t.r2c=function(t){return m(o(t))},t.d2c=t.r2l=o,t.c2d=t.l2r=c,t.c2r=x,t.l2d=m,t.d2p=function(e,r){return t.l2p(t.d2r(e,r))},t.p2d=function(t){return m(S(t))},t.r2p=function(e){return t.l2p(o(e))},t.p2r=S,t.cleanPos=c):\"date\"===t.type?(t.d2r=t.r2d=i.identity,t.d2c=t.r2c=t.d2l=t.r2l=b,t.c2d=t.c2r=t.l2d=t.l2r=_,t.d2p=t.r2p=function(e,r,n){return t.l2p(b(e,0,n))},t.p2d=t.p2r=function(t,e,r){return _(S(t),e,r)},t.cleanPos=function(e){return i.cleanDate(e,p,t.calendar)}):\"category\"===t.type?(t.d2c=t.d2l=k,t.r2d=t.c2d=t.l2d=w,t.d2r=t.d2l_noadd=A,t.r2c=function(e){var r=A(e);return void 0!==r?r:t.fraction2r(.5)},t.l2r=t.c2r=c,t.r2l=A,t.d2p=function(e){return t.l2p(t.r2c(e))},t.p2d=function(t){return w(S(t))},t.r2p=t.d2p,t.p2r=S,t.cleanPos=function(t){return\"string\"==typeof t&&\"\"!==t?t:c(t)}):\"multicategory\"===t.type&&(t.r2d=t.c2d=t.l2d=w,t.d2r=t.d2l_noadd=A,t.r2c=function(e){var r=A(e);return void 0!==r?r:t.fraction2r(.5)},t.r2c_just_indices=T,t.l2r=t.c2r=c,t.r2l=A,t.d2p=function(e){return t.l2p(t.r2c(e))},t.p2d=function(t){return w(S(t))},t.r2p=t.d2p,t.p2r=S,t.cleanPos=function(t){return Array.isArray(t)||\"string\"==typeof t&&\"\"!==t?t:c(t)},t.setupMultiCategory=function(n){var a,o,s=t._traceIndices,l=e._axisMatchGroups;if(l&&l.length&&0===t._categories.length)for(a=0;a<l.length;a++){var c=l[a];if(c[r])for(var f in c)if(f!==r){var p=e[v.id2name(f)];s=s.concat(p._traceIndices)}}var d=[[0,{}],[0,{}]],g=[];for(a=0;a<s.length;a++){var m=n[s[a]];if(h in m){var x=m[h],b=m._length||i.minRowLength(x);if(u(x[0])&&u(x[1]))for(o=0;o<b;o++){var _=x[0][o],w=x[1][o];y(_)&&y(w)&&(g.push([_,w]),_ in d[0][1]||(d[0][1][_]=d[0][0]++),w in d[1][1]||(d[1][1][w]=d[1][0]++))}}}for(g.sort(function(t,e){var r=d[0][1],n=r[t[0]]-r[e[0]];if(n)return n;var a=d[1][1];return a[t[1]]-a[e[1]]}),a=0;a<g.length;a++)k(g[a])}),t.fraction2r=function(e){var r=t.r2l(t.range[0]),n=t.r2l(t.range[1]);return t.l2r(r+e*(n-r))},t.r2fraction=function(e){var r=t.r2l(t.range[0]),n=t.r2l(t.range[1]);return(t.r2l(e)-r)/(n-r)},t.cleanRange=function(e,r){r||(r={}),e||(e=\"range\");var n,o,s=i.nestedProperty(t,e).get();if(o=(o=\"date\"===t.type?i.dfltRange(t.calendar):\"y\"===h?g.DFLTRANGEY:r.dfltRange||g.DFLTRANGEX).slice(),\"tozero\"!==t.rangemode&&\"nonnegative\"!==t.rangemode||(o[0]=0),s&&2===s.length)for(\"date\"!==t.type||t.autorange||(s[0]=i.cleanDate(s[0],p,t.calendar),s[1]=i.cleanDate(s[1],p,t.calendar)),n=0;n<2;n++)if(\"date\"===t.type){if(!i.isDateTime(s[n],t.calendar)){t[e]=o;break}if(t.r2l(s[0])===t.r2l(s[1])){var l=i.constrain(t.r2l(s[0]),i.MIN_MS+1e3,i.MAX_MS-1e3);s[0]=t.l2r(l-1e3),s[1]=t.l2r(l+1e3);break}}else{if(!a(s[n])){if(!a(s[1-n])){t[e]=o;break}s[n]=s[1-n]*(n?10:.1)}if(s[n]<-f?s[n]=-f:s[n]>f&&(s[n]=f),s[0]===s[1]){var c=Math.max(1,Math.abs(1e-6*s[0]));s[0]-=c,s[1]+=c}}else i.nestedProperty(t,e).set(o)},t.setScale=function(r){var n=e._size;if(t.overlaying){var a=v.getFromId({_fullLayout:e},t.overlaying);t.domain=a.domain}var i=r&&t._r?\"_r\":\"range\",o=t.calendar;t.cleanRange(i);var s=t.r2l(t[i][0],o),l=t.r2l(t[i][1],o);if(\"y\"===h?(t._offset=n.t+(1-t.domain[1])*n.h,t._length=n.h*(t.domain[1]-t.domain[0]),t._m=t._length/(s-l),t._b=-t._m*l):(t._offset=n.l+t.domain[0]*n.w,t._length=n.w*(t.domain[1]-t.domain[0]),t._m=t._length/(l-s),t._b=-t._m*s),!isFinite(t._m)||!isFinite(t._b)||t._length<0)throw e._replotting=!1,new Error(\"Something went wrong with axis scaling\")},t.makeCalcdata=function(e,r){var n,a,o,s,l=t.type,c=\"date\"===l&&e[r+\"calendar\"];if(r in e){if(n=e[r],s=e._length||i.minRowLength(n),i.isTypedArray(n)&&(\"linear\"===l||\"log\"===l)){if(s===n.length)return n;if(n.subarray)return n.subarray(0,s)}if(\"multicategory\"===l)return function(t,e){for(var r=new Array(e),n=0;n<e;n++){var a=(t[0]||[])[n],i=(t[1]||[])[n];r[n]=T([a,i])}return r}(n,s);for(a=new Array(s),o=0;o<s;o++)a[o]=t.d2c(n[o],0,c)}else{var u=r+\"0\"in e?t.d2c(e[r+\"0\"],0,c):0,h=e[\"d\"+r]?Number(e[\"d\"+r]):1;for(n=e[{x:\"y\",y:\"x\"}[r]],s=e._length||n.length,a=new Array(s),o=0;o<s;o++)a[o]=u+o*h}return a},t.isValidRange=function(e){return Array.isArray(e)&&2===e.length&&a(t.r2l(e[0]))&&a(t.r2l(e[1]))},t.isPtWithinRange=function(e,r){var n=t.c2l(e[h],null,r),a=t.r2l(t.range[0]),i=t.r2l(t.range[1]);return a<i?a<=n&&n<=i:i<=n&&n<=a},t.clearCalc=function(){var n=function(){t._categories=[],t._categoriesMap={}},a=e._axisMatchGroups;if(a&&a.length){for(var i=!1,o=0;o<a.length;o++){var s=a[o];if(s[r]){i=!0;var l=null,c=null;for(var u in s){var h=e[v.id2name(u)];if(h._categories){l=h._categories,c=h._categoriesMap;break}}l&&c?(t._categories=l,t._categoriesMap=c):n();break}}i||n()}else n();if(t._initialCategories)for(var f=0;f<t._initialCategories.length;f++)k(t._initialCategories[f])},t.sortByInitialCategories=function(){var n=[];if(t._categories=[],t._categoriesMap={},t._initialCategories)for(var a=0;a<t._initialCategories.length;a++)k(t._initialCategories[a]);n=n.concat(t._traceIndices);var i=t._matchGroup;for(var o in i)if(r!==o){var s=e[v.id2name(o)];s._categories=t._categories,s._categoriesMap=t._categoriesMap,n=n.concat(s._traceIndices)}return n};var E=e._d3locale;\"date\"===t.type&&(t._dateFormat=E?E.timeFormat.utc:n.time.format.utc,t._extraFormat=e._extraFormat),t._separators=e.separators,t._numFormat=E?E.numberFormat:n.format,delete t._minDtick,delete t._forceTick0}},{\"../../constants/numerical\":695,\"../../lib\":719,\"./axis_ids\":770,\"./constants\":773,d3:164,\"fast-isnumeric\":226}],786:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./layout_attributes\"),i=t(\"../array_container_defaults\");function o(t){var e=[\"showexponent\",\"showtickprefix\",\"showticksuffix\"].filter(function(e){return void 0!==t[e]});if(e.every(function(r){return t[r]===t[e[0]]})||1===e.length)return t[e[0]]}function s(t,e){function r(r,i){return n.coerce(t,e,a.tickformatstops,r,i)}r(\"enabled\")&&(r(\"dtickrange\"),r(\"value\"))}e.exports=function(t,e,r,l,c,u){u&&1!==u.pass||function(t,e,r,n,a){var i=o(t);r(\"tickprefix\")&&r(\"showtickprefix\",i);r(\"ticksuffix\",a.tickSuffixDflt)&&r(\"showticksuffix\",i)}(t,0,r,0,c),u&&2!==u.pass||function(t,e,r,l,c){var u=o(t);r(\"tickprefix\")&&r(\"showtickprefix\",u);r(\"ticksuffix\",c.tickSuffixDflt)&&r(\"showticksuffix\",u);if(r(\"showticklabels\")){var h=c.font||{},f=e.color,p=f&&f!==a.color.dflt?f:h.color;if(n.coerceFont(r,\"tickfont\",{family:h.family,size:h.size,color:p}),r(\"tickangle\"),\"category\"!==l){var d=r(\"tickformat\"),g=t.tickformatstops;Array.isArray(g)&&g.length&&i(t,e,{name:\"tickformatstops\",inclusionAttr:\"enabled\",handleItemDefaults:s}),d||\"date\"===l||(r(\"showexponent\",u),r(\"exponentformat\"),r(\"separatethousands\"))}}}(t,e,r,l,c)}},{\"../../lib\":719,\"../array_container_defaults\":763,\"./layout_attributes\":779}],787:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./layout_attributes\");e.exports=function(t,e,r,i){var o=n.coerce2(t,e,a,\"ticklen\"),s=n.coerce2(t,e,a,\"tickwidth\"),l=n.coerce2(t,e,a,\"tickcolor\",e.color);r(\"ticks\",i.outerTicks||o||s||l?\"outside\":\"\")||(delete e.ticklen,delete e.tickwidth,delete e.tickcolor)}},{\"../../lib\":719,\"./layout_attributes\":779}],788:[function(t,e,r){\"use strict\";var n=t(\"./clean_ticks\");e.exports=function(t,e,r,a){var i;\"array\"!==t.tickmode||\"log\"!==a&&\"date\"!==a?i=r(\"tickmode\",Array.isArray(t.tickvals)?\"array\":t.dtick?\"linear\":\"auto\"):i=e.tickmode=\"auto\";if(\"auto\"===i)r(\"nticks\");else if(\"linear\"===i){var o=e.dtick=n.dtick(t.dtick,a);e.tick0=n.tick0(t.tick0,a,e.calendar,o)}else if(\"multicategory\"!==a){void 0===r(\"tickvals\")?e.tickmode=\"auto\":r(\"ticktext\")}}},{\"./clean_ticks\":772}],789:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../registry\"),i=t(\"../../lib\"),o=t(\"../../components/drawing\"),s=t(\"./axes\");e.exports=function(t,e,r,l){var c=t._fullLayout;if(0!==e.length){var u,h,f,p;l&&(u=l());var d=n.ease(r.easing);return t._transitionData._interruptCallbacks.push(function(){return window.cancelAnimationFrame(p),p=null,function(){for(var r={},n=0;n<e.length;n++){var i=e[n],o=i.plotinfo.xaxis,s=i.plotinfo.yaxis;i.xr0&&(r[o._name+\".range\"]=i.xr0.slice()),i.yr0&&(r[s._name+\".range\"]=i.yr0.slice())}return a.call(\"relayout\",t,r).then(function(){for(var t=0;t<e.length;t++)g(e[t].plotinfo)})}()}),h=Date.now(),p=window.requestAnimationFrame(function n(){f=Date.now();for(var i=Math.min(1,(f-h)/r.duration),o=d(i),s=0;s<e.length;s++)v(e[s],o);f-h>r.duration?(function(){for(var r={},n=0;n<e.length;n++){var i=e[n],o=i.plotinfo.xaxis,s=i.plotinfo.yaxis;i.xr1&&(r[o._name+\".range\"]=i.xr1.slice()),i.yr1&&(r[s._name+\".range\"]=i.yr1.slice())}u&&u(),a.call(\"relayout\",t,r).then(function(){for(var t=0;t<e.length;t++)g(e[t].plotinfo)})}(),p=window.cancelAnimationFrame(n)):p=window.requestAnimationFrame(n)}),Promise.resolve()}function g(t){var e=t.xaxis,r=t.yaxis;c._defs.select(\"#\"+t.clipId+\"> rect\").call(o.setTranslate,0,0).call(o.setScale,1,1),t.plot.call(o.setTranslate,e._offset,r._offset).call(o.setScale,1,1);var n=t.plot.selectAll(\".scatterlayer .trace\");n.selectAll(\".point\").call(o.setPointGroupScale,1,1),n.selectAll(\".textpoint\").call(o.setTextPointsScale,1,1),n.call(o.hideOutsideRangePoints,t)}function v(e,r){var n=e.plotinfo,a=n.xaxis,l=n.yaxis,c=a._length,u=l._length,h=!!e.xr1,f=!!e.yr1,p=[];if(h){var d=i.simpleMap(e.xr0,a.r2l),g=i.simpleMap(e.xr1,a.r2l),v=d[1]-d[0],m=g[1]-g[0];p[0]=(d[0]*(1-r)+r*g[0]-d[0])/(d[1]-d[0])*c,p[2]=c*(1-r+r*m/v),a.range[0]=a.l2r(d[0]*(1-r)+r*g[0]),a.range[1]=a.l2r(d[1]*(1-r)+r*g[1])}else p[0]=0,p[2]=c;if(f){var y=i.simpleMap(e.yr0,l.r2l),x=i.simpleMap(e.yr1,l.r2l),b=y[1]-y[0],_=x[1]-x[0];p[1]=(y[1]*(1-r)+r*x[1]-y[1])/(y[0]-y[1])*u,p[3]=u*(1-r+r*_/b),l.range[0]=a.l2r(y[0]*(1-r)+r*x[0]),l.range[1]=l.l2r(y[1]*(1-r)+r*x[1])}else p[1]=0,p[3]=u;s.drawOne(t,a,{skipTitle:!0}),s.drawOne(t,l,{skipTitle:!0}),s.redrawComponents(t,[a._id,l._id]);var w=h?c/p[2]:1,k=f?u/p[3]:1,T=h?p[0]:0,A=f?p[1]:0,M=h?p[0]/p[2]*c:0,S=f?p[1]/p[3]*u:0,E=a._offset-M,C=l._offset-S;n.clipRect.call(o.setTranslate,T,A).call(o.setScale,1/w,1/k),n.plot.call(o.setTranslate,E,C).call(o.setScale,w,k),o.setPointGroupScale(n.zoomScalePts,1/w,1/k),o.setTextPointsScale(n.zoomScaleTxt,1/w,1/k)}s.redrawComponents(t)}},{\"../../components/drawing\":615,\"../../lib\":719,\"../../registry\":848,\"./axes\":767,d3:164}],790:[function(t,e,r){\"use strict\";var n=t(\"../../registry\").traceIs,a=t(\"./axis_autotype\");function i(t){return{v:\"x\",h:\"y\"}[t.orientation||\"v\"]}function o(t,e){var r=i(t),a=n(t,\"box-violin\"),o=n(t._fullInput||{},\"candlestick\");return a&&!o&&e===r&&void 0===t[r]&&void 0===t[r+\"0\"]}e.exports=function(t,e,r,s){\"-\"===r(\"type\",(s.splomStash||{}).type)&&(!function(t,e){if(\"-\"!==t.type)return;var r=t._id,s=r.charAt(0);-1!==r.indexOf(\"scene\")&&(r=s);var l=function(t,e,r){for(var n=0;n<t.length;n++){var a=t[n];if(\"splom\"===a.type&&a._length>0&&(a[\"_\"+r+\"axes\"]||{})[e])return a;if((a[r+\"axis\"]||r)===e){if(o(a,r))return a;if((a[r]||[]).length||a[r+\"0\"])return a}}}(e,r,s);if(!l)return;if(\"histogram\"===l.type&&s==={v:\"y\",h:\"x\"}[l.orientation||\"v\"])return void(t.type=\"linear\");var c,u=s+\"calendar\",h=l[u],f={noMultiCategory:!n(l,\"cartesian\")||n(l,\"noMultiCategory\")};if(o(l,s)){var p=i(l),d=[];for(c=0;c<e.length;c++){var g=e[c];n(g,\"box-violin\")&&(g[s+\"axis\"]||s)===r&&(void 0!==g[p]?d.push(g[p][0]):void 0!==g.name?d.push(g.name):d.push(\"text\"),g[u]!==h&&(h=void 0))}t.type=a(d,h,f)}else if(\"splom\"===l.type){var v=l.dimensions,m=v[l._axesDim[r]];m.visible&&(t.type=a(m.values,h,f))}else t.type=a(l[s]||[l[s+\"0\"]],h,f)}(e,s.data),\"-\"===e.type?e.type=\"linear\":t.type=e.type)}},{\"../../registry\":848,\"./axis_autotype\":768}],791:[function(t,e,r){\"use strict\";var n=t(\"../registry\"),a=t(\"../lib\");function i(t,e,r){var n,i,o,s=!1;if(\"data\"===e.type)n=t._fullData[null!==e.traces?e.traces[0]:0];else{if(\"layout\"!==e.type)return!1;n=t._fullLayout}return i=a.nestedProperty(n,e.prop).get(),(o=r[e.type]=r[e.type]||{}).hasOwnProperty(e.prop)&&o[e.prop]!==i&&(s=!0),o[e.prop]=i,{changed:s,value:i}}function o(t,e){var r=[],n=e[0],i={};if(\"string\"==typeof n)i[n]=e[1];else{if(!a.isPlainObject(n))return r;i=n}return l(i,function(t,e,n){r.push({type:\"layout\",prop:t,value:n})},\"\",0),r}function s(t,e){var r,n,i,o,s=[];if(n=e[0],i=e[1],r=e[2],o={},\"string\"==typeof n)o[n]=i;else{if(!a.isPlainObject(n))return s;o=n,void 0===r&&(r=i)}return void 0===r&&(r=null),l(o,function(e,n,a){var i,o;if(Array.isArray(a)){o=a.slice();var l=Math.min(o.length,t.data.length);r&&(l=Math.min(l,r.length)),i=[];for(var c=0;c<l;c++)i[c]=r?r[c]:c}else o=a,i=r?r.slice():null;if(null===i)Array.isArray(o)&&(o=o[0]);else if(Array.isArray(i)){if(!Array.isArray(o)){var u=o;o=[];for(var h=0;h<i.length;h++)o[h]=u}o.length=Math.min(i.length,o.length)}s.push({type:\"data\",prop:e,traces:i,value:o})},\"\",0),s}function l(t,e,r,n){Object.keys(t).forEach(function(i){var o=t[i];if(\"_\"!==i[0]){var s=r+(n>0?\".\":\"\")+i;a.isPlainObject(o)?l(o,e,s,n+1):e(s,i,o)}})}r.manageCommandObserver=function(t,e,n,o){var s={},l=!0;e&&e._commandObserver&&(s=e._commandObserver),s.cache||(s.cache={}),s.lookupTable={};var c=r.hasSimpleAPICommandBindings(t,n,s.lookupTable);if(e&&e._commandObserver){if(c)return s;if(e._commandObserver.remove)return e._commandObserver.remove(),e._commandObserver=null,s}if(c){i(t,c,s.cache),s.check=function(){if(l){var e=i(t,c,s.cache);return e.changed&&o&&void 0!==s.lookupTable[e.value]&&(s.disable(),Promise.resolve(o({value:e.value,type:c.type,prop:c.prop,traces:c.traces,index:s.lookupTable[e.value]})).then(s.enable,s.enable)),e.changed}};for(var u=[\"plotly_relayout\",\"plotly_redraw\",\"plotly_restyle\",\"plotly_update\",\"plotly_animatingframe\",\"plotly_afterplot\"],h=0;h<u.length;h++)t._internalOn(u[h],s.check);s.remove=function(){for(var e=0;e<u.length;e++)t._removeInternalListener(u[e],s.check)}}else a.log(\"Unable to automatically bind plot updates to API command\"),s.lookupTable={},s.remove=function(){};return s.disable=function(){l=!1},s.enable=function(){l=!0},e&&(e._commandObserver=s),s},r.hasSimpleAPICommandBindings=function(t,e,n){var a,i,o=e.length;for(a=0;a<o;a++){var s,l=e[a],c=l.method,u=l.args;if(Array.isArray(u)||(u=[]),!c)return!1;var h=r.computeAPICommandBindings(t,c,u);if(1!==h.length)return!1;if(i){if((s=h[0]).type!==i.type)return!1;if(s.prop!==i.prop)return!1;if(Array.isArray(i.traces)){if(!Array.isArray(s.traces))return!1;s.traces.sort();for(var f=0;f<i.traces.length;f++)if(i.traces[f]!==s.traces[f])return!1}else if(s.prop!==i.prop)return!1}else i=h[0],Array.isArray(i.traces)&&i.traces.sort();var p=(s=h[0]).value;if(Array.isArray(p)){if(1!==p.length)return!1;p=p[0]}n&&(n[p]=a)}return i},r.executeAPICommand=function(t,e,r){if(\"skip\"===e)return Promise.resolve();var i=n.apiMethodRegistry[e],o=[t];Array.isArray(r)||(r=[]);for(var s=0;s<r.length;s++)o.push(r[s]);return i.apply(null,o).catch(function(t){return a.warn(\"API call to Plotly.\"+e+\" rejected.\",t),Promise.reject(t)})},r.computeAPICommandBindings=function(t,e,r){var n;switch(Array.isArray(r)||(r=[]),e){case\"restyle\":n=s(t,r);break;case\"relayout\":n=o(t,r);break;case\"update\":n=s(t,[r[0],r[2]]).concat(o(t,[r[1]]));break;case\"animate\":n=function(t,e){return Array.isArray(e[0])&&1===e[0].length&&-1!==[\"string\",\"number\"].indexOf(typeof e[0][0])?[{type:\"layout\",prop:\"_currentFrame\",value:e[0][0].toString()}]:[]}(0,r);break;default:n=[]}return n}},{\"../lib\":719,\"../registry\":848}],792:[function(t,e,r){\"use strict\";var n=t(\"../lib/extend\").extendFlat;r.attributes=function(t,e){e=e||{};var r={valType:\"info_array\",editType:(t=t||{}).editType,items:[{valType:\"number\",min:0,max:1,editType:t.editType},{valType:\"number\",min:0,max:1,editType:t.editType}],dflt:[0,1]},a=(t.name&&t.name,t.trace,e.description&&e.description,{x:n({},r,{}),y:n({},r,{}),editType:t.editType});return t.noGridCell||(a.row={valType:\"integer\",min:0,dflt:0,editType:t.editType},a.column={valType:\"integer\",min:0,dflt:0,editType:t.editType}),a},r.defaults=function(t,e,r,n){var a=n&&n.x||[0,1],i=n&&n.y||[0,1],o=e.grid;if(o){var s=r(\"domain.column\");void 0!==s&&(s<o.columns?a=o._domains.x[s]:delete t.domain.column);var l=r(\"domain.row\");void 0!==l&&(l<o.rows?i=o._domains.y[l]:delete t.domain.row)}r(\"domain.x\",a),r(\"domain.y\",i)}},{\"../lib/extend\":710}],793:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.editType,r=t.colorEditType;void 0===r&&(r=e);var n={family:{valType:\"string\",noBlank:!0,strict:!0,editType:e},size:{valType:\"number\",min:1,editType:e},color:{valType:\"color\",editType:r},editType:e};return t.arrayOk&&(n.family.arrayOk=!0,n.size.arrayOk=!0,n.color.arrayOk=!0),n}},{}],794:[function(t,e,r){\"use strict\";e.exports={_isLinkedToArray:\"frames_entry\",group:{valType:\"string\"},name:{valType:\"string\"},traces:{valType:\"any\"},baseframe:{valType:\"string\"},data:{valType:\"any\"},layout:{valType:\"any\"}}},{}],795:[function(t,e,r){\"use strict\";r.projNames={equirectangular:\"equirectangular\",mercator:\"mercator\",orthographic:\"orthographic\",\"natural earth\":\"naturalEarth\",kavrayskiy7:\"kavrayskiy7\",miller:\"miller\",robinson:\"robinson\",eckert4:\"eckert4\",\"azimuthal equal area\":\"azimuthalEqualArea\",\"azimuthal equidistant\":\"azimuthalEquidistant\",\"conic equal area\":\"conicEqualArea\",\"conic conformal\":\"conicConformal\",\"conic equidistant\":\"conicEquidistant\",gnomonic:\"gnomonic\",stereographic:\"stereographic\",mollweide:\"mollweide\",hammer:\"hammer\",\"transverse mercator\":\"transverseMercator\",\"albers usa\":\"albersUsa\",\"winkel tripel\":\"winkel3\",aitoff:\"aitoff\",sinusoidal:\"sinusoidal\"},r.axesNames=[\"lonaxis\",\"lataxis\"],r.lonaxisSpan={orthographic:180,\"azimuthal equal area\":360,\"azimuthal equidistant\":360,\"conic conformal\":180,gnomonic:160,stereographic:180,\"transverse mercator\":180,\"*\":360},r.lataxisSpan={\"conic conformal\":150,stereographic:179.5,\"*\":180},r.scopeDefaults={world:{lonaxisRange:[-180,180],lataxisRange:[-90,90],projType:\"equirectangular\",projRotate:[0,0,0]},usa:{lonaxisRange:[-180,-50],lataxisRange:[15,80],projType:\"albers usa\"},europe:{lonaxisRange:[-30,60],lataxisRange:[30,85],projType:\"conic conformal\",projRotate:[15,0,0],projParallels:[0,60]},asia:{lonaxisRange:[22,160],lataxisRange:[-15,55],projType:\"mercator\",projRotate:[0,0,0]},africa:{lonaxisRange:[-30,60],lataxisRange:[-40,40],projType:\"mercator\",projRotate:[0,0,0]},\"north america\":{lonaxisRange:[-180,-45],lataxisRange:[5,85],projType:\"conic conformal\",projRotate:[-100,0,0],projParallels:[29.5,45.5]},\"south america\":{lonaxisRange:[-100,-30],lataxisRange:[-60,15],projType:\"mercator\",projRotate:[0,0,0]}},r.clipPad=.001,r.precision=.1,r.landColor=\"#F0DC82\",r.waterColor=\"#3399FF\",r.locationmodeToLayer={\"ISO-3\":\"countries\",\"USA-states\":\"subunits\",\"country names\":\"countries\"},r.sphereSVG={type:\"Sphere\"},r.fillLayers={ocean:1,land:1,lakes:1},r.lineLayers={subunits:1,countries:1,coastlines:1,rivers:1,frame:1},r.layers=[\"bg\",\"ocean\",\"land\",\"lakes\",\"subunits\",\"countries\",\"coastlines\",\"rivers\",\"lataxis\",\"lonaxis\",\"frame\",\"backplot\",\"frontplot\"],r.layersForChoropleth=[\"bg\",\"ocean\",\"land\",\"subunits\",\"countries\",\"coastlines\",\"lataxis\",\"lonaxis\",\"frame\",\"backplot\",\"rivers\",\"lakes\",\"frontplot\"],r.layerNameToAdjective={ocean:\"ocean\",land:\"land\",lakes:\"lake\",subunits:\"subunit\",countries:\"country\",coastlines:\"coastline\",rivers:\"river\",frame:\"frame\"}},{}],796:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../registry\"),i=t(\"../../lib\"),o=t(\"../../components/color\"),s=t(\"../../components/drawing\"),l=t(\"../../components/fx\"),c=t(\"../plots\"),u=t(\"../cartesian/axes\"),h=t(\"../../components/dragelement\"),f=t(\"../cartesian/select\").prepSelect,p=t(\"../cartesian/select\").selectOnClick,d=t(\"./zoom\"),g=t(\"./constants\"),v=t(\"../../lib/topojson_utils\"),m=t(\"topojson-client\").feature;function y(t){this.id=t.id,this.graphDiv=t.graphDiv,this.container=t.container,this.topojsonURL=t.topojsonURL,this.isStatic=t.staticPlot,this.topojsonName=null,this.topojson=null,this.projection=null,this.scope=null,this.viewInitial=null,this.fitScale=null,this.bounds=null,this.midPt=null,this.hasChoropleth=!1,this.traceHash={},this.layers={},this.basePaths={},this.dataPaths={},this.dataPoints={},this.clipDef=null,this.clipRect=null,this.bgRect=null,this.makeFramework()}t(\"./projections\")(n);var x=y.prototype;e.exports=function(t){return new y(t)},x.plot=function(t,e,r){var n=this,a=e[this.id],i=!1;for(var o in g.layerNameToAdjective)if(\"frame\"!==o&&a[\"show\"+o]){i=!0;break}for(var s=0;s<t.length;s++)if(t[0][0].trace.locationmode){i=!0;break}if(!i)return n.update(t,e);var l=v.getTopojsonName(a);null===n.topojson||l!==n.topojsonName?(n.topojsonName=l,void 0===PlotlyGeoAssets.topojson[n.topojsonName]?r.push(n.fetchTopojson().then(function(r){PlotlyGeoAssets.topojson[n.topojsonName]=r,n.topojson=r,n.update(t,e)})):(n.topojson=PlotlyGeoAssets.topojson[n.topojsonName],n.update(t,e))):n.update(t,e)},x.fetchTopojson=function(){var t=v.getTopojsonPath(this.topojsonURL,this.topojsonName);return new Promise(function(e,r){n.json(t,function(n,a){if(n)return 404===n.status?r(new Error([\"plotly.js could not find topojson file at\",t,\".\",\"Make sure the *topojsonURL* plot config option\",\"is set properly.\"].join(\" \"))):r(new Error([\"unexpected error while fetching topojson file at\",t].join(\" \")));e(a)})})},x.update=function(t,e){var r=e[this.id];if(!this.updateProjection(e,r)){this.hasChoropleth=!1;for(var n=0;n<t.length;n++)if(\"choropleth\"===t[n][0].trace.type){this.hasChoropleth=!0;break}this.viewInitial&&this.scope===r.scope||this.saveViewInitial(r),this.scope=r.scope,this.updateBaseLayers(e,r),this.updateDims(e,r),this.updateFx(e,r),c.generalUpdatePerTraceModule(this.graphDiv,this,t,r);var a=this.layers.frontplot.select(\".scatterlayer\");this.dataPoints.point=a.selectAll(\".point\"),this.dataPoints.text=a.selectAll(\"text\"),this.dataPaths.line=a.selectAll(\".js-line\");var i=this.layers.backplot.select(\".choroplethlayer\");this.dataPaths.choropleth=i.selectAll(\"path\"),this.render()}},x.updateProjection=function(t,e){var r=t._size,o=e.domain,s=e.projection,l=s.rotation||{},c=e.center||{},u=this.projection=function(t){for(var e=t.projection.type,r=n.geo[g.projNames[e]](),a=t._isClipped?g.lonaxisSpan[e]/2:null,i=[\"center\",\"rotate\",\"parallels\",\"clipExtent\"],o=function(t){return t?r:[]},s=0;s<i.length;s++){var l=i[s];\"function\"!=typeof r[l]&&(r[l]=o)}r.isLonLatOverEdges=function(t){if(null===r(t))return!0;if(a){var e=r.rotate();return n.geo.distance(t,[-e[0],-e[1]])>a*Math.PI/180}return!1},r.getPath=function(){return n.geo.path().projection(r)},r.getBounds=function(t){return r.getPath().bounds(t)},r.fitExtent=function(t,e){var n=t[1][0]-t[0][0],a=t[1][1]-t[0][1],i=r.clipExtent&&r.clipExtent();r.scale(150).translate([0,0]),i&&r.clipExtent(null);var o=r.getBounds(e),s=Math.min(n/(o[1][0]-o[0][0]),a/(o[1][1]-o[0][1])),l=+t[0][0]+(n-s*(o[1][0]+o[0][0]))/2,c=+t[0][1]+(a-s*(o[1][1]+o[0][1]))/2;return i&&r.clipExtent(i),r.scale(150*s).translate([l,c])},r.precision(g.precision),a&&r.clipAngle(a-g.clipPad);return r}(e);u.center([c.lon-l.lon,c.lat-l.lat]).rotate([-l.lon,-l.lat,l.roll]).parallels(s.parallels);var h=[[r.l+r.w*o.x[0],r.t+r.h*(1-o.y[1])],[r.l+r.w*o.x[1],r.t+r.h*(1-o.y[0])]],f=e.lonaxis,p=e.lataxis,d=function(t,e){var r=g.clipPad,n=t[0]+r,a=t[1]-r,i=e[0]+r,o=e[1]-r;n>0&&a<0&&(a+=360);var s=(a-n)/4;return{type:\"Polygon\",coordinates:[[[n,i],[n,o],[n+s,o],[n+2*s,o],[n+3*s,o],[a,o],[a,i],[a-s,i],[a-2*s,i],[a-3*s,i],[n,i]]]}}(f.range,p.range);u.fitExtent(h,d);var v=this.bounds=u.getBounds(d),m=this.fitScale=u.scale(),y=u.translate();if(!isFinite(v[0][0])||!isFinite(v[0][1])||!isFinite(v[1][0])||!isFinite(v[1][1])||isNaN(y[0])||isNaN(y[0])){for(var x=this.graphDiv,b=[\"projection.rotation\",\"center\",\"lonaxis.range\",\"lataxis.range\"],_=\"Invalid geo settings, relayout'ing to default view.\",w={},k=0;k<b.length;k++)w[this.id+\".\"+b[k]]=null;return this.viewInitial=null,i.warn(_),x._promises.push(a.call(\"relayout\",x,w)),_}var T=this.midPt=[(v[0][0]+v[1][0])/2,(v[0][1]+v[1][1])/2];if(u.scale(s.scale*m).translate([y[0]+(T[0]-y[0]),y[1]+(T[1]-y[1])]).clipExtent(v),e._isAlbersUsa){var A=u([c.lon,c.lat]),M=u.translate();u.translate([M[0]-(A[0]-M[0]),M[1]-(A[1]-M[1])])}},x.updateBaseLayers=function(t,e){var r=this,a=r.topojson,i=r.layers,l=r.basePaths;function c(t){return\"lonaxis\"===t||\"lataxis\"===t}function h(t){return Boolean(g.lineLayers[t])}function f(t){return Boolean(g.fillLayers[t])}var p=(this.hasChoropleth?g.layersForChoropleth:g.layers).filter(function(t){return h(t)||f(t)?e[\"show\"+t]:!c(t)||e[t].showgrid}),d=r.framework.selectAll(\".layer\").data(p,String);d.exit().each(function(t){delete i[t],delete l[t],n.select(this).remove()}),d.enter().append(\"g\").attr(\"class\",function(t){return\"layer \"+t}).each(function(t){var e=i[t]=n.select(this);\"bg\"===t?r.bgRect=e.append(\"rect\").style(\"pointer-events\",\"all\"):c(t)?l[t]=e.append(\"path\").style(\"fill\",\"none\"):\"backplot\"===t?e.append(\"g\").classed(\"choroplethlayer\",!0):\"frontplot\"===t?e.append(\"g\").classed(\"scatterlayer\",!0):h(t)?l[t]=e.append(\"path\").style(\"fill\",\"none\").style(\"stroke-miterlimit\",2):f(t)&&(l[t]=e.append(\"path\").style(\"stroke\",\"none\"))}),d.order(),d.each(function(r){var n=l[r],i=g.layerNameToAdjective[r];\"frame\"===r?n.datum(g.sphereSVG):h(r)||f(r)?n.datum(m(a,a.objects[r])):c(r)&&n.datum(function(t,e,r){var n,a,i,o=e[t],s=g.scopeDefaults[e.scope];\"lonaxis\"===t?(n=s.lonaxisRange,a=s.lataxisRange,i=function(t,e){return[t,e]}):\"lataxis\"===t&&(n=s.lataxisRange,a=s.lonaxisRange,i=function(t,e){return[e,t]});var l={type:\"linear\",range:[n[0],n[1]-1e-6],tick0:o.tick0,dtick:o.dtick};u.setConvert(l,r);var c=u.calcTicks(l);e.isScoped||\"lonaxis\"!==t||c.pop();for(var h=c.length,f=new Array(h),p=0;p<h;p++)for(var d=c[p].x,v=f[p]=[],m=a[0];m<a[1]+2.5;m+=2.5)v.push(i(d,m));return{type:\"MultiLineString\",coordinates:f}}(r,e,t)).call(o.stroke,e[r].gridcolor).call(s.dashLine,\"\",e[r].gridwidth),h(r)?n.call(o.stroke,e[i+\"color\"]).call(s.dashLine,\"\",e[i+\"width\"]):f(r)&&n.call(o.fill,e[i+\"color\"])})},x.updateDims=function(t,e){var r=this.bounds,n=(e.framewidth||0)/2,a=r[0][0]-n,i=r[0][1]-n,l=r[1][0]-a+n,c=r[1][1]-i+n;s.setRect(this.clipRect,a,i,l,c),this.bgRect.call(s.setRect,a,i,l,c).call(o.fill,e.bgcolor),this.xaxis._offset=a,this.xaxis._length=l,this.yaxis._offset=i,this.yaxis._length=c},x.updateFx=function(t,e){var r=this,i=r.graphDiv,o=r.bgRect,s=t.dragmode,c=t.clickmode;if(!r.isStatic){var u;\"select\"===s?u=function(t,e){(t.range={})[r.id]=[v([e.xmin,e.ymin]),v([e.xmax,e.ymax])]}:\"lasso\"===s&&(u=function(t,e,n){(t.lassoPoints={})[r.id]=n.filtered.map(v)});var g={element:r.bgRect.node(),gd:i,plotinfo:{id:r.id,xaxis:r.xaxis,yaxis:r.yaxis,fillRangeItems:u},xaxes:[r.xaxis],yaxes:[r.yaxis],subplot:r.id,clickFn:function(e){2===e&&t._zoomlayer.selectAll(\".select-outline\").remove()}};\"pan\"===s?(o.node().onmousedown=null,o.call(d(r,e)),o.on(\"dblclick.zoom\",function(){var t=r.viewInitial,e={};for(var n in t)e[r.id+\".\"+n]=t[n];a.call(\"_guiRelayout\",i,e),i.emit(\"plotly_doubleclick\",null)}),i._context._scrollZoom.geo||o.on(\"wheel.zoom\",null)):\"select\"!==s&&\"lasso\"!==s||(o.on(\".zoom\",null),g.prepFn=function(t,e,r){f(t,e,r,g,s)},h.init(g)),o.on(\"mousemove\",function(){var t=r.projection.invert(n.mouse(this));if(!t||isNaN(t[0])||isNaN(t[1]))return h.unhover(i,n.event);r.xaxis.p2c=function(){return t[0]},r.yaxis.p2c=function(){return t[1]},l.hover(i,n.event,r.id)}),o.on(\"mouseout\",function(){i._dragging||h.unhover(i,n.event)}),o.on(\"click\",function(){\"select\"!==s&&\"lasso\"!==s&&(c.indexOf(\"select\")>-1&&p(n.event,i,[r.xaxis],[r.yaxis],r.id,g),c.indexOf(\"event\")>-1&&l.click(i,n.event))})}function v(t){return r.projection.invert([t[0]+r.xaxis._offset,t[1]+r.yaxis._offset])}},x.makeFramework=function(){var t=this,e=t.graphDiv,r=e._fullLayout,a=\"clip\"+r._uid+t.id;t.clipDef=r._clips.append(\"clipPath\").attr(\"id\",a),t.clipRect=t.clipDef.append(\"rect\"),t.framework=n.select(t.container).append(\"g\").attr(\"class\",\"geo \"+t.id).call(s.setClipUrl,a,e),t.project=function(e){var r=t.projection(e);return r?[r[0]-t.xaxis._offset,r[1]-t.yaxis._offset]:[null,null]},t.xaxis={_id:\"x\",c2p:function(e){return t.project(e)[0]}},t.yaxis={_id:\"y\",c2p:function(e){return t.project(e)[1]}},t.mockAxis={type:\"linear\",showexponent:\"all\",exponentformat:\"B\"},u.setConvert(t.mockAxis,r)},x.saveViewInitial=function(t){var e=t.center||{},r=t.projection,n=r.rotation||{};t._isScoped?this.viewInitial={\"center.lon\":e.lon,\"center.lat\":e.lat,\"projection.scale\":r.scale}:t._isClipped?this.viewInitial={\"projection.scale\":r.scale,\"projection.rotation.lon\":n.lon,\"projection.rotation.lat\":n.lat}:this.viewInitial={\"center.lon\":e.lon,\"center.lat\":e.lat,\"projection.scale\":r.scale,\"projection.rotation.lon\":n.lon}},x.render=function(){var t,e=this.projection,r=e.getPath();function n(t){var r=e(t.lonlat);return r?\"translate(\"+r[0]+\",\"+r[1]+\")\":null}function a(t){return e.isLonLatOverEdges(t.lonlat)?\"none\":null}for(t in this.basePaths)this.basePaths[t].attr(\"d\",r);for(t in this.dataPaths)this.dataPaths[t].attr(\"d\",function(t){return r(t.geojson)});for(t in this.dataPoints)this.dataPoints[t].attr(\"display\",a).attr(\"transform\",n)}},{\"../../components/color\":594,\"../../components/dragelement\":612,\"../../components/drawing\":615,\"../../components/fx\":632,\"../../lib\":719,\"../../lib/topojson_utils\":746,\"../../registry\":848,\"../cartesian/axes\":767,\"../cartesian/select\":784,\"../plots\":828,\"./constants\":795,\"./projections\":800,\"./zoom\":801,d3:164,\"topojson-client\":541}],797:[function(t,e,r){\"use strict\";var n=t(\"../../plots/get_data\").getSubplotCalcData,a=t(\"../../lib\").counterRegex,i=t(\"./geo\"),o=\"geo\",s=a(o),l={};l[o]={valType:\"subplotid\",dflt:o,editType:\"calc\"},e.exports={attr:o,name:o,idRoot:o,idRegex:s,attrRegex:s,attributes:l,layoutAttributes:t(\"./layout_attributes\"),supplyLayoutDefaults:t(\"./layout_defaults\"),plot:function(t){for(var e=t._fullLayout,r=t.calcdata,a=e._subplots[o],s=0;s<a.length;s++){var l=a[s],c=n(r,o,l),u=e[l]._subplot;u||(u=i({id:l,graphDiv:t,container:e._geolayer.node(),topojsonURL:t._context.topojsonURL,staticPlot:t._context.staticPlot}),e[l]._subplot=u),u.plot(c,e,t._promises)}},updateFx:function(t){for(var e=t._fullLayout,r=e._subplots[o],n=0;n<r.length;n++){var a=e[r[n]];a._subplot.updateFx(e,a)}},clean:function(t,e,r,n){for(var a=n._subplots[o]||[],i=0;i<a.length;i++){var s=a[i],l=n[s]._subplot;!e[s]&&l&&(l.framework.remove(),l.clipDef.remove())}}}},{\"../../lib\":719,\"../../plots/get_data\":802,\"./geo\":796,\"./layout_attributes\":798,\"./layout_defaults\":799}],798:[function(t,e,r){\"use strict\";var n=t(\"../../components/color/attributes\"),a=t(\"../domain\").attributes,i=t(\"./constants\"),o=t(\"../../plot_api/edit_types\").overrideAll,s={range:{valType:\"info_array\",items:[{valType:\"number\"},{valType:\"number\"}]},showgrid:{valType:\"boolean\",dflt:!1},tick0:{valType:\"number\",dflt:0},dtick:{valType:\"number\"},gridcolor:{valType:\"color\",dflt:n.lightLine},gridwidth:{valType:\"number\",min:0,dflt:1}};(e.exports=o({domain:a({name:\"geo\"},{}),resolution:{valType:\"enumerated\",values:[110,50],dflt:110,coerceNumber:!0},scope:{valType:\"enumerated\",values:Object.keys(i.scopeDefaults),dflt:\"world\"},projection:{type:{valType:\"enumerated\",values:Object.keys(i.projNames)},rotation:{lon:{valType:\"number\"},lat:{valType:\"number\"},roll:{valType:\"number\"}},parallels:{valType:\"info_array\",items:[{valType:\"number\"},{valType:\"number\"}]},scale:{valType:\"number\",min:0,dflt:1}},center:{lon:{valType:\"number\"},lat:{valType:\"number\"}},showcoastlines:{valType:\"boolean\"},coastlinecolor:{valType:\"color\",dflt:n.defaultLine},coastlinewidth:{valType:\"number\",min:0,dflt:1},showland:{valType:\"boolean\",dflt:!1},landcolor:{valType:\"color\",dflt:i.landColor},showocean:{valType:\"boolean\",dflt:!1},oceancolor:{valType:\"color\",dflt:i.waterColor},showlakes:{valType:\"boolean\",dflt:!1},lakecolor:{valType:\"color\",dflt:i.waterColor},showrivers:{valType:\"boolean\",dflt:!1},rivercolor:{valType:\"color\",dflt:i.waterColor},riverwidth:{valType:\"number\",min:0,dflt:1},showcountries:{valType:\"boolean\"},countrycolor:{valType:\"color\",dflt:n.defaultLine},countrywidth:{valType:\"number\",min:0,dflt:1},showsubunits:{valType:\"boolean\"},subunitcolor:{valType:\"color\",dflt:n.defaultLine},subunitwidth:{valType:\"number\",min:0,dflt:1},showframe:{valType:\"boolean\"},framecolor:{valType:\"color\",dflt:n.defaultLine},framewidth:{valType:\"number\",min:0,dflt:1},bgcolor:{valType:\"color\",dflt:n.background},lonaxis:s,lataxis:s},\"plot\",\"from-root\")).uirevision={valType:\"any\",editType:\"none\"}},{\"../../components/color/attributes\":593,\"../../plot_api/edit_types\":750,\"../domain\":792,\"./constants\":795}],799:[function(t,e,r){\"use strict\";var n=t(\"../subplot_defaults\"),a=t(\"./constants\"),i=t(\"./layout_attributes\"),o=a.axesNames;function s(t,e,r){var n=r(\"resolution\"),i=r(\"scope\"),s=a.scopeDefaults[i],l=r(\"projection.type\",s.projType),c=e._isAlbersUsa=\"albers usa\"===l;c&&(i=e.scope=\"usa\");var u=e._isScoped=\"world\"!==i,h=e._isConic=-1!==l.indexOf(\"conic\");e._isClipped=!!a.lonaxisSpan[l];for(var f=0;f<o.length;f++){var p,d=o[f],g=[30,10][f];if(u)p=s[d+\"Range\"];else{var v=a[d+\"Span\"],m=(v[l]||v[\"*\"])/2,y=r(\"projection.rotation.\"+d.substr(0,3),s.projRotate[f]);p=[y-m,y+m]}r(d+\".range\",p),r(d+\".tick0\"),r(d+\".dtick\",g),r(d+\".showgrid\")&&(r(d+\".gridcolor\"),r(d+\".gridwidth\"))}var x=e.lonaxis.range,b=e.lataxis.range,_=x[0],w=x[1];_>0&&w<0&&(w+=360);var k,T,A,M=(_+w)/2;if(!c){var S=u?s.projRotate:[M,0,0];k=r(\"projection.rotation.lon\",S[0]),r(\"projection.rotation.lat\",S[1]),r(\"projection.rotation.roll\",S[2]),r(\"showcoastlines\",!u)&&(r(\"coastlinecolor\"),r(\"coastlinewidth\")),r(\"showocean\")&&r(\"oceancolor\")}(c?(T=-96.6,A=38.7):(T=u?M:k,A=(b[0]+b[1])/2),r(\"center.lon\",T),r(\"center.lat\",A),h)&&r(\"projection.parallels\",s.projParallels||[0,60]);r(\"projection.scale\"),r(\"showland\")&&r(\"landcolor\"),r(\"showlakes\")&&r(\"lakecolor\"),r(\"showrivers\")&&(r(\"rivercolor\"),r(\"riverwidth\")),r(\"showcountries\",u&&\"usa\"!==i)&&(r(\"countrycolor\"),r(\"countrywidth\")),(\"usa\"===i||\"north america\"===i&&50===n)&&(r(\"showsubunits\",!0),r(\"subunitcolor\"),r(\"subunitwidth\")),u||r(\"showframe\",!0)&&(r(\"framecolor\"),r(\"framewidth\")),r(\"bgcolor\")}e.exports=function(t,e,r){n(t,e,r,{type:\"geo\",attributes:i,handleDefaults:s,partition:\"y\"})}},{\"../subplot_defaults\":842,\"./constants\":795,\"./layout_attributes\":798}],800:[function(t,e,r){\"use strict\";e.exports=function(t){function e(t,e){return{type:\"Feature\",id:t.id,properties:t.properties,geometry:r(t.geometry,e)}}function r(e,n){if(!e)return null;if(\"GeometryCollection\"===e.type)return{type:\"GeometryCollection\",geometries:object.geometries.map(function(t){return r(t,n)})};if(!c.hasOwnProperty(e.type))return null;var a=c[e.type];return t.geo.stream(e,n(a)),a.result()}t.geo.project=function(t,e){var a=e.stream;if(!a)throw new Error(\"not yet supported\");return(t&&n.hasOwnProperty(t.type)?n[t.type]:r)(t,a)};var n={Feature:e,FeatureCollection:function(t,r){return{type:\"FeatureCollection\",features:t.features.map(function(t){return e(t,r)})}}},a=[],i=[],o={point:function(t,e){a.push([t,e])},result:function(){var t=a.length?a.length<2?{type:\"Point\",coordinates:a[0]}:{type:\"MultiPoint\",coordinates:a}:null;return a=[],t}},s={lineStart:u,point:function(t,e){a.push([t,e])},lineEnd:function(){a.length&&(i.push(a),a=[])},result:function(){var t=i.length?i.length<2?{type:\"LineString\",coordinates:i[0]}:{type:\"MultiLineString\",coordinates:i}:null;return i=[],t}},l={polygonStart:u,lineStart:u,point:function(t,e){a.push([t,e])},lineEnd:function(){var t=a.length;if(t){do{a.push(a[0].slice())}while(++t<4);i.push(a),a=[]}},polygonEnd:u,result:function(){if(!i.length)return null;var t=[],e=[];return i.forEach(function(r){!function(t){if((e=t.length)<4)return!1;for(var e,r=0,n=t[e-1][1]*t[0][0]-t[e-1][0]*t[0][1];++r<e;)n+=t[r-1][1]*t[r][0]-t[r-1][0]*t[r][1];return n<=0}(r)?e.push(r):t.push([r])}),e.forEach(function(e){var r=e[0];t.some(function(t){if(function(t,e){for(var r=e[0],n=e[1],a=!1,i=0,o=t.length,s=o-1;i<o;s=i++){var l=t[i],c=l[0],u=l[1],h=t[s],f=h[0],p=h[1];u>n^p>n&&r<(f-c)*(n-u)/(p-u)+c&&(a=!a)}return a}(t[0],r))return t.push(e),!0})||t.push([e])}),i=[],t.length?t.length>1?{type:\"MultiPolygon\",coordinates:t}:{type:\"Polygon\",coordinates:t[0]}:null}},c={Point:o,MultiPoint:o,LineString:s,MultiLineString:s,Polygon:l,MultiPolygon:l,Sphere:l};function u(){}var h=1e-6,f=h*h,p=Math.PI,d=p/2,g=(Math.sqrt(p),p/180),v=180/p;function m(t){return t>1?d:t<-1?-d:Math.asin(t)}function y(t){return t>1?0:t<-1?p:Math.acos(t)}var x=t.geo.projection,b=t.geo.projectionMutator;function _(t,e){var r=(2+d)*Math.sin(e);e/=2;for(var n=0,a=1/0;n<10&&Math.abs(a)>h;n++){var i=Math.cos(e);e-=a=(e+Math.sin(e)*(i+2)-r)/(2*i*(1+i))}return[2/Math.sqrt(p*(4+p))*t*(1+Math.cos(e)),2*Math.sqrt(p/(4+p))*Math.sin(e)]}t.geo.interrupt=function(e){var r,n=[[[[-p,0],[0,d],[p,0]]],[[[-p,0],[0,-d],[p,0]]]];function a(t,r){for(var a=r<0?-1:1,i=n[+(r<0)],o=0,s=i.length-1;o<s&&t>i[o][2][0];++o);var l=e(t-i[o][1][0],r);return l[0]+=e(i[o][1][0],a*r>a*i[o][0][1]?i[o][0][1]:r)[0],l}e.invert&&(a.invert=function(t,i){for(var o=r[+(i<0)],s=n[+(i<0)],c=0,u=o.length;c<u;++c){var h=o[c];if(h[0][0]<=t&&t<h[1][0]&&h[0][1]<=i&&i<h[1][1]){var f=e.invert(t-e(s[c][1][0],0)[0],i);return f[0]+=s[c][1][0],l(a(f[0],f[1]),[t,i])?f:null}}});var i=t.geo.projection(a),o=i.stream;function s(t,e){for(var r,n,a,i=-1,o=t.length,s=t[0],l=[];++i<o;){n=((r=t[i])[0]-s[0])/e,a=(r[1]-s[1])/e;for(var c=0;c<e;++c)l.push([s[0]+c*n,s[1]+c*a]);s=r}return l.push(r),l}function l(t,e){return Math.abs(t[0]-e[0])<h&&Math.abs(t[1]-e[1])<h}return i.stream=function(e){var r=i.rotate(),a=o(e),l=(i.rotate([0,0]),o(e));return i.rotate(r),a.sphere=function(){t.geo.stream(function(){for(var e=1e-6,r=[],a=0,i=n[0].length;a<i;++a){var o=n[0][a],l=180*o[0][0]/p,c=180*o[0][1]/p,u=180*o[1][1]/p,h=180*o[2][0]/p,f=180*o[2][1]/p;r.push(s([[l+e,c+e],[l+e,u-e],[h-e,u-e],[h-e,f+e]],30))}for(var a=n[1].length-1;a>=0;--a){var o=n[1][a],l=180*o[0][0]/p,c=180*o[0][1]/p,u=180*o[1][1]/p,h=180*o[2][0]/p,f=180*o[2][1]/p;r.push(s([[h-e,f-e],[h-e,u+e],[l+e,u+e],[l+e,c-e]],30))}return{type:\"Polygon\",coordinates:[t.merge(r)]}}(),l)},a},i.lobes=function(t){return arguments.length?(n=t.map(function(t){return t.map(function(t){return[[t[0][0]*p/180,t[0][1]*p/180],[t[1][0]*p/180,t[1][1]*p/180],[t[2][0]*p/180,t[2][1]*p/180]]})}),r=n.map(function(t){return t.map(function(t){var r,n=e(t[0][0],t[0][1])[0],a=e(t[2][0],t[2][1])[0],i=e(t[1][0],t[0][1])[1],o=e(t[1][0],t[1][1])[1];return i>o&&(r=i,i=o,o=r),[[n,i],[a,o]]})}),i):n.map(function(t){return t.map(function(t){return[[180*t[0][0]/p,180*t[0][1]/p],[180*t[1][0]/p,180*t[1][1]/p],[180*t[2][0]/p,180*t[2][1]/p]]})})},i},_.invert=function(t,e){var r=.5*e*Math.sqrt((4+p)/p),n=m(r),a=Math.cos(n);return[t/(2/Math.sqrt(p*(4+p))*(1+a)),m((n+r*(a+2))/(2+d))]},(t.geo.eckert4=function(){return x(_)}).raw=_;var w=t.geo.azimuthalEqualArea.raw;function k(t,e){if(arguments.length<2&&(e=t),1===e)return w;if(e===1/0)return T;function r(r,n){var a=w(r/e,n);return a[0]*=t,a}return r.invert=function(r,n){var a=w.invert(r/t,n);return a[0]*=e,a},r}function T(t,e){return[t*Math.cos(e)/Math.cos(e/=2),2*Math.sin(e)]}function A(t,e){return[3*t/(2*p)*Math.sqrt(p*p/3-e*e),e]}function M(t,e){return[t,1.25*Math.log(Math.tan(p/4+.4*e))]}function S(t){return function(e){var r,n=t*Math.sin(e),a=30;do{e-=r=(e+Math.sin(e)-n)/(1+Math.cos(e))}while(Math.abs(r)>h&&--a>0);return e/2}}T.invert=function(t,e){var r=2*m(e/2);return[t*Math.cos(r/2)/Math.cos(r),r]},(t.geo.hammer=function(){var t=2,e=b(k),r=e(t);return r.coefficient=function(r){return arguments.length?e(t=+r):t},r}).raw=k,A.invert=function(t,e){return[2/3*p*t/Math.sqrt(p*p/3-e*e),e]},(t.geo.kavrayskiy7=function(){return x(A)}).raw=A,M.invert=function(t,e){return[t,2.5*Math.atan(Math.exp(.8*e))-.625*p]},(t.geo.miller=function(){return x(M)}).raw=M,S(p);var E=function(t,e,r){var n=S(r);function a(r,a){return[t*r*Math.cos(a=n(a)),e*Math.sin(a)]}return a.invert=function(n,a){var i=m(a/e);return[n/(t*Math.cos(i)),m((2*i+Math.sin(2*i))/r)]},a}(Math.SQRT2/d,Math.SQRT2,p);function C(t,e){var r=e*e,n=r*r;return[t*(.8707-.131979*r+n*(n*(.003971*r-.001529*n)-.013791)),e*(1.007226+r*(.015085+n*(.028874*r-.044475-.005916*n)))]}(t.geo.mollweide=function(){return x(E)}).raw=E,C.invert=function(t,e){var r,n=e,a=25;do{var i=n*n,o=i*i;n-=r=(n*(1.007226+i*(.015085+o*(.028874*i-.044475-.005916*o)))-e)/(1.007226+i*(.045255+o*(.259866*i-.311325-.005916*11*o)))}while(Math.abs(r)>h&&--a>0);return[t/(.8707+(i=n*n)*(i*(i*i*i*(.003971-.001529*i)-.013791)-.131979)),n]},(t.geo.naturalEarth=function(){return x(C)}).raw=C;var L=[[.9986,-.062],[1,0],[.9986,.062],[.9954,.124],[.99,.186],[.9822,.248],[.973,.31],[.96,.372],[.9427,.434],[.9216,.4958],[.8962,.5571],[.8679,.6176],[.835,.6769],[.7986,.7346],[.7597,.7903],[.7186,.8435],[.6732,.8936],[.6213,.9394],[.5722,.9761],[.5322,1]];function P(t,e){var r,n=Math.min(18,36*Math.abs(e)/p),a=Math.floor(n),i=n-a,o=(r=L[a])[0],s=r[1],l=(r=L[++a])[0],c=r[1],u=(r=L[Math.min(19,++a)])[0],h=r[1];return[t*(l+i*(u-o)/2+i*i*(u-2*l+o)/2),(e>0?d:-d)*(c+i*(h-s)/2+i*i*(h-2*c+s)/2)]}function O(t,e){return[t*Math.cos(e),e]}function I(t,e){var r,n=Math.cos(e),a=(r=y(n*Math.cos(t/=2)))?r/Math.sin(r):1;return[2*n*Math.sin(t)*a,Math.sin(e)*a]}function z(t,e){var r=I(t,e);return[(r[0]+t/d)/2,(r[1]+e)/2]}L.forEach(function(t){t[1]*=1.0144}),P.invert=function(t,e){var r=e/d,n=90*r,a=Math.min(18,Math.abs(n/5)),i=Math.max(0,Math.floor(a));do{var o=L[i][1],s=L[i+1][1],l=L[Math.min(19,i+2)][1],c=l-o,u=l-2*s+o,h=2*(Math.abs(r)-s)/c,p=u/c,m=h*(1-p*h*(1-2*p*h));if(m>=0||1===i){n=(e>=0?5:-5)*(m+a);var y,x=50;do{m=(a=Math.min(18,Math.abs(n)/5))-(i=Math.floor(a)),o=L[i][1],s=L[i+1][1],l=L[Math.min(19,i+2)][1],n-=(y=(e>=0?d:-d)*(s+m*(l-o)/2+m*m*(l-2*s+o)/2)-e)*v}while(Math.abs(y)>f&&--x>0);break}}while(--i>=0);var b=L[i][0],_=L[i+1][0],w=L[Math.min(19,i+2)][0];return[t/(_+m*(w-b)/2+m*m*(w-2*_+b)/2),n*g]},(t.geo.robinson=function(){return x(P)}).raw=P,O.invert=function(t,e){return[t/Math.cos(e),e]},(t.geo.sinusoidal=function(){return x(O)}).raw=O,I.invert=function(t,e){if(!(t*t+4*e*e>p*p+h)){var r=t,n=e,a=25;do{var i,o=Math.sin(r),s=Math.sin(r/2),l=Math.cos(r/2),c=Math.sin(n),u=Math.cos(n),f=Math.sin(2*n),d=c*c,g=u*u,v=s*s,m=1-g*l*l,x=m?y(u*l)*Math.sqrt(i=1/m):i=0,b=2*x*u*s-t,_=x*c-e,w=i*(g*v+x*u*l*d),k=i*(.5*o*f-2*x*c*s),T=.25*i*(f*s-x*c*g*o),A=i*(d*l+x*v*u),M=k*T-A*w;if(!M)break;var S=(_*k-b*A)/M,E=(b*T-_*w)/M;r-=S,n-=E}while((Math.abs(S)>h||Math.abs(E)>h)&&--a>0);return[r,n]}},(t.geo.aitoff=function(){return x(I)}).raw=I,z.invert=function(t,e){var r=t,n=e,a=25;do{var i,o=Math.cos(n),s=Math.sin(n),l=Math.sin(2*n),c=s*s,u=o*o,f=Math.sin(r),p=Math.cos(r/2),g=Math.sin(r/2),v=g*g,m=1-u*p*p,x=m?y(o*p)*Math.sqrt(i=1/m):i=0,b=.5*(2*x*o*g+r/d)-t,_=.5*(x*s+n)-e,w=.5*i*(u*v+x*o*p*c)+.5/d,k=i*(f*l/4-x*s*g),T=.125*i*(l*g-x*s*u*f),A=.5*i*(c*p+x*v*o)+.5,M=k*T-A*w,S=(_*k-b*A)/M,E=(b*T-_*w)/M;r-=S,n-=E}while((Math.abs(S)>h||Math.abs(E)>h)&&--a>0);return[r,n]},(t.geo.winkel3=function(){return x(z)}).raw=z}},{}],801:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../lib\"),i=t(\"../../registry\"),o=Math.PI/180,s=180/Math.PI,l={cursor:\"pointer\"},c={cursor:\"auto\"};function u(t,e){return n.behavior.zoom().translate(e.translate()).scale(e.scale())}function h(t,e,r){var n=t.id,o=t.graphDiv,s=o.layout,l=s[n],c=o._fullLayout,u=c[n],h={},f={};function p(t,e){h[n+\".\"+t]=a.nestedProperty(l,t).get(),i.call(\"_storeDirectGUIEdit\",s,c._preGUI,h);var r=a.nestedProperty(u,t);r.get()!==e&&(r.set(e),a.nestedProperty(l,t).set(e),f[n+\".\"+t]=e)}r(p),p(\"projection.scale\",e.scale()/t.fitScale),o.emit(\"plotly_relayout\",f)}function f(t,e){var r=u(0,e);function a(r){var n=e.invert(t.midPt);r(\"center.lon\",n[0]),r(\"center.lat\",n[1])}return r.on(\"zoomstart\",function(){n.select(this).style(l)}).on(\"zoom\",function(){e.scale(n.event.scale).translate(n.event.translate),t.render();var r=e.invert(t.midPt);t.graphDiv.emit(\"plotly_relayouting\",{\"geo.projection.scale\":e.scale()/t.fitScale,\"geo.center.lon\":r[0],\"geo.center.lat\":r[1]})}).on(\"zoomend\",function(){n.select(this).style(c),h(t,e,a)}),r}function p(t,e){var r,a,i,o,s,f,p,d,g,v=u(0,e),m=2;function y(t){return e.invert(t)}function x(r){var n=e.rotate(),a=e.invert(t.midPt);r(\"projection.rotation.lon\",-n[0]),r(\"center.lon\",a[0]),r(\"center.lat\",a[1])}return v.on(\"zoomstart\",function(){n.select(this).style(l),r=n.mouse(this),a=e.rotate(),i=e.translate(),o=a,s=y(r)}).on(\"zoom\",function(){if(f=n.mouse(this),function(t){var r=y(t);if(!r)return!0;var n=e(r);return Math.abs(n[0]-t[0])>m||Math.abs(n[1]-t[1])>m}(r))return v.scale(e.scale()),void v.translate(e.translate());e.scale(n.event.scale),e.translate([i[0],n.event.translate[1]]),s?y(f)&&(d=y(f),p=[o[0]+(d[0]-s[0]),a[1],a[2]],e.rotate(p),o=p):s=y(r=f),g=!0,t.render();var l=e.rotate(),c=e.invert(t.midPt);t.graphDiv.emit(\"plotly_relayouting\",{\"geo.projection.scale\":e.scale()/t.fitScale,\"geo.center.lon\":c[0],\"geo.center.lat\":c[1],\"geo.projection.rotation.lon\":-l[0]})}).on(\"zoomend\",function(){n.select(this).style(c),g&&h(t,e,x)}),v}function d(t,e){var r,a={r:e.rotate(),k:e.scale()},i=u(0,e),f=function(t){var e=0,r=arguments.length,a=[];for(;++e<r;)a.push(arguments[e]);var i=n.dispatch.apply(null,a);return i.of=function(e,r){return function(a){var o;try{o=a.sourceEvent=n.event,a.target=t,n.event=a,i[a.type].apply(e,r)}finally{n.event=o}}},i}(i,\"zoomstart\",\"zoom\",\"zoomend\"),p=0,d=i.on;function m(t){var r=e.rotate();t(\"projection.rotation.lon\",-r[0]),t(\"projection.rotation.lat\",-r[1])}return i.on(\"zoomstart\",function(){n.select(this).style(l);var t,c,u,h,m,b,_,w,k,T,A,M=n.mouse(this),S=e.rotate(),E=S,C=e.translate(),L=(c=.5*(t=S)[0]*o,u=.5*t[1]*o,h=.5*t[2]*o,m=Math.sin(c),b=Math.cos(c),_=Math.sin(u),w=Math.cos(u),k=Math.sin(h),T=Math.cos(h),[b*w*T+m*_*k,m*w*T-b*_*k,b*_*T+m*w*k,b*w*k-m*_*T]);r=g(e,M),d.call(i,\"zoom\",function(){var t,i,o,l,c,u,h,p,d,m,b=n.mouse(this);if(e.scale(a.k=n.event.scale),r){if(g(e,b)){e.rotate(S).translate(C);var _=g(e,b),w=function(t,e){if(!t||!e)return;var r=function(t,e){return[t[1]*e[2]-t[2]*e[1],t[2]*e[0]-t[0]*e[2],t[0]*e[1]-t[1]*e[0]]}(t,e),n=Math.sqrt(x(r,r)),a=.5*Math.acos(Math.max(-1,Math.min(1,x(t,e)))),i=Math.sin(a)/n;return n&&[Math.cos(a),r[2]*i,-r[1]*i,r[0]*i]}(r,_),k=function(t){return[Math.atan2(2*(t[0]*t[1]+t[2]*t[3]),1-2*(t[1]*t[1]+t[2]*t[2]))*s,Math.asin(Math.max(-1,Math.min(1,2*(t[0]*t[2]-t[3]*t[1]))))*s,Math.atan2(2*(t[0]*t[3]+t[1]*t[2]),1-2*(t[2]*t[2]+t[3]*t[3]))*s]}((i=w,o=(t=L)[0],l=t[1],c=t[2],u=t[3],h=i[0],p=i[1],d=i[2],m=i[3],[o*h-l*p-c*d-u*m,o*p+l*h+c*m-u*d,o*d-l*m+c*h+u*p,o*m+l*d-c*p+u*h])),T=a.r=function(t,e,r){var n=y(e,2,t[0]);n=y(n,1,t[1]),n=y(n,0,t[2]-r[2]);var a,i,o=e[0],l=e[1],c=e[2],u=n[0],h=n[1],f=n[2],p=Math.atan2(l,o)*s,d=Math.sqrt(o*o+l*l);Math.abs(h)>d?(i=(h>0?90:-90)-p,a=0):(i=Math.asin(h/d)*s-p,a=Math.sqrt(d*d-h*h));var g=180-i-2*p,m=(Math.atan2(f,u)-Math.atan2(c,a))*s,x=(Math.atan2(f,u)-Math.atan2(c,-a))*s,b=v(r[0],r[1],i,m),_=v(r[0],r[1],g,x);return b<=_?[i,m,r[2]]:[g,x,r[2]]}(k,r,E);isFinite(T[0])&&isFinite(T[1])&&isFinite(T[2])||(T=E),e.rotate(T),E=T}}else r=g(e,M=b);f.of(this,arguments)({type:\"zoom\"})}),A=f.of(this,arguments),p++||A({type:\"zoomstart\"})}).on(\"zoomend\",function(){var r;n.select(this).style(c),d.call(i,\"zoom\",null),r=f.of(this,arguments),--p||r({type:\"zoomend\"}),h(t,e,m)}).on(\"zoom.redraw\",function(){t.render();var r=e.rotate();t.graphDiv.emit(\"plotly_relayouting\",{\"geo.projection.scale\":e.scale()/t.fitScale,\"geo.projection.rotation.lon\":-r[0],\"geo.projection.rotation.lat\":-r[1]})}),n.rebind(i,f,\"on\")}function g(t,e){var r=t.invert(e);return r&&isFinite(r[0])&&isFinite(r[1])&&function(t){var e=t[0]*o,r=t[1]*o,n=Math.cos(r);return[n*Math.cos(e),n*Math.sin(e),Math.sin(r)]}(r)}function v(t,e,r,n){var a=m(r-t),i=m(n-e);return Math.sqrt(a*a+i*i)}function m(t){return(t%360+540)%360-180}function y(t,e,r){var n=r*o,a=t.slice(),i=0===e?1:0,s=2===e?1:2,l=Math.cos(n),c=Math.sin(n);return a[i]=t[i]*l-t[s]*c,a[s]=t[s]*l+t[i]*c,a}function x(t,e){for(var r=0,n=0,a=t.length;n<a;++n)r+=t[n]*e[n];return r}e.exports=function(t,e){var r=t.projection;return(e._isScoped?f:e._isClipped?d:p)(t,r)}},{\"../../lib\":719,\"../../registry\":848,d3:164}],802:[function(t,e,r){\"use strict\";var n=t(\"../registry\"),a=t(\"./cartesian/constants\").SUBPLOT_PATTERN;r.getSubplotCalcData=function(t,e,r){var a=n.subplotsRegistry[e];if(!a)return[];for(var i=a.attr,o=[],s=0;s<t.length;s++){var l=t[s];l[0].trace[i]===r&&o.push(l)}return o},r.getModuleCalcData=function(t,e){var r,a=[],i=[];if(!(r=\"string\"==typeof e?n.getModule(e).plot:\"function\"==typeof e?e:e.plot))return[a,t];for(var o=0;o<t.length;o++){var s=t[o],l=s[0].trace;!0===l.visible&&0!==l._length&&(l._module.plot===r?a.push(s):i.push(s))}return[a,i]},r.getSubplotData=function(t,e,r){if(!n.subplotsRegistry[e])return[];var i,o,s,l=n.subplotsRegistry[e].attr,c=[];if(\"gl2d\"===e){var u=r.match(a);o=\"x\"+u[1],s=\"y\"+u[2]}for(var h=0;h<t.length;h++)i=t[h],\"gl2d\"===e&&n.traceIs(i,\"gl2d\")?i[l[0]]===o&&i[l[1]]===s&&c.push(i):i[l]===r&&c.push(i);return c}},{\"../registry\":848,\"./cartesian/constants\":773}],803:[function(t,e,r){\"use strict\";var n=t(\"mouse-change\"),a=t(\"mouse-wheel\"),i=t(\"mouse-event-offset\"),o=t(\"../cartesian/constants\"),s=t(\"has-passive-events\");function l(t,e){this.element=t,this.plot=e,this.mouseListener=null,this.wheelListener=null,this.lastInputTime=Date.now(),this.lastPos=[0,0],this.boxEnabled=!1,this.boxInited=!1,this.boxStart=[0,0],this.boxEnd=[0,0],this.dragStart=[0,0]}e.exports=function(t){var e=t.mouseContainer,r=t.glplot,c=new l(e,r);function u(){t.xaxis.autorange=!1,t.yaxis.autorange=!1}function h(e,n,a){var i,s,l=t.calcDataBox(),h=r.viewBox,f=c.lastPos[0],p=c.lastPos[1],d=o.MINDRAG*r.pixelRatio,g=o.MINZOOM*r.pixelRatio;function v(e,r,n){var a=Math.min(r,n),i=Math.max(r,n);a!==i?(l[e]=a,l[e+2]=i,c.dataBox=l,t.setRanges(l)):(t.selectBox.selectBox=[0,0,1,1],t.glplot.setDirty())}switch(n*=r.pixelRatio,a*=r.pixelRatio,a=h[3]-h[1]-a,t.fullLayout.dragmode){case\"zoom\":if(e){var m=n/(h[2]-h[0])*(l[2]-l[0])+l[0],y=a/(h[3]-h[1])*(l[3]-l[1])+l[1];c.boxInited||(c.boxStart[0]=m,c.boxStart[1]=y,c.dragStart[0]=n,c.dragStart[1]=a),c.boxEnd[0]=m,c.boxEnd[1]=y,c.boxInited=!0,c.boxEnabled||c.boxStart[0]===c.boxEnd[0]&&c.boxStart[1]===c.boxEnd[1]||(c.boxEnabled=!0);var x=Math.abs(c.dragStart[0]-n)<g,b=Math.abs(c.dragStart[1]-a)<g;if(!function(){for(var e=t.graphDiv._fullLayout._axisConstraintGroups,r=t.xaxis._id,n=t.yaxis._id,a=0;a<e.length;a++)if(-1!==e[a][r]){if(-1!==e[a][n])return!0;break}return!1}()||x&&b)x&&(c.boxEnd[0]=c.boxStart[0]),b&&(c.boxEnd[1]=c.boxStart[1]);else{i=c.boxEnd[0]-c.boxStart[0],s=c.boxEnd[1]-c.boxStart[1];var _=(l[3]-l[1])/(l[2]-l[0]);Math.abs(i*_)>Math.abs(s)?(c.boxEnd[1]=c.boxStart[1]+Math.abs(i)*_*(s>=0?1:-1),c.boxEnd[1]<l[1]?(c.boxEnd[1]=l[1],c.boxEnd[0]=c.boxStart[0]+(l[1]-c.boxStart[1])/Math.abs(_)):c.boxEnd[1]>l[3]&&(c.boxEnd[1]=l[3],c.boxEnd[0]=c.boxStart[0]+(l[3]-c.boxStart[1])/Math.abs(_))):(c.boxEnd[0]=c.boxStart[0]+Math.abs(s)/_*(i>=0?1:-1),c.boxEnd[0]<l[0]?(c.boxEnd[0]=l[0],c.boxEnd[1]=c.boxStart[1]+(l[0]-c.boxStart[0])*Math.abs(_)):c.boxEnd[0]>l[2]&&(c.boxEnd[0]=l[2],c.boxEnd[1]=c.boxStart[1]+(l[2]-c.boxStart[0])*Math.abs(_)))}}else c.boxEnabled?(i=c.boxStart[0]!==c.boxEnd[0],s=c.boxStart[1]!==c.boxEnd[1],i||s?(i&&(v(0,c.boxStart[0],c.boxEnd[0]),t.xaxis.autorange=!1),s&&(v(1,c.boxStart[1],c.boxEnd[1]),t.yaxis.autorange=!1),t.relayoutCallback()):t.glplot.setDirty(),c.boxEnabled=!1,c.boxInited=!1):c.boxInited&&(c.boxInited=!1);break;case\"pan\":c.boxEnabled=!1,c.boxInited=!1,e?(c.panning||(c.dragStart[0]=n,c.dragStart[1]=a),Math.abs(c.dragStart[0]-n)<d&&(n=c.dragStart[0]),Math.abs(c.dragStart[1]-a)<d&&(a=c.dragStart[1]),i=(f-n)*(l[2]-l[0])/(r.viewBox[2]-r.viewBox[0]),s=(p-a)*(l[3]-l[1])/(r.viewBox[3]-r.viewBox[1]),l[0]+=i,l[2]+=i,l[1]+=s,l[3]+=s,t.setRanges(l),c.panning=!0,c.lastInputTime=Date.now(),u(),t.cameraChanged(),t.handleAnnotations()):c.panning&&(c.panning=!1,t.relayoutCallback())}c.lastPos[0]=n,c.lastPos[1]=a}return c.mouseListener=n(e,h),e.addEventListener(\"touchstart\",function(t){var r=i(t.changedTouches[0],e);h(0,r[0],r[1]),h(1,r[0],r[1]),t.preventDefault()},!!s&&{passive:!1}),e.addEventListener(\"touchmove\",function(t){t.preventDefault();var r=i(t.changedTouches[0],e);h(1,r[0],r[1]),t.preventDefault()},!!s&&{passive:!1}),e.addEventListener(\"touchend\",function(t){h(0,c.lastPos[0],c.lastPos[1]),t.preventDefault()},!!s&&{passive:!1}),c.wheelListener=a(e,function(e,n){if(!t.scrollZoom)return!1;var a=t.calcDataBox(),i=r.viewBox,o=c.lastPos[0],s=c.lastPos[1],l=Math.exp(5*n/(i[3]-i[1])),h=o/(i[2]-i[0])*(a[2]-a[0])+a[0],f=s/(i[3]-i[1])*(a[3]-a[1])+a[1];return a[0]=(a[0]-h)*l+h,a[2]=(a[2]-h)*l+h,a[1]=(a[1]-f)*l+f,a[3]=(a[3]-f)*l+f,t.setRanges(a),c.lastInputTime=Date.now(),u(),t.cameraChanged(),t.handleAnnotations(),t.relayoutCallback(),!0},!0),c}},{\"../cartesian/constants\":773,\"has-passive-events\":412,\"mouse-change\":436,\"mouse-event-offset\":437,\"mouse-wheel\":439}],804:[function(t,e,r){\"use strict\";var n=t(\"../cartesian/axes\"),a=t(\"../../lib/str2rgbarray\");function i(t){this.scene=t,this.gl=t.gl,this.pixelRatio=t.pixelRatio,this.screenBox=[0,0,1,1],this.viewBox=[0,0,1,1],this.dataBox=[-1,-1,1,1],this.borderLineEnable=[!1,!1,!1,!1],this.borderLineWidth=[1,1,1,1],this.borderLineColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.ticks=[[],[]],this.tickEnable=[!0,!0,!1,!1],this.tickPad=[15,15,15,15],this.tickAngle=[0,0,0,0],this.tickColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.tickMarkLength=[0,0,0,0],this.tickMarkWidth=[0,0,0,0],this.tickMarkColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.labels=[\"x\",\"y\"],this.labelEnable=[!0,!0,!1,!1],this.labelAngle=[0,Math.PI/2,0,3*Math.PI/2],this.labelPad=[15,15,15,15],this.labelSize=[12,12],this.labelFont=[\"sans-serif\",\"sans-serif\"],this.labelColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.title=\"\",this.titleEnable=!0,this.titleCenter=[0,0,0,0],this.titleAngle=0,this.titleColor=[0,0,0,1],this.titleFont=\"sans-serif\",this.titleSize=18,this.gridLineEnable=[!0,!0],this.gridLineColor=[[0,0,0,.5],[0,0,0,.5]],this.gridLineWidth=[1,1],this.zeroLineEnable=[!0,!0],this.zeroLineWidth=[1,1],this.zeroLineColor=[[0,0,0,1],[0,0,0,1]],this.borderColor=[0,0,0,0],this.backgroundColor=[0,0,0,0],this.static=this.scene.staticPlot}var o=i.prototype,s=[\"xaxis\",\"yaxis\"];o.merge=function(t){var e,r,n,i,o,l,c,u,h,f,p;for(this.titleEnable=!1,this.backgroundColor=a(t.plot_bgcolor),f=0;f<2;++f){var d=(e=s[f]).charAt(0);for(n=(r=t[this.scene[e]._name]).title.text===this.scene.fullLayout._dfltTitle[d]?\"\":r.title.text,p=0;p<=2;p+=2)this.labelEnable[f+p]=!1,this.labels[f+p]=n,this.labelColor[f+p]=a(r.title.font.color),this.labelFont[f+p]=r.title.font.family,this.labelSize[f+p]=r.title.font.size,this.labelPad[f+p]=this.getLabelPad(e,r),this.tickEnable[f+p]=!1,this.tickColor[f+p]=a((r.tickfont||{}).color),this.tickAngle[f+p]=\"auto\"===r.tickangle?0:Math.PI*-r.tickangle/180,this.tickPad[f+p]=this.getTickPad(r),this.tickMarkLength[f+p]=0,this.tickMarkWidth[f+p]=r.tickwidth||0,this.tickMarkColor[f+p]=a(r.tickcolor),this.borderLineEnable[f+p]=!1,this.borderLineColor[f+p]=a(r.linecolor),this.borderLineWidth[f+p]=r.linewidth||0;c=this.hasSharedAxis(r),o=this.hasAxisInDfltPos(e,r)&&!c,l=this.hasAxisInAltrPos(e,r)&&!c,i=r.mirror||!1,u=c?-1!==String(i).indexOf(\"all\"):!!i,h=c?\"allticks\"===i:-1!==String(i).indexOf(\"ticks\"),o?this.labelEnable[f]=!0:l&&(this.labelEnable[f+2]=!0),o?this.tickEnable[f]=r.showticklabels:l&&(this.tickEnable[f+2]=r.showticklabels),(o||u)&&(this.borderLineEnable[f]=r.showline),(l||u)&&(this.borderLineEnable[f+2]=r.showline),(o||h)&&(this.tickMarkLength[f]=this.getTickMarkLength(r)),(l||h)&&(this.tickMarkLength[f+2]=this.getTickMarkLength(r)),this.gridLineEnable[f]=r.showgrid,this.gridLineColor[f]=a(r.gridcolor),this.gridLineWidth[f]=r.gridwidth,this.zeroLineEnable[f]=r.zeroline,this.zeroLineColor[f]=a(r.zerolinecolor),this.zeroLineWidth[f]=r.zerolinewidth}},o.hasSharedAxis=function(t){var e=this.scene,r=e.fullLayout._subplots.gl2d;return 0!==n.findSubplotsWithAxis(r,t).indexOf(e.id)},o.hasAxisInDfltPos=function(t,e){var r=e.side;return\"xaxis\"===t?\"bottom\"===r:\"yaxis\"===t?\"left\"===r:void 0},o.hasAxisInAltrPos=function(t,e){var r=e.side;return\"xaxis\"===t?\"top\"===r:\"yaxis\"===t?\"right\"===r:void 0},o.getLabelPad=function(t,e){var r=e.title.font.size,n=e.showticklabels;return\"xaxis\"===t?\"top\"===e.side?r*(1.5+(n?1:0))-10:r*(1.5+(n?.5:0))-10:\"yaxis\"===t?\"right\"===e.side?10+r*(1.5+(n?1:.5)):10+r*(1.5+(n?.5:0)):void 0},o.getTickPad=function(t){return\"outside\"===t.ticks?10+t.ticklen:15},o.getTickMarkLength=function(t){if(!t.ticks)return 0;var e=t.ticklen;return\"inside\"===t.ticks?-e:e},e.exports=function(t){return new i(t)}},{\"../../lib/str2rgbarray\":742,\"../cartesian/axes\":767}],805:[function(t,e,r){\"use strict\";var n=t(\"../../plot_api/edit_types\").overrideAll,a=t(\"./scene2d\"),i=t(\"../layout_attributes\"),o=t(\"../../constants/xmlns_namespaces\"),s=t(\"../cartesian/constants\"),l=t(\"../cartesian\"),c=t(\"../../components/fx/layout_attributes\"),u=t(\"../get_data\").getSubplotData;r.name=\"gl2d\",r.attr=[\"xaxis\",\"yaxis\"],r.idRoot=[\"x\",\"y\"],r.idRegex=s.idRegex,r.attrRegex=s.attrRegex,r.attributes=t(\"../cartesian/attributes\"),r.supplyLayoutDefaults=function(t,e,r){e._has(\"cartesian\")||l.supplyLayoutDefaults(t,e,r)},r.layoutAttrOverrides=n(l.layoutAttributes,\"plot\",\"from-root\"),r.baseLayoutAttrOverrides=n({plot_bgcolor:i.plot_bgcolor,hoverlabel:c.hoverlabel},\"plot\",\"nested\"),r.plot=function(t){for(var e=t._fullLayout,r=t._fullData,n=e._subplots.gl2d,i=0;i<n.length;i++){var o=n[i],s=e._plots[o],l=u(r,\"gl2d\",o),c=s._scene2d;void 0===c&&(c=new a({id:o,graphDiv:t,container:t.querySelector(\".gl-container\"),staticPlot:t._context.staticPlot,plotGlPixelRatio:t._context.plotGlPixelRatio},e),s._scene2d=c),c.plot(l,t.calcdata,e,t.layout)}},r.clean=function(t,e,r,n){for(var a=n._subplots.gl2d||[],i=0;i<a.length;i++){var o=a[i],s=n._plots[o];if(s._scene2d)0===u(t,\"gl2d\",o).length&&(s._scene2d.destroy(),delete n._plots[o])}l.clean.apply(this,arguments)},r.drawFramework=function(t){t._context.staticPlot||l.drawFramework(t)},r.toSVG=function(t){for(var e=t._fullLayout,r=e._subplots.gl2d,n=0;n<r.length;n++){var a=e._plots[r[n]]._scene2d,i=a.toImage(\"png\");e._glimages.append(\"svg:image\").attr({xmlns:o.svg,\"xlink:href\":i,x:0,y:0,width:\"100%\",height:\"100%\",preserveAspectRatio:\"none\"}),a.destroy()}},r.updateFx=function(t){for(var e=t._fullLayout,r=e._subplots.gl2d,n=0;n<r.length;n++){e._plots[r[n]]._scene2d.updateFx(e.dragmode)}}},{\"../../components/fx/layout_attributes\":633,\"../../constants/xmlns_namespaces\":696,\"../../plot_api/edit_types\":750,\"../cartesian\":778,\"../cartesian/attributes\":765,\"../cartesian/constants\":773,\"../get_data\":802,\"../layout_attributes\":819,\"./scene2d\":806}],806:[function(t,e,r){\"use strict\";var n,a,i=t(\"../../registry\"),o=t(\"../../plots/cartesian/axes\"),s=t(\"../../components/fx\"),l=t(\"gl-plot2d\"),c=t(\"gl-spikes2d\"),u=t(\"gl-select-box\"),h=t(\"webgl-context\"),f=t(\"./convert\"),p=t(\"./camera\"),d=t(\"../../lib/show_no_webgl_msg\"),g=t(\"../cartesian/constraints\"),v=g.enforce,m=g.clean,y=t(\"../cartesian/autorange\").doAutoRange,x=[\"xaxis\",\"yaxis\"],b=t(\"../cartesian/constants\").SUBPLOT_PATTERN;function _(t,e){this.container=t.container,this.graphDiv=t.graphDiv,this.pixelRatio=t.plotGlPixelRatio||window.devicePixelRatio,this.id=t.id,this.staticPlot=!!t.staticPlot,this.scrollZoom=this.graphDiv._context._scrollZoom.cartesian,this.fullData=null,this.updateRefs(e),this.makeFramework(),this.stopped||(this.glplotOptions=f(this),this.glplotOptions.merge(e),this.glplot=l(this.glplotOptions),this.camera=p(this),this.traces={},this.spikes=c(this.glplot),this.selectBox=u(this.glplot,{innerFill:!1,outerFill:!0}),this.lastButtonState=0,this.pickResult=null,this.isMouseOver=!0,this.stopped=!1,this.redraw=this.draw.bind(this),this.redraw())}e.exports=_;var w=_.prototype;w.makeFramework=function(){if(this.staticPlot){if(!(a||(n=document.createElement(\"canvas\"),a=h({canvas:n,preserveDrawingBuffer:!1,premultipliedAlpha:!0,antialias:!0}))))throw new Error(\"Error creating static canvas/context for image server\");this.canvas=n,this.gl=a}else{var t=this.container.querySelector(\".gl-canvas-focus\"),e=h({canvas:t,preserveDrawingBuffer:!0,premultipliedAlpha:!0});if(!e)return d(this),void(this.stopped=!0);this.canvas=t,this.gl=e}var r=this.canvas;r.style.width=\"100%\",r.style.height=\"100%\",r.style.position=\"absolute\",r.style.top=\"0px\",r.style.left=\"0px\",r.style[\"pointer-events\"]=\"none\",this.updateSize(r),r.className+=\" user-select-none\";var i=this.svgContainer=document.createElementNS(\"http://www.w3.org/2000/svg\",\"svg\");i.style.position=\"absolute\",i.style.top=i.style.left=\"0px\",i.style.width=i.style.height=\"100%\",i.style[\"z-index\"]=20,i.style[\"pointer-events\"]=\"none\";var o=this.mouseContainer=document.createElement(\"div\");o.style.position=\"absolute\",o.style[\"pointer-events\"]=\"auto\",this.pickCanvas=this.container.querySelector(\".gl-canvas-pick\");var s=this.container;s.appendChild(i),s.appendChild(o);var l=this;o.addEventListener(\"mouseout\",function(){l.isMouseOver=!1,l.unhover()}),o.addEventListener(\"mouseover\",function(){l.isMouseOver=!0})},w.toImage=function(t){t||(t=\"png\"),this.stopped=!0,this.staticPlot&&this.container.appendChild(n),this.updateSize(this.canvas);var e=this.glplot.gl,r=e.drawingBufferWidth,a=e.drawingBufferHeight;e.clearColor(1,1,1,0),e.clear(e.COLOR_BUFFER_BIT|e.DEPTH_BUFFER_BIT),this.glplot.setDirty(),this.glplot.draw(),e.bindFramebuffer(e.FRAMEBUFFER,null);var i=new Uint8Array(r*a*4);e.readPixels(0,0,r,a,e.RGBA,e.UNSIGNED_BYTE,i);for(var o=0,s=a-1;o<s;++o,--s)for(var l=0;l<r;++l)for(var c=0;c<4;++c){var u=i[4*(r*o+l)+c];i[4*(r*o+l)+c]=i[4*(r*s+l)+c],i[4*(r*s+l)+c]=u}var h=document.createElement(\"canvas\");h.width=r,h.height=a;var f,p=h.getContext(\"2d\"),d=p.createImageData(r,a);switch(d.data.set(i),p.putImageData(d,0,0),t){case\"jpeg\":f=h.toDataURL(\"image/jpeg\");break;case\"webp\":f=h.toDataURL(\"image/webp\");break;default:f=h.toDataURL(\"image/png\")}return this.staticPlot&&this.container.removeChild(n),f},w.updateSize=function(t){t||(t=this.canvas);var e=this.pixelRatio,r=this.fullLayout,n=r.width,a=r.height,i=0|Math.ceil(e*n),o=0|Math.ceil(e*a);return t.width===i&&t.height===o||(t.width=i,t.height=o),t},w.computeTickMarks=function(){this.xaxis.setScale(),this.yaxis.setScale();for(var t=[o.calcTicks(this.xaxis),o.calcTicks(this.yaxis)],e=0;e<2;++e)for(var r=0;r<t[e].length;++r)t[e][r].text=t[e][r].text+\"\";return t},w.updateRefs=function(t){this.fullLayout=t;var e=this.id.match(b),r=\"xaxis\"+e[1],n=\"yaxis\"+e[2];this.xaxis=this.fullLayout[r],this.yaxis=this.fullLayout[n]},w.relayoutCallback=function(){var t=this.graphDiv,e=this.xaxis,r=this.yaxis,n=t.layout,a={},o=a[e._name+\".range\"]=e.range.slice(),s=a[r._name+\".range\"]=r.range.slice();a[e._name+\".autorange\"]=e.autorange,a[r._name+\".autorange\"]=r.autorange,i.call(\"_storeDirectGUIEdit\",t.layout,t._fullLayout._preGUI,a);var l=n[e._name];l.range=o,l.autorange=e.autorange;var c=n[r._name];c.range=s,c.autorange=r.autorange,a.lastInputTime=this.camera.lastInputTime,t.emit(\"plotly_relayout\",a)},w.cameraChanged=function(){var t=this.camera;this.glplot.setDataBox(this.calcDataBox());var e=this.computeTickMarks();(function(t,e){for(var r=0;r<2;++r){var n=t[r],a=e[r];if(n.length!==a.length)return!0;for(var i=0;i<n.length;++i)if(n[i].x!==a[i].x)return!0}return!1})(e,this.glplotOptions.ticks)&&(this.glplotOptions.ticks=e,this.glplotOptions.dataBox=t.dataBox,this.glplot.update(this.glplotOptions),this.handleAnnotations())},w.handleAnnotations=function(){for(var t=this.graphDiv,e=this.fullLayout.annotations,r=0;r<e.length;r++){var n=e[r];n.xref===this.xaxis._id&&n.yref===this.yaxis._id&&i.getComponentMethod(\"annotations\",\"drawOne\")(t,r)}},w.destroy=function(){if(this.glplot){var t=this.traces;t&&Object.keys(t).map(function(e){t[e].dispose(),delete t[e]}),this.glplot.dispose(),this.container.removeChild(this.svgContainer),this.container.removeChild(this.mouseContainer),this.fullData=null,this.glplot=null,this.stopped=!0,this.camera.mouseListener.enabled=!1,this.mouseContainer.removeEventListener(\"wheel\",this.camera.wheelListener),this.camera=null}},w.plot=function(t,e,r){var n=this.glplot;this.updateRefs(r),this.xaxis.clearCalc(),this.yaxis.clearCalc(),this.updateTraces(t,e),this.updateFx(r.dragmode);var a=r.width,i=r.height;this.updateSize(this.canvas);var o=this.glplotOptions;o.merge(r),o.screenBox=[0,0,a,i];var s={_fullLayout:{_axisConstraintGroups:this.graphDiv._fullLayout._axisConstraintGroups,xaxis:this.xaxis,yaxis:this.yaxis}};m(s,this.xaxis),m(s,this.yaxis);var l,c,u=r._size,h=this.xaxis.domain,f=this.yaxis.domain;for(o.viewBox=[u.l+h[0]*u.w,u.b+f[0]*u.h,a-u.r-(1-h[1])*u.w,i-u.t-(1-f[1])*u.h],this.mouseContainer.style.width=u.w*(h[1]-h[0])+\"px\",this.mouseContainer.style.height=u.h*(f[1]-f[0])+\"px\",this.mouseContainer.height=u.h*(f[1]-f[0]),this.mouseContainer.style.left=u.l+h[0]*u.w+\"px\",this.mouseContainer.style.top=u.t+(1-f[1])*u.h+\"px\",c=0;c<2;++c)(l=this[x[c]])._length=o.viewBox[c+2]-o.viewBox[c],y(this.graphDiv,l),l.setScale();v(s),o.ticks=this.computeTickMarks(),o.dataBox=this.calcDataBox(),o.merge(r),n.update(o),this.glplot.draw()},w.calcDataBox=function(){var t=this.xaxis,e=this.yaxis,r=t.range,n=e.range,a=t.r2l,i=e.r2l;return[a(r[0]),i(n[0]),a(r[1]),i(n[1])]},w.setRanges=function(t){var e=this.xaxis,r=this.yaxis,n=e.l2r,a=r.l2r;e.range=[n(t[0]),n(t[2])],r.range=[a(t[1]),a(t[3])]},w.updateTraces=function(t,e){var r,n,a,i=Object.keys(this.traces);this.fullData=t;t:for(r=0;r<i.length;r++){var o=i[r],s=this.traces[o];for(n=0;n<t.length;n++)if((a=t[n]).uid===o&&a.type===s.type)continue t;s.dispose(),delete this.traces[o]}for(r=0;r<t.length;r++){a=t[r];var l=e[r],c=this.traces[a.uid];c?c.update(a,l):(c=a._module.plot(this,a,l),this.traces[a.uid]=c)}this.glplot.objects.sort(function(t,e){return t._trace.index-e._trace.index})},w.updateFx=function(t){\"lasso\"===t||\"select\"===t?(this.pickCanvas.style[\"pointer-events\"]=\"none\",this.mouseContainer.style[\"pointer-events\"]=\"none\"):(this.pickCanvas.style[\"pointer-events\"]=\"auto\",this.mouseContainer.style[\"pointer-events\"]=\"auto\"),this.mouseContainer.style.cursor=\"pan\"===t?\"move\":\"zoom\"===t?\"crosshair\":null},w.emitPointAction=function(t,e){for(var r,n=t.trace.uid,a=t.pointIndex,i=0;i<this.fullData.length;i++)this.fullData[i].uid===n&&(r=this.fullData[i]);var o={x:t.traceCoord[0],y:t.traceCoord[1],curveNumber:r.index,pointNumber:a,data:r._input,fullData:this.fullData,xaxis:this.xaxis,yaxis:this.yaxis};s.appendArrayPointValue(o,r,a),this.graphDiv.emit(e,{points:[o]})},w.draw=function(){if(!this.stopped){requestAnimationFrame(this.redraw);var t=this.glplot,e=this.camera,r=e.mouseListener,n=1===this.lastButtonState&&0===r.buttons,a=this.fullLayout;this.lastButtonState=r.buttons,this.cameraChanged();var i,o=r.x*t.pixelRatio,l=this.canvas.height-t.pixelRatio*r.y;if(e.boxEnabled&&\"zoom\"===a.dragmode){this.selectBox.enabled=!0;for(var c=this.selectBox.selectBox=[Math.min(e.boxStart[0],e.boxEnd[0]),Math.min(e.boxStart[1],e.boxEnd[1]),Math.max(e.boxStart[0],e.boxEnd[0]),Math.max(e.boxStart[1],e.boxEnd[1])],u=0;u<2;u++)e.boxStart[u]===e.boxEnd[u]&&(c[u]=t.dataBox[u],c[u+2]=t.dataBox[u+2]);t.setDirty()}else if(!e.panning&&this.isMouseOver){this.selectBox.enabled=!1;var h=a._size,f=this.xaxis.domain,p=this.yaxis.domain,d=(i=t.pick(o/t.pixelRatio+h.l+f[0]*h.w,l/t.pixelRatio-(h.t+(1-p[1])*h.h)))&&i.object._trace.handlePick(i);if(d&&n&&this.emitPointAction(d,\"plotly_click\"),i&&\"skip\"!==i.object._trace.hoverinfo&&a.hovermode&&d&&(!this.lastPickResult||this.lastPickResult.traceUid!==d.trace.uid||this.lastPickResult.dataCoord[0]!==d.dataCoord[0]||this.lastPickResult.dataCoord[1]!==d.dataCoord[1])){var g=d;this.lastPickResult={traceUid:d.trace?d.trace.uid:null,dataCoord:d.dataCoord.slice()},this.spikes.update({center:i.dataCoord}),g.screenCoord=[((t.viewBox[2]-t.viewBox[0])*(i.dataCoord[0]-t.dataBox[0])/(t.dataBox[2]-t.dataBox[0])+t.viewBox[0])/t.pixelRatio,(this.canvas.height-(t.viewBox[3]-t.viewBox[1])*(i.dataCoord[1]-t.dataBox[1])/(t.dataBox[3]-t.dataBox[1])-t.viewBox[1])/t.pixelRatio],this.emitPointAction(d,\"plotly_hover\");var v=this.fullData[g.trace.index]||{},m=g.pointIndex,y=s.castHoverinfo(v,a,m);if(y&&\"all\"!==y){var x=y.split(\"+\");-1===x.indexOf(\"x\")&&(g.traceCoord[0]=void 0),-1===x.indexOf(\"y\")&&(g.traceCoord[1]=void 0),-1===x.indexOf(\"z\")&&(g.traceCoord[2]=void 0),-1===x.indexOf(\"text\")&&(g.textLabel=void 0),-1===x.indexOf(\"name\")&&(g.name=void 0)}s.loneHover({x:g.screenCoord[0],y:g.screenCoord[1],xLabel:this.hoverFormatter(\"xaxis\",g.traceCoord[0]),yLabel:this.hoverFormatter(\"yaxis\",g.traceCoord[1]),zLabel:g.traceCoord[2],text:g.textLabel,name:g.name,color:s.castHoverOption(v,m,\"bgcolor\")||g.color,borderColor:s.castHoverOption(v,m,\"bordercolor\"),fontFamily:s.castHoverOption(v,m,\"font.family\"),fontSize:s.castHoverOption(v,m,\"font.size\"),fontColor:s.castHoverOption(v,m,\"font.color\"),nameLength:s.castHoverOption(v,m,\"namelength\"),textAlign:s.castHoverOption(v,m,\"align\")},{container:this.svgContainer,gd:this.graphDiv})}}i||this.unhover(),t.draw()}},w.unhover=function(){this.lastPickResult&&(this.spikes.update({}),this.lastPickResult=null,this.graphDiv.emit(\"plotly_unhover\"),s.loneUnhover(this.svgContainer))},w.hoverFormatter=function(t,e){if(void 0!==e){var r=this[t];return o.tickText(r,r.c2l(e),\"hover\").text}}},{\"../../components/fx\":632,\"../../lib/show_no_webgl_msg\":740,\"../../plots/cartesian/axes\":767,\"../../registry\":848,\"../cartesian/autorange\":766,\"../cartesian/constants\":773,\"../cartesian/constraints\":774,\"./camera\":803,\"./convert\":804,\"gl-plot2d\":288,\"gl-select-box\":300,\"gl-spikes2d\":309,\"webgl-context\":557}],807:[function(t,e,r){\"use strict\";var n=t(\"../../plot_api/edit_types\").overrideAll,a=t(\"../../components/fx/layout_attributes\"),i=t(\"./scene\"),o=t(\"../get_data\").getSubplotData,s=t(\"../../lib\"),l=t(\"../../constants/xmlns_namespaces\");r.name=\"gl3d\",r.attr=\"scene\",r.idRoot=\"scene\",r.idRegex=r.attrRegex=s.counterRegex(\"scene\"),r.attributes=t(\"./layout/attributes\"),r.layoutAttributes=t(\"./layout/layout_attributes\"),r.baseLayoutAttrOverrides=n({hoverlabel:a.hoverlabel},\"plot\",\"nested\"),r.supplyLayoutDefaults=t(\"./layout/defaults\"),r.plot=function(t){for(var e=t._fullLayout,r=t._fullData,n=e._subplots.gl3d,a=0;a<n.length;a++){var s=n[a],l=o(r,\"gl3d\",s),c=e[s],u=c.camera,h=c._scene;h||(h=new i({id:s,graphDiv:t,container:t.querySelector(\".gl-container\"),staticPlot:t._context.staticPlot,plotGlPixelRatio:t._context.plotGlPixelRatio,camera:u},e),c._scene=h),h.viewInitial||(h.viewInitial={up:{x:u.up.x,y:u.up.y,z:u.up.z},eye:{x:u.eye.x,y:u.eye.y,z:u.eye.z},center:{x:u.center.x,y:u.center.y,z:u.center.z}}),h.plot(l,e,t.layout)}},r.clean=function(t,e,r,n){for(var a=n._subplots.gl3d||[],i=0;i<a.length;i++){var o=a[i];!e[o]&&n[o]._scene&&(n[o]._scene.destroy(),n._infolayer&&n._infolayer.selectAll(\".annotation-\"+o).remove())}},r.toSVG=function(t){for(var e=t._fullLayout,r=e._subplots.gl3d,n=e._size,a=0;a<r.length;a++){var i=e[r[a]],o=i.domain,s=i._scene,c=s.toImage(\"png\");e._glimages.append(\"svg:image\").attr({xmlns:l.svg,\"xlink:href\":c,x:n.l+n.w*o.x[0],y:n.t+n.h*(1-o.y[1]),width:n.w*(o.x[1]-o.x[0]),height:n.h*(o.y[1]-o.y[0]),preserveAspectRatio:\"none\"}),s.destroy()}},r.cleanId=function(t){if(t.match(/^scene[0-9]*$/)){var e=t.substr(5);return\"1\"===e&&(e=\"\"),\"scene\"+e}},r.updateFx=function(t){for(var e=t._fullLayout,r=e._subplots.gl3d,n=0;n<r.length;n++){e[r[n]]._scene.updateFx(e.dragmode,e.hovermode)}}},{\"../../components/fx/layout_attributes\":633,\"../../constants/xmlns_namespaces\":696,\"../../lib\":719,\"../../plot_api/edit_types\":750,\"../get_data\":802,\"./layout/attributes\":808,\"./layout/defaults\":812,\"./layout/layout_attributes\":813,\"./scene\":817}],808:[function(t,e,r){\"use strict\";e.exports={scene:{valType:\"subplotid\",dflt:\"scene\",editType:\"calc+clearAxisTypes\"}}},{}],809:[function(t,e,r){\"use strict\";var n=t(\"../../../components/color\"),a=t(\"../../cartesian/layout_attributes\"),i=t(\"../../../lib/extend\").extendFlat,o=t(\"../../../plot_api/edit_types\").overrideAll;e.exports=o({visible:a.visible,showspikes:{valType:\"boolean\",dflt:!0},spikesides:{valType:\"boolean\",dflt:!0},spikethickness:{valType:\"number\",min:0,dflt:2},spikecolor:{valType:\"color\",dflt:n.defaultLine},showbackground:{valType:\"boolean\",dflt:!1},backgroundcolor:{valType:\"color\",dflt:\"rgba(204, 204, 204, 0.5)\"},showaxeslabels:{valType:\"boolean\",dflt:!0},color:a.color,categoryorder:a.categoryorder,categoryarray:a.categoryarray,title:a.title,type:i({},a.type,{values:[\"-\",\"linear\",\"log\",\"date\",\"category\"]}),autorange:a.autorange,rangemode:a.rangemode,range:i({},a.range,{items:[{valType:\"any\",editType:\"plot\",impliedEdits:{\"^autorange\":!1}},{valType:\"any\",editType:\"plot\",impliedEdits:{\"^autorange\":!1}}],anim:!1}),tickmode:a.tickmode,nticks:a.nticks,tick0:a.tick0,dtick:a.dtick,tickvals:a.tickvals,ticktext:a.ticktext,ticks:a.ticks,mirror:a.mirror,ticklen:a.ticklen,tickwidth:a.tickwidth,tickcolor:a.tickcolor,showticklabels:a.showticklabels,tickfont:a.tickfont,tickangle:a.tickangle,tickprefix:a.tickprefix,showtickprefix:a.showtickprefix,ticksuffix:a.ticksuffix,showticksuffix:a.showticksuffix,showexponent:a.showexponent,exponentformat:a.exponentformat,separatethousands:a.separatethousands,tickformat:a.tickformat,tickformatstops:a.tickformatstops,hoverformat:a.hoverformat,showline:a.showline,linecolor:a.linecolor,linewidth:a.linewidth,showgrid:a.showgrid,gridcolor:i({},a.gridcolor,{dflt:\"rgb(204, 204, 204)\"}),gridwidth:a.gridwidth,zeroline:a.zeroline,zerolinecolor:a.zerolinecolor,zerolinewidth:a.zerolinewidth,_deprecated:{title:a._deprecated.title,titlefont:a._deprecated.titlefont}},\"plot\",\"from-root\")},{\"../../../components/color\":594,\"../../../lib/extend\":710,\"../../../plot_api/edit_types\":750,\"../../cartesian/layout_attributes\":779}],810:[function(t,e,r){\"use strict\";var n=t(\"tinycolor2\").mix,a=t(\"../../../lib\"),i=t(\"../../../plot_api/plot_template\"),o=t(\"./axis_attributes\"),s=t(\"../../cartesian/type_defaults\"),l=t(\"../../cartesian/axis_defaults\"),c=[\"xaxis\",\"yaxis\",\"zaxis\"];e.exports=function(t,e,r){var u,h;function f(t,e){return a.coerce(u,h,o,t,e)}for(var p=0;p<c.length;p++){var d=c[p];u=t[d]||{},(h=i.newContainer(e,d))._id=d[0]+r.scene,h._name=d,s(u,h,f,r),l(u,h,f,{font:r.font,letter:d[0],data:r.data,showGrid:!0,noTickson:!0,bgColor:r.bgColor,calendar:r.calendar},r.fullLayout),f(\"gridcolor\",n(h.color,r.bgColor,13600/187).toRgbString()),f(\"title.text\",d[0]),h.setScale=a.noop,f(\"showspikes\")&&(f(\"spikesides\"),f(\"spikethickness\"),f(\"spikecolor\",h.color)),f(\"showaxeslabels\"),f(\"showbackground\")&&f(\"backgroundcolor\")}}},{\"../../../lib\":719,\"../../../plot_api/plot_template\":757,\"../../cartesian/axis_defaults\":769,\"../../cartesian/type_defaults\":790,\"./axis_attributes\":809,tinycolor2:538}],811:[function(t,e,r){\"use strict\";var n=t(\"../../../lib/str2rgbarray\"),a=t(\"../../../lib\"),i=[\"xaxis\",\"yaxis\",\"zaxis\"];function o(){this.bounds=[[-10,-10,-10],[10,10,10]],this.ticks=[[],[],[]],this.tickEnable=[!0,!0,!0],this.tickFont=[\"sans-serif\",\"sans-serif\",\"sans-serif\"],this.tickSize=[12,12,12],this.tickAngle=[0,0,0],this.tickColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.tickPad=[18,18,18],this.labels=[\"x\",\"y\",\"z\"],this.labelEnable=[!0,!0,!0],this.labelFont=[\"Open Sans\",\"Open Sans\",\"Open Sans\"],this.labelSize=[20,20,20],this.labelColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.labelPad=[30,30,30],this.lineEnable=[!0,!0,!0],this.lineMirror=[!1,!1,!1],this.lineWidth=[1,1,1],this.lineColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.lineTickEnable=[!0,!0,!0],this.lineTickMirror=[!1,!1,!1],this.lineTickLength=[10,10,10],this.lineTickWidth=[1,1,1],this.lineTickColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.gridEnable=[!0,!0,!0],this.gridWidth=[1,1,1],this.gridColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.zeroEnable=[!0,!0,!0],this.zeroLineColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.zeroLineWidth=[2,2,2],this.backgroundEnable=[!0,!0,!0],this.backgroundColor=[[.8,.8,.8,.5],[.8,.8,.8,.5],[.8,.8,.8,.5]],this._defaultTickPad=this.tickPad.slice(),this._defaultLabelPad=this.labelPad.slice(),this._defaultLineTickLength=this.lineTickLength.slice()}o.prototype.merge=function(t,e){for(var r=0;r<3;++r){var o=e[i[r]];o.visible?(this.labels[r]=t._meta?a.templateString(o.title.text,t._meta):o.title.text,\"font\"in o.title&&(o.title.font.color&&(this.labelColor[r]=n(o.title.font.color)),o.title.font.family&&(this.labelFont[r]=o.title.font.family),o.title.font.size&&(this.labelSize[r]=o.title.font.size)),\"showline\"in o&&(this.lineEnable[r]=o.showline),\"linecolor\"in o&&(this.lineColor[r]=n(o.linecolor)),\"linewidth\"in o&&(this.lineWidth[r]=o.linewidth),\"showgrid\"in o&&(this.gridEnable[r]=o.showgrid),\"gridcolor\"in o&&(this.gridColor[r]=n(o.gridcolor)),\"gridwidth\"in o&&(this.gridWidth[r]=o.gridwidth),\"log\"===o.type?this.zeroEnable[r]=!1:\"zeroline\"in o&&(this.zeroEnable[r]=o.zeroline),\"zerolinecolor\"in o&&(this.zeroLineColor[r]=n(o.zerolinecolor)),\"zerolinewidth\"in o&&(this.zeroLineWidth[r]=o.zerolinewidth),\"ticks\"in o&&o.ticks?this.lineTickEnable[r]=!0:this.lineTickEnable[r]=!1,\"ticklen\"in o&&(this.lineTickLength[r]=this._defaultLineTickLength[r]=o.ticklen),\"tickcolor\"in o&&(this.lineTickColor[r]=n(o.tickcolor)),\"tickwidth\"in o&&(this.lineTickWidth[r]=o.tickwidth),\"tickangle\"in o&&(this.tickAngle[r]=\"auto\"===o.tickangle?-3600:Math.PI*-o.tickangle/180),\"showticklabels\"in o&&(this.tickEnable[r]=o.showticklabels),\"tickfont\"in o&&(o.tickfont.color&&(this.tickColor[r]=n(o.tickfont.color)),o.tickfont.family&&(this.tickFont[r]=o.tickfont.family),o.tickfont.size&&(this.tickSize[r]=o.tickfont.size)),\"mirror\"in o?-1!==[\"ticks\",\"all\",\"allticks\"].indexOf(o.mirror)?(this.lineTickMirror[r]=!0,this.lineMirror[r]=!0):!0===o.mirror?(this.lineTickMirror[r]=!1,this.lineMirror[r]=!0):(this.lineTickMirror[r]=!1,this.lineMirror[r]=!1):this.lineMirror[r]=!1,\"showbackground\"in o&&!1!==o.showbackground?(this.backgroundEnable[r]=!0,this.backgroundColor[r]=n(o.backgroundcolor)):this.backgroundEnable[r]=!1):(this.tickEnable[r]=!1,this.labelEnable[r]=!1,this.lineEnable[r]=!1,this.lineTickEnable[r]=!1,this.gridEnable[r]=!1,this.zeroEnable[r]=!1,this.backgroundEnable[r]=!1)}},e.exports=function(t,e){var r=new o;return r.merge(t,e),r}},{\"../../../lib\":719,\"../../../lib/str2rgbarray\":742}],812:[function(t,e,r){\"use strict\";var n=t(\"../../../lib\"),a=t(\"../../../components/color\"),i=t(\"../../../registry\"),o=t(\"../../subplot_defaults\"),s=t(\"./axis_defaults\"),l=t(\"./layout_attributes\"),c=t(\"../../get_data\").getSubplotData,u=\"gl3d\";function h(t,e,r,n){for(var o=r(\"bgcolor\"),l=a.combine(o,n.paper_bgcolor),h=[\"up\",\"center\",\"eye\"],f=0;f<h.length;f++)r(\"camera.\"+h[f]+\".x\"),r(\"camera.\"+h[f]+\".y\"),r(\"camera.\"+h[f]+\".z\");r(\"camera.projection.type\");var p=!!r(\"aspectratio.x\")&&!!r(\"aspectratio.y\")&&!!r(\"aspectratio.z\"),d=r(\"aspectmode\",p?\"manual\":\"auto\");p||(t.aspectratio=e.aspectratio={x:1,y:1,z:1},\"manual\"===d&&(e.aspectmode=\"auto\"),t.aspectmode=e.aspectmode);var g=c(n.fullData,u,n.id);s(t,e,{font:n.font,scene:n.id,data:g,bgColor:l,calendar:n.calendar,fullLayout:n.fullLayout}),i.getComponentMethod(\"annotations3d\",\"handleDefaults\")(t,e,n);var v=n.getDfltFromLayout(\"dragmode\");if(!1!==v&&!v)if(v=\"orbit\",t.camera&&t.camera.up){var m=t.camera.up.x,y=t.camera.up.y,x=t.camera.up.z;0!==x&&(m&&y&&x?x/Math.sqrt(m*m+y*y+x*x)>.999&&(v=\"turntable\"):v=\"turntable\")}else v=\"turntable\";r(\"dragmode\",v),r(\"hovermode\",n.getDfltFromLayout(\"hovermode\"))}e.exports=function(t,e,r){var a=e._basePlotModules.length>1;o(t,e,r,{type:u,attributes:l,handleDefaults:h,fullLayout:e,font:e.font,fullData:r,getDfltFromLayout:function(e){if(!a)return n.validate(t[e],l[e])?t[e]:void 0},paper_bgcolor:e.paper_bgcolor,calendar:e.calendar})}},{\"../../../components/color\":594,\"../../../lib\":719,\"../../../registry\":848,\"../../get_data\":802,\"../../subplot_defaults\":842,\"./axis_defaults\":810,\"./layout_attributes\":813}],813:[function(t,e,r){\"use strict\";var n=t(\"./axis_attributes\"),a=t(\"../../domain\").attributes,i=t(\"../../../lib/extend\").extendFlat,o=t(\"../../../lib\").counterRegex;function s(t,e,r){return{x:{valType:\"number\",dflt:t,editType:\"camera\"},y:{valType:\"number\",dflt:e,editType:\"camera\"},z:{valType:\"number\",dflt:r,editType:\"camera\"},editType:\"camera\"}}e.exports={_arrayAttrRegexps:[o(\"scene\",\".annotations\",!0)],bgcolor:{valType:\"color\",dflt:\"rgba(0,0,0,0)\",editType:\"plot\"},camera:{up:i(s(0,0,1),{}),center:i(s(0,0,0),{}),eye:i(s(1.25,1.25,1.25),{}),projection:{type:{valType:\"enumerated\",values:[\"perspective\",\"orthographic\"],dflt:\"perspective\",editType:\"calc\"},editType:\"calc\"},editType:\"camera\"},domain:a({name:\"scene\",editType:\"plot\"}),aspectmode:{valType:\"enumerated\",values:[\"auto\",\"cube\",\"data\",\"manual\"],dflt:\"auto\",editType:\"plot\",impliedEdits:{\"aspectratio.x\":void 0,\"aspectratio.y\":void 0,\"aspectratio.z\":void 0}},aspectratio:{x:{valType:\"number\",min:0,editType:\"plot\",impliedEdits:{\"^aspectmode\":\"manual\"}},y:{valType:\"number\",min:0,editType:\"plot\",impliedEdits:{\"^aspectmode\":\"manual\"}},z:{valType:\"number\",min:0,editType:\"plot\",impliedEdits:{\"^aspectmode\":\"manual\"}},editType:\"plot\",impliedEdits:{aspectmode:\"manual\"}},xaxis:n,yaxis:n,zaxis:n,dragmode:{valType:\"enumerated\",values:[\"orbit\",\"turntable\",\"zoom\",\"pan\",!1],editType:\"plot\"},hovermode:{valType:\"enumerated\",values:[\"closest\",!1],dflt:\"closest\",editType:\"modebar\"},uirevision:{valType:\"any\",editType:\"none\"},editType:\"plot\",_deprecated:{cameraposition:{valType:\"info_array\",editType:\"camera\"}}}},{\"../../../lib\":719,\"../../../lib/extend\":710,\"../../domain\":792,\"./axis_attributes\":809}],814:[function(t,e,r){\"use strict\";var n=t(\"../../../lib/str2rgbarray\"),a=[\"xaxis\",\"yaxis\",\"zaxis\"];function i(){this.enabled=[!0,!0,!0],this.colors=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.drawSides=[!0,!0,!0],this.lineWidth=[1,1,1]}i.prototype.merge=function(t){for(var e=0;e<3;++e){var r=t[a[e]];r.visible?(this.enabled[e]=r.showspikes,this.colors[e]=n(r.spikecolor),this.drawSides[e]=r.spikesides,this.lineWidth[e]=r.spikethickness):(this.enabled[e]=!1,this.drawSides[e]=!1)}},e.exports=function(t){var e=new i;return e.merge(t),e}},{\"../../../lib/str2rgbarray\":742}],815:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=t.axesOptions,r=t.glplot.axesPixels,s=t.fullSceneLayout,l=[[],[],[]],c=0;c<3;++c){var u=s[i[c]];if(u._length=(r[c].hi-r[c].lo)*r[c].pixelsPerDataUnit/t.dataScale[c],Math.abs(u._length)===1/0||isNaN(u._length))l[c]=[];else{u._input_range=u.range.slice(),u.range[0]=r[c].lo/t.dataScale[c],u.range[1]=r[c].hi/t.dataScale[c],u._m=1/(t.dataScale[c]*r[c].pixelsPerDataUnit),u.range[0]===u.range[1]&&(u.range[0]-=1,u.range[1]+=1);var h=u.tickmode;if(\"auto\"===u.tickmode){u.tickmode=\"linear\";var f=u.nticks||a.constrain(u._length/40,4,9);n.autoTicks(u,Math.abs(u.range[1]-u.range[0])/f)}for(var p=n.calcTicks(u),d=0;d<p.length;++d)p[d].x=p[d].x*t.dataScale[c],\"date\"===u.type&&(p[d].text=p[d].text.replace(/\\<br\\>/g,\" \"));l[c]=p,u.tickmode=h}}e.ticks=l;for(var c=0;c<3;++c){o[c]=.5*(t.glplot.bounds[0][c]+t.glplot.bounds[1][c]);for(var d=0;d<2;++d)e.bounds[d][c]=t.glplot.bounds[d][c]}t.contourLevels=function(t){for(var e=new Array(3),r=0;r<3;++r){for(var n=t[r],a=new Array(n.length),i=0;i<n.length;++i)a[i]=n[i].x;e[r]=a}return e}(l)};var n=t(\"../../cartesian/axes\"),a=t(\"../../../lib\"),i=[\"xaxis\",\"yaxis\",\"zaxis\"],o=[0,0,0]},{\"../../../lib\":719,\"../../cartesian/axes\":767}],816:[function(t,e,r){\"use strict\";function n(t,e){var r,n,a=[0,0,0,0];for(r=0;r<4;++r)for(n=0;n<4;++n)a[n]+=t[4*r+n]*e[r];return a}e.exports=function(t,e){return n(t.projection,n(t.view,n(t.model,[e[0],e[1],e[2],1])))}},{}],817:[function(t,e,r){\"use strict\";var n,a,i=t(\"gl-plot3d\").createCamera,o=t(\"gl-plot3d\").createScene,s=t(\"webgl-context\"),l=t(\"has-passive-events\"),c=t(\"../../registry\"),u=t(\"../../lib\"),h=t(\"../../plots/cartesian/axes\"),f=t(\"../../components/fx\"),p=t(\"../../lib/str2rgbarray\"),d=t(\"../../lib/show_no_webgl_msg\"),g=t(\"./project\"),v=t(\"./layout/convert\"),m=t(\"./layout/spikes\"),y=t(\"./layout/tick_marks\");function x(t,e,r,i){if(t.initializeGLCamera(),!function(t,e,r,i,l){var c={canvas:i,gl:l,container:t.container,axes:t.axesOptions,spikes:t.spikeOptions,pickRadius:10,snapToData:!0,autoScale:!0,autoBounds:!1,cameraObject:e,pixelRatio:r};if(t.staticMode){if(!(a||(n=document.createElement(\"canvas\"),a=s({canvas:n,preserveDrawingBuffer:!0,premultipliedAlpha:!0,antialias:!0}))))throw new Error(\"error creating static canvas/context for image server\");c.pixelRatio=t.pixelRatio,c.gl=a,c.canvas=n}var u=0;try{t.glplot=o(c)}catch(e){u++;try{t.glplot=o(c)}catch(t){u++}}return u<2}(t,t.camera,e,r,i))return d(t);var c=t.graphDiv,p=function(t){if(!1!==t.fullSceneLayout.dragmode){var e={};e[t.id+\".camera\"]=T(t.camera),t.saveCamera(c.layout),t.graphDiv.emit(\"plotly_relayout\",e)}};return t.glplot.canvas.addEventListener(\"mouseup\",function(){p(t)}),t.glplot.canvas.addEventListener(\"wheel\",function(){c._context._scrollZoom.gl3d&&p(t)},!!l&&{passive:!1}),t.glplot.canvas.addEventListener(\"mousemove\",function(){if(!1!==t.fullSceneLayout.dragmode&&0!==t.camera.mouseListener.buttons){var e={};e[t.id+\".camera\"]=T(t.camera),t.graphDiv.emit(\"plotly_relayouting\",e)}}),t.staticMode||t.glplot.canvas.addEventListener(\"webglcontextlost\",function(e){c&&c.emit&&c.emit(\"plotly_webglcontextlost\",{event:e,layer:t.id})},!1),t.glplot.camera=t.camera,t.glplot.oncontextloss=function(){t.recoverContext()},t.glplot.onrender=function(t){var e,r=t.graphDiv,n=t.svgContainer,a=t.container.getBoundingClientRect(),i=a.width,o=a.height;n.setAttributeNS(null,\"viewBox\",\"0 0 \"+i+\" \"+o),n.setAttributeNS(null,\"width\",i),n.setAttributeNS(null,\"height\",o),y(t),t.glplot.axes.update(t.axesOptions);for(var s,l=Object.keys(t.traces),c=null,p=t.glplot.selection,d=0;d<l.length;++d)\"skip\"!==(e=t.traces[l[d]]).data.hoverinfo&&e.handlePick(p)&&(c=e),e.setContourLevels&&e.setContourLevels();function v(e,r){var n=t.fullSceneLayout[e];return h.tickText(n,n.d2l(r),\"hover\").text}if(null!==c){var m=g(t.glplot.cameraParams,p.dataCoordinate);e=c.data;var x,b=r._fullData[e.index],_=p.index,w={xLabel:v(\"xaxis\",p.traceCoordinate[0]),yLabel:v(\"yaxis\",p.traceCoordinate[1]),zLabel:v(\"zaxis\",p.traceCoordinate[2])},k=f.castHoverinfo(b,t.fullLayout,_),T=(k||\"\").split(\"+\"),A=k&&\"all\"===k;b.hovertemplate||A||(-1===T.indexOf(\"x\")&&(w.xLabel=void 0),-1===T.indexOf(\"y\")&&(w.yLabel=void 0),-1===T.indexOf(\"z\")&&(w.zLabel=void 0),-1===T.indexOf(\"text\")&&(p.textLabel=void 0),-1===T.indexOf(\"name\")&&(c.name=void 0));var M=[];\"cone\"===e.type||\"streamtube\"===e.type?(w.uLabel=v(\"xaxis\",p.traceCoordinate[3]),(A||-1!==T.indexOf(\"u\"))&&M.push(\"u: \"+w.uLabel),w.vLabel=v(\"yaxis\",p.traceCoordinate[4]),(A||-1!==T.indexOf(\"v\"))&&M.push(\"v: \"+w.vLabel),w.wLabel=v(\"zaxis\",p.traceCoordinate[5]),(A||-1!==T.indexOf(\"w\"))&&M.push(\"w: \"+w.wLabel),w.normLabel=p.traceCoordinate[6].toPrecision(3),(A||-1!==T.indexOf(\"norm\"))&&M.push(\"norm: \"+w.normLabel),\"streamtube\"===e.type&&(w.divergenceLabel=p.traceCoordinate[7].toPrecision(3),(A||-1!==T.indexOf(\"divergence\"))&&M.push(\"divergence: \"+w.divergenceLabel)),p.textLabel&&M.push(p.textLabel),x=M.join(\"<br>\")):\"isosurface\"===e.type||\"volume\"===e.type?(w.valueLabel=h.tickText(t.mockAxis,t.mockAxis.d2l(p.traceCoordinate[3]),\"hover\").text,M.push(\"value: \"+w.valueLabel),p.textLabel&&M.push(p.textLabel),x=M.join(\"<br>\")):x=p.textLabel;var S={x:p.traceCoordinate[0],y:p.traceCoordinate[1],z:p.traceCoordinate[2],data:b._input,fullData:b,curveNumber:b.index,pointNumber:_};f.appendArrayPointValue(S,b,_),e._module.eventData&&(S=b._module.eventData(S,p,b,{},_));var E={points:[S]};t.fullSceneLayout.hovermode&&f.loneHover({trace:b,x:(.5+.5*m[0]/m[3])*i,y:(.5-.5*m[1]/m[3])*o,xLabel:w.xLabel,yLabel:w.yLabel,zLabel:w.zLabel,text:x,name:c.name,color:f.castHoverOption(b,_,\"bgcolor\")||c.color,borderColor:f.castHoverOption(b,_,\"bordercolor\"),fontFamily:f.castHoverOption(b,_,\"font.family\"),fontSize:f.castHoverOption(b,_,\"font.size\"),fontColor:f.castHoverOption(b,_,\"font.color\"),nameLength:f.castHoverOption(b,_,\"namelength\"),textAlign:f.castHoverOption(b,_,\"align\"),hovertemplate:u.castOption(b,_,\"hovertemplate\"),hovertemplateLabels:u.extendFlat({},S,w),eventData:[S]},{container:n,gd:r}),p.buttons&&p.distance<5?r.emit(\"plotly_click\",E):r.emit(\"plotly_hover\",E),s=E}else f.loneUnhover(n),r.emit(\"plotly_unhover\",s);t.drawAnnotations(t)}.bind(null,t),t.traces={},t.make4thDimension(),!0}function b(t,e){var r=document.createElement(\"div\"),n=t.container;this.graphDiv=t.graphDiv;var a=document.createElementNS(\"http://www.w3.org/2000/svg\",\"svg\");a.style.position=\"absolute\",a.style.top=a.style.left=\"0px\",a.style.width=a.style.height=\"100%\",a.style[\"z-index\"]=20,a.style[\"pointer-events\"]=\"none\",r.appendChild(a),this.svgContainer=a,r.id=t.id,r.style.position=\"absolute\",r.style.top=r.style.left=\"0px\",r.style.width=r.style.height=\"100%\",n.appendChild(r),this.fullLayout=e,this.id=t.id||\"scene\",this.fullSceneLayout=e[this.id],this.plotArgs=[[],{},{}],this.axesOptions=v(e,e[this.id]),this.spikeOptions=m(e[this.id]),this.container=r,this.staticMode=!!t.staticPlot,this.pixelRatio=this.pixelRatio||t.plotGlPixelRatio||2,this.dataScale=[1,1,1],this.contourLevels=[[],[],[]],this.convertAnnotations=c.getComponentMethod(\"annotations3d\",\"convert\"),this.drawAnnotations=c.getComponentMethod(\"annotations3d\",\"draw\"),x(this,this.pixelRatio)}var _=b.prototype;_.initializeGLCamera=function(){var t=this.fullSceneLayout.camera,e=\"orthographic\"===t.projection.type;this.camera=i(this.container,{center:[t.center.x,t.center.y,t.center.z],eye:[t.eye.x,t.eye.y,t.eye.z],up:[t.up.x,t.up.y,t.up.z],_ortho:e,zoomMin:.01,zoomMax:100,mode:\"orbit\"})},_.recoverContext=function(){var t=this,e=this.glplot.gl,r=this.glplot.canvas,n=this.glplot.camera,a=this.glplot.pixelRatio;this.glplot.dispose(),requestAnimationFrame(function i(){e.isContextLost()?requestAnimationFrame(i):x(t,n,a,r)?t.plot.apply(t,t.plotArgs):u.error(\"Catastrophic and unrecoverable WebGL error. Context lost.\")})};var w=[\"xaxis\",\"yaxis\",\"zaxis\"];function k(t,e,r){for(var n=t.fullSceneLayout,a=0;a<3;a++){var i=w[a],o=i.charAt(0),s=n[i],l=e[o],c=e[o+\"calendar\"],h=e[\"_\"+o+\"length\"];if(u.isArrayOrTypedArray(l))for(var f,p=0;p<(h||l.length);p++)if(u.isArrayOrTypedArray(l[p]))for(var d=0;d<l[p].length;++d)f=s.d2l(l[p][d],0,c),!isNaN(f)&&isFinite(f)&&(r[0][a]=Math.min(r[0][a],f),r[1][a]=Math.max(r[1][a],f));else f=s.d2l(l[p],0,c),!isNaN(f)&&isFinite(f)&&(r[0][a]=Math.min(r[0][a],f),r[1][a]=Math.max(r[1][a],f));else r[0][a]=Math.min(r[0][a],0),r[1][a]=Math.max(r[1][a],h-1)}}function T(t){return{up:{x:t.up[0],y:t.up[1],z:t.up[2]},center:{x:t.center[0],y:t.center[1],z:t.center[2]},eye:{x:t.eye[0],y:t.eye[1],z:t.eye[2]},projection:{type:!0===t._ortho?\"orthographic\":\"perspective\"}}}_.plot=function(t,e,r){if(this.plotArgs=[t,e,r],!this.glplot.contextLost){var n,a,i,o,s,l,c=e[this.id],u=r[this.id];c.bgcolor?this.glplot.clearColor=p(c.bgcolor):this.glplot.clearColor=[0,0,0,0],this.glplot.snapToData=!0,this.fullLayout=e,this.fullSceneLayout=c,this.glplotLayout=c,this.axesOptions.merge(e,c),this.spikeOptions.merge(c),this.setCamera(c.camera),this.updateFx(c.dragmode,c.hovermode),this.camera.enableWheel=this.graphDiv._context._scrollZoom.gl3d,this.glplot.update({}),this.setConvert(s),t?Array.isArray(t)||(t=[t]):t=[];var h=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]];for(i=0;i<t.length;++i)!0===(n=t[i]).visible&&0!==n._length&&k(this,n,h);!function(t,e){for(var r=t.fullSceneLayout,n=r.annotations||[],a=0;a<3;a++)for(var i=w[a],o=i.charAt(0),s=r[i],l=0;l<n.length;l++){var c=n[l];if(c.visible){var u=s.r2l(c[o]);!isNaN(u)&&isFinite(u)&&(e[0][a]=Math.min(e[0][a],u),e[1][a]=Math.max(e[1][a],u))}}}(this,h);var f=[1,1,1];for(o=0;o<3;++o)h[1][o]===h[0][o]?f[o]=1:f[o]=1/(h[1][o]-h[0][o]);for(this.dataScale=f,this.convertAnnotations(this),i=0;i<t.length;++i)!0===(n=t[i]).visible&&0!==n._length&&((a=this.traces[n.uid])?a.data.type===n.type?a.update(n):(a.dispose(),a=n._module.plot(this,n),this.traces[n.uid]=a):(a=n._module.plot(this,n),this.traces[n.uid]=a),a.name=n.name);var d=Object.keys(this.traces);t:for(i=0;i<d.length;++i){for(o=0;o<t.length;++o)if(t[o].uid===d[i]&&!0===t[o].visible&&0!==t[o]._length)continue t;(a=this.traces[d[i]]).dispose(),delete this.traces[d[i]]}this.glplot.objects.sort(function(t,e){return t._trace.data.index-e._trace.data.index});var g=[[0,0,0],[0,0,0]],v=[],m={};for(i=0;i<3;++i){if((l=(s=c[w[i]]).type)in m?(m[l].acc*=f[i],m[l].count+=1):m[l]={acc:f[i],count:1},s.autorange){g[0][i]=1/0,g[1][i]=-1/0;var y=this.glplot.objects,x=this.fullSceneLayout.annotations||[],b=s._name.charAt(0);for(o=0;o<y.length;o++){var _=y[o],T=_.bounds,A=_._trace.data._pad||0;\"ErrorBars\"===_.constructor.name&&s._lowerLogErrorBound?g[0][i]=Math.min(g[0][i],s._lowerLogErrorBound):g[0][i]=Math.min(g[0][i],T[0][i]/f[i]-A),g[1][i]=Math.max(g[1][i],T[1][i]/f[i]+A)}for(o=0;o<x.length;o++){var M=x[o];if(M.visible){var S=s.r2l(M[b]);g[0][i]=Math.min(g[0][i],S),g[1][i]=Math.max(g[1][i],S)}}if(\"rangemode\"in s&&\"tozero\"===s.rangemode&&(g[0][i]=Math.min(g[0][i],0),g[1][i]=Math.max(g[1][i],0)),g[0][i]>g[1][i])g[0][i]=-1,g[1][i]=1;else{var E=g[1][i]-g[0][i];g[0][i]-=E/32,g[1][i]+=E/32}if(\"reversed\"===s.autorange){var C=g[0][i];g[0][i]=g[1][i],g[1][i]=C}}else{var L=s.range;g[0][i]=s.r2l(L[0]),g[1][i]=s.r2l(L[1])}g[0][i]===g[1][i]&&(g[0][i]-=1,g[1][i]+=1),v[i]=g[1][i]-g[0][i],this.glplot.bounds[0][i]=g[0][i]*f[i],this.glplot.bounds[1][i]=g[1][i]*f[i]}var P=[1,1,1];for(i=0;i<3;++i){var O=m[l=(s=c[w[i]]).type];P[i]=Math.pow(O.acc,1/O.count)/f[i]}var I;if(\"auto\"===c.aspectmode)I=Math.max.apply(null,P)/Math.min.apply(null,P)<=4?P:[1,1,1];else if(\"cube\"===c.aspectmode)I=[1,1,1];else if(\"data\"===c.aspectmode)I=P;else{if(\"manual\"!==c.aspectmode)throw new Error(\"scene.js aspectRatio was not one of the enumerated types\");var z=c.aspectratio;I=[z.x,z.y,z.z]}c.aspectratio.x=u.aspectratio.x=I[0],c.aspectratio.y=u.aspectratio.y=I[1],c.aspectratio.z=u.aspectratio.z=I[2],this.glplot.aspect=I;var D=c.domain||null,R=e._size||null;if(D&&R){var F=this.container.style;F.position=\"absolute\",F.left=R.l+D.x[0]*R.w+\"px\",F.top=R.t+(1-D.y[1])*R.h+\"px\",F.width=R.w*(D.x[1]-D.x[0])+\"px\",F.height=R.h*(D.y[1]-D.y[0])+\"px\"}this.glplot.redraw()}},_.destroy=function(){this.glplot&&(this.camera.mouseListener.enabled=!1,this.container.removeEventListener(\"wheel\",this.camera.wheelListener),this.camera=this.glplot.camera=null,this.glplot.dispose(),this.container.parentNode.removeChild(this.container),this.glplot=null)},_.getCamera=function(){return this.glplot.camera.view.recalcMatrix(this.camera.view.lastT()),T(this.glplot.camera)},_.setCamera=function(t){var e;this.glplot.camera.lookAt.apply(this,[[(e=t).eye.x,e.eye.y,e.eye.z],[e.center.x,e.center.y,e.center.z],[e.up.x,e.up.y,e.up.z]]);var r=\"orthographic\"===t.projection.type;if(r!==this.glplot.camera._ortho){this.glplot.redraw();var n=this.glplot.pixelRatio,a=this.glplot.clearColor;this.glplot.gl.clearColor(a[0],a[1],a[2],a[3]),this.glplot.gl.clear(this.glplot.gl.DEPTH_BUFFER_BIT|this.glplot.gl.COLOR_BUFFER_BIT),this.glplot.dispose(),x(this,n),this.glplot.camera._ortho=r}},_.saveCamera=function(t){var e=this.fullLayout,r=this.getCamera(),n=u.nestedProperty(t,this.id+\".camera\"),a=n.get(),i=!1;function o(t,e,r,n){var a=[\"up\",\"center\",\"eye\"],i=[\"x\",\"y\",\"z\"];return e[a[r]]&&t[a[r]][i[n]]===e[a[r]][i[n]]}if(void 0===a)i=!0;else{for(var s=0;s<3;s++)for(var l=0;l<3;l++)if(!o(r,a,s,l)){i=!0;break}(!a.projection||r.projection&&r.projection.type!==a.projection.type)&&(i=!0)}if(i){var h={};h[this.id+\".camera\"]=a,c.call(\"_storeDirectGUIEdit\",t,e._preGUI,h),n.set(r),u.nestedProperty(e,this.id+\".camera\").set(r)}return i},_.updateFx=function(t,e){var r=this.camera;if(r)if(\"orbit\"===t)r.mode=\"orbit\",r.keyBindingMode=\"rotate\";else if(\"turntable\"===t){r.up=[0,0,1],r.mode=\"turntable\",r.keyBindingMode=\"rotate\";var n=this.graphDiv,a=n._fullLayout,i=this.fullSceneLayout.camera,o=i.up.x,s=i.up.y,l=i.up.z;if(l/Math.sqrt(o*o+s*s+l*l)<.999){var h=this.id+\".camera.up\",f={x:0,y:0,z:1},p={};p[h]=f;var d=n.layout;c.call(\"_storeDirectGUIEdit\",d,a._preGUI,p),i.up=f,u.nestedProperty(d,h).set(f)}}else r.keyBindingMode=t;this.fullSceneLayout.hovermode=e},_.toImage=function(t){t||(t=\"png\"),this.staticMode&&this.container.appendChild(n),this.glplot.redraw();var e=this.glplot.gl,r=e.drawingBufferWidth,a=e.drawingBufferHeight;e.bindFramebuffer(e.FRAMEBUFFER,null);var i=new Uint8Array(r*a*4);e.readPixels(0,0,r,a,e.RGBA,e.UNSIGNED_BYTE,i);for(var o=0,s=a-1;o<s;++o,--s)for(var l=0;l<r;++l)for(var c=0;c<4;++c){var u=i[4*(r*o+l)+c];i[4*(r*o+l)+c]=i[4*(r*s+l)+c],i[4*(r*s+l)+c]=u}var h=document.createElement(\"canvas\");h.width=r,h.height=a;var f,p=h.getContext(\"2d\"),d=p.createImageData(r,a);switch(d.data.set(i),p.putImageData(d,0,0),t){case\"jpeg\":f=h.toDataURL(\"image/jpeg\");break;case\"webp\":f=h.toDataURL(\"image/webp\");break;default:f=h.toDataURL(\"image/png\")}return this.staticMode&&this.container.removeChild(n),f},_.setConvert=function(){for(var t=0;t<3;t++){var e=this.fullSceneLayout[w[t]];h.setConvert(e,this.fullLayout),e.setScale=u.noop}},_.make4thDimension=function(){var t=this.graphDiv._fullLayout;this.mockAxis={type:\"linear\",showexponent:\"all\",exponentformat:\"B\"},h.setConvert(this.mockAxis,t)},e.exports=b},{\"../../components/fx\":632,\"../../lib\":719,\"../../lib/show_no_webgl_msg\":740,\"../../lib/str2rgbarray\":742,\"../../plots/cartesian/axes\":767,\"../../registry\":848,\"./layout/convert\":811,\"./layout/spikes\":814,\"./layout/tick_marks\":815,\"./project\":816,\"gl-plot3d\":291,\"has-passive-events\":412,\"webgl-context\":557}],818:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n){n=n||t.length;for(var a=new Array(n),i=0;i<n;i++)a[i]=[t[i],e[i],r[i]];return a}},{}],819:[function(t,e,r){\"use strict\";var n=t(\"./font_attributes\"),a=t(\"./animation_attributes\"),i=t(\"../components/color/attributes\"),o=t(\"./pad_attributes\"),s=t(\"../lib/extend\").extendFlat,l=n({editType:\"calc\"});l.family.dflt='\"Open Sans\", verdana, arial, sans-serif',l.size.dflt=12,l.color.dflt=i.defaultLine,e.exports={font:l,title:{text:{valType:\"string\",editType:\"layoutstyle\"},font:n({editType:\"layoutstyle\"}),xref:{valType:\"enumerated\",dflt:\"container\",values:[\"container\",\"paper\"],editType:\"layoutstyle\"},yref:{valType:\"enumerated\",dflt:\"container\",values:[\"container\",\"paper\"],editType:\"layoutstyle\"},x:{valType:\"number\",min:0,max:1,dflt:.5,editType:\"layoutstyle\"},y:{valType:\"number\",min:0,max:1,dflt:\"auto\",editType:\"layoutstyle\"},xanchor:{valType:\"enumerated\",dflt:\"auto\",values:[\"auto\",\"left\",\"center\",\"right\"],editType:\"layoutstyle\"},yanchor:{valType:\"enumerated\",dflt:\"auto\",values:[\"auto\",\"top\",\"middle\",\"bottom\"],editType:\"layoutstyle\"},pad:s(o({editType:\"layoutstyle\"}),{}),editType:\"layoutstyle\"},autosize:{valType:\"boolean\",dflt:!1,editType:\"none\"},width:{valType:\"number\",min:10,dflt:700,editType:\"plot\"},height:{valType:\"number\",min:10,dflt:450,editType:\"plot\"},margin:{l:{valType:\"number\",min:0,dflt:80,editType:\"plot\"},r:{valType:\"number\",min:0,dflt:80,editType:\"plot\"},t:{valType:\"number\",min:0,dflt:100,editType:\"plot\"},b:{valType:\"number\",min:0,dflt:80,editType:\"plot\"},pad:{valType:\"number\",min:0,dflt:0,editType:\"plot\"},autoexpand:{valType:\"boolean\",dflt:!0,editType:\"plot\"},editType:\"plot\"},paper_bgcolor:{valType:\"color\",dflt:i.background,editType:\"plot\"},plot_bgcolor:{valType:\"color\",dflt:i.background,editType:\"layoutstyle\"},separators:{valType:\"string\",editType:\"plot\"},hidesources:{valType:\"boolean\",dflt:!1,editType:\"plot\"},showlegend:{valType:\"boolean\",editType:\"legend\"},colorway:{valType:\"colorlist\",dflt:i.defaults,editType:\"calc\"},datarevision:{valType:\"any\",editType:\"calc\"},uirevision:{valType:\"any\",editType:\"none\"},editrevision:{valType:\"any\",editType:\"none\"},selectionrevision:{valType:\"any\",editType:\"none\"},template:{valType:\"any\",editType:\"calc\"},modebar:{orientation:{valType:\"enumerated\",values:[\"v\",\"h\"],dflt:\"h\",editType:\"modebar\"},bgcolor:{valType:\"color\",editType:\"modebar\"},color:{valType:\"color\",editType:\"modebar\"},activecolor:{valType:\"color\",editType:\"modebar\"},uirevision:{valType:\"any\",editType:\"none\"},editType:\"modebar\"},meta:{valType:\"any\",arrayOk:!0,editType:\"plot\"},transition:s({},a.transition,{editType:\"none\"}),_deprecated:{title:{valType:\"string\",editType:\"layoutstyle\"},titlefont:n({editType:\"layoutstyle\"})}}},{\"../components/color/attributes\":593,\"../lib/extend\":710,\"./animation_attributes\":762,\"./font_attributes\":793,\"./pad_attributes\":827}],820:[function(t,e,r){\"use strict\";var n={\"open-street-map\":{id:\"osm\",version:8,sources:{\"plotly-osm-tiles\":{type:\"raster\",attribution:'<a href=\"http://www.openstreetmap.org/about/\" target=\"_blank\">\\xa9 OpenStreetMap</a>',tiles:[\"https://a.tile.openstreetmap.org/{z}/{x}/{y}.png\",\"https://b.tile.openstreetmap.org/{z}/{x}/{y}.png\"],tileSize:256}},layers:[{id:\"plotly-osm-tiles\",type:\"raster\",source:\"plotly-osm-tiles\",minzoom:0,maxzoom:22}]},\"white-bg\":{id:\"white-bg\",version:8,sources:{},layers:[{id:\"white-bg\",type:\"background\",paint:{\"background-color\":\"#FFFFFF\"},minzoom:0,maxzoom:22}]},\"carto-positron\":{id:\"carto-positron\",version:8,sources:{\"plotly-carto-positron\":{type:\"raster\",attribution:'<a href=\"https://carto.com/\" target=\"_blank\">\\xa9 CARTO</a>',tiles:[\"https://cartodb-basemaps-c.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png\"],tileSize:256}},layers:[{id:\"plotly-carto-positron\",type:\"raster\",source:\"plotly-carto-positron\",minzoom:0,maxzoom:22}]},\"carto-darkmatter\":{id:\"carto-darkmatter\",version:8,sources:{\"plotly-carto-darkmatter\":{type:\"raster\",attribution:'<a href=\"https://carto.com/\" target=\"_blank\">\\xa9 CARTO</a>',tiles:[\"https://cartodb-basemaps-c.global.ssl.fastly.net/dark_all/{z}/{x}/{y}.png\"],tileSize:256}},layers:[{id:\"plotly-carto-darkmatter\",type:\"raster\",source:\"plotly-carto-darkmatter\",minzoom:0,maxzoom:22}]},\"stamen-terrain\":{id:\"stamen-terrain\",version:8,sources:{\"plotly-stamen-terrain\":{type:\"raster\",attribution:'Map tiles by <a href=\"http://stamen.com\">Stamen Design</a>, under <a href=\"http://creativecommons.org/licenses/by/3.0\">CC BY 3.0</a> | Data by <a href=\"http://openstreetmap.org\">OpenStreetMap</a>, under <a href=\"http://www.openstreetmap.org/copyright\">ODbL</a>.',tiles:[\"https://stamen-tiles.a.ssl.fastly.net/terrain/{z}/{x}/{y}.png\"],tileSize:256}},layers:[{id:\"plotly-stamen-terrain\",type:\"raster\",source:\"plotly-stamen-terrain\",minzoom:0,maxzoom:22}]},\"stamen-toner\":{id:\"stamen-toner\",version:8,sources:{\"plotly-stamen-toner\":{type:\"raster\",attribution:'Map tiles by <a href=\"http://stamen.com\">Stamen Design</a>, under <a href=\"http://creativecommons.org/licenses/by/3.0\">CC BY 3.0</a> | Data by <a href=\"http://openstreetmap.org\">OpenStreetMap</a>, under <a href=\"http://www.openstreetmap.org/copyright\">ODbL</a>.',tiles:[\"https://stamen-tiles.a.ssl.fastly.net/toner/{z}/{x}/{y}.png\"],tileSize:256}},layers:[{id:\"plotly-stamen-toner\",type:\"raster\",source:\"plotly-stamen-toner\",minzoom:0,maxzoom:22}]},\"stamen-watercolor\":{id:\"stamen-watercolor\",version:8,sources:{\"plotly-stamen-watercolor\":{type:\"raster\",attribution:'Map tiles by <a href=\"http://stamen.com\">Stamen Design</a>, under <a href=\"http://creativecommons.org/licenses/by/3.0\">CC BY 3.0</a> | Data by <a href=\"http://openstreetmap.org\">OpenStreetMap</a>, under <a href=\"http://creativecommons.org/licenses/by-sa/3.0\">CC BY SA</a>.',tiles:[\"https://stamen-tiles.a.ssl.fastly.net/watercolor/{z}/{x}/{y}.png\"],tileSize:256}},layers:[{id:\"plotly-stamen-watercolor\",type:\"raster\",source:\"plotly-stamen-watercolor\",minzoom:0,maxzoom:22}]}},a=Object.keys(n);e.exports={requiredVersion:\"1.3.2\",styleUrlPrefix:\"mapbox://styles/mapbox/\",styleUrlSuffix:\"v9\",styleValuesMapbox:[\"basic\",\"streets\",\"outdoors\",\"light\",\"dark\",\"satellite\",\"satellite-streets\"],styleValueDflt:\"basic\",stylesNonMapbox:n,styleValuesNonMapbox:a,traceLayerPrefix:\"plotly-trace-layer-\",layoutLayerPrefix:\"plotly-layout-layer-\",wrongVersionErrorMsg:[\"Your custom plotly.js bundle is not using the correct mapbox-gl version\",\"Please install mapbox-gl@1.3.2.\"].join(\"\\n\"),noAccessTokenErrorMsg:[\"Missing Mapbox access token.\",\"Mapbox trace type require a Mapbox access token to be registered.\",\"For example:\",\"  Plotly.plot(gd, data, layout, { mapboxAccessToken: 'my-access-token' });\",\"More info here: https://www.mapbox.com/help/define-access-token/\"].join(\"\\n\"),missingStyleErrorMsg:[\"No valid mapbox style found, please set `mapbox.style` to one of:\",a.join(\", \"),\"or register a Mapbox access token to use a Mapbox-served style.\"].join(\"\\n\"),multipleTokensErrorMsg:[\"Set multiple mapbox access token across different mapbox subplot,\",\"using first token found as mapbox-gl does not allow multipleaccess tokens on the same page.\"].join(\"\\n\"),mapOnErrorMsg:\"Mapbox error.\",mapboxLogo:{path0:\"m 10.5,1.24 c -5.11,0 -9.25,4.15 -9.25,9.25 0,5.1 4.15,9.25 9.25,9.25 5.1,0 9.25,-4.15 9.25,-9.25 0,-5.11 -4.14,-9.25 -9.25,-9.25 z m 4.39,11.53 c -1.93,1.93 -4.78,2.31 -6.7,2.31 -0.7,0 -1.41,-0.05 -2.1,-0.16 0,0 -1.02,-5.64 2.14,-8.81 0.83,-0.83 1.95,-1.28 3.13,-1.28 1.27,0 2.49,0.51 3.39,1.42 1.84,1.84 1.89,4.75 0.14,6.52 z\",path1:\"M 10.5,-0.01 C 4.7,-0.01 0,4.7 0,10.49 c 0,5.79 4.7,10.5 10.5,10.5 5.8,0 10.5,-4.7 10.5,-10.5 C 20.99,4.7 16.3,-0.01 10.5,-0.01 Z m 0,19.75 c -5.11,0 -9.25,-4.15 -9.25,-9.25 0,-5.1 4.14,-9.26 9.25,-9.26 5.11,0 9.25,4.15 9.25,9.25 0,5.13 -4.14,9.26 -9.25,9.26 z\",path2:\"M 14.74,6.25 C 12.9,4.41 9.98,4.35 8.23,6.1 5.07,9.27 6.09,14.91 6.09,14.91 c 0,0 5.64,1.02 8.81,-2.14 C 16.64,11 16.59,8.09 14.74,6.25 Z m -2.27,4.09 -0.91,1.87 -0.9,-1.87 -1.86,-0.91 1.86,-0.9 0.9,-1.87 0.91,1.87 1.86,0.9 z\",polygon:\"11.56,12.21 10.66,10.34 8.8,9.43 10.66,8.53 11.56,6.66 12.47,8.53 14.33,9.43 12.47,10.34\"},styleRules:{map:\"overflow:hidden;position:relative;\",\"missing-css\":\"display:none;\",canary:\"background-color:salmon;\",\"ctrl-bottom-left\":\"position: absolute; pointer-events: none; z-index: 2; bottom: 0; left: 0;\",\"ctrl-bottom-right\":\"position: absolute; pointer-events: none; z-index: 2; right: 0; bottom: 0;\",ctrl:\"clear: both; pointer-events: auto; transform: translate(0, 0);\",\"ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-inner\":\"display: none;\",\"ctrl-attrib.mapboxgl-compact:hover .mapboxgl-ctrl-attrib-inner\":\"display: block; margin-top:2px\",\"ctrl-attrib.mapboxgl-compact:hover\":\"padding: 2px 24px 2px 4px; visibility: visible; margin-top: 6px;\",\"ctrl-attrib.mapboxgl-compact::after\":'content: \"\"; cursor: pointer; position: absolute; background-image: url(\\'data:image/svg+xml;charset=utf-8,%3Csvg viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"%3E %3Cpath fill=\"%23333333\" fill-rule=\"evenodd\" d=\"M4,10a6,6 0 1,0 12,0a6,6 0 1,0 -12,0 M9,7a1,1 0 1,0 2,0a1,1 0 1,0 -2,0 M9,10a1,1 0 1,1 2,0l0,3a1,1 0 1,1 -2,0\"/%3E %3C/svg%3E\\'); background-color: rgba(255, 255, 255, 0.5); width: 24px; height: 24px; box-sizing: border-box; border-radius: 12px;',\"ctrl-attrib.mapboxgl-compact\":\"min-height: 20px; padding: 0; margin: 10px; position: relative; background-color: #fff; border-radius: 3px 12px 12px 3px;\",\"ctrl-bottom-right > .mapboxgl-ctrl-attrib.mapboxgl-compact::after\":\"bottom: 0; right: 0\",\"ctrl-bottom-left > .mapboxgl-ctrl-attrib.mapboxgl-compact::after\":\"bottom: 0; left: 0\",\"ctrl-bottom-left .mapboxgl-ctrl\":\"margin: 0 0 10px 10px; float: left;\",\"ctrl-bottom-right .mapboxgl-ctrl\":\"margin: 0 10px 10px 0; float: right;\",\"ctrl-attrib\":\"color: rgba(0, 0, 0, 0.75); text-decoration: none; font-size: 12px\",\"ctrl-attrib a\":\"color: rgba(0, 0, 0, 0.75); text-decoration: none; font-size: 12px\",\"ctrl-attrib a:hover\":\"color: inherit; text-decoration: underline;\",\"ctrl-attrib .mapbox-improve-map\":\"font-weight: bold; margin-left: 2px;\",\"attrib-empty\":\"display: none;\",\"ctrl-logo\":'display:block; width: 21px; height: 21px; background-image: url(\\'data:image/svg+xml;charset=utf-8,%3C?xml version=\"1.0\" encoding=\"utf-8\"?%3E %3Csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 21 21\" style=\"enable-background:new 0 0 21 21;\" xml:space=\"preserve\"%3E%3Cg transform=\"translate(0,0.01)\"%3E%3Cpath d=\"m 10.5,1.24 c -5.11,0 -9.25,4.15 -9.25,9.25 0,5.1 4.15,9.25 9.25,9.25 5.1,0 9.25,-4.15 9.25,-9.25 0,-5.11 -4.14,-9.25 -9.25,-9.25 z m 4.39,11.53 c -1.93,1.93 -4.78,2.31 -6.7,2.31 -0.7,0 -1.41,-0.05 -2.1,-0.16 0,0 -1.02,-5.64 2.14,-8.81 0.83,-0.83 1.95,-1.28 3.13,-1.28 1.27,0 2.49,0.51 3.39,1.42 1.84,1.84 1.89,4.75 0.14,6.52 z\" style=\"opacity:0.9;fill:%23ffffff;enable-background:new\" class=\"st0\"/%3E%3Cpath d=\"M 10.5,-0.01 C 4.7,-0.01 0,4.7 0,10.49 c 0,5.79 4.7,10.5 10.5,10.5 5.8,0 10.5,-4.7 10.5,-10.5 C 20.99,4.7 16.3,-0.01 10.5,-0.01 Z m 0,19.75 c -5.11,0 -9.25,-4.15 -9.25,-9.25 0,-5.1 4.14,-9.26 9.25,-9.26 5.11,0 9.25,4.15 9.25,9.25 0,5.13 -4.14,9.26 -9.25,9.26 z\" style=\"opacity:0.35;enable-background:new\" class=\"st1\"/%3E%3Cpath d=\"M 14.74,6.25 C 12.9,4.41 9.98,4.35 8.23,6.1 5.07,9.27 6.09,14.91 6.09,14.91 c 0,0 5.64,1.02 8.81,-2.14 C 16.64,11 16.59,8.09 14.74,6.25 Z m -2.27,4.09 -0.91,1.87 -0.9,-1.87 -1.86,-0.91 1.86,-0.9 0.9,-1.87 0.91,1.87 1.86,0.9 z\" style=\"opacity:0.35;enable-background:new\" class=\"st1\"/%3E%3Cpolygon points=\"11.56,12.21 10.66,10.34 8.8,9.43 10.66,8.53 11.56,6.66 12.47,8.53 14.33,9.43 12.47,10.34 \" style=\"opacity:0.9;fill:%23ffffff;enable-background:new\" class=\"st0\"/%3E%3C/g%3E%3C/svg%3E\\')'}}},{}],821:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e){var r=t.split(\" \"),a=r[0],i=r[1],o=n.isArrayOrTypedArray(e)?n.mean(e):e,s=.5+o/100,l=1.5+o/100,c=[\"\",\"\"],u=[0,0];switch(a){case\"top\":c[0]=\"top\",u[1]=-l;break;case\"bottom\":c[0]=\"bottom\",u[1]=l}switch(i){case\"left\":c[1]=\"right\",u[0]=-s;break;case\"right\":c[1]=\"left\",u[0]=s}return{anchor:c[0]&&c[1]?c.join(\"-\"):c[0]?c[0]:c[1]?c[1]:\"center\",offset:u}}},{\"../../lib\":719}],822:[function(t,e,r){\"use strict\";var n=t(\"mapbox-gl\"),a=t(\"../../lib\"),i=t(\"../../plots/get_data\").getSubplotCalcData,o=t(\"../../constants/xmlns_namespaces\"),s=t(\"d3\"),l=t(\"../../components/drawing\"),c=t(\"../../lib/svg_text_utils\"),u=t(\"./mapbox\"),h=r.constants=t(\"./constants\");function f(t){return\"string\"==typeof t&&(-1!==h.styleValuesMapbox.indexOf(t)||0===t.indexOf(\"mapbox://\"))}r.name=\"mapbox\",r.attr=\"subplot\",r.idRoot=\"mapbox\",r.idRegex=r.attrRegex=a.counterRegex(\"mapbox\"),r.attributes={subplot:{valType:\"subplotid\",dflt:\"mapbox\",editType:\"calc\"}},r.layoutAttributes=t(\"./layout_attributes\"),r.supplyLayoutDefaults=t(\"./layout_defaults\"),r.plot=function(t){var e=t._fullLayout,r=t.calcdata,o=e._subplots.mapbox;if(n.version!==h.requiredVersion)throw new Error(h.wrongVersionErrorMsg);var s=function(t,e){var r=t._fullLayout;if(\"\"===t._context.mapboxAccessToken)return\"\";for(var n=[],i=[],o=!1,s=!1,l=0;l<e.length;l++){var c=r[e[l]],u=c.accesstoken;f(c.style)&&(u?a.pushUnique(n,u):(f(c._input.style)&&(a.error(\"Uses Mapbox map style, but did not set an access token.\"),o=!0),s=!0)),u&&a.pushUnique(i,u)}if(s){var p=o?h.noAccessTokenErrorMsg:h.missingStyleErrorMsg;throw new Error(p)}return n.length?(n.length>1&&a.warn(h.multipleTokensErrorMsg),n[0]):(i.length&&a.log([\"Listed mapbox access token(s)\",i.join(\",\"),\"but did not use a Mapbox map style, ignoring token(s).\"].join(\" \")),\"\")}(t,o);n.accessToken=s;for(var l=0;l<o.length;l++){var c=o[l],p=i(r,\"mapbox\",c),d=e[c],g=d._subplot;g||(g=new u(t,c),e[c]._subplot=g),g.viewInitial||(g.viewInitial={center:a.extendFlat({},d.center),zoom:d.zoom,bearing:d.bearing,pitch:d.pitch}),g.plot(p,e,t._promises)}},r.clean=function(t,e,r,n){for(var a=n._subplots.mapbox||[],i=0;i<a.length;i++){var o=a[i];!e[o]&&n[o]._subplot&&n[o]._subplot.destroy()}},r.toSVG=function(t){for(var e=t._fullLayout,r=e._subplots.mapbox,n=e._size,a=0;a<r.length;a++){var i=e[r[a]],u=i.domain,f=i._subplot.toImage(\"png\");e._glimages.append(\"svg:image\").attr({xmlns:o.svg,\"xlink:href\":f,x:n.l+n.w*u.x[0],y:n.t+n.h*(1-u.y[1]),width:n.w*(u.x[1]-u.x[0]),height:n.h*(u.y[1]-u.y[0]),preserveAspectRatio:\"none\"});var p=s.select(i._subplot.div);if(!(null===p.select(\".mapboxgl-ctrl-logo\").node().offsetParent)){var d=e._glimages.append(\"g\");d.attr(\"transform\",\"translate(\"+(n.l+n.w*u.x[0]+10)+\", \"+(n.t+n.h*(1-u.y[0])-31)+\")\"),d.append(\"path\").attr(\"d\",h.mapboxLogo.path0).style({opacity:.9,fill:\"#ffffff\",\"enable-background\":\"new\"}),d.append(\"path\").attr(\"d\",h.mapboxLogo.path1).style(\"opacity\",.35).style(\"enable-background\",\"new\"),d.append(\"path\").attr(\"d\",h.mapboxLogo.path2).style(\"opacity\",.35).style(\"enable-background\",\"new\"),d.append(\"polygon\").attr(\"points\",h.mapboxLogo.polygon).style({opacity:.9,fill:\"#ffffff\",\"enable-background\":\"new\"})}var g=p.select(\".mapboxgl-ctrl-attrib\").text().replace(\"Improve this map\",\"\"),v=e._glimages.append(\"g\"),m=v.append(\"text\");m.text(g).classed(\"static-attribution\",!0).attr({\"font-size\":12,\"font-family\":\"Arial\",color:\"rgba(0, 0, 0, 0.75)\",\"text-anchor\":\"end\",\"data-unformatted\":g});var y=l.bBox(m.node()),x=n.w*(u.x[1]-u.x[0]);if(y.width>x/2){var b=g.split(\"|\").join(\"<br>\");m.text(b).attr(\"data-unformatted\",b).call(c.convertToTspans,t),y=l.bBox(m.node())}m.attr(\"transform\",\"translate(-3, \"+(8-y.height)+\")\"),v.insert(\"rect\",\".static-attribution\").attr({x:-y.width-6,y:-y.height-3,width:y.width+6,height:y.height+3,fill:\"rgba(255, 255, 255, 0.75)\"});var _=1;y.width+6>x&&(_=x/(y.width+6));var w=[n.l+n.w*u.x[1],n.t+n.h*(1-u.y[0])];v.attr(\"transform\",\"translate(\"+w[0]+\",\"+w[1]+\") scale(\"+_+\")\")}},r.updateFx=function(t){for(var e=t._fullLayout,r=e._subplots.mapbox,n=0;n<r.length;n++){e[r[n]]._subplot.updateFx(e)}}},{\"../../components/drawing\":615,\"../../constants/xmlns_namespaces\":696,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../../plots/get_data\":802,\"./constants\":820,\"./layout_attributes\":824,\"./layout_defaults\":825,\"./mapbox\":826,d3:164,\"mapbox-gl\":427}],823:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./convert_text_opts\"),i=t(\"./constants\");function o(t,e){this.subplot=t,this.uid=t.uid+\"-\"+e,this.index=e,this.idSource=\"source-\"+this.uid,this.idLayer=i.layoutLayerPrefix+this.uid,this.sourceType=null,this.source=null,this.layerType=null,this.below=null,this.visible=!1}var s=o.prototype;function l(t){if(!t.visible)return!1;var e=t.source;if(Array.isArray(e)&&e.length>0){for(var r=0;r<e.length;r++)if(\"string\"!=typeof e[r]||0===e[r].length)return!1;return!0}return n.isPlainObject(e)||\"string\"==typeof e&&e.length>0}function c(t){var e={},r={};switch(t.type){case\"circle\":n.extendFlat(r,{\"circle-radius\":t.circle.radius,\"circle-color\":t.color,\"circle-opacity\":t.opacity});break;case\"line\":n.extendFlat(r,{\"line-width\":t.line.width,\"line-color\":t.color,\"line-opacity\":t.opacity,\"line-dasharray\":t.line.dash});break;case\"fill\":n.extendFlat(r,{\"fill-color\":t.color,\"fill-outline-color\":t.fill.outlinecolor,\"fill-opacity\":t.opacity});break;case\"symbol\":var i=t.symbol,o=a(i.textposition,i.iconsize);n.extendFlat(e,{\"icon-image\":i.icon+\"-15\",\"icon-size\":i.iconsize/10,\"text-field\":i.text,\"text-size\":i.textfont.size,\"text-anchor\":o.anchor,\"text-offset\":o.offset,\"symbol-placement\":i.placement}),n.extendFlat(r,{\"icon-color\":t.color,\"text-color\":i.textfont.color,\"text-opacity\":t.opacity})}return{layout:e,paint:r}}s.update=function(t){this.visible?this.needsNewSource(t)?(this.removeLayer(),this.updateSource(t),this.updateLayer(t)):this.needsNewLayer(t)?this.updateLayer(t):this.updateStyle(t):(this.updateSource(t),this.updateLayer(t)),this.visible=l(t)},s.needsNewSource=function(t){return this.sourceType!==t.sourcetype||this.source!==t.source||this.layerType!==t.type},s.needsNewLayer=function(t){return this.layerType!==t.type||this.below!==this.subplot.belowLookup[\"layout-\"+this.index]},s.updateSource=function(t){var e=this.subplot.map;if(e.getSource(this.idSource)&&e.removeSource(this.idSource),this.sourceType=t.sourcetype,this.source=t.source,l(t)){var r=function(t){var e,r=t.sourcetype,n=t.source,a={type:r};\"geojson\"===r?e=\"data\":\"vector\"===r?e=\"string\"==typeof n?\"url\":\"tiles\":\"raster\"===r?(e=\"tiles\",a.tileSize=256):\"image\"===r&&(e=\"url\",a.coordinates=t.coordinates);a[e]=n,t.sourceattribution&&(a.attribution=t.sourceattribution);return a}(t);e.addSource(this.idSource,r)}},s.updateLayer=function(t){var e,r=this.subplot,n=c(t),a=this.subplot.belowLookup[\"layout-\"+this.index];if(\"traces\"===a)for(var o=r.getMapLayers(),s=0;s<o.length;s++){var u=o[s].id;if(\"string\"==typeof u&&0===u.indexOf(i.traceLayerPrefix)){e=u;break}}else e=a;this.removeLayer(),l(t)&&r.addLayer({id:this.idLayer,source:this.idSource,\"source-layer\":t.sourcelayer||\"\",type:t.type,minzoom:t.minzoom,maxzoom:t.maxzoom,layout:n.layout,paint:n.paint},e),this.layerType=t.type,this.below=a},s.updateStyle=function(t){if(l(t)){var e=c(t);this.subplot.setOptions(this.idLayer,\"setLayoutProperty\",e.layout),this.subplot.setOptions(this.idLayer,\"setPaintProperty\",e.paint)}},s.removeLayer=function(){var t=this.subplot.map;t.getLayer(this.idLayer)&&t.removeLayer(this.idLayer)},s.dispose=function(){var t=this.subplot.map;t.getLayer(this.idLayer)&&t.removeLayer(this.idLayer),t.getSource(this.idSource)&&t.removeSource(this.idSource)},e.exports=function(t,e,r){var n=new o(t,e);return n.update(r),n}},{\"../../lib\":719,\"./constants\":820,\"./convert_text_opts\":821}],824:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/color\").defaultLine,i=t(\"../domain\").attributes,o=t(\"../font_attributes\"),s=t(\"../../traces/scatter/attributes\").textposition,l=t(\"../../plot_api/edit_types\").overrideAll,c=t(\"../../plot_api/plot_template\").templatedArray,u=t(\"./constants\"),h=o({});h.family.dflt=\"Open Sans Regular, Arial Unicode MS Regular\",(e.exports=l({_arrayAttrRegexps:[n.counterRegex(\"mapbox\",\".layers\",!0)],domain:i({name:\"mapbox\"}),accesstoken:{valType:\"string\",noBlank:!0,strict:!0},style:{valType:\"any\",values:u.styleValuesMapbox.concat(u.styleValuesNonMapbox),dflt:u.styleValueDflt},center:{lon:{valType:\"number\",dflt:0},lat:{valType:\"number\",dflt:0}},zoom:{valType:\"number\",dflt:1},bearing:{valType:\"number\",dflt:0},pitch:{valType:\"number\",dflt:0},layers:c(\"layer\",{visible:{valType:\"boolean\",dflt:!0},sourcetype:{valType:\"enumerated\",values:[\"geojson\",\"vector\",\"raster\",\"image\"],dflt:\"geojson\"},source:{valType:\"any\"},sourcelayer:{valType:\"string\",dflt:\"\"},sourceattribution:{valType:\"string\"},type:{valType:\"enumerated\",values:[\"circle\",\"line\",\"fill\",\"symbol\",\"raster\"],dflt:\"circle\"},coordinates:{valType:\"any\"},below:{valType:\"string\"},color:{valType:\"color\",dflt:a},opacity:{valType:\"number\",min:0,max:1,dflt:1},minzoom:{valType:\"number\",min:0,max:24,dflt:0},maxzoom:{valType:\"number\",min:0,max:24,dflt:24},circle:{radius:{valType:\"number\",dflt:15}},line:{width:{valType:\"number\",dflt:2},dash:{valType:\"data_array\"}},fill:{outlinecolor:{valType:\"color\",dflt:a}},symbol:{icon:{valType:\"string\",dflt:\"marker\"},iconsize:{valType:\"number\",dflt:10},text:{valType:\"string\",dflt:\"\"},placement:{valType:\"enumerated\",values:[\"point\",\"line\",\"line-center\"],dflt:\"point\"},textfont:h,textposition:n.extendFlat({},s,{arrayOk:!1})}})},\"plot\",\"from-root\")).uirevision={valType:\"any\",editType:\"none\"}},{\"../../components/color\":594,\"../../lib\":719,\"../../plot_api/edit_types\":750,\"../../plot_api/plot_template\":757,\"../../traces/scatter/attributes\":1111,\"../domain\":792,\"../font_attributes\":793,\"./constants\":820}],825:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../subplot_defaults\"),i=t(\"../array_container_defaults\"),o=t(\"./layout_attributes\");function s(t,e,r,n){r(\"accesstoken\",n.accessToken),r(\"style\"),r(\"center.lon\"),r(\"center.lat\"),r(\"zoom\"),r(\"bearing\"),r(\"pitch\"),i(t,e,{name:\"layers\",handleItemDefaults:l}),e._input=t}function l(t,e){function r(r,a){return n.coerce(t,e,o.layers,r,a)}if(r(\"visible\")){var a,i=r(\"sourcetype\"),s=\"raster\"===i||\"image\"===i;r(\"source\"),r(\"sourceattribution\"),\"vector\"===i&&r(\"sourcelayer\"),\"image\"===i&&r(\"coordinates\"),s&&(a=\"raster\");var l=r(\"type\",a);s&&\"raster\"!==l&&(l=e.type=\"raster\",n.log(\"Source types *raster* and *image* must drawn *raster* layer type.\")),r(\"below\"),r(\"color\"),r(\"opacity\"),r(\"minzoom\"),r(\"maxzoom\"),\"circle\"===l&&r(\"circle.radius\"),\"line\"===l&&(r(\"line.width\"),r(\"line.dash\")),\"fill\"===l&&r(\"fill.outlinecolor\"),\"symbol\"===l&&(r(\"symbol.icon\"),r(\"symbol.iconsize\"),r(\"symbol.text\"),n.coerceFont(r,\"symbol.textfont\"),r(\"symbol.textposition\"),r(\"symbol.placement\"))}}e.exports=function(t,e,r){a(t,e,r,{type:\"mapbox\",attributes:o,handleDefaults:s,partition:\"y\",accessToken:e._mapboxAccessToken})}},{\"../../lib\":719,\"../array_container_defaults\":763,\"../subplot_defaults\":842,\"./layout_attributes\":824}],826:[function(t,e,r){\"use strict\";var n=t(\"mapbox-gl\"),a=t(\"d3\"),i=t(\"../../components/fx\"),o=t(\"../../lib\"),s=t(\"../../registry\"),l=t(\"../cartesian/axes\"),c=t(\"../../components/dragelement\"),u=t(\"../cartesian/select\").prepSelect,h=t(\"../cartesian/select\").selectOnClick,f=t(\"./constants\"),p=t(\"./layers\");function d(t,e){this.id=e,this.gd=t;var r=t._fullLayout,n=t._context;this.container=r._glcontainer.node(),this.isStatic=n.staticPlot,this.uid=r._uid+\"-\"+this.id,this.div=null,this.xaxis=null,this.yaxis=null,this.createFramework(r),this.map=null,this.accessToken=null,this.styleObj=null,this.traceHash={},this.layerList=[],this.belowLookup={}}var g=d.prototype;g.plot=function(t,e,r){var n,a=this,i=e[a.id];a.map&&i.accesstoken!==a.accessToken&&(a.map.remove(),a.map=null,a.styleObj=null,a.traceHash=[],a.layerList={}),n=a.map?new Promise(function(r,n){a.updateMap(t,e,r,n)}):new Promise(function(r,n){a.createMap(t,e,r,n)}),r.push(n)},g.createMap=function(t,e,r,a){var i=this,o=e[i.id],s=i.styleObj=m(o.style);i.accessToken=o.accesstoken;var l=i.map=new n.Map({container:i.div,style:s.style,center:x(o.center),zoom:o.zoom,bearing:o.bearing,pitch:o.pitch,interactive:!i.isStatic,preserveDrawingBuffer:i.isStatic,doubleClickZoom:!1,boxZoom:!1,attributionControl:!1}).addControl(new n.AttributionControl({compact:!0}));l._canvas.style.left=\"0px\",l._canvas.style.top=\"0px\",i.rejectOnError(a),i.isStatic||i.initFx(t,e);var c=[];c.push(new Promise(function(t){l.once(\"load\",t)})),c=c.concat(i.fetchMapData(t,e)),Promise.all(c).then(function(){i.fillBelowLookup(t,e),i.updateData(t),i.updateLayout(e),i.resolveOnRender(r)}).catch(a)},g.fetchMapData=function(t){var e=[];function r(t){return new Promise(function(e,r){a.json(t,function(n,a){if(n){delete PlotlyGeoAssets[t];var i=404===n.status?'GeoJSON at URL \"'+t+'\" does not exist.':\"Unexpected error while fetching from \"+t;return r(new Error(i))}PlotlyGeoAssets[t]=a,e(a)})})}for(var n=0;n<t.length;n++){var i=t[n][0].trace.geojson;\"string\"!=typeof i||PlotlyGeoAssets[i]||(PlotlyGeoAssets[i]=\"pending\",e.push(r(i)))}return e},g.updateMap=function(t,e,r,n){var a=this,i=a.map,o=e[this.id];a.rejectOnError(n);var s=[],l=m(o.style);a.styleObj.id!==l.id&&(a.styleObj=l,i.setStyle(l.style),a.traceHash={},s.push(new Promise(function(t){i.once(\"styledata\",t)}))),s=s.concat(a.fetchMapData(t,e)),Promise.all(s).then(function(){a.fillBelowLookup(t,e),a.updateData(t),a.updateLayout(e),a.resolveOnRender(r)}).catch(n)},g.fillBelowLookup=function(t,e){var r,n,a=e[this.id].layers,i=this.belowLookup={},o=!1;for(r=0;r<t.length;r++){var s=t[r][0].trace,l=s._module;\"string\"==typeof s.below?n=s.below:l.getBelow&&(n=l.getBelow(s,this)),\"\"===n&&(o=!0),i[\"trace-\"+s.uid]=n||\"\"}for(r=0;r<a.length;r++){var c=a[r];n=\"string\"==typeof c.below?c.below:o?\"traces\":\"\",i[\"layout-\"+r]=n}var u,h,f={};for(u in i)f[n=i[u]]?f[n].push(u):f[n]=[u];for(n in f){var p=f[n];if(p.length>1)for(r=0;r<p.length;r++)0===(u=p[r]).indexOf(\"trace-\")?(h=u.split(\"trace-\")[1],this.traceHash[h]&&(this.traceHash[h].below=null)):0===u.indexOf(\"layout-\")&&(h=u.split(\"layout-\")[1],this.layerList[h]&&(this.layerList[h].below=null))}};var v={choroplethmapbox:0,densitymapbox:1,scattermapbox:2};function m(t){var e={};return o.isPlainObject(t)?(e.id=t.id,e.style=t):\"string\"==typeof t?(e.id=t,-1!==f.styleValuesMapbox.indexOf(t)?e.style=y(t):f.stylesNonMapbox[t]?e.style=f.stylesNonMapbox[t]:e.style=t):(e.id=f.styleValueDflt,e.style=y(f.styleValueDflt)),e.transition={duration:0,delay:0},e}function y(t){return f.styleUrlPrefix+t+\"-\"+f.styleUrlSuffix}function x(t){return[t.lon,t.lat]}g.updateData=function(t){var e,r,n,a,i=this.traceHash,o=t.slice().sort(function(t,e){return v[t[0].trace.type]-v[e[0].trace.type]});for(n=0;n<o.length;n++){var s=o[n];(e=i[(r=s[0].trace).uid])?e.update(s):r._module&&(i[r.uid]=r._module.plot(this,s))}var l=Object.keys(i);t:for(n=0;n<l.length;n++){var c=l[n];for(a=0;a<t.length;a++)if(c===(r=t[a][0].trace).uid)continue t;(e=i[c]).dispose(),delete i[c]}},g.updateLayout=function(t){var e=this.map,r=t[this.id];e.setCenter(x(r.center)),e.setZoom(r.zoom),e.setBearing(r.bearing),e.setPitch(r.pitch),this.updateLayers(t),this.updateFramework(t),this.updateFx(t),this.map.resize(),this.gd._context._scrollZoom.mapbox?e.scrollZoom.enable():e.scrollZoom.disable()},g.resolveOnRender=function(t){var e=this.map;e.on(\"render\",function r(){e.loaded()&&(e.off(\"render\",r),setTimeout(t,10))})},g.rejectOnError=function(t){var e=this.map;function r(){t(new Error(f.mapOnErrorMsg))}e.once(\"error\",r),e.once(\"style.error\",r),e.once(\"source.error\",r),e.once(\"tile.error\",r),e.once(\"layer.error\",r)},g.createFramework=function(t){var e=this,r=e.div=document.createElement(\"div\");r.id=e.uid,r.style.position=\"absolute\",e.container.appendChild(r),e.xaxis={_id:\"x\",c2p:function(t){return e.project(t).x}},e.yaxis={_id:\"y\",c2p:function(t){return e.project(t).y}},e.updateFramework(t),e.mockAxis={type:\"linear\",showexponent:\"all\",exponentformat:\"B\"},l.setConvert(e.mockAxis,t)},g.initFx=function(t,e){var r=this,n=r.gd,a=r.map,o=!1;function l(){i.loneUnhover(e._hoverlayer)}function c(){var t=r.getView();n.emit(\"plotly_relayouting\",r.getViewEdits(t))}a.on(\"moveend\",function(t){if(r.map){var e=n._fullLayout;if(t.originalEvent||o){var a=e[r.id];s.call(\"_storeDirectGUIEdit\",n.layout,e._preGUI,r.getViewEdits(a));var i=r.getView();a._input.center=a.center=i.center,a._input.zoom=a.zoom=i.zoom,a._input.bearing=a.bearing=i.bearing,a._input.pitch=a.pitch=i.pitch,n.emit(\"plotly_relayout\",r.getViewEdits(i))}o=!1,e._rehover&&e._rehover()}}),a.on(\"wheel\",function(){o=!0}),a.on(\"mousemove\",function(t){var e=r.div.getBoundingClientRect();t.clientX=t.point.x+e.left,t.clientY=t.point.y+e.top,t.target.getBoundingClientRect=function(){return e},r.xaxis.p2c=function(){return t.lngLat.lng},r.yaxis.p2c=function(){return t.lngLat.lat},n._fullLayout._rehover=function(){n._fullLayout._hoversubplot===r.id&&n._fullLayout[r.id]&&i.hover(n,t,r.id)},i.hover(n,t,r.id),n._fullLayout._hoversubplot=r.id}),a.on(\"dragstart\",l),a.on(\"zoomstart\",l),a.on(\"mouseout\",function(){n._fullLayout._hoversubplot=null}),a.on(\"drag\",c),a.on(\"zoom\",c),a.on(\"dblclick\",function(){var t=n._fullLayout[r.id];s.call(\"_storeDirectGUIEdit\",n.layout,n._fullLayout._preGUI,r.getViewEdits(t));var e=r.viewInitial;a.setCenter(x(e.center)),a.setZoom(e.zoom),a.setBearing(e.bearing),a.setPitch(e.pitch);var i=r.getView();t._input.center=t.center=i.center,t._input.zoom=t.zoom=i.zoom,t._input.bearing=t.bearing=i.bearing,t._input.pitch=t.pitch=i.pitch,n.emit(\"plotly_doubleclick\",null),n.emit(\"plotly_relayout\",r.getViewEdits(i))}),r.clearSelect=function(){n._fullLayout._zoomlayer.selectAll(\".select-outline\").remove()},r.onClickInPanFn=function(t){return function(e){var a=n._fullLayout.clickmode;a.indexOf(\"select\")>-1&&h(e.originalEvent,n,[r.xaxis],[r.yaxis],r.id,t),a.indexOf(\"event\")>-1&&i.click(n,e.originalEvent)}}},g.updateFx=function(t){var e=this,r=e.map,n=e.gd;if(!e.isStatic){var a,i=t.dragmode;a=\"select\"===i?function(t,r){(t.range={})[e.id]=[l([r.xmin,r.ymin]),l([r.xmax,r.ymax])]}:function(t,r,n){(t.lassoPoints={})[e.id]=n.filtered.map(l)};var s=e.dragOptions;e.dragOptions=o.extendDeep(s||{},{element:e.div,gd:n,plotinfo:{id:e.id,xaxis:e.xaxis,yaxis:e.yaxis,fillRangeItems:a},xaxes:[e.xaxis],yaxes:[e.yaxis],subplot:e.id}),r.off(\"click\",e.onClickInPanHandler),\"select\"===i||\"lasso\"===i?(r.dragPan.disable(),r.on(\"zoomstart\",e.clearSelect),e.dragOptions.prepFn=function(t,r,n){u(t,r,n,e.dragOptions,i)},c.init(e.dragOptions)):(r.dragPan.enable(),r.off(\"zoomstart\",e.clearSelect),e.div.onmousedown=null,e.onClickInPanHandler=e.onClickInPanFn(e.dragOptions),r.on(\"click\",e.onClickInPanHandler))}function l(t){var r=e.map.unproject(t);return[r.lng,r.lat]}},g.updateFramework=function(t){var e=t[this.id].domain,r=t._size,n=this.div.style;n.width=r.w*(e.x[1]-e.x[0])+\"px\",n.height=r.h*(e.y[1]-e.y[0])+\"px\",n.left=r.l+e.x[0]*r.w+\"px\",n.top=r.t+(1-e.y[1])*r.h+\"px\",this.xaxis._offset=r.l+e.x[0]*r.w,this.xaxis._length=r.w*(e.x[1]-e.x[0]),this.yaxis._offset=r.t+(1-e.y[1])*r.h,this.yaxis._length=r.h*(e.y[1]-e.y[0])},g.updateLayers=function(t){var e,r=t[this.id].layers,n=this.layerList;if(r.length!==n.length){for(e=0;e<n.length;e++)n[e].dispose();for(n=this.layerList=[],e=0;e<r.length;e++)n.push(p(this,e,r[e]))}else for(e=0;e<r.length;e++)n[e].update(r[e])},g.destroy=function(){this.map&&(this.map.remove(),this.map=null,this.container.removeChild(this.div))},g.toImage=function(){return this.map.stop(),this.map.getCanvas().toDataURL()},g.setOptions=function(t,e,r){for(var n in r)this.map[e](t,n,r[n])},g.getMapLayers=function(){return this.map.getStyle().layers},g.addLayer=function(t,e){var r=this.map;if(\"string\"==typeof e){if(\"\"===e)return void r.addLayer(t,e);for(var n=this.getMapLayers(),a=0;a<n.length;a++)if(e===n[a].id)return void r.addLayer(t,e);o.warn([\"Trying to add layer with *below* value\",e,\"referencing a layer that does not exist\",\"or that does not yet exist.\"].join(\" \"))}r.addLayer(t)},g.project=function(t){return this.map.project(new n.LngLat(t[0],t[1]))},g.getView=function(){var t=this.map,e=t.getCenter();return{center:{lon:e.lng,lat:e.lat},zoom:t.getZoom(),bearing:t.getBearing(),pitch:t.getPitch()}},g.getViewEdits=function(t){for(var e=this.id,r=[\"center\",\"zoom\",\"bearing\",\"pitch\"],n={},a=0;a<r.length;a++){var i=r[a];n[e+\".\"+i]=t[i]}return n},e.exports=d},{\"../../components/dragelement\":612,\"../../components/fx\":632,\"../../lib\":719,\"../../registry\":848,\"../cartesian/axes\":767,\"../cartesian/select\":784,\"./constants\":820,\"./layers\":823,d3:164,\"mapbox-gl\":427}],827:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.editType;return{t:{valType:\"number\",dflt:0,editType:e},r:{valType:\"number\",dflt:0,editType:e},b:{valType:\"number\",dflt:0,editType:e},l:{valType:\"number\",dflt:0,editType:e},editType:e}}},{}],828:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"fast-isnumeric\"),i=t(\"../registry\"),o=t(\"../plot_api/plot_schema\"),s=t(\"../plot_api/plot_template\"),l=t(\"../lib\"),c=t(\"../components/color\"),u=t(\"../constants/numerical\").BADNUM,h=t(\"./cartesian/axis_ids\"),f=t(\"./animation_attributes\"),p=t(\"./frame_attributes\"),d=t(\"../plots/get_data\").getModuleCalcData,g=l.relinkPrivateKeys,v=l._,m=e.exports={};l.extendFlat(m,i),m.attributes=t(\"./attributes\"),m.attributes.type.values=m.allTypes,m.fontAttrs=t(\"./font_attributes\"),m.layoutAttributes=t(\"./layout_attributes\"),m.fontWeight=\"normal\";var y=m.transformsRegistry,x=t(\"./command\");m.executeAPICommand=x.executeAPICommand,m.computeAPICommandBindings=x.computeAPICommandBindings,m.manageCommandObserver=x.manageCommandObserver,m.hasSimpleAPICommandBindings=x.hasSimpleAPICommandBindings,m.redrawText=function(t){var e=(t=l.getGraphDiv(t))._fullLayout||{};if(!(!(e._has&&e._has(\"polar\"))&&t.data&&t.data[0]&&t.data[0].r))return new Promise(function(e){setTimeout(function(){i.getComponentMethod(\"annotations\",\"draw\")(t),i.getComponentMethod(\"legend\",\"draw\")(t),i.getComponentMethod(\"colorbar\",\"draw\")(t),e(m.previousPromises(t))},300)})},m.resize=function(t){return t=l.getGraphDiv(t),new Promise(function(e,r){t&&!l.isHidden(t)||r(new Error(\"Resize must be passed a displayed plot div element.\")),t._redrawTimer&&clearTimeout(t._redrawTimer),t._redrawTimer=setTimeout(function(){if(!t.layout||t.layout.width&&t.layout.height||l.isHidden(t))e(t);else{delete t.layout.width,delete t.layout.height;var r=t.changed;t.autoplay=!0,i.call(\"relayout\",t,{autosize:!0}).then(function(){t.changed=r,e(t)})}},100)})},m.previousPromises=function(t){if((t._promises||[]).length)return Promise.all(t._promises).then(function(){t._promises=[]})},m.addLinks=function(t){if(t._context.showLink||t._context.showSources){var e=t._fullLayout,r=l.ensureSingle(e._paper,\"text\",\"js-plot-link-container\",function(t){t.style({\"font-family\":'\"Open Sans\", Arial, sans-serif',\"font-size\":\"12px\",fill:c.defaultLine,\"pointer-events\":\"all\"}).each(function(){var t=n.select(this);t.append(\"tspan\").classed(\"js-link-to-tool\",!0),t.append(\"tspan\").classed(\"js-link-spacer\",!0),t.append(\"tspan\").classed(\"js-sourcelinks\",!0)})}),a=r.node(),i={y:e._paper.attr(\"height\")-9};document.body.contains(a)&&a.getComputedTextLength()>=e.width-20?(i[\"text-anchor\"]=\"start\",i.x=5):(i[\"text-anchor\"]=\"end\",i.x=e._paper.attr(\"width\")-7),r.attr(i);var o=r.select(\".js-link-to-tool\"),s=r.select(\".js-link-spacer\"),u=r.select(\".js-sourcelinks\");t._context.showSources&&t._context.showSources(t),t._context.showLink&&function(t,e){e.text(\"\");var r=e.append(\"a\").attr({\"xlink:xlink:href\":\"#\",class:\"link--impt link--embedview\",\"font-weight\":\"bold\"}).text(t._context.linkText+\" \"+String.fromCharCode(187));if(t._context.sendData)r.on(\"click\",function(){m.sendDataToCloud(t)});else{var n=window.location.pathname.split(\"/\"),a=window.location.search;r.attr({\"xlink:xlink:show\":\"new\",\"xlink:xlink:href\":\"/\"+n[2].split(\".\")[0]+\"/\"+n[1]+a})}}(t,o),s.text(o.text()&&u.text()?\" - \":\"\")}},m.sendDataToCloud=function(t){t.emit(\"plotly_beforeexport\");var e=(window.PLOTLYENV||{}).BASE_URL||t._context.plotlyServerURL,r=n.select(t).append(\"div\").attr(\"id\",\"hiddenform\").style(\"display\",\"none\"),a=r.append(\"form\").attr({action:e+\"/external\",method:\"post\",target:\"_blank\"});return a.append(\"input\").attr({type:\"text\",name:\"data\"}).node().value=m.graphJson(t,!1,\"keepdata\"),a.node().submit(),r.remove(),t.emit(\"plotly_afterexport\"),!1};var b=[\"days\",\"shortDays\",\"months\",\"shortMonths\",\"periods\",\"dateTime\",\"date\",\"time\",\"decimal\",\"thousands\",\"grouping\",\"currency\"],_=[\"year\",\"month\",\"dayMonth\",\"dayMonthYear\"];function w(t,e){var r=t._context.locale,n=!1,a={};function o(t){for(var r=!0,i=0;i<e.length;i++){var o=e[i];a[o]||(t[o]?a[o]=t[o]:r=!1)}r&&(n=!0)}for(var s=0;s<2;s++){for(var l=t._context.locales,c=0;c<2;c++){var u=(l[r]||{}).format;if(u&&(o(u),n))break;l=i.localeRegistry}var h=r.split(\"-\")[0];if(n||h===r)break;r=h}return n||o(i.localeRegistry.en.format),a}function k(t,e){var r={_fullLayout:e},n=\"x\"===t._id.charAt(0),a=t._mainAxis._anchorAxis,i=\"\",o=\"\",s=\"\";if(a&&(s=a._mainAxis._id,i=n?t._id+s:s+t._id),!i||!e._plots[i]){i=\"\";for(var l=t._counterAxes,c=0;c<l.length;c++){var u=l[c],f=n?t._id+u:u+t._id;o||(o=f);var p=h.getFromId(r,u);if(s&&p.overlaying===s){i=f;break}}}return i||o}function T(t){var e=t.transforms;if(Array.isArray(e)&&e.length)for(var r=0;r<e.length;r++){var n=e[r],a=n._module||y[n.type];if(a&&a.makesData)return!0}return!1}function A(t,e,r,n){for(var a=t.transforms,i=[t],o=0;o<a.length;o++){var s=a[o],l=y[s.type];l&&l.transform&&(i=l.transform(i,{transform:s,fullTrace:t,fullData:e,layout:r,fullLayout:n,transformIndex:o}))}return i}function M(t){var e=t.margin;if(!t._size){var r=t._size={l:Math.round(e.l),r:Math.round(e.r),t:Math.round(e.t),b:Math.round(e.b),p:Math.round(e.pad)};r.w=Math.round(t.width)-r.l-r.r,r.h=Math.round(t.height)-r.t-r.b}t._pushmargin||(t._pushmargin={}),t._pushmarginIds||(t._pushmarginIds={})}m.supplyDefaults=function(t,e){var r=e&&e.skipUpdateCalc,a=t._fullLayout||{};if(a._skipDefaults)delete a._skipDefaults;else{var o,s=t._fullLayout={},c=t.layout||{},u=t._fullData||[],h=t._fullData=[],f=t.data||[],p=t.calcdata||[],d=t._context||{};t._transitionData||m.createTransitionData(t),s._dfltTitle={plot:v(t,\"Click to enter Plot title\"),x:v(t,\"Click to enter X axis title\"),y:v(t,\"Click to enter Y axis title\"),colorbar:v(t,\"Click to enter Colorscale title\"),annotation:v(t,\"new text\")},s._traceWord=v(t,\"trace\");var y=w(t,b);if(s._mapboxAccessToken=d.mapboxAccessToken,a._initialAutoSizeIsDone){var x=a.width,k=a.height;m.supplyLayoutGlobalDefaults(c,s,y),c.width||(s.width=x),c.height||(s.height=k),m.sanitizeMargins(s)}else{m.supplyLayoutGlobalDefaults(c,s,y);var T=!c.width||!c.height,A=s.autosize,S=d.autosizable;T&&(A||S)?m.plotAutoSize(t,c,s):T&&m.sanitizeMargins(s),!A&&T&&(c.width=s.width,c.height=s.height)}s._d3locale=function(t,e){return t.decimal=e.charAt(0),t.thousands=e.charAt(1),n.locale(t)}(y,s.separators),s._extraFormat=w(t,_),s._initialAutoSizeIsDone=!0,s._dataLength=f.length,s._modules=[],s._visibleModules=[],s._basePlotModules=[];var E=s._subplots=function(){var t,e,r=i.collectableSubplotTypes,n={};if(!r){r=[];var a=i.subplotsRegistry;for(var o in a){var s=a[o],c=s.attr;if(c&&(r.push(o),Array.isArray(c)))for(e=0;e<c.length;e++)l.pushUnique(r,c[e])}}for(t=0;t<r.length;t++)n[r[t]]=[];return n}(),C=s._splomAxes={x:{},y:{}},L=s._splomSubplots={};s._splomGridDflt={},s._scatterStackOpts={},s._firstScatter={},s._alignmentOpts={},s._colorAxes={},s._requestRangeslider={},s._traceUids=function(t,e){var r,n,a=e.length,i=[];for(r=0;r<t.length;r++){var o=t[r]._fullInput;o!==n&&i.push(o),n=o}var s=i.length,c=new Array(a),u={};function h(t,e){c[e]=t,u[t]=1}function f(t,e){if(t&&\"string\"==typeof t&&!u[t])return h(t,e),!0}for(r=0;r<a;r++){var p=e[r].uid;\"number\"==typeof p&&(p=String(p)),f(p,r)||(r<s&&f(i[r].uid,r)||h(l.randstr(u),r))}return c}(u,f),s._globalTransforms=(t._context||{}).globalTransforms,m.supplyDataDefaults(f,h,c,s);var P=Object.keys(C.x),O=Object.keys(C.y);if(P.length>1&&O.length>1){for(i.getComponentMethod(\"grid\",\"sizeDefaults\")(c,s),o=0;o<P.length;o++)l.pushUnique(E.xaxis,P[o]);for(o=0;o<O.length;o++)l.pushUnique(E.yaxis,O[o]);for(var I in L)l.pushUnique(E.cartesian,I)}if(s._has=m._hasPlotType.bind(s),u.length===h.length)for(o=0;o<h.length;o++)g(h[o],u[o]);m.supplyLayoutModuleDefaults(c,s,h,t._transitionData);var z=s._visibleModules,D=[];for(o=0;o<z.length;o++){var R=z[o].crossTraceDefaults;R&&l.pushUnique(D,R)}for(o=0;o<D.length;o++)D[o](h,s);s._hasOnlyLargeSploms=1===s._basePlotModules.length&&\"splom\"===s._basePlotModules[0].name&&P.length>15&&O.length>15&&0===s.shapes.length&&0===s.images.length,s._hasCartesian=s._has(\"cartesian\"),s._hasGeo=s._has(\"geo\"),s._hasGL3D=s._has(\"gl3d\"),s._hasGL2D=s._has(\"gl2d\"),s._hasTernary=s._has(\"ternary\"),s._hasPie=s._has(\"pie\"),m.linkSubplots(h,s,u,a),m.cleanPlot(h,s,u,a),a._zoomlayer&&!t._dragging&&a._zoomlayer.selectAll(\".select-outline\").remove(),function(t,e){var r,n=[];e.meta&&(r=e._meta={meta:e.meta,layout:{meta:e.meta}});for(var a=0;a<t.length;a++){var i=t[a];i.meta?n[i.index]=i._meta={meta:i.meta}:e.meta&&(i._meta={meta:e.meta}),e.meta&&(i._meta.layout={meta:e.meta})}n.length&&(r||(r=e._meta={}),r.data=n)}(h,s),g(s,a),i.getComponentMethod(\"colorscale\",\"crossTraceDefaults\")(h,s),s._preGUI||(s._preGUI={}),s._tracePreGUI||(s._tracePreGUI={});var F,B=s._tracePreGUI,N={};for(F in B)N[F]=\"old\";for(o=0;o<h.length;o++)N[F=h[o]._fullInput.uid]||(B[F]={}),N[F]=\"new\";for(F in N)\"old\"===N[F]&&delete B[F];M(s),i.getComponentMethod(\"rangeslider\",\"makeData\")(s),r||p.length!==h.length||m.supplyDefaultsUpdateCalc(p,h)}},m.supplyDefaultsUpdateCalc=function(t,e){for(var r=0;r<e.length;r++){var n=e[r],a=(t[r]||[])[0];if(a&&a.trace){var i=a.trace;if(i._hasCalcTransform){var o,s,c,u=i._arrayAttrs;for(o=0;o<u.length;o++)s=u[o],c=l.nestedProperty(i,s).get().slice(),l.nestedProperty(n,s).set(c)}a.trace=n}}},m.createTransitionData=function(t){t._transitionData||(t._transitionData={}),t._transitionData._frames||(t._transitionData._frames=[]),t._transitionData._frameHash||(t._transitionData._frameHash={}),t._transitionData._counter||(t._transitionData._counter=0),t._transitionData._interruptCallbacks||(t._transitionData._interruptCallbacks=[])},m._hasPlotType=function(t){var e,r=this._basePlotModules||[];for(e=0;e<r.length;e++)if(r[e].name===t)return!0;var n=this._modules||[];for(e=0;e<n.length;e++){var a=n[e].name;if(a===t)return!0;var o=i.modules[a];if(o&&o.categories[t])return!0}return!1},m.cleanPlot=function(t,e,r,n){var a,i,o=n._basePlotModules||[];for(a=0;a<o.length;a++){var s=o[a];s.clean&&s.clean(t,e,r,n)}var l=n._has&&n._has(\"gl\"),c=e._has&&e._has(\"gl\");l&&!c&&void 0!==n._glcontainer&&(n._glcontainer.selectAll(\".gl-canvas\").remove(),n._glcontainer.selectAll(\".no-webgl\").remove(),n._glcanvas=null);var u=!!n._infolayer;t:for(a=0;a<r.length;a++){var h=r[a].uid;for(i=0;i<t.length;i++){if(h===t[i].uid)continue t}u&&n._infolayer.select(\".cb\"+h).remove()}},m.linkSubplots=function(t,e,r,n){var a,o,s=n._plots||{},c=e._plots={},u=e._subplots,f={_fullData:t,_fullLayout:e},p=u.cartesian.concat(u.gl2d||[]);for(a=0;a<p.length;a++){var d,g=p[a],v=s[g],m=h.getFromId(f,g,\"x\"),y=h.getFromId(f,g,\"y\");for(v?d=c[g]=v:(d=c[g]={}).id=g,m._counterAxes.push(y._id),y._counterAxes.push(m._id),m._subplotsWith.push(g),y._subplotsWith.push(g),d.xaxis=m,d.yaxis=y,d._hasClipOnAxisFalse=!1,o=0;o<t.length;o++){var x=t[o];if(x.xaxis===d.xaxis._id&&x.yaxis===d.yaxis._id&&!1===x.cliponaxis){d._hasClipOnAxisFalse=!0;break}}}var b,_=h.list(f,null,!0);for(a=0;a<_.length;a++){var w=null;(b=_[a]).overlaying&&(w=h.getFromId(f,b.overlaying))&&w.overlaying&&(b.overlaying=!1,w=null),b._mainAxis=w||b,w&&(b.domain=w.domain.slice()),b._anchorAxis=\"free\"===b.anchor?null:h.getFromId(f,b.anchor)}for(a=0;a<_.length;a++)if((b=_[a])._counterAxes.sort(h.idSort),b._subplotsWith.sort(l.subplotSort),b._mainSubplot=k(b,e),b._counterAxes.length&&(b.spikemode&&-1!==b.spikemode.indexOf(\"across\")||b.automargin&&b.mirror&&\"free\"!==b.anchor||i.getComponentMethod(\"rangeslider\",\"isVisible\")(b))){var T=1,A=0;for(o=0;o<b._counterAxes.length;o++){var M=h.getFromId(f,b._counterAxes[o]);T=Math.min(T,M.domain[0]),A=Math.max(A,M.domain[1])}T<A&&(b._counterDomainMin=T,b._counterDomainMax=A)}},m.clearExpandedTraceDefaultColors=function(t){var e,r,n;for(r=[],(e=t._module._colorAttrs)||(t._module._colorAttrs=e=[],o.crawl(t._module.attributes,function(t,n,a,i){r[i]=n,r.length=i+1,\"color\"===t.valType&&void 0===t.dflt&&e.push(r.join(\".\"))})),n=0;n<e.length;n++){l.nestedProperty(t,\"_input.\"+e[n]).get()||l.nestedProperty(t,e[n]).set(null)}},m.supplyDataDefaults=function(t,e,r,n){var a,o,c,u=n._modules,h=n._visibleModules,f=n._basePlotModules,p=0,d=0;function v(t){e.push(t);var r=t._module;r&&(l.pushUnique(u,r),!0===t.visible&&l.pushUnique(h,r),l.pushUnique(f,t._module.basePlotModule),p++,!1!==t._input.visible&&d++)}n._transformModules=[];var y={},x=[],b=(r.template||{}).data||{},_=s.traceTemplater(b);for(a=0;a<t.length;a++){if(c=t[a],(o=_.newTrace(c)).uid=n._traceUids[a],m.supplyTraceDefaults(c,o,d,n,a),o.index=a,o._input=c,o._expandedIndex=p,o.transforms&&o.transforms.length)for(var w=!1!==c.visible&&!1===o.visible,k=A(o,e,r,n),T=0;T<k.length;T++){var M=k[T],S={_template:o._template,type:o.type,uid:o.uid+T};w&&!1===M.visible&&delete M.visible,m.supplyTraceDefaults(M,S,p,n,a),g(S,M),S.index=a,S._input=c,S._fullInput=o,S._expandedIndex=p,S._expandedInput=M,v(S)}else o._fullInput=o,o._expandedInput=o,v(o);i.traceIs(o,\"carpetAxis\")&&(y[o.carpet]=o),i.traceIs(o,\"carpetDependent\")&&x.push(a)}for(a=0;a<x.length;a++)if((o=e[x[a]]).visible){var E=y[o.carpet];o._carpet=E,E&&E.visible?(o.xaxis=E.xaxis,o.yaxis=E.yaxis):o.visible=!1}},m.supplyAnimationDefaults=function(t){var e;t=t||{};var r={};function n(e,n){return l.coerce(t||{},r,f,e,n)}if(n(\"mode\"),n(\"direction\"),n(\"fromcurrent\"),Array.isArray(t.frame))for(r.frame=[],e=0;e<t.frame.length;e++)r.frame[e]=m.supplyAnimationFrameDefaults(t.frame[e]||{});else r.frame=m.supplyAnimationFrameDefaults(t.frame||{});if(Array.isArray(t.transition))for(r.transition=[],e=0;e<t.transition.length;e++)r.transition[e]=m.supplyAnimationTransitionDefaults(t.transition[e]||{});else r.transition=m.supplyAnimationTransitionDefaults(t.transition||{});return r},m.supplyAnimationFrameDefaults=function(t){var e={};function r(r,n){return l.coerce(t||{},e,f.frame,r,n)}return r(\"duration\"),r(\"redraw\"),e},m.supplyAnimationTransitionDefaults=function(t){var e={};function r(r,n){return l.coerce(t||{},e,f.transition,r,n)}return r(\"duration\"),r(\"easing\"),e},m.supplyFrameDefaults=function(t){var e={};function r(r,n){return l.coerce(t,e,p,r,n)}return r(\"group\"),r(\"name\"),r(\"traces\"),r(\"baseframe\"),r(\"data\"),r(\"layout\"),e},m.supplyTraceDefaults=function(t,e,r,n,a){var o,s=n.colorway||c.defaults,u=s[r%s.length];function h(r,n){return l.coerce(t,e,m.attributes,r,n)}var f=h(\"visible\");h(\"type\"),h(\"name\",n._traceWord+\" \"+a),h(\"uirevision\",n.uirevision);var p=m.getModule(e);if(e._module=p,p){var d=p.basePlotModule,g=d.attr,v=d.attributes;if(g&&v){var y=n._subplots,x=\"\";if(\"gl2d\"!==d.name||f){if(Array.isArray(g))for(o=0;o<g.length;o++){var b=g[o],_=l.coerce(t,e,v,b);y[b]&&l.pushUnique(y[b],_),x+=_}else x=l.coerce(t,e,v,g);y[d.name]&&l.pushUnique(y[d.name],x)}}}return f&&(h(\"customdata\"),h(\"ids\"),h(\"meta\"),i.traceIs(e,\"showLegend\")?(e._dfltShowLegend=!0,h(\"showlegend\"),h(\"legendgroup\")):e._dfltShowLegend=!1,p&&p.supplyDefaults(t,e,u,n),i.traceIs(e,\"noOpacity\")||h(\"opacity\"),i.traceIs(e,\"notLegendIsolatable\")&&(e.visible=!!e.visible),i.traceIs(e,\"noHover\")||(e.hovertemplate||l.coerceHoverinfo(t,e,n),\"parcats\"!==e.type&&i.getComponentMethod(\"fx\",\"supplyDefaults\")(t,e,u,n)),p&&p.selectPoints&&h(\"selectedpoints\"),m.supplyTransformDefaults(t,e,n)),e},m.hasMakesDataTransform=T,m.supplyTransformDefaults=function(t,e,r){if(e._length||T(t)){var n=r._globalTransforms||[],a=r._transformModules||[];if(Array.isArray(t.transforms)||0!==n.length)for(var i=t.transforms||[],o=n.concat(i),s=e.transforms=[],c=0;c<o.length;c++){var u,h=o[c],f=h.type,p=y[f],d=!(h._module&&h._module===p),g=p&&\"function\"==typeof p.transform;p||l.warn(\"Unrecognized transform type \"+f+\".\"),p&&p.supplyDefaults&&(d||g)?((u=p.supplyDefaults(h,e,r,t)).type=f,u._module=p,l.pushUnique(a,p)):u=l.extendFlat({},h),s.push(u)}}},m.supplyLayoutGlobalDefaults=function(t,e,r){function n(r,n){return l.coerce(t,e,m.layoutAttributes,r,n)}var a=t.template;l.isPlainObject(a)&&(e.template=a,e._template=a.layout,e._dataTemplate=a.data);var o=l.coerceFont(n,\"font\");n(\"title.text\",e._dfltTitle.plot),l.coerceFont(n,\"title.font\",{family:o.family,size:Math.round(1.4*o.size),color:o.color}),n(\"title.xref\"),n(\"title.yref\"),n(\"title.x\"),n(\"title.y\"),n(\"title.xanchor\"),n(\"title.yanchor\"),n(\"title.pad.t\"),n(\"title.pad.r\"),n(\"title.pad.b\"),n(\"title.pad.l\"),n(\"autosize\",!(t.width&&t.height)),n(\"width\"),n(\"height\"),n(\"margin.l\"),n(\"margin.r\"),n(\"margin.t\"),n(\"margin.b\"),n(\"margin.pad\"),n(\"margin.autoexpand\"),t.width&&t.height&&m.sanitizeMargins(e),i.getComponentMethod(\"grid\",\"sizeDefaults\")(t,e),n(\"paper_bgcolor\"),n(\"separators\",r.decimal+r.thousands),n(\"hidesources\"),n(\"colorway\"),n(\"datarevision\");var s=n(\"uirevision\");n(\"editrevision\",s),n(\"selectionrevision\",s),n(\"modebar.orientation\"),n(\"modebar.bgcolor\",c.addOpacity(e.paper_bgcolor,.5));var u=c.contrast(c.rgb(e.modebar.bgcolor));n(\"modebar.color\",c.addOpacity(u,.3)),n(\"modebar.activecolor\",c.addOpacity(u,.7)),n(\"modebar.uirevision\",s),n(\"meta\"),l.isPlainObject(t.transition)&&(n(\"transition.duration\"),n(\"transition.easing\"),n(\"transition.ordering\")),i.getComponentMethod(\"calendars\",\"handleDefaults\")(t,e,\"calendar\"),i.getComponentMethod(\"fx\",\"supplyLayoutGlobalDefaults\")(t,e,n)},m.plotAutoSize=function(t,e,r){var n,i,o=t._context||{},s=o.frameMargins,c=l.isPlotDiv(t);if(c&&t.emit(\"plotly_autosize\"),o.fillFrame)n=window.innerWidth,i=window.innerHeight,document.body.style.overflow=\"hidden\";else{var u=c?window.getComputedStyle(t):{};if(n=parseFloat(u.width)||parseFloat(u.maxWidth)||r.width,i=parseFloat(u.height)||parseFloat(u.maxHeight)||r.height,a(s)&&s>0){var h=1-2*s;n=Math.round(h*n),i=Math.round(h*i)}}var f=m.layoutAttributes.width.min,p=m.layoutAttributes.height.min;n<f&&(n=f),i<p&&(i=p);var d=!e.width&&Math.abs(r.width-n)>1,g=!e.height&&Math.abs(r.height-i)>1;(g||d)&&(d&&(r.width=n),g&&(r.height=i)),t._initialAutoSize||(t._initialAutoSize={width:n,height:i}),m.sanitizeMargins(r)},m.supplyLayoutModuleDefaults=function(t,e,r,n){var a,o,s,c=i.componentsRegistry,u=e._basePlotModules,h=i.subplotsRegistry.cartesian;for(a in c)(s=c[a]).includeBasePlot&&s.includeBasePlot(t,e);for(var f in u.length||u.push(h),e._has(\"cartesian\")&&(i.getComponentMethod(\"grid\",\"contentDefaults\")(t,e),h.finalizeSubplots(t,e)),e._subplots)e._subplots[f].sort(l.subplotSort);for(o=0;o<u.length;o++)(s=u[o]).supplyLayoutDefaults&&s.supplyLayoutDefaults(t,e,r);var p=e._modules;for(o=0;o<p.length;o++)(s=p[o]).supplyLayoutDefaults&&s.supplyLayoutDefaults(t,e,r);var d=e._transformModules;for(o=0;o<d.length;o++)(s=d[o]).supplyLayoutDefaults&&s.supplyLayoutDefaults(t,e,r,n);for(a in c)(s=c[a]).supplyLayoutDefaults&&s.supplyLayoutDefaults(t,e,r)},m.purge=function(t){var e=t._fullLayout||{};void 0!==e._glcontainer&&(e._glcontainer.selectAll(\".gl-canvas\").remove(),e._glcontainer.remove(),e._glcanvas=null),e._modeBar&&e._modeBar.destroy(),t._transitionData&&(t._transitionData._interruptCallbacks&&(t._transitionData._interruptCallbacks.length=0),t._transitionData._animationRaf&&window.cancelAnimationFrame(t._transitionData._animationRaf)),l.clearThrottle(),l.clearResponsive(t),delete t.data,delete t.layout,delete t._fullData,delete t._fullLayout,delete t.calcdata,delete t.framework,delete t.empty,delete t.fid,delete t.undoqueue,delete t.undonum,delete t.autoplay,delete t.changed,delete t._promises,delete t._redrawTimer,delete t._hmlumcount,delete t._hmpixcount,delete t._transitionData,delete t._transitioning,delete t._initialAutoSize,delete t._transitioningWithDuration,delete t._dragging,delete t._dragged,delete t._dragdata,delete t._hoverdata,delete t._snapshotInProgress,delete t._editing,delete t._mouseDownTime,delete t._legendMouseDownTime,t.removeAllListeners&&t.removeAllListeners()},m.style=function(t){var e,r=t._fullLayout._visibleModules,n=[];for(e=0;e<r.length;e++){var a=r[e];a.style&&l.pushUnique(n,a.style)}for(e=0;e<n.length;e++)n[e](t)},m.sanitizeMargins=function(t){if(t&&t.margin){var e,r=t.width,n=t.height,a=t.margin,i=r-(a.l+a.r),o=n-(a.t+a.b);i<0&&(e=(r-1)/(a.l+a.r),a.l=Math.floor(e*a.l),a.r=Math.floor(e*a.r)),o<0&&(e=(n-1)/(a.t+a.b),a.t=Math.floor(e*a.t),a.b=Math.floor(e*a.b))}},m.clearAutoMarginIds=function(t){t._fullLayout._pushmarginIds={}},m.allowAutoMargin=function(t,e){t._fullLayout._pushmarginIds[e]=1},m.autoMargin=function(t,e,r){var n=t._fullLayout,a=n._pushmargin,i=n._pushmarginIds;if(!1!==n.margin.autoexpand){if(r){var o=r.pad;if(void 0===o){var s=n.margin;o=Math.min(12,s.l,s.r,s.t,s.b)}r.l+r.r>.5*n.width&&(l.log(\"Margin push\",e,\"is too big in x, dropping\"),r.l=r.r=0),r.b+r.t>.5*n.height&&(l.log(\"Margin push\",e,\"is too big in y, dropping\"),r.b=r.t=0);var c=void 0!==r.xl?r.xl:r.x,u=void 0!==r.xr?r.xr:r.x,h=void 0!==r.yt?r.yt:r.y,f=void 0!==r.yb?r.yb:r.y;a[e]={l:{val:c,size:r.l+o},r:{val:u,size:r.r+o},b:{val:f,size:r.b+o},t:{val:h,size:r.t+o}},i[e]=1}else delete a[e],delete i[e];if(!n._replotting)return m.doAutoMargin(t)}},m.doAutoMargin=function(t){var e=t._fullLayout;e._size||(e._size={}),M(e);var r=e._size,n=e.margin,o=l.extendFlat({},r),s=n.l,c=n.r,u=n.t,h=n.b,f=e.width,p=e.height,d=e._pushmargin,g=e._pushmarginIds;if(!1!==e.margin.autoexpand){for(var v in d)g[v]||delete d[v];for(var y in d.base={l:{val:0,size:s},r:{val:1,size:c},t:{val:1,size:u},b:{val:0,size:h}},d){var x=d[y].l||{},b=d[y].b||{},_=x.val,w=x.size,k=b.val,T=b.size;for(var A in d){if(a(w)&&d[A].r){var S=d[A].r.val,E=d[A].r.size;if(S>_){var C=(w*S+(E-f)*_)/(S-_),L=(E*(1-_)+(w-f)*(1-S))/(S-_);C>=0&&L>=0&&f-(C+L)>0&&C+L>s+c&&(s=C,c=L)}}if(a(T)&&d[A].t){var P=d[A].t.val,O=d[A].t.size;if(P>k){var I=(T*P+(O-p)*k)/(P-k),z=(O*(1-k)+(T-p)*(1-P))/(P-k);I>=0&&z>=0&&p-(z+I)>0&&I+z>h+u&&(h=I,u=z)}}}}}if(r.l=Math.round(s),r.r=Math.round(c),r.t=Math.round(u),r.b=Math.round(h),r.p=Math.round(n.pad),r.w=Math.round(f)-r.l-r.r,r.h=Math.round(p)-r.t-r.b,!e._replotting&&m.didMarginChange(o,r)){\"_redrawFromAutoMarginCount\"in e?e._redrawFromAutoMarginCount++:e._redrawFromAutoMarginCount=1;var D=3*(1+Object.keys(g).length);if(e._redrawFromAutoMarginCount<D)return i.call(\"plot\",t);l.warn(\"Too many auto-margin redraws.\")}};var S=[\"l\",\"r\",\"t\",\"b\",\"p\",\"w\",\"h\"];function E(t,e,r){var n=!1;var a=[m.previousPromises,function(){if(t._transitionData)return t._transitioning=!1,function(t){var e=Promise.resolve();if(!t)return e;for(;t.length;)e=e.then(t.shift());return e}(t._transitionData._interruptCallbacks)},r.prepareFn,m.rehover,function(){return t.emit(\"plotly_transitioning\",[]),new Promise(function(a){t._transitioning=!0,e.duration>0&&(t._transitioningWithDuration=!0),t._transitionData._interruptCallbacks.push(function(){n=!0}),r.redraw&&t._transitionData._interruptCallbacks.push(function(){return i.call(\"redraw\",t)}),t._transitionData._interruptCallbacks.push(function(){t.emit(\"plotly_transitioninterrupted\",[])});var o=0,s=0;function l(){return o++,function(){var e;s++,n||s!==o||(e=a,t._transitionData&&(function(t){if(t)for(;t.length;)t.shift()}(t._transitionData._interruptCallbacks),Promise.resolve().then(function(){if(r.redraw)return i.call(\"redraw\",t)}).then(function(){t._transitioning=!1,t._transitioningWithDuration=!1,t.emit(\"plotly_transitioned\",[])}).then(e)))}}r.runFn(l),setTimeout(l())})}],o=l.syncOrAsync(a,t);return o&&o.then||(o=Promise.resolve()),o.then(function(){return t})}m.didMarginChange=function(t,e){for(var r=0;r<S.length;r++){var n=S[r],i=t[n],o=e[n];if(!a(i)||Math.abs(o-i)>1)return!0}return!1},m.graphJson=function(t,e,r,n,a){(a&&e&&!t._fullData||a&&!e&&!t._fullLayout)&&m.supplyDefaults(t);var i=a?t._fullData:t.data,o=a?t._fullLayout:t.layout,s=(t._transitionData||{})._frames;function c(t){if(\"function\"==typeof t)return null;if(l.isPlainObject(t)){var e,n,a={};for(e in t)if(\"function\"!=typeof t[e]&&-1===[\"_\",\"[\"].indexOf(e.charAt(0))){if(\"keepdata\"===r){if(\"src\"===e.substr(e.length-3))continue}else if(\"keepstream\"===r){if(\"string\"==typeof(n=t[e+\"src\"])&&n.indexOf(\":\")>0&&!l.isPlainObject(t.stream))continue}else if(\"keepall\"!==r&&\"string\"==typeof(n=t[e+\"src\"])&&n.indexOf(\":\")>0)continue;a[e]=c(t[e])}return a}return Array.isArray(t)?t.map(c):l.isTypedArray(t)?l.simpleMap(t,l.identity):l.isJSDate(t)?l.ms2DateTimeLocal(+t):t}var u={data:(i||[]).map(function(t){var r=c(t);return e&&delete r.fit,r})};return e||(u.layout=c(o)),t.framework&&t.framework.isPolar&&(u=t.framework.getConfig()),s&&(u.frames=c(s)),\"object\"===n?u:JSON.stringify(u)},m.modifyFrames=function(t,e){var r,n,a,i=t._transitionData._frames,o=t._transitionData._frameHash;for(r=0;r<e.length;r++)switch((n=e[r]).type){case\"replace\":a=n.value;var s=(i[n.index]||{}).name,l=a.name;i[n.index]=o[l]=a,l!==s&&(delete o[s],o[l]=a);break;case\"insert\":o[(a=n.value).name]=a,i.splice(n.index,0,a);break;case\"delete\":delete o[(a=i[n.index]).name],i.splice(n.index,1)}return Promise.resolve()},m.computeFrame=function(t,e){var r,n,a,i,o=t._transitionData._frameHash;if(!e)throw new Error(\"computeFrame must be given a string frame name\");var s=o[e.toString()];if(!s)return!1;for(var l=[s],c=[s.name];s.baseframe&&(s=o[s.baseframe.toString()])&&-1===c.indexOf(s.name);)l.push(s),c.push(s.name);for(var u={};s=l.pop();)if(s.layout&&(u.layout=m.extendLayout(u.layout,s.layout)),s.data){if(u.data||(u.data=[]),!(n=s.traces))for(n=[],r=0;r<s.data.length;r++)n[r]=r;for(u.traces||(u.traces=[]),r=0;r<s.data.length;r++)null!=(a=n[r])&&(-1===(i=u.traces.indexOf(a))&&(i=u.data.length,u.traces[i]=a),u.data[i]=m.extendTrace(u.data[i],s.data[r]))}return u},m.recomputeFrameHash=function(t){for(var e=t._transitionData._frameHash={},r=t._transitionData._frames,n=0;n<r.length;n++){var a=r[n];a&&a.name&&(e[a.name]=a)}},m.extendObjectWithContainers=function(t,e,r){var n,a,i,o,s,c,u,h=l.extendDeepNoArrays({},e||{}),f=l.expandObjectPaths(h),p={};if(r&&r.length)for(i=0;i<r.length;i++)void 0===(a=(n=l.nestedProperty(f,r[i])).get())?l.nestedProperty(p,r[i]).set(null):(n.set(null),l.nestedProperty(p,r[i]).set(a));if(t=l.extendDeepNoArrays(t||{},f),r&&r.length)for(i=0;i<r.length;i++)if(c=l.nestedProperty(p,r[i]).get()){for(u=(s=l.nestedProperty(t,r[i])).get(),Array.isArray(u)||(u=[],s.set(u)),o=0;o<c.length;o++){var d=c[o];u[o]=null===d?null:m.extendObjectWithContainers(u[o],d)}s.set(u)}return t},m.dataArrayContainers=[\"transforms\",\"dimensions\"],m.layoutArrayContainers=i.layoutArrayContainers,m.extendTrace=function(t,e){return m.extendObjectWithContainers(t,e,m.dataArrayContainers)},m.extendLayout=function(t,e){return m.extendObjectWithContainers(t,e,m.layoutArrayContainers)},m.transition=function(t,e,r,n,a,i){var o={redraw:a.redraw},s={},c=[];return o.prepareFn=function(){for(var a=Array.isArray(e)?e.length:0,i=n.slice(0,a),o=0;o<i.length;o++){var u=i[o],h=t._fullData[u]._module;if(h){if(h.animatable){var f=h.basePlotModule.name;s[f]||(s[f]=[]),s[f].push(u)}t.data[i[o]]=m.extendTrace(t.data[i[o]],e[o])}}var p=l.expandObjectPaths(l.extendDeepNoArrays({},r)),d=/^[xy]axis[0-9]*$/;for(var g in p)d.test(g)&&delete p[g].range;m.extendLayout(t.layout,p),delete t.calcdata,m.supplyDefaults(t),m.doCalcdata(t);var v=l.expandObjectPaths(r);if(v){var y=t._fullLayout._plots;for(var x in y){var b=y[x],_=b.xaxis,w=b.yaxis,k=_.range.slice(),T=w.range.slice(),A=null,M=null,S=null,E=null;Array.isArray(v[_._name+\".range\"])?A=v[_._name+\".range\"].slice():Array.isArray((v[_._name]||{}).range)&&(A=v[_._name].range.slice()),Array.isArray(v[w._name+\".range\"])?M=v[w._name+\".range\"].slice():Array.isArray((v[w._name]||{}).range)&&(M=v[w._name].range.slice()),k&&A&&(_.r2l(k[0])!==_.r2l(A[0])||_.r2l(k[1])!==_.r2l(A[1]))&&(S={xr0:k,xr1:A}),T&&M&&(w.r2l(T[0])!==w.r2l(M[0])||w.r2l(T[1])!==w.r2l(M[1]))&&(E={yr0:T,yr1:M}),(S||E)&&c.push(l.extendFlat({plotinfo:b},S,E))}}return Promise.resolve()},o.runFn=function(e){var n,a,o=t._fullLayout._basePlotModules,u=c.length;if(r)for(a=0;a<o.length;a++)o[a].transitionAxes&&o[a].transitionAxes(t,c,i,e);for(var h in u?((n=l.extendFlat({},i)).duration=0,delete s.cartesian):n=i,s){var f=s[h];t._fullData[f[0]]._module.basePlotModule.plot(t,f,n,e)}},E(t,i,o)},m.transitionFromReact=function(t,e,r,n){var a=t._fullLayout,i=a.transition,o={},s=[];return o.prepareFn=function(){var t=a._plots;for(var i in o.redraw=!1,\"some\"===e.anim&&(o.redraw=!0),\"some\"===r.anim&&(o.redraw=!0),t){var c=t[i],u=c.xaxis,h=c.yaxis,f=n[u._name].range.slice(),p=n[h._name].range.slice(),d=u.range.slice(),g=h.range.slice();u.setScale(),h.setScale();var v=null,m=null;u.r2l(f[0])===u.r2l(d[0])&&u.r2l(f[1])===u.r2l(d[1])||(v={xr0:f,xr1:d}),h.r2l(p[0])===h.r2l(g[0])&&h.r2l(p[1])===h.r2l(g[1])||(m={yr0:p,yr1:g}),(v||m)&&s.push(l.extendFlat({plotinfo:c},v,m))}return Promise.resolve()},o.runFn=function(r){for(var n,a,o,c=t._fullData,u=t._fullLayout._basePlotModules,h=[],f=0;f<c.length;f++)h.push(f);function p(){for(var e=0;e<u.length;e++)u[e].transitionAxes&&u[e].transitionAxes(t,s,n,r)}function d(){for(var e=0;e<u.length;e++)u[e].plot(t,o,a,r)}s.length&&e.anim?\"traces first\"===i.ordering?(n=l.extendFlat({},i,{duration:0}),o=h,a=i,setTimeout(p,i.duration),d()):(n=i,o=null,a=l.extendFlat({},i,{duration:0}),setTimeout(d,n.duration),p()):s.length?(n=i,p()):e.anim&&(o=h,a=i,d())},E(t,i,o)},m.doCalcdata=function(t,e){var r,n,a,s,c=h.list(t),f=t._fullData,p=t._fullLayout,d=new Array(f.length),g=(t.calcdata||[]).slice();for(t.calcdata=d,p._numBoxes=0,p._numViolins=0,p._violinScaleGroupStats={},t._hmpixcount=0,t._hmlumcount=0,p._piecolormap={},p._sunburstcolormap={},p._treemapcolormap={},p._funnelareacolormap={},a=0;a<f.length;a++)Array.isArray(e)&&-1===e.indexOf(a)&&(d[a]=g[a]);for(a=0;a<f.length;a++)(r=f[a])._arrayAttrs=o.findArrayAttributes(r),r._extremes={};var v=p._subplots.polar||[];for(a=0;a<v.length;a++)c.push(p[v[a]].radialaxis,p[v[a]].angularaxis);var m=!1;function x(e){if(r=f[e],n=r._module,!0===r.visible&&r.transforms){if(n&&n.calc){var a=n.calc(t,r);a[0]&&a[0].t&&a[0].t._scene&&delete a[0].t._scene.dirty}for(s=0;s<r.transforms.length;s++){var i=r.transforms[s];(n=y[i.type])&&n.calcTransform&&(r._hasCalcTransform=!0,m=!0,n.calcTransform(t,r,i))}}}function b(e,a){if(r=f[e],!!(n=r._module).isContainer===a){var i=[];if(!0===r.visible&&0!==r._length){delete r._indexToPoints;var o=r.transforms||[];for(s=o.length-1;s>=0;s--)if(o[s].enabled){r._indexToPoints=o[s]._indexToPoints;break}n&&n.calc&&(i=n.calc(t,r))}Array.isArray(i)&&i[0]||(i=[{x:u,y:u}]),i[0].t||(i[0].t={}),i[0].trace=r,d[e]=i}}for(L(c,f),a=0;a<f.length;a++)b(a,!0);for(a=0;a<f.length;a++)x(a);for(m&&L(c,f),a=0;a<f.length;a++)b(a,!0);for(a=0;a<f.length;a++)b(a,!1);P(t);var _=function(t,e){var r,n,a,o,s,c=[];function u(t,r,n){var a=r._id.charAt(0);if(\"histogram2dcontour\"===t){var i=r._counterAxes[0],o=h.getFromId(e,i),s=\"x\"===a||\"x\"===i&&\"category\"===o.type,l=\"y\"===a||\"y\"===i&&\"category\"===o.type;return function(t,e){return 0===t||0===e?-1:s&&t===n[e].length-1?-1:l&&e===n.length-1?-1:(\"y\"===a?e:t)-1}}return function(t,e){return\"y\"===a?e:t}}var f={min:function(t){return l.aggNums(Math.min,null,t)},max:function(t){return l.aggNums(Math.max,null,t)},sum:function(t){return l.aggNums(function(t,e){return t+e},null,t)},total:function(t){return l.aggNums(function(t,e){return t+e},null,t)},mean:function(t){return l.mean(t)},median:function(t){return l.median(t)}};for(r=0;r<t.length;r++){var p=t[r];if(\"category\"===p.type){var d=p.categoryorder.match(C);if(d){var g=d[1],v=d[2],m=[];for(n=0;n<p._categories.length;n++)m.push([p._categories[n],[]]);for(n=0;n<p._traceIndices.length;n++){var y=p._traceIndices[n],x=e._fullData[y],b=p._id.charAt(0);if(!0===x.visible){var _=x.type;i.traceIs(x,\"histogram\")&&(delete x._xautoBinFinished,delete x._yautoBinFinished);var w=e.calcdata[y];for(a=0;a<w.length;a++){var k,T,A,M=w[a];if(\"splom\"===_){var S=x._axesDim[p._id];if(\"y\"===b){var E=x._diag[S][0];E&&(p=e._fullLayout[h.id2name(E)])}var L=M.trace.dimensions[S].values;for(o=0;o<L.length;o++)for(k=L[o],T=p._categoriesMap[k],s=0;s<M.trace.dimensions.length;s++)if(s!==S){var P=M.trace.dimensions[s];m[T][1].push(P.values[o])}}else if(\"scattergl\"===_){for(o=0;o<M.t.x.length;o++)\"x\"===b&&(k=M.t.x[o],T=k,A=M.t.y[o]),\"y\"===b&&(k=M.t.y[o],T=k,A=M.t.x[o]),m[T][1].push(A);M.t&&M.t._scene&&delete M.t._scene.dirty}else if(M.hasOwnProperty(\"z\")){A=M.z;var O=u(x.type,p,A);for(o=0;o<A.length;o++)for(s=0;s<A[o].length;s++)(T=O(s,o))+1&&m[T][1].push(A[o][s])}else for(\"x\"===b?(k=M.p+1?M.p:M.x,A=M.s||M.v||M.y):\"y\"===b&&(k=M.p+1?M.p:M.y,A=M.s||M.v||M.x),Array.isArray(A)||(A=[A]),o=0;o<A.length;o++)m[k][1].push(A[o])}}}p._categoriesValue=m;var I=[];for(n=0;n<m.length;n++)I.push([m[n][0],f[g](m[n][1])]);I.sort(function(t,e){return t[1]-e[1]}),p._categoriesAggregatedValue=I,p._initialCategories=I.map(function(t){return t[0]}),\"descending\"===v&&p._initialCategories.reverse(),c=c.concat(p.sortByInitialCategories())}}}return c}(c,t);if(_.length){for(p._numBoxes=0,p._numViolins=0,a=0;a<_.length;a++)b(_[a],!0);for(a=0;a<_.length;a++)b(_[a],!1);P(t)}i.getComponentMethod(\"fx\",\"calc\")(t),i.getComponentMethod(\"errorbars\",\"calc\")(t)};var C=/(total|sum|min|max|mean|median) (ascending|descending)/;function L(t,e){for(var r=0;r<t.length;r++){var n=t[r];n.clearCalc(),\"multicategory\"===n.type&&n.setupMultiCategory(e)}}function P(t){var e,r,n,a=t._fullLayout,i=a._visibleModules,o={};for(r=0;r<i.length;r++){var s=i[r],c=s.crossTraceCalc;if(c){var u=s.basePlotModule.name;o[u]?l.pushUnique(o[u],c):o[u]=[c]}}for(n in o){var h=o[n],f=a._subplots[n];if(Array.isArray(f))for(e=0;e<f.length;e++){var p=f[e],d=\"cartesian\"===n?a._plots[p]:a[p];for(r=0;r<h.length;r++)h[r](t,d,p)}else for(r=0;r<h.length;r++)h[r](t)}}m.rehover=function(t){t._fullLayout._rehover&&t._fullLayout._rehover()},m.redrag=function(t){t._fullLayout._redrag&&t._fullLayout._redrag()},m.generalUpdatePerTraceModule=function(t,e,r,n){var a,i=e.traceHash,o={};for(a=0;a<r.length;a++){var s=r[a],c=s[0].trace;c.visible&&(o[c.type]=o[c.type]||[],o[c.type].push(s))}for(var u in i)if(!o[u]){var h=i[u][0];h[0].trace.visible=!1,o[u]=[h]}for(var f in o){var p=o[f];p[0][0].trace._module.plot(t,e,l.filterVisible(p),n)}e.traceHash=o},m.plotBasePlot=function(t,e,r,n,a){var o=i.getModule(t),s=d(e.calcdata,o)[0];o.plot(e,s,n,a)},m.cleanBasePlot=function(t,e,r,n,a){var i=a._has&&a._has(t),o=r._has&&r._has(t);i&&!o&&a[\"_\"+t+\"layer\"].selectAll(\"g.trace\").remove()}},{\"../components/color\":594,\"../constants/numerical\":695,\"../lib\":719,\"../plot_api/plot_schema\":756,\"../plot_api/plot_template\":757,\"../plots/get_data\":802,\"../registry\":848,\"./animation_attributes\":762,\"./attributes\":764,\"./cartesian/axis_ids\":770,\"./command\":791,\"./font_attributes\":793,\"./frame_attributes\":794,\"./layout_attributes\":819,d3:164,\"fast-isnumeric\":226}],829:[function(t,e,r){\"use strict\";e.exports={attr:\"subplot\",name:\"polar\",axisNames:[\"angularaxis\",\"radialaxis\"],axisName2dataArray:{angularaxis:\"theta\",radialaxis:\"r\"},layerNames:[\"draglayer\",\"plotbg\",\"backplot\",\"angular-grid\",\"radial-grid\",\"frontplot\",\"angular-line\",\"radial-line\",\"angular-axis\",\"radial-axis\"],radialDragBoxSize:50,angularDragBoxSize:30,cornerLen:25,cornerHalfWidth:2,MINDRAG:8,MINZOOM:20,OFFEDGE:20}},{}],830:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../lib/polygon\").tester,i=n.findIndexOfMin,o=n.isAngleInsideSector,s=n.angleDelta,l=n.angleDist;function c(t,e,r,n){var a,i,o=n[0],s=n[1],l=h(Math.sin(e)-Math.sin(t)),c=h(Math.cos(e)-Math.cos(t)),u=Math.tan(r),f=h(1/u),p=l/c,d=s-p*o;return f?l&&c?i=u*(a=d/(u-p)):c?(a=s*f,i=s):(a=o,i=o*u):l&&c?(a=0,i=d):c?(a=0,i=s):a=i=NaN,[a,i]}function u(t,e,r,a){return n.isFullCircle([e,r])?function(t,e){var r,n=e.length,a=new Array(n+1);for(r=0;r<n;r++){var i=e[r];a[r]=[t*Math.cos(i),t*Math.sin(i)]}return a[r]=a[0].slice(),a}(t,a):function(t,e,r,a){var s,u,h=a.length,f=[];function p(e){return[t*Math.cos(e),t*Math.sin(e)]}function d(t,e,r){return c(t,e,r,p(t))}function g(t){return n.mod(t,h)}function v(t){return o(t,[e,r])}var m=i(a,function(t){return v(t)?l(t,e):1/0}),y=d(a[m],a[g(m-1)],e);for(f.push(y),s=m,u=0;u<h;s++,u++){var x=a[g(s)];if(!v(x))break;f.push(p(x))}var b=i(a,function(t){return v(t)?l(t,r):1/0}),_=d(a[b],a[g(b+1)],r);return f.push(_),f.push([0,0]),f.push(f[0].slice()),f}(t,e,r,a)}function h(t){return Math.abs(t)>1e-10?t:0}function f(t,e,r){e=e||0,r=r||0;for(var n=t.length,a=new Array(n),i=0;i<n;i++){var o=t[i];a[i]=[e+o[0],r-o[1]]}return a}e.exports={isPtInsidePolygon:function(t,e,r,n,i){if(!o(e,n))return!1;var s,l;r[0]<r[1]?(s=r[0],l=r[1]):(s=r[1],l=r[0]);var c=a(u(s,n[0],n[1],i)),h=a(u(l,n[0],n[1],i)),f=[t*Math.cos(e),t*Math.sin(e)];return h.contains(f)&&!c.contains(f)},findPolygonOffset:function(t,e,r,n){for(var a=1/0,i=1/0,o=u(t,e,r,n),s=0;s<o.length;s++){var l=o[s];a=Math.min(a,l[0]),i=Math.min(i,-l[1])}return[a,i]},findEnclosingVertexAngles:function(t,e){var r=i(e,function(e){var r=s(e,t);return r>0?r:1/0}),a=n.mod(r+1,e.length);return[e[r],e[a]]},findIntersectionXY:c,findXYatLength:function(t,e,r,n){var a=-e*r,i=e*e+1,o=2*(e*a-r),s=a*a+r*r-t*t,l=Math.sqrt(o*o-4*i*s),c=(-o+l)/(2*i),u=(-o-l)/(2*i);return[[c,e*c+a+n],[u,e*u+a+n]]},clampTiny:h,pathPolygon:function(t,e,r,n,a,i){return\"M\"+f(u(t,e,r,n),a,i).join(\"L\")},pathPolygonAnnulus:function(t,e,r,n,a,i,o){var s,l;t<e?(s=t,l=e):(s=e,l=t);var c=f(u(s,r,n,a),i,o);return\"M\"+f(u(l,r,n,a),i,o).reverse().join(\"L\")+\"M\"+c.join(\"L\")}}},{\"../../lib\":719,\"../../lib/polygon\":731}],831:[function(t,e,r){\"use strict\";var n=t(\"../get_data\").getSubplotCalcData,a=t(\"../../lib\").counterRegex,i=t(\"./polar\"),o=t(\"./constants\"),s=o.attr,l=o.name,c=a(l),u={};u[s]={valType:\"subplotid\",dflt:l,editType:\"calc\"},e.exports={attr:s,name:l,idRoot:l,idRegex:c,attrRegex:c,attributes:u,layoutAttributes:t(\"./layout_attributes\"),supplyLayoutDefaults:t(\"./layout_defaults\"),plot:function(t){for(var e=t._fullLayout,r=t.calcdata,a=e._subplots[l],o=0;o<a.length;o++){var s=a[o],c=n(r,l,s),u=e[s]._subplot;u||(u=i(t,s),e[s]._subplot=u),u.plot(c,e,t._promises)}},clean:function(t,e,r,n){for(var a=n._subplots[l]||[],i=n._has&&n._has(\"gl\"),o=e._has&&e._has(\"gl\"),s=i&&!o,c=0;c<a.length;c++){var u=a[c],h=n[u]._subplot;if(!e[u]&&h)for(var f in h.framework.remove(),h.layers[\"radial-axis-title\"].remove(),h.clipPaths)h.clipPaths[f].remove();s&&h._scene&&(h._scene.destroy(),h._scene=null)}},toSVG:t(\"../cartesian\").toSVG}},{\"../../lib\":719,\"../cartesian\":778,\"../get_data\":802,\"./constants\":829,\"./layout_attributes\":832,\"./layout_defaults\":833,\"./polar\":840}],832:[function(t,e,r){\"use strict\";var n=t(\"../../components/color/attributes\"),a=t(\"../cartesian/layout_attributes\"),i=t(\"../domain\").attributes,o=t(\"../../lib\").extendFlat,s=t(\"../../plot_api/edit_types\").overrideAll,l=s({color:a.color,showline:o({},a.showline,{dflt:!0}),linecolor:a.linecolor,linewidth:a.linewidth,showgrid:o({},a.showgrid,{dflt:!0}),gridcolor:a.gridcolor,gridwidth:a.gridwidth},\"plot\",\"from-root\"),c=s({tickmode:a.tickmode,nticks:a.nticks,tick0:a.tick0,dtick:a.dtick,tickvals:a.tickvals,ticktext:a.ticktext,ticks:a.ticks,ticklen:a.ticklen,tickwidth:a.tickwidth,tickcolor:a.tickcolor,showticklabels:a.showticklabels,showtickprefix:a.showtickprefix,tickprefix:a.tickprefix,showticksuffix:a.showticksuffix,ticksuffix:a.ticksuffix,showexponent:a.showexponent,exponentformat:a.exponentformat,separatethousands:a.separatethousands,tickfont:a.tickfont,tickangle:a.tickangle,tickformat:a.tickformat,tickformatstops:a.tickformatstops,layer:a.layer},\"plot\",\"from-root\"),u={visible:o({},a.visible,{dflt:!0}),type:o({},a.type,{values:[\"-\",\"linear\",\"log\",\"date\",\"category\"]}),autorange:o({},a.autorange,{editType:\"plot\"}),rangemode:{valType:\"enumerated\",values:[\"tozero\",\"nonnegative\",\"normal\"],dflt:\"tozero\",editType:\"calc\"},range:o({},a.range,{items:[{valType:\"any\",editType:\"plot\",impliedEdits:{\"^autorange\":!1}},{valType:\"any\",editType:\"plot\",impliedEdits:{\"^autorange\":!1}}],editType:\"plot\"}),categoryorder:a.categoryorder,categoryarray:a.categoryarray,angle:{valType:\"angle\",editType:\"plot\"},side:{valType:\"enumerated\",values:[\"clockwise\",\"counterclockwise\"],dflt:\"clockwise\",editType:\"plot\"},title:s(a.title,\"plot\",\"from-root\"),hoverformat:a.hoverformat,uirevision:{valType:\"any\",editType:\"none\"},editType:\"calc\",_deprecated:{title:a._deprecated.title,titlefont:a._deprecated.titlefont}};u.title.text.dflt=\"\",o(u,l,c);var h={visible:o({},a.visible,{dflt:!0}),type:{valType:\"enumerated\",values:[\"-\",\"linear\",\"category\"],dflt:\"-\",editType:\"calc\",_noTemplating:!0},categoryorder:a.categoryorder,categoryarray:a.categoryarray,thetaunit:{valType:\"enumerated\",values:[\"radians\",\"degrees\"],dflt:\"degrees\",editType:\"calc\"},period:{valType:\"number\",editType:\"calc\",min:0},direction:{valType:\"enumerated\",values:[\"counterclockwise\",\"clockwise\"],dflt:\"counterclockwise\",editType:\"calc\"},rotation:{valType:\"angle\",editType:\"calc\"},hoverformat:a.hoverformat,uirevision:{valType:\"any\",editType:\"none\"},editType:\"calc\"};o(h,l,c),e.exports={domain:i({name:\"polar\",editType:\"plot\"}),sector:{valType:\"info_array\",items:[{valType:\"number\",editType:\"plot\"},{valType:\"number\",editType:\"plot\"}],dflt:[0,360],editType:\"plot\"},hole:{valType:\"number\",min:0,max:1,dflt:0,editType:\"plot\"},bgcolor:{valType:\"color\",editType:\"plot\",dflt:n.background},radialaxis:u,angularaxis:h,gridshape:{valType:\"enumerated\",values:[\"circular\",\"linear\"],dflt:\"circular\",editType:\"plot\"},uirevision:{valType:\"any\",editType:\"none\"},editType:\"calc\"}},{\"../../components/color/attributes\":593,\"../../lib\":719,\"../../plot_api/edit_types\":750,\"../cartesian/layout_attributes\":779,\"../domain\":792}],833:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/color\"),i=t(\"../../plot_api/plot_template\"),o=t(\"../subplot_defaults\"),s=t(\"../get_data\").getSubplotData,l=t(\"../cartesian/tick_value_defaults\"),c=t(\"../cartesian/tick_mark_defaults\"),u=t(\"../cartesian/tick_label_defaults\"),h=t(\"../cartesian/category_order_defaults\"),f=t(\"../cartesian/line_grid_defaults\"),p=t(\"../cartesian/axis_autotype\"),d=t(\"./layout_attributes\"),g=t(\"./set_convert\"),v=t(\"./constants\"),m=v.axisNames;function y(t,e,r,o){var p=r(\"bgcolor\");o.bgColor=a.combine(p,o.paper_bgcolor);var y=r(\"sector\");r(\"hole\");var b,_=s(o.fullData,v.name,o.id),w=o.layoutOut;function k(t,e){return r(b+\".\"+t,e)}for(var T=0;T<m.length;T++){b=m[T],n.isPlainObject(t[b])||(t[b]={});var A=t[b],M=i.newContainer(e,b);M._id=M._name=b,M._attr=o.id+\".\"+b,M._traceIndices=_.map(function(t){return t._expandedIndex});var S=v.axisName2dataArray[b],E=x(A,M,k,_,S);h(A,M,k,{axData:_,dataAttr:S});var C,L,P=k(\"visible\");switch(g(M,e,w),k(\"uirevision\",e.uirevision),P&&(L=(C=k(\"color\"))===A.color?C:o.font.color),M._m=1,b){case\"radialaxis\":var O=k(\"autorange\",!M.isValidRange(A.range));A.autorange=O,!O||\"linear\"!==E&&\"-\"!==E||k(\"rangemode\"),\"reversed\"===O&&(M._m=-1),k(\"range\"),M.cleanRange(\"range\",{dfltRange:[0,1]}),P&&(k(\"side\"),k(\"angle\",y[0]),k(\"title.text\"),n.coerceFont(k,\"title.font\",{family:o.font.family,size:Math.round(1.2*o.font.size),color:L}));break;case\"angularaxis\":if(\"date\"===E){n.log(\"Polar plots do not support date angular axes yet.\");for(var I=0;I<_.length;I++)_[I].visible=!1;E=A.type=M.type=\"linear\"}k(\"linear\"===E?\"thetaunit\":\"period\");var z=k(\"direction\");k(\"rotation\",{counterclockwise:0,clockwise:90}[z])}if(P)l(A,M,k,M.type),u(A,M,k,M.type,{tickSuffixDflt:\"degrees\"===M.thetaunit?\"\\xb0\":void 0}),c(A,M,k,{outerTicks:!0}),k(\"showticklabels\")&&(n.coerceFont(k,\"tickfont\",{family:o.font.family,size:o.font.size,color:L}),k(\"tickangle\"),k(\"tickformat\")),f(A,M,k,{dfltColor:C,bgColor:o.bgColor,blend:60,showLine:!0,showGrid:!0,noZeroLine:!0,attributes:d[b]}),k(\"layer\");\"category\"!==E&&k(\"hoverformat\"),M._input=A}\"category\"===e.angularaxis.type&&r(\"gridshape\")}function x(t,e,r,n,a){if(\"-\"===r(\"type\")){for(var i,o=0;o<n.length;o++)if(n[o].visible){i=n[o];break}i&&i[a]&&(e.type=p(i[a],\"gregorian\")),\"-\"===e.type?e.type=\"linear\":t.type=e.type}return e.type}e.exports=function(t,e,r){o(t,e,r,{type:v.name,attributes:d,handleDefaults:y,font:e.font,paper_bgcolor:e.paper_bgcolor,fullData:r,layoutOut:e})}},{\"../../components/color\":594,\"../../lib\":719,\"../../plot_api/plot_template\":757,\"../cartesian/axis_autotype\":768,\"../cartesian/category_order_defaults\":771,\"../cartesian/line_grid_defaults\":781,\"../cartesian/tick_label_defaults\":786,\"../cartesian/tick_mark_defaults\":787,\"../cartesian/tick_value_defaults\":788,\"../get_data\":802,\"../subplot_defaults\":842,\"./constants\":829,\"./layout_attributes\":832,\"./set_convert\":841}],834:[function(t,e,r){\"use strict\";var n=t(\"../../../traces/scatter/attributes\"),a=n.marker,i=t(\"../../../lib/extend\").extendFlat;[\"Area traces are deprecated!\",\"Please switch to the *barpolar* trace type.\"].join(\" \");e.exports={r:i({},n.r,{}),t:i({},n.t,{}),marker:{color:i({},a.color,{}),size:i({},a.size,{}),symbol:i({},a.symbol,{}),opacity:i({},a.opacity,{}),editType:\"calc\"}}},{\"../../../lib/extend\":710,\"../../../traces/scatter/attributes\":1111}],835:[function(t,e,r){\"use strict\";var n=t(\"../../cartesian/layout_attributes\"),a=t(\"../../../lib/extend\").extendFlat,i=t(\"../../../plot_api/edit_types\").overrideAll,o=[\"Legacy polar charts are deprecated!\",\"Please switch to *polar* subplots.\"].join(\" \"),s=a({},n.domain,{});function l(t,e){return a({},e,{showline:{valType:\"boolean\"},showticklabels:{valType:\"boolean\"},tickorientation:{valType:\"enumerated\",values:[\"horizontal\",\"vertical\"]},ticklen:{valType:\"number\",min:0},tickcolor:{valType:\"color\"},ticksuffix:{valType:\"string\"},endpadding:{valType:\"number\",description:o},visible:{valType:\"boolean\"}})}e.exports=i({radialaxis:l(0,{range:{valType:\"info_array\",items:[{valType:\"number\"},{valType:\"number\"}]},domain:s,orientation:{valType:\"number\"}}),angularaxis:l(0,{range:{valType:\"info_array\",items:[{valType:\"number\",dflt:0},{valType:\"number\",dflt:360}]},domain:s}),layout:{direction:{valType:\"enumerated\",values:[\"clockwise\",\"counterclockwise\"]},orientation:{valType:\"angle\"}}},\"plot\",\"nested\")},{\"../../../lib/extend\":710,\"../../../plot_api/edit_types\":750,\"../../cartesian/layout_attributes\":779}],836:[function(t,e,r){\"use strict\";(e.exports=t(\"./micropolar\")).manager=t(\"./micropolar_manager\")},{\"./micropolar\":837,\"./micropolar_manager\":838}],837:[function(t,e,r){var n=t(\"d3\"),a=t(\"../../../lib\").extendDeepAll,i=t(\"../../../constants/alignment\").MID_SHIFT,o=e.exports={version:\"0.2.2\"};o.Axis=function(){var t,e,r,s,l={data:[],layout:{}},c={},u={},h=n.dispatch(\"hover\"),f={};return f.render=function(c){return function(c){e=c||e;var h=l.data,f=l.layout;(\"string\"==typeof e||e.nodeName)&&(e=n.select(e)),e.datum(h).each(function(e,l){var c=e.slice();u={data:o.util.cloneJson(c),layout:o.util.cloneJson(f)};var h=0;c.forEach(function(t,e){t.color||(t.color=f.defaultColorRange[h],h=(h+1)%f.defaultColorRange.length),t.strokeColor||(t.strokeColor=\"LinePlot\"===t.geometry?t.color:n.rgb(t.color).darker().toString()),u.data[e].color=t.color,u.data[e].strokeColor=t.strokeColor,u.data[e].strokeDash=t.strokeDash,u.data[e].strokeSize=t.strokeSize});var p=c.filter(function(t,e){var r=t.visible;return\"undefined\"==typeof r||!0===r}),d=!1,g=p.map(function(t,e){return d=d||\"undefined\"!=typeof t.groupId,t});if(d){var v=n.nest().key(function(t,e){return\"undefined\"!=typeof t.groupId?t.groupId:\"unstacked\"}).entries(g),m=[],y=v.map(function(t,e){if(\"unstacked\"===t.key)return t.values;var r=t.values[0].r.map(function(t,e){return 0});return t.values.forEach(function(t,e,n){t.yStack=[r],m.push(r),r=o.util.sumArrays(t.r,r)}),t.values});p=n.merge(y)}p.forEach(function(t,e){t.t=Array.isArray(t.t[0])?t.t:[t.t],t.r=Array.isArray(t.r[0])?t.r:[t.r]});var x=Math.min(f.width-f.margin.left-f.margin.right,f.height-f.margin.top-f.margin.bottom)/2;x=Math.max(10,x);var b,_=[f.margin.left+x,f.margin.top+x];b=d?[0,n.max(o.util.sumArrays(o.util.arrayLast(p).r[0],o.util.arrayLast(m)))]:n.extent(o.util.flattenArray(p.map(function(t,e){return t.r}))),f.radialAxis.domain!=o.DATAEXTENT&&(b[0]=0),r=n.scale.linear().domain(f.radialAxis.domain!=o.DATAEXTENT&&f.radialAxis.domain?f.radialAxis.domain:b).range([0,x]),u.layout.radialAxis.domain=r.domain();var w,k=o.util.flattenArray(p.map(function(t,e){return t.t})),T=\"string\"==typeof k[0];T&&(k=o.util.deduplicate(k),w=k.slice(),k=n.range(k.length),p=p.map(function(t,e){var r=t;return t.t=[k],d&&(r.yStack=t.yStack),r}));var A=p.filter(function(t,e){return\"LinePlot\"===t.geometry||\"DotPlot\"===t.geometry}).length===p.length,M=null===f.needsEndSpacing?T||!A:f.needsEndSpacing,S=f.angularAxis.domain&&f.angularAxis.domain!=o.DATAEXTENT&&!T&&f.angularAxis.domain[0]>=0?f.angularAxis.domain:n.extent(k),E=Math.abs(k[1]-k[0]);A&&!T&&(E=0);var C=S.slice();M&&T&&(C[1]+=E);var L=f.angularAxis.ticksCount||4;L>8&&(L=L/(L/8)+L%8),f.angularAxis.ticksStep&&(L=(C[1]-C[0])/L);var P=f.angularAxis.ticksStep||(C[1]-C[0])/(L*(f.minorTicks+1));w&&(P=Math.max(Math.round(P),1)),C[2]||(C[2]=P);var O=n.range.apply(this,C);if(O=O.map(function(t,e){return parseFloat(t.toPrecision(12))}),s=n.scale.linear().domain(C.slice(0,2)).range(\"clockwise\"===f.direction?[0,360]:[360,0]),u.layout.angularAxis.domain=s.domain(),u.layout.angularAxis.endPadding=M?E:0,\"undefined\"==typeof(t=n.select(this).select(\"svg.chart-root\"))||t.empty()){var I=(new DOMParser).parseFromString(\"<svg xmlns='http://www.w3.org/2000/svg' class='chart-root'>' + '<g class='outer-group'>' + '<g class='chart-group'>' + '<circle class='background-circle'></circle>' + '<g class='geometry-group'></g>' + '<g class='radial axis-group'>' + '<circle class='outside-circle'></circle>' + '</g>' + '<g class='angular axis-group'></g>' + '<g class='guides-group'><line></line><circle r='0'></circle></g>' + '</g>' + '<g class='legend-group'></g>' + '<g class='tooltips-group'></g>' + '<g class='title-group'><text></text></g>' + '</g>' + '</svg>\",\"application/xml\"),z=this.appendChild(this.ownerDocument.importNode(I.documentElement,!0));t=n.select(z)}t.select(\".guides-group\").style({\"pointer-events\":\"none\"}),t.select(\".angular.axis-group\").style({\"pointer-events\":\"none\"}),t.select(\".radial.axis-group\").style({\"pointer-events\":\"none\"});var D,R=t.select(\".chart-group\"),F={fill:\"none\",stroke:f.tickColor},B={\"font-size\":f.font.size,\"font-family\":f.font.family,fill:f.font.color,\"text-shadow\":[\"-1px 0px\",\"1px -1px\",\"-1px 1px\",\"1px 1px\"].map(function(t,e){return\" \"+t+\" 0 \"+f.font.outlineColor}).join(\",\")};if(f.showLegend){D=t.select(\".legend-group\").attr({transform:\"translate(\"+[x,f.margin.top]+\")\"}).style({display:\"block\"});var N=p.map(function(t,e){var r=o.util.cloneJson(t);return r.symbol=\"DotPlot\"===t.geometry?t.dotType||\"circle\":\"LinePlot\"!=t.geometry?\"square\":\"line\",r.visibleInLegend=\"undefined\"==typeof t.visibleInLegend||t.visibleInLegend,r.color=\"LinePlot\"===t.geometry?t.strokeColor:t.color,r});o.Legend().config({data:p.map(function(t,e){return t.name||\"Element\"+e}),legendConfig:a({},o.Legend.defaultConfig().legendConfig,{container:D,elements:N,reverseOrder:f.legend.reverseOrder})})();var j=D.node().getBBox();x=Math.min(f.width-j.width-f.margin.left-f.margin.right,f.height-f.margin.top-f.margin.bottom)/2,x=Math.max(10,x),_=[f.margin.left+x,f.margin.top+x],r.range([0,x]),u.layout.radialAxis.domain=r.domain(),D.attr(\"transform\",\"translate(\"+[_[0]+x,_[1]-x]+\")\")}else D=t.select(\".legend-group\").style({display:\"none\"});t.attr({width:f.width,height:f.height}).style({opacity:f.opacity}),R.attr(\"transform\",\"translate(\"+_+\")\").style({cursor:\"crosshair\"});var V=[(f.width-(f.margin.left+f.margin.right+2*x+(j?j.width:0)))/2,(f.height-(f.margin.top+f.margin.bottom+2*x))/2];if(V[0]=Math.max(0,V[0]),V[1]=Math.max(0,V[1]),t.select(\".outer-group\").attr(\"transform\",\"translate(\"+V+\")\"),f.title&&f.title.text){var U=t.select(\"g.title-group text\").style(B).text(f.title.text),q=U.node().getBBox();U.attr({x:_[0]-q.width/2,y:_[1]-x-20})}var H=t.select(\".radial.axis-group\");if(f.radialAxis.gridLinesVisible){var G=H.selectAll(\"circle.grid-circle\").data(r.ticks(5));G.enter().append(\"circle\").attr({class:\"grid-circle\"}).style(F),G.attr(\"r\",r),G.exit().remove()}H.select(\"circle.outside-circle\").attr({r:x}).style(F);var Y=t.select(\"circle.background-circle\").attr({r:x}).style({fill:f.backgroundColor,stroke:f.stroke});function W(t,e){return s(t)%360+f.orientation}if(f.radialAxis.visible){var X=n.svg.axis().scale(r).ticks(5).tickSize(5);H.call(X).attr({transform:\"rotate(\"+f.radialAxis.orientation+\")\"}),H.selectAll(\".domain\").style(F),H.selectAll(\"g>text\").text(function(t,e){return this.textContent+f.radialAxis.ticksSuffix}).style(B).style({\"text-anchor\":\"start\"}).attr({x:0,y:0,dx:0,dy:0,transform:function(t,e){return\"horizontal\"===f.radialAxis.tickOrientation?\"rotate(\"+-f.radialAxis.orientation+\") translate(\"+[0,B[\"font-size\"]]+\")\":\"translate(\"+[0,B[\"font-size\"]]+\")\"}}),H.selectAll(\"g>line\").style({stroke:\"black\"})}var Z=t.select(\".angular.axis-group\").selectAll(\"g.angular-tick\").data(O),J=Z.enter().append(\"g\").classed(\"angular-tick\",!0);Z.attr({transform:function(t,e){return\"rotate(\"+W(t)+\")\"}}).style({display:f.angularAxis.visible?\"block\":\"none\"}),Z.exit().remove(),J.append(\"line\").classed(\"grid-line\",!0).classed(\"major\",function(t,e){return e%(f.minorTicks+1)==0}).classed(\"minor\",function(t,e){return!(e%(f.minorTicks+1)==0)}).style(F),J.selectAll(\".minor\").style({stroke:f.minorTickColor}),Z.select(\"line.grid-line\").attr({x1:f.tickLength?x-f.tickLength:0,x2:x}).style({display:f.angularAxis.gridLinesVisible?\"block\":\"none\"}),J.append(\"text\").classed(\"axis-text\",!0).style(B);var K=Z.select(\"text.axis-text\").attr({x:x+f.labelOffset,dy:i+\"em\",transform:function(t,e){var r=W(t),n=x+f.labelOffset,a=f.angularAxis.tickOrientation;return\"horizontal\"==a?\"rotate(\"+-r+\" \"+n+\" 0)\":\"radial\"==a?r<270&&r>90?\"rotate(180 \"+n+\" 0)\":null:\"rotate(\"+(r<=180&&r>0?-90:90)+\" \"+n+\" 0)\"}}).style({\"text-anchor\":\"middle\",display:f.angularAxis.labelsVisible?\"block\":\"none\"}).text(function(t,e){return e%(f.minorTicks+1)!=0?\"\":w?w[t]+f.angularAxis.ticksSuffix:t+f.angularAxis.ticksSuffix}).style(B);f.angularAxis.rewriteTicks&&K.text(function(t,e){return e%(f.minorTicks+1)!=0?\"\":f.angularAxis.rewriteTicks(this.textContent,e)});var Q=n.max(R.selectAll(\".angular-tick text\")[0].map(function(t,e){return t.getCTM().e+t.getBBox().width}));D.attr({transform:\"translate(\"+[x+Q,f.margin.top]+\")\"});var $=t.select(\"g.geometry-group\").selectAll(\"g\").size()>0,tt=t.select(\"g.geometry-group\").selectAll(\"g.geometry\").data(p);if(tt.enter().append(\"g\").attr({class:function(t,e){return\"geometry geometry\"+e}}),tt.exit().remove(),p[0]||$){var et=[];p.forEach(function(t,e){var n={};n.radialScale=r,n.angularScale=s,n.container=tt.filter(function(t,r){return r==e}),n.geometry=t.geometry,n.orientation=f.orientation,n.direction=f.direction,n.index=e,et.push({data:t,geometryConfig:n})});var rt=n.nest().key(function(t,e){return\"undefined\"!=typeof t.data.groupId||\"unstacked\"}).entries(et),nt=[];rt.forEach(function(t,e){\"unstacked\"===t.key?nt=nt.concat(t.values.map(function(t,e){return[t]})):nt.push(t.values)}),nt.forEach(function(t,e){var r;r=Array.isArray(t)?t[0].geometryConfig.geometry:t.geometryConfig.geometry;var n=t.map(function(t,e){return a(o[r].defaultConfig(),t)});o[r]().config(n)()})}var at,it,ot=t.select(\".guides-group\"),st=t.select(\".tooltips-group\"),lt=o.tooltipPanel().config({container:st,fontSize:8})(),ct=o.tooltipPanel().config({container:st,fontSize:8})(),ut=o.tooltipPanel().config({container:st,hasTick:!0})();if(!T){var ht=ot.select(\"line\").attr({x1:0,y1:0,y2:0}).style({stroke:\"grey\",\"pointer-events\":\"none\"});R.on(\"mousemove.angular-guide\",function(t,e){var r=o.util.getMousePos(Y).angle;ht.attr({x2:-x,transform:\"rotate(\"+r+\")\"}).style({opacity:.5});var n=(r+180+360-f.orientation)%360;at=s.invert(n);var a=o.util.convertToCartesian(x+12,r+180);lt.text(o.util.round(at)).move([a[0]+_[0],a[1]+_[1]])}).on(\"mouseout.angular-guide\",function(t,e){ot.select(\"line\").style({opacity:0})})}var ft=ot.select(\"circle\").style({stroke:\"grey\",fill:\"none\"});R.on(\"mousemove.radial-guide\",function(t,e){var n=o.util.getMousePos(Y).radius;ft.attr({r:n}).style({opacity:.5}),it=r.invert(o.util.getMousePos(Y).radius);var a=o.util.convertToCartesian(n,f.radialAxis.orientation);ct.text(o.util.round(it)).move([a[0]+_[0],a[1]+_[1]])}).on(\"mouseout.radial-guide\",function(t,e){ft.style({opacity:0}),ut.hide(),lt.hide(),ct.hide()}),t.selectAll(\".geometry-group .mark\").on(\"mouseover.tooltip\",function(e,r){var a=n.select(this),i=this.style.fill,s=\"black\",l=this.style.opacity||1;if(a.attr({\"data-opacity\":l}),i&&\"none\"!==i){a.attr({\"data-fill\":i}),s=n.hsl(i).darker().toString(),a.style({fill:s,opacity:1});var c={t:o.util.round(e[0]),r:o.util.round(e[1])};T&&(c.t=w[e[0]]);var u=\"t: \"+c.t+\", r: \"+c.r,h=this.getBoundingClientRect(),f=t.node().getBoundingClientRect(),p=[h.left+h.width/2-V[0]-f.left,h.top+h.height/2-V[1]-f.top];ut.config({color:s}).text(u),ut.move(p)}else i=this.style.stroke||\"black\",a.attr({\"data-stroke\":i}),s=n.hsl(i).darker().toString(),a.style({stroke:s,opacity:1})}).on(\"mousemove.tooltip\",function(t,e){if(0!=n.event.which)return!1;n.select(this).attr(\"data-fill\")&&ut.show()}).on(\"mouseout.tooltip\",function(t,e){ut.hide();var r=n.select(this),a=r.attr(\"data-fill\");a?r.style({fill:a,opacity:r.attr(\"data-opacity\")}):r.style({stroke:r.attr(\"data-stroke\"),opacity:r.attr(\"data-opacity\")})})})}(c),this},f.config=function(t){if(!arguments.length)return l;var e=o.util.cloneJson(t);return e.data.forEach(function(t,e){l.data[e]||(l.data[e]={}),a(l.data[e],o.Axis.defaultConfig().data[0]),a(l.data[e],t)}),a(l.layout,o.Axis.defaultConfig().layout),a(l.layout,e.layout),this},f.getLiveConfig=function(){return u},f.getinputConfig=function(){return c},f.radialScale=function(t){return r},f.angularScale=function(t){return s},f.svg=function(){return t},n.rebind(f,h,\"on\"),f},o.Axis.defaultConfig=function(t,e){return{data:[{t:[1,2,3,4],r:[10,11,12,13],name:\"Line1\",geometry:\"LinePlot\",color:null,strokeDash:\"solid\",strokeColor:null,strokeSize:\"1\",visibleInLegend:!0,opacity:1}],layout:{defaultColorRange:n.scale.category10().range(),title:null,height:450,width:500,margin:{top:40,right:40,bottom:40,left:40},font:{size:12,color:\"gray\",outlineColor:\"white\",family:\"Tahoma, sans-serif\"},direction:\"clockwise\",orientation:0,labelOffset:10,radialAxis:{domain:null,orientation:-45,ticksSuffix:\"\",visible:!0,gridLinesVisible:!0,tickOrientation:\"horizontal\",rewriteTicks:null},angularAxis:{domain:[0,360],ticksSuffix:\"\",visible:!0,gridLinesVisible:!0,labelsVisible:!0,tickOrientation:\"horizontal\",rewriteTicks:null,ticksCount:null,ticksStep:null},minorTicks:0,tickLength:null,tickColor:\"silver\",minorTickColor:\"#eee\",backgroundColor:\"none\",needsEndSpacing:null,showLegend:!0,legend:{reverseOrder:!1},opacity:1}}},o.util={},o.DATAEXTENT=\"dataExtent\",o.AREA=\"AreaChart\",o.LINE=\"LinePlot\",o.DOT=\"DotPlot\",o.BAR=\"BarChart\",o.util._override=function(t,e){for(var r in t)r in e&&(e[r]=t[r])},o.util._extend=function(t,e){for(var r in t)e[r]=t[r]},o.util._rndSnd=function(){return 2*Math.random()-1+(2*Math.random()-1)+(2*Math.random()-1)},o.util.dataFromEquation2=function(t,e){var r=e||6;return n.range(0,360+r,r).map(function(e,r){var n=e*Math.PI/180;return[e,t(n)]})},o.util.dataFromEquation=function(t,e,r){var a=e||6,i=[],o=[];n.range(0,360+a,a).forEach(function(e,r){var n=e*Math.PI/180,a=t(n);i.push(e),o.push(a)});var s={t:i,r:o};return r&&(s.name=r),s},o.util.ensureArray=function(t,e){if(\"undefined\"==typeof t)return null;var r=[].concat(t);return n.range(e).map(function(t,e){return r[e]||r[0]})},o.util.fillArrays=function(t,e,r){return e.forEach(function(e,n){t[e]=o.util.ensureArray(t[e],r)}),t},o.util.cloneJson=function(t){return JSON.parse(JSON.stringify(t))},o.util.validateKeys=function(t,e){\"string\"==typeof e&&(e=e.split(\".\"));var r=e.shift();return t[r]&&(!e.length||objHasKeys(t[r],e))},o.util.sumArrays=function(t,e){return n.zip(t,e).map(function(t,e){return n.sum(t)})},o.util.arrayLast=function(t){return t[t.length-1]},o.util.arrayEqual=function(t,e){for(var r=Math.max(t.length,e.length,1);r-- >=0&&t[r]===e[r];);return-2===r},o.util.flattenArray=function(t){for(var e=[];!o.util.arrayEqual(e,t);)e=t,t=[].concat.apply([],t);return t},o.util.deduplicate=function(t){return t.filter(function(t,e,r){return r.indexOf(t)==e})},o.util.convertToCartesian=function(t,e){var r=e*Math.PI/180;return[t*Math.cos(r),t*Math.sin(r)]},o.util.round=function(t,e){var r=e||2,n=Math.pow(10,r);return Math.round(t*n)/n},o.util.getMousePos=function(t){var e=n.mouse(t.node()),r=e[0],a=e[1],i={};return i.x=r,i.y=a,i.pos=e,i.angle=180*(Math.atan2(a,r)+Math.PI)/Math.PI,i.radius=Math.sqrt(r*r+a*a),i},o.util.duplicatesCount=function(t){for(var e,r={},n={},a=0,i=t.length;a<i;a++)(e=t[a])in r?(r[e]++,n[e]=r[e]):r[e]=1;return n},o.util.duplicates=function(t){return Object.keys(o.util.duplicatesCount(t))},o.util.translator=function(t,e,r,n){if(n){var a=r.slice();r=e,e=a}var i=e.reduce(function(t,e){if(\"undefined\"!=typeof t)return t[e]},t);\"undefined\"!=typeof i&&(e.reduce(function(t,r,n){if(\"undefined\"!=typeof t)return n===e.length-1&&delete t[r],t[r]},t),r.reduce(function(t,e,n){return\"undefined\"==typeof t[e]&&(t[e]={}),n===r.length-1&&(t[e]=i),t[e]},t))},o.PolyChart=function(){var t=[o.PolyChart.defaultConfig()],e=n.dispatch(\"hover\"),r={solid:\"none\",dash:[5,2],dot:[2,5]};function i(){var e=t[0].geometryConfig,a=e.container;\"string\"==typeof a&&(a=n.select(a)),a.datum(t).each(function(t,a){var i=!!t[0].data.yStack,o=t.map(function(t,e){return i?n.zip(t.data.t[0],t.data.r[0],t.data.yStack[0]):n.zip(t.data.t[0],t.data.r[0])}),s=e.angularScale,l=e.radialScale.domain()[0],c={bar:function(r,a,i){var o=t[i].data,l=e.radialScale(r[1])-e.radialScale(0),c=e.radialScale(r[2]||0),u=o.barWidth;n.select(this).attr({class:\"mark bar\",d:\"M\"+[[l+c,-u/2],[l+c,u/2],[c,u/2],[c,-u/2]].join(\"L\")+\"Z\",transform:function(t,r){return\"rotate(\"+(e.orientation+s(t[0]))+\")\"}})}};c.dot=function(r,a,i){var o=r[2]?[r[0],r[1]+r[2]]:r,s=n.svg.symbol().size(t[i].data.dotSize).type(t[i].data.dotType)(r,a);n.select(this).attr({class:\"mark dot\",d:s,transform:function(t,r){var n,a,i,s=(n=function(t,r){var n=e.radialScale(t[1]),a=(e.angularScale(t[0])+e.orientation)*Math.PI/180;return{r:n,t:a}}(o),a=n.r*Math.cos(n.t),i=n.r*Math.sin(n.t),{x:a,y:i});return\"translate(\"+[s.x,s.y]+\")\"}})};var u=n.svg.line.radial().interpolate(t[0].data.lineInterpolation).radius(function(t){return e.radialScale(t[1])}).angle(function(t){return e.angularScale(t[0])*Math.PI/180});c.line=function(r,a,i){var s=r[2]?o[i].map(function(t,e){return[t[0],t[1]+t[2]]}):o[i];if(n.select(this).each(c.dot).style({opacity:function(e,r){return+t[i].data.dotVisible},fill:d.stroke(r,a,i)}).attr({class:\"mark dot\"}),!(a>0)){var l=n.select(this.parentNode).selectAll(\"path.line\").data([0]);l.enter().insert(\"path\"),l.attr({class:\"line\",d:u(s),transform:function(t,r){return\"rotate(\"+(e.orientation+90)+\")\"},\"pointer-events\":\"none\"}).style({fill:function(t,e){return d.fill(r,a,i)},\"fill-opacity\":0,stroke:function(t,e){return d.stroke(r,a,i)},\"stroke-width\":function(t,e){return d[\"stroke-width\"](r,a,i)},\"stroke-dasharray\":function(t,e){return d[\"stroke-dasharray\"](r,a,i)},opacity:function(t,e){return d.opacity(r,a,i)},display:function(t,e){return d.display(r,a,i)}})}};var h=e.angularScale.range(),f=Math.abs(h[1]-h[0])/o[0].length*Math.PI/180,p=n.svg.arc().startAngle(function(t){return-f/2}).endAngle(function(t){return f/2}).innerRadius(function(t){return e.radialScale(l+(t[2]||0))}).outerRadius(function(t){return e.radialScale(l+(t[2]||0))+e.radialScale(t[1])});c.arc=function(t,r,a){n.select(this).attr({class:\"mark arc\",d:p,transform:function(t,r){return\"rotate(\"+(e.orientation+s(t[0])+90)+\")\"}})};var d={fill:function(e,r,n){return t[n].data.color},stroke:function(e,r,n){return t[n].data.strokeColor},\"stroke-width\":function(e,r,n){return t[n].data.strokeSize+\"px\"},\"stroke-dasharray\":function(e,n,a){return r[t[a].data.strokeDash]},opacity:function(e,r,n){return t[n].data.opacity},display:function(e,r,n){return\"undefined\"==typeof t[n].data.visible||t[n].data.visible?\"block\":\"none\"}},g=n.select(this).selectAll(\"g.layer\").data(o);g.enter().append(\"g\").attr({class:\"layer\"});var v=g.selectAll(\"path.mark\").data(function(t,e){return t});v.enter().append(\"path\").attr({class:\"mark\"}),v.style(d).each(c[e.geometryType]),v.exit().remove(),g.exit().remove()})}return i.config=function(e){return arguments.length?(e.forEach(function(e,r){t[r]||(t[r]={}),a(t[r],o.PolyChart.defaultConfig()),a(t[r],e)}),this):t},i.getColorScale=function(){},n.rebind(i,e,\"on\"),i},o.PolyChart.defaultConfig=function(){return{data:{name:\"geom1\",t:[[1,2,3,4]],r:[[1,2,3,4]],dotType:\"circle\",dotSize:64,dotVisible:!1,barWidth:20,color:\"#ffa500\",strokeSize:1,strokeColor:\"silver\",strokeDash:\"solid\",opacity:1,index:0,visible:!0,visibleInLegend:!0},geometryConfig:{geometry:\"LinePlot\",geometryType:\"arc\",direction:\"clockwise\",orientation:0,container:\"body\",radialScale:null,angularScale:null,colorScale:n.scale.category20()}}},o.BarChart=function(){return o.PolyChart()},o.BarChart.defaultConfig=function(){return{geometryConfig:{geometryType:\"bar\"}}},o.AreaChart=function(){return o.PolyChart()},o.AreaChart.defaultConfig=function(){return{geometryConfig:{geometryType:\"arc\"}}},o.DotPlot=function(){return o.PolyChart()},o.DotPlot.defaultConfig=function(){return{geometryConfig:{geometryType:\"dot\",dotType:\"circle\"}}},o.LinePlot=function(){return o.PolyChart()},o.LinePlot.defaultConfig=function(){return{geometryConfig:{geometryType:\"line\"}}},o.Legend=function(){var t=o.Legend.defaultConfig(),e=n.dispatch(\"hover\");function r(){var e=t.legendConfig,i=t.data.map(function(t,r){return[].concat(t).map(function(t,n){var i=a({},e.elements[r]);return i.name=t,i.color=[].concat(e.elements[r].color)[n],i})}),o=n.merge(i);o=o.filter(function(t,r){return e.elements[r]&&(e.elements[r].visibleInLegend||\"undefined\"==typeof e.elements[r].visibleInLegend)}),e.reverseOrder&&(o=o.reverse());var s=e.container;(\"string\"==typeof s||s.nodeName)&&(s=n.select(s));var l=o.map(function(t,e){return t.color}),c=e.fontSize,u=null==e.isContinuous?\"number\"==typeof o[0]:e.isContinuous,h=u?e.height:c*o.length,f=s.classed(\"legend-group\",!0).selectAll(\"svg\").data([0]),p=f.enter().append(\"svg\").attr({width:300,height:h+c,xmlns:\"http://www.w3.org/2000/svg\",\"xmlns:xlink\":\"http://www.w3.org/1999/xlink\",version:\"1.1\"});p.append(\"g\").classed(\"legend-axis\",!0),p.append(\"g\").classed(\"legend-marks\",!0);var d=n.range(o.length),g=n.scale[u?\"linear\":\"ordinal\"]().domain(d).range(l),v=n.scale[u?\"linear\":\"ordinal\"]().domain(d)[u?\"range\":\"rangePoints\"]([0,h]);if(u){var m=f.select(\".legend-marks\").append(\"defs\").append(\"linearGradient\").attr({id:\"grad1\",x1:\"0%\",y1:\"0%\",x2:\"0%\",y2:\"100%\"}).selectAll(\"stop\").data(l);m.enter().append(\"stop\"),m.attr({offset:function(t,e){return e/(l.length-1)*100+\"%\"}}).style({\"stop-color\":function(t,e){return t}}),f.append(\"rect\").classed(\"legend-mark\",!0).attr({height:e.height,width:e.colorBandWidth,fill:\"url(#grad1)\"})}else{var y=f.select(\".legend-marks\").selectAll(\"path.legend-mark\").data(o);y.enter().append(\"path\").classed(\"legend-mark\",!0),y.attr({transform:function(t,e){return\"translate(\"+[c/2,v(e)+c/2]+\")\"},d:function(t,e){var r,a,i,o=t.symbol;return i=3*(a=c),\"line\"===(r=o)?\"M\"+[[-a/2,-a/12],[a/2,-a/12],[a/2,a/12],[-a/2,a/12]]+\"Z\":-1!=n.svg.symbolTypes.indexOf(r)?n.svg.symbol().type(r).size(i)():n.svg.symbol().type(\"square\").size(i)()},fill:function(t,e){return g(e)}}),y.exit().remove()}var x=n.svg.axis().scale(v).orient(\"right\"),b=f.select(\"g.legend-axis\").attr({transform:\"translate(\"+[u?e.colorBandWidth:c,c/2]+\")\"}).call(x);return b.selectAll(\".domain\").style({fill:\"none\",stroke:\"none\"}),b.selectAll(\"line\").style({fill:\"none\",stroke:u?e.textColor:\"none\"}),b.selectAll(\"text\").style({fill:e.textColor,\"font-size\":e.fontSize}).text(function(t,e){return o[e].name}),r}return r.config=function(e){return arguments.length?(a(t,e),this):t},n.rebind(r,e,\"on\"),r},o.Legend.defaultConfig=function(t,e){return{data:[\"a\",\"b\",\"c\"],legendConfig:{elements:[{symbol:\"line\",color:\"red\"},{symbol:\"square\",color:\"yellow\"},{symbol:\"diamond\",color:\"limegreen\"}],height:150,colorBandWidth:30,fontSize:12,container:\"body\",isContinuous:null,textColor:\"grey\",reverseOrder:!1}}},o.tooltipPanel=function(){var t,e,r,i={container:null,hasTick:!1,fontSize:12,color:\"white\",padding:5},s=\"tooltip-\"+o.tooltipPanel.uid++,l=10,c=function(){var n=(t=i.container.selectAll(\"g.\"+s).data([0])).enter().append(\"g\").classed(s,!0).style({\"pointer-events\":\"none\",display:\"none\"});return r=n.append(\"path\").style({fill:\"white\",\"fill-opacity\":.9}).attr({d:\"M0 0\"}),e=n.append(\"text\").attr({dx:i.padding+l,dy:.3*+i.fontSize}),c};return c.text=function(a){var o=n.hsl(i.color).l,s=o>=.5?\"#aaa\":\"white\",u=o>=.5?\"black\":\"white\",h=a||\"\";e.style({fill:u,\"font-size\":i.fontSize+\"px\"}).text(h);var f=i.padding,p=e.node().getBBox(),d={fill:i.color,stroke:s,\"stroke-width\":\"2px\"},g=p.width+2*f+l,v=p.height+2*f;return r.attr({d:\"M\"+[[l,-v/2],[l,-v/4],[i.hasTick?0:l,0],[l,v/4],[l,v/2],[g,v/2],[g,-v/2]].join(\"L\")+\"Z\"}).style(d),t.attr({transform:\"translate(\"+[l,-v/2+2*f]+\")\"}),t.style({display:\"block\"}),c},c.move=function(e){if(t)return t.attr({transform:\"translate(\"+[e[0],e[1]]+\")\"}).style({display:\"block\"}),c},c.hide=function(){if(t)return t.style({display:\"none\"}),c},c.show=function(){if(t)return t.style({display:\"block\"}),c},c.config=function(t){return a(i,t),c},c},o.tooltipPanel.uid=1,o.adapter={},o.adapter.plotly=function(){var t={convert:function(t,e){var r={};if(t.data&&(r.data=t.data.map(function(t,r){var n=a({},t);return[[n,[\"marker\",\"color\"],[\"color\"]],[n,[\"marker\",\"opacity\"],[\"opacity\"]],[n,[\"marker\",\"line\",\"color\"],[\"strokeColor\"]],[n,[\"marker\",\"line\",\"dash\"],[\"strokeDash\"]],[n,[\"marker\",\"line\",\"width\"],[\"strokeSize\"]],[n,[\"marker\",\"symbol\"],[\"dotType\"]],[n,[\"marker\",\"size\"],[\"dotSize\"]],[n,[\"marker\",\"barWidth\"],[\"barWidth\"]],[n,[\"line\",\"interpolation\"],[\"lineInterpolation\"]],[n,[\"showlegend\"],[\"visibleInLegend\"]]].forEach(function(t,r){o.util.translator.apply(null,t.concat(e))}),e||delete n.marker,e&&delete n.groupId,e?(\"LinePlot\"===n.geometry?(n.type=\"scatter\",!0===n.dotVisible?(delete n.dotVisible,n.mode=\"lines+markers\"):n.mode=\"lines\"):\"DotPlot\"===n.geometry?(n.type=\"scatter\",n.mode=\"markers\"):\"AreaChart\"===n.geometry?n.type=\"area\":\"BarChart\"===n.geometry&&(n.type=\"bar\"),delete n.geometry):(\"scatter\"===n.type?\"lines\"===n.mode?n.geometry=\"LinePlot\":\"markers\"===n.mode?n.geometry=\"DotPlot\":\"lines+markers\"===n.mode&&(n.geometry=\"LinePlot\",n.dotVisible=!0):\"area\"===n.type?n.geometry=\"AreaChart\":\"bar\"===n.type&&(n.geometry=\"BarChart\"),delete n.mode,delete n.type),n}),!e&&t.layout&&\"stack\"===t.layout.barmode)){var i=o.util.duplicates(r.data.map(function(t,e){return t.geometry}));r.data.forEach(function(t,e){var n=i.indexOf(t.geometry);-1!=n&&(r.data[e].groupId=n)})}if(t.layout){var s=a({},t.layout);if([[s,[\"plot_bgcolor\"],[\"backgroundColor\"]],[s,[\"showlegend\"],[\"showLegend\"]],[s,[\"radialaxis\"],[\"radialAxis\"]],[s,[\"angularaxis\"],[\"angularAxis\"]],[s.angularaxis,[\"showline\"],[\"gridLinesVisible\"]],[s.angularaxis,[\"showticklabels\"],[\"labelsVisible\"]],[s.angularaxis,[\"nticks\"],[\"ticksCount\"]],[s.angularaxis,[\"tickorientation\"],[\"tickOrientation\"]],[s.angularaxis,[\"ticksuffix\"],[\"ticksSuffix\"]],[s.angularaxis,[\"range\"],[\"domain\"]],[s.angularaxis,[\"endpadding\"],[\"endPadding\"]],[s.radialaxis,[\"showline\"],[\"gridLinesVisible\"]],[s.radialaxis,[\"tickorientation\"],[\"tickOrientation\"]],[s.radialaxis,[\"ticksuffix\"],[\"ticksSuffix\"]],[s.radialaxis,[\"range\"],[\"domain\"]],[s.angularAxis,[\"showline\"],[\"gridLinesVisible\"]],[s.angularAxis,[\"showticklabels\"],[\"labelsVisible\"]],[s.angularAxis,[\"nticks\"],[\"ticksCount\"]],[s.angularAxis,[\"tickorientation\"],[\"tickOrientation\"]],[s.angularAxis,[\"ticksuffix\"],[\"ticksSuffix\"]],[s.angularAxis,[\"range\"],[\"domain\"]],[s.angularAxis,[\"endpadding\"],[\"endPadding\"]],[s.radialAxis,[\"showline\"],[\"gridLinesVisible\"]],[s.radialAxis,[\"tickorientation\"],[\"tickOrientation\"]],[s.radialAxis,[\"ticksuffix\"],[\"ticksSuffix\"]],[s.radialAxis,[\"range\"],[\"domain\"]],[s.font,[\"outlinecolor\"],[\"outlineColor\"]],[s.legend,[\"traceorder\"],[\"reverseOrder\"]],[s,[\"labeloffset\"],[\"labelOffset\"]],[s,[\"defaultcolorrange\"],[\"defaultColorRange\"]]].forEach(function(t,r){o.util.translator.apply(null,t.concat(e))}),e?(\"undefined\"!=typeof s.tickLength&&(s.angularaxis.ticklen=s.tickLength,delete s.tickLength),s.tickColor&&(s.angularaxis.tickcolor=s.tickColor,delete s.tickColor)):(s.angularAxis&&\"undefined\"!=typeof s.angularAxis.ticklen&&(s.tickLength=s.angularAxis.ticklen),s.angularAxis&&\"undefined\"!=typeof s.angularAxis.tickcolor&&(s.tickColor=s.angularAxis.tickcolor)),s.legend&&\"boolean\"!=typeof s.legend.reverseOrder&&(s.legend.reverseOrder=\"normal\"!=s.legend.reverseOrder),s.legend&&\"boolean\"==typeof s.legend.traceorder&&(s.legend.traceorder=s.legend.traceorder?\"reversed\":\"normal\",delete s.legend.reverseOrder),s.margin&&\"undefined\"!=typeof s.margin.t){var l=[\"t\",\"r\",\"b\",\"l\",\"pad\"],c=[\"top\",\"right\",\"bottom\",\"left\",\"pad\"],u={};n.entries(s.margin).forEach(function(t,e){u[c[l.indexOf(t.key)]]=t.value}),s.margin=u}e&&(delete s.needsEndSpacing,delete s.minorTickColor,delete s.minorTicks,delete s.angularaxis.ticksCount,delete s.angularaxis.ticksCount,delete s.angularaxis.ticksStep,delete s.angularaxis.rewriteTicks,delete s.angularaxis.nticks,delete s.radialaxis.ticksCount,delete s.radialaxis.ticksCount,delete s.radialaxis.ticksStep,delete s.radialaxis.rewriteTicks,delete s.radialaxis.nticks),r.layout=s}return r}};return t}},{\"../../../constants/alignment\":688,\"../../../lib\":719,d3:164}],838:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../../lib\"),i=t(\"../../../components/color\"),o=t(\"./micropolar\"),s=t(\"./undo_manager\"),l=a.extendDeepAll,c=e.exports={};c.framework=function(t){var e,r,a,i,u,h=new s;function f(r,s){return s&&(u=s),n.select(n.select(u).node().parentNode).selectAll(\".svg-container>*:not(.chart-root)\").remove(),e=e?l(e,r):r,a||(a=o.Axis()),i=o.adapter.plotly().convert(e),a.config(i).render(u),t.data=e.data,t.layout=e.layout,c.fillLayout(t),e}return f.isPolar=!0,f.svg=function(){return a.svg()},f.getConfig=function(){return e},f.getLiveConfig=function(){return o.adapter.plotly().convert(a.getLiveConfig(),!0)},f.getLiveScales=function(){return{t:a.angularScale(),r:a.radialScale()}},f.setUndoPoint=function(){var t,n,a=this,i=o.util.cloneJson(e);t=i,n=r,h.add({undo:function(){n&&a(n)},redo:function(){a(t)}}),r=o.util.cloneJson(i)},f.undo=function(){h.undo()},f.redo=function(){h.redo()},f},c.fillLayout=function(t){var e=n.select(t).selectAll(\".plot-container\"),r=e.selectAll(\".svg-container\"),a=t.framework&&t.framework.svg&&t.framework.svg(),o={width:800,height:600,paper_bgcolor:i.background,_container:e,_paperdiv:r,_paper:a};t._fullLayout=l(o,t.layout)}},{\"../../../components/color\":594,\"../../../lib\":719,\"./micropolar\":837,\"./undo_manager\":839,d3:164}],839:[function(t,e,r){\"use strict\";e.exports=function(){var t,e=[],r=-1,n=!1;function a(t,e){return t?(n=!0,t[e](),n=!1,this):this}return{add:function(t){return n?this:(e.splice(r+1,e.length-r),e.push(t),r=e.length-1,this)},setCallback:function(e){t=e},undo:function(){var n=e[r];return n?(a(n,\"undo\"),r-=1,t&&t(n.undo),this):this},redo:function(){var n=e[r+1];return n?(a(n,\"redo\"),r+=1,t&&t(n.redo),this):this},clear:function(){e=[],r=-1},hasUndo:function(){return-1!==r},hasRedo:function(){return r<e.length-1},getCommands:function(){return e},getPreviousCommand:function(){return e[r-1]},getIndex:function(){return r}}}},{}],840:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"tinycolor2\"),i=t(\"../../registry\"),o=t(\"../../lib\"),s=t(\"../../components/color\"),l=t(\"../../components/drawing\"),c=t(\"../plots\"),u=t(\"../../plots/cartesian/axes\"),h=t(\"../cartesian/set_convert\"),f=t(\"./set_convert\"),p=t(\"../cartesian/autorange\").doAutoRange,d=t(\"../cartesian/dragbox\"),g=t(\"../../components/dragelement\"),v=t(\"../../components/fx\"),m=t(\"../../components/titles\"),y=t(\"../cartesian/select\").prepSelect,x=t(\"../cartesian/select\").selectOnClick,b=t(\"../cartesian/select\").clearSelect,_=t(\"../../lib/setcursor\"),w=t(\"../../lib/clear_gl_canvases\"),k=t(\"../../plot_api/subroutines\").redrawReglTraces,T=t(\"../../constants/alignment\").MID_SHIFT,A=t(\"./constants\"),M=t(\"./helpers\"),S=o._,E=o.mod,C=o.deg2rad,L=o.rad2deg;function P(t,e){this.id=e,this.gd=t,this._hasClipOnAxisFalse=null,this.vangles=null,this.radialAxisAngle=null,this.traceHash={},this.layers={},this.clipPaths={},this.clipIds={},this.viewInitial={};var r=t._fullLayout,n=\"clip\"+r._uid+e;this.clipIds.forTraces=n+\"-for-traces\",this.clipPaths.forTraces=r._clips.append(\"clipPath\").attr(\"id\",this.clipIds.forTraces),this.clipPaths.forTraces.append(\"path\"),this.framework=r._polarlayer.append(\"g\").attr(\"class\",e),this.radialTickLayout=null,this.angularTickLayout=null}var O=P.prototype;function I(t){var e=t.ticks+String(t.ticklen)+String(t.showticklabels);return\"side\"in t&&(e+=t.side),e}function z(t,e){return e[o.findIndexOfMin(e,function(e){return o.angleDist(t,e)})]}function D(t,e,r){return e?(t.attr(\"display\",null),t.attr(r)):t&&t.attr(\"display\",\"none\"),t}function R(t,e){return\"translate(\"+t+\",\"+e+\")\"}function F(t){return\"rotate(\"+t+\")\"}e.exports=function(t,e){return new P(t,e)},O.plot=function(t,e){var r=e[this.id];this._hasClipOnAxisFalse=!1;for(var n=0;n<t.length;n++){if(!1===t[n][0].trace.cliponaxis){this._hasClipOnAxisFalse=!0;break}}this.updateLayers(e,r),this.updateLayout(e,r),c.generalUpdatePerTraceModule(this.gd,this,t,r),this.updateFx(e,r)},O.updateLayers=function(t,e){var r=this.layers,a=e.radialaxis,i=e.angularaxis,o=A.layerNames,s=o.indexOf(\"frontplot\"),l=o.slice(0,s),c=\"below traces\"===i.layer,u=\"below traces\"===a.layer;c&&l.push(\"angular-line\"),u&&l.push(\"radial-line\"),c&&l.push(\"angular-axis\"),u&&l.push(\"radial-axis\"),l.push(\"frontplot\"),c||l.push(\"angular-line\"),u||l.push(\"radial-line\"),c||l.push(\"angular-axis\"),u||l.push(\"radial-axis\");var h=this.framework.selectAll(\".polarsublayer\").data(l,String);h.enter().append(\"g\").attr(\"class\",function(t){return\"polarsublayer \"+t}).each(function(t){var e=r[t]=n.select(this);switch(t){case\"frontplot\":e.append(\"g\").classed(\"barlayer\",!0),e.append(\"g\").classed(\"scatterlayer\",!0);break;case\"backplot\":e.append(\"g\").classed(\"maplayer\",!0);break;case\"plotbg\":r.bg=e.append(\"path\");break;case\"radial-grid\":case\"angular-grid\":e.style(\"fill\",\"none\");break;case\"radial-line\":e.append(\"line\").style(\"fill\",\"none\");break;case\"angular-line\":e.append(\"path\").style(\"fill\",\"none\")}}),h.order()},O.updateLayout=function(t,e){var r=this.layers,n=t._size,a=e.radialaxis,i=e.angularaxis,o=e.domain.x,c=e.domain.y;this.xOffset=n.l+n.w*o[0],this.yOffset=n.t+n.h*(1-c[1]);var u=this.xLength=n.w*(o[1]-o[0]),h=this.yLength=n.h*(c[1]-c[0]),f=e.sector;this.sectorInRad=f.map(C);var p,d,g,v,m,y=this.sectorBBox=function(t){var e,r,n,a,i=t[0],o=t[1]-i,s=E(i,360),l=s+o,c=Math.cos(C(s)),u=Math.sin(C(s)),h=Math.cos(C(l)),f=Math.sin(C(l));a=s<=90&&l>=90||s>90&&l>=450?1:u<=0&&f<=0?0:Math.max(u,f);e=s<=180&&l>=180||s>180&&l>=540?-1:c>=0&&h>=0?0:Math.min(c,h);r=s<=270&&l>=270||s>270&&l>=630?-1:u>=0&&f>=0?0:Math.min(u,f);n=l>=360?1:c<=0&&h<=0?0:Math.max(c,h);return[e,r,n,a]}(f),x=y[2]-y[0],b=y[3]-y[1],_=h/u,w=Math.abs(b/x);_>w?(p=u,m=(h-(d=u*w))/n.h/2,g=[o[0],o[1]],v=[c[0]+m,c[1]-m]):(d=h,m=(u-(p=h/w))/n.w/2,g=[o[0]+m,o[1]-m],v=[c[0],c[1]]),this.xLength2=p,this.yLength2=d,this.xDomain2=g,this.yDomain2=v;var k=this.xOffset2=n.l+n.w*g[0],T=this.yOffset2=n.t+n.h*(1-v[1]),A=this.radius=p/x,M=this.innerRadius=e.hole*A,S=this.cx=k-A*y[0],L=this.cy=T+A*y[3],P=this.cxx=S-k,O=this.cyy=L-T;this.radialAxis=this.mockAxis(t,e,a,{_id:\"x\",side:{counterclockwise:\"top\",clockwise:\"bottom\"}[a.side],domain:[M/n.w,A/n.w]}),this.angularAxis=this.mockAxis(t,e,i,{side:\"right\",domain:[0,Math.PI],autorange:!1}),this.doAutoRange(t,e),this.updateAngularAxis(t,e),this.updateRadialAxis(t,e),this.updateRadialAxisTitle(t,e),this.xaxis=this.mockCartesianAxis(t,e,{_id:\"x\",domain:g}),this.yaxis=this.mockCartesianAxis(t,e,{_id:\"y\",domain:v});var I=this.pathSubplot();this.clipPaths.forTraces.select(\"path\").attr(\"d\",I).attr(\"transform\",R(P,O)),r.frontplot.attr(\"transform\",R(k,T)).call(l.setClipUrl,this._hasClipOnAxisFalse?null:this.clipIds.forTraces,this.gd),r.bg.attr(\"d\",I).attr(\"transform\",R(S,L)).call(s.fill,e.bgcolor)},O.mockAxis=function(t,e,r,n){var a=o.extendFlat({},r,n);return f(a,e,t),a},O.mockCartesianAxis=function(t,e,r){var n=this,a=r._id,i=o.extendFlat({type:\"linear\"},r);h(i,t);var s={x:[0,2],y:[1,3]};return i.setRange=function(){var t=n.sectorBBox,r=s[a],o=n.radialAxis._rl,l=(o[1]-o[0])/(1-e.hole);i.range=[t[r[0]]*l,t[r[1]]*l]},i.isPtWithinRange=\"x\"===a?function(t){return n.isPtInside(t)}:function(){return!0},i.setRange(),i.setScale(),i},O.doAutoRange=function(t,e){var r=this.gd,n=this.radialAxis,a=e.radialaxis;n.setScale(),p(r,n);var i=n.range;a.range=i.slice(),a._input.range=i.slice(),n._rl=[n.r2l(i[0],null,\"gregorian\"),n.r2l(i[1],null,\"gregorian\")]},O.updateRadialAxis=function(t,e){var r=this,n=r.gd,a=r.layers,i=r.radius,l=r.innerRadius,c=r.cx,h=r.cy,f=e.radialaxis,p=E(e.sector[0],360),d=r.radialAxis,g=l<i;r.fillViewInitialKey(\"radialaxis.angle\",f.angle),r.fillViewInitialKey(\"radialaxis.range\",d.range.slice()),d.setGeometry(),\"auto\"===d.tickangle&&p>90&&p<=270&&(d.tickangle=180);var v=function(t){return\"translate(\"+(d.l2p(t.x)+l)+\",0)\"},m=I(f);if(r.radialTickLayout!==m&&(a[\"radial-axis\"].selectAll(\".xtick\").remove(),r.radialTickLayout=m),g){d.setScale();var y=u.calcTicks(d),x=u.clipEnds(d,y),b=u.getTickSigns(d)[2];u.drawTicks(n,d,{vals:y,layer:a[\"radial-axis\"],path:u.makeTickPath(d,0,b),transFn:v,crisp:!1}),u.drawGrid(n,d,{vals:x,layer:a[\"radial-grid\"],path:function(t){return r.pathArc(d.r2p(t.x)+l)},transFn:o.noop,crisp:!1}),u.drawLabels(n,d,{vals:y,layer:a[\"radial-axis\"],transFn:v,labelFns:u.makeLabelFns(d,0)})}var _=r.radialAxisAngle=r.vangles?L(z(C(f.angle),r.vangles)):f.angle,w=R(c,h),k=w+F(-_);D(a[\"radial-axis\"],g&&(f.showticklabels||f.ticks),{transform:k}),D(a[\"radial-grid\"],g&&f.showgrid,{transform:w}),D(a[\"radial-line\"].select(\"line\"),g&&f.showline,{x1:l,y1:0,x2:i,y2:0,transform:k}).attr(\"stroke-width\",f.linewidth).call(s.stroke,f.linecolor)},O.updateRadialAxisTitle=function(t,e,r){var n=this.gd,a=this.radius,i=this.cx,o=this.cy,s=e.radialaxis,c=this.id+\"title\",u=void 0!==r?r:this.radialAxisAngle,h=C(u),f=Math.cos(h),p=Math.sin(h),d=0;if(s.title){var g=l.bBox(this.layers[\"radial-axis\"].node()).height,v=s.title.font.size;d=\"counterclockwise\"===s.side?-g-.4*v:g+.8*v}this.layers[\"radial-axis-title\"]=m.draw(n,c,{propContainer:s,propName:this.id+\".radialaxis.title\",placeholder:S(n,\"Click to enter radial axis title\"),attributes:{x:i+a/2*f+d*p,y:o-a/2*p+d*f,\"text-anchor\":\"middle\"},transform:{rotate:-u}})},O.updateAngularAxis=function(t,e){var r=this,n=r.gd,a=r.layers,i=r.radius,l=r.innerRadius,c=r.cx,h=r.cy,f=e.angularaxis,p=r.angularAxis;r.fillViewInitialKey(\"angularaxis.rotation\",f.rotation),p.setGeometry(),p.setScale();var d=function(t){return p.t2g(t.x)};\"linear\"===p.type&&\"radians\"===p.thetaunit&&(p.tick0=L(p.tick0),p.dtick=L(p.dtick));var g=function(t){return R(c+i*Math.cos(t),h-i*Math.sin(t))},v=u.makeLabelFns(p,0).labelStandoff,m={xFn:function(t){var e=d(t);return Math.cos(e)*v},yFn:function(t){var e=d(t),r=Math.sin(e)>0?.2:1;return-Math.sin(e)*(v+t.fontSize*r)+Math.abs(Math.cos(e))*(t.fontSize*T)},anchorFn:function(t){var e=d(t),r=Math.cos(e);return Math.abs(r)<.1?\"middle\":r>0?\"start\":\"end\"},heightFn:function(t,e,r){var n=d(t);return-.5*(1+Math.sin(n))*r}},y=I(f);r.angularTickLayout!==y&&(a[\"angular-axis\"].selectAll(\".\"+p._id+\"tick\").remove(),r.angularTickLayout=y);var x,b=u.calcTicks(p);if(\"linear\"===e.gridshape?(x=b.map(d),o.angleDelta(x[0],x[1])<0&&(x=x.slice().reverse())):x=null,r.vangles=x,\"category\"===p.type&&(b=b.filter(function(t){return o.isAngleInsideSector(d(t),r.sectorInRad)})),p.visible){var _=\"inside\"===p.ticks?-1:1,w=(p.linewidth||1)/2;u.drawTicks(n,p,{vals:b,layer:a[\"angular-axis\"],path:\"M\"+_*w+\",0h\"+_*p.ticklen,transFn:function(t){var e=d(t);return g(e)+F(-L(e))},crisp:!1}),u.drawGrid(n,p,{vals:b,layer:a[\"angular-grid\"],path:function(t){var e=d(t),r=Math.cos(e),n=Math.sin(e);return\"M\"+[c+l*r,h-l*n]+\"L\"+[c+i*r,h-i*n]},transFn:o.noop,crisp:!1}),u.drawLabels(n,p,{vals:b,layer:a[\"angular-axis\"],repositionOnUpdate:!0,transFn:function(t){return g(d(t))},labelFns:m})}D(a[\"angular-line\"].select(\"path\"),f.showline,{d:r.pathSubplot(),transform:R(c,h)}).attr(\"stroke-width\",f.linewidth).call(s.stroke,f.linecolor)},O.updateFx=function(t,e){this.gd._context.staticPlot||(this.updateAngularDrag(t),this.updateRadialDrag(t,e,0),this.updateRadialDrag(t,e,1),this.updateMainDrag(t))},O.updateMainDrag=function(t){var e=this,r=e.gd,o=e.layers,s=t._zoomlayer,l=A.MINZOOM,c=A.OFFEDGE,u=e.radius,h=e.innerRadius,f=e.cx,p=e.cy,m=e.cxx,_=e.cyy,w=e.sectorInRad,k=e.vangles,T=e.radialAxis,S=M.clampTiny,E=M.findXYatLength,C=M.findEnclosingVertexAngles,L=A.cornerHalfWidth,P=A.cornerLen/2,O=d.makeDragger(o,\"path\",\"maindrag\",\"crosshair\");n.select(O).attr(\"d\",e.pathSubplot()).attr(\"transform\",R(f,p));var I,z,D,F,B,N,j,V,U,q={element:O,gd:r,subplot:e.id,plotinfo:{id:e.id,xaxis:e.xaxis,yaxis:e.yaxis},xaxes:[e.xaxis],yaxes:[e.yaxis]};function H(t,e){return Math.sqrt(t*t+e*e)}function G(t,e){return H(t-m,e-_)}function Y(t,e){return Math.atan2(_-e,t-m)}function W(t,e){return[t*Math.cos(e),t*Math.sin(-e)]}function X(t,r){if(0===t)return e.pathSector(2*L);var n=P/t,a=r-n,i=r+n,o=Math.max(0,Math.min(t,u)),s=o-L,l=o+L;return\"M\"+W(s,a)+\"A\"+[s,s]+\" 0,0,0 \"+W(s,i)+\"L\"+W(l,i)+\"A\"+[l,l]+\" 0,0,1 \"+W(l,a)+\"Z\"}function Z(t,r,n){if(0===t)return e.pathSector(2*L);var a,i,o=W(t,r),s=W(t,n),l=S((o[0]+s[0])/2),c=S((o[1]+s[1])/2);if(l&&c){var u=c/l,h=-1/u,f=E(L,u,l,c);a=E(P,h,f[0][0],f[0][1]),i=E(P,h,f[1][0],f[1][1])}else{var p,d;c?(p=P,d=L):(p=L,d=P),a=[[l-p,c-d],[l+p,c-d]],i=[[l-p,c+d],[l+p,c+d]]}return\"M\"+a.join(\"L\")+\"L\"+i.reverse().join(\"L\")+\"Z\"}function J(t,e){return e=Math.max(Math.min(e,u),h),t<c?t=0:u-t<c?t=u:e<c?e=0:u-e<c&&(e=u),Math.abs(e-t)>l?(t<e?(D=t,F=e):(D=e,F=t),!0):(D=null,F=null,!1)}function K(t,e){t=t||B,e=e||\"M0,0Z\",V.attr(\"d\",t),U.attr(\"d\",e),d.transitionZoombox(V,U,N,j),N=!0;var n={};rt(n),r.emit(\"plotly_relayouting\",n)}function Q(t,r){var n,a,i=I+t,o=z+r,s=G(I,z),l=Math.min(G(i,o),u),c=Y(I,z);J(s,l)&&(n=B+e.pathSector(F),D&&(n+=e.pathSector(D)),a=X(D,c)+X(F,c)),K(n,a)}function $(t,e,r,n){var a=M.findIntersectionXY(r,n,r,[t-m,_-e]);return H(a[0],a[1])}function tt(t,r){var n,a,i=I+t,o=z+r,s=Y(I,z),l=Y(i,o),c=C(s,k),h=C(l,k);J($(I,z,c[0],c[1]),Math.min($(i,o,h[0],h[1]),u))&&(n=B+e.pathSector(F),D&&(n+=e.pathSector(D)),a=[Z(D,c[0],c[1]),Z(F,c[0],c[1])].join(\" \")),K(n,a)}function et(){if(d.removeZoombox(r),null!==D&&null!==F){var t={};rt(t),d.showDoubleClickNotifier(r),i.call(\"_guiRelayout\",r,t)}}function rt(t){var r=T._rl,n=(r[1]-r[0])/(1-h/u)/u,a=[r[0]+(D-h)*n,r[0]+(F-h)*n];t[e.id+\".radialaxis.range\"]=a}function nt(t,n){var a=r._fullLayout.clickmode;if(d.removeZoombox(r),2===t){var o={};for(var s in e.viewInitial)o[e.id+\".\"+s]=e.viewInitial[s];r.emit(\"plotly_doubleclick\",null),i.call(\"_guiRelayout\",r,o)}a.indexOf(\"select\")>-1&&1===t&&x(n,r,[e.xaxis],[e.yaxis],e.id,q),a.indexOf(\"event\")>-1&&v.click(r,n,e.id)}q.prepFn=function(t,n,i){var o=r._fullLayout.dragmode,l=O.getBoundingClientRect();if(I=n-l.left,z=i-l.top,k){var c=M.findPolygonOffset(u,w[0],w[1],k);I+=m+c[0],z+=_+c[1]}switch(o){case\"zoom\":q.moveFn=k?tt:Q,q.clickFn=nt,q.doneFn=et,function(){D=null,F=null,B=e.pathSubplot(),N=!1;var t=r._fullLayout[e.id];j=a(t.bgcolor).getLuminance(),(V=d.makeZoombox(s,j,f,p,B)).attr(\"fill-rule\",\"evenodd\"),U=d.makeCorners(s,f,p),b(r)}();break;case\"select\":case\"lasso\":y(t,n,i,q,o)}},O.onmousemove=function(t){v.hover(r,t,e.id),r._fullLayout._lasthover=O,r._fullLayout._hoversubplot=e.id},O.onmouseout=function(t){r._dragging||g.unhover(r,t)},g.init(q)},O.updateRadialDrag=function(t,e,r){var a=this,s=a.gd,l=a.layers,c=a.radius,u=a.innerRadius,h=a.cx,f=a.cy,p=a.radialAxis,v=A.radialDragBoxSize,m=v/2;if(p.visible){var y,x,_,T=C(a.radialAxisAngle),M=p._rl,S=M[0],E=M[1],P=M[r],O=.75*(M[1]-M[0])/(1-e.hole)/c;r?(y=h+(c+m)*Math.cos(T),x=f-(c+m)*Math.sin(T),_=\"radialdrag\"):(y=h+(u-m)*Math.cos(T),x=f-(u-m)*Math.sin(T),_=\"radialdrag-inner\");var I,B,N,j=d.makeRectDragger(l,_,\"crosshair\",-m,-m,v,v),V={element:j,gd:s};D(n.select(j),p.visible&&u<c,{transform:R(y,x)}),V.prepFn=function(){I=null,B=null,N=null,V.moveFn=U,V.doneFn=q,b(s)},V.clampFn=function(t,e){return Math.sqrt(t*t+e*e)<A.MINDRAG&&(t=0,e=0),[t,e]},g.init(V)}function U(t,e){if(I)I(t,e);else{var n=[t,-e],i=[Math.cos(T),Math.sin(T)],l=Math.abs(o.dot(n,i)/Math.sqrt(o.dot(n,n)));isNaN(l)||(I=l<.5?H:G)}var c={};!function(t){null!==B?t[a.id+\".radialaxis.angle\"]=B:null!==N&&(t[a.id+\".radialaxis.range[\"+r+\"]\"]=N)}(c),s.emit(\"plotly_relayouting\",c)}function q(){null!==B?i.call(\"_guiRelayout\",s,a.id+\".radialaxis.angle\",B):null!==N&&i.call(\"_guiRelayout\",s,a.id+\".radialaxis.range[\"+r+\"]\",N)}function H(t,e){if(0!==r){var n=y+t,i=x+e;B=Math.atan2(f-i,n-h),a.vangles&&(B=z(B,a.vangles)),B=L(B);var o=R(h,f)+F(-B);l[\"radial-axis\"].attr(\"transform\",o),l[\"radial-line\"].select(\"line\").attr(\"transform\",o);var s=a.gd._fullLayout,c=s[a.id];a.updateRadialAxisTitle(s,c,B)}}function G(t,e){var n=o.dot([t,-e],[Math.cos(T),Math.sin(T)]);if(N=P-O*n,O>0==(r?N>S:N<E)){var l=s._fullLayout,c=l[a.id];p.range[r]=N,p._rl[r]=N,a.updateRadialAxis(l,c),a.xaxis.setRange(),a.xaxis.setScale(),a.yaxis.setRange(),a.yaxis.setScale();var u=!1;for(var h in a.traceHash){var f=a.traceHash[h],d=o.filterVisible(f);f[0][0].trace._module.plot(s,a,d,c),i.traceIs(h,\"gl\")&&d.length&&(u=!0)}u&&(w(s),k(s))}else N=null}},O.updateAngularDrag=function(t){var e=this,r=e.gd,a=e.layers,s=e.radius,c=e.angularAxis,u=e.cx,h=e.cy,f=e.cxx,p=e.cyy,v=A.angularDragBoxSize,m=d.makeDragger(a,\"path\",\"angulardrag\",\"move\"),y={element:m,gd:r};function x(t,e){return Math.atan2(p+v-e,t-f-v)}n.select(m).attr(\"d\",e.pathAnnulus(s,s+v)).attr(\"transform\",R(u,h)).call(_,\"move\");var T,M,S,E,C,P,O=a.frontplot.select(\".scatterlayer\").selectAll(\".trace\"),I=O.selectAll(\".point\"),z=O.selectAll(\".textpoint\");function D(t,s){var d=e.gd._fullLayout,g=d[e.id],v=x(T+t,M+s),m=L(v-P);if(E=S+m,a.frontplot.attr(\"transform\",R(e.xOffset2,e.yOffset2)+F([-m,f,p])),e.vangles){C=e.radialAxisAngle+m;var y=R(u,h)+F(-m),b=R(u,h)+F(-C);a.bg.attr(\"transform\",y),a[\"radial-grid\"].attr(\"transform\",y),a[\"radial-axis\"].attr(\"transform\",b),a[\"radial-line\"].select(\"line\").attr(\"transform\",b),e.updateRadialAxisTitle(d,g,C)}else e.clipPaths.forTraces.select(\"path\").attr(\"transform\",R(f,p)+F(m));I.each(function(){var t=n.select(this),e=l.getTranslate(t);t.attr(\"transform\",R(e.x,e.y)+F([m]))}),z.each(function(){var t=n.select(this),e=t.select(\"text\"),r=l.getTranslate(t);t.attr(\"transform\",F([m,e.attr(\"x\"),e.attr(\"y\")])+R(r.x,r.y))}),c.rotation=o.modHalf(E,360),e.updateAngularAxis(d,g),e._hasClipOnAxisFalse&&!o.isFullCircle(e.sectorInRad)&&O.call(l.hideOutsideRangePoints,e);var _=!1;for(var A in e.traceHash)if(i.traceIs(A,\"gl\")){var D=e.traceHash[A],N=o.filterVisible(D);D[0][0].trace._module.plot(r,e,N,g),N.length&&(_=!0)}_&&(w(r),k(r));var j={};B(j),r.emit(\"plotly_relayouting\",j)}function B(t){t[e.id+\".angularaxis.rotation\"]=E,e.vangles&&(t[e.id+\".radialaxis.angle\"]=C)}function N(){z.select(\"text\").attr(\"transform\",null);var t={};B(t),i.call(\"_guiRelayout\",r,t)}y.prepFn=function(n,a,i){var o=t[e.id];S=o.angularaxis.rotation;var s=m.getBoundingClientRect();T=a-s.left,M=i-s.top,P=x(T,M),y.moveFn=D,y.doneFn=N,b(r)},e.vangles&&!o.isFullCircle(e.sectorInRad)&&(y.prepFn=o.noop,_(n.select(m),null)),g.init(y)},O.isPtInside=function(t){var e=this.sectorInRad,r=this.vangles,n=this.angularAxis.c2g(t.theta),a=this.radialAxis,i=a.c2l(t.r),s=a._rl;return(r?M.isPtInsidePolygon:o.isPtInsideSector)(i,n,s,e,r)},O.pathArc=function(t){var e=this.sectorInRad,r=this.vangles;return(r?M.pathPolygon:o.pathArc)(t,e[0],e[1],r)},O.pathSector=function(t){var e=this.sectorInRad,r=this.vangles;return(r?M.pathPolygon:o.pathSector)(t,e[0],e[1],r)},O.pathAnnulus=function(t,e){var r=this.sectorInRad,n=this.vangles;return(n?M.pathPolygonAnnulus:o.pathAnnulus)(t,e,r[0],r[1],n)},O.pathSubplot=function(){var t=this.innerRadius,e=this.radius;return t?this.pathAnnulus(t,e):this.pathSector(e)},O.fillViewInitialKey=function(t,e){t in this.viewInitial||(this.viewInitial[t]=e)}},{\"../../components/color\":594,\"../../components/dragelement\":612,\"../../components/drawing\":615,\"../../components/fx\":632,\"../../components/titles\":681,\"../../constants/alignment\":688,\"../../lib\":719,\"../../lib/clear_gl_canvases\":704,\"../../lib/setcursor\":739,\"../../plot_api/subroutines\":758,\"../../plots/cartesian/axes\":767,\"../../registry\":848,\"../cartesian/autorange\":766,\"../cartesian/dragbox\":775,\"../cartesian/select\":784,\"../cartesian/set_convert\":785,\"../plots\":828,\"./constants\":829,\"./helpers\":830,\"./set_convert\":841,d3:164,tinycolor2:538}],841:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../cartesian/set_convert\"),i=n.deg2rad,o=n.rad2deg;e.exports=function(t,e,r){switch(a(t,r),t._id){case\"x\":case\"radialaxis\":!function(t,e){var r=e._subplot;t.setGeometry=function(){var e=t._rl[0],n=t._rl[1],a=r.innerRadius,i=(r.radius-a)/(n-e),o=a/i,s=e>n?function(t){return t<=0}:function(t){return t>=0};t.c2g=function(r){var n=t.c2l(r)-e;return(s(n)?n:0)+o},t.g2c=function(r){return t.l2c(r+e-o)},t.g2p=function(t){return t*i},t.c2p=function(e){return t.g2p(t.c2g(e))}}}(t,e);break;case\"angularaxis\":!function(t,e){var r=t.type;if(\"linear\"===r){var a=t.d2c,s=t.c2d;t.d2c=function(t,e){return function(t,e){return\"degrees\"===e?i(t):t}(a(t),e)},t.c2d=function(t,e){return s(function(t,e){return\"degrees\"===e?o(t):t}(t,e))}}t.makeCalcdata=function(e,a){var i,o,s=e[a],l=e._length,c=function(r){return t.d2c(r,e.thetaunit)};if(s){if(n.isTypedArray(s)&&\"linear\"===r){if(l===s.length)return s;if(s.subarray)return s.subarray(0,l)}for(i=new Array(l),o=0;o<l;o++)i[o]=c(s[o])}else{var u=a+\"0\",h=\"d\"+a,f=u in e?c(e[u]):0,p=e[h]?c(e[h]):(t.period||2*Math.PI)/l;for(i=new Array(l),o=0;o<l;o++)i[o]=f+o*p}return i},t.setGeometry=function(){var a,s,l,c,u=e.sector,h=u.map(i),f={clockwise:-1,counterclockwise:1}[t.direction],p=i(t.rotation),d=function(t){return f*t+p},g=function(t){return(t-p)/f};switch(r){case\"linear\":s=a=n.identity,c=i,l=o,t.range=n.isFullCircle(h)?[u[0],u[0]+360]:h.map(g).map(o);break;case\"category\":var v=t._categories.length,m=t.period?Math.max(t.period,v):v;0===m&&(m=1),s=c=function(t){return 2*t*Math.PI/m},a=l=function(t){return t*m/Math.PI/2},t.range=[0,m]}t.c2g=function(t){return d(s(t))},t.g2c=function(t){return a(g(t))},t.t2g=function(t){return d(c(t))},t.g2t=function(t){return l(g(t))}}}(t,e)}}},{\"../../lib\":719,\"../cartesian/set_convert\":785}],842:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),a=t(\"../plot_api/plot_template\"),i=t(\"./domain\").defaults;e.exports=function(t,e,r,o){var s,l,c=o.type,u=o.attributes,h=o.handleDefaults,f=o.partition||\"x\",p=e._subplots[c],d=p.length,g=d&&p[0].replace(/\\d+$/,\"\");function v(t,e){return n.coerce(s,l,u,t,e)}for(var m=0;m<d;m++){var y=p[m];s=t[y]?t[y]:t[y]={},l=a.newContainer(e,y,g),v(\"uirevision\",e.uirevision);var x={};x[f]=[m/d,(m+1)/d],i(l,e,v,x),o.id=y,h(s,l,v,o)}}},{\"../lib\":719,\"../plot_api/plot_template\":757,\"./domain\":792}],843:[function(t,e,r){\"use strict\";['Variables are inserted using %{variable}, for example \"y: %{y}\".','Numbers are formatted using d3-format\\'s syntax %{variable:d3-format}, for example \"Price: %{y:$.2f}\".',t(\"../constants/docs\").FORMAT_LINK,\"for details on the formatting syntax.\",'Dates are formatted using d3-time-format\\'s syntax %{variable|d3-time-format}, for example \"Day: %{2019-01-01|%A}\".',t(\"../constants/docs\").DATE_FORMAT_LINK,\"for details on the date formatting syntax.\"].join(\" \");function n(t){var e=t.description?\" \"+t.description:\"\",r=t.keys||[];if(r.length>0){for(var n=[],a=0;a<r.length;a++)n[a]=\"`\"+r[a]+\"`\";e+=\"Finally, the template string has access to \",e=1===r.length?\"variable \"+n[0]:\"variables \"+n.slice(0,-1).join(\", \")+\" and \"+n.slice(-1)+\".\"}return e}r.hovertemplateAttrs=function(t,e){t=t||{};n(e=e||{});var r={valType:\"string\",dflt:\"\",editType:t.editType||\"none\"};return!1!==t.arrayOk&&(r.arrayOk=!0),r},r.texttemplateAttrs=function(t,e){t=t||{};n(e=e||{});var r={valType:\"string\",dflt:\"\",editType:t.editType||\"calc\"};return!1!==t.arrayOk&&(r.arrayOk=!0),r}},{\"../constants/docs\":690}],844:[function(t,e,r){\"use strict\";var n=t(\"./ternary\"),a=t(\"../../plots/get_data\").getSubplotCalcData,i=t(\"../../lib\").counterRegex;r.name=\"ternary\";var o=r.attr=\"subplot\";r.idRoot=\"ternary\",r.idRegex=r.attrRegex=i(\"ternary\"),(r.attributes={})[o]={valType:\"subplotid\",dflt:\"ternary\",editType:\"calc\"},r.layoutAttributes=t(\"./layout_attributes\"),r.supplyLayoutDefaults=t(\"./layout_defaults\"),r.plot=function(t){for(var e=t._fullLayout,r=t.calcdata,i=e._subplots.ternary,o=0;o<i.length;o++){var s=i[o],l=a(r,\"ternary\",s),c=e[s]._subplot;c||(c=new n({id:s,graphDiv:t,container:e._ternarylayer.node()},e),e[s]._subplot=c),c.plot(l,e,t._promises)}},r.clean=function(t,e,r,n){for(var a=n._subplots.ternary||[],i=0;i<a.length;i++){var o=a[i],s=n[o]._subplot;!e[o]&&s&&(s.plotContainer.remove(),s.clipDef.remove(),s.clipDefRelative.remove(),s.layers[\"a-title\"].remove(),s.layers[\"b-title\"].remove(),s.layers[\"c-title\"].remove())}}},{\"../../lib\":719,\"../../plots/get_data\":802,\"./layout_attributes\":845,\"./layout_defaults\":846,\"./ternary\":847}],845:[function(t,e,r){\"use strict\";var n=t(\"../../components/color/attributes\"),a=t(\"../domain\").attributes,i=t(\"../cartesian/layout_attributes\"),o=t(\"../../plot_api/edit_types\").overrideAll,s=t(\"../../lib/extend\").extendFlat,l={title:i.title,color:i.color,tickmode:i.tickmode,nticks:s({},i.nticks,{dflt:6,min:1}),tick0:i.tick0,dtick:i.dtick,tickvals:i.tickvals,ticktext:i.ticktext,ticks:i.ticks,ticklen:i.ticklen,tickwidth:i.tickwidth,tickcolor:i.tickcolor,showticklabels:i.showticklabels,showtickprefix:i.showtickprefix,tickprefix:i.tickprefix,showticksuffix:i.showticksuffix,ticksuffix:i.ticksuffix,showexponent:i.showexponent,exponentformat:i.exponentformat,separatethousands:i.separatethousands,tickfont:i.tickfont,tickangle:i.tickangle,tickformat:i.tickformat,tickformatstops:i.tickformatstops,hoverformat:i.hoverformat,showline:s({},i.showline,{dflt:!0}),linecolor:i.linecolor,linewidth:i.linewidth,showgrid:s({},i.showgrid,{dflt:!0}),gridcolor:i.gridcolor,gridwidth:i.gridwidth,layer:i.layer,min:{valType:\"number\",dflt:0,min:0},_deprecated:{title:i._deprecated.title,titlefont:i._deprecated.titlefont}},c=e.exports=o({domain:a({name:\"ternary\"}),bgcolor:{valType:\"color\",dflt:n.background},sum:{valType:\"number\",dflt:1,min:0},aaxis:l,baxis:l,caxis:l},\"plot\",\"from-root\");c.uirevision={valType:\"any\",editType:\"none\"},c.aaxis.uirevision=c.baxis.uirevision=c.caxis.uirevision={valType:\"any\",editType:\"none\"}},{\"../../components/color/attributes\":593,\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../cartesian/layout_attributes\":779,\"../domain\":792}],846:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\"),a=t(\"../../plot_api/plot_template\"),i=t(\"../../lib\"),o=t(\"../subplot_defaults\"),s=t(\"../cartesian/tick_label_defaults\"),l=t(\"../cartesian/tick_mark_defaults\"),c=t(\"../cartesian/tick_value_defaults\"),u=t(\"../cartesian/line_grid_defaults\"),h=t(\"./layout_attributes\"),f=[\"aaxis\",\"baxis\",\"caxis\"];function p(t,e,r,i){var o,s,l,c=r(\"bgcolor\"),u=r(\"sum\");i.bgColor=n.combine(c,i.paper_bgcolor);for(var h=0;h<f.length;h++)s=t[o=f[h]]||{},(l=a.newContainer(e,o))._name=o,d(s,l,i,e);var p=e.aaxis,g=e.baxis,v=e.caxis;p.min+g.min+v.min>=u&&(p.min=0,g.min=0,v.min=0,t.aaxis&&delete t.aaxis.min,t.baxis&&delete t.baxis.min,t.caxis&&delete t.caxis.min)}function d(t,e,r,n){var a=h[e._name];function o(r,n){return i.coerce(t,e,a,r,n)}o(\"uirevision\",n.uirevision),e.type=\"linear\";var f=o(\"color\"),p=f!==a.color.dflt?f:r.font.color,d=e._name.charAt(0).toUpperCase(),g=\"Component \"+d,v=o(\"title.text\",g);e._hovertitle=v===g?v:d,i.coerceFont(o,\"title.font\",{family:r.font.family,size:Math.round(1.2*r.font.size),color:p}),o(\"min\"),c(t,e,o,\"linear\"),s(t,e,o,\"linear\",{}),l(t,e,o,{outerTicks:!0}),o(\"showticklabels\")&&(i.coerceFont(o,\"tickfont\",{family:r.font.family,size:r.font.size,color:p}),o(\"tickangle\"),o(\"tickformat\")),u(t,e,o,{dfltColor:f,bgColor:r.bgColor,blend:60,showLine:!0,showGrid:!0,noZeroLine:!0,attributes:a}),o(\"hoverformat\"),o(\"layer\")}e.exports=function(t,e,r){o(t,e,r,{type:\"ternary\",attributes:h,handleDefaults:p,font:e.font,paper_bgcolor:e.paper_bgcolor})}},{\"../../components/color\":594,\"../../lib\":719,\"../../plot_api/plot_template\":757,\"../cartesian/line_grid_defaults\":781,\"../cartesian/tick_label_defaults\":786,\"../cartesian/tick_mark_defaults\":787,\"../cartesian/tick_value_defaults\":788,\"../subplot_defaults\":842,\"./layout_attributes\":845}],847:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"tinycolor2\"),i=t(\"../../registry\"),o=t(\"../../lib\"),s=o._,l=t(\"../../components/color\"),c=t(\"../../components/drawing\"),u=t(\"../cartesian/set_convert\"),h=t(\"../../lib/extend\").extendFlat,f=t(\"../plots\"),p=t(\"../cartesian/axes\"),d=t(\"../../components/dragelement\"),g=t(\"../../components/fx\"),v=t(\"../../components/titles\"),m=t(\"../cartesian/select\").prepSelect,y=t(\"../cartesian/select\").selectOnClick,x=t(\"../cartesian/select\").clearSelect,b=t(\"../cartesian/constants\");function _(t,e){this.id=t.id,this.graphDiv=t.graphDiv,this.init(e),this.makeFramework(e),this.aTickLayout=null,this.bTickLayout=null,this.cTickLayout=null}e.exports=_;var w=_.prototype;w.init=function(t){this.container=t._ternarylayer,this.defs=t._defs,this.layoutId=t._uid,this.traceHash={},this.layers={}},w.plot=function(t,e){var r=e[this.id],n=e._size;this._hasClipOnAxisFalse=!1;for(var a=0;a<t.length;a++){if(!1===t[a][0].trace.cliponaxis){this._hasClipOnAxisFalse=!0;break}}this.updateLayers(r),this.adjustLayout(r,n),f.generalUpdatePerTraceModule(this.graphDiv,this,t,r),this.layers.plotbg.select(\"path\").call(l.fill,r.bgcolor)},w.makeFramework=function(t){var e=this.graphDiv,r=t[this.id],n=this.clipId=\"clip\"+this.layoutId+this.id,a=this.clipIdRelative=\"clip-relative\"+this.layoutId+this.id;this.clipDef=o.ensureSingleById(t._clips,\"clipPath\",n,function(t){t.append(\"path\").attr(\"d\",\"M0,0Z\")}),this.clipDefRelative=o.ensureSingleById(t._clips,\"clipPath\",a,function(t){t.append(\"path\").attr(\"d\",\"M0,0Z\")}),this.plotContainer=o.ensureSingle(this.container,\"g\",this.id),this.updateLayers(r),c.setClipUrl(this.layers.backplot,n,e),c.setClipUrl(this.layers.grids,n,e)},w.updateLayers=function(t){var e=this.layers,r=[\"draglayer\",\"plotbg\",\"backplot\",\"grids\"];\"below traces\"===t.aaxis.layer&&r.push(\"aaxis\",\"aline\"),\"below traces\"===t.baxis.layer&&r.push(\"baxis\",\"bline\"),\"below traces\"===t.caxis.layer&&r.push(\"caxis\",\"cline\"),r.push(\"frontplot\"),\"above traces\"===t.aaxis.layer&&r.push(\"aaxis\",\"aline\"),\"above traces\"===t.baxis.layer&&r.push(\"baxis\",\"bline\"),\"above traces\"===t.caxis.layer&&r.push(\"caxis\",\"cline\");var a=this.plotContainer.selectAll(\"g.toplevel\").data(r,String),i=[\"agrid\",\"bgrid\",\"cgrid\"];a.enter().append(\"g\").attr(\"class\",function(t){return\"toplevel \"+t}).each(function(t){var r=n.select(this);e[t]=r,\"frontplot\"===t?r.append(\"g\").classed(\"scatterlayer\",!0):\"backplot\"===t?r.append(\"g\").classed(\"maplayer\",!0):\"plotbg\"===t?r.append(\"path\").attr(\"d\",\"M0,0Z\"):\"aline\"===t||\"bline\"===t||\"cline\"===t?r.append(\"path\"):\"grids\"===t&&i.forEach(function(t){e[t]=r.append(\"g\").classed(\"grid \"+t,!0)})}),a.order()};var k=Math.sqrt(4/3);w.adjustLayout=function(t,e){var r,n,a,i,o,s,f=this,p=t.domain,d=(p.x[0]+p.x[1])/2,g=(p.y[0]+p.y[1])/2,v=p.x[1]-p.x[0],m=p.y[1]-p.y[0],y=v*e.w,x=m*e.h,b=t.sum,_=t.aaxis.min,w=t.baxis.min,T=t.caxis.min;y>k*x?a=(i=x)*k:i=(a=y)/k,o=v*a/y,s=m*i/x,r=e.l+e.w*d-a/2,n=e.t+e.h*(1-g)-i/2,f.x0=r,f.y0=n,f.w=a,f.h=i,f.sum=b,f.xaxis={type:\"linear\",range:[_+2*T-b,b-_-2*w],domain:[d-o/2,d+o/2],_id:\"x\"},u(f.xaxis,f.graphDiv._fullLayout),f.xaxis.setScale(),f.xaxis.isPtWithinRange=function(t){return t.a>=f.aaxis.range[0]&&t.a<=f.aaxis.range[1]&&t.b>=f.baxis.range[1]&&t.b<=f.baxis.range[0]&&t.c>=f.caxis.range[1]&&t.c<=f.caxis.range[0]},f.yaxis={type:\"linear\",range:[_,b-w-T],domain:[g-s/2,g+s/2],_id:\"y\"},u(f.yaxis,f.graphDiv._fullLayout),f.yaxis.setScale(),f.yaxis.isPtWithinRange=function(){return!0};var A=f.yaxis.domain[0],M=f.aaxis=h({},t.aaxis,{range:[_,b-w-T],side:\"left\",tickangle:(+t.aaxis.tickangle||0)-30,domain:[A,A+s*k],anchor:\"free\",position:0,_id:\"y\",_length:a});u(M,f.graphDiv._fullLayout),M.setScale();var S=f.baxis=h({},t.baxis,{range:[b-_-T,w],side:\"bottom\",domain:f.xaxis.domain,anchor:\"free\",position:0,_id:\"x\",_length:a});u(S,f.graphDiv._fullLayout),S.setScale();var E=f.caxis=h({},t.caxis,{range:[b-_-w,T],side:\"right\",tickangle:(+t.caxis.tickangle||0)+30,domain:[A,A+s*k],anchor:\"free\",position:0,_id:\"y\",_length:a});u(E,f.graphDiv._fullLayout),E.setScale();var C=\"M\"+r+\",\"+(n+i)+\"h\"+a+\"l-\"+a/2+\",-\"+i+\"Z\";f.clipDef.select(\"path\").attr(\"d\",C),f.layers.plotbg.select(\"path\").attr(\"d\",C);var L=\"M0,\"+i+\"h\"+a+\"l-\"+a/2+\",-\"+i+\"Z\";f.clipDefRelative.select(\"path\").attr(\"d\",L);var P=\"translate(\"+r+\",\"+n+\")\";f.plotContainer.selectAll(\".scatterlayer,.maplayer\").attr(\"transform\",P),f.clipDefRelative.select(\"path\").attr(\"transform\",null);var O=\"translate(\"+(r-S._offset)+\",\"+(n+i)+\")\";f.layers.baxis.attr(\"transform\",O),f.layers.bgrid.attr(\"transform\",O);var I=\"translate(\"+(r+a/2)+\",\"+n+\")rotate(30)translate(0,\"+-M._offset+\")\";f.layers.aaxis.attr(\"transform\",I),f.layers.agrid.attr(\"transform\",I);var z=\"translate(\"+(r+a/2)+\",\"+n+\")rotate(-30)translate(0,\"+-E._offset+\")\";f.layers.caxis.attr(\"transform\",z),f.layers.cgrid.attr(\"transform\",z),f.drawAxes(!0),f.layers.aline.select(\"path\").attr(\"d\",M.showline?\"M\"+r+\",\"+(n+i)+\"l\"+a/2+\",-\"+i:\"M0,0\").call(l.stroke,M.linecolor||\"#000\").style(\"stroke-width\",(M.linewidth||0)+\"px\"),f.layers.bline.select(\"path\").attr(\"d\",S.showline?\"M\"+r+\",\"+(n+i)+\"h\"+a:\"M0,0\").call(l.stroke,S.linecolor||\"#000\").style(\"stroke-width\",(S.linewidth||0)+\"px\"),f.layers.cline.select(\"path\").attr(\"d\",E.showline?\"M\"+(r+a/2)+\",\"+n+\"l\"+a/2+\",\"+i:\"M0,0\").call(l.stroke,E.linecolor||\"#000\").style(\"stroke-width\",(E.linewidth||0)+\"px\"),f.graphDiv._context.staticPlot||f.initInteractions(),c.setClipUrl(f.layers.frontplot,f._hasClipOnAxisFalse?null:f.clipId,f.graphDiv)},w.drawAxes=function(t){var e=this.graphDiv,r=this.id.substr(7)+\"title\",n=this.layers,a=this.aaxis,i=this.baxis,o=this.caxis;if(this.drawAx(a),this.drawAx(i),this.drawAx(o),t){var l=Math.max(a.showticklabels?a.tickfont.size/2:0,(o.showticklabels?.75*o.tickfont.size:0)+(\"outside\"===o.ticks?.87*o.ticklen:0)),c=(i.showticklabels?i.tickfont.size:0)+(\"outside\"===i.ticks?i.ticklen:0)+3;n[\"a-title\"]=v.draw(e,\"a\"+r,{propContainer:a,propName:this.id+\".aaxis.title\",placeholder:s(e,\"Click to enter Component A title\"),attributes:{x:this.x0+this.w/2,y:this.y0-a.title.font.size/3-l,\"text-anchor\":\"middle\"}}),n[\"b-title\"]=v.draw(e,\"b\"+r,{propContainer:i,propName:this.id+\".baxis.title\",placeholder:s(e,\"Click to enter Component B title\"),attributes:{x:this.x0-c,y:this.y0+this.h+.83*i.title.font.size+c,\"text-anchor\":\"middle\"}}),n[\"c-title\"]=v.draw(e,\"c\"+r,{propContainer:o,propName:this.id+\".caxis.title\",placeholder:s(e,\"Click to enter Component C title\"),attributes:{x:this.x0+this.w+c,y:this.y0+this.h+.83*o.title.font.size+c,\"text-anchor\":\"middle\"}})}},w.drawAx=function(t){var e,r=this.graphDiv,n=t._name,a=n.charAt(0),i=t._id,s=this.layers[n],l=a+\"tickLayout\",c=(e=t).ticks+String(e.ticklen)+String(e.showticklabels);this[l]!==c&&(s.selectAll(\".\"+i+\"tick\").remove(),this[l]=c),t.setScale();var u=p.calcTicks(t),h=p.clipEnds(t,u),f=p.makeTransFn(t),d=p.getTickSigns(t)[2],g=o.deg2rad(30),v=d*(t.linewidth||1)/2,m=d*t.ticklen,y=this.w,x=this.h,b=\"b\"===a?\"M0,\"+v+\"l\"+Math.sin(g)*m+\",\"+Math.cos(g)*m:\"M\"+v+\",0l\"+Math.cos(g)*m+\",\"+-Math.sin(g)*m,_={a:\"M0,0l\"+x+\",-\"+y/2,b:\"M0,0l-\"+y/2+\",-\"+x,c:\"M0,0l-\"+x+\",\"+y/2}[a];p.drawTicks(r,t,{vals:\"inside\"===t.ticks?h:u,layer:s,path:b,transFn:f,crisp:!1}),p.drawGrid(r,t,{vals:h,layer:this.layers[a+\"grid\"],path:_,transFn:f,crisp:!1}),p.drawLabels(r,t,{vals:u,layer:s,transFn:f,labelFns:p.makeLabelFns(t,0,30)})};var T=b.MINZOOM/2+.87,A=\"m-0.87,.5h\"+T+\"v3h-\"+(T+5.2)+\"l\"+(T/2+2.6)+\",-\"+(.87*T+4.5)+\"l2.6,1.5l-\"+T/2+\",\"+.87*T+\"Z\",M=\"m0.87,.5h-\"+T+\"v3h\"+(T+5.2)+\"l-\"+(T/2+2.6)+\",-\"+(.87*T+4.5)+\"l-2.6,1.5l\"+T/2+\",\"+.87*T+\"Z\",S=\"m0,1l\"+T/2+\",\"+.87*T+\"l2.6,-1.5l-\"+(T/2+2.6)+\",-\"+(.87*T+4.5)+\"l-\"+(T/2+2.6)+\",\"+(.87*T+4.5)+\"l2.6,1.5l\"+T/2+\",-\"+.87*T+\"Z\",E=\"m0.5,0.5h5v-2h-5v-5h-2v5h-5v2h5v5h2Z\",C=!0;function L(t){n.select(t).selectAll(\".zoombox,.js-zoombox-backdrop,.js-zoombox-menu,.zoombox-corners\").remove()}w.initInteractions=function(){var t,e,r,n,u,h,f,p,v,_,w=this,T=w.layers.plotbg.select(\"path\").node(),P=w.graphDiv,O=P._fullLayout._zoomlayer,I={element:T,gd:P,plotinfo:{id:w.id,xaxis:w.xaxis,yaxis:w.yaxis},subplot:w.id,prepFn:function(i,o,s){I.xaxes=[w.xaxis],I.yaxes=[w.yaxis];var c=P._fullLayout.dragmode;I.minDrag=\"lasso\"===c?1:void 0,\"zoom\"===c?(I.moveFn=N,I.clickFn=D,I.doneFn=j,function(i,o,s){var c=T.getBoundingClientRect();t=o-c.left,e=s-c.top,r={a:w.aaxis.range[0],b:w.baxis.range[1],c:w.caxis.range[1]},u=r,n=w.aaxis.range[1]-r.a,h=a(w.graphDiv._fullLayout[w.id].bgcolor).getLuminance(),f=\"M0,\"+w.h+\"L\"+w.w/2+\", 0L\"+w.w+\",\"+w.h+\"Z\",p=!1,v=O.append(\"path\").attr(\"class\",\"zoombox\").attr(\"transform\",\"translate(\"+w.x0+\", \"+w.y0+\")\").style({fill:h>.2?\"rgba(0,0,0,0)\":\"rgba(255,255,255,0)\",\"stroke-width\":0}).attr(\"d\",f),_=O.append(\"path\").attr(\"class\",\"zoombox-corners\").attr(\"transform\",\"translate(\"+w.x0+\", \"+w.y0+\")\").style({fill:l.background,stroke:l.defaultLine,\"stroke-width\":1,opacity:0}).attr(\"d\",\"M0,0Z\"),x(P)}(0,o,s)):\"pan\"===c?(I.moveFn=V,I.clickFn=D,I.doneFn=U,r={a:w.aaxis.range[0],b:w.baxis.range[1],c:w.caxis.range[1]},u=r,x(P)):\"select\"!==c&&\"lasso\"!==c||m(i,o,s,I,c)}};function z(t){var e={};return e[w.id+\".aaxis.min\"]=t.a,e[w.id+\".baxis.min\"]=t.b,e[w.id+\".caxis.min\"]=t.c,e}function D(t,e){var r=P._fullLayout.clickmode;L(P),2===t&&(P.emit(\"plotly_doubleclick\",null),i.call(\"_guiRelayout\",P,z({a:0,b:0,c:0}))),r.indexOf(\"select\")>-1&&1===t&&y(e,P,[w.xaxis],[w.yaxis],w.id,I),r.indexOf(\"event\")>-1&&g.click(P,e,w.id)}function R(t,e){return 1-e/w.h}function F(t,e){return 1-(t+(w.h-e)/Math.sqrt(3))/w.w}function B(t,e){return(t-(w.h-e)/Math.sqrt(3))/w.w}function N(a,i){var o=t+a,s=e+i,l=Math.max(0,Math.min(1,R(0,e),R(0,s))),c=Math.max(0,Math.min(1,F(t,e),F(o,s))),d=Math.max(0,Math.min(1,B(t,e),B(o,s))),g=(l/2+d)*w.w,m=(1-l/2-c)*w.w,y=(g+m)/2,x=m-g,T=(1-l)*w.h,C=T-x/k;x<b.MINZOOM?(u=r,v.attr(\"d\",f),_.attr(\"d\",\"M0,0Z\")):(u={a:r.a+l*n,b:r.b+c*n,c:r.c+d*n},v.attr(\"d\",f+\"M\"+g+\",\"+T+\"H\"+m+\"L\"+y+\",\"+C+\"L\"+g+\",\"+T+\"Z\"),_.attr(\"d\",\"M\"+t+\",\"+e+E+\"M\"+g+\",\"+T+A+\"M\"+m+\",\"+T+M+\"M\"+y+\",\"+C+S)),p||(v.transition().style(\"fill\",h>.2?\"rgba(0,0,0,0.4)\":\"rgba(255,255,255,0.3)\").duration(200),_.transition().style(\"opacity\",1).duration(200),p=!0),P.emit(\"plotly_relayouting\",z(u))}function j(){L(P),u!==r&&(i.call(\"_guiRelayout\",P,z(u)),C&&P.data&&P._context.showTips&&(o.notifier(s(P,\"Double-click to zoom back out\"),\"long\"),C=!1))}function V(t,e){var n=t/w.xaxis._m,a=e/w.yaxis._m,i=[(u={a:r.a-a,b:r.b+(n+a)/2,c:r.c-(n-a)/2}).a,u.b,u.c].sort(),o=i.indexOf(u.a),s=i.indexOf(u.b),l=i.indexOf(u.c);i[0]<0&&(i[1]+i[0]/2<0?(i[2]+=i[0]+i[1],i[0]=i[1]=0):(i[2]+=i[0]/2,i[1]+=i[0]/2,i[0]=0),u={a:i[o],b:i[s],c:i[l]},e=(r.a-u.a)*w.yaxis._m,t=(r.c-u.c-r.b+u.b)*w.xaxis._m);var h=\"translate(\"+(w.x0+t)+\",\"+(w.y0+e)+\")\";w.plotContainer.selectAll(\".scatterlayer,.maplayer\").attr(\"transform\",h);var f=\"translate(\"+-t+\",\"+-e+\")\";w.clipDefRelative.select(\"path\").attr(\"transform\",f),w.aaxis.range=[u.a,w.sum-u.b-u.c],w.baxis.range=[w.sum-u.a-u.c,u.b],w.caxis.range=[w.sum-u.a-u.b,u.c],w.drawAxes(!1),w._hasClipOnAxisFalse&&w.plotContainer.select(\".scatterlayer\").selectAll(\".trace\").call(c.hideOutsideRangePoints,w),P.emit(\"plotly_relayouting\",z(u))}function U(){i.call(\"_guiRelayout\",P,z(u))}T.onmousemove=function(t){g.hover(P,t,w.id),P._fullLayout._lasthover=T,P._fullLayout._hoversubplot=w.id},T.onmouseout=function(t){P._dragging||d.unhover(P,t)},d.init(I)}},{\"../../components/color\":594,\"../../components/dragelement\":612,\"../../components/drawing\":615,\"../../components/fx\":632,\"../../components/titles\":681,\"../../lib\":719,\"../../lib/extend\":710,\"../../registry\":848,\"../cartesian/axes\":767,\"../cartesian/constants\":773,\"../cartesian/select\":784,\"../cartesian/set_convert\":785,\"../plots\":828,d3:164,tinycolor2:538}],848:[function(t,e,r){\"use strict\";var n=t(\"./lib/loggers\"),a=t(\"./lib/noop\"),i=t(\"./lib/push_unique\"),o=t(\"./lib/is_plain_object\"),s=t(\"./lib/dom\").addStyleRule,l=t(\"./lib/extend\"),c=t(\"./plots/attributes\"),u=t(\"./plots/layout_attributes\"),h=l.extendFlat,f=l.extendDeepAll;function p(t){var e=t.name,a=t.categories,i=t.meta;if(r.modules[e])n.log(\"Type \"+e+\" already registered\");else{r.subplotsRegistry[t.basePlotModule.name]||function(t){var e=t.name;if(r.subplotsRegistry[e])return void n.log(\"Plot type \"+e+\" already registered.\");for(var a in m(t),r.subplotsRegistry[e]=t,r.componentsRegistry)b(a,t.name)}(t.basePlotModule);for(var o={},l=0;l<a.length;l++)o[a[l]]=!0,r.allCategories[a[l]]=!0;for(var c in r.modules[e]={_module:t,categories:o},i&&Object.keys(i).length&&(r.modules[e].meta=i),r.allTypes.push(e),r.componentsRegistry)y(c,e);t.layoutAttributes&&h(r.traceLayoutAttributes,t.layoutAttributes);var u=t.basePlotModule,f=u.name;if(\"mapbox\"===f){var p=u.constants.styleRules;for(var d in p)s(\".js-plotly-plot .plotly .mapboxgl-\"+d,p[d])}\"geo\"!==f&&\"mapbox\"!==f||void 0===typeof window||void 0!==window.PlotlyGeoAssets||(window.PlotlyGeoAssets={topojson:{}})}}function d(t){if(\"string\"!=typeof t.name)throw new Error(\"Component module *name* must be a string.\");var e=t.name;for(var n in r.componentsRegistry[e]=t,t.layoutAttributes&&(t.layoutAttributes._isLinkedToArray&&i(r.layoutArrayContainers,e),m(t)),r.modules)y(e,n);for(var a in r.subplotsRegistry)b(e,a);for(var o in r.transformsRegistry)x(e,o);t.schema&&t.schema.layout&&f(u,t.schema.layout)}function g(t){if(\"string\"!=typeof t.name)throw new Error(\"Transform module *name* must be a string.\");var e=\"Transform module \"+t.name,a=\"function\"==typeof t.transform,i=\"function\"==typeof t.calcTransform;if(!a&&!i)throw new Error(e+\" is missing a *transform* or *calcTransform* method.\");for(var s in a&&i&&n.log([e+\" has both a *transform* and *calcTransform* methods.\",\"Please note that all *transform* methods are executed\",\"before all *calcTransform* methods.\"].join(\" \")),o(t.attributes)||n.log(e+\" registered without an *attributes* object.\"),\"function\"!=typeof t.supplyDefaults&&n.log(e+\" registered without a *supplyDefaults* method.\"),r.transformsRegistry[t.name]=t,r.componentsRegistry)x(s,t.name)}function v(t){var e=t.name,n=e.split(\"-\")[0],a=t.dictionary,i=t.format,o=a&&Object.keys(a).length,s=i&&Object.keys(i).length,l=r.localeRegistry,c=l[e];if(c||(l[e]=c={}),n!==e){var u=l[n];u||(l[n]=u={}),o&&u.dictionary===c.dictionary&&(u.dictionary=a),s&&u.format===c.format&&(u.format=i)}o&&(c.dictionary=a),s&&(c.format=i)}function m(t){if(t.layoutAttributes){var e=t.layoutAttributes._arrayAttrRegexps;if(e)for(var n=0;n<e.length;n++)i(r.layoutArrayRegexes,e[n])}}function y(t,e){var n=r.componentsRegistry[t].schema;if(n&&n.traces){var a=n.traces[e];a&&f(r.modules[e]._module.attributes,a)}}function x(t,e){var n=r.componentsRegistry[t].schema;if(n&&n.transforms){var a=n.transforms[e];a&&f(r.transformsRegistry[e].attributes,a)}}function b(t,e){var n=r.componentsRegistry[t].schema;if(n&&n.subplots){var a=r.subplotsRegistry[e],i=a.layoutAttributes,o=\"subplot\"===a.attr?a.name:a.attr;Array.isArray(o)&&(o=o[0]);var s=n.subplots[o];i&&s&&f(i,s)}}function _(t){return\"object\"==typeof t&&(t=t.type),t}r.modules={},r.allCategories={},r.allTypes=[],r.subplotsRegistry={},r.transformsRegistry={},r.componentsRegistry={},r.layoutArrayContainers=[],r.layoutArrayRegexes=[],r.traceLayoutAttributes={},r.localeRegistry={},r.apiMethodRegistry={},r.collectableSubplotTypes=null,r.register=function(t){if(r.collectableSubplotTypes=null,!t)throw new Error(\"No argument passed to Plotly.register.\");t&&!Array.isArray(t)&&(t=[t]);for(var e=0;e<t.length;e++){var n=t[e];if(!n)throw new Error(\"Invalid module was attempted to be registered!\");switch(n.moduleType){case\"trace\":p(n);break;case\"transform\":g(n);break;case\"component\":d(n);break;case\"locale\":v(n);break;case\"apiMethod\":var a=n.name;r.apiMethodRegistry[a]=n.fn;break;default:throw new Error(\"Invalid module was attempted to be registered!\")}}},r.getModule=function(t){var e=r.modules[_(t)];return!!e&&e._module},r.traceIs=function(t,e){if(\"various\"===(t=_(t)))return!1;var a=r.modules[t];return a||(t&&\"area\"!==t&&n.log(\"Unrecognized trace type \"+t+\".\"),a=r.modules[c.type.dflt]),!!a.categories[e]},r.getTransformIndices=function(t,e){for(var r=[],n=t.transforms||[],a=0;a<n.length;a++)n[a].type===e&&r.push(a);return r},r.hasTransform=function(t,e){for(var r=t.transforms||[],n=0;n<r.length;n++)if(r[n].type===e)return!0;return!1},r.getComponentMethod=function(t,e){var n=r.componentsRegistry[t];return n&&n[e]||a},r.call=function(){var t=arguments[0],e=[].slice.call(arguments,1);return r.apiMethodRegistry[t].apply(null,e)}},{\"./lib/dom\":708,\"./lib/extend\":710,\"./lib/is_plain_object\":720,\"./lib/loggers\":723,\"./lib/noop\":728,\"./lib/push_unique\":733,\"./plots/attributes\":764,\"./plots/layout_attributes\":819}],849:[function(t,e,r){\"use strict\";var n=t(\"../registry\"),a=t(\"../lib\"),i=a.extendFlat,o=a.extendDeep;function s(t){var e;switch(t){case\"themes__thumb\":e={autosize:!0,width:150,height:150,title:{text:\"\"},showlegend:!1,margin:{l:5,r:5,t:5,b:5,pad:0},annotations:[]};break;case\"thumbnail\":e={title:{text:\"\"},hidesources:!0,showlegend:!1,borderwidth:0,bordercolor:\"\",margin:{l:1,r:1,t:1,b:1,pad:0},annotations:[]};break;default:e={}}return e}e.exports=function(t,e){var r;t.framework&&t.framework.isPolar&&(t=t.framework.getConfig());var a,l=t.data,c=t.layout,u=o([],l),h=o({},c,s(e.tileClass)),f=t._context||{};if(e.width&&(h.width=e.width),e.height&&(h.height=e.height),\"thumbnail\"===e.tileClass||\"themes__thumb\"===e.tileClass){h.annotations=[];var p=Object.keys(h);for(r=0;r<p.length;r++)a=p[r],[\"xaxis\",\"yaxis\",\"zaxis\"].indexOf(a.slice(0,5))>-1&&(h[p[r]].title={text:\"\"});for(r=0;r<u.length;r++){var d=u[r];d.showscale=!1,d.marker&&(d.marker.showscale=!1),n.traceIs(d,\"pie-like\")&&(d.textposition=\"none\")}}if(Array.isArray(e.annotations))for(r=0;r<e.annotations.length;r++)h.annotations.push(e.annotations[r]);var g=Object.keys(h).filter(function(t){return t.match(/^scene\\d*$/)});if(g.length){var v={};for(\"thumbnail\"===e.tileClass&&(v={title:{text:\"\"},showaxeslabels:!1,showticklabels:!1,linetickenable:!1}),r=0;r<g.length;r++){var m=h[g[r]];m.xaxis||(m.xaxis={}),m.yaxis||(m.yaxis={}),m.zaxis||(m.zaxis={}),i(m.xaxis,v),i(m.yaxis,v),i(m.zaxis,v),m._scene=null}}var y=document.createElement(\"div\");e.tileClass&&(y.className=e.tileClass);var x={gd:y,td:y,layout:h,data:u,config:{staticPlot:void 0===e.staticPlot||e.staticPlot,plotGlPixelRatio:void 0===e.plotGlPixelRatio?2:e.plotGlPixelRatio,displaylogo:e.displaylogo||!1,showLink:e.showLink||!1,showTips:e.showTips||!1,mapboxAccessToken:f.mapboxAccessToken}};return\"transparent\"!==e.setBackground&&(x.config.setBackground=e.setBackground||\"opaque\"),x.gd.defaultLayout=s(e.tileClass),x}},{\"../lib\":719,\"../registry\":848}],850:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),a=t(\"../plot_api/to_image\"),i=t(\"./filesaver\"),o=t(\"./helpers\");e.exports=function(t,e){var r;return n.isPlainObject(t)||(r=n.getGraphDiv(t)),(e=e||{}).format=e.format||\"png\",e.imageDataOnly=!0,new Promise(function(s,l){r&&r._snapshotInProgress&&l(new Error(\"Snapshotting already in progress.\")),n.isIE()&&\"svg\"!==e.format&&l(new Error(o.MSG_IE_BAD_FORMAT)),r&&(r._snapshotInProgress=!0);var c=a(t,e),u=e.filename||t.fn||\"newplot\";u+=\".\"+e.format,c.then(function(t){return r&&(r._snapshotInProgress=!1),i(t,u,e.format)}).then(function(t){s(t)}).catch(function(t){r&&(r._snapshotInProgress=!1),l(t)})})}},{\"../lib\":719,\"../plot_api/to_image\":760,\"./filesaver\":851,\"./helpers\":852}],851:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),a=t(\"./helpers\");e.exports=function(t,e,r){var i=document.createElement(\"a\"),o=\"download\"in i;return new Promise(function(s,l){var c,u;if(n.isIE9orBelow()&&l(new Error(\"IE < 10 unsupported\")),n.isSafari()){var h=\"svg\"===r?\",\":\";base64,\";return a.octetStream(h+encodeURIComponent(t)),s(e)}return n.isIE()?(c=a.createBlob(t,\"svg\"),window.navigator.msSaveBlob(c,e),c=null,s(e)):o?(c=a.createBlob(t,r),u=a.createObjectURL(c),i.href=u,i.download=e,document.body.appendChild(i),i.click(),document.body.removeChild(i),a.revokeObjectURL(u),c=null,s(e)):void l(new Error(\"download error\"))})}},{\"../lib\":719,\"./helpers\":852}],852:[function(t,e,r){\"use strict\";var n=t(\"../registry\");r.getDelay=function(t){return t._has&&(t._has(\"gl3d\")||t._has(\"gl2d\")||t._has(\"mapbox\"))?500:0},r.getRedrawFunc=function(t){return function(){var e=t._fullLayout||{};!(e._has&&e._has(\"polar\"))&&t.data&&t.data[0]&&t.data[0].r||n.getComponentMethod(\"colorbar\",\"draw\")(t)}},r.encodeSVG=function(t){return\"data:image/svg+xml,\"+encodeURIComponent(t)};var a=window.URL||window.webkitURL;r.createObjectURL=function(t){return a.createObjectURL(t)},r.revokeObjectURL=function(t){return a.revokeObjectURL(t)},r.createBlob=function(t,e){if(\"svg\"===e)return new window.Blob([t],{type:\"image/svg+xml;charset=utf-8\"});var r=function(t){for(var e=t.length,r=new ArrayBuffer(e),n=new Uint8Array(r),a=0;a<e;a++)n[a]=t.charCodeAt(a);return r}(window.atob(t));return new window.Blob([r],{type:\"image/\"+e})},r.octetStream=function(t){document.location.href=\"data:application/octet-stream\"+t},r.IMAGE_URL_PREFIX=/^data:image\\/\\w+;base64,/,r.MSG_IE_BAD_FORMAT=\"Sorry IE does not support downloading from canvas. Try {format:'svg'} instead.\"},{\"../registry\":848}],853:[function(t,e,r){\"use strict\";var n=t(\"./helpers\"),a={getDelay:n.getDelay,getRedrawFunc:n.getRedrawFunc,clone:t(\"./cloneplot\"),toSVG:t(\"./tosvg\"),svgToImg:t(\"./svgtoimg\"),toImage:t(\"./toimage\"),downloadImage:t(\"./download\")};e.exports=a},{\"./cloneplot\":849,\"./download\":850,\"./helpers\":852,\"./svgtoimg\":854,\"./toimage\":855,\"./tosvg\":856}],854:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),a=t(\"events\").EventEmitter,i=t(\"./helpers\");e.exports=function(t){var e=t.emitter||new a,r=new Promise(function(a,o){var s=window.Image,l=t.svg,c=t.format||\"png\";if(n.isIE()&&\"svg\"!==c){var u=new Error(i.MSG_IE_BAD_FORMAT);return o(u),t.promise?r:e.emit(\"error\",u)}var h,f,p=t.canvas,d=t.scale||1,g=t.width||300,v=t.height||150,m=d*g,y=d*v,x=p.getContext(\"2d\"),b=new s;\"svg\"===c||n.isIE9orBelow()||n.isSafari()?f=i.encodeSVG(l):(h=i.createBlob(l,\"svg\"),f=i.createObjectURL(h)),p.width=m,p.height=y,b.onload=function(){var r;switch(h=null,i.revokeObjectURL(f),\"svg\"!==c&&x.drawImage(b,0,0,m,y),c){case\"jpeg\":r=p.toDataURL(\"image/jpeg\");break;case\"png\":r=p.toDataURL(\"image/png\");break;case\"webp\":r=p.toDataURL(\"image/webp\");break;case\"svg\":r=f;break;default:var n=\"Image format is not jpeg, png, svg or webp.\";if(o(new Error(n)),!t.promise)return e.emit(\"error\",n)}a(r),t.promise||e.emit(\"success\",r)},b.onerror=function(r){if(h=null,i.revokeObjectURL(f),o(r),!t.promise)return e.emit(\"error\",r)},b.src=f});return t.promise?r:e}},{\"../lib\":719,\"./helpers\":852,events:105}],855:[function(t,e,r){\"use strict\";var n=t(\"events\").EventEmitter,a=t(\"../registry\"),i=t(\"../lib\"),o=t(\"./helpers\"),s=t(\"./cloneplot\"),l=t(\"./tosvg\"),c=t(\"./svgtoimg\");e.exports=function(t,e){var r=new n,u=s(t,{format:\"png\"}),h=u.gd;h.style.position=\"absolute\",h.style.left=\"-5000px\",document.body.appendChild(h);var f=o.getRedrawFunc(h);return a.call(\"plot\",h,u.data,u.layout,u.config).then(f).then(function(){var t=o.getDelay(h._fullLayout);setTimeout(function(){var t=l(h),n=document.createElement(\"canvas\");n.id=i.randstr(),(r=c({format:e.format,width:h._fullLayout.width,height:h._fullLayout.height,canvas:n,emitter:r,svg:t})).clean=function(){h&&document.body.removeChild(h)}},t)}).catch(function(t){r.emit(\"error\",t)}),r}},{\"../lib\":719,\"../registry\":848,\"./cloneplot\":849,\"./helpers\":852,\"./svgtoimg\":854,\"./tosvg\":856,events:105}],856:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../lib\"),i=t(\"../components/drawing\"),o=t(\"../components/color\"),s=t(\"../constants/xmlns_namespaces\"),l=/\"/g,c=new RegExp('(\"TOBESTRIPPED)|(TOBESTRIPPED\")',\"g\");e.exports=function(t,e,r){var u,h=t._fullLayout,f=h._paper,p=h._toppaper,d=h.width,g=h.height;f.insert(\"rect\",\":first-child\").call(i.setRect,0,0,d,g).call(o.fill,h.paper_bgcolor);var v=h._basePlotModules||[];for(u=0;u<v.length;u++){var m=v[u];m.toSVG&&m.toSVG(t)}if(p){var y=p.node().childNodes,x=Array.prototype.slice.call(y);for(u=0;u<x.length;u++){var b=x[u];b.childNodes.length&&f.node().appendChild(b)}}h._draggers&&h._draggers.remove(),f.node().style.background=\"\",f.selectAll(\"text\").attr({\"data-unformatted\":null,\"data-math\":null}).each(function(){var t=n.select(this);if(\"hidden\"!==this.style.visibility&&\"none\"!==this.style.display){t.style({visibility:null,display:null});var e=this.style.fontFamily;e&&-1!==e.indexOf('\"')&&t.style(\"font-family\",e.replace(l,\"TOBESTRIPPED\"))}else t.remove()}),f.selectAll(\".point, .scatterpts, .legendfill>path, .legendlines>path, .cbfill\").each(function(){var t=n.select(this),e=this.style.fill;e&&-1!==e.indexOf(\"url(\")&&t.style(\"fill\",e.replace(l,\"TOBESTRIPPED\"));var r=this.style.stroke;r&&-1!==r.indexOf(\"url(\")&&t.style(\"stroke\",r.replace(l,\"TOBESTRIPPED\"))}),\"pdf\"!==e&&\"eps\"!==e||f.selectAll(\"#MathJax_SVG_glyphs path\").attr(\"stroke-width\",0),f.node().setAttributeNS(s.xmlns,\"xmlns\",s.svg),f.node().setAttributeNS(s.xmlns,\"xmlns:xlink\",s.xlink),\"svg\"===e&&r&&(f.attr(\"width\",r*d),f.attr(\"height\",r*g),f.attr(\"viewBox\",\"0 0 \"+d+\" \"+g));var _=(new window.XMLSerializer).serializeToString(f.node());return _=function(t){var e=n.select(\"body\").append(\"div\").style({display:\"none\"}).html(\"\"),r=t.replace(/(&[^;]*;)/gi,function(t){return\"&lt;\"===t?\"&#60;\":\"&rt;\"===t?\"&#62;\":-1!==t.indexOf(\"<\")||-1!==t.indexOf(\">\")?\"\":e.html(t).text()});return e.remove(),r}(_),_=(_=_.replace(/&(?!\\w+;|\\#[0-9]+;| \\#x[0-9A-F]+;)/g,\"&amp;\")).replace(c,\"'\"),a.isIE()&&(_=(_=(_=_.replace(/\"/gi,\"'\")).replace(/(\\('#)([^']*)('\\))/gi,'(\"#$2\")')).replace(/(\\\\')/gi,'\"')),_}},{\"../components/color\":594,\"../components/drawing\":615,\"../constants/xmlns_namespaces\":696,\"../lib\":719,d3:164}],857:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e){for(var r=0;r<t.length;r++)t[r].i=r;n.mergeArray(e.text,t,\"tx\"),n.mergeArray(e.hovertext,t,\"htx\");var a=e.marker;if(a){n.mergeArray(a.opacity,t,\"mo\",!0),n.mergeArray(a.color,t,\"mc\");var i=a.line;i&&(n.mergeArray(i.color,t,\"mlc\"),n.mergeArrayCastPositive(i.width,t,\"mlw\"))}}},{\"../../lib\":719}],858:[function(t,e,r){\"use strict\";var n=t(\"../scatter/attributes\"),a=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"../../plots/template_attributes\").texttemplateAttrs,o=t(\"../../components/colorscale/attributes\"),s=t(\"../../plots/font_attributes\"),l=t(\"./constants\"),c=t(\"../../lib/extend\").extendFlat,u=s({editType:\"calc\",arrayOk:!0,colorEditType:\"style\"}),h=c({},n.marker.line.width,{dflt:0}),f=c({width:h,editType:\"calc\"},o(\"marker.line\")),p=c({line:f,editType:\"calc\"},o(\"marker\"),{opacity:{valType:\"number\",arrayOk:!0,dflt:1,min:0,max:1,editType:\"style\"}});e.exports={x:n.x,x0:n.x0,dx:n.dx,y:n.y,y0:n.y0,dy:n.dy,text:n.text,texttemplate:i({editType:\"plot\"},{keys:l.eventDataKeys}),hovertext:n.hovertext,hovertemplate:a({},{keys:l.eventDataKeys}),textposition:{valType:\"enumerated\",values:[\"inside\",\"outside\",\"auto\",\"none\"],dflt:\"none\",arrayOk:!0,editType:\"calc\"},insidetextanchor:{valType:\"enumerated\",values:[\"end\",\"middle\",\"start\"],dflt:\"end\",editType:\"plot\"},textangle:{valType:\"angle\",dflt:\"auto\",editType:\"plot\"},textfont:c({},u,{}),insidetextfont:c({},u,{}),outsidetextfont:c({},u,{}),constraintext:{valType:\"enumerated\",values:[\"inside\",\"outside\",\"both\",\"none\"],dflt:\"both\",editType:\"calc\"},cliponaxis:c({},n.cliponaxis,{}),orientation:{valType:\"enumerated\",values:[\"v\",\"h\"],editType:\"calc+clearAxisTypes\"},base:{valType:\"any\",dflt:null,arrayOk:!0,editType:\"calc\"},offset:{valType:\"number\",dflt:null,arrayOk:!0,editType:\"calc\"},width:{valType:\"number\",dflt:null,min:0,arrayOk:!0,editType:\"calc\"},marker:p,offsetgroup:{valType:\"string\",dflt:\"\",editType:\"calc\"},alignmentgroup:{valType:\"string\",dflt:\"\",editType:\"calc\"},selected:{marker:{opacity:n.selected.marker.opacity,color:n.selected.marker.color,editType:\"style\"},textfont:n.selected.textfont,editType:\"style\"},unselected:{marker:{opacity:n.unselected.marker.opacity,color:n.unselected.marker.color,editType:\"style\"},textfont:n.unselected.textfont,editType:\"style\"},r:n.r,t:n.t,_deprecated:{bardir:{valType:\"enumerated\",editType:\"calc\",values:[\"v\",\"h\"]}}}},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plots/font_attributes\":793,\"../../plots/template_attributes\":843,\"../scatter/attributes\":1111,\"./constants\":860}],859:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),a=t(\"../../components/colorscale/helpers\").hasColorscale,i=t(\"../../components/colorscale/calc\"),o=t(\"./arrays_to_calcdata\"),s=t(\"../scatter/calc_selection\");e.exports=function(t,e){var r,l,c=n.getFromId(t,e.xaxis||\"x\"),u=n.getFromId(t,e.yaxis||\"y\");\"h\"===e.orientation?(r=c.makeCalcdata(e,\"x\"),l=u.makeCalcdata(e,\"y\")):(r=u.makeCalcdata(e,\"y\"),l=c.makeCalcdata(e,\"x\"));for(var h=Math.min(l.length,r.length),f=new Array(h),p=0;p<h;p++)f[p]={p:l[p],s:r[p]},e.ids&&(f[p].id=String(e.ids[p]));return a(e,\"marker\")&&i(t,e,{vals:e.marker.color,containerStr:\"marker\",cLetter:\"c\"}),a(e,\"marker.line\")&&i(t,e,{vals:e.marker.line.color,containerStr:\"marker.line\",cLetter:\"c\"}),o(f,e),s(f,e),f}},{\"../../components/colorscale/calc\":602,\"../../components/colorscale/helpers\":605,\"../../plots/cartesian/axes\":767,\"../scatter/calc_selection\":1113,\"./arrays_to_calcdata\":857}],860:[function(t,e,r){\"use strict\";e.exports={TEXTPAD:3,eventDataKeys:[]}},{}],861:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\").isArrayOrTypedArray,i=t(\"../../constants/numerical\").BADNUM,o=t(\"../../registry\"),s=t(\"../../plots/cartesian/axes\"),l=t(\"../../plots/cartesian/axis_ids\").getAxisGroup,c=t(\"./sieve.js\");function u(t,e,r,o,u){if(o.length){var b,_,w,k;switch(function(t,e){var r,i;for(r=0;r<e.length;r++){var o,s=e[r],l=s[0].trace,c=\"funnel\"===l.type?l._base:l.base,u=\"h\"===l.orientation?l.xcalendar:l.ycalendar,h=\"category\"===t.type||\"multicategory\"===t.type?function(){return null}:t.d2c;if(a(c)){for(i=0;i<Math.min(c.length,s.length);i++)o=h(c[i],0,u),n(o)?(s[i].b=+o,s[i].hasB=1):s[i].b=0;for(;i<s.length;i++)s[i].b=0}else{o=h(c,0,u);var f=n(o);for(o=f?o:0,i=0;i<s.length;i++)s[i].b=o,f&&(s[i].hasB=1)}}}(r,o),u.mode){case\"overlay\":h(e,r,o,u);break;case\"group\":for(b=[],_=[],w=0;w<o.length;w++)void 0===(k=o[w])[0].trace.offset?_.push(k):b.push(k);_.length&&function(t,e,r,n,a){var o=new c(n,{sepNegVal:!1,overlapNoMerge:!a.norm});(function(t,e,r,n){for(var a=t._fullLayout,i=r.positions,o=r.distinctPositions,s=r.minDiff,c=r.traces,u=c.length,h=i.length!==o.length,f=s*(1-n.gap),v=l(a,e._id)+c[0][0].trace.orientation,m=a._alignmentOpts[v]||{},y=0;y<u;y++){var x,b,_=c[y],w=_[0].trace,k=m[w.alignmentgroup]||{},T=Object.keys(k.offsetGroups||{}).length,A=(x=T?f/T:h?f/u:f)*(1-(n.groupgap||0));b=T?((2*w._offsetIndex+1-T)*x-A)/2:h?((2*y+1-u)*x-A)/2:-A/2;var M=_[0].t;M.barwidth=A,M.poffset=b,M.bargroupwidth=f,M.bardelta=s}r.binWidth=c[0][0].t.barwidth/100,p(r),d(e,r),g(e,r,h)})(t,e,o,a),function(t){for(var e=t.traces,r=0;r<e.length;r++){var n=e[r],a=n[0].trace;if(void 0===a.base)for(var o=new c([n],{sepNegVal:!0,overlapNoMerge:!0}),s=0;s<n.length;s++){var l=n[s];if(l.p!==i){var u=o.put(l.p,l.b+l.s);u&&(l.b=u)}}}}(o),a.norm?(m(o),y(r,o,a)):v(r,o)}(t,e,r,_,u),b.length&&h(e,r,b,u);break;case\"stack\":case\"relative\":for(b=[],_=[],w=0;w<o.length;w++)void 0===(k=o[w])[0].trace.base?_.push(k):b.push(k);_.length&&function(t,e,r,n,a){var o=new c(n,{sepNegVal:\"relative\"===a.mode,overlapNoMerge:!(a.norm||\"stack\"===a.mode||\"relative\"===a.mode)});f(e,o,a),function(t,e,r){var n,a,o,l,c,u,h=x(t),f=e.traces;for(l=0;l<f.length;l++)if(n=f[l],\"funnel\"===(a=n[0].trace).type)for(c=0;c<n.length;c++)(u=n[c]).s!==i&&e.put(u.p,-.5*u.s);for(l=0;l<f.length;l++){n=f[l],a=n[0].trace,o=\"funnel\"===a.type;var p=[];for(c=0;c<n.length;c++)if((u=n[c]).s!==i){var d;d=o?u.s:u.s+u.b;var g=e.put(u.p,d),v=g+d;u.b=g,u[h]=v,r.norm||(p.push(v),u.hasB&&p.push(g))}r.norm||(a._extremes[t._id]=s.findExtremes(t,p,{tozero:!0,padded:!0}))}}(r,o,a);for(var l=0;l<n.length;l++)for(var u=n[l],h=0;h<u.length;h++){var p=u[h];if(p.s!==i){var d=p.b+p.s===o.get(p.p,p.s);d&&(p._outmost=!0)}}a.norm&&y(r,o,a)}(0,e,r,_,u),b.length&&h(e,r,b,u)}!function(t,e){var r,a,i,o=x(e),s={},l=1/0,c=-1/0;for(r=0;r<t.length;r++)for(i=t[r],a=0;a<i.length;a++){var u=i[a].p;n(u)&&(l=Math.min(l,u),c=Math.max(c,u))}var h=1e4/(c-l),f=s.round=function(t){return String(Math.round(h*(t-l)))};for(r=0;r<t.length;r++){(i=t[r])[0].t.extents=s;var p=i[0].t.poffset,d=Array.isArray(p);for(a=0;a<i.length;a++){var g=i[a],v=g[o]-g.w/2;if(n(v)){var m=g[o]+g.w/2,y=f(g.p);s[y]?s[y]=[Math.min(v,s[y][0]),Math.max(m,s[y][1])]:s[y]=[v,m]}g.p0=g.p+(d?p[a]:p),g.p1=g.p0+g.w,g.s0=g.b,g.s1=g.s0+g.s}}}(o,e)}}function h(t,e,r,n){for(var a=0;a<r.length;a++){var i=r[a],o=new c([i],{sepNegVal:!1,overlapNoMerge:!n.norm});f(t,o,n),n.norm?(m(o),y(e,o,n)):v(e,o)}}function f(t,e,r){for(var n=e.minDiff,a=e.traces,i=n*(1-r.gap),o=i*(1-(r.groupgap||0)),s=-o/2,l=0;l<a.length;l++){var c=a[l][0].t;c.barwidth=o,c.poffset=s,c.bargroupwidth=i,c.bardelta=n}e.binWidth=a[0][0].t.barwidth/100,p(e),d(t,e),g(t,e)}function p(t){var e,r,i=t.traces;for(e=0;e<i.length;e++){var o,s=i[e],l=s[0],c=l.trace,u=l.t,h=c._offset||c.offset,f=u.poffset;if(a(h)){for(o=Array.prototype.slice.call(h,0,s.length),r=0;r<o.length;r++)n(o[r])||(o[r]=f);for(r=o.length;r<s.length;r++)o.push(f);u.poffset=o}else void 0!==h&&(u.poffset=h);var p=c._width||c.width,d=u.barwidth;if(a(p)){var g=Array.prototype.slice.call(p,0,s.length);for(r=0;r<g.length;r++)n(g[r])||(g[r]=d);for(r=g.length;r<s.length;r++)g.push(d);if(u.barwidth=g,void 0===h){for(o=[],r=0;r<s.length;r++)o.push(f+(d-g[r])/2);u.poffset=o}}else void 0!==p&&(u.barwidth=p,void 0===h&&(u.poffset=f+(d-p)/2))}}function d(t,e){for(var r=e.traces,n=x(t),a=0;a<r.length;a++)for(var i=r[a],o=i[0].t,s=o.poffset,l=Array.isArray(s),c=o.barwidth,u=Array.isArray(c),h=0;h<i.length;h++){var f=i[h],p=f.w=u?c[h]:c;f[n]=f.p+(l?s[h]:s)+p/2}}function g(t,e,r){var n=e.traces,a=e.minDiff/2;s.minDtick(t,e.minDiff,e.distinctPositions[0],r);for(var i=0;i<n.length;i++){var o,l,c,u,h=n[i],f=h[0],p=f.trace,d=[];for(u=0;u<h.length;u++)l=(o=h[u]).p-a,c=o.p+a,d.push(l,c);if(p.width||p.offset){var g=f.t,v=g.poffset,m=g.barwidth,y=Array.isArray(v),x=Array.isArray(m);for(u=0;u<h.length;u++){o=h[u];var b=y?v[u]:v,_=x?m[u]:m;c=(l=o.p+b)+_,d.push(l,c)}}p._extremes[t._id]=s.findExtremes(t,d,{padded:!1})}}function v(t,e){for(var r=e.traces,n=x(t),a=0;a<r.length;a++){for(var i=r[a],o=i[0].trace,l=[],c=!0,u=0;u<i.length;u++){var h=i[u],f=h.b,p=f+h.s;h[n]=p,l.push(p),h.hasB&&l.push(f),h.hasB&&h.b>0&&h.s>0||(c=!1)}o._extremes[t._id]=s.findExtremes(t,l,{tozero:!c,padded:!0})}}function m(t){for(var e=t.traces,r=0;r<e.length;r++)for(var n=e[r],a=0;a<n.length;a++){var o=n[a];o.s!==i&&t.put(o.p,o.b+o.s)}}function y(t,e,r){var a=e.traces,o=x(t),l=\"fraction\"===r.norm?1:100,c=l/1e9,u=t.l2c(t.c2l(0)),h=\"stack\"===r.mode?l:u;function f(e){return n(t.c2l(e))&&(e<u-c||e>h+c||!n(u))}for(var p=0;p<a.length;p++){for(var d=a[p],g=d[0].trace,v=[],m=!0,y=!1,b=0;b<d.length;b++){var _=d[b];if(_.s!==i){var w=Math.abs(l/e.get(_.p,_.s));_.b*=w,_.s*=w;var k=_.b,T=k+_.s;_[o]=T,v.push(T),y=y||f(T),_.hasB&&(v.push(k),y=y||f(k)),_.hasB&&_.b>0&&_.s>0||(m=!1)}}g._extremes[t._id]=s.findExtremes(t,v,{tozero:!m,padded:y})}}function x(t){return t._id.charAt(0)}e.exports={crossTraceCalc:function(t,e){for(var r=e.xaxis,n=e.yaxis,a=t._fullLayout,i=t._fullData,s=t.calcdata,l=[],c=[],h=0;h<i.length;h++){var f=i[h];!0===f.visible&&o.traceIs(f,\"bar\")&&f.xaxis===r._id&&f.yaxis===n._id&&(\"h\"===f.orientation?l.push(s[h]):c.push(s[h]))}var p={mode:a.barmode,norm:a.barnorm,gap:a.bargap,groupgap:a.bargroupgap};u(t,r,n,c,p),u(t,n,r,l,p)},setGroupPositions:u}},{\"../../constants/numerical\":695,\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../../plots/cartesian/axis_ids\":770,\"../../registry\":848,\"./sieve.js\":870,\"fast-isnumeric\":226}],862:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/color\"),i=t(\"../../registry\"),o=t(\"../scatter/xy_defaults\"),s=t(\"./style_defaults\"),l=t(\"../../plots/cartesian/axis_ids\").getAxisGroup,c=t(\"./attributes\"),u=n.coerceFont;function h(t,e,r,n){var a=e.orientation,i=e[{v:\"x\",h:\"y\"}[a]+\"axis\"],o=l(r,i)+a,s=r._alignmentOpts||{},c=n(\"alignmentgroup\"),u=s[o];u||(u=s[o]={});var h=u[c];h?h.traces.push(e):h=u[c]={traces:[e],alignmentIndex:Object.keys(u).length,offsetGroups:{}};var f=n(\"offsetgroup\"),p=h.offsetGroups,d=p[f];f&&(d||(d=p[f]={offsetIndex:Object.keys(p).length}),e._offsetIndex=d.offsetIndex)}function f(t,e,r,a,i,o){var s=!(!1===(o=o||{}).moduleHasSelected),l=!(!1===o.moduleHasUnselected),c=!(!1===o.moduleHasConstrain),h=!(!1===o.moduleHasCliponaxis),f=!(!1===o.moduleHasTextangle),p=!(!1===o.moduleHasInsideanchor),d=Array.isArray(i)||\"auto\"===i,g=d||\"inside\"===i,v=d||\"outside\"===i;if(g||v){var m=u(a,\"textfont\",r.font),y=n.extendFlat({},m);!(t.textfont&&t.textfont.color)&&delete y.color,u(a,\"insidetextfont\",y),v&&u(a,\"outsidetextfont\",m),s&&a(\"selected.textfont.color\"),l&&a(\"unselected.textfont.color\"),c&&a(\"constraintext\"),h&&a(\"cliponaxis\"),f&&a(\"textangle\"),a(\"texttemplate\")}g&&p&&a(\"insidetextanchor\")}e.exports={supplyDefaults:function(t,e,r,l){function u(r,a){return n.coerce(t,e,c,r,a)}if(o(t,e,l,u)){u(\"orientation\",e.x&&!e.y?\"h\":\"v\"),u(\"base\"),u(\"offset\"),u(\"width\"),u(\"text\"),u(\"hovertext\"),u(\"hovertemplate\");var h=u(\"textposition\");f(t,0,l,u,h,{moduleHasSelected:!0,moduleHasUnselected:!0,moduleHasConstrain:!0,moduleHasCliponaxis:!0,moduleHasTextangle:!0,moduleHasInsideanchor:!0}),s(t,e,u,r,l);var p=(e.marker.line||{}).color,d=i.getComponentMethod(\"errorbars\",\"supplyDefaults\");d(t,e,p||a.defaultLine,{axis:\"y\"}),d(t,e,p||a.defaultLine,{axis:\"x\",inherit:\"y\"}),n.coerceSelectionMarkerOpacity(e,u)}else e.visible=!1},crossTraceDefaults:function(t,e){var r;function a(t){return n.coerce(r._input,r,c,t)}if(\"group\"===e.barmode)for(var i=0;i<t.length;i++)\"bar\"===(r=t[i]).type&&(r._input,h(0,r,e,a))},handleGroupingDefaults:h,handleText:f}},{\"../../components/color\":594,\"../../lib\":719,\"../../plots/cartesian/axis_ids\":770,\"../../registry\":848,\"../scatter/xy_defaults\":1136,\"./attributes\":858,\"./style_defaults\":872}],863:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"tinycolor2\"),i=t(\"../../lib\").isArrayOrTypedArray;r.coerceString=function(t,e,r){if(\"string\"==typeof e){if(e||!t.noBlank)return e}else if((\"number\"==typeof e||!0===e)&&!t.strict)return String(e);return void 0!==r?r:t.dflt},r.coerceNumber=function(t,e,r){if(n(e)){e=+e;var a=t.min,i=t.max;if(!(void 0!==a&&e<a||void 0!==i&&e>i))return e}return void 0!==r?r:t.dflt},r.coerceColor=function(t,e,r){return a(e).isValid()?e:void 0!==r?r:t.dflt},r.coerceEnumerated=function(t,e,r){return t.coerceNumber&&(e=+e),-1!==t.values.indexOf(e)?e:void 0!==r?r:t.dflt},r.getValue=function(t,e){var r;return Array.isArray(t)?e<t.length&&(r=t[e]):r=t,r},r.getLineWidth=function(t,e){return 0<e.mlw?e.mlw:i(t.marker.line.width)?0:t.marker.line.width}},{\"../../lib\":719,\"fast-isnumeric\":226,tinycolor2:538}],864:[function(t,e,r){\"use strict\";var n=t(\"../../components/fx\"),a=t(\"../../registry\"),i=t(\"../../components/color\"),o=t(\"../../lib\").fillText,s=t(\"./helpers\").getLineWidth;function l(t,e,r,a){var i,s,l,c,u,h,f,p=t.cd,d=p[0].trace,g=p[0].t,v=\"closest\"===a,m=\"waterfall\"===d.type,y=t.maxHoverDistance,x=t.maxSpikeDistance;function b(t){return t[l]-t.w/2}function _(t){return t[l]+t.w/2}var w=v?b:function(t){return Math.min(b(t),t.p-g.bardelta/2)},k=v?_:function(t){return Math.max(_(t),t.p+g.bardelta/2)};function T(t,e){return n.inbox(t-i,e-i,y+Math.min(1,Math.abs(e-t)/f)-1)}function A(t){return T(w(t),k(t))}function M(t){var e=s,r=t.b,a=t[c];return m&&(a+=Math.abs(t.rawS||0)),n.inbox(r-e,a-e,y+(a-e)/(a-r)-1)}\"h\"===d.orientation?(i=r,s=e,l=\"y\",c=\"x\",u=M,h=A):(i=e,s=r,l=\"x\",c=\"y\",h=M,u=A);var S=t[l+\"a\"],E=t[c+\"a\"];f=Math.abs(S.r2c(S.range[1])-S.r2c(S.range[0]));var C=n.getDistanceFunction(a,u,h,function(t){return(u(t)+h(t))/2});if(n.getClosest(p,C,t),!1!==t.index){v||(w=function(t){return Math.min(b(t),t.p-g.bargroupwidth/2)},k=function(t){return Math.max(_(t),t.p+g.bargroupwidth/2)});var L=p[t.index],P=d.base?L.b+L.s:L.s;t[c+\"0\"]=t[c+\"1\"]=E.c2p(L[c],!0),t[c+\"LabelVal\"]=P;var O=g.extents[g.extents.round(L.p)];return t[l+\"0\"]=S.c2p(v?w(L):O[0],!0),t[l+\"1\"]=S.c2p(v?k(L):O[1],!0),t[l+\"LabelVal\"]=L.p,t.spikeDistance=(M(L)+function(t){return T(b(t),_(t))}(L))/2+x-y,t[l+\"Spike\"]=S.c2p(L.p,!0),o(L,d,t),t.hovertemplate=d.hovertemplate,t}}function c(t,e){var r=e.mcc||t.marker.color,n=e.mlcc||t.marker.line.color,a=s(t,e);return i.opacity(r)?r:i.opacity(n)&&a?n:void 0}e.exports={hoverPoints:function(t,e,r,n){var i=l(t,e,r,n);if(i){var o=i.cd,s=o[0].trace,u=o[i.index];return i.color=c(s,u),a.getComponentMethod(\"errorbars\",\"hoverInfo\")(u,s,i),[i]}},hoverOnBars:l,getTraceColor:c}},{\"../../components/color\":594,\"../../components/fx\":632,\"../../lib\":719,\"../../registry\":848,\"./helpers\":863}],865:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\").supplyDefaults,crossTraceDefaults:t(\"./defaults\").crossTraceDefaults,supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\"),crossTraceCalc:t(\"./cross_trace_calc\").crossTraceCalc,colorbar:t(\"../scatter/marker_colorbar\"),arraysToCalcdata:t(\"./arrays_to_calcdata\"),plot:t(\"./plot\").plot,style:t(\"./style\").style,styleOnSelect:t(\"./style\").styleOnSelect,hoverPoints:t(\"./hover\").hoverPoints,selectPoints:t(\"./select\"),moduleType:\"trace\",name:\"bar\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"bar-like\",\"cartesian\",\"svg\",\"bar\",\"oriented\",\"errorBarsOK\",\"showLegend\",\"zoomScale\"],animatable:!0,meta:{}}},{\"../../plots/cartesian\":778,\"../scatter/marker_colorbar\":1128,\"./arrays_to_calcdata\":857,\"./attributes\":858,\"./calc\":859,\"./cross_trace_calc\":861,\"./defaults\":862,\"./hover\":864,\"./layout_attributes\":866,\"./layout_defaults\":867,\"./plot\":868,\"./select\":869,\"./style\":871}],866:[function(t,e,r){\"use strict\";e.exports={barmode:{valType:\"enumerated\",values:[\"stack\",\"group\",\"overlay\",\"relative\"],dflt:\"group\",editType:\"calc\"},barnorm:{valType:\"enumerated\",values:[\"\",\"fraction\",\"percent\"],dflt:\"\",editType:\"calc\"},bargap:{valType:\"number\",min:0,max:1,editType:\"calc\"},bargroupgap:{valType:\"number\",min:0,max:1,dflt:0,editType:\"calc\"}}},{}],867:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"../../lib\"),o=t(\"./layout_attributes\");e.exports=function(t,e,r){function s(r,n){return i.coerce(t,e,o,r,n)}for(var l=!1,c=!1,u=!1,h={},f=s(\"barmode\"),p=0;p<r.length;p++){var d=r[p];if(n.traceIs(d,\"bar\")&&d.visible){if(l=!0,\"group\"===f){var g=d.xaxis+d.yaxis;h[g]&&(u=!0),h[g]=!0}if(d.visible&&\"histogram\"===d.type)\"category\"!==a.getFromId({_fullLayout:e},d[\"v\"===d.orientation?\"xaxis\":\"yaxis\"]).type&&(c=!0)}}l?(\"overlay\"!==f&&s(\"barnorm\"),s(\"bargap\",c&&!u?0:.2),s(\"bargroupgap\")):delete e.barmode}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../../registry\":848,\"./layout_attributes\":866}],868:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"fast-isnumeric\"),i=t(\"../../lib\"),o=t(\"../../lib/svg_text_utils\"),s=t(\"../../components/color\"),l=t(\"../../components/drawing\"),c=t(\"../../registry\"),u=t(\"../../plots/cartesian/axes\").tickText,h=t(\"./style\"),f=t(\"./helpers\"),p=t(\"./constants\"),d=t(\"./attributes\"),g=d.text,v=d.textposition,m=t(\"../../components/fx/helpers\").appendArrayPointValue,y=p.TEXTPAD;function x(t){return t.id}function b(t){if(t.ids)return x}function _(t,e){return t<e?1:-1}function w(t,e,r){var n;return k(e)?(r&&(n=r()),t.transition().duration(e.duration).ease(e.easing).each(\"end\",function(){n&&n()}).each(\"interrupt\",function(){n&&n()})):t}function k(t){return t&&t.duration>0}function T(t){return\"auto\"===t?0:t}function A(t,e,r,n,a,i){var o=!!i.isHorizontal,s=!!i.constrained,l=i.angle||0,c=i.anchor||0,u=a.width,h=a.height,f=Math.abs(e-t),p=Math.abs(n-r),d=f>2*y&&p>2*y?y:0;f-=2*d,p-=2*d;var g=!1;if(!(\"auto\"===l)||u<=f&&h<=p||!(u>f||h>p)||(u>p||h>f)&&u<h==f<p||(g=!0),g){var v=p;p=f,f=v}var m=T(l),x=Math.abs(Math.sin(Math.PI/180*m)),b=Math.abs(Math.cos(Math.PI/180*m)),w=Math.max(f*b,p*x),k=Math.max(f*x,p*b),A=s?Math.min(w/u,k/h):Math.max(b,x);A=Math.min(1,A);var M=(t+e)/2,S=(r+n)/2;\"middle\"!==c&&(d+=.5*(A*(o!==g?h:u)*x+A*(o!==g?u:h)*b),o?(d*=_(t,e),M=\"start\"===c?t+d:e-d):(d*=_(r,n),S=\"start\"===c?r+d:n-d));return g&&(m+=90),{textX:(a.left+a.right)/2,textY:(a.top+a.bottom)/2,targetX:M,targetY:S,scale:A,rotate:m}}function M(t,e,r,n,a,i){var o,s=!!i.isHorizontal,l=!!i.constrained,c=i.angle||0,u=a.width,h=a.height,f=Math.abs(e-t),p=Math.abs(n-r);o=s?p>2*y?y:0:f>2*y?y:0;var d=1;l&&(d=s?Math.min(1,p/h):Math.min(1,f/u));var g=T(c);o+=.5*(d*(s?h:u)*Math.abs(Math.sin(Math.PI/180*g))+d*(s?u:h)*Math.abs(Math.cos(Math.PI/180*g)));var v=(t+e)/2,m=(r+n)/2;return s?v=e-o*_(e,t):m=n+o*_(r,n),{textX:(a.left+a.right)/2,textY:(a.top+a.bottom)/2,targetX:v,targetY:m,scale:d,rotate:g}}e.exports={plot:function(t,e,r,p,d,x){var T=e.xaxis,S=e.yaxis,E=t._fullLayout;d||(d={mode:E.barmode,norm:E.barmode,gap:E.bargap,groupgap:E.bargroupgap});var C=i.makeTraceGroups(p,r,\"trace bars\").each(function(r){var c=n.select(this),p=r[0].trace,E=\"waterfall\"===p.type,C=\"funnel\"===p.type,L=\"bar\"===p.type||C,P=0;E&&p.connector.visible&&\"between\"===p.connector.mode&&(P=p.connector.line.width/2);var O=\"h\"===p.orientation,I=i.ensureSingle(c,\"g\",\"points\"),z=b(p),D=I.selectAll(\"g.point\").data(i.identity,z);D.enter().append(\"g\").classed(\"point\",!0),D.exit().remove(),D.each(function(c,b){var E,C,I=n.select(this),z=function(t,e,r,n){var a=[],i=[],o=n?e:r,s=n?r:e;return a[0]=o.c2p(t.s0,!0),i[0]=s.c2p(t.p0,!0),a[1]=o.c2p(t.s1,!0),i[1]=s.c2p(t.p1,!0),n?[a,i]:[i,a]}(c,T,S,O),D=z[0][0],R=z[0][1],F=z[1][0],B=z[1][1],N=!(D!==R&&F!==B&&a(D)&&a(R)&&a(F)&&a(B));if(N&&L&&f.getLineWidth(p,c)&&(O?R-D==0:B-F==0)&&(N=!1),c.isBlank=N,N&&O&&(R=D),N&&!O&&(B=F),P&&!N&&(O?(D-=_(D,R)*P,R+=_(D,R)*P):(F-=_(F,B)*P,B+=_(F,B)*P)),\"waterfall\"===p.type){if(!N){var j=p[c.dir].marker;E=j.line.width,C=j.color}}else E=f.getLineWidth(p,c),C=c.mc||p.marker.color;var V=n.round(E/2%1,2);function U(t){return 0===d.gap&&0===d.groupgap?n.round(Math.round(t)-V,2):t}if(!t._context.staticPlot){var q=s.opacity(C)<1||E>.01?U:function(t,e){return Math.abs(t-e)>=2?U(t):t>e?Math.ceil(t):Math.floor(t)};D=q(D,R),R=q(R,D),F=q(F,B),B=q(B,F)}var H=w(i.ensureSingle(I,\"path\"),d,x);if(H.style(\"vector-effect\",\"non-scaling-stroke\").attr(\"d\",\"M\"+D+\",\"+F+\"V\"+B+\"H\"+R+\"V\"+F+\"Z\").call(l.setClipUrl,e.layerClipId,t),k(d)){var G=l.makePointStyleFns(p);l.singlePointStyle(c,H,p,G,t)}!function(t,e,r,n,a,s,c,p,d,x,b){var _,k=e.xaxis,T=e.yaxis,S=t._fullLayout;function E(e,r,n){var a=i.ensureSingle(e,\"text\").text(r).attr({class:\"bartext bartext-\"+_,\"text-anchor\":\"middle\",\"data-notex\":1}).call(l.font,n).call(o.convertToTspans,t);return a}var C=n[0].trace,L=\"h\"===C.orientation,P=function(t,e,r,n,a){var o,s=e[0].trace;return o=s.texttemplate?function(t,e,r,n,a){var o=e[0].trace,s=i.castOption(o,r,\"texttemplate\");if(!s)return\"\";var l=\"h\"===o.orientation,c=\"waterfall\"===o.type,h=\"funnel\"===o.type;function f(t){var e=l?n:a;return u(e,+t,!0).text}var p,d=e[r],g={};g.label=d.p,g.labelLabel=(p=d.p,u(l?a:n,p,!0).text);var v=i.castOption(o,d.i,\"text\");(0===v||v)&&(g.text=v),g.value=d.s,g.valueLabel=f(d.s);var y={};m(y,o,d.i),c&&(g.delta=+d.rawS||d.s,g.deltaLabel=f(g.delta),g.final=d.v,g.finalLabel=f(g.final),g.initial=g.final-g.delta,g.initialLabel=f(g.initial)),h&&(g.value=d.s,g.valueLabel=f(g.value),g.percentInitial=d.begR,g.percentInitialLabel=i.formatPercent(d.begR),g.percentPrevious=d.difR,g.percentPreviousLabel=i.formatPercent(d.difR),g.percentTotal=d.sumR,g.percenTotalLabel=i.formatPercent(d.sumR));var x=i.castOption(o,d.i,\"customdata\");return x&&(g.customdata=x),i.texttemplateString(s,g,t._d3locale,y,g,o._meta||{})}(t,e,r,n,a):s.textinfo?function(t,e,r,n){var a=t[0].trace,o=\"h\"===a.orientation,s=\"waterfall\"===a.type,l=\"funnel\"===a.type;function c(t){var e=o?r:n;return u(e,+t,!0).text}var h,f,p=a.textinfo,d=t[e],g=p.split(\"+\"),v=[],m=function(t){return-1!==g.indexOf(t)};if(m(\"label\")&&v.push((f=t[e].p,u(o?n:r,f,!0).text)),m(\"text\")&&(0===(h=i.castOption(a,d.i,\"text\"))||h)&&v.push(h),s){var y=+d.rawS||d.s,x=d.v,b=x-y;m(\"initial\")&&v.push(c(b)),m(\"delta\")&&v.push(c(y)),m(\"final\")&&v.push(c(x))}if(l){m(\"value\")&&v.push(c(d.s));var _=0;m(\"percent initial\")&&_++,m(\"percent previous\")&&_++,m(\"percent total\")&&_++;var w=_>1;m(\"percent initial\")&&(h=i.formatPercent(d.begR),w&&(h+=\" of initial\"),v.push(h)),m(\"percent previous\")&&(h=i.formatPercent(d.difR),w&&(h+=\" of previous\"),v.push(h)),m(\"percent total\")&&(h=i.formatPercent(d.sumR),w&&(h+=\" of total\"),v.push(h))}return v.join(\"<br>\")}(e,r,n,a):f.getValue(s.text,r),f.coerceString(g,o)}(S,n,a,k,T);_=function(t,e){var r=f.getValue(t.textposition,e);return f.coerceEnumerated(v,r)}(C,a);var O=\"stack\"===x.mode||\"relative\"===x.mode,I=n[a],z=!O||I._outmost;if(P&&\"none\"!==_&&(!I.isBlank&&s!==c&&p!==d||\"auto\"!==_&&\"inside\"!==_)){var D=S.font,R=h.getBarColor(n[a],C),F=h.getInsideTextFont(C,a,D,R),B=h.getOutsideTextFont(C,a,D),N=r.datum();L?\"log\"===k.type&&N.s0<=0&&(s=k.range[0]<k.range[1]?0:k._length):\"log\"===T.type&&N.s0<=0&&(p=T.range[0]<T.range[1]?T._length:0);var j,V,U,q,H,G,Y=Math.abs(c-s)-2*y,W=Math.abs(d-p)-2*y;if(\"outside\"===_&&(z||I.hasB||(_=\"inside\")),\"auto\"===_)if(z){_=\"inside\",j=E(r,P,F),V=l.bBox(j.node()),U=V.width,q=V.height;var X=U>0&&q>0,Z=U<=Y&&q<=W,J=U<=W&&q<=Y,K=L?Y>=U*(W/q):W>=q*(Y/U);X&&(Z||J||K)?_=\"inside\":(_=\"outside\",j.remove(),j=null)}else _=\"inside\";if(!j){var Q=(j=E(r,P,\"outside\"===_?B:F)).attr(\"transform\");if(j.attr(\"transform\",\"\"),V=l.bBox(j.node()),U=V.width,q=V.height,j.attr(\"transform\",Q),U<=0||q<=0)return void j.remove()}\"outside\"===_?(G=\"both\"===C.constraintext||\"outside\"===C.constraintext,H=i.getTextTransform(M(s,c,p,d,V,{isHorizontal:L,constrained:G,angle:C.textangle}))):(G=\"both\"===C.constraintext||\"inside\"===C.constraintext,H=i.getTextTransform(A(s,c,p,d,V,{isHorizontal:L,constrained:G,angle:C.textangle,anchor:C.insidetextanchor}))),w(j,x,b).attr(\"transform\",H)}else r.select(\"text\").remove()}(t,e,I,r,b,D,R,F,B,d,x),e.layerClipId&&l.hideOutsideRangePoint(c,I.select(\"text\"),T,S,p.xcalendar,p.ycalendar)});var R=!1===p.cliponaxis;l.setClipUrl(c,R?null:e.layerClipId,t)});c.getComponentMethod(\"errorbars\",\"plot\")(t,C,e,d)},toMoveInsideBar:A,toMoveOutsideBar:M}},{\"../../components/color\":594,\"../../components/drawing\":615,\"../../components/fx/helpers\":629,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../../plots/cartesian/axes\":767,\"../../registry\":848,\"./attributes\":858,\"./constants\":860,\"./helpers\":863,\"./style\":871,d3:164,\"fast-isnumeric\":226}],869:[function(t,e,r){\"use strict\";function n(t,e,r,n,a){var i=e.c2p(n?t.s0:t.p0,!0),o=e.c2p(n?t.s1:t.p1,!0),s=r.c2p(n?t.p0:t.s0,!0),l=r.c2p(n?t.p1:t.s1,!0);return a?[(i+o)/2,(s+l)/2]:n?[o,(s+l)/2]:[(i+o)/2,l]}e.exports=function(t,e){var r,a=t.cd,i=t.xaxis,o=t.yaxis,s=a[0].trace,l=\"funnel\"===s.type,c=\"h\"===s.orientation,u=[];if(!1===e)for(r=0;r<a.length;r++)a[r].selected=0;else for(r=0;r<a.length;r++){var h=a[r],f=\"ct\"in h?h.ct:n(h,i,o,c,l);e.contains(f,!1,r,t)?(u.push({pointNumber:r,x:i.c2d(h.x),y:o.c2d(h.y)}),h.selected=1):h.selected=0}return u}},{}],870:[function(t,e,r){\"use strict\";e.exports=i;var n=t(\"../../lib\").distinctVals,a=t(\"../../constants/numerical\").BADNUM;function i(t,e){this.traces=t,this.sepNegVal=e.sepNegVal,this.overlapNoMerge=e.overlapNoMerge;for(var r=1/0,i=[],o=0;o<t.length;o++){for(var s=t[o],l=0;l<s.length;l++){var c=s[l];c.p!==a&&i.push(c.p)}s[0]&&s[0].width1&&(r=Math.min(s[0].width1,r))}this.positions=i;var u=n(i);this.distinctPositions=u.vals,1===u.vals.length&&r!==1/0?this.minDiff=r:this.minDiff=Math.min(u.minDiff,r),this.binWidth=this.minDiff,this.bins={}}i.prototype.put=function(t,e){var r=this.getLabel(t,e),n=this.bins[r]||0;return this.bins[r]=n+e,n},i.prototype.get=function(t,e){var r=this.getLabel(t,e);return this.bins[r]||0},i.prototype.getLabel=function(t,e){return(e<0&&this.sepNegVal?\"v\":\"^\")+(this.overlapNoMerge?t:Math.round(t/this.binWidth))}},{\"../../constants/numerical\":695,\"../../lib\":719}],871:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/color\"),i=t(\"../../components/drawing\"),o=t(\"../../lib\"),s=t(\"../../registry\"),l=t(\"./attributes\"),c=l.textfont,u=l.insidetextfont,h=l.outsidetextfont,f=t(\"./helpers\");function p(t,e,r){i.pointStyle(t.selectAll(\"path\"),e,r),d(t,e,r)}function d(t,e,r){t.selectAll(\"text\").each(function(t){var a=n.select(this),o=g(a,t,e,r);i.font(a,o)})}function g(t,e,r,n){var a=n._fullLayout.font,i=r.textfont;if(t.classed(\"bartext-inside\")){var o=b(e,r);i=m(r,e.i,a,o)}else t.classed(\"bartext-outside\")&&(i=y(r,e.i,a));return i}function v(t,e,r){return x(c,t.textfont,e,r)}function m(t,e,r,n){var i=v(t,e,r);return(void 0===t._input.textfont||void 0===t._input.textfont.color||Array.isArray(t.textfont.color)&&void 0===t.textfont.color[e])&&(i={color:a.contrast(n),family:i.family,size:i.size}),x(u,t.insidetextfont,e,i)}function y(t,e,r){var n=v(t,e,r);return x(h,t.outsidetextfont,e,n)}function x(t,e,r,n){e=e||{};var a=f.getValue(e.family,r),i=f.getValue(e.size,r),o=f.getValue(e.color,r);return{family:f.coerceString(t.family,a,n.family),size:f.coerceNumber(t.size,i,n.size),color:f.coerceColor(t.color,o,n.color)}}function b(t,e){return\"waterfall\"===e.type?e[t.dir].marker.color:t.mc||e.marker.color}e.exports={style:function(t){var e=n.select(t).selectAll(\"g.barlayer\").selectAll(\"g.trace\"),r=e.size(),a=t._fullLayout;e.style(\"opacity\",function(t){return t[0].trace.opacity}).each(function(t){(\"stack\"===a.barmode&&r>1||0===a.bargap&&0===a.bargroupgap&&!t[0].trace.marker.line.width)&&n.select(this).attr(\"shape-rendering\",\"crispEdges\")}),e.selectAll(\"g.points\").each(function(e){p(n.select(this),e[0].trace,t)}),s.getComponentMethod(\"errorbars\",\"style\")(e)},styleTextPoints:d,styleOnSelect:function(t,e,r){var a=e[0].trace;a.selectedpoints?function(t,e,r){i.selectedPointStyle(t.selectAll(\"path\"),e),function(t,e,r){t.each(function(t){var a,s=n.select(this);if(t.selected){a=o.extendFlat({},g(s,t,e,r));var l=e.selected.textfont&&e.selected.textfont.color;l&&(a.color=l),i.font(s,a)}else i.selectedTextStyle(s,e)})}(t.selectAll(\"text\"),e,r)}(r,a,t):(p(r,a,t),s.getComponentMethod(\"errorbars\",\"style\")(r))},getInsideTextFont:m,getOutsideTextFont:y,getBarColor:b}},{\"../../components/color\":594,\"../../components/drawing\":615,\"../../lib\":719,\"../../registry\":848,\"./attributes\":858,\"./helpers\":863,d3:164}],872:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\"),a=t(\"../../components/colorscale/helpers\").hasColorscale,i=t(\"../../components/colorscale/defaults\");e.exports=function(t,e,r,o,s){r(\"marker.color\",o),a(t,\"marker\")&&i(t,e,s,r,{prefix:\"marker.\",cLetter:\"c\"}),r(\"marker.line.color\",n.defaultLine),a(t,\"marker.line\")&&i(t,e,s,r,{prefix:\"marker.line.\",cLetter:\"c\"}),r(\"marker.line.width\"),r(\"marker.opacity\"),r(\"selected.marker.color\"),r(\"unselected.marker.color\")}},{\"../../components/color\":594,\"../../components/colorscale/defaults\":604,\"../../components/colorscale/helpers\":605}],873:[function(t,e,r){\"use strict\";var n=t(\"../../plots/template_attributes\").hovertemplateAttrs,a=t(\"../../lib/extend\").extendFlat,i=t(\"../scatterpolar/attributes\"),o=t(\"../bar/attributes\");e.exports={r:i.r,theta:i.theta,r0:i.r0,dr:i.dr,theta0:i.theta0,dtheta:i.dtheta,thetaunit:i.thetaunit,base:a({},o.base,{}),offset:a({},o.offset,{}),width:a({},o.width,{}),text:a({},o.text,{}),hovertext:a({},o.hovertext,{}),marker:o.marker,hoverinfo:i.hoverinfo,hovertemplate:n(),selected:o.selected,unselected:o.unselected}},{\"../../lib/extend\":710,\"../../plots/template_attributes\":843,\"../bar/attributes\":858,\"../scatterpolar/attributes\":1178}],874:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/helpers\").hasColorscale,a=t(\"../../components/colorscale/calc\"),i=t(\"../bar/arrays_to_calcdata\"),o=t(\"../bar/cross_trace_calc\").setGroupPositions,s=t(\"../scatter/calc_selection\"),l=t(\"../../registry\").traceIs,c=t(\"../../lib\").extendFlat;e.exports={calc:function(t,e){for(var r=t._fullLayout,o=e.subplot,l=r[o].radialaxis,c=r[o].angularaxis,u=l.makeCalcdata(e,\"r\"),h=c.makeCalcdata(e,\"theta\"),f=e._length,p=new Array(f),d=u,g=h,v=0;v<f;v++)p[v]={p:g[v],s:d[v]};function m(t){var r=e[t];void 0!==r&&(e[\"_\"+t]=Array.isArray(r)?c.makeCalcdata(e,t):c.d2c(r,e.thetaunit))}return\"linear\"===c.type&&(m(\"width\"),m(\"offset\")),n(e,\"marker\")&&a(t,e,{vals:e.marker.color,containerStr:\"marker\",cLetter:\"c\"}),n(e,\"marker.line\")&&a(t,e,{vals:e.marker.line.color,containerStr:\"marker.line\",cLetter:\"c\"}),i(p,e),s(p,e),p},crossTraceCalc:function(t,e,r){for(var n=t.calcdata,a=[],i=0;i<n.length;i++){var s=n[i],u=s[0].trace;!0===u.visible&&l(u,\"bar\")&&u.subplot===r&&a.push(s)}var h=c({},e.radialaxis,{_id:\"x\"}),f=e.angularaxis;o(t,f,h,a,{mode:e.barmode,norm:e.barnorm,gap:e.bargap,groupgap:e.bargroupgap})}}},{\"../../components/colorscale/calc\":602,\"../../components/colorscale/helpers\":605,\"../../lib\":719,\"../../registry\":848,\"../bar/arrays_to_calcdata\":857,\"../bar/cross_trace_calc\":861,\"../scatter/calc_selection\":1113}],875:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../scatterpolar/defaults\").handleRThetaDefaults,i=t(\"../bar/style_defaults\"),o=t(\"./attributes\");e.exports=function(t,e,r,s){function l(r,a){return n.coerce(t,e,o,r,a)}a(t,e,s,l)?(l(\"thetaunit\"),l(\"base\"),l(\"offset\"),l(\"width\"),l(\"text\"),l(\"hovertext\"),l(\"hovertemplate\"),i(t,e,l,r,s),n.coerceSelectionMarkerOpacity(e,l)):e.visible=!1}},{\"../../lib\":719,\"../bar/style_defaults\":872,\"../scatterpolar/defaults\":1180,\"./attributes\":873}],876:[function(t,e,r){\"use strict\";var n=t(\"../../components/fx\"),a=t(\"../../lib\"),i=t(\"../bar/hover\").getTraceColor,o=a.fillText,s=t(\"../scatterpolar/hover\").makeHoverPointText,l=t(\"../../plots/polar/helpers\").isPtInsidePolygon;e.exports=function(t,e,r){var c=t.cd,u=c[0].trace,h=t.subplot,f=h.radialAxis,p=h.angularAxis,d=h.vangles,g=d?l:a.isPtInsideSector,v=t.maxHoverDistance,m=p._period||2*Math.PI,y=Math.abs(f.g2p(Math.sqrt(e*e+r*r))),x=Math.atan2(r,e);f.range[0]>f.range[1]&&(x+=Math.PI);if(n.getClosest(c,function(t){return g(y,x,[t.rp0,t.rp1],[t.thetag0,t.thetag1],d)?v+Math.min(1,Math.abs(t.thetag1-t.thetag0)/m)-1+(t.rp1-y)/(t.rp1-t.rp0)-1:1/0},t),!1!==t.index){var b=c[t.index];t.x0=t.x1=b.ct[0],t.y0=t.y1=b.ct[1];var _=a.extendFlat({},b,{r:b.s,theta:b.p});return o(b,u,t),s(_,u,h,t),t.hovertemplate=u.hovertemplate,t.color=i(u,b),t.xLabelVal=t.yLabelVal=void 0,b.s<0&&(t.idealAlign=\"left\"),[t]}}},{\"../../components/fx\":632,\"../../lib\":719,\"../../plots/polar/helpers\":830,\"../bar/hover\":864,\"../scatterpolar/hover\":1181}],877:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"barpolar\",basePlotModule:t(\"../../plots/polar\"),categories:[\"polar\",\"bar\",\"showLegend\"],attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\"),supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\").calc,crossTraceCalc:t(\"./calc\").crossTraceCalc,plot:t(\"./plot\"),colorbar:t(\"../scatter/marker_colorbar\"),style:t(\"../bar/style\").style,styleOnSelect:t(\"../bar/style\").styleOnSelect,hoverPoints:t(\"./hover\"),selectPoints:t(\"../bar/select\"),meta:{}}},{\"../../plots/polar\":831,\"../bar/select\":869,\"../bar/style\":871,\"../scatter/marker_colorbar\":1128,\"./attributes\":873,\"./calc\":874,\"./defaults\":875,\"./hover\":876,\"./layout_attributes\":878,\"./layout_defaults\":879,\"./plot\":880}],878:[function(t,e,r){\"use strict\";e.exports={barmode:{valType:\"enumerated\",values:[\"stack\",\"overlay\"],dflt:\"stack\",editType:\"calc\"},bargap:{valType:\"number\",dflt:.1,min:0,max:1,editType:\"calc\"}}},{}],879:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./layout_attributes\");e.exports=function(t,e,r){var i,o={};function s(r,o){return n.coerce(t[i]||{},e[i],a,r,o)}for(var l=0;l<r.length;l++){var c=r[l];\"barpolar\"===c.type&&!0===c.visible&&(o[i=c.subplot]||(s(\"barmode\"),s(\"bargap\"),o[i]=1))}}},{\"../../lib\":719,\"./layout_attributes\":878}],880:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"fast-isnumeric\"),i=t(\"../../lib\"),o=t(\"../../components/drawing\"),s=t(\"../../plots/polar/helpers\");e.exports=function(t,e,r){var l=e.xaxis,c=e.yaxis,u=e.radialAxis,h=e.angularAxis,f=function(t){var e=t.cxx,r=t.cyy;if(t.vangles)return function(n,a,o,l){var c,u;i.angleDelta(o,l)>0?(c=o,u=l):(c=l,u=o);var h=s.findEnclosingVertexAngles(c,t.vangles)[0],f=s.findEnclosingVertexAngles(u,t.vangles)[1],p=[h,(c+u)/2,f];return s.pathPolygonAnnulus(n,a,c,u,p,e,r)};return function(t,n,a,o){return i.pathAnnulus(t,n,a,o,e,r)}}(e),p=e.layers.frontplot.select(\"g.barlayer\");i.makeTraceGroups(p,r,\"trace bars\").each(function(){var r=n.select(this),s=i.ensureSingle(r,\"g\",\"points\").selectAll(\"g.point\").data(i.identity);s.enter().append(\"g\").style(\"vector-effect\",\"non-scaling-stroke\").style(\"stroke-miterlimit\",2).classed(\"point\",!0),s.exit().remove(),s.each(function(t){var e,r=n.select(this),o=t.rp0=u.c2p(t.s0),s=t.rp1=u.c2p(t.s1),p=t.thetag0=h.c2g(t.p0),d=t.thetag1=h.c2g(t.p1);if(a(o)&&a(s)&&a(p)&&a(d)&&o!==s&&p!==d){var g=u.c2g(t.s1),v=(p+d)/2;t.ct=[l.c2p(g*Math.cos(v)),c.c2p(g*Math.sin(v))],e=f(o,s,p,d)}else e=\"M0,0Z\";i.ensureSingle(r,\"path\").attr(\"d\",e)}),o.setClipUrl(r,e._hasClipOnAxisFalse?e.clipIds.forTraces:null,t)})}},{\"../../components/drawing\":615,\"../../lib\":719,\"../../plots/polar/helpers\":830,d3:164,\"fast-isnumeric\":226}],881:[function(t,e,r){\"use strict\";var n=t(\"../scatter/attributes\"),a=t(\"../bar/attributes\"),i=t(\"../../components/color/attributes\"),o=t(\"../../plots/template_attributes\").hovertemplateAttrs,s=t(\"../../lib/extend\").extendFlat,l=n.marker,c=l.line;e.exports={y:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},x:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},x0:{valType:\"any\",editType:\"calc+clearAxisTypes\"},y0:{valType:\"any\",editType:\"calc+clearAxisTypes\"},name:{valType:\"string\",editType:\"calc+clearAxisTypes\"},text:s({},n.text,{}),hovertext:s({},n.hovertext,{}),hovertemplate:o({}),whiskerwidth:{valType:\"number\",min:0,max:1,dflt:.5,editType:\"calc\"},notched:{valType:\"boolean\",editType:\"calc\"},notchwidth:{valType:\"number\",min:0,max:.5,dflt:.25,editType:\"calc\"},boxpoints:{valType:\"enumerated\",values:[\"all\",\"outliers\",\"suspectedoutliers\",!1],dflt:\"outliers\",editType:\"calc\"},boxmean:{valType:\"enumerated\",values:[!0,\"sd\",!1],dflt:!1,editType:\"calc\"},jitter:{valType:\"number\",min:0,max:1,editType:\"calc\"},pointpos:{valType:\"number\",min:-2,max:2,editType:\"calc\"},orientation:{valType:\"enumerated\",values:[\"v\",\"h\"],editType:\"calc+clearAxisTypes\"},width:{valType:\"number\",min:0,dflt:0,editType:\"calc\"},marker:{outliercolor:{valType:\"color\",dflt:\"rgba(0, 0, 0, 0)\",editType:\"style\"},symbol:s({},l.symbol,{arrayOk:!1,editType:\"plot\"}),opacity:s({},l.opacity,{arrayOk:!1,dflt:1,editType:\"style\"}),size:s({},l.size,{arrayOk:!1,editType:\"calc\"}),color:s({},l.color,{arrayOk:!1,editType:\"style\"}),line:{color:s({},c.color,{arrayOk:!1,dflt:i.defaultLine,editType:\"style\"}),width:s({},c.width,{arrayOk:!1,dflt:0,editType:\"style\"}),outliercolor:{valType:\"color\",editType:\"style\"},outlierwidth:{valType:\"number\",min:0,dflt:1,editType:\"style\"},editType:\"style\"},editType:\"plot\"},line:{color:{valType:\"color\",editType:\"style\"},width:{valType:\"number\",min:0,dflt:2,editType:\"style\"},editType:\"plot\"},fillcolor:n.fillcolor,offsetgroup:a.offsetgroup,alignmentgroup:a.alignmentgroup,selected:{marker:n.selected.marker,editType:\"style\"},unselected:{marker:n.unselected.marker,editType:\"style\"},hoveron:{valType:\"flaglist\",flags:[\"boxes\",\"points\"],dflt:\"boxes+points\",editType:\"style\"}}},{\"../../components/color/attributes\":593,\"../../lib/extend\":710,\"../../plots/template_attributes\":843,\"../bar/attributes\":858,\"../scatter/attributes\":1111}],882:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\"),i=a._,o=t(\"../../plots/cartesian/axes\");function s(t,e,r){var n={text:\"tx\",hovertext:\"htx\"};for(var a in n)Array.isArray(e[a])&&(t[n[a]]=e[a][r])}function l(t,e){return t.v-e.v}function c(t){return t.v}e.exports=function(t,e){var r,u,h,f,p,d=t._fullLayout,g=o.getFromId(t,e.xaxis||\"x\"),v=o.getFromId(t,e.yaxis||\"y\"),m=[],y=\"violin\"===e.type?\"_numViolins\":\"_numBoxes\";\"h\"===e.orientation?(u=g,h=\"x\",f=v,p=\"y\"):(u=v,h=\"y\",f=g,p=\"x\");var x,b=u.makeCalcdata(e,h),_=function(t,e,r,i,o){if(e in t)return r.makeCalcdata(t,e);var s;s=e+\"0\"in t?t[e+\"0\"]:\"name\"in t&&(\"category\"===r.type||n(t.name)&&-1!==[\"linear\",\"log\"].indexOf(r.type)||a.isDateTime(t.name)&&\"date\"===r.type)?t.name:o;var l=\"multicategory\"===r.type?r.r2c_just_indices(s):r.d2c(s,0,t[e+\"calendar\"]);return i.map(function(){return l})}(e,p,f,b,d[y]),w=a.distinctVals(_),k=w.vals,T=w.minDiff/2,A=function(t,e){for(var r=t.length,n=new Array(r+1),a=0;a<r;a++)n[a]=t[a]-e;return n[r]=t[r-1]+e,n}(k,T),M=k.length,S=function(t){for(var e=new Array(t),r=0;r<t;r++)e[r]=[];return e}(M);for(r=0;r<e._length;r++){var E=b[r];if(n(E)){var C=a.findBin(_[r],A);if(C>=0&&C<M){var L={v:E,i:r};s(L,e,r),S[C].push(L)}}}var P=\"all\"===(e.boxpoints||e.points)?a.identity:function(t){return t.v<x.lf||t.v>x.uf};for(r=0;r<M;r++)if(S[r].length>0){var O=S[r].sort(l),I=O.map(c),z=I.length;(x={}).pos=k[r],x.pts=O,x[p]=x.pos,x[h]=x.pts.map(function(t){return t.v}),x.min=I[0],x.max=I[z-1],x.mean=a.mean(I,z),x.sd=a.stdev(I,z,x.mean),x.q1=a.interp(I,.25),x.med=a.interp(I,.5),x.q3=a.interp(I,.75),x.lf=Math.min(x.q1,I[Math.min(a.findBin(2.5*x.q1-1.5*x.q3,I,!0)+1,z-1)]),x.uf=Math.max(x.q3,I[Math.max(a.findBin(2.5*x.q3-1.5*x.q1,I),0)]),x.lo=4*x.q1-3*x.q3,x.uo=4*x.q3-3*x.q1;var D=1.57*(x.q3-x.q1)/Math.sqrt(z);x.ln=x.med-D,x.un=x.med+D,x.pts2=O.filter(P),m.push(x)}!function(t,e){if(a.isArrayOrTypedArray(e.selectedpoints))for(var r=0;r<t.length;r++){for(var n=t[r].pts||[],i={},o=0;o<n.length;o++)i[n[o].i]=o;a.tagSelected(n,e,i)}}(m,e);var R=o.findExtremes(u,b,{padded:!0});return e._extremes[u._id]=R,m.length>0?(m[0].t={num:d[y],dPos:T,posLetter:p,valLetter:h,labels:{med:i(t,\"median:\"),min:i(t,\"min:\"),q1:i(t,\"q1:\"),q3:i(t,\"q3:\"),max:i(t,\"max:\"),mean:\"sd\"===e.boxmean?i(t,\"mean \\xb1 \\u03c3:\"):i(t,\"mean:\"),lf:i(t,\"lower fence:\"),uf:i(t,\"upper fence:\")}},d[y]++,m):[{t:{empty:!0}}]}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"fast-isnumeric\":226}],883:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),a=t(\"../../lib\"),i=t(\"../../plots/cartesian/axis_ids\").getAxisGroup,o=[\"v\",\"h\"];function s(t,e,r,o){var s,l,c,u=e.calcdata,h=e._fullLayout,f=o._id,p=f.charAt(0),d=[],g=0;for(s=0;s<r.length;s++)for(c=u[r[s]],l=0;l<c.length;l++)d.push(c[l].pos),g+=(c[l].pts2||[]).length;if(d.length){var v=a.distinctVals(d),m=v.minDiff/2;n.minDtick(o,v.minDiff,v.vals[0],!0);var y=h[\"violin\"===t?\"_numViolins\":\"_numBoxes\"],x=\"group\"===h[t+\"mode\"]&&y>1,b=1-h[t+\"gap\"],_=1-h[t+\"groupgap\"];for(s=0;s<r.length;s++){var w,k,T,A,M,S,E=(c=u[r[s]])[0].trace,C=c[0].t,L=E.width,P=E.side;if(L)w=k=A=L/2,T=0;else if(w=m,x){var O=i(h,o._id)+E.orientation,I=(h._alignmentOpts[O]||{})[E.alignmentgroup]||{},z=Object.keys(I.offsetGroups||{}).length,D=z||y;k=w*b*_/D,T=2*w*(((z?E._offsetIndex:C.num)+.5)/D-.5)*b,A=w*b/D}else k=w*b*_,T=0,A=w;C.dPos=w,C.bPos=T,C.bdPos=k,C.wHover=A;var R,F,B,N,j,V,U=T+k,q=Boolean(L);if(\"positive\"===P?(M=w*(L?1:.5),R=U,S=R=T):\"negative\"===P?(M=R=T,S=w*(L?1:.5),F=U):(M=S=w,R=F=U),(E.boxpoints||E.points)&&g>0){var H=E.pointpos,G=E.jitter,Y=E.marker.size/2,W=0;H+G>=0&&((W=U*(H+G))>M?(q=!0,j=Y,B=W):W>R&&(j=Y,B=M)),W<=M&&(B=M);var X=0;H-G<=0&&((X=-U*(H-G))>S?(q=!0,V=Y,N=X):X>F&&(V=Y,N=S)),X<=S&&(N=S)}else B=M,N=S;var Z=new Array(c.length);for(l=0;l<c.length;l++)Z[l]=c[l].pos;E._extremes[f]=n.findExtremes(o,Z,{padded:q,vpadminus:N,vpadplus:B,ppadminus:{x:V,y:j}[p],ppadplus:{x:j,y:V}[p]})}}}e.exports={crossTraceCalc:function(t,e){for(var r=t.calcdata,n=e.xaxis,a=e.yaxis,i=0;i<o.length;i++){for(var l=o[i],c=\"h\"===l?a:n,u=[],h=0;h<r.length;h++){var f=r[h],p=f[0].t,d=f[0].trace;!0!==d.visible||\"box\"!==d.type&&\"candlestick\"!==d.type||p.empty||(d.orientation||\"v\")!==l||d.xaxis!==n._id||d.yaxis!==a._id||u.push(h)}s(\"box\",t,u,c)}},setPositionOffset:s}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../../plots/cartesian/axis_ids\":770}],884:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../registry\"),i=t(\"../../components/color\"),o=t(\"../bar/defaults\").handleGroupingDefaults,s=t(\"./attributes\");function l(t,e,r,i){var o,s,l=r(\"y\"),c=r(\"x\"),u=c&&c.length;if(l&&l.length)o=\"v\",u?s=Math.min(n.minRowLength(c),n.minRowLength(l)):(r(\"x0\"),s=n.minRowLength(l));else{if(!u)return void(e.visible=!1);o=\"h\",r(\"y0\"),s=n.minRowLength(c)}e._length=s,a.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\",\"y\"],i),r(\"orientation\",o)}function c(t,e,r,a){var i=a.prefix,o=n.coerce2(t,e,s,\"marker.outliercolor\"),l=r(\"marker.line.outliercolor\"),c=r(i+\"points\",o||l?\"suspectedoutliers\":void 0);c?(r(\"jitter\",\"all\"===c?.3:0),r(\"pointpos\",\"all\"===c?-1.5:0),r(\"marker.symbol\"),r(\"marker.opacity\"),r(\"marker.size\"),r(\"marker.color\",e.line.color),r(\"marker.line.color\"),r(\"marker.line.width\"),\"suspectedoutliers\"===c&&(r(\"marker.line.outliercolor\",e.marker.color),r(\"marker.line.outlierwidth\")),r(\"selected.marker.color\"),r(\"unselected.marker.color\"),r(\"selected.marker.size\"),r(\"unselected.marker.size\"),r(\"text\"),r(\"hovertext\")):delete e.marker;var u=r(\"hoveron\");\"all\"!==u&&-1===u.indexOf(\"points\")||r(\"hovertemplate\"),n.coerceSelectionMarkerOpacity(e,r)}e.exports={supplyDefaults:function(t,e,r,a){function o(r,a){return n.coerce(t,e,s,r,a)}l(t,e,o,a),!1!==e.visible&&(o(\"line.color\",(t.marker||{}).color||r),o(\"line.width\"),o(\"fillcolor\",i.addOpacity(e.line.color,.5)),o(\"whiskerwidth\"),o(\"boxmean\"),o(\"width\"),o(\"notched\",void 0!==t.notchwidth)&&o(\"notchwidth\"),c(t,e,o,{prefix:\"box\"}))},crossTraceDefaults:function(t,e){var r,a;function i(t){return n.coerce(a._input,a,s,t)}for(var l=0;l<t.length;l++){var c=(a=t[l]).type;\"box\"!==c&&\"violin\"!==c||(r=a._input,\"group\"===e[c+\"mode\"]&&o(r,a,e,i))}},handleSampleDefaults:l,handlePointsDefaults:c}},{\"../../components/color\":594,\"../../lib\":719,\"../../registry\":848,\"../bar/defaults\":862,\"./attributes\":881}],885:[function(t,e,r){\"use strict\";e.exports=function(t,e){return e.hoverOnBox&&(t.hoverOnBox=e.hoverOnBox),\"xVal\"in e&&(t.x=e.xVal),\"yVal\"in e&&(t.y=e.yVal),e.xa&&(t.xaxis=e.xa),e.ya&&(t.yaxis=e.ya),t}},{}],886:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),a=t(\"../../lib\"),i=t(\"../../components/fx\"),o=t(\"../../components/color\"),s=a.fillText;function l(t,e,r,s){var l,c,u,h,f,p,d,g,v,m,y,x,b,_,w=t.cd,k=t.xa,T=t.ya,A=w[0].trace,M=w[0].t,S=\"violin\"===A.type,E=[],C=M.bdPos,L=M.wHover,P=function(t){return t.pos+M.bPos-p};S&&\"both\"!==A.side?(\"positive\"===A.side&&(v=function(t){var e=P(t);return i.inbox(e,e+L,m)},x=C,b=0),\"negative\"===A.side&&(v=function(t){var e=P(t);return i.inbox(e-L,e,m)},x=0,b=C)):(v=function(t){var e=P(t);return i.inbox(e-L,e+L,m)},x=b=C),_=S?function(t){return i.inbox(t.span[0]-f,t.span[1]-f,m)}:function(t){return i.inbox(t.min-f,t.max-f,m)},\"h\"===A.orientation?(f=e,p=r,d=_,g=v,l=\"y\",u=T,c=\"x\",h=k):(f=r,p=e,d=v,g=_,l=\"x\",u=k,c=\"y\",h=T);var O=Math.min(1,C/Math.abs(u.r2c(u.range[1])-u.r2c(u.range[0])));function I(t){return(d(t)+g(t))/2}m=t.maxHoverDistance-O,y=t.maxSpikeDistance-O;var z=i.getDistanceFunction(s,d,g,I);if(i.getClosest(w,z,t),!1===t.index)return[];var D=w[t.index],R=A.line.color,F=(A.marker||{}).color;o.opacity(R)&&A.line.width?t.color=R:o.opacity(F)&&A.boxpoints?t.color=F:t.color=A.fillcolor,t[l+\"0\"]=u.c2p(D.pos+M.bPos-b,!0),t[l+\"1\"]=u.c2p(D.pos+M.bPos+x,!0),t[l+\"LabelVal\"]=D.pos;var B=l+\"Spike\";t.spikeDistance=I(D)*y/m,t[B]=u.c2p(D.pos,!0);var N={},j=[\"med\",\"q1\",\"q3\",\"min\",\"max\"];(A.boxmean||(A.meanline||{}).visible)&&j.push(\"mean\"),(A.boxpoints||A.points)&&j.push(\"lf\",\"uf\");for(var V=0;V<j.length;V++){var U=j[V];if(U in D&&!(D[U]in N)){N[D[U]]=!0;var q=D[U],H=h.c2p(q,!0),G=a.extendFlat({},t);G.attr=U,G[c+\"0\"]=G[c+\"1\"]=H,G[c+\"LabelVal\"]=q,G[c+\"Label\"]=(M.labels?M.labels[U]+\" \":\"\")+n.hoverLabelText(h,q),G.hoverOnBox=!0,\"mean\"===U&&\"sd\"in D&&\"sd\"===A.boxmean&&(G[c+\"err\"]=D.sd),t.name=\"\",t.spikeDistance=void 0,t[B]=void 0,G.hovertemplate=!1,E.push(G)}}return E}function c(t,e,r){for(var n,o,l,c=t.cd,u=t.xa,h=t.ya,f=c[0].trace,p=u.c2p(e),d=h.c2p(r),g=i.quadrature(function(t){var e=Math.max(3,t.mrc||0);return Math.max(Math.abs(u.c2p(t.x)-p)-e,1-3/e)},function(t){var e=Math.max(3,t.mrc||0);return Math.max(Math.abs(h.c2p(t.y)-d)-e,1-3/e)}),v=!1,m=0;m<c.length;m++){o=c[m];for(var y=0;y<(o.pts||[]).length;y++){var x=g(l=o.pts[y]);x<=t.distance&&(t.distance=x,v=[m,y])}}if(!v)return!1;l=(o=c[v[0]]).pts[v[1]];var b,_=u.c2p(l.x,!0),w=h.c2p(l.y,!0),k=l.mrc||1;return n=a.extendFlat({},t,{index:l.i,color:(f.marker||{}).color,name:f.name,x0:_-k,x1:_+k,y0:w-k,y1:w+k,spikeDistance:t.distance,hovertemplate:f.hovertemplate}),\"h\"===f.orientation?(b=h,n.xLabelVal=l.x,n.yLabelVal=o.pos):(b=u,n.xLabelVal=o.pos,n.yLabelVal=l.y),n[b._id.charAt(0)+\"Spike\"]=b.c2p(o.pos,!0),s(l,f,n),n}e.exports={hoverPoints:function(t,e,r,n){var a,i=t.cd[0].trace.hoveron,o=[];return-1!==i.indexOf(\"boxes\")&&(o=o.concat(l(t,e,r,n))),-1!==i.indexOf(\"points\")&&(a=c(t,e,r)),\"closest\"===n?a?[a]:o:a?(o.push(a),o):o},hoverOnBoxes:l,hoverOnPoints:c}},{\"../../components/color\":594,\"../../components/fx\":632,\"../../lib\":719,\"../../plots/cartesian/axes\":767}],887:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\").supplyDefaults,crossTraceDefaults:t(\"./defaults\").crossTraceDefaults,supplyLayoutDefaults:t(\"./layout_defaults\").supplyLayoutDefaults,calc:t(\"./calc\"),crossTraceCalc:t(\"./cross_trace_calc\").crossTraceCalc,plot:t(\"./plot\").plot,style:t(\"./style\").style,styleOnSelect:t(\"./style\").styleOnSelect,hoverPoints:t(\"./hover\").hoverPoints,eventData:t(\"./event_data\"),selectPoints:t(\"./select\"),moduleType:\"trace\",name:\"box\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"symbols\",\"oriented\",\"box-violin\",\"showLegend\",\"boxLayout\",\"zoomScale\"],meta:{}}},{\"../../plots/cartesian\":778,\"./attributes\":881,\"./calc\":882,\"./cross_trace_calc\":883,\"./defaults\":884,\"./event_data\":885,\"./hover\":886,\"./layout_attributes\":888,\"./layout_defaults\":889,\"./plot\":890,\"./select\":891,\"./style\":892}],888:[function(t,e,r){\"use strict\";e.exports={boxmode:{valType:\"enumerated\",values:[\"group\",\"overlay\"],dflt:\"overlay\",editType:\"calc\"},boxgap:{valType:\"number\",min:0,max:1,dflt:.3,editType:\"calc\"},boxgroupgap:{valType:\"number\",min:0,max:1,dflt:.3,editType:\"calc\"}}},{}],889:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\"),i=t(\"./layout_attributes\");function o(t,e,r,a,i){for(var o=i+\"Layout\",s=!1,l=0;l<r.length;l++){var c=r[l];if(n.traceIs(c,o)){s=!0;break}}s&&(a(i+\"mode\"),a(i+\"gap\"),a(i+\"groupgap\"))}e.exports={supplyLayoutDefaults:function(t,e,r){o(0,0,r,function(r,n){return a.coerce(t,e,i,r,n)},\"box\")},_supply:o}},{\"../../lib\":719,\"../../registry\":848,\"./layout_attributes\":888}],890:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../lib\"),i=t(\"../../components/drawing\"),o=5,s=.01;function l(t,e,r,i){var o,s,l=e.pos,c=e.val,u=i.bPos,h=i.wdPos||0,f=i.bPosPxOffset||0,p=r.whiskerwidth||0,d=r.notched||!1,g=d?1-2*r.notchwidth:1;Array.isArray(i.bdPos)?(o=i.bdPos[0],s=i.bdPos[1]):(o=i.bdPos,s=i.bdPos);var v=t.selectAll(\"path.box\").data(\"violin\"!==r.type||r.box.visible?a.identity:[]);v.enter().append(\"path\").style(\"vector-effect\",\"non-scaling-stroke\").attr(\"class\",\"box\"),v.exit().remove(),v.each(function(t){if(t.empty)return\"M0,0Z\";var e=t.pos,i=l.c2p(e+u,!0)+f,v=l.c2p(e+u-o,!0)+f,m=l.c2p(e+u+s,!0)+f,y=l.c2p(e+u-h,!0)+f,x=l.c2p(e+u+h,!0)+f,b=l.c2p(e+u-o*g,!0)+f,_=l.c2p(e+u+s*g,!0)+f,w=c.c2p(t.q1,!0),k=c.c2p(t.q3,!0),T=a.constrain(c.c2p(t.med,!0),Math.min(w,k)+1,Math.max(w,k)-1),A=void 0===t.lf||!1===r.boxpoints,M=c.c2p(A?t.min:t.lf,!0),S=c.c2p(A?t.max:t.uf,!0),E=c.c2p(t.ln,!0),C=c.c2p(t.un,!0);\"h\"===r.orientation?n.select(this).attr(\"d\",\"M\"+T+\",\"+b+\"V\"+_+\"M\"+w+\",\"+v+\"V\"+m+(d?\"H\"+E+\"L\"+T+\",\"+_+\"L\"+C+\",\"+m:\"\")+\"H\"+k+\"V\"+v+(d?\"H\"+C+\"L\"+T+\",\"+b+\"L\"+E+\",\"+v:\"\")+\"ZM\"+w+\",\"+i+\"H\"+M+\"M\"+k+\",\"+i+\"H\"+S+(0===p?\"\":\"M\"+M+\",\"+y+\"V\"+x+\"M\"+S+\",\"+y+\"V\"+x)):n.select(this).attr(\"d\",\"M\"+b+\",\"+T+\"H\"+_+\"M\"+v+\",\"+w+\"H\"+m+(d?\"V\"+E+\"L\"+_+\",\"+T+\"L\"+m+\",\"+C:\"\")+\"V\"+k+\"H\"+v+(d?\"V\"+C+\"L\"+b+\",\"+T+\"L\"+v+\",\"+E:\"\")+\"ZM\"+i+\",\"+w+\"V\"+M+\"M\"+i+\",\"+k+\"V\"+S+(0===p?\"\":\"M\"+y+\",\"+M+\"H\"+x+\"M\"+y+\",\"+S+\"H\"+x))})}function c(t,e,r,n){var l=e.x,c=e.y,u=n.bdPos,h=n.bPos,f=r.boxpoints||r.points;a.seedPseudoRandom();var p=t.selectAll(\"g.points\").data(f?function(t){return t.forEach(function(t){t.t=n,t.trace=r}),t}:[]);p.enter().append(\"g\").attr(\"class\",\"points\"),p.exit().remove();var d=p.selectAll(\"path\").data(function(t){var e,n,i=t.pts2,l=Math.max((t.max-t.min)/10,t.q3-t.q1),c=1e-9*l,p=l*s,d=[],g=0;if(r.jitter){if(0===l)for(g=1,d=new Array(i.length),e=0;e<i.length;e++)d[e]=1;else for(e=0;e<i.length;e++){var v=Math.max(0,e-o),m=i[v].v,y=Math.min(i.length-1,e+o),x=i[y].v;\"all\"!==f&&(i[e].v<t.lf?x=Math.min(x,t.lf):m=Math.max(m,t.uf));var b=Math.sqrt(p*(y-v)/(x-m+c))||0;b=a.constrain(Math.abs(b),0,1),d.push(b),g=Math.max(b,g)}n=2*r.jitter/(g||1)}for(e=0;e<i.length;e++){var _=i[e],w=_.v,k=r.jitter?n*d[e]*(a.pseudoRandom()-.5):0,T=t.pos+h+u*(r.pointpos+k);\"h\"===r.orientation?(_.y=T,_.x=w):(_.x=T,_.y=w),\"suspectedoutliers\"===f&&w<t.uo&&w>t.lo&&(_.so=!0)}return i});d.enter().append(\"path\").classed(\"point\",!0),d.exit().remove(),d.call(i.translatePoints,l,c)}function u(t,e,r,i){var o,s,l=e.pos,c=e.val,u=i.bPos,h=i.bPosPxOffset||0,f=r.boxmean||(r.meanline||{}).visible;Array.isArray(i.bdPos)?(o=i.bdPos[0],s=i.bdPos[1]):(o=i.bdPos,s=i.bdPos);var p=t.selectAll(\"path.mean\").data(\"box\"===r.type&&r.boxmean||\"violin\"===r.type&&r.box.visible&&r.meanline.visible?a.identity:[]);p.enter().append(\"path\").attr(\"class\",\"mean\").style({fill:\"none\",\"vector-effect\":\"non-scaling-stroke\"}),p.exit().remove(),p.each(function(t){var e=l.c2p(t.pos+u,!0)+h,a=l.c2p(t.pos+u-o,!0)+h,i=l.c2p(t.pos+u+s,!0)+h,p=c.c2p(t.mean,!0),d=c.c2p(t.mean-t.sd,!0),g=c.c2p(t.mean+t.sd,!0);\"h\"===r.orientation?n.select(this).attr(\"d\",\"M\"+p+\",\"+a+\"V\"+i+(\"sd\"===f?\"m0,0L\"+d+\",\"+e+\"L\"+p+\",\"+a+\"L\"+g+\",\"+e+\"Z\":\"\")):n.select(this).attr(\"d\",\"M\"+a+\",\"+p+\"H\"+i+(\"sd\"===f?\"m0,0L\"+e+\",\"+d+\"L\"+a+\",\"+p+\"L\"+e+\",\"+g+\"Z\":\"\"))})}e.exports={plot:function(t,e,r,i){var o=e.xaxis,s=e.yaxis;a.makeTraceGroups(i,r,\"trace boxes\").each(function(t){var e,r,a=n.select(this),i=t[0],h=i.t,f=i.trace;h.wdPos=h.bdPos*f.whiskerwidth,!0!==f.visible||h.empty?a.remove():(\"h\"===f.orientation?(e=s,r=o):(e=o,r=s),l(a,{pos:e,val:r},f,h),c(a,{x:o,y:s},f,h),u(a,{pos:e,val:r},f,h))})},plotBoxAndWhiskers:l,plotPoints:c,plotBoxMean:u}},{\"../../components/drawing\":615,\"../../lib\":719,d3:164}],891:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r,n,a=t.cd,i=t.xaxis,o=t.yaxis,s=[];if(!1===e)for(r=0;r<a.length;r++)for(n=0;n<(a[r].pts||[]).length;n++)a[r].pts[n].selected=0;else for(r=0;r<a.length;r++)for(n=0;n<(a[r].pts||[]).length;n++){var l=a[r].pts[n],c=i.c2p(l.x),u=o.c2p(l.y);e.contains([c,u],null,l.i,t)?(s.push({pointNumber:l.i,x:i.c2d(l.x),y:o.c2d(l.y)}),l.selected=1):l.selected=0}return s}},{}],892:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/color\"),i=t(\"../../components/drawing\");e.exports={style:function(t,e,r){var o=r||n.select(t).selectAll(\"g.trace.boxes\");o.style(\"opacity\",function(t){return t[0].trace.opacity}),o.each(function(e){var r=n.select(this),o=e[0].trace,s=o.line.width;function l(t,e,r,n){t.style(\"stroke-width\",e+\"px\").call(a.stroke,r).call(a.fill,n)}var c=r.selectAll(\"path.box\");if(\"candlestick\"===o.type)c.each(function(t){if(!t.empty){var e=n.select(this),r=o[t.dir];l(e,r.line.width,r.line.color,r.fillcolor),e.style(\"opacity\",o.selectedpoints&&!t.selected?.3:1)}});else{l(c,s,o.line.color,o.fillcolor),r.selectAll(\"path.mean\").style({\"stroke-width\":s,\"stroke-dasharray\":2*s+\"px,\"+s+\"px\"}).call(a.stroke,o.line.color);var u=r.selectAll(\"path.point\");i.pointStyle(u,o,t)}})},styleOnSelect:function(t,e,r){var n=e[0].trace,a=r.selectAll(\"path.point\");n.selectedpoints?i.selectedPointStyle(a,n):i.pointStyle(a,n,t)}}},{\"../../components/color\":594,\"../../components/drawing\":615,d3:164}],893:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").extendFlat,a=t(\"../ohlc/attributes\"),i=t(\"../box/attributes\");function o(t){return{line:{color:n({},i.line.color,{dflt:t}),width:i.line.width,editType:\"style\"},fillcolor:i.fillcolor,editType:\"style\"}}e.exports={x:a.x,open:a.open,high:a.high,low:a.low,close:a.close,line:{width:n({},i.line.width,{}),editType:\"style\"},increasing:o(a.increasing.line.color.dflt),decreasing:o(a.decreasing.line.color.dflt),text:a.text,hovertext:a.hovertext,whiskerwidth:n({},i.whiskerwidth,{dflt:0}),hoverlabel:a.hoverlabel}},{\"../../lib\":719,\"../box/attributes\":881,\"../ohlc/attributes\":1057}],894:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"../ohlc/calc\").calcCommon;function o(t,e,r,n){return{min:r,q1:Math.min(t,n),med:n,q3:Math.max(t,n),max:e}}e.exports=function(t,e){var r=t._fullLayout,s=a.getFromId(t,e.xaxis),l=a.getFromId(t,e.yaxis),c=s.makeCalcdata(e,\"x\"),u=i(t,e,c,l,o);return u.length?(n.extendFlat(u[0].t,{num:r._numBoxes,dPos:n.distinctVals(c).minDiff/2,posLetter:\"x\",valLetter:\"y\"}),r._numBoxes++,u):[{t:{empty:!0}}]}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../ohlc/calc\":1058}],895:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/color\"),i=t(\"../ohlc/ohlc_defaults\"),o=t(\"./attributes\");function s(t,e,r,n){var i=r(n+\".line.color\");r(n+\".line.width\",e.line.width),r(n+\".fillcolor\",a.addOpacity(i,.5))}e.exports=function(t,e,r,a){function l(r,a){return n.coerce(t,e,o,r,a)}i(t,e,l,a)?(l(\"line.width\"),s(t,e,l,\"increasing\"),s(t,e,l,\"decreasing\"),l(\"text\"),l(\"hovertext\"),l(\"whiskerwidth\"),a._requestRangeslider[e.xaxis]=!0):e.visible=!1}},{\"../../components/color\":594,\"../../lib\":719,\"../ohlc/ohlc_defaults\":1062,\"./attributes\":893}],896:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"candlestick\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"showLegend\",\"candlestick\",\"boxLayout\"],meta:{},attributes:t(\"./attributes\"),layoutAttributes:t(\"../box/layout_attributes\"),supplyLayoutDefaults:t(\"../box/layout_defaults\").supplyLayoutDefaults,crossTraceCalc:t(\"../box/cross_trace_calc\").crossTraceCalc,supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),plot:t(\"../box/plot\").plot,layerName:\"boxlayer\",style:t(\"../box/style\").style,hoverPoints:t(\"../ohlc/hover\").hoverPoints,selectPoints:t(\"../ohlc/select\")}},{\"../../plots/cartesian\":778,\"../box/cross_trace_calc\":883,\"../box/layout_attributes\":888,\"../box/layout_defaults\":889,\"../box/plot\":890,\"../box/style\":892,\"../ohlc/hover\":1060,\"../ohlc/select\":1064,\"./attributes\":893,\"./calc\":894,\"./defaults\":895}],897:[function(t,e,r){\"use strict\";var n=t(\"./axis_defaults\"),a=t(\"../../plot_api/plot_template\");e.exports=function(t,e,r,i,o){i(\"a\")||(i(\"da\"),i(\"a0\")),i(\"b\")||(i(\"db\"),i(\"b0\")),function(t,e,r,i){[\"aaxis\",\"baxis\"].forEach(function(o){var s=o.charAt(0),l=t[o]||{},c=a.newContainer(e,o),u={tickfont:\"x\",id:s+\"axis\",letter:s,font:e.font,name:o,data:t[s],calendar:e.calendar,dfltColor:i,bgColor:r.paper_bgcolor,fullLayout:r};n(l,c,u),c._categories=c._categories||[],t[o]||\"-\"===l.type||(t[o]={type:l.type})})}(t,e,r,o)}},{\"../../plot_api/plot_template\":757,\"./axis_defaults\":902}],898:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").isArrayOrTypedArray;e.exports=function(t){return function t(e,r){if(!n(e)||r>=10)return null;var a=1/0;var i=-1/0;var o=e.length;for(var s=0;s<o;s++){var l=e[s];if(n(l)){var c=t(l,r+1);c&&(a=Math.min(c[0],a),i=Math.max(c[1],i))}else a=Math.min(l,a),i=Math.max(l,i)}return[a,i]}(t,0)}},{\"../../lib\":719}],899:[function(t,e,r){\"use strict\";var n=t(\"../../plots/font_attributes\"),a=t(\"./axis_attributes\"),i=t(\"../../components/color/attributes\"),o=n({editType:\"calc\"});o.family.dflt='\"Open Sans\", verdana, arial, sans-serif',o.size.dflt=12,o.color.dflt=i.defaultLine,e.exports={carpet:{valType:\"string\",editType:\"calc\"},x:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},y:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},a:{valType:\"data_array\",editType:\"calc\"},a0:{valType:\"number\",dflt:0,editType:\"calc\"},da:{valType:\"number\",dflt:1,editType:\"calc\"},b:{valType:\"data_array\",editType:\"calc\"},b0:{valType:\"number\",dflt:0,editType:\"calc\"},db:{valType:\"number\",dflt:1,editType:\"calc\"},cheaterslope:{valType:\"number\",dflt:1,editType:\"calc\"},aaxis:a,baxis:a,font:o,color:{valType:\"color\",dflt:i.defaultLine,editType:\"plot\"},transforms:void 0}},{\"../../components/color/attributes\":593,\"../../plots/font_attributes\":793,\"./axis_attributes\":901}],900:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").isArrayOrTypedArray;e.exports=function(t,e,r,a){var i,o,s,l,c,u,h,f,p,d,g,v,m,y=n(r)?\"a\":\"b\",x=(\"a\"===y?t.aaxis:t.baxis).smoothing,b=\"a\"===y?t.a2i:t.b2j,_=\"a\"===y?r:a,w=\"a\"===y?a:r,k=\"a\"===y?e.a.length:e.b.length,T=\"a\"===y?e.b.length:e.a.length,A=Math.floor(\"a\"===y?t.b2j(w):t.a2i(w)),M=\"a\"===y?function(e){return t.evalxy([],e,A)}:function(e){return t.evalxy([],A,e)};x&&(s=Math.max(0,Math.min(T-2,A)),l=A-s,o=\"a\"===y?function(e,r){return t.dxydi([],e,s,r,l)}:function(e,r){return t.dxydj([],s,e,l,r)});var S=b(_[0]),E=b(_[1]),C=S<E?1:-1,L=1e-8*(E-S),P=C>0?Math.floor:Math.ceil,O=C>0?Math.ceil:Math.floor,I=C>0?Math.min:Math.max,z=C>0?Math.max:Math.min,D=P(S+L),R=O(E-L),F=[[h=M(S)]];for(i=D;i*C<R*C;i+=C)c=[],g=z(S,i),m=(v=I(E,i+C))-g,u=Math.max(0,Math.min(k-2,Math.floor(.5*(g+v)))),f=M(v),x&&(p=o(u,g-u),d=o(u,v-u),c.push([h[0]+p[0]/3*m,h[1]+p[1]/3*m]),c.push([f[0]-d[0]/3*m,f[1]-d[1]/3*m])),c.push(f),F.push(c),h=f;return F}},{\"../../lib\":719}],901:[function(t,e,r){\"use strict\";var n=t(\"../../plots/font_attributes\"),a=t(\"../../components/color/attributes\"),i=t(\"../../plots/cartesian/layout_attributes\"),o=t(\"../../plot_api/edit_types\").overrideAll;t(\"../../constants/docs\").FORMAT_LINK,t(\"../../constants/docs\").TIME_FORMAT_LINK;e.exports={color:{valType:\"color\",editType:\"calc\"},smoothing:{valType:\"number\",dflt:1,min:0,max:1.3,editType:\"calc\"},title:{text:{valType:\"string\",dflt:\"\",editType:\"calc\"},font:n({editType:\"calc\"}),offset:{valType:\"number\",dflt:10,editType:\"calc\"},editType:\"calc\"},type:{valType:\"enumerated\",values:[\"-\",\"linear\",\"date\",\"category\"],dflt:\"-\",editType:\"calc\"},autorange:{valType:\"enumerated\",values:[!0,!1,\"reversed\"],dflt:!0,editType:\"calc\"},rangemode:{valType:\"enumerated\",values:[\"normal\",\"tozero\",\"nonnegative\"],dflt:\"normal\",editType:\"calc\"},range:{valType:\"info_array\",editType:\"calc\",items:[{valType:\"any\",editType:\"calc\"},{valType:\"any\",editType:\"calc\"}]},fixedrange:{valType:\"boolean\",dflt:!1,editType:\"calc\"},cheatertype:{valType:\"enumerated\",values:[\"index\",\"value\"],dflt:\"value\",editType:\"calc\"},tickmode:{valType:\"enumerated\",values:[\"linear\",\"array\"],dflt:\"array\",editType:\"calc\"},nticks:{valType:\"integer\",min:0,dflt:0,editType:\"calc\"},tickvals:{valType:\"data_array\",editType:\"calc\"},ticktext:{valType:\"data_array\",editType:\"calc\"},showticklabels:{valType:\"enumerated\",values:[\"start\",\"end\",\"both\",\"none\"],dflt:\"start\",editType:\"calc\"},tickfont:n({editType:\"calc\"}),tickangle:{valType:\"angle\",dflt:\"auto\",editType:\"calc\"},tickprefix:{valType:\"string\",dflt:\"\",editType:\"calc\"},showtickprefix:{valType:\"enumerated\",values:[\"all\",\"first\",\"last\",\"none\"],dflt:\"all\",editType:\"calc\"},ticksuffix:{valType:\"string\",dflt:\"\",editType:\"calc\"},showticksuffix:{valType:\"enumerated\",values:[\"all\",\"first\",\"last\",\"none\"],dflt:\"all\",editType:\"calc\"},showexponent:{valType:\"enumerated\",values:[\"all\",\"first\",\"last\",\"none\"],dflt:\"all\",editType:\"calc\"},exponentformat:{valType:\"enumerated\",values:[\"none\",\"e\",\"E\",\"power\",\"SI\",\"B\"],dflt:\"B\",editType:\"calc\"},separatethousands:{valType:\"boolean\",dflt:!1,editType:\"calc\"},tickformat:{valType:\"string\",dflt:\"\",editType:\"calc\"},tickformatstops:o(i.tickformatstops,\"calc\",\"from-root\"),categoryorder:{valType:\"enumerated\",values:[\"trace\",\"category ascending\",\"category descending\",\"array\"],dflt:\"trace\",editType:\"calc\"},categoryarray:{valType:\"data_array\",editType:\"calc\"},labelpadding:{valType:\"integer\",dflt:10,editType:\"calc\"},labelprefix:{valType:\"string\",editType:\"calc\"},labelsuffix:{valType:\"string\",dflt:\"\",editType:\"calc\"},showline:{valType:\"boolean\",dflt:!1,editType:\"calc\"},linecolor:{valType:\"color\",dflt:a.defaultLine,editType:\"calc\"},linewidth:{valType:\"number\",min:0,dflt:1,editType:\"calc\"},gridcolor:{valType:\"color\",editType:\"calc\"},gridwidth:{valType:\"number\",min:0,dflt:1,editType:\"calc\"},showgrid:{valType:\"boolean\",dflt:!0,editType:\"calc\"},minorgridcount:{valType:\"integer\",min:0,dflt:0,editType:\"calc\"},minorgridwidth:{valType:\"number\",min:0,dflt:1,editType:\"calc\"},minorgridcolor:{valType:\"color\",dflt:a.lightLine,editType:\"calc\"},startline:{valType:\"boolean\",editType:\"calc\"},startlinecolor:{valType:\"color\",editType:\"calc\"},startlinewidth:{valType:\"number\",dflt:1,editType:\"calc\"},endline:{valType:\"boolean\",editType:\"calc\"},endlinewidth:{valType:\"number\",dflt:1,editType:\"calc\"},endlinecolor:{valType:\"color\",editType:\"calc\"},tick0:{valType:\"number\",min:0,dflt:0,editType:\"calc\"},dtick:{valType:\"number\",min:0,dflt:1,editType:\"calc\"},arraytick0:{valType:\"integer\",min:0,dflt:0,editType:\"calc\"},arraydtick:{valType:\"integer\",min:1,dflt:1,editType:\"calc\"},_deprecated:{title:{valType:\"string\",editType:\"calc\"},titlefont:n({editType:\"calc\"}),titleoffset:{valType:\"number\",dflt:10,editType:\"calc\"}},editType:\"calc\"}},{\"../../components/color/attributes\":593,\"../../constants/docs\":690,\"../../plot_api/edit_types\":750,\"../../plots/cartesian/layout_attributes\":779,\"../../plots/font_attributes\":793}],902:[function(t,e,r){\"use strict\";var n=t(\"./attributes\"),a=t(\"../../components/color\").addOpacity,i=t(\"../../registry\"),o=t(\"../../lib\"),s=t(\"../../plots/cartesian/tick_value_defaults\"),l=t(\"../../plots/cartesian/tick_label_defaults\"),c=t(\"../../plots/cartesian/category_order_defaults\"),u=t(\"../../plots/cartesian/set_convert\"),h=t(\"../../plots/cartesian/axis_autotype\");e.exports=function(t,e,r){var f=r.letter,p=r.font||{},d=n[f+\"axis\"];function g(r,n){return o.coerce(t,e,d,r,n)}function v(r,n){return o.coerce2(t,e,d,r,n)}r.name&&(e._name=r.name,e._id=r.name);var m=g(\"type\");(\"-\"===m&&(r.data&&function(t,e){if(\"-\"!==t.type)return;var r=t._id.charAt(0),n=t[r+\"calendar\"];t.type=h(e,n)}(e,r.data),\"-\"===e.type?e.type=\"linear\":m=t.type=e.type),g(\"smoothing\"),g(\"cheatertype\"),g(\"showticklabels\"),g(\"labelprefix\",f+\" = \"),g(\"labelsuffix\"),g(\"showtickprefix\"),g(\"showticksuffix\"),g(\"separatethousands\"),g(\"tickformat\"),g(\"exponentformat\"),g(\"showexponent\"),g(\"categoryorder\"),g(\"tickmode\"),g(\"tickvals\"),g(\"ticktext\"),g(\"tick0\"),g(\"dtick\"),\"array\"===e.tickmode&&(g(\"arraytick0\"),g(\"arraydtick\")),g(\"labelpadding\"),e._hovertitle=f,\"date\"===m)&&i.getComponentMethod(\"calendars\",\"handleDefaults\")(t,e,\"calendar\",r.calendar);u(e,r.fullLayout),e.c2p=o.identity;var y=g(\"color\",r.dfltColor),x=y===t.color?y:p.color;g(\"title.text\")&&(o.coerceFont(g,\"title.font\",{family:p.family,size:Math.round(1.2*p.size),color:x}),g(\"title.offset\")),g(\"tickangle\"),g(\"autorange\",!e.isValidRange(t.range))&&g(\"rangemode\"),g(\"range\"),e.cleanRange(),g(\"fixedrange\"),s(t,e,g,m),l(t,e,g,m,r),c(t,e,g,{data:r.data,dataAttr:f});var b=v(\"gridcolor\",a(y,.3)),_=v(\"gridwidth\"),w=g(\"showgrid\");w||(delete e.gridcolor,delete e.gridwidth);var k=v(\"startlinecolor\",y),T=v(\"startlinewidth\",_);g(\"startline\",e.showgrid||!!k||!!T)||(delete e.startlinecolor,delete e.startlinewidth);var A=v(\"endlinecolor\",y),M=v(\"endlinewidth\",_);return g(\"endline\",e.showgrid||!!A||!!M)||(delete e.endlinecolor,delete e.endlinewidth),w?(g(\"minorgridcount\"),g(\"minorgridwidth\",_),g(\"minorgridcolor\",a(b,.06)),e.minorgridcount||(delete e.minorgridwidth,delete e.minorgridcolor)):(delete e.gridcolor,delete e.gridWidth),\"none\"===e.showticklabels&&(delete e.tickfont,delete e.tickangle,delete e.showexponent,delete e.exponentformat,delete e.tickformat,delete e.showticksuffix,delete e.showtickprefix),e.showticksuffix||delete e.ticksuffix,e.showtickprefix||delete e.tickprefix,g(\"tickmode\"),e}},{\"../../components/color\":594,\"../../lib\":719,\"../../plots/cartesian/axis_autotype\":768,\"../../plots/cartesian/category_order_defaults\":771,\"../../plots/cartesian/set_convert\":785,\"../../plots/cartesian/tick_label_defaults\":786,\"../../plots/cartesian/tick_value_defaults\":788,\"../../registry\":848,\"./attributes\":899}],903:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),a=t(\"../../lib\").isArray1D,i=t(\"./cheater_basis\"),o=t(\"./array_minmax\"),s=t(\"./calc_gridlines\"),l=t(\"./calc_labels\"),c=t(\"./calc_clippath\"),u=t(\"../heatmap/clean_2d_array\"),h=t(\"./smooth_fill_2d_array\"),f=t(\"../heatmap/convert_column_xyz\"),p=t(\"./set_convert\");e.exports=function(t,e){var r=n.getFromId(t,e.xaxis),d=n.getFromId(t,e.yaxis),g=e.aaxis,v=e.baxis,m=e.x,y=e.y,x=[];m&&a(m)&&x.push(\"x\"),y&&a(y)&&x.push(\"y\"),x.length&&f(e,g,v,\"a\",\"b\",x);var b=e._a=e._a||e.a,_=e._b=e._b||e.b;m=e._x||e.x,y=e._y||e.y;var w={};if(e._cheater){var k=\"index\"===g.cheatertype?b.length:b,T=\"index\"===v.cheatertype?_.length:_;m=i(k,T,e.cheaterslope)}e._x=m=u(m),e._y=y=u(y),h(m,b,_),h(y,b,_),p(e),e.setScale();var A=o(m),M=o(y),S=.5*(A[1]-A[0]),E=.5*(A[1]+A[0]),C=.5*(M[1]-M[0]),L=.5*(M[1]+M[0]);return A=[E-1.3*S,E+1.3*S],M=[L-1.3*C,L+1.3*C],e._extremes[r._id]=n.findExtremes(r,A,{padded:!0}),e._extremes[d._id]=n.findExtremes(d,M,{padded:!0}),s(e,\"a\",\"b\"),s(e,\"b\",\"a\"),l(e,g),l(e,v),w.clipsegments=c(e._xctrl,e._yctrl,g,v),w.x=m,w.y=y,w.a=b,w.b=_,[w]}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../heatmap/clean_2d_array\":1002,\"../heatmap/convert_column_xyz\":1004,\"./array_minmax\":898,\"./calc_clippath\":904,\"./calc_gridlines\":905,\"./calc_labels\":906,\"./cheater_basis\":908,\"./set_convert\":921,\"./smooth_fill_2d_array\":922}],904:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n){var a,i,o,s=[],l=!!r.smoothing,c=!!n.smoothing,u=t[0].length-1,h=t.length-1;for(a=0,i=[],o=[];a<=u;a++)i[a]=t[0][a],o[a]=e[0][a];for(s.push({x:i,y:o,bicubic:l}),a=0,i=[],o=[];a<=h;a++)i[a]=t[a][u],o[a]=e[a][u];for(s.push({x:i,y:o,bicubic:c}),a=u,i=[],o=[];a>=0;a--)i[u-a]=t[h][a],o[u-a]=e[h][a];for(s.push({x:i,y:o,bicubic:l}),a=h,i=[],o=[];a>=0;a--)i[h-a]=t[a][0],o[h-a]=e[a][0];return s.push({x:i,y:o,bicubic:c}),s}},{}],905:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),a=t(\"../../lib/extend\").extendFlat;e.exports=function(t,e,r){var i,o,s,l,c,u,h,f,p,d,g,v,m,y,x=t[\"_\"+e],b=t[e+\"axis\"],_=b._gridlines=[],w=b._minorgridlines=[],k=b._boundarylines=[],T=t[\"_\"+r],A=t[r+\"axis\"];\"array\"===b.tickmode&&(b.tickvals=x.slice());var M=t._xctrl,S=t._yctrl,E=M[0].length,C=M.length,L=t._a.length,P=t._b.length;n.prepTicks(b),\"array\"===b.tickmode&&delete b.tickvals;var O=b.smoothing?3:1;function I(n){var a,i,o,s,l,c,u,h,p,d,g,v,m=[],y=[],x={};if(\"b\"===e)for(i=t.b2j(n),o=Math.floor(Math.max(0,Math.min(P-2,i))),s=i-o,x.length=P,x.crossLength=L,x.xy=function(e){return t.evalxy([],e,i)},x.dxy=function(e,r){return t.dxydi([],e,o,r,s)},a=0;a<L;a++)c=Math.min(L-2,a),u=a-c,h=t.evalxy([],a,i),A.smoothing&&a>0&&(p=t.dxydi([],a-1,o,0,s),m.push(l[0]+p[0]/3),y.push(l[1]+p[1]/3),d=t.dxydi([],a-1,o,1,s),m.push(h[0]-d[0]/3),y.push(h[1]-d[1]/3)),m.push(h[0]),y.push(h[1]),l=h;else for(a=t.a2i(n),c=Math.floor(Math.max(0,Math.min(L-2,a))),u=a-c,x.length=L,x.crossLength=P,x.xy=function(e){return t.evalxy([],a,e)},x.dxy=function(e,r){return t.dxydj([],c,e,u,r)},i=0;i<P;i++)o=Math.min(P-2,i),s=i-o,h=t.evalxy([],a,i),A.smoothing&&i>0&&(g=t.dxydj([],c,i-1,u,0),m.push(l[0]+g[0]/3),y.push(l[1]+g[1]/3),v=t.dxydj([],c,i-1,u,1),m.push(h[0]-v[0]/3),y.push(h[1]-v[1]/3)),m.push(h[0]),y.push(h[1]),l=h;return x.axisLetter=e,x.axis=b,x.crossAxis=A,x.value=n,x.constvar=r,x.index=f,x.x=m,x.y=y,x.smoothing=A.smoothing,x}function z(n){var a,i,o,s,l,c=[],u=[],h={};if(h.length=x.length,h.crossLength=T.length,\"b\"===e)for(o=Math.max(0,Math.min(P-2,n)),l=Math.min(1,Math.max(0,n-o)),h.xy=function(e){return t.evalxy([],e,n)},h.dxy=function(e,r){return t.dxydi([],e,o,r,l)},a=0;a<E;a++)c[a]=M[n*O][a],u[a]=S[n*O][a];else for(i=Math.max(0,Math.min(L-2,n)),s=Math.min(1,Math.max(0,n-i)),h.xy=function(e){return t.evalxy([],n,e)},h.dxy=function(e,r){return t.dxydj([],i,e,s,r)},a=0;a<C;a++)c[a]=M[a][n*O],u[a]=S[a][n*O];return h.axisLetter=e,h.axis=b,h.crossAxis=A,h.value=x[n],h.constvar=r,h.index=n,h.x=c,h.y=u,h.smoothing=A.smoothing,h}if(\"array\"===b.tickmode){for(l=5e-15,u=(c=[Math.floor((x.length-1-b.arraytick0)/b.arraydtick*(1+l)),Math.ceil(-b.arraytick0/b.arraydtick/(1+l))].sort(function(t,e){return t-e}))[0]-1,h=c[1]+1,f=u;f<h;f++)(o=b.arraytick0+b.arraydtick*f)<0||o>x.length-1||_.push(a(z(o),{color:b.gridcolor,width:b.gridwidth}));for(f=u;f<h;f++)if(s=b.arraytick0+b.arraydtick*f,g=Math.min(s+b.arraydtick,x.length-1),!(s<0||s>x.length-1||g<0||g>x.length-1))for(v=x[s],m=x[g],i=0;i<b.minorgridcount;i++)(y=g-s)<=0||(d=v+(m-v)*(i+1)/(b.minorgridcount+1)*(b.arraydtick/y))<x[0]||d>x[x.length-1]||w.push(a(I(d),{color:b.minorgridcolor,width:b.minorgridwidth}));b.startline&&k.push(a(z(0),{color:b.startlinecolor,width:b.startlinewidth})),b.endline&&k.push(a(z(x.length-1),{color:b.endlinecolor,width:b.endlinewidth}))}else{for(l=5e-15,u=(c=[Math.floor((x[x.length-1]-b.tick0)/b.dtick*(1+l)),Math.ceil((x[0]-b.tick0)/b.dtick/(1+l))].sort(function(t,e){return t-e}))[0],h=c[1],f=u;f<=h;f++)p=b.tick0+b.dtick*f,_.push(a(I(p),{color:b.gridcolor,width:b.gridwidth}));for(f=u-1;f<h+1;f++)for(p=b.tick0+b.dtick*f,i=0;i<b.minorgridcount;i++)(d=p+b.dtick*(i+1)/(b.minorgridcount+1))<x[0]||d>x[x.length-1]||w.push(a(I(d),{color:b.minorgridcolor,width:b.minorgridwidth}));b.startline&&k.push(a(I(x[0]),{color:b.startlinecolor,width:b.startlinewidth})),b.endline&&k.push(a(I(x[x.length-1]),{color:b.endlinecolor,width:b.endlinewidth}))}}},{\"../../lib/extend\":710,\"../../plots/cartesian/axes\":767}],906:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),a=t(\"../../lib/extend\").extendFlat;e.exports=function(t,e){var r,i,o,s=e._labels=[],l=e._gridlines;for(r=0;r<l.length;r++)o=l[r],-1!==[\"start\",\"both\"].indexOf(e.showticklabels)&&(i=n.tickText(e,o.value),a(i,{prefix:void 0,suffix:void 0,endAnchor:!0,xy:o.xy(0),dxy:o.dxy(0,0),axis:o.axis,length:o.crossAxis.length,font:o.axis.tickfont,isFirst:0===r,isLast:r===l.length-1}),s.push(i)),-1!==[\"end\",\"both\"].indexOf(e.showticklabels)&&(i=n.tickText(e,o.value),a(i,{endAnchor:!1,xy:o.xy(o.crossLength-1),dxy:o.dxy(o.crossLength-2,1),axis:o.axis,length:o.crossAxis.length,font:o.axis.tickfont,isFirst:0===r,isLast:r===l.length-1}),s.push(i))}},{\"../../lib/extend\":710,\"../../plots/cartesian/axes\":767}],907:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n){var a=t[0]-e[0],i=t[1]-e[1],o=r[0]-e[0],s=r[1]-e[1],l=Math.pow(a*a+i*i,.25),c=Math.pow(o*o+s*s,.25),u=(c*c*a-l*l*o)*n,h=(c*c*i-l*l*s)*n,f=c*(l+c)*3,p=l*(l+c)*3;return[[e[0]+(f&&u/f),e[1]+(f&&h/f)],[e[0]-(p&&u/p),e[1]-(p&&h/p)]]}},{}],908:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").isArrayOrTypedArray;e.exports=function(t,e,r){var a,i,o,s,l,c,u=[],h=n(t)?t.length:t,f=n(e)?e.length:e,p=n(t)?t:null,d=n(e)?e:null;p&&(o=(p.length-1)/(p[p.length-1]-p[0])/(h-1)),d&&(s=(d.length-1)/(d[d.length-1]-d[0])/(f-1));var g=1/0,v=-1/0;for(i=0;i<f;i++)for(u[i]=[],l=d?(d[i]-d[0])*s:i/(f-1),a=0;a<h;a++)c=(p?(p[a]-p[0])*o:a/(h-1))-l*r,g=Math.min(c,g),v=Math.max(c,v),u[i][a]=c;var m=1/(v-g),y=-g*m;for(i=0;i<f;i++)for(a=0;a<h;a++)u[i][a]=m*u[i][a]+y;return u}},{\"../../lib\":719}],909:[function(t,e,r){\"use strict\";var n=t(\"./catmull_rom\"),a=t(\"../../lib\").ensureArray;function i(t,e,r){var n=-.5*r[0]+1.5*e[0],a=-.5*r[1]+1.5*e[1];return[(2*n+t[0])/3,(2*a+t[1])/3]}e.exports=function(t,e,r,o,s,l){var c,u,h,f,p,d,g,v,m,y,x=r[0].length,b=r.length,_=s?3*x-2:x,w=l?3*b-2:b;for(t=a(t,w),e=a(e,w),h=0;h<w;h++)t[h]=a(t[h],_),e[h]=a(e[h],_);for(u=0,f=0;u<b;u++,f+=l?3:1)for(p=t[f],d=e[f],g=r[u],v=o[u],c=0,h=0;c<x;c++,h+=s?3:1)p[h]=g[c],d[h]=v[c];if(s)for(u=0,f=0;u<b;u++,f+=l?3:1){for(c=1,h=3;c<x-1;c++,h+=3)m=n([r[u][c-1],o[u][c-1]],[r[u][c],o[u][c]],[r[u][c+1],o[u][c+1]],s),t[f][h-1]=m[0][0],e[f][h-1]=m[0][1],t[f][h+1]=m[1][0],e[f][h+1]=m[1][1];y=i([t[f][0],e[f][0]],[t[f][2],e[f][2]],[t[f][3],e[f][3]]),t[f][1]=y[0],e[f][1]=y[1],y=i([t[f][_-1],e[f][_-1]],[t[f][_-3],e[f][_-3]],[t[f][_-4],e[f][_-4]]),t[f][_-2]=y[0],e[f][_-2]=y[1]}if(l)for(h=0;h<_;h++){for(f=3;f<w-3;f+=3)m=n([t[f-3][h],e[f-3][h]],[t[f][h],e[f][h]],[t[f+3][h],e[f+3][h]],l),t[f-1][h]=m[0][0],e[f-1][h]=m[0][1],t[f+1][h]=m[1][0],e[f+1][h]=m[1][1];y=i([t[0][h],e[0][h]],[t[2][h],e[2][h]],[t[3][h],e[3][h]]),t[1][h]=y[0],e[1][h]=y[1],y=i([t[w-1][h],e[w-1][h]],[t[w-3][h],e[w-3][h]],[t[w-4][h],e[w-4][h]]),t[w-2][h]=y[0],e[w-2][h]=y[1]}if(s&&l)for(f=1;f<w;f+=(f+1)%3==0?2:1){for(h=3;h<_-3;h+=3)m=n([t[f][h-3],e[f][h-3]],[t[f][h],e[f][h]],[t[f][h+3],e[f][h+3]],s),t[f][h-1]=.5*(t[f][h-1]+m[0][0]),e[f][h-1]=.5*(e[f][h-1]+m[0][1]),t[f][h+1]=.5*(t[f][h+1]+m[1][0]),e[f][h+1]=.5*(e[f][h+1]+m[1][1]);y=i([t[f][0],e[f][0]],[t[f][2],e[f][2]],[t[f][3],e[f][3]]),t[f][1]=.5*(t[f][1]+y[0]),e[f][1]=.5*(e[f][1]+y[1]),y=i([t[f][_-1],e[f][_-1]],[t[f][_-3],e[f][_-3]],[t[f][_-4],e[f][_-4]]),t[f][_-2]=.5*(t[f][_-2]+y[0]),e[f][_-2]=.5*(e[f][_-2]+y[1])}return[t,e]}},{\"../../lib\":719,\"./catmull_rom\":907}],910:[function(t,e,r){\"use strict\";e.exports={RELATIVE_CULL_TOLERANCE:1e-6}},{}],911:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){return e&&r?function(e,r,n,a,i){var o,s,l,c,u,h;e||(e=[]),r*=3,n*=3;var f=a*a,p=1-a,d=p*p,g=p*a*2,v=-3*d,m=3*(d-g),y=3*(g-f),x=3*f,b=i*i,_=b*i,w=1-i,k=w*w,T=k*w;for(h=0;h<t.length;h++)o=v*(u=t[h])[n][r]+m*u[n][r+1]+y*u[n][r+2]+x*u[n][r+3],s=v*u[n+1][r]+m*u[n+1][r+1]+y*u[n+1][r+2]+x*u[n+1][r+3],l=v*u[n+2][r]+m*u[n+2][r+1]+y*u[n+2][r+2]+x*u[n+2][r+3],c=v*u[n+3][r]+m*u[n+3][r+1]+y*u[n+3][r+2]+x*u[n+3][r+3],e[h]=T*o+3*(k*i*s+w*b*l)+_*c;return e}:e?function(e,r,n,a,i){var o,s,l,c;e||(e=[]),r*=3;var u=a*a,h=1-a,f=h*h,p=h*a*2,d=-3*f,g=3*(f-p),v=3*(p-u),m=3*u,y=1-i;for(l=0;l<t.length;l++)o=d*(c=t[l])[n][r]+g*c[n][r+1]+v*c[n][r+2]+m*c[n][r+3],s=d*c[n+1][r]+g*c[n+1][r+1]+v*c[n+1][r+2]+m*c[n+1][r+3],e[l]=y*o+i*s;return e}:r?function(e,r,n,a,i){var o,s,l,c,u,h;e||(e=[]),n*=3;var f=i*i,p=f*i,d=1-i,g=d*d,v=g*d;for(u=0;u<t.length;u++)o=(h=t[u])[n][r+1]-h[n][r],s=h[n+1][r+1]-h[n+1][r],l=h[n+2][r+1]-h[n+2][r],c=h[n+3][r+1]-h[n+3][r],e[u]=v*o+3*(g*i*s+d*f*l)+p*c;return e}:function(e,r,n,a,i){var o,s,l,c;e||(e=[]);var u=1-i;for(l=0;l<t.length;l++)o=(c=t[l])[n][r+1]-c[n][r],s=c[n+1][r+1]-c[n+1][r],e[l]=u*o+i*s;return e}}},{}],912:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){return e&&r?function(e,r,n,a,i){var o,s,l,c,u,h;e||(e=[]),r*=3,n*=3;var f=a*a,p=f*a,d=1-a,g=d*d,v=g*d,m=i*i,y=1-i,x=y*y,b=y*i*2,_=-3*x,w=3*(x-b),k=3*(b-m),T=3*m;for(h=0;h<t.length;h++)o=_*(u=t[h])[n][r]+w*u[n+1][r]+k*u[n+2][r]+T*u[n+3][r],s=_*u[n][r+1]+w*u[n+1][r+1]+k*u[n+2][r+1]+T*u[n+3][r+1],l=_*u[n][r+2]+w*u[n+1][r+2]+k*u[n+2][r+2]+T*u[n+3][r+2],c=_*u[n][r+3]+w*u[n+1][r+3]+k*u[n+2][r+3]+T*u[n+3][r+3],e[h]=v*o+3*(g*a*s+d*f*l)+p*c;return e}:e?function(e,r,n,a,i){var o,s,l,c,u,h;e||(e=[]),r*=3;var f=i*i,p=f*i,d=1-i,g=d*d,v=g*d;for(u=0;u<t.length;u++)o=(h=t[u])[n+1][r]-h[n][r],s=h[n+1][r+1]-h[n][r+1],l=h[n+1][r+2]-h[n][r+2],c=h[n+1][r+3]-h[n][r+3],e[u]=v*o+3*(g*i*s+d*f*l)+p*c;return e}:r?function(e,r,n,a,i){var o,s,l,c;e||(e=[]),n*=3;var u=1-a,h=i*i,f=1-i,p=f*f,d=f*i*2,g=-3*p,v=3*(p-d),m=3*(d-h),y=3*h;for(l=0;l<t.length;l++)o=g*(c=t[l])[n][r]+v*c[n+1][r]+m*c[n+2][r]+y*c[n+3][r],s=g*c[n][r+1]+v*c[n+1][r+1]+m*c[n+2][r+1]+y*c[n+3][r+1],e[l]=u*o+a*s;return e}:function(e,r,n,a,i){var o,s,l,c;e||(e=[]);var u=1-a;for(l=0;l<t.length;l++)o=(c=t[l])[n+1][r]-c[n][r],s=c[n+1][r+1]-c[n][r+1],e[l]=u*o+a*s;return e}}},{}],913:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,a){var i=e-2,o=r-2;return n&&a?function(e,r,n){var a,s,l,c,u,h;e||(e=[]);var f=Math.max(0,Math.min(Math.floor(r),i)),p=Math.max(0,Math.min(Math.floor(n),o)),d=Math.max(0,Math.min(1,r-f)),g=Math.max(0,Math.min(1,n-p));f*=3,p*=3;var v=d*d,m=v*d,y=1-d,x=y*y,b=x*y,_=g*g,w=_*g,k=1-g,T=k*k,A=T*k;for(h=0;h<t.length;h++)a=b*(u=t[h])[p][f]+3*(x*d*u[p][f+1]+y*v*u[p][f+2])+m*u[p][f+3],s=b*u[p+1][f]+3*(x*d*u[p+1][f+1]+y*v*u[p+1][f+2])+m*u[p+1][f+3],l=b*u[p+2][f]+3*(x*d*u[p+2][f+1]+y*v*u[p+2][f+2])+m*u[p+2][f+3],c=b*u[p+3][f]+3*(x*d*u[p+3][f+1]+y*v*u[p+3][f+2])+m*u[p+3][f+3],e[h]=A*a+3*(T*g*s+k*_*l)+w*c;return e}:n?function(e,r,n){e||(e=[]);var a,s,l,c,u,h,f=Math.max(0,Math.min(Math.floor(r),i)),p=Math.max(0,Math.min(Math.floor(n),o)),d=Math.max(0,Math.min(1,r-f)),g=Math.max(0,Math.min(1,n-p));f*=3;var v=d*d,m=v*d,y=1-d,x=y*y,b=x*y,_=1-g;for(u=0;u<t.length;u++)a=_*(h=t[u])[p][f]+g*h[p+1][f],s=_*h[p][f+1]+g*h[p+1][f+1],l=_*h[p][f+2]+g*h[p+1][f+1],c=_*h[p][f+3]+g*h[p+1][f+1],e[u]=b*a+3*(x*d*s+y*v*l)+m*c;return e}:a?function(e,r,n){e||(e=[]);var a,s,l,c,u,h,f=Math.max(0,Math.min(Math.floor(r),i)),p=Math.max(0,Math.min(Math.floor(n),o)),d=Math.max(0,Math.min(1,r-f)),g=Math.max(0,Math.min(1,n-p));p*=3;var v=g*g,m=v*g,y=1-g,x=y*y,b=x*y,_=1-d;for(u=0;u<t.length;u++)a=_*(h=t[u])[p][f]+d*h[p][f+1],s=_*h[p+1][f]+d*h[p+1][f+1],l=_*h[p+2][f]+d*h[p+2][f+1],c=_*h[p+3][f]+d*h[p+3][f+1],e[u]=b*a+3*(x*g*s+y*v*l)+m*c;return e}:function(e,r,n){e||(e=[]);var a,s,l,c,u=Math.max(0,Math.min(Math.floor(r),i)),h=Math.max(0,Math.min(Math.floor(n),o)),f=Math.max(0,Math.min(1,r-u)),p=Math.max(0,Math.min(1,n-h)),d=1-p,g=1-f;for(l=0;l<t.length;l++)a=g*(c=t[l])[h][u]+f*c[h][u+1],s=g*c[h+1][u]+f*c[h+1][u+1],e[l]=d*a+p*s;return e}}},{}],914:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./xy_defaults\"),i=t(\"./ab_defaults\"),o=t(\"./attributes\"),s=t(\"../../components/color/attributes\");e.exports=function(t,e,r,l){function c(r,a){return n.coerce(t,e,o,r,a)}e._clipPathId=\"clip\"+e.uid+\"carpet\";var u=c(\"color\",s.defaultLine);(n.coerceFont(c,\"font\"),c(\"carpet\"),i(t,e,l,c,u),e.a&&e.b)?(e.a.length<3&&(e.aaxis.smoothing=0),e.b.length<3&&(e.baxis.smoothing=0),a(t,e,c)||(e.visible=!1),e._cheater&&c(\"cheaterslope\")):e.visible=!1}},{\"../../components/color/attributes\":593,\"../../lib\":719,\"./ab_defaults\":897,\"./attributes\":899,\"./xy_defaults\":923}],915:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),plot:t(\"./plot\"),calc:t(\"./calc\"),animatable:!0,isContainer:!0,moduleType:\"trace\",name:\"carpet\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"carpet\",\"carpetAxis\",\"notLegendIsolatable\",\"noMultiCategory\",\"noHover\"],meta:{}}},{\"../../plots/cartesian\":778,\"./attributes\":899,\"./calc\":903,\"./defaults\":914,\"./plot\":920}],916:[function(t,e,r){\"use strict\";e.exports=function(t,e){for(var r,n=t._fullData.length,a=0;a<n;a++){var i=t._fullData[a];if(i.index!==e.index&&(\"carpet\"===i.type&&(r||(r=i),i.carpet===e.carpet)))return i}return r}},{}],917:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){if(0===t.length)return\"\";var n,a=[],i=r?3:1;for(n=0;n<t.length;n+=i)a.push(t[n]+\",\"+e[n]),r&&n<t.length-i&&(a.push(\"C\"),a.push([t[n+1]+\",\"+e[n+1],t[n+2]+\",\"+e[n+2]+\" \"].join(\" \")));return a.join(r?\"\":\"L\")}},{}],918:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").isArrayOrTypedArray;e.exports=function(t,e,r){var a;for(n(t)?t.length>e.length&&(t=t.slice(0,e.length)):t=[],a=0;a<e.length;a++)t[a]=r(e[a]);return t}},{\"../../lib\":719}],919:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,a,i){var o=a[0]*t.dpdx(e),s=a[1]*t.dpdy(r),l=1,c=1;if(i){var u=Math.sqrt(a[0]*a[0]+a[1]*a[1]),h=Math.sqrt(i[0]*i[0]+i[1]*i[1]),f=(a[0]*i[0]+a[1]*i[1])/u/h;c=Math.max(0,f)}var p=180*Math.atan2(s,o)/Math.PI;return p<-90?(p+=180,l=-l):p>90&&(p-=180,l=-l),{angle:p,flip:l,p:t.c2p(n,e,r),offsetMultplier:c}}},{}],920:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/drawing\"),i=t(\"./map_1d_array\"),o=t(\"./makepath\"),s=t(\"./orient_text\"),l=t(\"../../lib/svg_text_utils\"),c=t(\"../../lib\"),u=t(\"../../constants/alignment\");function h(t,e,r,a,s,l){var c=\"const-\"+s+\"-lines\",u=r.selectAll(\".\"+c).data(l);u.enter().append(\"path\").classed(c,!0).style(\"vector-effect\",\"non-scaling-stroke\"),u.each(function(r){var a=r,s=a.x,l=a.y,c=i([],s,t.c2p),u=i([],l,e.c2p),h=\"M\"+o(c,u,a.smoothing);n.select(this).attr(\"d\",h).style(\"stroke-width\",a.width).style(\"stroke\",a.color).style(\"fill\",\"none\")}),u.exit().remove()}function f(t,e,r,i,o,c,u,h){var f=c.selectAll(\"text.\"+h).data(u);f.enter().append(\"text\").classed(h,!0);var p=0,d={};return f.each(function(o,c){var u;if(\"auto\"===o.axis.tickangle)u=s(i,e,r,o.xy,o.dxy);else{var h=(o.axis.tickangle+180)*Math.PI/180;u=s(i,e,r,o.xy,[Math.cos(h),Math.sin(h)])}c||(d={angle:u.angle,flip:u.flip});var f=(o.endAnchor?-1:1)*u.flip,g=n.select(this).attr({\"text-anchor\":f>0?\"start\":\"end\",\"data-notex\":1}).call(a.font,o.font).text(o.text).call(l.convertToTspans,t),v=a.bBox(this);g.attr(\"transform\",\"translate(\"+u.p[0]+\",\"+u.p[1]+\") rotate(\"+u.angle+\")translate(\"+o.axis.labelpadding*f+\",\"+.3*v.height+\")\"),p=Math.max(p,v.width+o.axis.labelpadding)}),f.exit().remove(),d.maxExtent=p,d}e.exports=function(t,e,r,a){var l=e.xaxis,u=e.yaxis,p=t._fullLayout._clips;c.makeTraceGroups(a,r,\"trace\").each(function(e){var r=n.select(this),a=e[0],d=a.trace,v=d.aaxis,m=d.baxis,y=c.ensureSingle(r,\"g\",\"minorlayer\"),x=c.ensureSingle(r,\"g\",\"majorlayer\"),b=c.ensureSingle(r,\"g\",\"boundarylayer\"),_=c.ensureSingle(r,\"g\",\"labellayer\");r.style(\"opacity\",d.opacity),h(l,u,x,v,\"a\",v._gridlines),h(l,u,x,m,\"b\",m._gridlines),h(l,u,y,v,\"a\",v._minorgridlines),h(l,u,y,m,\"b\",m._minorgridlines),h(l,u,b,v,\"a-boundary\",v._boundarylines),h(l,u,b,m,\"b-boundary\",m._boundarylines);var w=f(t,l,u,d,a,_,v._labels,\"a-label\"),k=f(t,l,u,d,a,_,m._labels,\"b-label\");!function(t,e,r,n,a,i,o,l){var u,h,f,p,d=c.aggNums(Math.min,null,r.a),v=c.aggNums(Math.max,null,r.a),m=c.aggNums(Math.min,null,r.b),y=c.aggNums(Math.max,null,r.b);u=.5*(d+v),h=m,f=r.ab2xy(u,h,!0),p=r.dxyda_rough(u,h),void 0===o.angle&&c.extendFlat(o,s(r,a,i,f,r.dxydb_rough(u,h)));g(t,e,r,n,f,p,r.aaxis,a,i,o,\"a-title\"),u=d,h=.5*(m+y),f=r.ab2xy(u,h,!0),p=r.dxydb_rough(u,h),void 0===l.angle&&c.extendFlat(l,s(r,a,i,f,r.dxyda_rough(u,h)));g(t,e,r,n,f,p,r.baxis,a,i,l,\"b-title\")}(t,_,d,a,l,u,w,k),function(t,e,r,n,a){var s,l,u,h,f=r.select(\"#\"+t._clipPathId);f.size()||(f=r.append(\"clipPath\").classed(\"carpetclip\",!0));var p=c.ensureSingle(f,\"path\",\"carpetboundary\"),d=e.clipsegments,g=[];for(h=0;h<d.length;h++)s=d[h],l=i([],s.x,n.c2p),u=i([],s.y,a.c2p),g.push(o(l,u,s.bicubic));var v=\"M\"+g.join(\"L\")+\"Z\";f.attr(\"id\",t._clipPathId),p.attr(\"d\",v)}(d,a,p,l,u)})};var p=u.LINE_SPACING,d=(1-u.MID_SHIFT)/p+1;function g(t,e,r,i,o,c,u,h,f,g,v){var m=[];u.title.text&&m.push(u.title.text);var y=e.selectAll(\"text.\"+v).data(m),x=g.maxExtent;y.enter().append(\"text\").classed(v,!0),y.each(function(){var e=s(r,h,f,o,c);-1===[\"start\",\"both\"].indexOf(u.showticklabels)&&(x=0);var i=u.title.font.size;x+=i+u.title.offset;var v=(g.angle+(g.flip<0?180:0)-e.angle+450)%360,m=v>90&&v<270,y=n.select(this);y.text(u.title.text).call(l.convertToTspans,t),m&&(x=(-l.lineCount(y)+d)*p*i-x),y.attr(\"transform\",\"translate(\"+e.p[0]+\",\"+e.p[1]+\") rotate(\"+e.angle+\") translate(0,\"+x+\")\").classed(\"user-select-none\",!0).attr(\"text-anchor\",\"middle\").call(a.font,u.title.font)}),y.exit().remove()}},{\"../../components/drawing\":615,\"../../constants/alignment\":688,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"./makepath\":917,\"./map_1d_array\":918,\"./orient_text\":919,d3:164}],921:[function(t,e,r){\"use strict\";var n=t(\"./constants\"),a=t(\"../../lib/search\").findBin,i=t(\"./compute_control_points\"),o=t(\"./create_spline_evaluator\"),s=t(\"./create_i_derivative_evaluator\"),l=t(\"./create_j_derivative_evaluator\");e.exports=function(t){var e=t._a,r=t._b,c=e.length,u=r.length,h=t.aaxis,f=t.baxis,p=e[0],d=e[c-1],g=r[0],v=r[u-1],m=e[e.length-1]-e[0],y=r[r.length-1]-r[0],x=m*n.RELATIVE_CULL_TOLERANCE,b=y*n.RELATIVE_CULL_TOLERANCE;p-=x,d+=x,g-=b,v+=b,t.isVisible=function(t,e){return t>p&&t<d&&e>g&&e<v},t.isOccluded=function(t,e){return t<p||t>d||e<g||e>v},t.setScale=function(){var e=t._x,r=t._y,n=i(t._xctrl,t._yctrl,e,r,h.smoothing,f.smoothing);t._xctrl=n[0],t._yctrl=n[1],t.evalxy=o([t._xctrl,t._yctrl],c,u,h.smoothing,f.smoothing),t.dxydi=s([t._xctrl,t._yctrl],h.smoothing,f.smoothing),t.dxydj=l([t._xctrl,t._yctrl],h.smoothing,f.smoothing)},t.i2a=function(t){var r=Math.max(0,Math.floor(t[0]),c-2),n=t[0]-r;return(1-n)*e[r]+n*e[r+1]},t.j2b=function(t){var e=Math.max(0,Math.floor(t[1]),c-2),n=t[1]-e;return(1-n)*r[e]+n*r[e+1]},t.ij2ab=function(e){return[t.i2a(e[0]),t.j2b(e[1])]},t.a2i=function(t){var r=Math.max(0,Math.min(a(t,e),c-2)),n=e[r],i=e[r+1];return Math.max(0,Math.min(c-1,r+(t-n)/(i-n)))},t.b2j=function(t){var e=Math.max(0,Math.min(a(t,r),u-2)),n=r[e],i=r[e+1];return Math.max(0,Math.min(u-1,e+(t-n)/(i-n)))},t.ab2ij=function(e){return[t.a2i(e[0]),t.b2j(e[1])]},t.i2c=function(e,r){return t.evalxy([],e,r)},t.ab2xy=function(n,a,i){if(!i&&(n<e[0]||n>e[c-1]|a<r[0]||a>r[u-1]))return[!1,!1];var o=t.a2i(n),s=t.b2j(a),l=t.evalxy([],o,s);if(i){var h,f,p,d,g=0,v=0,m=[];n<e[0]?(h=0,f=0,g=(n-e[0])/(e[1]-e[0])):n>e[c-1]?(h=c-2,f=1,g=(n-e[c-1])/(e[c-1]-e[c-2])):f=o-(h=Math.max(0,Math.min(c-2,Math.floor(o)))),a<r[0]?(p=0,d=0,v=(a-r[0])/(r[1]-r[0])):a>r[u-1]?(p=u-2,d=1,v=(a-r[u-1])/(r[u-1]-r[u-2])):d=s-(p=Math.max(0,Math.min(u-2,Math.floor(s)))),g&&(t.dxydi(m,h,p,f,d),l[0]+=m[0]*g,l[1]+=m[1]*g),v&&(t.dxydj(m,h,p,f,d),l[0]+=m[0]*v,l[1]+=m[1]*v)}return l},t.c2p=function(t,e,r){return[e.c2p(t[0]),r.c2p(t[1])]},t.p2x=function(t,e,r){return[e.p2c(t[0]),r.p2c(t[1])]},t.dadi=function(t){var r=Math.max(0,Math.min(e.length-2,t));return e[r+1]-e[r]},t.dbdj=function(t){var e=Math.max(0,Math.min(r.length-2,t));return r[e+1]-r[e]},t.dxyda=function(e,r,n,a){var i=t.dxydi(null,e,r,n,a),o=t.dadi(e,n);return[i[0]/o,i[1]/o]},t.dxydb=function(e,r,n,a){var i=t.dxydj(null,e,r,n,a),o=t.dbdj(r,a);return[i[0]/o,i[1]/o]},t.dxyda_rough=function(e,r,n){var a=m*(n||.1),i=t.ab2xy(e+a,r,!0),o=t.ab2xy(e-a,r,!0);return[.5*(i[0]-o[0])/a,.5*(i[1]-o[1])/a]},t.dxydb_rough=function(e,r,n){var a=y*(n||.1),i=t.ab2xy(e,r+a,!0),o=t.ab2xy(e,r-a,!0);return[.5*(i[0]-o[0])/a,.5*(i[1]-o[1])/a]},t.dpdx=function(t){return t._m},t.dpdy=function(t){return t._m}}},{\"../../lib/search\":738,\"./compute_control_points\":909,\"./constants\":910,\"./create_i_derivative_evaluator\":911,\"./create_j_derivative_evaluator\":912,\"./create_spline_evaluator\":913}],922:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e,r){var a,i,o,s=[],l=[],c=t[0].length,u=t.length;function h(e,r){var n,a=0,i=0;return e>0&&void 0!==(n=t[r][e-1])&&(i++,a+=n),e<c-1&&void 0!==(n=t[r][e+1])&&(i++,a+=n),r>0&&void 0!==(n=t[r-1][e])&&(i++,a+=n),r<u-1&&void 0!==(n=t[r+1][e])&&(i++,a+=n),a/Math.max(1,i)}var f,p,d,g,v,m,y,x,b,_,w,k=0;for(a=0;a<c;a++)for(i=0;i<u;i++)void 0===t[i][a]&&(s.push(a),l.push(i),t[i][a]=h(a,i)),k=Math.max(k,Math.abs(t[i][a]));if(!s.length)return t;var T=0,A=0,M=s.length;do{for(T=0,o=0;o<M;o++){a=s[o],i=l[o];var S,E,C,L,P,O,I=0,z=0;0===a?(C=e[P=Math.min(c-1,2)],L=e[1],S=t[i][P],z+=(E=t[i][1])+(E-S)*(e[0]-L)/(L-C),I++):a===c-1&&(C=e[P=Math.max(0,c-3)],L=e[c-2],S=t[i][P],z+=(E=t[i][c-2])+(E-S)*(e[c-1]-L)/(L-C),I++),(0===a||a===c-1)&&i>0&&i<u-1&&(f=r[i+1]-r[i],z+=((p=r[i]-r[i-1])*t[i+1][a]+f*t[i-1][a])/(p+f),I++),0===i?(C=r[O=Math.min(u-1,2)],L=r[1],S=t[O][a],z+=(E=t[1][a])+(E-S)*(r[0]-L)/(L-C),I++):i===u-1&&(C=r[O=Math.max(0,u-3)],L=r[u-2],S=t[O][a],z+=(E=t[u-2][a])+(E-S)*(r[u-1]-L)/(L-C),I++),(0===i||i===u-1)&&a>0&&a<c-1&&(f=e[a+1]-e[a],z+=((p=e[a]-e[a-1])*t[i][a+1]+f*t[i][a-1])/(p+f),I++),I?z/=I:(d=e[a+1]-e[a],g=e[a]-e[a-1],x=(v=r[i+1]-r[i])*(m=r[i]-r[i-1])*(v+m),z=((y=d*g*(d+g))*(m*t[i+1][a]+v*t[i-1][a])+x*(g*t[i][a+1]+d*t[i][a-1]))/(x*(g+d)+y*(m+v))),T+=(_=(b=z-t[i][a])/k)*_,w=I?0:.85,t[i][a]+=b*(1+w)}T=Math.sqrt(T)}while(A++<100&&T>1e-5);return n.log(\"Smoother converged to\",T,\"after\",A,\"iterations\"),t}},{\"../../lib\":719}],923:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").isArray1D;e.exports=function(t,e,r){var a=r(\"x\"),i=a&&a.length,o=r(\"y\"),s=o&&o.length;if(!i&&!s)return!1;if(e._cheater=!a,i&&!n(a)||s&&!n(o))e._length=null;else{var l=i?a.length:1/0;s&&(l=Math.min(l,o.length)),e.a&&e.a.length&&(l=Math.min(l,e.a.length)),e.b&&e.b.length&&(l=Math.min(l,e.b.length)),e._length=l}return!0}},{\"../../lib\":719}],924:[function(t,e,r){\"use strict\";var n=t(\"../../plots/template_attributes\").hovertemplateAttrs,a=t(\"../scattergeo/attributes\"),i=t(\"../../components/colorscale/attributes\"),o=t(\"../../plots/attributes\"),s=t(\"../../components/color/attributes\").defaultLine,l=t(\"../../lib/extend\").extendFlat,c=a.marker.line;e.exports=l({locations:{valType:\"data_array\",editType:\"calc\"},locationmode:a.locationmode,z:{valType:\"data_array\",editType:\"calc\"},text:l({},a.text,{}),hovertext:l({},a.hovertext,{}),marker:{line:{color:l({},c.color,{dflt:s}),width:l({},c.width,{dflt:1}),editType:\"calc\"},opacity:{valType:\"number\",arrayOk:!0,min:0,max:1,dflt:1,editType:\"style\"},editType:\"calc\"},selected:{marker:{opacity:a.selected.marker.opacity,editType:\"plot\"},editType:\"plot\"},unselected:{marker:{opacity:a.unselected.marker.opacity,editType:\"plot\"},editType:\"plot\"},hoverinfo:l({},o.hoverinfo,{editType:\"calc\",flags:[\"location\",\"z\",\"text\",\"name\"]}),hovertemplate:n()},i(\"\",{cLetter:\"z\",editTypeOverride:\"calc\"}))},{\"../../components/color/attributes\":593,\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plots/attributes\":764,\"../../plots/template_attributes\":843,\"../scattergeo/attributes\":1150}],925:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../constants/numerical\").BADNUM,i=t(\"../../components/colorscale/calc\"),o=t(\"../scatter/arrays_to_calcdata\"),s=t(\"../scatter/calc_selection\");function l(t){return t&&\"string\"==typeof t}e.exports=function(t,e){var r,c=e._length,u=new Array(c);r=e.geojson?function(t){return l(t)||n(t)}:l;for(var h=0;h<c;h++){var f=u[h]={},p=e.locations[h],d=e.z[h];r(p)&&n(d)?(f.loc=p,f.z=d):(f.loc=null,f.z=a),f.index=h}return o(u,e),i(t,e,{vals:e.z,containerStr:\"\",cLetter:\"z\"}),s(u,e),u}},{\"../../components/colorscale/calc\":602,\"../../constants/numerical\":695,\"../scatter/arrays_to_calcdata\":1110,\"../scatter/calc_selection\":1113,\"fast-isnumeric\":226}],926:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/colorscale/defaults\"),i=t(\"./attributes\");e.exports=function(t,e,r,o){function s(r,a){return n.coerce(t,e,i,r,a)}var l=s(\"locations\"),c=s(\"z\");l&&l.length&&n.isArrayOrTypedArray(c)&&c.length?(e._length=Math.min(l.length,c.length),s(\"locationmode\"),s(\"text\"),s(\"hovertext\"),s(\"hovertemplate\"),s(\"marker.line.width\")&&s(\"marker.line.color\"),s(\"marker.opacity\"),a(t,e,o,s,{prefix:\"\",cLetter:\"z\"}),n.coerceSelectionMarkerOpacity(e,s)):e.visible=!1}},{\"../../components/colorscale/defaults\":604,\"../../lib\":719,\"./attributes\":924}],927:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,a){t.location=e.location,t.z=e.z;var i=n[a];return i.fIn&&(t.properties=i.fIn.properties),t}},{}],928:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),a=t(\"./attributes\"),i=t(\"../../lib\").fillText;e.exports=function(t,e,r){var o,s,l,c,u=t.cd,h=u[0].trace,f=t.subplot;for(s=0;s<u.length;s++)if(c=!1,(o=u[s])._polygons){for(l=0;l<o._polygons.length;l++)o._polygons[l].contains([e,r])&&(c=!c),o._polygons[l].contains([e+360,r])&&(c=!c);if(c)break}if(c&&o)return t.x0=t.x1=t.xa.c2p(o.ct),t.y0=t.y1=t.ya.c2p(o.ct),t.index=o.index,t.location=o.loc,t.z=o.z,t.zLabel=n.tickText(f.mockAxis,f.mockAxis.c2l(o.z),\"hover\").text,t.hovertemplate=o.hovertemplate,function(t,e,r){if(e.hovertemplate)return;var n=r.hi||e.hoverinfo,o=String(r.loc),s=\"all\"===n?a.hoverinfo.flags:n.split(\"+\"),l=-1!==s.indexOf(\"name\"),c=-1!==s.indexOf(\"location\"),u=-1!==s.indexOf(\"z\"),h=-1!==s.indexOf(\"text\"),f=[];!l&&c?t.nameOverride=o:(l&&(t.nameOverride=e.name),c&&f.push(o));u&&f.push(t.zLabel);h&&i(r,e,f);t.extraText=f.join(\"<br>\")}(t,h,o,f.mockAxis),[t]}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"./attributes\":924}],929:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../heatmap/colorbar\"),calc:t(\"./calc\"),plot:t(\"./plot\").plot,style:t(\"./style\").style,styleOnSelect:t(\"./style\").styleOnSelect,hoverPoints:t(\"./hover\"),eventData:t(\"./event_data\"),selectPoints:t(\"./select\"),moduleType:\"trace\",name:\"choropleth\",basePlotModule:t(\"../../plots/geo\"),categories:[\"geo\",\"noOpacity\"],meta:{}}},{\"../../plots/geo\":797,\"../heatmap/colorbar\":1003,\"./attributes\":924,\"./calc\":925,\"./defaults\":926,\"./event_data\":927,\"./hover\":928,\"./plot\":930,\"./select\":931,\"./style\":932}],930:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../lib\"),i=t(\"../../lib/polygon\"),o=t(\"../../lib/topojson_utils\").getTopojsonFeatures,s=t(\"../../lib/geo_location_utils\").locationToFeature,l=t(\"./style\").style;function c(t,e){for(var r=t[0].trace,n=t.length,a=o(r,e),i=0;i<n;i++){var l=t[i],c=s(r.locationmode,l.loc,a);c?(l.geojson=c,l.ct=c.properties.ct,l._polygons=u(c)):l.geojson=null}}function u(t){var e,r,n,a,o=t.geometry,s=o.coordinates,l=t.id,c=[];function u(t){for(var e=0;e<t.length-1;e++)if(t[e][0]>0&&t[e+1][0]<0)return e;return null}switch(e=\"RUS\"===l||\"FJI\"===l?function(t){var e;if(null===u(t))e=t;else for(e=new Array(t.length),a=0;a<t.length;a++)e[a]=[t[a][0]<0?t[a][0]+360:t[a][0],t[a][1]];c.push(i.tester(e))}:\"ATA\"===l?function(t){var e=u(t);if(null===e)return c.push(i.tester(t));var r=new Array(t.length+1),n=0;for(a=0;a<t.length;a++)a>e?r[n++]=[t[a][0]+360,t[a][1]]:a===e?(r[n++]=t[a],r[n++]=[t[a][0],-90]):r[n++]=t[a];var o=i.tester(r);o.pts.pop(),c.push(o)}:function(t){c.push(i.tester(t))},o.type){case\"MultiPolygon\":for(r=0;r<s.length;r++)for(n=0;n<s[r].length;n++)e(s[r][n]);break;case\"Polygon\":for(r=0;r<s.length;r++)e(s[r])}return c}e.exports={plot:function(t,e,r){for(var i=0;i<r.length;i++)c(r[i],e.topojson);var o=e.layers.backplot.select(\".choroplethlayer\");a.makeTraceGroups(o,r,\"trace choropleth\").each(function(e){var r=n.select(this).selectAll(\"path.choroplethlocation\").data(a.identity);r.enter().append(\"path\").classed(\"choroplethlocation\",!0),r.exit().remove(),l(t,e)})},feature2polygons:u}},{\"../../lib\":719,\"../../lib/geo_location_utils\":713,\"../../lib/polygon\":731,\"../../lib/topojson_utils\":746,\"./style\":932,d3:164}],931:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r,n,a,i,o,s=t.cd,l=t.xaxis,c=t.yaxis,u=[];if(!1===e)for(r=0;r<s.length;r++)s[r].selected=0;else for(r=0;r<s.length;r++)(a=(n=s[r]).ct)&&(i=l.c2p(a),o=c.c2p(a),e.contains([i,o],null,r,t)?(u.push({pointNumber:r,lon:a[0],lat:a[1]}),n.selected=1):n.selected=0);return u}},{}],932:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/color\"),i=t(\"../../components/drawing\"),o=t(\"../../components/colorscale\");function s(t,e){var r=e[0].trace,s=e[0].node3.selectAll(\".choroplethlocation\"),l=r.marker||{},c=l.line||{},u=o.makeColorScaleFuncFromTrace(r);s.each(function(t){n.select(this).attr(\"fill\",u(t.z)).call(a.stroke,t.mlc||c.color).call(i.dashLine,\"\",t.mlw||c.width||0).style(\"opacity\",l.opacity)}),i.selectedPointStyle(s,r,t)}e.exports={style:function(t,e){e&&s(t,e)},styleOnSelect:function(t,e){var r=e[0].node3,n=e[0].trace;n.selectedpoints?i.selectedPointStyle(r.selectAll(\".choroplethlocation\"),n,t):s(t,e)}}},{\"../../components/color\":594,\"../../components/colorscale\":606,\"../../components/drawing\":615,d3:164}],933:[function(t,e,r){\"use strict\";var n=t(\"../choropleth/attributes\"),a=t(\"../../components/colorscale/attributes\"),i=t(\"../../plots/template_attributes\").hovertemplateAttrs,o=t(\"../../lib/extend\").extendFlat;e.exports=o({locations:{valType:\"data_array\",editType:\"calc\"},z:{valType:\"data_array\",editType:\"calc\"},geojson:{valType:\"any\",editType:\"calc\"},below:{valType:\"string\",editType:\"plot\"},text:n.text,hovertext:n.hovertext,marker:{line:{color:o({},n.marker.line.color,{editType:\"plot\"}),width:o({},n.marker.line.width,{editType:\"plot\"}),editType:\"calc\"},opacity:o({},n.marker.opacity,{editType:\"plot\"}),editType:\"calc\"},selected:{marker:{opacity:o({},n.selected.marker.opacity,{editType:\"plot\"}),editType:\"plot\"},editType:\"plot\"},unselected:{marker:{opacity:o({},n.unselected.marker.opacity,{editType:\"plot\"}),editType:\"plot\"},editType:\"plot\"},hoverinfo:n.hoverinfo,hovertemplate:i({},{keys:[\"properties\"]})},a(\"\",{cLetter:\"z\",editTypeOverride:\"calc\"}))},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plots/template_attributes\":843,\"../choropleth/attributes\":924}],934:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"@turf/area\"),i=t(\"@turf/centroid\"),o=t(\"../../lib\"),s=t(\"../../components/colorscale\"),l=t(\"../../components/drawing\"),c=t(\"../../lib/geojson_utils\").makeBlank,u=t(\"../choropleth/plot\").feature2polygons;function h(t){var e,r=t[0].trace,n=r._opts;if(r.selectedpoints){for(var a=l.makeSelectedPointStyleFns(r),i=0;i<t.length;i++){var s=t[i];s.fOut&&(s.fOut.properties.mo2=a.selectedOpacityFn(s))}e={type:\"identity\",property:\"mo2\"}}else e=o.isArrayOrTypedArray(r.marker.opacity)?{type:\"identity\",property:\"mo\"}:r.marker.opacity;return o.extendFlat(n.fill.paint,{\"fill-opacity\":e}),o.extendFlat(n.line.paint,{\"line-opacity\":e}),n}e.exports={convert:function(t){var e=t[0].trace,r=!0===e.visible&&0!==e._length,l={layout:{visibility:\"none\"},paint:{}},f={layout:{visibility:\"none\"},paint:{}},p=e._opts={fill:l,line:f,geojson:c()};if(!r)return p;var d=\"string\"==typeof e.geojson?(window.PlotlyGeoAssets||{})[e.geojson]:e.geojson;if(!o.isPlainObject(d))return o.error(\"Oops ... something when wrong when fetching \"+e.geojson),p;var g,v={},m=[];for(g=0;g<t.length;g++){var y=t[g];y.loc&&(v[y.loc]=y)}var x,b,_,w=s.makeColorScaleFuncFromTrace(e),k=e.marker,T=k.line||{};function A(t){var e=v[t.id];if(e){var r=t.geometry;if(\"Polygon\"===r.type||\"MultiPolygon\"===r.type){var n={fc:w(e.z)};x&&(n.mo=x(e)),b&&(n.mlc=b(e)),_&&(n.mlw=_(e));var s={type:\"Feature\",geometry:r,properties:n};e._polygons=u(s),e.ct=function(t){var e,r=t.geometry;if(\"MultiPolygon\"===r.type)for(var n=r.coordinates,o=0,s=0;s<n.length;s++){var l={type:\"Polygon\",coordinates:n[s]},c=a.default(l);c>o&&(o=c,e=l)}else e=r;return i.default(e).geometry.coordinates}(s),e.fIn=t,e.fOut=s,m.push(s)}else o.log([\"Location with id\",e.loc,\"does not have a valid GeoJSON geometry,\",\"choroplethmapbox traces only support *Polygon* and *MultiPolygon* geometries.\"].join(\" \"))}delete v[t.id]}switch(o.isArrayOrTypedArray(k.opacity)&&(x=function(t){var e=t.mo;return n(e)?+o.constrain(e,0,1):0}),o.isArrayOrTypedArray(T.color)&&(b=function(t){return t.mlc}),o.isArrayOrTypedArray(T.width)&&(_=function(t){return t.mlw}),d.type){case\"FeatureCollection\":var M=d.features;for(g=0;g<M.length;g++)A(M[g]);break;case\"Feature\":A(d);break;default:return o.warn([\"Invalid GeoJSON type\",(d.type||\"none\")+\",\",\"choroplethmapbox traces only support *FeatureCollection* and *Feature* types.\"].join(\" \")),p}for(var S in v)o.log(\"Location with id \"+S+\" does not have a matching feature\");var E=x?{type:\"identity\",property:\"mo\"}:k.opacity;return o.extendFlat(l.paint,{\"fill-color\":{type:\"identity\",property:\"fc\"},\"fill-opacity\":E}),o.extendFlat(f.paint,{\"line-color\":b?{type:\"identity\",property:\"mlc\"}:T.color,\"line-width\":_?{type:\"identity\",property:\"mlw\"}:T.width,\"line-opacity\":E}),l.layout.visibility=\"visible\",f.layout.visibility=\"visible\",p.geojson={type:\"FeatureCollection\",features:m},h(t),p},convertOnSelect:h}},{\"../../components/colorscale\":606,\"../../components/drawing\":615,\"../../lib\":719,\"../../lib/geojson_utils\":714,\"../choropleth/plot\":930,\"@turf/area\":56,\"@turf/centroid\":57,\"fast-isnumeric\":226}],935:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/colorscale/defaults\"),i=t(\"./attributes\");e.exports=function(t,e,r,o){function s(r,a){return n.coerce(t,e,i,r,a)}var l=s(\"locations\"),c=s(\"z\"),u=s(\"geojson\");n.isArrayOrTypedArray(l)&&l.length&&n.isArrayOrTypedArray(c)&&c.length&&(\"string\"==typeof u&&\"\"!==u||n.isPlainObject(u))?(e._length=Math.min(l.length,c.length),s(\"below\"),s(\"text\"),s(\"hovertext\"),s(\"hovertemplate\"),s(\"marker.line.width\")&&s(\"marker.line.color\"),s(\"marker.opacity\"),a(t,e,o,s,{prefix:\"\",cLetter:\"z\"}),n.coerceSelectionMarkerOpacity(e,s)):e.visible=!1}},{\"../../components/colorscale/defaults\":604,\"../../lib\":719,\"./attributes\":933}],936:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../heatmap/colorbar\"),calc:t(\"../choropleth/calc\"),plot:t(\"./plot\"),hoverPoints:t(\"../choropleth/hover\"),eventData:t(\"../choropleth/event_data\"),selectPoints:t(\"../choropleth/select\"),styleOnSelect:function(t,e){e&&e[0].trace._glTrace.updateOnSelect(e)},getBelow:function(t,e){for(var r=e.getMapLayers(),n=r.length-2;n>=0;n--){var a=r[n].id;if(\"string\"==typeof a&&0===a.indexOf(\"water\"))for(var i=n+1;i<r.length;i++)if(\"string\"==typeof(a=r[i].id)&&-1===a.indexOf(\"plotly-\"))return a}},moduleType:\"trace\",name:\"choroplethmapbox\",basePlotModule:t(\"../../plots/mapbox\"),categories:[\"mapbox\",\"gl\",\"noOpacity\"],meta:{hr_name:\"choropleth_mapbox\"}}},{\"../../plots/mapbox\":822,\"../choropleth/calc\":925,\"../choropleth/event_data\":927,\"../choropleth/hover\":928,\"../choropleth/select\":931,\"../heatmap/colorbar\":1003,\"./attributes\":933,\"./defaults\":935,\"./plot\":937}],937:[function(t,e,r){\"use strict\";var n=t(\"./convert\").convert,a=t(\"./convert\").convertOnSelect,i=t(\"../../plots/mapbox/constants\").traceLayerPrefix;function o(t,e){this.subplot=t,this.uid=e,this.sourceId=\"source-\"+e,this.layerList=[[\"fill\",i+e+\"-fill\"],[\"line\",i+e+\"-line\"]],this.below=null}var s=o.prototype;s.update=function(t){this._update(n(t))},s.updateOnSelect=function(t){this._update(a(t))},s._update=function(t){var e=this.subplot,r=this.layerList,n=e.belowLookup[\"trace-\"+this.uid];e.map.getSource(this.sourceId).setData(t.geojson),n!==this.below&&(this._removeLayers(),this._addLayers(t,n),this.below=n);for(var a=0;a<r.length;a++){var i=r[a],o=i[0],s=i[1],l=t[o];e.setOptions(s,\"setLayoutProperty\",l.layout),\"visible\"===l.layout.visibility&&e.setOptions(s,\"setPaintProperty\",l.paint)}},s._addLayers=function(t,e){for(var r=this.subplot,n=this.layerList,a=this.sourceId,i=0;i<n.length;i++){var o=n[i],s=o[0],l=t[s];r.addLayer({type:s,id:o[1],source:a,layout:l.layout,paint:l.paint},e)}},s._removeLayers=function(){for(var t=this.subplot.map,e=this.layerList,r=e.length-1;r>=0;r--)t.removeLayer(e[r][1])},s.dispose=function(){var t=this.subplot.map;this._removeLayers(),t.removeSource(this.sourceId)},e.exports=function(t,e){var r=e[0].trace,a=new o(t,r.uid),i=a.sourceId,s=n(e),l=a.below=t.belowLookup[\"trace-\"+r.uid];return t.map.addSource(i,{type:\"geojson\",data:s.geojson}),a._addLayers(s,l),e[0].trace._glTrace=a,a}},{\"../../plots/mapbox/constants\":820,\"./convert\":934}],938:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/attributes\"),a=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"../mesh3d/attributes\"),o=t(\"../../plots/attributes\"),s=t(\"../../lib/extend\").extendFlat,l={x:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},y:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},z:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},u:{valType:\"data_array\",editType:\"calc\"},v:{valType:\"data_array\",editType:\"calc\"},w:{valType:\"data_array\",editType:\"calc\"},sizemode:{valType:\"enumerated\",values:[\"scaled\",\"absolute\"],editType:\"calc\",dflt:\"scaled\"},sizeref:{valType:\"number\",editType:\"calc\",min:0},anchor:{valType:\"enumerated\",editType:\"calc\",values:[\"tip\",\"tail\",\"cm\",\"center\"],dflt:\"cm\"},text:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"calc\"},hovertext:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"calc\"},hovertemplate:a({editType:\"calc\"},{keys:[\"norm\"]})};s(l,n(\"\",{colorAttr:\"u/v/w norm\",showScaleDflt:!0,editTypeOverride:\"calc\"}));[\"opacity\",\"lightposition\",\"lighting\"].forEach(function(t){l[t]=i[t]}),l.hoverinfo=s({},o.hoverinfo,{editType:\"calc\",flags:[\"x\",\"y\",\"z\",\"u\",\"v\",\"w\",\"norm\",\"text\",\"name\"],dflt:\"x+y+z+norm+text+name\"}),l.transforms=void 0,e.exports=l},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plots/attributes\":764,\"../../plots/template_attributes\":843,\"../mesh3d/attributes\":1052}],939:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/calc\");e.exports=function(t,e){for(var r=e.u,a=e.v,i=e.w,o=Math.min(e.x.length,e.y.length,e.z.length,r.length,a.length,i.length),s=-1/0,l=1/0,c=0;c<o;c++){var u=r[c],h=a[c],f=i[c],p=Math.sqrt(u*u+h*h+f*f);s=Math.max(s,p),l=Math.min(l,p)}e._len=o,e._normMax=s,n(t,e,{vals:[l,s],containerStr:\"\",cLetter:\"c\"})}},{\"../../components/colorscale/calc\":602}],940:[function(t,e,r){\"use strict\";var n=t(\"gl-cone3d\"),a=t(\"gl-cone3d\").createConeMesh,i=t(\"../../lib\").simpleMap,o=t(\"../../lib/gl_format_color\").parseColorScale,s=t(\"../../components/colorscale\").extractOpts,l=t(\"../../plots/gl3d/zip3\");function c(t,e){this.scene=t,this.uid=e,this.mesh=null,this.data=null}var u=c.prototype;u.handlePick=function(t){if(t.object===this.mesh){var e=t.index=t.data.index,r=this.data.x[e],n=this.data.y[e],a=this.data.z[e],i=this.data.u[e],o=this.data.v[e],s=this.data.w[e];t.traceCoordinate=[r,n,a,i,o,s,Math.sqrt(i*i+o*o+s*s)];var l=this.data.hovertext||this.data.text;return Array.isArray(l)&&void 0!==l[e]?t.textLabel=l[e]:l&&(t.textLabel=l),!0}};var h={xaxis:0,yaxis:1,zaxis:2},f={tip:1,tail:0,cm:.25,center:.5},p={tip:1,tail:1,cm:.75,center:.5};function d(t,e){var r=t.fullSceneLayout,a=t.dataScale,c={};function u(t,e){var n=r[e],o=a[h[e]];return i(t,function(t){return n.d2l(t)*o})}c.vectors=l(u(e.u,\"xaxis\"),u(e.v,\"yaxis\"),u(e.w,\"zaxis\"),e._len),c.positions=l(u(e.x,\"xaxis\"),u(e.y,\"yaxis\"),u(e.z,\"zaxis\"),e._len);var d=s(e);c.colormap=o(e),c.vertexIntensityBounds=[d.min/e._normMax,d.max/e._normMax],c.coneOffset=f[e.anchor],\"scaled\"===e.sizemode?c.coneSize=e.sizeref||.5:c.coneSize=e.sizeref&&e._normMax?e.sizeref/e._normMax:.5;var g=n(c),v=e.lightposition;return g.lightPosition=[v.x,v.y,v.z],g.ambient=e.lighting.ambient,g.diffuse=e.lighting.diffuse,g.specular=e.lighting.specular,g.roughness=e.lighting.roughness,g.fresnel=e.lighting.fresnel,g.opacity=e.opacity,e._pad=p[e.anchor]*g.vectorScale*g.coneScale*e._normMax,g}u.update=function(t){this.data=t;var e=d(this.scene,t);this.mesh.update(e)},u.dispose=function(){this.scene.glplot.remove(this.mesh),this.mesh.dispose()},e.exports=function(t,e){var r=t.glplot.gl,n=d(t,e),i=a(r,n),o=new c(t,e.uid);return o.mesh=i,o.data=e,i._trace=o,t.glplot.add(i),o}},{\"../../components/colorscale\":606,\"../../lib\":719,\"../../lib/gl_format_color\":716,\"../../plots/gl3d/zip3\":818,\"gl-cone3d\":243}],941:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/colorscale/defaults\"),i=t(\"./attributes\");e.exports=function(t,e,r,o){function s(r,a){return n.coerce(t,e,i,r,a)}var l=s(\"u\"),c=s(\"v\"),u=s(\"w\"),h=s(\"x\"),f=s(\"y\"),p=s(\"z\");l&&l.length&&c&&c.length&&u&&u.length&&h&&h.length&&f&&f.length&&p&&p.length?(s(\"sizeref\"),s(\"sizemode\"),s(\"anchor\"),s(\"lighting.ambient\"),s(\"lighting.diffuse\"),s(\"lighting.specular\"),s(\"lighting.roughness\"),s(\"lighting.fresnel\"),s(\"lightposition.x\"),s(\"lightposition.y\"),s(\"lightposition.z\"),a(t,e,o,s,{prefix:\"\",cLetter:\"c\"}),s(\"text\"),s(\"hovertext\"),s(\"hovertemplate\"),e._length=null):e.visible=!1}},{\"../../components/colorscale/defaults\":604,\"../../lib\":719,\"./attributes\":938}],942:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"cone\",basePlotModule:t(\"../../plots/gl3d\"),categories:[\"gl3d\"],attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:{min:\"cmin\",max:\"cmax\"},calc:t(\"./calc\"),plot:t(\"./convert\"),eventData:function(t,e){return t.norm=e.traceCoordinate[6],t},meta:{}}},{\"../../plots/gl3d\":807,\"./attributes\":938,\"./calc\":939,\"./convert\":940,\"./defaults\":941}],943:[function(t,e,r){\"use strict\";var n=t(\"../heatmap/attributes\"),a=t(\"../scatter/attributes\"),i=t(\"../../components/colorscale/attributes\"),o=t(\"../../components/drawing/attributes\").dash,s=t(\"../../plots/font_attributes\"),l=t(\"../../lib/extend\").extendFlat,c=t(\"../../constants/filter_ops\"),u=c.COMPARISON_OPS2,h=c.INTERVAL_OPS,f=(t(\"../../constants/docs\").FORMAT_LINK,a.line);e.exports=l({z:n.z,x:n.x,x0:n.x0,dx:n.dx,y:n.y,y0:n.y0,dy:n.dy,text:n.text,hovertext:n.hovertext,transpose:n.transpose,xtype:n.xtype,ytype:n.ytype,zhoverformat:n.zhoverformat,hovertemplate:n.hovertemplate,connectgaps:n.connectgaps,fillcolor:{valType:\"color\",editType:\"calc\"},autocontour:{valType:\"boolean\",dflt:!0,editType:\"calc\",impliedEdits:{\"contours.start\":void 0,\"contours.end\":void 0,\"contours.size\":void 0}},ncontours:{valType:\"integer\",dflt:15,min:1,editType:\"calc\"},contours:{type:{valType:\"enumerated\",values:[\"levels\",\"constraint\"],dflt:\"levels\",editType:\"calc\"},start:{valType:\"number\",dflt:null,editType:\"plot\",impliedEdits:{\"^autocontour\":!1}},end:{valType:\"number\",dflt:null,editType:\"plot\",impliedEdits:{\"^autocontour\":!1}},size:{valType:\"number\",dflt:null,min:0,editType:\"plot\",impliedEdits:{\"^autocontour\":!1}},coloring:{valType:\"enumerated\",values:[\"fill\",\"heatmap\",\"lines\",\"none\"],dflt:\"fill\",editType:\"calc\"},showlines:{valType:\"boolean\",dflt:!0,editType:\"plot\"},showlabels:{valType:\"boolean\",dflt:!1,editType:\"plot\"},labelfont:s({editType:\"plot\",colorEditType:\"style\"}),labelformat:{valType:\"string\",dflt:\"\",editType:\"plot\"},operation:{valType:\"enumerated\",values:[].concat(u).concat(h),dflt:\"=\",editType:\"calc\"},value:{valType:\"any\",dflt:0,editType:\"calc\"},editType:\"calc\",impliedEdits:{autocontour:!1}},line:{color:l({},f.color,{editType:\"style+colorbars\"}),width:{valType:\"number\",min:0,editType:\"style+colorbars\"},dash:o,smoothing:l({},f.smoothing,{}),editType:\"plot\"}},i(\"\",{cLetter:\"z\",autoColorDflt:!1,editTypeOverride:\"calc\"}))},{\"../../components/colorscale/attributes\":601,\"../../components/drawing/attributes\":614,\"../../constants/docs\":690,\"../../constants/filter_ops\":691,\"../../lib/extend\":710,\"../../plots/font_attributes\":793,\"../heatmap/attributes\":1e3,\"../scatter/attributes\":1111}],944:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale\"),a=t(\"../heatmap/calc\"),i=t(\"./set_contours\"),o=t(\"./end_plus\");e.exports=function(t,e){var r=a(t,e),s=r[0].z;i(e,s);var l,c=e.contours,u=n.extractOpts(e);if(\"heatmap\"===c.coloring&&u.auto&&!1===e.autocontour){var h=c.start,f=o(c),p=c.size||1,d=Math.floor((f-h)/p)+1;isFinite(p)||(p=1,d=1);var g=h-p/2;l=[g,g+d*p]}else l=s;return n.calc(t,e,{vals:l,cLetter:\"z\"}),r}},{\"../../components/colorscale\":606,\"../heatmap/calc\":1001,\"./end_plus\":954,\"./set_contours\":962}],945:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r,n=t[0],a=n.z;switch(e.type){case\"levels\":var i=Math.min(a[0][0],a[0][1]);for(r=0;r<t.length;r++){var o=t[r];o.prefixBoundary=!o.edgepaths.length&&(i>o.level||o.starts.length&&i===o.level)}break;case\"constraint\":if(n.prefixBoundary=!1,n.edgepaths.length)return;var s=n.x.length,l=n.y.length,c=-1/0,u=1/0;for(r=0;r<l;r++)u=Math.min(u,a[r][0]),u=Math.min(u,a[r][s-1]),c=Math.max(c,a[r][0]),c=Math.max(c,a[r][s-1]);for(r=1;r<s-1;r++)u=Math.min(u,a[0][r]),u=Math.min(u,a[l-1][r]),c=Math.max(c,a[0][r]),c=Math.max(c,a[l-1][r]);var h,f,p=e.value;switch(e._operation){case\">\":p>c&&(n.prefixBoundary=!0);break;case\"<\":(p<u||n.starts.length&&p===u)&&(n.prefixBoundary=!0);break;case\"[]\":h=Math.min(p[0],p[1]),((f=Math.max(p[0],p[1]))<u||h>c||n.starts.length&&f===u)&&(n.prefixBoundary=!0);break;case\"][\":h=Math.min(p[0],p[1]),f=Math.max(p[0],p[1]),h<u&&f>c&&(n.prefixBoundary=!0)}}}},{}],946:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale\").extractOpts,a=t(\"./make_color_map\"),i=t(\"./end_plus\");e.exports={min:\"zmin\",max:\"zmax\",calc:function(t,e,r){var o=e.contours,s=e.line,l=o.size||1,c=o.coloring,u=a(e,{isColorbar:!0});if(\"heatmap\"===c){var h=n(e);r._fillgradient=e.colorscale,r._zrange=[h.min,h.max]}else\"fill\"===c&&(r._fillcolor=u);r._line={color:\"lines\"===c?u:s.color,width:!1!==o.showlines?s.width:0,dash:s.dash},r._levels={start:o.start,end:i(o),size:l}}}},{\"../../components/colorscale\":606,\"./end_plus\":954,\"./make_color_map\":959}],947:[function(t,e,r){\"use strict\";e.exports={BOTTOMSTART:[1,9,13,104,713],TOPSTART:[4,6,7,104,713],LEFTSTART:[8,12,14,208,1114],RIGHTSTART:[2,3,11,208,1114],NEWDELTA:[null,[-1,0],[0,-1],[-1,0],[1,0],null,[0,-1],[-1,0],[0,1],[0,1],null,[0,1],[1,0],[1,0],[0,-1]],CHOOSESADDLE:{104:[4,1],208:[2,8],713:[7,13],1114:[11,14]},SADDLEREMAINDER:{1:4,2:8,4:1,7:13,8:2,11:14,13:7,14:11},LABELDISTANCE:2,LABELINCREASE:10,LABELMIN:3,LABELMAX:10,LABELOPTIMIZER:{EDGECOST:1,ANGLECOST:1,NEIGHBORCOST:5,SAMELEVELFACTOR:10,SAMELEVELDISTANCE:5,MAXCOST:100,INITIALSEARCHPOINTS:10,ITERATIONS:5}}},{}],948:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"./label_defaults\"),i=t(\"../../components/color\"),o=i.addOpacity,s=i.opacity,l=t(\"../../constants/filter_ops\"),c=l.CONSTRAINT_REDUCTION,u=l.COMPARISON_OPS2;e.exports=function(t,e,r,i,l,h){var f,p,d,g=e.contours,v=r(\"contours.operation\");(g._operation=c[v],function(t,e){var r;-1===u.indexOf(e.operation)?(t(\"contours.value\",[0,1]),Array.isArray(e.value)?e.value.length>2?e.value=e.value.slice(2):0===e.length?e.value=[0,1]:e.length<2?(r=parseFloat(e.value[0]),e.value=[r,r+1]):e.value=[parseFloat(e.value[0]),parseFloat(e.value[1])]:n(e.value)&&(r=parseFloat(e.value),e.value=[r,r+1])):(t(\"contours.value\",0),n(e.value)||(Array.isArray(e.value)?e.value=parseFloat(e.value[0]):e.value=0))}(r,g),\"=\"===v?f=g.showlines=!0:(f=r(\"contours.showlines\"),d=r(\"fillcolor\",o((t.line||{}).color||l,.5))),f)&&(p=r(\"line.color\",d&&s(d)?o(e.fillcolor,1):l),r(\"line.width\",2),r(\"line.dash\"));r(\"line.smoothing\"),a(r,i,p,h)}},{\"../../components/color\":594,\"../../constants/filter_ops\":691,\"./label_defaults\":958,\"fast-isnumeric\":226}],949:[function(t,e,r){\"use strict\";var n=t(\"../../constants/filter_ops\"),a=t(\"fast-isnumeric\");function i(t,e){var r,i=Array.isArray(e);function o(t){return a(t)?+t:null}return-1!==n.COMPARISON_OPS2.indexOf(t)?r=o(i?e[0]:e):-1!==n.INTERVAL_OPS.indexOf(t)?r=i?[o(e[0]),o(e[1])]:[o(e),o(e)]:-1!==n.SET_OPS.indexOf(t)&&(r=i?e.map(o):[o(e)]),r}function o(t){return function(e){e=i(t,e);var r=Math.min(e[0],e[1]),n=Math.max(e[0],e[1]);return{start:r,end:n,size:n-r}}}function s(t){return function(e){return{start:e=i(t,e),end:1/0,size:1/0}}}e.exports={\"[]\":o(\"[]\"),\"][\":o(\"][\"),\">\":s(\">\"),\"<\":s(\"<\"),\"=\":s(\"=\")}},{\"../../constants/filter_ops\":691,\"fast-isnumeric\":226}],950:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n){var a=n(\"contours.start\"),i=n(\"contours.end\"),o=!1===a||!1===i,s=r(\"contours.size\");!(o?e.autocontour=!0:r(\"autocontour\",!1))&&s||r(\"ncontours\")}},{}],951:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");function a(t){return n.extendFlat({},t,{edgepaths:n.extendDeep([],t.edgepaths),paths:n.extendDeep([],t.paths),starts:n.extendDeep([],t.starts)})}e.exports=function(t,e){var r,i,o,s=function(t){return t.reverse()},l=function(t){return t};switch(e){case\"=\":case\"<\":return t;case\">\":for(1!==t.length&&n.warn(\"Contour data invalid for the specified inequality operation.\"),i=t[0],r=0;r<i.edgepaths.length;r++)i.edgepaths[r]=s(i.edgepaths[r]);for(r=0;r<i.paths.length;r++)i.paths[r]=s(i.paths[r]);for(r=0;r<i.starts.length;r++)i.starts[r]=s(i.starts[r]);return t;case\"][\":var c=s;s=l,l=c;case\"[]\":for(2!==t.length&&n.warn(\"Contour data invalid for the specified inequality range operation.\"),i=a(t[0]),o=a(t[1]),r=0;r<i.edgepaths.length;r++)i.edgepaths[r]=s(i.edgepaths[r]);for(r=0;r<i.paths.length;r++)i.paths[r]=s(i.paths[r]);for(r=0;r<i.starts.length;r++)i.starts[r]=s(i.starts[r]);for(;o.edgepaths.length;)i.edgepaths.push(l(o.edgepaths.shift()));for(;o.paths.length;)i.paths.push(l(o.paths.shift()));for(;o.starts.length;)i.starts.push(l(o.starts.shift()));return[i]}}},{\"../../lib\":719}],952:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../heatmap/xyz_defaults\"),i=t(\"./constraint_defaults\"),o=t(\"./contours_defaults\"),s=t(\"./style_defaults\"),l=t(\"./attributes\");e.exports=function(t,e,r,c){function u(r,a){return n.coerce(t,e,l,r,a)}if(a(t,e,u,c)){u(\"text\"),u(\"hovertext\"),u(\"hovertemplate\");var h=\"constraint\"===u(\"contours.type\");u(\"connectgaps\",n.isArray1D(e.z)),h?i(t,e,u,c,r):(o(t,e,u,function(r){return n.coerce2(t,e,l,r)}),s(t,e,u,c))}else e.visible=!1}},{\"../../lib\":719,\"../heatmap/xyz_defaults\":1014,\"./attributes\":943,\"./constraint_defaults\":948,\"./contours_defaults\":950,\"./style_defaults\":964}],953:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./constraint_mapping\"),i=t(\"./end_plus\");e.exports=function(t,e,r){for(var o=\"constraint\"===t.type?a[t._operation](t.value):t,s=o.size,l=[],c=i(o),u=r.trace._carpetTrace,h=u?{xaxis:u.aaxis,yaxis:u.baxis,x:r.a,y:r.b}:{xaxis:e.xaxis,yaxis:e.yaxis,x:r.x,y:r.y},f=o.start;f<c;f+=s)if(l.push(n.extendFlat({level:f,crossings:{},starts:[],edgepaths:[],paths:[],z:r.z,smoothing:r.trace.line.smoothing},h)),l.length>1e3){n.warn(\"Too many contours, clipping at 1000\",t);break}return l}},{\"../../lib\":719,\"./constraint_mapping\":949,\"./end_plus\":954}],954:[function(t,e,r){\"use strict\";e.exports=function(t){return t.end+t.size/1e6}},{}],955:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./constants\");function i(t,e,r,n){return Math.abs(t[0]-e[0])<r&&Math.abs(t[1]-e[1])<n}function o(t,e,r,o,l){var c,u=e.join(\",\"),h=t.crossings[u],f=function(t,e,r){var n=0,i=0;t>20&&e?208===t||1114===t?n=0===r[0]?1:-1:i=0===r[1]?1:-1:-1!==a.BOTTOMSTART.indexOf(t)?i=1:-1!==a.LEFTSTART.indexOf(t)?n=1:-1!==a.TOPSTART.indexOf(t)?i=-1:n=-1;return[n,i]}(h,r,e),p=[s(t,e,[-f[0],-f[1]])],d=t.z.length,g=t.z[0].length,v=e.slice(),m=f.slice();for(c=0;c<1e4;c++){if(h>20?(h=a.CHOOSESADDLE[h][(f[0]||f[1])<0?0:1],t.crossings[u]=a.SADDLEREMAINDER[h]):delete t.crossings[u],!(f=a.NEWDELTA[h])){n.log(\"Found bad marching index:\",h,e,t.level);break}p.push(s(t,e,f)),e[0]+=f[0],e[1]+=f[1],u=e.join(\",\"),i(p[p.length-1],p[p.length-2],o,l)&&p.pop();var y=f[0]&&(e[0]<0||e[0]>g-2)||f[1]&&(e[1]<0||e[1]>d-2);if(e[0]===v[0]&&e[1]===v[1]&&f[0]===m[0]&&f[1]===m[1]||r&&y)break;h=t.crossings[u]}1e4===c&&n.log(\"Infinite loop in contour?\");var x,b,_,w,k,T,A,M,S,E,C,L,P,O,I,z=i(p[0],p[p.length-1],o,l),D=0,R=.2*t.smoothing,F=[],B=0;for(c=1;c<p.length;c++)L=p[c],P=p[c-1],void 0,void 0,O=L[2]-P[2],I=L[3]-P[3],D+=A=Math.sqrt(O*O+I*I),F.push(A);var N=D/F.length*R;function j(t){return p[t%p.length]}for(c=p.length-2;c>=B;c--)if((x=F[c])<N){for(_=0,b=c-1;b>=B&&x+F[b]<N;b--)x+=F[b];if(z&&c===p.length-2)for(_=0;_<b&&x+F[_]<N;_++)x+=F[_];k=c-b+_+1,T=Math.floor((c+b+_+2)/2),w=z||c!==p.length-2?z||-1!==b?k%2?j(T):[(j(T)[0]+j(T+1)[0])/2,(j(T)[1]+j(T+1)[1])/2]:p[0]:p[p.length-1],p.splice(b+1,c-b+1,w),c=b+1,_&&(B=_),z&&(c===p.length-2?p[_]=p[p.length-1]:0===c&&(p[p.length-1]=p[0]))}for(p.splice(0,B),c=0;c<p.length;c++)p[c].length=2;if(!(p.length<2))if(z)p.pop(),t.paths.push(p);else{r||n.log(\"Unclosed interior contour?\",t.level,v.join(\",\"),p.join(\"L\"));var V=!1;for(M=0;M<t.edgepaths.length;M++)if(E=t.edgepaths[M],!V&&i(E[0],p[p.length-1],o,l)){p.pop(),V=!0;var U=!1;for(S=0;S<t.edgepaths.length;S++)if(i((C=t.edgepaths[S])[C.length-1],p[0],o,l)){U=!0,p.shift(),t.edgepaths.splice(M,1),S===M?t.paths.push(p.concat(C)):(S>M&&S--,t.edgepaths[S]=C.concat(p,E));break}U||(t.edgepaths[M]=p.concat(E))}for(M=0;M<t.edgepaths.length&&!V;M++)i((E=t.edgepaths[M])[E.length-1],p[0],o,l)&&(p.shift(),t.edgepaths[M]=E.concat(p),V=!0);V||t.edgepaths.push(p)}}function s(t,e,r){var n=e[0]+Math.max(r[0],0),a=e[1]+Math.max(r[1],0),i=t.z[a][n],o=t.xaxis,s=t.yaxis;if(r[1]){var l=(t.level-i)/(t.z[a][n+1]-i);return[o.c2p((1-l)*t.x[n]+l*t.x[n+1],!0),s.c2p(t.y[a],!0),n+l,a]}var c=(t.level-i)/(t.z[a+1][n]-i);return[o.c2p(t.x[n],!0),s.c2p((1-c)*t.y[a]+c*t.y[a+1],!0),n,a+c]}e.exports=function(t,e,r){var a,i,s,l;for(e=e||.01,r=r||.01,i=0;i<t.length;i++){for(s=t[i],l=0;l<s.starts.length;l++)o(s,s.starts[l],\"edge\",e,r);for(a=0;Object.keys(s.crossings).length&&a<1e4;)a++,o(s,Object.keys(s.crossings)[0].split(\",\").map(Number),void 0,e,r);1e4===a&&n.log(\"Infinite loop in contour?\")}}},{\"../../lib\":719,\"./constants\":947}],956:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\"),a=t(\"../heatmap/hover\");e.exports=function(t,e,r,i,o){var s=a(t,e,r,i,o,!0);return s&&s.forEach(function(t){var e=t.trace;\"constraint\"===e.contours.type&&(e.fillcolor&&n.opacity(e.fillcolor)?t.color=n.addOpacity(e.fillcolor,1):e.contours.showlines&&n.opacity(e.line.color)&&(t.color=n.addOpacity(e.line.color,1)))}),s}},{\"../../components/color\":594,\"../heatmap/hover\":1007}],957:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),plot:t(\"./plot\").plot,style:t(\"./style\"),colorbar:t(\"./colorbar\"),hoverPoints:t(\"./hover\"),moduleType:\"trace\",name:\"contour\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"2dMap\",\"contour\",\"showLegend\"],meta:{}}},{\"../../plots/cartesian\":778,\"./attributes\":943,\"./calc\":944,\"./colorbar\":946,\"./defaults\":952,\"./hover\":956,\"./plot\":961,\"./style\":963}],958:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e,r,a){if(a||(a={}),t(\"contours.showlabels\")){var i=e.font;n.coerceFont(t,\"contours.labelfont\",{family:i.family,size:i.size,color:r}),t(\"contours.labelformat\")}!1!==a.hasHover&&t(\"zhoverformat\")}},{\"../../lib\":719}],959:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/colorscale\"),i=t(\"./end_plus\");e.exports=function(t){var e=t.contours,r=e.start,o=i(e),s=e.size||1,l=Math.floor((o-r)/s)+1,c=\"lines\"===e.coloring?0:1,u=a.extractOpts(t);isFinite(s)||(s=1,l=1);var h,f,p=u.reversescale?a.flipScale(u.colorscale):u.colorscale,d=p.length,g=new Array(d),v=new Array(d);if(\"heatmap\"===e.coloring){var m=u.min,y=u.max;for(f=0;f<d;f++)h=p[f],g[f]=h[0]*(y-m)+m,v[f]=h[1];var x=n.extent([m,y,e.start,e.start+s*(l-1)]),b=x[m<y?0:1],_=x[m<y?1:0];b!==m&&(g.splice(0,0,b),v.splice(0,0,v[0])),_!==y&&(g.push(_),v.push(v[v.length-1]))}else for(f=0;f<d;f++)h=p[f],g[f]=(h[0]*(l+c-1)-c/2)*s+r,v[f]=h[1];return a.makeColorScaleFunc({domain:g,range:v},{noNumericCheck:!0})}},{\"../../components/colorscale\":606,\"./end_plus\":954,d3:164}],960:[function(t,e,r){\"use strict\";var n=t(\"./constants\");function a(t,e){var r=(e[0][0]>t?0:1)+(e[0][1]>t?0:2)+(e[1][1]>t?0:4)+(e[1][0]>t?0:8);return 5===r||10===r?t>(e[0][0]+e[0][1]+e[1][0]+e[1][1])/4?5===r?713:1114:5===r?104:208:15===r?0:r}e.exports=function(t){var e,r,i,o,s,l,c,u,h,f=t[0].z,p=f.length,d=f[0].length,g=2===p||2===d;for(r=0;r<p-1;r++)for(o=[],0===r&&(o=o.concat(n.BOTTOMSTART)),r===p-2&&(o=o.concat(n.TOPSTART)),e=0;e<d-1;e++)for(i=o.slice(),0===e&&(i=i.concat(n.LEFTSTART)),e===d-2&&(i=i.concat(n.RIGHTSTART)),s=e+\",\"+r,l=[[f[r][e],f[r][e+1]],[f[r+1][e],f[r+1][e+1]]],h=0;h<t.length;h++)(c=a((u=t[h]).level,l))&&(u.crossings[s]=c,-1!==i.indexOf(c)&&(u.starts.push([e,r]),g&&-1!==i.indexOf(c,i.indexOf(c)+1)&&u.starts.push([e,r])))}},{\"./constants\":947}],961:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../lib\"),i=t(\"../../components/drawing\"),o=t(\"../../components/colorscale\"),s=t(\"../../lib/svg_text_utils\"),l=t(\"../../plots/cartesian/axes\"),c=t(\"../../plots/cartesian/set_convert\"),u=t(\"../heatmap/plot\"),h=t(\"./make_crossings\"),f=t(\"./find_all_paths\"),p=t(\"./empty_pathinfo\"),d=t(\"./convert_to_constraints\"),g=t(\"./close_boundaries\"),v=t(\"./constants\"),m=v.LABELOPTIMIZER;function y(t,e){var r,n,o,s,l,c,u,h=\"\",f=0,p=t.edgepaths.map(function(t,e){return e}),d=!0;function g(t){return Math.abs(t[1]-e[2][1])<.01}function v(t){return Math.abs(t[0]-e[0][0])<.01}function m(t){return Math.abs(t[0]-e[2][0])<.01}for(;p.length;){for(c=i.smoothopen(t.edgepaths[f],t.smoothing),h+=d?c:c.replace(/^M/,\"L\"),p.splice(p.indexOf(f),1),r=t.edgepaths[f][t.edgepaths[f].length-1],s=-1,o=0;o<4;o++){if(!r){a.log(\"Missing end?\",f,t);break}for(u=r,Math.abs(u[1]-e[0][1])<.01&&!m(r)?n=e[1]:v(r)?n=e[0]:g(r)?n=e[3]:m(r)&&(n=e[2]),l=0;l<t.edgepaths.length;l++){var y=t.edgepaths[l][0];Math.abs(r[0]-n[0])<.01?Math.abs(r[0]-y[0])<.01&&(y[1]-r[1])*(n[1]-y[1])>=0&&(n=y,s=l):Math.abs(r[1]-n[1])<.01?Math.abs(r[1]-y[1])<.01&&(y[0]-r[0])*(n[0]-y[0])>=0&&(n=y,s=l):a.log(\"endpt to newendpt is not vert. or horz.\",r,n,y)}if(r=n,s>=0)break;h+=\"L\"+n}if(s===t.edgepaths.length){a.log(\"unclosed perimeter path\");break}f=s,(d=-1===p.indexOf(f))&&(f=p[0],h+=\"Z\")}for(f=0;f<t.paths.length;f++)h+=i.smoothclosed(t.paths[f],t.smoothing);return h}function x(t,e,r,n){var i=e.width/2,o=e.height/2,s=t.x,l=t.y,c=t.theta,u=Math.cos(c)*i,h=Math.sin(c)*i,f=(s>n.center?n.right-s:s-n.left)/(u+Math.abs(Math.sin(c)*o)),p=(l>n.middle?n.bottom-l:l-n.top)/(Math.abs(h)+Math.cos(c)*o);if(f<1||p<1)return 1/0;var d=m.EDGECOST*(1/(f-1)+1/(p-1));d+=m.ANGLECOST*c*c;for(var g=s-u,v=l-h,y=s+u,x=l+h,b=0;b<r.length;b++){var _=r[b],w=Math.cos(_.theta)*_.width/2,k=Math.sin(_.theta)*_.width/2,T=2*a.segmentDistance(g,v,y,x,_.x-w,_.y-k,_.x+w,_.y+k)/(e.height+_.height),A=_.level===e.level,M=A?m.SAMELEVELDISTANCE:1;if(T<=M)return 1/0;d+=m.NEIGHBORCOST*(A?m.SAMELEVELFACTOR:1)/(T-M)}return d}r.plot=function(t,e,o,s){var l=e.xaxis,c=e.yaxis;a.makeTraceGroups(s,o,\"contour\").each(function(o){var s=n.select(this),m=o[0],x=m.trace,b=m.x,_=m.y,w=x.contours,k=p(w,e,m),T=a.ensureSingle(s,\"g\",\"heatmapcoloring\"),A=[];\"heatmap\"===w.coloring&&(A=[o]),u(t,e,A,T),h(k),f(k);var M=l.c2p(b[0],!0),S=l.c2p(b[b.length-1],!0),E=c.c2p(_[0],!0),C=c.c2p(_[_.length-1],!0),L=[[M,C],[S,C],[S,E],[M,E]],P=k;\"constraint\"===w.type&&(P=d(k,w._operation)),function(t,e,r){var n=a.ensureSingle(t,\"g\",\"contourbg\").selectAll(\"path\").data(\"fill\"===r.coloring?[0]:[]);n.enter().append(\"path\"),n.exit().remove(),n.attr(\"d\",\"M\"+e.join(\"L\")+\"Z\").style(\"stroke\",\"none\")}(s,L,w),function(t,e,r,i){var o=\"fill\"===i.coloring||\"constraint\"===i.type&&\"=\"!==i._operation,s=\"M\"+r.join(\"L\")+\"Z\";o&&g(e,i);var l=a.ensureSingle(t,\"g\",\"contourfill\").selectAll(\"path\").data(o?e:[]);l.enter().append(\"path\"),l.exit().remove(),l.each(function(t){var e=(t.prefixBoundary?s:\"\")+y(t,r);e?n.select(this).attr(\"d\",e).style(\"stroke\",\"none\"):n.select(this).remove()})}(s,P,L,w),function(t,e,o,s,l){var c=a.ensureSingle(t,\"g\",\"contourlines\"),u=!1!==l.showlines,h=l.showlabels,f=u&&h,p=r.createLines(c,u||h,e),d=r.createLineClip(c,f,o,s.trace.uid),g=t.selectAll(\"g.contourlabels\").data(h?[0]:[]);if(g.exit().remove(),g.enter().append(\"g\").classed(\"contourlabels\",!0),h){var m=[],y=[];a.clearLocationCache();var x=r.labelFormatter(o,s),b=i.tester.append(\"text\").attr(\"data-notex\",1).call(i.font,l.labelfont),_=e[0].xaxis,w=e[0].yaxis,k=_._length,T=w._length,A=_.range,M=w.range,S=a.aggNums(Math.min,null,s.x),E=a.aggNums(Math.max,null,s.x),C=a.aggNums(Math.min,null,s.y),L=a.aggNums(Math.max,null,s.y),P=Math.max(_.c2p(S,!0),0),O=Math.min(_.c2p(E,!0),k),I=Math.max(w.c2p(L,!0),0),z=Math.min(w.c2p(C,!0),T),D={};A[0]<A[1]?(D.left=P,D.right=O):(D.left=O,D.right=P),M[0]<M[1]?(D.top=I,D.bottom=z):(D.top=z,D.bottom=I),D.middle=(D.top+D.bottom)/2,D.center=(D.left+D.right)/2,m.push([[D.left,D.top],[D.right,D.top],[D.right,D.bottom],[D.left,D.bottom]]);var R=Math.sqrt(k*k+T*T),F=v.LABELDISTANCE*R/Math.max(1,e.length/v.LABELINCREASE);p.each(function(t){var e=r.calcTextOpts(t.level,x,b,o);n.select(this).selectAll(\"path\").each(function(){var t=a.getVisibleSegment(this,D,e.height/2);if(t&&!(t.len<(e.width+e.height)*v.LABELMIN))for(var n=Math.min(Math.ceil(t.len/F),v.LABELMAX),i=0;i<n;i++){var o=r.findBestTextLocation(this,t,e,y,D);if(!o)break;r.addLabelData(o,e,y,m)}})}),b.remove(),r.drawLabels(g,y,o,d,f?m:null)}h&&!u&&p.remove()}(s,k,t,m,w),function(t,e,r,n,o){var s=n.trace,l=r._fullLayout._clips,c=\"clip\"+s.uid,u=l.selectAll(\"#\"+c).data(s.connectgaps?[]:[0]);if(u.enter().append(\"clipPath\").classed(\"contourclip\",!0).attr(\"id\",c),u.exit().remove(),!1===s.connectgaps){var p={level:.9,crossings:{},starts:[],edgepaths:[],paths:[],xaxis:e.xaxis,yaxis:e.yaxis,x:n.x,y:n.y,z:function(t){var e,r,n=t.trace._emptypoints,a=[],i=t.z.length,o=t.z[0].length,s=[];for(e=0;e<o;e++)s.push(1);for(e=0;e<i;e++)a.push(s.slice());for(e=0;e<n.length;e++)r=n[e],a[r[0]][r[1]]=0;return t.zmask=a,a}(n),smoothing:0};h([p]),f([p]),g([p],{type:\"levels\"});var d=a.ensureSingle(u,\"path\",\"\");d.attr(\"d\",(p.prefixBoundary?\"M\"+o.join(\"L\")+\"Z\":\"\")+y(p,o))}else c=null;i.setClipUrl(t,c,r)}(s,e,t,m,L)})},r.createLines=function(t,e,r){var n=r[0].smoothing,a=t.selectAll(\"g.contourlevel\").data(e?r:[]);if(a.exit().remove(),a.enter().append(\"g\").classed(\"contourlevel\",!0),e){var o=a.selectAll(\"path.openline\").data(function(t){return t.pedgepaths||t.edgepaths});o.exit().remove(),o.enter().append(\"path\").classed(\"openline\",!0),o.attr(\"d\",function(t){return i.smoothopen(t,n)}).style(\"stroke-miterlimit\",1).style(\"vector-effect\",\"non-scaling-stroke\");var s=a.selectAll(\"path.closedline\").data(function(t){return t.ppaths||t.paths});s.exit().remove(),s.enter().append(\"path\").classed(\"closedline\",!0),s.attr(\"d\",function(t){return i.smoothclosed(t,n)}).style(\"stroke-miterlimit\",1).style(\"vector-effect\",\"non-scaling-stroke\")}return a},r.createLineClip=function(t,e,r,n){var a=e?\"clipline\"+n:null,o=r._fullLayout._clips.selectAll(\"#\"+a).data(e?[0]:[]);return o.exit().remove(),o.enter().append(\"clipPath\").classed(\"contourlineclip\",!0).attr(\"id\",a),i.setClipUrl(t,a,r),o},r.labelFormatter=function(t,e){var r=t._fullLayout,n=e.trace,a=n.contours;if(a.labelformat)return r._d3locale.numberFormat(a.labelformat);var i,s=o.extractOpts(n);if(s&&s.colorbar&&s.colorbar._axis)i=s.colorbar._axis;else{if(i={type:\"linear\",_id:\"ycontour\",showexponent:\"all\",exponentformat:\"B\"},\"constraint\"===a.type){var u=a.value;Array.isArray(u)?i.range=[u[0],u[u.length-1]]:i.range=[u,u]}else i.range=[a.start,a.end],i.nticks=(a.end-a.start)/a.size;i.range[0]===i.range[1]&&(i.range[1]+=i.range[0]||1),i.nticks||(i.nticks=1e3),c(i,r),l.prepTicks(i),i._tmin=null,i._tmax=null}return function(t){return l.tickText(i,t).text}},r.calcTextOpts=function(t,e,r,n){var a=e(t);r.text(a).call(s.convertToTspans,n);var o=i.bBox(r.node(),!0);return{text:a,width:o.width,height:o.height,level:t,dy:(o.top+o.bottom)/2}},r.findBestTextLocation=function(t,e,r,n,i){var o,s,l,c,u,h=r.width;e.isClosed?(s=e.len/m.INITIALSEARCHPOINTS,o=e.min+s/2,l=e.max):(s=(e.len-h)/(m.INITIALSEARCHPOINTS+1),o=e.min+s+h/2,l=e.max-(s+h)/2);for(var f=1/0,p=0;p<m.ITERATIONS;p++){for(var d=o;d<l;d+=s){var g=a.getTextLocation(t,e.total,d,h),v=x(g,r,n,i);v<f&&(f=v,u=g,c=d)}if(f>2*m.MAXCOST)break;p&&(s/=2),l=(o=c-s/2)+1.5*s}if(f<=m.MAXCOST)return u},r.addLabelData=function(t,e,r,n){var a=e.width/2,i=e.height/2,o=t.x,s=t.y,l=t.theta,c=Math.sin(l),u=Math.cos(l),h=a*u,f=i*c,p=a*c,d=-i*u,g=[[o-h-f,s-p-d],[o+h-f,s+p-d],[o+h+f,s+p+d],[o-h+f,s-p+d]];r.push({text:e.text,x:o,y:s,dy:e.dy,theta:l,level:e.level,width:e.width,height:e.height}),n.push(g)},r.drawLabels=function(t,e,r,i,o){var l=t.selectAll(\"text\").data(e,function(t){return t.text+\",\"+t.x+\",\"+t.y+\",\"+t.theta});if(l.exit().remove(),l.enter().append(\"text\").attr({\"data-notex\":1,\"text-anchor\":\"middle\"}).each(function(t){var e=t.x+Math.sin(t.theta)*t.dy,a=t.y-Math.cos(t.theta)*t.dy;n.select(this).text(t.text).attr({x:e,y:a,transform:\"rotate(\"+180*t.theta/Math.PI+\" \"+e+\" \"+a+\")\"}).call(s.convertToTspans,r)}),o){for(var c=\"\",u=0;u<o.length;u++)c+=\"M\"+o[u].join(\"L\")+\"Z\";a.ensureSingle(i,\"path\",\"\").attr(\"d\",c)}}},{\"../../components/colorscale\":606,\"../../components/drawing\":615,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../../plots/cartesian/axes\":767,\"../../plots/cartesian/set_convert\":785,\"../heatmap/plot\":1011,\"./close_boundaries\":945,\"./constants\":947,\"./convert_to_constraints\":951,\"./empty_pathinfo\":953,\"./find_all_paths\":955,\"./make_crossings\":960,d3:164}],962:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),a=t(\"../../lib\");function i(t,e,r){var a={type:\"linear\",range:[t,e]};return n.autoTicks(a,(e-t)/(r||15)),a}e.exports=function(t,e){var r=t.contours;if(t.autocontour){var o=t.zmin,s=t.zmax;(t.zauto||void 0===o)&&(o=a.aggNums(Math.min,null,e)),(t.zauto||void 0===s)&&(s=a.aggNums(Math.max,null,e));var l=i(o,s,t.ncontours);r.size=l.dtick,r.start=n.tickFirst(l),l.range.reverse(),r.end=n.tickFirst(l),r.start===o&&(r.start+=r.size),r.end===s&&(r.end-=r.size),r.start>r.end&&(r.start=r.end=(r.start+r.end)/2),t._input.contours||(t._input.contours={}),a.extendFlat(t._input.contours,{start:r.start,end:r.end,size:r.size}),t._input.autocontour=!0}else if(\"constraint\"!==r.type){var c,u=r.start,h=r.end,f=t._input.contours;if(u>h&&(r.start=f.start=h,h=r.end=f.end=u,u=r.start),!(r.size>0))c=u===h?1:i(u,h,t.ncontours).dtick,f.size=r.size=c}}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767}],963:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/drawing\"),i=t(\"../heatmap/style\"),o=t(\"./make_color_map\");e.exports=function(t){var e=n.select(t).selectAll(\"g.contour\");e.style(\"opacity\",function(t){return t[0].trace.opacity}),e.each(function(t){var e=n.select(this),r=t[0].trace,i=r.contours,s=r.line,l=i.size||1,c=i.start,u=\"constraint\"===i.type,h=!u&&\"lines\"===i.coloring,f=!u&&\"fill\"===i.coloring,p=h||f?o(r):null;e.selectAll(\"g.contourlevel\").each(function(t){n.select(this).selectAll(\"path\").call(a.lineGroupStyle,s.width,h?p(t.level):s.color,s.dash)});var d=i.labelfont;if(e.selectAll(\"g.contourlabels text\").each(function(t){a.font(n.select(this),{family:d.family,size:d.size,color:d.color||(h?p(t.level):s.color)})}),u)e.selectAll(\"g.contourfill path\").style(\"fill\",r.fillcolor);else if(f){var g;e.selectAll(\"g.contourfill path\").style(\"fill\",function(t){return void 0===g&&(g=t.level),p(t.level+.5*l)}),void 0===g&&(g=c),e.selectAll(\"g.contourbg path\").style(\"fill\",p(g-.5*l))}}),i(t)}},{\"../../components/drawing\":615,\"../heatmap/style\":1012,\"./make_color_map\":959,d3:164}],964:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/defaults\"),a=t(\"./label_defaults\");e.exports=function(t,e,r,i,o){var s,l=r(\"contours.coloring\"),c=\"\";\"fill\"===l&&(s=r(\"contours.showlines\")),!1!==s&&(\"lines\"!==l&&(c=r(\"line.color\",\"#000\")),r(\"line.width\",.5),r(\"line.dash\")),\"none\"!==l&&(!0!==t.showlegend&&(e.showlegend=!1),e._dfltShowLegend=!1,n(t,e,i,r,{prefix:\"\",cLetter:\"z\"})),r(\"line.smoothing\"),a(r,i,c,o)}},{\"../../components/colorscale/defaults\":604,\"./label_defaults\":958}],965:[function(t,e,r){\"use strict\";var n=t(\"../heatmap/attributes\"),a=t(\"../contour/attributes\"),i=t(\"../../components/colorscale/attributes\"),o=t(\"../../lib/extend\").extendFlat,s=a.contours;e.exports=o({carpet:{valType:\"string\",editType:\"calc\"},z:n.z,a:n.x,a0:n.x0,da:n.dx,b:n.y,b0:n.y0,db:n.dy,text:n.text,hovertext:n.hovertext,transpose:n.transpose,atype:n.xtype,btype:n.ytype,fillcolor:a.fillcolor,autocontour:a.autocontour,ncontours:a.ncontours,contours:{type:s.type,start:s.start,end:s.end,size:s.size,coloring:{valType:\"enumerated\",values:[\"fill\",\"lines\",\"none\"],dflt:\"fill\",editType:\"calc\"},showlines:s.showlines,showlabels:s.showlabels,labelfont:s.labelfont,labelformat:s.labelformat,operation:s.operation,value:s.value,editType:\"calc\",impliedEdits:{autocontour:!1}},line:{color:a.line.color,width:a.line.width,dash:a.line.dash,smoothing:a.line.smoothing,editType:\"plot\"},transforms:void 0},i(\"\",{cLetter:\"z\",autoColorDflt:!1}))},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../contour/attributes\":943,\"../heatmap/attributes\":1e3}],966:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/calc\"),a=t(\"../../lib\"),i=t(\"../heatmap/convert_column_xyz\"),o=t(\"../heatmap/clean_2d_array\"),s=t(\"../heatmap/interp2d\"),l=t(\"../heatmap/find_empties\"),c=t(\"../heatmap/make_bound_array\"),u=t(\"./defaults\"),h=t(\"../carpet/lookup_carpetid\"),f=t(\"../contour/set_contours\");e.exports=function(t,e){var r=e._carpetTrace=h(t,e);if(r&&r.visible&&\"legendonly\"!==r.visible){if(!e.a||!e.b){var p=t.data[r.index],d=t.data[e.index];d.a||(d.a=p.a),d.b||(d.b=p.b),u(d,e,e._defaultColor,t._fullLayout)}var g=function(t,e){var r,u,h,f,p,d,g,v=e._carpetTrace,m=v.aaxis,y=v.baxis;m._minDtick=0,y._minDtick=0,a.isArray1D(e.z)&&i(e,m,y,\"a\",\"b\",[\"z\"]);r=e._a=e._a||e.a,f=e._b=e._b||e.b,r=r?m.makeCalcdata(e,\"_a\"):[],f=f?y.makeCalcdata(e,\"_b\"):[],u=e.a0||0,h=e.da||1,p=e.b0||0,d=e.db||1,g=e._z=o(e._z||e.z,e.transpose),e._emptypoints=l(g),s(g,e._emptypoints);var x=a.maxRowLength(g),b=\"scaled\"===e.xtype?\"\":r,_=c(e,b,u,h,x,m),w=\"scaled\"===e.ytype?\"\":f,k=c(e,w,p,d,g.length,y),T={a:_,b:k,z:g};\"levels\"===e.contours.type&&\"none\"!==e.contours.coloring&&n(t,e,{vals:g,containerStr:\"\",cLetter:\"z\"});return[T]}(t,e);return f(e,e._z),g}}},{\"../../components/colorscale/calc\":602,\"../../lib\":719,\"../carpet/lookup_carpetid\":916,\"../contour/set_contours\":962,\"../heatmap/clean_2d_array\":1002,\"../heatmap/convert_column_xyz\":1004,\"../heatmap/find_empties\":1006,\"../heatmap/interp2d\":1009,\"../heatmap/make_bound_array\":1010,\"./defaults\":967}],967:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../heatmap/xyz_defaults\"),i=t(\"./attributes\"),o=t(\"../contour/constraint_defaults\"),s=t(\"../contour/contours_defaults\"),l=t(\"../contour/style_defaults\");e.exports=function(t,e,r,c){function u(r,a){return n.coerce(t,e,i,r,a)}if(u(\"carpet\"),t.a&&t.b){if(!a(t,e,u,c,\"a\",\"b\"))return void(e.visible=!1);u(\"text\"),\"constraint\"===u(\"contours.type\")?o(t,e,u,c,r,{hasHover:!1}):(s(t,e,u,function(r){return n.coerce2(t,e,i,r)}),l(t,e,u,c,{hasHover:!1}))}else e._defaultColor=r,e._length=null}},{\"../../lib\":719,\"../contour/constraint_defaults\":948,\"../contour/contours_defaults\":950,\"../contour/style_defaults\":964,\"../heatmap/xyz_defaults\":1014,\"./attributes\":965}],968:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../contour/colorbar\"),calc:t(\"./calc\"),plot:t(\"./plot\"),style:t(\"../contour/style\"),moduleType:\"trace\",name:\"contourcarpet\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"carpet\",\"contour\",\"symbols\",\"showLegend\",\"hasLines\",\"carpetDependent\",\"noHover\"],meta:{}}},{\"../../plots/cartesian\":778,\"../contour/colorbar\":946,\"../contour/style\":963,\"./attributes\":965,\"./calc\":966,\"./defaults\":967,\"./plot\":969}],969:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../carpet/map_1d_array\"),i=t(\"../carpet/makepath\"),o=t(\"../../components/drawing\"),s=t(\"../../lib\"),l=t(\"../contour/make_crossings\"),c=t(\"../contour/find_all_paths\"),u=t(\"../contour/plot\"),h=t(\"../contour/constants\"),f=t(\"../contour/convert_to_constraints\"),p=t(\"../contour/empty_pathinfo\"),d=t(\"../contour/close_boundaries\"),g=t(\"../carpet/lookup_carpetid\"),v=t(\"../carpet/axis_aligned_line\");function m(t,e,r){var n=t.getPointAtLength(e),a=t.getPointAtLength(r),i=a.x-n.x,o=a.y-n.y,s=Math.sqrt(i*i+o*o);return[i/s,o/s]}function y(t){var e=Math.sqrt(t[0]*t[0]+t[1]*t[1]);return[t[0]/e,t[1]/e]}function x(t,e){var r=Math.abs(t[0]*e[0]+t[1]*e[1]);return Math.sqrt(1-r*r)/r}e.exports=function(t,e,r,b){var _=e.xaxis,w=e.yaxis;s.makeTraceGroups(b,r,\"contour\").each(function(r){var b=n.select(this),k=r[0],T=k.trace,A=T._carpetTrace=g(t,T),M=t.calcdata[A.index][0];if(A.visible&&\"legendonly\"!==A.visible){var S=k.a,E=k.b,C=T.contours,L=p(C,e,k),P=\"constraint\"===C.type,O=C._operation,I=P?\"=\"===O?\"lines\":\"fill\":C.coloring,z=[[S[0],E[E.length-1]],[S[S.length-1],E[E.length-1]],[S[S.length-1],E[0]],[S[0],E[0]]];l(L);var D=1e-8*(S[S.length-1]-S[0]),R=1e-8*(E[E.length-1]-E[0]);c(L,D,R);var F,B,N,j,V=L;\"constraint\"===C.type&&(V=f(L,O)),function(t,e){var r,n,a,i,o,s,l,c,u;for(r=0;r<t.length;r++){for(i=t[r],o=i.pedgepaths=[],s=i.ppaths=[],n=0;n<i.edgepaths.length;n++){for(u=i.edgepaths[n],l=[],a=0;a<u.length;a++)l[a]=e(u[a]);o.push(l)}for(n=0;n<i.paths.length;n++){for(u=i.paths[n],c=[],a=0;a<u.length;a++)c[a]=e(u[a]);s.push(c)}}}(L,H);var U=[];for(j=M.clipsegments.length-1;j>=0;j--)F=M.clipsegments[j],B=a([],F.x,_.c2p),N=a([],F.y,w.c2p),B.reverse(),N.reverse(),U.push(i(B,N,F.bicubic));var q=\"M\"+U.join(\"L\")+\"Z\";!function(t,e,r,n,o,l){var c,u,h,f,p=s.ensureSingle(t,\"g\",\"contourbg\").selectAll(\"path\").data(\"fill\"!==l||o?[]:[0]);p.enter().append(\"path\"),p.exit().remove();var d=[];for(f=0;f<e.length;f++)c=e[f],u=a([],c.x,r.c2p),h=a([],c.y,n.c2p),d.push(i(u,h,c.bicubic));p.attr(\"d\",\"M\"+d.join(\"L\")+\"Z\").style(\"stroke\",\"none\")}(b,M.clipsegments,_,w,P,I),function(t,e,r,a,i,l,c,u,h,f,p){var g=\"fill\"===f;g&&d(i,t.contours);var m=s.ensureSingle(e,\"g\",\"contourfill\").selectAll(\"path\").data(g?i:[]);m.enter().append(\"path\"),m.exit().remove(),m.each(function(t){var e=(t.prefixBoundary?p:\"\")+function(t,e,r,n,a,i,l,c){var u,h,f,p,d,g,m,y=\"\",x=e.edgepaths.map(function(t,e){return e}),b=!0,_=1e-4*Math.abs(r[0][0]-r[2][0]),w=1e-4*Math.abs(r[0][1]-r[2][1]);function k(t){return Math.abs(t[1]-r[0][1])<w}function T(t){return Math.abs(t[1]-r[2][1])<w}function A(t){return Math.abs(t[0]-r[0][0])<_}function M(t){return Math.abs(t[0]-r[2][0])<_}function S(t,e){var r,n,o,s,u=\"\";for(k(t)&&!M(t)||T(t)&&!A(t)?(s=a.aaxis,o=v(a,i,[t[0],e[0]],.5*(t[1]+e[1]))):(s=a.baxis,o=v(a,i,.5*(t[0]+e[0]),[t[1],e[1]])),r=1;r<o.length;r++)for(u+=s.smoothing?\"C\":\"L\",n=0;n<o[r].length;n++){var h=o[r][n];u+=[l.c2p(h[0]),c.c2p(h[1])]+\" \"}return u}u=0,h=null;for(;x.length;){var E=e.edgepaths[u][0];for(h&&(y+=S(h,E)),m=o.smoothopen(e.edgepaths[u].map(n),e.smoothing),y+=b?m:m.replace(/^M/,\"L\"),x.splice(x.indexOf(u),1),h=e.edgepaths[u][e.edgepaths[u].length-1],d=-1,p=0;p<4;p++){if(!h){s.log(\"Missing end?\",u,e);break}for(k(h)&&!M(h)?f=r[1]:A(h)?f=r[0]:T(h)?f=r[3]:M(h)&&(f=r[2]),g=0;g<e.edgepaths.length;g++){var C=e.edgepaths[g][0];Math.abs(h[0]-f[0])<_?Math.abs(h[0]-C[0])<_&&(C[1]-h[1])*(f[1]-C[1])>=0&&(f=C,d=g):Math.abs(h[1]-f[1])<w?Math.abs(h[1]-C[1])<w&&(C[0]-h[0])*(f[0]-C[0])>=0&&(f=C,d=g):s.log(\"endpt to newendpt is not vert. or horz.\",h,f,C)}if(d>=0)break;y+=S(h,f),h=f}if(d===e.edgepaths.length){s.log(\"unclosed perimeter path\");break}u=d,(b=-1===x.indexOf(u))&&(u=x[0],y+=S(h,f)+\"Z\",h=null)}for(u=0;u<e.paths.length;u++)y+=o.smoothclosed(e.paths[u].map(n),e.smoothing);return y}(0,t,l,c,u,h,r,a);e?n.select(this).attr(\"d\",e).style(\"stroke\",\"none\"):n.select(this).remove()})}(T,b,_,w,V,z,H,A,M,I,q),function(t,e,r,a,i,l,c){var f=s.ensureSingle(t,\"g\",\"contourlines\"),p=!1!==i.showlines,d=i.showlabels,g=p&&d,v=u.createLines(f,p||d,e),b=u.createLineClip(f,g,r,a.trace.uid),_=t.selectAll(\"g.contourlabels\").data(d?[0]:[]);if(_.exit().remove(),_.enter().append(\"g\").classed(\"contourlabels\",!0),d){var w=l.xaxis,k=l.yaxis,T=w._length,A=k._length,M=[[[0,0],[T,0],[T,A],[0,A]]],S=[];s.clearLocationCache();var E=u.labelFormatter(r,a),C=o.tester.append(\"text\").attr(\"data-notex\",1).call(o.font,i.labelfont),L={left:0,right:T,center:T/2,top:0,bottom:A,middle:A/2},P=Math.sqrt(T*T+A*A),O=h.LABELDISTANCE*P/Math.max(1,e.length/h.LABELINCREASE);v.each(function(t){var e=u.calcTextOpts(t.level,E,C,r);n.select(this).selectAll(\"path\").each(function(r){var n=s.getVisibleSegment(this,L,e.height/2);if(n&&(function(t,e,r,n,a,i){for(var o,s=0;s<r.pedgepaths.length;s++)e===r.pedgepaths[s]&&(o=r.edgepaths[s]);if(!o)return;var l=a.a[0],c=a.a[a.a.length-1],u=a.b[0],h=a.b[a.b.length-1];function f(t,e){var r,n=0;return(Math.abs(t[0]-l)<.1||Math.abs(t[0]-c)<.1)&&(r=y(a.dxydb_rough(t[0],t[1],.1)),n=Math.max(n,i*x(e,r)/2)),(Math.abs(t[1]-u)<.1||Math.abs(t[1]-h)<.1)&&(r=y(a.dxyda_rough(t[0],t[1],.1)),n=Math.max(n,i*x(e,r)/2)),n}var p=m(t,0,1),d=m(t,n.total,n.total-1),g=f(o[0],p),v=n.total-f(o[o.length-1],d);n.min<g&&(n.min=g);n.max>v&&(n.max=v);n.len=n.max-n.min}(this,r,t,n,c,e.height),!(n.len<(e.width+e.height)*h.LABELMIN)))for(var a=Math.min(Math.ceil(n.len/O),h.LABELMAX),i=0;i<a;i++){var o=u.findBestTextLocation(this,n,e,S,L);if(!o)break;u.addLabelData(o,e,S,M)}})}),C.remove(),u.drawLabels(_,S,r,b,g?M:null)}d&&!p&&v.remove()}(b,L,t,k,C,e,A),o.setClipUrl(b,A._clipPathId,t)}function H(t){var e=A.ab2xy(t[0],t[1],!0);return[_.c2p(e[0]),w.c2p(e[1])]}})}},{\"../../components/drawing\":615,\"../../lib\":719,\"../carpet/axis_aligned_line\":900,\"../carpet/lookup_carpetid\":916,\"../carpet/makepath\":917,\"../carpet/map_1d_array\":918,\"../contour/close_boundaries\":945,\"../contour/constants\":947,\"../contour/convert_to_constraints\":951,\"../contour/empty_pathinfo\":953,\"../contour/find_all_paths\":955,\"../contour/make_crossings\":960,\"../contour/plot\":961,d3:164}],970:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/attributes\"),a=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"../../plots/attributes\"),o=t(\"../scattermapbox/attributes\"),s=t(\"../../lib/extend\").extendFlat;e.exports=s({lon:o.lon,lat:o.lat,z:{valType:\"data_array\",editType:\"calc\"},radius:{valType:\"number\",editType:\"plot\",arrayOk:!0,min:1,dflt:30},below:{valType:\"string\",editType:\"plot\"},text:o.text,hovertext:o.hovertext,hoverinfo:s({},i.hoverinfo,{flags:[\"lon\",\"lat\",\"z\",\"text\",\"name\"]}),hovertemplate:a()},n(\"\",{cLetter:\"z\",editTypeOverride:\"calc\"}))},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plots/attributes\":764,\"../../plots/template_attributes\":843,\"../scattermapbox/attributes\":1170}],971:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\").isArrayOrTypedArray,i=t(\"../../constants/numerical\").BADNUM,o=t(\"../../components/colorscale/calc\"),s=t(\"../../lib\")._;e.exports=function(t,e){for(var r=e._length,l=new Array(r),c=e.z,u=a(c)&&c.length,h=0;h<r;h++){var f=l[h]={},p=e.lon[h],d=e.lat[h];if(f.lonlat=n(p)&&n(d)?[+p,+d]:[i,i],u){var g=c[h];f.z=n(g)?g:i}}return o(t,e,{vals:u?c:[0,1],containerStr:\"\",cLetter:\"z\"}),r&&(l[0].t={labels:{lat:s(t,\"lat:\")+\" \",lon:s(t,\"lon:\")+\" \"}}),l}},{\"../../components/colorscale/calc\":602,\"../../constants/numerical\":695,\"../../lib\":719,\"fast-isnumeric\":226}],972:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\"),i=t(\"../../components/color\"),o=t(\"../../components/colorscale\"),s=t(\"../../constants/numerical\").BADNUM,l=t(\"../../lib/geojson_utils\").makeBlank;e.exports=function(t){var e=t[0].trace,r=!0===e.visible&&0!==e._length,c=e._opts={heatmap:{layout:{visibility:\"none\"},paint:{}},geojson:l()};if(!r)return c;var u,h=[],f=e.z,p=e.radius,d=a.isArrayOrTypedArray(f)&&f.length,g=a.isArrayOrTypedArray(p);for(u=0;u<t.length;u++){var v=t[u],m=v.lonlat;if(m[0]!==s){var y={};if(d){var x=v.z;y.z=x!==s?x:0}g&&(y.r=n(p[u])&&p[u]>0?+p[u]:0),h.push({type:\"Feature\",geometry:{type:\"Point\",coordinates:m},properties:y})}}var b=o.extractOpts(e),_=b.reversescale?o.flipScale(b.colorscale):b.colorscale,w=_[0][1],k=[\"interpolate\",[\"linear\"],[\"heatmap-density\"],0,i.opacity(w)<1?w:i.addOpacity(w,0)];for(u=1;u<_.length;u++)k.push(_[u][0],_[u][1]);var T=[\"interpolate\",[\"linear\"],[\"get\",\"z\"],b.min,0,b.max,1];return a.extendFlat(c.heatmap.paint,{\"heatmap-weight\":d?T:1/(b.max-b.min),\"heatmap-color\":k,\"heatmap-radius\":g?{type:\"identity\",property:\"r\"}:e.radius,\"heatmap-opacity\":e.opacity}),c.geojson={type:\"FeatureCollection\",features:h},c.heatmap.layout.visibility=\"visible\",c}},{\"../../components/color\":594,\"../../components/colorscale\":606,\"../../constants/numerical\":695,\"../../lib\":719,\"../../lib/geojson_utils\":714,\"fast-isnumeric\":226}],973:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/colorscale/defaults\"),i=t(\"./attributes\");e.exports=function(t,e,r,o){function s(r,a){return n.coerce(t,e,i,r,a)}var l=s(\"lon\")||[],c=s(\"lat\")||[],u=Math.min(l.length,c.length);u?(e._length=u,s(\"z\"),s(\"radius\"),s(\"below\"),s(\"text\"),s(\"hovertext\"),s(\"hovertemplate\"),a(t,e,o,s,{prefix:\"\",cLetter:\"z\"})):e.visible=!1}},{\"../../components/colorscale/defaults\":604,\"../../lib\":719,\"./attributes\":970}],974:[function(t,e,r){\"use strict\";e.exports=function(t,e){return t.lon=e.lon,t.lat=e.lat,t.z=e.z,t}},{}],975:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"../scattermapbox/hover\");e.exports=function(t,e,r){var o=i(t,e,r);if(o){var s=o[0],l=s.cd,c=l[0].trace,u=l[s.index];if(delete s.color,\"z\"in u){var h=s.subplot.mockAxis;s.z=u.z,s.zLabel=a.tickText(h,h.c2l(u.z),\"hover\").text}return s.extraText=function(t,e,r){if(t.hovertemplate)return;var a=(e.hi||t.hoverinfo).split(\"+\"),i=-1!==a.indexOf(\"all\"),o=-1!==a.indexOf(\"lon\"),s=-1!==a.indexOf(\"lat\"),l=e.lonlat,c=[];function u(t){return t+\"\\xb0\"}i||o&&s?c.push(\"(\"+u(l[0])+\", \"+u(l[1])+\")\"):o?c.push(r.lon+u(l[0])):s&&c.push(r.lat+u(l[1]));(i||-1!==a.indexOf(\"text\"))&&n.fillText(e,t,c);return c.join(\"<br>\")}(c,u,l[0].t.labels),[s]}}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../scattermapbox/hover\":1174}],976:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../heatmap/colorbar\"),calc:t(\"./calc\"),plot:t(\"./plot\"),hoverPoints:t(\"./hover\"),eventData:t(\"./event_data\"),getBelow:function(t,e){for(var r=e.getMapLayers(),n=0;n<r.length;n++){var a=r[n],i=a.id;if(\"symbol\"===a.type&&\"string\"==typeof i&&-1===i.indexOf(\"plotly-\"))return i}},moduleType:\"trace\",name:\"densitymapbox\",basePlotModule:t(\"../../plots/mapbox\"),categories:[\"mapbox\",\"gl\"],meta:{hr_name:\"density_mapbox\"}}},{\"../../plots/mapbox\":822,\"../heatmap/colorbar\":1003,\"./attributes\":970,\"./calc\":971,\"./defaults\":973,\"./event_data\":974,\"./hover\":975,\"./plot\":977}],977:[function(t,e,r){\"use strict\";var n=t(\"./convert\"),a=t(\"../../plots/mapbox/constants\").traceLayerPrefix;function i(t,e){this.subplot=t,this.uid=e,this.sourceId=\"source-\"+e,this.layerList=[[\"heatmap\",a+e+\"-heatmap\"]],this.below=null}var o=i.prototype;o.update=function(t){var e=this.subplot,r=this.layerList,a=n(t),i=e.belowLookup[\"trace-\"+this.uid];e.map.getSource(this.sourceId).setData(a.geojson),i!==this.below&&(this._removeLayers(),this._addLayers(a,i),this.below=i);for(var o=0;o<r.length;o++){var s=r[o],l=s[0],c=s[1],u=a[l];e.setOptions(c,\"setLayoutProperty\",u.layout),\"visible\"===u.layout.visibility&&e.setOptions(c,\"setPaintProperty\",u.paint)}},o._addLayers=function(t,e){for(var r=this.subplot,n=this.layerList,a=this.sourceId,i=0;i<n.length;i++){var o=n[i],s=o[0],l=t[s];r.addLayer({type:s,id:o[1],source:a,layout:l.layout,paint:l.paint},e)}},o._removeLayers=function(){for(var t=this.subplot.map,e=this.layerList,r=e.length-1;r>=0;r--)t.removeLayer(e[r][1])},o.dispose=function(){var t=this.subplot.map;this._removeLayers(),t.removeSource(this.sourceId)},e.exports=function(t,e){var r=e[0].trace,a=new i(t,r.uid),o=a.sourceId,s=n(e),l=a.below=t.belowLookup[\"trace-\"+r.uid];return t.map.addSource(o,{type:\"geojson\",data:s.geojson}),a._addLayers(s,l),a}},{\"../../plots/mapbox/constants\":820,\"./convert\":972}],978:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e){for(var r=0;r<t.length;r++)t[r].i=r;n.mergeArray(e.text,t,\"tx\"),n.mergeArray(e.hovertext,t,\"htx\");var a=e.marker;if(a){n.mergeArray(a.opacity,t,\"mo\"),n.mergeArray(a.color,t,\"mc\");var i=a.line;i&&(n.mergeArray(i.color,t,\"mlc\"),n.mergeArrayCastPositive(i.width,t,\"mlw\"))}}},{\"../../lib\":719}],979:[function(t,e,r){\"use strict\";var n=t(\"../bar/attributes\"),a=t(\"../scatter/attributes\").line,i=t(\"../../plots/attributes\"),o=t(\"../../plots/template_attributes\").hovertemplateAttrs,s=t(\"../../plots/template_attributes\").texttemplateAttrs,l=t(\"./constants\"),c=t(\"../../lib/extend\").extendFlat,u=t(\"../../components/color\");e.exports={x:n.x,x0:n.x0,dx:n.dx,y:n.y,y0:n.y0,dy:n.dy,hovertext:n.hovertext,hovertemplate:o({},{keys:l.eventDataKeys}),hoverinfo:c({},i.hoverinfo,{flags:[\"name\",\"x\",\"y\",\"text\",\"percent initial\",\"percent previous\",\"percent total\"]}),textinfo:{valType:\"flaglist\",flags:[\"label\",\"text\",\"percent initial\",\"percent previous\",\"percent total\",\"value\"],extras:[\"none\"],editType:\"plot\",arrayOk:!1},texttemplate:s({editType:\"plot\"},{keys:l.eventDataKeys.concat([\"label\",\"value\"])}),text:n.text,textposition:c({},n.textposition,{dflt:\"auto\"}),insidetextanchor:c({},n.insidetextanchor,{dflt:\"middle\"}),textangle:c({},n.textangle,{dflt:0}),textfont:n.textfont,insidetextfont:n.insidetextfont,outsidetextfont:n.outsidetextfont,constraintext:n.constraintext,cliponaxis:n.cliponaxis,orientation:c({},n.orientation,{}),offset:c({},n.offset,{arrayOk:!1}),width:c({},n.width,{arrayOk:!1}),marker:n.marker,connector:{fillcolor:{valType:\"color\",editType:\"style\"},line:{color:c({},a.color,{dflt:u.defaultLine}),width:c({},a.width,{dflt:0,editType:\"plot\"}),dash:a.dash,editType:\"style\"},visible:{valType:\"boolean\",dflt:!0,editType:\"plot\"},editType:\"plot\"},offsetgroup:n.offsetgroup,alignmentgroup:n.alignmentgroup}},{\"../../components/color\":594,\"../../lib/extend\":710,\"../../plots/attributes\":764,\"../../plots/template_attributes\":843,\"../bar/attributes\":858,\"../scatter/attributes\":1111,\"./constants\":981}],980:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),a=t(\"./arrays_to_calcdata\"),i=t(\"../scatter/calc_selection\"),o=t(\"../../constants/numerical\").BADNUM;function s(t){return t===o?0:t}e.exports=function(t,e){var r,l,c,u,h=n.getFromId(t,e.xaxis||\"x\"),f=n.getFromId(t,e.yaxis||\"y\");\"h\"===e.orientation?(r=h.makeCalcdata(e,\"x\"),l=f.makeCalcdata(e,\"y\")):(r=f.makeCalcdata(e,\"y\"),l=h.makeCalcdata(e,\"x\"));var p,d=Math.min(l.length,r.length),g=new Array(d);for(e._base=[],c=0;c<d;c++){r[c]<0&&(r[c]=o);var v=!1;r[c]!==o&&c+1<d&&r[c+1]!==o&&(v=!0),u=g[c]={p:l[c],s:r[c],cNext:v},e._base[c]=-.5*u.s,e.ids&&(u.id=String(e.ids[c])),0===c&&(g[0].vTotal=0),g[0].vTotal+=s(u.s),u.begR=s(u.s)/s(g[0].s)}for(c=0;c<d;c++)(u=g[c]).s!==o&&(u.sumR=u.s/g[0].vTotal,u.difR=void 0!==p?u.s/p:1,p=u.s);return a(g,e),i(g,e),g}},{\"../../constants/numerical\":695,\"../../plots/cartesian/axes\":767,\"../scatter/calc_selection\":1113,\"./arrays_to_calcdata\":978}],981:[function(t,e,r){\"use strict\";e.exports={eventDataKeys:[\"percentInitial\",\"percentPrevious\",\"percentTotal\"]}},{}],982:[function(t,e,r){\"use strict\";var n=t(\"../bar/cross_trace_calc\").setGroupPositions;e.exports=function(t,e){var r,a,i=t._fullLayout,o=t._fullData,s=t.calcdata,l=e.xaxis,c=e.yaxis,u=[],h=[],f=[];for(a=0;a<o.length;a++){var p=o[a],d=\"h\"===p.orientation;!0===p.visible&&p.xaxis===l._id&&p.yaxis===c._id&&\"funnel\"===p.type&&(r=s[a],d?f.push(r):h.push(r),u.push(r))}var g={mode:i.funnelmode,norm:i.funnelnorm,gap:i.funnelgap,groupgap:i.funnelgroupgap};for(n(t,l,c,h,g),n(t,c,l,f,g),a=0;a<u.length;a++){r=u[a];for(var v=0;v<r.length;v++)v+1<r.length&&(r[v].nextP0=r[v+1].p0,r[v].nextS0=r[v+1].s0,r[v].nextP1=r[v+1].p1,r[v].nextS1=r[v+1].s1)}}},{\"../bar/cross_trace_calc\":861}],983:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../bar/defaults\").handleGroupingDefaults,i=t(\"../bar/defaults\").handleText,o=t(\"../scatter/xy_defaults\"),s=t(\"./attributes\"),l=t(\"../../components/color\");e.exports={supplyDefaults:function(t,e,r,a){function c(r,a){return n.coerce(t,e,s,r,a)}if(o(t,e,a,c)){c(\"orientation\",e.y&&!e.x?\"v\":\"h\"),c(\"offset\"),c(\"width\");var u=c(\"text\");c(\"hovertext\"),c(\"hovertemplate\");var h=c(\"textposition\");i(t,e,a,c,h,{moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!0,moduleHasCliponaxis:!0,moduleHasTextangle:!0,moduleHasInsideanchor:!0}),\"none\"===e.textposition||e.texttemplate||c(\"textinfo\",Array.isArray(u)?\"text+value\":\"value\");var f=c(\"marker.color\",r);c(\"marker.line.color\",l.defaultLine),c(\"marker.line.width\"),c(\"connector.visible\")&&(c(\"connector.fillcolor\",function(t){var e=n.isArrayOrTypedArray(t)?\"#000\":t;return l.addOpacity(e,.5*l.opacity(e))}(f)),c(\"connector.line.width\")&&(c(\"connector.line.color\"),c(\"connector.line.dash\")))}else e.visible=!1},crossTraceDefaults:function(t,e){var r,i;function o(t){return n.coerce(i._input,i,s,t)}if(\"group\"===e.funnelmode)for(var l=0;l<t.length;l++)r=(i=t[l])._input,a(r,i,e,o)}}},{\"../../components/color\":594,\"../../lib\":719,\"../bar/defaults\":862,\"../scatter/xy_defaults\":1136,\"./attributes\":979}],984:[function(t,e,r){\"use strict\";e.exports=function(t,e){return t.x=\"xVal\"in e?e.xVal:e.x,t.y=\"yVal\"in e?e.yVal:e.y,\"percentInitial\"in e&&(t.percentInitial=e.percentInitial),\"percentPrevious\"in e&&(t.percentPrevious=e.percentPrevious),\"percentTotal\"in e&&(t.percentTotal=e.percentTotal),e.xa&&(t.xaxis=e.xa),e.ya&&(t.yaxis=e.ya),t}},{}],985:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\").opacity,a=t(\"../bar/hover\").hoverOnBars,i=t(\"../../lib\").formatPercent;e.exports=function(t,e,r,o){var s=a(t,e,r,o);if(s){var l=s.cd,c=l[0].trace,u=\"h\"===c.orientation,h=l[s.index];s[(u?\"x\":\"y\")+\"LabelVal\"]=h.s,s.percentInitial=h.begR,s.percentInitialLabel=i(h.begR,1),s.percentPrevious=h.difR,s.percentPreviousLabel=i(h.difR,1),s.percentTotal=h.sumR,s.percentTotalLabel=i(h.sumR,1);var f=h.hi||c.hoverinfo,p=[];if(f&&\"none\"!==f&&\"skip\"!==f){var d=\"all\"===f,g=f.split(\"+\"),v=function(t){return d||-1!==g.indexOf(t)};v(\"percent initial\")&&p.push(s.percentInitialLabel+\" of initial\"),v(\"percent previous\")&&p.push(s.percentPreviousLabel+\" of previous\"),v(\"percent total\")&&p.push(s.percentTotalLabel+\" of total\")}return s.extraText=p.join(\"<br>\"),s.color=function(t,e){var r=t.marker,a=e.mc||r.color,i=e.mlc||r.line.color,o=e.mlw||r.line.width;if(n(a))return a;if(n(i)&&o)return i}(c,h),[s]}}},{\"../../components/color\":594,\"../../lib\":719,\"../bar/hover\":864}],986:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\").supplyDefaults,crossTraceDefaults:t(\"./defaults\").crossTraceDefaults,supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\"),crossTraceCalc:t(\"./cross_trace_calc\"),plot:t(\"./plot\"),style:t(\"./style\").style,hoverPoints:t(\"./hover\"),eventData:t(\"./event_data\"),selectPoints:t(\"../bar/select\"),moduleType:\"trace\",name:\"funnel\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"bar-like\",\"cartesian\",\"svg\",\"oriented\",\"showLegend\",\"zoomScale\"],meta:{}}},{\"../../plots/cartesian\":778,\"../bar/select\":869,\"./attributes\":979,\"./calc\":980,\"./cross_trace_calc\":982,\"./defaults\":983,\"./event_data\":984,\"./hover\":985,\"./layout_attributes\":987,\"./layout_defaults\":988,\"./plot\":989,\"./style\":990}],987:[function(t,e,r){\"use strict\";e.exports={funnelmode:{valType:\"enumerated\",values:[\"stack\",\"group\",\"overlay\"],dflt:\"stack\",editType:\"calc\"},funnelgap:{valType:\"number\",min:0,max:1,editType:\"calc\"},funnelgroupgap:{valType:\"number\",min:0,max:1,dflt:0,editType:\"calc\"}}},{}],988:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./layout_attributes\");e.exports=function(t,e,r){var i=!1;function o(r,i){return n.coerce(t,e,a,r,i)}for(var s=0;s<r.length;s++){var l=r[s];if(l.visible&&\"funnel\"===l.type){i=!0;break}}i&&(o(\"funnelmode\"),o(\"funnelgap\",.2),o(\"funnelgroupgap\"))}},{\"../../lib\":719,\"./layout_attributes\":987}],989:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../lib\"),i=t(\"../../components/drawing\"),o=t(\"../bar/plot\").plot;function s(t,e,r,n){var a=[],i=[],o=n?e:r,s=n?r:e;return a[0]=o.c2p(t.s0,!0),i[0]=s.c2p(t.p0,!0),a[1]=o.c2p(t.s1,!0),i[1]=s.c2p(t.p1,!0),a[2]=o.c2p(t.nextS0,!0),i[2]=s.c2p(t.nextP0,!0),a[3]=o.c2p(t.nextS1,!0),i[3]=s.c2p(t.nextP1,!0),n?[a,i]:[i,a]}e.exports=function(t,e,r,l){var c=t._fullLayout;!function(t,e,r,o){var l=e.xaxis,c=e.yaxis;a.makeTraceGroups(o,r,\"trace bars\").each(function(r){var o=n.select(this),u=r[0].trace,h=a.ensureSingle(o,\"g\",\"regions\");if(u.connector&&u.connector.visible){var f=\"h\"===u.orientation,p=h.selectAll(\"g.region\").data(a.identity);p.enter().append(\"g\").classed(\"region\",!0),p.exit().remove();var d=p.size();p.each(function(r,o){if(o===d-1||r.cNext){var u=s(r,l,c,f),h=u[0],p=u[1],g=\"\";void 0!==h[3]&&void 0!==p[3]&&(g+=f?\"M\"+h[0]+\",\"+p[1]+\"L\"+h[2]+\",\"+p[2]+\"H\"+h[3]+\"L\"+h[1]+\",\"+p[1]+\"Z\":\"M\"+h[1]+\",\"+p[1]+\"L\"+h[2]+\",\"+p[3]+\"V\"+p[2]+\"L\"+h[1]+\",\"+p[0]+\"Z\"),a.ensureSingle(n.select(this),\"path\").attr(\"d\",g).call(i.setClipUrl,e.layerClipId,t)}})}else h.remove()})}(t,e,r,l),function(t,e,r,o){var l=e.xaxis,c=e.yaxis;a.makeTraceGroups(o,r,\"trace bars\").each(function(r){var o=n.select(this),u=r[0].trace,h=a.ensureSingle(o,\"g\",\"lines\");if(u.connector&&u.connector.visible&&u.connector.line.width){var f=\"h\"===u.orientation,p=h.selectAll(\"g.line\").data(a.identity);p.enter().append(\"g\").classed(\"line\",!0),p.exit().remove();var d=p.size();p.each(function(r,o){if(o===d-1||r.cNext){var u=s(r,l,c,f),h=u[0],p=u[1],g=\"\";void 0!==h[3]&&void 0!==p[3]&&(f?(g+=\"M\"+h[0]+\",\"+p[1]+\"L\"+h[2]+\",\"+p[2],g+=\"M\"+h[1]+\",\"+p[1]+\"L\"+h[3]+\",\"+p[2]):(g+=\"M\"+h[1]+\",\"+p[1]+\"L\"+h[2]+\",\"+p[3],g+=\"M\"+h[1]+\",\"+p[0]+\"L\"+h[2]+\",\"+p[2])),\"\"===g&&(g=\"M0,0Z\"),a.ensureSingle(n.select(this),\"path\").attr(\"d\",g).call(i.setClipUrl,e.layerClipId,t)}})}else h.remove()})}(t,e,r,l),o(t,e,r,l,{mode:c.funnelmode,norm:c.funnelmode,gap:c.funnelgap,groupgap:c.funnelgroupgap})}},{\"../../components/drawing\":615,\"../../lib\":719,\"../bar/plot\":868,d3:164}],990:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/drawing\"),i=t(\"../../components/color\"),o=t(\"../../constants/interactions\").DESELECTDIM,s=t(\"../bar/style\").styleTextPoints;e.exports={style:function(t,e,r){var l=r||n.select(t).selectAll(\"g.funnellayer\").selectAll(\"g.trace\");l.style(\"opacity\",function(t){return t[0].trace.opacity}),l.each(function(e){var r=n.select(this),l=e[0].trace;r.selectAll(\".point > path\").each(function(t){if(!t.isBlank){var e=l.marker;n.select(this).call(i.fill,t.mc||e.color).call(i.stroke,t.mlc||e.line.color).call(a.dashLine,e.line.dash,t.mlw||e.line.width).style(\"opacity\",l.selectedpoints&&!t.selected?o:1)}}),s(r,l,t),r.selectAll(\".regions\").each(function(){n.select(this).selectAll(\"path\").style(\"stroke-width\",0).call(i.fill,l.connector.fillcolor)}),r.selectAll(\".lines\").each(function(){var t=l.connector.line;a.lineGroupStyle(n.select(this).selectAll(\"path\"),t.width,t.color,t.dash)})})}}},{\"../../components/color\":594,\"../../components/drawing\":615,\"../../constants/interactions\":694,\"../bar/style\":871,d3:164}],991:[function(t,e,r){\"use strict\";var n=t(\"../pie/attributes\"),a=t(\"../../plots/attributes\"),i=t(\"../../plots/domain\").attributes,o=t(\"../../plots/template_attributes\").hovertemplateAttrs,s=t(\"../../plots/template_attributes\").texttemplateAttrs,l=t(\"../../lib/extend\").extendFlat;e.exports={labels:n.labels,label0:n.label0,dlabel:n.dlabel,values:n.values,marker:{colors:n.marker.colors,line:{color:l({},n.marker.line.color,{dflt:null}),width:l({},n.marker.line.width,{dflt:1}),editType:\"calc\"},editType:\"calc\"},text:n.text,hovertext:n.hovertext,scalegroup:l({},n.scalegroup,{}),textinfo:l({},n.textinfo,{flags:[\"label\",\"text\",\"value\",\"percent\"]}),texttemplate:s({editType:\"plot\"},{keys:[\"label\",\"color\",\"value\",\"text\",\"percent\"]}),hoverinfo:l({},a.hoverinfo,{flags:[\"label\",\"text\",\"value\",\"percent\",\"name\"]}),hovertemplate:o({},{keys:[\"label\",\"color\",\"value\",\"text\",\"percent\"]}),textposition:l({},n.textposition,{values:[\"inside\",\"none\"],dflt:\"inside\"}),textfont:n.textfont,insidetextfont:n.insidetextfont,title:{text:n.title.text,font:n.title.font,position:l({},n.title.position,{values:[\"top left\",\"top center\",\"top right\"],dflt:\"top center\"}),editType:\"plot\"},domain:i({name:\"funnelarea\",trace:!0,editType:\"calc\"}),aspectratio:{valType:\"number\",min:0,dflt:1,editType:\"plot\"},baseratio:{valType:\"number\",min:0,max:1,dflt:.333,editType:\"plot\"}}},{\"../../lib/extend\":710,\"../../plots/attributes\":764,\"../../plots/domain\":792,\"../../plots/template_attributes\":843,\"../pie/attributes\":1085}],992:[function(t,e,r){\"use strict\";var n=t(\"../../plots/plots\");r.name=\"funnelarea\",r.plot=function(t,e,a,i){n.plotBasePlot(r.name,t,e,a,i)},r.clean=function(t,e,a,i){n.cleanBasePlot(r.name,t,e,a,i)}},{\"../../plots/plots\":828}],993:[function(t,e,r){\"use strict\";var n=t(\"../pie/calc\");e.exports={calc:function(t,e){return n.calc(t,e)},crossTraceCalc:function(t){n.crossTraceCalc(t,{type:\"funnelarea\"})}}},{\"../pie/calc\":1087}],994:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./attributes\"),i=t(\"../../plots/domain\").defaults,o=t(\"../bar/defaults\").handleText;e.exports=function(t,e,r,s){function l(r,i){return n.coerce(t,e,a,r,i)}var c,u=l(\"values\"),h=n.isArrayOrTypedArray(u),f=l(\"labels\");if(Array.isArray(f)?(c=f.length,h&&(c=Math.min(c,u.length))):h&&(c=u.length,l(\"label0\"),l(\"dlabel\")),c){e._length=c,l(\"marker.line.width\")&&l(\"marker.line.color\",s.paper_bgcolor),l(\"marker.colors\"),l(\"scalegroup\");var p,d=l(\"text\"),g=l(\"texttemplate\");if(g||(p=l(\"textinfo\",Array.isArray(d)?\"text+percent\":\"percent\")),l(\"hovertext\"),l(\"hovertemplate\"),g||p&&\"none\"!==p){var v=l(\"textposition\");o(t,e,s,l,v,{moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!1,moduleHasCliponaxis:!1,moduleHasTextangle:!1,moduleHasInsideanchor:!1})}i(e,s,l),l(\"title.text\")&&(l(\"title.position\"),n.coerceFont(l,\"title.font\",s.font)),l(\"aspectratio\"),l(\"baseratio\")}else e.visible=!1}},{\"../../lib\":719,\"../../plots/domain\":792,\"../bar/defaults\":862,\"./attributes\":991}],995:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"funnelarea\",basePlotModule:t(\"./base_plot\"),categories:[\"pie-like\",\"funnelarea\",\"showLegend\"],attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\"),supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\").calc,crossTraceCalc:t(\"./calc\").crossTraceCalc,plot:t(\"./plot\"),style:t(\"./style\"),styleOne:t(\"../pie/style_one\"),meta:{}}},{\"../pie/style_one\":1096,\"./attributes\":991,\"./base_plot\":992,\"./calc\":993,\"./defaults\":994,\"./layout_attributes\":996,\"./layout_defaults\":997,\"./plot\":998,\"./style\":999}],996:[function(t,e,r){\"use strict\";var n=t(\"../pie/layout_attributes\").hiddenlabels;e.exports={hiddenlabels:n,funnelareacolorway:{valType:\"colorlist\",editType:\"calc\"},extendfunnelareacolors:{valType:\"boolean\",dflt:!0,editType:\"calc\"}}},{\"../pie/layout_attributes\":1092}],997:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./layout_attributes\");e.exports=function(t,e){function r(r,i){return n.coerce(t,e,a,r,i)}r(\"hiddenlabels\"),r(\"funnelareacolorway\",e.colorway),r(\"extendfunnelareacolors\")}},{\"../../lib\":719,\"./layout_attributes\":996}],998:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/drawing\"),i=t(\"../../lib\"),o=t(\"../../lib/svg_text_utils\"),s=t(\"../bar/plot\").toMoveInsideBar,l=t(\"../pie/helpers\"),c=t(\"../pie/plot\"),u=c.attachFxHandlers,h=c.determineInsideTextFont,f=c.layoutAreas,p=c.prerenderTitles,d=c.positionTitleOutside;function g(t,e){return\"l\"+(e[0]-t[0])+\",\"+(e[1]-t[1])}e.exports=function(t,e){var r=t._fullLayout;p(e,t),f(e,r._size),i.makeTraceGroups(r._funnelarealayer,e,\"trace\").each(function(e){var f=n.select(this),p=e[0],v=p.trace;!function(t){if(!t.length)return;var e=t[0],r=e.trace,n=r.aspectratio,a=r.baseratio;a>.999&&(a=.999);var i,o=Math.pow(a,2),s=e.vTotal,l=s,c=s*o/(1-o)/s;function u(){var t,e={x:t=Math.sqrt(c),y:-t};return[e.x,e.y]}var h,f,p=[];for(p.push(u()),h=t.length-1;h>-1;h--)if(!(f=t[h]).hidden){var d=f.v/l;c+=d,p.push(u())}var g=1/0,v=-1/0;for(h=0;h<p.length;h++)i=p[h],g=Math.min(g,i[1]),v=Math.max(v,i[1]);for(h=0;h<p.length;h++)p[h][1]-=(v+g)/2;var m=p[p.length-1][0],y=e.r,x=(v-g)/2,b=y/m,_=y/x*n;for(e.r=_*x,h=0;h<p.length;h++)p[h][0]*=b,p[h][1]*=_;var w=[-(i=p[0])[0],i[1]],k=[i[0],i[1]],T=0;for(h=t.length-1;h>-1;h--)if(!(f=t[h]).hidden){var A=p[T+=1][0],M=p[T][1];f.TL=[-A,M],f.TR=[A,M],f.BL=w,f.BR=k,f.pxmid=(S=f.TR,E=f.BR,[.5*(S[0]+E[0]),.5*(S[1]+E[1])]),w=f.TL,k=f.TR}var S,E}(e),f.each(function(){var f=n.select(this).selectAll(\"g.slice\").data(e);f.enter().append(\"g\").classed(\"slice\",!0),f.exit().remove(),f.each(function(r){if(r.hidden)n.select(this).selectAll(\"path,g\").remove();else{r.pointNumber=r.i,r.curveNumber=v.index;var f=p.cx,d=p.cy,m=n.select(this),y=m.selectAll(\"path.surface\").data([r]);y.enter().append(\"path\").classed(\"surface\",!0).style({\"pointer-events\":\"all\"}),m.call(u,t,e);var x=\"M\"+(f+r.TR[0])+\",\"+(d+r.TR[1])+g(r.TR,r.BR)+g(r.BR,r.BL)+g(r.BL,r.TL)+\"Z\";y.attr(\"d\",x),c.formatSliceLabel(t,r,p);var b=l.castOption(v.textposition,r.pts),_=m.selectAll(\"g.slicetext\").data(r.text&&\"none\"!==b?[0]:[]);_.enter().append(\"g\").classed(\"slicetext\",!0),_.exit().remove(),_.each(function(){var e=i.ensureSingle(n.select(this),\"text\",\"\",function(t){t.attr(\"data-notex\",1)});e.text(r.text).attr({class:\"slicetext\",transform:\"\",\"text-anchor\":\"middle\"}).call(a.font,h(v,r,t._fullLayout.font)).call(o.convertToTspans,t);var l,c,u,p=a.bBox(e.node()),g=Math.min(r.BL[1],r.BR[1]),m=Math.max(r.TL[1],r.TR[1]);c=Math.max(r.TL[0],r.BL[0]),u=Math.min(r.TR[0],r.BR[0]),l=i.getTextTransform(s(c,u,g,m,p,{isHorizontal:!0,constrained:!0,angle:0,anchor:\"middle\"})),e.attr(\"transform\",\"translate(\"+f+\",\"+d+\")\"+l)})}});var m=n.select(this).selectAll(\"g.titletext\").data(v.title.text?[0]:[]);m.enter().append(\"g\").classed(\"titletext\",!0),m.exit().remove(),m.each(function(){var e=i.ensureSingle(n.select(this),\"text\",\"\",function(t){t.attr(\"data-notex\",1)}),s=v.title.text;v._meta&&(s=i.templateString(s,v._meta)),e.text(s).attr({class:\"titletext\",transform:\"\",\"text-anchor\":\"middle\"}).call(a.font,v.title.font).call(o.convertToTspans,t);var l=d(p,r._size);e.attr(\"transform\",\"translate(\"+l.x+\",\"+l.y+\")\"+(l.scale<1?\"scale(\"+l.scale+\")\":\"\")+\"translate(\"+l.tx+\",\"+l.ty+\")\")})})})}},{\"../../components/drawing\":615,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../bar/plot\":868,\"../pie/helpers\":1090,\"../pie/plot\":1094,d3:164}],999:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../pie/style_one\");e.exports=function(t){t._fullLayout._funnelarealayer.selectAll(\".trace\").each(function(t){var e=t[0].trace,r=n.select(this);r.style({opacity:e.opacity}),r.selectAll(\"path.surface\").each(function(t){n.select(this).call(a,t,e)})})}},{\"../pie/style_one\":1096,d3:164}],1000:[function(t,e,r){\"use strict\";var n=t(\"../scatter/attributes\"),a=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"../../components/colorscale/attributes\"),o=(t(\"../../constants/docs\").FORMAT_LINK,t(\"../../lib/extend\").extendFlat);e.exports=o({z:{valType:\"data_array\",editType:\"calc\"},x:o({},n.x,{impliedEdits:{xtype:\"array\"}}),x0:o({},n.x0,{impliedEdits:{xtype:\"scaled\"}}),dx:o({},n.dx,{impliedEdits:{xtype:\"scaled\"}}),y:o({},n.y,{impliedEdits:{ytype:\"array\"}}),y0:o({},n.y0,{impliedEdits:{ytype:\"scaled\"}}),dy:o({},n.dy,{impliedEdits:{ytype:\"scaled\"}}),text:{valType:\"data_array\",editType:\"calc\"},hovertext:{valType:\"data_array\",editType:\"calc\"},transpose:{valType:\"boolean\",dflt:!1,editType:\"calc\"},xtype:{valType:\"enumerated\",values:[\"array\",\"scaled\"],editType:\"calc+clearAxisTypes\"},ytype:{valType:\"enumerated\",values:[\"array\",\"scaled\"],editType:\"calc+clearAxisTypes\"},zsmooth:{valType:\"enumerated\",values:[\"fast\",\"best\",!1],dflt:!1,editType:\"calc\"},connectgaps:{valType:\"boolean\",dflt:!1,editType:\"calc\"},xgap:{valType:\"number\",dflt:0,min:0,editType:\"plot\"},ygap:{valType:\"number\",dflt:0,min:0,editType:\"plot\"},zhoverformat:{valType:\"string\",dflt:\"\",editType:\"none\"},hovertemplate:a()},{transforms:void 0},i(\"\",{cLetter:\"z\",autoColorDflt:!1}))},{\"../../components/colorscale/attributes\":601,\"../../constants/docs\":690,\"../../lib/extend\":710,\"../../plots/template_attributes\":843,\"../scatter/attributes\":1111}],1001:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\"),i=t(\"../../plots/cartesian/axes\"),o=t(\"../histogram2d/calc\"),s=t(\"../../components/colorscale/calc\"),l=t(\"./convert_column_xyz\"),c=t(\"./clean_2d_array\"),u=t(\"./interp2d\"),h=t(\"./find_empties\"),f=t(\"./make_bound_array\");e.exports=function(t,e){var r,p,d,g,v,m,y,x,b,_=i.getFromId(t,e.xaxis||\"x\"),w=i.getFromId(t,e.yaxis||\"y\"),k=n.traceIs(e,\"contour\"),T=n.traceIs(e,\"histogram\"),A=n.traceIs(e,\"gl2d\"),M=k?\"best\":e.zsmooth;if(_._minDtick=0,w._minDtick=0,T)r=(b=o(t,e)).x,p=b.x0,d=b.dx,g=b.y,v=b.y0,m=b.dy,y=b.z;else{var S=e.z;a.isArray1D(S)?(l(e,_,w,\"x\",\"y\",[\"z\"]),r=e._x,g=e._y,S=e._z):(r=e._x=e.x?_.makeCalcdata(e,\"x\"):[],g=e._y=e.y?w.makeCalcdata(e,\"y\"):[]),p=e.x0,d=e.dx,v=e.y0,m=e.dy,y=c(S,e,_,w),(k||e.connectgaps)&&(e._emptypoints=h(y),u(y,e._emptypoints))}function E(t){M=e._input.zsmooth=e.zsmooth=!1,a.warn('cannot use zsmooth: \"fast\": '+t)}if(\"fast\"===M)if(\"log\"===_.type||\"log\"===w.type)E(\"log axis found\");else if(!T){if(r.length){var C=(r[r.length-1]-r[0])/(r.length-1),L=Math.abs(C/100);for(x=0;x<r.length-1;x++)if(Math.abs(r[x+1]-r[x]-C)>L){E(\"x scale is not linear\");break}}if(g.length&&\"fast\"===M){var P=(g[g.length-1]-g[0])/(g.length-1),O=Math.abs(P/100);for(x=0;x<g.length-1;x++)if(Math.abs(g[x+1]-g[x]-P)>O){E(\"y scale is not linear\");break}}}var I=a.maxRowLength(y),z=\"scaled\"===e.xtype?\"\":r,D=f(e,z,p,d,I,_),R=\"scaled\"===e.ytype?\"\":g,F=f(e,R,v,m,y.length,w);A||(e._extremes[_._id]=i.findExtremes(_,D),e._extremes[w._id]=i.findExtremes(w,F));var B={x:D,y:F,z:y,text:e._text||e.text,hovertext:e._hovertext||e.hovertext};if(z&&z.length===D.length-1&&(B.xCenter=z),R&&R.length===F.length-1&&(B.yCenter=R),T&&(B.xRanges=b.xRanges,B.yRanges=b.yRanges,B.pts=b.pts),k||s(t,e,{vals:y,cLetter:\"z\"}),k&&e.contours&&\"heatmap\"===e.contours.coloring){var N={type:\"contour\"===e.type?\"heatmap\":\"histogram2d\",xcalendar:e.xcalendar,ycalendar:e.ycalendar};B.xfill=f(N,z,p,d,I,_),B.yfill=f(N,R,v,m,y.length,w)}return[B]}},{\"../../components/colorscale/calc\":602,\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../../registry\":848,\"../histogram2d/calc\":1032,\"./clean_2d_array\":1002,\"./convert_column_xyz\":1004,\"./find_empties\":1006,\"./interp2d\":1009,\"./make_bound_array\":1010}],1002:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\"),i=t(\"../../constants/numerical\").BADNUM;e.exports=function(t,e,r,o){var s,l,c,u,h,f;function p(t){if(n(t))return+t}if(e&&e.transpose){for(s=0,h=0;h<t.length;h++)s=Math.max(s,t[h].length);if(0===s)return!1;c=function(t){return t.length},u=function(t,e,r){return(t[r]||[])[e]}}else s=t.length,c=function(t,e){return t[e].length},u=function(t,e,r){return(t[e]||[])[r]};var d=function(t,e,r){return e===i||r===i?i:u(t,e,r)};function g(t){if(e&&\"carpet\"!==e.type&&\"contourcarpet\"!==e.type&&t&&\"category\"===t.type&&e[\"_\"+t._id.charAt(0)].length){var r=t._id.charAt(0),n={},o=e[\"_\"+r+\"CategoryMap\"]||e[r];for(h=0;h<o.length;h++)n[o[h]]=h;return function(e){var r=n[t._categories[e]];return r+1?r:i}}return a.identity}var v=g(r),m=g(o);o&&\"category\"===o.type&&(s=o._categories.length);var y=new Array(s);for(h=0;h<s;h++)for(l=r&&\"category\"===r.type?r._categories.length:c(t,h),y[h]=new Array(l),f=0;f<l;f++)y[h][f]=p(d(t,m(h),v(f)));return y}},{\"../../constants/numerical\":695,\"../../lib\":719,\"fast-isnumeric\":226}],1003:[function(t,e,r){\"use strict\";e.exports={min:\"zmin\",max:\"zmax\"}},{}],1004:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../constants/numerical\").BADNUM;e.exports=function(t,e,r,i,o,s){var l,c,u,h,f=t._length,p=e.makeCalcdata(t,i),d=r.makeCalcdata(t,o),g=t.text,v=void 0!==g&&n.isArray1D(g),m=t.hovertext,y=void 0!==m&&n.isArray1D(m),x=n.distinctVals(p),b=x.vals,_=n.distinctVals(d),w=_.vals,k=[];for(l=0;l<s.length;l++)k[l]=n.init2dArray(w.length,b.length);for(v&&(u=n.init2dArray(w.length,b.length)),y&&(h=n.init2dArray(w.length,b.length)),l=0;l<f;l++)if(p[l]!==a&&d[l]!==a){var T=n.findBin(p[l]+x.minDiff/2,b),A=n.findBin(d[l]+_.minDiff/2,w);for(c=0;c<s.length;c++){var M=t[s[c]];k[c][A][T]=M[l]}v&&(u[A][T]=g[l]),y&&(h[A][T]=m[l])}for(t[\"_\"+i]=b,t[\"_\"+o]=w,c=0;c<s.length;c++)t[\"_\"+s[c]]=k[c];v&&(t._text=u),y&&(t._hovertext=h),e&&\"category\"===e.type&&(t[\"_\"+i+\"CategoryMap\"]=b.map(function(t){return e._categories[t]})),r&&\"category\"===r.type&&(t[\"_\"+o+\"CategoryMap\"]=w.map(function(t){return r._categories[t]}))}},{\"../../constants/numerical\":695,\"../../lib\":719}],1005:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./xyz_defaults\"),i=t(\"./style_defaults\"),o=t(\"../../components/colorscale/defaults\"),s=t(\"./attributes\");e.exports=function(t,e,r,l){function c(r,a){return n.coerce(t,e,s,r,a)}a(t,e,c,l)?(c(\"text\"),c(\"hovertext\"),c(\"hovertemplate\"),i(t,e,c,l),c(\"connectgaps\",n.isArray1D(e.z)&&!1!==e.zsmooth),o(t,e,l,c,{prefix:\"\",cLetter:\"z\"})):e.visible=!1}},{\"../../components/colorscale/defaults\":604,\"../../lib\":719,\"./attributes\":1e3,\"./style_defaults\":1013,\"./xyz_defaults\":1014}],1006:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").maxRowLength;e.exports=function(t){var e,r,a,i,o,s,l,c,u=[],h={},f=[],p=t[0],d=[],g=[0,0,0],v=n(t);for(r=0;r<t.length;r++)for(e=d,d=p,p=t[r+1]||[],a=0;a<v;a++)void 0===d[a]&&((s=(void 0!==d[a-1]?1:0)+(void 0!==d[a+1]?1:0)+(void 0!==e[a]?1:0)+(void 0!==p[a]?1:0))?(0===r&&s++,0===a&&s++,r===t.length-1&&s++,a===d.length-1&&s++,s<4&&(h[[r,a]]=[r,a,s]),u.push([r,a,s])):f.push([r,a]));for(;f.length;){for(l={},c=!1,o=f.length-1;o>=0;o--)(s=((h[[(r=(i=f[o])[0])-1,a=i[1]]]||g)[2]+(h[[r+1,a]]||g)[2]+(h[[r,a-1]]||g)[2]+(h[[r,a+1]]||g)[2])/20)&&(l[i]=[r,a,s],f.splice(o,1),c=!0);if(!c)throw\"findEmpties iterated with no new neighbors\";for(i in l)h[i]=l[i],u.push(l[i])}return u.sort(function(t,e){return e[2]-t[2]})}},{\"../../lib\":719}],1007:[function(t,e,r){\"use strict\";var n=t(\"../../components/fx\"),a=t(\"../../lib\"),i=t(\"../../plots/cartesian/axes\"),o=t(\"../../components/colorscale\").extractOpts;e.exports=function(t,e,r,s,l,c){var u,h,f,p,d=t.cd[0],g=d.trace,v=t.xa,m=t.ya,y=d.x,x=d.y,b=d.z,_=d.xCenter,w=d.yCenter,k=d.zmask,T=g.zhoverformat,A=y,M=x;if(!1!==t.index){try{f=Math.round(t.index[1]),p=Math.round(t.index[0])}catch(e){return void a.error(\"Error hovering on heatmap, pointNumber must be [row,col], found:\",t.index)}if(f<0||f>=b[0].length||p<0||p>b.length)return}else{if(n.inbox(e-y[0],e-y[y.length-1],0)>0||n.inbox(r-x[0],r-x[x.length-1],0)>0)return;if(c){var S;for(A=[2*y[0]-y[1]],S=1;S<y.length;S++)A.push((y[S]+y[S-1])/2);for(A.push([2*y[y.length-1]-y[y.length-2]]),M=[2*x[0]-x[1]],S=1;S<x.length;S++)M.push((x[S]+x[S-1])/2);M.push([2*x[x.length-1]-x[x.length-2]])}f=Math.max(0,Math.min(A.length-2,a.findBin(e,A))),p=Math.max(0,Math.min(M.length-2,a.findBin(r,M)))}var E=v.c2p(y[f]),C=v.c2p(y[f+1]),L=m.c2p(x[p]),P=m.c2p(x[p+1]);c?(C=E,u=y[f],P=L,h=x[p]):(u=_?_[f]:(y[f]+y[f+1])/2,h=w?w[p]:(x[p]+x[p+1])/2,v&&\"category\"===v.type&&(u=y[f]),m&&\"category\"===m.type&&(h=x[p]),g.zsmooth&&(E=C=v.c2p(u),L=P=m.c2p(h)));var O,I=b[p][f];k&&!k[p][f]&&(I=void 0),Array.isArray(d.hovertext)&&Array.isArray(d.hovertext[p])?O=d.hovertext[p][f]:Array.isArray(d.text)&&Array.isArray(d.text[p])&&(O=d.text[p][f]);var z=o(g),D={type:\"linear\",range:[z.min,z.max],hoverformat:T,_separators:v._separators,_numFormat:v._numFormat},R=i.tickText(D,I,\"hover\").text;return[a.extendFlat(t,{index:[p,f],distance:t.maxHoverDistance,spikeDistance:t.maxSpikeDistance,x0:E,x1:C,y0:L,y1:P,xLabelVal:u,yLabelVal:h,zLabelVal:I,zLabel:R,text:O})]}},{\"../../components/colorscale\":606,\"../../components/fx\":632,\"../../lib\":719,\"../../plots/cartesian/axes\":767}],1008:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),plot:t(\"./plot\"),colorbar:t(\"./colorbar\"),style:t(\"./style\"),hoverPoints:t(\"./hover\"),moduleType:\"trace\",name:\"heatmap\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"2dMap\"],meta:{}}},{\"../../plots/cartesian\":778,\"./attributes\":1e3,\"./calc\":1001,\"./colorbar\":1003,\"./defaults\":1005,\"./hover\":1007,\"./plot\":1011,\"./style\":1012}],1009:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=[[-1,0],[1,0],[0,-1],[0,1]];function i(t){return.5-.25*Math.min(1,.5*t)}function o(t,e,r){var n,i,o,s,l,c,u,h,f,p,d,g,v,m=0;for(s=0;s<e.length;s++){for(i=(n=e[s])[0],o=n[1],d=t[i][o],p=0,f=0,l=0;l<4;l++)(u=t[i+(c=a[l])[0]])&&void 0!==(h=u[o+c[1]])&&(0===p?g=v=h:(g=Math.min(g,h),v=Math.max(v,h)),f++,p+=h);if(0===f)throw\"iterateInterp2d order is wrong: no defined neighbors\";t[i][o]=p/f,void 0===d?f<4&&(m=1):(t[i][o]=(1+r)*t[i][o]-r*d,v>g&&(m=Math.max(m,Math.abs(t[i][o]-d)/(v-g))))}return m}e.exports=function(t,e){var r,a=1;for(o(t,e),r=0;r<e.length&&!(e[r][2]<4);r++);for(e=e.slice(r),r=0;r<100&&a>.01;r++)a=o(t,e,i(a));return a>.01&&n.log(\"interp2d didn't converge quickly\",a),t}},{\"../../lib\":719}],1010:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\").isArrayOrTypedArray;e.exports=function(t,e,r,i,o,s){var l,c,u,h=[],f=n.traceIs(t,\"contour\"),p=n.traceIs(t,\"histogram\"),d=n.traceIs(t,\"gl2d\");if(a(e)&&e.length>1&&!p&&\"category\"!==s.type){var g=e.length;if(!(g<=o))return f?e.slice(0,o):e.slice(0,o+1);if(f||d)h=e.slice(0,o);else if(1===o)h=[e[0]-.5,e[0]+.5];else{for(h=[1.5*e[0]-.5*e[1]],u=1;u<g;u++)h.push(.5*(e[u-1]+e[u]));h.push(1.5*e[g-1]-.5*e[g-2])}if(g<o){var v=h[h.length-1],m=v-h[h.length-2];for(u=g;u<o;u++)v+=m,h.push(v)}}else{var y=t[s._id.charAt(0)+\"calendar\"];if(p)l=s.r2c(r,0,y);else if(a(e)&&1===e.length)l=e[0];else if(void 0===r)l=0;else{l=(\"log\"===s.type?s.d2c:s.r2c)(r,0,y)}for(c=i||1,u=f||d?0:-.5;u<o;u++)h.push(l+c*u)}return h}},{\"../../lib\":719,\"../../registry\":848}],1011:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"tinycolor2\"),i=t(\"../../registry\"),o=t(\"../../lib\"),s=t(\"../../components/colorscale\").makeColorScaleFuncFromTrace,l=t(\"../../constants/xmlns_namespaces\");function c(t,e){var r=e.length-2,n=o.constrain(o.findBin(t,e),0,r),a=e[n],i=e[n+1],s=o.constrain(n+(t-a)/(i-a)-.5,0,r),l=Math.round(s),c=Math.abs(s-l);return s&&s!==r&&c?{bin0:l,frac:c,bin1:Math.round(l+c/(s-l))}:{bin0:l,bin1:l,frac:0}}function u(t,e){var r=e.length-1,n=o.constrain(o.findBin(t,e),0,r),a=e[n],i=(t-a)/(e[n+1]-a)||0;return i<=0?{bin0:n,bin1:n,frac:0}:i<.5?{bin0:n,bin1:n+1,frac:i}:{bin0:n+1,bin1:n,frac:1-i}}function h(t,e,r){t[e]=r[0],t[e+1]=r[1],t[e+2]=r[2],t[e+3]=Math.round(255*r[3])}e.exports=function(t,e,r,f){var p=e.xaxis,d=e.yaxis;o.makeTraceGroups(f,r,\"hm\").each(function(e){var r,f,g,v,m,y,x=n.select(this),b=e[0],_=b.trace,w=b.z,k=b.x,T=b.y,A=b.xCenter,M=b.yCenter,S=i.traceIs(_,\"contour\"),E=S?\"best\":_.zsmooth,C=w.length,L=o.maxRowLength(w),P=!1,O=!1;for(y=0;void 0===r&&y<k.length-1;)r=p.c2p(k[y]),y++;for(y=k.length-1;void 0===f&&y>0;)f=p.c2p(k[y]),y--;for(f<r&&(g=f,f=r,r=g,P=!0),y=0;void 0===v&&y<T.length-1;)v=d.c2p(T[y]),y++;for(y=T.length-1;void 0===m&&y>0;)m=d.c2p(T[y]),y--;if(m<v&&(g=v,v=m,m=g,O=!0),S&&(A=k,M=T,k=b.xfill,T=b.yfill),\"fast\"!==E){var I=\"best\"===E?0:.5;r=Math.max(-I*p._length,r),f=Math.min((1+I)*p._length,f),v=Math.max(-I*d._length,v),m=Math.min((1+I)*d._length,m)}var z=Math.round(f-r),D=Math.round(m-v);if(z<=0||D<=0){x.selectAll(\"image\").data([]).exit().remove()}else{var R,F;\"fast\"===E?(R=L,F=C):(R=z,F=D);var B=document.createElement(\"canvas\");B.width=R,B.height=F;var N,j,V=B.getContext(\"2d\"),U=s(_,{noNumericCheck:!0,returnArray:!0});\"fast\"===E?(N=P?function(t){return L-1-t}:o.identity,j=O?function(t){return C-1-t}:o.identity):(N=function(t){return o.constrain(Math.round(p.c2p(k[t])-r),0,z)},j=function(t){return o.constrain(Math.round(d.c2p(T[t])-v),0,D)});var q,H,G,Y,W,X=j(0),Z=[X,X],J=P?0:1,K=O?0:1,Q=0,$=0,tt=0,et=0;if(E){var rt,nt=0;try{rt=new Uint8Array(z*D*4)}catch(t){rt=new Array(z*D*4)}if(\"best\"===E){var at,it,ot,st=A||k,lt=M||T,ct=new Array(st.length),ut=new Array(lt.length),ht=new Array(z),ft=A?u:c,pt=M?u:c;for(y=0;y<st.length;y++)ct[y]=Math.round(p.c2p(st[y])-r);for(y=0;y<lt.length;y++)ut[y]=Math.round(d.c2p(lt[y])-v);for(y=0;y<z;y++)ht[y]=ft(y,ct);for(H=0;H<D;H++)for(it=w[(at=pt(H,ut)).bin0],ot=w[at.bin1],y=0;y<z;y++,nt+=4)h(rt,nt,W=Tt(it,ot,ht[y],at))}else for(H=0;H<C;H++)for(Y=w[H],Z=j(H),y=0;y<z;y++)W=kt(Y[y],1),h(rt,nt=4*(Z*z+N(y)),W);var dt=V.createImageData(z,D);try{dt.data.set(rt)}catch(t){var gt=dt.data,vt=gt.length;for(H=0;H<vt;H++)gt[H]=rt[H]}V.putImageData(dt,0,0)}else{var mt=_.xgap,yt=_.ygap,xt=Math.floor(mt/2),bt=Math.floor(yt/2);for(H=0;H<C;H++)if(Y=w[H],Z.reverse(),Z[K]=j(H+1),Z[0]!==Z[1]&&void 0!==Z[0]&&void 0!==Z[1])for(q=[G=N(0),G],y=0;y<L;y++)q.reverse(),q[J]=N(y+1),q[0]!==q[1]&&void 0!==q[0]&&void 0!==q[1]&&(W=kt(Y[y],(q[1]-q[0])*(Z[1]-Z[0])),V.fillStyle=\"rgba(\"+W.join(\",\")+\")\",V.fillRect(q[0]+xt,Z[0]+bt,q[1]-q[0]-mt,Z[1]-Z[0]-yt))}$=Math.round($/Q),tt=Math.round(tt/Q),et=Math.round(et/Q);var _t=a(\"rgb(\"+$+\",\"+tt+\",\"+et+\")\");t._hmpixcount=(t._hmpixcount||0)+Q,t._hmlumcount=(t._hmlumcount||0)+Q*_t.getLuminance();var wt=x.selectAll(\"image\").data(e);wt.enter().append(\"svg:image\").attr({xmlns:l.svg,preserveAspectRatio:\"none\"}),wt.attr({height:D,width:z,x:r,y:v,\"xlink:href\":B.toDataURL(\"image/png\")})}function kt(t,e){if(void 0!==t){var r=U(t);return r[0]=Math.round(r[0]),r[1]=Math.round(r[1]),r[2]=Math.round(r[2]),Q+=e,$+=r[0]*e,tt+=r[1]*e,et+=r[2]*e,r}return[0,0,0,0]}function Tt(t,e,r,n){var a=t[r.bin0];if(void 0===a)return kt(void 0,1);var i,o=t[r.bin1],s=e[r.bin0],l=e[r.bin1],c=o-a||0,u=s-a||0;return i=void 0===o?void 0===l?0:void 0===s?2*(l-a):2*(2*l-s-a)/3:void 0===l?void 0===s?0:2*(2*a-o-s)/3:void 0===s?2*(2*l-o-a)/3:l+a-o-s,kt(a+r.frac*c+n.frac*(u+r.frac*i))}})}},{\"../../components/colorscale\":606,\"../../constants/xmlns_namespaces\":696,\"../../lib\":719,\"../../registry\":848,d3:164,tinycolor2:538}],1012:[function(t,e,r){\"use strict\";var n=t(\"d3\");e.exports=function(t){n.select(t).selectAll(\".hm image\").style(\"opacity\",function(t){return t.trace.opacity})}},{d3:164}],1013:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){!1===r(\"zsmooth\")&&(r(\"xgap\"),r(\"ygap\")),r(\"zhoverformat\")}},{}],1014:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\"),i=t(\"../../registry\");function o(t,e){var r=e(t);return\"scaled\"===(r?e(t+\"type\",\"array\"):\"scaled\")&&(e(t+\"0\"),e(\"d\"+t)),r}e.exports=function(t,e,r,s,l,c){var u,h,f=r(\"z\");if(l=l||\"x\",c=c||\"y\",void 0===f||!f.length)return 0;if(a.isArray1D(t.z)){u=r(l),h=r(c);var p=a.minRowLength(u),d=a.minRowLength(h);if(0===p||0===d)return 0;e._length=Math.min(p,d,f.length)}else{if(u=o(l,r),h=o(c,r),!function(t){for(var e,r=!0,i=!1,o=!1,s=0;s<t.length;s++){if(e=t[s],!a.isArrayOrTypedArray(e)){r=!1;break}e.length>0&&(i=!0);for(var l=0;l<e.length;l++)if(n(e[l])){o=!0;break}}return r&&i&&o}(f))return 0;r(\"transpose\"),e._length=null}return i.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[l,c],s),!0}},{\"../../lib\":719,\"../../registry\":848,\"fast-isnumeric\":226}],1015:[function(t,e,r){\"use strict\";for(var n=t(\"../heatmap/attributes\"),a=t(\"../../components/colorscale/attributes\"),i=t(\"../../lib/extend\").extendFlat,o=t(\"../../plot_api/edit_types\").overrideAll,s=[\"z\",\"x\",\"x0\",\"dx\",\"y\",\"y0\",\"dy\",\"text\",\"transpose\",\"xtype\",\"ytype\"],l={},c=0;c<s.length;c++){var u=s[c];l[u]=n[u]}i(l,a(\"\",{cLetter:\"z\",autoColorDflt:!1})),e.exports=o(l,\"calc\",\"nested\")},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../heatmap/attributes\":1e3}],1016:[function(t,e,r){\"use strict\";var n=t(\"gl-heatmap2d\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"../../lib/str2rgbarray\");function o(t,e){this.scene=t,this.uid=e,this.type=\"heatmapgl\",this.name=\"\",this.hoverinfo=\"all\",this.xData=[],this.yData=[],this.zData=[],this.textLabels=[],this.idToIndex=[],this.bounds=[0,0,0,0],this.options={z:[],x:[],y:[],shape:[0,0],colorLevels:[0],colorValues:[0,0,0,1]},this.heatmap=n(t.glplot,this.options),this.heatmap._trace=this}var s=o.prototype;s.handlePick=function(t){var e=this.options,r=e.shape,n=t.pointId,a=n%r[0],i=Math.floor(n/r[0]),o=n;return{trace:this,dataCoord:t.dataCoord,traceCoord:[e.x[a],e.y[i],e.z[o]],textLabel:this.textLabels[n],name:this.name,pointIndex:[i,a],hoverinfo:this.hoverinfo}},s.update=function(t,e){var r=e[0];this.index=t.index,this.name=t.name,this.hoverinfo=t.hoverinfo;var n=r.z;this.options.z=[].concat.apply([],n);var o=n[0].length,s=n.length;this.options.shape=[o,s],this.options.x=r.x,this.options.y=r.y;var l=function(t){for(var e=t.colorscale,r=t.zmin,n=t.zmax,a=e.length,o=new Array(a),s=new Array(4*a),l=0;l<a;l++){var c=e[l],u=i(c[1]);o[l]=r+c[0]*(n-r);for(var h=0;h<4;h++)s[4*l+h]=u[h]}return{colorLevels:o,colorValues:s}}(t);this.options.colorLevels=l.colorLevels,this.options.colorValues=l.colorValues,this.textLabels=[].concat.apply([],t.text),this.heatmap.update(this.options);var c=this.scene.xaxis,u=this.scene.yaxis;t._extremes[c._id]=a.findExtremes(c,r.x),t._extremes[u._id]=a.findExtremes(u,r.y)},s.dispose=function(){this.heatmap.dispose()},e.exports=function(t,e,r){var n=new o(t,e.uid);return n.update(e,r),n}},{\"../../lib/str2rgbarray\":742,\"../../plots/cartesian/axes\":767,\"gl-heatmap2d\":252}],1017:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"../heatmap/defaults\"),colorbar:t(\"../heatmap/colorbar\"),calc:t(\"../heatmap/calc\"),plot:t(\"./convert\"),moduleType:\"trace\",name:\"heatmapgl\",basePlotModule:t(\"../../plots/gl2d\"),categories:[\"gl\",\"gl2d\",\"2dMap\"],meta:{}}},{\"../../plots/gl2d\":805,\"../heatmap/calc\":1001,\"../heatmap/colorbar\":1003,\"../heatmap/defaults\":1005,\"./attributes\":1015,\"./convert\":1016}],1018:[function(t,e,r){\"use strict\";var n=t(\"../bar/attributes\"),a=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"./bin_attributes\"),o=t(\"./constants\"),s=t(\"../../lib/extend\").extendFlat;e.exports={x:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},y:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},text:s({},n.text,{}),hovertext:s({},n.hovertext,{}),orientation:n.orientation,histfunc:{valType:\"enumerated\",values:[\"count\",\"sum\",\"avg\",\"min\",\"max\"],dflt:\"count\",editType:\"calc\"},histnorm:{valType:\"enumerated\",values:[\"\",\"percent\",\"probability\",\"density\",\"probability density\"],dflt:\"\",editType:\"calc\"},cumulative:{enabled:{valType:\"boolean\",dflt:!1,editType:\"calc\"},direction:{valType:\"enumerated\",values:[\"increasing\",\"decreasing\"],dflt:\"increasing\",editType:\"calc\"},currentbin:{valType:\"enumerated\",values:[\"include\",\"exclude\",\"half\"],dflt:\"include\",editType:\"calc\"},editType:\"calc\"},nbinsx:{valType:\"integer\",min:0,dflt:0,editType:\"calc\"},xbins:i(\"x\",!0),nbinsy:{valType:\"integer\",min:0,dflt:0,editType:\"calc\"},ybins:i(\"y\",!0),autobinx:{valType:\"boolean\",dflt:null,editType:\"calc\"},autobiny:{valType:\"boolean\",dflt:null,editType:\"calc\"},bingroup:{valType:\"string\",dflt:\"\",editType:\"calc\"},hovertemplate:a({},{keys:o.eventDataKeys}),marker:n.marker,offsetgroup:n.offsetgroup,alignmentgroup:n.alignmentgroup,selected:n.selected,unselected:n.unselected,_deprecated:{bardir:n._deprecated.bardir}}},{\"../../lib/extend\":710,\"../../plots/template_attributes\":843,\"../bar/attributes\":858,\"./bin_attributes\":1020,\"./constants\":1024}],1019:[function(t,e,r){\"use strict\";e.exports=function(t,e){for(var r=t.length,n=0,a=0;a<r;a++)e[a]?(t[a]/=e[a],n+=t[a]):t[a]=null;return n}},{}],1020:[function(t,e,r){\"use strict\";e.exports=function(t,e){return{start:{valType:\"any\",editType:\"calc\"},end:{valType:\"any\",editType:\"calc\"},size:{valType:\"any\",editType:\"calc\"},editType:\"calc\"}}},{}],1021:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\");e.exports={count:function(t,e,r){return r[t]++,1},sum:function(t,e,r,a){var i=a[e];return n(i)?(i=Number(i),r[t]+=i,i):0},avg:function(t,e,r,a,i){var o=a[e];return n(o)&&(o=Number(o),r[t]+=o,i[t]++),0},min:function(t,e,r,a){var i=a[e];if(n(i)){if(i=Number(i),!n(r[t]))return r[t]=i,i;if(r[t]>i){var o=i-r[t];return r[t]=i,o}}return 0},max:function(t,e,r,a){var i=a[e];if(n(i)){if(i=Number(i),!n(r[t]))return r[t]=i,i;if(r[t]<i){var o=i-r[t];return r[t]=i,o}}return 0}}},{\"fast-isnumeric\":226}],1022:[function(t,e,r){\"use strict\";var n=t(\"../../constants/numerical\"),a=n.ONEAVGYEAR,i=n.ONEAVGMONTH,o=n.ONEDAY,s=n.ONEHOUR,l=n.ONEMIN,c=n.ONESEC,u=t(\"../../plots/cartesian/axes\").tickIncrement;function h(t,e,r,n){if(t*e<=0)return 1/0;for(var a=Math.abs(e-t),i=\"date\"===r.type,o=f(a,i),s=0;s<10;s++){var l=f(80*o,i);if(o===l)break;if(!p(l,t,e,i,r,n))break;o=l}return o}function f(t,e){return e&&t>c?t>o?t>1.1*a?a:t>1.1*i?i:o:t>s?s:t>l?l:c:Math.pow(10,Math.floor(Math.log(t)/Math.LN10))}function p(t,e,r,n,i,s){if(n&&t>o){var l=d(e,i,s),c=d(r,i,s),u=t===a?0:1;return l[u]!==c[u]}return Math.floor(r/t)-Math.floor(e/t)>.1}function d(t,e,r){var n=e.c2d(t,a,r).split(\"-\");return\"\"===n[0]&&(n.unshift(),n[0]=\"-\"+n[0]),n}e.exports=function(t,e,r,n,i){var s,l,c=-1.1*e,f=-.1*e,p=t-f,d=r[0],g=r[1],v=Math.min(h(d+f,d+p,n,i),h(g+f,g+p,n,i)),m=Math.min(h(d+c,d+f,n,i),h(g+c,g+f,n,i));if(v>m&&m<Math.abs(g-d)/4e3?(s=v,l=!1):(s=Math.min(v,m),l=!0),\"date\"===n.type&&s>o){var y=s===a?1:6,x=s===a?\"M12\":\"M1\";return function(e,r){var o=n.c2d(e,a,i),s=o.indexOf(\"-\",y);s>0&&(o=o.substr(0,s));var c=n.d2c(o,0,i);if(c<e){var h=u(c,x,!1,i);(c+h)/2<e+t&&(c=h)}return r&&l?u(c,x,!0,i):c}}return function(e,r){var n=s*Math.round(e/s);return n+s/10<e&&n+.9*s<e+t&&(n+=s),r&&l&&(n-=s),n}}},{\"../../constants/numerical\":695,\"../../plots/cartesian/axes\":767}],1023:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\"),i=t(\"../../registry\"),o=t(\"../../plots/cartesian/axes\"),s=t(\"../bar/arrays_to_calcdata\"),l=t(\"./bin_functions\"),c=t(\"./norm_functions\"),u=t(\"./average\"),h=t(\"./bin_label_vals\");function f(t,e,r,s,l){var c,u,h,p,d,g,v,m=s+\"bins\",y=t._fullLayout,x=e[\"_\"+s+\"bingroup\"],b=y._histogramBinOpts[x],_=\"overlay\"===y.barmode,w=function(t){return r.r2c(t,0,p)},k=function(t){return r.c2r(t,0,p)},T=\"date\"===r.type?function(t){return t||0===t?a.cleanDate(t,null,p):null}:function(t){return n(t)?Number(t):null};function A(t,e,r){e[t+\"Found\"]?(e[t]=T(e[t]),null===e[t]&&(e[t]=r[t])):(g[t]=e[t]=r[t],a.nestedProperty(u[0],m+\".\"+t).set(r[t]))}if(e[\"_\"+s+\"autoBinFinished\"])delete e[\"_\"+s+\"autoBinFinished\"];else{u=b.traces;var M=[],S=!0,E=!1,C=!1;for(c=0;c<u.length;c++)if((h=u[c]).visible){var L=b.dirs[c];d=h[\"_\"+L+\"pos0\"]=r.makeCalcdata(h,L),M=a.concat(M,d),delete h[\"_\"+s+\"autoBinFinished\"],!0===e.visible&&(S?S=!1:(delete h._autoBin,h[\"_\"+s+\"autoBinFinished\"]=1),i.traceIs(h,\"2dMap\")&&(E=!0),\"histogram2dcontour\"===h.type&&(C=!0))}p=u[0][s+\"calendar\"];var P=o.autoBin(M,r,b.nbins,E,p,b.sizeFound&&b.size),O=u[0]._autoBin={};if(g=O[b.dirs[0]]={},C&&(b.size||(P.start=k(o.tickIncrement(w(P.start),P.size,!0,p))),void 0===b.end&&(P.end=k(o.tickIncrement(w(P.end),P.size,!1,p)))),_&&!i.traceIs(e,\"2dMap\")&&0===P._dataSpan&&\"category\"!==r.type&&\"multicategory\"!==r.type){if(l)return[P,d,!0];P=function(t,e,r,n,i){var o,s,l,c=t._fullLayout,u=function(t,e){for(var r=e.xaxis,n=e.yaxis,a=e.orientation,i=[],o=t._fullData,s=0;s<o.length;s++){var l=o[s];\"histogram\"===l.type&&!0===l.visible&&l.orientation===a&&l.xaxis===r&&l.yaxis===n&&i.push(l)}return i}(t,e),h=!1,p=1/0,d=[e];for(o=0;o<u.length;o++)if((s=u[o])===e)h=!0;else if(h){var g=f(t,s,r,n,!0),v=g[0],m=g[2];s[\"_\"+n+\"autoBinFinished\"]=1,s[\"_\"+n+\"pos0\"]=g[1],m?d.push(s):p=Math.min(p,v.size)}else l=c._histogramBinOpts[s[\"_\"+n+\"bingroup\"]],p=Math.min(p,l.size||s[i].size);var y=new Array(d.length);for(o=0;o<d.length;o++)for(var x=d[o][\"_\"+n+\"pos0\"],b=0;b<x.length;b++)if(void 0!==x[b]){y[o]=x[b];break}isFinite(p)||(p=a.distinctVals(y).minDiff);for(o=0;o<d.length;o++){var _=(s=d[o])[n+\"calendar\"],w={start:r.c2r(y[o]-p/2,0,_),end:r.c2r(y[o]+p/2,0,_),size:p};s._input[i]=s[i]=w,(l=c._histogramBinOpts[s[\"_\"+n+\"bingroup\"]])&&a.extendFlat(l,w)}return e[i]}(t,e,r,s,m)}(v=h.cumulative||{}).enabled&&\"include\"!==v.currentbin&&(\"decreasing\"===v.direction?P.start=k(o.tickIncrement(w(P.start),P.size,!0,p)):P.end=k(o.tickIncrement(w(P.end),P.size,!1,p))),b.size=P.size,b.sizeFound||(g.size=P.size,a.nestedProperty(u[0],m+\".size\").set(P.size)),A(\"start\",b,P),A(\"end\",b,P)}d=e[\"_\"+s+\"pos0\"],delete e[\"_\"+s+\"pos0\"];var I=e._input[m]||{},z=a.extendFlat({},b),D=b.start,R=r.r2l(I.start),F=void 0!==R;if((b.startFound||F)&&R!==r.r2l(D)){var B=F?R:a.aggNums(Math.min,null,d),N={type:\"category\"===r.type||\"multicategory\"===r.type?\"linear\":r.type,r2l:r.r2l,dtick:b.size,tick0:D,calendar:p,range:[B,o.tickIncrement(B,b.size,!1,p)].map(r.l2r)},j=o.tickFirst(N);j>r.r2l(B)&&(j=o.tickIncrement(j,b.size,!0,p)),z.start=r.l2r(j),F||a.nestedProperty(e,m+\".start\").set(z.start)}var V=b.end,U=r.r2l(I.end),q=void 0!==U;if((b.endFound||q)&&U!==r.r2l(V)){var H=q?U:a.aggNums(Math.max,null,d);z.end=r.l2r(H),q||a.nestedProperty(e,m+\".start\").set(z.end)}var G=\"autobin\"+s;return!1===e._input[G]&&(e._input[m]=a.extendFlat({},e[m]||{}),delete e._input[G],delete e[G]),[z,d]}e.exports={calc:function(t,e){var r,i,p,d,g=[],v=[],m=o.getFromId(t,\"h\"===e.orientation?e.yaxis:e.xaxis),y=\"h\"===e.orientation?\"y\":\"x\",x={x:\"y\",y:\"x\"}[y],b=e[y+\"calendar\"],_=e.cumulative,w=f(t,e,m,y),k=w[0],T=w[1],A=\"string\"==typeof k.size,M=[],S=A?M:k,E=[],C=[],L=[],P=0,O=e.histnorm,I=e.histfunc,z=-1!==O.indexOf(\"density\");_.enabled&&z&&(O=O.replace(/ ?density$/,\"\"),z=!1);var D,R=\"max\"===I||\"min\"===I?null:0,F=l.count,B=c[O],N=!1,j=function(t){return m.r2c(t,0,b)};for(a.isArrayOrTypedArray(e[x])&&\"count\"!==I&&(D=e[x],N=\"avg\"===I,F=l[I]),r=j(k.start),p=j(k.end)+(r-o.tickIncrement(r,k.size,!1,b))/1e6;r<p&&g.length<1e6&&(i=o.tickIncrement(r,k.size,!1,b),g.push((r+i)/2),v.push(R),L.push([]),M.push(r),z&&E.push(1/(i-r)),N&&C.push(0),!(i<=r));)r=i;M.push(r),A||\"date\"!==m.type||(S={start:j(S.start),end:j(S.end),size:S.size});var V,U=v.length,q=!0,H=1/0,G=1/0,Y={};for(r=0;r<T.length;r++){var W=T[r];(d=a.findBin(W,S))>=0&&d<U&&(P+=F(d,r,v,D,C),q&&L[d].length&&W!==T[L[d][0]]&&(q=!1),L[d].push(r),Y[r]=d,H=Math.min(H,W-M[d]),G=Math.min(G,M[d+1]-W))}q||(V=h(H,G,M,m,b)),N&&(P=u(v,C)),B&&B(v,P,E),_.enabled&&function(t,e,r){var n,a,i;function o(e){i=t[e],t[e]/=2}function s(e){a=t[e],t[e]=i+a/2,i+=a}if(\"half\"===r)if(\"increasing\"===e)for(o(0),n=1;n<t.length;n++)s(n);else for(o(t.length-1),n=t.length-2;n>=0;n--)s(n);else if(\"increasing\"===e){for(n=1;n<t.length;n++)t[n]+=t[n-1];\"exclude\"===r&&(t.unshift(0),t.pop())}else{for(n=t.length-2;n>=0;n--)t[n]+=t[n+1];\"exclude\"===r&&(t.push(0),t.shift())}}(v,_.direction,_.currentbin);var X=Math.min(g.length,v.length),Z=[],J=0,K=X-1;for(r=0;r<X;r++)if(v[r]){J=r;break}for(r=X-1;r>=J;r--)if(v[r]){K=r;break}for(r=J;r<=K;r++)if(n(g[r])&&n(v[r])){var Q={p:g[r],s:v[r],b:0};_.enabled||(Q.pts=L[r],q?Q.ph0=Q.ph1=L[r].length?T[L[r][0]]:g[r]:(Q.ph0=V(M[r]),Q.ph1=V(M[r+1],!0))),Z.push(Q)}return 1===Z.length&&(Z[0].width1=o.tickIncrement(Z[0].p,k.size,!1,b)-Z[0].p),s(Z,e),a.isArrayOrTypedArray(e.selectedpoints)&&a.tagSelected(Z,e,Y),Z},calcAllAutoBins:f}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../../registry\":848,\"../bar/arrays_to_calcdata\":857,\"./average\":1019,\"./bin_functions\":1021,\"./bin_label_vals\":1022,\"./norm_functions\":1030,\"fast-isnumeric\":226}],1024:[function(t,e,r){\"use strict\";e.exports={eventDataKeys:[\"binNumber\"]}},{}],1025:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/cartesian/axis_ids\"),i=t(\"../../registry\").traceIs,o=t(\"../bar/defaults\").handleGroupingDefaults,s=n.nestedProperty,l=a.getAxisGroup,c=[{aStr:{x:\"xbins.start\",y:\"ybins.start\"},name:\"start\"},{aStr:{x:\"xbins.end\",y:\"ybins.end\"},name:\"end\"},{aStr:{x:\"xbins.size\",y:\"ybins.size\"},name:\"size\"},{aStr:{x:\"nbinsx\",y:\"nbinsy\"},name:\"nbins\"}],u=[\"x\",\"y\"];e.exports=function(t,e){var r,h,f,p,d,g,v,m=e._histogramBinOpts={},y=[],x={},b=[];function _(t,e){return n.coerce(r._input,r,r._module.attributes,t,e)}function w(t){return\"v\"===t.orientation?\"x\":\"y\"}function k(t,r,i){var o=t.uid+\"__\"+i;r||(r=o);var s=function(t,r){return a.getFromTrace({_fullLayout:e},t,r).type}(t,i),l=t[i+\"calendar\"],c=m[r],u=!0;c&&(s===c.axType&&l===c.calendar?(u=!1,c.traces.push(t),c.dirs.push(i)):(r=o,s!==c.axType&&n.warn([\"Attempted to group the bins of trace\",t.index,\"set on a\",\"type:\"+s,\"axis\",\"with bins on\",\"type:\"+c.axType,\"axis.\"].join(\" \")),l!==c.calendar&&n.warn([\"Attempted to group the bins of trace\",t.index,\"set with a\",l,\"calendar\",\"with bins\",c.calendar?\"on a \"+c.calendar+\" calendar\":\"w/o a set calendar\"].join(\" \")))),u&&(m[r]={traces:[t],dirs:[i],axType:s,calendar:t[i+\"calendar\"]||\"\"}),t[\"_\"+i+\"bingroup\"]=r}for(d=0;d<t.length;d++)r=t[d],i(r,\"histogram\")&&(y.push(r),delete r._xautoBinFinished,delete r._yautoBinFinished,i(r,\"2dMap\")||o(r._input,r,e,_));var T=e._alignmentOpts||{};for(d=0;d<y.length;d++){if(r=y[d],f=\"\",!i(r,\"2dMap\")){if(p=w(r),\"group\"===e.barmode&&r.alignmentgroup){var A=r[p+\"axis\"],M=l(e,A)+r.orientation;(T[M]||{})[r.alignmentgroup]&&(f=M)}f||\"overlay\"===e.barmode||(f=l(e,r.xaxis)+l(e,r.yaxis)+w(r))}f?(x[f]||(x[f]=[]),x[f].push(r)):b.push(r)}for(f in x)if(1!==(h=x[f]).length){var S=!1;for(d=0;d<h.length;d++){r=h[d],S=_(\"bingroup\");break}for(f=S||f,d=0;d<h.length;d++){var E=(r=h[d])._input.bingroup;E&&E!==f&&n.warn([\"Trace\",r.index,\"must match\",\"within bingroup\",f+\".\",\"Ignoring its bingroup:\",E,\"setting.\"].join(\" \")),r.bingroup=f,k(r,f,w(r))}}else b.push(h[0]);for(d=0;d<b.length;d++){r=b[d];var C=_(\"bingroup\");if(i(r,\"2dMap\"))for(v=0;v<2;v++){var L=_((p=u[v])+\"bingroup\",C?C+\"__\"+p:null);k(r,L,p)}else k(r,C,w(r))}for(f in m){var P=m[f];for(h=P.traces,g=0;g<c.length;g++){var O,I,z=c[g],D=z.name;if(\"nbins\"!==D||!P.sizeFound){for(d=0;d<h.length;d++){if(r=h[d],p=P.dirs[d],O=z.aStr[p],void 0!==s(r._input,O).get()){P[D]=_(O),P[D+\"Found\"]=!0;break}(I=(r._autoBin||{})[p]||{})[D]&&s(r,O).set(I[D])}if(\"start\"===D||\"end\"===D)for(;d<h.length;d++)(r=h[d])[\"_\"+p+\"bingroup\"]&&_(O,(I=(r._autoBin||{})[p]||{})[D]);\"nbins\"!==D||P.sizeFound||P.nbinsFound||(r=h[0],P[D]=_(O))}}}}},{\"../../lib\":719,\"../../plots/cartesian/axis_ids\":770,\"../../registry\":848,\"../bar/defaults\":862}],1026:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\"),i=t(\"../../components/color\"),o=t(\"../bar/style_defaults\"),s=t(\"./attributes\");e.exports=function(t,e,r,l){function c(r,n){return a.coerce(t,e,s,r,n)}var u=c(\"x\"),h=c(\"y\");c(\"cumulative.enabled\")&&(c(\"cumulative.direction\"),c(\"cumulative.currentbin\")),c(\"text\"),c(\"hovertext\"),c(\"hovertemplate\");var f=c(\"orientation\",h&&!u?\"h\":\"v\"),p=\"v\"===f?\"x\":\"y\",d=\"v\"===f?\"y\":\"x\",g=u&&h?Math.min(a.minRowLength(u)&&a.minRowLength(h)):a.minRowLength(e[p]||[]);if(g){e._length=g,n.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\",\"y\"],l),e[d]&&c(\"histfunc\"),c(\"histnorm\"),c(\"autobin\"+p),o(t,e,c,r,l),a.coerceSelectionMarkerOpacity(e,c);var v=(e.marker.line||{}).color,m=n.getComponentMethod(\"errorbars\",\"supplyDefaults\");m(t,e,v||i.defaultLine,{axis:\"y\"}),m(t,e,v||i.defaultLine,{axis:\"x\",inherit:\"y\"})}else e.visible=!1}},{\"../../components/color\":594,\"../../lib\":719,\"../../registry\":848,\"../bar/style_defaults\":872,\"./attributes\":1018}],1027:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,a){if(t.x=\"xVal\"in e?e.xVal:e.x,t.y=\"yVal\"in e?e.yVal:e.y,\"zLabelVal\"in e&&(t.z=e.zLabelVal),e.xa&&(t.xaxis=e.xa),e.ya&&(t.yaxis=e.ya),!(r.cumulative||{}).enabled){var i,o=Array.isArray(a)?n[0].pts[a[0]][a[1]]:n[a].pts;if(t.pointNumbers=o,t.binNumber=t.pointNumber,delete t.pointNumber,delete t.pointIndex,r._indexToPoints){i=[];for(var s=0;s<o.length;s++)i=i.concat(r._indexToPoints[o[s]])}else i=o;t.pointIndices=i}return t}},{}],1028:[function(t,e,r){\"use strict\";var n=t(\"../bar/hover\").hoverPoints,a=t(\"../../plots/cartesian/axes\").hoverLabelText;e.exports=function(t,e,r,i){var o=n(t,e,r,i);if(o){var s=(t=o[0]).cd[t.index],l=t.cd[0].trace;if(!l.cumulative.enabled){var c=\"h\"===l.orientation?\"y\":\"x\";t[c+\"Label\"]=a(t[c+\"a\"],s.ph0,s.ph1)}return l.hovermplate&&(t.hovertemplate=l.hovertemplate),o}}},{\"../../plots/cartesian/axes\":767,\"../bar/hover\":864}],1029:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),layoutAttributes:t(\"../bar/layout_attributes\"),supplyDefaults:t(\"./defaults\"),crossTraceDefaults:t(\"./cross_trace_defaults\"),supplyLayoutDefaults:t(\"../bar/layout_defaults\"),calc:t(\"./calc\").calc,crossTraceCalc:t(\"../bar/cross_trace_calc\").crossTraceCalc,plot:t(\"../bar/plot\").plot,layerName:\"barlayer\",style:t(\"../bar/style\").style,styleOnSelect:t(\"../bar/style\").styleOnSelect,colorbar:t(\"../scatter/marker_colorbar\"),hoverPoints:t(\"./hover\"),selectPoints:t(\"../bar/select\"),eventData:t(\"./event_data\"),moduleType:\"trace\",name:\"histogram\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"bar-like\",\"cartesian\",\"svg\",\"bar\",\"histogram\",\"oriented\",\"errorBarsOK\",\"showLegend\"],meta:{}}},{\"../../plots/cartesian\":778,\"../bar/cross_trace_calc\":861,\"../bar/layout_attributes\":866,\"../bar/layout_defaults\":867,\"../bar/plot\":868,\"../bar/select\":869,\"../bar/style\":871,\"../scatter/marker_colorbar\":1128,\"./attributes\":1018,\"./calc\":1023,\"./cross_trace_defaults\":1025,\"./defaults\":1026,\"./event_data\":1027,\"./hover\":1028}],1030:[function(t,e,r){\"use strict\";e.exports={percent:function(t,e){for(var r=t.length,n=100/e,a=0;a<r;a++)t[a]*=n},probability:function(t,e){for(var r=t.length,n=0;n<r;n++)t[n]/=e},density:function(t,e,r,n){var a=t.length;n=n||1;for(var i=0;i<a;i++)t[i]*=r[i]*n},\"probability density\":function(t,e,r,n){var a=t.length;n&&(e/=n);for(var i=0;i<a;i++)t[i]*=r[i]/e}}},{}],1031:[function(t,e,r){\"use strict\";var n=t(\"../histogram/attributes\"),a=t(\"../histogram/bin_attributes\"),i=t(\"../heatmap/attributes\"),o=t(\"../../plots/template_attributes\").hovertemplateAttrs,s=t(\"../../components/colorscale/attributes\"),l=t(\"../../lib/extend\").extendFlat;e.exports=l({x:n.x,y:n.y,z:{valType:\"data_array\",editType:\"calc\"},marker:{color:{valType:\"data_array\",editType:\"calc\"},editType:\"calc\"},histnorm:n.histnorm,histfunc:n.histfunc,nbinsx:n.nbinsx,xbins:a(\"x\"),nbinsy:n.nbinsy,ybins:a(\"y\"),autobinx:n.autobinx,autobiny:n.autobiny,bingroup:l({},n.bingroup,{}),xbingroup:l({},n.bingroup,{}),ybingroup:l({},n.bingroup,{}),xgap:i.xgap,ygap:i.ygap,zsmooth:i.zsmooth,zhoverformat:i.zhoverformat,hovertemplate:o({},{keys:\"z\"})},s(\"\",{cLetter:\"z\",autoColorDflt:!1}))},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plots/template_attributes\":843,\"../heatmap/attributes\":1e3,\"../histogram/attributes\":1018,\"../histogram/bin_attributes\":1020}],1032:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"../histogram/bin_functions\"),o=t(\"../histogram/norm_functions\"),s=t(\"../histogram/average\"),l=t(\"../histogram/bin_label_vals\"),c=t(\"../histogram/calc\").calcAllAutoBins;function u(t,e,r,n){var a,i=new Array(t);if(n)for(a=0;a<t;a++)i[a]=1/(e[a+1]-e[a]);else{var o=1/r;for(a=0;a<t;a++)i[a]=o}return i}function h(t,e){return{start:t(e.start),end:t(e.end),size:e.size}}function f(t,e,r,n,a,i){var o,s=t.length-1,c=new Array(s),u=l(r,n,t,a,i);for(o=0;o<s;o++){var h=(e||[])[o];c[o]=void 0===h?[u(t[o]),u(t[o+1],!0)]:[h,h]}return c}e.exports=function(t,e){var r,l,p,d,g=a.getFromId(t,e.xaxis),v=a.getFromId(t,e.yaxis),m=e.xcalendar,y=e.ycalendar,x=function(t){return g.r2c(t,0,m)},b=function(t){return v.r2c(t,0,y)},_=c(t,e,g,\"x\"),w=_[0],k=_[1],T=c(t,e,v,\"y\"),A=T[0],M=T[1],S=e._length;k.length>S&&k.splice(S,k.length-S),M.length>S&&M.splice(S,M.length-S);var E=[],C=[],L=[],P=\"string\"==typeof w.size,O=\"string\"==typeof A.size,I=[],z=[],D=P?I:w,R=O?z:A,F=0,B=[],N=[],j=e.histnorm,V=e.histfunc,U=-1!==j.indexOf(\"density\"),q=\"max\"===V||\"min\"===V?null:0,H=i.count,G=o[j],Y=!1,W=[],X=[],Z=\"z\"in e?e.z:\"marker\"in e&&Array.isArray(e.marker.color)?e.marker.color:\"\";Z&&\"count\"!==V&&(Y=\"avg\"===V,H=i[V]);var J=w.size,K=x(w.start),Q=x(w.end)+(K-a.tickIncrement(K,J,!1,m))/1e6;for(r=K;r<Q;r=a.tickIncrement(r,J,!1,m))C.push(q),I.push(r),Y&&L.push(0);I.push(r);var $,tt=C.length,et=(r-K)/tt,rt=($=K+et/2,g.c2r($,0,m)),nt=A.size,at=b(A.start),it=b(A.end)+(at-a.tickIncrement(at,nt,!1,y))/1e6;for(r=at;r<it;r=a.tickIncrement(r,nt,!1,y)){E.push(C.slice()),z.push(r);var ot=new Array(tt);for(l=0;l<tt;l++)ot[l]=[];N.push(ot),Y&&B.push(L.slice())}z.push(r);var st=E.length,lt=(r-at)/st,ct=function(t){return v.c2r(t,0,y)}(at+lt/2);U&&(W=u(C.length,D,et,P),X=u(E.length,R,lt,O)),P||\"date\"!==g.type||(D=h(x,D)),O||\"date\"!==v.type||(R=h(b,R));var ut=!0,ht=!0,ft=new Array(tt),pt=new Array(st),dt=1/0,gt=1/0,vt=1/0,mt=1/0;for(r=0;r<S;r++){var yt=k[r],xt=M[r];p=n.findBin(yt,D),d=n.findBin(xt,R),p>=0&&p<tt&&d>=0&&d<st&&(F+=H(p,r,E[d],Z,B[d]),N[d][p].push(r),ut&&(void 0===ft[p]?ft[p]=yt:ft[p]!==yt&&(ut=!1)),ht&&(void 0===pt[d]?pt[d]=xt:pt[d]!==xt&&(ht=!1)),dt=Math.min(dt,yt-I[p]),gt=Math.min(gt,I[p+1]-yt),vt=Math.min(vt,xt-z[d]),mt=Math.min(mt,z[d+1]-xt))}if(Y)for(d=0;d<st;d++)F+=s(E[d],B[d]);if(G)for(d=0;d<st;d++)G(E[d],F,W,X[d]);return{x:k,xRanges:f(I,ut&&ft,dt,gt,g,m),x0:rt,dx:et,y:M,yRanges:f(z,ht&&pt,vt,mt,v,y),y0:ct,dy:lt,z:E,pts:N}}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../histogram/average\":1019,\"../histogram/bin_functions\":1021,\"../histogram/bin_label_vals\":1022,\"../histogram/calc\":1023,\"../histogram/norm_functions\":1030}],1033:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./sample_defaults\"),i=t(\"../heatmap/style_defaults\"),o=t(\"../../components/colorscale/defaults\"),s=t(\"./attributes\");e.exports=function(t,e,r,l){function c(r,a){return n.coerce(t,e,s,r,a)}a(t,e,c,l),!1!==e.visible&&(i(t,e,c,l),o(t,e,l,c,{prefix:\"\",cLetter:\"z\"}),c(\"hovertemplate\"))}},{\"../../components/colorscale/defaults\":604,\"../../lib\":719,\"../heatmap/style_defaults\":1013,\"./attributes\":1031,\"./sample_defaults\":1036}],1034:[function(t,e,r){\"use strict\";var n=t(\"../heatmap/hover\"),a=t(\"../../plots/cartesian/axes\").hoverLabelText;e.exports=function(t,e,r,i,o,s){var l=n(t,e,r,i,o,s);if(l){var c=(t=l[0]).index,u=c[0],h=c[1],f=t.cd[0],p=f.xRanges[h],d=f.yRanges[u];return t.xLabel=a(t.xa,p[0],p[1]),t.yLabel=a(t.ya,d[0],d[1]),l}}},{\"../../plots/cartesian/axes\":767,\"../heatmap/hover\":1007}],1035:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),crossTraceDefaults:t(\"../histogram/cross_trace_defaults\"),calc:t(\"../heatmap/calc\"),plot:t(\"../heatmap/plot\"),layerName:\"heatmaplayer\",colorbar:t(\"../heatmap/colorbar\"),style:t(\"../heatmap/style\"),hoverPoints:t(\"./hover\"),eventData:t(\"../histogram/event_data\"),moduleType:\"trace\",name:\"histogram2d\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"2dMap\",\"histogram\"],meta:{}}},{\"../../plots/cartesian\":778,\"../heatmap/calc\":1001,\"../heatmap/colorbar\":1003,\"../heatmap/plot\":1011,\"../heatmap/style\":1012,\"../histogram/cross_trace_defaults\":1025,\"../histogram/event_data\":1027,\"./attributes\":1031,\"./defaults\":1033,\"./hover\":1034}],1036:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\");e.exports=function(t,e,r,i){var o=r(\"x\"),s=r(\"y\"),l=a.minRowLength(o),c=a.minRowLength(s);l&&c?(e._length=Math.min(l,c),n.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\",\"y\"],i),(r(\"z\")||r(\"marker.color\"))&&r(\"histfunc\"),r(\"histnorm\"),r(\"autobinx\"),r(\"autobiny\")):e.visible=!1}},{\"../../lib\":719,\"../../registry\":848}],1037:[function(t,e,r){\"use strict\";var n=t(\"../histogram2d/attributes\"),a=t(\"../contour/attributes\"),i=t(\"../../components/colorscale/attributes\"),o=t(\"../../lib/extend\").extendFlat;e.exports=o({x:n.x,y:n.y,z:n.z,marker:n.marker,histnorm:n.histnorm,histfunc:n.histfunc,nbinsx:n.nbinsx,xbins:n.xbins,nbinsy:n.nbinsy,ybins:n.ybins,autobinx:n.autobinx,autobiny:n.autobiny,bingroup:n.bingroup,xbingroup:n.xbingroup,ybingroup:n.ybingroup,autocontour:a.autocontour,ncontours:a.ncontours,contours:a.contours,line:{color:a.line.color,width:o({},a.line.width,{dflt:.5}),dash:a.line.dash,smoothing:a.line.smoothing,editType:\"plot\"},zhoverformat:n.zhoverformat,hovertemplate:n.hovertemplate},i(\"\",{cLetter:\"z\",editTypeOverride:\"calc\"}))},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../contour/attributes\":943,\"../histogram2d/attributes\":1031}],1038:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../histogram2d/sample_defaults\"),i=t(\"../contour/contours_defaults\"),o=t(\"../contour/style_defaults\"),s=t(\"./attributes\");e.exports=function(t,e,r,l){function c(r,a){return n.coerce(t,e,s,r,a)}a(t,e,c,l),!1!==e.visible&&(i(t,e,c,function(r){return n.coerce2(t,e,s,r)}),o(t,e,c,l),c(\"hovertemplate\"))}},{\"../../lib\":719,\"../contour/contours_defaults\":950,\"../contour/style_defaults\":964,\"../histogram2d/sample_defaults\":1036,\"./attributes\":1037}],1039:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),crossTraceDefaults:t(\"../histogram/cross_trace_defaults\"),calc:t(\"../contour/calc\"),plot:t(\"../contour/plot\").plot,layerName:\"contourlayer\",style:t(\"../contour/style\"),colorbar:t(\"../contour/colorbar\"),hoverPoints:t(\"../contour/hover\"),moduleType:\"trace\",name:\"histogram2dcontour\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"2dMap\",\"contour\",\"histogram\",\"showLegend\"],meta:{}}},{\"../../plots/cartesian\":778,\"../contour/calc\":944,\"../contour/colorbar\":946,\"../contour/hover\":956,\"../contour/plot\":961,\"../contour/style\":963,\"../histogram/cross_trace_defaults\":1025,\"./attributes\":1037,\"./defaults\":1038}],1040:[function(t,e,r){\"use strict\";var n=t(\"../../lib/extend\").extendFlat,a=t(\"../../lib/extend\").extendDeep,i=t(\"../../plot_api/edit_types\").overrideAll,o=t(\"../../plots/font_attributes\"),s=t(\"../../components/color/attributes\"),l=t(\"../../plots/domain\").attributes,c=t(\"../../plots/cartesian/layout_attributes\"),u=t(\"../../plot_api/plot_template\").templatedArray,h=t(\"../../constants/delta.js\"),f=(t(\"../../constants/docs\").FORMAT_LINK,o({editType:\"plot\",colorEditType:\"plot\"})),p={color:{valType:\"color\",editType:\"plot\"},line:{color:{valType:\"color\",dflt:s.defaultLine,editType:\"plot\"},width:{valType:\"number\",min:0,dflt:0,editType:\"plot\"},editType:\"calc\"},thickness:{valType:\"number\",min:0,max:1,dflt:1,editType:\"plot\"},editType:\"calc\"},d={valType:\"info_array\",items:[{valType:\"number\",editType:\"plot\"},{valType:\"number\",editType:\"plot\"}],editType:\"plot\"},g=u(\"step\",a({},p,{range:d}));e.exports={mode:{valType:\"flaglist\",editType:\"calc\",flags:[\"number\",\"delta\",\"gauge\"],dflt:\"number\"},value:{valType:\"number\",editType:\"calc\",anim:!0},align:{valType:\"enumerated\",values:[\"left\",\"center\",\"right\"],editType:\"plot\"},domain:l({name:\"indicator\",trace:!0,editType:\"calc\"}),title:{text:{valType:\"string\",editType:\"plot\"},align:{valType:\"enumerated\",values:[\"left\",\"center\",\"right\"],editType:\"plot\"},font:n({},f,{}),editType:\"plot\"},number:{valueformat:{valType:\"string\",dflt:\"\",editType:\"plot\"},font:n({},f,{}),prefix:{valType:\"string\",dflt:\"\",editType:\"plot\"},suffix:{valType:\"string\",dflt:\"\",editType:\"plot\"},editType:\"plot\"},delta:{reference:{valType:\"number\",editType:\"calc\"},position:{valType:\"enumerated\",values:[\"top\",\"bottom\",\"left\",\"right\"],dflt:\"bottom\",editType:\"plot\"},relative:{valType:\"boolean\",editType:\"plot\",dflt:!1},valueformat:{valType:\"string\",editType:\"plot\"},increasing:{symbol:{valType:\"string\",dflt:h.INCREASING.SYMBOL,editType:\"plot\"},color:{valType:\"color\",dflt:h.INCREASING.COLOR,editType:\"plot\"},editType:\"plot\"},decreasing:{symbol:{valType:\"string\",dflt:h.DECREASING.SYMBOL,editType:\"plot\"},color:{valType:\"color\",dflt:h.DECREASING.COLOR,editType:\"plot\"},editType:\"plot\"},font:n({},f,{}),editType:\"calc\"},gauge:{shape:{valType:\"enumerated\",editType:\"plot\",dflt:\"angular\",values:[\"angular\",\"bullet\"]},bar:a({},p,{color:{dflt:\"green\"}}),bgcolor:{valType:\"color\",editType:\"plot\"},bordercolor:{valType:\"color\",dflt:s.defaultLine,editType:\"plot\"},borderwidth:{valType:\"number\",min:0,dflt:1,editType:\"plot\"},axis:i({range:d,visible:n({},c.visible,{dflt:!0}),tickmode:c.tickmode,nticks:c.nticks,tick0:c.tick0,dtick:c.dtick,tickvals:c.tickvals,ticktext:c.ticktext,ticks:n({},c.ticks,{dflt:\"outside\"}),ticklen:c.ticklen,tickwidth:c.tickwidth,tickcolor:c.tickcolor,showticklabels:c.showticklabels,tickfont:o({}),tickangle:c.tickangle,tickformat:c.tickformat,tickformatstops:c.tickformatstops,tickprefix:c.tickprefix,showtickprefix:c.showtickprefix,ticksuffix:c.ticksuffix,showticksuffix:c.showticksuffix,separatethousands:c.separatethousands,exponentformat:c.exponentformat,showexponent:c.showexponent,editType:\"plot\"},\"plot\"),steps:g,threshold:{line:{color:n({},p.line.color,{}),width:n({},p.line.width,{dflt:1}),editType:\"plot\"},thickness:n({},p.thickness,{dflt:.85}),value:{valType:\"number\",editType:\"calc\",dflt:!1},editType:\"plot\"},editType:\"plot\"}}},{\"../../components/color/attributes\":593,\"../../constants/delta.js\":689,\"../../constants/docs\":690,\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../../plot_api/plot_template\":757,\"../../plots/cartesian/layout_attributes\":779,\"../../plots/domain\":792,\"../../plots/font_attributes\":793}],1041:[function(t,e,r){\"use strict\";var n=t(\"../../plots/plots\");r.name=\"indicator\",r.plot=function(t,e,a,i){n.plotBasePlot(r.name,t,e,a,i)},r.clean=function(t,e,a,i){n.cleanBasePlot(r.name,t,e,a,i)}},{\"../../plots/plots\":828}],1042:[function(t,e,r){\"use strict\";e.exports={calc:function(t,e){var r=[],n=e.value;\"number\"!=typeof e._lastValue&&(e._lastValue=e.value);var a=e._lastValue,i=a;return e._hasDelta&&\"number\"==typeof e.delta.reference&&(i=e.delta.reference),r[0]={y:n,lastY:a,delta:n-i,relativeDelta:(n-i)/i},r}}},{}],1043:[function(t,e,r){\"use strict\";e.exports={defaultNumberFontSize:80,bulletNumberDomainSize:.25,bulletPadding:.025,innerRadius:.75,valueThickness:.5,titlePadding:5,horizontalPadding:10}},{}],1044:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./attributes\"),i=t(\"../../plots/domain\").defaults,o=t(\"../../plot_api/plot_template\"),s=t(\"../../plots/array_container_defaults\"),l=t(\"./constants.js\"),c=t(\"../../plots/cartesian/tick_value_defaults\"),u=t(\"../../plots/cartesian/tick_mark_defaults\"),h=t(\"../../plots/cartesian/tick_label_defaults\");function f(t,e){function r(r,i){return n.coerce(t,e,a.gauge.steps,r,i)}r(\"color\"),r(\"line.color\"),r(\"line.width\"),r(\"range\"),r(\"thickness\")}e.exports={supplyDefaults:function(t,e,r,p){function d(r,i){return n.coerce(t,e,a,r,i)}i(e,p,d),d(\"mode\"),e._hasNumber=-1!==e.mode.indexOf(\"number\"),e._hasDelta=-1!==e.mode.indexOf(\"delta\"),e._hasGauge=-1!==e.mode.indexOf(\"gauge\");var g=d(\"value\");e._range=[0,\"number\"==typeof g?1.5*g:1];var v,m,y,x,b,_,w=new Array(2);function k(t,e){return n.coerce(y,x,a.gauge,t,e)}function T(t,e){return n.coerce(b,_,a.gauge.axis,t,e)}if(e._hasNumber&&(d(\"number.valueformat\"),d(\"number.font.color\",p.font.color),d(\"number.font.family\",p.font.family),d(\"number.font.size\"),void 0===e.number.font.size&&(e.number.font.size=l.defaultNumberFontSize,w[0]=!0),d(\"number.prefix\"),d(\"number.suffix\"),v=e.number.font.size),e._hasDelta&&(d(\"delta.font.color\",p.font.color),d(\"delta.font.family\",p.font.family),d(\"delta.font.size\"),void 0===e.delta.font.size&&(e.delta.font.size=(e._hasNumber?.5:1)*(v||l.defaultNumberFontSize),w[1]=!0),d(\"delta.reference\",e.value),d(\"delta.relative\"),d(\"delta.valueformat\",e.delta.relative?\"2%\":\"\"),d(\"delta.increasing.symbol\"),d(\"delta.increasing.color\"),d(\"delta.decreasing.symbol\"),d(\"delta.decreasing.color\"),d(\"delta.position\"),m=e.delta.font.size),e._scaleNumbers=(!e._hasNumber||w[0])&&(!e._hasDelta||w[1])||!1,d(\"title.font.color\",p.font.color),d(\"title.font.family\",p.font.family),d(\"title.font.size\",.25*(v||m||l.defaultNumberFontSize)),d(\"title.text\"),e._hasGauge){(y=t.gauge)||(y={}),x=o.newContainer(e,\"gauge\"),k(\"shape\"),(e._isBullet=\"bullet\"===e.gauge.shape)||d(\"title.align\",\"center\"),(e._isAngular=\"angular\"===e.gauge.shape)||d(\"align\",\"center\"),k(\"bgcolor\",p.paper_bgcolor),k(\"borderwidth\"),k(\"bordercolor\"),k(\"bar.color\"),k(\"bar.line.color\"),k(\"bar.line.width\"),k(\"bar.thickness\",l.valueThickness*(\"bullet\"===e.gauge.shape?.5:1)),s(y,x,{name:\"steps\",handleItemDefaults:f}),k(\"threshold.value\"),k(\"threshold.thickness\"),k(\"threshold.line.width\"),k(\"threshold.line.color\"),b={},y&&(b=y.axis||{}),_=o.newContainer(x,\"axis\"),T(\"visible\"),e._range=T(\"range\",e._range);var A={outerTicks:!0};c(b,_,T,\"linear\"),h(b,_,T,\"linear\",A),u(b,_,T,A)}else d(\"title.align\",\"center\"),d(\"align\",\"center\"),e._isAngular=e._isBullet=!1;e._length=null}}},{\"../../lib\":719,\"../../plot_api/plot_template\":757,\"../../plots/array_container_defaults\":763,\"../../plots/cartesian/tick_label_defaults\":786,\"../../plots/cartesian/tick_mark_defaults\":787,\"../../plots/cartesian/tick_value_defaults\":788,\"../../plots/domain\":792,\"./attributes\":1040,\"./constants.js\":1043}],1045:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"indicator\",basePlotModule:t(\"./base_plot\"),categories:[\"svg\",\"noOpacity\",\"noHover\"],animatable:!0,attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\").supplyDefaults,calc:t(\"./calc\").calc,plot:t(\"./plot\"),meta:{}}},{\"./attributes\":1040,\"./base_plot\":1041,\"./calc\":1042,\"./defaults\":1044,\"./plot\":1046}],1046:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../lib\"),i=a.rad2deg,o=t(\"../../constants/alignment\").MID_SHIFT,s=t(\"../../components/drawing\"),l=t(\"./constants\"),c=t(\"../../lib/svg_text_utils\"),u=t(\"../../plots/cartesian/axes\"),h=t(\"../../plots/cartesian/axis_defaults\"),f=t(\"../../plots/cartesian/position_defaults\"),p=t(\"../../plots/cartesian/layout_attributes\"),d=t(\"../../components/color\"),g={left:\"start\",center:\"middle\",right:\"end\"},v={left:0,center:.5,right:1},m=/[yzafpn\\xb5mkMGTPEZY]/;function y(t){return t&&t.duration>0}function x(t){t.each(function(t){d.stroke(n.select(this),t.line.color)}).each(function(t){d.fill(n.select(this),t.color)}).style(\"stroke-width\",function(t){return t.line.width})}function b(t,e,r){var n=t._fullLayout,i=a.extendFlat({type:\"linear\",ticks:\"outside\",range:r,showline:!0},e),o={type:\"linear\",_id:\"x\"+e._id},s={letter:\"x\",font:n.font,noHover:!0,noTickson:!0};function l(t,e){return a.coerce(i,o,p,t,e)}return h(i,o,l,s,n),f(i,o,l,s),o}function _(t,e){return\"translate(\"+t+\",\"+e+\")\"}function w(t,e,r){return[Math.min(e/t.width,r/t.height),t,e+\"x\"+r]}function k(t,e,r,a){var i=document.createElementNS(\"http://www.w3.org/2000/svg\",\"text\"),o=n.select(i);return o.text(t).attr(\"x\",0).attr(\"y\",0).attr(\"text-anchor\",r).attr(\"data-unformatted\",t).call(c.convertToTspans,a).call(s.font,e),s.bBox(o.node())}function T(t,e,r,n,i,o){var s=\"_cache\"+e;t[s]&&t[s].key===i||(t[s]={key:i,value:r});var l=a.aggNums(o,null,[t[s].value,n],2);return t[s].value=l,l}e.exports=function(t,e,r,h){var f,p=t._fullLayout;y(r)&&h&&(f=h()),a.makeTraceGroups(p._indicatorlayer,e,\"trace\").each(function(e){var h,A,M,S,E,C=e[0].trace,L=n.select(this),P=C._hasGauge,O=C._isAngular,I=C._isBullet,z=C.domain,D={w:p._size.w*(z.x[1]-z.x[0]),h:p._size.h*(z.y[1]-z.y[0]),l:p._size.l+p._size.w*z.x[0],r:p._size.r+p._size.w*(1-z.x[1]),t:p._size.t+p._size.h*(1-z.y[1]),b:p._size.b+p._size.h*z.y[0]},R=D.l+D.w/2,F=D.t+D.h/2,B=Math.min(D.w/2,D.h),N=l.innerRadius*B,j=C.align||\"center\";if(A=F,P){if(O&&(h=R,A=F+B/2,M=function(t){return e=t,r=.9*N,n=Math.sqrt(e.width/2*(e.width/2)+e.height*e.height),[r/n,e,r];var e,r,n}),I){var V=l.bulletPadding,U=1-l.bulletNumberDomainSize+V;h=D.l+(U+(1-U)*v[j])*D.w,M=function(t){return w(t,(l.bulletNumberDomainSize-V)*D.w,D.h)}}}else h=D.l+v[j]*D.w,M=function(t){return w(t,D.w,D.h)};!function(t,e,r,i){var o,l,h,f=r[0].trace,p=i.numbersX,x=i.numbersY,w=f.align||\"center\",A=g[w],M=i.transitionOpts,S=i.onComplete,E=a.ensureSingle(e,\"g\",\"numbers\"),C=[];f._hasNumber&&C.push(\"number\");f._hasDelta&&(C.push(\"delta\"),\"left\"===f.delta.position&&C.reverse());var L=E.selectAll(\"text\").data(C);function P(e,r,n,a){if(!e.match(\"s\")||n>=0==a>=0||r(n).slice(-1).match(m)||r(a).slice(-1).match(m))return r;var i=e.slice().replace(\"s\",\"f\").replace(/\\d+/,function(t){return parseInt(t)-1}),o=b(t,{tickformat:i});return function(t){return Math.abs(t)<1?u.tickText(o,t).text:r(t)}}L.enter().append(\"text\"),L.attr(\"text-anchor\",function(){return A}).attr(\"class\",function(t){return t}).attr(\"x\",null).attr(\"y\",null).attr(\"dx\",null).attr(\"dy\",null),L.exit().remove();var O,I=f.mode+f.align;f._hasDelta&&(O=function(){var e=b(t,{tickformat:f.delta.valueformat},f._range);e.setScale(),u.prepTicks(e);var a=function(t){return u.tickText(e,t).text},i=function(t){var e=f.delta.relative?t.relativeDelta:t.delta;return e},o=function(t,e){return 0===t||\"number\"!=typeof t||isNaN(t)?\"-\":(t>0?f.delta.increasing.symbol:f.delta.decreasing.symbol)+e(t)},h=function(t){return t.delta>=0?f.delta.increasing.color:f.delta.decreasing.color};void 0===f._deltaLastValue&&(f._deltaLastValue=i(r[0]));var p=E.select(\"text.delta\");function g(){p.text(o(i(r[0]),a)).call(d.fill,h(r[0])).call(c.convertToTspans,t)}p.call(s.font,f.delta.font).call(d.fill,h({delta:f._deltaLastValue})),y(M)?p.transition().duration(M.duration).ease(M.easing).tween(\"text\",function(){var t=n.select(this),e=i(r[0]),s=f._deltaLastValue,l=P(f.delta.valueformat,a,s,e),c=n.interpolateNumber(s,e);return f._deltaLastValue=e,function(e){t.text(o(c(e),l)),t.call(d.fill,h({delta:c(e)}))}}).each(\"end\",function(){g(),S&&S()}).each(\"interrupt\",function(){g(),S&&S()}):g();return l=k(o(i(r[0]),a),f.delta.font,A,t),p}(),I+=f.delta.position+f.delta.font.size+f.delta.font.family+f.delta.valueformat,I+=f.delta.increasing.symbol+f.delta.decreasing.symbol,h=l);f._hasNumber&&(!function(){var e=b(t,{tickformat:f.number.valueformat},f._range);e.setScale(),u.prepTicks(e);var a=function(t){return u.tickText(e,t).text},i=f.number.suffix,l=f.number.prefix,h=E.select(\"text.number\");function p(){var e=\"number\"==typeof r[0].y?l+a(r[0].y)+i:\"-\";h.text(e).call(s.font,f.number.font).call(c.convertToTspans,t)}y(M)?h.transition().duration(M.duration).ease(M.easing).each(\"end\",function(){p(),S&&S()}).each(\"interrupt\",function(){p(),S&&S()}).attrTween(\"text\",function(){var t=n.select(this),e=n.interpolateNumber(r[0].lastY,r[0].y);f._lastValue=r[0].y;var o=P(f.number.valueformat,a,r[0].lastY,r[0].y);return function(r){t.text(l+o(e(r))+i)}}):p();o=k(l+a(r[0].y)+i,f.number.font,A,t)}(),I+=f.number.font.size+f.number.font.family+f.number.valueformat+f.number.suffix+f.number.prefix,h=o);if(f._hasDelta&&f._hasNumber){var z,D,R=[(o.left+o.right)/2,(o.top+o.bottom)/2],F=[(l.left+l.right)/2,(l.top+l.bottom)/2],B=.75*f.delta.font.size;\"left\"===f.delta.position&&(z=T(f,\"deltaPos\",0,-1*(o.width*v[f.align]+l.width*(1-v[f.align])+B),I,Math.min),D=R[1]-F[1],h={width:o.width+l.width+B,height:Math.max(o.height,l.height),left:l.left+z,right:o.right,top:Math.min(o.top,l.top+D),bottom:Math.max(o.bottom,l.bottom+D)}),\"right\"===f.delta.position&&(z=T(f,\"deltaPos\",0,o.width*(1-v[f.align])+l.width*v[f.align]+B,I,Math.max),D=R[1]-F[1],h={width:o.width+l.width+B,height:Math.max(o.height,l.height),left:o.left,right:l.right+z,top:Math.min(o.top,l.top+D),bottom:Math.max(o.bottom,l.bottom+D)}),\"bottom\"===f.delta.position&&(z=null,D=l.height,h={width:Math.max(o.width,l.width),height:o.height+l.height,left:Math.min(o.left,l.left),right:Math.max(o.right,l.right),top:o.bottom-o.height,bottom:o.bottom+l.height}),\"top\"===f.delta.position&&(z=null,D=o.top,h={width:Math.max(o.width,l.width),height:o.height+l.height,left:Math.min(o.left,l.left),right:Math.max(o.right,l.right),top:o.bottom-o.height-l.height,bottom:o.bottom}),O.attr({dx:z,dy:D})}(f._hasNumber||f._hasDelta)&&E.attr(\"transform\",function(){var t=i.numbersScaler(h);I+=t[2];var e,r=T(f,\"numbersScale\",1,t[0],I,Math.min);f._scaleNumbers||(r=1),e=f._isAngular?x-r*h.bottom:x-r*(h.top+h.bottom)/2,f._numbersTop=r*h.top+e;var n=h[w];\"center\"===w&&(n=(h.left+h.right)/2);var a=p-r*n;return _(a=T(f,\"numbersTranslate\",0,a,I,Math.max),e)+\" scale(\"+r+\")\"})}(t,L,e,{numbersX:h,numbersY:A,numbersScaler:M,transitionOpts:r,onComplete:f}),P&&(S={range:C.gauge.axis.range,color:C.gauge.bgcolor,line:{color:C.gauge.bordercolor,width:0},thickness:1},E={range:C.gauge.axis.range,color:\"rgba(0, 0, 0, 0)\",line:{color:C.gauge.bordercolor,width:C.gauge.borderwidth},thickness:1});var q=L.selectAll(\"g.angular\").data(O?e:[]);q.exit().remove();var H=L.selectAll(\"g.angularaxis\").data(O?e:[]);H.exit().remove(),O&&function(t,e,r,a){var s,l,c,h,f=r[0].trace,p=a.size,d=a.radius,g=a.innerRadius,v=a.gaugeBg,m=a.gaugeOutline,w=[p.l+p.w/2,p.t+p.h/2+d/2],k=a.gauge,T=a.layer,A=a.transitionOpts,M=a.onComplete,S=Math.PI/2;function E(t){var e=f.gauge.axis.range[0],r=f.gauge.axis.range[1],n=(t-e)/(r-e)*Math.PI-S;return n<-S?-S:n>S?S:n}function C(t){return n.svg.arc().innerRadius((g+d)/2-t/2*(d-g)).outerRadius((g+d)/2+t/2*(d-g)).startAngle(-S)}function L(t){t.attr(\"d\",function(t){return C(t.thickness).startAngle(E(t.range[0])).endAngle(E(t.range[1]))()})}k.enter().append(\"g\").classed(\"angular\",!0),k.attr(\"transform\",_(w[0],w[1])),T.enter().append(\"g\").classed(\"angularaxis\",!0).classed(\"crisp\",!0),T.selectAll(\"g.xangularaxistick,path,text\").remove(),(s=b(t,f.gauge.axis)).type=\"linear\",s.range=f.gauge.axis.range,s._id=\"xangularaxis\",s.setScale();var P=function(t){return(s.range[0]-t.x)/(s.range[1]-s.range[0])*Math.PI+Math.PI},O={},I=u.makeLabelFns(s,0).labelStandoff;O.xFn=function(t){var e=P(t);return Math.cos(e)*I},O.yFn=function(t){var e=P(t),r=Math.sin(e)>0?.2:1;return-Math.sin(e)*(I+t.fontSize*r)+Math.abs(Math.cos(e))*(t.fontSize*o)},O.anchorFn=function(t){var e=P(t),r=Math.cos(e);return Math.abs(r)<.1?\"middle\":r>0?\"start\":\"end\"},O.heightFn=function(t,e,r){var n=P(t);return-.5*(1+Math.sin(n))*r};var z=function(t){return _(w[0]+d*Math.cos(t),w[1]-d*Math.sin(t))};c=function(t){return z(P(t))};if(l=u.calcTicks(s),h=u.getTickSigns(s)[2],s.visible){h=\"inside\"===s.ticks?-1:1;var D=(s.linewidth||1)/2;u.drawTicks(t,s,{vals:l,layer:T,path:\"M\"+h*D+\",0h\"+h*s.ticklen,transFn:function(t){var e=P(t);return z(e)+\"rotate(\"+-i(e)+\")\"}}),u.drawLabels(t,s,{vals:l,layer:T,transFn:c,labelFns:O})}var R=[v].concat(f.gauge.steps),F=k.selectAll(\"g.bg-arc\").data(R);F.enter().append(\"g\").classed(\"bg-arc\",!0).append(\"path\"),F.select(\"path\").call(L).call(x),F.exit().remove();var B=C(f.gauge.bar.thickness),N=k.selectAll(\"g.value-arc\").data([f.gauge.bar]);N.enter().append(\"g\").classed(\"value-arc\",!0).append(\"path\");var j=N.select(\"path\");y(A)?(j.transition().duration(A.duration).ease(A.easing).each(\"end\",function(){M&&M()}).each(\"interrupt\",function(){M&&M()}).attrTween(\"d\",(V=B,U=E(r[0].lastY),q=E(r[0].y),function(){var t=n.interpolate(U,q);return function(e){return V.endAngle(t(e))()}})),f._lastValue=r[0].y):j.attr(\"d\",\"number\"==typeof r[0].y?B.endAngle(E(r[0].y)):\"M0,0Z\");var V,U,q;j.call(x),N.exit().remove(),R=[];var H=f.gauge.threshold.value;H&&R.push({range:[H,H],color:f.gauge.threshold.color,line:{color:f.gauge.threshold.line.color,width:f.gauge.threshold.line.width},thickness:f.gauge.threshold.thickness});var G=k.selectAll(\"g.threshold-arc\").data(R);G.enter().append(\"g\").classed(\"threshold-arc\",!0).append(\"path\"),G.select(\"path\").call(L).call(x),G.exit().remove();var Y=k.selectAll(\"g.gauge-outline\").data([m]);Y.enter().append(\"g\").classed(\"gauge-outline\",!0).append(\"path\"),Y.select(\"path\").call(L).call(x),Y.exit().remove()}(t,0,e,{radius:B,innerRadius:N,gauge:q,layer:H,size:D,gaugeBg:S,gaugeOutline:E,transitionOpts:r,onComplete:f});var G=L.selectAll(\"g.bullet\").data(I?e:[]);G.exit().remove();var Y=L.selectAll(\"g.bulletaxis\").data(I?e:[]);Y.exit().remove(),I&&function(t,e,r,n){var a,i,o,s,c,h=r[0].trace,f=n.gauge,p=n.layer,g=n.gaugeBg,v=n.gaugeOutline,m=n.size,_=h.domain,w=n.transitionOpts,k=n.onComplete;f.enter().append(\"g\").classed(\"bullet\",!0),f.attr(\"transform\",\"translate(\"+m.l+\", \"+m.t+\")\"),p.enter().append(\"g\").classed(\"bulletaxis\",!0).classed(\"crisp\",!0),p.selectAll(\"g.xbulletaxistick,path,text\").remove();var T=m.h,A=h.gauge.bar.thickness*T,M=_.x[0],S=_.x[0]+(_.x[1]-_.x[0])*(h._hasNumber||h._hasDelta?1-l.bulletNumberDomainSize:1);(a=b(t,h.gauge.axis))._id=\"xbulletaxis\",a.domain=[M,S],a.setScale(),i=u.calcTicks(a),o=u.makeTransFn(a),s=u.getTickSigns(a)[2],c=m.t+m.h,a.visible&&(u.drawTicks(t,a,{vals:\"inside\"===a.ticks?u.clipEnds(a,i):i,layer:p,path:u.makeTickPath(a,c,s),transFn:o}),u.drawLabels(t,a,{vals:i,layer:p,transFn:o,labelFns:u.makeLabelFns(a,c)}));function E(t){t.attr(\"width\",function(t){return Math.max(0,a.c2p(t.range[1])-a.c2p(t.range[0]))}).attr(\"x\",function(t){return a.c2p(t.range[0])}).attr(\"y\",function(t){return.5*(1-t.thickness)*T}).attr(\"height\",function(t){return t.thickness*T})}var C=[g].concat(h.gauge.steps),L=f.selectAll(\"g.bg-bullet\").data(C);L.enter().append(\"g\").classed(\"bg-bullet\",!0).append(\"rect\"),L.select(\"rect\").call(E).call(x),L.exit().remove();var P=f.selectAll(\"g.value-bullet\").data([h.gauge.bar]);P.enter().append(\"g\").classed(\"value-bullet\",!0).append(\"rect\"),P.select(\"rect\").attr(\"height\",A).attr(\"y\",(T-A)/2).call(x),y(w)?P.select(\"rect\").transition().duration(w.duration).ease(w.easing).each(\"end\",function(){k&&k()}).each(\"interrupt\",function(){k&&k()}).attr(\"width\",Math.max(0,a.c2p(Math.min(h.gauge.axis.range[1],r[0].y)))):P.select(\"rect\").attr(\"width\",\"number\"==typeof r[0].y?Math.max(0,a.c2p(Math.min(h.gauge.axis.range[1],r[0].y))):0);P.exit().remove();var O=r.filter(function(){return h.gauge.threshold.value}),I=f.selectAll(\"g.threshold-bullet\").data(O);I.enter().append(\"g\").classed(\"threshold-bullet\",!0).append(\"line\"),I.select(\"line\").attr(\"x1\",a.c2p(h.gauge.threshold.value)).attr(\"x2\",a.c2p(h.gauge.threshold.value)).attr(\"y1\",(1-h.gauge.threshold.thickness)/2*T).attr(\"y2\",(1-(1-h.gauge.threshold.thickness)/2)*T).call(d.stroke,h.gauge.threshold.line.color).style(\"stroke-width\",h.gauge.threshold.line.width),I.exit().remove();var z=f.selectAll(\"g.gauge-outline\").data([v]);z.enter().append(\"g\").classed(\"gauge-outline\",!0).append(\"rect\"),z.select(\"rect\").call(E).call(x),z.exit().remove()}(t,0,e,{gauge:G,layer:Y,size:D,gaugeBg:S,gaugeOutline:E,transitionOpts:r,onComplete:f});var W=L.selectAll(\"text.title\").data(e);W.exit().remove(),W.enter().append(\"text\").classed(\"title\",!0),W.attr(\"text-anchor\",function(){return I?g.right:g[C.title.align]}).text(C.title.text).call(s.font,C.title.font).call(c.convertToTspans,t),W.attr(\"transform\",function(){var t,e=D.l+D.w*v[C.title.align],r=l.titlePadding,n=s.bBox(W.node());if(P){if(O)if(C.gauge.axis.visible)t=s.bBox(H.node()).top-r-n.bottom;else t=D.t+D.h/2-B/2-n.bottom-r;I&&(t=A-(n.top+n.bottom)/2,e=D.l-l.bulletPadding*D.w)}else t=C._numbersTop-r-n.bottom;return _(e,t)})})}},{\"../../components/color\":594,\"../../components/drawing\":615,\"../../constants/alignment\":688,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../../plots/cartesian/axes\":767,\"../../plots/cartesian/axis_defaults\":769,\"../../plots/cartesian/layout_attributes\":779,\"../../plots/cartesian/position_defaults\":782,\"./constants\":1043,d3:164}],1047:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/attributes\"),a=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"../mesh3d/attributes\"),o=t(\"../../plots/attributes\"),s=t(\"../../lib/extend\").extendFlat,l=t(\"../../plot_api/edit_types\").overrideAll;var c=e.exports=l(s({x:{valType:\"data_array\"},y:{valType:\"data_array\"},z:{valType:\"data_array\"},value:{valType:\"data_array\"},isomin:{valType:\"number\"},isomax:{valType:\"number\"},surface:{show:{valType:\"boolean\",dflt:!0},count:{valType:\"integer\",dflt:2,min:1},fill:{valType:\"number\",min:0,max:1,dflt:1},pattern:{valType:\"flaglist\",flags:[\"A\",\"B\",\"C\",\"D\",\"E\"],extras:[\"all\",\"odd\",\"even\"],dflt:\"all\"}},spaceframe:{show:{valType:\"boolean\",dflt:!1},fill:{valType:\"number\",min:0,max:1,dflt:.15}},slices:{x:{show:{valType:\"boolean\",dflt:!1},locations:{valType:\"data_array\",dflt:[]},fill:{valType:\"number\",min:0,max:1,dflt:1}},y:{show:{valType:\"boolean\",dflt:!1},locations:{valType:\"data_array\",dflt:[]},fill:{valType:\"number\",min:0,max:1,dflt:1}},z:{show:{valType:\"boolean\",dflt:!1},locations:{valType:\"data_array\",dflt:[]},fill:{valType:\"number\",min:0,max:1,dflt:1}}},caps:{x:{show:{valType:\"boolean\",dflt:!0},fill:{valType:\"number\",min:0,max:1,dflt:1}},y:{show:{valType:\"boolean\",dflt:!0},fill:{valType:\"number\",min:0,max:1,dflt:1}},z:{show:{valType:\"boolean\",dflt:!0},fill:{valType:\"number\",min:0,max:1,dflt:1}}},text:{valType:\"string\",dflt:\"\",arrayOk:!0},hovertext:{valType:\"string\",dflt:\"\",arrayOk:!0},hovertemplate:a()},n(\"\",{colorAttr:\"`value`\",showScaleDflt:!0,editTypeOverride:\"calc\"}),{opacity:i.opacity,lightposition:i.lightposition,lighting:i.lighting,flatshading:i.flatshading,contour:i.contour,hoverinfo:s({},o.hoverinfo)}),\"calc\",\"nested\");c.flatshading.dflt=!0,c.lighting.facenormalsepsilon.dflt=0,c.x.editType=c.y.editType=c.z.editType=c.value.editType=\"calc+clearAxisTypes\",c.transforms=void 0},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../../plots/attributes\":764,\"../../plots/template_attributes\":843,\"../mesh3d/attributes\":1052}],1048:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/calc\");e.exports=function(t,e){e._len=Math.min(e.x.length,e.y.length,e.z.length,e.value.length);for(var r=1/0,a=-1/0,i=e.value.length,o=0;o<i;o++){var s=e.value[o];r=Math.min(r,s),a=Math.max(a,s)}e._minValues=r,e._maxValues=a,e._vMin=void 0===e.isomin||null===e.isomin?r:e.isomin,e._vMax=void 0===e.isomax||null===e.isomin?a:e.isomax,n(t,e,{vals:[e._vMin,e._vMax],containerStr:\"\",cLetter:\"c\"})}},{\"../../components/colorscale/calc\":602}],1049:[function(t,e,r){\"use strict\";var n=t(\"gl-mesh3d\"),a=t(\"../../lib\"),i=t(\"../../lib/gl_format_color\").parseColorScale,o=t(\"../../lib/str2rgbarray\"),s=t(\"../../components/colorscale\").extractOpts,l=t(\"../../plots/gl3d/zip3\");function c(t){return a.distinctVals(t).vals}var u=function(t,e){for(var r=e.length-1;r>0;r--){var n=Math.min(e[r],e[r-1]),a=Math.max(e[r],e[r-1]);if(a>n&&n<t&&t<=a)return{id:r,distRatio:(a-t)/(a-n)}}return{id:0,distRatio:0}};function h(t,e,r){this.scene=t,this.uid=r,this.mesh=e,this.name=\"\",this.data=null,this.showContour=!1}var f=h.prototype;function p(t){t._i=[],t._j=[],t._k=[];var e,r,n=t.surface.show,a=t.spaceframe.show,i=t.surface.fill,o=t.spaceframe.fill,s=!1,l=!1,h=0,f=c(t.x.slice(0,t._len)),p=c(t.y.slice(0,t._len)),d=c(t.z.slice(0,t._len)),g=f.length,v=p.length,m=d.length;function y(t,e,r){return r+m*e+m*v*t}var x,b,_,w,k,T=t._minValues,A=t._maxValues,M=t._vMin,S=t._vMax;function E(t,e,n){for(var a=w.length,i=r;i<a;i++)if(t===x[i]&&e===b[i]&&n===_[i])return i;return-1}function C(){r=e}function L(){x=[],b=[],_=[],w=[],e=0,C()}function P(t,r,n,a){return x.push(t),b.push(r),_.push(n),w.push(a),++e-1}function O(t,e,r){for(var n=[],a=0;a<t.length;a++)n[a]=t[a]*(1-r)+r*e[a];return n}function I(t){k=t}function z(t,e){return\"all\"===t||null===t||t.indexOf(e)>-1}function D(t,e){return null===t?e:t}function R(e,r,n){C();var a,i,o,s=[r],l=[n];if(k>=1)s=[r],l=[n];else if(k>0){var c=function(t,e){var r=t[0],n=t[1],a=t[2],i=function(t,e,r){for(var n=[],a=0;a<t.length;a++)n[a]=(t[a]+e[a]+r[a])/3;return n}(r,n,a),o=Math.sqrt(1-k),s=O(i,r,o),l=O(i,n,o),c=O(i,a,o),u=e[0],h=e[1],f=e[2];return{xyzv:[[r,n,l],[l,s,r],[n,a,c],[c,l,n],[a,r,s],[s,c,a]],abc:[[u,h,-1],[-1,-1,u],[h,f,-1],[-1,-1,h],[f,u,-1],[-1,-1,f]]}}(r,n);s=c.xyzv,l=c.abc}for(var u=0;u<s.length;u++){r=s[u],n=l[u];for(var f=[],p=0;p<3;p++){var d=r[p][0],g=r[p][1],v=r[p][2],m=r[p][3],y=n[p]>-1?n[p]:E(d,g,v);f[p]=y>-1?y:P(d,g,v,D(e,m))}a=f[0],i=f[1],o=f[2],t._i.push(a),t._j.push(i),t._k.push(o),++h}}function F(t,e,r,n){var a=t[3];a<r&&(a=r),a>n&&(a=n);for(var i=(t[3]-a)/(t[3]-e[3]+1e-9),o=[],s=0;s<4;s++)o[s]=(1-i)*t[s]+i*e[s];return o}function B(t,e,r){return t>=e&&t<=r}function N(t){var e=.001*(S-M);return t>=M-e&&t<=S+e}function j(e){for(var r=[],n=0;n<4;n++){var a=e[n];r.push([t.x[a],t.y[a],t.z[a],t.value[a]])}return r}var V=3;function U(t,e,r,n,a,i){i||(i=1),r=[-1,-1,-1];var o=!1,s=[B(e[0][3],n,a),B(e[1][3],n,a),B(e[2][3],n,a)];if(!s[0]&&!s[1]&&!s[2])return!1;var l=function(t,e,r){return N(e[0][3])&&N(e[1][3])&&N(e[2][3])?(R(t,e,r),!0):i<V&&U(t,e,r,M,S,++i)};if(s[0]&&s[1]&&s[2])return l(t,e,r)||o;var c=!1;return[[0,1,2],[2,0,1],[1,2,0]].forEach(function(i){if(s[i[0]]&&s[i[1]]&&!s[i[2]]){var u=e[i[0]],h=e[i[1]],f=e[i[2]],p=F(f,u,n,a),d=F(f,h,n,a);o=l(t,[d,p,u],[-1,-1,r[i[0]]])||o,o=l(t,[u,h,d],[r[i[0]],r[i[1]],-1])||o,c=!0}}),c?o:([[0,1,2],[1,2,0],[2,0,1]].forEach(function(i){if(s[i[0]]&&!s[i[1]]&&!s[i[2]]){var u=e[i[0]],h=e[i[1]],f=e[i[2]],p=F(h,u,n,a),d=F(f,u,n,a);o=l(t,[d,p,u],[-1,-1,r[i[0]]])||o,c=!0}}),o)}function q(t,e,r,n){var a=!1,i=j(e),o=[B(i[0][3],r,n),B(i[1][3],r,n),B(i[2][3],r,n),B(i[3][3],r,n)];if(!(o[0]||o[1]||o[2]||o[3]))return a;if(o[0]&&o[1]&&o[2]&&o[3])return l&&(a=function(t,e,r){var n=function(n,a,i){R(t,[e[n],e[a],e[i]],[r[n],r[a],r[i]])};n(0,1,2),n(3,0,1),n(2,3,0),n(1,2,3)}(t,i,e)||a),a;var s=!1;return[[0,1,2,3],[3,0,1,2],[2,3,0,1],[1,2,3,0]].forEach(function(c){if(o[c[0]]&&o[c[1]]&&o[c[2]]&&!o[c[3]]){var u=i[c[0]],h=i[c[1]],f=i[c[2]],p=i[c[3]];if(l)a=R(t,[u,h,f],[e[c[0]],e[c[1]],e[c[2]]])||a;else{var d=F(p,u,r,n),g=F(p,h,r,n),v=F(p,f,r,n);a=R(null,[d,g,v],[-1,-1,-1])||a}s=!0}}),s?a:([[0,1,2,3],[1,2,3,0],[2,3,0,1],[3,0,1,2],[0,2,3,1],[1,3,2,0]].forEach(function(c){if(o[c[0]]&&o[c[1]]&&!o[c[2]]&&!o[c[3]]){var u=i[c[0]],h=i[c[1]],f=i[c[2]],p=i[c[3]],d=F(f,u,r,n),g=F(f,h,r,n),v=F(p,h,r,n),m=F(p,u,r,n);l?(a=R(t,[u,m,d],[e[c[0]],-1,-1])||a,a=R(t,[h,g,v],[e[c[1]],-1,-1])||a):a=function(t,e,r){var n=function(n,a,i){R(t,[e[n],e[a],e[i]],[r[n],r[a],r[i]])};n(0,1,2),n(2,3,0)}(null,[d,g,v,m],[-1,-1,-1,-1])||a,s=!0}}),s?a:([[0,1,2,3],[1,2,3,0],[2,3,0,1],[3,0,1,2]].forEach(function(c){if(o[c[0]]&&!o[c[1]]&&!o[c[2]]&&!o[c[3]]){var u=i[c[0]],h=i[c[1]],f=i[c[2]],p=i[c[3]],d=F(h,u,r,n),g=F(f,u,r,n),v=F(p,u,r,n);l?(a=R(t,[u,d,g],[e[c[0]],-1,-1])||a,a=R(t,[u,g,v],[e[c[0]],-1,-1])||a,a=R(t,[u,v,d],[e[c[0]],-1,-1])||a):a=R(null,[d,g,v],[-1,-1,-1])||a,s=!0}}),a))}function H(t,e,r,n,a,i,o,c,u,h,f){var p=!1;return s&&(z(t,\"A\")&&(p=q(null,[e,r,n,i],h,f)||p),z(t,\"B\")&&(p=q(null,[r,n,a,u],h,f)||p),z(t,\"C\")&&(p=q(null,[r,i,o,u],h,f)||p),z(t,\"D\")&&(p=q(null,[n,i,c,u],h,f)||p),z(t,\"E\")&&(p=q(null,[r,n,i,u],h,f)||p)),l&&(p=q(t,[r,n,i,u],h,f)||p),p}function G(t,e,r,n,a,i,o,s){return[!0===s[0]||U(t,j([e,r,n]),[e,r,n],i,o),!0===s[1]||U(t,j([n,a,e]),[n,a,e],i,o)]}function Y(t,e,r,n,a,i,o,s,l){return s?G(t,e,r,a,n,i,o,l):G(t,r,a,n,e,i,o,l)}function W(t,e,r,n,a,i,o){var s,l,c,u,h=!1,f=function(){h=U(t,[s,l,c],[-1,-1,-1],a,i)||h,h=U(t,[c,u,s],[-1,-1,-1],a,i)||h},p=o[0],d=o[1],g=o[2];return p&&(s=O(j([y(e,r-0,n-0)])[0],j([y(e-1,r-0,n-0)])[0],p),l=O(j([y(e,r-0,n-1)])[0],j([y(e-1,r-0,n-1)])[0],p),c=O(j([y(e,r-1,n-1)])[0],j([y(e-1,r-1,n-1)])[0],p),u=O(j([y(e,r-1,n-0)])[0],j([y(e-1,r-1,n-0)])[0],p),f()),d&&(s=O(j([y(e-0,r,n-0)])[0],j([y(e-0,r-1,n-0)])[0],d),l=O(j([y(e-0,r,n-1)])[0],j([y(e-0,r-1,n-1)])[0],d),c=O(j([y(e-1,r,n-1)])[0],j([y(e-1,r-1,n-1)])[0],d),u=O(j([y(e-1,r,n-0)])[0],j([y(e-1,r-1,n-0)])[0],d),f()),g&&(s=O(j([y(e-0,r-0,n)])[0],j([y(e-0,r-0,n-1)])[0],g),l=O(j([y(e-0,r-1,n)])[0],j([y(e-0,r-1,n-1)])[0],g),c=O(j([y(e-1,r-1,n)])[0],j([y(e-1,r-1,n-1)])[0],g),u=O(j([y(e-1,r-0,n)])[0],j([y(e-1,r-0,n-1)])[0],g),f()),h}function X(t,e,r,n,a,i,o,l,c,u,h,f){var p=t;return f?(s&&\"even\"===t&&(p=null),H(p,e,r,n,a,i,o,l,c,u,h)):(s&&\"odd\"===t&&(p=null),H(p,c,l,o,i,a,n,r,e,u,h))}function Z(t,e,r,n,a){for(var i=[],o=0,s=0;s<e.length;s++)for(var l=e[s],c=1;c<m;c++)for(var u=1;u<v;u++)i.push(Y(t,y(l,u-1,c-1),y(l,u-1,c),y(l,u,c-1),y(l,u,c),r,n,(l+u+c)%2,a&&a[o]?a[o]:[])),o++;return i}function J(t,e,r,n,a){for(var i=[],o=0,s=0;s<e.length;s++)for(var l=e[s],c=1;c<g;c++)for(var u=1;u<m;u++)i.push(Y(t,y(c-1,l,u-1),y(c,l,u-1),y(c-1,l,u),y(c,l,u),r,n,(c+l+u)%2,a&&a[o]?a[o]:[])),o++;return i}function K(t,e,r,n,a){for(var i=[],o=0,s=0;s<e.length;s++)for(var l=e[s],c=1;c<v;c++)for(var u=1;u<g;u++)i.push(Y(t,y(u-1,c-1,l),y(u-1,c,l),y(u,c-1,l),y(u,c,l),r,n,(u+c+l)%2,a&&a[o]?a[o]:[])),o++;return i}function Q(t,e,r){for(var n=1;n<m;n++)for(var a=1;a<v;a++)for(var i=1;i<g;i++)X(t,y(i-1,a-1,n-1),y(i-1,a-1,n),y(i-1,a,n-1),y(i-1,a,n),y(i,a-1,n-1),y(i,a-1,n),y(i,a,n-1),y(i,a,n),e,r,(i+a+n)%2)}function $(t,e,r){s=!0,Q(t,e,r),s=!1}function tt(t,e,r,n,a,i){for(var o=[],s=0,l=0;l<e.length;l++)for(var c=e[l],u=1;u<m;u++)for(var h=1;h<v;h++)o.push(W(t,c,h,u,r,n,a[l],i&&i[s]&&i[s])),s++;return o}function et(t,e,r,n,a,i){for(var o=[],s=0,l=0;l<e.length;l++)for(var c=e[l],u=1;u<g;u++)for(var h=1;h<m;h++)o.push(W(t,u,c,h,r,n,a[l],i&&i[s]&&i[s])),s++;return o}function rt(t,e,r,n,a,i){for(var o=[],s=0,l=0;l<e.length;l++)for(var c=e[l],u=1;u<v;u++)for(var h=1;h<g;h++)o.push(W(t,h,u,c,r,n,a[l],i&&i[s]&&i[s])),s++;return o}function nt(t,e){for(var r=[],n=t;n<e;n++)r.push(n);return r}return function(){if(L(),function(){for(var e=0;e<g;e++)for(var r=0;r<v;r++)for(var n=0;n<m;n++){var a=y(e,r,n);P(t.x[a],t.y[a],t.z[a],t.value[a])}}(),a&&o&&(I(o),l=!0,Q(null,M,S),l=!1),n&&i){I(i);for(var e=t.surface.pattern,r=t.surface.count,s=0;s<r;s++){var c=1===r?.5:s/(r-1),k=(1-c)*M+c*S,E=Math.abs(k-T)>Math.abs(k-A)?[T,k]:[k,A];$(e,E[0],E[1])}}var C=[[Math.min(M,A),Math.max(M,A)],[Math.min(T,S),Math.max(T,S)]];[\"x\",\"y\",\"z\"].forEach(function(e){for(var r=[],n=0;n<C.length;n++){var a=0,i=C[n][0],o=C[n][1],s=t.slices[e];if(s.show&&s.fill){I(s.fill);var l=[],c=[],h=[];if(s.locations.length)for(var y=0;y<s.locations.length;y++){var x=u(s.locations[y],\"x\"===e?f:\"y\"===e?p:d);0===x.distRatio?l.push(x.id):x.id>0&&(c.push(x.id),\"x\"===e?h.push([x.distRatio,0,0]):\"y\"===e?h.push([0,x.distRatio,0]):h.push([0,0,x.distRatio]))}else l=nt(1,\"x\"===e?g-1:\"y\"===e?v-1:m-1);c.length>0&&(r[a]=\"x\"===e?tt(null,c,i,o,h,r[a]):\"y\"===e?et(null,c,i,o,h,r[a]):rt(null,c,i,o,h,r[a]),a++),l.length>0&&(r[a]=\"x\"===e?Z(null,l,i,o,r[a]):\"y\"===e?J(null,l,i,o,r[a]):K(null,l,i,o,r[a]),a++)}var b=t.caps[e];b.show&&b.fill&&(I(b.fill),r[a]=\"x\"===e?Z(null,[0,g-1],i,o,r[a]):\"y\"===e?J(null,[0,v-1],i,o,r[a]):K(null,[0,m-1],i,o,r[a]),a++)}}),0===h&&L(),t._x=x,t._y=b,t._z=_,t._intensity=w,t._Xs=f,t._Ys=p,t._Zs=d}(),t}f.handlePick=function(t){if(t.object===this.mesh){var e=t.data.index,r=this.data._x[e],n=this.data._y[e],a=this.data._z[e],i=this.data._Ys.length,o=this.data._Zs.length,s=u(r,this.data._Xs).id,l=u(n,this.data._Ys).id,c=u(a,this.data._Zs).id,h=t.index=c+o*l+o*i*s;t.traceCoordinate=[this.data._x[h],this.data._y[h],this.data._z[h],this.data.value[h]];var f=this.data.hovertext||this.data.text;return Array.isArray(f)&&void 0!==f[h]?t.textLabel=f[h]:f&&(t.textLabel=f),!0}},f.update=function(t){var e=this.scene,r=e.fullSceneLayout;function n(t,e,r,n){return e.map(function(e){return t.d2l(e,0,n)*r})}this.data=p(t);var a={positions:l(n(r.xaxis,t._x,e.dataScale[0],t.xcalendar),n(r.yaxis,t._y,e.dataScale[1],t.ycalendar),n(r.zaxis,t._z,e.dataScale[2],t.zcalendar)),cells:l(t._i,t._j,t._k),lightPosition:[t.lightposition.x,t.lightposition.y,t.lightposition.z],ambient:t.lighting.ambient,diffuse:t.lighting.diffuse,specular:t.lighting.specular,roughness:t.lighting.roughness,fresnel:t.lighting.fresnel,vertexNormalsEpsilon:t.lighting.vertexnormalsepsilon,faceNormalsEpsilon:t.lighting.facenormalsepsilon,opacity:t.opacity,contourEnable:t.contour.show,contourColor:o(t.contour.color).slice(0,3),contourWidth:t.contour.width,useFacetNormals:t.flatshading},c=s(t);a.vertexIntensity=t._intensity,a.vertexIntensityBounds=[c.min,c.max],a.colormap=i(t),this.mesh.update(a)},f.dispose=function(){this.scene.glplot.remove(this.mesh),this.mesh.dispose()},e.exports={findNearestOnAxis:u,generateIsoMeshes:p,createIsosurfaceTrace:function(t,e){var r=t.glplot.gl,a=n({gl:r}),i=new h(t,a,e.uid);return a._trace=i,i.update(e),t.glplot.add(a),i}}},{\"../../components/colorscale\":606,\"../../lib\":719,\"../../lib/gl_format_color\":716,\"../../lib/str2rgbarray\":742,\"../../plots/gl3d/zip3\":818,\"gl-mesh3d\":281}],1050:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../registry\"),i=t(\"./attributes\"),o=t(\"../../components/colorscale/defaults\");function s(t,e,r,n,i){var s=i(\"isomin\"),l=i(\"isomax\");null!=l&&null!=s&&s>l&&(e.isomin=null,e.isomax=null);var c=i(\"x\"),u=i(\"y\"),h=i(\"z\"),f=i(\"value\");c&&c.length&&u&&u.length&&h&&h.length&&f&&f.length?(a.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\",\"y\",\"z\"],n),[\"x\",\"y\",\"z\"].forEach(function(t){var e=\"caps.\"+t;i(e+\".show\")&&i(e+\".fill\");var r=\"slices.\"+t;i(r+\".show\")&&(i(r+\".fill\"),i(r+\".locations\"))}),i(\"spaceframe.show\")&&i(\"spaceframe.fill\"),i(\"surface.show\")&&(i(\"surface.count\"),i(\"surface.fill\"),i(\"surface.pattern\")),i(\"contour.show\")&&(i(\"contour.color\"),i(\"contour.width\")),[\"text\",\"hovertext\",\"hovertemplate\",\"lighting.ambient\",\"lighting.diffuse\",\"lighting.specular\",\"lighting.roughness\",\"lighting.fresnel\",\"lighting.vertexnormalsepsilon\",\"lighting.facenormalsepsilon\",\"lightposition.x\",\"lightposition.y\",\"lightposition.z\",\"flatshading\",\"opacity\"].forEach(function(t){i(t)}),o(t,e,n,i,{prefix:\"\",cLetter:\"c\"}),e._length=null):e.visible=!1}e.exports={supplyDefaults:function(t,e,r,a){s(t,e,0,a,function(r,a){return n.coerce(t,e,i,r,a)})},supplyIsoDefaults:s}},{\"../../components/colorscale/defaults\":604,\"../../lib\":719,\"../../registry\":848,\"./attributes\":1047}],1051:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\").supplyDefaults,calc:t(\"./calc\"),colorbar:{min:\"cmin\",max:\"cmax\"},plot:t(\"./convert\").createIsosurfaceTrace,moduleType:\"trace\",name:\"isosurface\",basePlotModule:t(\"../../plots/gl3d\"),categories:[\"gl3d\"],meta:{}}},{\"../../plots/gl3d\":807,\"./attributes\":1047,\"./calc\":1048,\"./convert\":1049,\"./defaults\":1050}],1052:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/attributes\"),a=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"../surface/attributes\"),o=t(\"../../plots/attributes\"),s=t(\"../../lib/extend\").extendFlat;e.exports=s({x:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},y:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},z:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},i:{valType:\"data_array\",editType:\"calc\"},j:{valType:\"data_array\",editType:\"calc\"},k:{valType:\"data_array\",editType:\"calc\"},text:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"calc\"},hovertext:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"calc\"},hovertemplate:a({editType:\"calc\"}),delaunayaxis:{valType:\"enumerated\",values:[\"x\",\"y\",\"z\"],dflt:\"z\",editType:\"calc\"},alphahull:{valType:\"number\",dflt:-1,editType:\"calc\"},intensity:{valType:\"data_array\",editType:\"calc\"},color:{valType:\"color\",editType:\"calc\"},vertexcolor:{valType:\"data_array\",editType:\"calc\"},facecolor:{valType:\"data_array\",editType:\"calc\"},transforms:void 0},n(\"\",{colorAttr:\"`intensity`\",showScaleDflt:!0,editTypeOverride:\"calc\"}),{opacity:i.opacity,flatshading:{valType:\"boolean\",dflt:!1,editType:\"calc\"},contour:{show:s({},i.contours.x.show,{}),color:i.contours.x.color,width:i.contours.x.width,editType:\"calc\"},lightposition:{x:s({},i.lightposition.x,{dflt:1e5}),y:s({},i.lightposition.y,{dflt:1e5}),z:s({},i.lightposition.z,{dflt:0}),editType:\"calc\"},lighting:s({vertexnormalsepsilon:{valType:\"number\",min:0,max:1,dflt:1e-12,editType:\"calc\"},facenormalsepsilon:{valType:\"number\",min:0,max:1,dflt:1e-6,editType:\"calc\"},editType:\"calc\"},i.lighting),hoverinfo:s({},o.hoverinfo,{editType:\"calc\"})})},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plots/attributes\":764,\"../../plots/template_attributes\":843,\"../surface/attributes\":1225}],1053:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/calc\");e.exports=function(t,e){e.intensity&&n(t,e,{vals:e.intensity,containerStr:\"\",cLetter:\"c\"})}},{\"../../components/colorscale/calc\":602}],1054:[function(t,e,r){\"use strict\";var n=t(\"gl-mesh3d\"),a=t(\"delaunay-triangulate\"),i=t(\"alpha-shape\"),o=t(\"convex-hull\"),s=t(\"../../lib/gl_format_color\").parseColorScale,l=t(\"../../lib/str2rgbarray\"),c=t(\"../../components/colorscale\").extractOpts,u=t(\"../../plots/gl3d/zip3\");function h(t,e,r){this.scene=t,this.uid=r,this.mesh=e,this.name=\"\",this.color=\"#fff\",this.data=null,this.showContour=!1}var f=h.prototype;function p(t){for(var e=[],r=t.length,n=0;n<r;n++)e[n]=l(t[n]);return e}function d(t,e,r,n){for(var a=[],i=e.length,o=0;o<i;o++)a[o]=t.d2l(e[o],0,n)*r;return a}function g(t){for(var e=[],r=t.length,n=0;n<r;n++)e[n]=Math.round(t[n]);return e}function v(t,e){for(var r=t.length,n=0;n<r;n++)if(t[n]<=-.5||t[n]>=e-.5)return!1;return!0}f.handlePick=function(t){if(t.object===this.mesh){var e=t.index=t.data.index;t.traceCoordinate=[this.data.x[e],this.data.y[e],this.data.z[e]];var r=this.data.hovertext||this.data.text;return Array.isArray(r)&&void 0!==r[e]?t.textLabel=r[e]:r&&(t.textLabel=r),!0}},f.update=function(t){var e=this.scene,r=e.fullSceneLayout;this.data=t;var n,h=t.x.length,f=u(d(r.xaxis,t.x,e.dataScale[0],t.xcalendar),d(r.yaxis,t.y,e.dataScale[1],t.ycalendar),d(r.zaxis,t.z,e.dataScale[2],t.zcalendar));if(t.i&&t.j&&t.k){if(t.i.length!==t.j.length||t.j.length!==t.k.length||!v(t.i,h)||!v(t.j,h)||!v(t.k,h))return;n=u(g(t.i),g(t.j),g(t.k))}else n=0===t.alphahull?o(f):t.alphahull>0?i(t.alphahull,f):function(t,e){for(var r=[\"x\",\"y\",\"z\"].indexOf(t),n=[],i=e.length,o=0;o<i;o++)n[o]=[e[o][(r+1)%3],e[o][(r+2)%3]];return a(n)}(t.delaunayaxis,f);var m={positions:f,cells:n,lightPosition:[t.lightposition.x,t.lightposition.y,t.lightposition.z],ambient:t.lighting.ambient,diffuse:t.lighting.diffuse,specular:t.lighting.specular,roughness:t.lighting.roughness,fresnel:t.lighting.fresnel,vertexNormalsEpsilon:t.lighting.vertexnormalsepsilon,faceNormalsEpsilon:t.lighting.facenormalsepsilon,opacity:t.opacity,contourEnable:t.contour.show,contourColor:l(t.contour.color).slice(0,3),contourWidth:t.contour.width,useFacetNormals:t.flatshading};if(t.intensity){var y=c(t);this.color=\"#fff\",m.vertexIntensity=t.intensity,m.vertexIntensityBounds=[y.min,y.max],m.colormap=s(t)}else t.vertexcolor?(this.color=t.vertexcolor[0],m.vertexColors=p(t.vertexcolor)):t.facecolor?(this.color=t.facecolor[0],m.cellColors=p(t.facecolor)):(this.color=t.color,m.meshColor=l(t.color));this.mesh.update(m)},f.dispose=function(){this.scene.glplot.remove(this.mesh),this.mesh.dispose()},e.exports=function(t,e){var r=t.glplot.gl,a=n({gl:r}),i=new h(t,a,e.uid);return a._trace=i,i.update(e),t.glplot.add(a),i}},{\"../../components/colorscale\":606,\"../../lib/gl_format_color\":716,\"../../lib/str2rgbarray\":742,\"../../plots/gl3d/zip3\":818,\"alpha-shape\":65,\"convex-hull\":131,\"delaunay-triangulate\":166,\"gl-mesh3d\":281}],1055:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\"),i=t(\"../../components/colorscale/defaults\"),o=t(\"./attributes\");e.exports=function(t,e,r,s){function l(r,n){return a.coerce(t,e,o,r,n)}function c(t){var e=t.map(function(t){var e=l(t);return e&&a.isArrayOrTypedArray(e)?e:null});return e.every(function(t){return t&&t.length===e[0].length})&&e}c([\"x\",\"y\",\"z\"])?(c([\"i\",\"j\",\"k\"]),(!e.i||e.j&&e.k)&&(!e.j||e.k&&e.i)&&(!e.k||e.i&&e.j)?(n.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\",\"y\",\"z\"],s),[\"lighting.ambient\",\"lighting.diffuse\",\"lighting.specular\",\"lighting.roughness\",\"lighting.fresnel\",\"lighting.vertexnormalsepsilon\",\"lighting.facenormalsepsilon\",\"lightposition.x\",\"lightposition.y\",\"lightposition.z\",\"contour.show\",\"contour.color\",\"contour.width\",\"colorscale\",\"reversescale\",\"flatshading\",\"alphahull\",\"delaunayaxis\",\"opacity\"].forEach(function(t){l(t)}),\"intensity\"in t?(l(\"intensity\"),i(t,e,s,l,{prefix:\"\",cLetter:\"c\"})):(e.showscale=!1,\"facecolor\"in t?l(\"facecolor\"):\"vertexcolor\"in t?l(\"vertexcolor\"):l(\"color\",r)),l(\"text\"),l(\"hovertext\"),l(\"hovertemplate\"),e._length=null):e.visible=!1):e.visible=!1}},{\"../../components/colorscale/defaults\":604,\"../../lib\":719,\"../../registry\":848,\"./attributes\":1052}],1056:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),colorbar:{min:\"cmin\",max:\"cmax\"},plot:t(\"./convert\"),moduleType:\"trace\",name:\"mesh3d\",basePlotModule:t(\"../../plots/gl3d\"),categories:[\"gl3d\"],meta:{}}},{\"../../plots/gl3d\":807,\"./attributes\":1052,\"./calc\":1053,\"./convert\":1054,\"./defaults\":1055}],1057:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").extendFlat,a=t(\"../scatter/attributes\"),i=t(\"../../components/drawing/attributes\").dash,o=t(\"../../components/fx/attributes\"),s=t(\"../../constants/delta.js\"),l=s.INCREASING.COLOR,c=s.DECREASING.COLOR,u=a.line;function h(t){return{line:{color:n({},u.color,{dflt:t}),width:u.width,dash:i,editType:\"style\"},editType:\"style\"}}e.exports={x:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},open:{valType:\"data_array\",editType:\"calc\"},high:{valType:\"data_array\",editType:\"calc\"},low:{valType:\"data_array\",editType:\"calc\"},close:{valType:\"data_array\",editType:\"calc\"},line:{width:n({},u.width,{}),dash:n({},i,{}),editType:\"style\"},increasing:h(l),decreasing:h(c),text:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"calc\"},hovertext:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"calc\"},tickwidth:{valType:\"number\",min:0,max:.5,dflt:.3,editType:\"calc\"},hoverlabel:n({},o.hoverlabel,{split:{valType:\"boolean\",dflt:!1,editType:\"style\"}})}},{\"../../components/drawing/attributes\":614,\"../../components/fx/attributes\":624,\"../../constants/delta.js\":689,\"../../lib\":719,\"../scatter/attributes\":1111}],1058:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=n._,i=t(\"../../plots/cartesian/axes\"),o=t(\"../../constants/numerical\").BADNUM;function s(t,e,r,n){return{o:t,h:e,l:r,c:n}}function l(t,e,r,s,l){for(var c=s.makeCalcdata(e,\"open\"),u=s.makeCalcdata(e,\"high\"),h=s.makeCalcdata(e,\"low\"),f=s.makeCalcdata(e,\"close\"),p=Array.isArray(e.text),d=Array.isArray(e.hovertext),g=!0,v=null,m=[],y=0;y<r.length;y++){var x=r[y],b=c[y],_=u[y],w=h[y],k=f[y];if(x!==o&&b!==o&&_!==o&&w!==o&&k!==o){k===b?null!==v&&k!==v&&(g=k>v):g=k>b,v=k;var T=l(b,_,w,k);T.pos=x,T.yc=(b+k)/2,T.i=y,T.dir=g?\"increasing\":\"decreasing\",T.x=T.pos,T.y=[w,_],p&&(T.tx=e.text[y]),d&&(T.htx=e.hovertext[y]),m.push(T)}else m.push({pos:x,empty:!0})}return e._extremes[s._id]=i.findExtremes(s,n.concat(h,u),{padded:!0}),m.length&&(m[0].t={labels:{open:a(t,\"open:\")+\" \",high:a(t,\"high:\")+\" \",low:a(t,\"low:\")+\" \",close:a(t,\"close:\")+\" \"}}),m}e.exports={calc:function(t,e){var r=i.getFromId(t,e.xaxis),a=i.getFromId(t,e.yaxis),o=function(t,e,r){var a=r._minDiff;if(!a){var i,o=t._fullData,s=[];for(a=1/0,i=0;i<o.length;i++){var l=o[i];if(\"ohlc\"===l.type&&!0===l.visible&&l.xaxis===e._id){s.push(l);var c=e.makeCalcdata(l,\"x\");l._xcalc=c;var u=n.distinctVals(c).minDiff;u&&isFinite(u)&&(a=Math.min(a,u))}}for(a===1/0&&(a=1),i=0;i<s.length;i++)s[i]._minDiff=a}return a*r.tickwidth}(t,r,e),c=e._minDiff;e._minDiff=null;var u=e._xcalc;e._xcalc=null;var h=l(t,e,u,a,s);return e._extremes[r._id]=i.findExtremes(r,u,{vpad:c/2}),h.length?(n.extendFlat(h[0].t,{wHover:c/2,tickLen:o}),h):[{t:{empty:!0}}]},calcCommon:l}},{\"../../constants/numerical\":695,\"../../lib\":719,\"../../plots/cartesian/axes\":767}],1059:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./ohlc_defaults\"),i=t(\"./attributes\");function o(t,e,r,n){r(n+\".line.color\"),r(n+\".line.width\",e.line.width),r(n+\".line.dash\",e.line.dash)}e.exports=function(t,e,r,s){function l(r,a){return n.coerce(t,e,i,r,a)}a(t,e,l,s)?(l(\"line.width\"),l(\"line.dash\"),o(t,e,l,\"increasing\"),o(t,e,l,\"decreasing\"),l(\"text\"),l(\"hovertext\"),l(\"tickwidth\"),s._requestRangeslider[e.xaxis]=!0):e.visible=!1}},{\"../../lib\":719,\"./attributes\":1057,\"./ohlc_defaults\":1062}],1060:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),a=t(\"../../lib\"),i=t(\"../../components/fx\"),o=t(\"../../components/color\"),s=t(\"../../lib\").fillText,l=t(\"../../constants/delta.js\"),c={increasing:l.INCREASING.SYMBOL,decreasing:l.DECREASING.SYMBOL};function u(t,e,r,n){var a,s,l=t.cd,c=t.xa,u=l[0].trace,h=l[0].t,f=u.type,p=\"ohlc\"===f?\"l\":\"min\",d=\"ohlc\"===f?\"h\":\"max\",g=h.bPos||0,v=function(t){return t.pos+g-e},m=h.bdPos||h.tickLen,y=h.wHover,x=Math.min(1,m/Math.abs(c.r2c(c.range[1])-c.r2c(c.range[0])));function b(t){var e=v(t);return i.inbox(e-y,e+y,a)}function _(t){var e=t[p],n=t[d];return e===n||i.inbox(e-r,n-r,a)}function w(t){return(b(t)+_(t))/2}a=t.maxHoverDistance-x,s=t.maxSpikeDistance-x;var k=i.getDistanceFunction(n,b,_,w);if(i.getClosest(l,k,t),!1===t.index)return null;var T=l[t.index];if(T.empty)return null;var A=u[T.dir],M=A.line.color;return o.opacity(M)&&A.line.width?t.color=M:t.color=A.fillcolor,t.x0=c.c2p(T.pos+g-m,!0),t.x1=c.c2p(T.pos+g+m,!0),t.xLabelVal=T.pos,t.spikeDistance=w(T)*s/a,t.xSpike=c.c2p(T.pos,!0),t}function h(t,e,r,i){var o=t.cd,s=t.ya,l=o[0].trace,c=o[0].t,h=[],f=u(t,e,r,i);if(!f)return[];var p=o[f.index].hi||l.hoverinfo,d=p.split(\"+\");if(!(\"all\"===p||-1!==d.indexOf(\"y\")))return[];for(var g=[\"high\",\"open\",\"close\",\"low\"],v={},m=0;m<g.length;m++){var y,x=g[m],b=l[x][f.index],_=s.c2p(b,!0);b in v?(y=v[b]).yLabel+=\"<br>\"+c.labels[x]+n.hoverLabelText(s,b):((y=a.extendFlat({},f)).y0=y.y1=_,y.yLabelVal=b,y.yLabel=c.labels[x]+n.hoverLabelText(s,b),y.name=\"\",h.push(y),v[b]=y)}return h}function f(t,e,r,a){var i=t.cd,o=t.ya,l=i[0].trace,h=i[0].t,f=u(t,e,r,a);if(!f)return[];var p=i[f.index],d=f.index=p.i,g=p.dir;function v(t){return h.labels[t]+n.hoverLabelText(o,l[t][d])}var m=p.hi||l.hoverinfo,y=m.split(\"+\"),x=\"all\"===m,b=x||-1!==y.indexOf(\"y\"),_=x||-1!==y.indexOf(\"text\"),w=b?[v(\"open\"),v(\"high\"),v(\"low\"),v(\"close\")+\"  \"+c[g]]:[];return _&&s(p,l,w),f.extraText=w.join(\"<br>\"),f.y0=f.y1=o.c2p(p.yc,!0),[f]}e.exports={hoverPoints:function(t,e,r,n){return t.cd[0].trace.hoverlabel.split?h(t,e,r,n):f(t,e,r,n)},hoverSplit:h,hoverOnPoints:f}},{\"../../components/color\":594,\"../../components/fx\":632,\"../../constants/delta.js\":689,\"../../lib\":719,\"../../plots/cartesian/axes\":767}],1061:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"ohlc\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"showLegend\"],meta:{},attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\").calc,plot:t(\"./plot\"),style:t(\"./style\"),hoverPoints:t(\"./hover\").hoverPoints,selectPoints:t(\"./select\")}},{\"../../plots/cartesian\":778,\"./attributes\":1057,\"./calc\":1058,\"./defaults\":1059,\"./hover\":1060,\"./plot\":1063,\"./select\":1064,\"./style\":1065}],1062:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\");e.exports=function(t,e,r,i){var o=r(\"x\"),s=r(\"open\"),l=r(\"high\"),c=r(\"low\"),u=r(\"close\");if(r(\"hoverlabel.split\"),n.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\"],i),s&&l&&c&&u){var h=Math.min(s.length,l.length,c.length,u.length);return o&&(h=Math.min(h,a.minRowLength(o))),e._length=h,h}}},{\"../../lib\":719,\"../../registry\":848}],1063:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../lib\");e.exports=function(t,e,r,i){var o=e.xaxis,s=e.yaxis;a.makeTraceGroups(i,r,\"trace ohlc\").each(function(t){var e=n.select(this),r=t[0],i=r.t;if(!0!==r.trace.visible||i.empty)e.remove();else{var l=i.tickLen,c=e.selectAll(\"path\").data(a.identity);c.enter().append(\"path\"),c.exit().remove(),c.attr(\"d\",function(t){if(t.empty)return\"M0,0Z\";var e=o.c2p(t.pos,!0),r=o.c2p(t.pos-l,!0),n=o.c2p(t.pos+l,!0);return\"M\"+r+\",\"+s.c2p(t.o,!0)+\"H\"+e+\"M\"+e+\",\"+s.c2p(t.h,!0)+\"V\"+s.c2p(t.l,!0)+\"M\"+n+\",\"+s.c2p(t.c,!0)+\"H\"+e})}})}},{\"../../lib\":719,d3:164}],1064:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r,n=t.cd,a=t.xaxis,i=t.yaxis,o=[],s=n[0].t.bPos||0;if(!1===e)for(r=0;r<n.length;r++)n[r].selected=0;else for(r=0;r<n.length;r++){var l=n[r];e.contains([a.c2p(l.pos+s),i.c2p(l.yc)],null,l.i,t)?(o.push({pointNumber:l.i,x:a.c2d(l.pos),y:i.c2d(l.yc)}),l.selected=1):l.selected=0}return o}},{}],1065:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/drawing\"),i=t(\"../../components/color\");e.exports=function(t,e,r){var o=r||n.select(t).selectAll(\"g.ohlclayer\").selectAll(\"g.trace\");o.style(\"opacity\",function(t){return t[0].trace.opacity}),o.each(function(t){var e=t[0].trace;n.select(this).selectAll(\"path\").each(function(t){if(!t.empty){var r=e[t.dir].line;n.select(this).style(\"fill\",\"none\").call(i.stroke,r.color).call(a.dashLine,r.dash,r.width).style(\"opacity\",e.selectedpoints&&!t.selected?.3:1)}})})}},{\"../../components/color\":594,\"../../components/drawing\":615,d3:164}],1066:[function(t,e,r){\"use strict\";var n=t(\"../../lib/extend\").extendFlat,a=t(\"../../plots/attributes\"),i=t(\"../../plots/font_attributes\"),o=t(\"../../components/colorscale/attributes\"),s=t(\"../../plots/template_attributes\").hovertemplateAttrs,l=t(\"../../plots/domain\").attributes,c=n({editType:\"calc\"},o(\"line\",{editTypeOverride:\"calc\"}),{shape:{valType:\"enumerated\",values:[\"linear\",\"hspline\"],dflt:\"linear\",editType:\"plot\"},hovertemplate:s({editType:\"plot\",arrayOk:!1},{keys:[\"count\",\"probability\"]})});e.exports={domain:l({name:\"parcats\",trace:!0,editType:\"calc\"}),hoverinfo:n({},a.hoverinfo,{flags:[\"count\",\"probability\"],editType:\"plot\",arrayOk:!1}),hoveron:{valType:\"enumerated\",values:[\"category\",\"color\",\"dimension\"],dflt:\"category\",editType:\"plot\"},hovertemplate:s({editType:\"plot\",arrayOk:!1},{keys:[\"count\",\"probability\",\"category\",\"categorycount\",\"colorcount\",\"bandcolorcount\"]}),arrangement:{valType:\"enumerated\",values:[\"perpendicular\",\"freeform\",\"fixed\"],dflt:\"perpendicular\",editType:\"plot\"},bundlecolors:{valType:\"boolean\",dflt:!0,editType:\"plot\"},sortpaths:{valType:\"enumerated\",values:[\"forward\",\"backward\"],dflt:\"forward\",editType:\"plot\"},labelfont:i({editType:\"calc\"}),tickfont:i({editType:\"calc\"}),dimensions:{_isLinkedToArray:\"dimension\",label:{valType:\"string\",editType:\"calc\"},categoryorder:{valType:\"enumerated\",values:[\"trace\",\"category ascending\",\"category descending\",\"array\"],dflt:\"trace\",editType:\"calc\"},categoryarray:{valType:\"data_array\",editType:\"calc\"},ticktext:{valType:\"data_array\",editType:\"calc\"},values:{valType:\"data_array\",dflt:[],editType:\"calc\"},displayindex:{valType:\"integer\",editType:\"calc\"},editType:\"calc\",visible:{valType:\"boolean\",dflt:!0,editType:\"calc\"}},line:c,counts:{valType:\"number\",min:0,dflt:1,arrayOk:!0,editType:\"calc\"},customdata:void 0,hoverlabel:void 0,ids:void 0,legendgroup:void 0,opacity:void 0,selectedpoints:void 0,showlegend:void 0}},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plots/attributes\":764,\"../../plots/domain\":792,\"../../plots/font_attributes\":793,\"../../plots/template_attributes\":843}],1067:[function(t,e,r){\"use strict\";var n=t(\"../../plots/get_data\").getModuleCalcData,a=t(\"./plot\");r.name=\"parcats\",r.plot=function(t,e,r,i){var o=n(t.calcdata,\"parcats\");if(o.length){var s=o[0];a(t,s,r,i)}},r.clean=function(t,e,r,n){var a=n._has&&n._has(\"parcats\"),i=e._has&&e._has(\"parcats\");a&&!i&&n._paperdiv.selectAll(\".parcats\").remove()}},{\"../../plots/get_data\":802,\"./plot\":1072}],1068:[function(t,e,r){\"use strict\";var n=t(\"../../lib/gup\").wrap,a=t(\"../../components/colorscale/helpers\").hasColorscale,i=t(\"../../components/colorscale/calc\"),o=t(\"../../lib/filter_unique.js\"),s=t(\"../../components/drawing\"),l=t(\"../../lib\");function c(t,e,r){t.valueInds.push(e),t.count+=r}function u(t,e,r){return{categoryInds:t,color:e,rawColor:r,valueInds:[],count:0}}function h(t,e,r){t.valueInds.push(e),t.count+=r}e.exports=function(t,e){var r=l.filterVisible(e.dimensions);if(0===r.length)return[];var f,p,d,g=r.map(function(t){var e;return\"trace\"===t.categoryorder?e=null:\"array\"===t.categoryorder?e=t.categoryarray:(e=o(t.values).sort(),\"category descending\"===t.categoryorder&&(e=e.reverse())),function(t,e){e=null==e?[]:e.map(function(t){return t});var r={},n={},a=[];e.forEach(function(t,e){r[t]=0,n[t]=e});for(var i=0;i<t.length;i++){var o,s=t[i];void 0===r[s]?(r[s]=1,o=e.push(s)-1,n[s]=o):(r[s]++,o=n[s]),a.push(o)}var l=e.map(function(t){return r[t]});return{uniqueValues:e,uniqueCounts:l,inds:a}}(t.values,e)});f=l.isArrayOrTypedArray(e.counts)?e.counts:[e.counts],function(t){var e;if(function(t){for(var e=new Array(t.length),r=0;r<t.length;r++){if(t[r]<0||t[r]>=t.length)return!1;if(void 0!==e[t[r]])return!1;e[t[r]]=!0}return!0}(t.map(function(t){return t.displayindex})))for(e=0;e<t.length;e++)t[e]._displayindex=t[e].displayindex;else for(e=0;e<t.length;e++)t[e]._displayindex=e}(r),r.forEach(function(t,e){!function(t,e){t._categoryarray=e.uniqueValues,null===t.ticktext||void 0===t.ticktext?t._ticktext=[]:t._ticktext=t.ticktext.slice();for(var r=t._ticktext.length;r<e.uniqueValues.length;r++)t._ticktext.push(e.uniqueValues[r])}(t,g[e])});var v,m=e.line;m?(a(e,\"line\")&&i(t,e,{vals:e.line.color,containerStr:\"line\",cLetter:\"c\"}),v=s.tryColorscale(m)):v=l.identity;var y,x,b,_,w,k=r[0].values.length,T={},A=g.map(function(t){return t.inds});for(d=0,y=0;y<k;y++){var M=[];for(x=0;x<A.length;x++)M.push(A[x][y]);p=f[y%f.length],d+=p;var S=(b=y,_=void 0,w=void 0,l.isArrayOrTypedArray(m.color)?w=_=m.color[b%m.color.length]:_=m.color,{color:v(_),rawColor:w}),E=M+\"-\"+S.rawColor;void 0===T[E]&&(T[E]=u(M,S.color,S.rawColor)),h(T[E],y,p)}var C,L=r.map(function(t,e){return r=e,n=t._index,a=t._displayindex,i=t.label,{dimensionInd:r,containerInd:n,displayInd:a,dimensionLabel:i,count:d,categories:[],dragX:null};var r,n,a,i});for(y=0;y<k;y++)for(p=f[y%f.length],x=0;x<L.length;x++){var P=L[x].containerInd,O=g[x].inds[y],I=L[x].categories;if(void 0===I[O]){var z=e.dimensions[P]._categoryarray[O],D=e.dimensions[P]._ticktext[O];I[O]={dimensionInd:x,categoryInd:C=O,categoryValue:z,displayInd:C,categoryLabel:D,valueInds:[],count:0,dragY:null}}c(I[O],y,p)}return n(function(t,e,r){var n=t.map(function(t){return t.categories.length}).reduce(function(t,e){return Math.max(t,e)});return{dimensions:t,paths:e,trace:void 0,maxCats:n,count:r}}(L,T,d))}},{\"../../components/colorscale/calc\":602,\"../../components/colorscale/helpers\":605,\"../../components/drawing\":615,\"../../lib\":719,\"../../lib/filter_unique.js\":711,\"../../lib/gup\":717}],1069:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/colorscale/helpers\").hasColorscale,i=t(\"../../components/colorscale/defaults\"),o=t(\"../../plots/domain\").defaults,s=t(\"../../plots/array_container_defaults\"),l=t(\"./attributes\"),c=t(\"../parcoords/merge_length\");function u(t,e){function r(r,a){return n.coerce(t,e,l.dimensions,r,a)}var a=r(\"values\"),i=r(\"visible\");if(a&&a.length||(i=e.visible=!1),i){r(\"label\"),r(\"displayindex\",e._index);var o,s=t.categoryarray,c=Array.isArray(s)&&s.length>0;c&&(o=\"array\");var u=r(\"categoryorder\",o);\"array\"===u?(r(\"categoryarray\"),r(\"ticktext\")):(delete t.categoryarray,delete t.ticktext),c||\"array\"!==u||(e.categoryorder=\"trace\")}}e.exports=function(t,e,r,h){function f(r,a){return n.coerce(t,e,l,r,a)}var p=s(t,e,{name:\"dimensions\",handleItemDefaults:u}),d=function(t,e,r,o,s){s(\"line.shape\"),s(\"line.hovertemplate\");var l=s(\"line.color\",o.colorway[0]);if(a(t,\"line\")&&n.isArrayOrTypedArray(l)){if(l.length)return s(\"line.colorscale\"),i(t,e,o,s,{prefix:\"line.\",cLetter:\"c\"}),l.length;e.line.color=r}return 1/0}(t,e,r,h,f);o(e,h,f),Array.isArray(p)&&p.length||(e.visible=!1),c(e,p,\"values\",d),f(\"hoveron\"),f(\"hovertemplate\"),f(\"arrangement\"),f(\"bundlecolors\"),f(\"sortpaths\"),f(\"counts\");var g={family:h.font.family,size:Math.round(h.font.size),color:h.font.color};n.coerceFont(f,\"labelfont\",g);var v={family:h.font.family,size:Math.round(h.font.size/1.2),color:h.font.color};n.coerceFont(f,\"tickfont\",v)}},{\"../../components/colorscale/defaults\":604,\"../../components/colorscale/helpers\":605,\"../../lib\":719,\"../../plots/array_container_defaults\":763,\"../../plots/domain\":792,\"../parcoords/merge_length\":1082,\"./attributes\":1066}],1070:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),plot:t(\"./plot\"),colorbar:{container:\"line\",min:\"cmin\",max:\"cmax\"},moduleType:\"trace\",name:\"parcats\",basePlotModule:t(\"./base_plot\"),categories:[\"noOpacity\"],meta:{}}},{\"./attributes\":1066,\"./base_plot\":1067,\"./calc\":1068,\"./defaults\":1069,\"./plot\":1072}],1071:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../plot_api/plot_api\"),i=t(\"../../components/fx\"),o=t(\"../../lib\"),s=t(\"../../components/drawing\"),l=t(\"tinycolor2\"),c=t(\"../../lib/svg_text_utils\");function u(t,e,r,a){var i=t.map(function(t,e,r){var n,a=r[0],i=e.margin||{l:80,r:80,t:100,b:80},o=a.trace,s=o.domain,l=e.width,c=e.height,u=Math.floor(l*(s.x[1]-s.x[0])),h=Math.floor(c*(s.y[1]-s.y[0])),f=s.x[0]*l+i.l,p=e.height-s.y[1]*e.height+i.t,d=o.line.shape;n=\"all\"===o.hoverinfo?[\"count\",\"probability\"]:(o.hoverinfo||\"\").split(\"+\");var g={trace:o,key:o.uid,model:a,x:f,y:p,width:u,height:h,hoveron:o.hoveron,hoverinfoItems:n,arrangement:o.arrangement,bundlecolors:o.bundlecolors,sortpaths:o.sortpaths,labelfont:o.labelfont,categorylabelfont:o.tickfont,pathShape:d,dragDimension:null,margin:i,paths:[],dimensions:[],graphDiv:t,traceSelection:null,pathSelection:null,dimensionSelection:null};a.dimensions&&(F(g),R(g));return g}.bind(0,e,r)),l=a.selectAll(\"g.parcatslayer\").data([null]);l.enter().append(\"g\").attr(\"class\",\"parcatslayer\").style(\"pointer-events\",\"all\");var u=l.selectAll(\"g.trace.parcats\").data(i,h),v=u.enter().append(\"g\").attr(\"class\",\"trace parcats\");u.attr(\"transform\",function(t){return\"translate(\"+t.x+\", \"+t.y+\")\"}),v.append(\"g\").attr(\"class\",\"paths\");var m=u.select(\"g.paths\").selectAll(\"path.path\").data(function(t){return t.paths},h);m.attr(\"fill\",function(t){return t.model.color});var b=m.enter().append(\"path\").attr(\"class\",\"path\").attr(\"stroke-opacity\",0).attr(\"fill\",function(t){return t.model.color}).attr(\"fill-opacity\",0);x(b),m.attr(\"d\",function(t){return t.svgD}),b.empty()||m.sort(p),m.exit().remove(),m.on(\"mouseover\",d).on(\"mouseout\",g).on(\"click\",y),v.append(\"g\").attr(\"class\",\"dimensions\");var k=u.select(\"g.dimensions\").selectAll(\"g.dimension\").data(function(t){return t.dimensions},h);k.enter().append(\"g\").attr(\"class\",\"dimension\"),k.attr(\"transform\",function(t){return\"translate(\"+t.x+\", 0)\"}),k.exit().remove();var T=k.selectAll(\"g.category\").data(function(t){return t.categories},h),A=T.enter().append(\"g\").attr(\"class\",\"category\");T.attr(\"transform\",function(t){return\"translate(0, \"+t.y+\")\"}),A.append(\"rect\").attr(\"class\",\"catrect\").attr(\"pointer-events\",\"none\"),T.select(\"rect.catrect\").attr(\"fill\",\"none\").attr(\"width\",function(t){return t.width}).attr(\"height\",function(t){return t.height}),_(A);var M=T.selectAll(\"rect.bandrect\").data(function(t){return t.bands},h);M.each(function(){o.raiseToTop(this)}),M.attr(\"fill\",function(t){return t.color});var O=M.enter().append(\"rect\").attr(\"class\",\"bandrect\").attr(\"stroke-opacity\",0).attr(\"fill\",function(t){return t.color}).attr(\"fill-opacity\",0);M.attr(\"fill\",function(t){return t.color}).attr(\"width\",function(t){return t.width}).attr(\"height\",function(t){return t.height}).attr(\"y\",function(t){return t.y}).attr(\"cursor\",function(t){return\"fixed\"===t.parcatsViewModel.arrangement?\"default\":\"perpendicular\"===t.parcatsViewModel.arrangement?\"ns-resize\":\"move\"}),w(O),M.exit().remove(),A.append(\"text\").attr(\"class\",\"catlabel\").attr(\"pointer-events\",\"none\");var I=e._fullLayout.paper_bgcolor;T.select(\"text.catlabel\").attr(\"text-anchor\",function(t){return f(t)?\"start\":\"end\"}).attr(\"alignment-baseline\",\"middle\").style(\"text-shadow\",I+\" -1px  1px 2px, \"+I+\" 1px  1px 2px, \"+I+\"  1px -1px 2px, \"+I+\" -1px -1px 2px\").style(\"fill\",\"rgb(0, 0, 0)\").attr(\"x\",function(t){return f(t)?t.width+5:-5}).attr(\"y\",function(t){return t.height/2}).text(function(t){return t.model.categoryLabel}).each(function(t){s.font(n.select(this),t.parcatsViewModel.categorylabelfont),c.convertToTspans(n.select(this),e)}),A.append(\"text\").attr(\"class\",\"dimlabel\"),T.select(\"text.dimlabel\").attr(\"text-anchor\",\"middle\").attr(\"alignment-baseline\",\"baseline\").attr(\"cursor\",function(t){return\"fixed\"===t.parcatsViewModel.arrangement?\"default\":\"ew-resize\"}).attr(\"x\",function(t){return t.width/2}).attr(\"y\",-5).text(function(t,e){return 0===e?t.parcatsViewModel.model.dimensions[t.model.dimensionInd].dimensionLabel:null}).each(function(t){s.font(n.select(this),t.parcatsViewModel.labelfont)}),T.selectAll(\"rect.bandrect\").on(\"mouseover\",S).on(\"mouseout\",E),T.exit().remove(),k.call(n.behavior.drag().origin(function(t){return{x:t.x,y:0}}).on(\"dragstart\",C).on(\"drag\",L).on(\"dragend\",P)),u.each(function(t){t.traceSelection=n.select(this),t.pathSelection=n.select(this).selectAll(\"g.paths\").selectAll(\"path.path\"),t.dimensionSelection=n.select(this).selectAll(\"g.dimensions\").selectAll(\"g.dimension\")}),u.exit().remove()}function h(t){return t.key}function f(t){var e=t.parcatsViewModel.dimensions.length,r=t.parcatsViewModel.dimensions[e-1].model.dimensionInd;return t.model.dimensionInd===r}function p(t,e){return t.model.rawColor>e.model.rawColor?1:t.model.rawColor<e.model.rawColor?-1:0}function d(t){if(!t.parcatsViewModel.dragDimension&&-1===t.parcatsViewModel.hoverinfoItems.indexOf(\"skip\")){o.raiseToTop(this),b(n.select(this));var e=v(t),r=m(t);if(t.parcatsViewModel.graphDiv.emit(\"plotly_hover\",{points:e,event:n.event,constraints:r}),-1===t.parcatsViewModel.hoverinfoItems.indexOf(\"none\")){var a,s,c,u=n.mouse(this)[0],h=t.parcatsViewModel.graphDiv,f=t.parcatsViewModel.trace,p=h._fullLayout,d=p._paperdiv.node().getBoundingClientRect(),g=t.parcatsViewModel.graphDiv.getBoundingClientRect();for(c=0;c<t.leftXs.length-1;c++)if(t.leftXs[c]+t.dimWidths[c]-2<=u&&u<=t.leftXs[c+1]+2){var y=t.parcatsViewModel.dimensions[c],x=t.parcatsViewModel.dimensions[c+1];a=(y.x+y.width+x.x)/2,s=(t.topYs[c]+t.topYs[c+1]+t.height)/2;break}var _=t.parcatsViewModel.x+a,w=t.parcatsViewModel.y+s,k=l.mostReadable(t.model.color,[\"black\",\"white\"]),T=t.model.count,A=T/t.parcatsViewModel.model.count,M={countLabel:T,probabilityLabel:A.toFixed(3)},S=[];-1!==t.parcatsViewModel.hoverinfoItems.indexOf(\"count\")&&S.push([\"Count:\",M.countLabel].join(\" \")),-1!==t.parcatsViewModel.hoverinfoItems.indexOf(\"probability\")&&S.push([\"P:\",M.probabilityLabel].join(\" \"));var E=S.join(\"<br>\"),C=n.mouse(h)[0];i.loneHover({trace:f,x:_-d.left+g.left,y:w-d.top+g.top,text:E,color:t.model.color,borderColor:\"black\",fontFamily:'Monaco, \"Courier New\", monospace',fontSize:10,fontColor:k,idealAlign:C<_?\"right\":\"left\",hovertemplate:(f.line||{}).hovertemplate,hovertemplateLabels:M,eventData:[{data:f._input,fullData:f,count:T,probability:A}]},{container:p._hoverlayer.node(),outerContainer:p._paper.node(),gd:h})}}}function g(t){if(!t.parcatsViewModel.dragDimension&&(x(n.select(this)),i.loneUnhover(t.parcatsViewModel.graphDiv._fullLayout._hoverlayer.node()),t.parcatsViewModel.pathSelection.sort(p),-1===t.parcatsViewModel.hoverinfoItems.indexOf(\"skip\"))){var e=v(t),r=m(t);t.parcatsViewModel.graphDiv.emit(\"plotly_unhover\",{points:e,event:n.event,constraints:r})}}function v(t){for(var e=[],r=O(t.parcatsViewModel),n=0;n<t.model.valueInds.length;n++){var a=t.model.valueInds[n];e.push({curveNumber:r,pointNumber:a})}return e}function m(t){for(var e={},r=t.parcatsViewModel.model.dimensions,n=0;n<r.length;n++){var a=r[n],i=a.categories[t.model.categoryInds[n]];e[a.containerInd]=i.categoryValue}return void 0!==t.model.rawColor&&(e.color=t.model.rawColor),e}function y(t){if(-1===t.parcatsViewModel.hoverinfoItems.indexOf(\"skip\")){var e=v(t),r=m(t);t.parcatsViewModel.graphDiv.emit(\"plotly_click\",{points:e,event:n.event,constraints:r})}}function x(t){t.attr(\"fill\",function(t){return t.model.color}).attr(\"fill-opacity\",.6).attr(\"stroke\",\"lightgray\").attr(\"stroke-width\",.2).attr(\"stroke-opacity\",1)}function b(t){t.attr(\"fill-opacity\",.8).attr(\"stroke\",function(t){return l.mostReadable(t.model.color,[\"black\",\"white\"])}).attr(\"stroke-width\",.3)}function _(t){t.select(\"rect.catrect\").attr(\"stroke\",\"black\").attr(\"stroke-width\",1).attr(\"stroke-opacity\",1)}function w(t){t.attr(\"stroke\",\"black\").attr(\"stroke-width\",.2).attr(\"stroke-opacity\",1).attr(\"fill-opacity\",1)}function k(t){var e=t.parcatsViewModel.pathSelection,r=t.categoryViewModel.model.dimensionInd,n=t.categoryViewModel.model.categoryInd;return e.filter(function(e){return e.model.categoryInds[r]===n&&e.model.color===t.color})}function T(t,e,r){var a=n.select(t).datum(),i=a.categoryViewModel.model,o=a.parcatsViewModel.graphDiv,s=n.select(t.parentNode).selectAll(\"rect.bandrect\"),l=[];s.each(function(t){k(t).each(function(t){Array.prototype.push.apply(l,v(t))})});var c={};c[i.dimensionInd]=i.categoryValue,o.emit(e,{points:l,event:r,constraints:c})}function A(t,e,r){var a=n.select(t).datum(),i=a.categoryViewModel.model,o=a.parcatsViewModel.graphDiv,s=k(a),l=[];s.each(function(t){Array.prototype.push.apply(l,v(t))});var c={};c[i.dimensionInd]=i.categoryValue,void 0!==a.rawColor&&(c.color=a.rawColor),o.emit(e,{points:l,event:r,constraints:c})}function M(t,e){var r,a,i=n.select(e.parentNode).select(\"rect.catrect\"),o=i.node().getBoundingClientRect(),s=i.datum(),l=s.parcatsViewModel,c=l.model.dimensions[s.model.dimensionInd],u=l.trace,h=o.top+o.height/2;l.dimensions.length>1&&c.displayInd===l.dimensions.length-1?(r=o.left,a=\"left\"):(r=o.left+o.width,a=\"right\");var f=s.model.count,p=s.model.categoryLabel,d=f/s.parcatsViewModel.model.count,g={countLabel:f,categoryLabel:p,probabilityLabel:d.toFixed(3)},v=[];-1!==s.parcatsViewModel.hoverinfoItems.indexOf(\"count\")&&v.push([\"Count:\",g.countLabel].join(\" \")),-1!==s.parcatsViewModel.hoverinfoItems.indexOf(\"probability\")&&v.push([\"P(\"+g.categoryLabel+\"):\",g.probabilityLabel].join(\" \"));var m=v.join(\"<br>\");return{trace:u,x:r-t.left,y:h-t.top,text:m,color:\"lightgray\",borderColor:\"black\",fontFamily:'Monaco, \"Courier New\", monospace',fontSize:12,fontColor:\"black\",idealAlign:a,hovertemplate:u.hovertemplate,hovertemplateLabels:g,eventData:[{data:u._input,fullData:u,count:f,category:p,probability:d}]}}function S(t){if(!t.parcatsViewModel.dragDimension&&-1===t.parcatsViewModel.hoverinfoItems.indexOf(\"skip\")){if(n.mouse(this)[1]<-1)return;var e,r=t.parcatsViewModel.graphDiv,a=r._fullLayout,s=a._paperdiv.node().getBoundingClientRect(),c=t.parcatsViewModel.hoveron;if(\"color\"===c?(!function(t){var e=n.select(t).datum(),r=k(e);b(r),r.each(function(){o.raiseToTop(this)}),n.select(t.parentNode).selectAll(\"rect.bandrect\").filter(function(t){return t.color===e.color}).each(function(){o.raiseToTop(this),n.select(this).attr(\"stroke\",\"black\").attr(\"stroke-width\",1.5)})}(this),A(this,\"plotly_hover\",n.event)):(!function(t){n.select(t.parentNode).selectAll(\"rect.bandrect\").each(function(t){var e=k(t);b(e),e.each(function(){o.raiseToTop(this)})}),n.select(t.parentNode).select(\"rect.catrect\").attr(\"stroke\",\"black\").attr(\"stroke-width\",2.5)}(this),T(this,\"plotly_hover\",n.event)),-1===t.parcatsViewModel.hoverinfoItems.indexOf(\"none\"))\"category\"===c?e=M(s,this):\"color\"===c?e=function(t,e){var r,a,i=e.getBoundingClientRect(),o=n.select(e).datum(),s=o.categoryViewModel,c=s.parcatsViewModel,u=c.model.dimensions[s.model.dimensionInd],h=c.trace,f=i.y+i.height/2;c.dimensions.length>1&&u.displayInd===c.dimensions.length-1?(r=i.left,a=\"left\"):(r=i.left+i.width,a=\"right\");var p=s.model.categoryLabel,d=o.parcatsViewModel.model.count,g=0;o.categoryViewModel.bands.forEach(function(t){t.color===o.color&&(g+=t.count)});var v=s.model.count,m=0;c.pathSelection.each(function(t){t.model.color===o.color&&(m+=t.model.count)});var y=g/d,x=g/m,b=g/v,_={countLabel:d,categoryLabel:p,probabilityLabel:y.toFixed(3)},w=[];-1!==s.parcatsViewModel.hoverinfoItems.indexOf(\"count\")&&w.push([\"Count:\",_.countLabel].join(\" \")),-1!==s.parcatsViewModel.hoverinfoItems.indexOf(\"probability\")&&(w.push(\"P(color \\u2229 \"+p+\"): \"+_.probabilityLabel),w.push(\"P(\"+p+\" | color): \"+x.toFixed(3)),w.push(\"P(color | \"+p+\"): \"+b.toFixed(3)));var k=w.join(\"<br>\"),T=l.mostReadable(o.color,[\"black\",\"white\"]);return{trace:h,x:r-t.left,y:f-t.top,text:k,color:o.color,borderColor:\"black\",fontFamily:'Monaco, \"Courier New\", monospace',fontColor:T,fontSize:10,idealAlign:a,hovertemplate:h.hovertemplate,hovertemplateLabels:_,eventData:[{data:h._input,fullData:h,category:p,count:d,probability:y,categorycount:v,colorcount:m,bandcolorcount:g}]}}(s,this):\"dimension\"===c&&(e=function(t,e){var r=[];return n.select(e.parentNode.parentNode).selectAll(\"g.category\").select(\"rect.catrect\").each(function(){r.push(M(t,this))}),r}(s,this)),e&&i.loneHover(e,{container:a._hoverlayer.node(),outerContainer:a._paper.node(),gd:r})}}function E(t){var e=t.parcatsViewModel;if(!e.dragDimension&&(x(e.pathSelection),_(e.dimensionSelection.selectAll(\"g.category\")),w(e.dimensionSelection.selectAll(\"g.category\").selectAll(\"rect.bandrect\")),i.loneUnhover(e.graphDiv._fullLayout._hoverlayer.node()),e.pathSelection.sort(p),-1===e.hoverinfoItems.indexOf(\"skip\"))){\"color\"===t.parcatsViewModel.hoveron?A(this,\"plotly_unhover\",n.event):T(this,\"plotly_unhover\",n.event)}}function C(t){\"fixed\"!==t.parcatsViewModel.arrangement&&(t.dragDimensionDisplayInd=t.model.displayInd,t.initialDragDimensionDisplayInds=t.parcatsViewModel.model.dimensions.map(function(t){return t.displayInd}),t.dragHasMoved=!1,t.dragCategoryDisplayInd=null,n.select(this).selectAll(\"g.category\").select(\"rect.catrect\").each(function(e){var r=n.mouse(this)[0],a=n.mouse(this)[1];-2<=r&&r<=e.width+2&&-2<=a&&a<=e.height+2&&(t.dragCategoryDisplayInd=e.model.displayInd,t.initialDragCategoryDisplayInds=t.model.categories.map(function(t){return t.displayInd}),e.model.dragY=e.y,o.raiseToTop(this.parentNode),n.select(this.parentNode).selectAll(\"rect.bandrect\").each(function(e){e.y<a&&a<=e.y+e.height&&(t.potentialClickBand=this)}))}),t.parcatsViewModel.dragDimension=t,i.loneUnhover(t.parcatsViewModel.graphDiv._fullLayout._hoverlayer.node()))}function L(t){if(\"fixed\"!==t.parcatsViewModel.arrangement&&(t.dragHasMoved=!0,null!==t.dragDimensionDisplayInd)){var e=t.dragDimensionDisplayInd,r=e-1,a=e+1,i=t.parcatsViewModel.dimensions[e];if(null!==t.dragCategoryDisplayInd){var o=i.categories[t.dragCategoryDisplayInd];o.model.dragY+=n.event.dy;var s=o.model.dragY,l=o.model.displayInd,c=i.categories,u=c[l-1],h=c[l+1];void 0!==u&&s<u.y+u.height/2&&(o.model.displayInd=u.model.displayInd,u.model.displayInd=l),void 0!==h&&s+o.height>h.y+h.height/2&&(o.model.displayInd=h.model.displayInd,h.model.displayInd=l),t.dragCategoryDisplayInd=o.model.displayInd}if(null===t.dragCategoryDisplayInd||\"freeform\"===t.parcatsViewModel.arrangement){i.model.dragX=n.event.x;var f=t.parcatsViewModel.dimensions[r],p=t.parcatsViewModel.dimensions[a];void 0!==f&&i.model.dragX<f.x+f.width&&(i.model.displayInd=f.model.displayInd,f.model.displayInd=e),void 0!==p&&i.model.dragX+i.width>p.x&&(i.model.displayInd=p.model.displayInd,p.model.displayInd=t.dragDimensionDisplayInd),t.dragDimensionDisplayInd=i.model.displayInd}F(t.parcatsViewModel),R(t.parcatsViewModel),z(t.parcatsViewModel),I(t.parcatsViewModel)}}function P(t){if(\"fixed\"!==t.parcatsViewModel.arrangement&&null!==t.dragDimensionDisplayInd){n.select(this).selectAll(\"text\").attr(\"font-weight\",\"normal\");var e={},r=O(t.parcatsViewModel),i=t.parcatsViewModel.model.dimensions.map(function(t){return t.displayInd}),o=t.initialDragDimensionDisplayInds.some(function(t,e){return t!==i[e]});o&&i.forEach(function(r,n){var a=t.parcatsViewModel.model.dimensions[n].containerInd;e[\"dimensions[\"+a+\"].displayindex\"]=r});var s=!1;if(null!==t.dragCategoryDisplayInd){var l=t.model.categories.map(function(t){return t.displayInd});if(s=t.initialDragCategoryDisplayInds.some(function(t,e){return t!==l[e]})){var c=t.model.categories.slice().sort(function(t,e){return t.displayInd-e.displayInd}),u=c.map(function(t){return t.categoryValue}),h=c.map(function(t){return t.categoryLabel});e[\"dimensions[\"+t.model.containerInd+\"].categoryarray\"]=[u],e[\"dimensions[\"+t.model.containerInd+\"].ticktext\"]=[h],e[\"dimensions[\"+t.model.containerInd+\"].categoryorder\"]=\"array\"}}if(-1===t.parcatsViewModel.hoverinfoItems.indexOf(\"skip\")&&!t.dragHasMoved&&t.potentialClickBand&&(\"color\"===t.parcatsViewModel.hoveron?A(t.potentialClickBand,\"plotly_click\",n.event.sourceEvent):T(t.potentialClickBand,\"plotly_click\",n.event.sourceEvent)),t.model.dragX=null,null!==t.dragCategoryDisplayInd)t.parcatsViewModel.dimensions[t.dragDimensionDisplayInd].categories[t.dragCategoryDisplayInd].model.dragY=null,t.dragCategoryDisplayInd=null;t.dragDimensionDisplayInd=null,t.parcatsViewModel.dragDimension=null,t.dragHasMoved=null,t.potentialClickBand=null,F(t.parcatsViewModel),R(t.parcatsViewModel),n.transition().duration(300).ease(\"cubic-in-out\").each(function(){z(t.parcatsViewModel,!0),I(t.parcatsViewModel,!0)}).each(\"end\",function(){(o||s)&&a.restyle(t.parcatsViewModel.graphDiv,e,[r])})}}function O(t){for(var e,r=t.graphDiv._fullData,n=0;n<r.length;n++)if(t.key===r[n].uid){e=n;break}return e}function I(t,e){var r;void 0===e&&(e=!1),t.pathSelection.data(function(t){return t.paths},h),(r=t.pathSelection,e?r.transition():r).attr(\"d\",function(t){return t.svgD})}function z(t,e){function r(t){return e?t.transition():t}void 0===e&&(e=!1),t.dimensionSelection.data(function(t){return t.dimensions},h);var a=t.dimensionSelection.selectAll(\"g.category\").data(function(t){return t.categories},h);r(t.dimensionSelection).attr(\"transform\",function(t){return\"translate(\"+t.x+\", 0)\"}),r(a).attr(\"transform\",function(t){return\"translate(0, \"+t.y+\")\"}),a.select(\".dimlabel\").text(function(t,e){return 0===e?t.parcatsViewModel.model.dimensions[t.model.dimensionInd].dimensionLabel:null}),a.select(\".catlabel\").attr(\"text-anchor\",function(t){return f(t)?\"start\":\"end\"}).attr(\"x\",function(t){return f(t)?t.width+5:-5}).each(function(t){var e,r;f(t)?(e=t.width+5,r=\"start\"):(e=-5,r=\"end\"),n.select(this).selectAll(\"tspan\").attr(\"x\",e).attr(\"text-anchor\",r)});var i=a.selectAll(\"rect.bandrect\").data(function(t){return t.bands},h),s=i.enter().append(\"rect\").attr(\"class\",\"bandrect\").attr(\"cursor\",\"move\").attr(\"stroke-opacity\",0).attr(\"fill\",function(t){return t.color}).attr(\"fill-opacity\",0);i.attr(\"fill\",function(t){return t.color}).attr(\"width\",function(t){return t.width}).attr(\"height\",function(t){return t.height}).attr(\"y\",function(t){return t.y}),w(s),i.each(function(){o.raiseToTop(this)}),i.exit().remove()}function D(t,e,r,a,i){var o,s,l=[],c=[];for(s=0;s<r.length-1;s++)o=n.interpolateNumber(r[s]+t[s],t[s+1]),l.push(o(i)),c.push(o(1-i));var u=\"M \"+t[0]+\",\"+e[0];for(u+=\"l\"+r[0]+\",0 \",s=1;s<r.length;s++)u+=\"C\"+l[s-1]+\",\"+e[s-1]+\" \"+c[s-1]+\",\"+e[s]+\" \"+t[s]+\",\"+e[s],u+=\"l\"+r[s]+\",0 \";for(u+=\"l0,\"+a+\" \",u+=\"l -\"+r[r.length-1]+\",0 \",s=r.length-2;s>=0;s--)u+=\"C\"+c[s]+\",\"+(e[s+1]+a)+\" \"+l[s]+\",\"+(e[s]+a)+\" \"+(t[s]+r[s])+\",\"+(e[s]+a),u+=\"l-\"+r[s]+\",0 \";return u+=\"Z\"}function R(t){var e=t.dimensions,r=t.model,n=e.map(function(t){return t.categories.map(function(t){return t.y})}),a=t.model.dimensions.map(function(t){return t.categories.map(function(t){return t.displayInd})}),i=t.model.dimensions.map(function(t){return t.displayInd}),o=t.dimensions.map(function(t){return t.model.dimensionInd}),s=e.map(function(t){return t.x}),l=e.map(function(t){return t.width}),c=[];for(var u in r.paths)r.paths.hasOwnProperty(u)&&c.push(r.paths[u]);function h(t){var e=t.categoryInds.map(function(t,e){return a[e][t]});return o.map(function(t){return e[t]})}c.sort(function(e,r){var n=h(e),a=h(r);return\"backward\"===t.sortpaths&&(n.reverse(),a.reverse()),n.push(e.valueInds[0]),a.push(r.valueInds[0]),t.bundlecolors&&(n.unshift(e.rawColor),a.unshift(r.rawColor)),n<a?-1:n>a?1:0});for(var f=new Array(c.length),p=e[0].model.count,d=e[0].categories.map(function(t){return t.height}).reduce(function(t,e){return t+e}),g=0;g<c.length;g++){var v,m=c[g];v=p>0?d*(m.count/p):0;for(var y,x=new Array(n.length),b=0;b<m.categoryInds.length;b++){var _=m.categoryInds[b],w=a[b][_],k=i[b];x[k]=n[k][w],n[k][w]+=v;var T=t.dimensions[k].categories[w],A=T.bands.length,M=T.bands[A-1];if(void 0===M||m.rawColor!==M.rawColor){var S=void 0===M?0:M.y+M.height;T.bands.push({key:S,color:m.color,rawColor:m.rawColor,height:v,width:T.width,count:m.count,y:S,categoryViewModel:T,parcatsViewModel:t})}else{var E=T.bands[A-1];E.height+=v,E.count+=m.count}}y=\"hspline\"===t.pathShape?D(s,x,l,v,.5):D(s,x,l,v,0),f[g]={key:m.valueInds[0],model:m,height:v,leftXs:s,topYs:x,dimWidths:l,svgD:y,parcatsViewModel:t}}t.paths=f}function F(t){var e=t.model.dimensions.map(function(t){return{displayInd:t.displayInd,dimensionInd:t.dimensionInd}});e.sort(function(t,e){return t.displayInd-e.displayInd});var r=[];for(var n in e){var a=e[n].dimensionInd,i=t.model.dimensions[a];r.push(B(t,i))}t.dimensions=r}function B(t,e){var r,n=t.model.dimensions.length,a=e.displayInd;r=40+(n>1?(t.width-80-16)/(n-1):0)*a;var i,o,s,l,c,u=[],h=t.model.maxCats,f=e.categories.length,p=e.count,d=t.height-8*(h-1),g=8*(h-f)/2,v=e.categories.map(function(t){return{displayInd:t.displayInd,categoryInd:t.categoryInd}});for(v.sort(function(t,e){return t.displayInd-e.displayInd}),c=0;c<f;c++)l=v[c].categoryInd,o=e.categories[l],i=p>0?o.count/p*d:0,s={key:o.valueInds[0],model:o,width:16,height:i,y:null!==o.dragY?o.dragY:g,bands:[],parcatsViewModel:t},g=g+i+8,u.push(s);return{key:e.dimensionInd,x:null!==e.dragX?e.dragX:r,y:0,width:16,model:e,categories:u,parcatsViewModel:t,dragCategoryDisplayInd:null,dragDimensionDisplayInd:null,initialDragDimensionDisplayInds:null,initialDragCategoryDisplayInds:null,dragHasMoved:null,potentialClickBand:null}}e.exports=function(t,e,r,n){u(r,t,n,e)}},{\"../../components/drawing\":615,\"../../components/fx\":632,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../../plot_api/plot_api\":754,d3:164,tinycolor2:538}],1072:[function(t,e,r){\"use strict\";var n=t(\"./parcats\");e.exports=function(t,e,r,a){var i=t._fullLayout,o=i._paper,s=i._size;n(t,o,e,{width:s.w,height:s.h,margin:{t:s.t,r:s.r,b:s.b,l:s.l}},r,a)}},{\"./parcats\":1071}],1073:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/attributes\"),a=t(\"../../plots/cartesian/layout_attributes\"),i=t(\"../../plots/font_attributes\"),o=t(\"../../plots/domain\").attributes,s=t(\"../../lib/extend\").extendFlat,l=t(\"../../plot_api/plot_template\").templatedArray;e.exports={domain:o({name:\"parcoords\",trace:!0,editType:\"plot\"}),labelangle:{valType:\"angle\",dflt:0,editType:\"plot\"},labelside:{valType:\"enumerated\",values:[\"top\",\"bottom\"],dflt:\"top\",editType:\"plot\"},labelfont:i({editType:\"plot\"}),tickfont:i({editType:\"plot\"}),rangefont:i({editType:\"plot\"}),dimensions:l(\"dimension\",{label:{valType:\"string\",editType:\"plot\"},tickvals:s({},a.tickvals,{editType:\"plot\"}),ticktext:s({},a.ticktext,{editType:\"plot\"}),tickformat:s({},a.tickformat,{editType:\"plot\"}),visible:{valType:\"boolean\",dflt:!0,editType:\"plot\"},range:{valType:\"info_array\",items:[{valType:\"number\",editType:\"plot\"},{valType:\"number\",editType:\"plot\"}],editType:\"plot\"},constraintrange:{valType:\"info_array\",freeLength:!0,dimensions:\"1-2\",items:[{valType:\"number\",editType:\"plot\"},{valType:\"number\",editType:\"plot\"}],editType:\"plot\"},multiselect:{valType:\"boolean\",dflt:!0,editType:\"plot\"},values:{valType:\"data_array\",editType:\"calc\"},editType:\"calc\"}),line:s({editType:\"calc\"},n(\"line\",{colorscaleDflt:\"Viridis\",autoColorDflt:!1,editTypeOverride:\"calc\"}))}},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plot_api/plot_template\":757,\"../../plots/cartesian/layout_attributes\":779,\"../../plots/domain\":792,\"../../plots/font_attributes\":793}],1074:[function(t,e,r){\"use strict\";var n=t(\"./constants\"),a=t(\"d3\"),i=t(\"../../lib/gup\").keyFun,o=t(\"../../lib/gup\").repeat,s=t(\"../../lib\").sorterAsc,l=n.bar.snapRatio;function c(t,e){return t*(1-l)+e*l}var u=n.bar.snapClose;function h(t,e){return t*(1-u)+e*u}function f(t,e,r,n){if(function(t,e){for(var r=0;r<e.length;r++)if(t>=e[r][0]&&t<=e[r][1])return!0;return!1}(r,n))return r;var a=t?-1:1,i=0,o=e.length-1;if(a<0){var s=i;i=o,o=s}for(var l=e[i],u=l,f=i;a*f<a*o;f+=a){var p=f+a,d=e[p];if(a*r<a*h(l,d))return c(l,u);if(a*r<a*d||p===o)return c(d,l);u=l,l=d}}function p(t){t.attr(\"x\",-n.bar.captureWidth/2).attr(\"width\",n.bar.captureWidth)}function d(t){t.attr(\"visibility\",\"visible\").style(\"visibility\",\"visible\").attr(\"fill\",\"yellow\").attr(\"opacity\",0)}function g(t){if(!t.brush.filterSpecified)return\"0,\"+t.height;for(var e,r,n,a=v(t.brush.filter.getConsolidated(),t.height),i=[0],o=a.length?a[0][0]:null,s=0;s<a.length;s++)r=(e=a[s])[1]-e[0],i.push(o),i.push(r),(n=s+1)<a.length&&(o=a[n][0]-e[1]);return i.push(t.height),i}function v(t,e){return t.map(function(t){return t.map(function(t){return Math.max(0,t*e)}).sort(s)})}function m(){a.select(document.body).style(\"cursor\",null)}function y(t){t.attr(\"stroke-dasharray\",g)}function x(t,e){var r=a.select(t).selectAll(\".highlight, .highlight-shadow\");y(e?r.transition().duration(n.bar.snapDuration).each(\"end\",e):r)}function b(t,e){var r,a=t.brush,i=NaN,o={};if(a.filterSpecified){var s=t.height,l=a.filter.getConsolidated(),c=v(l,s),u=NaN,h=NaN,f=NaN;for(r=0;r<=c.length;r++){var p=c[r];if(p&&p[0]<=e&&e<=p[1]){u=r;break}if(h=r?r-1:NaN,p&&p[0]>e){f=r;break}}if(i=u,isNaN(i)&&(i=isNaN(h)||isNaN(f)?isNaN(h)?f:h:e-c[h][1]<c[f][0]-e?h:f),!isNaN(i)){var d=c[i],g=function(t,e){var r=n.bar.handleHeight;if(!(e>t[1]+r||e<t[0]-r))return e>=.9*t[1]+.1*t[0]?\"n\":e<=.9*t[0]+.1*t[1]?\"s\":\"ns\"}(d,e);g&&(o.interval=l[i],o.intervalPix=d,o.region=g)}}if(t.ordinal&&!o.region){var m=t.unitTickvals,y=t.unitToPaddedPx.invert(e);for(r=0;r<m.length;r++){var x=[.25*m[Math.max(r-1,0)]+.75*m[r],.25*m[Math.min(r+1,m.length-1)]+.75*m[r]];if(y>=x[0]&&y<=x[1]){o.clickableOrdinalRange=x;break}}}return o}function _(t,e){a.event.sourceEvent.stopPropagation();var r=e.height-a.mouse(t)[1]-2*n.verticalPadding,i=e.brush.svgBrush;i.wasDragged=!0,i._dragging=!0,i.grabbingBar?i.newExtent=[r-i.grabPoint,r+i.barLength-i.grabPoint].map(e.unitToPaddedPx.invert):i.newExtent=[i.startExtent,e.unitToPaddedPx.invert(r)].sort(s),e.brush.filterSpecified=!0,i.extent=i.stayingIntervals.concat([i.newExtent]),i.brushCallback(e),x(t.parentNode)}function w(t,e){var r=b(e,e.height-a.mouse(t)[1]-2*n.verticalPadding),i=\"crosshair\";r.clickableOrdinalRange?i=\"pointer\":r.region&&(i=r.region+\"-resize\"),a.select(document.body).style(\"cursor\",i)}function k(t){t.on(\"mousemove\",function(t){a.event.preventDefault(),t.parent.inBrushDrag||w(this,t)}).on(\"mouseleave\",function(t){t.parent.inBrushDrag||m()}).call(a.behavior.drag().on(\"dragstart\",function(t){!function(t,e){a.event.sourceEvent.stopPropagation();var r=e.height-a.mouse(t)[1]-2*n.verticalPadding,i=e.unitToPaddedPx.invert(r),o=e.brush,s=b(e,r),l=s.interval,c=o.svgBrush;if(c.wasDragged=!1,c.grabbingBar=\"ns\"===s.region,c.grabbingBar){var u=l.map(e.unitToPaddedPx);c.grabPoint=r-u[0]-n.verticalPadding,c.barLength=u[1]-u[0]}c.clickableOrdinalRange=s.clickableOrdinalRange,c.stayingIntervals=e.multiselect&&o.filterSpecified?o.filter.getConsolidated():[],l&&(c.stayingIntervals=c.stayingIntervals.filter(function(t){return t[0]!==l[0]&&t[1]!==l[1]})),c.startExtent=s.region?l[\"s\"===s.region?1:0]:i,e.parent.inBrushDrag=!0,c.brushStartCallback()}(this,t)}).on(\"drag\",function(t){_(this,t)}).on(\"dragend\",function(t){!function(t,e){var r=e.brush,n=r.filter,i=r.svgBrush;i._dragging||(w(t,e),_(t,e),e.brush.svgBrush.wasDragged=!1),i._dragging=!1,a.event.sourceEvent.stopPropagation();var o=i.grabbingBar;if(i.grabbingBar=!1,i.grabLocation=void 0,e.parent.inBrushDrag=!1,m(),!i.wasDragged)return i.wasDragged=void 0,i.clickableOrdinalRange?r.filterSpecified&&e.multiselect?i.extent.push(i.clickableOrdinalRange):(i.extent=[i.clickableOrdinalRange],r.filterSpecified=!0):o?(i.extent=i.stayingIntervals,0===i.extent.length&&A(r)):A(r),i.brushCallback(e),x(t.parentNode),void i.brushEndCallback(r.filterSpecified?n.getConsolidated():[]);var s=function(){n.set(n.getConsolidated())};if(e.ordinal){var l=e.unitTickvals;l[l.length-1]<l[0]&&l.reverse(),i.newExtent=[f(0,l,i.newExtent[0],i.stayingIntervals),f(1,l,i.newExtent[1],i.stayingIntervals)];var c=i.newExtent[1]>i.newExtent[0];i.extent=i.stayingIntervals.concat(c?[i.newExtent]:[]),i.extent.length||A(r),i.brushCallback(e),c?x(t.parentNode,s):(s(),x(t.parentNode))}else s();i.brushEndCallback(r.filterSpecified?n.getConsolidated():[])}(this,t)}))}function T(t,e){return t[0]-e[0]}function A(t){t.filterSpecified=!1,t.svgBrush.extent=[[-1/0,1/0]]}function M(t){for(var e,r=t.slice(),n=[],a=r.shift();a;){for(e=a.slice();(a=r.shift())&&a[0]<=e[1];)e[1]=Math.max(e[1],a[1]);n.push(e)}return n}e.exports={makeBrush:function(t,e,r,n,a,i){var o,l=function(){var t,e,r=[];return{set:function(n){1===(r=n.map(function(t){return t.slice().sort(s)}).sort(T)).length&&r[0][0]===-1/0&&r[0][1]===1/0&&(r=[[0,-1]]),t=M(r),e=r.reduce(function(t,e){return[Math.min(t[0],e[0]),Math.max(t[1],e[1])]},[1/0,-1/0])},get:function(){return r.slice()},getConsolidated:function(){return t},getBounds:function(){return e}}}();return l.set(r),{filter:l,filterSpecified:e,svgBrush:{extent:[],brushStartCallback:n,brushCallback:(o=a,function(t){var e=t.brush,r=function(t){return t.svgBrush.extent.map(function(t){return t.slice()})}(e).slice();e.filter.set(r),o()}),brushEndCallback:i}}},ensureAxisBrush:function(t){var e=t.selectAll(\".\"+n.cn.axisBrush).data(o,i);e.enter().append(\"g\").classed(n.cn.axisBrush,!0),function(t){var e=t.selectAll(\".background\").data(o);e.enter().append(\"rect\").classed(\"background\",!0).call(p).call(d).style(\"pointer-events\",\"auto\").attr(\"transform\",\"translate(0 \"+n.verticalPadding+\")\"),e.call(k).attr(\"height\",function(t){return t.height-n.verticalPadding});var r=t.selectAll(\".highlight-shadow\").data(o);r.enter().append(\"line\").classed(\"highlight-shadow\",!0).attr(\"x\",-n.bar.width/2).attr(\"stroke-width\",n.bar.width+n.bar.strokeWidth).attr(\"stroke\",n.bar.strokeColor).attr(\"opacity\",n.bar.strokeOpacity).attr(\"stroke-linecap\",\"butt\"),r.attr(\"y1\",function(t){return t.height}).call(y);var a=t.selectAll(\".highlight\").data(o);a.enter().append(\"line\").classed(\"highlight\",!0).attr(\"x\",-n.bar.width/2).attr(\"stroke-width\",n.bar.width-n.bar.strokeWidth).attr(\"stroke\",n.bar.fillColor).attr(\"opacity\",n.bar.fillOpacity).attr(\"stroke-linecap\",\"butt\"),a.attr(\"y1\",function(t){return t.height}).call(y)}(e)},cleanRanges:function(t,e){if(Array.isArray(t[0])?(t=t.map(function(t){return t.sort(s)}),t=e.multiselect?M(t.sort(T)):[t[0]]):t=[t.sort(s)],e.tickvals){var r=e.tickvals.slice().sort(s);if(!(t=t.map(function(t){var e=[f(0,r,t[0],[]),f(1,r,t[1],[])];if(e[1]>e[0])return e}).filter(function(t){return t})).length)return}return t.length>1?t:t[0]}}},{\"../../lib\":719,\"../../lib/gup\":717,\"./constants\":1077,d3:164}],1075:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../plots/get_data\").getModuleCalcData,i=t(\"./plot\"),o=t(\"../../constants/xmlns_namespaces\");r.name=\"parcoords\",r.plot=function(t){var e=a(t.calcdata,\"parcoords\")[0];e.length&&i(t,e)},r.clean=function(t,e,r,n){var a=n._has&&n._has(\"parcoords\"),i=e._has&&e._has(\"parcoords\");a&&!i&&(n._paperdiv.selectAll(\".parcoords\").remove(),n._glimages.selectAll(\"*\").remove())},r.toSVG=function(t){var e=t._fullLayout._glimages,r=n.select(t).selectAll(\".svg-container\");r.filter(function(t,e){return e===r.size()-1}).selectAll(\".gl-canvas-context, .gl-canvas-focus\").each(function(){var t=this.toDataURL(\"image/png\");e.append(\"svg:image\").attr({xmlns:o.svg,\"xlink:href\":t,preserveAspectRatio:\"none\",x:0,y:0,width:this.width,height:this.height})}),window.setTimeout(function(){n.selectAll(\"#filterBarPattern\").attr(\"id\",\"filterBarPattern\")},60)}},{\"../../constants/xmlns_namespaces\":696,\"../../plots/get_data\":802,\"./plot\":1084,d3:164}],1076:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").isArrayOrTypedArray,a=t(\"../../components/colorscale\"),i=t(\"../../lib/gup\").wrap;e.exports=function(t,e){var r,o;return a.hasColorscale(e,\"line\")&&n(e.line.color)?(r=e.line.color,o=a.extractOpts(e.line).colorscale,a.calc(t,e,{vals:r,containerStr:\"line\",cLetter:\"c\"})):(r=function(t){for(var e=new Array(t),r=0;r<t;r++)e[r]=.5;return e}(e._length),o=[[0,e.line.color],[1,e.line.color]]),i({lineColor:r,cscale:o})}},{\"../../components/colorscale\":606,\"../../lib\":719,\"../../lib/gup\":717}],1077:[function(t,e,r){\"use strict\";e.exports={maxDimensionCount:60,overdrag:45,verticalPadding:2,tickDistance:50,canvasPixelRatio:1,blockLineCount:5e3,layers:[\"contextLineLayer\",\"focusLineLayer\",\"pickLineLayer\"],axisTitleOffset:28,axisExtentOffset:10,deselectedLineColor:\"#777\",bar:{width:4,captureWidth:10,fillColor:\"magenta\",fillOpacity:1,snapDuration:150,snapRatio:.25,snapClose:.01,strokeColor:\"white\",strokeOpacity:1,strokeWidth:1,handleHeight:8,handleOpacity:1,handleOverlap:0},cn:{axisExtentText:\"axis-extent-text\",parcoordsLineLayers:\"parcoords-line-layers\",parcoordsLineLayer:\"parcoords-lines\",parcoords:\"parcoords\",parcoordsControlView:\"parcoords-control-view\",yAxis:\"y-axis\",axisOverlays:\"axis-overlays\",axis:\"axis\",axisHeading:\"axis-heading\",axisTitle:\"axis-title\",axisExtent:\"axis-extent\",axisExtentTop:\"axis-extent-top\",axisExtentTopText:\"axis-extent-top-text\",axisExtentBottom:\"axis-extent-bottom\",axisExtentBottomText:\"axis-extent-bottom-text\",axisBrush:\"axis-brush\"},id:{filterBarPattern:\"filter-bar-pattern\"}}},{}],1078:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/colorscale/helpers\").hasColorscale,i=t(\"../../components/colorscale/defaults\"),o=t(\"../../plots/domain\").defaults,s=t(\"../../plots/array_container_defaults\"),l=t(\"../../plots/cartesian/axes\"),c=t(\"./attributes\"),u=t(\"./axisbrush\"),h=t(\"./constants\").maxDimensionCount,f=t(\"./merge_length\");function p(t,e,r,a){function i(r,a){return n.coerce(t,e,c.dimensions,r,a)}var o=i(\"values\"),s=i(\"visible\");if(o&&o.length||(s=e.visible=!1),s){i(\"label\"),i(\"tickvals\"),i(\"ticktext\"),i(\"tickformat\");var h=i(\"range\");e._ax={_id:\"y\",type:\"linear\",showexponent:\"all\",exponentformat:\"B\",range:h},l.setConvert(e._ax,a.layout),i(\"multiselect\");var f=i(\"constraintrange\");f&&(e.constraintrange=u.cleanRanges(f,e))}}e.exports=function(t,e,r,l){function u(r,a){return n.coerce(t,e,c,r,a)}var d=t.dimensions;Array.isArray(d)&&d.length>h&&(n.log(\"parcoords traces support up to \"+h+\" dimensions at the moment\"),d.splice(h));var g=s(t,e,{name:\"dimensions\",layout:l,handleItemDefaults:p}),v=function(t,e,r,o,s){var l=s(\"line.color\",r);if(a(t,\"line\")&&n.isArrayOrTypedArray(l)){if(l.length)return s(\"line.colorscale\"),i(t,e,o,s,{prefix:\"line.\",cLetter:\"c\"}),l.length;e.line.color=r}return 1/0}(t,e,r,l,u);o(e,l,u),Array.isArray(g)&&g.length||(e.visible=!1),f(e,g,\"values\",v);var m={family:l.font.family,size:Math.round(l.font.size/1.2),color:l.font.color};n.coerceFont(u,\"labelfont\",m),n.coerceFont(u,\"tickfont\",m),n.coerceFont(u,\"rangefont\",m),u(\"labelangle\"),u(\"labelside\")}},{\"../../components/colorscale/defaults\":604,\"../../components/colorscale/helpers\":605,\"../../lib\":719,\"../../plots/array_container_defaults\":763,\"../../plots/cartesian/axes\":767,\"../../plots/domain\":792,\"./attributes\":1073,\"./axisbrush\":1074,\"./constants\":1077,\"./merge_length\":1082}],1079:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").isTypedArray;r.convertTypedArray=function(t){return n(t)?Array.prototype.slice.call(t):t},r.isOrdinal=function(t){return!!t.tickvals},r.isVisible=function(t){return t.visible||!(\"visible\"in t)}},{\"../../lib\":719}],1080:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),plot:t(\"./plot\"),colorbar:{container:\"line\",min:\"cmin\",max:\"cmax\"},moduleType:\"trace\",name:\"parcoords\",basePlotModule:t(\"./base_plot\"),categories:[\"gl\",\"regl\",\"noOpacity\",\"noHover\"],meta:{}}},{\"./attributes\":1073,\"./base_plot\":1075,\"./calc\":1076,\"./defaults\":1078,\"./plot\":1084}],1081:[function(t,e,r){\"use strict\";var n=t(\"glslify\"),a=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nvarying vec4 fragColor;\\n\\nattribute vec4 p01_04, p05_08, p09_12, p13_16,\\n               p17_20, p21_24, p25_28, p29_32,\\n               p33_36, p37_40, p41_44, p45_48,\\n               p49_52, p53_56, p57_60, colors;\\n\\nuniform mat4 dim0A, dim1A, dim0B, dim1B, dim0C, dim1C, dim0D, dim1D,\\n             loA, hiA, loB, hiB, loC, hiC, loD, hiD;\\n\\nuniform vec2 resolution, viewBoxPos, viewBoxSize;\\nuniform sampler2D mask, palette;\\nuniform float maskHeight;\\nuniform float drwLayer; // 0: context, 1: focus, 2: pick\\nuniform vec4 contextColor;\\n\\nbool isPick    = (drwLayer > 1.5);\\nbool isContext = (drwLayer < 0.5);\\n\\nconst vec4 ZEROS = vec4(0.0, 0.0, 0.0, 0.0);\\nconst vec4 UNITS = vec4(1.0, 1.0, 1.0, 1.0);\\n\\nfloat val(mat4 p, mat4 v) {\\n    return dot(matrixCompMult(p, v) * UNITS, UNITS);\\n}\\n\\nfloat axisY(float ratio, mat4 A, mat4 B, mat4 C, mat4 D) {\\n    float y1 = val(A, dim0A) + val(B, dim0B) + val(C, dim0C) + val(D, dim0D);\\n    float y2 = val(A, dim1A) + val(B, dim1B) + val(C, dim1C) + val(D, dim1D);\\n    return y1 * (1.0 - ratio) + y2 * ratio;\\n}\\n\\nint iMod(int a, int b) {\\n    return a - b * (a / b);\\n}\\n\\nbool fOutside(float p, float lo, float hi) {\\n    return (lo < hi) && (lo > p || p > hi);\\n}\\n\\nbool vOutside(vec4 p, vec4 lo, vec4 hi) {\\n    return (\\n        fOutside(p[0], lo[0], hi[0]) ||\\n        fOutside(p[1], lo[1], hi[1]) ||\\n        fOutside(p[2], lo[2], hi[2]) ||\\n        fOutside(p[3], lo[3], hi[3])\\n    );\\n}\\n\\nbool mOutside(mat4 p, mat4 lo, mat4 hi) {\\n    return (\\n        vOutside(p[0], lo[0], hi[0]) ||\\n        vOutside(p[1], lo[1], hi[1]) ||\\n        vOutside(p[2], lo[2], hi[2]) ||\\n        vOutside(p[3], lo[3], hi[3])\\n    );\\n}\\n\\nbool outsideBoundingBox(mat4 A, mat4 B, mat4 C, mat4 D) {\\n    return mOutside(A, loA, hiA) ||\\n           mOutside(B, loB, hiB) ||\\n           mOutside(C, loC, hiC) ||\\n           mOutside(D, loD, hiD);\\n}\\n\\nbool outsideRasterMask(mat4 A, mat4 B, mat4 C, mat4 D) {\\n    mat4 pnts[4];\\n    pnts[0] = A;\\n    pnts[1] = B;\\n    pnts[2] = C;\\n    pnts[3] = D;\\n\\n    for(int i = 0; i < 4; ++i) {\\n        for(int j = 0; j < 4; ++j) {\\n            for(int k = 0; k < 4; ++k) {\\n                if(0 == iMod(\\n                    int(255.0 * texture2D(mask,\\n                        vec2(\\n                            (float(i * 2 + j / 2) + 0.5) / 8.0,\\n                            (pnts[i][j][k] * (maskHeight - 1.0) + 1.0) / maskHeight\\n                        ))[3]\\n                    ) / int(pow(2.0, float(iMod(j * 4 + k, 8)))),\\n                    2\\n                )) return true;\\n            }\\n        }\\n    }\\n    return false;\\n}\\n\\nvec4 position(bool isContext, float v, mat4 A, mat4 B, mat4 C, mat4 D) {\\n    float x = 0.5 * sign(v) + 0.5;\\n    float y = axisY(x, A, B, C, D);\\n    float z = 1.0 - abs(v);\\n\\n    z += isContext ? 0.0 : 2.0 * float(\\n        outsideBoundingBox(A, B, C, D) ||\\n        outsideRasterMask(A, B, C, D)\\n    );\\n\\n    return vec4(\\n        2.0 * (vec2(x, y) * viewBoxSize + viewBoxPos) / resolution - 1.0,\\n        z,\\n        1.0\\n    );\\n}\\n\\nvoid main() {\\n    mat4 A = mat4(p01_04, p05_08, p09_12, p13_16);\\n    mat4 B = mat4(p17_20, p21_24, p25_28, p29_32);\\n    mat4 C = mat4(p33_36, p37_40, p41_44, p45_48);\\n    mat4 D = mat4(p49_52, p53_56, p57_60, ZEROS);\\n\\n    float v = colors[3];\\n\\n    gl_Position = position(isContext, v, A, B, C, D);\\n\\n    fragColor =\\n        isContext ? vec4(contextColor) :\\n        isPick ? vec4(colors.rgb, 1.0) : texture2D(palette, vec2(abs(v), 0.5));\\n}\\n\"]),i=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nvarying vec4 fragColor;\\n\\nvoid main() {\\n    gl_FragColor = fragColor;\\n}\\n\"]),o=t(\"./constants\").maxDimensionCount,s=t(\"../../lib\"),l=1e-6,c=2048,u=new Uint8Array(4),h=new Uint8Array(4),f={shape:[256,1],format:\"rgba\",type:\"uint8\",mag:\"nearest\",min:\"nearest\"};function p(t,e,r,n,a){var i=t._gl;i.enable(i.SCISSOR_TEST),i.scissor(e,r,n,a),t.clear({color:[0,0,0,0],depth:1})}function d(t,e,r,n,a,i){var o=i.key;r.drawCompleted||(!function(t){t.read({x:0,y:0,width:1,height:1,data:u})}(t),r.drawCompleted=!0),function s(l){var c=Math.min(n,a-l*n);0===l&&(window.cancelAnimationFrame(r.currentRafs[o]),delete r.currentRafs[o],p(t,i.scissorX,i.scissorY,i.scissorWidth,i.viewBoxSize[1])),r.clearOnly||(i.count=2*c,i.offset=2*l*n,e(i),l*n+c<a&&(r.currentRafs[o]=window.requestAnimationFrame(function(){s(l+1)})),r.drawCompleted=!1)}(0)}function g(t,e){return(t>>>8*e)%256/255}function v(t,e,r){for(var n=new Array(8*e),a=0,i=0;i<e;i++)for(var o=0;o<2;o++)for(var s=0;s<4;s++){var l=4*t+s,c=r[64*i+l];63===l&&0===o&&(c*=-1),n[a++]=c}return n}function m(t){var e=\"0\"+t;return e.substr(e.length-2)}function y(t){return t<o?\"p\"+m(t+1)+\"_\"+m(t+4):\"colors\"}function x(t,e,r,n,a,i,o,l,c,u,h,f,p){for(var d=[[],[]],g=0;g<64;g++)d[0][g]=g===a?1:0,d[1][g]=g===i?1:0;var v=t.lines.canvasOverdrag,m=t.domain,y=t.canvasWidth,x=t.canvasHeight,b=t.deselectedLines.color;return s.extendFlat({key:h,resolution:[y,x],viewBoxPos:[o+v,l],viewBoxSize:[c,u],i0:a,i1:i,dim0A:d[0].slice(0,16),dim0B:d[0].slice(16,32),dim0C:d[0].slice(32,48),dim0D:d[0].slice(48,64),dim1A:d[1].slice(0,16),dim1B:d[1].slice(16,32),dim1C:d[1].slice(32,48),dim1D:d[1].slice(48,64),drwLayer:f,contextColor:[b[0]/255,b[1]/255,b[2]/255,b[3]<1?b[3]:Math.max(1/255,Math.pow(1/t.lines.color.length,1/3))],scissorX:(n===e?0:o+v)+(t.pad.l-v)+t.layoutWidth*m.x[0],scissorWidth:(n===r?y-o+v:c+.5)+(n===e?o+v:0),scissorY:l+t.pad.b+t.layoutHeight*m.y[0],scissorHeight:u,viewportX:t.pad.l-v+t.layoutWidth*m.x[0],viewportY:t.pad.b+t.layoutHeight*m.y[0],viewportWidth:y,viewportHeight:x},p)}function b(t){var e=c-1,r=Math.max(0,Math.floor(t[0]*e),0),n=Math.min(e,Math.ceil(t[1]*e),e);return[Math.min(r,n),Math.max(r,n)]}e.exports=function(t,e){var r,n,u,m,_,w=e.context,k=e.pick,T=e.regl,A={currentRafs:{},drawCompleted:!0,clearOnly:!1},M=function(t){for(var e={},r=0;r<=o;r+=4)e[y(r)]=t.buffer({usage:\"dynamic\",type:\"float\",data:new Uint8Array(0)});return e}(T),S=T.texture(f),E=[];L(e);var C=T({profile:!1,blend:{enable:w,func:{srcRGB:\"src alpha\",dstRGB:\"one minus src alpha\",srcAlpha:1,dstAlpha:1},equation:{rgb:\"add\",alpha:\"add\"},color:[0,0,0,0]},depth:{enable:!w,mask:!0,func:\"less\",range:[0,1]},cull:{enable:!0,face:\"back\"},scissor:{enable:!0,box:{x:T.prop(\"scissorX\"),y:T.prop(\"scissorY\"),width:T.prop(\"scissorWidth\"),height:T.prop(\"scissorHeight\")}},viewport:{x:T.prop(\"viewportX\"),y:T.prop(\"viewportY\"),width:T.prop(\"viewportWidth\"),height:T.prop(\"viewportHeight\")},dither:!1,vert:a,frag:i,primitive:\"lines\",lineWidth:1,attributes:M,uniforms:{resolution:T.prop(\"resolution\"),viewBoxPos:T.prop(\"viewBoxPos\"),viewBoxSize:T.prop(\"viewBoxSize\"),dim0A:T.prop(\"dim0A\"),dim1A:T.prop(\"dim1A\"),dim0B:T.prop(\"dim0B\"),dim1B:T.prop(\"dim1B\"),dim0C:T.prop(\"dim0C\"),dim1C:T.prop(\"dim1C\"),dim0D:T.prop(\"dim0D\"),dim1D:T.prop(\"dim1D\"),loA:T.prop(\"loA\"),hiA:T.prop(\"hiA\"),loB:T.prop(\"loB\"),hiB:T.prop(\"hiB\"),loC:T.prop(\"loC\"),hiC:T.prop(\"hiC\"),loD:T.prop(\"loD\"),hiD:T.prop(\"hiD\"),palette:S,contextColor:T.prop(\"contextColor\"),mask:T.prop(\"maskTexture\"),drwLayer:T.prop(\"drwLayer\"),maskHeight:T.prop(\"maskHeight\")},offset:T.prop(\"offset\"),count:T.prop(\"count\")});function L(t){r=t.model,n=t.viewModel,u=n.dimensions.slice(),m=u[0]?u[0].values.length:0;var e=r.lines,a=k?e.color.map(function(t,r){return r/e.color.length}):e.color,i=function(t,e,r){for(var n,a=new Array(t*(o+4)),i=0,s=0;s<t;s++){for(var c=0;c<o;c++)a[i++]=c<e.length?e[c].paddedUnitValues[s]:.5;a[i++]=g(s,2),a[i++]=g(s,1),a[i++]=g(s,0),a[i++]=(n=r[s],Math.max(l,Math.min(1-l,n)))}return a}(m,u,a);!function(t,e,r){for(var n=0;n<=o;n+=4)t[y(n)](v(n/4,e,r))}(M,m,i),w||k||(S=T.texture(s.extendFlat({data:function(t,e){for(var r=new Array(256),n=0;n<256;n++)r[n]=t(n/255).concat(e);return r}(r.unitToColor,255)},f)))}return{render:function(t,e,n){var a,i,o,s=t.length,l=1/0,h=-1/0;for(a=0;a<s;a++)t[a].dim0.canvasX<l&&(l=t[a].dim0.canvasX,i=a),t[a].dim1.canvasX>h&&(h=t[a].dim1.canvasX,o=a);0===s&&p(T,0,0,r.canvasWidth,r.canvasHeight);var f=function(t){var e,r,n,a=[[],[]];for(n=0;n<64;n++){var i=!t&&n<u.length?u[n].brush.filter.getBounds():[-1/0,1/0];a[0][n]=i[0],a[1][n]=i[1]}var o=8*c,s=new Array(o);for(e=0;e<o;e++)s[e]=255;if(!t)for(e=0;e<u.length;e++){var l=e%8,h=(e-l)/8,f=Math.pow(2,l),p=u[e].brush.filter.get();if(!(p.length<2)){var d=b(p[0])[1];for(r=1;r<p.length;r++){var g=b(p[r]);for(n=d+1;n<g[0];n++)s[8*n+h]&=~f;d=Math.max(d,g[1])}}}var v={shape:[8,c],format:\"alpha\",type:\"uint8\",mag:\"nearest\",min:\"nearest\",data:s};return _?_(v):_=T.texture(v),{maskTexture:_,maskHeight:c,loA:a[0].slice(0,16),loB:a[0].slice(16,32),loC:a[0].slice(32,48),loD:a[0].slice(48,64),hiA:a[1].slice(0,16),hiB:a[1].slice(16,32),hiC:a[1].slice(32,48),hiD:a[1].slice(48,64)}}(w);for(a=0;a<s;a++){var g=t[a],v=g.dim0.crossfilterDimensionIndex,y=g.dim1.crossfilterDimensionIndex,M=g.canvasX,S=g.canvasY,L=M+g.panelSizeX;if(e||!E[v]||E[v][0]!==M||E[v][1]!==L){E[v]=[M,L];var P=x(r,i,o,a,v,y,M,S,g.panelSizeX,g.panelSizeY,g.dim0.crossfilterDimensionIndex,w?0:k?2:1,f);A.clearOnly=n;var O=e?r.lines.blockLineCount:m;d(T,C,A,O,m,P)}}},readPixel:function(t,e){return T.read({x:t,y:e,width:1,height:1,data:h}),h},readPixels:function(t,e,r,n){var a=new Uint8Array(4*r*n);return T.read({x:t,y:e,width:r,height:n,data:a}),a},destroy:function(){for(var e in t.style[\"pointer-events\"]=\"none\",S.destroy(),_&&_.destroy(),M)M[e].destroy()},update:L}}},{\"../../lib\":719,\"./constants\":1077,glslify:410}],1082:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n){var a,i;for(n||(n=1/0),a=0;a<e.length;a++)(i=e[a]).visible&&(n=Math.min(n,i[r].length));for(n===1/0&&(n=0),t._length=n,a=0;a<e.length;a++)(i=e[a]).visible&&(i._length=n);return n}},{}],1083:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"color-rgba\"),i=t(\"../../plots/cartesian/axes\"),o=t(\"../../lib\"),s=t(\"../../lib/svg_text_utils\"),l=t(\"../../components/drawing\"),c=t(\"../../components/colorscale\"),u=t(\"../../lib/gup\"),h=u.keyFun,f=u.repeat,p=u.unwrap,d=t(\"./helpers\"),g=t(\"./constants\"),v=t(\"./axisbrush\"),m=t(\"./lines\");function y(t,e,r){return o.aggNums(t,null,e,r)}function x(t,e){return _(y(Math.min,t,e),y(Math.max,t,e))}function b(t){var e=t.range;return e?_(e[0],e[1]):x(t.values,t._length)}function _(t,e){return!isNaN(t)&&isFinite(t)||(t=0),!isNaN(e)&&isFinite(e)||(e=0),t===e&&(0===t?(t-=1,e+=1):(t*=.9,e*=1.1)),[t,e]}function w(t){return t.dimensions.some(function(t){return t.brush.filterSpecified})}function k(t,e,r){var i=p(e),s=i.trace,l=d.convertTypedArray(i.lineColor),u=s.line,h={color:a(g.deselectedLineColor)},f=c.extractOpts(u),v=f.reversescale?c.flipScale(i.cscale):i.cscale,m=s.domain,y=s.dimensions,x=t.width,_=s.labelangle,w=s.labelside,k=s.labelfont,T=s.tickfont,A=s.rangefont,M=o.extendDeepNoArrays({},u,{color:l.map(n.scale.linear().domain(b({values:l,range:[f.min,f.max],_length:s._length}))),blockLineCount:g.blockLineCount,canvasOverdrag:g.overdrag*g.canvasPixelRatio}),S=Math.floor(x*(m.x[1]-m.x[0])),E=Math.floor(t.height*(m.y[1]-m.y[0])),C=t.margin||{l:80,r:80,t:100,b:80},L=S,P=E;return{key:r,colCount:y.filter(d.isVisible).length,dimensions:y,tickDistance:g.tickDistance,unitToColor:function(t){var e=t.map(function(t){return t[0]}),r=t.map(function(t){var e=a(t[1]);return n.rgb(\"rgb(\"+e[0]+\",\"+e[1]+\",\"+e[2]+\")\")}),i=\"rgb\".split(\"\").map(function(t){return n.scale.linear().clamp(!0).domain(e).range(r.map((a=t,function(t){return t[a]})));var a});return function(t){return i.map(function(e){return e(t)})}}(v),lines:M,deselectedLines:h,labelAngle:_,labelSide:w,labelFont:k,tickFont:T,rangeFont:A,layoutWidth:x,layoutHeight:t.height,domain:m,translateX:m.x[0]*x,translateY:t.height-m.y[1]*t.height,pad:C,canvasWidth:L*g.canvasPixelRatio+2*M.canvasOverdrag,canvasHeight:P*g.canvasPixelRatio,width:L,height:P,canvasPixelRatio:g.canvasPixelRatio}}function T(t,e,r){var a=r.width,i=r.height,s=r.dimensions,l=r.canvasPixelRatio,c=function(t){return a*t/Math.max(1,r.colCount-1)},u=g.verticalPadding/i,h=function(t,e){return n.scale.linear().range([e,t-e])}(i,g.verticalPadding),f={key:r.key,xScale:c,model:r,inBrushDrag:!1},p={};return f.dimensions=s.filter(d.isVisible).map(function(a,s){var m=function(t,e){return n.scale.linear().domain(b(t)).range([e,1-e])}(a,u),y=p[a.label];p[a.label]=(y||0)+1;var x=a.label+(y?\"__\"+y:\"\"),_=a.constraintrange,k=_&&_.length;k&&!Array.isArray(_[0])&&(_=[_]);var T=k?_.map(function(t){return t.map(m)}):[[-1/0,1/0]],A=a.values;A.length>a._length&&(A=A.slice(0,a._length));var M,S=a.tickvals;function E(t,e){return{val:t,text:M[e]}}function C(t,e){return t.val-e.val}if(Array.isArray(S)&&S.length){M=a.ticktext,Array.isArray(M)&&M.length?M.length>S.length?M=M.slice(0,S.length):S.length>M.length&&(S=S.slice(0,M.length)):M=S.map(n.format(a.tickformat));for(var L=1;L<S.length;L++)if(S[L]<S[L-1]){for(var P=S.map(E).sort(C),O=0;O<S.length;O++)S[O]=P[O].val,M[O]=P[O].text;break}}else S=void 0;return A=d.convertTypedArray(A),A=d.convertTypedArray(A),{key:x,label:a.label,tickFormat:a.tickformat,tickvals:S,ticktext:M,ordinal:d.isOrdinal(a),multiselect:a.multiselect,xIndex:s,crossfilterDimensionIndex:s,visibleIndex:a._index,height:i,values:A,paddedUnitValues:A.map(m),unitTickvals:S&&S.map(m),xScale:c,x:c(s),canvasX:c(s)*l,unitToPaddedPx:h,domainScale:function(t,e,r,a,i){var o,s,l=b(r);return a?n.scale.ordinal().domain(a.map((o=n.format(r.tickformat),s=i,s?function(t,e){var r=s[e];return null==r?o(t):r}:o))).range(a.map(function(r){var n=(r-l[0])/(l[1]-l[0]);return t-e+n*(2*e-t)})):n.scale.linear().domain(l).range([t-e,e])}(i,g.verticalPadding,a,S,M),ordinalScale:function(t){if(t.tickvals){var e=b(t);return n.scale.ordinal().domain(t.tickvals).range(t.tickvals.map(function(t){return(t-e[0])/(e[1]-e[0])}))}}(a),parent:f,model:r,brush:v.makeBrush(t,k,T,function(){t.linePickActive(!1)},function(){var e=f;e.focusLayer&&e.focusLayer.render(e.panels,!0);var r=w(e);!t.contextShown()&&r?(e.contextLayer&&e.contextLayer.render(e.panels,!0),t.contextShown(!0)):t.contextShown()&&!r&&(e.contextLayer&&e.contextLayer.render(e.panels,!0,!0),t.contextShown(!1))},function(r){if(f.focusLayer.render(f.panels,!0),f.pickLayer&&f.pickLayer.render(f.panels,!0),t.linePickActive(!0),e&&e.filterChanged){var n=m.invert,i=r.map(function(t){return t.map(n).sort(o.sorterAsc)}).sort(function(t,e){return t[0]-e[0]});e.filterChanged(f.key,a._index,i)}})}}),f}function A(t){t.classed(g.cn.axisExtentText,!0).attr(\"text-anchor\",\"middle\").style(\"cursor\",\"default\").style(\"user-select\",\"none\")}function M(t,e){var r=\"top\"===e?1:-1,n=t*Math.PI/180;return{dir:r,dx:Math.sin(n),dy:Math.cos(n),degrees:t}}function S(t,e){for(var r=e.panels||(e.panels=[]),n=t.data(),a=0;a<n.length-1;a++){var i=r[a]||(r[a]={}),o=n[a],s=n[a+1];i.dim0=o,i.dim1=s,i.canvasX=o.canvasX,i.panelSizeX=s.canvasX-o.canvasX,i.panelSizeY=e.model.canvasHeight,i.y=0,i.canvasY=0}}function E(t,e){return i.tickText(t._ax,e,!1).text}function C(t,e){if(t.ordinal)return\"\";var r=t.domainScale.domain(),n=r[e?r.length-1:0];return E(t.model.dimensions[t.visibleIndex],n)}e.exports=function(t,e,r,a){var c=t._fullLayout,u=c._toppaper,y=c._glcontainer;!function(t){for(var e=0;e<t.length;e++)for(var r=0;r<t[e].length;r++)for(var n=t[e][r].trace,a=n.dimensions,o=0;o<a.length;o++){var s=a[o].values,l=a[o]._ax;l&&(l.range?l.range=_(l.range[0],l.range[1]):l.range=x(s,n._length),l.dtick||(l.dtick=.01*(Math.abs(l.range[1]-l.range[0])||1)),l.tickformat=a[o].tickformat,i.calcTicks(l),l.cleanRange())}}(e);var b,L,P=(b=!0,L=!1,{linePickActive:function(t){return arguments.length?b=!!t:b},contextShown:function(t){return arguments.length?L=!!t:L}}),O=e.filter(function(t){return p(t).trace.visible}).map(k.bind(0,r)).map(T.bind(0,P,a));y.each(function(t,e){return o.extendFlat(t,O[e])});var I=y.selectAll(\".gl-canvas\").each(function(t){t.viewModel=O[0],t.model=t.viewModel?t.viewModel.model:null}),z=null;I.filter(function(t){return t.pick}).style(\"pointer-events\",\"auto\").on(\"mousemove\",function(t){if(P.linePickActive()&&t.lineLayer&&a&&a.hover){var e=n.event,r=this.width,i=this.height,o=n.mouse(this),s=o[0],l=o[1];if(s<0||l<0||s>=r||l>=i)return;var c=t.lineLayer.readPixel(s,i-1-l),u=0!==c[3],h=u?c[2]+256*(c[1]+256*c[0]):null,f={x:s,y:l,clientX:e.clientX,clientY:e.clientY,dataIndex:t.model.key,curveNumber:h};h!==z&&(u?a.hover(f):a.unhover&&a.unhover(f),z=h)}}),I.style(\"opacity\",function(t){return t.pick?0:1}),u.style(\"background\",\"rgba(255, 255, 255, 0)\");var D=u.selectAll(\".\"+g.cn.parcoords).data(O,h);D.exit().remove(),D.enter().append(\"g\").classed(g.cn.parcoords,!0).style(\"shape-rendering\",\"crispEdges\").style(\"pointer-events\",\"none\"),D.attr(\"transform\",function(t){return\"translate(\"+t.model.translateX+\",\"+t.model.translateY+\")\"});var R=D.selectAll(\".\"+g.cn.parcoordsControlView).data(f,h);R.enter().append(\"g\").classed(g.cn.parcoordsControlView,!0),R.attr(\"transform\",function(t){return\"translate(\"+t.model.pad.l+\",\"+t.model.pad.t+\")\"});var F=R.selectAll(\".\"+g.cn.yAxis).data(function(t){return t.dimensions},h);F.enter().append(\"g\").classed(g.cn.yAxis,!0),R.each(function(t){S(F,t)}),I.each(function(t){if(t.viewModel){!t.lineLayer||a?t.lineLayer=m(this,t):t.lineLayer.update(t),(t.key||0===t.key)&&(t.viewModel[t.key]=t.lineLayer);var e=!t.context||a;t.lineLayer.render(t.viewModel.panels,e)}}),F.attr(\"transform\",function(t){return\"translate(\"+t.xScale(t.xIndex)+\", 0)\"}),F.call(n.behavior.drag().origin(function(t){return t}).on(\"drag\",function(t){var e=t.parent;P.linePickActive(!1),t.x=Math.max(-g.overdrag,Math.min(t.model.width+g.overdrag,n.event.x)),t.canvasX=t.x*t.model.canvasPixelRatio,F.sort(function(t,e){return t.x-e.x}).each(function(e,r){e.xIndex=r,e.x=t===e?e.x:e.xScale(e.xIndex),e.canvasX=e.x*e.model.canvasPixelRatio}),S(F,e),F.filter(function(e){return 0!==Math.abs(t.xIndex-e.xIndex)}).attr(\"transform\",function(t){return\"translate(\"+t.xScale(t.xIndex)+\", 0)\"}),n.select(this).attr(\"transform\",\"translate(\"+t.x+\", 0)\"),F.each(function(r,n,a){a===t.parent.key&&(e.dimensions[n]=r)}),e.contextLayer&&e.contextLayer.render(e.panels,!1,!w(e)),e.focusLayer.render&&e.focusLayer.render(e.panels)}).on(\"dragend\",function(t){var e=t.parent;t.x=t.xScale(t.xIndex),t.canvasX=t.x*t.model.canvasPixelRatio,S(F,e),n.select(this).attr(\"transform\",function(t){return\"translate(\"+t.x+\", 0)\"}),e.contextLayer&&e.contextLayer.render(e.panels,!1,!w(e)),e.focusLayer&&e.focusLayer.render(e.panels),e.pickLayer&&e.pickLayer.render(e.panels,!0),P.linePickActive(!0),a&&a.axesMoved&&a.axesMoved(e.key,e.dimensions.map(function(t){return t.crossfilterDimensionIndex}))})),F.exit().remove();var B=F.selectAll(\".\"+g.cn.axisOverlays).data(f,h);B.enter().append(\"g\").classed(g.cn.axisOverlays,!0),B.selectAll(\".\"+g.cn.axis).remove();var N=B.selectAll(\".\"+g.cn.axis).data(f,h);N.enter().append(\"g\").classed(g.cn.axis,!0),N.each(function(t){var e=t.model.height/t.model.tickDistance,r=t.domainScale,a=r.domain();n.select(this).call(n.svg.axis().orient(\"left\").tickSize(4).outerTickSize(2).ticks(e,t.tickFormat).tickValues(t.ordinal?a:null).tickFormat(function(e){return d.isOrdinal(t)?e:E(t.model.dimensions[t.visibleIndex],e)}).scale(r)),l.font(N.selectAll(\"text\"),t.model.tickFont)}),N.selectAll(\".domain, .tick>line\").attr(\"fill\",\"none\").attr(\"stroke\",\"black\").attr(\"stroke-opacity\",.25).attr(\"stroke-width\",\"1px\"),N.selectAll(\"text\").style(\"text-shadow\",\"1px 1px 1px #fff, -1px -1px 1px #fff, 1px -1px 1px #fff, -1px 1px 1px #fff\").style(\"cursor\",\"default\").style(\"user-select\",\"none\");var j=B.selectAll(\".\"+g.cn.axisHeading).data(f,h);j.enter().append(\"g\").classed(g.cn.axisHeading,!0);var V=j.selectAll(\".\"+g.cn.axisTitle).data(f,h);V.enter().append(\"text\").classed(g.cn.axisTitle,!0).attr(\"text-anchor\",\"middle\").style(\"cursor\",\"ew-resize\").style(\"user-select\",\"none\").style(\"pointer-events\",\"auto\"),V.text(function(t){return t.label}).each(function(e){var r=n.select(this);l.font(r,e.model.labelFont),s.convertToTspans(r,t)}).attr(\"transform\",function(t){var e=M(t.model.labelAngle,t.model.labelSide),r=g.axisTitleOffset;return(e.dir>0?\"\":\"translate(0,\"+(2*r+t.model.height)+\")\")+\"rotate(\"+e.degrees+\")translate(\"+-r*e.dx+\",\"+-r*e.dy+\")\"}).attr(\"text-anchor\",function(t){var e=M(t.model.labelAngle,t.model.labelSide);return 2*Math.abs(e.dx)>Math.abs(e.dy)?e.dir*e.dx<0?\"start\":\"end\":\"middle\"});var U=B.selectAll(\".\"+g.cn.axisExtent).data(f,h);U.enter().append(\"g\").classed(g.cn.axisExtent,!0);var q=U.selectAll(\".\"+g.cn.axisExtentTop).data(f,h);q.enter().append(\"g\").classed(g.cn.axisExtentTop,!0),q.attr(\"transform\",\"translate(0,\"+-g.axisExtentOffset+\")\");var H=q.selectAll(\".\"+g.cn.axisExtentTopText).data(f,h);H.enter().append(\"text\").classed(g.cn.axisExtentTopText,!0).call(A),H.text(function(t){return C(t,!0)}).each(function(t){l.font(n.select(this),t.model.rangeFont)});var G=U.selectAll(\".\"+g.cn.axisExtentBottom).data(f,h);G.enter().append(\"g\").classed(g.cn.axisExtentBottom,!0),G.attr(\"transform\",function(t){return\"translate(0,\"+(t.model.height+g.axisExtentOffset)+\")\"});var Y=G.selectAll(\".\"+g.cn.axisExtentBottomText).data(f,h);Y.enter().append(\"text\").classed(g.cn.axisExtentBottomText,!0).attr(\"dy\",\"0.75em\").call(A),Y.text(function(t){return C(t,!1)}).each(function(t){l.font(n.select(this),t.model.rangeFont)}),v.ensureAxisBrush(B)}},{\"../../components/colorscale\":606,\"../../components/drawing\":615,\"../../lib\":719,\"../../lib/gup\":717,\"../../lib/svg_text_utils\":743,\"../../plots/cartesian/axes\":767,\"./axisbrush\":1074,\"./constants\":1077,\"./helpers\":1079,\"./lines\":1081,\"color-rgba\":123,d3:164}],1084:[function(t,e,r){\"use strict\";var n=t(\"./parcoords\"),a=t(\"../../lib/prepare_regl\"),i=t(\"./helpers\").isVisible;function o(t,e,r){var n=e.indexOf(r),a=t.indexOf(n);return-1===a&&(a+=e.length),a}e.exports=function(t,e){var r=t._fullLayout;if(a(t)){var s={},l={},c={},u={},h=r._size;e.forEach(function(e,r){var n=e[0].trace;c[r]=n.index;var a=u[r]=n._fullInput.index;s[r]=t.data[a].dimensions,l[r]=t.data[a].dimensions.slice()});n(t,e,{width:h.w,height:h.h,margin:{t:h.t,r:h.r,b:h.b,l:h.l}},{filterChanged:function(e,n,a){var i=l[e][n],o=a.map(function(t){return t.slice()}),s=\"dimensions[\"+n+\"].constraintrange\",h=r._tracePreGUI[t._fullData[c[e]]._fullInput.uid];if(void 0===h[s]){var f=i.constraintrange;h[s]=f||null}var p=t._fullData[c[e]].dimensions[n];o.length?(1===o.length&&(o=o[0]),i.constraintrange=o,p.constraintrange=o.slice(),o=[o]):(delete i.constraintrange,delete p.constraintrange,o=null);var d={};d[s]=o,t.emit(\"plotly_restyle\",[d,[u[e]]])},hover:function(e){t.emit(\"plotly_hover\",e)},unhover:function(e){t.emit(\"plotly_unhover\",e)},axesMoved:function(e,r){var n=function(t,e){return function(r,n){return o(t,e,r)-o(t,e,n)}}(r,l[e].filter(i));s[e].sort(n),l[e].filter(function(t){return!i(t)}).sort(function(t){return l[e].indexOf(t)}).forEach(function(t){s[e].splice(s[e].indexOf(t),1),s[e].splice(l[e].indexOf(t),0,t)}),t.emit(\"plotly_restyle\",[{dimensions:[s[e]]},[u[e]]])}})}}},{\"../../lib/prepare_regl\":732,\"./helpers\":1079,\"./parcoords\":1083}],1085:[function(t,e,r){\"use strict\";var n=t(\"../../plots/attributes\"),a=t(\"../../plots/domain\").attributes,i=t(\"../../plots/font_attributes\"),o=t(\"../../components/color/attributes\"),s=t(\"../../plots/template_attributes\").hovertemplateAttrs,l=t(\"../../plots/template_attributes\").texttemplateAttrs,c=t(\"../../lib/extend\").extendFlat,u=i({editType:\"plot\",arrayOk:!0,colorEditType:\"plot\"});e.exports={labels:{valType:\"data_array\",editType:\"calc\"},label0:{valType:\"number\",dflt:0,editType:\"calc\"},dlabel:{valType:\"number\",dflt:1,editType:\"calc\"},values:{valType:\"data_array\",editType:\"calc\"},marker:{colors:{valType:\"data_array\",editType:\"calc\"},line:{color:{valType:\"color\",dflt:o.defaultLine,arrayOk:!0,editType:\"style\"},width:{valType:\"number\",min:0,dflt:0,arrayOk:!0,editType:\"style\"},editType:\"calc\"},editType:\"calc\"},text:{valType:\"data_array\",editType:\"plot\"},hovertext:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"style\"},scalegroup:{valType:\"string\",dflt:\"\",editType:\"calc\"},textinfo:{valType:\"flaglist\",flags:[\"label\",\"text\",\"value\",\"percent\"],extras:[\"none\"],editType:\"calc\"},hoverinfo:c({},n.hoverinfo,{flags:[\"label\",\"text\",\"value\",\"percent\",\"name\"]}),hovertemplate:s({},{keys:[\"label\",\"color\",\"value\",\"percent\",\"text\"]}),texttemplate:l({editType:\"plot\"},{keys:[\"label\",\"color\",\"value\",\"percent\",\"text\"]}),textposition:{valType:\"enumerated\",values:[\"inside\",\"outside\",\"auto\",\"none\"],dflt:\"auto\",arrayOk:!0,editType:\"plot\"},textfont:c({},u,{}),insidetextfont:c({},u,{}),outsidetextfont:c({},u,{}),title:{text:{valType:\"string\",dflt:\"\",editType:\"plot\"},font:c({},u,{}),position:{valType:\"enumerated\",values:[\"top left\",\"top center\",\"top right\",\"middle center\",\"bottom left\",\"bottom center\",\"bottom right\"],editType:\"plot\"},editType:\"plot\"},domain:a({name:\"pie\",trace:!0,editType:\"calc\"}),hole:{valType:\"number\",min:0,max:1,dflt:0,editType:\"calc\"},sort:{valType:\"boolean\",dflt:!0,editType:\"calc\"},direction:{valType:\"enumerated\",values:[\"clockwise\",\"counterclockwise\"],dflt:\"counterclockwise\",editType:\"calc\"},rotation:{valType:\"number\",min:-360,max:360,dflt:0,editType:\"calc\"},pull:{valType:\"number\",min:0,max:1,dflt:0,arrayOk:!0,editType:\"calc\"},_deprecated:{title:{valType:\"string\",dflt:\"\",editType:\"calc\"},titlefont:c({},u,{}),titleposition:{valType:\"enumerated\",values:[\"top left\",\"top center\",\"top right\",\"middle center\",\"bottom left\",\"bottom center\",\"bottom right\"],editType:\"calc\"}}}},{\"../../components/color/attributes\":593,\"../../lib/extend\":710,\"../../plots/attributes\":764,\"../../plots/domain\":792,\"../../plots/font_attributes\":793,\"../../plots/template_attributes\":843}],1086:[function(t,e,r){\"use strict\";var n=t(\"../../plots/plots\");r.name=\"pie\",r.plot=function(t,e,a,i){n.plotBasePlot(r.name,t,e,a,i)},r.clean=function(t,e,a,i){n.cleanBasePlot(r.name,t,e,a,i)}},{\"../../plots/plots\":828}],1087:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\").isArrayOrTypedArray,i=t(\"tinycolor2\"),o=t(\"../../components/color\"),s={};function l(t){return function(e,r){return!!e&&(!!(e=i(e)).isValid()&&(e=o.addOpacity(e,e.getAlpha()),t[r]||(t[r]=e),e))}}function c(t,e){var r,n=JSON.stringify(t),a=e[n];if(!a){for(a=t.slice(),r=0;r<t.length;r++)a.push(i(t[r]).lighten(20).toHexString());for(r=0;r<t.length;r++)a.push(i(t[r]).darken(20).toHexString());e[n]=a}return a}e.exports={calc:function(t,e){var r,i,o=[],s=t._fullLayout,c=s.hiddenlabels||[],u=e.labels,h=e.marker.colors||[],f=e.values,p=a(f)&&f.length;if(e.dlabel)for(u=new Array(f.length),r=0;r<f.length;r++)u[r]=String(e.label0+r*e.dlabel);var d={},g=l(s[\"_\"+e.type+\"colormap\"]),v=(p?f:u).length,m=0,y=!1;for(r=0;r<v;r++){var x,b,_;if(p){if(x=f[r],!n(x))continue;if((x=+x)<0)continue}else x=1;void 0!==(b=u[r])&&\"\"!==b||(b=r);var w=d[b=String(b)];void 0===w?(d[b]=o.length,(_=-1!==c.indexOf(b))||(m+=x),o.push({v:x,label:b,color:g(h[r],b),i:r,pts:[r],hidden:_})):(y=!0,(i=o[w]).v+=x,i.pts.push(r),i.hidden||(m+=x),!1===i.color&&h[r]&&(i.color=g(h[r],b)))}return(\"funnelarea\"===e.type?y:e.sort)&&o.sort(function(t,e){return e.v-t.v}),o[0]&&(o[0].vTotal=m),o},crossTraceCalc:function(t,e){var r=(e||{}).type;r||(r=\"pie\");var n=t._fullLayout,a=t.calcdata,i=n[r+\"colorway\"],o=n[\"_\"+r+\"colormap\"];n[\"extend\"+r+\"colors\"]&&(i=c(i,s));for(var l=0,u=0;u<a.length;u++){var h=a[u];if(h[0].trace.type===r)for(var f=0;f<h.length;f++){var p=h[f];!1===p.color&&(o[p.label]?p.color=o[p.label]:(o[p.label]=p.color=i[l%i.length],l++))}}},makePullColorFn:l,generateExtendedColors:c}},{\"../../components/color\":594,\"../../lib\":719,\"fast-isnumeric\":226,tinycolor2:538}],1088:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./attributes\"),i=t(\"../../plots/domain\").defaults,o=t(\"../bar/defaults\").handleText;e.exports=function(t,e,r,s){function l(r,i){return n.coerce(t,e,a,r,i)}var c,u=l(\"values\"),h=n.isArrayOrTypedArray(u),f=l(\"labels\");if(Array.isArray(f)?(c=f.length,h&&(c=Math.min(c,u.length))):h&&(c=u.length,l(\"label0\"),l(\"dlabel\")),c){e._length=c,l(\"marker.line.width\")&&l(\"marker.line.color\"),l(\"marker.colors\"),l(\"scalegroup\");var p,d=l(\"text\"),g=l(\"texttemplate\");if(g||(p=l(\"textinfo\",Array.isArray(d)?\"text+percent\":\"percent\")),l(\"hovertext\"),l(\"hovertemplate\"),g||p&&\"none\"!==p){var v=l(\"textposition\");o(t,e,s,l,v,{moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!1,moduleHasCliponaxis:!1,moduleHasTextangle:!1,moduleHasInsideanchor:!1})}i(e,s,l);var m=l(\"hole\");if(l(\"title.text\")){var y=l(\"title.position\",m?\"middle center\":\"top center\");m||\"middle center\"!==y||(e.title.position=\"top center\"),n.coerceFont(l,\"title.font\",s.font)}l(\"sort\"),l(\"direction\"),l(\"rotation\"),l(\"pull\")}else e.visible=!1}},{\"../../lib\":719,\"../../plots/domain\":792,\"../bar/defaults\":862,\"./attributes\":1085}],1089:[function(t,e,r){\"use strict\";var n=t(\"../../components/fx/helpers\").appendArrayMultiPointValues;e.exports=function(t,e){var r={curveNumber:e.index,pointNumbers:t.pts,data:e._input,fullData:e,label:t.label,color:t.color,value:t.v,percent:t.percent,text:t.text,v:t.v};return 1===t.pts.length&&(r.pointNumber=r.i=t.pts[0]),n(r,e,t.pts),\"funnelarea\"===e.type&&(delete r.v,delete r.i),r}},{\"../../components/fx/helpers\":629}],1090:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");r.formatPiePercent=function(t,e){var r=(100*t).toPrecision(3);return-1!==r.lastIndexOf(\".\")&&(r=r.replace(/[.]?0+$/,\"\")),n.numSeparate(r,e)+\"%\"},r.formatPieValue=function(t,e){var r=t.toPrecision(10);return-1!==r.lastIndexOf(\".\")&&(r=r.replace(/[.]?0+$/,\"\")),n.numSeparate(r,e)},r.getFirstFilled=function(t,e){if(Array.isArray(t))for(var r=0;r<e.length;r++){var n=t[e[r]];if(n||0===n||\"\"===n)return n}},r.castOption=function(t,e){return Array.isArray(t)?r.getFirstFilled(t,e):t||void 0}},{\"../../lib\":719}],1091:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),supplyLayoutDefaults:t(\"./layout_defaults\"),layoutAttributes:t(\"./layout_attributes\"),calc:t(\"./calc\").calc,crossTraceCalc:t(\"./calc\").crossTraceCalc,plot:t(\"./plot\").plot,style:t(\"./style\"),styleOne:t(\"./style_one\"),moduleType:\"trace\",name:\"pie\",basePlotModule:t(\"./base_plot\"),categories:[\"pie-like\",\"pie\",\"showLegend\"],meta:{}}},{\"./attributes\":1085,\"./base_plot\":1086,\"./calc\":1087,\"./defaults\":1088,\"./layout_attributes\":1092,\"./layout_defaults\":1093,\"./plot\":1094,\"./style\":1095,\"./style_one\":1096}],1092:[function(t,e,r){\"use strict\";e.exports={hiddenlabels:{valType:\"data_array\",editType:\"calc\"},piecolorway:{valType:\"colorlist\",editType:\"calc\"},extendpiecolors:{valType:\"boolean\",dflt:!0,editType:\"calc\"}}},{}],1093:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./layout_attributes\");e.exports=function(t,e){function r(r,i){return n.coerce(t,e,a,r,i)}r(\"hiddenlabels\"),r(\"piecolorway\",e.colorway),r(\"extendpiecolors\")}},{\"../../lib\":719,\"./layout_attributes\":1092}],1094:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/fx\"),i=t(\"../../components/color\"),o=t(\"../../components/drawing\"),s=t(\"../../lib\"),l=t(\"../../lib/svg_text_utils\"),c=t(\"./helpers\"),u=t(\"./event_data\"),h=t(\"../../lib\").isValidTextValue;function f(t,e,r){var i=r[0],o=i.trace,l=i.cx,h=i.cy;\"_hasHoverLabel\"in o||(o._hasHoverLabel=!1),\"_hasHoverEvent\"in o||(o._hasHoverEvent=!1),t.on(\"mouseover\",function(t){var r=e._fullLayout,f=e._fullData[o.index];if(!e._dragging&&!1!==r.hovermode){var p=f.hoverinfo;if(Array.isArray(p)&&(p=a.castHoverinfo({hoverinfo:[c.castOption(p,t.pts)],_module:o._module},r,0)),\"all\"===p&&(p=\"label+text+value+percent+name\"),f.hovertemplate||\"none\"!==p&&\"skip\"!==p&&p){var d=t.rInscribed||0,g=l+t.pxmid[0]*(1-d),v=h+t.pxmid[1]*(1-d),m=r.separators,y=[];if(p&&-1!==p.indexOf(\"label\")&&y.push(t.label),t.text=c.castOption(f.hovertext||f.text,t.pts),p&&-1!==p.indexOf(\"text\")){var x=t.text;s.isValidTextValue(x)&&y.push(x)}t.value=t.v,t.valueLabel=c.formatPieValue(t.v,m),p&&-1!==p.indexOf(\"value\")&&y.push(t.valueLabel),t.percent=t.v/i.vTotal,t.percentLabel=c.formatPiePercent(t.percent,m),p&&-1!==p.indexOf(\"percent\")&&y.push(t.percentLabel);var b=f.hoverlabel,_=b.font;a.loneHover({trace:o,x0:g-d*i.r,x1:g+d*i.r,y:v,text:y.join(\"<br>\"),name:f.hovertemplate||-1!==p.indexOf(\"name\")?f.name:void 0,idealAlign:t.pxmid[0]<0?\"left\":\"right\",color:c.castOption(b.bgcolor,t.pts)||t.color,borderColor:c.castOption(b.bordercolor,t.pts),fontFamily:c.castOption(_.family,t.pts),fontSize:c.castOption(_.size,t.pts),fontColor:c.castOption(_.color,t.pts),nameLength:c.castOption(b.namelength,t.pts),textAlign:c.castOption(b.align,t.pts),hovertemplate:c.castOption(f.hovertemplate,t.pts),hovertemplateLabels:t,eventData:[u(t,f)]},{container:r._hoverlayer.node(),outerContainer:r._paper.node(),gd:e}),o._hasHoverLabel=!0}o._hasHoverEvent=!0,e.emit(\"plotly_hover\",{points:[u(t,f)],event:n.event})}}),t.on(\"mouseout\",function(t){var r=e._fullLayout,i=e._fullData[o.index],s=n.select(this).datum();o._hasHoverEvent&&(t.originalEvent=n.event,e.emit(\"plotly_unhover\",{points:[u(s,i)],event:n.event}),o._hasHoverEvent=!1),o._hasHoverLabel&&(a.loneUnhover(r._hoverlayer.node()),o._hasHoverLabel=!1)}),t.on(\"click\",function(t){var r=e._fullLayout,i=e._fullData[o.index];e._dragging||!1===r.hovermode||(e._hoverdata=[u(t,i)],a.click(e,n.event))})}function p(t,e,r){var n=c.castOption(t.insidetextfont.color,e.pts);!n&&t._input.textfont&&(n=c.castOption(t._input.textfont.color,e.pts));var a=c.castOption(t.insidetextfont.family,e.pts)||c.castOption(t.textfont.family,e.pts)||r.family,o=c.castOption(t.insidetextfont.size,e.pts)||c.castOption(t.textfont.size,e.pts)||r.size;return{color:n||i.contrast(e.color),family:a,size:o}}function d(t,e){for(var r,n,a=0;a<t.length;a++)if((n=(r=t[a][0]).trace).title.text){var i=n.title.text;n._meta&&(i=s.templateString(i,n._meta));var c=o.tester.append(\"text\").attr(\"data-notex\",1).text(i).call(o.font,n.title.font).call(l.convertToTspans,e),u=o.bBox(c.node(),!0);r.titleBox={width:u.width,height:u.height},c.remove()}}function g(t,e,r){var n=Math.sqrt(t.width*t.width+t.height*t.height),a=t.width/t.height,i=e.halfangle,o=e.ring,s=e.rInscribed,l=r.r||e.rpx1,c={scale:s*l*2/n,rCenter:1-s,rotate:0};if(c.scale>=1)return c;var u=a+1/(2*Math.tan(i)),h=l*Math.min(1/(Math.sqrt(u*u+.5)+u),o/(Math.sqrt(a*a+o/2)+a)),f={scale:2*h/t.height,rCenter:Math.cos(h/l)-h*a/l,rotate:(180/Math.PI*e.midangle+720)%180-90},p=1/a,d=p+1/(2*Math.tan(i)),g=l*Math.min(1/(Math.sqrt(d*d+.5)+d),o/(Math.sqrt(p*p+o/2)+p)),v={scale:2*g/t.width,rCenter:Math.cos(g/l)-g/a/l,rotate:(180/Math.PI*e.midangle+810)%180-90},m=v.scale>f.scale?v:f;return c.scale<1&&m.scale>c.scale?m:c}function v(t,e){return t.v!==e.vTotal||e.trace.hole?Math.min(1/(1+1/Math.sin(t.halfangle)),t.ring/2):1}function m(t,e){var r=e.pxmid[0],n=e.pxmid[1],a=t.width/2,i=t.height/2;return r<0&&(a*=-1),n<0&&(i*=-1),{scale:1,rCenter:1,rotate:0,x:a+Math.abs(i)*(a>0?1:-1)/2,y:i/(1+r*r/(n*n)),outside:!0}}function y(t,e){var r,n,a,i=t.trace,o={x:t.cx,y:t.cy},s={tx:0,ty:0};s.ty+=i.title.font.size,a=b(i),-1!==i.title.position.indexOf(\"top\")?(o.y-=(1+a)*t.r,s.ty-=t.titleBox.height):-1!==i.title.position.indexOf(\"bottom\")&&(o.y+=(1+a)*t.r);var l,c,u=(l=t.r,c=t.trace.aspectratio,l/(void 0===c?1:c)),h=e.w*(i.domain.x[1]-i.domain.x[0])/2;return-1!==i.title.position.indexOf(\"left\")?(h+=u,o.x-=(1+a)*u,s.tx+=t.titleBox.width/2):-1!==i.title.position.indexOf(\"center\")?h*=2:-1!==i.title.position.indexOf(\"right\")&&(h+=u,o.x+=(1+a)*u,s.tx-=t.titleBox.width/2),r=h/t.titleBox.width,n=x(t,e)/t.titleBox.height,{x:o.x,y:o.y,scale:Math.min(r,n),tx:s.tx,ty:s.ty}}function x(t,e){var r=t.trace,n=e.h*(r.domain.y[1]-r.domain.y[0]);return Math.min(t.titleBox.height,n/2)}function b(t){var e,r=t.pull;if(!r)return 0;if(Array.isArray(r))for(r=0,e=0;e<t.pull.length;e++)t.pull[e]>r&&(r=t.pull[e]);return r}function _(t,e){for(var r=[],n=0;n<t.length;n++){var a=t[n][0],i=a.trace,o=i.domain,s=e.w*(o.x[1]-o.x[0]),l=e.h*(o.y[1]-o.y[0]);i.title.text&&\"middle center\"!==i.title.position&&(l-=x(a,e));var c=s/2,u=l/2;\"funnelarea\"!==i.type||i.scalegroup||(u/=i.aspectratio),a.r=Math.min(c,u)/(1+b(i)),a.cx=e.l+e.w*(i.domain.x[1]+i.domain.x[0])/2,a.cy=e.t+e.h*(1-i.domain.y[0])-l/2,i.title.text&&-1!==i.title.position.indexOf(\"bottom\")&&(a.cy-=x(a,e)),i.scalegroup&&-1===r.indexOf(i.scalegroup)&&r.push(i.scalegroup)}!function(t,e){for(var r,n,a,i=0;i<e.length;i++){var o=1/0,s=e[i];for(n=0;n<t.length;n++)if(r=t[n][0],(a=r.trace).scalegroup===s){var l;if(\"pie\"===a.type)l=r.r*r.r;else if(\"funnelarea\"===a.type){var c,u;a.aspectratio>1?(c=r.r,u=c/a.aspectratio):(u=r.r,c=u*a.aspectratio),c*=(1+a.baseratio)/2,l=c*u}o=Math.min(o,l/r.vTotal)}for(n=0;n<t.length;n++)if(r=t[n][0],(a=r.trace).scalegroup===s){var h=o*r.vTotal;\"funnelarea\"===a.type&&(h/=(1+a.baseratio)/2,h/=a.aspectratio),r.r=Math.sqrt(h)}}}(t,r)}function w(t,e,r){var n=t._fullLayout,a=r.trace,i=a.texttemplate,o=a.textinfo;if(!i&&o&&\"none\"!==o){var l,u=o.split(\"+\"),f=function(t){return-1!==u.indexOf(t)},p=f(\"label\"),d=f(\"text\"),g=f(\"value\"),v=f(\"percent\"),m=n.separators;if(l=p?[e.label]:[],d){var y=c.getFirstFilled(a.text,e.pts);h(y)&&l.push(y)}g&&l.push(c.formatPieValue(e.v,m)),v&&l.push(c.formatPiePercent(e.v/r.vTotal,m)),e.text=l.join(\"<br>\")}if(i){var x=s.castOption(a,e.i,\"texttemplate\");if(x){var b=function(t){return{label:t.label,value:t.v,valueLabel:c.formatPieValue(t.v,n.separators),percent:t.v/r.vTotal,percentLabel:c.formatPiePercent(t.v/r.vTotal,n.separators),color:t.color,text:t.text,customdata:s.castOption(a,t.i,\"customdata\")}}(e),_=c.getFirstFilled(a.text,e.pts);(h(_)||\"\"===_)&&(b.text=_),e.text=s.texttemplateString(x,b,t._fullLayout._d3locale,b,a._meta||{})}else e.text=\"\"}}e.exports={plot:function(t,e){var r=t._fullLayout;d(e,t),_(e,r._size);var a=s.makeTraceGroups(r._pielayer,e,\"trace\").each(function(e){var a=n.select(this),u=e[0],h=u.trace;!function(t){var e,r,n,a=t[0],i=a.trace,o=i.rotation*Math.PI/180,s=2*Math.PI/a.vTotal,l=\"px0\",c=\"px1\";if(\"counterclockwise\"===i.direction){for(e=0;e<t.length&&t[e].hidden;e++);if(e===t.length)return;o+=s*t[e].v,s*=-1,l=\"px1\",c=\"px0\"}function u(t){return[a.r*Math.sin(t),-a.r*Math.cos(t)]}for(n=u(o),e=0;e<t.length;e++)(r=t[e]).hidden||(r[l]=n,o+=s*r.v/2,r.pxmid=u(o),r.midangle=o,o+=s*r.v/2,n=u(o),r[c]=n,r.largeArc=r.v>a.vTotal/2?1:0,r.halfangle=Math.PI*Math.min(r.v/a.vTotal,.5),r.ring=1-i.hole,r.rInscribed=v(r,a))}(e),a.attr(\"stroke-linejoin\",\"round\"),a.each(function(){var a=n.select(this).selectAll(\"g.slice\").data(e);a.enter().append(\"g\").classed(\"slice\",!0),a.exit().remove();var d=[[[],[]],[[],[]]],v=!1;a.each(function(r){if(r.hidden)n.select(this).selectAll(\"path,g\").remove();else{r.pointNumber=r.i,r.curveNumber=h.index,d[r.pxmid[1]<0?0:1][r.pxmid[0]<0?0:1].push(r);var a=u.cx,i=u.cy,y=n.select(this),x=y.selectAll(\"path.surface\").data([r]);if(x.enter().append(\"path\").classed(\"surface\",!0).style({\"pointer-events\":\"all\"}),y.call(f,t,e),h.pull){var b=+c.castOption(h.pull,r.pts)||0;b>0&&(a+=b*r.pxmid[0],i+=b*r.pxmid[1])}r.cxFinal=a,r.cyFinal=i;var _=h.hole;if(r.v===u.vTotal){var k=\"M\"+(a+r.px0[0])+\",\"+(i+r.px0[1])+E(r.px0,r.pxmid,!0,1)+E(r.pxmid,r.px0,!0,1)+\"Z\";_?x.attr(\"d\",\"M\"+(a+_*r.px0[0])+\",\"+(i+_*r.px0[1])+E(r.px0,r.pxmid,!1,_)+E(r.pxmid,r.px0,!1,_)+\"Z\"+k):x.attr(\"d\",k)}else{var T=E(r.px0,r.px1,!0,1);if(_){var A=1-_;x.attr(\"d\",\"M\"+(a+_*r.px1[0])+\",\"+(i+_*r.px1[1])+E(r.px1,r.px0,!1,_)+\"l\"+A*r.px0[0]+\",\"+A*r.px0[1]+T+\"Z\")}else x.attr(\"d\",\"M\"+a+\",\"+i+\"l\"+r.px0[0]+\",\"+r.px0[1]+T+\"Z\")}w(t,r,u);var M=c.castOption(h.textposition,r.pts),S=y.selectAll(\"g.slicetext\").data(r.text&&\"none\"!==M?[0]:[]);S.enter().append(\"g\").classed(\"slicetext\",!0),S.exit().remove(),S.each(function(){var e=s.ensureSingle(n.select(this),\"text\",\"\",function(t){t.attr(\"data-notex\",1)});e.text(r.text).attr({class:\"slicetext\",transform:\"\",\"text-anchor\":\"middle\"}).call(o.font,\"outside\"===M?function(t,e,r){var n=c.castOption(t.outsidetextfont.color,e.pts)||c.castOption(t.textfont.color,e.pts)||r.color,a=c.castOption(t.outsidetextfont.family,e.pts)||c.castOption(t.textfont.family,e.pts)||r.family,i=c.castOption(t.outsidetextfont.size,e.pts)||c.castOption(t.textfont.size,e.pts)||r.size;return{color:n,family:a,size:i}}(h,r,t._fullLayout.font):p(h,r,t._fullLayout.font)).call(l.convertToTspans,t);var f,d=o.bBox(e.node());\"outside\"===M?f=m(d,r):(f=g(d,r,u),\"auto\"===M&&f.scale<1&&(e.call(o.font,h.outsidetextfont),h.outsidetextfont.family===h.insidetextfont.family&&h.outsidetextfont.size===h.insidetextfont.size||(d=o.bBox(e.node())),f=m(d,r)));var y=a+r.pxmid[0]*f.rCenter+(f.x||0),x=i+r.pxmid[1]*f.rCenter+(f.y||0);f.outside&&(r.yLabelMin=x-d.height/2,r.yLabelMid=x,r.yLabelMax=x+d.height/2,r.labelExtraX=0,r.labelExtraY=0,v=!0),e.attr(\"transform\",\"translate(\"+y+\",\"+x+\")\"+(f.scale<1?\"scale(\"+f.scale+\")\":\"\")+(f.rotate?\"rotate(\"+f.rotate+\")\":\"\")+\"translate(\"+-(d.left+d.right)/2+\",\"+-(d.top+d.bottom)/2+\")\")})}function E(t,e,n,a){var i=a*(e[0]-t[0]),o=a*(e[1]-t[1]);return\"a\"+a*u.r+\",\"+a*u.r+\" 0 \"+r.largeArc+(n?\" 1 \":\" 0 \")+i+\",\"+o}});var x=n.select(this).selectAll(\"g.titletext\").data(h.title.text?[0]:[]);x.enter().append(\"g\").classed(\"titletext\",!0),x.exit().remove(),x.each(function(){var e,a=s.ensureSingle(n.select(this),\"text\",\"\",function(t){t.attr(\"data-notex\",1)}),i=h.title.text;h._meta&&(i=s.templateString(i,h._meta)),a.text(i).attr({class:\"titletext\",transform:\"\",\"text-anchor\":\"middle\"}).call(o.font,h.title.font).call(l.convertToTspans,t),e=\"middle center\"===h.title.position?function(t){var e=Math.sqrt(t.titleBox.width*t.titleBox.width+t.titleBox.height*t.titleBox.height);return{x:t.cx,y:t.cy,scale:t.trace.hole*t.r*2/e,tx:0,ty:-t.titleBox.height/2+t.trace.title.font.size}}(u):y(u,r._size),a.attr(\"transform\",\"translate(\"+e.x+\",\"+e.y+\")\"+(e.scale<1?\"scale(\"+e.scale+\")\":\"\")+\"translate(\"+e.tx+\",\"+e.ty+\")\")}),v&&function(t,e){var r,n,a,i,o,s,l,u,h,f,p,d,g;function v(t,e){return t.pxmid[1]-e.pxmid[1]}function m(t,e){return e.pxmid[1]-t.pxmid[1]}function y(t,r){r||(r={});var a,u,h,p,d,g,v=r.labelExtraY+(n?r.yLabelMax:r.yLabelMin),m=n?t.yLabelMin:t.yLabelMax,y=n?t.yLabelMax:t.yLabelMin,x=t.cyFinal+o(t.px0[1],t.px1[1]),b=v-m;if(b*l>0&&(t.labelExtraY=b),Array.isArray(e.pull))for(u=0;u<f.length;u++)(h=f[u])===t||(c.castOption(e.pull,t.pts)||0)>=(c.castOption(e.pull,h.pts)||0)||((t.pxmid[1]-h.pxmid[1])*l>0?(p=h.cyFinal+o(h.px0[1],h.px1[1]),(b=p-m-t.labelExtraY)*l>0&&(t.labelExtraY+=b)):(y+t.labelExtraY-x)*l>0&&(a=3*s*Math.abs(u-f.indexOf(t)),d=h.cxFinal+i(h.px0[0],h.px1[0]),(g=d+a-(t.cxFinal+t.pxmid[0])-t.labelExtraX)*s>0&&(t.labelExtraX+=g)))}for(n=0;n<2;n++)for(a=n?v:m,o=n?Math.max:Math.min,l=n?1:-1,r=0;r<2;r++){for(i=r?Math.max:Math.min,s=r?1:-1,(u=t[n][r]).sort(a),h=t[1-n][r],f=h.concat(u),d=[],p=0;p<u.length;p++)void 0!==u[p].yLabelMid&&d.push(u[p]);for(g=!1,p=0;n&&p<h.length;p++)if(void 0!==h[p].yLabelMid){g=h[p];break}for(p=0;p<d.length;p++){var x=p&&d[p-1];g&&!p&&(x=g),y(d[p],x)}}}(d,h),function(t,e){t.each(function(t){var r=n.select(this);if(t.labelExtraX||t.labelExtraY){var a=r.select(\"g.slicetext text\");a.attr(\"transform\",\"translate(\"+t.labelExtraX+\",\"+t.labelExtraY+\")\"+a.attr(\"transform\"));var o=t.cxFinal+t.pxmid[0],l=t.cyFinal+t.pxmid[1],c=\"M\"+o+\",\"+l,u=(t.yLabelMax-t.yLabelMin)*(t.pxmid[0]<0?-1:1)/4;if(t.labelExtraX){var h=t.labelExtraX*t.pxmid[1]/t.pxmid[0],f=t.yLabelMid+t.labelExtraY-(t.cyFinal+t.pxmid[1]);Math.abs(h)>Math.abs(f)?c+=\"l\"+f*t.pxmid[0]/t.pxmid[1]+\",\"+f+\"H\"+(o+t.labelExtraX+u):c+=\"l\"+t.labelExtraX+\",\"+h+\"v\"+(f-h)+\"h\"+u}else c+=\"V\"+(t.yLabelMid+t.labelExtraY)+\"h\"+u;s.ensureSingle(r,\"path\",\"textline\").call(i.stroke,e.outsidetextfont.color).attr({\"stroke-width\":Math.min(2,e.outsidetextfont.size/8),d:c,fill:\"none\"})}else r.select(\"path.textline\").remove()})}(a,h)})});setTimeout(function(){a.selectAll(\"tspan\").each(function(){var t=n.select(this);t.attr(\"dy\")&&t.attr(\"dy\",t.attr(\"dy\"))})},0)},formatSliceLabel:w,transformInsideText:g,determineInsideTextFont:p,positionTitleOutside:y,prerenderTitles:d,layoutAreas:_,attachFxHandlers:f}},{\"../../components/color\":594,\"../../components/drawing\":615,\"../../components/fx\":632,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"./event_data\":1089,\"./helpers\":1090,d3:164}],1095:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"./style_one\");e.exports=function(t){t._fullLayout._pielayer.selectAll(\".trace\").each(function(t){var e=t[0].trace,r=n.select(this);r.style({opacity:e.opacity}),r.selectAll(\"path.surface\").each(function(t){n.select(this).call(a,t,e)})})}},{\"./style_one\":1096,d3:164}],1096:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\"),a=t(\"./helpers\").castOption;e.exports=function(t,e,r){var i=r.marker.line,o=a(i.color,e.pts)||n.defaultLine,s=a(i.width,e.pts)||0;t.style(\"stroke-width\",s).call(n.fill,e.color).call(n.stroke,o)}},{\"../../components/color\":594,\"./helpers\":1090}],1097:[function(t,e,r){\"use strict\";var n=t(\"../scatter/attributes\");e.exports={x:n.x,y:n.y,xy:{valType:\"data_array\",editType:\"calc\"},indices:{valType:\"data_array\",editType:\"calc\"},xbounds:{valType:\"data_array\",editType:\"calc\"},ybounds:{valType:\"data_array\",editType:\"calc\"},text:n.text,marker:{color:{valType:\"color\",arrayOk:!1,editType:\"calc\"},opacity:{valType:\"number\",min:0,max:1,dflt:1,arrayOk:!1,editType:\"calc\"},blend:{valType:\"boolean\",dflt:null,editType:\"calc\"},sizemin:{valType:\"number\",min:.1,max:2,dflt:.5,editType:\"calc\"},sizemax:{valType:\"number\",min:.1,dflt:20,editType:\"calc\"},border:{color:{valType:\"color\",arrayOk:!1,editType:\"calc\"},arearatio:{valType:\"number\",min:0,max:1,dflt:0,editType:\"calc\"},editType:\"calc\"},editType:\"calc\"},transforms:void 0}},{\"../scatter/attributes\":1111}],1098:[function(t,e,r){\"use strict\";var n=t(\"gl-pointcloud2d\"),a=t(\"../../lib/str2rgbarray\"),i=t(\"../../plots/cartesian/autorange\").findExtremes,o=t(\"../scatter/get_trace_color\");function s(t,e){this.scene=t,this.uid=e,this.type=\"pointcloud\",this.pickXData=[],this.pickYData=[],this.xData=[],this.yData=[],this.textLabels=[],this.color=\"rgb(0, 0, 0)\",this.name=\"\",this.hoverinfo=\"all\",this.idToIndex=new Int32Array(0),this.bounds=[0,0,0,0],this.pointcloudOptions={positions:new Float32Array(0),idToIndex:this.idToIndex,sizemin:.5,sizemax:12,color:[0,0,0,1],areaRatio:1,borderColor:[0,0,0,1]},this.pointcloud=n(t.glplot,this.pointcloudOptions),this.pointcloud._trace=this}var l=s.prototype;l.handlePick=function(t){var e=this.idToIndex[t.pointId];return{trace:this,dataCoord:t.dataCoord,traceCoord:this.pickXYData?[this.pickXYData[2*e],this.pickXYData[2*e+1]]:[this.pickXData[e],this.pickYData[e]],textLabel:Array.isArray(this.textLabels)?this.textLabels[e]:this.textLabels,color:this.color,name:this.name,pointIndex:e,hoverinfo:this.hoverinfo}},l.update=function(t){this.index=t.index,this.textLabels=t.text,this.name=t.name,this.hoverinfo=t.hoverinfo,this.bounds=[1/0,1/0,-1/0,-1/0],this.updateFast(t),this.color=o(t,{})},l.updateFast=function(t){var e,r,n,o,s,l,c=this.xData=this.pickXData=t.x,u=this.yData=this.pickYData=t.y,h=this.pickXYData=t.xy,f=t.xbounds&&t.ybounds,p=t.indices,d=this.bounds;if(h){if(n=h,e=h.length>>>1,f)d[0]=t.xbounds[0],d[2]=t.xbounds[1],d[1]=t.ybounds[0],d[3]=t.ybounds[1];else for(l=0;l<e;l++)o=n[2*l],s=n[2*l+1],o<d[0]&&(d[0]=o),o>d[2]&&(d[2]=o),s<d[1]&&(d[1]=s),s>d[3]&&(d[3]=s);if(p)r=p;else for(r=new Int32Array(e),l=0;l<e;l++)r[l]=l}else for(e=c.length,n=new Float32Array(2*e),r=new Int32Array(e),l=0;l<e;l++)o=c[l],s=u[l],r[l]=l,n[2*l]=o,n[2*l+1]=s,o<d[0]&&(d[0]=o),o>d[2]&&(d[2]=o),s<d[1]&&(d[1]=s),s>d[3]&&(d[3]=s);this.idToIndex=r,this.pointcloudOptions.idToIndex=r,this.pointcloudOptions.positions=n;var g=a(t.marker.color),v=a(t.marker.border.color),m=t.opacity*t.marker.opacity;g[3]*=m,this.pointcloudOptions.color=g;var y=t.marker.blend;if(null===y){y=c.length<100||u.length<100}this.pointcloudOptions.blend=y,v[3]*=m,this.pointcloudOptions.borderColor=v;var x=t.marker.sizemin,b=Math.max(t.marker.sizemax,t.marker.sizemin);this.pointcloudOptions.sizeMin=x,this.pointcloudOptions.sizeMax=b,this.pointcloudOptions.areaRatio=t.marker.border.arearatio,this.pointcloud.update(this.pointcloudOptions);var _=this.scene.xaxis,w=this.scene.yaxis,k=b/2||.5;t._extremes[_._id]=i(_,[d[0],d[2]],{ppad:k}),t._extremes[w._id]=i(w,[d[1],d[3]],{ppad:k})},l.dispose=function(){this.pointcloud.dispose()},e.exports=function(t,e){var r=new s(t,e.uid);return r.update(e),r}},{\"../../lib/str2rgbarray\":742,\"../../plots/cartesian/autorange\":766,\"../scatter/get_trace_color\":1120,\"gl-pointcloud2d\":293}],1099:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./attributes\");e.exports=function(t,e,r){function i(r,i){return n.coerce(t,e,a,r,i)}i(\"x\"),i(\"y\"),i(\"xbounds\"),i(\"ybounds\"),t.xy&&t.xy instanceof Float32Array&&(e.xy=t.xy),t.indices&&t.indices instanceof Int32Array&&(e.indices=t.indices),i(\"text\"),i(\"marker.color\",r),i(\"marker.opacity\"),i(\"marker.blend\"),i(\"marker.sizemin\"),i(\"marker.sizemax\"),i(\"marker.border.color\",r),i(\"marker.border.arearatio\"),e._length=null}},{\"../../lib\":719,\"./attributes\":1097}],1100:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"../scatter3d/calc\"),plot:t(\"./convert\"),moduleType:\"trace\",name:\"pointcloud\",basePlotModule:t(\"../../plots/gl2d\"),categories:[\"gl\",\"gl2d\",\"showLegend\"],meta:{}}},{\"../../plots/gl2d\":805,\"../scatter3d/calc\":1138,\"./attributes\":1097,\"./convert\":1098,\"./defaults\":1099}],1101:[function(t,e,r){\"use strict\";var n=t(\"../../plots/font_attributes\"),a=t(\"../../plots/attributes\"),i=t(\"../../components/color/attributes\"),o=t(\"../../components/fx/attributes\"),s=t(\"../../plots/domain\").attributes,l=t(\"../../plots/template_attributes\").hovertemplateAttrs,c=t(\"../../components/colorscale/attributes\"),u=t(\"../../plot_api/plot_template\").templatedArray,h=t(\"../../lib/extend\").extendFlat,f=t(\"../../plot_api/edit_types\").overrideAll;t(\"../../constants/docs\").FORMAT_LINK;(e.exports=f({hoverinfo:h({},a.hoverinfo,{flags:[],arrayOk:!1}),hoverlabel:o.hoverlabel,domain:s({name:\"sankey\",trace:!0}),orientation:{valType:\"enumerated\",values:[\"v\",\"h\"],dflt:\"h\"},valueformat:{valType:\"string\",dflt:\".3s\"},valuesuffix:{valType:\"string\",dflt:\"\"},arrangement:{valType:\"enumerated\",values:[\"snap\",\"perpendicular\",\"freeform\",\"fixed\"],dflt:\"snap\"},textfont:n({}),node:{label:{valType:\"data_array\",dflt:[]},groups:{valType:\"info_array\",impliedEdits:{x:[],y:[]},dimensions:2,freeLength:!0,dflt:[],items:{valType:\"number\",editType:\"calc\"}},x:{valType:\"data_array\",dflt:[]},y:{valType:\"data_array\",dflt:[]},color:{valType:\"color\",arrayOk:!0},line:{color:{valType:\"color\",dflt:i.defaultLine,arrayOk:!0},width:{valType:\"number\",min:0,dflt:.5,arrayOk:!0}},pad:{valType:\"number\",arrayOk:!1,min:0,dflt:20},thickness:{valType:\"number\",arrayOk:!1,min:1,dflt:20},hoverinfo:{valType:\"enumerated\",values:[\"all\",\"none\",\"skip\"],dflt:\"all\"},hoverlabel:o.hoverlabel,hovertemplate:l({},{keys:[\"value\",\"label\"]})},link:{label:{valType:\"data_array\",dflt:[]},color:{valType:\"color\",arrayOk:!0},line:{color:{valType:\"color\",dflt:i.defaultLine,arrayOk:!0},width:{valType:\"number\",min:0,dflt:0,arrayOk:!0}},source:{valType:\"data_array\",dflt:[]},target:{valType:\"data_array\",dflt:[]},value:{valType:\"data_array\",dflt:[]},hoverinfo:{valType:\"enumerated\",values:[\"all\",\"none\",\"skip\"],dflt:\"all\"},hoverlabel:o.hoverlabel,hovertemplate:l({},{keys:[\"value\",\"label\"]}),colorscales:u(\"concentrationscales\",{editType:\"calc\",label:{valType:\"string\",editType:\"calc\",dflt:\"\"},cmax:{valType:\"number\",editType:\"calc\",dflt:1},cmin:{valType:\"number\",editType:\"calc\",dflt:0},colorscale:h(c().colorscale,{dflt:[[0,\"white\"],[1,\"black\"]]})})}},\"calc\",\"nested\")).transforms=void 0},{\"../../components/color/attributes\":593,\"../../components/colorscale/attributes\":601,\"../../components/fx/attributes\":624,\"../../constants/docs\":690,\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../../plot_api/plot_template\":757,\"../../plots/attributes\":764,\"../../plots/domain\":792,\"../../plots/font_attributes\":793,\"../../plots/template_attributes\":843}],1102:[function(t,e,r){\"use strict\";var n=t(\"../../plot_api/edit_types\").overrideAll,a=t(\"../../plots/get_data\").getModuleCalcData,i=t(\"./plot\"),o=t(\"../../components/fx/layout_attributes\"),s=t(\"../../lib/setcursor\"),l=t(\"../../components/dragelement\"),c=t(\"../../plots/cartesian/select\").prepSelect,u=t(\"../../lib\"),h=t(\"../../registry\");function f(t,e){var r=t._fullData[e],n=t._fullLayout,a=n.dragmode,i=\"pan\"===n.dragmode?\"move\":\"crosshair\",o=r._bgRect;if(\"pan\"!==a&&\"zoom\"!==a){s(o,i);var f={_id:\"x\",c2p:u.identity,_offset:r._sankey.translateX,_length:r._sankey.width},p={_id:\"y\",c2p:u.identity,_offset:r._sankey.translateY,_length:r._sankey.height},d={gd:t,element:o.node(),plotinfo:{id:e,xaxis:f,yaxis:p,fillRangeItems:u.noop},subplot:e,xaxes:[f],yaxes:[p],doneFnCompleted:function(r){var n,a=t._fullData[e],i=a.node.groups.slice(),o=[];function s(t){for(var e=a._sankey.graph.nodes,r=0;r<e.length;r++)if(e[r].pointNumber===t)return e[r]}for(var l=0;l<r.length;l++){var c=s(r[l].pointNumber);if(c)if(c.group){for(var u=0;u<c.childrenNodes.length;u++)o.push(c.childrenNodes[u].pointNumber);i[c.pointNumber-a.node._count]=!1}else o.push(c.pointNumber)}n=i.filter(Boolean).concat([o]),h.call(\"_guiRestyle\",t,{\"node.groups\":[n]},e)},prepFn:function(t,e,r){c(t,e,r,d,a)}};l.init(d)}}r.name=\"sankey\",r.baseLayoutAttrOverrides=n({hoverlabel:o.hoverlabel},\"plot\",\"nested\"),r.plot=function(t){var e=a(t.calcdata,\"sankey\")[0];i(t,e),r.updateFx(t)},r.clean=function(t,e,r,n){var a=n._has&&n._has(\"sankey\"),i=e._has&&e._has(\"sankey\");a&&!i&&(n._paperdiv.selectAll(\".sankey\").remove(),n._paperdiv.selectAll(\".bgsankey\").remove())},r.updateFx=function(t){for(var e=0;e<t._fullData.length;e++)f(t,e)}},{\"../../components/dragelement\":612,\"../../components/fx/layout_attributes\":633,\"../../lib\":719,\"../../lib/setcursor\":739,\"../../plot_api/edit_types\":750,\"../../plots/cartesian/select\":784,\"../../plots/get_data\":802,\"../../registry\":848,\"./plot\":1107}],1103:[function(t,e,r){\"use strict\";var n=t(\"strongly-connected-components\"),a=t(\"../../lib\"),i=t(\"../../lib/gup\").wrap,o=a.isArrayOrTypedArray,s=a.isIndex,l=t(\"../../components/colorscale\");function c(t){var e,r=t.node,i=t.link,c=[],u=o(i.color),h={},f={},p=i.colorscales.length;for(e=0;e<p;e++){var d=i.colorscales[e],g=l.extractScale(d,{cLetter:\"c\"}),v=l.makeColorScaleFunc(g);f[d.label]=v}var m=0;for(e=0;e<i.value.length;e++)i.source[e]>m&&(m=i.source[e]),i.target[e]>m&&(m=i.target[e]);var y,x=m+1;t.node._count=x;var b=t.node.groups,_={};for(e=0;e<b.length;e++){var w=b[e];for(y=0;y<w.length;y++){var k=w[y],T=x+e;_.hasOwnProperty(k)?a.warn(\"Node \"+k+\" is already part of a group.\"):_[k]=T}}var A={source:[],target:[]};for(e=0;e<i.value.length;e++){var M=i.value[e],S=i.source[e],E=i.target[e];if(M>0&&s(S,x)&&s(E,x)&&(!_.hasOwnProperty(S)||!_.hasOwnProperty(E)||_[S]!==_[E])){_.hasOwnProperty(E)&&(E=_[E]),_.hasOwnProperty(S)&&(S=_[S]),E=+E,h[S=+S]=h[E]=!0;var C=\"\";i.label&&i.label[e]&&(C=i.label[e]);var L=null;C&&f.hasOwnProperty(C)&&(L=f[C]),c.push({pointNumber:e,label:C,color:u?i.color[e]:i.color,concentrationscale:L,source:S,target:E,value:+M}),A.source.push(S),A.target.push(E)}}var P=x+b.length,O=o(r.color),I=[];for(e=0;e<P;e++)if(h[e]){var z=r.label[e];I.push({group:e>x-1,childrenNodes:[],pointNumber:e,label:z,color:O?r.color[e]:r.color})}var D=!1;return function(t,e,r){for(var i=a.init2dArray(t,0),o=0;o<Math.min(e.length,r.length);o++)if(a.isIndex(e[o],t)&&a.isIndex(r[o],t)){if(e[o]===r[o])return!0;i[e[o]].push(r[o])}return n(i).components.some(function(t){return t.length>1})}(P,A.source,A.target)&&(D=!0),{circular:D,links:c,nodes:I,groups:b,groupLookup:_}}e.exports=function(t,e){var r=c(e);return i({circular:r.circular,_nodes:r.nodes,_links:r.links,_groups:r.groups,_groupLookup:r.groupLookup})}},{\"../../components/colorscale\":606,\"../../lib\":719,\"../../lib/gup\":717,\"strongly-connected-components\":531}],1104:[function(t,e,r){\"use strict\";e.exports={nodeTextOffsetHorizontal:4,nodeTextOffsetVertical:3,nodePadAcross:10,sankeyIterations:50,forceIterations:5,forceTicksPerFrame:10,duration:500,ease:\"linear\",cn:{sankey:\"sankey\",sankeyLinks:\"sankey-links\",sankeyLink:\"sankey-link\",sankeyNodeSet:\"sankey-node-set\",sankeyNode:\"sankey-node\",nodeRect:\"node-rect\",nodeCapture:\"node-capture\",nodeCentered:\"node-entered\",nodeLabelGuide:\"node-label-guide\",nodeLabel:\"node-label\",nodeLabelTextPath:\"node-label-text-path\"}}},{}],1105:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./attributes\"),i=t(\"../../components/color\"),o=t(\"tinycolor2\"),s=t(\"../../plots/domain\").defaults,l=t(\"../../components/fx/hoverlabel_defaults\"),c=t(\"../../plot_api/plot_template\"),u=t(\"../../plots/array_container_defaults\");function h(t,e){function r(r,i){return n.coerce(t,e,a.link.colorscales,r,i)}r(\"label\"),r(\"cmin\"),r(\"cmax\"),r(\"colorscale\")}e.exports=function(t,e,r,f){function p(r,i){return n.coerce(t,e,a,r,i)}var d=n.extendDeep(f.hoverlabel,t.hoverlabel),g=t.node,v=c.newContainer(e,\"node\");function m(t,e){return n.coerce(g,v,a.node,t,e)}m(\"label\"),m(\"groups\"),m(\"x\"),m(\"y\"),m(\"pad\"),m(\"thickness\"),m(\"line.color\"),m(\"line.width\"),m(\"hoverinfo\",t.hoverinfo),l(g,v,m,d),m(\"hovertemplate\");var y=f.colorway;m(\"color\",v.label.map(function(t,e){return i.addOpacity(function(t){return y[t%y.length]}(e),.8)}));var x=t.link||{},b=c.newContainer(e,\"link\");function _(t,e){return n.coerce(x,b,a.link,t,e)}_(\"label\"),_(\"source\"),_(\"target\"),_(\"value\"),_(\"line.color\"),_(\"line.width\"),_(\"hoverinfo\",t.hoverinfo),l(x,b,_,d),_(\"hovertemplate\");var w,k=o(f.paper_bgcolor).getLuminance()<.333?\"rgba(255, 255, 255, 0.6)\":\"rgba(0, 0, 0, 0.2)\";_(\"color\",n.repeat(k,b.value.length)),u(x,b,{name:\"colorscales\",handleItemDefaults:h}),s(e,f,p),p(\"orientation\"),p(\"valueformat\"),p(\"valuesuffix\"),v.x.length&&v.y.length&&(w=\"freeform\"),p(\"arrangement\",w),n.coerceFont(p,\"textfont\",n.extendFlat({},f.font)),e._length=null}},{\"../../components/color\":594,\"../../components/fx/hoverlabel_defaults\":631,\"../../lib\":719,\"../../plot_api/plot_template\":757,\"../../plots/array_container_defaults\":763,\"../../plots/domain\":792,\"./attributes\":1101,tinycolor2:538}],1106:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),plot:t(\"./plot\"),moduleType:\"trace\",name:\"sankey\",basePlotModule:t(\"./base_plot\"),selectPoints:t(\"./select.js\"),categories:[\"noOpacity\"],meta:{}}},{\"./attributes\":1101,\"./base_plot\":1102,\"./calc\":1103,\"./defaults\":1105,\"./plot\":1107,\"./select.js\":1109}],1107:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"./render\"),i=t(\"../../components/fx\"),o=t(\"../../components/color\"),s=t(\"../../lib\"),l=t(\"./constants\").cn,c=s._;function u(t){return\"\"!==t}function h(t,e){return t.filter(function(t){return t.key===e.traceId})}function f(t,e){n.select(t).select(\"path\").style(\"fill-opacity\",e),n.select(t).select(\"rect\").style(\"fill-opacity\",e)}function p(t){n.select(t).select(\"text.name\").style(\"fill\",\"black\")}function d(t){return function(e){return-1!==t.node.sourceLinks.indexOf(e.link)||-1!==t.node.targetLinks.indexOf(e.link)}}function g(t){return function(e){return-1!==e.node.sourceLinks.indexOf(t.link)||-1!==e.node.targetLinks.indexOf(t.link)}}function v(t,e,r){e&&r&&h(r,e).selectAll(\".\"+l.sankeyLink).filter(d(e)).call(y.bind(0,e,r,!1))}function m(t,e,r){e&&r&&h(r,e).selectAll(\".\"+l.sankeyLink).filter(d(e)).call(x.bind(0,e,r,!1))}function y(t,e,r,n){var a=n.datum().link.label;n.style(\"fill-opacity\",function(t){if(!t.link.concentrationscale)return.4}),a&&h(e,t).selectAll(\".\"+l.sankeyLink).filter(function(t){return t.link.label===a}).style(\"fill-opacity\",function(t){if(!t.link.concentrationscale)return.4}),r&&h(e,t).selectAll(\".\"+l.sankeyNode).filter(g(t)).call(v)}function x(t,e,r,n){var a=n.datum().link.label;n.style(\"fill-opacity\",function(t){return t.tinyColorAlpha}),a&&h(e,t).selectAll(\".\"+l.sankeyLink).filter(function(t){return t.link.label===a}).style(\"fill-opacity\",function(t){return t.tinyColorAlpha}),r&&h(e,t).selectAll(l.sankeyNode).filter(g(t)).call(m)}function b(t,e){var r=t.hoverlabel||{},n=s.nestedProperty(r,e).get();return!Array.isArray(n)&&n}e.exports=function(t,e){for(var r=t._fullLayout,s=r._paper,h=r._size,d=0;d<t._fullData.length;d++)if(t._fullData[d].visible&&t._fullData[d].type===l.sankey&&!t._fullData[d]._viewInitial){var g=t._fullData[d].node;t._fullData[d]._viewInitial={node:{groups:g.groups.slice(),x:g.x.slice(),y:g.y.slice()}}}var _=c(t,\"source:\")+\" \",w=c(t,\"target:\")+\" \",k=c(t,\"concentration:\")+\" \",T=c(t,\"incoming flow count:\")+\" \",A=c(t,\"outgoing flow count:\")+\" \";a(t,s,e,{width:h.w,height:h.h,margin:{t:h.t,r:h.r,b:h.b,l:h.l}},{linkEvents:{hover:function(e,r,a){!1!==t._fullLayout.hovermode&&(n.select(e).call(y.bind(0,r,a,!0)),\"skip\"!==r.link.trace.link.hoverinfo&&(r.link.fullData=r.link.trace,t.emit(\"plotly_hover\",{event:n.event,points:[r.link]})))},follow:function(e,a){if(!1!==t._fullLayout.hovermode){var s=a.link.trace.link;if(\"none\"!==s.hoverinfo&&\"skip\"!==s.hoverinfo){for(var l=[],c=0,h=0;h<a.flow.links.length;h++){var d=a.flow.links[h];if(\"closest\"!==t._fullLayout.hovermode||a.link.pointNumber===d.pointNumber){a.link.pointNumber===d.pointNumber&&(c=h),d.fullData=d.trace,s=a.link.trace.link;var g=m(d),v={valueLabel:n.format(a.valueFormat)(d.value)+a.valueSuffix};l.push({x:g[0],y:g[1],name:v.valueLabel,text:[d.label||\"\",_+d.source.label,w+d.target.label,d.concentrationscale?k+n.format(\"%0.2f\")(d.flow.labelConcentration):\"\"].filter(u).join(\"<br>\"),color:b(s,\"bgcolor\")||o.addOpacity(d.color,1),borderColor:b(s,\"bordercolor\"),fontFamily:b(s,\"font.family\"),fontSize:b(s,\"font.size\"),fontColor:b(s,\"font.color\"),nameLength:b(s,\"namelength\"),textAlign:b(s,\"align\"),idealAlign:n.event.x<g[0]?\"right\":\"left\",hovertemplate:s.hovertemplate,hovertemplateLabels:v,eventData:[d]})}}i.loneHover(l,{container:r._hoverlayer.node(),outerContainer:r._paper.node(),gd:t,anchorIndex:c}).each(function(){a.link.concentrationscale||f(this,.65),p(this)})}}function m(t){var e,r;return t.circular?(e=(t.circularPathData.leftInnerExtent+t.circularPathData.rightInnerExtent)/2+a.parent.translateX,r=t.circularPathData.verticalFullExtent+a.parent.translateY):(e=(t.source.x1+t.target.x0)/2+a.parent.translateX,r=(t.y0+t.y1)/2+a.parent.translateY),[e,r]}},unhover:function(e,a,o){!1!==t._fullLayout.hovermode&&(n.select(e).call(x.bind(0,a,o,!0)),\"skip\"!==a.link.trace.link.hoverinfo&&(a.link.fullData=a.link.trace,t.emit(\"plotly_unhover\",{event:n.event,points:[a.link]})),i.loneUnhover(r._hoverlayer.node()))},select:function(e,r){var a=r.link;a.originalEvent=n.event,t._hoverdata=[a],i.click(t,{target:!0})}},nodeEvents:{hover:function(e,r,a){!1!==t._fullLayout.hovermode&&(n.select(e).call(v,r,a),\"skip\"!==r.node.trace.node.hoverinfo&&(r.node.fullData=r.node.trace,t.emit(\"plotly_hover\",{event:n.event,points:[r.node]})))},follow:function(e,a){if(!1!==t._fullLayout.hovermode){var o=a.node.trace.node;if(\"none\"!==o.hoverinfo&&\"skip\"!==o.hoverinfo){var s=n.select(e).select(\".\"+l.nodeRect),c=t._fullLayout._paperdiv.node().getBoundingClientRect(),h=s.node().getBoundingClientRect(),d=h.left-2-c.left,g=h.right+2-c.left,v=h.top+h.height/4-c.top,m={valueLabel:n.format(a.valueFormat)(a.node.value)+a.valueSuffix};a.node.fullData=a.node.trace;var y=i.loneHover({x0:d,x1:g,y:v,name:n.format(a.valueFormat)(a.node.value)+a.valueSuffix,text:[a.node.label,T+a.node.targetLinks.length,A+a.node.sourceLinks.length].filter(u).join(\"<br>\"),color:b(o,\"bgcolor\")||a.tinyColorHue,borderColor:b(o,\"bordercolor\"),fontFamily:b(o,\"font.family\"),fontSize:b(o,\"font.size\"),fontColor:b(o,\"font.color\"),nameLength:b(o,\"namelength\"),textAlign:b(o,\"align\"),idealAlign:\"left\",hovertemplate:o.hovertemplate,hovertemplateLabels:m,eventData:[a.node]},{container:r._hoverlayer.node(),outerContainer:r._paper.node(),gd:t});f(y,.85),p(y)}}},unhover:function(e,a,o){!1!==t._fullLayout.hovermode&&(n.select(e).call(m,a,o),\"skip\"!==a.node.trace.node.hoverinfo&&(a.node.fullData=a.node.trace,t.emit(\"plotly_unhover\",{event:n.event,points:[a.node]})),i.loneUnhover(r._hoverlayer.node()))},select:function(e,r,a){var o=r.node;o.originalEvent=n.event,t._hoverdata=[o],n.select(e).call(m,r,a),i.click(t,{target:!0})}}})}},{\"../../components/color\":594,\"../../components/fx\":632,\"../../lib\":719,\"./constants\":1104,\"./render\":1108,d3:164}],1108:[function(t,e,r){\"use strict\";var n=t(\"./constants\"),a=t(\"d3\"),i=t(\"tinycolor2\"),o=t(\"../../components/color\"),s=t(\"../../components/drawing\"),l=t(\"@plotly/d3-sankey\"),c=t(\"@plotly/d3-sankey-circular\"),u=t(\"d3-force\"),h=t(\"../../lib\"),f=t(\"../../lib/gup\"),p=f.keyFun,d=f.repeat,g=f.unwrap,v=t(\"d3-interpolate\").interpolateNumber,m=t(\"../../registry\");function y(){var t=.5;return function(e){if(e.link.circular)return r=e.link,n=r.width/2,a=r.circularPathData,\"top\"===r.circularLinkType?\"M \"+a.targetX+\" \"+(a.targetY+n)+\" L\"+a.rightInnerExtent+\" \"+(a.targetY+n)+\"A\"+(a.rightLargeArcRadius+n)+\" \"+(a.rightSmallArcRadius+n)+\" 0 0 1 \"+(a.rightFullExtent-n)+\" \"+(a.targetY-a.rightSmallArcRadius)+\"L\"+(a.rightFullExtent-n)+\" \"+a.verticalRightInnerExtent+\"A\"+(a.rightLargeArcRadius+n)+\" \"+(a.rightLargeArcRadius+n)+\" 0 0 1 \"+a.rightInnerExtent+\" \"+(a.verticalFullExtent-n)+\"L\"+a.leftInnerExtent+\" \"+(a.verticalFullExtent-n)+\"A\"+(a.leftLargeArcRadius+n)+\" \"+(a.leftLargeArcRadius+n)+\" 0 0 1 \"+(a.leftFullExtent+n)+\" \"+a.verticalLeftInnerExtent+\"L\"+(a.leftFullExtent+n)+\" \"+(a.sourceY-a.leftSmallArcRadius)+\"A\"+(a.leftLargeArcRadius+n)+\" \"+(a.leftSmallArcRadius+n)+\" 0 0 1 \"+a.leftInnerExtent+\" \"+(a.sourceY+n)+\"L\"+a.sourceX+\" \"+(a.sourceY+n)+\"L\"+a.sourceX+\" \"+(a.sourceY-n)+\"L\"+a.leftInnerExtent+\" \"+(a.sourceY-n)+\"A\"+(a.leftLargeArcRadius-n)+\" \"+(a.leftSmallArcRadius-n)+\" 0 0 0 \"+(a.leftFullExtent-n)+\" \"+(a.sourceY-a.leftSmallArcRadius)+\"L\"+(a.leftFullExtent-n)+\" \"+a.verticalLeftInnerExtent+\"A\"+(a.leftLargeArcRadius-n)+\" \"+(a.leftLargeArcRadius-n)+\" 0 0 0 \"+a.leftInnerExtent+\" \"+(a.verticalFullExtent+n)+\"L\"+a.rightInnerExtent+\" \"+(a.verticalFullExtent+n)+\"A\"+(a.rightLargeArcRadius-n)+\" \"+(a.rightLargeArcRadius-n)+\" 0 0 0 \"+(a.rightFullExtent+n)+\" \"+a.verticalRightInnerExtent+\"L\"+(a.rightFullExtent+n)+\" \"+(a.targetY-a.rightSmallArcRadius)+\"A\"+(a.rightLargeArcRadius-n)+\" \"+(a.rightSmallArcRadius-n)+\" 0 0 0 \"+a.rightInnerExtent+\" \"+(a.targetY-n)+\"L\"+a.targetX+\" \"+(a.targetY-n)+\"Z\":\"M \"+a.targetX+\" \"+(a.targetY-n)+\" L\"+a.rightInnerExtent+\" \"+(a.targetY-n)+\"A\"+(a.rightLargeArcRadius+n)+\" \"+(a.rightSmallArcRadius+n)+\" 0 0 0 \"+(a.rightFullExtent-n)+\" \"+(a.targetY+a.rightSmallArcRadius)+\"L\"+(a.rightFullExtent-n)+\" \"+a.verticalRightInnerExtent+\"A\"+(a.rightLargeArcRadius+n)+\" \"+(a.rightLargeArcRadius+n)+\" 0 0 0 \"+a.rightInnerExtent+\" \"+(a.verticalFullExtent+n)+\"L\"+a.leftInnerExtent+\" \"+(a.verticalFullExtent+n)+\"A\"+(a.leftLargeArcRadius+n)+\" \"+(a.leftLargeArcRadius+n)+\" 0 0 0 \"+(a.leftFullExtent+n)+\" \"+a.verticalLeftInnerExtent+\"L\"+(a.leftFullExtent+n)+\" \"+(a.sourceY+a.leftSmallArcRadius)+\"A\"+(a.leftLargeArcRadius+n)+\" \"+(a.leftSmallArcRadius+n)+\" 0 0 0 \"+a.leftInnerExtent+\" \"+(a.sourceY-n)+\"L\"+a.sourceX+\" \"+(a.sourceY-n)+\"L\"+a.sourceX+\" \"+(a.sourceY+n)+\"L\"+a.leftInnerExtent+\" \"+(a.sourceY+n)+\"A\"+(a.leftLargeArcRadius-n)+\" \"+(a.leftSmallArcRadius-n)+\" 0 0 1 \"+(a.leftFullExtent-n)+\" \"+(a.sourceY+a.leftSmallArcRadius)+\"L\"+(a.leftFullExtent-n)+\" \"+a.verticalLeftInnerExtent+\"A\"+(a.leftLargeArcRadius-n)+\" \"+(a.leftLargeArcRadius-n)+\" 0 0 1 \"+a.leftInnerExtent+\" \"+(a.verticalFullExtent-n)+\"L\"+a.rightInnerExtent+\" \"+(a.verticalFullExtent-n)+\"A\"+(a.rightLargeArcRadius-n)+\" \"+(a.rightLargeArcRadius-n)+\" 0 0 1 \"+(a.rightFullExtent+n)+\" \"+a.verticalRightInnerExtent+\"L\"+(a.rightFullExtent+n)+\" \"+(a.targetY+a.rightSmallArcRadius)+\"A\"+(a.rightLargeArcRadius-n)+\" \"+(a.rightSmallArcRadius-n)+\" 0 0 1 \"+a.rightInnerExtent+\" \"+(a.targetY+n)+\"L\"+a.targetX+\" \"+(a.targetY+n)+\"Z\";var r,n,a,i=e.link.source.x1,o=e.link.target.x0,s=v(i,o),l=s(t),c=s(1-t),u=e.link.y0-e.link.width/2,h=e.link.y0+e.link.width/2,f=e.link.y1-e.link.width/2,p=e.link.y1+e.link.width/2;return\"M\"+i+\",\"+u+\"C\"+l+\",\"+u+\" \"+c+\",\"+f+\" \"+o+\",\"+f+\"L\"+o+\",\"+p+\"C\"+c+\",\"+p+\" \"+l+\",\"+h+\" \"+i+\",\"+h+\"Z\"}}function x(t){t.attr(\"transform\",function(t){return\"translate(\"+t.node.x0.toFixed(3)+\", \"+t.node.y0.toFixed(3)+\")\"})}function b(t){t.call(x)}function _(t,e){t.call(b),e.attr(\"d\",y())}function w(t){t.attr(\"width\",function(t){return t.node.x1-t.node.x0}).attr(\"height\",function(t){return t.visibleHeight})}function k(t){return t.link.width>1||t.linkLineWidth>0}function T(t){return\"translate(\"+t.translateX+\",\"+t.translateY+\")\"+(t.horizontal?\"matrix(1 0 0 1 0 0)\":\"matrix(0 1 1 0 0 0)\")}function A(t){return\"translate(\"+(t.horizontal?0:t.labelY)+\" \"+(t.horizontal?t.labelY:0)+\")\"}function M(t){return a.svg.line()([[t.horizontal?t.left?-t.sizeAcross:t.visibleWidth+n.nodeTextOffsetHorizontal:n.nodeTextOffsetHorizontal,0],[t.horizontal?t.left?-n.nodeTextOffsetHorizontal:t.sizeAcross:t.visibleHeight-n.nodeTextOffsetHorizontal,0]])}function S(t){return t.horizontal?\"matrix(1 0 0 1 0 0)\":\"matrix(0 1 1 0 0 0)\"}function E(t){return t.horizontal?\"scale(1 1)\":\"scale(-1 1)\"}function C(t){return t.darkBackground&&!t.horizontal?\"rgb(255,255,255)\":\"rgb(0,0,0)\"}function L(t){return t.horizontal&&t.left?\"100%\":\"0%\"}function P(t,e,r){t.on(\".basic\",null).on(\"mouseover.basic\",function(t){t.interactionState.dragInProgress||t.partOfGroup||(r.hover(this,t,e),t.interactionState.hovered=[this,t])}).on(\"mousemove.basic\",function(t){t.interactionState.dragInProgress||t.partOfGroup||(r.follow(this,t),t.interactionState.hovered=[this,t])}).on(\"mouseout.basic\",function(t){t.interactionState.dragInProgress||t.partOfGroup||(r.unhover(this,t,e),t.interactionState.hovered=!1)}).on(\"click.basic\",function(t){t.interactionState.hovered&&(r.unhover(this,t,e),t.interactionState.hovered=!1),t.interactionState.dragInProgress||t.partOfGroup||r.select(this,t,e)})}function O(t,e,r,i){var o=a.behavior.drag().origin(function(t){return{x:t.node.x0+t.visibleWidth/2,y:t.node.y0+t.visibleHeight/2}}).on(\"dragstart\",function(a){if(\"fixed\"!==a.arrangement&&(h.ensureSingle(i._fullLayout._infolayer,\"g\",\"dragcover\",function(t){i._fullLayout._dragCover=t}),h.raiseToTop(this),a.interactionState.dragInProgress=a.node,z(a.node),a.interactionState.hovered&&(r.nodeEvents.unhover.apply(0,a.interactionState.hovered),a.interactionState.hovered=!1),\"snap\"===a.arrangement)){var o=a.traceId+\"|\"+a.key;a.forceLayouts[o]?a.forceLayouts[o].alpha(1):function(t,e,r,a){!function(t){for(var e=0;e<t.length;e++)t[e].y=(t[e].y0+t[e].y1)/2,t[e].x=(t[e].x0+t[e].x1)/2}(r.graph.nodes);var i=r.graph.nodes.filter(function(t){return t.originalX===r.node.originalX}).filter(function(t){return!t.partOfGroup});r.forceLayouts[e]=u.forceSimulation(i).alphaDecay(0).force(\"collide\",u.forceCollide().radius(function(t){return t.dy/2+r.nodePad/2}).strength(1).iterations(n.forceIterations)).force(\"constrain\",function(t,e,r,a){return function(){for(var t=0,i=0;i<r.length;i++){var o=r[i];o===a.interactionState.dragInProgress?(o.x=o.lastDraggedX,o.y=o.lastDraggedY):(o.vx=(o.originalX-o.x)/n.forceTicksPerFrame,o.y=Math.min(a.size-o.dy/2,Math.max(o.dy/2,o.y))),t=Math.max(t,Math.abs(o.vx),Math.abs(o.vy))}!a.interactionState.dragInProgress&&t<.1&&a.forceLayouts[e].alpha()>0&&a.forceLayouts[e].alpha(0)}}(0,e,i,r)).stop()}(0,o,a),function(t,e,r,a,i){window.requestAnimationFrame(function o(){var s;for(s=0;s<n.forceTicksPerFrame;s++)r.forceLayouts[a].tick();var l=r.graph.nodes;if(function(t){for(var e=0;e<t.length;e++)t[e].y0=t[e].y-t[e].dy/2,t[e].y1=t[e].y0+t[e].dy,t[e].x0=t[e].x-t[e].dx/2,t[e].x1=t[e].x0+t[e].dx}(l),r.sankey.update(r.graph),_(t.filter(D(r)),e),r.forceLayouts[a].alpha()>0)window.requestAnimationFrame(o);else{var c=r.node.originalX;r.node.x0=c-r.visibleWidth/2,r.node.x1=c+r.visibleWidth/2,I(r,i)}})}(t,e,a,o,i)}}).on(\"drag\",function(r){if(\"fixed\"!==r.arrangement){var n=a.event.x,i=a.event.y;\"snap\"===r.arrangement?(r.node.x0=n-r.visibleWidth/2,r.node.x1=n+r.visibleWidth/2,r.node.y0=i-r.visibleHeight/2,r.node.y1=i+r.visibleHeight/2):(\"freeform\"===r.arrangement&&(r.node.x0=n-r.visibleWidth/2,r.node.x1=n+r.visibleWidth/2),i=Math.max(0,Math.min(r.size-r.visibleHeight/2,i)),r.node.y0=i-r.visibleHeight/2,r.node.y1=i+r.visibleHeight/2),z(r.node),\"snap\"!==r.arrangement&&(r.sankey.update(r.graph),_(t.filter(D(r)),e))}}).on(\"dragend\",function(t){if(\"fixed\"!==t.arrangement){t.interactionState.dragInProgress=!1;for(var e=0;e<t.node.childrenNodes.length;e++)t.node.childrenNodes[e].x=t.node.x,t.node.childrenNodes[e].y=t.node.y;\"snap\"!==t.arrangement&&I(t,i)}});t.on(\".drag\",null).call(o)}function I(t,e){for(var r=[],n=[],a=0;a<t.graph.nodes.length;a++){var i=(t.graph.nodes[a].x0+t.graph.nodes[a].x1)/2,o=(t.graph.nodes[a].y0+t.graph.nodes[a].y1)/2;r.push(i/t.figure.width),n.push(o/t.figure.height)}m.call(\"_guiRestyle\",e,{\"node.x\":[r],\"node.y\":[n]},t.trace.index).then(function(){e._fullLayout._dragCover&&e._fullLayout._dragCover.remove()})}function z(t){t.lastDraggedX=t.x0+t.dx/2,t.lastDraggedY=t.y0+t.dy/2}function D(t){return function(e){return e.node.originalX===t.node.originalX}}e.exports=function(t,e,r,u,f){var v=!1;h.ensureSingle(t._fullLayout._infolayer,\"g\",\"first-render\",function(){v=!0});var m=t._fullLayout._dragCover,b=r.filter(function(t){return g(t).trace.visible}).map(function(t,e,r){var a,o=g(e),s=o.trace,u=s.domain,f=\"h\"===s.orientation,p=s.node.pad,d=s.node.thickness,v=t.width*(u.x[1]-u.x[0]),m=t.height*(u.y[1]-u.y[0]),y=o._nodes,x=o._links,b=o.circular;(a=b?c.sankeyCircular().circularLinkGap(0):l.sankey()).iterations(n.sankeyIterations).size(f?[v,m]:[m,v]).nodeWidth(d).nodePadding(p).nodeId(function(t){return t.pointNumber}).nodes(y).links(x);var _,w,k,T=a();for(var A in a.nodePadding()<p&&h.warn(\"node.pad was reduced to \",a.nodePadding(),\" to fit within the figure.\"),o._groupLookup){var M,S=parseInt(o._groupLookup[A]);for(_=0;_<T.nodes.length;_++)if(T.nodes[_].pointNumber===S){M=T.nodes[_];break}if(M){var E={pointNumber:parseInt(A),x0:M.x0,x1:M.x1,y0:M.y0,y1:M.y1,partOfGroup:!0,sourceLinks:[],targetLinks:[]};T.nodes.unshift(E),M.childrenNodes.unshift(E)}}if(function(){for(_=0;_<T.nodes.length;_++){var t,e,r=T.nodes[_],n={};for(w=0;w<r.targetLinks.length;w++)t=(e=r.targetLinks[w]).source.pointNumber+\":\"+e.target.pointNumber,n.hasOwnProperty(t)||(n[t]=[]),n[t].push(e);var a=Object.keys(n);for(w=0;w<a.length;w++){var o=n[t=a[w]],s=0,l={};for(k=0;k<o.length;k++)l[(e=o[k]).label]||(l[e.label]=0),l[e.label]+=e.value,s+=e.value;for(k=0;k<o.length;k++)(e=o[k]).flow={value:s,labelConcentration:l[e.label]/s,concentration:e.value/s,links:o},e.concentrationscale&&(e.color=i(e.concentrationscale(e.flow.labelConcentration)))}var c=0;for(w=0;w<r.sourceLinks.length;w++)c+=r.sourceLinks[w].value;for(w=0;w<r.sourceLinks.length;w++)(e=r.sourceLinks[w]).concentrationOut=e.value/c;var u=0;for(w=0;w<r.targetLinks.length;w++)u+=r.targetLinks[w].value;for(w=0;w<r.targetLinks.length;w++)(e=r.targetLinks[w]).concenrationIn=e.value/u}}(),s.node.x.length&&s.node.y.length){for(_=0;_<Math.min(s.node.x.length,s.node.y.length,T.nodes.length);_++)if(s.node.x[_]&&s.node.y[_]){var C=[s.node.x[_]*v,s.node.y[_]*m];T.nodes[_].x0=C[0]-d/2,T.nodes[_].x1=C[0]+d/2;var L=T.nodes[_].y1-T.nodes[_].y0;T.nodes[_].y0=C[1]-L/2,T.nodes[_].y1=C[1]+L/2}\"snap\"===s.arrangement&&function(t){t.forEach(function(t){var e,r,n,a=0,i=t.length;for(t.sort(function(t,e){return t.y0-e.y0}),n=0;n<i;++n)(e=t[n]).y0>=a||(r=a-e.y0)>1e-6&&(e.y0+=r,e.y1+=r),a=e.y1+p})}(function(t){var e,r,n=t.map(function(t,e){return{x0:t.x0,index:e}}).sort(function(t,e){return t.x0-e.x0}),a=[],i=-1,o=-1/0;for(_=0;_<n.length;_++){var s=t[n[_].index];s.x0>o+d&&(i+=1,e=s.x0),o=s.x0,a[i]||(a[i]=[]),a[i].push(s),r=e-s.x0,s.x0+=r,s.x1+=r}return a}(y=T.nodes)),a.update(T)}return{circular:b,key:r,trace:s,guid:h.randstr(),horizontal:f,width:v,height:m,nodePad:s.node.pad,nodeLineColor:s.node.line.color,nodeLineWidth:s.node.line.width,linkLineColor:s.link.line.color,linkLineWidth:s.link.line.width,valueFormat:s.valueformat,valueSuffix:s.valuesuffix,textFont:s.textfont,translateX:u.x[0]*t.width+t.margin.l,translateY:t.height-u.y[1]*t.height+t.margin.t,dragParallel:f?m:v,dragPerpendicular:f?v:m,arrangement:s.arrangement,sankey:a,graph:T,forceLayouts:{},interactionState:{dragInProgress:!1,hovered:!1}}}.bind(null,u)),_=e.selectAll(\".\"+n.cn.sankey).data(b,p);_.exit().remove(),_.enter().append(\"g\").classed(n.cn.sankey,!0).style(\"box-sizing\",\"content-box\").style(\"position\",\"absolute\").style(\"left\",0).style(\"shape-rendering\",\"geometricPrecision\").style(\"pointer-events\",\"auto\").attr(\"transform\",T),_.each(function(e,r){t._fullData[r]._sankey=e;var n=\"bgsankey-\"+e.trace.uid+\"-\"+r;h.ensureSingle(t._fullLayout._draggers,\"rect\",n),t._fullData[r]._bgRect=a.select(\".\"+n),t._fullData[r]._bgRect.style(\"pointer-events\",\"all\").attr(\"width\",e.width).attr(\"height\",e.height).attr(\"x\",e.translateX).attr(\"y\",e.translateY).classed(\"bgsankey\",!0).style({fill:\"transparent\",\"stroke-width\":0})}),_.transition().ease(n.ease).duration(n.duration).attr(\"transform\",T);var I=_.selectAll(\".\"+n.cn.sankeyLinks).data(d,p);I.enter().append(\"g\").classed(n.cn.sankeyLinks,!0).style(\"fill\",\"none\");var z=I.selectAll(\".\"+n.cn.sankeyLink).data(function(t){return t.graph.links.filter(function(t){return t.value}).map(function(t,e,r){var n=i(e.color),a=e.source.label+\"|\"+e.target.label+\"__\"+r;return e.trace=t.trace,e.curveNumber=t.trace.index,{circular:t.circular,key:a,traceId:t.key,pointNumber:e.pointNumber,link:e,tinyColorHue:o.tinyRGB(n),tinyColorAlpha:n.getAlpha(),linkPath:y,linkLineColor:t.linkLineColor,linkLineWidth:t.linkLineWidth,valueFormat:t.valueFormat,valueSuffix:t.valueSuffix,sankey:t.sankey,parent:t,interactionState:t.interactionState,flow:e.flow}}.bind(null,t))},p);z.enter().append(\"path\").classed(n.cn.sankeyLink,!0).call(P,_,f.linkEvents),z.style(\"stroke\",function(t){return k(t)?o.tinyRGB(i(t.linkLineColor)):t.tinyColorHue}).style(\"stroke-opacity\",function(t){return k(t)?o.opacity(t.linkLineColor):t.tinyColorAlpha}).style(\"fill\",function(t){return t.tinyColorHue}).style(\"fill-opacity\",function(t){return t.tinyColorAlpha}).style(\"stroke-width\",function(t){return k(t)?t.linkLineWidth:1}).attr(\"d\",y()),z.style(\"opacity\",function(){return t._context.staticPlot||v||m?1:0}).transition().ease(n.ease).duration(n.duration).style(\"opacity\",1),z.exit().transition().ease(n.ease).duration(n.duration).style(\"opacity\",0).remove();var D=_.selectAll(\".\"+n.cn.sankeyNodeSet).data(d,p);D.enter().append(\"g\").classed(n.cn.sankeyNodeSet,!0),D.style(\"cursor\",function(t){switch(t.arrangement){case\"fixed\":return\"default\";case\"perpendicular\":return\"ns-resize\";default:return\"move\"}});var R=D.selectAll(\".\"+n.cn.sankeyNode).data(function(t){var e=t.graph.nodes;return function(t){var e,r=[];for(e=0;e<t.length;e++)t[e].originalX=(t[e].x0+t[e].x1)/2,t[e].originalY=(t[e].y0+t[e].y1)/2,-1===r.indexOf(t[e].originalX)&&r.push(t[e].originalX);for(r.sort(function(t,e){return t-e}),e=0;e<t.length;e++)t[e].originalLayerIndex=r.indexOf(t[e].originalX),t[e].originalLayer=t[e].originalLayerIndex/(r.length-1)}(e),e.map(function(t,e){var r=i(e.color),a=n.nodePadAcross,s=t.nodePad/2;e.dx=e.x1-e.x0,e.dy=e.y1-e.y0;var l=e.dx,c=Math.max(.5,e.dy),u=\"node_\"+e.pointNumber;return e.group&&(u=h.randstr()),e.trace=t.trace,e.curveNumber=t.trace.index,{index:e.pointNumber,key:u,partOfGroup:e.partOfGroup||!1,group:e.group,traceId:t.key,trace:t.trace,node:e,nodePad:t.nodePad,nodeLineColor:t.nodeLineColor,nodeLineWidth:t.nodeLineWidth,textFont:t.textFont,size:t.horizontal?t.height:t.width,visibleWidth:Math.ceil(l),visibleHeight:c,zoneX:-a,zoneY:-s,zoneWidth:l+2*a,zoneHeight:c+2*s,labelY:t.horizontal?e.dy/2+1:e.dx/2+1,left:1===e.originalLayer,sizeAcross:t.width,forceLayouts:t.forceLayouts,horizontal:t.horizontal,darkBackground:r.getBrightness()<=128,tinyColorHue:o.tinyRGB(r),tinyColorAlpha:r.getAlpha(),valueFormat:t.valueFormat,valueSuffix:t.valueSuffix,sankey:t.sankey,graph:t.graph,arrangement:t.arrangement,uniqueNodeLabelPathId:[t.guid,t.key,u].join(\"_\"),interactionState:t.interactionState,figure:t}}.bind(null,t))},p);R.enter().append(\"g\").classed(n.cn.sankeyNode,!0).call(x).style(\"opacity\",function(e){return!t._context.staticPlot&&!v||e.partOfGroup?0:1}),R.call(P,_,f.nodeEvents).call(O,z,f,t),R.transition().ease(n.ease).duration(n.duration).call(x).style(\"opacity\",function(t){return t.partOfGroup?0:1}),R.exit().transition().ease(n.ease).duration(n.duration).style(\"opacity\",0).remove();var F=R.selectAll(\".\"+n.cn.nodeRect).data(d);F.enter().append(\"rect\").classed(n.cn.nodeRect,!0).call(w),F.style(\"stroke-width\",function(t){return t.nodeLineWidth}).style(\"stroke\",function(t){return o.tinyRGB(i(t.nodeLineColor))}).style(\"stroke-opacity\",function(t){return o.opacity(t.nodeLineColor)}).style(\"fill\",function(t){return t.tinyColorHue}).style(\"fill-opacity\",function(t){return t.tinyColorAlpha}),F.transition().ease(n.ease).duration(n.duration).call(w);var B=R.selectAll(\".\"+n.cn.nodeCapture).data(d);B.enter().append(\"rect\").classed(n.cn.nodeCapture,!0).style(\"fill-opacity\",0),B.attr(\"x\",function(t){return t.zoneX}).attr(\"y\",function(t){return t.zoneY}).attr(\"width\",function(t){return t.zoneWidth}).attr(\"height\",function(t){return t.zoneHeight});var N=R.selectAll(\".\"+n.cn.nodeCentered).data(d);N.enter().append(\"g\").classed(n.cn.nodeCentered,!0).attr(\"transform\",A),N.transition().ease(n.ease).duration(n.duration).attr(\"transform\",A);var j=N.selectAll(\".\"+n.cn.nodeLabelGuide).data(d);j.enter().append(\"path\").classed(n.cn.nodeLabelGuide,!0).attr(\"id\",function(t){return t.uniqueNodeLabelPathId}).attr(\"d\",M).attr(\"transform\",S),j.transition().ease(n.ease).duration(n.duration).attr(\"d\",M).attr(\"transform\",S);var V=N.selectAll(\".\"+n.cn.nodeLabel).data(d);V.enter().append(\"text\").classed(n.cn.nodeLabel,!0).attr(\"transform\",E).style(\"user-select\",\"none\").style(\"cursor\",\"default\").style(\"fill\",\"black\"),V.style(\"text-shadow\",function(t){return t.horizontal?\"-1px 1px 1px #fff, 1px 1px 1px #fff, 1px -1px 1px #fff, -1px -1px 1px #fff\":\"none\"}).each(function(t){s.font(V,t.textFont)}),V.transition().ease(n.ease).duration(n.duration).attr(\"transform\",E);var U=V.selectAll(\".\"+n.cn.nodeLabelTextPath).data(d);U.enter().append(\"textPath\").classed(n.cn.nodeLabelTextPath,!0).attr(\"alignment-baseline\",\"middle\").attr(\"xlink:href\",function(t){return\"#\"+t.uniqueNodeLabelPathId}).attr(\"startOffset\",L).style(\"fill\",C),U.text(function(t){return t.horizontal||t.node.dy>5?t.node.label:\"\"}).attr(\"text-anchor\",function(t){return t.horizontal&&t.left?\"end\":\"start\"}),U.transition().ease(n.ease).duration(n.duration).attr(\"startOffset\",L).style(\"fill\",C)}},{\"../../components/color\":594,\"../../components/drawing\":615,\"../../lib\":719,\"../../lib/gup\":717,\"../../registry\":848,\"./constants\":1104,\"@plotly/d3-sankey\":55,\"@plotly/d3-sankey-circular\":54,d3:164,\"d3-force\":157,\"d3-interpolate\":159,tinycolor2:538}],1109:[function(t,e,r){\"use strict\";e.exports=function(t,e){for(var r=[],n=t.cd[0].trace,a=n._sankey.graph.nodes,i=0;i<a.length;i++){var o=a[i];if(!o.partOfGroup){var s=[(o.x0+o.x1)/2,(o.y0+o.y1)/2];\"v\"===n.orientation&&s.reverse(),e&&e.contains(s,!1,i,t)&&r.push({pointNumber:o.pointNumber})}}return r}},{}],1110:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e){for(var r=0;r<t.length;r++)t[r].i=r;n.mergeArray(e.text,t,\"tx\"),n.mergeArray(e.texttemplate,t,\"txt\"),n.mergeArray(e.hovertext,t,\"htx\"),n.mergeArray(e.customdata,t,\"data\"),n.mergeArray(e.textposition,t,\"tp\"),e.textfont&&(n.mergeArrayCastPositive(e.textfont.size,t,\"ts\"),n.mergeArray(e.textfont.color,t,\"tc\"),n.mergeArray(e.textfont.family,t,\"tf\"));var a=e.marker;if(a){n.mergeArrayCastPositive(a.size,t,\"ms\"),n.mergeArrayCastPositive(a.opacity,t,\"mo\"),n.mergeArray(a.symbol,t,\"mx\"),n.mergeArray(a.color,t,\"mc\");var i=a.line;a.line&&(n.mergeArray(i.color,t,\"mlc\"),n.mergeArrayCastPositive(i.width,t,\"mlw\"));var o=a.gradient;o&&\"none\"!==o.type&&(n.mergeArray(o.type,t,\"mgt\"),n.mergeArray(o.color,t,\"mgc\"))}}},{\"../../lib\":719}],1111:[function(t,e,r){\"use strict\";var n=t(\"../../plots/template_attributes\").texttemplateAttrs,a=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"../../components/colorscale/attributes\"),o=t(\"../../plots/font_attributes\"),s=t(\"../../components/drawing/attributes\").dash,l=t(\"../../components/drawing\"),c=t(\"./constants\"),u=t(\"../../lib/extend\").extendFlat;e.exports={x:{valType:\"data_array\",editType:\"calc+clearAxisTypes\",anim:!0},x0:{valType:\"any\",dflt:0,editType:\"calc+clearAxisTypes\",anim:!0},dx:{valType:\"number\",dflt:1,editType:\"calc\",anim:!0},y:{valType:\"data_array\",editType:\"calc+clearAxisTypes\",anim:!0},y0:{valType:\"any\",dflt:0,editType:\"calc+clearAxisTypes\",anim:!0},dy:{valType:\"number\",dflt:1,editType:\"calc\",anim:!0},stackgroup:{valType:\"string\",dflt:\"\",editType:\"calc\"},orientation:{valType:\"enumerated\",values:[\"v\",\"h\"],editType:\"calc\"},groupnorm:{valType:\"enumerated\",values:[\"\",\"fraction\",\"percent\"],dflt:\"\",editType:\"calc\"},stackgaps:{valType:\"enumerated\",values:[\"infer zero\",\"interpolate\"],dflt:\"infer zero\",editType:\"calc\"},text:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"calc\"},texttemplate:n({},{}),hovertext:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"style\"},mode:{valType:\"flaglist\",flags:[\"lines\",\"markers\",\"text\"],extras:[\"none\"],editType:\"calc\"},hoveron:{valType:\"flaglist\",flags:[\"points\",\"fills\"],editType:\"style\"},hovertemplate:a({},{keys:c.eventDataKeys}),line:{color:{valType:\"color\",editType:\"style\",anim:!0},width:{valType:\"number\",min:0,dflt:2,editType:\"style\",anim:!0},shape:{valType:\"enumerated\",values:[\"linear\",\"spline\",\"hv\",\"vh\",\"hvh\",\"vhv\"],dflt:\"linear\",editType:\"plot\"},smoothing:{valType:\"number\",min:0,max:1.3,dflt:1,editType:\"plot\"},dash:u({},s,{editType:\"style\"}),simplify:{valType:\"boolean\",dflt:!0,editType:\"plot\"},editType:\"plot\"},connectgaps:{valType:\"boolean\",dflt:!1,editType:\"calc\"},cliponaxis:{valType:\"boolean\",dflt:!0,editType:\"plot\"},fill:{valType:\"enumerated\",values:[\"none\",\"tozeroy\",\"tozerox\",\"tonexty\",\"tonextx\",\"toself\",\"tonext\"],editType:\"calc\"},fillcolor:{valType:\"color\",editType:\"style\",anim:!0},marker:u({symbol:{valType:\"enumerated\",values:l.symbolList,dflt:\"circle\",arrayOk:!0,editType:\"style\"},opacity:{valType:\"number\",min:0,max:1,arrayOk:!0,editType:\"style\",anim:!0},size:{valType:\"number\",min:0,dflt:6,arrayOk:!0,editType:\"calc\",anim:!0},maxdisplayed:{valType:\"number\",min:0,dflt:0,editType:\"plot\"},sizeref:{valType:\"number\",dflt:1,editType:\"calc\"},sizemin:{valType:\"number\",min:0,dflt:0,editType:\"calc\"},sizemode:{valType:\"enumerated\",values:[\"diameter\",\"area\"],dflt:\"diameter\",editType:\"calc\"},line:u({width:{valType:\"number\",min:0,arrayOk:!0,editType:\"style\",anim:!0},editType:\"calc\"},i(\"marker.line\",{anim:!0})),gradient:{type:{valType:\"enumerated\",values:[\"radial\",\"horizontal\",\"vertical\",\"none\"],arrayOk:!0,dflt:\"none\",editType:\"calc\"},color:{valType:\"color\",arrayOk:!0,editType:\"calc\"},editType:\"calc\"},editType:\"calc\"},i(\"marker\",{anim:!0})),selected:{marker:{opacity:{valType:\"number\",min:0,max:1,editType:\"style\"},color:{valType:\"color\",editType:\"style\"},size:{valType:\"number\",min:0,editType:\"style\"},editType:\"style\"},textfont:{color:{valType:\"color\",editType:\"style\"},editType:\"style\"},editType:\"style\"},unselected:{marker:{opacity:{valType:\"number\",min:0,max:1,editType:\"style\"},color:{valType:\"color\",editType:\"style\"},size:{valType:\"number\",min:0,editType:\"style\"},editType:\"style\"},textfont:{color:{valType:\"color\",editType:\"style\"},editType:\"style\"},editType:\"style\"},textposition:{valType:\"enumerated\",values:[\"top left\",\"top center\",\"top right\",\"middle left\",\"middle center\",\"middle right\",\"bottom left\",\"bottom center\",\"bottom right\"],dflt:\"middle center\",arrayOk:!0,editType:\"calc\"},textfont:o({editType:\"calc\",colorEditType:\"style\",arrayOk:!0}),r:{valType:\"data_array\",editType:\"calc\"},t:{valType:\"data_array\",editType:\"calc\"}}},{\"../../components/colorscale/attributes\":601,\"../../components/drawing\":615,\"../../components/drawing/attributes\":614,\"../../lib/extend\":710,\"../../plots/font_attributes\":793,\"../../plots/template_attributes\":843,\"./constants\":1115}],1112:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\"),i=t(\"../../plots/cartesian/axes\"),o=t(\"../../constants/numerical\").BADNUM,s=t(\"./subtypes\"),l=t(\"./colorscale_calc\"),c=t(\"./arrays_to_calcdata\"),u=t(\"./calc_selection\");function h(t,e,r,n,a,o,l){var c=e._length,u=t._fullLayout,h=r._id,f=n._id,p=u._firstScatter[d(e)]===e.uid,v=(g(e,u,r,n)||{}).orientation,m=e.fill;r._minDtick=0,n._minDtick=0;var y={padded:!0},x={padded:!0};l&&(y.ppad=x.ppad=l);var b=c<2||a[0]!==a[c-1]||o[0]!==o[c-1];b&&(\"tozerox\"===m||\"tonextx\"===m&&(p||\"h\"===v))?y.tozero=!0:(e.error_y||{}).visible||\"tonexty\"!==m&&\"tozeroy\"!==m&&(s.hasMarkers(e)||s.hasText(e))||(y.padded=!1,y.ppad=0),b&&(\"tozeroy\"===m||\"tonexty\"===m&&(p||\"v\"===v))?x.tozero=!0:\"tonextx\"!==m&&\"tozerox\"!==m||(x.padded=!1),h&&(e._extremes[h]=i.findExtremes(r,a,y)),f&&(e._extremes[f]=i.findExtremes(n,o,x))}function f(t,e){if(s.hasMarkers(t)){var r,n=t.marker,o=1.6*(t.marker.sizeref||1);if(r=\"area\"===t.marker.sizemode?function(t){return Math.max(Math.sqrt((t||0)/o),3)}:function(t){return Math.max((t||0)/o,3)},a.isArrayOrTypedArray(n.size)){var l={type:\"linear\"};i.setConvert(l);for(var c=l.makeCalcdata(t.marker,\"size\"),u=new Array(e),h=0;h<e;h++)u[h]=r(c[h]);return u}return r(n.size)}}function p(t,e){var r=d(e),n=t._firstScatter;n[r]||(n[r]=e.uid)}function d(t){var e=t.stackgroup;return t.xaxis+t.yaxis+t.type+(e?\"-\"+e:\"\")}function g(t,e,r,n){var a=t.stackgroup;if(a){var i=e._scatterStackOpts[r._id+n._id][a],o=\"v\"===i.orientation?n:r;return\"linear\"===o.type||\"log\"===o.type?i:void 0}}e.exports={calc:function(t,e){var r,s,d,v,m,y,x=t._fullLayout,b=i.getFromId(t,e.xaxis||\"x\"),_=i.getFromId(t,e.yaxis||\"y\"),w=b.makeCalcdata(e,\"x\"),k=_.makeCalcdata(e,\"y\"),T=e._length,A=new Array(T),M=e.ids,S=g(e,x,b,_),E=!1;p(x,e);var C,L=\"x\",P=\"y\";for(S?(a.pushUnique(S.traceIndices,e._expandedIndex),(r=\"v\"===S.orientation)?(P=\"s\",C=\"x\"):(L=\"s\",C=\"y\"),m=\"interpolate\"===S.stackgaps):h(t,e,b,_,w,k,f(e,T)),s=0;s<T;s++){var O=A[s]={},I=n(w[s]),z=n(k[s]);I&&z?(O[L]=w[s],O[P]=k[s]):S&&(r?I:z)?(O[C]=r?w[s]:k[s],O.gap=!0,m?(O.s=o,E=!0):O.s=0):O[L]=O[P]=o,M&&(O.id=String(M[s]))}if(c(A,e),l(t,e),u(A,e),S){for(s=0;s<A.length;)A[s][C]===o?A.splice(s,1):s++;if(a.sort(A,function(t,e){return t[C]-e[C]||t.i-e.i}),E){for(s=0;s<A.length-1&&A[s].gap;)s++;for((y=A[s].s)||(y=A[s].s=0),d=0;d<s;d++)A[d].s=y;for(v=A.length-1;v>s&&A[v].gap;)v--;for(y=A[v].s,d=A.length-1;d>v;d--)A[d].s=y;for(;s<v;)if(A[++s].gap){for(d=s+1;A[d].gap;)d++;for(var D=A[s-1][C],R=A[s-1].s,F=(A[d].s-R)/(A[d][C]-D);s<d;)A[s].s=R+(A[s][C]-D)*F,s++}}}return A},calcMarkerSize:f,calcAxisExpansion:h,setFirstScatter:p,getStackOpts:g}},{\"../../constants/numerical\":695,\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"./arrays_to_calcdata\":1110,\"./calc_selection\":1113,\"./colorscale_calc\":1114,\"./subtypes\":1134,\"fast-isnumeric\":226}],1113:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e){n.isArrayOrTypedArray(e.selectedpoints)&&n.tagSelected(t,e)}},{\"../../lib\":719}],1114:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/helpers\").hasColorscale,a=t(\"../../components/colorscale/calc\"),i=t(\"./subtypes\");e.exports=function(t,e){i.hasLines(e)&&n(e,\"line\")&&a(t,e,{vals:e.line.color,containerStr:\"line\",cLetter:\"c\"}),i.hasMarkers(e)&&(n(e,\"marker\")&&a(t,e,{vals:e.marker.color,containerStr:\"marker\",cLetter:\"c\"}),n(e,\"marker.line\")&&a(t,e,{vals:e.marker.line.color,containerStr:\"marker.line\",cLetter:\"c\"}))}},{\"../../components/colorscale/calc\":602,\"../../components/colorscale/helpers\":605,\"./subtypes\":1134}],1115:[function(t,e,r){\"use strict\";e.exports={PTS_LINESONLY:20,minTolerance:.2,toleranceGrowth:10,maxScreensAway:20,eventDataKeys:[]}},{}],1116:[function(t,e,r){\"use strict\";var n=t(\"./calc\");function a(t,e,r,n,a,i,o){a[n]=!0;var s={i:null,gap:!0,s:0};if(s[o]=r,t.splice(e,0,s),e&&r===t[e-1][o]){var l=t[e-1];s.s=l.s,s.i=l.i,s.gap=l.gap}else i&&(s.s=function(t,e,r,n){var a=t[e-1],i=t[e+1];return i?a?a.s+(i.s-a.s)*(r-a[n])/(i[n]-a[n]):i.s:a.s}(t,e,r,o));e||(t[0].t=t[1].t,t[0].trace=t[1].trace,delete t[1].t,delete t[1].trace)}e.exports=function(t,e){var r=e.xaxis,i=e.yaxis,o=r._id+i._id,s=t._fullLayout._scatterStackOpts[o];if(s){var l,c,u,h,f,p,d,g,v,m,y,x,b,_,w,k=t.calcdata;for(var T in s){var A=(m=s[T]).traceIndices;if(A.length){for(y=\"interpolate\"===m.stackgaps,x=m.groupnorm,\"v\"===m.orientation?(b=\"x\",_=\"y\"):(b=\"y\",_=\"x\"),w=new Array(A.length),l=0;l<w.length;l++)w[l]=!1;p=k[A[0]];var M=new Array(p.length);for(l=0;l<p.length;l++)M[l]=p[l][b];for(l=1;l<A.length;l++){for(f=k[A[l]],c=u=0;c<f.length;c++){for(d=f[c][b];d>M[u]&&u<M.length;u++)a(f,c,M[u],l,w,y,b),c++;if(d!==M[u]){for(h=0;h<l;h++)a(k[A[h]],u,d,h,w,y,b);M.splice(u,0,d)}u++}for(;u<M.length;u++)a(f,c,M[u],l,w,y,b),c++}var S=M.length;for(c=0;c<p.length;c++){for(g=p[c][_]=p[c].s,l=1;l<A.length;l++)(f=k[A[l]])[0].trace._rawLength=f[0].trace._length,f[0].trace._length=S,g+=f[c].s,f[c][_]=g;if(x)for(v=(\"fraction\"===x?g:g/100)||1,l=0;l<A.length;l++){var E=k[A[l]][c];E[_]/=v,E.sNorm=E.s/v}}for(l=0;l<A.length;l++){var C=(f=k[A[l]])[0].trace,L=n.calcMarkerSize(C,C._rawLength),P=Array.isArray(L);if(L&&w[l]||P){var O=L;for(L=new Array(S),c=0;c<S;c++)L[c]=f[c].gap?0:P?O[f[c].i]:O}var I=new Array(S),z=new Array(S);for(c=0;c<S;c++)I[c]=f[c].x,z[c]=f[c].y;n.calcAxisExpansion(t,C,r,i,I,z,L),f[0].t.orientation=m.orientation}}}}}},{\"./calc\":1112}],1117:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=0;e<t.length;e++){var r=t[e];if(\"scatter\"===r.type){var n=r.fill;if(\"none\"!==n&&\"toself\"!==n&&(r.opacity=void 0,\"tonexty\"===n||\"tonextx\"===n))for(var a=e-1;a>=0;a--){var i=t[a];if(\"scatter\"===i.type&&i.xaxis===r.xaxis&&i.yaxis===r.yaxis){i.opacity=void 0;break}}}}}},{}],1118:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../registry\"),i=t(\"./attributes\"),o=t(\"./constants\"),s=t(\"./subtypes\"),l=t(\"./xy_defaults\"),c=t(\"./stack_defaults\"),u=t(\"./marker_defaults\"),h=t(\"./line_defaults\"),f=t(\"./line_shape_defaults\"),p=t(\"./text_defaults\"),d=t(\"./fillcolor_defaults\");e.exports=function(t,e,r,g){function v(r,a){return n.coerce(t,e,i,r,a)}var m=l(t,e,g,v);if(m||(e.visible=!1),e.visible){var y=c(t,e,g,v),x=!y&&m<o.PTS_LINESONLY?\"lines+markers\":\"lines\";v(\"text\"),v(\"hovertext\"),v(\"mode\",x),s.hasLines(e)&&(h(t,e,r,g,v),f(t,e,v),v(\"connectgaps\"),v(\"line.simplify\")),s.hasMarkers(e)&&u(t,e,r,g,v,{gradient:!0}),s.hasText(e)&&(v(\"texttemplate\"),p(t,e,g,v));var b=[];(s.hasMarkers(e)||s.hasText(e))&&(v(\"cliponaxis\"),v(\"marker.maxdisplayed\"),b.push(\"points\")),v(\"fill\",y?y.fillDflt:\"none\"),\"none\"!==e.fill&&(d(t,e,r,v),s.hasLines(e)||f(t,e,v));var _=(e.line||{}).color,w=(e.marker||{}).color;\"tonext\"!==e.fill&&\"toself\"!==e.fill||b.push(\"fills\"),v(\"hoveron\",b.join(\"+\")||\"points\"),\"fills\"!==e.hoveron&&v(\"hovertemplate\");var k=a.getComponentMethod(\"errorbars\",\"supplyDefaults\");k(t,e,_||w||r,{axis:\"y\"}),k(t,e,_||w||r,{axis:\"x\",inherit:\"y\"}),n.coerceSelectionMarkerOpacity(e,v)}}},{\"../../lib\":719,\"../../registry\":848,\"./attributes\":1111,\"./constants\":1115,\"./fillcolor_defaults\":1119,\"./line_defaults\":1123,\"./line_shape_defaults\":1125,\"./marker_defaults\":1129,\"./stack_defaults\":1132,\"./subtypes\":1134,\"./text_defaults\":1135,\"./xy_defaults\":1136}],1119:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\"),a=t(\"../../lib\").isArrayOrTypedArray;e.exports=function(t,e,r,i){var o=!1;if(e.marker){var s=e.marker.color,l=(e.marker.line||{}).color;s&&!a(s)?o=s:l&&!a(l)&&(o=l)}i(\"fillcolor\",n.addOpacity((e.line||{}).color||o||r,.5))}},{\"../../components/color\":594,\"../../lib\":719}],1120:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\"),a=t(\"./subtypes\");e.exports=function(t,e){var r,i;if(\"lines\"===t.mode)return(r=t.line.color)&&n.opacity(r)?r:t.fillcolor;if(\"none\"===t.mode)return t.fill?t.fillcolor:\"\";var o=e.mcc||(t.marker||{}).color,s=e.mlcc||((t.marker||{}).line||{}).color;return(i=o&&n.opacity(o)?o:s&&n.opacity(s)&&(e.mlw||((t.marker||{}).line||{}).width)?s:\"\")?n.opacity(i)<.3?n.addOpacity(i,.3):i:(r=(t.line||{}).color)&&n.opacity(r)&&a.hasLines(t)&&t.line.width?r:t.fillcolor}},{\"../../components/color\":594,\"./subtypes\":1134}],1121:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/fx\"),i=t(\"../../registry\"),o=t(\"./get_trace_color\"),s=t(\"../../components/color\"),l=n.fillText;e.exports=function(t,e,r,c){var u=t.cd,h=u[0].trace,f=t.xa,p=t.ya,d=f.c2p(e),g=p.c2p(r),v=[d,g],m=h.hoveron||\"\",y=-1!==h.mode.indexOf(\"markers\")?3:.5;if(-1!==m.indexOf(\"points\")){var x=function(t){var e=Math.max(y,t.mrc||0),r=f.c2p(t.x)-d,n=p.c2p(t.y)-g;return Math.max(Math.sqrt(r*r+n*n)-e,1-y/e)},b=a.getDistanceFunction(c,function(t){var e=Math.max(3,t.mrc||0),r=1-1/e,n=Math.abs(f.c2p(t.x)-d);return n<e?r*n/e:n-e+r},function(t){var e=Math.max(3,t.mrc||0),r=1-1/e,n=Math.abs(p.c2p(t.y)-g);return n<e?r*n/e:n-e+r},x);if(a.getClosest(u,b,t),!1!==t.index){var _=u[t.index],w=f.c2p(_.x,!0),k=p.c2p(_.y,!0),T=_.mrc||1;t.index=_.i;var A=u[0].t.orientation,M=A&&(_.sNorm||_.s),S=\"h\"===A?M:_.x,E=\"v\"===A?M:_.y;return n.extendFlat(t,{color:o(h,_),x0:w-T,x1:w+T,xLabelVal:S,y0:k-T,y1:k+T,yLabelVal:E,spikeDistance:x(_),hovertemplate:h.hovertemplate}),l(_,h,t),i.getComponentMethod(\"errorbars\",\"hoverInfo\")(_,h,t),[t]}}if(-1!==m.indexOf(\"fills\")&&h._polygons){var C,L,P,O,I,z,D,R,F,B=h._polygons,N=[],j=!1,V=1/0,U=-1/0,q=1/0,H=-1/0;for(C=0;C<B.length;C++)(P=B[C]).contains(v)&&(j=!j,N.push(P),q=Math.min(q,P.ymin),H=Math.max(H,P.ymax));if(j){var G=((q=Math.max(q,0))+(H=Math.min(H,p._length)))/2;for(C=0;C<N.length;C++)for(O=N[C].pts,L=1;L<O.length;L++)(R=O[L-1][1])>G!=(F=O[L][1])>=G&&(z=O[L-1][0],D=O[L][0],F-R&&(I=z+(D-z)*(G-R)/(F-R),V=Math.min(V,I),U=Math.max(U,I)));V=Math.max(V,0),U=Math.min(U,f._length);var Y=s.defaultLine;return s.opacity(h.fillcolor)?Y=h.fillcolor:s.opacity((h.line||{}).color)&&(Y=h.line.color),n.extendFlat(t,{distance:t.maxHoverDistance,x0:V,x1:U,y0:G,y1:G,color:Y,hovertemplate:!1}),delete t.index,h.text&&!Array.isArray(h.text)?t.text=String(h.text):t.text=h.name,[t]}}}},{\"../../components/color\":594,\"../../components/fx\":632,\"../../lib\":719,\"../../registry\":848,\"./get_trace_color\":1120}],1122:[function(t,e,r){\"use strict\";var n=t(\"./subtypes\");e.exports={hasLines:n.hasLines,hasMarkers:n.hasMarkers,hasText:n.hasText,isBubble:n.isBubble,attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),crossTraceDefaults:t(\"./cross_trace_defaults\"),calc:t(\"./calc\").calc,crossTraceCalc:t(\"./cross_trace_calc\"),arraysToCalcdata:t(\"./arrays_to_calcdata\"),plot:t(\"./plot\"),colorbar:t(\"./marker_colorbar\"),style:t(\"./style\").style,styleOnSelect:t(\"./style\").styleOnSelect,hoverPoints:t(\"./hover\"),selectPoints:t(\"./select\"),animatable:!0,moduleType:\"trace\",name:\"scatter\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"symbols\",\"errorBarsOK\",\"showLegend\",\"scatter-like\",\"zoomScale\"],meta:{}}},{\"../../plots/cartesian\":778,\"./arrays_to_calcdata\":1110,\"./attributes\":1111,\"./calc\":1112,\"./cross_trace_calc\":1116,\"./cross_trace_defaults\":1117,\"./defaults\":1118,\"./hover\":1121,\"./marker_colorbar\":1128,\"./plot\":1130,\"./select\":1131,\"./style\":1133,\"./subtypes\":1134}],1123:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").isArrayOrTypedArray,a=t(\"../../components/colorscale/helpers\").hasColorscale,i=t(\"../../components/colorscale/defaults\");e.exports=function(t,e,r,o,s,l){var c=(t.marker||{}).color;(s(\"line.color\",r),a(t,\"line\"))?i(t,e,o,s,{prefix:\"line.\",cLetter:\"c\"}):s(\"line.color\",!n(c)&&c||r);s(\"line.width\"),(l||{}).noDash||s(\"line.dash\")}},{\"../../components/colorscale/defaults\":604,\"../../components/colorscale/helpers\":605,\"../../lib\":719}],1124:[function(t,e,r){\"use strict\";var n=t(\"../../constants/numerical\"),a=n.BADNUM,i=n.LOG_CLIP,o=i+.5,s=i-.5,l=t(\"../../lib\"),c=l.segmentsIntersect,u=l.constrain,h=t(\"./constants\");e.exports=function(t,e){var r,n,i,f,p,d,g,v,m,y,x,b,_,w,k,T,A,M,S=e.xaxis,E=e.yaxis,C=\"log\"===S.type,L=\"log\"===E.type,P=S._length,O=E._length,I=e.connectGaps,z=e.baseTolerance,D=e.shape,R=\"linear\"===D,F=e.fill&&\"none\"!==e.fill,B=[],N=h.minTolerance,j=t.length,V=new Array(j),U=0;function q(e){var r=t[e];if(!r)return!1;var n=S.c2p(r.x),i=E.c2p(r.y);if(n===a){if(C&&(n=S.c2p(r.x,!0)),n===a)return!1;L&&i===a&&(n*=Math.abs(S._m*O*(S._m>0?o:s)/(E._m*P*(E._m>0?o:s)))),n*=1e3}if(i===a){if(L&&(i=E.c2p(r.y,!0)),i===a)return!1;i*=1e3}return[n,i]}function H(t,e,r,n){var a=r-t,i=n-e,o=.5-t,s=.5-e,l=a*a+i*i,c=a*o+i*s;if(c>0&&c<l){var u=o*i-s*a;if(u*u<l)return!0}}function G(t,e){var r=t[0]/P,n=t[1]/O,a=Math.max(0,-r,r-1,-n,n-1);return a&&void 0!==A&&H(r,n,A,M)&&(a=0),a&&e&&H(r,n,e[0]/P,e[1]/O)&&(a=0),(1+h.toleranceGrowth*a)*z}function Y(t,e){var r=t[0]-e[0],n=t[1]-e[1];return Math.sqrt(r*r+n*n)}var W,X,Z,J,K,Q,$,tt=h.maxScreensAway,et=-P*tt,rt=P*(1+tt),nt=-O*tt,at=O*(1+tt),it=[[et,nt,rt,nt],[rt,nt,rt,at],[rt,at,et,at],[et,at,et,nt]];function ot(t){if(t[0]<et||t[0]>rt||t[1]<nt||t[1]>at)return[u(t[0],et,rt),u(t[1],nt,at)]}function st(t,e){return t[0]===e[0]&&(t[0]===et||t[0]===rt)||(t[1]===e[1]&&(t[1]===nt||t[1]===at)||void 0)}function lt(t,e,r){return function(n,a){var i=ot(n),o=ot(a),s=[];if(i&&o&&st(i,o))return s;i&&s.push(i),o&&s.push(o);var c=2*l.constrain((n[t]+a[t])/2,e,r)-((i||n)[t]+(o||a)[t]);c&&((i&&o?c>0==i[t]>o[t]?i:o:i||o)[t]+=c);return s}}function ct(t){var e=t[0],r=t[1],n=e===V[U-1][0],a=r===V[U-1][1];if(!n||!a)if(U>1){var i=e===V[U-2][0],o=r===V[U-2][1];n&&(e===et||e===rt)&&i?o?U--:V[U-1]=t:a&&(r===nt||r===at)&&o?i?U--:V[U-1]=t:V[U++]=t}else V[U++]=t}function ut(t){V[U-1][0]!==t[0]&&V[U-1][1]!==t[1]&&ct([Z,J]),ct(t),K=null,Z=J=0}function ht(t){if(A=t[0]/P,M=t[1]/O,W=t[0]<et?et:t[0]>rt?rt:0,X=t[1]<nt?nt:t[1]>at?at:0,W||X){if(U)if(K){var e=$(K,t);e.length>1&&(ut(e[0]),V[U++]=e[1])}else Q=$(V[U-1],t)[0],V[U++]=Q;else V[U++]=[W||t[0],X||t[1]];var r=V[U-1];W&&X&&(r[0]!==W||r[1]!==X)?(K&&(Z!==W&&J!==X?ct(Z&&J?(n=K,i=(a=t)[0]-n[0],o=(a[1]-n[1])/i,(n[1]*a[0]-a[1]*n[0])/i>0?[o>0?et:rt,at]:[o>0?rt:et,nt]):[Z||W,J||X]):Z&&J&&ct([Z,J])),ct([W,X])):Z-W&&J-X&&ct([W||Z,X||J]),K=t,Z=W,J=X}else K&&ut($(K,t)[0]),V[U++]=t;var n,a,i,o}for(\"linear\"===D||\"spline\"===D?$=function(t,e){for(var r=[],n=0,a=0;a<4;a++){var i=it[a],o=c(t[0],t[1],e[0],e[1],i[0],i[1],i[2],i[3]);o&&(!n||Math.abs(o.x-r[0][0])>1||Math.abs(o.y-r[0][1])>1)&&(o=[o.x,o.y],n&&Y(o,t)<Y(r[0],t)?r.unshift(o):r.push(o),n++)}return r}:\"hv\"===D||\"vh\"===D?$=function(t,e){var r=[],n=ot(t),a=ot(e);return n&&a&&st(n,a)?r:(n&&r.push(n),a&&r.push(a),r)}:\"hvh\"===D?$=lt(0,et,rt):\"vhv\"===D&&($=lt(1,nt,at)),r=0;r<j;r++)if(n=q(r)){for(U=0,K=null,ht(n),r++;r<j;r++){if(!(f=q(r))){if(I)continue;break}if(R&&e.simplify){var ft=q(r+1);if(y=Y(f,n),F&&(0===U||U===j-1)||!(y<G(f,ft)*N)){for(v=[(f[0]-n[0])/y,(f[1]-n[1])/y],p=n,x=y,b=w=k=0,g=!1,i=f,r++;r<t.length;r++){if(d=ft,ft=q(r+1),!d){if(I)continue;break}if(T=(m=[d[0]-n[0],d[1]-n[1]])[0]*v[1]-m[1]*v[0],w=Math.min(w,T),(k=Math.max(k,T))-w>G(d,ft))break;i=d,(_=m[0]*v[0]+m[1]*v[1])>x?(x=_,f=d,g=!1):_<b&&(b=_,p=d,g=!0)}if(g?(ht(f),i!==p&&ht(p)):(p!==n&&ht(p),i!==f&&ht(f)),ht(i),r>=t.length||!d)break;ht(d),n=d}}else ht(f)}K&&ct([Z||K[0],J||K[1]]),B.push(V.slice(0,U))}return B}},{\"../../constants/numerical\":695,\"../../lib\":719,\"./constants\":1115}],1125:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){\"spline\"===r(\"line.shape\")&&r(\"line.smoothing\")}},{}],1126:[function(t,e,r){\"use strict\";var n={tonextx:1,tonexty:1,tonext:1};e.exports=function(t,e,r){var a,i,o,s,l,c={},u=!1,h=-1,f=0,p=-1;for(i=0;i<r.length;i++)(o=(a=r[i][0].trace).stackgroup||\"\")?o in c?l=c[o]:(l=c[o]=f,f++):a.fill in n&&p>=0?l=p:(l=p=f,f++),l<h&&(u=!0),a._groupIndex=h=l;var d=r.slice();u&&d.sort(function(t,e){var r=t[0].trace,n=e[0].trace;return r._groupIndex-n._groupIndex||r.index-n.index});var g={};for(i=0;i<d.length;i++)o=(a=d[i][0].trace).stackgroup||\"\",!0===a.visible?(a._nexttrace=null,a.fill in n&&(s=g[o],a._prevtrace=s||null,s&&(s._nexttrace=a)),a._ownfill=a.fill&&(\"tozero\"===a.fill.substr(0,6)||\"toself\"===a.fill||\"to\"===a.fill.substr(0,2)&&!a._prevtrace),g[o]=a):a._prevtrace=a._nexttrace=a._ownfill=null;return d}},{}],1127:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\");e.exports=function(t){var e=t.marker,r=e.sizeref||1,a=e.sizemin||0,i=\"area\"===e.sizemode?function(t){return Math.sqrt(t/r)}:function(t){return t/r};return function(t){var e=i(t/2);return n(e)&&e>0?Math.max(e,a):0}}},{\"fast-isnumeric\":226}],1128:[function(t,e,r){\"use strict\";e.exports={container:\"marker\",min:\"cmin\",max:\"cmax\"}},{}],1129:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\"),a=t(\"../../components/colorscale/helpers\").hasColorscale,i=t(\"../../components/colorscale/defaults\"),o=t(\"./subtypes\");e.exports=function(t,e,r,s,l,c){var u=o.isBubble(t),h=(t.line||{}).color;(c=c||{},h&&(r=h),l(\"marker.symbol\"),l(\"marker.opacity\",u?.7:1),l(\"marker.size\"),l(\"marker.color\",r),a(t,\"marker\")&&i(t,e,s,l,{prefix:\"marker.\",cLetter:\"c\"}),c.noSelect||(l(\"selected.marker.color\"),l(\"unselected.marker.color\"),l(\"selected.marker.size\"),l(\"unselected.marker.size\")),c.noLine||(l(\"marker.line.color\",h&&!Array.isArray(h)&&e.marker.color!==h?h:u?n.background:n.defaultLine),a(t,\"marker.line\")&&i(t,e,s,l,{prefix:\"marker.line.\",cLetter:\"c\"}),l(\"marker.line.width\",u?1:0)),u&&(l(\"marker.sizeref\"),l(\"marker.sizemin\"),l(\"marker.sizemode\")),c.gradient)&&(\"none\"!==l(\"marker.gradient.type\")&&l(\"marker.gradient.color\"))}},{\"../../components/color\":594,\"../../components/colorscale/defaults\":604,\"../../components/colorscale/helpers\":605,\"./subtypes\":1134}],1130:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../registry\"),i=t(\"../../lib\"),o=i.ensureSingle,s=i.identity,l=t(\"../../components/drawing\"),c=t(\"./subtypes\"),u=t(\"./line_points\"),h=t(\"./link_traces\"),f=t(\"../../lib/polygon\").tester;function p(t,e,r,h,p,d,g){var v;!function(t,e,r,a,o){var s=r.xaxis,l=r.yaxis,u=n.extent(i.simpleMap(s.range,s.r2c)),h=n.extent(i.simpleMap(l.range,l.r2c)),f=a[0].trace;if(!c.hasMarkers(f))return;var p=f.marker.maxdisplayed;if(0===p)return;var d=a.filter(function(t){return t.x>=u[0]&&t.x<=u[1]&&t.y>=h[0]&&t.y<=h[1]}),g=Math.ceil(d.length/p),v=0;o.forEach(function(t,r){var n=t[0].trace;c.hasMarkers(n)&&n.marker.maxdisplayed>0&&r<e&&v++});var m=Math.round(v*g/3+Math.floor(v/3)*g/7.1);a.forEach(function(t){delete t.vis}),d.forEach(function(t,e){0===Math.round((e+m)%g)&&(t.vis=!0)})}(0,e,r,h,p);var m=!!g&&g.duration>0;function y(t){return m?t.transition():t}var x=r.xaxis,b=r.yaxis,_=h[0].trace,w=_.line,k=n.select(d),T=o(k,\"g\",\"errorbars\"),A=o(k,\"g\",\"lines\"),M=o(k,\"g\",\"points\"),S=o(k,\"g\",\"text\");if(a.getComponentMethod(\"errorbars\",\"plot\")(t,T,r,g),!0===_.visible){var E,C;y(k).style(\"opacity\",_.opacity);var L=_.fill.charAt(_.fill.length-1);\"x\"!==L&&\"y\"!==L&&(L=\"\"),h[0][r.isRangePlot?\"nodeRangePlot3\":\"node3\"]=k;var P,O,I=\"\",z=[],D=_._prevtrace;D&&(I=D._prevRevpath||\"\",C=D._nextFill,z=D._polygons);var R,F,B,N,j,V,U,q=\"\",H=\"\",G=[],Y=i.noop;if(E=_._ownFill,c.hasLines(_)||\"none\"!==_.fill){for(C&&C.datum(h),-1!==[\"hv\",\"vh\",\"hvh\",\"vhv\"].indexOf(w.shape)?(R=l.steps(w.shape),F=l.steps(w.shape.split(\"\").reverse().join(\"\"))):R=F=\"spline\"===w.shape?function(t){var e=t[t.length-1];return t.length>1&&t[0][0]===e[0]&&t[0][1]===e[1]?l.smoothclosed(t.slice(1),w.smoothing):l.smoothopen(t,w.smoothing)}:function(t){return\"M\"+t.join(\"L\")},B=function(t){return F(t.reverse())},G=u(h,{xaxis:x,yaxis:b,connectGaps:_.connectgaps,baseTolerance:Math.max(w.width||1,3)/4,shape:w.shape,simplify:w.simplify,fill:_.fill}),U=_._polygons=new Array(G.length),v=0;v<G.length;v++)_._polygons[v]=f(G[v]);G.length&&(N=G[0][0],V=(j=G[G.length-1])[j.length-1]),Y=function(t){return function(e){if(P=R(e),O=B(e),q?L?(q+=\"L\"+P.substr(1),H=O+\"L\"+H.substr(1)):(q+=\"Z\"+P,H=O+\"Z\"+H):(q=P,H=O),c.hasLines(_)&&e.length>1){var r=n.select(this);if(r.datum(h),t)y(r.style(\"opacity\",0).attr(\"d\",P).call(l.lineGroupStyle)).style(\"opacity\",1);else{var a=y(r);a.attr(\"d\",P),l.singleLineStyle(h,a)}}}}}var W=A.selectAll(\".js-line\").data(G);y(W.exit()).style(\"opacity\",0).remove(),W.each(Y(!1)),W.enter().append(\"path\").classed(\"js-line\",!0).style(\"vector-effect\",\"non-scaling-stroke\").call(l.lineGroupStyle).each(Y(!0)),l.setClipUrl(W,r.layerClipId,t),G.length?(E?(E.datum(h),N&&V&&(L?(\"y\"===L?N[1]=V[1]=b.c2p(0,!0):\"x\"===L&&(N[0]=V[0]=x.c2p(0,!0)),y(E).attr(\"d\",\"M\"+V+\"L\"+N+\"L\"+q.substr(1)).call(l.singleFillStyle)):y(E).attr(\"d\",q+\"Z\").call(l.singleFillStyle))):C&&(\"tonext\"===_.fill.substr(0,6)&&q&&I?(\"tonext\"===_.fill?y(C).attr(\"d\",q+\"Z\"+I+\"Z\").call(l.singleFillStyle):y(C).attr(\"d\",q+\"L\"+I.substr(1)+\"Z\").call(l.singleFillStyle),_._polygons=_._polygons.concat(z)):(Z(C),_._polygons=null)),_._prevRevpath=H,_._prevPolygons=U):(E?Z(E):C&&Z(C),_._polygons=_._prevRevpath=_._prevPolygons=null),M.datum(h),S.datum(h),function(e,a,i){var o,u=i[0].trace,h=c.hasMarkers(u),f=c.hasText(u),p=tt(u),d=et,g=et;if(h||f){var v=s,_=u.stackgroup,w=_&&\"infer zero\"===t._fullLayout._scatterStackOpts[x._id+b._id][_].stackgaps;u.marker.maxdisplayed||u._needsCull?v=w?K:J:_&&!w&&(v=Q),h&&(d=v),f&&(g=v)}var k,T=(o=e.selectAll(\"path.point\").data(d,p)).enter().append(\"path\").classed(\"point\",!0);m&&T.call(l.pointStyle,u,t).call(l.translatePoints,x,b).style(\"opacity\",0).transition().style(\"opacity\",1),o.order(),h&&(k=l.makePointStyleFns(u)),o.each(function(e){var a=n.select(this),i=y(a);l.translatePoint(e,i,x,b)?(l.singlePointStyle(e,i,u,k,t),r.layerClipId&&l.hideOutsideRangePoint(e,i,x,b,u.xcalendar,u.ycalendar),u.customdata&&a.classed(\"plotly-customdata\",null!==e.data&&void 0!==e.data)):i.remove()}),m?o.exit().transition().style(\"opacity\",0).remove():o.exit().remove(),(o=a.selectAll(\"g\").data(g,p)).enter().append(\"g\").classed(\"textpoint\",!0).append(\"text\"),o.order(),o.each(function(t){var e=n.select(this),a=y(e.select(\"text\"));l.translatePoint(t,a,x,b)?r.layerClipId&&l.hideOutsideRangePoint(t,e,x,b,u.xcalendar,u.ycalendar):e.remove()}),o.selectAll(\"text\").call(l.textPointStyle,u,t).each(function(t){var e=x.c2p(t.x),r=b.c2p(t.y);n.select(this).selectAll(\"tspan.line\").each(function(){y(n.select(this)).attr({x:e,y:r})})}),o.exit().remove()}(M,S,h);var X=!1===_.cliponaxis?null:r.layerClipId;l.setClipUrl(M,X,t),l.setClipUrl(S,X,t)}function Z(t){y(t).attr(\"d\",\"M0,0Z\")}function J(t){return t.filter(function(t){return!t.gap&&t.vis})}function K(t){return t.filter(function(t){return t.vis})}function Q(t){return t.filter(function(t){return!t.gap})}function $(t){return t.id}function tt(t){if(t.ids)return $}function et(){return!1}}e.exports=function(t,e,r,a,i,c){var u,f,d=!i,g=!!i&&i.duration>0,v=h(t,e,r);((u=a.selectAll(\"g.trace\").data(v,function(t){return t[0].trace.uid})).enter().append(\"g\").attr(\"class\",function(t){return\"trace scatter trace\"+t[0].trace.uid}).style(\"stroke-miterlimit\",2),u.order(),function(t,e,r){e.each(function(e){var a=o(n.select(this),\"g\",\"fills\");l.setClipUrl(a,r.layerClipId,t);var i=e[0].trace,c=[];i._ownfill&&c.push(\"_ownFill\"),i._nexttrace&&c.push(\"_nextFill\");var u=a.selectAll(\"g\").data(c,s);u.enter().append(\"g\"),u.exit().each(function(t){i[t]=null}).remove(),u.order().each(function(t){i[t]=o(n.select(this),\"path\",\"js-fill\")})})}(t,u,e),g)?(c&&(f=c()),n.transition().duration(i.duration).ease(i.easing).each(\"end\",function(){f&&f()}).each(\"interrupt\",function(){f&&f()}).each(function(){a.selectAll(\"g.trace\").each(function(r,n){p(t,n,e,r,v,this,i)})})):u.each(function(r,n){p(t,n,e,r,v,this,i)});d&&u.exit().remove(),a.selectAll(\"path:not([d])\").remove()}},{\"../../components/drawing\":615,\"../../lib\":719,\"../../lib/polygon\":731,\"../../registry\":848,\"./line_points\":1124,\"./link_traces\":1126,\"./subtypes\":1134,d3:164}],1131:[function(t,e,r){\"use strict\";var n=t(\"./subtypes\");e.exports=function(t,e){var r,a,i,o,s=t.cd,l=t.xaxis,c=t.yaxis,u=[],h=s[0].trace;if(!n.hasMarkers(h)&&!n.hasText(h))return[];if(!1===e)for(r=0;r<s.length;r++)s[r].selected=0;else for(r=0;r<s.length;r++)a=s[r],i=l.c2p(a.x),o=c.c2p(a.y),null!==a.i&&e.contains([i,o],!1,r,t)?(u.push({pointNumber:a.i,x:l.c2d(a.x),y:c.c2d(a.y)}),a.selected=1):a.selected=0;return u}},{\"./subtypes\":1134}],1132:[function(t,e,r){\"use strict\";var n=[\"orientation\",\"groupnorm\",\"stackgaps\"];e.exports=function(t,e,r,a){var i=r._scatterStackOpts,o=a(\"stackgroup\");if(o){var s=e.xaxis+e.yaxis,l=i[s];l||(l=i[s]={});var c=l[o],u=!1;c?c.traces.push(e):(c=l[o]={traceIndices:[],traces:[e]},u=!0);for(var h={orientation:e.x&&!e.y?\"h\":\"v\"},f=0;f<n.length;f++){var p=n[f],d=p+\"Found\";if(!c[d]){var g=void 0!==t[p],v=\"orientation\"===p;if((g||u)&&(c[p]=a(p,h[p]),v&&(c.fillDflt=\"h\"===c[p]?\"tonextx\":\"tonexty\"),g&&(c[d]=!0,!u&&(delete c.traces[0][p],v))))for(var m=0;m<c.traces.length-1;m++){var y=c.traces[m];y._input.fill!==y.fill&&(y.fill=c.fillDflt)}}}return c}}},{}],1133:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/drawing\"),i=t(\"../../registry\");function o(t,e,r){a.pointStyle(t.selectAll(\"path.point\"),e,r)}function s(t,e,r){a.textPointStyle(t.selectAll(\"text\"),e,r)}e.exports={style:function(t){var e=n.select(t).selectAll(\"g.trace.scatter\");e.style(\"opacity\",function(t){return t[0].trace.opacity}),e.selectAll(\"g.points\").each(function(e){o(n.select(this),e.trace||e[0].trace,t)}),e.selectAll(\"g.text\").each(function(e){s(n.select(this),e.trace||e[0].trace,t)}),e.selectAll(\"g.trace path.js-line\").call(a.lineGroupStyle),e.selectAll(\"g.trace path.js-fill\").call(a.fillGroupStyle),i.getComponentMethod(\"errorbars\",\"style\")(e)},stylePoints:o,styleText:s,styleOnSelect:function(t,e,r){var n=e[0].trace;n.selectedpoints?(a.selectedPointStyle(r.selectAll(\"path.point\"),n),a.selectedTextStyle(r.selectAll(\"text\"),n)):(o(r,n,t),s(r,n,t))}}},{\"../../components/drawing\":615,\"../../registry\":848,d3:164}],1134:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports={hasLines:function(t){return t.visible&&t.mode&&-1!==t.mode.indexOf(\"lines\")},hasMarkers:function(t){return t.visible&&(t.mode&&-1!==t.mode.indexOf(\"markers\")||\"splom\"===t.type)},hasText:function(t){return t.visible&&t.mode&&-1!==t.mode.indexOf(\"text\")},isBubble:function(t){return n.isPlainObject(t.marker)&&n.isArrayOrTypedArray(t.marker.size)}}},{\"../../lib\":719}],1135:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e,r,a,i){i=i||{},a(\"textposition\"),n.coerceFont(a,\"textfont\",r.font),i.noSelect||(a(\"selected.textfont.color\"),a(\"unselected.textfont.color\"))}},{\"../../lib\":719}],1136:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../registry\");e.exports=function(t,e,r,i){var o,s=i(\"x\"),l=i(\"y\");if(a.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\",\"y\"],r),s){var c=n.minRowLength(s);l?o=Math.min(c,n.minRowLength(l)):(o=c,i(\"y0\"),i(\"dy\"))}else{if(!l)return 0;o=n.minRowLength(l),i(\"x0\"),i(\"dx\")}return e._length=o,o}},{\"../../lib\":719,\"../../registry\":848}],1137:[function(t,e,r){\"use strict\";var n=t(\"../scatter/attributes\"),a=t(\"../../components/colorscale/attributes\"),i=t(\"../../plots/template_attributes\").hovertemplateAttrs,o=t(\"../../plots/template_attributes\").texttemplateAttrs,s=t(\"../../plots/attributes\"),l=t(\"../../constants/gl3d_dashes\"),c=t(\"../../constants/gl3d_markers\"),u=t(\"../../lib/extend\").extendFlat,h=t(\"../../plot_api/edit_types\").overrideAll,f=n.line,p=n.marker,d=p.line,g=u({width:f.width,dash:{valType:\"enumerated\",values:Object.keys(l),dflt:\"solid\"}},a(\"line\"));var v=e.exports=h({x:n.x,y:n.y,z:{valType:\"data_array\"},text:u({},n.text,{}),texttemplate:o({},{}),hovertext:u({},n.hovertext,{}),hovertemplate:i(),mode:u({},n.mode,{dflt:\"lines+markers\"}),surfaceaxis:{valType:\"enumerated\",values:[-1,0,1,2],dflt:-1},surfacecolor:{valType:\"color\"},projection:{x:{show:{valType:\"boolean\",dflt:!1},opacity:{valType:\"number\",min:0,max:1,dflt:1},scale:{valType:\"number\",min:0,max:10,dflt:2/3}},y:{show:{valType:\"boolean\",dflt:!1},opacity:{valType:\"number\",min:0,max:1,dflt:1},scale:{valType:\"number\",min:0,max:10,dflt:2/3}},z:{show:{valType:\"boolean\",dflt:!1},opacity:{valType:\"number\",min:0,max:1,dflt:1},scale:{valType:\"number\",min:0,max:10,dflt:2/3}}},connectgaps:n.connectgaps,line:g,marker:u({symbol:{valType:\"enumerated\",values:Object.keys(c),dflt:\"circle\",arrayOk:!0},size:u({},p.size,{dflt:8}),sizeref:p.sizeref,sizemin:p.sizemin,sizemode:p.sizemode,opacity:u({},p.opacity,{arrayOk:!1}),colorbar:p.colorbar,line:u({width:u({},d.width,{arrayOk:!1})},a(\"marker.line\"))},a(\"marker\")),textposition:u({},n.textposition,{dflt:\"top center\"}),textfont:{color:n.textfont.color,size:n.textfont.size,family:u({},n.textfont.family,{arrayOk:!1})},hoverinfo:u({},s.hoverinfo)},\"calc\",\"nested\");v.x.editType=v.y.editType=v.z.editType=\"calc+clearAxisTypes\"},{\"../../components/colorscale/attributes\":601,\"../../constants/gl3d_dashes\":692,\"../../constants/gl3d_markers\":693,\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../../plots/attributes\":764,\"../../plots/template_attributes\":843,\"../scatter/attributes\":1111}],1138:[function(t,e,r){\"use strict\";var n=t(\"../scatter/arrays_to_calcdata\"),a=t(\"../scatter/colorscale_calc\");e.exports=function(t,e){var r=[{x:!1,y:!1,trace:e,t:{}}];return n(r,e),a(t,e),r}},{\"../scatter/arrays_to_calcdata\":1110,\"../scatter/colorscale_calc\":1114}],1139:[function(t,e,r){\"use strict\";var n=t(\"../../registry\");function a(t,e,r,a){if(!e||!e.visible)return null;for(var i=n.getComponentMethod(\"errorbars\",\"makeComputeError\")(e),o=new Array(t.length),s=0;s<t.length;s++){var l=i(+t[s],s);if(\"log\"===a.type){var c=a.c2l(t[s]),u=t[s]-l[0],h=t[s]+l[1];if(o[s]=[(a.c2l(u,!0)-c)*r,(a.c2l(h,!0)-c)*r],u>0){var f=a.c2l(u);a._lowerLogErrorBound||(a._lowerLogErrorBound=f),a._lowerErrorBound=Math.min(a._lowerLogErrorBound,f)}}else o[s]=[-l[0]*r,l[1]*r]}return o}e.exports=function(t,e,r){var n=[a(t.x,t.error_x,e[0],r.xaxis),a(t.y,t.error_y,e[1],r.yaxis),a(t.z,t.error_z,e[2],r.zaxis)],i=function(t){for(var e=0;e<t.length;e++)if(t[e])return t[e].length;return 0}(n);if(0===i)return null;for(var o=new Array(i),s=0;s<i;s++){for(var l=[[0,0,0],[0,0,0]],c=0;c<3;c++)if(n[c])for(var u=0;u<2;u++)l[u][c]=n[c][s][u];o[s]=l}return o}},{\"../../registry\":848}],1140:[function(t,e,r){\"use strict\";var n=t(\"gl-line3d\"),a=t(\"gl-scatter3d\"),i=t(\"gl-error3d\"),o=t(\"gl-mesh3d\"),s=t(\"delaunay-triangulate\"),l=t(\"../../lib\"),c=t(\"../../lib/str2rgbarray\"),u=t(\"../../lib/gl_format_color\").formatColor,h=t(\"../scatter/make_bubble_size_func\"),f=t(\"../../constants/gl3d_dashes\"),p=t(\"../../constants/gl3d_markers\"),d=t(\"../../components/fx/helpers\").appendArrayPointValue,g=t(\"./calc_errors\");function v(t,e){this.scene=t,this.uid=e,this.linePlot=null,this.scatterPlot=null,this.errorBars=null,this.textMarkers=null,this.delaunayMesh=null,this.color=null,this.mode=\"\",this.dataPoints=[],this.axesBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.textLabels=null,this.data=null}var m=v.prototype;function y(t){return null==t?0:t.indexOf(\"left\")>-1?-1:t.indexOf(\"right\")>-1?1:0}function x(t){return null==t?0:t.indexOf(\"top\")>-1?-1:t.indexOf(\"bottom\")>-1?1:0}function b(t,e){return e(4*t)}function _(t){return p[t]}function w(t,e,r,n,a){var i=null;if(l.isArrayOrTypedArray(t)){i=[];for(var o=0;o<e;o++)void 0===t[o]?i[o]=n:i[o]=r(t[o],a)}else i=r(t,l.identity);return i}function k(t,e){var r,n,a,i,o,s,f=[],p=t.fullSceneLayout,v=t.dataScale,m=p.xaxis,k=p.yaxis,T=p.zaxis,A=e.marker,M=e.line,S=e.x||[],E=e.y||[],C=e.z||[],L=S.length,P=e.xcalendar,O=e.ycalendar,I=e.zcalendar;for(o=0;o<L;o++)r=m.d2l(S[o],0,P)*v[0],n=k.d2l(E[o],0,O)*v[1],a=T.d2l(C[o],0,I)*v[2],f[o]=[r,n,a];if(Array.isArray(e.text))s=e.text;else if(void 0!==e.text)for(s=new Array(L),o=0;o<L;o++)s[o]=e.text;var z=e.texttemplate;if(z){var D=Array.isArray(z),R=D?Math.min(z.length,L):L,F=D?function(t){return z[t]}:function(){return z},B=t.fullLayout._d3locale;for(s=new Array(R),o=0;o<R;o++){var N={};N.text=s[o],d(N,e,o),s[o]=l.texttemplateString(F(o),N,B,N,e._meta||{})}}if(i={position:f,mode:e.mode,text:s},\"line\"in e&&(i.lineColor=u(M,1,L),i.lineWidth=M.width,i.lineDashes=M.dash),\"marker\"in e){var j=h(e);i.scatterColor=u(A,1,L),i.scatterSize=w(A.size,L,b,20,j),i.scatterMarker=w(A.symbol,L,_,\"\\u25cf\"),i.scatterLineWidth=A.line.width,i.scatterLineColor=u(A.line,1,L),i.scatterAngle=0}\"textposition\"in e&&(i.textOffset=function(t){var e=[0,0];if(Array.isArray(t))for(var r=0;r<t.length;r++)e[r]=[0,0],t[r]&&(e[r][0]=y(t[r]),e[r][1]=x(t[r]));else e[0]=y(t),e[1]=x(t);return e}(e.textposition),i.textColor=u(e.textfont,1,L),i.textSize=w(e.textfont.size,L,l.identity,12),i.textFont=e.textfont.family,i.textAngle=0);var V=[\"x\",\"y\",\"z\"];for(i.project=[!1,!1,!1],i.projectScale=[1,1,1],i.projectOpacity=[1,1,1],o=0;o<3;++o){var U=e.projection[V[o]];(i.project[o]=U.show)&&(i.projectOpacity[o]=U.opacity,i.projectScale[o]=U.scale)}i.errorBounds=g(e,v,p);var q=function(t){for(var e=[0,0,0],r=[[0,0,0],[0,0,0],[0,0,0]],n=[1,1,1],a=0;a<3;a++){var i=t[a];i&&!1!==i.copy_zstyle&&!1!==t[2].visible&&(i=t[2]),i&&i.visible&&(e[a]=i.width/2,r[a]=c(i.color),n[a]=i.thickness)}return{capSize:e,color:r,lineWidth:n}}([e.error_x,e.error_y,e.error_z]);return i.errorColor=q.color,i.errorLineWidth=q.lineWidth,i.errorCapSize=q.capSize,i.delaunayAxis=e.surfaceaxis,i.delaunayColor=c(e.surfacecolor),i}function T(t){if(Array.isArray(t)){var e=t[0];return Array.isArray(e)&&(t=e),\"rgb(\"+t.slice(0,3).map(function(t){return Math.round(255*t)})+\")\"}return null}m.handlePick=function(t){if(t.object&&(t.object===this.linePlot||t.object===this.delaunayMesh||t.object===this.textMarkers||t.object===this.scatterPlot)){var e=t.index=t.data.index;return t.object.highlight&&t.object.highlight(null),this.scatterPlot&&(t.object=this.scatterPlot,this.scatterPlot.highlight(t.data)),t.textLabel=\"\",this.textLabels&&(Array.isArray(this.textLabels)?(this.textLabels[e]||0===this.textLabels[e])&&(t.textLabel=this.textLabels[e]):t.textLabel=this.textLabels),t.traceCoordinate=[this.data.x[e],this.data.y[e],this.data.z[e]],!0}},m.update=function(t){var e,r,l,c,u=this.scene.glplot.gl,h=f.solid;this.data=t;var p=k(this.scene,t);\"mode\"in p&&(this.mode=p.mode),\"lineDashes\"in p&&p.lineDashes in f&&(h=f[p.lineDashes]),this.color=T(p.scatterColor)||T(p.lineColor),this.dataPoints=p.position,e={gl:this.scene.glplot.gl,position:p.position,color:p.lineColor,lineWidth:p.lineWidth||1,dashes:h[0],dashScale:h[1],opacity:t.opacity,connectGaps:t.connectgaps},-1!==this.mode.indexOf(\"lines\")?this.linePlot?this.linePlot.update(e):(this.linePlot=n(e),this.linePlot._trace=this,this.scene.glplot.add(this.linePlot)):this.linePlot&&(this.scene.glplot.remove(this.linePlot),this.linePlot.dispose(),this.linePlot=null);var d=t.opacity;if(t.marker&&t.marker.opacity&&(d*=t.marker.opacity),r={gl:this.scene.glplot.gl,position:p.position,color:p.scatterColor,size:p.scatterSize,glyph:p.scatterMarker,opacity:d,orthographic:!0,lineWidth:p.scatterLineWidth,lineColor:p.scatterLineColor,project:p.project,projectScale:p.projectScale,projectOpacity:p.projectOpacity},-1!==this.mode.indexOf(\"markers\")?this.scatterPlot?this.scatterPlot.update(r):(this.scatterPlot=a(r),this.scatterPlot._trace=this,this.scatterPlot.highlightScale=1,this.scene.glplot.add(this.scatterPlot)):this.scatterPlot&&(this.scene.glplot.remove(this.scatterPlot),this.scatterPlot.dispose(),this.scatterPlot=null),c={gl:this.scene.glplot.gl,position:p.position,glyph:p.text,color:p.textColor,size:p.textSize,angle:p.textAngle,alignment:p.textOffset,font:p.textFont,orthographic:!0,lineWidth:0,project:!1,opacity:t.opacity},this.textLabels=t.hovertext||t.text,-1!==this.mode.indexOf(\"text\")?this.textMarkers?this.textMarkers.update(c):(this.textMarkers=a(c),this.textMarkers._trace=this,this.textMarkers.highlightScale=1,this.scene.glplot.add(this.textMarkers)):this.textMarkers&&(this.scene.glplot.remove(this.textMarkers),this.textMarkers.dispose(),this.textMarkers=null),l={gl:this.scene.glplot.gl,position:p.position,color:p.errorColor,error:p.errorBounds,lineWidth:p.errorLineWidth,capSize:p.errorCapSize,opacity:t.opacity},this.errorBars?p.errorBounds?this.errorBars.update(l):(this.scene.glplot.remove(this.errorBars),this.errorBars.dispose(),this.errorBars=null):p.errorBounds&&(this.errorBars=i(l),this.errorBars._trace=this,this.scene.glplot.add(this.errorBars)),p.delaunayAxis>=0){var g=function(t,e,r){var n,a=(r+1)%3,i=(r+2)%3,o=[],l=[];for(n=0;n<t.length;++n){var c=t[n];!isNaN(c[a])&&isFinite(c[a])&&!isNaN(c[i])&&isFinite(c[i])&&(o.push([c[a],c[i]]),l.push(n))}var u=s(o);for(n=0;n<u.length;++n)for(var h=u[n],f=0;f<h.length;++f)h[f]=l[h[f]];return{positions:t,cells:u,meshColor:e}}(p.position,p.delaunayColor,p.delaunayAxis);g.opacity=t.opacity,this.delaunayMesh?this.delaunayMesh.update(g):(g.gl=u,this.delaunayMesh=o(g),this.delaunayMesh._trace=this,this.scene.glplot.add(this.delaunayMesh))}else this.delaunayMesh&&(this.scene.glplot.remove(this.delaunayMesh),this.delaunayMesh.dispose(),this.delaunayMesh=null)},m.dispose=function(){this.linePlot&&(this.scene.glplot.remove(this.linePlot),this.linePlot.dispose()),this.scatterPlot&&(this.scene.glplot.remove(this.scatterPlot),this.scatterPlot.dispose()),this.errorBars&&(this.scene.glplot.remove(this.errorBars),this.errorBars.dispose()),this.textMarkers&&(this.scene.glplot.remove(this.textMarkers),this.textMarkers.dispose()),this.delaunayMesh&&(this.scene.glplot.remove(this.delaunayMesh),this.delaunayMesh.dispose())},e.exports=function(t,e){var r=new v(t,e.uid);return r.update(e),r}},{\"../../components/fx/helpers\":629,\"../../constants/gl3d_dashes\":692,\"../../constants/gl3d_markers\":693,\"../../lib\":719,\"../../lib/gl_format_color\":716,\"../../lib/str2rgbarray\":742,\"../scatter/make_bubble_size_func\":1127,\"./calc_errors\":1139,\"delaunay-triangulate\":166,\"gl-error3d\":248,\"gl-line3d\":256,\"gl-mesh3d\":281,\"gl-scatter3d\":298}],1141:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\"),i=t(\"../scatter/subtypes\"),o=t(\"../scatter/marker_defaults\"),s=t(\"../scatter/line_defaults\"),l=t(\"../scatter/text_defaults\"),c=t(\"./attributes\");e.exports=function(t,e,r,u){function h(r,n){return a.coerce(t,e,c,r,n)}if(function(t,e,r,a){var i=0,o=r(\"x\"),s=r(\"y\"),l=r(\"z\");n.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\",\"y\",\"z\"],a),o&&s&&l&&(i=Math.min(o.length,s.length,l.length),e._length=e._xlength=e._ylength=e._zlength=i);return i}(t,e,h,u)){h(\"text\"),h(\"hovertext\"),h(\"hovertemplate\"),h(\"mode\"),i.hasLines(e)&&(h(\"connectgaps\"),s(t,e,r,u,h)),i.hasMarkers(e)&&o(t,e,r,u,h,{noSelect:!0}),i.hasText(e)&&(h(\"texttemplate\"),l(t,e,u,h,{noSelect:!0}));var f=(e.line||{}).color,p=(e.marker||{}).color;h(\"surfaceaxis\")>=0&&h(\"surfacecolor\",f||p);for(var d=[\"x\",\"y\",\"z\"],g=0;g<3;++g){var v=\"projection.\"+d[g];h(v+\".show\")&&(h(v+\".opacity\"),h(v+\".scale\"))}var m=n.getComponentMethod(\"errorbars\",\"supplyDefaults\");m(t,e,f||p||r,{axis:\"z\"}),m(t,e,f||p||r,{axis:\"y\",inherit:\"z\"}),m(t,e,f||p||r,{axis:\"x\",inherit:\"z\"})}else e.visible=!1}},{\"../../lib\":719,\"../../registry\":848,\"../scatter/line_defaults\":1123,\"../scatter/marker_defaults\":1129,\"../scatter/subtypes\":1134,\"../scatter/text_defaults\":1135,\"./attributes\":1137}],1142:[function(t,e,r){\"use strict\";e.exports={plot:t(\"./convert\"),attributes:t(\"./attributes\"),markerSymbols:t(\"../../constants/gl3d_markers\"),supplyDefaults:t(\"./defaults\"),colorbar:[{container:\"marker\",min:\"cmin\",max:\"cmax\"},{container:\"line\",min:\"cmin\",max:\"cmax\"}],calc:t(\"./calc\"),moduleType:\"trace\",name:\"scatter3d\",basePlotModule:t(\"../../plots/gl3d\"),categories:[\"gl3d\",\"symbols\",\"showLegend\",\"scatter-like\"],meta:{}}},{\"../../constants/gl3d_markers\":693,\"../../plots/gl3d\":807,\"./attributes\":1137,\"./calc\":1138,\"./convert\":1140,\"./defaults\":1141}],1143:[function(t,e,r){\"use strict\";var n=t(\"../scatter/attributes\"),a=t(\"../../plots/attributes\"),i=t(\"../../plots/template_attributes\").hovertemplateAttrs,o=t(\"../../plots/template_attributes\").texttemplateAttrs,s=t(\"../../components/colorscale/attributes\"),l=t(\"../../lib/extend\").extendFlat,c=n.marker,u=n.line,h=c.line;e.exports={carpet:{valType:\"string\",editType:\"calc\"},a:{valType:\"data_array\",editType:\"calc\"},b:{valType:\"data_array\",editType:\"calc\"},mode:l({},n.mode,{dflt:\"markers\"}),text:l({},n.text,{}),texttemplate:o({editType:\"plot\"},{keys:[\"a\",\"b\",\"text\"]}),hovertext:l({},n.hovertext,{}),line:{color:u.color,width:u.width,dash:u.dash,shape:l({},u.shape,{values:[\"linear\",\"spline\"]}),smoothing:u.smoothing,editType:\"calc\"},connectgaps:n.connectgaps,fill:l({},n.fill,{values:[\"none\",\"toself\",\"tonext\"],dflt:\"none\"}),fillcolor:n.fillcolor,marker:l({symbol:c.symbol,opacity:c.opacity,maxdisplayed:c.maxdisplayed,size:c.size,sizeref:c.sizeref,sizemin:c.sizemin,sizemode:c.sizemode,line:l({width:h.width,editType:\"calc\"},s(\"marker.line\")),gradient:c.gradient,editType:\"calc\"},s(\"marker\")),textfont:n.textfont,textposition:n.textposition,selected:n.selected,unselected:n.unselected,hoverinfo:l({},a.hoverinfo,{flags:[\"a\",\"b\",\"text\",\"name\"]}),hoveron:n.hoveron,hovertemplate:i()}},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plots/attributes\":764,\"../../plots/template_attributes\":843,\"../scatter/attributes\":1111}],1144:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../scatter/colorscale_calc\"),i=t(\"../scatter/arrays_to_calcdata\"),o=t(\"../scatter/calc_selection\"),s=t(\"../scatter/calc\").calcMarkerSize,l=t(\"../carpet/lookup_carpetid\");e.exports=function(t,e){var r=e._carpetTrace=l(t,e);if(r&&r.visible&&\"legendonly\"!==r.visible){var c;e.xaxis=r.xaxis,e.yaxis=r.yaxis;var u,h,f=e._length,p=new Array(f),d=!1;for(c=0;c<f;c++)if(u=e.a[c],h=e.b[c],n(u)&&n(h)){var g=r.ab2xy(+u,+h,!0),v=r.isVisible(+u,+h);v||(d=!0),p[c]={x:g[0],y:g[1],a:u,b:h,vis:v}}else p[c]={x:!1,y:!1};return e._needsCull=d,p[0].carpet=r,p[0].trace=e,s(e,f),a(t,e),i(p,e),o(p,e),p}}},{\"../carpet/lookup_carpetid\":916,\"../scatter/arrays_to_calcdata\":1110,\"../scatter/calc\":1112,\"../scatter/calc_selection\":1113,\"../scatter/colorscale_calc\":1114,\"fast-isnumeric\":226}],1145:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../scatter/constants\"),i=t(\"../scatter/subtypes\"),o=t(\"../scatter/marker_defaults\"),s=t(\"../scatter/line_defaults\"),l=t(\"../scatter/line_shape_defaults\"),c=t(\"../scatter/text_defaults\"),u=t(\"../scatter/fillcolor_defaults\"),h=t(\"./attributes\");e.exports=function(t,e,r,f){function p(r,a){return n.coerce(t,e,h,r,a)}p(\"carpet\"),e.xaxis=\"x\",e.yaxis=\"y\";var d=p(\"a\"),g=p(\"b\"),v=Math.min(d.length,g.length);if(v){e._length=v,p(\"text\"),p(\"texttemplate\"),p(\"hovertext\"),p(\"mode\",v<a.PTS_LINESONLY?\"lines+markers\":\"lines\"),i.hasLines(e)&&(s(t,e,r,f,p),l(t,e,p),p(\"connectgaps\")),i.hasMarkers(e)&&o(t,e,r,f,p,{gradient:!0}),i.hasText(e)&&c(t,e,f,p);var m=[];(i.hasMarkers(e)||i.hasText(e))&&(p(\"marker.maxdisplayed\"),m.push(\"points\")),p(\"fill\"),\"none\"!==e.fill&&(u(t,e,r,p),i.hasLines(e)||l(t,e,p)),\"tonext\"!==e.fill&&\"toself\"!==e.fill||m.push(\"fills\"),\"fills\"!==p(\"hoveron\",m.join(\"+\")||\"points\")&&p(\"hovertemplate\"),n.coerceSelectionMarkerOpacity(e,p)}else e.visible=!1}},{\"../../lib\":719,\"../scatter/constants\":1115,\"../scatter/fillcolor_defaults\":1119,\"../scatter/line_defaults\":1123,\"../scatter/line_shape_defaults\":1125,\"../scatter/marker_defaults\":1129,\"../scatter/subtypes\":1134,\"../scatter/text_defaults\":1135,\"./attributes\":1143}],1146:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,a){var i=n[a];return t.a=i.a,t.b=i.b,t.y=i.y,t}},{}],1147:[function(t,e,r){\"use strict\";var n=t(\"../scatter/hover\"),a=t(\"../../lib\").fillText;e.exports=function(t,e,r,i){var o=n(t,e,r,i);if(o&&!1!==o[0].index){var s=o[0];if(void 0===s.index){var l=1-s.y0/t.ya._length,c=t.xa._length,u=c*l/2,h=c-u;return s.x0=Math.max(Math.min(s.x0,h),u),s.x1=Math.max(Math.min(s.x1,h),u),o}var f=s.cd[s.index];s.a=f.a,s.b=f.b,s.xLabelVal=void 0,s.yLabelVal=void 0;var p=s.trace,d=p._carpet,g=d.ab2ij([f.a,f.b]),v=Math.floor(g[0]),m=g[0]-v,y=Math.floor(g[1]),x=g[1]-y,b=d.evalxy([],v,y,m,x);s.yLabel=b[1].toFixed(3),delete s.text;var _=[];if(!p.hovertemplate){var w=(f.hi||p.hoverinfo).split(\"+\");-1!==w.indexOf(\"all\")&&(w=[\"a\",\"b\",\"text\"]),-1!==w.indexOf(\"a\")&&k(d.aaxis,f.a),-1!==w.indexOf(\"b\")&&k(d.baxis,f.b),_.push(\"y: \"+s.yLabel),-1!==w.indexOf(\"text\")&&a(f,p,_),s.extraText=_.join(\"<br>\")}return o}function k(t,e){var r;r=t.labelprefix&&t.labelprefix.length>0?t.labelprefix.replace(/ = $/,\"\"):t._hovertitle,_.push(r+\": \"+e.toFixed(3)+t.labelsuffix)}}},{\"../../lib\":719,\"../scatter/hover\":1121}],1148:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../scatter/marker_colorbar\"),calc:t(\"./calc\"),plot:t(\"./plot\"),style:t(\"../scatter/style\").style,styleOnSelect:t(\"../scatter/style\").styleOnSelect,hoverPoints:t(\"./hover\"),selectPoints:t(\"../scatter/select\"),eventData:t(\"./event_data\"),moduleType:\"trace\",name:\"scattercarpet\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"svg\",\"carpet\",\"symbols\",\"showLegend\",\"carpetDependent\",\"zoomScale\"],meta:{}}},{\"../../plots/cartesian\":778,\"../scatter/marker_colorbar\":1128,\"../scatter/select\":1131,\"../scatter/style\":1133,\"./attributes\":1143,\"./calc\":1144,\"./defaults\":1145,\"./event_data\":1146,\"./hover\":1147,\"./plot\":1149}],1149:[function(t,e,r){\"use strict\";var n=t(\"../scatter/plot\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"../../components/drawing\");e.exports=function(t,e,r,o){var s,l,c,u=r[0][0].carpet,h={xaxis:a.getFromId(t,u.xaxis||\"x\"),yaxis:a.getFromId(t,u.yaxis||\"y\"),plot:e.plot};for(n(t,h,r,o),s=0;s<r.length;s++)l=r[s][0].trace,c=o.selectAll(\"g.trace\"+l.uid+\" .js-line\"),i.setClipUrl(c,r[s][0].carpet._clipPathId,t)}},{\"../../components/drawing\":615,\"../../plots/cartesian/axes\":767,\"../scatter/plot\":1130}],1150:[function(t,e,r){\"use strict\";var n=t(\"../../plots/template_attributes\").hovertemplateAttrs,a=t(\"../../plots/template_attributes\").texttemplateAttrs,i=t(\"../scatter/attributes\"),o=t(\"../../plots/attributes\"),s=t(\"../../components/colorscale/attributes\"),l=t(\"../../components/drawing/attributes\").dash,c=t(\"../../lib/extend\").extendFlat,u=t(\"../../plot_api/edit_types\").overrideAll,h=i.marker,f=i.line,p=h.line;e.exports=u({lon:{valType:\"data_array\"},lat:{valType:\"data_array\"},locations:{valType:\"data_array\"},locationmode:{valType:\"enumerated\",values:[\"ISO-3\",\"USA-states\",\"country names\"],dflt:\"ISO-3\"},mode:c({},i.mode,{dflt:\"markers\"}),text:c({},i.text,{}),texttemplate:a({editType:\"plot\"},{keys:[\"lat\",\"lon\",\"location\",\"text\"]}),hovertext:c({},i.hovertext,{}),textfont:i.textfont,textposition:i.textposition,line:{color:f.color,width:f.width,dash:l},connectgaps:i.connectgaps,marker:c({symbol:h.symbol,opacity:h.opacity,size:h.size,sizeref:h.sizeref,sizemin:h.sizemin,sizemode:h.sizemode,colorbar:h.colorbar,line:c({width:p.width},s(\"marker.line\")),gradient:h.gradient},s(\"marker\")),fill:{valType:\"enumerated\",values:[\"none\",\"toself\"],dflt:\"none\"},fillcolor:i.fillcolor,selected:i.selected,unselected:i.unselected,hoverinfo:c({},o.hoverinfo,{flags:[\"lon\",\"lat\",\"location\",\"text\",\"name\"]}),hovertemplate:n()},\"calc\",\"nested\")},{\"../../components/colorscale/attributes\":601,\"../../components/drawing/attributes\":614,\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../../plots/attributes\":764,\"../../plots/template_attributes\":843,\"../scatter/attributes\":1111}],1151:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../constants/numerical\").BADNUM,i=t(\"../scatter/colorscale_calc\"),o=t(\"../scatter/arrays_to_calcdata\"),s=t(\"../scatter/calc_selection\"),l=t(\"../../lib\")._;e.exports=function(t,e){for(var r=Array.isArray(e.locations),c=r?e.locations.length:e._length,u=new Array(c),h=0;h<c;h++){var f=u[h]={};if(r){var p=e.locations[h];f.loc=\"string\"==typeof p?p:null}else{var d=e.lon[h],g=e.lat[h];n(d)&&n(g)?f.lonlat=[+d,+g]:f.lonlat=[a,a]}}return o(u,e),i(t,e),s(u,e),c&&(u[0].t={labels:{lat:l(t,\"lat:\")+\" \",lon:l(t,\"lon:\")+\" \"}}),u}},{\"../../constants/numerical\":695,\"../../lib\":719,\"../scatter/arrays_to_calcdata\":1110,\"../scatter/calc_selection\":1113,\"../scatter/colorscale_calc\":1114,\"fast-isnumeric\":226}],1152:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../scatter/subtypes\"),i=t(\"../scatter/marker_defaults\"),o=t(\"../scatter/line_defaults\"),s=t(\"../scatter/text_defaults\"),l=t(\"../scatter/fillcolor_defaults\"),c=t(\"./attributes\");e.exports=function(t,e,r,u){function h(r,a){return n.coerce(t,e,c,r,a)}!function(t,e,r){var n,a,i=0,o=r(\"locations\");if(o)return r(\"locationmode\"),i=o.length;return n=r(\"lon\")||[],a=r(\"lat\")||[],i=Math.min(n.length,a.length),e._length=i,i}(0,e,h)?e.visible=!1:(h(\"text\"),h(\"hovertext\"),h(\"hovertemplate\"),h(\"mode\"),a.hasLines(e)&&(o(t,e,r,u,h),h(\"connectgaps\")),a.hasMarkers(e)&&i(t,e,r,u,h,{gradient:!0}),a.hasText(e)&&(h(\"texttemplate\"),s(t,e,u,h)),h(\"fill\"),\"none\"!==e.fill&&l(t,e,r,h),n.coerceSelectionMarkerOpacity(e,h))}},{\"../../lib\":719,\"../scatter/fillcolor_defaults\":1119,\"../scatter/line_defaults\":1123,\"../scatter/marker_defaults\":1129,\"../scatter/subtypes\":1134,\"../scatter/text_defaults\":1135,\"./attributes\":1150}],1153:[function(t,e,r){\"use strict\";e.exports=function(t,e){return t.lon=e.lon,t.lat=e.lat,t.location=e.loc?e.loc:null,t}},{}],1154:[function(t,e,r){\"use strict\";var n=t(\"../../components/fx\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"../../constants/numerical\").BADNUM,o=t(\"../scatter/get_trace_color\"),s=t(\"../../lib\").fillText,l=t(\"./attributes\");e.exports=function(t,e,r){var c=t.cd,u=c[0].trace,h=t.xa,f=t.ya,p=t.subplot,d=p.projection.isLonLatOverEdges,g=p.project;if(n.getClosest(c,function(t){var n=t.lonlat;if(n[0]===i)return 1/0;if(d(n))return 1/0;var a=g(n),o=g([e,r]),s=Math.abs(a[0]-o[0]),l=Math.abs(a[1]-o[1]),c=Math.max(3,t.mrc||0);return Math.max(Math.sqrt(s*s+l*l)-c,1-3/c)},t),!1!==t.index){var v=c[t.index],m=v.lonlat,y=[h.c2p(m),f.c2p(m)],x=v.mrc||1;t.x0=y[0]-x,t.x1=y[0]+x,t.y0=y[1]-x,t.y1=y[1]+x,t.loc=v.loc,t.lon=m[0],t.lat=m[1];var b=p.mockAxis;return t.lonLabel=a.tickText(b,b.c2l(t.lon),\"hover\").text,t.latLabel=a.tickText(b,b.c2l(t.lat),\"hover\").text,t.color=o(u,v),t.extraText=function(t,e,r,n){if(t.hovertemplate)return;var a=e.hi||t.hoverinfo,i=\"all\"===a?l.hoverinfo.flags:a.split(\"+\"),o=-1!==i.indexOf(\"location\")&&Array.isArray(t.locations),c=-1!==i.indexOf(\"lon\"),u=-1!==i.indexOf(\"lat\"),h=-1!==i.indexOf(\"text\"),f=[];function p(t){return t+\"\\xb0\"}o?f.push(e.loc):c&&u?f.push(\"(\"+p(r.lonLabel)+\", \"+p(r.latLabel)+\")\"):c?f.push(n.lon+p(r.lonLabel)):u&&f.push(n.lat+p(r.latLabel));h&&s(e,t,f);return f.join(\"<br>\")}(u,v,t,c[0].t.labels),t.hovertemplate=u.hovertemplate,[t]}}},{\"../../components/fx\":632,\"../../constants/numerical\":695,\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../scatter/get_trace_color\":1120,\"./attributes\":1150}],1155:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../scatter/marker_colorbar\"),calc:t(\"./calc\"),plot:t(\"./plot\"),style:t(\"./style\"),styleOnSelect:t(\"../scatter/style\").styleOnSelect,hoverPoints:t(\"./hover\"),eventData:t(\"./event_data\"),selectPoints:t(\"./select\"),moduleType:\"trace\",name:\"scattergeo\",basePlotModule:t(\"../../plots/geo\"),categories:[\"geo\",\"symbols\",\"showLegend\",\"scatter-like\"],meta:{}}},{\"../../plots/geo\":797,\"../scatter/marker_colorbar\":1128,\"../scatter/style\":1133,\"./attributes\":1150,\"./calc\":1151,\"./defaults\":1152,\"./event_data\":1153,\"./hover\":1154,\"./plot\":1156,\"./select\":1157,\"./style\":1158}],1156:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../lib\"),i=t(\"../../constants/numerical\").BADNUM,o=t(\"../../lib/topojson_utils\").getTopojsonFeatures,s=t(\"../../lib/geo_location_utils\").locationToFeature,l=t(\"../../lib/geojson_utils\"),c=t(\"../scatter/subtypes\"),u=t(\"./style\");function h(t,e){var r=t[0].trace;if(Array.isArray(r.locations))for(var n=o(r,e),a=r.locationmode,l=0;l<t.length;l++){var c=t[l],u=s(a,c.loc,n);c.lonlat=u?u.properties.ct:[i,i]}}e.exports=function(t,e,r){for(var o=0;o<r.length;o++)h(r[o],e.topojson);function s(t,e){t.lonlat[0]===i&&n.select(e).remove()}var f=e.layers.frontplot.select(\".scatterlayer\"),p=a.makeTraceGroups(f,r,\"trace scattergeo\");p.selectAll(\"*\").remove(),p.each(function(e){var r=n.select(this),i=e[0].trace;if(c.hasLines(i)||\"none\"!==i.fill){var o=l.calcTraceToLineCoords(e),h=\"none\"!==i.fill?l.makePolygon(o):l.makeLine(o);r.selectAll(\"path.js-line\").data([{geojson:h,trace:i}]).enter().append(\"path\").classed(\"js-line\",!0).style(\"stroke-miterlimit\",2)}c.hasMarkers(i)&&r.selectAll(\"path.point\").data(a.identity).enter().append(\"path\").classed(\"point\",!0).each(function(t){s(t,this)}),c.hasText(i)&&r.selectAll(\"g\").data(a.identity).enter().append(\"g\").append(\"text\").each(function(t){s(t,this)}),u(t,e)})}},{\"../../constants/numerical\":695,\"../../lib\":719,\"../../lib/geo_location_utils\":713,\"../../lib/geojson_utils\":714,\"../../lib/topojson_utils\":746,\"../scatter/subtypes\":1134,\"./style\":1158,d3:164}],1157:[function(t,e,r){\"use strict\";var n=t(\"../scatter/subtypes\"),a=t(\"../../constants/numerical\").BADNUM;e.exports=function(t,e){var r,i,o,s,l,c=t.cd,u=t.xaxis,h=t.yaxis,f=[],p=c[0].trace;if(!n.hasMarkers(p)&&!n.hasText(p))return[];if(!1===e)for(l=0;l<c.length;l++)c[l].selected=0;else for(l=0;l<c.length;l++)(i=(r=c[l]).lonlat)[0]!==a&&(o=u.c2p(i),s=h.c2p(i),e.contains([o,s],null,l,t)?(f.push({pointNumber:l,lon:i[0],lat:i[1]}),r.selected=1):r.selected=0);return f}},{\"../../constants/numerical\":695,\"../scatter/subtypes\":1134}],1158:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/drawing\"),i=t(\"../../components/color\"),o=t(\"../scatter/style\"),s=o.stylePoints,l=o.styleText;e.exports=function(t,e){e&&function(t,e){var r=e[0].trace,o=e[0].node3;o.style(\"opacity\",e[0].trace.opacity),s(o,r,t),l(o,r,t),o.selectAll(\"path.js-line\").style(\"fill\",\"none\").each(function(t){var e=n.select(this),r=t.trace,o=r.line||{};e.call(i.stroke,o.color).call(a.dashLine,o.dash||\"\",o.width||0),\"none\"!==r.fill&&e.call(i.fill,r.fillcolor)})}(t,e)}},{\"../../components/color\":594,\"../../components/drawing\":615,\"../scatter/style\":1133,d3:164}],1159:[function(t,e,r){\"use strict\";var n=t(\"../../plots/attributes\"),a=t(\"../scatter/attributes\"),i=t(\"../../components/colorscale/attributes\"),o=t(\"../../lib/extend\").extendFlat,s=t(\"../../plot_api/edit_types\").overrideAll,l=t(\"./constants\").DASHES,c=a.line,u=a.marker,h=u.line,f=e.exports=s({x:a.x,x0:a.x0,dx:a.dx,y:a.y,y0:a.y0,dy:a.dy,text:a.text,hovertext:a.hovertext,textposition:a.textposition,textfont:a.textfont,mode:{valType:\"flaglist\",flags:[\"lines\",\"markers\",\"text\"],extras:[\"none\"]},line:{color:c.color,width:c.width,shape:{valType:\"enumerated\",values:[\"linear\",\"hv\",\"vh\",\"hvh\",\"vhv\"],dflt:\"linear\",editType:\"plot\"},dash:{valType:\"enumerated\",values:Object.keys(l),dflt:\"solid\"}},marker:o({},i(\"marker\"),{symbol:u.symbol,size:u.size,sizeref:u.sizeref,sizemin:u.sizemin,sizemode:u.sizemode,opacity:u.opacity,colorbar:u.colorbar,line:o({},i(\"marker.line\"),{width:h.width})}),connectgaps:a.connectgaps,fill:o({},a.fill,{dflt:\"none\"}),fillcolor:a.fillcolor,selected:{marker:a.selected.marker,textfont:a.selected.textfont},unselected:{marker:a.unselected.marker,textfont:a.unselected.textfont},opacity:n.opacity},\"calc\",\"nested\");f.x.editType=f.y.editType=f.x0.editType=f.y0.editType=\"calc+clearAxisTypes\",f.hovertemplate=a.hovertemplate,f.texttemplate=a.texttemplate},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../../plots/attributes\":764,\"../scatter/attributes\":1111,\"./constants\":1161}],1160:[function(t,e,r){\"use strict\";var n=t(\"point-cluster\"),a=t(\"../../lib\"),i=t(\"../../plots/cartesian/axis_ids\"),o=t(\"../../plots/cartesian/autorange\").findExtremes,s=t(\"../scatter/calc\"),l=s.calcMarkerSize,c=s.calcAxisExpansion,u=s.setFirstScatter,h=t(\"../scatter/colorscale_calc\"),f=t(\"./convert\"),p=t(\"./scene_update\"),d=t(\"../../constants/numerical\").BADNUM,g=t(\"./constants\").TOO_MANY_POINTS;function v(t,e,r){var n=t._extremes[e._id],a=o(e,r._bnds,{padded:!0});n.min=n.min.concat(a.min),n.max=n.max.concat(a.max)}e.exports=function(t,e){var r,o,s,m=t._fullLayout,y=i.getFromId(t,e.xaxis),x=i.getFromId(t,e.yaxis),b=m._plots[e.xaxis+e.yaxis],_=e._length,w=_>=g,k=2*_,T={},A=y.makeCalcdata(e,\"x\"),M=x.makeCalcdata(e,\"y\"),S=new Array(k);for(r=0;r<_;r++)o=A[r],s=M[r],S[2*r]=o===d?NaN:o,S[2*r+1]=s===d?NaN:s;if(\"log\"===y.type)for(r=0;r<k;r+=2)S[r]=y.c2l(S[r]);if(\"log\"===x.type)for(r=1;r<k;r+=2)S[r]=x.c2l(S[r]);if(w&&\"log\"!==y.type&&\"log\"!==x.type)T.tree=n(S);else{var E=T.ids=new Array(_);for(r=0;r<_;r++)E[r]=r}h(t,e);var C,L=function(t,e,r,n,i,o){var s=f.style(t,r);s.marker&&(s.marker.positions=n);s.line&&n.length>1&&a.extendFlat(s.line,f.linePositions(t,r,n));if(s.errorX||s.errorY){var l=f.errorBarPositions(t,r,n,i,o);s.errorX&&a.extendFlat(s.errorX,l.x),s.errorY&&a.extendFlat(s.errorY,l.y)}s.text&&(a.extendFlat(s.text,{positions:n},f.textPosition(t,r,s.text,s.marker)),a.extendFlat(s.textSel,{positions:n},f.textPosition(t,r,s.text,s.markerSel)),a.extendFlat(s.textUnsel,{positions:n},f.textPosition(t,r,s.text,s.markerUnsel)));return s}(t,0,e,S,A,M),P=p(t,b);return u(m,e),w?L.marker&&(C=2*(L.marker.sizeAvg||Math.max(L.marker.size,3))):C=l(e,_),c(t,e,y,x,A,M,C),L.errorX&&v(e,y,L.errorX),L.errorY&&v(e,x,L.errorY),L.fill&&!P.fill2d&&(P.fill2d=!0),L.marker&&!P.scatter2d&&(P.scatter2d=!0),L.line&&!P.line2d&&(P.line2d=!0),!L.errorX&&!L.errorY||P.error2d||(P.error2d=!0),L.text&&!P.glText&&(P.glText=!0),L.marker&&(L.marker.snap=T.tree||g),P.lineOptions.push(L.line),P.errorXOptions.push(L.errorX),P.errorYOptions.push(L.errorY),P.fillOptions.push(L.fill),P.markerOptions.push(L.marker),P.markerSelectedOptions.push(L.markerSel),P.markerUnselectedOptions.push(L.markerUnsel),P.textOptions.push(L.text),P.textSelectedOptions.push(L.textSel),P.textUnselectedOptions.push(L.textUnsel),P.selectBatch.push([]),P.unselectBatch.push([]),T._scene=P,T.index=P.count,T.x=A,T.y=M,T.positions=S,P.count++,[{x:!1,y:!1,t:T,trace:e}]}},{\"../../constants/numerical\":695,\"../../lib\":719,\"../../plots/cartesian/autorange\":766,\"../../plots/cartesian/axis_ids\":770,\"../scatter/calc\":1112,\"../scatter/colorscale_calc\":1114,\"./constants\":1161,\"./convert\":1162,\"./scene_update\":1168,\"point-cluster\":470}],1161:[function(t,e,r){\"use strict\";e.exports={TOO_MANY_POINTS:1e5,SYMBOL_SDF_SIZE:200,SYMBOL_SIZE:20,SYMBOL_STROKE:1,DOT_RE:/-dot/,OPEN_RE:/-open/,DASHES:{solid:[1],dot:[1,1],dash:[4,1],longdash:[8,1],dashdot:[4,1,1,1],longdashdot:[8,1,1,1]}}},{}],1162:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"svg-path-sdf\"),i=t(\"color-normalize\"),o=t(\"../../registry\"),s=t(\"../../lib\"),l=t(\"../../components/drawing\"),c=t(\"../../plots/cartesian/axis_ids\"),u=t(\"../../lib/gl_format_color\").formatColor,h=t(\"../scatter/subtypes\"),f=t(\"../scatter/make_bubble_size_func\"),p=t(\"./constants\"),d=t(\"../../constants/interactions\").DESELECTDIM,g={start:1,left:1,end:-1,right:-1,middle:0,center:0,bottom:1,top:-1},v=t(\"../../components/fx/helpers\").appendArrayPointValue;function m(t,e){var r,a=t._length,i=t.textfont,o=t.textposition,l=Array.isArray(o)?o:[o],c=i.color,u=i.size,h=i.family,f={},p=t.texttemplate;if(p){f.text=[];var d=Array.isArray(p),g=d?Math.min(p.length,a):a,m=d?function(t){return p[t]}:function(){return p},y=e._fullLayout._d3locale;for(r=0;r<g;r++){var x={};v(x,t,r),f.text.push(s.texttemplateString(m(r),x,y,x,t._meta||{}))}}else Array.isArray(t.text)&&t.text.length<a?f.text=t.text.slice():f.text=t.text;if(Array.isArray(f.text))for(r=f.text.length;r<a;r++)f.text[r]=\"\";for(f.opacity=t.opacity,f.font={},f.align=[],f.baseline=[],r=0;r<l.length;r++){var b=l[r].split(/\\s+/);switch(b[1]){case\"left\":f.align.push(\"right\");break;case\"right\":f.align.push(\"left\");break;default:f.align.push(b[1])}switch(b[0]){case\"top\":f.baseline.push(\"bottom\");break;case\"bottom\":f.baseline.push(\"top\");break;default:f.baseline.push(b[0])}}if(Array.isArray(c))for(f.color=new Array(a),r=0;r<a;r++)f.color[r]=c[r];else f.color=c;if(Array.isArray(u)||Array.isArray(h))for(f.font=new Array(a),r=0;r<a;r++){var _=f.font[r]={};_.size=Array.isArray(u)?n(u[r])?u[r]:0:u,_.family=Array.isArray(h)?h[r]:h}else f.font={size:u,family:h};return f}function y(t){var e,r,n=t._length,a=t.marker,o={},l=Array.isArray(a.symbol),c=s.isArrayOrTypedArray(a.color),h=s.isArrayOrTypedArray(a.line.color),d=s.isArrayOrTypedArray(a.opacity),g=s.isArrayOrTypedArray(a.size),v=s.isArrayOrTypedArray(a.line.width);if(l||(r=p.OPEN_RE.test(a.symbol)),l||c||h||d){o.colors=new Array(n),o.borderColors=new Array(n);var m=u(a,a.opacity,n),y=u(a.line,a.opacity,n);if(!Array.isArray(y[0])){var x=y;for(y=Array(n),e=0;e<n;e++)y[e]=x}if(!Array.isArray(m[0])){var b=m;for(m=Array(n),e=0;e<n;e++)m[e]=b}for(o.colors=m,o.borderColors=y,e=0;e<n;e++){if(l){var _=a.symbol[e];r=p.OPEN_RE.test(_)}r&&(y[e]=m[e].slice(),m[e]=m[e].slice(),m[e][3]=0)}o.opacity=t.opacity}else r?(o.color=i(a.color,\"uint8\"),o.color[3]=0,o.borderColor=i(a.color,\"uint8\")):(o.color=i(a.color,\"uint8\"),o.borderColor=i(a.line.color,\"uint8\")),o.opacity=t.opacity*a.opacity;if(l)for(o.markers=new Array(n),e=0;e<n;e++)o.markers[e]=S(a.symbol[e]);else o.marker=S(a.symbol);var w,k=f(t);if(g||v){var T,A=o.sizes=new Array(n),M=o.borderSizes=new Array(n),E=0;if(g){for(e=0;e<n;e++)A[e]=k(a.size[e]),E+=A[e];T=E/n}else for(w=k(a.size),e=0;e<n;e++)A[e]=w;if(v)for(e=0;e<n;e++)M[e]=a.line.width[e]/2;else for(w=a.line.width/2,e=0;e<n;e++)M[e]=w;o.sizeAvg=T}else o.size=k(a&&a.size||10),o.borderSizes=k(a.line.width);return o}function x(t,e){var r=t.marker,n={};return e?(e.marker&&e.marker.symbol?n=y(s.extendFlat({},r,e.marker)):e.marker&&(e.marker.size&&(n.size=e.marker.size/2),e.marker.color&&(n.colors=e.marker.color),void 0!==e.marker.opacity&&(n.opacity=e.marker.opacity)),n):n}function b(t,e){var r={};if(!e)return r;if(e.textfont){var n={opacity:1,text:t.text,textposition:t.textposition,textfont:s.extendFlat({},t.textfont)};e.textfont&&s.extendFlat(n.textfont,e.textfont),r=m(n)}return r}function _(t,e){var r={capSize:2*e.width,lineWidth:e.thickness,color:e.color};return e.copy_ystyle&&(r=t.error_y),r}var w=p.SYMBOL_SDF_SIZE,k=p.SYMBOL_SIZE,T=p.SYMBOL_STROKE,A={},M=l.symbolFuncs[0](.05*k);function S(t){if(\"circle\"===t)return null;var e,r,n=l.symbolNumber(t),i=l.symbolFuncs[n%100],o=!!l.symbolNoDot[n%100],s=!!l.symbolNoFill[n%100],c=p.DOT_RE.test(t);return A[t]?A[t]:(e=c&&!o?i(1.1*k)+M:i(k),r=a(e,{w:w,h:w,viewBox:[-k,-k,k,k],stroke:s?T:-T}),A[t]=r,r||null)}e.exports={style:function(t,e){var r,n={marker:void 0,markerSel:void 0,markerUnsel:void 0,line:void 0,fill:void 0,errorX:void 0,errorY:void 0,text:void 0,textSel:void 0,textUnsel:void 0};if(!0!==e.visible)return n;if(h.hasText(e)&&(n.text=m(e,t),n.textSel=b(e,e.selected),n.textUnsel=b(e,e.unselected)),h.hasMarkers(e)&&(n.marker=y(e),n.markerSel=x(e,e.selected),n.markerUnsel=x(e,e.unselected),!e.unselected&&Array.isArray(e.marker.opacity))){var a=e.marker.opacity;for(n.markerUnsel.opacity=new Array(a.length),r=0;r<a.length;r++)n.markerUnsel.opacity[r]=d*a[r]}if(h.hasLines(e)){n.line={overlay:!0,thickness:e.line.width,color:e.line.color,opacity:e.opacity};var i=(p.DASHES[e.line.dash]||[1]).slice();for(r=0;r<i.length;++r)i[r]*=e.line.width;n.line.dashes=i}return e.error_x&&e.error_x.visible&&(n.errorX=_(e,e.error_x)),e.error_y&&e.error_y.visible&&(n.errorY=_(e,e.error_y)),e.fill&&\"none\"!==e.fill&&(n.fill={closed:!0,fill:e.fillcolor,thickness:0}),n},markerStyle:y,markerSelection:x,linePositions:function(t,e,r){var n,a,i=r.length,o=i/2;if(h.hasLines(e)&&o)if(\"hv\"===e.line.shape){for(n=[],a=0;a<o-1;a++)isNaN(r[2*a])||isNaN(r[2*a+1])?n.push(NaN,NaN,NaN,NaN):(n.push(r[2*a],r[2*a+1]),isNaN(r[2*a+2])||isNaN(r[2*a+3])?n.push(NaN,NaN):n.push(r[2*a+2],r[2*a+1]));n.push(r[i-2],r[i-1])}else if(\"hvh\"===e.line.shape){for(n=[],a=0;a<o-1;a++)if(isNaN(r[2*a])||isNaN(r[2*a+1])||isNaN(r[2*a+2])||isNaN(r[2*a+3]))isNaN(r[2*a])||isNaN(r[2*a+1])?n.push(NaN,NaN):n.push(r[2*a],r[2*a+1]),n.push(NaN,NaN);else{var s=(r[2*a]+r[2*a+2])/2;n.push(r[2*a],r[2*a+1],s,r[2*a+1],s,r[2*a+3])}n.push(r[i-2],r[i-1])}else if(\"vhv\"===e.line.shape){for(n=[],a=0;a<o-1;a++)if(isNaN(r[2*a])||isNaN(r[2*a+1])||isNaN(r[2*a+2])||isNaN(r[2*a+3]))isNaN(r[2*a])||isNaN(r[2*a+1])?n.push(NaN,NaN):n.push(r[2*a],r[2*a+1]),n.push(NaN,NaN);else{var l=(r[2*a+1]+r[2*a+3])/2;n.push(r[2*a],r[2*a+1],r[2*a],l,r[2*a+2],l)}n.push(r[i-2],r[i-1])}else if(\"vh\"===e.line.shape){for(n=[],a=0;a<o-1;a++)isNaN(r[2*a])||isNaN(r[2*a+1])?n.push(NaN,NaN,NaN,NaN):(n.push(r[2*a],r[2*a+1]),isNaN(r[2*a+2])||isNaN(r[2*a+3])?n.push(NaN,NaN):n.push(r[2*a],r[2*a+3]));n.push(r[i-2],r[i-1])}else n=r;var c=!1;for(a=0;a<n.length;a++)if(isNaN(n[a])){c=!0;break}var u=c||n.length>p.TOO_MANY_POINTS?\"rect\":h.hasMarkers(e)?\"rect\":\"round\";if(c&&e.connectgaps){var f=n[0],d=n[1];for(a=0;a<n.length;a+=2)isNaN(n[a])||isNaN(n[a+1])?(n[a]=f,n[a+1]=d):(f=n[a],d=n[a+1])}return{join:u,positions:n}},errorBarPositions:function(t,e,r,a,i){var s=o.getComponentMethod(\"errorbars\",\"makeComputeError\"),l=c.getFromId(t,e.xaxis),u=c.getFromId(t,e.yaxis),h=r.length/2,f={};function p(t,a){var i=a._id.charAt(0),o=e[\"error_\"+i];if(o&&o.visible&&(\"linear\"===a.type||\"log\"===a.type)){for(var l=s(o),c={x:0,y:1}[i],u={x:[0,1,2,3],y:[2,3,0,1]}[i],p=new Float64Array(4*h),d=1/0,g=-1/0,v=0,m=0;v<h;v++,m+=4){var y=t[v];if(n(y)){var x=r[2*v+c],b=l(y,v),_=b[0],w=b[1];if(n(_)&&n(w)){var k=y-_,T=y+w;p[m+u[0]]=x-a.c2l(k),p[m+u[1]]=a.c2l(T)-x,p[m+u[2]]=0,p[m+u[3]]=0,d=Math.min(d,y-_),g=Math.max(g,y+w)}}}f[i]={positions:r,errors:p,_bnds:[d,g]}}}return p(a,l),p(i,u),f},textPosition:function(t,e,r,n){var a,i=e._length,o={};if(h.hasMarkers(e)){var s=r.font,l=r.align,c=r.baseline;for(o.offset=new Array(i),a=0;a<i;a++){var u=n.sizes?n.sizes[a]:n.size,f=Array.isArray(s)?s[a].size:s.size,p=Array.isArray(l)?l.length>1?l[a]:l[0]:l,d=Array.isArray(c)?c.length>1?c[a]:c[0]:c,v=g[p],m=g[d],y=u?u/.8+1:0,x=-m*y-.5*m;o.offset[a]=[v*y/f,x/f]}}return o}}},{\"../../components/drawing\":615,\"../../components/fx/helpers\":629,\"../../constants/interactions\":694,\"../../lib\":719,\"../../lib/gl_format_color\":716,\"../../plots/cartesian/axis_ids\":770,\"../../registry\":848,\"../scatter/make_bubble_size_func\":1127,\"../scatter/subtypes\":1134,\"./constants\":1161,\"color-normalize\":121,\"fast-isnumeric\":226,\"svg-path-sdf\":536}],1163:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../registry\"),i=t(\"./attributes\"),o=t(\"../scatter/constants\"),s=t(\"../scatter/subtypes\"),l=t(\"../scatter/xy_defaults\"),c=t(\"../scatter/marker_defaults\"),u=t(\"../scatter/line_defaults\"),h=t(\"../scatter/fillcolor_defaults\"),f=t(\"../scatter/text_defaults\");e.exports=function(t,e,r,p){function d(r,a){return n.coerce(t,e,i,r,a)}var g=!!t.marker&&/-open/.test(t.marker.symbol),v=s.isBubble(t),m=l(t,e,p,d);if(m){var y=m<o.PTS_LINESONLY?\"lines+markers\":\"lines\";d(\"text\"),d(\"hovertext\"),d(\"hovertemplate\"),d(\"mode\",y),s.hasLines(e)&&(d(\"connectgaps\"),u(t,e,r,p,d),d(\"line.shape\")),s.hasMarkers(e)&&(c(t,e,r,p,d),d(\"marker.line.width\",g||v?1:0)),s.hasText(e)&&(d(\"texttemplate\"),f(t,e,p,d));var x=(e.line||{}).color,b=(e.marker||{}).color;d(\"fill\"),\"none\"!==e.fill&&h(t,e,r,d);var _=a.getComponentMethod(\"errorbars\",\"supplyDefaults\");_(t,e,x||b||r,{axis:\"y\"}),_(t,e,x||b||r,{axis:\"x\",inherit:\"y\"}),n.coerceSelectionMarkerOpacity(e,d)}else e.visible=!1}},{\"../../lib\":719,\"../../registry\":848,\"../scatter/constants\":1115,\"../scatter/fillcolor_defaults\":1119,\"../scatter/line_defaults\":1123,\"../scatter/marker_defaults\":1129,\"../scatter/subtypes\":1134,\"../scatter/text_defaults\":1135,\"../scatter/xy_defaults\":1136,\"./attributes\":1159}],1164:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/color\"),i=t(\"../../constants/interactions\").DESELECTDIM;e.exports={styleTextSelection:function(t){var e,r,o=t[0],s=o.trace,l=o.t,c=l._scene,u=l.index,h=c.selectBatch[u],f=c.unselectBatch[u],p=c.textOptions[u],d=c.textSelectedOptions[u]||{},g=c.textUnselectedOptions[u]||{},v=n.extendFlat({},p);if(h.length||f.length){var m=d.color,y=g.color,x=p.color,b=Array.isArray(x);for(v.color=new Array(s._length),e=0;e<h.length;e++)r=h[e],v.color[r]=m||(b?x[r]:x);for(e=0;e<f.length;e++){r=f[e];var _=b?x[r]:x;v.color[r]=y||(m?_:a.addOpacity(_,i))}}c.glText[u].update(v)}}},{\"../../components/color\":594,\"../../constants/interactions\":694,\"../../lib\":719}],1165:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\"),i=t(\"../scatter/get_trace_color\");function o(t,e,r,o){var s=t.xa,l=t.ya,c=t.distance,u=t.dxy,h=t.index,f={pointNumber:h,x:e[h],y:r[h]};f.tx=Array.isArray(o.text)?o.text[h]:o.text,f.htx=Array.isArray(o.hovertext)?o.hovertext[h]:o.hovertext,f.data=Array.isArray(o.customdata)?o.customdata[h]:o.customdata,f.tp=Array.isArray(o.textposition)?o.textposition[h]:o.textposition;var p=o.textfont;p&&(f.ts=Array.isArray(p.size)?p.size[h]:p.size,f.tc=Array.isArray(p.color)?p.color[h]:p.color,f.tf=Array.isArray(p.family)?p.family[h]:p.family);var d=o.marker;d&&(f.ms=a.isArrayOrTypedArray(d.size)?d.size[h]:d.size,f.mo=a.isArrayOrTypedArray(d.opacity)?d.opacity[h]:d.opacity,f.mx=Array.isArray(d.symbol)?d.symbol[h]:d.symbol,f.mc=a.isArrayOrTypedArray(d.color)?d.color[h]:d.color);var g=d&&d.line;g&&(f.mlc=Array.isArray(g.color)?g.color[h]:g.color,f.mlw=a.isArrayOrTypedArray(g.width)?g.width[h]:g.width);var v=d&&d.gradient;v&&\"none\"!==v.type&&(f.mgt=Array.isArray(v.type)?v.type[h]:v.type,f.mgc=Array.isArray(v.color)?v.color[h]:v.color);var m=s.c2p(f.x,!0),y=l.c2p(f.y,!0),x=f.mrc||1,b=o.hoverlabel;b&&(f.hbg=Array.isArray(b.bgcolor)?b.bgcolor[h]:b.bgcolor,f.hbc=Array.isArray(b.bordercolor)?b.bordercolor[h]:b.bordercolor,f.hts=Array.isArray(b.font.size)?b.font.size[h]:b.font.size,f.htc=Array.isArray(b.font.color)?b.font.color[h]:b.font.color,f.htf=Array.isArray(b.font.family)?b.font.family[h]:b.font.family,f.hnl=Array.isArray(b.namelength)?b.namelength[h]:b.namelength);var _=o.hoverinfo;_&&(f.hi=Array.isArray(_)?_[h]:_);var w=o.hovertemplate;w&&(f.ht=Array.isArray(w)?w[h]:w);var k={};k[t.index]=f;var T=a.extendFlat({},t,{color:i(o,f),x0:m-x,x1:m+x,xLabelVal:f.x,y0:y-x,y1:y+x,yLabelVal:f.y,cd:k,distance:c,spikeDistance:u,hovertemplate:f.ht});return f.htx?T.text=f.htx:f.tx?T.text=f.tx:o.text&&(T.text=o.text),a.fillText(f,o,T),n.getComponentMethod(\"errorbars\",\"hoverInfo\")(f,o,T),T}e.exports={hoverPoints:function(t,e,r,n){var a,i,s,l,c,u,h,f,p,d=t.cd,g=d[0].t,v=d[0].trace,m=t.xa,y=t.ya,x=g.x,b=g.y,_=m.c2p(e),w=y.c2p(r),k=t.distance;if(g.tree){var T=m.p2c(_-k),A=m.p2c(_+k),M=y.p2c(w-k),S=y.p2c(w+k);a=\"x\"===n?g.tree.range(Math.min(T,A),Math.min(y._rl[0],y._rl[1]),Math.max(T,A),Math.max(y._rl[0],y._rl[1])):g.tree.range(Math.min(T,A),Math.min(M,S),Math.max(T,A),Math.max(M,S))}else a=g.ids;var E=k;if(\"x\"===n)for(c=0;c<a.length;c++)s=x[a[c]],(u=Math.abs(m.c2p(s)-_))<E&&(E=u,h=y.c2p(b[a[c]])-w,p=Math.sqrt(u*u+h*h),i=a[c]);else for(c=a.length-1;c>-1;c--)s=x[a[c]],l=b[a[c]],u=m.c2p(s)-_,h=y.c2p(l)-w,(f=Math.sqrt(u*u+h*h))<E&&(E=p=f,i=a[c]);return t.index=i,t.distance=E,t.dxy=p,void 0===i?[t]:[o(t,x,b,v)]},calcHover:o}},{\"../../lib\":719,\"../../registry\":848,\"../scatter/get_trace_color\":1120}],1166:[function(t,e,r){\"use strict\";var n=t(\"./hover\");e.exports={moduleType:\"trace\",name:\"scattergl\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"gl\",\"regl\",\"cartesian\",\"symbols\",\"errorBarsOK\",\"showLegend\",\"scatter-like\"],attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),crossTraceDefaults:t(\"../scatter/cross_trace_defaults\"),colorbar:t(\"../scatter/marker_colorbar\"),calc:t(\"./calc\"),plot:t(\"./plot\"),hoverPoints:n.hoverPoints,selectPoints:t(\"./select\"),meta:{}}},{\"../../plots/cartesian\":778,\"../scatter/cross_trace_defaults\":1117,\"../scatter/marker_colorbar\":1128,\"./attributes\":1159,\"./calc\":1160,\"./defaults\":1163,\"./hover\":1165,\"./plot\":1167,\"./select\":1169}],1167:[function(t,e,r){\"use strict\";var n=t(\"regl-scatter2d\"),a=t(\"regl-line2d\"),i=t(\"regl-error2d\"),o=t(\"gl-text\"),s=t(\"../../lib\"),l=t(\"../../lib/prepare_regl\"),c=t(\"../scatter/subtypes\"),u=t(\"../scatter/link_traces\"),h=t(\"./edit_style\").styleTextSelection;e.exports=function(t,e,r){if(r.length){var f,p,d=t._fullLayout,g=e._scene,v=e.xaxis,m=e.yaxis;if(g)if(l(t,[\"ANGLE_instanced_arrays\",\"OES_element_index_uint\"])){var y=g.count,x=d._glcanvas.data()[0].regl;if(u(t,e,r),g.dirty){if(!0===g.error2d&&(g.error2d=i(x)),!0===g.line2d&&(g.line2d=a(x)),!0===g.scatter2d&&(g.scatter2d=n(x)),!0===g.fill2d&&(g.fill2d=a(x)),!0===g.glText)for(g.glText=new Array(y),f=0;f<y;f++)g.glText[f]=new o(x);if(g.glText){if(y>g.glText.length){var b=y-g.glText.length;for(f=0;f<b;f++)g.glText.push(new o(x))}else if(y<g.glText.length){var _=g.glText.length-y;g.glText.splice(y,_).forEach(function(t){t.destroy()})}for(f=0;f<y;f++)g.glText[f].update(g.textOptions[f])}if(g.line2d&&(g.line2d.update(g.lineOptions),g.lineOptions=g.lineOptions.map(function(t){if(t&&t.positions){for(var e=t.positions,r=0;r<e.length&&(isNaN(e[r])||isNaN(e[r+1]));)r+=2;for(var n=e.length-2;n>r&&(isNaN(e[n])||isNaN(e[n+1]));)n-=2;t.positions=e.slice(r,n+2)}return t}),g.line2d.update(g.lineOptions)),g.error2d){var w=(g.errorXOptions||[]).concat(g.errorYOptions||[]);g.error2d.update(w)}g.scatter2d&&g.scatter2d.update(g.markerOptions),g.fillOrder=s.repeat(null,y),g.fill2d&&(g.fillOptions=g.fillOptions.map(function(t,e){var n=r[e];if(t&&n&&n[0]&&n[0].trace){var a,i,o=n[0],s=o.trace,l=o.t,c=g.lineOptions[e],u=[];s._ownfill&&u.push(e),s._nexttrace&&u.push(e+1),u.length&&(g.fillOrder[e]=u);var h,f,p=[],d=c&&c.positions||l.positions;if(\"tozeroy\"===s.fill){for(h=0;h<d.length&&isNaN(d[h+1]);)h+=2;for(f=d.length-2;f>h&&isNaN(d[f+1]);)f-=2;0!==d[h+1]&&(p=[d[h],0]),p=p.concat(d.slice(h,f+2)),0!==d[f+1]&&(p=p.concat([d[f],0]))}else if(\"tozerox\"===s.fill){for(h=0;h<d.length&&isNaN(d[h]);)h+=2;for(f=d.length-2;f>h&&isNaN(d[f]);)f-=2;0!==d[h]&&(p=[0,d[h+1]]),p=p.concat(d.slice(h,f+2)),0!==d[f]&&(p=p.concat([0,d[f+1]]))}else if(\"toself\"===s.fill||\"tonext\"===s.fill){for(p=[],a=0,i=0;i<d.length;i+=2)(isNaN(d[i])||isNaN(d[i+1]))&&((p=p.concat(d.slice(a,i))).push(d[a],d[a+1]),a=i+2);p=p.concat(d.slice(a)),a&&p.push(d[a],d[a+1])}else{var v=s._nexttrace;if(v){var m=g.lineOptions[e+1];if(m){var y=m.positions;if(\"tonexty\"===s.fill){for(p=d.slice(),e=Math.floor(y.length/2);e--;){var x=y[2*e],b=y[2*e+1];isNaN(x)||isNaN(b)||p.push(x,b)}t.fill=v.fillcolor}}}}if(s._prevtrace&&\"tonext\"===s._prevtrace.fill){var _=g.lineOptions[e-1].positions,w=p.length/2,k=[a=w];for(i=0;i<_.length;i+=2)(isNaN(_[i])||isNaN(_[i+1]))&&(k.push(i/2+w+1),a=i+2);p=p.concat(_),t.hole=k}return t.fillmode=s.fill,t.opacity=s.opacity,t.positions=p,t}}),g.fill2d.update(g.fillOptions))}var k=d.dragmode,T=\"lasso\"===k||\"select\"===k,A=d.clickmode.indexOf(\"select\")>-1;for(f=0;f<y;f++){var M=r[f][0],S=M.trace,E=M.t,C=E.index,L=S._length,P=E.x,O=E.y;if(S.selectedpoints||T||A){if(T||(T=!0),S.selectedpoints){var I=g.selectBatch[C]=s.selIndices2selPoints(S),z={};for(p=0;p<I.length;p++)z[I[p]]=1;var D=[];for(p=0;p<L;p++)z[p]||D.push(p);g.unselectBatch[C]=D}var R=E.xpx=new Array(L),F=E.ypx=new Array(L);for(p=0;p<L;p++)R[p]=v.c2p(P[p]),F[p]=m.c2p(O[p])}else E.xpx=E.ypx=null}if(T){if(g.select2d||(g.select2d=n(d._glcanvas.data()[1].regl)),g.scatter2d){var B=new Array(y);for(f=0;f<y;f++)B[f]=g.selectBatch[f].length||g.unselectBatch[f].length?g.markerUnselectedOptions[f]:{};g.scatter2d.update(B)}g.select2d&&(g.select2d.update(g.markerOptions),g.select2d.update(g.markerSelectedOptions)),g.glText&&r.forEach(function(t){var e=((t||[])[0]||{}).trace||{};c.hasText(e)&&h(t)})}else g.scatter2d&&g.scatter2d.update(g.markerOptions);var N={viewport:function(t,e,r){var n=t._size,a=t.width,i=t.height;return[n.l+e.domain[0]*n.w,n.b+r.domain[0]*n.h,a-n.r-(1-e.domain[1])*n.w,i-n.t-(1-r.domain[1])*n.h]}(d,v,m),range:[(v._rl||v.range)[0],(m._rl||m.range)[0],(v._rl||v.range)[1],(m._rl||m.range)[1]]},j=s.repeat(N,g.count);g.fill2d&&g.fill2d.update(j),g.line2d&&g.line2d.update(j),g.error2d&&g.error2d.update(j.concat(j)),g.scatter2d&&g.scatter2d.update(j),g.select2d&&g.select2d.update(j),g.glText&&g.glText.forEach(function(t){t.update(N)})}else g.init()}}},{\"../../lib\":719,\"../../lib/prepare_regl\":732,\"../scatter/link_traces\":1126,\"../scatter/subtypes\":1134,\"./edit_style\":1164,\"gl-text\":318,\"regl-error2d\":491,\"regl-line2d\":492,\"regl-scatter2d\":498}],1168:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e){var r=e._scene,a={count:0,dirty:!0,lineOptions:[],fillOptions:[],markerOptions:[],markerSelectedOptions:[],markerUnselectedOptions:[],errorXOptions:[],errorYOptions:[],textOptions:[],textSelectedOptions:[],textUnselectedOptions:[],selectBatch:[],unselectBatch:[]},i={fill2d:!1,scatter2d:!1,error2d:!1,line2d:!1,glText:!1,select2d:!1};return e._scene||((r=e._scene={}).init=function(){n.extendFlat(r,i,a)},r.init(),r.update=function(t){var e=n.repeat(t,r.count);if(r.fill2d&&r.fill2d.update(e),r.scatter2d&&r.scatter2d.update(e),r.line2d&&r.line2d.update(e),r.error2d&&r.error2d.update(e.concat(e)),r.select2d&&r.select2d.update(e),r.glText)for(var a=0;a<r.count;a++)r.glText[a].update(t)},r.draw=function(){for(var t=r.count,e=r.fill2d,a=r.error2d,i=r.line2d,o=r.scatter2d,s=r.glText,l=r.select2d,c=r.selectBatch,u=r.unselectBatch,h=0;h<t;h++){if(e&&r.fillOrder[h]&&e.draw(r.fillOrder[h]),i&&r.lineOptions[h]&&i.draw(h),a&&(r.errorXOptions[h]&&a.draw(h),r.errorYOptions[h]&&a.draw(h+t)),o&&r.markerOptions[h])if(u[h].length){var f=n.repeat([],r.count);f[h]=u[h],o.draw(f)}else c[h].length||o.draw(h);s[h]&&r.textOptions[h]&&s[h].render()}l&&l.draw(c),r.dirty=!1},r.destroy=function(){r.fill2d&&r.fill2d.destroy&&r.fill2d.destroy(),r.scatter2d&&r.scatter2d.destroy&&r.scatter2d.destroy(),r.error2d&&r.error2d.destroy&&r.error2d.destroy(),r.line2d&&r.line2d.destroy&&r.line2d.destroy(),r.select2d&&r.select2d.destroy&&r.select2d.destroy(),r.glText&&r.glText.forEach(function(t){t.destroy&&t.destroy()}),r.lineOptions=null,r.fillOptions=null,r.markerOptions=null,r.markerSelectedOptions=null,r.markerUnselectedOptions=null,r.errorXOptions=null,r.errorYOptions=null,r.textOptions=null,r.textSelectedOptions=null,r.textUnselectedOptions=null,r.selectBatch=null,r.unselectBatch=null,e._scene=null}),r.dirty||n.extendFlat(r,a),r}},{\"../../lib\":719}],1169:[function(t,e,r){\"use strict\";var n=t(\"../scatter/subtypes\"),a=t(\"./edit_style\").styleTextSelection;e.exports=function(t,e){var r=t.cd,i=[],o=r[0].trace,s=r[0].t,l=o._length,c=s.x,u=s.y,h=s._scene,f=s.index;if(!h)return i;var p=n.hasText(o),d=n.hasMarkers(o),g=!d&&!p;if(!0!==o.visible||g)return i;var v=[],m=[];if(!1!==e&&!e.degenerate)for(var y=0;y<l;y++)e.contains([s.xpx[y],s.ypx[y]],!1,y,t)?(v.push(y),i.push({pointNumber:y,x:c[y],y:u[y]})):m.push(y);if(d){var x=h.scatter2d;if(v.length||m.length){if(!h.selectBatch[f].length&&!h.unselectBatch[f].length){var b=new Array(h.count);b[f]=h.markerUnselectedOptions[f],x.update.apply(x,b)}}else{var _=new Array(h.count);_[f]=h.markerOptions[f],x.update.apply(x,_)}}return h.selectBatch[f]=v,h.unselectBatch[f]=m,p&&a(r),i}},{\"../scatter/subtypes\":1134,\"./edit_style\":1164}],1170:[function(t,e,r){\"use strict\";var n=t(\"../../plots/template_attributes\").hovertemplateAttrs,a=t(\"../../plots/template_attributes\").texttemplateAttrs,i=t(\"../scattergeo/attributes\"),o=t(\"../scatter/attributes\"),s=t(\"../../plots/mapbox/layout_attributes\"),l=t(\"../../plots/attributes\"),c=t(\"../../components/colorscale/attributes\"),u=t(\"../../lib/extend\").extendFlat,h=t(\"../../plot_api/edit_types\").overrideAll,f=i.line,p=i.marker;e.exports=h({lon:i.lon,lat:i.lat,mode:u({},o.mode,{dflt:\"markers\"}),text:u({},o.text,{}),texttemplate:a({editType:\"plot\"},{keys:[\"lat\",\"lon\",\"text\"]}),hovertext:u({},o.hovertext,{}),line:{color:f.color,width:f.width},connectgaps:o.connectgaps,marker:u({symbol:{valType:\"string\",dflt:\"circle\",arrayOk:!0},opacity:p.opacity,size:p.size,sizeref:p.sizeref,sizemin:p.sizemin,sizemode:p.sizemode},c(\"marker\")),fill:i.fill,fillcolor:o.fillcolor,textfont:s.layers.symbol.textfont,textposition:s.layers.symbol.textposition,below:{valType:\"string\"},selected:{marker:o.selected.marker},unselected:{marker:o.unselected.marker},hoverinfo:u({},l.hoverinfo,{flags:[\"lon\",\"lat\",\"text\",\"name\"]}),hovertemplate:n()},\"calc\",\"nested\")},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../../plots/attributes\":764,\"../../plots/mapbox/layout_attributes\":824,\"../../plots/template_attributes\":843,\"../scatter/attributes\":1111,\"../scattergeo/attributes\":1150}],1171:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\"),i=t(\"../../constants/numerical\").BADNUM,o=t(\"../../lib/geojson_utils\"),s=t(\"../../components/colorscale\"),l=t(\"../../components/drawing\"),c=t(\"../scatter/make_bubble_size_func\"),u=t(\"../scatter/subtypes\"),h=t(\"../../plots/mapbox/convert_text_opts\"),f=t(\"../../lib/svg_text_utils\").NEWLINES,p=t(\"../../lib/svg_text_utils\").BR_TAG_ALL;function d(){return{geojson:o.makeBlank(),layout:{visibility:\"none\"},paint:{}}}function g(t){return a.isArrayOrTypedArray(t)?function(t){return t}:t?function(){return t}:v}function v(){return\"\"}function m(t){return t[0]===i}e.exports=function(t,e){var r,i=e[0].trace,y=!0===i.visible&&0!==i._length,x=\"none\"!==i.fill,b=u.hasLines(i),_=u.hasMarkers(i),w=u.hasText(i),k=_&&\"circle\"===i.marker.symbol,T=_&&\"circle\"!==i.marker.symbol,A=d(),M=d(),S=d(),E=d(),C={fill:A,line:M,circle:S,symbol:E};if(!y)return C;if((x||b)&&(r=o.calcTraceToLineCoords(e)),x&&(A.geojson=o.makePolygon(r),A.layout.visibility=\"visible\",a.extendFlat(A.paint,{\"fill-color\":i.fillcolor})),b&&(M.geojson=o.makeLine(r),M.layout.visibility=\"visible\",a.extendFlat(M.paint,{\"line-width\":i.line.width,\"line-color\":i.line.color,\"line-opacity\":i.opacity})),k){var L=function(t){var e,r,i,o,u=t[0].trace,h=u.marker,f=u.selectedpoints,p=a.isArrayOrTypedArray(h.color),d=a.isArrayOrTypedArray(h.size),g=a.isArrayOrTypedArray(h.opacity);function v(t){return u.opacity*t}p&&(r=s.hasColorscale(u,\"marker\")?s.makeColorScaleFuncFromTrace(h):a.identity);d&&(i=c(u));g&&(o=function(t){var e=n(t)?+a.constrain(t,0,1):0;return v(e)});var y,x=[];for(e=0;e<t.length;e++){var b=t[e],_=b.lonlat;if(!m(_)){var w={};r&&(w.mcc=b.mcc=r(b.mc)),i&&(w.mrc=b.mrc=i(b.ms)),o&&(w.mo=o(b.mo)),f&&(w.selected=b.selected||0),x.push({type:\"Feature\",geometry:{type:\"Point\",coordinates:_},properties:w})}}if(f)for(y=l.makeSelectedPointStyleFns(u),e=0;e<x.length;e++){var k=x[e].properties;y.selectedOpacityFn&&(k.mo=v(y.selectedOpacityFn(k))),y.selectedColorFn&&(k.mcc=y.selectedColorFn(k)),y.selectedSizeFn&&(k.mrc=y.selectedSizeFn(k))}return{geojson:{type:\"FeatureCollection\",features:x},mcc:p||y&&y.selectedColorFn?{type:\"identity\",property:\"mcc\"}:h.color,mrc:d||y&&y.selectedSizeFn?{type:\"identity\",property:\"mrc\"}:(T=h.size,T/2),mo:g||y&&y.selectedOpacityFn?{type:\"identity\",property:\"mo\"}:v(h.opacity)};var T}(e);S.geojson=L.geojson,S.layout.visibility=\"visible\",a.extendFlat(S.paint,{\"circle-color\":L.mcc,\"circle-radius\":L.mrc,\"circle-opacity\":L.mo})}if((T||w)&&(E.geojson=function(t,e){for(var r=t[0].trace,n=(r.marker||{}).symbol,i=\"circle\"!==n?g(n):v,o=u.hasText(r)?g(r.text):v,s=[],l=0;l<t.length;l++){var c=t[l];if(!m(c.lonlat)){var h=r.texttemplate;if(h){var d=Array.isArray(h)?h[l]||\"\":h;c.text=c.tx,c.lon=c.lonlat[0],c.lat=c.lonlat[1],c.customdata=c.data,c.txt=a.texttemplateString(d,{},e._fullLayout._d3locale,c,r._meta||{})}var y=h?c.txt:o(c.tx);y&&(y=y.replace(f,\"\").replace(p,\"\\n\")),s.push({type:\"Feature\",geometry:{type:\"Point\",coordinates:c.lonlat},properties:{symbol:i(c.mx),text:y}})}}return{type:\"FeatureCollection\",features:s}}(e,t),a.extendFlat(E.layout,{visibility:\"visible\",\"icon-image\":\"{symbol}-15\",\"text-field\":\"{text}\"}),T&&(a.extendFlat(E.layout,{\"icon-size\":i.marker.size/10}),a.extendFlat(E.paint,{\"icon-opacity\":i.opacity*i.marker.opacity,\"icon-color\":i.marker.color})),w)){var P=(i.marker||{}).size,O=h(i.textposition,P);a.extendFlat(E.layout,{\"text-size\":i.textfont.size,\"text-anchor\":O.anchor,\"text-offset\":O.offset}),a.extendFlat(E.paint,{\"text-color\":i.textfont.color,\"text-opacity\":i.opacity})}return C}},{\"../../components/colorscale\":606,\"../../components/drawing\":615,\"../../constants/numerical\":695,\"../../lib\":719,\"../../lib/geojson_utils\":714,\"../../lib/svg_text_utils\":743,\"../../plots/mapbox/convert_text_opts\":821,\"../scatter/make_bubble_size_func\":1127,\"../scatter/subtypes\":1134,\"fast-isnumeric\":226}],1172:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../scatter/subtypes\"),i=t(\"../scatter/marker_defaults\"),o=t(\"../scatter/line_defaults\"),s=t(\"../scatter/text_defaults\"),l=t(\"../scatter/fillcolor_defaults\"),c=t(\"./attributes\");e.exports=function(t,e,r,u){function h(r,a){return n.coerce(t,e,c,r,a)}if(function(t,e,r){var n=r(\"lon\")||[],a=r(\"lat\")||[],i=Math.min(n.length,a.length);return e._length=i,i}(0,e,h)){if(h(\"text\"),h(\"texttemplate\"),h(\"hovertext\"),h(\"hovertemplate\"),h(\"mode\"),h(\"below\"),a.hasLines(e)&&(o(t,e,r,u,h,{noDash:!0}),h(\"connectgaps\")),a.hasMarkers(e)){i(t,e,r,u,h,{noLine:!0});var f=e.marker;\"circle\"!==f.symbol&&(n.isArrayOrTypedArray(f.size)&&(f.size=f.size[0]),n.isArrayOrTypedArray(f.color)&&(f.color=f.color[0]))}a.hasText(e)&&s(t,e,u,h,{noSelect:!0}),h(\"fill\"),\"none\"!==e.fill&&l(t,e,r,h),n.coerceSelectionMarkerOpacity(e,h)}else e.visible=!1}},{\"../../lib\":719,\"../scatter/fillcolor_defaults\":1119,\"../scatter/line_defaults\":1123,\"../scatter/marker_defaults\":1129,\"../scatter/subtypes\":1134,\"../scatter/text_defaults\":1135,\"./attributes\":1170}],1173:[function(t,e,r){\"use strict\";e.exports=function(t,e){return t.lon=e.lon,t.lat=e.lat,t}},{}],1174:[function(t,e,r){\"use strict\";var n=t(\"../../components/fx\"),a=t(\"../../lib\"),i=t(\"../scatter/get_trace_color\"),o=a.fillText,s=t(\"../../constants/numerical\").BADNUM;e.exports=function(t,e,r){var l=t.cd,c=l[0].trace,u=t.xa,h=t.ya,f=t.subplot,p=360*(e>=0?Math.floor((e+180)/360):Math.ceil((e-180)/360)),d=e-p;if(n.getClosest(l,function(t){var e=t.lonlat;if(e[0]===s)return 1/0;var n=a.modHalf(e[0],360),i=e[1],o=f.project([n,i]),l=o.x-u.c2p([d,i]),c=o.y-h.c2p([n,r]),p=Math.max(3,t.mrc||0);return Math.max(Math.sqrt(l*l+c*c)-p,1-3/p)},t),!1!==t.index){var g=l[t.index],v=g.lonlat,m=[a.modHalf(v[0],360)+p,v[1]],y=u.c2p(m),x=h.c2p(m),b=g.mrc||1;return t.x0=y-b,t.x1=y+b,t.y0=x-b,t.y1=x+b,t.color=i(c,g),t.extraText=function(t,e,r){if(t.hovertemplate)return;var n=(e.hi||t.hoverinfo).split(\"+\"),a=-1!==n.indexOf(\"all\"),i=-1!==n.indexOf(\"lon\"),s=-1!==n.indexOf(\"lat\"),l=e.lonlat,c=[];function u(t){return t+\"\\xb0\"}a||i&&s?c.push(\"(\"+u(l[0])+\", \"+u(l[1])+\")\"):i?c.push(r.lon+u(l[0])):s&&c.push(r.lat+u(l[1]));(a||-1!==n.indexOf(\"text\"))&&o(e,t,c);return c.join(\"<br>\")}(c,g,l[0].t.labels),t.hovertemplate=c.hovertemplate,[t]}}},{\"../../components/fx\":632,\"../../constants/numerical\":695,\"../../lib\":719,\"../scatter/get_trace_color\":1120}],1175:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../scatter/marker_colorbar\"),calc:t(\"../scattergeo/calc\"),plot:t(\"./plot\"),hoverPoints:t(\"./hover\"),eventData:t(\"./event_data\"),selectPoints:t(\"./select\"),styleOnSelect:function(t,e){e&&e[0].trace._glTrace.update(e)},moduleType:\"trace\",name:\"scattermapbox\",basePlotModule:t(\"../../plots/mapbox\"),categories:[\"mapbox\",\"gl\",\"symbols\",\"showLegend\",\"scatter-like\"],meta:{}}},{\"../../plots/mapbox\":822,\"../scatter/marker_colorbar\":1128,\"../scattergeo/calc\":1151,\"./attributes\":1170,\"./defaults\":1172,\"./event_data\":1173,\"./hover\":1174,\"./plot\":1176,\"./select\":1177}],1176:[function(t,e,r){\"use strict\";var n=t(\"./convert\"),a=t(\"../../plots/mapbox/constants\").traceLayerPrefix,i=[\"fill\",\"line\",\"circle\",\"symbol\"];function o(t,e){this.subplot=t,this.uid=e,this.sourceIds={fill:\"source-\"+e+\"-fill\",line:\"source-\"+e+\"-line\",circle:\"source-\"+e+\"-circle\",symbol:\"source-\"+e+\"-symbol\"},this.layerIds={fill:a+e+\"-fill\",line:a+e+\"-line\",circle:a+e+\"-circle\",symbol:a+e+\"-symbol\"},this.below=null}var s=o.prototype;s.addSource=function(t,e){this.subplot.map.addSource(this.sourceIds[t],{type:\"geojson\",data:e.geojson})},s.setSourceData=function(t,e){this.subplot.map.getSource(this.sourceIds[t]).setData(e.geojson)},s.addLayer=function(t,e,r){this.subplot.addLayer({type:t,id:this.layerIds[t],source:this.sourceIds[t],layout:e.layout,paint:e.paint},r)},s.update=function(t){var e,r,a,o=this.subplot,s=o.map,l=n(o.gd,t),c=o.belowLookup[\"trace-\"+this.uid];if(c!==this.below){for(e=i.length-1;e>=0;e--)r=i[e],s.removeLayer(this.layerIds[r]);for(e=0;e<i.length;e++)a=l[r=i[e]],this.addLayer(r,a,c);this.below=c}for(e=0;e<i.length;e++)a=l[r=i[e]],o.setOptions(this.layerIds[r],\"setLayoutProperty\",a.layout),\"visible\"===a.layout.visibility&&(this.setSourceData(r,a),o.setOptions(this.layerIds[r],\"setPaintProperty\",a.paint));t[0].trace._glTrace=this},s.dispose=function(){for(var t=this.subplot.map,e=i.length-1;e>=0;e--){var r=i[e];t.removeLayer(this.layerIds[r]),t.removeSource(this.sourceIds[r])}},e.exports=function(t,e){for(var r=e[0].trace,a=new o(t,r.uid),s=n(t.gd,e),l=a.below=t.belowLookup[\"trace-\"+r.uid],c=0;c<i.length;c++){var u=i[c],h=s[u];a.addSource(u,h),a.addLayer(u,h,l)}return e[0].trace._glTrace=a,a}},{\"../../plots/mapbox/constants\":820,\"./convert\":1171}],1177:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../scatter/subtypes\"),i=t(\"../../constants/numerical\").BADNUM;e.exports=function(t,e){var r,o=t.cd,s=t.xaxis,l=t.yaxis,c=[],u=o[0].trace;if(!a.hasMarkers(u))return[];if(!1===e)for(r=0;r<o.length;r++)o[r].selected=0;else for(r=0;r<o.length;r++){var h=o[r],f=h.lonlat;if(f[0]!==i){var p=[n.modHalf(f[0],360),f[1]],d=[s.c2p(p),l.c2p(p)];e.contains(d,null,r,t)?(c.push({pointNumber:r,lon:f[0],lat:f[1]}),h.selected=1):h.selected=0}}return c}},{\"../../constants/numerical\":695,\"../../lib\":719,\"../scatter/subtypes\":1134}],1178:[function(t,e,r){\"use strict\";var n=t(\"../../plots/template_attributes\").hovertemplateAttrs,a=t(\"../../plots/template_attributes\").texttemplateAttrs,i=t(\"../../lib/extend\").extendFlat,o=t(\"../scatter/attributes\"),s=t(\"../../plots/attributes\"),l=o.line;e.exports={mode:o.mode,r:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},theta:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},r0:{valType:\"any\",dflt:0,editType:\"calc+clearAxisTypes\"},dr:{valType:\"number\",dflt:1,editType:\"calc\"},theta0:{valType:\"any\",dflt:0,editType:\"calc+clearAxisTypes\"},dtheta:{valType:\"number\",editType:\"calc\"},thetaunit:{valType:\"enumerated\",values:[\"radians\",\"degrees\",\"gradians\"],dflt:\"degrees\",editType:\"calc+clearAxisTypes\"},text:o.text,texttemplate:a({editType:\"plot\"},{keys:[\"r\",\"theta\",\"text\"]}),hovertext:o.hovertext,line:{color:l.color,width:l.width,dash:l.dash,shape:i({},l.shape,{values:[\"linear\",\"spline\"]}),smoothing:l.smoothing,editType:\"calc\"},connectgaps:o.connectgaps,marker:o.marker,cliponaxis:i({},o.cliponaxis,{dflt:!1}),textposition:o.textposition,textfont:o.textfont,fill:i({},o.fill,{values:[\"none\",\"toself\",\"tonext\"],dflt:\"none\"}),fillcolor:o.fillcolor,hoverinfo:i({},s.hoverinfo,{flags:[\"r\",\"theta\",\"text\",\"name\"]}),hoveron:o.hoveron,hovertemplate:n(),selected:o.selected,unselected:o.unselected}},{\"../../lib/extend\":710,\"../../plots/attributes\":764,\"../../plots/template_attributes\":843,\"../scatter/attributes\":1111}],1179:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../constants/numerical\").BADNUM,i=t(\"../../plots/cartesian/axes\"),o=t(\"../scatter/colorscale_calc\"),s=t(\"../scatter/arrays_to_calcdata\"),l=t(\"../scatter/calc_selection\"),c=t(\"../scatter/calc\").calcMarkerSize;e.exports=function(t,e){for(var r=t._fullLayout,u=e.subplot,h=r[u].radialaxis,f=r[u].angularaxis,p=h.makeCalcdata(e,\"r\"),d=f.makeCalcdata(e,\"theta\"),g=e._length,v=new Array(g),m=0;m<g;m++){var y=p[m],x=d[m],b=v[m]={};n(y)&&n(x)?(b.r=y,b.theta=x):b.r=a}var _=c(e,g);return e._extremes.x=i.findExtremes(h,p,{ppad:_}),o(t,e),s(v,e),l(v,e),v}},{\"../../constants/numerical\":695,\"../../plots/cartesian/axes\":767,\"../scatter/arrays_to_calcdata\":1110,\"../scatter/calc\":1112,\"../scatter/calc_selection\":1113,\"../scatter/colorscale_calc\":1114,\"fast-isnumeric\":226}],1180:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../scatter/subtypes\"),i=t(\"../scatter/marker_defaults\"),o=t(\"../scatter/line_defaults\"),s=t(\"../scatter/line_shape_defaults\"),l=t(\"../scatter/text_defaults\"),c=t(\"../scatter/fillcolor_defaults\"),u=t(\"../scatter/constants\").PTS_LINESONLY,h=t(\"./attributes\");function f(t,e,r,n){var a,i=n(\"r\"),o=n(\"theta\");if(i)o?a=Math.min(i.length,o.length):(a=i.length,n(\"theta0\"),n(\"dtheta\"));else{if(!o)return 0;a=e.theta.length,n(\"r0\"),n(\"dr\")}return e._length=a,a}e.exports={handleRThetaDefaults:f,supplyDefaults:function(t,e,r,p){function d(r,a){return n.coerce(t,e,h,r,a)}var g=f(0,e,0,d);if(g){d(\"thetaunit\"),d(\"mode\",g<u?\"lines+markers\":\"lines\"),d(\"text\"),d(\"hovertext\"),\"fills\"!==e.hoveron&&d(\"hovertemplate\"),a.hasLines(e)&&(o(t,e,r,p,d),s(t,e,d),d(\"connectgaps\")),a.hasMarkers(e)&&i(t,e,r,p,d,{gradient:!0}),a.hasText(e)&&(d(\"texttemplate\"),l(t,e,p,d));var v=[];(a.hasMarkers(e)||a.hasText(e))&&(d(\"cliponaxis\"),d(\"marker.maxdisplayed\"),v.push(\"points\")),d(\"fill\"),\"none\"!==e.fill&&(c(t,e,r,d),a.hasLines(e)||s(t,e,d)),\"tonext\"!==e.fill&&\"toself\"!==e.fill||v.push(\"fills\"),d(\"hoveron\",v.join(\"+\")||\"points\"),n.coerceSelectionMarkerOpacity(e,d)}else e.visible=!1}}},{\"../../lib\":719,\"../scatter/constants\":1115,\"../scatter/fillcolor_defaults\":1119,\"../scatter/line_defaults\":1123,\"../scatter/line_shape_defaults\":1125,\"../scatter/marker_defaults\":1129,\"../scatter/subtypes\":1134,\"../scatter/text_defaults\":1135,\"./attributes\":1178}],1181:[function(t,e,r){\"use strict\";var n=t(\"../scatter/hover\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"../../lib\");function o(t,e,r,n){var o=r.radialAxis,s=r.angularAxis;o._hovertitle=\"r\",s._hovertitle=\"\\u03b8\";var l=o.c2l(t.r);n.rLabel=a.tickText(o,l,\"hover\").text;var c=\"degrees\"===s.thetaunit?i.rad2deg(t.theta):t.theta;n.thetaLabel=a.tickText(s,c,\"hover\").text;var u=t.hi||e.hoverinfo,h=[];function f(t,e){h.push(t._hovertitle+\": \"+e)}if(!e.hovertemplate){var p=u.split(\"+\");-1!==p.indexOf(\"all\")&&(p=[\"r\",\"theta\",\"text\"]),-1!==p.indexOf(\"r\")&&f(o,n.rLabel),-1!==p.indexOf(\"theta\")&&f(s,n.thetaLabel),-1!==p.indexOf(\"text\")&&n.text&&(h.push(n.text),delete n.text),n.extraText=h.join(\"<br>\")}}e.exports={hoverPoints:function(t,e,r,a){var i=n(t,e,r,a);if(i&&!1!==i[0].index){var s=i[0];if(void 0===s.index)return i;var l=t.subplot,c=s.cd[s.index],u=s.trace;if(l.isPtInside(c))return s.xLabelVal=void 0,s.yLabelVal=void 0,o(c,u,l,s),s.hovertemplate=u.hovertemplate,i}},makeHoverPointText:o}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../scatter/hover\":1121}],1182:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"scatterpolar\",basePlotModule:t(\"../../plots/polar\"),categories:[\"polar\",\"symbols\",\"showLegend\",\"scatter-like\"],attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\").supplyDefaults,colorbar:t(\"../scatter/marker_colorbar\"),calc:t(\"./calc\"),plot:t(\"./plot\"),style:t(\"../scatter/style\").style,styleOnSelect:t(\"../scatter/style\").styleOnSelect,hoverPoints:t(\"./hover\").hoverPoints,selectPoints:t(\"../scatter/select\"),meta:{}}},{\"../../plots/polar\":831,\"../scatter/marker_colorbar\":1128,\"../scatter/select\":1131,\"../scatter/style\":1133,\"./attributes\":1178,\"./calc\":1179,\"./defaults\":1180,\"./hover\":1181,\"./plot\":1183}],1183:[function(t,e,r){\"use strict\";var n=t(\"../scatter/plot\"),a=t(\"../../constants/numerical\").BADNUM;e.exports=function(t,e,r){for(var i=e.layers.frontplot.select(\"g.scatterlayer\"),o={xaxis:e.xaxis,yaxis:e.yaxis,plot:e.framework,layerClipId:e._hasClipOnAxisFalse?e.clipIds.forTraces:null},s=e.radialAxis,l=e.angularAxis,c=0;c<r.length;c++)for(var u=r[c],h=0;h<u.length;h++){var f=u[h],p=f.r;if(p===a)f.x=f.y=a;else{var d=s.c2g(p),g=l.c2g(f.theta);f.x=d*Math.cos(g),f.y=d*Math.sin(g)}}n(t,o,r,i)}},{\"../../constants/numerical\":695,\"../scatter/plot\":1130}],1184:[function(t,e,r){\"use strict\";var n=t(\"../scatterpolar/attributes\"),a=t(\"../scattergl/attributes\"),i=t(\"../../plots/template_attributes\").texttemplateAttrs;e.exports={mode:n.mode,r:n.r,theta:n.theta,r0:n.r0,dr:n.dr,theta0:n.theta0,dtheta:n.dtheta,thetaunit:n.thetaunit,text:n.text,texttemplate:i({editType:\"plot\"},{keys:[\"r\",\"theta\",\"text\"]}),hovertext:n.hovertext,hovertemplate:n.hovertemplate,line:a.line,connectgaps:a.connectgaps,marker:a.marker,fill:a.fill,fillcolor:a.fillcolor,textposition:a.textposition,textfont:a.textfont,hoverinfo:n.hoverinfo,selected:n.selected,unselected:n.unselected}},{\"../../plots/template_attributes\":843,\"../scattergl/attributes\":1159,\"../scatterpolar/attributes\":1178}],1185:[function(t,e,r){\"use strict\";var n=t(\"../scatter/colorscale_calc\"),a=t(\"../scatter/calc\").calcMarkerSize,i=t(\"../scattergl/convert\"),o=t(\"../../plots/cartesian/axes\"),s=t(\"../scattergl/constants\").TOO_MANY_POINTS;e.exports=function(t,e){var r=t._fullLayout,l=e.subplot,c=r[l].radialaxis,u=r[l].angularaxis,h=c.makeCalcdata(e,\"r\"),f=u.makeCalcdata(e,\"theta\"),p=e._length,d={};p<h.length&&(h=h.slice(0,p)),p<f.length&&(f=f.slice(0,p)),d.r=h,d.theta=f,n(t,e);var g,v=d.opts=i.style(t,e);return p<s?g=a(e,p):v.marker&&(g=2*(v.marker.sizeAvg||Math.max(v.marker.size,3))),e._extremes.x=o.findExtremes(c,h,{ppad:g}),[{x:!1,y:!1,t:d,trace:e}]}},{\"../../plots/cartesian/axes\":767,\"../scatter/calc\":1112,\"../scatter/colorscale_calc\":1114,\"../scattergl/constants\":1161,\"../scattergl/convert\":1162}],1186:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../scatter/subtypes\"),i=t(\"../scatterpolar/defaults\").handleRThetaDefaults,o=t(\"../scatter/marker_defaults\"),s=t(\"../scatter/line_defaults\"),l=t(\"../scatter/text_defaults\"),c=t(\"../scatter/fillcolor_defaults\"),u=t(\"../scatter/constants\").PTS_LINESONLY,h=t(\"./attributes\");e.exports=function(t,e,r,f){function p(r,a){return n.coerce(t,e,h,r,a)}var d=i(t,e,f,p);d?(p(\"thetaunit\"),p(\"mode\",d<u?\"lines+markers\":\"lines\"),p(\"text\"),p(\"hovertext\"),\"fills\"!==e.hoveron&&p(\"hovertemplate\"),a.hasLines(e)&&(s(t,e,r,f,p),p(\"connectgaps\")),a.hasMarkers(e)&&o(t,e,r,f,p),a.hasText(e)&&(p(\"texttemplate\"),l(t,e,f,p)),p(\"fill\"),\"none\"!==e.fill&&c(t,e,r,p),n.coerceSelectionMarkerOpacity(e,p)):e.visible=!1}},{\"../../lib\":719,\"../scatter/constants\":1115,\"../scatter/fillcolor_defaults\":1119,\"../scatter/line_defaults\":1123,\"../scatter/marker_defaults\":1129,\"../scatter/subtypes\":1134,\"../scatter/text_defaults\":1135,\"../scatterpolar/defaults\":1180,\"./attributes\":1184}],1187:[function(t,e,r){\"use strict\";var n=t(\"../scattergl/hover\"),a=t(\"../scatterpolar/hover\").makeHoverPointText;e.exports={hoverPoints:function(t,e,r,i){var o=t.cd[0].t,s=o.r,l=o.theta,c=n.hoverPoints(t,e,r,i);if(c&&!1!==c[0].index){var u=c[0];if(void 0===u.index)return c;var h=t.subplot,f=u.cd[u.index],p=u.trace;if(f.r=s[u.index],f.theta=l[u.index],h.isPtInside(f))return u.xLabelVal=void 0,u.yLabelVal=void 0,a(f,p,h,u),c}}}},{\"../scattergl/hover\":1165,\"../scatterpolar/hover\":1181}],1188:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"scatterpolargl\",basePlotModule:t(\"../../plots/polar\"),categories:[\"gl\",\"regl\",\"polar\",\"symbols\",\"showLegend\",\"scatter-like\"],attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../scatter/marker_colorbar\"),calc:t(\"./calc\"),plot:t(\"./plot\"),hoverPoints:t(\"./hover\").hoverPoints,selectPoints:t(\"../scattergl/select\"),meta:{}}},{\"../../plots/polar\":831,\"../scatter/marker_colorbar\":1128,\"../scattergl/select\":1169,\"./attributes\":1184,\"./calc\":1185,\"./defaults\":1186,\"./hover\":1187,\"./plot\":1189}],1189:[function(t,e,r){\"use strict\";var n=t(\"point-cluster\"),a=t(\"fast-isnumeric\"),i=t(\"../scattergl/plot\"),o=t(\"../scattergl/scene_update\"),s=t(\"../scattergl/convert\"),l=t(\"../../lib\"),c=t(\"../scattergl/constants\").TOO_MANY_POINTS;e.exports=function(t,e,r){if(r.length){var u=e.radialAxis,h=e.angularAxis,f=o(t,e);return r.forEach(function(r){if(r&&r[0]&&r[0].trace){var i,o=r[0],p=o.trace,d=o.t,g=p._length,v=d.r,m=d.theta,y=d.opts,x=v.slice(),b=m.slice();for(i=0;i<v.length;i++)e.isPtInside({r:v[i],theta:m[i]})||(x[i]=NaN,b[i]=NaN);var _=new Array(2*g),w=Array(g),k=Array(g);for(i=0;i<g;i++){var T,A,M=x[i];if(a(M)){var S=u.c2g(M),E=h.c2g(b[i],p.thetaunit);T=S*Math.cos(E),A=S*Math.sin(E)}else T=A=NaN;w[i]=_[2*i]=T,k[i]=_[2*i+1]=A}d.tree=n(_),y.marker&&g>=c&&(y.marker.cluster=d.tree),y.marker&&(y.markerSel.positions=y.markerUnsel.positions=y.marker.positions=_),y.line&&_.length>1&&l.extendFlat(y.line,s.linePositions(t,p,_)),y.text&&(l.extendFlat(y.text,{positions:_},s.textPosition(t,p,y.text,y.marker)),l.extendFlat(y.textSel,{positions:_},s.textPosition(t,p,y.text,y.markerSel)),l.extendFlat(y.textUnsel,{positions:_},s.textPosition(t,p,y.text,y.markerUnsel))),y.fill&&!f.fill2d&&(f.fill2d=!0),y.marker&&!f.scatter2d&&(f.scatter2d=!0),y.line&&!f.line2d&&(f.line2d=!0),y.text&&!f.glText&&(f.glText=!0),f.lineOptions.push(y.line),f.fillOptions.push(y.fill),f.markerOptions.push(y.marker),f.markerSelectedOptions.push(y.markerSel),f.markerUnselectedOptions.push(y.markerUnsel),f.textOptions.push(y.text),f.textSelectedOptions.push(y.textSel),f.textUnselectedOptions.push(y.textUnsel),f.selectBatch.push([]),f.unselectBatch.push([]),d.x=w,d.y=k,d.rawx=w,d.rawy=k,d.r=v,d.theta=m,d.positions=_,d._scene=f,d.index=f.count,f.count++}}),i(t,e,r)}}},{\"../../lib\":719,\"../scattergl/constants\":1161,\"../scattergl/convert\":1162,\"../scattergl/plot\":1167,\"../scattergl/scene_update\":1168,\"fast-isnumeric\":226,\"point-cluster\":470}],1190:[function(t,e,r){\"use strict\";var n=t(\"../../plots/template_attributes\").hovertemplateAttrs,a=t(\"../../plots/template_attributes\").texttemplateAttrs,i=t(\"../scatter/attributes\"),o=t(\"../../plots/attributes\"),s=t(\"../../components/colorscale/attributes\"),l=t(\"../../components/drawing/attributes\").dash,c=t(\"../../lib/extend\").extendFlat,u=i.marker,h=i.line,f=u.line;e.exports={a:{valType:\"data_array\",editType:\"calc\"},b:{valType:\"data_array\",editType:\"calc\"},c:{valType:\"data_array\",editType:\"calc\"},sum:{valType:\"number\",dflt:0,min:0,editType:\"calc\"},mode:c({},i.mode,{dflt:\"markers\"}),text:c({},i.text,{}),texttemplate:a({editType:\"plot\"},{keys:[\"a\",\"b\",\"c\",\"text\"]}),hovertext:c({},i.hovertext,{}),line:{color:h.color,width:h.width,dash:l,shape:c({},h.shape,{values:[\"linear\",\"spline\"]}),smoothing:h.smoothing,editType:\"calc\"},connectgaps:i.connectgaps,cliponaxis:i.cliponaxis,fill:c({},i.fill,{values:[\"none\",\"toself\",\"tonext\"],dflt:\"none\"}),fillcolor:i.fillcolor,marker:c({symbol:u.symbol,opacity:u.opacity,maxdisplayed:u.maxdisplayed,size:u.size,sizeref:u.sizeref,sizemin:u.sizemin,sizemode:u.sizemode,line:c({width:f.width,editType:\"calc\"},s(\"marker.line\")),gradient:u.gradient,editType:\"calc\"},s(\"marker\")),textfont:i.textfont,textposition:i.textposition,selected:i.selected,unselected:i.unselected,hoverinfo:c({},o.hoverinfo,{flags:[\"a\",\"b\",\"c\",\"text\",\"name\"]}),hoveron:i.hoveron,hovertemplate:n()}},{\"../../components/colorscale/attributes\":601,\"../../components/drawing/attributes\":614,\"../../lib/extend\":710,\"../../plots/attributes\":764,\"../../plots/template_attributes\":843,\"../scatter/attributes\":1111}],1191:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../scatter/colorscale_calc\"),i=t(\"../scatter/arrays_to_calcdata\"),o=t(\"../scatter/calc_selection\"),s=t(\"../scatter/calc\").calcMarkerSize,l=[\"a\",\"b\",\"c\"],c={a:[\"b\",\"c\"],b:[\"a\",\"c\"],c:[\"a\",\"b\"]};e.exports=function(t,e){var r,u,h,f,p,d,g=t._fullLayout[e.subplot].sum,v=e.sum||g,m={a:e.a,b:e.b,c:e.c};for(r=0;r<l.length;r++)if(!m[h=l[r]]){for(p=m[c[h][0]],d=m[c[h][1]],f=new Array(p.length),u=0;u<p.length;u++)f[u]=v-p[u]-d[u];m[h]=f}var y,x,b,_,w,k,T=e._length,A=new Array(T);for(r=0;r<T;r++)y=m.a[r],x=m.b[r],b=m.c[r],n(y)&&n(x)&&n(b)?(1!==(_=g/((y=+y)+(x=+x)+(b=+b)))&&(y*=_,x*=_,b*=_),k=y,w=b-x,A[r]={x:w,y:k,a:y,b:x,c:b}):A[r]={x:!1,y:!1};return s(e,T),a(t,e),i(A,e),o(A,e),A}},{\"../scatter/arrays_to_calcdata\":1110,\"../scatter/calc\":1112,\"../scatter/calc_selection\":1113,\"../scatter/colorscale_calc\":1114,\"fast-isnumeric\":226}],1192:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../scatter/constants\"),i=t(\"../scatter/subtypes\"),o=t(\"../scatter/marker_defaults\"),s=t(\"../scatter/line_defaults\"),l=t(\"../scatter/line_shape_defaults\"),c=t(\"../scatter/text_defaults\"),u=t(\"../scatter/fillcolor_defaults\"),h=t(\"./attributes\");e.exports=function(t,e,r,f){function p(r,a){return n.coerce(t,e,h,r,a)}var d,g=p(\"a\"),v=p(\"b\"),m=p(\"c\");if(g?(d=g.length,v?(d=Math.min(d,v.length),m&&(d=Math.min(d,m.length))):d=m?Math.min(d,m.length):0):v&&m&&(d=Math.min(v.length,m.length)),d){e._length=d,p(\"sum\"),p(\"text\"),p(\"hovertext\"),\"fills\"!==e.hoveron&&p(\"hovertemplate\"),p(\"mode\",d<a.PTS_LINESONLY?\"lines+markers\":\"lines\"),i.hasLines(e)&&(s(t,e,r,f,p),l(t,e,p),p(\"connectgaps\")),i.hasMarkers(e)&&o(t,e,r,f,p,{gradient:!0}),i.hasText(e)&&(p(\"texttemplate\"),c(t,e,f,p));var y=[];(i.hasMarkers(e)||i.hasText(e))&&(p(\"cliponaxis\"),p(\"marker.maxdisplayed\"),y.push(\"points\")),p(\"fill\"),\"none\"!==e.fill&&(u(t,e,r,p),i.hasLines(e)||l(t,e,p)),\"tonext\"!==e.fill&&\"toself\"!==e.fill||y.push(\"fills\"),p(\"hoveron\",y.join(\"+\")||\"points\"),n.coerceSelectionMarkerOpacity(e,p)}else e.visible=!1}},{\"../../lib\":719,\"../scatter/constants\":1115,\"../scatter/fillcolor_defaults\":1119,\"../scatter/line_defaults\":1123,\"../scatter/line_shape_defaults\":1125,\"../scatter/marker_defaults\":1129,\"../scatter/subtypes\":1134,\"../scatter/text_defaults\":1135,\"./attributes\":1190}],1193:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,a){if(e.xa&&(t.xaxis=e.xa),e.ya&&(t.yaxis=e.ya),n[a]){var i=n[a];t.a=i.a,t.b=i.b,t.c=i.c}else t.a=e.a,t.b=e.b,t.c=e.c;return t}},{}],1194:[function(t,e,r){\"use strict\";var n=t(\"../scatter/hover\"),a=t(\"../../plots/cartesian/axes\");e.exports=function(t,e,r,i){var o=n(t,e,r,i);if(o&&!1!==o[0].index){var s=o[0];if(void 0===s.index){var l=1-s.y0/t.ya._length,c=t.xa._length,u=c*l/2,h=c-u;return s.x0=Math.max(Math.min(s.x0,h),u),s.x1=Math.max(Math.min(s.x1,h),u),o}var f=s.cd[s.index];s.a=f.a,s.b=f.b,s.c=f.c,s.xLabelVal=void 0,s.yLabelVal=void 0;var p=s.subplot;s.aLabel=a.tickText(p.aaxis,f.a,\"hover\").text,s.bLabel=a.tickText(p.baxis,f.b,\"hover\").text,s.cLabel=a.tickText(p.caxis,f.c,\"hover\").text;var d=s.trace,g=f.hi||d.hoverinfo,v=[];if(!d.hovertemplate){var m=g.split(\"+\");-1!==m.indexOf(\"all\")&&(m=[\"a\",\"b\",\"c\"]),-1!==m.indexOf(\"a\")&&y(p.aaxis,s.aLabel),-1!==m.indexOf(\"b\")&&y(p.baxis,s.bLabel),-1!==m.indexOf(\"c\")&&y(p.caxis,s.cLabel)}return s.extraText=v.join(\"<br>\"),s.hovertemplate=d.hovertemplate,o}function y(t,e){v.push(t._hovertitle+\": \"+e)}}},{\"../../plots/cartesian/axes\":767,\"../scatter/hover\":1121}],1195:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../scatter/marker_colorbar\"),calc:t(\"./calc\"),plot:t(\"./plot\"),style:t(\"../scatter/style\").style,styleOnSelect:t(\"../scatter/style\").styleOnSelect,hoverPoints:t(\"./hover\"),selectPoints:t(\"../scatter/select\"),eventData:t(\"./event_data\"),moduleType:\"trace\",name:\"scatterternary\",basePlotModule:t(\"../../plots/ternary\"),categories:[\"ternary\",\"symbols\",\"showLegend\",\"scatter-like\"],meta:{}}},{\"../../plots/ternary\":844,\"../scatter/marker_colorbar\":1128,\"../scatter/select\":1131,\"../scatter/style\":1133,\"./attributes\":1190,\"./calc\":1191,\"./defaults\":1192,\"./event_data\":1193,\"./hover\":1194,\"./plot\":1196}],1196:[function(t,e,r){\"use strict\";var n=t(\"../scatter/plot\");e.exports=function(t,e,r){var a=e.plotContainer;a.select(\".scatterlayer\").selectAll(\"*\").remove();var i={xaxis:e.xaxis,yaxis:e.yaxis,plot:a,layerClipId:e._hasClipOnAxisFalse?e.clipIdRelative:null},o=e.layers.frontplot.select(\"g.scatterlayer\");n(t,i,r,o)}},{\"../scatter/plot\":1130}],1197:[function(t,e,r){\"use strict\";var n=t(\"../scatter/attributes\"),a=t(\"../../components/colorscale/attributes\"),i=t(\"../../plots/template_attributes\").hovertemplateAttrs,o=t(\"../scattergl/attributes\"),s=t(\"../../plots/cartesian/constants\").idRegex,l=t(\"../../plot_api/plot_template\").templatedArray,c=t(\"../../lib/extend\").extendFlat,u=n.marker,h=u.line,f=c(a(\"marker.line\",{editTypeOverride:\"calc\"}),{width:c({},h.width,{editType:\"calc\"}),editType:\"calc\"}),p=c(a(\"marker\"),{symbol:u.symbol,size:c({},u.size,{editType:\"markerSize\"}),sizeref:u.sizeref,sizemin:u.sizemin,sizemode:u.sizemode,opacity:u.opacity,colorbar:u.colorbar,line:f,editType:\"calc\"});function d(t){return{valType:\"info_array\",freeLength:!0,editType:\"calc\",items:{valType:\"subplotid\",regex:s[t],editType:\"plot\"}}}p.color.editType=p.cmin.editType=p.cmax.editType=\"style\",e.exports={dimensions:l(\"dimension\",{visible:{valType:\"boolean\",dflt:!0,editType:\"calc\"},label:{valType:\"string\",editType:\"calc\"},values:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},axis:{type:{valType:\"enumerated\",values:[\"linear\",\"log\",\"date\",\"category\"],editType:\"calc+clearAxisTypes\"},matches:{valType:\"boolean\",dflt:!1,editType:\"calc\"},editType:\"calc+clearAxisTypes\"},editType:\"calc+clearAxisTypes\"}),text:c({},o.text,{}),hovertext:c({},o.hovertext,{}),hovertemplate:i(),marker:p,xaxes:d(\"x\"),yaxes:d(\"y\"),diagonal:{visible:{valType:\"boolean\",dflt:!0,editType:\"calc\"},editType:\"calc\"},showupperhalf:{valType:\"boolean\",dflt:!0,editType:\"calc\"},showlowerhalf:{valType:\"boolean\",dflt:!0,editType:\"calc\"},selected:{marker:o.selected.marker,editType:\"calc\"},unselected:{marker:o.unselected.marker,editType:\"calc\"},opacity:o.opacity}},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plot_api/plot_template\":757,\"../../plots/cartesian/constants\":773,\"../../plots/template_attributes\":843,\"../scatter/attributes\":1111,\"../scattergl/attributes\":1159}],1198:[function(t,e,r){\"use strict\";var n=t(\"regl-line2d\"),a=t(\"../../registry\"),i=t(\"../../lib/prepare_regl\"),o=t(\"../../plots/get_data\").getModuleCalcData,s=t(\"../../plots/cartesian\"),l=t(\"../../plots/cartesian/axis_ids\").getFromId,c=t(\"../../plots/cartesian/axes\").shouldShowZeroLine,u=\"splom\";function h(t,e,r){for(var n=r.matrixOptions.data.length,a=e._visibleDims,i=r.viewOpts.ranges=new Array(n),o=0;o<a.length;o++){var s=a[o],c=i[o]=new Array(4),u=l(t,e._diag[s][0]);u&&(c[0]=u.r2l(u.range[0]),c[2]=u.r2l(u.range[1]));var h=l(t,e._diag[s][1]);h&&(c[1]=h.r2l(h.range[0]),c[3]=h.r2l(h.range[1]))}r.selectBatch.length||r.unselectBatch.length?r.matrix.update({ranges:i},{ranges:i}):r.matrix.update({ranges:i})}function f(t){var e=t._fullLayout,r=e._glcanvas.data()[0].regl,a=e._splomGrid;a||(a=e._splomGrid=n(r)),a.update(function(t){var e,r=t._fullLayout,n=r._size,a=[0,0,r.width,r.height],i={};function o(t,e,r,n,o,s){var l=e[t+\"color\"],c=e[t+\"width\"],u=String(l+c);u in i?i[u].data.push(NaN,NaN,r,n,o,s):i[u]={data:[r,n,o,s],join:\"rect\",thickness:c,color:l,viewport:a,range:a,overlay:!1}}for(e in r._splomSubplots){var s,l,u=r._plots[e],h=u.xaxis,f=u.yaxis,p=h._gridVals,d=f._gridVals,g=n.b+f.domain[0]*n.h,v=-f._m,m=-v*f.r2l(f.range[0],f.calendar);if(h.showgrid)for(e=0;e<p.length;e++)s=h._offset+h.l2p(p[e].x),o(\"grid\",h,s,g,s,g+f._length);if(f.showgrid)for(e=0;e<d.length;e++)l=g+m+v*d[e].x,o(\"grid\",f,h._offset,l,h._offset+h._length,l);c(t,h,f)&&(s=h._offset+h.l2p(0),o(\"zeroline\",h,s,g,s,g+f._length)),c(t,f,h)&&(l=g+m+0,o(\"zeroline\",f,h._offset,l,h._offset+h._length,l))}var y=[];for(e in i)y.push(i[e]);return y}(t))}e.exports={name:u,attr:s.attr,attrRegex:s.attrRegex,layoutAttributes:s.layoutAttributes,supplyLayoutDefaults:s.supplyLayoutDefaults,drawFramework:s.drawFramework,plot:function(t){var e=t._fullLayout,r=a.getModule(u),n=o(t.calcdata,r)[0];i(t,[\"ANGLE_instanced_arrays\",\"OES_element_index_uint\"])&&(e._hasOnlyLargeSploms&&f(t),r.plot(t,{},n))},drag:function(t){var e=t.calcdata,r=t._fullLayout;r._hasOnlyLargeSploms&&f(t);for(var n=0;n<e.length;n++){var a=e[n][0].trace,i=r._splomScenes[a.uid];\"splom\"===a.type&&i&&i.matrix&&h(t,a,i)}},updateGrid:f,clean:function(t,e,r,n){var a,i={};if(n._splomScenes){for(a=0;a<t.length;a++){var o=t[a];\"splom\"===o.type&&(i[o.uid]=1)}for(a=0;a<r.length;a++){var l=r[a];if(!i[l.uid]){var c=n._splomScenes[l.uid];c&&c.destroy&&c.destroy(),n._splomScenes[l.uid]=null,delete n._splomScenes[l.uid]}}}0===Object.keys(n._splomScenes||{}).length&&delete n._splomScenes,n._splomGrid&&!e._hasOnlyLargeSploms&&n._hasOnlyLargeSploms&&(n._splomGrid.destroy(),n._splomGrid=null,delete n._splomGrid),s.clean(t,e,r,n)},updateFx:s.updateFx,toSVG:s.toSVG}},{\"../../lib/prepare_regl\":732,\"../../plots/cartesian\":778,\"../../plots/cartesian/axes\":767,\"../../plots/cartesian/axis_ids\":770,\"../../plots/get_data\":802,\"../../registry\":848,\"regl-line2d\":492}],1199:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/cartesian/axis_ids\"),i=t(\"../scatter/calc\").calcMarkerSize,o=t(\"../scatter/calc\").calcAxisExpansion,s=t(\"../scatter/colorscale_calc\"),l=t(\"../scattergl/convert\").markerSelection,c=t(\"../scattergl/convert\").markerStyle,u=t(\"./scene_update\"),h=t(\"../../constants/numerical\").BADNUM,f=t(\"../scattergl/constants\").TOO_MANY_POINTS;e.exports=function(t,e){var r,p,d,g,v,m,y=e.dimensions,x=e._length,b={},_=b.cdata=[],w=b.data=[],k=e._visibleDims=[];function T(t,r){for(var a=t.makeCalcdata({v:r.values,vcalendar:e.calendar},\"v\"),i=0;i<a.length;i++)a[i]=a[i]===h?NaN:a[i];_.push(a),w.push(\"log\"===t.type?n.simpleMap(a,t.c2l):a)}for(r=0;r<y.length;r++)if((d=y[r]).visible){if(g=a.getFromId(t,e._diag[r][0]),v=a.getFromId(t,e._diag[r][1]),g&&v&&g.type!==v.type){n.log(\"Skipping splom dimension \"+r+\" with conflicting axis types\");continue}g?(T(g,d),v&&\"category\"===v.type&&(v._categories=g._categories.slice())):T(v,d),k.push(r)}for(s(t,e),n.extendFlat(b,c(e)),m=_.length*x>f?2*(b.sizeAvg||Math.max(b.size,3)):i(e,x),p=0;p<k.length;p++)d=y[r=k[p]],g=a.getFromId(t,e._diag[r][0])||{},v=a.getFromId(t,e._diag[r][1])||{},o(t,e,g,v,_[p],_[p],m);var A=u(t,e);return A.matrix||(A.matrix=!0),A.matrixOptions=b,A.selectedOptions=l(e,e.selected),A.unselectedOptions=l(e,e.unselected),[{x:!1,y:!1,t:{},trace:e}]}},{\"../../constants/numerical\":695,\"../../lib\":719,\"../../plots/cartesian/axis_ids\":770,\"../scatter/calc\":1112,\"../scatter/colorscale_calc\":1114,\"../scattergl/constants\":1161,\"../scattergl/convert\":1162,\"./scene_update\":1206}],1200:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/array_container_defaults\"),i=t(\"./attributes\"),o=t(\"../scatter/subtypes\"),s=t(\"../scatter/marker_defaults\"),l=t(\"../parcoords/merge_length\"),c=/-open/;function u(t,e){function r(r,a){return n.coerce(t,e,i.dimensions,r,a)}r(\"label\");var a=r(\"values\");a&&a.length?r(\"visible\"):e.visible=!1,r(\"axis.type\"),r(\"axis.matches\")}e.exports=function(t,e,r,h){function f(r,a){return n.coerce(t,e,i,r,a)}var p=a(t,e,{name:\"dimensions\",handleItemDefaults:u}),d=f(\"diagonal.visible\"),g=f(\"showupperhalf\"),v=f(\"showlowerhalf\");if(l(e,p,\"values\")&&(d||g||v)){f(\"text\"),f(\"hovertext\"),f(\"hovertemplate\"),s(t,e,r,h,f);var m=c.test(e.marker.symbol),y=o.isBubble(e);f(\"marker.line.width\",m||y?1:0),function(t,e,r,n){var a,i,o=e.dimensions,s=o.length,l=e.showupperhalf,c=e.showlowerhalf,u=e.diagonal.visible,h=new Array(s),f=new Array(s);for(a=0;a<s;a++){var p=a?a+1:\"\";h[a]=\"x\"+p,f[a]=\"y\"+p}var d=n(\"xaxes\",h),g=n(\"yaxes\",f),v=e._diag=new Array(s);e._xaxes={},e._yaxes={};var m=[],y=[];function x(t,n,a,i){if(t){var o=t.charAt(0),s=r._splomAxes[o];if(e[\"_\"+o+\"axes\"][t]=1,i.push(t),!(t in s)){var l=s[t]={};a&&(l.label=a.label||\"\",a.visible&&a.axis&&(a.axis.type&&(l.type=a.axis.type),a.axis.matches&&(l.matches=n)))}}}var b=!u&&!c,_=!u&&!l;for(e._axesDim={},a=0;a<s;a++){var w=o[a],k=0===a,T=a===s-1,A=k&&b||T&&_?void 0:d[a],M=k&&_||T&&b?void 0:g[a];x(A,M,w,m),x(M,A,w,y),v[a]=[A,M],e._axesDim[A]=a,e._axesDim[M]=a}for(a=0;a<m.length;a++)for(i=0;i<y.length;i++){var S=m[a]+y[i];a>i&&l?r._splomSubplots[S]=1:a<i&&c?r._splomSubplots[S]=1:a!==i||!u&&c&&l||(r._splomSubplots[S]=1)}(!c||!u&&l&&c)&&(r._splomGridDflt.xside=\"bottom\",r._splomGridDflt.yside=\"left\")}(0,e,h,f),n.coerceSelectionMarkerOpacity(e,f)}else e.visible=!1}},{\"../../lib\":719,\"../../plots/array_container_defaults\":763,\"../parcoords/merge_length\":1082,\"../scatter/marker_defaults\":1129,\"../scatter/subtypes\":1134,\"./attributes\":1197}],1201:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../scatter/colorscale_calc\"),i=t(\"../scattergl/convert\").markerStyle;e.exports=function(t,e){var r=e.trace,o=t._fullLayout._splomScenes[r.uid];if(o){a(t,r),n.extendFlat(o.matrixOptions,i(r));var s=n.extendFlat({},o.matrixOptions,o.viewOpts);o.matrix.update(s,null)}}},{\"../../lib\":719,\"../scatter/colorscale_calc\":1114,\"../scattergl/convert\":1162}],1202:[function(t,e,r){\"use strict\";r.getDimIndex=function(t,e){for(var r=e._id,n={x:0,y:1}[r.charAt(0)],a=t._visibleDims,i=0;i<a.length;i++){var o=a[i];if(t._diag[o][n]===r)return i}return!1}},{}],1203:[function(t,e,r){\"use strict\";var n=t(\"./helpers\"),a=t(\"../scattergl/hover\").calcHover;e.exports={hoverPoints:function(t,e,r){var i=t.cd[0].trace,o=t.scene.matrixOptions.cdata,s=t.xa,l=t.ya,c=s.c2p(e),u=l.c2p(r),h=t.distance,f=n.getDimIndex(i,s),p=n.getDimIndex(i,l);if(!1===f||!1===p)return[t];for(var d,g,v=o[f],m=o[p],y=h,x=0;x<v.length;x++){var b=v[x],_=m[x],w=s.c2p(b)-c,k=l.c2p(_)-u,T=Math.sqrt(w*w+k*k);T<y&&(y=g=T,d=x)}return t.index=d,t.distance=y,t.dxy=g,void 0===d?[t]:[a(t,v,m,i)]}}},{\"../scattergl/hover\":1165,\"./helpers\":1202}],1204:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../components/grid\");e.exports={moduleType:\"trace\",name:\"splom\",basePlotModule:t(\"./base_plot\"),categories:[\"gl\",\"regl\",\"cartesian\",\"symbols\",\"showLegend\",\"scatter-like\"],attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../scatter/marker_colorbar\"),calc:t(\"./calc\"),plot:t(\"./plot\"),hoverPoints:t(\"./hover\").hoverPoints,selectPoints:t(\"./select\"),editStyle:t(\"./edit_style\"),meta:{}},n.register(a)},{\"../../components/grid\":636,\"../../registry\":848,\"../scatter/marker_colorbar\":1128,\"./attributes\":1197,\"./base_plot\":1198,\"./calc\":1199,\"./defaults\":1200,\"./edit_style\":1201,\"./hover\":1203,\"./plot\":1205,\"./select\":1207}],1205:[function(t,e,r){\"use strict\";var n=t(\"regl-splom\"),a=t(\"../../lib\"),i=t(\"../../plots/cartesian/axis_ids\");function o(t,e){var r,o,s,l,c,u=t._fullLayout,h=u._size,f=e.trace,p=e.t,d=u._splomScenes[f.uid],g=d.matrixOptions,v=g.cdata,m=u._glcanvas.data()[0].regl,y=u.dragmode;if(0!==v.length){g.lower=f.showupperhalf,g.upper=f.showlowerhalf,g.diagonal=f.diagonal.visible;var x=f._visibleDims,b=v.length,_=d.viewOpts={};for(_.ranges=new Array(b),_.domains=new Array(b),c=0;c<x.length;c++){s=x[c];var w=_.ranges[c]=new Array(4),k=_.domains[c]=new Array(4);(r=i.getFromId(t,f._diag[s][0]))&&(w[0]=r._rl[0],w[2]=r._rl[1],k[0]=r.domain[0],k[2]=r.domain[1]),(o=i.getFromId(t,f._diag[s][1]))&&(w[1]=o._rl[0],w[3]=o._rl[1],k[1]=o.domain[0],k[3]=o.domain[1])}_.viewport=[h.l,h.b,h.w+h.l,h.h+h.b],!0===d.matrix&&(d.matrix=n(m));var T=u.clickmode.indexOf(\"select\")>-1,A=!0;if(\"lasso\"===y||\"select\"===y||!!f.selectedpoints||T){var M=f._length;if(f.selectedpoints){d.selectBatch=f.selectedpoints;var S=f.selectedpoints,E={};for(s=0;s<S.length;s++)E[S[s]]=!0;var C=[];for(s=0;s<M;s++)E[s]||C.push(s);d.unselectBatch=C}var L=p.xpx=new Array(b),P=p.ypx=new Array(b);for(c=0;c<x.length;c++){if(s=x[c],r=i.getFromId(t,f._diag[s][0]))for(L[c]=new Array(M),l=0;l<M;l++)L[c][l]=r.c2p(v[c][l]);if(o=i.getFromId(t,f._diag[s][1]))for(P[c]=new Array(M),l=0;l<M;l++)P[c][l]=o.c2p(v[c][l])}if(d.selectBatch.length||d.unselectBatch.length){var O=a.extendFlat({},g,d.unselectedOptions,_),I=a.extendFlat({},g,d.selectedOptions,_);d.matrix.update(O,I),A=!1}}else p.xpx=p.ypx=null;if(A){var z=a.extendFlat({},g,_);d.matrix.update(z,null)}}}e.exports=function(t,e,r){if(r.length)for(var n=0;n<r.length;n++)o(t,r[n][0])}},{\"../../lib\":719,\"../../plots/cartesian/axis_ids\":770,\"regl-splom\":502}],1206:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e){var r=t._fullLayout,a=e.uid,i=r._splomScenes;i||(i=r._splomScenes={});var o={dirty:!0},s=i[e.uid];return s||((s=i[a]=n.extendFlat({},o,{matrix:!1,selectBatch:[],unselectBatch:[]})).draw=function(){s.matrix&&s.matrix.draw&&(s.selectBatch.length||s.unselectBatch.length?s.matrix.draw(s.unselectBatch,s.selectBatch):s.matrix.draw()),s.dirty=!1},s.destroy=function(){s.matrix&&s.matrix.destroy&&s.matrix.destroy(),s.matrixOptions=null,s.selectBatch=null,s.unselectBatch=null,s=null}),s.dirty||n.extendFlat(s,o),s}},{\"../../lib\":719}],1207:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../scatter/subtypes\"),i=t(\"./helpers\");e.exports=function(t,e){var r=t.cd,o=r[0].trace,s=r[0].t,l=t.scene,c=l.matrixOptions.cdata,u=t.xaxis,h=t.yaxis,f=[];if(!l)return f;var p=!a.hasMarkers(o)&&!a.hasText(o);if(!0!==o.visible||p)return f;var d=i.getDimIndex(o,u),g=i.getDimIndex(o,h);if(!1===d||!1===g)return f;var v=s.xpx[d],m=s.ypx[g],y=c[d],x=c[g],b=[],_=[];if(!1!==e&&!e.degenerate)for(var w=0;w<y.length;w++)e.contains([v[w],m[w]],null,w,t)?(b.push(w),f.push({pointNumber:w,x:y[w],y:x[w]})):_.push(w);var k=l.matrixOptions;return b.length||_.length?l.selectBatch.length||l.unselectBatch.length||l.matrix.update(l.unselectedOptions,n.extendFlat({},k,l.selectedOptions,l.viewOpts)):l.matrix.update(k,null),l.selectBatch=b,l.unselectBatch=_,f}},{\"../../lib\":719,\"../scatter/subtypes\":1134,\"./helpers\":1202}],1208:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/attributes\"),a=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"../mesh3d/attributes\"),o=t(\"../../plots/attributes\"),s=t(\"../../lib/extend\").extendFlat,l={x:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},y:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},z:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},u:{valType:\"data_array\",editType:\"calc\"},v:{valType:\"data_array\",editType:\"calc\"},w:{valType:\"data_array\",editType:\"calc\"},starts:{x:{valType:\"data_array\",editType:\"calc\"},y:{valType:\"data_array\",editType:\"calc\"},z:{valType:\"data_array\",editType:\"calc\"},editType:\"calc\"},maxdisplayed:{valType:\"integer\",min:0,dflt:1e3,editType:\"calc\"},sizeref:{valType:\"number\",editType:\"calc\",min:0,dflt:1},text:{valType:\"string\",dflt:\"\",editType:\"calc\"},hovertext:{valType:\"string\",dflt:\"\",editType:\"calc\"},hovertemplate:a({editType:\"calc\"},{keys:[\"tubex\",\"tubey\",\"tubez\",\"tubeu\",\"tubev\",\"tubew\",\"norm\",\"divergence\"]})};s(l,n(\"\",{colorAttr:\"u/v/w norm\",showScaleDflt:!0,editTypeOverride:\"calc\"}));[\"opacity\",\"lightposition\",\"lighting\"].forEach(function(t){l[t]=i[t]}),l.hoverinfo=s({},o.hoverinfo,{editType:\"calc\",flags:[\"x\",\"y\",\"z\",\"u\",\"v\",\"w\",\"norm\",\"divergence\",\"text\",\"name\"],dflt:\"x+y+z+norm+text+name\"}),l.transforms=void 0,e.exports=l},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plots/attributes\":764,\"../../plots/template_attributes\":843,\"../mesh3d/attributes\":1052}],1209:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/calc\");e.exports=function(t,e){var r,a,i,o,s=e.u,l=e.v,c=e.w,u=e.x,h=e.y,f=e.z,p=Math.min(u.length,h.length,f.length,s.length,l.length,c.length),d=0;e.starts&&(a=e.starts.x||[],i=e.starts.y||[],o=e.starts.z||[],d=Math.min(a.length,i.length,o.length));var g=0,v=1/0;for(r=0;r<p;r++){var m=s[r],y=l[r],x=c[r],b=Math.sqrt(m*m+y*y+x*x);g=Math.max(g,b),v=Math.min(v,b)}n(t,e,{vals:[v,g],containerStr:\"\",cLetter:\"c\"});var _=-1/0,w=1/0,k=-1/0,T=1/0,A=-1/0,M=1/0;for(r=0;r<p;r++){var S=u[r];_=Math.max(_,S),w=Math.min(w,S);var E=h[r];k=Math.max(k,E),T=Math.min(T,E);var C=f[r];A=Math.max(A,C),M=Math.min(M,C)}for(r=0;r<d;r++){var L=a[r];_=Math.max(_,L),w=Math.min(w,L);var P=i[r];k=Math.max(k,P),T=Math.min(T,P);var O=o[r];A=Math.max(A,O),M=Math.min(M,O)}e._len=p,e._slen=d,e._normMax=g,e._xbnds=[w,_],e._ybnds=[T,k],e._zbnds=[M,A]}},{\"../../components/colorscale/calc\":602}],1210:[function(t,e,r){\"use strict\";var n=t(\"gl-streamtube3d\"),a=n.createTubeMesh,i=t(\"../../lib\"),o=t(\"../../lib/gl_format_color\").parseColorScale,s=t(\"../../components/colorscale\").extractOpts,l=t(\"../../plots/gl3d/zip3\"),c={xaxis:0,yaxis:1,zaxis:2};function u(t,e){this.scene=t,this.uid=e,this.mesh=null,this.data=null}var h=u.prototype;function f(t){return i.distinctVals(t).vals}function p(t){var e=t.length;return e>2?t.slice(1,e-1):2===e?[(t[0]+t[1])/2]:t}function d(t){var e=t.length;return 1===e?[.5,.5]:[t[1]-t[0],t[e-1]-t[e-2]]}function g(t,e){var r=t.fullSceneLayout,a=t.dataScale,u=e._len,h={};function g(t,e){var n=r[e],o=a[c[e]];return i.simpleMap(t,function(t){return n.d2l(t)*o})}h.vectors=l(g(e.u,\"xaxis\"),g(e.v,\"yaxis\"),g(e.w,\"zaxis\"),u);var v=f(e.x.slice(0,u)),m=f(e.y.slice(0,u)),y=f(e.z.slice(0,u));if(v.length*m.length*y.length>u)return{positions:[],cells:[]};var x=g(v,\"xaxis\"),b=g(m,\"yaxis\"),_=g(y,\"zaxis\");h.meshgrid=[x,b,_];var w=e._slen;if(w)h.startingPositions=l(g(e.starts.x.slice(0,w),\"xaxis\"),g(e.starts.y.slice(0,w),\"yaxis\"),g(e.starts.z.slice(0,w),\"zaxis\"));else{for(var k=b[0],T=p(x),A=p(_),M=new Array(T.length*A.length),S=0,E=0;E<T.length;E++)for(var C=0;C<A.length;C++)M[S++]=[T[E],k,A[C]];h.startingPositions=M}h.colormap=o(e),h.tubeSize=e.sizeref,h.maxLength=e.maxdisplayed;var L=g(e._xbnds,\"xaxis\"),P=g(e._ybnds,\"yaxis\"),O=g(e._zbnds,\"zaxis\"),I=d(x),z=d(b),D=d(_),R=[[L[0]-I[0],P[0]-z[0],O[0]-D[0]],[L[1]+I[1],P[1]+z[1],O[1]+D[1]]],F=n(h,R),B=s(e);F.vertexIntensityBounds=[B.min/e._normMax,B.max/e._normMax];var N=e.lightposition;return F.lightPosition=[N.x,N.y,N.z],F.ambient=e.lighting.ambient,F.diffuse=e.lighting.diffuse,F.specular=e.lighting.specular,F.roughness=e.lighting.roughness,F.fresnel=e.lighting.fresnel,F.opacity=e.opacity,e._pad=F.tubeScale*e.sizeref*2,F}h.handlePick=function(t){var e=this.scene.fullSceneLayout,r=this.scene.dataScale;function n(t,n){var a=e[n],i=r[c[n]];return a.l2c(t)/i}if(t.object===this.mesh){var a=t.data.position,i=t.data.velocity;return t.traceCoordinate=[n(a[0],\"xaxis\"),n(a[1],\"yaxis\"),n(a[2],\"zaxis\"),n(i[0],\"xaxis\"),n(i[1],\"yaxis\"),n(i[2],\"zaxis\"),t.data.intensity*this.data._normMax,t.data.divergence],t.textLabel=this.data.hovertext||this.data.text,!0}},h.update=function(t){this.data=t;var e=g(this.scene,t);this.mesh.update(e)},h.dispose=function(){this.scene.glplot.remove(this.mesh),this.mesh.dispose()},e.exports=function(t,e){var r=t.glplot.gl,n=g(t,e),i=a(r,n),o=new u(t,e.uid);return o.mesh=i,o.data=e,i._trace=o,t.glplot.add(i),o}},{\"../../components/colorscale\":606,\"../../lib\":719,\"../../lib/gl_format_color\":716,\"../../plots/gl3d/zip3\":818,\"gl-streamtube3d\":314}],1211:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/colorscale/defaults\"),i=t(\"./attributes\");e.exports=function(t,e,r,o){function s(r,a){return n.coerce(t,e,i,r,a)}var l=s(\"u\"),c=s(\"v\"),u=s(\"w\"),h=s(\"x\"),f=s(\"y\"),p=s(\"z\");l&&l.length&&c&&c.length&&u&&u.length&&h&&h.length&&f&&f.length&&p&&p.length?(s(\"starts.x\"),s(\"starts.y\"),s(\"starts.z\"),s(\"maxdisplayed\"),s(\"sizeref\"),s(\"lighting.ambient\"),s(\"lighting.diffuse\"),s(\"lighting.specular\"),s(\"lighting.roughness\"),s(\"lighting.fresnel\"),s(\"lightposition.x\"),s(\"lightposition.y\"),s(\"lightposition.z\"),a(t,e,o,s,{prefix:\"\",cLetter:\"c\"}),s(\"text\"),s(\"hovertext\"),s(\"hovertemplate\"),e._length=null):e.visible=!1}},{\"../../components/colorscale/defaults\":604,\"../../lib\":719,\"./attributes\":1208}],1212:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"streamtube\",basePlotModule:t(\"../../plots/gl3d\"),categories:[\"gl3d\"],attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:{min:\"cmin\",max:\"cmax\"},calc:t(\"./calc\"),plot:t(\"./convert\"),eventData:function(t,e){return t.tubex=t.x,t.tubey=t.y,t.tubez=t.z,t.tubeu=e.traceCoordinate[3],t.tubev=e.traceCoordinate[4],t.tubew=e.traceCoordinate[5],t.norm=e.traceCoordinate[6],t.divergence=e.traceCoordinate[7],delete t.x,delete t.y,delete t.z,t},meta:{}}},{\"../../plots/gl3d\":807,\"./attributes\":1208,\"./calc\":1209,\"./convert\":1210,\"./defaults\":1211}],1213:[function(t,e,r){\"use strict\";var n=t(\"../../plots/attributes\"),a=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"../../plots/template_attributes\").texttemplateAttrs,o=t(\"../../components/colorscale/attributes\"),s=t(\"../../plots/domain\").attributes,l=t(\"../pie/attributes\"),c=t(\"./constants\"),u=t(\"../../lib/extend\").extendFlat;e.exports={labels:{valType:\"data_array\",editType:\"calc\"},parents:{valType:\"data_array\",editType:\"calc\"},values:{valType:\"data_array\",editType:\"calc\"},branchvalues:{valType:\"enumerated\",values:[\"remainder\",\"total\"],dflt:\"remainder\",editType:\"calc\"},count:{valType:\"flaglist\",flags:[\"branches\",\"leaves\"],dflt:\"leaves\",editType:\"calc\"},level:{valType:\"any\",editType:\"plot\",anim:!0},maxdepth:{valType:\"integer\",editType:\"plot\",dflt:-1},marker:u({colors:{valType:\"data_array\",editType:\"calc\"},line:{color:u({},l.marker.line.color,{dflt:null}),width:u({},l.marker.line.width,{dflt:1}),editType:\"calc\"},editType:\"calc\"},o(\"marker\",{colorAttr:\"colors\",anim:!1})),leaf:{opacity:{valType:\"number\",editType:\"style\",min:0,max:1},editType:\"plot\"},text:l.text,textinfo:{valType:\"flaglist\",flags:[\"label\",\"text\",\"value\",\"current path\",\"percent root\",\"percent entry\",\"percent parent\"],extras:[\"none\"],editType:\"plot\"},texttemplate:i({editType:\"plot\"},{keys:c.eventDataKeys.concat([\"label\",\"value\"])}),hovertext:l.hovertext,hoverinfo:u({},n.hoverinfo,{flags:[\"label\",\"text\",\"value\",\"name\",\"current path\",\"percent root\",\"percent entry\",\"percent parent\"],dflt:\"label+text+value+name\"}),hovertemplate:a({},{keys:c.eventDataKeys}),textfont:l.textfont,insidetextfont:l.insidetextfont,outsidetextfont:l.outsidetextfont,domain:s({name:\"sunburst\",trace:!0,editType:\"calc\"})}},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plots/attributes\":764,\"../../plots/domain\":792,\"../../plots/template_attributes\":843,\"../pie/attributes\":1085,\"./constants\":1216}],1214:[function(t,e,r){\"use strict\";var n=t(\"../../plots/plots\");r.name=\"sunburst\",r.plot=function(t,e,a,i){n.plotBasePlot(r.name,t,e,a,i)},r.clean=function(t,e,a,i){n.cleanBasePlot(r.name,t,e,a,i)}},{\"../../plots/plots\":828}],1215:[function(t,e,r){\"use strict\";var n=t(\"d3-hierarchy\"),a=t(\"fast-isnumeric\"),i=t(\"../../lib\"),o=t(\"../../components/colorscale\").makeColorScaleFuncFromTrace,s=t(\"../pie/calc\").makePullColorFn,l=t(\"../pie/calc\").generateExtendedColors,c=t(\"../../components/colorscale\").calc,u={},h={};r.calc=function(t,e){var r,l,u,h,f,p,d=t._fullLayout,g=e.ids,v=i.isArrayOrTypedArray(g),m=e.labels,y=e.parents,x=e.values,b=i.isArrayOrTypedArray(x),_=[],w={},k={},T=function(t){return t||\"number\"==typeof t},A=function(t){return!b||a(x[t])&&x[t]>=0};v?(r=Math.min(g.length,y.length),l=function(t){return T(g[t])&&A(t)},u=function(t){return String(g[t])}):(r=Math.min(m.length,y.length),l=function(t){return T(m[t])&&A(t)},u=function(t){return String(m[t])}),b&&(r=Math.min(r,x.length));for(var M=0;M<r;M++)if(l(M)){var S=u(M),E=T(y[M])?String(y[M]):\"\",C={i:M,id:S,pid:E,label:T(m[M])?String(m[M]):\"\"};b&&(C.v=+x[M]),_.push(C),f=S,w[h=E]?w[h].push(f):w[h]=[f],k[f]=1}if(w[\"\"]){if(w[\"\"].length>1){for(var L=i.randstr(),P=0;P<_.length;P++)\"\"===_[P].pid&&(_[P].pid=L);_.unshift({hasMultipleRoots:!0,id:L,pid:\"\",label:\"\"})}}else{var O,I=[];for(O in w)k[O]||I.push(O);if(1!==I.length)return i.warn(\"Multiple implied roots, cannot build \"+e.type+\" hierarchy.\");O=I[0],_.unshift({hasImpliedRoot:!0,id:O,pid:\"\",label:O})}try{p=n.stratify().id(function(t){return t.id}).parentId(function(t){return t.pid})(_)}catch(t){return i.warn(\"Failed to build \"+e.type+\" hierarchy. Error: \"+t.message)}var z=n.hierarchy(p),D=!1;if(b)switch(e.branchvalues){case\"remainder\":z.sum(function(t){return t.data.v});break;case\"total\":z.each(function(t){var e=t.data.data,r=e.v;if(t.children){var n=t.children.reduce(function(t,e){return t+e.data.data.v},0);if((e.hasImpliedRoot||e.hasMultipleRoots)&&(r=n),r<n)return D=!0,i.warn([\"Total value for node\",t.data.data.id,\"is smaller than the sum of its children.\",\"\\nparent value =\",r,\"\\nchildren sum =\",n].join(\" \"))}t.value=r})}else!function t(e,r,n){var a=0;var i=e.children;if(i){for(var o=i.length,s=0;s<o;s++)a+=t(i[s],r,n);n.branches&&a++}else n.leaves&&a++;e.value=e.data.data.value=a;r._values||(r._values=[]);r._values[e.data.data.i]=a;return a}(z,e,{branches:-1!==e.count.indexOf(\"branches\"),leaves:-1!==e.count.indexOf(\"leaves\")});if(!D){var R,F;z.sort(function(t,e){return e.value-t.value});var B=e.marker.colors||[],N=!!B.length;return e._hasColorscale?(N||(B=b?e.values:e._values),c(t,e,{vals:B,containerStr:\"marker\",cLetter:\"c\"}),F=o(e.marker)):R=s(d[\"_\"+e.type+\"colormap\"]),z.each(function(t){var r=t.data.data;r.color=e._hasColorscale?F(B[r.i]):R(B[r.i],r.id)}),_[0].hierarchy=z,_}},r._runCrossTraceCalc=function(t,e){var r=e._fullLayout,n=e.calcdata,a=r[t+\"colorway\"],i=r[\"_\"+t+\"colormap\"];r[\"extend\"+t+\"colors\"]&&(a=l(a,\"treemap\"===t?h:u));var o=0;function s(t){var e=t.data.data,r=e.id;!1===e.color&&(i[r]?e.color=i[r]:t.parent?t.parent.parent?e.color=t.parent.data.data.color:(i[r]=e.color=a[o%a.length],o++):e.color=\"rgba(0,0,0,0)\")}for(var c=0;c<n.length;c++){var f=n[c][0];f.trace.type===t&&f.hierarchy&&f.hierarchy.each(s)}},r.crossTraceCalc=function(t){return r._runCrossTraceCalc(\"sunburst\",t)}},{\"../../components/colorscale\":606,\"../../lib\":719,\"../pie/calc\":1087,\"d3-hierarchy\":158,\"fast-isnumeric\":226}],1216:[function(t,e,r){\"use strict\";e.exports={CLICK_TRANSITION_TIME:750,CLICK_TRANSITION_EASING:\"linear\",eventDataKeys:[\"currentPath\",\"root\",\"entry\",\"percentRoot\",\"percentEntry\",\"percentParent\"]}},{}],1217:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./attributes\"),i=t(\"../../plots/domain\").defaults,o=t(\"../bar/defaults\").handleText,s=t(\"../../components/colorscale\"),l=s.hasColorscale,c=s.handleDefaults;e.exports=function(t,e,r,s){function u(r,i){return n.coerce(t,e,a,r,i)}var h=u(\"labels\"),f=u(\"parents\");if(h&&h.length&&f&&f.length){var p=u(\"values\");p&&p.length?u(\"branchvalues\"):u(\"count\"),u(\"level\"),u(\"maxdepth\"),u(\"marker.line.width\")&&u(\"marker.line.color\",s.paper_bgcolor),u(\"marker.colors\");var d=e._hasColorscale=l(t,\"marker\",\"colors\");d&&c(t,e,s,u,{prefix:\"marker.\",cLetter:\"c\"}),u(\"leaf.opacity\",d?1:.7);var g=u(\"text\");u(\"texttemplate\"),e.texttemplate||u(\"textinfo\",Array.isArray(g)?\"text+label\":\"label\"),u(\"hovertext\"),u(\"hovertemplate\");o(t,e,s,u,\"auto\",{moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!1,moduleHasCliponaxis:!1,moduleHasTextangle:!1,moduleHasInsideanchor:!1}),i(e,s,u),e._length=null}else e.visible=!1}},{\"../../components/colorscale\":606,\"../../lib\":719,\"../../plots/domain\":792,\"../bar/defaults\":862,\"./attributes\":1213}],1218:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../registry\"),i=t(\"../../components/fx/helpers\").appendArrayPointValue,o=t(\"../../components/fx\"),s=t(\"../../lib\"),l=t(\"../../lib/events\"),c=t(\"./helpers\"),u=t(\"../pie/helpers\").formatPieValue;function h(t,e,r){for(var n=t.data.data,a={curveNumber:e.index,pointNumber:n.i,data:e._input,fullData:e},o=0;o<r.length;o++){var s=r[o];s in t&&(a[s]=t[s])}return\"parentString\"in t&&!c.isHierarchyRoot(t)&&(a.parent=t.parentString),i(a,e,n.i),a}e.exports=function(t,e,r,i,f){var p=i[0],d=p.trace,g=p.hierarchy,v=\"sunburst\"===d.type,m=\"treemap\"===d.type;\"_hasHoverLabel\"in d||(d._hasHoverLabel=!1),\"_hasHoverEvent\"in d||(d._hasHoverEvent=!1);t.on(\"mouseover\",function(a){var i=r._fullLayout;if(!r._dragging&&!1!==i.hovermode){var l=r._fullData[d.index],y=a.data.data,x=y.i,b=c.isHierarchyRoot(a),_=c.getParent(g,a),w=c.getValue(a),k=function(t){return s.castOption(l,x,t)},T=k(\"hovertemplate\"),A=o.castHoverinfo(l,i,x),M=i.separators;if(T||A&&\"none\"!==A&&\"skip\"!==A){var S,E;v&&(S=p.cx+a.pxmid[0]*(1-a.rInscribed),E=p.cy+a.pxmid[1]*(1-a.rInscribed)),m&&(S=a._hoverX,E=a._hoverY);var C,L={},P=[],O=[],I=function(t){return-1!==P.indexOf(t)};A&&(P=\"all\"===A?l._module.attributes.hoverinfo.flags:A.split(\"+\")),L.label=y.label,I(\"label\")&&L.label&&O.push(L.label),y.hasOwnProperty(\"v\")&&(L.value=y.v,L.valueLabel=u(L.value,M),I(\"value\")&&O.push(L.valueLabel)),L.currentPath=a.currentPath=c.getPath(a.data),I(\"current path\")&&!b&&O.push(L.currentPath);var z=[],D=function(){-1===z.indexOf(C)&&(O.push(C),z.push(C))};L.percentParent=a.percentParent=w/c.getValue(_),L.parent=a.parentString=c.getPtLabel(_),I(\"percent parent\")&&(C=c.formatPercent(L.percentParent,M)+\" of \"+L.parent,D()),L.percentEntry=a.percentEntry=w/c.getValue(e),L.entry=a.entry=c.getPtLabel(e),!I(\"percent entry\")||b||a.onPathbar||(C=c.formatPercent(L.percentEntry,M)+\" of \"+L.entry,D()),L.percentRoot=a.percentRoot=w/c.getValue(g),L.root=a.root=c.getPtLabel(g),I(\"percent root\")&&!b&&(C=c.formatPercent(L.percentRoot,M)+\" of \"+L.root,D()),L.text=k(\"hovertext\")||k(\"text\"),I(\"text\")&&(C=L.text,s.isValidTextValue(C)&&O.push(C));var R={trace:l,y:E,text:O.join(\"<br>\"),name:T||I(\"name\")?l.name:void 0,color:k(\"hoverlabel.bgcolor\")||y.color,borderColor:k(\"hoverlabel.bordercolor\"),fontFamily:k(\"hoverlabel.font.family\"),fontSize:k(\"hoverlabel.font.size\"),fontColor:k(\"hoverlabel.font.color\"),nameLength:k(\"hoverlabel.namelength\"),textAlign:k(\"hoverlabel.align\"),hovertemplate:T,hovertemplateLabels:L,eventData:[h(a,l,f.eventDataKeys)]};v&&(R.x0=S-a.rInscribed*a.rpx1,R.x1=S+a.rInscribed*a.rpx1,R.idealAlign=a.pxmid[0]<0?\"left\":\"right\"),m&&(R.x=S,R.idealAlign=S<0?\"left\":\"right\"),o.loneHover(R,{container:i._hoverlayer.node(),outerContainer:i._paper.node(),gd:r}),d._hasHoverLabel=!0}if(m){var F=t.select(\"path.surface\");f.styleOne(F,a,l,{hovered:!0})}d._hasHoverEvent=!0,r.emit(\"plotly_hover\",{points:[h(a,l,f.eventDataKeys)],event:n.event})}}),t.on(\"mouseout\",function(e){var a=r._fullLayout,i=r._fullData[d.index],s=n.select(this).datum();if(d._hasHoverEvent&&(e.originalEvent=n.event,r.emit(\"plotly_unhover\",{points:[h(s,i,f.eventDataKeys)],event:n.event}),d._hasHoverEvent=!1),d._hasHoverLabel&&(o.loneUnhover(a._hoverlayer.node()),d._hasHoverLabel=!1),m){var l=t.select(\"path.surface\");f.styleOne(l,s,i,{hovered:!1})}}),t.on(\"click\",function(t){var e=r._fullLayout,i=r._fullData[d.index];if(!1===l.triggerHandler(r,\"plotly_\"+d.type+\"click\",{points:[h(t,i,f.eventDataKeys)],event:n.event})||v&&(c.isHierarchyRoot(t)||c.isLeaf(t)))e.hovermode&&(r._hoverdata=[h(t,i,f.eventDataKeys)],o.click(r,n.event));else if(!r._dragging&&!r._transitioning){a.call(\"_storeDirectGUIEdit\",i,e._tracePreGUI[i.uid],{level:i.level});var s=c.getPtId(t),u=c.isEntry(t)?c.findEntryWithChild(g,s):c.findEntryWithLevel(g,s),p={data:[{level:c.getPtId(u)}],traces:[d.index]},m={frame:{redraw:!1,duration:f.transitionTime},transition:{duration:f.transitionTime,easing:f.transitionEasing},mode:\"immediate\",fromcurrent:!0};o.loneUnhover(e._hoverlayer.node()),a.call(\"animate\",r,p,m)}})}},{\"../../components/fx\":632,\"../../components/fx/helpers\":629,\"../../lib\":719,\"../../lib/events\":709,\"../../registry\":848,\"../pie/helpers\":1090,\"./helpers\":1219,d3:164}],1219:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/color\"),i=t(\"../../lib/setcursor\"),o=t(\"../pie/helpers\");function s(t){return t.data.data.pid}r.findEntryWithLevel=function(t,e){var n;return e&&t.eachAfter(function(t){if(r.getPtId(t)===e)return n=t.copy()}),n||t},r.findEntryWithChild=function(t,e){var n;return t.eachAfter(function(t){for(var a=t.children||[],i=0;i<a.length;i++){var o=a[i];if(r.getPtId(o)===e)return n=t.copy()}}),n||t},r.isEntry=function(t){return!t.parent},r.isLeaf=function(t){return!t.children},r.getPtId=function(t){return t.data.data.id},r.getPtLabel=function(t){return t.data.data.label},r.getValue=function(t){return t.value},r.isHierarchyRoot=function(t){return\"\"===s(t)},r.setSliceCursor=function(t,e,n){var a=n.isTransitioning;if(!a){var o=t.datum();a=n.hideOnRoot&&r.isHierarchyRoot(o)||n.hideOnLeaves&&r.isLeaf(o)}i(t,a?null:\"pointer\")},r.getInsideTextFontKey=function(t,e,r,a){var i=r.data.data.i;return n.castOption(e,i,\"insidetextfont.\"+t)||n.castOption(e,i,\"textfont.\"+t)||a.size},r.getOutsideTextFontKey=function(t,e,r,a){var i=r.data.data.i;return n.castOption(e,i,\"outsidetextfont.\"+t)||n.castOption(e,i,\"textfont.\"+t)||a.size},r.isOutsideText=function(t,e){return!t._hasColorscale&&r.isHierarchyRoot(e)},r.determineTextFont=function(t,e,i,o){return r.isOutsideText(t,e)?function(t,e,n){return{color:r.getOutsideTextFontKey(\"color\",t,e,n),family:r.getOutsideTextFontKey(\"family\",t,e,n),size:r.getOutsideTextFontKey(\"size\",t,e,n)}}(t,e,i):function(t,e,i,o){var s=e.data.data,l=s.i,c=n.castOption(t,l,\"insidetextfont.color\");return!c&&t._input.textfont&&(c=n.castOption(t._input,l,\"textfont.color\")),{color:c||a.contrast(s.color),family:r.getInsideTextFontKey(\"family\",o||t,e,i),size:r.getInsideTextFontKey(\"size\",o||t,e,i)}}(t,e,i,o)},r.hasTransition=function(t){return!!(t&&t.duration>0)},r.getMaxDepth=function(t){return t.maxdepth>=0?t.maxdepth:1/0},r.isHeader=function(t,e){return!(r.isLeaf(t)||t.depth===e._maxDepth-1)},r.getParent=function(t,e){return r.findEntryWithLevel(t,s(e))},r.listPath=function(t,e){var n=t.parent;if(!n)return[];var a=e?[n.data[e]]:[n];return r.listPath(n,e).concat(a)},r.getPath=function(t){return r.listPath(t,\"label\").join(\"/\")+\"/\"},r.formatValue=o.formatPieValue,r.formatPercent=function(t,e){var r=n.formatPercent(t,0);return\"0%\"===r&&(r=o.formatPiePercent(t,e)),r}},{\"../../components/color\":594,\"../../lib\":719,\"../../lib/setcursor\":739,\"../pie/helpers\":1090}],1220:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"sunburst\",basePlotModule:t(\"./base_plot\"),categories:[],animatable:!0,attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\"),supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\").calc,crossTraceCalc:t(\"./calc\").crossTraceCalc,plot:t(\"./plot\").plot,style:t(\"./style\").style,colorbar:t(\"../scatter/marker_colorbar\"),meta:{}}},{\"../scatter/marker_colorbar\":1128,\"./attributes\":1213,\"./base_plot\":1214,\"./calc\":1215,\"./defaults\":1217,\"./layout_attributes\":1221,\"./layout_defaults\":1222,\"./plot\":1223,\"./style\":1224}],1221:[function(t,e,r){\"use strict\";e.exports={sunburstcolorway:{valType:\"colorlist\",editType:\"calc\"},extendsunburstcolors:{valType:\"boolean\",dflt:!0,editType:\"calc\"}}},{}],1222:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./layout_attributes\");e.exports=function(t,e){function r(r,i){return n.coerce(t,e,a,r,i)}r(\"sunburstcolorway\",e.colorway),r(\"extendsunburstcolors\")}},{\"../../lib\":719,\"./layout_attributes\":1221}],1223:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"d3-hierarchy\"),i=t(\"../../components/drawing\"),o=t(\"../../lib\"),s=t(\"../../lib/svg_text_utils\"),l=t(\"../pie/plot\").transformInsideText,c=t(\"./style\").styleOne,u=t(\"./fx\"),h=t(\"./constants\"),f=t(\"./helpers\");function p(t,e,p,d){var g=t._fullLayout,v=f.hasTransition(d),m=n.select(p).selectAll(\"g.slice\"),y=e[0],x=y.trace,b=y.hierarchy,_=f.findEntryWithLevel(b,x.level),w=f.getMaxDepth(x),k=g._size,T=x.domain,A=k.w*(T.x[1]-T.x[0]),M=k.h*(T.y[1]-T.y[0]),S=.5*Math.min(A,M),E=y.cx=k.l+k.w*(T.x[1]+T.x[0])/2,C=y.cy=k.t+k.h*(1-T.y[0])-M/2;if(!_)return m.remove();var L=null,P={};v&&m.each(function(t){P[f.getPtId(t)]={rpx0:t.rpx0,rpx1:t.rpx1,x0:t.x0,x1:t.x1,transform:t.transform},!L&&f.isEntry(t)&&(L=t)});var O=function(t){return a.partition().size([2*Math.PI,t.height+1])(t)}(_).descendants(),I=_.height+1,z=0,D=w;y.hasMultipleRoots&&f.isHierarchyRoot(_)&&(O=O.slice(1),I-=1,z=1,D+=1),O=O.filter(function(t){return t.y1<=D});var R=Math.min(I,w),F=function(t){return(t-z)/R*S},B=function(t,e){return[t*Math.cos(e),-t*Math.sin(e)]},N=function(t){return o.pathAnnulus(t.rpx0,t.rpx1,t.x0,t.x1,E,C)},j=function(t){return E+t.pxmid[0]*t.transform.rCenter+(t.transform.x||0)},V=function(t){return C+t.pxmid[1]*t.transform.rCenter+(t.transform.y||0)};(m=m.data(O,f.getPtId)).enter().append(\"g\").classed(\"slice\",!0),v?m.exit().transition().each(function(){var t=n.select(this);t.select(\"path.surface\").transition().attrTween(\"d\",function(t){var e=function(t){var e,r=f.getPtId(t),a=P[r],i=P[f.getPtId(_)];if(i){var o=t.x1>i.x1?2*Math.PI:0;e=t.rpx1<i.rpx1?{rpx0:0,rpx1:0}:{x0:o,x1:o}}else{var s,l=f.getPtId(t.parent);m.each(function(t){if(f.getPtId(t)===l)return s=t});var c,u=s.children;u.forEach(function(t,e){if(f.getPtId(t)===r)return c=e});var h=u.length,p=n.interpolate(s.x0,s.x1);e={rpx0:S,rpx1:S,x0:p(c/h),x1:p((c+1)/h)}}return n.interpolate(a,e)}(t);return function(t){return N(e(t))}}),t.select(\"g.slicetext\").attr(\"opacity\",0)}).remove():m.exit().remove(),m.order();var U=null;if(v&&L){var q=f.getPtId(L);m.each(function(t){null===U&&f.getPtId(t)===q&&(U=t.x1)})}var H=m;function G(t){var e=t.parent,r=P[f.getPtId(e)],a={};if(r){var i=e.children,o=i.indexOf(t),s=i.length,l=n.interpolate(r.x0,r.x1);a.x0=l(o/s),a.x1=l(o/s)}else a.x0=a.x1=0;return a}v&&(H=H.transition().each(\"end\",function(){var e=n.select(this);f.setSliceCursor(e,t,{hideOnRoot:!0,hideOnLeaves:!0,isTransitioning:!1})})),H.each(function(a){var p=n.select(this),d=o.ensureSingle(p,\"path\",\"surface\",function(t){t.style(\"pointer-events\",\"all\")});a.rpx0=F(a.y0),a.rpx1=F(a.y1),a.xmid=(a.x0+a.x1)/2,a.pxmid=B(a.rpx1,a.xmid),a.midangle=-(a.xmid-Math.PI/2),a.halfangle=.5*Math.min(o.angleDelta(a.x0,a.x1)||Math.PI,Math.PI),a.ring=1-a.rpx0/a.rpx1,a.rInscribed=function(t){return 0===t.rpx0&&o.isFullCircle([t.x0,t.x1])?1:Math.max(0,Math.min(1/(1+1/Math.sin(t.halfangle)),t.ring/2))}(a),v?d.transition().attrTween(\"d\",function(t){var e=function(t){var e,r=P[f.getPtId(t)],a={x0:t.x0,x1:t.x1,rpx0:t.rpx0,rpx1:t.rpx1};if(r)e=r;else if(L)if(t.parent)if(U){var i=t.x1>U?2*Math.PI:0;e={x0:i,x1:i}}else e={rpx0:S,rpx1:S},o.extendFlat(e,G(t));else e={rpx0:0,rpx1:0};else e={x0:0,x1:0};return n.interpolate(e,a)}(t);return function(t){return N(e(t))}}):d.attr(\"d\",N),p.call(u,_,t,e,{eventDataKeys:h.eventDataKeys,transitionTime:h.CLICK_TRANSITION_TIME,transitionEasing:h.CLICK_TRANSITION_EASING}).call(f.setSliceCursor,t,{hideOnRoot:!0,hideOnLeaves:!0,isTransitioning:t._transitioning}),d.call(c,a,x);var m=o.ensureSingle(p,\"g\",\"slicetext\"),b=o.ensureSingle(m,\"text\",\"\",function(t){t.attr(\"data-notex\",1)});b.text(r.formatSliceLabel(a,_,x,e,g)).classed(\"slicetext\",!0).attr(\"text-anchor\",\"middle\").call(i.font,f.determineTextFont(x,a,g.font)).call(s.convertToTspans,t);var w=i.bBox(b.node());a.transform=l(w,a,y),a.translateX=j(a),a.translateY=V(a);var k=function(t,e){return\"translate(\"+t.translateX+\",\"+t.translateY+\")\"+(t.transform.scale<1?\"scale(\"+t.transform.scale+\")\":\"\")+(t.transform.rotate?\"rotate(\"+t.transform.rotate+\")\":\"\")+\"translate(\"+-(e.left+e.right)/2+\",\"+-(e.top+e.bottom)/2+\")\"};v?b.transition().attrTween(\"transform\",function(t){var e=function(t){var e,r=P[f.getPtId(t)],a=t.transform;if(r)e=r;else if(e={rpx1:t.rpx1,transform:{scale:0,rotate:a.rotate,rCenter:a.rCenter,x:a.x,y:a.y}},L)if(t.parent)if(U){var i=t.x1>U?2*Math.PI:0;e.x0=e.x1=i}else o.extendFlat(e,G(t));else e.x0=e.x1=0;else e.x0=e.x1=0;var s=n.interpolate(e.rpx1,t.rpx1),l=n.interpolate(e.x0,t.x0),c=n.interpolate(e.x1,t.x1),u=n.interpolate(e.transform.scale,a.scale),h=n.interpolate(e.transform.rotate,a.rotate),p=0===a.rCenter?3:0===e.transform.rCenter?1/3:1,d=n.interpolate(e.transform.rCenter,a.rCenter);return function(t){var e=s(t),r=l(t),n=c(t),i=function(t){return d(Math.pow(t,p))}(t),o={pxmid:B(e,(r+n)/2),transform:{rCenter:i,x:a.x,y:a.y}},f={rpx1:s(t),translateX:j(o),translateY:V(o),transform:{scale:u(t),rotate:h(t),rCenter:i}};return f}}(t);return function(t){return k(e(t),w)}}):b.attr(\"transform\",k(a,w))})}r.plot=function(t,e,r,a){var i,o,s=t._fullLayout._sunburstlayer,l=!r,c=f.hasTransition(r);((i=s.selectAll(\"g.trace.sunburst\").data(e,function(t){return t[0].trace.uid})).enter().append(\"g\").classed(\"trace\",!0).classed(\"sunburst\",!0).attr(\"stroke-linejoin\",\"round\"),i.order(),c)?(a&&(o=a()),n.transition().duration(r.duration).ease(r.easing).each(\"end\",function(){o&&o()}).each(\"interrupt\",function(){o&&o()}).each(function(){s.selectAll(\"g.trace\").each(function(e){p(t,e,this,r)})})):i.each(function(e){p(t,e,this,r)});l&&i.exit().remove()},r.formatSliceLabel=function(t,e,r,n,a){var i=r.texttemplate,s=r.textinfo;if(!(i||s&&\"none\"!==s))return\"\";var l=a.separators,c=n[0],u=t.data.data,h=c.hierarchy,p=f.isHierarchyRoot(t),d=f.getParent(h,t),g=f.getValue(t);if(!i){var v,m=s.split(\"+\"),y=function(t){return-1!==m.indexOf(t)},x=[];if(y(\"label\")&&u.label&&x.push(u.label),u.hasOwnProperty(\"v\")&&y(\"value\")&&x.push(f.formatValue(u.v,l)),!p){y(\"current path\")&&x.push(f.getPath(t.data));var b=0;y(\"percent parent\")&&b++,y(\"percent entry\")&&b++,y(\"percent root\")&&b++;var _=b>1;if(b){var w,k=function(t){v=f.formatPercent(w,l),_&&(v+=\" of \"+t),x.push(v)};y(\"percent parent\")&&!p&&(w=g/f.getValue(d),k(\"parent\")),y(\"percent entry\")&&(w=g/f.getValue(e),k(\"entry\")),y(\"percent root\")&&(w=g/f.getValue(h),k(\"root\"))}}return y(\"text\")&&(v=o.castOption(r,u.i,\"text\"),o.isValidTextValue(v)&&x.push(v)),x.join(\"<br>\")}var T=o.castOption(r,u.i,\"texttemplate\");if(!T)return\"\";var A={};u.label&&(A.label=u.label),u.hasOwnProperty(\"v\")&&(A.value=u.v,A.valueLabel=f.formatValue(u.v,l)),A.currentPath=f.getPath(t.data),p||(A.percentParent=g/f.getValue(d),A.percentParentLabel=f.formatPercent(A.percentParent,l),A.parent=f.getPtLabel(d)),A.percentEntry=g/f.getValue(e),A.percentEntryLabel=f.formatPercent(A.percentEntry,l),A.entry=f.getPtLabel(e),A.percentRoot=g/f.getValue(h),A.percentRootLabel=f.formatPercent(A.percentRoot,l),A.root=f.getPtLabel(h),u.hasOwnProperty(\"color\")&&(A.color=u.color);var M=o.castOption(r,u.i,\"text\");return(o.isValidTextValue(M)||\"\"===M)&&(A.text=M),A.customdata=o.castOption(r,u.i,\"customdata\"),o.texttemplateString(T,A,a._d3locale,A,r._meta||{})}},{\"../../components/drawing\":615,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../pie/plot\":1094,\"./constants\":1216,\"./fx\":1218,\"./helpers\":1219,\"./style\":1224,d3:164,\"d3-hierarchy\":158}],1224:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/color\"),i=t(\"../../lib\");function o(t,e,r){var n=e.data.data,o=!e.children,s=n.i,l=i.castOption(r,s,\"marker.line.color\")||a.defaultLine,c=i.castOption(r,s,\"marker.line.width\")||0;t.style(\"stroke-width\",c).call(a.fill,n.color).call(a.stroke,l).style(\"opacity\",o?r.leaf.opacity:null)}e.exports={style:function(t){t._fullLayout._sunburstlayer.selectAll(\".trace\").each(function(t){var e=n.select(this),r=t[0].trace;e.style(\"opacity\",r.opacity),e.selectAll(\"path.surface\").each(function(t){n.select(this).call(o,t,r)})})},styleOne:o}},{\"../../components/color\":594,\"../../lib\":719,d3:164}],1225:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\"),a=t(\"../../components/colorscale/attributes\"),i=t(\"../../plots/template_attributes\").hovertemplateAttrs,o=t(\"../../plots/attributes\"),s=t(\"../../lib/extend\").extendFlat,l=t(\"../../plot_api/edit_types\").overrideAll;function c(t){return{show:{valType:\"boolean\",dflt:!1},start:{valType:\"number\",dflt:null,editType:\"plot\"},end:{valType:\"number\",dflt:null,editType:\"plot\"},size:{valType:\"number\",dflt:null,min:0,editType:\"plot\"},project:{x:{valType:\"boolean\",dflt:!1},y:{valType:\"boolean\",dflt:!1},z:{valType:\"boolean\",dflt:!1}},color:{valType:\"color\",dflt:n.defaultLine},usecolormap:{valType:\"boolean\",dflt:!1},width:{valType:\"number\",min:1,max:16,dflt:2},highlight:{valType:\"boolean\",dflt:!0},highlightcolor:{valType:\"color\",dflt:n.defaultLine},highlightwidth:{valType:\"number\",min:1,max:16,dflt:2}}}var u=e.exports=l(s({z:{valType:\"data_array\"},x:{valType:\"data_array\"},y:{valType:\"data_array\"},text:{valType:\"string\",dflt:\"\",arrayOk:!0},hovertext:{valType:\"string\",dflt:\"\",arrayOk:!0},hovertemplate:i(),connectgaps:{valType:\"boolean\",dflt:!1,editType:\"calc\"},surfacecolor:{valType:\"data_array\"}},a(\"\",{colorAttr:\"z or surfacecolor\",showScaleDflt:!0,autoColorDflt:!1,editTypeOverride:\"calc\"}),{contours:{x:c(),y:c(),z:c()},hidesurface:{valType:\"boolean\",dflt:!1},lightposition:{x:{valType:\"number\",min:-1e5,max:1e5,dflt:10},y:{valType:\"number\",min:-1e5,max:1e5,dflt:1e4},z:{valType:\"number\",min:-1e5,max:1e5,dflt:0}},lighting:{ambient:{valType:\"number\",min:0,max:1,dflt:.8},diffuse:{valType:\"number\",min:0,max:1,dflt:.8},specular:{valType:\"number\",min:0,max:2,dflt:.05},roughness:{valType:\"number\",min:0,max:1,dflt:.5},fresnel:{valType:\"number\",min:0,max:5,dflt:.2}},opacity:{valType:\"number\",min:0,max:1,dflt:1},_deprecated:{zauto:s({},a.zauto,{}),zmin:s({},a.zmin,{}),zmax:s({},a.zmax,{})},hoverinfo:s({},o.hoverinfo)}),\"calc\",\"nested\");u.x.editType=u.y.editType=u.z.editType=\"calc+clearAxisTypes\",u.transforms=void 0},{\"../../components/color\":594,\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../../plots/attributes\":764,\"../../plots/template_attributes\":843}],1226:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/calc\");e.exports=function(t,e){e.surfacecolor?n(t,e,{vals:e.surfacecolor,containerStr:\"\",cLetter:\"c\"}):n(t,e,{vals:e.z,containerStr:\"\",cLetter:\"c\"})}},{\"../../components/colorscale/calc\":602}],1227:[function(t,e,r){\"use strict\";var n=t(\"gl-surface3d\"),a=t(\"ndarray\"),i=t(\"ndarray-homography\"),o=t(\"ndarray-fill\"),s=t(\"../../lib\").isArrayOrTypedArray,l=t(\"../../lib/gl_format_color\").parseColorScale,c=t(\"../../lib/str2rgbarray\"),u=t(\"../../components/colorscale\").extractOpts,h=t(\"../heatmap/interp2d\"),f=t(\"../heatmap/find_empties\");function p(t,e,r){this.scene=t,this.uid=r,this.surface=e,this.data=null,this.showContour=[!1,!1,!1],this.contourStart=[null,null,null],this.contourEnd=[null,null,null],this.contourSize=[0,0,0],this.minValues=[1/0,1/0,1/0],this.maxValues=[-1/0,-1/0,-1/0],this.dataScaleX=1,this.dataScaleY=1,this.refineData=!0,this.objectOffset=[0,0,0]}var d=p.prototype;d.getXat=function(t,e,r,n){var a=s(this.data.x)?s(this.data.x[0])?this.data.x[e][t]:this.data.x[t]:t;return void 0===r?a:n.d2l(a,0,r)},d.getYat=function(t,e,r,n){var a=s(this.data.y)?s(this.data.y[0])?this.data.y[e][t]:this.data.y[e]:e;return void 0===r?a:n.d2l(a,0,r)},d.getZat=function(t,e,r,n){var a=this.data.z[e][t];return null===a&&this.data.connectgaps&&this.data._interpolatedZ&&(a=this.data._interpolatedZ[e][t]),void 0===r?a:n.d2l(a,0,r)},d.handlePick=function(t){if(t.object===this.surface){var e=(t.data.index[0]-1)/this.dataScaleX-1,r=(t.data.index[1]-1)/this.dataScaleY-1,n=Math.max(Math.min(Math.round(e),this.data.z[0].length-1),0),a=Math.max(Math.min(Math.round(r),this.data._ylength-1),0);t.index=[n,a],t.traceCoordinate=[this.getXat(n,a),this.getYat(n,a),this.getZat(n,a)],t.dataCoordinate=[this.getXat(n,a,this.data.xcalendar,this.scene.fullSceneLayout.xaxis),this.getYat(n,a,this.data.ycalendar,this.scene.fullSceneLayout.yaxis),this.getZat(n,a,this.data.zcalendar,this.scene.fullSceneLayout.zaxis)];for(var i=0;i<3;i++){var o=t.dataCoordinate[i];null!=o&&(t.dataCoordinate[i]*=this.scene.dataScale[i])}var s=this.data.hovertext||this.data.text;return Array.isArray(s)&&s[a]&&void 0!==s[a][n]?t.textLabel=s[a][n]:t.textLabel=s||\"\",t.data.dataCoordinate=t.dataCoordinate.slice(),this.surface.highlight(t.data),this.scene.glplot.spikes.position=t.dataCoordinate,!0}};var g=[2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,211,223,227,229,233,239,241,251,257,263,269,271,277,281,283,293,307,311,313,317,331,337,347,349,353,359,367,373,379,383,389,397,401,409,419,421,431,433,439,443,449,457,461,463,467,479,487,491,499,503,509,521,523,541,547,557,563,569,571,577,587,593,599,601,607,613,617,619,631,641,643,647,653,659,661,673,677,683,691,701,709,719,727,733,739,743,751,757,761,769,773,787,797,809,811,821,823,827,829,839,853,857,859,863,877,881,883,887,907,911,919,929,937,941,947,953,967,971,977,983,991,997,1009,1013,1019,1021,1031,1033,1039,1049,1051,1061,1063,1069,1087,1091,1093,1097,1103,1109,1117,1123,1129,1151,1153,1163,1171,1181,1187,1193,1201,1213,1217,1223,1229,1231,1237,1249,1259,1277,1279,1283,1289,1291,1297,1301,1303,1307,1319,1321,1327,1361,1367,1373,1381,1399,1409,1423,1427,1429,1433,1439,1447,1451,1453,1459,1471,1481,1483,1487,1489,1493,1499,1511,1523,1531,1543,1549,1553,1559,1567,1571,1579,1583,1597,1601,1607,1609,1613,1619,1621,1627,1637,1657,1663,1667,1669,1693,1697,1699,1709,1721,1723,1733,1741,1747,1753,1759,1777,1783,1787,1789,1801,1811,1823,1831,1847,1861,1867,1871,1873,1877,1879,1889,1901,1907,1913,1931,1933,1949,1951,1973,1979,1987,1993,1997,1999,2003,2011,2017,2027,2029,2039,2053,2063,2069,2081,2083,2087,2089,2099,2111,2113,2129,2131,2137,2141,2143,2153,2161,2179,2203,2207,2213,2221,2237,2239,2243,2251,2267,2269,2273,2281,2287,2293,2297,2309,2311,2333,2339,2341,2347,2351,2357,2371,2377,2381,2383,2389,2393,2399,2411,2417,2423,2437,2441,2447,2459,2467,2473,2477,2503,2521,2531,2539,2543,2549,2551,2557,2579,2591,2593,2609,2617,2621,2633,2647,2657,2659,2663,2671,2677,2683,2687,2689,2693,2699,2707,2711,2713,2719,2729,2731,2741,2749,2753,2767,2777,2789,2791,2797,2801,2803,2819,2833,2837,2843,2851,2857,2861,2879,2887,2897,2903,2909,2917,2927,2939,2953,2957,2963,2969,2971,2999];function v(t,e){if(t<e)return 0;for(var r=0;0===Math.floor(t%e);)t/=e,r++;return r}function m(t){for(var e=[],r=0;r<g.length;r++){var n=g[r];e.push(v(t,n))}return e}function y(t){for(var e=m(t),r=t,n=0;n<g.length;n++)if(e[n]>0){r=g[n];break}return r}function x(t,e){if(!(t<1||e<1)){for(var r=m(t),n=m(e),a=1,i=0;i<g.length;i++)a*=Math.pow(g[i],Math.max(r[i],n[i]));return a}}d.calcXnums=function(t){var e,r=[];for(e=1;e<t;e++){var n=this.getXat(e-1,0),a=this.getXat(e,0);r[e-1]=a!==n&&null!=n&&null!=a?Math.abs(a-n):0}var i=0;for(e=1;e<t;e++)i+=r[e-1];for(e=1;e<t;e++)0===r[e-1]?r[e-1]=1:r[e-1]=Math.round(i/r[e-1]);return r},d.calcYnums=function(t){var e,r=[];for(e=1;e<t;e++){var n=this.getYat(0,e-1),a=this.getYat(0,e);r[e-1]=a!==n&&null!=n&&null!=a?Math.abs(a-n):0}var i=0;for(e=1;e<t;e++)i+=r[e-1];for(e=1;e<t;e++)0===r[e-1]?r[e-1]=1:r[e-1]=Math.round(i/r[e-1]);return r};var b=[1,2,4,6,12,24,36,48,60,120,180,240,360,720,840,1260],_=b[9],w=b[13];function k(t,e){for(var r=!1,n=0;n<t.length;n++)if(e===t[n]){r=!0;break}!1===r&&t.push(e)}d.estimateScale=function(t,e){for(var r=1+function(t){if(0!==t.length){for(var e=1,r=0;r<t.length;r++)e=x(e,t[r]);return e}}(0===e?this.calcXnums(t):this.calcYnums(t));r<_;)r*=2;for(;r>w;)r--,r/=y(r),++r<_&&(r=w);var n=Math.round(r/t);return n>1?n:1},d.refineCoords=function(t){for(var e=this.dataScaleX,r=this.dataScaleY,n=t[0].shape[0],o=t[0].shape[1],s=0|Math.floor(t[0].shape[0]*e+1),l=0|Math.floor(t[0].shape[1]*r+1),c=1+n+1,u=1+o+1,h=a(new Float32Array(c*u),[c,u]),f=0;f<t.length;++f){this.surface.padField(h,t[f]);var p=a(new Float32Array(s*l),[s,l]);i(p,h,[e,0,0,0,r,0,0,0,1]),t[f]=p}},d.setContourLevels=function(){var t,e,r,n=[[],[],[]],a=[!1,!1,!1],i=!1;for(t=0;t<3;++t)if(this.showContour[t]&&(i=!0,this.contourSize[t]>0&&null!==this.contourStart[t]&&null!==this.contourEnd[t]&&this.contourEnd[t]>this.contourStart[t]))for(a[t]=!0,e=this.contourStart[t];e<this.contourEnd[t];e+=this.contourSize[t])r=e*this.scene.dataScale[t],k(n[t],r);if(i){var o=[[],[],[]];for(t=0;t<3;++t)this.showContour[t]&&(o[t]=a[t]?n[t]:this.scene.contourLevels[t]);this.surface.update({levels:o})}},d.update=function(t){var e,r,n,i,s=this.scene,p=s.fullSceneLayout,d=this.surface,g=t.opacity,v=l(t,g),m=s.dataScale,y=t.z[0].length,x=t._ylength,b=s.contourLevels;this.data=t;var _=[];for(e=0;e<3;e++)for(_[e]=[],r=0;r<y;r++)_[e][r]=[];for(r=0;r<y;r++)for(n=0;n<x;n++)_[0][r][n]=this.getXat(r,n,t.xcalendar,p.xaxis),_[1][r][n]=this.getYat(r,n,t.ycalendar,p.yaxis),_[2][r][n]=this.getZat(r,n,t.zcalendar,p.zaxis);if(t.connectgaps)for(t._emptypoints=f(_[2]),h(_[2],t._emptypoints),t._interpolatedZ=[],r=0;r<y;r++)for(t._interpolatedZ[r]=[],n=0;n<x;n++)t._interpolatedZ[r][n]=_[2][r][n];for(e=0;e<3;e++)for(r=0;r<y;r++)for(n=0;n<x;n++)null==(i=_[e][r][n])?_[e][r][n]=NaN:i=_[e][r][n]*=m[e];for(e=0;e<3;e++)for(r=0;r<y;r++)for(n=0;n<x;n++)null!=(i=_[e][r][n])&&(this.minValues[e]>i&&(this.minValues[e]=i),this.maxValues[e]<i&&(this.maxValues[e]=i));for(e=0;e<3;e++)this.objectOffset[e]=.5*(this.minValues[e]+this.maxValues[e]);for(e=0;e<3;e++)for(r=0;r<y;r++)for(n=0;n<x;n++)null!=(i=_[e][r][n])&&(_[e][r][n]-=this.objectOffset[e]);var k=[a(new Float32Array(y*x),[y,x]),a(new Float32Array(y*x),[y,x]),a(new Float32Array(y*x),[y,x])];o(k[0],function(t,e){return _[0][t][e]}),o(k[1],function(t,e){return _[1][t][e]}),o(k[2],function(t,e){return _[2][t][e]}),_=[];var T={colormap:v,levels:[[],[],[]],showContour:[!0,!0,!0],showSurface:!t.hidesurface,contourProject:[[!1,!1,!1],[!1,!1,!1],[!1,!1,!1]],contourWidth:[1,1,1],contourColor:[[1,1,1,1],[1,1,1,1],[1,1,1,1]],contourTint:[1,1,1],dynamicColor:[[1,1,1,1],[1,1,1,1],[1,1,1,1]],dynamicWidth:[1,1,1],dynamicTint:[1,1,1],opacity:t.opacity},A=u(t);if(T.intensityBounds=[A.min,A.max],t.surfacecolor){var M=a(new Float32Array(y*x),[y,x]);o(M,function(e,r){return t.surfacecolor[r][e]}),k.push(M)}else T.intensityBounds[0]*=m[2],T.intensityBounds[1]*=m[2];(w<k[0].shape[0]||w<k[0].shape[1])&&(this.refineData=!1),!0===this.refineData&&(this.dataScaleX=this.estimateScale(k[0].shape[0],0),this.dataScaleY=this.estimateScale(k[0].shape[1],1),1===this.dataScaleX&&1===this.dataScaleY||this.refineCoords(k)),t.surfacecolor&&(T.intensity=k.pop());var S=[!0,!0,!0],E=[\"x\",\"y\",\"z\"];for(e=0;e<3;++e){var C=t.contours[E[e]];S[e]=C.highlight,T.showContour[e]=C.show||C.highlight,T.showContour[e]&&(T.contourProject[e]=[C.project.x,C.project.y,C.project.z],C.show?(this.showContour[e]=!0,T.levels[e]=b[e],d.highlightColor[e]=T.contourColor[e]=c(C.color),C.usecolormap?d.highlightTint[e]=T.contourTint[e]=0:d.highlightTint[e]=T.contourTint[e]=1,T.contourWidth[e]=C.width,this.contourStart[e]=C.start,this.contourEnd[e]=C.end,this.contourSize[e]=C.size):(this.showContour[e]=!1,this.contourStart[e]=null,this.contourEnd[e]=null,this.contourSize[e]=0),C.highlight&&(T.dynamicColor[e]=c(C.highlightcolor),T.dynamicWidth[e]=C.highlightwidth))}(function(t){var e=t[0].rgb,r=t[t.length-1].rgb;return e[0]===r[0]&&e[1]===r[1]&&e[2]===r[2]&&e[3]===r[3]})(v)&&(T.vertexColor=!0),T.objectOffset=this.objectOffset,T.coords=k,d.update(T),d.visible=t.visible,d.enableDynamic=S,d.enableHighlight=S,d.snapToData=!0,\"lighting\"in t&&(d.ambientLight=t.lighting.ambient,d.diffuseLight=t.lighting.diffuse,d.specularLight=t.lighting.specular,d.roughness=t.lighting.roughness,d.fresnel=t.lighting.fresnel),\"lightposition\"in t&&(d.lightPosition=[t.lightposition.x,t.lightposition.y,t.lightposition.z]),g&&g<1&&(d.supportsTransparency=!0)},d.dispose=function(){this.scene.glplot.remove(this.surface),this.surface.dispose()},e.exports=function(t,e){var r=t.glplot.gl,a=n({gl:r}),i=new p(t,a,e.uid);return a._trace=i,i.update(e),t.glplot.add(a),i}},{\"../../components/colorscale\":606,\"../../lib\":719,\"../../lib/gl_format_color\":716,\"../../lib/str2rgbarray\":742,\"../heatmap/find_empties\":1006,\"../heatmap/interp2d\":1009,\"gl-surface3d\":317,ndarray:451,\"ndarray-fill\":441,\"ndarray-homography\":443}],1228:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\"),i=t(\"../../components/colorscale/defaults\"),o=t(\"./attributes\");function s(t,e,r){e in t&&!(r in t)&&(t[r]=t[e])}e.exports=function(t,e,r,l){var c,u;function h(r,n){return a.coerce(t,e,o,r,n)}var f=h(\"x\"),p=h(\"y\"),d=h(\"z\");if(!d||!d.length||f&&f.length<1||p&&p.length<1)e.visible=!1;else{e._xlength=Array.isArray(f)&&a.isArrayOrTypedArray(f[0])?d.length:d[0].length,e._ylength=d.length,n.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\",\"y\",\"z\"],l),h(\"text\"),h(\"hovertext\"),h(\"hovertemplate\"),[\"lighting.ambient\",\"lighting.diffuse\",\"lighting.specular\",\"lighting.roughness\",\"lighting.fresnel\",\"lightposition.x\",\"lightposition.y\",\"lightposition.z\",\"hidesurface\",\"connectgaps\",\"opacity\"].forEach(function(t){h(t)});var g=h(\"surfacecolor\"),v=[\"x\",\"y\",\"z\"];for(c=0;c<3;++c){var m=\"contours.\"+v[c],y=h(m+\".show\"),x=h(m+\".highlight\");if(y||x)for(u=0;u<3;++u)h(m+\".project.\"+v[u]);y&&(h(m+\".color\"),h(m+\".width\"),h(m+\".usecolormap\")),x&&(h(m+\".highlightcolor\"),h(m+\".highlightwidth\")),h(m+\".start\"),h(m+\".end\"),h(m+\".size\")}g||(s(t,\"zmin\",\"cmin\"),s(t,\"zmax\",\"cmax\"),s(t,\"zauto\",\"cauto\")),i(t,e,l,h,{prefix:\"\",cLetter:\"c\"}),e._length=null}}},{\"../../components/colorscale/defaults\":604,\"../../lib\":719,\"../../registry\":848,\"./attributes\":1225}],1229:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:{min:\"cmin\",max:\"cmax\"},calc:t(\"./calc\"),plot:t(\"./convert\"),moduleType:\"trace\",name:\"surface\",basePlotModule:t(\"../../plots/gl3d\"),categories:[\"gl3d\",\"2dMap\",\"noOpacity\"],meta:{}}},{\"../../plots/gl3d\":807,\"./attributes\":1225,\"./calc\":1226,\"./convert\":1227,\"./defaults\":1228}],1230:[function(t,e,r){\"use strict\";var n=t(\"../../components/annotations/attributes\"),a=t(\"../../lib/extend\").extendFlat,i=t(\"../../plot_api/edit_types\").overrideAll,o=t(\"../../plots/font_attributes\"),s=t(\"../../plots/domain\").attributes;t(\"../../constants/docs\").FORMAT_LINK;(e.exports=i({domain:s({name:\"table\",trace:!0}),columnwidth:{valType:\"number\",arrayOk:!0,dflt:null},columnorder:{valType:\"data_array\"},header:{values:{valType:\"data_array\",dflt:[]},format:{valType:\"data_array\",dflt:[]},prefix:{valType:\"string\",arrayOk:!0,dflt:null},suffix:{valType:\"string\",arrayOk:!0,dflt:null},height:{valType:\"number\",dflt:28},align:a({},n.align,{arrayOk:!0}),line:{width:{valType:\"number\",arrayOk:!0,dflt:1},color:{valType:\"color\",arrayOk:!0,dflt:\"grey\"}},fill:{color:{valType:\"color\",arrayOk:!0,dflt:\"white\"}},font:a({},o({arrayOk:!0}))},cells:{values:{valType:\"data_array\",dflt:[]},format:{valType:\"data_array\",dflt:[]},prefix:{valType:\"string\",arrayOk:!0,dflt:null},suffix:{valType:\"string\",arrayOk:!0,dflt:null},height:{valType:\"number\",dflt:20},align:a({},n.align,{arrayOk:!0}),line:{width:{valType:\"number\",arrayOk:!0,dflt:1},color:{valType:\"color\",arrayOk:!0,dflt:\"grey\"}},fill:{color:{valType:\"color\",arrayOk:!0,dflt:\"white\"}},font:a({},o({arrayOk:!0}))}},\"calc\",\"from-root\")).transforms=void 0},{\"../../components/annotations/attributes\":577,\"../../constants/docs\":690,\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../../plots/domain\":792,\"../../plots/font_attributes\":793}],1231:[function(t,e,r){\"use strict\";var n=t(\"../../plots/get_data\").getModuleCalcData,a=t(\"./plot\");r.name=\"table\",r.plot=function(t){var e=n(t.calcdata,\"table\")[0];e.length&&a(t,e)},r.clean=function(t,e,r,n){var a=n._has&&n._has(\"table\"),i=e._has&&e._has(\"table\");a&&!i&&n._paperdiv.selectAll(\".table\").remove()}},{\"../../plots/get_data\":802,\"./plot\":1238}],1232:[function(t,e,r){\"use strict\";var n=t(\"../../lib/gup\").wrap;e.exports=function(){return n({})}},{\"../../lib/gup\":717}],1233:[function(t,e,r){\"use strict\";e.exports={cellPad:8,columnExtentOffset:10,columnTitleOffset:28,emptyHeaderHeight:16,latexCheck:/^\\$.*\\$$/,goldenRatio:1.618,lineBreaker:\"<br>\",maxDimensionCount:60,overdrag:45,releaseTransitionDuration:120,releaseTransitionEase:\"cubic-out\",scrollbarCaptureWidth:18,scrollbarHideDelay:1e3,scrollbarHideDuration:1e3,scrollbarOffset:5,scrollbarWidth:8,transitionDuration:100,transitionEase:\"cubic-out\",uplift:5,wrapSpacer:\" \",wrapSplitCharacter:\" \",cn:{table:\"table\",tableControlView:\"table-control-view\",scrollBackground:\"scroll-background\",yColumn:\"y-column\",columnBlock:\"column-block\",scrollAreaClip:\"scroll-area-clip\",scrollAreaClipRect:\"scroll-area-clip-rect\",columnBoundary:\"column-boundary\",columnBoundaryClippath:\"column-boundary-clippath\",columnBoundaryRect:\"column-boundary-rect\",columnCells:\"column-cells\",columnCell:\"column-cell\",cellRect:\"cell-rect\",cellText:\"cell-text\",cellTextHolder:\"cell-text-holder\",scrollbarKit:\"scrollbar-kit\",scrollbar:\"scrollbar\",scrollbarSlider:\"scrollbar-slider\",scrollbarGlyph:\"scrollbar-glyph\",scrollbarCaptureZone:\"scrollbar-capture-zone\"}}},{}],1234:[function(t,e,r){\"use strict\";var n=t(\"./constants\"),a=t(\"../../lib/extend\").extendFlat,i=t(\"fast-isnumeric\");function o(t){if(Array.isArray(t)){for(var e=0,r=0;r<t.length;r++)e=Math.max(e,o(t[r]));return e}return t}function s(t,e){return t+e}function l(t){var e,r=t.slice(),n=1/0,a=0;for(e=0;e<r.length;e++)Array.isArray(r[e])||(r[e]=[r[e]]),n=Math.min(n,r[e].length),a=Math.max(a,r[e].length);if(n!==a)for(e=0;e<r.length;e++){var i=a-r[e].length;i&&(r[e]=r[e].concat(c(i)))}return r}function c(t){for(var e=new Array(t),r=0;r<t;r++)e[r]=\"\";return e}function u(t){return t.calcdata.columns.reduce(function(e,r){return r.xIndex<t.xIndex?e+r.columnWidth:e},0)}function h(t,e){return Object.keys(t).map(function(r){return a({},t[r],{auxiliaryBlocks:e})})}function f(t,e){for(var r,n={},a=0,i=0,o={firstRowIndex:null,lastRowIndex:null,rows:[]},s=0,l=0,c=0;c<t.length;c++)r=t[c],o.rows.push({rowIndex:c,rowHeight:r}),((i+=r)>=e||c===t.length-1)&&(n[a]=o,o.key=l++,o.firstRowIndex=s,o.lastRowIndex=c,o={firstRowIndex:null,lastRowIndex:null,rows:[]},a+=i,s=c+1,i=0);return n}e.exports=function(t,e){var r=l(e.cells.values),p=function(t){return t.slice(e.header.values.length,t.length)},d=l(e.header.values);d.length&&!d[0].length&&(d[0]=[\"\"],d=l(d));var g=d.concat(p(r).map(function(){return c((d[0]||[\"\"]).length)})),v=e.domain,m=Math.floor(t._fullLayout._size.w*(v.x[1]-v.x[0])),y=Math.floor(t._fullLayout._size.h*(v.y[1]-v.y[0])),x=e.header.values.length?g[0].map(function(){return e.header.height}):[n.emptyHeaderHeight],b=r.length?r[0].map(function(){return e.cells.height}):[],_=x.reduce(s,0),w=f(b,y-_+n.uplift),k=h(f(x,_),[]),T=h(w,k),A={},M=e._fullInput.columnorder.concat(p(r.map(function(t,e){return e}))),S=g.map(function(t,r){var n=Array.isArray(e.columnwidth)?e.columnwidth[Math.min(r,e.columnwidth.length-1)]:e.columnwidth;return i(n)?Number(n):1}),E=S.reduce(s,0);S=S.map(function(t){return t/E*m});var C=Math.max(o(e.header.line.width),o(e.cells.line.width)),L={key:e.uid+t._context.staticPlot,translateX:v.x[0]*t._fullLayout._size.w,translateY:t._fullLayout._size.h*(1-v.y[1]),size:t._fullLayout._size,width:m,maxLineWidth:C,height:y,columnOrder:M,groupHeight:y,rowBlocks:T,headerRowBlocks:k,scrollY:0,cells:a({},e.cells,{values:r}),headerCells:a({},e.header,{values:g}),gdColumns:g.map(function(t){return t[0]}),gdColumnsOriginalOrder:g.map(function(t){return t[0]}),prevPages:[0,0],scrollbarState:{scrollbarScrollInProgress:!1},columns:g.map(function(t,e){var r=A[t];return A[t]=(r||0)+1,{key:t+\"__\"+A[t],label:t,specIndex:e,xIndex:M[e],xScale:u,x:void 0,calcdata:void 0,columnWidth:S[e]}})};return L.columns.forEach(function(t){t.calcdata=L,t.x=u(t)}),L}},{\"../../lib/extend\":710,\"./constants\":1233,\"fast-isnumeric\":226}],1235:[function(t,e,r){\"use strict\";var n=t(\"../../lib/extend\").extendFlat;r.splitToPanels=function(t){var e=[0,0],r=n({},t,{key:\"header\",type:\"header\",page:0,prevPages:e,currentRepaint:[null,null],dragHandle:!0,values:t.calcdata.headerCells.values[t.specIndex],rowBlocks:t.calcdata.headerRowBlocks,calcdata:n({},t.calcdata,{cells:t.calcdata.headerCells})});return[n({},t,{key:\"cells1\",type:\"cells\",page:0,prevPages:e,currentRepaint:[null,null],dragHandle:!1,values:t.calcdata.cells.values[t.specIndex],rowBlocks:t.calcdata.rowBlocks}),n({},t,{key:\"cells2\",type:\"cells\",page:1,prevPages:e,currentRepaint:[null,null],dragHandle:!1,values:t.calcdata.cells.values[t.specIndex],rowBlocks:t.calcdata.rowBlocks}),r]},r.splitToCells=function(t){var e=function(t){var e=t.rowBlocks[t.page],r=e?e.rows[0].rowIndex:0,n=e?r+e.rows.length:0;return[r,n]}(t);return(t.values||[]).slice(e[0],e[1]).map(function(r,n){return{keyWithinBlock:n+(\"string\"==typeof r&&r.match(/[<$&> ]/)?\"_keybuster_\"+Math.random():\"\"),key:e[0]+n,column:t,calcdata:t.calcdata,page:t.page,rowBlocks:t.rowBlocks,value:r}})}},{\"../../lib/extend\":710}],1236:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./attributes\"),i=t(\"../../plots/domain\").defaults;e.exports=function(t,e,r,o){function s(r,i){return n.coerce(t,e,a,r,i)}i(e,o,s),s(\"columnwidth\"),s(\"header.values\"),s(\"header.format\"),s(\"header.align\"),s(\"header.prefix\"),s(\"header.suffix\"),s(\"header.height\"),s(\"header.line.width\"),s(\"header.line.color\"),s(\"header.fill.color\"),n.coerceFont(s,\"header.font\",n.extendFlat({},o.font)),function(t,e){for(var r=t.columnorder||[],n=t.header.values.length,a=r.slice(0,n),i=a.slice().sort(function(t,e){return t-e}),o=a.map(function(t){return i.indexOf(t)}),s=o.length;s<n;s++)o.push(s);e(\"columnorder\",o)}(e,s),s(\"cells.values\"),s(\"cells.format\"),s(\"cells.align\"),s(\"cells.prefix\"),s(\"cells.suffix\"),s(\"cells.height\"),s(\"cells.line.width\"),s(\"cells.line.color\"),s(\"cells.fill.color\"),n.coerceFont(s,\"cells.font\",n.extendFlat({},o.font)),e._length=null}},{\"../../lib\":719,\"../../plots/domain\":792,\"./attributes\":1230}],1237:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),plot:t(\"./plot\"),moduleType:\"trace\",name:\"table\",basePlotModule:t(\"./base_plot\"),categories:[\"noOpacity\"],meta:{}}},{\"./attributes\":1230,\"./base_plot\":1231,\"./calc\":1232,\"./defaults\":1236,\"./plot\":1238}],1238:[function(t,e,r){\"use strict\";var n=t(\"./constants\"),a=t(\"d3\"),i=t(\"../../lib/gup\"),o=t(\"../../components/drawing\"),s=t(\"../../lib/svg_text_utils\"),l=t(\"../../lib\").raiseToTop,c=t(\"../../lib\").cancelTransition,u=t(\"./data_preparation_helper\"),h=t(\"./data_split_helpers\"),f=t(\"../../components/color\");function p(t){return Math.ceil(t.calcdata.maxLineWidth/2)}function d(t,e){return\"clip\"+t._fullLayout._uid+\"_scrollAreaBottomClip_\"+e.key}function g(t,e){return\"clip\"+t._fullLayout._uid+\"_columnBoundaryClippath_\"+e.calcdata.key+\"_\"+e.specIndex}function v(t){return[].concat.apply([],t.map(function(t){return t})).map(function(t){return t.__data__})}function m(t,e,r){var o=t.selectAll(\".\"+n.cn.scrollbarKit).data(i.repeat,i.keyFun);o.enter().append(\"g\").classed(n.cn.scrollbarKit,!0).style(\"shape-rendering\",\"geometricPrecision\"),o.each(function(t){var e=t.scrollbarState;e.totalHeight=function(t){var e=t.rowBlocks;return I(e,e.length-1)+(e.length?z(e[e.length-1],1/0):1)}(t),e.scrollableAreaHeight=t.groupHeight-A(t),e.currentlyVisibleHeight=Math.min(e.totalHeight,e.scrollableAreaHeight),e.ratio=e.currentlyVisibleHeight/e.totalHeight,e.barLength=Math.max(e.ratio*e.currentlyVisibleHeight,n.goldenRatio*n.scrollbarWidth),e.barWiggleRoom=e.currentlyVisibleHeight-e.barLength,e.wiggleRoom=Math.max(0,e.totalHeight-e.scrollableAreaHeight),e.topY=0===e.barWiggleRoom?0:t.scrollY/e.wiggleRoom*e.barWiggleRoom,e.bottomY=e.topY+e.barLength,e.dragMultiplier=e.wiggleRoom/e.barWiggleRoom}).attr(\"transform\",function(t){return\"translate(\"+(t.width+n.scrollbarWidth/2+n.scrollbarOffset)+\" \"+A(t)+\")\"});var s=o.selectAll(\".\"+n.cn.scrollbar).data(i.repeat,i.keyFun);s.enter().append(\"g\").classed(n.cn.scrollbar,!0);var l=s.selectAll(\".\"+n.cn.scrollbarSlider).data(i.repeat,i.keyFun);l.enter().append(\"g\").classed(n.cn.scrollbarSlider,!0),l.attr(\"transform\",function(t){return\"translate(0 \"+(t.scrollbarState.topY||0)+\")\"});var c=l.selectAll(\".\"+n.cn.scrollbarGlyph).data(i.repeat,i.keyFun);c.enter().append(\"line\").classed(n.cn.scrollbarGlyph,!0).attr(\"stroke\",\"black\").attr(\"stroke-width\",n.scrollbarWidth).attr(\"stroke-linecap\",\"round\").attr(\"y1\",n.scrollbarWidth/2),c.attr(\"y2\",function(t){return t.scrollbarState.barLength-n.scrollbarWidth/2}).attr(\"stroke-opacity\",function(t){return t.columnDragInProgress||!t.scrollbarState.barWiggleRoom||r?0:.4}),c.transition().delay(0).duration(0),c.transition().delay(n.scrollbarHideDelay).duration(n.scrollbarHideDuration).attr(\"stroke-opacity\",0);var u=s.selectAll(\".\"+n.cn.scrollbarCaptureZone).data(i.repeat,i.keyFun);u.enter().append(\"line\").classed(n.cn.scrollbarCaptureZone,!0).attr(\"stroke\",\"white\").attr(\"stroke-opacity\",.01).attr(\"stroke-width\",n.scrollbarCaptureWidth).attr(\"stroke-linecap\",\"butt\").attr(\"y1\",0).on(\"mousedown\",function(r){var n=a.event.y,i=this.getBoundingClientRect(),o=r.scrollbarState,s=n-i.top,l=a.scale.linear().domain([0,o.scrollableAreaHeight]).range([0,o.totalHeight]).clamp(!0);o.topY<=s&&s<=o.bottomY||S(e,t,null,l(s-o.barLength/2))(r)}).call(a.behavior.drag().origin(function(t){return a.event.stopPropagation(),t.scrollbarState.scrollbarScrollInProgress=!0,t}).on(\"drag\",S(e,t)).on(\"dragend\",function(){})),u.attr(\"y2\",function(t){return t.scrollbarState.scrollableAreaHeight}),e._context.staticPlot&&(c.remove(),u.remove())}function y(t,e,r,s){var l=function(t){var e=t.selectAll(\".\"+n.cn.columnCell).data(h.splitToCells,function(t){return t.keyWithinBlock});return e.enter().append(\"g\").classed(n.cn.columnCell,!0),e.exit().remove(),e}(function(t){var e=t.selectAll(\".\"+n.cn.columnCells).data(i.repeat,i.keyFun);return e.enter().append(\"g\").classed(n.cn.columnCells,!0),e.exit().remove(),e}(r));!function(t){t.each(function(t,e){var r=t.calcdata.cells.font,n=t.column.specIndex,a={size:_(r.size,n,e),color:_(r.color,n,e),family:_(r.family,n,e)};t.rowNumber=t.key,t.align=_(t.calcdata.cells.align,n,e),t.cellBorderWidth=_(t.calcdata.cells.line.width,n,e),t.font=a})}(l),function(t){t.attr(\"width\",function(t){return t.column.columnWidth}).attr(\"stroke-width\",function(t){return t.cellBorderWidth}).each(function(t){var e=a.select(this);f.stroke(e,_(t.calcdata.cells.line.color,t.column.specIndex,t.rowNumber)),f.fill(e,_(t.calcdata.cells.fill.color,t.column.specIndex,t.rowNumber))})}(function(t){var e=t.selectAll(\".\"+n.cn.cellRect).data(i.repeat,function(t){return t.keyWithinBlock});return e.enter().append(\"rect\").classed(n.cn.cellRect,!0),e}(l));var c=function(t){var e=t.selectAll(\".\"+n.cn.cellText).data(i.repeat,function(t){return t.keyWithinBlock});return e.enter().append(\"text\").classed(n.cn.cellText,!0).style(\"cursor\",function(){return\"auto\"}).on(\"mousedown\",function(){a.event.stopPropagation()}),e}(function(t){var e=t.selectAll(\".\"+n.cn.cellTextHolder).data(i.repeat,function(t){return t.keyWithinBlock});return e.enter().append(\"g\").classed(n.cn.cellTextHolder,!0).style(\"shape-rendering\",\"geometricPrecision\"),e}(l));!function(t){t.each(function(t){o.font(a.select(this),t.font)})}(c),x(c,e,s,t),O(l)}function x(t,e,r,i){t.text(function(t){var e=t.column.specIndex,r=t.rowNumber,i=t.value,o=\"string\"==typeof i,s=o&&i.match(/<br>/i),l=!o||s;t.mayHaveMarkup=o&&i.match(/[<&>]/);var c,u=\"string\"==typeof(c=i)&&c.match(n.latexCheck);t.latex=u;var h,f,p=u?\"\":_(t.calcdata.cells.prefix,e,r)||\"\",d=u?\"\":_(t.calcdata.cells.suffix,e,r)||\"\",g=u?null:_(t.calcdata.cells.format,e,r)||null,v=p+(g?a.format(g)(t.value):t.value)+d;if(t.wrappingNeeded=!t.wrapped&&!l&&!u&&(h=b(v)),t.cellHeightMayIncrease=s||u||t.mayHaveMarkup||(void 0===h?b(v):h),t.needsConvertToTspans=t.mayHaveMarkup||t.wrappingNeeded||t.latex,t.wrappingNeeded){var m=(\" \"===n.wrapSplitCharacter?v.replace(/<a href=/gi,\"<a_href=\"):v).split(n.wrapSplitCharacter),y=\" \"===n.wrapSplitCharacter?m.map(function(t){return t.replace(/<a_href=/gi,\"<a href=\")}):m;t.fragments=y.map(function(t){return{text:t,width:null}}),t.fragments.push({fragment:n.wrapSpacer,width:null}),f=y.join(n.lineBreaker)+n.lineBreaker+n.wrapSpacer}else delete t.fragments,f=v;return f}).attr(\"dy\",function(t){return t.needsConvertToTspans?0:\"0.75em\"}).each(function(t){var o=a.select(this),l=t.wrappingNeeded?C:L;t.needsConvertToTspans?s.convertToTspans(o,i,l(r,this,e,i,t)):a.select(this.parentNode).attr(\"transform\",function(t){return\"translate(\"+P(t)+\" \"+n.cellPad+\")\"}).attr(\"text-anchor\",function(t){return{left:\"start\",center:\"middle\",right:\"end\"}[t.align]})})}function b(t){return-1!==t.indexOf(n.wrapSplitCharacter)}function _(t,e,r){if(Array.isArray(t)){var n=t[Math.min(e,t.length-1)];return Array.isArray(n)?n[Math.min(r,n.length-1)]:n}return t}function w(t,e,r){t.transition().ease(n.releaseTransitionEase).duration(n.releaseTransitionDuration).attr(\"transform\",\"translate(\"+e.x+\" \"+r+\")\")}function k(t){return\"cells\"===t.type}function T(t){return\"header\"===t.type}function A(t){return(t.rowBlocks.length?t.rowBlocks[0].auxiliaryBlocks:[]).reduce(function(t,e){return t+z(e,1/0)},0)}function M(t,e,r){var n=v(e)[0];if(void 0!==n){var a=n.rowBlocks,i=n.calcdata,o=I(a,a.length),s=n.calcdata.groupHeight-A(n),l=i.scrollY=Math.max(0,Math.min(o-s,i.scrollY)),c=function(t,e,r){for(var n=[],a=0,i=0;i<t.length;i++){for(var o=t[i],s=o.rows,l=0,c=0;c<s.length;c++)l+=s[c].rowHeight;o.allRowsHeight=l,e<a+l&&e+r>a&&n.push(i),a+=l}return n}(a,l,s);1===c.length&&(c[0]===a.length-1?c.unshift(c[0]-1):c.push(c[0]+1)),c[0]%2&&c.reverse(),e.each(function(t,e){t.page=c[e],t.scrollY=l}),e.attr(\"transform\",function(t){return\"translate(0 \"+(I(t.rowBlocks,t.page)-t.scrollY)+\")\"}),t&&(E(t,r,e,c,n.prevPages,n,0),E(t,r,e,c,n.prevPages,n,1),m(r,t))}}function S(t,e,r,i){return function(o){var s=o.calcdata?o.calcdata:o,l=e.filter(function(t){return s.key===t.key}),c=r||s.scrollbarState.dragMultiplier,u=s.scrollY;s.scrollY=void 0===i?s.scrollY+c*a.event.dy:i;var h=l.selectAll(\".\"+n.cn.yColumn).selectAll(\".\"+n.cn.columnBlock).filter(k);return M(t,h,l),s.scrollY===u}}function E(t,e,r,n,a,i,o){n[o]!==a[o]&&(clearTimeout(i.currentRepaint[o]),i.currentRepaint[o]=setTimeout(function(){var i=r.filter(function(t,e){return e===o&&n[e]!==a[e]});y(t,e,i,r),a[o]=n[o]}))}function C(t,e,r,i){return function(){var o=a.select(e.parentNode);o.each(function(t){var e=t.fragments;o.selectAll(\"tspan.line\").each(function(t,r){e[r].width=this.getComputedTextLength()});var r,a,i=e[e.length-1].width,s=e.slice(0,-1),l=[],c=0,u=t.column.columnWidth-2*n.cellPad;for(t.value=\"\";s.length;)c+(a=(r=s.shift()).width+i)>u&&(t.value+=l.join(n.wrapSpacer)+n.lineBreaker,l=[],c=0),l.push(r.text),c+=a;c&&(t.value+=l.join(n.wrapSpacer)),t.wrapped=!0}),o.selectAll(\"tspan.line\").remove(),x(o.select(\".\"+n.cn.cellText),r,t,i),a.select(e.parentNode.parentNode).call(O)}}function L(t,e,r,i,o){return function(){if(!o.settledY){var s=a.select(e.parentNode),l=R(o),c=o.key-l.firstRowIndex,u=l.rows[c].rowHeight,h=o.cellHeightMayIncrease?e.parentNode.getBoundingClientRect().height+2*n.cellPad:u,f=Math.max(h,u);f-l.rows[c].rowHeight&&(l.rows[c].rowHeight=f,t.selectAll(\".\"+n.cn.columnCell).call(O),M(null,t.filter(k),0),m(r,i,!0)),s.attr(\"transform\",function(){var t=this.parentNode.getBoundingClientRect(),e=a.select(this.parentNode).select(\".\"+n.cn.cellRect).node().getBoundingClientRect(),r=this.transform.baseVal.consolidate(),i=e.top-t.top+(r?r.matrix.f:n.cellPad);return\"translate(\"+P(o,a.select(this.parentNode).select(\".\"+n.cn.cellTextHolder).node().getBoundingClientRect().width)+\" \"+i+\")\"}),o.settledY=!0}}}function P(t,e){switch(t.align){case\"left\":return n.cellPad;case\"right\":return t.column.columnWidth-(e||0)-n.cellPad;case\"center\":return(t.column.columnWidth-(e||0))/2;default:return n.cellPad}}function O(t){t.attr(\"transform\",function(t){var e=t.rowBlocks[0].auxiliaryBlocks.reduce(function(t,e){return t+z(e,1/0)},0);return\"translate(0 \"+(z(R(t),t.key)+e)+\")\"}).selectAll(\".\"+n.cn.cellRect).attr(\"height\",function(t){return(e=R(t),r=t.key,e.rows[r-e.firstRowIndex]).rowHeight;var e,r})}function I(t,e){for(var r=0,n=e-1;n>=0;n--)r+=D(t[n]);return r}function z(t,e){for(var r=0,n=0;n<t.rows.length&&t.rows[n].rowIndex<e;n++)r+=t.rows[n].rowHeight;return r}function D(t){var e=t.allRowsHeight;if(void 0!==e)return e;for(var r=0,n=0;n<t.rows.length;n++)r+=t.rows[n].rowHeight;return t.allRowsHeight=r,r}function R(t){return t.rowBlocks[t.page]}e.exports=function(t,e){var r=!t._context.staticPlot,s=t._fullLayout._paper.selectAll(\".\"+n.cn.table).data(e.map(function(e){var r=i.unwrap(e).trace;return u(t,r)}),i.keyFun);s.exit().remove(),s.enter().append(\"g\").classed(n.cn.table,!0).attr(\"overflow\",\"visible\").style(\"box-sizing\",\"content-box\").style(\"position\",\"absolute\").style(\"left\",0).style(\"overflow\",\"visible\").style(\"shape-rendering\",\"crispEdges\").style(\"pointer-events\",\"all\"),s.attr(\"width\",function(t){return t.width+t.size.l+t.size.r}).attr(\"height\",function(t){return t.height+t.size.t+t.size.b}).attr(\"transform\",function(t){return\"translate(\"+t.translateX+\",\"+t.translateY+\")\"});var f=s.selectAll(\".\"+n.cn.tableControlView).data(i.repeat,i.keyFun),x=f.enter().append(\"g\").classed(n.cn.tableControlView,!0).style(\"box-sizing\",\"content-box\");r&&x.on(\"mousemove\",function(e){f.filter(function(t){return e===t}).call(m,t)}).on(\"mousewheel\",function(e){if(!e.scrollbarState.wheeling){e.scrollbarState.wheeling=!0;var r=e.scrollY+a.event.deltaY;S(t,f,null,r)(e)||(a.event.stopPropagation(),a.event.preventDefault()),e.scrollbarState.wheeling=!1}}).call(m,t,!0),f.attr(\"transform\",function(t){return\"translate(\"+t.size.l+\" \"+t.size.t+\")\"});var b=f.selectAll(\".\"+n.cn.scrollBackground).data(i.repeat,i.keyFun);b.enter().append(\"rect\").classed(n.cn.scrollBackground,!0).attr(\"fill\",\"none\"),b.attr(\"width\",function(t){return t.width}).attr(\"height\",function(t){return t.height}),f.each(function(e){o.setClipUrl(a.select(this),d(t,e),t)});var _=f.selectAll(\".\"+n.cn.yColumn).data(function(t){return t.columns},i.keyFun);_.enter().append(\"g\").classed(n.cn.yColumn,!0),_.exit().remove(),_.attr(\"transform\",function(t){return\"translate(\"+t.x+\" 0)\"}),r&&_.call(a.behavior.drag().origin(function(e){return w(a.select(this),e,-n.uplift),l(this),e.calcdata.columnDragInProgress=!0,m(f.filter(function(t){return e.calcdata.key===t.key}),t),e}).on(\"drag\",function(t){var e=a.select(this),r=function(e){return(t===e?a.event.x:e.x)+e.columnWidth/2};t.x=Math.max(-n.overdrag,Math.min(t.calcdata.width+n.overdrag-t.columnWidth,a.event.x)),v(_).filter(function(e){return e.calcdata.key===t.calcdata.key}).sort(function(t,e){return r(t)-r(e)}).forEach(function(e,r){e.xIndex=r,e.x=t===e?e.x:e.xScale(e)}),_.filter(function(e){return t!==e}).transition().ease(n.transitionEase).duration(n.transitionDuration).attr(\"transform\",function(t){return\"translate(\"+t.x+\" 0)\"}),e.call(c).attr(\"transform\",\"translate(\"+t.x+\" -\"+n.uplift+\" )\")}).on(\"dragend\",function(e){var r=a.select(this),n=e.calcdata;e.x=e.xScale(e),e.calcdata.columnDragInProgress=!1,w(r,e,0),function(t,e,r){var n=e.gdColumnsOriginalOrder;e.gdColumns.sort(function(t,e){return r[n.indexOf(t)]-r[n.indexOf(e)]}),e.columnorder=r,t.emit(\"plotly_restyle\")}(t,n,n.columns.map(function(t){return t.xIndex}))})),_.each(function(e){o.setClipUrl(a.select(this),g(t,e),t)});var A=_.selectAll(\".\"+n.cn.columnBlock).data(h.splitToPanels,i.keyFun);A.enter().append(\"g\").classed(n.cn.columnBlock,!0).attr(\"id\",function(t){return t.key}),A.style(\"cursor\",function(t){return t.dragHandle?\"ew-resize\":t.calcdata.scrollbarState.barWiggleRoom?\"ns-resize\":\"default\"});var E=A.filter(T),C=A.filter(k);r&&C.call(a.behavior.drag().origin(function(t){return a.event.stopPropagation(),t}).on(\"drag\",S(t,f,-1)).on(\"dragend\",function(){})),y(t,f,E,A),y(t,f,C,A);var L=f.selectAll(\".\"+n.cn.scrollAreaClip).data(i.repeat,i.keyFun);L.enter().append(\"clipPath\").classed(n.cn.scrollAreaClip,!0).attr(\"id\",function(e){return d(t,e)});var P=L.selectAll(\".\"+n.cn.scrollAreaClipRect).data(i.repeat,i.keyFun);P.enter().append(\"rect\").classed(n.cn.scrollAreaClipRect,!0).attr(\"x\",-n.overdrag).attr(\"y\",-n.uplift).attr(\"fill\",\"none\"),P.attr(\"width\",function(t){return t.width+2*n.overdrag}).attr(\"height\",function(t){return t.height+n.uplift}),_.selectAll(\".\"+n.cn.columnBoundary).data(i.repeat,i.keyFun).enter().append(\"g\").classed(n.cn.columnBoundary,!0);var O=_.selectAll(\".\"+n.cn.columnBoundaryClippath).data(i.repeat,i.keyFun);O.enter().append(\"clipPath\").classed(n.cn.columnBoundaryClippath,!0),O.attr(\"id\",function(e){return g(t,e)});var I=O.selectAll(\".\"+n.cn.columnBoundaryRect).data(i.repeat,i.keyFun);I.enter().append(\"rect\").classed(n.cn.columnBoundaryRect,!0).attr(\"fill\",\"none\"),I.attr(\"width\",function(t){return t.columnWidth+2*p(t)}).attr(\"height\",function(t){return t.calcdata.height+2*p(t)+n.uplift}).attr(\"x\",function(t){return-p(t)}).attr(\"y\",function(t){return-p(t)}),M(null,C,f)}},{\"../../components/color\":594,\"../../components/drawing\":615,\"../../lib\":719,\"../../lib/gup\":717,\"../../lib/svg_text_utils\":743,\"./constants\":1233,\"./data_preparation_helper\":1234,\"./data_split_helpers\":1235,d3:164}],1239:[function(t,e,r){\"use strict\";var n=t(\"../../plots/template_attributes\").hovertemplateAttrs,a=t(\"../../plots/template_attributes\").texttemplateAttrs,i=t(\"../../components/colorscale/attributes\"),o=t(\"../../plots/domain\").attributes,s=t(\"../pie/attributes\"),l=t(\"../sunburst/attributes\"),c=t(\"./constants\"),u=t(\"../../lib/extend\").extendFlat;e.exports={labels:l.labels,parents:l.parents,values:l.values,branchvalues:l.branchvalues,count:l.count,level:l.level,maxdepth:l.maxdepth,tiling:{packing:{valType:\"enumerated\",values:[\"squarify\",\"binary\",\"dice\",\"slice\",\"slice-dice\",\"dice-slice\"],dflt:\"squarify\",editType:\"plot\"},squarifyratio:{valType:\"number\",min:1,dflt:1,editType:\"plot\"},flip:{valType:\"flaglist\",flags:[\"x\",\"y\"],dflt:\"\",editType:\"plot\"},pad:{valType:\"number\",min:0,dflt:3,editType:\"plot\"},editType:\"calc\"},marker:u({pad:{t:{valType:\"number\",min:0,editType:\"plot\"},l:{valType:\"number\",min:0,editType:\"plot\"},r:{valType:\"number\",min:0,editType:\"plot\"},b:{valType:\"number\",min:0,editType:\"plot\"},editType:\"calc\"},colors:l.marker.colors,depthfade:{valType:\"enumerated\",values:[!0,!1,\"reversed\"],editType:\"style\"},line:l.marker.line,editType:\"calc\"},i(\"marker\",{colorAttr:\"colors\",anim:!1})),pathbar:{visible:{valType:\"boolean\",dflt:!0,editType:\"plot\"},side:{valType:\"enumerated\",values:[\"top\",\"bottom\"],dflt:\"top\",editType:\"plot\"},edgeshape:{valType:\"enumerated\",values:[\">\",\"<\",\"|\",\"/\",\"\\\\\"],dflt:\">\",editType:\"plot\"},thickness:{valType:\"number\",min:12,editType:\"plot\"},textfont:u({},s.textfont,{}),editType:\"calc\"},text:s.text,textinfo:l.textinfo,texttemplate:a({editType:\"plot\"},{keys:c.eventDataKeys.concat([\"label\",\"value\"])}),hovertext:s.hovertext,hoverinfo:l.hoverinfo,hovertemplate:n({},{keys:c.eventDataKeys}),textfont:s.textfont,insidetextfont:s.insidetextfont,outsidetextfont:s.outsidetextfont,textposition:{valType:\"enumerated\",values:[\"top left\",\"top center\",\"top right\",\"middle left\",\"middle center\",\"middle right\",\"bottom left\",\"bottom center\",\"bottom right\"],dflt:\"top left\",editType:\"plot\"},domain:o({name:\"treemap\",trace:!0,editType:\"calc\"})}},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plots/domain\":792,\"../../plots/template_attributes\":843,\"../pie/attributes\":1085,\"../sunburst/attributes\":1213,\"./constants\":1242}],1240:[function(t,e,r){\"use strict\";var n=t(\"../../plots/plots\");r.name=\"treemap\",r.plot=function(t,e,a,i){n.plotBasePlot(r.name,t,e,a,i)},r.clean=function(t,e,a,i){n.cleanBasePlot(r.name,t,e,a,i)}},{\"../../plots/plots\":828}],1241:[function(t,e,r){\"use strict\";var n=t(\"../sunburst/calc\");r.calc=function(t,e){return n.calc(t,e)},r.crossTraceCalc=function(t){return n._runCrossTraceCalc(\"treemap\",t)}},{\"../sunburst/calc\":1215}],1242:[function(t,e,r){\"use strict\";e.exports={CLICK_TRANSITION_TIME:750,CLICK_TRANSITION_EASING:\"poly\",eventDataKeys:[\"currentPath\",\"root\",\"entry\",\"percentRoot\",\"percentEntry\",\"percentParent\"],gapWithPathbar:1}},{}],1243:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./attributes\"),i=t(\"../../components/color\"),o=t(\"../../plots/domain\").defaults,s=t(\"../bar/defaults\").handleText,l=t(\"../bar/constants\").TEXTPAD,c=t(\"../../components/colorscale\"),u=c.hasColorscale,h=c.handleDefaults;e.exports=function(t,e,r,c){function f(r,i){return n.coerce(t,e,a,r,i)}var p=f(\"labels\"),d=f(\"parents\");if(p&&p.length&&d&&d.length){var g=f(\"values\");g&&g.length?f(\"branchvalues\"):f(\"count\"),f(\"level\"),f(\"maxdepth\"),\"squarify\"===f(\"tiling.packing\")&&f(\"tiling.squarifyratio\"),f(\"tiling.flip\"),f(\"tiling.pad\");var v=f(\"text\");f(\"texttemplate\"),e.texttemplate||f(\"textinfo\",Array.isArray(v)?\"text+label\":\"label\"),f(\"hovertext\"),f(\"hovertemplate\");s(t,e,c,f,\"auto\",{moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!1,moduleHasCliponaxis:!1,moduleHasTextangle:!1,moduleHasInsideanchor:!1}),f(\"textposition\");var m=-1!==e.textposition.indexOf(\"bottom\");f(\"marker.line.width\")&&f(\"marker.line.color\",c.paper_bgcolor);var y=f(\"marker.colors\"),x=e._hasColorscale=u(t,\"marker\",\"colors\");x?h(t,e,c,f,{prefix:\"marker.\",cLetter:\"c\"}):f(\"marker.depthfade\",!(y||[]).length);var b=2*e.textfont.size;f(\"marker.pad.t\",m?b/4:b),f(\"marker.pad.l\",b/4),f(\"marker.pad.r\",b/4),f(\"marker.pad.b\",m?b:b/4),x&&h(t,e,c,f,{prefix:\"marker.\",cLetter:\"c\"}),e._hovered={marker:{line:{width:2,color:i.contrast(c.paper_bgcolor)}}},f(\"pathbar.visible\")&&(n.coerceFont(f,\"pathbar.textfont\",c.font),f(\"pathbar.thickness\",e.pathbar.textfont.size+2*l),f(\"pathbar.side\"),f(\"pathbar.edgeshape\")),o(e,c,f),e._length=null}else e.visible=!1}},{\"../../components/color\":594,\"../../components/colorscale\":606,\"../../lib\":719,\"../../plots/domain\":792,\"../bar/constants\":860,\"../bar/defaults\":862,\"./attributes\":1239}],1244:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../lib\"),i=t(\"../../components/drawing\"),o=t(\"../../lib/svg_text_utils\"),s=t(\"./partition\"),l=t(\"./style\").styleOne,c=t(\"./constants\"),u=t(\"../sunburst/helpers\"),h=t(\"../sunburst/fx\");e.exports=function(t,e,r,f,p){var d=p.barDifY,g=p.width,v=p.height,m=p.viewX,y=p.viewY,x=p.pathSlice,b=p.toMoveInsideSlice,_=p.strTransform,w=p.hasTransition,k=p.handleSlicesExit,T=p.makeUpdateSliceInterpolator,A=p.makeUpdateTextInterpolator,M={},S=t._fullLayout,E=e[0],C=E.trace,L=E.hierarchy,P=g/C._entryDepth,O=u.listPath(r.data,\"id\"),I=s(L.copy(),[g,v],{packing:\"dice\",pad:{inner:0,top:0,left:0,right:0,bottom:0}}).descendants();(I=I.filter(function(t){var e=O.indexOf(t.data.id);return-1!==e&&(t.x0=P*e,t.x1=P*(e+1),t.y0=d,t.y1=d+v,t.onPathbar=!0,!0)})).reverse(),(f=f.data(I,u.getPtId)).enter().append(\"g\").classed(\"pathbar\",!0),k(f,!0,M,[g,v],x),f.order();var z=f;w&&(z=z.transition().each(\"end\",function(){var e=n.select(this);u.setSliceCursor(e,t,{hideOnRoot:!1,hideOnLeaves:!1,isTransitioning:!1})})),z.each(function(s){s._hoverX=m(s.x1-v/2),s._hoverY=y(s.y1-v/2);var f=n.select(this),p=a.ensureSingle(f,\"path\",\"surface\",function(t){t.style(\"pointer-events\",\"all\")});w?p.transition().attrTween(\"d\",function(t){var e=T(t,!0,M,[g,v]);return function(t){return x(e(t))}}):p.attr(\"d\",x),f.call(h,r,t,e,{styleOne:l,eventDataKeys:c.eventDataKeys,transitionTime:c.CLICK_TRANSITION_TIME,transitionEasing:c.CLICK_TRANSITION_EASING}).call(u.setSliceCursor,t,{hideOnRoot:!1,hideOnLeaves:!1,isTransitioning:t._transitioning}),p.call(l,s,C,{hovered:!1}),s._text=(u.getPtLabel(s)||\"\").split(\"<br>\").join(\" \")||\"\";var d=a.ensureSingle(f,\"g\",\"slicetext\"),k=a.ensureSingle(d,\"text\",\"\",function(t){t.attr(\"data-notex\",1)});k.text(s._text||\" \").classed(\"slicetext\",!0).attr(\"text-anchor\",\"start\").call(i.font,u.determineTextFont(C,s,S.font,C.pathdir)).call(o.convertToTspans,t),s.textBB=i.bBox(k.node()),s.transform=b(s,{onPathbar:!0}),u.isOutsideText(C,s)&&(s.transform.targetY-=u.getOutsideTextFontKey(\"size\",C,s,S.font)-u.getInsideTextFontKey(\"size\",C,s,S.font)),w?k.transition().attrTween(\"transform\",function(t){var e=A(t,!0,M,[g,v]);return function(t){return _(e(t))}}):k.attr(\"transform\",_(s))})}},{\"../../components/drawing\":615,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../sunburst/fx\":1218,\"../sunburst/helpers\":1219,\"./constants\":1242,\"./partition\":1249,\"./style\":1251,d3:164}],1245:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../lib\"),i=t(\"../../components/drawing\"),o=t(\"../../lib/svg_text_utils\"),s=t(\"./partition\"),l=t(\"./style\").styleOne,c=t(\"./constants\"),u=t(\"../sunburst/helpers\"),h=t(\"../sunburst/fx\"),f=t(\"../sunburst/plot\").formatSliceLabel;e.exports=function(t,e,r,p,d){var g=d.width,v=d.height,m=d.viewX,y=d.viewY,x=d.pathSlice,b=d.toMoveInsideSlice,_=d.strTransform,w=d.hasTransition,k=d.handleSlicesExit,T=d.makeUpdateSliceInterpolator,A=d.makeUpdateTextInterpolator,M=d.prevEntry,S=t._fullLayout,E=e[0].trace,C=-1!==E.textposition.indexOf(\"left\"),L=-1!==E.textposition.indexOf(\"right\"),P=-1!==E.textposition.indexOf(\"bottom\"),O=!P&&!E.marker.pad.t||P&&!E.marker.pad.b,I=s(r,[g,v],{packing:E.tiling.packing,squarifyratio:E.tiling.squarifyratio,flipX:E.tiling.flip.indexOf(\"x\")>-1,flipY:E.tiling.flip.indexOf(\"y\")>-1,pad:{inner:E.tiling.pad,top:E.marker.pad.t,left:E.marker.pad.l,right:E.marker.pad.r,bottom:E.marker.pad.b}}).descendants(),z=1/0,D=-1/0;I.forEach(function(t){var e=t.depth;e>=E._maxDepth?(t.x0=t.x1=(t.x0+t.x1)/2,t.y0=t.y1=(t.y0+t.y1)/2):(z=Math.min(z,e),D=Math.max(D,e))}),p=p.data(I,u.getPtId),E._maxVisibleLayers=isFinite(D)?D-z+1:0,p.enter().append(\"g\").classed(\"slice\",!0),k(p,!1,{},[g,v],x),p.order();var R=null;if(w&&M){var F=u.getPtId(M);p.each(function(t){null===R&&u.getPtId(t)===F&&(R={x0:t.x0,x1:t.x1,y0:t.y0,y1:t.y1})})}var B=function(){return R||{x0:0,x1:g,y0:0,y1:v}},N=p;return w&&(N=N.transition().each(\"end\",function(){var e=n.select(this);u.setSliceCursor(e,t,{hideOnRoot:!0,hideOnLeaves:!1,isTransitioning:!1})})),N.each(function(s){var p=u.isHeader(s,E);s._hoverX=m(s.x1-E.marker.pad.r),s._hoverY=y(P?s.y1-E.marker.pad.b/2:s.y0+E.marker.pad.t/2);var d=n.select(this),k=a.ensureSingle(d,\"path\",\"surface\",function(t){t.style(\"pointer-events\",\"all\")});w?k.transition().attrTween(\"d\",function(t){var e=T(t,!1,B(),[g,v]);return function(t){return x(e(t))}}):k.attr(\"d\",x),d.call(h,r,t,e,{styleOne:l,eventDataKeys:c.eventDataKeys,transitionTime:c.CLICK_TRANSITION_TIME,transitionEasing:c.CLICK_TRANSITION_EASING}).call(u.setSliceCursor,t,{isTransitioning:t._transitioning}),k.call(l,s,E,{hovered:!1}),s.x0===s.x1||s.y0===s.y1?s._text=\"\":s._text=p?O?\"\":u.getPtLabel(s)||\"\":f(s,r,E,e,S)||\"\";var M=a.ensureSingle(d,\"g\",\"slicetext\"),I=a.ensureSingle(M,\"text\",\"\",function(t){t.attr(\"data-notex\",1)});I.text(s._text||\" \").classed(\"slicetext\",!0).attr(\"text-anchor\",L?\"end\":C||p?\"start\":\"middle\").call(i.font,u.determineTextFont(E,s,S.font)).call(o.convertToTspans,t),s.textBB=i.bBox(I.node()),s.transform=b(s,{isHeader:p}),w?I.transition().attrTween(\"transform\",function(t){var e=A(t,!1,B(),[g,v]);return function(t){return _(e(t))}}):I.attr(\"transform\",_(s))}),R}},{\"../../components/drawing\":615,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../sunburst/fx\":1218,\"../sunburst/helpers\":1219,\"../sunburst/plot\":1223,\"./constants\":1242,\"./partition\":1249,\"./style\":1251,d3:164}],1246:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"treemap\",basePlotModule:t(\"./base_plot\"),categories:[],animatable:!0,attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\"),supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\").calc,crossTraceCalc:t(\"./calc\").crossTraceCalc,plot:t(\"./plot\"),style:t(\"./style\").style,colorbar:t(\"../scatter/marker_colorbar\"),meta:{}}},{\"../scatter/marker_colorbar\":1128,\"./attributes\":1239,\"./base_plot\":1240,\"./calc\":1241,\"./defaults\":1243,\"./layout_attributes\":1247,\"./layout_defaults\":1248,\"./plot\":1250,\"./style\":1251}],1247:[function(t,e,r){\"use strict\";e.exports={treemapcolorway:{valType:\"colorlist\",editType:\"calc\"},extendtreemapcolors:{valType:\"boolean\",dflt:!0,editType:\"calc\"}}},{}],1248:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./layout_attributes\");e.exports=function(t,e){function r(r,i){return n.coerce(t,e,a,r,i)}r(\"treemapcolorway\",e.colorway),r(\"extendtreemapcolors\")}},{\"../../lib\":719,\"./layout_attributes\":1247}],1249:[function(t,e,r){\"use strict\";var n=t(\"d3-hierarchy\");e.exports=function(t,e,r){var a,i=r.flipX,o=r.flipY,s=\"dice-slice\"===r.packing,l=r.pad[o?\"bottom\":\"top\"],c=r.pad[i?\"right\":\"left\"],u=r.pad[i?\"left\":\"right\"],h=r.pad[o?\"top\":\"bottom\"];s&&(a=c,c=l,l=a,a=u,u=h,h=a);var f=n.treemap().tile(function(t,e){switch(t){case\"squarify\":return n.treemapSquarify.ratio(e);case\"binary\":return n.treemapBinary;case\"dice\":return n.treemapDice;case\"slice\":return n.treemapSlice;default:return n.treemapSliceDice}}(r.packing,r.squarifyratio)).paddingInner(r.pad.inner).paddingLeft(c).paddingRight(u).paddingTop(l).paddingBottom(h).size(s?[e[1],e[0]]:e)(t);return(s||i||o)&&function t(e,r,n){var a;n.swapXY&&(a=e.x0,e.x0=e.y0,e.y0=a,a=e.x1,e.x1=e.y1,e.y1=a);n.flipX&&(a=e.x0,e.x0=r[0]-e.x1,e.x1=r[0]-a);n.flipY&&(a=e.y0,e.y0=r[1]-e.y1,e.y1=r[1]-a);var i=e.children;if(i)for(var o=0;o<i.length;o++)t(i[o],r,n)}(f,e,{swapXY:s,flipX:i,flipY:o}),f}},{\"d3-hierarchy\":158}],1250:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../sunburst/helpers\").hasTransition,i=t(\"../sunburst/helpers\"),o=t(\"../../lib\"),s=t(\"../bar/constants\").TEXTPAD,l=t(\"../bar/plot\").toMoveInsideBar,c=t(\"./constants\"),u=t(\"./draw_descendants\"),h=t(\"./draw_ancestors\");function f(t){return i.isHierarchyRoot(t)?\"\":i.getPtId(t)}function p(t,e,r,a){var p=t._fullLayout,d=e[0],g=d.trace,v=d.hierarchy,m=i.hasTransition(a),y=i.findEntryWithLevel(v,g.level),x=i.isHierarchyRoot(y),b=i.getMaxDepth(g),_=p._size,w=g.domain,k=_.w*(w.x[1]-w.x[0]),T=_.h*(w.y[1]-w.y[0]),A=k,M=g.pathbar.thickness,S=g.marker.line.width+c.gapWithPathbar,E=g.pathbar.visible?g.pathbar.side.indexOf(\"bottom\")>-1?T+S:-(M+S):0,C={x0:A,x1:A,y0:E,y1:E+M},L=function(t,e,r){var n=g.tiling.pad,a=function(t){return t-n<=e.x0},i=function(t){return t+n>=e.x1},o=function(t){return t-n<=e.y0},s=function(t){return t+n>=e.y1};return{x0:a(t.x0-n)?0:i(t.x0-n)?r[0]:t.x0,x1:a(t.x1+n)?0:i(t.x1+n)?r[0]:t.x1,y0:o(t.y0-n)?0:s(t.y0-n)?r[1]:t.y0,y1:o(t.y1+n)?0:s(t.y1+n)?r[1]:t.y1}},P=null,O={},I={},z=null,D=function(t,e){return e?O[f(t)]:I[f(t)]},R=function(t,e,r,n){if(e)return O[f(v)]||C;var a=I[g.level]||r;return function(t){return t.data.depth-y.data.depth<b}(t)?L(t,a,n):{}};d.hasMultipleRoots&&x&&b++,g._maxDepth=b,g._backgroundColor=p.paper_bgcolor,g._entryDepth=y.data.depth,g._atRootLevel=x;var F=-k/2+_.l+_.w*(w.x[1]+w.x[0])/2,B=-T/2+_.t+_.h*(1-(w.y[1]+w.y[0])/2),N=function(t){return F+t},j=function(t){return B+t},V=j(0),U=N(0),q=function(t){return U+t},H=function(t){return V+t};function G(t,e){return t+\",\"+e}var Y=q(0),W=function(t){t.x=Math.max(Y,t.x)},X=g.pathbar.edgeshape,Z=function(t,e){var r=t.x0,n=t.x1,a=t.y0,i=t.y1,o=t.textBB;r===n&&(r-=s,n+=s),a===i&&(a-=s,i+=s);var c=function(t){return-1!==g.textposition.indexOf(t)},u=c(\"bottom\"),h=c(\"top\")||e.isHeader&&!u?\"start\":u?\"end\":\"middle\",f=c(\"right\"),p=c(\"left\")||e.onPathbar,d=p?\"left\":f?\"right\":\"center\";!e.onPathbar&&e.isHeader||(r+=p?s:0,n-=f?s:0);var v=g.marker.pad;if(e.isHeader){if((r+=v.l-s)>=(n-=v.r-s)){var m=(r+n)/2;r=m-s,n=m+s}var y;u?a<(y=i-v.b)&&y<i&&(a=y):a<(y=a+v.t)&&y<i&&(i=y)}var x=l(r,n,a,i,o,{isHorizontal:!1,constrained:!0,angle:0,anchor:h});if(\"center\"!==d){var b=(n-r)/2-x.scale*(o.right-o.left)/2;e.isHeader&&(b-=s),\"left\"===d?x.targetX-=b:\"right\"===d&&(x.targetX+=b)}return x.targetX=N(x.targetX),x.targetY=j(x.targetY),isNaN(x.targetX)||isNaN(x.targetY)?{}:{scale:x.scale,rotate:x.rotate,textX:x.textX,textY:x.textY,targetX:x.targetX,targetY:x.targetY}},J=function(t,e){for(var r,n=0,a=t;!r&&n<b;)n++,(a=a.parent)?r=D(a,e):n=b;return r||{}},K=function(t,e,r,a){var i,s=D(t,e);if(s)i=s;else if(e)i=C;else if(P)if(t.parent){var l=z||r;l&&!e?i=L(t,l,a):(i={},o.extendFlat(i,J(t,e)))}else i=t;else i={};return n.interpolate(i,{x0:t.x0,x1:t.x1,y0:t.y0,y1:t.y1})},Q=function(t,e,r,a){var s=D(t,e),l={},c=R(t,e,r,a);return o.extendFlat(l,{transform:Z({x0:c.x0,x1:c.x1,y0:c.y0,y1:c.y1,textBB:t.textBB,_text:t._text},{isHeader:i.isHeader(t,g)})}),s?l=s:t.parent&&o.extendFlat(l,J(t,e)),n.interpolate(l,{transform:{scale:t.transform.scale,rotate:t.transform.rotate,textX:t.transform.textX,textY:t.transform.textY,targetX:t.transform.targetX,targetY:t.transform.targetY}})},$=function(t,e,r,a,i){var o=a[0],s=a[1];m?t.exit().transition().each(function(){var t=n.select(this);t.select(\"path.surface\").transition().attrTween(\"d\",function(t){var r=function(t,e,r,a){var i,o=D(t,e);if(e)i=C;else{var s=D(y,e);i=s?L(t,s,a):{}}return n.interpolate(o,i)}(t,e,0,[o,s]);return function(t){return i(r(t))}}),t.select(\"g.slicetext\").attr(\"opacity\",0)}).remove():t.exit().remove()},tt=function(t){return o.getTextTransform({textX:t.transform.textX,textY:t.transform.textY,targetX:t.transform.targetX,targetY:t.transform.targetY,scale:t.transform.scale,rotate:t.transform.rotate})},et=n.select(r),rt=et.selectAll(\"g.pathbar\"),nt=et.selectAll(\"g.slice\");if(!y)return rt.remove(),void nt.remove();m&&(rt.each(function(t){O[f(t)]={x0:t.x0,x1:t.x1,y0:t.y0,y1:t.y1},t.transform&&(O[f(t)].transform={textX:t.transform.textX,textY:t.transform.textY,targetX:t.transform.targetX,targetY:t.transform.targetY,scale:t.transform.scale,rotate:t.transform.rotate})}),nt.each(function(t){I[f(t)]={x0:t.x0,x1:t.x1,y0:t.y0,y1:t.y1},t.transform&&(I[f(t)].transform={textX:t.transform.textX,textY:t.transform.textY,targetX:t.transform.targetX,targetY:t.transform.targetY,scale:t.transform.scale,rotate:t.transform.rotate}),!P&&i.isEntry(t)&&(P=t)})),z=u(t,e,y,nt,{width:k,height:T,viewX:N,viewY:j,pathSlice:function(t){var e=N(t.x0),r=N(t.x1),n=j(t.y0),a=j(t.y1),i=r-e,o=a-n;if(!i||!o)return\"\";return\"M\"+G(e,n+0)+\"L\"+G(r-0,n)+\"L\"+G(r,a-0)+\"L\"+G(e+0,a)+\"Z\"},toMoveInsideSlice:Z,prevEntry:P,makeUpdateSliceInterpolator:K,makeUpdateTextInterpolator:Q,handleSlicesExit:$,hasTransition:m,strTransform:tt}),g.pathbar.visible&&h(t,e,y,rt,{barDifY:E,width:A,height:M,viewX:q,viewY:H,pathSlice:function(t){var e=q(Math.max(Math.min(t.x0,t.x0),0)),r=q(Math.min(Math.max(t.x1,t.x1),A)),n=H(t.y0),a=H(t.y1),i=M/2,o={},s={};o.x=e,s.x=r,o.y=s.y=(n+a)/2;var l={x:e,y:n},c={x:r,y:n},u={x:r,y:a},h={x:e,y:a};return\">\"===X?(l.x-=i,c.x-=i,u.x-=i,h.x-=i):\"/\"===X?(u.x-=i,h.x-=i,o.x-=i/2,s.x-=i/2):\"\\\\\"===X?(l.x-=i,c.x-=i,o.x-=i/2,s.x-=i/2):\"<\"===X&&(o.x-=i,s.x-=i),W(l),W(h),W(o),W(c),W(u),W(s),\"M\"+G(l.x,l.y)+\"L\"+G(c.x,c.y)+\"L\"+G(s.x,s.y)+\"L\"+G(u.x,u.y)+\"L\"+G(h.x,h.y)+\"L\"+G(o.x,o.y)+\"Z\"},toMoveInsideSlice:Z,makeUpdateSliceInterpolator:K,makeUpdateTextInterpolator:Q,handleSlicesExit:$,hasTransition:m,strTransform:tt})}e.exports=function(t,e,r,i){var o,s,l=t._fullLayout._treemaplayer,c=!r;((o=l.selectAll(\"g.trace.treemap\").data(e,function(t){return t[0].trace.uid})).enter().append(\"g\").classed(\"trace\",!0).classed(\"treemap\",!0),o.order(),a(r))?(i&&(s=i()),n.transition().duration(r.duration).ease(r.easing).each(\"end\",function(){s&&s()}).each(\"interrupt\",function(){s&&s()}).each(function(){l.selectAll(\"g.trace\").each(function(e){p(t,e,this,r)})})):o.each(function(e){p(t,e,this,r)});c&&o.exit().remove()}},{\"../../lib\":719,\"../bar/constants\":860,\"../bar/plot\":868,\"../sunburst/helpers\":1219,\"./constants\":1242,\"./draw_ancestors\":1244,\"./draw_descendants\":1245,d3:164}],1251:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/color\"),i=t(\"../../lib\"),o=t(\"../sunburst/helpers\");function s(t,e,r,n){var s,l,c=(n||{}).hovered,u=e.data.data,h=u.i,f=u.color,p=o.isHierarchyRoot(e),d=1;if(c)s=r._hovered.marker.line.color,l=r._hovered.marker.line.width;else if(p&&\"rgba(0,0,0,0)\"===f)d=0,s=\"rgba(0,0,0,0)\",l=0;else if(s=i.castOption(r,h,\"marker.line.color\")||a.defaultLine,l=i.castOption(r,h,\"marker.line.width\")||0,!r._hasColorscale&&!e.onPathbar){var g=r.marker.depthfade;if(g){var v,m=a.combine(a.addOpacity(r._backgroundColor,.75),f);if(!0===g){var y=o.getMaxDepth(r);v=isFinite(y)?o.isLeaf(e)?0:r._maxVisibleLayers-(e.data.depth-r._entryDepth):e.data.height+1}else v=e.data.depth-r._entryDepth,r._atRootLevel||v++;if(v>0)for(var x=0;x<v;x++){var b=.5*x/v;f=a.combine(a.addOpacity(m,b),f)}}}t.style(\"stroke-width\",l).call(a.fill,f).call(a.stroke,s).style(\"opacity\",d)}e.exports={style:function(t){t._fullLayout._treemaplayer.selectAll(\".trace\").each(function(t){var e=n.select(this),r=t[0].trace;e.style(\"opacity\",r.opacity),e.selectAll(\"path.surface\").each(function(t){n.select(this).call(s,t,r,{hovered:!1})})})},styleOne:s}},{\"../../components/color\":594,\"../../lib\":719,\"../sunburst/helpers\":1219,d3:164}],1252:[function(t,e,r){\"use strict\";var n=t(\"../box/attributes\"),a=t(\"../../lib/extend\").extendFlat;e.exports={y:n.y,x:n.x,x0:n.x0,y0:n.y0,name:a({},n.name,{}),orientation:a({},n.orientation,{}),bandwidth:{valType:\"number\",min:0,editType:\"calc\"},scalegroup:{valType:\"string\",dflt:\"\",editType:\"calc\"},scalemode:{valType:\"enumerated\",values:[\"width\",\"count\"],dflt:\"width\",editType:\"calc\"},spanmode:{valType:\"enumerated\",values:[\"soft\",\"hard\",\"manual\"],dflt:\"soft\",editType:\"calc\"},span:{valType:\"info_array\",items:[{valType:\"any\",editType:\"calc\"},{valType:\"any\",editType:\"calc\"}],editType:\"calc\"},line:{color:{valType:\"color\",editType:\"style\"},width:{valType:\"number\",min:0,dflt:2,editType:\"style\"},editType:\"plot\"},fillcolor:n.fillcolor,points:a({},n.boxpoints,{}),jitter:a({},n.jitter,{}),pointpos:a({},n.pointpos,{}),width:a({},n.width,{}),marker:n.marker,text:n.text,hovertext:n.hovertext,hovertemplate:n.hovertemplate,box:{visible:{valType:\"boolean\",dflt:!1,editType:\"plot\"},width:{valType:\"number\",min:0,max:1,dflt:.25,editType:\"plot\"},fillcolor:{valType:\"color\",editType:\"style\"},line:{color:{valType:\"color\",editType:\"style\"},width:{valType:\"number\",min:0,editType:\"style\"},editType:\"style\"},editType:\"plot\"},meanline:{visible:{valType:\"boolean\",dflt:!1,editType:\"plot\"},color:{valType:\"color\",editType:\"style\"},width:{valType:\"number\",min:0,editType:\"style\"},editType:\"plot\"},side:{valType:\"enumerated\",values:[\"both\",\"positive\",\"negative\"],dflt:\"both\",editType:\"calc\"},offsetgroup:n.offsetgroup,alignmentgroup:n.alignmentgroup,selected:n.selected,unselected:n.unselected,hoveron:{valType:\"flaglist\",flags:[\"violins\",\"points\",\"kde\"],dflt:\"violins+points+kde\",extras:[\"all\"],editType:\"style\"}}},{\"../../lib/extend\":710,\"../box/attributes\":881}],1253:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"../box/calc\"),o=t(\"./helpers\"),s=t(\"../../constants/numerical\").BADNUM;function l(t,e,r){var a=e.max-e.min;if(!a)return t.bandwidth?t.bandwidth:0;if(t.bandwidth)return Math.max(t.bandwidth,a/1e4);var i=r.length,o=n.stdev(r,i-1,e.mean);return Math.max(function(t,e,r){return 1.059*Math.min(e,r/1.349)*Math.pow(t,-.2)}(i,o,e.q3-e.q1),a/100)}function c(t,e,r,n){var i,o=t.spanmode,l=t.span||[],c=[e.min,e.max],u=[e.min-2*n,e.max+2*n];function h(n){var a=l[n],i=\"multicategory\"===r.type?r.r2c(a):r.d2c(a,0,t[e.valLetter+\"calendar\"]);return i===s?u[n]:i}var f={type:\"linear\",range:i=\"soft\"===o?u:\"hard\"===o?c:[h(0),h(1)]};return a.setConvert(f),f.cleanRange(),i}e.exports=function(t,e){var r=i(t,e);if(r[0].t.empty)return r;for(var s=t._fullLayout,u=a.getFromId(t,e[\"h\"===e.orientation?\"xaxis\":\"yaxis\"]),h=1/0,f=-1/0,p=0,d=0,g=0;g<r.length;g++){var v=r[g],m=v.pts.map(o.extractVal),y=v.bandwidth=l(e,v,m),x=v.span=c(e,v,u,y);if(v.min===v.max&&0===y)x=v.span=[v.min,v.max],v.density=[{v:1,t:x[0]}],v.bandwidth=y,p=Math.max(p,1);else{var b=x[1]-x[0],_=Math.ceil(b/(y/3)),w=b/_;if(!isFinite(w)||!isFinite(_))return n.error(\"Something went wrong with computing the violin span\"),r[0].t.empty=!0,r;var k=o.makeKDE(v,e,m);v.density=new Array(_);for(var T=0,A=x[0];A<x[1]+w/2;T++,A+=w){var M=k(A);v.density[T]={v:M,t:A},p=Math.max(p,M)}}d=Math.max(d,m.length),h=Math.min(h,x[0]),f=Math.max(f,x[1])}var S=a.findExtremes(u,[h,f],{padded:!0});if(e._extremes[u._id]=S,e.width)r[0].t.maxKDE=p;else{var E=s._violinScaleGroupStats,C=e.scalegroup,L=E[C];L?(L.maxKDE=Math.max(L.maxKDE,p),L.maxCount=Math.max(L.maxCount,d)):E[C]={maxKDE:p,maxCount:d}}return r[0].t.labels.kde=n._(t,\"kde:\"),r}},{\"../../constants/numerical\":695,\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../box/calc\":882,\"./helpers\":1256}],1254:[function(t,e,r){\"use strict\";var n=t(\"../box/cross_trace_calc\").setPositionOffset,a=[\"v\",\"h\"];e.exports=function(t,e){for(var r=t.calcdata,i=e.xaxis,o=e.yaxis,s=0;s<a.length;s++){for(var l=a[s],c=\"h\"===l?o:i,u=[],h=0;h<r.length;h++){var f=r[h],p=f[0].t,d=f[0].trace;!0!==d.visible||\"violin\"!==d.type||p.empty||d.orientation!==l||d.xaxis!==i._id||d.yaxis!==o._id||u.push(h)}n(\"violin\",t,u,c)}}},{\"../box/cross_trace_calc\":883}],1255:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/color\"),i=t(\"../box/defaults\"),o=t(\"./attributes\");e.exports=function(t,e,r,s){function l(r,a){return n.coerce(t,e,o,r,a)}function c(r,a){return n.coerce2(t,e,o,r,a)}if(i.handleSampleDefaults(t,e,l,s),!1!==e.visible){l(\"bandwidth\"),l(\"side\"),l(\"width\")||(l(\"scalegroup\",e.name),l(\"scalemode\"));var u,h=l(\"span\");Array.isArray(h)&&(u=\"manual\"),l(\"spanmode\",u);var f=l(\"line.color\",(t.marker||{}).color||r),p=l(\"line.width\"),d=l(\"fillcolor\",a.addOpacity(e.line.color,.5));i.handlePointsDefaults(t,e,l,{prefix:\"\"});var g=c(\"box.width\"),v=c(\"box.fillcolor\",d),m=c(\"box.line.color\",f),y=c(\"box.line.width\",p);l(\"box.visible\",Boolean(g||v||m||y))||(e.box={visible:!1});var x=c(\"meanline.color\",f),b=c(\"meanline.width\",p);l(\"meanline.visible\",Boolean(x||b))||(e.meanline={visible:!1})}}},{\"../../components/color\":594,\"../../lib\":719,\"../box/defaults\":884,\"./attributes\":1252}],1256:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=function(t){return 1/Math.sqrt(2*Math.PI)*Math.exp(-.5*t*t)};r.makeKDE=function(t,e,r){var n=r.length,i=a,o=t.bandwidth,s=1/(n*o);return function(t){for(var e=0,a=0;a<n;a++)e+=i((t-r[a])/o);return s*e}},r.getPositionOnKdePath=function(t,e,r){var a,i;\"h\"===e.orientation?(a=\"y\",i=\"x\"):(a=\"x\",i=\"y\");var o=n.findPointOnPath(t.path,r,i,{pathLength:t.pathLength}),s=t.posCenterPx,l=o[a];return[l,\"both\"===e.side?2*s-l:s]},r.getKdeValue=function(t,e,n){var a=t.pts.map(r.extractVal);return r.makeKDE(t,e,a)(n)/t.posDensityScale},r.extractVal=function(t){return t.v}},{\"../../lib\":719}],1257:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"../box/hover\"),o=t(\"./helpers\");e.exports=function(t,e,r,s,l){var c,u,h=t.cd,f=h[0].trace,p=f.hoveron,d=-1!==p.indexOf(\"violins\"),g=-1!==p.indexOf(\"kde\"),v=[];if(d||g){var m=i.hoverOnBoxes(t,e,r,s);if(g&&m.length>0){var y,x,b,_,w,k=t.xa,T=t.ya;\"h\"===f.orientation?(w=e,y=\"y\",b=T,x=\"x\",_=k):(w=r,y=\"x\",b=k,x=\"y\",_=T);var A=h[t.index];if(w>=A.span[0]&&w<=A.span[1]){var M=n.extendFlat({},t),S=_.c2p(w,!0),E=o.getKdeValue(A,f,w),C=o.getPositionOnKdePath(A,f,S),L=b._offset,P=b._length;M[y+\"0\"]=C[0],M[y+\"1\"]=C[1],M[x+\"0\"]=M[x+\"1\"]=S,M[x+\"Label\"]=x+\": \"+a.hoverLabelText(_,w)+\", \"+h[0].t.labels.kde+\" \"+E.toFixed(3),M.spikeDistance=m[0].spikeDistance;var O=y+\"Spike\";M[O]=m[0][O],m[0].spikeDistance=void 0,m[0][O]=void 0,M.hovertemplate=!1,v.push(M),(u={stroke:t.color})[y+\"1\"]=n.constrain(L+C[0],L,L+P),u[y+\"2\"]=n.constrain(L+C[1],L,L+P),u[x+\"1\"]=u[x+\"2\"]=_._offset+S}}d&&(v=v.concat(m))}-1!==p.indexOf(\"points\")&&(c=i.hoverOnPoints(t,e,r));var I=l.selectAll(\".violinline-\"+f.uid).data(u?[0]:[]);return I.enter().append(\"line\").classed(\"violinline-\"+f.uid,!0).attr(\"stroke-width\",1.5),I.exit().remove(),I.attr(u),\"closest\"===s?c?[c]:v:c?(v.push(c),v):v}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../box/hover\":886,\"./helpers\":1256}],1258:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\"),crossTraceDefaults:t(\"../box/defaults\").crossTraceDefaults,supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\"),crossTraceCalc:t(\"./cross_trace_calc\"),plot:t(\"./plot\"),style:t(\"./style\"),styleOnSelect:t(\"../scatter/style\").styleOnSelect,hoverPoints:t(\"./hover\"),selectPoints:t(\"../box/select\"),moduleType:\"trace\",name:\"violin\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"symbols\",\"oriented\",\"box-violin\",\"showLegend\",\"violinLayout\",\"zoomScale\"],meta:{}}},{\"../../plots/cartesian\":778,\"../box/defaults\":884,\"../box/select\":891,\"../scatter/style\":1133,\"./attributes\":1252,\"./calc\":1253,\"./cross_trace_calc\":1254,\"./defaults\":1255,\"./hover\":1257,\"./layout_attributes\":1259,\"./layout_defaults\":1260,\"./plot\":1261,\"./style\":1262}],1259:[function(t,e,r){\"use strict\";var n=t(\"../box/layout_attributes\"),a=t(\"../../lib\").extendFlat;e.exports={violinmode:a({},n.boxmode,{}),violingap:a({},n.boxgap,{}),violingroupgap:a({},n.boxgroupgap,{})}},{\"../../lib\":719,\"../box/layout_attributes\":888}],1260:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./layout_attributes\"),i=t(\"../box/layout_defaults\");e.exports=function(t,e,r){i._supply(t,e,r,function(r,i){return n.coerce(t,e,a,r,i)},\"violin\")}},{\"../../lib\":719,\"../box/layout_defaults\":889,\"./layout_attributes\":1259}],1261:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../lib\"),i=t(\"../../components/drawing\"),o=t(\"../box/plot\"),s=t(\"../scatter/line_points\"),l=t(\"./helpers\");e.exports=function(t,e,r,c){var u=t._fullLayout,h=e.xaxis,f=e.yaxis;function p(t){var e=s(t,{xaxis:h,yaxis:f,connectGaps:!0,baseTolerance:.75,shape:\"spline\",simplify:!0});return i.smoothopen(e[0],1)}a.makeTraceGroups(c,r,\"trace violins\").each(function(t){var r=n.select(this),i=t[0],s=i.t,c=i.trace;if(!0!==c.visible||s.empty)r.remove();else{var d=s.bPos,g=s.bdPos,v=e[s.valLetter+\"axis\"],m=e[s.posLetter+\"axis\"],y=\"both\"===c.side,x=y||\"positive\"===c.side,b=y||\"negative\"===c.side,_=r.selectAll(\"path.violin\").data(a.identity);_.enter().append(\"path\").style(\"vector-effect\",\"non-scaling-stroke\").attr(\"class\",\"violin\"),_.exit().remove(),_.each(function(t){var e,r,a,i,o,l,h,f,_=n.select(this),w=t.density,k=w.length,T=t.pos+d,A=m.c2p(T);if(c.width)e=s.maxKDE/g;else{var M=u._violinScaleGroupStats[c.scalegroup];e=\"count\"===c.scalemode?M.maxKDE/g*(M.maxCount/t.pts.length):M.maxKDE/g}if(x){for(h=new Array(k),o=0;o<k;o++)(f=h[o]={})[s.posLetter]=T+w[o].v/e,f[s.valLetter]=w[o].t;r=p(h)}if(b){for(h=new Array(k),l=0,o=k-1;l<k;l++,o--)(f=h[l]={})[s.posLetter]=T-w[o].v/e,f[s.valLetter]=w[o].t;a=p(h)}if(y)i=r+\"L\"+a.substr(1)+\"Z\";else{var S=[A,v.c2p(w[0].t)],E=[A,v.c2p(w[k-1].t)];\"h\"===c.orientation&&(S.reverse(),E.reverse()),i=x?\"M\"+S+\"L\"+r.substr(1)+\"L\"+E:\"M\"+E+\"L\"+a.substr(1)+\"L\"+S}_.attr(\"d\",i),t.posCenterPx=A,t.posDensityScale=e*g,t.path=_.node(),t.pathLength=t.path.getTotalLength()/(y?2:1)});var w,k,T,A=c.box,M=A.width,S=(A.line||{}).width;y?(w=g*M,k=0):x?(w=[0,g*M/2],k=-S):(w=[g*M/2,0],k=S),o.plotBoxAndWhiskers(r,{pos:m,val:v},c,{bPos:d,bdPos:w,bPosPxOffset:k}),o.plotBoxMean(r,{pos:m,val:v},c,{bPos:d,bdPos:w,bPosPxOffset:k}),!c.box.visible&&c.meanline.visible&&(T=a.identity);var E=r.selectAll(\"path.meanline\").data(T||[]);E.enter().append(\"path\").attr(\"class\",\"meanline\").style(\"fill\",\"none\").style(\"vector-effect\",\"non-scaling-stroke\"),E.exit().remove(),E.each(function(t){var e=v.c2p(t.mean,!0),r=l.getPositionOnKdePath(t,c,e);n.select(this).attr(\"d\",\"h\"===c.orientation?\"M\"+e+\",\"+r[0]+\"V\"+r[1]:\"M\"+r[0]+\",\"+e+\"H\"+r[1])}),o.plotPoints(r,{x:h,y:f},c,s)}})}},{\"../../components/drawing\":615,\"../../lib\":719,\"../box/plot\":890,\"../scatter/line_points\":1124,\"./helpers\":1256,d3:164}],1262:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/color\"),i=t(\"../scatter/style\").stylePoints;e.exports=function(t){var e=n.select(t).selectAll(\"g.trace.violins\");e.style(\"opacity\",function(t){return t[0].trace.opacity}),e.each(function(e){var r=e[0].trace,o=n.select(this),s=r.box||{},l=s.line||{},c=r.meanline||{},u=c.width;o.selectAll(\"path.violin\").style(\"stroke-width\",r.line.width+\"px\").call(a.stroke,r.line.color).call(a.fill,r.fillcolor),o.selectAll(\"path.box\").style(\"stroke-width\",l.width+\"px\").call(a.stroke,l.color).call(a.fill,s.fillcolor);var h={\"stroke-width\":u+\"px\",\"stroke-dasharray\":2*u+\"px,\"+u+\"px\"};o.selectAll(\"path.mean\").style(h).call(a.stroke,c.color),o.selectAll(\"path.meanline\").style(h).call(a.stroke,c.color),i(o,r,t)})}},{\"../../components/color\":594,\"../scatter/style\":1133,d3:164}],1263:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/attributes\"),a=t(\"../isosurface/attributes\"),i=t(\"../../plots/attributes\"),o=t(\"../../lib/extend\").extendFlat,s=t(\"../../plot_api/edit_types\").overrideAll,l=e.exports=s(o({x:a.x,y:a.y,z:a.z,value:a.value,isomin:a.isomin,isomax:a.isomax,surface:a.surface,spaceframe:{show:{valType:\"boolean\",dflt:!1},fill:{valType:\"number\",min:0,max:1,dflt:1}},slices:a.slices,caps:a.caps,text:a.text,hovertext:a.hovertext,hovertemplate:a.hovertemplate},n(\"\",{colorAttr:\"`value`\",showScaleDflt:!0,editTypeOverride:\"calc\"}),{colorbar:a.colorbar,opacity:a.opacity,opacityscale:{valType:\"any\",editType:\"calc\"},lightposition:a.lightposition,lighting:a.lighting,flatshading:a.flatshading,contour:a.contour,hoverinfo:o({},i.hoverinfo)}),\"calc\",\"nested\");l.x.editType=l.y.editType=l.z.editType=l.value.editType=\"calc+clearAxisTypes\",l.transforms=void 0},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../../plots/attributes\":764,\"../isosurface/attributes\":1047}],1264:[function(t,e,r){\"use strict\";var n=t(\"gl-mesh3d\"),a=t(\"../../lib/gl_format_color\").parseColorScale,i=t(\"../../lib/str2rgbarray\"),o=t(\"../../components/colorscale\").extractOpts,s=t(\"../../plots/gl3d/zip3\"),l=t(\"../isosurface/convert\").findNearestOnAxis,c=t(\"../isosurface/convert\").generateIsoMeshes;function u(t,e,r){this.scene=t,this.uid=r,this.mesh=e,this.name=\"\",this.data=null,this.showContour=!1}var h=u.prototype;h.handlePick=function(t){if(t.object===this.mesh){var e=t.data.index,r=this.data._x[e],n=this.data._y[e],a=this.data._z[e],i=this.data._Ys.length,o=this.data._Zs.length,s=l(r,this.data._Xs).id,c=l(n,this.data._Ys).id,u=l(a,this.data._Zs).id,h=t.index=u+o*c+o*i*s;t.traceCoordinate=[this.data._x[h],this.data._y[h],this.data._z[h],this.data.value[h]];var f=this.data.hovertext||this.data.text;return Array.isArray(f)&&void 0!==f[h]?t.textLabel=f[h]:f&&(t.textLabel=f),!0}},h.update=function(t){var e=this.scene,r=e.fullSceneLayout;function n(t,e,r,n){return e.map(function(e){return t.d2l(e,0,n)*r})}this.data=c(t);var l={positions:s(n(r.xaxis,t._x,e.dataScale[0],t.xcalendar),n(r.yaxis,t._y,e.dataScale[1],t.ycalendar),n(r.zaxis,t._z,e.dataScale[2],t.zcalendar)),cells:s(t._i,t._j,t._k),lightPosition:[t.lightposition.x,t.lightposition.y,t.lightposition.z],ambient:t.lighting.ambient,diffuse:t.lighting.diffuse,specular:t.lighting.specular,roughness:t.lighting.roughness,fresnel:t.lighting.fresnel,vertexNormalsEpsilon:t.lighting.vertexnormalsepsilon,faceNormalsEpsilon:t.lighting.facenormalsepsilon,opacity:t.opacity,opacityscale:t.opacityscale,contourEnable:t.contour.show,contourColor:i(t.contour.color).slice(0,3),contourWidth:t.contour.width,useFacetNormals:t.flatshading},u=o(t);l.vertexIntensity=t._intensity,l.vertexIntensityBounds=[u.min,u.max],l.colormap=a(t),this.mesh.update(l)},h.dispose=function(){this.scene.glplot.remove(this.mesh),this.mesh.dispose()},e.exports=function(t,e){var r=t.glplot.gl,a=n({gl:r}),i=new u(t,a,e.uid);return a._trace=i,i.update(e),t.glplot.add(a),i}},{\"../../components/colorscale\":606,\"../../lib/gl_format_color\":716,\"../../lib/str2rgbarray\":742,\"../../plots/gl3d/zip3\":818,\"../isosurface/convert\":1049,\"gl-mesh3d\":281}],1265:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./attributes\"),i=t(\"../isosurface/defaults\").supplyIsoDefaults;e.exports=function(t,e,r,o){function s(r,i){return n.coerce(t,e,a,r,i)}i(t,e,r,o,s);var l=s(\"opacityscale\");\"max\"===l?e.opacityscale=[[0,.1],[1,1]]:\"min\"===l?e.opacityscale=[[0,1],[1,.1]]:\"extremes\"===l?e.opacityscale=function(t,e){for(var r=[],n=0;n<32;n++){var a=n/31,i=e+(1-e)*(1-Math.pow(Math.sin(t*a*Math.PI),2));r.push([a,Math.max(1,Math.min(0,i))])}return r}(1,.1):function(t){var e=0;if(!Array.isArray(t)||t.length<2)return!1;if(!t[0]||!t[t.length-1])return!1;if(0!=+t[0][0]||1!=+t[t.length-1][0])return!1;for(var r=0;r<t.length;r++){var n=t[r];if(2!==n.length||+n[0]<e)return!1;e=+n[0]}return!0}(l)||(e.opacityscale=void 0)}},{\"../../lib\":719,\"../isosurface/defaults\":1050,\"./attributes\":1263}],1266:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"../isosurface/calc\"),colorbar:{min:\"cmin\",max:\"cmax\"},plot:t(\"./convert\"),moduleType:\"trace\",name:\"volume\",basePlotModule:t(\"../../plots/gl3d\"),categories:[\"gl3d\"],meta:{}}},{\"../../plots/gl3d\":807,\"../isosurface/calc\":1048,\"./attributes\":1263,\"./convert\":1264,\"./defaults\":1265}],1267:[function(t,e,r){\"use strict\";var n=t(\"../bar/attributes\"),a=t(\"../scatter/attributes\").line,i=t(\"../../plots/attributes\"),o=t(\"../../plots/template_attributes\").hovertemplateAttrs,s=t(\"../../plots/template_attributes\").texttemplateAttrs,l=t(\"./constants\"),c=t(\"../../lib/extend\").extendFlat,u=t(\"../../components/color\");function h(t){return{marker:{color:c({},n.marker.color,{arrayOk:!1,editType:\"style\"}),line:{color:c({},n.marker.line.color,{arrayOk:!1,editType:\"style\"}),width:c({},n.marker.line.width,{arrayOk:!1,editType:\"style\"}),editType:\"style\"},editType:\"style\"},editType:\"style\"}}e.exports={measure:{valType:\"data_array\",dflt:[],editType:\"calc\"},base:{valType:\"number\",dflt:null,arrayOk:!1,editType:\"calc\"},x:n.x,x0:n.x0,dx:n.dx,y:n.y,y0:n.y0,dy:n.dy,hovertext:n.hovertext,hovertemplate:o({},{keys:l.eventDataKeys}),hoverinfo:c({},i.hoverinfo,{flags:[\"name\",\"x\",\"y\",\"text\",\"initial\",\"delta\",\"final\"]}),textinfo:{valType:\"flaglist\",flags:[\"label\",\"text\",\"initial\",\"delta\",\"final\"],extras:[\"none\"],editType:\"plot\",arrayOk:!1},texttemplate:s({editType:\"plot\"},{keys:l.eventDataKeys.concat([\"label\"])}),text:n.text,textposition:n.textposition,insidetextanchor:n.insidetextanchor,textangle:n.textangle,textfont:n.textfont,insidetextfont:n.insidetextfont,outsidetextfont:n.outsidetextfont,constraintext:n.constraintext,cliponaxis:n.cliponaxis,orientation:n.orientation,offset:n.offset,width:n.width,increasing:h(),decreasing:h(),totals:h(),connector:{line:{color:c({},a.color,{dflt:u.defaultLine}),width:c({},a.width,{editType:\"plot\"}),dash:a.dash,editType:\"plot\"},mode:{valType:\"enumerated\",values:[\"spanning\",\"between\"],dflt:\"between\",editType:\"plot\"},visible:{valType:\"boolean\",dflt:!0,editType:\"plot\"},editType:\"plot\"},offsetgroup:n.offsetgroup,alignmentgroup:n.alignmentgroup}},{\"../../components/color\":594,\"../../lib/extend\":710,\"../../plots/attributes\":764,\"../../plots/template_attributes\":843,\"../bar/attributes\":858,\"../scatter/attributes\":1111,\"./constants\":1269}],1268:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),a=t(\"../../lib\").mergeArray,i=t(\"../scatter/calc_selection\"),o=t(\"../../constants/numerical\").BADNUM;function s(t){return\"a\"===t||\"absolute\"===t}function l(t){return\"t\"===t||\"total\"===t}e.exports=function(t,e){var r,c,u=n.getFromId(t,e.xaxis||\"x\"),h=n.getFromId(t,e.yaxis||\"y\");\"h\"===e.orientation?(r=u.makeCalcdata(e,\"x\"),c=h.makeCalcdata(e,\"y\")):(r=h.makeCalcdata(e,\"y\"),c=u.makeCalcdata(e,\"x\"));for(var f,p=Math.min(c.length,r.length),d=new Array(p),g=0,v=!1,m=0;m<p;m++){var y=r[m]||0,x=!1;(r[m]!==o||l(e.measure[m])||s(e.measure[m]))&&m+1<p&&(r[m+1]!==o||l(e.measure[m+1])||s(e.measure[m+1]))&&(x=!0);var b=d[m]={i:m,p:c[m],s:y,rawS:y,cNext:x};s(e.measure[m])?(g=b.s,b.isSum=!0,b.dir=\"totals\",b.s=g):l(e.measure[m])?(b.isSum=!0,b.dir=\"totals\",b.s=g):(b.isSum=!1,b.dir=b.rawS<0?\"decreasing\":\"increasing\",f=b.s,b.s=g+f,g+=f),\"totals\"===b.dir&&(v=!0),e.ids&&(b.id=String(e.ids[m])),b.v=(e.base||0)+g}return d.length&&(d[0].hasTotals=v),a(e.text,d,\"tx\"),a(e.hovertext,d,\"htx\"),i(d,e),d}},{\"../../constants/numerical\":695,\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../scatter/calc_selection\":1113}],1269:[function(t,e,r){\"use strict\";e.exports={eventDataKeys:[\"initial\",\"delta\",\"final\"]}},{}],1270:[function(t,e,r){\"use strict\";var n=t(\"../bar/cross_trace_calc\").setGroupPositions;e.exports=function(t,e){var r,a,i=t._fullLayout,o=t._fullData,s=t.calcdata,l=e.xaxis,c=e.yaxis,u=[],h=[],f=[];for(a=0;a<o.length;a++){var p=o[a];!0===p.visible&&p.xaxis===l._id&&p.yaxis===c._id&&\"waterfall\"===p.type&&(r=s[a],\"h\"===p.orientation?f.push(r):h.push(r),u.push(r))}var d={mode:i.waterfallmode,norm:i.waterfallnorm,gap:i.waterfallgap,groupgap:i.waterfallgroupgap};for(n(t,l,c,h,d),n(t,c,l,f,d),a=0;a<u.length;a++){r=u[a];for(var g=0;g<r.length;g++){var v=r[g];!1===v.isSum&&(v.s0+=0===g?0:r[g-1].s),g+1<r.length&&(r[g].nextP0=r[g+1].p0,r[g].nextS0=r[g+1].s0)}}}},{\"../bar/cross_trace_calc\":861}],1271:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../bar/defaults\").handleGroupingDefaults,i=t(\"../bar/defaults\").handleText,o=t(\"../scatter/xy_defaults\"),s=t(\"./attributes\"),l=t(\"../../components/color\"),c=t(\"../../constants/delta.js\"),u=c.INCREASING.COLOR,h=c.DECREASING.COLOR,f=\"#4499FF\";function p(t,e,r){t(e+\".marker.color\",r),t(e+\".marker.line.color\",l.defaultLine),t(e+\".marker.line.width\")}e.exports={supplyDefaults:function(t,e,r,a){function l(r,a){return n.coerce(t,e,s,r,a)}if(o(t,e,a,l)){l(\"measure\"),l(\"orientation\",e.x&&!e.y?\"h\":\"v\"),l(\"base\"),l(\"offset\"),l(\"width\"),l(\"text\"),l(\"hovertext\"),l(\"hovertemplate\");var c=l(\"textposition\");i(t,e,a,l,c,{moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!0,moduleHasCliponaxis:!0,moduleHasTextangle:!0,moduleHasInsideanchor:!0}),\"none\"!==e.textposition&&(l(\"texttemplate\"),e.texttemplate||l(\"textinfo\")),p(l,\"increasing\",u),p(l,\"decreasing\",h),p(l,\"totals\",f),l(\"connector.visible\")&&(l(\"connector.mode\"),l(\"connector.line.width\")&&(l(\"connector.line.color\"),l(\"connector.line.dash\")))}else e.visible=!1},crossTraceDefaults:function(t,e){var r,i;function o(t){return n.coerce(i._input,i,s,t)}if(\"group\"===e.waterfallmode)for(var l=0;l<t.length;l++)r=(i=t[l])._input,a(r,i,e,o)}}},{\"../../components/color\":594,\"../../constants/delta.js\":689,\"../../lib\":719,\"../bar/defaults\":862,\"../scatter/xy_defaults\":1136,\"./attributes\":1267}],1272:[function(t,e,r){\"use strict\";e.exports=function(t,e){return t.x=\"xVal\"in e?e.xVal:e.x,t.y=\"yVal\"in e?e.yVal:e.y,\"initial\"in e&&(t.initial=e.initial),\"delta\"in e&&(t.delta=e.delta),\"final\"in e&&(t.final=e.final),e.xa&&(t.xaxis=e.xa),e.ya&&(t.yaxis=e.ya),t}},{}],1273:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\").hoverLabelText,a=t(\"../../components/color\").opacity,i=t(\"../bar/hover\").hoverOnBars,o=t(\"../../constants/delta.js\"),s=o.INCREASING.SYMBOL,l=o.DECREASING.SYMBOL;e.exports=function(t,e,r,o){var c=i(t,e,r,o);if(c){var u=c.cd,h=u[0].trace,f=\"h\"===h.orientation,p=f?t.xa:t.ya,d=u[c.index],g=d.isSum?d.b+d.s:d.rawS;if(!d.isSum){c.initial=d.b+d.s-g,c.delta=g,c.final=c.initial+c.delta;var v=w(Math.abs(c.delta));c.deltaLabel=g<0?\"(\"+v+\")\":v,c.finalLabel=w(c.final),c.initialLabel=w(c.initial)}var m=d.hi||h.hoverinfo,y=[];if(m&&\"none\"!==m&&\"skip\"!==m){var x=\"all\"===m,b=m.split(\"+\"),_=function(t){return x||-1!==b.indexOf(t)};d.isSum||(!_(\"final\")||_(f?\"x\":\"y\")||y.push(c.finalLabel),_(\"delta\")&&(g<0?y.push(c.deltaLabel+\" \"+l):y.push(c.deltaLabel+\" \"+s)),_(\"initial\")&&y.push(\"Initial: \"+c.initialLabel))}return y.length&&(c.extraText=y.join(\"<br>\")),c.color=function(t,e){var r=t[e.dir].marker,n=r.color,i=r.line.color,o=r.line.width;if(a(n))return n;if(a(i)&&o)return i}(h,d),[c]}function w(t){return n(p,t)}}},{\"../../components/color\":594,\"../../constants/delta.js\":689,\"../../plots/cartesian/axes\":767,\"../bar/hover\":864}],1274:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\").supplyDefaults,crossTraceDefaults:t(\"./defaults\").crossTraceDefaults,supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\"),crossTraceCalc:t(\"./cross_trace_calc\"),plot:t(\"./plot\"),style:t(\"./style\").style,hoverPoints:t(\"./hover\"),eventData:t(\"./event_data\"),selectPoints:t(\"../bar/select\"),moduleType:\"trace\",name:\"waterfall\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"bar-like\",\"cartesian\",\"svg\",\"oriented\",\"showLegend\",\"zoomScale\"],meta:{}}},{\"../../plots/cartesian\":778,\"../bar/select\":869,\"./attributes\":1267,\"./calc\":1268,\"./cross_trace_calc\":1270,\"./defaults\":1271,\"./event_data\":1272,\"./hover\":1273,\"./layout_attributes\":1275,\"./layout_defaults\":1276,\"./plot\":1277,\"./style\":1278}],1275:[function(t,e,r){\"use strict\";e.exports={waterfallmode:{valType:\"enumerated\",values:[\"group\",\"overlay\"],dflt:\"group\",editType:\"calc\"},waterfallgap:{valType:\"number\",min:0,max:1,editType:\"calc\"},waterfallgroupgap:{valType:\"number\",min:0,max:1,dflt:0,editType:\"calc\"}}},{}],1276:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./layout_attributes\");e.exports=function(t,e,r){var i=!1;function o(r,i){return n.coerce(t,e,a,r,i)}for(var s=0;s<r.length;s++){var l=r[s];if(l.visible&&\"waterfall\"===l.type){i=!0;break}}i&&(o(\"waterfallmode\"),o(\"waterfallgap\",.2),o(\"waterfallgroupgap\"))}},{\"../../lib\":719,\"./layout_attributes\":1275}],1277:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../lib\"),i=t(\"../../components/drawing\"),o=t(\"../bar/plot\").plot;e.exports=function(t,e,r,s){var l=t._fullLayout;o(t,e,r,s,{mode:l.waterfallmode,norm:l.waterfallmode,gap:l.waterfallgap,groupgap:l.waterfallgroupgap}),function(t,e,r,o){var s=e.xaxis,l=e.yaxis;a.makeTraceGroups(o,r,\"trace bars\").each(function(r){var o=n.select(this),c=r[0].trace,u=a.ensureSingle(o,\"g\",\"lines\");if(c.connector&&c.connector.visible){var h=\"h\"===c.orientation,f=c.connector.mode,p=u.selectAll(\"g.line\").data(a.identity);p.enter().append(\"g\").classed(\"line\",!0),p.exit().remove();var d=p.size();p.each(function(r,o){if(o===d-1||r.cNext){var c=function(t,e,r,n){var a=[],i=[],o=n?e:r,s=n?r:e;return a[0]=o.c2p(t.s0,!0),i[0]=s.c2p(t.p0,!0),a[1]=o.c2p(t.s1,!0),i[1]=s.c2p(t.p1,!0),a[2]=o.c2p(t.nextS0,!0),i[2]=s.c2p(t.nextP0,!0),n?[a,i]:[i,a]}(r,s,l,h),u=c[0],p=c[1],g=\"\";\"spanning\"===f&&!r.isSum&&o>0&&(g+=h?\"M\"+u[0]+\",\"+p[1]+\"V\"+p[0]:\"M\"+u[1]+\",\"+p[0]+\"H\"+u[0]),\"between\"!==f&&(r.isSum||o<d-1)&&(g+=h?\"M\"+u[1]+\",\"+p[0]+\"V\"+p[1]:\"M\"+u[0]+\",\"+p[1]+\"H\"+u[1]),void 0!==u[2]&&void 0!==p[2]&&(g+=h?\"M\"+u[1]+\",\"+p[1]+\"V\"+p[2]:\"M\"+u[1]+\",\"+p[1]+\"H\"+u[2]),\"\"===g&&(g=\"M0,0Z\"),a.ensureSingle(n.select(this),\"path\").attr(\"d\",g).call(i.setClipUrl,e.layerClipId,t)}})}else u.remove()})}(t,e,r,s)}},{\"../../components/drawing\":615,\"../../lib\":719,\"../bar/plot\":868,d3:164}],1278:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/drawing\"),i=t(\"../../components/color\"),o=t(\"../../constants/interactions\").DESELECTDIM,s=t(\"../bar/style\").styleTextPoints;e.exports={style:function(t,e,r){var l=r||n.select(t).selectAll(\"g.waterfalllayer\").selectAll(\"g.trace\");l.style(\"opacity\",function(t){return t[0].trace.opacity}),l.each(function(e){var r=n.select(this),l=e[0].trace;r.selectAll(\".point > path\").each(function(t){if(!t.isBlank){var e=l[t.dir].marker;n.select(this).call(i.fill,e.color).call(i.stroke,e.line.color).call(a.dashLine,e.line.dash,e.line.width).style(\"opacity\",l.selectedpoints&&!t.selected?o:1)}}),s(r,l,t),r.selectAll(\".lines\").each(function(){var t=l.connector.line;a.lineGroupStyle(n.select(this).selectAll(\"path\"),t.width,t.color,t.dash)})})}}},{\"../../components/color\":594,\"../../components/drawing\":615,\"../../constants/interactions\":694,\"../bar/style\":871,d3:164}],1279:[function(t,e,r){\"use strict\";var n=t(\"../plots/cartesian/axes\"),a=t(\"../lib\"),i=t(\"../plot_api/plot_schema\"),o=t(\"./helpers\").pointsAccessorFunction,s=t(\"../constants/numerical\").BADNUM;r.moduleType=\"transform\",r.name=\"aggregate\";var l=r.attributes={enabled:{valType:\"boolean\",dflt:!0,editType:\"calc\"},groups:{valType:\"string\",strict:!0,noBlank:!0,arrayOk:!0,dflt:\"x\",editType:\"calc\"},aggregations:{_isLinkedToArray:\"aggregation\",target:{valType:\"string\",editType:\"calc\"},func:{valType:\"enumerated\",values:[\"count\",\"sum\",\"avg\",\"median\",\"mode\",\"rms\",\"stddev\",\"min\",\"max\",\"first\",\"last\",\"change\",\"range\"],dflt:\"first\",editType:\"calc\"},funcmode:{valType:\"enumerated\",values:[\"sample\",\"population\"],dflt:\"sample\",editType:\"calc\"},enabled:{valType:\"boolean\",dflt:!0,editType:\"calc\"},editType:\"calc\"},editType:\"calc\"},c=l.aggregations;function u(t,e,r,i){if(i.enabled){for(var o=i.target,l=a.nestedProperty(e,o),c=l.get(),u=function(t,e){var r=t.func,n=e.d2c,a=e.c2d;switch(r){case\"count\":return h;case\"first\":return f;case\"last\":return p;case\"sum\":return function(t,e){for(var r=0,i=0;i<e.length;i++){var o=n(t[e[i]]);o!==s&&(r+=o)}return a(r)};case\"avg\":return function(t,e){for(var r=0,i=0,o=0;o<e.length;o++){var l=n(t[e[o]]);l!==s&&(r+=l,i++)}return i?a(r/i):s};case\"min\":return function(t,e){for(var r=1/0,i=0;i<e.length;i++){var o=n(t[e[i]]);o!==s&&(r=Math.min(r,o))}return r===1/0?s:a(r)};case\"max\":return function(t,e){for(var r=-1/0,i=0;i<e.length;i++){var o=n(t[e[i]]);o!==s&&(r=Math.max(r,o))}return r===-1/0?s:a(r)};case\"range\":return function(t,e){for(var r=1/0,i=-1/0,o=0;o<e.length;o++){var l=n(t[e[o]]);l!==s&&(r=Math.min(r,l),i=Math.max(i,l))}return i===-1/0||r===1/0?s:a(i-r)};case\"change\":return function(t,e){var r=n(t[e[0]]),i=n(t[e[e.length-1]]);return r===s||i===s?s:a(i-r)};case\"median\":return function(t,e){for(var r=[],i=0;i<e.length;i++){var o=n(t[e[i]]);o!==s&&r.push(o)}if(!r.length)return s;r.sort();var l=(r.length-1)/2;return a((r[Math.floor(l)]+r[Math.ceil(l)])/2)};case\"mode\":return function(t,e){for(var r={},i=0,o=s,l=0;l<e.length;l++){var c=n(t[e[l]]);if(c!==s){var u=r[c]=(r[c]||0)+1;u>i&&(i=u,o=c)}}return i?a(o):s};case\"rms\":return function(t,e){for(var r=0,i=0,o=0;o<e.length;o++){var l=n(t[e[o]]);l!==s&&(r+=l*l,i++)}return i?a(Math.sqrt(r/i)):s};case\"stddev\":return function(e,r){var a,i=0,o=0,l=1,c=s;for(a=0;a<r.length&&c===s;a++)c=n(e[r[a]]);if(c===s)return s;for(;a<r.length;a++){var u=n(e[r[a]]);if(u!==s){var h=u-c;i+=h,o+=h*h,l++}}var f=\"sample\"===t.funcmode?l-1:l;return f?Math.sqrt((o-i*i/l)/f):0}}}(i,n.getDataConversions(t,e,o,c)),d=new Array(r.length),g=0;g<r.length;g++)d[g]=u(c,r[g]);l.set(d),\"count\"===i.func&&a.pushUnique(e._arrayAttrs,o)}}function h(t,e){return e.length}function f(t,e){return t[e[0]]}function p(t,e){return t[e[e.length-1]]}r.supplyDefaults=function(t,e){var r,n={};function o(e,r){return a.coerce(t,n,l,e,r)}if(!o(\"enabled\"))return n;var s=i.findArrayAttributes(e),u={};for(r=0;r<s.length;r++)u[s[r]]=1;var h=o(\"groups\");if(!Array.isArray(h)){if(!u[h])return n.enabled=!1,n;u[h]=0}var f,p=t.aggregations||[],d=n.aggregations=new Array(p.length);function g(t,e){return a.coerce(p[r],f,c,t,e)}for(r=0;r<p.length;r++){f={_index:r};var v=g(\"target\"),m=g(\"func\");g(\"enabled\")&&v&&(u[v]||\"count\"===m&&void 0===u[v])?(\"stddev\"===m&&g(\"funcmode\"),u[v]=0,d[r]=f):d[r]={enabled:!1,_index:r}}for(r=0;r<s.length;r++)u[s[r]]&&d.push({target:s[r],func:c.func.dflt,enabled:!0,_index:-1});return n},r.calcTransform=function(t,e,r){if(r.enabled){var n=r.groups,i=a.getTargetArray(e,{target:n});if(i){var s,l,c,h,f={},p={},d=[],g=o(e.transforms,r),v=i.length;for(e._length&&(v=Math.min(v,e._length)),s=0;s<v;s++)void 0===(c=f[l=i[s]])?(f[l]=d.length,h=[s],d.push(h),p[f[l]]=g(s)):(d[c].push(s),p[f[l]]=(p[f[l]]||[]).concat(g(s)));r._indexToPoints=p;var m=r.aggregations;for(s=0;s<m.length;s++)u(t,e,d,m[s]);\"string\"==typeof n&&u(t,e,d,{target:n,func:\"first\",enabled:!0}),e._length=d.length}}}},{\"../constants/numerical\":695,\"../lib\":719,\"../plot_api/plot_schema\":756,\"../plots/cartesian/axes\":767,\"./helpers\":1282}],1280:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),a=t(\"../registry\"),i=t(\"../plots/cartesian/axes\"),o=t(\"./helpers\").pointsAccessorFunction,s=t(\"../constants/filter_ops\"),l=s.COMPARISON_OPS,c=s.INTERVAL_OPS,u=s.SET_OPS;r.moduleType=\"transform\",r.name=\"filter\",r.attributes={enabled:{valType:\"boolean\",dflt:!0,editType:\"calc\"},target:{valType:\"string\",strict:!0,noBlank:!0,arrayOk:!0,dflt:\"x\",editType:\"calc\"},operation:{valType:\"enumerated\",values:[].concat(l).concat(c).concat(u),dflt:\"=\",editType:\"calc\"},value:{valType:\"any\",dflt:0,editType:\"calc\"},preservegaps:{valType:\"boolean\",dflt:!1,editType:\"calc\"},editType:\"calc\"},r.supplyDefaults=function(t){var e={};function i(a,i){return n.coerce(t,e,r.attributes,a,i)}if(i(\"enabled\")){var o=i(\"target\");if(n.isArrayOrTypedArray(o)&&0===o.length)return e.enabled=!1,e;i(\"preservegaps\"),i(\"operation\"),i(\"value\");var s=a.getComponentMethod(\"calendars\",\"handleDefaults\");s(t,e,\"valuecalendar\",null),s(t,e,\"targetcalendar\",null)}return e},r.calcTransform=function(t,e,r){if(r.enabled){var a=n.getTargetArray(e,r);if(a){var s=r.target,h=a.length;e._length&&(h=Math.min(h,e._length));var f=r.targetcalendar,p=e._arrayAttrs,d=r.preservegaps;if(\"string\"==typeof s){var g=n.nestedProperty(e,s+\"calendar\").get();g&&(f=g)}var v,m,y=function(t,e,r){var n=t.operation,a=t.value,i=Array.isArray(a);function o(t){return-1!==t.indexOf(n)}var s,h=function(r){return e(r,0,t.valuecalendar)},f=function(t){return e(t,0,r)};o(l)?s=h(i?a[0]:a):o(c)?s=i?[h(a[0]),h(a[1])]:[h(a),h(a)]:o(u)&&(s=i?a.map(h):[h(a)]);switch(n){case\"=\":return function(t){return f(t)===s};case\"!=\":return function(t){return f(t)!==s};case\"<\":return function(t){return f(t)<s};case\"<=\":return function(t){return f(t)<=s};case\">\":return function(t){return f(t)>s};case\">=\":return function(t){return f(t)>=s};case\"[]\":return function(t){var e=f(t);return e>=s[0]&&e<=s[1]};case\"()\":return function(t){var e=f(t);return e>s[0]&&e<s[1]};case\"[)\":return function(t){var e=f(t);return e>=s[0]&&e<s[1]};case\"(]\":return function(t){var e=f(t);return e>s[0]&&e<=s[1]};case\"][\":return function(t){var e=f(t);return e<=s[0]||e>=s[1]};case\")(\":return function(t){var e=f(t);return e<s[0]||e>s[1]};case\"](\":return function(t){var e=f(t);return e<=s[0]||e>s[1]};case\")[\":return function(t){var e=f(t);return e<s[0]||e>=s[1]};case\"{}\":return function(t){return-1!==s.indexOf(f(t))};case\"}{\":return function(t){return-1===s.indexOf(f(t))}}}(r,i.getDataToCoordFunc(t,e,s,a),f),x={},b={},_=0;d?(v=function(t){x[t.astr]=n.extendDeep([],t.get()),t.set(new Array(h))},m=function(t,e){var r=x[t.astr][e];t.get()[e]=r}):(v=function(t){x[t.astr]=n.extendDeep([],t.get()),t.set([])},m=function(t,e){var r=x[t.astr][e];t.get().push(r)}),T(v);for(var w=o(e.transforms,r),k=0;k<h;k++){y(a[k])?(T(m,k),b[_++]=w(k)):d&&_++}r._indexToPoints=b,e._length=_}}function T(t,r){for(var a=0;a<p.length;a++){t(n.nestedProperty(e,p[a]),r)}}}},{\"../constants/filter_ops\":691,\"../lib\":719,\"../plots/cartesian/axes\":767,\"../registry\":848,\"./helpers\":1282}],1281:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),a=t(\"../plot_api/plot_schema\"),i=t(\"../plots/plots\"),o=t(\"./helpers\").pointsAccessorFunction;function s(t,e){var r,s,l,c,u,h,f,p,d,g,v=e.transform,m=e.transformIndex,y=t.transforms[m].groups,x=o(t.transforms,v);if(!Array.isArray(y)||0===y.length)return[t];var b=n.filterUnique(y),_=new Array(b.length),w=y.length,k=a.findArrayAttributes(t),T=v.styles||[],A={};for(r=0;r<T.length;r++)A[T[r].target]=T[r].value;v.styles&&(g=n.keyedContainer(v,\"styles\",\"target\",\"value.name\"));var M={},S={};for(r=0;r<b.length;r++){M[h=b[r]]=r,S[h]=0,(f=_[r]=n.extendDeepNoArrays({},t))._group=h,f.transforms[m]._indexToPoints={};var E=null;for(g&&(E=g.get(h)),f.name=E||\"\"===E?E:n.templateString(v.nameformat,{trace:t.name,group:h}),p=f.transforms,f.transforms=[],s=0;s<p.length;s++)f.transforms[s]=n.extendDeepNoArrays({},p[s]);for(s=0;s<k.length;s++)n.nestedProperty(f,k[s]).set([])}for(l=0;l<k.length;l++){for(c=k[l],s=0,d=[];s<b.length;s++)d[s]=n.nestedProperty(_[s],c).get();for(u=n.nestedProperty(t,c).get(),s=0;s<w;s++)d[M[y[s]]].push(u[s])}for(s=0;s<w;s++){(f=_[M[y[s]]]).transforms[m]._indexToPoints[S[y[s]]]=x(s),S[y[s]]++}for(r=0;r<b.length;r++)h=b[r],f=_[r],i.clearExpandedTraceDefaultColors(f),f=n.extendDeepNoArrays(f,A[h]||{});return _}r.moduleType=\"transform\",r.name=\"groupby\",r.attributes={enabled:{valType:\"boolean\",dflt:!0,editType:\"calc\"},groups:{valType:\"data_array\",dflt:[],editType:\"calc\"},nameformat:{valType:\"string\",editType:\"calc\"},styles:{_isLinkedToArray:\"style\",target:{valType:\"string\",editType:\"calc\"},value:{valType:\"any\",dflt:{},editType:\"calc\",_compareAsJSON:!0},editType:\"calc\"},editType:\"calc\"},r.supplyDefaults=function(t,e,a){var i,o={};function s(e,a){return n.coerce(t,o,r.attributes,e,a)}if(!s(\"enabled\"))return o;s(\"groups\"),s(\"nameformat\",a._dataLength>1?\"%{group} (%{trace})\":\"%{group}\");var l=t.styles,c=o.styles=[];if(l)for(i=0;i<l.length;i++){var u=c[i]={};n.coerce(l[i],c[i],r.attributes.styles,\"target\");var h=n.coerce(l[i],c[i],r.attributes.styles,\"value\");n.isPlainObject(h)?u.value=n.extendDeep({},h):h&&delete u.value}return o},r.transform=function(t,e){var r,n,a,i=[];for(n=0;n<t.length;n++)for(r=s(t[n],e),a=0;a<r.length;a++)i.push(r[a]);return i}},{\"../lib\":719,\"../plot_api/plot_schema\":756,\"../plots/plots\":828,\"./helpers\":1282}],1282:[function(t,e,r){\"use strict\";r.pointsAccessorFunction=function(t,e){for(var r,n,a=0;a<t.length&&(r=t[a])!==e;a++)r._indexToPoints&&!1!==r.enabled&&(n=r._indexToPoints);return n?function(t){return n[t]}:function(t){return[t]}}},{}],1283:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),a=t(\"../plots/cartesian/axes\"),i=t(\"./helpers\").pointsAccessorFunction;r.moduleType=\"transform\",r.name=\"sort\",r.attributes={enabled:{valType:\"boolean\",dflt:!0,editType:\"calc\"},target:{valType:\"string\",strict:!0,noBlank:!0,arrayOk:!0,dflt:\"x\",editType:\"calc\"},order:{valType:\"enumerated\",values:[\"ascending\",\"descending\"],dflt:\"ascending\",editType:\"calc\"},editType:\"calc\"},r.supplyDefaults=function(t){var e={};function a(a,i){return n.coerce(t,e,r.attributes,a,i)}return a(\"enabled\")&&(a(\"target\"),a(\"order\")),e},r.calcTransform=function(t,e,r){if(r.enabled){var o=n.getTargetArray(e,r);if(o){var s=r.target,l=o.length;e._length&&(l=Math.min(l,e._length));var c,u,h=e._arrayAttrs,f=function(t,e,r,n){var a,i=new Array(n),o=new Array(n);for(a=0;a<n;a++)i[a]={v:e[a],i:a};for(i.sort(function(t,e){switch(t.order){case\"ascending\":return function(t,r){return e(t.v)-e(r.v)};case\"descending\":return function(t,r){return e(r.v)-e(t.v)}}}(t,r)),a=0;a<n;a++)o[a]=i[a].i;return o}(r,o,a.getDataToCoordFunc(t,e,s,o),l),p=i(e.transforms,r),d={};for(c=0;c<h.length;c++){var g=n.nestedProperty(e,h[c]),v=g.get(),m=new Array(l);for(u=0;u<l;u++)m[u]=v[f[u]];g.set(m)}for(u=0;u<l;u++)d[u]=p(f[u]);r._indexToPoints=d,e._length=l}}}},{\"../lib\":719,\"../plots/cartesian/axes\":767,\"./helpers\":1282}]},{},[25])(25)});\n",
-       "        });\n",
-       "        require(['plotly'], function(Plotly) {\n",
-       "            window._Plotly = Plotly;\n",
-       "        });\n",
-       "        }\n",
-       "        </script>\n",
-       "        "
-      ]
-     },
-     "metadata": {},
-     "output_type": "display_data"
-    },
     {
      "data": {
       "application/vnd.plotly.v1+json": {
@@ -491,2677 +461,2677 @@
          "scene": "scene",
          "showlegend": true,
          "text": [
-          "example_2",
-          "example_15",
-          "example_23",
-          "example_29",
-          "example_30",
-          "example_32",
-          "example_43",
-          "example_44",
-          "example_45",
-          "example_49",
-          "example_51",
-          "example_56",
-          "example_58",
-          "example_59",
-          "example_63",
-          "example_65",
-          "example_67",
-          "example_69",
-          "example_70",
-          "example_71",
-          "example_72",
-          "example_73",
-          "example_76",
-          "example_78",
-          "example_81",
-          "example_84",
-          "example_99",
-          "example_100",
-          "example_101",
-          "example_107",
-          "example_109",
-          "example_111",
-          "example_115",
-          "example_118",
-          "example_120",
-          "example_123",
-          "example_124",
-          "example_128",
-          "example_135",
-          "example_141",
-          "example_148",
-          "example_162",
-          "example_163",
-          "example_168",
-          "example_170",
-          "example_173",
-          "example_175",
-          "example_182",
-          "example_184",
-          "example_185",
-          "example_188",
-          "example_192",
-          "example_194",
-          "example_196",
-          "example_198",
-          "example_199",
-          "example_203",
-          "example_208",
-          "example_210",
-          "example_211",
-          "example_212",
-          "example_218",
-          "example_220",
-          "example_226",
-          "example_231",
-          "example_233",
-          "example_236",
-          "example_237",
-          "example_239",
-          "example_240",
-          "example_244",
-          "example_247",
-          "example_250",
-          "example_251",
-          "example_254",
-          "example_256",
-          "example_259",
-          "example_261",
-          "example_265",
-          "example_266",
-          "example_270",
-          "example_271",
-          "example_272",
-          "example_273",
-          "example_274",
-          "example_275",
-          "example_277",
-          "example_281",
-          "example_286",
-          "example_289",
-          "example_292",
-          "example_297",
-          "example_298",
-          "example_300",
-          "example_303",
-          "example_305",
-          "example_306",
-          "example_307",
-          "example_309",
-          "example_310",
-          "example_311",
-          "example_316",
-          "example_322",
-          "example_324",
-          "example_331",
-          "example_332",
-          "example_334",
-          "example_339",
-          "example_342",
-          "example_344",
-          "example_350",
-          "example_351",
-          "example_352",
-          "example_353",
-          "example_354",
-          "example_358",
-          "example_361",
-          "example_363",
-          "example_365",
-          "example_366",
-          "example_367",
-          "example_368",
-          "example_371",
-          "example_374",
-          "example_376",
-          "example_380",
-          "example_381",
-          "example_382",
-          "example_383",
-          "example_393",
-          "example_394",
-          "example_398",
-          "example_405",
-          "example_408",
-          "example_411",
-          "example_413",
-          "example_414",
-          "example_415",
-          "example_416",
-          "example_420",
-          "example_422",
-          "example_425",
-          "example_426",
-          "example_427",
-          "example_429",
-          "example_432",
-          "example_433",
-          "example_436",
-          "example_438",
-          "example_439",
-          "example_445",
-          "example_450",
-          "example_453",
-          "example_462",
-          "example_464",
-          "example_465",
-          "example_471",
-          "example_478",
-          "example_479",
-          "example_480",
-          "example_481",
-          "example_482",
-          "example_483",
-          "example_485",
-          "example_486",
-          "example_493",
-          "example_494",
-          "example_495",
-          "example_497",
-          "example_505",
-          "example_506",
-          "example_507",
-          "example_513",
-          "example_514",
-          "example_518",
-          "example_519",
-          "example_522",
-          "example_526",
-          "example_527",
-          "example_529",
-          "example_530",
-          "example_532",
-          "example_534",
-          "example_535",
-          "example_538",
-          "example_543",
-          "example_544",
-          "example_548",
-          "example_551",
-          "example_552",
-          "example_554",
-          "example_555",
-          "example_557",
-          "example_561",
-          "example_567",
-          "example_570",
-          "example_572",
-          "example_575",
-          "example_576",
-          "example_579",
-          "example_581",
-          "example_582",
-          "example_583",
-          "example_584",
-          "example_585",
-          "example_588",
-          "example_590",
-          "example_591",
-          "example_593",
-          "example_596",
-          "example_598",
-          "example_599",
-          "example_602",
-          "example_607",
-          "example_609",
-          "example_610",
-          "example_611",
-          "example_613",
-          "example_614",
-          "example_617",
-          "example_618",
-          "example_619",
-          "example_620",
-          "example_628",
-          "example_630",
-          "example_631",
-          "example_637",
-          "example_650",
-          "example_651",
-          "example_654",
-          "example_670",
-          "example_674",
-          "example_678",
-          "example_679",
-          "example_680",
-          "example_692",
-          "example_693",
-          "example_694",
-          "example_701",
-          "example_704",
-          "example_705",
-          "example_706",
-          "example_707",
-          "example_710",
-          "example_712",
-          "example_715",
-          "example_720",
-          "example_721",
-          "example_727",
-          "example_730",
-          "example_733",
-          "example_736",
-          "example_741",
-          "example_744",
-          "example_745",
-          "example_746",
-          "example_752",
-          "example_755",
-          "example_757",
-          "example_759",
-          "example_764",
-          "example_765",
-          "example_767",
-          "example_771",
-          "example_774",
-          "example_777",
-          "example_780",
-          "example_781",
-          "example_785",
-          "example_787",
-          "example_788",
-          "example_792",
-          "example_802",
-          "example_806",
-          "example_807",
-          "example_808",
-          "example_812",
-          "example_813",
-          "example_817",
-          "example_818",
-          "example_819",
-          "example_824",
-          "example_829",
-          "example_832",
-          "example_834",
-          "example_838",
-          "example_843",
-          "example_845",
-          "example_849",
-          "example_855",
-          "example_861",
-          "example_865",
-          "example_873",
-          "example_879",
-          "example_886",
-          "example_887",
-          "example_892",
-          "example_900",
-          "example_904",
-          "example_905",
-          "example_906",
-          "example_907",
-          "example_909",
-          "example_914",
-          "example_915",
-          "example_923",
-          "example_925",
-          "example_926",
-          "example_930",
-          "example_931",
-          "example_936",
-          "example_937",
-          "example_939",
-          "example_942",
-          "example_943",
-          "example_948",
-          "example_949",
-          "example_952",
-          "example_962",
-          "example_963",
-          "example_964",
-          "example_965",
-          "example_966",
-          "example_976",
-          "example_978",
-          "example_979",
-          "example_984",
-          "example_985",
-          "example_988",
-          "example_990",
-          "example_993",
-          "example_994",
-          "example_1004",
-          "example_1010",
-          "example_1013",
-          "example_1018",
-          "example_1022",
-          "example_1027",
-          "example_1029",
-          "example_1033",
-          "example_1036",
-          "example_1040",
-          "example_1043",
-          "example_1050",
-          "example_1052",
-          "example_1053",
-          "example_1054",
-          "example_1061",
-          "example_1063",
-          "example_1067",
-          "example_1073",
-          "example_1075",
-          "example_1083",
-          "example_1084",
-          "example_1090",
-          "example_1100",
-          "example_1102",
-          "example_1103",
-          "example_1105",
-          "example_1106",
-          "example_1107",
-          "example_1114",
-          "example_1117",
-          "example_1120",
-          "example_1125",
-          "example_1133",
-          "example_1134",
-          "example_1138",
-          "example_1144",
-          "example_1146",
-          "example_1157",
-          "example_1159",
-          "example_1160",
-          "example_1163",
-          "example_1164",
-          "example_1165",
-          "example_1170",
-          "example_1173",
-          "example_1177",
-          "example_1179",
-          "example_1181",
-          "example_1187",
-          "example_1189",
-          "example_1192",
-          "example_1198",
-          "example_1202",
-          "example_1204",
-          "example_1211",
-          "example_1220",
-          "example_1222",
-          "example_1223",
-          "example_1225",
-          "example_1228",
-          "example_1229",
-          "example_1231",
-          "example_1233",
-          "example_1235",
-          "example_1239",
-          "example_1240",
-          "example_1242",
-          "example_1245",
-          "example_1247",
-          "example_1249",
-          "example_1255",
-          "example_1258",
-          "example_1263",
-          "example_1265",
-          "example_1270",
-          "example_1271",
-          "example_1272",
-          "example_1273",
-          "example_1274",
-          "example_1280",
-          "example_1281",
-          "example_1284",
-          "example_1287",
-          "example_1288",
-          "example_1289",
-          "example_1298",
-          "example_1301",
-          "example_1304",
-          "example_1305",
-          "example_1307",
-          "example_1309",
-          "example_1314",
-          "example_1316",
-          "example_1317",
-          "example_1318",
-          "example_1319",
-          "example_1320",
-          "example_1322",
-          "example_1324",
-          "example_1326",
-          "example_1331",
-          "example_1335",
-          "example_1339",
-          "example_1343",
-          "example_1344",
-          "example_1345",
-          "example_1347",
-          "example_1355",
-          "example_1357",
-          "example_1360",
-          "example_1362",
-          "example_1364",
-          "example_1376",
-          "example_1379",
-          "example_1380",
-          "example_1381",
-          "example_1383",
-          "example_1384",
-          "example_1386",
-          "example_1387",
-          "example_1389",
-          "example_1391",
-          "example_1392",
-          "example_1393",
-          "example_1395",
-          "example_1403",
-          "example_1405",
-          "example_1412",
-          "example_1414",
-          "example_1417",
-          "example_1420",
-          "example_1423",
-          "example_1424",
-          "example_1425",
-          "example_1428",
-          "example_1429",
-          "example_1431",
-          "example_1432",
-          "example_1433",
-          "example_1436",
-          "example_1440",
-          "example_1441",
-          "example_1447",
-          "example_1448",
-          "example_1452",
-          "example_1453",
-          "example_1454",
-          "example_1458",
-          "example_1464",
-          "example_1469",
-          "example_1471",
-          "example_1472",
-          "example_1474",
-          "example_1481",
-          "example_1483",
-          "example_1490",
-          "example_1491",
-          "example_1493",
-          "example_1498",
-          "example_1502",
-          "example_1503",
-          "example_1509",
-          "example_1510",
-          "example_1511",
-          "example_1516",
-          "example_1525",
-          "example_1526",
-          "example_1530",
-          "example_1531",
-          "example_1537",
-          "example_1542",
-          "example_1546",
-          "example_1547",
-          "example_1548",
-          "example_1551",
-          "example_1552",
-          "example_1553",
-          "example_1554",
-          "example_1556",
-          "example_1558",
-          "example_1560",
-          "example_1564",
-          "example_1565",
-          "example_1568",
-          "example_1571",
-          "example_1575",
-          "example_1582",
-          "example_1586",
-          "example_1588",
-          "example_1591",
-          "example_1592",
-          "example_1596",
-          "example_1601",
-          "example_1602",
-          "example_1605",
-          "example_1606",
-          "example_1607",
-          "example_1608",
-          "example_1610",
-          "example_1611",
-          "example_1612",
-          "example_1613",
-          "example_1615",
-          "example_1616",
-          "example_1621",
-          "example_1626",
-          "example_1632",
-          "example_1635",
-          "example_1644",
-          "example_1645",
-          "example_1646",
-          "example_1649",
-          "example_1650",
-          "example_1651",
-          "example_1652",
-          "example_1656",
-          "example_1657",
-          "example_1658",
-          "example_1664",
-          "example_1667",
-          "example_1671",
-          "example_1672",
-          "example_1674",
-          "example_1675",
-          "example_1676",
-          "example_1677",
-          "example_1683",
-          "example_1686",
-          "example_1689",
-          "example_1694",
-          "example_1696",
-          "example_1703",
-          "example_1708",
-          "example_1711",
-          "example_1712",
-          "example_1717",
-          "example_1719",
-          "example_1726",
-          "example_1727",
-          "example_1729",
-          "example_1734",
-          "example_1735",
-          "example_1738",
-          "example_1739",
-          "example_1743",
-          "example_1745",
-          "example_1749",
-          "example_1752",
-          "example_1754",
-          "example_1755",
-          "example_1759",
-          "example_1761",
-          "example_1763",
-          "example_1764",
-          "example_1765",
-          "example_1767",
-          "example_1770",
-          "example_1773",
-          "example_1775",
-          "example_1778",
-          "example_1779",
-          "example_1782",
-          "example_1783",
-          "example_1786",
-          "example_1787",
-          "example_1791",
-          "example_1801",
-          "example_1808",
-          "example_1810",
-          "example_1811",
-          "example_1813",
-          "example_1814",
-          "example_1816",
-          "example_1817",
-          "example_1823",
-          "example_1827",
-          "example_1831",
-          "example_1844",
-          "example_1851",
-          "example_1857",
-          "example_1860",
-          "example_1863",
-          "example_1864",
-          "example_1865",
-          "example_1867",
-          "example_1871",
-          "example_1872",
-          "example_1874",
-          "example_1882",
-          "example_1888",
-          "example_1891",
-          "example_1903",
-          "example_1904",
-          "example_1907",
-          "example_1909",
-          "example_1910",
-          "example_1911",
-          "example_1912",
-          "example_1914",
-          "example_1917",
-          "example_1918",
-          "example_1920",
-          "example_1922",
-          "example_1925",
-          "example_1928",
-          "example_1929",
-          "example_1930",
-          "example_1932",
-          "example_1935",
-          "example_1936",
-          "example_1937",
-          "example_1939",
-          "example_1941",
-          "example_1948",
-          "example_1952",
-          "example_1955",
-          "example_1957",
-          "example_1959",
-          "example_1960",
-          "example_1963",
-          "example_1972",
-          "example_1974",
-          "example_1975",
-          "example_1976",
-          "example_1978",
-          "example_1979",
-          "example_1984",
-          "example_1985",
-          "example_1987",
-          "example_1988",
-          "example_1989",
-          "example_1990",
-          "example_1993"
+          "0_l_0_m-0_0.08-1_0.1-2_0.06-3_0.19",
+          "1_l_0_m-0_0.12-1_0.47-2_0.31-3_0.18",
+          "2_l_0_m-0_0.09-1_0.16-2_0.08-3_0.18",
+          "3_l_0_m-0_0.21-1_0.23-2_0.17-3_0.1",
+          "4_l_0_m-0_0.47-1_0.09-2_0.48-3_0.24",
+          "5_l_0_m-0_0.16-1_0.92-2_0.25-3_0.33",
+          "6_l_0_c_0_1_2-0_0.16-1_0.18-2_0.48-3_0.52",
+          "7_l_0_c_0_1_2-0_0.0-1_0.08-2_0.86-3_1.04",
+          "8_l_0_c_0_1_2-0_0.79-1_0.27-2_0.53-3_1.46",
+          "9_l_0_c_0_1_2-0_0.5-1_0.46-2_0.73-3_0.29",
+          "10_l_0_c_0_1_2-0_0.35-1_0.09-2_0.95-3_0.67",
+          "11_l_0_c_0_1_2-0_0.45-1_0.18-2_0.01-3_0.68",
+          "12_l_0_c_0_1_2-0_0.26-1_0.65-2_0.03-3_1.18",
+          "13_l_0_c_0_1_2-0_0.02-1_0.11-2_0.11-3_0.93",
+          "14_l_0_c_0_1_2-0_0.01-1_0.31-2_0.46-3_0.39",
+          "15_l_0_c_0_1_2-0_0.49-1_0.44-2_0.46-3_0.4",
+          "16_l_0_c_0_1_2-0_0.32-1_0.66-2_0.09-3_0.22",
+          "17_l_0_c_0_1_2-0_0.88-1_0.25-2_0.08-3_0.3",
+          "18_l_0_c_0_1_2-0_0.24-1_0.29-2_0.41-3_0.04",
+          "19_l_0_c_1_2_3-0_1.19-1_0.67-2_0.48-3_0.22",
+          "20_l_0_c_0_1_2-0_0.56-1_0.09-2_0.52-3_1.12",
+          "21_l_0_c_0_2_3-0_0.44-1_0.25-2_0.14-3_0.45",
+          "22_l_0_c_1_2_3-0_0.05-1_0.26-2_1.37-3_0.82",
+          "23_l_0_c_0_1_2-0_0.49-1_0.15-2_0.69-3_0.44",
+          "24_l_0_c_0_2_3-0_0.38-1_0.27-2_0.15-3_0.11",
+          "25_l_0_c_1_2_3-0_0.97-1_0.06-2_0.49-3_0.2",
+          "26_l_0_c_0_1_2-0_0.19-1_0.15-2_0.23-3_0.53",
+          "27_l_0_c_0_2_3-0_0.89-1_0.91-2_0.76-3_0.39",
+          "28_l_0_c_1_2_3-0_1.08-1_0.98-2_0.18-3_0.04",
+          "29_l_0_c_0_1_2-0_0.22-1_1.08-2_0.81-3_0.67",
+          "30_l_0_c_0_2_3-0_0.23-1_0.4-2_0.14-3_0.55",
+          "31_l_0_c_1_2_3-0_0.26-1_1.2-2_1.47-3_0.63",
+          "32_l_0_c_0_1_2-0_0.07-1_0.41-2_0.51-3_0.63",
+          "33_l_0_c_0_2_3-0_0.91-1_0.76-2_0.27-3_0.2",
+          "34_l_0_c_1_2_3-0_0.87-1_0.07-2_0.06-3_0.57",
+          "35_l_0_c_0_1_2-0_0.56-1_0.36-2_0.13-3_0.52",
+          "36_l_0_c_0_2_3-0_0.28-1_0.03-2_0.3-3_0.01",
+          "37_l_0_c_1_2_3-0_1.09-1_0.93-2_0.76-3_0.51",
+          "38_l_0_c_0_1_2-0_0.25-1_0.17-2_0.57-3_0.02",
+          "39_l_0_c_0_2_3-0_0.28-1_1.49-2_0.09-3_0.08",
+          "40_l_0_c_1_2_3-0_0.64-1_1.01-2_0.43-3_0.53",
+          "41_l_0_c_0_1_2-0_0.89-1_0.53-2_0.66-3_0.47",
+          "42_l_0_c_0_2_3-0_0.41-1_0.28-2_0.62-3_0.12",
+          "43_l_0_c_1_2_3-0_0.3-1_0.39-2_0.16-3_0.31",
+          "44_l_0_c_0_1_2-0_0.89-1_0.29-2_1.09-3_0.7",
+          "45_l_0_c_0_2_3-0_0.2-1_1.61-2_0.97-3_0.56",
+          "46_l_0_c_1_2_3-0_1.88-1_0.28-2_0.02-3_0.34",
+          "47_l_0_c_0_1_2-0_0.46-1_0.32-2_0.42-3_0.99",
+          "48_l_0_c_0_2_3-0_0.3-1_0.65-2_1.47-3_0.02",
+          "49_l_0_c_1_2_3-0_0.12-1_1.17-2_0.15-3_0.4",
+          "50_l_0_c_0_1_2-0_0.15-1_1.28-2_0.92-3_0.85",
+          "51_l_0_c_0_2_3-0_1.05-1_0.51-2_0.73-3_1.02",
+          "52_l_0_c_1_2_3-0_0.18-1_0.07-2_0.62-3_0.67",
+          "53_l_0_c_0_1_2-0_0.69-1_0.81-2_0.74-3_1.39",
+          "54_l_0_c_0_2_3-0_0.16-1_0.75-2_0.07-3_0.35",
+          "55_l_0_c_1_2_3-0_0.97-1_0.19-2_0.38-3_0.2",
+          "56_l_0_c_0_1_2-0_0.28-1_0.04-2_0.25-3_0.4",
+          "57_l_0_c_0_2_3-0_0.51-1_1.5-2_0.68-3_0.15",
+          "58_l_0_c_1_2_3-0_0.97-1_0.32-2_0.19-3_0.46",
+          "59_l_0_c_0_1_2-0_0.56-1_0.88-2_0.21-3_0.17",
+          "60_l_0_c_0_2_3-0_1.68-1_1.59-2_0.67-3_0.04",
+          "61_l_0_c_1_2_3-0_0.88-1_0.25-2_0.45-3_0.18",
+          "62_l_0_c_0_1_2-0_0.2-1_0.18-2_0.32-3_0.14",
+          "63_l_0_c_0_2_3-0_1.24-1_0.85-2_0.84-3_0.38",
+          "64_l_0_c_1_2_3-0_0.73-1_0.38-2_0.16-3_0.74",
+          "65_l_0_c_0_1_2-0_0.44-1_0.05-2_0.39-3_0.18",
+          "66_l_0_c_0_2_3-0_0.41-1_1.44-2_0.12-3_0.11",
+          "67_l_0_c_1_2_3-0_2.05-1_0.06-2_0.68-3_1.1",
+          "68_l_0_c_0_1_2-0_0.4-1_0.19-2_0.03-3_1.39",
+          "69_l_0_c_0_2_3-0_0.31-1_0.28-2_0.08-3_0.25",
+          "70_l_0_c_1_2_3-0_0.45-1_0.08-2_0.27-3_0.6",
+          "71_l_0_c_0_1_2-0_0.2-1_0.06-2_0.96-3_0.54",
+          "72_l_0_c_0_2_3-0_0.14-1_0.93-2_0.74-3_0.39",
+          "73_l_0_c_1_2_3-0_0.46-1_0.46-2_0.66-3_0.02",
+          "74_l_0_c_0_1_2-0_0.69-1_0.43-2_0.14-3_0.4",
+          "75_l_0_c_0_2_3-0_0.23-1_1.16-2_0.46-3_1.37",
+          "76_l_0_c_1_2_3-0_2.24-1_0.15-2_0.96-3_0.61",
+          "77_l_0_c_0_1_2-0_0.05-1_0.07-2_0.15-3_0.87",
+          "78_l_0_c_0_2_3-0_0.21-1_0.08-2_0.25-3_0.11",
+          "79_l_0_c_1_2_3-0_0.43-1_0.1-2_0.01-3_0.94",
+          "80_l_0_c_0_1_2-0_0.58-1_0.21-2_0.54-3_0.47",
+          "81_l_0_c_0_2_3-0_0.34-1_1.14-2_0.45-3_0.06",
+          "82_l_0_c_1_2_3-0_1.71-1_0.12-2_0.15-3_0.07",
+          "83_l_0_c_0_1_2-0_0.12-1_0.06-2_0.0-3_0.26",
+          "84_l_0_c_0_2_3-0_0.8-1_0.15-2_0.64-3_0.24",
+          "85_l_0_c_1_2_3-0_1.41-1_0.02-2_1.18-3_0.64",
+          "86_l_0_c_0_1_2-0_0.05-1_0.21-2_0.64-3_0.53",
+          "87_l_0_c_0_2_3-0_0.9-1_0.07-2_0.44-3_0.22",
+          "88_l_0_c_1_2_3-0_0.07-1_0.19-2_0.42-3_0.71",
+          "89_l_0_c_0_1_2-0_0.21-1_0.2-2_0.35-3_0.04",
+          "90_l_0_c_0_2_3-0_0.38-1_2.27-2_0.51-3_0.04",
+          "91_l_0_c_1_2_3-0_0.57-1_0.45-2_0.2-3_0.44",
+          "92_l_0_c_0_1_2-0_0.23-1_0.17-2_0.43-3_1.58",
+          "93_l_0_c_0_2_3-0_2.0-1_0.83-2_0.76-3_0.02",
+          "94_l_0_c_1_2_3-0_0.43-1_0.32-2_0.19-3_0.86",
+          "95_l_0_c_0_1_2-0_0.34-1_0.46-2_0.23-3_0.69",
+          "96_l_0_c_0_2_3-0_0.03-1_0.36-2_0.26-3_0.08",
+          "97_l_0_c_1_2_3-0_0.69-1_0.09-2_1.09-3_0.99",
+          "98_l_0_c_0_1_2-0_0.02-1_0.16-2_0.64-3_0.6",
+          "99_l_0_c_0_1_3-0_0.06-1_0.32-2_0.65-3_0.41",
+          "100_l_0_c_0_2_3-0_0.03-1_0.14-2_0.74-3_0.63",
+          "101_l_0_c_1_2_3-0_1.15-1_0.92-2_1.15-3_0.82",
+          "102_l_0_c_0_1_2-0_0.09-1_0.04-2_0.31-3_0.88",
+          "103_l_0_c_0_1_3-0_0.07-1_0.34-2_0.57-3_0.05",
+          "104_l_0_c_0_2_3-0_0.41-1_0.51-2_0.35-3_0.04",
+          "105_l_0_c_1_2_3-0_0.55-1_0.74-2_0.64-3_0.06",
+          "106_l_0_c_0_1_2-0_0.09-1_0.19-2_0.17-3_0.35",
+          "107_l_0_c_0_1_3-0_0.02-1_0.13-2_1.34-3_0.6",
+          "108_l_0_c_0_2_3-0_0.54-1_0.09-2_1.38-3_1.04",
+          "109_l_0_c_1_2_3-0_0.96-1_0.09-2_0.5-3_0.73",
+          "110_l_0_c_0_1_2-0_0.5-1_0.59-2_0.08-3_0.06",
+          "111_l_0_c_0_1_3-0_0.06-1_0.82-2_0.49-3_0.1",
+          "112_l_0_c_0_2_3-0_0.04-1_0.3-2_0.01-3_0.46",
+          "113_l_0_c_1_2_3-0_0.52-1_0.44-2_0.72-3_0.71",
+          "114_l_0_c_0_1_2-0_0.09-1_0.34-2_1.76-3_1.09",
+          "115_l_0_c_0_1_3-0_0.14-1_0.82-2_0.18-3_0.11",
+          "116_l_0_c_0_2_3-0_0.56-1_0.93-2_0.15-3_0.12",
+          "117_l_0_c_1_2_3-0_0.54-1_0.2-2_0.3-3_0.08",
+          "118_l_0_c_0_1_2-0_0.53-1_0.18-2_0.52-3_0.01",
+          "119_l_0_c_0_1_3-0_0.35-1_0.5-2_0.28-3_0.26",
+          "120_l_0_c_0_2_3-0_0.49-1_0.76-2_0.12-3_2.22",
+          "121_l_0_c_1_2_3-0_0.11-1_0.58-2_0.11-3_0.57",
+          "122_l_0_c_0_1_2-0_0.13-1_1.02-2_1.03-3_1.02",
+          "123_l_0_c_0_1_3-0_0.05-1_0.95-2_0.49-3_0.4",
+          "124_l_0_c_0_2_3-0_0.2-1_1.9-2_0.35-3_0.63",
+          "125_l_0_c_1_2_3-0_0.4-1_0.12-2_0.25-3_0.2",
+          "126_l_0_c_0_1_2-0_0.18-1_0.49-2_0.34-3_0.01",
+          "127_l_0_c_0_1_3-0_0.09-1_0.01-2_0.81-3_0.26",
+          "128_l_0_c_0_2_3-0_0.23-1_0.16-2_1.5-3_0.83",
+          "129_l_0_c_1_2_3-0_1.29-1_0.15-2_0.0-3_0.14",
+          "130_l_0_c_0_1_2-0_0.39-1_0.08-2_0.17-3_0.47",
+          "131_l_0_c_0_1_3-0_0.03-1_0.46-2_0.16-3_0.26",
+          "132_l_0_c_0_2_3-0_0.19-1_0.2-2_0.46-3_0.04",
+          "133_l_0_c_1_2_3-0_0.66-1_0.08-2_0.12-3_0.96",
+          "134_l_0_c_0_1_2-0_0.71-1_0.18-2_0.68-3_1.72",
+          "135_l_0_c_0_1_3-0_0.04-1_0.79-2_1.72-3_0.05",
+          "136_l_0_c_0_2_3-0_0.43-1_1.42-2_1.29-3_0.04",
+          "137_l_0_c_1_2_3-0_0.27-1_0.71-2_1.11-3_0.1",
+          "138_l_0_c_0_1_2-0_0.12-1_0.16-2_0.15-3_0.1",
+          "139_l_0_c_0_1_3-0_0.07-1_0.64-2_0.05-3_0.11",
+          "140_l_0_c_0_2_3-0_0.05-1_1.53-2_0.46-3_0.14",
+          "141_l_0_c_1_2_3-0_0.99-1_0.31-2_0.18-3_0.06",
+          "142_l_0_c_0_1_2-0_1.54-1_0.07-2_0.21-3_0.93",
+          "143_l_0_c_0_1_3-0_0.3-1_0.54-2_0.05-3_0.05",
+          "144_l_0_c_0_2_3-0_0.06-1_0.62-2_0.41-3_0.27",
+          "145_l_0_c_1_2_3-0_0.04-1_0.43-2_0.13-3_0.7",
+          "146_l_0_c_0_1_2-0_0.56-1_0.46-2_0.58-3_0.11",
+          "147_l_0_c_0_1_3-0_0.71-1_0.23-2_1.18-3_0.31",
+          "148_l_0_c_0_2_3-0_0.35-1_1.91-2_0.07-3_0.5",
+          "149_l_0_c_1_2_3-0_0.23-1_0.1-2_0.03-3_0.28",
+          "150_l_0_c_0_1_2-0_0.27-1_0.11-2_0.59-3_0.3",
+          "151_l_0_c_0_1_3-0_0.13-1_0.09-2_0.16-3_0.01",
+          "152_l_0_c_0_2_3-0_0.41-1_0.23-2_0.26-3_0.29",
+          "153_l_0_c_1_2_3-0_0.84-1_0.71-2_0.7-3_0.08",
+          "154_l_0_c_0_1_2-0_0.66-1_0.44-2_0.1-3_1.0",
+          "155_l_0_c_0_1_3-0_0.28-1_0.23-2_0.2-3_0.02",
+          "156_l_0_c_0_2_3-0_0.26-1_1.45-2_0.37-3_0.45",
+          "157_l_0_c_1_2_3-0_0.16-1_0.84-2_0.62-3_0.21",
+          "158_l_0_c_0_1_2-0_0.38-1_0.4-2_0.28-3_0.46",
+          "159_l_0_c_0_1_3-0_0.44-1_0.75-2_0.03-3_1.07",
+          "160_l_0_c_0_2_3-0_0.58-1_0.11-2_0.6-3_1.06",
+          "161_l_0_c_1_2_3-0_1.35-1_0.5-2_0.2-3_0.24",
+          "162_l_0_c_0_1_2-0_0.73-1_0.27-2_0.48-3_2.1",
+          "163_l_0_c_0_1_3-0_0.59-1_0.6-2_0.14-3_0.1",
+          "164_l_0_c_0_2_3-0_0.45-1_0.59-2_0.11-3_0.24",
+          "165_l_0_c_1_2_3-0_0.04-1_1.36-2_0.69-3_0.07",
+          "166_l_0_c_0_1_2-0_0.06-1_0.11-2_0.88-3_0.96",
+          "167_l_0_c_0_1_3-0_0.34-1_0.09-2_1.17-3_0.11",
+          "168_l_0_c_0_2_3-0_0.07-1_1.72-2_1.1-3_0.71",
+          "169_l_0_c_1_2_3-0_0.55-1_0.53-2_0.37-3_0.22",
+          "170_l_0_c_0_1_2-0_0.1-1_0.78-2_0.4-3_1.28",
+          "171_l_0_c_0_1_3-0_0.16-1_0.07-2_0.24-3_0.2",
+          "172_l_0_c_0_2_3-0_0.19-1_0.92-2_0.79-3_0.12",
+          "173_l_0_c_1_2_3-0_0.27-1_0.12-2_0.4-3_0.41",
+          "174_l_0_c_0_1_2-0_0.67-1_1.34-2_0.58-3_0.7",
+          "175_l_0_c_0_1_3-0_0.18-1_0.89-2_0.68-3_0.37",
+          "176_l_0_c_0_2_3-0_0.41-1_0.47-2_0.97-3_0.08",
+          "177_l_0_c_1_2_3-0_1.31-1_0.48-2_0.28-3_0.05",
+          "178_l_0_c_0_1_2-0_0.48-1_1.05-2_0.66-3_0.6",
+          "179_l_0_c_0_1_3-0_0.98-1_0.33-2_0.71-3_0.35",
+          "180_l_0_c_0_2_3-0_0.56-1_0.69-2_0.05-3_0.18",
+          "181_l_0_c_1_2_3-0_1.86-1_0.25-2_0.31-3_0.18",
+          "182_l_0_c_0_1_2-0_1.12-1_1.05-2_0.53-3_1.1",
+          "183_l_0_c_0_1_3-0_0.87-1_0.43-2_0.03-3_0.07",
+          "184_l_0_c_0_2_3-0_0.65-1_0.94-2_0.1-3_0.7",
+          "185_l_0_c_1_2_3-0_0.33-1_0.95-2_0.24-3_0.71",
+          "186_l_0_c_0_1_2-0_0.39-1_0.07-2_0.08-3_0.43",
+          "187_l_0_c_0_1_3-0_0.05-1_0.18-2_0.24-3_0.2",
+          "188_l_0_c_0_2_3-0_0.56-1_1.31-2_0.4-3_0.82",
+          "189_l_0_c_1_2_3-0_0.49-1_0.39-2_0.45-3_0.66",
+          "190_l_0_c_0_1_2-0_0.09-1_0.85-2_0.28-3_0.85",
+          "191_l_0_c_0_1_3-0_0.05-1_0.11-2_0.96-3_0.93",
+          "192_l_0_c_0_2_3-0_0.51-1_0.44-2_0.24-3_0.3",
+          "193_l_0_c_1_2_3-0_0.22-1_0.67-2_0.61-3_1.16",
+          "194_l_0_c_0_1_2-0_0.59-1_0.0-2_0.04-3_0.26",
+          "195_l_0_c_0_1_3-0_0.51-1_1.05-2_1.87-3_0.31",
+          "196_l_0_c_0_2_3-0_0.17-1_0.62-2_0.92-3_0.31",
+          "197_l_0_c_1_2_3-0_0.02-1_0.59-2_1.32-3_0.8",
+          "198_l_0_c_0_1_2-0_0.03-1_0.11-2_0.44-3_2.01",
+          "199_l_0_c_0_1_3-0_0.82-1_0.29-2_0.02-3_0.3",
+          "200_l_0_c_0_2_3-0_0.48-1_0.23-2_0.27-3_0.17",
+          "201_l_0_c_1_2_3-0_0.12-1_0.7-2_0.16-3_0.19",
+          "202_l_0_c_0_1_2-0_0.26-1_0.66-2_0.53-3_0.76",
+          "203_l_0_c_0_1_3-0_0.6-1_1.34-2_0.38-3_0.1",
+          "204_l_0_c_0_2_3-0_0.1-1_0.84-2_0.08-3_0.15",
+          "205_l_0_c_1_2_3-0_0.88-1_0.28-2_0.67-3_0.83",
+          "206_l_0_c_0_1_2-0_0.22-1_0.21-2_1.45-3_0.36",
+          "207_l_0_c_0_1_3-0_0.02-1_0.15-2_0.1-3_0.38",
+          "208_l_0_c_0_2_3-0_0.41-1_1.88-2_1.04-3_0.83",
+          "209_l_0_c_1_2_3-0_0.92-1_1.3-2_0.2-3_0.78",
+          "210_l_0_c_0_1_2-0_0.08-1_0.03-2_0.04-3_0.1",
+          "211_l_0_c_0_1_3-0_0.83-1_0.46-2_0.19-3_0.34",
+          "212_l_0_c_0_2_3-0_0.54-1_1.0-2_0.82-3_0.8",
+          "213_l_0_c_1_2_3-0_1.51-1_0.67-2_1.93-3_0.31",
+          "214_l_0_c_0_1_2-0_0.04-1_1.63-2_0.74-3_0.07",
+          "215_l_0_c_0_1_3-0_0.77-1_0.06-2_2.47-3_1.47",
+          "216_l_0_c_0_2_3-0_0.63-1_0.07-2_0.11-3_0.27",
+          "217_l_0_c_1_2_3-0_1.25-1_0.56-2_0.11-3_0.06",
+          "218_l_0_c_0_1_2-0_0.18-1_0.15-2_0.08-3_0.52",
+          "219_l_0_c_0_1_3-0_0.01-1_0.33-2_0.22-3_0.13",
+          "220_l_0_c_0_2_3-0_0.5-1_0.55-2_0.03-3_0.27",
+          "221_l_0_c_1_2_3-0_0.94-1_0.62-2_0.52-3_0.41",
+          "222_l_0_c_0_1_2-0_0.45-1_0.42-2_0.35-3_1.3",
+          "223_l_0_c_0_1_3-0_0.07-1_0.07-2_0.13-3_0.04",
+          "224_l_0_c_0_2_3-0_1.61-1_0.44-2_0.05-3_0.08",
+          "225_l_0_c_1_2_3-0_0.82-1_0.56-2_0.97-3_0.05",
+          "226_l_0_c_0_1_2-0_0.19-1_0.32-2_0.45-3_0.5",
+          "227_l_0_c_0_1_3-0_0.78-1_0.51-2_2.04-3_0.56",
+          "228_l_0_c_0_2_3-0_0.15-1_0.4-2_0.23-3_1.22",
+          "229_l_0_c_1_2_3-0_0.26-1_0.23-2_1.38-3_0.32",
+          "230_l_0_c_0_1_2-0_0.85-1_0.18-2_0.33-3_0.01",
+          "231_l_0_c_0_1_3-0_0.89-1_0.19-2_0.47-3_0.48",
+          "232_l_0_c_0_2_3-0_0.47-1_0.49-2_0.32-3_0.02",
+          "233_l_0_c_1_2_3-0_1.85-1_0.08-2_0.02-3_0.19",
+          "234_l_0_c_0_1_2-0_0.29-1_0.03-2_0.53-3_0.12",
+          "235_l_0_c_0_1_3-0_0.56-1_1.17-2_0.53-3_0.3",
+          "236_l_0_c_0_2_3-0_0.2-1_0.38-2_1.49-3_0.16",
+          "237_l_0_c_1_2_3-0_0.8-1_0.03-2_0.73-3_0.15",
+          "238_l_0_c_0_1_2-0_0.01-1_0.01-2_0.47-3_1.36",
+          "239_l_0_c_0_1_3-0_0.28-1_0.1-2_1.07-3_0.43",
+          "240_l_0_c_0_2_3-0_0.18-1_0.53-2_0.17-3_0.01",
+          "241_l_0_c_1_2_3-0_0.7-1_0.72-2_0.42-3_0.97",
+          "242_l_0_c_0_1_2-0_0.27-1_0.54-2_0.1-3_0.48",
+          "243_l_0_c_0_1_3-0_1.25-1_0.22-2_0.62-3_0.06",
+          "244_l_0_c_0_2_3-0_0.17-1_0.97-2_0.03-3_0.16",
+          "245_l_0_c_1_2_3-0_0.12-1_0.27-2_1.03-3_0.15",
+          "246_l_0_c_0_1_2-0_0.06-1_0.45-2_0.25-3_0.55",
+          "247_l_0_c_0_1_3-0_1.46-1_0.26-2_0.27-3_0.32",
+          "248_l_0_c_0_2_3-0_0.11-1_1.39-2_0.07-3_0.76",
+          "249_l_0_c_1_2_3-0_0.41-1_0.5-2_0.06-3_0.3",
+          "250_l_0_c_0_1_2-0_0.94-1_0.09-2_0.09-3_0.83",
+          "251_l_0_c_0_1_3-0_0.45-1_0.07-2_0.55-3_0.39",
+          "252_l_0_c_0_2_3-0_0.31-1_0.25-2_0.6-3_0.16",
+          "253_l_0_c_1_2_3-0_0.18-1_0.12-2_0.13-3_0.55",
+          "254_l_0_c_0_1_2-0_0.57-1_1.09-2_0.74-3_0.05",
+          "255_l_0_c_0_1_3-0_0.16-1_0.64-2_1.69-3_0.01",
+          "256_l_0_c_0_2_3-0_0.09-1_0.99-2_0.18-3_0.01",
+          "257_l_0_c_1_2_3-0_1.03-1_0.5-2_0.79-3_0.1",
+          "258_l_0_c_0_1_2-0_0.2-1_0.43-2_0.14-3_0.04",
+          "259_l_0_c_0_1_3-0_0.19-1_0.38-2_0.83-3_0.35",
+          "260_l_0_c_0_2_3-0_0.27-1_0.93-2_0.62-3_0.01",
+          "261_l_0_c_1_2_3-0_1.59-1_0.11-2_0.41-3_1.02",
+          "262_l_0_c_0_1_2-0_0.88-1_0.16-2_0.27-3_0.14",
+          "263_l_0_c_0_1_3-0_0.15-1_0.28-2_1.69-3_0.2",
+          "264_l_0_c_0_2_3-0_0.08-1_0.26-2_0.13-3_0.25",
+          "265_l_0_c_1_2_3-0_1.11-1_0.58-2_1.7-3_0.04",
+          "266_l_0_c_0_1_2-0_0.51-1_0.51-2_0.69-3_1.07",
+          "267_l_0_c_0_1_3-0_0.25-1_0.24-2_1.0-3_0.02",
+          "268_l_0_c_0_2_3-0_0.09-1_0.68-2_0.05-3_0.21",
+          "269_l_0_c_1_2_3-0_0.08-1_0.7-2_1.13-3_0.76",
+          "270_l_0_c_0_1_2-0_0.43-1_0.12-2_0.99-3_0.46",
+          "271_l_0_c_0_1_3-0_0.33-1_1.36-2_1.4-3_0.15",
+          "272_l_0_c_0_2_3-0_0.09-1_0.06-2_0.59-3_0.03",
+          "273_l_0_c_1_2_3-0_0.41-1_0.33-2_0.26-3_0.19",
+          "274_l_0_c_0_1_2-0_0.03-1_0.31-2_0.04-3_0.37",
+          "275_l_0_c_0_1_3-0_0.38-1_0.02-2_0.83-3_0.38",
+          "276_l_0_c_0_2_3-0_1.37-1_0.3-2_0.99-3_0.79",
+          "277_l_0_c_1_2_3-0_0.24-1_1.02-2_0.43-3_0.01",
+          "278_l_0_c_0_1_2-0_0.29-1_1.14-2_0.33-3_0.16",
+          "279_l_0_c_0_1_3-0_1.47-1_0.76-2_0.53-3_0.13",
+          "280_l_0_c_0_2_3-0_0.48-1_1.42-2_1.84-3_0.41",
+          "281_l_0_c_1_2_3-0_1.02-1_0.58-2_0.41-3_0.24",
+          "282_l_0_c_0_1_2-0_0.26-1_0.91-2_0.04-3_0.72",
+          "283_l_0_c_0_1_3-0_0.43-1_0.36-2_0.02-3_0.18",
+          "284_l_0_c_0_2_3-0_0.12-1_0.58-2_0.02-3_0.1",
+          "285_l_0_c_1_2_3-0_1.38-1_0.22-2_0.02-3_0.04",
+          "286_l_0_c_0_1_2-0_0.25-1_0.42-2_1.01-3_0.07",
+          "287_l_0_c_0_1_3-0_0.43-1_0.74-2_1.07-3_0.26",
+          "288_l_0_c_0_2_3-0_0.36-1_0.08-2_0.36-3_0.23",
+          "289_l_0_c_1_2_3-0_0.93-1_0.11-2_0.92-3_0.1",
+          "290_l_0_c_0_1_2-0_0.43-1_0.61-2_0.21-3_0.6",
+          "291_l_0_c_0_1_3-0_1.24-1_0.02-2_0.8-3_0.17",
+          "292_l_0_c_0_2_3-0_0.3-1_0.0-2_0.15-3_0.86",
+          "293_l_0_c_1_2_3-0_0.06-1_0.77-2_1.34-3_0.6",
+          "294_l_0_c_0_1_2-0_1.31-1_0.62-2_1.25-3_0.35",
+          "295_l_0_c_3-0_2.17-1_0.31-2_1.42-3_0.04",
+          "296_l_0_r-0_0.87-1_0.39-2_1.34-3_0.51",
+          "297_l_0_r-0_0.23-1_0.53-2_0.56-3_0.98",
+          "298_l_0_r-0_0.56-1_1.41-2_1.44-3_0.26",
+          "299_l_0_r-0_0.59-1_0.78-2_1.47-3_0.9",
+          "300_l_0_r-0_0.62-1_0.23-2_0.19-3_0.56",
+          "301_l_0_r-0_0.41-1_0.03-2_1.38-3_0.21",
+          "302_l_0_r-0_0.01-1_1.47-2_0.45-3_0.66",
+          "303_l_0_r-0_0.83-1_0.41-2_0.59-3_0.34",
+          "304_l_0_r-0_1.62-1_0.7-2_1.55-3_0.87",
+          "305_l_0_r-0_0.17-1_0.98-2_0.16-3_0.93",
+          "306_l_0_r-0_0.92-1_0.94-2_1.06-3_0.74",
+          "307_l_0_r-0_1.4-1_0.93-2_0.41-3_0.0",
+          "308_l_0_r-0_0.23-1_1.47-2_0.77-3_0.78",
+          "309_l_0_r-0_1.16-1_2.18-2_0.25-3_1.16",
+          "310_l_0_r-0_1.02-1_1.39-2_0.5-3_1.23",
+          "311_l_0_r-0_1.72-1_1.05-2_1.01-3_0.11",
+          "312_l_0_r-0_1.87-1_0.67-2_0.39-3_0.83",
+          "313_l_0_r-0_0.77-1_1.08-2_0.33-3_0.86",
+          "314_l_0_r-0_0.72-1_0.05-2_0.14-3_0.79",
+          "315_l_0_r-0_0.33-1_1.79-2_0.32-3_0.21",
+          "316_l_0_r-0_0.63-1_1.25-2_0.46-3_0.12",
+          "317_l_0_r-0_0.16-1_0.27-2_1.75-3_1.2",
+          "318_l_0_r-0_1.31-1_0.1-2_0.5-3_0.9",
+          "319_l_0_r-0_0.19-1_0.06-2_2.24-3_0.58",
+          "320_l_0_r-0_1.75-1_0.55-2_0.34-3_0.16",
+          "321_l_0_r-0_0.31-1_0.53-2_2.1-3_0.64",
+          "322_l_0_r-0_0.24-1_0.82-2_0.21-3_0.74",
+          "323_l_0_r-0_0.47-1_1.26-2_2.16-3_0.96",
+          "324_l_0_r-0_1.01-1_0.27-2_0.73-3_0.92",
+          "325_l_0_r-0_0.12-1_1.0-2_1.21-3_0.17",
+          "326_l_0_r-0_0.43-1_2.22-2_1.0-3_0.89",
+          "327_l_0_r-0_0.35-1_1.53-2_0.28-3_0.58",
+          "328_l_0_r-0_1.67-1_0.47-2_0.37-3_0.79",
+          "329_l_0_r-0_0.43-1_0.31-2_0.64-3_1.43",
+          "330_l_0_r-0_0.81-1_0.73-2_1.88-3_2.11",
+          "331_l_0_r-0_0.71-1_0.17-2_0.9-3_0.29",
+          "332_l_0_r-0_1.67-1_0.11-2_0.33-3_0.87",
+          "333_l_0_r-0_0.65-1_0.8-2_0.72-3_1.29",
+          "334_l_0_r-0_1.22-1_1.12-2_0.0-3_0.3",
+          "335_l_0_r-0_0.98-1_1.18-2_1.75-3_0.04",
+          "336_l_0_r-0_0.38-1_0.07-2_1.0-3_0.88",
+          "337_l_0_r-0_0.11-1_1.43-2_1.12-3_0.64",
+          "338_l_0_r-0_0.84-1_0.93-2_0.04-3_0.27",
+          "339_l_0_r-0_0.93-1_0.25-2_0.06-3_0.44",
+          "340_l_0_r-0_1.28-1_2.22-2_0.4-3_0.68",
+          "341_l_0_r-0_0.18-1_0.32-2_0.67-3_0.18",
+          "342_l_0_r-0_0.08-1_1.23-2_0.18-3_0.85",
+          "343_l_0_r-0_0.23-1_1.24-2_0.82-3_0.97",
+          "344_l_0_r-0_0.21-1_0.58-2_0.09-3_1.16",
+          "345_l_0_r-0_0.1-1_1.2-2_0.08-3_0.48",
+          "346_l_0_r-0_0.12-1_0.67-2_2.58-3_0.04",
+          "347_l_0_r-0_1.23-1_1.95-2_0.25-3_0.45",
+          "348_l_0_r-0_1.07-1_0.72-2_0.64-3_2.11",
+          "349_l_0_r-0_1.11-1_0.0-2_1.97-3_1.2",
+          "350_l_0_r-0_0.23-1_0.35-2_0.09-3_0.48",
+          "351_l_0_r-0_1.47-1_1.03-2_0.52-3_0.24",
+          "352_l_0_r-0_0.62-1_0.55-2_0.37-3_0.91",
+          "353_l_0_r-0_0.37-1_0.64-2_0.98-3_1.32",
+          "354_l_0_r-0_0.46-1_0.47-2_0.24-3_1.16",
+          "355_l_0_r-0_0.77-1_1.21-2_0.65-3_0.65",
+          "356_l_0_r-0_1.56-1_0.53-2_0.21-3_0.16",
+          "357_l_0_r-0_0.91-1_0.03-2_0.22-3_0.44",
+          "358_l_0_r-0_0.22-1_1.31-2_0.67-3_0.07",
+          "359_l_0_r-0_0.24-1_0.75-2_0.64-3_1.0",
+          "360_l_0_r-0_2.34-1_0.38-2_0.15-3_0.53",
+          "361_l_0_r-0_0.28-1_0.07-2_0.79-3_0.62",
+          "362_l_0_r-0_0.6-1_1.18-2_0.0-3_0.28",
+          "363_l_0_r-0_0.67-1_0.7-2_0.34-3_0.83",
+          "364_l_0_r-0_2.0-1_1.08-2_0.52-3_0.27",
+          "365_l_0_r-0_0.45-1_0.96-2_0.98-3_0.78",
+          "366_l_0_r-0_0.38-1_0.5-2_0.26-3_0.24",
+          "367_l_0_r-0_0.05-1_0.68-2_1.12-3_1.55",
+          "368_l_0_r-0_0.28-1_1.87-2_1.34-3_0.81",
+          "369_l_0_r-0_0.79-1_1.15-2_0.03-3_1.05",
+          "370_l_0_r-0_1.78-1_1.02-2_0.55-3_1.19",
+          "371_l_0_r-0_1.59-1_0.6-2_0.19-3_0.01",
+          "372_l_0_r-0_0.87-1_0.09-2_1.81-3_0.8",
+          "373_l_0_r-0_0.29-1_0.54-2_0.74-3_0.41",
+          "374_l_0_r-0_0.63-1_0.43-2_0.1-3_1.03",
+          "375_l_0_r-0_0.64-1_0.28-2_0.03-3_0.5",
+          "376_l_0_r-0_0.5-1_0.19-2_0.89-3_0.98",
+          "377_l_0_r-0_0.49-1_0.72-2_1.25-3_0.19",
+          "378_l_0_r-0_1.26-1_1.42-2_0.83-3_0.58",
+          "379_l_0_r-0_0.22-1_0.09-2_0.6-3_1.49",
+          "380_l_0_r-0_1.6-1_0.19-2_0.58-3_0.69",
+          "381_l_0_r-0_0.74-1_0.57-2_1.36-3_0.71",
+          "382_l_0_r-0_0.11-1_1.37-2_0.51-3_0.47",
+          "383_l_0_r-0_0.61-1_0.42-2_1.39-3_0.86",
+          "384_l_0_r-0_0.6-1_1.28-2_2.13-3_1.82",
+          "385_l_0_r-0_0.69-1_0.48-2_1.09-3_1.27",
+          "386_l_0_r-0_0.21-1_0.59-2_0.88-3_1.15",
+          "387_l_0_r-0_0.45-1_0.56-2_0.28-3_0.81",
+          "388_l_0_r-0_0.71-1_0.32-2_1.26-3_0.5",
+          "389_l_0_r-0_0.28-1_0.09-2_0.14-3_1.13",
+          "390_l_0_r-0_0.19-1_0.1-2_1.26-3_1.93",
+          "391_l_0_r-0_0.44-1_0.87-2_0.66-3_0.16",
+          "392_l_0_r-0_0.42-1_0.77-2_1.21-3_0.81",
+          "393_l_0_r-0_0.77-1_0.42-2_1.17-3_0.3",
+          "394_l_0_r-0_1.23-1_0.12-2_0.76-3_0.57",
+          "395_l_0_r-0_0.48-1_0.45-2_1.65-3_0.93",
+          "396_l_0_r-0_0.09-1_0.27-2_0.35-3_1.99",
+          "397_l_0_r-0_0.31-1_0.38-2_0.08-3_0.38",
+          "398_l_0_r-0_1.35-1_0.59-2_0.83-3_0.74",
+          "399_l_0_r-0_1.33-1_0.79-2_0.09-3_1.42",
+          "400_l_0_r-0_0.56-1_1.62-2_0.16-3_0.54",
+          "401_l_0_r-0_0.2-1_1.62-2_2.07-3_0.41",
+          "402_l_0_r-0_0.08-1_1.23-2_0.59-3_1.14",
+          "403_l_0_r-0_0.57-1_0.79-2_0.22-3_0.61",
+          "404_l_0_r-0_1.08-1_1.36-2_1.11-3_0.64",
+          "405_l_0_r-0_0.77-1_0.62-2_1.92-3_0.45",
+          "406_l_0_r-0_0.73-1_1.0-2_0.29-3_0.34",
+          "407_l_0_r-0_0.16-1_0.26-2_0.39-3_1.25",
+          "408_l_0_r-0_1.44-1_1.37-2_0.1-3_1.81",
+          "409_l_0_r-0_0.03-1_0.12-2_1.26-3_0.41",
+          "410_l_0_r-0_0.81-1_0.09-2_1.15-3_0.77",
+          "411_l_0_r-0_0.42-1_0.12-2_0.45-3_0.68",
+          "412_l_0_r-0_1.38-1_0.99-2_0.84-3_0.74",
+          "413_l_0_r-0_0.07-1_0.7-2_1.3-3_0.32",
+          "414_l_0_r-0_0.97-1_0.05-2_0.2-3_0.52",
+          "415_l_0_r-0_0.74-1_0.25-2_1.57-3_1.01",
+          "416_l_0_r-0_0.74-1_1.77-2_2.09-3_0.76",
+          "417_l_0_r-0_0.5-1_0.98-2_0.11-3_0.06",
+          "418_l_0_r-0_1.33-1_0.1-2_0.94-3_0.7",
+          "419_l_0_r-0_1.12-1_0.54-2_0.09-3_0.14",
+          "420_l_0_r-0_0.58-1_0.53-2_0.25-3_0.76",
+          "421_l_0_r-0_0.67-1_0.56-2_0.82-3_0.69",
+          "422_l_0_r-0_0.3-1_0.23-2_1.06-3_0.22",
+          "423_l_0_r-0_0.46-1_0.88-2_0.54-3_0.19",
+          "424_l_0_r-0_0.68-1_0.72-2_0.3-3_0.05",
+          "425_l_0_r-0_1.8-1_0.57-2_0.4-3_0.54",
+          "426_l_0_r-0_1.66-1_0.42-2_1.07-3_1.17",
+          "427_l_0_r-0_0.28-1_1.09-2_1.67-3_0.44",
+          "428_l_0_r-0_0.97-1_0.91-2_0.93-3_0.17",
+          "429_l_0_r-0_0.39-1_0.74-2_0.41-3_1.48",
+          "430_l_0_r-0_0.14-1_1.1-2_0.1-3_0.18",
+          "431_l_0_r-0_0.21-1_0.67-2_0.84-3_0.98",
+          "432_l_0_r-0_0.45-1_0.37-2_2.15-3_1.28",
+          "433_l_0_r-0_0.63-1_0.27-2_1.14-3_0.74",
+          "434_l_0_r-0_2.05-1_1.55-2_1.38-3_0.66",
+          "435_l_0_r-0_0.56-1_1.1-2_2.06-3_1.01",
+          "436_l_0_r-0_0.35-1_0.19-2_1.68-3_0.07",
+          "437_l_0_r-0_1.14-1_0.09-2_0.13-3_1.67",
+          "438_l_0_r-0_0.93-1_0.97-2_0.1-3_0.51",
+          "439_l_0_r-0_0.1-1_0.47-2_0.26-3_1.0",
+          "440_l_0_r-0_0.6-1_1.74-2_0.89-3_1.37",
+          "441_l_0_r-0_0.93-1_0.67-2_0.6-3_0.18",
+          "442_l_0_r-0_1.42-1_0.52-2_0.7-3_0.16",
+          "443_l_0_r-0_1.74-1_0.66-2_0.93-3_1.04",
+          "444_l_0_r-0_0.49-1_0.26-2_0.22-3_1.12",
+          "445_l_0_r-0_1.27-1_0.3-2_1.52-3_2.28",
+          "446_l_0_r-0_0.11-1_0.01-2_0.38-3_0.69",
+          "447_l_0_r-0_1.4-1_0.74-2_0.39-3_0.12",
+          "448_l_0_r-0_0.68-1_0.55-2_0.11-3_0.01",
+          "449_l_0_r-0_0.98-1_0.85-2_2.3-3_0.91",
+          "450_l_0_r-0_1.05-1_0.17-2_2.15-3_0.37",
+          "451_l_0_r-0_0.41-1_2.16-2_0.62-3_0.07",
+          "452_l_0_r-0_0.6-1_0.34-2_1.21-3_1.22",
+          "453_l_0_r-0_0.36-1_0.45-2_0.64-3_1.11",
+          "454_l_0_r-0_0.46-1_0.14-2_0.77-3_0.57",
+          "455_l_0_r-0_1.37-1_0.41-2_1.35-3_0.08",
+          "456_l_0_r-0_0.22-1_0.44-2_0.8-3_0.0",
+          "457_l_0_r-0_0.39-1_0.51-2_0.62-3_0.03",
+          "458_l_0_r-0_1.73-1_1.12-2_0.54-3_0.34",
+          "459_l_0_r-0_0.35-1_0.3-2_0.05-3_1.08",
+          "460_l_0_r-0_0.25-1_0.35-2_2.11-3_0.13",
+          "461_l_0_r-0_0.14-1_0.54-2_0.84-3_1.53",
+          "462_l_0_r-0_0.26-1_0.47-2_1.96-3_1.54",
+          "463_l_0_r-0_0.85-1_0.52-2_0.76-3_0.56",
+          "464_l_0_r-0_1.07-1_0.65-2_0.76-3_1.28",
+          "465_l_0_r-0_0.06-1_0.12-2_0.55-3_0.39",
+          "466_l_0_r-0_0.17-1_1.1-2_0.55-3_0.33",
+          "467_l_0_r-0_1.32-1_0.43-2_0.32-3_0.11",
+          "468_l_0_r-0_0.21-1_0.67-2_2.29-3_0.39",
+          "469_l_0_r-0_0.33-1_0.86-2_0.43-3_1.67",
+          "470_l_0_r-0_1.25-1_0.34-2_1.62-3_0.14",
+          "471_l_0_r-0_1.31-1_0.89-2_1.06-3_0.96",
+          "472_l_0_r-0_0.54-1_0.28-2_1.43-3_1.45",
+          "473_l_0_r-0_1.5-1_0.71-2_0.84-3_2.07",
+          "474_l_0_r-0_0.41-1_0.46-2_0.03-3_0.32",
+          "475_l_0_r-0_0.39-1_0.59-2_0.08-3_1.04",
+          "476_l_0_r-0_1.04-1_0.76-2_0.89-3_0.11",
+          "477_l_0_r-0_0.7-1_0.07-2_0.14-3_0.24",
+          "478_l_0_r-0_1.51-1_0.06-2_2.45-3_0.89",
+          "479_l_0_r-0_0.03-1_0.9-2_1.52-3_1.44",
+          "480_l_0_r-0_0.72-1_1.42-2_0.66-3_1.44",
+          "481_l_0_r-0_0.42-1_0.54-2_1.42-3_0.72",
+          "482_l_0_r-0_0.47-1_0.18-2_1.43-3_0.75",
+          "483_l_0_r-0_0.35-1_0.23-2_1.85-3_0.8",
+          "484_l_0_r-0_0.8-1_0.63-2_0.16-3_1.11",
+          "485_l_0_r-0_0.53-1_0.03-2_0.39-3_0.03",
+          "486_l_0_r-0_1.71-1_0.22-2_2.17-3_0.87",
+          "487_l_0_r-0_1.58-1_0.16-2_1.12-3_1.06",
+          "488_l_0_r-0_0.25-1_1.15-2_0.37-3_0.96",
+          "489_l_0_r-0_0.89-1_0.96-2_0.36-3_0.36",
+          "490_l_0_r-0_0.73-1_0.43-2_0.1-3_0.15",
+          "491_l_0_r-0_1.11-1_0.38-2_0.38-3_1.34",
+          "492_l_0_r-0_0.32-1_0.05-2_0.74-3_0.58",
+          "493_l_0_r-0_0.41-1_1.23-2_0.33-3_0.49",
+          "494_l_0_r-0_0.66-1_0.08-2_0.02-3_0.17",
+          "495_l_0_r-0_0.12-1_0.68-2_1.93-3_1.65",
+          "496_l_0_r-0_0.01-1_0.11-2_0.64-3_1.75",
+          "497_l_0_r-0_0.01-1_1.34-2_0.8-3_0.43",
+          "498_l_0_r-0_1.28-1_0.43-2_1.23-3_0.22",
+          "499_l_0_r-0_1.07-1_0.34-2_0.1-3_0.62",
+          "500_l_0_r-0_1.6-1_0.17-2_0.81-3_0.7",
+          "501_l_0_r-0_0.27-1_0.28-2_0.29-3_1.1",
+          "502_l_0_r-0_0.54-1_0.11-2_1.12-3_0.67",
+          "503_l_0_r-0_0.31-1_0.8-2_0.59-3_0.45",
+          "504_l_0_r-0_0.75-1_0.21-2_1.63-3_0.16",
+          "505_l_0_r-0_2.27-1_0.27-2_0.6-3_0.51",
+          "506_l_0_r-0_0.65-1_0.38-2_0.38-3_1.07",
+          "507_l_0_r-0_0.8-1_0.08-2_0.41-3_1.02",
+          "508_l_0_r-0_0.2-1_0.84-2_1.69-3_0.94",
+          "509_l_0_r-0_0.68-1_0.01-2_0.27-3_1.39",
+          "510_l_0_r-0_1.51-1_0.01-2_0.37-3_1.37",
+          "511_l_0_r-0_0.27-1_1.11-2_0.87-3_0.93",
+          "512_l_0_r-0_1.9-1_0.25-2_0.75-3_1.18",
+          "513_l_0_r-0_0.49-1_1.6-2_0.11-3_0.51",
+          "514_l_0_r-0_1.18-1_1.02-2_0.22-3_0.62",
+          "515_l_0_r-0_0.81-1_1.54-2_0.36-3_0.13",
+          "516_l_0_r-0_0.64-1_0.06-2_0.44-3_1.48",
+          "517_l_0_r-0_0.27-1_0.7-2_0.53-3_0.56",
+          "518_l_0_r-0_1.36-1_0.79-2_0.47-3_0.07",
+          "519_l_0_r-0_0.88-1_0.44-2_0.44-3_0.43",
+          "520_l_0_r-0_0.48-1_1.12-2_1.43-3_1.05",
+          "521_l_0_r-0_0.25-1_0.62-2_0.02-3_0.49",
+          "522_l_0_r-0_0.69-1_0.87-2_0.65-3_1.12",
+          "523_l_0_r-0_1.58-1_0.97-2_0.11-3_0.55",
+          "524_l_0_r-0_1.47-1_0.11-2_0.36-3_0.05",
+          "525_l_0_r-0_1.64-1_0.61-2_1.87-3_0.62",
+          "526_l_0_r-0_1.55-1_0.02-2_0.23-3_1.35",
+          "527_l_0_r-0_1.07-1_0.2-2_0.65-3_0.4",
+          "528_l_0_r-0_0.14-1_0.92-2_0.72-3_0.25",
+          "529_l_0_r-0_1.09-1_0.99-2_0.6-3_1.79",
+          "530_l_0_r-0_0.14-1_0.04-2_0.51-3_0.81",
+          "531_l_0_r-0_1.31-1_0.51-2_1.64-3_1.34",
+          "532_l_0_r-0_1.28-1_0.1-2_0.28-3_0.4",
+          "533_l_0_r-0_0.44-1_0.53-2_1.22-3_0.53",
+          "534_l_0_r-0_1.27-1_0.68-2_1.09-3_0.24",
+          "535_l_0_r-0_1.19-1_1.21-2_0.15-3_1.47",
+          "536_l_0_r-0_0.35-1_1.06-2_0.33-3_0.66",
+          "537_l_0_r-0_0.69-1_0.84-2_0.69-3_1.92",
+          "538_l_0_r-0_0.77-1_0.84-2_0.91-3_1.1",
+          "539_l_0_r-0_1.44-1_0.51-2_0.55-3_0.76",
+          "540_l_0_r-0_1.3-1_0.01-2_1.38-3_1.18",
+          "541_l_0_r-0_1.46-1_0.07-2_1.1-3_0.69",
+          "542_l_0_r-0_0.57-1_1.16-2_0.16-3_0.37",
+          "543_l_0_r-0_0.34-1_0.19-2_0.01-3_0.27",
+          "544_l_0_r-0_0.16-1_1.34-2_0.14-3_0.04",
+          "545_l_0_r-0_0.69-1_0.5-2_0.46-3_0.01",
+          "546_l_0_r-0_0.45-1_0.86-2_0.99-3_0.4",
+          "547_l_0_r-0_2.05-1_0.91-2_0.76-3_0.98",
+          "548_l_0_r-0_1.2-1_1.93-2_1.72-3_0.3",
+          "549_l_0_r-0_0.8-1_0.35-2_1.57-3_1.34",
+          "550_l_0_r-0_0.22-1_0.79-2_0.3-3_1.4",
+          "551_l_0_r-0_0.94-1_0.08-2_0.22-3_1.15",
+          "552_l_0_r-0_0.64-1_0.02-2_1.3-3_1.05",
+          "553_l_0_r-0_0.94-1_0.85-2_0.01-3_1.11",
+          "554_l_0_r-0_0.3-1_0.34-2_0.8-3_0.5",
+          "555_l_0_r-0_0.58-1_0.39-2_0.66-3_0.4",
+          "556_l_0_r-0_0.17-1_0.38-2_1.41-3_1.19",
+          "557_l_0_r-0_0.33-1_1.41-2_0.29-3_1.07",
+          "558_l_0_r-0_0.59-1_0.59-2_0.29-3_0.65",
+          "559_l_0_r-0_0.68-1_0.62-2_0.93-3_0.07",
+          "560_l_0_r-0_0.2-1_0.73-2_1.81-3_1.1",
+          "561_l_0_r-0_0.37-1_0.43-2_1.57-3_0.5",
+          "562_l_0_r-0_0.68-1_1.41-2_0.42-3_0.63",
+          "563_l_0_r-0_1.06-1_0.11-2_0.6-3_0.71",
+          "564_l_0_r-0_0.83-1_1.06-2_0.84-3_0.24",
+          "565_l_0_r-0_0.39-1_0.09-2_1.06-3_0.17",
+          "566_l_0_r-0_0.37-1_1.46-2_1.07-3_1.0",
+          "567_l_0_r-0_0.32-1_0.64-2_0.85-3_0.74",
+          "568_l_0_r-0_0.25-1_0.4-2_0.85-3_2.11",
+          "569_l_0_r-0_0.72-1_0.46-2_0.63-3_0.36",
+          "570_l_0_r-0_0.2-1_0.05-2_1.79-3_1.38",
+          "571_l_0_r-0_0.43-1_1.36-2_0.48-3_0.27",
+          "572_l_0_r-0_0.24-1_0.96-2_1.59-3_1.53",
+          "573_l_0_r-0_0.24-1_0.2-2_1.13-3_0.1",
+          "574_l_0_r-0_0.8-1_1.59-2_0.24-3_0.32",
+          "575_l_0_r-0_1.45-1_0.65-2_0.88-3_0.09",
+          "576_l_0_r-0_0.96-1_0.78-2_0.21-3_1.67",
+          "577_l_0_r-0_0.11-1_0.28-2_1.65-3_0.37",
+          "578_l_0_r-0_1.2-1_1.53-2_0.29-3_0.77",
+          "579_l_0_r-0_0.69-1_0.3-2_0.81-3_0.51",
+          "580_l_0_r-0_0.63-1_0.29-2_2.41-3_0.77",
+          "581_l_0_r-0_0.54-1_0.1-2_0.25-3_0.69",
+          "582_l_0_r-0_0.28-1_0.74-2_0.65-3_0.98",
+          "583_l_0_r-0_0.1-1_1.09-2_1.15-3_0.53",
+          "584_l_0_r-0_0.24-1_1.64-2_1.91-3_0.24",
+          "585_l_0_r-0_0.18-1_1.38-2_0.41-3_1.43",
+          "586_l_0_r-0_1.13-1_0.45-2_0.11-3_0.46",
+          "587_l_0_r-0_0.26-1_0.41-2_0.21-3_0.72",
+          "588_l_0_r-0_0.48-1_1.13-2_0.49-3_0.25",
+          "589_l_0_r-0_0.68-1_0.04-2_3.15-3_0.73",
+          "590_l_0_r-0_0.65-1_0.08-2_0.04-3_0.14",
+          "591_l_0_r-0_1.24-1_0.17-2_0.79-3_0.45",
+          "592_l_0_r-0_0.47-1_1.09-2_1.67-3_0.2",
+          "593_l_0_r-0_0.42-1_0.82-2_0.24-3_0.34",
+          "594_l_0_r-0_0.64-1_1.16-2_0.96-3_0.13",
+          "595_l_0_r-0_1.76-1_0.81-2_2.3-3_2.65",
+          "596_l_0_r-0_1.58-1_1.13-2_0.58-3_0.23",
+          "597_l_0_r-0_1.07-1_0.62-2_0.83-3_1.64",
+          "598_l_0_r-0_0.58-1_0.52-2_1.44-3_0.45",
+          "599_l_0_r-0_1.31-1_1.0-2_0.13-3_1.32",
+          "600_l_0_r-0_0.36-1_1.64-2_0.71-3_0.63",
+          "601_l_0_r-0_0.2-1_2.12-2_0.14-3_1.34",
+          "602_l_0_r-0_0.58-1_0.27-2_0.86-3_1.06",
+          "603_l_0_r-0_0.78-1_1.43-2_0.59-3_1.07",
+          "604_l_0_r-0_1.02-1_1.14-2_0.6-3_0.59",
+          "605_l_0_r-0_0.22-1_0.81-2_0.62-3_0.76",
+          "606_l_0_r-0_0.02-1_0.02-2_0.23-3_0.1",
+          "607_l_0_r-0_0.11-1_1.37-2_1.8-3_1.14",
+          "608_l_0_r-0_0.92-1_1.22-2_1.01-3_0.56",
+          "609_l_0_r-0_1.37-1_1.21-2_0.02-3_1.8",
+          "610_l_0_r-0_0.74-1_0.3-2_0.93-3_1.31",
+          "611_l_0_r-0_0.14-1_1.04-2_0.85-3_0.12",
+          "612_l_0_r-0_1.27-1_0.74-2_0.42-3_0.67",
+          "613_l_0_r-0_0.52-1_0.55-2_1.06-3_1.18",
+          "614_l_0_r-0_0.3-1_0.99-2_1.75-3_0.41",
+          "615_l_0_r-0_0.4-1_1.15-2_0.77-3_1.73",
+          "616_l_0_r-0_0.97-1_0.35-2_0.35-3_1.35",
+          "617_l_0_r-0_1.15-1_0.96-2_0.77-3_0.21",
+          "618_l_0_r-0_0.01-1_0.82-2_0.58-3_0.18",
+          "619_l_0_r-0_0.12-1_0.91-2_0.54-3_2.02",
+          "620_l_0_r-0_1.23-1_0.11-2_1.26-3_1.34",
+          "621_l_0_r-0_0.26-1_0.37-2_0.57-3_1.26",
+          "622_l_0_r-0_0.43-1_0.86-2_0.19-3_0.95",
+          "623_l_0_r-0_1.04-1_1.08-2_1.66-3_0.12",
+          "624_l_0_r-0_0.36-1_0.75-2_0.21-3_1.8",
+          "625_l_0_r-0_0.47-1_0.93-2_1.04-3_0.59",
+          "626_l_0_r-0_0.85-1_0.26-2_0.11-3_1.53",
+          "627_l_0_r-0_0.61-1_0.05-2_0.55-3_0.16",
+          "628_l_0_r-0_0.56-1_1.74-2_0.87-3_0.83",
+          "629_l_0_r-0_0.38-1_1.33-2_0.87-3_2.11",
+          "630_l_0_r-0_1.27-1_0.78-2_1.38-3_0.22",
+          "631_l_0_r-0_0.14-1_1.36-2_2.17-3_0.63",
+          "632_l_0_r-0_0.24-1_0.22-2_1.32-3_1.75",
+          "633_l_0_r-0_1.78-1_0.83-2_1.04-3_0.69",
+          "634_l_0_r-0_0.9-1_0.83-2_1.66-3_0.95",
+          "635_l_0_r-0_0.31-1_0.21-2_1.74-3_0.05",
+          "636_l_0_r-0_1.13-1_1.04-2_0.25-3_1.34",
+          "637_l_0_r-0_1.31-1_0.89-2_0.12-3_0.96",
+          "638_l_0_r-0_0.22-1_0.89-2_3.17-3_0.91",
+          "639_l_0_r-0_0.95-1_1.51-2_0.73-3_0.49",
+          "640_l_0_r-0_0.77-1_1.72-2_0.05-3_0.44",
+          "641_l_0_r-0_1.4-1_0.09-2_0.3-3_0.97",
+          "642_l_0_r-0_0.62-1_0.09-2_0.67-3_0.03",
+          "643_l_0_r-0_1.67-1_1.05-2_0.74-3_0.59",
+          "644_l_0_r-0_0.81-1_0.89-2_1.05-3_0.0",
+          "645_l_0_r-0_0.17-1_1.03-2_1.46-3_0.7",
+          "646_l_0_r-0_0.72-1_0.25-2_1.6-3_1.45",
+          "647_l_0_r-0_0.72-1_0.18-2_0.06-3_0.14",
+          "648_l_0_r-0_1.05-1_1.14-2_0.39-3_0.84",
+          "649_l_0_r-0_0.71-1_1.65-2_0.07-3_1.2",
+          "650_l_0_r-0_0.1-1_0.22-2_0.07-3_1.32",
+          "651_l_0_r-0_0.46-1_0.67-2_1.61-3_0.4",
+          "652_l_0_r-0_0.78-1_1.21-2_0.63-3_0.18",
+          "653_l_0_r-0_0.42-1_0.85-2_0.31-3_0.43",
+          "654_l_0_r-0_1.14-1_0.07-2_0.17-3_1.77",
+          "655_l_0_r-0_0.29-1_0.14-2_1.57-3_0.95",
+          "656_l_0_r-0_1.16-1_1.78-2_1.93-3_0.38",
+          "657_l_0_r-0_0.68-1_0.96-2_1.5-3_0.58",
+          "658_l_0_r-0_1.57-1_1.09-2_0.69-3_0.1",
+          "659_l_0_r-0_0.81-1_0.03-2_0.36-3_1.67",
+          "660_l_0_r-0_0.16-1_0.66-2_1.34-3_1.14",
+          "661_l_0_r-0_1.13-1_0.58-2_0.06-3_0.21",
+          "662_l_0_r-0_0.88-1_1.13-2_1.48-3_1.35",
+          "663_l_0_r-0_2.09-1_0.13-2_0.05-3_1.8",
+          "664_l_0_r-0_1.32-1_1.49-2_0.09-3_1.72",
+          "665_l_0_r-0_0.54-1_1.36-2_0.74-3_2.08"
          ],
          "type": "scatter3d",
          "x": [
-          10.231839644180377,
-          11.278277197343936,
-          10.736893420777783,
-          7.200885447279211,
-          -10.36066896794959,
-          9.039706634199472,
-          12.081079015848742,
-          7.648874635131564,
-          9.838650368849104,
-          7.650892323397967,
-          12.023945491442426,
-          -7.432414784860294,
-          10.220981551665245,
-          12.729869516211537,
-          -9.313258173420953,
-          8.98228032085301,
-          9.345908334698349,
-          10.480000158195653,
-          9.96264777251509,
-          11.135758256790425,
-          10.626782570538687,
-          8.117142312475034,
-          10.1504504286891,
-          10.010747063073012,
-          9.432460174514395,
-          9.85161300503472,
-          -11.669782812292425,
-          -10.51683321486486,
-          10.03097364055511,
-          7.90594463812596,
-          9.028417629207238,
-          -10.493662289763593,
-          -10.345923452851485,
-          10.061880878031378,
-          -11.315309346302701,
-          9.723402486553997,
-          9.637688165267074,
-          -11.878233412877726,
-          9.554612094920026,
-          10.548800618083261,
-          11.057642996015144,
-          10.65469158439352,
-          -9.693404278887694,
-          11.054855594239157,
-          11.193368869056844,
-          10.6768328804649,
-          9.215417002443617,
-          10.960120501295389,
-          8.743597147744728,
-          10.960985533985303,
-          -10.482718787998296,
-          9.444297867992793,
-          8.842106741767576,
-          -10.53517653715152,
-          10.460849514678303,
-          8.527240609968285,
-          8.36170672751995,
-          9.816208391948226,
-          8.24929142135063,
-          11.188396910561524,
-          8.886074453525842,
-          11.447352187556302,
-          10.032026729994234,
-          9.82905385984265,
-          12.128942455270929,
-          -10.079758952710664,
-          8.34206804021043,
-          -8.475123058768544,
-          -9.704629578014622,
-          7.654200456688658,
-          12.131607288514953,
-          10.537882632758391,
-          9.692334552052376,
-          7.517217911349009,
-          10.893169199471219,
-          -11.184065800178239,
-          11.55883460728909,
-          10.68357754638305,
-          10.273499332354726,
-          9.420343951293818,
-          -11.521740343464472,
-          7.975361472006302,
-          10.134632605610596,
-          9.033503644590885,
-          10.918720743141739,
-          11.225918644011806,
-          10.293489819398838,
-          8.566047390168144,
-          11.609190661714386,
-          -9.597496203357148,
-          13.5011785296652,
-          -9.490737500510178,
-          8.492162645620821,
-          10.218263390548588,
-          -10.082289369684505,
-          10.445696971800283,
-          9.32171845739357,
-          -9.746470796399535,
-          12.563396118360885,
-          9.903378421386947,
-          9.906425300369035,
-          -8.54060418106686,
-          8.462901010825638,
-          9.250518195141915,
-          11.231096720288392,
-          10.583511843600505,
-          9.017523833458961,
-          11.325058013687208,
-          7.083790932174818,
-          -7.3781440909444935,
-          9.697654230265854,
-          9.863405705966832,
-          -10.711512821875003,
-          -9.817013415428749,
-          12.326088747890221,
-          7.827870729281437,
-          10.710908011964115,
-          12.439126966954639,
-          8.56591375705231,
-          12.111177361305499,
-          -9.349687978856645,
-          8.210956069351273,
-          8.400339220557054,
-          10.613931585262357,
-          10.87768248581527,
-          9.878643529872921,
-          9.547087469772302,
-          9.228420846437576,
-          -8.091365772984481,
-          10.982603599166833,
-          11.461473556891338,
-          8.992968722069476,
-          9.111494821275617,
-          7.61543885245529,
-          9.44689529270364,
-          11.365660647559162,
-          10.190925688061723,
-          11.996031768095003,
-          -12.267719431286055,
-          6.731706294955798,
-          10.219813118569324,
-          8.775134745148536,
-          8.40520211403969,
-          -8.992334527365278,
-          -9.290167440322538,
-          -8.135263337355116,
-          9.402218058939017,
-          8.691628706883227,
-          -10.522260628199176,
-          11.28511380106549,
-          9.684200695390366,
-          9.880050380001611,
-          11.716915490948905,
-          11.731184490457945,
-          8.798205878068066,
-          8.601173766148325,
-          8.090512237207838,
-          9.846069483588932,
-          10.993598481177223,
-          10.94447028797506,
-          8.59432801598168,
-          -10.555898295084987,
-          10.969653259457365,
-          10.40326867093771,
-          -10.765560238920111,
-          9.322254301201355,
-          10.682848670135074,
-          9.014406076581476,
-          10.56911220645289,
-          12.50947126647441,
-          9.194405730951436,
-          -10.846527291829325,
-          14.484352443014409,
-          11.954736786911077,
-          13.21311510533656,
-          7.964051613023239,
-          11.197527120978576,
-          9.728694304369066,
-          7.696928877995811,
-          10.57028072780124,
-          10.700785336147673,
-          10.527571883026086,
-          -9.95130684491289,
-          12.430659943269045,
-          7.297197057943716,
-          9.157548743159738,
-          8.341522506943422,
-          11.841907898388959,
-          11.8162499462439,
-          9.03774390161534,
-          9.181065877655762,
-          10.978448771227718,
-          9.281561357161337,
-          9.487637056262356,
-          11.310936085617405,
-          9.963718761046957,
-          11.092261194079983,
-          10.017549293726406,
-          9.04596861496883,
-          9.768634485328013,
-          10.481689635269117,
-          10.794347355576285,
-          -10.484638135908627,
-          11.310862885341464,
-          10.259538251857565,
-          9.277393442304678,
-          -9.151618886248688,
-          9.507746131837138,
-          -11.769213225998268,
-          9.573713112870278,
-          7.00045719887185,
-          -8.963323408279328,
-          9.386016257958333,
-          11.223838672075525,
-          10.60326746935472,
-          8.545537555551972,
-          11.821320855801872,
-          9.70607628556054,
-          10.593048376104225,
-          8.106437530769721,
-          9.901610492046316,
-          9.199490429235237,
-          11.035455209698272,
-          -11.581629118279906,
-          9.117908506022944,
-          11.602151378381796,
-          8.267437283143334,
-          10.691585101810793,
-          9.245166200164949,
-          9.912689837518107,
-          12.425741635189372,
-          7.111023607836367,
-          8.461810107623016,
-          8.482060324747952,
-          9.419245156476363,
-          8.933228927837948,
-          9.212392685729448,
-          13.0651675388091,
-          10.708739589158503,
-          -8.984728711112083,
-          -9.418069439534245,
-          8.601409675131183,
-          -8.631817430173756,
-          10.57873515039987,
-          10.381340608718943,
-          -9.605655135345952,
-          10.69003435116721,
-          8.961329062135905,
-          11.72778956633333,
-          9.540134044894902,
-          11.386170618879977,
-          8.986618127125546,
-          9.985053593570452,
-          -7.827979505768157,
-          -10.474408799125522,
-          -9.171030271613336,
-          10.22513138616292,
-          -11.555929320514053,
-          7.993501788899514,
-          11.398917606013356,
-          8.870447584872895,
-          10.14494493831295,
-          10.057407870248266,
-          -10.683209073516046,
-          7.82002691144903,
-          8.038454573208787,
-          9.213100297260286,
-          11.747746777752216,
-          10.836108148895903,
-          9.175552576647787,
-          9.078770230071713,
-          -8.247041303407869,
-          -7.769124789110302,
-          -10.587057643281362,
-          9.312721652269712,
-          -10.412306223107505,
-          11.550898647963313,
-          9.583300952637572,
-          10.810304277418897,
-          9.891043471778346,
-          -8.324165670455606,
-          10.810025242480439,
-          9.428960628575583,
-          -9.345665319678577,
-          11.268609164285953,
-          -10.609829142120994,
-          8.17987072768793,
-          6.324331051473564,
-          11.106291580951876,
-          8.218660802144411,
-          -9.892449729701454,
-          11.354084038124292,
-          10.572600966901634,
-          10.247195269816059,
-          8.463227155853696,
-          -9.470342938144645,
-          10.060917581915875,
-          8.550936398789535,
-          -10.828156639655612,
-          -11.576215500410074,
-          8.654941904697214,
-          -12.098880220927002,
-          9.180351152529598,
-          10.934690786919099,
-          10.413696291389186,
-          11.511172308703733,
-          8.397314995750662,
-          -11.809697234479332,
-          12.0553167789592,
-          9.337855183492573,
-          -11.164416561111416,
-          9.841672254061931,
-          8.765535917394569,
-          10.87039471636234,
-          8.442863690960117,
-          8.501856974773343,
-          7.622609412936017,
-          10.973686247352282,
-          -9.55458863381903,
-          9.060482436939234,
-          9.728717033603967,
-          10.065133983906584,
-          9.821050591386953,
-          10.828588718421777,
-          10.731241602198685,
-          10.929306766894186,
-          -7.175064659824226,
-          9.603580527017375,
-          -13.919113382971876,
-          -7.511088062432838,
-          11.229369283803507,
-          -10.129543361150052,
-          11.250782303834423,
-          10.91553588636177,
-          10.616956989156927,
-          9.916853948138725,
-          10.734912784494517,
-          11.461950819250301,
-          -9.295017470466963,
-          8.370497905899848,
-          10.19900758651262,
-          8.21320215397931,
-          10.828262573801997,
-          -10.279878840536158,
-          -11.748317749213554,
-          8.525192849638223,
-          9.050922320695843,
-          10.52640151733509,
-          -9.693624404326588,
-          9.201128003867332,
-          8.450327700771876,
-          -10.123187649464263,
-          11.367329296431688,
-          7.7351930933577915,
-          10.744179105437874,
-          11.422635056494633,
-          10.893814745629468,
-          10.806512000988512,
-          8.407419385138063,
-          9.14133297453438,
-          10.148204609397782,
-          11.148629108199291,
-          -7.184382161226715,
-          11.168487726845157,
-          -11.119117252983616,
-          10.947288077728093,
-          10.155861098499095,
-          9.96713163239682,
-          9.190426423235888,
-          -7.787417246222593,
-          8.902525891141215,
-          10.097792029807394,
-          11.299464718887346,
-          -11.399838917144526,
-          10.691198455506205,
-          10.983015358701337,
-          11.510444273797996,
-          7.645800354033765,
-          -9.247307452339877,
-          11.349617051564085,
-          8.346986377079354,
-          6.32136500355085,
-          9.76356116227832,
-          10.54072824054066,
-          11.072564761689273,
-          9.707965993040858,
-          -9.492292305742975,
-          8.902157452203262,
-          9.99850754673109,
-          9.392514100901854,
-          9.686674341827473,
-          9.548530309403786,
-          8.646047180519858,
-          -9.675576871915744,
-          10.814732833375913,
-          8.872630135169121,
-          9.733546296303523,
-          6.590430529913796,
-          10.799041043001854,
-          8.339368987023176,
-          8.678806930049003,
-          11.4078352239715,
-          9.212633518980859,
-          10.80164377402647,
-          8.943050926639124,
-          10.861391824201375,
-          11.161537397571085,
-          -9.446937324139967,
-          10.288223690419088,
-          -9.163542488351412,
-          -9.838889024610388,
-          8.331339404743947,
-          8.024909837549455,
-          8.215173812333045,
-          8.295668424295215,
-          10.634016280253554,
-          -9.091678763928655,
-          7.84961120985159,
-          10.525066945865559,
-          9.955214147888233,
-          10.0854393600447,
-          10.022721334901279,
-          -8.102250748681914,
-          8.854657804208706,
-          8.149197482592015,
-          8.859199905823374,
-          -11.873823034545124,
-          10.354989460405475,
-          11.233131395065342,
-          8.507240315057674,
-          11.39928057572402,
-          11.296496705494233,
-          9.913481361845767,
-          -10.925449816195824,
-          11.72127653375719,
-          9.112341368443913,
-          7.809786055991088,
-          12.237113229464013,
-          9.367620950001731,
-          10.241007692715677,
-          10.38618366952411,
-          10.371868830941835,
-          8.516121269010767,
-          -8.72908608300338,
-          10.999180089108506,
-          11.115214924002391,
-          9.161124649892779,
-          9.084165502346044,
-          10.324247532486607,
-          8.226065569035216,
-          9.776585216748606,
-          8.95205654176132,
-          11.107876056444827,
-          10.344023629486232,
-          10.035499709879513,
-          10.324512256529847,
-          9.949464652198149,
-          10.13018838295208,
-          11.591503600503742,
-          -8.71960598440871,
-          9.877626988258276,
-          9.120056051490497,
-          8.661859324541442,
-          10.139877976139308,
-          9.990298392890502,
-          11.279646844670554,
-          -11.321061079495708,
-          9.283505016203978,
-          8.523075828503305,
-          12.716479939190464,
-          10.281587523145149,
-          9.532591073035162,
-          9.74819592951051,
-          11.918181587645671,
-          10.621450659398386,
-          10.731690636718797,
-          9.804518285094739,
-          9.93085610183782,
-          -13.418103191651344,
-          -9.859926297363785,
-          10.723762009790914,
-          9.195712572286773,
-          -10.338221153387213,
-          11.313740635571294,
-          11.216176032396406,
-          9.986143061304748,
-          12.522599931736544,
-          9.434114802614053,
-          10.966728291358233,
-          9.54182542180542,
-          13.62445125973522,
-          11.456679666193414,
-          8.871997336971631,
-          9.626480195634405,
-          11.891096271413774,
-          -8.530844574240351,
-          -9.182164607802132,
-          10.68849323513716,
-          9.184794781184651,
-          11.557009868279138,
-          -9.507603348402617,
-          9.632572350169868,
-          7.856250836449734,
-          -9.27041020636675,
-          10.646955648334758,
-          10.045598181853148,
-          10.709803774811185,
-          11.871218084727179,
-          10.231734247003912,
-          11.311927021487366,
-          -8.8517204871407,
-          8.49786368108077,
-          8.019950574037061,
-          11.278167909598052,
-          7.950934884903353,
-          -12.26983115549755,
-          9.78471682181419,
-          9.678496184801084,
-          11.413126851090635,
-          11.05317260212729,
-          -10.08148555013811,
-          8.701899016347314,
-          -8.930434343014655,
-          11.43289437451886,
-          12.99710450147506,
-          10.791993504898931,
-          11.08725116589041,
-          9.12154998917386,
-          8.304384154821337,
-          -10.16328986016861,
-          6.8211409690698375,
-          11.44078113942978,
-          9.654826697152249,
-          10.307588174229135,
-          11.958783565516883,
-          11.443561039941633,
-          10.540482504128164,
-          10.842367725577377,
-          8.42815894311048,
-          9.418811877633821,
-          9.855792637740706,
-          9.383448693824896,
-          9.234900702254748,
-          11.081967664840956,
-          9.724070011019855,
-          10.553730601139568,
-          9.20452263714062,
-          -10.471124738161095,
-          10.997655573390908,
-          9.461676246921222,
-          10.187478373400745,
-          10.863241054176656,
-          11.150093701227137,
-          10.813003074193183,
-          12.473910329184525,
-          10.71226862988943,
-          8.207862199751814,
-          11.39666811374786,
-          -10.891924990868265,
-          11.266894339003892,
-          8.977628022277436,
-          11.469177484525181,
-          -9.669180313498815,
-          7.684427620564623,
-          9.273096948051489,
-          -10.808470680758338,
-          9.24288673722029,
-          6.520932080203706,
-          10.44220916944381,
-          10.093945424409226,
-          -9.20578830332265,
-          -10.888887864028652,
-          9.494141919934242,
-          10.83928685790211,
-          9.613732571775401,
-          -10.50467555079971,
-          9.50675908000802,
-          8.915428687496293,
-          10.100657868870817,
-          -9.934286102745661,
-          -9.580222053729944,
-          8.620445272252503,
-          -8.509415220641152,
-          11.152689263507671,
-          -11.609027675539195,
-          10.78361111846877,
-          9.879082269007924,
-          10.060572522529592,
-          -9.942777770358239,
-          -10.01694497000204,
-          9.244034282898069,
-          -8.60861361322624,
-          9.956236336431418,
-          10.067815373352667,
-          9.340097256656781,
-          9.812568564842739,
-          10.735547468363766,
-          10.67217949274209,
-          9.100686729596196,
-          10.321821673831204,
-          -9.833757305022326,
-          10.803741098306604,
-          8.63865275492058,
-          10.14625312971613,
-          11.115337317515678,
-          10.50337151995932,
-          8.42482718202234,
-          9.4179014930008,
-          -11.124939868890795,
-          -9.08801601128153,
-          10.523751788906205,
-          9.244636626705939,
-          8.932585580139172,
-          9.654205898882095,
-          9.307833704769667,
-          11.086468480950286,
-          8.969027392419559,
-          10.833743174674598,
-          10.68347166789783,
-          9.973514143683296,
-          10.402822749826539,
-          9.856314588429674,
-          -11.096018617880855,
-          12.41878006731299,
-          9.15483419727317,
-          8.778727117446332,
-          10.907281277525605,
-          9.939433768730115,
-          10.725164375719233,
-          9.740491237603838,
-          11.791375574103867,
-          -8.786494735061007,
-          9.8517442072171,
-          7.970193999880162,
-          12.02856385751879,
-          10.672161847944928,
-          -11.567640203145055,
-          8.975372784838743,
-          -9.246196873127886,
-          -11.093948272432478,
-          -10.168323645259047,
-          -10.91000339243284,
-          -9.248929843933556,
-          9.945894189701777,
-          6.609493925932785,
-          9.628615548159035,
-          9.378456667244139,
-          -12.131679637713557,
-          8.610379957824435,
-          -11.44642259285634,
-          10.841787554580472,
-          -10.88929253578112,
-          11.167674789669746,
-          10.82354194619694,
-          12.154680070279735,
-          11.759750637395687,
-          8.904095343947967,
-          9.47129470771411,
-          9.052238967130844,
-          7.391145945709324,
-          -10.957109324605382,
-          9.164756187347683,
-          -8.098356349645213,
-          9.689680623665403,
-          -9.305439672647623,
-          11.07317955893622
+          -0.9223519467538388,
+          -3.8785187988585146,
+          0.08983983209603252,
+          0.20743945006192788,
+          -2.6235064757406237,
+          0.917943572404027,
+          -2.40186630149753,
+          -0.5740309289356447,
+          0.7863611789379394,
+          0.5019616097707138,
+          -3.275185042009142,
+          -1.8869988001509912,
+          0.2649904761637156,
+          0.018119405418580703,
+          0.005392781190140639,
+          0.6592582719877518,
+          0.31514515728325065,
+          0.8792475860349853,
+          0.24276440505757857,
+          -1.7122723753239653,
+          0.5639123146706804,
+          0.44146878332384065,
+          -2.8075256240053434,
+          -2.112439624249136,
+          -0.996194615522761,
+          -0.9689191636170884,
+          0.1914125500071282,
+          0.8862557379405656,
+          -1.0801055168337925,
+          -1.654651912565412,
+          0.23008167749617892,
+          -0.9698652504789683,
+          -1.8346895695822134,
+          -0.9068438974821186,
+          -1.9099225083611044,
+          0.5552960594693812,
+          0.2833583946394844,
+          -1.091739228313504,
+          0.24659490911311677,
+          0.2838797316485755,
+          -1.2679335921102475,
+          0.8911477871598648,
+          0.4103762854188351,
+          -1.6392758038737094,
+          -0.8853643258153508,
+          -1.0070366685488268,
+          -3.1003326586599838,
+          1.5140629193067547,
+          -2.2658034637787297,
+          -2.1700849104883972,
+          -2.4839126679385877,
+          -1.046785345039444,
+          -1.4325518431799702,
+          0.6894082168516309,
+          0.15534118793262142,
+          -0.971437469440371,
+          0.5267743988423383,
+          0.509314609621083,
+          -2.826301977313583,
+          0.9565204014044058,
+          2.229114298464416,
+          -0.8804195862961209,
+          0.2020380112256457,
+          -1.242246398798493,
+          -1.4978753443244628,
+          -0.8797692799174401,
+          1.7567407224213496,
+          -2.6426077561184482,
+          -1.3534302432500458,
+          0.31050141516509977,
+          -1.8889056061239593,
+          -0.2008936377007179,
+          -0.5466012908228656,
+          -0.4631213946666901,
+          -1.8138950895362664,
+          0.22934532211093095,
+          -2.2355481370730397,
+          0.0549285203506813,
+          -3.0592997017578383,
+          -0.6759446910627394,
+          0.5761805683871508,
+          -0.6540918693822604,
+          -1.7085518503845205,
+          0.11850275216020756,
+          0.8343046446487321,
+          -1.4082603380301322,
+          0.054372513142512346,
+          -1.4716429463010623,
+          -1.4920737831447395,
+          0.21193116491413444,
+          -0.37681589011011163,
+          -0.5711317582464335,
+          0.2254199142127966,
+          2.002151350139458,
+          -0.4264265121859847,
+          -1.2840452796626387,
+          -2.278418770033441,
+          -1.043313779567856,
+          0.017042232183730244,
+          0.055908756311188856,
+          0.033135716033867224,
+          -1.1499740091844275,
+          -0.09347265773581248,
+          0.07013457669914036,
+          -0.991775396369539,
+          -2.0049418130169165,
+          -1.237599058186884,
+          0.019457014231197833,
+          0.543151963587053,
+          -1.4119016252956134,
+          0.49758322962997537,
+          0.05781028332762639,
+          -0.6512212859443027,
+          -0.5157240484481787,
+          -0.09320961105909653,
+          -0.1379135591627635,
+          0.559912140630356,
+          -1.9716573447206143,
+          0.5288321739106248,
+          -2.3500874492509802,
+          0.49021324434194935,
+          -0.743947370644019,
+          0.13444243987608284,
+          -1.8659439012837207,
+          -1.4124511395896153,
+          -1.7652907699075548,
+          0.1832725862561151,
+          0.087731933327305,
+          1.3205803777820861,
+          -1.401817967221981,
+          -0.3878601530027507,
+          0.02959791133751377,
+          0.18544363681035425,
+          -1.2378839851963737,
+          -2.386202507880806,
+          0.03911171566501137,
+          0.4276475605761818,
+          -0.27461564498625146,
+          0.11902152859586068,
+          -1.987174909141304,
+          0.11124799468443669,
+          -1.5401819901226341,
+          -2.463834311894363,
+          -1.5654199768272186,
+          0.1733021654101603,
+          -0.038627522068085174,
+          -1.0004421066191436,
+          -1.885494356141996,
+          -0.6458515443729037,
+          -0.2777105840547158,
+          0.2663514571467569,
+          -1.611738336464231,
+          0.4077322452177363,
+          -0.8434121422804637,
+          0.6613207022863554,
+          -0.422475871385774,
+          0.428037675032767,
+          -1.3470158186341534,
+          -1.113314334163461,
+          0.4381597339275758,
+          0.5820415238189238,
+          -1.535673490636394,
+          -1.0068369507827215,
+          0.5930826786445398,
+          -0.44818682216026884,
+          -1.5823115596158934,
+          0.06069029100383627,
+          0.3383945265351078,
+          0.06678618592692187,
+          -1.4469569899228585,
+          -1.2812125962375789,
+          -0.16122669629160968,
+          -1.2666117888122106,
+          -0.26546653831089806,
+          0.6676655133029541,
+          0.1767286987991723,
+          -1.3055814766042793,
+          -1.3057414779269914,
+          0.482710101111095,
+          1.261106190520405,
+          1.1927812674891856,
+          -1.8767175915510175,
+          1.1171595774983278,
+          0.8724808688613495,
+          0.6510721019163435,
+          -1.5725529018962672,
+          0.3861297314804215,
+          0.0450900161155412,
+          -1.9927275401046456,
+          -0.48859462168154144,
+          0.09249454506282717,
+          -1.9335229090313506,
+          0.505738621914561,
+          -0.21960865916895378,
+          -1.9936544412360937,
+          -1.005245112330801,
+          1.367108371380528,
+          -1.2140554350453887,
+          0.03267862725899029,
+          0.8241181890261047,
+          -0.7355155680338581,
+          -0.27990072736003846,
+          -0.26456569805050323,
+          -0.9866146941771613,
+          0.6017328034606055,
+          -0.9237624269460839,
+          -2.315005311207117,
+          0.019357012989089872,
+          0.9354158379795259,
+          -0.9161884238974047,
+          -1.1277660381887438,
+          0.8294115053146387,
+          -0.860179908426724,
+          -1.5060111639114688,
+          0.03701341517057055,
+          -0.7688331523489884,
+          -0.742208119416254,
+          -1.6852828209867956,
+          0.7398318042847862,
+          1.2963821100299935,
+          -2.5125787027723545,
+          -1.7621221441879023,
+          -1.7588265934025622,
+          0.22639063783613955,
+          -2.643899473831766,
+          -1.1842527989821228,
+          -1.1522750732087244,
+          1.3001606450236056,
+          0.14785144613399792,
+          -1.532130144631139,
+          -1.9527361221405783,
+          0.8869595356802678,
+          -1.0210165567193537,
+          -2.054603323798753,
+          -1.6253792924257904,
+          0.5564956060622215,
+          0.20089952080337725,
+          -0.8760155576831343,
+          -0.22601117653298952,
+          0.2832418426235548,
+          -0.17696663236459786,
+          -1.7066635189226111,
+          0.2662534842888351,
+          1.2526657631910578,
+          0.16757850368401672,
+          -0.7169302947343748,
+          0.19319746255237913,
+          -1.7069944504517252,
+          0.10991861417908155,
+          -3.117857829577776,
+          0.9670497519187358,
+          -2.7734159501327644,
+          -0.30528376946445235,
+          -1.3712174921532267,
+          0.5678360692148376,
+          0.6950034444442716,
+          -0.7913019757198916,
+          -1.8156074058871061,
+          0.4566281165382875,
+          0.19025335230962925,
+          0.2747549391696438,
+          -1.5876148478640681,
+          -1.446882054656088,
+          0.14984380877495562,
+          0.07749249237678879,
+          -1.1069155313175623,
+          -1.2653972533638773,
+          -0.24713116261815415,
+          0.08623667053191286,
+          -0.43763679340145856,
+          -0.4615294369100271,
+          -0.3303079087431313,
+          0.09414708291664486,
+          -1.3971053223656018,
+          -1.2933622161273284,
+          0.3847069721326313,
+          1.3747886047160884,
+          -2.195308587404562,
+          0.28907472375453414,
+          -1.5417342320510299,
+          0.4829674742522756,
+          -1.0165496471403888,
+          0.7157216636717343,
+          0.43058900159225977,
+          0.11741798351379673,
+          -2.6355026883363646,
+          -2.686086110563608,
+          -1.2558542664094485,
+          0.52327040408788,
+          -3.201866571950227,
+          -1.7216807296160377,
+          1.2367038383165672,
+          0.3034013921645895,
+          -1.5811893580645588,
+          2.474684109175074,
+          -2.1679202192248086,
+          -1.6245840788069623,
+          -0.5946934797652537,
+          -0.5636170861866644,
+          -1.350632509880746,
+          -1.1114458744267897,
+          -0.4084323622642174,
+          -0.9663122365806859,
+          -1.5214220573334956,
+          -2.2441439121543736,
+          -1.146536465724322,
+          -1.2561142709893522,
+          -1.4004304214053653,
+          -0.8810197739990477,
+          -1.164368674628662,
+          -1.0228500552670756,
+          -1.9281615168746322,
+          -1.8740005089439435,
+          -2.172304032643985,
+          -0.716534565867287,
+          -0.3270540783717406,
+          -2.6432009590619434,
+          -0.2962004319232512,
+          -1.3093129071142213,
+          -1.4933855798771132,
+          -1.7520034804542974,
+          -2.030087659305167,
+          -0.971249582604375,
+          -3.3849680106216327,
+          -1.7690154344242854,
+          -0.12356262084718428,
+          -0.4296349557405005,
+          -1.965850466075955,
+          -1.759450710866953,
+          -2.265183688913971,
+          -0.8121899573389926,
+          -2.1571132077447457,
+          -1.695166971766857,
+          -2.6435272350347647,
+          -1.2225487644896809,
+          -2.862852533520678,
+          -2.1708682074061048,
+          -1.3157398026944267,
+          -0.8423089158625198,
+          -1.0858211253666576,
+          -1.6102487850366476,
+          -0.18006522397907,
+          -0.27170368779495746,
+          -2.186226994340455,
+          -1.5172024649688205,
+          -0.0971612158291505,
+          -1.8409038917533067,
+          -1.2253705743590273,
+          -1.9994539016477146,
+          -1.1068077829409022,
+          -0.23424248384890733,
+          -2.2383353210782273,
+          -0.6172560896704682,
+          -1.9397396574470611,
+          -3.9560987848366493,
+          -0.7662443551672171,
+          -3.8795947690099806,
+          -1.135619670232026,
+          -0.6501762112973095,
+          -1.9233757492807764,
+          -3.614362082980797,
+          -0.9178313809271961,
+          -1.0448538282429363,
+          -1.7016631297150313,
+          -1.9966482407438166,
+          -0.44895654091246784,
+          -0.3824320476344065,
+          -0.16297915521669748,
+          -3.379673393567826,
+          -1.1549451903981656,
+          -2.753468764580862,
+          -1.5903711701163583,
+          -0.9817346507979542,
+          -1.4325869226275185,
+          -2.6656053135753854,
+          -0.6423816581240345,
+          -0.4951784783935279,
+          -0.4914834137697752,
+          -1.6735289368038988,
+          -1.2149087925273985,
+          -2.1601067982274773,
+          -1.1872594454598235,
+          -0.11668163630987816,
+          -1.4030322946752152,
+          -0.5998107228488951,
+          -3.340447390295396,
+          -2.009045527338936,
+          -0.45719602163765016,
+          -0.708060336941845,
+          -0.6513479819183203,
+          -1.3483759563635576,
+          -0.5541380049617531,
+          -2.726007044625665,
+          -2.522624154303167,
+          -1.233104622631168,
+          -0.48153347409499647,
+          -0.08536197681152258,
+          -0.3058644765183973,
+          -1.3549833813659948,
+          -1.3278192905674076,
+          -0.5640888069489312,
+          -0.44292837148210484,
+          -0.4106885227524638,
+          -0.5670937243830825,
+          -1.0756120110647684,
+          -0.7714796031812488,
+          -0.7300504420252172,
+          -1.2380616167964575,
+          -1.4402600998221837,
+          -0.026537277526602177,
+          -0.8119040332728503,
+          -0.4168818771702123,
+          -1.3793570712760774,
+          -0.7793980695722338,
+          -0.9675399604707501,
+          -1.1711491591715883,
+          -0.7387096539005802,
+          -1.2486765690935715,
+          -1.9719626120421976,
+          -2.670066864165439,
+          -1.3463905322244365,
+          -0.6713288626318183,
+          -0.5276328269821097,
+          -0.6738130788999322,
+          -2.2483706863251234,
+          -2.3063853512832297,
+          -1.8381736977798098,
+          -0.2793921942160362,
+          -1.4920030645636795,
+          -1.1092298905952915,
+          -1.5928302438228341,
+          -0.21208724621387276,
+          -0.9957942534247265,
+          -2.241046450974616,
+          -2.048725137460206,
+          -0.5601805415424945,
+          -2.2215273326596208,
+          -1.1409647500598048,
+          -0.9272681185293583,
+          -0.9732759717292845,
+          -0.6015190938687637,
+          -1.3838097989520124,
+          -1.4160921717605652,
+          -3.189183375918542,
+          -1.4832769750793304,
+          -1.2733225674772475,
+          -2.587991538008427,
+          -1.404843043740317,
+          -2.6365917487244674,
+          -1.4431062799055743,
+          -1.5839117357690575,
+          -0.4067418945396485,
+          -0.6040242664041262,
+          -1.1721331654852394,
+          -0.45603177820726093,
+          -1.3719512490741685,
+          -1.0253467728626244,
+          -1.1406125429553549,
+          -1.7329445340602525,
+          -0.35402327738006467,
+          -0.25281202566649363,
+          -0.14358450497461062,
+          -1.15273440657489,
+          -1.2692972635605126,
+          -2.4663503548487915,
+          -0.058074285819233684,
+          -0.16537077939025036,
+          -2.2128545349864517,
+          -0.2055757449926353,
+          -1.3940700570827544,
+          -1.2452884721590207,
+          -1.3139649058601448,
+          -0.5417475211936578,
+          -2.3826876173697116,
+          -1.3742177028614826,
+          -0.3891949319999307,
+          -3.070277966660267,
+          -0.7007351787794808,
+          -1.505052479950891,
+          -0.27770130049109065,
+          -0.721894682450489,
+          -0.9989930303621324,
+          -0.47107219942962375,
+          -0.3489350839540676,
+          -0.8016593992383111,
+          -1.7056699557125699,
+          -1.8347886607490005,
+          -2.950515632693616,
+          -1.4690594598640163,
+          -1.4504900577556472,
+          -1.389244709676231,
+          -1.5111866453862517,
+          -2.20203108151157,
+          -0.8812029463172386,
+          -0.6649216492543796,
+          -1.3820841288061405,
+          -1.9840439416337765,
+          -2.219250730490642,
+          -1.2758697341159153,
+          -1.0669569459197377,
+          -2.677686734749176,
+          -1.3114682865747587,
+          -2.5248458779654372,
+          -0.36360946533648386,
+          -0.7542847986659069,
+          -3.579878971881483,
+          -1.8072333280988724,
+          -0.8013812248592004,
+          -0.19935251763687767,
+          -1.309515475532127,
+          -2.956189669232022,
+          -0.27433541854098564,
+          -2.858247996794786,
+          -2.371418786913881,
+          -2.66999339362422,
+          -0.9680967126843597,
+          -0.6429259102053917,
+          -0.4572887453048964,
+          -1.6850006439575704,
+          -0.8761518741980633,
+          -0.48367763239108386,
+          -1.09601377883043,
+          -0.6895663599008625,
+          -1.5834090913550205,
+          -1.484960084445559,
+          -2.0881557846530012,
+          -1.5499504164213296,
+          -1.6461933315088149,
+          -0.7059444778197692,
+          -1.094805348443174,
+          -1.651879766606429,
+          -3.621119643391307,
+          -1.2787717767275368,
+          -0.43667396324299634,
+          -1.274273013984727,
+          -1.2395778236446306,
+          -1.0960505274869672,
+          -0.694059528966692,
+          -1.7525760875204746,
+          -1.9448584208191102,
+          -2.2990914632787147,
+          -1.5664392727453156,
+          -0.7312063916155651,
+          -0.3364381548332106,
+          -1.0070154673791207,
+          -1.6527881075544726,
+          -0.4458547041927733,
+          -2.052632741911191,
+          -1.7057165011887747,
+          -0.7988177207372797,
+          -1.1523644437623866,
+          -0.9371860414359277,
+          -1.6498005109835123,
+          -1.2080645499060294,
+          -2.6211665649475124,
+          -1.8879100143554148,
+          -0.1685664126760429,
+          -1.4819155064730818,
+          -0.5882872637414602,
+          -0.6780871709756517,
+          -0.20427370883944573,
+          -0.3716676695724468,
+          -0.6778919836441468,
+          -1.3936917814830239,
+          -0.8251742061889233,
+          -1.9990090590077045,
+          -0.4190202788781022,
+          -0.737106148126824,
+          -0.35571831158393874,
+          -1.0450214634422752,
+          -0.19926779049424415,
+          -0.43167096706430674,
+          -0.46193368799722967,
+          -0.2448801511993971,
+          -0.7999207363685517,
+          -1.4459426523156453,
+          -0.9615136957434017,
+          -1.805212675648212,
+          -1.2009205199267767,
+          -0.6894611788051199,
+          -0.6330780357453123,
+          -0.5353621067065089,
+          -0.8604543395802762,
+          -0.5223953266737538,
+          -0.24351889261057236,
+          -1.5652095906535788,
+          -2.453033630622084,
+          -0.6639243076226253,
+          -0.4751786968192345,
+          -0.6752571754413492,
+          -0.9537801320964824,
+          -1.8089211897865298,
+          -2.7157462580739278,
+          -1.7161928358147351,
+          -0.6355972933775356,
+          -2.761945843786086,
+          -1.580211952595887,
+          -2.508109956802065,
+          -1.5902231433524439,
+          -3.7507661565091555,
+          -0.35931285984869243,
+          -0.20178579224602655,
+          -0.9242917373350583,
+          -0.7832619397596288,
+          -1.0219752767511072,
+          -0.21685973833569994,
+          -0.020530658783453393,
+          -1.3611118736166783,
+          -0.9236719719479276,
+          -1.371009381985003,
+          -1.7087594093002447,
+          -2.1362910561814044,
+          -1.2749620397678834,
+          -0.5191483814497477,
+          -1.7252178840513772,
+          -0.39533330029111213,
+          -0.9667554931978908,
+          -1.153177649542697,
+          -1.9843031505014315,
+          -0.12239040539578505,
+          -2.1382629493231065,
+          -1.706885826939569,
+          -1.2856961570472771,
+          -1.03682220850649,
+          -2.1267908268896845,
+          -2.479300059999832,
+          -0.8460588729939185,
+          -0.6130369771183493,
+          -1.9465496265460338,
+          -0.38470642270089217,
+          -1.265477616464579,
+          -1.1540874866088182,
+          -0.24082586946015605,
+          -2.895980435675011,
+          -0.9030202678227401,
+          -0.3080464644711216,
+          -1.6198076680748825,
+          -1.3135431401197992,
+          -0.21707705767340146,
+          -0.9460121600200738,
+          -1.193249050527889,
+          -1.5854456071920553,
+          -0.6164247480326072,
+          -1.6729816843155592,
+          -2.0777259994307222,
+          -2.7345227050289775,
+          -1.2175732924924278,
+          -1.0931702670824168,
+          -1.098876129971625,
+          -1.7582030237938635,
+          -0.600215487474453,
+          -1.2459700427729612,
+          -0.7806368915296741,
+          -1.9904271748878535,
+          -1.13644595158979,
+          -0.2913349474172988,
+          -1.1683573737828403,
+          -1.7351811558625587,
+          -3.933721492209337,
+          -0.8106582360251973,
+          -0.7881373649166712,
+          -1.1333635989426298,
+          -0.8779810135873106,
+          -2.091615323407209,
+          -1.9416165346213434,
+          -2.8846579728583324
          ],
          "y": [
-          -9.520767774904979,
-          -10.73174039467776,
-          -10.439634267549685,
-          -7.7575729589510996,
-          9.840235240352069,
-          -8.830155384596969,
-          8.586097248445162,
-          -7.731128673357379,
-          -10.208616514386959,
-          -7.749823042656567,
-          -11.508520969825955,
-          10.823338953643141,
-          -10.130218449176775,
-          -11.963750656222961,
-          10.732158644828209,
-          -8.87398377936064,
-          9.243089538552317,
-          -10.70698123340281,
-          -9.953233790279416,
-          -10.70062431350712,
-          -10.40193693554807,
-          -8.293686693115582,
-          -9.742215587461967,
-          -10.717003283743422,
-          10.986163284758117,
-          9.650652874328454,
-          9.778063216164725,
-          8.922262111730381,
-          8.938667615375559,
-          -7.906009502182643,
-          -8.646194276843993,
-          10.450306356963985,
-          9.844707989078449,
-          -10.161158195336451,
-          9.05638638272806,
-          10.793386003357707,
-          -10.097944065139284,
-          8.88816168783858,
-          -9.488968951801997,
-          -10.712329491151468,
-          -10.670606231641845,
-          -10.970444057970926,
-          10.066696148908552,
-          -10.211171866163848,
-          -10.986059596375668,
-          -10.325286112836048,
-          -9.79770168702189,
-          -10.85034522416954,
-          -8.763134115884633,
-          -11.176989098486088,
-          9.746703317482968,
-          -9.67841348986313,
-          -9.866393817730913,
-          9.090143956386402,
-          11.794425318531255,
-          9.412828923399244,
-          -8.985198055495921,
-          11.62589852096658,
-          -8.689772378909792,
-          -11.05882531461035,
-          -8.835568020826125,
-          -11.124682275430139,
-          -10.944238348650716,
-          -9.949470495931761,
-          -11.400646876594987,
-          9.75334126133716,
-          10.65969606663074,
-          10.477954536053934,
-          9.897275444134733,
-          -8.14569066124004,
-          -11.396149900367487,
-          -10.771708565760676,
-          -9.817290340668114,
-          -7.878919935510836,
-          -11.189662410020887,
-          9.526827664040534,
-          8.434518798818086,
-          -10.366386018139295,
-          -9.83835195859449,
-          8.212557771510808,
-          10.011154803886603,
-          -8.399529259928359,
-          -10.157354637934137,
-          -9.278468586100812,
-          10.087874097521771,
-          -10.579227028813566,
-          -10.734612073084046,
-          -8.174456539249228,
-          -11.37933579335978,
-          10.609825147958666,
-          -13.779667239630033,
-          10.077626886586687,
-          -8.330439618823235,
-          -10.839286766141399,
-          10.13589765816301,
-          -10.396665479316844,
-          -9.69888586488554,
-          10.615829565871406,
-          -12.01257947420089,
-          -10.380663311290501,
-          -9.883700586648756,
-          10.650271207302534,
-          11.004960416112803,
-          -9.173127274824772,
-          -10.905963504350964,
-          -10.369007674154506,
-          -9.228284252778444,
-          9.48211072310975,
-          -7.355615548302708,
-          10.440028400597113,
-          -10.001970100792294,
-          -10.170697308830807,
-          9.472108396606147,
-          10.230975917114732,
-          -11.431091237276744,
-          -8.322606346953473,
-          -10.634257651112964,
-          -12.116510732839082,
-          -8.793080571190544,
-          -11.424023764062028,
-          9.970561649042315,
-          -8.522182663383344,
-          -8.640666416152664,
-          -11.015423103660485,
-          8.760457805622917,
-          -8.80409017539628,
-          11.352680323089967,
-          -10.035696456416488,
-          9.64929631677478,
-          -11.334011543570412,
-          -11.04228342502213,
-          -9.06516148853079,
-          -9.416975208757378,
-          -8.523779835070208,
-          -9.660816379053655,
-          -10.502782658397416,
-          -10.669174507917457,
-          -11.466072529024226,
-          9.88558208951689,
-          -7.168967134156171,
-          -10.220800978387741,
-          -8.857952711761717,
-          -8.199815030044736,
-          10.242785664778781,
-          9.939631697628242,
-          10.611767938253442,
-          -9.961267686509768,
-          -8.544496451908488,
-          9.396888928410046,
-          -10.741777560326861,
-          -10.063914085966392,
-          10.313837958537846,
-          -11.918005803162167,
-          -11.437024128888673,
-          -9.392018492297794,
-          -9.32064087775401,
-          -8.618914078274761,
-          -10.194453411010773,
-          -10.77271400696823,
-          9.595534348723946,
-          10.772262119248168,
-          9.959216834700097,
-          -10.82867186567791,
-          -10.026806950672063,
-          9.810624484768194,
-          9.62097215479062,
-          -10.972493981772455,
-          10.517989925987578,
-          -9.846989835139452,
-          -12.75249695547692,
-          -9.837687394451466,
-          10.441147021594409,
-          -14.108323179470498,
-          -10.664995808977748,
-          -12.480161494017283,
-          -8.435758323525636,
-          8.882919278390915,
-          10.098023761348053,
-          -7.635109528095012,
-          9.14586832178032,
-          10.846478684335718,
-          10.968561876641457,
-          10.068732388578383,
-          -11.936846002341746,
-          -8.318865600806852,
-          10.177525277026929,
-          -8.781061612241093,
-          -11.584640316183807,
-          9.71748420003949,
-          -9.054379754958608,
-          -9.13156323308255,
-          -10.171694147120586,
-          9.784227793060255,
-          -9.846316451380913,
-          -11.25895572187813,
-          -9.413069268031737,
-          -10.772661894037634,
-          10.239171818584467,
-          -9.537831577540906,
-          7.625868144896112,
-          -10.5351536572543,
-          -10.3362682743795,
-          9.927552738313496,
-          -10.556724078236043,
-          -10.147667418820483,
-          -9.840004607022333,
-          10.060349523837287,
-          8.258038921117736,
-          9.481909226831231,
-          -10.286032442025789,
-          9.76258142821983,
-          10.959179465240265,
-          10.349068194278626,
-          -10.520078408815491,
-          10.625595004417955,
-          -9.175403837387064,
-          -11.623572177833031,
-          -9.827411936763466,
-          12.294936412766022,
-          9.652540442798692,
-          -10.257638820198695,
-          9.072191397705407,
-          -11.094018737070954,
-          9.68761886822428,
-          9.671219050605595,
-          8.771618732729582,
-          -8.308169192644897,
-          8.254692959444712,
-          -9.35181705029638,
-          10.780883899873794,
-          -12.029962790174661,
-          -7.217362314810491,
-          11.021478561673636,
-          -9.000248742068509,
-          -9.943027417789127,
-          12.050286221488031,
-          -9.813024563045454,
-          -12.756034939344074,
-          9.033529653142317,
-          9.723973635829626,
-          10.71860756655679,
-          -9.131050908213023,
-          10.32019940269758,
-          -10.615684117137478,
-          11.122764832338603,
-          10.639787057123936,
-          11.668298688403342,
-          9.823194823082394,
-          -10.883457934269462,
-          -9.26617965984122,
-          -11.559672792834286,
-          9.681612973652646,
-          -10.253963627330194,
-          10.445535200669951,
-          9.63745911376466,
-          9.924786863641025,
-          8.781334885585578,
-          9.864797203645754,
-          -8.619085779738272,
-          -11.401489235357928,
-          -8.850645655420994,
-          -10.130465367030997,
-          9.025597792868108,
-          10.030861938039601,
-          -8.20022440450582,
-          11.678479515212906,
-          -9.416562337012138,
-          -11.593901672890938,
-          -9.87264998442125,
-          8.411039029756108,
-          -9.143992729743186,
-          9.619548550533274,
-          9.849034133071445,
-          9.576491413711462,
-          -9.119228427598504,
-          9.65052047618295,
-          -11.210192830917022,
-          10.822798589936307,
-          10.327467204872486,
-          -10.078788700693465,
-          10.81689742624043,
-          -10.851079465570317,
-          8.365543463463492,
-          10.655814157181076,
-          11.753696581368638,
-          10.225477312802813,
-          -9.919476424916724,
-          -6.711540736893829,
-          -10.840368136599885,
-          -8.552268879427704,
-          9.509163831706003,
-          -11.206704500902863,
-          -10.774838371582234,
-          -11.124837401919327,
-          -8.752023076822283,
-          9.144694269622258,
-          -9.776668525105787,
-          -8.193166492201087,
-          9.510518183159018,
-          9.68543156777228,
-          -8.874984867453529,
-          10.178946959584012,
-          8.48951669356931,
-          -10.664187935075287,
-          -10.733930030725793,
-          -11.221314807382733,
-          -8.156699804359992,
-          9.613491943480355,
-          -11.256074544780697,
-          12.262893327604326,
-          9.660992927198087,
-          -9.498622206386194,
-          -8.579021795079791,
-          -10.304352674504322,
-          -8.775116963915282,
-          -9.46226278337813,
-          -8.126440812429278,
-          -10.94208186704237,
-          10.547076977899708,
-          -9.427331921742496,
-          -9.888195379755087,
-          -10.000389100453361,
-          -9.886496643688261,
-          8.469908981012624,
-          11.541130849802512,
-          -10.848913605156715,
-          10.745628702333928,
-          9.100851267689864,
-          9.494122023075155,
-          10.364805856118199,
-          -10.403151275122083,
-          10.640220288414138,
-          -11.467522957058863,
-          8.392498970499945,
-          -10.645391342209518,
-          -9.50766905046996,
-          9.58102882521784,
-          -11.366875302913716,
-          10.026002757540596,
-          -9.224137155065717,
-          -10.633284399420386,
-          -8.728279800049348,
-          -10.98312201468948,
-          10.162670182642422,
-          9.276027665736008,
-          -9.112767173679558,
-          -8.905392716301112,
-          10.561351004271806,
-          10.601235356661599,
-          9.795278170780984,
-          -9.372812665485675,
-          10.411608945242918,
-          -11.261139329551694,
-          9.028838634525599,
-          -10.648005969035454,
-          -10.908562517594953,
-          10.289470691358947,
-          9.233787690063924,
-          -8.489719647264184,
-          -9.061116708319474,
-          -9.94897768737084,
-          7.28458966434332,
-          9.927272186711722,
-          -11.736051525715641,
-          10.185272017398441,
-          -10.519966158877677,
-          -9.922860273224755,
-          -10.684319269707514,
-          -9.427043916616539,
-          9.939253260712606,
-          9.27124973685278,
-          -10.434294801478226,
-          9.512266946655386,
-          9.475540851751429,
-          11.166186145154514,
-          11.141338013264757,
-          -11.157047358171024,
-          -8.229106541394566,
-          10.330637520116731,
-          -10.987208343142944,
-          -8.041911259885048,
-          -6.922861117203819,
-          -9.638105386450562,
-          -10.320604504168726,
-          -10.476108980214805,
-          -9.269375516932254,
-          9.92957817018561,
-          -9.558341753399539,
-          -10.369638916662348,
-          -9.368399836439604,
-          -9.450463403192904,
-          8.57817449389646,
-          10.86219170128463,
-          9.909738564136692,
-          -11.555362237559992,
-          -9.04982041434037,
-          -9.688085711707542,
-          -7.554154298790451,
-          10.48824693151114,
-          -8.47355372278369,
-          -9.395258229398706,
-          -11.261234236255406,
-          -9.207494246353763,
-          9.148109576139955,
-          -9.602707120447244,
-          -10.770206282712648,
-          8.756817810268453,
-          9.11550057505109,
-          -10.435330229109898,
-          10.58153779538443,
-          9.514798932827143,
-          -9.027283976759266,
-          -8.797547734018508,
-          -8.661655618105481,
-          -8.610111370829049,
-          -10.880830213687982,
-          10.206461169728053,
-          -7.865574832066077,
-          8.266758059766946,
-          -10.121094583404224,
-          -9.77861507434143,
-          11.6785409986108,
-          9.585809980605662,
-          -8.737012483549357,
-          -8.297352184677099,
-          -8.980205487750913,
-          10.152714264292996,
-          10.262174580431193,
-          -11.074515328089305,
-          11.612394560183638,
-          10.480822267290042,
-          -10.539189543652094,
-          -10.816951241261155,
-          10.335827697492595,
-          -11.279258436580927,
-          -9.311039749755766,
-          -8.282106799291881,
-          -11.641597273769847,
-          -9.28468927738382,
-          -9.87286453826516,
-          10.459356947666485,
-          11.360739938747303,
-          9.565406185443695,
-          10.26401733563101,
-          10.17238832736534,
-          8.414482988570729,
-          -9.309548581022097,
-          9.842857559241072,
-          10.66837157986072,
-          -8.873961267167072,
-          -9.617659231780822,
-          -9.697049617023191,
-          -10.535983305762857,
-          10.285310434726659,
-          -9.583573372819487,
-          10.287141604781677,
-          -9.577263336304586,
-          11.278636311644458,
-          -11.29065912387956,
-          10.214948000303494,
-          -9.833001239161705,
-          -9.516624858874144,
-          13.371007601643335,
-          -10.241869820238447,
-          8.500898123420532,
-          -11.103172128085221,
-          10.051036539242375,
-          9.527981856930234,
-          -8.593119630395352,
-          -11.967747469997738,
-          -10.967167179962148,
-          -9.529746621227332,
-          9.539206529883483,
-          -11.930082001889051,
-          -10.565240170473887,
-          -10.70837890059363,
-          -10.079306543866869,
-          -9.685403090124577,
-          9.900570095912968,
-          9.846507113473015,
-          10.367987267942787,
-          -9.393283074431672,
-          10.431759181759556,
-          -10.497577762475645,
-          -10.588180894249012,
-          -10.173720383994787,
-          -11.900777308378926,
-          8.864310986574452,
-          -11.321870871381535,
-          -9.681058461972011,
-          -13.106220786504641,
-          -10.475942067047653,
-          9.92080938483841,
-          9.647868055735001,
-          -11.803542313072462,
-          10.426574220848895,
-          9.581032714591807,
-          -10.372471344378045,
-          -8.810299296798583,
-          -11.096744965069048,
-          10.257329474528815,
-          11.042376940637592,
-          -8.008571551053915,
-          9.992691212808216,
-          -10.589742447446772,
-          -10.20050225946414,
-          -10.232913346680533,
-          -11.546549527569125,
-          -10.726114443970417,
-          8.649999527219297,
-          10.006646886456933,
-          -8.53906580842448,
-          -8.059696685839086,
-          -11.269923859033774,
-          -7.465925122967645,
-          9.905251453077396,
-          -8.81062156945855,
-          -9.679930529851692,
-          -11.5058273749951,
-          9.53426324356281,
-          10.655876959492588,
-          -9.015743834577247,
-          10.19715331761737,
-          8.14476942361977,
-          -11.732924963946255,
-          -11.143483374668516,
-          -10.5941741202066,
-          -9.23975593993205,
-          10.744087413653753,
-          9.806393777443693,
-          -7.673237924554111,
-          -11.083735938623823,
-          -9.716420879724723,
-          11.613827737143696,
-          -11.843640332501945,
-          -11.146310990248931,
-          9.51705271099771,
-          -9.931482170869856,
-          -8.199889241987561,
-          11.43831956993548,
-          -10.138497602357246,
-          12.403631209408093,
-          -9.437640171860304,
-          -11.534237764893685,
-          -9.875406487816782,
-          8.66397715554105,
-          -9.52683126199651,
-          9.772832313740484,
-          -10.877615908803698,
-          9.929515790549129,
-          -10.062008466219241,
-          -10.907433591916373,
-          -10.639938013049361,
-          -10.999138645562152,
-          -11.70467146949664,
-          -10.321666436366154,
-          -8.32108822514573,
-          -11.733297253382991,
-          9.409715401859067,
-          10.054104625167959,
-          9.854312059355514,
-          -10.86431555648007,
-          9.572773644550493,
-          -7.8452341530736005,
-          10.696008438937401,
-          10.107035572754235,
-          -9.187945387228698,
-          -8.084227283068403,
-          -10.428126125117714,
-          -10.19973680743509,
-          10.552335709102497,
-          9.85408677597745,
-          -9.145278816533397,
-          -10.603619765774047,
-          -9.784976237097354,
-          9.827875500239685,
-          -9.044643891557142,
-          -9.310351184214921,
-          -9.329282949777106,
-          10.275519391631873,
-          10.470761218780169,
-          -8.794990628274169,
-          10.734750892137413,
-          -10.932322001272674,
-          10.085617372030228,
-          -10.649302431173867,
-          9.411812251647572,
-          -9.68134230009536,
-          10.283936940747047,
-          10.495957775061962,
-          -9.204462431673882,
-          10.222345459397898,
-          -10.122536530010516,
-          -10.2674761104128,
-          -9.396286778282615,
-          8.76483089630121,
-          -11.0403662810785,
-          9.651340765584115,
-          -8.984569528530605,
-          -9.773066499882198,
-          9.508673529184726,
-          -10.563435528361142,
-          -9.62340014204678,
-          -10.696929500191711,
-          -11.03678920806918,
-          -10.406680104198227,
-          -8.473443172807695,
-          -9.346895240721102,
-          9.687490011084924,
-          10.028506635683742,
-          -10.318828771827857,
-          -9.83857890217737,
-          8.858232752077203,
-          10.305134776025088,
-          -9.912747901660426,
-          10.710954459519689,
-          -9.251757346352198,
-          -10.098531452672326,
-          9.596368662466846,
-          -10.10385734934944,
-          10.314853257050403,
-          -9.809478118455273,
-          9.630210002049028,
-          -11.55915610073994,
-          -9.109767105003616,
-          9.73547698796718,
-          -9.935881511498179,
-          -10.111966669134336,
-          11.470366216906841,
-          -9.681737630459494,
-          -11.664869964095935,
-          10.031576366666096,
-          9.518552832036884,
-          -7.759269723203586,
-          -11.66143939778855,
-          -10.57924436669521,
-          9.762777599259628,
-          -8.949391057430608,
-          9.972764202719302,
-          9.954458859604946,
-          9.228898784345104,
-          10.12715480940583,
-          9.871812870887126,
-          -9.803778055672709,
-          -7.327887867657729,
-          10.453582938573243,
-          -9.8326705644987,
-          10.511015581244926,
-          12.439348467778872,
-          10.220302009702419,
-          -11.189477196980095,
-          9.984229370103481,
-          -10.87608633600767,
-          11.406240371915182,
-          -10.912088272106692,
-          -11.2234461904231,
-          9.439888638623122,
-          -9.803403161379157,
-          -9.222833526411948,
-          -7.8104967763028466,
-          10.256089279813688,
-          -8.774407485065003,
-          10.08484600240645,
-          -9.572821092805304,
-          10.035467871477152,
-          9.442129126747236
+          0.08016293317553314,
+          0.12036955706530406,
+          0.3076352294552802,
+          -0.5547965621590076,
+          0.47033053156621585,
+          -2.1903797983185997,
+          0.16008405729259945,
+          0.00456197625187893,
+          -2.0109330707164528,
+          -2.6368227266052555,
+          0.3499322259827742,
+          0.4468076878311069,
+          -1.7130024320501076,
+          -1.3627861650917432,
+          -1.0642012258436457,
+          -0.9786978859729374,
+          -3.35177172463966,
+          -0.9939535502025456,
+          1.3632526074067517,
+          -2.922788243458347,
+          0.5610165655274562,
+          -3.475556384518818,
+          -0.048167249661313694,
+          0.4932484452866135,
+          1.3198969782145307,
+          -3.709971021101731,
+          -0.9501326037338337,
+          -1.9239711734491558,
+          -1.894888453098294,
+          0.21642227081259358,
+          -0.5788700332374555,
+          -0.25625008333111,
+          0.07439565297277295,
+          0.9695017926175049,
+          -0.8660514575461497,
+          0.5840100087408155,
+          -0.39739333936539256,
+          -4.004992478339801,
+          -2.6034172982800827,
+          0.29523667554957744,
+          -2.1371251794290034,
+          -2.477018387351297,
+          -3.2673333127663975,
+          -0.2989645095952015,
+          1.0734881032734158,
+          0.20419047521781697,
+          -1.8834578256612362,
+          -0.4554382230666729,
+          0.29634891909451566,
+          -2.241811846969027,
+          0.1538122846017549,
+          1.2662922000111094,
+          -0.1765686210260995,
+          -0.9111495366016655,
+          -1.8436879268529167,
+          -1.84263273708125,
+          -0.27834462165795815,
+          -1.3676991593127354,
+          -0.9704865039202096,
+          -1.160768469735203,
+          -1.6774984039767236,
+          -2.591989580153787,
+          0.3574260551742505,
+          2.881145405931723,
+          -1.523449013720834,
+          0.4405426048407519,
+          0.4126456380621979,
+          -2.0462166283796512,
+          0.4005048049340363,
+          0.35100402155989596,
+          -0.4485566225560148,
+          1.0438940035797302,
+          0.24154856106987488,
+          -1.8677176864593235,
+          0.6872138366730012,
+          -1.6223611586627082,
+          -2.357976594683474,
+          -0.08174213360071148,
+          0.20848966950075143,
+          -0.4290874710123521,
+          -1.712903194355493,
+          0.3444893851382542,
+          -2.0073602314507166,
+          0.6890326879106674,
+          -0.7954334770559054,
+          -2.0890181405002286,
+          -1.3021672843287526,
+          0.9027620071399609,
+          -1.734858498148454,
+          -1.4326929072530112,
+          1.0379440870888441,
+          -2.3652889881594117,
+          -0.7189468363975142,
+          -2.0211849235649746,
+          -1.4852223295554028,
+          0.34331539254050747,
+          0.027848467900298157,
+          -2.4713949501582952,
+          -0.3086624016214774,
+          -2.1846376831112284,
+          -0.7289260165758373,
+          -1.8740188877657085,
+          0.2150519623914926,
+          -2.349381197478606,
+          0.40518168085955164,
+          -0.5525782206869562,
+          0.08683548812267028,
+          -0.24064874285353444,
+          -1.8818571940982274,
+          -2.678363728440201,
+          -1.0659232424334255,
+          0.0563213177009001,
+          0.04280247340069909,
+          -0.8146941139367041,
+          0.2702946748821964,
+          0.2053879626777506,
+          -0.6247295584663541,
+          -0.5415865824457669,
+          -1.4542554294902863,
+          0.45889097550954294,
+          -1.9725248086835752,
+          -0.10777398274188565,
+          -2.06823157321674,
+          0.05005825873824654,
+          0.20006639822400674,
+          -1.3810698593411135,
+          0.40442837939626397,
+          -1.1476741671103046,
+          -0.2257383468353681,
+          -1.2926667190877934,
+          1.234995830461889,
+          0.33600258721827814,
+          -1.8727449619027625,
+          -1.8103451920801235,
+          0.714207974657137,
+          -0.9105070581424906,
+          0.9289467835050187,
+          -0.9054703185596228,
+          -2.6528236245080556,
+          0.07273533733769022,
+          0.049730890023956364,
+          -2.775027280181856,
+          1.6848773850346404,
+          0.41075417073996334,
+          -0.9163067794031924,
+          -1.3342529508395906,
+          0.5595168737505545,
+          0.7064439414907449,
+          0.34920336084669357,
+          -0.22770757005271958,
+          -1.3562815820970031,
+          0.12880731795872125,
+          -2.053909448111648,
+          -1.5839102230255446,
+          -1.201709419676099,
+          0.8280064122502258,
+          -1.5298084481434118,
+          -0.15886013463039594,
+          0.38123443439336335,
+          -1.7230048121927517,
+          -1.7988996630678336,
+          -1.3518627507409602,
+          0.7325474467424342,
+          -1.358928463100795,
+          0.7996729107207066,
+          -3.433568147715131,
+          -0.1717738578650524,
+          -0.4535657851506202,
+          -2.117421019914759,
+          -0.5492116318914229,
+          0.09645932406100766,
+          1.4145218889831424,
+          0.18613792007685404,
+          -0.8091935180858914,
+          -1.2967491360460908,
+          -0.776569983384841,
+          0.41178386403742007,
+          -2.0591130705708434,
+          -1.1787165059912534,
+          -0.9827062104988328,
+          -0.5629822857351889,
+          -1.8582809044726574,
+          -1.8342570793073758,
+          -1.9765933536480471,
+          -2.087500143221356,
+          -0.3299523313889563,
+          -1.537534311129133,
+          -1.1993181019513246,
+          0.5561495927332485,
+          -1.0876579425022659,
+          0.5842972030385698,
+          0.0509023857532942,
+          -2.4083851290486837,
+          -1.1988174520561825,
+          0.5878264664074582,
+          0.5050857683888179,
+          -0.1719294904553128,
+          -0.0207166001633019,
+          -1.304631130547421,
+          -1.460744140902917,
+          0.48103691679222926,
+          -1.467408478644697,
+          1.270443024026441,
+          1.2873851540088586,
+          -0.2536705062467186,
+          -2.927024957652849,
+          0.22265926227706867,
+          -1.259361639444172,
+          -0.4077756590126036,
+          -2.9799820117921607,
+          0.08470140046448371,
+          -1.0779657574038815,
+          0.540735112163405,
+          -1.9566899133942486,
+          0.8929365667726534,
+          0.9218241955059052,
+          0.629536901777846,
+          -1.2478328150904847,
+          0.1781402503200855,
+          -0.6703293070572267,
+          0.4959099505698694,
+          -2.0989423155847513,
+          0.45126864588743865,
+          -0.06855731190329784,
+          1.6104557331346427,
+          -0.8230423386843944,
+          0.18790380481922897,
+          -0.7810280959881701,
+          -1.7656504410526193,
+          -1.6927772038860935,
+          0.8476629685549255,
+          -2.773503020572679,
+          0.47049609194962083,
+          -1.8485560358382185,
+          0.6023487493866269,
+          -1.4594966369661906,
+          -1.4013511178974856,
+          -0.7994121008407832,
+          0.5994292065944853,
+          -0.9913544279557391,
+          0.3326091174316468,
+          -2.7187085476906434,
+          0.877833406781712,
+          -1.3063726434148335,
+          0.18551989746026964,
+          -0.11708312612224292,
+          -2.6313658864239047,
+          1.4621671787361765,
+          -1.8657235304057254,
+          -0.4146446938346471,
+          -1.0548937610195697,
+          0.4470969548894137,
+          0.5865137813243744,
+          -0.8962648985631156,
+          -2.214653547416197,
+          0.15649019202082592,
+          0.09193959347525626,
+          -2.9142934322723413,
+          -0.20438375869682168,
+          -0.26290612470902,
+          -1.3452805723281478,
+          -1.7939582462893013,
+          0.877862367496385,
+          0.3750262735303558,
+          -0.6800846670139835,
+          -1.6600452278178297,
+          0.5109174767268683,
+          0.3745826965979042,
+          0.33439467540827406,
+          -0.0818162570001919,
+          0.43259623295429894,
+          0.5224607833746155,
+          -3.0093300833360366,
+          -0.4120445346643372,
+          0.031900696070910284,
+          -0.7238624474407249,
+          -2.887201021517874,
+          -0.24206701948307308,
+          -1.221716266715092,
+          1.4734802783178673,
+          -3.355537820969158,
+          -3.152856721236086,
+          -1.3165156295537348,
+          -0.5651378266003946,
+          -2.227321452880715,
+          -1.380909267644314,
+          0.24708830992948205,
+          0.42525069539466287,
+          -0.3641683466752642,
+          -1.8705086574530392,
+          0.42768425614171335,
+          -1.961960719421744,
+          -1.8523429180065312,
+          -3.151948381541203,
+          -1.3147148020626211,
+          -2.4083199370354054,
+          -0.8727995072834565,
+          -0.2306478457179566,
+          -2.6708349232354855,
+          -0.5929560131199005,
+          -0.6176142455943663,
+          -1.1059315632447806,
+          -0.00894992060229649,
+          -0.8291985964962848,
+          -1.6249220219516494,
+          -0.17014749050205424,
+          -0.9156444054097999,
+          -2.3918354855731856,
+          -0.2343251672166955,
+          -1.4837063600658895,
+          -1.460983211195056,
+          -1.7241677931147563,
+          -2.0868708979188915,
+          -2.5213261603348167,
+          -1.0774516557851361,
+          -1.564917646126188,
+          -0.6323507561358142,
+          -0.1622321514524161,
+          -2.272626829682867,
+          -0.5988644470823143,
+          -2.8225028085430974,
+          -0.30552001542546037,
+          -0.2399289134698236,
+          -2.448105190177378,
+          -1.1292621439377035,
+          -1.6548832988303805,
+          -2.6574708808748246,
+          -0.34737130399736793,
+          -1.6690009608337224,
+          -0.4275502544866616,
+          -1.9070508372131139,
+          -0.7076779266852098,
+          -1.8389907341176368,
+          -0.6495644857978502,
+          -1.522192988191025,
+          -0.9787099958296197,
+          -0.37847336639392726,
+          -1.5262988718466854,
+          -1.6676497543478819,
+          -0.9276770372418697,
+          -1.2752180352636702,
+          -1.1845016800351436,
+          -0.08016069840672657,
+          -1.1711991148494532,
+          -0.2076666146547428,
+          -1.9530583380704978,
+          -0.12122024223249228,
+          -2.9876511868113083,
+          -1.066600712375044,
+          -2.08577528842671,
+          -0.47007108482084203,
+          -1.4666959426350685,
+          -1.4634391419687398,
+          -0.3734650033772686,
+          -0.4557438853745094,
+          -1.2228704944169984,
+          -2.1277490784443414,
+          -0.905020329286437,
+          -0.21688769753599124,
+          -0.9591263103643206,
+          -2.891339975308212,
+          -1.182575204775773,
+          -0.5982624449089109,
+          -1.4912817380893781,
+          -2.231063570041618,
+          -1.0019544339648456,
+          -1.973653446584858,
+          -0.05470046052546185,
+          -0.28135438314606376,
+          -0.7920739494336426,
+          -1.7800486434256928,
+          -1.6191352833262576,
+          -0.8727780232337564,
+          -1.6856073012825323,
+          -0.6310915985789909,
+          -2.066705553844463,
+          -1.5599547949601182,
+          -1.4972710751335594,
+          -1.264366070150757,
+          -0.21541728131225246,
+          -1.5950150618297436,
+          -0.7365573967361232,
+          -0.6829392133117698,
+          -0.6052060380165516,
+          -1.3217947847459408,
+          -1.0391873053792104,
+          -1.6412780857683535,
+          -0.45315198967602544,
+          -2.1093494715543226,
+          -0.281404304399696,
+          -0.18917122245716833,
+          -1.613886305460166,
+          -0.6346212175554755,
+          -0.7736003147037245,
+          -2.807219062759267,
+          -0.7870384311655986,
+          -1.4723194804360744,
+          -0.9455027501055413,
+          -1.5219598968665309,
+          -1.3559282290095922,
+          -1.013115903327731,
+          -0.20454965811725434,
+          -1.6803519265830194,
+          -3.1609928130575837,
+          -1.7651599114871295,
+          -1.0382024918524897,
+          -2.843469203674387,
+          -0.1597228364267974,
+          -1.8790202315989961,
+          -1.432546584041202,
+          -1.2145584336176531,
+          -2.2456730637494298,
+          -1.4206801514851257,
+          -0.07344835296798158,
+          -0.9974900822884117,
+          -0.7363019396794155,
+          -1.7842683745430024,
+          -1.7922866954638819,
+          -1.328366858082284,
+          -1.1177678442700336,
+          -2.2075959214567487,
+          -1.0441319148137134,
+          -0.2960250621425484,
+          -0.4614760986105805,
+          -0.6798854697196339,
+          -2.143520850063748,
+          -2.275194887967558,
+          -0.4797590462088217,
+          -1.1712467092169228,
+          -0.3902797623849048,
+          -0.13641969592206438,
+          -2.657260678898354,
+          -0.8808138550573743,
+          -1.457047403732227,
+          -2.868412481790094,
+          -1.1418928501396468,
+          -2.8078599225404535,
+          -1.671581505698577,
+          -2.595391318347138,
+          -0.10091695141327306,
+          -2.0683485368068553,
+          -0.9251924984229715,
+          -1.6291714404359126,
+          -1.7832005295320692,
+          -0.49122970991247705,
+          -1.6550593115551548,
+          -1.9106389431328892,
+          -1.5926719675753493,
+          -0.6807337622215368,
+          -0.9799627472961083,
+          -1.76275611793268,
+          -2.364544157077689,
+          -1.0503257548195455,
+          -0.3621680803982692,
+          -0.4648713213356296,
+          -1.7111430013517341,
+          -0.38888229276121644,
+          -0.3853764875354423,
+          -2.1423465480718504,
+          -3.1271932426580236,
+          -2.5612910045925075,
+          -0.4449460985288781,
+          -0.2585283222306417,
+          -0.847715980101345,
+          -1.2612084282143687,
+          -2.3571858314233998,
+          -3.0581892550261567,
+          -1.3209414915724285,
+          -1.8015008769070917,
+          -0.3282764925926509,
+          -1.4026747710103045,
+          -1.7001292601275062,
+          -0.963045604767678,
+          -1.4969976618208491,
+          -1.3813573468654756,
+          -1.7159226164320907,
+          -1.345698799421131,
+          -1.165125371386293,
+          -1.510855465508173,
+          -0.025298381624147548,
+          -2.3612013643133656,
+          -1.0019285480205125,
+          -2.6730928012820003,
+          -1.495181450892849,
+          -0.8524509023415512,
+          -0.533756837627765,
+          -1.8051559148437928,
+          -1.5835951465598495,
+          -0.25063047422018436,
+          -0.8926579734786475,
+          -0.7281542496058104,
+          -1.1082112055447133,
+          -0.322894789527274,
+          -1.0360807074636131,
+          -2.502770285302646,
+          -0.11804972336235486,
+          -1.9559814293205893,
+          -0.8638668911655956,
+          -1.7088927687060362,
+          -2.052322298778821,
+          -1.5995384898556264,
+          -0.2665537932903954,
+          -0.5389885169395794,
+          -0.3098183847043404,
+          -1.6034244509948086,
+          -2.267035601099129,
+          -0.6537898625524223,
+          -0.9582463886959349,
+          -1.478817690533126,
+          -0.6752291633756351,
+          -1.5137270939289755,
+          -1.435696894561215,
+          -1.9046916190708147,
+          -0.49409443940628084,
+          -1.7390289023993915,
+          -1.6850034521837025,
+          -0.6782576040510058,
+          -2.4409671386617195,
+          -1.8294576705262477,
+          -1.5928920651119176,
+          -0.8480033452178326,
+          -1.3290153694856937,
+          -0.7099052376488164,
+          -2.967140022713515,
+          -1.4741159223896263,
+          -1.6369044360666214,
+          -2.707321025524117,
+          -2.1512594346796123,
+          -0.14108401913880442,
+          -1.421702418308136,
+          -0.13602754435363051,
+          -1.382870499738198,
+          -1.483309480973615,
+          -0.7226879105079964,
+          -1.6623506473336276,
+          -1.192775020375257,
+          -0.3515781880969172,
+          -1.5270351202581112,
+          -0.7713366828720525,
+          -1.4352268358145894,
+          -1.808134190555793,
+          -1.4608046169270206,
+          -0.571254461261546,
+          -2.2561298469293494,
+          -0.1626953626090285,
+          -0.6873436033967684,
+          -2.4885008015629255,
+          -3.3294480494744625,
+          -1.1964548338579228,
+          -1.2367558579068807,
+          -0.39757858038096894,
+          -1.8625833278243942,
+          -2.1575953422045924,
+          -0.9364375542506955,
+          -0.29761873680025785,
+          -0.5801366306096654,
+          -0.8289966493151577,
+          -1.1217731039390504,
+          -0.7666966231787604,
+          -3.4670669227861346,
+          -1.060658198028272,
+          -0.48941525532344654,
+          -1.4049454446902883,
+          -1.0553552554772132,
+          -1.4322904478182243,
+          -0.39312654905756195,
+          -0.3666132622917949,
+          -0.6192151050411385,
+          -1.8233551510052544,
+          -2.5544637328875925,
+          -1.1529738244165342,
+          -1.182417177779624,
+          -1.0470110495399485,
+          -0.45577739839045506,
+          -1.9177458308647641,
+          -1.7873106934211496,
+          -1.5731407479729818,
+          -0.8751302334987094,
+          -1.8470496258858073,
+          -1.248182096780424,
+          -2.004472469724034,
+          -0.8277947580678777,
+          -0.6030112163525863,
+          -0.8928328983023536,
+          -1.531451239178117,
+          -0.1839827001039832,
+          -1.1288601825734323,
+          -0.2656021571305004,
+          -0.6724838038709382,
+          -2.1178790122765827,
+          -1.1190735435421306,
+          -1.2382327450717685,
+          -0.46902457971652245,
+          -3.3395530777036058,
+          -1.8575060969379562,
+          -1.7582538988528897,
+          -2.9230391243365252,
+          -1.144346391943734,
+          -0.5803959280116024,
+          -1.3100156090782,
+          -0.7571452993571366,
+          -1.6100748799687838,
+          -0.5756226158594131,
+          -0.9323965005034538,
+          -1.327000391847085,
+          -2.1730299589972546,
+          -3.0275145173027984,
+          -0.10576523931808934,
+          -1.552320539490426,
+          -1.7595785048099173,
+          -0.7386430258256138,
+          -0.7510967862060163,
+          -2.6699706374541563,
+          -1.5719884993510072,
+          -1.0338947333688844,
+          -1.600548258255285,
+          -1.1003415356103803,
+          -1.2593638045023134,
+          -0.005306088232624684,
+          -0.976384544950247,
+          -1.3613342259588652,
+          -0.26346645842571037,
+          -0.4282507974190479,
+          -1.8122316323234136,
+          -0.35933571377056994,
+          -0.4748089753914124,
+          -1.76484227925683,
+          -2.333631784535549,
+          -0.663542869373854,
+          -2.370587520988301,
+          -2.715849883093938,
+          -0.14004897479877643,
+          -1.8361084422329228,
+          -1.7768814198723366,
+          -1.1218348638141584,
+          -0.43705121747396714,
+          -1.8401423778878443,
+          -2.0015449719493423,
+          -0.5445869972481452,
+          -1.3908720587131311,
+          -0.791295180304262,
+          -1.4008981864826173,
+          -2.0733216136446977,
+          -1.7312822327706536,
+          -0.8082747524542948,
+          -1.9544502747705113,
+          -0.7245231070091418,
+          -0.7178776651290367,
+          -1.046398448214998,
+          -0.7128243127345708,
+          -0.10169401863579752,
+          -3.0888107838426295,
+          -0.870790690255047,
+          -0.4244483043138697,
+          -2.989228652753273,
+          -0.8217646625050969,
+          -1.6599424114735466,
+          -0.683091987005408,
+          -1.567947899425731,
+          -2.4985264700233096,
+          -0.16073454405621423,
+          -1.577683080322895,
+          -1.2090320372219123,
+          -3.42692085667908,
+          -3.4057461709913404,
+          -0.5423234311439853
          ],
          "z": [
-          -10.700648130744366,
-          -9.519505963193954,
-          -9.695100718861621,
-          -9.931986870044568,
-          -9.920895296847926,
-          -9.129523607720689,
-          -8.516345035323106,
-          -12.46143124135226,
-          -9.012175088819149,
-          -10.689359771434068,
-          -9.236896238286443,
-          -11.304418174607909,
-          -9.954052336066217,
-          -8.681407682264997,
-          -11.10118026199226,
-          -10.713251082297909,
-          -9.300527050878959,
-          -10.820512036887628,
-          -10.763605858465475,
-          -8.047702083754956,
-          -10.246439314308125,
-          -10.44768747884169,
-          -10.302120855361526,
-          -9.323790941356727,
-          -11.032023982992374,
-          -9.66406561651228,
-          -9.262856494435054,
-          -8.074140585323773,
-          -8.958093291207216,
-          -10.190843949213313,
-          -8.876187637571187,
-          -11.333567374979916,
-          -9.628021702761478,
-          -10.042508340677111,
-          -8.493531347028565,
-          -10.709849741995667,
-          -11.056763404507182,
-          -8.062627339521155,
-          -8.469003414395477,
-          -10.449025715880099,
-          -10.633444604842417,
-          -9.956928180599029,
-          -9.833763485916611,
-          -9.585218771937793,
-          -9.73993478267337,
-          -8.918236737378352,
-          -9.68207671849553,
-          -11.20949060661832,
-          -9.808078447471404,
-          -12.286766349149243,
-          -9.72674568820513,
-          -9.50562372390414,
-          -9.942640184009672,
-          -8.366712496309091,
-          -11.762746614898479,
-          -9.463466062433596,
-          -10.010138360684692,
-          -11.593808850050113,
-          -8.980095333683199,
-          -9.256425696520889,
-          -10.493820682359127,
-          -10.474803712617891,
-          -10.21985965308246,
-          -8.139099468168098,
-          -9.461397832884566,
-          -9.76771241750437,
-          -10.683163502237946,
-          -11.024359485160904,
-          -9.885921527381633,
-          -10.27268777762837,
-          -10.033226132324076,
-          -10.580985557813454,
-          -11.636289980208,
-          -11.22242547217902,
-          -10.202393443234966,
-          -8.984611610517845,
-          -8.506256548083556,
-          -9.388401409318986,
-          -11.610584839348434,
-          -8.290904377661473,
-          -9.713455429421922,
-          -9.28188718769759,
-          -9.882822699869989,
-          -11.955055595718985,
-          -10.02331612145466,
-          -10.189183740200109,
-          -11.035389195193876,
-          -9.343586158331528,
-          -9.649524776533166,
-          -11.102393794401031,
-          -11.312630887766161,
-          -10.22654602753578,
-          -10.994562573861591,
-          -11.066809335083375,
-          -10.035765544298746,
-          -9.272756552687097,
-          -9.997968969967777,
-          -10.797478150221101,
-          -8.621450781757275,
-          -12.308333390948654,
-          -8.0112639657427,
-          -11.400242704725654,
-          -10.982995902591032,
-          -11.418017446700224,
-          -8.540192613447562,
-          -8.04649132941677,
-          -10.42164451214301,
-          -9.459003658446633,
-          -10.563246949585539,
-          -11.031698138899674,
-          -9.460047140610184,
-          -9.832642896995686,
-          -8.956573513774106,
-          -10.17719783477246,
-          -9.768824470068331,
-          -8.322933452736642,
-          -9.15102745609045,
-          -10.371505893989717,
-          -9.488571062706889,
-          -8.583113450391785,
-          -9.85382918966441,
-          -10.328567699211282,
-          -10.090535381546598,
-          -10.333202963020963,
-          -8.711532268282857,
-          -10.51299010012457,
-          -11.303095064995876,
-          -9.438327604128487,
-          -9.602653655830792,
-          -9.037996316055567,
-          -9.23470859953179,
-          -8.675674428824228,
-          -11.228907216225704,
-          -9.536889045196189,
-          -10.957311706205894,
-          -6.92710017875924,
-          -9.265290806744062,
-          -8.000023472007408,
-          -9.810460041620653,
-          -9.81947181168886,
-          -9.719322980960762,
-          -11.066366877500153,
-          -10.136778054853698,
-          -10.317817817959575,
-          -9.804907219366816,
-          -10.861705747951538,
-          -9.906865860808946,
-          -11.807775116947056,
-          -8.713683065758318,
-          -9.205957662442739,
-          -8.851691402978235,
-          -10.337109202646527,
-          -10.001533130590126,
-          -9.33310158736653,
-          -10.529432322691193,
-          -9.706487656981606,
-          -11.666606481293178,
-          -9.408495233943217,
-          -10.729945033180021,
-          -9.570223150542775,
-          -10.859401465340905,
-          -9.69826691517331,
-          -10.881699730438452,
-          -12.672889444332576,
-          -9.594530710868979,
-          -9.658502940448466,
-          -10.521256849126436,
-          -10.500355289331123,
-          -8.108690514836173,
-          -8.953327373790371,
-          -8.603913391646309,
-          -10.765624893733179,
-          -7.160101652666214,
-          -9.820670505424454,
-          -9.965263473691246,
-          -9.791315888793072,
-          -8.931141309914477,
-          -9.985498609005944,
-          -10.435712270721432,
-          -9.107335234744921,
-          -10.777484271416844,
-          -11.020948396686867,
-          -9.98768027540179,
-          -9.304754268449114,
-          -11.343964858863995,
-          -10.170426851758489,
-          -9.869281773154679,
-          -9.811293319858457,
-          -9.684054457122135,
-          -10.888810264168953,
-          -9.932477250689995,
-          -11.144830814005484,
-          -9.793806172250253,
-          -10.974715004018519,
-          -10.652184792254383,
-          -12.703633200011398,
-          -9.943321517412967,
-          -10.249197155508115,
-          -10.744179994748189,
-          -7.567655277428694,
-          -10.347832310272928,
-          -9.764511489135021,
-          -9.782581410150312,
-          -8.940948913758364,
-          -7.735767160007471,
-          -10.203956034164738,
-          -9.821232727034236,
-          -8.271981039542993,
-          -9.071380664995276,
-          -12.703207834278373,
-          -9.820408157836063,
-          -11.916763592479425,
-          -10.373401052165905,
-          -10.357275435606825,
-          -10.542086264332712,
-          -10.018114258415544,
-          -9.935668357819145,
-          -10.03416920193756,
-          -12.218012067093726,
-          -9.618589786169185,
-          -9.941452060877966,
-          -9.123859817855223,
-          -9.18645178220639,
-          -9.442031355782788,
-          -9.713001637240868,
-          -8.707145410667703,
-          -10.75105116508746,
-          -8.124647245677432,
-          -10.358651959337015,
-          -10.806778311873323,
-          -8.600576137393599,
-          -10.022767027021649,
-          -11.070642688833086,
-          -12.710536505485578,
-          -8.482058866455112,
-          -12.033574620587402,
-          -8.825804982142431,
-          -9.301350376348026,
-          -9.094712578424966,
-          -9.667652213629978,
-          -11.456163983737465,
-          -12.632235986522115,
-          -10.727083159415992,
-          -7.096502108048412,
-          -11.124583435692172,
-          -11.02919058728698,
-          -11.711168823554564,
-          -9.835889339175292,
-          -9.702469450677352,
-          -7.890348700083836,
-          -9.259992483997292,
-          -9.764304931872763,
-          -10.226700752061152,
-          -10.987418816892442,
-          -9.473573459308739,
-          -9.60028115404654,
-          -8.760936118450273,
-          -9.803288694467245,
-          -11.068166460815656,
-          -11.472614202839589,
-          -9.471097365473346,
-          -10.908205305815217,
-          -9.016945494362798,
-          -9.888116486751167,
-          -9.384103762629463,
-          -11.817801325635278,
-          -10.167093343489391,
-          -13.27246702855031,
-          -10.068602589862545,
-          -8.413032348209859,
-          -13.263942955540143,
-          -9.167148309652928,
-          -9.985254944659959,
-          -9.493427521634246,
-          -11.990397710543949,
-          -9.584619060370411,
-          -9.817200040495797,
-          -10.854246988613454,
-          -10.287854829844317,
-          -10.774945186287956,
-          -11.17358039506344,
-          -13.342016062067561,
-          -8.321491625914778,
-          -11.185898364708276,
-          -11.673111982720595,
-          -10.20830410268647,
-          -9.602751152539424,
-          -10.698658751145835,
-          -11.020497259473668,
-          -10.410828316081679,
-          -9.282627540573252,
-          -10.502701608388572,
-          -9.664771188510281,
-          -9.266917759342434,
-          -9.91065459364779,
-          -8.451026087071352,
-          -9.748297615186244,
-          -11.95689548404815,
-          -9.143208754449022,
-          -9.26760607077333,
-          -10.525114372680497,
-          -10.114441926747562,
-          -8.567019931648593,
-          -8.781357885375737,
-          -7.0736381298904245,
-          -8.676516895855586,
-          -9.620574734804954,
-          -9.152488270787758,
-          -9.10690242441175,
-          -12.263253798227431,
-          -9.329424073913756,
-          -11.347542523522547,
-          -12.155353783231375,
-          -10.106336628767664,
-          -10.349167064182524,
-          -11.353413684878209,
-          -9.98718142881824,
-          -10.100980203212535,
-          -11.156527411165689,
-          -9.58031237690721,
-          -10.978058361917325,
-          -10.320681097594585,
-          -9.902616602041366,
-          -8.349984027234651,
-          -11.545793610993869,
-          -10.96970538130149,
-          -11.31535132605693,
-          -9.242175730408,
-          -8.94850284620468,
-          -10.818435771222656,
-          -11.382799249344737,
-          -11.217563555041748,
-          -9.780467125312247,
-          -8.427047255270592,
-          -11.217087567681503,
-          -10.510064126983236,
-          -9.563141749468114,
-          -9.640839353850565,
-          -10.291123194318264,
-          -11.436570819717216,
-          -9.763264251669222,
-          -10.731926059812443,
-          -9.605387199633647,
-          -10.339922128709082,
-          -8.692070817342263,
-          -9.553505297600482,
-          -11.226610556095542,
-          -10.553950917497541,
-          -10.983455238727268,
-          -9.790477533939162,
-          -11.779472425493186,
-          -10.675855617971974,
-          -11.212048596303578,
-          -9.084380592136768,
-          -9.667627743730996,
-          -11.265988990863255,
-          -10.309666999777596,
-          -9.290303303370422,
-          -11.756565445425336,
-          -10.393357377936738,
-          -10.090239045249307,
-          -7.307093013498564,
-          -10.103320111737057,
-          -9.96560969977208,
-          -10.053837030525166,
-          -9.741812594861747,
-          -8.490963301370563,
-          -11.093012688932177,
-          -10.656407949642503,
-          -9.908623795902738,
-          -9.250666273348907,
-          -11.084290326289013,
-          -9.49369810318576,
-          -9.174369398107215,
-          -11.005279967567425,
-          -11.14894773803406,
-          -11.65211000727226,
-          -11.841290274321691,
-          -10.699163187420657,
-          -9.691689212558755,
-          -8.662988928645216,
-          -10.943177738371265,
-          -9.642022980827132,
-          -10.634791330548726,
-          -11.070520379037967,
-          -9.230515347626655,
-          -9.659560574377629,
-          -10.84538754112268,
-          -8.714559098794435,
-          -9.424592944642928,
-          -10.572954883629262,
-          -8.562473790565821,
-          -10.926741031154553,
-          -9.807246702900226,
-          -10.250928767162787,
-          -10.780835809397914,
-          -9.998216077185809,
-          -11.478082438472079,
-          -10.415758828366627,
-          -10.47959590066413,
-          -7.827266702090056,
-          -9.602885159739394,
-          -10.07256854046885,
-          -9.141866385003105,
-          -11.758455286131753,
-          -11.743516175874033,
-          -8.726347232199354,
-          -8.287134081925089,
-          -10.29098893915711,
-          -10.693180135043288,
-          -9.347511984340839,
-          -9.823267118116892,
-          -11.047390953838352,
-          -11.573160332217682,
-          -11.331619537265624,
-          -9.91629333061345,
-          -10.316945889660822,
-          -10.6097860339512,
-          -8.28491536831771,
-          -11.600143939059564,
-          -11.690208977787504,
-          -11.565702985589457,
-          -9.403029827160378,
-          -9.324459078514842,
-          -10.996420506026812,
-          -9.438115336135638,
-          -10.2605039879774,
-          -10.234674261774568,
-          -8.622047851922567,
-          -11.542128663337248,
-          -10.406081420353502,
-          -9.641867098424319,
-          -8.161350989932597,
-          -10.660867386543044,
-          -8.273357471737379,
-          -8.825518394784108,
-          -9.709037621478831,
-          -10.452250590296494,
-          -9.57360744179068,
-          -9.268975686830945,
-          -10.485094853727247,
-          -11.397629651943324,
-          -9.637546639845208,
-          -10.622288788563987,
-          -10.152084553718222,
-          -8.414593273567458,
-          -13.78518211501636,
-          -9.955830794465653,
-          -10.566660752005404,
-          -9.712884030186421,
-          -9.1090735230698,
-          -10.828116840854864,
-          -8.28522563348686,
-          -10.237588719366585,
-          -9.635119356316766,
-          -10.22134686373707,
-          -9.673555329826609,
-          -11.363718048518304,
-          -10.494545905089023,
-          -10.30215594516912,
-          -10.372706321951709,
-          -9.628743127999021,
-          -13.274041512560252,
-          -10.770229654467029,
-          -8.419716603293974,
-          -10.605364506739273,
-          -9.821916682972413,
-          -9.531853629881835,
-          -11.171533525422253,
-          -10.789710230868433,
-          -9.622027231092137,
-          -10.63515505439942,
-          -9.493717869819516,
-          -9.978070591831996,
-          -8.662040040236002,
-          -11.227800623509825,
-          -9.110251705755209,
-          -8.744493141339518,
-          -9.475628543077795,
-          -9.884590538277877,
-          -10.31463954694891,
-          -10.737401163805583,
-          -10.68545496114106,
-          -10.217377665190003,
-          -9.69650788433637,
-          -10.873424262630387,
-          -10.98345090468884,
-          -8.943316044974702,
-          -10.384562629060833,
-          -9.636836967376206,
-          -8.961482576655094,
-          -8.807517023879763,
-          -9.969012456193113,
-          -9.640497699136317,
-          -10.056664054602868,
-          -10.669309828727199,
-          -9.272625517806304,
-          -10.605683043796738,
-          -12.028565916470669,
-          -9.103002489066906,
-          -10.200145869400838,
-          -10.934682618019833,
-          -10.544329846678128,
-          -10.002436444776544,
-          -9.164164979461061,
-          -9.589470942034534,
-          -10.392160177603433,
-          -9.31480564552613,
-          -10.218315510563139,
-          -8.64106982021424,
-          -10.009833558742185,
-          -10.171383721856868,
-          -9.931752079584166,
-          -9.94959670846428,
-          -9.898995838051395,
-          -9.620059154103984,
-          -9.34641693511935,
-          -8.39900456030394,
-          -8.309181188065963,
-          -9.52907697883191,
-          -11.512928016849989,
-          -9.740607640041599,
-          -10.502867585213707,
-          -8.159863166570036,
-          -8.216815118135267,
-          -12.145809045096168,
-          -10.728845817284782,
-          -9.591181917728074,
-          -10.855906874618231,
-          -9.440641517769132,
-          -11.974847840385264,
-          -9.728445546440573,
-          -9.005222090440878,
-          -11.557081170442018,
-          -8.182893813617705,
-          -7.762365333155131,
-          -9.50504011345849,
-          -9.919238532199374,
-          -9.867086523417322,
-          -11.449439872297924,
-          -11.191364139187455,
-          -12.274964512847585,
-          -10.74281437886251,
-          -10.375419761548567,
-          -9.812954399499262,
-          -8.616471900704521,
-          -9.926954573264,
-          -9.675458372079005,
-          -9.48729053665248,
-          -9.951409485009387,
-          -8.459263607663097,
-          -9.451696329548728,
-          -9.200106450538224,
-          -11.696272567074473,
-          -11.182304438815061,
-          -9.348614879692244,
-          -10.462787806922034,
-          -10.263373114707932,
-          -8.756595265976255,
-          -10.001928026918561,
-          -9.767835456622537,
-          -8.6837014448301,
-          -9.159708466361558,
-          -12.680979229029626,
-          -10.708822589964273,
-          -10.303261392907487,
-          -11.453691504963786,
-          -10.92792508049556,
-          -10.023103746294934,
-          -9.581120593627258,
-          -10.942080122966662,
-          -9.791162827439727,
-          -11.062779489587824,
-          -10.236126066484843,
-          -10.446444768674796,
-          -9.46009361416183,
-          -11.142609009215436,
-          -9.177833323190415,
-          -9.315893644679655,
-          -10.847611320266052,
-          -10.554478689106357,
-          -10.82961781079543,
-          -11.166470445725276,
-          -9.01479292652788,
-          -10.16097319086255,
-          -10.291340138084447,
-          -9.382441906001542,
-          -10.759497808900889,
-          -10.155488534229972,
-          -11.056162722058888,
-          -9.442405458382853,
-          -10.65284710430155,
-          -10.434174737727744,
-          -12.142969853412538,
-          -10.292842058859579,
-          -8.739124886914606,
-          -10.848543210151089,
-          -9.63132967283902,
-          -11.450010023213435,
-          -9.583706329551546,
-          -9.67986350115862,
-          -10.855448701290747,
-          -11.292574714005758,
-          -8.156269734264546,
-          -10.46108799969699,
-          -10.258974762889922,
-          -10.40849300864892,
-          -11.428120634081294,
-          -9.41680977723681,
-          -10.067004097414143,
-          -11.057858182647337,
-          -10.068719629365233,
-          -8.990483886105164,
-          -10.199428152414017,
-          -8.876026143712,
-          -10.718040094130874,
-          -9.405627412053025,
-          -9.367454267845872,
-          -9.566627565742152,
-          -10.294927272933565,
-          -10.334045496750354,
-          -10.754394450176472,
-          -9.324473563198396,
-          -9.634438391240261,
-          -8.736036167578089,
-          -9.697535586236558,
-          -10.47471281685434,
-          -10.376808213227587,
-          -11.55644747308222,
-          -10.908514292265746,
-          -10.910958467446926,
-          -9.888578143188946,
-          -9.52316587359717,
-          -11.323404359944206,
-          -10.471916159864712,
-          -11.611809820323632,
-          -9.782090069552078,
-          -9.52811790468674,
-          -9.858285046257931,
-          -9.693299841502819,
-          -8.68254808807082,
-          -10.134881611858772,
-          -9.764881435447464,
-          -9.912558548368834,
-          -12.749054398866281,
-          -10.45417767191756,
-          -10.35080776925371,
-          -10.943530698246663,
-          -12.42938501789001,
-          -10.331917970903861,
-          -9.29741940077223,
-          -9.779277596576833,
-          -7.581149278234921,
-          -11.360288040612478,
-          -9.432928254298009,
-          -9.926688169017552,
-          -9.417921852003948,
-          -9.809670098262627,
-          -10.96808220293132,
-          -9.53633642814599,
-          -10.265607165622633,
-          -10.221632843325041,
-          -10.22255815647702,
-          -9.006024484696955,
-          -9.946308480048335,
-          -9.439236399141347
+          -3.4395740803902997,
+          2.7245895904885993,
+          1.3480499491190816,
+          -2.484292362581148,
+          -1.4240070819821375,
+          -0.1575391234644723,
+          -1.7449766156888238,
+          0.942984851703331,
+          1.3655206253069014,
+          2.6595914119072486,
+          3.508992364275473,
+          -3.5541060804905547,
+          1.7428310693623548,
+          0.4613169716602661,
+          1.2836293872896078,
+          0.4931614882023432,
+          -4.01229521221042,
+          -1.5496896286641282,
+          -4.035200507396367,
+          -1.1863100206841204,
+          3.263895662909597,
+          -1.0224850331497888,
+          2.7607155845363254,
+          3.7696350744036105,
+          0.38328233352355223,
+          4.243793502675547,
+          0.47375601926856614,
+          1.4358510662271842,
+          -2.7221223171691125,
+          -2.3796635570257525,
+          1.2893736908143554,
+          2.7925131970363317,
+          1.5953372759931126,
+          -4.136033254374992,
+          3.412771502248807,
+          1.7632564976224332,
+          1.750982404602727,
+          3.438450505311467,
+          2.2017812476945267,
+          3.0134856049527423,
+          0.6398356785485948,
+          2.976184529523679,
+          -3.8679547871229927,
+          2.9460640049904887,
+          1.5281721217940731,
+          -0.786834478065348,
+          -2.2455200585481014,
+          -3.6004200011904053,
+          -0.782514944757768,
+          -0.11780437829853518,
+          -2.7040072536000803,
+          3.4870481675280978,
+          2.8734384594377618,
+          -2.2887553671039624,
+          4.079273313676047,
+          -3.7424699170691023,
+          -3.714221183162644,
+          2.7887380553144343,
+          1.4520439481119078,
+          -0.5632544984465642,
+          3.647947148762932,
+          -2.067798421874673,
+          -1.6055625373500653,
+          -1.450279150179841,
+          0.7268328994789073,
+          0.689761265803198,
+          -3.598872819518267,
+          3.176666180296836,
+          -0.7588583413183438,
+          1.9869197558562925,
+          1.2837543331955352,
+          -1.7160134015312623,
+          -0.13973439398007503,
+          3.427879939027247,
+          2.152259129566607,
+          -2.933876397633952,
+          2.352126096423439,
+          -3.7445531746617804,
+          3.9322552699694393,
+          3.0598615847795774,
+          1.551700155082366,
+          -0.8758669336397569,
+          -2.0549858203213724,
+          0.6384780537421131,
+          4.082011820272485,
+          -3.5296362313433303,
+          -0.4006886259234439,
+          -1.323754254528624,
+          -0.0686172592750447,
+          -2.78840273275699,
+          3.7876464555172484,
+          -3.9948197567460375,
+          3.4332206894391017,
+          2.209492014923037,
+          -3.2335035207013476,
+          -4.237570394871795,
+          -2.5771386242601526,
+          0.6887745893388395,
+          3.0635992450793728,
+          -2.2968888413727075,
+          -0.14525819478370927,
+          4.249415829326275,
+          3.5775539119725748,
+          -2.777754997728266,
+          1.521496773558317,
+          -4.250998294515096,
+          -4.166292472376218,
+          -3.1388283782116497,
+          -2.714306239007815,
+          0.9594373883912555,
+          0.5201356056230733,
+          2.0946500118155456,
+          1.7793271628699205,
+          3.084265115676411,
+          -3.767316752365702,
+          0.30152399275676256,
+          -1.5032354858713015,
+          -3.6788884029536124,
+          -0.9500627232151757,
+          0.3481562003329701,
+          3.0222769387988935,
+          3.5411329028545353,
+          -0.7151042585617122,
+          1.054826804698057,
+          -0.22582399189613422,
+          -0.3950613743545599,
+          -3.1942321646541587,
+          3.521704642121774,
+          -3.916009585780243,
+          -3.0787219717125316,
+          1.3033441117023026,
+          1.981109281452051,
+          -3.4459619381237276,
+          -0.6600397148226635,
+          -3.736533345562937,
+          -2.953896669923731,
+          3.559405085499108,
+          -0.42928976890507675,
+          1.8215160265975605,
+          3.921674113077013,
+          -4.18778699627519,
+          0.9916457188801555,
+          -1.5400246193394667,
+          -0.3025934805099144,
+          0.05668236122969539,
+          -2.717193564013076,
+          3.321649435822712,
+          -1.2595762171188944,
+          2.4662878967609094,
+          -3.23460839115661,
+          1.0362727437794756,
+          0.367785374139606,
+          -1.345146354285959,
+          -2.8085097442662112,
+          -0.9814201283955946,
+          0.2830805386883597,
+          0.2631395769791256,
+          1.8139575074560153,
+          2.2900799313297453,
+          -4.172925901240396,
+          2.332509719072113,
+          1.6448438367027425,
+          2.085436530784434,
+          3.4018732944636927,
+          2.7541326070296854,
+          0.03856254598522835,
+          2.6416497857013885,
+          1.8676044964420893,
+          -1.117204492620195,
+          -3.277771383753063,
+          -0.7237135923635103,
+          -2.180356736832857,
+          -0.464304108117203,
+          1.7173960658150795,
+          -3.709652157327633,
+          2.649962429468573,
+          4.0582493069473715,
+          3.53113594044731,
+          2.90758206041542,
+          1.5639591319489172,
+          2.380534625206357,
+          -2.3278881671521248,
+          -1.674915517931288,
+          1.921252824656488,
+          4.244871583351027,
+          -3.7419915141891553,
+          3.0190021462053362,
+          3.175176225616279,
+          -3.6234702575825426,
+          -1.8835529443493626,
+          -2.403717302655775,
+          1.672699272853304,
+          0.5423029122967709,
+          -3.976898278462299,
+          1.0668899473261817,
+          3.701948919029986,
+          2.7538822327288672,
+          4.247851649172795,
+          -3.443427677818921,
+          -2.4530555481517817,
+          2.617933800286095,
+          0.116956070469592,
+          -0.793808173368951,
+          -0.5957479459642787,
+          0.10465999746760968,
+          0.8771992508879638,
+          1.0446341132182848,
+          -0.9054855573715477,
+          -1.5832778087125128,
+          1.6185650327260133,
+          1.400245555684804,
+          0.8264106747149906,
+          -2.0069369753616986,
+          3.8138015578129894,
+          -1.5805938007989324,
+          2.984579194593204,
+          -2.1120733128934663,
+          3.4820955295510796,
+          -3.6104062060119224,
+          0.01432556871291979,
+          -3.3824262209937945,
+          -0.9376594037112103,
+          -2.4103093989991367,
+          1.0935844815419369,
+          3.188511798954469,
+          1.9811054482348327,
+          -4.241842234587552,
+          3.895412975654824,
+          -2.7271147349312823,
+          0.25579803211424146,
+          3.887408024236989,
+          -1.7865997152249955,
+          1.8286611880027177,
+          1.8540649624032177,
+          -0.29112099126676316,
+          2.636440566600845,
+          1.9855250645134435,
+          -3.98190855019614,
+          -0.01004270388424544,
+          -1.4021274332324767,
+          4.218716518989257,
+          0.7047737041835145,
+          -3.7671520444865263,
+          -3.7932933464293654,
+          3.849520644041383,
+          -0.8207313590605483,
+          0.06032547178085412,
+          -2.4121732673328116,
+          0.41154018013057314,
+          -1.1011718205271288,
+          0.9417081653242683,
+          1.0024553452458678,
+          1.8441038449907845,
+          -0.17836419343778243,
+          1.4813190832093701,
+          -1.1498437730250726,
+          -0.9425524703780059,
+          1.02912015420622,
+          -2.8098760678325663,
+          1.3510251874497046,
+          -3.800578558864684,
+          2.722469473050521,
+          -2.53119846355962,
+          1.495057864365248,
+          4.184492825408522,
+          -3.4048402184498516,
+          1.4433695180815507,
+          -1.0892909205172248,
+          -2.896035341108991,
+          -0.31464923661846766,
+          -1.501643430687678,
+          2.7137409108711665,
+          -4.186013973792229,
+          -2.718856484379428,
+          2.771726026296358,
+          -1.0575469104837798,
+          2.2230137645901484,
+          -1.8555796563413853,
+          -2.00611954586953,
+          -4.107336888674432,
+          4.037378322001833,
+          2.843709384391361,
+          -0.25659414080406817,
+          3.316537640649794,
+          4.328971694317938,
+          -3.8458431329873712,
+          1.8942515071105452,
+          -3.747230668169908,
+          -3.252855611146284,
+          0.9343321265091964,
+          -0.8069142290991449,
+          4.024764793311973,
+          3.3833977840834217,
+          -0.06353537000360188,
+          -2.2078449513238554,
+          -3.890363748587739,
+          -2.8809942337694117,
+          -2.5554185341343056,
+          3.201994756923514,
+          -2.8370907179348266,
+          2.8261161604550553,
+          1.6818316619585385,
+          2.929634976175417,
+          3.6689188781540096,
+          -3.5263314690601915,
+          0.9044728774256221,
+          -2.470052419297403,
+          3.3728450031891795,
+          1.0344969516334634,
+          4.022351114904482,
+          -2.5506153965143805,
+          -3.8420572940268385,
+          2.3049482641985373,
+          -0.7677627245567744,
+          1.2608714785333364,
+          4.180758641599238,
+          2.064119860281682,
+          -2.9707695878069362,
+          2.200376674948597,
+          -0.18716338647921482,
+          2.250047568524364,
+          1.8771763362290823,
+          -3.2021248629320453,
+          -0.47199702514698183,
+          -1.0126398607717495,
+          2.410326134407608,
+          -3.8197191654559526,
+          -1.212186154364503,
+          4.020470571453729,
+          3.7508105095711537,
+          -2.0820789991445015,
+          -3.363660062605562,
+          -1.6744358454110335,
+          2.2852097389078185,
+          2.334334781235335,
+          2.7197874157891127,
+          2.852808867619226,
+          -0.10660675067449876,
+          -1.1034258942290034,
+          2.9178599487853196,
+          -2.326728122347693,
+          1.4195213341943589,
+          -4.07898375780548,
+          0.23295730411402626,
+          -1.4401985136530104,
+          1.0970361098367043,
+          -1.7224681240197746,
+          1.528950346629724,
+          -2.3783068647411643,
+          -3.430553515556487,
+          0.6702160665985444,
+          -2.5091871565903996,
+          3.895531165453545,
+          -3.0578738838832797,
+          -2.1503239373565957,
+          -3.63577082872352,
+          -1.5582340557989278,
+          1.262871223945897,
+          -1.3703799970342607,
+          0.244591510090717,
+          2.3392588867745348,
+          0.2778802651664254,
+          -0.8735812752100109,
+          0.6680159076061392,
+          2.3984798099258064,
+          2.018305330722516,
+          -1.9916267147394757,
+          1.118771360927557,
+          -3.31463181340934,
+          2.415967634042673,
+          3.806977548517657,
+          -2.3096062548594567,
+          1.529220147195561,
+          -0.28976965492122897,
+          -3.899853130898414,
+          3.5104938415781364,
+          -4.025809533748136,
+          -4.150576027933203,
+          1.9392218100441267,
+          -2.299623921077583,
+          -2.653647806754602,
+          -0.9314302107167274,
+          0.1125371188787927,
+          3.0996044190222873,
+          -3.3049392801087603,
+          0.6927359892978515,
+          -0.20989515578612838,
+          0.9657846785492668,
+          -1.5366209998495597,
+          0.6916300153599568,
+          2.118272957596929,
+          0.4448280204275017,
+          0.4189593315074438,
+          2.2960213324017413,
+          -4.061983914195004,
+          2.9121188892857504,
+          3.428801585080156,
+          0.9904941160027221,
+          -2.0395083706494166,
+          1.3977105758071389,
+          -1.6178020509156448,
+          -0.8613549816292787,
+          -0.07946806795743999,
+          1.326752537718936,
+          -2.2522607152437355,
+          2.0049096355039984,
+          -2.192480426399284,
+          4.070996821935583,
+          -1.9936929372924679,
+          -1.3827813532240922,
+          -2.5731523241907652,
+          2.5249826940004247,
+          3.760105615637797,
+          2.3012988141715143,
+          -3.605084462317815,
+          -3.4933262162153835,
+          -1.3919775547977125,
+          -0.4956639579772193,
+          3.593389862647909,
+          3.5017989754383905,
+          -0.5788746802313707,
+          2.5589937726314345,
+          -2.2687323453386994,
+          -2.5595717178260737,
+          -2.630309531281611,
+          -1.804883688835074,
+          -1.6561735943731475,
+          -0.534547405862837,
+          -0.9702132232241429,
+          0.4444885185069438,
+          4.109196516250557,
+          3.619138272405854,
+          0.45131023876607035,
+          -0.6317496663629867,
+          -2.6464449509432217,
+          1.0438367392912538,
+          -0.3532940721718685,
+          -2.3503985073353473,
+          -1.8941743329303913,
+          4.217355304624646,
+          1.0020576103644903,
+          -1.7471601262634664,
+          4.002120568717381,
+          1.7411448783210366,
+          3.7061094658138813,
+          -3.3341537104503893,
+          -0.10755352949184971,
+          -4.097358920512976,
+          2.896398800385459,
+          -1.0300898432584695,
+          -1.0501692091327528,
+          -4.077193027724339,
+          0.9644460564324069,
+          1.159784496843268,
+          1.367382952844518,
+          3.912207762525143,
+          0.21575211536814898,
+          -0.9462468025913342,
+          -2.0374300975189312,
+          1.6282966443149665,
+          -1.49399594250339,
+          1.6799930729996362,
+          3.8207422399257043,
+          -1.6721756737218763,
+          1.0741571751934549,
+          -4.196499685001836,
+          1.412393894907158,
+          -3.2942872448768723,
+          0.2494673425158105,
+          4.3377784165343565,
+          3.2487202566622058,
+          2.243601895775728,
+          1.8035575028246074,
+          3.0402051950244324,
+          0.4085204442882482,
+          2.176273798296849,
+          1.0350522302852578,
+          -0.7285311491514972,
+          3.8693198596863025,
+          -2.938389985118127,
+          -2.9015747017216,
+          0.4209414087041399,
+          -1.6087108556908594,
+          3.6755396432063225,
+          -2.6163250229049946,
+          -1.398821363097357,
+          -1.7083338342582683,
+          -3.6143134315581236,
+          -2.8029233851233246,
+          -4.151118836335982,
+          2.933138111711698,
+          2.9806313305654557,
+          -1.0510644913415357,
+          -0.41105356875121535,
+          -3.5113575943384614,
+          -2.347935515207045,
+          -0.014405421453146161,
+          0.008719388674142792,
+          -1.709879366198693,
+          -3.0900986567216355,
+          -2.572591269818741,
+          2.1315944045566715,
+          3.4398031819032804,
+          1.8780032559450444,
+          0.9167979922799869,
+          2.8129381090543264,
+          4.028677406868579,
+          1.9548162131613624,
+          -3.032177096575489,
+          1.1077263608258958,
+          -3.141119943282743,
+          -2.9994599040312053,
+          -2.3327064636602275,
+          -3.8553668501034117,
+          -1.182530707838224,
+          -0.8053814043341792,
+          -4.071961442131636,
+          -0.26566674726222184,
+          1.3618096437765939,
+          -1.284420225449988,
+          0.5755237895993597,
+          0.24835731537658123,
+          -2.952244323383077,
+          -3.800307324772234,
+          -1.963164263763824,
+          -1.6795156255635635,
+          3.9670104080065114,
+          1.0709419757667389,
+          -3.5118127294988932,
+          3.591803864055872,
+          -1.1747116372260225,
+          1.3055167775535743,
+          -2.822980560055504,
+          4.25531619542599,
+          1.8149411089321514,
+          -1.533264402400802,
+          -4.140714980162716,
+          1.7681382540062032,
+          3.3091924428486195,
+          1.9809125266062741,
+          -1.304454738228114,
+          -2.7190388211810683,
+          3.1562424961703357,
+          4.101642179820188,
+          3.9462404545536947,
+          -2.604839553744437,
+          -1.0111108708661698,
+          -2.2942200920751255,
+          -1.6928620688376586,
+          -3.493125029160003,
+          0.22332677321563832,
+          2.405828963541686,
+          -0.6433230480159753,
+          -3.2717811498079334,
+          -3.097333886440178,
+          3.338783587017831,
+          2.9985116807814247,
+          -0.3256636460280111,
+          -0.8977633308674773,
+          -2.3295685774896953,
+          -1.4156039945113474,
+          3.8933320496977464,
+          2.079648599750209,
+          -4.028090693379466,
+          2.529784418947333,
+          -3.4351256049819363,
+          3.9776761641852003,
+          0.32256328146855484,
+          -0.2455353482394571,
+          0.7160495086717082,
+          -3.376721680903367,
+          -2.6798842447746027,
+          0.23971420990065084,
+          2.823035772838236,
+          2.42674595285954,
+          -1.5307110654794291,
+          1.3782650310208826,
+          -0.11126115445366924,
+          -3.586318814067428,
+          4.077124178843378,
+          3.7075485140112487,
+          3.647722745406595,
+          0.27668443732350045,
+          -0.0980441455546881,
+          2.6413422947530307,
+          2.8328043389223954,
+          1.7767800536387188,
+          0.26491958469323773,
+          -1.462534819744135,
+          -2.8027447208077207,
+          0.6464181837625516,
+          -2.657341934831715,
+          -0.6683160307965812,
+          -0.41554742186194105,
+          1.6657719018006665,
+          2.390230302075074,
+          -3.3993203848109386,
+          1.0704436458848585,
+          4.327026449063914,
+          -1.830165797567167,
+          -1.2174673259786908,
+          0.40616237763584895,
+          -3.393211386658459,
+          3.3996060806525605,
+          -3.443403959953373,
+          1.1547179577777626,
+          -3.7628763442466515,
+          2.1829073754745574,
+          2.6454949905643694,
+          1.3884718637514561,
+          1.8504241835089994,
+          0.13841712441924958,
+          1.3081060118215904,
+          -2.453426850648283,
+          -0.29922839418389247,
+          -3.9515960714454126,
+          -3.1307302986046763,
+          3.938415952766799,
+          -0.8171020286892738,
+          0.6114999045897012,
+          -1.2317901641265547,
+          3.62032956910748,
+          1.2196225737045951,
+          -3.191859657011696,
+          -3.9413527441158545,
+          2.625659900422888,
+          -3.315325601374892,
+          -3.3698280021393163,
+          0.5616466425769042,
+          -1.3207610874506686,
+          -2.3893547211517987,
+          1.7469803649313516,
+          -0.3183238648560427,
+          -2.078401618854661,
+          1.5067568004505159,
+          3.6662429277165423,
+          -1.130375533873822,
+          2.796567504137095,
+          3.3845880009945057,
+          3.0184242686480074,
+          0.7661407263956201,
+          1.716591373007554,
+          -2.263774167588834,
+          -1.9646171214742258,
+          0.963136767302653,
+          -0.17027971691677202,
+          -2.809847588630393,
+          1.2335693798542913,
+          -3.5037162882733757,
+          -2.7753289824193983,
+          0.9176652350647476,
+          0.46448207558012466,
+          -4.165378003893153,
+          4.288972609470332,
+          2.6618602412518895,
+          0.30303788944496457,
+          -1.1643485063855192,
+          3.5003789070912994,
+          -3.1033786330525897,
+          3.084604328507643,
+          3.2027332021867174,
+          3.0374740063828947,
+          2.803661123404786,
+          3.5729389746491975,
+          -1.3236386225464538,
+          -1.4304394562949887
          ]
         },
         {
@@ -3177,2677 +3147,2677 @@
          "scene": "scene",
          "showlegend": true,
          "text": [
-          "example_0",
-          "example_3",
-          "example_5",
-          "example_6",
-          "example_7",
-          "example_9",
-          "example_10",
-          "example_12",
-          "example_18",
-          "example_24",
-          "example_25",
-          "example_27",
-          "example_28",
-          "example_31",
-          "example_33",
-          "example_38",
-          "example_39",
-          "example_41",
-          "example_42",
-          "example_47",
-          "example_48",
-          "example_52",
-          "example_54",
-          "example_55",
-          "example_57",
-          "example_60",
-          "example_62",
-          "example_66",
-          "example_68",
-          "example_74",
-          "example_77",
-          "example_79",
-          "example_80",
-          "example_82",
-          "example_83",
-          "example_85",
-          "example_86",
-          "example_88",
-          "example_90",
-          "example_92",
-          "example_94",
-          "example_96",
-          "example_97",
-          "example_102",
-          "example_104",
-          "example_105",
-          "example_106",
-          "example_108",
-          "example_110",
-          "example_113",
-          "example_117",
-          "example_125",
-          "example_126",
-          "example_129",
-          "example_131",
-          "example_132",
-          "example_133",
-          "example_136",
-          "example_137",
-          "example_138",
-          "example_139",
-          "example_140",
-          "example_142",
-          "example_144",
-          "example_145",
-          "example_147",
-          "example_155",
-          "example_156",
-          "example_158",
-          "example_164",
-          "example_165",
-          "example_167",
-          "example_169",
-          "example_171",
-          "example_172",
-          "example_174",
-          "example_177",
-          "example_178",
-          "example_179",
-          "example_181",
-          "example_183",
-          "example_193",
-          "example_195",
-          "example_204",
-          "example_209",
-          "example_213",
-          "example_214",
-          "example_215",
-          "example_221",
-          "example_222",
-          "example_223",
-          "example_224",
-          "example_227",
-          "example_228",
-          "example_232",
-          "example_234",
-          "example_235",
-          "example_238",
-          "example_242",
-          "example_243",
-          "example_248",
-          "example_249",
-          "example_255",
-          "example_258",
-          "example_260",
-          "example_267",
-          "example_280",
-          "example_282",
-          "example_285",
-          "example_287",
-          "example_290",
-          "example_291",
-          "example_294",
-          "example_296",
-          "example_299",
-          "example_302",
-          "example_308",
-          "example_312",
-          "example_314",
-          "example_318",
-          "example_319",
-          "example_321",
-          "example_323",
-          "example_325",
-          "example_326",
-          "example_327",
-          "example_328",
-          "example_329",
-          "example_333",
-          "example_336",
-          "example_338",
-          "example_341",
-          "example_346",
-          "example_347",
-          "example_348",
-          "example_349",
-          "example_355",
-          "example_357",
-          "example_359",
-          "example_360",
-          "example_362",
-          "example_364",
-          "example_370",
-          "example_372",
-          "example_373",
-          "example_375",
-          "example_377",
-          "example_386",
-          "example_388",
-          "example_389",
-          "example_390",
-          "example_404",
-          "example_409",
-          "example_410",
-          "example_419",
-          "example_421",
-          "example_423",
-          "example_424",
-          "example_428",
-          "example_430",
-          "example_434",
-          "example_435",
-          "example_440",
-          "example_442",
-          "example_446",
-          "example_447",
-          "example_448",
-          "example_449",
-          "example_451",
-          "example_457",
-          "example_458",
-          "example_460",
-          "example_461",
-          "example_467",
-          "example_468",
-          "example_475",
-          "example_477",
-          "example_490",
-          "example_491",
-          "example_499",
-          "example_500",
-          "example_501",
-          "example_503",
-          "example_504",
-          "example_516",
-          "example_523",
-          "example_525",
-          "example_528",
-          "example_531",
-          "example_533",
-          "example_536",
-          "example_539",
-          "example_541",
-          "example_542",
-          "example_545",
-          "example_547",
-          "example_549",
-          "example_553",
-          "example_558",
-          "example_560",
-          "example_566",
-          "example_568",
-          "example_571",
-          "example_573",
-          "example_578",
-          "example_587",
-          "example_589",
-          "example_594",
-          "example_597",
-          "example_601",
-          "example_603",
-          "example_605",
-          "example_615",
-          "example_621",
-          "example_622",
-          "example_624",
-          "example_626",
-          "example_629",
-          "example_634",
-          "example_636",
-          "example_638",
-          "example_643",
-          "example_644",
-          "example_649",
-          "example_652",
-          "example_657",
-          "example_660",
-          "example_661",
-          "example_664",
-          "example_665",
-          "example_666",
-          "example_667",
-          "example_668",
-          "example_669",
-          "example_671",
-          "example_672",
-          "example_673",
-          "example_676",
-          "example_677",
-          "example_682",
-          "example_688",
-          "example_691",
-          "example_695",
-          "example_697",
-          "example_700",
-          "example_708",
-          "example_711",
-          "example_713",
-          "example_714",
-          "example_716",
-          "example_718",
-          "example_722",
-          "example_723",
-          "example_724",
-          "example_731",
-          "example_732",
-          "example_735",
-          "example_737",
-          "example_739",
-          "example_743",
-          "example_750",
-          "example_754",
-          "example_756",
-          "example_762",
-          "example_770",
-          "example_772",
-          "example_778",
-          "example_782",
-          "example_783",
-          "example_786",
-          "example_793",
-          "example_796",
-          "example_798",
-          "example_799",
-          "example_803",
-          "example_809",
-          "example_810",
-          "example_811",
-          "example_814",
-          "example_816",
-          "example_820",
-          "example_823",
-          "example_826",
-          "example_828",
-          "example_836",
-          "example_839",
-          "example_841",
-          "example_842",
-          "example_844",
-          "example_846",
-          "example_847",
-          "example_852",
-          "example_857",
-          "example_858",
-          "example_859",
-          "example_862",
-          "example_864",
-          "example_867",
-          "example_868",
-          "example_869",
-          "example_874",
-          "example_875",
-          "example_881",
-          "example_882",
-          "example_885",
-          "example_888",
-          "example_889",
-          "example_893",
-          "example_894",
-          "example_898",
-          "example_899",
-          "example_901",
-          "example_903",
-          "example_908",
-          "example_910",
-          "example_912",
-          "example_916",
-          "example_917",
-          "example_918",
-          "example_921",
-          "example_922",
-          "example_924",
-          "example_932",
-          "example_933",
-          "example_934",
-          "example_938",
-          "example_940",
-          "example_941",
-          "example_944",
-          "example_945",
-          "example_946",
-          "example_950",
-          "example_953",
-          "example_958",
-          "example_967",
-          "example_968",
-          "example_970",
-          "example_973",
-          "example_974",
-          "example_982",
-          "example_983",
-          "example_986",
-          "example_987",
-          "example_989",
-          "example_997",
-          "example_998",
-          "example_999",
-          "example_1000",
-          "example_1001",
-          "example_1005",
-          "example_1006",
-          "example_1007",
-          "example_1009",
-          "example_1023",
-          "example_1024",
-          "example_1026",
-          "example_1030",
-          "example_1031",
-          "example_1032",
-          "example_1034",
-          "example_1035",
-          "example_1037",
-          "example_1041",
-          "example_1046",
-          "example_1047",
-          "example_1049",
-          "example_1055",
-          "example_1057",
-          "example_1058",
-          "example_1065",
-          "example_1068",
-          "example_1074",
-          "example_1078",
-          "example_1079",
-          "example_1080",
-          "example_1085",
-          "example_1087",
-          "example_1088",
-          "example_1089",
-          "example_1091",
-          "example_1093",
-          "example_1094",
-          "example_1096",
-          "example_1097",
-          "example_1101",
-          "example_1108",
-          "example_1110",
-          "example_1111",
-          "example_1112",
-          "example_1113",
-          "example_1116",
-          "example_1118",
-          "example_1121",
-          "example_1124",
-          "example_1128",
-          "example_1131",
-          "example_1132",
-          "example_1137",
-          "example_1140",
-          "example_1142",
-          "example_1145",
-          "example_1149",
-          "example_1151",
-          "example_1155",
-          "example_1156",
-          "example_1161",
-          "example_1168",
-          "example_1169",
-          "example_1172",
-          "example_1175",
-          "example_1176",
-          "example_1178",
-          "example_1182",
-          "example_1185",
-          "example_1188",
-          "example_1190",
-          "example_1193",
-          "example_1196",
-          "example_1197",
-          "example_1200",
-          "example_1201",
-          "example_1205",
-          "example_1206",
-          "example_1208",
-          "example_1209",
-          "example_1210",
-          "example_1214",
-          "example_1216",
-          "example_1217",
-          "example_1221",
-          "example_1226",
-          "example_1230",
-          "example_1232",
-          "example_1234",
-          "example_1236",
-          "example_1237",
-          "example_1244",
-          "example_1251",
-          "example_1252",
-          "example_1253",
-          "example_1259",
-          "example_1261",
-          "example_1262",
-          "example_1268",
-          "example_1269",
-          "example_1278",
-          "example_1283",
-          "example_1285",
-          "example_1286",
-          "example_1290",
-          "example_1292",
-          "example_1293",
-          "example_1299",
-          "example_1302",
-          "example_1303",
-          "example_1310",
-          "example_1313",
-          "example_1315",
-          "example_1323",
-          "example_1328",
-          "example_1329",
-          "example_1330",
-          "example_1333",
-          "example_1334",
-          "example_1336",
-          "example_1338",
-          "example_1340",
-          "example_1341",
-          "example_1342",
-          "example_1351",
-          "example_1352",
-          "example_1353",
-          "example_1356",
-          "example_1358",
-          "example_1359",
-          "example_1361",
-          "example_1366",
-          "example_1368",
-          "example_1370",
-          "example_1374",
-          "example_1375",
-          "example_1385",
-          "example_1394",
-          "example_1401",
-          "example_1402",
-          "example_1404",
-          "example_1406",
-          "example_1407",
-          "example_1418",
-          "example_1419",
-          "example_1421",
-          "example_1422",
-          "example_1427",
-          "example_1435",
-          "example_1446",
-          "example_1449",
-          "example_1450",
-          "example_1455",
-          "example_1456",
-          "example_1457",
-          "example_1460",
-          "example_1461",
-          "example_1463",
-          "example_1466",
-          "example_1467",
-          "example_1468",
-          "example_1470",
-          "example_1473",
-          "example_1477",
-          "example_1480",
-          "example_1486",
-          "example_1488",
-          "example_1489",
-          "example_1492",
-          "example_1497",
-          "example_1501",
-          "example_1505",
-          "example_1506",
-          "example_1507",
-          "example_1512",
-          "example_1514",
-          "example_1518",
-          "example_1519",
-          "example_1521",
-          "example_1523",
-          "example_1524",
-          "example_1532",
-          "example_1536",
-          "example_1538",
-          "example_1540",
-          "example_1541",
-          "example_1544",
-          "example_1545",
-          "example_1549",
-          "example_1557",
-          "example_1561",
-          "example_1562",
-          "example_1563",
-          "example_1566",
-          "example_1572",
-          "example_1574",
-          "example_1576",
-          "example_1578",
-          "example_1580",
-          "example_1581",
-          "example_1587",
-          "example_1593",
-          "example_1599",
-          "example_1604",
-          "example_1609",
-          "example_1614",
-          "example_1617",
-          "example_1618",
-          "example_1619",
-          "example_1620",
-          "example_1622",
-          "example_1625",
-          "example_1627",
-          "example_1628",
-          "example_1630",
-          "example_1637",
-          "example_1639",
-          "example_1640",
-          "example_1641",
-          "example_1642",
-          "example_1647",
-          "example_1662",
-          "example_1665",
-          "example_1666",
-          "example_1668",
-          "example_1669",
-          "example_1673",
-          "example_1682",
-          "example_1684",
-          "example_1691",
-          "example_1692",
-          "example_1697",
-          "example_1699",
-          "example_1701",
-          "example_1704",
-          "example_1709",
-          "example_1713",
-          "example_1718",
-          "example_1728",
-          "example_1730",
-          "example_1732",
-          "example_1736",
-          "example_1741",
-          "example_1747",
-          "example_1753",
-          "example_1758",
-          "example_1760",
-          "example_1769",
-          "example_1780",
-          "example_1781",
-          "example_1784",
-          "example_1789",
-          "example_1797",
-          "example_1798",
-          "example_1799",
-          "example_1800",
-          "example_1802",
-          "example_1807",
-          "example_1812",
-          "example_1815",
-          "example_1818",
-          "example_1819",
-          "example_1822",
-          "example_1824",
-          "example_1825",
-          "example_1826",
-          "example_1829",
-          "example_1830",
-          "example_1832",
-          "example_1835",
-          "example_1838",
-          "example_1840",
-          "example_1843",
-          "example_1847",
-          "example_1848",
-          "example_1852",
-          "example_1853",
-          "example_1854",
-          "example_1855",
-          "example_1856",
-          "example_1858",
-          "example_1859",
-          "example_1866",
-          "example_1869",
-          "example_1870",
-          "example_1881",
-          "example_1884",
-          "example_1885",
-          "example_1887",
-          "example_1890",
-          "example_1894",
-          "example_1896",
-          "example_1897",
-          "example_1900",
-          "example_1901",
-          "example_1919",
-          "example_1921",
-          "example_1924",
-          "example_1927",
-          "example_1931",
-          "example_1933",
-          "example_1934",
-          "example_1938",
-          "example_1942",
-          "example_1943",
-          "example_1944",
-          "example_1954",
-          "example_1956",
-          "example_1958",
-          "example_1961",
-          "example_1964",
-          "example_1967",
-          "example_1970",
-          "example_1971",
-          "example_1973",
-          "example_1977",
-          "example_1983",
-          "example_1986",
-          "example_1991",
-          "example_1992",
-          "example_1996"
+          "666_l_1_m-0_1.42-1_0.04-2_0.58-3_0.4",
+          "667_l_1_m-0_1.07-1_0.13-2_0.08-3_0.11",
+          "668_l_1_m-0_0.1-1_0.1-2_0.09-3_0.58",
+          "669_l_1_m-0_0.99-1_0.44-2_0.12-3_1.24",
+          "670_l_1_m-0_0.45-1_0.08-2_0.78-3_0.1",
+          "671_l_1_m-0_0.28-1_0.11-2_0.12-3_0.27",
+          "672_l_1_c_0_1_2-0_0.43-1_0.28-2_0.33-3_0.41",
+          "673_l_1_c_0_1_2-0_0.61-1_0.14-2_0.73-3_0.65",
+          "674_l_1_c_0_1_2-0_1.35-1_0.86-2_0.19-3_0.14",
+          "675_l_1_c_0_1_2-0_0.06-1_0.48-2_0.19-3_1.15",
+          "676_l_1_c_0_1_2-0_0.6-1_0.32-2_0.04-3_0.35",
+          "677_l_1_c_0_1_2-0_0.7-1_0.4-2_0.11-3_1.46",
+          "678_l_1_c_0_1_2-0_0.48-1_0.42-2_0.47-3_0.31",
+          "679_l_1_c_0_1_2-0_0.09-1_0.12-2_0.24-3_1.24",
+          "680_l_1_c_0_1_2-0_0.45-1_0.1-2_0.27-3_0.88",
+          "681_l_1_c_0_1_2-0_0.01-1_0.09-2_0.01-3_1.53",
+          "682_l_1_c_0_1_2-0_0.02-1_0.13-2_0.6-3_0.43",
+          "683_l_1_c_0_1_2-0_0.37-1_0.43-2_0.01-3_1.33",
+          "684_l_1_c_0_1_2-0_0.85-1_0.14-2_0.37-3_0.32",
+          "685_l_1_c_0_1_2-0_0.13-1_0.81-2_0.22-3_0.28",
+          "686_l_1_c_0_1_2-0_1.47-1_0.36-2_0.51-3_0.29",
+          "687_l_1_c_0_1_2-0_0.73-1_1.04-2_0.17-3_1.62",
+          "688_l_1_c_0_1_2-0_0.55-1_0.14-2_0.05-3_0.72",
+          "689_l_1_c_0_1_2-0_0.17-1_0.19-2_0.07-3_0.08",
+          "690_l_1_c_0_1_2-0_0.62-1_0.75-2_0.21-3_1.57",
+          "691_l_1_c_0_1_2-0_1.1-1_0.23-2_0.17-3_0.56",
+          "692_l_1_c_0_1_2-0_0.36-1_0.43-2_0.66-3_0.14",
+          "693_l_1_c_0_1_2-0_0.31-1_0.04-2_0.05-3_0.44",
+          "694_l_1_c_0_1_2-0_0.03-1_0.19-2_0.44-3_0.45",
+          "695_l_1_c_0_1_2-0_0.33-1_0.03-2_0.11-3_0.86",
+          "696_l_1_c_0_1_2-0_1.0-1_0.88-2_0.06-3_0.11",
+          "697_l_1_c_0_1_2-0_0.04-1_0.22-2_0.36-3_0.84",
+          "698_l_1_c_0_1_2-0_0.4-1_0.25-2_0.96-3_0.07",
+          "699_l_1_c_0_1_2-0_0.04-1_0.01-2_0.26-3_0.31",
+          "700_l_1_c_0_1_2-0_1.03-1_0.19-2_0.27-3_0.75",
+          "701_l_1_c_0_1_2-0_0.24-1_0.15-2_0.41-3_1.58",
+          "702_l_1_c_0_1_2-0_0.29-1_0.73-2_0.21-3_0.48",
+          "703_l_1_c_0_1_2-0_0.65-1_0.99-2_0.64-3_1.27",
+          "704_l_1_c_0_1_2-0_0.92-1_0.5-2_0.63-3_0.65",
+          "705_l_1_c_0_1_2-0_0.37-1_0.37-2_0.14-3_0.71",
+          "706_l_1_c_0_1_2-0_0.07-1_0.61-2_0.6-3_1.57",
+          "707_l_1_c_0_1_2-0_0.02-1_0.81-2_0.44-3_1.63",
+          "708_l_1_c_0_1_2-0_0.42-1_0.4-2_0.17-3_0.57",
+          "709_l_1_c_0_1_2-0_0.05-1_0.47-2_0.03-3_0.71",
+          "710_l_1_c_0_1_2-0_0.34-1_0.05-2_1.03-3_0.1",
+          "711_l_1_c_0_1_3-0_0.31-1_0.36-2_0.38-3_0.28",
+          "712_l_1_c_0_1_2-0_0.41-1_0.28-2_0.42-3_0.34",
+          "713_l_1_c_0_1_3-0_0.22-1_0.0-2_0.46-3_0.21",
+          "714_l_1_c_0_1_2-0_0.1-1_0.73-2_0.14-3_0.31",
+          "715_l_1_c_0_1_3-0_0.08-1_0.15-2_1.46-3_0.02",
+          "716_l_1_c_0_1_2-0_0.3-1_0.94-2_0.06-3_1.62",
+          "717_l_1_c_0_1_3-0_0.21-1_0.0-2_0.93-3_0.06",
+          "718_l_1_c_0_1_2-0_1.08-1_0.03-2_0.09-3_0.45",
+          "719_l_1_c_0_1_3-0_0.18-1_0.92-2_1.72-3_0.29",
+          "720_l_1_c_0_1_2-0_0.07-1_0.03-2_0.03-3_0.56",
+          "721_l_1_c_0_1_3-0_0.42-1_0.81-2_1.23-3_0.18",
+          "722_l_1_c_0_1_2-0_0.08-1_0.78-2_0.04-3_2.01",
+          "723_l_1_c_0_1_3-0_0.64-1_0.25-2_0.52-3_0.12",
+          "724_l_1_c_0_1_2-0_0.25-1_1.61-2_0.23-3_1.07",
+          "725_l_1_c_0_1_3-0_0.28-1_0.42-2_0.63-3_0.19",
+          "726_l_1_c_0_1_2-0_0.2-1_0.49-2_0.29-3_0.86",
+          "727_l_1_c_0_1_3-0_0.15-1_1.58-2_0.77-3_0.47",
+          "728_l_1_c_0_1_2-0_0.15-1_0.51-2_0.15-3_0.14",
+          "729_l_1_c_0_1_3-0_1.1-1_0.03-2_0.87-3_0.14",
+          "730_l_1_c_0_1_2-0_0.11-1_0.39-2_0.01-3_0.53",
+          "731_l_1_c_0_1_3-0_0.19-1_0.78-2_1.61-3_0.07",
+          "732_l_1_c_0_1_2-0_0.39-1_0.52-2_0.39-3_0.81",
+          "733_l_1_c_0_1_3-0_0.37-1_0.18-2_1.78-3_0.3",
+          "734_l_1_c_0_1_2-0_0.18-1_1.04-2_0.05-3_0.87",
+          "735_l_1_c_0_1_3-0_0.03-1_0.47-2_1.25-3_0.23",
+          "736_l_1_c_0_1_2-0_0.86-1_0.48-2_0.68-3_0.23",
+          "737_l_1_c_0_1_3-0_1.23-1_0.66-2_1.32-3_0.05",
+          "738_l_1_c_0_1_2-0_1.06-1_0.31-2_0.02-3_0.8",
+          "739_l_1_c_0_1_3-0_0.09-1_0.08-2_0.05-3_0.21",
+          "740_l_1_c_0_1_2-0_0.31-1_0.62-2_0.63-3_0.57",
+          "741_l_1_c_0_1_3-0_0.54-1_0.86-2_0.71-3_0.39",
+          "742_l_1_c_0_1_2-0_0.77-1_1.11-2_0.52-3_0.79",
+          "743_l_1_c_0_1_3-0_1.73-1_0.33-2_0.26-3_0.35",
+          "744_l_1_c_0_1_2-0_0.28-1_0.73-2_0.08-3_0.9",
+          "745_l_1_c_0_1_3-0_0.33-1_0.46-2_0.9-3_0.01",
+          "746_l_1_c_0_1_2-0_0.42-1_0.05-2_0.58-3_0.7",
+          "747_l_1_c_0_1_3-0_0.05-1_1.24-2_1.46-3_0.1",
+          "748_l_1_c_0_1_2-0_0.2-1_0.37-2_0.09-3_0.61",
+          "749_l_1_c_0_1_3-0_0.02-1_0.93-2_0.71-3_0.01",
+          "750_l_1_c_0_1_2-0_0.16-1_0.28-2_0.71-3_0.12",
+          "751_l_1_c_0_1_3-0_0.17-1_0.61-2_1.7-3_0.65",
+          "752_l_1_c_0_1_2-0_0.37-1_0.13-2_0.07-3_0.46",
+          "753_l_1_c_0_1_3-0_0.41-1_1.05-2_0.49-3_0.37",
+          "754_l_1_c_0_1_2-0_0.42-1_0.14-2_0.31-3_0.36",
+          "755_l_1_c_0_1_3-0_0.47-1_0.2-2_0.85-3_0.23",
+          "756_l_1_c_0_1_2-0_0.08-1_0.19-2_0.21-3_0.15",
+          "757_l_1_c_0_1_3-0_0.18-1_0.68-2_0.13-3_0.28",
+          "758_l_1_c_0_1_2-0_0.06-1_0.53-2_0.44-3_0.15",
+          "759_l_1_c_0_1_3-0_0.5-1_0.18-2_1.22-3_0.01",
+          "760_l_1_c_0_1_2-0_0.05-1_0.03-2_0.12-3_0.34",
+          "761_l_1_c_0_1_3-0_0.18-1_0.43-2_1.69-3_0.4",
+          "762_l_1_c_0_1_2-0_0.37-1_0.14-2_0.07-3_0.43",
+          "763_l_1_c_0_1_3-0_0.06-1_0.28-2_0.84-3_0.27",
+          "764_l_1_c_0_1_2-0_0.03-1_0.09-2_0.04-3_1.16",
+          "765_l_1_c_0_1_3-0_0.24-1_0.65-2_0.36-3_0.27",
+          "766_l_1_c_0_1_2-0_0.36-1_0.14-2_0.35-3_1.2",
+          "767_l_1_c_0_1_3-0_0.02-1_0.36-2_0.95-3_0.25",
+          "768_l_1_c_0_1_2-0_0.1-1_0.08-2_0.34-3_0.78",
+          "769_l_1_c_0_1_3-0_0.53-1_0.32-2_1.77-3_0.28",
+          "770_l_1_c_0_1_2-0_0.55-1_0.28-2_0.5-3_0.84",
+          "771_l_1_c_0_1_3-0_0.1-1_0.03-2_0.74-3_0.04",
+          "772_l_1_c_0_1_2-0_0.18-1_0.0-2_0.73-3_0.38",
+          "773_l_1_c_0_1_3-0_0.09-1_0.59-2_0.5-3_0.13",
+          "774_l_1_c_0_1_2-0_0.37-1_0.89-2_0.54-3_1.03",
+          "775_l_1_c_0_1_3-0_0.29-1_0.01-2_1.27-3_0.22",
+          "776_l_1_c_0_1_2-0_0.12-1_0.21-2_0.26-3_0.05",
+          "777_l_1_c_0_1_3-0_0.07-1_0.44-2_1.03-3_0.46",
+          "778_l_1_c_0_1_2-0_0.18-1_0.34-2_0.42-3_0.07",
+          "779_l_1_c_0_1_3-0_0.85-1_0.35-2_0.29-3_0.33",
+          "780_l_1_c_0_1_2-0_0.29-1_0.43-2_0.21-3_1.24",
+          "781_l_1_c_0_1_3-0_0.84-1_0.15-2_0.73-3_0.09",
+          "782_l_1_c_0_1_2-0_0.08-1_0.11-2_0.09-3_1.07",
+          "783_l_1_c_0_1_3-0_0.59-1_0.51-2_0.24-3_0.15",
+          "784_l_1_c_0_1_2-0_1.61-1_0.67-2_0.1-3_0.77",
+          "785_l_1_c_0_1_3-0_0.88-1_0.43-2_0.14-3_0.27",
+          "786_l_1_c_0_1_2-0_0.31-1_0.26-2_0.17-3_0.07",
+          "787_l_1_c_0_1_3-0_1.39-1_0.51-2_0.31-3_0.31",
+          "788_l_1_c_0_1_2-0_0.08-1_1.23-2_0.29-3_0.59",
+          "789_l_1_c_0_1_3-0_0.58-1_0.11-2_0.54-3_0.03",
+          "790_l_1_c_0_1_2-0_0.2-1_0.01-2_0.36-3_0.13",
+          "791_l_1_c_0_1_3-0_0.47-1_0.22-2_0.95-3_0.01",
+          "792_l_1_c_0_1_2-0_0.87-1_0.0-2_0.13-3_0.65",
+          "793_l_1_c_0_1_3-0_0.39-1_0.17-2_1.03-3_0.08",
+          "794_l_1_c_0_1_2-0_0.96-1_0.06-2_0.15-3_0.72",
+          "795_l_1_c_0_1_3-0_0.18-1_0.01-2_0.29-3_0.2",
+          "796_l_1_c_0_1_2-0_0.81-1_0.34-2_0.35-3_0.06",
+          "797_l_1_c_0_1_3-0_0.07-1_0.32-2_0.43-3_0.35",
+          "798_l_1_c_0_1_2-0_0.3-1_1.08-2_0.46-3_0.32",
+          "799_l_1_c_0_1_3-0_0.12-1_0.12-2_1.17-3_0.33",
+          "800_l_1_c_0_1_2-0_0.14-1_0.84-2_0.15-3_0.74",
+          "801_l_1_c_0_1_3-0_0.7-1_0.21-2_0.9-3_0.5",
+          "802_l_1_c_0_1_2-0_0.36-1_0.22-2_0.48-3_1.13",
+          "803_l_1_c_0_1_3-0_0.35-1_0.28-2_0.4-3_0.12",
+          "804_l_1_c_0_1_2-0_0.63-1_0.27-2_0.08-3_0.34",
+          "805_l_1_c_0_1_3-0_0.43-1_0.53-2_1.43-3_0.52",
+          "806_l_1_c_0_1_2-0_0.23-1_0.3-2_0.21-3_0.24",
+          "807_l_1_c_0_1_3-0_0.33-1_0.93-2_0.25-3_0.51",
+          "808_l_1_c_0_1_2-0_0.21-1_1.44-2_0.65-3_1.33",
+          "809_l_1_c_0_1_3-0_0.83-1_0.64-2_0.92-3_0.06",
+          "810_l_1_c_0_1_2-0_0.46-1_0.22-2_0.2-3_1.21",
+          "811_l_1_c_0_1_3-0_0.83-1_0.15-2_0.21-3_0.01",
+          "812_l_1_c_0_1_2-0_0.22-1_0.02-2_0.35-3_0.22",
+          "813_l_1_c_0_1_3-0_0.42-1_0.47-2_1.47-3_0.2",
+          "814_l_1_c_0_1_2-0_0.52-1_0.8-2_0.06-3_0.94",
+          "815_l_1_c_0_1_3-0_0.66-1_0.52-2_1.92-3_0.36",
+          "816_l_1_c_0_1_2-0_0.05-1_0.11-2_0.11-3_0.56",
+          "817_l_1_c_0_1_3-0_0.51-1_0.21-2_0.62-3_0.26",
+          "818_l_1_c_0_1_2-0_1.26-1_0.53-2_0.01-3_0.96",
+          "819_l_1_c_0_1_3-0_0.19-1_0.09-2_0.2-3_0.48",
+          "820_l_1_c_0_1_2-0_0.36-1_0.6-2_0.07-3_0.15",
+          "821_l_1_c_0_1_3-0_0.3-1_0.02-2_0.79-3_0.89",
+          "822_l_1_c_0_1_2-0_0.42-1_0.06-2_0.16-3_0.73",
+          "823_l_1_c_0_1_3-0_0.19-1_0.49-2_0.69-3_0.11",
+          "824_l_1_c_0_2_3-0_0.62-1_0.28-2_0.21-3_0.18",
+          "825_l_1_c_0_1_2-0_0.35-1_0.27-2_0.15-3_0.27",
+          "826_l_1_c_0_1_3-0_0.23-1_0.16-2_0.63-3_0.15",
+          "827_l_1_c_0_2_3-0_0.25-1_0.14-2_0.18-3_0.58",
+          "828_l_1_c_0_1_2-0_0.57-1_0.52-2_0.42-3_0.12",
+          "829_l_1_c_0_1_3-0_0.1-1_0.27-2_1.12-3_0.1",
+          "830_l_1_c_0_2_3-0_0.61-1_0.9-2_0.15-3_0.29",
+          "831_l_1_c_0_1_2-0_0.61-1_0.04-2_0.36-3_0.22",
+          "832_l_1_c_0_1_3-0_1.27-1_0.31-2_1.03-3_0.09",
+          "833_l_1_c_0_2_3-0_0.76-1_0.43-2_0.01-3_0.29",
+          "834_l_1_c_0_1_2-0_0.52-1_0.2-2_0.54-3_0.82",
+          "835_l_1_c_0_1_3-0_0.36-1_0.45-2_0.61-3_0.3",
+          "836_l_1_c_0_2_3-0_0.99-1_0.3-2_0.53-3_0.02",
+          "837_l_1_c_0_1_2-0_0.59-1_0.24-2_0.57-3_0.18",
+          "838_l_1_c_0_1_3-0_0.85-1_0.53-2_0.3-3_0.26",
+          "839_l_1_c_0_2_3-0_0.9-1_0.05-2_0.13-3_0.88",
+          "840_l_1_c_0_1_2-0_0.14-1_0.16-2_0.08-3_0.68",
+          "841_l_1_c_0_1_3-0_0.31-1_0.24-2_1.52-3_0.35",
+          "842_l_1_c_0_2_3-0_0.4-1_1.41-2_0.72-3_1.07",
+          "843_l_1_c_0_1_2-0_0.96-1_0.84-2_0.1-3_0.87",
+          "844_l_1_c_0_1_3-0_0.88-1_0.2-2_1.28-3_0.15",
+          "845_l_1_c_0_2_3-0_0.43-1_1.87-2_0.16-3_0.17",
+          "846_l_1_c_0_1_2-0_0.22-1_0.19-2_0.75-3_0.17",
+          "847_l_1_c_0_1_3-0_1.21-1_0.1-2_0.32-3_0.01",
+          "848_l_1_c_0_2_3-0_0.26-1_0.66-2_0.73-3_0.23",
+          "849_l_1_c_0_1_2-0_0.17-1_0.31-2_0.13-3_0.58",
+          "850_l_1_c_0_1_3-0_0.58-1_0.15-2_0.31-3_0.26",
+          "851_l_1_c_0_2_3-0_0.59-1_0.13-2_0.36-3_0.03",
+          "852_l_1_c_0_1_2-0_1.06-1_0.07-2_0.94-3_0.2",
+          "853_l_1_c_0_1_3-0_1.51-1_0.13-2_0.99-3_0.51",
+          "854_l_1_c_0_2_3-0_0.38-1_1.16-2_0.56-3_0.29",
+          "855_l_1_c_0_1_2-0_0.53-1_0.05-2_0.38-3_0.8",
+          "856_l_1_c_0_1_3-0_0.38-1_0.27-2_1.44-3_0.03",
+          "857_l_1_c_0_2_3-0_0.11-1_0.65-2_0.2-3_0.47",
+          "858_l_1_c_0_1_2-0_0.47-1_0.97-2_0.49-3_0.53",
+          "859_l_1_c_0_1_3-0_0.89-1_0.57-2_0.07-3_0.05",
+          "860_l_1_c_0_2_3-0_0.05-1_0.16-2_0.55-3_0.21",
+          "861_l_1_c_0_1_2-0_0.38-1_1.12-2_0.13-3_1.38",
+          "862_l_1_c_0_1_3-0_0.57-1_0.05-2_0.32-3_0.05",
+          "863_l_1_c_0_2_3-0_0.07-1_0.65-2_0.07-3_0.8",
+          "864_l_1_c_0_1_2-0_0.04-1_0.28-2_0.06-3_0.15",
+          "865_l_1_c_0_1_3-0_0.92-1_0.1-2_1.11-3_0.38",
+          "866_l_1_c_0_2_3-0_0.43-1_0.72-2_1.03-3_0.27",
+          "867_l_1_c_0_1_2-0_0.06-1_0.73-2_0.06-3_0.66",
+          "868_l_1_c_0_1_3-0_0.12-1_0.82-2_0.63-3_0.31",
+          "869_l_1_c_0_2_3-0_0.36-1_1.04-2_0.37-3_0.66",
+          "870_l_1_c_0-0_0.03-1_0.33-2_0.46-3_0.62",
+          "871_l_1_c_0-0_0.09-1_0.63-2_1.16-3_0.45",
+          "872_l_1_c_0-0_0.37-1_0.57-2_0.17-3_1.43",
+          "873_l_1_c_0-0_1.19-1_0.53-2_0.32-3_0.46",
+          "874_l_1_c_0-0_0.76-1_0.53-2_0.03-3_0.09",
+          "875_l_1_c_0-0_0.29-1_1.33-2_0.1-3_0.3",
+          "876_l_1_c_0-0_0.1-1_0.95-2_0.14-3_0.62",
+          "877_l_1_c_0-0_0.36-1_0.37-2_0.97-3_0.06",
+          "878_l_1_c_0-0_0.07-1_0.33-2_0.31-3_0.03",
+          "879_l_1_c_0-0_0.9-1_0.6-2_0.03-3_1.68",
+          "880_l_1_c_0-0_0.18-1_0.95-2_0.59-3_0.52",
+          "881_l_1_c_0-0_0.05-1_0.57-2_1.29-3_0.95",
+          "882_l_1_c_0-0_0.82-1_0.43-2_1.01-3_0.78",
+          "883_l_1_c_0-0_0.42-1_1.29-2_0.89-3_0.32",
+          "884_l_1_c_0-0_2.0-1_1.0-2_0.85-3_0.69",
+          "885_l_1_c_0-0_1.55-1_0.63-2_0.76-3_0.87",
+          "886_l_1_c_0-0_0.31-1_0.91-2_0.47-3_0.23",
+          "887_l_1_c_0-0_0.13-1_0.5-2_1.0-3_0.3",
+          "888_l_1_c_0-0_0.03-1_0.56-2_1.39-3_1.5",
+          "889_l_1_r-0_1.79-1_1.04-2_2.31-3_1.12",
+          "890_l_1_r-0_0.48-1_0.22-2_1.16-3_0.42",
+          "891_l_1_r-0_0.52-1_1.45-2_0.4-3_1.57",
+          "892_l_1_r-0_1.43-1_0.9-2_0.12-3_0.96",
+          "893_l_1_r-0_1.01-1_0.45-2_0.75-3_0.54",
+          "894_l_1_r-0_0.11-1_1.13-2_0.63-3_1.41",
+          "895_l_1_r-0_0.15-1_1.15-2_0.8-3_0.62",
+          "896_l_1_r-0_0.48-1_0.01-2_0.18-3_0.65",
+          "897_l_1_r-0_0.35-1_0.6-2_0.27-3_0.81",
+          "898_l_1_r-0_1.97-1_0.74-2_0.72-3_0.92",
+          "899_l_1_r-0_0.14-1_0.89-2_0.12-3_0.34",
+          "900_l_1_r-0_0.13-1_0.88-2_0.32-3_0.81",
+          "901_l_1_r-0_0.64-1_2.15-2_0.13-3_1.61",
+          "902_l_1_r-0_0.63-1_0.27-2_0.33-3_0.48",
+          "903_l_1_r-0_0.19-1_0.54-2_0.64-3_0.69",
+          "904_l_1_r-0_0.33-1_0.01-2_0.16-3_0.36",
+          "905_l_1_r-0_1.22-1_0.76-2_0.4-3_0.59",
+          "906_l_1_r-0_1.22-1_0.04-2_1.8-3_0.57",
+          "907_l_1_r-0_0.25-1_0.66-2_1.52-3_0.47",
+          "908_l_1_r-0_0.21-1_0.34-2_0.01-3_1.16",
+          "909_l_1_r-0_0.75-1_2.12-2_0.53-3_1.03",
+          "910_l_1_r-0_1.44-1_0.64-2_1.38-3_0.05",
+          "911_l_1_r-0_0.47-1_1.33-2_0.07-3_1.21",
+          "912_l_1_r-0_0.06-1_0.54-2_1.27-3_0.12",
+          "913_l_1_r-0_2.01-1_0.78-2_1.94-3_0.36",
+          "914_l_1_r-0_0.22-1_0.38-2_1.33-3_0.27",
+          "915_l_1_r-0_2.23-1_0.92-2_0.71-3_0.12",
+          "916_l_1_r-0_0.08-1_1.36-2_0.44-3_0.55",
+          "917_l_1_r-0_0.09-1_0.15-2_0.19-3_0.45",
+          "918_l_1_r-0_2.43-1_0.47-2_1.1-3_0.35",
+          "919_l_1_r-0_1.02-1_0.45-2_0.72-3_1.48",
+          "920_l_1_r-0_0.73-1_0.84-2_1.02-3_0.29",
+          "921_l_1_r-0_0.08-1_1.02-2_0.62-3_0.65",
+          "922_l_1_r-0_0.74-1_0.64-2_0.12-3_0.12",
+          "923_l_1_r-0_1.13-1_0.11-2_0.8-3_0.32",
+          "924_l_1_r-0_0.25-1_1.33-2_0.02-3_0.23",
+          "925_l_1_r-0_1.11-1_0.04-2_1.78-3_0.77",
+          "926_l_1_r-0_1.35-1_0.1-2_0.48-3_1.26",
+          "927_l_1_r-0_0.36-1_0.17-2_0.89-3_2.13",
+          "928_l_1_r-0_0.96-1_0.31-2_1.53-3_0.81",
+          "929_l_1_r-0_0.3-1_0.37-2_1.39-3_0.23",
+          "930_l_1_r-0_0.45-1_0.26-2_0.87-3_0.03",
+          "931_l_1_r-0_0.16-1_0.18-2_0.87-3_0.51",
+          "932_l_1_r-0_0.21-1_0.21-2_2.18-3_0.53",
+          "933_l_1_r-0_0.43-1_2.25-2_1.26-3_0.15",
+          "934_l_1_r-0_1.5-1_0.25-2_0.97-3_0.37",
+          "935_l_1_r-0_0.47-1_2.16-2_0.63-3_0.82",
+          "936_l_1_r-0_0.93-1_0.16-2_0.44-3_1.47",
+          "937_l_1_r-0_0.05-1_1.74-2_0.93-3_0.87",
+          "938_l_1_r-0_0.29-1_1.08-2_0.0-3_0.99",
+          "939_l_1_r-0_0.01-1_0.77-2_0.21-3_0.61",
+          "940_l_1_r-0_0.45-1_0.28-2_0.63-3_0.67",
+          "941_l_1_r-0_0.41-1_0.33-2_0.37-3_1.01",
+          "942_l_1_r-0_0.4-1_0.93-2_0.7-3_1.77",
+          "943_l_1_r-0_2.44-1_0.81-2_0.38-3_0.46",
+          "944_l_1_r-0_1.82-1_0.75-2_1.24-3_0.04",
+          "945_l_1_r-0_0.52-1_0.26-2_0.21-3_0.69",
+          "946_l_1_r-0_0.13-1_0.29-2_0.53-3_0.75",
+          "947_l_1_r-0_1.02-1_2.23-2_1.29-3_0.15",
+          "948_l_1_r-0_0.07-1_1.36-2_0.36-3_1.46",
+          "949_l_1_r-0_2.1-1_1.46-2_1.33-3_0.9",
+          "950_l_1_r-0_0.08-1_0.68-2_1.98-3_0.33",
+          "951_l_1_r-0_0.5-1_0.06-2_1.56-3_0.08",
+          "952_l_1_r-0_0.35-1_1.08-2_0.1-3_0.54",
+          "953_l_1_r-0_0.35-1_1.03-2_0.61-3_0.27",
+          "954_l_1_r-0_1.67-1_1.02-2_0.04-3_0.6",
+          "955_l_1_r-0_0.31-1_0.41-2_0.23-3_0.29",
+          "956_l_1_r-0_1.41-1_1.27-2_0.98-3_0.6",
+          "957_l_1_r-0_0.02-1_0.5-2_0.99-3_0.71",
+          "958_l_1_r-0_0.19-1_0.61-2_0.69-3_0.58",
+          "959_l_1_r-0_0.32-1_0.88-2_0.57-3_0.76",
+          "960_l_1_r-0_0.67-1_0.98-2_0.26-3_0.41",
+          "961_l_1_r-0_0.77-1_0.91-2_0.08-3_1.57",
+          "962_l_1_r-0_2.06-1_0.03-2_0.25-3_0.96",
+          "963_l_1_r-0_0.12-1_0.95-2_1.74-3_0.99",
+          "964_l_1_r-0_1.31-1_0.68-2_1.61-3_1.27",
+          "965_l_1_r-0_1.59-1_0.81-2_0.98-3_0.51",
+          "966_l_1_r-0_0.07-1_1.87-2_1.96-3_0.74",
+          "967_l_1_r-0_0.83-1_0.18-2_1.52-3_0.83",
+          "968_l_1_r-0_0.75-1_0.08-2_0.76-3_0.21",
+          "969_l_1_r-0_0.82-1_0.65-2_0.11-3_1.92",
+          "970_l_1_r-0_0.67-1_0.22-2_1.48-3_0.74",
+          "971_l_1_r-0_1.31-1_0.79-2_2.08-3_0.71",
+          "972_l_1_r-0_0.83-1_1.5-2_0.69-3_0.76",
+          "973_l_1_r-0_0.85-1_0.68-2_0.5-3_0.88",
+          "974_l_1_r-0_0.72-1_1.06-2_0.31-3_1.36",
+          "975_l_1_r-0_0.62-1_0.83-2_1.62-3_0.53",
+          "976_l_1_r-0_0.01-1_0.75-2_0.23-3_0.48",
+          "977_l_1_r-0_0.96-1_0.08-2_0.27-3_0.35",
+          "978_l_1_r-0_0.94-1_0.44-2_0.77-3_0.76",
+          "979_l_1_r-0_1.19-1_1.42-2_0.96-3_0.43",
+          "980_l_1_r-0_0.05-1_1.82-2_0.04-3_0.09",
+          "981_l_1_r-0_0.87-1_0.81-2_1.63-3_0.1",
+          "982_l_1_r-0_0.44-1_0.69-2_0.02-3_0.32",
+          "983_l_1_r-0_1.11-1_0.62-2_0.31-3_0.41",
+          "984_l_1_r-0_1.52-1_0.22-2_0.9-3_1.07",
+          "985_l_1_r-0_0.24-1_0.12-2_1.07-3_0.32",
+          "986_l_1_r-0_0.38-1_0.56-2_1.33-3_0.41",
+          "987_l_1_r-0_1.43-1_2.07-2_1.09-3_0.59",
+          "988_l_1_r-0_0.41-1_0.8-2_2.08-3_1.3",
+          "989_l_1_r-0_0.25-1_0.46-2_1.33-3_1.29",
+          "990_l_1_r-0_0.54-1_1.09-2_0.05-3_0.26",
+          "991_l_1_r-0_0.53-1_0.53-2_1.18-3_2.26",
+          "992_l_1_r-0_0.03-1_1.39-2_0.7-3_0.58",
+          "993_l_1_r-0_0.01-1_1.3-2_0.54-3_0.56",
+          "994_l_1_r-0_0.85-1_0.24-2_0.77-3_1.77",
+          "995_l_1_r-0_1.54-1_0.04-2_1.13-3_0.78",
+          "996_l_1_r-0_0.97-1_0.61-2_0.25-3_0.65",
+          "997_l_1_r-0_0.53-1_0.17-2_0.56-3_0.62",
+          "998_l_1_r-0_1.47-1_0.14-2_0.31-3_1.22",
+          "999_l_1_r-0_0.33-1_0.23-2_0.31-3_0.99",
+          "1000_l_1_r-0_0.91-1_0.63-2_1.11-3_0.75",
+          "1001_l_1_r-0_0.09-1_0.46-2_0.79-3_0.02",
+          "1002_l_1_r-0_0.14-1_0.82-2_0.0-3_0.53",
+          "1003_l_1_r-0_1.1-1_0.37-2_0.35-3_0.02",
+          "1004_l_1_r-0_0.66-1_0.24-2_0.81-3_1.06",
+          "1005_l_1_r-0_0.84-1_0.74-2_0.37-3_0.42",
+          "1006_l_1_r-0_0.59-1_1.11-2_0.54-3_1.07",
+          "1007_l_1_r-0_1.36-1_1.25-2_0.15-3_0.01",
+          "1008_l_1_r-0_0.56-1_0.01-2_0.52-3_0.14",
+          "1009_l_1_r-0_0.09-1_0.78-2_1.1-3_0.8",
+          "1010_l_1_r-0_1.51-1_1.16-2_0.52-3_0.29",
+          "1011_l_1_r-0_0.55-1_1.54-2_0.32-3_0.2",
+          "1012_l_1_r-0_1.27-1_0.69-2_0.54-3_0.3",
+          "1013_l_1_r-0_1.35-1_0.52-2_0.65-3_1.54",
+          "1014_l_1_r-0_0.87-1_0.97-2_0.72-3_0.77",
+          "1015_l_1_r-0_2.2-1_0.59-2_0.64-3_0.01",
+          "1016_l_1_r-0_0.16-1_0.16-2_0.23-3_0.72",
+          "1017_l_1_r-0_0.4-1_0.71-2_0.15-3_0.08",
+          "1018_l_1_r-0_0.02-1_1.12-2_0.18-3_0.63",
+          "1019_l_1_r-0_0.12-1_0.89-2_0.64-3_0.61",
+          "1020_l_1_r-0_1.03-1_0.18-2_0.25-3_0.11",
+          "1021_l_1_r-0_0.13-1_0.73-2_0.24-3_0.35",
+          "1022_l_1_r-0_0.42-1_0.61-2_0.29-3_0.48",
+          "1023_l_1_r-0_0.47-1_1.26-2_0.68-3_0.44",
+          "1024_l_1_r-0_1.42-1_0.41-2_1.4-3_0.04",
+          "1025_l_1_r-0_2.4-1_0.97-2_1.43-3_1.07",
+          "1026_l_1_r-0_0.92-1_0.26-2_0.52-3_0.77",
+          "1027_l_1_r-0_1.67-1_0.77-2_0.51-3_1.28",
+          "1028_l_1_r-0_1.22-1_0.33-2_0.1-3_0.46",
+          "1029_l_1_r-0_0.62-1_0.3-2_0.33-3_0.58",
+          "1030_l_1_r-0_1.07-1_0.67-2_1.03-3_0.74",
+          "1031_l_1_r-0_0.45-1_0.93-2_1.29-3_1.13",
+          "1032_l_1_r-0_0.27-1_0.19-2_0.87-3_1.24",
+          "1033_l_1_r-0_0.97-1_0.51-2_0.08-3_0.54",
+          "1034_l_1_r-0_1.2-1_0.23-2_0.71-3_0.69",
+          "1035_l_1_r-0_1.97-1_1.42-2_0.96-3_0.34",
+          "1036_l_1_r-0_0.37-1_1.93-2_1.01-3_1.29",
+          "1037_l_1_r-0_0.12-1_1.07-2_0.06-3_0.68",
+          "1038_l_1_r-0_1.24-1_1.07-2_1.54-3_0.04",
+          "1039_l_1_r-0_0.49-1_0.46-2_0.42-3_1.48",
+          "1040_l_1_r-0_0.24-1_0.89-2_0.73-3_0.42",
+          "1041_l_1_r-0_1.39-1_1.99-2_0.7-3_1.71",
+          "1042_l_1_r-0_0.59-1_0.68-2_0.48-3_0.75",
+          "1043_l_1_r-0_0.24-1_0.39-2_0.52-3_1.52",
+          "1044_l_1_r-0_0.89-1_0.12-2_0.84-3_0.2",
+          "1045_l_1_r-0_0.13-1_0.26-2_1.11-3_0.51",
+          "1046_l_1_r-0_0.5-1_0.29-2_0.14-3_1.05",
+          "1047_l_1_r-0_0.35-1_0.93-2_0.12-3_0.03",
+          "1048_l_1_r-0_1.73-1_0.15-2_1.15-3_1.1",
+          "1049_l_1_r-0_2.03-1_0.44-2_1.14-3_0.14",
+          "1050_l_1_r-0_0.4-1_1.21-2_0.99-3_0.83",
+          "1051_l_1_r-0_0.38-1_0.01-2_0.12-3_0.49",
+          "1052_l_1_r-0_0.22-1_0.94-2_0.48-3_0.62",
+          "1053_l_1_r-0_0.37-1_0.02-2_1.04-3_0.79",
+          "1054_l_1_r-0_0.15-1_1.31-2_1.87-3_0.79",
+          "1055_l_1_r-0_0.56-1_0.62-2_0.55-3_0.17",
+          "1056_l_1_r-0_1.2-1_0.74-2_0.06-3_0.02",
+          "1057_l_1_r-0_0.05-1_0.58-2_1.17-3_0.79",
+          "1058_l_1_r-0_0.6-1_1.48-2_1.64-3_0.89",
+          "1059_l_1_r-0_1.08-1_0.19-2_1.27-3_0.42",
+          "1060_l_1_r-0_1.03-1_0.25-2_0.69-3_0.8",
+          "1061_l_1_r-0_0.07-1_0.97-2_0.35-3_0.07",
+          "1062_l_1_r-0_0.93-1_0.53-2_0.74-3_0.33",
+          "1063_l_1_r-0_0.49-1_0.4-2_0.26-3_0.63",
+          "1064_l_1_r-0_0.72-1_1.16-2_0.56-3_0.77",
+          "1065_l_1_r-0_0.88-1_0.19-2_0.39-3_0.98",
+          "1066_l_1_r-0_2.57-1_0.14-2_1.09-3_0.25",
+          "1067_l_1_r-0_0.63-1_0.47-2_1.06-3_0.19",
+          "1068_l_1_r-0_0.37-1_0.32-2_0.01-3_1.13",
+          "1069_l_1_r-0_0.09-1_1.22-2_1.22-3_0.76",
+          "1070_l_1_r-0_0.35-1_1.21-2_1.48-3_0.55",
+          "1071_l_1_r-0_0.88-1_0.14-2_1.47-3_1.13",
+          "1072_l_1_r-0_3.07-1_0.16-2_0.47-3_0.15",
+          "1073_l_1_r-0_0.5-1_1.1-2_0.23-3_0.29",
+          "1074_l_1_r-0_0.77-1_0.51-2_0.53-3_0.17",
+          "1075_l_1_r-0_1.08-1_0.32-2_1.23-3_1.5",
+          "1076_l_1_r-0_0.33-1_0.55-2_0.58-3_0.67",
+          "1077_l_1_r-0_0.16-1_0.8-2_1.67-3_0.91",
+          "1078_l_1_r-0_2.15-1_1.31-2_0.36-3_0.51",
+          "1079_l_1_r-0_0.3-1_0.61-2_1.06-3_0.34",
+          "1080_l_1_r-0_1.72-1_0.33-2_0.23-3_1.05",
+          "1081_l_1_r-0_0.12-1_1.41-2_0.67-3_0.1",
+          "1082_l_1_r-0_0.57-1_1.19-2_0.33-3_0.41",
+          "1083_l_1_r-0_0.65-1_1.06-2_0.2-3_0.85",
+          "1084_l_1_r-0_0.18-1_2.04-2_0.08-3_0.86",
+          "1085_l_1_r-0_0.79-1_0.35-2_0.49-3_1.17",
+          "1086_l_1_r-0_0.28-1_0.1-2_1.0-3_1.26",
+          "1087_l_1_r-0_0.63-1_0.44-2_1.52-3_0.92",
+          "1088_l_1_r-0_1.15-1_0.63-2_0.29-3_0.71",
+          "1089_l_1_r-0_1.52-1_0.7-2_0.8-3_0.05",
+          "1090_l_1_r-0_0.02-1_0.89-2_0.82-3_1.08",
+          "1091_l_1_r-0_0.55-1_1.35-2_0.89-3_0.68",
+          "1092_l_1_r-0_0.39-1_1.82-2_0.98-3_0.48",
+          "1093_l_1_r-0_1.37-1_0.38-2_0.74-3_0.14",
+          "1094_l_1_r-0_2.07-1_0.92-2_2.11-3_0.23",
+          "1095_l_1_r-0_0.54-1_0.61-2_0.96-3_0.4",
+          "1096_l_1_r-0_1.42-1_0.71-2_0.64-3_0.47",
+          "1097_l_1_r-0_0.58-1_1.12-2_1.37-3_0.45",
+          "1098_l_1_r-0_0.32-1_1.12-2_1.53-3_0.26",
+          "1099_l_1_r-0_0.76-1_0.04-2_0.93-3_0.13",
+          "1100_l_1_r-0_0.62-1_1.51-2_0.97-3_0.42",
+          "1101_l_1_r-0_0.8-1_0.46-2_1.69-3_0.44",
+          "1102_l_1_r-0_1.53-1_0.18-2_0.7-3_1.13",
+          "1103_l_1_r-0_0.1-1_0.49-2_1.1-3_1.03",
+          "1104_l_1_r-0_0.78-1_1.05-2_0.4-3_0.49",
+          "1105_l_1_r-0_0.23-1_0.08-2_1.02-3_1.41",
+          "1106_l_1_r-0_0.44-1_0.17-2_1.13-3_1.1",
+          "1107_l_1_r-0_2.27-1_0.68-2_0.25-3_0.63",
+          "1108_l_1_r-0_1.38-1_1.29-2_0.27-3_0.21",
+          "1109_l_1_r-0_1.06-1_0.76-2_0.46-3_0.34",
+          "1110_l_1_r-0_1.35-1_1.23-2_1.32-3_0.41",
+          "1111_l_1_r-0_0.35-1_0.75-2_1.02-3_0.88",
+          "1112_l_1_r-0_1.81-1_1.09-2_1.59-3_0.01",
+          "1113_l_1_r-0_0.78-1_1.01-2_0.02-3_0.22",
+          "1114_l_1_r-0_0.69-1_0.87-2_0.12-3_0.27",
+          "1115_l_1_r-0_0.08-1_1.37-2_0.67-3_0.84",
+          "1116_l_1_r-0_1.14-1_0.02-2_0.13-3_0.6",
+          "1117_l_1_r-0_0.16-1_0.69-2_0.71-3_0.58",
+          "1118_l_1_r-0_0.96-1_1.0-2_1.09-3_0.05",
+          "1119_l_1_r-0_0.45-1_0.57-2_0.54-3_0.09",
+          "1120_l_1_r-0_0.58-1_0.11-2_0.19-3_0.87",
+          "1121_l_1_r-0_0.03-1_0.36-2_0.19-3_0.83",
+          "1122_l_1_r-0_0.65-1_1.66-2_2.2-3_0.0",
+          "1123_l_1_r-0_0.26-1_1.26-2_0.87-3_0.76",
+          "1124_l_1_r-0_1.5-1_0.77-2_0.99-3_0.94",
+          "1125_l_1_r-0_0.88-1_0.39-2_0.33-3_0.2",
+          "1126_l_1_r-0_0.37-1_1.21-2_0.51-3_0.66",
+          "1127_l_1_r-0_0.88-1_0.71-2_1.07-3_0.79",
+          "1128_l_1_r-0_0.71-1_0.52-2_0.76-3_0.33",
+          "1129_l_1_r-0_0.89-1_1.92-2_0.02-3_0.76",
+          "1130_l_1_r-0_0.22-1_0.32-2_0.3-3_0.57",
+          "1131_l_1_r-0_0.95-1_0.82-2_0.21-3_0.59",
+          "1132_l_1_r-0_0.45-1_1.11-2_0.19-3_0.1",
+          "1133_l_1_r-0_0.95-1_0.78-2_0.38-3_0.13",
+          "1134_l_1_r-0_0.21-1_1.09-2_0.01-3_0.32",
+          "1135_l_1_r-0_0.84-1_0.91-2_0.06-3_0.77",
+          "1136_l_1_r-0_0.37-1_0.54-2_0.01-3_1.35",
+          "1137_l_1_r-0_1.2-1_1.74-2_0.79-3_0.25",
+          "1138_l_1_r-0_1.66-1_1.03-2_0.1-3_1.05",
+          "1139_l_1_r-0_1.41-1_1.11-2_0.44-3_0.4",
+          "1140_l_1_r-0_0.29-1_1.39-2_0.02-3_0.55",
+          "1141_l_1_r-0_0.44-1_1.02-2_0.31-3_1.31",
+          "1142_l_1_r-0_2.17-1_1.81-2_0.83-3_0.51",
+          "1143_l_1_r-0_0.26-1_0.56-2_0.95-3_0.22",
+          "1144_l_1_r-0_1.16-1_0.32-2_1.22-3_0.74",
+          "1145_l_1_r-0_0.65-1_0.45-2_0.56-3_0.92",
+          "1146_l_1_r-0_0.04-1_1.22-2_0.79-3_0.66",
+          "1147_l_1_r-0_1.26-1_0.53-2_0.07-3_1.74",
+          "1148_l_1_r-0_1.1-1_0.06-2_0.93-3_2.17",
+          "1149_l_1_r-0_0.98-1_0.36-2_1.33-3_0.14",
+          "1150_l_1_r-0_1.8-1_0.65-2_1.19-3_0.92",
+          "1151_l_1_r-0_0.52-1_0.73-2_0.16-3_0.18",
+          "1152_l_1_r-0_1.06-1_0.87-2_0.82-3_0.13",
+          "1153_l_1_r-0_0.81-1_0.26-2_0.85-3_0.71",
+          "1154_l_1_r-0_2.15-1_0.86-2_0.38-3_0.28",
+          "1155_l_1_r-0_0.28-1_0.79-2_0.03-3_0.3",
+          "1156_l_1_r-0_2.02-1_0.19-2_1.96-3_0.37",
+          "1157_l_1_r-0_1.05-1_0.67-2_0.38-3_1.43",
+          "1158_l_1_r-0_0.7-1_0.37-2_0.89-3_0.95",
+          "1159_l_1_r-0_2.01-1_0.14-2_0.03-3_0.34",
+          "1160_l_1_r-0_0.64-1_0.35-2_0.77-3_0.69",
+          "1161_l_1_r-0_1.26-1_1.74-2_0.46-3_0.56",
+          "1162_l_1_r-0_1.23-1_0.62-2_0.34-3_0.63",
+          "1163_l_1_r-0_0.5-1_1.21-2_1.02-3_0.29",
+          "1164_l_1_r-0_1.39-1_0.34-2_1.01-3_0.63",
+          "1165_l_1_r-0_0.6-1_0.86-2_0.27-3_0.51",
+          "1166_l_1_r-0_1.05-1_1.13-2_0.9-3_1.63",
+          "1167_l_1_r-0_0.22-1_0.94-2_1.08-3_0.41",
+          "1168_l_1_r-0_0.4-1_1.6-2_0.87-3_0.97",
+          "1169_l_1_r-0_0.42-1_0.72-2_0.94-3_0.98",
+          "1170_l_1_r-0_0.89-1_2.19-2_0.72-3_1.62",
+          "1171_l_1_r-0_0.23-1_0.57-2_0.6-3_0.52",
+          "1172_l_1_r-0_0.78-1_1.55-2_0.34-3_0.43",
+          "1173_l_1_r-0_0.13-1_0.15-2_0.46-3_0.11",
+          "1174_l_1_r-0_0.35-1_0.11-2_0.77-3_1.18",
+          "1175_l_1_r-0_0.16-1_1.01-2_1.24-3_0.34",
+          "1176_l_1_r-0_1.24-1_0.3-2_0.67-3_0.73",
+          "1177_l_1_r-0_0.92-1_0.89-2_1.07-3_0.28",
+          "1178_l_1_r-0_0.71-1_0.05-2_1.05-3_1.15",
+          "1179_l_1_r-0_0.3-1_0.14-2_0.14-3_0.49",
+          "1180_l_1_r-0_1.08-1_0.86-2_0.57-3_0.85",
+          "1181_l_1_r-0_0.45-1_0.28-2_0.58-3_0.27",
+          "1182_l_1_r-0_1.13-1_1.5-2_0.79-3_0.54",
+          "1183_l_1_r-0_1.91-1_0.88-2_0.99-3_0.84",
+          "1184_l_1_r-0_1.44-1_1.06-2_1.31-3_0.66",
+          "1185_l_1_r-0_0.1-1_0.4-2_1.39-3_0.96",
+          "1186_l_1_r-0_0.5-1_0.15-2_1.29-3_1.07",
+          "1187_l_1_r-0_0.33-1_0.02-2_1.04-3_0.7",
+          "1188_l_1_r-0_0.81-1_1.33-2_0.13-3_1.6",
+          "1189_l_1_r-0_0.59-1_0.32-2_1.39-3_0.24",
+          "1190_l_1_r-0_0.65-1_1.79-2_0.4-3_0.57",
+          "1191_l_1_r-0_1.22-1_1.18-2_0.51-3_0.58",
+          "1192_l_1_r-0_0.72-1_1.14-2_0.33-3_1.25",
+          "1193_l_1_r-0_0.03-1_1.58-2_0.1-3_0.3",
+          "1194_l_1_r-0_0.2-1_0.4-2_0.26-3_1.03",
+          "1195_l_1_r-0_1.79-1_0.59-2_0.52-3_1.34",
+          "1196_l_1_r-0_1.67-1_1.46-2_0.53-3_0.16",
+          "1197_l_1_r-0_0.02-1_0.94-2_0.76-3_0.87",
+          "1198_l_1_r-0_1.07-1_0.57-2_0.64-3_0.16",
+          "1199_l_1_r-0_1.07-1_0.58-2_0.81-3_0.58",
+          "1200_l_1_r-0_0.26-1_0.63-2_0.14-3_0.72",
+          "1201_l_1_r-0_0.08-1_0.26-2_0.5-3_0.31",
+          "1202_l_1_r-0_0.93-1_0.49-2_0.13-3_0.44",
+          "1203_l_1_r-0_0.21-1_0.58-2_0.61-3_0.41",
+          "1204_l_1_r-0_3.37-1_1.09-2_0.92-3_0.33",
+          "1205_l_1_r-0_0.54-1_0.49-2_0.96-3_0.15",
+          "1206_l_1_r-0_0.23-1_0.67-2_0.87-3_0.6",
+          "1207_l_1_r-0_0.3-1_0.43-2_1.25-3_0.36",
+          "1208_l_1_r-0_0.66-1_3.19-2_0.32-3_0.7",
+          "1209_l_1_r-0_0.62-1_0.35-2_1.96-3_1.1",
+          "1210_l_1_r-0_0.55-1_0.67-2_0.89-3_0.23",
+          "1211_l_1_r-0_0.15-1_0.85-2_0.24-3_0.77",
+          "1212_l_1_r-0_1.56-1_0.06-2_0.14-3_0.84",
+          "1213_l_1_r-0_0.09-1_0.15-2_0.25-3_0.08",
+          "1214_l_1_r-0_1.04-1_0.21-2_1.19-3_0.35",
+          "1215_l_1_r-0_1.84-1_0.23-2_0.66-3_0.07",
+          "1216_l_1_r-0_0.62-1_0.92-2_0.94-3_0.13",
+          "1217_l_1_r-0_0.87-1_1.11-2_0.82-3_0.79",
+          "1218_l_1_r-0_0.39-1_0.52-2_2.21-3_0.76",
+          "1219_l_1_r-0_0.03-1_1.26-2_1.07-3_1.47",
+          "1220_l_1_r-0_0.61-1_0.72-2_0.17-3_0.32",
+          "1221_l_1_r-0_0.55-1_2.66-2_0.83-3_0.56",
+          "1222_l_1_r-0_0.28-1_0.8-2_0.09-3_0.78",
+          "1223_l_1_r-0_1.24-1_2.37-2_0.57-3_1.27",
+          "1224_l_1_r-0_1.13-1_0.21-2_0.41-3_0.85",
+          "1225_l_1_r-0_1.09-1_0.5-2_0.66-3_0.28",
+          "1226_l_1_r-0_0.38-1_2.06-2_0.74-3_0.57",
+          "1227_l_1_r-0_0.14-1_2.43-2_0.52-3_0.08",
+          "1228_l_1_r-0_0.86-1_0.59-2_0.49-3_0.77",
+          "1229_l_1_r-0_1.0-1_0.81-2_0.4-3_1.15",
+          "1230_l_1_r-0_0.76-1_0.8-2_0.85-3_1.08",
+          "1231_l_1_r-0_0.46-1_1.36-2_0.74-3_0.92",
+          "1232_l_1_r-0_2.26-1_0.84-2_1.92-3_0.27",
+          "1233_l_1_r-0_0.85-1_0.32-2_0.92-3_0.04",
+          "1234_l_1_r-0_2.44-1_0.04-2_1.19-3_1.09",
+          "1235_l_1_r-0_0.74-1_1.17-2_0.87-3_0.64",
+          "1236_l_1_r-0_0.26-1_0.66-2_1.05-3_1.27",
+          "1237_l_1_r-0_0.46-1_0.11-2_0.07-3_0.55",
+          "1238_l_1_r-0_0.48-1_1.06-2_1.14-3_0.8",
+          "1239_l_1_r-0_0.42-1_0.72-2_0.37-3_0.39",
+          "1240_l_1_r-0_0.11-1_0.78-2_0.95-3_1.31",
+          "1241_l_1_r-0_0.55-1_0.68-2_0.79-3_0.76",
+          "1242_l_1_r-0_0.86-1_1.35-2_0.41-3_0.77",
+          "1243_l_1_r-0_0.5-1_0.64-2_1.26-3_0.66",
+          "1244_l_1_r-0_0.77-1_0.26-2_0.67-3_0.36",
+          "1245_l_1_r-0_0.96-1_0.19-2_0.67-3_0.23",
+          "1246_l_1_r-0_0.56-1_0.77-2_0.75-3_0.6",
+          "1247_l_1_r-0_0.16-1_1.24-2_0.36-3_0.18",
+          "1248_l_1_r-0_0.86-1_0.96-2_0.26-3_1.11",
+          "1249_l_1_r-0_0.87-1_0.95-2_0.12-3_0.57",
+          "1250_l_1_r-0_0.09-1_0.65-2_0.02-3_0.35",
+          "1251_l_1_r-0_0.61-1_0.67-2_0.82-3_1.11",
+          "1252_l_1_r-0_0.02-1_0.57-2_0.98-3_0.38",
+          "1253_l_1_r-0_1.01-1_1.57-2_0.23-3_0.84",
+          "1254_l_1_r-0_0.35-1_0.44-2_0.07-3_0.57",
+          "1255_l_1_r-0_0.48-1_1.12-2_0.15-3_0.45",
+          "1256_l_1_r-0_2.08-1_0.68-2_1.8-3_0.04",
+          "1257_l_1_r-0_0.23-1_1.07-2_1.35-3_0.53",
+          "1258_l_1_r-0_0.1-1_0.53-2_0.92-3_0.63",
+          "1259_l_1_r-0_0.06-1_0.08-2_0.27-3_0.25",
+          "1260_l_1_r-0_2.61-1_0.85-2_0.85-3_0.98",
+          "1261_l_1_r-0_1.38-1_0.35-2_1.36-3_0.2",
+          "1262_l_1_r-0_0.79-1_1.81-2_0.47-3_0.67",
+          "1263_l_1_r-0_0.46-1_0.59-2_1.55-3_0.58",
+          "1264_l_1_r-0_0.46-1_0.85-2_0.08-3_0.02",
+          "1265_l_1_r-0_1.02-1_0.13-2_0.86-3_0.38",
+          "1266_l_1_r-0_1.89-1_0.45-2_0.18-3_1.45",
+          "1267_l_1_r-0_0.56-1_1.14-2_0.4-3_0.43",
+          "1268_l_1_r-0_0.79-1_0.11-2_0.14-3_0.37",
+          "1269_l_1_r-0_1.3-1_0.07-2_0.56-3_0.5",
+          "1270_l_1_r-0_0.59-1_0.94-2_0.48-3_0.83",
+          "1271_l_1_r-0_0.05-1_0.56-2_0.68-3_0.3",
+          "1272_l_1_r-0_0.04-1_1.49-2_0.66-3_1.22",
+          "1273_l_1_r-0_1.34-1_0.06-2_0.12-3_0.92",
+          "1274_l_1_r-0_1.39-1_0.32-2_0.15-3_0.79",
+          "1275_l_1_r-0_1.03-1_1.24-2_1.38-3_0.64",
+          "1276_l_1_r-0_0.66-1_0.25-2_0.02-3_0.6",
+          "1277_l_1_r-0_0.07-1_0.09-2_1.31-3_0.0",
+          "1278_l_1_r-0_0.39-1_0.49-2_0.74-3_0.87",
+          "1279_l_1_r-0_0.52-1_1.0-2_0.1-3_0.76",
+          "1280_l_1_r-0_0.08-1_0.35-2_1.08-3_0.47",
+          "1281_l_1_r-0_0.85-1_0.94-2_0.25-3_0.45",
+          "1282_l_1_r-0_0.16-1_0.56-2_0.54-3_0.74",
+          "1283_l_1_r-0_0.46-1_0.61-2_0.71-3_0.89",
+          "1284_l_1_r-0_1.23-1_0.86-2_1.07-3_0.91",
+          "1285_l_1_r-0_0.01-1_0.36-2_1.54-3_1.27",
+          "1286_l_1_r-0_0.67-1_0.74-2_1.37-3_1.2",
+          "1287_l_1_r-0_0.67-1_1.25-2_0.02-3_0.05",
+          "1288_l_1_r-0_0.75-1_0.25-2_0.76-3_0.41",
+          "1289_l_1_r-0_0.68-1_2.32-2_1.23-3_0.44",
+          "1290_l_1_r-0_0.44-1_0.51-2_1.28-3_0.45",
+          "1291_l_1_r-0_1.11-1_0.27-2_0.03-3_0.64",
+          "1292_l_1_r-0_0.04-1_1.79-2_1.35-3_0.57",
+          "1293_l_1_r-0_0.28-1_0.63-2_1.27-3_1.65",
+          "1294_l_1_r-0_0.06-1_0.15-2_0.88-3_0.55",
+          "1295_l_1_r-0_0.93-1_0.79-2_1.15-3_0.36",
+          "1296_l_1_r-0_1.73-1_0.28-2_0.78-3_1.65",
+          "1297_l_1_r-0_0.53-1_0.35-2_0.76-3_1.05",
+          "1298_l_1_r-0_0.59-1_0.29-2_0.39-3_0.97",
+          "1299_l_1_r-0_0.54-1_1.65-2_0.4-3_0.0",
+          "1300_l_1_r-0_0.65-1_0.21-2_1.18-3_0.17",
+          "1301_l_1_r-0_2.19-1_1.43-2_1.39-3_1.09",
+          "1302_l_1_r-0_1.06-1_0.41-2_0.86-3_1.66",
+          "1303_l_1_r-0_0.13-1_0.24-2_0.42-3_0.51",
+          "1304_l_1_r-0_0.36-1_0.12-2_0.63-3_0.52",
+          "1305_l_1_r-0_0.51-1_1.16-2_0.01-3_0.87",
+          "1306_l_1_r-0_0.43-1_0.36-2_0.01-3_0.66",
+          "1307_l_1_r-0_1.72-1_0.12-2_0.14-3_0.34",
+          "1308_l_1_r-0_1.28-1_1.61-2_1.15-3_1.07",
+          "1309_l_1_r-0_1.33-1_0.66-2_1.14-3_0.82",
+          "1310_l_1_r-0_0.49-1_0.81-2_0.21-3_0.73",
+          "1311_l_1_r-0_0.1-1_0.92-2_0.69-3_0.36",
+          "1312_l_1_r-0_0.05-1_0.68-2_0.97-3_1.42",
+          "1313_l_1_r-0_0.42-1_0.68-2_2.08-3_0.36",
+          "1314_l_1_r-0_0.19-1_1.11-2_0.84-3_0.89",
+          "1315_l_1_r-0_0.13-1_0.64-2_2.02-3_0.41",
+          "1316_l_1_r-0_0.41-1_0.72-2_0.8-3_0.98",
+          "1317_l_1_r-0_1.76-1_0.44-2_0.4-3_0.02",
+          "1318_l_1_r-0_1.07-1_0.37-2_1.02-3_0.37",
+          "1319_l_1_r-0_0.98-1_0.73-2_0.42-3_0.26",
+          "1320_l_1_r-0_1.18-1_1.88-2_0.27-3_0.43",
+          "1321_l_1_r-0_0.14-1_0.24-2_1.64-3_0.17",
+          "1322_l_1_r-0_0.88-1_0.75-2_0.57-3_0.22",
+          "1323_l_1_r-0_0.66-1_0.05-2_0.6-3_0.12",
+          "1324_l_1_r-0_0.19-1_0.08-2_0.46-3_0.11",
+          "1325_l_1_r-0_1.62-1_1.44-2_0.25-3_1.18",
+          "1326_l_1_r-0_1.06-1_0.5-2_0.43-3_0.15",
+          "1327_l_1_r-0_0.44-1_0.55-2_1.16-3_0.51",
+          "1328_l_1_r-0_0.18-1_1.22-2_1.14-3_0.37",
+          "1329_l_1_r-0_0.21-1_0.33-2_0.07-3_0.65",
+          "1330_l_1_r-0_0.34-1_1.61-2_0.45-3_0.03",
+          "1331_l_1_r-0_0.09-1_0.86-2_1.09-3_0.29"
          ],
          "type": "scatter3d",
          "x": [
-          -8.54069466432308,
-          9.506638641489388,
-          13.430117653990948,
-          9.158672109751748,
-          9.114432308289164,
-          9.332484000749902,
-          8.867235018391556,
-          -11.538218427844704,
-          -9.721273342775508,
-          9.452207635174297,
-          -9.092413617157646,
-          -10.509585593510664,
-          -9.48026900442556,
-          11.871035808539759,
-          10.935828633225295,
-          9.66128451494432,
-          10.021154027265633,
-          -9.00242782878118,
-          -11.147924177026587,
-          -8.3031806234281,
-          9.719434793869674,
-          8.655069041871172,
-          -8.688304181662838,
-          -9.565228158825219,
-          9.981538218009051,
-          11.882450637784366,
-          11.675310825638125,
-          -10.027497275424068,
-          10.26102126464275,
-          11.291527811003787,
-          8.456960893994967,
-          8.48720885710557,
-          -10.406189191969414,
-          9.329634488269004,
-          10.24451393872617,
-          -10.092609391573033,
-          8.126626249671556,
-          11.09500615273048,
-          -11.09769073198662,
-          -10.782511926535033,
-          8.761640544658796,
-          11.049024353863276,
-          8.897632969471076,
-          11.67082602882916,
-          10.085833195999504,
-          10.381447761904502,
-          9.084951825251807,
-          8.794668692992413,
-          -10.641792466945674,
-          11.464114626066074,
-          8.59656483320937,
-          8.547914972832956,
-          9.714549404042112,
-          10.443754198755583,
-          9.374802606210277,
-          9.417082293093843,
-          9.99353023233505,
-          8.841520671853004,
-          -9.511393064467175,
-          -9.916678328605267,
-          -7.733707825271765,
-          10.263375694174432,
-          11.526084663279843,
-          9.224349040860211,
-          -10.003240630216078,
-          -8.073494668701498,
-          -8.90147233841072,
-          -8.56612246423431,
-          10.463191966830367,
-          -8.787823332535375,
-          10.728682128392364,
-          9.27091663012585,
-          9.49041893802724,
-          11.112727047903944,
-          -9.676104643016602,
-          -10.505239296101474,
-          11.683252120960645,
-          -7.8900301381386395,
-          12.613251588742484,
-          -9.569720567025755,
-          8.669331527392945,
-          -10.223047768189675,
-          11.19567277896561,
-          -10.659886308815002,
-          13.8702124978051,
-          11.089082703759367,
-          -9.964274297415479,
-          -11.237477862759741,
-          10.295599601576855,
-          12.719097625544531,
-          10.316977129463327,
-          9.794668538792232,
-          -9.228355229770402,
-          10.142007707213399,
-          -8.301887592551129,
-          -11.287075673208662,
-          -10.512589181276637,
-          -10.126316943072732,
-          9.648940722496057,
-          -9.64737194482722,
-          -10.302583271732363,
-          -10.484262674062842,
-          8.944682385111289,
-          -8.615884380558493,
-          9.798367390071691,
-          -11.396567358550765,
-          11.17195127778837,
-          -9.259870152636985,
-          -10.705955927393084,
-          10.989188049285984,
-          10.756368938873644,
-          9.628887969104696,
-          10.327280699623271,
-          8.909238302678684,
-          9.246738322991572,
-          10.85822486012934,
-          -8.23241959369985,
-          9.45893363062312,
-          7.573476253196233,
-          -10.895791558269154,
-          -8.973756212695685,
-          -10.898512120579879,
-          10.1282232230374,
-          -13.53405294353075,
-          -12.304502224869836,
-          -10.1332390084444,
-          8.595466783414201,
-          9.42575772972905,
-          9.894547853637917,
-          8.883938130517219,
-          9.745161007205525,
-          8.80041290529197,
-          9.090107201626251,
-          -9.90747564524548,
-          -11.0064973068853,
-          -9.130142085189071,
-          6.931022249252479,
-          10.786252175177342,
-          -8.442688819633794,
-          11.386111740842683,
-          -6.1911890922631345,
-          9.059089908891952,
-          9.642247823379634,
-          9.500342785077068,
-          11.459389036712173,
-          10.674004655170625,
-          -9.2212062358555,
-          10.048095640139014,
-          -11.4491354048785,
-          7.888712057276956,
-          -9.603019851226492,
-          -10.35557788933754,
-          -9.240053384131397,
-          9.786347871526914,
-          12.302522551368192,
-          -12.531322800824888,
-          8.474838873669222,
-          9.288217410000719,
-          8.4199745137288,
-          -9.427124296111224,
-          10.071388182948908,
-          -7.128806326374253,
-          9.97873041715147,
-          11.895093285244082,
-          -10.246663316452844,
-          10.121803404307935,
-          -9.335361573247328,
-          -9.179181307776657,
-          -10.143864799024817,
-          10.91378210264376,
-          -8.41676017094032,
-          -8.850069655915727,
-          -9.70646441471612,
-          -11.027445286877184,
-          11.70136268308693,
-          -10.77089162228865,
-          -10.264579109420104,
-          10.164916774502828,
-          9.540895791071792,
-          11.443492012498242,
-          9.535914172277444,
-          7.622761893596005,
-          -12.095322161645075,
-          9.96624448798352,
-          -10.032139974663938,
-          -10.992031471931954,
-          9.159811508831853,
-          -7.918149044465334,
-          -9.700418982040205,
-          -11.289420801026063,
-          -8.269790433683989,
-          9.776677803788173,
-          8.7264040444557,
-          -8.3436189149215,
-          -9.350449724207008,
-          9.799034979003947,
-          8.21210707945224,
-          10.029946500762655,
-          -6.780828823429495,
-          10.691432463496673,
-          10.219709779112652,
-          11.151953765608436,
-          10.403237940477739,
-          -10.321333191214729,
-          9.24019461209265,
-          -11.069298544030419,
-          -7.749989378311349,
-          13.400670482129772,
-          9.505554175512943,
-          9.771825555210846,
-          10.684294013946642,
-          12.164842258353763,
-          -11.587238107516425,
-          -7.910897745419563,
-          10.417343445183246,
-          10.577148249780652,
-          9.924198608255743,
-          -8.52735186035681,
-          10.867574289971172,
-          -11.017940458907539,
-          9.27796992450287,
-          -9.486156526431582,
-          11.198471472376289,
-          -11.1799453021403,
-          10.822651252009317,
-          8.7144862750073,
-          -9.271783583337404,
-          10.241674780073934,
-          7.876245956901588,
-          9.53035669946935,
-          -10.639351268474714,
-          9.280787942075357,
-          -11.090470934223504,
-          -10.158325920855278,
-          10.489130632921293,
-          10.526565866947875,
-          -11.81565318801676,
-          10.338281283152082,
-          -10.593480478782542,
-          5.842465273608317,
-          -9.582827953975121,
-          8.019917006107331,
-          8.122010422629588,
-          11.046897146090588,
-          -12.068914461147607,
-          -11.474878168021489,
-          9.93901620281185,
-          -9.500340855937905,
-          -6.816902265592543,
-          -9.862753625997595,
-          9.377991396721,
-          10.569453320080289,
-          12.412887309250195,
-          -9.588317681939063,
-          10.774828618676189,
-          -9.640031651481053,
-          -9.287598864145256,
-          -10.85060120564671,
-          11.086635972579817,
-          10.141675686224348,
-          -8.135445431822932,
-          -9.358618978489146,
-          9.791150988709422,
-          9.893258526703546,
-          9.074902686416124,
-          11.430264606328187,
-          10.290831567698815,
-          11.226678123950922,
-          8.325233946122005,
-          10.666006456361314,
-          -9.254732003386797,
-          9.100203680044496,
-          9.563067204435535,
-          9.954331818485802,
-          9.919633359114808,
-          -10.609209312754922,
-          8.982474919043844,
-          9.954727458493947,
-          -10.48280594454864,
-          -10.381627992405209,
-          9.652709323142812,
-          -9.83634575223807,
-          10.33371478352974,
-          -10.48546060641304,
-          11.020310197022908,
-          8.0119052855583,
-          -12.028376240264837,
-          9.352609239781287,
-          -8.968905557400264,
-          -10.199135210860844,
-          11.268258456960263,
-          10.987626443468757,
-          8.373785949046972,
-          -10.488430890517431,
-          -11.391483987622566,
-          -12.848814835428334,
-          8.214919441587714,
-          6.683115431883972,
-          10.09271498384432,
-          -10.89649265905346,
-          7.274534177269927,
-          10.652625612149578,
-          11.923432948946205,
-          11.228857996572305,
-          -9.019762221176023,
-          -10.250193907986889,
-          10.561473351303851,
-          -10.669050147537316,
-          11.4026255464019,
-          9.778120721152025,
-          -10.734963558724848,
-          7.768172986947388,
-          11.17108391443,
-          9.180562032159974,
-          -12.044077236836356,
-          -11.916538474902051,
-          8.933567164464986,
-          9.758948646240105,
-          8.557405355366317,
-          10.874086942300732,
-          -11.377497407729056,
-          -11.016422358925931,
-          12.27985935602113,
-          9.295774753731667,
-          9.039708782688841,
-          10.270527345582222,
-          -8.374607167177057,
-          -9.961792029842735,
-          9.459698662705046,
-          10.938832799666795,
-          -9.980040817920061,
-          10.833793546056146,
-          -9.5683016529494,
-          -10.942073560497297,
-          -9.804411038503748,
-          9.08054055301806,
-          9.594324114910028,
-          7.51971271896115,
-          -10.995256055962026,
-          -9.35481197389815,
-          10.698986599170775,
-          -10.312232396636968,
-          -10.332324516164276,
-          8.809272159321518,
-          9.672448960976848,
-          9.929462080072332,
-          9.476944641286947,
-          8.186132237370911,
-          -9.313648421575639,
-          -12.254769449223886,
-          11.961079348441041,
-          -10.866368450495075,
-          -8.708659518712157,
-          12.114582938891862,
-          -9.823728736616943,
-          9.046830306158917,
-          -9.58108051172164,
-          9.868302117444637,
-          10.392499807586637,
-          11.57189848097451,
-          10.585818047325448,
-          -9.77911723107873,
-          9.174733338799104,
-          10.793917081358945,
-          -8.957668384725121,
-          -9.927466057603562,
-          9.502982351845949,
-          -9.923766552360137,
-          7.750477632075468,
-          10.452669693187609,
-          9.795909351630595,
-          10.300936338688913,
-          10.102243427915758,
-          -10.123460906797511,
-          11.01090530234352,
-          -9.911361347916898,
-          11.079291462825802,
-          -12.099453014175502,
-          10.117776375203313,
-          6.096435453826869,
-          9.817777882234765,
-          11.681272090574357,
-          -8.608441230868857,
-          10.474554759040956,
-          -10.252927668370434,
-          -9.815846636784718,
-          11.17100523698508,
-          12.03288147068572,
-          9.448004124328193,
-          9.739108481992721,
-          12.087253901606307,
-          -8.751689761530725,
-          -9.428730376075265,
-          -9.916020883294328,
-          10.383318695653827,
-          -9.641547906810413,
-          10.400574274289806,
-          11.085316943637501,
-          10.34391159330602,
-          -10.95660104112133,
-          9.314690048738655,
-          8.849486720899213,
-          8.820741099168382,
-          10.940316067114287,
-          9.989119310331604,
-          -10.172872836746158,
-          9.913300395390582,
-          -12.127473666610454,
-          -9.556066997035005,
-          10.408181550069534,
-          -11.682724266026817,
-          -10.111885248784857,
-          10.278364216377124,
-          -11.535016514715641,
-          -8.273863789453964,
-          9.754577218915836,
-          11.146828698772124,
-          -10.089782503699924,
-          -9.413796030753641,
-          -11.243877804850632,
-          -9.882692400330166,
-          9.664692591755058,
-          8.95690763425479,
-          11.3249071488891,
-          -9.437080604755891,
-          -6.531841319049272,
-          10.730519569951838,
-          -10.905906212321518,
-          8.258247189451655,
-          -10.540170105236228,
-          11.241392974113829,
-          9.877410383751918,
-          -8.102323959961408,
-          11.001671988153975,
-          10.31040842751918,
-          -11.757041799523813,
-          -9.519980164687208,
-          7.4096704039470875,
-          -10.367198355601328,
-          -10.516190617281895,
-          -8.667715487104683,
-          -9.846352917084095,
-          9.744974702635776,
-          10.644426492254079,
-          10.092347223099306,
-          -10.742948243289609,
-          10.032008515365794,
-          -10.481529096796066,
-          -9.252076896928145,
-          -10.288108900233347,
-          7.867258826821131,
-          -9.660238650231744,
-          -9.308063028614411,
-          9.855053851538845,
-          -10.903589366012033,
-          -10.457695036307257,
-          9.44452309062495,
-          -10.154799355553342,
-          -12.186724330010883,
-          -11.894892471918672,
-          -9.935214871452102,
-          9.800182393542801,
-          -12.404504544660197,
-          -10.080493535128216,
-          -9.718956498446552,
-          -11.01334041765282,
-          -12.832723585038682,
-          -7.9294473590729355,
-          12.90827469706467,
-          -9.379199312972066,
-          -9.60421442191219,
-          -8.003029552665753,
-          -9.22420783215038,
-          -11.523187807768261,
-          -8.393434648284382,
-          9.860306689442133,
-          -9.04697198278329,
-          -9.400364549819324,
-          11.08351665420626,
-          10.39857733049429,
-          9.44423183730012,
-          11.0272025572439,
-          9.767766850934091,
-          11.468653018003508,
-          11.068009909675244,
-          9.934524138195831,
-          9.167473367155914,
-          8.903268066283799,
-          -9.646305336297917,
-          -10.470294615007187,
-          -9.689744938830662,
-          -10.54111684087889,
-          -10.976536275268437,
-          9.669565105124288,
-          -9.433218381302423,
-          -8.084859859991376,
-          -11.42008928055475,
-          -7.259636831989797,
-          -9.120869204412832,
-          9.451863722865404,
-          9.824947182510009,
-          -8.906252855658582,
-          9.554658242020002,
-          12.539849928534663,
-          -10.941764826162908,
-          10.149657453922714,
-          9.094962668698987,
-          -10.78235837843015,
-          -9.163209730541805,
-          7.594411051454019,
-          9.92182491461493,
-          8.871175632911944,
-          9.95017386291692,
-          10.287099776571688,
-          -10.575637313111498,
-          -9.516072913419482,
-          11.246833006722001,
-          10.33092968392695,
-          -12.066929506515862,
-          8.441144399781997,
-          -8.555715466155677,
-          -7.844156867365239,
-          10.72046486950448,
-          10.585261376083016,
-          -10.481820752925625,
-          -9.827190932351384,
-          10.722574360280648,
-          9.897694862639053,
-          11.044654136267466,
-          9.916277573672893,
-          11.375880953315644,
-          -9.102961036013472,
-          -10.146320299843213,
-          -10.617738268459656,
-          10.14125457224043,
-          -8.997011042544003,
-          12.18298658528864,
-          -7.719196344220485,
-          6.236985807865921,
-          -12.923850971859045,
-          -9.033867694746059,
-          8.366385542515138,
-          -10.474308558907612,
-          8.26472700748488,
-          -10.086280423554337,
-          10.034137219649097,
-          9.688069407500947,
-          9.81864449098035,
-          -7.1356141073691255,
-          9.382354243352342,
-          -9.523358995833263,
-          8.31204354883758,
-          -8.329098018783956,
-          -12.676934422125663,
-          -10.520054091491962,
-          8.97605223441528,
-          -10.957466009021747,
-          9.591190849836007,
-          -9.839288187247039,
-          10.876182610387893,
-          -9.847696785634009,
-          10.40958274180328,
-          -8.864191520388754,
-          8.844107810270954,
-          -10.710259548779977,
-          -9.269102506244366,
-          -8.07403060713444,
-          10.542788510321317,
-          9.926980446926496,
-          -8.771644574624931,
-          11.064615667057673,
-          -12.606753079332039,
-          9.629645400438092,
-          -9.530375119402496,
-          -9.232119704495565,
-          -10.402963810536775,
-          11.565339597097356,
-          10.880014578365552,
-          9.607614746643005,
-          -9.635614567003437,
-          9.838615918673314,
-          8.519508872074047,
-          10.669949125359281,
-          10.498197195588768,
-          -11.564633832758023,
-          -8.63743176252354,
-          -11.942357851124832,
-          11.442993843745644,
-          9.86702898665132,
-          -8.897799968658244,
-          8.26770441187934,
-          -7.236205829377303,
-          8.490862376178452,
-          9.34954972193837,
-          -8.366130342535433,
-          -7.878531645884175,
-          -9.009785042253437,
-          7.3834626337660865,
-          -10.394085656753987,
-          -9.558749466876062,
-          10.733244550232685,
-          -9.595137827769468,
-          9.104178623299202,
-          9.076609988837001,
-          -10.440352560678846,
-          10.424727167940308,
-          -10.174815231514248,
-          -10.018981695290318,
-          10.999481072264222,
-          10.091717810366106,
-          11.632472412119007,
-          10.193684206615158,
-          -11.347008622887392,
-          -8.369431508871841,
-          9.56094166656222,
-          -10.078235589741164,
-          10.164891438574951,
-          -9.674587850949905,
-          11.47724516500827,
-          -10.182220678165212,
-          10.697345406325626,
-          10.231315035660366,
-          -10.138194694142483,
-          -10.634370829510965,
-          9.251307268444371,
-          -9.778910771914386,
-          9.212741691055294,
-          10.949753491430798,
-          12.639366652190365,
-          8.848676884862744,
-          8.970299241859692,
-          -10.552495590147307,
-          9.654382103525405,
-          10.06350533382291,
-          -10.408827483109206,
-          -10.988356230406648,
-          -8.212058741170823,
-          -10.298035230868445,
-          8.783775116726208,
-          8.167608533405263,
-          -10.250017788299733,
-          -11.000844067075027,
-          -10.25661397735728,
-          7.8637637859497485,
-          -10.714094393385235,
-          -9.440996861920025,
-          -9.734768384539402,
-          7.823948839713664,
-          8.213631690666759,
-          12.641833708957211,
-          9.098622582449732,
-          11.093555309842714,
-          8.785554590398654,
-          -10.793875541408447,
-          -8.666007684322565,
-          10.73781713723795,
-          11.409720046617686,
-          -8.705934143277275,
-          10.011113230180126,
-          11.356532211306622,
-          9.879883333080238,
-          11.903367333762956,
-          -11.177959858090237,
-          -9.327094154915764,
-          9.871686690503946,
-          -9.652598090891372
+          -1.4230118806523007,
+          -1.4389563627400421,
+          -1.5701746542269583,
+          -2.221325626189354,
+          1.493111583029874,
+          -2.367356576545705,
+          1.4692361034541648,
+          -1.4719595912076788,
+          -1.3510304063103837,
+          0.10773484618245388,
+          -1.224038184276792,
+          1.343236320820675,
+          0.5961485869740861,
+          0.0892867165882738,
+          0.44500431809031316,
+          0.005618473278605096,
+          0.543093907947005,
+          1.6148661955974881,
+          1.105927511540481,
+          0.12954799205237766,
+          2.295297751312019,
+          0.7327219477256739,
+          -1.4702435942480923,
+          -0.1690630998610697,
+          -1.6471271825496174,
+          -1.285488851994287,
+          1.8659727550230958,
+          0.30709264215441645,
+          0.02687811894236658,
+          -0.3901592202544236,
+          -0.9992652776244962,
+          -1.5834641111237406,
+          -0.40491183768735584,
+          0.03660517788975004,
+          -1.0281412433908308,
+          0.5564541108597512,
+          0.29172253456758757,
+          1.0595644689503456,
+          -1.947687821172713,
+          0.37167732688546895,
+          -1.657590695054058,
+          -0.16758554576666984,
+          0.41918810021231945,
+          0.054499035859210565,
+          -3.7178362195186887,
+          -1.0020769080622538,
+          -1.001681108886157,
+          0.21614725523648093,
+          -0.9354503697022809,
+          0.08310452333814622,
+          0.4890604502548843,
+          0.21020370577245773,
+          1.0806572694892198,
+          0.5825036958868726,
+          -0.750952535802264,
+          0.4231112845819378,
+          -1.6335132613331675,
+          -1.430520868041451,
+          0.27109641759562675,
+          0.279610086206044,
+          -0.6022035267294035,
+          -0.1458038583916207,
+          0.15493222412302132,
+          -1.1035093270836684,
+          -2.4693533163969525,
+          0.4703248006256697,
+          -3.0879892837831147,
+          0.5805094989500401,
+          0.1816676683390539,
+          2.092203541128784,
+          -2.9554009566039374,
+          1.393003850076552,
+          -2.6697671472756923,
+          -1.532352465580649,
+          -3.3023038961774036,
+          1.0625325578744804,
+          -0.7734171827155676,
+          1.9941935946719802,
+          -1.7012310470531826,
+          0.3877130841590595,
+          -0.41816035213542624,
+          -1.312527205711782,
+          -0.8544305365200381,
+          -0.9524270041258497,
+          0.16036483848203908,
+          -0.5476889546511086,
+          -0.6087992941767331,
+          -0.4075801963906722,
+          0.4241892654601964,
+          1.1275298035807797,
+          0.07835629829243662,
+          0.18322980320514648,
+          -2.843326558865777,
+          0.5019195884685856,
+          -1.1617190637409587,
+          -0.2202841362800434,
+          -0.5111253217999492,
+          0.06144806240165579,
+          0.025377725380463678,
+          0.23929788631721172,
+          -0.3580972555891059,
+          -0.8660131642687257,
+          0.09646857417664312,
+          0.8331256388419281,
+          -0.5916053323203084,
+          -0.09516394925253135,
+          -0.27974064230991236,
+          0.09267793907151312,
+          0.36962232767388237,
+          -0.6103147542177823,
+          0.15108770081826828,
+          0.36673769658888666,
+          0.1798439983998723,
+          -1.29180323869109,
+          -1.8929011489105387,
+          1.5914346126094454,
+          1.101667388903934,
+          -0.592566830932157,
+          1.6077832214155103,
+          -1.616478061385226,
+          0.3056657991285725,
+          1.3948527109106066,
+          0.07615721057456648,
+          -0.5847053642601988,
+          1.0128876406394682,
+          0.4746057950007778,
+          0.8687895156684011,
+          0.39266434383793225,
+          1.9160864679025518,
+          -0.9135589375707288,
+          0.8091067859375376,
+          0.07371620415171853,
+          -1.5529708009438528,
+          3.2675467595777326,
+          1.1047183536065894,
+          0.7021998358722858,
+          0.36392431597493435,
+          -1.533119052266632,
+          0.7791152320461068,
+          -1.1631386832003623,
+          -1.3669594766332147,
+          -0.6628237817779279,
+          -0.214167066170032,
+          0.8305929052020642,
+          -2.629642723148334,
+          0.8347588428309309,
+          -1.2063667409564873,
+          1.485364222982895,
+          -2.1949805996701928,
+          -1.7716717516213065,
+          -0.049210754124953016,
+          -2.6075386603932564,
+          -1.7719945559704788,
+          0.19368053680172181,
+          -1.9147393591353368,
+          -0.7263344591447957,
+          -2.5547995561092884,
+          -1.1422362079675108,
+          0.6213954207620254,
+          -0.3544225623888695,
+          0.45488871550320065,
+          -1.2621173617279267,
+          -2.315874876712198,
+          0.3292217356387688,
+          0.6104496022279435,
+          1.244915605136812,
+          1.380935510340123,
+          -2.419788250018379,
+          0.7084419622145901,
+          -2.307883854909769,
+          1.7292766022315198,
+          -1.065893495750444,
+          -0.8473040767745333,
+          1.994291187932912,
+          -0.9752172625642683,
+          0.3069941581329694,
+          0.8230494392451315,
+          0.9600300704202485,
+          -1.7670704832529407,
+          0.4326288673474661,
+          0.5968598401414282,
+          1.2061622895119366,
+          0.25594282339596086,
+          -3.040746562890056,
+          -0.8927156649266655,
+          0.5871586193593799,
+          -2.0007327291374093,
+          1.5079132053130921,
+          -1.7149598188024238,
+          -1.0063150097317388,
+          0.3774192436326018,
+          -3.1366157057549175,
+          0.47045720995684603,
+          0.8915926918740362,
+          0.05489959170001124,
+          -0.9638442973707757,
+          0.5688677498190926,
+          0.06691371825146564,
+          -1.2887507733313188,
+          1.9367456692808709,
+          1.165617397434001,
+          0.05886828735671079,
+          0.11643206111210014,
+          -0.8243414855546841,
+          0.031130198431596146,
+          0.09476104098157823,
+          0.552608805335592,
+          1.187060024917168,
+          -0.7592422326838111,
+          0.46443691826175515,
+          0.09905144553504108,
+          -0.3628388876891001,
+          0.07218884934592551,
+          -0.9044938840471879,
+          0.1766289158274501,
+          -0.0520026044270534,
+          -1.5542319872024237,
+          0.4189353668477245,
+          1.9970268146688719,
+          -1.5501192651489082,
+          0.31460826742144987,
+          -0.8916075291031825,
+          -2.372298403056199,
+          -2.290173443176198,
+          -1.0690527083012091,
+          -0.5164572556536775,
+          -1.430149831925736,
+          -1.8003159120660288,
+          -0.10874700440801732,
+          -1.4154227000461097,
+          -0.4766993002005063,
+          -1.5996544753892143,
+          -4.2544335781459806,
+          -1.816271133512938,
+          -2.053236268675696,
+          -0.6437185253071529,
+          -0.6321236631368552,
+          -0.19082143371643345,
+          -0.4159589032812351,
+          -1.3848975370615317,
+          -1.8658186413439168,
+          -0.25336222880114134,
+          -1.9660933135193384,
+          -0.7546724741905775,
+          -1.444651903342977,
+          -0.5153852776641692,
+          -0.05805614840638085,
+          -3.1272457418737187,
+          -0.764888367978978,
+          -2.448232696698515,
+          -0.0774165407609324,
+          -4.090136705405033,
+          -3.358049525274709,
+          -2.672794147848199,
+          -0.7337990450636833,
+          -0.6247029175331762,
+          -1.5023585772062118,
+          -1.7543571224550623,
+          -3.0297912868647128,
+          -1.1141941371285604,
+          -1.3514340765211874,
+          -0.36113499157875606,
+          -1.8890600213331847,
+          -0.8404181736966254,
+          -1.3499191294295318,
+          -0.16389154324767918,
+          -1.3400169708095178,
+          -1.036097505298832,
+          -1.5873407315835324,
+          -0.467408650423878,
+          -1.4745238099709537,
+          -1.4584040803999487,
+          -0.2887704775451626,
+          -1.6046215756386628,
+          -1.710023742643351,
+          -0.888230142243995,
+          -0.6104770635913789,
+          -2.9275262248114364,
+          -1.815483386461099,
+          -1.2030253144767171,
+          -0.13123520955127288,
+          -1.66009481637366,
+          -0.8801660451488496,
+          -2.1044409080165707,
+          -0.0845083044110364,
+          -0.5009563350584428,
+          -0.34950756580955966,
+          -0.35274938488095364,
+          -2.4556232034268204,
+          -1.0669060173610112,
+          -1.4468112278796788,
+          -0.019810263083763657,
+          -0.4875893630303296,
+          -1.0220112606769565,
+          -0.6729919421656281,
+          -0.7728472820321536,
+          -2.0624423160310625,
+          -1.690150227267548,
+          -3.0607318643146755,
+          -1.8496784239179513,
+          -0.07374230307694074,
+          -2.429252947028029,
+          -0.7529764581033868,
+          -0.8199360119967068,
+          -2.097857760205846,
+          -2.2463234883000824,
+          -1.4982685199375207,
+          -0.8485010268106384,
+          -0.8591297722882802,
+          -0.8380373116544994,
+          -2.1588800606035523,
+          -1.1798535835444781,
+          -1.2404841873774206,
+          -1.1896866792886296,
+          -0.052187723459745206,
+          -0.8677509667642752,
+          -0.8664907518063351,
+          -3.643541097666583,
+          -3.2566194694795163,
+          -0.7004555709628922,
+          -1.3088175571120866,
+          -2.0493791898158973,
+          -1.4823248232351878,
+          -0.25341878104188575,
+          -0.5426530289512159,
+          -0.5340207853551152,
+          -0.031170396165830838,
+          -0.010508838241576446,
+          -1.1938064467827298,
+          -2.185517067084011,
+          -0.9749523576711433,
+          -3.6116383518162674,
+          -1.4672381781320571,
+          -1.3240391243683938,
+          -1.1130469674973034,
+          -1.7620531690505827,
+          -0.29437489215092083,
+          -1.1230893054012807,
+          -1.1222651648266366,
+          -0.842245068660632,
+          -0.5916698142211749,
+          -1.3644876632138745,
+          -1.6952016449411262,
+          -1.3950995450221204,
+          -1.5099913853278326,
+          -2.9216821260586974,
+          -1.2659491660193818,
+          -2.0544558048599395,
+          -0.8719185027333419,
+          -2.2043691752247065,
+          -2.318580211547551,
+          -0.404014234191836,
+          -0.019851250589491554,
+          -1.1937284393728362,
+          -1.5695047156780622,
+          -0.1269609495336257,
+          -0.6635363523673856,
+          -3.9971493118066186,
+          -1.4169648742812484,
+          -2.4040359141790266,
+          -0.9237791851903838,
+          -1.702556762361848,
+          -1.222302401597662,
+          -0.6171351430827172,
+          -1.9132826943926402,
+          -2.6108530950257594,
+          -0.3800247203662931,
+          -2.257360993256361,
+          -1.1994055546188163,
+          -1.9746385790497165,
+          -1.6904742177596663,
+          -1.385143441786966,
+          -1.6994938501201684,
+          -1.8094925956116565,
+          -0.24396490518699587,
+          -1.3945261583430277,
+          -1.7659723369208722,
+          -1.0363649177967813,
+          -0.8867499738467588,
+          -1.122269515927175,
+          -1.3150471811119884,
+          -1.1914929717778246,
+          -2.917362027118295,
+          -2.0337483362125637,
+          -1.4269698326434048,
+          -1.5456621794423966,
+          -2.0027194174269756,
+          -0.3655299003685948,
+          -0.22733287086024867,
+          -2.5685917391341273,
+          -1.199841422244833,
+          -2.15583673843099,
+          -0.6038811331859077,
+          -1.267895642599501,
+          -1.7425366185529167,
+          -0.3766414036143494,
+          -2.580896309043723,
+          -0.49212750264271177,
+          -0.9122587175801309,
+          -2.1301983019246404,
+          -2.5711159068426173,
+          -1.1868743053487258,
+          -2.3027009036662074,
+          -0.0927023332162259,
+          -0.46297455805500876,
+          -2.3704854149960632,
+          -3.4654927702072755,
+          -1.5160211654527478,
+          -0.7656875054904929,
+          -2.1100645013981962,
+          -0.7005918244711882,
+          -0.18579931855916088,
+          -2.1501250401465537,
+          -0.8035027039451443,
+          -4.204313177973695,
+          -0.9820819119590924,
+          -2.2667988302599316,
+          -0.6544043356379932,
+          -0.700870270412896,
+          -0.791650083871207,
+          -0.6602526149077564,
+          -0.6266618873356874,
+          -1.6101791234836191,
+          -1.7781400414453432,
+          -1.611134414413737,
+          -1.0255827040752235,
+          -0.4026163525850672,
+          -1.3748507314847171,
+          -2.0721781472616487,
+          -0.8192779451165029,
+          -2.2448135098547812,
+          -0.5799140759042976,
+          -0.32255717471932754,
+          -1.5108146216053884,
+          -0.6890057110981507,
+          -1.2759478283980514,
+          -1.9030699330768317,
+          -0.460552212974331,
+          -0.7788113670656559,
+          -0.2294956710815259,
+          -0.43658891627870755,
+          -2.2668742095475434,
+          -3.633689510821202,
+          -2.4733887449624294,
+          -2.729887639105387,
+          -0.34695795885216685,
+          -1.805875097794461,
+          -1.462187855514281,
+          -1.5898774501023403,
+          -1.3196305994569475,
+          -1.1377973267776036,
+          -1.7292147192221607,
+          -1.0466761485472185,
+          -0.4524287142297819,
+          -1.3408620720004674,
+          -0.026149769686932167,
+          -0.6514491693946238,
+          -0.2552037590741375,
+          -1.5030019309737468,
+          -0.9267687939147018,
+          -1.8409216706718912,
+          -1.534790824177692,
+          -0.713758030973084,
+          -1.036431326404868,
+          -0.25681559507918517,
+          -1.3321366559261252,
+          -1.0334799034437863,
+          -0.954057469212006,
+          -0.20988500894518136,
+          -0.8427701842937139,
+          -2.0473597166499067,
+          -1.1961549621270702,
+          -1.6625430987166034,
+          -2.5958381156550914,
+          -0.2900871158106477,
+          -0.6487055268859856,
+          -2.1749225486701524,
+          -3.846377739639611,
+          -1.164431072304179,
+          -0.6456682193755774,
+          -1.314272741462416,
+          -1.721552790578674,
+          -1.102376267874372,
+          -1.506043461022057,
+          -1.796714258635847,
+          -1.5159939253625971,
+          -2.053866356750415,
+          -2.8939498759675595,
+          -2.150463418463853,
+          -0.2750764061887284,
+          -2.0677490431085825,
+          -1.888737658601012,
+          -1.7091968953228487,
+          -2.607324034277525,
+          -2.3300735695735693,
+          -1.3519384784125565,
+          -1.5493808617713656,
+          -0.4992915685455427,
+          -3.0016204688273445,
+          -2.1354134976863146,
+          -3.6558703812622797,
+          -1.5656999079840617,
+          -2.229378475066911,
+          -2.6440641209631863,
+          -0.8946633095944702,
+          -2.743454841553261,
+          -0.7799219984719139,
+          -1.9516548441515678,
+          -0.4433985238244499,
+          -1.1328246881951782,
+          -1.2943728226842888,
+          -3.4387999928608886,
+          -1.4403815128308533,
+          -0.3688307059023611,
+          -1.4547152431385297,
+          -3.034803134787413,
+          -1.1280207024553164,
+          -2.0650638671682113,
+          -1.7325099583517503,
+          -0.10077439349705941,
+          -1.2043326186894143,
+          -1.7824202050716518,
+          -1.0336198364333657,
+          -1.3234956832967504,
+          -0.6528283836308715,
+          -1.9796511493685252,
+          -0.7170782058578263,
+          -1.3810236995674054,
+          -1.3395193732556896,
+          -1.7880541762198705,
+          -1.672732240405831,
+          -1.0486577250440945,
+          -2.7259240355029863,
+          -2.3260948249448727,
+          -1.170015298940035,
+          -2.2039720543839403,
+          -2.210946749108386,
+          -2.0635612870459026,
+          -3.371598892977182,
+          -0.6703522764503592,
+          -1.2254148806337393,
+          -0.3011078318079293,
+          -1.3289761976216101,
+          -1.0290954960047658,
+          -1.3460095628349744,
+          -0.2743870749341545,
+          -1.5586004231039041,
+          -0.7311449749820861,
+          -2.1748011434445482,
+          -1.8373316886118771,
+          -2.0402586616208254,
+          -0.8703992845845296,
+          -0.5351625586437296,
+          -1.923837822398853,
+          -2.1854137798435946,
+          -1.571426347923504,
+          -0.277894129472134,
+          -1.244099403303459,
+          -2.910871848262156,
+          -1.0853060061706892,
+          -0.38415764860977897,
+          -1.341820382727192,
+          -0.8700086394451096,
+          -0.9958251690240595,
+          -1.2865939559700512,
+          -0.7802139823521339,
+          -2.263663950841658,
+          -1.3460283611533794,
+          -2.5185822901844803,
+          -0.742456770767711,
+          -2.7346069127644927,
+          -0.5226364983627889,
+          -0.48305344820211504,
+          -0.41600547141890964,
+          -1.753827208824682,
+          -1.4949128118576547,
+          -0.8623782576251181,
+          -0.4960442421308069,
+          -0.7671888044690902,
+          -1.8360778602359784,
+          -3.0661197066758348,
+          -2.0401923460849023,
+          -0.8584501990756871,
+          -0.8714384406978015,
+          -1.8555664845843582,
+          -1.589978191470541,
+          -0.8672782059025231,
+          -3.0313357969914065,
+          -0.3513198423394983,
+          -0.4759562870060938,
+          -2.2665052900659477,
+          -3.1210114914615357,
+          -1.5362780143186463,
+          -1.921276278080342,
+          -3.0566670796901976,
+          -1.9233730006348064,
+          -0.7934574790255347,
+          -0.46300859472985345,
+          -0.4585505852459387,
+          -1.0191850093183927,
+          -1.885192337929141,
+          -0.90059165702363,
+          -1.916333316712746,
+          -1.2975197949241837,
+          -2.429699798403203,
+          -0.05013088867677806,
+          -1.9734733630745025,
+          -2.295084946492974,
+          -1.8537728686652928,
+          -1.0290906924335033,
+          -1.2691929446936034,
+          -1.0249540812918418,
+          -0.387686320779584,
+          -2.252027471451544,
+          -2.065008756282034,
+          -3.164689991452084,
+          -0.15816354995335435,
+          -1.3317993333392926,
+          -2.6163781053349027,
+          -0.9353187088493532,
+          -1.0253140278341424,
+          -3.6421827765249954,
+          -1.5017490133233642,
+          -0.7383052669028913,
+          -0.4398735547517766,
+          -2.49107995025334,
+          -1.9900238773814158,
+          -0.27534527189832947,
+          -0.1410954783897269,
+          -2.5236990594830297,
+          -1.7312640064103264,
+          -0.52609787885404,
+          -1.4873006509030007,
+          -0.5438863120663944,
+          -0.6539621627317773,
+          -2.19155938507338,
+          -1.056881601336416,
+          -0.1296856953061264,
+          -0.3621409973699462,
+          -0.5105332301835297,
+          -0.9475848564888769,
+          -1.7191340444193457,
+          -1.2782467096059718,
+          -1.3333795762628395,
+          -0.8261528560413267,
+          -0.6919851138812974,
+          -0.31307196898460743,
+          -0.4223643807193781,
+          -0.7585362486234649,
+          -0.8135717780578333,
+          -0.40750732664824985,
+          -1.7646739008713999,
+          -1.0771956978828703,
+          -0.9789939143908183,
+          -1.9212171008047965,
+          -0.1961893610809513,
+          -1.3211828134996815,
+          -1.4409358446371776,
+          -0.8040335177466044,
+          -1.6197887542691105,
+          -2.5065967177479087,
+          -0.44301566631775025,
+          -0.1819351292373197,
+          -0.5713961613878862,
+          -2.9880451324842605,
+          -1.13708358118249
          ],
          "y": [
-          10.325328180886979,
-          -9.41232136585815,
-          -12.408485656915213,
-          -9.730619157624695,
-          11.660618299449377,
-          11.941644216205011,
-          -9.520772960407404,
-          8.801238424759202,
-          10.773114643643336,
-          11.373627500717618,
-          10.438511335519996,
-          9.367531483022825,
-          10.241725095453084,
-          -11.274486574965406,
-          8.219444964073901,
-          11.417621193080263,
-          12.665850958362677,
-          9.735613993501499,
-          9.256157565890062,
-          10.425762306819236,
-          -9.520051580030291,
-          10.83370932710944,
-          10.465179133036909,
-          9.820854194472679,
-          9.096857798605676,
-          8.471756683432456,
-          8.752699865288287,
-          10.490116295380004,
-          10.999044868933149,
-          8.291331676694421,
-          10.528597007564136,
-          11.748031380517771,
-          9.251298675802582,
-          9.517620904646009,
-          -10.629921242609495,
-          10.723779916267553,
-          -8.119270992715203,
-          -11.073929655953904,
-          10.212307421598497,
-          10.132795874261754,
-          10.770832046604479,
-          -10.742979773611408,
-          9.599096056357643,
-          9.577548687794597,
-          8.75994228378546,
-          -10.964525871308876,
-          9.377364060580826,
-          11.199838004905999,
-          10.22248868753393,
-          -11.466590792244368,
-          10.6203573894813,
-          11.535332210339707,
-          -9.7720817472019,
-          -10.742313908826539,
-          -9.723240753182331,
-          10.21226848303686,
-          12.151870743417374,
-          10.202842450191342,
-          9.376987053725612,
-          9.632474494568488,
-          9.944036919452431,
-          -10.253897997503788,
-          -10.711566074072971,
-          10.67287529234528,
-          9.952771124356275,
-          10.532669779388012,
-          10.776383991281019,
-          10.192262993187015,
-          -10.439282023639935,
-          10.600783017636509,
-          8.60576599714355,
-          -9.66189968218161,
-          9.889893946720166,
-          -10.870729313801387,
-          9.967198100705046,
-          9.998710837586806,
-          -11.058614023659985,
-          10.47734415743493,
-          -12.476715694222033,
-          10.206183409453601,
-          10.310656931430715,
-          9.698933900059936,
-          -11.172869261048207,
-          9.640995511931266,
-          -12.761340401460359,
-          10.91630871689642,
-          9.760667787124229,
-          10.311064999389906,
-          -10.067663326660824,
-          -12.080429219898583,
-          10.413028991481722,
-          -10.065856432114742,
-          9.980545431845783,
-          9.690375874552533,
-          10.56282818235921,
-          9.87143431073019,
-          9.803235609279279,
-          10.160913490307038,
-          9.723299722118,
-          10.24340649025674,
-          9.500965053380943,
-          10.638949359924569,
-          10.061664803827872,
-          10.547379602157552,
-          -9.840298088416404,
-          9.862377108814947,
-          9.750695356294301,
-          9.767219117234461,
-          9.592617209327294,
-          -10.673698387813538,
-          -10.98271041451293,
-          -10.085955617342295,
-          -9.991606945869743,
-          -9.394796621318319,
-          -9.201687062531882,
-          8.395857861938811,
-          10.618429049545378,
-          -9.092235750600079,
-          10.672743842649625,
-          9.804023359710571,
-          10.324765191973288,
-          10.049705513830144,
-          -10.175094287842589,
-          9.870034610322497,
-          10.482768307590675,
-          9.764655330811465,
-          -8.437094898976738,
-          -10.130087554156546,
-          -9.793829073144588,
-          10.351515373018236,
-          9.753720878117957,
-          -9.538440200714666,
-          -9.422559731437994,
-          10.26124410722898,
-          9.162890194807936,
-          10.282680595717512,
-          -7.759937873289783,
-          9.518439451723248,
-          9.974420234751733,
-          -12.263190553196912,
-          9.244570649684533,
-          10.162869319445216,
-          -9.450860036635916,
-          8.208055749904652,
-          10.595152888181765,
-          -10.422321268047515,
-          9.664470191079122,
-          9.18959399521326,
-          9.662133408444854,
-          10.94692265671792,
-          9.600179616058632,
-          10.671215812351795,
-          10.067063388897141,
-          -10.108909252500869,
-          -11.527766237763933,
-          9.584177028541113,
-          -9.374872716839791,
-          10.01785763122829,
-          -9.091035249901793,
-          10.38383723366489,
-          11.929703823540327,
-          10.155135643456319,
-          -10.007087862408062,
-          -11.86419938348381,
-          10.298542498324862,
-          -10.378731801404294,
-          10.075821193849956,
-          10.167460580881647,
-          10.018129077828831,
-          -10.761046649900736,
-          9.280491495339186,
-          10.089258260221728,
-          9.370930107627842,
-          9.816835868672252,
-          -11.48519615060479,
-          9.731740475477928,
-          9.79785963382964,
-          -9.29183357389578,
-          10.278242253647358,
-          10.896601028188295,
-          -9.337436111440521,
-          12.353419613393053,
-          10.456633027749278,
-          11.360674671901897,
-          10.655530434065955,
-          9.278425471210568,
-          9.977737621991318,
-          9.931554330542765,
-          9.14793227691156,
-          10.044911520481644,
-          10.419151867771747,
-          9.469808212721155,
-          10.597981597342027,
-          10.145461849221268,
-          9.854528328274764,
-          11.308356265877272,
-          -8.586447149399882,
-          -9.64725547360941,
-          10.997989942725107,
-          -10.442467486974271,
-          -9.938803798228339,
-          9.445448247465364,
-          -10.028180653118076,
-          10.197603028465972,
-          -9.46828653288543,
-          9.797505220064362,
-          10.096269416784196,
-          7.471718675607152,
-          -9.776579194834664,
-          -9.918531270455718,
-          8.937679155004082,
-          -12.24679956077001,
-          9.566749144586757,
-          10.354906868318865,
-          10.771816276058107,
-          7.312614163835482,
-          -10.309178928778048,
-          10.347996858613314,
-          -10.680444206127731,
-          9.736356161155426,
-          9.890545254054548,
-          10.821756801356546,
-          11.283392952974845,
-          10.310642148549382,
-          9.84669127575578,
-          10.841588957772966,
-          10.240844124312874,
-          10.708144965654188,
-          -9.12733454433793,
-          10.720014904514803,
-          9.376715121135994,
-          9.969733161050236,
-          9.80555802615334,
-          9.688564889867882,
-          8.410348714568432,
-          -10.305910110877317,
-          9.941080781458357,
-          9.869182385850733,
-          10.523252833351426,
-          -7.390231076751069,
-          11.291996296161882,
-          10.40825809658304,
-          -8.370907652681499,
-          9.774161036084736,
-          9.813893395207078,
-          9.268054864332047,
-          -9.50058649233073,
-          10.389741712795495,
-          10.20080817325506,
-          10.183513555953645,
-          11.214437995290798,
-          -10.306509948100373,
-          -12.023611064917977,
-          10.17138382402997,
-          9.891279709495587,
-          10.601609783923262,
-          10.069621693388585,
-          10.148510362507679,
-          10.349409270339605,
-          -10.046651810192925,
-          9.790334566557895,
-          9.35953505430659,
-          -9.607729210300155,
-          8.71219723982633,
-          7.077580246630319,
-          -11.047945573898183,
-          -9.770719662838152,
-          -10.96165031509614,
-          8.134918737695758,
-          -10.684971683312982,
-          9.844730800383568,
-          9.917967436284908,
-          -9.322842347844256,
-          -9.943507293819671,
-          9.910477605481125,
-          9.591416292819822,
-          -9.556962500901042,
-          11.469223256989,
-          9.59577616760701,
-          10.055012425246908,
-          -8.719774329348128,
-          10.02187618194454,
-          10.833901284571297,
-          10.205299651485774,
-          -10.794468840210198,
-          -8.376888358220416,
-          9.33260302231561,
-          9.312151362502938,
-          9.58857328364676,
-          9.629592704056451,
-          9.94218941908942,
-          10.996622212481702,
-          -9.240613420796938,
-          10.42365799498445,
-          9.850194104267185,
-          10.304428121860656,
-          -8.33636504875372,
-          -6.963532370772549,
-          9.721137431128907,
-          9.864647844507553,
-          -7.925663779476537,
-          9.749901028709528,
-          -11.475562476000661,
-          12.08121947438541,
-          10.204185263749638,
-          10.241553344125354,
-          -9.773285408323659,
-          9.941876527399087,
-          9.13195181943933,
-          10.954955480509376,
-          9.12215281679391,
-          -8.539719008312424,
-          -10.799073613736397,
-          10.073674205812477,
-          9.738594235726708,
-          9.217900757726266,
-          -8.902824463250358,
-          -10.609427877331028,
-          9.358632530198493,
-          -10.497052707955962,
-          8.870853482251988,
-          9.528693476432272,
-          -11.734189794253384,
-          9.839877729276932,
-          10.627432533404908,
-          -10.64432779321898,
-          11.07135654078442,
-          10.050115462515784,
-          -9.458915935851108,
-          8.179889150397456,
-          10.020186814569207,
-          -10.309945311501865,
-          10.457102907467878,
-          9.657202708411893,
-          10.13288559726977,
-          -9.046578518981288,
-          9.292759190951864,
-          -8.385230316371116,
-          9.20668164498821,
-          9.47467041060611,
-          8.518098961938337,
-          9.826888175970707,
-          10.163798980064643,
-          8.718842534365246,
-          -10.268470607209752,
-          -10.019982015425938,
-          -9.613066577321952,
-          -8.527971896290861,
-          9.92457973404966,
-          10.451979817205967,
-          -11.060886482672199,
-          9.270409479926933,
-          10.36738242056551,
-          -12.033162721464745,
-          10.476720503979,
-          12.353157413818423,
-          9.905189645869854,
-          11.02499785903249,
-          9.770054976657303,
-          -11.69186005466834,
-          9.118479145127932,
-          9.67741603415558,
-          -8.742847343992626,
-          8.764508416590001,
-          9.470086584755045,
-          9.522875538828599,
-          -9.641278758959094,
-          10.256952498492712,
-          -8.232754394893238,
-          10.174249352477045,
-          -10.064668724402535,
-          10.65059999707749,
-          -9.40535425442359,
-          9.511513140472564,
-          -11.415736908383435,
-          10.310248259472655,
-          -10.769213178797461,
-          9.467381485856247,
-          -10.083642406457137,
-          -7.16824156396622,
-          10.482136800067666,
-          -11.071065248260314,
-          10.104961880784073,
-          9.806271752555087,
-          10.003552990129508,
-          9.794891778709056,
-          -10.83521071148997,
-          -11.941448816910189,
-          10.353519419274406,
-          -9.825372391907086,
-          9.536781979347404,
-          10.26355295397942,
-          9.309589902772725,
-          9.624896777253257,
-          -11.175929058712642,
-          10.665935120510195,
-          9.94362027473024,
-          7.395731749677162,
-          10.170681062856596,
-          9.347080454015694,
-          10.427687591691768,
-          11.110278830141834,
-          10.96771466161361,
-          8.438108798713474,
-          8.833280094918228,
-          10.536492452185726,
-          10.858329182716028,
-          9.230376595549373,
-          10.962972247112184,
-          -10.430193322752535,
-          9.457461150340938,
-          9.651346445733708,
-          9.111712859346763,
-          10.157998093091683,
-          9.978623430638285,
-          10.250509747799923,
-          -10.840786223551579,
-          9.781147189634364,
-          10.212480658257045,
-          9.10244406156415,
-          10.075929099698076,
-          10.489655095521973,
-          -8.77623612309952,
-          7.35300977519192,
-          9.083836176599231,
-          9.687349365837713,
-          9.775835966523791,
-          9.489704613078247,
-          11.811027674006175,
-          9.6154267083686,
-          -10.35251655902032,
-          9.191299820215287,
-          10.600108279302049,
-          -10.420420563352677,
-          11.021977451203371,
-          10.256850661854974,
-          10.071705678152226,
-          9.649790633381375,
-          9.761009653341546,
-          9.716233755136177,
-          9.967136905800086,
-          10.401951056802728,
-          9.829080089251915,
-          10.689685445874646,
-          10.527179463736289,
-          10.830651978972766,
-          10.00040382164134,
-          10.687826411506274,
-          10.16146737447631,
-          9.988380790176851,
-          -8.088514661316006,
-          9.976467569459038,
-          9.942366850477258,
-          9.843912389214855,
-          10.322891994388899,
-          9.757490617486399,
-          -9.449753850144265,
-          10.140690632966079,
-          9.46080544284267,
-          9.700628434988765,
-          10.32118783556915,
-          -10.034105438974892,
-          9.865397595007092,
-          9.975591885967967,
-          10.295606993056523,
-          10.412130247923592,
-          9.79107991974497,
-          9.94016883475673,
-          -12.643213655018723,
-          10.163013316934354,
-          9.733086193252735,
-          10.166881413262349,
-          10.178672321583436,
-          9.974093287129525,
-          10.496041034157722,
-          10.18380032082808,
-          10.262767778349074,
-          9.302234560889126,
-          8.467710699508617,
-          11.826972718192977,
-          11.151535446465218,
-          -10.936993976284855,
-          10.289926880272423,
-          -10.965233249671144,
-          9.990351096923293,
-          -10.071657602577163,
-          -9.493620786210466,
-          -9.130429064634173,
-          9.643670043426514,
-          9.95909656986154,
-          9.943351135989515,
-          10.586722490881648,
-          9.528622619576824,
-          -9.751462030476558,
-          10.161654419889754,
-          10.215009376551231,
-          9.307739013934572,
-          10.138074721964234,
-          9.93032987153229,
-          -9.171126850559967,
-          -10.410229902072267,
-          10.065285814440015,
-          -9.349417370125325,
-          -12.00113927928502,
-          9.799508250104289,
-          10.440935325394594,
-          11.080268250031995,
-          9.868056187768014,
-          10.079031621003319,
-          11.793852130849997,
-          8.313228593227327,
-          11.014270245253163,
-          9.293064539192105,
-          11.21317964132396,
-          10.442580271684722,
-          9.329200680879385,
-          10.874886451157238,
-          9.412343270167739,
-          9.077760985480966,
-          -8.53162097408765,
-          9.997367864814448,
-          9.897454681235713,
-          -10.975009645826793,
-          9.699436494723075,
-          9.63874004754399,
-          10.383711942669375,
-          9.270724276066531,
-          -10.523086760975081,
-          9.462337299722652,
-          10.378956422957826,
-          -11.297576937426589,
-          10.476932801888546,
-          10.667853725355819,
-          9.448715313843438,
-          -10.108703266290876,
-          10.687092273749892,
-          -12.191797872539443,
-          10.082901424404366,
-          -7.255667163973328,
-          9.905669052315476,
-          10.272633015418572,
-          -8.056365677647092,
-          9.992016812405854,
-          10.755768444135622,
-          9.766461457690424,
-          -10.19786753961838,
-          9.436569741658346,
-          10.766044335113687,
-          10.020042941629756,
-          8.199570085682193,
-          9.900619472761466,
-          -8.773076489388345,
-          10.756106287667023,
-          9.332563057957252,
-          10.055687244847672,
-          -8.62218229844321,
-          9.744678223761785,
-          -9.445710322094245,
-          9.433816739142559,
-          8.804115084425375,
-          10.033102243909319,
-          8.480380828928165,
-          9.663856397526255,
-          -9.489793514074005,
-          10.748754802573536,
-          10.573842218210912,
-          10.151895559968121,
-          10.061467824414079,
-          9.774421504713244,
-          9.895805885790235,
-          9.285017516172951,
-          10.26800160746665,
-          8.651471410345675,
-          10.090553050881704,
-          9.208856460706084,
-          10.453350151271358,
-          8.355877860637547,
-          -11.115719009576157,
-          11.61302009922706,
-          9.982406325638058,
-          10.91045004990296,
-          11.56699400735451,
-          9.121499749856484,
-          -10.466614176077321,
-          10.195509762605136,
-          10.2080307840869,
-          10.055048527743514,
-          -11.06982058805527,
-          -9.713833883904417,
-          10.439453858933316,
-          -8.822795714243291,
-          9.954468761798818,
-          -8.777607995648172,
-          9.935487341153747,
-          10.383861115629731,
-          9.314883427811084,
-          10.60889056810953,
-          -7.946338266087511,
-          10.088205746067631,
-          10.101807757344847,
-          -10.492986925437783,
-          10.795709392480063,
-          -9.085704698285431,
-          10.674948812654991,
-          10.33074154801792,
-          10.854965782119061,
-          9.756146487311842,
-          9.60548527481645,
-          9.942977001990728,
-          8.140939465333341,
-          -11.572048787125883,
-          -9.938194656343839,
-          10.105253460484553,
-          10.129474944327544,
-          -10.05686619176922,
-          9.69295455286514,
-          10.722475810996396,
-          9.397331790099434,
-          9.542952486946456,
-          9.811615741942216,
-          -10.378408779566316,
-          -10.349353160115355,
-          10.523311595101507,
-          10.138521757246984,
-          -9.267129382978457,
-          10.156869617528246,
-          -8.702938864573024,
-          -10.45135375843345,
-          -12.54380416974504,
-          11.154252410914214,
-          10.619097814451212,
-          10.317394753251472,
-          11.124498919307928,
-          9.503921717233256,
-          9.897773573587532,
-          10.157612530634447,
-          9.950575381687928,
-          10.441671078034958,
-          -9.091741420260702,
-          -9.298574416784833,
-          9.035874791434699,
-          10.27763656893454,
-          10.450401530204552,
-          -8.650470432472867,
-          10.112924897222214,
-          10.219968960589839,
-          9.701606267623008,
-          -8.336937489295888,
-          -8.134437503060296,
-          9.893705847988436,
-          -10.012129662673697,
-          -11.38745619638131,
-          12.072509669854838,
-          10.520089377061792,
-          9.719906680371006,
-          -10.380491367511954,
-          9.80904833356554,
-          9.893761877694022,
-          10.954195830594669,
-          7.851445199013355,
-          -9.996267267487205,
-          -11.68811559415615,
-          10.224698004025791,
-          10.302595114301853,
-          10.053193011209364,
-          10.1900690453493
+          -1.4857311178942783,
+          -1.0723636812396542,
+          -0.09743213564937014,
+          -0.9923178270260069,
+          0.4481166914137775,
+          -0.28077554135704075,
+          0.43484930246829734,
+          -0.6086616330204728,
+          -1.448918158522015,
+          -0.05767074696331154,
+          -0.6037864673398763,
+          0.6967467893294699,
+          0.4769875788601392,
+          -1.4117284397989462,
+          1.851058391995163,
+          0.4278298756649703,
+          0.6090960081304404,
+          2.7364622167369577,
+          0.8499653506234571,
+          2.3781934701024454,
+          1.466912924315974,
+          1.1431354101415105,
+          -0.7619804925647651,
+          -0.8092332232551607,
+          -0.6179237634080186,
+          -1.09769506082987,
+          -0.36201797488035314,
+          1.6447991310969243,
+          0.2984118333625687,
+          -0.3294365478644792,
+          -1.1593501876767296,
+          -0.043944245618990685,
+          -0.5740909743762312,
+          0.41395937106665104,
+          -1.0488789559222558,
+          0.24182738287679773,
+          0.5485242259692802,
+          0.6493435214732375,
+          -0.9152075009610767,
+          2.8680328647153237,
+          -0.06901099845027203,
+          -0.019362433683497438,
+          2.218947079548012,
+          2.5825416099251983,
+          -0.3375523611662339,
+          -0.31423115808270374,
+          -0.4060308965394561,
+          0.6769487920263999,
+          -0.10384952823594906,
+          2.4801853487816627,
+          -0.29521856508563693,
+          1.5144411537298974,
+          2.982519609012586,
+          0.17906214797453013,
+          -0.068398387060699,
+          0.5223773734239502,
+          -1.3157718720258553,
+          -0.6435599511740355,
+          0.24579771570979458,
+          0.5290166299212167,
+          -0.20014875987334468,
+          -1.554453472899188,
+          1.2114559869004398,
+          -1.8965272119690635,
+          -0.11015103067518028,
+          -0.1929008329212627,
+          -0.4011749977401684,
+          -0.37090886413920066,
+          2.1428599484403055,
+          -0.02733475959703191,
+          -0.8583145311308644,
+          1.2270285859642023,
+          -1.063596415036118,
+          -0.0935765980620491,
+          -0.3108064792323646,
+          -0.5390304759051383,
+          -1.4028265800686892,
+          2.5743438892877264,
+          -0.2844684678837859,
+          -0.3302314418617207,
+          -1.6513785587479592,
+          -0.05275319730444017,
+          -0.20318906499956135,
+          -0.017258673162839022,
+          -0.9026724862498468,
+          -0.6581261080220713,
+          -0.37482849383269445,
+          -1.1512816508513404,
+          1.6115280417988092,
+          0.468961249212561,
+          1.5356529169838846,
+          -0.25730279491290275,
+          -0.06170805182086969,
+          0.63859122024227,
+          -0.049479143081919696,
+          -0.18192500898084263,
+          -0.36701171971142665,
+          0.948864669255327,
+          -1.3579217122052336,
+          2.201977796420903,
+          -0.524432666416621,
+          -0.022619775050709556,
+          0.3909769123361898,
+          -0.5250790976110884,
+          -0.5538827518681582,
+          -0.2855513006633257,
+          -0.17781457846234705,
+          -0.45819859779388383,
+          1.9422539947003874,
+          -0.4515431907558971,
+          0.11598936046459396,
+          -0.0731749573316367,
+          0.6219834940772277,
+          -0.850192460154193,
+          -1.3467586002841458,
+          0.8449505874801309,
+          1.4244439441386794,
+          -1.2760133328251628,
+          2.4875891789710227,
+          -0.8822334883660141,
+          1.7364889469050917,
+          2.062331242615079,
+          1.6483950322702725,
+          -1.1262529561682202,
+          -0.19673503817902893,
+          1.7359231041006917,
+          0.9931089319327546,
+          -1.1954047278719346,
+          0.9565673070067591,
+          -0.18063034037844394,
+          1.4269153355241153,
+          0.48880593968535657,
+          -0.3028555526936898,
+          1.2108169192318852,
+          0.14488992918679822,
+          3.0096547623796357,
+          0.7091536017852464,
+          -2.3648093663378353,
+          -0.6256206030205387,
+          -0.5050721559774491,
+          -0.2294460761967445,
+          -0.3296268559514628,
+          -0.9656845480493985,
+          2.9686007742870935,
+          -0.46220317305367664,
+          1.9023970919211113,
+          -0.2184576248405241,
+          0.41869104945538693,
+          -0.5187504962693392,
+          -0.6608459287851378,
+          -1.1441046083327278,
+          -0.5115882290372551,
+          -1.2626164252777192,
+          0.5339150289863472,
+          -1.023820299600322,
+          -0.30117359339110217,
+          -0.4213560809497736,
+          -0.19170359208369958,
+          1.5038626052689192,
+          -0.9730346301404496,
+          0.40512013539303515,
+          -0.24597094392376473,
+          -0.5679119727196875,
+          0.1011914035841891,
+          0.8979888949381185,
+          -0.6081459693172466,
+          4.115196332265118,
+          -0.7649696174030827,
+          1.768020342609384,
+          -0.35983798110827303,
+          0.9898139356876513,
+          -0.5867838638484728,
+          -0.9660163794550705,
+          0.8963649598100218,
+          -0.14056938776015837,
+          0.5318546812125151,
+          1.2117389594488766,
+          1.6364752632544666,
+          -1.0057263982158502,
+          1.4601748307298155,
+          0.22453239715231588,
+          -1.5684674932683889,
+          0.5891284602805964,
+          -0.16922821338549965,
+          -0.5778488260527299,
+          2.4031831079112145,
+          -1.0601722589072278,
+          2.1466822315121252,
+          -0.3794646341149417,
+          -0.5258392118013051,
+          1.3380919246301513,
+          -1.0071819703522276,
+          2.341141048362129,
+          1.688067830487077,
+          -0.9337564749790495,
+          -0.37845238610235654,
+          1.9170690874767338,
+          2.237315508477032,
+          -0.03932297895618864,
+          1.6932656310016436,
+          0.9942698355929341,
+          -0.5095177877186359,
+          1.288764371158702,
+          -0.4925085054910425,
+          1.3292002566156842,
+          0.6050605735306451,
+          0.36863328502218273,
+          3.203097329439698,
+          -1.8457769660846943,
+          -0.2895960581524277,
+          -0.6398422892370372,
+          -0.40112322114769383,
+          0.5318331595881092,
+          -1.0265313480458467,
+          -1.0685394191218416,
+          -0.4632668941581022,
+          -0.8220284020493911,
+          1.3486375712341556,
+          2.2046355943437654,
+          -2.0780128389449843,
+          1.5022872142164392,
+          -0.1270871105824336,
+          -0.5648251959412927,
+          1.7866825349867186,
+          0.4838472231269165,
+          1.1022693021126073,
+          1.739647245743493,
+          1.0130084489360116,
+          0.15936521198671683,
+          0.3541981386287888,
+          1.404547000611151,
+          1.394495860193496,
+          1.9666701423011796,
+          0.9334273953996204,
+          0.12662932796092052,
+          1.9363356411577848,
+          4.3403808433232705,
+          1.1004070333418956,
+          1.2286793559547582,
+          2.3633916105579553,
+          1.8663829022105918,
+          1.1779669011079403,
+          0.21301126849512209,
+          1.5405601046149933,
+          3.3320510871327476,
+          1.1427247109758143,
+          1.3735349974761384,
+          2.625115140851846,
+          2.6270793594023267,
+          2.228365566095343,
+          0.31493243506648905,
+          2.2726660122099847,
+          3.515891800630189,
+          1.0162912634857333,
+          1.4222464172345588,
+          1.1509591667740178,
+          0.7414019570334662,
+          1.134105456079702,
+          1.3650871756387226,
+          1.9737991897698053,
+          1.6969657340501036,
+          0.8390583412050882,
+          2.9020852240026267,
+          0.6565280357070976,
+          1.0022901083130713,
+          1.2243315169048594,
+          1.181142896151652,
+          0.5187038642267019,
+          1.5040836611304118,
+          2.1450583843836566,
+          0.9326899724776722,
+          0.05250454262677007,
+          0.8280857187003923,
+          1.2734496074357475,
+          0.44965038031306814,
+          0.41380635581153136,
+          0.4022434297833498,
+          2.4416192558948886,
+          2.211024326485205,
+          0.5158153789426791,
+          0.805783634256195,
+          1.0192020146974798,
+          0.06560250591831995,
+          2.117703111458349,
+          1.5167588709142428,
+          1.1546089617530226,
+          0.9517509627978101,
+          2.061902277798543,
+          2.268776408184692,
+          2.687591080078806,
+          1.4117014447825333,
+          1.0801277391427326,
+          0.18706130360082873,
+          0.3170030463107544,
+          2.608347692563568,
+          1.8164087155634925,
+          2.4371967214599355,
+          0.12017124203881235,
+          1.3110845956367787,
+          1.5939522025522943,
+          2.34325091362328,
+          2.797373521134011,
+          3.0289917604267176,
+          1.667494342664794,
+          2.1397671666911675,
+          1.3110605422059096,
+          0.8980352322208935,
+          3.4880073922518693,
+          0.9122027901257738,
+          0.6177985173191862,
+          3.383075338847999,
+          1.4130134951210187,
+          0.9435879076268117,
+          1.492478511267723,
+          0.7772592463696326,
+          1.9419190055948838,
+          0.44381161723305396,
+          1.4262689738481011,
+          1.5209241199274688,
+          0.23679909462533566,
+          0.37648743223368053,
+          1.4336259467170176,
+          1.194252186532182,
+          2.4146153229563603,
+          1.8096163032858819,
+          1.0188202354563496,
+          2.8623616097666558,
+          0.7759220331603659,
+          0.8494845720671937,
+          1.5426903146079254,
+          2.7143442460768217,
+          1.240818951322062,
+          1.9377451297433597,
+          0.33333032959827114,
+          0.9091517560453366,
+          2.8941061710839167,
+          0.14187897176804687,
+          1.0983391215791893,
+          0.6617665034034825,
+          2.640033958072988,
+          3.7987162944021544,
+          1.5243139727298392,
+          0.5589917943702416,
+          2.4307106296067236,
+          2.3316300941738564,
+          0.551631472029585,
+          1.3630607788565314,
+          1.4179112882540084,
+          1.6251240621621275,
+          3.296052008942092,
+          0.2762066344520867,
+          1.1363406000100398,
+          0.641333028143514,
+          3.0847705231130687,
+          1.0280552756985126,
+          0.14440277058965612,
+          0.4169692262559759,
+          2.2953433691570133,
+          2.2177117575457705,
+          3.14945585827081,
+          2.22503314287922,
+          1.6663210391368115,
+          1.5229660805652494,
+          1.22088477844021,
+          1.0741757837407597,
+          0.4469280965588912,
+          1.301136768941749,
+          2.0994287970189207,
+          2.4177448733399878,
+          2.2187207616559546,
+          0.3663494298871971,
+          0.8828876055154656,
+          1.242629586989352,
+          0.4938654306167185,
+          0.410515494990069,
+          2.1240913093871,
+          0.5900545549454963,
+          0.23619919870275563,
+          2.977487914887215,
+          0.12541642334688174,
+          1.1489348484900095,
+          0.34863150182806435,
+          1.7333510279264877,
+          2.6925401567538265,
+          0.4022268345234369,
+          1.1738175432954348,
+          0.2185873084914779,
+          1.957633482493979,
+          1.2703772698069675,
+          0.5620993815407218,
+          1.7918374476897985,
+          0.05278973896560557,
+          2.434204116330627,
+          1.0782345823469015,
+          3.281387431148688,
+          0.0691603795747282,
+          0.9270864399183891,
+          3.129978695714084,
+          0.7189018743641661,
+          1.4286479883642578,
+          2.960467449283737,
+          0.6328026020501929,
+          0.37412528337129924,
+          0.34518466803308356,
+          0.35415163227875035,
+          2.3822998577405543,
+          3.065780599320977,
+          0.574181071756044,
+          1.2138405265846,
+          1.0784448205927313,
+          0.6520498273086761,
+          0.16392827608449323,
+          2.6148670458294454,
+          0.3042029848992951,
+          1.7179248046245958,
+          2.50536333599989,
+          0.5680409215298473,
+          2.4535203768704354,
+          0.18127164677863838,
+          1.8687614063913176,
+          0.2840321463534361,
+          1.3438949362632302,
+          1.2967383888176143,
+          1.6359354686257213,
+          0.01941535061356081,
+          0.546372858603712,
+          1.4429344703204503,
+          2.4377495834416263,
+          2.164768937326588,
+          0.5435644316930004,
+          1.4212388423067468,
+          2.165856969659901,
+          1.760242868963521,
+          0.7573052122406508,
+          0.6168231483782136,
+          1.7841274395770939,
+          1.5284049568628064,
+          0.10239546724527748,
+          1.2918607676849687,
+          3.0236046925809257,
+          1.5949270443458399,
+          3.3709185092764806,
+          1.3762149672590125,
+          1.062246130482685,
+          1.3530276633237577,
+          1.2034975761923894,
+          2.0167697866432697,
+          0.7820132228398882,
+          0.6899375931721607,
+          0.08035388233833862,
+          2.169621239572723,
+          1.5081275212296343,
+          0.9634810440237155,
+          2.8685539379220897,
+          0.5825419596217309,
+          1.5240852069818274,
+          0.9340959689093764,
+          0.78973638367366,
+          1.9174040299780035,
+          0.8780428377318834,
+          0.3663241900416463,
+          0.8778696874738636,
+          1.5069987038380181,
+          0.8929602242202236,
+          0.21635226100033844,
+          0.9489211703570216,
+          0.45274146996745745,
+          1.7232767858607754,
+          1.8973334207135228,
+          1.556859290426178,
+          0.3671478372616028,
+          2.4869177571581584,
+          2.104675113991061,
+          1.4125702199958807,
+          0.3501031788231367,
+          0.44270342002992735,
+          2.5111115838668043,
+          0.258153610568689,
+          1.4085399077478298,
+          1.2103419428618833,
+          1.8871436352315083,
+          1.8500028204193584,
+          2.7897205062541452,
+          3.816774932074517,
+          2.8745422384770922,
+          0.5182573201389942,
+          1.9244965940839023,
+          0.8108948224782957,
+          2.3704375980040404,
+          0.38250623501378256,
+          2.019614557631159,
+          1.0512937915235347,
+          0.7010492216290038,
+          2.012896124156234,
+          1.7038326338809444,
+          1.257966356820496,
+          1.227084267529183,
+          0.5939411822177236,
+          1.3900316841615408,
+          0.5974902072157109,
+          1.8192677035840146,
+          1.3339658531822005,
+          3.3348621298846157,
+          0.42311095194713666,
+          1.7254525175451962,
+          0.22615763793124122,
+          1.524632907604416,
+          3.130109302777611,
+          1.8988283670534911,
+          0.9812083880058002,
+          1.240093490013415,
+          1.1482352375229437,
+          0.7055805199210977,
+          0.3011944613461246,
+          1.084300407450197,
+          0.5281579179127651,
+          3.042116324372371,
+          1.9129792026210923,
+          2.002537478547592,
+          0.39787450362908505,
+          0.5028270500620475,
+          0.3328177840332843,
+          0.8133409352650394,
+          0.5926788374764365,
+          3.803781909340979,
+          1.2230339468791604,
+          0.9871572569175766,
+          2.2172040592252307,
+          1.011353255938253,
+          1.9487313862934004,
+          1.908668538642473,
+          0.9800406767685532,
+          1.0692674274689589,
+          1.0712839392836475,
+          0.2645313244939139,
+          0.08428734828509954,
+          1.4639767384615943,
+          0.21496833830357176,
+          3.4671890377520738,
+          0.5370967309142204,
+          0.23379836751885186,
+          3.5568805273325723,
+          0.6577484977946806,
+          1.301142792263413,
+          0.5460315242983521,
+          0.14912813943929515,
+          1.9005003600049237,
+          0.09237034722468485,
+          1.0407937829714924,
+          3.336125689251777,
+          0.979885082510114,
+          1.3582129983759919,
+          2.9918531083101705,
+          0.028232088881630202,
+          0.608842776633516,
+          2.1292336436163426,
+          0.4216734386705019,
+          2.0599270343720875,
+          1.1300372677443578,
+          1.337197807712273,
+          1.170781287967531,
+          0.14272792998973316,
+          0.8581710093930683,
+          2.2105411372159236,
+          0.7591275597330652,
+          4.038935423498882,
+          2.2636403697055325,
+          0.9294176866272409,
+          3.1762807842488106,
+          1.7624681725938112,
+          0.2566954588556952,
+          0.8136986911947587,
+          3.433651955849628,
+          0.48066225755699465,
+          0.11425651227264733,
+          0.5538786698827836,
+          1.6114346721628134,
+          1.1528943930556055,
+          3.9345635943861903,
+          0.9573495077794433,
+          0.5568498052296645,
+          0.15532947187105484,
+          1.8220764620934524,
+          1.5433099772082362,
+          0.08599093840979333,
+          0.7090094213672604,
+          0.021466279115728515,
+          1.6256554203340428,
+          0.7097257795081413,
+          1.484177928451031,
+          2.076857794806229,
+          0.5403551246711138,
+          0.10121811351806109,
+          2.3383800865565902,
+          2.6052027137773477,
+          1.5958927363114377,
+          2.0968952823737177,
+          2.0773235208750194,
+          1.17066757175528,
+          1.955771941120945,
+          2.6490454612397007,
+          0.561605326118706,
+          0.7909899441412135,
+          2.8240682789337086,
+          0.5945983738108114,
+          0.8929085591283844,
+          1.8525252666396623,
+          1.3354689902173553,
+          1.386463819109001,
+          1.0443186403510825,
+          0.6559045064880451,
+          2.6656049505253137,
+          0.8485201037580541,
+          0.5150516020360221,
+          0.07810173940276066,
+          0.9869313837201612,
+          2.1107855438874203,
+          0.7456789049565532,
+          1.2278917132443394,
+          0.00912811174985606,
+          3.243959512595764,
+          0.6687522396519426,
+          0.790368389042654,
+          0.7562957591834162,
+          1.5350780073546615,
+          1.2337376860235958,
+          1.7149038350139487,
+          3.3679909498949105,
+          2.6376020559139635,
+          0.9268526821495264,
+          1.977279839742649,
+          2.3607830115145543,
+          0.8650005159731046,
+          0.6863105934361695,
+          2.4699570393808674,
+          2.4150745493005035,
+          2.485985697509868,
+          1.475787014778866,
+          2.2598994040169664,
+          2.7366790475614495,
+          0.4281810059847473,
+          1.982735816709329,
+          1.4192186811364027,
+          2.35862049941936,
+          2.6528363378799558,
+          0.09763581638721908,
+          1.3486936502513138,
+          1.7793948487762674,
+          0.1886944633670048,
+          0.12729461081951,
+          1.27723925483655,
+          1.779184144809045,
+          1.0665690317648608,
+          2.6614918908130503,
+          1.1759596958508312,
+          0.1388285477566953,
+          2.6450463701984033,
+          0.6610687326062039,
+          0.19356905056355567,
+          1.873144714474966,
+          1.2082353714502028,
+          1.6707860984412193,
+          1.6618720957417685,
+          0.2119965322161994,
+          0.34020546401883756,
+          2.6050851761475395
          ],
          "z": [
-          -10.818430713704815,
-          -12.247729394708646,
-          -10.630171149730153,
-          -10.021451290081666,
-          -11.660749256027334,
-          -11.982957816213517,
-          -9.95627957729342,
-          -7.889898399117127,
-          -11.109613106864185,
-          -11.305110576966818,
-          -10.880505338277983,
-          -8.884676311039769,
-          -10.625074858079149,
-          -12.654913613154603,
-          -8.234390107722762,
-          -11.339749523311964,
-          -12.657735979948871,
-          -9.411399432093278,
-          -8.701376755471285,
-          -10.655125070067688,
-          -11.27130149907519,
-          -10.784007309317293,
-          -10.806171700313165,
-          -10.03275420012377,
-          -9.140468324046628,
-          -8.454247159280358,
-          -8.737077620691931,
-          -10.636421585155531,
-          -11.028865122609774,
-          -8.311612752025798,
-          -10.480183281158912,
-          -11.701686582913828,
-          -8.650832106906066,
-          -9.524599962233472,
-          -9.702293486705267,
-          -11.411630392437907,
-          -10.811990384586526,
-          -8.86202839745588,
-          -10.554273200905724,
-          -10.094778743001394,
-          -10.838833568067049,
-          -9.9649037942196,
-          -9.572094718631515,
-          -9.50815745305595,
-          -8.720264819296531,
-          -9.899916416642341,
-          -9.441365923258914,
-          -11.150542594528275,
-          -10.607663186430887,
-          -9.542455621217167,
-          -10.670877297591346,
-          -11.603150099712762,
-          -9.33493846313661,
-          -8.626451611255712,
-          -9.688097081224099,
-          -10.197529460107788,
-          -12.1243800176618,
-          -10.331513624266409,
-          -9.036094497585538,
-          -9.133610657996742,
-          -10.097639599989291,
-          -10.569355062753232,
-          -10.395401411510203,
-          -10.607955021477277,
-          -9.916826280952023,
-          -10.978452176322946,
-          -11.438072733721432,
-          -10.253569139774575,
-          -9.661021156070547,
-          -11.299306792538088,
-          -8.569190623333222,
-          -10.252629617114506,
-          -9.817713477691095,
-          -9.118194170834107,
-          -10.18243601712522,
-          -10.099317722616084,
-          -9.16908497818416,
-          -10.83396004584947,
-          -9.71605601239768,
-          -10.242698487221315,
-          -10.291644908887667,
-          -9.424941989689238,
-          -10.565007909414375,
-          -9.598452361032688,
-          -10.446318618274562,
-          -10.903003343762181,
-          -9.88131959009876,
-          -10.465329987525033,
-          -9.82935490963337,
-          -7.736847362042795,
-          -10.365119085146352,
-          -9.796433403800766,
-          -10.030717821644338,
-          -9.728659113169511,
-          -11.114683612705678,
-          -9.412057663551392,
-          -9.779038807020326,
-          -10.212480458308903,
-          -9.710343068110529,
-          -10.693854473047432,
-          -9.529809801385221,
-          -11.00151934168524,
-          -10.066191175684255,
-          -11.0661818836445,
-          -10.183700779671243,
-          -9.839811605373562,
-          -9.781722538405417,
-          -9.666175840977541,
-          -9.07603161613846,
-          -9.735787067107443,
-          -9.5751830354498,
-          -10.471036410140114,
-          -9.210242528268916,
-          -9.977038238528394,
-          -9.018944707307906,
-          -8.372128265139466,
-          -10.94417705290091,
-          -10.31476614070576,
-          -10.684209990398996,
-          -9.700923185429314,
-          -10.528771632550367,
-          -9.855479293360068,
-          -10.47026116810064,
-          -9.906338636074935,
-          -10.834680760246101,
-          -9.476224812903526,
-          -10.051355146575089,
-          -10.87853849677181,
-          -10.133799207153848,
-          -10.35767389094418,
-          -9.911859041097289,
-          -10.102784534652773,
-          -12.311751890450406,
-          -10.447289234434523,
-          -8.70702343109177,
-          -10.615948824380093,
-          -8.794985539492586,
-          -9.5050364077276,
-          -10.054503455560173,
-          -9.302594668399268,
-          -8.835158778809214,
-          -10.231320136228447,
-          -10.641432781340377,
-          -8.288668335136636,
-          -10.536112064931004,
-          -9.57203671016751,
-          -9.327967446177226,
-          -9.11064762923464,
-          -9.695604158854266,
-          -10.937174372872635,
-          -9.626135164516425,
-          -11.313723444316253,
-          -9.965898912081425,
-          -8.33621112020581,
-          -9.217930939726523,
-          -9.44899490618525,
-          -10.03064751684816,
-          -10.058447036890929,
-          -10.010456334028316,
-          -10.5337062814895,
-          -11.81980269343461,
-          -10.410112712097668,
-          -10.488372372330845,
-          -10.546095000180312,
-          -10.612010012057825,
-          -8.938816330876236,
-          -10.114847344749533,
-          -10.431243808398637,
-          -10.099239157191965,
-          -10.846428090822418,
-          -9.103379550732317,
-          -10.037676842467295,
-          -8.9454464685168,
-          -9.471298192241694,
-          -9.175403124067048,
-          -9.473454268629807,
-          -9.634253369404654,
-          -9.017003033639204,
-          -10.255485313213969,
-          -10.819602356307998,
-          -9.267022923715238,
-          -12.4126792552899,
-          -10.820312281046515,
-          -11.286851685243102,
-          -11.134504304962327,
-          -8.671868012536432,
-          -10.109407371309635,
-          -9.793790681951496,
-          -8.859535914285052,
-          -10.189526597852074,
-          -10.892196819329358,
-          -9.550531806612113,
-          -10.5926329519112,
-          -10.335742603417875,
-          -9.54293442828726,
-          -11.324471808225697,
-          -9.511643576764662,
-          -11.191786822274008,
-          -12.041329465564914,
-          -10.006305036921855,
-          -9.285164017655147,
-          -9.392895065300742,
-          -11.690557404792997,
-          -10.517063251726782,
-          -9.124023438591108,
-          -9.456897651498627,
-          -10.43458290126186,
-          -7.3328659423886915,
-          -8.731215568945865,
-          -11.970762698300664,
-          -8.877815292157926,
-          -8.64103013255629,
-          -9.093803498021103,
-          -10.679062825752528,
-          -10.669245446876188,
-          -7.316960637229702,
-          -11.22714485541757,
-          -11.141479533897115,
-          -10.031583590606408,
-          -9.421101332165671,
-          -9.865608874406936,
-          -11.27092765166522,
-          -11.216266302079394,
-          -10.326749511854864,
-          -9.76133192599673,
-          -10.797715798908492,
-          -10.585013762339186,
-          -10.617770729888479,
-          -11.131413857496625,
-          -10.774810214939961,
-          -8.90925588630823,
-          -10.060499894160428,
-          -9.726887214759968,
-          -9.221128093747426,
-          -8.436632772198731,
-          -9.30560636076515,
-          -9.748209087830313,
-          -9.866970477585063,
-          -10.782690065210717,
-          -13.0256459007781,
-          -12.182414496282131,
-          -10.517315551233139,
-          -10.051704993257193,
-          -9.802213949091865,
-          -9.609330463578827,
-          -8.69618225663979,
-          -10.692284176268815,
-          -10.79186412641534,
-          -10.832975172279063,
-          -10.23788414797895,
-          -11.108001420680266,
-          -9.010351936745815,
-          -8.969416403880054,
-          -10.321385298178095,
-          -9.970234542501485,
-          -10.914325927062517,
-          -10.002582233458213,
-          -10.260795931276325,
-          -10.2666578099268,
-          -10.436314081227694,
-          -9.62082211862181,
-          -8.961004422572767,
-          -9.939261918265142,
-          -8.703347642465669,
-          -7.171393663205057,
-          -9.043840415027372,
-          -11.038210070480707,
-          -9.46577334123338,
-          -8.210145637900238,
-          -10.309503974684164,
-          -9.735084834192376,
-          -9.97051651013106,
-          -8.224313837489053,
-          -10.535685322202246,
-          -9.819540719905325,
-          -9.165846460445623,
-          -10.275253840464561,
-          -11.457425514089513,
-          -9.233175830467939,
-          -10.024946359991091,
-          -9.828662634810883,
-          -9.934962227762966,
-          -10.787713261647667,
-          -10.150814686428506,
-          -9.400391634014346,
-          -10.099039230998631,
-          -8.490168493874645,
-          -9.307781880911444,
-          -9.507914797036275,
-          -9.515835639599818,
-          -9.93281674296528,
-          -10.855774567274864,
-          -7.48620422143236,
-          -10.82330987579641,
-          -9.633013730834616,
-          -10.303673223722067,
-          -10.99490899025242,
-          -9.922128025729485,
-          -9.757854633203396,
-          -9.726537400552075,
-          -9.954511639936744,
-          -9.725366891834739,
-          -11.749122326608159,
-          -12.05414533041359,
-          -10.336799730593542,
-          -10.468295140831057,
-          -9.955870010425794,
-          -9.700402509599662,
-          -9.174800732566384,
-          -10.954297018695591,
-          -8.44360930266209,
-          -10.41768291851017,
-          -9.110981971329164,
-          -10.078657450480067,
-          -9.783628825678697,
-          -8.418328149584628,
-          -8.801194859195952,
-          -10.3634567407341,
-          -9.375187553915804,
-          -9.400033178811285,
-          -8.030738021331427,
-          -9.095474167961548,
-          -9.436940268442822,
-          -9.89354760014476,
-          -10.604304084604925,
-          -10.132490087808128,
-          -11.559780533839524,
-          -10.0897447982525,
-          -10.052662215154017,
-          -8.16167128955505,
-          -9.986765162358747,
-          -8.6901076743634,
-          -10.83934182564962,
-          -9.598030906417584,
-          -10.238819996940629,
-          -9.92252912773147,
-          -9.399867826863199,
-          -11.157852503785842,
-          -8.57948054543959,
-          -8.962763629529304,
-          -8.45551291152466,
-          -9.694534403636453,
-          -10.251673164949592,
-          -8.665673861385137,
-          -10.348496809923876,
-          -9.529870294340112,
-          -9.46368327363282,
-          -12.611651588532935,
-          -9.968869590900491,
-          -10.726428779715315,
-          -10.517183544392473,
-          -8.500784167291728,
-          -10.627954613026033,
-          -10.329995613824126,
-          -10.960213126989423,
-          -12.398760546969122,
-          -9.788710763756237,
-          -11.04715648128644,
-          -9.813199104335698,
-          -9.715862613289644,
-          -9.09940628455439,
-          -9.44453922925689,
-          -11.015311477200077,
-          -8.737370618683086,
-          -9.213357002426768,
-          -9.163867723782062,
-          -10.18135058885633,
-          -10.382919775322462,
-          -9.602949185342709,
-          -10.076746399767954,
-          -12.960820949489381,
-          -10.576611700721848,
-          -7.771209299757521,
-          -9.366664000739181,
-          -8.03497427029813,
-          -10.676071099280872,
-          -11.22581009771864,
-          -9.18660861768792,
-          -8.521531503919412,
-          -11.19664434166216,
-          -10.403728457700673,
-          -7.9475319771035995,
-          -10.367851856281895,
-          -9.782978556699959,
-          -10.03917197530618,
-          -9.791517863035923,
-          -8.476987750926888,
-          -10.600555324637039,
-          -10.308890432638323,
-          -10.114145552212584,
-          -9.458131455430653,
-          -10.58293778678752,
-          -8.645019680408637,
-          -9.314380710481721,
-          -9.890732809887853,
-          -11.162569553514238,
-          -9.953478545157688,
-          -7.374967696046204,
-          -10.229100942949716,
-          -8.508471349156526,
-          -10.514528966736327,
-          -11.244659522698718,
-          -11.02707547244951,
-          -8.437662445985547,
-          -8.789729181196739,
-          -10.424075252520074,
-          -10.949182200881145,
-          -8.821111388248534,
-          -11.726358639544747,
-          -8.315540484406847,
-          -9.026799871702853,
-          -9.322720079439533,
-          -9.108010381314717,
-          -10.564314858342108,
-          -9.92353496796476,
-          -10.30065730565773,
-          -8.604520404089872,
-          -9.458529273674058,
-          -10.297582192112484,
-          -8.311535458449887,
-          -10.12911625311442,
-          -10.468886772152468,
-          -9.105667645575174,
-          -7.283313980271994,
-          -8.349149095622703,
-          -9.500065710761614,
-          -9.657538164472204,
-          -9.492127524403836,
-          -11.892125772213543,
-          -9.281626391780568,
-          -9.828811751254234,
-          -9.27440800765774,
-          -11.108274064054392,
-          -9.669379162763507,
-          -10.992136125529363,
-          -10.448608928048124,
-          -10.243026688458674,
-          -9.643552402102907,
-          -9.440228711630944,
-          -9.42237552583497,
-          -10.219446035388,
-          -10.86963276423949,
-          -9.86567642801716,
-          -10.677987931511653,
-          -10.569075511365366,
-          -11.397981256322144,
-          -9.968048434850001,
-          -11.1445940459539,
-          -10.41109200974119,
-          -9.744725099462647,
-          -11.016329021187403,
-          -9.789804301230054,
-          -9.951261720045775,
-          -9.946364388187458,
-          -10.591602484697619,
-          -9.575476740420168,
-          -9.217919524488725,
-          -10.330253413198585,
-          -9.074184995276825,
-          -9.33406915645841,
-          -10.502992806883375,
-          -10.358883195939807,
-          -9.746984359404454,
-          -9.909946007216616,
-          -10.437621141999681,
-          -10.730988273655854,
-          -9.656270366656557,
-          -9.933980958913095,
-          -9.323473158040752,
-          -9.727622588616443,
-          -9.580945944483759,
-          -10.267422805064276,
-          -10.155507637740271,
-          -10.168089392928387,
-          -10.893675408684707,
-          -10.18187759972041,
-          -10.678087154733339,
-          -8.951465207923462,
-          -8.482659524820532,
-          -11.815937855850887,
-          -11.208815998769897,
-          -9.488524070430863,
-          -10.23133780554544,
-          -10.770423752157047,
-          -9.948174967204265,
-          -10.949867561412214,
-          -10.660379290571123,
-          -9.019288750703915,
-          -9.260972129205985,
-          -10.244247252209481,
-          -9.670255761033095,
-          -10.763603880289526,
-          -9.212449767212341,
-          -11.212154658118909,
-          -10.276111831187567,
-          -10.57672272264139,
-          -8.837097168330429,
-          -10.421295909462321,
-          -9.98006226748991,
-          -9.752985060763418,
-          -8.028495954650161,
-          -9.975758560634908,
-          -10.155385417303219,
-          -9.849456710231994,
-          -9.572048142394884,
-          -10.404324987924532,
-          -11.0744196274732,
-          -9.653538884883433,
-          -10.249790334978155,
-          -11.853964304274614,
-          -8.224445950855515,
-          -11.033137493565118,
-          -9.248749235245786,
-          -11.247197049973959,
-          -10.834631843437663,
-          -9.075885892901919,
-          -10.784979246134519,
-          -9.47253434528677,
-          -8.296783535177191,
-          -8.312004177941562,
-          -9.976018233074694,
-          -10.144845839954957,
-          -10.725137675817283,
-          -9.777305160864204,
-          -9.137026182074237,
-          -10.508466237690019,
-          -9.25233703753868,
-          -9.834844493058222,
-          -9.355590580160543,
-          -10.352893642372983,
-          -10.343839742555057,
-          -10.734615775801007,
-          -10.96286070572668,
-          -9.080233864889257,
-          -9.752201887893422,
-          -11.113936866934301,
-          -11.046272914711114,
-          -10.48436485162667,
-          -10.290918747638758,
-          -9.541213314991078,
-          -10.382619257434756,
-          -9.42355671478001,
-          -9.949004623583253,
-          -10.751787135414771,
-          -9.63890877806982,
-          -8.736179510329665,
-          -9.515042363769918,
-          -10.6666670733349,
-          -10.190631414771648,
-          -8.330113831233668,
-          -9.932824623770523,
-          -9.84445062523276,
-          -11.396873541500462,
-          -8.619529656694427,
-          -10.027426385729997,
-          -9.935383641976797,
-          -9.684619960797836,
-          -10.997070585112414,
-          -9.324855332074396,
-          -8.680948435849741,
-          -10.142878310576304,
-          -8.469690857365935,
-          -9.552058419035541,
-          -9.86541998655886,
-          -11.119450167190516,
-          -11.19384483719414,
-          -10.439225065249671,
-          -10.100754021746452,
-          -9.78446302183937,
-          -9.609954805551961,
-          -9.302422551454425,
-          -10.337299888852812,
-          -8.765064512838618,
-          -10.037958092153849,
-          -8.829594942480867,
-          -10.93450269256717,
-          -8.366530712635463,
-          -10.14040964740791,
-          -11.673464720464295,
-          -10.016503760078898,
-          -10.833276885364494,
-          -11.571772867106326,
-          -9.113572886621544,
-          -9.56066514208456,
-          -10.103029675975005,
-          -10.23474074244447,
-          -10.189516264151845,
-          -10.377693473491668,
-          -11.123708042207056,
-          -10.750917098734933,
-          -10.863155671644545,
-          -9.976881629468696,
-          -11.74122524693286,
-          -9.968200747315754,
-          -10.763334882368556,
-          -8.59402898992533,
-          -11.185165959796477,
-          -10.241235859398117,
-          -10.051137674618952,
-          -10.133229467940556,
-          -8.961180195003237,
-          -11.231936528501844,
-          -11.059311924602678,
-          -10.701007504250335,
-          -10.707997210970564,
-          -10.716590002963555,
-          -9.559351177498666,
-          -9.350266038271776,
-          -9.839795461040714,
-          -8.16617804965475,
-          -10.12839895992055,
-          -11.327491484732747,
-          -9.945349659139545,
-          -10.407980802471572,
-          -11.129657764346035,
-          -9.34352865926313,
-          -10.648921603403695,
-          -9.04124250334557,
-          -9.415479230161553,
-          -9.887212712020743,
-          -11.826913906329864,
-          -8.050792998402658,
-          -10.987953202751156,
-          -10.248848088678042,
-          -9.909045964014258,
-          -10.143260322545423,
-          -11.436773442567478,
-          -10.416840579858194,
-          -8.83275119405128,
-          -11.129642370351922,
-          -10.659645429852105,
-          -10.41793204373968,
-          -11.166003456666846,
-          -9.502834820307678,
-          -9.89803454676729,
-          -9.910104726931223,
-          -10.47467984201752,
-          -10.993581620809444,
-          -11.685164090084635,
-          -12.541387291274113,
-          -8.371947287110014,
-          -10.54793388977759,
-          -10.708239190212511,
-          -11.666919476879974,
-          -10.10534405277909,
-          -10.289393529293509,
-          -9.476954338404285,
-          -10.89371344641423,
-          -9.251576309160967,
-          -9.89070720605316,
-          -10.039273252910698,
-          -12.030251641158214,
-          -12.086960897786405,
-          -10.808628503642863,
-          -9.451046492762643,
-          -10.523321135971342,
-          -9.773117001930396,
-          -9.67871715023656,
-          -10.956591515477678,
-          -7.867806629176419,
-          -8.717751097154828,
-          -8.419570038434118,
-          -10.308189212070037,
-          -11.023418489069176,
-          -10.090290285965555,
-          -10.347705752164753
+          4.186402508805773,
+          2.9466406856414933,
+          -2.788157779683302,
+          2.3146865522481725,
+          -2.0043405850539933,
+          -1.6420254786233506,
+          -2.9050269888036055,
+          -3.5865030628211643,
+          -3.883135009339169,
+          -3.666138353210056,
+          -2.1703099402845734,
+          1.6036044145309543,
+          -3.189891841065954,
+          -2.2948659100441464,
+          -0.6721964770880509,
+          -3.118377662362411,
+          -0.024781384986052757,
+          0.37264627702650976,
+          -4.231561886381974,
+          3.4207878178219,
+          -1.6758189554118643,
+          3.038258024615817,
+          -0.5473159993505536,
+          -0.17023549293036044,
+          -2.365598847583424,
+          2.2173106714707567,
+          2.5027846205704654,
+          4.031211668053333,
+          2.635808728235509,
+          -3.639743316448339,
+          -1.4732907535898825,
+          1.5316433917752006,
+          -0.9411803774153733,
+          -2.414798146174795,
+          3.467076792838765,
+          -0.2826222049292446,
+          0.6836569875776979,
+          -0.9567620967917305,
+          -3.23439670065485,
+          0.6012455407343129,
+          3.774767019482975,
+          0.48787576564633905,
+          -2.539182815427546,
+          -2.5946821391339654,
+          2.488376765733192,
+          1.687945141439731,
+          -3.5774982277304384,
+          -1.9327327357786457,
+          -2.911147617227771,
+          -3.888545557201392,
+          -1.266793211684952,
+          1.7846673976514857,
+          -3.4572319433640066,
+          -1.0489206851910065,
+          -3.403446823569533,
+          -1.0480303975682843,
+          0.08024798006649903,
+          -0.9919859698983053,
+          3.901662599486632,
+          -0.8912783834798743,
+          3.5359700645764844,
+          1.2652277250595834,
+          -2.650005343856931,
+          3.1086485686171708,
+          0.15658925024344494,
+          1.5482043642093357,
+          -0.38779807585816206,
+          1.1601973459173145,
+          -0.36765018314288644,
+          -2.8050734587847246,
+          -2.8644295451734427,
+          -3.5836486277999455,
+          -3.9396122095270356,
+          1.3517279790883645,
+          -3.621618802024988,
+          3.2434120250115326,
+          1.005630142170114,
+          1.7251767553213373,
+          3.6268105806305853,
+          -3.0356665365096425,
+          -1.005267943801651,
+          -3.2946061077913047,
+          1.1531635014247996,
+          0.2188514761023086,
+          -1.831583650042265,
+          0.16857622601441857,
+          3.3853738232475106,
+          -3.4992792775343,
+          3.4373746669812526,
+          -3.8985836869389607,
+          3.76209391630113,
+          2.0458938319682725,
+          3.1356756230933955,
+          4.24375140852523,
+          -0.9320378549836978,
+          -0.9324371320861835,
+          -4.235867884069135,
+          -0.46500634090614756,
+          -1.1604177509269173,
+          -1.796855643783041,
+          0.8209444150444831,
+          3.329642136793245,
+          -1.6892390647846676,
+          -1.5292704575494023,
+          -0.9030785472207925,
+          -1.0005954596713296,
+          1.1377133722170978,
+          3.7485247398403407,
+          2.8306524211313544,
+          0.2925206816074528,
+          4.278980296086885,
+          4.21868188907541,
+          -3.06739104026311,
+          3.6356799316511275,
+          0.28612722143173386,
+          -2.198939874431836,
+          0.07828910363794961,
+          3.7731844696124464,
+          1.822253511303332,
+          1.4209484467210132,
+          -2.301781531702984,
+          -1.7991083502442762,
+          1.9583237859519604,
+          1.2340993131653901,
+          1.121198418161348,
+          2.5253305668381554,
+          2.100383196688724,
+          2.7521246979695313,
+          2.7678136670240434,
+          0.5437298445501977,
+          -3.517655808570767,
+          1.2576309767787341,
+          1.4081586201360992,
+          0.12229574244666086,
+          -2.890119891422823,
+          0.7435346073001359,
+          -2.1437179105652246,
+          -0.3517882483825381,
+          0.7582826639835378,
+          -0.43015430412996114,
+          1.8435592398923886,
+          2.9909292679028523,
+          3.7941892779351507,
+          -2.01786269881562,
+          -3.482078760471544,
+          2.644166364828992,
+          0.8079401162052822,
+          3.2428644130671422,
+          -3.710992673977719,
+          1.678095500816255,
+          -1.0948335576845754,
+          2.153087700308273,
+          -3.0597897486449463,
+          0.811381096673351,
+          -0.3647242495549752,
+          3.6610266588750617,
+          -2.6460614628556973,
+          3.0264161532272515,
+          -2.392833885756348,
+          -3.3032026715332408,
+          0.22930948869305112,
+          -4.092787786585582,
+          3.546503873687244,
+          3.455861469277961,
+          2.1394358635734934,
+          2.115250403535237,
+          -1.2720357269129696,
+          1.4216864388014967,
+          -0.5208867947589231,
+          1.9893688123970676,
+          1.7546142863614884,
+          0.8416303277658059,
+          0.9454438919804113,
+          -4.198515132103789,
+          -0.961135652813423,
+          2.823210874704273,
+          -0.40145352743562146,
+          -2.694991881141423,
+          -0.8834159836092308,
+          2.2752257363056563,
+          3.0971601810907794,
+          2.296719855409343,
+          3.9193424949753846,
+          2.6348516078943005,
+          4.0639527467888135,
+          -1.1039143249744603,
+          3.269294880338421,
+          -2.765016816391647,
+          -1.8512589956178855,
+          3.5998580113182967,
+          -0.8266875949156933,
+          0.1052835217500494,
+          1.0110265564180283,
+          -0.9028095635086149,
+          3.2837402250478123,
+          3.8348374680915596,
+          0.5904196408446358,
+          2.0135912550382358,
+          -4.005957608031209,
+          0.9152916324171674,
+          0.4319741329497413,
+          -2.292340013909238,
+          -3.2081018566424557,
+          -0.3633895328329375,
+          -3.662399260693108,
+          2.8013495987558974,
+          2.2871522333486327,
+          -3.450618202131362,
+          -0.9282850057694629,
+          2.3021347443695426,
+          1.6361137003294353,
+          -3.400787458203971,
+          -4.022632479183336,
+          1.3690446522693804,
+          3.6461219393759476,
+          -0.7312571786503006,
+          3.733390208785745,
+          3.891251407585348,
+          -2.212292488301088,
+          -2.9532348488573037,
+          -0.7598759681699332,
+          -3.7447487647588256,
+          -0.030719766683677818,
+          -2.2521003472494954,
+          1.0741263791239746,
+          1.1443473383709906,
+          -2.190565171495842,
+          -2.3078486413347967,
+          1.681407167228179,
+          -0.15401409370460772,
+          4.190598470947545,
+          -0.35050378916269365,
+          2.623224441842673,
+          -0.13506704827645777,
+          -3.2831546740848365,
+          0.9099351596520755,
+          2.4697061129231974,
+          -3.144141348211156,
+          0.3295196328299994,
+          1.2158678565011822,
+          1.2214640642612373,
+          0.9191819808824802,
+          -2.2217902249287103,
+          -1.2453583865481566,
+          2.5005827571317294,
+          -0.468629490562245,
+          1.5859739533434167,
+          2.0077323565428147,
+          -0.2190221373189356,
+          3.672768719748416,
+          -4.012465283691254,
+          0.09218909222475347,
+          2.428441315940656,
+          -1.2175126593578196,
+          -1.8612366330102845,
+          -0.07976209188896632,
+          1.7550772468561835,
+          -1.5786419991948062,
+          0.25292117954210447,
+          -4.070398011603419,
+          1.8825868236242052,
+          2.5603321290727665,
+          -0.9648441141891118,
+          -0.3045378440834665,
+          0.4458202124344979,
+          3.973506354368472,
+          0.2112470786871219,
+          0.4317161087997601,
+          -2.6314856291648043,
+          -1.344060269246509,
+          3.9153445725601346,
+          -3.3465301337328803,
+          -3.6354981426916275,
+          -0.00965602564562218,
+          2.3804134293137853,
+          2.6218383900918116,
+          -3.073141434266984,
+          4.004976452147987,
+          -3.21441776943751,
+          0.6659015763517475,
+          3.1727037595116094,
+          -1.4206971612100174,
+          1.489581419079741,
+          3.5769525382823417,
+          -3.8825946295227456,
+          -2.4042139032726793,
+          -1.4542454550277668,
+          -4.062445584130047,
+          1.6730142581172167,
+          -0.30538605536894803,
+          -2.1471017203758045,
+          -0.15299199986163092,
+          4.25170380195481,
+          -2.60998747454724,
+          -1.5302588877345085,
+          3.165173908408902,
+          -3.385374279483872,
+          -2.395914122806987,
+          -2.978885302673405,
+          -2.503030642498061,
+          2.2200980389225116,
+          -0.8291207692672597,
+          3.703753402346841,
+          1.473036351621837,
+          0.6715876708304345,
+          1.6562998248189187,
+          -0.8322086215667959,
+          -2.071778377029624,
+          -0.7242569185131629,
+          -3.4028777193198168,
+          -0.011443053516653201,
+          0.9561559904703607,
+          -2.2216033626895264,
+          2.2572482149997377,
+          -1.015779774257902,
+          1.693293090965538,
+          2.6836924002336815,
+          1.111315329725044,
+          -2.5195903256065533,
+          4.161864965212545,
+          -3.342576731819867,
+          2.173220961443488,
+          -0.4070307840553702,
+          1.9346836543432033,
+          -1.6750369666779892,
+          -4.195021139871202,
+          3.6803446731344103,
+          0.7547383474838973,
+          -2.8711646566259588,
+          -2.5528013683306723,
+          -2.685902680862543,
+          0.5337748790329115,
+          2.7857164186348857,
+          -2.9129275927351896,
+          -2.468183573810764,
+          0.08546322031723363,
+          0.4316691235682555,
+          -4.092763028942487,
+          -3.6977667606699303,
+          -2.27723239765702,
+          3.8544535259089843,
+          4.328430528374734,
+          0.5586982630934267,
+          0.08937963620252631,
+          3.872771489804834,
+          -3.055627660795164,
+          -2.4166335131969667,
+          1.3495985022459571,
+          -0.8712680863805775,
+          3.7338639029173466,
+          -0.1632548162430112,
+          4.151543943206682,
+          0.8974202937847586,
+          0.11871763427135118,
+          -3.2562464454281868,
+          -0.31479246442026154,
+          0.6330869640916452,
+          -0.47301837046449524,
+          2.879511660254088,
+          2.8188050933874926,
+          2.4823129901694356,
+          2.658635564367194,
+          -4.093786283717344,
+          4.286681697019586,
+          -2.098183905314303,
+          -2.1527742786130823,
+          0.27078198542885357,
+          0.9663451345740723,
+          2.5298183083171732,
+          -3.498567567540487,
+          -3.176894022200425,
+          0.12046489457375298,
+          -1.5150498051267651,
+          -0.6868146157965294,
+          -1.2605769901609891,
+          -2.0836436284467097,
+          -3.0871906108142393,
+          -1.6625367391953807,
+          -3.9896387417012322,
+          1.7601684096870907,
+          0.501612316543171,
+          2.153722631264155,
+          -2.8501972605497565,
+          2.413857979335445,
+          -3.0147545328162497,
+          0.3782147543670611,
+          -0.5796438036882838,
+          -0.7160548458324003,
+          -0.1521698013221533,
+          -3.1269010009519587,
+          -3.8090663802964326,
+          -0.7862243940784173,
+          -1.892546726445016,
+          -2.141754088954957,
+          1.034977920169661,
+          0.3241019856091656,
+          -3.8690302816383273,
+          -2.8064943699445255,
+          -1.63230308165444,
+          0.8778940929115429,
+          2.750173308830777,
+          -4.190727726615172,
+          3.7999075065636623,
+          2.0368125134890898,
+          -1.769113541783562,
+          0.8798736162472514,
+          3.7446200802120515,
+          0.5040624684078088,
+          -1.4748022464910724,
+          3.5704234006038424,
+          0.3299483319800647,
+          0.8216448581946505,
+          2.45694807487377,
+          -4.118048936842813,
+          -2.226977844301231,
+          -0.11982765592003819,
+          0.7302905710734144,
+          -0.7418236963768865,
+          -1.4081813135031913,
+          0.857981563151224,
+          3.4285321129200206,
+          -3.47904440548908,
+          -1.1461924659550156,
+          1.5179706758862856,
+          -0.4864296848081149,
+          1.8529312345106383,
+          0.3889583905571179,
+          -3.124749525221231,
+          2.621363742394224,
+          -3.4186912790488937,
+          -1.4567365223221107,
+          -2.0501413689040957,
+          3.114750545977043,
+          1.8054286301441973,
+          3.175852059117557,
+          -0.798967349726504,
+          2.2804193417026024,
+          3.6214365954973067,
+          3.238163780499754,
+          -4.033710523519329,
+          1.4880450388538726,
+          3.7957024875207237,
+          -2.8788075279465946,
+          3.387354675250248,
+          3.6733467838073146,
+          -1.4711466495836736,
+          1.9753416808421411,
+          -0.9123915691579998,
+          0.7717109550144015,
+          -1.3303993154524973,
+          -4.039812253735011,
+          -0.16192578509557087,
+          -3.70748679754254,
+          0.9858564444661813,
+          0.9298509434023838,
+          -1.3120296823390878,
+          3.7663486823420262,
+          -3.1615886175291474,
+          2.8281618337376973,
+          -2.6970871214426877,
+          0.720304297788589,
+          1.949592270148802,
+          -2.7979753582193894,
+          3.135103778459878,
+          0.6139348824929396,
+          4.282392242241712,
+          1.7203139551750004,
+          2.1770851245181024,
+          3.992349392503061,
+          1.594349404602517,
+          0.5962697981369978,
+          3.3467968872381686,
+          2.9478885615921078,
+          -3.3080006009743532,
+          3.310551771965402,
+          -2.8234880823716204,
+          3.016743801851465,
+          -4.100929711137224,
+          -1.2192041506517022,
+          -1.423835187762144,
+          -0.038306185257138026,
+          1.256786127898704,
+          1.721448256517765,
+          0.9831783718417242,
+          3.419636765123558,
+          -0.7467870869918345,
+          1.0618641236005706,
+          -1.5004233488398038,
+          -2.385685898914357,
+          -1.0800815643634145,
+          2.316729518490905,
+          -1.4422297163684643,
+          4.290599591438498,
+          3.380711520134179,
+          0.6379879487177567,
+          -3.821047982256279,
+          3.0414742259019834,
+          -3.2218738957960475,
+          1.5992572309270061,
+          2.0885676821282573,
+          1.0539801124709474,
+          0.21747265005131755,
+          0.40102972654703617,
+          -3.9905857812023218,
+          4.153835639053891,
+          -2.4549558757704215,
+          1.0711863340869625,
+          -0.13194888552637707,
+          -0.35072321224479985,
+          0.1644761031792088,
+          -1.8846519994216835,
+          -0.9241148386472622,
+          2.6447449966770087,
+          2.7346901247574236,
+          -2.6045974846902977,
+          0.45464463042523207,
+          2.418941799484398,
+          -2.951231696974925,
+          1.4371726338907127,
+          -1.3032633848301574,
+          -0.5584212152968537,
+          3.460690631994484,
+          3.1820542302373944,
+          -4.039976761680008,
+          2.19762535298117,
+          -2.5514150965547415,
+          2.672609772381975,
+          0.025492301945316598,
+          0.19543649979026245,
+          2.899421761248089,
+          2.076105431671147,
+          0.015944301861069654,
+          -2.30375769271253,
+          -2.8978159436703494,
+          -4.254385991445501,
+          -3.866445830700811,
+          0.933150184813039,
+          -4.068659090301838,
+          4.338570533140598,
+          -1.2388858392195035,
+          4.331525968715492,
+          4.254909348391512,
+          2.8596186529276295,
+          -0.6170199736514386,
+          -1.0406947149893537,
+          1.5280603909104027,
+          4.164283728411143,
+          2.0078465483903036,
+          -2.5682040983619254,
+          2.066107863344315,
+          -0.6150571202099764,
+          2.805094322236801,
+          0.3877369318857511,
+          1.5343805842888223,
+          -2.6067016755581545,
+          0.5454663845476864,
+          -0.744799179958314,
+          -3.438553605279921,
+          4.061362880607363,
+          -3.2410674242074125,
+          -1.5239675885331967,
+          0.6665976578256867,
+          -1.5695137641579966,
+          2.550345576583881,
+          -2.4033393793183166,
+          0.4582435490490715,
+          3.3867102561010904,
+          0.8467616961550917,
+          -2.444657318718346,
+          1.292572735865976,
+          -1.4198316083232108,
+          0.45822453931902984,
+          1.4745783018748755,
+          2.124345694698727,
+          -3.8825799579788964,
+          2.395579997005896,
+          -1.636572194358091,
+          1.5501428566238928,
+          -3.913584390408834,
+          1.7388881415761146,
+          2.882831309761804,
+          -3.654258864810181,
+          2.052912454755739,
+          -3.780543571629146,
+          0.22991169285057023,
+          -0.6069569603454363,
+          -2.651896726322237,
+          -1.0133197818411062,
+          -2.6897128152771517,
+          1.1057842300392622,
+          -2.9554374192691406,
+          0.23274265555761353,
+          -3.181650912212775,
+          0.06414918724518515,
+          3.919248530885045,
+          -1.3796134854847502,
+          2.19837467970022,
+          2.634844929175002,
+          1.9076250271852588,
+          2.849194616022806,
+          2.9950941484388176,
+          -2.6882195374144873,
+          -1.8208018181181531,
+          4.071009022667725,
+          -1.4382328661267465,
+          0.7475194324591854,
+          0.03891503137641461,
+          3.620661527170161,
+          3.8608212664671404,
+          3.3542339601216398,
+          2.2532319994964958,
+          0.06798060529017302,
+          4.111941941173215,
+          -2.575716681243887,
+          2.696125428397525,
+          0.8453367391291611,
+          0.8413236351271918,
+          0.46057516282432776,
+          -3.509011204925572,
+          3.877287687038719,
+          -0.6672220544953817,
+          -0.8904310431429336,
+          -0.7541115351316474,
+          -0.6783110868061226,
+          -2.8220662676083235,
+          1.1078648569788356,
+          -0.035799079693065394,
+          -3.376937304326402,
+          -0.05848189012988758,
+          -3.1709623177764756,
+          2.2015385128324594,
+          1.7053276540485314,
+          0.5870208824273435,
+          2.2217465192558947,
+          3.7281020631400823,
+          3.5674134755454396,
+          -1.7057507477826026,
+          -0.9420720901157451,
+          1.7064199229681316,
+          3.4873779608735322,
+          1.991285575568761,
+          2.639506913678768,
+          2.44643671741124,
+          2.578760170616989,
+          -0.4924906393082362,
+          -1.004170600057002,
+          0.047805753440279375,
+          2.9611193121317028,
+          -1.5395184986401134,
+          0.12824188130024883,
+          4.2214553468308305,
+          -4.109456149920523,
+          1.3128925770164788,
+          2.983485255828592,
+          2.8412845294078943,
+          1.5707230415970939,
+          0.8844891221056681,
+          -3.3829714921832914,
+          1.871193214437561,
+          2.9850522208098837,
+          -1.0577573286300823,
+          -0.7179590979879329,
+          1.1181693466161455,
+          2.1384281578622977,
+          1.7877881521468435,
+          -0.09438323662943215
          ]
         },
         {
@@ -5863,2677 +5833,2677 @@
          "scene": "scene",
          "showlegend": true,
          "text": [
-          "example_1",
-          "example_4",
-          "example_8",
-          "example_11",
-          "example_13",
-          "example_14",
-          "example_16",
-          "example_17",
-          "example_19",
-          "example_20",
-          "example_21",
-          "example_22",
-          "example_26",
-          "example_34",
-          "example_35",
-          "example_36",
-          "example_37",
-          "example_40",
-          "example_46",
-          "example_50",
-          "example_53",
-          "example_61",
-          "example_64",
-          "example_75",
-          "example_87",
-          "example_89",
-          "example_91",
-          "example_93",
-          "example_95",
-          "example_98",
-          "example_103",
-          "example_112",
-          "example_114",
-          "example_116",
-          "example_119",
-          "example_121",
-          "example_122",
-          "example_127",
-          "example_130",
-          "example_134",
-          "example_143",
-          "example_146",
-          "example_149",
-          "example_150",
-          "example_151",
-          "example_152",
-          "example_153",
-          "example_154",
-          "example_157",
-          "example_159",
-          "example_160",
-          "example_161",
-          "example_166",
-          "example_176",
-          "example_180",
-          "example_186",
-          "example_187",
-          "example_189",
-          "example_190",
-          "example_191",
-          "example_197",
-          "example_200",
-          "example_201",
-          "example_202",
-          "example_205",
-          "example_206",
-          "example_207",
-          "example_216",
-          "example_217",
-          "example_219",
-          "example_225",
-          "example_229",
-          "example_230",
-          "example_241",
-          "example_245",
-          "example_246",
-          "example_252",
-          "example_253",
-          "example_257",
-          "example_262",
-          "example_263",
-          "example_264",
-          "example_268",
-          "example_269",
-          "example_276",
-          "example_278",
-          "example_279",
-          "example_283",
-          "example_284",
-          "example_288",
-          "example_293",
-          "example_295",
-          "example_301",
-          "example_304",
-          "example_313",
-          "example_315",
-          "example_317",
-          "example_320",
-          "example_330",
-          "example_335",
-          "example_337",
-          "example_340",
-          "example_343",
-          "example_345",
-          "example_356",
-          "example_369",
-          "example_378",
-          "example_379",
-          "example_384",
-          "example_385",
-          "example_387",
-          "example_391",
-          "example_392",
-          "example_395",
-          "example_396",
-          "example_397",
-          "example_399",
-          "example_400",
-          "example_401",
-          "example_402",
-          "example_403",
-          "example_406",
-          "example_407",
-          "example_412",
-          "example_417",
-          "example_418",
-          "example_431",
-          "example_437",
-          "example_441",
-          "example_443",
-          "example_444",
-          "example_452",
-          "example_454",
-          "example_455",
-          "example_456",
-          "example_459",
-          "example_463",
-          "example_466",
-          "example_469",
-          "example_470",
-          "example_472",
-          "example_473",
-          "example_474",
-          "example_476",
-          "example_484",
-          "example_487",
-          "example_488",
-          "example_489",
-          "example_492",
-          "example_496",
-          "example_498",
-          "example_502",
-          "example_508",
-          "example_509",
-          "example_510",
-          "example_511",
-          "example_512",
-          "example_515",
-          "example_517",
-          "example_520",
-          "example_521",
-          "example_524",
-          "example_537",
-          "example_540",
-          "example_546",
-          "example_550",
-          "example_556",
-          "example_559",
-          "example_562",
-          "example_563",
-          "example_564",
-          "example_565",
-          "example_569",
-          "example_574",
-          "example_577",
-          "example_580",
-          "example_586",
-          "example_592",
-          "example_595",
-          "example_600",
-          "example_604",
-          "example_606",
-          "example_608",
-          "example_612",
-          "example_616",
-          "example_623",
-          "example_625",
-          "example_627",
-          "example_632",
-          "example_633",
-          "example_635",
-          "example_639",
-          "example_640",
-          "example_641",
-          "example_642",
-          "example_645",
-          "example_646",
-          "example_647",
-          "example_648",
-          "example_653",
-          "example_655",
-          "example_656",
-          "example_658",
-          "example_659",
-          "example_662",
-          "example_663",
-          "example_675",
-          "example_681",
-          "example_683",
-          "example_684",
-          "example_685",
-          "example_686",
-          "example_687",
-          "example_689",
-          "example_690",
-          "example_696",
-          "example_698",
-          "example_699",
-          "example_702",
-          "example_703",
-          "example_709",
-          "example_717",
-          "example_719",
-          "example_725",
-          "example_726",
-          "example_728",
-          "example_729",
-          "example_734",
-          "example_738",
-          "example_740",
-          "example_742",
-          "example_747",
-          "example_748",
-          "example_749",
-          "example_751",
-          "example_753",
-          "example_758",
-          "example_760",
-          "example_761",
-          "example_763",
-          "example_766",
-          "example_768",
-          "example_769",
-          "example_773",
-          "example_775",
-          "example_776",
-          "example_779",
-          "example_784",
-          "example_789",
-          "example_790",
-          "example_791",
-          "example_794",
-          "example_795",
-          "example_797",
-          "example_800",
-          "example_801",
-          "example_804",
-          "example_805",
-          "example_815",
-          "example_821",
-          "example_822",
-          "example_825",
-          "example_827",
-          "example_830",
-          "example_831",
-          "example_833",
-          "example_835",
-          "example_837",
-          "example_840",
-          "example_848",
-          "example_850",
-          "example_851",
-          "example_853",
-          "example_854",
-          "example_856",
-          "example_860",
-          "example_863",
-          "example_866",
-          "example_870",
-          "example_871",
-          "example_872",
-          "example_876",
-          "example_877",
-          "example_878",
-          "example_880",
-          "example_883",
-          "example_884",
-          "example_890",
-          "example_891",
-          "example_895",
-          "example_896",
-          "example_897",
-          "example_902",
-          "example_911",
-          "example_913",
-          "example_919",
-          "example_920",
-          "example_927",
-          "example_928",
-          "example_929",
-          "example_935",
-          "example_947",
-          "example_951",
-          "example_954",
-          "example_955",
-          "example_956",
-          "example_957",
-          "example_959",
-          "example_960",
-          "example_961",
-          "example_969",
-          "example_971",
-          "example_972",
-          "example_975",
-          "example_977",
-          "example_980",
-          "example_981",
-          "example_991",
-          "example_992",
-          "example_995",
-          "example_996",
-          "example_1002",
-          "example_1003",
-          "example_1008",
-          "example_1011",
-          "example_1012",
-          "example_1014",
-          "example_1015",
-          "example_1016",
-          "example_1017",
-          "example_1019",
-          "example_1020",
-          "example_1021",
-          "example_1025",
-          "example_1028",
-          "example_1038",
-          "example_1039",
-          "example_1042",
-          "example_1044",
-          "example_1045",
-          "example_1048",
-          "example_1051",
-          "example_1056",
-          "example_1059",
-          "example_1060",
-          "example_1062",
-          "example_1064",
-          "example_1066",
-          "example_1069",
-          "example_1070",
-          "example_1071",
-          "example_1072",
-          "example_1076",
-          "example_1077",
-          "example_1081",
-          "example_1082",
-          "example_1086",
-          "example_1092",
-          "example_1095",
-          "example_1098",
-          "example_1099",
-          "example_1104",
-          "example_1109",
-          "example_1115",
-          "example_1119",
-          "example_1122",
-          "example_1123",
-          "example_1126",
-          "example_1127",
-          "example_1129",
-          "example_1130",
-          "example_1135",
-          "example_1136",
-          "example_1139",
-          "example_1141",
-          "example_1143",
-          "example_1147",
-          "example_1148",
-          "example_1150",
-          "example_1152",
-          "example_1153",
-          "example_1154",
-          "example_1158",
-          "example_1162",
-          "example_1166",
-          "example_1167",
-          "example_1171",
-          "example_1174",
-          "example_1180",
-          "example_1183",
-          "example_1184",
-          "example_1186",
-          "example_1191",
-          "example_1194",
-          "example_1195",
-          "example_1199",
-          "example_1203",
-          "example_1207",
-          "example_1212",
-          "example_1213",
-          "example_1215",
-          "example_1218",
-          "example_1219",
-          "example_1224",
-          "example_1227",
-          "example_1238",
-          "example_1241",
-          "example_1243",
-          "example_1246",
-          "example_1248",
-          "example_1250",
-          "example_1254",
-          "example_1256",
-          "example_1257",
-          "example_1260",
-          "example_1264",
-          "example_1266",
-          "example_1267",
-          "example_1275",
-          "example_1276",
-          "example_1277",
-          "example_1279",
-          "example_1282",
-          "example_1291",
-          "example_1294",
-          "example_1295",
-          "example_1296",
-          "example_1297",
-          "example_1300",
-          "example_1306",
-          "example_1308",
-          "example_1311",
-          "example_1312",
-          "example_1321",
-          "example_1325",
-          "example_1327",
-          "example_1332",
-          "example_1337",
-          "example_1346",
-          "example_1348",
-          "example_1349",
-          "example_1350",
-          "example_1354",
-          "example_1363",
-          "example_1365",
-          "example_1367",
-          "example_1369",
-          "example_1371",
-          "example_1372",
-          "example_1373",
-          "example_1377",
-          "example_1378",
-          "example_1382",
-          "example_1388",
-          "example_1390",
-          "example_1396",
-          "example_1397",
-          "example_1398",
-          "example_1399",
-          "example_1400",
-          "example_1408",
-          "example_1409",
-          "example_1410",
-          "example_1411",
-          "example_1413",
-          "example_1415",
-          "example_1416",
-          "example_1426",
-          "example_1430",
-          "example_1434",
-          "example_1437",
-          "example_1438",
-          "example_1439",
-          "example_1442",
-          "example_1443",
-          "example_1444",
-          "example_1445",
-          "example_1451",
-          "example_1459",
-          "example_1462",
-          "example_1465",
-          "example_1475",
-          "example_1476",
-          "example_1478",
-          "example_1479",
-          "example_1482",
-          "example_1484",
-          "example_1485",
-          "example_1487",
-          "example_1494",
-          "example_1495",
-          "example_1496",
-          "example_1499",
-          "example_1500",
-          "example_1504",
-          "example_1508",
-          "example_1513",
-          "example_1515",
-          "example_1517",
-          "example_1520",
-          "example_1522",
-          "example_1527",
-          "example_1528",
-          "example_1529",
-          "example_1533",
-          "example_1534",
-          "example_1535",
-          "example_1539",
-          "example_1543",
-          "example_1550",
-          "example_1555",
-          "example_1559",
-          "example_1567",
-          "example_1569",
-          "example_1570",
-          "example_1573",
-          "example_1577",
-          "example_1579",
-          "example_1583",
-          "example_1584",
-          "example_1585",
-          "example_1589",
-          "example_1590",
-          "example_1594",
-          "example_1595",
-          "example_1597",
-          "example_1598",
-          "example_1600",
-          "example_1603",
-          "example_1623",
-          "example_1624",
-          "example_1629",
-          "example_1631",
-          "example_1633",
-          "example_1634",
-          "example_1636",
-          "example_1638",
-          "example_1643",
-          "example_1648",
-          "example_1653",
-          "example_1654",
-          "example_1655",
-          "example_1659",
-          "example_1660",
-          "example_1661",
-          "example_1663",
-          "example_1670",
-          "example_1678",
-          "example_1679",
-          "example_1680",
-          "example_1681",
-          "example_1685",
-          "example_1687",
-          "example_1688",
-          "example_1690",
-          "example_1693",
-          "example_1695",
-          "example_1698",
-          "example_1700",
-          "example_1702",
-          "example_1705",
-          "example_1706",
-          "example_1707",
-          "example_1710",
-          "example_1714",
-          "example_1715",
-          "example_1716",
-          "example_1720",
-          "example_1721",
-          "example_1722",
-          "example_1723",
-          "example_1724",
-          "example_1725",
-          "example_1731",
-          "example_1733",
-          "example_1737",
-          "example_1740",
-          "example_1742",
-          "example_1744",
-          "example_1746",
-          "example_1748",
-          "example_1750",
-          "example_1751",
-          "example_1756",
-          "example_1757",
-          "example_1762",
-          "example_1766",
-          "example_1768",
-          "example_1771",
-          "example_1772",
-          "example_1774",
-          "example_1776",
-          "example_1777",
-          "example_1785",
-          "example_1788",
-          "example_1790",
-          "example_1792",
-          "example_1793",
-          "example_1794",
-          "example_1795",
-          "example_1796",
-          "example_1803",
-          "example_1804",
-          "example_1805",
-          "example_1806",
-          "example_1809",
-          "example_1820",
-          "example_1821",
-          "example_1828",
-          "example_1833",
-          "example_1834",
-          "example_1836",
-          "example_1837",
-          "example_1839",
-          "example_1841",
-          "example_1842",
-          "example_1845",
-          "example_1846",
-          "example_1849",
-          "example_1850",
-          "example_1861",
-          "example_1862",
-          "example_1868",
-          "example_1873",
-          "example_1875",
-          "example_1876",
-          "example_1877",
-          "example_1878",
-          "example_1879",
-          "example_1880",
-          "example_1883",
-          "example_1886",
-          "example_1889",
-          "example_1892",
-          "example_1893",
-          "example_1895",
-          "example_1898",
-          "example_1899",
-          "example_1902",
-          "example_1905",
-          "example_1906",
-          "example_1908",
-          "example_1913",
-          "example_1915",
-          "example_1916",
-          "example_1923",
-          "example_1926",
-          "example_1940",
-          "example_1945",
-          "example_1946",
-          "example_1947",
-          "example_1949",
-          "example_1950",
-          "example_1951",
-          "example_1953",
-          "example_1962",
-          "example_1965",
-          "example_1966",
-          "example_1968",
-          "example_1969",
-          "example_1980",
-          "example_1981",
-          "example_1982",
-          "example_1994",
-          "example_1995",
-          "example_1997"
+          "1332_l_2_m-0_0.1-1_0.4-2_0.08-3_1.02",
+          "1333_l_2_m-0_1.42-1_0.49-2_0.11-3_0.17",
+          "1334_l_2_m-0_0.41-1_0.13-2_0.63-3_0.36",
+          "1335_l_2_m-0_1.18-1_0.06-2_0.66-3_0.16",
+          "1336_l_2_m-0_0.42-1_0.02-2_0.37-3_0.04",
+          "1337_l_2_m-0_0.92-1_0.44-2_0.07-3_0.07",
+          "1338_l_2_c_0_1_3-0_0.24-1_0.21-2_0.22-3_0.16",
+          "1339_l_2_c_0_1_3-0_0.21-1_0.24-2_1.39-3_0.32",
+          "1340_l_2_c_0_1_3-0_0.02-1_0.11-2_0.95-3_0.42",
+          "1341_l_2_c_0_1_3-0_0.14-1_0.17-2_0.95-3_0.05",
+          "1342_l_2_c_0_1_3-0_0.87-1_0.24-2_0.49-3_0.38",
+          "1343_l_2_c_0_1_3-0_0.49-1_0.63-2_0.09-3_0.15",
+          "1344_l_2_c_0_1_3-0_0.25-1_0.85-2_0.58-3_0.21",
+          "1345_l_2_c_0_1_3-0_0.21-1_0.33-2_1.06-3_0.13",
+          "1346_l_2_c_0_1_3-0_0.03-1_0.24-2_0.27-3_0.41",
+          "1347_l_2_c_0_1_3-0_0.98-1_1.27-2_0.12-3_0.24",
+          "1348_l_2_c_0_1_3-0_1.0-1_0.42-2_0.53-3_0.01",
+          "1349_l_2_c_0_1_3-0_0.04-1_0.54-2_0.13-3_0.87",
+          "1350_l_2_c_0_1_3-0_0.62-1_0.27-2_0.26-3_0.12",
+          "1351_l_2_c_0_1_3-0_0.76-1_0.19-2_1.3-3_0.85",
+          "1352_l_2_c_0_1_3-0_0.83-1_0.72-2_0.03-3_0.28",
+          "1353_l_2_c_0_1_3-0_0.06-1_0.02-2_0.58-3_0.15",
+          "1354_l_2_c_0_1_3-0_0.2-1_0.75-2_0.25-3_0.44",
+          "1355_l_2_c_0_1_3-0_0.0-1_0.01-2_0.07-3_0.62",
+          "1356_l_2_c_0_1_3-0_0.51-1_0.13-2_0.03-3_0.09",
+          "1357_l_2_c_0_1_3-0_0.72-1_0.08-2_1.79-3_0.38",
+          "1358_l_2_c_0_1_3-0_0.87-1_0.38-2_0.45-3_0.25",
+          "1359_l_2_c_0_1_3-0_0.52-1_0.96-2_0.35-3_0.08",
+          "1360_l_2_c_0_1_3-0_0.73-1_0.19-2_1.06-3_1.11",
+          "1361_l_2_c_0_1_3-0_0.08-1_0.12-2_0.29-3_0.16",
+          "1362_l_2_c_0_1_3-0_0.13-1_0.07-2_0.47-3_0.28",
+          "1363_l_2_c_0_1_3-0_0.34-1_0.38-2_0.97-3_0.13",
+          "1364_l_2_c_0_1_3-0_0.36-1_0.03-2_0.55-3_0.14",
+          "1365_l_2_c_0_1_3-0_0.96-1_0.15-2_0.39-3_0.17",
+          "1366_l_2_c_0_1_3-0_0.04-1_0.05-2_0.35-3_0.68",
+          "1367_l_2_c_0_1_3-0_0.9-1_0.28-2_0.42-3_0.21",
+          "1368_l_2_c_0_1_3-0_0.14-1_0.14-2_0.23-3_0.14",
+          "1369_l_2_c_0_1_3-0_0.19-1_0.39-2_1.23-3_0.28",
+          "1370_l_2_c_0_1_3-0_0.48-1_0.16-2_0.02-3_0.35",
+          "1371_l_2_c_0_1_3-0_0.05-1_0.35-2_0.66-3_0.11",
+          "1372_l_2_c_0_1_3-0_0.65-1_0.13-2_0.57-3_0.6",
+          "1373_l_2_c_0_1_3-0_0.55-1_0.26-2_0.35-3_0.83",
+          "1374_l_2_c_0_1_3-0_0.15-1_0.87-2_0.89-3_0.16",
+          "1375_l_2_c_0_1_3-0_0.19-1_0.53-2_0.43-3_0.14",
+          "1376_l_2_c_0_1_3-0_0.18-1_0.33-2_0.74-3_0.13",
+          "1377_l_2_c_0_1_3-0_0.52-1_0.07-2_0.62-3_0.42",
+          "1378_l_2_c_0_1_3-0_0.02-1_0.08-2_1.53-3_0.11",
+          "1379_l_2_c_0_1_3-0_0.35-1_0.08-2_0.37-3_0.76",
+          "1380_l_2_c_0_1_2-0_0.32-1_0.35-2_0.05-3_0.08",
+          "1381_l_2_c_0_1_3-0_0.14-1_0.78-2_0.65-3_0.11",
+          "1382_l_2_c_0_1_2-0_0.1-1_0.14-2_0.34-3_1.03",
+          "1383_l_2_c_0_1_3-0_0.82-1_0.05-2_0.24-3_0.76",
+          "1384_l_2_c_0_1_2-0_0.07-1_0.35-2_0.01-3_1.09",
+          "1385_l_2_c_0_1_3-0_0.37-1_0.17-2_1.62-3_0.09",
+          "1386_l_2_c_0_1_2-0_0.54-1_0.05-2_0.54-3_0.3",
+          "1387_l_2_c_0_1_3-0_0.13-1_1.2-2_0.96-3_0.04",
+          "1388_l_2_c_0_1_2-0_0.44-1_0.34-2_0.04-3_0.63",
+          "1389_l_2_c_0_1_3-0_0.64-1_0.04-2_0.78-3_0.06",
+          "1390_l_2_c_0_1_2-0_0.24-1_0.7-2_0.58-3_0.95",
+          "1391_l_2_c_0_1_3-0_1.0-1_0.24-2_0.98-3_0.45",
+          "1392_l_2_c_0_1_2-0_0.31-1_0.03-2_0.05-3_0.08",
+          "1393_l_2_c_0_1_3-0_0.53-1_0.44-2_0.94-3_0.65",
+          "1394_l_2_c_0_1_2-0_0.14-1_0.16-2_0.75-3_0.99",
+          "1395_l_2_c_0_1_3-0_0.23-1_0.67-2_0.27-3_0.26",
+          "1396_l_2_c_0_1_2-0_0.32-1_0.77-2_0.22-3_0.72",
+          "1397_l_2_c_0_1_3-0_0.12-1_0.13-2_0.75-3_0.11",
+          "1398_l_2_c_0_1_2-0_0.34-1_0.15-2_0.36-3_0.93",
+          "1399_l_2_c_0_1_3-0_0.69-1_0.29-2_1.08-3_0.5",
+          "1400_l_2_c_0_1_2-0_0.17-1_0.2-2_0.04-3_0.4",
+          "1401_l_2_c_0_1_3-0_0.72-1_0.25-2_0.39-3_0.1",
+          "1402_l_2_c_0_1_2-0_0.25-1_0.01-2_0.03-3_0.66",
+          "1403_l_2_c_0_1_3-0_0.07-1_0.63-2_0.93-3_0.48",
+          "1404_l_2_c_0_1_2-0_0.32-1_0.24-2_0.61-3_1.56",
+          "1405_l_2_c_0_1_3-0_0.19-1_0.13-2_0.51-3_0.55",
+          "1406_l_2_c_0_1_2-0_0.8-1_0.33-2_0.23-3_0.34",
+          "1407_l_2_c_0_1_3-0_0.1-1_0.15-2_0.56-3_0.77",
+          "1408_l_2_c_0_1_2-0_0.84-1_0.06-2_0.47-3_0.17",
+          "1409_l_2_c_0_1_3-0_0.01-1_0.03-2_0.47-3_0.57",
+          "1410_l_2_c_0_1_2-0_0.07-1_0.1-2_0.14-3_0.14",
+          "1411_l_2_c_0_1_3-0_0.5-1_0.19-2_1.55-3_0.55",
+          "1412_l_2_c_0_1_2-0_0.83-1_0.01-2_0.02-3_0.76",
+          "1413_l_2_c_0_1_3-0_0.24-1_0.57-2_0.53-3_0.05",
+          "1414_l_2_c_0_1_2-0_0.4-1_0.27-2_0.23-3_0.43",
+          "1415_l_2_c_0_1_3-0_0.64-1_0.66-2_0.7-3_0.67",
+          "1416_l_2_c_0_1_2-0_0.09-1_0.95-2_0.8-3_0.57",
+          "1417_l_2_c_0_1_3-0_0.12-1_0.27-2_0.02-3_0.69",
+          "1418_l_2_c_0_1_2-0_0.02-1_0.31-2_0.62-3_0.33",
+          "1419_l_2_c_0_1_3-0_0.19-1_0.14-2_0.02-3_0.26",
+          "1420_l_2_c_0_1_2-0_0.5-1_0.02-2_0.07-3_1.04",
+          "1421_l_2_c_0_1_3-0_0.09-1_0.05-2_0.12-3_0.44",
+          "1422_l_2_c_0_1_2-0_0.03-1_1.15-2_0.84-3_1.68",
+          "1423_l_2_c_0_1_3-0_0.3-1_0.14-2_0.57-3_0.45",
+          "1424_l_2_c_0_1_2-0_0.81-1_0.89-2_0.09-3_0.5",
+          "1425_l_2_c_0_1_3-0_0.23-1_0.05-2_0.82-3_0.49",
+          "1426_l_2_c_0_1_2-0_0.23-1_0.44-2_0.32-3_1.59",
+          "1427_l_2_c_0_1_3-0_0.18-1_0.18-2_0.8-3_0.65",
+          "1428_l_2_c_0_1_2-0_0.48-1_0.58-2_0.04-3_0.63",
+          "1429_l_2_c_0_1_3-0_0.34-1_0.27-2_0.51-3_0.38",
+          "1430_l_2_c_0_1_2-0_0.09-1_1.64-2_0.09-3_0.81",
+          "1431_l_2_c_0_1_3-0_0.22-1_0.18-2_1.22-3_0.29",
+          "1432_l_2_c_0_1_2-0_0.15-1_0.32-2_0.43-3_0.74",
+          "1433_l_2_c_0_1_3-0_0.68-1_0.56-2_0.4-3_0.14",
+          "1434_l_2_c_0_1_2-0_0.1-1_0.72-2_0.0-3_0.32",
+          "1435_l_2_c_0_1_3-0_0.46-1_0.2-2_1.3-3_0.45",
+          "1436_l_2_c_0_1_2-0_0.48-1_0.15-2_0.07-3_0.11",
+          "1437_l_2_c_0_1_3-0_0.54-1_0.09-2_1.14-3_0.51",
+          "1438_l_2_c_0_1_2-0_0.23-1_0.05-2_0.21-3_0.64",
+          "1439_l_2_c_0_1_3-0_1.13-1_0.47-2_1.55-3_0.67",
+          "1440_l_2_c_0_1_2-0_0.01-1_0.44-2_0.15-3_0.81",
+          "1441_l_2_c_0_1_3-0_0.67-1_0.28-2_0.52-3_0.17",
+          "1442_l_2_c_0_1_2-0_0.35-1_0.02-2_0.64-3_0.38",
+          "1443_l_2_c_0_1_3-0_0.21-1_0.36-2_0.4-3_0.0",
+          "1444_l_2_c_0_1_2-0_0.45-1_0.23-2_0.32-3_1.44",
+          "1445_l_2_c_0_1_3-0_0.69-1_1.13-2_0.28-3_0.64",
+          "1446_l_2_c_0_1_2-0_0.06-1_0.67-2_0.21-3_0.63",
+          "1447_l_2_c_0_1_3-0_0.5-1_0.9-2_0.38-3_0.43",
+          "1448_l_2_c_0_1_2-0_0.09-1_0.54-2_0.29-3_0.99",
+          "1449_l_2_c_0_1_3-0_0.25-1_0.46-2_1.75-3_0.99",
+          "1450_l_2_c_0_1_2-0_0.04-1_0.03-2_0.11-3_0.05",
+          "1451_l_2_c_0_1_3-0_0.26-1_0.1-2_0.61-3_0.95",
+          "1452_l_2_c_0_1_2-0_0.11-1_0.11-2_0.09-3_0.01",
+          "1453_l_2_c_0_1_3-0_1.16-1_0.36-2_1.21-3_0.67",
+          "1454_l_2_c_0_1_2-0_0.32-1_0.08-2_0.01-3_0.19",
+          "1455_l_2_c_0_1_3-0_0.45-1_0.11-2_0.85-3_0.41",
+          "1456_l_2_c_0_1_2-0_0.04-1_0.31-2_0.28-3_0.28",
+          "1457_l_2_c_0_1_3-0_0.05-1_0.27-2_0.17-3_0.19",
+          "1458_l_2_c_0_1_2-0_0.11-1_0.02-2_0.02-3_0.31",
+          "1459_l_2_c_0_1_3-0_0.15-1_0.5-2_0.61-3_0.62",
+          "1460_l_2_c_0_1_2-0_0.02-1_0.56-2_0.1-3_0.53",
+          "1461_l_2_c_0_1_3-0_0.42-1_0.43-2_1.3-3_0.32",
+          "1462_l_2_c_0_1_2-0_0.42-1_0.11-2_0.88-3_0.95",
+          "1463_l_2_c_0_1_3-0_0.11-1_0.59-2_0.11-3_0.84",
+          "1464_l_2_c_0_1_2-0_0.18-1_0.16-2_0.16-3_0.67",
+          "1465_l_2_c_0_1_3-0_0.35-1_0.95-2_0.06-3_0.27",
+          "1466_l_2_c_0_1_2-0_0.1-1_0.82-2_0.11-3_2.07",
+          "1467_l_2_c_0_1_3-0_0.48-1_0.43-2_0.41-3_0.68",
+          "1468_l_2_c_0_1_2-0_0.79-1_1.31-2_0.01-3_0.09",
+          "1469_l_2_c_0_1_3-0_0.07-1_0.15-2_0.4-3_0.79",
+          "1470_l_2_c_0_1_2-0_0.34-1_0.41-2_0.42-3_1.09",
+          "1471_l_2_c_0_1_3-0_0.01-1_0.16-2_0.31-3_0.55",
+          "1472_l_2_c_0_1_2-0_0.13-1_0.24-2_0.05-3_0.43",
+          "1473_l_2_c_0_1_3-0_0.11-1_0.14-2_0.97-3_0.33",
+          "1474_l_2_c_0_1_2-0_0.25-1_0.65-2_0.05-3_0.7",
+          "1475_l_2_c_0_1_3-0_0.2-1_0.5-2_1.36-3_0.61",
+          "1476_l_2_c_1_2_3-0_0.54-1_0.22-2_0.69-3_0.14",
+          "1477_l_2_c_0_1_2-0_0.0-1_0.54-2_0.34-3_0.17",
+          "1478_l_2_c_0_1_3-0_0.02-1_0.69-2_0.46-3_0.3",
+          "1479_l_2_c_1_2_3-0_0.56-1_0.47-2_0.12-3_0.17",
+          "1480_l_2_c_0_1_2-0_0.01-1_0.13-2_1.01-3_0.7",
+          "1481_l_2_c_0_1_3-0_1.94-1_0.32-2_1.25-3_1.17",
+          "1482_l_2_c_1_2_3-0_0.8-1_0.49-2_0.03-3_0.15",
+          "1483_l_2_c_0_1_2-0_0.06-1_0.13-2_0.59-3_0.21",
+          "1484_l_2_c_0_1_3-0_0.73-1_0.05-2_0.68-3_0.0",
+          "1485_l_2_c_1_2_3-0_0.93-1_0.11-2_0.22-3_0.25",
+          "1486_l_2_c_0_1_2-0_0.32-1_1.15-2_0.2-3_0.19",
+          "1487_l_2_c_0_1_3-0_0.05-1_0.46-2_0.55-3_0.18",
+          "1488_l_2_c_1_2_3-0_0.45-1_0.36-2_0.69-3_0.08",
+          "1489_l_2_c_0_1_2-0_0.73-1_0.25-2_0.19-3_0.85",
+          "1490_l_2_c_0_1_3-0_0.26-1_0.0-2_1.11-3_0.23",
+          "1491_l_2_c_1_2_3-0_0.85-1_0.04-2_0.41-3_0.4",
+          "1492_l_2_c_0_1_2-0_0.56-1_0.17-2_0.03-3_0.84",
+          "1493_l_2_c_0_1_3-0_0.25-1_0.09-2_1.13-3_0.04",
+          "1494_l_2_c_1_2_3-0_1.9-1_0.86-2_0.18-3_0.06",
+          "1495_l_2_c_0_1_2-0_0.41-1_0.15-2_0.4-3_1.38",
+          "1496_l_2_c_0_1_3-0_0.14-1_0.48-2_0.11-3_1.05",
+          "1497_l_2_c_1_2_3-0_0.24-1_0.41-2_0.08-3_0.28",
+          "1498_l_2_c_0_1_2-0_0.13-1_0.45-2_0.26-3_0.61",
+          "1499_l_2_c_0_1_3-0_0.97-1_0.47-2_1.06-3_1.09",
+          "1500_l_2_c_1_2_3-0_0.81-1_0.73-2_0.19-3_0.06",
+          "1501_l_2_c_0_1_2-0_0.48-1_0.01-2_0.17-3_0.89",
+          "1502_l_2_c_0_1_3-0_0.04-1_0.21-2_0.53-3_0.8",
+          "1503_l_2_c_1_2_3-0_1.16-1_0.4-2_0.41-3_0.36",
+          "1504_l_2_c_0_1_2-0_0.56-1_0.17-2_0.17-3_0.17",
+          "1505_l_2_c_0_1_3-0_0.0-1_0.14-2_0.15-3_0.12",
+          "1506_l_2_c_1_2_3-0_0.05-1_0.7-2_0.22-3_0.37",
+          "1507_l_2_c_0_1_2-0_0.13-1_1.81-2_0.1-3_0.65",
+          "1508_l_2_c_0_1_3-0_0.28-1_0.42-2_0.42-3_0.1",
+          "1509_l_2_c_1_2_3-0_0.14-1_0.42-2_0.29-3_0.33",
+          "1510_l_2_c_0_1_2-0_0.56-1_0.72-2_0.21-3_0.45",
+          "1511_l_2_c_0_1_3-0_0.52-1_0.02-2_0.45-3_0.45",
+          "1512_l_2_c_1_2_3-0_0.07-1_0.06-2_0.08-3_0.43",
+          "1513_l_2_c_0_1_2-0_0.88-1_0.55-2_0.1-3_0.3",
+          "1514_l_2_c_0_1_3-0_0.25-1_0.01-2_0.35-3_0.15",
+          "1515_l_2_c_1_2_3-0_0.37-1_0.07-2_0.54-3_0.12",
+          "1516_l_2_c_0_1_2-0_0.44-1_0.6-2_0.01-3_0.93",
+          "1517_l_2_c_0_1_3-0_0.03-1_0.28-2_1.39-3_0.11",
+          "1518_l_2_c_1_2_3-0_0.73-1_0.6-2_0.02-3_0.05",
+          "1519_l_2_c_0_1_2-0_0.19-1_0.11-2_0.33-3_0.53",
+          "1520_l_2_c_1_3-0_0.89-1_0.32-2_1.39-3_0.89",
+          "1521_l_2_r-0_0.36-1_1.47-2_1.08-3_1.21",
+          "1522_l_2_r-0_0.67-1_0.31-2_0.11-3_1.28",
+          "1523_l_2_r-0_0.57-1_0.02-2_1.04-3_1.39",
+          "1524_l_2_r-0_0.9-1_0.09-2_0.42-3_0.49",
+          "1525_l_2_r-0_0.96-1_2.23-2_1.22-3_0.86",
+          "1526_l_2_r-0_1.2-1_0.59-2_1.07-3_1.37",
+          "1527_l_2_r-0_1.14-1_0.44-2_1.03-3_0.47",
+          "1528_l_2_r-0_1.2-1_0.66-2_0.23-3_0.55",
+          "1529_l_2_r-0_1.12-1_0.04-2_0.7-3_1.12",
+          "1530_l_2_r-0_0.01-1_1.74-2_0.18-3_0.74",
+          "1531_l_2_r-0_0.48-1_0.13-2_0.32-3_0.34",
+          "1532_l_2_r-0_1.13-1_0.59-2_0.94-3_1.28",
+          "1533_l_2_r-0_0.74-1_1.34-2_0.03-3_0.12",
+          "1534_l_2_r-0_0.64-1_0.56-2_0.48-3_0.59",
+          "1535_l_2_r-0_0.01-1_0.97-2_0.26-3_0.2",
+          "1536_l_2_r-0_1.3-1_0.12-2_1.07-3_0.97",
+          "1537_l_2_r-0_0.32-1_0.96-2_1.59-3_1.25",
+          "1538_l_2_r-0_0.05-1_0.73-2_1.23-3_0.38",
+          "1539_l_2_r-0_0.01-1_1.02-2_0.61-3_1.06",
+          "1540_l_2_r-0_0.17-1_1.3-2_0.49-3_0.73",
+          "1541_l_2_r-0_0.41-1_0.18-2_0.45-3_0.32",
+          "1542_l_2_r-0_0.55-1_0.58-2_0.35-3_0.43",
+          "1543_l_2_r-0_1.55-1_0.49-2_0.26-3_0.12",
+          "1544_l_2_r-0_0.78-1_1.37-2_1.02-3_0.49",
+          "1545_l_2_r-0_2.12-1_1.57-2_0.09-3_0.3",
+          "1546_l_2_r-0_0.7-1_1.02-2_0.38-3_0.27",
+          "1547_l_2_r-0_0.13-1_0.9-2_0.53-3_0.31",
+          "1548_l_2_r-0_0.8-1_0.03-2_0.03-3_0.04",
+          "1549_l_2_r-0_1.63-1_0.8-2_0.1-3_0.1",
+          "1550_l_2_r-0_0.03-1_0.71-2_1.08-3_1.36",
+          "1551_l_2_r-0_0.16-1_1.78-2_0.54-3_0.14",
+          "1552_l_2_r-0_0.14-1_1.11-2_1.13-3_1.04",
+          "1553_l_2_r-0_0.73-1_0.12-2_0.03-3_0.6",
+          "1554_l_2_r-0_0.8-1_0.03-2_0.88-3_0.02",
+          "1555_l_2_r-0_1.46-1_1.4-2_0.52-3_2.21",
+          "1556_l_2_r-0_1.35-1_0.78-2_1.08-3_0.29",
+          "1557_l_2_r-0_0.66-1_1.36-2_1.74-3_0.64",
+          "1558_l_2_r-0_0.53-1_0.62-2_0.22-3_0.49",
+          "1559_l_2_r-0_1.07-1_0.6-2_0.91-3_0.73",
+          "1560_l_2_r-0_0.76-1_0.36-2_0.41-3_0.08",
+          "1561_l_2_r-0_1.74-1_1.83-2_0.13-3_0.3",
+          "1562_l_2_r-0_1.14-1_0.8-2_0.67-3_1.74",
+          "1563_l_2_r-0_0.91-1_0.14-2_1.45-3_1.26",
+          "1564_l_2_r-0_0.28-1_1.62-2_1.07-3_1.07",
+          "1565_l_2_r-0_0.92-1_1.22-2_0.68-3_1.55",
+          "1566_l_2_r-0_0.31-1_0.48-2_0.73-3_0.3",
+          "1567_l_2_r-0_1.17-1_0.06-2_0.25-3_0.88",
+          "1568_l_2_r-0_0.54-1_1.07-2_0.55-3_1.05",
+          "1569_l_2_r-0_1.61-1_1.1-2_0.21-3_1.3",
+          "1570_l_2_r-0_1.09-1_0.16-2_0.49-3_1.45",
+          "1571_l_2_r-0_0.45-1_0.4-2_1.25-3_1.75",
+          "1572_l_2_r-0_0.22-1_0.18-2_1.01-3_0.15",
+          "1573_l_2_r-0_0.3-1_0.07-2_0.88-3_1.11",
+          "1574_l_2_r-0_1.22-1_0.71-2_0.88-3_1.67",
+          "1575_l_2_r-0_0.04-1_0.8-2_0.13-3_0.04",
+          "1576_l_2_r-0_0.41-1_0.69-2_1.38-3_0.18",
+          "1577_l_2_r-0_0.06-1_0.77-2_1.03-3_0.69",
+          "1578_l_2_r-0_0.19-1_1.44-2_0.38-3_0.68",
+          "1579_l_2_r-0_0.73-1_0.4-2_0.05-3_0.62",
+          "1580_l_2_r-0_1.43-1_0.8-2_0.5-3_0.87",
+          "1581_l_2_r-0_1.14-1_0.79-2_0.65-3_0.74",
+          "1582_l_2_r-0_0.76-1_1.08-2_0.37-3_0.07",
+          "1583_l_2_r-0_0.79-1_0.36-2_0.14-3_0.4",
+          "1584_l_2_r-0_1.11-1_1.05-2_0.77-3_0.85",
+          "1585_l_2_r-0_1.71-1_1.09-2_0.32-3_1.01",
+          "1586_l_2_r-0_0.7-1_0.23-2_0.02-3_1.13",
+          "1587_l_2_r-0_1.37-1_0.53-2_0.46-3_0.64",
+          "1588_l_2_r-0_0.19-1_0.5-2_1.16-3_0.26",
+          "1589_l_2_r-0_0.23-1_0.2-2_0.27-3_0.45",
+          "1590_l_2_r-0_1.1-1_1.65-2_0.92-3_0.84",
+          "1591_l_2_r-0_0.86-1_1.27-2_0.38-3_0.38",
+          "1592_l_2_r-0_0.65-1_0.74-2_1.12-3_0.06",
+          "1593_l_2_r-0_0.84-1_1.53-2_0.29-3_0.8",
+          "1594_l_2_r-0_0.36-1_0.12-2_0.53-3_1.18",
+          "1595_l_2_r-0_0.15-1_0.72-2_0.85-3_0.75",
+          "1596_l_2_r-0_0.38-1_0.22-2_1.04-3_0.47",
+          "1597_l_2_r-0_0.71-1_1.12-2_0.95-3_0.24",
+          "1598_l_2_r-0_1.24-1_0.55-2_1.39-3_0.4",
+          "1599_l_2_r-0_0.82-1_0.78-2_0.19-3_0.59",
+          "1600_l_2_r-0_0.6-1_0.91-2_0.81-3_0.44",
+          "1601_l_2_r-0_0.37-1_0.82-2_1.56-3_1.04",
+          "1602_l_2_r-0_0.45-1_0.84-2_0.96-3_0.8",
+          "1603_l_2_r-0_1.32-1_0.41-2_2.33-3_1.31",
+          "1604_l_2_r-0_0.26-1_0.21-2_0.91-3_0.88",
+          "1605_l_2_r-0_0.87-1_0.2-2_0.02-3_0.69",
+          "1606_l_2_r-0_0.2-1_1.06-2_0.22-3_1.23",
+          "1607_l_2_r-0_0.78-1_0.58-2_0.1-3_1.13",
+          "1608_l_2_r-0_0.04-1_0.8-2_0.66-3_0.73",
+          "1609_l_2_r-0_1.11-1_1.29-2_0.24-3_0.27",
+          "1610_l_2_r-0_0.39-1_0.69-2_0.98-3_1.5",
+          "1611_l_2_r-0_1.06-1_0.96-2_0.48-3_0.68",
+          "1612_l_2_r-0_0.82-1_1.31-2_0.36-3_0.17",
+          "1613_l_2_r-0_0.82-1_0.21-2_0.4-3_0.35",
+          "1614_l_2_r-0_0.79-1_1.23-2_0.5-3_0.63",
+          "1615_l_2_r-0_0.81-1_0.74-2_0.44-3_1.08",
+          "1616_l_2_r-0_0.59-1_0.75-2_0.78-3_0.73",
+          "1617_l_2_r-0_0.49-1_0.03-2_1.08-3_0.62",
+          "1618_l_2_r-0_0.42-1_0.01-2_0.84-3_0.65",
+          "1619_l_2_r-0_0.49-1_0.96-2_0.52-3_0.68",
+          "1620_l_2_r-0_0.81-1_1.03-2_0.69-3_0.02",
+          "1621_l_2_r-0_0.4-1_0.61-2_1.21-3_1.41",
+          "1622_l_2_r-0_0.86-1_0.72-2_1.2-3_0.28",
+          "1623_l_2_r-0_0.43-1_1.04-2_0.29-3_0.69",
+          "1624_l_2_r-0_0.56-1_0.55-2_0.44-3_0.88",
+          "1625_l_2_r-0_0.55-1_1.37-2_0.92-3_0.98",
+          "1626_l_2_r-0_0.59-1_0.14-2_0.74-3_0.95",
+          "1627_l_2_r-0_1.2-1_0.17-2_0.69-3_0.69",
+          "1628_l_2_r-0_0.29-1_0.18-2_0.75-3_0.51",
+          "1629_l_2_r-0_0.7-1_1.15-2_0.83-3_0.8",
+          "1630_l_2_r-0_0.65-1_0.71-2_0.1-3_0.14",
+          "1631_l_2_r-0_1.05-1_0.15-2_1.02-3_0.44",
+          "1632_l_2_r-0_0.47-1_0.74-2_0.61-3_1.15",
+          "1633_l_2_r-0_0.34-1_0.55-2_1.37-3_1.58",
+          "1634_l_2_r-0_0.03-1_0.67-2_0.49-3_0.09",
+          "1635_l_2_r-0_0.97-1_1.54-2_0.38-3_0.72",
+          "1636_l_2_r-0_0.45-1_0.51-2_0.59-3_0.91",
+          "1637_l_2_r-0_0.1-1_0.16-2_0.46-3_0.57",
+          "1638_l_2_r-0_0.33-1_1.29-2_1.35-3_0.7",
+          "1639_l_2_r-0_0.93-1_0.96-2_1.19-3_0.5",
+          "1640_l_2_r-0_1.33-1_1.35-2_1.7-3_1.56",
+          "1641_l_2_r-0_0.21-1_0.22-2_0.85-3_0.3",
+          "1642_l_2_r-0_0.04-1_0.79-2_0.97-3_0.42",
+          "1643_l_2_r-0_0.38-1_1.26-2_1.65-3_0.65",
+          "1644_l_2_r-0_0.52-1_0.98-2_0.63-3_1.37",
+          "1645_l_2_r-0_0.22-1_0.3-2_0.26-3_0.84",
+          "1646_l_2_r-0_0.91-1_0.01-2_0.41-3_0.23",
+          "1647_l_2_r-0_0.52-1_0.94-2_0.73-3_0.02",
+          "1648_l_2_r-0_0.25-1_1.37-2_0.02-3_1.05",
+          "1649_l_2_r-0_0.73-1_0.87-2_1.29-3_0.66",
+          "1650_l_2_r-0_0.84-1_0.47-2_1.76-3_1.92",
+          "1651_l_2_r-0_1.48-1_0.24-2_0.19-3_0.74",
+          "1652_l_2_r-0_2.23-1_0.37-2_0.77-3_0.15",
+          "1653_l_2_r-0_0.42-1_0.77-2_0.5-3_0.04",
+          "1654_l_2_r-0_1.06-1_0.41-2_1.06-3_1.04",
+          "1655_l_2_r-0_0.33-1_1.33-2_1.12-3_2.68",
+          "1656_l_2_r-0_1.0-1_0.18-2_0.15-3_0.04",
+          "1657_l_2_r-0_1.41-1_0.16-2_0.47-3_0.2",
+          "1658_l_2_r-0_0.33-1_0.51-2_1.2-3_0.46",
+          "1659_l_2_r-0_0.21-1_1.24-2_0.69-3_1.17",
+          "1660_l_2_r-0_0.76-1_0.56-2_1.51-3_0.09",
+          "1661_l_2_r-0_0.16-1_1.07-2_0.18-3_1.39",
+          "1662_l_2_r-0_0.64-1_1.34-2_0.58-3_1.04",
+          "1663_l_2_r-0_0.79-1_0.09-2_0.17-3_0.79",
+          "1664_l_2_r-0_0.94-1_0.01-2_0.58-3_1.5",
+          "1665_l_2_r-0_0.53-1_0.74-2_0.57-3_0.4",
+          "1666_l_2_r-0_0.08-1_0.17-2_0.62-3_0.26",
+          "1667_l_2_r-0_0.23-1_0.67-2_0.41-3_0.85",
+          "1668_l_2_r-0_1.37-1_0.09-2_0.13-3_0.82",
+          "1669_l_2_r-0_0.63-1_0.67-2_0.19-3_0.84",
+          "1670_l_2_r-0_2.14-1_0.34-2_0.61-3_0.63",
+          "1671_l_2_r-0_0.05-1_1.16-2_0.49-3_0.26",
+          "1672_l_2_r-0_0.59-1_0.55-2_0.79-3_0.32",
+          "1673_l_2_r-0_0.05-1_0.35-2_0.47-3_2.37",
+          "1674_l_2_r-0_0.3-1_0.1-2_0.48-3_1.43",
+          "1675_l_2_r-0_0.66-1_1.25-2_0.2-3_0.54",
+          "1676_l_2_r-0_1.04-1_1.13-2_1.39-3_0.91",
+          "1677_l_2_r-0_2.13-1_0.2-2_0.01-3_0.13",
+          "1678_l_2_r-0_0.93-1_1.19-2_0.97-3_0.67",
+          "1679_l_2_r-0_0.64-1_0.47-2_0.25-3_0.57",
+          "1680_l_2_r-0_0.9-1_0.54-2_1.19-3_0.86",
+          "1681_l_2_r-0_0.6-1_0.4-2_0.07-3_0.16",
+          "1682_l_2_r-0_0.83-1_0.69-2_0.01-3_0.18",
+          "1683_l_2_r-0_0.76-1_0.37-2_0.62-3_0.84",
+          "1684_l_2_r-0_1.33-1_0.17-2_0.25-3_0.57",
+          "1685_l_2_r-0_0.04-1_1.53-2_0.93-3_1.05",
+          "1686_l_2_r-0_0.27-1_0.11-2_1.07-3_0.74",
+          "1687_l_2_r-0_0.13-1_1.49-2_0.64-3_0.87",
+          "1688_l_2_r-0_0.12-1_0.26-2_1.05-3_0.43",
+          "1689_l_2_r-0_0.4-1_0.83-2_0.52-3_0.07",
+          "1690_l_2_r-0_0.21-1_0.5-2_1.34-3_0.24",
+          "1691_l_2_r-0_0.76-1_0.34-2_0.81-3_1.36",
+          "1692_l_2_r-0_1.67-1_0.73-2_0.59-3_0.58",
+          "1693_l_2_r-0_0.89-1_0.33-2_0.78-3_0.46",
+          "1694_l_2_r-0_0.11-1_0.26-2_0.57-3_0.59",
+          "1695_l_2_r-0_0.19-1_2.2-2_0.65-3_0.57",
+          "1696_l_2_r-0_0.21-1_1.05-2_1.09-3_0.79",
+          "1697_l_2_r-0_0.86-1_0.1-2_1.11-3_0.61",
+          "1698_l_2_r-0_0.39-1_0.91-2_0.03-3_0.84",
+          "1699_l_2_r-0_0.86-1_0.89-2_0.69-3_0.09",
+          "1700_l_2_r-0_0.33-1_1.1-2_0.7-3_0.76",
+          "1701_l_2_r-0_0.99-1_1.68-2_0.41-3_0.34",
+          "1702_l_2_r-0_0.64-1_0.09-2_0.6-3_0.31",
+          "1703_l_2_r-0_0.47-1_0.97-2_0.18-3_0.06",
+          "1704_l_2_r-0_2.1-1_0.2-2_0.67-3_0.38",
+          "1705_l_2_r-0_0.75-1_0.71-2_0.29-3_0.78",
+          "1706_l_2_r-0_0.5-1_0.62-2_1.02-3_0.54",
+          "1707_l_2_r-0_1.18-1_0.09-2_0.38-3_0.65",
+          "1708_l_2_r-0_0.1-1_1.14-2_0.67-3_0.27",
+          "1709_l_2_r-0_0.06-1_1.06-2_0.68-3_0.59",
+          "1710_l_2_r-0_1.2-1_0.88-2_0.68-3_1.06",
+          "1711_l_2_r-0_0.96-1_0.83-2_0.87-3_0.51",
+          "1712_l_2_r-0_1.77-1_1.77-2_0.73-3_0.93",
+          "1713_l_2_r-0_0.34-1_0.77-2_1.63-3_0.07",
+          "1714_l_2_r-0_1.95-1_0.33-2_1.63-3_0.56",
+          "1715_l_2_r-0_0.93-1_1.44-2_0.58-3_1.07",
+          "1716_l_2_r-0_0.16-1_0.84-2_0.99-3_1.05",
+          "1717_l_2_r-0_0.0-1_0.2-2_0.5-3_0.54",
+          "1718_l_2_r-0_0.93-1_1.81-2_0.79-3_1.09",
+          "1719_l_2_r-0_0.67-1_1.11-2_1.02-3_1.44",
+          "1720_l_2_r-0_0.16-1_1.09-2_0.62-3_0.09",
+          "1721_l_2_r-0_0.14-1_1.22-2_0.96-3_1.06",
+          "1722_l_2_r-0_0.78-1_0.33-2_1.15-3_1.69",
+          "1723_l_2_r-0_0.67-1_1.09-2_0.48-3_1.32",
+          "1724_l_2_r-0_0.07-1_0.95-2_0.01-3_0.62",
+          "1725_l_2_r-0_1.22-1_1.03-2_0.24-3_0.91",
+          "1726_l_2_r-0_0.08-1_0.09-2_0.15-3_0.32",
+          "1727_l_2_r-0_1.19-1_0.93-2_0.18-3_0.99",
+          "1728_l_2_r-0_1.39-1_0.55-2_0.84-3_0.35",
+          "1729_l_2_r-0_0.94-1_0.67-2_0.35-3_0.8",
+          "1730_l_2_r-0_0.23-1_0.72-2_0.24-3_0.44",
+          "1731_l_2_r-0_0.51-1_1.17-2_0.97-3_0.24",
+          "1732_l_2_r-0_0.49-1_0.73-2_0.46-3_0.38",
+          "1733_l_2_r-0_1.41-1_0.3-2_0.82-3_0.43",
+          "1734_l_2_r-0_0.63-1_1.8-2_1.0-3_0.01",
+          "1735_l_2_r-0_0.23-1_0.59-2_0.2-3_1.15",
+          "1736_l_2_r-0_1.02-1_0.8-2_0.52-3_0.62",
+          "1737_l_2_r-0_0.92-1_1.42-2_0.26-3_0.77",
+          "1738_l_2_r-0_0.06-1_1.17-2_0.69-3_0.4",
+          "1739_l_2_r-0_0.34-1_0.19-2_0.7-3_0.12",
+          "1740_l_2_r-0_0.42-1_0.93-2_0.15-3_1.2",
+          "1741_l_2_r-0_1.18-1_1.63-2_1.2-3_0.42",
+          "1742_l_2_r-0_0.43-1_1.11-2_0.97-3_0.12",
+          "1743_l_2_r-0_0.12-1_0.55-2_1.05-3_0.14",
+          "1744_l_2_r-0_0.64-1_1.88-2_0.05-3_0.58",
+          "1745_l_2_r-0_0.01-1_1.21-2_0.11-3_1.66",
+          "1746_l_2_r-0_0.51-1_1.45-2_1.33-3_0.81",
+          "1747_l_2_r-0_1.27-1_0.36-2_0.85-3_0.6",
+          "1748_l_2_r-0_0.93-1_0.62-2_0.29-3_0.9",
+          "1749_l_2_r-0_0.17-1_1.18-2_0.75-3_2.16",
+          "1750_l_2_r-0_0.2-1_1.29-2_0.12-3_0.24",
+          "1751_l_2_r-0_0.79-1_0.92-2_1.46-3_0.48",
+          "1752_l_2_r-0_0.59-1_0.59-2_0.24-3_0.03",
+          "1753_l_2_r-0_0.39-1_1.44-2_0.69-3_0.83",
+          "1754_l_2_r-0_1.0-1_0.27-2_0.87-3_0.88",
+          "1755_l_2_r-0_2.28-1_0.6-2_0.71-3_1.46",
+          "1756_l_2_r-0_0.36-1_0.43-2_0.81-3_0.72",
+          "1757_l_2_r-0_0.08-1_1.5-2_0.33-3_0.41",
+          "1758_l_2_r-0_0.06-1_0.17-2_0.54-3_1.0",
+          "1759_l_2_r-0_0.21-1_0.35-2_0.51-3_1.21",
+          "1760_l_2_r-0_1.38-1_0.12-2_1.3-3_0.77",
+          "1761_l_2_r-0_0.6-1_0.5-2_0.53-3_0.27",
+          "1762_l_2_r-0_0.49-1_0.97-2_1.25-3_1.57",
+          "1763_l_2_r-0_0.04-1_0.74-2_0.01-3_0.78",
+          "1764_l_2_r-0_0.84-1_0.4-2_0.67-3_0.32",
+          "1765_l_2_r-0_0.21-1_2.31-2_1.1-3_0.17",
+          "1766_l_2_r-0_0.4-1_0.59-2_1.27-3_0.17",
+          "1767_l_2_r-0_0.57-1_0.2-2_0.17-3_0.41",
+          "1768_l_2_r-0_0.26-1_0.3-2_0.71-3_0.38",
+          "1769_l_2_r-0_0.43-1_1.08-2_0.73-3_0.52",
+          "1770_l_2_r-0_0.65-1_0.24-2_0.03-3_0.31",
+          "1771_l_2_r-0_0.94-1_0.22-2_0.87-3_0.5",
+          "1772_l_2_r-0_0.49-1_0.49-2_1.49-3_0.12",
+          "1773_l_2_r-0_1.0-1_0.53-2_0.28-3_0.4",
+          "1774_l_2_r-0_0.1-1_0.88-2_0.89-3_0.61",
+          "1775_l_2_r-0_0.5-1_0.57-2_0.03-3_1.56",
+          "1776_l_2_r-0_0.24-1_1.01-2_0.29-3_0.36",
+          "1777_l_2_r-0_1.14-1_0.84-2_0.61-3_0.95",
+          "1778_l_2_r-0_1.55-1_0.0-2_0.07-3_1.07",
+          "1779_l_2_r-0_0.72-1_0.55-2_0.36-3_0.22",
+          "1780_l_2_r-0_0.32-1_1.13-2_0.35-3_0.62",
+          "1781_l_2_r-0_0.0-1_0.91-2_0.71-3_0.5",
+          "1782_l_2_r-0_0.98-1_0.22-2_0.01-3_0.05",
+          "1783_l_2_r-0_0.05-1_0.01-2_0.43-3_0.3",
+          "1784_l_2_r-0_1.36-1_0.58-2_1.35-3_0.89",
+          "1785_l_2_r-0_1.11-1_1.03-2_0.49-3_0.29",
+          "1786_l_2_r-0_0.19-1_0.31-2_0.79-3_0.2",
+          "1787_l_2_r-0_0.78-1_0.45-2_0.81-3_0.69",
+          "1788_l_2_r-0_0.13-1_0.71-2_0.69-3_0.23",
+          "1789_l_2_r-0_0.71-1_0.11-2_0.14-3_1.37",
+          "1790_l_2_r-0_0.42-1_2.08-2_1.41-3_0.77",
+          "1791_l_2_r-0_0.15-1_1.1-2_0.48-3_0.33",
+          "1792_l_2_r-0_1.41-1_0.34-2_1.05-3_1.51",
+          "1793_l_2_r-0_1.12-1_0.1-2_0.06-3_0.33",
+          "1794_l_2_r-0_0.87-1_0.46-2_1.47-3_1.38",
+          "1795_l_2_r-0_1.26-1_0.72-2_1.33-3_0.73",
+          "1796_l_2_r-0_1.16-1_0.94-2_0.79-3_0.21",
+          "1797_l_2_r-0_0.44-1_0.03-2_0.09-3_0.79",
+          "1798_l_2_r-0_0.99-1_0.53-2_0.25-3_0.34",
+          "1799_l_2_r-0_0.93-1_1.16-2_1.01-3_1.24",
+          "1800_l_2_r-0_0.32-1_0.44-2_0.21-3_0.34",
+          "1801_l_2_r-0_0.9-1_0.87-2_0.07-3_0.77",
+          "1802_l_2_r-0_0.15-1_0.72-2_0.84-3_0.31",
+          "1803_l_2_r-0_0.13-1_0.55-2_1.36-3_1.14",
+          "1804_l_2_r-0_0.69-1_1.43-2_0.75-3_0.53",
+          "1805_l_2_r-0_0.25-1_1.21-2_0.67-3_0.87",
+          "1806_l_2_r-0_1.38-1_0.58-2_0.4-3_0.35",
+          "1807_l_2_r-0_0.59-1_0.23-2_0.68-3_1.82",
+          "1808_l_2_r-0_0.32-1_0.83-2_1.01-3_0.48",
+          "1809_l_2_r-0_1.44-1_0.32-2_0.62-3_0.01",
+          "1810_l_2_r-0_0.12-1_0.1-2_0.81-3_1.26",
+          "1811_l_2_r-0_0.25-1_1.35-2_0.11-3_1.02",
+          "1812_l_2_r-0_0.82-1_0.83-2_0.66-3_0.31",
+          "1813_l_2_r-0_1.04-1_0.06-2_0.78-3_0.72",
+          "1814_l_2_r-0_0.74-1_1.85-2_0.66-3_0.67",
+          "1815_l_2_r-0_1.13-1_0.38-2_0.15-3_0.5",
+          "1816_l_2_r-0_0.4-1_1.52-2_0.2-3_1.09",
+          "1817_l_2_r-0_1.72-1_0.51-2_0.32-3_0.24",
+          "1818_l_2_r-0_1.07-1_0.25-2_0.87-3_0.43",
+          "1819_l_2_r-0_1.74-1_1.07-2_0.34-3_1.81",
+          "1820_l_2_r-0_1.06-1_0.02-2_0.56-3_0.66",
+          "1821_l_2_r-0_0.97-1_0.44-2_0.84-3_0.03",
+          "1822_l_2_r-0_0.96-1_1.7-2_0.39-3_0.48",
+          "1823_l_2_r-0_0.21-1_0.3-2_0.68-3_0.71",
+          "1824_l_2_r-0_0.73-1_0.31-2_0.56-3_1.46",
+          "1825_l_2_r-0_0.22-1_0.5-2_0.78-3_0.98",
+          "1826_l_2_r-0_0.82-1_1.01-2_0.56-3_0.51",
+          "1827_l_2_r-0_0.7-1_0.37-2_1.15-3_1.33",
+          "1828_l_2_r-0_1.21-1_0.67-2_0.11-3_0.08",
+          "1829_l_2_r-0_0.12-1_0.97-2_0.82-3_1.03",
+          "1830_l_2_r-0_1.3-1_0.0-2_0.82-3_0.62",
+          "1831_l_2_r-0_1.34-1_1.87-2_0.92-3_0.4",
+          "1832_l_2_r-0_1.78-1_0.01-2_0.32-3_0.45",
+          "1833_l_2_r-0_0.93-1_0.9-2_1.05-3_0.48",
+          "1834_l_2_r-0_0.31-1_0.05-2_0.13-3_1.32",
+          "1835_l_2_r-0_1.37-1_0.29-2_0.07-3_0.02",
+          "1836_l_2_r-0_0.01-1_0.4-2_0.19-3_0.56",
+          "1837_l_2_r-0_0.97-1_0.54-2_0.29-3_0.41",
+          "1838_l_2_r-0_0.73-1_1.15-2_0.87-3_0.46",
+          "1839_l_2_r-0_0.95-1_0.92-2_0.57-3_1.84",
+          "1840_l_2_r-0_0.31-1_1.18-2_0.56-3_0.2",
+          "1841_l_2_r-0_0.16-1_0.22-2_0.46-3_0.06",
+          "1842_l_2_r-0_0.33-1_0.84-2_0.06-3_0.12",
+          "1843_l_2_r-0_0.82-1_0.57-2_1.2-3_1.05",
+          "1844_l_2_r-0_1.18-1_1.49-2_1.92-3_0.26",
+          "1845_l_2_r-0_0.7-1_0.18-2_0.0-3_1.09",
+          "1846_l_2_r-0_0.75-1_1.99-2_0.21-3_0.89",
+          "1847_l_2_r-0_0.22-1_0.27-2_0.68-3_0.23",
+          "1848_l_2_r-0_1.11-1_0.64-2_0.11-3_0.28",
+          "1849_l_2_r-0_1.24-1_0.9-2_0.25-3_1.47",
+          "1850_l_2_r-0_0.3-1_0.03-2_0.93-3_0.1",
+          "1851_l_2_r-0_0.05-1_0.71-2_0.19-3_0.32",
+          "1852_l_2_r-0_0.21-1_0.65-2_0.23-3_0.08",
+          "1853_l_2_r-0_0.42-1_0.91-2_0.15-3_0.02",
+          "1854_l_2_r-0_1.49-1_2.01-2_0.57-3_0.13",
+          "1855_l_2_r-0_0.32-1_0.22-2_0.88-3_0.08",
+          "1856_l_2_r-0_1.48-1_0.96-2_0.58-3_0.07",
+          "1857_l_2_r-0_0.11-1_0.8-2_1.24-3_0.5",
+          "1858_l_2_r-0_1.62-1_1.4-2_0.16-3_1.07",
+          "1859_l_2_r-0_0.2-1_0.31-2_0.37-3_0.68",
+          "1860_l_2_r-0_0.62-1_0.93-2_0.26-3_0.54",
+          "1861_l_2_r-0_1.58-1_1.03-2_0.42-3_0.29",
+          "1862_l_2_r-0_0.56-1_0.28-2_1.03-3_0.33",
+          "1863_l_2_r-0_0.5-1_0.81-2_0.7-3_0.21",
+          "1864_l_2_r-0_0.28-1_0.55-2_1.17-3_1.52",
+          "1865_l_2_r-0_0.46-1_0.11-2_0.86-3_0.76",
+          "1866_l_2_r-0_1.17-1_0.22-2_0.23-3_0.22",
+          "1867_l_2_r-0_0.05-1_1.16-2_0.15-3_0.06",
+          "1868_l_2_r-0_1.31-1_1.17-2_0.36-3_1.97",
+          "1869_l_2_r-0_0.77-1_0.34-2_0.26-3_0.42",
+          "1870_l_2_r-0_0.34-1_0.86-2_0.7-3_0.71",
+          "1871_l_2_r-0_0.28-1_0.41-2_0.45-3_1.51",
+          "1872_l_2_r-0_0.96-1_0.71-2_0.75-3_1.09",
+          "1873_l_2_r-0_0.48-1_0.63-2_0.74-3_0.23",
+          "1874_l_2_r-0_0.09-1_0.35-2_0.11-3_0.25",
+          "1875_l_2_r-0_0.93-1_0.33-2_1.64-3_1.0",
+          "1876_l_2_r-0_0.66-1_0.19-2_0.03-3_0.98",
+          "1877_l_2_r-0_0.39-1_0.26-2_1.41-3_0.93",
+          "1878_l_2_r-0_0.16-1_2.75-2_0.93-3_1.1",
+          "1879_l_2_r-0_1.29-1_1.65-2_0.78-3_0.85",
+          "1880_l_2_r-0_0.38-1_0.28-2_0.93-3_1.03",
+          "1881_l_2_r-0_0.93-1_0.58-2_0.21-3_0.54",
+          "1882_l_2_r-0_0.79-1_1.1-2_0.5-3_0.88",
+          "1883_l_2_r-0_0.5-1_0.48-2_0.41-3_0.25",
+          "1884_l_2_r-0_0.67-1_1.2-2_0.42-3_0.33",
+          "1885_l_2_r-0_0.95-1_0.95-2_0.02-3_0.39",
+          "1886_l_2_r-0_1.68-1_2.59-2_0.47-3_0.71",
+          "1887_l_2_r-0_1.04-1_0.03-2_0.47-3_0.53",
+          "1888_l_2_r-0_1.39-1_1.32-2_1.31-3_0.16",
+          "1889_l_2_r-0_0.44-1_3.27-2_0.61-3_0.75",
+          "1890_l_2_r-0_1.75-1_0.91-2_0.98-3_0.28",
+          "1891_l_2_r-0_0.47-1_0.13-2_0.99-3_0.0",
+          "1892_l_2_r-0_1.27-1_0.61-2_0.25-3_1.16",
+          "1893_l_2_r-0_1.06-1_0.7-2_2.32-3_0.35",
+          "1894_l_2_r-0_0.34-1_0.22-2_0.12-3_0.31",
+          "1895_l_2_r-0_0.02-1_0.54-2_0.8-3_0.26",
+          "1896_l_2_r-0_1.4-1_1.79-2_0.91-3_0.4",
+          "1897_l_2_r-0_1.04-1_0.13-2_1.45-3_0.16",
+          "1898_l_2_r-0_0.97-1_0.37-2_0.58-3_0.53",
+          "1899_l_2_r-0_1.02-1_0.53-2_0.98-3_1.46",
+          "1900_l_2_r-0_0.05-1_1.14-2_0.34-3_1.08",
+          "1901_l_2_r-0_0.37-1_0.06-2_1.36-3_0.38",
+          "1902_l_2_r-0_0.73-1_1.04-2_0.34-3_1.27",
+          "1903_l_2_r-0_0.47-1_0.18-2_0.8-3_0.27",
+          "1904_l_2_r-0_1.1-1_0.2-2_0.49-3_1.1",
+          "1905_l_2_r-0_0.2-1_1.19-2_0.12-3_0.86",
+          "1906_l_2_r-0_1.74-1_0.2-2_0.37-3_0.08",
+          "1907_l_2_r-0_0.68-1_0.21-2_0.9-3_1.51",
+          "1908_l_2_r-0_1.58-1_1.35-2_0.49-3_0.26",
+          "1909_l_2_r-0_0.44-1_0.76-2_0.32-3_1.09",
+          "1910_l_2_r-0_1.53-1_0.72-2_0.7-3_1.1",
+          "1911_l_2_r-0_0.89-1_0.07-2_0.07-3_1.3",
+          "1912_l_2_r-0_1.1-1_1.08-2_0.02-3_0.23",
+          "1913_l_2_r-0_1.33-1_0.35-2_0.56-3_0.11",
+          "1914_l_2_r-0_0.82-1_1.72-2_0.31-3_0.94",
+          "1915_l_2_r-0_1.5-1_0.39-2_0.79-3_0.4",
+          "1916_l_2_r-0_0.76-1_0.89-2_0.63-3_0.69",
+          "1917_l_2_r-0_0.62-1_1.85-2_0.34-3_1.39",
+          "1918_l_2_r-0_0.17-1_1.53-2_1.13-3_1.29",
+          "1919_l_2_r-0_0.62-1_0.4-2_0.4-3_0.54",
+          "1920_l_2_r-0_1.52-1_0.65-2_1.53-3_0.88",
+          "1921_l_2_r-0_0.23-1_0.63-2_0.46-3_0.5",
+          "1922_l_2_r-0_0.34-1_0.5-2_0.53-3_0.22",
+          "1923_l_2_r-0_0.24-1_0.27-2_1.66-3_0.17",
+          "1924_l_2_r-0_0.01-1_0.65-2_0.29-3_0.92",
+          "1925_l_2_r-0_0.61-1_0.06-2_0.3-3_0.63",
+          "1926_l_2_r-0_0.4-1_1.02-2_0.53-3_0.99",
+          "1927_l_2_r-0_1.49-1_0.43-2_0.88-3_1.76",
+          "1928_l_2_r-0_0.82-1_0.33-2_0.65-3_1.33",
+          "1929_l_2_r-0_1.22-1_0.64-2_0.55-3_0.38",
+          "1930_l_2_r-0_0.96-1_0.05-2_1.71-3_0.66",
+          "1931_l_2_r-0_0.03-1_1.21-2_1.11-3_0.06",
+          "1932_l_2_r-0_1.55-1_0.01-2_0.04-3_0.76",
+          "1933_l_2_r-0_1.74-1_0.36-2_0.31-3_0.2",
+          "1934_l_2_r-0_1.04-1_0.52-2_0.25-3_0.64",
+          "1935_l_2_r-0_0.66-1_0.72-2_0.25-3_0.21",
+          "1936_l_2_r-0_1.45-1_1.16-2_0.91-3_0.16",
+          "1937_l_2_r-0_1.48-1_0.85-2_0.3-3_0.28",
+          "1938_l_2_r-0_0.33-1_0.78-2_0.13-3_0.75",
+          "1939_l_2_r-0_0.06-1_0.95-2_1.27-3_1.02",
+          "1940_l_2_r-0_0.96-1_0.71-2_1.45-3_0.09",
+          "1941_l_2_r-0_1.22-1_1.09-2_0.36-3_1.72",
+          "1942_l_2_r-0_0.7-1_1.23-2_0.57-3_0.64",
+          "1943_l_2_r-0_1.25-1_0.94-2_1.17-3_1.3",
+          "1944_l_2_r-0_0.36-1_0.45-2_1.15-3_0.29",
+          "1945_l_2_r-0_0.04-1_0.35-2_0.33-3_0.32",
+          "1946_l_2_r-0_0.18-1_0.06-2_0.22-3_0.02",
+          "1947_l_2_r-0_0.46-1_0.59-2_1.4-3_0.2",
+          "1948_l_2_r-0_1.19-1_2.12-2_0.1-3_1.31",
+          "1949_l_2_r-0_0.17-1_0.91-2_1.38-3_0.99",
+          "1950_l_2_r-0_0.7-1_1.0-2_1.11-3_0.6",
+          "1951_l_2_r-0_1.45-1_0.88-2_0.08-3_0.09",
+          "1952_l_2_r-0_0.04-1_0.55-2_0.53-3_0.43",
+          "1953_l_2_r-0_0.72-1_1.17-2_0.14-3_0.41",
+          "1954_l_2_r-0_0.88-1_0.55-2_0.12-3_0.54",
+          "1955_l_2_r-0_0.63-1_0.95-2_1.04-3_0.74",
+          "1956_l_2_r-0_0.01-1_1.24-2_0.63-3_0.68",
+          "1957_l_2_r-0_1.0-1_0.41-2_0.75-3_1.14",
+          "1958_l_2_r-0_0.71-1_0.06-2_1.21-3_2.07",
+          "1959_l_2_r-0_0.54-1_0.69-2_1.14-3_0.54",
+          "1960_l_2_r-0_0.36-1_0.5-2_0.1-3_0.77",
+          "1961_l_2_r-0_0.75-1_0.25-2_0.26-3_0.57",
+          "1962_l_2_r-0_1.74-1_0.01-2_1.2-3_0.82",
+          "1963_l_2_r-0_0.6-1_0.24-2_0.9-3_0.09",
+          "1964_l_2_r-0_0.98-1_0.29-2_0.71-3_0.22",
+          "1965_l_2_r-0_1.4-1_0.55-2_1.05-3_0.65",
+          "1966_l_2_r-0_0.64-1_0.52-2_0.51-3_0.54",
+          "1967_l_2_r-0_0.86-1_0.79-2_0.9-3_0.38",
+          "1968_l_2_r-0_0.5-1_0.05-2_0.83-3_0.65",
+          "1969_l_2_r-0_0.95-1_1.67-2_0.39-3_0.46",
+          "1970_l_2_r-0_1.33-1_0.83-2_0.48-3_1.1",
+          "1971_l_2_r-0_0.3-1_0.61-2_0.43-3_0.99",
+          "1972_l_2_r-0_1.11-1_0.99-2_0.32-3_0.12",
+          "1973_l_2_r-0_0.83-1_0.08-2_0.62-3_1.17",
+          "1974_l_2_r-0_0.38-1_1.29-2_0.72-3_0.8",
+          "1975_l_2_r-0_0.13-1_0.08-2_0.09-3_0.45",
+          "1976_l_2_r-0_0.55-1_1.13-2_1.14-3_0.57",
+          "1977_l_2_r-0_0.23-1_0.29-2_0.27-3_0.31",
+          "1978_l_2_r-0_0.24-1_0.69-2_0.76-3_1.13",
+          "1979_l_2_r-0_1.21-1_0.54-2_0.73-3_0.6",
+          "1980_l_2_r-0_0.26-1_0.23-2_1.13-3_0.69",
+          "1981_l_2_r-0_0.8-1_0.26-2_0.43-3_0.27",
+          "1982_l_2_r-0_0.53-1_1.22-2_1.5-3_0.4",
+          "1983_l_2_r-0_1.23-1_0.72-2_0.36-3_0.9",
+          "1984_l_2_r-0_0.15-1_0.19-2_1.06-3_0.54",
+          "1985_l_2_r-0_0.64-1_0.33-2_0.76-3_0.3",
+          "1986_l_2_r-0_0.71-1_0.26-2_0.69-3_1.14",
+          "1987_l_2_r-0_0.64-1_1.37-2_1.49-3_0.06",
+          "1988_l_2_r-0_0.34-1_0.5-2_0.99-3_0.45",
+          "1989_l_2_r-0_0.15-1_0.0-2_0.3-3_0.36",
+          "1990_l_2_r-0_1.73-1_0.5-2_0.8-3_0.52",
+          "1991_l_2_r-0_0.53-1_2.59-2_0.33-3_0.15",
+          "1992_l_2_r-0_0.13-1_0.02-2_1.61-3_0.92",
+          "1993_l_2_r-0_0.15-1_0.63-2_0.49-3_0.6",
+          "1994_l_2_r-0_0.15-1_1.81-2_0.43-3_0.32",
+          "1995_l_2_r-0_0.05-1_0.07-2_0.44-3_0.01",
+          "1996_l_2_r-0_0.4-1_0.18-2_1.16-3_0.14",
+          "1997_l_2_r-0_1.62-1_0.63-2_0.73-3_0.8"
          ],
          "type": "scatter3d",
          "x": [
-          -11.818549558986481,
-          10.54755096504382,
-          9.557486140000425,
-          9.882592355457401,
-          10.247031005355126,
-          10.216456646770443,
-          10.483213503460293,
-          10.608398805432982,
-          9.672060899290239,
-          11.377658602571598,
-          -11.0962182738371,
-          10.316009279169776,
-          10.027781842222058,
-          -10.08548960868361,
-          9.892659639671542,
-          10.262752170468673,
-          10.140307584592339,
-          11.409762472388012,
-          10.835004740806216,
-          10.287726453996084,
-          9.862108205820832,
-          10.431006095537342,
-          13.160898285831038,
-          10.576002838961818,
-          -10.355067226168813,
-          12.992285015369573,
-          8.970130585543252,
-          9.533409831041459,
-          10.181041487406842,
-          -7.0485970997803955,
-          8.792286782377506,
-          9.960291520764901,
-          11.198039779129418,
-          8.011139786961774,
-          9.080475378296894,
-          -9.080937189598995,
-          9.68365782868577,
-          10.840855234654326,
-          -9.94150658383999,
-          9.57335885338552,
-          10.291383996520391,
-          -9.815577771579113,
-          9.322236798501503,
-          -9.52615667276955,
-          13.53376816669887,
-          12.452336389576928,
-          9.667611464049024,
-          9.557275806569294,
-          9.502011652075216,
-          8.887546567263378,
-          10.201812319555389,
-          10.786182455721862,
-          12.075922173950877,
-          9.044524018440399,
-          10.97947736890239,
-          10.15897150100861,
-          11.083793894764094,
-          -7.808758863604172,
-          11.171901722118598,
-          8.791566329166361,
-          -8.548536209559948,
-          10.965424006772597,
-          12.11486198605132,
-          -7.910785015309727,
-          -8.099459848473701,
-          9.137398607056621,
-          9.863808712178269,
-          11.249229632449367,
-          9.558460960648578,
-          -9.757407020861244,
-          9.11514826392913,
-          10.950745253859068,
-          -8.572318556273789,
-          11.2875567947002,
-          9.362224954550411,
-          11.156600468162775,
-          -8.939519405065571,
-          10.789557150395648,
-          11.409152353078428,
-          -10.630981586900393,
-          10.347770103641347,
-          8.845405213577571,
-          8.202053622095884,
-          9.732949724502149,
-          8.579790049655537,
-          8.389620234895826,
-          9.729928635585395,
-          10.959783165819795,
-          9.792871870640806,
-          10.42446504259017,
-          7.092218413126991,
-          -10.533004868727591,
-          10.49525834021336,
-          9.29464201059708,
-          9.540547277196884,
-          8.91415438543586,
-          9.548900785302209,
-          9.488924643819328,
-          -9.599968557964502,
-          9.037513022299203,
-          -10.18747266365054,
-          10.391698528337567,
-          -11.193666675300975,
-          10.821054468650695,
-          10.300939786505019,
-          9.31293779409361,
-          -9.285201713416035,
-          -9.604515156573152,
-          10.033217324198072,
-          10.273074849521333,
-          9.662795991980223,
-          11.551033070107563,
-          9.334031562989948,
-          9.785124261842686,
-          10.447263574837615,
-          -9.765314485107131,
-          8.858875756298286,
-          10.957362541270333,
-          -9.4037113428527,
-          9.881308768336746,
-          11.818779684981806,
-          -10.183504562220419,
-          10.077855940850569,
-          9.647826586357533,
-          8.22203194429747,
-          9.277433891709336,
-          9.978564347639605,
-          10.568790178548031,
-          9.961441356153,
-          9.389651755166842,
-          9.52502363883823,
-          9.538768560652057,
-          9.288245574401227,
-          -9.492028383407966,
-          9.52748175134968,
-          -9.416391319214151,
-          9.713057788599125,
-          9.62662574985605,
-          6.343724868243034,
-          10.02486679771612,
-          9.340123216026866,
-          9.465663056631266,
-          -8.865265084055874,
-          12.050382460605835,
-          9.633659802634309,
-          9.462661977228029,
-          10.325839074967554,
-          10.371922605980656,
-          -7.978103328468134,
-          10.441832939159006,
-          10.254392387102442,
-          -8.917137986502697,
-          11.182408579349826,
-          9.709309542944043,
-          -9.909750460681412,
-          10.231201724677426,
-          10.073300548248115,
-          9.912257996633269,
-          11.486586863294653,
-          9.627731643238643,
-          8.853955411788174,
-          7.3709987920513935,
-          11.158891906413485,
-          -9.344385683573162,
-          9.470177749702332,
-          -9.03511087965264,
-          -10.24718395847089,
-          10.138143260368068,
-          10.909880637942498,
-          10.178184895273828,
-          -8.09396828167972,
-          -10.452587282394994,
-          9.932192757135853,
-          11.651803196555912,
-          -9.567088090600292,
-          9.795852516220902,
-          10.719394419127815,
-          10.601597837818868,
-          11.638734718938034,
-          -10.384189128607764,
-          10.625236061281202,
-          8.266574135066422,
-          10.06059388070415,
-          10.009256654904167,
-          9.140426199992595,
-          -9.415313976853119,
-          12.789791910657588,
-          -10.906654359697665,
-          9.218535369078795,
-          9.141300523648082,
-          10.587508113933,
-          9.864276710231984,
-          8.623444788857034,
-          -10.927956950243699,
-          -10.340852094730744,
-          10.753969855951947,
-          -10.169390907765203,
-          11.262121721569702,
-          -9.49458410941182,
-          8.969639377235792,
-          9.66018105364766,
-          10.223798113053427,
-          8.545085114770659,
-          -10.016972519334502,
-          7.879952188819898,
-          -10.394476487416416,
-          10.43546972655149,
-          9.87586618512616,
-          9.35933437192548,
-          11.06993984102771,
-          9.461668592848689,
-          9.267406200990393,
-          9.506077296019184,
-          12.115028809885104,
-          8.592480893430734,
-          12.188801094861667,
-          9.355022316391933,
-          -8.673164364792454,
-          -8.758047033786168,
-          10.872856477814798,
-          10.030798577804452,
-          9.901503895550874,
-          10.649795106661053,
-          -12.861577775309945,
-          12.651770039379443,
-          10.675077588902038,
-          -9.099668353828294,
-          8.754317187281368,
-          10.57245243531123,
-          9.745613652691777,
-          10.524389080062196,
-          9.525783814865928,
-          9.53756736800443,
-          8.901465032998253,
-          -12.028559752547604,
-          11.446112302601172,
-          9.189708504303125,
-          10.881880886829336,
-          8.449092297430475,
-          -11.376367206356598,
-          9.198614861702174,
-          9.461460149385363,
-          -9.78240787663226,
-          9.904371633344033,
-          -10.279147372122377,
-          -8.500606595953807,
-          -11.01957327374312,
-          10.849164853564947,
-          9.468915463846807,
-          9.391665527921441,
-          9.187400272376992,
-          9.689763040218526,
-          9.208710181710645,
-          9.225476400367336,
-          10.1376071637374,
-          7.609072635487475,
-          -10.386607044028379,
-          10.498376445839106,
-          10.723548651181417,
-          10.695770151574951,
-          11.961234464925864,
-          9.898051648427867,
-          9.814408180360317,
-          9.897391029824558,
-          11.278319346448662,
-          9.549812247357874,
-          10.162648130789774,
-          9.713412306443823,
-          10.191279793049047,
-          10.596183396398311,
-          9.400369343649643,
-          12.153481157838439,
-          12.083450819207892,
-          -10.223579451481847,
-          -10.309345149663141,
-          -10.721651347213728,
-          9.461279400943639,
-          10.428048392801976,
-          11.283477213554528,
-          9.39210475159549,
-          10.461758372586056,
-          8.857827327136508,
-          9.657139791756101,
-          9.70874924964718,
-          11.232314134406153,
-          9.754547168665018,
-          8.93243738637294,
-          8.786996183287267,
-          8.245683550146637,
-          10.361616058805007,
-          9.78528846086859,
-          11.043818706782467,
-          10.844638208150377,
-          9.526295504104736,
-          8.219729593246033,
-          10.46629452800939,
-          10.812505174260394,
-          11.31724852485766,
-          10.619605782696633,
-          -11.542890446566924,
-          10.873601119929535,
-          10.321198782745538,
-          -10.071761167352367,
-          -10.155276526873246,
-          9.323246045558328,
-          10.8553372545447,
-          11.996468547985405,
-          9.972541192936788,
-          11.674706974130109,
-          12.490124304928088,
-          11.341103146085814,
-          9.564434137151645,
-          8.605723280959877,
-          -12.107961283630301,
-          7.793811521126669,
-          8.931109742672055,
-          -10.119572130727416,
-          9.499818482764313,
-          9.001626994940231,
-          -9.437142260225919,
-          9.989700316147644,
-          8.453335492154597,
-          11.86932119665855,
-          10.51548752873646,
-          9.181138966830181,
-          9.788947181547863,
-          8.717657309155499,
-          8.623358870504573,
-          -10.519138098649748,
-          -10.699259434913106,
-          8.727719272636412,
-          -7.947340552530161,
-          -11.009387450532474,
-          10.731736574668252,
-          10.265045624358383,
-          -10.239355428637293,
-          9.920732249705495,
-          9.702671870824496,
-          -9.458105206468083,
-          9.57294670393785,
-          9.368312383469934,
-          9.343058401235494,
-          9.675748074511896,
-          -7.721255522669949,
-          10.023843807815844,
-          9.633621441858793,
-          10.425531638047898,
-          9.430087838170634,
-          11.956587038188653,
-          9.512562192574832,
-          -8.248492388464264,
-          9.564801759929297,
-          8.754424945559908,
-          9.870204207584079,
-          9.590841071706562,
-          11.602421278874246,
-          -9.542706354777245,
-          10.355114396636402,
-          9.893664858794818,
-          11.503027598694024,
-          10.306637943680645,
-          10.342400848251811,
-          -9.922108665855282,
-          10.322919756196105,
-          10.490820264986088,
-          10.184850802127142,
-          10.51275755884478,
-          10.71172109350484,
-          9.073407734539131,
-          11.315208735975373,
-          -8.122700863989902,
-          9.594887757668081,
-          -8.880736429920612,
-          11.63990236945587,
-          10.955730156260826,
-          10.556564392256416,
-          10.585061211811363,
-          11.208089539712283,
-          9.411221343688927,
-          9.617457100496768,
-          10.72871520123209,
-          -8.333956769891898,
-          8.530488279517572,
-          -7.445213953222349,
-          10.550043250979002,
-          10.200503981942676,
-          -9.574587107250288,
-          10.213438428186373,
-          -10.604632942781445,
-          -9.319794079145534,
-          -7.671924951330142,
-          9.907058558734619,
-          9.641231053862032,
-          -10.243873579955107,
-          9.198945669882288,
-          10.34940499522747,
-          9.068999128715742,
-          9.167518808381896,
-          10.201985639180812,
-          8.767353354936564,
-          9.970228615714129,
-          9.817028755550806,
-          9.042205418733545,
-          8.073051527595906,
-          9.853645989096291,
-          -11.231621933031004,
-          9.802516465458835,
-          10.94930664492717,
-          10.15435877496696,
-          -11.208026174318267,
-          9.562758461746,
-          -11.774419430757463,
-          10.034060603092515,
-          10.29036985473046,
-          10.642189380484846,
-          9.034154162262581,
-          -8.12720624242477,
-          -10.50118080186486,
-          -12.081465234672512,
-          11.374696890325092,
-          8.770214146680743,
-          10.610902315066957,
-          9.165156967846233,
-          -9.140165233467442,
-          11.0503584729199,
-          9.989165287837967,
-          10.903878057740583,
-          10.56263501501,
-          12.096957248590407,
-          8.705072273083852,
-          10.546706976336845,
-          9.865483525662551,
-          8.060202823878019,
-          9.109315633109711,
-          9.462398307945513,
-          8.991039648639683,
-          11.65337456962856,
-          -9.816112540776006,
-          7.6588858122190215,
-          8.495603409875466,
-          9.655402299302947,
-          10.91251429915288,
-          8.909578331587095,
-          -8.948922384511844,
-          8.902097889750092,
-          11.671674138601574,
-          -9.443402496025161,
-          11.310562645103818,
-          9.072960034871565,
-          11.980028652137616,
-          10.398290467482513,
-          10.762693348747622,
-          -9.614798649324253,
-          9.273633819913764,
-          10.127803143966098,
-          10.111654767962829,
-          9.836652900545031,
-          10.26962195465182,
-          10.022274481368655,
-          10.38640084814055,
-          8.619679673209685,
-          11.385122526986171,
-          8.906862654589219,
-          -8.53725025964974,
-          9.765960667389917,
-          9.655603923991466,
-          8.981650899419938,
-          -11.82378879727975,
-          9.298156884882614,
-          8.468535959189389,
-          -9.538421752525565,
-          11.781597052552423,
-          -9.62951305303754,
-          9.045214800210571,
-          8.692394420655727,
-          11.255603890841957,
-          10.083090754978798,
-          10.721839394106464,
-          -10.8281860229862,
-          9.287138838802028,
-          11.253132512729191,
-          9.980071077824633,
-          9.222794666784642,
-          -10.66447258852791,
-          11.517965109706056,
-          10.110634688881033,
-          11.573865958796512,
-          10.73789100607216,
-          9.771279198117817,
-          10.912974739795267,
-          -10.50536652225335,
-          9.617254498258111,
-          9.755509817641581,
-          10.638094117407396,
-          11.553372105250103,
-          -8.696308755192707,
-          9.258218897208671,
-          9.703940084006618,
-          10.712147837508343,
-          10.863684971227704,
-          -8.610020391428732,
-          9.62548676971997,
-          -10.001869841076163,
-          9.91488732373064,
-          9.774531758532808,
-          11.529625389130853,
-          9.738651218722868,
-          10.17390312551556,
-          10.278960559137891,
-          12.53987978952252,
-          10.42252785912994,
-          10.022262436758437,
-          9.8830393564443,
-          8.693400118865814,
-          -8.96959103170859,
-          9.142139517397114,
-          -9.388536810074983,
-          -9.522059049433054,
-          8.5037315121667,
-          7.981304851710293,
-          9.131506294482394,
-          -11.124458448052314,
-          12.054010786555368,
-          9.786739041893231,
-          -10.126412005465026,
-          10.261996361769965,
-          10.338091857266974,
-          11.208249290993685,
-          7.59300388664359,
-          9.878816722388986,
-          9.880790111700472,
-          10.712669482318468,
-          9.266454822995007,
-          11.16016512518465,
-          9.023239966186992,
-          10.296440675915393,
-          -10.52163356027716,
-          9.031180882131466,
-          9.286765027191212,
-          8.79485039926023,
-          10.088455988043576,
-          11.863931359755785,
-          8.739060897444638,
-          9.18791919898956,
-          10.75230038853931,
-          9.983456132984587,
-          10.58304682875478,
-          -9.166008007425392,
-          8.994377167813969,
-          9.464339539103182,
-          11.920629936468563,
-          9.562586069489875,
-          -8.729951943809128,
-          8.807892032306917,
-          9.423251629744788,
-          8.170080782634436,
-          -8.575853612372418,
-          9.901455875061952,
-          9.361522726346095,
-          11.557009677931235,
-          9.352015802707976,
-          9.482096985749667,
-          10.516846853179985,
-          9.668936240791647,
-          -11.574504358499706,
-          11.198266146728352,
-          10.636763658173228,
-          10.543251120747884,
-          11.086316844186946,
-          -7.015887777279254,
-          10.072379928503231,
-          9.895844035241733,
-          10.018830546336186,
-          10.596761105225688,
-          10.594294512838028,
-          7.862005289103297,
-          10.346660836068613,
-          9.579914137788647,
-          9.697396234026256,
-          9.985454623939189,
-          10.771381795183952,
-          -11.501092100156951,
-          -7.934777144475619,
-          9.533365188740488,
-          8.535301977865457,
-          -11.193825860506404,
-          10.954189976335677,
-          8.750757625611943,
-          11.179557240125334,
-          11.735933195060937,
-          9.175995985237165,
-          12.228398309987648,
-          11.197203569393194,
-          9.969779131022078,
-          11.03899506846698,
-          9.155055012001897,
-          9.165046659413367,
-          10.757002902966015,
-          11.041854870330361,
-          9.511533053660841,
-          -9.259450363204056,
-          9.748025698810856,
-          10.808373762364443,
-          11.340684561697586,
-          11.754179881459722,
-          -8.084842722050926,
-          8.424151880299021,
-          9.54412955788846,
-          12.156821001113865,
-          -8.369619791491944,
-          8.249425814945647,
-          11.368242264641557,
-          10.287641281596215,
-          10.426303346833496,
-          9.809102361452682,
-          9.826937559483474,
-          -8.3067281511427,
-          -8.197346015749579,
-          10.919955196943842,
-          9.987179792001672,
-          9.997721526952782,
-          10.317913794066145,
-          10.773471123746795,
-          9.429924410722625,
-          9.11714192956713,
-          10.887110666681666,
-          8.193528500563424,
-          10.32788249118789,
-          10.439269737701988,
-          -11.166689031380098,
-          9.631137525529033,
-          9.839317318505636,
-          10.581803824587515,
-          10.92172413066599,
-          -9.103676530939067,
-          -8.743414102031071,
-          9.58684281825532,
-          9.855906855345923,
-          8.404037720541574,
-          10.48957106896743,
-          9.552612883749664,
-          10.91859697969947,
-          -11.151976256721403,
-          9.219597496996816,
-          9.522481115541826,
-          9.341607790522758,
-          8.297675634319212,
-          10.258553780618287,
-          11.739750687341635,
-          11.160649449799555,
-          9.773331310637612,
-          8.01419899362669,
-          -11.333317461087377,
-          9.934225764596576,
-          10.567040592923878,
-          9.021000344659475,
-          9.229071496089992,
-          9.60426804288525,
-          -9.941439903684852,
-          10.29113361468084,
-          -12.517990129880207,
-          9.911860871750129,
-          9.071473691675704,
-          10.201247809251297,
-          10.242956198116502,
-          11.774433908727916
+          -1.0901328101273164,
+          1.6677737118632119,
+          0.9960444552807564,
+          -1.1811853406219894,
+          -0.43251358995055966,
+          0.962925965742037,
+          0.40670212448658727,
+          1.9232311333613898,
+          -0.021055995985781895,
+          -0.8062011172596635,
+          1.4819809580036474,
+          -0.49407690702778684,
+          -0.9459200485883841,
+          2.446496180311982,
+          -0.1665117996975456,
+          -1.1189750082775944,
+          1.85180788464427,
+          1.923349465343855,
+          2.493308977187074,
+          1.7637218838292885,
+          0.8265442011433727,
+          -0.0551094203187068,
+          -0.20365964182212304,
+          -0.0010392239699452688,
+          0.5081422512364178,
+          -0.7233571606979317,
+          1.770057443665286,
+          0.5210636654993158,
+          1.6489899511495856,
+          -0.08275775945577268,
+          0.6996200968149457,
+          -0.8798866681308386,
+          0.6066495009559362,
+          2.8134597193628332,
+          -0.03934475781981028,
+          -0.9018415748796353,
+          0.14394299687606493,
+          0.19384441541663433,
+          -0.526786721600204,
+          -0.04831559685989051,
+          -0.6543716244289717,
+          -0.6429988103864239,
+          -0.1470535427717079,
+          1.8553557957938691,
+          -0.4003993842978888,
+          0.9076900170373987,
+          2.247818150225671,
+          1.4433893711399026,
+          1.4057345817454512,
+          -0.14415918423672203,
+          -0.10393147736220043,
+          -0.8239742937481385,
+          -0.07222456239628916,
+          2.517262730442204,
+          -1.2327595439728154,
+          0.8903354554460953,
+          1.1728249757557396,
+          2.3467756233062307,
+          -0.2366321947517227,
+          1.883364003137073,
+          -0.3083349326521261,
+          -0.5332311258066773,
+          -0.14264635453560426,
+          -0.2297913513175096,
+          0.9950005725779459,
+          0.11778659043460527,
+          0.9764406116424654,
+          0.6912938306697445,
+          1.5885564252551574,
+          1.6802325218514318,
+          -0.251423502054811,
+          -0.07341872850709663,
+          -0.3185271660136275,
+          1.2863358863811292,
+          2.4944210666943425,
+          0.41813660061696956,
+          -0.8399391873701862,
+          -0.011587253154394794,
+          -0.07278360117455263,
+          2.267841416263681,
+          1.9680522750749698,
+          0.8243980704171558,
+          -0.40332795762026286,
+          0.6779664821985563,
+          -0.08722037381554992,
+          -0.12459572718020762,
+          -0.019065674008932554,
+          -0.4398980232291936,
+          1.1242967263144836,
+          1.2489609866399627,
+          0.02909918068589512,
+          -0.3030744095947646,
+          0.8119443962814324,
+          1.0846233207562885,
+          2.0302677646244103,
+          1.6612119158303273,
+          0.4815711817486805,
+          0.3391239179114315,
+          0.2402840556740068,
+          -0.21557268399532492,
+          -0.1537592800027825,
+          2.0964414089485937,
+          0.9769930583971209,
+          -0.4604406939080603,
+          -0.4757795872437709,
+          -0.5417016397996028,
+          2.049066881021219,
+          1.4766260905516453,
+          -0.014925970454958915,
+          1.7601531992591424,
+          -0.346600339400692,
+          -0.2091214628439182,
+          1.3634656557483507,
+          -0.6862149262781521,
+          -0.6863040460228302,
+          1.9405597170210362,
+          -0.08637644725475613,
+          2.051533710187469,
+          -0.2628978134568636,
+          -0.25675293373575436,
+          -0.10944326645578739,
+          1.1578468181116675,
+          -0.3191849561263638,
+          1.5048953192638013,
+          -0.043174326519920925,
+          -0.04656332804161911,
+          -1.0499819357210223,
+          0.3235755512286532,
+          -0.020938964599178878,
+          -0.4207498537429548,
+          -0.4150679389576619,
+          0.10803969496632815,
+          0.17654474972391487,
+          -0.35362110357647936,
+          -0.5576895294624562,
+          -1.1996708294499783,
+          0.9131258016265702,
+          -0.07069212614723908,
+          -0.34007312231573317,
+          -0.00937304654908555,
+          -0.12995846035352865,
+          0.10582559719288587,
+          -0.24852475112300754,
+          -0.20156820645811657,
+          1.1667061854079,
+          0.615653506730641,
+          -0.9907468946278382,
+          0.5647234364811456,
+          0.9411002064388173,
+          -2.10668566883248,
+          0.804320639326925,
+          -0.06450663089345099,
+          3.3407893076452773,
+          0.9323589321088863,
+          -0.6273148296822346,
+          -0.05121072480880029,
+          0.4517341779998014,
+          2.168772446598961,
+          0.25654445472838905,
+          0.8522376759776329,
+          -0.562798933077983,
+          1.0814714564927772,
+          1.9041771951221587,
+          -0.4454517485191205,
+          -0.14933586244639274,
+          0.24038398939690286,
+          0.5301298435441368,
+          -0.9694319863911527,
+          0.8083978499491491,
+          1.0744866797821984,
+          -0.03922185856756899,
+          2.1395075053639863,
+          2.633368905646973,
+          -0.0034101107309429946,
+          0.6831294167688722,
+          2.4287890897115716,
+          -0.27593897897625075,
+          1.0740055143024947,
+          -0.5563127584593315,
+          -0.5184226239637484,
+          1.445823903110744,
+          -0.8763867366271976,
+          -1.0286222872544633,
+          0.5437904272866876,
+          -0.43626791798649256,
+          -0.05833362872311576,
+          1.413866050929756,
+          -0.18551164650875895,
+          1.3003240355787122,
+          1.6967601673183803,
+          1.8957183490738327,
+          0.598922989528843,
+          3.1486606844013347,
+          0.9687193697217712,
+          1.202969719237998,
+          1.1386552070654907,
+          2.2759818887071956,
+          1.1660315108168235,
+          0.43372484084407037,
+          0.4837851584641417,
+          1.5928537103170664,
+          0.7423505029487514,
+          0.7254420654975652,
+          1.3385885083470854,
+          1.4146397159281714,
+          1.5699898308363553,
+          1.3258074304407144,
+          1.2778968062984557,
+          1.1992883880045289,
+          0.7979100781487347,
+          0.5490624919183205,
+          2.0998840826839906,
+          1.3588997989924192,
+          2.119957337005105,
+          1.3183163261293442,
+          0.2256731797799224,
+          0.8737242888956824,
+          1.6337904454293626,
+          0.03294720003422269,
+          2.968604054906318,
+          1.4660986380901049,
+          1.7693583839031142,
+          0.7992885453616745,
+          1.4638204452744508,
+          1.3549869526524605,
+          1.5842810043284132,
+          1.3963398053198708,
+          1.5145243609935803,
+          0.7553425786236889,
+          2.5746418446274335,
+          1.1383649260386293,
+          1.2744929378985261,
+          1.4720114585162314,
+          0.9196333186016139,
+          1.5779676486596417,
+          1.5104975307283146,
+          2.666885249594041,
+          1.605438571642501,
+          1.9197816670215821,
+          0.4517962320625567,
+          1.1973876837292554,
+          0.29590966378033356,
+          1.2217680865729883,
+          1.9457723160041653,
+          0.7841996973021353,
+          2.8431651209812454,
+          0.9350254983045139,
+          0.7309432399373754,
+          1.4326075227028499,
+          1.332771172503239,
+          0.7645904241194176,
+          0.7866263639259441,
+          1.1061298811020701,
+          2.883735450256576,
+          1.295729949177939,
+          1.3693636146589052,
+          1.8043826838573525,
+          1.5799877176234398,
+          2.4814689589600043,
+          0.8565617011089295,
+          0.6476034402026456,
+          2.357926631306776,
+          0.4529062683767021,
+          1.5430689024530824,
+          1.922867673793633,
+          1.2270180142386866,
+          1.2391396340338952,
+          0.8176411468130399,
+          0.5982379291639031,
+          1.0902786664848945,
+          1.4218868393689963,
+          2.497237332644425,
+          0.9005077578882499,
+          2.053857745673254,
+          0.2022514523686182,
+          1.487459130442403,
+          0.5781711988477685,
+          2.077346804629006,
+          0.89597641490709,
+          2.3588417111219506,
+          1.198154966030585,
+          1.9580669549066223,
+          3.2283715586995783,
+          0.8098153325508526,
+          0.5870542806821596,
+          0.4892450849115221,
+          1.7516848246230636,
+          0.869524715490956,
+          0.9040071867000653,
+          0.3979584607088732,
+          1.136620221484098,
+          1.9127847297863307,
+          0.5559237239919634,
+          1.7967075792504084,
+          1.8749095586338054,
+          2.629325027986153,
+          1.0373789071501778,
+          1.7790373649213187,
+          0.651606643587668,
+          1.5878213298961557,
+          1.266408345246858,
+          0.3378450390287254,
+          0.40323775014319363,
+          3.1590834803544174,
+          0.4709743818510407,
+          0.10322088632095994,
+          1.1587629776430575,
+          0.9293055852166905,
+          1.3327139042288154,
+          0.20768271906870817,
+          0.4654913313535306,
+          0.38258734809520245,
+          0.5160387472712767,
+          0.21668725028804314,
+          0.9071007915026352,
+          0.9169252352134493,
+          0.25325169323082797,
+          0.7310436895478581,
+          0.8381202935942111,
+          1.4798202263567364,
+          2.8943071594370906,
+          1.0800032917076572,
+          1.057183660415859,
+          0.5633926675955107,
+          1.0034897480130227,
+          1.4113214351485222,
+          0.32522443256044564,
+          1.2349314888188254,
+          0.7640707178415683,
+          0.1564881794959414,
+          1.6609395295078668,
+          0.7857096351335255,
+          0.9421588281151446,
+          0.7961256930702022,
+          0.07553740434494738,
+          0.2977335467757859,
+          1.5840325749593114,
+          2.076620329461697,
+          2.2395005319323764,
+          0.35542805196578786,
+          2.0584879623392416,
+          0.7339702209395389,
+          0.3003258701007755,
+          1.8885039640136156,
+          1.0397073324160633,
+          2.2712330701205676,
+          0.9296194677319709,
+          0.640695584818886,
+          2.954402154839067,
+          0.5988950507785678,
+          1.890263692597847,
+          2.897214701193814,
+          1.8993140798926231,
+          2.2198351230727917,
+          0.32186019262903165,
+          1.154472810905854,
+          0.2019015205989998,
+          0.39814756443792554,
+          0.20539134783380808,
+          1.3962688935559988,
+          1.6661404928909023,
+          0.894797212823737,
+          0.11323883739222385,
+          0.19291956674585709,
+          1.3612021389012452,
+          1.2961396922140005,
+          1.0712143901050946,
+          0.863418592722927,
+          0.3271500904074358,
+          1.5256429463996533,
+          1.0241004372629696,
+          0.47277401914628625,
+          2.099355515856809,
+          0.8380457464904838,
+          1.1800789062153467,
+          1.1812586481043135,
+          0.10424966657015455,
+          2.0484964489515933,
+          1.4994397070314531,
+          0.9625323342285171,
+          1.7697063770705193,
+          1.309577067409475,
+          2.2760209114718837,
+          0.9259841210784917,
+          0.16185847077098503,
+          2.3001976277308964,
+          0.9324574818809002,
+          1.3545576884183448,
+          0.157252625090343,
+          0.13989353495862134,
+          1.2176077822066453,
+          0.6736980672262405,
+          1.2709501704999167,
+          2.0451131350770293,
+          0.08046000271109455,
+          1.1857572346073992,
+          1.3945169718559098,
+          0.9434249029838158,
+          0.6391000232107604,
+          2.095662389971877,
+          1.0848916645688569,
+          1.6788238743380148,
+          1.821778154436726,
+          0.22901367187244448,
+          1.3502681013294369,
+          1.6312236741202912,
+          1.4953819999909872,
+          1.5718325026195452,
+          2.019534565911017,
+          1.810230927487145,
+          0.5057027061529257,
+          0.11854127967754657,
+          0.9660595497104972,
+          1.4844870006076278,
+          1.7499177591885422,
+          1.2688812272016565,
+          1.767953432676305,
+          0.73649221224525,
+          0.2033912303352864,
+          0.7896466178402134,
+          1.01982606164903,
+          0.38982005233006745,
+          1.217370587122499,
+          2.2806047556176363,
+          0.6566346869080748,
+          0.19058990142804944,
+          0.5316023236755043,
+          0.21198615477172766,
+          1.3804684426246663,
+          0.602859660686957,
+          0.48747016099623963,
+          0.7677521464174369,
+          3.078772529851833,
+          0.4200338133055277,
+          2.086650255409011,
+          0.5684734047694302,
+          0.837920688368319,
+          0.5932926928279947,
+          0.653496113487506,
+          0.93862577604706,
+          0.8736368390317155,
+          1.0044103187052498,
+          0.2554536000808977,
+          1.7971095891527646,
+          0.4920757678435901,
+          1.1406181430751283,
+          2.104231939441676,
+          0.841483915071479,
+          0.5198654646026866,
+          0.003572201630959726,
+          2.1064503914677646,
+          0.04602241170434063,
+          1.362569597619961,
+          1.1083236973809074,
+          1.0207114421305687,
+          1.4085667884216342,
+          0.13349370319814347,
+          2.039558579988503,
+          1.5407426065080894,
+          1.0206860768718604,
+          1.4051772744995132,
+          1.1210686642311565,
+          1.5804132430702351,
+          1.2583114978321592,
+          1.1638856179143713,
+          1.5159394802910404,
+          1.1409404747835528,
+          1.3563005651784452,
+          0.3159733961148139,
+          2.8393723804111373,
+          2.851131003598687,
+          1.5089857143115197,
+          1.932045147423389,
+          0.7926645653581118,
+          1.3827480661289837,
+          2.271972157025319,
+          0.3237123894007582,
+          2.7682981461059653,
+          1.6796773911358809,
+          1.9002691363984088,
+          0.8222845699450319,
+          3.184032044996887,
+          0.9036926585098737,
+          1.4870987127685433,
+          0.4045500790749931,
+          1.9258378980878366,
+          1.7965050135327063,
+          1.9471403211321885,
+          1.8534882554284944,
+          1.0387124825379819,
+          1.5868595078324885,
+          1.7991445669222972,
+          0.7278535192557736,
+          0.22418532130881064,
+          1.1782047763215187,
+          0.6957361601049892,
+          1.4125820044229167,
+          0.11973571836176955,
+          1.435709883569574,
+          1.3351829636609394,
+          1.8660439927517807,
+          0.9622654500484948,
+          0.3131365247356166,
+          1.687669627805151,
+          1.6703660713973432,
+          1.5015992554093531,
+          0.7255664147852252,
+          0.9508720989857978,
+          0.3102661863733861,
+          0.16359945533542464,
+          0.3306064797732725,
+          0.8212945907679009,
+          1.180258460685322,
+          0.7038713188334231,
+          1.2818415799931442,
+          0.22296986029702737,
+          2.294180542388329,
+          1.6201346013029503,
+          0.33875316948631273,
+          1.6378297291867767,
+          1.1544502095245828,
+          2.0836246217725427,
+          1.6628804757623192,
+          0.31939081161068084,
+          1.4804904840290338,
+          2.6569635712851287,
+          2.0737463451743574,
+          1.1808060842652552,
+          1.1962053121855745,
+          1.9589267781000417,
+          1.2733755797722466,
+          0.4999411499304768,
+          0.891489452907966,
+          0.8673174459080715,
+          1.7168199908478883,
+          0.898287836200658,
+          2.031239388489508,
+          2.0270381703951386,
+          0.33506728560593646,
+          1.5477978939949169,
+          0.9701897320294914,
+          0.4793601161487304,
+          2.7886648129852505,
+          0.9313436661439572,
+          0.6602348932230873,
+          0.5640784901272948,
+          0.15867467396074753,
+          1.928545534526577,
+          0.3799198050899303,
+          0.9334170479976301,
+          0.7904920109143369,
+          0.4983694916584379,
+          0.6680737980277804,
+          0.94991088695337,
+          1.681977529413552,
+          1.4752379999476355,
+          1.3920193728261712,
+          1.7971187521411118,
+          2.510390847032591,
+          0.47194681710262965,
+          1.2663508535831938,
+          1.1201404917353341,
+          1.999076476224026,
+          0.35393905319815566,
+          1.404017066443419,
+          1.1085404257676916,
+          0.9653619661801854,
+          1.0224096458212695,
+          0.052981746354837655,
+          0.7937628352636321,
+          1.0424830391560977,
+          1.729706721751615,
+          1.0978878990772094,
+          1.158271132742765,
+          1.7414713903057264,
+          0.6750728923706696,
+          1.5785168498269135,
+          0.4414917154112815,
+          1.9553090563784805,
+          1.0685078336816873,
+          1.1858237919537125,
+          1.325986807640032,
+          1.7634978723096542,
+          1.5702289733683195,
+          1.508580676319645,
+          1.1992935168464345,
+          0.8609351342530106,
+          0.6225703722339238,
+          1.5192257252468202,
+          1.0975433064392879,
+          0.6899020687432347,
+          0.2387221716720549,
+          0.5658864401925082,
+          2.058740906317713,
+          1.5073796459729147,
+          1.8340261418679455,
+          0.8205994154551312,
+          1.4759122380315004,
+          2.0084839150148794,
+          0.8807589358372688,
+          2.4763528513577504,
+          1.9382805115522195,
+          1.039564216079712,
+          0.6648196564030449,
+          1.630275319269034,
+          1.4786135706687349,
+          0.32705107850446846,
+          0.777749605168768,
+          1.5603948974284207,
+          1.221337424303208,
+          1.2722234644738797,
+          1.6062480663567253,
+          0.9939211412467404,
+          0.04437248052512577,
+          0.1790532292958419,
+          0.5244097308095894,
+          1.2526595499160575,
+          0.43929845906710907,
+          2.110539387032853,
+          1.44890252154006,
+          1.2765331960901265,
+          1.5012902137379829,
+          1.1840444976988347,
+          1.7926248689425939,
+          1.8571359784454047,
+          1.0952903192283179,
+          0.7303769472826078,
+          1.9145202456091541,
+          0.3550519155307478,
+          0.7509823303347614,
+          1.7406823523192583,
+          2.3506061179544333,
+          0.9759776519716507,
+          1.7962365286653283,
+          1.6402023420959342,
+          2.16575807660511,
+          3.813102090033156,
+          1.1320367518321004,
+          1.7913633807587495,
+          0.3011326804816489,
+          1.2640130427150442,
+          1.982845180487773,
+          2.797682857518981,
+          0.1265455256373147,
+          1.7724726648295852,
+          0.23167227073194552,
+          0.8265887751272615,
+          2.1725338683002597,
+          0.2610652367337106,
+          0.9606462133460835,
+          0.5301518431042465,
+          1.9337369266120277,
+          1.6020735963190273,
+          0.6398970785513656,
+          0.7070144993245351,
+          1.1762286107603066,
+          1.2330006781230924,
+          0.14617785931463134,
+          2.8252034180294725,
+          0.5290016180007363,
+          1.1306142925105107,
+          1.0183869806691386,
+          0.14753425812541354,
+          0.04876282737571813,
+          2.045206098164245,
+          1.620747472278317
          ],
          "y": [
-          9.63317850544642,
-          -10.556162125473689,
-          -9.622177777072435,
-          9.927024938271693,
-          8.405489243078366,
-          9.949076006228582,
-          8.451672757760816,
-          9.19624988247983,
-          9.541211213339725,
-          9.476498665117385,
-          9.605577071826925,
-          7.041375894076811,
-          7.622806099756979,
-          10.302464934690935,
-          10.500982928115175,
-          -10.964520526110078,
-          11.497817666016843,
-          8.14335337936172,
-          8.54185505786488,
-          10.046909718415161,
-          12.833977912543844,
-          11.06834967749632,
-          7.4006472972205435,
-          -10.712899401310654,
-          10.215777113696202,
-          -12.386438812557222,
-          10.842567436831224,
-          12.024010009225801,
-          8.967688057165201,
-          9.80996163212782,
-          11.052218708351706,
-          9.396663924301523,
-          -11.00908161437414,
-          -8.46579443096974,
-          -9.207369884191994,
-          9.255971317807857,
-          10.73265203723898,
-          -11.429699751855182,
-          10.176818208897245,
-          10.353555669268097,
-          7.505556581014858,
-          9.882382614328376,
-          -9.475758188296322,
-          10.001706736991888,
-          -13.075237511273743,
-          -11.922635658557974,
-          -9.997158041012227,
-          -9.599355630765912,
-          9.428443207096437,
-          -9.529251496788362,
-          8.713823450452821,
-          11.290616387131193,
-          8.972664087749406,
-          10.60081375481683,
-          -11.367567264054754,
-          11.16199409577587,
-          9.007916212597515,
-          10.342591320150435,
-          -11.175880537339758,
-          10.591482397901661,
-          9.926626805888047,
-          9.221096399005548,
-          9.58552492771547,
-          9.752874986154682,
-          10.848205366775858,
-          10.45470257433629,
-          -9.869693526377363,
-          7.742145259985055,
-          -9.594664748523082,
-          10.545962587129779,
-          8.412228340127868,
-          8.855698056533495,
-          9.783435446111676,
-          9.804663988739387,
-          11.861946552786417,
-          9.290863365349125,
-          9.555769313711261,
-          11.045991143391229,
-          -10.997162043292342,
-          10.360023429765274,
-          -10.591337944503284,
-          -9.10277953816749,
-          -8.05704555111394,
-          10.52204147499312,
-          13.043140531399427,
-          -8.601035253163168,
-          9.388847371227051,
-          -10.483956507282796,
-          11.974438754864988,
-          9.097878688237971,
-          11.53380014438077,
-          10.102635075645924,
-          10.975013256253341,
-          7.817567027977182,
-          11.555768916456584,
-          11.501913728846198,
-          9.89096252858429,
-          -9.174924516006497,
-          10.753367346808554,
-          11.719593622095527,
-          9.633504409293334,
-          8.794270641229577,
-          10.765129914027277,
-          9.462770072663556,
-          9.879964141036757,
-          -9.52870060091302,
-          9.778111891100364,
-          10.07804729408939,
-          9.872238230431352,
-          10.045338775720946,
-          9.871519558964076,
-          9.479811550666332,
-          10.416756219436726,
-          10.249324996284932,
-          -11.319534737398548,
-          10.731701191560756,
-          -9.230232642089987,
-          11.186258899093858,
-          10.532563140900514,
-          9.23646528552966,
-          7.950433677709978,
-          10.44335188029104,
-          -10.225197001543627,
-          -9.924793370226109,
-          11.403616496252951,
-          8.709157092397996,
-          -9.909152965119974,
-          -10.855839168402055,
-          8.789314996859869,
-          10.948395629712588,
-          10.70520414145997,
-          9.842049819553464,
-          8.007096308651464,
-          9.7134558921844,
-          10.164770297706756,
-          10.406359014007483,
-          10.147991814163925,
-          8.82670327049993,
-          -7.073105301474896,
-          10.836736502252169,
-          9.030650067696596,
-          -9.693300936513475,
-          9.774088661741134,
-          -11.79985412699453,
-          10.62455685933947,
-          -9.798355513826133,
-          9.302694688985609,
-          8.105256398523252,
-          10.209168781111286,
-          10.416618155590614,
-          8.524755250783233,
-          10.66958178948419,
-          9.401602034993417,
-          -9.994275432887237,
-          9.686717360098585,
-          9.527009554184728,
-          9.748865860154977,
-          8.791922452675584,
-          9.119189832282688,
-          10.81998850105888,
-          10.67551647197442,
-          10.597641927726896,
-          10.0642935972275,
-          10.274866419303983,
-          9.249593158482524,
-          10.155621815048198,
-          10.18491572692505,
-          11.396795010257883,
-          10.422993092071135,
-          9.000426648355079,
-          10.604954625912962,
-          10.37916793745587,
-          7.240691747281561,
-          9.185143789933834,
-          10.175006026792056,
-          10.1300835469885,
-          6.768136766357486,
-          8.893242190804164,
-          9.291974098894547,
-          9.300088291818783,
-          -10.190201686014227,
-          10.417318262390724,
-          10.045684989297664,
-          10.883647681278077,
-          11.585211667538605,
-          10.798015941594022,
-          -12.121266101419325,
-          9.67673516633016,
-          10.889845155643139,
-          10.750256157936718,
-          10.491769942725217,
-          12.03452329755465,
-          10.281502835726586,
-          10.507717503986745,
-          10.354061282551564,
-          11.124273395396305,
-          9.75070632420516,
-          6.124846722304206,
-          9.396042207281319,
-          10.501466237260171,
-          10.1083298772278,
-          10.274495033110238,
-          10.881249657158559,
-          10.044895648660498,
-          -8.52673491685276,
-          9.740150035214791,
-          8.804681163502387,
-          9.493354544965985,
-          9.249869438998658,
-          10.986857666689792,
-          -9.951495896796976,
-          9.586486467513005,
-          -9.797966045682562,
-          -11.837016493849791,
-          10.130772293973738,
-          -11.763480539381174,
-          9.208455153968382,
-          10.737935669827705,
-          9.984597719665846,
-          10.957065495762034,
-          12.036338271548884,
-          7.3168977805989135,
-          10.486724373016113,
-          9.6799170965786,
-          -12.052582724814188,
-          -10.495449699656831,
-          10.31831967890088,
-          10.533233905689533,
-          -10.08660216968104,
-          10.886273817577791,
-          10.100627228837247,
-          9.648359934753131,
-          9.245244530429582,
-          -9.16055792906588,
-          10.384075600121594,
-          -11.100175323745123,
-          12.301674760570718,
-          11.088766193522009,
-          -8.946810919048374,
-          9.741901575795294,
-          8.7207080553599,
-          9.976519543988738,
-          9.616090499531369,
-          10.516135809199147,
-          10.140563744310755,
-          9.664054958374896,
-          9.937635109751405,
-          7.720131102454401,
-          12.90608231365346,
-          -9.82147015297317,
-          9.58956700423797,
-          8.87473715406734,
-          8.853445040125246,
-          10.430684791123545,
-          10.446815237339925,
-          -7.721196620091691,
-          10.774645575355713,
-          9.686769938140635,
-          9.267026888478933,
-          9.124213096759595,
-          8.267903927786927,
-          -10.014477392208567,
-          -10.592849489787763,
-          11.039025767269546,
-          9.25021297634684,
-          8.059852128869615,
-          9.47172979471528,
-          -10.212693537683386,
-          10.595130649430267,
-          9.277707279964929,
-          10.82031822670445,
-          -11.864939857984492,
-          7.811246123746665,
-          9.18063042896608,
-          9.559187846756595,
-          11.039752630046026,
-          10.732998496230856,
-          -10.36922937870835,
-          6.773994529938008,
-          7.940155700223446,
-          -10.10979290941918,
-          -9.231369530910385,
-          11.86864759467245,
-          10.355927340488774,
-          -10.870132338551343,
-          10.022064858040698,
-          -9.236875513737312,
-          12.795767507488568,
-          7.92158855635204,
-          -10.70977646862196,
-          11.092626077462073,
-          11.109192293246458,
-          9.386312327828536,
-          -9.743837874850092,
-          10.680848629224275,
-          -10.398188469792792,
-          -10.8836138600988,
-          9.184502993228227,
-          9.623667017668062,
-          9.789902983562964,
-          11.348518137468428,
-          9.556941222551393,
-          10.577692576594023,
-          10.143054683766959,
-          11.902854921024883,
-          10.891668358609078,
-          10.858041955441152,
-          -10.254477540434582,
-          9.779129539116747,
-          -12.047521801457284,
-          -11.285762480657393,
-          11.08532340954773,
-          11.791501587774947,
-          10.330415140722545,
-          -8.000303183890507,
-          7.8142665761816295,
-          10.272510411561333,
-          -9.228593040338152,
-          13.621763604528514,
-          10.281282592474822,
-          9.842210989970443,
-          -8.897555009223034,
-          -11.661665093376133,
-          -10.574401322735294,
-          -9.088241425257205,
-          9.41464361737126,
-          7.826884169530347,
-          -8.862109238263114,
-          9.302847862547333,
-          9.778804946972029,
-          10.955280714661157,
-          10.41250324565489,
-          9.120758846219422,
-          9.949381693709489,
-          9.86586007798676,
-          10.188403876674986,
-          -10.23060570218654,
-          10.717200550619651,
-          9.992598836283301,
-          -9.869841643232382,
-          11.285118112363426,
-          11.048574218807353,
-          12.096493252172099,
-          10.196237776369447,
-          8.658544150059363,
-          -9.707689606345108,
-          9.16727243526311,
-          12.949799131015864,
-          -11.862948042840443,
-          10.406712441641263,
-          10.161281141236726,
-          11.755086780095793,
-          11.572180101410188,
-          11.587373420218857,
-          9.985973776692054,
-          10.215518343364518,
-          9.760255124921654,
-          -10.226143411235611,
-          8.306937822555811,
-          10.501769098814833,
-          12.17369350174728,
-          10.346505958057358,
-          9.73732449206884,
-          8.788819933776981,
-          8.75945010807412,
-          8.639262858757014,
-          11.512828004116534,
-          9.512348012566573,
-          9.639981227318307,
-          9.737722273904987,
-          9.990781939813443,
-          10.673481208907384,
-          10.525158992776834,
-          9.65856548718563,
-          10.997739396613602,
-          -10.079141063059755,
-          10.697811435614195,
-          6.462998675241988,
-          9.486557767963822,
-          9.838513970477297,
-          7.096132844478664,
-          10.551119016871045,
-          11.856087383381197,
-          11.353963974848392,
-          10.209156491780545,
-          -10.919091190121009,
-          10.038044874281125,
-          8.506500148687088,
-          10.339284774599294,
-          9.789222007493663,
-          10.014914382962488,
-          8.556897912243647,
-          -9.590097749961814,
-          9.766486877907868,
-          -9.245870800386362,
-          -10.339624309092356,
-          11.657428096857155,
-          9.86470550686006,
-          8.319828205825596,
-          -9.337439361557903,
-          10.09013110644664,
-          -9.522436715760602,
-          9.311311930373563,
-          8.222206191777158,
-          -9.847857058478688,
-          9.74491536087782,
-          13.286479836224824,
-          -10.927524027566367,
-          12.89294741833726,
-          9.612559730433823,
-          10.064588885696045,
-          9.939471953495639,
-          10.158814263149432,
-          9.082227928195232,
-          9.52005626316353,
-          8.656916011553234,
-          9.87054113129236,
-          9.941800788304313,
-          10.566794803256125,
-          8.485734078796249,
-          8.218851077080863,
-          9.687431259768436,
-          10.111747518510445,
-          10.637245023284528,
-          10.399489028921568,
-          10.490204426193834,
-          -10.32104984766549,
-          9.13925088574663,
-          9.819092533692782,
-          11.631329290364246,
-          7.385727626217857,
-          12.262743805786235,
-          11.030901444022176,
-          9.430986518710709,
-          9.303793737956369,
-          -9.409609242964573,
-          10.499564551569772,
-          9.825194431704354,
-          -7.935280831782403,
-          -8.71144370095907,
-          10.364350756901372,
-          8.05766097170241,
-          8.300397428744173,
-          10.497029662600385,
-          10.535491608255825,
-          7.576769304333519,
-          9.858141320654305,
-          9.525411020385146,
-          10.06712807512838,
-          -11.423172799997511,
-          10.843772139209728,
-          8.184923856570386,
-          9.411755683388478,
-          10.66460441176725,
-          9.764191422726409,
-          11.022544610208543,
-          12.378640746094,
-          -10.210856566444292,
-          10.055070737555434,
-          11.231522707154555,
-          11.116523394051883,
-          9.345272992296016,
-          12.126823933524939,
-          9.591617362898342,
-          6.699924723098333,
-          -9.540229296730088,
-          8.560959498322212,
-          9.655901923081768,
-          8.69950616145898,
-          13.239488174724167,
-          10.680495272243075,
-          8.658314606116422,
-          10.250526206352276,
-          9.362708777336731,
-          8.07502444335304,
-          8.432178694064685,
-          -9.600272052803096,
-          10.634951805679044,
-          10.099671572106713,
-          11.69910423684796,
-          10.698846885443992,
-          9.637403194942562,
-          12.044834033811314,
-          9.53866588505566,
-          7.34805563353267,
-          9.507239765775577,
-          10.614955846799297,
-          9.810735261986766,
-          10.98074920655182,
-          -10.412451608602023,
-          10.567665035774946,
-          8.692084764069751,
-          11.817266553441035,
-          11.252793990309945,
-          9.711249164694086,
-          11.379329472028353,
-          10.82546168070045,
-          10.923317214612418,
-          -11.289922183144409,
-          10.543126420272428,
-          10.108396086016882,
-          10.01004053830217,
-          10.040791483384911,
-          10.332050590109342,
-          11.396075170431848,
-          12.274521468714997,
-          -9.944001056985773,
-          8.367606886799319,
-          10.822873184115728,
-          -12.118898397719189,
-          9.017665346251412,
-          9.253353497044266,
-          8.630812753695626,
-          10.786161585506326,
-          10.248487959371685,
-          -9.15491646781006,
-          9.721221748397657,
-          10.1622584108118,
-          10.856452146905688,
-          10.697962160532612,
-          8.731972068819655,
-          10.228986093656088,
-          9.150473164306439,
-          -10.409003314641048,
-          10.379770712111586,
-          10.554130347096438,
-          11.535983504425001,
-          -11.44215384552364,
-          -8.264442660757394,
-          -10.849523744625245,
-          -9.994580105233927,
-          8.991461973701169,
-          10.957685014275231,
-          9.644561850808621,
-          11.143394976486265,
-          9.335885348319257,
-          9.612724521098274,
-          11.783443347269035,
-          11.239394091067773,
-          12.720086963490917,
-          9.046555223027685,
-          9.057115825401192,
-          -8.71731145242649,
-          10.399753653499014,
-          8.679514699776268,
-          11.43802826524082,
-          12.446710402707492,
-          9.002342327798665,
-          -9.394299784613654,
-          7.375067528702652,
-          -11.719010949149371,
-          10.176989006962476,
-          10.223605915266598,
-          -9.771765497850328,
-          -9.647540882857118,
-          10.161168086159984,
-          10.708074100351887,
-          8.854066137684248,
-          10.687526551709663,
-          7.9495272675047435,
-          9.838714338190446,
-          10.434373256157912,
-          9.615285136160265,
-          11.689851061324237,
-          10.101882317431764,
-          8.370915696339752,
-          10.444548967731144,
-          -10.398292629599535,
-          10.990521400747406,
-          9.828365970499455,
-          -9.724191082887867,
-          10.109466885066368,
-          10.200516565630545,
-          -10.408121896614052,
-          -10.770887989478515,
-          -8.278807227669615,
-          -10.141801935207535,
-          8.130952036469141,
-          10.25620379462664,
-          10.92741543974,
-          10.305635503868604,
-          9.34323610117374,
-          10.202493212764713,
-          10.365974543692053,
-          9.211424147468602,
-          9.392668022349959,
-          8.939126463171027,
-          -9.227373029501132,
-          9.850743894590057,
-          9.329378967288026,
-          -9.590336445825237,
-          -11.609705287567209,
-          9.807258495935795,
-          11.847081663153507,
-          -11.22991345618473,
-          9.196030549011871,
-          10.657909614565146,
-          -10.716907833996979,
-          10.30634321736745,
-          11.580508238750149,
-          9.759448766043388,
-          8.442198433302416,
-          11.757424500420578,
-          -11.216554469192355,
-          11.847637925117036,
-          9.93174489817784,
-          11.411576071134494,
-          9.5535427638905,
-          9.151682338062205,
-          10.575442542280257,
-          8.916325210163254,
-          9.709394270921988,
-          9.333613367292603,
-          9.163888484696532,
-          10.31577062760802,
-          10.997623605550837,
-          10.458530058828257,
-          9.633316795824681,
-          9.09047520056669,
-          12.438554264855174,
-          9.22252355130522,
-          9.490207947328893,
-          10.208961589415512,
-          9.861804174833596,
-          8.926369830104655,
-          -10.549528516075902,
-          -8.11626060038332,
-          10.473922281889031,
-          9.694921890378017,
-          10.642990628364075,
-          8.936402884550684,
-          12.390102960884619,
-          10.23988415608216,
-          8.928017427364496,
-          9.73668833617783,
-          10.552265536343493,
-          10.500440636116053,
-          9.125640804117293,
-          9.29422642136515,
-          -9.927798562849075,
-          10.012294736078454,
-          7.5086130302247245,
-          10.101586841838055,
-          9.923123609354953,
-          8.588653202373541,
-          9.384254088911462,
-          11.893718986219566,
-          -10.130041879901158,
-          11.422050894665926,
-          -11.282004594164466,
-          -9.595223263704165,
-          11.017794577674014,
-          10.121910815594823,
-          11.408571097591443,
-          11.41699388854534,
-          13.082976460718033,
-          7.939011482122247,
-          8.985925475374499,
-          10.242632266488949,
-          -10.528077210284021,
-          9.52581856219472,
-          8.984992567877633,
-          9.167677038306405,
-          8.729775555840751,
-          -10.361724344230609,
-          -11.602251482777312
+          -0.10376138228781262,
+          1.421893698403804,
+          0.4109824571357519,
+          -1.425355240443866,
+          -0.41533845314288065,
+          0.9204763394688071,
+          0.23714966717116348,
+          0.2118311572559528,
+          -1.4648723526630714,
+          -0.13942026342392178,
+          0.8737953834324248,
+          -1.5699887522822547,
+          -1.816864175245568,
+          0.2111214508621877,
+          -0.029093547221610172,
+          -0.9758399952580434,
+          0.9967528313045371,
+          0.0392508359068835,
+          0.6152800821121756,
+          0.7571474607942796,
+          1.030861787436654,
+          -0.14250100383075726,
+          -0.39357434710168804,
+          -1.5771088242821474,
+          1.0668386773812006,
+          -2.5599932301224806,
+          0.8676066498724273,
+          0.6544868141839717,
+          0.7257786192366762,
+          0.28738152926312255,
+          0.12533479999141472,
+          -0.34336986735564534,
+          0.3648221395281388,
+          0.961845259406152,
+          -1.31733493901182,
+          -1.0533771194969175,
+          0.6034897954939364,
+          0.6901288349172088,
+          -0.48385532050192814,
+          -1.7331287696686297,
+          -0.8835576324889948,
+          -0.6749387138375237,
+          -1.2728227103728862,
+          0.18811509268898008,
+          0.17622795826076643,
+          0.5157999161097457,
+          0.02088927403087637,
+          0.34585142418476833,
+          0.31840433484690966,
+          -2.159294162401622,
+          -2.163364043775254,
+          -2.411857047057226,
+          -2.1252483021351747,
+          0.3702089130686159,
+          -1.9615185724440807,
+          0.12518738588470368,
+          0.43778616833884065,
+          0.6428855737067971,
+          -1.8171418199117095,
+          0.9963350748952338,
+          -0.8490969853829794,
+          -1.4737895166355222,
+          -2.6823435828198745,
+          -0.9620985626745713,
+          0.31576232268435356,
+          0.9333370908607279,
+          0.3411753210334241,
+          0.6955922536751762,
+          0.16927193327535317,
+          0.7181052791965337,
+          0.30745841015924547,
+          -0.6091651784173068,
+          -1.1133939699559874,
+          0.6154851126268848,
+          0.8036790750018612,
+          0.10483380295623745,
+          -1.0567451644782129,
+          -2.215029845465735,
+          -0.5678280387074786,
+          0.5027524687480691,
+          0.8317893746037079,
+          0.23992684394742403,
+          -0.7168547138059813,
+          0.6385753928591698,
+          0.7036310487676787,
+          -2.43082029413816,
+          -0.1962888665667759,
+          -0.18869242417992615,
+          0.49743048108682175,
+          0.2315435986849088,
+          0.18501839795691577,
+          -0.34761509509071176,
+          0.8274991130655722,
+          0.2299870788732148,
+          0.22729684496955493,
+          0.17555385290958014,
+          1.3027128769066492,
+          1.5371220008840458,
+          0.09461055051019995,
+          -1.3975636765358974,
+          -0.936244831956913,
+          0.6752140196006238,
+          0.09773825678744008,
+          -0.9706263145286782,
+          -2.2755953891123637,
+          -1.7407137068846468,
+          0.23272215028654597,
+          1.1312600044938255,
+          -1.318748767530423,
+          0.6739298359682944,
+          -3.1439792360055927,
+          0.517658644324227,
+          0.4524743836062468,
+          -1.0269085341048125,
+          -0.058574148538271364,
+          0.5048470891186916,
+          -1.8002442482484842,
+          0.2538703339655415,
+          -0.039052126068578774,
+          -1.7832443466313168,
+          -1.2806232709252359,
+          1.2817509665441569,
+          -2.1844746387479974,
+          0.45147072391033194,
+          -0.4838694271180324,
+          -0.8675037758600269,
+          -2.255446368904674,
+          0.15177345345759918,
+          -1.7076448966424156,
+          -1.6924097348913638,
+          -1.9307496451973654,
+          0.7242522605668424,
+          0.7512307566412642,
+          -2.2964603555059284,
+          0.9727173362115027,
+          -0.4836734537025422,
+          0.7879917906658831,
+          -0.28243752472492445,
+          -1.1145216132149165,
+          -0.2909855038643707,
+          -1.6671173664216798,
+          0.1842745055455357,
+          -1.5099126359518018,
+          -1.9249661679957346,
+          -0.5447621075473363,
+          0.0032898999463253364,
+          -0.01858483814755163,
+          -0.7202066527403151,
+          0.12605363377520384,
+          -2.0544650176321113,
+          -0.8590739589640621,
+          -1.5527764096210077,
+          0.7272752542349414,
+          -1.0064092227289623,
+          1.1099626738853852,
+          -0.5134849262765664,
+          -2.0599660270445055,
+          0.725728259334943,
+          0.2947347236631779,
+          -1.96757153249699,
+          -1.2631199830355662,
+          0.2452281791546831,
+          -1.940177674017886,
+          -0.41091968393421874,
+          -0.4649944608336666,
+          -1.286253780772346,
+          0.23343907112575724,
+          -1.1592717848308929,
+          -1.0987762147573428,
+          0.4833631048243223,
+          -0.6824626005182965,
+          -1.1578089961362645,
+          0.559649413528992,
+          -2.0352609227160228,
+          -0.04815633349978288,
+          0.12819812202710645,
+          -0.3892563430649415,
+          -0.1435834610878689,
+          -0.6603072665796543,
+          -0.8354639942227978,
+          -0.3398498836367809,
+          -2.0879012634362795,
+          -1.1052479363455756,
+          -0.3701165941255208,
+          -2.5959282108808557,
+          0.24692916833781897,
+          -1.2309013428948157,
+          -1.6463959080224577,
+          -0.8932432347214899,
+          -0.3607521896532597,
+          -2.1084958744737112,
+          -0.5725822194496641,
+          -0.8971934843525509,
+          -0.9599877899599123,
+          -1.6589410622953449,
+          -1.9012570052575324,
+          -1.2001434858149949,
+          -1.1163747746388444,
+          -0.01137807305486993,
+          -1.747863583495103,
+          -2.742784111118393,
+          -1.4684583487961897,
+          -1.44086006707796,
+          -0.007322169668206868,
+          -1.3041291898537875,
+          -0.32425270753540303,
+          -0.05339224675759968,
+          -2.337099461324784,
+          -0.17408146248628853,
+          -0.4073472254999406,
+          -1.3521693095530372,
+          -1.5459990626551137,
+          -0.7826980423833976,
+          -2.8237826863444773,
+          -0.6963638831138277,
+          -0.13319301885385815,
+          -0.8035202691621236,
+          -1.66475134278721,
+          -1.37966456636029,
+          -0.9570253988370033,
+          -0.13580119121817247,
+          -1.0529800276550034,
+          -1.3587450660368319,
+          -2.739167418152271,
+          -1.5913391882226846,
+          -0.6627669031902468,
+          -0.5276976196819607,
+          -1.298555941809397,
+          -2.2283974076899113,
+          -1.7411822642847716,
+          -2.7343766617429823,
+          -0.9142790340555764,
+          -0.27602882663598294,
+          -1.266630337648467,
+          -0.31189519316325,
+          -1.1720971670514873,
+          -2.1760428921150807,
+          -3.376916866156657,
+          -1.9235473262399192,
+          -1.2627795461797215,
+          -0.21610486507593651,
+          -1.3781182893262105,
+          -1.4144403347809873,
+          -0.03624307123983539,
+          -0.40605475246060097,
+          -0.057050357877444946,
+          -0.18551464982325838,
+          -1.049146239256056,
+          -2.307500619192017,
+          -1.6241585206917282,
+          -0.8014195482352946,
+          -1.5566396303583232,
+          -2.2296904423794697,
+          -1.70907186828605,
+          -2.173255159183351,
+          -1.5117496345232067,
+          -0.18945106095212616,
+          -1.3480817795746436,
+          -1.4738299204720988,
+          -2.3242949376786433,
+          -2.1803733090520407,
+          -0.8449134798842676,
+          -2.0108252368890334,
+          -2.175077470053726,
+          -2.0401829765781545,
+          -0.7141358399679618,
+          -2.1623907601871517,
+          -2.038890350097632,
+          -2.135854069013458,
+          -0.36912223862516,
+          -0.44516276377131037,
+          -1.3519696710891376,
+          -0.6351458024288741,
+          -0.8718149488120195,
+          -1.3701730357335657,
+          -1.2663934131055516,
+          -1.841308638926706,
+          -1.1097470390554809,
+          -0.3862691058112063,
+          -1.0576219724650409,
+          -0.8220154785570786,
+          -0.8183558870754118,
+          -0.7912287277888118,
+          -1.5412553640282924,
+          -1.7017114882002238,
+          -1.327966431411265,
+          -0.5635160889725406,
+          -0.493735005333626,
+          -0.8135339945307788,
+          -1.5937040529320194,
+          -0.8613553214999135,
+          -0.5492637211871415,
+          -2.1555114296925653,
+          -0.700603187723764,
+          -0.5858785454926942,
+          -1.1953243246810061,
+          -0.2864484825588144,
+          -0.7047331344229895,
+          -0.9803077308236846,
+          -1.0534391085178538,
+          -0.46938185285654266,
+          -1.2149365736123345,
+          -0.030611443357077106,
+          -2.4001835082219753,
+          -0.4471484065358535,
+          -1.2454192053546784,
+          -1.6434577477971555,
+          -1.9375849136748535,
+          -1.88625599043135,
+          -3.1379665527138147,
+          -0.03811007929184507,
+          -1.8629126225015218,
+          -0.5401245496959592,
+          -1.3092912561120644,
+          -1.6065433453298619,
+          -1.1941247547936,
+          -0.6402314524866735,
+          -1.1212137076780577,
+          -1.745275133024032,
+          -2.9027016542345487,
+          -2.2327818802784876,
+          -0.5054125932683319,
+          -2.1124265642009616,
+          -3.2040563736215018,
+          -2.2781148882292817,
+          -1.5898390808265885,
+          -0.8496564334934158,
+          -0.21349872842229778,
+          -1.0954880702612977,
+          -0.3456975972670303,
+          -0.6390111175305389,
+          -1.3274386354831622,
+          -2.7186247336296816,
+          -1.029554282959294,
+          -0.8323815725771306,
+          -0.23284142979638955,
+          -1.3746808711075795,
+          -0.6258834539077098,
+          -2.1442704624897164,
+          -0.9153965150029374,
+          -0.5894562206317857,
+          -1.8271677256247854,
+          -2.202602733427133,
+          -0.6600281388000665,
+          -2.3909180214813106,
+          -2.201063415563069,
+          -1.2552180908887696,
+          -0.9755568745256096,
+          -0.9030894202812996,
+          -0.7310850477691402,
+          -0.8299831044119246,
+          -0.7583670329265739,
+          -1.331941418229352,
+          -0.044125084173671,
+          -0.40510020481167586,
+          -1.444087936128841,
+          -0.11587616593359429,
+          -0.9031922993456862,
+          -1.1434572920887969,
+          -0.7569496915978737,
+          -2.2403821506815857,
+          -1.4244461296762503,
+          -1.6765800018186785,
+          -0.684120269335345,
+          -0.20958111973731752,
+          -0.8566489794071995,
+          -0.3900891206107011,
+          -1.6535788070062862,
+          -0.9793022028795761,
+          -0.9887118240882128,
+          -0.6356652377802856,
+          -1.1854786005763525,
+          -2.1469237603151496,
+          -0.7510596746072912,
+          -0.4976930342409459,
+          -1.8558547883542658,
+          -2.3912751580660703,
+          -0.35883732436428883,
+          -1.2010430964046324,
+          -1.2425509841364357,
+          -2.0383939509779463,
+          -0.3386194035839448,
+          -1.9549673292937813,
+          -1.9031607466233242,
+          -1.387973758133736,
+          -0.0026895432354904214,
+          -2.94629556708957,
+          -0.6662999447175182,
+          -0.2501371031685572,
+          -0.2528067293276698,
+          -2.3177630871355346,
+          -0.8694243622479598,
+          -0.06735937547231186,
+          -1.2154046687584836,
+          -1.5488007464508382,
+          -2.9102280449580182,
+          -1.4263814280068439,
+          -2.0551312551111782,
+          -2.9976002603322964,
+          -0.5103367290245024,
+          -0.48722392645551127,
+          -1.412010903585589,
+          -0.6326679610289057,
+          -0.3810611730081127,
+          -1.0241946584766035,
+          -0.9214138520095937,
+          -0.06496575920449232,
+          -0.3440867297059145,
+          -1.944806454013043,
+          -1.178365562717355,
+          -0.42820586707260855,
+          -0.7695004357701258,
+          -0.6425078845638937,
+          -0.41898721726781396,
+          -0.5104782914551084,
+          -1.6018460610966962,
+          -1.6290717168418298,
+          -1.7778073656803182,
+          -1.286154654651103,
+          -1.7343900877458576,
+          -0.8584933891431119,
+          -0.8755712685306197,
+          -1.0031362296515574,
+          -2.535904465630182,
+          -0.35562658121675994,
+          -2.3961688707890216,
+          -0.05764728722121826,
+          -1.3217434892075262,
+          -1.5229320342263954,
+          -1.588600460920741,
+          -2.0497724632163705,
+          -0.03932476866905077,
+          -0.8363620013933849,
+          -0.2063603451947934,
+          -0.4001617056233654,
+          -1.7022719313159498,
+          -0.2552980906337865,
+          -0.4324034992547142,
+          -1.1468723400290946,
+          -2.5348484456478046,
+          -0.4925582337991835,
+          -1.565809241164045,
+          -0.7309101045760225,
+          -0.4997139489548138,
+          -0.24244134194662992,
+          -2.5525776179980677,
+          -1.5538789444605108,
+          -0.7206481149196193,
+          -0.3167455392845794,
+          -1.5184886262884043,
+          -0.9771826452744138,
+          -0.9289326771135255,
+          -2.4316867166734917,
+          -1.1806120910948494,
+          -0.19385012001913904,
+          -0.7840506439283591,
+          -0.198954980952041,
+          -0.7488172272506807,
+          -1.277521861906094,
+          -0.15380689345206866,
+          -1.604240834348939,
+          -1.1290221202224289,
+          -0.8722318881097868,
+          -1.926045900823432,
+          -1.9492412599446192,
+          -0.4448042269506154,
+          -0.9857929117447574,
+          -1.7474481105441462,
+          -0.7483411118064965,
+          -1.3587668521256624,
+          -1.0688359401041552,
+          -0.13367199135303076,
+          -0.6939290381250416,
+          -0.25251065017809027,
+          -1.3934525093535823,
+          -0.5871099599779783,
+          -1.7818741313095523,
+          -1.4446795948128537,
+          -0.659817055071636,
+          -0.2455565472391874,
+          -1.599904849188865,
+          -1.0377651890858215,
+          -0.7393090322695568,
+          -2.1824580577135366,
+          -0.9903327029722444,
+          -2.3724796940196864,
+          -1.0722950076860047,
+          -1.7357051208911685,
+          -1.0556472780613386,
+          -0.9713194693790668,
+          -1.9972996478298404,
+          -0.21387985663275777,
+          -0.997772461013549,
+          -2.0474613259279666,
+          -0.8159659232155725,
+          -2.128165406562479,
+          -1.3261463232823012,
+          -0.49276153212267204,
+          -1.3034279078270044,
+          -2.9208274122083946,
+          -1.960359965392341,
+          -0.9301530167236735,
+          -1.6291921011287132,
+          -1.3731020423785048,
+          -0.010807809732368945,
+          -3.774974154493558,
+          -1.1501228811824757,
+          -2.87956616312471,
+          -2.2296867985095776,
+          -1.233516418571961,
+          -1.7700075214066038,
+          -1.4443119801872282,
+          -1.3790007779052056,
+          -1.4043838208422952,
+          -1.5423305444096345,
+          -1.4801972923940623,
+          -1.1081777264798012,
+          -1.2432401765447256,
+          -0.2957815114101031,
+          -2.405721160737782,
+          -0.20824803993845808,
+          -0.4164557521496265,
+          -1.4875382074715742,
+          -1.849166341401508,
+          -1.9141806855832306,
+          -0.10710228260780275,
+          -1.6220957620721945,
+          -1.9414125801043869,
+          -2.595707284978934,
+          -1.5821417775295705,
+          -0.5590583462964509,
+          -1.72058366510793,
+          -0.2751693907704338,
+          -0.45571489771869,
+          -1.1737256552151651,
+          -0.8746997051982629,
+          -1.3098775105194804,
+          -0.7696985187022389,
+          -1.037907508855907,
+          -0.27986046612625803,
+          -0.9569584164449789,
+          -0.8466512209689008,
+          -0.0885549611434151,
+          -1.1473097067738363,
+          -2.2737590557393688,
+          -0.39137643017957724,
+          -1.2528054720480417,
+          -1.2919087529190774,
+          -0.5711148776107142,
+          -1.797241741219576,
+          -2.525467019449647,
+          -0.5932958295867747,
+          -1.5420205679439447,
+          -1.2431435053511137,
+          -2.1976520597737785,
+          -1.0416487285311664,
+          -2.2539310890752295,
+          -0.509801705843127,
+          -1.7517048478227832,
+          -2.610567202590776,
+          -1.655676494786761,
+          -1.0555610645499502,
+          -0.33506743843224507,
+          -0.017114981671968343,
+          -1.9971179317177032,
+          -1.037110324440055,
+          -1.4604806308605707,
+          -1.7679830046658473,
+          -0.6188084444980284,
+          -0.3668436096982811,
+          -0.7295551055861711,
+          -0.47459082184593815,
+          -1.5538700051935783,
+          -1.3568710352907858,
+          -2.250339648846963,
+          -1.8853375645141708,
+          -2.686189734497937,
+          -2.3531935722511825,
+          -1.5257883848096578,
+          -0.8880279104483262,
+          -3.6112525158620077,
+          -1.4950931587366656,
+          -0.8169690471754467,
+          -1.6573085485846906,
+          -0.799408856456868,
+          -0.620302872086353,
+          -1.113321845293905,
+          -3.2292462080202133,
+          -1.9012370599089103,
+          -1.7403984661679281,
+          -1.3603122253550375,
+          -1.2039143367022693,
+          -1.9392191699514854,
+          -1.72345375165473,
+          -0.3967864289988292,
+          -1.492404465621957,
+          -1.151509283772687,
+          -1.2187884371996192,
+          -1.0106004480710868,
+          -0.6935290915286301,
+          -1.5462958408498182,
+          -1.7380284411250562,
+          -1.7174375494512,
+          -1.6125180257251635,
+          -1.4488582511973405,
+          -1.475564240027044,
+          -1.6558311743849787,
+          -1.0158706310675223,
+          -0.9611978856928728,
+          -2.0420020699337518,
+          -0.7036454566055765,
+          -1.2964006163603699,
+          -0.3623774804514118,
+          -2.6203137966638623,
+          -1.0759997884336396,
+          -0.5656290873947851,
+          -1.791285255635318,
+          -1.1291034916715696,
+          -1.59017154551892,
+          -2.049728400056119,
+          -0.26731445558626576,
+          -0.7242317028580243,
+          -0.8773292598042741,
+          -1.1350265434643718,
+          -0.7184164358181462,
+          -1.2780633204678304,
+          -0.7120236688835426,
+          -0.5446829368659125,
+          -2.44333876296446,
+          -1.4184999992698257,
+          -1.777112188376051,
+          -0.6278109324476076,
+          -1.6987875381737103,
+          -1.4009733022816044,
+          -0.6397452856856543,
+          -0.8564921369300686,
+          -0.49903170253145335,
+          -1.3511878288621184,
+          -1.330934153260698,
+          -1.4230778873065684,
+          -1.5966842088931639,
+          -0.8298341981022647,
+          -1.6204403778181047,
+          -1.6973451183620516,
+          -1.3244247889236669,
+          -1.225084146562358,
+          -0.23679000053419896,
+          -1.2078313796419724,
+          -1.972741579769198,
+          -0.8046621023808332,
+          -1.5419898263116782,
+          -1.6003041994416427,
+          -2.23249871698848,
+          -0.907782232537952,
+          -2.7217091236663973,
+          -0.6427136432716487,
+          -0.34089760952618464,
+          -2.260904229536172,
+          -1.7251435675559241,
+          -1.2115100350086223,
+          -0.1320747025397433,
+          -0.2640631954215801,
+          -2.2231229287765384,
+          -0.35317869775523614,
+          -0.40405343123338056,
+          -1.8376111120580885
          ],
          "z": [
-          -9.2103944249267,
-          -10.086662039871573,
-          -8.636432809799706,
-          -9.971095536301771,
-          -8.35930912679104,
-          -9.971137678955246,
-          -8.415560599633464,
-          -9.281457233493972,
-          -9.520941572130209,
-          -9.452549871166052,
-          -9.081384989650566,
-          -7.0127601312323256,
-          -7.71143677548389,
-          -10.60741238397401,
-          -10.49728725993612,
-          -8.716584147342036,
-          -11.42498589093232,
-          -8.13850554370896,
-          -8.506130654872853,
-          -10.023613273029605,
-          -12.801661830601205,
-          -11.108096997693366,
-          -7.314129586920322,
-          -9.090221724657303,
-          -10.16783363738489,
-          -9.328589548489,
-          -10.854739417170068,
-          -11.988221917078954,
-          -9.023947392853849,
-          -9.692533866793136,
-          -11.055519269391848,
-          -9.36878082307885,
-          -7.833608008780356,
-          -9.989095111276084,
-          -8.685353902699731,
-          -8.467942963673522,
-          -10.698511222606578,
-          -10.18782973073323,
-          -10.084486205921056,
-          -10.307534295301954,
-          -7.575513439311971,
-          -9.619463334382516,
-          -9.650114277673147,
-          -10.076752129431801,
-          -10.618498556277803,
-          -8.704501338723189,
-          -8.214661796784668,
-          -10.387379034211783,
-          -9.423102658242797,
-          -9.240232914006256,
-          -8.70401154100312,
-          -11.32120642691568,
-          -8.9539625651957,
-          -10.639282433263809,
-          -10.28259557696205,
-          -11.115532203427952,
-          -9.011557328944601,
-          -10.442240835472129,
-          -11.670596675173622,
-          -10.488719558837175,
-          -9.855431736699405,
-          -9.21730476866688,
-          -9.54641746746586,
-          -9.623740825950593,
-          -11.468459105719255,
-          -10.46541096658601,
-          -11.161921176168677,
-          -7.758482714265805,
-          -10.991008258728934,
-          -10.850677151941756,
-          -8.473632053278637,
-          -8.919054680228848,
-          -9.732105809695861,
-          -9.805817938833167,
-          -11.824667776277938,
-          -9.228705849632178,
-          -9.213011647991035,
-          -10.985424515362785,
-          -8.873485273109779,
-          -10.60040683325119,
-          -9.777462178549792,
-          -9.604101237191685,
-          -11.335519023337584,
-          -10.5547097382516,
-          -13.035114466848354,
-          -10.318055441938492,
-          -9.393755251844492,
-          -10.020228929746612,
-          -11.928181001958896,
-          -9.089363814379245,
-          -11.598135160422745,
-          -10.453095104843985,
-          -10.922133439592988,
-          -7.860517424493135,
-          -11.53254352406516,
-          -11.397291470731776,
-          -9.821759680777472,
-          -9.669964181505732,
-          -11.361947712394473,
-          -11.681393285358658,
-          -9.120881949842536,
-          -8.802675006580113,
-          -11.392631034207248,
-          -9.496875097906369,
-          -9.88370792349303,
-          -9.559131371724641,
-          -9.918477798676674,
-          -10.141434306741926,
-          -9.889521188562254,
-          -10.135027699982064,
-          -9.836017864497816,
-          -9.437214246926004,
-          -10.30902738047132,
-          -10.307806592811884,
-          -10.729492929697168,
-          -11.151001446362338,
-          -8.674249279633255,
-          -11.16063253237177,
-          -10.835855975456978,
-          -9.241785476264939,
-          -7.940041455002438,
-          -10.716915285871211,
-          -8.513674180141328,
-          -10.14961855511014,
-          -11.54657572988886,
-          -8.80228988915731,
-          -8.559339845302032,
-          -9.972152804447939,
-          -8.81667687998479,
-          -10.99696227015675,
-          -10.715257645477482,
-          -9.785187597418792,
-          -8.090671477821271,
-          -9.528165708662618,
-          -10.16363394272034,
-          -10.838405344535829,
-          -10.179863420484013,
-          -8.860558878074515,
-          -9.823697334009994,
-          -10.937073374888337,
-          -9.037589866883135,
-          -9.994528567881462,
-          -9.457185944911515,
-          -9.686740552656751,
-          -10.538835213161276,
-          -10.870184653407986,
-          -9.366955467469298,
-          -8.037279971491914,
-          -10.601793174591819,
-          -10.377640336913718,
-          -8.510724376129989,
-          -10.94768039550708,
-          -9.21388629636697,
-          -10.227338952634385,
-          -9.374793812581071,
-          -9.503870214381664,
-          -9.789488940524683,
-          -8.811522090439706,
-          -9.130946932044708,
-          -10.757610120942285,
-          -10.63996663871209,
-          -10.764173337859663,
-          -10.112454860162552,
-          -10.48509972342997,
-          -9.321143262625068,
-          -10.06249680803689,
-          -10.21751469450596,
-          -11.248188499006782,
-          -10.514449397827141,
-          -9.047403613978556,
-          -10.897945762690624,
-          -10.70363123807348,
-          -7.253107652278086,
-          -9.078623028781227,
-          -10.295429648518319,
-          -10.135659763101797,
-          -6.865198792546818,
-          -8.914178890309692,
-          -9.286105418772081,
-          -8.67212803645105,
-          -10.93064822879044,
-          -10.45842021873529,
-          -10.013678263050737,
-          -10.850049072530087,
-          -11.593704585138887,
-          -11.526522209105861,
-          -11.270732547902233,
-          -9.776106540707932,
-          -10.947919661053694,
-          -10.782913955892445,
-          -10.564476950276338,
-          -12.065667468268558,
-          -10.302175170597057,
-          -11.034235219670142,
-          -10.351010944096027,
-          -11.124631739424965,
-          -9.686836901395196,
-          -6.21025442791137,
-          -8.787464040196081,
-          -10.457986477085026,
-          -10.185909759559955,
-          -10.27177481554412,
-          -10.834452441007645,
-          -10.255414456745589,
-          -11.583330391033162,
-          -9.75067133619272,
-          -8.786000230069874,
-          -9.552762277794,
-          -9.327992628079349,
-          -11.014914851162999,
-          -9.495033067645622,
-          -9.62219183857212,
-          -10.747005996158775,
-          -7.668735467452977,
-          -10.213890919389307,
-          -10.51070361403483,
-          -9.292980041953923,
-          -11.415795827800471,
-          -9.854534537176129,
-          -10.91790895042782,
-          -12.082803646781565,
-          -7.476895017811824,
-          -10.511413703085424,
-          -9.527528479940031,
-          -7.708228747582791,
-          -8.313457394159053,
-          -10.651223218114426,
-          -10.627896410287613,
-          -10.375191832247953,
-          -10.818733430101044,
-          -10.0275122610391,
-          -9.618662095348553,
-          -9.29423537988113,
-          -9.120804656720043,
-          -10.228004625299375,
-          -12.887701038070858,
-          -12.234920574833602,
-          -11.0124411209812,
-          -9.260924611590188,
-          -9.519563838782117,
-          -8.728696729493155,
-          -10.040169661606223,
-          -9.303551649359184,
-          -10.578951665756167,
-          -10.209371007778998,
-          -9.362187442053607,
-          -9.819954236880205,
-          -7.853692282553385,
-          -12.840668522034274,
-          -9.302563257178662,
-          -9.617900966079388,
-          -8.889910003287715,
-          -8.882136401850108,
-          -10.377340356854065,
-          -10.438554908511652,
-          -8.203525015353412,
-          -11.28350489164054,
-          -9.698786497761478,
-          -9.355610339188502,
-          -9.112002219627916,
-          -8.271407288644651,
-          -8.962284023372833,
-          -9.50493614679692,
-          -11.094480783464945,
-          -9.172764685482923,
-          -8.041164657167819,
-          -9.436390159134913,
-          -10.56634985043647,
-          -10.606322256005136,
-          -9.243788102958595,
-          -10.71505304311369,
-          -8.561567018558444,
-          -7.736235127478517,
-          -8.690020666794132,
-          -9.519188011593277,
-          -11.631312400301763,
-          -10.708053446251519,
-          -11.846594709028299,
-          -6.7517748904248105,
-          -8.024110751652467,
-          -9.10715809956665,
-          -9.270670916912625,
-          -11.879911095802349,
-          -10.42797124981532,
-          -10.46431526525887,
-          -9.976632014169558,
-          -10.376880957390524,
-          -12.804860584074781,
-          -7.949793436193911,
-          -10.94208611861384,
-          -11.110780980433807,
-          -11.083387839147491,
-          -9.4314054941465,
-          -6.895048121134101,
-          -10.669529527072177,
-          -10.408608074396263,
-          -8.673613598552851,
-          -9.210484312324072,
-          -9.577464464430335,
-          -9.609336855441825,
-          -11.39611745529081,
-          -9.614210131944233,
-          -10.961699880875807,
-          -10.271087572507184,
-          -11.844638615388133,
-          -10.847656685530204,
-          -10.804152641345766,
-          -9.590129923882788,
-          -9.741662748277191,
-          -8.049390042754853,
-          -11.011035953647175,
-          -11.062319742255074,
-          -11.850245680146278,
-          -10.537849220304984,
-          -12.191972152166558,
-          -7.919473727261597,
-          -10.212479855172486,
-          -9.740813776114331,
-          -13.477643388927513,
-          -10.744072634197837,
-          -9.790009255050686,
-          -11.784155924670182,
-          -8.902969308486089,
-          -11.487457634833468,
-          -10.735142375542894,
-          -9.436938248570753,
-          -7.926444153504047,
-          -10.436173038365585,
-          -8.770221945951256,
-          -9.261969505870743,
-          -10.9748060838397,
-          -10.889201502257334,
-          -8.25035950445889,
-          -9.8364629168873,
-          -9.862706691638797,
-          -10.17370725325904,
-          -12.641397496543965,
-          -10.723946860695426,
-          -9.736093141603424,
-          -8.836808116416167,
-          -11.357363045730326,
-          -11.021006726056438,
-          -12.111080315400324,
-          -10.397053385294733,
-          -8.626562026220123,
-          -9.943630090570277,
-          -9.231407304492423,
-          -12.986135536820644,
-          -10.561059219704784,
-          -10.509359995984642,
-          -10.152183259492395,
-          -11.685396239606836,
-          -11.501946111870561,
-          -11.63276876245492,
-          -10.02771705778395,
-          -10.11993826556167,
-          -9.434879124601217,
-          -8.131110138379524,
-          -8.256945979062213,
-          -10.421564656693796,
-          -12.160700281415565,
-          -10.294492805448336,
-          -9.645855068620342,
-          -8.867586139611694,
-          -8.705311489016733,
-          -8.637579945568035,
-          -11.54012958247081,
-          -9.448064214805276,
-          -9.662202640345692,
-          -9.660400886931658,
-          -10.353683999580378,
-          -10.666826130586239,
-          -11.15288698441324,
-          -9.66050950709644,
-          -10.947182036253242,
-          -10.279997883738968,
-          -10.70404116060038,
-          -6.462940365283506,
-          -9.495188332726876,
-          -9.818805462636872,
-          -7.082700354125411,
-          -11.40286778824603,
-          -11.923195103386504,
-          -12.234563134029036,
-          -10.163887647429718,
-          -10.99429920128733,
-          -10.092647816476843,
-          -8.447799327219547,
-          -10.603962644195365,
-          -9.576669259207963,
-          -10.632822649120005,
-          -8.65076346748149,
-          -11.503919136407326,
-          -9.194253533266508,
-          -8.308013991808876,
-          -9.273199285255547,
-          -11.645652680590603,
-          -10.01186144998516,
-          -8.37725177345394,
-          -10.317272453754406,
-          -10.108022383493214,
-          -8.654808142846061,
-          -9.331808770513069,
-          -8.212208048016947,
-          -10.854414358947617,
-          -9.489619785612883,
-          -13.231594531465545,
-          -9.334011014297932,
-          -12.935091404257312,
-          -9.109842708970207,
-          -10.114435659215879,
-          -10.076295924951832,
-          -10.10876955855483,
-          -9.073196464881836,
-          -9.552479965214525,
-          -8.763489029064536,
-          -9.713754076207223,
-          -9.882170549350882,
-          -10.965098831254588,
-          -8.447297331105027,
-          -8.211868058723695,
-          -9.651368686397094,
-          -10.20533883935746,
-          -11.18967334320349,
-          -10.291206626525891,
-          -10.598361227199943,
-          -9.886955204406533,
-          -9.15462216973944,
-          -9.74276756925025,
-          -11.724101369138895,
-          -7.371476227486605,
-          -12.247151765647985,
-          -11.010136308404688,
-          -9.428523924870575,
-          -9.311480760009132,
-          -9.403862322445926,
-          -10.480908237711638,
-          -9.806435590766348,
-          -11.238995797690796,
-          -11.714103021750057,
-          -10.373874652546817,
-          -8.030143630269047,
-          -8.233741891225106,
-          -11.014850896668122,
-          -10.58817158719936,
-          -7.495150369624376,
-          -9.784325158438888,
-          -9.474051310025306,
-          -10.04295239235639,
-          -10.01296585628967,
-          -10.980116902033267,
-          -8.216642595962346,
-          -9.284179177673897,
-          -10.652389658883468,
-          -9.75530123680081,
-          -11.084302818022305,
-          -12.434307869207776,
-          -10.204109279717645,
-          -10.063428985577037,
-          -11.263092849944604,
-          -11.093005087392376,
-          -9.378192470249413,
-          -12.223943470067402,
-          -9.497325640284792,
-          -6.726219281187442,
-          -10.381743007980234,
-          -8.57846405358291,
-          -9.39610351296424,
-          -8.71035168349302,
-          -13.259899456195942,
-          -11.414592445570397,
-          -8.626055936512103,
-          -10.590193999094465,
-          -9.475337899951835,
-          -8.098909300354743,
-          -8.389694692951588,
-          -10.680195974289118,
-          -10.521537427502812,
-          -10.291723953800599,
-          -11.724066411734157,
-          -10.68153853823218,
-          -9.636022292541838,
-          -11.966776116350013,
-          -9.156528748444783,
-          -7.342217569806488,
-          -9.422494776897025,
-          -10.540854782375797,
-          -9.756690867070372,
-          -11.017507461564715,
-          -7.602543643787958,
-          -10.78890168424208,
-          -8.71124408419114,
-          -11.836477167132793,
-          -11.12111964362169,
-          -9.6531167838013,
-          -12.54497431792469,
-          -10.796161778048006,
-          -10.928070458719167,
-          -8.184439282103192,
-          -10.556054629762606,
-          -10.07368108392534,
-          -9.945716285604174,
-          -10.14013968342284,
-          -10.331841462702632,
-          -11.409514655125736,
-          -12.24720538506136,
-          -9.708315849803936,
-          -8.427251712759336,
-          -10.816943720213755,
-          -10.057684734223601,
-          -9.003191885395683,
-          -9.226397349871798,
-          -8.73505692231028,
-          -10.727624078157247,
-          -10.11966806908879,
-          -10.592231488161412,
-          -9.405562646757284,
-          -10.51766842531002,
-          -10.880821732495663,
-          -10.781676893123922,
-          -8.841428864768572,
-          -10.397279649475617,
-          -9.156950360045215,
-          -10.184740654481782,
-          -10.773728583627822,
-          -10.590961216338895,
-          -11.432731878678533,
-          -11.914153684983084,
-          -11.88152409343301,
-          -8.868624240988883,
-          -9.471939754604637,
-          -9.014835976305017,
-          -10.96840148697646,
-          -9.624820061936735,
-          -11.163552261199127,
-          -9.242904957278004,
-          -9.30524379404263,
-          -11.69459124339794,
-          -11.141448048732247,
-          -12.734593708550992,
-          -9.005011758311909,
-          -9.004724115152005,
-          -9.331626036339788,
-          -10.384069658773358,
-          -8.621109838430712,
-          -11.536857256046236,
-          -12.41453945741524,
-          -8.335228375863014,
-          -10.991975824016421,
-          -7.399489121216039,
-          -10.273897521586518,
-          -10.244558610158496,
-          -10.724529931661932,
-          -12.462548710497428,
-          -10.921263065751283,
-          -10.15296669999483,
-          -11.24131962421881,
-          -8.95448282172603,
-          -10.617360077149037,
-          -7.989337097343963,
-          -9.835858165940728,
-          -10.448441711266078,
-          -9.649355304572511,
-          -11.682924382248313,
-          -9.882868662841279,
-          -8.328371366548678,
-          -10.355303782906788,
-          -8.743732002451459,
-          -10.9959606934371,
-          -9.855019528407256,
-          -10.610835847340018,
-          -10.074867209576043,
-          -10.180438058657078,
-          -10.729754245265855,
-          -10.371549754358663,
-          -10.432953279602357,
-          -9.075790767137033,
-          -8.057965583265048,
-          -10.333025385023621,
-          -10.943699243094326,
-          -10.197143538680587,
-          -8.960225604279998,
-          -10.34583100864789,
-          -10.41805237529275,
-          -9.267835205909062,
-          -9.080627849142937,
-          -8.993505493483438,
-          -11.934549787680288,
-          -9.767424362090424,
-          -9.338260758998263,
-          -11.890689944385448,
-          -10.280020484848407,
-          -9.823878522451967,
-          -11.853660264191962,
-          -10.871553812347507,
-          -9.086893746637466,
-          -10.666233831683057,
-          -10.007881488879008,
-          -10.322204571322386,
-          -11.653368547252601,
-          -9.632822211780862,
-          -8.524271126168328,
-          -11.69143817247433,
-          -9.111482585063353,
-          -11.84682863522295,
-          -10.18333219400446,
-          -11.515052594670852,
-          -9.587050601255612,
-          -9.09859551579187,
-          -10.813502340183545,
-          -8.924141437967055,
-          -9.709454888080957,
-          -9.34823549568022,
-          -9.115199892000321,
-          -10.307193375519745,
-          -10.888236758275095,
-          -10.898077132038576,
-          -9.570090141914,
-          -9.028717906235013,
-          -12.367587674046852,
-          -9.269544766905963,
-          -9.458932234644015,
-          -10.146958340575079,
-          -9.859118607962122,
-          -9.044756000063796,
-          -9.693861179613966,
-          -10.534721267113651,
-          -10.366103582875839,
-          -9.726415660451515,
-          -11.049767984078422,
-          -8.90399168907425,
-          -12.349396089303838,
-          -10.203751464385656,
-          -8.92573669878543,
-          -9.340481636606638,
-          -11.033710557673892,
-          -10.483107784645146,
-          -9.213816603412276,
-          -9.369468141753583,
-          -9.84829699770744,
-          -10.02710388100538,
-          -7.514005981998423,
-          -9.960642002495183,
-          -9.863513138533794,
-          -8.557043807658063,
-          -9.398482538817136,
-          -11.883513114559213,
-          -9.232498987053248,
-          -11.357334950694682,
-          -11.106210233430005,
-          -8.909127625697607,
-          -11.055069428169789,
-          -9.97131272480077,
-          -11.45296816473521,
-          -11.29194984256014,
-          -13.063347388590216,
-          -7.921973750469709,
-          -9.020698805239315,
-          -10.581076715575156,
-          -9.575389249535295,
-          -9.036020339343107,
-          -9.093828450001388,
-          -9.13722626343236,
-          -8.662952243083202,
-          -9.568906814197653,
-          -7.513276887726271
+          4.154599326725324,
+          1.719607732740326,
+          -1.5899220680131467,
+          -1.900475717951951,
+          3.734370723864309,
+          -1.8097281667586587,
+          3.378718297348546,
+          2.97250177127548,
+          -1.9884596322431687,
+          1.0894829505253858,
+          1.7833750652406524,
+          -3.3314002247169006,
+          0.2506399525721452,
+          -3.4108116596531466,
+          3.7652150336160934,
+          3.6732208771195065,
+          -2.3463459740490147,
+          -0.877879571550094,
+          2.1952923494083434,
+          -3.424754177891074,
+          0.9179613091867456,
+          -3.059106857254842,
+          -3.3531898091372345,
+          -3.4712966548969755,
+          1.0683381194117594,
+          1.5493649414519561,
+          2.440802248314477,
+          4.250722416941755,
+          3.6737807359994967,
+          -2.5920366128466172,
+          3.871959280398248,
+          1.3509578813392311,
+          -2.1290504439231484,
+          1.262490211173807,
+          0.5203257303059328,
+          -2.2954628630851657,
+          3.295145403402983,
+          -1.1273893323453246,
+          1.3112791611659134,
+          -3.0322084733014543,
+          -2.178557626077211,
+          -0.545911798458357,
+          -2.2743985826341793,
+          2.9900247702222122,
+          -2.800402488256289,
+          1.8691201901129606,
+          -3.898919386337418,
+          3.85820152600417,
+          -4.122595318186941,
+          2.371477397812914,
+          1.6722781326952765,
+          -1.8738688161637076,
+          1.8806326001781057,
+          -0.9053839564475217,
+          0.5408134154354185,
+          1.9916640817162463,
+          1.8056015424111393,
+          -2.7087185195890027,
+          -2.043940031720921,
+          -1.7294850354540552,
+          -3.719097408149598,
+          -3.0822541920933455,
+          1.926865398454547,
+          -1.2143310040378168,
+          2.0237082244308002,
+          -3.3382843027225166,
+          0.8177753619384589,
+          3.143959531891973,
+          -1.0989715870030605,
+          3.3012101116431607,
+          -0.5208154917595507,
+          0.2675012278457416,
+          -3.2494214527551533,
+          0.19144294739366252,
+          4.277958345874276,
+          1.8590851858532433,
+          -3.8839924830104833,
+          4.262833045717305,
+          1.2033804774318826,
+          -3.3936703198802354,
+          -2.724796850121073,
+          -0.8833718821242464,
+          -1.0094953032226357,
+          4.254501515698235,
+          -0.8111252219023046,
+          -3.808167759333225,
+          3.2075924463737175,
+          0.9817379397089256,
+          4.277492174369329,
+          -0.08587655924636373,
+          0.35280290697731864,
+          4.111489042120188,
+          -1.9254261169097222,
+          -2.3210512113515778,
+          -3.261526131137387,
+          2.0928152058866436,
+          -2.651021727140198,
+          -1.4415545066498257,
+          -1.3814050274894853,
+          3.1338189605762157,
+          -3.1403821570862163,
+          -3.1356590940563263,
+          1.914337370699136,
+          0.48256566598019024,
+          -2.365696302998448,
+          -2.204964700808989,
+          3.3715159624924107,
+          -1.2699318712756549,
+          -1.7749292281598619,
+          -1.3933809149754803,
+          3.635765413518449,
+          0.7670634629899089,
+          2.6496888590246215,
+          -1.8818515611087236,
+          1.5382290689413898,
+          4.309838459899162,
+          3.907918771550775,
+          0.48720692436889657,
+          3.172550810661984,
+          3.3850831871734712,
+          -3.248319240998194,
+          4.2017721383137525,
+          3.332099536244913,
+          -3.651070604784409,
+          2.5738941938546454,
+          1.7125555522650693,
+          0.10556770346930033,
+          0.8774487734158445,
+          2.0800092668218477,
+          4.001458026587605,
+          -0.5623303455664446,
+          -1.895187587312424,
+          -3.0942454608919845,
+          -0.6265104313265448,
+          -0.09750417691633029,
+          -3.9786161459127602,
+          -1.5859115242612138,
+          -4.116638553063174,
+          1.9851176123210683,
+          -1.479150899606386,
+          -3.676448417566119,
+          -3.47116878938642,
+          3.110013086585906,
+          1.7566007714110343,
+          -3.2317723301868333,
+          2.2132959762990794,
+          3.7736473697001953,
+          3.935755403821699,
+          0.013114857743904196,
+          1.944280580554464,
+          -1.7443288059716333,
+          -3.576480491276718,
+          -4.056360889445981,
+          -2.372494748544411,
+          0.3209561267133587,
+          2.526835925365911,
+          -3.6658205965297026,
+          1.539157119783705,
+          -3.881936146578472,
+          1.7539917703017682,
+          3.3135822372614943,
+          4.031921142414562,
+          1.9439264851929474,
+          0.9140122630450662,
+          -0.13853722623461717,
+          3.290534667706809,
+          -0.1322275877382726,
+          1.164521900659599,
+          3.289949783958316,
+          -2.4648624465580324,
+          -1.5108359211183098,
+          -4.141976028949658,
+          0.6744438253759935,
+          2.8644483195033406,
+          1.7871728420072133,
+          -2.2036602527718423,
+          1.8919175521953768,
+          -0.22760691059175464,
+          0.7396238998247355,
+          -2.121485115112088,
+          -0.07321014601323927,
+          3.0138370651070163,
+          -0.249466146172602,
+          3.7189276275573526,
+          3.3740817152448868,
+          0.03307715125090649,
+          0.7287836193339441,
+          1.79752847190899,
+          3.6112881416195703,
+          -1.310535814611098,
+          -0.6683533440487759,
+          3.061791892469201,
+          -4.072154318727843,
+          -4.1481055572306404,
+          1.4968998585425295,
+          -2.0730238068350793,
+          -3.951224281791434,
+          -3.9092059515008675,
+          -1.639867243798911,
+          2.375683721695136,
+          1.1309830395012783,
+          3.07062100868331,
+          -0.6406572117367317,
+          -0.9140785222747065,
+          -1.6042161899186609,
+          -0.5137985584198268,
+          2.081691558766402,
+          -0.014118354241937858,
+          1.3639890573000475,
+          -3.995705673251206,
+          1.162737476530924,
+          1.5869061632450547,
+          3.130426968084433,
+          3.1760880720710087,
+          2.0898886615501278,
+          2.5520801246175457,
+          1.3743654638304967,
+          -2.441844010096384,
+          -2.9195506562183384,
+          -0.15739434151204978,
+          -1.7045355755435856,
+          0.7303586329707494,
+          1.1975534754462611,
+          3.6184759312080077,
+          2.658142616697149,
+          4.269249318394061,
+          -1.7534988673191183,
+          -1.0730636169724597,
+          2.1636161980248705,
+          -1.8239857946129745,
+          -2.400384023525249,
+          -3.6324445143181405,
+          -3.2625742058779297,
+          -3.131357493821568,
+          3.706321247497095,
+          3.110730910710183,
+          -0.5364220865026614,
+          3.441205299636657,
+          -1.0857714544458008,
+          2.978358956187283,
+          -3.7335515936331234,
+          -1.9351490522056722,
+          -2.722679341472019,
+          -2.89598618477444,
+          -1.94700587970088,
+          0.7228698735700494,
+          0.8860934744116022,
+          -3.740905403448665,
+          2.5158645543749394,
+          -1.1388479124828352,
+          -2.9641605680511764,
+          -3.4130043631994003,
+          -3.95089388127729,
+          2.6611565621989817,
+          -0.6989469630190883,
+          -3.6132865562718792,
+          -1.0093007979428963,
+          -0.23367883653409027,
+          1.1005612504309203,
+          1.6812415931085907,
+          0.6560781427836853,
+          -3.1077682491068757,
+          0.3622774898429446,
+          -0.14967576745409605,
+          -0.37986320273310525,
+          -3.6729424489558906,
+          1.393880227511314,
+          1.4210287977126779,
+          -3.431367280788086,
+          -3.859801502772248,
+          -0.9656144121433718,
+          -1.3164258811141436,
+          0.25602134369854834,
+          2.479565626378095,
+          0.3043258102333519,
+          0.7790879198116372,
+          0.04025986562923567,
+          -2.7994249307906633,
+          1.103757677753297,
+          -3.4622696240838007,
+          -1.7199708710364026,
+          -0.913225321624497,
+          3.247330268683717,
+          -2.989967195162637,
+          1.5565917192574448,
+          0.6256762393880262,
+          -0.42182575133546774,
+          3.2684146413606,
+          1.922736840281706,
+          2.673776340766757,
+          -2.0653035553638786,
+          0.43235458686776695,
+          -3.0895489507166767,
+          0.5460349456563067,
+          3.8580820588633786,
+          -1.2299612577389678,
+          -1.6501472165875168,
+          1.2334029240064766,
+          -0.896053313312533,
+          4.223131935397796,
+          0.8046816685262348,
+          0.7637588623430549,
+          1.0025187734885446,
+          -0.9657253021010948,
+          1.417442028539897,
+          -2.5542014652109817,
+          -0.3262299165975522,
+          1.0694716575456518,
+          -1.8177357329845942,
+          -3.178139923829483,
+          -2.219540489005761,
+          1.5140822952094224,
+          -1.67363315413639,
+          -1.7631292500127285,
+          1.402283801362156,
+          -0.5249503107514251,
+          -3.5164777355954726,
+          2.0776493696772285,
+          2.4583434767196515,
+          1.5102700670501008,
+          2.2708363177090805,
+          -0.42367197948521085,
+          1.4165725626222043,
+          -0.33338680800847653,
+          -2.2614025089528758,
+          -2.710312462978226,
+          -2.804398511358694,
+          -0.2816166432522458,
+          -1.5495416246928762,
+          4.061636245588622,
+          -3.9200654923705462,
+          1.8508433272825426,
+          3.846430371715294,
+          -0.5328795653568568,
+          -2.370868201779637,
+          1.5169435259823612,
+          3.840697190670224,
+          -3.6012427744674067,
+          2.6768765809133654,
+          -0.049892768064119686,
+          2.7999083707756007,
+          -0.04693083145796617,
+          -0.8384815551491722,
+          1.5365588540729522,
+          2.4404832137947112,
+          -2.1310776348630007,
+          1.2062786681319242,
+          2.0703364378803526,
+          -3.692559872091154,
+          -1.8889467573981782,
+          1.3391253078924565,
+          3.5608555082139635,
+          3.1967088880588257,
+          -3.4063637631008645,
+          -0.26968876364763084,
+          -0.13472353886514377,
+          0.39808026536869523,
+          -1.8598927076444505,
+          0.7282265937147896,
+          3.104199896599795,
+          3.6407211021315344,
+          4.0222160920309085,
+          2.061615924828904,
+          -3.7705347646194425,
+          -2.50675839511042,
+          -1.3284100906047316,
+          2.935736876882438,
+          -2.257685774542543,
+          3.6110786723490405,
+          -2.239374972918453,
+          0.8176997666726988,
+          2.0965427969727823,
+          -3.129287081817106,
+          1.0490073851257815,
+          -3.2218316163368312,
+          2.2632899780414837,
+          3.2407057420941525,
+          0.05765813498146688,
+          2.9774211194740285,
+          2.594020798420991,
+          2.258980113501373,
+          -0.4954854318882864,
+          -3.699561382302493,
+          -2.7367700788653133,
+          -1.3827404608808105,
+          2.9244332485721696,
+          3.339015475847111,
+          -2.865692214650924,
+          1.1936428165122583,
+          -3.0023006056809316,
+          0.7772185594895316,
+          -3.486006621050864,
+          1.0868409764288653,
+          -2.041892610285772,
+          3.6511802788525545,
+          3.948879196410286,
+          -2.5309577494157764,
+          1.0062527973990347,
+          0.23145179871795563,
+          -2.560962364328282,
+          2.4063585996952126,
+          1.464394886728484,
+          -1.9673183675010448,
+          2.0452111178512205,
+          -4.00248985047311,
+          0.9698882965123206,
+          -3.776055603666276,
+          -2.4498009469047766,
+          0.42449668732979173,
+          -3.8233474186702785,
+          -3.1044530983263634,
+          2.3814811870334234,
+          3.67325634872567,
+          0.007251187520409985,
+          -3.8532641447773037,
+          1.3338979639382496,
+          -0.9322000956107934,
+          0.1704328529907677,
+          -0.9546265771101794,
+          -2.2546762987165145,
+          -0.5939290682150791,
+          1.863133012128909,
+          2.624155997020485,
+          -3.8897118477986843,
+          -2.7367852996325692,
+          -0.07587283011231527,
+          -1.75927831640253,
+          -0.37266276365804174,
+          2.3421659674127477,
+          1.1047052673990718,
+          1.0350913270244364,
+          3.563359917326248,
+          -2.7884216097277745,
+          -1.624524106822534,
+          0.7841301713635715,
+          2.3082626469685765,
+          -0.6309972853158445,
+          -3.3217484925026044,
+          -2.0316728440551146,
+          1.3978225573419314,
+          -1.9134860394631668,
+          -2.470157254763442,
+          -0.09706314935358318,
+          -0.6351177486193897,
+          1.2391359878955113,
+          4.313900220699186,
+          1.75755638112076,
+          -3.3485976591783118,
+          1.4134724747512912,
+          0.0916818492263971,
+          3.6420258267505057,
+          -0.7532469355710671,
+          -3.3291172726009304,
+          -2.013056868733975,
+          2.6127551470202572,
+          -1.2841964164250594,
+          -2.7413381587302843,
+          -0.7130808729900386,
+          -0.41511417928634753,
+          2.604739219098338,
+          2.683117172143014,
+          3.8078187013261013,
+          1.3222200010066096,
+          -4.01379817438267,
+          -1.7210493922395398,
+          1.1588122972050643,
+          3.1265167354515766,
+          -0.9264800254363275,
+          -2.8907541574615463,
+          0.8952411639465581,
+          0.1473721020299692,
+          1.6562992741654599,
+          -1.0610142329553698,
+          -1.9743280205201357,
+          -1.811042978720054,
+          -3.386984957655894,
+          -1.6030045200981826,
+          -4.239203985378486,
+          0.11652366165252914,
+          2.5332757850199883,
+          -2.2562788759951826,
+          -2.060484652237031,
+          -4.206977495948719,
+          1.1302939815804942,
+          -0.9681089653180508,
+          -1.7161670003573195,
+          3.5163958457157953,
+          -4.226840875295946,
+          -1.3874063712080553,
+          -3.5777629926523624,
+          -0.9617353353470475,
+          -0.4202344954598707,
+          2.155439310363568,
+          -1.2614017817909944,
+          -2.75921718749628,
+          -1.3179462405858278,
+          -1.2081925572688954,
+          -0.6222596924939343,
+          3.30537158048375,
+          -2.2270741210807152,
+          -1.7821804687796425,
+          2.675772197051063,
+          4.1817384046952855,
+          3.126865711979778,
+          -1.4401369426933615,
+          -0.9730556480473798,
+          -1.32601901182532,
+          1.8048408313391144,
+          2.7271414832869763,
+          3.0194221792969387,
+          3.803129906627851,
+          3.2283480076670674,
+          -2.4934712516852473,
+          -1.3251315467044678,
+          -0.7520296730671494,
+          -2.073881393092055,
+          -2.0313931253570003,
+          2.282651672413558,
+          0.8500366222677345,
+          -0.05129208042810873,
+          2.382387192672616,
+          2.819038795199483,
+          -1.826779436069502,
+          -2.3789431281213114,
+          -3.25329262553905,
+          1.6340626285588495,
+          3.3603885111355734,
+          -0.2047668208914235,
+          0.6245665409962777,
+          -1.92125521041375,
+          -4.228580715339482,
+          2.7043109922040305,
+          -1.4105217338393188,
+          2.1394257638970826,
+          -3.5742193722312368,
+          0.05399303681850398,
+          4.26590363259167,
+          -1.3223526315749266,
+          4.119698235937597,
+          2.286391769680389,
+          -2.410983763868331,
+          -2.326133181955824,
+          2.8091406859511183,
+          -2.9628086088177965,
+          -0.6784762520086889,
+          4.295372981293927,
+          -2.0625135089868287,
+          -4.106385086069601,
+          4.178862094708932,
+          -2.2641520652112472,
+          -2.3789343257730886,
+          3.160656991063443,
+          1.0013293314797638,
+          -2.0883777937391628,
+          2.8159851936043445,
+          -3.2618226404599744,
+          -3.372123056214865,
+          -0.4389845980374645,
+          3.7273506027792678,
+          2.9294764359334637,
+          -2.283685705143815,
+          -1.8785794704323537,
+          -2.2022117583993084,
+          -2.6718147054335324,
+          4.176671156369179,
+          -4.202798852431267,
+          4.150168015188984,
+          -2.9983074197062196,
+          3.83802627987584,
+          3.2168763142899435,
+          -3.8748488538852537,
+          2.7125798253569426,
+          2.1809734148748534,
+          -0.2035638273080158,
+          3.5030782760978676,
+          -1.2955695205733067,
+          3.623507702296539,
+          -1.529232525784657,
+          2.6859541298487972,
+          -1.1690418453491511,
+          -1.0987687959399204,
+          -1.8280211864898366,
+          3.2932640412173813,
+          -1.4953341646719536,
+          0.7604031344707733,
+          4.284902585895135,
+          0.17258476587767557,
+          3.7280850822118827,
+          -2.0327153436800516,
+          0.2342230858865717,
+          -0.3423543706916856,
+          0.7759741783469041,
+          0.010641481071414383,
+          -0.6057091171315352,
+          1.177468551154151,
+          -3.2641141672060012,
+          -1.14602962379662,
+          -2.3539531590251284,
+          -0.9647990810197347,
+          0.028757527551391604,
+          1.8395927393306932,
+          -4.252886176490191,
+          -4.146289582659566,
+          1.675496814859759,
+          -3.6245354898999804,
+          -1.6742467789647848,
+          4.302411230452294,
+          0.06470185899620695,
+          -2.7895504590352598,
+          3.598871901078394,
+          -3.648868267234282,
+          1.246865829213795,
+          -1.4898674535847745,
+          2.1594147036347495,
+          -1.621264142175601,
+          0.46100695072615583,
+          -1.1940494396406982,
+          0.16766615232184012,
+          -0.700034672812869,
+          2.6079091938343257,
+          -0.039342860675849245,
+          -2.460528234203363,
+          3.3741204437771115,
+          0.6282122853818128,
+          0.007245876776520888,
+          -1.003444990863029,
+          -1.6799679630687732,
+          0.9956564604025004,
+          2.048487418714644,
+          4.146928707811324,
+          3.0090576604865733,
+          0.5970204532564694,
+          -4.021784692028722,
+          -3.7464788625291643,
+          2.1980422207002546,
+          -2.295890112304265,
+          -2.1444216001594256,
+          -0.9513861205995391,
+          3.143938371949214,
+          3.4783892773544043,
+          1.1088855093379282,
+          3.3502886148353,
+          0.3788460920579304,
+          -1.2310189015050144,
+          0.5465586859255822,
+          -1.5410180179679287,
+          0.724949577076015,
+          1.7173214492195603,
+          2.581587226816776,
+          -1.7842032223884416,
+          0.8150206183045547,
+          -1.2285331607263488,
+          -0.14826132216554022,
+          1.4028279253572933,
+          1.719047445385022,
+          -0.8235384520932527,
+          1.5624844800827464,
+          -1.505421950336312,
+          3.9496582213347198,
+          2.832688149187274,
+          4.199185247237554,
+          0.1501373335117382,
+          1.1999054133678477,
+          -2.416820493531411,
+          -2.85167221947174,
+          2.1028041511523723
          ]
         },
         {
@@ -8549,2677 +8519,2677 @@
          "scene": "scene2",
          "showlegend": false,
          "text": [
-          "example_2",
-          "example_15",
-          "example_23",
-          "example_29",
-          "example_30",
-          "example_32",
-          "example_43",
-          "example_44",
-          "example_45",
-          "example_49",
-          "example_51",
-          "example_56",
-          "example_58",
-          "example_59",
-          "example_63",
-          "example_65",
-          "example_67",
-          "example_69",
-          "example_70",
-          "example_71",
-          "example_72",
-          "example_73",
-          "example_76",
-          "example_78",
-          "example_81",
-          "example_84",
-          "example_99",
-          "example_100",
-          "example_101",
-          "example_107",
-          "example_109",
-          "example_111",
-          "example_115",
-          "example_118",
-          "example_120",
-          "example_123",
-          "example_124",
-          "example_128",
-          "example_135",
-          "example_141",
-          "example_148",
-          "example_162",
-          "example_163",
-          "example_168",
-          "example_170",
-          "example_173",
-          "example_175",
-          "example_182",
-          "example_184",
-          "example_185",
-          "example_188",
-          "example_192",
-          "example_194",
-          "example_196",
-          "example_198",
-          "example_199",
-          "example_203",
-          "example_208",
-          "example_210",
-          "example_211",
-          "example_212",
-          "example_218",
-          "example_220",
-          "example_226",
-          "example_231",
-          "example_233",
-          "example_236",
-          "example_237",
-          "example_239",
-          "example_240",
-          "example_244",
-          "example_247",
-          "example_250",
-          "example_251",
-          "example_254",
-          "example_256",
-          "example_259",
-          "example_261",
-          "example_265",
-          "example_266",
-          "example_270",
-          "example_271",
-          "example_272",
-          "example_273",
-          "example_274",
-          "example_275",
-          "example_277",
-          "example_281",
-          "example_286",
-          "example_289",
-          "example_292",
-          "example_297",
-          "example_298",
-          "example_300",
-          "example_303",
-          "example_305",
-          "example_306",
-          "example_307",
-          "example_309",
-          "example_310",
-          "example_311",
-          "example_316",
-          "example_322",
-          "example_324",
-          "example_331",
-          "example_332",
-          "example_334",
-          "example_339",
-          "example_342",
-          "example_344",
-          "example_350",
-          "example_351",
-          "example_352",
-          "example_353",
-          "example_354",
-          "example_358",
-          "example_361",
-          "example_363",
-          "example_365",
-          "example_366",
-          "example_367",
-          "example_368",
-          "example_371",
-          "example_374",
-          "example_376",
-          "example_380",
-          "example_381",
-          "example_382",
-          "example_383",
-          "example_393",
-          "example_394",
-          "example_398",
-          "example_405",
-          "example_408",
-          "example_411",
-          "example_413",
-          "example_414",
-          "example_415",
-          "example_416",
-          "example_420",
-          "example_422",
-          "example_425",
-          "example_426",
-          "example_427",
-          "example_429",
-          "example_432",
-          "example_433",
-          "example_436",
-          "example_438",
-          "example_439",
-          "example_445",
-          "example_450",
-          "example_453",
-          "example_462",
-          "example_464",
-          "example_465",
-          "example_471",
-          "example_478",
-          "example_479",
-          "example_480",
-          "example_481",
-          "example_482",
-          "example_483",
-          "example_485",
-          "example_486",
-          "example_493",
-          "example_494",
-          "example_495",
-          "example_497",
-          "example_505",
-          "example_506",
-          "example_507",
-          "example_513",
-          "example_514",
-          "example_518",
-          "example_519",
-          "example_522",
-          "example_526",
-          "example_527",
-          "example_529",
-          "example_530",
-          "example_532",
-          "example_534",
-          "example_535",
-          "example_538",
-          "example_543",
-          "example_544",
-          "example_548",
-          "example_551",
-          "example_552",
-          "example_554",
-          "example_555",
-          "example_557",
-          "example_561",
-          "example_567",
-          "example_570",
-          "example_572",
-          "example_575",
-          "example_576",
-          "example_579",
-          "example_581",
-          "example_582",
-          "example_583",
-          "example_584",
-          "example_585",
-          "example_588",
-          "example_590",
-          "example_591",
-          "example_593",
-          "example_596",
-          "example_598",
-          "example_599",
-          "example_602",
-          "example_607",
-          "example_609",
-          "example_610",
-          "example_611",
-          "example_613",
-          "example_614",
-          "example_617",
-          "example_618",
-          "example_619",
-          "example_620",
-          "example_628",
-          "example_630",
-          "example_631",
-          "example_637",
-          "example_650",
-          "example_651",
-          "example_654",
-          "example_670",
-          "example_674",
-          "example_678",
-          "example_679",
-          "example_680",
-          "example_692",
-          "example_693",
-          "example_694",
-          "example_701",
-          "example_704",
-          "example_705",
-          "example_706",
-          "example_707",
-          "example_710",
-          "example_712",
-          "example_715",
-          "example_720",
-          "example_721",
-          "example_727",
-          "example_730",
-          "example_733",
-          "example_736",
-          "example_741",
-          "example_744",
-          "example_745",
-          "example_746",
-          "example_752",
-          "example_755",
-          "example_757",
-          "example_759",
-          "example_764",
-          "example_765",
-          "example_767",
-          "example_771",
-          "example_774",
-          "example_777",
-          "example_780",
-          "example_781",
-          "example_785",
-          "example_787",
-          "example_788",
-          "example_792",
-          "example_802",
-          "example_806",
-          "example_807",
-          "example_808",
-          "example_812",
-          "example_813",
-          "example_817",
-          "example_818",
-          "example_819",
-          "example_824",
-          "example_829",
-          "example_832",
-          "example_834",
-          "example_838",
-          "example_843",
-          "example_845",
-          "example_849",
-          "example_855",
-          "example_861",
-          "example_865",
-          "example_873",
-          "example_879",
-          "example_886",
-          "example_887",
-          "example_892",
-          "example_900",
-          "example_904",
-          "example_905",
-          "example_906",
-          "example_907",
-          "example_909",
-          "example_914",
-          "example_915",
-          "example_923",
-          "example_925",
-          "example_926",
-          "example_930",
-          "example_931",
-          "example_936",
-          "example_937",
-          "example_939",
-          "example_942",
-          "example_943",
-          "example_948",
-          "example_949",
-          "example_952",
-          "example_962",
-          "example_963",
-          "example_964",
-          "example_965",
-          "example_966",
-          "example_976",
-          "example_978",
-          "example_979",
-          "example_984",
-          "example_985",
-          "example_988",
-          "example_990",
-          "example_993",
-          "example_994",
-          "example_1004",
-          "example_1010",
-          "example_1013",
-          "example_1018",
-          "example_1022",
-          "example_1027",
-          "example_1029",
-          "example_1033",
-          "example_1036",
-          "example_1040",
-          "example_1043",
-          "example_1050",
-          "example_1052",
-          "example_1053",
-          "example_1054",
-          "example_1061",
-          "example_1063",
-          "example_1067",
-          "example_1073",
-          "example_1075",
-          "example_1083",
-          "example_1084",
-          "example_1090",
-          "example_1100",
-          "example_1102",
-          "example_1103",
-          "example_1105",
-          "example_1106",
-          "example_1107",
-          "example_1114",
-          "example_1117",
-          "example_1120",
-          "example_1125",
-          "example_1133",
-          "example_1134",
-          "example_1138",
-          "example_1144",
-          "example_1146",
-          "example_1157",
-          "example_1159",
-          "example_1160",
-          "example_1163",
-          "example_1164",
-          "example_1165",
-          "example_1170",
-          "example_1173",
-          "example_1177",
-          "example_1179",
-          "example_1181",
-          "example_1187",
-          "example_1189",
-          "example_1192",
-          "example_1198",
-          "example_1202",
-          "example_1204",
-          "example_1211",
-          "example_1220",
-          "example_1222",
-          "example_1223",
-          "example_1225",
-          "example_1228",
-          "example_1229",
-          "example_1231",
-          "example_1233",
-          "example_1235",
-          "example_1239",
-          "example_1240",
-          "example_1242",
-          "example_1245",
-          "example_1247",
-          "example_1249",
-          "example_1255",
-          "example_1258",
-          "example_1263",
-          "example_1265",
-          "example_1270",
-          "example_1271",
-          "example_1272",
-          "example_1273",
-          "example_1274",
-          "example_1280",
-          "example_1281",
-          "example_1284",
-          "example_1287",
-          "example_1288",
-          "example_1289",
-          "example_1298",
-          "example_1301",
-          "example_1304",
-          "example_1305",
-          "example_1307",
-          "example_1309",
-          "example_1314",
-          "example_1316",
-          "example_1317",
-          "example_1318",
-          "example_1319",
-          "example_1320",
-          "example_1322",
-          "example_1324",
-          "example_1326",
-          "example_1331",
-          "example_1335",
-          "example_1339",
-          "example_1343",
-          "example_1344",
-          "example_1345",
-          "example_1347",
-          "example_1355",
-          "example_1357",
-          "example_1360",
-          "example_1362",
-          "example_1364",
-          "example_1376",
-          "example_1379",
-          "example_1380",
-          "example_1381",
-          "example_1383",
-          "example_1384",
-          "example_1386",
-          "example_1387",
-          "example_1389",
-          "example_1391",
-          "example_1392",
-          "example_1393",
-          "example_1395",
-          "example_1403",
-          "example_1405",
-          "example_1412",
-          "example_1414",
-          "example_1417",
-          "example_1420",
-          "example_1423",
-          "example_1424",
-          "example_1425",
-          "example_1428",
-          "example_1429",
-          "example_1431",
-          "example_1432",
-          "example_1433",
-          "example_1436",
-          "example_1440",
-          "example_1441",
-          "example_1447",
-          "example_1448",
-          "example_1452",
-          "example_1453",
-          "example_1454",
-          "example_1458",
-          "example_1464",
-          "example_1469",
-          "example_1471",
-          "example_1472",
-          "example_1474",
-          "example_1481",
-          "example_1483",
-          "example_1490",
-          "example_1491",
-          "example_1493",
-          "example_1498",
-          "example_1502",
-          "example_1503",
-          "example_1509",
-          "example_1510",
-          "example_1511",
-          "example_1516",
-          "example_1525",
-          "example_1526",
-          "example_1530",
-          "example_1531",
-          "example_1537",
-          "example_1542",
-          "example_1546",
-          "example_1547",
-          "example_1548",
-          "example_1551",
-          "example_1552",
-          "example_1553",
-          "example_1554",
-          "example_1556",
-          "example_1558",
-          "example_1560",
-          "example_1564",
-          "example_1565",
-          "example_1568",
-          "example_1571",
-          "example_1575",
-          "example_1582",
-          "example_1586",
-          "example_1588",
-          "example_1591",
-          "example_1592",
-          "example_1596",
-          "example_1601",
-          "example_1602",
-          "example_1605",
-          "example_1606",
-          "example_1607",
-          "example_1608",
-          "example_1610",
-          "example_1611",
-          "example_1612",
-          "example_1613",
-          "example_1615",
-          "example_1616",
-          "example_1621",
-          "example_1626",
-          "example_1632",
-          "example_1635",
-          "example_1644",
-          "example_1645",
-          "example_1646",
-          "example_1649",
-          "example_1650",
-          "example_1651",
-          "example_1652",
-          "example_1656",
-          "example_1657",
-          "example_1658",
-          "example_1664",
-          "example_1667",
-          "example_1671",
-          "example_1672",
-          "example_1674",
-          "example_1675",
-          "example_1676",
-          "example_1677",
-          "example_1683",
-          "example_1686",
-          "example_1689",
-          "example_1694",
-          "example_1696",
-          "example_1703",
-          "example_1708",
-          "example_1711",
-          "example_1712",
-          "example_1717",
-          "example_1719",
-          "example_1726",
-          "example_1727",
-          "example_1729",
-          "example_1734",
-          "example_1735",
-          "example_1738",
-          "example_1739",
-          "example_1743",
-          "example_1745",
-          "example_1749",
-          "example_1752",
-          "example_1754",
-          "example_1755",
-          "example_1759",
-          "example_1761",
-          "example_1763",
-          "example_1764",
-          "example_1765",
-          "example_1767",
-          "example_1770",
-          "example_1773",
-          "example_1775",
-          "example_1778",
-          "example_1779",
-          "example_1782",
-          "example_1783",
-          "example_1786",
-          "example_1787",
-          "example_1791",
-          "example_1801",
-          "example_1808",
-          "example_1810",
-          "example_1811",
-          "example_1813",
-          "example_1814",
-          "example_1816",
-          "example_1817",
-          "example_1823",
-          "example_1827",
-          "example_1831",
-          "example_1844",
-          "example_1851",
-          "example_1857",
-          "example_1860",
-          "example_1863",
-          "example_1864",
-          "example_1865",
-          "example_1867",
-          "example_1871",
-          "example_1872",
-          "example_1874",
-          "example_1882",
-          "example_1888",
-          "example_1891",
-          "example_1903",
-          "example_1904",
-          "example_1907",
-          "example_1909",
-          "example_1910",
-          "example_1911",
-          "example_1912",
-          "example_1914",
-          "example_1917",
-          "example_1918",
-          "example_1920",
-          "example_1922",
-          "example_1925",
-          "example_1928",
-          "example_1929",
-          "example_1930",
-          "example_1932",
-          "example_1935",
-          "example_1936",
-          "example_1937",
-          "example_1939",
-          "example_1941",
-          "example_1948",
-          "example_1952",
-          "example_1955",
-          "example_1957",
-          "example_1959",
-          "example_1960",
-          "example_1963",
-          "example_1972",
-          "example_1974",
-          "example_1975",
-          "example_1976",
-          "example_1978",
-          "example_1979",
-          "example_1984",
-          "example_1985",
-          "example_1987",
-          "example_1988",
-          "example_1989",
-          "example_1990",
-          "example_1993"
+          "0_l_0_m-0_0.08-1_0.1-2_0.06-3_0.19",
+          "1_l_0_m-0_0.12-1_0.47-2_0.31-3_0.18",
+          "2_l_0_m-0_0.09-1_0.16-2_0.08-3_0.18",
+          "3_l_0_m-0_0.21-1_0.23-2_0.17-3_0.1",
+          "4_l_0_m-0_0.47-1_0.09-2_0.48-3_0.24",
+          "5_l_0_m-0_0.16-1_0.92-2_0.25-3_0.33",
+          "6_l_0_c_0_1_2-0_0.16-1_0.18-2_0.48-3_0.52",
+          "7_l_0_c_0_1_2-0_0.0-1_0.08-2_0.86-3_1.04",
+          "8_l_0_c_0_1_2-0_0.79-1_0.27-2_0.53-3_1.46",
+          "9_l_0_c_0_1_2-0_0.5-1_0.46-2_0.73-3_0.29",
+          "10_l_0_c_0_1_2-0_0.35-1_0.09-2_0.95-3_0.67",
+          "11_l_0_c_0_1_2-0_0.45-1_0.18-2_0.01-3_0.68",
+          "12_l_0_c_0_1_2-0_0.26-1_0.65-2_0.03-3_1.18",
+          "13_l_0_c_0_1_2-0_0.02-1_0.11-2_0.11-3_0.93",
+          "14_l_0_c_0_1_2-0_0.01-1_0.31-2_0.46-3_0.39",
+          "15_l_0_c_0_1_2-0_0.49-1_0.44-2_0.46-3_0.4",
+          "16_l_0_c_0_1_2-0_0.32-1_0.66-2_0.09-3_0.22",
+          "17_l_0_c_0_1_2-0_0.88-1_0.25-2_0.08-3_0.3",
+          "18_l_0_c_0_1_2-0_0.24-1_0.29-2_0.41-3_0.04",
+          "19_l_0_c_1_2_3-0_1.19-1_0.67-2_0.48-3_0.22",
+          "20_l_0_c_0_1_2-0_0.56-1_0.09-2_0.52-3_1.12",
+          "21_l_0_c_0_2_3-0_0.44-1_0.25-2_0.14-3_0.45",
+          "22_l_0_c_1_2_3-0_0.05-1_0.26-2_1.37-3_0.82",
+          "23_l_0_c_0_1_2-0_0.49-1_0.15-2_0.69-3_0.44",
+          "24_l_0_c_0_2_3-0_0.38-1_0.27-2_0.15-3_0.11",
+          "25_l_0_c_1_2_3-0_0.97-1_0.06-2_0.49-3_0.2",
+          "26_l_0_c_0_1_2-0_0.19-1_0.15-2_0.23-3_0.53",
+          "27_l_0_c_0_2_3-0_0.89-1_0.91-2_0.76-3_0.39",
+          "28_l_0_c_1_2_3-0_1.08-1_0.98-2_0.18-3_0.04",
+          "29_l_0_c_0_1_2-0_0.22-1_1.08-2_0.81-3_0.67",
+          "30_l_0_c_0_2_3-0_0.23-1_0.4-2_0.14-3_0.55",
+          "31_l_0_c_1_2_3-0_0.26-1_1.2-2_1.47-3_0.63",
+          "32_l_0_c_0_1_2-0_0.07-1_0.41-2_0.51-3_0.63",
+          "33_l_0_c_0_2_3-0_0.91-1_0.76-2_0.27-3_0.2",
+          "34_l_0_c_1_2_3-0_0.87-1_0.07-2_0.06-3_0.57",
+          "35_l_0_c_0_1_2-0_0.56-1_0.36-2_0.13-3_0.52",
+          "36_l_0_c_0_2_3-0_0.28-1_0.03-2_0.3-3_0.01",
+          "37_l_0_c_1_2_3-0_1.09-1_0.93-2_0.76-3_0.51",
+          "38_l_0_c_0_1_2-0_0.25-1_0.17-2_0.57-3_0.02",
+          "39_l_0_c_0_2_3-0_0.28-1_1.49-2_0.09-3_0.08",
+          "40_l_0_c_1_2_3-0_0.64-1_1.01-2_0.43-3_0.53",
+          "41_l_0_c_0_1_2-0_0.89-1_0.53-2_0.66-3_0.47",
+          "42_l_0_c_0_2_3-0_0.41-1_0.28-2_0.62-3_0.12",
+          "43_l_0_c_1_2_3-0_0.3-1_0.39-2_0.16-3_0.31",
+          "44_l_0_c_0_1_2-0_0.89-1_0.29-2_1.09-3_0.7",
+          "45_l_0_c_0_2_3-0_0.2-1_1.61-2_0.97-3_0.56",
+          "46_l_0_c_1_2_3-0_1.88-1_0.28-2_0.02-3_0.34",
+          "47_l_0_c_0_1_2-0_0.46-1_0.32-2_0.42-3_0.99",
+          "48_l_0_c_0_2_3-0_0.3-1_0.65-2_1.47-3_0.02",
+          "49_l_0_c_1_2_3-0_0.12-1_1.17-2_0.15-3_0.4",
+          "50_l_0_c_0_1_2-0_0.15-1_1.28-2_0.92-3_0.85",
+          "51_l_0_c_0_2_3-0_1.05-1_0.51-2_0.73-3_1.02",
+          "52_l_0_c_1_2_3-0_0.18-1_0.07-2_0.62-3_0.67",
+          "53_l_0_c_0_1_2-0_0.69-1_0.81-2_0.74-3_1.39",
+          "54_l_0_c_0_2_3-0_0.16-1_0.75-2_0.07-3_0.35",
+          "55_l_0_c_1_2_3-0_0.97-1_0.19-2_0.38-3_0.2",
+          "56_l_0_c_0_1_2-0_0.28-1_0.04-2_0.25-3_0.4",
+          "57_l_0_c_0_2_3-0_0.51-1_1.5-2_0.68-3_0.15",
+          "58_l_0_c_1_2_3-0_0.97-1_0.32-2_0.19-3_0.46",
+          "59_l_0_c_0_1_2-0_0.56-1_0.88-2_0.21-3_0.17",
+          "60_l_0_c_0_2_3-0_1.68-1_1.59-2_0.67-3_0.04",
+          "61_l_0_c_1_2_3-0_0.88-1_0.25-2_0.45-3_0.18",
+          "62_l_0_c_0_1_2-0_0.2-1_0.18-2_0.32-3_0.14",
+          "63_l_0_c_0_2_3-0_1.24-1_0.85-2_0.84-3_0.38",
+          "64_l_0_c_1_2_3-0_0.73-1_0.38-2_0.16-3_0.74",
+          "65_l_0_c_0_1_2-0_0.44-1_0.05-2_0.39-3_0.18",
+          "66_l_0_c_0_2_3-0_0.41-1_1.44-2_0.12-3_0.11",
+          "67_l_0_c_1_2_3-0_2.05-1_0.06-2_0.68-3_1.1",
+          "68_l_0_c_0_1_2-0_0.4-1_0.19-2_0.03-3_1.39",
+          "69_l_0_c_0_2_3-0_0.31-1_0.28-2_0.08-3_0.25",
+          "70_l_0_c_1_2_3-0_0.45-1_0.08-2_0.27-3_0.6",
+          "71_l_0_c_0_1_2-0_0.2-1_0.06-2_0.96-3_0.54",
+          "72_l_0_c_0_2_3-0_0.14-1_0.93-2_0.74-3_0.39",
+          "73_l_0_c_1_2_3-0_0.46-1_0.46-2_0.66-3_0.02",
+          "74_l_0_c_0_1_2-0_0.69-1_0.43-2_0.14-3_0.4",
+          "75_l_0_c_0_2_3-0_0.23-1_1.16-2_0.46-3_1.37",
+          "76_l_0_c_1_2_3-0_2.24-1_0.15-2_0.96-3_0.61",
+          "77_l_0_c_0_1_2-0_0.05-1_0.07-2_0.15-3_0.87",
+          "78_l_0_c_0_2_3-0_0.21-1_0.08-2_0.25-3_0.11",
+          "79_l_0_c_1_2_3-0_0.43-1_0.1-2_0.01-3_0.94",
+          "80_l_0_c_0_1_2-0_0.58-1_0.21-2_0.54-3_0.47",
+          "81_l_0_c_0_2_3-0_0.34-1_1.14-2_0.45-3_0.06",
+          "82_l_0_c_1_2_3-0_1.71-1_0.12-2_0.15-3_0.07",
+          "83_l_0_c_0_1_2-0_0.12-1_0.06-2_0.0-3_0.26",
+          "84_l_0_c_0_2_3-0_0.8-1_0.15-2_0.64-3_0.24",
+          "85_l_0_c_1_2_3-0_1.41-1_0.02-2_1.18-3_0.64",
+          "86_l_0_c_0_1_2-0_0.05-1_0.21-2_0.64-3_0.53",
+          "87_l_0_c_0_2_3-0_0.9-1_0.07-2_0.44-3_0.22",
+          "88_l_0_c_1_2_3-0_0.07-1_0.19-2_0.42-3_0.71",
+          "89_l_0_c_0_1_2-0_0.21-1_0.2-2_0.35-3_0.04",
+          "90_l_0_c_0_2_3-0_0.38-1_2.27-2_0.51-3_0.04",
+          "91_l_0_c_1_2_3-0_0.57-1_0.45-2_0.2-3_0.44",
+          "92_l_0_c_0_1_2-0_0.23-1_0.17-2_0.43-3_1.58",
+          "93_l_0_c_0_2_3-0_2.0-1_0.83-2_0.76-3_0.02",
+          "94_l_0_c_1_2_3-0_0.43-1_0.32-2_0.19-3_0.86",
+          "95_l_0_c_0_1_2-0_0.34-1_0.46-2_0.23-3_0.69",
+          "96_l_0_c_0_2_3-0_0.03-1_0.36-2_0.26-3_0.08",
+          "97_l_0_c_1_2_3-0_0.69-1_0.09-2_1.09-3_0.99",
+          "98_l_0_c_0_1_2-0_0.02-1_0.16-2_0.64-3_0.6",
+          "99_l_0_c_0_1_3-0_0.06-1_0.32-2_0.65-3_0.41",
+          "100_l_0_c_0_2_3-0_0.03-1_0.14-2_0.74-3_0.63",
+          "101_l_0_c_1_2_3-0_1.15-1_0.92-2_1.15-3_0.82",
+          "102_l_0_c_0_1_2-0_0.09-1_0.04-2_0.31-3_0.88",
+          "103_l_0_c_0_1_3-0_0.07-1_0.34-2_0.57-3_0.05",
+          "104_l_0_c_0_2_3-0_0.41-1_0.51-2_0.35-3_0.04",
+          "105_l_0_c_1_2_3-0_0.55-1_0.74-2_0.64-3_0.06",
+          "106_l_0_c_0_1_2-0_0.09-1_0.19-2_0.17-3_0.35",
+          "107_l_0_c_0_1_3-0_0.02-1_0.13-2_1.34-3_0.6",
+          "108_l_0_c_0_2_3-0_0.54-1_0.09-2_1.38-3_1.04",
+          "109_l_0_c_1_2_3-0_0.96-1_0.09-2_0.5-3_0.73",
+          "110_l_0_c_0_1_2-0_0.5-1_0.59-2_0.08-3_0.06",
+          "111_l_0_c_0_1_3-0_0.06-1_0.82-2_0.49-3_0.1",
+          "112_l_0_c_0_2_3-0_0.04-1_0.3-2_0.01-3_0.46",
+          "113_l_0_c_1_2_3-0_0.52-1_0.44-2_0.72-3_0.71",
+          "114_l_0_c_0_1_2-0_0.09-1_0.34-2_1.76-3_1.09",
+          "115_l_0_c_0_1_3-0_0.14-1_0.82-2_0.18-3_0.11",
+          "116_l_0_c_0_2_3-0_0.56-1_0.93-2_0.15-3_0.12",
+          "117_l_0_c_1_2_3-0_0.54-1_0.2-2_0.3-3_0.08",
+          "118_l_0_c_0_1_2-0_0.53-1_0.18-2_0.52-3_0.01",
+          "119_l_0_c_0_1_3-0_0.35-1_0.5-2_0.28-3_0.26",
+          "120_l_0_c_0_2_3-0_0.49-1_0.76-2_0.12-3_2.22",
+          "121_l_0_c_1_2_3-0_0.11-1_0.58-2_0.11-3_0.57",
+          "122_l_0_c_0_1_2-0_0.13-1_1.02-2_1.03-3_1.02",
+          "123_l_0_c_0_1_3-0_0.05-1_0.95-2_0.49-3_0.4",
+          "124_l_0_c_0_2_3-0_0.2-1_1.9-2_0.35-3_0.63",
+          "125_l_0_c_1_2_3-0_0.4-1_0.12-2_0.25-3_0.2",
+          "126_l_0_c_0_1_2-0_0.18-1_0.49-2_0.34-3_0.01",
+          "127_l_0_c_0_1_3-0_0.09-1_0.01-2_0.81-3_0.26",
+          "128_l_0_c_0_2_3-0_0.23-1_0.16-2_1.5-3_0.83",
+          "129_l_0_c_1_2_3-0_1.29-1_0.15-2_0.0-3_0.14",
+          "130_l_0_c_0_1_2-0_0.39-1_0.08-2_0.17-3_0.47",
+          "131_l_0_c_0_1_3-0_0.03-1_0.46-2_0.16-3_0.26",
+          "132_l_0_c_0_2_3-0_0.19-1_0.2-2_0.46-3_0.04",
+          "133_l_0_c_1_2_3-0_0.66-1_0.08-2_0.12-3_0.96",
+          "134_l_0_c_0_1_2-0_0.71-1_0.18-2_0.68-3_1.72",
+          "135_l_0_c_0_1_3-0_0.04-1_0.79-2_1.72-3_0.05",
+          "136_l_0_c_0_2_3-0_0.43-1_1.42-2_1.29-3_0.04",
+          "137_l_0_c_1_2_3-0_0.27-1_0.71-2_1.11-3_0.1",
+          "138_l_0_c_0_1_2-0_0.12-1_0.16-2_0.15-3_0.1",
+          "139_l_0_c_0_1_3-0_0.07-1_0.64-2_0.05-3_0.11",
+          "140_l_0_c_0_2_3-0_0.05-1_1.53-2_0.46-3_0.14",
+          "141_l_0_c_1_2_3-0_0.99-1_0.31-2_0.18-3_0.06",
+          "142_l_0_c_0_1_2-0_1.54-1_0.07-2_0.21-3_0.93",
+          "143_l_0_c_0_1_3-0_0.3-1_0.54-2_0.05-3_0.05",
+          "144_l_0_c_0_2_3-0_0.06-1_0.62-2_0.41-3_0.27",
+          "145_l_0_c_1_2_3-0_0.04-1_0.43-2_0.13-3_0.7",
+          "146_l_0_c_0_1_2-0_0.56-1_0.46-2_0.58-3_0.11",
+          "147_l_0_c_0_1_3-0_0.71-1_0.23-2_1.18-3_0.31",
+          "148_l_0_c_0_2_3-0_0.35-1_1.91-2_0.07-3_0.5",
+          "149_l_0_c_1_2_3-0_0.23-1_0.1-2_0.03-3_0.28",
+          "150_l_0_c_0_1_2-0_0.27-1_0.11-2_0.59-3_0.3",
+          "151_l_0_c_0_1_3-0_0.13-1_0.09-2_0.16-3_0.01",
+          "152_l_0_c_0_2_3-0_0.41-1_0.23-2_0.26-3_0.29",
+          "153_l_0_c_1_2_3-0_0.84-1_0.71-2_0.7-3_0.08",
+          "154_l_0_c_0_1_2-0_0.66-1_0.44-2_0.1-3_1.0",
+          "155_l_0_c_0_1_3-0_0.28-1_0.23-2_0.2-3_0.02",
+          "156_l_0_c_0_2_3-0_0.26-1_1.45-2_0.37-3_0.45",
+          "157_l_0_c_1_2_3-0_0.16-1_0.84-2_0.62-3_0.21",
+          "158_l_0_c_0_1_2-0_0.38-1_0.4-2_0.28-3_0.46",
+          "159_l_0_c_0_1_3-0_0.44-1_0.75-2_0.03-3_1.07",
+          "160_l_0_c_0_2_3-0_0.58-1_0.11-2_0.6-3_1.06",
+          "161_l_0_c_1_2_3-0_1.35-1_0.5-2_0.2-3_0.24",
+          "162_l_0_c_0_1_2-0_0.73-1_0.27-2_0.48-3_2.1",
+          "163_l_0_c_0_1_3-0_0.59-1_0.6-2_0.14-3_0.1",
+          "164_l_0_c_0_2_3-0_0.45-1_0.59-2_0.11-3_0.24",
+          "165_l_0_c_1_2_3-0_0.04-1_1.36-2_0.69-3_0.07",
+          "166_l_0_c_0_1_2-0_0.06-1_0.11-2_0.88-3_0.96",
+          "167_l_0_c_0_1_3-0_0.34-1_0.09-2_1.17-3_0.11",
+          "168_l_0_c_0_2_3-0_0.07-1_1.72-2_1.1-3_0.71",
+          "169_l_0_c_1_2_3-0_0.55-1_0.53-2_0.37-3_0.22",
+          "170_l_0_c_0_1_2-0_0.1-1_0.78-2_0.4-3_1.28",
+          "171_l_0_c_0_1_3-0_0.16-1_0.07-2_0.24-3_0.2",
+          "172_l_0_c_0_2_3-0_0.19-1_0.92-2_0.79-3_0.12",
+          "173_l_0_c_1_2_3-0_0.27-1_0.12-2_0.4-3_0.41",
+          "174_l_0_c_0_1_2-0_0.67-1_1.34-2_0.58-3_0.7",
+          "175_l_0_c_0_1_3-0_0.18-1_0.89-2_0.68-3_0.37",
+          "176_l_0_c_0_2_3-0_0.41-1_0.47-2_0.97-3_0.08",
+          "177_l_0_c_1_2_3-0_1.31-1_0.48-2_0.28-3_0.05",
+          "178_l_0_c_0_1_2-0_0.48-1_1.05-2_0.66-3_0.6",
+          "179_l_0_c_0_1_3-0_0.98-1_0.33-2_0.71-3_0.35",
+          "180_l_0_c_0_2_3-0_0.56-1_0.69-2_0.05-3_0.18",
+          "181_l_0_c_1_2_3-0_1.86-1_0.25-2_0.31-3_0.18",
+          "182_l_0_c_0_1_2-0_1.12-1_1.05-2_0.53-3_1.1",
+          "183_l_0_c_0_1_3-0_0.87-1_0.43-2_0.03-3_0.07",
+          "184_l_0_c_0_2_3-0_0.65-1_0.94-2_0.1-3_0.7",
+          "185_l_0_c_1_2_3-0_0.33-1_0.95-2_0.24-3_0.71",
+          "186_l_0_c_0_1_2-0_0.39-1_0.07-2_0.08-3_0.43",
+          "187_l_0_c_0_1_3-0_0.05-1_0.18-2_0.24-3_0.2",
+          "188_l_0_c_0_2_3-0_0.56-1_1.31-2_0.4-3_0.82",
+          "189_l_0_c_1_2_3-0_0.49-1_0.39-2_0.45-3_0.66",
+          "190_l_0_c_0_1_2-0_0.09-1_0.85-2_0.28-3_0.85",
+          "191_l_0_c_0_1_3-0_0.05-1_0.11-2_0.96-3_0.93",
+          "192_l_0_c_0_2_3-0_0.51-1_0.44-2_0.24-3_0.3",
+          "193_l_0_c_1_2_3-0_0.22-1_0.67-2_0.61-3_1.16",
+          "194_l_0_c_0_1_2-0_0.59-1_0.0-2_0.04-3_0.26",
+          "195_l_0_c_0_1_3-0_0.51-1_1.05-2_1.87-3_0.31",
+          "196_l_0_c_0_2_3-0_0.17-1_0.62-2_0.92-3_0.31",
+          "197_l_0_c_1_2_3-0_0.02-1_0.59-2_1.32-3_0.8",
+          "198_l_0_c_0_1_2-0_0.03-1_0.11-2_0.44-3_2.01",
+          "199_l_0_c_0_1_3-0_0.82-1_0.29-2_0.02-3_0.3",
+          "200_l_0_c_0_2_3-0_0.48-1_0.23-2_0.27-3_0.17",
+          "201_l_0_c_1_2_3-0_0.12-1_0.7-2_0.16-3_0.19",
+          "202_l_0_c_0_1_2-0_0.26-1_0.66-2_0.53-3_0.76",
+          "203_l_0_c_0_1_3-0_0.6-1_1.34-2_0.38-3_0.1",
+          "204_l_0_c_0_2_3-0_0.1-1_0.84-2_0.08-3_0.15",
+          "205_l_0_c_1_2_3-0_0.88-1_0.28-2_0.67-3_0.83",
+          "206_l_0_c_0_1_2-0_0.22-1_0.21-2_1.45-3_0.36",
+          "207_l_0_c_0_1_3-0_0.02-1_0.15-2_0.1-3_0.38",
+          "208_l_0_c_0_2_3-0_0.41-1_1.88-2_1.04-3_0.83",
+          "209_l_0_c_1_2_3-0_0.92-1_1.3-2_0.2-3_0.78",
+          "210_l_0_c_0_1_2-0_0.08-1_0.03-2_0.04-3_0.1",
+          "211_l_0_c_0_1_3-0_0.83-1_0.46-2_0.19-3_0.34",
+          "212_l_0_c_0_2_3-0_0.54-1_1.0-2_0.82-3_0.8",
+          "213_l_0_c_1_2_3-0_1.51-1_0.67-2_1.93-3_0.31",
+          "214_l_0_c_0_1_2-0_0.04-1_1.63-2_0.74-3_0.07",
+          "215_l_0_c_0_1_3-0_0.77-1_0.06-2_2.47-3_1.47",
+          "216_l_0_c_0_2_3-0_0.63-1_0.07-2_0.11-3_0.27",
+          "217_l_0_c_1_2_3-0_1.25-1_0.56-2_0.11-3_0.06",
+          "218_l_0_c_0_1_2-0_0.18-1_0.15-2_0.08-3_0.52",
+          "219_l_0_c_0_1_3-0_0.01-1_0.33-2_0.22-3_0.13",
+          "220_l_0_c_0_2_3-0_0.5-1_0.55-2_0.03-3_0.27",
+          "221_l_0_c_1_2_3-0_0.94-1_0.62-2_0.52-3_0.41",
+          "222_l_0_c_0_1_2-0_0.45-1_0.42-2_0.35-3_1.3",
+          "223_l_0_c_0_1_3-0_0.07-1_0.07-2_0.13-3_0.04",
+          "224_l_0_c_0_2_3-0_1.61-1_0.44-2_0.05-3_0.08",
+          "225_l_0_c_1_2_3-0_0.82-1_0.56-2_0.97-3_0.05",
+          "226_l_0_c_0_1_2-0_0.19-1_0.32-2_0.45-3_0.5",
+          "227_l_0_c_0_1_3-0_0.78-1_0.51-2_2.04-3_0.56",
+          "228_l_0_c_0_2_3-0_0.15-1_0.4-2_0.23-3_1.22",
+          "229_l_0_c_1_2_3-0_0.26-1_0.23-2_1.38-3_0.32",
+          "230_l_0_c_0_1_2-0_0.85-1_0.18-2_0.33-3_0.01",
+          "231_l_0_c_0_1_3-0_0.89-1_0.19-2_0.47-3_0.48",
+          "232_l_0_c_0_2_3-0_0.47-1_0.49-2_0.32-3_0.02",
+          "233_l_0_c_1_2_3-0_1.85-1_0.08-2_0.02-3_0.19",
+          "234_l_0_c_0_1_2-0_0.29-1_0.03-2_0.53-3_0.12",
+          "235_l_0_c_0_1_3-0_0.56-1_1.17-2_0.53-3_0.3",
+          "236_l_0_c_0_2_3-0_0.2-1_0.38-2_1.49-3_0.16",
+          "237_l_0_c_1_2_3-0_0.8-1_0.03-2_0.73-3_0.15",
+          "238_l_0_c_0_1_2-0_0.01-1_0.01-2_0.47-3_1.36",
+          "239_l_0_c_0_1_3-0_0.28-1_0.1-2_1.07-3_0.43",
+          "240_l_0_c_0_2_3-0_0.18-1_0.53-2_0.17-3_0.01",
+          "241_l_0_c_1_2_3-0_0.7-1_0.72-2_0.42-3_0.97",
+          "242_l_0_c_0_1_2-0_0.27-1_0.54-2_0.1-3_0.48",
+          "243_l_0_c_0_1_3-0_1.25-1_0.22-2_0.62-3_0.06",
+          "244_l_0_c_0_2_3-0_0.17-1_0.97-2_0.03-3_0.16",
+          "245_l_0_c_1_2_3-0_0.12-1_0.27-2_1.03-3_0.15",
+          "246_l_0_c_0_1_2-0_0.06-1_0.45-2_0.25-3_0.55",
+          "247_l_0_c_0_1_3-0_1.46-1_0.26-2_0.27-3_0.32",
+          "248_l_0_c_0_2_3-0_0.11-1_1.39-2_0.07-3_0.76",
+          "249_l_0_c_1_2_3-0_0.41-1_0.5-2_0.06-3_0.3",
+          "250_l_0_c_0_1_2-0_0.94-1_0.09-2_0.09-3_0.83",
+          "251_l_0_c_0_1_3-0_0.45-1_0.07-2_0.55-3_0.39",
+          "252_l_0_c_0_2_3-0_0.31-1_0.25-2_0.6-3_0.16",
+          "253_l_0_c_1_2_3-0_0.18-1_0.12-2_0.13-3_0.55",
+          "254_l_0_c_0_1_2-0_0.57-1_1.09-2_0.74-3_0.05",
+          "255_l_0_c_0_1_3-0_0.16-1_0.64-2_1.69-3_0.01",
+          "256_l_0_c_0_2_3-0_0.09-1_0.99-2_0.18-3_0.01",
+          "257_l_0_c_1_2_3-0_1.03-1_0.5-2_0.79-3_0.1",
+          "258_l_0_c_0_1_2-0_0.2-1_0.43-2_0.14-3_0.04",
+          "259_l_0_c_0_1_3-0_0.19-1_0.38-2_0.83-3_0.35",
+          "260_l_0_c_0_2_3-0_0.27-1_0.93-2_0.62-3_0.01",
+          "261_l_0_c_1_2_3-0_1.59-1_0.11-2_0.41-3_1.02",
+          "262_l_0_c_0_1_2-0_0.88-1_0.16-2_0.27-3_0.14",
+          "263_l_0_c_0_1_3-0_0.15-1_0.28-2_1.69-3_0.2",
+          "264_l_0_c_0_2_3-0_0.08-1_0.26-2_0.13-3_0.25",
+          "265_l_0_c_1_2_3-0_1.11-1_0.58-2_1.7-3_0.04",
+          "266_l_0_c_0_1_2-0_0.51-1_0.51-2_0.69-3_1.07",
+          "267_l_0_c_0_1_3-0_0.25-1_0.24-2_1.0-3_0.02",
+          "268_l_0_c_0_2_3-0_0.09-1_0.68-2_0.05-3_0.21",
+          "269_l_0_c_1_2_3-0_0.08-1_0.7-2_1.13-3_0.76",
+          "270_l_0_c_0_1_2-0_0.43-1_0.12-2_0.99-3_0.46",
+          "271_l_0_c_0_1_3-0_0.33-1_1.36-2_1.4-3_0.15",
+          "272_l_0_c_0_2_3-0_0.09-1_0.06-2_0.59-3_0.03",
+          "273_l_0_c_1_2_3-0_0.41-1_0.33-2_0.26-3_0.19",
+          "274_l_0_c_0_1_2-0_0.03-1_0.31-2_0.04-3_0.37",
+          "275_l_0_c_0_1_3-0_0.38-1_0.02-2_0.83-3_0.38",
+          "276_l_0_c_0_2_3-0_1.37-1_0.3-2_0.99-3_0.79",
+          "277_l_0_c_1_2_3-0_0.24-1_1.02-2_0.43-3_0.01",
+          "278_l_0_c_0_1_2-0_0.29-1_1.14-2_0.33-3_0.16",
+          "279_l_0_c_0_1_3-0_1.47-1_0.76-2_0.53-3_0.13",
+          "280_l_0_c_0_2_3-0_0.48-1_1.42-2_1.84-3_0.41",
+          "281_l_0_c_1_2_3-0_1.02-1_0.58-2_0.41-3_0.24",
+          "282_l_0_c_0_1_2-0_0.26-1_0.91-2_0.04-3_0.72",
+          "283_l_0_c_0_1_3-0_0.43-1_0.36-2_0.02-3_0.18",
+          "284_l_0_c_0_2_3-0_0.12-1_0.58-2_0.02-3_0.1",
+          "285_l_0_c_1_2_3-0_1.38-1_0.22-2_0.02-3_0.04",
+          "286_l_0_c_0_1_2-0_0.25-1_0.42-2_1.01-3_0.07",
+          "287_l_0_c_0_1_3-0_0.43-1_0.74-2_1.07-3_0.26",
+          "288_l_0_c_0_2_3-0_0.36-1_0.08-2_0.36-3_0.23",
+          "289_l_0_c_1_2_3-0_0.93-1_0.11-2_0.92-3_0.1",
+          "290_l_0_c_0_1_2-0_0.43-1_0.61-2_0.21-3_0.6",
+          "291_l_0_c_0_1_3-0_1.24-1_0.02-2_0.8-3_0.17",
+          "292_l_0_c_0_2_3-0_0.3-1_0.0-2_0.15-3_0.86",
+          "293_l_0_c_1_2_3-0_0.06-1_0.77-2_1.34-3_0.6",
+          "294_l_0_c_0_1_2-0_1.31-1_0.62-2_1.25-3_0.35",
+          "295_l_0_c_3-0_2.17-1_0.31-2_1.42-3_0.04",
+          "296_l_0_r-0_0.87-1_0.39-2_1.34-3_0.51",
+          "297_l_0_r-0_0.23-1_0.53-2_0.56-3_0.98",
+          "298_l_0_r-0_0.56-1_1.41-2_1.44-3_0.26",
+          "299_l_0_r-0_0.59-1_0.78-2_1.47-3_0.9",
+          "300_l_0_r-0_0.62-1_0.23-2_0.19-3_0.56",
+          "301_l_0_r-0_0.41-1_0.03-2_1.38-3_0.21",
+          "302_l_0_r-0_0.01-1_1.47-2_0.45-3_0.66",
+          "303_l_0_r-0_0.83-1_0.41-2_0.59-3_0.34",
+          "304_l_0_r-0_1.62-1_0.7-2_1.55-3_0.87",
+          "305_l_0_r-0_0.17-1_0.98-2_0.16-3_0.93",
+          "306_l_0_r-0_0.92-1_0.94-2_1.06-3_0.74",
+          "307_l_0_r-0_1.4-1_0.93-2_0.41-3_0.0",
+          "308_l_0_r-0_0.23-1_1.47-2_0.77-3_0.78",
+          "309_l_0_r-0_1.16-1_2.18-2_0.25-3_1.16",
+          "310_l_0_r-0_1.02-1_1.39-2_0.5-3_1.23",
+          "311_l_0_r-0_1.72-1_1.05-2_1.01-3_0.11",
+          "312_l_0_r-0_1.87-1_0.67-2_0.39-3_0.83",
+          "313_l_0_r-0_0.77-1_1.08-2_0.33-3_0.86",
+          "314_l_0_r-0_0.72-1_0.05-2_0.14-3_0.79",
+          "315_l_0_r-0_0.33-1_1.79-2_0.32-3_0.21",
+          "316_l_0_r-0_0.63-1_1.25-2_0.46-3_0.12",
+          "317_l_0_r-0_0.16-1_0.27-2_1.75-3_1.2",
+          "318_l_0_r-0_1.31-1_0.1-2_0.5-3_0.9",
+          "319_l_0_r-0_0.19-1_0.06-2_2.24-3_0.58",
+          "320_l_0_r-0_1.75-1_0.55-2_0.34-3_0.16",
+          "321_l_0_r-0_0.31-1_0.53-2_2.1-3_0.64",
+          "322_l_0_r-0_0.24-1_0.82-2_0.21-3_0.74",
+          "323_l_0_r-0_0.47-1_1.26-2_2.16-3_0.96",
+          "324_l_0_r-0_1.01-1_0.27-2_0.73-3_0.92",
+          "325_l_0_r-0_0.12-1_1.0-2_1.21-3_0.17",
+          "326_l_0_r-0_0.43-1_2.22-2_1.0-3_0.89",
+          "327_l_0_r-0_0.35-1_1.53-2_0.28-3_0.58",
+          "328_l_0_r-0_1.67-1_0.47-2_0.37-3_0.79",
+          "329_l_0_r-0_0.43-1_0.31-2_0.64-3_1.43",
+          "330_l_0_r-0_0.81-1_0.73-2_1.88-3_2.11",
+          "331_l_0_r-0_0.71-1_0.17-2_0.9-3_0.29",
+          "332_l_0_r-0_1.67-1_0.11-2_0.33-3_0.87",
+          "333_l_0_r-0_0.65-1_0.8-2_0.72-3_1.29",
+          "334_l_0_r-0_1.22-1_1.12-2_0.0-3_0.3",
+          "335_l_0_r-0_0.98-1_1.18-2_1.75-3_0.04",
+          "336_l_0_r-0_0.38-1_0.07-2_1.0-3_0.88",
+          "337_l_0_r-0_0.11-1_1.43-2_1.12-3_0.64",
+          "338_l_0_r-0_0.84-1_0.93-2_0.04-3_0.27",
+          "339_l_0_r-0_0.93-1_0.25-2_0.06-3_0.44",
+          "340_l_0_r-0_1.28-1_2.22-2_0.4-3_0.68",
+          "341_l_0_r-0_0.18-1_0.32-2_0.67-3_0.18",
+          "342_l_0_r-0_0.08-1_1.23-2_0.18-3_0.85",
+          "343_l_0_r-0_0.23-1_1.24-2_0.82-3_0.97",
+          "344_l_0_r-0_0.21-1_0.58-2_0.09-3_1.16",
+          "345_l_0_r-0_0.1-1_1.2-2_0.08-3_0.48",
+          "346_l_0_r-0_0.12-1_0.67-2_2.58-3_0.04",
+          "347_l_0_r-0_1.23-1_1.95-2_0.25-3_0.45",
+          "348_l_0_r-0_1.07-1_0.72-2_0.64-3_2.11",
+          "349_l_0_r-0_1.11-1_0.0-2_1.97-3_1.2",
+          "350_l_0_r-0_0.23-1_0.35-2_0.09-3_0.48",
+          "351_l_0_r-0_1.47-1_1.03-2_0.52-3_0.24",
+          "352_l_0_r-0_0.62-1_0.55-2_0.37-3_0.91",
+          "353_l_0_r-0_0.37-1_0.64-2_0.98-3_1.32",
+          "354_l_0_r-0_0.46-1_0.47-2_0.24-3_1.16",
+          "355_l_0_r-0_0.77-1_1.21-2_0.65-3_0.65",
+          "356_l_0_r-0_1.56-1_0.53-2_0.21-3_0.16",
+          "357_l_0_r-0_0.91-1_0.03-2_0.22-3_0.44",
+          "358_l_0_r-0_0.22-1_1.31-2_0.67-3_0.07",
+          "359_l_0_r-0_0.24-1_0.75-2_0.64-3_1.0",
+          "360_l_0_r-0_2.34-1_0.38-2_0.15-3_0.53",
+          "361_l_0_r-0_0.28-1_0.07-2_0.79-3_0.62",
+          "362_l_0_r-0_0.6-1_1.18-2_0.0-3_0.28",
+          "363_l_0_r-0_0.67-1_0.7-2_0.34-3_0.83",
+          "364_l_0_r-0_2.0-1_1.08-2_0.52-3_0.27",
+          "365_l_0_r-0_0.45-1_0.96-2_0.98-3_0.78",
+          "366_l_0_r-0_0.38-1_0.5-2_0.26-3_0.24",
+          "367_l_0_r-0_0.05-1_0.68-2_1.12-3_1.55",
+          "368_l_0_r-0_0.28-1_1.87-2_1.34-3_0.81",
+          "369_l_0_r-0_0.79-1_1.15-2_0.03-3_1.05",
+          "370_l_0_r-0_1.78-1_1.02-2_0.55-3_1.19",
+          "371_l_0_r-0_1.59-1_0.6-2_0.19-3_0.01",
+          "372_l_0_r-0_0.87-1_0.09-2_1.81-3_0.8",
+          "373_l_0_r-0_0.29-1_0.54-2_0.74-3_0.41",
+          "374_l_0_r-0_0.63-1_0.43-2_0.1-3_1.03",
+          "375_l_0_r-0_0.64-1_0.28-2_0.03-3_0.5",
+          "376_l_0_r-0_0.5-1_0.19-2_0.89-3_0.98",
+          "377_l_0_r-0_0.49-1_0.72-2_1.25-3_0.19",
+          "378_l_0_r-0_1.26-1_1.42-2_0.83-3_0.58",
+          "379_l_0_r-0_0.22-1_0.09-2_0.6-3_1.49",
+          "380_l_0_r-0_1.6-1_0.19-2_0.58-3_0.69",
+          "381_l_0_r-0_0.74-1_0.57-2_1.36-3_0.71",
+          "382_l_0_r-0_0.11-1_1.37-2_0.51-3_0.47",
+          "383_l_0_r-0_0.61-1_0.42-2_1.39-3_0.86",
+          "384_l_0_r-0_0.6-1_1.28-2_2.13-3_1.82",
+          "385_l_0_r-0_0.69-1_0.48-2_1.09-3_1.27",
+          "386_l_0_r-0_0.21-1_0.59-2_0.88-3_1.15",
+          "387_l_0_r-0_0.45-1_0.56-2_0.28-3_0.81",
+          "388_l_0_r-0_0.71-1_0.32-2_1.26-3_0.5",
+          "389_l_0_r-0_0.28-1_0.09-2_0.14-3_1.13",
+          "390_l_0_r-0_0.19-1_0.1-2_1.26-3_1.93",
+          "391_l_0_r-0_0.44-1_0.87-2_0.66-3_0.16",
+          "392_l_0_r-0_0.42-1_0.77-2_1.21-3_0.81",
+          "393_l_0_r-0_0.77-1_0.42-2_1.17-3_0.3",
+          "394_l_0_r-0_1.23-1_0.12-2_0.76-3_0.57",
+          "395_l_0_r-0_0.48-1_0.45-2_1.65-3_0.93",
+          "396_l_0_r-0_0.09-1_0.27-2_0.35-3_1.99",
+          "397_l_0_r-0_0.31-1_0.38-2_0.08-3_0.38",
+          "398_l_0_r-0_1.35-1_0.59-2_0.83-3_0.74",
+          "399_l_0_r-0_1.33-1_0.79-2_0.09-3_1.42",
+          "400_l_0_r-0_0.56-1_1.62-2_0.16-3_0.54",
+          "401_l_0_r-0_0.2-1_1.62-2_2.07-3_0.41",
+          "402_l_0_r-0_0.08-1_1.23-2_0.59-3_1.14",
+          "403_l_0_r-0_0.57-1_0.79-2_0.22-3_0.61",
+          "404_l_0_r-0_1.08-1_1.36-2_1.11-3_0.64",
+          "405_l_0_r-0_0.77-1_0.62-2_1.92-3_0.45",
+          "406_l_0_r-0_0.73-1_1.0-2_0.29-3_0.34",
+          "407_l_0_r-0_0.16-1_0.26-2_0.39-3_1.25",
+          "408_l_0_r-0_1.44-1_1.37-2_0.1-3_1.81",
+          "409_l_0_r-0_0.03-1_0.12-2_1.26-3_0.41",
+          "410_l_0_r-0_0.81-1_0.09-2_1.15-3_0.77",
+          "411_l_0_r-0_0.42-1_0.12-2_0.45-3_0.68",
+          "412_l_0_r-0_1.38-1_0.99-2_0.84-3_0.74",
+          "413_l_0_r-0_0.07-1_0.7-2_1.3-3_0.32",
+          "414_l_0_r-0_0.97-1_0.05-2_0.2-3_0.52",
+          "415_l_0_r-0_0.74-1_0.25-2_1.57-3_1.01",
+          "416_l_0_r-0_0.74-1_1.77-2_2.09-3_0.76",
+          "417_l_0_r-0_0.5-1_0.98-2_0.11-3_0.06",
+          "418_l_0_r-0_1.33-1_0.1-2_0.94-3_0.7",
+          "419_l_0_r-0_1.12-1_0.54-2_0.09-3_0.14",
+          "420_l_0_r-0_0.58-1_0.53-2_0.25-3_0.76",
+          "421_l_0_r-0_0.67-1_0.56-2_0.82-3_0.69",
+          "422_l_0_r-0_0.3-1_0.23-2_1.06-3_0.22",
+          "423_l_0_r-0_0.46-1_0.88-2_0.54-3_0.19",
+          "424_l_0_r-0_0.68-1_0.72-2_0.3-3_0.05",
+          "425_l_0_r-0_1.8-1_0.57-2_0.4-3_0.54",
+          "426_l_0_r-0_1.66-1_0.42-2_1.07-3_1.17",
+          "427_l_0_r-0_0.28-1_1.09-2_1.67-3_0.44",
+          "428_l_0_r-0_0.97-1_0.91-2_0.93-3_0.17",
+          "429_l_0_r-0_0.39-1_0.74-2_0.41-3_1.48",
+          "430_l_0_r-0_0.14-1_1.1-2_0.1-3_0.18",
+          "431_l_0_r-0_0.21-1_0.67-2_0.84-3_0.98",
+          "432_l_0_r-0_0.45-1_0.37-2_2.15-3_1.28",
+          "433_l_0_r-0_0.63-1_0.27-2_1.14-3_0.74",
+          "434_l_0_r-0_2.05-1_1.55-2_1.38-3_0.66",
+          "435_l_0_r-0_0.56-1_1.1-2_2.06-3_1.01",
+          "436_l_0_r-0_0.35-1_0.19-2_1.68-3_0.07",
+          "437_l_0_r-0_1.14-1_0.09-2_0.13-3_1.67",
+          "438_l_0_r-0_0.93-1_0.97-2_0.1-3_0.51",
+          "439_l_0_r-0_0.1-1_0.47-2_0.26-3_1.0",
+          "440_l_0_r-0_0.6-1_1.74-2_0.89-3_1.37",
+          "441_l_0_r-0_0.93-1_0.67-2_0.6-3_0.18",
+          "442_l_0_r-0_1.42-1_0.52-2_0.7-3_0.16",
+          "443_l_0_r-0_1.74-1_0.66-2_0.93-3_1.04",
+          "444_l_0_r-0_0.49-1_0.26-2_0.22-3_1.12",
+          "445_l_0_r-0_1.27-1_0.3-2_1.52-3_2.28",
+          "446_l_0_r-0_0.11-1_0.01-2_0.38-3_0.69",
+          "447_l_0_r-0_1.4-1_0.74-2_0.39-3_0.12",
+          "448_l_0_r-0_0.68-1_0.55-2_0.11-3_0.01",
+          "449_l_0_r-0_0.98-1_0.85-2_2.3-3_0.91",
+          "450_l_0_r-0_1.05-1_0.17-2_2.15-3_0.37",
+          "451_l_0_r-0_0.41-1_2.16-2_0.62-3_0.07",
+          "452_l_0_r-0_0.6-1_0.34-2_1.21-3_1.22",
+          "453_l_0_r-0_0.36-1_0.45-2_0.64-3_1.11",
+          "454_l_0_r-0_0.46-1_0.14-2_0.77-3_0.57",
+          "455_l_0_r-0_1.37-1_0.41-2_1.35-3_0.08",
+          "456_l_0_r-0_0.22-1_0.44-2_0.8-3_0.0",
+          "457_l_0_r-0_0.39-1_0.51-2_0.62-3_0.03",
+          "458_l_0_r-0_1.73-1_1.12-2_0.54-3_0.34",
+          "459_l_0_r-0_0.35-1_0.3-2_0.05-3_1.08",
+          "460_l_0_r-0_0.25-1_0.35-2_2.11-3_0.13",
+          "461_l_0_r-0_0.14-1_0.54-2_0.84-3_1.53",
+          "462_l_0_r-0_0.26-1_0.47-2_1.96-3_1.54",
+          "463_l_0_r-0_0.85-1_0.52-2_0.76-3_0.56",
+          "464_l_0_r-0_1.07-1_0.65-2_0.76-3_1.28",
+          "465_l_0_r-0_0.06-1_0.12-2_0.55-3_0.39",
+          "466_l_0_r-0_0.17-1_1.1-2_0.55-3_0.33",
+          "467_l_0_r-0_1.32-1_0.43-2_0.32-3_0.11",
+          "468_l_0_r-0_0.21-1_0.67-2_2.29-3_0.39",
+          "469_l_0_r-0_0.33-1_0.86-2_0.43-3_1.67",
+          "470_l_0_r-0_1.25-1_0.34-2_1.62-3_0.14",
+          "471_l_0_r-0_1.31-1_0.89-2_1.06-3_0.96",
+          "472_l_0_r-0_0.54-1_0.28-2_1.43-3_1.45",
+          "473_l_0_r-0_1.5-1_0.71-2_0.84-3_2.07",
+          "474_l_0_r-0_0.41-1_0.46-2_0.03-3_0.32",
+          "475_l_0_r-0_0.39-1_0.59-2_0.08-3_1.04",
+          "476_l_0_r-0_1.04-1_0.76-2_0.89-3_0.11",
+          "477_l_0_r-0_0.7-1_0.07-2_0.14-3_0.24",
+          "478_l_0_r-0_1.51-1_0.06-2_2.45-3_0.89",
+          "479_l_0_r-0_0.03-1_0.9-2_1.52-3_1.44",
+          "480_l_0_r-0_0.72-1_1.42-2_0.66-3_1.44",
+          "481_l_0_r-0_0.42-1_0.54-2_1.42-3_0.72",
+          "482_l_0_r-0_0.47-1_0.18-2_1.43-3_0.75",
+          "483_l_0_r-0_0.35-1_0.23-2_1.85-3_0.8",
+          "484_l_0_r-0_0.8-1_0.63-2_0.16-3_1.11",
+          "485_l_0_r-0_0.53-1_0.03-2_0.39-3_0.03",
+          "486_l_0_r-0_1.71-1_0.22-2_2.17-3_0.87",
+          "487_l_0_r-0_1.58-1_0.16-2_1.12-3_1.06",
+          "488_l_0_r-0_0.25-1_1.15-2_0.37-3_0.96",
+          "489_l_0_r-0_0.89-1_0.96-2_0.36-3_0.36",
+          "490_l_0_r-0_0.73-1_0.43-2_0.1-3_0.15",
+          "491_l_0_r-0_1.11-1_0.38-2_0.38-3_1.34",
+          "492_l_0_r-0_0.32-1_0.05-2_0.74-3_0.58",
+          "493_l_0_r-0_0.41-1_1.23-2_0.33-3_0.49",
+          "494_l_0_r-0_0.66-1_0.08-2_0.02-3_0.17",
+          "495_l_0_r-0_0.12-1_0.68-2_1.93-3_1.65",
+          "496_l_0_r-0_0.01-1_0.11-2_0.64-3_1.75",
+          "497_l_0_r-0_0.01-1_1.34-2_0.8-3_0.43",
+          "498_l_0_r-0_1.28-1_0.43-2_1.23-3_0.22",
+          "499_l_0_r-0_1.07-1_0.34-2_0.1-3_0.62",
+          "500_l_0_r-0_1.6-1_0.17-2_0.81-3_0.7",
+          "501_l_0_r-0_0.27-1_0.28-2_0.29-3_1.1",
+          "502_l_0_r-0_0.54-1_0.11-2_1.12-3_0.67",
+          "503_l_0_r-0_0.31-1_0.8-2_0.59-3_0.45",
+          "504_l_0_r-0_0.75-1_0.21-2_1.63-3_0.16",
+          "505_l_0_r-0_2.27-1_0.27-2_0.6-3_0.51",
+          "506_l_0_r-0_0.65-1_0.38-2_0.38-3_1.07",
+          "507_l_0_r-0_0.8-1_0.08-2_0.41-3_1.02",
+          "508_l_0_r-0_0.2-1_0.84-2_1.69-3_0.94",
+          "509_l_0_r-0_0.68-1_0.01-2_0.27-3_1.39",
+          "510_l_0_r-0_1.51-1_0.01-2_0.37-3_1.37",
+          "511_l_0_r-0_0.27-1_1.11-2_0.87-3_0.93",
+          "512_l_0_r-0_1.9-1_0.25-2_0.75-3_1.18",
+          "513_l_0_r-0_0.49-1_1.6-2_0.11-3_0.51",
+          "514_l_0_r-0_1.18-1_1.02-2_0.22-3_0.62",
+          "515_l_0_r-0_0.81-1_1.54-2_0.36-3_0.13",
+          "516_l_0_r-0_0.64-1_0.06-2_0.44-3_1.48",
+          "517_l_0_r-0_0.27-1_0.7-2_0.53-3_0.56",
+          "518_l_0_r-0_1.36-1_0.79-2_0.47-3_0.07",
+          "519_l_0_r-0_0.88-1_0.44-2_0.44-3_0.43",
+          "520_l_0_r-0_0.48-1_1.12-2_1.43-3_1.05",
+          "521_l_0_r-0_0.25-1_0.62-2_0.02-3_0.49",
+          "522_l_0_r-0_0.69-1_0.87-2_0.65-3_1.12",
+          "523_l_0_r-0_1.58-1_0.97-2_0.11-3_0.55",
+          "524_l_0_r-0_1.47-1_0.11-2_0.36-3_0.05",
+          "525_l_0_r-0_1.64-1_0.61-2_1.87-3_0.62",
+          "526_l_0_r-0_1.55-1_0.02-2_0.23-3_1.35",
+          "527_l_0_r-0_1.07-1_0.2-2_0.65-3_0.4",
+          "528_l_0_r-0_0.14-1_0.92-2_0.72-3_0.25",
+          "529_l_0_r-0_1.09-1_0.99-2_0.6-3_1.79",
+          "530_l_0_r-0_0.14-1_0.04-2_0.51-3_0.81",
+          "531_l_0_r-0_1.31-1_0.51-2_1.64-3_1.34",
+          "532_l_0_r-0_1.28-1_0.1-2_0.28-3_0.4",
+          "533_l_0_r-0_0.44-1_0.53-2_1.22-3_0.53",
+          "534_l_0_r-0_1.27-1_0.68-2_1.09-3_0.24",
+          "535_l_0_r-0_1.19-1_1.21-2_0.15-3_1.47",
+          "536_l_0_r-0_0.35-1_1.06-2_0.33-3_0.66",
+          "537_l_0_r-0_0.69-1_0.84-2_0.69-3_1.92",
+          "538_l_0_r-0_0.77-1_0.84-2_0.91-3_1.1",
+          "539_l_0_r-0_1.44-1_0.51-2_0.55-3_0.76",
+          "540_l_0_r-0_1.3-1_0.01-2_1.38-3_1.18",
+          "541_l_0_r-0_1.46-1_0.07-2_1.1-3_0.69",
+          "542_l_0_r-0_0.57-1_1.16-2_0.16-3_0.37",
+          "543_l_0_r-0_0.34-1_0.19-2_0.01-3_0.27",
+          "544_l_0_r-0_0.16-1_1.34-2_0.14-3_0.04",
+          "545_l_0_r-0_0.69-1_0.5-2_0.46-3_0.01",
+          "546_l_0_r-0_0.45-1_0.86-2_0.99-3_0.4",
+          "547_l_0_r-0_2.05-1_0.91-2_0.76-3_0.98",
+          "548_l_0_r-0_1.2-1_1.93-2_1.72-3_0.3",
+          "549_l_0_r-0_0.8-1_0.35-2_1.57-3_1.34",
+          "550_l_0_r-0_0.22-1_0.79-2_0.3-3_1.4",
+          "551_l_0_r-0_0.94-1_0.08-2_0.22-3_1.15",
+          "552_l_0_r-0_0.64-1_0.02-2_1.3-3_1.05",
+          "553_l_0_r-0_0.94-1_0.85-2_0.01-3_1.11",
+          "554_l_0_r-0_0.3-1_0.34-2_0.8-3_0.5",
+          "555_l_0_r-0_0.58-1_0.39-2_0.66-3_0.4",
+          "556_l_0_r-0_0.17-1_0.38-2_1.41-3_1.19",
+          "557_l_0_r-0_0.33-1_1.41-2_0.29-3_1.07",
+          "558_l_0_r-0_0.59-1_0.59-2_0.29-3_0.65",
+          "559_l_0_r-0_0.68-1_0.62-2_0.93-3_0.07",
+          "560_l_0_r-0_0.2-1_0.73-2_1.81-3_1.1",
+          "561_l_0_r-0_0.37-1_0.43-2_1.57-3_0.5",
+          "562_l_0_r-0_0.68-1_1.41-2_0.42-3_0.63",
+          "563_l_0_r-0_1.06-1_0.11-2_0.6-3_0.71",
+          "564_l_0_r-0_0.83-1_1.06-2_0.84-3_0.24",
+          "565_l_0_r-0_0.39-1_0.09-2_1.06-3_0.17",
+          "566_l_0_r-0_0.37-1_1.46-2_1.07-3_1.0",
+          "567_l_0_r-0_0.32-1_0.64-2_0.85-3_0.74",
+          "568_l_0_r-0_0.25-1_0.4-2_0.85-3_2.11",
+          "569_l_0_r-0_0.72-1_0.46-2_0.63-3_0.36",
+          "570_l_0_r-0_0.2-1_0.05-2_1.79-3_1.38",
+          "571_l_0_r-0_0.43-1_1.36-2_0.48-3_0.27",
+          "572_l_0_r-0_0.24-1_0.96-2_1.59-3_1.53",
+          "573_l_0_r-0_0.24-1_0.2-2_1.13-3_0.1",
+          "574_l_0_r-0_0.8-1_1.59-2_0.24-3_0.32",
+          "575_l_0_r-0_1.45-1_0.65-2_0.88-3_0.09",
+          "576_l_0_r-0_0.96-1_0.78-2_0.21-3_1.67",
+          "577_l_0_r-0_0.11-1_0.28-2_1.65-3_0.37",
+          "578_l_0_r-0_1.2-1_1.53-2_0.29-3_0.77",
+          "579_l_0_r-0_0.69-1_0.3-2_0.81-3_0.51",
+          "580_l_0_r-0_0.63-1_0.29-2_2.41-3_0.77",
+          "581_l_0_r-0_0.54-1_0.1-2_0.25-3_0.69",
+          "582_l_0_r-0_0.28-1_0.74-2_0.65-3_0.98",
+          "583_l_0_r-0_0.1-1_1.09-2_1.15-3_0.53",
+          "584_l_0_r-0_0.24-1_1.64-2_1.91-3_0.24",
+          "585_l_0_r-0_0.18-1_1.38-2_0.41-3_1.43",
+          "586_l_0_r-0_1.13-1_0.45-2_0.11-3_0.46",
+          "587_l_0_r-0_0.26-1_0.41-2_0.21-3_0.72",
+          "588_l_0_r-0_0.48-1_1.13-2_0.49-3_0.25",
+          "589_l_0_r-0_0.68-1_0.04-2_3.15-3_0.73",
+          "590_l_0_r-0_0.65-1_0.08-2_0.04-3_0.14",
+          "591_l_0_r-0_1.24-1_0.17-2_0.79-3_0.45",
+          "592_l_0_r-0_0.47-1_1.09-2_1.67-3_0.2",
+          "593_l_0_r-0_0.42-1_0.82-2_0.24-3_0.34",
+          "594_l_0_r-0_0.64-1_1.16-2_0.96-3_0.13",
+          "595_l_0_r-0_1.76-1_0.81-2_2.3-3_2.65",
+          "596_l_0_r-0_1.58-1_1.13-2_0.58-3_0.23",
+          "597_l_0_r-0_1.07-1_0.62-2_0.83-3_1.64",
+          "598_l_0_r-0_0.58-1_0.52-2_1.44-3_0.45",
+          "599_l_0_r-0_1.31-1_1.0-2_0.13-3_1.32",
+          "600_l_0_r-0_0.36-1_1.64-2_0.71-3_0.63",
+          "601_l_0_r-0_0.2-1_2.12-2_0.14-3_1.34",
+          "602_l_0_r-0_0.58-1_0.27-2_0.86-3_1.06",
+          "603_l_0_r-0_0.78-1_1.43-2_0.59-3_1.07",
+          "604_l_0_r-0_1.02-1_1.14-2_0.6-3_0.59",
+          "605_l_0_r-0_0.22-1_0.81-2_0.62-3_0.76",
+          "606_l_0_r-0_0.02-1_0.02-2_0.23-3_0.1",
+          "607_l_0_r-0_0.11-1_1.37-2_1.8-3_1.14",
+          "608_l_0_r-0_0.92-1_1.22-2_1.01-3_0.56",
+          "609_l_0_r-0_1.37-1_1.21-2_0.02-3_1.8",
+          "610_l_0_r-0_0.74-1_0.3-2_0.93-3_1.31",
+          "611_l_0_r-0_0.14-1_1.04-2_0.85-3_0.12",
+          "612_l_0_r-0_1.27-1_0.74-2_0.42-3_0.67",
+          "613_l_0_r-0_0.52-1_0.55-2_1.06-3_1.18",
+          "614_l_0_r-0_0.3-1_0.99-2_1.75-3_0.41",
+          "615_l_0_r-0_0.4-1_1.15-2_0.77-3_1.73",
+          "616_l_0_r-0_0.97-1_0.35-2_0.35-3_1.35",
+          "617_l_0_r-0_1.15-1_0.96-2_0.77-3_0.21",
+          "618_l_0_r-0_0.01-1_0.82-2_0.58-3_0.18",
+          "619_l_0_r-0_0.12-1_0.91-2_0.54-3_2.02",
+          "620_l_0_r-0_1.23-1_0.11-2_1.26-3_1.34",
+          "621_l_0_r-0_0.26-1_0.37-2_0.57-3_1.26",
+          "622_l_0_r-0_0.43-1_0.86-2_0.19-3_0.95",
+          "623_l_0_r-0_1.04-1_1.08-2_1.66-3_0.12",
+          "624_l_0_r-0_0.36-1_0.75-2_0.21-3_1.8",
+          "625_l_0_r-0_0.47-1_0.93-2_1.04-3_0.59",
+          "626_l_0_r-0_0.85-1_0.26-2_0.11-3_1.53",
+          "627_l_0_r-0_0.61-1_0.05-2_0.55-3_0.16",
+          "628_l_0_r-0_0.56-1_1.74-2_0.87-3_0.83",
+          "629_l_0_r-0_0.38-1_1.33-2_0.87-3_2.11",
+          "630_l_0_r-0_1.27-1_0.78-2_1.38-3_0.22",
+          "631_l_0_r-0_0.14-1_1.36-2_2.17-3_0.63",
+          "632_l_0_r-0_0.24-1_0.22-2_1.32-3_1.75",
+          "633_l_0_r-0_1.78-1_0.83-2_1.04-3_0.69",
+          "634_l_0_r-0_0.9-1_0.83-2_1.66-3_0.95",
+          "635_l_0_r-0_0.31-1_0.21-2_1.74-3_0.05",
+          "636_l_0_r-0_1.13-1_1.04-2_0.25-3_1.34",
+          "637_l_0_r-0_1.31-1_0.89-2_0.12-3_0.96",
+          "638_l_0_r-0_0.22-1_0.89-2_3.17-3_0.91",
+          "639_l_0_r-0_0.95-1_1.51-2_0.73-3_0.49",
+          "640_l_0_r-0_0.77-1_1.72-2_0.05-3_0.44",
+          "641_l_0_r-0_1.4-1_0.09-2_0.3-3_0.97",
+          "642_l_0_r-0_0.62-1_0.09-2_0.67-3_0.03",
+          "643_l_0_r-0_1.67-1_1.05-2_0.74-3_0.59",
+          "644_l_0_r-0_0.81-1_0.89-2_1.05-3_0.0",
+          "645_l_0_r-0_0.17-1_1.03-2_1.46-3_0.7",
+          "646_l_0_r-0_0.72-1_0.25-2_1.6-3_1.45",
+          "647_l_0_r-0_0.72-1_0.18-2_0.06-3_0.14",
+          "648_l_0_r-0_1.05-1_1.14-2_0.39-3_0.84",
+          "649_l_0_r-0_0.71-1_1.65-2_0.07-3_1.2",
+          "650_l_0_r-0_0.1-1_0.22-2_0.07-3_1.32",
+          "651_l_0_r-0_0.46-1_0.67-2_1.61-3_0.4",
+          "652_l_0_r-0_0.78-1_1.21-2_0.63-3_0.18",
+          "653_l_0_r-0_0.42-1_0.85-2_0.31-3_0.43",
+          "654_l_0_r-0_1.14-1_0.07-2_0.17-3_1.77",
+          "655_l_0_r-0_0.29-1_0.14-2_1.57-3_0.95",
+          "656_l_0_r-0_1.16-1_1.78-2_1.93-3_0.38",
+          "657_l_0_r-0_0.68-1_0.96-2_1.5-3_0.58",
+          "658_l_0_r-0_1.57-1_1.09-2_0.69-3_0.1",
+          "659_l_0_r-0_0.81-1_0.03-2_0.36-3_1.67",
+          "660_l_0_r-0_0.16-1_0.66-2_1.34-3_1.14",
+          "661_l_0_r-0_1.13-1_0.58-2_0.06-3_0.21",
+          "662_l_0_r-0_0.88-1_1.13-2_1.48-3_1.35",
+          "663_l_0_r-0_2.09-1_0.13-2_0.05-3_1.8",
+          "664_l_0_r-0_1.32-1_1.49-2_0.09-3_1.72",
+          "665_l_0_r-0_0.54-1_1.36-2_0.74-3_2.08"
          ],
          "type": "scatter3d",
          "x": [
-          10.177831740432934,
-          9.534298715772811,
-          -10.638919856739657,
-          11.415278859095636,
-          10.68849364949543,
-          -10.134193370565404,
-          10.130766305996499,
-          -10.051455731212634,
-          11.385267343683411,
-          10.441059829499546,
-          10.244995744429811,
-          -9.753103583753193,
-          10.061303374819207,
-          9.325504352346897,
-          -10.137005218765173,
-          10.512946805567703,
-          8.67748132498726,
-          -12.587347864285697,
-          -9.078342026404846,
-          10.07171365132163,
-          10.760544155954506,
-          10.478764714041441,
-          11.864325183266418,
-          9.629342327349933,
-          11.282352864416882,
-          10.57132487951842,
-          9.123165066682997,
-          -10.78135424832675,
-          9.965342817459845,
-          9.478649741112246,
-          -9.754539220658664,
-          9.53358317227941,
-          8.306673275404588,
-          10.086791739271282,
-          10.22570516273943,
-          9.568346713433954,
-          10.063061248717501,
-          9.463042932330094,
-          10.712294266111323,
-          10.266443614727132,
-          10.905229004978324,
-          -10.300428914897724,
-          -7.202824270759107,
-          10.499506301837384,
-          9.157112462985891,
-          8.55158996105485,
-          8.97469053100251,
-          9.444749294233592,
-          10.211684960697903,
-          9.808472793271687,
-          -10.625917853878182,
-          9.928479478803597,
-          10.11487470131824,
-          -10.125300534632721,
-          8.695265800353381,
-          9.36884967010222,
-          9.865338702554528,
-          10.930321134219911,
-          -8.246381911243535,
-          11.480897181667101,
-          10.613733590452258,
-          8.221918199695377,
-          -9.509850836064425,
-          9.981095217068944,
-          -11.036688182162994,
-          8.774546504470036,
-          10.656993709662224,
-          8.869382936859513,
-          -9.655603898703841,
-          10.752918992490734,
-          11.275888254250809,
-          11.596476156390597,
-          9.811793167803506,
-          -11.249595094944144,
-          -10.397082405908295,
-          9.373364808823595,
-          10.703164648399397,
-          11.25326579843883,
-          10.306848808350534,
-          9.331331101944144,
-          9.59758868747817,
-          9.665927228042307,
-          9.716953567106001,
-          9.621162847167794,
-          11.032425225285774,
-          11.610003037142867,
-          11.836369099176556,
-          -10.383536751261056,
-          11.086639019423703,
-          10.470594762583993,
-          10.843537148862115,
-          9.06069258912347,
-          11.539634423075196,
-          10.128993323727844,
-          -11.126199435960785,
-          9.54751231804083,
-          10.184830377155036,
-          -10.947486744110495,
-          10.033316251268491,
-          9.121886813818037,
-          8.609252078251835,
-          -10.655987649222103,
-          10.927022799457223,
-          8.917571469298004,
-          10.728991790504999,
-          11.333629307040223,
-          10.410538931149771,
-          7.708928482536351,
-          9.791834650690367,
-          11.498083701987108,
-          9.797819746289305,
-          12.660569004488174,
-          12.32693127724996,
-          10.570839200932616,
-          10.024711081127718,
-          11.832481955043509,
-          10.159750997949814,
-          12.454972480048918,
-          10.276501665696156,
-          10.65249452383441,
-          -9.674469620875533,
-          12.418850367109338,
-          10.46882894704782,
-          10.947340779944623,
-          12.828053725398831,
-          11.63634644177627,
-          10.061632664421479,
-          9.386253907438899,
-          9.74193316728213,
-          -10.041445883165785,
-          11.759341065556763,
-          9.942703635101479,
-          8.72785773527837,
-          10.744515059890597,
-          8.903266293131294,
-          10.322993165100353,
-          10.542680774529034,
-          9.756717293092567,
-          10.921241186093859,
-          -12.143818100463774,
-          -11.115765167457502,
-          10.773788258862488,
-          9.155356854733581,
-          10.209081924542506,
-          -10.317471598317931,
-          -11.819663983562638,
-          -9.320346269711887,
-          10.374424886436238,
-          -9.841066222223263,
-          9.059484350222402,
-          9.554817991466939,
-          9.537502255742545,
-          10.504252885708803,
-          11.32582230873554,
-          -11.51014734111658,
-          8.034909442627493,
-          10.932401108433732,
-          10.319153295941804,
-          -7.622051198967227,
-          10.24377028928115,
-          9.782837009551072,
-          9.024106048720832,
-          9.693912822110862,
-          -10.728779576774238,
-          9.531614426832634,
-          8.843949258700095,
-          10.124120106283987,
-          13.097743192704433,
-          10.152075435448484,
-          10.490093812522046,
-          10.15711416192504,
-          8.551105590837986,
-          10.906512703933227,
-          9.497644795564739,
-          8.434830301123252,
-          9.61628698332334,
-          11.015869780100113,
-          9.85040788041519,
-          11.270651088785026,
-          9.753660596914468,
-          10.475209331413623,
-          8.751060707015599,
-          9.818224717611933,
-          10.64787555286353,
-          10.594335127785326,
-          9.904426233486095,
-          9.601650817792907,
-          -9.49860507314953,
-          10.21626542217229,
-          9.548101018773153,
-          9.010427978929064,
-          -7.400777101261405,
-          11.318376710869614,
-          9.839543910898868,
-          9.85965518934585,
-          12.218461794205279,
-          10.757787941432934,
-          11.510484174554238,
-          -11.421091259914434,
-          8.253984882888556,
-          9.624209395562362,
-          10.118104080852898,
-          -7.436694923112233,
-          -10.701514834697651,
-          10.488318519571187,
-          10.016687251190538,
-          8.158854045686327,
-          10.312446186905019,
-          -9.897814257111465,
-          -9.945050766254736,
-          9.614871421295184,
-          -7.8942408497135315,
-          9.548789322359761,
-          -10.602057834190681,
-          11.173002569703854,
-          9.660854902610259,
-          11.929169455246727,
-          7.9874970789714315,
-          9.128765245691982,
-          11.464072762534428,
-          8.985675337299554,
-          10.060014106540953,
-          11.24271811959155,
-          9.30073214729249,
-          10.457172231765908,
-          10.820489611081037,
-          10.639572280484195,
-          9.868738329981571,
-          8.616922066822918,
-          8.875699628551803,
-          9.49835785695971,
-          10.106569811732353,
-          10.584741160847601,
-          -10.669217231431986,
-          10.760073695941577,
-          12.192219640790967,
-          9.748952647237914,
-          10.523277150689985,
-          10.516125420679208,
-          8.811801864186242,
-          8.49495355502166,
-          -13.217029086646047,
-          8.820544805846138,
-          9.466224392808149,
-          10.162019330162249,
-          11.02108681069921,
-          10.85417018077819,
-          10.442838539972682,
-          11.409962169376357,
-          -10.72823170619091,
-          11.623312710116043,
-          11.133344157669109,
-          7.994899256389316,
-          8.502883822760749,
-          9.417016718832448,
-          -11.001083046483387,
-          10.898467934860008,
-          7.941279770032411,
-          -10.562373911565913,
-          9.786410816104535,
-          8.93103879702854,
-          9.384703522429191,
-          10.536086957031307,
-          10.914022310819885,
-          9.683198000671915,
-          10.103939493910858,
-          10.165879335820398,
-          -11.774150284358873,
-          -9.58346448568149,
-          9.34176117568975,
-          9.425721699125365,
-          -10.760952917890057,
-          -9.185086106395698,
-          10.234883256067796,
-          11.466066675925886,
-          -10.169491958079336,
-          8.064061822180987,
-          9.017182914607925,
-          9.37039799098157,
-          9.399021693104554,
-          9.063281812032939,
-          8.637161352463956,
-          8.867193641540469,
-          -10.148265653459,
-          9.351584909661717,
-          10.743689482745278,
-          11.005537090382715,
-          8.866256733079126,
-          -9.537123433326649,
-          -10.856388877949449,
-          -10.045832223442442,
-          -12.230838132242184,
-          11.226185461017483,
-          9.952896470544909,
-          -10.33876774564621,
-          10.723937901061236,
-          -8.79896182039004,
-          9.521715170170042,
-          10.384852580831229,
-          -10.252313555016586,
-          8.717341936865889,
-          8.863678671334041,
-          10.005139587653717,
-          -10.62596231393928,
-          10.354193654454537,
-          -9.823748357695093,
-          11.663005315020749,
-          -9.696226414242249,
-          9.588105194324138,
-          12.17232580089256,
-          10.179194224416484,
-          9.034743838474222,
-          9.352659178977323,
-          10.651698694028141,
-          -13.090742922638224,
-          -12.035654311798801,
-          9.463591546091624,
-          7.910871127452425,
-          10.805673851545516,
-          11.363471614236254,
-          9.299157560599955,
-          9.819477075597423,
-          9.087895655441274,
-          10.805477846676801,
-          9.386594391218361,
-          9.550384593519674,
-          -8.0402296676917,
-          10.62398717779682,
-          -11.075356319522973,
-          -11.371635119529543,
-          10.180900341933064,
-          -8.282036216212552,
-          10.607627913870644,
-          9.81879650523203,
-          -11.359944247352628,
-          11.487523357260397,
-          9.906597509433848,
-          10.552803996597023,
-          -10.483702262685556,
-          11.050634974797735,
-          10.534493448266272,
-          -11.624350075101695,
-          9.695355560808215,
-          -11.078590413149247,
-          11.42623350668276,
-          10.55318723342326,
-          10.595847328897035,
-          10.624470139663588,
-          8.133316416905405,
-          10.797599215889107,
-          7.356796333220535,
-          -10.674896949465152,
-          10.338611764405176,
-          9.961016900932702,
-          10.460678200021487,
-          10.507424899387509,
-          9.446305109993919,
-          11.10607633333955,
-          8.987858987474501,
-          8.35708803903847,
-          10.961273130811513,
-          10.259393534564309,
-          10.274937513624195,
-          10.343071851285494,
-          -10.644470868706417,
-          7.445544303658254,
-          -9.64959820492367,
-          11.741106476733297,
-          9.014322511681302,
-          8.834605216161233,
-          9.663865954261352,
-          11.461979636144742,
-          11.35784709209186,
-          10.828581576304344,
-          10.250418826653696,
-          9.208851624161571,
-          -10.741847047789292,
-          8.50687937785677,
-          -10.719383046432535,
-          9.8922632887895,
-          10.51198347684767,
-          11.659081589472736,
-          8.979170276714923,
-          -11.9855886293904,
-          11.183569489528956,
-          9.58448665819338,
-          9.908802865114323,
-          9.866713190592852,
-          8.279871946339835,
-          -10.846685054312438,
-          -9.86451075919118,
-          10.607433813331822,
-          10.042852220550856,
-          7.940463864960125,
-          -11.964727962687467,
-          -10.071379619702016,
-          9.507640459935525,
-          -9.886132990499055,
-          10.490418147843677,
-          10.608665758310202,
-          -10.868274605014618,
-          9.744926718887312,
-          8.541070114446345,
-          8.38438502202572,
-          8.316684137961829,
-          10.227184001823144,
-          9.613423131421944,
-          8.938978143532484,
-          9.805503348067996,
-          10.249551763159722,
-          9.699994784825316,
-          -11.227551655827414,
-          9.74850246450543,
-          10.083491668234629,
-          9.831227959686123,
-          9.491189639011614,
-          11.045514141287782,
-          11.693139228138016,
-          10.836893656950483,
-          -9.974281577976033,
-          11.247642083244767,
-          10.885111223929586,
-          -9.951657077044455,
-          10.129613321715143,
-          -9.29257294501207,
-          10.890797457643147,
-          11.082240951096281,
-          9.697091386039792,
-          -10.073773807717547,
-          12.326168492348378,
-          11.560302304966102,
-          11.756723352654824,
-          10.174500119172999,
-          -9.347518241891352,
-          8.40853783782653,
-          10.203327034173528,
-          12.063344964507326,
-          9.202499640511157,
-          8.280312167751916,
-          10.103777541318907,
-          11.154838316677035,
-          8.841172395744229,
-          9.906303219761758,
-          -8.588017239711283,
-          11.57411051143082,
-          9.796975670338517,
-          11.307790040468282,
-          8.911332883449363,
-          10.003555056913894,
-          9.439597125138667,
-          9.759252908809296,
-          9.044150638356685,
-          9.685093442741874,
-          11.45246642969978,
-          9.618176946486146,
-          12.192509516711869,
-          8.04115857390106,
-          9.780032272095303,
-          -9.78592964038731,
-          10.610849785576837,
-          -9.729862478809014,
-          10.27627341044952,
-          10.952454310620023,
-          9.27547269443908,
-          10.083824035280346,
-          -10.600205940693213,
-          -8.549192342415706,
-          11.142739219362777,
-          -8.991401997682981,
-          -12.463929165736594,
-          -8.216923625464347,
-          10.01322748745131,
-          10.67619215045129,
-          10.380497397390394,
-          11.430845594644278,
-          10.915681857412514,
-          11.194743529272124,
-          9.909795302812785,
-          11.164802465352016,
-          -10.164057063129013,
-          9.411055682769003,
-          -11.77967255129429,
-          11.919356813653083,
-          10.820859940031855,
-          9.156834103766164,
-          -11.240868056569228,
-          -9.560835748050593,
-          9.809370709852523,
-          -9.610149487853661,
-          10.23614921447263,
-          7.911537971058151,
-          6.906247022698676,
-          9.342118779763766,
-          10.050548677903148,
-          9.622540615923224,
-          12.908860625130638,
-          -10.280196658437713,
-          -9.299763631427439,
-          -8.73262661423053,
-          9.241661927501172,
-          10.18149916056196,
-          11.210726275330426,
-          9.344376645573544,
-          -9.22802633127401,
-          9.69979399600312,
-          11.98747668004308,
-          9.794510839120363,
-          -11.633781376040439,
-          11.362294360564793,
-          9.857255648737118,
-          10.227224112024834,
-          10.583745590269556,
-          9.237189340774435,
-          -10.627901400358184,
-          -11.687075233777506,
-          10.780270006595488,
-          -9.071973756369184,
-          12.491094074165948,
-          10.84396059007831,
-          11.28854525492376,
-          -8.532994022635531,
-          12.812477610349138,
-          9.948911697023302,
-          9.984498660034713,
-          10.819480385670115,
-          9.877850765362645,
-          11.397196315720842,
-          9.039935840951694,
-          8.391285258775511,
-          9.185529102029554,
-          8.192680179303627,
-          9.587402576023084,
-          9.201031435963188,
-          9.233561170468969,
-          11.026954069797696,
-          7.957559694048047,
-          10.210928932063004,
-          8.74214489895725,
-          7.7882898077440466,
-          10.659109243134719,
-          9.352475083144759,
-          10.91650802720544,
-          9.108675683729032,
-          10.081960787916277,
-          10.733218674662831,
-          10.10327764023521,
-          11.29904660424805,
-          8.852353855977592,
-          10.053181810181725,
-          9.541434906057297,
-          -11.540398367699623,
-          10.079807892722423,
-          9.959503816999872,
-          8.651487809872647,
-          12.251520638428353,
-          10.63362830848316,
-          11.333752366975315,
-          10.957421047226426,
-          9.19947573709743,
-          9.790003454470687,
-          7.851954600780348,
-          7.025632729289928,
-          10.671136972598424,
-          10.721819559372824,
-          11.224379768894803,
-          -10.633742842184354,
-          9.671065031223517,
-          9.911899580793282,
-          9.205563285368934,
-          9.489061852061385,
-          9.49276676825167,
-          -7.344147906893969,
-          11.537667595936737,
-          9.814911641934133,
-          9.11383689266199,
-          10.183697156490807,
-          10.533589353161723,
-          10.160367535002063,
-          -8.128959263555748,
-          10.511622948777338,
-          8.515292305568236,
-          9.292912347002213,
-          9.590268140330044,
-          8.8555574382871,
-          8.696049750113987,
-          -10.249814777864465,
-          11.262532348268937,
-          9.13765306455338,
-          10.157735836437233,
-          13.643436548334552,
-          -11.489069261180727,
-          10.942210526395076,
-          9.211582288148644,
-          10.652505047798705,
-          9.779398014861611,
-          11.46385116153394,
-          9.453138910506373,
-          10.146101396243516,
-          10.615143550255286,
-          -9.597868513848361,
-          -11.116546873460942,
-          8.69450848694446,
-          10.200700939933895,
-          9.166449456297897,
-          10.215924531911572,
-          8.764799512033056,
-          8.854091614393008,
-          10.813164502111846,
-          9.603737481720636,
-          11.05397181300304,
-          9.586686122245538,
-          9.76959661298142,
-          10.476357508204146,
-          10.645987398454835,
-          -11.04069800731309,
-          11.302188423377503,
-          9.198667172745134,
-          10.101381771038628,
-          11.519412262521367,
-          -10.176818113470302,
-          9.76181218217129,
-          9.980928803422747,
-          -9.572154195914848,
-          -7.297926727791374,
-          7.665361485531745,
-          10.876536504355181,
-          -9.167463861285981,
-          9.065516159632768,
-          8.902610246979219,
-          10.49492332924048,
-          10.24521203178007,
-          10.148888329429827,
-          8.764048530813735,
-          9.867509644607415,
-          9.712995284397618,
-          9.086665536991665,
-          9.974715351962727,
-          -10.22960866407268,
-          8.76660500339683,
-          10.375543226374157,
-          11.378595188136448,
-          9.662167724576197,
-          -8.44496962121084,
-          9.211761088900792,
-          8.81845103590103,
-          8.648446093670586,
-          10.884850927148882,
-          10.965135684929471,
-          10.150213860049243,
-          -11.187973481720702,
-          9.947879880411582,
-          9.950478988527681,
-          10.722554830627834,
-          11.19679812354751,
-          11.283835724888995,
-          -12.772539388316622,
-          9.129302595777379,
-          10.236853461882752,
-          8.384531900909787,
-          -8.64770404798996,
-          10.076211616149294,
-          9.648745848878221,
-          10.201542743769318,
-          -11.369413004714424,
-          -9.417247746798662,
-          10.050503031051253
+          -1.688077428424278,
+          -0.4676987066251054,
+          0.6354847018711802,
+          0.2329667618050455,
+          -0.57438362412745,
+          -1.210261037418279,
+          0.17889375269733376,
+          -2.0305771128171104,
+          -0.45154649773907474,
+          1.3918642635172191,
+          0.08756678777096494,
+          0.18173873872962054,
+          0.652893633976978,
+          0.3575679689684752,
+          -0.95219793695073,
+          0.4356274399012723,
+          0.6575650529712751,
+          -2.44748288633416,
+          0.2877126372814707,
+          -0.7472620975825447,
+          0.14906169256821822,
+          -1.3181549860817885,
+          1.1762885336006437,
+          -0.15270470762247268,
+          -0.2681393924130563,
+          0.05980096083042841,
+          0.6832354705029424,
+          -0.9093471151515489,
+          1.002833824415307,
+          -1.4616851952080299,
+          -1.6990366704079092,
+          1.2015453421691622,
+          0.7067743098426409,
+          -0.7634574673488417,
+          -1.207398924542006,
+          -0.36381265121313133,
+          -1.1913711407791594,
+          -2.1810121715857407,
+          0.17329212981128217,
+          -1.957772808168808,
+          -1.0073739621406648,
+          0.527748978228544,
+          -2.7838118304897046,
+          0.39466435432720237,
+          -0.44743857186304337,
+          -1.6072205259377657,
+          -0.30765709324800183,
+          0.32182805731680486,
+          -0.6465859937834123,
+          -1.170827203556545,
+          1.2830997905786128,
+          -0.5131872165079249,
+          -0.9119997151713075,
+          -0.8069594466549972,
+          -1.5548869295989831,
+          0.5967137524820494,
+          -1.4560290610233115,
+          -2.36383303673823,
+          0.31963182613299246,
+          -0.8839371392126125,
+          -1.6226495143853379,
+          0.5472821532544163,
+          1.1156075690241898,
+          -0.8507188274252638,
+          -2.0072067321606717,
+          -0.04928220082705059,
+          -2.577852438810809,
+          0.05513776558891359,
+          0.1940342321709112,
+          -1.4330930418858163,
+          0.0796233341968604,
+          0.06350051144112823,
+          -1.806319365701892,
+          0.5160807210123497,
+          -0.4321445088804905,
+          -1.1552205612555198,
+          0.7393608593142529,
+          0.0671570369548331,
+          -0.2434034515265543,
+          -2.5486117308647502,
+          -1.4864063228022013,
+          -1.139150221943353,
+          -0.8378834116901441,
+          -2.0170322263196767,
+          -1.535153429309896,
+          -3.429413658005181,
+          -1.6333905210930317,
+          -3.431821428165199,
+          0.18816527393981453,
+          0.20299873547708502,
+          -2.2697157959536827,
+          -0.524798731596864,
+          -0.8866551294229723,
+          -0.8312626617709469,
+          -1.3492539331409659,
+          0.46095090750810774,
+          -0.36023169225925133,
+          -0.9475713680541091,
+          0.5055719633298563,
+          0.31776020763933466,
+          -0.14048622305730962,
+          -0.9896136987730328,
+          -1.4646173933080757,
+          -1.840397247762806,
+          -0.5068836249732316,
+          -1.0908264789010713,
+          0.5863227807097524,
+          0.13222415772720808,
+          -0.09222957369357143,
+          0.5271638485587831,
+          -2.939599445382691,
+          0.8159270562662682,
+          -0.807012557177875,
+          -1.5225184659227102,
+          0.38349841547709107,
+          -1.665684650877483,
+          -0.9293916339298812,
+          0.19623798371947831,
+          0.1837876798379421,
+          0.4955307174854162,
+          -0.770621326977905,
+          0.5770532963525243,
+          1.0241541797418936,
+          0.9460003301878699,
+          -3.5703328312012097,
+          -0.7074489696154271,
+          0.49461207813156616,
+          0.005971887014940114,
+          -0.15982580633002963,
+          0.45320832185257887,
+          -0.7266986184814402,
+          0.4597325540736592,
+          -0.1966045006191801,
+          0.0794104135700735,
+          0.3286414567525604,
+          0.7878819455563901,
+          -1.6137556603504328,
+          0.7148363066571795,
+          0.3185512000438453,
+          -1.054679069940761,
+          -1.5328798120708116,
+          0.30940558148853503,
+          -1.5798750294268373,
+          -0.5386149333261654,
+          -0.6171067127813101,
+          -1.7676176920850954,
+          -2.319816513574114,
+          -2.6752277185527236,
+          -4.044454067332422,
+          -1.715568745710695,
+          0.11230849138345511,
+          0.09114999635874033,
+          -0.6479246923191914,
+          -0.9932401019604737,
+          -1.3654759072147575,
+          0.22644687423627952,
+          -1.4531229829865402,
+          -1.2642402055465567,
+          0.3959979866988226,
+          1.5990533841152992,
+          -1.2155481286843157,
+          0.5039481673097488,
+          0.6143966160064662,
+          0.5963426655350723,
+          -1.4516897575558105,
+          1.3617430003591715,
+          0.1133962501065231,
+          -1.4173155041621963,
+          -1.7220793058479436,
+          0.5310347676035616,
+          1.9653537104928018,
+          -0.6572104748493209,
+          -0.9208013684405528,
+          -0.11691701576586055,
+          2.1349438135507683,
+          1.2272014187213096,
+          -0.9635044347770803,
+          -2.642888664708706,
+          -1.056015808654962,
+          0.33311866211371677,
+          -1.311873493532424,
+          0.2509254507539689,
+          -1.14223323651134,
+          0.4325770284032644,
+          -0.9925587749198745,
+          -0.9977170445776675,
+          0.08638475596096296,
+          -2.4335887052428644,
+          -1.3090158839786827,
+          -1.4129720323276054,
+          -1.0152428283699746,
+          0.32824062580675384,
+          -0.4376417515870291,
+          -0.6689109333590356,
+          -1.2193923546557182,
+          -1.096272629532633,
+          -0.6189747187489001,
+          0.5899743806948634,
+          1.2305115464375724,
+          0.3480141337597442,
+          -0.2261301045012385,
+          -0.6959306260209087,
+          -0.9823023804601128,
+          -2.7184608195574995,
+          -0.8353928214939398,
+          -0.27833638281741924,
+          0.21136907349275802,
+          -0.1544166090890149,
+          -1.9468167036602686,
+          -1.6945767595189274,
+          0.03250830225214307,
+          0.623356340198121,
+          -0.9971385371199929,
+          0.6651315463000111,
+          -1.627271414092072,
+          -1.2050643469700386,
+          -2.4769045507179577,
+          1.2845165171627029,
+          0.9326285222162165,
+          -1.20148361302723,
+          -0.5484498764508261,
+          1.6332004758158933,
+          -0.9400095873537493,
+          0.06818089330654953,
+          -0.7079966706248092,
+          -0.5554911893154499,
+          -0.32007479284022633,
+          -1.1830026092377897,
+          -0.6706775304468271,
+          0.7038738328521557,
+          -2.7451913630418066,
+          0.18740644269479056,
+          -0.4946353430342121,
+          -1.9916571973892472,
+          -0.9493029362918135,
+          1.167574494349597,
+          -1.2613849310514031,
+          -0.7691955381792914,
+          -0.7502791120695727,
+          -0.9061632744778125,
+          -0.5291835977323516,
+          0.7229200373691427,
+          -1.2670641762706647,
+          0.21659719524310295,
+          -1.6148844347994724,
+          0.2666682200785888,
+          -1.1022584443550285,
+          0.8074687989303087,
+          -3.08516294531643,
+          0.5017981442451163,
+          0.09054133090834426,
+          -1.1864903337681203,
+          -0.25362868439217556,
+          0.12497190141649739,
+          1.3013981227108293,
+          -1.573096297343075,
+          -1.1980497944314257,
+          0.49978198501661564,
+          0.4296467241648325,
+          0.38105577268105684,
+          -3.0371089066981165,
+          -2.2126723667742416,
+          0.16401327500843643,
+          0.28324297297605194,
+          -0.26062657782832244,
+          -2.2397496536307218,
+          -0.5139186828556825,
+          0.24043691323183003,
+          -2.2535052660627026,
+          -1.156655252505881,
+          0.11873554601192216,
+          1.3583175308964521,
+          -1.6037618725776226,
+          -0.3348464558722418,
+          0.3062162398701913,
+          0.7323071949519881,
+          -1.3214505805194172,
+          -1.1723020983612094,
+          -2.7707213908194097,
+          -0.7645779641056896,
+          -1.779486351040915,
+          0.5815481999958017,
+          -1.9576261615744976,
+          0.3620947781526114,
+          -0.8852660634686196,
+          0.6815656268210037,
+          -1.4113192853871341,
+          0.7410237575736593,
+          -0.08200405427085689,
+          -2.9352772401718648,
+          1.4704680100654342,
+          -1.7214554196568481,
+          -0.0022137969237434607,
+          -1.8648301005975276,
+          -1.0171274321216652,
+          -1.8077319538737593,
+          -1.6500411454860942,
+          -0.5306228757066539,
+          -1.8951116729311313,
+          -1.9658933451924132,
+          -0.7820647671718556,
+          -0.6548048452591408,
+          -2.1789073057143575,
+          -2.1775968783021513,
+          -0.6982779767341432,
+          -0.9769041492680208,
+          -0.9350229953510658,
+          -0.929203845051839,
+          -1.9594171903160507,
+          -2.9751035974140994,
+          -1.9467274561193082,
+          -1.0464742753042886,
+          -0.6734454467979974,
+          -2.8116619748646983,
+          -2.540892157314543,
+          -3.814207248368158,
+          -1.2451087555357094,
+          -0.2666820995332274,
+          -0.09644145888584432,
+          -2.570666688428402,
+          -0.5505598640880578,
+          -0.5300904121890048,
+          -0.821073995934563,
+          -1.289375131014353,
+          -0.26784555910638186,
+          -1.4935114392072382,
+          -2.5276259249103177,
+          -2.622118658343539,
+          -2.0414820963756135,
+          -0.3107707775372447,
+          -1.373328868378646,
+          -0.209761761592984,
+          -0.10575595954432926,
+          -0.7962235426606662,
+          -2.139295664476629,
+          -2.1774311342933546,
+          -1.9951220664999654,
+          -1.4273174683045011,
+          -1.9888536301586022,
+          -1.3023746467114512,
+          -2.2185810259030525,
+          -0.31579883015744403,
+          -1.2342344805561019,
+          -1.6708613325312656,
+          -0.5834803677594295,
+          -2.417571809375908,
+          -0.6699289386516614,
+          -1.9519212448632433,
+          -1.571950047392201,
+          -0.0013381335100962621,
+          -0.35318681950057584,
+          -1.029529208620791,
+          -0.7178156573417862,
+          -3.111841714092702,
+          -2.7599979586985537,
+          -1.9008756688769055,
+          -2.5638861218771094,
+          -2.45703498349972,
+          -2.6563731805788358,
+          -0.7463837064879696,
+          -1.8374965521254247,
+          -2.339080307130038,
+          -1.3202376959078053,
+          -0.7024470161596592,
+          -1.0818240058399002,
+          -1.5432995496204212,
+          -1.3824056321878093,
+          -0.9059641559214019,
+          -1.8738099676708675,
+          -1.1511534340663812,
+          -1.015668225654832,
+          -1.268757985564849,
+          -1.2377955191794603,
+          -2.4714485592009057,
+          -1.368224018929723,
+          -2.0084145732717325,
+          -1.7731820377245697,
+          -1.1173915611902945,
+          -2.2606494001709265,
+          -1.2828739120831782,
+          -1.5690930088960175,
+          -1.848916070853469,
+          -1.3662797398818745,
+          -1.7602042270984213,
+          -1.2821905192691014,
+          -0.47564324918887424,
+          -0.587572571701783,
+          -1.9280195810916254,
+          -0.3240109263398109,
+          -1.1286150450409551,
+          -1.6093797079276144,
+          -1.3944710861778933,
+          -1.593817118817447,
+          -0.4150560780242757,
+          -1.1570388890812657,
+          -1.6263380241233003,
+          -0.267331654671509,
+          -0.37639411742928275,
+          -0.5930671096271088,
+          -3.1411825979216808,
+          -1.7994756941030117,
+          -3.51600312193888,
+          -1.2325995662778704,
+          -0.7901121653933961,
+          -1.7502149687394266,
+          -1.2306062655705836,
+          -1.0016995942685554,
+          -0.26425021565902507,
+          -1.3671065659007662,
+          -0.11913968817024323,
+          -0.6947288598193292,
+          -0.11867403664963239,
+          -0.9870100132390316,
+          -1.193549830859465,
+          -0.49156065450337316,
+          -0.2530533769912472,
+          -2.1438712771455903,
+          -1.0350767531507292,
+          -1.796071150264053,
+          -0.538183606520112,
+          -0.689744886946297,
+          -2.0551091440607547,
+          -1.9915357074350157,
+          -0.8840579783612447,
+          -0.9285839275534149,
+          -2.459532562870218,
+          -0.6441782192640868,
+          -2.662291731420411,
+          -0.9107574640422632,
+          -0.9542568015954302,
+          -1.1000933132194517,
+          -1.1583002115088061,
+          -2.424486265259378,
+          -0.26625642822942064,
+          -1.5534210010459166,
+          -1.0971961482948906,
+          -0.19271140671653553,
+          -0.08905857976058695,
+          -2.2747549873264425,
+          -0.4703011156355189,
+          -1.7414938311650934,
+          -1.2593768578578401,
+          -2.244418474885756,
+          -0.6599647482348567,
+          -0.7420393660675344,
+          -0.300739177721547,
+          -0.013470492011355528,
+          -1.2329277235149583,
+          -1.4233032589799826,
+          -2.041802872089372,
+          -0.2276457507128664,
+          -2.1606180491567537,
+          -0.33617924383902975,
+          -1.7031222324158102,
+          -3.171403724463267,
+          -1.260855208965688,
+          -0.439388074051282,
+          -0.5065961844502704,
+          -1.1206300595163348,
+          -0.30352318168538917,
+          -0.480485293612827,
+          -1.6403941791982386,
+          -1.1772073504020706,
+          -1.1983999181115839,
+          -0.6485480135419592,
+          -0.1193236073814875,
+          -1.6612898518204644,
+          -0.42862586619890974,
+          -2.205704560535342,
+          -1.4390312518359865,
+          -1.3552086236854015,
+          -2.4500334246472883,
+          -0.6020965387630401,
+          -1.189984545493671,
+          -1.9766333631913784,
+          -2.1415692265512716,
+          -2.7215738337036592,
+          -1.2597088610158855,
+          -0.5782150655729643,
+          -3.119466311602308,
+          -2.187230083533122,
+          -0.5369585652679247,
+          -0.1828849803291216,
+          -0.8340028061687821,
+          -4.296018842876524,
+          -1.5237834317165737,
+          -2.51210172506081,
+          -0.15671341054811028,
+          -1.146775753505347,
+          -1.6408414106687996,
+          -0.4326830014624764,
+          -1.1499957065486752,
+          -0.052046339069604874,
+          -1.231624698685754,
+          -0.07924886229601891,
+          -0.678017704905316,
+          -0.10991950005069795,
+          -1.3360084372445373,
+          -0.4333011035711706,
+          -0.34253407991094065,
+          -0.16624247799296954,
+          -0.5642643068255488,
+          -0.4450566156752037,
+          -1.9996691689987673,
+          -1.927550146503183,
+          -0.2657447952612483,
+          -0.376583606496963,
+          -3.1760691337949574,
+          -0.8415224967715267,
+          -1.8384798633902055,
+          -0.010473534463872447,
+          -2.003504431251485,
+          -0.2527278954305131,
+          -2.7878841301201254,
+          -1.1399692818672726,
+          -1.5440802321234304,
+          -1.1447701978063853,
+          -0.6992892968321806,
+          -3.7824611063970663,
+          -0.44307110562225616,
+          -1.1163350502706177,
+          -0.6197907285074233,
+          -1.0245983016485707,
+          -1.858460480485197,
+          -0.9993698699253947,
+          -2.6763016269704423,
+          -2.5074493128598663,
+          -0.9884379213673194,
+          -2.1816417730365956,
+          -1.4132450574093822,
+          -0.8543597689966326,
+          -0.6689833545530337,
+          -0.8941803686068421,
+          -0.5841702991325266,
+          -0.9795170548365386,
+          -3.7665976941705464,
+          -2.197597659050893,
+          -0.8418701642105403,
+          -1.6184273922490195,
+          -2.822093354758215,
+          -2.738372252390576,
+          -0.06652868486166419,
+          -1.4539744711410796,
+          -2.1974587559445693,
+          -2.272925475409428,
+          -1.5502402814517442,
+          -1.5891429502646646,
+          -1.7689216295394312,
+          -2.3907116782982336,
+          -1.5503418893873393,
+          -0.7923136864727072,
+          -2.7739656344618195,
+          -2.243006685872637,
+          -0.8607963206936794,
+          -0.3440778221556814,
+          -0.3899190830487195,
+          -1.341379795094901,
+          -1.4074958806226294,
+          -0.5859588245857839,
+          -0.6208143205075194,
+          -1.6143840443518327,
+          -0.5013804861307236,
+          -1.4088116253923975,
+          -0.11472849421546472,
+          -1.0639160776343637,
+          -2.1986607112043948,
+          -2.240752715547607,
+          -2.680299420725837,
+          -0.4072552861486374,
+          -1.5526839804172017,
+          -1.3506546006899156,
+          -2.5567526297533116,
+          -2.832928593349915,
+          -0.9596777222963705,
+          -1.5853552042322478,
+          -3.229190574643806,
+          -1.936141741752341,
+          -0.7964301264158695,
+          -1.5267788057735163,
+          -0.4413639708869528,
+          -0.2942108372208493,
+          -0.27213800740531957,
+          -0.7394966355913923,
+          -1.0937388814631699,
+          -3.8610242015542835,
+          -2.480467511302176,
+          -0.6698600496330355,
+          -1.1171214040883424,
+          -1.1298306716774866,
+          -2.2208291966113953,
+          -1.1006876019220815,
+          -1.6704122742143017,
+          -1.0857157816102727,
+          -2.257841374108934,
+          -1.1592837346682119,
+          -1.7891137616035468,
+          -2.2106548618270576,
+          -0.6210545922964037,
+          -0.5244340799464243,
+          -1.2207738690048477,
+          -1.6422066047497061,
+          -2.120083412239673,
+          -1.2441879552401953,
+          -1.431590722531365,
+          -1.1397485414059172,
+          -1.7271882228091053,
+          -0.9832809305832411,
+          -1.9742758918841325,
+          -2.032974190436846,
+          -1.9547602837350584,
+          -0.29766507849161505,
+          -1.240491055089494,
+          -1.8695403540441125,
+          -0.552018221154287,
+          -1.0412825113185928,
+          -1.151965335191579,
+          -0.348825030331542,
+          -1.5498414173535757,
+          -1.5968460380745246,
+          -0.910756833142911,
+          -0.10853189456528434,
+          -0.3699845882959255,
+          -1.155739031563086,
+          -2.2261619425525896,
+          -0.7531030736324064,
+          -1.5934663113962033,
+          -0.2644387239495184,
+          -0.8932014141200294,
+          -1.7502441124313242,
+          -1.3295092393343557,
+          -1.3103641023956463,
+          -1.3601667299856786,
+          -1.719837737385788,
+          -1.6214405616539154,
+          -0.8308417065737033,
+          -0.21063114431281882,
+          -1.4474942451930275,
+          -0.8907899356811322,
+          -2.0717015735103868,
+          -1.9673480311500557,
+          -1.7234146939829258,
+          -2.6005962782846868,
+          -2.5362912625522376,
+          -1.045490743773371,
+          -1.5797568787204348,
+          -1.0337750875450331,
+          -0.9851223205907901,
+          -0.5393255290558154,
+          -1.140348413016542,
+          -1.6489985801012637,
+          -0.32761993910509335,
+          -0.6746985678090562,
+          -2.8696921191744345,
+          -1.4805447746488658,
+          -0.07356313922428215,
+          -2.452095935992274,
+          -3.445655966621475,
+          -0.9638298022191759,
+          -1.8548596331999945,
+          -0.37451826004682565,
+          -1.4696246914783313,
+          -0.5772401810366474,
+          -1.127632233289011,
+          -2.6681801921809845,
+          -3.7559972615492185,
+          -1.3634542716761362
          ],
          "y": [
-          10.431991436409982,
-          10.578922789979023,
-          -11.08784689604023,
-          9.368319662326709,
-          10.864509875031393,
-          -9.145380298542515,
-          8.530649738803161,
-          -8.734969664421655,
-          10.682570704093212,
-          8.692681269424902,
-          8.273496467261813,
-          -10.756438362455098,
-          9.805802993507807,
-          10.530566150578572,
-          -10.18011272998371,
-          10.668778436691964,
-          10.643328374285842,
-          -10.269615786950212,
-          -11.342604186205497,
-          9.888926759072332,
-          9.875598370488358,
-          9.012441494913128,
-          8.710347724810742,
-          10.243782859181428,
-          8.700127770581185,
-          9.207415666630974,
-          9.815447846049242,
-          -9.64218312692443,
-          10.7953377253875,
-          8.558276688565394,
-          -10.052087148194078,
-          10.548056448677952,
-          10.311829346914637,
-          10.640392422182662,
-          9.782263834222302,
-          9.053150858192362,
-          9.213572725425614,
-          9.503469658951172,
-          10.692198950929914,
-          11.496235358415476,
-          8.895901224717713,
-          -11.145131426840642,
-          -12.974158509365267,
-          10.19977539821301,
-          9.146700784294923,
-          10.040131479847442,
-          9.86771238002933,
-          9.887351795241448,
-          9.929084065652068,
-          11.290266011609688,
-          -11.123453067067258,
-          10.147484489283585,
-          11.208989268177485,
-          -12.135275666847397,
-          9.054181960931308,
-          9.793301253704078,
-          9.802668797638288,
-          9.554716217405163,
-          -10.315071284971653,
-          8.359029123511537,
-          10.990830333374355,
-          10.483492038645167,
-          -9.092657211857652,
-          8.509900286031097,
-          -10.984654073509118,
-          12.267037142183929,
-          10.330132567017964,
-          10.007529827792071,
-          -11.375256470526262,
-          10.215957198774724,
-          9.049433653585467,
-          8.718453840398695,
-          9.60125879686179,
-          -9.289832655501169,
-          -10.302489953410696,
-          10.227936908356645,
-          9.14022186983589,
-          10.217130995860394,
-          10.693325962928839,
-          9.498699573350217,
-          10.19702192134427,
-          10.34791074035657,
-          11.126312963017314,
-          9.872790417544415,
-          9.96413732730198,
-          9.648344632228618,
-          11.349788757875157,
-          -9.14148970496857,
-          11.979403790977988,
-          10.397481244930434,
-          9.168525461517437,
-          10.189806842706119,
-          8.274260608596698,
-          8.657166445432388,
-          -9.131881461414878,
-          9.798286161824397,
-          8.591198578810923,
-          -7.942150070565106,
-          10.735350723743633,
-          10.658232735053621,
-          8.836023891177458,
-          -9.339346894309443,
-          8.420813388598399,
-          10.81579400350564,
-          9.045639499970287,
-          9.977619255984662,
-          9.835962717704705,
-          10.595784879170099,
-          8.57563314787465,
-          8.252731050294305,
-          8.805071194788255,
-          9.590863900488054,
-          9.168886529464316,
-          9.986819204723757,
-          9.936588900087296,
-          9.144192081386901,
-          9.901585094397303,
-          9.146346650844777,
-          9.531953722671854,
-          10.547320314461079,
-          -10.089442384176456,
-          10.14694970200409,
-          9.334935447012318,
-          10.623486152469965,
-          9.05247643498976,
-          10.636873495352503,
-          10.339192968496597,
-          10.853754725674913,
-          9.663818817070402,
-          -10.164655954480336,
-          8.64917178909983,
-          9.12329098874219,
-          10.032804002982497,
-          9.384590803637789,
-          11.063427899912183,
-          9.772327947689812,
-          10.192699869638561,
-          9.570166270951905,
-          8.828190989155607,
-          -8.21558969179312,
-          -7.4735799252741,
-          10.634598845051233,
-          9.897842787110605,
-          11.414447848827578,
-          -8.56707263610383,
-          -9.999502022651328,
-          -11.618586014578087,
-          10.377459755952348,
-          -9.03776220785584,
-          9.626572184833593,
-          10.82715264984097,
-          10.97859365551716,
-          10.023128245185594,
-          8.012431767579512,
-          -8.245898709458,
-          12.030888859836285,
-          9.510323814805727,
-          9.950630908100633,
-          -11.141731390118052,
-          9.658436721489581,
-          9.950861279134816,
-          11.427995669690947,
-          10.417739933661831,
-          -9.325448456420052,
-          9.749316881555785,
-          10.689917582638476,
-          9.595909491600912,
-          8.615436636653907,
-          10.26750328703556,
-          10.443309312812659,
-          9.212899904918897,
-          10.193565194717024,
-          9.645036541093809,
-          9.981468754855108,
-          10.318751711366856,
-          9.699427431838405,
-          9.908554114762227,
-          9.677240291728106,
-          10.222697180977601,
-          9.77301555589185,
-          10.406504458766769,
-          9.171739718856749,
-          9.739275957188285,
-          9.467376504074924,
-          9.54828124413794,
-          10.682091152107661,
-          9.562067145009323,
-          -8.661817995044908,
-          9.001953691743802,
-          8.891508625765164,
-          10.981536043660878,
-          -10.948757657425011,
-          9.738233529170705,
-          10.177115059115138,
-          9.071374544683188,
-          8.230666290834629,
-          9.18652534799876,
-          9.495901127302194,
-          -9.93614082945308,
-          10.428069014933625,
-          10.477918270827736,
-          9.299459548411388,
-          -10.489333005459427,
-          -10.994800623839984,
-          9.900549859709495,
-          9.784507986204426,
-          11.034384406929828,
-          10.103732866229231,
-          -9.07782401881131,
-          -8.89198790247796,
-          9.85444434122077,
-          -11.241936776121456,
-          8.677667551653444,
-          -11.168876331537785,
-          10.972720395130409,
-          10.479426868397,
-          9.235404909863526,
-          11.021943936691482,
-          11.599082225261895,
-          9.637575146108645,
-          10.546682549701938,
-          10.627700108970714,
-          10.76498779870255,
-          9.879118279558382,
-          9.052000468107382,
-          10.43595198099494,
-          10.238889372911842,
-          9.733374699066209,
-          10.446425139072616,
-          10.200229444340014,
-          11.226127356030167,
-          9.271352328671032,
-          9.581614235354017,
-          -9.775885044994055,
-          10.059555501254955,
-          9.718505851193045,
-          10.566019758535443,
-          9.42815905464993,
-          9.27115582279102,
-          11.17064707669625,
-          11.448101801066713,
-          -8.205397441929208,
-          11.609559802610033,
-          9.38881980301231,
-          10.421475645435361,
-          9.47975464102002,
-          10.642257870137197,
-          9.236088841927172,
-          10.312020709152538,
-          -12.300409056880625,
-          10.10599430937007,
-          10.81492870253434,
-          9.938698975406927,
-          11.54412841943443,
-          10.418707786148973,
-          -9.270262708470334,
-          10.18042495522522,
-          10.17573788306825,
-          -8.53738008563643,
-          11.07368304567641,
-          10.518059740969722,
-          9.937017916684633,
-          10.273381577142647,
-          10.128949268498529,
-          10.15734725877641,
-          11.169708147334527,
-          8.649627527957849,
-          -9.29412394484856,
-          -9.706170696358674,
-          9.815853933275791,
-          10.2264264838116,
-          -9.914029721657402,
-          -10.001461834741919,
-          9.11283842240048,
-          10.741495400905615,
-          -8.781589093946822,
-          9.098007744102983,
-          10.666373797278975,
-          9.703782597902013,
-          9.613191590441167,
-          9.406013766174574,
-          9.841034015274516,
-          10.206659110317895,
-          -8.927032828927773,
-          10.106935786018445,
-          8.907552460597302,
-          9.777764361359209,
-          9.3794106036389,
-          -9.57173701523777,
-          -10.227876642230848,
-          -9.474711670670247,
-          -10.748771595806618,
-          10.447958471508786,
-          9.983844908655856,
-          -8.534551693098845,
-          9.703775031279745,
-          -10.426718806311984,
-          9.124656783593613,
-          9.759926009993045,
-          -10.569232716962441,
-          8.930849094952343,
-          10.40905613099042,
-          9.67042935890673,
-          -9.890830023677996,
-          10.088065111893188,
-          -7.787790273671671,
-          8.966832377411906,
-          -10.837743553815402,
-          8.590646068553145,
-          7.842374131366396,
-          10.214353919311295,
-          10.927048487636652,
-          9.096636740796201,
-          9.284919575983025,
-          -8.908647184766146,
-          -9.935525409097018,
-          10.075054588707776,
-          9.949663459178467,
-          8.732990986059109,
-          9.833115719895162,
-          9.656282407841541,
-          9.443848458035513,
-          11.235362687154883,
-          9.227678542451521,
-          8.922321190684569,
-          10.803055547325252,
-          -11.292424195184024,
-          9.49842682655462,
-          -9.18419833604568,
-          -9.87135639816811,
-          9.870844521031264,
-          -12.244497549912928,
-          10.174980296682133,
-          8.297384361674307,
-          -10.47586431168546,
-          9.513445507973785,
-          10.557444860168657,
-          9.872022593138968,
-          -11.249423151359132,
-          9.222030434710177,
-          8.966913995361507,
-          -8.939161755713105,
-          9.7442792020588,
-          -8.572874823756841,
-          9.553219137913146,
-          10.101501027131881,
-          9.835323301146465,
-          10.657160502475307,
-          11.531500870498302,
-          10.914443568370425,
-          11.893521848533114,
-          -9.033315040784878,
-          9.575406444425985,
-          9.292221165402676,
-          10.381834420789769,
-          10.088183129282383,
-          8.188311792627863,
-          10.606287734702304,
-          8.843492053375213,
-          10.240897014919259,
-          9.30841384148233,
-          9.8221794252643,
-          10.431621306091749,
-          9.435428285582317,
-          -10.911325740186651,
-          9.511343844521292,
-          -8.819102547114298,
-          10.18578104573953,
-          9.230832463936869,
-          11.03699342666007,
-          10.47514725007039,
-          9.76725518420792,
-          9.20438729761474,
-          9.330566132272242,
-          9.964517795122646,
-          8.665134441131773,
-          -8.978457549702714,
-          10.894019368893543,
-          -10.896326433763264,
-          8.43840566457959,
-          9.652888395848654,
-          9.804389893987894,
-          9.746852748126114,
-          -7.369606115835402,
-          10.547996645888016,
-          10.700555536090503,
-          8.678993402397865,
-          10.641414556301067,
-          11.213985639167232,
-          -8.569646995956298,
-          -10.264398791866753,
-          11.731843948160328,
-          10.593996068297656,
-          10.739414198051527,
-          -8.632490053105942,
-          -11.197419486460035,
-          10.348365212089277,
-          -11.363447534759244,
-          10.984939545914226,
-          10.226032416549858,
-          -10.888526051532166,
-          9.969383269861243,
-          11.212630521616699,
-          10.064859307357807,
-          10.617010236296904,
-          10.952121526082072,
-          9.277512916379834,
-          11.059226025669147,
-          10.307171168172278,
-          10.606774540893143,
-          8.9773782294601,
-          -9.151741340769883,
-          10.207617086127053,
-          11.094789611239051,
-          9.336843318238431,
-          9.86079781130389,
-          9.216006027904323,
-          8.324854894070997,
-          10.338044044790761,
-          -10.294151604174663,
-          9.718395044809713,
-          11.265249274873451,
-          -10.242808140876818,
-          10.561353908868156,
-          -10.313459722722945,
-          8.98322402904057,
-          9.177341570987043,
-          11.469940697074888,
-          -9.738334175633044,
-          7.7143900061613895,
-          11.072012421836584,
-          10.42710291769703,
-          10.276099870861543,
-          -9.026879339855528,
-          11.72271381493591,
-          10.247979599243903,
-          10.408967128763571,
-          10.238884267662408,
-          10.871935346197345,
-          9.664866949459691,
-          9.736767612505343,
-          10.207542216162285,
-          10.121485641612255,
-          -11.345720916613722,
-          10.76405867518501,
-          9.660131974179482,
-          9.180360109109165,
-          8.94104979912801,
-          9.788901032255277,
-          10.286331371747263,
-          10.055583314171287,
-          9.215361894196242,
-          10.92181208884308,
-          9.527377138699975,
-          10.075201491740232,
-          8.214713705209258,
-          10.786486202622607,
-          9.350542010367965,
-          -10.520900309789052,
-          11.354523182026892,
-          -10.518102226321359,
-          10.63925700001192,
-          11.560222346027272,
-          9.5928575727145,
-          10.731765461378277,
-          -11.431816707505398,
-          -11.862030322020379,
-          9.140746357147194,
-          -7.982516681678645,
-          -9.003073446781471,
-          -11.943885806098972,
-          10.259214557590015,
-          10.127628320588185,
-          9.939410921379583,
-          9.561690325539905,
-          9.992093971545948,
-          11.151046148880095,
-          9.704873320345968,
-          9.962192865672469,
-          -8.125877846778623,
-          8.743305768760605,
-          -9.905547714399635,
-          9.652174536339592,
-          9.187271581517008,
-          9.4365030577969,
-          -9.669297893995113,
-          -10.082552919555344,
-          9.350127564355097,
-          -10.800873606138875,
-          9.869161231670079,
-          11.712185599905824,
-          9.050485749954213,
-          9.325690060756026,
-          9.973098271721662,
-          10.446575747338162,
-          9.70834775687247,
-          -10.114049640542355,
-          -10.930336100776112,
-          -9.175041647807143,
-          10.659014748928906,
-          9.189456974407953,
-          9.829789421048153,
-          9.76875887324466,
-          -9.758800063283353,
-          9.436579687418199,
-          9.648222991328623,
-          9.813950421623643,
-          -9.309935979417528,
-          10.021509109578314,
-          10.823305644928398,
-          8.808218812350832,
-          10.548839245217419,
-          10.105198569921617,
-          -9.46839152299188,
-          -9.443937965692445,
-          7.6066228875150745,
-          -8.756951551895897,
-          7.238534964105543,
-          9.72426218467181,
-          9.703337125902735,
-          -9.827766204096138,
-          9.068416737094482,
-          11.076594989730484,
-          8.90457588222235,
-          10.090817621690071,
-          9.770582686330238,
-          10.890080777113349,
-          9.861186553584565,
-          11.199261082291462,
-          9.884285375811713,
-          9.456455460360337,
-          11.31501439302259,
-          9.690903320707816,
-          10.570510309756907,
-          10.416952326055405,
-          10.813588956431143,
-          10.7226153252407,
-          10.610280029430893,
-          11.538145420260602,
-          10.60103731555176,
-          10.960828040200456,
-          10.75798163115783,
-          10.246711769105206,
-          9.891535405639642,
-          9.53772634950135,
-          10.763098694087024,
-          8.707960938566995,
-          10.009786330540289,
-          11.645640184563408,
-          10.209251398709762,
-          -11.584685486459126,
-          10.605915616615206,
-          10.587824851903227,
-          11.980285267506222,
-          8.531564633844482,
-          9.311910773139628,
-          10.805530887549123,
-          10.39440558611863,
-          11.330820304157285,
-          10.981179221277376,
-          8.294746025342986,
-          10.02965778468456,
-          10.00120627075204,
-          9.731110833163294,
-          10.662977672509228,
-          -8.700974814916293,
-          8.163656810895718,
-          10.372522842677265,
-          10.828198888217022,
-          10.737457450678148,
-          10.357833741682963,
-          -11.467713488496731,
-          10.325193707120333,
-          8.732099774408587,
-          10.671291044040728,
-          9.405320778003938,
-          9.48102219566023,
-          9.509463201661852,
-          -11.580978773095676,
-          10.222869875899125,
-          11.068013043863946,
-          10.070922635137961,
-          11.02875273502783,
-          10.258272133459817,
-          10.571527664141403,
-          -9.802240082136032,
-          10.328602110772218,
-          11.312201884480581,
-          10.042545324189176,
-          9.076083240913015,
-          -8.834853084143543,
-          8.71482504212095,
-          9.21031875634279,
-          9.459741071764693,
-          10.861509052201415,
-          8.363737072122976,
-          10.0656891476003,
-          9.447450021229692,
-          9.181950368054672,
-          -10.182701480803098,
-          -10.06014345688638,
-          9.440243059848338,
-          10.543970465904785,
-          8.337115480112354,
-          10.81048957472565,
-          10.925193432628356,
-          11.548291560699061,
-          9.799791857694515,
-          10.266631448687344,
-          7.848038698260519,
-          9.93012963120272,
-          10.395841246433989,
-          9.639308222485864,
-          9.34451477338117,
-          -9.141066641454204,
-          8.873025911234294,
-          10.600852401609487,
-          10.023807259502458,
-          8.887953804404015,
-          -11.551033598370369,
-          10.418108474020185,
-          10.246550977792575,
-          -9.7973989273203,
-          -12.161562221535783,
-          10.742961329657057,
-          11.203939331601806,
-          -11.19118631231781,
-          9.564947410594693,
-          10.867532341091906,
-          8.989382887260156,
-          8.826364286784788,
-          11.572992020918974,
-          9.930108139682497,
-          10.846620883689205,
-          9.964107378839685,
-          11.05148960067864,
-          10.176150986973559,
-          -10.523228749012134,
-          10.413560089689984,
-          11.21870665809445,
-          9.780257090133095,
-          10.404717310623406,
-          -11.402279214205205,
-          10.519067866536659,
-          8.946302081259468,
-          9.641023999978408,
-          9.963430160825444,
-          9.47671465418163,
-          9.675810879589756,
-          -7.668508321830097,
-          8.91725705414001,
-          9.650863054754645,
-          9.254731488655027,
-          8.538371645242158,
-          8.399063215890651,
-          -8.771321862652295,
-          9.894760174360677,
-          8.638963909909863,
-          10.698774700364654,
-          -11.689265106315581,
-          9.452672235740883,
-          10.44209433365358,
-          10.824921719493947,
-          -7.938031259632401,
-          -11.57887233344244,
-          9.153634717552153
+          0.0989308653311407,
+          1.0905495233739284,
+          -0.16209825763649022,
+          0.7308799281502973,
+          0.08995103841086394,
+          0.9178887288491782,
+          -0.9829082561619298,
+          0.07552923703985592,
+          0.27046442148779937,
+          -0.4615685832095655,
+          -0.9529822692023932,
+          -1.2566857317871252,
+          -0.8662248426301181,
+          -1.8821519613532498,
+          0.30971406582915995,
+          -2.108062778390804,
+          -1.8262699662863593,
+          0.24584277742564997,
+          -0.7349258352229834,
+          0.6670368808881302,
+          0.09102378674510114,
+          -0.2514339704679245,
+          -0.2555576094369775,
+          0.26386425302173766,
+          -1.952816505975524,
+          -0.2048512110098044,
+          -3.1796669687115284,
+          -2.682309109406776,
+          0.9784550643478349,
+          1.0845907896026117,
+          -1.645587696917562,
+          -1.6636794640417956,
+          -0.4098155851545463,
+          -1.2643723726549578,
+          0.06502201600563451,
+          0.7022611449471654,
+          -0.031027714672194007,
+          0.9329280510126146,
+          -2.530896228648367,
+          -1.4883058509498173,
+          1.173403997120377,
+          -1.1471652686507057,
+          -0.27787071239917005,
+          -1.710661072898145,
+          0.2914330988384213,
+          -2.05036153929,
+          0.2782034539394478,
+          -1.5367914855390066,
+          -2.4005576396953843,
+          1.5830031118827579,
+          -2.3362180986940038,
+          -1.5853005551630566,
+          0.06942603583070972,
+          1.4939670730151997,
+          -0.7549725506652702,
+          -0.48029849044736184,
+          0.03697901456579844,
+          -1.5048046439611642,
+          -2.3848359116842857,
+          1.061451054694336,
+          -2.959238881220049,
+          0.2516813292063338,
+          -1.598693519004919,
+          -1.7922586184069025,
+          0.3844387733172876,
+          0.30051858678934584,
+          -1.438564010561161,
+          -0.23633978728058647,
+          -1.9494200023874313,
+          -0.8679138878405165,
+          0.19568796200988814,
+          -2.210735902664564,
+          -0.9250353590156313,
+          0.459557094927749,
+          0.6136703284544551,
+          -1.7626505340268226,
+          -0.14820132672200814,
+          -1.4342616303422204,
+          -0.07582100982877304,
+          0.10272134967935975,
+          0.6832871246534209,
+          -1.528248983127038,
+          0.12029183295258905,
+          0.061442475147006625,
+          -2.066640772196779,
+          0.01827312419600169,
+          0.21054088815677585,
+          -0.06654663603979938,
+          0.5083760497224621,
+          -1.0792177355969559,
+          -2.4306088460973614,
+          0.4540481570440076,
+          0.173424370562707,
+          -1.0056530708699696,
+          0.316728902798882,
+          -0.4558855176407792,
+          -1.1637867220469726,
+          0.09320558843296078,
+          -1.330936727291566,
+          -1.0676005913563933,
+          -1.5915338703893624,
+          0.9199153023230502,
+          0.03699879423188679,
+          0.3440487531476708,
+          -1.1738752410196842,
+          0.7397656918820754,
+          -1.2241797014773386,
+          -0.7530163743124852,
+          -0.9313272909656052,
+          0.08685263602325821,
+          0.5891544248127556,
+          -1.0542750531780456,
+          -0.2970289285810972,
+          0.4382142971873346,
+          -0.34023412101214845,
+          1.4875190536752192,
+          -1.416954586145294,
+          -1.0660488591064075,
+          -2.379655828097588,
+          -1.7953658544904745,
+          -0.7647397792964494,
+          -0.7766120619660006,
+          -1.7345928239523898,
+          -1.6297639988930042,
+          -1.9015004261915212,
+          0.12179964780754426,
+          -2.6618859599871687,
+          -1.3667692604725512,
+          -1.648916635722379,
+          -0.15228177468194326,
+          0.07901868182332228,
+          -1.3432094406221853,
+          -0.4668831052576041,
+          -2.4702264100301328,
+          -1.7128959991963728,
+          -2.165172972057797,
+          -1.418626018559717,
+          -3.8616641829571297,
+          -0.1626626850598436,
+          0.6436486212741566,
+          -1.7304531862601946,
+          -1.3318572131923636,
+          0.06846713748549416,
+          0.6939864858476019,
+          -1.047827929506262,
+          0.43219606516146825,
+          0.457965694537777,
+          0.22682231063291614,
+          -2.1828328926072706,
+          0.1006833897212891,
+          -0.7607457478996977,
+          -2.2678712659271456,
+          -0.23077992883988063,
+          0.7055927175465,
+          0.44171240009557255,
+          -2.6007771568224305,
+          -1.8789305330212278,
+          0.841123474191382,
+          -1.6350482793430903,
+          -0.7529270492317505,
+          -1.2461021899329658,
+          -1.1582093804740032,
+          -0.26843491960177635,
+          -2.567180777065901,
+          -0.5866304161568348,
+          -1.768679356319947,
+          -2.411222954293863,
+          0.08706968462353282,
+          -3.332003944907528,
+          -1.2870437552809206,
+          -1.6143866488121354,
+          0.0695955164047839,
+          -3.0292157810501186,
+          0.24308630480175908,
+          -1.3394535550836917,
+          0.8915934712998084,
+          -0.47043102318122765,
+          0.4825482940422383,
+          1.050873995598085,
+          0.4311676414665353,
+          -0.9154186408382529,
+          -1.6867789941583016,
+          1.0497015494725832,
+          -0.5153672317325757,
+          -0.9376770986956955,
+          0.9489207240865036,
+          -0.06697575497869568,
+          0.8463845421831613,
+          -1.869234949384123,
+          0.38560876803373567,
+          1.2510071130482303,
+          -2.4983825603075966,
+          -0.589905072867146,
+          1.4517888022681111,
+          0.0016455754375777065,
+          1.0451129230531775,
+          -3.2910211793428594,
+          -1.494230610764363,
+          -1.2200277298408282,
+          -0.2915030883794131,
+          -2.9794284777420543,
+          1.0551933560274134,
+          0.6590726793994912,
+          1.3374028881610003,
+          -1.3803019929533202,
+          0.773113211807174,
+          -1.992308984464001,
+          0.1905898016838512,
+          -1.8784736283730004,
+          1.3011955875861814,
+          -0.33349405752754535,
+          -0.4613000578029367,
+          -1.7760622125633052,
+          -3.1606949885530913,
+          1.6464967428852204,
+          0.05780247004172634,
+          -0.07119894916230163,
+          -0.5558308417751168,
+          -0.1480644596332229,
+          0.3329952672676537,
+          -1.919851461143618,
+          -0.6230165313256946,
+          0.5619477967864921,
+          -2.496482552993303,
+          -1.5468747375903558,
+          0.6813958493820482,
+          0.5387048214432644,
+          0.712528323300885,
+          -1.0022231559418635,
+          -1.721364156723861,
+          0.18138453232546348,
+          -0.6719762264163993,
+          -2.027337727772391,
+          1.6297751091214,
+          0.02567029203107163,
+          -2.863174323256362,
+          -0.3766383487150834,
+          0.03377634659144513,
+          0.005080016860375958,
+          0.09939165893201451,
+          -2.7529208694696767,
+          1.2205184191039518,
+          0.540950995232738,
+          -0.6472458149680052,
+          -1.8557880043116306,
+          -1.2812034305519013,
+          0.44724502873475847,
+          -0.25644859398520004,
+          -1.3857710977397661,
+          -0.8945918743463688,
+          -0.6754295259627527,
+          0.06626701331888407,
+          -1.3627512958569505,
+          0.9723109096169074,
+          -1.0899796285238978,
+          0.6445091665903011,
+          -0.9924847013214589,
+          -1.269431886328091,
+          -1.343744159423613,
+          -0.539482444842248,
+          -1.2604633736236488,
+          0.10790666610635147,
+          -1.8053732690576467,
+          -1.5042569891028155,
+          -0.6936862173362965,
+          0.5774030947252407,
+          0.6608850348354132,
+          -0.2909522547081492,
+          -0.6789256159079572,
+          0.703760789190055,
+          -1.1410400432577437,
+          -1.4182730300691553,
+          -0.055125840618441946,
+          1.9325738016756788,
+          -1.8619000220795396,
+          0.02312346922705366,
+          -1.7625934433003947,
+          1.017535099254562,
+          1.1367730748310572,
+          2.410468920671449,
+          -1.4227766176836092,
+          -1.828928441300037,
+          0.9073024319511909,
+          -0.44263256617625024,
+          -3.4682625876869877,
+          0.22393944668732457,
+          0.42265728579053685,
+          -1.7502463432170037,
+          -1.9217250536434356,
+          0.11472248599396195,
+          -2.156404603282069,
+          0.015051886310990081,
+          -0.9083549154211898,
+          0.7654159173644282,
+          0.6157012830004833,
+          -0.30938694014718127,
+          -0.39087180098862184,
+          -1.9912149704964774,
+          -2.2440605340479243,
+          -0.7766402898334469,
+          -1.0337115777546233,
+          -0.028965055950193497,
+          -1.4739090830457644,
+          -0.41283443564878797,
+          -2.6016597428484607,
+          -2.793080047895666,
+          -3.061223075906849,
+          -2.724863088576087,
+          -1.4721247710387209,
+          -2.181974263590174,
+          -1.389154244509201,
+          -1.2856747955452044,
+          -1.2950205210581747,
+          -1.0814709392958997,
+          -0.6819184189558549,
+          -2.736704166716171,
+          -1.3832579921180805,
+          -1.9004292200740536,
+          -1.511804934802107,
+          -0.05769962386408922,
+          -1.2071221037100857,
+          -3.091934582046439,
+          -1.6177667248260095,
+          -1.4475734623754417,
+          -0.6673356427622743,
+          -2.5269410157645997,
+          -2.2191640909846315,
+          -1.525297262367249,
+          -0.6667873248832648,
+          -3.84411686763576,
+          -0.7257487907253655,
+          -0.171117137856588,
+          -0.5336454750101758,
+          -2.7949106488021385,
+          -1.7702825136235236,
+          -1.1761251133725987,
+          -0.07164700855999862,
+          -2.1956356678486104,
+          -0.9266764796858473,
+          -0.9552373017830794,
+          -2.852372961121198,
+          -1.011099310113508,
+          -2.3659095721896977,
+          -2.9229574646718532,
+          -0.9630711521233102,
+          -1.3565329188535116,
+          -0.9691809464107817,
+          -1.9528549514820517,
+          -0.7213643279267402,
+          -0.6759918087810798,
+          -0.42114985268204796,
+          -1.5080685521960193,
+          -0.5472344333023882,
+          -0.6381428402300181,
+          -0.46662413693714133,
+          -1.2116712917151657,
+          -0.5260212046486992,
+          -0.02617468823722724,
+          -1.3106933770815419,
+          -2.1419471514510544,
+          -0.37852679542808354,
+          -0.0655027766884625,
+          -1.470248188688024,
+          -2.7269824763646895,
+          -1.944443799462364,
+          -1.606417835436225,
+          -1.664918952793423,
+          -0.6796943445535543,
+          -1.9608947071924017,
+          -1.8039949573446143,
+          -1.9411217240038035,
+          -1.1458174139802062,
+          -0.09324514232003278,
+          -2.121369929159302,
+          -0.427985984007222,
+          -1.41373482935291,
+          -0.18819001560567106,
+          -1.7809303050820837,
+          -1.4244328707539462,
+          -0.0919571318225273,
+          -0.18773940705768932,
+          -0.5652774665855362,
+          -2.407964839200247,
+          -0.4202787336680117,
+          -1.4270223847605827,
+          -3.028876633479578,
+          -2.367516100194192,
+          -0.8993169257130792,
+          -1.7906643691478252,
+          -0.08897758425513769,
+          -2.5435135210089825,
+          -0.8702639573685498,
+          -0.7693531315857526,
+          -0.782562684809964,
+          -1.7925306007793351,
+          -1.508400742959993,
+          -0.8207247077153582,
+          -0.7095591867605042,
+          -1.4363934062680295,
+          -0.7928170944732507,
+          -1.620285046528262,
+          -1.6153944315877036,
+          -2.3271269110910198,
+          -1.305207812810019,
+          -1.3631159462866402,
+          -0.6235811480911467,
+          -2.1858744740536276,
+          -1.6691013020248433,
+          -2.6220641877925117,
+          -0.8664013692580365,
+          -0.12786590932287845,
+          -1.7547809498039355,
+          -1.0920035343429337,
+          -1.8621779023044347,
+          -1.3248245931530516,
+          -1.949049512076154,
+          -2.000705269877166,
+          -1.0077788908947807,
+          -0.10087715516678686,
+          -1.0744290515287798,
+          -0.5343142453394052,
+          -2.6677737440778433,
+          -2.753276567191449,
+          -1.9568842564342923,
+          -0.7151978762894786,
+          -0.5721928665266085,
+          -0.4209078993166815,
+          -1.0906222392658687,
+          -0.9828258474028305,
+          -0.7429508144233494,
+          -1.4491733837439411,
+          -0.6730005931673122,
+          -0.37073554624954086,
+          -1.3910334862843277,
+          -1.7856776435715132,
+          -1.1373864795737871,
+          -2.5476508127989987,
+          -0.11287938277851861,
+          -1.7371214098936725,
+          -2.4080294494114485,
+          -2.4113729067357665,
+          -0.6692806002318142,
+          -2.2174257101735044,
+          -1.5788723541192928,
+          -0.8244108816199209,
+          -0.4323348598940735,
+          -0.7567130942080519,
+          -0.7396155186843696,
+          -1.660020043899323,
+          -0.8510758291113106,
+          -0.17249511499282122,
+          -2.3029108948294934,
+          -1.592918249842483,
+          -1.5596277645232153,
+          -0.14148037721918283,
+          -0.40801496895229195,
+          -1.2684679178088238,
+          -1.3869805216024191,
+          -1.2173871242581549,
+          -0.6149920466980041,
+          -0.713204184075316,
+          -0.5394182031472923,
+          -0.46512480634650666,
+          -1.3001275692197014,
+          -1.1150381596961731,
+          -2.1990081937773054,
+          -1.1031433415157563,
+          -0.9076268534721367,
+          -1.8166448543284113,
+          -0.8562117029267436,
+          -2.272231455171928,
+          -2.3700134355317557,
+          -0.27668899795809554,
+          -0.7053240998971098,
+          -0.4632937742601355,
+          -0.882125689872808,
+          -0.7571646730228437,
+          -0.07117779755819753,
+          -0.061722747646081544,
+          -0.9014540078305235,
+          -1.4232467259458081,
+          -1.246099645089946,
+          -0.8176190138523667,
+          -0.23461396840463666,
+          -1.7775742496549358,
+          -0.026478595731277532,
+          -1.1881753048090613,
+          -2.3051610734149275,
+          -1.1801039223246927,
+          -0.9606211210552827,
+          -1.197557980810754,
+          -0.5300027486887449,
+          -0.5560750155156622,
+          -1.7819199826298577,
+          -0.6883735932196253,
+          -1.7737598505245202,
+          -2.898731516337791,
+          -2.138283972240197,
+          -0.7139059334034257,
+          -1.814504556518174,
+          -0.20139204496170604,
+          -0.28263090200725394,
+          -0.11156216848526912,
+          -0.7962901672083547,
+          -1.3204553914547132,
+          -1.7731483645845065,
+          -0.7731004697770026,
+          -0.07552451025413409,
+          -0.8380859928518817,
+          -0.005543213773452016,
+          -1.490676689117647,
+          -1.1141056454683274,
+          -0.671229458519197,
+          -1.6034795522463936,
+          -1.0152688004430828,
+          -2.9549073696352797,
+          -0.40043778913938544,
+          -2.561703010690272,
+          -0.7865199723365552,
+          -0.8875429935567238,
+          -2.2047645526397677,
+          -1.0862802477743947,
+          -0.8652365279002685,
+          -3.2299520277807097,
+          -0.10853277444996212,
+          -0.6093420588059173,
+          -0.0957652817870186,
+          -1.9429231192286467,
+          -0.9152486215051359,
+          -1.349454854249897,
+          -1.253610227219436,
+          -0.5067674436927558,
+          -0.0954117562064839,
+          -1.1974313286192864,
+          -0.6753239124578909,
+          -1.2133894104301093,
+          -1.064149425255524,
+          -0.9420795667680738,
+          -0.8431923831883746,
+          -0.5143541408890713,
+          -0.7245219416735154,
+          -1.867241233391332,
+          -1.1593389884321246,
+          -0.19050179953831392,
+          -2.0797633944624208,
+          -0.501840371125494,
+          -0.8575586816079234,
+          -0.9126713027888212,
+          -2.3640671542195895,
+          -0.3451185350705699,
+          -1.8298746659810377,
+          -1.7547923346898506,
+          -0.5508448614673176,
+          -0.8523973152823662,
+          -1.3943595415616274,
+          -0.5005068558032022,
+          -0.3764805717179547,
+          -3.7641450013312783,
+          -0.7194114465940633,
+          -3.224309152887903,
+          -0.7282455982331133,
+          -0.4338614161578489,
+          -1.9113497076093813,
+          -1.2155202346752718,
+          -1.9670578188746086,
+          -0.0935286968168374,
+          -1.4647494012755267,
+          -0.6361272986821116,
+          -0.6313789438456411,
+          -1.4709078884317468,
+          -0.051232314194480044,
+          -1.3649676261134325,
+          -0.9573544347748537,
+          -0.20134738375744565,
+          -1.8411599518488577,
+          -0.6452251523030927,
+          -0.7808202842268441,
+          -1.531671933895148,
+          -2.5748718055653392,
+          -1.4808038833779782,
+          -1.6578179517946818,
+          -0.09917526017719991,
+          -3.1005325232568137,
+          -2.502953163026444,
+          -1.6386684995257697,
+          -1.3805496483210256,
+          -0.4543531191495469,
+          -2.3811624336666473,
+          -2.1421267064922285,
+          -2.126347488543375,
+          -0.07562380228348409,
+          -0.16611228417479662,
+          -1.4616878937026923,
+          -0.8193212089343433,
+          -2.4328830607412795,
+          -3.094250336211089,
+          -1.131763932350429,
+          -1.346989832748842,
+          -1.0827472207078388,
+          -1.0038164265251583,
+          -2.6443531185448954,
+          -2.5130248172209457,
+          -0.26835973424296655,
+          -1.6716207298568773,
+          -1.4549180508202784,
+          -2.5086571793537606,
+          -2.7898265238560835,
+          -1.3736500279871227,
+          -2.9500387736265186,
+          -1.2079800862513517,
+          -2.0467729315721996,
+          -1.0368401155965148,
+          -0.7353895933087244,
+          -2.2614459623081427,
+          -0.9862257136181504,
+          -1.7541620453907132,
+          -1.2730986323224405,
+          -0.9630890246388683,
+          -0.8173759035200452,
+          -1.8436043589574669,
+          -2.5604614545017403,
+          -2.768938948030964,
+          -0.8603449943023858,
+          -2.54221747068381,
+          -1.7266823437593044,
+          -0.9322801012632087,
+          -0.4366045082852965,
+          -0.04929120385143371,
+          -3.8640278189360946,
+          -2.902457094378052,
+          -1.1989978244245791,
+          -1.7706522655909578,
+          -0.22010770362186816,
+          -0.8270173029665029,
+          -1.6604411315164298,
+          -1.1819734881838782,
+          -2.433172675920106,
+          -1.5860307243219087,
+          -0.8861223611004225,
+          -1.511784700601369,
+          -2.206651411353966,
+          -0.44680730503438326,
+          -0.5421974220915959,
+          -1.6575258582754904,
+          -0.8896861664751354,
+          -1.9555457296939633,
+          -0.24829820502926603,
+          -0.1820935502143074,
+          -2.0123762095771407,
+          -2.634187139773674,
+          -0.2198010002361348,
+          -1.7672494858703431,
+          -1.2076954170212209,
+          -2.4781028458410255,
+          -1.5586943604540688,
+          -0.13728099988440257,
+          -1.7771045984993814,
+          -2.4051794843290923,
+          -1.743281534341564,
+          -0.02757351075888348,
+          -0.660654596336716,
+          -2.5445863699279236,
+          -1.6757490145738418,
+          -0.7714772633666697,
+          -1.4896774716466208,
+          -2.7295131893908353
          ],
          "z": [
-          -11.105267306978858,
-          11.19085523284095,
-          -10.947097900844499,
-          -10.296990556374467,
-          -8.931551689711268,
-          -9.160583582719374,
-          7.996811259088714,
-          -8.941449413006167,
-          -9.066303680100912,
-          -10.857691886899458,
-          -11.320720927068777,
-          -10.66045443403432,
-          9.717621619554329,
-          -8.883109845515694,
-          -10.197111914676801,
-          -9.735881459295953,
-          -9.313412961015064,
-          -10.479234240107388,
-          -11.087430933581924,
-          9.967392955732373,
-          -10.8093092823047,
-          -10.217746457175448,
-          -11.690008999811907,
-          -9.853402107077093,
-          -10.592235999302437,
-          -11.221968166549527,
-          -9.995685928397165,
-          -9.805415119660385,
-          -9.52370499831622,
-          -10.367586750645454,
-          -10.107791308510844,
-          -8.254211273301523,
-          -8.872437990394051,
-          10.722620671714637,
-          -11.194072241800837,
-          9.01965998898805,
-          -9.741376877383177,
-          -10.73224445254886,
-          -8.567651043911479,
-          -9.299574567916476,
-          -11.158352784272736,
-          -11.010473731584916,
-          -12.2204626490463,
-          -9.026294198017164,
-          9.375235544612867,
-          -9.065307082410214,
-          -10.654850435412252,
-          -9.480074009832979,
-          -10.332371475737649,
-          11.992712173725717,
-          -10.916724327753949,
-          -9.563285334319001,
-          11.55853575048472,
-          -11.84708538061338,
-          9.818400835398503,
-          -11.140368341172858,
-          -9.652147403597484,
-          -10.11946207894941,
-          -10.11634528665132,
-          -10.352396689908627,
-          -9.822528975832574,
-          -9.83718032584841,
-          -9.281104383942354,
-          8.138103832796457,
-          -11.004938247494836,
-          -9.05528204823771,
-          10.003988463867316,
-          -8.91043315922229,
-          -11.152580234165764,
-          -10.676520289587339,
-          -10.650487495106258,
-          -9.811681962135832,
-          -10.53565055329651,
-          -9.452751558074898,
-          -10.234622067354653,
-          -10.331433438091613,
-          -9.571283297305682,
-          -9.28825233118525,
-          10.802868987561688,
-          9.836212259723137,
-          -9.583986444840797,
-          -9.376550834565437,
-          -10.039938459609035,
-          10.384447319660188,
-          8.983022259153623,
-          -9.65427548862961,
-          10.396045887595983,
-          -9.32376377398416,
-          11.769374055034973,
-          -9.207258703242164,
-          -9.947128023438554,
-          -10.306263698401713,
-          -10.114367539270448,
-          -10.415225869036215,
-          -9.391849430215759,
-          -10.66109567773707,
-          -10.986893461601527,
-          -8.369423981467339,
-          -10.936931406514615,
-          -10.98942097111687,
-          -9.154968154602772,
-          -9.459012766077104,
-          -9.966787025748387,
-          -9.262020189042168,
-          -12.199219511490707,
-          8.812250307717667,
-          -10.84860238030653,
-          -10.452709357407592,
-          -10.589508904468898,
-          -10.765224009805092,
-          -9.671333807986562,
-          -9.048851036960768,
-          -9.983478491215758,
-          -10.60159210282733,
-          -9.557670941652464,
-          -9.93049009125282,
-          9.703677626043858,
-          -10.746984571035934,
-          9.25676617603981,
-          -8.752877747683875,
-          -10.064216507956314,
-          -9.801704970178145,
-          8.532172631526159,
-          -10.074701856463411,
-          -11.129583568751444,
-          -9.991877950209773,
-          -9.61812803691525,
-          -9.273269726736224,
-          -8.988335259361634,
-          -10.15799606042903,
-          -11.260634189347492,
-          8.679932939339754,
-          -8.914396564608529,
-          -11.03479825085903,
-          -9.280254161068228,
-          -10.12304941973937,
-          -10.454600993159778,
-          -10.235621153551085,
-          -12.217125440788417,
-          -8.728436594374356,
-          -8.006981501029676,
-          10.057101175519376,
-          -9.551280990048754,
-          -11.09263314263856,
-          -8.842031671516626,
-          -10.071520174765896,
-          -11.218847451467546,
-          10.092004801764743,
-          -9.16303615896891,
-          10.22786992252169,
-          -8.981382864244395,
-          11.487898017318011,
-          -10.288211167385494,
-          -10.970812007551633,
-          -8.523202592344997,
-          -10.650451911583412,
-          -10.32586191977748,
-          9.559071243896788,
-          -10.671073288446062,
-          -11.408212639376641,
-          -9.532410298446667,
-          -9.733120973871443,
-          10.71831410278362,
-          -9.498655312922372,
-          9.931800501306187,
-          -8.549281642972636,
-          9.218041754248329,
-          -10.741390418145736,
-          -10.547264027876093,
-          10.11541903467514,
-          -10.160291200076198,
-          -10.743774815413287,
-          -9.703782188152976,
-          -8.96990550432846,
-          11.677816789348961,
-          -10.191216439547736,
-          8.807419958441901,
-          9.767468757502039,
-          -9.906681470270339,
-          -10.059720575845379,
-          -10.64206452704701,
-          9.969919063262212,
-          -11.28338023720815,
-          -9.32891307712815,
-          -10.452825517392958,
-          -9.330775006880025,
-          -9.809302487233946,
-          -8.7697474095757,
-          -11.693822888252537,
-          -10.159531053257725,
-          -9.12277402650114,
-          -10.51785391470663,
-          -11.64454113517821,
-          10.46763476646958,
-          8.918081572609086,
-          -10.48855128123401,
-          -10.20887915526111,
-          -10.27830389066572,
-          -10.112053868581464,
-          -9.992573650083703,
-          -11.041869751477574,
-          -10.496903833498964,
-          -10.262554194399565,
-          -10.868261053967695,
-          -11.23552186657663,
-          -10.717717914237298,
-          -8.609474572505201,
-          10.001153379937008,
-          -9.18002839676978,
-          -9.057715020085388,
-          -10.133179334312084,
-          -10.770060300052053,
-          -10.4885045000884,
-          -11.043461563876166,
-          10.251433532767916,
-          -9.990536747144182,
-          -9.776283393166768,
-          -9.27000360421941,
-          -9.500862546634636,
-          -12.070538834614451,
-          -10.41682803138812,
-          -9.853529518912879,
-          -11.394928760507266,
-          -11.496854379268022,
-          -9.705620588763605,
-          9.891690547080133,
-          -8.259038929277185,
-          9.722054860310886,
-          -10.593402397199615,
-          11.00177904996722,
-          -9.520814629440231,
-          8.76094189127912,
-          9.074634820067262,
-          -9.8272616847432,
-          -9.266587662538624,
-          -10.506101128707755,
-          -10.510522301155723,
-          -11.204753984192354,
-          8.546213277968459,
-          -9.58875919110552,
-          -9.536996842762505,
-          -8.806934042412538,
-          -9.686868675529002,
-          -9.103322711139167,
-          -9.310514082138813,
-          -10.064898344720405,
-          -9.830609987312426,
-          -9.624411978740579,
-          9.235736381090376,
-          -11.985955500798378,
-          -11.40683143086642,
-          -10.829845406976169,
-          -10.68570731432977,
-          -9.504297993489606,
-          -9.964576497333194,
-          -9.41199267043706,
-          -10.310358481605949,
-          -10.42321815096765,
-          -8.724165722931662,
-          -10.402814722922727,
-          -8.874169014922678,
-          10.472589874817778,
-          10.035781632803687,
-          -9.10711573563627,
-          -9.646599640470091,
-          11.65778751387266,
-          -10.792133859322746,
-          -9.506139124715483,
-          -9.735656603815215,
-          10.24654651405657,
-          -9.745586301236116,
-          -10.103612917211782,
-          -9.953001523671654,
-          8.818138828816307,
-          -10.019964937754098,
-          -9.086858537564218,
-          10.387154671064502,
-          -10.23135916597227,
-          -8.78067292417932,
-          -10.297489643692177,
-          -9.623372678777823,
-          -9.873884429015003,
-          -8.17479828389425,
-          -9.174955848902762,
-          -10.411261465297354,
-          -11.00941794543099,
-          -9.407897829315283,
-          -9.300521006493954,
-          -9.553136221404635,
-          -10.29876906454553,
-          -9.56242203064996,
-          -10.805941270819535,
-          -10.839946100459304,
-          -9.155894604038506,
-          -8.818913923493803,
-          -9.153978454473052,
-          -10.28809148331198,
-          -10.548943817893864,
-          -9.251453384415111,
-          -10.524965914124175,
-          -10.483760773383445,
-          -8.759278212848844,
-          -10.805296429020107,
-          -9.967765923194149,
-          9.814872079151538,
-          -8.169659395049177,
-          -9.928649012308433,
-          -10.701391120491985,
-          -10.769639052065397,
-          -12.330387658318246,
-          10.020874844924805,
-          -9.406717409127225,
-          9.254247618071378,
-          8.513673515195034,
-          -9.38693132709783,
-          -10.06007291752894,
-          -9.110738702061209,
-          -11.370386540966388,
-          -9.613342190716725,
-          8.705440313332295,
-          -10.697581186924364,
-          9.257373221689946,
-          -9.216901023144857,
-          -9.957361946841305,
-          9.000967275969176,
-          -10.536562300416199,
-          -11.048401466252011,
-          -10.935046969911488,
-          -9.34872319188463,
-          -10.015874792504487,
-          -11.015608282881386,
-          -11.717496707406163,
-          -11.04794727728506,
-          7.8822793325917315,
-          -10.53390959836035,
-          8.199682127050059,
-          10.877846340515882,
-          -10.43606621751903,
-          -11.112482112094682,
-          -10.309578760709975,
-          -10.013594909200862,
-          -9.23814057921528,
-          -11.775515074823069,
-          -8.85699980600209,
-          -10.736604361394159,
-          -9.284949356522699,
-          -11.621786984769232,
-          10.37356977074443,
-          -9.17817161755589,
-          10.549382153512463,
-          -10.752956745550119,
-          -9.239816020870835,
-          9.23501862428561,
-          -11.187957519848956,
-          -9.07008471021217,
-          -10.934948032148496,
-          -10.856452070426414,
-          -11.341789811474808,
-          9.346875516677638,
-          11.799574930384193,
-          -9.131121669052956,
-          9.75720258355876,
-          -10.550908167180292,
-          -10.568536541830744,
-          -10.70537185092636,
-          11.509925999869555,
-          -9.082560377461503,
-          -9.670626896506693,
-          9.933263780726143,
-          -9.713388296713394,
-          -9.59643962949021,
-          -10.257463983979699,
-          -10.131551400914967,
-          -10.194926184856019,
-          9.818504763503183,
-          9.104978857884454,
-          -9.233639083133237,
-          -10.757448746554797,
-          -10.754618718895832,
-          -10.832817874786057,
-          -9.393303161072815,
-          -10.300814919237954,
-          -10.756470722100731,
-          -7.895788868287207,
-          -10.063297494632025,
-          11.32147389431444,
-          -10.979715080455545,
-          11.054363003461832,
-          -8.38473908841343,
-          -9.015799361653185,
-          -10.291636195849156,
-          -10.230453340327104,
-          -10.117745597133343,
-          -9.911823390761686,
-          -8.967165922974683,
-          -10.88864955890278,
-          -10.10717811557293,
-          -11.113536764692707,
-          -10.64217330675725,
-          -10.01633493396354,
-          -10.797822228025336,
-          -9.566192849908864,
-          -8.85240167736895,
-          -9.196233796538825,
-          -8.970540114636744,
-          -8.921627089158541,
-          -11.537932556122367,
-          -10.165217561784539,
-          -9.545355407056755,
-          -11.322286836287825,
-          -8.937380764027356,
-          -9.410879418678475,
-          -9.725090886067282,
-          -9.615781147932818,
-          -9.209565164138404,
-          -9.272156038279748,
-          -9.629660983847094,
-          -11.036459503925382,
-          9.685041206856452,
-          -10.308152066121629,
-          -10.671315848106353,
-          10.971423700095558,
-          -10.233097743310388,
-          10.851645899504483,
-          -10.241836005870413,
-          7.959188447927158,
-          -9.862869274864554,
-          -8.524294888783015,
-          -9.86141274558701,
-          -9.69197574333864,
-          10.166535400067602,
-          -10.083272437384421,
-          -10.147306658861856,
-          -9.104166522695913,
-          -8.389096670657215,
-          -10.815754952411936,
-          -9.59317961843981,
-          -11.601728127392434,
-          -9.146677812653222,
-          -10.335323488945317,
-          -9.898365788462442,
-          11.187190778769494,
-          -8.980158648832706,
-          -11.051285698819878,
-          9.712934135871127,
-          -9.831665776154415,
-          -10.221788407038241,
-          -10.221037397802592,
-          -10.438634985853652,
-          -9.00649703489815,
-          10.21061398346157,
-          9.926156861204232,
-          -10.348227809796523,
-          -10.532812844484651,
-          -10.404123843156686,
-          -10.522011189302525,
-          -9.884491777360951,
-          -10.685702239831539,
-          -10.490234023529577,
-          -9.433830608354537,
-          -10.392097376703406,
-          10.450299354003617,
-          11.374821911597806,
-          -9.241500268061037,
-          10.90735232769793,
-          -11.239586106570762,
-          -11.36227566280655,
-          7.977278031799438,
-          -8.28200371520016,
-          -9.372922842650702,
-          -11.527529455343469,
-          -9.502616553335008,
-          9.665395891374342,
-          9.58613926021746,
-          -9.051401828358642,
-          -9.541123088835423,
-          10.41240848056892,
-          9.713593309929571,
-          -9.761180650301464,
-          -8.365600835042834,
-          -10.25316827733324,
-          -10.03418443626311,
-          -9.400660627187898,
-          -11.548046708655855,
-          -10.319197332073037,
-          -9.871939198234076,
-          -10.016518960097311,
-          -11.558930891239639,
-          -10.57482746259738,
-          -8.859636377819243,
-          -9.333608900458268,
-          -9.243953590225857,
-          9.758861329381155,
-          -10.51178254628297,
-          -9.246160493504782,
-          -10.048243939338388,
-          -10.060091668331497,
-          -10.766491692941868,
-          -9.20749783544738,
-          -10.132330593133762,
-          -9.613885060211672,
-          -9.466406524205022,
-          10.19592384270935,
-          -9.776544873291527,
-          9.3859685099662,
-          -10.44700258224902,
-          -10.676677366259495,
-          -9.49324826153377,
-          -9.502913936856187,
-          -10.107632800590414,
-          -11.285544640647483,
-          10.16391732644831,
-          -9.608939238372217,
-          -9.682237318806628,
-          -9.674230080902689,
-          -10.659515579507593,
-          -8.95272318305296,
-          -11.4319908952023,
-          -9.685448052368983,
-          8.32459741104036,
-          -9.712595830186736,
-          -10.722026352069626,
-          -9.951525350317128,
-          8.324208185280003,
-          -9.849728679775696,
-          9.734211176721534,
-          9.969303478055581,
-          -9.564075831538123,
-          -9.50693469374803,
-          -9.896695551718091,
-          10.52652338045619,
-          -8.182239555518855,
-          -10.406655222060895,
-          -9.446756537897713,
-          -11.272782264050962,
-          -10.121744260609361,
-          10.782973755595778,
-          -9.716737966318197,
-          -8.351258731819595,
-          -8.655031112272061,
-          11.67928201290393,
-          -8.795664386906061,
-          -9.486853193379732,
-          -10.735829748537785,
-          -9.94595795433673,
-          10.856009520526102,
-          -9.992110198090755,
-          -8.97327143815815,
-          12.142710822366393,
-          10.64415848767782,
-          -11.44605629097473,
-          -9.332578047527896,
-          10.75437792216234,
-          -10.313529095931862,
-          -11.698061803120252,
-          -9.238479593733548,
-          10.06419909504426,
-          9.659835310255286,
-          -9.204926049225913,
-          11.6217265604779,
-          9.632245542056122,
-          -9.017739019742278,
-          -10.263822233982474,
-          -11.207538700768056,
-          9.660321155214284,
-          -8.896950220527403,
-          8.004600073404104,
-          -8.4554309240528,
-          -10.093560462497434,
-          -9.450218438048516,
-          -10.127854608273967,
-          -11.035454958082964,
-          -11.038907455932366,
-          -10.795072277248137,
-          -9.472261009174293,
-          -9.020243846803472,
-          8.94842163726299,
-          -10.155543197351124,
-          -11.239096529048648,
-          -8.32219824841543,
-          -9.897297183307066,
-          -10.889155741371678,
-          -10.496692430500904,
-          -8.952102817847779,
-          -8.871643395831686,
-          -9.80845182501751,
-          -10.123192570213329,
-          -10.836664095277854,
-          10.164374889165632,
-          -9.617119880375238,
-          -9.208734051792522,
-          -11.390477983535195,
-          -9.540786485115511,
-          -11.098531022500586,
-          11.295109036119896,
-          -10.156369170187382,
-          10.578910694019404,
-          9.162834720692164,
-          -10.384557995118696,
-          -10.276536899425682,
-          -10.082327700424289,
-          10.14853926833251,
-          10.505065105435138,
-          8.162995355817646,
-          -8.740078320670944,
-          -8.669391963759825,
-          -8.833764676220664,
-          -9.309999515712205,
-          -9.46671725867314,
-          -11.526170948087952,
-          10.317975187526514,
-          -10.951330567841536,
-          8.90244617105325,
-          8.649630812180767,
-          -9.401499878147236,
-          -10.71687639770355,
-          11.42746236050356,
-          -10.333996058252396,
-          -10.314906262262447,
-          -11.380808203328304,
-          10.873844125677316,
-          10.288047646778105,
-          -9.809331202452846,
-          -11.636858721655921,
-          -9.183790432292291,
-          10.919735527162333,
-          -10.901888194951635,
-          -9.066053467495049,
-          -8.974024034445218,
-          -9.750028865817928,
-          -9.784582859991378,
-          -9.715949552812422,
-          11.035359432515504,
-          -9.20312278871186,
-          -9.839605630909404,
-          12.09835648432104,
-          -10.847991766010258,
-          -10.4223686508385,
-          -9.482833468256734,
-          -9.054528711023224,
-          -10.259080266226004,
-          -9.436089803113818,
-          -11.05571771215743,
-          -9.473738977076549,
-          9.618609942038272,
-          10.38554822232626,
-          -9.837930809519527,
-          -9.586502292116087,
-          -9.760145855294123,
-          -8.212558682846067,
-          -11.256352162861818,
-          -9.854059324616989,
-          -10.191543211337805,
-          -9.761798115950524,
-          -10.01485460970319,
-          -9.240233053843028,
-          -9.350368327107644,
-          8.033736831755926,
-          -9.39226157680316,
-          -11.225413529859074,
-          -11.165325652777241,
-          -8.941255401734374,
-          -10.3970413616433,
-          -8.395786318618223,
-          -11.29155241751624,
-          -10.743204326511096
+          -4.044009291075765,
+          -4.010474614590195,
+          -1.2108257838708276,
+          -1.1243303646115144,
+          2.0314605660627656,
+          -3.7075873486655317,
+          3.2952069363799668,
+          -0.9355666473930802,
+          -0.7343830026303584,
+          -3.895861147681497,
+          -0.19125266166682575,
+          -2.6780289966687194,
+          -2.5395074759776413,
+          0.11121578833016699,
+          0.4234779025475204,
+          -4.986401650692861,
+          -4.549198659412295,
+          -3.7120588967019534,
+          0.3400148837297987,
+          -2.4584277726545105,
+          -1.5803297259740061,
+          -2.6296027676252787,
+          3.1616027177927863,
+          2.167736117507582,
+          -3.1479648557177273,
+          2.339870082916054,
+          0.14729283728024534,
+          -1.433031209096434,
+          1.5294806621040449,
+          -3.7088834223481366,
+          0.40308741148048544,
+          3.024865535584433,
+          1.4452433994966034,
+          -0.9765240740868322,
+          -2.5675131427979307,
+          -1.5953363893572927,
+          1.2746508995477637,
+          -1.0882494921133206,
+          -3.7307713572614123,
+          4.121369086009156,
+          -2.6968558614803944,
+          1.664762954276231,
+          -0.3361608597111063,
+          2.0180495690001914,
+          1.1950917993965673,
+          3.2682064846350842,
+          4.3064960146913185,
+          1.2006278432302153,
+          -1.5619408672963577,
+          -1.5916253754121263,
+          -2.817704189794759,
+          3.331367723246614,
+          -4.445199785368212,
+          1.67789107587617,
+          -3.127373889429227,
+          -0.18983326493949182,
+          -0.1667890332848012,
+          -3.4889445675176454,
+          1.1216938937457366,
+          3.125945999514294,
+          -1.5914724503976219,
+          2.787485124390022,
+          -0.181467295551772,
+          -3.84700801072528,
+          -3.61477625891209,
+          -3.7796115760166886,
+          -4.355468052038515,
+          -3.8284272602264027,
+          -1.7333601789906519,
+          -0.27858261869220424,
+          0.7061223020744354,
+          0.15126992185294608,
+          2.776542453873269,
+          -2.8283634738250565,
+          1.1540781026088123,
+          2.8240165626770732,
+          0.895302293396691,
+          -4.399624892541896,
+          -2.280585170563002,
+          0.2506670938279605,
+          -0.2110723348635002,
+          1.3657023064492995,
+          -1.9673625800964274,
+          -1.0470452733037598,
+          -0.15314872969678284,
+          0.34575275202084477,
+          1.176089368288527,
+          -4.686153916238782,
+          1.113571589160256,
+          -0.7642268031665651,
+          -2.4640843694026704,
+          4.372225829256796,
+          3.328320818651208,
+          2.136179862975908,
+          2.3864406585479605,
+          -3.3552293925237526,
+          -2.393962664548367,
+          1.9787001977657885,
+          -0.1571290419932767,
+          3.27712633402544,
+          -1.6507418130060265,
+          -2.2218610558574015,
+          -2.0549243391749825,
+          3.121226027297868,
+          2.1178179432948463,
+          1.6253996012234389,
+          0.19236989487340939,
+          -4.60845127584194,
+          -0.8986933528816445,
+          -2.580074445936278,
+          -1.0646810380152014,
+          3.2071068023857903,
+          -0.5663157353635917,
+          -1.118477775542142,
+          -1.1674031651736536,
+          0.8244818292731226,
+          1.8230618614274379,
+          -4.900714646939417,
+          -2.5746131524218074,
+          -4.033888401856091,
+          2.008582217146145,
+          2.0053314503944453,
+          -3.4379811013183,
+          1.4880886988522963,
+          2.169361219013269,
+          3.003656666885555,
+          -2.4619265009391875,
+          -4.277066842296735,
+          1.4862514195594745,
+          -2.736903282404033,
+          -3.812193157494007,
+          2.810569510776503,
+          -3.4309288189624643,
+          -0.5887261379776012,
+          0.1787818666903771,
+          -1.0252020731219726,
+          -4.167624407795568,
+          -4.21857654247239,
+          1.1208520022515627,
+          -3.0384341737937812,
+          2.82099038624816,
+          -2.5993877281976743,
+          -2.5649146314027336,
+          1.9539902933584399,
+          -0.9791459780168852,
+          1.2341202464113028,
+          -4.899364575652824,
+          2.1565324126134753,
+          -1.9095619030238167,
+          -4.088997707872991,
+          -5.012755245716005,
+          0.5925006406422924,
+          -4.1533733253736775,
+          -3.356985817276229,
+          3.881770267793466,
+          -2.572679815724069,
+          -2.3819141576766887,
+          -1.6829101995015283,
+          -3.8648802600067516,
+          -1.238786317051018,
+          0.11160261096486046,
+          2.729256444272952,
+          0.9558930675689155,
+          -2.764907904015684,
+          -1.634461744415225,
+          3.7337098235461363,
+          -3.9095393561001086,
+          3.841763892347273,
+          2.477736550763746,
+          2.525702755014093,
+          -0.7824446060190668,
+          -1.3704553273539086,
+          1.8621734286470142,
+          2.027833299685434,
+          2.198665003791029,
+          -4.1100648048076085,
+          -4.2585123872700805,
+          1.913082330661041,
+          2.7812519977042056,
+          -2.0480157488878934,
+          0.6945723556870869,
+          -2.757312088906398,
+          4.21636814531974,
+          -2.1287493426722763,
+          -3.623417107521372,
+          -1.1387259325763575,
+          2.3653461126719266,
+          -0.17806196782480743,
+          3.1957981854143673,
+          -4.1276572701760585,
+          0.8452390529321638,
+          -0.11467580615010853,
+          -1.0467531400901642,
+          0.7929812794947155,
+          -0.19054897751883537,
+          3.359643229754119,
+          -4.422555609358116,
+          3.381824333159167,
+          0.1140490749650711,
+          -2.126976553898393,
+          -1.1607017478267396,
+          1.6063371798490165,
+          3.622318606391141,
+          -3.2679058751817003,
+          3.880122519233109,
+          -1.4670619236608031,
+          -1.511052892027612,
+          1.5387875494042618,
+          4.360135629891125,
+          3.6732218599420756,
+          0.8065444144497258,
+          -4.02082665540297,
+          2.058776527736563,
+          2.541095765067676,
+          4.353731039353193,
+          0.640800635360109,
+          1.5968095280416366,
+          3.7130930936510387,
+          1.401518481917008,
+          -4.710534366734149,
+          -4.613724832480331,
+          -1.2922635927041384,
+          0.42190530954114003,
+          1.3609168812923969,
+          -0.4370865556651067,
+          1.049663363411196,
+          0.3228967523638353,
+          -0.5104448335038452,
+          -0.39846932975233784,
+          -0.23431163360541785,
+          -4.330934346477036,
+          0.8890780813570753,
+          -1.8956495981345611,
+          -0.08302431116092901,
+          -3.27369566126002,
+          -2.124671124879278,
+          -2.0381495523431026,
+          2.9543589938610113,
+          2.3711940169800556,
+          1.45136721817006,
+          1.0115624375106202,
+          3.3401771227862236,
+          -2.0651882434212183,
+          3.0159207280858125,
+          0.9661737851105023,
+          1.6281404302255122,
+          0.9143315548174922,
+          -2.32669286362443,
+          -3.9184881701397978,
+          -4.474812049941045,
+          -1.9073736839093685,
+          -4.702849888834175,
+          -2.970799835680111,
+          1.9255192054993264,
+          1.804297579418682,
+          -1.1476055304910942,
+          3.412411982212096,
+          0.5756293237125742,
+          0.867470258980239,
+          0.9949196120491495,
+          -0.9332404150324392,
+          1.740534015785708,
+          3.942820017158531,
+          -0.985020298118382,
+          0.3986754624312274,
+          -1.7811489940175793,
+          2.4641231004514843,
+          3.7366726241648545,
+          4.22925278854571,
+          2.8337643611151524,
+          3.0658508057134197,
+          -4.957710684130422,
+          -3.536872367104115,
+          -1.6190809775336477,
+          3.771281378386612,
+          3.2701014010924014,
+          -0.3020899093479814,
+          -3.8161229491421915,
+          2.6172908763323433,
+          -3.9513235413416865,
+          1.924128598851241,
+          1.4558392496964547,
+          4.153545008453533,
+          2.217147653577955,
+          -0.5816904578617699,
+          0.7543380266685453,
+          -3.8344742628060287,
+          1.1823104591639941,
+          3.8611006325911577,
+          -1.3368741199657403,
+          -0.6075142745103657,
+          4.273796100466044,
+          1.0607536069636856,
+          1.1940792635846025,
+          1.8032167475850391,
+          0.6354385613985736,
+          0.8673843385347224,
+          0.528425922127516,
+          1.408261648477227,
+          2.0045404940489284,
+          0.22535556800341716,
+          1.953716284102156,
+          -4.476179561107644,
+          -3.388673035486122,
+          2.542886548887303,
+          3.2947950426403,
+          2.3530932841469214,
+          1.018974302241622,
+          3.070207563386247,
+          2.615119886064881,
+          -3.6711605605595983,
+          -4.793658227314207,
+          2.386684377701161,
+          1.825637201062439,
+          0.0543679074702661,
+          -1.791206255135196,
+          3.1816552361067325,
+          -2.428657227437706,
+          -1.3660229847585779,
+          -3.3293101905851037,
+          1.583519957013908,
+          -0.709176906664621,
+          -3.404640593543286,
+          1.2630971172226628,
+          3.4202812849482997,
+          0.996924404959608,
+          3.3034920264447623,
+          3.3330478807926616,
+          0.4746569641826106,
+          3.31613696120196,
+          3.934416440643953,
+          -4.185755397705606,
+          1.2809556936389717,
+          -3.1712785097138694,
+          -1.11971133815477,
+          2.1017243016270895,
+          0.14820661284601222,
+          2.4309992247113534,
+          -4.835761444263267,
+          -0.2493815635854535,
+          4.020781091997585,
+          -1.4687995985413487,
+          -3.963646116284173,
+          -1.2384323633701801,
+          -5.03066293006302,
+          1.1986140245630477,
+          3.1557562652585043,
+          3.787510597232292,
+          -1.9249053907677758,
+          -1.853799142368127,
+          2.4698937946619974,
+          2.9049220169009855,
+          2.2756543912486578,
+          3.0077549342286263,
+          1.3988324331809032,
+          2.6258802056876975,
+          -4.5654433072413125,
+          -2.012310322660514,
+          -3.5997524232860685,
+          1.2021497478054295,
+          -4.636033986069648,
+          -4.380207825083104,
+          -1.1845402700664582,
+          1.507433522708915,
+          -2.371922644017858,
+          0.9558683968041182,
+          -0.503595896938247,
+          -1.051985589560264,
+          -2.6561305594685463,
+          -3.1717169042273987,
+          -4.318450531026405,
+          0.6007988136147313,
+          1.9298291257604498,
+          0.5380263694240881,
+          1.083495096071359,
+          -0.2793342445467424,
+          2.035445282701625,
+          -0.7191749380377583,
+          -2.311691626230136,
+          3.3753732943584476,
+          -3.5088577364682996,
+          4.158232599417016,
+          2.7941280648671727,
+          3.3429476991563627,
+          1.481165662507414,
+          3.214888354069644,
+          1.0801116624079974,
+          -0.561367494025629,
+          -4.233852517962861,
+          -0.5432333420465172,
+          0.10350855675263126,
+          -2.7235542883452704,
+          1.604418298067829,
+          -4.90746185116778,
+          0.12241006335379012,
+          -0.4530497056439371,
+          4.328987360660732,
+          2.105793616663524,
+          -2.784600762888871,
+          -3.382786663822669,
+          -3.2113101665140746,
+          -4.512447345695303,
+          1.4097822806449916,
+          -4.784679257193987,
+          3.685455956481724,
+          -1.2818540073775249,
+          4.146954011343552,
+          3.860894505287301,
+          -3.0506613898199317,
+          1.711465071155768,
+          0.08741584456535367,
+          1.0275409170370082,
+          -2.761571448097288,
+          0.7015390357084081,
+          0.05490982868834582,
+          -0.8311620428718376,
+          -1.774528261373856,
+          -0.9788158583081801,
+          -4.483044675930517,
+          -2.8074403676894386,
+          -4.430060421493725,
+          -0.5613314758086689,
+          0.23066626026599213,
+          2.5408306642470277,
+          -4.873773454788938,
+          3.0768000936362165,
+          -3.6934016646456147,
+          -1.8369338801046515,
+          2.22076987794238,
+          -4.54576770175465,
+          2.1946225454689277,
+          -2.3632238077134624,
+          -2.1306825119309383,
+          2.7010413861395106,
+          -3.9889209945126076,
+          -3.0523539426196593,
+          -3.457600810890665,
+          3.3246018878621184,
+          0.9743847254009212,
+          -3.6837376787426437,
+          2.446250521932675,
+          1.7918864471793334,
+          0.5166691805718191,
+          1.2517761296778565,
+          0.2611491622230284,
+          -1.5317695366293518,
+          -0.9872589557464764,
+          -1.4021433623845518,
+          0.5455058819987277,
+          1.0231934594517078,
+          0.6577301463177632,
+          -4.307656634867845,
+          2.850695417470618,
+          -0.45015195030239585,
+          -4.405615189878,
+          -1.3145191254514037,
+          -5.010549632190043,
+          -2.8315242460339354,
+          -1.5812692196743883,
+          4.192813258951058,
+          -0.35249885237395073,
+          -3.455216181100228,
+          -0.596373354843724,
+          0.5182522765328841,
+          3.5850762763636874,
+          -4.153606538122128,
+          3.6925050740864362,
+          -2.7212384119521076,
+          -0.6745441831763967,
+          -1.0162892804874692,
+          0.3370494511418576,
+          -0.8883087653271451,
+          -4.13517023534184,
+          2.6076578586897554,
+          -1.307288684999317,
+          0.5900386578884618,
+          -0.9065768698628407,
+          4.331102668738121,
+          -0.6144970514879633,
+          -3.876798262153283,
+          4.349641220610123,
+          -4.919501557182855,
+          4.213875202472832,
+          3.5144998501857936,
+          0.6252323474022461,
+          3.276599564180727,
+          -0.22093563268527916,
+          -2.2936343651979474,
+          -3.590240392183645,
+          4.157494597384539,
+          -3.9090335310346225,
+          -0.3802499408509572,
+          4.368547690582845,
+          1.6721234151468272,
+          2.755742913798694,
+          -1.2306461171967236,
+          1.219361477399243,
+          -1.739449497147005,
+          1.0801328876151741,
+          -4.9912566452593214,
+          -2.868341655666318,
+          4.279442132912632,
+          -5.063505532818136,
+          -1.9972567626090951,
+          0.21132724448337914,
+          0.9366052895856685,
+          -3.783293950073621,
+          -4.678719336574696,
+          -2.328477094802701,
+          -1.1201419689486292,
+          1.3199456111829377,
+          -3.120255744211236,
+          -1.1605607389089627,
+          -3.781023592325152,
+          -3.0434936625675113,
+          -3.876179050668162,
+          0.06432441219995422,
+          3.234741976216813,
+          2.5450695801217647,
+          3.097742813357171,
+          -4.868189806722336,
+          -4.252085508502581,
+          -4.257571447484203,
+          -0.9694440871389549,
+          -0.8908542901805889,
+          -2.8078465883070316,
+          0.01668887924284501,
+          0.2027080453714456,
+          2.5576986965329453,
+          0.9891608398567131,
+          -0.037696257146509815,
+          -4.39323786730786,
+          -1.8041159216091676,
+          -0.5269461271758233,
+          3.0840180234787455,
+          1.4244236743505292,
+          1.0800643248701878,
+          2.427185367355327,
+          1.0471742735808585,
+          1.527088597290434,
+          -0.005012721146948174,
+          -3.2130628648587845,
+          1.930966479870012,
+          4.345766592628409,
+          1.3448334320425204,
+          -3.0088239716808713,
+          -3.3443102818409134,
+          3.350075493715777,
+          -1.9304638978509794,
+          1.671732068466799,
+          -1.9841550897318978,
+          -0.08055399486006909,
+          -0.02208222045700925,
+          -2.0791672248412123,
+          -0.5247667766382733,
+          -3.2869917603385783,
+          4.064306101677903,
+          1.7943893415628898,
+          4.002266456525978,
+          1.3157292662258335,
+          -3.3299395298753733,
+          2.130989070776251,
+          2.2936428410691576,
+          -3.574761405697574,
+          -4.840826266053941,
+          -1.180509755763147,
+          3.3562330318485207,
+          -1.852117587370865,
+          0.4007153602800395,
+          0.45965399139956276,
+          3.9882642453229016,
+          -4.725887038851679,
+          -1.4092164440076185,
+          2.632551420424133,
+          -4.26598516064475,
+          0.6747748556170832,
+          -1.290894882054968,
+          0.2793131880664568,
+          -4.150115647836211,
+          -0.30286221807859537,
+          0.47990575478275765,
+          1.0934505200885525,
+          -1.0367386965764256,
+          -3.2377624626857218,
+          3.615984337023277,
+          -1.6324258064920514,
+          1.8068608295685804,
+          0.40504702674131376,
+          2.9416569959463077,
+          -0.040677348771492206,
+          -1.0439022812806211,
+          2.5959411999239386,
+          -4.0333898621036,
+          -2.8649300595248173,
+          -2.255713412903356,
+          -0.8062147788987106,
+          3.6203908579338764,
+          3.7467408700032516,
+          -2.0054683076216637,
+          -3.276812640981236,
+          1.6680267928688703,
+          -3.3613021449603897,
+          3.0182487856684626,
+          -3.590596614477353,
+          2.0180142671442587,
+          0.806917149541782,
+          -0.019065819356225866,
+          3.873787039544065,
+          -1.2188660426145241,
+          -3.6893656704925655,
+          4.092533822183518,
+          1.2085406034424135,
+          2.1097817273165944,
+          -2.134240899267886,
+          2.97962517277585,
+          1.614723521991574,
+          -0.4559294605585027,
+          -4.380683396002748,
+          -1.408125442389578,
+          -1.7875007596939114,
+          -1.929022690197188,
+          -1.7189500650445857,
+          -4.968911814234564,
+          -1.0769572795228393,
+          -1.3407737651976008,
+          0.987257269272436,
+          -1.854412637397966,
+          -2.611579028168522,
+          1.7438338347752795,
+          -3.3168072884627415,
+          -0.7843673208554005,
+          1.70840260891904,
+          -3.8323525622481833,
+          -2.5403497363658043,
+          -4.0879328534304715,
+          -2.4379367386046744,
+          1.0373381200945548,
+          4.024102181676699,
+          1.9972184418174619,
+          2.5592025034552597,
+          3.5321573799552644,
+          -0.09004193940936212,
+          -0.09365452111106354,
+          2.493325861153483,
+          -4.00833354989503,
+          -3.24519403572068,
+          2.7150845405760666,
+          -0.8092693704149099,
+          4.064926714020149,
+          -2.1805149324925033,
+          2.9378377914862055,
+          0.6797742398939297,
+          3.103895509763295,
+          0.8541442644682204,
+          -1.339953757404614,
+          4.260466643125251,
+          -4.057321725662484,
+          -2.5100418706905625,
+          1.0850165525942481,
+          -3.6132252888238456,
+          -2.207086120500148,
+          -1.9689639038248434,
+          -3.5918548511838306,
+          0.12899991613883088,
+          -3.5791048035410338,
+          3.1544287580319432
          ]
         },
         {
@@ -11235,2677 +11205,2677 @@
          "scene": "scene2",
          "showlegend": false,
          "text": [
-          "example_0",
-          "example_3",
-          "example_5",
-          "example_6",
-          "example_7",
-          "example_9",
-          "example_10",
-          "example_12",
-          "example_18",
-          "example_24",
-          "example_25",
-          "example_27",
-          "example_28",
-          "example_31",
-          "example_33",
-          "example_38",
-          "example_39",
-          "example_41",
-          "example_42",
-          "example_47",
-          "example_48",
-          "example_52",
-          "example_54",
-          "example_55",
-          "example_57",
-          "example_60",
-          "example_62",
-          "example_66",
-          "example_68",
-          "example_74",
-          "example_77",
-          "example_79",
-          "example_80",
-          "example_82",
-          "example_83",
-          "example_85",
-          "example_86",
-          "example_88",
-          "example_90",
-          "example_92",
-          "example_94",
-          "example_96",
-          "example_97",
-          "example_102",
-          "example_104",
-          "example_105",
-          "example_106",
-          "example_108",
-          "example_110",
-          "example_113",
-          "example_117",
-          "example_125",
-          "example_126",
-          "example_129",
-          "example_131",
-          "example_132",
-          "example_133",
-          "example_136",
-          "example_137",
-          "example_138",
-          "example_139",
-          "example_140",
-          "example_142",
-          "example_144",
-          "example_145",
-          "example_147",
-          "example_155",
-          "example_156",
-          "example_158",
-          "example_164",
-          "example_165",
-          "example_167",
-          "example_169",
-          "example_171",
-          "example_172",
-          "example_174",
-          "example_177",
-          "example_178",
-          "example_179",
-          "example_181",
-          "example_183",
-          "example_193",
-          "example_195",
-          "example_204",
-          "example_209",
-          "example_213",
-          "example_214",
-          "example_215",
-          "example_221",
-          "example_222",
-          "example_223",
-          "example_224",
-          "example_227",
-          "example_228",
-          "example_232",
-          "example_234",
-          "example_235",
-          "example_238",
-          "example_242",
-          "example_243",
-          "example_248",
-          "example_249",
-          "example_255",
-          "example_258",
-          "example_260",
-          "example_267",
-          "example_280",
-          "example_282",
-          "example_285",
-          "example_287",
-          "example_290",
-          "example_291",
-          "example_294",
-          "example_296",
-          "example_299",
-          "example_302",
-          "example_308",
-          "example_312",
-          "example_314",
-          "example_318",
-          "example_319",
-          "example_321",
-          "example_323",
-          "example_325",
-          "example_326",
-          "example_327",
-          "example_328",
-          "example_329",
-          "example_333",
-          "example_336",
-          "example_338",
-          "example_341",
-          "example_346",
-          "example_347",
-          "example_348",
-          "example_349",
-          "example_355",
-          "example_357",
-          "example_359",
-          "example_360",
-          "example_362",
-          "example_364",
-          "example_370",
-          "example_372",
-          "example_373",
-          "example_375",
-          "example_377",
-          "example_386",
-          "example_388",
-          "example_389",
-          "example_390",
-          "example_404",
-          "example_409",
-          "example_410",
-          "example_419",
-          "example_421",
-          "example_423",
-          "example_424",
-          "example_428",
-          "example_430",
-          "example_434",
-          "example_435",
-          "example_440",
-          "example_442",
-          "example_446",
-          "example_447",
-          "example_448",
-          "example_449",
-          "example_451",
-          "example_457",
-          "example_458",
-          "example_460",
-          "example_461",
-          "example_467",
-          "example_468",
-          "example_475",
-          "example_477",
-          "example_490",
-          "example_491",
-          "example_499",
-          "example_500",
-          "example_501",
-          "example_503",
-          "example_504",
-          "example_516",
-          "example_523",
-          "example_525",
-          "example_528",
-          "example_531",
-          "example_533",
-          "example_536",
-          "example_539",
-          "example_541",
-          "example_542",
-          "example_545",
-          "example_547",
-          "example_549",
-          "example_553",
-          "example_558",
-          "example_560",
-          "example_566",
-          "example_568",
-          "example_571",
-          "example_573",
-          "example_578",
-          "example_587",
-          "example_589",
-          "example_594",
-          "example_597",
-          "example_601",
-          "example_603",
-          "example_605",
-          "example_615",
-          "example_621",
-          "example_622",
-          "example_624",
-          "example_626",
-          "example_629",
-          "example_634",
-          "example_636",
-          "example_638",
-          "example_643",
-          "example_644",
-          "example_649",
-          "example_652",
-          "example_657",
-          "example_660",
-          "example_661",
-          "example_664",
-          "example_665",
-          "example_666",
-          "example_667",
-          "example_668",
-          "example_669",
-          "example_671",
-          "example_672",
-          "example_673",
-          "example_676",
-          "example_677",
-          "example_682",
-          "example_688",
-          "example_691",
-          "example_695",
-          "example_697",
-          "example_700",
-          "example_708",
-          "example_711",
-          "example_713",
-          "example_714",
-          "example_716",
-          "example_718",
-          "example_722",
-          "example_723",
-          "example_724",
-          "example_731",
-          "example_732",
-          "example_735",
-          "example_737",
-          "example_739",
-          "example_743",
-          "example_750",
-          "example_754",
-          "example_756",
-          "example_762",
-          "example_770",
-          "example_772",
-          "example_778",
-          "example_782",
-          "example_783",
-          "example_786",
-          "example_793",
-          "example_796",
-          "example_798",
-          "example_799",
-          "example_803",
-          "example_809",
-          "example_810",
-          "example_811",
-          "example_814",
-          "example_816",
-          "example_820",
-          "example_823",
-          "example_826",
-          "example_828",
-          "example_836",
-          "example_839",
-          "example_841",
-          "example_842",
-          "example_844",
-          "example_846",
-          "example_847",
-          "example_852",
-          "example_857",
-          "example_858",
-          "example_859",
-          "example_862",
-          "example_864",
-          "example_867",
-          "example_868",
-          "example_869",
-          "example_874",
-          "example_875",
-          "example_881",
-          "example_882",
-          "example_885",
-          "example_888",
-          "example_889",
-          "example_893",
-          "example_894",
-          "example_898",
-          "example_899",
-          "example_901",
-          "example_903",
-          "example_908",
-          "example_910",
-          "example_912",
-          "example_916",
-          "example_917",
-          "example_918",
-          "example_921",
-          "example_922",
-          "example_924",
-          "example_932",
-          "example_933",
-          "example_934",
-          "example_938",
-          "example_940",
-          "example_941",
-          "example_944",
-          "example_945",
-          "example_946",
-          "example_950",
-          "example_953",
-          "example_958",
-          "example_967",
-          "example_968",
-          "example_970",
-          "example_973",
-          "example_974",
-          "example_982",
-          "example_983",
-          "example_986",
-          "example_987",
-          "example_989",
-          "example_997",
-          "example_998",
-          "example_999",
-          "example_1000",
-          "example_1001",
-          "example_1005",
-          "example_1006",
-          "example_1007",
-          "example_1009",
-          "example_1023",
-          "example_1024",
-          "example_1026",
-          "example_1030",
-          "example_1031",
-          "example_1032",
-          "example_1034",
-          "example_1035",
-          "example_1037",
-          "example_1041",
-          "example_1046",
-          "example_1047",
-          "example_1049",
-          "example_1055",
-          "example_1057",
-          "example_1058",
-          "example_1065",
-          "example_1068",
-          "example_1074",
-          "example_1078",
-          "example_1079",
-          "example_1080",
-          "example_1085",
-          "example_1087",
-          "example_1088",
-          "example_1089",
-          "example_1091",
-          "example_1093",
-          "example_1094",
-          "example_1096",
-          "example_1097",
-          "example_1101",
-          "example_1108",
-          "example_1110",
-          "example_1111",
-          "example_1112",
-          "example_1113",
-          "example_1116",
-          "example_1118",
-          "example_1121",
-          "example_1124",
-          "example_1128",
-          "example_1131",
-          "example_1132",
-          "example_1137",
-          "example_1140",
-          "example_1142",
-          "example_1145",
-          "example_1149",
-          "example_1151",
-          "example_1155",
-          "example_1156",
-          "example_1161",
-          "example_1168",
-          "example_1169",
-          "example_1172",
-          "example_1175",
-          "example_1176",
-          "example_1178",
-          "example_1182",
-          "example_1185",
-          "example_1188",
-          "example_1190",
-          "example_1193",
-          "example_1196",
-          "example_1197",
-          "example_1200",
-          "example_1201",
-          "example_1205",
-          "example_1206",
-          "example_1208",
-          "example_1209",
-          "example_1210",
-          "example_1214",
-          "example_1216",
-          "example_1217",
-          "example_1221",
-          "example_1226",
-          "example_1230",
-          "example_1232",
-          "example_1234",
-          "example_1236",
-          "example_1237",
-          "example_1244",
-          "example_1251",
-          "example_1252",
-          "example_1253",
-          "example_1259",
-          "example_1261",
-          "example_1262",
-          "example_1268",
-          "example_1269",
-          "example_1278",
-          "example_1283",
-          "example_1285",
-          "example_1286",
-          "example_1290",
-          "example_1292",
-          "example_1293",
-          "example_1299",
-          "example_1302",
-          "example_1303",
-          "example_1310",
-          "example_1313",
-          "example_1315",
-          "example_1323",
-          "example_1328",
-          "example_1329",
-          "example_1330",
-          "example_1333",
-          "example_1334",
-          "example_1336",
-          "example_1338",
-          "example_1340",
-          "example_1341",
-          "example_1342",
-          "example_1351",
-          "example_1352",
-          "example_1353",
-          "example_1356",
-          "example_1358",
-          "example_1359",
-          "example_1361",
-          "example_1366",
-          "example_1368",
-          "example_1370",
-          "example_1374",
-          "example_1375",
-          "example_1385",
-          "example_1394",
-          "example_1401",
-          "example_1402",
-          "example_1404",
-          "example_1406",
-          "example_1407",
-          "example_1418",
-          "example_1419",
-          "example_1421",
-          "example_1422",
-          "example_1427",
-          "example_1435",
-          "example_1446",
-          "example_1449",
-          "example_1450",
-          "example_1455",
-          "example_1456",
-          "example_1457",
-          "example_1460",
-          "example_1461",
-          "example_1463",
-          "example_1466",
-          "example_1467",
-          "example_1468",
-          "example_1470",
-          "example_1473",
-          "example_1477",
-          "example_1480",
-          "example_1486",
-          "example_1488",
-          "example_1489",
-          "example_1492",
-          "example_1497",
-          "example_1501",
-          "example_1505",
-          "example_1506",
-          "example_1507",
-          "example_1512",
-          "example_1514",
-          "example_1518",
-          "example_1519",
-          "example_1521",
-          "example_1523",
-          "example_1524",
-          "example_1532",
-          "example_1536",
-          "example_1538",
-          "example_1540",
-          "example_1541",
-          "example_1544",
-          "example_1545",
-          "example_1549",
-          "example_1557",
-          "example_1561",
-          "example_1562",
-          "example_1563",
-          "example_1566",
-          "example_1572",
-          "example_1574",
-          "example_1576",
-          "example_1578",
-          "example_1580",
-          "example_1581",
-          "example_1587",
-          "example_1593",
-          "example_1599",
-          "example_1604",
-          "example_1609",
-          "example_1614",
-          "example_1617",
-          "example_1618",
-          "example_1619",
-          "example_1620",
-          "example_1622",
-          "example_1625",
-          "example_1627",
-          "example_1628",
-          "example_1630",
-          "example_1637",
-          "example_1639",
-          "example_1640",
-          "example_1641",
-          "example_1642",
-          "example_1647",
-          "example_1662",
-          "example_1665",
-          "example_1666",
-          "example_1668",
-          "example_1669",
-          "example_1673",
-          "example_1682",
-          "example_1684",
-          "example_1691",
-          "example_1692",
-          "example_1697",
-          "example_1699",
-          "example_1701",
-          "example_1704",
-          "example_1709",
-          "example_1713",
-          "example_1718",
-          "example_1728",
-          "example_1730",
-          "example_1732",
-          "example_1736",
-          "example_1741",
-          "example_1747",
-          "example_1753",
-          "example_1758",
-          "example_1760",
-          "example_1769",
-          "example_1780",
-          "example_1781",
-          "example_1784",
-          "example_1789",
-          "example_1797",
-          "example_1798",
-          "example_1799",
-          "example_1800",
-          "example_1802",
-          "example_1807",
-          "example_1812",
-          "example_1815",
-          "example_1818",
-          "example_1819",
-          "example_1822",
-          "example_1824",
-          "example_1825",
-          "example_1826",
-          "example_1829",
-          "example_1830",
-          "example_1832",
-          "example_1835",
-          "example_1838",
-          "example_1840",
-          "example_1843",
-          "example_1847",
-          "example_1848",
-          "example_1852",
-          "example_1853",
-          "example_1854",
-          "example_1855",
-          "example_1856",
-          "example_1858",
-          "example_1859",
-          "example_1866",
-          "example_1869",
-          "example_1870",
-          "example_1881",
-          "example_1884",
-          "example_1885",
-          "example_1887",
-          "example_1890",
-          "example_1894",
-          "example_1896",
-          "example_1897",
-          "example_1900",
-          "example_1901",
-          "example_1919",
-          "example_1921",
-          "example_1924",
-          "example_1927",
-          "example_1931",
-          "example_1933",
-          "example_1934",
-          "example_1938",
-          "example_1942",
-          "example_1943",
-          "example_1944",
-          "example_1954",
-          "example_1956",
-          "example_1958",
-          "example_1961",
-          "example_1964",
-          "example_1967",
-          "example_1970",
-          "example_1971",
-          "example_1973",
-          "example_1977",
-          "example_1983",
-          "example_1986",
-          "example_1991",
-          "example_1992",
-          "example_1996"
+          "666_l_1_m-0_1.42-1_0.04-2_0.58-3_0.4",
+          "667_l_1_m-0_1.07-1_0.13-2_0.08-3_0.11",
+          "668_l_1_m-0_0.1-1_0.1-2_0.09-3_0.58",
+          "669_l_1_m-0_0.99-1_0.44-2_0.12-3_1.24",
+          "670_l_1_m-0_0.45-1_0.08-2_0.78-3_0.1",
+          "671_l_1_m-0_0.28-1_0.11-2_0.12-3_0.27",
+          "672_l_1_c_0_1_2-0_0.43-1_0.28-2_0.33-3_0.41",
+          "673_l_1_c_0_1_2-0_0.61-1_0.14-2_0.73-3_0.65",
+          "674_l_1_c_0_1_2-0_1.35-1_0.86-2_0.19-3_0.14",
+          "675_l_1_c_0_1_2-0_0.06-1_0.48-2_0.19-3_1.15",
+          "676_l_1_c_0_1_2-0_0.6-1_0.32-2_0.04-3_0.35",
+          "677_l_1_c_0_1_2-0_0.7-1_0.4-2_0.11-3_1.46",
+          "678_l_1_c_0_1_2-0_0.48-1_0.42-2_0.47-3_0.31",
+          "679_l_1_c_0_1_2-0_0.09-1_0.12-2_0.24-3_1.24",
+          "680_l_1_c_0_1_2-0_0.45-1_0.1-2_0.27-3_0.88",
+          "681_l_1_c_0_1_2-0_0.01-1_0.09-2_0.01-3_1.53",
+          "682_l_1_c_0_1_2-0_0.02-1_0.13-2_0.6-3_0.43",
+          "683_l_1_c_0_1_2-0_0.37-1_0.43-2_0.01-3_1.33",
+          "684_l_1_c_0_1_2-0_0.85-1_0.14-2_0.37-3_0.32",
+          "685_l_1_c_0_1_2-0_0.13-1_0.81-2_0.22-3_0.28",
+          "686_l_1_c_0_1_2-0_1.47-1_0.36-2_0.51-3_0.29",
+          "687_l_1_c_0_1_2-0_0.73-1_1.04-2_0.17-3_1.62",
+          "688_l_1_c_0_1_2-0_0.55-1_0.14-2_0.05-3_0.72",
+          "689_l_1_c_0_1_2-0_0.17-1_0.19-2_0.07-3_0.08",
+          "690_l_1_c_0_1_2-0_0.62-1_0.75-2_0.21-3_1.57",
+          "691_l_1_c_0_1_2-0_1.1-1_0.23-2_0.17-3_0.56",
+          "692_l_1_c_0_1_2-0_0.36-1_0.43-2_0.66-3_0.14",
+          "693_l_1_c_0_1_2-0_0.31-1_0.04-2_0.05-3_0.44",
+          "694_l_1_c_0_1_2-0_0.03-1_0.19-2_0.44-3_0.45",
+          "695_l_1_c_0_1_2-0_0.33-1_0.03-2_0.11-3_0.86",
+          "696_l_1_c_0_1_2-0_1.0-1_0.88-2_0.06-3_0.11",
+          "697_l_1_c_0_1_2-0_0.04-1_0.22-2_0.36-3_0.84",
+          "698_l_1_c_0_1_2-0_0.4-1_0.25-2_0.96-3_0.07",
+          "699_l_1_c_0_1_2-0_0.04-1_0.01-2_0.26-3_0.31",
+          "700_l_1_c_0_1_2-0_1.03-1_0.19-2_0.27-3_0.75",
+          "701_l_1_c_0_1_2-0_0.24-1_0.15-2_0.41-3_1.58",
+          "702_l_1_c_0_1_2-0_0.29-1_0.73-2_0.21-3_0.48",
+          "703_l_1_c_0_1_2-0_0.65-1_0.99-2_0.64-3_1.27",
+          "704_l_1_c_0_1_2-0_0.92-1_0.5-2_0.63-3_0.65",
+          "705_l_1_c_0_1_2-0_0.37-1_0.37-2_0.14-3_0.71",
+          "706_l_1_c_0_1_2-0_0.07-1_0.61-2_0.6-3_1.57",
+          "707_l_1_c_0_1_2-0_0.02-1_0.81-2_0.44-3_1.63",
+          "708_l_1_c_0_1_2-0_0.42-1_0.4-2_0.17-3_0.57",
+          "709_l_1_c_0_1_2-0_0.05-1_0.47-2_0.03-3_0.71",
+          "710_l_1_c_0_1_2-0_0.34-1_0.05-2_1.03-3_0.1",
+          "711_l_1_c_0_1_3-0_0.31-1_0.36-2_0.38-3_0.28",
+          "712_l_1_c_0_1_2-0_0.41-1_0.28-2_0.42-3_0.34",
+          "713_l_1_c_0_1_3-0_0.22-1_0.0-2_0.46-3_0.21",
+          "714_l_1_c_0_1_2-0_0.1-1_0.73-2_0.14-3_0.31",
+          "715_l_1_c_0_1_3-0_0.08-1_0.15-2_1.46-3_0.02",
+          "716_l_1_c_0_1_2-0_0.3-1_0.94-2_0.06-3_1.62",
+          "717_l_1_c_0_1_3-0_0.21-1_0.0-2_0.93-3_0.06",
+          "718_l_1_c_0_1_2-0_1.08-1_0.03-2_0.09-3_0.45",
+          "719_l_1_c_0_1_3-0_0.18-1_0.92-2_1.72-3_0.29",
+          "720_l_1_c_0_1_2-0_0.07-1_0.03-2_0.03-3_0.56",
+          "721_l_1_c_0_1_3-0_0.42-1_0.81-2_1.23-3_0.18",
+          "722_l_1_c_0_1_2-0_0.08-1_0.78-2_0.04-3_2.01",
+          "723_l_1_c_0_1_3-0_0.64-1_0.25-2_0.52-3_0.12",
+          "724_l_1_c_0_1_2-0_0.25-1_1.61-2_0.23-3_1.07",
+          "725_l_1_c_0_1_3-0_0.28-1_0.42-2_0.63-3_0.19",
+          "726_l_1_c_0_1_2-0_0.2-1_0.49-2_0.29-3_0.86",
+          "727_l_1_c_0_1_3-0_0.15-1_1.58-2_0.77-3_0.47",
+          "728_l_1_c_0_1_2-0_0.15-1_0.51-2_0.15-3_0.14",
+          "729_l_1_c_0_1_3-0_1.1-1_0.03-2_0.87-3_0.14",
+          "730_l_1_c_0_1_2-0_0.11-1_0.39-2_0.01-3_0.53",
+          "731_l_1_c_0_1_3-0_0.19-1_0.78-2_1.61-3_0.07",
+          "732_l_1_c_0_1_2-0_0.39-1_0.52-2_0.39-3_0.81",
+          "733_l_1_c_0_1_3-0_0.37-1_0.18-2_1.78-3_0.3",
+          "734_l_1_c_0_1_2-0_0.18-1_1.04-2_0.05-3_0.87",
+          "735_l_1_c_0_1_3-0_0.03-1_0.47-2_1.25-3_0.23",
+          "736_l_1_c_0_1_2-0_0.86-1_0.48-2_0.68-3_0.23",
+          "737_l_1_c_0_1_3-0_1.23-1_0.66-2_1.32-3_0.05",
+          "738_l_1_c_0_1_2-0_1.06-1_0.31-2_0.02-3_0.8",
+          "739_l_1_c_0_1_3-0_0.09-1_0.08-2_0.05-3_0.21",
+          "740_l_1_c_0_1_2-0_0.31-1_0.62-2_0.63-3_0.57",
+          "741_l_1_c_0_1_3-0_0.54-1_0.86-2_0.71-3_0.39",
+          "742_l_1_c_0_1_2-0_0.77-1_1.11-2_0.52-3_0.79",
+          "743_l_1_c_0_1_3-0_1.73-1_0.33-2_0.26-3_0.35",
+          "744_l_1_c_0_1_2-0_0.28-1_0.73-2_0.08-3_0.9",
+          "745_l_1_c_0_1_3-0_0.33-1_0.46-2_0.9-3_0.01",
+          "746_l_1_c_0_1_2-0_0.42-1_0.05-2_0.58-3_0.7",
+          "747_l_1_c_0_1_3-0_0.05-1_1.24-2_1.46-3_0.1",
+          "748_l_1_c_0_1_2-0_0.2-1_0.37-2_0.09-3_0.61",
+          "749_l_1_c_0_1_3-0_0.02-1_0.93-2_0.71-3_0.01",
+          "750_l_1_c_0_1_2-0_0.16-1_0.28-2_0.71-3_0.12",
+          "751_l_1_c_0_1_3-0_0.17-1_0.61-2_1.7-3_0.65",
+          "752_l_1_c_0_1_2-0_0.37-1_0.13-2_0.07-3_0.46",
+          "753_l_1_c_0_1_3-0_0.41-1_1.05-2_0.49-3_0.37",
+          "754_l_1_c_0_1_2-0_0.42-1_0.14-2_0.31-3_0.36",
+          "755_l_1_c_0_1_3-0_0.47-1_0.2-2_0.85-3_0.23",
+          "756_l_1_c_0_1_2-0_0.08-1_0.19-2_0.21-3_0.15",
+          "757_l_1_c_0_1_3-0_0.18-1_0.68-2_0.13-3_0.28",
+          "758_l_1_c_0_1_2-0_0.06-1_0.53-2_0.44-3_0.15",
+          "759_l_1_c_0_1_3-0_0.5-1_0.18-2_1.22-3_0.01",
+          "760_l_1_c_0_1_2-0_0.05-1_0.03-2_0.12-3_0.34",
+          "761_l_1_c_0_1_3-0_0.18-1_0.43-2_1.69-3_0.4",
+          "762_l_1_c_0_1_2-0_0.37-1_0.14-2_0.07-3_0.43",
+          "763_l_1_c_0_1_3-0_0.06-1_0.28-2_0.84-3_0.27",
+          "764_l_1_c_0_1_2-0_0.03-1_0.09-2_0.04-3_1.16",
+          "765_l_1_c_0_1_3-0_0.24-1_0.65-2_0.36-3_0.27",
+          "766_l_1_c_0_1_2-0_0.36-1_0.14-2_0.35-3_1.2",
+          "767_l_1_c_0_1_3-0_0.02-1_0.36-2_0.95-3_0.25",
+          "768_l_1_c_0_1_2-0_0.1-1_0.08-2_0.34-3_0.78",
+          "769_l_1_c_0_1_3-0_0.53-1_0.32-2_1.77-3_0.28",
+          "770_l_1_c_0_1_2-0_0.55-1_0.28-2_0.5-3_0.84",
+          "771_l_1_c_0_1_3-0_0.1-1_0.03-2_0.74-3_0.04",
+          "772_l_1_c_0_1_2-0_0.18-1_0.0-2_0.73-3_0.38",
+          "773_l_1_c_0_1_3-0_0.09-1_0.59-2_0.5-3_0.13",
+          "774_l_1_c_0_1_2-0_0.37-1_0.89-2_0.54-3_1.03",
+          "775_l_1_c_0_1_3-0_0.29-1_0.01-2_1.27-3_0.22",
+          "776_l_1_c_0_1_2-0_0.12-1_0.21-2_0.26-3_0.05",
+          "777_l_1_c_0_1_3-0_0.07-1_0.44-2_1.03-3_0.46",
+          "778_l_1_c_0_1_2-0_0.18-1_0.34-2_0.42-3_0.07",
+          "779_l_1_c_0_1_3-0_0.85-1_0.35-2_0.29-3_0.33",
+          "780_l_1_c_0_1_2-0_0.29-1_0.43-2_0.21-3_1.24",
+          "781_l_1_c_0_1_3-0_0.84-1_0.15-2_0.73-3_0.09",
+          "782_l_1_c_0_1_2-0_0.08-1_0.11-2_0.09-3_1.07",
+          "783_l_1_c_0_1_3-0_0.59-1_0.51-2_0.24-3_0.15",
+          "784_l_1_c_0_1_2-0_1.61-1_0.67-2_0.1-3_0.77",
+          "785_l_1_c_0_1_3-0_0.88-1_0.43-2_0.14-3_0.27",
+          "786_l_1_c_0_1_2-0_0.31-1_0.26-2_0.17-3_0.07",
+          "787_l_1_c_0_1_3-0_1.39-1_0.51-2_0.31-3_0.31",
+          "788_l_1_c_0_1_2-0_0.08-1_1.23-2_0.29-3_0.59",
+          "789_l_1_c_0_1_3-0_0.58-1_0.11-2_0.54-3_0.03",
+          "790_l_1_c_0_1_2-0_0.2-1_0.01-2_0.36-3_0.13",
+          "791_l_1_c_0_1_3-0_0.47-1_0.22-2_0.95-3_0.01",
+          "792_l_1_c_0_1_2-0_0.87-1_0.0-2_0.13-3_0.65",
+          "793_l_1_c_0_1_3-0_0.39-1_0.17-2_1.03-3_0.08",
+          "794_l_1_c_0_1_2-0_0.96-1_0.06-2_0.15-3_0.72",
+          "795_l_1_c_0_1_3-0_0.18-1_0.01-2_0.29-3_0.2",
+          "796_l_1_c_0_1_2-0_0.81-1_0.34-2_0.35-3_0.06",
+          "797_l_1_c_0_1_3-0_0.07-1_0.32-2_0.43-3_0.35",
+          "798_l_1_c_0_1_2-0_0.3-1_1.08-2_0.46-3_0.32",
+          "799_l_1_c_0_1_3-0_0.12-1_0.12-2_1.17-3_0.33",
+          "800_l_1_c_0_1_2-0_0.14-1_0.84-2_0.15-3_0.74",
+          "801_l_1_c_0_1_3-0_0.7-1_0.21-2_0.9-3_0.5",
+          "802_l_1_c_0_1_2-0_0.36-1_0.22-2_0.48-3_1.13",
+          "803_l_1_c_0_1_3-0_0.35-1_0.28-2_0.4-3_0.12",
+          "804_l_1_c_0_1_2-0_0.63-1_0.27-2_0.08-3_0.34",
+          "805_l_1_c_0_1_3-0_0.43-1_0.53-2_1.43-3_0.52",
+          "806_l_1_c_0_1_2-0_0.23-1_0.3-2_0.21-3_0.24",
+          "807_l_1_c_0_1_3-0_0.33-1_0.93-2_0.25-3_0.51",
+          "808_l_1_c_0_1_2-0_0.21-1_1.44-2_0.65-3_1.33",
+          "809_l_1_c_0_1_3-0_0.83-1_0.64-2_0.92-3_0.06",
+          "810_l_1_c_0_1_2-0_0.46-1_0.22-2_0.2-3_1.21",
+          "811_l_1_c_0_1_3-0_0.83-1_0.15-2_0.21-3_0.01",
+          "812_l_1_c_0_1_2-0_0.22-1_0.02-2_0.35-3_0.22",
+          "813_l_1_c_0_1_3-0_0.42-1_0.47-2_1.47-3_0.2",
+          "814_l_1_c_0_1_2-0_0.52-1_0.8-2_0.06-3_0.94",
+          "815_l_1_c_0_1_3-0_0.66-1_0.52-2_1.92-3_0.36",
+          "816_l_1_c_0_1_2-0_0.05-1_0.11-2_0.11-3_0.56",
+          "817_l_1_c_0_1_3-0_0.51-1_0.21-2_0.62-3_0.26",
+          "818_l_1_c_0_1_2-0_1.26-1_0.53-2_0.01-3_0.96",
+          "819_l_1_c_0_1_3-0_0.19-1_0.09-2_0.2-3_0.48",
+          "820_l_1_c_0_1_2-0_0.36-1_0.6-2_0.07-3_0.15",
+          "821_l_1_c_0_1_3-0_0.3-1_0.02-2_0.79-3_0.89",
+          "822_l_1_c_0_1_2-0_0.42-1_0.06-2_0.16-3_0.73",
+          "823_l_1_c_0_1_3-0_0.19-1_0.49-2_0.69-3_0.11",
+          "824_l_1_c_0_2_3-0_0.62-1_0.28-2_0.21-3_0.18",
+          "825_l_1_c_0_1_2-0_0.35-1_0.27-2_0.15-3_0.27",
+          "826_l_1_c_0_1_3-0_0.23-1_0.16-2_0.63-3_0.15",
+          "827_l_1_c_0_2_3-0_0.25-1_0.14-2_0.18-3_0.58",
+          "828_l_1_c_0_1_2-0_0.57-1_0.52-2_0.42-3_0.12",
+          "829_l_1_c_0_1_3-0_0.1-1_0.27-2_1.12-3_0.1",
+          "830_l_1_c_0_2_3-0_0.61-1_0.9-2_0.15-3_0.29",
+          "831_l_1_c_0_1_2-0_0.61-1_0.04-2_0.36-3_0.22",
+          "832_l_1_c_0_1_3-0_1.27-1_0.31-2_1.03-3_0.09",
+          "833_l_1_c_0_2_3-0_0.76-1_0.43-2_0.01-3_0.29",
+          "834_l_1_c_0_1_2-0_0.52-1_0.2-2_0.54-3_0.82",
+          "835_l_1_c_0_1_3-0_0.36-1_0.45-2_0.61-3_0.3",
+          "836_l_1_c_0_2_3-0_0.99-1_0.3-2_0.53-3_0.02",
+          "837_l_1_c_0_1_2-0_0.59-1_0.24-2_0.57-3_0.18",
+          "838_l_1_c_0_1_3-0_0.85-1_0.53-2_0.3-3_0.26",
+          "839_l_1_c_0_2_3-0_0.9-1_0.05-2_0.13-3_0.88",
+          "840_l_1_c_0_1_2-0_0.14-1_0.16-2_0.08-3_0.68",
+          "841_l_1_c_0_1_3-0_0.31-1_0.24-2_1.52-3_0.35",
+          "842_l_1_c_0_2_3-0_0.4-1_1.41-2_0.72-3_1.07",
+          "843_l_1_c_0_1_2-0_0.96-1_0.84-2_0.1-3_0.87",
+          "844_l_1_c_0_1_3-0_0.88-1_0.2-2_1.28-3_0.15",
+          "845_l_1_c_0_2_3-0_0.43-1_1.87-2_0.16-3_0.17",
+          "846_l_1_c_0_1_2-0_0.22-1_0.19-2_0.75-3_0.17",
+          "847_l_1_c_0_1_3-0_1.21-1_0.1-2_0.32-3_0.01",
+          "848_l_1_c_0_2_3-0_0.26-1_0.66-2_0.73-3_0.23",
+          "849_l_1_c_0_1_2-0_0.17-1_0.31-2_0.13-3_0.58",
+          "850_l_1_c_0_1_3-0_0.58-1_0.15-2_0.31-3_0.26",
+          "851_l_1_c_0_2_3-0_0.59-1_0.13-2_0.36-3_0.03",
+          "852_l_1_c_0_1_2-0_1.06-1_0.07-2_0.94-3_0.2",
+          "853_l_1_c_0_1_3-0_1.51-1_0.13-2_0.99-3_0.51",
+          "854_l_1_c_0_2_3-0_0.38-1_1.16-2_0.56-3_0.29",
+          "855_l_1_c_0_1_2-0_0.53-1_0.05-2_0.38-3_0.8",
+          "856_l_1_c_0_1_3-0_0.38-1_0.27-2_1.44-3_0.03",
+          "857_l_1_c_0_2_3-0_0.11-1_0.65-2_0.2-3_0.47",
+          "858_l_1_c_0_1_2-0_0.47-1_0.97-2_0.49-3_0.53",
+          "859_l_1_c_0_1_3-0_0.89-1_0.57-2_0.07-3_0.05",
+          "860_l_1_c_0_2_3-0_0.05-1_0.16-2_0.55-3_0.21",
+          "861_l_1_c_0_1_2-0_0.38-1_1.12-2_0.13-3_1.38",
+          "862_l_1_c_0_1_3-0_0.57-1_0.05-2_0.32-3_0.05",
+          "863_l_1_c_0_2_3-0_0.07-1_0.65-2_0.07-3_0.8",
+          "864_l_1_c_0_1_2-0_0.04-1_0.28-2_0.06-3_0.15",
+          "865_l_1_c_0_1_3-0_0.92-1_0.1-2_1.11-3_0.38",
+          "866_l_1_c_0_2_3-0_0.43-1_0.72-2_1.03-3_0.27",
+          "867_l_1_c_0_1_2-0_0.06-1_0.73-2_0.06-3_0.66",
+          "868_l_1_c_0_1_3-0_0.12-1_0.82-2_0.63-3_0.31",
+          "869_l_1_c_0_2_3-0_0.36-1_1.04-2_0.37-3_0.66",
+          "870_l_1_c_0-0_0.03-1_0.33-2_0.46-3_0.62",
+          "871_l_1_c_0-0_0.09-1_0.63-2_1.16-3_0.45",
+          "872_l_1_c_0-0_0.37-1_0.57-2_0.17-3_1.43",
+          "873_l_1_c_0-0_1.19-1_0.53-2_0.32-3_0.46",
+          "874_l_1_c_0-0_0.76-1_0.53-2_0.03-3_0.09",
+          "875_l_1_c_0-0_0.29-1_1.33-2_0.1-3_0.3",
+          "876_l_1_c_0-0_0.1-1_0.95-2_0.14-3_0.62",
+          "877_l_1_c_0-0_0.36-1_0.37-2_0.97-3_0.06",
+          "878_l_1_c_0-0_0.07-1_0.33-2_0.31-3_0.03",
+          "879_l_1_c_0-0_0.9-1_0.6-2_0.03-3_1.68",
+          "880_l_1_c_0-0_0.18-1_0.95-2_0.59-3_0.52",
+          "881_l_1_c_0-0_0.05-1_0.57-2_1.29-3_0.95",
+          "882_l_1_c_0-0_0.82-1_0.43-2_1.01-3_0.78",
+          "883_l_1_c_0-0_0.42-1_1.29-2_0.89-3_0.32",
+          "884_l_1_c_0-0_2.0-1_1.0-2_0.85-3_0.69",
+          "885_l_1_c_0-0_1.55-1_0.63-2_0.76-3_0.87",
+          "886_l_1_c_0-0_0.31-1_0.91-2_0.47-3_0.23",
+          "887_l_1_c_0-0_0.13-1_0.5-2_1.0-3_0.3",
+          "888_l_1_c_0-0_0.03-1_0.56-2_1.39-3_1.5",
+          "889_l_1_r-0_1.79-1_1.04-2_2.31-3_1.12",
+          "890_l_1_r-0_0.48-1_0.22-2_1.16-3_0.42",
+          "891_l_1_r-0_0.52-1_1.45-2_0.4-3_1.57",
+          "892_l_1_r-0_1.43-1_0.9-2_0.12-3_0.96",
+          "893_l_1_r-0_1.01-1_0.45-2_0.75-3_0.54",
+          "894_l_1_r-0_0.11-1_1.13-2_0.63-3_1.41",
+          "895_l_1_r-0_0.15-1_1.15-2_0.8-3_0.62",
+          "896_l_1_r-0_0.48-1_0.01-2_0.18-3_0.65",
+          "897_l_1_r-0_0.35-1_0.6-2_0.27-3_0.81",
+          "898_l_1_r-0_1.97-1_0.74-2_0.72-3_0.92",
+          "899_l_1_r-0_0.14-1_0.89-2_0.12-3_0.34",
+          "900_l_1_r-0_0.13-1_0.88-2_0.32-3_0.81",
+          "901_l_1_r-0_0.64-1_2.15-2_0.13-3_1.61",
+          "902_l_1_r-0_0.63-1_0.27-2_0.33-3_0.48",
+          "903_l_1_r-0_0.19-1_0.54-2_0.64-3_0.69",
+          "904_l_1_r-0_0.33-1_0.01-2_0.16-3_0.36",
+          "905_l_1_r-0_1.22-1_0.76-2_0.4-3_0.59",
+          "906_l_1_r-0_1.22-1_0.04-2_1.8-3_0.57",
+          "907_l_1_r-0_0.25-1_0.66-2_1.52-3_0.47",
+          "908_l_1_r-0_0.21-1_0.34-2_0.01-3_1.16",
+          "909_l_1_r-0_0.75-1_2.12-2_0.53-3_1.03",
+          "910_l_1_r-0_1.44-1_0.64-2_1.38-3_0.05",
+          "911_l_1_r-0_0.47-1_1.33-2_0.07-3_1.21",
+          "912_l_1_r-0_0.06-1_0.54-2_1.27-3_0.12",
+          "913_l_1_r-0_2.01-1_0.78-2_1.94-3_0.36",
+          "914_l_1_r-0_0.22-1_0.38-2_1.33-3_0.27",
+          "915_l_1_r-0_2.23-1_0.92-2_0.71-3_0.12",
+          "916_l_1_r-0_0.08-1_1.36-2_0.44-3_0.55",
+          "917_l_1_r-0_0.09-1_0.15-2_0.19-3_0.45",
+          "918_l_1_r-0_2.43-1_0.47-2_1.1-3_0.35",
+          "919_l_1_r-0_1.02-1_0.45-2_0.72-3_1.48",
+          "920_l_1_r-0_0.73-1_0.84-2_1.02-3_0.29",
+          "921_l_1_r-0_0.08-1_1.02-2_0.62-3_0.65",
+          "922_l_1_r-0_0.74-1_0.64-2_0.12-3_0.12",
+          "923_l_1_r-0_1.13-1_0.11-2_0.8-3_0.32",
+          "924_l_1_r-0_0.25-1_1.33-2_0.02-3_0.23",
+          "925_l_1_r-0_1.11-1_0.04-2_1.78-3_0.77",
+          "926_l_1_r-0_1.35-1_0.1-2_0.48-3_1.26",
+          "927_l_1_r-0_0.36-1_0.17-2_0.89-3_2.13",
+          "928_l_1_r-0_0.96-1_0.31-2_1.53-3_0.81",
+          "929_l_1_r-0_0.3-1_0.37-2_1.39-3_0.23",
+          "930_l_1_r-0_0.45-1_0.26-2_0.87-3_0.03",
+          "931_l_1_r-0_0.16-1_0.18-2_0.87-3_0.51",
+          "932_l_1_r-0_0.21-1_0.21-2_2.18-3_0.53",
+          "933_l_1_r-0_0.43-1_2.25-2_1.26-3_0.15",
+          "934_l_1_r-0_1.5-1_0.25-2_0.97-3_0.37",
+          "935_l_1_r-0_0.47-1_2.16-2_0.63-3_0.82",
+          "936_l_1_r-0_0.93-1_0.16-2_0.44-3_1.47",
+          "937_l_1_r-0_0.05-1_1.74-2_0.93-3_0.87",
+          "938_l_1_r-0_0.29-1_1.08-2_0.0-3_0.99",
+          "939_l_1_r-0_0.01-1_0.77-2_0.21-3_0.61",
+          "940_l_1_r-0_0.45-1_0.28-2_0.63-3_0.67",
+          "941_l_1_r-0_0.41-1_0.33-2_0.37-3_1.01",
+          "942_l_1_r-0_0.4-1_0.93-2_0.7-3_1.77",
+          "943_l_1_r-0_2.44-1_0.81-2_0.38-3_0.46",
+          "944_l_1_r-0_1.82-1_0.75-2_1.24-3_0.04",
+          "945_l_1_r-0_0.52-1_0.26-2_0.21-3_0.69",
+          "946_l_1_r-0_0.13-1_0.29-2_0.53-3_0.75",
+          "947_l_1_r-0_1.02-1_2.23-2_1.29-3_0.15",
+          "948_l_1_r-0_0.07-1_1.36-2_0.36-3_1.46",
+          "949_l_1_r-0_2.1-1_1.46-2_1.33-3_0.9",
+          "950_l_1_r-0_0.08-1_0.68-2_1.98-3_0.33",
+          "951_l_1_r-0_0.5-1_0.06-2_1.56-3_0.08",
+          "952_l_1_r-0_0.35-1_1.08-2_0.1-3_0.54",
+          "953_l_1_r-0_0.35-1_1.03-2_0.61-3_0.27",
+          "954_l_1_r-0_1.67-1_1.02-2_0.04-3_0.6",
+          "955_l_1_r-0_0.31-1_0.41-2_0.23-3_0.29",
+          "956_l_1_r-0_1.41-1_1.27-2_0.98-3_0.6",
+          "957_l_1_r-0_0.02-1_0.5-2_0.99-3_0.71",
+          "958_l_1_r-0_0.19-1_0.61-2_0.69-3_0.58",
+          "959_l_1_r-0_0.32-1_0.88-2_0.57-3_0.76",
+          "960_l_1_r-0_0.67-1_0.98-2_0.26-3_0.41",
+          "961_l_1_r-0_0.77-1_0.91-2_0.08-3_1.57",
+          "962_l_1_r-0_2.06-1_0.03-2_0.25-3_0.96",
+          "963_l_1_r-0_0.12-1_0.95-2_1.74-3_0.99",
+          "964_l_1_r-0_1.31-1_0.68-2_1.61-3_1.27",
+          "965_l_1_r-0_1.59-1_0.81-2_0.98-3_0.51",
+          "966_l_1_r-0_0.07-1_1.87-2_1.96-3_0.74",
+          "967_l_1_r-0_0.83-1_0.18-2_1.52-3_0.83",
+          "968_l_1_r-0_0.75-1_0.08-2_0.76-3_0.21",
+          "969_l_1_r-0_0.82-1_0.65-2_0.11-3_1.92",
+          "970_l_1_r-0_0.67-1_0.22-2_1.48-3_0.74",
+          "971_l_1_r-0_1.31-1_0.79-2_2.08-3_0.71",
+          "972_l_1_r-0_0.83-1_1.5-2_0.69-3_0.76",
+          "973_l_1_r-0_0.85-1_0.68-2_0.5-3_0.88",
+          "974_l_1_r-0_0.72-1_1.06-2_0.31-3_1.36",
+          "975_l_1_r-0_0.62-1_0.83-2_1.62-3_0.53",
+          "976_l_1_r-0_0.01-1_0.75-2_0.23-3_0.48",
+          "977_l_1_r-0_0.96-1_0.08-2_0.27-3_0.35",
+          "978_l_1_r-0_0.94-1_0.44-2_0.77-3_0.76",
+          "979_l_1_r-0_1.19-1_1.42-2_0.96-3_0.43",
+          "980_l_1_r-0_0.05-1_1.82-2_0.04-3_0.09",
+          "981_l_1_r-0_0.87-1_0.81-2_1.63-3_0.1",
+          "982_l_1_r-0_0.44-1_0.69-2_0.02-3_0.32",
+          "983_l_1_r-0_1.11-1_0.62-2_0.31-3_0.41",
+          "984_l_1_r-0_1.52-1_0.22-2_0.9-3_1.07",
+          "985_l_1_r-0_0.24-1_0.12-2_1.07-3_0.32",
+          "986_l_1_r-0_0.38-1_0.56-2_1.33-3_0.41",
+          "987_l_1_r-0_1.43-1_2.07-2_1.09-3_0.59",
+          "988_l_1_r-0_0.41-1_0.8-2_2.08-3_1.3",
+          "989_l_1_r-0_0.25-1_0.46-2_1.33-3_1.29",
+          "990_l_1_r-0_0.54-1_1.09-2_0.05-3_0.26",
+          "991_l_1_r-0_0.53-1_0.53-2_1.18-3_2.26",
+          "992_l_1_r-0_0.03-1_1.39-2_0.7-3_0.58",
+          "993_l_1_r-0_0.01-1_1.3-2_0.54-3_0.56",
+          "994_l_1_r-0_0.85-1_0.24-2_0.77-3_1.77",
+          "995_l_1_r-0_1.54-1_0.04-2_1.13-3_0.78",
+          "996_l_1_r-0_0.97-1_0.61-2_0.25-3_0.65",
+          "997_l_1_r-0_0.53-1_0.17-2_0.56-3_0.62",
+          "998_l_1_r-0_1.47-1_0.14-2_0.31-3_1.22",
+          "999_l_1_r-0_0.33-1_0.23-2_0.31-3_0.99",
+          "1000_l_1_r-0_0.91-1_0.63-2_1.11-3_0.75",
+          "1001_l_1_r-0_0.09-1_0.46-2_0.79-3_0.02",
+          "1002_l_1_r-0_0.14-1_0.82-2_0.0-3_0.53",
+          "1003_l_1_r-0_1.1-1_0.37-2_0.35-3_0.02",
+          "1004_l_1_r-0_0.66-1_0.24-2_0.81-3_1.06",
+          "1005_l_1_r-0_0.84-1_0.74-2_0.37-3_0.42",
+          "1006_l_1_r-0_0.59-1_1.11-2_0.54-3_1.07",
+          "1007_l_1_r-0_1.36-1_1.25-2_0.15-3_0.01",
+          "1008_l_1_r-0_0.56-1_0.01-2_0.52-3_0.14",
+          "1009_l_1_r-0_0.09-1_0.78-2_1.1-3_0.8",
+          "1010_l_1_r-0_1.51-1_1.16-2_0.52-3_0.29",
+          "1011_l_1_r-0_0.55-1_1.54-2_0.32-3_0.2",
+          "1012_l_1_r-0_1.27-1_0.69-2_0.54-3_0.3",
+          "1013_l_1_r-0_1.35-1_0.52-2_0.65-3_1.54",
+          "1014_l_1_r-0_0.87-1_0.97-2_0.72-3_0.77",
+          "1015_l_1_r-0_2.2-1_0.59-2_0.64-3_0.01",
+          "1016_l_1_r-0_0.16-1_0.16-2_0.23-3_0.72",
+          "1017_l_1_r-0_0.4-1_0.71-2_0.15-3_0.08",
+          "1018_l_1_r-0_0.02-1_1.12-2_0.18-3_0.63",
+          "1019_l_1_r-0_0.12-1_0.89-2_0.64-3_0.61",
+          "1020_l_1_r-0_1.03-1_0.18-2_0.25-3_0.11",
+          "1021_l_1_r-0_0.13-1_0.73-2_0.24-3_0.35",
+          "1022_l_1_r-0_0.42-1_0.61-2_0.29-3_0.48",
+          "1023_l_1_r-0_0.47-1_1.26-2_0.68-3_0.44",
+          "1024_l_1_r-0_1.42-1_0.41-2_1.4-3_0.04",
+          "1025_l_1_r-0_2.4-1_0.97-2_1.43-3_1.07",
+          "1026_l_1_r-0_0.92-1_0.26-2_0.52-3_0.77",
+          "1027_l_1_r-0_1.67-1_0.77-2_0.51-3_1.28",
+          "1028_l_1_r-0_1.22-1_0.33-2_0.1-3_0.46",
+          "1029_l_1_r-0_0.62-1_0.3-2_0.33-3_0.58",
+          "1030_l_1_r-0_1.07-1_0.67-2_1.03-3_0.74",
+          "1031_l_1_r-0_0.45-1_0.93-2_1.29-3_1.13",
+          "1032_l_1_r-0_0.27-1_0.19-2_0.87-3_1.24",
+          "1033_l_1_r-0_0.97-1_0.51-2_0.08-3_0.54",
+          "1034_l_1_r-0_1.2-1_0.23-2_0.71-3_0.69",
+          "1035_l_1_r-0_1.97-1_1.42-2_0.96-3_0.34",
+          "1036_l_1_r-0_0.37-1_1.93-2_1.01-3_1.29",
+          "1037_l_1_r-0_0.12-1_1.07-2_0.06-3_0.68",
+          "1038_l_1_r-0_1.24-1_1.07-2_1.54-3_0.04",
+          "1039_l_1_r-0_0.49-1_0.46-2_0.42-3_1.48",
+          "1040_l_1_r-0_0.24-1_0.89-2_0.73-3_0.42",
+          "1041_l_1_r-0_1.39-1_1.99-2_0.7-3_1.71",
+          "1042_l_1_r-0_0.59-1_0.68-2_0.48-3_0.75",
+          "1043_l_1_r-0_0.24-1_0.39-2_0.52-3_1.52",
+          "1044_l_1_r-0_0.89-1_0.12-2_0.84-3_0.2",
+          "1045_l_1_r-0_0.13-1_0.26-2_1.11-3_0.51",
+          "1046_l_1_r-0_0.5-1_0.29-2_0.14-3_1.05",
+          "1047_l_1_r-0_0.35-1_0.93-2_0.12-3_0.03",
+          "1048_l_1_r-0_1.73-1_0.15-2_1.15-3_1.1",
+          "1049_l_1_r-0_2.03-1_0.44-2_1.14-3_0.14",
+          "1050_l_1_r-0_0.4-1_1.21-2_0.99-3_0.83",
+          "1051_l_1_r-0_0.38-1_0.01-2_0.12-3_0.49",
+          "1052_l_1_r-0_0.22-1_0.94-2_0.48-3_0.62",
+          "1053_l_1_r-0_0.37-1_0.02-2_1.04-3_0.79",
+          "1054_l_1_r-0_0.15-1_1.31-2_1.87-3_0.79",
+          "1055_l_1_r-0_0.56-1_0.62-2_0.55-3_0.17",
+          "1056_l_1_r-0_1.2-1_0.74-2_0.06-3_0.02",
+          "1057_l_1_r-0_0.05-1_0.58-2_1.17-3_0.79",
+          "1058_l_1_r-0_0.6-1_1.48-2_1.64-3_0.89",
+          "1059_l_1_r-0_1.08-1_0.19-2_1.27-3_0.42",
+          "1060_l_1_r-0_1.03-1_0.25-2_0.69-3_0.8",
+          "1061_l_1_r-0_0.07-1_0.97-2_0.35-3_0.07",
+          "1062_l_1_r-0_0.93-1_0.53-2_0.74-3_0.33",
+          "1063_l_1_r-0_0.49-1_0.4-2_0.26-3_0.63",
+          "1064_l_1_r-0_0.72-1_1.16-2_0.56-3_0.77",
+          "1065_l_1_r-0_0.88-1_0.19-2_0.39-3_0.98",
+          "1066_l_1_r-0_2.57-1_0.14-2_1.09-3_0.25",
+          "1067_l_1_r-0_0.63-1_0.47-2_1.06-3_0.19",
+          "1068_l_1_r-0_0.37-1_0.32-2_0.01-3_1.13",
+          "1069_l_1_r-0_0.09-1_1.22-2_1.22-3_0.76",
+          "1070_l_1_r-0_0.35-1_1.21-2_1.48-3_0.55",
+          "1071_l_1_r-0_0.88-1_0.14-2_1.47-3_1.13",
+          "1072_l_1_r-0_3.07-1_0.16-2_0.47-3_0.15",
+          "1073_l_1_r-0_0.5-1_1.1-2_0.23-3_0.29",
+          "1074_l_1_r-0_0.77-1_0.51-2_0.53-3_0.17",
+          "1075_l_1_r-0_1.08-1_0.32-2_1.23-3_1.5",
+          "1076_l_1_r-0_0.33-1_0.55-2_0.58-3_0.67",
+          "1077_l_1_r-0_0.16-1_0.8-2_1.67-3_0.91",
+          "1078_l_1_r-0_2.15-1_1.31-2_0.36-3_0.51",
+          "1079_l_1_r-0_0.3-1_0.61-2_1.06-3_0.34",
+          "1080_l_1_r-0_1.72-1_0.33-2_0.23-3_1.05",
+          "1081_l_1_r-0_0.12-1_1.41-2_0.67-3_0.1",
+          "1082_l_1_r-0_0.57-1_1.19-2_0.33-3_0.41",
+          "1083_l_1_r-0_0.65-1_1.06-2_0.2-3_0.85",
+          "1084_l_1_r-0_0.18-1_2.04-2_0.08-3_0.86",
+          "1085_l_1_r-0_0.79-1_0.35-2_0.49-3_1.17",
+          "1086_l_1_r-0_0.28-1_0.1-2_1.0-3_1.26",
+          "1087_l_1_r-0_0.63-1_0.44-2_1.52-3_0.92",
+          "1088_l_1_r-0_1.15-1_0.63-2_0.29-3_0.71",
+          "1089_l_1_r-0_1.52-1_0.7-2_0.8-3_0.05",
+          "1090_l_1_r-0_0.02-1_0.89-2_0.82-3_1.08",
+          "1091_l_1_r-0_0.55-1_1.35-2_0.89-3_0.68",
+          "1092_l_1_r-0_0.39-1_1.82-2_0.98-3_0.48",
+          "1093_l_1_r-0_1.37-1_0.38-2_0.74-3_0.14",
+          "1094_l_1_r-0_2.07-1_0.92-2_2.11-3_0.23",
+          "1095_l_1_r-0_0.54-1_0.61-2_0.96-3_0.4",
+          "1096_l_1_r-0_1.42-1_0.71-2_0.64-3_0.47",
+          "1097_l_1_r-0_0.58-1_1.12-2_1.37-3_0.45",
+          "1098_l_1_r-0_0.32-1_1.12-2_1.53-3_0.26",
+          "1099_l_1_r-0_0.76-1_0.04-2_0.93-3_0.13",
+          "1100_l_1_r-0_0.62-1_1.51-2_0.97-3_0.42",
+          "1101_l_1_r-0_0.8-1_0.46-2_1.69-3_0.44",
+          "1102_l_1_r-0_1.53-1_0.18-2_0.7-3_1.13",
+          "1103_l_1_r-0_0.1-1_0.49-2_1.1-3_1.03",
+          "1104_l_1_r-0_0.78-1_1.05-2_0.4-3_0.49",
+          "1105_l_1_r-0_0.23-1_0.08-2_1.02-3_1.41",
+          "1106_l_1_r-0_0.44-1_0.17-2_1.13-3_1.1",
+          "1107_l_1_r-0_2.27-1_0.68-2_0.25-3_0.63",
+          "1108_l_1_r-0_1.38-1_1.29-2_0.27-3_0.21",
+          "1109_l_1_r-0_1.06-1_0.76-2_0.46-3_0.34",
+          "1110_l_1_r-0_1.35-1_1.23-2_1.32-3_0.41",
+          "1111_l_1_r-0_0.35-1_0.75-2_1.02-3_0.88",
+          "1112_l_1_r-0_1.81-1_1.09-2_1.59-3_0.01",
+          "1113_l_1_r-0_0.78-1_1.01-2_0.02-3_0.22",
+          "1114_l_1_r-0_0.69-1_0.87-2_0.12-3_0.27",
+          "1115_l_1_r-0_0.08-1_1.37-2_0.67-3_0.84",
+          "1116_l_1_r-0_1.14-1_0.02-2_0.13-3_0.6",
+          "1117_l_1_r-0_0.16-1_0.69-2_0.71-3_0.58",
+          "1118_l_1_r-0_0.96-1_1.0-2_1.09-3_0.05",
+          "1119_l_1_r-0_0.45-1_0.57-2_0.54-3_0.09",
+          "1120_l_1_r-0_0.58-1_0.11-2_0.19-3_0.87",
+          "1121_l_1_r-0_0.03-1_0.36-2_0.19-3_0.83",
+          "1122_l_1_r-0_0.65-1_1.66-2_2.2-3_0.0",
+          "1123_l_1_r-0_0.26-1_1.26-2_0.87-3_0.76",
+          "1124_l_1_r-0_1.5-1_0.77-2_0.99-3_0.94",
+          "1125_l_1_r-0_0.88-1_0.39-2_0.33-3_0.2",
+          "1126_l_1_r-0_0.37-1_1.21-2_0.51-3_0.66",
+          "1127_l_1_r-0_0.88-1_0.71-2_1.07-3_0.79",
+          "1128_l_1_r-0_0.71-1_0.52-2_0.76-3_0.33",
+          "1129_l_1_r-0_0.89-1_1.92-2_0.02-3_0.76",
+          "1130_l_1_r-0_0.22-1_0.32-2_0.3-3_0.57",
+          "1131_l_1_r-0_0.95-1_0.82-2_0.21-3_0.59",
+          "1132_l_1_r-0_0.45-1_1.11-2_0.19-3_0.1",
+          "1133_l_1_r-0_0.95-1_0.78-2_0.38-3_0.13",
+          "1134_l_1_r-0_0.21-1_1.09-2_0.01-3_0.32",
+          "1135_l_1_r-0_0.84-1_0.91-2_0.06-3_0.77",
+          "1136_l_1_r-0_0.37-1_0.54-2_0.01-3_1.35",
+          "1137_l_1_r-0_1.2-1_1.74-2_0.79-3_0.25",
+          "1138_l_1_r-0_1.66-1_1.03-2_0.1-3_1.05",
+          "1139_l_1_r-0_1.41-1_1.11-2_0.44-3_0.4",
+          "1140_l_1_r-0_0.29-1_1.39-2_0.02-3_0.55",
+          "1141_l_1_r-0_0.44-1_1.02-2_0.31-3_1.31",
+          "1142_l_1_r-0_2.17-1_1.81-2_0.83-3_0.51",
+          "1143_l_1_r-0_0.26-1_0.56-2_0.95-3_0.22",
+          "1144_l_1_r-0_1.16-1_0.32-2_1.22-3_0.74",
+          "1145_l_1_r-0_0.65-1_0.45-2_0.56-3_0.92",
+          "1146_l_1_r-0_0.04-1_1.22-2_0.79-3_0.66",
+          "1147_l_1_r-0_1.26-1_0.53-2_0.07-3_1.74",
+          "1148_l_1_r-0_1.1-1_0.06-2_0.93-3_2.17",
+          "1149_l_1_r-0_0.98-1_0.36-2_1.33-3_0.14",
+          "1150_l_1_r-0_1.8-1_0.65-2_1.19-3_0.92",
+          "1151_l_1_r-0_0.52-1_0.73-2_0.16-3_0.18",
+          "1152_l_1_r-0_1.06-1_0.87-2_0.82-3_0.13",
+          "1153_l_1_r-0_0.81-1_0.26-2_0.85-3_0.71",
+          "1154_l_1_r-0_2.15-1_0.86-2_0.38-3_0.28",
+          "1155_l_1_r-0_0.28-1_0.79-2_0.03-3_0.3",
+          "1156_l_1_r-0_2.02-1_0.19-2_1.96-3_0.37",
+          "1157_l_1_r-0_1.05-1_0.67-2_0.38-3_1.43",
+          "1158_l_1_r-0_0.7-1_0.37-2_0.89-3_0.95",
+          "1159_l_1_r-0_2.01-1_0.14-2_0.03-3_0.34",
+          "1160_l_1_r-0_0.64-1_0.35-2_0.77-3_0.69",
+          "1161_l_1_r-0_1.26-1_1.74-2_0.46-3_0.56",
+          "1162_l_1_r-0_1.23-1_0.62-2_0.34-3_0.63",
+          "1163_l_1_r-0_0.5-1_1.21-2_1.02-3_0.29",
+          "1164_l_1_r-0_1.39-1_0.34-2_1.01-3_0.63",
+          "1165_l_1_r-0_0.6-1_0.86-2_0.27-3_0.51",
+          "1166_l_1_r-0_1.05-1_1.13-2_0.9-3_1.63",
+          "1167_l_1_r-0_0.22-1_0.94-2_1.08-3_0.41",
+          "1168_l_1_r-0_0.4-1_1.6-2_0.87-3_0.97",
+          "1169_l_1_r-0_0.42-1_0.72-2_0.94-3_0.98",
+          "1170_l_1_r-0_0.89-1_2.19-2_0.72-3_1.62",
+          "1171_l_1_r-0_0.23-1_0.57-2_0.6-3_0.52",
+          "1172_l_1_r-0_0.78-1_1.55-2_0.34-3_0.43",
+          "1173_l_1_r-0_0.13-1_0.15-2_0.46-3_0.11",
+          "1174_l_1_r-0_0.35-1_0.11-2_0.77-3_1.18",
+          "1175_l_1_r-0_0.16-1_1.01-2_1.24-3_0.34",
+          "1176_l_1_r-0_1.24-1_0.3-2_0.67-3_0.73",
+          "1177_l_1_r-0_0.92-1_0.89-2_1.07-3_0.28",
+          "1178_l_1_r-0_0.71-1_0.05-2_1.05-3_1.15",
+          "1179_l_1_r-0_0.3-1_0.14-2_0.14-3_0.49",
+          "1180_l_1_r-0_1.08-1_0.86-2_0.57-3_0.85",
+          "1181_l_1_r-0_0.45-1_0.28-2_0.58-3_0.27",
+          "1182_l_1_r-0_1.13-1_1.5-2_0.79-3_0.54",
+          "1183_l_1_r-0_1.91-1_0.88-2_0.99-3_0.84",
+          "1184_l_1_r-0_1.44-1_1.06-2_1.31-3_0.66",
+          "1185_l_1_r-0_0.1-1_0.4-2_1.39-3_0.96",
+          "1186_l_1_r-0_0.5-1_0.15-2_1.29-3_1.07",
+          "1187_l_1_r-0_0.33-1_0.02-2_1.04-3_0.7",
+          "1188_l_1_r-0_0.81-1_1.33-2_0.13-3_1.6",
+          "1189_l_1_r-0_0.59-1_0.32-2_1.39-3_0.24",
+          "1190_l_1_r-0_0.65-1_1.79-2_0.4-3_0.57",
+          "1191_l_1_r-0_1.22-1_1.18-2_0.51-3_0.58",
+          "1192_l_1_r-0_0.72-1_1.14-2_0.33-3_1.25",
+          "1193_l_1_r-0_0.03-1_1.58-2_0.1-3_0.3",
+          "1194_l_1_r-0_0.2-1_0.4-2_0.26-3_1.03",
+          "1195_l_1_r-0_1.79-1_0.59-2_0.52-3_1.34",
+          "1196_l_1_r-0_1.67-1_1.46-2_0.53-3_0.16",
+          "1197_l_1_r-0_0.02-1_0.94-2_0.76-3_0.87",
+          "1198_l_1_r-0_1.07-1_0.57-2_0.64-3_0.16",
+          "1199_l_1_r-0_1.07-1_0.58-2_0.81-3_0.58",
+          "1200_l_1_r-0_0.26-1_0.63-2_0.14-3_0.72",
+          "1201_l_1_r-0_0.08-1_0.26-2_0.5-3_0.31",
+          "1202_l_1_r-0_0.93-1_0.49-2_0.13-3_0.44",
+          "1203_l_1_r-0_0.21-1_0.58-2_0.61-3_0.41",
+          "1204_l_1_r-0_3.37-1_1.09-2_0.92-3_0.33",
+          "1205_l_1_r-0_0.54-1_0.49-2_0.96-3_0.15",
+          "1206_l_1_r-0_0.23-1_0.67-2_0.87-3_0.6",
+          "1207_l_1_r-0_0.3-1_0.43-2_1.25-3_0.36",
+          "1208_l_1_r-0_0.66-1_3.19-2_0.32-3_0.7",
+          "1209_l_1_r-0_0.62-1_0.35-2_1.96-3_1.1",
+          "1210_l_1_r-0_0.55-1_0.67-2_0.89-3_0.23",
+          "1211_l_1_r-0_0.15-1_0.85-2_0.24-3_0.77",
+          "1212_l_1_r-0_1.56-1_0.06-2_0.14-3_0.84",
+          "1213_l_1_r-0_0.09-1_0.15-2_0.25-3_0.08",
+          "1214_l_1_r-0_1.04-1_0.21-2_1.19-3_0.35",
+          "1215_l_1_r-0_1.84-1_0.23-2_0.66-3_0.07",
+          "1216_l_1_r-0_0.62-1_0.92-2_0.94-3_0.13",
+          "1217_l_1_r-0_0.87-1_1.11-2_0.82-3_0.79",
+          "1218_l_1_r-0_0.39-1_0.52-2_2.21-3_0.76",
+          "1219_l_1_r-0_0.03-1_1.26-2_1.07-3_1.47",
+          "1220_l_1_r-0_0.61-1_0.72-2_0.17-3_0.32",
+          "1221_l_1_r-0_0.55-1_2.66-2_0.83-3_0.56",
+          "1222_l_1_r-0_0.28-1_0.8-2_0.09-3_0.78",
+          "1223_l_1_r-0_1.24-1_2.37-2_0.57-3_1.27",
+          "1224_l_1_r-0_1.13-1_0.21-2_0.41-3_0.85",
+          "1225_l_1_r-0_1.09-1_0.5-2_0.66-3_0.28",
+          "1226_l_1_r-0_0.38-1_2.06-2_0.74-3_0.57",
+          "1227_l_1_r-0_0.14-1_2.43-2_0.52-3_0.08",
+          "1228_l_1_r-0_0.86-1_0.59-2_0.49-3_0.77",
+          "1229_l_1_r-0_1.0-1_0.81-2_0.4-3_1.15",
+          "1230_l_1_r-0_0.76-1_0.8-2_0.85-3_1.08",
+          "1231_l_1_r-0_0.46-1_1.36-2_0.74-3_0.92",
+          "1232_l_1_r-0_2.26-1_0.84-2_1.92-3_0.27",
+          "1233_l_1_r-0_0.85-1_0.32-2_0.92-3_0.04",
+          "1234_l_1_r-0_2.44-1_0.04-2_1.19-3_1.09",
+          "1235_l_1_r-0_0.74-1_1.17-2_0.87-3_0.64",
+          "1236_l_1_r-0_0.26-1_0.66-2_1.05-3_1.27",
+          "1237_l_1_r-0_0.46-1_0.11-2_0.07-3_0.55",
+          "1238_l_1_r-0_0.48-1_1.06-2_1.14-3_0.8",
+          "1239_l_1_r-0_0.42-1_0.72-2_0.37-3_0.39",
+          "1240_l_1_r-0_0.11-1_0.78-2_0.95-3_1.31",
+          "1241_l_1_r-0_0.55-1_0.68-2_0.79-3_0.76",
+          "1242_l_1_r-0_0.86-1_1.35-2_0.41-3_0.77",
+          "1243_l_1_r-0_0.5-1_0.64-2_1.26-3_0.66",
+          "1244_l_1_r-0_0.77-1_0.26-2_0.67-3_0.36",
+          "1245_l_1_r-0_0.96-1_0.19-2_0.67-3_0.23",
+          "1246_l_1_r-0_0.56-1_0.77-2_0.75-3_0.6",
+          "1247_l_1_r-0_0.16-1_1.24-2_0.36-3_0.18",
+          "1248_l_1_r-0_0.86-1_0.96-2_0.26-3_1.11",
+          "1249_l_1_r-0_0.87-1_0.95-2_0.12-3_0.57",
+          "1250_l_1_r-0_0.09-1_0.65-2_0.02-3_0.35",
+          "1251_l_1_r-0_0.61-1_0.67-2_0.82-3_1.11",
+          "1252_l_1_r-0_0.02-1_0.57-2_0.98-3_0.38",
+          "1253_l_1_r-0_1.01-1_1.57-2_0.23-3_0.84",
+          "1254_l_1_r-0_0.35-1_0.44-2_0.07-3_0.57",
+          "1255_l_1_r-0_0.48-1_1.12-2_0.15-3_0.45",
+          "1256_l_1_r-0_2.08-1_0.68-2_1.8-3_0.04",
+          "1257_l_1_r-0_0.23-1_1.07-2_1.35-3_0.53",
+          "1258_l_1_r-0_0.1-1_0.53-2_0.92-3_0.63",
+          "1259_l_1_r-0_0.06-1_0.08-2_0.27-3_0.25",
+          "1260_l_1_r-0_2.61-1_0.85-2_0.85-3_0.98",
+          "1261_l_1_r-0_1.38-1_0.35-2_1.36-3_0.2",
+          "1262_l_1_r-0_0.79-1_1.81-2_0.47-3_0.67",
+          "1263_l_1_r-0_0.46-1_0.59-2_1.55-3_0.58",
+          "1264_l_1_r-0_0.46-1_0.85-2_0.08-3_0.02",
+          "1265_l_1_r-0_1.02-1_0.13-2_0.86-3_0.38",
+          "1266_l_1_r-0_1.89-1_0.45-2_0.18-3_1.45",
+          "1267_l_1_r-0_0.56-1_1.14-2_0.4-3_0.43",
+          "1268_l_1_r-0_0.79-1_0.11-2_0.14-3_0.37",
+          "1269_l_1_r-0_1.3-1_0.07-2_0.56-3_0.5",
+          "1270_l_1_r-0_0.59-1_0.94-2_0.48-3_0.83",
+          "1271_l_1_r-0_0.05-1_0.56-2_0.68-3_0.3",
+          "1272_l_1_r-0_0.04-1_1.49-2_0.66-3_1.22",
+          "1273_l_1_r-0_1.34-1_0.06-2_0.12-3_0.92",
+          "1274_l_1_r-0_1.39-1_0.32-2_0.15-3_0.79",
+          "1275_l_1_r-0_1.03-1_1.24-2_1.38-3_0.64",
+          "1276_l_1_r-0_0.66-1_0.25-2_0.02-3_0.6",
+          "1277_l_1_r-0_0.07-1_0.09-2_1.31-3_0.0",
+          "1278_l_1_r-0_0.39-1_0.49-2_0.74-3_0.87",
+          "1279_l_1_r-0_0.52-1_1.0-2_0.1-3_0.76",
+          "1280_l_1_r-0_0.08-1_0.35-2_1.08-3_0.47",
+          "1281_l_1_r-0_0.85-1_0.94-2_0.25-3_0.45",
+          "1282_l_1_r-0_0.16-1_0.56-2_0.54-3_0.74",
+          "1283_l_1_r-0_0.46-1_0.61-2_0.71-3_0.89",
+          "1284_l_1_r-0_1.23-1_0.86-2_1.07-3_0.91",
+          "1285_l_1_r-0_0.01-1_0.36-2_1.54-3_1.27",
+          "1286_l_1_r-0_0.67-1_0.74-2_1.37-3_1.2",
+          "1287_l_1_r-0_0.67-1_1.25-2_0.02-3_0.05",
+          "1288_l_1_r-0_0.75-1_0.25-2_0.76-3_0.41",
+          "1289_l_1_r-0_0.68-1_2.32-2_1.23-3_0.44",
+          "1290_l_1_r-0_0.44-1_0.51-2_1.28-3_0.45",
+          "1291_l_1_r-0_1.11-1_0.27-2_0.03-3_0.64",
+          "1292_l_1_r-0_0.04-1_1.79-2_1.35-3_0.57",
+          "1293_l_1_r-0_0.28-1_0.63-2_1.27-3_1.65",
+          "1294_l_1_r-0_0.06-1_0.15-2_0.88-3_0.55",
+          "1295_l_1_r-0_0.93-1_0.79-2_1.15-3_0.36",
+          "1296_l_1_r-0_1.73-1_0.28-2_0.78-3_1.65",
+          "1297_l_1_r-0_0.53-1_0.35-2_0.76-3_1.05",
+          "1298_l_1_r-0_0.59-1_0.29-2_0.39-3_0.97",
+          "1299_l_1_r-0_0.54-1_1.65-2_0.4-3_0.0",
+          "1300_l_1_r-0_0.65-1_0.21-2_1.18-3_0.17",
+          "1301_l_1_r-0_2.19-1_1.43-2_1.39-3_1.09",
+          "1302_l_1_r-0_1.06-1_0.41-2_0.86-3_1.66",
+          "1303_l_1_r-0_0.13-1_0.24-2_0.42-3_0.51",
+          "1304_l_1_r-0_0.36-1_0.12-2_0.63-3_0.52",
+          "1305_l_1_r-0_0.51-1_1.16-2_0.01-3_0.87",
+          "1306_l_1_r-0_0.43-1_0.36-2_0.01-3_0.66",
+          "1307_l_1_r-0_1.72-1_0.12-2_0.14-3_0.34",
+          "1308_l_1_r-0_1.28-1_1.61-2_1.15-3_1.07",
+          "1309_l_1_r-0_1.33-1_0.66-2_1.14-3_0.82",
+          "1310_l_1_r-0_0.49-1_0.81-2_0.21-3_0.73",
+          "1311_l_1_r-0_0.1-1_0.92-2_0.69-3_0.36",
+          "1312_l_1_r-0_0.05-1_0.68-2_0.97-3_1.42",
+          "1313_l_1_r-0_0.42-1_0.68-2_2.08-3_0.36",
+          "1314_l_1_r-0_0.19-1_1.11-2_0.84-3_0.89",
+          "1315_l_1_r-0_0.13-1_0.64-2_2.02-3_0.41",
+          "1316_l_1_r-0_0.41-1_0.72-2_0.8-3_0.98",
+          "1317_l_1_r-0_1.76-1_0.44-2_0.4-3_0.02",
+          "1318_l_1_r-0_1.07-1_0.37-2_1.02-3_0.37",
+          "1319_l_1_r-0_0.98-1_0.73-2_0.42-3_0.26",
+          "1320_l_1_r-0_1.18-1_1.88-2_0.27-3_0.43",
+          "1321_l_1_r-0_0.14-1_0.24-2_1.64-3_0.17",
+          "1322_l_1_r-0_0.88-1_0.75-2_0.57-3_0.22",
+          "1323_l_1_r-0_0.66-1_0.05-2_0.6-3_0.12",
+          "1324_l_1_r-0_0.19-1_0.08-2_0.46-3_0.11",
+          "1325_l_1_r-0_1.62-1_1.44-2_0.25-3_1.18",
+          "1326_l_1_r-0_1.06-1_0.5-2_0.43-3_0.15",
+          "1327_l_1_r-0_0.44-1_0.55-2_1.16-3_0.51",
+          "1328_l_1_r-0_0.18-1_1.22-2_1.14-3_0.37",
+          "1329_l_1_r-0_0.21-1_0.33-2_0.07-3_0.65",
+          "1330_l_1_r-0_0.34-1_1.61-2_0.45-3_0.03",
+          "1331_l_1_r-0_0.09-1_0.86-2_1.09-3_0.29"
          ],
          "type": "scatter3d",
          "x": [
-          9.868681265774383,
-          9.933493411279311,
-          10.796801885922468,
-          -10.469254134758167,
-          -10.386146105819025,
-          -8.831806197491685,
-          10.074611271267505,
-          -11.47117689036956,
-          -10.462461706344053,
-          11.202619178881479,
-          -12.110145489414888,
-          10.69416830983414,
-          10.044532017161947,
-          -9.203193393256836,
-          -8.27959399580646,
-          11.316988606548454,
-          11.354924767762956,
-          -10.184411024408185,
-          -9.135882527518648,
-          10.893925559143582,
-          10.193190011879743,
-          -10.719729359236164,
-          -7.692071443049805,
-          -7.224421427365524,
-          -10.682233743082515,
-          9.805667200449873,
-          -12.083605822314953,
-          -8.677235905149185,
-          9.933305227260492,
-          -9.866840724836207,
-          -9.997095324002226,
-          -11.250981286022332,
-          -8.66988697543251,
-          -9.538238897314134,
-          9.544409104573942,
-          -11.303413168773533,
-          10.09145732779186,
-          -8.839233760329599,
-          -9.152909520204089,
-          -11.364946209159587,
-          -7.245513682920617,
-          -10.993920844700682,
-          8.776849403936978,
-          -8.60270991878051,
-          9.70588014173924,
-          11.32196592982662,
-          8.95199054141313,
-          -8.424271606895871,
-          -10.932075684287556,
-          -8.97755091251743,
-          -9.263933716530271,
-          10.453504007506075,
-          9.82148984001884,
-          -11.240922003485748,
-          -8.199603957077816,
-          9.661191826691732,
-          8.99400474090947,
-          -8.505450831720392,
-          -10.152370447147987,
-          -8.909933623889126,
-          9.805204485634297,
-          11.212994453268456,
-          -9.003134920160997,
-          9.980200906855893,
-          -9.675506533890655,
-          -8.779440252057224,
-          -12.308463252027273,
-          -8.866791236135043,
-          10.784037437018716,
-          7.661246810597218,
-          -10.702752345224404,
-          -11.16532091765001,
-          10.518894443745813,
-          -10.90707986556019,
-          10.244657650312945,
-          -8.832609507837288,
-          10.945514420048136,
-          -10.314775295642276,
-          8.932253388026497,
-          -7.603821840005055,
-          -11.243442496982386,
-          -11.419572747204604,
-          -8.764258116505697,
-          10.955195154174309,
-          9.523762626968248,
-          10.496215251692288,
-          -10.463316030142105,
-          10.501472283184514,
-          -9.585371449878169,
-          -8.305359565173077,
-          -9.854364958351702,
-          -11.293834007049938,
-          -10.51835793939442,
-          -11.124857966164715,
-          -9.378926141988986,
-          9.684561414888242,
-          9.997560177446571,
-          -9.278124226431357,
-          -8.813909618841986,
-          -7.9546002589152085,
-          9.076696797346155,
-          7.888958479587693,
-          -10.034598801520831,
-          10.183261448695061,
-          -10.219298728799789,
-          -8.092762132192666,
-          -7.01711161386946,
-          12.04444734668116,
-          -10.637558290425423,
-          -7.692011258320498,
-          -9.348390962628395,
-          9.818520773501284,
-          10.693960545885652,
-          -11.393976010377575,
-          12.24525681583924,
-          -10.4516642448305,
-          -7.723347652114421,
-          -10.10358509030745,
-          -8.637836433834632,
-          -9.221614801666435,
-          9.40679247314159,
-          10.95397205773973,
-          -10.903194200787958,
-          10.75785550130032,
-          -10.015134762711003,
-          -9.30328921059428,
-          -9.657841962560761,
-          -7.711804416911535,
-          -8.83847622150865,
-          -9.791597780090433,
-          -10.470531384203676,
-          -9.573784667993083,
-          -9.073754173472658,
-          -8.08662914773739,
-          11.144945532748748,
-          -9.593003423948165,
-          -9.456251266026355,
-          -11.34924418017669,
-          -10.447823535466306,
-          -7.492926404867799,
-          -11.434335309499195,
-          -10.502945861459828,
-          -11.38973802924525,
-          -8.182086996875924,
-          -8.463324953842896,
-          -9.056319317958309,
-          -7.751731014829094,
-          -10.81818561421571,
-          9.94599711752872,
-          -9.483573814448917,
-          -9.949816533271175,
-          -12.333728762500632,
-          -11.79359733109791,
-          -8.933863376035259,
-          -11.423715523513,
-          -9.443358083592859,
-          10.993000775680402,
-          -11.336331257146677,
-          9.982709154237789,
-          10.623148380053443,
-          8.727885344357755,
-          10.705631153792902,
-          -9.503609482825327,
-          10.625670637733792,
-          10.143534502520833,
-          9.267559342880736,
-          -10.539589933231543,
-          -9.520514336645286,
-          -11.99457253841302,
-          -10.704449553244912,
-          -9.50488602768965,
-          10.799969204149328,
-          -8.71455213832868,
-          -10.616583228816351,
-          -9.748536792082888,
-          -9.929623665668855,
-          -7.592351175281272,
-          11.672303980412744,
-          11.22710370819908,
-          -8.552086350942103,
-          -10.282170266817374,
-          12.521067325032542,
-          -10.10410695948474,
-          -10.258739509799138,
-          9.189172233095336,
-          9.00298120177551,
-          -10.802409191246122,
-          8.42366431575832,
-          -7.706290093750997,
-          -9.887152402836028,
-          10.450706709475341,
-          10.132645298213433,
-          10.289279937185217,
-          -8.586619118748185,
-          -11.003727245443372,
-          -7.943694919522665,
-          9.21961381075815,
-          9.84519638440543,
-          -11.07950030882891,
-          -8.986393008818656,
-          10.619597186638469,
-          -9.003573778190553,
-          11.983568970595758,
-          -11.577321526310143,
-          -9.365891996817673,
-          9.722934097373352,
-          -10.503151879586369,
-          11.307950960591919,
-          10.228577873185325,
-          -10.673036879220545,
-          -10.26108289597787,
-          -8.358782944216227,
-          9.954086917778913,
-          -8.889493895706302,
-          11.311043640206341,
-          -9.550294163678043,
-          11.731521289317213,
-          11.105392203910423,
-          10.748116883429867,
-          10.552939531703801,
-          9.702143513777672,
-          -11.643352379220323,
-          -10.205187798298441,
-          -7.196304592725073,
-          -9.740887242172288,
-          -11.27788142802443,
-          -10.375525703550698,
-          -9.904230819201523,
-          9.530256215112146,
-          -10.889735907085853,
-          -11.44465830916263,
-          7.796376676496719,
-          -9.05737705812395,
-          -9.07937835593852,
-          -8.055016054613729,
-          9.868151414000186,
-          9.959390902197997,
-          -10.878867741331288,
-          9.349768901332162,
-          9.745662855803946,
-          10.276176175189887,
-          9.463531617790608,
-          9.935098183929012,
-          -7.10126116829161,
-          10.174728170546693,
-          -9.396525445247601,
-          -8.814449786454846,
-          10.510926921405355,
-          -10.243200592051773,
-          -9.235177856679028,
-          -9.520195258897987,
-          9.802768541568774,
-          10.900207157991499,
-          -10.651722962036764,
-          9.047496466946287,
-          -11.230652328101698,
-          -11.093318561351882,
-          -10.089156410668654,
-          10.141496665865267,
-          -9.605344063474144,
-          -10.220163499601549,
-          -10.203876170224506,
-          -10.771831576150117,
-          -9.320822808233144,
-          10.882714261675957,
-          -9.622613303536324,
-          9.196195743369925,
-          -6.446991710655491,
-          9.199932386042347,
-          -10.388317241516901,
-          -11.172860093403578,
-          -9.688909899482312,
-          -10.0120839634501,
-          -7.179921034233361,
-          -7.802894148814422,
-          -6.63132931506183,
-          6.77729607850974,
-          -11.787389250799642,
-          9.875654513658638,
-          -9.73257772271785,
-          -8.576616592307156,
-          -11.654853682091083,
-          -10.704611187943675,
-          10.623677365191188,
-          -8.767303135987284,
-          10.023504069455605,
-          9.393868184867337,
-          -10.309127250346933,
-          -9.836936523635428,
-          10.79366862957579,
-          10.161347431851564,
-          -9.318031891441265,
-          9.77235022743135,
-          11.315941227873918,
-          -10.134583564115903,
-          -9.366921075585198,
-          10.33931069984107,
-          9.378065869766978,
-          10.477775725722003,
-          -9.559692282523232,
-          10.433081161005935,
-          10.367416347362365,
-          -10.094883957033016,
-          9.73059973350117,
-          -10.861318844838866,
-          -9.1105169122697,
-          -6.51693508526778,
-          -10.036308474332179,
-          -11.880907777894771,
-          -9.75594593918602,
-          -9.419374246794936,
-          -9.57555792364093,
-          10.566961582662033,
-          9.332479875409653,
-          8.303143542522536,
-          12.2279443445101,
-          8.987320046682898,
-          9.308817867710234,
-          9.80865011613177,
-          -9.716974621728859,
-          -11.919234167296496,
-          9.462473049609372,
-          -9.997405176099557,
-          9.056244413146691,
-          -11.77016487537416,
-          -8.252051962774916,
-          -10.1960313961695,
-          -10.866795286973511,
-          -9.781748554011585,
-          11.564227753157757,
-          -10.394749178645178,
-          9.127396239415344,
-          -9.562555040701751,
-          -10.159057895505496,
-          -12.428004095101912,
-          -9.750835731652417,
-          10.057073689363587,
-          -10.093329250830381,
-          -9.817636935940572,
-          -10.033063572495639,
-          -11.364234743183147,
-          -10.198730402301509,
-          11.353858626115239,
-          -9.06735593338623,
-          11.548496460337347,
-          10.209650169670933,
-          -10.353132485541426,
-          10.59043119839254,
-          11.535053071079108,
-          -12.256875479419687,
-          9.865441170625868,
-          -10.05880854516008,
-          -10.745152458657422,
-          -9.761365277778609,
-          -11.599222346786501,
-          -12.703110868773354,
-          -10.260775539042951,
-          -11.200474611821006,
-          -12.279393925103495,
-          -8.388832946045182,
-          10.737327958137255,
-          -8.611017831849813,
-          -10.094012268240142,
-          -9.148530515867199,
-          -10.275280072914084,
-          9.73646262863832,
-          -9.074916216525331,
-          -10.443673538167147,
-          -10.821117884888091,
-          -9.369207648891278,
-          8.402973316967605,
-          10.810838933614418,
-          9.238128755720497,
-          9.556341402725494,
-          -10.821743947395664,
-          -8.89565162149044,
-          -10.856448064579663,
-          -9.50577882183716,
-          9.02247675784958,
-          -10.294992479210926,
-          9.324864319963426,
-          -10.07743107892925,
-          9.848961905439108,
-          -11.563216174131142,
-          -10.813376109377069,
-          11.599961491874424,
-          10.569435506427867,
-          -9.129686714123984,
-          -11.190298186346032,
-          -9.407202385448365,
-          -8.019159758809838,
-          10.066622693897937,
-          -13.686894304912851,
-          11.232805968087293,
-          9.429284474412535,
-          10.28380245087822,
-          10.475496501798869,
-          -9.70019957651568,
-          10.882264594889012,
-          10.406710362675256,
-          10.593873859956698,
-          9.705451815300822,
-          -8.516344909458356,
-          -9.51667533920373,
-          9.525079435570403,
-          12.035583659005963,
-          10.0060127333943,
-          -9.33597028843071,
-          -10.184690655773478,
-          11.564994718376129,
-          -10.29027587148474,
-          11.213746087952865,
-          8.128071015610796,
-          -9.582185031873431,
-          9.721873852349411,
-          10.525847616971683,
-          10.564838025101679,
-          -8.962070684353735,
-          -12.315204542138229,
-          -9.629342755620474,
-          -8.991697853545388,
-          -10.347474199464067,
-          8.122641996520036,
-          9.951005901084262,
-          -9.82776902489645,
-          -11.821915758117903,
-          -8.572166986708156,
-          10.384684748269363,
-          9.815649887678441,
-          -11.118264846444088,
-          9.451137430236738,
-          11.381604878182994,
-          -9.41922297218771,
-          10.355530892660878,
-          -9.704091405794292,
-          9.267721770570315,
-          -10.52961172584094,
-          9.28151044513708,
-          10.18373651229163,
-          10.291126141960001,
-          10.000814651536505,
-          -10.876179820803754,
-          -11.354362739235773,
-          -11.336660698427254,
-          -9.494745192480364,
-          -10.817383877943408,
-          -8.87149918675274,
-          -9.945822089413971,
-          9.742205003493277,
-          10.374448854736489,
-          -10.33955600571596,
-          -11.438431092591387,
-          -8.612575670993586,
-          -10.146304199862993,
-          -9.177787566907206,
-          10.780466802601456,
-          -10.374201178532108,
-          -10.329719928584602,
-          9.611822930493732,
-          -9.481123994913114,
-          8.704002134714642,
-          10.277277172866354,
-          10.623330034433398,
-          -7.997018205912758,
-          -10.362171727995289,
-          10.071379289234171,
-          9.808773221671672,
-          -9.01058706757377,
-          10.06412792703626,
-          10.528986431747681,
-          10.977387589391329,
-          -6.691025345544356,
-          -11.961084642337768,
-          10.848688493861737,
-          9.804655018552406,
-          9.064141344125217,
-          9.554099234139604,
-          10.04266469946158,
-          11.013665366050292,
-          9.084131025897547,
-          -12.5381204732763,
-          -9.014321470832293,
-          9.154994157195587,
-          10.328825451511053,
-          10.700138731898559,
-          10.725958595690845,
-          -8.947572361756576,
-          -9.44733313165525,
-          -9.421695199308584,
-          -9.318650810515702,
-          10.883055999838202,
-          -9.204412709093342,
-          -8.765567377875247,
-          -10.439974800335905,
-          -11.188849790236386,
-          -10.257599244132168,
-          -12.138131181994636,
-          -11.20627923559919,
-          10.373588685541401,
-          -12.314147811205306,
-          -8.507606964419839,
-          -10.981195147909363,
-          -9.046770750364411,
-          -12.033763003584312,
-          9.487040790774659,
-          -10.968158502733743,
-          -11.270065848820222,
-          -10.70472823373839,
-          9.81071833968933,
-          10.884007749655344,
-          -10.233420422418144,
-          -11.29175073098843,
-          9.344322322626605,
-          -8.199988454042785,
-          10.472161385730649,
-          -13.081983985099718,
-          -10.221814328774512,
-          8.99027157649282,
-          10.47646680291432,
-          10.747983131379316,
-          8.946285790188973,
-          10.041272573724433,
-          -9.145234518844383,
-          9.969286860336597,
-          10.043903763791056,
-          -11.427217388305047,
-          -10.784330868549914,
-          -11.342205317753722,
-          -10.308469679876325,
-          -10.307972009571083,
-          7.871937991850896,
-          -12.144688402904771,
-          10.217990828123733,
-          -8.812224095008391,
-          -11.69387996943074,
-          -10.975047571186044,
-          9.652931274413419,
-          -9.945130286903304,
-          8.46893049012757,
-          -9.787183983185534,
-          -7.2743351732597645,
-          -8.362415621489065,
-          -11.630016531287602,
-          -8.990883342539451,
-          -9.357110155308337,
-          -9.149865276370775,
-          -12.01472745036822,
-          -9.647459971605063,
-          -9.787963278619522,
-          -9.9001200096289,
-          9.235829035871218,
-          10.245749155298475,
-          -10.803771207127918,
-          10.841314914311978,
-          10.77239987353727,
-          -9.94950852772523,
-          10.748209582035384,
-          -8.915576440557361,
-          -10.853802125469937,
-          9.901915117939518,
-          -9.675452904072651,
-          -8.49519650111443,
-          9.642914966452496,
-          8.74056188720364,
-          10.722448359247494,
-          -11.206271202373554,
-          10.247360106306846,
-          -8.384494477491929,
-          -11.202110390904195,
-          -11.668418804370365,
-          -11.400663015457297,
-          11.747888614836093,
-          -10.679038689817613,
-          8.96784719604586,
-          -9.940461378638016,
-          -12.637435669061293,
-          -11.76381872845003,
-          -10.11876048867162,
-          9.17953221477506,
-          10.085188792308362,
-          10.411499024616846,
-          10.405941970729302,
-          10.810035218154454,
-          -11.517922279781677,
-          -9.781905459782749,
-          -11.214973033046055,
-          11.455167644863412,
-          -8.857317743078594,
-          -9.745747433456902,
-          -9.535255532922282,
-          -11.407435333441459,
-          -8.84317516160619,
-          -13.535565442932452,
-          -8.496966216500068,
-          -12.29263702933368,
-          9.846793312775944,
-          10.511317013155615,
-          9.61219215312482,
-          -11.639964539073402,
-          10.049142263169271,
-          8.115331850172732,
-          -11.11469247016516,
-          10.865645778269144,
-          -9.616955887049278,
-          10.191233092822962,
-          -9.372942217136327,
-          8.938720591241148,
-          10.594460128759325,
-          -11.029319216870233,
-          -10.340217448576706,
-          -11.544137729899424,
-          -8.812865870418463,
-          -9.718230928258487,
-          -8.837271208084466,
-          8.851759817489102,
-          -9.581533895623402,
-          10.171369048125166,
-          -10.506841067508564,
-          8.30435045247054,
-          -8.397852006725849,
-          8.645486610233004,
-          -9.077552281679568,
-          9.498925979535475,
-          -10.217000944416906,
-          -10.805120673918664,
-          -11.5008453238372,
-          -9.13297745900813,
-          12.747623496023825,
-          9.731591504815933,
-          -9.067404884296439,
-          -8.227052106236965,
-          -10.708427586776954,
-          8.642764225511085,
-          10.619642750796931,
-          -10.95171416197922,
-          10.460139529752242,
-          -10.29759629761954,
-          -7.758743681097027,
-          10.572214511108882,
-          9.010301997460516,
-          8.512202364824276,
-          -9.616125611739827,
-          -8.221912563244048,
-          -10.902929498527342,
-          9.518279463723449,
-          11.178536519015175,
-          9.608348018222227,
-          -9.155002264401508,
-          -10.064648629737718,
-          12.010765930964578,
-          -10.533596275177254,
-          -9.728067484030817,
-          -9.596396205554546,
-          11.501580391291084,
-          10.366673925126078,
-          -10.59173488915163,
-          9.41056757774286,
-          9.024960916674063,
-          -10.18844899727191,
-          -13.060102620528903,
-          9.022916756900678,
-          10.965276299933638,
-          8.606830289403598,
-          -8.708805384495344,
-          10.392205979465627,
-          -8.302666179283108
+          0.043407652380108575,
+          -1.9671948289894436,
+          -1.5099859638381872,
+          0.43883595973271095,
+          0.0838925474615877,
+          -0.8327340174498526,
+          0.9132902944491308,
+          -1.230272568443901,
+          -1.2387605216747133,
+          -0.9048058498659273,
+          -0.9015664759916555,
+          0.3960242870127666,
+          -1.6219972328438006,
+          -1.48546564387384,
+          0.10348759311928069,
+          -2.0073628774485015,
+          -1.375492698670977,
+          -0.4341749199301075,
+          0.7171669004317887,
+          -0.806773480382875,
+          -0.618897313959795,
+          1.0362667877252338,
+          -0.13512118254725514,
+          -2.3806724377770463,
+          -0.7536171379717463,
+          0.2507957704837114,
+          0.4284069755907187,
+          -1.6139788138358808,
+          0.1883516910327805,
+          -0.03699365480311845,
+          0.9927352429997807,
+          0.7117429944593741,
+          -1.7507644947498133,
+          0.8626984475637494,
+          -2.4302080430267567,
+          0.15237643642677123,
+          0.7324233153084243,
+          -1.6909255540800197,
+          0.503890845501326,
+          0.36834973304157903,
+          0.6051177299249937,
+          0.8073350204314365,
+          -1.994532430254909,
+          -0.46707837908662886,
+          -2.4563884946819075,
+          -0.7352849320941468,
+          -2.0630288808304726,
+          0.14109672323276712,
+          1.4490314714073405,
+          0.15251820316662235,
+          0.9418682372986134,
+          0.0027321606457801906,
+          -1.789875736151477,
+          0.9220470522552073,
+          0.028077260171167406,
+          -2.8621680385235733,
+          0.7765564882332061,
+          0.2529362673696596,
+          1.6086835504822452,
+          -0.5822834286014835,
+          -1.2489979025818696,
+          -3.8678697052715014,
+          -1.2378923445628773,
+          0.03392194384532665,
+          -1.832114084196129,
+          -0.8217485611238108,
+          -1.0541496489826963,
+          -0.31682467720764507,
+          -1.0380162423542807,
+          0.47456152598674284,
+          0.4844327464650142,
+          0.6649281761887751,
+          0.31482934428051457,
+          -0.8724290285100368,
+          0.6233370810482817,
+          0.8630614792136093,
+          -1.1114135230934454,
+          0.7014167173001133,
+          -0.97607617083152,
+          0.4649391088848225,
+          0.04966968433780217,
+          -1.3420937151954269,
+          0.36699279629104353,
+          0.932679288834052,
+          0.2845292378544828,
+          -0.7113787678747221,
+          0.394617524169109,
+          -1.5947051094151092,
+          -0.13843998439317962,
+          -1.1980541494753965,
+          -0.6301587214481191,
+          0.6770831189889774,
+          0.5307631352239452,
+          0.5317857574048479,
+          -0.704951645392096,
+          0.42964135226803113,
+          0.13501556219525135,
+          0.28465832957122905,
+          -0.22888225561184594,
+          0.6486073838832087,
+          0.14042223527202569,
+          0.35551323965230774,
+          -1.444008771025409,
+          -2.0233327576819593,
+          -0.7019294685762913,
+          0.7915563527264451,
+          -0.9813473634763592,
+          0.589957418470408,
+          -2.140044790266341,
+          -0.10289009196885379,
+          0.20706274373560607,
+          -2.8172507972807193,
+          0.3447307969385405,
+          0.3522323954510509,
+          0.4253974570065173,
+          0.14524433808644122,
+          0.10968486854149795,
+          0.5854257736333508,
+          0.666741557306272,
+          -2.4670812749787467,
+          0.25603130938210183,
+          -1.2268620069370146,
+          -1.6083870523756856,
+          0.11448605419676117,
+          0.011750954744140563,
+          0.21909153820864713,
+          -0.0006889447438979124,
+          0.16975173416508005,
+          0.061806202890054784,
+          1.0680243537239558,
+          0.3431794702175055,
+          -2.202619871189399,
+          1.137677558600838,
+          0.11720273602346065,
+          2.091900866089721,
+          -0.33658376228511744,
+          0.4079254594005213,
+          0.2757674186970076,
+          -1.6611127375445458,
+          -0.9296848206782143,
+          -0.8217097885814046,
+          -1.0461863812763283,
+          -1.6917294096339819,
+          1.2426855508933432,
+          -0.216283523017202,
+          0.1466910940834174,
+          -2.712027719462821,
+          -0.6741358070962161,
+          -0.8043953088351214,
+          0.5151271215839583,
+          0.11241101479958293,
+          -1.093049660040639,
+          -1.514448625483276,
+          0.09097922355860599,
+          0.5981584058465566,
+          0.024644947305471288,
+          -1.0051327240021244,
+          0.48819761409261786,
+          -0.284510299618417,
+          -0.7804147227356697,
+          0.15828220378914604,
+          -1.5559678075509722,
+          1.239444568844804,
+          -0.26911625006265505,
+          -1.4225835222387984,
+          0.21840275230599415,
+          -1.0698467014339124,
+          -0.42505759012454036,
+          -1.3115062610140629,
+          0.44907838577684456,
+          -2.0009290177346726,
+          -0.2391741460761686,
+          0.5307904513670674,
+          -0.05146760046275134,
+          0.1601325344042337,
+          -1.4830977257534614,
+          -2.275596220748933,
+          -0.8367904660368742,
+          -1.4864538776264213,
+          -2.021824145226848,
+          0.19042063392415698,
+          -1.4159968030572119,
+          -1.4081714086441721,
+          1.0978330736606563,
+          0.15149609064597436,
+          -1.624814760805587,
+          0.07329711888846324,
+          -2.4643454697892633,
+          -1.1614091470894636,
+          -0.44699369681466583,
+          0.2672559555026861,
+          -2.201900898222681,
+          -1.1345720450458656,
+          0.5663050779187058,
+          -0.1581535690783239,
+          -2.0433403048943863,
+          0.047451199543543376,
+          -1.1113006562318697,
+          0.2829018851695151,
+          -0.10865993654582051,
+          -2.045183216663691,
+          0.7319780605297577,
+          0.8216856667083985,
+          -2.647522466492889,
+          -2.919004464532563,
+          -0.6328625722970664,
+          -0.5680530784947484,
+          -0.5263729519030494,
+          -1.8426779658036474,
+          -1.329184068410309,
+          -1.5203184391340305,
+          -0.573255071845147,
+          -1.1163429661576934,
+          -0.6003820008678558,
+          -1.6599022833228614,
+          -0.5654050828832105,
+          -0.42728572394615416,
+          -2.623788425291966,
+          -1.0024967476669624,
+          -0.6801923828086476,
+          -0.9050552968556692,
+          -1.792338068689738,
+          -2.057348734095615,
+          -1.0444737505050279,
+          -0.9039681787193953,
+          -1.4452379965541022,
+          -0.9018083479826776,
+          -1.1938456403788,
+          -2.506964386841621,
+          -1.4058710279481648,
+          -0.005440936440888722,
+          -0.5967067204390033,
+          -0.7403976965017587,
+          -0.8877193190741568,
+          -0.8752000259136721,
+          -2.1452150732099717,
+          -0.27286943647603523,
+          -1.994899488629096,
+          -0.014752045635599509,
+          -1.427220768639909,
+          -2.2138660961573327,
+          -2.6239467879096354,
+          -0.34221774717951725,
+          -2.4473766921799456,
+          -0.6435215645572441,
+          -1.3267810626373633,
+          -0.6042606261231444,
+          -0.7791139507341077,
+          -0.634327384279226,
+          -1.0077542647355466,
+          -1.3569043048025602,
+          -0.14513238986938948,
+          -0.5823553497909515,
+          -0.6789232984900927,
+          -0.8426634631356911,
+          -1.0219869180167862,
+          -0.7360668363942258,
+          -1.668808615601634,
+          -2.9167848780730985,
+          -0.6953259956736082,
+          -0.8397286623368516,
+          -0.1730203042300016,
+          -0.52385217784074,
+          -0.5872822103623621,
+          -2.8472786302473865,
+          -0.8279898560980963,
+          -0.20591163670005774,
+          -2.247678576218962,
+          -0.24743690334984547,
+          -2.565969500635549,
+          -0.15579399019182782,
+          -2.7615520888966714,
+          -3.1286773851562786,
+          -1.1508582658135025,
+          -0.437393347655596,
+          -0.33285241705195145,
+          -3.5827489445936496,
+          -0.8057306951621087,
+          -0.9071359709889747,
+          -0.2618385725904254,
+          -0.2892596774504538,
+          -2.3281363028801003,
+          -2.600324185148322,
+          -1.4550976316362514,
+          -0.6798597068269836,
+          -0.06416670716900763,
+          -2.4961990129748717,
+          -1.3788788627276463,
+          -3.3824478873133272,
+          -0.4136726247323673,
+          -1.2732119804684154,
+          -0.5039644536830978,
+          -0.611826431356057,
+          -0.8793672777601822,
+          -1.75328252970243,
+          -0.9101196817842918,
+          -1.7943460955216237,
+          -0.9516640809728061,
+          -0.6771652713815002,
+          -1.3935359175391249,
+          -1.8669035070984967,
+          -0.2747138486681412,
+          -0.07964512993142125,
+          -1.332798998289484,
+          -2.50601788278534,
+          -0.8862143423706982,
+          -1.5033095892923014,
+          -2.661036723215137,
+          -1.063736143098626,
+          -1.5749513693165946,
+          -0.9091916519052294,
+          -1.1800513428625008,
+          -0.43600681188188384,
+          -2.5954184508169416,
+          -1.8160199574579363,
+          -1.0089179250817717,
+          -0.6883858271477381,
+          -1.909495158179338,
+          -0.21665005469514342,
+          -1.759856284028016,
+          -1.0129147283425406,
+          -2.070143451514113,
+          -0.8039984296843765,
+          -0.4579196024063018,
+          -2.6110581187068496,
+          -0.5299429959244235,
+          -1.3928709454501327,
+          -2.287458487999662,
+          -0.2760729750186468,
+          -1.1835050203604949,
+          -0.6071676863213001,
+          -1.71146089129715,
+          -0.14294358342513236,
+          -0.22877805744027757,
+          -0.8702255547528799,
+          -0.4553548842964792,
+          -0.8189169911028195,
+          -1.2988084248602856,
+          -0.8992465113264346,
+          -0.7419203871569273,
+          -1.637831196851887,
+          -1.247226854119412,
+          -0.007599666816841211,
+          -1.519724655892567,
+          -2.070175706078789,
+          -1.973247901640086,
+          -1.695756252443856,
+          -0.5152360973629022,
+          -2.0548500843747863,
+          -1.1690459254032777,
+          -0.9280957155892119,
+          -1.0337040407463702,
+          -2.109486857591474,
+          -0.8885531879113523,
+          -2.244336364422675,
+          -1.1227661278041823,
+          -0.6122799183808774,
+          -2.5913699897663163,
+          -1.8815412502082902,
+          -1.1001529878838439,
+          -0.26113228451842896,
+          -0.7683082860391954,
+          -0.9077740357049693,
+          -0.30374257664646165,
+          -1.0081381542587002,
+          -0.9300299417374476,
+          -1.0706406842090566,
+          -1.8711881377811417,
+          -0.23123055747431598,
+          -1.4233668214087405,
+          -2.8733746649851253,
+          -1.0660789675978206,
+          -1.0681393298282154,
+          -0.4634061843085584,
+          -1.7212458879682901,
+          -1.989566590039953,
+          -0.6822907920219495,
+          -0.3856976470624174,
+          -2.510569201822024,
+          -0.2626147873940041,
+          -0.28912652010589335,
+          -1.0964362369857175,
+          -0.1510419975009768,
+          -1.3824958564406522,
+          -1.2071764078860547,
+          -1.7270163822052327,
+          -0.9411367218647463,
+          -1.159879007023821,
+          -1.819819044150349,
+          -0.881862401640726,
+          -2.1576100689853996,
+          -0.5802785362384872,
+          -1.475276645990367,
+          -0.19489943793326414,
+          -1.2554022533220932,
+          -0.9689899286311026,
+          -0.5695763088572874,
+          -0.5296750898584415,
+          -1.7136586131144778,
+          -1.3463332028220947,
+          -1.508389599300925,
+          -0.46847472201179885,
+          -2.4323203505291096,
+          -1.2198997502382203,
+          -2.1036664935709597,
+          -0.14176067336157894,
+          -1.451143130561535,
+          -2.0082871765939894,
+          -0.506717565035612,
+          -0.3165676704483765,
+          -0.5546533661799005,
+          -0.803397830507644,
+          -3.1352334498950665,
+          -0.6095934358481181,
+          -0.33472469477290223,
+          -2.04831750338532,
+          -2.0824058694353424,
+          -1.0592400326385054,
+          -2.0389304389893894,
+          -1.9217104281514301,
+          -1.3695838080012566,
+          -0.8971869356907076,
+          -0.629427810894652,
+          -0.6997002273764161,
+          -0.8890934879657146,
+          -1.3539025908558084,
+          -1.822341473249658,
+          -0.5677607627563896,
+          -1.7771737263302854,
+          -0.6114404857958201,
+          -0.7065114161691676,
+          -2.2481162380925386,
+          -1.1181193225848192,
+          -1.4885818765676733,
+          -1.5127435309723847,
+          -0.46145002361411824,
+          -1.5871297545723533,
+          -0.4938347429765655,
+          -1.0539423357557989,
+          -1.7816088680939015,
+          -0.17332275188125457,
+          -2.013516682503136,
+          -2.7410322571798202,
+          -1.454578548608826,
+          -2.106578030321785,
+          -0.745323924425659,
+          -1.1017956003028877,
+          -2.8132942881576053,
+          -0.8745324490808235,
+          -1.373192369412494,
+          -0.02472740748559854,
+          -0.6916394692681167,
+          -0.9977340509416425,
+          -0.5687962543549369,
+          -0.10833213604439185,
+          -0.35645135947483264,
+          -1.6620812023373353,
+          -1.3139342096977051,
+          -1.8256565260355098,
+          -3.588468678195234,
+          -2.479009120180268,
+          -1.578326151171122,
+          -0.8816539295771768,
+          -1.9220244767129786,
+          -1.9259326848347862,
+          -2.967550573116047,
+          -1.1069276102119667,
+          -0.8655941165938386,
+          -1.1469532206702866,
+          -0.907086323038568,
+          -0.539876547445828,
+          -1.744638573646418,
+          -1.033012489604136,
+          -2.0116668493976695,
+          -1.8246994147604187,
+          -1.883534230234079,
+          -2.657524104407605,
+          -0.5622072660567297,
+          -1.088020650179334,
+          -1.0693429099202425,
+          -2.677879722697867,
+          -1.6489289788741264,
+          -0.0641939694876581,
+          -2.9870588107187923,
+          -0.6536521968646334,
+          -0.8223522107642158,
+          -0.8743184399791952,
+          -0.9862577121504781,
+          -0.858311471794459,
+          -0.7866163259986603,
+          -0.8387691526627491,
+          -1.954502302981767,
+          -0.40274648036021343,
+          -1.4762728609319862,
+          -0.34801419121453014,
+          -1.9238273509500314,
+          -1.0904203899420029,
+          -1.769135289905444,
+          -0.3841698823575336,
+          -1.2015689733323187,
+          -5.063663783259412,
+          -0.93791239723114,
+          -2.3986887894101914,
+          -3.024319512359533,
+          -2.600141433844807,
+          -0.5744611171309315,
+          -2.435410146928395,
+          -0.3800261193889469,
+          -0.10873884761771468,
+          -1.0144823891548214,
+          -2.050588914362673,
+          -1.0698464258291809,
+          -2.1276823120977797,
+          -0.13686986308651583,
+          -1.3074998146964496,
+          -1.4153317334450373,
+          -1.5021496984444913,
+          -1.47714048833505,
+          -1.7597318510056226,
+          -0.3979383113085947,
+          -1.7487619908742584,
+          -0.018571613276505805,
+          -1.70691732466209,
+          -0.32215231776305187,
+          -1.79227177031084,
+          -1.692540571367148,
+          -1.1396951016510581,
+          -1.7101887919343826,
+          -3.323187591993899,
+          -0.593828361551004,
+          -1.7597300200105694,
+          -1.2817229428160115,
+          -1.0388285278353102,
+          -0.8345635422114308,
+          -2.121562364681953,
+          -0.8992815427267062,
+          -0.7247627658319691,
+          -0.5817805302726484,
+          -1.090294101116788,
+          -0.8660486510529584,
+          -0.6747756458818692,
+          -0.43442308033080246,
+          -3.9401019049479307,
+          -0.49073145186309297,
+          -2.944368481067239,
+          -0.851447751386265,
+          -0.7639271491217632,
+          -1.5170379581711213,
+          -2.6151818309598487,
+          -0.6834958758303342,
+          -0.9164004446195987,
+          -2.6124950930461126,
+          -0.5159391130092967,
+          -1.2950656790017478,
+          -0.7159214736740974,
+          -2.9288134549414404,
+          -0.7966896965013495,
+          -2.5705225371406133,
+          -0.21326186702261085,
+          -0.5036838256891363,
+          -2.0600156906589397,
+          -2.4520673289078854,
+          -0.5907647183588169,
+          -2.576762614380665,
+          -2.499697358261921,
+          -2.5619739745608126,
+          -0.8393204888803778,
+          -1.927085077140892,
+          -0.0404267242866615,
+          -2.600464784362021,
+          -1.0334547088737838,
+          -1.3282060282372727,
+          -1.2763815628695938,
+          -0.7183742951447329,
+          -2.582048995648954,
+          -1.8490171876411083,
+          -1.5392500863970935,
+          -0.9332095772294283,
+          -1.0345679039004323,
+          -3.043308290219915,
+          -0.7706489790514182,
+          -1.544906440215364,
+          -0.964761903107791,
+          -2.0433709159710167,
+          -1.556128150280585,
+          -0.8765906820769739,
+          -2.1804889595311723,
+          -1.6285879863118047,
+          -2.2844845459705976,
+          -2.0291837354566153,
+          -0.8911828216368983,
+          -1.066953697605736,
+          -0.5297073383890545,
+          -0.4547894416678724,
+          -0.849217650343516,
+          -1.7445945501967592,
+          -1.8104477354572945,
+          -0.5947234074778693,
+          -1.3418359812736844,
+          -0.5866318841132871,
+          -0.45410113554664777,
+          -1.9471000767217097,
+          -0.6373894173186463,
+          -1.2131899755153723,
+          -0.9419126844497167,
+          -0.5642572683438085,
+          -3.2025114553665714,
+          -0.0629904797851234,
+          -2.2283059164949135,
+          -1.2413128496130834,
+          -0.38942479310938694,
+          -0.3914192003590171,
+          -0.49209778703001883,
+          -1.6398250456592864,
+          -1.5483339089353287,
+          -0.9395768588905699,
+          -0.5553880000364044,
+          -0.6102376662421598,
+          -0.8570117690342225,
+          -0.3558517427779849,
+          -0.7386360007328625,
+          -1.2534877491468897,
+          -1.3961672785756811,
+          -2.317775809299194,
+          -1.3209565472141267,
+          -0.4165609720217761,
+          -1.8525254375953901,
+          -0.6280773860645747,
+          -1.7509921208061816,
+          -0.7893305288015777,
+          -1.4423372281329392,
+          -0.34569479176951956,
+          -1.876488600921048,
+          -1.648642478408306,
+          -0.38885404276148483,
+          -1.4268990452269181,
+          -0.4085672870492921,
+          -1.0158073070586426,
+          -0.4226522467997307,
+          -1.1592043083511174,
+          -1.5726955083229557,
+          -1.7813476913113768,
+          -1.6121749687529998,
+          -0.8410551685755767,
+          -0.8115275127862132,
+          -2.706390050633451,
+          -0.9937945733034681,
+          -3.0607837647661333,
+          -2.074756975022159,
+          -0.7308237919982007,
+          -1.7526391620164472,
+          -1.8316529813851332,
+          -0.36889625028567974,
+          -0.7320748639013064,
+          -2.019274181233999,
+          -1.517366550766057,
+          -1.3289054317343207,
+          -0.44101802256152023,
+          -0.08233319121755012,
+          -1.4439234442598612,
+          -1.0834842407247522,
+          -3.1551040690790404,
+          -2.073112996550323,
+          -0.33332351434949503,
+          -1.6056982862976716,
+          -1.3299392695535448
          ],
          "y": [
-          10.952617063284325,
-          10.397363537742384,
-          9.050123141763965,
-          -10.034861020945822,
-          -11.453758251242261,
-          -10.945564635349177,
-          10.685309152445097,
-          -9.007639890946388,
-          -9.427657721936457,
-          9.95758913533719,
-          -10.502773561115228,
-          9.628494477234991,
-          9.240600932578332,
-          -10.070970937883736,
-          -9.846672256924625,
-          11.17152044455243,
-          9.747730992147039,
-          -9.185222852468394,
-          -9.82486045880134,
-          9.977958901370169,
-          11.04317356891552,
-          -9.700752143613085,
-          -10.245937656935727,
-          -11.182268686824797,
-          -9.0409886994639,
-          9.546981318177679,
-          -10.33741339869035,
-          -10.398989624556094,
-          10.607965687073643,
-          -7.801415555054903,
-          -9.896898867670084,
-          -10.6759706911525,
-          -10.224459512279426,
-          -10.108129823401798,
-          8.859921311047856,
-          -10.23165828606738,
-          9.476862911495818,
-          -9.819986744236026,
-          -9.75326866694088,
-          -9.407858628623108,
-          -11.351433387706045,
-          -7.370834062144537,
-          9.726444786516783,
-          -9.97539390237617,
-          9.986029605715284,
-          9.268906688318522,
-          9.192969015914755,
-          -9.04558482704149,
-          -10.292738482948021,
-          -10.852700474138452,
-          -9.445438565435165,
-          9.786656406851398,
-          9.311238611403445,
-          -10.01109967323545,
-          -11.031105171591816,
-          8.616724694275963,
-          9.004953654350485,
-          -9.050915815489573,
-          -10.668400701981701,
-          -10.01836696654187,
-          11.04100412976088,
-          8.315351381221728,
-          -9.807083558960139,
-          10.010629199038592,
-          -8.466591311998101,
-          -9.212715839838893,
-          -9.086199280181837,
-          -11.607685239559913,
-          9.572084778755325,
-          10.954699764105285,
-          -10.649117823105895,
-          -10.423538167511587,
-          10.915556642591984,
-          -9.81999303602928,
-          10.863531404000788,
-          -10.921562492505302,
-          9.218628755419362,
-          -10.830188014197818,
-          10.613553636155531,
-          -11.29843813675607,
-          -9.578923337365996,
-          -10.153957425023819,
-          -10.535235019475419,
-          10.943013621521775,
-          10.486350389834845,
-          10.69322376860721,
-          -11.35738538188812,
-          9.671374914029396,
-          -10.8659126280404,
-          -9.953269693651986,
-          -9.006614969476834,
-          -7.763264874884348,
-          -11.053866175510887,
-          -8.499115954315451,
-          -10.054618867090166,
-          10.436100996363452,
-          10.317581024990357,
-          -9.923196474830414,
-          -10.813961574850142,
-          -11.452784912821567,
-          9.779179516573071,
-          8.39203422104963,
-          -11.146029691987952,
-          10.445766771867527,
-          -8.42866200128398,
-          -11.257187748133127,
-          -10.972649610953166,
-          10.01621485356473,
-          -9.565895278510379,
-          -11.17780685462025,
-          -9.955883923730113,
-          9.409632480752942,
-          9.48098620990824,
-          -7.886791140634635,
-          9.559361918323479,
-          -9.887864493144502,
-          -8.887710688622102,
-          -8.730720789619053,
-          -9.19091184302046,
-          -10.311051960668621,
-          9.7869348340496,
-          10.705062298570311,
-          -9.262974802374,
-          9.757440244709072,
-          -9.930686674265742,
-          -9.8781063042683,
-          -11.423444372234759,
-          -10.779089776716871,
-          -9.708808331337577,
-          -9.379592369877459,
-          -9.328222586622653,
-          -10.164172623676766,
-          -8.834258267412165,
-          -9.057042592584315,
-          8.642123995827525,
-          -10.474309895163826,
-          -7.2261836157472406,
-          -9.155761208157822,
-          -8.134980961100661,
-          -9.770743353634078,
-          -9.200817706022482,
-          -10.183765161938009,
-          -11.108369339490231,
-          -10.447940030338593,
-          -10.693280501625155,
-          -12.436049779340976,
-          -11.717134942622858,
-          -8.261754613594656,
-          10.779163814162285,
-          -10.501171910389605,
-          -8.316415666524838,
-          -9.110435311373571,
-          -9.794682668781924,
-          -11.024867391341104,
-          -8.63140373795071,
-          -8.930824636476876,
-          10.615255554555517,
-          -10.106930476319164,
-          8.254929103087239,
-          11.129082616489539,
-          10.378823391277484,
-          9.656457058819157,
-          -9.75906913276347,
-          9.657100949795426,
-          10.544116393058335,
-          11.76916593528104,
-          -10.145669699585213,
-          -10.346875820728325,
-          -9.986847790495373,
-          -9.386732990568063,
-          -11.031378794953843,
-          9.807299440017307,
-          -11.719165878121222,
-          -9.446099986262801,
-          -10.73394879719487,
-          -10.46436179188301,
-          -11.146930295583825,
-          8.934843165422343,
-          11.56809906818252,
-          -10.282154351508085,
-          -9.40363734757285,
-          10.241613399555321,
-          -10.758155209730905,
-          -9.677125747315683,
-          10.212579678588252,
-          9.455079296482204,
-          -11.22287788113925,
-          11.97636521003893,
-          -9.775561499089074,
-          -10.360264560722541,
-          8.923889061795466,
-          8.830261150303466,
-          9.904712998723324,
-          -10.734299747818694,
-          -10.692760389693689,
-          -10.49568136756527,
-          7.997896156834275,
-          10.551014316613413,
-          -9.925528866542232,
-          -9.871440638203245,
-          10.289455853351118,
-          -8.266562565906032,
-          10.392044013571637,
-          -10.523081548548644,
-          -9.841177613726737,
-          10.18319358184833,
-          -10.147142492707163,
-          9.79416559503734,
-          11.468605477117991,
-          -8.635506987430496,
-          -10.144373443920243,
-          -10.296444831928174,
-          9.698899010996659,
-          -9.789426620268138,
-          10.873294799757348,
-          -11.304666538270398,
-          9.34190342605511,
-          10.179543608938976,
-          10.064723100863027,
-          9.992300888955427,
-          9.859281602788409,
-          -9.933352402294906,
-          -9.765837980987136,
-          -10.573644790405682,
-          -10.461012546143088,
-          -10.064123008705538,
-          -8.474006439838833,
-          -10.644586060169274,
-          10.794871301160246,
-          -9.22824484397218,
-          -8.848933241059923,
-          9.28594390614274,
-          -10.015140039040912,
-          -10.038433654738567,
-          -11.00091298078219,
-          11.281652426941717,
-          9.42989702227168,
-          -8.703656615669372,
-          11.454900452648973,
-          10.555636686531688,
-          10.331815249346059,
-          9.365854485707928,
-          9.146108960602188,
-          -10.564868414230167,
-          9.954840982513412,
-          -11.2298399870219,
-          -12.004516615251722,
-          10.660079897217686,
-          -10.486332340543107,
-          -10.904431231668454,
-          -10.440615516175157,
-          10.247227932552883,
-          9.39911006032883,
-          -8.689213972265643,
-          9.30651207286857,
-          -10.639131331406434,
-          -10.10558590307648,
-          -10.533933249707335,
-          9.109823436286696,
-          -9.578461067710617,
-          -10.265257033360824,
-          -11.07619757525752,
-          -8.359002816407607,
-          -10.509880855387586,
-          9.058180266555537,
-          -10.035576143324171,
-          9.70428081356824,
-          -11.024396217283911,
-          8.415100749313556,
-          -9.578823200823754,
-          -10.166343593935935,
-          -9.206784880095405,
-          -9.46824226513786,
-          -11.730903283491314,
-          -11.15007046867879,
-          -11.399697903725428,
-          10.766429262130195,
-          -10.681005006591198,
-          9.390380441334809,
-          -10.40928377877054,
-          -10.98875887340469,
-          -10.026799197518896,
-          -9.335370480782409,
-          10.917536921446906,
-          -11.004531641331665,
-          10.679306295976879,
-          11.884759742727919,
-          -11.321177815285868,
-          -12.276325246153986,
-          9.19037927321482,
-          9.290777620930294,
-          -8.823354135139505,
-          10.46149667105355,
-          10.882238494491984,
-          -10.755616897259264,
-          -9.271643667129249,
-          8.540627587456166,
-          9.089471215754362,
-          10.321549948670897,
-          -9.357150814838665,
-          9.327495809082404,
-          10.409354398803366,
-          -10.225448783455011,
-          10.240202053768908,
-          -8.313014212156968,
-          -9.5715094686389,
-          -10.477011815183142,
-          -9.684949134928248,
-          -9.42525620029764,
-          -8.487925047039958,
-          -10.8398735376154,
-          -9.251217113283804,
-          11.571960846195033,
-          9.905220845911405,
-          9.021882136045214,
-          9.680484678339019,
-          9.002877871020237,
-          9.529573674887805,
-          8.96863647071554,
-          -10.80855351631392,
-          -9.82957009179802,
-          9.456278507961677,
-          -10.81232057704588,
-          10.06222517010343,
-          -9.79157398830503,
-          -8.83818974754968,
-          -10.898273415864326,
-          -11.170317297144578,
-          -10.220429562847531,
-          10.868753786913576,
-          -9.773668267652194,
-          10.175215679020196,
-          -10.922178047070986,
-          -8.945661259163886,
-          -9.477812539694234,
-          -10.45245718847903,
-          10.075278832081825,
-          -9.810336968053969,
-          -9.379974483010482,
-          -10.720401279935297,
-          -9.351594525110466,
-          -10.143421224153869,
-          8.994978258785652,
-          -9.240861722278927,
-          10.339658420251965,
-          9.13326370971144,
-          -9.569859064722475,
-          9.653282609848944,
-          8.942845038765562,
-          -9.46511069697944,
-          9.848138808868757,
-          -8.004040568399516,
-          -9.997604657308234,
-          -7.86814805379791,
-          -10.076557486825765,
-          -8.820995071153618,
-          -10.93790344056029,
-          -9.328411474831588,
-          -6.635581931951155,
-          -9.839699228929645,
-          9.443610036530963,
-          -9.74975283765068,
-          -11.258786841481982,
-          -8.81193418034137,
-          -11.143288278716561,
-          11.844137252164744,
-          -10.53133303096143,
-          -9.5621258945337,
-          -10.390549886579151,
-          -9.039320782855231,
-          10.42050217372142,
-          10.579465381637931,
-          10.838816823142745,
-          10.393277596956795,
-          -9.169313228335634,
-          -9.913178259582862,
-          -10.481814142053153,
-          -11.12237930501644,
-          11.068146541417619,
-          -10.053161908966485,
-          9.438830410464119,
-          -7.361315184289815,
-          8.97688862561472,
-          -9.279266596289812,
-          -8.144034233003168,
-          9.731913502792555,
-          8.81683584065254,
-          -9.505324378177393,
-          -9.699275852079916,
-          -9.309078424570819,
-          -11.448517825696738,
-          10.372378699520636,
-          -9.570352259911182,
-          10.347362470319558,
-          11.196889288323407,
-          9.350970508155056,
-          10.140401608455766,
-          -10.60631585211892,
-          9.86712451202717,
-          10.341979585742815,
-          10.603428743801128,
-          9.575363917264218,
-          -10.668266149983411,
-          -11.698704030868006,
-          9.680553521826884,
-          9.001262686545378,
-          8.964030171336285,
-          -10.07475073183454,
-          -11.46769608838935,
-          9.116192240408981,
-          -8.515192117482156,
-          10.555633224381978,
-          10.410248168179042,
-          -8.465802126681504,
-          10.494965191611705,
-          10.314043369029228,
-          11.068460396960822,
-          -10.969208716433235,
-          -10.541089664061204,
-          -9.310269504747497,
-          -12.325008014631965,
-          -8.76899123138122,
-          10.452805056436693,
-          9.416560811710086,
-          -8.698414756930447,
-          -10.007162341722156,
-          -10.52115817379654,
-          9.91647917450116,
-          10.16436733461958,
-          -10.885935365453465,
-          10.086680901879976,
-          8.968024898129901,
-          -9.826708365727807,
-          9.593238098596593,
-          -10.915972846457075,
-          9.104416203844544,
-          -9.887250878530326,
-          9.844002508229476,
-          11.141416334461928,
-          9.892505140310062,
-          10.670296349734741,
-          -10.402213247005605,
-          -10.395638609087804,
-          -10.326520735090439,
-          -11.639763923406658,
-          -10.370985971188073,
-          -10.62611387544901,
-          -10.738745593586659,
-          11.138930141628578,
-          9.50771718161616,
-          -10.004887188100794,
-          -9.746732959940843,
-          -10.326164832623585,
-          -9.913554730227558,
-          -9.274979648665823,
-          10.138069305005931,
-          -9.925568928534581,
-          -9.941357354055347,
-          9.927022868347375,
-          -10.692724886626195,
-          9.308969243064311,
-          9.057951963309431,
-          8.84089806258229,
-          -11.1951679549969,
-          -8.145256128348223,
-          9.741848193497187,
-          10.210078817807501,
-          -10.097096938723002,
-          10.428732595167691,
-          10.92190775720111,
-          9.459070686994567,
-          -10.61799877459407,
-          -10.256052438756651,
-          9.449296723989312,
-          10.629094182553592,
-          10.210175449589837,
-          10.812566391285909,
-          9.917433296417691,
-          10.914106250313054,
-          9.974095193828566,
-          -7.943001041155934,
-          -8.770517123177962,
-          9.087744619686545,
-          11.008876513023711,
-          11.204528361434235,
-          10.215289123415674,
-          -11.303875115922168,
-          -10.393160543849053,
-          -9.948805525532588,
-          -9.297230151644529,
-          9.830158943058409,
-          -11.37591385110498,
-          -11.553201315656066,
-          -11.382834344940726,
-          -8.52354953047084,
-          -10.633061667259446,
-          -10.845545203942054,
-          -10.6910597171041,
-          10.32123327895102,
-          -10.751753826706151,
-          -9.86978099627628,
-          -8.362870826206107,
-          -9.959599481417829,
-          -7.749578031051847,
-          8.735460050979043,
-          -10.150946664600106,
-          -9.44746071363231,
-          -10.457015793203555,
-          11.090087068633153,
-          9.196190174533687,
-          -9.865346303508435,
-          -10.275871041591714,
-          10.848496838346785,
-          -11.766060843666775,
-          8.68329836500945,
-          -9.775469991906728,
-          -11.27576565894253,
-          11.310221052500923,
-          9.48559001910533,
-          8.24096798495896,
-          10.735846621932945,
-          10.810260272451844,
-          -10.124354723131857,
-          10.658411241658165,
-          9.81506804708678,
-          -8.20945359043385,
-          -9.283080924551108,
-          -10.214660755564953,
-          -10.378174852424682,
-          -9.38585326373315,
-          10.852958733500468,
-          -11.092123332210416,
-          10.576001745180577,
-          -10.234951368225348,
-          -9.449461484497547,
-          -10.968165380837139,
-          10.406581037950449,
-          -10.207645275954386,
-          10.541019374865597,
-          -9.76998302041709,
-          -11.215620204188475,
-          -11.168335957157014,
-          -10.25192246826506,
-          -8.828172765994134,
-          -9.716247343421585,
-          -10.307482953720456,
-          -9.300574403623001,
-          -9.909408990947822,
-          -9.57524050905998,
-          -10.896318778576587,
-          11.119014232080225,
-          9.059022057339122,
-          -7.97278672944603,
-          9.53755002295199,
-          10.96864811971386,
-          -10.666484965740452,
-          9.794930213423664,
-          -8.917678007569355,
-          -9.396761906068004,
-          10.434158753260478,
-          -9.65757572541646,
-          -11.810697852311344,
-          8.97215192982367,
-          9.735852125955905,
-          9.289270241750746,
-          -11.595669763096312,
-          9.712264694690026,
-          -9.467224932411433,
-          -9.972152697017101,
-          -10.66964983882644,
-          -8.886591412420984,
-          9.144008991796746,
-          -8.961307027896215,
-          10.922467770771187,
-          -11.135338523819284,
-          -8.58767724679666,
-          -7.9624631862961,
-          -9.517885074966257,
-          8.70313885683989,
-          10.862894782175713,
-          9.583975997858595,
-          9.466946439036564,
-          10.860562411943675,
-          -8.968977989923381,
-          -12.355577318242137,
-          -9.514057591908653,
-          8.03134026054816,
-          -9.727151610006997,
-          -9.599285196232485,
-          -9.260254766799454,
-          -8.598222798140755,
-          -11.335405331594751,
-          -7.23170816780549,
-          -9.863984967102276,
-          -8.238196492518384,
-          9.587297322014969,
-          9.376663548914083,
-          9.428114126395698,
-          -9.137174283116828,
-          10.377073830522553,
-          10.565762583301858,
-          -12.08966811084405,
-          8.77014841624921,
-          -11.029855263447242,
-          9.83944402929282,
-          -9.45216599220219,
-          10.16628834002494,
-          9.726973736629105,
-          -8.493860878174424,
-          -9.66526574734373,
-          -10.523731411002956,
-          -10.656413495954803,
-          -10.4184822192089,
-          -7.955645308502358,
-          10.556488390086834,
-          -9.750458318161462,
-          7.667515514935887,
-          -9.18384822608894,
-          10.15579825714855,
-          -9.879747686615598,
-          11.503341640478107,
-          -10.901914988199234,
-          11.572456036022656,
-          -8.62654533684902,
-          -7.341158429793044,
-          -9.788149916322826,
-          -9.065891200592445,
-          9.910351311363977,
-          9.988966195644272,
-          -10.299543745116399,
-          -8.335162122822325,
-          -8.710910838642015,
-          9.407056809044157,
-          10.169398850454332,
-          -9.608520880907104,
-          9.970510753669268,
-          -11.209216985370947,
-          -9.775874567016547,
-          8.653911348221389,
-          9.316910698476061,
-          10.317360641061649,
-          -10.164997044519763,
-          -10.429732759747246,
-          -8.985326746928607,
-          11.042182466174477,
-          10.057570816524393,
-          10.031840864750686,
-          -10.856230495222853,
-          -9.96940010057161,
-          10.203828743260123,
-          -10.958657292196735,
-          -10.39363511546286,
-          -10.292200903551649,
-          9.819351010901675,
-          9.623515680457173,
-          -9.027949081378484,
-          10.034234461562953,
-          10.31443013374993,
-          -9.554890555554755,
-          -9.654670369433,
-          8.473326616468631,
-          7.683124257255351,
-          10.12383718527408,
-          -10.75680246337727,
-          9.553524549358407,
-          -9.498347967592684
+          -0.16355614236596594,
+          -0.1309912668259503,
+          -0.10098075532192108,
+          2.7293837383070327,
+          0.37299679597334046,
+          -0.10783240739625044,
+          0.279102274541554,
+          -0.14222002698412872,
+          -0.8613866978154854,
+          -0.4833014395611044,
+          -0.3230547411297171,
+          2.1525276712272694,
+          -0.4190042224638142,
+          -0.1249079411980889,
+          1.1279905285416918,
+          -0.0918454696208375,
+          -0.12747218491107581,
+          -1.215778787249978,
+          0.7605805379230839,
+          -1.0133522324085478,
+          -0.3625290334469524,
+          1.3978144404283481,
+          -0.23949258213464097,
+          -0.19269483059704706,
+          -1.0498150235756776,
+          0.46259746280591707,
+          -0.948447468922899,
+          -0.038867771857239886,
+          -1.5345116257045301,
+          -0.03108077170128154,
+          0.8777908553167151,
+          -0.22197892412654618,
+          -0.2520779949235734,
+          0.012705452069162182,
+          -0.19234873657853857,
+          1.8842368185214267,
+          1.2092454825313255,
+          -0.9900540382543228,
+          2.4894758487701036,
+          1.8147588295873025,
+          0.9619595638125679,
+          2.1936699338707264,
+          -0.39680846137035286,
+          -0.6996982583030502,
+          -0.4771345284231985,
+          -0.35505170588468626,
+          -0.27662908557976174,
+          -0.0006459374385914263,
+          -0.7344802918140458,
+          0.6869655123346148,
+          1.6999517421084303,
+          1.3804141124821547,
+          -0.031256136163543724,
+          1.4043110000428196,
+          0.745699373115246,
+          -0.8059075631524486,
+          0.8744809115182605,
+          0.6865483364358986,
+          1.6102615460024037,
+          -0.605659785790934,
+          -0.4880614322671093,
+          -1.5838293483740813,
+          -0.5137765415093647,
+          -0.6654642485140727,
+          -0.3870570694397726,
+          -0.9335589356179796,
+          -0.680782832771831,
+          -0.18490690984635894,
+          -1.3327011004440106,
+          2.1732186848270887,
+          1.511111161095176,
+          0.8516792277018673,
+          0.6380457706187144,
+          -0.08310249661408653,
+          2.3795007781041324,
+          1.7093341232833361,
+          -2.0168872577612196,
+          0.33037340990895137,
+          -0.7304617421121318,
+          0.8274914561534668,
+          1.586087276779844,
+          -1.23594335652515,
+          0.39776301955835036,
+          1.4858444440004637,
+          -0.2856345777701681,
+          -0.6111628316982103,
+          0.13061774260686043,
+          -1.047056039891876,
+          -0.4746519371694522,
+          -0.20042319830980082,
+          -0.19291333516409548,
+          2.0863796661611262,
+          2.396047132883858,
+          2.6177313956876587,
+          -0.028802011032375452,
+          1.1387692055607872,
+          0.8387383462083194,
+          0.9292767767214637,
+          -0.09451995135023994,
+          0.7993468507674275,
+          0.6760109571801611,
+          1.0049285529296177,
+          -0.08376475783906567,
+          -0.31551188285798726,
+          -0.3735695755589046,
+          -0.6947776975167945,
+          -0.0025300033752000406,
+          2.483835116267856,
+          -0.978987477937779,
+          -0.011437122939291111,
+          2.350583570891682,
+          -0.44270990717910697,
+          1.860537912538497,
+          1.5565189060509308,
+          1.0112320441342866,
+          0.29030690029061823,
+          1.81497379888642,
+          2.561341799941924,
+          2.0868544150289785,
+          -0.425838710575269,
+          -0.3132165917045553,
+          -0.5059960832284998,
+          -1.2310593637832428,
+          2.426323097594328,
+          1.7316217136740755,
+          1.645794017255464,
+          -0.5344496661795046,
+          0.8998277755667369,
+          3.1530777849673015,
+          0.008497564908896638,
+          0.9058307451162628,
+          -0.32499018105815636,
+          1.0773100907275293,
+          1.3578736261377116,
+          1.204320653257778,
+          -0.21020932714240637,
+          1.6134224618092827,
+          1.328921058405552,
+          -0.2670536866957305,
+          -0.5282795227090649,
+          -0.2962274386963961,
+          -0.9328110499486231,
+          -1.4361425842579174,
+          0.6379664804131041,
+          -1.4180369276951827,
+          1.8788356439592282,
+          -0.01679920998224782,
+          -0.4678395210430055,
+          -1.027444629619545,
+          0.7843989248722136,
+          -0.32987172647867213,
+          -0.2084319605142495,
+          -0.5253661997706331,
+          2.5293065017490037,
+          2.1643827785651677,
+          0.44103378491037626,
+          -1.634375154975198,
+          -0.8059988649795184,
+          1.4858061830094873,
+          -0.6408905075364588,
+          0.5674867197655438,
+          0.7831713171205662,
+          0.5198749783037137,
+          -0.4346031590444295,
+          1.6758645622907662,
+          -0.03677635529991896,
+          -0.3131749297120041,
+          1.5614648436935439,
+          -0.20266169055021166,
+          -0.48607775926470365,
+          0.2961878003674596,
+          -0.3465855806763234,
+          0.9780851694825571,
+          0.6234478226417013,
+          -0.923061001719742,
+          -0.30766448131715207,
+          1.7624768252127985,
+          -1.0375592383078729,
+          -0.20327884867863566,
+          1.8670534920759478,
+          1.4974593235242688,
+          -0.09963247245370299,
+          0.6596846328040016,
+          -0.3107103390086996,
+          -0.6941055653896828,
+          0.12937138797073244,
+          1.810442779860884,
+          -0.13168394100509717,
+          1.2669491627495788,
+          -0.048567752683871035,
+          2.5847243944417513,
+          0.6472339032231262,
+          -0.9728721321967511,
+          1.5344315974808609,
+          1.6768255538531465,
+          -1.118754876482074,
+          0.12255743223127169,
+          0.6481488893993465,
+          1.7651533223746771,
+          -0.8988791114754417,
+          0.7211483610031124,
+          2.584599797601295,
+          1.0806870125872667,
+          1.0392645301154062,
+          0.44868637176034143,
+          0.9083602329488897,
+          0.6061201367101043,
+          0.6165776683239255,
+          0.5291861470269436,
+          1.4782180087888155,
+          0.9515607480114061,
+          0.6173960207079341,
+          0.33436402304990065,
+          1.4175015986425137,
+          0.9541706150305049,
+          0.5905645650479117,
+          1.255906183748776,
+          1.2861422760344514,
+          1.8458324835886815,
+          0.8390941902696099,
+          1.5287775095968226,
+          3.0393154811288046,
+          0.5559720280968263,
+          1.6169015072333701,
+          0.22083184459060967,
+          1.743147949105969,
+          2.9658519619899195,
+          0.453170961026262,
+          1.1267034626348655,
+          1.1450634771631485,
+          0.8140007775155034,
+          1.1162776095629088,
+          0.8722793132424819,
+          1.8819805507823935,
+          2.0840160907836074,
+          3.069237780307455,
+          2.2557757043691047,
+          0.5420019914851724,
+          1.5480395274463175,
+          0.758113519946909,
+          0.041084290480497554,
+          0.661827592877849,
+          0.741332975410274,
+          2.121054177872151,
+          2.191516074385664,
+          2.5439388621048105,
+          0.5445460649565463,
+          2.2112036271781417,
+          0.8268638588350324,
+          0.9224709180558394,
+          1.8184212946636777,
+          2.2282954047170778,
+          0.47163653491563895,
+          0.4541424950845293,
+          2.3685550741078685,
+          1.8697228988527481,
+          0.6356019403091433,
+          1.6743510871384482,
+          1.3294070672717644,
+          0.03605014465031109,
+          0.09884937774664215,
+          1.1807885740864255,
+          1.2630243158846932,
+          0.3698461416221379,
+          0.2623052032233055,
+          1.0591570356902373,
+          0.9035508016760818,
+          2.3658883767599272,
+          0.5464650921036691,
+          2.1629271442427243,
+          1.5413054065859417,
+          1.736876811650737,
+          1.0789907702988342,
+          0.7670198984055829,
+          0.2766587278455167,
+          1.6742097654557857,
+          0.933346794160918,
+          1.7261935524671483,
+          0.74812575417294,
+          0.8501246495544013,
+          1.871932093517528,
+          2.264764640565342,
+          1.3627995588662347,
+          1.9827291568426637,
+          2.7385003855991625,
+          1.1558234792704207,
+          1.0770994782932304,
+          1.025737798955438,
+          1.3495203839186016,
+          1.4862628933914876,
+          2.906671959646753,
+          0.5943694724880798,
+          1.7007359656216323,
+          0.9450894358236795,
+          0.9810121477957071,
+          1.5599076707715116,
+          0.025056443617420654,
+          1.2009523835226925,
+          3.4932679351666738,
+          0.8104207394285052,
+          1.9065040930457497,
+          0.8916134253865092,
+          0.3623893393915525,
+          0.6459872535850679,
+          0.7516543228766683,
+          0.787671438365187,
+          1.9291015151549593,
+          0.8922855619265726,
+          1.50024240211172,
+          0.8349248500635069,
+          0.7529846644400662,
+          1.8084047944077288,
+          1.5028457978309362,
+          1.417215352536676,
+          2.9332210507309906,
+          0.8096437555686036,
+          0.8566526090586104,
+          0.6192924438211589,
+          1.6826718927338442,
+          0.12462761742143436,
+          1.0750994265069895,
+          2.60766466800231,
+          2.363687121369319,
+          1.0300105814656308,
+          1.093240069161815,
+          1.2160361620952822,
+          1.4444403694372268,
+          1.3010794245377832,
+          0.24486900199859718,
+          1.4143384620008572,
+          1.8509065391734947,
+          2.4333890908827835,
+          1.6198659367206591,
+          2.104793801533336,
+          0.632026953050469,
+          0.9743880049982433,
+          1.8960028758642047,
+          0.372587860948856,
+          0.23902283615140818,
+          0.7638777929839288,
+          1.1119168677925793,
+          1.6748641834390925,
+          0.4906134758502446,
+          0.7768070936789504,
+          1.1578912524979526,
+          1.5402216922229002,
+          0.6896916285910876,
+          1.6168679052848387,
+          0.9694446519435859,
+          0.5915784433387421,
+          0.16335956835188659,
+          0.7090272842311458,
+          2.303025492243422,
+          2.7592490415111035,
+          2.3697349074183855,
+          0.7304692148558356,
+          3.232490859607535,
+          2.8865438688318648,
+          0.41057851064805184,
+          0.9713052163739712,
+          1.6323017137944373,
+          0.9576518905299305,
+          0.32794396147135385,
+          1.2095917269271215,
+          0.6669899066554095,
+          2.495067533696396,
+          0.9924484426099555,
+          1.765320134206097,
+          2.017402880544812,
+          1.5277498384170578,
+          1.934202413954437,
+          1.511313861022396,
+          2.7645178797958323,
+          0.7262484520385291,
+          0.8875927906026289,
+          2.4425700083098745,
+          1.4198108608672348,
+          2.7329272226693178,
+          1.0779448758273444,
+          0.27338629095141753,
+          1.0436715310316733,
+          0.9288253639887265,
+          1.1140004584853043,
+          0.4746742068952109,
+          1.2194826552171496,
+          0.007956807502987107,
+          2.373142620674524,
+          0.021852718044123587,
+          1.31291014670726,
+          0.6228853159614628,
+          1.1613722468965035,
+          1.0427177113042858,
+          1.542063826530115,
+          1.008682443411643,
+          0.8806009541233368,
+          1.418421871603154,
+          0.5301591055468348,
+          1.8412813050925552,
+          2.8979249025518063,
+          0.4616975724617054,
+          2.85917777717567,
+          1.7994547566871848,
+          0.635272325034246,
+          1.5106141451004254,
+          1.212002543102387,
+          0.8602416654953275,
+          0.15871154642796947,
+          1.816158586536228,
+          1.4035502948981582,
+          1.1572319703695926,
+          2.320916149715332,
+          1.7956788111421713,
+          1.314786987022999,
+          1.8846414554717756,
+          3.2324879907233974,
+          1.409684819835263,
+          2.2179970598864815,
+          2.2099938426314605,
+          2.279548536732087,
+          0.3473571749925436,
+          0.09827550104607952,
+          0.44376084868970544,
+          1.9739485588622827,
+          1.3838539424501408,
+          1.0076711270129106,
+          1.7057206526775515,
+          2.212175295427256,
+          0.38392810471061867,
+          0.9229028400926782,
+          2.321074888831167,
+          1.9501325210896387,
+          1.1186363222677653,
+          2.9624752716755767,
+          0.035721793548883496,
+          2.902820970143953,
+          2.141879145519275,
+          0.18211468160661215,
+          1.0814390909520635,
+          2.628208986283915,
+          0.08420745304657185,
+          1.696043311340531,
+          1.07672091620056,
+          1.289296534594917,
+          0.7613004198514424,
+          2.1598101784456407,
+          1.9645635992491735,
+          2.1549189411828293,
+          1.0056487275608281,
+          1.5602545036205475,
+          1.9654424040385545,
+          0.3999335819142966,
+          1.1965672179451514,
+          1.0977260981252916,
+          0.8076677066833626,
+          1.8362413680286784,
+          0.959936930180601,
+          2.2835948466619094,
+          1.2626763540749748,
+          0.7687165866871977,
+          0.38964522869406304,
+          1.2108776959285998,
+          0.707180599386566,
+          1.2129694780656404,
+          2.071193283360384,
+          0.317733553743596,
+          0.823614518595359,
+          1.7566419155392619,
+          0.7807034377375441,
+          2.5185116008463178,
+          1.5336658157299743,
+          1.2116977478502942,
+          2.816926882643166,
+          1.5155870340618938,
+          1.1106393037208966,
+          1.391236894826829,
+          1.0164091005038978,
+          1.8114516432760293,
+          1.4831055436568494,
+          0.3232848719818686,
+          0.44536537870547055,
+          1.2185716797819317,
+          0.5344091834675742,
+          0.06580541980284438,
+          0.3611826580732951,
+          1.1326191362662734,
+          0.7310439782347422,
+          2.0258405442985548,
+          0.2614650899508253,
+          2.4209868262833245,
+          1.5723520223724146,
+          0.19063489275383771,
+          0.6717687635496912,
+          0.36848248864446165,
+          0.14051415285709679,
+          2.534057177092479,
+          1.7367712001648186,
+          2.3645473625753217,
+          1.2080123861892806,
+          0.3354849194387254,
+          0.8634219243171027,
+          1.1288045311986306,
+          1.777275159968862,
+          1.7040554864307063,
+          1.997378785819,
+          2.1890427356962183,
+          0.9968960386856377,
+          1.5462730887540785,
+          0.14862743469781536,
+          1.0098720528063918,
+          1.4554506363053947,
+          0.3028647412768619,
+          1.481661896067735,
+          1.33909312233393,
+          0.5143985216294581,
+          0.8555141099789697,
+          0.28447475776900866,
+          1.6151019463958964,
+          0.8815044882357544,
+          1.0614051552155739,
+          1.9501666694589124,
+          0.14849074432487752,
+          0.385833271597514,
+          1.3313167643449786,
+          2.328872985120772,
+          2.4842990880012517,
+          1.1819447222818715,
+          3.027886525276368,
+          1.5817976052161689,
+          0.62655361534692,
+          2.543310289905275,
+          1.460712692054901,
+          2.6768412779645905,
+          0.573009228090303,
+          1.1871951814344464,
+          0.6345774634125994,
+          0.2606164298158443,
+          0.4920040433528893,
+          0.788128989565375,
+          1.5303650856541862,
+          0.4935657701554539,
+          0.8461540463699988,
+          2.1140435070975077,
+          3.191564251434926,
+          1.3662844859797145,
+          0.6725803367856107,
+          2.635915651138747,
+          1.650144487750476,
+          0.5555958876184836,
+          0.2124645352353587,
+          1.5159006093981073,
+          1.1766727005388782,
+          1.1127605740151407,
+          1.3284007338070791,
+          1.262900219689354,
+          1.248491736600908,
+          3.431546351103247,
+          2.122697411018428,
+          2.8708017929348335,
+          1.1737780916245883,
+          1.4174591160047998,
+          2.643870580462954,
+          2.434917801443561,
+          2.23015170360764,
+          0.912971484252787,
+          0.8010751901002962,
+          1.3631819121766813,
+          1.5485442608302167,
+          0.3214262231776648,
+          2.000811338649939,
+          2.188297191168442,
+          1.706201119920394,
+          0.11179290244594631,
+          1.0626849526532802,
+          1.9451438556724712,
+          0.7843872166309623,
+          0.678585466271745,
+          1.3520772870827824,
+          0.6368514342197701,
+          0.7360330283340073,
+          0.18625199240324397,
+          1.2028714933735472,
+          1.2403161370340663,
+          1.752776993847872,
+          1.4716786889489475,
+          0.654340578620894,
+          2.220902488170179,
+          2.803405055041857,
+          1.5717957429749887,
+          3.0959826475629275,
+          1.2010427432766677,
+          0.6833539515462288,
+          1.3143636061606627,
+          1.787267277015562,
+          1.128355217928523,
+          2.0624496992656107,
+          0.35140427652356,
+          3.4768392951524363,
+          1.8964362725223025,
+          1.2506011292155872,
+          0.12678498687259077,
+          1.2484003952339457,
+          1.1359906242214628,
+          1.0045940164438736,
+          0.06809415509938987,
+          1.023185604806253,
+          1.0182234447672291,
+          1.4888746673796807,
+          2.095922103652624,
+          0.32270302664507844,
+          1.8169156574939032,
+          0.24729456163811336,
+          1.2210759139899334,
+          1.8214876005068574,
+          1.7587781076246782,
+          0.3549971355301832,
+          2.0613928916531097,
+          2.6898461194789998,
+          1.3522447727118614,
+          1.0403009896479698,
+          1.2959473939116555,
+          2.1023379555370685,
+          1.8140660607405683,
+          0.25437361366624467,
+          2.7898945546494773,
+          2.6870342733121895,
+          0.26788979514351097,
+          1.794915679076541,
+          2.089485769890337,
+          0.14784825941115076,
+          0.880347441390151,
+          0.6981208712785347,
+          0.8243852869278699,
+          2.036928176631312,
+          2.7606769029182687,
+          0.20739421054465312,
+          2.8915135459815966,
+          0.8272897359242735,
+          0.23691599843746847,
+          0.11773891193323538,
+          1.6210799890278653,
+          0.35817807048355554,
+          3.0357545478382284,
+          2.060151205549408,
+          0.6550261653418945,
+          1.2471755335892365,
+          0.9245697055304234,
+          0.6805527599418302,
+          0.6776423294010487,
+          1.2610309580124817,
+          0.643681297153307,
+          0.7184117417995997,
+          0.4433114920570689,
+          0.9869073120039744,
+          1.8068632137925598,
+          1.881955020752035,
+          0.24327654299371881,
+          0.75416632947047,
+          2.4179795850306305,
+          3.255796656475308,
+          1.8660749271793038,
+          0.4962945680356009,
+          0.5488337784696657,
+          1.2219475048985706,
+          0.5254222572957217,
+          2.916406998523898,
+          0.860574394016793
          ],
          "z": [
-          11.597964531397883,
-          10.483718202410198,
-          7.971297800839785,
-          -9.970184058747712,
-          -11.242168455362295,
-          -10.81913485360004,
-          -9.815998703570731,
-          -9.306646642008277,
-          -9.657022087219387,
-          9.003031830516255,
-          -10.58833674762046,
-          8.892497145111564,
-          9.002205251173843,
-          -9.99715156235911,
-          -9.807932170570952,
-          10.388696618315253,
-          8.667292509566423,
-          -9.30480916345569,
-          -9.786376523080687,
-          9.152480889759147,
-          -10.294576238093669,
-          -9.690938508023047,
-          -10.110857998939832,
-          -10.719840683668997,
-          -9.307318515496798,
-          9.374768125927924,
-          -10.475627256334073,
-          -10.170037038494073,
-          10.777239436050754,
-          -8.12854608049755,
-          -9.959171660244222,
-          -10.704569665818916,
-          -10.16765512594248,
-          -10.040439037435988,
-          -10.148885353885666,
-          -10.17435650153961,
-          -9.992033223472728,
-          -9.760232627777581,
-          -9.74338698292693,
-          -9.668528301135321,
-          -10.856080608422568,
-          -7.894288044395314,
-          10.572345905266035,
-          -9.90726148266395,
-          10.21480759709525,
-          -10.78344093199028,
-          9.539125651255583,
-          -9.145171998126715,
-          -10.299117997938108,
-          -10.592283036016747,
-          -9.43443808865634,
-          9.448323548566488,
-          -9.268318039897729,
-          -10.01222532506424,
-          -10.693464026352872,
-          8.608558777829353,
-          9.396898036710798,
-          -9.189139160808754,
-          -10.548717587673266,
-          -9.90699488588983,
-          -8.654820295794964,
-          -9.606650115896995,
-          -9.772935736133018,
-          9.837871160938763,
-          -8.766414850866411,
-          -9.293441154563828,
-          -9.410824331627085,
-          -11.274381745524492,
-          -10.555931963838153,
-          -10.550057331365206,
-          -10.49769581774319,
-          -10.496825905624263,
-          10.809764012353412,
-          -9.884262925936754,
-          10.99212959666179,
-          -10.82604037974495,
-          -8.939086336360601,
-          -10.724698800232055,
-          -9.898727745390985,
-          -10.90989992998136,
-          -9.77544056311933,
-          -10.167434049534064,
-          -10.285719746188986,
-          10.578116309743882,
-          -10.995829160574047,
-          10.351483562265138,
-          -11.178471309557008,
-          -11.330374777893852,
-          -10.592327091509203,
-          -9.785193399805776,
-          -9.223660524560515,
-          -8.34417695759266,
-          -10.969263788744247,
-          -8.924568748431296,
-          -10.080641289019034,
-          10.725936185278378,
-          10.364099966145982,
-          -9.79131535722742,
-          -10.627013934777718,
-          -11.122497551401322,
-          10.330517998514274,
-          9.503354581606404,
-          -11.005380420453573,
-          -11.034826144300458,
-          -8.795797675431366,
-          -10.897626834491014,
-          -10.657879358634762,
-          -10.357608712982051,
-          -9.609265635300828,
-          -10.843188292751076,
-          -9.908614127578787,
-          -10.18722421407256,
-          -9.874273555915233,
-          -8.391311811004172,
-          -10.49647208806475,
-          -9.991407618960892,
-          -8.890192010664345,
-          -8.924498005949218,
-          -9.103843006365233,
-          -10.201627807733244,
-          -10.572955692792764,
-          10.10068075283852,
-          -9.507267836550517,
-          -9.882681690579338,
-          -9.975099277395824,
-          -9.840173395978537,
-          -11.139110559956565,
-          -10.420689497840556,
-          -9.678746824425174,
-          -9.447093433036676,
-          -9.501166510277894,
-          -10.104919145354875,
-          -8.971546671841859,
-          -9.067449469287578,
-          -11.237104187118367,
-          -10.256894970604733,
-          -7.587257210116507,
-          -9.375074232966357,
-          -8.424317328123813,
-          -9.544049888614733,
-          -9.534995152163317,
-          -10.191786540014892,
-          -11.068573906467368,
-          -10.237798368247221,
-          -10.511447620817997,
-          -11.944464222254826,
-          -11.28184602305234,
-          -8.683396921930171,
-          11.050009979969817,
-          -10.27546503765574,
-          -8.619405203020431,
-          -9.376932370180857,
-          -9.921028103468725,
-          -10.845752565844165,
-          -8.95040585299813,
-          -9.122247139941157,
-          -10.538003386374882,
-          -10.09805334653297,
-          -9.093260931236376,
-          -9.26422086223793,
-          11.505448021672612,
-          -9.854239262090564,
-          -9.675601704072216,
-          -10.460424151074092,
-          10.688818395292374,
-          -9.043407964593674,
-          -10.112073659164436,
-          -10.259939913249152,
-          -10.165341724856,
-          -9.54027606696959,
-          -10.756079299321467,
-          9.233112317159016,
-          -11.296543079262788,
-          -9.610361338352504,
-          -10.569734323244399,
-          -10.38436575186363,
-          -10.82438656476276,
-          -9.013626505638161,
-          10.82139835798328,
-          -10.195794751640905,
-          -9.527271862691972,
-          8.487230208127748,
-          -10.62555514642371,
-          -9.707012035931106,
-          -9.9111012332732,
-          10.055301785880621,
-          -11.17215297257197,
-          -9.340719202937791,
-          -9.57018445014093,
-          -10.376466669974253,
-          8.057165165984518,
-          8.200660110831576,
-          9.62139715234235,
-          -10.50560521345257,
-          -10.604877772268074,
-          -10.307489496311533,
-          -9.81121006820991,
-          -10.346059277742947,
-          -10.107984032105831,
-          -9.898332297671875,
-          -9.723619137990852,
-          -8.545324450778976,
-          -10.501043087173896,
-          -10.53156667279463,
-          -9.868041036569815,
-          10.590863819810503,
-          -10.144687098087644,
-          8.571961555413182,
-          -11.12226658459403,
-          -8.892192408970981,
-          -10.156078696857868,
-          -10.04799901830765,
-          -9.550095613294246,
-          -9.723655235046804,
-          10.025910126444643,
-          -11.153521610393037,
-          -8.37173917321654,
-          -9.684910210842961,
-          -9.674196118729276,
-          -9.266149988340283,
-          10.128385341350707,
-          -9.945937648974438,
-          -9.825111645118316,
-          -10.386504297235634,
-          -10.375338946047535,
-          -10.228657136694153,
-          -8.765936599391452,
-          -10.529594861428253,
-          -9.92281528256821,
-          -9.401926486442425,
-          -9.094357188153007,
-          10.860332002835639,
-          -10.135118009890267,
-          -9.914047577451948,
-          -10.684444972333537,
-          -11.072522693049494,
-          9.133848844249933,
-          -9.032198467670616,
-          -10.972703543594317,
-          -9.51074986045908,
-          10.10312510458631,
-          9.381168381056828,
-          -9.94175660378579,
-          -10.26397406889653,
-          -8.537085904764085,
-          -10.995643669254543,
-          -11.495516504207377,
-          10.469548510473523,
-          -10.37534411907299,
-          -10.828541549989389,
-          -10.316010987859777,
-          -9.79165772486197,
-          -10.820116103345176,
-          -8.946562970180626,
-          9.864762308989476,
-          -10.68308086949758,
-          -10.104923633667319,
-          -10.400444756795826,
-          8.656670871857884,
-          -9.693659853087228,
-          -10.283232361567563,
-          -10.877558287383907,
-          -8.637042615903367,
-          -10.420631635842964,
-          7.857550071637702,
-          -9.912313564283872,
-          -9.409834832741454,
-          -10.631633553299869,
-          8.544050602440537,
-          -9.711140968595084,
-          -10.249465821434173,
-          -9.321451652891946,
-          -9.53867013357004,
-          -11.231920072558971,
-          -10.729256212362408,
-          -10.87638600884593,
-          -10.187827496492783,
-          -10.743904216808074,
-          9.462390090144494,
-          -10.305422279360291,
-          -10.80717066470709,
-          -10.218152978868288,
-          -9.545003051039393,
-          10.719556491365909,
-          -10.739317451437891,
-          -9.49251744950856,
-          -8.883616500669492,
-          -11.157443702597948,
-          -11.830130387346731,
-          8.23316820165026,
-          8.920651311025345,
-          -9.02491322064423,
-          -9.74321609521554,
-          10.361556082945713,
-          -10.748615117078915,
-          -9.419605929072825,
-          -11.559934364358664,
-          -10.612891530827767,
-          9.805948586045407,
-          -9.584724792361031,
-          -9.818665817115964,
-          10.193564910857036,
-          -10.265310190461296,
-          10.50466440372663,
-          -8.666524975547363,
-          -9.534427665442816,
-          -10.20417656899582,
-          -9.761739090029478,
-          -9.687343153636064,
-          -8.689797365018087,
-          -10.619525819158945,
-          -9.334553349874344,
-          -8.68817422535411,
-          10.412737547255615,
-          -10.530459369203852,
-          7.821004202353871,
-          -10.052441306913197,
-          -10.329859919140953,
-          8.63956174102412,
-          -10.725759583263049,
-          -10.037934471180403,
-          9.657033908796887,
-          -10.572220909577014,
-          10.67463892689484,
-          -10.02161001912736,
-          -8.86178188401167,
-          -10.751071758640604,
-          -11.155194360417717,
-          -10.060498151556558,
-          9.700301589660382,
-          -9.790340376257808,
-          -9.726564868541763,
-          -10.781987377721057,
-          -9.115004579747186,
-          -9.691104937784589,
-          -10.305106963849749,
-          10.165179215463782,
-          -9.900648106455916,
-          -9.529590401552607,
-          -10.67242070226449,
-          -9.481957790644923,
-          -10.115039241993681,
-          -9.360774567693174,
-          -9.293881243396573,
-          -11.365417741151157,
-          -8.78200435363924,
-          -9.750950993758753,
-          -10.387968195393036,
-          -10.240227110887561,
-          -9.78545900970153,
-          -9.607982657168225,
-          -8.33724124331637,
-          -10.049331448033252,
-          -8.331532529674817,
-          -10.154292925934943,
-          -9.302285986881884,
-          -10.890968584236843,
-          -9.588914978376343,
-          -7.361809314449458,
-          -9.767485334157785,
-          8.547460050005911,
-          -9.728364169789057,
-          -11.092742374300737,
-          -8.914562466379218,
-          -10.964454334073357,
-          12.894687442946996,
-          -10.385642363986697,
-          -9.650349560351446,
-          -10.51106164722087,
-          -9.22331960587028,
-          -10.957794470362021,
-          10.456920272012955,
-          -10.903751930040674,
-          10.652475815506412,
-          -9.322466487071381,
-          -9.856544117045425,
-          -10.462693811003104,
-          -10.81152334733651,
-          -8.932436335895915,
-          -10.098104900392523,
-          9.836361087624722,
-          -7.749157186481523,
-          8.687121217654203,
-          -9.524354249004132,
-          -8.621293067691186,
-          8.346935282539082,
-          -10.915836996895123,
-          -9.548422097823698,
-          -9.885108400992877,
-          -9.328852263755898,
-          -11.071868856086406,
-          10.352176140045353,
-          -9.843541830086078,
-          -11.733074717210755,
-          -9.249186189953871,
-          -9.246823781484704,
-          9.721346367319976,
-          -10.417537835441795,
-          9.012039936369879,
-          10.151825178718717,
-          10.311734571519867,
-          9.578688600045577,
-          -10.435207361685157,
-          -11.35638327661063,
-          10.011304766947003,
-          -9.95461677672848,
-          8.72597588149478,
-          -9.983708388109438,
-          -11.237182440380806,
-          -10.02911933125128,
-          -8.81798635848853,
-          -9.708263111290334,
-          11.621376627841455,
-          -8.701573596466142,
-          10.839430951555052,
-          9.939973107068814,
-          -9.392084463264965,
-          -10.662980442300269,
-          -10.57540265732133,
-          -9.368366374351748,
-          -11.984847942563785,
-          -8.96785162343332,
-          -9.472233874538714,
-          9.159142731523163,
-          -8.86716775071007,
-          -10.218657770228761,
-          -10.339859999658628,
-          9.457580313539363,
-          10.307142897901437,
-          -10.867763135493044,
-          -9.781076309206437,
-          7.414029921938599,
-          -9.746076351960502,
-          -9.43832059226568,
-          -10.672296434167704,
-          -10.267049115416345,
-          -9.846022298178486,
-          10.463140200210496,
-          11.303478214460839,
-          9.71282075482781,
-          -9.78400754203087,
-          -10.401629276842502,
-          -10.475353671820114,
-          -10.30356205897617,
-          -11.359931839862433,
-          -10.424421071055477,
-          -10.453839489146556,
-          -10.679300346247809,
-          11.699612511228636,
-          -10.469911438017071,
-          -10.032177237851247,
-          -9.824861868493464,
-          -10.08479796962796,
-          -9.96291655774097,
-          -9.28313031544891,
-          -9.635225676605003,
-          -9.948405641817196,
-          -9.960831696190809,
-          10.233313029438557,
-          -10.544288569798946,
-          10.090787729321749,
-          -10.00706369499739,
-          -10.398378333553675,
-          -10.85794704544454,
-          -8.499181520394044,
-          9.449742620628209,
-          -9.751034797024293,
-          -10.15513447056194,
-          -9.459643392185464,
-          10.798844814458368,
-          8.537701913993367,
-          -10.272566268156266,
-          -10.37844235249693,
-          8.545155790040043,
-          -8.396294602997777,
-          11.156849064009716,
-          -9.69100529263949,
-          -10.162092914764086,
-          10.314266403640854,
-          10.634352792430619,
-          -8.4372987789803,
-          -9.006244185109683,
-          9.561176528778434,
-          -9.412652864810465,
-          11.059581070080883,
-          -9.911363838155605,
-          -11.05066221044809,
-          -10.305319601751652,
-          -9.975340250025146,
-          -9.389600390441318,
-          -9.25322725374637,
-          -11.061957478704276,
-          -11.167428136798973,
-          -11.080883602056428,
-          -8.8637152363236,
-          -10.535964599994234,
-          -10.865634925668882,
-          -10.638153884582346,
-          -9.463702229550606,
-          -10.86674771550826,
-          -9.755684457086788,
-          -8.797965613648419,
-          -9.76762814299425,
-          -8.21781320092912,
-          8.768496081004955,
-          -10.214523911999796,
-          -9.622049918604752,
-          -10.466529792740797,
-          11.600235924453953,
-          8.324102960012,
-          -9.905413043556125,
-          -10.257787747696577,
-          11.64222794640578,
-          -11.359530694621093,
-          -10.169738845327332,
-          -10.06325796630384,
-          -11.044483525874504,
-          12.469393207944165,
-          -9.51206774071412,
-          6.8885533976418305,
-          -10.201197816231383,
-          -8.494952461283601,
-          -10.061194213407282,
-          11.09076056359527,
-          9.700679707348266,
-          -8.66737076769663,
-          -9.343514846263702,
-          -10.190793759892339,
-          -10.433445371386787,
-          -9.481803394669916,
-          -10.512226545729474,
-          -11.034685201190396,
-          10.30087250487569,
-          -10.066366846263286,
-          -9.753033864089463,
-          -10.919185135327787,
-          -9.327139972775404,
-          -10.170763990376182,
-          -11.341143876939284,
-          -9.858920579676884,
-          -10.839843457530813,
-          -10.89241642182662,
-          -10.321804840002685,
-          -9.062875993378727,
-          -9.77918638514634,
-          -10.283059689381602,
-          -9.626467061212773,
-          -9.9243304536467,
-          -9.618334581149156,
-          -10.682456916640673,
-          -9.022087910301876,
-          -9.938757865401772,
-          -8.393029940823164,
-          -10.858690703365097,
-          -9.931533580798783,
-          -10.526407594197439,
-          9.385328930570772,
-          -8.96651815855104,
-          -9.573609682002752,
-          10.61681350605328,
-          -9.775708960429423,
-          -11.44564933983155,
-          8.851412174499433,
-          -10.169024846100154,
-          -10.322318009249717,
-          -11.407744161786539,
-          9.42024242996185,
-          -9.447121583617957,
-          -10.038809653726974,
-          -10.722168074506808,
-          -9.203277495368114,
-          7.427854600207198,
-          -9.187040881014578,
-          -8.386587605330142,
-          -10.870929295590125,
-          -9.042866819169776,
-          -8.529892167794397,
-          -9.665912979780055,
-          9.007507099797865,
-          -8.779618169726865,
-          8.999222863512097,
-          9.019839114704443,
-          10.32869279607932,
-          -9.327067481099789,
-          -11.928486509414016,
-          -9.634990465014905,
-          -10.690523694351311,
-          -9.740126616665494,
-          -9.744111906346035,
-          -9.284610111544016,
-          -8.967280083626347,
-          -11.051337679894912,
-          -7.875994250589656,
-          -9.74689665774314,
-          -8.752246501469171,
-          9.515793434955942,
-          8.655459551704235,
-          -10.487708572228101,
-          -9.481319048948063,
-          -8.607489807037519,
-          -9.237188394406433,
-          -11.918661242679761,
-          -10.7255034161752,
-          -10.797855541427356,
-          9.447198563173467,
-          -9.523258031605874,
-          -10.027663287498024,
-          -10.912930025273088,
-          -8.764599155102319,
-          -9.735241657192349,
-          -10.535069686992049,
-          -10.447719365026147,
-          -10.26762940757838,
-          -8.31052167579778,
-          -10.468503489294974,
-          -9.783004387544295,
-          6.835511696842363,
-          -9.31715367211141,
-          11.698862297031209,
-          -9.932510718225341,
-          -6.913561360428195,
-          -10.678787181192297,
-          -8.38779656929238,
-          -8.997388929217834,
-          -7.813079036660518,
-          -9.917792991960573,
-          -9.209598579661895,
-          -10.962371902103092,
-          -9.318059986331459,
-          -10.236460539210817,
-          -8.457145589752098,
-          -8.95725160524874,
-          10.521616360336422,
-          9.736650100617318,
-          -9.702151275529573,
-          -9.7123028813744,
-          -10.963694006423186,
-          -9.628183913831108,
-          -11.703644382464692,
-          -9.206583986325658,
-          -9.286934882221999,
-          -10.200980174358133,
-          -10.291252054358425,
-          -9.222924131959624,
-          -10.405399497430013,
-          -10.301130261497425,
-          10.497102107718376,
-          -10.721771771568315,
-          -10.059466497971476,
-          8.613291817862676,
-          -10.871243911418478,
-          -10.316665479292098,
-          -10.142742973002049,
-          -10.711897871037191,
-          9.17786960681422,
-          -9.231436700389127,
-          10.483508599744578,
-          -9.557568304326123,
-          -9.561893100050579,
-          -9.9357696256996,
-          -9.460585132889815,
-          -10.915873698308209,
-          11.632298104779949,
-          -10.538306334758108,
-          9.094942241158941,
-          -9.49638937006343
+          2.7319753567135248,
+          3.136106214349664,
+          1.3287305214506473,
+          -3.123367523533325,
+          -4.914132558449769,
+          -3.8074394521648505,
+          1.984779014262112,
+          -2.4409863854074514,
+          -1.527236828067441,
+          -3.242482596676783,
+          -3.6292137020410697,
+          -3.277948205373209,
+          -4.795584133303218,
+          0.9827026986457659,
+          -4.273529444165334,
+          -4.986557647786495,
+          -4.1008389030001515,
+          2.2044927563750205,
+          0.14015689767393624,
+          1.079561467762285,
+          3.9327410583045,
+          3.6885676150388997,
+          -1.0571125673543165,
+          -4.5113523394073125,
+          3.407951592330618,
+          -0.2263935782184756,
+          2.788569910672953,
+          2.5969367441956663,
+          -4.890670868024678,
+          -1.822701826690376,
+          2.1189235950540795,
+          -2.9631624043334828,
+          -2.1346807782064388,
+          1.3891965955681451,
+          3.9608930206829713,
+          0.8897312967226787,
+          -4.630758055863702,
+          1.1466994564591673,
+          -1.636325887753249,
+          -1.0920727589289152,
+          -1.3838590000188553,
+          3.674364308761052,
+          0.6492906206977276,
+          -0.543365300063857,
+          -0.046637314302739874,
+          -3.9711771358580643,
+          0.6367906155513641,
+          -0.4051630206934931,
+          2.148358686288489,
+          -3.8313792533705455,
+          -2.652227437377259,
+          -2.844968333156145,
+          3.1352061767288886,
+          3.792356444114053,
+          -2.343116767805054,
+          -3.2605490291582813,
+          -1.4767296440663094,
+          1.9102091691088496,
+          -3.8571845151026256,
+          -0.42315632275052106,
+          -2.7606594128961985,
+          -4.693855681331515,
+          2.417299039060305,
+          -4.46408121683051,
+          1.2857465963329862,
+          0.7759454313898315,
+          -0.5159832352153071,
+          0.44986705877034705,
+          3.1271901370871555,
+          3.9504899267774265,
+          -4.257688295702896,
+          4.296795614360788,
+          -4.613275287117806,
+          -3.584939470553179,
+          3.4110755698324047,
+          4.04044571978753,
+          -2.820873826217368,
+          -4.703055081218032,
+          -2.456720882068971,
+          3.8555495792472874,
+          -3.410328319518425,
+          2.2517772644802836,
+          -4.9183303278578485,
+          -4.949844715984162,
+          -3.2938923866244014,
+          1.6005091838282723,
+          -3.2347879697609008,
+          -1.8380769457712658,
+          1.7073389065294755,
+          2.002316170832123,
+          -2.8402537265083545,
+          -3.4660026487408597,
+          2.720724749044491,
+          -0.17986713072859128,
+          -1.9780909893097283,
+          -0.5715653288795055,
+          1.6853664232427432,
+          3.8353243001110178,
+          -1.174677436797868,
+          -2.4271500278842923,
+          2.250139313852027,
+          3.761046484207438,
+          -1.308223277310908,
+          2.2230722155570257,
+          -0.2753688589429828,
+          -0.026437137483439344,
+          0.44994808379087203,
+          2.2328438736733167,
+          0.8870969248754266,
+          -4.7171537621386035,
+          -2.219936504408149,
+          -3.6120172592527604,
+          -0.40256586692233665,
+          -3.7594818537804677,
+          -3.589685796453654,
+          -2.005989905242516,
+          -0.9657359223528692,
+          0.5146537845307355,
+          -2.9501872329203853,
+          -3.6516156453189974,
+          -0.6032243432239035,
+          2.6124698489956613,
+          3.723383707408817,
+          2.1911887725873003,
+          1.3490918486630035,
+          4.173849189310656,
+          -3.7899628000397394,
+          4.377449146259004,
+          0.6362883931479377,
+          -4.776414646106403,
+          4.197479934743227,
+          0.3712600100985206,
+          1.7109068868081847,
+          3.1227843671051287,
+          -0.8441691257159869,
+          2.111093587736817,
+          0.21805375218412681,
+          -4.095879002624367,
+          -0.8173737950301625,
+          2.543026766429546,
+          2.919430622916331,
+          4.258471598426062,
+          -3.1922455080204104,
+          0.8789512120230807,
+          -1.933499977170836,
+          2.1416645019555673,
+          1.6588148269002403,
+          -4.192586681957242,
+          4.094498551724146,
+          -1.6902192693517355,
+          -3.571054589184975,
+          -4.543236314993068,
+          2.1384992636508295,
+          -4.252222276726805,
+          1.2267580045167295,
+          -1.3105323425890676,
+          -0.06251505193409113,
+          3.5872916633193865,
+          1.5244870967809607,
+          0.27151111157854135,
+          -1.8383938827608897,
+          -0.14206749768810578,
+          -1.59488853079477,
+          -2.918449580320166,
+          0.9031196256263181,
+          -4.68028284192894,
+          -4.91544595385726,
+          -1.388452121547771,
+          -2.777929481177111,
+          -4.6986051051338125,
+          1.141726307224129,
+          -3.76030532963354,
+          -4.406362115358921,
+          -3.1061278503246115,
+          1.3926587735793667,
+          0.24449765762780995,
+          -1.414860763321264,
+          -1.5650407687704884,
+          -3.682620778339573,
+          -2.351512664389412,
+          3.067578344199407,
+          -4.009948251923275,
+          -1.9502641569682848,
+          -2.5926888160885957,
+          -1.036583424921389,
+          -4.756679875015461,
+          3.126506223712485,
+          -4.334113387676606,
+          -2.056232450478517,
+          0.7130859938546017,
+          3.978815804045179,
+          1.249263025193633,
+          1.9926394893102186,
+          3.5980820375103226,
+          -3.0211721187130087,
+          2.70129951325377,
+          2.5454837033857967,
+          2.914105611809883,
+          -4.623970877315088,
+          0.09774672559184694,
+          -1.2347173170608974,
+          2.021815957420136,
+          2.4304669029614523,
+          1.2612070377274884,
+          0.3308271069587212,
+          -3.6492607690446315,
+          -2.780416819804561,
+          -1.5556262536852672,
+          -0.7384329017263918,
+          -4.93204728892272,
+          -1.7189759351472098,
+          -0.3716605358777292,
+          -1.9827990624567073,
+          4.070144419182719,
+          -4.386457024192653,
+          -2.7311953575665457,
+          -2.7535630196064624,
+          2.0522701925134594,
+          -1.7251501600073418,
+          -0.6279961286270792,
+          3.4777940963873943,
+          -0.5034621573003388,
+          2.2466166034659603,
+          -4.739820154760262,
+          1.144280985806362,
+          -3.846390171119717,
+          2.0493009825749926,
+          -0.5558663197392724,
+          3.664255187458985,
+          3.184099779150263,
+          -0.7445107033696337,
+          2.3506039619881305,
+          3.4900863445194696,
+          -2.217478145836815,
+          1.0364149478877591,
+          -2.175560844115695,
+          -4.10119036025885,
+          -0.8700659703369249,
+          -4.333504320543248,
+          2.859274514853869,
+          3.129438784709156,
+          -3.7670848197021334,
+          -3.541062154285534,
+          3.681776492346903,
+          -1.364042989496948,
+          1.6324851818058823,
+          -1.787813939013168,
+          -1.5563052290519401,
+          0.37710871012787095,
+          3.117714660253905,
+          3.395588867588109,
+          2.5288864600642444,
+          -4.282890080713772,
+          -1.2432833813296438,
+          -3.0969836825617625,
+          -4.2422495536928455,
+          -2.7219599240665007,
+          0.10780823006807694,
+          2.3403613194517936,
+          0.5267491211921822,
+          4.204470951487292,
+          -1.780571415779205,
+          -0.3142224662247024,
+          2.9969993775137036,
+          -0.5621152012884245,
+          0.17863487480233076,
+          -3.9158331779664173,
+          -2.6223970223645297,
+          4.266927008033462,
+          4.00437139881307,
+          3.9374903056112265,
+          -3.9350233590172667,
+          -2.9654189423505875,
+          -2.9769934060034045,
+          2.9760193059071964,
+          1.9794567350563677,
+          1.901081739739591,
+          1.9416109890627453,
+          0.9923599038935862,
+          -3.632301750935716,
+          -4.023544744023418,
+          -2.233348827785373,
+          4.315351492673508,
+          2.216932253605239,
+          3.3002340858569914,
+          -4.662375398490489,
+          -3.1890371381721154,
+          -1.8982955071954217,
+          1.0179852771385125,
+          -1.1074678880948183,
+          -1.9826645605633422,
+          2.675912437470916,
+          -1.7750383183260978,
+          -2.0210708274639684,
+          -3.0684938609270027,
+          -4.1638808046101525,
+          -3.477884860173808,
+          3.0737516180837927,
+          -1.2853015859842185,
+          4.252695170356287,
+          -4.646369317807081,
+          0.1784339434718163,
+          1.7468996591947494,
+          3.74493071914669,
+          0.22266284312797957,
+          -2.800338474409854,
+          4.255005220091939,
+          -0.6847699919527432,
+          -1.882778148135639,
+          -3.2407727953593306,
+          -2.0682180004856834,
+          0.07984954148980172,
+          0.9024967850995163,
+          -4.678636074000549,
+          3.02075422049355,
+          -1.7141755287977625,
+          3.711649120811919,
+          -2.089361041607701,
+          1.9815216624401444,
+          -1.6134193879435146,
+          0.5607296436278677,
+          -3.7206474000736502,
+          -4.506098402240289,
+          -2.1500075137495416,
+          3.6776792945182732,
+          -0.5950698223917046,
+          -4.445018634665648,
+          -3.5186902130626487,
+          -0.7046840874668998,
+          -0.036206032258922605,
+          -3.0570839535900616,
+          -0.17252114705151467,
+          2.1322785586011843,
+          1.493758170273372,
+          -2.842804143691852,
+          -0.7283944668364848,
+          2.1499794264294314,
+          -2.055604963780946,
+          -0.8217639692717791,
+          -2.9682433471988015,
+          -3.192480516441554,
+          4.266614337078477,
+          -3.155527896043908,
+          4.2672724964687445,
+          -4.258499400003153,
+          -2.120328835373908,
+          2.8532427529584625,
+          -2.5946579099268914,
+          -3.9846606606230877,
+          -3.0200307511734787,
+          1.7549087876060865,
+          1.451136229138477,
+          1.1248428731947193,
+          -4.091912118521828,
+          -0.1750165201759053,
+          2.9050256860408714,
+          3.0676217881854546,
+          1.2628319608573895,
+          3.8735950063367346,
+          3.7257124622694855,
+          -3.135930518389874,
+          3.623317303654578,
+          -1.0286355399287794,
+          -1.734648984480275,
+          0.8855169441882262,
+          1.5135421783779224,
+          0.1904660634208284,
+          0.5080492292099414,
+          0.8024688921012082,
+          -2.886481687951319,
+          -3.6464206503399024,
+          -4.002542831345451,
+          -1.7886764390668777,
+          3.380801667031231,
+          3.3011756320295467,
+          -5.0446054315044,
+          -4.091466441051361,
+          2.1042708542736985,
+          -0.12123425846560298,
+          -2.021283055666073,
+          0.8494071719907019,
+          4.2021893110869994,
+          1.048966639360633,
+          -0.4444437340795746,
+          -2.05844302572501,
+          -4.593055529259787,
+          -4.639595366135558,
+          -4.714174695929228,
+          3.6363674233517296,
+          2.068240086097476,
+          -0.7354126239366963,
+          1.3355001369224073,
+          2.7341203282918523,
+          -4.7778745470788,
+          0.2472997824604466,
+          1.5453877132656917,
+          1.3641229059788769,
+          -0.4000437650652975,
+          -1.1552270816871215,
+          0.18722893235927263,
+          -0.13503456304136208,
+          -4.0224236612530815,
+          0.3235533868970357,
+          1.7438505674264437,
+          -4.494397779624493,
+          2.4638868321800977,
+          -4.1579755036242645,
+          1.103832036637871,
+          2.0320625784613764,
+          4.280493346559713,
+          4.349984524009618,
+          -1.1036532725315817,
+          2.914687321821396,
+          -3.89396894403607,
+          -3.5475647606281284,
+          -2.966240982561554,
+          1.192081732234045,
+          1.263447330636569,
+          -2.963623078375649,
+          2.5719650953847326,
+          4.184523833293809,
+          2.059689503217207,
+          -4.837303078009451,
+          -3.2206151505865197,
+          -1.6606046984388345,
+          -1.7717219340320014,
+          3.361567912802326,
+          -0.6546765423401739,
+          -2.5822273237421163,
+          -3.0827883247799286,
+          -3.890121640804616,
+          1.4229299164453817,
+          4.2241950403979205,
+          -4.464293314413629,
+          4.376858899939289,
+          3.9028852457367096,
+          -2.6637991154756824,
+          -1.6592975506976653,
+          -2.449505347205855,
+          0.29872318582170987,
+          1.2875907135743176,
+          0.6755819125764715,
+          -4.04092195657868,
+          -1.4108541783767627,
+          1.2296023595314711,
+          -1.9101275029357145,
+          1.090587668977986,
+          -2.7332050926746523,
+          3.2960290866585256,
+          -3.0499580658070347,
+          2.985103606353051,
+          -2.29384646802277,
+          4.026275325147648,
+          -4.33017814203191,
+          -1.309299556108118,
+          -3.61013993640591,
+          4.204717672945844,
+          3.3325342081875045,
+          -2.438736965527691,
+          -2.298549983246561,
+          -3.1697613833688925,
+          -1.1986943621968815,
+          0.5232264012234236,
+          -3.2270028851508537,
+          3.1156539281089524,
+          2.399891581120965,
+          -4.703412271827909,
+          1.0382401858080303,
+          -1.093083336206802,
+          -4.557890213360086,
+          -1.2036246026134156,
+          3.2327066930444586,
+          2.1981047065155224,
+          -2.958229069537919,
+          -2.293880658083687,
+          -3.040850425659476,
+          3.0133536782706782,
+          -3.1755579006720076,
+          -1.4066920085876538,
+          1.8134160122266891,
+          -3.592668188178222,
+          3.218466362830049,
+          -2.1726473498147065,
+          -0.5625602547651036,
+          -1.4514638868966472,
+          -4.614210807856442,
+          -1.594722669476894,
+          4.285179351261317,
+          3.819827903832704,
+          3.4471005002751296,
+          -3.5406843758331217,
+          -3.3227169279636692,
+          -4.206774083753017,
+          -0.822564242219542,
+          1.01356022366505,
+          -4.3433614590214304,
+          0.6175854461257426,
+          -2.699421624229877,
+          -2.9626422625871722,
+          -4.380708471705969,
+          -2.2889343622260583,
+          2.041535543674673,
+          -1.6028663117089033,
+          0.7248714654395307,
+          -3.426275909090304,
+          1.3394341686431552,
+          3.732792936549788,
+          -2.566872843765956,
+          -1.8865116537036122,
+          -1.6656566904405379,
+          2.537922199571957,
+          0.8860193304888853,
+          0.049356472566750575,
+          -3.629328160549583,
+          -2.9742696979216543,
+          0.33422566054737235,
+          3.256442865944881,
+          1.2600414122731438,
+          -1.6323452297655323,
+          -1.5883677412817914,
+          0.8628903431503696,
+          -1.076135593629941,
+          4.29888499657375,
+          -0.6554630983777514,
+          3.2806488747844034,
+          -1.1982873265407394,
+          -2.1904727657882352,
+          -2.6742428975372246,
+          -0.4036830268214011,
+          -3.9110539726622324,
+          -1.9392382788176268,
+          -0.9383617851737087,
+          3.501273734921017,
+          0.5821290842660387,
+          4.119892599412801,
+          -2.61019543620454,
+          -3.5450920936881003,
+          -2.2785358201022285,
+          2.5194870603880455,
+          1.3630079734270328,
+          -4.366746447060891,
+          -2.696308088327663,
+          -4.380517079450988,
+          0.3504683373698452,
+          1.4941802552828385,
+          3.2465238843697675,
+          -0.05619196372909663,
+          0.15178206312866394,
+          -2.11083445958874,
+          0.22975601546893998,
+          3.9265973466301647,
+          -2.798320866476193,
+          1.036242936035901,
+          4.055270521633854,
+          -2.3516050073372674,
+          2.6590431522272917,
+          -1.790693740246235,
+          2.3732905739060346,
+          2.623234851175418,
+          -3.599010141185082,
+          3.9151596466295464,
+          -3.5011674206503085,
+          2.7393088053315138,
+          0.8054450195343552,
+          4.35743910599522,
+          -3.0505702847139275,
+          -2.9595329537919355,
+          -3.7908998121529947,
+          -1.1247768731691554,
+          -1.1740930049820117,
+          0.6626400781489981,
+          -2.333548647040501,
+          2.2588028850620434,
+          3.7195665490111027,
+          1.7474906929631615,
+          2.2485454128126525,
+          -3.3916472785842653,
+          2.2301709035311283,
+          0.2620637409393245,
+          4.053526038312875,
+          2.839136642262215,
+          1.5183150293843983,
+          -2.546556359674156,
+          -0.9454666504040672,
+          4.074036787165796,
+          0.668417085916591,
+          -0.5716364223616806,
+          -3.2697655613892316,
+          0.44124321438050274,
+          -1.1203534091564378,
+          -2.166389741588222,
+          -3.2309493561252722,
+          1.9035171172522913,
+          0.08014386541895213,
+          3.4468766960157433,
+          1.4405857559508526,
+          2.325826807867066,
+          2.2671984479621052,
+          0.8477066870745249,
+          2.371875886888768,
+          3.2780683218957316,
+          3.000043337626308,
+          -0.11172065941403098,
+          -1.9358393033695256,
+          -3.7273241584106573,
+          3.484653471664255,
+          -2.827252873115498,
+          0.6573502284380064,
+          2.063790866605201,
+          -3.877321916439578,
+          -4.423237417960697,
+          0.0947232794574644,
+          3.9161106698337376,
+          1.004833802146285,
+          1.390687384943421,
+          -3.2971815612253956,
+          2.2151060675528678,
+          3.6986838268979954,
+          3.097196169105618,
+          -4.979293797622423,
+          3.434501083667464,
+          -2.20101366112344,
+          -2.66347690573176,
+          2.6661559163876243,
+          0.5114841605721496,
+          2.259384148379757,
+          2.0548022882879273,
+          -4.109184282725577,
+          -0.6624646485757477,
+          1.6687953981025991,
+          0.27788829294052775,
+          -3.901653238459599,
+          0.2947847158466903,
+          3.70186754842486,
+          1.4362499008374652,
+          -3.53959949939964,
+          -1.1994607238823365,
+          1.1029792196789945,
+          -4.257764736030894,
+          -2.0008533274901525,
+          -0.9523847566814609,
+          0.12299495475880029,
+          -5.018197442055199,
+          -1.2309059662442912,
+          -4.869596453875542,
+          -2.423219317884211,
+          -1.5372396887928064,
+          -3.6584339782016073,
+          -1.1119554675322454,
+          4.123251063869058,
+          -3.6110993428916482,
+          -2.5000832956959718,
+          -0.584445234068709,
+          -4.490059273109781,
+          4.245415652901136,
+          1.1525964126946393,
+          2.424965584831665,
+          -0.050050071554760045,
+          -2.0548983160233814,
+          -4.518368665473784,
+          -3.119413977788404,
+          0.9799187278940638,
+          1.680636710645655,
+          -1.04127629127421,
+          -3.850578882475831,
+          -1.4153748054658264
          ]
         },
         {
@@ -13921,2677 +13891,2677 @@
          "scene": "scene2",
          "showlegend": false,
          "text": [
-          "example_1",
-          "example_4",
-          "example_8",
-          "example_11",
-          "example_13",
-          "example_14",
-          "example_16",
-          "example_17",
-          "example_19",
-          "example_20",
-          "example_21",
-          "example_22",
-          "example_26",
-          "example_34",
-          "example_35",
-          "example_36",
-          "example_37",
-          "example_40",
-          "example_46",
-          "example_50",
-          "example_53",
-          "example_61",
-          "example_64",
-          "example_75",
-          "example_87",
-          "example_89",
-          "example_91",
-          "example_93",
-          "example_95",
-          "example_98",
-          "example_103",
-          "example_112",
-          "example_114",
-          "example_116",
-          "example_119",
-          "example_121",
-          "example_122",
-          "example_127",
-          "example_130",
-          "example_134",
-          "example_143",
-          "example_146",
-          "example_149",
-          "example_150",
-          "example_151",
-          "example_152",
-          "example_153",
-          "example_154",
-          "example_157",
-          "example_159",
-          "example_160",
-          "example_161",
-          "example_166",
-          "example_176",
-          "example_180",
-          "example_186",
-          "example_187",
-          "example_189",
-          "example_190",
-          "example_191",
-          "example_197",
-          "example_200",
-          "example_201",
-          "example_202",
-          "example_205",
-          "example_206",
-          "example_207",
-          "example_216",
-          "example_217",
-          "example_219",
-          "example_225",
-          "example_229",
-          "example_230",
-          "example_241",
-          "example_245",
-          "example_246",
-          "example_252",
-          "example_253",
-          "example_257",
-          "example_262",
-          "example_263",
-          "example_264",
-          "example_268",
-          "example_269",
-          "example_276",
-          "example_278",
-          "example_279",
-          "example_283",
-          "example_284",
-          "example_288",
-          "example_293",
-          "example_295",
-          "example_301",
-          "example_304",
-          "example_313",
-          "example_315",
-          "example_317",
-          "example_320",
-          "example_330",
-          "example_335",
-          "example_337",
-          "example_340",
-          "example_343",
-          "example_345",
-          "example_356",
-          "example_369",
-          "example_378",
-          "example_379",
-          "example_384",
-          "example_385",
-          "example_387",
-          "example_391",
-          "example_392",
-          "example_395",
-          "example_396",
-          "example_397",
-          "example_399",
-          "example_400",
-          "example_401",
-          "example_402",
-          "example_403",
-          "example_406",
-          "example_407",
-          "example_412",
-          "example_417",
-          "example_418",
-          "example_431",
-          "example_437",
-          "example_441",
-          "example_443",
-          "example_444",
-          "example_452",
-          "example_454",
-          "example_455",
-          "example_456",
-          "example_459",
-          "example_463",
-          "example_466",
-          "example_469",
-          "example_470",
-          "example_472",
-          "example_473",
-          "example_474",
-          "example_476",
-          "example_484",
-          "example_487",
-          "example_488",
-          "example_489",
-          "example_492",
-          "example_496",
-          "example_498",
-          "example_502",
-          "example_508",
-          "example_509",
-          "example_510",
-          "example_511",
-          "example_512",
-          "example_515",
-          "example_517",
-          "example_520",
-          "example_521",
-          "example_524",
-          "example_537",
-          "example_540",
-          "example_546",
-          "example_550",
-          "example_556",
-          "example_559",
-          "example_562",
-          "example_563",
-          "example_564",
-          "example_565",
-          "example_569",
-          "example_574",
-          "example_577",
-          "example_580",
-          "example_586",
-          "example_592",
-          "example_595",
-          "example_600",
-          "example_604",
-          "example_606",
-          "example_608",
-          "example_612",
-          "example_616",
-          "example_623",
-          "example_625",
-          "example_627",
-          "example_632",
-          "example_633",
-          "example_635",
-          "example_639",
-          "example_640",
-          "example_641",
-          "example_642",
-          "example_645",
-          "example_646",
-          "example_647",
-          "example_648",
-          "example_653",
-          "example_655",
-          "example_656",
-          "example_658",
-          "example_659",
-          "example_662",
-          "example_663",
-          "example_675",
-          "example_681",
-          "example_683",
-          "example_684",
-          "example_685",
-          "example_686",
-          "example_687",
-          "example_689",
-          "example_690",
-          "example_696",
-          "example_698",
-          "example_699",
-          "example_702",
-          "example_703",
-          "example_709",
-          "example_717",
-          "example_719",
-          "example_725",
-          "example_726",
-          "example_728",
-          "example_729",
-          "example_734",
-          "example_738",
-          "example_740",
-          "example_742",
-          "example_747",
-          "example_748",
-          "example_749",
-          "example_751",
-          "example_753",
-          "example_758",
-          "example_760",
-          "example_761",
-          "example_763",
-          "example_766",
-          "example_768",
-          "example_769",
-          "example_773",
-          "example_775",
-          "example_776",
-          "example_779",
-          "example_784",
-          "example_789",
-          "example_790",
-          "example_791",
-          "example_794",
-          "example_795",
-          "example_797",
-          "example_800",
-          "example_801",
-          "example_804",
-          "example_805",
-          "example_815",
-          "example_821",
-          "example_822",
-          "example_825",
-          "example_827",
-          "example_830",
-          "example_831",
-          "example_833",
-          "example_835",
-          "example_837",
-          "example_840",
-          "example_848",
-          "example_850",
-          "example_851",
-          "example_853",
-          "example_854",
-          "example_856",
-          "example_860",
-          "example_863",
-          "example_866",
-          "example_870",
-          "example_871",
-          "example_872",
-          "example_876",
-          "example_877",
-          "example_878",
-          "example_880",
-          "example_883",
-          "example_884",
-          "example_890",
-          "example_891",
-          "example_895",
-          "example_896",
-          "example_897",
-          "example_902",
-          "example_911",
-          "example_913",
-          "example_919",
-          "example_920",
-          "example_927",
-          "example_928",
-          "example_929",
-          "example_935",
-          "example_947",
-          "example_951",
-          "example_954",
-          "example_955",
-          "example_956",
-          "example_957",
-          "example_959",
-          "example_960",
-          "example_961",
-          "example_969",
-          "example_971",
-          "example_972",
-          "example_975",
-          "example_977",
-          "example_980",
-          "example_981",
-          "example_991",
-          "example_992",
-          "example_995",
-          "example_996",
-          "example_1002",
-          "example_1003",
-          "example_1008",
-          "example_1011",
-          "example_1012",
-          "example_1014",
-          "example_1015",
-          "example_1016",
-          "example_1017",
-          "example_1019",
-          "example_1020",
-          "example_1021",
-          "example_1025",
-          "example_1028",
-          "example_1038",
-          "example_1039",
-          "example_1042",
-          "example_1044",
-          "example_1045",
-          "example_1048",
-          "example_1051",
-          "example_1056",
-          "example_1059",
-          "example_1060",
-          "example_1062",
-          "example_1064",
-          "example_1066",
-          "example_1069",
-          "example_1070",
-          "example_1071",
-          "example_1072",
-          "example_1076",
-          "example_1077",
-          "example_1081",
-          "example_1082",
-          "example_1086",
-          "example_1092",
-          "example_1095",
-          "example_1098",
-          "example_1099",
-          "example_1104",
-          "example_1109",
-          "example_1115",
-          "example_1119",
-          "example_1122",
-          "example_1123",
-          "example_1126",
-          "example_1127",
-          "example_1129",
-          "example_1130",
-          "example_1135",
-          "example_1136",
-          "example_1139",
-          "example_1141",
-          "example_1143",
-          "example_1147",
-          "example_1148",
-          "example_1150",
-          "example_1152",
-          "example_1153",
-          "example_1154",
-          "example_1158",
-          "example_1162",
-          "example_1166",
-          "example_1167",
-          "example_1171",
-          "example_1174",
-          "example_1180",
-          "example_1183",
-          "example_1184",
-          "example_1186",
-          "example_1191",
-          "example_1194",
-          "example_1195",
-          "example_1199",
-          "example_1203",
-          "example_1207",
-          "example_1212",
-          "example_1213",
-          "example_1215",
-          "example_1218",
-          "example_1219",
-          "example_1224",
-          "example_1227",
-          "example_1238",
-          "example_1241",
-          "example_1243",
-          "example_1246",
-          "example_1248",
-          "example_1250",
-          "example_1254",
-          "example_1256",
-          "example_1257",
-          "example_1260",
-          "example_1264",
-          "example_1266",
-          "example_1267",
-          "example_1275",
-          "example_1276",
-          "example_1277",
-          "example_1279",
-          "example_1282",
-          "example_1291",
-          "example_1294",
-          "example_1295",
-          "example_1296",
-          "example_1297",
-          "example_1300",
-          "example_1306",
-          "example_1308",
-          "example_1311",
-          "example_1312",
-          "example_1321",
-          "example_1325",
-          "example_1327",
-          "example_1332",
-          "example_1337",
-          "example_1346",
-          "example_1348",
-          "example_1349",
-          "example_1350",
-          "example_1354",
-          "example_1363",
-          "example_1365",
-          "example_1367",
-          "example_1369",
-          "example_1371",
-          "example_1372",
-          "example_1373",
-          "example_1377",
-          "example_1378",
-          "example_1382",
-          "example_1388",
-          "example_1390",
-          "example_1396",
-          "example_1397",
-          "example_1398",
-          "example_1399",
-          "example_1400",
-          "example_1408",
-          "example_1409",
-          "example_1410",
-          "example_1411",
-          "example_1413",
-          "example_1415",
-          "example_1416",
-          "example_1426",
-          "example_1430",
-          "example_1434",
-          "example_1437",
-          "example_1438",
-          "example_1439",
-          "example_1442",
-          "example_1443",
-          "example_1444",
-          "example_1445",
-          "example_1451",
-          "example_1459",
-          "example_1462",
-          "example_1465",
-          "example_1475",
-          "example_1476",
-          "example_1478",
-          "example_1479",
-          "example_1482",
-          "example_1484",
-          "example_1485",
-          "example_1487",
-          "example_1494",
-          "example_1495",
-          "example_1496",
-          "example_1499",
-          "example_1500",
-          "example_1504",
-          "example_1508",
-          "example_1513",
-          "example_1515",
-          "example_1517",
-          "example_1520",
-          "example_1522",
-          "example_1527",
-          "example_1528",
-          "example_1529",
-          "example_1533",
-          "example_1534",
-          "example_1535",
-          "example_1539",
-          "example_1543",
-          "example_1550",
-          "example_1555",
-          "example_1559",
-          "example_1567",
-          "example_1569",
-          "example_1570",
-          "example_1573",
-          "example_1577",
-          "example_1579",
-          "example_1583",
-          "example_1584",
-          "example_1585",
-          "example_1589",
-          "example_1590",
-          "example_1594",
-          "example_1595",
-          "example_1597",
-          "example_1598",
-          "example_1600",
-          "example_1603",
-          "example_1623",
-          "example_1624",
-          "example_1629",
-          "example_1631",
-          "example_1633",
-          "example_1634",
-          "example_1636",
-          "example_1638",
-          "example_1643",
-          "example_1648",
-          "example_1653",
-          "example_1654",
-          "example_1655",
-          "example_1659",
-          "example_1660",
-          "example_1661",
-          "example_1663",
-          "example_1670",
-          "example_1678",
-          "example_1679",
-          "example_1680",
-          "example_1681",
-          "example_1685",
-          "example_1687",
-          "example_1688",
-          "example_1690",
-          "example_1693",
-          "example_1695",
-          "example_1698",
-          "example_1700",
-          "example_1702",
-          "example_1705",
-          "example_1706",
-          "example_1707",
-          "example_1710",
-          "example_1714",
-          "example_1715",
-          "example_1716",
-          "example_1720",
-          "example_1721",
-          "example_1722",
-          "example_1723",
-          "example_1724",
-          "example_1725",
-          "example_1731",
-          "example_1733",
-          "example_1737",
-          "example_1740",
-          "example_1742",
-          "example_1744",
-          "example_1746",
-          "example_1748",
-          "example_1750",
-          "example_1751",
-          "example_1756",
-          "example_1757",
-          "example_1762",
-          "example_1766",
-          "example_1768",
-          "example_1771",
-          "example_1772",
-          "example_1774",
-          "example_1776",
-          "example_1777",
-          "example_1785",
-          "example_1788",
-          "example_1790",
-          "example_1792",
-          "example_1793",
-          "example_1794",
-          "example_1795",
-          "example_1796",
-          "example_1803",
-          "example_1804",
-          "example_1805",
-          "example_1806",
-          "example_1809",
-          "example_1820",
-          "example_1821",
-          "example_1828",
-          "example_1833",
-          "example_1834",
-          "example_1836",
-          "example_1837",
-          "example_1839",
-          "example_1841",
-          "example_1842",
-          "example_1845",
-          "example_1846",
-          "example_1849",
-          "example_1850",
-          "example_1861",
-          "example_1862",
-          "example_1868",
-          "example_1873",
-          "example_1875",
-          "example_1876",
-          "example_1877",
-          "example_1878",
-          "example_1879",
-          "example_1880",
-          "example_1883",
-          "example_1886",
-          "example_1889",
-          "example_1892",
-          "example_1893",
-          "example_1895",
-          "example_1898",
-          "example_1899",
-          "example_1902",
-          "example_1905",
-          "example_1906",
-          "example_1908",
-          "example_1913",
-          "example_1915",
-          "example_1916",
-          "example_1923",
-          "example_1926",
-          "example_1940",
-          "example_1945",
-          "example_1946",
-          "example_1947",
-          "example_1949",
-          "example_1950",
-          "example_1951",
-          "example_1953",
-          "example_1962",
-          "example_1965",
-          "example_1966",
-          "example_1968",
-          "example_1969",
-          "example_1980",
-          "example_1981",
-          "example_1982",
-          "example_1994",
-          "example_1995",
-          "example_1997"
+          "1332_l_2_m-0_0.1-1_0.4-2_0.08-3_1.02",
+          "1333_l_2_m-0_1.42-1_0.49-2_0.11-3_0.17",
+          "1334_l_2_m-0_0.41-1_0.13-2_0.63-3_0.36",
+          "1335_l_2_m-0_1.18-1_0.06-2_0.66-3_0.16",
+          "1336_l_2_m-0_0.42-1_0.02-2_0.37-3_0.04",
+          "1337_l_2_m-0_0.92-1_0.44-2_0.07-3_0.07",
+          "1338_l_2_c_0_1_3-0_0.24-1_0.21-2_0.22-3_0.16",
+          "1339_l_2_c_0_1_3-0_0.21-1_0.24-2_1.39-3_0.32",
+          "1340_l_2_c_0_1_3-0_0.02-1_0.11-2_0.95-3_0.42",
+          "1341_l_2_c_0_1_3-0_0.14-1_0.17-2_0.95-3_0.05",
+          "1342_l_2_c_0_1_3-0_0.87-1_0.24-2_0.49-3_0.38",
+          "1343_l_2_c_0_1_3-0_0.49-1_0.63-2_0.09-3_0.15",
+          "1344_l_2_c_0_1_3-0_0.25-1_0.85-2_0.58-3_0.21",
+          "1345_l_2_c_0_1_3-0_0.21-1_0.33-2_1.06-3_0.13",
+          "1346_l_2_c_0_1_3-0_0.03-1_0.24-2_0.27-3_0.41",
+          "1347_l_2_c_0_1_3-0_0.98-1_1.27-2_0.12-3_0.24",
+          "1348_l_2_c_0_1_3-0_1.0-1_0.42-2_0.53-3_0.01",
+          "1349_l_2_c_0_1_3-0_0.04-1_0.54-2_0.13-3_0.87",
+          "1350_l_2_c_0_1_3-0_0.62-1_0.27-2_0.26-3_0.12",
+          "1351_l_2_c_0_1_3-0_0.76-1_0.19-2_1.3-3_0.85",
+          "1352_l_2_c_0_1_3-0_0.83-1_0.72-2_0.03-3_0.28",
+          "1353_l_2_c_0_1_3-0_0.06-1_0.02-2_0.58-3_0.15",
+          "1354_l_2_c_0_1_3-0_0.2-1_0.75-2_0.25-3_0.44",
+          "1355_l_2_c_0_1_3-0_0.0-1_0.01-2_0.07-3_0.62",
+          "1356_l_2_c_0_1_3-0_0.51-1_0.13-2_0.03-3_0.09",
+          "1357_l_2_c_0_1_3-0_0.72-1_0.08-2_1.79-3_0.38",
+          "1358_l_2_c_0_1_3-0_0.87-1_0.38-2_0.45-3_0.25",
+          "1359_l_2_c_0_1_3-0_0.52-1_0.96-2_0.35-3_0.08",
+          "1360_l_2_c_0_1_3-0_0.73-1_0.19-2_1.06-3_1.11",
+          "1361_l_2_c_0_1_3-0_0.08-1_0.12-2_0.29-3_0.16",
+          "1362_l_2_c_0_1_3-0_0.13-1_0.07-2_0.47-3_0.28",
+          "1363_l_2_c_0_1_3-0_0.34-1_0.38-2_0.97-3_0.13",
+          "1364_l_2_c_0_1_3-0_0.36-1_0.03-2_0.55-3_0.14",
+          "1365_l_2_c_0_1_3-0_0.96-1_0.15-2_0.39-3_0.17",
+          "1366_l_2_c_0_1_3-0_0.04-1_0.05-2_0.35-3_0.68",
+          "1367_l_2_c_0_1_3-0_0.9-1_0.28-2_0.42-3_0.21",
+          "1368_l_2_c_0_1_3-0_0.14-1_0.14-2_0.23-3_0.14",
+          "1369_l_2_c_0_1_3-0_0.19-1_0.39-2_1.23-3_0.28",
+          "1370_l_2_c_0_1_3-0_0.48-1_0.16-2_0.02-3_0.35",
+          "1371_l_2_c_0_1_3-0_0.05-1_0.35-2_0.66-3_0.11",
+          "1372_l_2_c_0_1_3-0_0.65-1_0.13-2_0.57-3_0.6",
+          "1373_l_2_c_0_1_3-0_0.55-1_0.26-2_0.35-3_0.83",
+          "1374_l_2_c_0_1_3-0_0.15-1_0.87-2_0.89-3_0.16",
+          "1375_l_2_c_0_1_3-0_0.19-1_0.53-2_0.43-3_0.14",
+          "1376_l_2_c_0_1_3-0_0.18-1_0.33-2_0.74-3_0.13",
+          "1377_l_2_c_0_1_3-0_0.52-1_0.07-2_0.62-3_0.42",
+          "1378_l_2_c_0_1_3-0_0.02-1_0.08-2_1.53-3_0.11",
+          "1379_l_2_c_0_1_3-0_0.35-1_0.08-2_0.37-3_0.76",
+          "1380_l_2_c_0_1_2-0_0.32-1_0.35-2_0.05-3_0.08",
+          "1381_l_2_c_0_1_3-0_0.14-1_0.78-2_0.65-3_0.11",
+          "1382_l_2_c_0_1_2-0_0.1-1_0.14-2_0.34-3_1.03",
+          "1383_l_2_c_0_1_3-0_0.82-1_0.05-2_0.24-3_0.76",
+          "1384_l_2_c_0_1_2-0_0.07-1_0.35-2_0.01-3_1.09",
+          "1385_l_2_c_0_1_3-0_0.37-1_0.17-2_1.62-3_0.09",
+          "1386_l_2_c_0_1_2-0_0.54-1_0.05-2_0.54-3_0.3",
+          "1387_l_2_c_0_1_3-0_0.13-1_1.2-2_0.96-3_0.04",
+          "1388_l_2_c_0_1_2-0_0.44-1_0.34-2_0.04-3_0.63",
+          "1389_l_2_c_0_1_3-0_0.64-1_0.04-2_0.78-3_0.06",
+          "1390_l_2_c_0_1_2-0_0.24-1_0.7-2_0.58-3_0.95",
+          "1391_l_2_c_0_1_3-0_1.0-1_0.24-2_0.98-3_0.45",
+          "1392_l_2_c_0_1_2-0_0.31-1_0.03-2_0.05-3_0.08",
+          "1393_l_2_c_0_1_3-0_0.53-1_0.44-2_0.94-3_0.65",
+          "1394_l_2_c_0_1_2-0_0.14-1_0.16-2_0.75-3_0.99",
+          "1395_l_2_c_0_1_3-0_0.23-1_0.67-2_0.27-3_0.26",
+          "1396_l_2_c_0_1_2-0_0.32-1_0.77-2_0.22-3_0.72",
+          "1397_l_2_c_0_1_3-0_0.12-1_0.13-2_0.75-3_0.11",
+          "1398_l_2_c_0_1_2-0_0.34-1_0.15-2_0.36-3_0.93",
+          "1399_l_2_c_0_1_3-0_0.69-1_0.29-2_1.08-3_0.5",
+          "1400_l_2_c_0_1_2-0_0.17-1_0.2-2_0.04-3_0.4",
+          "1401_l_2_c_0_1_3-0_0.72-1_0.25-2_0.39-3_0.1",
+          "1402_l_2_c_0_1_2-0_0.25-1_0.01-2_0.03-3_0.66",
+          "1403_l_2_c_0_1_3-0_0.07-1_0.63-2_0.93-3_0.48",
+          "1404_l_2_c_0_1_2-0_0.32-1_0.24-2_0.61-3_1.56",
+          "1405_l_2_c_0_1_3-0_0.19-1_0.13-2_0.51-3_0.55",
+          "1406_l_2_c_0_1_2-0_0.8-1_0.33-2_0.23-3_0.34",
+          "1407_l_2_c_0_1_3-0_0.1-1_0.15-2_0.56-3_0.77",
+          "1408_l_2_c_0_1_2-0_0.84-1_0.06-2_0.47-3_0.17",
+          "1409_l_2_c_0_1_3-0_0.01-1_0.03-2_0.47-3_0.57",
+          "1410_l_2_c_0_1_2-0_0.07-1_0.1-2_0.14-3_0.14",
+          "1411_l_2_c_0_1_3-0_0.5-1_0.19-2_1.55-3_0.55",
+          "1412_l_2_c_0_1_2-0_0.83-1_0.01-2_0.02-3_0.76",
+          "1413_l_2_c_0_1_3-0_0.24-1_0.57-2_0.53-3_0.05",
+          "1414_l_2_c_0_1_2-0_0.4-1_0.27-2_0.23-3_0.43",
+          "1415_l_2_c_0_1_3-0_0.64-1_0.66-2_0.7-3_0.67",
+          "1416_l_2_c_0_1_2-0_0.09-1_0.95-2_0.8-3_0.57",
+          "1417_l_2_c_0_1_3-0_0.12-1_0.27-2_0.02-3_0.69",
+          "1418_l_2_c_0_1_2-0_0.02-1_0.31-2_0.62-3_0.33",
+          "1419_l_2_c_0_1_3-0_0.19-1_0.14-2_0.02-3_0.26",
+          "1420_l_2_c_0_1_2-0_0.5-1_0.02-2_0.07-3_1.04",
+          "1421_l_2_c_0_1_3-0_0.09-1_0.05-2_0.12-3_0.44",
+          "1422_l_2_c_0_1_2-0_0.03-1_1.15-2_0.84-3_1.68",
+          "1423_l_2_c_0_1_3-0_0.3-1_0.14-2_0.57-3_0.45",
+          "1424_l_2_c_0_1_2-0_0.81-1_0.89-2_0.09-3_0.5",
+          "1425_l_2_c_0_1_3-0_0.23-1_0.05-2_0.82-3_0.49",
+          "1426_l_2_c_0_1_2-0_0.23-1_0.44-2_0.32-3_1.59",
+          "1427_l_2_c_0_1_3-0_0.18-1_0.18-2_0.8-3_0.65",
+          "1428_l_2_c_0_1_2-0_0.48-1_0.58-2_0.04-3_0.63",
+          "1429_l_2_c_0_1_3-0_0.34-1_0.27-2_0.51-3_0.38",
+          "1430_l_2_c_0_1_2-0_0.09-1_1.64-2_0.09-3_0.81",
+          "1431_l_2_c_0_1_3-0_0.22-1_0.18-2_1.22-3_0.29",
+          "1432_l_2_c_0_1_2-0_0.15-1_0.32-2_0.43-3_0.74",
+          "1433_l_2_c_0_1_3-0_0.68-1_0.56-2_0.4-3_0.14",
+          "1434_l_2_c_0_1_2-0_0.1-1_0.72-2_0.0-3_0.32",
+          "1435_l_2_c_0_1_3-0_0.46-1_0.2-2_1.3-3_0.45",
+          "1436_l_2_c_0_1_2-0_0.48-1_0.15-2_0.07-3_0.11",
+          "1437_l_2_c_0_1_3-0_0.54-1_0.09-2_1.14-3_0.51",
+          "1438_l_2_c_0_1_2-0_0.23-1_0.05-2_0.21-3_0.64",
+          "1439_l_2_c_0_1_3-0_1.13-1_0.47-2_1.55-3_0.67",
+          "1440_l_2_c_0_1_2-0_0.01-1_0.44-2_0.15-3_0.81",
+          "1441_l_2_c_0_1_3-0_0.67-1_0.28-2_0.52-3_0.17",
+          "1442_l_2_c_0_1_2-0_0.35-1_0.02-2_0.64-3_0.38",
+          "1443_l_2_c_0_1_3-0_0.21-1_0.36-2_0.4-3_0.0",
+          "1444_l_2_c_0_1_2-0_0.45-1_0.23-2_0.32-3_1.44",
+          "1445_l_2_c_0_1_3-0_0.69-1_1.13-2_0.28-3_0.64",
+          "1446_l_2_c_0_1_2-0_0.06-1_0.67-2_0.21-3_0.63",
+          "1447_l_2_c_0_1_3-0_0.5-1_0.9-2_0.38-3_0.43",
+          "1448_l_2_c_0_1_2-0_0.09-1_0.54-2_0.29-3_0.99",
+          "1449_l_2_c_0_1_3-0_0.25-1_0.46-2_1.75-3_0.99",
+          "1450_l_2_c_0_1_2-0_0.04-1_0.03-2_0.11-3_0.05",
+          "1451_l_2_c_0_1_3-0_0.26-1_0.1-2_0.61-3_0.95",
+          "1452_l_2_c_0_1_2-0_0.11-1_0.11-2_0.09-3_0.01",
+          "1453_l_2_c_0_1_3-0_1.16-1_0.36-2_1.21-3_0.67",
+          "1454_l_2_c_0_1_2-0_0.32-1_0.08-2_0.01-3_0.19",
+          "1455_l_2_c_0_1_3-0_0.45-1_0.11-2_0.85-3_0.41",
+          "1456_l_2_c_0_1_2-0_0.04-1_0.31-2_0.28-3_0.28",
+          "1457_l_2_c_0_1_3-0_0.05-1_0.27-2_0.17-3_0.19",
+          "1458_l_2_c_0_1_2-0_0.11-1_0.02-2_0.02-3_0.31",
+          "1459_l_2_c_0_1_3-0_0.15-1_0.5-2_0.61-3_0.62",
+          "1460_l_2_c_0_1_2-0_0.02-1_0.56-2_0.1-3_0.53",
+          "1461_l_2_c_0_1_3-0_0.42-1_0.43-2_1.3-3_0.32",
+          "1462_l_2_c_0_1_2-0_0.42-1_0.11-2_0.88-3_0.95",
+          "1463_l_2_c_0_1_3-0_0.11-1_0.59-2_0.11-3_0.84",
+          "1464_l_2_c_0_1_2-0_0.18-1_0.16-2_0.16-3_0.67",
+          "1465_l_2_c_0_1_3-0_0.35-1_0.95-2_0.06-3_0.27",
+          "1466_l_2_c_0_1_2-0_0.1-1_0.82-2_0.11-3_2.07",
+          "1467_l_2_c_0_1_3-0_0.48-1_0.43-2_0.41-3_0.68",
+          "1468_l_2_c_0_1_2-0_0.79-1_1.31-2_0.01-3_0.09",
+          "1469_l_2_c_0_1_3-0_0.07-1_0.15-2_0.4-3_0.79",
+          "1470_l_2_c_0_1_2-0_0.34-1_0.41-2_0.42-3_1.09",
+          "1471_l_2_c_0_1_3-0_0.01-1_0.16-2_0.31-3_0.55",
+          "1472_l_2_c_0_1_2-0_0.13-1_0.24-2_0.05-3_0.43",
+          "1473_l_2_c_0_1_3-0_0.11-1_0.14-2_0.97-3_0.33",
+          "1474_l_2_c_0_1_2-0_0.25-1_0.65-2_0.05-3_0.7",
+          "1475_l_2_c_0_1_3-0_0.2-1_0.5-2_1.36-3_0.61",
+          "1476_l_2_c_1_2_3-0_0.54-1_0.22-2_0.69-3_0.14",
+          "1477_l_2_c_0_1_2-0_0.0-1_0.54-2_0.34-3_0.17",
+          "1478_l_2_c_0_1_3-0_0.02-1_0.69-2_0.46-3_0.3",
+          "1479_l_2_c_1_2_3-0_0.56-1_0.47-2_0.12-3_0.17",
+          "1480_l_2_c_0_1_2-0_0.01-1_0.13-2_1.01-3_0.7",
+          "1481_l_2_c_0_1_3-0_1.94-1_0.32-2_1.25-3_1.17",
+          "1482_l_2_c_1_2_3-0_0.8-1_0.49-2_0.03-3_0.15",
+          "1483_l_2_c_0_1_2-0_0.06-1_0.13-2_0.59-3_0.21",
+          "1484_l_2_c_0_1_3-0_0.73-1_0.05-2_0.68-3_0.0",
+          "1485_l_2_c_1_2_3-0_0.93-1_0.11-2_0.22-3_0.25",
+          "1486_l_2_c_0_1_2-0_0.32-1_1.15-2_0.2-3_0.19",
+          "1487_l_2_c_0_1_3-0_0.05-1_0.46-2_0.55-3_0.18",
+          "1488_l_2_c_1_2_3-0_0.45-1_0.36-2_0.69-3_0.08",
+          "1489_l_2_c_0_1_2-0_0.73-1_0.25-2_0.19-3_0.85",
+          "1490_l_2_c_0_1_3-0_0.26-1_0.0-2_1.11-3_0.23",
+          "1491_l_2_c_1_2_3-0_0.85-1_0.04-2_0.41-3_0.4",
+          "1492_l_2_c_0_1_2-0_0.56-1_0.17-2_0.03-3_0.84",
+          "1493_l_2_c_0_1_3-0_0.25-1_0.09-2_1.13-3_0.04",
+          "1494_l_2_c_1_2_3-0_1.9-1_0.86-2_0.18-3_0.06",
+          "1495_l_2_c_0_1_2-0_0.41-1_0.15-2_0.4-3_1.38",
+          "1496_l_2_c_0_1_3-0_0.14-1_0.48-2_0.11-3_1.05",
+          "1497_l_2_c_1_2_3-0_0.24-1_0.41-2_0.08-3_0.28",
+          "1498_l_2_c_0_1_2-0_0.13-1_0.45-2_0.26-3_0.61",
+          "1499_l_2_c_0_1_3-0_0.97-1_0.47-2_1.06-3_1.09",
+          "1500_l_2_c_1_2_3-0_0.81-1_0.73-2_0.19-3_0.06",
+          "1501_l_2_c_0_1_2-0_0.48-1_0.01-2_0.17-3_0.89",
+          "1502_l_2_c_0_1_3-0_0.04-1_0.21-2_0.53-3_0.8",
+          "1503_l_2_c_1_2_3-0_1.16-1_0.4-2_0.41-3_0.36",
+          "1504_l_2_c_0_1_2-0_0.56-1_0.17-2_0.17-3_0.17",
+          "1505_l_2_c_0_1_3-0_0.0-1_0.14-2_0.15-3_0.12",
+          "1506_l_2_c_1_2_3-0_0.05-1_0.7-2_0.22-3_0.37",
+          "1507_l_2_c_0_1_2-0_0.13-1_1.81-2_0.1-3_0.65",
+          "1508_l_2_c_0_1_3-0_0.28-1_0.42-2_0.42-3_0.1",
+          "1509_l_2_c_1_2_3-0_0.14-1_0.42-2_0.29-3_0.33",
+          "1510_l_2_c_0_1_2-0_0.56-1_0.72-2_0.21-3_0.45",
+          "1511_l_2_c_0_1_3-0_0.52-1_0.02-2_0.45-3_0.45",
+          "1512_l_2_c_1_2_3-0_0.07-1_0.06-2_0.08-3_0.43",
+          "1513_l_2_c_0_1_2-0_0.88-1_0.55-2_0.1-3_0.3",
+          "1514_l_2_c_0_1_3-0_0.25-1_0.01-2_0.35-3_0.15",
+          "1515_l_2_c_1_2_3-0_0.37-1_0.07-2_0.54-3_0.12",
+          "1516_l_2_c_0_1_2-0_0.44-1_0.6-2_0.01-3_0.93",
+          "1517_l_2_c_0_1_3-0_0.03-1_0.28-2_1.39-3_0.11",
+          "1518_l_2_c_1_2_3-0_0.73-1_0.6-2_0.02-3_0.05",
+          "1519_l_2_c_0_1_2-0_0.19-1_0.11-2_0.33-3_0.53",
+          "1520_l_2_c_1_3-0_0.89-1_0.32-2_1.39-3_0.89",
+          "1521_l_2_r-0_0.36-1_1.47-2_1.08-3_1.21",
+          "1522_l_2_r-0_0.67-1_0.31-2_0.11-3_1.28",
+          "1523_l_2_r-0_0.57-1_0.02-2_1.04-3_1.39",
+          "1524_l_2_r-0_0.9-1_0.09-2_0.42-3_0.49",
+          "1525_l_2_r-0_0.96-1_2.23-2_1.22-3_0.86",
+          "1526_l_2_r-0_1.2-1_0.59-2_1.07-3_1.37",
+          "1527_l_2_r-0_1.14-1_0.44-2_1.03-3_0.47",
+          "1528_l_2_r-0_1.2-1_0.66-2_0.23-3_0.55",
+          "1529_l_2_r-0_1.12-1_0.04-2_0.7-3_1.12",
+          "1530_l_2_r-0_0.01-1_1.74-2_0.18-3_0.74",
+          "1531_l_2_r-0_0.48-1_0.13-2_0.32-3_0.34",
+          "1532_l_2_r-0_1.13-1_0.59-2_0.94-3_1.28",
+          "1533_l_2_r-0_0.74-1_1.34-2_0.03-3_0.12",
+          "1534_l_2_r-0_0.64-1_0.56-2_0.48-3_0.59",
+          "1535_l_2_r-0_0.01-1_0.97-2_0.26-3_0.2",
+          "1536_l_2_r-0_1.3-1_0.12-2_1.07-3_0.97",
+          "1537_l_2_r-0_0.32-1_0.96-2_1.59-3_1.25",
+          "1538_l_2_r-0_0.05-1_0.73-2_1.23-3_0.38",
+          "1539_l_2_r-0_0.01-1_1.02-2_0.61-3_1.06",
+          "1540_l_2_r-0_0.17-1_1.3-2_0.49-3_0.73",
+          "1541_l_2_r-0_0.41-1_0.18-2_0.45-3_0.32",
+          "1542_l_2_r-0_0.55-1_0.58-2_0.35-3_0.43",
+          "1543_l_2_r-0_1.55-1_0.49-2_0.26-3_0.12",
+          "1544_l_2_r-0_0.78-1_1.37-2_1.02-3_0.49",
+          "1545_l_2_r-0_2.12-1_1.57-2_0.09-3_0.3",
+          "1546_l_2_r-0_0.7-1_1.02-2_0.38-3_0.27",
+          "1547_l_2_r-0_0.13-1_0.9-2_0.53-3_0.31",
+          "1548_l_2_r-0_0.8-1_0.03-2_0.03-3_0.04",
+          "1549_l_2_r-0_1.63-1_0.8-2_0.1-3_0.1",
+          "1550_l_2_r-0_0.03-1_0.71-2_1.08-3_1.36",
+          "1551_l_2_r-0_0.16-1_1.78-2_0.54-3_0.14",
+          "1552_l_2_r-0_0.14-1_1.11-2_1.13-3_1.04",
+          "1553_l_2_r-0_0.73-1_0.12-2_0.03-3_0.6",
+          "1554_l_2_r-0_0.8-1_0.03-2_0.88-3_0.02",
+          "1555_l_2_r-0_1.46-1_1.4-2_0.52-3_2.21",
+          "1556_l_2_r-0_1.35-1_0.78-2_1.08-3_0.29",
+          "1557_l_2_r-0_0.66-1_1.36-2_1.74-3_0.64",
+          "1558_l_2_r-0_0.53-1_0.62-2_0.22-3_0.49",
+          "1559_l_2_r-0_1.07-1_0.6-2_0.91-3_0.73",
+          "1560_l_2_r-0_0.76-1_0.36-2_0.41-3_0.08",
+          "1561_l_2_r-0_1.74-1_1.83-2_0.13-3_0.3",
+          "1562_l_2_r-0_1.14-1_0.8-2_0.67-3_1.74",
+          "1563_l_2_r-0_0.91-1_0.14-2_1.45-3_1.26",
+          "1564_l_2_r-0_0.28-1_1.62-2_1.07-3_1.07",
+          "1565_l_2_r-0_0.92-1_1.22-2_0.68-3_1.55",
+          "1566_l_2_r-0_0.31-1_0.48-2_0.73-3_0.3",
+          "1567_l_2_r-0_1.17-1_0.06-2_0.25-3_0.88",
+          "1568_l_2_r-0_0.54-1_1.07-2_0.55-3_1.05",
+          "1569_l_2_r-0_1.61-1_1.1-2_0.21-3_1.3",
+          "1570_l_2_r-0_1.09-1_0.16-2_0.49-3_1.45",
+          "1571_l_2_r-0_0.45-1_0.4-2_1.25-3_1.75",
+          "1572_l_2_r-0_0.22-1_0.18-2_1.01-3_0.15",
+          "1573_l_2_r-0_0.3-1_0.07-2_0.88-3_1.11",
+          "1574_l_2_r-0_1.22-1_0.71-2_0.88-3_1.67",
+          "1575_l_2_r-0_0.04-1_0.8-2_0.13-3_0.04",
+          "1576_l_2_r-0_0.41-1_0.69-2_1.38-3_0.18",
+          "1577_l_2_r-0_0.06-1_0.77-2_1.03-3_0.69",
+          "1578_l_2_r-0_0.19-1_1.44-2_0.38-3_0.68",
+          "1579_l_2_r-0_0.73-1_0.4-2_0.05-3_0.62",
+          "1580_l_2_r-0_1.43-1_0.8-2_0.5-3_0.87",
+          "1581_l_2_r-0_1.14-1_0.79-2_0.65-3_0.74",
+          "1582_l_2_r-0_0.76-1_1.08-2_0.37-3_0.07",
+          "1583_l_2_r-0_0.79-1_0.36-2_0.14-3_0.4",
+          "1584_l_2_r-0_1.11-1_1.05-2_0.77-3_0.85",
+          "1585_l_2_r-0_1.71-1_1.09-2_0.32-3_1.01",
+          "1586_l_2_r-0_0.7-1_0.23-2_0.02-3_1.13",
+          "1587_l_2_r-0_1.37-1_0.53-2_0.46-3_0.64",
+          "1588_l_2_r-0_0.19-1_0.5-2_1.16-3_0.26",
+          "1589_l_2_r-0_0.23-1_0.2-2_0.27-3_0.45",
+          "1590_l_2_r-0_1.1-1_1.65-2_0.92-3_0.84",
+          "1591_l_2_r-0_0.86-1_1.27-2_0.38-3_0.38",
+          "1592_l_2_r-0_0.65-1_0.74-2_1.12-3_0.06",
+          "1593_l_2_r-0_0.84-1_1.53-2_0.29-3_0.8",
+          "1594_l_2_r-0_0.36-1_0.12-2_0.53-3_1.18",
+          "1595_l_2_r-0_0.15-1_0.72-2_0.85-3_0.75",
+          "1596_l_2_r-0_0.38-1_0.22-2_1.04-3_0.47",
+          "1597_l_2_r-0_0.71-1_1.12-2_0.95-3_0.24",
+          "1598_l_2_r-0_1.24-1_0.55-2_1.39-3_0.4",
+          "1599_l_2_r-0_0.82-1_0.78-2_0.19-3_0.59",
+          "1600_l_2_r-0_0.6-1_0.91-2_0.81-3_0.44",
+          "1601_l_2_r-0_0.37-1_0.82-2_1.56-3_1.04",
+          "1602_l_2_r-0_0.45-1_0.84-2_0.96-3_0.8",
+          "1603_l_2_r-0_1.32-1_0.41-2_2.33-3_1.31",
+          "1604_l_2_r-0_0.26-1_0.21-2_0.91-3_0.88",
+          "1605_l_2_r-0_0.87-1_0.2-2_0.02-3_0.69",
+          "1606_l_2_r-0_0.2-1_1.06-2_0.22-3_1.23",
+          "1607_l_2_r-0_0.78-1_0.58-2_0.1-3_1.13",
+          "1608_l_2_r-0_0.04-1_0.8-2_0.66-3_0.73",
+          "1609_l_2_r-0_1.11-1_1.29-2_0.24-3_0.27",
+          "1610_l_2_r-0_0.39-1_0.69-2_0.98-3_1.5",
+          "1611_l_2_r-0_1.06-1_0.96-2_0.48-3_0.68",
+          "1612_l_2_r-0_0.82-1_1.31-2_0.36-3_0.17",
+          "1613_l_2_r-0_0.82-1_0.21-2_0.4-3_0.35",
+          "1614_l_2_r-0_0.79-1_1.23-2_0.5-3_0.63",
+          "1615_l_2_r-0_0.81-1_0.74-2_0.44-3_1.08",
+          "1616_l_2_r-0_0.59-1_0.75-2_0.78-3_0.73",
+          "1617_l_2_r-0_0.49-1_0.03-2_1.08-3_0.62",
+          "1618_l_2_r-0_0.42-1_0.01-2_0.84-3_0.65",
+          "1619_l_2_r-0_0.49-1_0.96-2_0.52-3_0.68",
+          "1620_l_2_r-0_0.81-1_1.03-2_0.69-3_0.02",
+          "1621_l_2_r-0_0.4-1_0.61-2_1.21-3_1.41",
+          "1622_l_2_r-0_0.86-1_0.72-2_1.2-3_0.28",
+          "1623_l_2_r-0_0.43-1_1.04-2_0.29-3_0.69",
+          "1624_l_2_r-0_0.56-1_0.55-2_0.44-3_0.88",
+          "1625_l_2_r-0_0.55-1_1.37-2_0.92-3_0.98",
+          "1626_l_2_r-0_0.59-1_0.14-2_0.74-3_0.95",
+          "1627_l_2_r-0_1.2-1_0.17-2_0.69-3_0.69",
+          "1628_l_2_r-0_0.29-1_0.18-2_0.75-3_0.51",
+          "1629_l_2_r-0_0.7-1_1.15-2_0.83-3_0.8",
+          "1630_l_2_r-0_0.65-1_0.71-2_0.1-3_0.14",
+          "1631_l_2_r-0_1.05-1_0.15-2_1.02-3_0.44",
+          "1632_l_2_r-0_0.47-1_0.74-2_0.61-3_1.15",
+          "1633_l_2_r-0_0.34-1_0.55-2_1.37-3_1.58",
+          "1634_l_2_r-0_0.03-1_0.67-2_0.49-3_0.09",
+          "1635_l_2_r-0_0.97-1_1.54-2_0.38-3_0.72",
+          "1636_l_2_r-0_0.45-1_0.51-2_0.59-3_0.91",
+          "1637_l_2_r-0_0.1-1_0.16-2_0.46-3_0.57",
+          "1638_l_2_r-0_0.33-1_1.29-2_1.35-3_0.7",
+          "1639_l_2_r-0_0.93-1_0.96-2_1.19-3_0.5",
+          "1640_l_2_r-0_1.33-1_1.35-2_1.7-3_1.56",
+          "1641_l_2_r-0_0.21-1_0.22-2_0.85-3_0.3",
+          "1642_l_2_r-0_0.04-1_0.79-2_0.97-3_0.42",
+          "1643_l_2_r-0_0.38-1_1.26-2_1.65-3_0.65",
+          "1644_l_2_r-0_0.52-1_0.98-2_0.63-3_1.37",
+          "1645_l_2_r-0_0.22-1_0.3-2_0.26-3_0.84",
+          "1646_l_2_r-0_0.91-1_0.01-2_0.41-3_0.23",
+          "1647_l_2_r-0_0.52-1_0.94-2_0.73-3_0.02",
+          "1648_l_2_r-0_0.25-1_1.37-2_0.02-3_1.05",
+          "1649_l_2_r-0_0.73-1_0.87-2_1.29-3_0.66",
+          "1650_l_2_r-0_0.84-1_0.47-2_1.76-3_1.92",
+          "1651_l_2_r-0_1.48-1_0.24-2_0.19-3_0.74",
+          "1652_l_2_r-0_2.23-1_0.37-2_0.77-3_0.15",
+          "1653_l_2_r-0_0.42-1_0.77-2_0.5-3_0.04",
+          "1654_l_2_r-0_1.06-1_0.41-2_1.06-3_1.04",
+          "1655_l_2_r-0_0.33-1_1.33-2_1.12-3_2.68",
+          "1656_l_2_r-0_1.0-1_0.18-2_0.15-3_0.04",
+          "1657_l_2_r-0_1.41-1_0.16-2_0.47-3_0.2",
+          "1658_l_2_r-0_0.33-1_0.51-2_1.2-3_0.46",
+          "1659_l_2_r-0_0.21-1_1.24-2_0.69-3_1.17",
+          "1660_l_2_r-0_0.76-1_0.56-2_1.51-3_0.09",
+          "1661_l_2_r-0_0.16-1_1.07-2_0.18-3_1.39",
+          "1662_l_2_r-0_0.64-1_1.34-2_0.58-3_1.04",
+          "1663_l_2_r-0_0.79-1_0.09-2_0.17-3_0.79",
+          "1664_l_2_r-0_0.94-1_0.01-2_0.58-3_1.5",
+          "1665_l_2_r-0_0.53-1_0.74-2_0.57-3_0.4",
+          "1666_l_2_r-0_0.08-1_0.17-2_0.62-3_0.26",
+          "1667_l_2_r-0_0.23-1_0.67-2_0.41-3_0.85",
+          "1668_l_2_r-0_1.37-1_0.09-2_0.13-3_0.82",
+          "1669_l_2_r-0_0.63-1_0.67-2_0.19-3_0.84",
+          "1670_l_2_r-0_2.14-1_0.34-2_0.61-3_0.63",
+          "1671_l_2_r-0_0.05-1_1.16-2_0.49-3_0.26",
+          "1672_l_2_r-0_0.59-1_0.55-2_0.79-3_0.32",
+          "1673_l_2_r-0_0.05-1_0.35-2_0.47-3_2.37",
+          "1674_l_2_r-0_0.3-1_0.1-2_0.48-3_1.43",
+          "1675_l_2_r-0_0.66-1_1.25-2_0.2-3_0.54",
+          "1676_l_2_r-0_1.04-1_1.13-2_1.39-3_0.91",
+          "1677_l_2_r-0_2.13-1_0.2-2_0.01-3_0.13",
+          "1678_l_2_r-0_0.93-1_1.19-2_0.97-3_0.67",
+          "1679_l_2_r-0_0.64-1_0.47-2_0.25-3_0.57",
+          "1680_l_2_r-0_0.9-1_0.54-2_1.19-3_0.86",
+          "1681_l_2_r-0_0.6-1_0.4-2_0.07-3_0.16",
+          "1682_l_2_r-0_0.83-1_0.69-2_0.01-3_0.18",
+          "1683_l_2_r-0_0.76-1_0.37-2_0.62-3_0.84",
+          "1684_l_2_r-0_1.33-1_0.17-2_0.25-3_0.57",
+          "1685_l_2_r-0_0.04-1_1.53-2_0.93-3_1.05",
+          "1686_l_2_r-0_0.27-1_0.11-2_1.07-3_0.74",
+          "1687_l_2_r-0_0.13-1_1.49-2_0.64-3_0.87",
+          "1688_l_2_r-0_0.12-1_0.26-2_1.05-3_0.43",
+          "1689_l_2_r-0_0.4-1_0.83-2_0.52-3_0.07",
+          "1690_l_2_r-0_0.21-1_0.5-2_1.34-3_0.24",
+          "1691_l_2_r-0_0.76-1_0.34-2_0.81-3_1.36",
+          "1692_l_2_r-0_1.67-1_0.73-2_0.59-3_0.58",
+          "1693_l_2_r-0_0.89-1_0.33-2_0.78-3_0.46",
+          "1694_l_2_r-0_0.11-1_0.26-2_0.57-3_0.59",
+          "1695_l_2_r-0_0.19-1_2.2-2_0.65-3_0.57",
+          "1696_l_2_r-0_0.21-1_1.05-2_1.09-3_0.79",
+          "1697_l_2_r-0_0.86-1_0.1-2_1.11-3_0.61",
+          "1698_l_2_r-0_0.39-1_0.91-2_0.03-3_0.84",
+          "1699_l_2_r-0_0.86-1_0.89-2_0.69-3_0.09",
+          "1700_l_2_r-0_0.33-1_1.1-2_0.7-3_0.76",
+          "1701_l_2_r-0_0.99-1_1.68-2_0.41-3_0.34",
+          "1702_l_2_r-0_0.64-1_0.09-2_0.6-3_0.31",
+          "1703_l_2_r-0_0.47-1_0.97-2_0.18-3_0.06",
+          "1704_l_2_r-0_2.1-1_0.2-2_0.67-3_0.38",
+          "1705_l_2_r-0_0.75-1_0.71-2_0.29-3_0.78",
+          "1706_l_2_r-0_0.5-1_0.62-2_1.02-3_0.54",
+          "1707_l_2_r-0_1.18-1_0.09-2_0.38-3_0.65",
+          "1708_l_2_r-0_0.1-1_1.14-2_0.67-3_0.27",
+          "1709_l_2_r-0_0.06-1_1.06-2_0.68-3_0.59",
+          "1710_l_2_r-0_1.2-1_0.88-2_0.68-3_1.06",
+          "1711_l_2_r-0_0.96-1_0.83-2_0.87-3_0.51",
+          "1712_l_2_r-0_1.77-1_1.77-2_0.73-3_0.93",
+          "1713_l_2_r-0_0.34-1_0.77-2_1.63-3_0.07",
+          "1714_l_2_r-0_1.95-1_0.33-2_1.63-3_0.56",
+          "1715_l_2_r-0_0.93-1_1.44-2_0.58-3_1.07",
+          "1716_l_2_r-0_0.16-1_0.84-2_0.99-3_1.05",
+          "1717_l_2_r-0_0.0-1_0.2-2_0.5-3_0.54",
+          "1718_l_2_r-0_0.93-1_1.81-2_0.79-3_1.09",
+          "1719_l_2_r-0_0.67-1_1.11-2_1.02-3_1.44",
+          "1720_l_2_r-0_0.16-1_1.09-2_0.62-3_0.09",
+          "1721_l_2_r-0_0.14-1_1.22-2_0.96-3_1.06",
+          "1722_l_2_r-0_0.78-1_0.33-2_1.15-3_1.69",
+          "1723_l_2_r-0_0.67-1_1.09-2_0.48-3_1.32",
+          "1724_l_2_r-0_0.07-1_0.95-2_0.01-3_0.62",
+          "1725_l_2_r-0_1.22-1_1.03-2_0.24-3_0.91",
+          "1726_l_2_r-0_0.08-1_0.09-2_0.15-3_0.32",
+          "1727_l_2_r-0_1.19-1_0.93-2_0.18-3_0.99",
+          "1728_l_2_r-0_1.39-1_0.55-2_0.84-3_0.35",
+          "1729_l_2_r-0_0.94-1_0.67-2_0.35-3_0.8",
+          "1730_l_2_r-0_0.23-1_0.72-2_0.24-3_0.44",
+          "1731_l_2_r-0_0.51-1_1.17-2_0.97-3_0.24",
+          "1732_l_2_r-0_0.49-1_0.73-2_0.46-3_0.38",
+          "1733_l_2_r-0_1.41-1_0.3-2_0.82-3_0.43",
+          "1734_l_2_r-0_0.63-1_1.8-2_1.0-3_0.01",
+          "1735_l_2_r-0_0.23-1_0.59-2_0.2-3_1.15",
+          "1736_l_2_r-0_1.02-1_0.8-2_0.52-3_0.62",
+          "1737_l_2_r-0_0.92-1_1.42-2_0.26-3_0.77",
+          "1738_l_2_r-0_0.06-1_1.17-2_0.69-3_0.4",
+          "1739_l_2_r-0_0.34-1_0.19-2_0.7-3_0.12",
+          "1740_l_2_r-0_0.42-1_0.93-2_0.15-3_1.2",
+          "1741_l_2_r-0_1.18-1_1.63-2_1.2-3_0.42",
+          "1742_l_2_r-0_0.43-1_1.11-2_0.97-3_0.12",
+          "1743_l_2_r-0_0.12-1_0.55-2_1.05-3_0.14",
+          "1744_l_2_r-0_0.64-1_1.88-2_0.05-3_0.58",
+          "1745_l_2_r-0_0.01-1_1.21-2_0.11-3_1.66",
+          "1746_l_2_r-0_0.51-1_1.45-2_1.33-3_0.81",
+          "1747_l_2_r-0_1.27-1_0.36-2_0.85-3_0.6",
+          "1748_l_2_r-0_0.93-1_0.62-2_0.29-3_0.9",
+          "1749_l_2_r-0_0.17-1_1.18-2_0.75-3_2.16",
+          "1750_l_2_r-0_0.2-1_1.29-2_0.12-3_0.24",
+          "1751_l_2_r-0_0.79-1_0.92-2_1.46-3_0.48",
+          "1752_l_2_r-0_0.59-1_0.59-2_0.24-3_0.03",
+          "1753_l_2_r-0_0.39-1_1.44-2_0.69-3_0.83",
+          "1754_l_2_r-0_1.0-1_0.27-2_0.87-3_0.88",
+          "1755_l_2_r-0_2.28-1_0.6-2_0.71-3_1.46",
+          "1756_l_2_r-0_0.36-1_0.43-2_0.81-3_0.72",
+          "1757_l_2_r-0_0.08-1_1.5-2_0.33-3_0.41",
+          "1758_l_2_r-0_0.06-1_0.17-2_0.54-3_1.0",
+          "1759_l_2_r-0_0.21-1_0.35-2_0.51-3_1.21",
+          "1760_l_2_r-0_1.38-1_0.12-2_1.3-3_0.77",
+          "1761_l_2_r-0_0.6-1_0.5-2_0.53-3_0.27",
+          "1762_l_2_r-0_0.49-1_0.97-2_1.25-3_1.57",
+          "1763_l_2_r-0_0.04-1_0.74-2_0.01-3_0.78",
+          "1764_l_2_r-0_0.84-1_0.4-2_0.67-3_0.32",
+          "1765_l_2_r-0_0.21-1_2.31-2_1.1-3_0.17",
+          "1766_l_2_r-0_0.4-1_0.59-2_1.27-3_0.17",
+          "1767_l_2_r-0_0.57-1_0.2-2_0.17-3_0.41",
+          "1768_l_2_r-0_0.26-1_0.3-2_0.71-3_0.38",
+          "1769_l_2_r-0_0.43-1_1.08-2_0.73-3_0.52",
+          "1770_l_2_r-0_0.65-1_0.24-2_0.03-3_0.31",
+          "1771_l_2_r-0_0.94-1_0.22-2_0.87-3_0.5",
+          "1772_l_2_r-0_0.49-1_0.49-2_1.49-3_0.12",
+          "1773_l_2_r-0_1.0-1_0.53-2_0.28-3_0.4",
+          "1774_l_2_r-0_0.1-1_0.88-2_0.89-3_0.61",
+          "1775_l_2_r-0_0.5-1_0.57-2_0.03-3_1.56",
+          "1776_l_2_r-0_0.24-1_1.01-2_0.29-3_0.36",
+          "1777_l_2_r-0_1.14-1_0.84-2_0.61-3_0.95",
+          "1778_l_2_r-0_1.55-1_0.0-2_0.07-3_1.07",
+          "1779_l_2_r-0_0.72-1_0.55-2_0.36-3_0.22",
+          "1780_l_2_r-0_0.32-1_1.13-2_0.35-3_0.62",
+          "1781_l_2_r-0_0.0-1_0.91-2_0.71-3_0.5",
+          "1782_l_2_r-0_0.98-1_0.22-2_0.01-3_0.05",
+          "1783_l_2_r-0_0.05-1_0.01-2_0.43-3_0.3",
+          "1784_l_2_r-0_1.36-1_0.58-2_1.35-3_0.89",
+          "1785_l_2_r-0_1.11-1_1.03-2_0.49-3_0.29",
+          "1786_l_2_r-0_0.19-1_0.31-2_0.79-3_0.2",
+          "1787_l_2_r-0_0.78-1_0.45-2_0.81-3_0.69",
+          "1788_l_2_r-0_0.13-1_0.71-2_0.69-3_0.23",
+          "1789_l_2_r-0_0.71-1_0.11-2_0.14-3_1.37",
+          "1790_l_2_r-0_0.42-1_2.08-2_1.41-3_0.77",
+          "1791_l_2_r-0_0.15-1_1.1-2_0.48-3_0.33",
+          "1792_l_2_r-0_1.41-1_0.34-2_1.05-3_1.51",
+          "1793_l_2_r-0_1.12-1_0.1-2_0.06-3_0.33",
+          "1794_l_2_r-0_0.87-1_0.46-2_1.47-3_1.38",
+          "1795_l_2_r-0_1.26-1_0.72-2_1.33-3_0.73",
+          "1796_l_2_r-0_1.16-1_0.94-2_0.79-3_0.21",
+          "1797_l_2_r-0_0.44-1_0.03-2_0.09-3_0.79",
+          "1798_l_2_r-0_0.99-1_0.53-2_0.25-3_0.34",
+          "1799_l_2_r-0_0.93-1_1.16-2_1.01-3_1.24",
+          "1800_l_2_r-0_0.32-1_0.44-2_0.21-3_0.34",
+          "1801_l_2_r-0_0.9-1_0.87-2_0.07-3_0.77",
+          "1802_l_2_r-0_0.15-1_0.72-2_0.84-3_0.31",
+          "1803_l_2_r-0_0.13-1_0.55-2_1.36-3_1.14",
+          "1804_l_2_r-0_0.69-1_1.43-2_0.75-3_0.53",
+          "1805_l_2_r-0_0.25-1_1.21-2_0.67-3_0.87",
+          "1806_l_2_r-0_1.38-1_0.58-2_0.4-3_0.35",
+          "1807_l_2_r-0_0.59-1_0.23-2_0.68-3_1.82",
+          "1808_l_2_r-0_0.32-1_0.83-2_1.01-3_0.48",
+          "1809_l_2_r-0_1.44-1_0.32-2_0.62-3_0.01",
+          "1810_l_2_r-0_0.12-1_0.1-2_0.81-3_1.26",
+          "1811_l_2_r-0_0.25-1_1.35-2_0.11-3_1.02",
+          "1812_l_2_r-0_0.82-1_0.83-2_0.66-3_0.31",
+          "1813_l_2_r-0_1.04-1_0.06-2_0.78-3_0.72",
+          "1814_l_2_r-0_0.74-1_1.85-2_0.66-3_0.67",
+          "1815_l_2_r-0_1.13-1_0.38-2_0.15-3_0.5",
+          "1816_l_2_r-0_0.4-1_1.52-2_0.2-3_1.09",
+          "1817_l_2_r-0_1.72-1_0.51-2_0.32-3_0.24",
+          "1818_l_2_r-0_1.07-1_0.25-2_0.87-3_0.43",
+          "1819_l_2_r-0_1.74-1_1.07-2_0.34-3_1.81",
+          "1820_l_2_r-0_1.06-1_0.02-2_0.56-3_0.66",
+          "1821_l_2_r-0_0.97-1_0.44-2_0.84-3_0.03",
+          "1822_l_2_r-0_0.96-1_1.7-2_0.39-3_0.48",
+          "1823_l_2_r-0_0.21-1_0.3-2_0.68-3_0.71",
+          "1824_l_2_r-0_0.73-1_0.31-2_0.56-3_1.46",
+          "1825_l_2_r-0_0.22-1_0.5-2_0.78-3_0.98",
+          "1826_l_2_r-0_0.82-1_1.01-2_0.56-3_0.51",
+          "1827_l_2_r-0_0.7-1_0.37-2_1.15-3_1.33",
+          "1828_l_2_r-0_1.21-1_0.67-2_0.11-3_0.08",
+          "1829_l_2_r-0_0.12-1_0.97-2_0.82-3_1.03",
+          "1830_l_2_r-0_1.3-1_0.0-2_0.82-3_0.62",
+          "1831_l_2_r-0_1.34-1_1.87-2_0.92-3_0.4",
+          "1832_l_2_r-0_1.78-1_0.01-2_0.32-3_0.45",
+          "1833_l_2_r-0_0.93-1_0.9-2_1.05-3_0.48",
+          "1834_l_2_r-0_0.31-1_0.05-2_0.13-3_1.32",
+          "1835_l_2_r-0_1.37-1_0.29-2_0.07-3_0.02",
+          "1836_l_2_r-0_0.01-1_0.4-2_0.19-3_0.56",
+          "1837_l_2_r-0_0.97-1_0.54-2_0.29-3_0.41",
+          "1838_l_2_r-0_0.73-1_1.15-2_0.87-3_0.46",
+          "1839_l_2_r-0_0.95-1_0.92-2_0.57-3_1.84",
+          "1840_l_2_r-0_0.31-1_1.18-2_0.56-3_0.2",
+          "1841_l_2_r-0_0.16-1_0.22-2_0.46-3_0.06",
+          "1842_l_2_r-0_0.33-1_0.84-2_0.06-3_0.12",
+          "1843_l_2_r-0_0.82-1_0.57-2_1.2-3_1.05",
+          "1844_l_2_r-0_1.18-1_1.49-2_1.92-3_0.26",
+          "1845_l_2_r-0_0.7-1_0.18-2_0.0-3_1.09",
+          "1846_l_2_r-0_0.75-1_1.99-2_0.21-3_0.89",
+          "1847_l_2_r-0_0.22-1_0.27-2_0.68-3_0.23",
+          "1848_l_2_r-0_1.11-1_0.64-2_0.11-3_0.28",
+          "1849_l_2_r-0_1.24-1_0.9-2_0.25-3_1.47",
+          "1850_l_2_r-0_0.3-1_0.03-2_0.93-3_0.1",
+          "1851_l_2_r-0_0.05-1_0.71-2_0.19-3_0.32",
+          "1852_l_2_r-0_0.21-1_0.65-2_0.23-3_0.08",
+          "1853_l_2_r-0_0.42-1_0.91-2_0.15-3_0.02",
+          "1854_l_2_r-0_1.49-1_2.01-2_0.57-3_0.13",
+          "1855_l_2_r-0_0.32-1_0.22-2_0.88-3_0.08",
+          "1856_l_2_r-0_1.48-1_0.96-2_0.58-3_0.07",
+          "1857_l_2_r-0_0.11-1_0.8-2_1.24-3_0.5",
+          "1858_l_2_r-0_1.62-1_1.4-2_0.16-3_1.07",
+          "1859_l_2_r-0_0.2-1_0.31-2_0.37-3_0.68",
+          "1860_l_2_r-0_0.62-1_0.93-2_0.26-3_0.54",
+          "1861_l_2_r-0_1.58-1_1.03-2_0.42-3_0.29",
+          "1862_l_2_r-0_0.56-1_0.28-2_1.03-3_0.33",
+          "1863_l_2_r-0_0.5-1_0.81-2_0.7-3_0.21",
+          "1864_l_2_r-0_0.28-1_0.55-2_1.17-3_1.52",
+          "1865_l_2_r-0_0.46-1_0.11-2_0.86-3_0.76",
+          "1866_l_2_r-0_1.17-1_0.22-2_0.23-3_0.22",
+          "1867_l_2_r-0_0.05-1_1.16-2_0.15-3_0.06",
+          "1868_l_2_r-0_1.31-1_1.17-2_0.36-3_1.97",
+          "1869_l_2_r-0_0.77-1_0.34-2_0.26-3_0.42",
+          "1870_l_2_r-0_0.34-1_0.86-2_0.7-3_0.71",
+          "1871_l_2_r-0_0.28-1_0.41-2_0.45-3_1.51",
+          "1872_l_2_r-0_0.96-1_0.71-2_0.75-3_1.09",
+          "1873_l_2_r-0_0.48-1_0.63-2_0.74-3_0.23",
+          "1874_l_2_r-0_0.09-1_0.35-2_0.11-3_0.25",
+          "1875_l_2_r-0_0.93-1_0.33-2_1.64-3_1.0",
+          "1876_l_2_r-0_0.66-1_0.19-2_0.03-3_0.98",
+          "1877_l_2_r-0_0.39-1_0.26-2_1.41-3_0.93",
+          "1878_l_2_r-0_0.16-1_2.75-2_0.93-3_1.1",
+          "1879_l_2_r-0_1.29-1_1.65-2_0.78-3_0.85",
+          "1880_l_2_r-0_0.38-1_0.28-2_0.93-3_1.03",
+          "1881_l_2_r-0_0.93-1_0.58-2_0.21-3_0.54",
+          "1882_l_2_r-0_0.79-1_1.1-2_0.5-3_0.88",
+          "1883_l_2_r-0_0.5-1_0.48-2_0.41-3_0.25",
+          "1884_l_2_r-0_0.67-1_1.2-2_0.42-3_0.33",
+          "1885_l_2_r-0_0.95-1_0.95-2_0.02-3_0.39",
+          "1886_l_2_r-0_1.68-1_2.59-2_0.47-3_0.71",
+          "1887_l_2_r-0_1.04-1_0.03-2_0.47-3_0.53",
+          "1888_l_2_r-0_1.39-1_1.32-2_1.31-3_0.16",
+          "1889_l_2_r-0_0.44-1_3.27-2_0.61-3_0.75",
+          "1890_l_2_r-0_1.75-1_0.91-2_0.98-3_0.28",
+          "1891_l_2_r-0_0.47-1_0.13-2_0.99-3_0.0",
+          "1892_l_2_r-0_1.27-1_0.61-2_0.25-3_1.16",
+          "1893_l_2_r-0_1.06-1_0.7-2_2.32-3_0.35",
+          "1894_l_2_r-0_0.34-1_0.22-2_0.12-3_0.31",
+          "1895_l_2_r-0_0.02-1_0.54-2_0.8-3_0.26",
+          "1896_l_2_r-0_1.4-1_1.79-2_0.91-3_0.4",
+          "1897_l_2_r-0_1.04-1_0.13-2_1.45-3_0.16",
+          "1898_l_2_r-0_0.97-1_0.37-2_0.58-3_0.53",
+          "1899_l_2_r-0_1.02-1_0.53-2_0.98-3_1.46",
+          "1900_l_2_r-0_0.05-1_1.14-2_0.34-3_1.08",
+          "1901_l_2_r-0_0.37-1_0.06-2_1.36-3_0.38",
+          "1902_l_2_r-0_0.73-1_1.04-2_0.34-3_1.27",
+          "1903_l_2_r-0_0.47-1_0.18-2_0.8-3_0.27",
+          "1904_l_2_r-0_1.1-1_0.2-2_0.49-3_1.1",
+          "1905_l_2_r-0_0.2-1_1.19-2_0.12-3_0.86",
+          "1906_l_2_r-0_1.74-1_0.2-2_0.37-3_0.08",
+          "1907_l_2_r-0_0.68-1_0.21-2_0.9-3_1.51",
+          "1908_l_2_r-0_1.58-1_1.35-2_0.49-3_0.26",
+          "1909_l_2_r-0_0.44-1_0.76-2_0.32-3_1.09",
+          "1910_l_2_r-0_1.53-1_0.72-2_0.7-3_1.1",
+          "1911_l_2_r-0_0.89-1_0.07-2_0.07-3_1.3",
+          "1912_l_2_r-0_1.1-1_1.08-2_0.02-3_0.23",
+          "1913_l_2_r-0_1.33-1_0.35-2_0.56-3_0.11",
+          "1914_l_2_r-0_0.82-1_1.72-2_0.31-3_0.94",
+          "1915_l_2_r-0_1.5-1_0.39-2_0.79-3_0.4",
+          "1916_l_2_r-0_0.76-1_0.89-2_0.63-3_0.69",
+          "1917_l_2_r-0_0.62-1_1.85-2_0.34-3_1.39",
+          "1918_l_2_r-0_0.17-1_1.53-2_1.13-3_1.29",
+          "1919_l_2_r-0_0.62-1_0.4-2_0.4-3_0.54",
+          "1920_l_2_r-0_1.52-1_0.65-2_1.53-3_0.88",
+          "1921_l_2_r-0_0.23-1_0.63-2_0.46-3_0.5",
+          "1922_l_2_r-0_0.34-1_0.5-2_0.53-3_0.22",
+          "1923_l_2_r-0_0.24-1_0.27-2_1.66-3_0.17",
+          "1924_l_2_r-0_0.01-1_0.65-2_0.29-3_0.92",
+          "1925_l_2_r-0_0.61-1_0.06-2_0.3-3_0.63",
+          "1926_l_2_r-0_0.4-1_1.02-2_0.53-3_0.99",
+          "1927_l_2_r-0_1.49-1_0.43-2_0.88-3_1.76",
+          "1928_l_2_r-0_0.82-1_0.33-2_0.65-3_1.33",
+          "1929_l_2_r-0_1.22-1_0.64-2_0.55-3_0.38",
+          "1930_l_2_r-0_0.96-1_0.05-2_1.71-3_0.66",
+          "1931_l_2_r-0_0.03-1_1.21-2_1.11-3_0.06",
+          "1932_l_2_r-0_1.55-1_0.01-2_0.04-3_0.76",
+          "1933_l_2_r-0_1.74-1_0.36-2_0.31-3_0.2",
+          "1934_l_2_r-0_1.04-1_0.52-2_0.25-3_0.64",
+          "1935_l_2_r-0_0.66-1_0.72-2_0.25-3_0.21",
+          "1936_l_2_r-0_1.45-1_1.16-2_0.91-3_0.16",
+          "1937_l_2_r-0_1.48-1_0.85-2_0.3-3_0.28",
+          "1938_l_2_r-0_0.33-1_0.78-2_0.13-3_0.75",
+          "1939_l_2_r-0_0.06-1_0.95-2_1.27-3_1.02",
+          "1940_l_2_r-0_0.96-1_0.71-2_1.45-3_0.09",
+          "1941_l_2_r-0_1.22-1_1.09-2_0.36-3_1.72",
+          "1942_l_2_r-0_0.7-1_1.23-2_0.57-3_0.64",
+          "1943_l_2_r-0_1.25-1_0.94-2_1.17-3_1.3",
+          "1944_l_2_r-0_0.36-1_0.45-2_1.15-3_0.29",
+          "1945_l_2_r-0_0.04-1_0.35-2_0.33-3_0.32",
+          "1946_l_2_r-0_0.18-1_0.06-2_0.22-3_0.02",
+          "1947_l_2_r-0_0.46-1_0.59-2_1.4-3_0.2",
+          "1948_l_2_r-0_1.19-1_2.12-2_0.1-3_1.31",
+          "1949_l_2_r-0_0.17-1_0.91-2_1.38-3_0.99",
+          "1950_l_2_r-0_0.7-1_1.0-2_1.11-3_0.6",
+          "1951_l_2_r-0_1.45-1_0.88-2_0.08-3_0.09",
+          "1952_l_2_r-0_0.04-1_0.55-2_0.53-3_0.43",
+          "1953_l_2_r-0_0.72-1_1.17-2_0.14-3_0.41",
+          "1954_l_2_r-0_0.88-1_0.55-2_0.12-3_0.54",
+          "1955_l_2_r-0_0.63-1_0.95-2_1.04-3_0.74",
+          "1956_l_2_r-0_0.01-1_1.24-2_0.63-3_0.68",
+          "1957_l_2_r-0_1.0-1_0.41-2_0.75-3_1.14",
+          "1958_l_2_r-0_0.71-1_0.06-2_1.21-3_2.07",
+          "1959_l_2_r-0_0.54-1_0.69-2_1.14-3_0.54",
+          "1960_l_2_r-0_0.36-1_0.5-2_0.1-3_0.77",
+          "1961_l_2_r-0_0.75-1_0.25-2_0.26-3_0.57",
+          "1962_l_2_r-0_1.74-1_0.01-2_1.2-3_0.82",
+          "1963_l_2_r-0_0.6-1_0.24-2_0.9-3_0.09",
+          "1964_l_2_r-0_0.98-1_0.29-2_0.71-3_0.22",
+          "1965_l_2_r-0_1.4-1_0.55-2_1.05-3_0.65",
+          "1966_l_2_r-0_0.64-1_0.52-2_0.51-3_0.54",
+          "1967_l_2_r-0_0.86-1_0.79-2_0.9-3_0.38",
+          "1968_l_2_r-0_0.5-1_0.05-2_0.83-3_0.65",
+          "1969_l_2_r-0_0.95-1_1.67-2_0.39-3_0.46",
+          "1970_l_2_r-0_1.33-1_0.83-2_0.48-3_1.1",
+          "1971_l_2_r-0_0.3-1_0.61-2_0.43-3_0.99",
+          "1972_l_2_r-0_1.11-1_0.99-2_0.32-3_0.12",
+          "1973_l_2_r-0_0.83-1_0.08-2_0.62-3_1.17",
+          "1974_l_2_r-0_0.38-1_1.29-2_0.72-3_0.8",
+          "1975_l_2_r-0_0.13-1_0.08-2_0.09-3_0.45",
+          "1976_l_2_r-0_0.55-1_1.13-2_1.14-3_0.57",
+          "1977_l_2_r-0_0.23-1_0.29-2_0.27-3_0.31",
+          "1978_l_2_r-0_0.24-1_0.69-2_0.76-3_1.13",
+          "1979_l_2_r-0_1.21-1_0.54-2_0.73-3_0.6",
+          "1980_l_2_r-0_0.26-1_0.23-2_1.13-3_0.69",
+          "1981_l_2_r-0_0.8-1_0.26-2_0.43-3_0.27",
+          "1982_l_2_r-0_0.53-1_1.22-2_1.5-3_0.4",
+          "1983_l_2_r-0_1.23-1_0.72-2_0.36-3_0.9",
+          "1984_l_2_r-0_0.15-1_0.19-2_1.06-3_0.54",
+          "1985_l_2_r-0_0.64-1_0.33-2_0.76-3_0.3",
+          "1986_l_2_r-0_0.71-1_0.26-2_0.69-3_1.14",
+          "1987_l_2_r-0_0.64-1_1.37-2_1.49-3_0.06",
+          "1988_l_2_r-0_0.34-1_0.5-2_0.99-3_0.45",
+          "1989_l_2_r-0_0.15-1_0.0-2_0.3-3_0.36",
+          "1990_l_2_r-0_1.73-1_0.5-2_0.8-3_0.52",
+          "1991_l_2_r-0_0.53-1_2.59-2_0.33-3_0.15",
+          "1992_l_2_r-0_0.13-1_0.02-2_1.61-3_0.92",
+          "1993_l_2_r-0_0.15-1_0.63-2_0.49-3_0.6",
+          "1994_l_2_r-0_0.15-1_1.81-2_0.43-3_0.32",
+          "1995_l_2_r-0_0.05-1_0.07-2_0.44-3_0.01",
+          "1996_l_2_r-0_0.4-1_0.18-2_1.16-3_0.14",
+          "1997_l_2_r-0_1.62-1_0.63-2_0.73-3_0.8"
          ],
          "type": "scatter3d",
          "x": [
-          -9.905055649454463,
-          10.240670939968378,
-          9.906061909750367,
-          10.290720128967397,
-          -10.661215860636451,
-          9.431006390062615,
-          10.675727788750171,
-          8.532971506991553,
-          9.85104669139728,
-          -9.881199025328305,
-          -10.80863641055078,
-          10.679260578659983,
-          9.766226897546733,
-          -10.821927694413395,
-          8.783031358166692,
-          10.84724621877913,
-          10.150983978751661,
-          -8.418739807716197,
-          9.990489502496771,
-          10.491015978790776,
-          11.288286078109248,
-          10.576597198173156,
-          9.27423646758659,
-          9.149455264203016,
-          -8.881871288940834,
-          10.117537404240744,
-          9.854351562768247,
-          9.167934011028215,
-          10.32290047246955,
-          -10.226058031971016,
-          9.225681505399837,
-          -10.288035348910519,
-          8.667959484049774,
-          9.817656691077847,
-          10.02624905144214,
-          -11.469969068626254,
-          -9.529691006170777,
-          9.164845366743403,
-          10.594727724791158,
-          -10.266257474193885,
-          10.349332200179274,
-          -9.749377633981647,
-          10.308017761795657,
-          -12.433599286239481,
-          10.803315880901026,
-          10.16886586105708,
-          8.420072589886418,
-          11.252798165879303,
-          11.354285268637234,
-          10.556997277249893,
-          10.070160414255565,
-          -10.26957679802639,
-          -10.39919148312281,
-          9.585786304325483,
-          7.171858973135229,
-          9.463645365436266,
-          10.525946160534778,
-          -8.012441846501321,
-          10.791925739185864,
-          11.37213948237856,
-          -11.83723337224704,
-          -10.696320781603141,
-          -10.62175128515177,
-          10.242192498008002,
-          8.9009827773523,
-          9.659368691817333,
-          8.992900808727697,
-          10.720331987813747,
-          10.278362218001517,
-          10.536585018164633,
-          9.16788056296674,
-          10.462510264728753,
-          -8.92733022689414,
-          -9.754805887801115,
-          7.987530596596413,
-          9.048280666131825,
-          9.03494597742082,
-          8.592213186522041,
-          9.512679688825246,
-          7.591494209945484,
-          10.16387452860615,
-          10.512075162496167,
-          10.205030195691894,
-          -11.53533409115434,
-          8.054797732127158,
-          10.76530004870801,
-          -8.53489557125057,
-          8.87595683007851,
-          10.052074392898648,
-          -7.443994496358844,
-          -9.431738354277256,
-          -10.650178069080255,
-          12.223852866414155,
-          9.36129976512608,
-          9.909471333691677,
-          -8.2444784731489,
-          9.320015754663405,
-          9.91118902347026,
-          10.114096081339056,
-          10.379531961340557,
-          -8.390697198814337,
-          10.0443846773304,
-          -9.15742582374099,
-          10.419936330305287,
-          9.053783654255273,
-          10.788533107995814,
-          -9.852092000472682,
-          10.397804061325498,
-          -9.026532277460952,
-          -10.259672314561527,
-          -10.471187707136549,
-          -9.233092213466417,
-          10.732352458094653,
-          11.693188610817966,
-          10.121742355004203,
-          7.846391720448834,
-          8.395072240032475,
-          -8.8420580864483,
-          9.285856912402982,
-          -10.074851373676925,
-          10.285470387906816,
-          10.34903677238665,
-          9.293981046976333,
-          10.583053993260247,
-          10.489690786823417,
-          9.072020266035235,
-          10.212601682773238,
-          10.652732687050738,
-          10.41293565697862,
-          10.053718334426021,
-          9.452923047939242,
-          11.277800694001588,
-          9.490066722622592,
-          -10.38117677178063,
-          10.196233739436655,
-          -8.599458384549557,
-          11.14426652201496,
-          -10.72329710054115,
-          9.813850856363535,
-          9.791749423526209,
-          -10.363912324806902,
-          9.695841978049236,
-          10.437235041159633,
-          10.302425783867836,
-          10.038347613197248,
-          9.215709565194807,
-          -9.643448167501793,
-          11.170762575682874,
-          8.73543461437979,
-          9.084478813065033,
-          9.67069281883713,
-          -8.581661788243741,
-          10.335967825582552,
-          11.842593181318936,
-          9.655572886680092,
-          10.429456575601868,
-          8.962535682595766,
-          11.407608461877674,
-          11.040841013954248,
-          10.788050873143902,
-          11.36664327727831,
-          -11.736475776652902,
-          10.506729692198123,
-          11.550231257382409,
-          9.339675888767268,
-          9.56564715399253,
-          9.605875728972853,
-          9.86128235927507,
-          10.44241755168903,
-          -9.802095378588719,
-          -11.505176165789614,
-          -10.058540201872477,
-          9.263133172281474,
-          9.498066176939501,
-          -9.478084008705872,
-          9.680555890645904,
-          10.354522535356349,
-          10.400590933061835,
-          11.270240887270944,
-          10.332462666510969,
-          10.005542857002382,
-          9.915310385493083,
-          -9.512688433025632,
-          -8.331710970454852,
-          9.502971428312001,
-          9.936132196445197,
-          9.760672693651724,
-          -9.728421137257879,
-          12.00397102617368,
-          9.896872222959075,
-          10.319080488767945,
-          9.38149208433733,
-          -10.890163598112624,
-          11.47373096220928,
-          8.34773660649747,
-          -10.495129041197332,
-          -9.59715428784127,
-          -10.688372901313917,
-          -8.41240534817536,
-          7.835432145627712,
-          11.424401194516019,
-          10.897489008190396,
-          9.227289890111557,
-          11.365763791116175,
-          10.168928591188257,
-          -11.331923201215218,
-          8.714776806096458,
-          -10.148002850534484,
-          -10.045529497242725,
-          10.65456057964333,
-          7.008159491928065,
-          11.41749826837408,
-          11.201313935736499,
-          11.46551917739199,
-          10.94926730570014,
-          9.57559832196401,
-          -9.814878361936355,
-          11.095935763736339,
-          -12.388982792443139,
-          11.688720592614283,
-          9.583822896161,
-          9.808025415692146,
-          10.662694550201138,
-          10.47637580806645,
-          9.950861509728561,
-          9.62190960755804,
-          -10.262203472396418,
-          11.610254297161832,
-          9.754111116775084,
-          9.441848457315164,
-          9.96126886604928,
-          9.920509843656504,
-          -10.490760551495233,
-          9.448448336265102,
-          8.783154964051976,
-          8.778545627316642,
-          9.202877681276204,
-          9.210191074720603,
-          10.693006343305612,
-          9.571045595263522,
-          9.079260162033835,
-          8.923203640852792,
-          9.25324843956434,
-          9.53280533984166,
-          10.195886010134926,
-          11.353927110436553,
-          9.656831242682792,
-          9.853926815345888,
-          9.921449320324916,
-          10.96460245097775,
-          8.581753227631566,
-          10.099959018140463,
-          9.866522898099692,
-          10.229246471534777,
-          10.190095787083878,
-          9.412843765033838,
-          9.796543472249674,
-          -6.426282233566894,
-          -10.070650749724258,
-          9.218866080564187,
-          11.813201725222772,
-          10.892547069719253,
-          11.224385825850709,
-          11.052986127352055,
-          -8.87726143647513,
-          9.371803598465839,
-          10.269435126431942,
-          10.1900433503469,
-          -9.849362685627211,
-          11.191806037417786,
-          10.658342131561456,
-          10.674925240038542,
-          9.32959668171347,
-          -11.832902566110047,
-          9.708935152474398,
-          11.1429266680379,
-          -11.603615177135415,
-          10.21620558698006,
-          -9.517054055755453,
-          -11.307465066201193,
-          11.631847880322086,
-          10.445969492341074,
-          9.226553205876478,
-          -11.418926240292821,
-          9.258279964035934,
-          10.554994192578073,
-          10.96312811340578,
-          10.148883127520794,
-          9.675788238516605,
-          9.837569251833768,
-          10.119909084275355,
-          -7.9974457454635175,
-          9.940976706054634,
-          10.716397062067045,
-          10.783693134513378,
-          10.078498890994934,
-          9.845412120890762,
-          10.629402212118917,
-          -10.610756889624271,
-          -9.972098890361018,
-          9.96783772516158,
-          9.071720967648492,
-          11.18174815724351,
-          -11.121753778223065,
-          9.752437264065597,
-          9.417719673472353,
-          -10.638336923699892,
-          9.165440096750622,
-          9.430309511429163,
-          9.443294399628746,
-          9.798886273927396,
-          9.706866288426642,
-          9.073419381027453,
-          -8.102512091548457,
-          9.835046265763808,
-          12.366170465868704,
-          10.261945367957805,
-          10.521716059154366,
-          8.568041077066212,
-          -11.002913765455135,
-          9.574158485103347,
-          10.393082174333145,
-          8.84745486571212,
-          10.655579237422609,
-          7.992602700777793,
-          -9.436375346848095,
-          11.944442009247425,
-          9.832685147554859,
-          9.003120199040854,
-          11.000740286851642,
-          11.199968669626198,
-          -10.359358410706752,
-          11.741109759881448,
-          9.47640870784548,
-          -9.8346699730518,
-          -10.459320861691904,
-          10.123515034496045,
-          10.161032542629343,
-          -10.221832417219451,
-          11.121711893831833,
-          9.322523006248812,
-          10.508017381632293,
-          9.424631536501302,
-          10.720873902815475,
-          9.6365737538652,
-          8.6491143105114,
-          10.706899923953243,
-          10.528991668307928,
-          10.786894806795438,
-          9.811898893578995,
-          -9.700445310363806,
-          10.448633865807508,
-          -9.766184589821489,
-          10.949881760307026,
-          10.4678348893764,
-          10.963991944127221,
-          10.087939332997454,
-          10.42990571916574,
-          9.56924332140739,
-          12.282315868957744,
-          11.377606944469399,
-          -11.198839459178064,
-          -8.997412254734284,
-          9.62419822572609,
-          10.399592625615984,
-          9.039267342459079,
-          8.504447078573847,
-          9.819994560112079,
-          8.79447159775427,
-          -12.311716754368348,
-          10.825897323382424,
-          9.168712761313337,
-          -9.690115085607793,
-          10.014108351220838,
-          9.219815583468892,
-          9.3428096264242,
-          9.59664085054431,
-          10.05433912828164,
-          9.138103806650287,
-          10.645130925749077,
-          -10.737601281920089,
-          -9.465462471290433,
-          8.776112991294658,
-          11.281586683387639,
-          10.231012754849688,
-          11.853199422379618,
-          -10.878955667013605,
-          11.601410576145494,
-          9.248552813241814,
-          -9.311576234774874,
-          -9.516390657250723,
-          11.324059318908771,
-          9.861751805456656,
-          10.266616515683028,
-          8.402459022431763,
-          9.783701604143943,
-          10.77783255396183,
-          9.773930714719555,
-          10.466739518169039,
-          9.224344728661878,
-          9.94947933633139,
-          10.241799974417823,
-          10.048531268481353,
-          -11.405303012103843,
-          9.584517088191879,
-          10.693885815131107,
-          -12.819017635222927,
-          11.204842209553949,
-          10.319239188575384,
-          -8.790939498527838,
-          10.070050907178732,
-          -9.310356006353027,
-          -9.220738915193673,
-          9.766805406441831,
-          9.86130491887534,
-          9.996370073312821,
-          -9.614687140953482,
-          9.029265196205406,
-          -8.334345883657937,
-          11.120477129658733,
-          10.76968660876469,
-          8.983279419843688,
-          10.12452827398964,
-          9.978745502720342,
-          8.71052980832241,
-          9.643924648125138,
-          10.493073303142326,
-          -9.399409404423118,
-          10.276078153090657,
-          -11.42293019806444,
-          10.339397265218892,
-          10.7742711628992,
-          7.983229059713498,
-          8.710841714903667,
-          12.106710208219482,
-          10.335904598619482,
-          9.76524605339186,
-          -8.703416109548272,
-          10.45200554371306,
-          9.964637093885184,
-          10.443580022690783,
-          9.929682151274108,
-          9.407073820597757,
-          -10.393992099340423,
-          9.807908848849925,
-          9.592870298919015,
-          -12.17812052470943,
-          -9.627118719766967,
-          -10.85294262658011,
-          10.712307451058393,
-          8.488712318180314,
-          10.128952532550493,
-          10.910433167301042,
-          11.630549492624501,
-          9.112458194357123,
-          9.35357660324489,
-          9.101659345260341,
-          10.326576029423808,
-          10.917417103832818,
-          11.945896795578305,
-          10.478024730229835,
-          -11.252102603374198,
-          -9.370081700328699,
-          9.641495417685736,
-          10.872179041490558,
-          10.37538618441912,
-          10.104582041457206,
-          9.708312414525219,
-          11.083688025004355,
-          10.574959884511252,
-          -7.9023465251730345,
-          -10.357271571100757,
-          -10.798951545253622,
-          9.510538863975256,
-          10.6196624089087,
-          11.05497113897943,
-          11.57603066537131,
-          -10.613716054636248,
-          11.532337747651376,
-          -10.185158432497373,
-          9.719837711193167,
-          7.85100875269729,
-          11.138910775981659,
-          -9.620369865637814,
-          -9.793417832802506,
-          9.413993178884365,
-          9.651168514247598,
-          -9.836310684140443,
-          11.222201365957801,
-          10.175053000706015,
-          -11.447825905637425,
-          -7.6131378487131025,
-          8.791707331122284,
-          -10.513658601416152,
-          9.644844815041033,
-          -10.342773190233753,
-          11.094201135916276,
-          -10.69872429158195,
-          8.182705323380555,
-          -9.384227947290709,
-          -11.001893262044668,
-          8.956627868297568,
-          10.952376013135684,
-          11.010757724772962,
-          9.996245788117701,
-          9.051308162013244,
-          8.68229068760397,
-          11.993865468187359,
-          10.142852325931367,
-          10.28000843097451,
-          10.579790465313266,
-          11.05259113947327,
-          8.700936138205408,
-          9.258783503913358,
-          8.888829833637354,
-          9.609125966025736,
-          -13.590951877872637,
-          9.73131736871313,
-          10.086199885498074,
-          11.512503978147853,
-          9.57159040492664,
-          10.688624175106353,
-          -8.922412139708499,
-          10.076646661120268,
-          9.766206179865279,
-          11.322704370660567,
-          8.938249763215449,
-          9.918997344750098,
-          9.732434866002743,
-          10.30558216450427,
-          11.308451038474768,
-          8.934651419522282,
-          -8.657820128028767,
-          11.01629484166598,
-          9.318655439296556,
-          -11.29159641793073,
-          -11.096281985172386,
-          -10.000297146376012,
-          -9.591365054952908,
-          9.186871707966564,
-          9.136025716313721,
-          9.325808693623614,
-          10.640652505756846,
-          9.416149142222157,
-          9.021216285501977,
-          -11.611318822167373,
-          11.658986157644666,
-          9.66754384112091,
-          10.752080174273594,
-          8.435092689717052,
-          9.627973723066802,
-          -10.178323879740693,
-          7.886861593939621,
-          10.345231745836754,
-          10.06970247345869,
-          11.277033411486451,
-          -9.072688376835242,
-          -9.051698465581305,
-          9.625168646818471,
-          -7.613321783273591,
-          -9.474210659925214,
-          11.126913332941001,
-          9.949720669616884,
-          10.733955178323928,
-          9.678745283360325,
-          -10.962851833763223,
-          11.475808410678274,
-          8.598394739282531,
-          9.067456379798742,
-          -10.884332713373219,
-          10.732210909470783,
-          -10.028328533241112,
-          10.942584822664834,
-          9.583469231603512,
-          9.89073649554831,
-          10.18379746392908,
-          9.897332220671926,
-          9.878131304351747,
-          11.415213086515855,
-          9.295937441402337,
-          -10.257770285141966,
-          -11.348330678714431,
-          8.160960246389882,
-          10.87975513040806,
-          9.508815160339138,
-          -8.923245950366304,
-          10.21628080555745,
-          9.780124616462269,
-          11.59656311826226,
-          -9.797707243968526,
-          10.408392923856317,
-          10.42851769566048,
-          -8.55113976393603,
-          8.982408528639736,
-          8.408148667083616,
-          11.066127503945637,
-          10.938148297649926,
-          9.597162094328601,
-          9.305714378349036,
-          -12.274978888111946,
-          -10.901551929708942,
-          10.292302803972154,
-          8.257796984425065,
-          10.084075679697158,
-          10.030243540945364,
-          12.311971109385675,
-          9.47623423463272,
-          9.333869757571822,
-          10.807191581971853,
-          9.706680206064314,
-          11.3154521025606,
-          -12.50426522165583,
-          9.163044799685867,
-          -10.213480925498459,
-          9.993273053829476,
-          9.716684538280553,
-          9.795943261865675,
-          -7.4305698369539055,
-          -10.447719055012083,
-          11.751753672408778,
-          -9.630275531706312,
-          -9.124858914086573,
-          -10.016579921936305,
-          8.909667629501108,
-          10.204797505873852,
-          10.799426294398303,
-          10.395045005613392,
-          -12.629206180589453,
-          11.61805660825999,
-          -9.417109865197276,
-          10.232688156293355,
-          8.19804662088947,
-          11.72046580534114,
-          10.443434369662228,
-          9.619881344853207,
-          -10.042852817768821,
-          10.034817419182325,
-          10.816188763842808,
-          10.58840755498599,
-          8.966827734451517,
-          9.361848596507688,
-          10.367958347350047,
-          9.756912541705264,
-          8.911479243649547,
-          10.697160775023272,
-          -12.006056820081618,
-          -9.967205184830656,
-          9.274586630401629,
-          -11.499258835570158,
-          10.323257494038906,
-          9.833470525822054,
-          -8.958301482944094,
-          -7.916808485788827,
-          10.548084784535734,
-          11.140698323720603,
-          9.374993257094447,
-          8.234380698629836,
-          9.964648467371081,
-          -9.987621570597865,
-          10.316912627856128,
-          10.190576814205329,
-          10.612641159420928,
-          10.383384862425682,
-          -10.93419711032671,
-          9.669616373519448,
-          11.035768241459909
+          -0.6603312465422371,
+          -0.4875765751785923,
+          0.13057285643061767,
+          -0.061728983393185555,
+          1.8640764806446732,
+          0.7718089332207013,
+          1.9133174633774441,
+          -0.23804468408399515,
+          -0.10803810030392214,
+          1.292285394579021,
+          -0.26479608287559486,
+          -0.6302839245443341,
+          -1.3617056589183116,
+          3.6108084371543083,
+          0.6979778595794512,
+          3.539188200859078,
+          -0.42316469647957433,
+          -0.606557443419838,
+          -1.1878229409655514,
+          0.6692986403270207,
+          -0.7242877881078951,
+          -0.01977476747018425,
+          -0.7490919594386973,
+          0.5541304394449774,
+          0.20548257817174864,
+          -0.07550669666632248,
+          -0.3767697283102416,
+          -0.9599379092469607,
+          -0.1853322165901421,
+          -0.16500034259847007,
+          3.2443184123226265,
+          -0.6740742851557489,
+          0.294931140289848,
+          0.9890315915339203,
+          0.36036257867351973,
+          -0.2789110709895499,
+          1.0133904858146803,
+          -0.3877902450644628,
+          1.7557124292675719,
+          -0.34680870106574524,
+          -0.13199089083445759,
+          1.8441764435848524,
+          -0.8718516273195289,
+          1.4008821934092799,
+          -0.33119490082959224,
+          -0.6818326873733485,
+          -0.07524697317409057,
+          -0.0798212132782723,
+          2.049776784989839,
+          -1.0224306860606514,
+          -0.13643612661366444,
+          -0.04558883964224991,
+          -0.3528151125252448,
+          2.150898280451849,
+          -0.049937644813269344,
+          1.308315898517408,
+          0.969841463225047,
+          1.668866792191904,
+          -0.7039037614534942,
+          -0.6330758566358721,
+          0.03411529354872611,
+          -0.4399828168090385,
+          3.070018578316514,
+          2.5793085007232306,
+          0.8363377812567212,
+          0.12646962193258604,
+          -0.9849336973455807,
+          0.2947172083107924,
+          1.0500439748909454,
+          -0.24836840919937164,
+          -0.007855378798393264,
+          1.4176272502200125,
+          1.544211646190013,
+          1.6425121812041832,
+          -0.3284385261281433,
+          0.14983673740658676,
+          -0.05526460830841384,
+          -0.08901251283605727,
+          2.6706289817202045,
+          -0.1877749071983481,
+          -0.013935620742364208,
+          -0.5665378233032949,
+          0.6495909971041756,
+          -0.7259321460541748,
+          -0.9457426019060327,
+          1.0187703793259362,
+          -0.30720082826985373,
+          1.4079141717198966,
+          1.9863276504173069,
+          2.347675468091341,
+          -1.8407236643448543,
+          1.6468159012133952,
+          -0.8930574109358689,
+          -0.05374781247688798,
+          1.720579855429519,
+          -0.2149897599746411,
+          -0.5781904433543037,
+          0.30636642354457433,
+          2.2709363383363934,
+          -0.18164392498062432,
+          -0.3169173932530487,
+          -0.5565969412108835,
+          -0.7240196891115447,
+          -0.20003651839636905,
+          -0.152138466439941,
+          -0.09074589474437067,
+          3.719132318892343,
+          -0.47432640234393464,
+          1.2803892550925162,
+          1.8433769096622954,
+          0.7829257403865686,
+          -0.5070971129161983,
+          -0.469115830539256,
+          -1.1327438737035167,
+          -0.6658979707993296,
+          -1.5165521542424427,
+          -0.541925967449933,
+          0.6796102566345359,
+          0.31793273449988435,
+          1.148045783666063,
+          -0.11196884466775336,
+          -0.35843857063706164,
+          -0.08105009847573896,
+          0.2333656042380554,
+          -0.3061323972461789,
+          1.0186545401515639,
+          0.019476024366174016,
+          -0.8595157179904356,
+          -1.8817568671376184,
+          0.7455983499818466,
+          3.0158459757415375,
+          -0.5866731193232513,
+          -0.16320007067029585,
+          2.0606596307322897,
+          2.502189609817396,
+          0.4251054567219106,
+          1.3123934759847633,
+          -0.1508775283127064,
+          -0.7914199204816372,
+          -0.15947219183280636,
+          0.6283320902538054,
+          1.1432429564261564,
+          2.4422082605822144,
+          -0.8108765692437214,
+          -0.22128232499418687,
+          0.5377630234347339,
+          2.0687570755669853,
+          0.4741351620767805,
+          -0.13148218172754045,
+          1.459714593138721,
+          3.053515765610054,
+          0.13211440305812217,
+          0.054891289206926985,
+          0.7317408765638718,
+          -1.1546558035957095,
+          1.278407667240183,
+          -0.36349155058920735,
+          -0.2524805615037873,
+          -0.004064996335705562,
+          1.9247676038750283,
+          0.1732839209552014,
+          0.8405659485414955,
+          -0.8586833125207403,
+          0.8580712961866093,
+          1.3745465985197711,
+          1.1889077326189115,
+          2.8457553131939606,
+          0.8486513908153781,
+          2.3042369527904887,
+          1.484260864765662,
+          1.3851196273615507,
+          0.3988399714753643,
+          -0.7635525451405878,
+          0.13810350286199646,
+          0.7385114151938763,
+          -2.503368875702764,
+          -0.41631466670668105,
+          -0.4202177950331538,
+          -0.7155063279124703,
+          -0.020718463477047422,
+          0.06149950832899531,
+          1.9892913888493262,
+          0.05104182378063571,
+          1.8751827008249273,
+          -0.5977069533433994,
+          -0.2784433571990814,
+          1.1291570627915215,
+          -0.113572852598812,
+          -0.4027604534083129,
+          1.7605250048624095,
+          0.3059277476215645,
+          0.024146907536292006,
+          0.0871005946403276,
+          2.2285710946246713,
+          0.5909860786341133,
+          0.7082122333246704,
+          0.6617701441442105,
+          1.8941129690853038,
+          1.8312476754788882,
+          0.1342194491962081,
+          0.5919720363175252,
+          1.3440106587601799,
+          1.7398521239370326,
+          1.138845130206943,
+          0.11738179890676326,
+          0.9589473613785918,
+          0.7335884812726516,
+          1.5894538874535877,
+          1.9897855085718417,
+          0.8766228152987888,
+          0.5801028078894934,
+          0.731040265414248,
+          1.7360611201285514,
+          2.9891937265950883,
+          1.017922430829226,
+          0.8960757241508709,
+          0.9506442770015512,
+          0.8978355997484329,
+          2.5151551758073456,
+          1.7807851395052468,
+          2.137128822320981,
+          0.12496045203371053,
+          0.5036455771654926,
+          2.3324356583750308,
+          1.8147243933356236,
+          1.3576177305490293,
+          0.6152615406471482,
+          1.9061844137497277,
+          0.36409853670797965,
+          2.2991182370353442,
+          0.8017016436218218,
+          2.998912738184326,
+          1.615783419492249,
+          1.311446354668616,
+          0.6837141225133861,
+          0.06259401438092438,
+          2.541672725419529,
+          2.0786901357188756,
+          0.15962256365280458,
+          3.020957815547611,
+          0.18398632615369193,
+          0.06713069428942531,
+          2.086774648926175,
+          0.8037857372129384,
+          0.6863234132054227,
+          2.542202559975429,
+          1.581278789002417,
+          2.049409321031156,
+          0.7988168432323525,
+          0.7930191188389623,
+          1.079304501529687,
+          1.3112498120026328,
+          1.1229487040294024,
+          1.7833511379461633,
+          1.7988605349116065,
+          0.5322599665525392,
+          0.4976794533728185,
+          0.19955373735855964,
+          1.6514116280585687,
+          1.5851873990143057,
+          2.4331992280446446,
+          1.698735419754389,
+          0.11662046884023869,
+          2.2134379858212294,
+          0.946620110866093,
+          1.1458694924371164,
+          2.066173065377928,
+          1.9530514514440531,
+          0.9069282355051821,
+          2.4437959342587856,
+          0.8418034234236491,
+          1.7412497134767269,
+          1.2487948594518534,
+          0.19869795759238507,
+          1.6797318224833937,
+          1.8284870703385625,
+          0.926856165640137,
+          2.4017112372626377,
+          1.7329043387589127,
+          0.9605939521538862,
+          3.5043356973057502,
+          1.8940196813754555,
+          1.3573938233093736,
+          0.9223072498640108,
+          0.7473249347119875,
+          0.027432433403138168,
+          0.839272850225337,
+          1.0972607554932183,
+          1.503171349279906,
+          1.613593511205946,
+          0.799912324197984,
+          2.042235834279772,
+          1.5250515322873617,
+          1.7691518811566187,
+          0.9343202529933416,
+          1.749614650631336,
+          0.17980244035569526,
+          2.9050583357840667,
+          0.7279736472723234,
+          0.14783821766309846,
+          0.7392284579439734,
+          1.0795604951056637,
+          0.7285865439088353,
+          1.541169627133442,
+          0.5072670200256714,
+          0.4777164168728576,
+          1.2941739452925503,
+          1.6763036144106755,
+          2.2753670043494107,
+          1.4209513565832004,
+          1.266994249563584,
+          2.048893290368474,
+          0.982960793095521,
+          0.3002051151487941,
+          0.8079791604587314,
+          0.9377107899155387,
+          1.3713505299462474,
+          0.8675055390287393,
+          2.1220929929248493,
+          0.2395617312106243,
+          1.851463393760023,
+          0.8754479512453279,
+          1.6494937324831906,
+          1.3292751356812125,
+          0.5266962051996409,
+          0.15746249117579503,
+          1.9322654094964826,
+          1.7936094136407656,
+          2.694167711868624,
+          1.06758835238007,
+          1.6788375662012414,
+          3.405466447531003,
+          0.006633681499070732,
+          0.7381055039322031,
+          0.28039833183233587,
+          0.6706167094050454,
+          0.89010491499093,
+          1.6521469383010483,
+          1.0620326914351619,
+          1.987250380062933,
+          1.4260867514202271,
+          0.8294825158367108,
+          0.095675295580546,
+          1.247921812672863,
+          1.7366335220590159,
+          0.2600783063787395,
+          1.1856609000156881,
+          1.691261984982412,
+          1.6892559886157952,
+          0.40121270483720795,
+          0.6880487786438705,
+          1.0005200410818806,
+          0.3473431972325618,
+          2.1131550355216255,
+          0.6915751981344855,
+          1.4906925852565147,
+          0.25696876298708027,
+          0.8324283834884794,
+          1.7146682620030282,
+          0.5810657944187456,
+          1.8644133653463912,
+          1.5229373679165592,
+          2.042233228664328,
+          2.201178499938614,
+          1.1317458762745392,
+          1.1514529746425541,
+          1.12831877129504,
+          1.464589483177461,
+          2.547880360638036,
+          2.4692819480488963,
+          0.09242100750116211,
+          1.0356251546349347,
+          0.19969636342277197,
+          0.708172725793236,
+          2.0233673133588463,
+          0.5354106468912481,
+          3.250786075041122,
+          1.0621848348534393,
+          2.3534386755212653,
+          0.8264754082180426,
+          1.7749070328963468,
+          0.7663997326192856,
+          2.7665442875311905,
+          1.4388747158240378,
+          1.1979898084866725,
+          1.0173002002831737,
+          2.6162772695367,
+          1.1070016444812307,
+          1.6328483956139517,
+          2.3195434311484515,
+          0.7731920580052638,
+          1.9350329267364175,
+          1.0766812219907815,
+          2.268732121069722,
+          2.7419740701418243,
+          0.9330938130583466,
+          0.5539969114453753,
+          0.666824667621361,
+          2.2677179260901617,
+          1.1715126530426463,
+          0.7321623964743565,
+          0.301722000353876,
+          1.797362912688604,
+          0.58705003937893,
+          1.7126382548573345,
+          1.419548305640923,
+          1.1716087363469465,
+          0.19117985802975046,
+          0.9326822119657622,
+          1.6342361977444724,
+          1.1057824341581328,
+          2.638096802897608,
+          3.133927521001217,
+          1.2149448904449232,
+          1.5943579696035166,
+          0.35971330553297653,
+          2.2538694939743102,
+          1.1821464848436294,
+          1.2911168007924116,
+          0.9175199689348985,
+          0.5869206341823174,
+          1.4438053821699446,
+          0.6358622851246436,
+          0.8839474970787142,
+          1.183501083531277,
+          1.9571849111814812,
+          0.1685987628667891,
+          0.34676170525644,
+          0.12016791293838724,
+          0.7926347255275898,
+          1.0591423564727132,
+          0.738360998811761,
+          1.240776596557065,
+          2.313784508751307,
+          0.5915074962672859,
+          0.1972195410873524,
+          0.7766297802764587,
+          1.6318522813959015,
+          1.309813210876366,
+          1.1201950815346782,
+          0.493035687910111,
+          0.5343108117926381,
+          1.750522237000085,
+          0.5688446084959243,
+          1.012040387882515,
+          0.8581453189312789,
+          0.0025976889547956183,
+          0.7438452017870667,
+          1.9380439623953416,
+          1.730463088722576,
+          0.9297384176149501,
+          0.3455671091129412,
+          0.5845745937610075,
+          1.027253489844334,
+          0.3104195707972722,
+          2.457034081623695,
+          1.3939730203887495,
+          4.391881290935481,
+          2.084584524166371,
+          1.1043889213854794,
+          0.34037150931975646,
+          0.10344697800416147,
+          0.4563852345844056,
+          1.971197548977012,
+          1.3522371734985994,
+          3.339614074404897,
+          3.398574665899481,
+          1.1587327476795544,
+          1.5620420785067155,
+          0.8720486954934727,
+          0.7206245370331763,
+          3.706886183831732,
+          1.4295950803187132,
+          1.684550347703061,
+          0.5756509060277875,
+          1.002496668927165,
+          1.1240203718212698,
+          0.32390067068608785,
+          0.09700949930492353,
+          2.530218155783972,
+          0.8259056349974319,
+          0.43445823830998886,
+          2.8032399626014364,
+          0.38332651336125445,
+          1.5191575339209877,
+          2.4900888465341544,
+          0.24957179068923863,
+          1.0699164536821153,
+          0.018124348614163233,
+          1.377501461190914,
+          2.2002287174756967,
+          0.29763780755258884,
+          0.9785161556003311,
+          0.5903041590017586,
+          1.9649733694428377,
+          2.0150743861039344,
+          0.6711256653497308,
+          0.9682596160008307,
+          0.003963370520617904,
+          1.8670507951861501,
+          0.7225508609278207,
+          0.8954743846845837,
+          1.500261715040974,
+          0.9114783233858427,
+          0.39500561089805064,
+          1.9193272190052164,
+          1.1756178924654423,
+          0.9214713866606258,
+          1.3502361292664122,
+          0.21906628042726795,
+          1.777045223095037,
+          2.9964583869297083,
+          1.48551761205996,
+          0.1819120795353344,
+          2.1893786550203447,
+          0.2688821943740175,
+          1.6730962704344432,
+          0.901253859683984,
+          2.5994946909787675,
+          0.712840310770323,
+          1.7622122846851913,
+          1.0885311157294544,
+          2.0093972099279975,
+          1.7700745595338108,
+          0.9644662999060936,
+          1.1638218803956022,
+          2.228178447272835,
+          0.31383614610408705,
+          2.574458491066368,
+          1.1874621597748418,
+          0.3543248956162528,
+          0.809317986652184,
+          1.546161704721135,
+          1.0963633107146997,
+          2.00638517911053,
+          1.1556667064215218,
+          1.1677032822821,
+          1.2328294155084532,
+          1.0722619332813976,
+          0.4104746507730207,
+          1.2722771230405354,
+          1.191339873032385,
+          0.3465208850159205,
+          1.1384222705940261,
+          0.19406493921477308,
+          1.6504231735823143,
+          2.8206723060012378,
+          2.940393257863124,
+          1.2402859604076464,
+          1.8592390223215367,
+          1.095616910676051,
+          0.7151775530991165,
+          1.1978367228378728,
+          0.9508081965820961,
+          2.5867686585098157,
+          0.11032534617755585,
+          2.38425778121596,
+          3.2683584154035086,
+          2.0890006136240187,
+          0.5158967561148958,
+          0.6118347940243412,
+          1.11484401891548,
+          0.22352832483476204,
+          0.589120111367718,
+          3.103341264737188,
+          0.32280493884666106,
+          0.3704134189739523,
+          1.1020402394798388,
+          1.9387283382103706,
+          0.30079860502555333,
+          1.0422613593477754,
+          1.2443407320748152,
+          1.0036246864142357,
+          1.188867138800991,
+          0.20241344029496,
+          1.125214280181737,
+          1.350410984136127,
+          0.7624016584637054,
+          0.7238626781899942,
+          0.07068692571624902,
+          1.0822586720799978,
+          0.3477862156693765,
+          3.153061292172432,
+          0.39294201429653286,
+          0.8873172660372362,
+          1.845575118360374,
+          3.3574965416355944,
+          1.7674364939880913,
+          0.652011487651625,
+          0.6296496234834339,
+          0.49880867978593013,
+          0.26867311984739484,
+          2.055041096546417,
+          0.06327560180281955,
+          1.1619426156670882,
+          0.8548311640270545,
+          2.007752806128633,
+          1.337758970950539,
+          1.474552845900978,
+          2.6830364619451856,
+          0.01015855032249835,
+          0.36169777351175547,
+          0.524111552496248,
+          0.7172574124408404,
+          1.6087183097339044,
+          1.1482162043541204,
+          2.045862170667296,
+          2.2822098875373396,
+          1.1540456457182586,
+          2.0052553889701574,
+          1.2258219466442786,
+          1.6821950826844736,
+          1.2357522085696615,
+          3.06120501388036,
+          0.0620571868281965,
+          0.8457019756476832,
+          2.4013953378986077,
+          1.308136645211941,
+          3.04332442099975,
+          1.8835302711040423,
+          1.0784356206857446,
+          1.167637864208812,
+          2.3242402586566997,
+          0.9535342061859303,
+          1.2904607150833396,
+          1.181215555447166,
+          0.06114714510155739,
+          1.6746152697981787,
+          1.6572673997643579,
+          0.2509069051729852,
+          0.007194566330587793,
+          0.23917856031062346,
+          0.9482395532996006,
+          0.8826811916314716,
+          0.5205042315540508,
+          0.7876580745826676,
+          0.9715568142428854,
+          2.288411215002169,
+          2.689231074789154,
+          0.6071833752560019,
+          1.2916973935199967,
+          0.07921231811795959,
+          1.3138231803120446,
+          0.44192451407618605,
+          1.1253377097328596,
+          0.28888563201699713,
+          1.7022109392862164,
+          0.5434301077086325,
+          0.22958663906595878,
+          0.2597642339517089,
+          2.358489583589014,
+          0.71865408703721,
+          0.1871716881509662,
+          1.7365522657235661,
+          0.7452668688946393,
+          1.992057355782082,
+          1.7856556638970855,
+          0.7107626910050808,
+          0.5043123441491941,
+          3.3098593816265627,
+          2.1998721593685957,
+          1.703952879132209,
+          2.627468882433731,
+          1.0369726645938466,
+          0.18388146084020918,
+          1.6626839151206476
          ],
          "y": [
-          -10.262104212074854,
-          10.089435822710705,
-          9.73048217741532,
-          8.84372543401127,
-          -11.74336514726022,
-          9.48533089857743,
-          10.185998511433528,
-          10.297128980460652,
-          10.306620773331499,
-          -8.94731397606533,
-          -9.452170440394966,
-          7.990310478676338,
-          10.782998587869958,
-          -11.54486609281283,
-          9.80644504889457,
-          10.878886837420362,
-          10.23749507090404,
-          -12.6739937633394,
-          11.67550943954227,
-          9.680707350680175,
-          10.89730791676087,
-          9.439428298115251,
-          8.869476752826067,
-          9.73816013812024,
-          -10.655957385478708,
-          8.248084630632912,
-          9.324606948570226,
-          9.532214967708525,
-          11.118376062793885,
-          -11.958185642372783,
-          8.998748984778146,
-          -10.265476529644184,
-          9.177756181794253,
-          9.720755391632023,
-          9.293915366341789,
-          -8.141227877288975,
-          -10.036477469156628,
-          9.423844982987495,
-          10.26987507846367,
-          -9.452381123211406,
-          10.34097103444396,
-          -11.272643768400021,
-          10.230980029540953,
-          -10.572166294971124,
-          10.560772029305587,
-          10.796700987630757,
-          9.55565762933865,
-          9.35200751434144,
-          10.112264657333833,
-          9.566647000024524,
-          10.030846154047117,
-          -9.637552432019175,
-          -8.56221580963793,
-          10.806800541347672,
-          9.879671386760991,
-          9.270752925405178,
-          10.347974246133766,
-          -10.832658681919815,
-          9.901122784818035,
-          10.421027652229979,
-          -10.814392161850526,
-          -8.56589799501598,
-          -9.783818779090197,
-          8.658436278183984,
-          10.852349671736098,
-          9.979622166447156,
-          9.606641346719616,
-          10.11677962213667,
-          10.021164236401875,
-          10.882651827021999,
-          10.487532398379805,
-          10.006403579549213,
-          -10.985510293700404,
-          -9.707229170330786,
-          9.517133646162824,
-          10.908499358143796,
-          9.214205408542865,
-          9.537712753556217,
-          9.57587310349781,
-          9.181851339692733,
-          9.975647588929485,
-          9.622939699994413,
-          10.473728585964183,
-          -9.138218642963075,
-          9.572019549395005,
-          10.010315779745975,
-          -12.59705707546351,
-          10.036567071181684,
-          9.84711630466857,
-          -9.290937550477683,
-          -8.067641610004182,
-          -10.539222397745789,
-          9.31824338741094,
-          8.981397061360585,
-          11.431754919747421,
-          -12.083824159585085,
-          9.130947628032985,
-          11.202779586816312,
-          10.25700603603683,
-          9.941484254275016,
-          -10.279291628092789,
-          10.249042523637343,
-          -11.725709781774391,
-          9.3407287821758,
-          10.179330262076192,
-          10.22774091535151,
-          -9.232567735940682,
-          9.231246127216824,
-          -10.39229203902207,
-          -9.792156354834551,
-          -8.540740057581074,
-          -11.764149399312192,
-          10.1161965032518,
-          9.62589329239527,
-          10.472964876680313,
-          9.143612411893864,
-          10.967095637451232,
-          -11.07605887791435,
-          9.807367327531363,
-          -9.35244788698565,
-          11.374892223125263,
-          10.500847753106697,
-          10.84691865225814,
-          9.330462889999266,
-          10.5836704645847,
-          9.648138704453524,
-          11.273047037349976,
-          9.805577029069362,
-          9.821794269126363,
-          9.75401732229716,
-          10.108209023774798,
-          9.765201427804634,
-          9.814110769202887,
-          -9.941516454401299,
-          10.033866239408939,
-          -9.871412266768436,
-          9.75565231847062,
-          -9.773652015921279,
-          10.384121859747644,
-          9.87874429089942,
-          -7.86120357589375,
-          8.525590160370957,
-          11.180281211126005,
-          10.419675781304907,
-          10.820179554042983,
-          10.168226984740603,
-          -10.124764769341073,
-          10.06177905333947,
-          10.454597303645905,
-          10.237761309906617,
-          9.441996101469352,
-          -10.526567790331915,
-          11.109208314733886,
-          9.960333640361725,
-          11.440666930126094,
-          10.905194087966262,
-          8.884150365151129,
-          10.095512416813335,
-          9.078105129673474,
-          9.982239306895972,
-          10.26603990776408,
-          -10.298507619371177,
-          9.751755925516045,
-          10.050881640882883,
-          10.005006417074748,
-          8.90582781085888,
-          9.37630496774819,
-          10.200050664124234,
-          10.061133376659209,
-          -11.13366027813558,
-          -10.969589719800707,
-          -10.522726466012417,
-          9.29728188561037,
-          10.068393790621009,
-          -9.849940715936324,
-          9.716368401374432,
-          10.761724126392483,
-          9.60331321618134,
-          9.803494982254945,
-          10.261190908887759,
-          10.294693366558693,
-          9.399404104503528,
-          -9.860167411123745,
-          -11.062011612136125,
-          8.809824300155501,
-          10.016800906527257,
-          9.588584026247146,
-          -10.120178240969395,
-          11.067047860232675,
-          10.209043523511555,
-          9.154224893753707,
-          9.851474296039338,
-          -9.314377630433198,
-          9.939611518522373,
-          7.95044231685117,
-          -10.3633976968925,
-          -8.598268548394957,
-          -9.073735291762747,
-          -9.740265978402853,
-          10.79560543041071,
-          9.904141614251396,
-          10.626588157918032,
-          10.909956399852291,
-          11.064850779376744,
-          9.99614358141209,
-          -8.677302311822306,
-          10.177263018740772,
-          -11.108899936600519,
-          -9.377135737711457,
-          10.267164414630255,
-          9.98739227243983,
-          10.968005438526202,
-          10.585208671215408,
-          10.857264106641061,
-          9.89588828763576,
-          9.398585488369733,
-          -9.94950438024418,
-          10.139128422240477,
-          -8.230483224316183,
-          9.885404360530025,
-          10.725108106394984,
-          12.151184951094255,
-          9.948421159384287,
-          10.971083131204155,
-          10.54245816527037,
-          10.329299160982563,
-          -10.82155912249889,
-          9.659485077821017,
-          10.912683905954125,
-          10.020486711653117,
-          9.225604972671507,
-          11.240319041301614,
-          -9.007344024853163,
-          9.456155022759162,
-          8.822806315518667,
-          9.83135988190192,
-          9.558088488372105,
-          10.180163182356505,
-          10.637203461834192,
-          9.463409713207747,
-          9.73558676917079,
-          9.621747005888382,
-          10.119901565061294,
-          12.582523974541521,
-          11.117598807933465,
-          11.562332117449419,
-          10.976924754285848,
-          8.172583226557363,
-          9.04376022961978,
-          9.689535598292329,
-          9.498545549817186,
-          9.00052420036868,
-          9.157516875738306,
-          10.63841347445582,
-          10.342725365412418,
-          9.752662364003704,
-          10.379984492009509,
-          -10.858696810512507,
-          -9.146331130782066,
-          9.495543516031235,
-          9.712652460242394,
-          9.886125077643548,
-          8.917604620349072,
-          9.893883382102656,
-          -12.053714187224084,
-          11.276530135218623,
-          8.883540003370593,
-          9.574580684488174,
-          -9.870834011435809,
-          10.501382057716603,
-          8.363382227350062,
-          9.668921922685895,
-          9.63301916736754,
-          -10.666968103079407,
-          8.942611253044443,
-          11.623525892508573,
-          -10.262979891135187,
-          9.380737035871963,
-          -8.075345250476746,
-          -10.61965726057398,
-          8.895589714107373,
-          9.250830238893236,
-          9.703937539546121,
-          -8.548628087205687,
-          10.181119719107835,
-          9.158890415684104,
-          11.07831049703419,
-          10.283157345792446,
-          11.627105188882023,
-          9.908975080780975,
-          9.670560471053262,
-          -10.157825119795307,
-          8.641776273429363,
-          8.970650116882599,
-          8.006676125922414,
-          10.135474027412139,
-          9.460804476824055,
-          9.672112073032874,
-          -9.646180408156543,
-          -11.137609414007992,
-          8.275346440748319,
-          8.979526158686054,
-          10.245322940925398,
-          -9.969196948487431,
-          10.100914068085714,
-          10.417768331218703,
-          -10.763339248050482,
-          9.674966697423011,
-          9.728384029557716,
-          10.090118998645076,
-          10.497562448095291,
-          9.491601164478023,
-          10.87952183950631,
-          -10.522385359130904,
-          9.037081569866386,
-          10.77719700375727,
-          10.016120465434332,
-          11.686450700060085,
-          11.27993248588863,
-          -10.037864150241212,
-          8.810474353753891,
-          10.735582265932475,
-          10.159165612082685,
-          9.774353057444639,
-          11.24778487195896,
-          -10.117124427909218,
-          8.982267330560756,
-          9.746908507667559,
-          10.284212150172273,
-          10.034117194611285,
-          10.93528107704676,
-          -10.109206305576388,
-          11.36351773818153,
-          10.383479420876448,
-          -9.758670044620299,
-          -10.702409116688422,
-          10.506954376780122,
-          9.833248636008435,
-          -9.537936338792113,
-          10.455439077833216,
-          10.23272505735249,
-          9.294319838512813,
-          8.785531655244963,
-          10.445798061888995,
-          9.993021225551685,
-          9.637837174834413,
-          10.459314490745712,
-          9.233685387314114,
-          9.888012997336334,
-          12.039569836613243,
-          -10.314392425269352,
-          11.117253563897949,
-          -10.68271266958794,
-          9.208935709972486,
-          8.832538347422801,
-          9.908618141063336,
-          10.522957346164366,
-          11.529619298865072,
-          10.790825452700487,
-          9.249862206472145,
-          10.026024234275939,
-          -10.383407567512872,
-          -11.982855979724373,
-          9.169622411832338,
-          10.073188813559154,
-          10.948258795220633,
-          10.156348242500474,
-          10.943981597471904,
-          10.918276587972423,
-          -8.221257714323109,
-          10.27378224074236,
-          9.421675636448185,
-          -7.641243587857848,
-          10.725529957153281,
-          11.1846849366872,
-          9.001226761729063,
-          9.650706056331423,
-          11.028236235133782,
-          9.855326637234652,
-          10.167927383252195,
-          -10.692950777922228,
-          -10.776265523340268,
-          11.130324963505315,
-          10.004091508864462,
-          9.518805772569824,
-          10.228726217179466,
-          -9.760219932802109,
-          9.940692820786515,
-          10.535971575363607,
-          -10.33870625897727,
-          -10.780724855110241,
-          9.512480401673882,
-          10.037671228132576,
-          8.86807778468738,
-          10.618085387066596,
-          11.047142330674996,
-          9.212154875052207,
-          10.31566037396264,
-          10.511865114363095,
-          9.704931288866295,
-          10.964019900650113,
-          10.59089502418231,
-          9.435278138546822,
-          -8.552041861717054,
-          10.77874889197917,
-          9.921043389436777,
-          -8.994690182560388,
-          8.666268596938822,
-          9.203985371683885,
-          -10.601768510876886,
-          10.024164873865711,
-          -8.848494004490986,
-          -9.937839666450925,
-          9.528842267920579,
-          9.662409158611622,
-          10.933450153134688,
-          -10.496615271169974,
-          11.079325517415755,
-          -9.894129649567121,
-          9.715735536147209,
-          10.748559361646903,
-          11.032025883541847,
-          9.253619465037527,
-          10.758963829439164,
-          9.039856656878646,
-          9.073905874040944,
-          9.50175118925728,
-          -10.68978484296337,
-          9.817651710919364,
-          -9.820536689873933,
-          11.485973481350625,
-          10.58333445321144,
-          11.183927940025933,
-          10.381012058541717,
-          7.993567289991118,
-          9.580930401294937,
-          10.740925963710884,
-          -10.11065328981658,
-          9.01704380003541,
-          10.92118488942703,
-          9.543020705794337,
-          10.025388731599818,
-          10.243142873853346,
-          -9.961003240655987,
-          10.104316636546816,
-          9.190132628898942,
-          -9.510522160266026,
-          -11.456127054363318,
-          -10.957853675789112,
-          9.766132087731245,
-          9.712773799562042,
-          9.849020298344517,
-          10.1755688272838,
-          8.430850604890317,
-          9.762090510458233,
-          9.818959947681005,
-          10.009995044732234,
-          9.455436981245809,
-          9.31616215177632,
-          9.928312688516035,
-          9.549780324693575,
-          -11.004856496447033,
-          -10.582299708280324,
-          9.637873877770115,
-          8.683321300755924,
-          10.90468172202641,
-          9.488932491485015,
-          10.113857534732775,
-          10.973144425204303,
-          9.624862567269924,
-          -11.59647213651596,
-          -9.152473558155886,
-          -10.15414308094141,
-          10.305471484107773,
-          10.408830854705387,
-          10.281778950909771,
-          9.833017349038268,
-          -9.515608124980274,
-          10.508870337920772,
-          -9.754334239559666,
-          9.547901810201147,
-          10.79707940118109,
-          9.085451981256673,
-          -8.457683898761887,
-          -9.669886055552459,
-          9.429204866559967,
-          9.615675277207359,
-          -8.919664218348665,
-          10.790228277251451,
-          9.128711779799444,
-          -8.373433893074726,
-          -12.946262005535033,
-          9.311285680408872,
-          -11.967224826034645,
-          8.36768605126349,
-          -10.505916572473852,
-          9.007433292791747,
-          -11.313474739630543,
-          9.988783337400912,
-          -11.118790079524485,
-          -8.496231715452415,
-          9.653358006846348,
-          9.114347079736355,
-          10.41506467427488,
-          10.057665554824148,
-          9.63160714731387,
-          11.208027200666328,
-          9.645629067039508,
-          10.563590294368511,
-          9.20898335181722,
-          10.377433986495324,
-          9.471496291049613,
-          9.149397429379215,
-          10.559546763502802,
-          9.811548371010613,
-          10.382667821973628,
-          -8.284393906513637,
-          9.3504083320457,
-          10.421091268209235,
-          9.923175570677957,
-          10.052990701016599,
-          9.428357432381363,
-          -11.605361977572835,
-          10.218183052047396,
-          9.334664011690178,
-          10.20189382385166,
-          9.328936498591874,
-          9.405093067905868,
-          9.474502881928817,
-          11.106506054520183,
-          9.839627070335913,
-          9.337746131038006,
-          -9.313023127709236,
-          9.361691937871546,
-          9.991951427557796,
-          -9.148600468309589,
-          -11.703783260162549,
-          -9.986897987322807,
-          -10.934374908495647,
-          11.077078767218518,
-          10.307761135415312,
-          8.987304487509927,
-          10.3839500280665,
-          9.50742429963532,
-          9.423036121230126,
-          -9.496374390870958,
-          10.534171360173456,
-          9.506003076981205,
-          10.886109302247702,
-          10.698536008246693,
-          9.411588643588315,
-          -10.325619016063108,
-          9.005975395017652,
-          9.939399100807588,
-          10.485155691623856,
-          10.416089406523145,
-          -9.671081155751441,
-          -9.75845793011432,
-          9.322671185428478,
-          -9.437663016816224,
-          -11.297145475631977,
-          10.607328117431033,
-          9.849703710566827,
-          10.150312539495363,
-          10.420745328893231,
-          -10.333752058466713,
-          11.268772255927862,
-          9.614639347962617,
-          11.144334703211028,
-          -9.903518200098514,
-          9.73448549971294,
-          -10.50691691714869,
-          9.441571667960133,
-          10.851153882579437,
-          9.198771897018387,
-          10.020759231890663,
-          9.917465991823374,
-          9.741760523314785,
-          9.87977151072492,
-          9.069948843474457,
-          -11.03401594844389,
-          -9.948390967604782,
-          10.14490214208878,
-          10.212589959535782,
-          10.929719236448513,
-          -8.809956112755755,
-          9.822362070816146,
-          10.244076884468718,
-          10.364877050283058,
-          -10.996173615018193,
-          10.979965168716493,
-          9.728173808962334,
-          -9.196787714818884,
-          9.686410182187332,
-          11.25579105719045,
-          10.056294180921656,
-          9.784671203935517,
-          11.036241786507704,
-          9.313727367885921,
-          -10.365388553252927,
-          -9.477245975987467,
-          10.866058654960632,
-          9.162017301223468,
-          9.991216005332674,
-          10.369960794090492,
-          11.326383025292046,
-          11.142723738666763,
-          9.987027416965834,
-          9.576119639599696,
-          8.755930292564699,
-          10.154031040456555,
-          -10.516054263593677,
-          9.974457352167384,
-          -10.008877919043954,
-          10.054524481887807,
-          10.269679760277105,
-          9.412538073748816,
-          -10.162615937197744,
-          -10.086245075917898,
-          9.407415633822117,
-          -9.798308645090936,
-          -9.52009196198737,
-          -9.774582363286052,
-          8.45358305631169,
-          9.721630839389736,
-          10.934188976715813,
-          10.12589727497755,
-          -8.03488338369207,
-          8.948607821743245,
-          -10.355118500935227,
-          10.35588406361666,
-          9.61843745168349,
-          9.981704964996608,
-          11.002040797735315,
-          10.305841847047219,
-          -8.794696174867996,
-          9.327276520551543,
-          9.43115976949206,
-          9.374923743830372,
-          9.797566352505946,
-          11.569169297270404,
-          10.365566223641913,
-          10.191868623477559,
-          10.1979411356937,
-          9.29315503717695,
-          -9.740793131552188,
-          -8.212003779289006,
-          10.315010251677247,
-          -10.49463085645754,
-          9.362502227453893,
-          10.548442830241576,
-          -10.73052650758701,
-          -11.19931272587959,
-          9.262031920897133,
-          10.029531666279874,
-          10.589365825442405,
-          10.848341280166297,
-          11.261035517577904,
-          -10.49400585098899,
-          10.288937620988534,
-          10.193692107001235,
-          10.797752095907768,
-          9.469758958010676,
-          -10.347038707785211,
-          9.847963152355733,
-          10.142108065505806
+          -0.4043554700475873,
+          -1.1976005851226597,
+          0.47501751338751763,
+          0.1712849360031501,
+          0.016640323006574365,
+          0.4378347107523255,
+          0.21255933219839762,
+          -0.9126882341609063,
+          0.17197254378809945,
+          0.17022220718908576,
+          0.3602117523022872,
+          -1.527443123187594,
+          -0.8822395017121593,
+          0.3345022838843228,
+          0.2361425209061414,
+          1.9144437028481325,
+          1.1272188980892133,
+          -2.3112174285903024,
+          -1.8289752902093512,
+          0.19415459092493714,
+          -1.0738167158990761,
+          -1.399808185959715,
+          -1.527243018715641,
+          0.00523612132147333,
+          0.13221766764259435,
+          -1.7355588220888833,
+          -1.9403079838271218,
+          -2.0207853586950133,
+          -1.7859789568897977,
+          -0.304519393204144,
+          0.0731731467579968,
+          0.38147648187587335,
+          0.7346066829149485,
+          0.14932296767488928,
+          0.04825841997310398,
+          -1.253126165389568,
+          0.14492341831340028,
+          -1.7972460878971823,
+          0.1619651229392267,
+          -1.2077242395525694,
+          -0.441467530953602,
+          0.2631021128553699,
+          -1.916121981540282,
+          0.5252882361364015,
+          -0.4737604760758689,
+          -0.0717960551009097,
+          1.3128949460200587,
+          -1.2946194686224897,
+          0.34866098418020575,
+          -0.7788640099313319,
+          -0.736745906207913,
+          -1.5585980713643433,
+          -2.2438736436542377,
+          0.1668472215551795,
+          -1.3368099163015559,
+          1.1965592236117608,
+          0.33832024747096745,
+          0.0378839622629239,
+          -0.8902088676200233,
+          0.2369949137347631,
+          0.5702018543161962,
+          -0.5601192974758569,
+          0.16158246622516703,
+          0.6688394972732317,
+          0.7711704692583148,
+          0.1966190525822682,
+          -0.14776620883066371,
+          0.9739741146701983,
+          0.1985368581304685,
+          -1.3636789449786209,
+          -0.6479619683162858,
+          0.6348283178948742,
+          0.24214201053787177,
+          1.5058457095698055,
+          0.8979771591901036,
+          0.3289750947555665,
+          -1.6221060730800683,
+          0.029453863219265797,
+          0.10224603954852118,
+          0.5387427101781539,
+          -2.0867406745171606,
+          -2.2323227902404836,
+          0.2747644879911497,
+          -2.851616754440424,
+          -1.4916706832691167,
+          0.2655618317748496,
+          -2.078867424978795,
+          0.14479456317923023,
+          0.021799385102904578,
+          0.04801695981205145,
+          -1.1508966288315272,
+          0.13865136706786285,
+          -1.1183942636138116,
+          -2.122688967280351,
+          0.4441458397508058,
+          -1.2357821768672315,
+          -1.3951278409488828,
+          0.26609575465582513,
+          1.6357293043094594,
+          -1.0272305280686624,
+          1.7114851693778244,
+          -0.6346181361956937,
+          -2.8617541256986323,
+          1.743287003600432,
+          -0.9149419069065196,
+          -2.136815654522439,
+          0.04568986657357721,
+          -1.8425886557382967,
+          0.4407449562718506,
+          0.27819684765165387,
+          0.019476986525099438,
+          -0.3635594683828497,
+          -2.233673171124768,
+          -2.392254705809022,
+          -2.3071705977162837,
+          -0.8989628120793495,
+          -0.6721572108812057,
+          0.4569140235289433,
+          0.033168216711181975,
+          0.09545893127300698,
+          -0.444306431254591,
+          -1.249990120078162,
+          -1.4071369270060479,
+          0.10904196241821351,
+          -1.379046704745284,
+          0.2735347999433577,
+          0.6443013513539657,
+          0.49825463212645715,
+          -0.5584877986877562,
+          1.3576597260190932,
+          0.11125483946438997,
+          -1.869781519994532,
+          -0.4538121695900533,
+          0.9453464069586026,
+          0.8172053649793969,
+          0.6380891675811406,
+          1.7292842099546237,
+          -1.4499593278443346,
+          -0.4080751503342325,
+          -0.9579618865198419,
+          0.23689211387107045,
+          0.1444877014444872,
+          0.6505259132914298,
+          -0.5013855297219765,
+          1.3461903978779253,
+          1.086833310028148,
+          0.6922964349910268,
+          0.6540614975927972,
+          -1.2776086041635444,
+          0.3177745043482285,
+          0.49238827977539423,
+          1.0191629686573935,
+          0.06513364335929017,
+          0.11186297994583017,
+          -1.7988634243269925,
+          0.4615013010849116,
+          -1.478026076727019,
+          -0.3588250191251775,
+          -1.709745782930622,
+          0.03687392939703482,
+          0.6019553054820925,
+          0.08612748448227525,
+          -1.7095607564824784,
+          0.15187969602322648,
+          0.4820268804447079,
+          0.40609186701259126,
+          0.9004610563398776,
+          0.4740503270664651,
+          0.7348467911772296,
+          0.0075962110092375745,
+          0.2052731730096755,
+          0.7584655918327927,
+          0.17014640127207437,
+          0.28477229893877665,
+          0.7025313639180273,
+          -1.8149958265664372,
+          -1.0177104838061666,
+          1.0778624814049897,
+          -0.9477011123279327,
+          -0.4573532366013183,
+          1.5486301500429485,
+          0.5538339645471475,
+          0.01317333892574113,
+          0.14700236766459263,
+          -0.9391134647616176,
+          -1.3084250175934644,
+          0.5977915655836679,
+          -2.82458237765674,
+          -0.31956077675320393,
+          -1.4693248913712045,
+          -0.6211150298719056,
+          -0.5949957205852505,
+          -0.6044940725724242,
+          -2.9830148786318276,
+          -2.9494548279314454,
+          -0.6655158127445737,
+          -3.129721831093554,
+          -2.4520895996147507,
+          -1.7428799246305176,
+          -0.989213517634712,
+          -2.2951694782341523,
+          -2.3321883806509054,
+          -0.5587605817933144,
+          -0.968986493717545,
+          -1.9024730768344653,
+          -2.071552051540366,
+          -1.4680686576924713,
+          -1.022309640886835,
+          -1.3001922524134253,
+          -1.2686565375427907,
+          -1.011452825268806,
+          -0.4858909969627856,
+          -1.3684688882462666,
+          -1.5673429160448964,
+          -2.613831721750155,
+          -1.202499557941131,
+          -0.028144083228333727,
+          -0.8042348995035851,
+          -1.9958869378753583,
+          -1.8833775421613825,
+          -1.1331539893613065,
+          -1.6542890300243087,
+          -0.05204553900562803,
+          -1.3998169119805044,
+          -1.7712700838525137,
+          -1.4100995628627064,
+          -1.5368991399396044,
+          -0.5977892601983883,
+          -0.6789995636913917,
+          -1.8255857518537757,
+          -3.98382118780823,
+          -0.8358172356273151,
+          -2.135305069209984,
+          -1.749656727458561,
+          -2.5954718352522614,
+          -1.385075195347055,
+          -1.065479088650312,
+          -1.0993365911041197,
+          -1.3949640970272743,
+          -0.3986527195584869,
+          -0.2717260935934259,
+          -2.7448849894967298,
+          -0.7067093966229993,
+          -2.6567084661469984,
+          -0.8087798586210913,
+          -0.7745690901826576,
+          -1.4375288156603638,
+          -1.0967624662358855,
+          -1.5029527632597208,
+          -1.5287540623922837,
+          -1.5267836356276716,
+          -1.6809955426705512,
+          -1.052293770172027,
+          -1.0878328852335872,
+          -0.23282797645750142,
+          -2.6410052964861075,
+          -1.541276390278467,
+          -1.8436476486152387,
+          -4.013299119022818,
+          -1.2745948003075005,
+          -0.735075051104465,
+          -1.5251765210566584,
+          -3.139699896893856,
+          -1.2751802929598721,
+          -0.31798614713310047,
+          -4.0996343675311575,
+          -0.5500884461196514,
+          -2.405462120745922,
+          -1.6651479502542041,
+          -0.8169955023225136,
+          -2.0125717172597577,
+          -0.40517360961265814,
+          -0.212993033645842,
+          -2.8340149123644522,
+          -1.0559572789498408,
+          -0.576142711696854,
+          -0.7954901904566868,
+          -1.2886003695702992,
+          -0.6925323240154659,
+          -1.4950899553912163,
+          -1.3095941938449054,
+          -0.2130956973941992,
+          -1.227844804431327,
+          -0.7434982420633368,
+          -1.3530543796218135,
+          -0.4925024134588154,
+          -1.7887540156769124,
+          -0.9573961198608885,
+          -1.0297248523931768,
+          -1.271663550126916,
+          -0.7238924125559631,
+          -1.0433735495641991,
+          -0.7841123704357169,
+          -1.3666507678844941,
+          -0.14380412542478238,
+          -1.4872429306292703,
+          -1.7836247739526172,
+          -1.1505431780030069,
+          -0.7100781516201207,
+          -2.0607539573477207,
+          -0.953007093709104,
+          -0.5507729058645664,
+          -0.6716964311946638,
+          -1.6676556869331178,
+          -0.6097708672719325,
+          -2.9199513042058713,
+          -1.3812991534176995,
+          -0.9593737536375638,
+          -1.348863548006607,
+          -0.8830055191173357,
+          -2.5593775773686556,
+          -3.293209065147532,
+          -2.74745309629754,
+          -0.7914502958700943,
+          -0.014669673127618132,
+          -1.708460906922528,
+          -1.9126953834274416,
+          -1.4761972480683911,
+          -0.47320263930378237,
+          -1.8596777368929889,
+          -0.3695547182483009,
+          -1.152896377911017,
+          -0.413207476852094,
+          -2.7533795186249552,
+          -0.18450631457852573,
+          -0.8453871530310408,
+          -0.7177969642030022,
+          -1.2401314746239331,
+          -2.582442008334005,
+          -1.4686914508972047,
+          -1.33771493254432,
+          -0.08907260920932347,
+          -3.652086383692732,
+          -1.5707146240512664,
+          -0.17451845393693166,
+          -1.4328524249624803,
+          -0.0866173642325998,
+          -0.9800740800873413,
+          -0.33522772802348977,
+          -1.1553348105115309,
+          -0.5461019544283159,
+          -0.35366794295087456,
+          -0.8764133010209492,
+          -2.8438362739045826,
+          -1.1309115371291816,
+          -0.19568035792189487,
+          -1.407830340201942,
+          -1.0290264071699435,
+          -0.6852804690362001,
+          -1.9111838700672348,
+          -1.6313091084464069,
+          -1.1668931051684335,
+          -1.8561240495331712,
+          -1.5313474682307489,
+          -0.11473443528440164,
+          -2.269996927138025,
+          -1.4520721154795289,
+          -1.268235489667948,
+          -0.4998269709611396,
+          -0.3407174368471504,
+          -0.7259447330285465,
+          -0.3463078410496958,
+          -0.2620642439368577,
+          -2.5647037181550596,
+          -1.0457058063817297,
+          -0.10378365937259026,
+          -0.9119017503649618,
+          -2.4987146198828487,
+          -1.104204164987219,
+          -1.8501396062117386,
+          -1.2263711612767776,
+          -1.5050788535703241,
+          -0.6314363530420085,
+          -2.073711140946418,
+          -0.616330223634997,
+          -0.0927988122040182,
+          -1.1419805959051956,
+          -1.154868203439883,
+          -1.5884902336632445,
+          -1.6440664177909015,
+          -1.855979810289766,
+          -2.5154831173106564,
+          -0.3296100414457884,
+          -1.6259560150692636,
+          -0.8351659341481299,
+          -0.197645525668959,
+          -1.807726792295244,
+          -1.5956855777842849,
+          -1.0887460345703246,
+          -1.2177178567282927,
+          -0.3343337622637642,
+          -1.0886202606377768,
+          -0.9540181255752194,
+          -1.032579404818956,
+          -0.08822476750995578,
+          -1.306415579853017,
+          -2.317344030468781,
+          -1.2801327703511958,
+          -2.6105598706365907,
+          -2.35385925776688,
+          -1.5356735232779692,
+          -1.51480167893898,
+          -3.440723512970352,
+          -1.287193805776807,
+          -0.8839256511199013,
+          -1.7420446834642478,
+          -1.7571936906553605,
+          -1.1588484052151036,
+          -0.9868405396651042,
+          -1.657726634871095,
+          -1.3332319513031905,
+          -2.79844950928244,
+          -1.8789752460588365,
+          -1.361363420587002,
+          -1.4471169918602111,
+          -1.9197297702785887,
+          -0.6176304537546362,
+          -2.9793271496107203,
+          -2.68894146715491,
+          -1.5512627675231596,
+          -2.427585542204513,
+          -2.9910940699463358,
+          -2.3917084386809018,
+          -1.3065889418734085,
+          -0.8325841419824357,
+          -1.4994057831207734,
+          -1.8062410443089325,
+          -0.7149480839142293,
+          -0.6526035833138495,
+          -0.4990491020145842,
+          -0.9730923188752691,
+          -1.9126724662242782,
+          -0.39916576736922316,
+          -3.233231743382515,
+          -1.5053489308804457,
+          -2.489026146760718,
+          -0.2991425208707613,
+          -1.0849077793995634,
+          -0.24125241698430688,
+          -0.2173761686797726,
+          -1.6821719699387545,
+          -1.9653497647640488,
+          -2.5642574491214303,
+          -0.6772859047963924,
+          -1.0417196219843958,
+          -0.836403248619433,
+          -1.4769052819045716,
+          -0.5465552148381754,
+          -1.1313815948084687,
+          -0.9107796704302502,
+          -0.21969070899979526,
+          -1.3088610007524364,
+          -1.5343869468671198,
+          -2.6612349729362412,
+          -1.185308457963076,
+          -0.8175661577469073,
+          -0.9383684515324633,
+          -0.10587164751037836,
+          -2.4432525195274857,
+          -1.5352359320919324,
+          -1.650491633849359,
+          -2.082563698849463,
+          -1.5928360006646953,
+          -1.5279698956203998,
+          -1.2512086348593099,
+          -0.03186726142757268,
+          -1.2153956186754387,
+          -1.8179451269083846,
+          -0.4447853022931939,
+          -1.6410273371482904,
+          -2.1070130602943875,
+          -0.5492300739438915,
+          -1.5945403035849353,
+          -1.2066948775261328,
+          -1.9310810969660612,
+          -1.4892231035493304,
+          -0.8334009639340433,
+          -1.492442612798555,
+          -1.0297100656978184,
+          -1.351873816123767,
+          -1.5707857775927074,
+          -1.8969876968124968,
+          -3.0705495711240114,
+          -1.9061836856502217,
+          -1.6348047283566296,
+          -0.5117128072993551,
+          -0.7091903456613421,
+          -2.9102721083338183,
+          -1.6543296176560816,
+          -0.43658693992982034,
+          -1.7009911778046574,
+          -1.797592027876876,
+          -0.3054341331350626,
+          -0.5015277620457168,
+          -1.0104892864489359,
+          -0.3730367511834515,
+          -2.06710738385287,
+          -2.5169646702300446,
+          -1.1674587695214098,
+          -2.323888606152856,
+          -0.951451520533051,
+          -2.3228357779432027,
+          -0.05390546592113288,
+          -0.2931862004564143,
+          -1.3652110295791724,
+          -0.537224312197239,
+          -1.1466419111750965,
+          -1.3677279699071976,
+          -1.1780906080515292,
+          -1.828172305356821,
+          -1.2862888779274004,
+          -0.916435046291154,
+          -1.5512614622955176,
+          -0.24018498637478713,
+          -1.9885638568776876,
+          -1.65543817835746,
+          -0.6401513768825923,
+          -1.7758126321759546,
+          -0.02751689559373527,
+          -1.598354720174953,
+          -0.6508410207920474,
+          -1.8946282427620191,
+          -2.2299354505659377,
+          -0.9107561387561822,
+          -1.548274633795298,
+          -2.368416781163692,
+          -1.4008899482950357,
+          -1.1957640489308285,
+          -0.9320780958897702,
+          -1.0280317188460706,
+          -0.4626467082884548,
+          -0.8599593570081833,
+          -0.5603550758560992,
+          -0.10614386437603607,
+          -0.21937364287026762,
+          -1.2418260578666958,
+          -2.4679614362100804,
+          -1.788952470140414,
+          -0.8559310531792544,
+          -2.7942276582884924,
+          -1.001044778261603,
+          -1.4193004615133098,
+          -1.21396895105698,
+          -0.3298553722783464,
+          -0.21299079924189934,
+          -0.48211568905653124,
+          -2.750183076957118,
+          -1.6502403874096188,
+          -0.9561778079233134,
+          -0.5800040322384221,
+          -2.9901948465352994,
+          -0.4795822167021455,
+          -1.6777313835510064,
+          -1.570706560272305,
+          -3.182967139183567,
+          -0.025762169621375897,
+          -1.317853939555691,
+          -3.4317795316868733,
+          -0.914037141451213,
+          -0.12682110730719154,
+          -2.0813430743464085,
+          -1.0539070549977005,
+          -1.5701494796089146,
+          -2.6177334482831722,
+          -2.282076090854754,
+          -0.1325513728094515,
+          -0.7111512711035501,
+          -3.3306272466247315,
+          -1.1364270912782517,
+          -1.7538580606965253,
+          -2.729091126223496,
+          -0.1767957325000704,
+          -0.203695941172657,
+          -1.3689175094492576,
+          -2.5168603641231133,
+          -0.20868171433176597,
+          -2.621348079764225,
+          -1.3161760505584554,
+          -1.4955612599364336,
+          -0.5495215510092686,
+          -2.7737642394422033,
+          -0.989947849047323,
+          -1.72138396728936,
+          -0.589006025967781,
+          -2.2550897059130564,
+          -2.0250612489893465,
+          -1.5253682226387775,
+          -2.155667215457863,
+          -2.0799093171254963,
+          -1.2150934520357533,
+          -1.1413225797498643,
+          -0.35062213630455497,
+          -0.6544761136718282,
+          -1.711351859571689,
+          -1.0171984753347263,
+          -0.43457578169290034,
+          -0.3323723731213234,
+          -0.639243511273115,
+          -0.04823356094051523,
+          -1.9675345849887647,
+          -2.288766007977773,
+          -0.926859886335337,
+          -0.6323973144335375,
+          -1.3433612909994104,
+          -1.1860210757643146,
+          -0.853883098997569,
+          -0.7784170326855853,
+          -0.95055211824127,
+          -0.7122208887734216,
+          -1.0860258844606583,
+          -2.0254354727604214,
+          -0.943927168032508,
+          -1.228313039684879,
+          -1.5422771385924827,
+          -0.8443460312640727,
+          -1.555732722942667,
+          -2.1163686661407692,
+          -0.9131323625568207,
+          -0.9997024996276921,
+          -0.9594600409791133,
+          -0.5510025235098304,
+          -1.9065792169573785,
+          -0.5528868779831952,
+          -1.6231887950991235,
+          -1.2418819521152524,
+          -1.187894796526638,
+          -1.7766728137605297,
+          -0.6918442721987492,
+          -0.49949438252843736,
+          -0.3335441794392988,
+          -1.7888347201286403,
+          -0.6913821544431022,
+          -0.885863348654593,
+          -1.0528785276422208,
+          -2.503117217290539,
+          -2.287348025210173,
+          -1.5802681615459204,
+          -1.666992840885054,
+          -0.8286746174469636,
+          -1.2556182566010643,
+          -1.2667729803123566,
+          -0.37237915411060996,
+          -1.2911648882681062,
+          -0.08414886001287836,
+          -1.593889729421761,
+          -1.4409312713107907,
+          -0.6900451394292424,
+          -1.5380344293076815,
+          -0.24987724197290906,
+          -1.227675396899195,
+          -1.2428033964931038,
+          -1.503095258637067,
+          -1.2604868201461463,
+          -0.32667000621630604,
+          -0.2622504750315846,
+          -1.3713888954012314,
+          -1.5194257645018578,
+          -0.0009124130648493489,
+          -0.8999485629926276,
+          -2.5899526691814665,
+          -1.0251456727460224,
+          -1.3461805421867252,
+          -1.8076660627674743,
+          -0.06947310013819652,
+          -0.8732743869970965,
+          -0.632696437497855
          ],
          "z": [
-          -10.230555969263344,
-          9.943449603693537,
-          9.83151592955282,
-          8.207424721818299,
-          -11.493083342381869,
-          9.631688843033785,
-          -10.059909597766906,
-          -9.762938031068424,
-          10.635510389950525,
-          -9.003051148438262,
-          -9.606599671019785,
-          -10.229689338829768,
-          -9.875030494573027,
-          -11.310470642082286,
-          10.664858566042712,
-          10.301553440129075,
-          10.082028941397647,
-          -12.15219747841474,
-          -9.512242544268716,
-          -10.813551974911014,
-          -9.514027223492661,
-          -9.547040345048254,
-          9.132350937595415,
-          -10.224681257016668,
-          -10.439491433873428,
-          -10.393899134328064,
-          9.132744121082037,
-          9.980693270971319,
-          11.30215846822566,
-          -11.494323312352003,
-          9.178343617635386,
-          -10.223833865431642,
-          10.05824562744489,
-          -10.89665518855344,
-          -8.941823983920374,
-          -8.594734547264304,
-          -9.95705435171784,
-          9.85300388626809,
-          9.785840151403209,
-          -9.54153507848751,
-          10.098545965626075,
-          -11.069445074148513,
-          10.080385684899289,
-          -10.58548372440017,
-          9.955632910808323,
-          11.046136195315944,
-          10.64091731938471,
-          -10.532348098532191,
-          9.067197812174204,
-          -10.328444838825211,
-          -11.674993931862405,
-          -9.610578590701495,
-          -8.79087474328595,
-          -10.130153180428772,
-          -10.189935741089805,
-          9.530263045283103,
-          10.015713561230871,
-          -10.651972396761847,
-          9.320009319360606,
-          -8.947048261331629,
-          -10.771616577627448,
-          -8.832158341759087,
-          -9.940379618352587,
-          8.055148364818805,
-          12.117502107261181,
-          10.066755378224808,
-          -10.553427291034504,
-          9.618314879714053,
-          9.77036256968968,
-          10.80493558210502,
-          -7.943044771106999,
-          9.771998435949216,
-          -10.743495990896845,
-          -9.81444566978263,
-          10.878640213633279,
-          11.90654059617463,
-          9.713046376866382,
-          10.519528749639685,
-          -11.110123797378264,
-          10.946115359997957,
-          -10.128950603294422,
-          -9.993147872900071,
-          -9.967638642289323,
-          -9.425418775175709,
-          10.869006604883023,
-          9.275179633902093,
-          -12.053646604135492,
-          -9.595349347038956,
-          9.881673714490528,
-          -9.292637144107285,
-          -8.29915974625212,
-          -10.496647754859548,
-          -8.932141497047807,
-          9.224110367488537,
-          12.271248080726355,
-          -11.513291596994966,
-          9.41063040423862,
-          11.561515891723765,
-          10.268001682416871,
-          9.6274720572828,
-          -10.133844360202854,
-          10.507492726521594,
-          -11.280118924681164,
-          -10.324885492074491,
-          -9.75187043177544,
-          9.664148764360498,
-          -9.440477206072508,
-          8.597515971912049,
-          -10.2777448471836,
-          -9.902238285559402,
-          -8.797996577916226,
-          -11.480154833912946,
-          9.688862597123988,
-          -10.692130025678125,
-          -9.593851990306524,
-          10.614137180455772,
-          -7.816857802471209,
-          -10.820188525264577,
-          10.16402625352853,
-          -9.498174422529653,
-          11.69806619780917,
-          10.326183236189856,
-          11.836848929756636,
-          8.583053573694299,
-          -9.91661156663952,
-          10.283623735061031,
-          -9.835561721061012,
-          8.996379868920878,
-          9.187529578267837,
-          -9.497870591404666,
-          10.549745859001215,
-          8.508008499881432,
-          -8.39161167439587,
-          -10.049282822940027,
-          9.866501139144528,
-          -9.80949567286796,
-          8.945628471926062,
-          -9.796419593362325,
-          -8.86446102979093,
-          -9.728289751905713,
-          -8.23453541096567,
-          8.407536809131425,
-          11.249906625151802,
-          10.381858661847065,
-          11.183724686477328,
-          10.741015305810691,
-          -10.150190214296474,
-          9.090892460826318,
-          11.738089778489174,
-          11.155741046268346,
-          9.491235053450175,
-          -10.341706774668658,
-          11.256236816618927,
-          -9.011097014959262,
-          12.30012633609007,
-          10.739618503655814,
-          9.389477310186491,
-          8.745919941157833,
-          -10.714331766950178,
-          9.269914651328696,
-          9.32343756498837,
-          -10.260026159210051,
-          9.12191087758175,
-          8.713561034808912,
-          -10.29925856673019,
-          8.96694956125294,
-          9.397716962812595,
-          10.436125877631168,
-          9.818496479176307,
-          -10.883932333602862,
-          -10.876470682884792,
-          -10.506534530656207,
-          -10.354521863745964,
-          10.35259329580629,
-          -9.86100014486067,
-          -10.084228431523002,
-          -10.771515105050343,
-          9.332022221391174,
-          -10.57968956969147,
-          10.072531741427301,
-          10.26430955147939,
-          9.129079685176759,
-          -9.841272889864467,
-          -10.803738819547036,
-          8.96875627695674,
-          -9.946184914696946,
-          -9.41090374910199,
-          -10.079036890866755,
-          9.733342485017383,
-          -10.536481648660857,
-          8.765126145568066,
-          -10.098439164445256,
-          -9.505784198518116,
-          8.646797325413154,
-          8.63239691343337,
-          -10.329420937741215,
-          -8.813297348754386,
-          -9.1980459445086,
-          -9.547081328083253,
-          -10.768967608172982,
-          -10.697298129414232,
-          -9.21410504494641,
-          -9.832297782041959,
-          10.375917773888546,
-          10.027014770711482,
-          -9.076547025722052,
-          -9.953692131935007,
-          -10.940527782072763,
-          -9.520874772416446,
-          9.939106386737798,
-          -9.353766691756347,
-          10.036451110986556,
-          9.689049001552204,
-          10.084019923526576,
-          -9.010089270735287,
-          9.52047261576208,
-          -9.95598019187799,
-          9.380008793561535,
-          -8.705227508725194,
-          8.402323196710908,
-          11.40606417160879,
-          -9.629335609076154,
-          9.3117545149268,
-          10.901288961923154,
-          10.663976751904293,
-          -10.44956431162972,
-          -10.638662068551627,
-          -9.974248723695641,
-          11.259818286736916,
-          10.479371937948716,
-          9.081499801015829,
-          11.828621657646096,
-          -9.243061956424265,
-          -10.223016318088343,
-          9.414418122151803,
-          10.816630658415903,
-          -9.89551841900301,
-          -9.812698742573943,
-          10.6602377567279,
-          9.612292216498844,
-          10.206634336422592,
-          10.309636354000618,
-          10.812366044725625,
-          -8.988683350148861,
-          11.055641850218208,
-          10.987110895971615,
-          11.643093073714601,
-          -11.269148896472956,
-          -9.771220381114208,
-          8.611184402053693,
-          10.36072701330514,
-          8.542298452923548,
-          8.929376263594364,
-          10.679058707532235,
-          10.274695805774488,
-          -10.431145383658155,
-          10.68789426375039,
-          -10.447659476305125,
-          -9.364259339132397,
-          -10.06739487036616,
-          -9.442692161756815,
-          -9.764503302173656,
-          -9.555244218172275,
-          -10.60440643738951,
-          -11.652682987290769,
-          -9.186568636527818,
-          8.301205500189992,
-          9.19631442508856,
-          -9.909541245657081,
-          9.666110293648984,
-          7.304392731578492,
-          -8.658695722142355,
-          10.006131684783897,
-          -10.796781868460517,
-          8.642527773865748,
-          11.342934803491914,
-          -10.254866901831406,
-          -11.087020311781451,
-          -8.478871488335557,
-          -10.583745996547643,
-          -10.987268830442114,
-          -10.773585638795627,
-          -11.207906134962835,
-          -8.946226135260693,
-          10.787871658046665,
-          8.278474941347538,
-          -8.495654594763543,
-          10.363268694875758,
-          12.298134191916553,
-          9.957058858686569,
-          9.427326717142545,
-          -10.018531006571019,
-          7.942550085121189,
-          -9.325028949947244,
-          -9.793487653114424,
-          10.178837068129306,
-          9.427919224755565,
-          -9.530080881278847,
-          -9.814196925258486,
-          -11.030428098235848,
-          -10.802740642939296,
-          9.303821381565989,
-          9.521709487041147,
-          -10.137581763009496,
-          10.293564182165,
-          10.945341164716782,
-          -10.668848775115888,
-          -10.338269015393987,
-          10.14461517648908,
-          10.459485271690765,
-          10.590057591618184,
-          9.387331665495589,
-          11.989008186446686,
-          -10.2580163902293,
-          8.683032619845259,
-          -9.460659153856785,
-          9.794515641786885,
-          11.846833214989065,
-          -9.175280298467712,
-          -10.229618541171325,
-          8.595376936766527,
-          -8.841474207722102,
-          11.000714620270566,
-          -9.338845523701206,
-          -10.244839970045009,
-          -9.985441379284604,
-          -11.759975930142014,
-          -11.36928453358672,
-          11.377500587078558,
-          9.2045249558089,
-          -10.187663867798902,
-          -10.094238184551022,
-          10.509169715517196,
-          10.790290386836874,
-          -9.808656707468113,
-          -10.63210373500242,
-          10.40704815617568,
-          -9.746290261586651,
-          -9.625236588153415,
-          9.557904975495745,
-          -11.07688307761593,
-          8.59140414880924,
-          9.071110529616567,
-          9.974567027614174,
-          -9.834201720261948,
-          10.520805193148629,
-          10.070696285962557,
-          8.32057345650998,
-          -11.003632698563397,
-          12.938923736104838,
-          -10.329994117821016,
-          11.038941040441024,
-          -10.588401033778114,
-          -10.102820581030004,
-          -11.102195386635444,
-          9.17705915466587,
-          10.617781074121387,
-          11.756143170161227,
-          11.494954979851045,
-          -10.499253635615066,
-          -11.029146615397597,
-          -10.415558460741991,
-          -11.631577598983926,
-          -10.31216375362001,
-          9.832796470326732,
-          12.071490905250391,
-          11.5096287259074,
-          11.419573039171503,
-          -9.424604993974338,
-          -8.681114158813797,
-          9.851478047544123,
-          9.695126576451061,
-          -8.003762543300216,
-          10.737578426534947,
-          12.11314719249468,
-          9.125017514510832,
-          9.967547203778437,
-          11.379692901338025,
-          10.209730496992243,
-          9.803401010613436,
-          -10.735335514451357,
-          -10.537680571114688,
-          12.612399596644122,
-          8.859703679158946,
-          9.163588414737529,
-          8.84541583480365,
-          -9.920451084871182,
-          8.76643345252603,
-          11.358089408362932,
-          -10.327917947922124,
-          -10.555161356110695,
-          -9.040548796292649,
-          10.182206775485449,
-          8.256472156850961,
-          12.175835805312289,
-          -9.379283721795217,
-          -10.686761038732651,
-          10.457211817193183,
-          -10.07187212511684,
-          10.215720606737444,
-          11.234414158009269,
-          10.729783004647462,
-          9.209183536438514,
-          -8.8810194466639,
-          11.495757799564704,
-          9.417754517769609,
-          -9.401426305783666,
-          7.165691965770704,
-          -9.123860762485725,
-          -10.446822332996904,
-          -9.916360993662257,
-          -9.055060725992606,
-          -9.878538986834128,
-          9.524224566886922,
-          9.864889631231588,
-          11.358763475999774,
-          -10.303231961697994,
-          12.298329347718692,
-          -9.755799702950053,
-          -11.293509368591991,
-          10.239773463969032,
-          12.399169402055849,
-          8.724122123822738,
-          11.309010643495908,
-          9.905848729319928,
-          9.04427914476847,
-          8.99404325120562,
-          -10.566613161897841,
-          9.658199536596369,
-          -9.894342207234846,
-          -8.417631207738664,
-          -11.193007492112377,
-          -11.195873801781302,
-          -9.324766547987629,
-          -11.65305630075038,
-          -10.10234715918712,
-          11.10900529075943,
-          -9.948139950035744,
-          -9.710603699408402,
-          -9.83903884087962,
-          9.186907513941065,
-          -11.749587362096406,
-          10.828853707277451,
-          -9.997009033484577,
-          10.231682585647027,
-          9.266139404469977,
-          -9.713893132085968,
-          -11.092171669586685,
-          -10.985567986389581,
-          9.146278570112026,
-          -9.676074534055306,
-          9.700203747072765,
-          9.614766659938365,
-          -11.433548883832888,
-          10.144943743675832,
-          10.20419905672814,
-          10.630659207859695,
-          -9.255230147498184,
-          -10.522745279780743,
-          8.307165400302846,
-          8.948597211986527,
-          -10.896137907613086,
-          -10.50492064849407,
-          9.786331510434897,
-          7.501774643653697,
-          -9.845773239155154,
-          9.285352730260302,
-          10.621350844616678,
-          10.303884063152859,
-          8.945683569207144,
-          -11.214610236865726,
-          -9.223103500442551,
-          -10.093894101611475,
-          -10.9699924053395,
-          10.027686358288925,
-          9.459995729481685,
-          -10.268161634946338,
-          -9.661689299468673,
-          9.530057641081743,
-          -9.741937357762877,
-          9.682767420943192,
-          -10.523905133566531,
-          -10.47870462918536,
-          -8.627370875918174,
-          -9.623680313862172,
-          9.657460869500333,
-          9.509732874618335,
-          -9.117571049510557,
-          10.054075949522375,
-          8.822810481079472,
-          -8.717966321608202,
-          -12.283595349740432,
-          10.163659188998317,
-          -11.694449288888833,
-          8.39827497873839,
-          -10.485326514376075,
-          7.9023514103742105,
-          -11.233216680507997,
-          11.407455217127653,
-          -10.866318939967432,
-          -8.821236344806183,
-          -11.329301363907087,
-          7.959333016256657,
-          9.518680665061378,
-          10.287059112238763,
-          10.355706625799334,
-          -10.659785048142773,
-          -11.028449735532746,
-          10.64607925982355,
-          -10.013728803863687,
-          10.278849462486328,
-          8.336118214965834,
-          -11.31323889530861,
-          -10.611542434429644,
-          10.611998586407527,
-          10.75977414852684,
-          -8.801192651315677,
-          9.226459130081775,
-          -11.485914362545156,
-          8.432533480549097,
-          10.61549075914862,
-          8.568621398117806,
-          -11.282762398045325,
-          -10.823327071706197,
-          9.369307694534486,
-          9.101512571790662,
-          9.968856872520146,
-          9.320493863543215,
-          9.631301780823298,
-          11.234422510569441,
-          8.715655418456581,
-          -10.301433881761428,
-          -9.353153846732534,
-          8.057811627624654,
-          -9.933755598638765,
-          -9.277620639756991,
-          -11.521952241634096,
-          -10.019801987424,
-          -10.808864504917716,
-          -9.391690385766905,
-          10.996189300367066,
-          9.194483592146927,
-          -9.796403987185371,
-          9.858110097793388,
-          10.017981269117836,
-          -9.723002113554895,
-          -10.550743922673371,
-          9.737790957478788,
-          10.46341456212497,
-          -9.871571968368533,
-          9.55272214093674,
-          -10.305788931714806,
-          10.742569904279959,
-          9.753147616187745,
-          10.675036821683031,
-          9.434181586426167,
-          -9.646141130996694,
-          -9.788650537279718,
-          9.257842051900772,
-          -9.489119344765154,
-          -11.091312375514628,
-          -9.623788099995958,
-          9.876115099989219,
-          -9.312699255924738,
-          10.809769244868589,
-          -10.370265625807972,
-          10.453243508171983,
-          -11.164777100094566,
-          -9.541597705711643,
-          -9.958493588232768,
-          -9.855108226699352,
-          -10.488415156921128,
-          8.502909956412402,
-          -8.57838246482655,
-          9.024401844307365,
-          9.810209100255667,
-          10.065816436944013,
-          -9.332975619102392,
-          8.750110426227796,
-          9.185483493515047,
-          -11.026027043333343,
-          -10.082349320571655,
-          11.883972603984859,
-          9.503598826133585,
-          11.740652357200975,
-          -8.966831927825236,
-          9.561549785535176,
-          10.492605939921033,
-          9.188434461791942,
-          -10.79821383150257,
-          10.844210033517953,
-          -10.694100038307743,
-          -9.232346623555319,
-          10.449008330813125,
-          -9.618891172376612,
-          9.09776913985728,
-          9.10385112457164,
-          -9.231580715625018,
-          9.572594610470512,
-          -10.541823194235425,
-          -9.705074070384597,
-          -8.89924339161062,
-          10.244715455532814,
-          -10.370221223298275,
-          10.350450629066954,
-          10.011138273167328,
-          -11.058413100271295,
-          10.645551601967771,
-          8.84614154154776,
-          8.404230861284017,
-          -10.822591402065042,
-          -10.614294085653134,
-          10.597098566452289,
-          -9.94101015043924,
-          10.16288675049461,
-          10.634547262970418,
-          9.302617878059847,
-          -10.044114606331076,
-          -10.095083169246085,
-          -10.538135802343684,
-          -9.831682247174538,
-          -9.46871239967867,
-          -9.890838836137672,
-          8.697672138910509,
-          9.357785850818487,
-          10.718092906746442,
-          -9.439843579470512,
-          -8.55672086024236,
-          -10.827393018365765,
-          -10.192847785697744,
-          -9.58198568985557,
-          10.93352410298436,
-          8.583443124716727,
-          11.079063064656431,
-          -10.35282082374594,
-          -8.878843772591116,
-          8.997376214244904,
-          8.690640502151313,
-          8.530215184345575,
-          -10.867106920374013,
-          -7.996297196521823,
-          -10.344492726129562,
-          10.390850008295667,
-          11.317404499542839,
-          8.50557823687131,
-          -10.015682189664048,
-          -8.530425870233854,
-          11.126741233468548,
-          -10.53004454200137,
-          8.994402160335156,
-          -8.66352461993878,
-          -10.499982413834033,
-          -10.758566091395005,
-          8.564915500886991,
-          9.201265295171865,
-          -10.179553585709032,
-          -8.648742248639683,
-          -8.644936484763118,
-          -10.375261320269308,
-          10.182169508489688,
-          10.124632215849838,
-          10.514828789465117,
-          9.070933078013715,
-          -10.318248671248702,
-          -9.735247021032569,
-          -8.678095628748482
+          -2.995902220627354,
+          -4.297220688623803,
+          2.046988808650867,
+          2.92352181720243,
+          -4.244066193248494,
+          -4.753097513969618,
+          -4.205358632387636,
+          -0.8010135203168707,
+          -0.9164761466389084,
+          3.3728615026366766,
+          -0.23577722000954093,
+          -2.3863489877675863,
+          -0.8459343946661271,
+          -3.149856361186477,
+          -3.520906890368283,
+          -1.2682976275385238,
+          3.2295190141938166,
+          -0.5393051603706782,
+          0.2696886035932957,
+          -1.7647644268574,
+          -2.8090593933085524,
+          -2.388357322753594,
+          -4.184985131117776,
+          1.4087783162374166,
+          -1.8157893383528378,
+          1.860492347429668,
+          -3.399878004355235,
+          1.0304700348076006,
+          -4.236481459632994,
+          0.12266812714060027,
+          -4.757848277015091,
+          1.2973572876324493,
+          -0.02729467076905845,
+          -3.2494345634786517,
+          -0.26520727977396064,
+          2.139119103614248,
+          1.707649572472537,
+          -3.8562803412737976,
+          1.455936809434939,
+          -2.7975119145592817,
+          -0.8383781341696555,
+          3.3557135633074813,
+          -5.011902049457403,
+          -3.3886076778509215,
+          1.0852740841731991,
+          3.484236078952068,
+          1.8309497742712217,
+          3.470739961019965,
+          -3.9787973191846215,
+          -1.5898368361697548,
+          -2.158114465552442,
+          3.723439112373847,
+          1.2800203918911954,
+          4.375533600205224,
+          -3.813961207151089,
+          -1.6896717175512261,
+          3.352982715492982,
+          4.269791142157657,
+          2.1214801820631317,
+          -2.7040745120688388,
+          3.8552021751919705,
+          -1.4964979351880086,
+          -1.1754301683779693,
+          -4.273695877359421,
+          1.4315644090250421,
+          -1.8380962862054862,
+          -1.414382328793622,
+          -2.612975151316837,
+          -2.9260385182968545,
+          -3.0436505311284163,
+          2.5850555110587603,
+          1.3821158004019356,
+          2.5191182522595774,
+          0.13109401433843626,
+          -2.6080279017849706,
+          -2.341004542491536,
+          4.078142087782525,
+          -4.882358044157243,
+          3.376703869778022,
+          1.1947655651030367,
+          -3.6405300283064492,
+          1.537781773861898,
+          -3.802295485273017,
+          -0.6588202746852669,
+          0.9514945285519856,
+          -0.3103723562686769,
+          -2.9134882948118044,
+          -2.5100077128878246,
+          2.1227981662539284,
+          -2.0790530089489656,
+          -1.8609772854804163,
+          -3.3689733349161477,
+          1.234658487332478,
+          3.752249544077139,
+          -1.9385893538050625,
+          0.18483724410919766,
+          1.928763369891283,
+          0.26712454420072707,
+          -3.8736263527940524,
+          2.6702134156626443,
+          3.5268652860727867,
+          3.778417161943257,
+          2.961112626354814,
+          -2.3275342776113006,
+          1.802196386355222,
+          4.267717292218353,
+          -2.2181470175781186,
+          -4.08756015318273,
+          -0.5574420475963153,
+          4.104246957484132,
+          2.7990980728582233,
+          2.46285549439669,
+          0.23209816562458485,
+          2.4575019105757248,
+          3.1951182263880726,
+          3.5204939229148744,
+          -4.196083462541334,
+          -3.7533533721154093,
+          3.8681406916146512,
+          -1.2244426006330902,
+          2.338156997528446,
+          3.031025988416098,
+          -0.9148563548808752,
+          -1.7011874541809897,
+          -4.679961414885341,
+          2.703846865436547,
+          -3.738774832618536,
+          2.332902597673403,
+          -4.602033044222664,
+          -0.4326095833136847,
+          -0.45020234425404304,
+          -1.4707103512556738,
+          -4.2388121248679305,
+          -4.895186351745539,
+          -2.9131287544726394,
+          -2.7380101183632863,
+          -4.876985340622367,
+          2.9205569943958825,
+          4.225168365337628,
+          -1.273793491192437,
+          -0.6328094622734008,
+          -4.561859276830823,
+          -1.4642851047030723,
+          3.911259082262581,
+          0.495275458973202,
+          -3.747366079303754,
+          0.8419578114819002,
+          -3.0159173237617036,
+          -0.5932364263254213,
+          -3.6197917609882957,
+          1.9204238541814505,
+          -4.576136040746846,
+          0.912641259945306,
+          2.949062905709334,
+          -1.4145271767465726,
+          -4.475157209361207,
+          2.449068661156998,
+          1.836123402538541,
+          2.465563034130999,
+          -3.143290553176069,
+          -1.1542808287375381,
+          -2.800441860727309,
+          -1.5618574868852204,
+          -2.8815930427380265,
+          1.4040344186151952,
+          -4.892524354652274,
+          -0.4464181893127357,
+          -0.626384018447105,
+          -2.3690151747679264,
+          -4.60649922761134,
+          1.0236655601936624,
+          -3.1787685771427663,
+          0.8447801233234538,
+          -2.230256759104822,
+          -1.939756585653476,
+          4.096819556962305,
+          -2.8354158009774784,
+          -3.720694498274546,
+          3.7724842368688867,
+          0.974215664647855,
+          -3.97537791847928,
+          2.939548187953098,
+          -1.9394148600010253,
+          0.06898884294771612,
+          2.5221127613158876,
+          -2.70454897919119,
+          -1.0038849503392084,
+          0.8475753349666899,
+          -1.4288596191699354,
+          4.022623779537663,
+          1.483615783306007,
+          2.0015626414602634,
+          2.4459365279594323,
+          -3.600625494422326,
+          -2.7499717591792927,
+          0.4426035689402532,
+          -2.676947767359758,
+          0.036201488357349376,
+          2.629201583714817,
+          -0.16614550799508354,
+          -4.007423707720081,
+          -4.671978543987377,
+          -3.827612671525011,
+          -3.7589576867549006,
+          -4.520285475990304,
+          4.014376181354064,
+          -4.130893413443962,
+          -1.384567949485307,
+          2.674640646424338,
+          -0.17983809728322342,
+          -3.6419683008562385,
+          3.0387228141923392,
+          3.0954487407082594,
+          -4.55476637452651,
+          -3.8664301198490367,
+          -0.9426808684497248,
+          -4.181820314503408,
+          1.339005174072705,
+          -0.7091546761298559,
+          1.84992688593434,
+          1.1071084995526785,
+          -4.067083317631221,
+          0.02567614807535268,
+          -4.056389777232173,
+          0.7764384366870614,
+          -2.9622036662542164,
+          -1.5377004787655908,
+          -2.668391377188415,
+          -0.8617548815617235,
+          -4.00843340885969,
+          1.0332615810140924,
+          0.14127100195410147,
+          2.7602251841135272,
+          -1.2209862970469771,
+          0.47908553857176184,
+          -2.6860690558586517,
+          1.6943803651006144,
+          3.3446107608848257,
+          0.9327179331053106,
+          -1.2850894084417086,
+          -3.7748566937162225,
+          -3.087753524564493,
+          -4.621253332055499,
+          0.9917804123177962,
+          -2.5051756578771265,
+          4.042196292815782,
+          1.544183650230421,
+          0.3996750952990933,
+          0.9678024991592746,
+          -4.750830530902248,
+          -5.04426061216687,
+          0.3599079175036941,
+          2.248320652638851,
+          1.9310956459224657,
+          -4.232013103309794,
+          -4.287658119062842,
+          3.3367606230069464,
+          -4.269855542628554,
+          4.016061299074198,
+          2.3306063250875146,
+          -2.743955737609102,
+          -4.712975787545148,
+          -1.4384584422624425,
+          0.7244011749600086,
+          0.22499286117244655,
+          -1.1193344745384035,
+          1.0824377021666631,
+          -0.7774231781425396,
+          -3.760461823919033,
+          3.375030930259837,
+          3.8349562165854314,
+          -3.8563068691296047,
+          -1.96766770077055,
+          -4.617283418755728,
+          1.730675342825224,
+          1.1276793139934442,
+          2.6624745798409606,
+          2.9591321725826942,
+          -3.1054738962998867,
+          2.1635384914526643,
+          1.6152582161763762,
+          -3.702906527381943,
+          -3.813726781315117,
+          -2.189543332303105,
+          -4.815507853555234,
+          -1.8107799303656265,
+          0.005144421606448013,
+          2.0749644743513933,
+          -1.462847012582447,
+          0.605634294536264,
+          3.4799974364790875,
+          1.2670387912607177,
+          -0.5461482954766224,
+          -3.499319574438294,
+          2.635238834021015,
+          0.16584151231832323,
+          2.298267328854137,
+          1.203936730912611,
+          -2.6738347355849053,
+          -3.9682339460970963,
+          -4.767230700868619,
+          -0.6298595548601762,
+          1.3525668749175193,
+          -3.4943847223918967,
+          -2.362456717613297,
+          0.16431489565662005,
+          -2.619703630698656,
+          3.681498875579851,
+          -1.8128465562374685,
+          0.21967393457110074,
+          0.7917689932057259,
+          1.2630987232832043,
+          2.7681828319403294,
+          3.8431683107797214,
+          -3.9711897426034524,
+          -1.2099210582585291,
+          -4.9733539151246156,
+          -1.0760070576422218,
+          4.0872868609116475,
+          -5.039832972296957,
+          0.9146527269982929,
+          0.7715815020367129,
+          -3.638574161093084,
+          -2.835674912969987,
+          -3.6935387386560476,
+          1.0890403557033501,
+          0.5088175006257201,
+          1.5685857747040588,
+          0.5634522062123697,
+          1.2829790245089816,
+          -2.606455893178217,
+          -4.453921874241512,
+          -3.4684473477447915,
+          1.8304570404589944,
+          4.282526468045865,
+          -5.040840419722943,
+          3.235605400423867,
+          -0.6661109991539655,
+          -3.6943632337372736,
+          -2.9259714070895892,
+          3.152425466476674,
+          2.2373396567837105,
+          3.120409698020052,
+          4.2680515270292405,
+          -1.2599025027986026,
+          -3.8494328389766084,
+          -3.1588446409744115,
+          0.4679776649373215,
+          -0.5382838091422251,
+          4.134215432354051,
+          -3.0477954592572574,
+          -0.3746274647269665,
+          0.17285880013199684,
+          4.060812623511269,
+          1.9115889087445002,
+          1.8060572956481877,
+          -4.041390221070355,
+          -0.8858204944403054,
+          1.634896782793211,
+          4.233024755901135,
+          -1.7261638043471206,
+          -0.33329595062652384,
+          -4.686718860993824,
+          -3.9960302739684175,
+          -1.5797350521107356,
+          3.113968124696899,
+          3.9408921998609747,
+          0.8891232380457845,
+          -2.5754457624789464,
+          -1.6766948792145357,
+          -2.1809580324250755,
+          0.9694666926566109,
+          0.839191422735059,
+          -1.3330020706916126,
+          -1.564240198245908,
+          0.6811271593579935,
+          3.7447953387731845,
+          2.428292656332478,
+          0.8814179495301708,
+          2.0248780893403406,
+          -3.564203303946459,
+          -1.1944740685181903,
+          0.6687020095836811,
+          2.5206161992819105,
+          -3.8326115518355066,
+          3.288597642008411,
+          2.205822580225763,
+          -2.6221038952931726,
+          -3.2769207065650323,
+          1.538563957186362,
+          -0.6160767013855208,
+          -3.6766480543231252,
+          3.612256324028798,
+          -3.424242979479239,
+          1.465194184808431,
+          3.694442760137309,
+          2.6809882270835317,
+          1.6860520856150183,
+          0.7242288594861019,
+          3.855302790886685,
+          -4.527651636204923,
+          3.833042313803671,
+          -4.353980579333637,
+          3.387551486909005,
+          -0.798986666924776,
+          -2.2755050201488936,
+          -3.2525096585308386,
+          -2.1623723286535763,
+          -3.7283958196942635,
+          1.9906353525788152,
+          3.952046096088833,
+          -0.5467357673125495,
+          -4.989358548139788,
+          1.9555597973280374,
+          -3.062182565643642,
+          0.8270445604305205,
+          -0.894710956285742,
+          2.468796314908002,
+          -2.396008522664992,
+          -2.639065964706059,
+          -3.786661910697081,
+          -2.438029977303959,
+          0.2660911206821277,
+          0.6031141549966827,
+          0.428495022211032,
+          3.5390100851296546,
+          -0.879458822223822,
+          0.36882426679560343,
+          1.8080275469759846,
+          3.1516180850117896,
+          -2.5210197133233985,
+          -1.0886134994512529,
+          1.7916672713064399,
+          -2.403906850975997,
+          -3.95898642681534,
+          2.6918473453026346,
+          -2.9707691629492015,
+          2.437424638274112,
+          -4.55799579374014,
+          -3.302685639899443,
+          -4.190019516948408,
+          3.853294526088825,
+          0.8800438865881874,
+          -3.360151524909881,
+          -4.878286901055392,
+          -4.1271909617458915,
+          3.822992438719022,
+          -3.923591913785571,
+          3.5814998032292378,
+          -2.911748426948884,
+          1.6478539609288543,
+          0.0058590009792975906,
+          -3.020168047673245,
+          2.21905966120332,
+          -0.5261323843716585,
+          -0.44709092603563505,
+          0.7055098575164847,
+          3.190744574930295,
+          -2.6412938783365365,
+          2.4116754495988646,
+          -0.7455011466148802,
+          -4.9721874238964565,
+          2.95801920010864,
+          -0.7195350817902995,
+          -0.9432923785973983,
+          -1.63617463556964,
+          -0.5253478686255599,
+          -4.652673922303995,
+          -1.4796492675071855,
+          -3.436198678619299,
+          3.8674771771177285,
+          -4.892141766245545,
+          -2.782583187078942,
+          -4.297630886534784,
+          -3.021649852325128,
+          0.22747619043985345,
+          3.324437952338557,
+          2.2317226990551617,
+          -4.996084640757687,
+          4.331276894977342,
+          -1.8083088012035637,
+          -0.06153207611872791,
+          -1.8463389312094525,
+          1.9596184766750708,
+          3.281038513996177,
+          1.0374637243134215,
+          3.316267169343095,
+          3.8292251515569307,
+          3.336898895101121,
+          0.45729732206773654,
+          -3.5221898157927125,
+          -3.6323874579002995,
+          -2.4520964555275726,
+          1.8448468642814992,
+          -4.851092730133925,
+          1.3160401643454573,
+          -4.294081549307043,
+          -4.112962044118452,
+          1.2420525562066338,
+          -3.1372979265433396,
+          0.009851291623607317,
+          1.363292167956919,
+          0.15272909127963263,
+          1.099220670809932,
+          2.3688746016702833,
+          1.0720957184476552,
+          -2.8572099294835263,
+          -2.2852284896556037,
+          3.690929356206257,
+          0.8433005822757949,
+          0.8445646488872933,
+          0.5693094763207069,
+          -4.312069289377401,
+          1.784523787233594,
+          -4.358053765458514,
+          3.318401267416692,
+          2.626755556844107,
+          -2.2700114919940257,
+          -1.6318320049090134,
+          -1.3101712127270928,
+          -1.4165531560360725,
+          0.9076888191198389,
+          2.2281156596984406,
+          0.2216355957407119,
+          -1.113627611386561,
+          0.8037902017162759,
+          -3.0730713946722825,
+          -2.8394647263130364,
+          2.3179283050877126,
+          2.658558632546872,
+          -0.2784077045589992,
+          4.12831853140925,
+          -0.5525622706122455,
+          2.95770536248686,
+          -0.26146620050703895,
+          -2.6754446121977002,
+          1.4368734778900318,
+          -0.3446787777817786,
+          1.0643016089470967,
+          -1.6575293682417724,
+          -0.7133684129671893,
+          -0.6266184333831131,
+          -3.603871440492364,
+          -0.7052111749854273,
+          -4.3610937712955575,
+          -0.2556302171920093,
+          -4.392113224551615,
+          -1.7692634004712113,
+          -0.27720268603921294,
+          3.281588581145802,
+          -4.139486038303596,
+          2.8398278290422088,
+          2.771496260071041,
+          -5.017176336203248,
+          -4.2721667538374515,
+          2.1054041504471632,
+          -4.743982868781132,
+          -4.085883256229602,
+          -2.369326719129984,
+          3.5245934490232598,
+          -3.909188482320231,
+          -0.6988957202392143,
+          -1.8651022207588603,
+          0.5362063000448734,
+          -1.7875581538295644,
+          -0.7159272552521809,
+          -2.699936071741675,
+          -0.5344966604908015,
+          -4.5058202994548715,
+          0.06305268715882839,
+          2.631258588386525,
+          3.9606834565266693,
+          0.3036932144115765,
+          -4.064582871090071,
+          -2.7525436055457826,
+          -4.178614470827299,
+          -4.7968880006198935,
+          -2.2928699864203375,
+          -4.408313634872224,
+          2.2837294598151194,
+          -4.055692798348693,
+          0.8416147012524844,
+          -2.5513901196767597,
+          1.6155056224461735,
+          -4.371886692389939,
+          -1.8717778537318273,
+          -3.3724292835242076,
+          0.3990883021282414,
+          -3.9553646840034506,
+          2.253324612512186,
+          -2.200245220558796,
+          2.1031117834791706,
+          3.210782229058318,
+          -0.08207570983281709,
+          -4.367111612589536,
+          -3.281752204411256,
+          3.5555443187498694,
+          -3.117980792047957,
+          2.5596085728732234,
+          -1.2142100629272763,
+          -0.2821572195163471,
+          2.274335600776757,
+          -2.33731378634481,
+          -5.058672733495895,
+          -1.1625593007309694,
+          3.106993817470582,
+          3.7672564807368554,
+          3.16179095100632,
+          -1.2949875575818037,
+          1.8253385252656784,
+          3.4775505638504933,
+          2.306811249908238,
+          -0.45380933031742465,
+          0.3534859691434855,
+          3.5845049109405744,
+          0.5888881372453998,
+          -2.41950211923925,
+          -2.983699172438567,
+          -1.8558107590823858,
+          -0.8829567301297496,
+          3.353114444498021,
+          4.102145025755555,
+          1.3815858753225623,
+          -3.9947551749651105,
+          4.268670385907073,
+          -0.41411731470120383,
+          3.988563041454724,
+          -1.3139454035316005,
+          2.1188282530660807,
+          4.2009625074263015,
+          -1.4686093949353043,
+          -3.894393706329376,
+          -0.29097238365175926,
+          -0.5537435417596654,
+          -3.6252925050538076,
+          1.5146810709183773,
+          -0.05076280044158654,
+          -4.14793043382264,
+          -1.8947109859291182,
+          -2.3128495145190993,
+          0.9893960374678183,
+          -4.117344370433889,
+          2.62230855637044,
+          1.0305019476733186,
+          -1.4714177363444114,
+          -3.986440277504377,
+          3.6709224950597923,
+          -3.812326287448923,
+          -4.020785855772262,
+          2.875680099892845,
+          1.2194353800494078,
+          4.3088171132997735,
+          2.001511045425011,
+          -3.5386201305211378,
+          -1.3551660313144835,
+          -3.047912485634747,
+          -0.49989586177312084,
+          3.405222071563501,
+          -3.522463758440216,
+          -4.845965452121603,
+          -0.022574082409692053,
+          0.6271799651751957,
+          -4.046549977090429,
+          0.9228048636758217,
+          -4.16690193664604,
+          -4.006531859651612
          ]
         },
         {
@@ -16607,2677 +16577,2677 @@
          "scene": "scene3",
          "showlegend": false,
          "text": [
-          "example_2",
-          "example_15",
-          "example_23",
-          "example_29",
-          "example_30",
-          "example_32",
-          "example_43",
-          "example_44",
-          "example_45",
-          "example_49",
-          "example_51",
-          "example_56",
-          "example_58",
-          "example_59",
-          "example_63",
-          "example_65",
-          "example_67",
-          "example_69",
-          "example_70",
-          "example_71",
-          "example_72",
-          "example_73",
-          "example_76",
-          "example_78",
-          "example_81",
-          "example_84",
-          "example_99",
-          "example_100",
-          "example_101",
-          "example_107",
-          "example_109",
-          "example_111",
-          "example_115",
-          "example_118",
-          "example_120",
-          "example_123",
-          "example_124",
-          "example_128",
-          "example_135",
-          "example_141",
-          "example_148",
-          "example_162",
-          "example_163",
-          "example_168",
-          "example_170",
-          "example_173",
-          "example_175",
-          "example_182",
-          "example_184",
-          "example_185",
-          "example_188",
-          "example_192",
-          "example_194",
-          "example_196",
-          "example_198",
-          "example_199",
-          "example_203",
-          "example_208",
-          "example_210",
-          "example_211",
-          "example_212",
-          "example_218",
-          "example_220",
-          "example_226",
-          "example_231",
-          "example_233",
-          "example_236",
-          "example_237",
-          "example_239",
-          "example_240",
-          "example_244",
-          "example_247",
-          "example_250",
-          "example_251",
-          "example_254",
-          "example_256",
-          "example_259",
-          "example_261",
-          "example_265",
-          "example_266",
-          "example_270",
-          "example_271",
-          "example_272",
-          "example_273",
-          "example_274",
-          "example_275",
-          "example_277",
-          "example_281",
-          "example_286",
-          "example_289",
-          "example_292",
-          "example_297",
-          "example_298",
-          "example_300",
-          "example_303",
-          "example_305",
-          "example_306",
-          "example_307",
-          "example_309",
-          "example_310",
-          "example_311",
-          "example_316",
-          "example_322",
-          "example_324",
-          "example_331",
-          "example_332",
-          "example_334",
-          "example_339",
-          "example_342",
-          "example_344",
-          "example_350",
-          "example_351",
-          "example_352",
-          "example_353",
-          "example_354",
-          "example_358",
-          "example_361",
-          "example_363",
-          "example_365",
-          "example_366",
-          "example_367",
-          "example_368",
-          "example_371",
-          "example_374",
-          "example_376",
-          "example_380",
-          "example_381",
-          "example_382",
-          "example_383",
-          "example_393",
-          "example_394",
-          "example_398",
-          "example_405",
-          "example_408",
-          "example_411",
-          "example_413",
-          "example_414",
-          "example_415",
-          "example_416",
-          "example_420",
-          "example_422",
-          "example_425",
-          "example_426",
-          "example_427",
-          "example_429",
-          "example_432",
-          "example_433",
-          "example_436",
-          "example_438",
-          "example_439",
-          "example_445",
-          "example_450",
-          "example_453",
-          "example_462",
-          "example_464",
-          "example_465",
-          "example_471",
-          "example_478",
-          "example_479",
-          "example_480",
-          "example_481",
-          "example_482",
-          "example_483",
-          "example_485",
-          "example_486",
-          "example_493",
-          "example_494",
-          "example_495",
-          "example_497",
-          "example_505",
-          "example_506",
-          "example_507",
-          "example_513",
-          "example_514",
-          "example_518",
-          "example_519",
-          "example_522",
-          "example_526",
-          "example_527",
-          "example_529",
-          "example_530",
-          "example_532",
-          "example_534",
-          "example_535",
-          "example_538",
-          "example_543",
-          "example_544",
-          "example_548",
-          "example_551",
-          "example_552",
-          "example_554",
-          "example_555",
-          "example_557",
-          "example_561",
-          "example_567",
-          "example_570",
-          "example_572",
-          "example_575",
-          "example_576",
-          "example_579",
-          "example_581",
-          "example_582",
-          "example_583",
-          "example_584",
-          "example_585",
-          "example_588",
-          "example_590",
-          "example_591",
-          "example_593",
-          "example_596",
-          "example_598",
-          "example_599",
-          "example_602",
-          "example_607",
-          "example_609",
-          "example_610",
-          "example_611",
-          "example_613",
-          "example_614",
-          "example_617",
-          "example_618",
-          "example_619",
-          "example_620",
-          "example_628",
-          "example_630",
-          "example_631",
-          "example_637",
-          "example_650",
-          "example_651",
-          "example_654",
-          "example_670",
-          "example_674",
-          "example_678",
-          "example_679",
-          "example_680",
-          "example_692",
-          "example_693",
-          "example_694",
-          "example_701",
-          "example_704",
-          "example_705",
-          "example_706",
-          "example_707",
-          "example_710",
-          "example_712",
-          "example_715",
-          "example_720",
-          "example_721",
-          "example_727",
-          "example_730",
-          "example_733",
-          "example_736",
-          "example_741",
-          "example_744",
-          "example_745",
-          "example_746",
-          "example_752",
-          "example_755",
-          "example_757",
-          "example_759",
-          "example_764",
-          "example_765",
-          "example_767",
-          "example_771",
-          "example_774",
-          "example_777",
-          "example_780",
-          "example_781",
-          "example_785",
-          "example_787",
-          "example_788",
-          "example_792",
-          "example_802",
-          "example_806",
-          "example_807",
-          "example_808",
-          "example_812",
-          "example_813",
-          "example_817",
-          "example_818",
-          "example_819",
-          "example_824",
-          "example_829",
-          "example_832",
-          "example_834",
-          "example_838",
-          "example_843",
-          "example_845",
-          "example_849",
-          "example_855",
-          "example_861",
-          "example_865",
-          "example_873",
-          "example_879",
-          "example_886",
-          "example_887",
-          "example_892",
-          "example_900",
-          "example_904",
-          "example_905",
-          "example_906",
-          "example_907",
-          "example_909",
-          "example_914",
-          "example_915",
-          "example_923",
-          "example_925",
-          "example_926",
-          "example_930",
-          "example_931",
-          "example_936",
-          "example_937",
-          "example_939",
-          "example_942",
-          "example_943",
-          "example_948",
-          "example_949",
-          "example_952",
-          "example_962",
-          "example_963",
-          "example_964",
-          "example_965",
-          "example_966",
-          "example_976",
-          "example_978",
-          "example_979",
-          "example_984",
-          "example_985",
-          "example_988",
-          "example_990",
-          "example_993",
-          "example_994",
-          "example_1004",
-          "example_1010",
-          "example_1013",
-          "example_1018",
-          "example_1022",
-          "example_1027",
-          "example_1029",
-          "example_1033",
-          "example_1036",
-          "example_1040",
-          "example_1043",
-          "example_1050",
-          "example_1052",
-          "example_1053",
-          "example_1054",
-          "example_1061",
-          "example_1063",
-          "example_1067",
-          "example_1073",
-          "example_1075",
-          "example_1083",
-          "example_1084",
-          "example_1090",
-          "example_1100",
-          "example_1102",
-          "example_1103",
-          "example_1105",
-          "example_1106",
-          "example_1107",
-          "example_1114",
-          "example_1117",
-          "example_1120",
-          "example_1125",
-          "example_1133",
-          "example_1134",
-          "example_1138",
-          "example_1144",
-          "example_1146",
-          "example_1157",
-          "example_1159",
-          "example_1160",
-          "example_1163",
-          "example_1164",
-          "example_1165",
-          "example_1170",
-          "example_1173",
-          "example_1177",
-          "example_1179",
-          "example_1181",
-          "example_1187",
-          "example_1189",
-          "example_1192",
-          "example_1198",
-          "example_1202",
-          "example_1204",
-          "example_1211",
-          "example_1220",
-          "example_1222",
-          "example_1223",
-          "example_1225",
-          "example_1228",
-          "example_1229",
-          "example_1231",
-          "example_1233",
-          "example_1235",
-          "example_1239",
-          "example_1240",
-          "example_1242",
-          "example_1245",
-          "example_1247",
-          "example_1249",
-          "example_1255",
-          "example_1258",
-          "example_1263",
-          "example_1265",
-          "example_1270",
-          "example_1271",
-          "example_1272",
-          "example_1273",
-          "example_1274",
-          "example_1280",
-          "example_1281",
-          "example_1284",
-          "example_1287",
-          "example_1288",
-          "example_1289",
-          "example_1298",
-          "example_1301",
-          "example_1304",
-          "example_1305",
-          "example_1307",
-          "example_1309",
-          "example_1314",
-          "example_1316",
-          "example_1317",
-          "example_1318",
-          "example_1319",
-          "example_1320",
-          "example_1322",
-          "example_1324",
-          "example_1326",
-          "example_1331",
-          "example_1335",
-          "example_1339",
-          "example_1343",
-          "example_1344",
-          "example_1345",
-          "example_1347",
-          "example_1355",
-          "example_1357",
-          "example_1360",
-          "example_1362",
-          "example_1364",
-          "example_1376",
-          "example_1379",
-          "example_1380",
-          "example_1381",
-          "example_1383",
-          "example_1384",
-          "example_1386",
-          "example_1387",
-          "example_1389",
-          "example_1391",
-          "example_1392",
-          "example_1393",
-          "example_1395",
-          "example_1403",
-          "example_1405",
-          "example_1412",
-          "example_1414",
-          "example_1417",
-          "example_1420",
-          "example_1423",
-          "example_1424",
-          "example_1425",
-          "example_1428",
-          "example_1429",
-          "example_1431",
-          "example_1432",
-          "example_1433",
-          "example_1436",
-          "example_1440",
-          "example_1441",
-          "example_1447",
-          "example_1448",
-          "example_1452",
-          "example_1453",
-          "example_1454",
-          "example_1458",
-          "example_1464",
-          "example_1469",
-          "example_1471",
-          "example_1472",
-          "example_1474",
-          "example_1481",
-          "example_1483",
-          "example_1490",
-          "example_1491",
-          "example_1493",
-          "example_1498",
-          "example_1502",
-          "example_1503",
-          "example_1509",
-          "example_1510",
-          "example_1511",
-          "example_1516",
-          "example_1525",
-          "example_1526",
-          "example_1530",
-          "example_1531",
-          "example_1537",
-          "example_1542",
-          "example_1546",
-          "example_1547",
-          "example_1548",
-          "example_1551",
-          "example_1552",
-          "example_1553",
-          "example_1554",
-          "example_1556",
-          "example_1558",
-          "example_1560",
-          "example_1564",
-          "example_1565",
-          "example_1568",
-          "example_1571",
-          "example_1575",
-          "example_1582",
-          "example_1586",
-          "example_1588",
-          "example_1591",
-          "example_1592",
-          "example_1596",
-          "example_1601",
-          "example_1602",
-          "example_1605",
-          "example_1606",
-          "example_1607",
-          "example_1608",
-          "example_1610",
-          "example_1611",
-          "example_1612",
-          "example_1613",
-          "example_1615",
-          "example_1616",
-          "example_1621",
-          "example_1626",
-          "example_1632",
-          "example_1635",
-          "example_1644",
-          "example_1645",
-          "example_1646",
-          "example_1649",
-          "example_1650",
-          "example_1651",
-          "example_1652",
-          "example_1656",
-          "example_1657",
-          "example_1658",
-          "example_1664",
-          "example_1667",
-          "example_1671",
-          "example_1672",
-          "example_1674",
-          "example_1675",
-          "example_1676",
-          "example_1677",
-          "example_1683",
-          "example_1686",
-          "example_1689",
-          "example_1694",
-          "example_1696",
-          "example_1703",
-          "example_1708",
-          "example_1711",
-          "example_1712",
-          "example_1717",
-          "example_1719",
-          "example_1726",
-          "example_1727",
-          "example_1729",
-          "example_1734",
-          "example_1735",
-          "example_1738",
-          "example_1739",
-          "example_1743",
-          "example_1745",
-          "example_1749",
-          "example_1752",
-          "example_1754",
-          "example_1755",
-          "example_1759",
-          "example_1761",
-          "example_1763",
-          "example_1764",
-          "example_1765",
-          "example_1767",
-          "example_1770",
-          "example_1773",
-          "example_1775",
-          "example_1778",
-          "example_1779",
-          "example_1782",
-          "example_1783",
-          "example_1786",
-          "example_1787",
-          "example_1791",
-          "example_1801",
-          "example_1808",
-          "example_1810",
-          "example_1811",
-          "example_1813",
-          "example_1814",
-          "example_1816",
-          "example_1817",
-          "example_1823",
-          "example_1827",
-          "example_1831",
-          "example_1844",
-          "example_1851",
-          "example_1857",
-          "example_1860",
-          "example_1863",
-          "example_1864",
-          "example_1865",
-          "example_1867",
-          "example_1871",
-          "example_1872",
-          "example_1874",
-          "example_1882",
-          "example_1888",
-          "example_1891",
-          "example_1903",
-          "example_1904",
-          "example_1907",
-          "example_1909",
-          "example_1910",
-          "example_1911",
-          "example_1912",
-          "example_1914",
-          "example_1917",
-          "example_1918",
-          "example_1920",
-          "example_1922",
-          "example_1925",
-          "example_1928",
-          "example_1929",
-          "example_1930",
-          "example_1932",
-          "example_1935",
-          "example_1936",
-          "example_1937",
-          "example_1939",
-          "example_1941",
-          "example_1948",
-          "example_1952",
-          "example_1955",
-          "example_1957",
-          "example_1959",
-          "example_1960",
-          "example_1963",
-          "example_1972",
-          "example_1974",
-          "example_1975",
-          "example_1976",
-          "example_1978",
-          "example_1979",
-          "example_1984",
-          "example_1985",
-          "example_1987",
-          "example_1988",
-          "example_1989",
-          "example_1990",
-          "example_1993"
+          "0_l_0_m-0_0.08-1_0.1-2_0.06-3_0.19",
+          "1_l_0_m-0_0.12-1_0.47-2_0.31-3_0.18",
+          "2_l_0_m-0_0.09-1_0.16-2_0.08-3_0.18",
+          "3_l_0_m-0_0.21-1_0.23-2_0.17-3_0.1",
+          "4_l_0_m-0_0.47-1_0.09-2_0.48-3_0.24",
+          "5_l_0_m-0_0.16-1_0.92-2_0.25-3_0.33",
+          "6_l_0_c_0_1_2-0_0.16-1_0.18-2_0.48-3_0.52",
+          "7_l_0_c_0_1_2-0_0.0-1_0.08-2_0.86-3_1.04",
+          "8_l_0_c_0_1_2-0_0.79-1_0.27-2_0.53-3_1.46",
+          "9_l_0_c_0_1_2-0_0.5-1_0.46-2_0.73-3_0.29",
+          "10_l_0_c_0_1_2-0_0.35-1_0.09-2_0.95-3_0.67",
+          "11_l_0_c_0_1_2-0_0.45-1_0.18-2_0.01-3_0.68",
+          "12_l_0_c_0_1_2-0_0.26-1_0.65-2_0.03-3_1.18",
+          "13_l_0_c_0_1_2-0_0.02-1_0.11-2_0.11-3_0.93",
+          "14_l_0_c_0_1_2-0_0.01-1_0.31-2_0.46-3_0.39",
+          "15_l_0_c_0_1_2-0_0.49-1_0.44-2_0.46-3_0.4",
+          "16_l_0_c_0_1_2-0_0.32-1_0.66-2_0.09-3_0.22",
+          "17_l_0_c_0_1_2-0_0.88-1_0.25-2_0.08-3_0.3",
+          "18_l_0_c_0_1_2-0_0.24-1_0.29-2_0.41-3_0.04",
+          "19_l_0_c_1_2_3-0_1.19-1_0.67-2_0.48-3_0.22",
+          "20_l_0_c_0_1_2-0_0.56-1_0.09-2_0.52-3_1.12",
+          "21_l_0_c_0_2_3-0_0.44-1_0.25-2_0.14-3_0.45",
+          "22_l_0_c_1_2_3-0_0.05-1_0.26-2_1.37-3_0.82",
+          "23_l_0_c_0_1_2-0_0.49-1_0.15-2_0.69-3_0.44",
+          "24_l_0_c_0_2_3-0_0.38-1_0.27-2_0.15-3_0.11",
+          "25_l_0_c_1_2_3-0_0.97-1_0.06-2_0.49-3_0.2",
+          "26_l_0_c_0_1_2-0_0.19-1_0.15-2_0.23-3_0.53",
+          "27_l_0_c_0_2_3-0_0.89-1_0.91-2_0.76-3_0.39",
+          "28_l_0_c_1_2_3-0_1.08-1_0.98-2_0.18-3_0.04",
+          "29_l_0_c_0_1_2-0_0.22-1_1.08-2_0.81-3_0.67",
+          "30_l_0_c_0_2_3-0_0.23-1_0.4-2_0.14-3_0.55",
+          "31_l_0_c_1_2_3-0_0.26-1_1.2-2_1.47-3_0.63",
+          "32_l_0_c_0_1_2-0_0.07-1_0.41-2_0.51-3_0.63",
+          "33_l_0_c_0_2_3-0_0.91-1_0.76-2_0.27-3_0.2",
+          "34_l_0_c_1_2_3-0_0.87-1_0.07-2_0.06-3_0.57",
+          "35_l_0_c_0_1_2-0_0.56-1_0.36-2_0.13-3_0.52",
+          "36_l_0_c_0_2_3-0_0.28-1_0.03-2_0.3-3_0.01",
+          "37_l_0_c_1_2_3-0_1.09-1_0.93-2_0.76-3_0.51",
+          "38_l_0_c_0_1_2-0_0.25-1_0.17-2_0.57-3_0.02",
+          "39_l_0_c_0_2_3-0_0.28-1_1.49-2_0.09-3_0.08",
+          "40_l_0_c_1_2_3-0_0.64-1_1.01-2_0.43-3_0.53",
+          "41_l_0_c_0_1_2-0_0.89-1_0.53-2_0.66-3_0.47",
+          "42_l_0_c_0_2_3-0_0.41-1_0.28-2_0.62-3_0.12",
+          "43_l_0_c_1_2_3-0_0.3-1_0.39-2_0.16-3_0.31",
+          "44_l_0_c_0_1_2-0_0.89-1_0.29-2_1.09-3_0.7",
+          "45_l_0_c_0_2_3-0_0.2-1_1.61-2_0.97-3_0.56",
+          "46_l_0_c_1_2_3-0_1.88-1_0.28-2_0.02-3_0.34",
+          "47_l_0_c_0_1_2-0_0.46-1_0.32-2_0.42-3_0.99",
+          "48_l_0_c_0_2_3-0_0.3-1_0.65-2_1.47-3_0.02",
+          "49_l_0_c_1_2_3-0_0.12-1_1.17-2_0.15-3_0.4",
+          "50_l_0_c_0_1_2-0_0.15-1_1.28-2_0.92-3_0.85",
+          "51_l_0_c_0_2_3-0_1.05-1_0.51-2_0.73-3_1.02",
+          "52_l_0_c_1_2_3-0_0.18-1_0.07-2_0.62-3_0.67",
+          "53_l_0_c_0_1_2-0_0.69-1_0.81-2_0.74-3_1.39",
+          "54_l_0_c_0_2_3-0_0.16-1_0.75-2_0.07-3_0.35",
+          "55_l_0_c_1_2_3-0_0.97-1_0.19-2_0.38-3_0.2",
+          "56_l_0_c_0_1_2-0_0.28-1_0.04-2_0.25-3_0.4",
+          "57_l_0_c_0_2_3-0_0.51-1_1.5-2_0.68-3_0.15",
+          "58_l_0_c_1_2_3-0_0.97-1_0.32-2_0.19-3_0.46",
+          "59_l_0_c_0_1_2-0_0.56-1_0.88-2_0.21-3_0.17",
+          "60_l_0_c_0_2_3-0_1.68-1_1.59-2_0.67-3_0.04",
+          "61_l_0_c_1_2_3-0_0.88-1_0.25-2_0.45-3_0.18",
+          "62_l_0_c_0_1_2-0_0.2-1_0.18-2_0.32-3_0.14",
+          "63_l_0_c_0_2_3-0_1.24-1_0.85-2_0.84-3_0.38",
+          "64_l_0_c_1_2_3-0_0.73-1_0.38-2_0.16-3_0.74",
+          "65_l_0_c_0_1_2-0_0.44-1_0.05-2_0.39-3_0.18",
+          "66_l_0_c_0_2_3-0_0.41-1_1.44-2_0.12-3_0.11",
+          "67_l_0_c_1_2_3-0_2.05-1_0.06-2_0.68-3_1.1",
+          "68_l_0_c_0_1_2-0_0.4-1_0.19-2_0.03-3_1.39",
+          "69_l_0_c_0_2_3-0_0.31-1_0.28-2_0.08-3_0.25",
+          "70_l_0_c_1_2_3-0_0.45-1_0.08-2_0.27-3_0.6",
+          "71_l_0_c_0_1_2-0_0.2-1_0.06-2_0.96-3_0.54",
+          "72_l_0_c_0_2_3-0_0.14-1_0.93-2_0.74-3_0.39",
+          "73_l_0_c_1_2_3-0_0.46-1_0.46-2_0.66-3_0.02",
+          "74_l_0_c_0_1_2-0_0.69-1_0.43-2_0.14-3_0.4",
+          "75_l_0_c_0_2_3-0_0.23-1_1.16-2_0.46-3_1.37",
+          "76_l_0_c_1_2_3-0_2.24-1_0.15-2_0.96-3_0.61",
+          "77_l_0_c_0_1_2-0_0.05-1_0.07-2_0.15-3_0.87",
+          "78_l_0_c_0_2_3-0_0.21-1_0.08-2_0.25-3_0.11",
+          "79_l_0_c_1_2_3-0_0.43-1_0.1-2_0.01-3_0.94",
+          "80_l_0_c_0_1_2-0_0.58-1_0.21-2_0.54-3_0.47",
+          "81_l_0_c_0_2_3-0_0.34-1_1.14-2_0.45-3_0.06",
+          "82_l_0_c_1_2_3-0_1.71-1_0.12-2_0.15-3_0.07",
+          "83_l_0_c_0_1_2-0_0.12-1_0.06-2_0.0-3_0.26",
+          "84_l_0_c_0_2_3-0_0.8-1_0.15-2_0.64-3_0.24",
+          "85_l_0_c_1_2_3-0_1.41-1_0.02-2_1.18-3_0.64",
+          "86_l_0_c_0_1_2-0_0.05-1_0.21-2_0.64-3_0.53",
+          "87_l_0_c_0_2_3-0_0.9-1_0.07-2_0.44-3_0.22",
+          "88_l_0_c_1_2_3-0_0.07-1_0.19-2_0.42-3_0.71",
+          "89_l_0_c_0_1_2-0_0.21-1_0.2-2_0.35-3_0.04",
+          "90_l_0_c_0_2_3-0_0.38-1_2.27-2_0.51-3_0.04",
+          "91_l_0_c_1_2_3-0_0.57-1_0.45-2_0.2-3_0.44",
+          "92_l_0_c_0_1_2-0_0.23-1_0.17-2_0.43-3_1.58",
+          "93_l_0_c_0_2_3-0_2.0-1_0.83-2_0.76-3_0.02",
+          "94_l_0_c_1_2_3-0_0.43-1_0.32-2_0.19-3_0.86",
+          "95_l_0_c_0_1_2-0_0.34-1_0.46-2_0.23-3_0.69",
+          "96_l_0_c_0_2_3-0_0.03-1_0.36-2_0.26-3_0.08",
+          "97_l_0_c_1_2_3-0_0.69-1_0.09-2_1.09-3_0.99",
+          "98_l_0_c_0_1_2-0_0.02-1_0.16-2_0.64-3_0.6",
+          "99_l_0_c_0_1_3-0_0.06-1_0.32-2_0.65-3_0.41",
+          "100_l_0_c_0_2_3-0_0.03-1_0.14-2_0.74-3_0.63",
+          "101_l_0_c_1_2_3-0_1.15-1_0.92-2_1.15-3_0.82",
+          "102_l_0_c_0_1_2-0_0.09-1_0.04-2_0.31-3_0.88",
+          "103_l_0_c_0_1_3-0_0.07-1_0.34-2_0.57-3_0.05",
+          "104_l_0_c_0_2_3-0_0.41-1_0.51-2_0.35-3_0.04",
+          "105_l_0_c_1_2_3-0_0.55-1_0.74-2_0.64-3_0.06",
+          "106_l_0_c_0_1_2-0_0.09-1_0.19-2_0.17-3_0.35",
+          "107_l_0_c_0_1_3-0_0.02-1_0.13-2_1.34-3_0.6",
+          "108_l_0_c_0_2_3-0_0.54-1_0.09-2_1.38-3_1.04",
+          "109_l_0_c_1_2_3-0_0.96-1_0.09-2_0.5-3_0.73",
+          "110_l_0_c_0_1_2-0_0.5-1_0.59-2_0.08-3_0.06",
+          "111_l_0_c_0_1_3-0_0.06-1_0.82-2_0.49-3_0.1",
+          "112_l_0_c_0_2_3-0_0.04-1_0.3-2_0.01-3_0.46",
+          "113_l_0_c_1_2_3-0_0.52-1_0.44-2_0.72-3_0.71",
+          "114_l_0_c_0_1_2-0_0.09-1_0.34-2_1.76-3_1.09",
+          "115_l_0_c_0_1_3-0_0.14-1_0.82-2_0.18-3_0.11",
+          "116_l_0_c_0_2_3-0_0.56-1_0.93-2_0.15-3_0.12",
+          "117_l_0_c_1_2_3-0_0.54-1_0.2-2_0.3-3_0.08",
+          "118_l_0_c_0_1_2-0_0.53-1_0.18-2_0.52-3_0.01",
+          "119_l_0_c_0_1_3-0_0.35-1_0.5-2_0.28-3_0.26",
+          "120_l_0_c_0_2_3-0_0.49-1_0.76-2_0.12-3_2.22",
+          "121_l_0_c_1_2_3-0_0.11-1_0.58-2_0.11-3_0.57",
+          "122_l_0_c_0_1_2-0_0.13-1_1.02-2_1.03-3_1.02",
+          "123_l_0_c_0_1_3-0_0.05-1_0.95-2_0.49-3_0.4",
+          "124_l_0_c_0_2_3-0_0.2-1_1.9-2_0.35-3_0.63",
+          "125_l_0_c_1_2_3-0_0.4-1_0.12-2_0.25-3_0.2",
+          "126_l_0_c_0_1_2-0_0.18-1_0.49-2_0.34-3_0.01",
+          "127_l_0_c_0_1_3-0_0.09-1_0.01-2_0.81-3_0.26",
+          "128_l_0_c_0_2_3-0_0.23-1_0.16-2_1.5-3_0.83",
+          "129_l_0_c_1_2_3-0_1.29-1_0.15-2_0.0-3_0.14",
+          "130_l_0_c_0_1_2-0_0.39-1_0.08-2_0.17-3_0.47",
+          "131_l_0_c_0_1_3-0_0.03-1_0.46-2_0.16-3_0.26",
+          "132_l_0_c_0_2_3-0_0.19-1_0.2-2_0.46-3_0.04",
+          "133_l_0_c_1_2_3-0_0.66-1_0.08-2_0.12-3_0.96",
+          "134_l_0_c_0_1_2-0_0.71-1_0.18-2_0.68-3_1.72",
+          "135_l_0_c_0_1_3-0_0.04-1_0.79-2_1.72-3_0.05",
+          "136_l_0_c_0_2_3-0_0.43-1_1.42-2_1.29-3_0.04",
+          "137_l_0_c_1_2_3-0_0.27-1_0.71-2_1.11-3_0.1",
+          "138_l_0_c_0_1_2-0_0.12-1_0.16-2_0.15-3_0.1",
+          "139_l_0_c_0_1_3-0_0.07-1_0.64-2_0.05-3_0.11",
+          "140_l_0_c_0_2_3-0_0.05-1_1.53-2_0.46-3_0.14",
+          "141_l_0_c_1_2_3-0_0.99-1_0.31-2_0.18-3_0.06",
+          "142_l_0_c_0_1_2-0_1.54-1_0.07-2_0.21-3_0.93",
+          "143_l_0_c_0_1_3-0_0.3-1_0.54-2_0.05-3_0.05",
+          "144_l_0_c_0_2_3-0_0.06-1_0.62-2_0.41-3_0.27",
+          "145_l_0_c_1_2_3-0_0.04-1_0.43-2_0.13-3_0.7",
+          "146_l_0_c_0_1_2-0_0.56-1_0.46-2_0.58-3_0.11",
+          "147_l_0_c_0_1_3-0_0.71-1_0.23-2_1.18-3_0.31",
+          "148_l_0_c_0_2_3-0_0.35-1_1.91-2_0.07-3_0.5",
+          "149_l_0_c_1_2_3-0_0.23-1_0.1-2_0.03-3_0.28",
+          "150_l_0_c_0_1_2-0_0.27-1_0.11-2_0.59-3_0.3",
+          "151_l_0_c_0_1_3-0_0.13-1_0.09-2_0.16-3_0.01",
+          "152_l_0_c_0_2_3-0_0.41-1_0.23-2_0.26-3_0.29",
+          "153_l_0_c_1_2_3-0_0.84-1_0.71-2_0.7-3_0.08",
+          "154_l_0_c_0_1_2-0_0.66-1_0.44-2_0.1-3_1.0",
+          "155_l_0_c_0_1_3-0_0.28-1_0.23-2_0.2-3_0.02",
+          "156_l_0_c_0_2_3-0_0.26-1_1.45-2_0.37-3_0.45",
+          "157_l_0_c_1_2_3-0_0.16-1_0.84-2_0.62-3_0.21",
+          "158_l_0_c_0_1_2-0_0.38-1_0.4-2_0.28-3_0.46",
+          "159_l_0_c_0_1_3-0_0.44-1_0.75-2_0.03-3_1.07",
+          "160_l_0_c_0_2_3-0_0.58-1_0.11-2_0.6-3_1.06",
+          "161_l_0_c_1_2_3-0_1.35-1_0.5-2_0.2-3_0.24",
+          "162_l_0_c_0_1_2-0_0.73-1_0.27-2_0.48-3_2.1",
+          "163_l_0_c_0_1_3-0_0.59-1_0.6-2_0.14-3_0.1",
+          "164_l_0_c_0_2_3-0_0.45-1_0.59-2_0.11-3_0.24",
+          "165_l_0_c_1_2_3-0_0.04-1_1.36-2_0.69-3_0.07",
+          "166_l_0_c_0_1_2-0_0.06-1_0.11-2_0.88-3_0.96",
+          "167_l_0_c_0_1_3-0_0.34-1_0.09-2_1.17-3_0.11",
+          "168_l_0_c_0_2_3-0_0.07-1_1.72-2_1.1-3_0.71",
+          "169_l_0_c_1_2_3-0_0.55-1_0.53-2_0.37-3_0.22",
+          "170_l_0_c_0_1_2-0_0.1-1_0.78-2_0.4-3_1.28",
+          "171_l_0_c_0_1_3-0_0.16-1_0.07-2_0.24-3_0.2",
+          "172_l_0_c_0_2_3-0_0.19-1_0.92-2_0.79-3_0.12",
+          "173_l_0_c_1_2_3-0_0.27-1_0.12-2_0.4-3_0.41",
+          "174_l_0_c_0_1_2-0_0.67-1_1.34-2_0.58-3_0.7",
+          "175_l_0_c_0_1_3-0_0.18-1_0.89-2_0.68-3_0.37",
+          "176_l_0_c_0_2_3-0_0.41-1_0.47-2_0.97-3_0.08",
+          "177_l_0_c_1_2_3-0_1.31-1_0.48-2_0.28-3_0.05",
+          "178_l_0_c_0_1_2-0_0.48-1_1.05-2_0.66-3_0.6",
+          "179_l_0_c_0_1_3-0_0.98-1_0.33-2_0.71-3_0.35",
+          "180_l_0_c_0_2_3-0_0.56-1_0.69-2_0.05-3_0.18",
+          "181_l_0_c_1_2_3-0_1.86-1_0.25-2_0.31-3_0.18",
+          "182_l_0_c_0_1_2-0_1.12-1_1.05-2_0.53-3_1.1",
+          "183_l_0_c_0_1_3-0_0.87-1_0.43-2_0.03-3_0.07",
+          "184_l_0_c_0_2_3-0_0.65-1_0.94-2_0.1-3_0.7",
+          "185_l_0_c_1_2_3-0_0.33-1_0.95-2_0.24-3_0.71",
+          "186_l_0_c_0_1_2-0_0.39-1_0.07-2_0.08-3_0.43",
+          "187_l_0_c_0_1_3-0_0.05-1_0.18-2_0.24-3_0.2",
+          "188_l_0_c_0_2_3-0_0.56-1_1.31-2_0.4-3_0.82",
+          "189_l_0_c_1_2_3-0_0.49-1_0.39-2_0.45-3_0.66",
+          "190_l_0_c_0_1_2-0_0.09-1_0.85-2_0.28-3_0.85",
+          "191_l_0_c_0_1_3-0_0.05-1_0.11-2_0.96-3_0.93",
+          "192_l_0_c_0_2_3-0_0.51-1_0.44-2_0.24-3_0.3",
+          "193_l_0_c_1_2_3-0_0.22-1_0.67-2_0.61-3_1.16",
+          "194_l_0_c_0_1_2-0_0.59-1_0.0-2_0.04-3_0.26",
+          "195_l_0_c_0_1_3-0_0.51-1_1.05-2_1.87-3_0.31",
+          "196_l_0_c_0_2_3-0_0.17-1_0.62-2_0.92-3_0.31",
+          "197_l_0_c_1_2_3-0_0.02-1_0.59-2_1.32-3_0.8",
+          "198_l_0_c_0_1_2-0_0.03-1_0.11-2_0.44-3_2.01",
+          "199_l_0_c_0_1_3-0_0.82-1_0.29-2_0.02-3_0.3",
+          "200_l_0_c_0_2_3-0_0.48-1_0.23-2_0.27-3_0.17",
+          "201_l_0_c_1_2_3-0_0.12-1_0.7-2_0.16-3_0.19",
+          "202_l_0_c_0_1_2-0_0.26-1_0.66-2_0.53-3_0.76",
+          "203_l_0_c_0_1_3-0_0.6-1_1.34-2_0.38-3_0.1",
+          "204_l_0_c_0_2_3-0_0.1-1_0.84-2_0.08-3_0.15",
+          "205_l_0_c_1_2_3-0_0.88-1_0.28-2_0.67-3_0.83",
+          "206_l_0_c_0_1_2-0_0.22-1_0.21-2_1.45-3_0.36",
+          "207_l_0_c_0_1_3-0_0.02-1_0.15-2_0.1-3_0.38",
+          "208_l_0_c_0_2_3-0_0.41-1_1.88-2_1.04-3_0.83",
+          "209_l_0_c_1_2_3-0_0.92-1_1.3-2_0.2-3_0.78",
+          "210_l_0_c_0_1_2-0_0.08-1_0.03-2_0.04-3_0.1",
+          "211_l_0_c_0_1_3-0_0.83-1_0.46-2_0.19-3_0.34",
+          "212_l_0_c_0_2_3-0_0.54-1_1.0-2_0.82-3_0.8",
+          "213_l_0_c_1_2_3-0_1.51-1_0.67-2_1.93-3_0.31",
+          "214_l_0_c_0_1_2-0_0.04-1_1.63-2_0.74-3_0.07",
+          "215_l_0_c_0_1_3-0_0.77-1_0.06-2_2.47-3_1.47",
+          "216_l_0_c_0_2_3-0_0.63-1_0.07-2_0.11-3_0.27",
+          "217_l_0_c_1_2_3-0_1.25-1_0.56-2_0.11-3_0.06",
+          "218_l_0_c_0_1_2-0_0.18-1_0.15-2_0.08-3_0.52",
+          "219_l_0_c_0_1_3-0_0.01-1_0.33-2_0.22-3_0.13",
+          "220_l_0_c_0_2_3-0_0.5-1_0.55-2_0.03-3_0.27",
+          "221_l_0_c_1_2_3-0_0.94-1_0.62-2_0.52-3_0.41",
+          "222_l_0_c_0_1_2-0_0.45-1_0.42-2_0.35-3_1.3",
+          "223_l_0_c_0_1_3-0_0.07-1_0.07-2_0.13-3_0.04",
+          "224_l_0_c_0_2_3-0_1.61-1_0.44-2_0.05-3_0.08",
+          "225_l_0_c_1_2_3-0_0.82-1_0.56-2_0.97-3_0.05",
+          "226_l_0_c_0_1_2-0_0.19-1_0.32-2_0.45-3_0.5",
+          "227_l_0_c_0_1_3-0_0.78-1_0.51-2_2.04-3_0.56",
+          "228_l_0_c_0_2_3-0_0.15-1_0.4-2_0.23-3_1.22",
+          "229_l_0_c_1_2_3-0_0.26-1_0.23-2_1.38-3_0.32",
+          "230_l_0_c_0_1_2-0_0.85-1_0.18-2_0.33-3_0.01",
+          "231_l_0_c_0_1_3-0_0.89-1_0.19-2_0.47-3_0.48",
+          "232_l_0_c_0_2_3-0_0.47-1_0.49-2_0.32-3_0.02",
+          "233_l_0_c_1_2_3-0_1.85-1_0.08-2_0.02-3_0.19",
+          "234_l_0_c_0_1_2-0_0.29-1_0.03-2_0.53-3_0.12",
+          "235_l_0_c_0_1_3-0_0.56-1_1.17-2_0.53-3_0.3",
+          "236_l_0_c_0_2_3-0_0.2-1_0.38-2_1.49-3_0.16",
+          "237_l_0_c_1_2_3-0_0.8-1_0.03-2_0.73-3_0.15",
+          "238_l_0_c_0_1_2-0_0.01-1_0.01-2_0.47-3_1.36",
+          "239_l_0_c_0_1_3-0_0.28-1_0.1-2_1.07-3_0.43",
+          "240_l_0_c_0_2_3-0_0.18-1_0.53-2_0.17-3_0.01",
+          "241_l_0_c_1_2_3-0_0.7-1_0.72-2_0.42-3_0.97",
+          "242_l_0_c_0_1_2-0_0.27-1_0.54-2_0.1-3_0.48",
+          "243_l_0_c_0_1_3-0_1.25-1_0.22-2_0.62-3_0.06",
+          "244_l_0_c_0_2_3-0_0.17-1_0.97-2_0.03-3_0.16",
+          "245_l_0_c_1_2_3-0_0.12-1_0.27-2_1.03-3_0.15",
+          "246_l_0_c_0_1_2-0_0.06-1_0.45-2_0.25-3_0.55",
+          "247_l_0_c_0_1_3-0_1.46-1_0.26-2_0.27-3_0.32",
+          "248_l_0_c_0_2_3-0_0.11-1_1.39-2_0.07-3_0.76",
+          "249_l_0_c_1_2_3-0_0.41-1_0.5-2_0.06-3_0.3",
+          "250_l_0_c_0_1_2-0_0.94-1_0.09-2_0.09-3_0.83",
+          "251_l_0_c_0_1_3-0_0.45-1_0.07-2_0.55-3_0.39",
+          "252_l_0_c_0_2_3-0_0.31-1_0.25-2_0.6-3_0.16",
+          "253_l_0_c_1_2_3-0_0.18-1_0.12-2_0.13-3_0.55",
+          "254_l_0_c_0_1_2-0_0.57-1_1.09-2_0.74-3_0.05",
+          "255_l_0_c_0_1_3-0_0.16-1_0.64-2_1.69-3_0.01",
+          "256_l_0_c_0_2_3-0_0.09-1_0.99-2_0.18-3_0.01",
+          "257_l_0_c_1_2_3-0_1.03-1_0.5-2_0.79-3_0.1",
+          "258_l_0_c_0_1_2-0_0.2-1_0.43-2_0.14-3_0.04",
+          "259_l_0_c_0_1_3-0_0.19-1_0.38-2_0.83-3_0.35",
+          "260_l_0_c_0_2_3-0_0.27-1_0.93-2_0.62-3_0.01",
+          "261_l_0_c_1_2_3-0_1.59-1_0.11-2_0.41-3_1.02",
+          "262_l_0_c_0_1_2-0_0.88-1_0.16-2_0.27-3_0.14",
+          "263_l_0_c_0_1_3-0_0.15-1_0.28-2_1.69-3_0.2",
+          "264_l_0_c_0_2_3-0_0.08-1_0.26-2_0.13-3_0.25",
+          "265_l_0_c_1_2_3-0_1.11-1_0.58-2_1.7-3_0.04",
+          "266_l_0_c_0_1_2-0_0.51-1_0.51-2_0.69-3_1.07",
+          "267_l_0_c_0_1_3-0_0.25-1_0.24-2_1.0-3_0.02",
+          "268_l_0_c_0_2_3-0_0.09-1_0.68-2_0.05-3_0.21",
+          "269_l_0_c_1_2_3-0_0.08-1_0.7-2_1.13-3_0.76",
+          "270_l_0_c_0_1_2-0_0.43-1_0.12-2_0.99-3_0.46",
+          "271_l_0_c_0_1_3-0_0.33-1_1.36-2_1.4-3_0.15",
+          "272_l_0_c_0_2_3-0_0.09-1_0.06-2_0.59-3_0.03",
+          "273_l_0_c_1_2_3-0_0.41-1_0.33-2_0.26-3_0.19",
+          "274_l_0_c_0_1_2-0_0.03-1_0.31-2_0.04-3_0.37",
+          "275_l_0_c_0_1_3-0_0.38-1_0.02-2_0.83-3_0.38",
+          "276_l_0_c_0_2_3-0_1.37-1_0.3-2_0.99-3_0.79",
+          "277_l_0_c_1_2_3-0_0.24-1_1.02-2_0.43-3_0.01",
+          "278_l_0_c_0_1_2-0_0.29-1_1.14-2_0.33-3_0.16",
+          "279_l_0_c_0_1_3-0_1.47-1_0.76-2_0.53-3_0.13",
+          "280_l_0_c_0_2_3-0_0.48-1_1.42-2_1.84-3_0.41",
+          "281_l_0_c_1_2_3-0_1.02-1_0.58-2_0.41-3_0.24",
+          "282_l_0_c_0_1_2-0_0.26-1_0.91-2_0.04-3_0.72",
+          "283_l_0_c_0_1_3-0_0.43-1_0.36-2_0.02-3_0.18",
+          "284_l_0_c_0_2_3-0_0.12-1_0.58-2_0.02-3_0.1",
+          "285_l_0_c_1_2_3-0_1.38-1_0.22-2_0.02-3_0.04",
+          "286_l_0_c_0_1_2-0_0.25-1_0.42-2_1.01-3_0.07",
+          "287_l_0_c_0_1_3-0_0.43-1_0.74-2_1.07-3_0.26",
+          "288_l_0_c_0_2_3-0_0.36-1_0.08-2_0.36-3_0.23",
+          "289_l_0_c_1_2_3-0_0.93-1_0.11-2_0.92-3_0.1",
+          "290_l_0_c_0_1_2-0_0.43-1_0.61-2_0.21-3_0.6",
+          "291_l_0_c_0_1_3-0_1.24-1_0.02-2_0.8-3_0.17",
+          "292_l_0_c_0_2_3-0_0.3-1_0.0-2_0.15-3_0.86",
+          "293_l_0_c_1_2_3-0_0.06-1_0.77-2_1.34-3_0.6",
+          "294_l_0_c_0_1_2-0_1.31-1_0.62-2_1.25-3_0.35",
+          "295_l_0_c_3-0_2.17-1_0.31-2_1.42-3_0.04",
+          "296_l_0_r-0_0.87-1_0.39-2_1.34-3_0.51",
+          "297_l_0_r-0_0.23-1_0.53-2_0.56-3_0.98",
+          "298_l_0_r-0_0.56-1_1.41-2_1.44-3_0.26",
+          "299_l_0_r-0_0.59-1_0.78-2_1.47-3_0.9",
+          "300_l_0_r-0_0.62-1_0.23-2_0.19-3_0.56",
+          "301_l_0_r-0_0.41-1_0.03-2_1.38-3_0.21",
+          "302_l_0_r-0_0.01-1_1.47-2_0.45-3_0.66",
+          "303_l_0_r-0_0.83-1_0.41-2_0.59-3_0.34",
+          "304_l_0_r-0_1.62-1_0.7-2_1.55-3_0.87",
+          "305_l_0_r-0_0.17-1_0.98-2_0.16-3_0.93",
+          "306_l_0_r-0_0.92-1_0.94-2_1.06-3_0.74",
+          "307_l_0_r-0_1.4-1_0.93-2_0.41-3_0.0",
+          "308_l_0_r-0_0.23-1_1.47-2_0.77-3_0.78",
+          "309_l_0_r-0_1.16-1_2.18-2_0.25-3_1.16",
+          "310_l_0_r-0_1.02-1_1.39-2_0.5-3_1.23",
+          "311_l_0_r-0_1.72-1_1.05-2_1.01-3_0.11",
+          "312_l_0_r-0_1.87-1_0.67-2_0.39-3_0.83",
+          "313_l_0_r-0_0.77-1_1.08-2_0.33-3_0.86",
+          "314_l_0_r-0_0.72-1_0.05-2_0.14-3_0.79",
+          "315_l_0_r-0_0.33-1_1.79-2_0.32-3_0.21",
+          "316_l_0_r-0_0.63-1_1.25-2_0.46-3_0.12",
+          "317_l_0_r-0_0.16-1_0.27-2_1.75-3_1.2",
+          "318_l_0_r-0_1.31-1_0.1-2_0.5-3_0.9",
+          "319_l_0_r-0_0.19-1_0.06-2_2.24-3_0.58",
+          "320_l_0_r-0_1.75-1_0.55-2_0.34-3_0.16",
+          "321_l_0_r-0_0.31-1_0.53-2_2.1-3_0.64",
+          "322_l_0_r-0_0.24-1_0.82-2_0.21-3_0.74",
+          "323_l_0_r-0_0.47-1_1.26-2_2.16-3_0.96",
+          "324_l_0_r-0_1.01-1_0.27-2_0.73-3_0.92",
+          "325_l_0_r-0_0.12-1_1.0-2_1.21-3_0.17",
+          "326_l_0_r-0_0.43-1_2.22-2_1.0-3_0.89",
+          "327_l_0_r-0_0.35-1_1.53-2_0.28-3_0.58",
+          "328_l_0_r-0_1.67-1_0.47-2_0.37-3_0.79",
+          "329_l_0_r-0_0.43-1_0.31-2_0.64-3_1.43",
+          "330_l_0_r-0_0.81-1_0.73-2_1.88-3_2.11",
+          "331_l_0_r-0_0.71-1_0.17-2_0.9-3_0.29",
+          "332_l_0_r-0_1.67-1_0.11-2_0.33-3_0.87",
+          "333_l_0_r-0_0.65-1_0.8-2_0.72-3_1.29",
+          "334_l_0_r-0_1.22-1_1.12-2_0.0-3_0.3",
+          "335_l_0_r-0_0.98-1_1.18-2_1.75-3_0.04",
+          "336_l_0_r-0_0.38-1_0.07-2_1.0-3_0.88",
+          "337_l_0_r-0_0.11-1_1.43-2_1.12-3_0.64",
+          "338_l_0_r-0_0.84-1_0.93-2_0.04-3_0.27",
+          "339_l_0_r-0_0.93-1_0.25-2_0.06-3_0.44",
+          "340_l_0_r-0_1.28-1_2.22-2_0.4-3_0.68",
+          "341_l_0_r-0_0.18-1_0.32-2_0.67-3_0.18",
+          "342_l_0_r-0_0.08-1_1.23-2_0.18-3_0.85",
+          "343_l_0_r-0_0.23-1_1.24-2_0.82-3_0.97",
+          "344_l_0_r-0_0.21-1_0.58-2_0.09-3_1.16",
+          "345_l_0_r-0_0.1-1_1.2-2_0.08-3_0.48",
+          "346_l_0_r-0_0.12-1_0.67-2_2.58-3_0.04",
+          "347_l_0_r-0_1.23-1_1.95-2_0.25-3_0.45",
+          "348_l_0_r-0_1.07-1_0.72-2_0.64-3_2.11",
+          "349_l_0_r-0_1.11-1_0.0-2_1.97-3_1.2",
+          "350_l_0_r-0_0.23-1_0.35-2_0.09-3_0.48",
+          "351_l_0_r-0_1.47-1_1.03-2_0.52-3_0.24",
+          "352_l_0_r-0_0.62-1_0.55-2_0.37-3_0.91",
+          "353_l_0_r-0_0.37-1_0.64-2_0.98-3_1.32",
+          "354_l_0_r-0_0.46-1_0.47-2_0.24-3_1.16",
+          "355_l_0_r-0_0.77-1_1.21-2_0.65-3_0.65",
+          "356_l_0_r-0_1.56-1_0.53-2_0.21-3_0.16",
+          "357_l_0_r-0_0.91-1_0.03-2_0.22-3_0.44",
+          "358_l_0_r-0_0.22-1_1.31-2_0.67-3_0.07",
+          "359_l_0_r-0_0.24-1_0.75-2_0.64-3_1.0",
+          "360_l_0_r-0_2.34-1_0.38-2_0.15-3_0.53",
+          "361_l_0_r-0_0.28-1_0.07-2_0.79-3_0.62",
+          "362_l_0_r-0_0.6-1_1.18-2_0.0-3_0.28",
+          "363_l_0_r-0_0.67-1_0.7-2_0.34-3_0.83",
+          "364_l_0_r-0_2.0-1_1.08-2_0.52-3_0.27",
+          "365_l_0_r-0_0.45-1_0.96-2_0.98-3_0.78",
+          "366_l_0_r-0_0.38-1_0.5-2_0.26-3_0.24",
+          "367_l_0_r-0_0.05-1_0.68-2_1.12-3_1.55",
+          "368_l_0_r-0_0.28-1_1.87-2_1.34-3_0.81",
+          "369_l_0_r-0_0.79-1_1.15-2_0.03-3_1.05",
+          "370_l_0_r-0_1.78-1_1.02-2_0.55-3_1.19",
+          "371_l_0_r-0_1.59-1_0.6-2_0.19-3_0.01",
+          "372_l_0_r-0_0.87-1_0.09-2_1.81-3_0.8",
+          "373_l_0_r-0_0.29-1_0.54-2_0.74-3_0.41",
+          "374_l_0_r-0_0.63-1_0.43-2_0.1-3_1.03",
+          "375_l_0_r-0_0.64-1_0.28-2_0.03-3_0.5",
+          "376_l_0_r-0_0.5-1_0.19-2_0.89-3_0.98",
+          "377_l_0_r-0_0.49-1_0.72-2_1.25-3_0.19",
+          "378_l_0_r-0_1.26-1_1.42-2_0.83-3_0.58",
+          "379_l_0_r-0_0.22-1_0.09-2_0.6-3_1.49",
+          "380_l_0_r-0_1.6-1_0.19-2_0.58-3_0.69",
+          "381_l_0_r-0_0.74-1_0.57-2_1.36-3_0.71",
+          "382_l_0_r-0_0.11-1_1.37-2_0.51-3_0.47",
+          "383_l_0_r-0_0.61-1_0.42-2_1.39-3_0.86",
+          "384_l_0_r-0_0.6-1_1.28-2_2.13-3_1.82",
+          "385_l_0_r-0_0.69-1_0.48-2_1.09-3_1.27",
+          "386_l_0_r-0_0.21-1_0.59-2_0.88-3_1.15",
+          "387_l_0_r-0_0.45-1_0.56-2_0.28-3_0.81",
+          "388_l_0_r-0_0.71-1_0.32-2_1.26-3_0.5",
+          "389_l_0_r-0_0.28-1_0.09-2_0.14-3_1.13",
+          "390_l_0_r-0_0.19-1_0.1-2_1.26-3_1.93",
+          "391_l_0_r-0_0.44-1_0.87-2_0.66-3_0.16",
+          "392_l_0_r-0_0.42-1_0.77-2_1.21-3_0.81",
+          "393_l_0_r-0_0.77-1_0.42-2_1.17-3_0.3",
+          "394_l_0_r-0_1.23-1_0.12-2_0.76-3_0.57",
+          "395_l_0_r-0_0.48-1_0.45-2_1.65-3_0.93",
+          "396_l_0_r-0_0.09-1_0.27-2_0.35-3_1.99",
+          "397_l_0_r-0_0.31-1_0.38-2_0.08-3_0.38",
+          "398_l_0_r-0_1.35-1_0.59-2_0.83-3_0.74",
+          "399_l_0_r-0_1.33-1_0.79-2_0.09-3_1.42",
+          "400_l_0_r-0_0.56-1_1.62-2_0.16-3_0.54",
+          "401_l_0_r-0_0.2-1_1.62-2_2.07-3_0.41",
+          "402_l_0_r-0_0.08-1_1.23-2_0.59-3_1.14",
+          "403_l_0_r-0_0.57-1_0.79-2_0.22-3_0.61",
+          "404_l_0_r-0_1.08-1_1.36-2_1.11-3_0.64",
+          "405_l_0_r-0_0.77-1_0.62-2_1.92-3_0.45",
+          "406_l_0_r-0_0.73-1_1.0-2_0.29-3_0.34",
+          "407_l_0_r-0_0.16-1_0.26-2_0.39-3_1.25",
+          "408_l_0_r-0_1.44-1_1.37-2_0.1-3_1.81",
+          "409_l_0_r-0_0.03-1_0.12-2_1.26-3_0.41",
+          "410_l_0_r-0_0.81-1_0.09-2_1.15-3_0.77",
+          "411_l_0_r-0_0.42-1_0.12-2_0.45-3_0.68",
+          "412_l_0_r-0_1.38-1_0.99-2_0.84-3_0.74",
+          "413_l_0_r-0_0.07-1_0.7-2_1.3-3_0.32",
+          "414_l_0_r-0_0.97-1_0.05-2_0.2-3_0.52",
+          "415_l_0_r-0_0.74-1_0.25-2_1.57-3_1.01",
+          "416_l_0_r-0_0.74-1_1.77-2_2.09-3_0.76",
+          "417_l_0_r-0_0.5-1_0.98-2_0.11-3_0.06",
+          "418_l_0_r-0_1.33-1_0.1-2_0.94-3_0.7",
+          "419_l_0_r-0_1.12-1_0.54-2_0.09-3_0.14",
+          "420_l_0_r-0_0.58-1_0.53-2_0.25-3_0.76",
+          "421_l_0_r-0_0.67-1_0.56-2_0.82-3_0.69",
+          "422_l_0_r-0_0.3-1_0.23-2_1.06-3_0.22",
+          "423_l_0_r-0_0.46-1_0.88-2_0.54-3_0.19",
+          "424_l_0_r-0_0.68-1_0.72-2_0.3-3_0.05",
+          "425_l_0_r-0_1.8-1_0.57-2_0.4-3_0.54",
+          "426_l_0_r-0_1.66-1_0.42-2_1.07-3_1.17",
+          "427_l_0_r-0_0.28-1_1.09-2_1.67-3_0.44",
+          "428_l_0_r-0_0.97-1_0.91-2_0.93-3_0.17",
+          "429_l_0_r-0_0.39-1_0.74-2_0.41-3_1.48",
+          "430_l_0_r-0_0.14-1_1.1-2_0.1-3_0.18",
+          "431_l_0_r-0_0.21-1_0.67-2_0.84-3_0.98",
+          "432_l_0_r-0_0.45-1_0.37-2_2.15-3_1.28",
+          "433_l_0_r-0_0.63-1_0.27-2_1.14-3_0.74",
+          "434_l_0_r-0_2.05-1_1.55-2_1.38-3_0.66",
+          "435_l_0_r-0_0.56-1_1.1-2_2.06-3_1.01",
+          "436_l_0_r-0_0.35-1_0.19-2_1.68-3_0.07",
+          "437_l_0_r-0_1.14-1_0.09-2_0.13-3_1.67",
+          "438_l_0_r-0_0.93-1_0.97-2_0.1-3_0.51",
+          "439_l_0_r-0_0.1-1_0.47-2_0.26-3_1.0",
+          "440_l_0_r-0_0.6-1_1.74-2_0.89-3_1.37",
+          "441_l_0_r-0_0.93-1_0.67-2_0.6-3_0.18",
+          "442_l_0_r-0_1.42-1_0.52-2_0.7-3_0.16",
+          "443_l_0_r-0_1.74-1_0.66-2_0.93-3_1.04",
+          "444_l_0_r-0_0.49-1_0.26-2_0.22-3_1.12",
+          "445_l_0_r-0_1.27-1_0.3-2_1.52-3_2.28",
+          "446_l_0_r-0_0.11-1_0.01-2_0.38-3_0.69",
+          "447_l_0_r-0_1.4-1_0.74-2_0.39-3_0.12",
+          "448_l_0_r-0_0.68-1_0.55-2_0.11-3_0.01",
+          "449_l_0_r-0_0.98-1_0.85-2_2.3-3_0.91",
+          "450_l_0_r-0_1.05-1_0.17-2_2.15-3_0.37",
+          "451_l_0_r-0_0.41-1_2.16-2_0.62-3_0.07",
+          "452_l_0_r-0_0.6-1_0.34-2_1.21-3_1.22",
+          "453_l_0_r-0_0.36-1_0.45-2_0.64-3_1.11",
+          "454_l_0_r-0_0.46-1_0.14-2_0.77-3_0.57",
+          "455_l_0_r-0_1.37-1_0.41-2_1.35-3_0.08",
+          "456_l_0_r-0_0.22-1_0.44-2_0.8-3_0.0",
+          "457_l_0_r-0_0.39-1_0.51-2_0.62-3_0.03",
+          "458_l_0_r-0_1.73-1_1.12-2_0.54-3_0.34",
+          "459_l_0_r-0_0.35-1_0.3-2_0.05-3_1.08",
+          "460_l_0_r-0_0.25-1_0.35-2_2.11-3_0.13",
+          "461_l_0_r-0_0.14-1_0.54-2_0.84-3_1.53",
+          "462_l_0_r-0_0.26-1_0.47-2_1.96-3_1.54",
+          "463_l_0_r-0_0.85-1_0.52-2_0.76-3_0.56",
+          "464_l_0_r-0_1.07-1_0.65-2_0.76-3_1.28",
+          "465_l_0_r-0_0.06-1_0.12-2_0.55-3_0.39",
+          "466_l_0_r-0_0.17-1_1.1-2_0.55-3_0.33",
+          "467_l_0_r-0_1.32-1_0.43-2_0.32-3_0.11",
+          "468_l_0_r-0_0.21-1_0.67-2_2.29-3_0.39",
+          "469_l_0_r-0_0.33-1_0.86-2_0.43-3_1.67",
+          "470_l_0_r-0_1.25-1_0.34-2_1.62-3_0.14",
+          "471_l_0_r-0_1.31-1_0.89-2_1.06-3_0.96",
+          "472_l_0_r-0_0.54-1_0.28-2_1.43-3_1.45",
+          "473_l_0_r-0_1.5-1_0.71-2_0.84-3_2.07",
+          "474_l_0_r-0_0.41-1_0.46-2_0.03-3_0.32",
+          "475_l_0_r-0_0.39-1_0.59-2_0.08-3_1.04",
+          "476_l_0_r-0_1.04-1_0.76-2_0.89-3_0.11",
+          "477_l_0_r-0_0.7-1_0.07-2_0.14-3_0.24",
+          "478_l_0_r-0_1.51-1_0.06-2_2.45-3_0.89",
+          "479_l_0_r-0_0.03-1_0.9-2_1.52-3_1.44",
+          "480_l_0_r-0_0.72-1_1.42-2_0.66-3_1.44",
+          "481_l_0_r-0_0.42-1_0.54-2_1.42-3_0.72",
+          "482_l_0_r-0_0.47-1_0.18-2_1.43-3_0.75",
+          "483_l_0_r-0_0.35-1_0.23-2_1.85-3_0.8",
+          "484_l_0_r-0_0.8-1_0.63-2_0.16-3_1.11",
+          "485_l_0_r-0_0.53-1_0.03-2_0.39-3_0.03",
+          "486_l_0_r-0_1.71-1_0.22-2_2.17-3_0.87",
+          "487_l_0_r-0_1.58-1_0.16-2_1.12-3_1.06",
+          "488_l_0_r-0_0.25-1_1.15-2_0.37-3_0.96",
+          "489_l_0_r-0_0.89-1_0.96-2_0.36-3_0.36",
+          "490_l_0_r-0_0.73-1_0.43-2_0.1-3_0.15",
+          "491_l_0_r-0_1.11-1_0.38-2_0.38-3_1.34",
+          "492_l_0_r-0_0.32-1_0.05-2_0.74-3_0.58",
+          "493_l_0_r-0_0.41-1_1.23-2_0.33-3_0.49",
+          "494_l_0_r-0_0.66-1_0.08-2_0.02-3_0.17",
+          "495_l_0_r-0_0.12-1_0.68-2_1.93-3_1.65",
+          "496_l_0_r-0_0.01-1_0.11-2_0.64-3_1.75",
+          "497_l_0_r-0_0.01-1_1.34-2_0.8-3_0.43",
+          "498_l_0_r-0_1.28-1_0.43-2_1.23-3_0.22",
+          "499_l_0_r-0_1.07-1_0.34-2_0.1-3_0.62",
+          "500_l_0_r-0_1.6-1_0.17-2_0.81-3_0.7",
+          "501_l_0_r-0_0.27-1_0.28-2_0.29-3_1.1",
+          "502_l_0_r-0_0.54-1_0.11-2_1.12-3_0.67",
+          "503_l_0_r-0_0.31-1_0.8-2_0.59-3_0.45",
+          "504_l_0_r-0_0.75-1_0.21-2_1.63-3_0.16",
+          "505_l_0_r-0_2.27-1_0.27-2_0.6-3_0.51",
+          "506_l_0_r-0_0.65-1_0.38-2_0.38-3_1.07",
+          "507_l_0_r-0_0.8-1_0.08-2_0.41-3_1.02",
+          "508_l_0_r-0_0.2-1_0.84-2_1.69-3_0.94",
+          "509_l_0_r-0_0.68-1_0.01-2_0.27-3_1.39",
+          "510_l_0_r-0_1.51-1_0.01-2_0.37-3_1.37",
+          "511_l_0_r-0_0.27-1_1.11-2_0.87-3_0.93",
+          "512_l_0_r-0_1.9-1_0.25-2_0.75-3_1.18",
+          "513_l_0_r-0_0.49-1_1.6-2_0.11-3_0.51",
+          "514_l_0_r-0_1.18-1_1.02-2_0.22-3_0.62",
+          "515_l_0_r-0_0.81-1_1.54-2_0.36-3_0.13",
+          "516_l_0_r-0_0.64-1_0.06-2_0.44-3_1.48",
+          "517_l_0_r-0_0.27-1_0.7-2_0.53-3_0.56",
+          "518_l_0_r-0_1.36-1_0.79-2_0.47-3_0.07",
+          "519_l_0_r-0_0.88-1_0.44-2_0.44-3_0.43",
+          "520_l_0_r-0_0.48-1_1.12-2_1.43-3_1.05",
+          "521_l_0_r-0_0.25-1_0.62-2_0.02-3_0.49",
+          "522_l_0_r-0_0.69-1_0.87-2_0.65-3_1.12",
+          "523_l_0_r-0_1.58-1_0.97-2_0.11-3_0.55",
+          "524_l_0_r-0_1.47-1_0.11-2_0.36-3_0.05",
+          "525_l_0_r-0_1.64-1_0.61-2_1.87-3_0.62",
+          "526_l_0_r-0_1.55-1_0.02-2_0.23-3_1.35",
+          "527_l_0_r-0_1.07-1_0.2-2_0.65-3_0.4",
+          "528_l_0_r-0_0.14-1_0.92-2_0.72-3_0.25",
+          "529_l_0_r-0_1.09-1_0.99-2_0.6-3_1.79",
+          "530_l_0_r-0_0.14-1_0.04-2_0.51-3_0.81",
+          "531_l_0_r-0_1.31-1_0.51-2_1.64-3_1.34",
+          "532_l_0_r-0_1.28-1_0.1-2_0.28-3_0.4",
+          "533_l_0_r-0_0.44-1_0.53-2_1.22-3_0.53",
+          "534_l_0_r-0_1.27-1_0.68-2_1.09-3_0.24",
+          "535_l_0_r-0_1.19-1_1.21-2_0.15-3_1.47",
+          "536_l_0_r-0_0.35-1_1.06-2_0.33-3_0.66",
+          "537_l_0_r-0_0.69-1_0.84-2_0.69-3_1.92",
+          "538_l_0_r-0_0.77-1_0.84-2_0.91-3_1.1",
+          "539_l_0_r-0_1.44-1_0.51-2_0.55-3_0.76",
+          "540_l_0_r-0_1.3-1_0.01-2_1.38-3_1.18",
+          "541_l_0_r-0_1.46-1_0.07-2_1.1-3_0.69",
+          "542_l_0_r-0_0.57-1_1.16-2_0.16-3_0.37",
+          "543_l_0_r-0_0.34-1_0.19-2_0.01-3_0.27",
+          "544_l_0_r-0_0.16-1_1.34-2_0.14-3_0.04",
+          "545_l_0_r-0_0.69-1_0.5-2_0.46-3_0.01",
+          "546_l_0_r-0_0.45-1_0.86-2_0.99-3_0.4",
+          "547_l_0_r-0_2.05-1_0.91-2_0.76-3_0.98",
+          "548_l_0_r-0_1.2-1_1.93-2_1.72-3_0.3",
+          "549_l_0_r-0_0.8-1_0.35-2_1.57-3_1.34",
+          "550_l_0_r-0_0.22-1_0.79-2_0.3-3_1.4",
+          "551_l_0_r-0_0.94-1_0.08-2_0.22-3_1.15",
+          "552_l_0_r-0_0.64-1_0.02-2_1.3-3_1.05",
+          "553_l_0_r-0_0.94-1_0.85-2_0.01-3_1.11",
+          "554_l_0_r-0_0.3-1_0.34-2_0.8-3_0.5",
+          "555_l_0_r-0_0.58-1_0.39-2_0.66-3_0.4",
+          "556_l_0_r-0_0.17-1_0.38-2_1.41-3_1.19",
+          "557_l_0_r-0_0.33-1_1.41-2_0.29-3_1.07",
+          "558_l_0_r-0_0.59-1_0.59-2_0.29-3_0.65",
+          "559_l_0_r-0_0.68-1_0.62-2_0.93-3_0.07",
+          "560_l_0_r-0_0.2-1_0.73-2_1.81-3_1.1",
+          "561_l_0_r-0_0.37-1_0.43-2_1.57-3_0.5",
+          "562_l_0_r-0_0.68-1_1.41-2_0.42-3_0.63",
+          "563_l_0_r-0_1.06-1_0.11-2_0.6-3_0.71",
+          "564_l_0_r-0_0.83-1_1.06-2_0.84-3_0.24",
+          "565_l_0_r-0_0.39-1_0.09-2_1.06-3_0.17",
+          "566_l_0_r-0_0.37-1_1.46-2_1.07-3_1.0",
+          "567_l_0_r-0_0.32-1_0.64-2_0.85-3_0.74",
+          "568_l_0_r-0_0.25-1_0.4-2_0.85-3_2.11",
+          "569_l_0_r-0_0.72-1_0.46-2_0.63-3_0.36",
+          "570_l_0_r-0_0.2-1_0.05-2_1.79-3_1.38",
+          "571_l_0_r-0_0.43-1_1.36-2_0.48-3_0.27",
+          "572_l_0_r-0_0.24-1_0.96-2_1.59-3_1.53",
+          "573_l_0_r-0_0.24-1_0.2-2_1.13-3_0.1",
+          "574_l_0_r-0_0.8-1_1.59-2_0.24-3_0.32",
+          "575_l_0_r-0_1.45-1_0.65-2_0.88-3_0.09",
+          "576_l_0_r-0_0.96-1_0.78-2_0.21-3_1.67",
+          "577_l_0_r-0_0.11-1_0.28-2_1.65-3_0.37",
+          "578_l_0_r-0_1.2-1_1.53-2_0.29-3_0.77",
+          "579_l_0_r-0_0.69-1_0.3-2_0.81-3_0.51",
+          "580_l_0_r-0_0.63-1_0.29-2_2.41-3_0.77",
+          "581_l_0_r-0_0.54-1_0.1-2_0.25-3_0.69",
+          "582_l_0_r-0_0.28-1_0.74-2_0.65-3_0.98",
+          "583_l_0_r-0_0.1-1_1.09-2_1.15-3_0.53",
+          "584_l_0_r-0_0.24-1_1.64-2_1.91-3_0.24",
+          "585_l_0_r-0_0.18-1_1.38-2_0.41-3_1.43",
+          "586_l_0_r-0_1.13-1_0.45-2_0.11-3_0.46",
+          "587_l_0_r-0_0.26-1_0.41-2_0.21-3_0.72",
+          "588_l_0_r-0_0.48-1_1.13-2_0.49-3_0.25",
+          "589_l_0_r-0_0.68-1_0.04-2_3.15-3_0.73",
+          "590_l_0_r-0_0.65-1_0.08-2_0.04-3_0.14",
+          "591_l_0_r-0_1.24-1_0.17-2_0.79-3_0.45",
+          "592_l_0_r-0_0.47-1_1.09-2_1.67-3_0.2",
+          "593_l_0_r-0_0.42-1_0.82-2_0.24-3_0.34",
+          "594_l_0_r-0_0.64-1_1.16-2_0.96-3_0.13",
+          "595_l_0_r-0_1.76-1_0.81-2_2.3-3_2.65",
+          "596_l_0_r-0_1.58-1_1.13-2_0.58-3_0.23",
+          "597_l_0_r-0_1.07-1_0.62-2_0.83-3_1.64",
+          "598_l_0_r-0_0.58-1_0.52-2_1.44-3_0.45",
+          "599_l_0_r-0_1.31-1_1.0-2_0.13-3_1.32",
+          "600_l_0_r-0_0.36-1_1.64-2_0.71-3_0.63",
+          "601_l_0_r-0_0.2-1_2.12-2_0.14-3_1.34",
+          "602_l_0_r-0_0.58-1_0.27-2_0.86-3_1.06",
+          "603_l_0_r-0_0.78-1_1.43-2_0.59-3_1.07",
+          "604_l_0_r-0_1.02-1_1.14-2_0.6-3_0.59",
+          "605_l_0_r-0_0.22-1_0.81-2_0.62-3_0.76",
+          "606_l_0_r-0_0.02-1_0.02-2_0.23-3_0.1",
+          "607_l_0_r-0_0.11-1_1.37-2_1.8-3_1.14",
+          "608_l_0_r-0_0.92-1_1.22-2_1.01-3_0.56",
+          "609_l_0_r-0_1.37-1_1.21-2_0.02-3_1.8",
+          "610_l_0_r-0_0.74-1_0.3-2_0.93-3_1.31",
+          "611_l_0_r-0_0.14-1_1.04-2_0.85-3_0.12",
+          "612_l_0_r-0_1.27-1_0.74-2_0.42-3_0.67",
+          "613_l_0_r-0_0.52-1_0.55-2_1.06-3_1.18",
+          "614_l_0_r-0_0.3-1_0.99-2_1.75-3_0.41",
+          "615_l_0_r-0_0.4-1_1.15-2_0.77-3_1.73",
+          "616_l_0_r-0_0.97-1_0.35-2_0.35-3_1.35",
+          "617_l_0_r-0_1.15-1_0.96-2_0.77-3_0.21",
+          "618_l_0_r-0_0.01-1_0.82-2_0.58-3_0.18",
+          "619_l_0_r-0_0.12-1_0.91-2_0.54-3_2.02",
+          "620_l_0_r-0_1.23-1_0.11-2_1.26-3_1.34",
+          "621_l_0_r-0_0.26-1_0.37-2_0.57-3_1.26",
+          "622_l_0_r-0_0.43-1_0.86-2_0.19-3_0.95",
+          "623_l_0_r-0_1.04-1_1.08-2_1.66-3_0.12",
+          "624_l_0_r-0_0.36-1_0.75-2_0.21-3_1.8",
+          "625_l_0_r-0_0.47-1_0.93-2_1.04-3_0.59",
+          "626_l_0_r-0_0.85-1_0.26-2_0.11-3_1.53",
+          "627_l_0_r-0_0.61-1_0.05-2_0.55-3_0.16",
+          "628_l_0_r-0_0.56-1_1.74-2_0.87-3_0.83",
+          "629_l_0_r-0_0.38-1_1.33-2_0.87-3_2.11",
+          "630_l_0_r-0_1.27-1_0.78-2_1.38-3_0.22",
+          "631_l_0_r-0_0.14-1_1.36-2_2.17-3_0.63",
+          "632_l_0_r-0_0.24-1_0.22-2_1.32-3_1.75",
+          "633_l_0_r-0_1.78-1_0.83-2_1.04-3_0.69",
+          "634_l_0_r-0_0.9-1_0.83-2_1.66-3_0.95",
+          "635_l_0_r-0_0.31-1_0.21-2_1.74-3_0.05",
+          "636_l_0_r-0_1.13-1_1.04-2_0.25-3_1.34",
+          "637_l_0_r-0_1.31-1_0.89-2_0.12-3_0.96",
+          "638_l_0_r-0_0.22-1_0.89-2_3.17-3_0.91",
+          "639_l_0_r-0_0.95-1_1.51-2_0.73-3_0.49",
+          "640_l_0_r-0_0.77-1_1.72-2_0.05-3_0.44",
+          "641_l_0_r-0_1.4-1_0.09-2_0.3-3_0.97",
+          "642_l_0_r-0_0.62-1_0.09-2_0.67-3_0.03",
+          "643_l_0_r-0_1.67-1_1.05-2_0.74-3_0.59",
+          "644_l_0_r-0_0.81-1_0.89-2_1.05-3_0.0",
+          "645_l_0_r-0_0.17-1_1.03-2_1.46-3_0.7",
+          "646_l_0_r-0_0.72-1_0.25-2_1.6-3_1.45",
+          "647_l_0_r-0_0.72-1_0.18-2_0.06-3_0.14",
+          "648_l_0_r-0_1.05-1_1.14-2_0.39-3_0.84",
+          "649_l_0_r-0_0.71-1_1.65-2_0.07-3_1.2",
+          "650_l_0_r-0_0.1-1_0.22-2_0.07-3_1.32",
+          "651_l_0_r-0_0.46-1_0.67-2_1.61-3_0.4",
+          "652_l_0_r-0_0.78-1_1.21-2_0.63-3_0.18",
+          "653_l_0_r-0_0.42-1_0.85-2_0.31-3_0.43",
+          "654_l_0_r-0_1.14-1_0.07-2_0.17-3_1.77",
+          "655_l_0_r-0_0.29-1_0.14-2_1.57-3_0.95",
+          "656_l_0_r-0_1.16-1_1.78-2_1.93-3_0.38",
+          "657_l_0_r-0_0.68-1_0.96-2_1.5-3_0.58",
+          "658_l_0_r-0_1.57-1_1.09-2_0.69-3_0.1",
+          "659_l_0_r-0_0.81-1_0.03-2_0.36-3_1.67",
+          "660_l_0_r-0_0.16-1_0.66-2_1.34-3_1.14",
+          "661_l_0_r-0_1.13-1_0.58-2_0.06-3_0.21",
+          "662_l_0_r-0_0.88-1_1.13-2_1.48-3_1.35",
+          "663_l_0_r-0_2.09-1_0.13-2_0.05-3_1.8",
+          "664_l_0_r-0_1.32-1_1.49-2_0.09-3_1.72",
+          "665_l_0_r-0_0.54-1_1.36-2_0.74-3_2.08"
          ],
          "type": "scatter3d",
          "x": [
-          -9.39819415073669,
-          -11.714348648216252,
-          -10.030792936727298,
-          -11.93122743789546,
-          -9.38550276081797,
-          -10.92356514781904,
-          -10.31557998368875,
-          -9.6171670101447,
-          -10.380796079283293,
-          -10.083182840428496,
-          -10.672781118179687,
-          -9.420713618435512,
-          -11.782759835625892,
-          -10.770790755498686,
-          -9.59424860893065,
-          -10.382858900288326,
-          -9.58266299994006,
-          -9.369610064610944,
-          -9.649326713448717,
-          -8.076773883628094,
-          -9.33423111418971,
-          -8.407846913017929,
-          -10.432910959071032,
-          -11.00225998420091,
-          -11.23072853689647,
-          -11.543365753259824,
-          -10.526212666901486,
-          -10.286139360597259,
-          -10.375036733627743,
-          -9.633761157850321,
-          -10.46998585090999,
-          -9.224917395915995,
-          -10.388431717002485,
-          -8.886946695373014,
-          -9.532902338518678,
-          -11.89646851361921,
-          -10.994129828183642,
-          -9.489965413241915,
-          -9.573914682653,
-          -10.685208998660535,
-          -10.755289034787008,
-          -10.727122951140565,
-          -10.582953893467465,
-          -9.888195032408602,
-          -11.379451826940274,
-          -10.605635898432473,
-          -8.990245144692514,
-          -10.462857937786533,
-          -6.486104338185701,
-          -11.033951376891773,
-          -10.139626232660673,
-          -10.785761295739487,
-          -10.443870532843269,
-          -9.913023506774122,
-          -9.435223603707488,
-          -10.343687397507127,
-          -9.808615387541801,
-          -10.072111005618066,
-          -10.147228529340936,
-          -10.827393533596005,
-          -9.796622581459209,
-          -9.523080495511884,
-          -10.497947710309953,
-          -10.056910388972563,
-          -11.242973437330884,
-          -8.876214034090793,
-          -10.377963774661975,
-          -10.031807260609199,
-          -9.879242703015514,
-          -8.869232976021713,
-          -8.651934221368844,
-          -10.13489329300021,
-          -8.996811958008367,
-          -8.944829310165671,
-          -10.299909513305362,
-          -10.065352783392077,
-          -9.379224473447017,
-          -10.203762593632794,
-          -10.048406709820316,
-          -10.346478825644809,
-          -10.995183020313211,
-          -8.407348181235392,
-          -11.080247222139043,
-          -7.13752430226576,
-          -11.021962366822773,
-          -10.285695472706246,
-          -11.933065382608719,
-          -10.412329022218099,
-          -9.421343229313404,
-          -9.92065483225753,
-          -10.177968024736195,
-          -9.978019165630164,
-          -9.341042837301146,
-          -9.9261992824764,
-          -9.74427090767008,
-          -10.694949580985751,
-          -11.25491882892633,
-          -10.53123817782706,
-          -10.443254225913348,
-          -10.821473544585567,
-          -9.134028073092182,
-          -10.589234830289387,
-          -10.444054594595766,
-          -10.039962102872522,
-          -8.984380456941825,
-          -10.816187517309931,
-          -9.32216493404649,
-          -9.775405000672874,
-          -11.000629040932116,
-          -10.869378282589944,
-          -10.165248859061855,
-          -9.974886082662843,
-          -9.7629228681823,
-          -9.792720543177536,
-          -10.703129230332584,
-          -11.702430930394819,
-          -10.032857082786501,
-          -10.479509743249285,
-          -9.455206370446984,
-          -10.141560119578862,
-          -9.505218318382653,
-          -10.648121926800464,
-          -9.665716004355462,
-          -10.486976623855373,
-          -11.28730011932215,
-          -9.245894287393496,
-          -13.310738023328627,
-          -9.587523171752027,
-          -10.124218600393839,
-          -9.718026128105015,
-          -10.301443194556146,
-          -10.076445854196347,
-          -8.812264006565036,
-          -11.363158903474792,
-          -9.575172963676772,
-          -11.119143200901807,
-          -10.350714465189865,
-          -11.224648242694096,
-          -10.683391040036913,
-          -10.735160110124006,
-          -8.206654173760946,
-          -9.880948960965405,
-          -10.853907895956013,
-          -11.160513084719172,
-          -9.70326277245763,
-          -10.762742517551613,
-          -9.9195313178369,
-          -9.066041508643243,
-          -9.918769821348917,
-          -13.83743203506943,
-          -10.884258259875264,
-          -10.832252027688142,
-          -10.30532730994172,
-          -10.18049173815038,
-          -9.78971831778105,
-          -9.680061296614975,
-          -11.039252695024894,
-          -9.90065769251287,
-          -9.672404468733163,
-          -10.66633266322589,
-          -9.935334557147044,
-          -10.228504447551266,
-          -10.858598734485465,
-          -10.36018028477729,
-          -10.353609807642961,
-          -9.96492258736194,
-          -10.07436303001612,
-          -9.964722413136423,
-          -8.972814160830785,
-          -9.608782797353733,
-          -10.385929362631503,
-          -8.482143090346218,
-          -10.019279818536013,
-          -9.747296926644212,
-          -10.699338868262252,
-          -10.01329135750568,
-          -10.354681123155732,
-          -11.819410186687138,
-          -9.442941624748805,
-          -9.652863835870324,
-          -10.23093325457528,
-          -8.762913676562933,
-          -10.376893518019404,
-          -9.793051995270115,
-          -10.664616278508337,
-          -8.45092828365663,
-          -11.809214684344774,
-          -10.121871656390871,
-          -8.29372962906357,
-          -9.880831873220417,
-          -10.334040240510365,
-          -10.155265621359389,
-          -8.947878176369137,
-          -9.961877300746707,
-          -11.994737842689414,
-          -10.397749609121375,
-          -11.065904127492193,
-          -9.830616600851984,
-          -9.551340643600179,
-          -10.962861791700567,
-          -10.689359141555192,
-          -9.398376799754557,
-          -9.532069783178663,
-          -9.926658807123586,
-          -10.922874387959276,
-          -9.275811580143419,
-          -9.171526964519447,
-          -10.061858948318022,
-          -10.562792328629142,
-          -10.27076255989942,
-          -12.92785788268489,
-          -9.939738752606248,
-          -10.059184824764454,
-          -9.357990527912571,
-          -9.77524422211442,
-          -11.910998140579949,
-          -9.77448708417121,
-          -10.046009780961219,
-          -8.144582772238685,
-          -9.455087700000185,
-          -10.136843704580846,
-          -12.641995201539867,
-          -9.478319459103993,
-          -9.226517623647588,
-          -8.513439505516434,
-          -10.034448931356097,
-          -9.497105943154112,
-          -10.999996667874772,
-          -8.581456840749963,
-          -10.31479700924308,
-          -10.169179614346646,
-          -8.599974508424811,
-          -9.834662726534317,
-          -9.60598482892676,
-          -9.58377014662727,
-          -9.9077631148078,
-          -12.266349128665599,
-          -9.462661804590839,
-          -9.687534668018525,
-          -9.790753507902155,
-          -9.908650821256451,
-          -10.227920369315353,
-          -10.720401288745325,
-          -11.00797396351507,
-          -10.090795542834123,
-          -10.528698177187765,
-          -10.848154030630957,
-          -8.32689144983985,
-          -9.533099379601307,
-          -9.98176895513116,
-          -9.189491925376618,
-          -9.58121461154772,
-          -9.942812072633927,
-          -9.95065313786825,
-          -9.645088590423565,
-          -9.272834045960995,
-          -10.132242193429919,
-          -6.915838887496726,
-          -11.040514478717547,
-          -11.167564031728157,
-          -10.111076518403037,
-          -9.141420028839438,
-          -12.595033053892623,
-          -10.82284572395427,
-          -10.378001748093748,
-          -9.807094755925382,
-          -9.941325677800545,
-          -11.353507456015134,
-          -10.211363029556471,
-          -10.751070091076528,
-          -12.147891023844245,
-          -10.772877961916038,
-          -10.719166369909072,
-          -9.974451573853882,
-          -11.096165759274683,
-          -11.3301164503783,
-          -11.752578701061244,
-          -8.996915087460476,
-          -10.078244400204738,
-          -10.245208977240482,
-          -10.509154845876134,
-          -10.471113982909605,
-          -9.479183073060419,
-          -11.178958185049865,
-          -10.100649243961165,
-          -9.995486280993708,
-          -12.441973447560379,
-          -10.791703793375623,
-          -11.237206975797246,
-          -8.560605780478353,
-          -10.196132979168398,
-          -9.4795823641033,
-          -9.806607462914034,
-          -8.305694214382369,
-          -9.364367028686532,
-          -10.452984949267677,
-          -9.665450810703774,
-          -9.726454707335,
-          -11.082208183713544,
-          -10.06837884312703,
-          -9.888303908922854,
-          -9.30829740838746,
-          -8.712692481540069,
-          -10.044068915879926,
-          -10.54399237581478,
-          -10.071330474844883,
-          -9.065367332698171,
-          -9.69756727705472,
-          -10.001486228806309,
-          -12.955550776430837,
-          -10.517260053344591,
-          -10.255116261019092,
-          -9.24655610382757,
-          -9.644068770620528,
-          -9.393086337748835,
-          -10.896476530630931,
-          -10.727395395837847,
-          -10.62023145643794,
-          -10.74156961460553,
-          -10.830935680729183,
-          -8.867692277956287,
-          -10.304477493030626,
-          -9.726373181650121,
-          -10.913456284654695,
-          -10.939659130634588,
-          -10.378451944062565,
-          -9.804508681544936,
-          -8.79743528308063,
-          -8.977179942913901,
-          -10.095902243092933,
-          -10.223263186529728,
-          -10.003515957230602,
-          -9.227219879706318,
-          -9.407218621450275,
-          -10.288016318338592,
-          -9.667910356732415,
-          -10.384979538353578,
-          -10.236691535100919,
-          -10.360725911065007,
-          -10.711266199370097,
-          -8.83587303289171,
-          -10.095703452234261,
-          -10.140758330646173,
-          -9.079410927593534,
-          -11.228676956584152,
-          -9.86549085134444,
-          -9.681184515172998,
-          -9.938513282990787,
-          -9.949608731226094,
-          -10.913208500077875,
-          -10.232316062866708,
-          -10.271343803424708,
-          -10.82682488776013,
-          -11.35072906378073,
-          -10.118768001858195,
-          -9.935447519016535,
-          -10.836090664640967,
-          -9.834476817885696,
-          -10.125535729992782,
-          -9.252846737891007,
-          -10.012157011036118,
-          -11.126748405300987,
-          -8.689807731608427,
-          -10.38888074990663,
-          -9.86579144257398,
-          -10.778412117185166,
-          -10.272982122263977,
-          -9.185916536759215,
-          -9.909839595955743,
-          -10.623803567195747,
-          -10.006244834162116,
-          -10.724370070020546,
-          -10.19843754544167,
-          -10.412050714509654,
-          -9.310716777225556,
-          -10.034254506731399,
-          -9.8990388915141,
-          -11.651394861959815,
-          -10.891165816518267,
-          -10.409591059217632,
-          -10.075413112413587,
-          -9.345686694902447,
-          -9.535464308668185,
-          -9.896824878104061,
-          -9.705639450155093,
-          -10.280979153033014,
-          -10.235427103129556,
-          -9.171025543721875,
-          -8.840515924921503,
-          -10.056485165013875,
-          -10.153797658425852,
-          -8.074700267861532,
-          -9.151909044508031,
-          -10.098338132634442,
-          -10.486063384538937,
-          -10.168210689431465,
-          -10.885717282341721,
-          -10.1737163877275,
-          -10.34056746315999,
-          -11.507786499046864,
-          -9.685219390545567,
-          -11.639457768439215,
-          -9.864559949532653,
-          -11.224953547758417,
-          -9.020586843423207,
-          -9.600547711138795,
-          -9.5980214476019,
-          -10.575889368820764,
-          -10.289413902231779,
-          -9.84074007515616,
-          -10.035726633618774,
-          -10.430909981082813,
-          -10.677476903639441,
-          -9.782761702415725,
-          -9.830979769847582,
-          -9.969687308261625,
-          -9.780951202863347,
-          -10.502362224690758,
-          -11.724841721055462,
-          -9.912062901849163,
-          -10.01305065514909,
-          -10.116307179659518,
-          -9.954166832311266,
-          -9.919280395559511,
-          -9.348657519799428,
-          -10.610928102955393,
-          -7.677346773956067,
-          -10.502779915273468,
-          -8.3645393377826,
-          -9.537650964969469,
-          -8.85852737805082,
-          -11.602202423381328,
-          -9.823534317103325,
-          -9.435131773743896,
-          -9.0544211157971,
-          -8.273354004849349,
-          -10.080239553825452,
-          -10.869723233185855,
-          -11.269580470181426,
-          -9.772078745754136,
-          -9.168051696493892,
-          -11.1046164022793,
-          -12.001109539072685,
-          -10.283264025204563,
-          -7.619051310289588,
-          -10.417983833742042,
-          -9.049637862534423,
-          -8.847302238340806,
-          -10.247104831031768,
-          -11.70445689754937,
-          -10.36846597873317,
-          -10.383799188782842,
-          -10.51227461553345,
-          -11.0158323385821,
-          -7.499741857761839,
-          -11.676795663522745,
-          -10.319037945542652,
-          -9.356040137312274,
-          -9.33148900393377,
-          -10.271652432766025,
-          -9.372936504379576,
-          -9.554387904676856,
-          -9.053299736900863,
-          -9.670861739382977,
-          -10.138876140500376,
-          -9.695351067377313,
-          -9.025720030217066,
-          -9.317220067427202,
-          -9.34055428777074,
-          -9.964946903382476,
-          -10.690443466883288,
-          -9.530171618538033,
-          -8.10922171431195,
-          -10.551470769991488,
-          -10.387859147968776,
-          -11.510245062370457,
-          -9.666747126534442,
-          -10.404121559656716,
-          -9.468534568639193,
-          -9.879997577337758,
-          -9.776897659947053,
-          -9.876174568093129,
-          -10.973958160886653,
-          -8.857964559843607,
-          -9.457170682613851,
-          -10.639484314488534,
-          -9.402125806913668,
-          -9.53163277336623,
-          -11.296740187483564,
-          -9.270478383057021,
-          -9.420251414682623,
-          -10.939477061714335,
-          -9.256167553138933,
-          -9.534808618330082,
-          -10.495009935842756,
-          -10.660035683448676,
-          -9.168661323309436,
-          -10.686844344611037,
-          -9.897602853072346,
-          -9.217701300473932,
-          -9.324409530397084,
-          -9.485139712445594,
-          -12.419782950662794,
-          -10.050628479768992,
-          -9.954572195485037,
-          -9.681194477801197,
-          -11.090545736501754,
-          -10.453531659310515,
-          -8.527211129190134,
-          -8.859578340153357,
-          -10.025490834017198,
-          -8.293930588877926,
-          -9.152978595211751,
-          -10.112273897350374,
-          -8.847821964197749,
-          -8.70275917084834,
-          -10.489451125051325,
-          -8.771010261737327,
-          -8.570192881307085,
-          -9.471162776902542,
-          -8.121078367205717,
-          -9.381946750313878,
-          -10.144624425384295,
-          -10.871255272035157,
-          -11.563546633327409,
-          -9.439574245067996,
-          -10.326689998489899,
-          -10.672124360651225,
-          -9.910382396574578,
-          -9.698825978952213,
-          -11.378253642686769,
-          -9.642978252044584,
-          -9.843748519453408,
-          -10.89975867304656,
-          -9.157494541307674,
-          -10.340270945529017,
-          -10.728898321021347,
-          -8.438518172091356,
-          -9.847676704549915,
-          -8.814285799703411,
-          -10.413938221238563,
-          -9.435258537970782,
-          -9.07752405267628,
-          -10.10280676472289,
-          -9.716601048472459,
-          -9.141319145483191,
-          -10.443406497281222,
-          -10.066522659868475,
-          -10.778266035129246,
-          -7.7200123641576965,
-          -9.6013339558444,
-          -9.840394820658808,
-          -10.108083469050701,
-          -9.695056206442889,
-          -8.37333505115367,
-          -10.542525263824071,
-          -10.702096717191349,
-          -10.043050066589682,
-          -11.996540941042221,
-          -9.296556902574952,
-          -9.969828004057296,
-          -10.02031346481602,
-          -9.95610279594031,
-          -9.47304892846611,
-          -11.81625306228101,
-          -9.854368734970533,
-          -9.67672543111391,
-          -8.572384622212677,
-          -10.370533966612083,
-          -9.252959700568974,
-          -8.626766503229067,
-          -9.768428579019371,
-          -10.51507616520454,
-          -9.174509383526168,
-          -9.069427003626437,
-          -10.045342781334817,
-          -10.060910967473697,
-          -9.853325669994902,
-          -8.919897499251427,
-          -11.320165913833945,
-          -7.523484773958846,
-          -9.947198020952138,
-          -10.340096990708865,
-          -10.075998817205337,
-          -10.268500415741409,
-          -11.033153364683615,
-          -10.402679222134743,
-          -9.3689242358782,
-          -10.61728203879371,
-          -10.550151550005797,
-          -10.84534111287639,
-          -10.071254280248699,
-          -9.45475763826254,
-          -10.615829945790672,
-          -9.953164533592496,
-          -9.361087512589348,
-          -9.874434559314906,
-          -9.940013111796246,
-          -9.653627955555187,
-          -9.371245019360103,
-          -9.715578828949313,
-          -10.185564287831054,
-          -10.555460237667276,
-          -10.506700664564589,
-          -9.796671318330135,
-          -10.746866728486683,
-          -11.117810072336667,
-          -9.894985199956588,
-          -10.879798020798148,
-          -10.332910743671619,
-          -9.949103394158294,
-          -9.683436080696465,
-          -10.350075200911402,
-          -11.56181443949079,
-          -10.593395294116718,
-          -10.540399968230558,
-          -9.63145885631616,
-          -10.210233566605318,
-          -10.00489220313104,
-          -10.0350969833165,
-          -10.516928965630582,
-          -7.403561258374744,
-          -9.972331924648435,
-          -10.340620943121463,
-          -9.945572434645094,
-          -11.079845675156335,
-          -9.362352615141718,
-          -9.91404370062957,
-          -10.127142528583873,
-          -9.84969165815216,
-          -9.21838262951179,
-          -10.885043358014277,
-          -11.396284312651828,
-          -9.8207105072823,
-          -9.136969647537603,
-          -10.479263403604024,
-          -9.728343722091136,
-          -10.834479221159338,
-          -9.927550527814654,
-          -10.492848051639214,
-          -8.752648295806639,
-          -8.85237893062912,
-          -9.831812214636276,
-          -9.461488851787655,
-          -11.439020454430892,
-          -10.120199387426224,
-          -11.001478296715641,
-          -10.197678028125074,
-          -8.621842736058177,
-          -10.724256672457244,
-          -8.643457805213824,
-          -9.229948584648337,
-          -9.302209938464475,
-          -11.937994424807831,
-          -10.028348742004038,
-          -10.18815406107564,
-          -9.585008881196186,
-          -8.429811386462772,
-          -9.629923843389761,
-          -10.21841013049723,
-          -8.938147848588772,
-          -10.736257507960964,
-          -9.619187121996351,
-          -9.353018014633,
-          -10.277124824461833,
-          -9.965378194186783
+          0.05644973140026055,
+          -0.3139619811749099,
+          0.07849517179998822,
+          -2.053179447286218,
+          0.4778674887155163,
+          -1.3722606233959291,
+          -0.8730025455319738,
+          0.8619138029911262,
+          -2.18050444563794,
+          1.0254472444016582,
+          -1.7872683461880194,
+          0.007219260198692901,
+          0.14920582943465233,
+          -2.6590395590104374,
+          1.7258815304798651,
+          0.4630118160874366,
+          0.09476646157532631,
+          -1.5112862252450852,
+          1.5957436062418258,
+          0.47674504425793107,
+          0.5150147355456263,
+          0.4595756814914904,
+          -1.365965998572137,
+          -0.6920631121399909,
+          0.14663864575767627,
+          -0.4920523950931712,
+          -1.6078926069766526,
+          0.7574245091686271,
+          0.6249698515638762,
+          0.8087614621752861,
+          1.2238766593328472,
+          1.4675258512953717,
+          -0.5059870668660835,
+          0.3713544895450267,
+          0.06495089829325407,
+          0.13184527056835083,
+          0.9833237852049506,
+          0.9904410790621618,
+          -0.7830394218087822,
+          -1.7419232495921098,
+          0.8375239590980732,
+          0.6553512426503281,
+          0.6529348364552403,
+          0.160204982333626,
+          -2.244756840227673,
+          -2.202138212654536,
+          0.018729570248869898,
+          0.42060103053631215,
+          -2.1360098682989035,
+          0.42635937544073466,
+          -1.2816150378365758,
+          0.7271096907689873,
+          2.336090374724826,
+          -0.9672559522730266,
+          -0.904112572042919,
+          0.3777100334335044,
+          0.2507796832517888,
+          0.6797883164590797,
+          0.1946166114027834,
+          -1.592733734183715,
+          -1.9146581291788425,
+          -0.4510438375846989,
+          0.3208302998042658,
+          -2.604145983209913,
+          0.44901883080990124,
+          0.5783526620703823,
+          -1.1852862712701373,
+          0.9684419219868783,
+          1.162550948905154,
+          0.07930612495214873,
+          -0.2905590879759382,
+          0.9592247315917879,
+          1.0094282919953121,
+          0.6684587576985226,
+          0.1415395226409213,
+          1.1843572994578735,
+          0.9623056901042628,
+          0.46850532775669085,
+          0.25221130818844495,
+          -2.0330301788834784,
+          0.5353362915801336,
+          0.45265595262051117,
+          0.14619660952353608,
+          0.0006111783627051892,
+          0.6366968546700307,
+          -2.145243339878321,
+          -2.374609362256302,
+          1.0854474035457917,
+          0.4153260703984365,
+          0.3513830604469621,
+          -2.304162119015591,
+          -0.8077935690288647,
+          -2.3060491756242856,
+          -1.5261358879230813,
+          0.18901455945709777,
+          -0.23484285993218657,
+          -2.1286001148025377,
+          1.0947581153712682,
+          0.6358013332951984,
+          -0.8195923519290944,
+          -2.5408097988328686,
+          1.1462410777382335,
+          0.9594044617639685,
+          -0.7590903855761622,
+          1.767476208902103,
+          -0.723213269381618,
+          -0.800283875396299,
+          -1.339678426444347,
+          1.3814614488243846,
+          0.4978565195106397,
+          0.08484391356411325,
+          -0.4936360910716472,
+          0.011148433175215411,
+          1.072668543823316,
+          -1.9521433643840727,
+          -3.521954093929351,
+          -2.3511445048691924,
+          0.2972011105870578,
+          -1.1047853522324076,
+          -0.538501581258872,
+          -1.1051006682518612,
+          0.10991647351122746,
+          1.0280897562756461,
+          -3.2725437385895724,
+          -0.6339571397322208,
+          -2.0140606759816557,
+          -3.0602412229839127,
+          -0.8078575566240794,
+          -1.5748960751924868,
+          -0.41466786756934193,
+          0.16793516286149024,
+          -1.653433804698472,
+          1.2513431144221032,
+          0.11921893054886823,
+          1.0599639471873714,
+          -2.0237229511837174,
+          1.292104918294163,
+          1.1142863915720072,
+          0.23518411754498025,
+          -0.4021766412660295,
+          0.4631942828116462,
+          -2.1259387050167406,
+          0.2068326519451349,
+          -0.04708621797764034,
+          0.4061358677721296,
+          0.9316179793074726,
+          0.5831621983259261,
+          -1.1783888767239148,
+          0.06524332335423444,
+          0.02588879184332149,
+          0.5902561535854578,
+          -0.1641313992648954,
+          0.2622281218928848,
+          -1.05947626982297,
+          0.09981188755804937,
+          -3.008854453332379,
+          0.36747588890250227,
+          1.197598692447082,
+          -1.693714398676816,
+          -2.0762019502207787,
+          -0.6193126755455125,
+          -1.4571254088969172,
+          0.7274331980102915,
+          -1.9963944849348203,
+          -1.2291283269667415,
+          0.6923502350700703,
+          0.8763536291396672,
+          -1.2533351334919969,
+          1.1517024581303832,
+          0.4164841898637597,
+          -0.4889915558630279,
+          -0.3637642634727821,
+          1.034043620740979,
+          -1.3377599235617912,
+          0.9962586551534462,
+          -3.0744863608289457,
+          2.924750879174315,
+          -0.8371874822752702,
+          0.6570024933306049,
+          -2.5374884410779868,
+          0.4450080170944981,
+          -2.1737698636750125,
+          2.150822372779407,
+          -0.032374756863611576,
+          0.09732931067407424,
+          -0.9774256333698839,
+          0.08372249722023639,
+          -2.404619701546046,
+          -2.5522210295923298,
+          0.45061334523246366,
+          -2.854569989104538,
+          -1.270413930297061,
+          0.24372940563372958,
+          1.2201305125317292,
+          -0.3775420675280021,
+          -1.8749260805593277,
+          0.9206984744723457,
+          1.319109725318583,
+          0.5188409495312096,
+          -0.3237455063626191,
+          -0.9399557469141878,
+          1.068751903488793,
+          0.680111208327598,
+          -2.2424110473215046,
+          0.082309933806054,
+          1.0553373171231635,
+          1.4456516715663175,
+          -0.513558884930088,
+          -1.2089500182486914,
+          -2.235011681376287,
+          0.036818851128671115,
+          -0.3331142197424881,
+          -1.9241735106743825,
+          2.129196485926263,
+          -1.5054620309704663,
+          -2.4697203665186027,
+          0.10659994977334075,
+          0.10950359431619328,
+          -0.13083135945016233,
+          -2.932779572771685,
+          0.03236129093960738,
+          0.5211648083905378,
+          0.76230964169179,
+          -0.5737165566367058,
+          -0.04710503305949865,
+          0.9731921484580017,
+          1.5391738986378596,
+          -2.308390778722494,
+          0.23351112978265998,
+          1.75139223881849,
+          0.33327496505649434,
+          -0.5093972313491415,
+          -1.8100242869088845,
+          1.6697167762427765,
+          0.5312047950048484,
+          -1.4643582678506462,
+          1.495707693895802,
+          1.2076590267301799,
+          -1.9344997909929305,
+          -1.0739399686460305,
+          0.1672550733180509,
+          0.42057966971648075,
+          0.09625225648336189,
+          -2.3405782306526373,
+          0.030857432149562047,
+          -1.0255927711032398,
+          -2.974631877130106,
+          -0.6336136261967966,
+          -2.312441698529862,
+          1.0907913104180746,
+          0.09277825482868596,
+          -0.5519821355018866,
+          0.7428497020502605,
+          -1.8296152874792853,
+          -1.176536324153773,
+          -1.7999523808976945,
+          0.8559469723549231,
+          -2.113390901743575,
+          0.7907263635586717,
+          -1.1528632802139183,
+          -0.9533713006381248,
+          -2.421424258705807,
+          1.6245450627340978,
+          -1.9789771137995757,
+          -0.9526147271308846,
+          -1.696068777920911,
+          1.9387918829845456,
+          -2.085267519883005,
+          0.0481904839370797,
+          1.1349517359547732,
+          0.9919989132818081,
+          -1.8375725497255861,
+          0.5885475267713165,
+          0.25589532195785303,
+          1.512736406834891,
+          -2.2704144717359664,
+          -1.8199934037162402,
+          0.5393336661980439,
+          -0.33238757715257183,
+          -0.5289421030578082,
+          2.3288066201130624,
+          0.42894344501739035,
+          -2.195531445759288,
+          -2.054955045862307,
+          -1.6069368095978491,
+          -0.018718116183268352,
+          -1.0053185010026742,
+          -1.6840178058734503,
+          0.36174577996030366,
+          -0.9196176388518735,
+          2.4221338339131684,
+          -2.12848706586389,
+          0.14747565135698038,
+          -1.344738891020433,
+          1.2533035587632027,
+          -2.560234569042775,
+          -1.3446977462750156,
+          -0.5584508010811449,
+          -2.805573640013847,
+          -2.930676262988997,
+          -0.18710872738085127,
+          -1.3769467858941737,
+          -0.4538399287480319,
+          -0.589323584541531,
+          -1.5542683493799472,
+          -1.3557251227022666,
+          -3.5686172905820905,
+          -0.41280701279530085,
+          -0.7745968901541855,
+          -2.1623259798562797,
+          -1.32082051233216,
+          -1.0056585759772971,
+          -0.3936801383800045,
+          -0.40911300228286784,
+          -1.7231447374700424,
+          -0.4378742303677283,
+          -0.4602702044213839,
+          -2.4546189720759246,
+          -0.7161859880628677,
+          -2.661438270273086,
+          -3.8602117030072893,
+          -2.1363627370197578,
+          -0.5818675680585949,
+          -2.168809408734928,
+          -0.7256251736953954,
+          -1.7259836404701827,
+          -1.91793403147773,
+          -0.7000735263272282,
+          -2.4680145809402116,
+          -1.513029792851273,
+          -1.8796994717471565,
+          -0.8980420253362398,
+          -2.1049854202315013,
+          -2.1143343131936305,
+          -0.04397186605864889,
+          -2.108973166604704,
+          -2.673107026804999,
+          -2.097110137355927,
+          -0.12989817810565762,
+          -1.944707957654488,
+          -0.8370827793666709,
+          -0.6681054762100915,
+          -1.425762103766238,
+          -2.6921658609922416,
+          -2.1724671589041593,
+          -0.09387615150481332,
+          -2.5775635279785574,
+          -3.0890849956973065,
+          -0.6355058648277684,
+          -1.9702074582748845,
+          -1.0498043697560924,
+          -0.5580606481342574,
+          -2.766636543995948,
+          -0.9828336523053289,
+          -2.080195516298594,
+          -1.954166307885373,
+          -0.47349562670122103,
+          -0.2376792492425528,
+          -2.3623553088132807,
+          -1.7129109439876045,
+          -1.4769921669615877,
+          -2.9429946614297124,
+          -0.49758066902165066,
+          -0.3428285988291855,
+          -0.5217397294981706,
+          -1.708308680499964,
+          -1.49630946471146,
+          -1.1232739019050793,
+          -1.3355067049264955,
+          -2.1036355708359,
+          -0.5540274793153337,
+          -0.5277425767960184,
+          -3.198804269509401,
+          -0.8871556831070696,
+          -1.1275954813164815,
+          -0.026675033219673017,
+          -0.8879247041374729,
+          -1.7376582650278134,
+          -0.8339785542109972,
+          -0.8614595390596804,
+          -1.920968607936929,
+          -1.7874977916826627,
+          -1.7622280339382492,
+          -1.393307496948288,
+          -3.4146532559905203,
+          -1.0877291123098007,
+          -0.8771370529973502,
+          -0.2839845575847002,
+          -1.261881558102082,
+          -2.832045354246967,
+          -1.2551331153698433,
+          -1.751661149374089,
+          -1.2118471144178566,
+          -2.695131620416686,
+          -1.7776274111719452,
+          -3.5693220157017516,
+          -2.231128225204009,
+          -2.2095515750062162,
+          -1.9510215416932637,
+          -2.0959302903514248,
+          -3.016675563920467,
+          -2.071617871259439,
+          -0.5941218040630841,
+          -0.2190279528715402,
+          -1.1070251932927089,
+          -2.0493698115032664,
+          -0.2889442739712207,
+          -1.154542314534636,
+          -0.09609870270263077,
+          -1.2578192930712233,
+          -1.1458322150598144,
+          -1.4100992883153716,
+          -0.8430024542374244,
+          -2.3003654841214907,
+          -1.5444703970858387,
+          -1.5664319309495789,
+          -2.0908489662713885,
+          -0.11451215709535567,
+          -0.9416711044674275,
+          -0.09483487163647364,
+          -0.25330912121648586,
+          -0.8277414603414056,
+          -2.5457436034517213,
+          -1.1272437739305667,
+          -1.1653225335919402,
+          -2.2903564262901197,
+          -1.8457082252004797,
+          -2.415952845671462,
+          -0.9275583804686809,
+          -0.4089347593904634,
+          -0.10338530323386752,
+          -1.2506288950318398,
+          -2.1469099457053034,
+          -1.1443222492657217,
+          -2.098702723293213,
+          -2.062143420677015,
+          -1.6775280629877731,
+          -1.409645043902572,
+          -1.235292226570838,
+          -1.8657680039007678,
+          -0.887763129194672,
+          -0.6008391532755408,
+          -0.9648565140748875,
+          -0.9326892007061627,
+          -0.2240923002472145,
+          -2.3001001608405844,
+          -0.3755243965613232,
+          -0.3852837593900339,
+          -1.6069967879953506,
+          -2.297976336245264,
+          -2.168922951339144,
+          -2.663708572989716,
+          -1.6720504713657762,
+          -1.1461352180988948,
+          -1.111517203716138,
+          -2.859626264491987,
+          -1.5398598792766789,
+          -0.6188816891545081,
+          -0.5374012086738462,
+          -1.4067437369002518,
+          -2.1075157940282043,
+          -1.056292533927463,
+          -2.2338867654117713,
+          -1.8587786705370895,
+          -4.049542984900114,
+          -3.4776686060603796,
+          -2.003904666049835,
+          -2.672811972625369,
+          -3.5662569448614554,
+          -0.4252498850741766,
+          -1.7221993767502777,
+          -3.0634488151799917,
+          -1.4308479242606595,
+          -0.841288948851286,
+          -1.9666157021942197,
+          -0.08218595159478592,
+          -1.6696971626447286,
+          -3.1835312137650282,
+          -2.454090501852244,
+          -2.3087492023836607,
+          -4.846793549014244,
+          -1.4177757273097977,
+          -4.239711883074499,
+          -1.8462129996215166,
+          -0.15847052626720703,
+          -0.39013553341699525,
+          -2.168890028651874,
+          -2.968534596564295,
+          -0.37413770625582,
+          -0.3589826644595314,
+          -0.099430107539204,
+          -0.38143663731109656,
+          -0.7407024462721207,
+          -0.9549914551446478,
+          -2.2279790521870675,
+          -2.9473336939202737,
+          -1.7704341584185443,
+          -1.4776726950174641,
+          -2.3476192922943495,
+          -0.6793909752855632,
+          -2.0272592949349844,
+          -1.5144329396888616,
+          -1.9652153739788243,
+          -0.5895189934071104,
+          -1.6272271488237275,
+          -2.5059495501360876,
+          -0.8208606615894805,
+          -0.47602448342930515,
+          -1.6870141283491287,
+          -3.74256682223434,
+          -0.9804644937004848,
+          -1.8403306098195653,
+          -1.3093274803594106,
+          -1.2256403850375968,
+          -1.7868890098793786,
+          -0.35897620812943654,
+          -1.922602491529169,
+          -1.4354991938611725,
+          -1.5978945244699312,
+          -1.8216980886235172,
+          -2.264694990105477,
+          -1.2696216694152884,
+          -1.8047520317754793,
+          -0.11234996393760122,
+          -0.36451260315224987,
+          -1.871413791486575,
+          -1.6640641518880641,
+          -0.6533934562792426,
+          -1.3530624369879767,
+          -0.596398156219814,
+          -0.5110926600186282,
+          -1.6356907657332473,
+          -1.2381881102651224,
+          -1.2602100623597647,
+          -3.731346914890969,
+          -1.6138658467813212,
+          -1.8758937911726556,
+          -0.6900326554319183,
+          -0.9128370222405354,
+          -0.5463146512842403,
+          -1.375715499626749,
+          -1.8312702376931163,
+          -0.16115463695445698,
+          -0.014345597265754462,
+          -0.6349745867574481,
+          -1.2008091955775677,
+          -2.3764702153299924,
+          -1.036056996626361,
+          -1.724030037807931,
+          -1.5719591606848302,
+          -0.2976787854370645,
+          -0.22342140827449952,
+          -1.3526654897734374,
+          -1.534236663063131,
+          -0.8012026859752786,
+          -0.6628251779536523,
+          -1.8261942159220512,
+          -0.29473193284099186,
+          -0.29335804299153323,
+          -2.3245254849410633,
+          -2.125597871129534,
+          -1.573153868900126,
+          -0.418178932188047,
+          -0.60383154639682,
+          -0.9310536248854372,
+          -2.2515822415191895,
+          -1.8048004082981688,
+          -0.8469181938578643,
+          -1.1138726603836786,
+          -0.6331953637802716,
+          -2.380259865852836,
+          -3.251243681243063,
+          -2.270353232400427,
+          -1.4317539773261205,
+          -2.124215046356622,
+          -1.981204526728046,
+          -3.125049716810054,
+          -2.891975428362338,
+          -0.2852584216147408,
+          -1.5505391144951188,
+          -2.4144854054172793,
+          -0.94498956631505,
+          -0.6494109421606185,
+          -2.6850003790940056,
+          -1.908416596142573,
+          -0.40939493680747097,
+          -2.1178726316793792,
+          -2.6478440127341303,
+          -2.7837211167753697,
+          -3.1464359433838567,
+          -0.03972577108900022,
+          -0.8048567167240082,
+          -1.752979727517158,
+          -0.24053151440625076,
+          -0.9624393722255508,
+          -2.5254168807035056,
+          -1.712777251395167,
+          -2.9875827994819595,
+          -2.329491217194715,
+          -1.9733776878479863,
+          -0.7097866497771637,
+          -1.4888225031659195,
+          -0.8607425982434931,
+          -0.5907230162746109,
+          -2.3264064718511674,
+          -0.6246421219036956,
+          -2.7104204671121073,
+          -2.379801314983953,
+          -1.0138507200097777,
+          -2.4887524898677142,
+          -0.9289305129040458,
+          -2.6401130886876123,
+          -0.41842095170811644,
+          -1.8185776766078856,
+          -2.291251531155641,
+          -2.1735879368478876,
+          -0.3524433488115508,
+          -1.0667805892157682,
+          -0.583545980101461,
+          -0.5422868950150307,
+          -1.2593924488421282,
+          -0.67060725663645,
+          -0.19026648408949576,
+          -1.658869385038981,
+          -0.20972677614583002,
+          -1.4181728561979878,
+          -0.8099589517981086,
+          -0.5548768632989344,
+          -0.8724603197674711,
+          -2.060467626711726,
+          -2.3463407295923533,
+          -3.0573072639855745,
+          -1.401447693817882,
+          -1.0445874611404002,
+          -3.6772546532390877,
+          -2.0477373200781854,
+          -1.6519525220957219,
+          -0.12481804940940766,
+          -3.4934540636966904,
+          -3.0189139964800744,
+          -0.054169482853808626,
+          -0.300022798209138,
+          -0.6688390581884656,
+          -0.7421229799878262,
+          -2.282220058843541,
+          -1.4593405917340354,
+          -2.9831663267698234,
+          -1.0766137327285443,
+          -0.3911099750077649,
+          -0.642497828281227,
+          -0.06766498492612794,
+          -1.622887012493619,
+          -0.6270233047499948,
+          -0.8344106053463102,
+          -0.16956637343686032,
+          -2.548372190902225,
+          -3.0351312462811504,
+          -3.172487163061874,
+          -0.6947816777538213,
+          -0.7010728004047728,
+          -1.341368982611341,
+          -0.056842814863412694,
+          -1.4838064990945556,
+          -0.17065597365888385,
+          -0.8538647009173368,
+          -0.7398383276419416
          ],
          "y": [
-          -8.182339666169653,
-          -9.633735012642578,
-          -9.941540073939857,
-          -12.036403359898566,
-          -11.21389620346378,
-          -10.261651846722888,
-          -10.23593843463161,
-          -9.919689375552839,
-          -11.355051361114366,
-          9.190363656518477,
-          -12.966614900920078,
-          -10.448503289368785,
-          -10.146075735905981,
-          10.0242711644754,
-          11.113409335010779,
-          -11.350006496728913,
-          -9.532594453515438,
-          -9.240268733920784,
-          10.127466696568446,
-          -9.698224235053477,
-          -9.202828398114505,
-          -8.542466310863208,
-          7.0764865696500845,
-          -10.341361991376772,
-          -13.18738146345096,
-          -11.755101194504743,
-          -11.044253469951569,
-          -9.297053006698768,
-          -9.398773592614825,
-          -10.495946446013589,
-          -9.569442277147463,
-          -8.08732549498751,
-          10.393328871399145,
-          -10.013682104581394,
-          10.214099718215328,
-          -9.91357230765839,
-          -11.193570137872687,
-          -10.023099546038395,
-          10.61546849103685,
-          -9.775201054394861,
-          -9.79801961440036,
-          9.12310692530425,
-          -10.501204602213587,
-          -11.522478239171765,
-          -9.523293548997348,
-          9.87069047659762,
-          -11.119184558425868,
-          -10.679786241998091,
-          -10.746769568162028,
-          -11.889245352915227,
-          -9.685934931485608,
-          -10.425270400483003,
-          -10.242499786352676,
-          -10.407225170198904,
-          -10.999912689044654,
-          -10.484760774112102,
-          10.244192975410066,
-          -9.702262256237084,
-          11.26751366249444,
-          -12.621922810498544,
-          11.050387646314523,
-          10.351322108178268,
-          10.15351128808498,
-          -10.80318446226906,
-          -11.529094390622877,
-          -7.551289607694052,
-          -8.91303989595367,
-          10.201473621506006,
-          10.626696923468499,
-          -10.472184810032253,
-          -8.868615444881108,
-          -9.767034268304535,
-          -10.20707945226991,
-          10.853330284396446,
-          -10.997021955098257,
-          8.938349922559402,
-          -9.914723191492394,
-          -9.442420965624834,
-          -9.774875398342056,
-          -8.913064838663022,
-          -12.136571493481375,
-          -8.553992636036085,
-          -9.36635513157145,
-          -9.575794763025165,
-          -12.806527974097524,
-          -11.451914266719438,
-          -9.221575313081757,
-          9.673984958874899,
-          -9.484362563294065,
-          9.744247483090696,
-          -8.469330838777012,
-          8.610712641798042,
-          8.43796100371475,
-          -10.25339526421064,
-          -10.515068051862816,
-          11.819067611876976,
-          -11.886712769905085,
-          -10.688472992855333,
-          -9.934971616658716,
-          -9.603284940492538,
-          -10.060403735562,
-          10.860730299329626,
-          -9.090751794323918,
-          -10.482032908925609,
-          -11.142455582793994,
-          -10.099879556527048,
-          -8.154923384531315,
-          -9.370629918981562,
-          -9.946810804812722,
-          8.668447481065495,
-          -8.816565715223819,
-          -10.511975401815613,
-          -10.714477127162041,
-          -9.280140635382697,
-          -10.888897579819877,
-          -10.520292487063783,
-          -10.506168986613266,
-          -11.662916627371237,
-          -10.28209048086025,
-          -8.796472101377622,
-          -10.983285604134236,
-          -9.537422990152246,
-          -8.712162701664893,
-          -11.455458836722947,
-          -10.55367656025232,
-          -12.143176367539045,
-          -11.0207204065871,
-          10.152388533165874,
-          9.55835743549212,
-          10.022640763572543,
-          8.936790905392666,
-          -8.817733609762108,
-          -9.299779285136726,
-          -11.749007676406896,
-          -9.308151125620247,
-          -9.81410460264471,
-          -9.207638923494596,
-          -10.755782593398303,
-          -11.802948539562498,
-          -10.133903330711279,
-          -10.776234914636687,
-          -9.52402881186178,
-          -8.749697284120229,
-          -11.361934431012365,
-          11.107860966964838,
-          8.325883273661006,
-          9.013520486574125,
-          -11.07594421106932,
-          -10.37521760859062,
-          -9.194764591215288,
-          -11.464157602521437,
-          -9.992040161367562,
-          11.096127455816104,
-          -9.596053753160472,
-          -7.564856299224542,
-          -9.51730336333032,
-          -11.567205672235072,
-          -11.717306946953283,
-          7.120208099198694,
-          -11.58206979022783,
-          -11.004951790306885,
-          -8.786092521126037,
-          -12.061931304707217,
-          8.491863095915491,
-          -9.737043374125324,
-          -10.167115985391161,
-          -9.774190541084126,
-          -10.59853573832821,
-          -9.530237904980375,
-          -10.191921704279578,
-          -8.486555303994672,
-          -8.504579689965233,
-          -11.15477078390773,
-          9.426621373691011,
-          -10.175068995830884,
-          10.58515398444781,
-          -10.80158015680418,
-          -9.929567679328013,
-          10.814156361809061,
-          -10.914822246789088,
-          -10.304955646343458,
-          -8.347932445141499,
-          -8.553024469569351,
-          -9.273285320011771,
-          9.882979053620884,
-          -9.551059885321209,
-          -10.475613801674717,
-          10.245710203992068,
-          -9.348108790746856,
-          10.303574631112575,
-          -11.368268349686321,
-          10.841523245184694,
-          -8.644621238584742,
-          -10.081012182929593,
-          -8.779691524123404,
-          10.186375579213989,
-          -9.382474372842358,
-          -10.075885922113033,
-          -8.509785018191051,
-          -10.80670586192972,
-          10.7306225224079,
-          -10.040136300725829,
-          9.472957581763435,
-          -11.08639514648231,
-          -9.353614255782714,
-          -8.804446936094841,
-          -9.776525622148272,
-          -10.15914756050846,
-          -8.541537930260962,
-          -10.077453872066544,
-          -9.586849065368948,
-          8.564137974355958,
-          -7.980672580330472,
-          9.230072988808288,
-          -10.51966679818552,
-          -10.540368185377728,
-          -12.622151995489478,
-          -10.51979586574914,
-          -8.9064889863673,
-          -9.888947776967827,
-          -11.139074973213408,
-          -9.934930006990319,
-          9.769049049723828,
-          -10.474126407134383,
-          -10.273893057391335,
-          -9.93381035098787,
-          -12.057780818115045,
-          -8.76582438098901,
-          -7.592476264902415,
-          -8.60176885662972,
-          10.772464144604132,
-          -8.175866221166272,
-          -9.175102994813786,
-          -7.796410628530744,
-          9.23960747441389,
-          -9.4550118756585,
-          -9.11832338694392,
-          -9.730535277915404,
-          -8.21095404313622,
-          -10.695017984514372,
-          -10.879962599273755,
-          -12.367445777559809,
-          -9.791771096432754,
-          -10.183820099689948,
-          -9.210906920840758,
-          -12.692651059620745,
-          -7.933533341877876,
-          -6.1801026832698405,
-          -8.79085850614554,
-          -10.060552401035507,
-          -10.452749617731888,
-          -9.686153280157553,
-          10.140751409122373,
-          -11.851452308897432,
-          -8.412541460235724,
-          -8.955375343932644,
-          -10.644307306687063,
-          -9.740287646561264,
-          10.610109052707346,
-          -11.586400402788234,
-          -10.884622201563152,
-          -7.778848685766617,
-          -9.2447390365215,
-          -10.162971684666658,
-          -9.427219350423114,
-          -9.79767445359824,
-          -8.186609501964554,
-          -10.983737496377644,
-          -7.607051885953473,
-          -9.816063923719586,
-          -9.48889358123351,
-          10.06942348902886,
-          11.564293957369102,
-          -9.908492001857665,
-          9.188283697746996,
-          -10.104514681569313,
-          -10.790052720595913,
-          -8.468325500660024,
-          -9.90255383186164,
-          -8.478286097326109,
-          -10.790937531688964,
-          -10.420906164984821,
-          -9.889502699699968,
-          -10.691107501565739,
-          -8.587176391222792,
-          10.067034421261374,
-          -10.720392502657853,
-          -9.669266851209038,
-          -9.999183714940491,
-          -7.593537410529155,
-          9.153734592733718,
-          9.838417360411682,
-          -8.547400550742559,
-          -10.760133034793695,
-          10.046505205615551,
-          -11.043289201935403,
-          -10.978395631365206,
-          -10.889418318391332,
-          -9.04951166905545,
-          -11.644116995130737,
-          -9.752720492261671,
-          -9.114183584175631,
-          -7.253746775885547,
-          10.206073342436445,
-          -12.778965646011088,
-          -10.986510480986274,
-          10.025948463518441,
-          -10.186853217907615,
-          -10.272552969623748,
-          -9.560156436224721,
-          -12.018127075355991,
-          -10.3699514306297,
-          -9.089486204960396,
-          -8.885963136808732,
-          -8.38057082477893,
-          -12.31974911140407,
-          -9.92024016925453,
-          -11.045357001411558,
-          -8.8209835770758,
-          -11.28250338634569,
-          -10.718937952114317,
-          -11.420817980710712,
-          -12.323195701820687,
-          -11.652179639948585,
-          -8.947374625424613,
-          -9.112768549707951,
-          -9.6050634779841,
-          -10.614193909539164,
-          -9.45239466161771,
-          9.514704118517733,
-          -11.000822296736683,
-          -10.052787882712153,
-          10.585268736220838,
-          -9.986033812989227,
-          11.37028185710268,
-          -10.172040971029485,
-          -9.749014017405448,
-          10.751644977128386,
-          -10.139016031403292,
-          -10.415699042626194,
-          -8.381649138077627,
-          10.405543095717501,
-          -11.866760476467348,
-          -9.40399161829232,
-          -13.042639697597684,
-          -9.582938772866662,
-          -10.602811958773472,
-          -10.24293076598806,
-          -9.40261833488412,
-          -10.927384662290825,
-          -9.288721182994344,
-          9.955829807062326,
-          -11.791718313903448,
-          -11.796309828299139,
-          8.147438423728458,
-          -9.244870852573932,
-          -10.280366476027433,
-          -10.733253679837159,
-          -10.927988130569968,
-          -10.41733985837156,
-          9.987280573218586,
-          -11.716293852666444,
-          -8.715878305536117,
-          -10.145935951910198,
-          -10.357446520726583,
-          -10.843180515467997,
-          11.118625340601042,
-          11.64075381919317,
-          -9.417662403554685,
-          11.154264162091984,
-          -9.477746273706996,
-          -12.225094652110467,
-          -9.16178087625518,
-          -9.991903736274548,
-          -11.513214636447241,
-          -10.0593153659045,
-          10.141236970751335,
-          -9.174562020250148,
-          10.58509844006645,
-          -8.673960166442237,
-          13.216816910615357,
-          -7.496260121113655,
-          -9.571150664440713,
-          -9.224338780606306,
-          -10.259952816223167,
-          -10.432722728344869,
-          8.851489179405148,
-          -10.088200514872556,
-          -8.9779986875095,
-          9.03134777676845,
-          -10.713982919302557,
-          -10.628357105812407,
-          -9.680668465848468,
-          9.964898426589787,
-          10.266325848085664,
-          10.741948062890291,
-          -10.044410339784394,
-          -10.275196092398122,
-          -9.881721617919517,
-          -9.735516675318122,
-          -9.882470543584377,
-          -10.673545575104255,
-          -10.96030434576066,
-          -9.555286668785937,
-          -7.737196473978177,
-          -8.997403894113033,
-          -7.878793832244435,
-          -9.959396681583224,
-          9.668014581576177,
-          10.510534840357158,
-          -10.52041469442978,
-          -9.456736702985683,
-          -11.78096652431443,
-          -10.189950202667841,
-          8.301988063486485,
-          -9.32977056908604,
-          -11.297472554158645,
-          -9.181911268538475,
-          -13.924080376018065,
-          8.991360546913645,
-          -10.09633977759378,
-          -10.514541091076334,
-          -8.284877178684821,
-          -11.322028541400371,
-          -8.707285392974091,
-          -9.70835211819295,
-          -8.40265644525286,
-          -10.086526665473,
-          -10.06810078908825,
-          -10.619448339233944,
-          -8.367123996473438,
-          -9.322422063782941,
-          -9.980603107020164,
-          10.638288007288232,
-          8.793776541100241,
-          -7.749049843446793,
-          -9.523796873656474,
-          -8.658689824407277,
-          -10.88968493378175,
-          -8.750334082679554,
-          -8.87707108591842,
-          -9.448464997465196,
-          -9.080181741015561,
-          -7.738914152425476,
-          -10.184750401265443,
-          -11.562843170544298,
-          -8.430225704745212,
-          -9.739738552418025,
-          -10.312187248383356,
-          -8.939508621139577,
-          -9.137225782409764,
-          -9.589970780713015,
-          -12.126488139104033,
-          -11.188063121603435,
-          -8.620868557065293,
-          -7.92534346731563,
-          10.547320211387415,
-          -8.722408169485085,
-          -10.363069986065417,
-          7.861150615319087,
-          8.551479541911647,
-          -7.22934592202127,
-          -11.74781484235907,
-          -8.569070326513256,
-          -10.357038900919186,
-          -9.809666311257807,
-          8.892232051390955,
-          -10.957448444635464,
-          8.271822365705837,
-          -8.990436604613668,
-          10.25303477941417,
-          -9.935670647576497,
-          -8.108562839327409,
-          -10.585403495706723,
-          10.734244867959765,
-          -10.344946521765777,
-          -9.860138290945233,
-          -10.072633215835275,
-          10.091503544361943,
-          10.337929690471057,
-          -8.70258475913,
-          -8.796006994707597,
-          -9.953461183186278,
-          -6.921926010012378,
-          -9.85898786536258,
-          -10.981624451301826,
-          8.142269194715722,
-          -10.935517293069914,
-          -11.79353397411369,
-          11.516691486291133,
-          9.057976316747931,
-          8.105329244131896,
-          -11.49466312505517,
-          -8.379758718617703,
-          -11.342827517545867,
-          10.220145387507575,
-          9.035376099048966,
-          -9.038209092540978,
-          -9.509680823071076,
-          -9.246878970637843,
-          -12.037247196270194,
-          -7.968571757597156,
-          -9.642077176633755,
-          10.485943314303029,
-          -11.586991286650191,
-          -10.643084426914463,
-          -11.490777559523988,
-          -8.386062284604165,
-          -8.698465310770587,
-          -9.374201464456084,
-          -11.121539497165003,
-          -10.173237460062527,
-          -9.693468577276533,
-          9.099266018446695,
-          -9.244739310892289,
-          -11.020492970148553,
-          7.661037443230347,
-          -10.744484843928408,
-          -11.29061023705919,
-          -8.945913666245069,
-          -8.62960674875238,
-          -10.14168965154167,
-          -9.647512876743328,
-          -11.41302050306054,
-          -11.143986093784214,
-          -6.881281115448498,
-          -10.514592697558307,
-          -10.826346207644653,
-          -10.103059014767435,
-          -9.397370842585689,
-          -11.484772927762654,
-          8.874277310100002,
-          -11.28797810708439,
-          -9.889156114960809,
-          -12.727553770424786,
-          -10.256280656856836,
-          -9.603656635473811,
-          -9.198722200875187,
-          -9.878085871701995,
-          -9.677463357218294,
-          -10.181632790055739,
-          -9.601325873651355,
-          -10.234863102325798,
-          -9.29805198578558,
-          -9.272971062980638,
-          -9.913915828275172,
-          -8.662198652425587,
-          -9.763766245216432,
-          -11.946953135865929,
-          -11.76333902719445,
-          -9.755377187885758,
-          12.049585418456186,
-          -10.387668672842029,
-          -9.218453422065018,
-          -9.327840888901965,
-          -10.97996557347216,
-          -9.733677319124864,
-          -9.15238647721031,
-          -10.439945585642915,
-          -11.766897007021743,
-          -10.300727534201148,
-          9.920505139940667,
-          -9.320198183847275,
-          -8.693416239494713,
-          -9.407755339438326,
-          -9.876522846975496,
-          -8.821172324513155,
-          -10.271597246030858,
-          -9.247000920514777,
-          -9.25496932617072,
-          10.086324163260603,
-          -9.410108392226942,
-          -9.357903959922297,
-          -10.523873495932838,
-          -10.460590542728307,
-          9.359992652150972,
-          -11.291653697151883,
-          -11.385168203930768,
-          -9.773588591631352,
-          -12.078811637057843,
-          -10.219924418152317,
-          10.278312657773615,
-          -10.474726181348252,
-          -10.280313505755002,
-          9.88663868641198,
-          -10.175405217507409,
-          -8.848980165985783,
-          -8.788563257116872,
-          -9.133819402756117,
-          11.103775137460062,
-          -9.234583323438368,
-          9.437606703834682,
-          -8.841567537043705,
-          -11.22745829760659,
-          -8.625454256609766,
-          -10.136134220923804,
-          -8.464220280171613,
-          -11.513690238819667,
-          9.604532344966781,
-          10.343711770685822,
-          8.635151755179589,
-          -11.376489190130307,
-          -10.163947353555741,
-          -10.237190944752527,
-          -11.023954072687312,
-          -11.646010074527467,
-          11.077451686875746,
-          -10.226504026386351,
-          -10.557455450736764,
-          9.713315933138531,
-          -9.00255393131319,
-          -8.459147464437612,
-          -10.430774270258196,
-          -9.485944594135123,
-          -11.148227667567163,
-          -10.968408948709973,
-          -9.769105145861605,
-          -9.830830247365625,
-          -10.27236877190204,
-          8.495601877211552,
-          -11.220086945210557,
-          -11.073079407369876,
-          10.682272011237044,
-          -11.94097623366986,
-          8.607448492878307,
-          -10.54127136333957,
-          -9.178314428822851,
-          -9.850632356981164,
-          -11.426500695766858,
-          12.14115813244441,
-          -9.720903676183111,
-          -9.632454348018166,
-          -9.716636335263466,
-          9.873343762289375,
-          -10.499574992501502,
-          -10.274020848059513,
-          10.52980427045567,
-          -12.06427237592748,
-          -8.381044374424079,
-          -8.974747064059075,
-          10.142433299572621,
-          -8.510578270450525,
-          -9.23263199064586,
-          -9.856061078683904,
-          -11.811038464677154,
-          -8.915137324566707,
-          -9.871440498946754,
-          -11.196106569515894,
-          -8.834782967003068,
-          -11.652014584632296,
-          -8.587677169832173,
-          9.712844990470144,
-          8.841543540926757,
-          -10.820730262677474,
-          -11.268170853546744,
-          9.933510611800443,
-          -10.196361676606115,
-          -9.460592467413543,
-          9.868220687477482,
-          -10.70500727999117,
-          -8.515524715233463,
-          -10.942457522647121,
-          9.16448227806212,
-          7.7299372955354935,
-          9.957101545318643,
-          -9.217952336957461
+          -1.4390576365308536,
+          1.5362026305873955,
+          -2.20862850691398,
+          0.17157382637904872,
+          -2.515230742759649,
+          0.25068938013297837,
+          0.4845075311393623,
+          -2.401001524710975,
+          0.5290602155446487,
+          -0.7323070869393482,
+          0.9473166490619911,
+          0.3061777917621964,
+          0.030619074927103584,
+          0.11128115326132448,
+          -1.0984307131746154,
+          1.623759996005122,
+          0.16697782115589277,
+          0.07706094730061741,
+          -1.9057971306288213,
+          -2.525258040291961,
+          -1.2435650569815782,
+          -0.13779375372692493,
+          1.4214774197098832,
+          1.3245062472988733,
+          -0.42900878644144946,
+          0.9045539822802022,
+          0.22528310675004826,
+          0.7905362699296561,
+          -0.18458335067529463,
+          -0.9491985891953971,
+          0.13793413293314805,
+          1.5694881476999019,
+          0.708899058795629,
+          1.465160004895011,
+          -1.915068760362518,
+          -1.6563531996520005,
+          0.5615006652806227,
+          1.6361751526153783,
+          0.5666543514116453,
+          0.09155426029140412,
+          -0.42709211525945223,
+          -1.5845730897094925,
+          -0.6233784016340713,
+          -2.6609138846556952,
+          1.090065730231487,
+          0.9696631570907865,
+          0.31650901809795284,
+          -3.2600234696004207,
+          1.468440663100679,
+          -0.14886520555941352,
+          0.9230816741594736,
+          0.8372789940775971,
+          -0.6150498441179705,
+          1.0634615844481896,
+          0.06720103497009022,
+          -1.064107923795587,
+          -1.086021279754654,
+          -1.1091020758970385,
+          -1.8252109598254456,
+          0.21454385274809362,
+          1.000485126804815,
+          0.8461725633273098,
+          -1.8237015300823258,
+          0.8407484415252742,
+          -0.16172820422882805,
+          -4.342607997682677,
+          0.11648493108791635,
+          -2.6961556822881336,
+          0.1473026763648213,
+          -2.0743952754527677,
+          0.2675840827251532,
+          -1.3946850388142527,
+          -0.7373256136640591,
+          -1.9362157239270692,
+          -1.0469489363406235,
+          0.4632135849792167,
+          -2.368140631161797,
+          -0.1463421937471454,
+          -3.3961012949283913,
+          0.008510836579688208,
+          -1.718012734664837,
+          -1.1605199780295377,
+          -0.564756115100736,
+          -0.10600798016213187,
+          -1.2494387783723946,
+          1.3398593864973565,
+          0.637004490141345,
+          0.4381982717012365,
+          -2.553445714895554,
+          -1.57480982285239,
+          1.5160069954762405,
+          0.19590204731560856,
+          0.4259371667769163,
+          0.7580948486696277,
+          -1.1909896317240494,
+          0.24674348404092106,
+          0.2590053992090673,
+          -1.2043414855487677,
+          -2.5580505488619076,
+          -0.645880530786326,
+          0.7395159243280267,
+          -1.776924882737648,
+          0.30884890621981764,
+          -2.5343042711161274,
+          -0.8938934726972846,
+          0.6367975321116941,
+          0.16797777979119122,
+          -3.634334301155229,
+          -1.7473853626455274,
+          -1.386640327021073,
+          -1.968813916645607,
+          -0.8355080589114049,
+          -0.5891944962174551,
+          0.7239872853836951,
+          1.7557446116998885,
+          -0.8304207603274832,
+          0.15286570045379588,
+          -0.6200295990681018,
+          0.5243892144702595,
+          -0.27764233909726077,
+          0.12356637689506123,
+          -1.8406543213612525,
+          -2.213933049361832,
+          -0.4902017436872158,
+          0.35279956982573046,
+          0.6591012282242332,
+          1.0621042028184378,
+          -2.910273775608262,
+          3.12844846255675,
+          0.004070881637687984,
+          -0.712669706029786,
+          -0.31328738730864736,
+          0.4597909955566184,
+          -2.255914231441544,
+          -0.6836734170292698,
+          -1.7223992346856463,
+          -1.9078277349637545,
+          -4.404738278521005,
+          -0.1463354095204623,
+          -0.838842497557839,
+          -2.578036005127193,
+          0.18155904171719262,
+          -4.275682737133858,
+          -1.608278021439469,
+          -2.145212755904331,
+          -0.13452964657570488,
+          -2.3816731586208917,
+          -1.9891538337469268,
+          -0.7630745748766364,
+          -1.3873956855890226,
+          -2.1907409114025382,
+          -0.8600456487794994,
+          -0.9414222360227689,
+          1.9685245540697167,
+          -1.6368392418554998,
+          -0.1965316590945504,
+          -1.7182066595929653,
+          -0.6245928125911404,
+          0.27798519513923337,
+          -0.029300941513281775,
+          0.5954213807889635,
+          0.20084274701443894,
+          -2.077666931384945,
+          -0.13751816941087336,
+          0.11256632466551153,
+          -1.335850532165582,
+          -1.0267395764573062,
+          -1.1662458145996772,
+          -1.8262037471310686,
+          -0.36694573288452814,
+          1.9951776595588844,
+          -0.2360243145894535,
+          -1.7615720404057944,
+          0.3977947598917466,
+          -1.0140576094612581,
+          -0.6762315015415103,
+          -0.9747745485697819,
+          0.2786930249341999,
+          -1.1693467011805014,
+          -0.7136080396044624,
+          0.05156669034019434,
+          0.31410556018650193,
+          -0.5335495487166411,
+          -2.9931750037786418,
+          -1.3353189402062502,
+          0.8351919167407864,
+          -3.3310637618046846,
+          -2.0177649031897342,
+          0.4000198162954365,
+          -1.9650453795990865,
+          2.2508304309564804,
+          -1.0868206025770688,
+          -0.5721480853628802,
+          0.7511862505448488,
+          0.03970770378121702,
+          -2.5577883648935598,
+          -1.5019871003191971,
+          -1.7181786353771762,
+          -0.4394423917133726,
+          -4.164112459194948,
+          0.26832654474646667,
+          -1.7338440797098524,
+          -0.5325103791180031,
+          -0.37558499312127547,
+          -0.5142129809790446,
+          -0.6747202396885686,
+          -2.7605024649865735,
+          -0.10383575749400498,
+          1.0400387019307642,
+          0.20080677607247477,
+          -4.4433212803061135,
+          -1.8248226142207975,
+          0.8218522128882368,
+          1.9329786113365541,
+          0.7357415710696453,
+          -2.6846554775688487,
+          -0.8678458666514315,
+          -1.7487830215681157,
+          0.07874240540267063,
+          -0.21688734131611498,
+          0.12366168475128148,
+          -2.3278147653267807,
+          1.054445184345441,
+          -0.1334468639299935,
+          1.7719077929370064,
+          -2.322206083021347,
+          0.4490865238561679,
+          -2.0368256667125046,
+          -1.3902767866061647,
+          -1.3838627442210805,
+          -0.8009573459664335,
+          -2.461567921637008,
+          0.320490353552088,
+          -1.6346463668756224,
+          -0.5605508377153972,
+          -1.5284256013346353,
+          -3.505009078935659,
+          -0.7278845811348651,
+          0.4676349787763372,
+          -3.0234562972672157,
+          -1.9931072203504323,
+          0.6648359124196899,
+          0.5756615274878711,
+          -0.6238068385608486,
+          -3.087672888664429,
+          1.8158696161671761,
+          0.25275829490786506,
+          -0.5587427537468693,
+          0.07325528915336155,
+          -0.06054988616893753,
+          -1.0931272913147696,
+          -1.253119138933915,
+          -0.6032010323903387,
+          0.13047236760013958,
+          0.7378189706150933,
+          -2.4992275823272285,
+          -0.5447730310200165,
+          0.7940125433846332,
+          -0.13651614580587546,
+          -0.8282104042074022,
+          0.6231720824877549,
+          0.4071292297762945,
+          2.4185580085531124,
+          -2.113634455217876,
+          0.13282825606865067,
+          1.6992626526552423,
+          -2.7031683299052323,
+          -1.0043658073744832,
+          -0.2926411237916151,
+          -1.7151175851272944,
+          -3.358088016973186,
+          -1.7425391754153008,
+          -3.032956882129196,
+          -1.614376323838847,
+          -0.044492167085082635,
+          -0.8329616399513398,
+          0.9859550359983138,
+          1.0585644310513858,
+          1.9093179407529774,
+          -0.6394246759447546,
+          -1.8443824496645875,
+          -0.9269585230679719,
+          0.7857314879215112,
+          -0.018396901837276602,
+          0.02299017554755034,
+          0.7605047751700875,
+          2.3150831168613966,
+          -1.126266207864675,
+          -2.019022593333058,
+          1.0312202888164732,
+          0.21030424569199413,
+          -0.846171343311181,
+          -0.4638735528605731,
+          1.4382455834506485,
+          -1.7533460751927916,
+          -1.424563905730036,
+          -1.6379991466558494,
+          -1.4212973702258693,
+          -1.8772235199309697,
+          -1.4708443753386422,
+          -1.3058866395786106,
+          -2.0345417499814866,
+          -1.265022416668705,
+          -2.0939684959333125,
+          -1.661052397007065,
+          -0.15911429944735622,
+          -1.0605295776621821,
+          -0.6237736835698486,
+          -1.7004646863658393,
+          -0.24869826603937584,
+          -0.49937449992057525,
+          -3.5627160284239117,
+          -1.784861001584475,
+          -1.893587446049191,
+          -0.1406229502078128,
+          -1.7834053244727346,
+          -0.5438265701766966,
+          -1.7455022905317725,
+          -0.5003797583072821,
+          -2.244467712709814,
+          -1.0089479839959001,
+          -2.1042616184728704,
+          -0.2087831263213088,
+          -2.7964788724379743,
+          -1.8583809083703065,
+          -1.827848127362031,
+          -1.002429544558198,
+          -1.9202415885733708,
+          -0.37464251751636424,
+          -2.1945966561348733,
+          -2.2107449569529267,
+          -1.8499927403311955,
+          -1.7720037961238093,
+          -0.715823416481997,
+          -0.004439965089927278,
+          -1.7495695384804577,
+          -1.0037130057812504,
+          -1.2401490280107836,
+          -1.4052115382585042,
+          -0.062444032927356896,
+          -0.39520180263750404,
+          -2.5233589945885093,
+          -2.766085629566085,
+          -1.8260435527976786,
+          -1.4632675897242873,
+          -0.8757099880186308,
+          -3.1047481087137805,
+          -0.2539066910063519,
+          -0.6450552057710852,
+          -2.5913901059200564,
+          -0.6051310508376859,
+          -0.5247088660312454,
+          -1.0249773714258126,
+          -1.7895764589980976,
+          -1.0675365221383735,
+          -0.6510225846999849,
+          -0.20630156788373388,
+          -0.2187675553520526,
+          -0.6731866470185708,
+          -1.2698902949805837,
+          -2.0510621170820897,
+          -2.044293092758141,
+          -0.0009925774999773873,
+          -2.3810116567453825,
+          -0.9851115010794019,
+          -0.9847064029834464,
+          -1.5576757172194213,
+          -1.6111954143078167,
+          -2.163044569493143,
+          -0.798674019068154,
+          -1.5540813467477395,
+          -2.8531255614929023,
+          -1.8053374263633581,
+          -2.9418914496417834,
+          -0.09607371586023483,
+          -1.3626554843733945,
+          -1.2240216736203897,
+          -1.2527036657956465,
+          -1.3745753682557749,
+          -0.5992423811166546,
+          -1.8840042571869207,
+          -1.364104944390055,
+          -0.7994969490621446,
+          -1.8860577390282258,
+          -2.1325319213445146,
+          -2.897740298274588,
+          -1.5674767754934202,
+          -2.8339298979196945,
+          -2.936013789486707,
+          -0.14052290362542696,
+          -1.7776933212430481,
+          -1.9969300795774505,
+          -2.8080851218704552,
+          -2.3883976547716728,
+          -1.58182482756815,
+          -1.646018405376068,
+          -0.3485976067224632,
+          -2.0352030033976956,
+          -0.8292761879033882,
+          -0.9515001243414193,
+          -1.8027470191416763,
+          -2.3110221341400434,
+          -0.8776023324996108,
+          -2.4486985860003454,
+          -1.3586155528606945,
+          -1.9222758380754659,
+          -1.9605409519459676,
+          -0.3896331719428877,
+          -0.670254313449506,
+          -1.2802018267837076,
+          -3.6830585651771894,
+          -0.45038091940174985,
+          -1.1644978377615438,
+          -1.29887359919653,
+          -1.6833073593796468,
+          -2.2324539429291548,
+          -4.272074367313445,
+          -1.297689487881435,
+          -3.8108565307342253,
+          -2.2675107576303883,
+          -0.366573608281928,
+          -2.56966881782454,
+          -1.0613229393306853,
+          -2.2601195610632283,
+          -0.30254983251076106,
+          -1.542268835161602,
+          -2.410085130142925,
+          -1.6725185314487057,
+          -1.8792298335156015,
+          -0.7922036792447578,
+          -0.5082718652321188,
+          -1.7640582392814215,
+          -4.420486163558614,
+          -2.4334085424405982,
+          -1.3768796229056486,
+          -3.211139421056104,
+          -1.8773735317053404,
+          -1.5980979687877792,
+          -0.09962146075833733,
+          -0.2622322686232115,
+          -1.900133233122383,
+          -1.9287627904684599,
+          -3.3632982747000466,
+          -1.2999964590979856,
+          -2.0708432386477735,
+          -2.2117726727240328,
+          -0.3799014008523518,
+          -0.7224445635177655,
+          -1.9046753866671975,
+          -2.373118031874381,
+          -2.251722556752447,
+          -0.6179594676260842,
+          -1.2054076250670112,
+          -0.6380084872401979,
+          -1.0919010098164759,
+          -2.977155136544804,
+          -0.796193883406561,
+          -2.2209195129621087,
+          -1.4129030154347155,
+          -0.051079339790295,
+          -2.687398253275348,
+          -2.911276536737816,
+          -1.9625365630797607,
+          -0.7649108504000063,
+          -0.7563764457179512,
+          -0.5511411116861193,
+          -0.8311845260288753,
+          -1.7891873621642753,
+          -2.562774142666863,
+          -0.8990818267102099,
+          -2.952623090380434,
+          -1.056670425407952,
+          -1.6378412450281665,
+          -1.2669192325393337,
+          -0.03244148279790904,
+          -1.439602318133844,
+          -1.4854101398620916,
+          -0.14357450418531237,
+          -3.145275497031026,
+          -1.5244308207908603,
+          -1.8216659000271809,
+          -1.4452689432533596,
+          -1.4278073246967051,
+          -1.9683003321348171,
+          -1.6802103289334167,
+          -2.1532793547796634,
+          -2.194365948166113,
+          -1.1187793852422818,
+          -3.328957858727127,
+          -2.0194069257508103,
+          -2.0091712474936765,
+          -1.2714060906068825,
+          -0.9303869808859344,
+          -3.17769182736888,
+          -0.02108210671018773,
+          -1.9284140474768097,
+          -1.2986100079368164,
+          -0.9599077459797611,
+          -2.0977746435550655,
+          -1.0889616088016179,
+          -1.5880484371525834,
+          -0.2930767895019736,
+          -1.1241357408179034,
+          -0.9140618394316568,
+          -2.2123763859371968,
+          -0.6007903602473319,
+          -0.3798760494579272,
+          -0.4092810024453256,
+          -2.9632714304883816,
+          -2.1750577514587492,
+          -0.37268427883800226,
+          -3.5186981904749435,
+          -2.818442963735561,
+          -0.10746187142917785,
+          -2.3992244342805416,
+          -2.540870072446758,
+          -0.4356203164634065,
+          -0.5328265788675681,
+          -0.4714344797801612,
+          -0.4353621703261542,
+          -1.4298762942555694,
+          -2.1309023174043733,
+          -0.6488019315138351,
+          -0.6855960016386617,
+          -0.8923985201821736,
+          -3.1655160092521806,
+          -1.1525159431675858,
+          -1.1147683750643038,
+          -2.209179834043051,
+          -2.4412340184512082,
+          -2.5311688636964527,
+          -2.0031198001204498,
+          -0.27638192543008344,
+          -1.2231977239326783,
+          -1.0888003432503521,
+          -1.8408547050493125,
+          -0.3266860286880544,
+          -2.0934793915625485,
+          -0.9800896902211004,
+          -1.508222776917421,
+          -1.9911316606894442,
+          -1.098881070387551,
+          -0.7350225964507353,
+          -1.008257603105476,
+          -0.13853532168307492,
+          -2.5128407048641654,
+          -0.9922043437164348,
+          -0.7639694105734024,
+          -1.8040043619606225,
+          -2.5220050395383486,
+          -0.6216595172106454,
+          -2.73239481189969,
+          -1.3010186560851735,
+          -2.2430858490708214,
+          -1.3996703899833065,
+          -1.6017428975907797,
+          -2.800812115476093,
+          -0.6461341622707593,
+          -1.021050436762998,
+          -0.9301630194575603,
+          -1.8109830094735069,
+          -3.141802404974411,
+          -0.4524896120398012,
+          -1.7701013819092646,
+          -0.8380131547547857,
+          -1.0646578985189135,
+          -2.480840593428489,
+          -1.247332759536809,
+          -1.530450053689762,
+          -0.9767455488089983,
+          -1.8308761074638484,
+          -3.021331290127645,
+          -1.5914186454165105,
+          -1.1291436634248464,
+          -0.7368760820749625,
+          -0.8802632168145678,
+          -2.260305683008262,
+          -2.70138404830106,
+          -1.4644736516721468,
+          -2.831932861343882,
+          -2.482907786883339,
+          -0.2461540420130408,
+          -5.008982160420718,
+          -1.1518003026575403,
+          -4.042076792336472,
+          -3.4066737673635368,
+          -0.9674988797716834,
+          -1.5294559239899965,
+          -0.49032161112133354,
+          -3.35362431063541,
+          -1.9577493863157114,
+          -1.3794650699092181,
+          -1.6745050922444678,
+          -1.2877281529134321,
+          -1.5692563337856145,
+          -2.6352862201285037,
+          -1.4922803944490528,
+          -2.8616615727067716,
+          -1.44229243573813,
+          -0.13220702379925753,
+          -1.6713213445430803,
+          -1.8090118042245613,
+          -2.9851638229328463,
+          -3.0890776138089246,
+          -0.9670927157058141,
+          -0.8845771973908915,
+          -2.5907537873375563,
+          -3.4735830161270074,
+          -3.2160651957109865,
+          -0.020237566418278563,
+          -1.09287961699559,
+          -0.8489947160979482,
+          -0.7997603262001308,
+          -1.0640741559470925,
+          -1.7497833138534855,
+          -0.769654159898407,
+          -0.7131939146904466,
+          -0.7663244913243116,
+          -0.6158335424486485,
+          -2.2376216564105995,
+          -2.58865073772933,
+          -0.5684215382774215,
+          -1.8540955012131706,
+          -1.9359367535977934,
+          -1.2681671029098667,
+          -1.0393240329146902,
+          -1.3421392642859482,
+          -2.978811376116147,
+          -2.8042403415758272,
+          -0.8660631536196253,
+          -1.3803760887139047,
+          -2.1674943132467694,
+          -1.3173918466742156,
+          -3.1785143768914117,
+          -1.6645223420495885,
+          -1.7420426039856123,
+          -0.2512931959782343,
+          -0.33470531263885517,
+          -3.682625155215259,
+          -0.7321847098991556,
+          -0.329637768927183,
+          -0.5184503627631645,
+          -1.7579202113945533,
+          -1.4260226636360902,
+          -1.0539474494988088,
+          -1.7052048141322778,
+          -2.481758973342731,
+          -2.3375382509456566,
+          -2.1298600980983284,
+          -0.06658202544725722,
+          -2.314592943181727,
+          -1.79982515800376,
+          -2.9814455906864366,
+          -0.30541925186791696,
+          -1.6479650830252897,
+          -1.573008178077377,
+          -1.925451041292213,
+          -1.6876782435806024,
+          -1.1382512985663178,
+          -1.7589392401952444,
+          -2.6233328887220826,
+          -0.05969249163159274,
+          -1.8751705436796753,
+          -0.047989892434921355,
+          -0.0900678426579904,
+          -1.7145923907098561
          ],
          "z": [
-          -7.9333549449468075,
-          9.667579170932616,
-          -11.005497410229694,
-          -8.818947874186978,
-          -10.000499036336763,
-          -9.163607139799165,
-          7.614166967791559,
-          -8.859205303334761,
-          -9.478448330113341,
-          -10.425347108574526,
-          -10.163018966590316,
-          -9.683590256594167,
-          10.511703887143803,
-          -9.56233076661984,
-          -10.14412797207693,
-          -9.4081432797376,
-          -9.964322039898443,
-          -9.804690865408315,
-          -11.230570648282177,
-          10.76560756593357,
-          11.015481893035533,
-          -10.753275570341177,
-          -10.191125531085126,
-          -9.768300946520405,
-          -10.11022161235244,
-          -10.069790669421861,
-          -8.758442099634276,
-          -9.18123017412168,
-          -10.683364909237214,
-          9.08078728475887,
-          -11.053178246967192,
-          -9.247339247737115,
-          -10.227158532709398,
-          -9.619507038555202,
-          -10.838592375900179,
-          8.165956356187818,
-          -9.878415950043147,
-          -12.856074007636533,
-          -11.60070278336848,
-          -8.422477593178066,
-          8.318887117291396,
-          -9.266578931147068,
-          -8.967769191996076,
-          -12.978950235802861,
-          10.952745749107423,
-          -9.332679059259515,
-          9.967361017328251,
-          10.271253080704446,
-          11.00572750811313,
-          -11.577108138580545,
-          -9.514506993925563,
-          -7.012584278164137,
-          -10.77738819362754,
-          -9.08995352081442,
-          10.99826467176584,
-          -11.722482403943419,
-          -9.374820087894427,
-          -10.137605971999218,
-          -9.13802755667298,
-          -11.646387376438426,
-          -9.822057360164225,
-          -10.71957274496028,
-          -9.832370491496853,
-          -8.638914523195046,
-          -10.142564788068086,
-          -12.297712994911803,
-          -9.129305148857426,
-          -10.515137207511643,
-          -10.652111431763105,
-          9.338448021070693,
-          -11.746143982250643,
-          -10.407667253602419,
-          10.089771047872967,
-          -10.19447202419948,
-          -10.00260945997796,
-          -9.548329101398421,
-          9.815779183011168,
-          -10.519646156102196,
-          -9.55999470063235,
-          -10.495142487913043,
-          -11.053061502558919,
-          10.233647482659965,
-          11.475167151293888,
-          10.848173340974512,
-          -9.676654710176985,
-          -9.7048853428957,
-          6.981908422841118,
-          -8.978584905981037,
-          11.104692515928736,
-          -10.661401974239933,
-          10.086778365791274,
-          -9.989659946681595,
-          -10.774534193423593,
-          -10.78832369233294,
-          -11.148598878297273,
-          -9.771876711835755,
-          -10.095151804229229,
-          -9.674495545822928,
-          10.069485106480817,
-          -9.208486491908655,
-          -11.687892921924208,
-          -9.27611466654873,
-          -8.854745415252037,
-          -13.01823096772815,
-          9.856219334709145,
-          7.91048919602464,
-          -10.032017072896723,
-          -9.163573189233585,
-          -7.383321048012678,
-          -9.41071484957741,
-          -10.984346037127919,
-          -10.51001248135151,
-          -11.58090025984211,
-          -10.59829251345323,
-          -9.972194762804675,
-          9.217741534228972,
-          -9.73491848288941,
-          -9.310332204111612,
-          10.565728086293438,
-          -8.89428016066707,
-          -11.836877733757749,
-          -9.64160004300316,
-          10.317076551033155,
-          -10.937326192198611,
-          9.259632181805433,
-          9.699542364305822,
-          7.851080669859243,
-          -10.645415518423043,
-          -10.666731728565264,
-          -9.913993391220194,
-          -9.448243510425439,
-          11.340778547130283,
-          11.037848709499043,
-          -7.771367804805479,
-          -8.739492290627421,
-          10.543503823998137,
-          8.555612425951951,
-          9.686541943174273,
-          -7.532872943539003,
-          -8.558231071738597,
-          -10.687134892996394,
-          -12.043636177352194,
-          7.946634385082733,
-          -7.880398609741977,
-          -9.956280780085637,
-          -9.070875494500667,
-          -10.55334401380572,
-          10.417184109589908,
-          -8.604279395435317,
-          8.33161028671244,
-          -9.76520227959793,
-          9.532164955794725,
-          -10.583962205906042,
-          -11.174423518264176,
-          -10.598864173265095,
-          -10.95141960405785,
-          -9.450704652263328,
-          8.483847954799465,
-          -10.56271988035226,
-          -9.310539397004794,
-          -9.72334293902181,
-          -10.178564626191188,
-          -9.271194751487018,
-          -9.024546683113705,
-          -10.358862336039374,
-          -10.614652855688616,
-          -11.508938693553674,
-          -10.377292883474464,
-          -11.247644321441644,
-          12.009645192474629,
-          9.151430756184109,
-          -9.559907798145602,
-          -9.240904331251464,
-          -9.673101783617586,
-          8.587984682297026,
-          -10.669292930928059,
-          -10.070726432508447,
-          10.08704490458646,
-          -10.877222984883826,
-          11.555268892092412,
-          -9.400183293219731,
-          -12.212042227442915,
-          -7.846388657612518,
-          -9.607032067648614,
-          -9.82231960356349,
-          -9.728792831419687,
-          -7.964610259231484,
-          -9.57261602559172,
-          -11.409679806659726,
-          -10.044305018279099,
-          -10.459624803792723,
-          -9.461423339968452,
-          -9.629435575592664,
-          -10.000837861693153,
-          9.419332048146122,
-          -9.830814835669495,
-          9.386563161930484,
-          -9.772781120568677,
-          -10.172626590804603,
-          -9.527264005712272,
-          -9.742856453098018,
-          -8.214918692961392,
-          -10.645660895180143,
-          -11.558707463427307,
-          9.792044998454342,
-          -10.028443069957216,
-          -9.066163404731105,
-          -8.500701648944052,
-          -9.787460109125535,
-          -9.653836594267778,
-          11.875692388050522,
-          -10.437638591050755,
-          11.931283029152407,
-          -11.886548492905376,
-          9.93637161652953,
-          -7.995910803116682,
-          -10.630562423746412,
-          -9.752196885493367,
-          11.945116331600772,
-          11.264176579657459,
-          -9.171575327787435,
-          8.913841412276982,
-          -10.124495612597594,
-          -10.67030758119451,
-          13.693569328268469,
-          8.711995378647003,
-          9.356898619186316,
-          9.096213028293715,
-          -12.476209759477864,
-          -9.586283749422638,
-          -10.317767140389668,
-          -10.862900224282045,
-          11.397994663209827,
-          -10.055198625780038,
-          -9.92632205025794,
-          -8.244546376763711,
-          7.069477120149019,
-          -13.92137818554731,
-          -10.437297113105531,
-          -9.618901702716697,
-          -10.909945200134326,
-          -9.905302316559341,
-          9.9925920778048,
-          -9.308933141303797,
-          11.234886032765298,
-          -13.27651184050197,
-          8.085630325643589,
-          -9.623087020696213,
-          -11.311489261417645,
-          -10.378446788323952,
-          -12.404789143147388,
-          -10.08954913901719,
-          -9.794943089711303,
-          -9.307479068239344,
-          -8.643114662598238,
-          -8.903820920771793,
-          -11.263937169179169,
-          11.82546526529201,
-          -8.862457753304163,
-          -8.888432382314605,
-          -10.307484706553895,
-          -9.83059864961739,
-          6.525478282350695,
-          -10.99351438016975,
-          -9.85895918446981,
-          -9.002704520869854,
-          -9.870898253893845,
-          -9.509901158635726,
-          -9.341186013582577,
-          9.845408425587246,
-          10.25688506725211,
-          -9.237892349547339,
-          -9.63349624379118,
-          9.72477982134084,
-          -8.772992634450894,
-          -10.293427657230632,
-          -9.797104451513906,
-          -11.384621536846016,
-          11.651920333488446,
-          -7.0950474836565025,
-          -9.466938632424919,
-          -10.515288890313284,
-          -9.591890172743577,
-          -11.796934154868119,
-          -8.935219745294328,
-          -10.27126457584956,
-          9.368975622518377,
-          -8.597838339690778,
-          -9.664658231641408,
-          -9.3782947478796,
-          -9.26949918503035,
-          -10.613940582320511,
-          -9.735416243232663,
-          10.79276976763987,
-          -10.861323677871153,
-          -9.565640007384651,
-          -8.954042785671964,
-          -10.80434264367524,
-          -10.219259311172369,
-          -11.586759318339602,
-          -8.906361747549653,
-          -10.582533753996488,
-          -11.468914895156418,
-          -9.653272166902024,
-          -9.02113935990438,
-          -9.430173309151675,
-          -11.30883398685113,
-          -8.897256940831438,
-          -10.079142526001228,
-          7.237819132766164,
-          -8.376087588678688,
-          -8.441077890848343,
-          10.187222985065652,
-          -9.37515700442237,
-          -9.910541529714266,
-          -9.282235639267531,
-          -7.6044852402771355,
-          -10.530205506949954,
-          -9.568227574898845,
-          -10.736868786034728,
-          9.35116885213332,
-          -8.50101471088188,
-          -10.336826890593864,
-          -9.296788681993474,
-          -9.112878346980443,
-          12.913153514328194,
-          -8.540935836362626,
-          -12.54832928926062,
-          -7.834299203239938,
-          -10.6222834377259,
-          -9.850893923470275,
-          -9.84048665631829,
-          -10.69913396978456,
-          -10.889122714646442,
-          -9.984638056514415,
-          -10.105145840873595,
-          -8.999295982920689,
-          -9.541843213419227,
-          -9.83539003610014,
-          -10.313510266467755,
-          -10.309068841735318,
-          -9.692467094706677,
-          -8.34985028647311,
-          -9.555688076335455,
-          -11.106274795948723,
-          -9.60728824291854,
-          -13.147750209250445,
-          -9.805101061109815,
-          -12.466518042859981,
-          8.013126274577886,
-          -10.569144095739865,
-          -9.769381198246368,
-          -9.04916295336785,
-          -10.064435177528729,
-          -11.085461957248453,
-          -10.05502754881966,
-          -9.895662519840641,
-          -11.813294046389801,
-          -10.822277595030176,
-          9.46133654242281,
-          -9.410742903026339,
-          -10.194117055815287,
-          -10.619388591674612,
-          -10.407979275626058,
-          -11.018536988832158,
-          -10.39666836113413,
-          -8.872605080370663,
-          -11.04853267114799,
-          -9.150098877918111,
-          -8.59558153417914,
-          -9.191061774702682,
-          -11.580813701302711,
-          9.338458394768008,
-          11.474904799186628,
-          -11.652245720774346,
-          -8.5709771904425,
-          -9.179283118453526,
-          8.026747342897439,
-          -8.723245422297953,
-          -11.187274097954907,
-          -10.078186256914908,
-          -10.748234609009602,
-          8.16150772525177,
-          -10.318216143653997,
-          -9.114111490280742,
-          -10.555432912401944,
-          -8.898568377225606,
-          -10.097270620801622,
-          -8.923300159996405,
-          -9.932544121616548,
-          -9.595310433052596,
-          10.300118615251467,
-          -10.417656786323398,
-          -9.658611598924074,
-          -10.088744977078113,
-          -9.395543997726998,
-          -8.84501934668201,
-          -8.630332647250121,
-          -10.81692072199764,
-          8.444357336759163,
-          -11.297338187901058,
-          -8.915806841770657,
-          10.787272479162958,
-          -6.517112624183948,
-          -11.279170742124972,
-          -9.217874966309797,
-          -8.905503331046397,
-          -12.14365949742699,
-          -9.615716225755168,
-          -10.192835776099956,
-          -8.913631163450477,
-          -9.158099457732698,
-          -9.605482201243218,
-          -10.809507449137111,
-          -10.672327608519096,
-          -9.013786899637488,
-          -10.034231875661693,
-          -8.92178721868344,
-          -10.519885693161745,
-          -9.938755363236545,
-          -9.06017156540235,
-          -9.819368630955738,
-          -9.157382566981093,
-          -10.414113740118871,
-          -9.40857967972949,
-          -9.18246362138501,
-          -12.226367821156957,
-          10.125452198007276,
-          10.918409561457445,
-          -10.32466618614956,
-          -10.747060147295565,
-          -7.5400524011880545,
-          -10.682367211167657,
-          -11.257316216570823,
-          -11.386809627068853,
-          -13.085832808023486,
-          -9.835825705377466,
-          -10.341128912621098,
-          9.53960729571569,
-          -10.833354500094075,
-          -10.791280874035325,
-          -8.6784329300474,
-          9.2328616640864,
-          -8.916064799130284,
-          9.45371302838401,
-          -11.199478827145226,
-          -11.870379191476633,
-          -10.01144974988479,
-          -9.009448367829341,
-          -7.2406869824023605,
-          11.716347087438118,
-          10.741900820643291,
-          -8.570298413386462,
-          -9.559512301312926,
-          13.371154574664104,
-          9.218615720468058,
-          -9.510759275704489,
-          -9.775111962182727,
-          -9.574777297597318,
-          -10.817097254061819,
-          -10.490939050166089,
-          -12.258982787702843,
-          11.031119251435832,
-          -6.852642794011539,
-          8.27806334850753,
-          -9.016623467585047,
-          -11.111779630230352,
-          -9.467675655391442,
-          -9.990509714350864,
-          -10.522223120686753,
-          -8.929339847568587,
-          10.463237931608173,
-          -11.54419154588125,
-          -10.26918156665563,
-          -8.770127657339437,
-          10.349739841007219,
-          -11.474643907711899,
-          -7.990929540110334,
-          -10.478036295579578,
-          -10.311593274841734,
-          9.362282205185856,
-          -10.491783635396478,
-          -9.57458589827447,
-          -11.022060648036899,
-          -11.26742275042159,
-          -8.539341329601214,
-          -10.751795439075606,
-          11.558605102224343,
-          -10.506479577044614,
-          -10.811220931980994,
-          -11.105424610363182,
-          -9.457117565535142,
-          10.796287509718574,
-          -10.645552134540115,
-          -10.936335429914156,
-          -9.773312116556616,
-          -11.054282798731395,
-          -9.50814484383138,
-          -11.663990494129326,
-          -10.666132322095137,
-          -11.563280736785465,
-          -10.636098087251131,
-          9.147680080394125,
-          -9.630899631286047,
-          11.248402940616824,
-          -11.57037682021877,
-          -12.138557719466949,
-          -8.548718106714032,
-          -11.94836723610873,
-          10.069441870466395,
-          -11.055988329915392,
-          11.340428871891286,
-          -8.946480851621445,
-          -9.997583093241618,
-          -10.453170370586422,
-          10.27086424111246,
-          -9.615385912242555,
-          -11.388572140427808,
-          -12.12253480457056,
-          -6.88138315431439,
-          -10.157383821962004,
-          -10.27468098142963,
-          -8.434655293133291,
-          -10.205051073630239,
-          -12.95940014371412,
-          -8.1622926211772,
-          8.207037614162617,
-          -10.493775963539527,
-          -10.138727419408584,
-          -10.351645283290493,
-          -6.424937794126976,
-          -10.893941556669777,
-          -9.152871301986846,
-          -9.002462371899528,
-          10.007440922206891,
-          -8.381141868036675,
-          -10.758336100600044,
-          -10.936312126294576,
-          -8.622657611209934,
-          -10.63107463363661,
-          -9.603546994737721,
-          -9.243842026404408,
-          8.56255372658746,
-          -11.81954296058155,
-          9.059539766629532,
-          -11.236820721684458,
-          -10.142378929372178,
-          -9.49071512735448,
-          -11.014575537077627,
-          11.846236828845072,
-          -9.82385681531276,
-          -10.360712831704971,
-          -10.030912825452758,
-          -10.780399057882304,
-          -9.231778421527212,
-          -8.744043756046354,
-          -11.19049060770853,
-          -9.903467059469234,
-          -7.539473287003471,
-          -10.423566224063157,
-          8.968733858767385,
-          -9.522709597191081,
-          -10.484412345099873,
-          11.545415031523618,
-          8.193461021140259,
-          -9.743781186234378,
-          -8.624667470936757,
-          10.509489879243379,
-          10.465992495439131,
-          -9.799671420556905,
-          -12.169335729495707,
-          -10.367960098898255,
-          -9.43258242214875,
-          -9.996362531465609,
-          10.909430549462085,
-          -8.982267584712478,
-          -11.030186061154382,
-          -11.021972983792997,
-          -8.526803956525704,
-          -10.268529414944918,
-          12.092587924891305,
-          -10.279830229720487,
-          -9.65127631594487,
-          -9.938214366555906,
-          -9.300163792289991,
-          -8.598319324564253,
-          10.192211441357946,
-          -8.555408644683778,
-          10.681937178785859,
-          -9.090642341388243,
-          -11.370754282201261,
-          -10.273901630120937,
-          -10.092504542035863,
-          -10.301261294720339,
-          -10.820280672163472,
-          -10.055951503944138,
-          10.636772753828048,
-          -11.054719420411931,
-          -11.14882762989088,
-          -11.4961745652314,
-          -10.53662794228994,
-          8.080816476940086,
-          -6.712331192081012,
-          10.981322804121934,
-          -8.311837576697414,
-          -9.261639857193826,
-          -8.643504758179708,
-          -8.82716188633484,
-          -9.798440213773322,
-          -9.556571334503541,
-          -11.45846766594066,
-          -9.649734434563406,
-          -9.09064913378823,
-          10.250725156445771,
-          -10.12552864477363,
-          10.751918908313192,
-          -9.992288440063273,
-          -9.553413492079994,
-          -9.102036530872214,
-          -9.661485029707956,
-          -11.547091813138545,
-          10.034630871857766,
-          -10.307387580845027,
-          -7.657267876866184,
-          -9.952176029676453,
-          -9.153197802338665,
-          -7.930806758528336,
-          -9.2885812254883,
-          -8.749889125111482,
-          -8.949946140438371,
-          10.728761843651464,
-          -8.01203452466077,
-          11.233681685144756,
-          -10.252951963578678,
-          8.339008939334889,
-          9.081405695464237,
-          -11.63877972180525,
-          -9.971964506978798,
-          -10.664231007370333,
-          -8.823024887053919,
-          -11.753890649984884,
-          -8.9537517590422,
-          -8.252646842479242,
-          -10.932411675587968,
-          -9.441598428297887,
-          -9.920303238910003,
-          -10.091517823547582,
-          -10.091505790155512,
-          -9.371105652102877,
-          -7.567701224266322,
-          11.705983457745708,
-          -11.336328959145465,
-          -10.95038247904581,
-          8.08082564349792,
-          -10.05321197193243,
-          -8.656857893485226,
-          -10.132413181372355,
-          12.399756940524831,
-          -9.98396920624081,
-          -12.281131474790728,
-          -10.102533926267903,
-          -9.894852669906475,
-          -10.632324750538796,
-          -10.09240742735917,
-          -10.101332062122129,
-          7.770360177244612
+          -3.9589646654481463,
+          0.9122958986776544,
+          1.8236959803364439,
+          1.6658001519892833,
+          1.487726400638011,
+          2.410309044374838,
+          -3.154091230822858,
+          0.8713291137484918,
+          -4.544974585071853,
+          1.068666930421922,
+          3.223392302777903,
+          0.2006307310614801,
+          -4.925575932515532,
+          0.6017399068904936,
+          -0.4554564601386959,
+          1.9989288539543875,
+          -1.3036367220887493,
+          -0.8087214257105835,
+          0.4117262127610273,
+          0.7359511438364059,
+          -4.114318572313261,
+          -1.3597563349946546,
+          2.962977028840913,
+          -1.0723419099384506,
+          0.1748444809558336,
+          -4.805988424048235,
+          0.4555279854125214,
+          -1.5555615461290504,
+          -3.2712152112128976,
+          -0.8935793535146992,
+          -1.2268223848080155,
+          2.831737011750291,
+          -1.4632117997370395,
+          0.2696300810040926,
+          0.5110642560362404,
+          -3.6270296888429923,
+          0.2958431235934711,
+          -0.7630234617161973,
+          3.0095859699056025,
+          2.802589457795041,
+          3.267381313784883,
+          -1.929305034041946,
+          -4.641615934708631,
+          2.6219643081579207,
+          2.237836141374948,
+          1.25043766469763,
+          -1.2485688946185278,
+          -3.19137359661821,
+          -2.2639967017712914,
+          2.1033913005168925,
+          -3.384832743650807,
+          1.1372242712738618,
+          -1.0474420893924417,
+          0.7448488649024485,
+          2.6503728566746876,
+          -0.42383808303702786,
+          -2.608495472487597,
+          -1.6154660274633614,
+          -4.15244819091372,
+          3.4126594340833893,
+          0.672989854667593,
+          -2.2128775821270006,
+          -3.862747683950848,
+          -4.3671421771140055,
+          -0.8790203032789661,
+          -0.38672131127104326,
+          2.8400349287831537,
+          -0.6837861137815997,
+          -0.02783994755685626,
+          1.3196122898985099,
+          -3.5814055945918994,
+          -1.3115050709959886,
+          -2.568326848598202,
+          0.6607269638761135,
+          0.8596239279922875,
+          -0.7456756110190428,
+          -4.610256250119613,
+          -4.7571162010704136,
+          1.8499097864738285,
+          -0.9648209415169866,
+          2.8175441029273056,
+          -4.237252232087458,
+          -4.228525276209637,
+          -0.24089700582517448,
+          -4.2393860776610515,
+          -1.183008701541417,
+          -2.2841738960146305,
+          2.4264699779347287,
+          1.4644051669127602,
+          -4.789324302658245,
+          -0.5135230414460956,
+          1.0140016915646255,
+          1.0629811183518765,
+          -1.094901403701166,
+          2.5871920163323603,
+          -0.927846875803148,
+          1.5341431855110494,
+          -4.9534796174419915,
+          2.2225693562783473,
+          1.1547909937500611,
+          2.8715267084345575,
+          -1.803112866927802,
+          1.1571291360758682,
+          -0.5738610895968907,
+          0.34617615212302155,
+          -0.9980855724425668,
+          -3.3495393243498013,
+          2.2770503048058552,
+          -3.9608709972555864,
+          -4.181950983500617,
+          2.5295027764845788,
+          -2.716089263148547,
+          -0.42782926173791047,
+          -2.9346729594346237,
+          -2.361196647236347,
+          -0.1843848171381639,
+          3.2225621272712317,
+          0.43694792529168947,
+          -1.6816724097406368,
+          -3.758888491783577,
+          1.0240042321211824,
+          -0.8498572901189991,
+          -1.544337921669598,
+          3.182017355400868,
+          -4.924141721001225,
+          -0.25223677835651515,
+          -0.34460912624321693,
+          -3.2533879145409754,
+          -1.4950449134709292,
+          -2.061496189505505,
+          -3.7146668676973946,
+          0.1646435837759883,
+          -1.4421089945934078,
+          -1.0957688126549128,
+          3.252707953485949,
+          -4.683887891071825,
+          -2.8015929143134564,
+          3.3001782891803213,
+          1.5118584884438322,
+          -0.05086284314551204,
+          -4.94189633872162,
+          -3.9497741440792495,
+          -3.0028049645888104,
+          2.3051762676867993,
+          -4.396355310276864,
+          2.7557009976688676,
+          3.389644419721405,
+          -2.6264843590559432,
+          -2.1054252443129293,
+          2.2244355197010837,
+          1.793807609179101,
+          1.5830572345464855,
+          2.6738031015191766,
+          -0.7022911298808072,
+          -1.802054048589432,
+          -2.4614078886627726,
+          -2.2839792652002955,
+          2.94828446929949,
+          2.4639289439843264,
+          -4.866578572212957,
+          -4.551407597673899,
+          -0.6403802721020533,
+          -0.48222562336389263,
+          -4.457659928877897,
+          -4.801373078125643,
+          0.8670011205941703,
+          -1.9063926852194424,
+          -2.0657647309688154,
+          -1.1036610674126583,
+          -2.895554927185852,
+          0.4045978859891717,
+          2.808993175847152,
+          -0.7920284795996704,
+          -3.6451347810461816,
+          -0.5815999358866453,
+          -4.202965652236872,
+          -1.3093443760034122,
+          0.3034369237597341,
+          2.656587435019004,
+          2.618948074952031,
+          2.0552013139134537,
+          3.1349651954553988,
+          -4.151410517441323,
+          -4.708284193059103,
+          0.8323680039393571,
+          -0.24123452941776335,
+          1.101916883197621,
+          0.23549511254016497,
+          -0.5049411943818782,
+          -4.874345176931813,
+          -0.27564992758581663,
+          0.962819431814415,
+          -1.6039307783314483,
+          -0.6132668108062234,
+          1.9762561514891521,
+          -3.482925308511647,
+          1.4959072645960099,
+          -2.404521345662555,
+          -3.8432720171902846,
+          0.01956352192941946,
+          1.0358789039742735,
+          -0.1626228764949822,
+          0.6689131730685318,
+          -1.5457430403642611,
+          2.930356995634509,
+          3.3992573674198816,
+          -4.953514538220816,
+          -1.6852157874392253,
+          -2.8383635689946227,
+          2.490500070994077,
+          -4.804133886368833,
+          -0.19392366942463557,
+          2.6154334244371897,
+          3.251090276261168,
+          -2.0053488286969627,
+          -3.493670554321528,
+          -3.0166928712234746,
+          1.911361411966114,
+          3.3051782083281758,
+          -4.892879568881795,
+          1.7180978846764479,
+          -4.501797057009451,
+          0.3471967115425869,
+          -4.985809210348372,
+          -1.8669285370162307,
+          -2.0413162965424885,
+          2.2695685781182418,
+          -4.926085470737888,
+          -3.4596330592911078,
+          -2.5792601897238714,
+          -2.3816789162609404,
+          0.4664485764443542,
+          2.7266843077432705,
+          -0.02075395588057649,
+          1.0999700946687634,
+          -0.5250787196438669,
+          -1.48934216059958,
+          2.3603081926789686,
+          -4.277687013225355,
+          3.146844089556488,
+          2.7191321301060007,
+          -2.469952284414652,
+          0.8222542133849355,
+          -1.9601625160725717,
+          -4.344870372922077,
+          -3.0170700995569297,
+          -0.43776058035937915,
+          -0.2739050659210811,
+          -2.1518774682475903,
+          3.221908148669396,
+          -3.8321762316928836,
+          -3.4449320599570665,
+          2.838188895208681,
+          -4.156738144681751,
+          -1.3743967877773775,
+          -1.6893558800750248,
+          -0.1750380418621882,
+          -1.205699263939592,
+          -3.0116777338908842,
+          1.4142259543153726,
+          -1.7073297610835994,
+          -0.6258190645893222,
+          0.2672087070732667,
+          1.6904404229879786,
+          1.7321500362996396,
+          -4.697645792499133,
+          0.6890351454277432,
+          2.5650276050970584,
+          -1.2033814717180116,
+          -4.665197423053185,
+          -2.1145219941392983,
+          -1.3967913000804941,
+          -4.931733776164024,
+          -1.268695652397247,
+          -3.584795606032214,
+          1.1893647643768581,
+          3.141628459336639,
+          0.43101557117645317,
+          -4.625783907254338,
+          1.1673601176330939,
+          -2.0769215364494085,
+          0.41251641944091855,
+          0.04436856849008741,
+          1.8233336457282032,
+          -2.0631327269284543,
+          -3.8533091073290002,
+          -1.7624520060979725,
+          -1.072128248845218,
+          1.806360291638386,
+          -2.980891258466301,
+          -3.7144913939827564,
+          0.8011578968035078,
+          -1.938163038395666,
+          1.6034203246298677,
+          -2.629496064394904,
+          -4.249622737603465,
+          -2.4140663558045903,
+          1.2934379788620438,
+          -1.4405142725557547,
+          2.293236886947531,
+          0.3973153674230634,
+          -2.8312240291476156,
+          -1.1393499481355422,
+          -2.838090739192741,
+          1.7383208208512375,
+          2.2014091976566377,
+          1.554127083675195,
+          -0.5298426032583059,
+          -1.0355524867369947,
+          1.6255798208104855,
+          0.6734506520278032,
+          2.3709894923291035,
+          0.4142960418727446,
+          -0.3337730195492572,
+          3.302163736950085,
+          -0.3198725516612857,
+          -1.2036826149259388,
+          -4.573224075985612,
+          -2.0881088248578066,
+          -4.386656413722292,
+          -0.3448230470754723,
+          -2.451337506998498,
+          -2.580095793651265,
+          -2.1566847076942253,
+          1.521602088641128,
+          -1.2141387400325305,
+          1.5969169867721238,
+          0.2798491173425042,
+          -3.0106950311652474,
+          0.6435396497652119,
+          2.7170946106651126,
+          1.2558382704428475,
+          0.33315068626177347,
+          -1.5388965382621027,
+          1.6052061408074012,
+          -3.4653547920341947,
+          -3.9463128777171983,
+          -1.1161347356781146,
+          0.036027590359634765,
+          0.2309930224167065,
+          -2.6165139639873427,
+          -1.1913312767062285,
+          -0.18179632387497602,
+          -0.8245077886609584,
+          -0.09406862838410124,
+          0.08338879402087951,
+          3.2300551392345636,
+          0.6459881143689303,
+          2.3843759013311114,
+          -3.2524088556067676,
+          -0.08578435279478658,
+          0.7723392928556576,
+          0.3675189237947416,
+          -1.5018486118916052,
+          -0.24027952178197243,
+          -1.899659396812853,
+          -4.838867663168174,
+          0.715260197771018,
+          1.642158648062697,
+          0.6411820950020806,
+          -0.14814191902696994,
+          -0.7932441113973958,
+          -4.378462290729853,
+          -4.896108986343701,
+          1.6564824278674415,
+          1.4753843976843886,
+          0.2630359250147807,
+          -1.9786175150258378,
+          -4.090461727734807,
+          -0.03427089079687651,
+          1.9841624675130118,
+          -0.1864893316286782,
+          -2.401536475614984,
+          0.7373385187693113,
+          -0.3269141123474526,
+          -2.524621314364194,
+          -1.5971812331580488,
+          -3.197007187156532,
+          -1.2909337890271075,
+          -2.7270621601837175,
+          0.5782576570834328,
+          3.0705220534905884,
+          -0.5078505891733762,
+          -2.6716658615644544,
+          -2.128583652751421,
+          -3.1263404009552955,
+          2.953789783116811,
+          -1.729453451818908,
+          -1.4924390240702423,
+          1.4686001575457217,
+          -1.3438874749096903,
+          -0.6624008786563005,
+          -4.945770392917611,
+          1.1670488432076747,
+          -0.7551434770434078,
+          2.145158902820585,
+          -0.4979338978740593,
+          0.07988493046760858,
+          2.292883738656066,
+          0.08729715354771095,
+          -0.15984274057646175,
+          -3.289148428223603,
+          -4.085276379450496,
+          0.871493229494523,
+          -2.8320716459121096,
+          -2.9935466942197433,
+          -2.099669294805951,
+          -1.1143838857923485,
+          0.5423578873683459,
+          2.609896332345426,
+          1.5587064787769789,
+          -4.166198877809068,
+          -3.10662716961652,
+          -3.7900326400690285,
+          0.20401084222145904,
+          -4.644683747989334,
+          -3.920462732994276,
+          -1.569615774149204,
+          -2.1146953218826026,
+          -1.1401120192024012,
+          1.042208594056505,
+          -0.8154307416283482,
+          2.3408171690082504,
+          0.5361961578685,
+          -2.512793501523446,
+          -0.3975970598565475,
+          -1.0674510790668643,
+          -2.443631566842917,
+          2.6198193988286667,
+          -3.8834695777238712,
+          -1.5297698449136128,
+          -0.8351728423263518,
+          -2.791188709802751,
+          2.9256528003069358,
+          2.4793743935655455,
+          -4.45576076916221,
+          -2.7120815556784525,
+          0.12954341548359594,
+          -0.8643010750878144,
+          -1.992965636373171,
+          1.665150946198426,
+          1.8342141811140298,
+          -0.7046846517408154,
+          -2.737589165261653,
+          1.7286617729007379,
+          -1.5218543195286647,
+          -4.613601237391192,
+          0.9152037069945225,
+          -0.1110543230847254,
+          2.7636053866630075,
+          2.1488784940794803,
+          -4.924758293433656,
+          -1.9529084788587574,
+          -1.0840231375336988,
+          0.7694239360249115,
+          1.3545156446288908,
+          3.3009136180321477,
+          -1.5621912568426666,
+          1.132269720852336,
+          -1.8424861438495421,
+          2.8807524150179624,
+          0.8442492525192495,
+          2.3003704735805197,
+          3.068164738550342,
+          2.5404941754214976,
+          2.804355852271117,
+          0.5464381296341507,
+          0.317919083404961,
+          -2.288355152185015,
+          -3.506765563495005,
+          1.6232714295203596,
+          -4.811419223845099,
+          -4.3041433335779615,
+          2.129379087991227,
+          1.7311324979192975,
+          -2.683180266483991,
+          0.8856569805233638,
+          1.9902629629544633,
+          -4.133652690766669,
+          -3.297507828488553,
+          -0.6555025649596615,
+          -2.599963463404549,
+          -2.0343215745887995,
+          -4.021217414723221,
+          1.6581975367716169,
+          1.971747674796699,
+          3.230049173713981,
+          3.014555015235036,
+          1.8055436942186844,
+          -2.785707467313464,
+          2.0802404646192967,
+          1.7036040563242532,
+          -4.309263644536484,
+          0.33472891411927197,
+          0.3255675803506177,
+          -4.4264025925856565,
+          0.6390475899491284,
+          -0.7978240579757516,
+          -1.2286823118137664,
+          -0.10113863915851962,
+          -0.8117979867508396,
+          -0.3800525833381121,
+          -4.318279419998431,
+          -2.518676454694744,
+          3.3270068939823183,
+          -4.47065222262937,
+          -0.38329213923098315,
+          -0.8858058043423824,
+          1.807501558859519,
+          -0.27320945245531636,
+          -0.9489921311470813,
+          0.8725964250618636,
+          0.7537153854925345,
+          -0.37702145226290096,
+          0.2183758191408769,
+          -2.3554017873771875,
+          0.7162980944567741,
+          -2.6694988738381373,
+          2.9803212374217125,
+          -4.759949869213156,
+          1.5994256747707647,
+          0.022022927561640593,
+          -3.3121978230064277,
+          -0.48935139973898156,
+          -2.8827166173285512,
+          -3.795121606965971,
+          0.2332711587340146,
+          -4.71543119131047,
+          -0.7155439112868205,
+          -4.31005941244094,
+          -4.631758118157261,
+          3.278870761418684,
+          0.683967188558035,
+          -2.8257863684954883,
+          -3.290091150432488,
+          0.1530564213609953,
+          -1.148876950767908,
+          -1.2148554283243302,
+          2.8476890910609036,
+          -3.092784208222886,
+          -4.667599798664721,
+          1.6217714939944008,
+          -3.380078521085555,
+          -1.0782514329551631,
+          -2.926859292970723,
+          -0.45742837798358327,
+          -1.2436105554164207,
+          -2.6071159979827896,
+          -2.8826596270339704,
+          -4.301354555941329,
+          3.155118301800867,
+          2.997020146773849,
+          -2.997372437747483,
+          -0.011439587101449433,
+          -4.904613147865667,
+          1.3753332788389496,
+          1.4100059972193018,
+          3.3020859944494596,
+          3.178616271367364,
+          2.629287494669139,
+          -3.299670330603944,
+          -4.4496685186052165,
+          -4.527228517386983,
+          -2.353390577858977,
+          -1.60622882507388,
+          2.6884804975500387,
+          -1.0665866611002048,
+          -3.478113568768867,
+          0.8493339901553068,
+          3.1316714584811898,
+          1.7900289732641026,
+          0.48241564150058736,
+          -2.4141471522385,
+          3.262195097431947,
+          -0.24319460175212448,
+          -1.9953459182030744,
+          -0.20919715164647812,
+          -1.6453320734577304,
+          1.2992478656191446,
+          -0.8134900987213198,
+          2.4604903875893944,
+          -1.7391353128391431,
+          0.8187870871934599,
+          1.8148337164125348,
+          -3.582916554355413,
+          -4.320414649235078,
+          -0.11157702868362929,
+          0.21078825508029553,
+          -4.611572486093786,
+          -3.3657995167450956,
+          -4.020880433372337,
+          -0.7946606207782718,
+          -2.585688455239359,
+          -4.676893167861388,
+          -2.785348759043344,
+          2.2980225325550023,
+          -0.5768594875384592,
+          0.8295444012794677,
+          -2.3836189945962776,
+          0.8379429397046119,
+          -1.60337653426037,
+          0.14009091414147434,
+          -1.6242167221298756,
+          3.33080129292634,
+          0.5963859370727533,
+          -2.44612310381815,
+          -0.22725019401484392,
+          1.7962936354164674,
+          -1.172067775946429,
+          -3.1946433479762244,
+          -2.9448157168495386,
+          1.9071878526086854,
+          -4.220572342618514,
+          -3.3462536386793813,
+          -4.126375632786608,
+          1.1788474169293748,
+          -1.9738526792372912,
+          -4.030157261841828,
+          -2.0432137648755218,
+          2.247392786389393,
+          3.072966808079306,
+          1.9786448949226827,
+          0.9893771908148716,
+          2.0657798083428336,
+          -1.9816756979026962,
+          -3.498689494976058,
+          0.1090665198573948,
+          -4.98857138112469,
+          -0.9133429925208905,
+          2.4724610457217686,
+          -1.6732359223643596,
+          2.827279798770923,
+          -1.4090050926805722,
+          -2.4703761606616292,
+          2.340980810513779,
+          2.7026218055550144,
+          -1.2198384587961328,
+          0.3734748244091044,
+          -3.172991077147653,
+          2.7799907249011904,
+          -1.2096242737514422,
+          -4.321877153944351,
+          1.4522795050575308,
+          -2.088132235941612,
+          -2.722344391583931,
+          2.319481264314412,
+          1.6041787695375547,
+          -0.05996055914663412,
+          1.9547224455915542,
+          1.0869049524497338,
+          -0.9434239400374222,
+          1.6145569475996924,
+          -4.182751487249501,
+          -1.2404708426869195,
+          -3.1546109593777176,
+          3.187886839693741,
+          2.14660395766595,
+          1.499805733226137,
+          -3.039734001412403,
+          0.3614643679062839,
+          -2.0161117609140105,
+          -1.169073102055703,
+          -2.005901343334941,
+          -0.9886393060561431,
+          -4.7261253021915595,
+          -2.8849466962102017
          ]
         },
         {
@@ -19293,2677 +19263,2677 @@
          "scene": "scene3",
          "showlegend": false,
          "text": [
-          "example_0",
-          "example_3",
-          "example_5",
-          "example_6",
-          "example_7",
-          "example_9",
-          "example_10",
-          "example_12",
-          "example_18",
-          "example_24",
-          "example_25",
-          "example_27",
-          "example_28",
-          "example_31",
-          "example_33",
-          "example_38",
-          "example_39",
-          "example_41",
-          "example_42",
-          "example_47",
-          "example_48",
-          "example_52",
-          "example_54",
-          "example_55",
-          "example_57",
-          "example_60",
-          "example_62",
-          "example_66",
-          "example_68",
-          "example_74",
-          "example_77",
-          "example_79",
-          "example_80",
-          "example_82",
-          "example_83",
-          "example_85",
-          "example_86",
-          "example_88",
-          "example_90",
-          "example_92",
-          "example_94",
-          "example_96",
-          "example_97",
-          "example_102",
-          "example_104",
-          "example_105",
-          "example_106",
-          "example_108",
-          "example_110",
-          "example_113",
-          "example_117",
-          "example_125",
-          "example_126",
-          "example_129",
-          "example_131",
-          "example_132",
-          "example_133",
-          "example_136",
-          "example_137",
-          "example_138",
-          "example_139",
-          "example_140",
-          "example_142",
-          "example_144",
-          "example_145",
-          "example_147",
-          "example_155",
-          "example_156",
-          "example_158",
-          "example_164",
-          "example_165",
-          "example_167",
-          "example_169",
-          "example_171",
-          "example_172",
-          "example_174",
-          "example_177",
-          "example_178",
-          "example_179",
-          "example_181",
-          "example_183",
-          "example_193",
-          "example_195",
-          "example_204",
-          "example_209",
-          "example_213",
-          "example_214",
-          "example_215",
-          "example_221",
-          "example_222",
-          "example_223",
-          "example_224",
-          "example_227",
-          "example_228",
-          "example_232",
-          "example_234",
-          "example_235",
-          "example_238",
-          "example_242",
-          "example_243",
-          "example_248",
-          "example_249",
-          "example_255",
-          "example_258",
-          "example_260",
-          "example_267",
-          "example_280",
-          "example_282",
-          "example_285",
-          "example_287",
-          "example_290",
-          "example_291",
-          "example_294",
-          "example_296",
-          "example_299",
-          "example_302",
-          "example_308",
-          "example_312",
-          "example_314",
-          "example_318",
-          "example_319",
-          "example_321",
-          "example_323",
-          "example_325",
-          "example_326",
-          "example_327",
-          "example_328",
-          "example_329",
-          "example_333",
-          "example_336",
-          "example_338",
-          "example_341",
-          "example_346",
-          "example_347",
-          "example_348",
-          "example_349",
-          "example_355",
-          "example_357",
-          "example_359",
-          "example_360",
-          "example_362",
-          "example_364",
-          "example_370",
-          "example_372",
-          "example_373",
-          "example_375",
-          "example_377",
-          "example_386",
-          "example_388",
-          "example_389",
-          "example_390",
-          "example_404",
-          "example_409",
-          "example_410",
-          "example_419",
-          "example_421",
-          "example_423",
-          "example_424",
-          "example_428",
-          "example_430",
-          "example_434",
-          "example_435",
-          "example_440",
-          "example_442",
-          "example_446",
-          "example_447",
-          "example_448",
-          "example_449",
-          "example_451",
-          "example_457",
-          "example_458",
-          "example_460",
-          "example_461",
-          "example_467",
-          "example_468",
-          "example_475",
-          "example_477",
-          "example_490",
-          "example_491",
-          "example_499",
-          "example_500",
-          "example_501",
-          "example_503",
-          "example_504",
-          "example_516",
-          "example_523",
-          "example_525",
-          "example_528",
-          "example_531",
-          "example_533",
-          "example_536",
-          "example_539",
-          "example_541",
-          "example_542",
-          "example_545",
-          "example_547",
-          "example_549",
-          "example_553",
-          "example_558",
-          "example_560",
-          "example_566",
-          "example_568",
-          "example_571",
-          "example_573",
-          "example_578",
-          "example_587",
-          "example_589",
-          "example_594",
-          "example_597",
-          "example_601",
-          "example_603",
-          "example_605",
-          "example_615",
-          "example_621",
-          "example_622",
-          "example_624",
-          "example_626",
-          "example_629",
-          "example_634",
-          "example_636",
-          "example_638",
-          "example_643",
-          "example_644",
-          "example_649",
-          "example_652",
-          "example_657",
-          "example_660",
-          "example_661",
-          "example_664",
-          "example_665",
-          "example_666",
-          "example_667",
-          "example_668",
-          "example_669",
-          "example_671",
-          "example_672",
-          "example_673",
-          "example_676",
-          "example_677",
-          "example_682",
-          "example_688",
-          "example_691",
-          "example_695",
-          "example_697",
-          "example_700",
-          "example_708",
-          "example_711",
-          "example_713",
-          "example_714",
-          "example_716",
-          "example_718",
-          "example_722",
-          "example_723",
-          "example_724",
-          "example_731",
-          "example_732",
-          "example_735",
-          "example_737",
-          "example_739",
-          "example_743",
-          "example_750",
-          "example_754",
-          "example_756",
-          "example_762",
-          "example_770",
-          "example_772",
-          "example_778",
-          "example_782",
-          "example_783",
-          "example_786",
-          "example_793",
-          "example_796",
-          "example_798",
-          "example_799",
-          "example_803",
-          "example_809",
-          "example_810",
-          "example_811",
-          "example_814",
-          "example_816",
-          "example_820",
-          "example_823",
-          "example_826",
-          "example_828",
-          "example_836",
-          "example_839",
-          "example_841",
-          "example_842",
-          "example_844",
-          "example_846",
-          "example_847",
-          "example_852",
-          "example_857",
-          "example_858",
-          "example_859",
-          "example_862",
-          "example_864",
-          "example_867",
-          "example_868",
-          "example_869",
-          "example_874",
-          "example_875",
-          "example_881",
-          "example_882",
-          "example_885",
-          "example_888",
-          "example_889",
-          "example_893",
-          "example_894",
-          "example_898",
-          "example_899",
-          "example_901",
-          "example_903",
-          "example_908",
-          "example_910",
-          "example_912",
-          "example_916",
-          "example_917",
-          "example_918",
-          "example_921",
-          "example_922",
-          "example_924",
-          "example_932",
-          "example_933",
-          "example_934",
-          "example_938",
-          "example_940",
-          "example_941",
-          "example_944",
-          "example_945",
-          "example_946",
-          "example_950",
-          "example_953",
-          "example_958",
-          "example_967",
-          "example_968",
-          "example_970",
-          "example_973",
-          "example_974",
-          "example_982",
-          "example_983",
-          "example_986",
-          "example_987",
-          "example_989",
-          "example_997",
-          "example_998",
-          "example_999",
-          "example_1000",
-          "example_1001",
-          "example_1005",
-          "example_1006",
-          "example_1007",
-          "example_1009",
-          "example_1023",
-          "example_1024",
-          "example_1026",
-          "example_1030",
-          "example_1031",
-          "example_1032",
-          "example_1034",
-          "example_1035",
-          "example_1037",
-          "example_1041",
-          "example_1046",
-          "example_1047",
-          "example_1049",
-          "example_1055",
-          "example_1057",
-          "example_1058",
-          "example_1065",
-          "example_1068",
-          "example_1074",
-          "example_1078",
-          "example_1079",
-          "example_1080",
-          "example_1085",
-          "example_1087",
-          "example_1088",
-          "example_1089",
-          "example_1091",
-          "example_1093",
-          "example_1094",
-          "example_1096",
-          "example_1097",
-          "example_1101",
-          "example_1108",
-          "example_1110",
-          "example_1111",
-          "example_1112",
-          "example_1113",
-          "example_1116",
-          "example_1118",
-          "example_1121",
-          "example_1124",
-          "example_1128",
-          "example_1131",
-          "example_1132",
-          "example_1137",
-          "example_1140",
-          "example_1142",
-          "example_1145",
-          "example_1149",
-          "example_1151",
-          "example_1155",
-          "example_1156",
-          "example_1161",
-          "example_1168",
-          "example_1169",
-          "example_1172",
-          "example_1175",
-          "example_1176",
-          "example_1178",
-          "example_1182",
-          "example_1185",
-          "example_1188",
-          "example_1190",
-          "example_1193",
-          "example_1196",
-          "example_1197",
-          "example_1200",
-          "example_1201",
-          "example_1205",
-          "example_1206",
-          "example_1208",
-          "example_1209",
-          "example_1210",
-          "example_1214",
-          "example_1216",
-          "example_1217",
-          "example_1221",
-          "example_1226",
-          "example_1230",
-          "example_1232",
-          "example_1234",
-          "example_1236",
-          "example_1237",
-          "example_1244",
-          "example_1251",
-          "example_1252",
-          "example_1253",
-          "example_1259",
-          "example_1261",
-          "example_1262",
-          "example_1268",
-          "example_1269",
-          "example_1278",
-          "example_1283",
-          "example_1285",
-          "example_1286",
-          "example_1290",
-          "example_1292",
-          "example_1293",
-          "example_1299",
-          "example_1302",
-          "example_1303",
-          "example_1310",
-          "example_1313",
-          "example_1315",
-          "example_1323",
-          "example_1328",
-          "example_1329",
-          "example_1330",
-          "example_1333",
-          "example_1334",
-          "example_1336",
-          "example_1338",
-          "example_1340",
-          "example_1341",
-          "example_1342",
-          "example_1351",
-          "example_1352",
-          "example_1353",
-          "example_1356",
-          "example_1358",
-          "example_1359",
-          "example_1361",
-          "example_1366",
-          "example_1368",
-          "example_1370",
-          "example_1374",
-          "example_1375",
-          "example_1385",
-          "example_1394",
-          "example_1401",
-          "example_1402",
-          "example_1404",
-          "example_1406",
-          "example_1407",
-          "example_1418",
-          "example_1419",
-          "example_1421",
-          "example_1422",
-          "example_1427",
-          "example_1435",
-          "example_1446",
-          "example_1449",
-          "example_1450",
-          "example_1455",
-          "example_1456",
-          "example_1457",
-          "example_1460",
-          "example_1461",
-          "example_1463",
-          "example_1466",
-          "example_1467",
-          "example_1468",
-          "example_1470",
-          "example_1473",
-          "example_1477",
-          "example_1480",
-          "example_1486",
-          "example_1488",
-          "example_1489",
-          "example_1492",
-          "example_1497",
-          "example_1501",
-          "example_1505",
-          "example_1506",
-          "example_1507",
-          "example_1512",
-          "example_1514",
-          "example_1518",
-          "example_1519",
-          "example_1521",
-          "example_1523",
-          "example_1524",
-          "example_1532",
-          "example_1536",
-          "example_1538",
-          "example_1540",
-          "example_1541",
-          "example_1544",
-          "example_1545",
-          "example_1549",
-          "example_1557",
-          "example_1561",
-          "example_1562",
-          "example_1563",
-          "example_1566",
-          "example_1572",
-          "example_1574",
-          "example_1576",
-          "example_1578",
-          "example_1580",
-          "example_1581",
-          "example_1587",
-          "example_1593",
-          "example_1599",
-          "example_1604",
-          "example_1609",
-          "example_1614",
-          "example_1617",
-          "example_1618",
-          "example_1619",
-          "example_1620",
-          "example_1622",
-          "example_1625",
-          "example_1627",
-          "example_1628",
-          "example_1630",
-          "example_1637",
-          "example_1639",
-          "example_1640",
-          "example_1641",
-          "example_1642",
-          "example_1647",
-          "example_1662",
-          "example_1665",
-          "example_1666",
-          "example_1668",
-          "example_1669",
-          "example_1673",
-          "example_1682",
-          "example_1684",
-          "example_1691",
-          "example_1692",
-          "example_1697",
-          "example_1699",
-          "example_1701",
-          "example_1704",
-          "example_1709",
-          "example_1713",
-          "example_1718",
-          "example_1728",
-          "example_1730",
-          "example_1732",
-          "example_1736",
-          "example_1741",
-          "example_1747",
-          "example_1753",
-          "example_1758",
-          "example_1760",
-          "example_1769",
-          "example_1780",
-          "example_1781",
-          "example_1784",
-          "example_1789",
-          "example_1797",
-          "example_1798",
-          "example_1799",
-          "example_1800",
-          "example_1802",
-          "example_1807",
-          "example_1812",
-          "example_1815",
-          "example_1818",
-          "example_1819",
-          "example_1822",
-          "example_1824",
-          "example_1825",
-          "example_1826",
-          "example_1829",
-          "example_1830",
-          "example_1832",
-          "example_1835",
-          "example_1838",
-          "example_1840",
-          "example_1843",
-          "example_1847",
-          "example_1848",
-          "example_1852",
-          "example_1853",
-          "example_1854",
-          "example_1855",
-          "example_1856",
-          "example_1858",
-          "example_1859",
-          "example_1866",
-          "example_1869",
-          "example_1870",
-          "example_1881",
-          "example_1884",
-          "example_1885",
-          "example_1887",
-          "example_1890",
-          "example_1894",
-          "example_1896",
-          "example_1897",
-          "example_1900",
-          "example_1901",
-          "example_1919",
-          "example_1921",
-          "example_1924",
-          "example_1927",
-          "example_1931",
-          "example_1933",
-          "example_1934",
-          "example_1938",
-          "example_1942",
-          "example_1943",
-          "example_1944",
-          "example_1954",
-          "example_1956",
-          "example_1958",
-          "example_1961",
-          "example_1964",
-          "example_1967",
-          "example_1970",
-          "example_1971",
-          "example_1973",
-          "example_1977",
-          "example_1983",
-          "example_1986",
-          "example_1991",
-          "example_1992",
-          "example_1996"
+          "666_l_1_m-0_1.42-1_0.04-2_0.58-3_0.4",
+          "667_l_1_m-0_1.07-1_0.13-2_0.08-3_0.11",
+          "668_l_1_m-0_0.1-1_0.1-2_0.09-3_0.58",
+          "669_l_1_m-0_0.99-1_0.44-2_0.12-3_1.24",
+          "670_l_1_m-0_0.45-1_0.08-2_0.78-3_0.1",
+          "671_l_1_m-0_0.28-1_0.11-2_0.12-3_0.27",
+          "672_l_1_c_0_1_2-0_0.43-1_0.28-2_0.33-3_0.41",
+          "673_l_1_c_0_1_2-0_0.61-1_0.14-2_0.73-3_0.65",
+          "674_l_1_c_0_1_2-0_1.35-1_0.86-2_0.19-3_0.14",
+          "675_l_1_c_0_1_2-0_0.06-1_0.48-2_0.19-3_1.15",
+          "676_l_1_c_0_1_2-0_0.6-1_0.32-2_0.04-3_0.35",
+          "677_l_1_c_0_1_2-0_0.7-1_0.4-2_0.11-3_1.46",
+          "678_l_1_c_0_1_2-0_0.48-1_0.42-2_0.47-3_0.31",
+          "679_l_1_c_0_1_2-0_0.09-1_0.12-2_0.24-3_1.24",
+          "680_l_1_c_0_1_2-0_0.45-1_0.1-2_0.27-3_0.88",
+          "681_l_1_c_0_1_2-0_0.01-1_0.09-2_0.01-3_1.53",
+          "682_l_1_c_0_1_2-0_0.02-1_0.13-2_0.6-3_0.43",
+          "683_l_1_c_0_1_2-0_0.37-1_0.43-2_0.01-3_1.33",
+          "684_l_1_c_0_1_2-0_0.85-1_0.14-2_0.37-3_0.32",
+          "685_l_1_c_0_1_2-0_0.13-1_0.81-2_0.22-3_0.28",
+          "686_l_1_c_0_1_2-0_1.47-1_0.36-2_0.51-3_0.29",
+          "687_l_1_c_0_1_2-0_0.73-1_1.04-2_0.17-3_1.62",
+          "688_l_1_c_0_1_2-0_0.55-1_0.14-2_0.05-3_0.72",
+          "689_l_1_c_0_1_2-0_0.17-1_0.19-2_0.07-3_0.08",
+          "690_l_1_c_0_1_2-0_0.62-1_0.75-2_0.21-3_1.57",
+          "691_l_1_c_0_1_2-0_1.1-1_0.23-2_0.17-3_0.56",
+          "692_l_1_c_0_1_2-0_0.36-1_0.43-2_0.66-3_0.14",
+          "693_l_1_c_0_1_2-0_0.31-1_0.04-2_0.05-3_0.44",
+          "694_l_1_c_0_1_2-0_0.03-1_0.19-2_0.44-3_0.45",
+          "695_l_1_c_0_1_2-0_0.33-1_0.03-2_0.11-3_0.86",
+          "696_l_1_c_0_1_2-0_1.0-1_0.88-2_0.06-3_0.11",
+          "697_l_1_c_0_1_2-0_0.04-1_0.22-2_0.36-3_0.84",
+          "698_l_1_c_0_1_2-0_0.4-1_0.25-2_0.96-3_0.07",
+          "699_l_1_c_0_1_2-0_0.04-1_0.01-2_0.26-3_0.31",
+          "700_l_1_c_0_1_2-0_1.03-1_0.19-2_0.27-3_0.75",
+          "701_l_1_c_0_1_2-0_0.24-1_0.15-2_0.41-3_1.58",
+          "702_l_1_c_0_1_2-0_0.29-1_0.73-2_0.21-3_0.48",
+          "703_l_1_c_0_1_2-0_0.65-1_0.99-2_0.64-3_1.27",
+          "704_l_1_c_0_1_2-0_0.92-1_0.5-2_0.63-3_0.65",
+          "705_l_1_c_0_1_2-0_0.37-1_0.37-2_0.14-3_0.71",
+          "706_l_1_c_0_1_2-0_0.07-1_0.61-2_0.6-3_1.57",
+          "707_l_1_c_0_1_2-0_0.02-1_0.81-2_0.44-3_1.63",
+          "708_l_1_c_0_1_2-0_0.42-1_0.4-2_0.17-3_0.57",
+          "709_l_1_c_0_1_2-0_0.05-1_0.47-2_0.03-3_0.71",
+          "710_l_1_c_0_1_2-0_0.34-1_0.05-2_1.03-3_0.1",
+          "711_l_1_c_0_1_3-0_0.31-1_0.36-2_0.38-3_0.28",
+          "712_l_1_c_0_1_2-0_0.41-1_0.28-2_0.42-3_0.34",
+          "713_l_1_c_0_1_3-0_0.22-1_0.0-2_0.46-3_0.21",
+          "714_l_1_c_0_1_2-0_0.1-1_0.73-2_0.14-3_0.31",
+          "715_l_1_c_0_1_3-0_0.08-1_0.15-2_1.46-3_0.02",
+          "716_l_1_c_0_1_2-0_0.3-1_0.94-2_0.06-3_1.62",
+          "717_l_1_c_0_1_3-0_0.21-1_0.0-2_0.93-3_0.06",
+          "718_l_1_c_0_1_2-0_1.08-1_0.03-2_0.09-3_0.45",
+          "719_l_1_c_0_1_3-0_0.18-1_0.92-2_1.72-3_0.29",
+          "720_l_1_c_0_1_2-0_0.07-1_0.03-2_0.03-3_0.56",
+          "721_l_1_c_0_1_3-0_0.42-1_0.81-2_1.23-3_0.18",
+          "722_l_1_c_0_1_2-0_0.08-1_0.78-2_0.04-3_2.01",
+          "723_l_1_c_0_1_3-0_0.64-1_0.25-2_0.52-3_0.12",
+          "724_l_1_c_0_1_2-0_0.25-1_1.61-2_0.23-3_1.07",
+          "725_l_1_c_0_1_3-0_0.28-1_0.42-2_0.63-3_0.19",
+          "726_l_1_c_0_1_2-0_0.2-1_0.49-2_0.29-3_0.86",
+          "727_l_1_c_0_1_3-0_0.15-1_1.58-2_0.77-3_0.47",
+          "728_l_1_c_0_1_2-0_0.15-1_0.51-2_0.15-3_0.14",
+          "729_l_1_c_0_1_3-0_1.1-1_0.03-2_0.87-3_0.14",
+          "730_l_1_c_0_1_2-0_0.11-1_0.39-2_0.01-3_0.53",
+          "731_l_1_c_0_1_3-0_0.19-1_0.78-2_1.61-3_0.07",
+          "732_l_1_c_0_1_2-0_0.39-1_0.52-2_0.39-3_0.81",
+          "733_l_1_c_0_1_3-0_0.37-1_0.18-2_1.78-3_0.3",
+          "734_l_1_c_0_1_2-0_0.18-1_1.04-2_0.05-3_0.87",
+          "735_l_1_c_0_1_3-0_0.03-1_0.47-2_1.25-3_0.23",
+          "736_l_1_c_0_1_2-0_0.86-1_0.48-2_0.68-3_0.23",
+          "737_l_1_c_0_1_3-0_1.23-1_0.66-2_1.32-3_0.05",
+          "738_l_1_c_0_1_2-0_1.06-1_0.31-2_0.02-3_0.8",
+          "739_l_1_c_0_1_3-0_0.09-1_0.08-2_0.05-3_0.21",
+          "740_l_1_c_0_1_2-0_0.31-1_0.62-2_0.63-3_0.57",
+          "741_l_1_c_0_1_3-0_0.54-1_0.86-2_0.71-3_0.39",
+          "742_l_1_c_0_1_2-0_0.77-1_1.11-2_0.52-3_0.79",
+          "743_l_1_c_0_1_3-0_1.73-1_0.33-2_0.26-3_0.35",
+          "744_l_1_c_0_1_2-0_0.28-1_0.73-2_0.08-3_0.9",
+          "745_l_1_c_0_1_3-0_0.33-1_0.46-2_0.9-3_0.01",
+          "746_l_1_c_0_1_2-0_0.42-1_0.05-2_0.58-3_0.7",
+          "747_l_1_c_0_1_3-0_0.05-1_1.24-2_1.46-3_0.1",
+          "748_l_1_c_0_1_2-0_0.2-1_0.37-2_0.09-3_0.61",
+          "749_l_1_c_0_1_3-0_0.02-1_0.93-2_0.71-3_0.01",
+          "750_l_1_c_0_1_2-0_0.16-1_0.28-2_0.71-3_0.12",
+          "751_l_1_c_0_1_3-0_0.17-1_0.61-2_1.7-3_0.65",
+          "752_l_1_c_0_1_2-0_0.37-1_0.13-2_0.07-3_0.46",
+          "753_l_1_c_0_1_3-0_0.41-1_1.05-2_0.49-3_0.37",
+          "754_l_1_c_0_1_2-0_0.42-1_0.14-2_0.31-3_0.36",
+          "755_l_1_c_0_1_3-0_0.47-1_0.2-2_0.85-3_0.23",
+          "756_l_1_c_0_1_2-0_0.08-1_0.19-2_0.21-3_0.15",
+          "757_l_1_c_0_1_3-0_0.18-1_0.68-2_0.13-3_0.28",
+          "758_l_1_c_0_1_2-0_0.06-1_0.53-2_0.44-3_0.15",
+          "759_l_1_c_0_1_3-0_0.5-1_0.18-2_1.22-3_0.01",
+          "760_l_1_c_0_1_2-0_0.05-1_0.03-2_0.12-3_0.34",
+          "761_l_1_c_0_1_3-0_0.18-1_0.43-2_1.69-3_0.4",
+          "762_l_1_c_0_1_2-0_0.37-1_0.14-2_0.07-3_0.43",
+          "763_l_1_c_0_1_3-0_0.06-1_0.28-2_0.84-3_0.27",
+          "764_l_1_c_0_1_2-0_0.03-1_0.09-2_0.04-3_1.16",
+          "765_l_1_c_0_1_3-0_0.24-1_0.65-2_0.36-3_0.27",
+          "766_l_1_c_0_1_2-0_0.36-1_0.14-2_0.35-3_1.2",
+          "767_l_1_c_0_1_3-0_0.02-1_0.36-2_0.95-3_0.25",
+          "768_l_1_c_0_1_2-0_0.1-1_0.08-2_0.34-3_0.78",
+          "769_l_1_c_0_1_3-0_0.53-1_0.32-2_1.77-3_0.28",
+          "770_l_1_c_0_1_2-0_0.55-1_0.28-2_0.5-3_0.84",
+          "771_l_1_c_0_1_3-0_0.1-1_0.03-2_0.74-3_0.04",
+          "772_l_1_c_0_1_2-0_0.18-1_0.0-2_0.73-3_0.38",
+          "773_l_1_c_0_1_3-0_0.09-1_0.59-2_0.5-3_0.13",
+          "774_l_1_c_0_1_2-0_0.37-1_0.89-2_0.54-3_1.03",
+          "775_l_1_c_0_1_3-0_0.29-1_0.01-2_1.27-3_0.22",
+          "776_l_1_c_0_1_2-0_0.12-1_0.21-2_0.26-3_0.05",
+          "777_l_1_c_0_1_3-0_0.07-1_0.44-2_1.03-3_0.46",
+          "778_l_1_c_0_1_2-0_0.18-1_0.34-2_0.42-3_0.07",
+          "779_l_1_c_0_1_3-0_0.85-1_0.35-2_0.29-3_0.33",
+          "780_l_1_c_0_1_2-0_0.29-1_0.43-2_0.21-3_1.24",
+          "781_l_1_c_0_1_3-0_0.84-1_0.15-2_0.73-3_0.09",
+          "782_l_1_c_0_1_2-0_0.08-1_0.11-2_0.09-3_1.07",
+          "783_l_1_c_0_1_3-0_0.59-1_0.51-2_0.24-3_0.15",
+          "784_l_1_c_0_1_2-0_1.61-1_0.67-2_0.1-3_0.77",
+          "785_l_1_c_0_1_3-0_0.88-1_0.43-2_0.14-3_0.27",
+          "786_l_1_c_0_1_2-0_0.31-1_0.26-2_0.17-3_0.07",
+          "787_l_1_c_0_1_3-0_1.39-1_0.51-2_0.31-3_0.31",
+          "788_l_1_c_0_1_2-0_0.08-1_1.23-2_0.29-3_0.59",
+          "789_l_1_c_0_1_3-0_0.58-1_0.11-2_0.54-3_0.03",
+          "790_l_1_c_0_1_2-0_0.2-1_0.01-2_0.36-3_0.13",
+          "791_l_1_c_0_1_3-0_0.47-1_0.22-2_0.95-3_0.01",
+          "792_l_1_c_0_1_2-0_0.87-1_0.0-2_0.13-3_0.65",
+          "793_l_1_c_0_1_3-0_0.39-1_0.17-2_1.03-3_0.08",
+          "794_l_1_c_0_1_2-0_0.96-1_0.06-2_0.15-3_0.72",
+          "795_l_1_c_0_1_3-0_0.18-1_0.01-2_0.29-3_0.2",
+          "796_l_1_c_0_1_2-0_0.81-1_0.34-2_0.35-3_0.06",
+          "797_l_1_c_0_1_3-0_0.07-1_0.32-2_0.43-3_0.35",
+          "798_l_1_c_0_1_2-0_0.3-1_1.08-2_0.46-3_0.32",
+          "799_l_1_c_0_1_3-0_0.12-1_0.12-2_1.17-3_0.33",
+          "800_l_1_c_0_1_2-0_0.14-1_0.84-2_0.15-3_0.74",
+          "801_l_1_c_0_1_3-0_0.7-1_0.21-2_0.9-3_0.5",
+          "802_l_1_c_0_1_2-0_0.36-1_0.22-2_0.48-3_1.13",
+          "803_l_1_c_0_1_3-0_0.35-1_0.28-2_0.4-3_0.12",
+          "804_l_1_c_0_1_2-0_0.63-1_0.27-2_0.08-3_0.34",
+          "805_l_1_c_0_1_3-0_0.43-1_0.53-2_1.43-3_0.52",
+          "806_l_1_c_0_1_2-0_0.23-1_0.3-2_0.21-3_0.24",
+          "807_l_1_c_0_1_3-0_0.33-1_0.93-2_0.25-3_0.51",
+          "808_l_1_c_0_1_2-0_0.21-1_1.44-2_0.65-3_1.33",
+          "809_l_1_c_0_1_3-0_0.83-1_0.64-2_0.92-3_0.06",
+          "810_l_1_c_0_1_2-0_0.46-1_0.22-2_0.2-3_1.21",
+          "811_l_1_c_0_1_3-0_0.83-1_0.15-2_0.21-3_0.01",
+          "812_l_1_c_0_1_2-0_0.22-1_0.02-2_0.35-3_0.22",
+          "813_l_1_c_0_1_3-0_0.42-1_0.47-2_1.47-3_0.2",
+          "814_l_1_c_0_1_2-0_0.52-1_0.8-2_0.06-3_0.94",
+          "815_l_1_c_0_1_3-0_0.66-1_0.52-2_1.92-3_0.36",
+          "816_l_1_c_0_1_2-0_0.05-1_0.11-2_0.11-3_0.56",
+          "817_l_1_c_0_1_3-0_0.51-1_0.21-2_0.62-3_0.26",
+          "818_l_1_c_0_1_2-0_1.26-1_0.53-2_0.01-3_0.96",
+          "819_l_1_c_0_1_3-0_0.19-1_0.09-2_0.2-3_0.48",
+          "820_l_1_c_0_1_2-0_0.36-1_0.6-2_0.07-3_0.15",
+          "821_l_1_c_0_1_3-0_0.3-1_0.02-2_0.79-3_0.89",
+          "822_l_1_c_0_1_2-0_0.42-1_0.06-2_0.16-3_0.73",
+          "823_l_1_c_0_1_3-0_0.19-1_0.49-2_0.69-3_0.11",
+          "824_l_1_c_0_2_3-0_0.62-1_0.28-2_0.21-3_0.18",
+          "825_l_1_c_0_1_2-0_0.35-1_0.27-2_0.15-3_0.27",
+          "826_l_1_c_0_1_3-0_0.23-1_0.16-2_0.63-3_0.15",
+          "827_l_1_c_0_2_3-0_0.25-1_0.14-2_0.18-3_0.58",
+          "828_l_1_c_0_1_2-0_0.57-1_0.52-2_0.42-3_0.12",
+          "829_l_1_c_0_1_3-0_0.1-1_0.27-2_1.12-3_0.1",
+          "830_l_1_c_0_2_3-0_0.61-1_0.9-2_0.15-3_0.29",
+          "831_l_1_c_0_1_2-0_0.61-1_0.04-2_0.36-3_0.22",
+          "832_l_1_c_0_1_3-0_1.27-1_0.31-2_1.03-3_0.09",
+          "833_l_1_c_0_2_3-0_0.76-1_0.43-2_0.01-3_0.29",
+          "834_l_1_c_0_1_2-0_0.52-1_0.2-2_0.54-3_0.82",
+          "835_l_1_c_0_1_3-0_0.36-1_0.45-2_0.61-3_0.3",
+          "836_l_1_c_0_2_3-0_0.99-1_0.3-2_0.53-3_0.02",
+          "837_l_1_c_0_1_2-0_0.59-1_0.24-2_0.57-3_0.18",
+          "838_l_1_c_0_1_3-0_0.85-1_0.53-2_0.3-3_0.26",
+          "839_l_1_c_0_2_3-0_0.9-1_0.05-2_0.13-3_0.88",
+          "840_l_1_c_0_1_2-0_0.14-1_0.16-2_0.08-3_0.68",
+          "841_l_1_c_0_1_3-0_0.31-1_0.24-2_1.52-3_0.35",
+          "842_l_1_c_0_2_3-0_0.4-1_1.41-2_0.72-3_1.07",
+          "843_l_1_c_0_1_2-0_0.96-1_0.84-2_0.1-3_0.87",
+          "844_l_1_c_0_1_3-0_0.88-1_0.2-2_1.28-3_0.15",
+          "845_l_1_c_0_2_3-0_0.43-1_1.87-2_0.16-3_0.17",
+          "846_l_1_c_0_1_2-0_0.22-1_0.19-2_0.75-3_0.17",
+          "847_l_1_c_0_1_3-0_1.21-1_0.1-2_0.32-3_0.01",
+          "848_l_1_c_0_2_3-0_0.26-1_0.66-2_0.73-3_0.23",
+          "849_l_1_c_0_1_2-0_0.17-1_0.31-2_0.13-3_0.58",
+          "850_l_1_c_0_1_3-0_0.58-1_0.15-2_0.31-3_0.26",
+          "851_l_1_c_0_2_3-0_0.59-1_0.13-2_0.36-3_0.03",
+          "852_l_1_c_0_1_2-0_1.06-1_0.07-2_0.94-3_0.2",
+          "853_l_1_c_0_1_3-0_1.51-1_0.13-2_0.99-3_0.51",
+          "854_l_1_c_0_2_3-0_0.38-1_1.16-2_0.56-3_0.29",
+          "855_l_1_c_0_1_2-0_0.53-1_0.05-2_0.38-3_0.8",
+          "856_l_1_c_0_1_3-0_0.38-1_0.27-2_1.44-3_0.03",
+          "857_l_1_c_0_2_3-0_0.11-1_0.65-2_0.2-3_0.47",
+          "858_l_1_c_0_1_2-0_0.47-1_0.97-2_0.49-3_0.53",
+          "859_l_1_c_0_1_3-0_0.89-1_0.57-2_0.07-3_0.05",
+          "860_l_1_c_0_2_3-0_0.05-1_0.16-2_0.55-3_0.21",
+          "861_l_1_c_0_1_2-0_0.38-1_1.12-2_0.13-3_1.38",
+          "862_l_1_c_0_1_3-0_0.57-1_0.05-2_0.32-3_0.05",
+          "863_l_1_c_0_2_3-0_0.07-1_0.65-2_0.07-3_0.8",
+          "864_l_1_c_0_1_2-0_0.04-1_0.28-2_0.06-3_0.15",
+          "865_l_1_c_0_1_3-0_0.92-1_0.1-2_1.11-3_0.38",
+          "866_l_1_c_0_2_3-0_0.43-1_0.72-2_1.03-3_0.27",
+          "867_l_1_c_0_1_2-0_0.06-1_0.73-2_0.06-3_0.66",
+          "868_l_1_c_0_1_3-0_0.12-1_0.82-2_0.63-3_0.31",
+          "869_l_1_c_0_2_3-0_0.36-1_1.04-2_0.37-3_0.66",
+          "870_l_1_c_0-0_0.03-1_0.33-2_0.46-3_0.62",
+          "871_l_1_c_0-0_0.09-1_0.63-2_1.16-3_0.45",
+          "872_l_1_c_0-0_0.37-1_0.57-2_0.17-3_1.43",
+          "873_l_1_c_0-0_1.19-1_0.53-2_0.32-3_0.46",
+          "874_l_1_c_0-0_0.76-1_0.53-2_0.03-3_0.09",
+          "875_l_1_c_0-0_0.29-1_1.33-2_0.1-3_0.3",
+          "876_l_1_c_0-0_0.1-1_0.95-2_0.14-3_0.62",
+          "877_l_1_c_0-0_0.36-1_0.37-2_0.97-3_0.06",
+          "878_l_1_c_0-0_0.07-1_0.33-2_0.31-3_0.03",
+          "879_l_1_c_0-0_0.9-1_0.6-2_0.03-3_1.68",
+          "880_l_1_c_0-0_0.18-1_0.95-2_0.59-3_0.52",
+          "881_l_1_c_0-0_0.05-1_0.57-2_1.29-3_0.95",
+          "882_l_1_c_0-0_0.82-1_0.43-2_1.01-3_0.78",
+          "883_l_1_c_0-0_0.42-1_1.29-2_0.89-3_0.32",
+          "884_l_1_c_0-0_2.0-1_1.0-2_0.85-3_0.69",
+          "885_l_1_c_0-0_1.55-1_0.63-2_0.76-3_0.87",
+          "886_l_1_c_0-0_0.31-1_0.91-2_0.47-3_0.23",
+          "887_l_1_c_0-0_0.13-1_0.5-2_1.0-3_0.3",
+          "888_l_1_c_0-0_0.03-1_0.56-2_1.39-3_1.5",
+          "889_l_1_r-0_1.79-1_1.04-2_2.31-3_1.12",
+          "890_l_1_r-0_0.48-1_0.22-2_1.16-3_0.42",
+          "891_l_1_r-0_0.52-1_1.45-2_0.4-3_1.57",
+          "892_l_1_r-0_1.43-1_0.9-2_0.12-3_0.96",
+          "893_l_1_r-0_1.01-1_0.45-2_0.75-3_0.54",
+          "894_l_1_r-0_0.11-1_1.13-2_0.63-3_1.41",
+          "895_l_1_r-0_0.15-1_1.15-2_0.8-3_0.62",
+          "896_l_1_r-0_0.48-1_0.01-2_0.18-3_0.65",
+          "897_l_1_r-0_0.35-1_0.6-2_0.27-3_0.81",
+          "898_l_1_r-0_1.97-1_0.74-2_0.72-3_0.92",
+          "899_l_1_r-0_0.14-1_0.89-2_0.12-3_0.34",
+          "900_l_1_r-0_0.13-1_0.88-2_0.32-3_0.81",
+          "901_l_1_r-0_0.64-1_2.15-2_0.13-3_1.61",
+          "902_l_1_r-0_0.63-1_0.27-2_0.33-3_0.48",
+          "903_l_1_r-0_0.19-1_0.54-2_0.64-3_0.69",
+          "904_l_1_r-0_0.33-1_0.01-2_0.16-3_0.36",
+          "905_l_1_r-0_1.22-1_0.76-2_0.4-3_0.59",
+          "906_l_1_r-0_1.22-1_0.04-2_1.8-3_0.57",
+          "907_l_1_r-0_0.25-1_0.66-2_1.52-3_0.47",
+          "908_l_1_r-0_0.21-1_0.34-2_0.01-3_1.16",
+          "909_l_1_r-0_0.75-1_2.12-2_0.53-3_1.03",
+          "910_l_1_r-0_1.44-1_0.64-2_1.38-3_0.05",
+          "911_l_1_r-0_0.47-1_1.33-2_0.07-3_1.21",
+          "912_l_1_r-0_0.06-1_0.54-2_1.27-3_0.12",
+          "913_l_1_r-0_2.01-1_0.78-2_1.94-3_0.36",
+          "914_l_1_r-0_0.22-1_0.38-2_1.33-3_0.27",
+          "915_l_1_r-0_2.23-1_0.92-2_0.71-3_0.12",
+          "916_l_1_r-0_0.08-1_1.36-2_0.44-3_0.55",
+          "917_l_1_r-0_0.09-1_0.15-2_0.19-3_0.45",
+          "918_l_1_r-0_2.43-1_0.47-2_1.1-3_0.35",
+          "919_l_1_r-0_1.02-1_0.45-2_0.72-3_1.48",
+          "920_l_1_r-0_0.73-1_0.84-2_1.02-3_0.29",
+          "921_l_1_r-0_0.08-1_1.02-2_0.62-3_0.65",
+          "922_l_1_r-0_0.74-1_0.64-2_0.12-3_0.12",
+          "923_l_1_r-0_1.13-1_0.11-2_0.8-3_0.32",
+          "924_l_1_r-0_0.25-1_1.33-2_0.02-3_0.23",
+          "925_l_1_r-0_1.11-1_0.04-2_1.78-3_0.77",
+          "926_l_1_r-0_1.35-1_0.1-2_0.48-3_1.26",
+          "927_l_1_r-0_0.36-1_0.17-2_0.89-3_2.13",
+          "928_l_1_r-0_0.96-1_0.31-2_1.53-3_0.81",
+          "929_l_1_r-0_0.3-1_0.37-2_1.39-3_0.23",
+          "930_l_1_r-0_0.45-1_0.26-2_0.87-3_0.03",
+          "931_l_1_r-0_0.16-1_0.18-2_0.87-3_0.51",
+          "932_l_1_r-0_0.21-1_0.21-2_2.18-3_0.53",
+          "933_l_1_r-0_0.43-1_2.25-2_1.26-3_0.15",
+          "934_l_1_r-0_1.5-1_0.25-2_0.97-3_0.37",
+          "935_l_1_r-0_0.47-1_2.16-2_0.63-3_0.82",
+          "936_l_1_r-0_0.93-1_0.16-2_0.44-3_1.47",
+          "937_l_1_r-0_0.05-1_1.74-2_0.93-3_0.87",
+          "938_l_1_r-0_0.29-1_1.08-2_0.0-3_0.99",
+          "939_l_1_r-0_0.01-1_0.77-2_0.21-3_0.61",
+          "940_l_1_r-0_0.45-1_0.28-2_0.63-3_0.67",
+          "941_l_1_r-0_0.41-1_0.33-2_0.37-3_1.01",
+          "942_l_1_r-0_0.4-1_0.93-2_0.7-3_1.77",
+          "943_l_1_r-0_2.44-1_0.81-2_0.38-3_0.46",
+          "944_l_1_r-0_1.82-1_0.75-2_1.24-3_0.04",
+          "945_l_1_r-0_0.52-1_0.26-2_0.21-3_0.69",
+          "946_l_1_r-0_0.13-1_0.29-2_0.53-3_0.75",
+          "947_l_1_r-0_1.02-1_2.23-2_1.29-3_0.15",
+          "948_l_1_r-0_0.07-1_1.36-2_0.36-3_1.46",
+          "949_l_1_r-0_2.1-1_1.46-2_1.33-3_0.9",
+          "950_l_1_r-0_0.08-1_0.68-2_1.98-3_0.33",
+          "951_l_1_r-0_0.5-1_0.06-2_1.56-3_0.08",
+          "952_l_1_r-0_0.35-1_1.08-2_0.1-3_0.54",
+          "953_l_1_r-0_0.35-1_1.03-2_0.61-3_0.27",
+          "954_l_1_r-0_1.67-1_1.02-2_0.04-3_0.6",
+          "955_l_1_r-0_0.31-1_0.41-2_0.23-3_0.29",
+          "956_l_1_r-0_1.41-1_1.27-2_0.98-3_0.6",
+          "957_l_1_r-0_0.02-1_0.5-2_0.99-3_0.71",
+          "958_l_1_r-0_0.19-1_0.61-2_0.69-3_0.58",
+          "959_l_1_r-0_0.32-1_0.88-2_0.57-3_0.76",
+          "960_l_1_r-0_0.67-1_0.98-2_0.26-3_0.41",
+          "961_l_1_r-0_0.77-1_0.91-2_0.08-3_1.57",
+          "962_l_1_r-0_2.06-1_0.03-2_0.25-3_0.96",
+          "963_l_1_r-0_0.12-1_0.95-2_1.74-3_0.99",
+          "964_l_1_r-0_1.31-1_0.68-2_1.61-3_1.27",
+          "965_l_1_r-0_1.59-1_0.81-2_0.98-3_0.51",
+          "966_l_1_r-0_0.07-1_1.87-2_1.96-3_0.74",
+          "967_l_1_r-0_0.83-1_0.18-2_1.52-3_0.83",
+          "968_l_1_r-0_0.75-1_0.08-2_0.76-3_0.21",
+          "969_l_1_r-0_0.82-1_0.65-2_0.11-3_1.92",
+          "970_l_1_r-0_0.67-1_0.22-2_1.48-3_0.74",
+          "971_l_1_r-0_1.31-1_0.79-2_2.08-3_0.71",
+          "972_l_1_r-0_0.83-1_1.5-2_0.69-3_0.76",
+          "973_l_1_r-0_0.85-1_0.68-2_0.5-3_0.88",
+          "974_l_1_r-0_0.72-1_1.06-2_0.31-3_1.36",
+          "975_l_1_r-0_0.62-1_0.83-2_1.62-3_0.53",
+          "976_l_1_r-0_0.01-1_0.75-2_0.23-3_0.48",
+          "977_l_1_r-0_0.96-1_0.08-2_0.27-3_0.35",
+          "978_l_1_r-0_0.94-1_0.44-2_0.77-3_0.76",
+          "979_l_1_r-0_1.19-1_1.42-2_0.96-3_0.43",
+          "980_l_1_r-0_0.05-1_1.82-2_0.04-3_0.09",
+          "981_l_1_r-0_0.87-1_0.81-2_1.63-3_0.1",
+          "982_l_1_r-0_0.44-1_0.69-2_0.02-3_0.32",
+          "983_l_1_r-0_1.11-1_0.62-2_0.31-3_0.41",
+          "984_l_1_r-0_1.52-1_0.22-2_0.9-3_1.07",
+          "985_l_1_r-0_0.24-1_0.12-2_1.07-3_0.32",
+          "986_l_1_r-0_0.38-1_0.56-2_1.33-3_0.41",
+          "987_l_1_r-0_1.43-1_2.07-2_1.09-3_0.59",
+          "988_l_1_r-0_0.41-1_0.8-2_2.08-3_1.3",
+          "989_l_1_r-0_0.25-1_0.46-2_1.33-3_1.29",
+          "990_l_1_r-0_0.54-1_1.09-2_0.05-3_0.26",
+          "991_l_1_r-0_0.53-1_0.53-2_1.18-3_2.26",
+          "992_l_1_r-0_0.03-1_1.39-2_0.7-3_0.58",
+          "993_l_1_r-0_0.01-1_1.3-2_0.54-3_0.56",
+          "994_l_1_r-0_0.85-1_0.24-2_0.77-3_1.77",
+          "995_l_1_r-0_1.54-1_0.04-2_1.13-3_0.78",
+          "996_l_1_r-0_0.97-1_0.61-2_0.25-3_0.65",
+          "997_l_1_r-0_0.53-1_0.17-2_0.56-3_0.62",
+          "998_l_1_r-0_1.47-1_0.14-2_0.31-3_1.22",
+          "999_l_1_r-0_0.33-1_0.23-2_0.31-3_0.99",
+          "1000_l_1_r-0_0.91-1_0.63-2_1.11-3_0.75",
+          "1001_l_1_r-0_0.09-1_0.46-2_0.79-3_0.02",
+          "1002_l_1_r-0_0.14-1_0.82-2_0.0-3_0.53",
+          "1003_l_1_r-0_1.1-1_0.37-2_0.35-3_0.02",
+          "1004_l_1_r-0_0.66-1_0.24-2_0.81-3_1.06",
+          "1005_l_1_r-0_0.84-1_0.74-2_0.37-3_0.42",
+          "1006_l_1_r-0_0.59-1_1.11-2_0.54-3_1.07",
+          "1007_l_1_r-0_1.36-1_1.25-2_0.15-3_0.01",
+          "1008_l_1_r-0_0.56-1_0.01-2_0.52-3_0.14",
+          "1009_l_1_r-0_0.09-1_0.78-2_1.1-3_0.8",
+          "1010_l_1_r-0_1.51-1_1.16-2_0.52-3_0.29",
+          "1011_l_1_r-0_0.55-1_1.54-2_0.32-3_0.2",
+          "1012_l_1_r-0_1.27-1_0.69-2_0.54-3_0.3",
+          "1013_l_1_r-0_1.35-1_0.52-2_0.65-3_1.54",
+          "1014_l_1_r-0_0.87-1_0.97-2_0.72-3_0.77",
+          "1015_l_1_r-0_2.2-1_0.59-2_0.64-3_0.01",
+          "1016_l_1_r-0_0.16-1_0.16-2_0.23-3_0.72",
+          "1017_l_1_r-0_0.4-1_0.71-2_0.15-3_0.08",
+          "1018_l_1_r-0_0.02-1_1.12-2_0.18-3_0.63",
+          "1019_l_1_r-0_0.12-1_0.89-2_0.64-3_0.61",
+          "1020_l_1_r-0_1.03-1_0.18-2_0.25-3_0.11",
+          "1021_l_1_r-0_0.13-1_0.73-2_0.24-3_0.35",
+          "1022_l_1_r-0_0.42-1_0.61-2_0.29-3_0.48",
+          "1023_l_1_r-0_0.47-1_1.26-2_0.68-3_0.44",
+          "1024_l_1_r-0_1.42-1_0.41-2_1.4-3_0.04",
+          "1025_l_1_r-0_2.4-1_0.97-2_1.43-3_1.07",
+          "1026_l_1_r-0_0.92-1_0.26-2_0.52-3_0.77",
+          "1027_l_1_r-0_1.67-1_0.77-2_0.51-3_1.28",
+          "1028_l_1_r-0_1.22-1_0.33-2_0.1-3_0.46",
+          "1029_l_1_r-0_0.62-1_0.3-2_0.33-3_0.58",
+          "1030_l_1_r-0_1.07-1_0.67-2_1.03-3_0.74",
+          "1031_l_1_r-0_0.45-1_0.93-2_1.29-3_1.13",
+          "1032_l_1_r-0_0.27-1_0.19-2_0.87-3_1.24",
+          "1033_l_1_r-0_0.97-1_0.51-2_0.08-3_0.54",
+          "1034_l_1_r-0_1.2-1_0.23-2_0.71-3_0.69",
+          "1035_l_1_r-0_1.97-1_1.42-2_0.96-3_0.34",
+          "1036_l_1_r-0_0.37-1_1.93-2_1.01-3_1.29",
+          "1037_l_1_r-0_0.12-1_1.07-2_0.06-3_0.68",
+          "1038_l_1_r-0_1.24-1_1.07-2_1.54-3_0.04",
+          "1039_l_1_r-0_0.49-1_0.46-2_0.42-3_1.48",
+          "1040_l_1_r-0_0.24-1_0.89-2_0.73-3_0.42",
+          "1041_l_1_r-0_1.39-1_1.99-2_0.7-3_1.71",
+          "1042_l_1_r-0_0.59-1_0.68-2_0.48-3_0.75",
+          "1043_l_1_r-0_0.24-1_0.39-2_0.52-3_1.52",
+          "1044_l_1_r-0_0.89-1_0.12-2_0.84-3_0.2",
+          "1045_l_1_r-0_0.13-1_0.26-2_1.11-3_0.51",
+          "1046_l_1_r-0_0.5-1_0.29-2_0.14-3_1.05",
+          "1047_l_1_r-0_0.35-1_0.93-2_0.12-3_0.03",
+          "1048_l_1_r-0_1.73-1_0.15-2_1.15-3_1.1",
+          "1049_l_1_r-0_2.03-1_0.44-2_1.14-3_0.14",
+          "1050_l_1_r-0_0.4-1_1.21-2_0.99-3_0.83",
+          "1051_l_1_r-0_0.38-1_0.01-2_0.12-3_0.49",
+          "1052_l_1_r-0_0.22-1_0.94-2_0.48-3_0.62",
+          "1053_l_1_r-0_0.37-1_0.02-2_1.04-3_0.79",
+          "1054_l_1_r-0_0.15-1_1.31-2_1.87-3_0.79",
+          "1055_l_1_r-0_0.56-1_0.62-2_0.55-3_0.17",
+          "1056_l_1_r-0_1.2-1_0.74-2_0.06-3_0.02",
+          "1057_l_1_r-0_0.05-1_0.58-2_1.17-3_0.79",
+          "1058_l_1_r-0_0.6-1_1.48-2_1.64-3_0.89",
+          "1059_l_1_r-0_1.08-1_0.19-2_1.27-3_0.42",
+          "1060_l_1_r-0_1.03-1_0.25-2_0.69-3_0.8",
+          "1061_l_1_r-0_0.07-1_0.97-2_0.35-3_0.07",
+          "1062_l_1_r-0_0.93-1_0.53-2_0.74-3_0.33",
+          "1063_l_1_r-0_0.49-1_0.4-2_0.26-3_0.63",
+          "1064_l_1_r-0_0.72-1_1.16-2_0.56-3_0.77",
+          "1065_l_1_r-0_0.88-1_0.19-2_0.39-3_0.98",
+          "1066_l_1_r-0_2.57-1_0.14-2_1.09-3_0.25",
+          "1067_l_1_r-0_0.63-1_0.47-2_1.06-3_0.19",
+          "1068_l_1_r-0_0.37-1_0.32-2_0.01-3_1.13",
+          "1069_l_1_r-0_0.09-1_1.22-2_1.22-3_0.76",
+          "1070_l_1_r-0_0.35-1_1.21-2_1.48-3_0.55",
+          "1071_l_1_r-0_0.88-1_0.14-2_1.47-3_1.13",
+          "1072_l_1_r-0_3.07-1_0.16-2_0.47-3_0.15",
+          "1073_l_1_r-0_0.5-1_1.1-2_0.23-3_0.29",
+          "1074_l_1_r-0_0.77-1_0.51-2_0.53-3_0.17",
+          "1075_l_1_r-0_1.08-1_0.32-2_1.23-3_1.5",
+          "1076_l_1_r-0_0.33-1_0.55-2_0.58-3_0.67",
+          "1077_l_1_r-0_0.16-1_0.8-2_1.67-3_0.91",
+          "1078_l_1_r-0_2.15-1_1.31-2_0.36-3_0.51",
+          "1079_l_1_r-0_0.3-1_0.61-2_1.06-3_0.34",
+          "1080_l_1_r-0_1.72-1_0.33-2_0.23-3_1.05",
+          "1081_l_1_r-0_0.12-1_1.41-2_0.67-3_0.1",
+          "1082_l_1_r-0_0.57-1_1.19-2_0.33-3_0.41",
+          "1083_l_1_r-0_0.65-1_1.06-2_0.2-3_0.85",
+          "1084_l_1_r-0_0.18-1_2.04-2_0.08-3_0.86",
+          "1085_l_1_r-0_0.79-1_0.35-2_0.49-3_1.17",
+          "1086_l_1_r-0_0.28-1_0.1-2_1.0-3_1.26",
+          "1087_l_1_r-0_0.63-1_0.44-2_1.52-3_0.92",
+          "1088_l_1_r-0_1.15-1_0.63-2_0.29-3_0.71",
+          "1089_l_1_r-0_1.52-1_0.7-2_0.8-3_0.05",
+          "1090_l_1_r-0_0.02-1_0.89-2_0.82-3_1.08",
+          "1091_l_1_r-0_0.55-1_1.35-2_0.89-3_0.68",
+          "1092_l_1_r-0_0.39-1_1.82-2_0.98-3_0.48",
+          "1093_l_1_r-0_1.37-1_0.38-2_0.74-3_0.14",
+          "1094_l_1_r-0_2.07-1_0.92-2_2.11-3_0.23",
+          "1095_l_1_r-0_0.54-1_0.61-2_0.96-3_0.4",
+          "1096_l_1_r-0_1.42-1_0.71-2_0.64-3_0.47",
+          "1097_l_1_r-0_0.58-1_1.12-2_1.37-3_0.45",
+          "1098_l_1_r-0_0.32-1_1.12-2_1.53-3_0.26",
+          "1099_l_1_r-0_0.76-1_0.04-2_0.93-3_0.13",
+          "1100_l_1_r-0_0.62-1_1.51-2_0.97-3_0.42",
+          "1101_l_1_r-0_0.8-1_0.46-2_1.69-3_0.44",
+          "1102_l_1_r-0_1.53-1_0.18-2_0.7-3_1.13",
+          "1103_l_1_r-0_0.1-1_0.49-2_1.1-3_1.03",
+          "1104_l_1_r-0_0.78-1_1.05-2_0.4-3_0.49",
+          "1105_l_1_r-0_0.23-1_0.08-2_1.02-3_1.41",
+          "1106_l_1_r-0_0.44-1_0.17-2_1.13-3_1.1",
+          "1107_l_1_r-0_2.27-1_0.68-2_0.25-3_0.63",
+          "1108_l_1_r-0_1.38-1_1.29-2_0.27-3_0.21",
+          "1109_l_1_r-0_1.06-1_0.76-2_0.46-3_0.34",
+          "1110_l_1_r-0_1.35-1_1.23-2_1.32-3_0.41",
+          "1111_l_1_r-0_0.35-1_0.75-2_1.02-3_0.88",
+          "1112_l_1_r-0_1.81-1_1.09-2_1.59-3_0.01",
+          "1113_l_1_r-0_0.78-1_1.01-2_0.02-3_0.22",
+          "1114_l_1_r-0_0.69-1_0.87-2_0.12-3_0.27",
+          "1115_l_1_r-0_0.08-1_1.37-2_0.67-3_0.84",
+          "1116_l_1_r-0_1.14-1_0.02-2_0.13-3_0.6",
+          "1117_l_1_r-0_0.16-1_0.69-2_0.71-3_0.58",
+          "1118_l_1_r-0_0.96-1_1.0-2_1.09-3_0.05",
+          "1119_l_1_r-0_0.45-1_0.57-2_0.54-3_0.09",
+          "1120_l_1_r-0_0.58-1_0.11-2_0.19-3_0.87",
+          "1121_l_1_r-0_0.03-1_0.36-2_0.19-3_0.83",
+          "1122_l_1_r-0_0.65-1_1.66-2_2.2-3_0.0",
+          "1123_l_1_r-0_0.26-1_1.26-2_0.87-3_0.76",
+          "1124_l_1_r-0_1.5-1_0.77-2_0.99-3_0.94",
+          "1125_l_1_r-0_0.88-1_0.39-2_0.33-3_0.2",
+          "1126_l_1_r-0_0.37-1_1.21-2_0.51-3_0.66",
+          "1127_l_1_r-0_0.88-1_0.71-2_1.07-3_0.79",
+          "1128_l_1_r-0_0.71-1_0.52-2_0.76-3_0.33",
+          "1129_l_1_r-0_0.89-1_1.92-2_0.02-3_0.76",
+          "1130_l_1_r-0_0.22-1_0.32-2_0.3-3_0.57",
+          "1131_l_1_r-0_0.95-1_0.82-2_0.21-3_0.59",
+          "1132_l_1_r-0_0.45-1_1.11-2_0.19-3_0.1",
+          "1133_l_1_r-0_0.95-1_0.78-2_0.38-3_0.13",
+          "1134_l_1_r-0_0.21-1_1.09-2_0.01-3_0.32",
+          "1135_l_1_r-0_0.84-1_0.91-2_0.06-3_0.77",
+          "1136_l_1_r-0_0.37-1_0.54-2_0.01-3_1.35",
+          "1137_l_1_r-0_1.2-1_1.74-2_0.79-3_0.25",
+          "1138_l_1_r-0_1.66-1_1.03-2_0.1-3_1.05",
+          "1139_l_1_r-0_1.41-1_1.11-2_0.44-3_0.4",
+          "1140_l_1_r-0_0.29-1_1.39-2_0.02-3_0.55",
+          "1141_l_1_r-0_0.44-1_1.02-2_0.31-3_1.31",
+          "1142_l_1_r-0_2.17-1_1.81-2_0.83-3_0.51",
+          "1143_l_1_r-0_0.26-1_0.56-2_0.95-3_0.22",
+          "1144_l_1_r-0_1.16-1_0.32-2_1.22-3_0.74",
+          "1145_l_1_r-0_0.65-1_0.45-2_0.56-3_0.92",
+          "1146_l_1_r-0_0.04-1_1.22-2_0.79-3_0.66",
+          "1147_l_1_r-0_1.26-1_0.53-2_0.07-3_1.74",
+          "1148_l_1_r-0_1.1-1_0.06-2_0.93-3_2.17",
+          "1149_l_1_r-0_0.98-1_0.36-2_1.33-3_0.14",
+          "1150_l_1_r-0_1.8-1_0.65-2_1.19-3_0.92",
+          "1151_l_1_r-0_0.52-1_0.73-2_0.16-3_0.18",
+          "1152_l_1_r-0_1.06-1_0.87-2_0.82-3_0.13",
+          "1153_l_1_r-0_0.81-1_0.26-2_0.85-3_0.71",
+          "1154_l_1_r-0_2.15-1_0.86-2_0.38-3_0.28",
+          "1155_l_1_r-0_0.28-1_0.79-2_0.03-3_0.3",
+          "1156_l_1_r-0_2.02-1_0.19-2_1.96-3_0.37",
+          "1157_l_1_r-0_1.05-1_0.67-2_0.38-3_1.43",
+          "1158_l_1_r-0_0.7-1_0.37-2_0.89-3_0.95",
+          "1159_l_1_r-0_2.01-1_0.14-2_0.03-3_0.34",
+          "1160_l_1_r-0_0.64-1_0.35-2_0.77-3_0.69",
+          "1161_l_1_r-0_1.26-1_1.74-2_0.46-3_0.56",
+          "1162_l_1_r-0_1.23-1_0.62-2_0.34-3_0.63",
+          "1163_l_1_r-0_0.5-1_1.21-2_1.02-3_0.29",
+          "1164_l_1_r-0_1.39-1_0.34-2_1.01-3_0.63",
+          "1165_l_1_r-0_0.6-1_0.86-2_0.27-3_0.51",
+          "1166_l_1_r-0_1.05-1_1.13-2_0.9-3_1.63",
+          "1167_l_1_r-0_0.22-1_0.94-2_1.08-3_0.41",
+          "1168_l_1_r-0_0.4-1_1.6-2_0.87-3_0.97",
+          "1169_l_1_r-0_0.42-1_0.72-2_0.94-3_0.98",
+          "1170_l_1_r-0_0.89-1_2.19-2_0.72-3_1.62",
+          "1171_l_1_r-0_0.23-1_0.57-2_0.6-3_0.52",
+          "1172_l_1_r-0_0.78-1_1.55-2_0.34-3_0.43",
+          "1173_l_1_r-0_0.13-1_0.15-2_0.46-3_0.11",
+          "1174_l_1_r-0_0.35-1_0.11-2_0.77-3_1.18",
+          "1175_l_1_r-0_0.16-1_1.01-2_1.24-3_0.34",
+          "1176_l_1_r-0_1.24-1_0.3-2_0.67-3_0.73",
+          "1177_l_1_r-0_0.92-1_0.89-2_1.07-3_0.28",
+          "1178_l_1_r-0_0.71-1_0.05-2_1.05-3_1.15",
+          "1179_l_1_r-0_0.3-1_0.14-2_0.14-3_0.49",
+          "1180_l_1_r-0_1.08-1_0.86-2_0.57-3_0.85",
+          "1181_l_1_r-0_0.45-1_0.28-2_0.58-3_0.27",
+          "1182_l_1_r-0_1.13-1_1.5-2_0.79-3_0.54",
+          "1183_l_1_r-0_1.91-1_0.88-2_0.99-3_0.84",
+          "1184_l_1_r-0_1.44-1_1.06-2_1.31-3_0.66",
+          "1185_l_1_r-0_0.1-1_0.4-2_1.39-3_0.96",
+          "1186_l_1_r-0_0.5-1_0.15-2_1.29-3_1.07",
+          "1187_l_1_r-0_0.33-1_0.02-2_1.04-3_0.7",
+          "1188_l_1_r-0_0.81-1_1.33-2_0.13-3_1.6",
+          "1189_l_1_r-0_0.59-1_0.32-2_1.39-3_0.24",
+          "1190_l_1_r-0_0.65-1_1.79-2_0.4-3_0.57",
+          "1191_l_1_r-0_1.22-1_1.18-2_0.51-3_0.58",
+          "1192_l_1_r-0_0.72-1_1.14-2_0.33-3_1.25",
+          "1193_l_1_r-0_0.03-1_1.58-2_0.1-3_0.3",
+          "1194_l_1_r-0_0.2-1_0.4-2_0.26-3_1.03",
+          "1195_l_1_r-0_1.79-1_0.59-2_0.52-3_1.34",
+          "1196_l_1_r-0_1.67-1_1.46-2_0.53-3_0.16",
+          "1197_l_1_r-0_0.02-1_0.94-2_0.76-3_0.87",
+          "1198_l_1_r-0_1.07-1_0.57-2_0.64-3_0.16",
+          "1199_l_1_r-0_1.07-1_0.58-2_0.81-3_0.58",
+          "1200_l_1_r-0_0.26-1_0.63-2_0.14-3_0.72",
+          "1201_l_1_r-0_0.08-1_0.26-2_0.5-3_0.31",
+          "1202_l_1_r-0_0.93-1_0.49-2_0.13-3_0.44",
+          "1203_l_1_r-0_0.21-1_0.58-2_0.61-3_0.41",
+          "1204_l_1_r-0_3.37-1_1.09-2_0.92-3_0.33",
+          "1205_l_1_r-0_0.54-1_0.49-2_0.96-3_0.15",
+          "1206_l_1_r-0_0.23-1_0.67-2_0.87-3_0.6",
+          "1207_l_1_r-0_0.3-1_0.43-2_1.25-3_0.36",
+          "1208_l_1_r-0_0.66-1_3.19-2_0.32-3_0.7",
+          "1209_l_1_r-0_0.62-1_0.35-2_1.96-3_1.1",
+          "1210_l_1_r-0_0.55-1_0.67-2_0.89-3_0.23",
+          "1211_l_1_r-0_0.15-1_0.85-2_0.24-3_0.77",
+          "1212_l_1_r-0_1.56-1_0.06-2_0.14-3_0.84",
+          "1213_l_1_r-0_0.09-1_0.15-2_0.25-3_0.08",
+          "1214_l_1_r-0_1.04-1_0.21-2_1.19-3_0.35",
+          "1215_l_1_r-0_1.84-1_0.23-2_0.66-3_0.07",
+          "1216_l_1_r-0_0.62-1_0.92-2_0.94-3_0.13",
+          "1217_l_1_r-0_0.87-1_1.11-2_0.82-3_0.79",
+          "1218_l_1_r-0_0.39-1_0.52-2_2.21-3_0.76",
+          "1219_l_1_r-0_0.03-1_1.26-2_1.07-3_1.47",
+          "1220_l_1_r-0_0.61-1_0.72-2_0.17-3_0.32",
+          "1221_l_1_r-0_0.55-1_2.66-2_0.83-3_0.56",
+          "1222_l_1_r-0_0.28-1_0.8-2_0.09-3_0.78",
+          "1223_l_1_r-0_1.24-1_2.37-2_0.57-3_1.27",
+          "1224_l_1_r-0_1.13-1_0.21-2_0.41-3_0.85",
+          "1225_l_1_r-0_1.09-1_0.5-2_0.66-3_0.28",
+          "1226_l_1_r-0_0.38-1_2.06-2_0.74-3_0.57",
+          "1227_l_1_r-0_0.14-1_2.43-2_0.52-3_0.08",
+          "1228_l_1_r-0_0.86-1_0.59-2_0.49-3_0.77",
+          "1229_l_1_r-0_1.0-1_0.81-2_0.4-3_1.15",
+          "1230_l_1_r-0_0.76-1_0.8-2_0.85-3_1.08",
+          "1231_l_1_r-0_0.46-1_1.36-2_0.74-3_0.92",
+          "1232_l_1_r-0_2.26-1_0.84-2_1.92-3_0.27",
+          "1233_l_1_r-0_0.85-1_0.32-2_0.92-3_0.04",
+          "1234_l_1_r-0_2.44-1_0.04-2_1.19-3_1.09",
+          "1235_l_1_r-0_0.74-1_1.17-2_0.87-3_0.64",
+          "1236_l_1_r-0_0.26-1_0.66-2_1.05-3_1.27",
+          "1237_l_1_r-0_0.46-1_0.11-2_0.07-3_0.55",
+          "1238_l_1_r-0_0.48-1_1.06-2_1.14-3_0.8",
+          "1239_l_1_r-0_0.42-1_0.72-2_0.37-3_0.39",
+          "1240_l_1_r-0_0.11-1_0.78-2_0.95-3_1.31",
+          "1241_l_1_r-0_0.55-1_0.68-2_0.79-3_0.76",
+          "1242_l_1_r-0_0.86-1_1.35-2_0.41-3_0.77",
+          "1243_l_1_r-0_0.5-1_0.64-2_1.26-3_0.66",
+          "1244_l_1_r-0_0.77-1_0.26-2_0.67-3_0.36",
+          "1245_l_1_r-0_0.96-1_0.19-2_0.67-3_0.23",
+          "1246_l_1_r-0_0.56-1_0.77-2_0.75-3_0.6",
+          "1247_l_1_r-0_0.16-1_1.24-2_0.36-3_0.18",
+          "1248_l_1_r-0_0.86-1_0.96-2_0.26-3_1.11",
+          "1249_l_1_r-0_0.87-1_0.95-2_0.12-3_0.57",
+          "1250_l_1_r-0_0.09-1_0.65-2_0.02-3_0.35",
+          "1251_l_1_r-0_0.61-1_0.67-2_0.82-3_1.11",
+          "1252_l_1_r-0_0.02-1_0.57-2_0.98-3_0.38",
+          "1253_l_1_r-0_1.01-1_1.57-2_0.23-3_0.84",
+          "1254_l_1_r-0_0.35-1_0.44-2_0.07-3_0.57",
+          "1255_l_1_r-0_0.48-1_1.12-2_0.15-3_0.45",
+          "1256_l_1_r-0_2.08-1_0.68-2_1.8-3_0.04",
+          "1257_l_1_r-0_0.23-1_1.07-2_1.35-3_0.53",
+          "1258_l_1_r-0_0.1-1_0.53-2_0.92-3_0.63",
+          "1259_l_1_r-0_0.06-1_0.08-2_0.27-3_0.25",
+          "1260_l_1_r-0_2.61-1_0.85-2_0.85-3_0.98",
+          "1261_l_1_r-0_1.38-1_0.35-2_1.36-3_0.2",
+          "1262_l_1_r-0_0.79-1_1.81-2_0.47-3_0.67",
+          "1263_l_1_r-0_0.46-1_0.59-2_1.55-3_0.58",
+          "1264_l_1_r-0_0.46-1_0.85-2_0.08-3_0.02",
+          "1265_l_1_r-0_1.02-1_0.13-2_0.86-3_0.38",
+          "1266_l_1_r-0_1.89-1_0.45-2_0.18-3_1.45",
+          "1267_l_1_r-0_0.56-1_1.14-2_0.4-3_0.43",
+          "1268_l_1_r-0_0.79-1_0.11-2_0.14-3_0.37",
+          "1269_l_1_r-0_1.3-1_0.07-2_0.56-3_0.5",
+          "1270_l_1_r-0_0.59-1_0.94-2_0.48-3_0.83",
+          "1271_l_1_r-0_0.05-1_0.56-2_0.68-3_0.3",
+          "1272_l_1_r-0_0.04-1_1.49-2_0.66-3_1.22",
+          "1273_l_1_r-0_1.34-1_0.06-2_0.12-3_0.92",
+          "1274_l_1_r-0_1.39-1_0.32-2_0.15-3_0.79",
+          "1275_l_1_r-0_1.03-1_1.24-2_1.38-3_0.64",
+          "1276_l_1_r-0_0.66-1_0.25-2_0.02-3_0.6",
+          "1277_l_1_r-0_0.07-1_0.09-2_1.31-3_0.0",
+          "1278_l_1_r-0_0.39-1_0.49-2_0.74-3_0.87",
+          "1279_l_1_r-0_0.52-1_1.0-2_0.1-3_0.76",
+          "1280_l_1_r-0_0.08-1_0.35-2_1.08-3_0.47",
+          "1281_l_1_r-0_0.85-1_0.94-2_0.25-3_0.45",
+          "1282_l_1_r-0_0.16-1_0.56-2_0.54-3_0.74",
+          "1283_l_1_r-0_0.46-1_0.61-2_0.71-3_0.89",
+          "1284_l_1_r-0_1.23-1_0.86-2_1.07-3_0.91",
+          "1285_l_1_r-0_0.01-1_0.36-2_1.54-3_1.27",
+          "1286_l_1_r-0_0.67-1_0.74-2_1.37-3_1.2",
+          "1287_l_1_r-0_0.67-1_1.25-2_0.02-3_0.05",
+          "1288_l_1_r-0_0.75-1_0.25-2_0.76-3_0.41",
+          "1289_l_1_r-0_0.68-1_2.32-2_1.23-3_0.44",
+          "1290_l_1_r-0_0.44-1_0.51-2_1.28-3_0.45",
+          "1291_l_1_r-0_1.11-1_0.27-2_0.03-3_0.64",
+          "1292_l_1_r-0_0.04-1_1.79-2_1.35-3_0.57",
+          "1293_l_1_r-0_0.28-1_0.63-2_1.27-3_1.65",
+          "1294_l_1_r-0_0.06-1_0.15-2_0.88-3_0.55",
+          "1295_l_1_r-0_0.93-1_0.79-2_1.15-3_0.36",
+          "1296_l_1_r-0_1.73-1_0.28-2_0.78-3_1.65",
+          "1297_l_1_r-0_0.53-1_0.35-2_0.76-3_1.05",
+          "1298_l_1_r-0_0.59-1_0.29-2_0.39-3_0.97",
+          "1299_l_1_r-0_0.54-1_1.65-2_0.4-3_0.0",
+          "1300_l_1_r-0_0.65-1_0.21-2_1.18-3_0.17",
+          "1301_l_1_r-0_2.19-1_1.43-2_1.39-3_1.09",
+          "1302_l_1_r-0_1.06-1_0.41-2_0.86-3_1.66",
+          "1303_l_1_r-0_0.13-1_0.24-2_0.42-3_0.51",
+          "1304_l_1_r-0_0.36-1_0.12-2_0.63-3_0.52",
+          "1305_l_1_r-0_0.51-1_1.16-2_0.01-3_0.87",
+          "1306_l_1_r-0_0.43-1_0.36-2_0.01-3_0.66",
+          "1307_l_1_r-0_1.72-1_0.12-2_0.14-3_0.34",
+          "1308_l_1_r-0_1.28-1_1.61-2_1.15-3_1.07",
+          "1309_l_1_r-0_1.33-1_0.66-2_1.14-3_0.82",
+          "1310_l_1_r-0_0.49-1_0.81-2_0.21-3_0.73",
+          "1311_l_1_r-0_0.1-1_0.92-2_0.69-3_0.36",
+          "1312_l_1_r-0_0.05-1_0.68-2_0.97-3_1.42",
+          "1313_l_1_r-0_0.42-1_0.68-2_2.08-3_0.36",
+          "1314_l_1_r-0_0.19-1_1.11-2_0.84-3_0.89",
+          "1315_l_1_r-0_0.13-1_0.64-2_2.02-3_0.41",
+          "1316_l_1_r-0_0.41-1_0.72-2_0.8-3_0.98",
+          "1317_l_1_r-0_1.76-1_0.44-2_0.4-3_0.02",
+          "1318_l_1_r-0_1.07-1_0.37-2_1.02-3_0.37",
+          "1319_l_1_r-0_0.98-1_0.73-2_0.42-3_0.26",
+          "1320_l_1_r-0_1.18-1_1.88-2_0.27-3_0.43",
+          "1321_l_1_r-0_0.14-1_0.24-2_1.64-3_0.17",
+          "1322_l_1_r-0_0.88-1_0.75-2_0.57-3_0.22",
+          "1323_l_1_r-0_0.66-1_0.05-2_0.6-3_0.12",
+          "1324_l_1_r-0_0.19-1_0.08-2_0.46-3_0.11",
+          "1325_l_1_r-0_1.62-1_1.44-2_0.25-3_1.18",
+          "1326_l_1_r-0_1.06-1_0.5-2_0.43-3_0.15",
+          "1327_l_1_r-0_0.44-1_0.55-2_1.16-3_0.51",
+          "1328_l_1_r-0_0.18-1_1.22-2_1.14-3_0.37",
+          "1329_l_1_r-0_0.21-1_0.33-2_0.07-3_0.65",
+          "1330_l_1_r-0_0.34-1_1.61-2_0.45-3_0.03",
+          "1331_l_1_r-0_0.09-1_0.86-2_1.09-3_0.29"
          ],
          "type": "scatter3d",
          "x": [
-          -13.0550882443163,
-          -9.669528155567289,
-          -10.341977661643153,
-          -9.777758098775422,
-          -9.538381004071574,
-          -9.615076018579474,
-          -10.083167621073512,
-          -10.912753662980855,
-          -8.60625512429842,
-          -11.267348544158004,
-          -9.673121177542154,
-          -9.920150913143344,
-          -10.267890558574914,
-          -9.606114588821361,
-          -10.504752008656531,
-          -9.740273899597142,
-          -10.551994195272533,
-          -10.475814920428823,
-          -11.950728511523858,
-          -9.955023863679806,
-          -9.38259840174936,
-          -9.190492562842465,
-          -10.324780613476287,
-          -10.39627506930628,
-          -11.147552674836396,
-          -11.986764457376369,
-          -9.677978182103306,
-          -10.561973006571918,
-          -9.656189472602408,
-          -9.435511703314129,
-          -9.025261998285377,
-          -8.874965658853155,
-          -9.782259768102689,
-          -11.594976593729417,
-          -9.686222975260154,
-          -10.290283191303228,
-          -10.487236249217663,
-          -9.687144871127028,
-          -11.200993671771823,
-          -10.158368642746598,
-          -10.505068144001106,
-          -9.588887094700866,
-          -11.585104112005858,
-          -7.544568015501955,
-          -10.335454620322944,
-          -10.32007554234061,
-          -9.83378596195364,
-          -10.214658640917623,
-          -9.889002541176522,
-          -10.200450546002422,
-          -10.841773170506915,
-          -9.627694850360415,
-          -9.948478462747383,
-          -9.81179341285229,
-          -8.903530501444886,
-          -10.358211809498853,
-          -10.098178221202536,
-          -9.927936387600585,
-          -10.542805944873834,
-          -10.878849124206166,
-          -9.782703133841615,
-          -9.992265907414582,
-          -10.724466265910499,
-          -9.396792408044252,
-          -9.534255951142544,
-          -9.665544178073562,
-          -9.833283576379364,
-          -10.568993598222182,
-          -10.56426675466598,
-          -9.748295280439145,
-          -9.544303545580052,
-          -10.314150785899468,
-          -10.75895010936025,
-          -9.829752674715015,
-          -9.337841412074814,
-          -9.533006377958156,
-          -9.970606454220134,
-          -9.923315784605858,
-          -8.523450059313696,
-          -10.71052445571831,
-          -10.8137594098045,
-          -8.566814517625561,
-          -10.724577808351892,
-          -10.974719854567034,
-          -9.35196219803411,
-          -15.21828817578275,
-          -8.330755827702415,
-          -10.227674980899604,
-          -10.683173291145648,
-          -12.492361706813561,
-          -9.057548737250995,
-          -10.521701786989953,
-          -8.566178574930905,
-          -10.450970106054362,
-          -10.587068086525047,
-          -11.449216401359973,
-          -9.778116916388829,
-          -10.091479286008061,
-          -10.466737989988708,
-          -9.715381466015288,
-          -10.159441184168001,
-          -10.075440584238207,
-          -10.281293108432354,
-          -9.683195854281303,
-          -10.003570365127345,
-          -9.373615781249331,
-          -9.712339773298268,
-          -9.722954105508217,
-          -11.12774168222989,
-          -9.56726105083854,
-          -10.748840094301046,
-          -10.552397939128625,
-          -9.487648716273789,
-          -9.789713296093508,
-          -9.812251693327394,
-          -9.670885762614466,
-          -8.999230828881181,
-          -9.395956431679886,
-          -10.267346334157212,
-          -9.904240113745523,
-          -10.321693934890332,
-          -9.609459565759257,
-          -10.177728037720348,
-          -9.348251998951524,
-          -10.43948946282867,
-          -9.332713753088543,
-          -10.02175681753227,
-          -9.77157655887733,
-          -11.477828284388252,
-          -9.183613457609479,
-          -10.59039159648922,
-          -9.502546192744518,
-          -9.767465928316664,
-          -9.53641750829498,
-          -10.16928158057347,
-          -10.868048742100482,
-          -10.968318060024874,
-          -10.667897314400875,
-          -10.319787503740855,
-          -9.843582855501179,
-          -11.255001482665202,
-          -9.513126973827493,
-          -10.300149617338382,
-          -9.686765405835821,
-          -8.822093138449787,
-          -10.248879320373751,
-          -9.97541036411479,
-          -9.866357359626928,
-          -8.90138492268437,
-          -10.097948791369241,
-          -9.524906975763225,
-          -11.35010461578347,
-          -9.805112848202047,
-          -9.548387783435247,
-          -10.579118190530865,
-          -10.935262094484116,
-          -9.774591209754107,
-          -10.590269756783002,
-          -10.509610879393495,
-          -10.855187590703387,
-          -9.385657373511155,
-          -10.665140959191538,
-          -8.525274426821404,
-          -10.352862678772249,
-          -10.201757919015737,
-          -9.545901507673504,
-          -9.116215831782444,
-          -10.561392513570677,
-          -10.193549628735969,
-          -10.20540200415922,
-          -9.213223628661602,
-          -9.957573171713548,
-          -9.460148609709375,
-          -10.494115130551638,
-          -11.166030579864168,
-          -10.283185319593244,
-          -10.305728589755258,
-          -8.683237364274419,
-          -10.60129096423454,
-          -8.28060333888793,
-          -9.61370976419402,
-          -9.761316077977005,
-          -10.101990906818788,
-          -11.09892348896481,
-          -9.726749555884325,
-          -9.263787384755364,
-          -10.342365616628342,
-          -10.45911216044001,
-          -9.90899795349515,
-          -6.836104087856725,
-          -9.016370050607359,
-          -10.541063949498655,
-          -10.872412143201348,
-          -11.761108622354334,
-          -11.282792756878479,
-          -10.302892156284614,
-          -10.307050375563588,
-          -10.058805847192902,
-          -10.314563473716643,
-          -9.960707219755923,
-          -10.139063719029993,
-          -10.196382208375738,
-          -10.396281475755332,
-          -9.858437465566038,
-          -9.167332141074942,
-          -10.267437270176034,
-          -9.416009952658111,
-          -10.02703868409736,
-          -10.991178121599756,
-          -9.865496339070686,
-          -9.624686874510981,
-          -9.231288997389308,
-          -10.257450246223788,
-          -10.082530684006906,
-          -8.463615479502165,
-          -10.315388533275204,
-          -9.781588519462801,
-          -9.987898027980494,
-          -10.122263406778815,
-          -9.960944961028522,
-          -11.593835226106524,
-          -9.690844064995675,
-          -10.132296547075347,
-          -9.13952200202551,
-          -10.36890432911038,
-          -8.433243855333522,
-          -11.554376711966244,
-          -10.662811148776191,
-          -11.19863664476559,
-          -9.863560784435286,
-          -9.641842474467907,
-          -10.944330529344672,
-          -10.167473423856727,
-          -9.531729295833793,
-          -9.600407944670621,
-          -9.852365468630415,
-          -10.499469882088144,
-          -9.627969678364911,
-          -10.155520665384774,
-          -10.499756442301301,
-          -12.037786123125077,
-          -10.849507609066642,
-          -9.210768837323213,
-          -9.775134084892978,
-          -9.497729889151799,
-          -9.798896098916758,
-          -10.75873484544143,
-          -11.02514468634354,
-          -10.44224334453164,
-          -9.887240424081607,
-          -10.04212749514682,
-          -9.59183344496896,
-          -9.76875546027798,
-          -10.250412641697467,
-          -10.693710764306548,
-          -9.542500327028211,
-          -10.361957675663046,
-          -8.903314124959811,
-          -9.359054929296956,
-          -10.117198977297862,
-          -10.68786677838935,
-          -11.100557343359156,
-          -8.611600900689035,
-          -10.796076473081984,
-          -10.826234473293841,
-          -10.824750030102097,
-          -10.400568456649033,
-          -11.06632146376951,
-          -8.886002170193848,
-          -10.15549109062209,
-          -10.00498283908873,
-          -10.756689487047288,
-          -9.453360444584346,
-          -10.043259452197285,
-          -10.444053052087014,
-          -10.657899531172413,
-          -9.717526843088793,
-          -11.70612633941226,
-          -9.484717487166815,
-          -10.51947385780226,
-          -9.679633327975235,
-          -9.525841247868327,
-          -9.72595415668378,
-          -9.72318189803964,
-          -9.770440447891588,
-          -10.804906110147373,
-          -10.642595558950994,
-          -9.90234294806474,
-          -9.946655489024995,
-          -8.047294137954363,
-          -10.075247302877807,
-          -8.18127614967676,
-          -10.570769729653469,
-          -6.971109610811896,
-          -8.856235473608749,
-          -9.81686190266339,
-          -11.03423471577147,
-          -11.289227866074302,
-          -8.916420387375597,
-          -10.209966584208368,
-          -9.376353474888244,
-          -10.638767731030638,
-          -9.622208859224907,
-          -9.714539500582472,
-          -9.314590094906098,
-          -10.0285816281688,
-          -9.729601933507562,
-          -9.567913002468577,
-          -10.479240123460496,
-          -10.54909863859999,
-          -9.63148540829741,
-          -10.755320826213623,
-          -9.933645292216436,
-          -10.164217600114407,
-          -9.372548320215202,
-          -10.18112462248308,
-          -9.032758865013834,
-          -10.964643531991703,
-          -10.957452633867941,
-          -10.012268633477838,
-          -9.885173162297907,
-          -10.242766165998477,
-          -9.358172803777734,
-          -10.169868659871433,
-          -9.615930588638825,
-          -10.515958004004373,
-          -9.939460532886292,
-          -9.936727128316234,
-          -10.177367594855363,
-          -8.506717224727023,
-          -10.475067239177418,
-          -10.069192679252163,
-          -9.937299142692764,
-          -9.230327026220394,
-          -10.118432939029619,
-          -10.589565022031566,
-          -9.370953017585833,
-          -10.891534788832928,
-          -9.293147077164118,
-          -10.508034928701704,
-          -9.967111496642337,
-          -10.190548533503815,
-          -9.852669563482632,
-          -8.277908260371714,
-          -9.461190594170715,
-          -10.629165322577308,
-          -9.986362322987267,
-          -9.55612496160255,
-          -10.767225087573989,
-          -10.944094890167927,
-          -9.598945564125609,
-          -10.397241414211948,
-          -9.895655021551361,
-          -10.661988209359377,
-          -10.447178979998986,
-          -10.48076825487693,
-          -10.25074583738589,
-          -10.941150965573804,
-          -10.075517420632812,
-          -10.412339588962991,
-          -10.581193648425607,
-          -10.680208426194879,
-          -8.985982185248735,
-          -9.082486706364353,
-          -10.100039468291167,
-          -10.586342468655008,
-          -9.547836797767395,
-          -10.309104428123671,
-          -10.17632485253864,
-          -11.539929164118377,
-          -9.032933852929943,
-          -10.899338673113274,
-          -9.873134289348776,
-          -9.942829021644537,
-          -10.971952301855131,
-          -9.934510637813966,
-          -10.94643194576338,
-          -9.620276405758904,
-          -10.378987121829782,
-          -9.720724059777769,
-          -10.016596326109509,
-          -10.20744815844341,
-          -8.882349043860273,
-          -8.858412756403641,
-          -7.211154833574628,
-          -9.967512912812394,
-          -9.451016450663877,
-          -10.886814547218888,
-          -9.820854913766908,
-          -10.062401563673207,
-          -9.622165293925569,
-          -10.349710168938941,
-          -7.940873666410598,
-          -9.403850788534777,
-          -10.26678522858937,
-          -9.01161652734604,
-          -10.453763592343082,
-          -9.530423761774824,
-          -9.056053171608355,
-          -7.657097644204699,
-          -9.896948859015756,
-          -9.589882213883262,
-          -10.400918117605046,
-          -10.816904757990654,
-          -9.579792643798424,
-          -8.80146885574351,
-          -9.890719428079054,
-          -10.97081879140702,
-          -8.87351226400982,
-          -10.0092157204185,
-          -10.444016697847669,
-          -9.741226890395975,
-          -10.122757043396888,
-          -9.953363426022179,
-          -9.704335865171668,
-          -10.074751884997037,
-          -9.90503920172446,
-          -9.254441962130969,
-          -9.135991132736098,
-          -9.874003326426209,
-          -8.668807156711015,
-          -9.984328452287516,
-          -10.372030288684082,
-          -9.963336657233443,
-          -9.937388261409886,
-          -10.815882323901347,
-          -9.521780844465784,
-          -9.740885879152458,
-          -10.218384883946097,
-          -9.200517723332146,
-          -9.712422067823121,
-          -9.981054462229505,
-          -9.627841749504304,
-          -9.453278747698423,
-          -8.698941384922673,
-          -9.454637775271069,
-          -9.487624563070973,
-          -10.330293969248302,
-          -10.27186468935682,
-          -9.555124252853687,
-          -10.727400174010278,
-          -10.690543383626773,
-          -10.413606436088143,
-          -10.271547922355586,
-          -10.0776480582467,
-          -9.387066249526713,
-          -9.414155111224792,
-          -10.034616538317822,
-          -9.86440705022364,
-          -10.357785264547397,
-          -9.644921489121508,
-          -10.2786385487534,
-          -9.921968218634026,
-          -12.090945532461001,
-          -9.786084346644628,
-          -10.144257397764017,
-          -10.186537691096008,
-          -9.133304714266076,
-          -9.381824659238497,
-          -9.762460448453252,
-          -10.415178175945627,
-          -10.95734642219846,
-          -9.307397628170362,
-          -9.711914764537758,
-          -10.42970704436783,
-          -10.54433757168074,
-          -9.882152073199423,
-          -9.405983426872401,
-          -9.678137043563703,
-          -10.330886258810011,
-          -9.875871841241242,
-          -8.006923289358614,
-          -10.026443656165481,
-          -10.562817950005742,
-          -9.869962540127379,
-          -8.14955034716221,
-          -10.385811019767472,
-          -10.82589794102554,
-          -9.675348849767907,
-          -9.192416865070808,
-          -9.863815482538781,
-          -9.50113288919829,
-          -13.048927915471042,
-          -8.953398945575605,
-          -10.582030251721651,
-          -10.209996859524516,
-          -9.979275579080866,
-          -10.13997894852523,
-          -12.080858863349555,
-          -9.776393460409297,
-          -9.379785974818033,
-          -9.837600126249823,
-          -9.354385958799591,
-          -10.634569819385822,
-          -9.859124125748476,
-          -9.193381180524465,
-          -10.493564051358012,
-          -8.056242394652728,
-          -10.172352932773663,
-          -10.385503829881289,
-          -9.709706430389245,
-          -9.102276411782572,
-          -10.200268402635501,
-          -10.854043187426663,
-          -9.131981156977686,
-          -10.091383231330445,
-          -8.414700415362487,
-          -10.130044018797804,
-          -8.331734172346648,
-          -10.194534828725825,
-          -9.79185186016931,
-          -9.216254823811681,
-          -10.290454224338582,
-          -9.362703654423967,
-          -10.340829208397833,
-          -9.768672651176955,
-          -10.626332773534704,
-          -8.556052405710167,
-          -9.848571856326755,
-          -8.93807080616903,
-          -8.844298683216266,
-          -10.777644194281297,
-          -9.533551102464253,
-          -10.117025070022175,
-          -8.863754630337343,
-          -10.332599365948937,
-          -8.824603859171791,
-          -10.693621977346275,
-          -10.007601703630264,
-          -9.056388661969855,
-          -9.608613693702413,
-          -9.217373460827172,
-          -11.316276603681281,
-          -9.99945888341222,
-          -10.530608220455925,
-          -10.111888183410183,
-          -11.416825532194965,
-          -9.605325144359384,
-          -9.274131544689398,
-          -9.230939618676764,
-          -10.128087338865503,
-          -9.517777090237917,
-          -9.972086507098796,
-          -10.429460818435,
-          -10.449592535352187,
-          -8.991533517514373,
-          -9.280983585230492,
-          -10.922791620743046,
-          -9.848921891610292,
-          -9.834188778694081,
-          -10.443280445744913,
-          -10.111184094086594,
-          -11.091663742522982,
-          -9.660578636838915,
-          -10.14519382297567,
-          -9.830159809296262,
-          -12.489636510624674,
-          -9.504812875579882,
-          -9.654331609049681,
-          -9.472251911428984,
-          -9.734600788667835,
-          -10.608385350254077,
-          -8.256254011241976,
-          -9.626808340711639,
-          -10.658605831409716,
-          -12.467110483967947,
-          -10.173680738003812,
-          -9.427930069741702,
-          -9.635801355427294,
-          -10.168234577097742,
-          -9.774627221016837,
-          -10.17753519307781,
-          -10.760102672358382,
-          -9.946716679777712,
-          -7.316454181687924,
-          -10.173138329088756,
-          -9.917203931660984,
-          -9.635653983420838,
-          -10.934871385243897,
-          -9.903125966212507,
-          -9.033022842428432,
-          -10.289089799546455,
-          -9.887876675902536,
-          -11.32644788692169,
-          -10.237408995721806,
-          -9.092657115195598,
-          -9.708037271130854,
-          -10.180623656451555,
-          -10.253985006156666,
-          -9.365929949453745,
-          -8.426020125130057,
-          -9.272943665035289,
-          -10.652123155019375,
-          -9.535427712194625,
-          -8.546060431390332,
-          -9.487468266530884,
-          -8.850533284719269,
-          -10.031342904341976,
-          -10.080450234160244,
-          -9.42521506669535,
-          -9.613962188459617,
-          -9.878908554227262,
-          -9.227414276141221,
-          -9.61325159420473,
-          -11.272648984252141,
-          -9.404085604206317,
-          -10.110800262382224,
-          -9.399328430367081,
-          -10.104561342199878,
-          -8.639367729922133,
-          -10.109722152467011,
-          -8.74766287565963,
-          -10.518314761094526,
-          -9.479911754515618,
-          -10.438675591087682,
-          -9.97956922408287,
-          -9.785097976212155,
-          -9.579935498439395,
-          -10.756144420676469,
-          -10.99424285443491,
-          -9.963242608649209,
-          -9.816287030366636,
-          -10.028383559832054,
-          -10.39974590755408,
-          -9.869891509974753,
-          -10.868625154121048,
-          -9.7725855553961,
-          -9.993906466731556,
-          -11.33160351316699,
-          -9.794694865583914,
-          -9.437431671230017,
-          -10.33321565990561,
-          -11.630834989439684,
-          -9.583983598741032,
-          -12.107514662296243,
-          -11.575001312418454,
-          -9.754967340998352,
-          -9.60935257205841,
-          -10.26076538953044,
-          -10.065954730929763,
-          -10.303712475069291,
-          -9.57961617405423,
-          -10.495973937533721,
-          -9.961890156228566,
-          -10.966764379303607,
-          -9.737934452816413,
-          -9.363384356100738,
-          -9.52668091920873,
-          -11.473168888485715,
-          -8.886987170965778,
-          -9.254048988411228,
-          -9.10584935218152,
-          -10.918850339409563,
-          -10.27656908486075,
-          -10.442127833434393,
-          -9.53360934344321,
-          -9.756314617855473,
-          -10.412820520677112,
-          -10.445987536355558,
-          -9.830269964040909,
-          -10.149792491891818,
-          -11.467134706797314,
-          -11.033016807408028,
-          -9.176668143222091,
-          -5.7791834702076255,
-          -9.27308356529294
+          -0.5750220609080474,
+          0.0777347972515765,
+          0.09152025589960355,
+          0.12333066629805711,
+          0.7785448668275483,
+          -0.7953041732988739,
+          0.33060791500802567,
+          -1.1267602057984925,
+          0.18591678049750016,
+          -1.7291415906212366,
+          0.042452605483702,
+          -0.7260491315575255,
+          -1.0582308517163967,
+          0.3629781874235476,
+          0.44503921500150057,
+          0.005311085003628424,
+          0.5986376868404066,
+          -0.00711314082693737,
+          0.3667990916703123,
+          0.219268690351216,
+          0.5052361001350072,
+          -0.17464070411610788,
+          0.05362604877930388,
+          -1.0305396699359877,
+          0.507175566181552,
+          0.16954210598644703,
+          0.6591093976825508,
+          -1.387158547084024,
+          -0.4861918244219823,
+          0.11021534261758315,
+          0.06125399057587155,
+          -0.3612344654379831,
+          0.956254315290535,
+          0.2607930006339081,
+          -0.39051270089048784,
+          0.4107100964487671,
+          0.6535804301346957,
+          -1.3439527006257348,
+          0.6274782691075906,
+          0.22925469331489,
+          1.1274633066082376,
+          1.4133893806748823,
+          -0.9707087670460426,
+          0.02847795513119422,
+          -2.869120614348678,
+          -0.3800213168417662,
+          -0.5756270390154329,
+          -0.4616679223716501,
+          0.13944550641934583,
+          -1.4616395611999107,
+          0.05786349478567554,
+          -1.0609277743668273,
+          0.0910437479157602,
+          -2.379122024926171,
+          0.43570288272343927,
+          -1.4088768227053223,
+          0.04294783456122642,
+          -0.5183539014260512,
+          0.22903409242557626,
+          -1.2746929882754783,
+          -2.4069702715277543,
+          -0.774934377132764,
+          0.14767714226434303,
+          -1.5846716520993027,
+          0.014950599368898976,
+          -1.6142146026095894,
+          0.386658618235467,
+          -2.040288632718304,
+          0.05090743362283523,
+          -1.9854989428860075,
+          0.6768356262784163,
+          -1.6540119340244122,
+          -0.017607193697259604,
+          -2.2142525509359543,
+          -2.462408288501138,
+          -1.0103952492214872,
+          0.5193392737456686,
+          -0.2569243806273174,
+          -0.10378712634706733,
+          -0.8987911780179582,
+          0.5790312507333739,
+          -1.6179936418771281,
+          -0.8130604095704503,
+          -0.7078039987322837,
+          0.7149907074324295,
+          -2.469450959670686,
+          0.1903755882064273,
+          -1.9903714973936457,
+          -1.1611691349305477,
+          -1.3167780337883932,
+          -1.3381379883497961,
+          -2.232313626128642,
+          0.46923411216715283,
+          -1.7070988785615007,
+          -0.8102140131973078,
+          -2.232313300487923,
+          0.06712439030795592,
+          -1.2481219986914158,
+          -0.16325656971693592,
+          -0.41767957182709514,
+          0.3458753992209713,
+          -1.55387050821126,
+          0.33851469075723384,
+          -1.7683589106338116,
+          0.5027744987110405,
+          -0.7425412389507857,
+          0.7336978233809512,
+          -0.7028554475381554,
+          -0.9622383850114656,
+          -1.3851629589069234,
+          0.2569906484029676,
+          -1.0274299657035435,
+          -0.4222453535933417,
+          -0.3654633913689822,
+          -0.8862983417696411,
+          -2.1901643399691375,
+          -1.147962992695724,
+          -2.177780191803812,
+          -1.8644196034196765,
+          -0.141262047757148,
+          0.1680839686436546,
+          -1.8910754881384921,
+          -0.9209438960908358,
+          -0.5400772144901278,
+          -1.2900958950124435,
+          -1.3113082944825454,
+          -1.0135357239010558,
+          -1.0302634655111775,
+          0.15355779867639852,
+          -0.6923859950153852,
+          0.3473110016030825,
+          -1.4535187666485863,
+          0.4602107134135287,
+          -1.718078675434688,
+          -1.4711188316534212,
+          -1.3587200527047556,
+          -2.1553775629908536,
+          -0.4012572011415063,
+          -0.6511038040298742,
+          -1.4334441194664485,
+          -0.9676031258608797,
+          -0.25498522484097674,
+          0.6480183232229924,
+          -1.9152865772366245,
+          -0.7013785729040554,
+          -1.3183699151459394,
+          -0.5098742962742323,
+          -2.0437824153629256,
+          0.4720894424966684,
+          -1.92463943830938,
+          -1.8482261012262264,
+          -1.6943060806636265,
+          0.1778183912236464,
+          -1.5055042462426387,
+          0.07445595025745089,
+          -2.7476858301371303,
+          -0.16339371558973748,
+          -0.6897585366607157,
+          -2.009128209168995,
+          0.15174226827527382,
+          -2.5259717387285856,
+          -1.3078615405102414,
+          -0.9217736867361581,
+          -1.1190027129869284,
+          0.15225744939571006,
+          0.3643106888736165,
+          -1.0332870280342403,
+          0.012948722357012166,
+          0.5379180793524898,
+          -2.1534967187708878,
+          0.5307652829782212,
+          -0.8596566929930669,
+          -2.548907700511082,
+          -0.13428056571519498,
+          -0.7308024779892901,
+          -1.5227816595542183,
+          0.7238338557904507,
+          0.10144273865974118,
+          -1.2907772671931912,
+          0.16118648246279998,
+          0.7528507163299554,
+          -0.3166710717974687,
+          0.7325266446840082,
+          0.5807934743552023,
+          -1.6124220264085816,
+          0.35634556114852245,
+          -1.6829320948666693,
+          -0.9932278485438748,
+          -0.8991687916614908,
+          -0.5244305788903341,
+          -1.7041897726091357,
+          0.1957187532248965,
+          -0.7666397028968894,
+          -0.41061782865036667,
+          0.5506544614984692,
+          0.13087931199144576,
+          -0.3223266955959332,
+          0.07126358105910668,
+          0.06359472764288565,
+          -1.1637061200751795,
+          -1.3053127303492256,
+          0.14507295403221931,
+          -1.5134340291412847,
+          0.3662182654559276,
+          -0.8562252978915061,
+          -1.5737874246651067,
+          -0.1677289239523434,
+          -1.0320237196602176,
+          -0.03105134038455415,
+          -0.9313195388432997,
+          -1.1023724150614114,
+          -0.9655425066500223,
+          -0.3133721080600399,
+          -0.02523466672122865,
+          -0.7615376022322077,
+          -1.4077508695770033,
+          -1.1717900640882724,
+          -0.9517179592853066,
+          -2.043033296043668,
+          -0.7631827224174894,
+          -0.4668183293462276,
+          -0.9961327045719701,
+          -1.933112570468706,
+          -2.3062902572356694,
+          -1.1633647062508377,
+          -0.39591727429499546,
+          -1.8237972957817616,
+          -2.2472579412307434,
+          -2.4906448885238737,
+          -0.8022188128812924,
+          -1.7484354040754675,
+          -0.27327881367235485,
+          -1.4645187263911168,
+          -1.0122731379875087,
+          -0.31773363237441254,
+          -0.13101606227464424,
+          -1.5869298840105186,
+          -2.1083612153707953,
+          -2.490734828542087,
+          -1.5257883606547182,
+          -1.8049851457124695,
+          -1.5241249237875305,
+          -1.4267102767091573,
+          -0.5323387874920322,
+          -1.9961986511918086,
+          -0.9186215104115795,
+          -1.2737874062325376,
+          -1.9430626010998298,
+          -1.416013720721343,
+          -0.7134543918287192,
+          -0.4444661618487965,
+          -0.5333985295777797,
+          -1.1031154586077005,
+          -0.9129383879671591,
+          -1.0199628807022225,
+          -0.9347857260694109,
+          -0.12059951268495528,
+          -1.1961673633749228,
+          -0.5431187031502602,
+          -2.0486184076360985,
+          -0.8661445720161896,
+          -0.8864566879036788,
+          -1.796034531796093,
+          -1.7313883108154455,
+          -1.5271295421181943,
+          -0.873521644526157,
+          -2.1787404830211177,
+          -2.5340643954369346,
+          -0.9709894812105138,
+          -0.6307524971236601,
+          -0.437576395974855,
+          -0.9252611341735385,
+          -0.05098784565588721,
+          -1.8197440388478823,
+          -0.6309357636726244,
+          -0.3659285921414782,
+          -1.0616987602233108,
+          -1.4195963840150183,
+          -2.014758666573387,
+          -0.21299844905384258,
+          -1.0037656037438376,
+          -2.0208046346941444,
+          -0.36047277260582755,
+          -2.4529665628970108,
+          -1.9797883810544241,
+          -2.080094395073724,
+          -1.816719407472464,
+          -0.8694514442007591,
+          -0.5356211495427833,
+          -1.1122328575785005,
+          -1.9115391635515517,
+          -1.0176276004105598,
+          -1.9710713393301602,
+          -0.5711726532071798,
+          -1.3643832447634692,
+          -1.772884260920407,
+          -0.24787031601632092,
+          -1.744905312608336,
+          -2.5057831434906714,
+          -0.9799498101272034,
+          -1.9580328179157656,
+          -1.5214189086326741,
+          -0.7619055512285547,
+          -1.055995337044533,
+          -1.4831201396286104,
+          -2.0821119205163363,
+          -0.6882475968670898,
+          -1.1229905229020474,
+          -1.3884125294608463,
+          -1.623782223597376,
+          -1.5282689799563647,
+          -0.2682845220646156,
+          -1.1227034332931307,
+          -1.088426841448712,
+          -1.324376837308228,
+          -1.6252104670755896,
+          -0.015585872776146648,
+          -1.1861551387198719,
+          -2.1334121346562096,
+          -1.071855283512878,
+          -1.3288506978077301,
+          -1.085369287117732,
+          -2.2523674546945966,
+          -1.3990696109331404,
+          -1.8767117985032638,
+          -1.182009849744648,
+          -0.803277163776219,
+          -1.7092529535158212,
+          -0.7731079564579897,
+          -2.1958708326245215,
+          -0.7880214432200245,
+          -0.5625970086334495,
+          -1.4559087790609329,
+          -1.6577983510137602,
+          -1.1079178623020205,
+          -1.6570392038472752,
+          -0.002676489020829287,
+          -0.3988460384047168,
+          -0.8136882957191842,
+          -0.36928995769665207,
+          -2.2517191929615725,
+          -0.15083670658772552,
+          -0.6246009223968251,
+          -1.095816206552976,
+          -1.2622354659051185,
+          -1.746035118816136,
+          -2.042562209655153,
+          -0.6475947112055418,
+          -1.417186111751659,
+          -0.7062797660024633,
+          -0.5507381308632104,
+          -0.4059643001372514,
+          -1.866962274937629,
+          -0.6429169322457432,
+          -1.565423965354832,
+          -0.2400925426273779,
+          -1.1498864699986384,
+          -0.6766615520102791,
+          -1.3991785131660437,
+          -1.7246453985972672,
+          -0.5245732705025975,
+          -0.5109839064273269,
+          -0.09791894764098108,
+          -1.1986602212989341,
+          -2.612572321858485,
+          -1.5474328659226093,
+          -2.4186797772446296,
+          -0.08384730070485691,
+          -0.7088726965296122,
+          -0.9946175346550191,
+          -1.4320582808225706,
+          -0.057918905512599594,
+          -1.6523210473626146,
+          -1.1546008114968793,
+          -0.7322201536092381,
+          -0.6955357301150954,
+          -0.9547330545535678,
+          -0.518550506572262,
+          -0.8405697711854424,
+          -1.494123128350776,
+          -2.159847829447294,
+          -0.11954761422713112,
+          -1.4340998517833343,
+          -1.142721397495563,
+          -2.1200908238814984,
+          -0.1227770978549978,
+          -0.4766594242106358,
+          -1.466978476114135,
+          -1.86786991139363,
+          -2.9650978332107307,
+          -1.6737102042238288,
+          -1.165496311565933,
+          -2.1209636403298404,
+          -2.26176087855476,
+          -0.6927573765778325,
+          -1.3608490789140848,
+          -1.581498011400925,
+          -2.6027857853859775,
+          -1.9295292074292332,
+          -0.9732299064086053,
+          -1.3365891136805688,
+          -2.626167028509472,
+          -0.007383033015186169,
+          -1.404354254060326,
+          -1.4778052859499873,
+          -1.6055836598053193,
+          -1.0032685766610365,
+          -0.7418256399313641,
+          -2.7801351445860774,
+          -1.2292351239027115,
+          -1.0510273534074244,
+          -1.8068608428252406,
+          -1.8382993285763047,
+          -2.165997156083419,
+          -0.2321674242304821,
+          -0.9769947850943052,
+          -0.7362390129571726,
+          -0.20369192598550567,
+          -1.4275292552847563,
+          -2.3892913999994834,
+          -1.0006467681347873,
+          -1.8870436401719588,
+          -0.8168416936647677,
+          -0.8004018215708618,
+          -0.8158403550602323,
+          -0.8879917323704906,
+          -2.1258901309908866,
+          -1.4324946498345483,
+          -2.1126310172100236,
+          -1.6536336224088397,
+          -0.6351282573618835,
+          -1.7483593058599576,
+          -1.5298832081336289,
+          -1.3340246492829257,
+          -2.435046190140043,
+          -1.8726867780688474,
+          -0.6996969714433717,
+          -1.1019627672016705,
+          -0.45914640068040125,
+          -1.0151121294140093,
+          -1.619569201712705,
+          -0.24748704339795236,
+          -0.26547952165114197,
+          -0.7876211941936945,
+          -1.764767603850991,
+          -1.0244671773751168,
+          -1.5860371037170435,
+          -0.9745857782180205,
+          -0.47348024856147786,
+          -0.8723532085445351,
+          -2.3780622842727412,
+          -0.8545579692240681,
+          -1.4691430599354678,
+          -1.4564996805861374,
+          -0.610777568709318,
+          -2.9837148735548293,
+          -2.2778778352810423,
+          -1.1929791669257697,
+          -1.1033722236791224,
+          -0.9518743210223395,
+          -1.4880511386609476,
+          -1.0665018712082026,
+          -1.359089748462853,
+          -0.4042003071553124,
+          -0.2952182389813246,
+          -0.20993599518617156,
+          -0.19261305309075505,
+          -1.7439872798103542,
+          -1.205423820151074,
+          -0.060453999732902775,
+          -0.007633964326785536,
+          -1.4028392017888196,
+          -1.5337275081704462,
+          -0.6879768695127684,
+          -0.35476813216490244,
+          -0.3093195294098732,
+          -0.8279554261939396,
+          -1.0649764579853265,
+          -1.2160522817223587,
+          -0.5587914238517174,
+          -1.5616476212007044,
+          -1.113013314418135,
+          -1.0486338251606149,
+          -1.3263429173288086,
+          -1.1945582839711852,
+          -0.163405761529282,
+          -1.079833970678611,
+          -0.8480122632553434,
+          -0.3783738675826742,
+          -0.03240331622552206,
+          -2.4847262872875495,
+          -1.0570167714456324,
+          -2.397535631651486,
+          -0.028022913523579218,
+          -1.2768462969806063,
+          -0.45923686097537875,
+          -0.5208681272550175,
+          -1.0167152164430167,
+          -1.0070626655077581,
+          -0.2697393064194791,
+          -0.8964593905113316,
+          -1.0818594915697242,
+          -2.029301158017244,
+          -1.0769997238570426,
+          -2.3760639912564323,
+          -1.6945671312333292,
+          -1.6918060769423509,
+          -0.45986193617316307,
+          -1.680090452675608,
+          -1.2365672227130022,
+          -1.9524028472269341,
+          -1.419904099621934,
+          -1.0848577450607486,
+          -2.167122718598884,
+          -3.1337683009972803,
+          -1.0593984035618353,
+          -1.2238768453916273,
+          -0.9870974315845467,
+          -3.0357201757301113,
+          -1.899781518708592,
+          -1.2877032095092011,
+          -1.0436496669542217,
+          -0.7310345568927668,
+          -1.3876520828008787,
+          -0.4048353055842564,
+          -1.2744755760081712,
+          -0.32607550691044407,
+          -1.9441107645741333,
+          -0.3663170140388252,
+          -0.5211922984977433,
+          -1.4741550525663225,
+          -1.0954332531937157,
+          -2.617293789654114,
+          -1.0139374172019728,
+          -0.759128691986646,
+          -0.9289114578234227,
+          -2.46374984944409,
+          -1.0434251684361577,
+          -1.1855311791431116,
+          -0.9647535455187172,
+          -1.4693370166621238,
+          -1.889503476984405,
+          -0.8113992649919621,
+          -2.1345374853711885,
+          -0.9466417506307316,
+          -0.7088441667245554,
+          -0.1435521352584227,
+          -1.2266078295421434,
+          -1.1917255656118626,
+          -0.6550968176805161,
+          -0.9446821771350477,
+          -0.8245994477000471,
+          -2.2073943512658025,
+          -1.1923005375700388,
+          -0.17482649361893032,
+          -0.829910742430132,
+          -1.5070808216313492,
+          -0.5674803030386184,
+          -1.5938233712500465,
+          -2.5772052962364462,
+          -1.4254104549903155,
+          -0.5214335528100831,
+          -2.2644343627742245,
+          -0.4013533014984956,
+          -0.8457793443024503,
+          -0.7443410648574151,
+          -1.9206685129371697,
+          -1.1473236684137857,
+          -1.2327526377719453,
+          -0.8737819304209482,
+          -1.047375352851678,
+          -2.3482918027695576,
+          -1.5969368019711432,
+          -0.5227487988957805,
+          -1.2898193868530003,
+          -0.7923635731224714,
+          -0.4067816518117052,
+          -1.2607978148773027,
+          -1.2144316124427599,
+          -1.3180575836855328,
+          -0.9461458577675412,
+          -1.7454118987955205,
+          -0.2610219946776281,
+          -0.4726366401060017,
+          -0.016306778605026828,
+          -0.8202856027561698,
+          -1.0060645520545313,
+          -0.22599793938562152,
+          -0.7419297691346975,
+          -0.15257716557729972,
+          -1.924271045710054,
+          -1.35375999071908,
+          -1.3631143665338081,
+          -0.5039540478875024,
+          -1.3800184137594376,
+          -2.2997777216028923,
+          -0.47363041541155215,
+          -1.5512084669661697,
+          -0.07987401876101807,
+          -0.8630541974358397,
+          -0.18279165044717327,
+          -0.4355553305915373,
+          -0.9418090321779566,
+          -0.5561815513824915,
+          -1.0090993939363007,
+          -0.6760490256943255,
+          -1.1358683762398127,
+          -2.007783863586332,
+          -0.1522863693055747,
+          -1.3758979397402862,
+          -0.3425319619481074,
+          -1.3113760082920187,
+          -1.0635316463109616,
+          -0.9891791219621358,
+          -1.5027473778957532,
+          -0.24772627432574035,
+          -0.5449247837599321,
+          -0.7083073049130875,
+          -1.0651756490569728,
+          -1.6691571902700582,
+          -1.3707160379541004,
+          -0.019831990700270863,
+          -0.7621028197398301,
+          -1.2288080829529826,
+          -1.5779541350039503,
+          -1.8512884344123934,
+          -1.3471965168885338,
+          -1.2741228141559602,
+          -0.8756401197930512,
+          -1.1495849488135013,
+          -0.777779358405832,
+          -0.7624122960704296,
+          -1.5494965390356423,
+          -0.39759264927926496,
+          -2.9270193350671274,
+          -1.3856187067065777,
+          -1.5554559256014846,
+          -1.4379461165440346,
+          -1.3420082342154775,
+          -0.9636854706122673,
+          -0.012768456757277558,
+          -1.3771682869508777,
+          -1.14850455339018,
+          -1.1448901055919114,
+          -0.21452696561419216,
+          -1.0249338691674725,
+          -1.0012021345756446,
+          -2.0849289953923327,
+          -0.8365630677968071,
+          -2.016033137957182,
+          -0.799113575605325,
+          -0.43794682549015573,
+          -1.1042660649900742,
+          -1.0977109953409825,
+          -0.7921509643645711,
+          -2.30530566720846,
+          -1.4080257830093172,
+          -0.6229530727818571,
+          -1.3634732860439842,
+          -0.4328341729585109,
+          -0.6065900450409052,
+          -1.1576945272195789,
+          -1.4157352923708304,
+          -0.0690934852732753,
+          -1.0410692721731607,
+          -1.0893804105790705
          ],
          "y": [
-          -10.716149552642973,
-          -10.88918812244048,
-          10.458003403468066,
-          8.719042910759581,
-          10.198343996647663,
-          9.659147800698202,
-          8.819046194607706,
-          10.750471109216289,
-          9.387445565726757,
-          -10.31550968982204,
-          8.673058692788539,
-          9.385007105158522,
-          11.790815217683656,
-          9.438667148016302,
-          8.92448628991958,
-          9.235562878383025,
-          9.757334497849158,
-          9.492584621261514,
-          -9.824259834008732,
-          8.330498287185724,
-          -9.377757111246982,
-          10.736964278745894,
-          -9.92095903118054,
-          10.594719892732888,
-          -10.529844751789687,
-          -9.920604738102394,
-          10.51389922991239,
-          9.554182188445619,
-          9.208645041156455,
-          10.093609759179923,
-          9.4629978323369,
-          -10.616691347022613,
-          10.16943783820688,
-          -8.289357187015458,
-          8.805889148583177,
-          10.155819485888001,
-          -10.827836193361124,
-          -10.001637555400839,
-          -10.530045662088245,
-          10.906249478408586,
-          -10.498499975205542,
-          8.954754896918347,
-          10.607336814529175,
-          -11.5943155957535,
-          7.147990698340781,
-          -12.107710859449153,
-          -10.350893708976852,
-          -9.505173957495945,
-          -9.737581787066242,
-          9.19890821957408,
-          -8.648362651823593,
-          10.101438411596272,
-          12.343515837546812,
-          -9.904043539856282,
-          -9.074091079445257,
-          -9.432020691856232,
-          9.903547806358768,
-          10.235486363327036,
-          -11.217411690647783,
-          11.201800591373871,
-          10.970945663955028,
-          12.086771161691573,
-          9.14814374129879,
-          9.370017513662308,
-          10.075503392654689,
-          10.971089677023418,
-          10.44192924917603,
-          -11.070647832989858,
-          11.03706118613772,
-          -10.647585820313614,
-          10.797606172894476,
-          10.911795394714705,
-          9.60933048288672,
-          -10.504974356319444,
-          -8.526031962593166,
-          -10.738372570773368,
-          10.004015918669777,
-          10.128780110761927,
-          -7.844360424810427,
-          11.0613712130119,
-          9.754675607918651,
-          -9.795723456556535,
-          9.94209589674869,
-          10.081437852421605,
-          10.837947074629385,
-          -8.374768473836003,
-          -8.166438639707186,
-          -12.338962859221773,
-          10.362390246639231,
-          -9.253725112102094,
-          -8.91018324730704,
-          11.590518524969873,
-          -9.659098484842632,
-          11.043160163170219,
-          11.256842358050987,
-          10.260491143487792,
-          12.142748234140766,
-          10.063723418279729,
-          9.461891330907964,
-          -9.89795009294608,
-          10.343731753216336,
-          9.030831682889788,
-          9.88209769254313,
-          10.626466198968465,
-          9.4538082896346,
-          11.08982493952891,
-          10.145688324770532,
-          9.7215881493732,
-          9.470201431590526,
-          8.715552515630193,
-          9.083578615255226,
-          11.730795117772356,
-          -11.059639280937839,
-          10.01109689186039,
-          10.355190753942436,
-          8.42458081324716,
-          9.122448339968967,
-          -9.580683293635948,
-          11.26365860342329,
-          10.561649434855525,
-          -11.713803245359717,
-          9.38775674032746,
-          9.787409678191601,
-          11.036424276890791,
-          9.368676470038423,
-          8.769960683299193,
-          9.85338466076444,
-          7.896423271935715,
-          -13.149271145432005,
-          9.704377403763232,
-          -10.346251863011167,
-          10.741665099168737,
-          -11.194593059446564,
-          8.405915011908302,
-          10.630274118310865,
-          -11.131453807936815,
-          9.790996020819287,
-          10.64470596764871,
-          11.786982886476775,
-          9.090676822305873,
-          10.244846056473355,
-          -8.805804235157694,
-          -12.602618734759986,
-          9.684415901369613,
-          -9.773254851235894,
-          10.896204486472376,
-          9.37022739044231,
-          10.64358325871915,
-          10.762393376069559,
-          -10.880742536089981,
-          -8.55256861236568,
-          -8.350242772918758,
-          10.024850208913056,
-          10.560821366941562,
-          -9.066086839708321,
-          -10.45128325840994,
-          12.000920870289203,
-          10.259399434381246,
-          9.255589549092043,
-          9.46040483353375,
-          9.392916745954587,
-          10.131567583610158,
-          -7.592688521287608,
-          10.82605507797423,
-          -10.614877725123973,
-          11.406054690621446,
-          10.833395235279948,
-          10.193171645433608,
-          -9.825152236904527,
-          10.850995113361664,
-          10.292105160289093,
-          10.897935663126047,
-          11.419347904106026,
-          9.497449658586339,
-          -11.2387187232735,
-          10.294063582677435,
-          -9.295322776386056,
-          -8.718497348049707,
-          11.613407632490057,
-          -9.23819164765716,
-          -11.44332193835385,
-          10.123010885242367,
-          10.251816969840212,
-          9.747088156337828,
-          11.00755884484612,
-          -9.293154690706174,
-          11.06837082164014,
-          11.391301550037612,
-          -9.078628795830774,
-          -10.501860903205156,
-          -10.75486939041951,
-          -9.291503218237825,
-          -6.995994364950569,
-          -7.965696999147351,
-          -10.482241746527116,
-          -10.400744688989425,
-          9.658550509812887,
-          -9.15186561455829,
-          -11.82884333401295,
-          11.112122913107646,
-          10.341264130058368,
-          -9.341620283592237,
-          8.319769273401569,
-          -9.675424337122491,
-          9.022730897799294,
-          10.509907493162785,
-          9.212956224363609,
-          -10.827788888397556,
-          7.347546640608671,
-          10.495973977788564,
-          9.770698958049135,
-          9.854585711309527,
-          -9.900143435850152,
-          -9.989263603141532,
-          -9.848329998332826,
-          8.720990425160416,
-          -9.517588617575221,
-          11.118207282580165,
-          -8.880319096207828,
-          10.416564647430246,
-          -8.504091092458037,
-          10.096813379983269,
-          10.119107285582428,
-          -9.026715497973274,
-          9.715262932438739,
-          -8.771332957814547,
-          -11.345696722023735,
-          -8.266207042954171,
-          -11.614758624649376,
-          8.540226417771493,
-          9.069074187948676,
-          10.321753356609701,
-          -10.61908160649201,
-          -9.128687516039768,
-          10.50521841770923,
-          8.388663755566748,
-          -10.260475779258163,
-          11.146407147631022,
-          -11.16677821491462,
-          -11.615817418537109,
-          -9.813126354596715,
-          9.831084027925664,
-          -11.866159925675312,
-          11.0157387773703,
-          -8.298006052819789,
-          10.103732469850597,
-          9.306894794745785,
-          -9.315343051194482,
-          -10.678625501052727,
-          -11.465224027958488,
-          10.958808874532723,
-          10.133894856149364,
-          -9.125723557971677,
-          9.757736879474628,
-          9.105339628292432,
-          10.47888241546265,
-          10.657303825017316,
-          8.785552579708233,
-          -9.082330530638568,
-          -9.15040537702842,
-          -8.881649671567839,
-          11.420743004886987,
-          10.195341647671311,
-          11.516018570649553,
-          -9.138279164281847,
-          -10.72348561586323,
-          9.898306356119392,
-          10.716703219647847,
-          7.684073080577006,
-          10.507020864818514,
-          10.637770801470332,
-          -9.328871367758008,
-          -10.020921717130475,
-          11.055049209695683,
-          -10.537571021800858,
-          8.711300700075277,
-          9.155593971443155,
-          -11.556178060035279,
-          9.57382838479664,
-          8.96843735429041,
-          -9.819109201156191,
-          9.051230011147721,
-          10.489153538103762,
-          -10.368149156814535,
-          10.771453849713222,
-          -9.487516048593005,
-          9.692018034997737,
-          10.786408044144688,
-          9.170273792302652,
-          -9.742428567133377,
-          9.468476054457556,
-          -9.167241961931687,
-          -12.84955449776864,
-          -10.1805060195119,
-          10.20727133604668,
-          9.070755906700882,
-          -9.978951062843214,
-          -12.003720034095727,
-          -11.905527445413055,
-          11.823380166666558,
-          11.488183090444148,
-          9.075432865013891,
-          9.798143001636728,
-          -8.375099184601922,
-          9.621159405680446,
-          -11.131801381855846,
-          9.569707204680055,
-          -9.331174128548154,
-          11.277104611810314,
-          -9.198471527242583,
-          -11.331540781926622,
-          9.98478192596779,
-          9.298389642010642,
-          9.666001465759043,
-          11.877381412634874,
-          9.272231502873685,
-          -8.43489544523697,
-          -9.404543112327326,
-          -10.270725210115595,
-          9.089746265777269,
-          -10.400736370362567,
-          8.743312177022702,
-          9.622139747294185,
-          9.532118965116357,
-          9.751563103994043,
-          9.890607668522593,
-          9.8631488728916,
-          10.327436740922055,
-          10.313626525202036,
-          -11.109315798736855,
-          9.820167777685215,
-          9.846325097801449,
-          -9.168993823527378,
-          -10.059326110528984,
-          9.247012538062728,
-          10.826848913487432,
-          -12.78167479276067,
-          -10.31088895760579,
-          -11.622086215528835,
-          9.514607556971571,
-          9.504591829798178,
-          10.922909117086878,
-          12.211421124562168,
-          -11.468258225921998,
-          10.854714007088733,
-          -10.506210486363647,
-          -12.708243575352018,
-          -7.177282403451482,
-          -11.427772407638134,
-          -10.444491502616357,
-          10.635811174328632,
-          9.59984116997707,
-          -11.488790778245194,
-          10.028175980224045,
-          10.523005353978595,
-          -9.410813035950266,
-          11.074742466658732,
-          8.022688828160371,
-          9.087628693162433,
-          -10.538447988053202,
-          -9.46565248801353,
-          10.37707034562115,
-          -9.988433190697704,
-          8.693932965612943,
-          9.65038174771369,
-          10.611310100553425,
-          9.714292305945955,
-          -10.68161329402121,
-          10.415689167951975,
-          -10.853980354077695,
-          11.584340666093285,
-          -9.245999690435278,
-          10.75663687800629,
-          10.215369677898776,
-          10.127998631188802,
-          -11.114997193045113,
-          -10.848377199840922,
-          9.814909295100275,
-          -11.091640632034926,
-          9.050473746858955,
-          9.76596817960492,
-          9.15537998614071,
-          -10.162592358634392,
-          9.830277903171371,
-          -10.040045891975277,
-          9.497899786534736,
-          9.503890609098223,
-          11.633017485396836,
-          -9.754737033126355,
-          10.770880598885244,
-          10.439845581016804,
-          11.745118047727402,
-          -10.785670687996674,
-          9.38023241018898,
-          11.035576536891902,
-          -7.051823497614047,
-          9.926603965381625,
-          9.510490615926019,
-          9.365630605959913,
-          -9.529678056868173,
-          -9.159729610339273,
-          10.481285644697866,
-          9.168994987143577,
-          -9.95002427149751,
-          10.663691086597865,
-          10.557581148870531,
-          9.726001105234925,
-          -10.208467719275607,
-          -10.855241361905865,
-          10.841618851868068,
-          8.928827999032427,
-          -10.875737409488409,
-          9.816529670372443,
-          -10.548774058993912,
-          -10.167242395400773,
-          9.718980572927803,
-          8.545100206489295,
-          -10.31167356490274,
-          -9.40695892148088,
-          9.901079301227469,
-          9.315014564865987,
-          -8.447912878815982,
-          -9.320360244453012,
-          10.65451213268685,
-          10.558661088208703,
-          7.785115326647067,
-          8.653430547505538,
-          9.925656388542421,
-          9.639838885825789,
-          8.026751883750734,
-          9.03033622981705,
-          7.995444030362939,
-          -8.355685831524246,
-          -8.558460773978169,
-          -9.981351902220954,
-          -8.024509537946875,
-          8.241092780783653,
-          9.9768113385966,
-          -10.391851782330088,
-          8.927795660867215,
-          9.53646322253575,
-          11.446682267342124,
-          8.932596923966397,
-          -9.944088856048168,
-          10.34177681932186,
-          9.793332674190621,
-          7.469016891949357,
-          9.556834092002592,
-          -10.309823655835634,
-          -11.397849142360283,
-          -10.618186049723164,
-          11.271128462425645,
-          -10.980691223044024,
-          -8.476837485044934,
-          11.316722065831529,
-          10.103828583742448,
-          9.063088953664417,
-          -9.383721202384798,
-          8.867827781787966,
-          9.404291927394556,
-          11.368344183635397,
-          9.45880009496142,
-          -9.973891325927948,
-          8.676863248671864,
-          9.36840477316232,
-          9.100862881303868,
-          -8.538526609246404,
-          8.843052348492195,
-          -11.011616839341468,
-          -10.849353496414837,
-          12.390838072672707,
-          -11.033782510352475,
-          -8.837829815210686,
-          -9.876513101699217,
-          -8.590307491498923,
-          -11.166355083496395,
-          -8.96213258188472,
-          10.913720150289985,
-          7.2419989489298535,
-          -9.90496448566622,
-          10.581418749217875,
-          10.111788087522754,
-          -10.578075651040727,
-          7.614186396866692,
-          10.000210030722334,
-          -12.220999555023026,
-          8.487937157168977,
-          11.66120860463603,
-          -8.96321707264206,
-          10.110317114610565,
-          -8.331922797097981,
-          10.103077238896097,
-          -10.667831904374657,
-          -9.166443252936968,
-          -11.334054737094945,
-          10.523112585905796,
-          10.85530676197388,
-          -8.073400578400374,
-          -11.312302401930244,
-          7.498925666488656,
-          11.107269023449017,
-          -10.527144701813059,
-          -9.105577455184763,
-          -11.006165588940693,
-          8.278562688864254,
-          10.15502818239337,
-          -9.940460581669866,
-          9.73083554267237,
-          -8.26915280773013,
-          10.017950721865828,
-          11.284450144410597,
-          -10.671631178278144,
-          -11.08911040300038,
-          10.767468190833737,
-          10.054041971602885,
-          9.65795637898057,
-          9.862207909300409,
-          -10.166711177686436,
-          8.047224253720433,
-          9.851656822985223,
-          -9.073741933786684,
-          -10.249129745179417,
-          10.265261851003212,
-          11.106401994604926,
-          -10.647078600421992,
-          -10.672838068181342,
-          -10.973390973494173,
-          -10.6987000798907,
-          10.14757553310878,
-          9.31025366849986,
-          12.10179750575439,
-          -9.897896441978308,
-          -9.5413268132617,
-          10.889296916803746,
-          10.93443466257807,
-          11.231870322784195,
-          -10.766037547196188,
-          9.763481034126256,
-          9.874499147392353,
-          -7.947232122547174,
-          9.683852193165945,
-          11.95949602840915,
-          10.396612421309598,
-          -10.085756956488801,
-          -9.466407006753158,
-          -8.540880974091507,
-          10.621390140838992,
-          -7.105184787747698,
-          9.473619204136078,
-          8.854951013041672,
-          -12.084893900381289,
-          -10.635422407481617,
-          9.743914904525955,
-          -10.580014893114809,
-          -9.53367021462624,
-          9.915619256788611,
-          -10.835958811215068,
-          -11.853570466717064,
-          9.928953012411242,
-          9.766496382028738,
-          10.581083506744033,
-          -8.869889640324821,
-          -12.093491470496094,
-          9.589060531158632,
-          11.209259326092248,
-          -8.039318599702186,
-          10.151371798146142,
-          11.188723480682047,
-          11.177138662599733,
-          9.570210263404412,
-          8.075705723492032,
-          10.301331563673937,
-          8.875610200560043,
-          8.793628847936029,
-          -9.711848780187234,
-          10.185399874844848,
-          10.52192106117407,
-          10.679512814777079,
-          8.142090443155784,
-          9.765973776439637,
-          -8.878370769476522,
-          9.928992758831766,
-          10.634356420445831,
-          -10.087495654469421,
-          -8.704549555595511,
-          -7.651877438685495,
-          -9.922490967762823,
-          11.087498213715362,
-          -9.255190160226178,
-          9.198136877421192,
-          -9.003357344898134,
-          8.133998965860249,
-          9.30109045896339,
-          9.305596654920109,
-          -10.532614234593508,
-          10.044144494214908,
-          10.092203684743136,
-          -9.750650673860983,
-          10.875645073134883,
-          9.725248264308947,
-          -10.617290232593344,
-          -10.64720141494558,
-          -8.464287443582862,
-          -10.639227909380756,
-          -9.256140132288039,
-          10.093326414030424,
-          9.644662163655342,
-          10.144504277309915,
-          8.139997548000363,
-          -10.884514500994081,
-          10.895552436826442,
-          -8.45000170358437,
-          -8.766126458492378,
-          10.858787769848263,
-          10.088649150720338,
-          12.293351132072015,
-          8.852093096989831,
-          10.018023934768308,
-          9.358048494548678,
-          12.216680082981197,
-          10.942287810731523,
-          10.858654544741263,
-          9.35768325544182,
-          -11.341190962317803,
-          10.826548097704892,
-          -10.111708148171395,
-          10.354938362258535,
-          9.599092442243121,
-          9.404216257581485,
-          10.44927784715207,
-          10.512575683915639,
-          8.190630588426105,
-          -8.313193996681916,
-          10.558104100759989,
-          -11.345708127478536,
-          -11.636925355647334,
-          9.15833415133918,
-          -9.835391714910891,
-          8.972918312040669,
-          9.034759232413915,
-          11.482740574790503,
-          -10.10711277697248,
-          10.194477713959989,
-          -10.583814811712255,
-          -7.763398624797173,
-          10.963452888994187,
-          -9.110606368493976,
-          10.58902881767908,
-          -9.487112924492,
-          -11.304812162559134,
-          8.429105387708036,
-          10.910059678320676,
-          -10.25042985245187,
-          -8.558783779024791,
-          10.621954003632831,
-          12.676419092851047,
-          -9.204161636618247,
-          9.126643812169696,
-          -9.861356906810537,
-          10.66001687015919,
-          11.393329933062304,
-          8.904608559145688,
-          -9.157992045400725,
-          -7.485513545319533,
-          -9.77498372246816,
-          -7.7459103974161465
+          -0.996852504086118,
+          0.30928981959862967,
+          1.4554696509252667,
+          1.8396343620733,
+          2.0428936068376773,
+          -0.12118180654556965,
+          1.025486482584412,
+          -0.7262388634216894,
+          1.6368193622499883,
+          -0.19068886747390268,
+          0.21542857347737443,
+          -0.10726281242610702,
+          -0.47284833289628403,
+          1.49392293751981,
+          0.27020162295772765,
+          1.3709225378918566,
+          1.4005615284272375,
+          -0.323494080002404,
+          0.7251446684666267,
+          1.2501079337820282,
+          1.2165677003993258,
+          -0.2632562718179625,
+          0.15788687113845168,
+          -0.0658348823581798,
+          -0.21185474841911,
+          1.8603625020812822,
+          2.031855572327286,
+          -0.04725182960932739,
+          -0.4444706499071607,
+          0.7071668612212484,
+          1.3033344844378028,
+          -0.5544943608119648,
+          2.2693899881696575,
+          2.0774895373344675,
+          -0.2705623534262054,
+          1.1922635009274107,
+          -0.20977642162254573,
+          -0.6428752930286525,
+          0.8103579401517002,
+          -1.1494944071139934,
+          0.8123442588607093,
+          0.9997623309946243,
+          -0.3267165251184123,
+          -0.7022791002992492,
+          -1.0261512493546308,
+          1.6653110351713776,
+          -0.4198621452145799,
+          1.4428341633603265,
+          2.785712348001902,
+          1.7328695095395885,
+          1.781605168624179,
+          0.9307175885759753,
+          1.4611941462018707,
+          1.7241236768687478,
+          2.1175774866043957,
+          1.2266420119352102,
+          1.9621965327032216,
+          0.7140435242578755,
+          1.4732575196650695,
+          0.6337526959783586,
+          -0.28585615738208037,
+          1.136747135968629,
+          2.0163697570601053,
+          0.8687434060391308,
+          -0.1595318843619773,
+          1.917612146117468,
+          1.504969290889258,
+          1.7833364519422343,
+          1.4313645982401602,
+          1.2504367108772023,
+          1.8853785771907308,
+          1.9169126760432682,
+          -0.6583998412645238,
+          0.04516540412466741,
+          -0.6250163710158914,
+          0.7148614184728371,
+          0.5653506580733623,
+          1.102670260485175,
+          -0.07508825848883083,
+          2.3332808546075974,
+          1.6495051762985082,
+          1.4583319653093334,
+          -0.09084856465099178,
+          2.351307494208948,
+          1.7342154447295273,
+          1.6957675474416283,
+          0.07305261936801188,
+          0.49092722987552606,
+          -0.43435720618086204,
+          0.8480702856191314,
+          -0.21457832204623095,
+          0.12694795837517947,
+          0.44239435539387295,
+          1.2199567350538618,
+          -0.1205195715351508,
+          1.6897350828423812,
+          0.5032383776286162,
+          1.076762961536468,
+          -0.041819509091786555,
+          0.36467902287539466,
+          1.502570876558707,
+          1.547881807359357,
+          0.49630387182420577,
+          1.9585449296910156,
+          0.7099681061822017,
+          1.2082752974247295,
+          0.7382145973051947,
+          0.501592298881276,
+          -0.5391996259106318,
+          1.2720046344177631,
+          0.7191258514801557,
+          1.9532422961477036,
+          -0.9709228878772105,
+          0.289011190971479,
+          -0.20689700997429972,
+          2.553359240574414,
+          -0.08930288647367779,
+          0.23996693185138518,
+          -0.100222383543215,
+          1.3396054894408431,
+          2.2252078704053933,
+          0.3080902543056844,
+          -0.2871006010557413,
+          1.0227221568297882,
+          -1.1513808433252355,
+          0.9483384996540181,
+          -0.4069198533959768,
+          2.2575104471424696,
+          0.5583237323084373,
+          1.4766969765214215,
+          0.8321432698470779,
+          0.42759738584973783,
+          2.4897880718708434,
+          1.1730175008146886,
+          -0.15096926109510767,
+          1.5009471239912324,
+          -0.4829946944410304,
+          0.7829891574296981,
+          -0.07567558764103843,
+          2.0624139736104476,
+          -0.2095472675679857,
+          2.198486709918492,
+          1.7860500876780456,
+          0.9201857454797423,
+          -0.1972019974884196,
+          0.21361152206370937,
+          -0.35424322864957425,
+          1.4667755587954765,
+          0.062440053581660604,
+          2.349891818244643,
+          -0.107193025524978,
+          1.2756982961719747,
+          -0.007026275855700037,
+          0.19724281914250663,
+          -0.4327460263706595,
+          0.7883888917510965,
+          -0.6625819966925528,
+          1.504659890863933,
+          -0.213346016179897,
+          0.5358135962737742,
+          0.6257679336671039,
+          -0.17843923707584053,
+          -0.422329451471529,
+          1.1697545295987775,
+          -1.2643738778167535,
+          1.8456239298652029,
+          1.7473532322922771,
+          1.5205539356126812,
+          1.2427183652949525,
+          0.6103044842795422,
+          1.1658819562319191,
+          -0.5676982897018727,
+          0.3035376531335453,
+          -0.891804971131112,
+          -0.7103359392214292,
+          1.6297190674772766,
+          1.6401679866442842,
+          2.150739810419645,
+          1.280967263917682,
+          -0.30219530846784326,
+          1.1384052997711664,
+          1.7926111527348776,
+          1.5682417832847122,
+          0.13441690051825006,
+          1.372903045081701,
+          0.9675872640325478,
+          -0.942630041764239,
+          2.188275616958413,
+          -0.5613971204755828,
+          -0.3848501362320944,
+          1.4429716443138174,
+          1.66187193699399,
+          -0.48578005858746653,
+          0.07460946399129031,
+          2.2669183201594754,
+          1.2205251329931261,
+          1.295075770535237,
+          1.664288504795652,
+          1.5588836893534532,
+          2.4797370773185143,
+          -1.033320760528722,
+          2.5700719473041005,
+          1.390156345809885,
+          1.5034865774848525,
+          0.4607771167433393,
+          1.155574607279326,
+          0.9154069612887727,
+          0.5130470059259242,
+          2.6158573998676578,
+          0.10263290858602925,
+          0.9686479353743969,
+          1.1668800196097386,
+          1.5983525323417918,
+          1.1866000604583,
+          0.590246519534522,
+          1.2942411117296808,
+          1.0114471971437091,
+          0.8949692878744311,
+          0.8510635738069556,
+          0.8934539003395745,
+          1.7908567546680874,
+          1.0047394376545322,
+          1.3865218687305272,
+          2.465462690300039,
+          1.843144032854212,
+          0.8167035672266494,
+          1.5356575261640892,
+          0.7544061002237386,
+          1.2799783997833292,
+          1.1008673740773416,
+          2.0815587740911052,
+          1.1871765186097647,
+          0.7202004914250181,
+          0.11954660490182867,
+          2.007128562155116,
+          0.5613341451987148,
+          1.6528620416605357,
+          0.6434619504526833,
+          0.32764281649539295,
+          0.40003124964014747,
+          2.075529836174179,
+          1.6119604688277673,
+          0.0108973194403722,
+          1.823040957500553,
+          1.3791393217953969,
+          0.07297396151491953,
+          2.5193102721489065,
+          2.335865340419187,
+          2.2573434642753236,
+          1.502627074829948,
+          1.0790123818565402,
+          0.18522208485604275,
+          1.6243457371291776,
+          0.7194929644039982,
+          1.6079601142628681,
+          0.6248625776661267,
+          0.4490462208164444,
+          1.5822962379490533,
+          0.02002972821793869,
+          2.3526978049513323,
+          0.4780252624006688,
+          2.9887777917845915,
+          1.5261854216092436,
+          1.3857168516392953,
+          0.8691952027931668,
+          2.055691567136683,
+          2.359273946937293,
+          1.2620346720131819,
+          1.4173203493118878,
+          0.8564218554900493,
+          0.8163826828822345,
+          1.925914309903114,
+          1.837941556211733,
+          1.3409257738415867,
+          2.413613094825073,
+          0.4985288761138835,
+          0.7046838104135686,
+          0.3765056983248004,
+          2.9087077887989112,
+          1.2446320661416517,
+          0.5320172440711787,
+          1.294018316365273,
+          0.44577516919466653,
+          1.5315711145851485,
+          2.02834408457544,
+          1.5597735511955442,
+          0.10282048211159533,
+          0.6124327393143341,
+          0.07007670772913777,
+          0.22505160415352832,
+          1.922396434783839,
+          0.9948109955646393,
+          0.6853666755587242,
+          0.6466041265483731,
+          0.262779867228661,
+          1.5642439907935446,
+          1.8648793637317964,
+          2.0649575803133198,
+          1.765002693580102,
+          1.6618805331179636,
+          2.4500439161468606,
+          1.9211245418382108,
+          2.5072830307985923,
+          0.11001680663871127,
+          1.994184450056475,
+          2.5287396363081416,
+          1.1461613150773131,
+          0.4962785575000054,
+          1.3184782035736986,
+          1.7825666534166071,
+          0.23046768606638535,
+          1.532404347896594,
+          0.7680396181635015,
+          2.2490145154190544,
+          0.04355679347078212,
+          1.7912502882113364,
+          1.356408574586078,
+          0.30863156885183185,
+          0.8970273111179294,
+          2.272358432214654,
+          1.811484721229168,
+          2.512965279152834,
+          2.0812742934999533,
+          1.7130110633242315,
+          0.04583565879938811,
+          1.5196514325980892,
+          0.6976636027122247,
+          0.5433948461152378,
+          1.6599815947510326,
+          1.1258586542242264,
+          0.24547211666083135,
+          1.7465128801796947,
+          0.306958059053297,
+          0.3076128169237087,
+          1.5104474310894007,
+          0.7858870987975339,
+          1.8106680127387333,
+          0.35494115811255533,
+          1.2180224866714124,
+          0.5001424816901909,
+          0.5355334636608606,
+          0.8302689881840298,
+          0.521312266691057,
+          2.0616650014321385,
+          0.52431578346125,
+          0.32126996266718266,
+          0.9592001224519632,
+          1.2817312586433778,
+          0.7210981793108558,
+          1.153914620722227,
+          0.23035361149785205,
+          0.15156104846758922,
+          0.44231688602017494,
+          2.166495338745963,
+          0.2510669724859965,
+          1.8089896686248323,
+          0.29445219672230627,
+          1.7197899440248121,
+          2.5365223258306457,
+          1.4254477541564305,
+          0.8637141944122735,
+          0.558482407390212,
+          0.4208715827701415,
+          0.32869490405032165,
+          1.0266964379503232,
+          1.2891995053082772,
+          0.8714980900812856,
+          0.6541750167979583,
+          0.9806901534202898,
+          1.3918107698826696,
+          1.0132858611457993,
+          0.9871669288582886,
+          2.3702096186009802,
+          0.4202067127635837,
+          1.3329143468436793,
+          1.986175546157599,
+          0.48164109492364593,
+          2.2056024364713984,
+          2.0320697829964605,
+          1.1111214120073007,
+          0.9282816739223078,
+          0.14103329134474274,
+          1.153553389372702,
+          1.6051340484651297,
+          0.9897175850843769,
+          1.722234430614332,
+          1.2094005654486826,
+          1.0393033963165053,
+          2.1096888746920346,
+          0.5536442207275376,
+          0.6455974337709156,
+          2.0367200023859384,
+          1.6414562696744888,
+          1.2652544293930232,
+          0.8352379556894511,
+          0.9717710228121735,
+          0.7375931626701454,
+          0.2635530497576142,
+          1.4166470556041095,
+          1.693051317376568,
+          1.090443069619739,
+          1.7284931223725775,
+          0.14634755149726686,
+          1.5511721163088705,
+          2.138156482028851,
+          1.470479059976004,
+          0.4743804997895954,
+          1.9774992217850338,
+          0.5645551483335455,
+          1.2498015745490139,
+          0.5812119388754677,
+          1.672278597216564,
+          0.3584047251162812,
+          1.307199733994125,
+          1.9300669356137512,
+          0.6652673360033972,
+          1.9048659423565164,
+          0.8659002056195196,
+          0.07847921658483636,
+          1.4355283858377417,
+          1.0067514841490504,
+          1.516302692916121,
+          0.2941284512388692,
+          1.8335460480963137,
+          2.344397916278565,
+          2.327382089454537,
+          0.9797290336312088,
+          2.258533698115563,
+          2.1578093650373704,
+          1.2109875181979541,
+          2.013320338338736,
+          1.3687264366472247,
+          1.8466412582138623,
+          0.9250193777316408,
+          1.4027872104646073,
+          1.68932120015719,
+          1.9079643304395177,
+          2.228216121215447,
+          0.39933795857158416,
+          1.0726461707981474,
+          1.1250117802260915,
+          1.0285916497283358,
+          0.6983662110720582,
+          1.0776905045048712,
+          1.3230079302786073,
+          1.1199180585617967,
+          1.8641939113769816,
+          0.017989009885319485,
+          0.12244291355678749,
+          0.6739837917528377,
+          0.13465370981645686,
+          0.7069785450914838,
+          1.0877533853315675,
+          0.5381125730018619,
+          0.1927518478383472,
+          0.5322025939380679,
+          2.2024444663755336,
+          0.8676201732537941,
+          1.2477806136457872,
+          1.1450894752785692,
+          2.3643276156553252,
+          1.4030374809789616,
+          0.7567624328409879,
+          0.015398127021390207,
+          0.7853708533526669,
+          1.1158959631978305,
+          1.6078521740186877,
+          0.3780012607032488,
+          1.4130914763325926,
+          1.4846024721970694,
+          0.15522718421460258,
+          0.7917815382337481,
+          0.10223105477456995,
+          0.4376233290033361,
+          0.022389020111879487,
+          1.1718398009903743,
+          1.1950351818880234,
+          0.9489989116081483,
+          1.2391297974404805,
+          0.638111066640833,
+          0.8789326320482163,
+          1.5867153784129417,
+          0.9251291513337145,
+          1.6612378358480577,
+          1.211546407655297,
+          0.9297082154437439,
+          0.8157974839780018,
+          1.645341193010191,
+          1.3928803576360431,
+          1.0661090852900916,
+          1.961436467302664,
+          0.3785997350656347,
+          0.8918907331679278,
+          1.1941231669480354,
+          2.135129160026896,
+          2.4175075492517397,
+          0.43222853304728504,
+          1.6296793660940012,
+          1.0484648181708673,
+          1.208486643187479,
+          2.611852136882538,
+          1.5863643019882592,
+          1.0017749789379267,
+          0.9423506009966857,
+          0.7164995375469193,
+          1.868869371053054,
+          1.5023376943442774,
+          0.5236184323893729,
+          0.7741829781740108,
+          1.2494951194181714,
+          0.8438664538823775,
+          1.0746563560378402,
+          1.2235290989661547,
+          0.7200170748833886,
+          0.8058202972221162,
+          0.5840506122363034,
+          0.7881039749892857,
+          1.3814499132375457,
+          1.3114776294940789,
+          1.388354274108895,
+          1.7582519895420146,
+          1.039834365230547,
+          0.12887667109113676,
+          1.3956067628172497,
+          1.1379294369378137,
+          1.0750844044856054,
+          1.1612037182365371,
+          0.1011318129829254,
+          0.2579558003211011,
+          2.160997303083141,
+          1.1416823104131182,
+          2.918008537394588,
+          0.8716535304224,
+          0.9112931734915772,
+          1.3415514511376878,
+          0.49848035866535,
+          0.1342169247607501,
+          1.4602376344992363,
+          0.9240943402337392,
+          1.0847898445681015,
+          1.3302741226678374,
+          1.2451258678475423,
+          0.31969402330223606,
+          1.9644824089637019,
+          0.8902642312791152,
+          0.2370961761566207,
+          1.4606680729012913,
+          0.9502552016394541,
+          2.0662257763001506,
+          1.433764172564374,
+          0.9998124487906002,
+          2.648538970242019,
+          2.73445367311637,
+          1.067102590522378,
+          0.8352376629991352,
+          1.051569866269236,
+          0.09118431668434368,
+          2.0010398348802916,
+          0.5788040350862063,
+          0.6609276680374216,
+          1.2050521920267283,
+          0.7367216207693732,
+          0.4868681111760669,
+          0.9449207942089388,
+          1.3116454611817898,
+          1.456790414444097,
+          2.4900924819587855,
+          0.9241072788541174,
+          1.1853399600261643,
+          1.4554402909564756,
+          1.2287117599070965,
+          1.124695107572223,
+          1.135193904201935,
+          0.3712488269542271,
+          0.9451042460273626,
+          1.5383829794045418,
+          0.8013127991690172,
+          2.5415533139294277,
+          0.665485345699169,
+          0.6733054615364759,
+          1.7303134354946648,
+          1.4465121555910525,
+          2.060855805325671,
+          0.11632175481743456,
+          1.8590423691006068,
+          1.1471876323649952,
+          0.9787736484035314,
+          0.7509474506084338,
+          1.0227405325524113,
+          2.6957026540496503,
+          1.8004450167872457,
+          1.6836297487873255,
+          1.4233572646133352,
+          0.44298033452251706,
+          0.8488776614542344,
+          1.3628633014309806,
+          1.2743755154810388,
+          2.6321699651177948,
+          1.9905032974417998,
+          0.8998837823436254,
+          0.5270759854541667,
+          0.40271648071232036,
+          0.1940867253794034,
+          1.5569972324164452,
+          0.47737212788646255,
+          1.7601670836596717,
+          0.6565275217591314,
+          1.17420989873298,
+          2.1436050474616977,
+          1.9360970968396598,
+          0.173304015187553,
+          1.402329722767669,
+          0.7400602297915846,
+          1.8200522255981775,
+          1.0840884239610695,
+          1.0374582465190958,
+          1.3827935599495071,
+          2.0395074410452425,
+          1.7815541468748863,
+          1.6368106398110807,
+          2.3836710806905628,
+          1.3034524701768606,
+          2.3731056880711163,
+          2.0574100213553708,
+          1.2782245279452373,
+          0.03469541681755994,
+          2.1296777034861596,
+          1.9262236998579547,
+          2.2804507972704715,
+          1.3776892420330584,
+          0.9350768947348421,
+          1.0171659466464273,
+          0.39096713587639587,
+          0.4695242170821161,
+          1.175290494545878,
+          1.6546452481716276,
+          0.859589367733691,
+          0.42409892855299225,
+          0.6254062665175271,
+          1.1854939250160195,
+          1.8111493332823367,
+          0.791108857378228,
+          1.9775497137750493,
+          1.667827897996095,
+          1.0941334940773482,
+          1.771762858063251,
+          0.9723945124417541,
+          2.1520265046707454,
+          1.4956522670126315,
+          2.1849978245183497,
+          2.442011345176984,
+          1.2200867775537036,
+          1.0236001161121118,
+          0.4181384271683114,
+          0.267364464616652,
+          1.6417141225964849,
+          0.5710591320939051,
+          0.6030230360024015,
+          0.45757478106503524,
+          0.2480355404210708,
+          0.7530068388525052,
+          2.099002657569735,
+          1.1407634908028181,
+          1.9996556918598034,
+          0.4870589030090883,
+          1.173204442753556
          ],
          "z": [
-          8.745789601862171,
-          7.158400186377417,
-          -9.247494466182351,
-          -10.293203918735216,
-          -10.150949439316527,
-          -9.827789468986055,
-          -10.534715372422877,
-          -8.354824446183644,
-          -11.351528202785204,
-          9.311778520953764,
-          -10.438796704308487,
-          -10.187273192057777,
-          -9.891001332702222,
-          -11.3930641989846,
-          -8.697032643271582,
-          -10.509981731386649,
-          -9.073080009280243,
-          -8.885396942270027,
-          9.621322384420193,
-          -10.160136280694054,
-          -9.99753192691284,
-          -11.200093630838136,
-          -9.8933857651015,
-          -9.395752721464994,
-          8.137303660454297,
-          11.05575998576117,
-          -9.39371908641753,
-          -9.961659486871929,
-          -10.254541115369195,
-          -10.484992647569733,
-          -10.666243109172415,
-          10.201239635332511,
-          -9.999252887574988,
-          8.103520810913576,
-          -10.441728852317965,
-          -9.519508748434598,
-          -8.155662289372977,
-          -10.314212721324871,
-          9.382087441624652,
-          -10.347842197493033,
-          10.751215679450038,
-          -10.851176131400878,
-          -8.832721547262732,
-          10.66044378693355,
-          -9.748154336126428,
-          -10.543067078799023,
-          9.935733330217458,
-          10.413659547787077,
-          10.031276664047468,
-          -10.177935886260109,
-          8.973171799944431,
-          -9.506259158910837,
-          -9.35942208424523,
-          -10.117123951740204,
-          -9.246466928968754,
-          8.725390179396452,
-          -10.170967960266216,
-          -10.042456998583985,
-          12.4658832240028,
-          -9.05679847343816,
-          -10.067157958133746,
-          -9.71578358396437,
-          -8.634319886361933,
-          -10.176631093986803,
-          -11.487021564582136,
-          -10.168333775552359,
-          -10.339264874013733,
-          -10.273071239373458,
-          -9.780410236629734,
-          -10.068529483409089,
-          -10.774691190148902,
-          -10.596102447482199,
-          -9.496959238653123,
-          -10.002164369176999,
-          10.60600016261819,
-          -11.379864090334225,
-          -10.748040512579484,
-          -10.645551239700078,
-          -9.842422751920747,
-          -8.353952674572383,
-          -9.415735544695536,
-          -10.515570900078508,
-          -9.120541709355622,
-          -9.044935696936149,
-          -11.059803847064705,
-          8.06584246002939,
-          -11.44740627484091,
-          -9.477412902564938,
-          -9.694634611299643,
-          9.816336695145214,
-          10.91027481408123,
-          -9.432100734432785,
-          11.184332884441147,
-          -9.240395473234354,
-          -9.332855913340115,
-          -8.16248165758845,
-          -9.393202411301273,
-          -9.943587772219189,
-          -9.510012288381004,
-          -11.141525765481974,
-          -9.494025269915154,
-          -9.517037038838964,
-          -9.638465816127606,
-          -9.953183990329498,
-          -10.197380970007611,
-          -10.868485869979386,
-          -10.891956626941647,
-          -10.66515820518668,
-          -8.848009794037866,
-          -11.00146267891643,
-          -9.164488538108426,
-          -9.376319930279097,
-          -10.89230413220259,
-          -10.203403901559795,
-          -11.032846808880244,
-          -10.178948989793028,
-          -11.586873786639517,
-          -8.141825837355963,
-          -9.33107072340622,
-          -10.586892078333866,
-          -10.977496598550653,
-          -10.8415770528818,
-          -9.223562807167777,
-          -11.268434252240851,
-          -9.422220790435441,
-          -10.700402242718576,
-          -10.215778631350224,
-          -9.457871046404346,
-          -8.62561595691244,
-          -11.674946852955111,
-          8.680949916952182,
-          -11.527509234333507,
-          -10.31746205139367,
-          -10.465012627896407,
-          -9.39433696791512,
-          8.861416815481144,
-          -8.944616079747382,
-          -9.676095236617142,
-          -9.321084805977177,
-          -10.520636859847597,
-          -8.046629591273765,
-          10.245114763868708,
-          -9.58270131873681,
-          -10.70511948018215,
-          10.356371486661786,
-          -10.200306785910744,
-          -10.770747547166575,
-          -10.181418987358624,
-          -11.264592474943953,
-          9.580466121371867,
-          -10.491582480300547,
-          9.591885695310994,
-          -10.704275237540665,
-          -10.7331102681871,
-          -11.078140344175216,
-          -8.45722465783254,
-          -9.7533799499968,
-          -8.530333765627773,
-          -9.685347739674512,
-          -9.784908254679651,
-          -10.787318584871091,
-          -10.369378163318963,
-          -11.58750210609391,
-          -9.6954121073276,
-          11.3741067861326,
-          -11.019411035605396,
-          -10.424588296348125,
-          -9.532428451191834,
-          -10.7244668394209,
-          -8.982436578388887,
-          -10.642183372571482,
-          -10.133264488807873,
-          -9.811988187190991,
-          -9.133319990129895,
-          -9.382507294326018,
-          -10.073464351500013,
-          -8.576898907443784,
-          -8.85635737764218,
-          -9.249594604875067,
-          11.345386276028645,
-          -11.086940324048767,
-          -10.214876401784862,
-          -10.236278154417851,
-          -8.140955629348667,
-          -10.077292668614719,
-          12.435651370460368,
-          -9.338889376586826,
-          -8.361693930430162,
-          -7.903114659563457,
-          14.35199750310542,
-          9.044964871901708,
-          9.274701082941803,
-          9.86511808538759,
-          10.10243742176826,
-          8.588666901829109,
-          10.282346727329612,
-          -10.0081801924711,
-          -9.58448279044976,
-          -9.819786325570085,
-          -9.441081384461029,
-          -10.107365665723021,
-          8.433565940680783,
-          -10.136153353269469,
-          -10.1355033884624,
-          -10.95907808682427,
-          -8.917468396629527,
-          -10.21073967032745,
-          8.172413407074993,
-          -8.972952540325275,
-          -9.664826928433438,
-          -10.551674844083092,
-          -11.097746016816362,
-          -9.89783088829122,
-          -7.887968897085204,
-          12.160997542440628,
-          -10.200923566057307,
-          -10.79257699993426,
-          -9.617139832926783,
-          -8.620777007384474,
-          -9.791862945969521,
-          9.181708881902104,
-          -10.356161094297915,
-          -10.398564635583595,
-          -10.66943495395878,
-          -9.333537494897639,
-          11.281040394177271,
-          -8.047084385585503,
-          9.785577566722875,
-          -8.874575242590517,
-          -9.490048921340444,
-          -10.643567115455342,
-          -8.292307967973086,
-          -9.739818443738356,
-          -9.431894649437528,
-          -10.342601092620937,
-          -9.99590316093207,
-          10.684933833885536,
-          -9.6474120346935,
-          -10.270286086282546,
-          -9.643529867631365,
-          9.78115744532872,
-          -8.26278652758029,
-          -10.695742736698028,
-          -10.06357776692326,
-          -8.001985162351449,
-          -9.80132083367861,
-          -8.882998092032775,
-          9.34548875352372,
-          -10.090975604156531,
-          10.471419638313002,
-          -10.02256542212564,
-          -10.7470479601506,
-          -11.512519039358637,
-          -10.19009266935986,
-          -8.38337519267167,
-          -9.956156001494236,
-          -10.055666720156086,
-          -11.54658081994166,
-          10.353420686992559,
-          -6.046158415411275,
-          11.454854608909594,
-          -8.630752178452317,
-          -11.51094129196149,
-          -9.863701063224616,
-          8.550157307541648,
-          -11.035049044835365,
-          -8.983786811928196,
-          -9.279524630745842,
-          -11.114866615612877,
-          -10.332651316853982,
-          -9.766549294825602,
-          9.996674949348828,
-          -10.266341454410957,
-          -9.345086157769444,
-          7.914495264064829,
-          -8.123120855110354,
-          -10.063104247169916,
-          9.576196110208206,
-          -10.374373523983435,
-          -9.875476450157493,
-          -10.007573623796324,
-          -11.367571660793962,
-          -10.709990593903425,
-          10.192142091359216,
-          -10.896573532854115,
-          -9.840911348311106,
-          -9.074950858595267,
-          -10.559927801519308,
-          -10.21382987038688,
-          9.368717395270828,
-          -9.713083958490913,
-          10.880750824913239,
-          -8.059569734425232,
-          12.502781700513356,
-          -10.684911731060884,
-          -10.013170150134883,
-          -10.08135060499307,
-          -8.671989037456301,
-          10.338398401725398,
-          -10.293828182614604,
-          -10.917187118022367,
-          -10.028879200304944,
-          -11.38902060560279,
-          10.093331476976063,
-          -11.52098925140811,
-          -9.485980495359815,
-          -10.124383997142159,
-          -10.351196762889202,
-          -9.695897841969698,
-          11.68070086296171,
-          10.452059226111997,
-          -8.724334127158802,
-          -10.888084427686902,
-          -9.846276186493435,
-          -11.109373002053148,
-          -9.514141066101871,
-          -9.1743354332799,
-          -9.612986421273796,
-          7.540107426432847,
-          -9.503337050000257,
-          -10.898931883316239,
-          -10.420640874304144,
-          -10.500413309804408,
-          -9.84988406657767,
-          -9.755475957609969,
-          -9.806630676302962,
-          -10.371366565894919,
-          -9.957447248699097,
-          -9.981455568882609,
-          11.324086780624619,
-          -9.843434773694188,
-          -10.086027553980578,
-          11.596073189465123,
-          7.361568772766718,
-          -10.317966587686206,
-          -8.968172392904474,
-          10.360748852296288,
-          -8.630610180697103,
-          -11.36099125525466,
-          -9.627770058189782,
-          -10.120218552113613,
-          -11.026852761472487,
-          -9.325124832429609,
-          8.98925017869059,
-          -10.449684449332128,
-          -12.113500417958395,
-          -12.094676200590005,
-          -8.825348880875026,
-          -9.959190315718388,
-          -11.271409431917425,
-          -10.460950702222778,
-          -9.60144096750002,
-          -11.851957995857177,
-          -9.641042776873693,
-          -9.180240154588478,
-          9.80847694022804,
-          -9.996404073714327,
-          -9.404780275942098,
-          -9.346618283892937,
-          -11.079836037236698,
-          10.234442227590913,
-          -8.412031234523218,
-          -11.534139668061105,
-          -11.89824704535632,
-          -9.118537808080712,
-          -8.914542188794018,
-          -10.596353535330747,
-          -7.829182313877295,
-          -9.942752356499735,
-          6.0045955464308935,
-          -10.822784906801946,
-          9.432980139209775,
-          -10.13392924540745,
-          -10.125064707518947,
-          -8.65436178652624,
-          9.064683835956627,
-          -8.29818879634468,
-          -11.023115182036705,
-          -8.29692098944246,
-          -11.273425623915855,
-          -10.339537459158725,
-          -10.060339239105286,
-          9.136690013513057,
-          -10.437755652851903,
-          12.426331586779277,
-          -9.705864497165624,
-          -10.303249730983431,
-          -8.842431598935946,
-          11.805804261903926,
-          -9.522735583634436,
-          -9.199363358919276,
-          -9.373066254369899,
-          10.450517520077033,
-          -10.313378761601605,
-          -10.962688326734956,
-          -10.689589088962062,
-          -9.482225332966104,
-          -10.517780028526303,
-          -11.411096367318386,
-          11.275287574864302,
-          8.93688166914238,
-          -10.433428787276242,
-          -10.152104106456106,
-          10.162898679806009,
-          -10.319836956496738,
-          -11.586314003237725,
-          -10.01950605467256,
-          9.714017604854158,
-          10.012509055507246,
-          -9.884472420014502,
-          -9.253584291110315,
-          -10.108558684199217,
-          -9.419079245678493,
-          -10.979330191209845,
-          9.831437687125925,
-          -9.294608644014362,
-          -10.439474952240216,
-          -10.960792864312468,
-          11.134734055384891,
-          -11.574790689735726,
-          -11.490170736909802,
-          8.887556408266203,
-          -9.149951043268102,
-          -10.588751557590285,
-          -9.663071060548935,
-          -10.005833604985094,
-          -10.730774968126118,
-          -10.410234046194335,
-          -9.746282249649157,
-          -11.508115225552533,
-          -11.180847505286764,
-          -10.775378937133114,
-          -10.099146643577665,
-          -10.156745461072461,
-          11.630434765996172,
-          -9.141371353347672,
-          -10.353393536601052,
-          -9.590249065842995,
-          9.818206853272391,
-          -10.321545055963828,
-          -9.747250693064178,
-          -8.422026044879813,
-          -8.994279093932906,
-          10.754361191407567,
-          -9.562114358741935,
-          -11.19755180465356,
-          -11.050748323270813,
-          -9.97117802865256,
-          12.184139169870319,
-          -11.586522980294959,
-          -12.537909398622546,
-          -9.24432071695717,
-          -11.014950336874094,
-          9.736333686703277,
-          -10.0283421161714,
-          -8.99967824787888,
-          -10.052982814085272,
-          -9.768782449046263,
-          -11.271396847702661,
-          -10.249952101847407,
-          -10.038324461820633,
-          -9.558089482251688,
-          -10.767067118248162,
-          -10.924918392299844,
-          -8.865564809226788,
-          -9.34808150471462,
-          -11.377710427457542,
-          -9.810327424687374,
-          -9.091152189392163,
-          10.75557803389818,
-          -10.522480148756934,
-          12.7037044540486,
-          -8.28228983583283,
-          11.467307228630778,
-          -8.525850778207168,
-          12.216284026517226,
-          -8.084710970326672,
-          -8.781552874002656,
-          -11.076271979110546,
-          10.771119864009325,
-          -9.93115404365544,
-          -10.340678977642508,
-          6.786528710481192,
-          -11.861533232425282,
-          -9.382410676230492,
-          -10.119824554129478,
-          -10.381028540520555,
-          -9.74898012796876,
-          7.221584792139421,
-          -8.990505037425745,
-          -8.626424217048704,
-          -10.549783204098393,
-          -10.277455966226563,
-          -10.269176253488013,
-          10.952100226104712,
-          -11.633653989734166,
-          -9.66268372814199,
-          -9.839206245865388,
-          -10.411695915564405,
-          -9.70995027504241,
-          -10.012986194542034,
-          9.93022832934528,
-          -11.148350391946188,
-          -9.86067522430307,
-          -10.890449199475679,
-          -9.95683822089477,
-          12.442394619907004,
-          -9.601271630920738,
-          11.205135410960802,
-          -9.885989137429055,
-          -10.210675118265232,
-          12.242618514095994,
-          9.33020492822672,
-          -11.526600091401255,
-          -8.642150518471619,
-          -9.323477450950593,
-          -9.204323487604391,
-          11.373424377541959,
-          -10.439798768804382,
-          -11.634229016416874,
-          -9.400341603212611,
-          -8.701581224111534,
-          -10.514037279804649,
-          -10.236483043323977,
-          9.495910666398727,
-          -7.029535944187465,
-          12.155650311543864,
-          -8.548676608391325,
-          -10.135810035360318,
-          -11.065457303710865,
-          -10.001479241805379,
-          10.833610690011154,
-          10.398888490810805,
-          -9.93190409349966,
-          -9.341133041564,
-          -10.037553293129886,
-          -9.368774640863954,
-          -10.600800995654197,
-          -10.722761336250842,
-          -8.580006371762845,
-          -9.803183833212142,
-          -10.253001518348237,
-          -10.3557532411545,
-          7.123685497316224,
-          -11.024650490076118,
-          -11.647829622690002,
-          -10.785765550079297,
-          8.223058753330173,
-          -9.578049694981408,
-          -10.678033755565218,
-          -8.66378145186717,
-          -11.365053770364234,
-          -8.932250735861407,
-          -9.590129049517094,
-          -9.666756550796878,
-          -9.379693925438023,
-          10.69362875616199,
-          -9.93051927301569,
-          -10.098166522215482,
-          -10.266253824135655,
-          -10.86174823520858,
-          11.381610519526744,
-          10.45475442211446,
-          -11.01621483653248,
-          -9.193904361928144,
-          9.795190928359585,
-          -10.286254197141847,
-          -11.595706145685341,
-          -11.099157060048954,
-          -10.376005057737284,
-          -10.698961659159162,
-          -8.912293086087393,
-          -9.344498386630294,
-          -10.139732391865333,
-          11.94622789536227,
-          -9.615285828758193,
-          -10.575901709050036,
-          -9.839842610016484,
-          -8.294670308217473,
-          -9.68375711949917,
-          8.933709924581347,
-          -9.836505388136711,
-          -10.328520735505606,
-          -8.254586101205307,
-          -10.286976848745734,
-          -10.665595858649816,
-          -10.097214554257118,
-          -9.865608516927606,
-          -8.402142138417517,
-          -10.578649909268577,
-          -11.558512381389233,
-          -12.060812456015434,
-          -8.715562124827597,
-          -10.354596042512304,
-          9.564549441954812,
-          -10.413006208710987,
-          -10.877247595514365,
-          -10.784046927144574,
-          -10.454346944332976,
-          -10.585062202643421,
-          -10.9520223907837,
-          10.881943603603752,
-          -9.31598449435264,
-          10.20485828948726,
-          10.719215484035232,
-          -10.035898735900084,
-          -9.993575636614862,
-          -10.26465750226131,
-          -9.326087823135747,
-          10.262184335705985,
-          -9.54725555927956,
-          -9.106592920948449,
-          -10.550339584036653,
-          -11.252001405269409,
-          -9.974900355222056,
-          -9.559368529078224,
-          -10.568455959716342,
-          -9.720565189075138,
-          -9.018098069259496,
-          -8.771473840369087,
-          -9.133101677347033,
-          -10.468707343986722,
-          -10.449918510975833,
-          9.529506721843116,
-          -10.234122748269744,
-          11.600207922709961,
-          -9.75976473752711,
-          -10.050630452512726,
-          -8.953767354831015,
-          -11.194238771216577,
-          -10.472460896101168,
-          -9.75580091334041,
-          10.542009524545085,
-          -11.123027203777742,
-          8.251157944593452,
-          -10.389736116632974,
-          -10.081240252588271,
-          -10.710032000404924,
-          -9.675377801504265,
-          -10.631993317488499,
-          -8.729049676253949,
-          11.201545427591194,
-          -9.79942886901531,
-          -8.852450696498948,
-          -9.312672048203813,
-          -10.300752767358203,
-          10.325483626404248,
-          -10.650548905609918,
-          -10.249456803037553,
-          9.995390532125253,
-          -10.533564250644202,
-          -10.815077912742314,
-          9.942802678593443,
-          -8.166279904406151,
-          -9.969534733989791,
-          -10.327651041809638,
-          9.981512859758881,
-          -9.930974133147085,
-          8.67823689169686,
-          -10.33324291562229,
-          -9.870979069602567,
-          -8.877596854086933,
-          7.526498332254491,
-          -7.7931206988837065,
-          11.140694311745486,
-          -9.670926954688568
+          2.38736462776051,
+          0.7567952069551396,
+          0.5129380321612294,
+          -4.990613962755746,
+          -4.88511761536151,
+          2.332299888939807,
+          2.943309789620895,
+          1.710029624079894,
+          -4.375025556183363,
+          1.9195959612454452,
+          -1.7963950994038642,
+          -4.902556141620461,
+          -2.3463903735950264,
+          0.24179392125701682,
+          3.438964668051243,
+          0.6355190255613303,
+          3.294806273244502,
+          -4.538268676618127,
+          -1.811871196112107,
+          0.9947540451752603,
+          -2.4680833199063223,
+          1.2348012015071061,
+          -1.3311058065698158,
+          2.617507371660362,
+          2.059129338643862,
+          -3.5772215951031128,
+          1.9934899425721682,
+          -0.20837095293810926,
+          -0.6540975370450957,
+          -3.2028538243350377,
+          -3.535442516859046,
+          0.5899069757605071,
+          -4.470430771440908,
+          -1.7348040686623398,
+          0.5525074489840458,
+          2.05110005535468,
+          -2.0837657521034814,
+          -1.3156992608250189,
+          -3.1403631919388597,
+          0.1443582923084188,
+          -0.6020446050223933,
+          -0.4371534824493759,
+          0.17408962448132126,
+          -2.010278969545043,
+          -3.8604897012131314,
+          -4.588041254219403,
+          -2.002882417753199,
+          -0.7590590738115512,
+          2.368232735186523,
+          2.381698855190578,
+          -1.3138696282654267,
+          -3.044304153640226,
+          -0.9511687707541654,
+          -2.7000722535387642,
+          -0.03343722158740281,
+          -4.27391239824548,
+          -2.1089446519907793,
+          1.4385149769726393,
+          2.068780492056998,
+          3.38439497787874,
+          -0.9989145849551662,
+          2.4109757406663332,
+          2.018559181881712,
+          3.06655877315605,
+          -0.28486104222211317,
+          3.214000474596965,
+          -1.5921974961838816,
+          -4.616631309885782,
+          -3.602825994565726,
+          -3.6603092440214064,
+          3.061881349719954,
+          -1.3229330725054873,
+          -2.461356077740148,
+          0.8733250214409036,
+          -2.3296021018445474,
+          2.7067006197016408,
+          -3.6700447327802386,
+          -4.290020413486475,
+          -2.882933740645164,
+          3.4318659616732443,
+          2.268070376561755,
+          -1.902045094046506,
+          0.6565956850558479,
+          1.3842208267823484,
+          1.4765892092566792,
+          2.5387631057928255,
+          0.9278671429752814,
+          -2.659759819251551,
+          -0.3111376626433291,
+          -1.6802557568928846,
+          -0.9839210009948998,
+          0.4588544825909757,
+          -2.8694130752962557,
+          -2.4019946774590184,
+          -2.8733635758285483,
+          3.341458186428543,
+          1.8679769700780628,
+          0.8376873903951898,
+          -3.679454966445376,
+          1.4425324867625973,
+          3.0805061012579724,
+          -0.9488406811859988,
+          -2.325419730000381,
+          1.7953220022855723,
+          1.8657398754469137,
+          -0.8653312449841213,
+          -0.7470126266665247,
+          -3.9731389180993544,
+          -3.4399137581313877,
+          -2.343139633443368,
+          -1.4116200206679874,
+          2.99043130440515,
+          -1.3994037960257701,
+          -2.825845942929876,
+          -0.5642551735112384,
+          0.7277831111608819,
+          -3.652416388662386,
+          -0.7515494142380232,
+          -0.7879576846628815,
+          -2.418821981116567,
+          -0.6216872230288573,
+          2.757441187736365,
+          1.9461110332211096,
+          3.3049520980131035,
+          0.36141516602390666,
+          3.363724405406897,
+          -0.12733740701598517,
+          -3.972527605092748,
+          2.656012616308036,
+          -0.29285469258394325,
+          -1.128659937771073,
+          2.328847131083954,
+          -4.842017765507072,
+          -1.5768924873533843,
+          -4.50908206730854,
+          -0.9046014782842642,
+          1.6385613316450502,
+          -4.270424968067948,
+          -0.8538497991602485,
+          3.1149181622598334,
+          -1.3539310485139184,
+          3.0757414306487583,
+          1.607788245517546,
+          2.433507970419341,
+          -2.592893411736123,
+          -4.71548151200229,
+          1.9995758801458807,
+          -2.386085537678044,
+          0.18227703564375108,
+          2.6415995237089414,
+          3.0908775545658447,
+          -0.6239156889920237,
+          -1.3516720164891436,
+          3.360811205673347,
+          0.9477502954995094,
+          -1.3875383483088677,
+          1.7109729721084905,
+          -4.799842768854222,
+          -1.3989136819136005,
+          1.9176887863187915,
+          0.948223834830098,
+          0.5074010328390752,
+          -0.5963470155539294,
+          -1.5257356415637071,
+          -4.193428250532061,
+          0.43265056750537223,
+          -4.947017323422195,
+          1.3880750411404241,
+          -2.5628254657075313,
+          1.6531717346499208,
+          0.8383344003323927,
+          1.145614902297205,
+          -3.5857844747607697,
+          -3.2146263033377522,
+          -0.0808139729475652,
+          1.8531340464041444,
+          2.3880437288659024,
+          -4.645594409222349,
+          2.3038097372035207,
+          -2.43115529397177,
+          -4.067124831401456,
+          -2.947112497232926,
+          -3.019422888439246,
+          -2.38862851037967,
+          0.3146036120104725,
+          -0.9356129562429905,
+          -3.720361264990176,
+          -2.46723736886081,
+          0.8345930752763069,
+          1.821270295068219,
+          -4.685824037436549,
+          -4.908657632335221,
+          1.181556049093797,
+          1.9059878321755974,
+          -4.9041330337192255,
+          0.3604018981880994,
+          2.629866962553489,
+          0.9923501175776162,
+          -3.813981310396107,
+          -1.1087371303325915,
+          2.4375876753978796,
+          0.05739944056666779,
+          0.6288349004237048,
+          -2.238805686643766,
+          1.062816155399755,
+          -4.379463304733345,
+          3.3315106925439313,
+          0.3226248580943256,
+          -1.5290683765578703,
+          -0.5194533769515672,
+          0.1419609795746215,
+          -3.2181700664122035,
+          -4.909181581051999,
+          2.279990259005432,
+          -2.0618368477940483,
+          -2.0873212946100743,
+          -1.4667636015242174,
+          2.255019956204615,
+          -4.5821616378513825,
+          3.2074727277295665,
+          2.235690252555722,
+          1.5672533189948368,
+          3.1235285554223076,
+          3.252172068294927,
+          -1.9341915352931913,
+          -4.261929798680735,
+          0.12413100434212865,
+          1.1739674483786775,
+          0.6277132342387199,
+          0.9878219661008449,
+          0.1844863228683824,
+          0.4499119662708271,
+          -2.504202251373774,
+          -4.506485720005489,
+          -1.5969152786989786,
+          -2.3579222883954016,
+          0.3267305664235396,
+          2.3746065257941433,
+          0.1561090258608333,
+          2.448476271509689,
+          -3.2920772188309186,
+          -4.7613989635146075,
+          -3.940730352783787,
+          3.0197742480502274,
+          -4.294590929558082,
+          -1.2580764654789824,
+          -2.1790419333510758,
+          -2.320603423236255,
+          -1.3339882230153517,
+          -3.738775198518255,
+          -2.811740277274315,
+          -4.546037970795084,
+          -4.414304868598208,
+          -2.0864971393012572,
+          -2.2151311841467716,
+          -2.850779149671177,
+          1.803948326189217,
+          -0.7984062632425051,
+          -3.8734335791846353,
+          -1.7771481952320953,
+          1.3962636005176483,
+          -4.762236077769426,
+          -2.3704408356392386,
+          -3.8841162027168696,
+          -4.204785741545649,
+          2.93313177591837,
+          -2.9827314781619165,
+          -1.8290851865243298,
+          1.7507733821224098,
+          2.2465741163560473,
+          -4.726882512800174,
+          -2.3613278265629774,
+          0.001378428429319456,
+          0.21010277370566488,
+          -1.5055506486499226,
+          -4.672576308828834,
+          -3.773499513879237,
+          -0.5995732335568649,
+          -1.2438982895265958,
+          -1.3278901745925413,
+          -0.6508835608247994,
+          -4.720387567844301,
+          -4.515539451615244,
+          1.3294976730861503,
+          2.2761376682982046,
+          -2.6505297392902794,
+          3.0175368260121296,
+          1.6762858562115541,
+          0.04321570442288092,
+          -1.4397585735037106,
+          -0.9823843471070859,
+          2.8534658930303554,
+          -3.070470923505072,
+          -2.5743187325129036,
+          -2.677924338601055,
+          0.08374582986516721,
+          -2.598134757244179,
+          3.0924419307257835,
+          1.6080094258521465,
+          1.4519467860328437,
+          -3.867713802781248,
+          -1.5761757608941065,
+          -3.1722832990743415,
+          -0.8755083518552009,
+          3.202868201417589,
+          -3.452936280103116,
+          3.0227319301418802,
+          0.800701169434336,
+          -0.3119019272929675,
+          1.7965336384754718,
+          -1.962792534175699,
+          -4.2613425648215,
+          -2.7960752652322984,
+          -0.9627237117088887,
+          0.9462114033890492,
+          2.8250729232340444,
+          2.3938495945570244,
+          1.6921601149141932,
+          -3.4196469940069587,
+          -3.4739702152015397,
+          -1.5936742337954244,
+          3.4196410890347995,
+          -3.8900135559381552,
+          1.3277458410105982,
+          -1.7834812254702652,
+          -1.6276969364816436,
+          -1.2374711597023276,
+          1.4030322098089485,
+          -2.733935422663614,
+          -1.3923393890289892,
+          -4.897085676339366,
+          1.215886602661162,
+          -4.961821893251246,
+          -1.5814079240120593,
+          2.332018532751767,
+          -2.4367768220207777,
+          0.854425309817989,
+          1.3096006462689118,
+          -3.3167819144680406,
+          -3.597910891287655,
+          -3.5162500215519255,
+          -1.491675417785146,
+          3.2940835656576155,
+          -1.871193653681968,
+          3.153416342594701,
+          -4.58789000473671,
+          0.5414827102133497,
+          1.440891447016348,
+          -4.0128254021960235,
+          0.6416364403520296,
+          -1.7752459637421683,
+          -0.3562680821833428,
+          -0.18025225197129568,
+          -0.8903027669354326,
+          -1.404480025207309,
+          -2.4904593786164044,
+          -3.3520231809842613,
+          0.7213176330131033,
+          1.7437681516427253,
+          -1.4512404299298711,
+          2.9917270335001778,
+          -1.9067301862359858,
+          -4.05834145217961,
+          -2.9550324262691885,
+          -2.660777283225775,
+          1.7611240156399175,
+          2.918162644171953,
+          -2.196744702812137,
+          1.2827639643632134,
+          0.9608564712611853,
+          3.4160590605306993,
+          -1.3213971258728585,
+          -1.5448938775753756,
+          -0.9927758878936173,
+          -2.021709567140143,
+          0.9688898935777273,
+          -2.7907244087654672,
+          3.1232016692185915,
+          1.6330144622294975,
+          2.712270333428746,
+          0.143428034213267,
+          -4.430055096109379,
+          -2.8637907184890135,
+          1.913794482032955,
+          -4.298370664043068,
+          1.5412672705416623,
+          -2.766018133587024,
+          -1.136927531455186,
+          -3.182955229815696,
+          -3.1125725997899836,
+          -0.05543526351466799,
+          -3.1336471162842647,
+          2.54316962299068,
+          3.1956395174989503,
+          -0.8772806334671754,
+          0.3515221033429956,
+          1.2573412517553617,
+          3.02557113997125,
+          -0.56452657800153,
+          -0.3908295418797083,
+          -2.632689391163325,
+          -1.0630635467963514,
+          -1.6784724232625745,
+          1.2225436759347996,
+          -4.594672705665981,
+          1.5045234806377392,
+          0.8926695650446961,
+          0.22968303594992445,
+          -0.5316830025700234,
+          -2.441487574829563,
+          -0.6938552964042053,
+          -4.6917622237028365,
+          -3.279073366411763,
+          -1.0572708962215747,
+          3.289105720888431,
+          -3.7323039553370174,
+          0.3262208724882578,
+          -2.545884262642619,
+          0.42817154319126605,
+          -0.48922767762232766,
+          -4.934199188391748,
+          -1.7080744245916817,
+          -3.401598365881811,
+          -2.4330318289322057,
+          -1.1668045893267043,
+          2.8858600820515576,
+          -4.486365419431881,
+          0.7398118973876437,
+          -4.016420413342304,
+          0.9587628612380374,
+          -1.5255573709568266,
+          3.2843175942234275,
+          3.2907426143285647,
+          1.7286846501039266,
+          -0.9667219402745157,
+          2.336368848626993,
+          1.145722272705017,
+          -1.5079220590909128,
+          3.17083337642576,
+          2.2288883045380636,
+          -3.707077187821062,
+          -4.047659186296893,
+          -1.0815480003268498,
+          0.46359532869152353,
+          -4.835397086864196,
+          2.2949454115015557,
+          -4.1870400168418005,
+          -2.2795602173636,
+          1.3237263522331588,
+          -4.445317699707658,
+          -2.097963386988591,
+          -2.2930193924950997,
+          -3.9183784118088765,
+          -2.8752115663063926,
+          -2.202213606428527,
+          0.19456106151198416,
+          -2.7237876609269973,
+          -4.793228042527638,
+          -0.9914652937571367,
+          0.32844436461462845,
+          -0.5137041440645733,
+          -1.2744665683629046,
+          -1.5635461654313962,
+          -4.181219209357219,
+          -2.0568231572707547,
+          -0.5734844014334488,
+          1.0455721784316143,
+          -1.3980867703745576,
+          -0.011056935290119085,
+          -3.295531277666658,
+          -0.1171487926104735,
+          -3.981332701081373,
+          1.097935136234078,
+          -4.056097440214547,
+          -1.5868480446596003,
+          0.6529866084757696,
+          -0.8815191402050386,
+          -4.748703551515248,
+          -2.543023517203911,
+          -1.4537165984920928,
+          -0.7853623992764396,
+          -0.06871908746316979,
+          -3.211526757992594,
+          -3.88597593256394,
+          -3.405163615227063,
+          -3.3419793972968104,
+          -1.9360598641776625,
+          -1.632171166364171,
+          -2.4915309953785245,
+          -4.66863543032972,
+          -3.678534089805031,
+          -1.1836692422996706,
+          -2.190378988458759,
+          -2.651881350761237,
+          0.7664382870960411,
+          -0.5911370101526714,
+          -0.34204389632595067,
+          -1.4698518440107584,
+          -3.3380966893297033,
+          -3.025337005837504,
+          -2.8825602601786966,
+          2.342248210140328,
+          0.8659105462213619,
+          3.2364000514355205,
+          -4.213537646263652,
+          -0.6038061874550538,
+          -0.339489488534662,
+          3.3873144882746704,
+          -3.0522262333158525,
+          -2.704512106042569,
+          0.6709374962971895,
+          -1.9584288658570985,
+          1.0480400808654,
+          -0.1369996657380934,
+          -0.5671108942680139,
+          3.2003315396211587,
+          -4.090970755804855,
+          -3.469411406846934,
+          -3.186176802512925,
+          1.7322875443039552,
+          -3.547918059023388,
+          2.16875625668711,
+          -2.421839555854495,
+          -1.612126576949969,
+          -0.39532762832771606,
+          -0.5136807078918055,
+          -2.03774659976372,
+          0.42486446618075213,
+          1.143914501344157,
+          0.6479355862286313,
+          -0.5275328298453843,
+          -0.7587934083275201,
+          0.6444367981352652,
+          0.8115960065175072,
+          -0.14268905398175935,
+          2.3597282980317322,
+          -1.5073874855252924,
+          0.606223587760498,
+          -1.1795519792110478,
+          -3.2730532155680043,
+          -0.8739860096094887,
+          2.0099473703663,
+          -1.8751423190856396,
+          -5.000296965129465,
+          -2.3277082854236433,
+          -3.642582716286917,
+          -3.0252065280046105,
+          0.24700026043816425,
+          -4.37531997933504,
+          0.7925030734585796,
+          -1.531259330882301,
+          -3.6379599038233406,
+          -4.536309637398225,
+          1.6446355364706742,
+          2.5097481132637727,
+          -3.9327139442791723,
+          0.3571616674634006,
+          0.8189319090597396,
+          -0.4104839819156343,
+          -2.1197622546046815,
+          0.7375573276409266,
+          -4.194500930454524,
+          -2.4825834045899557,
+          -4.842173964405865,
+          1.089062109282179,
+          -2.116795721456801,
+          -4.402483701635986,
+          3.243123014450928,
+          -4.222477262040367,
+          -2.361484065606287,
+          1.959085165995031,
+          0.07406495843351468,
+          -3.5456773961990966,
+          0.9139615946539328,
+          1.7430213932578313,
+          -1.5006430329651073,
+          -2.738687606728179,
+          1.6803004637516752,
+          -4.014069950132363,
+          -0.9396689562285143,
+          -0.749416432010972,
+          0.3575271116531429,
+          -3.266227701826482,
+          -3.9271110783733776,
+          1.489976425099397,
+          -2.9826596694028815,
+          -4.355621862045724,
+          -0.2610374933915125,
+          -0.07446192853102573,
+          -4.785617723735172,
+          2.4710092698294135,
+          -4.3447332133267995,
+          -0.9199006388097315,
+          0.27044045785219595,
+          1.7380568602259459,
+          1.9667905450747902,
+          -2.925046876168801,
+          3.0237442022728995,
+          -4.694824019774473,
+          -3.5801035596023962,
+          -4.4957186148863615,
+          2.6384871235594174,
+          0.13635194790384908,
+          1.8946206120059292,
+          3.0796516760808874,
+          2.798048358193113,
+          -1.9439549288621958,
+          -0.11974730442636439,
+          -3.67075260587643,
+          2.2665763487995703,
+          -0.01918277493860554,
+          3.2217655280965705,
+          -1.1262782797406805,
+          0.09613736797834527,
+          -3.887330732465613,
+          1.0283400330851027,
+          -3.717339400466189,
+          -1.1094022898474196,
+          -2.0292640816248078,
+          -1.53874950750919,
+          -1.6232508464265818,
+          1.9926982514746037,
+          0.7731290182455526,
+          2.354006672415011,
+          -4.988120160756191,
+          1.8490819236302416,
+          3.0569982576401102,
+          2.3784692215530763,
+          3.1460188571389516,
+          -1.323614130645952,
+          -1.2427550922943316,
+          2.8265563665060665,
+          1.5529643694303923,
+          2.637269549446483,
+          1.3889327349716014,
+          -4.606448632389715,
+          -3.7953798972000623,
+          2.3342303871368504,
+          -4.360709052326249,
+          -0.014373302542924904,
+          3.142456054973337,
+          -0.13657303379668395,
+          2.0430290558046593,
+          -1.2129014534222438,
+          -1.2943497641720856,
+          -0.6890734397007465,
+          -2.449586287278434,
+          2.7065383586896203,
+          -4.616422458350438,
+          -4.679423249860872,
+          1.1083123405043658,
+          0.3995576972526793,
+          -4.853029562604169,
+          1.7689132661724587,
+          -2.0037499881531526,
+          -3.467494798079921,
+          -4.359210595275736,
+          2.3942782737626294,
+          -4.171343539590924,
+          -1.7528510527308523,
+          0.4328651828432868,
+          -3.04043312406288,
+          -1.8264335604620134,
+          1.3533302316412374,
+          0.4543135758086638,
+          -4.653912676245137
          ]
         },
         {
@@ -21979,2677 +21949,2677 @@
          "scene": "scene3",
          "showlegend": false,
          "text": [
-          "example_1",
-          "example_4",
-          "example_8",
-          "example_11",
-          "example_13",
-          "example_14",
-          "example_16",
-          "example_17",
-          "example_19",
-          "example_20",
-          "example_21",
-          "example_22",
-          "example_26",
-          "example_34",
-          "example_35",
-          "example_36",
-          "example_37",
-          "example_40",
-          "example_46",
-          "example_50",
-          "example_53",
-          "example_61",
-          "example_64",
-          "example_75",
-          "example_87",
-          "example_89",
-          "example_91",
-          "example_93",
-          "example_95",
-          "example_98",
-          "example_103",
-          "example_112",
-          "example_114",
-          "example_116",
-          "example_119",
-          "example_121",
-          "example_122",
-          "example_127",
-          "example_130",
-          "example_134",
-          "example_143",
-          "example_146",
-          "example_149",
-          "example_150",
-          "example_151",
-          "example_152",
-          "example_153",
-          "example_154",
-          "example_157",
-          "example_159",
-          "example_160",
-          "example_161",
-          "example_166",
-          "example_176",
-          "example_180",
-          "example_186",
-          "example_187",
-          "example_189",
-          "example_190",
-          "example_191",
-          "example_197",
-          "example_200",
-          "example_201",
-          "example_202",
-          "example_205",
-          "example_206",
-          "example_207",
-          "example_216",
-          "example_217",
-          "example_219",
-          "example_225",
-          "example_229",
-          "example_230",
-          "example_241",
-          "example_245",
-          "example_246",
-          "example_252",
-          "example_253",
-          "example_257",
-          "example_262",
-          "example_263",
-          "example_264",
-          "example_268",
-          "example_269",
-          "example_276",
-          "example_278",
-          "example_279",
-          "example_283",
-          "example_284",
-          "example_288",
-          "example_293",
-          "example_295",
-          "example_301",
-          "example_304",
-          "example_313",
-          "example_315",
-          "example_317",
-          "example_320",
-          "example_330",
-          "example_335",
-          "example_337",
-          "example_340",
-          "example_343",
-          "example_345",
-          "example_356",
-          "example_369",
-          "example_378",
-          "example_379",
-          "example_384",
-          "example_385",
-          "example_387",
-          "example_391",
-          "example_392",
-          "example_395",
-          "example_396",
-          "example_397",
-          "example_399",
-          "example_400",
-          "example_401",
-          "example_402",
-          "example_403",
-          "example_406",
-          "example_407",
-          "example_412",
-          "example_417",
-          "example_418",
-          "example_431",
-          "example_437",
-          "example_441",
-          "example_443",
-          "example_444",
-          "example_452",
-          "example_454",
-          "example_455",
-          "example_456",
-          "example_459",
-          "example_463",
-          "example_466",
-          "example_469",
-          "example_470",
-          "example_472",
-          "example_473",
-          "example_474",
-          "example_476",
-          "example_484",
-          "example_487",
-          "example_488",
-          "example_489",
-          "example_492",
-          "example_496",
-          "example_498",
-          "example_502",
-          "example_508",
-          "example_509",
-          "example_510",
-          "example_511",
-          "example_512",
-          "example_515",
-          "example_517",
-          "example_520",
-          "example_521",
-          "example_524",
-          "example_537",
-          "example_540",
-          "example_546",
-          "example_550",
-          "example_556",
-          "example_559",
-          "example_562",
-          "example_563",
-          "example_564",
-          "example_565",
-          "example_569",
-          "example_574",
-          "example_577",
-          "example_580",
-          "example_586",
-          "example_592",
-          "example_595",
-          "example_600",
-          "example_604",
-          "example_606",
-          "example_608",
-          "example_612",
-          "example_616",
-          "example_623",
-          "example_625",
-          "example_627",
-          "example_632",
-          "example_633",
-          "example_635",
-          "example_639",
-          "example_640",
-          "example_641",
-          "example_642",
-          "example_645",
-          "example_646",
-          "example_647",
-          "example_648",
-          "example_653",
-          "example_655",
-          "example_656",
-          "example_658",
-          "example_659",
-          "example_662",
-          "example_663",
-          "example_675",
-          "example_681",
-          "example_683",
-          "example_684",
-          "example_685",
-          "example_686",
-          "example_687",
-          "example_689",
-          "example_690",
-          "example_696",
-          "example_698",
-          "example_699",
-          "example_702",
-          "example_703",
-          "example_709",
-          "example_717",
-          "example_719",
-          "example_725",
-          "example_726",
-          "example_728",
-          "example_729",
-          "example_734",
-          "example_738",
-          "example_740",
-          "example_742",
-          "example_747",
-          "example_748",
-          "example_749",
-          "example_751",
-          "example_753",
-          "example_758",
-          "example_760",
-          "example_761",
-          "example_763",
-          "example_766",
-          "example_768",
-          "example_769",
-          "example_773",
-          "example_775",
-          "example_776",
-          "example_779",
-          "example_784",
-          "example_789",
-          "example_790",
-          "example_791",
-          "example_794",
-          "example_795",
-          "example_797",
-          "example_800",
-          "example_801",
-          "example_804",
-          "example_805",
-          "example_815",
-          "example_821",
-          "example_822",
-          "example_825",
-          "example_827",
-          "example_830",
-          "example_831",
-          "example_833",
-          "example_835",
-          "example_837",
-          "example_840",
-          "example_848",
-          "example_850",
-          "example_851",
-          "example_853",
-          "example_854",
-          "example_856",
-          "example_860",
-          "example_863",
-          "example_866",
-          "example_870",
-          "example_871",
-          "example_872",
-          "example_876",
-          "example_877",
-          "example_878",
-          "example_880",
-          "example_883",
-          "example_884",
-          "example_890",
-          "example_891",
-          "example_895",
-          "example_896",
-          "example_897",
-          "example_902",
-          "example_911",
-          "example_913",
-          "example_919",
-          "example_920",
-          "example_927",
-          "example_928",
-          "example_929",
-          "example_935",
-          "example_947",
-          "example_951",
-          "example_954",
-          "example_955",
-          "example_956",
-          "example_957",
-          "example_959",
-          "example_960",
-          "example_961",
-          "example_969",
-          "example_971",
-          "example_972",
-          "example_975",
-          "example_977",
-          "example_980",
-          "example_981",
-          "example_991",
-          "example_992",
-          "example_995",
-          "example_996",
-          "example_1002",
-          "example_1003",
-          "example_1008",
-          "example_1011",
-          "example_1012",
-          "example_1014",
-          "example_1015",
-          "example_1016",
-          "example_1017",
-          "example_1019",
-          "example_1020",
-          "example_1021",
-          "example_1025",
-          "example_1028",
-          "example_1038",
-          "example_1039",
-          "example_1042",
-          "example_1044",
-          "example_1045",
-          "example_1048",
-          "example_1051",
-          "example_1056",
-          "example_1059",
-          "example_1060",
-          "example_1062",
-          "example_1064",
-          "example_1066",
-          "example_1069",
-          "example_1070",
-          "example_1071",
-          "example_1072",
-          "example_1076",
-          "example_1077",
-          "example_1081",
-          "example_1082",
-          "example_1086",
-          "example_1092",
-          "example_1095",
-          "example_1098",
-          "example_1099",
-          "example_1104",
-          "example_1109",
-          "example_1115",
-          "example_1119",
-          "example_1122",
-          "example_1123",
-          "example_1126",
-          "example_1127",
-          "example_1129",
-          "example_1130",
-          "example_1135",
-          "example_1136",
-          "example_1139",
-          "example_1141",
-          "example_1143",
-          "example_1147",
-          "example_1148",
-          "example_1150",
-          "example_1152",
-          "example_1153",
-          "example_1154",
-          "example_1158",
-          "example_1162",
-          "example_1166",
-          "example_1167",
-          "example_1171",
-          "example_1174",
-          "example_1180",
-          "example_1183",
-          "example_1184",
-          "example_1186",
-          "example_1191",
-          "example_1194",
-          "example_1195",
-          "example_1199",
-          "example_1203",
-          "example_1207",
-          "example_1212",
-          "example_1213",
-          "example_1215",
-          "example_1218",
-          "example_1219",
-          "example_1224",
-          "example_1227",
-          "example_1238",
-          "example_1241",
-          "example_1243",
-          "example_1246",
-          "example_1248",
-          "example_1250",
-          "example_1254",
-          "example_1256",
-          "example_1257",
-          "example_1260",
-          "example_1264",
-          "example_1266",
-          "example_1267",
-          "example_1275",
-          "example_1276",
-          "example_1277",
-          "example_1279",
-          "example_1282",
-          "example_1291",
-          "example_1294",
-          "example_1295",
-          "example_1296",
-          "example_1297",
-          "example_1300",
-          "example_1306",
-          "example_1308",
-          "example_1311",
-          "example_1312",
-          "example_1321",
-          "example_1325",
-          "example_1327",
-          "example_1332",
-          "example_1337",
-          "example_1346",
-          "example_1348",
-          "example_1349",
-          "example_1350",
-          "example_1354",
-          "example_1363",
-          "example_1365",
-          "example_1367",
-          "example_1369",
-          "example_1371",
-          "example_1372",
-          "example_1373",
-          "example_1377",
-          "example_1378",
-          "example_1382",
-          "example_1388",
-          "example_1390",
-          "example_1396",
-          "example_1397",
-          "example_1398",
-          "example_1399",
-          "example_1400",
-          "example_1408",
-          "example_1409",
-          "example_1410",
-          "example_1411",
-          "example_1413",
-          "example_1415",
-          "example_1416",
-          "example_1426",
-          "example_1430",
-          "example_1434",
-          "example_1437",
-          "example_1438",
-          "example_1439",
-          "example_1442",
-          "example_1443",
-          "example_1444",
-          "example_1445",
-          "example_1451",
-          "example_1459",
-          "example_1462",
-          "example_1465",
-          "example_1475",
-          "example_1476",
-          "example_1478",
-          "example_1479",
-          "example_1482",
-          "example_1484",
-          "example_1485",
-          "example_1487",
-          "example_1494",
-          "example_1495",
-          "example_1496",
-          "example_1499",
-          "example_1500",
-          "example_1504",
-          "example_1508",
-          "example_1513",
-          "example_1515",
-          "example_1517",
-          "example_1520",
-          "example_1522",
-          "example_1527",
-          "example_1528",
-          "example_1529",
-          "example_1533",
-          "example_1534",
-          "example_1535",
-          "example_1539",
-          "example_1543",
-          "example_1550",
-          "example_1555",
-          "example_1559",
-          "example_1567",
-          "example_1569",
-          "example_1570",
-          "example_1573",
-          "example_1577",
-          "example_1579",
-          "example_1583",
-          "example_1584",
-          "example_1585",
-          "example_1589",
-          "example_1590",
-          "example_1594",
-          "example_1595",
-          "example_1597",
-          "example_1598",
-          "example_1600",
-          "example_1603",
-          "example_1623",
-          "example_1624",
-          "example_1629",
-          "example_1631",
-          "example_1633",
-          "example_1634",
-          "example_1636",
-          "example_1638",
-          "example_1643",
-          "example_1648",
-          "example_1653",
-          "example_1654",
-          "example_1655",
-          "example_1659",
-          "example_1660",
-          "example_1661",
-          "example_1663",
-          "example_1670",
-          "example_1678",
-          "example_1679",
-          "example_1680",
-          "example_1681",
-          "example_1685",
-          "example_1687",
-          "example_1688",
-          "example_1690",
-          "example_1693",
-          "example_1695",
-          "example_1698",
-          "example_1700",
-          "example_1702",
-          "example_1705",
-          "example_1706",
-          "example_1707",
-          "example_1710",
-          "example_1714",
-          "example_1715",
-          "example_1716",
-          "example_1720",
-          "example_1721",
-          "example_1722",
-          "example_1723",
-          "example_1724",
-          "example_1725",
-          "example_1731",
-          "example_1733",
-          "example_1737",
-          "example_1740",
-          "example_1742",
-          "example_1744",
-          "example_1746",
-          "example_1748",
-          "example_1750",
-          "example_1751",
-          "example_1756",
-          "example_1757",
-          "example_1762",
-          "example_1766",
-          "example_1768",
-          "example_1771",
-          "example_1772",
-          "example_1774",
-          "example_1776",
-          "example_1777",
-          "example_1785",
-          "example_1788",
-          "example_1790",
-          "example_1792",
-          "example_1793",
-          "example_1794",
-          "example_1795",
-          "example_1796",
-          "example_1803",
-          "example_1804",
-          "example_1805",
-          "example_1806",
-          "example_1809",
-          "example_1820",
-          "example_1821",
-          "example_1828",
-          "example_1833",
-          "example_1834",
-          "example_1836",
-          "example_1837",
-          "example_1839",
-          "example_1841",
-          "example_1842",
-          "example_1845",
-          "example_1846",
-          "example_1849",
-          "example_1850",
-          "example_1861",
-          "example_1862",
-          "example_1868",
-          "example_1873",
-          "example_1875",
-          "example_1876",
-          "example_1877",
-          "example_1878",
-          "example_1879",
-          "example_1880",
-          "example_1883",
-          "example_1886",
-          "example_1889",
-          "example_1892",
-          "example_1893",
-          "example_1895",
-          "example_1898",
-          "example_1899",
-          "example_1902",
-          "example_1905",
-          "example_1906",
-          "example_1908",
-          "example_1913",
-          "example_1915",
-          "example_1916",
-          "example_1923",
-          "example_1926",
-          "example_1940",
-          "example_1945",
-          "example_1946",
-          "example_1947",
-          "example_1949",
-          "example_1950",
-          "example_1951",
-          "example_1953",
-          "example_1962",
-          "example_1965",
-          "example_1966",
-          "example_1968",
-          "example_1969",
-          "example_1980",
-          "example_1981",
-          "example_1982",
-          "example_1994",
-          "example_1995",
-          "example_1997"
+          "1332_l_2_m-0_0.1-1_0.4-2_0.08-3_1.02",
+          "1333_l_2_m-0_1.42-1_0.49-2_0.11-3_0.17",
+          "1334_l_2_m-0_0.41-1_0.13-2_0.63-3_0.36",
+          "1335_l_2_m-0_1.18-1_0.06-2_0.66-3_0.16",
+          "1336_l_2_m-0_0.42-1_0.02-2_0.37-3_0.04",
+          "1337_l_2_m-0_0.92-1_0.44-2_0.07-3_0.07",
+          "1338_l_2_c_0_1_3-0_0.24-1_0.21-2_0.22-3_0.16",
+          "1339_l_2_c_0_1_3-0_0.21-1_0.24-2_1.39-3_0.32",
+          "1340_l_2_c_0_1_3-0_0.02-1_0.11-2_0.95-3_0.42",
+          "1341_l_2_c_0_1_3-0_0.14-1_0.17-2_0.95-3_0.05",
+          "1342_l_2_c_0_1_3-0_0.87-1_0.24-2_0.49-3_0.38",
+          "1343_l_2_c_0_1_3-0_0.49-1_0.63-2_0.09-3_0.15",
+          "1344_l_2_c_0_1_3-0_0.25-1_0.85-2_0.58-3_0.21",
+          "1345_l_2_c_0_1_3-0_0.21-1_0.33-2_1.06-3_0.13",
+          "1346_l_2_c_0_1_3-0_0.03-1_0.24-2_0.27-3_0.41",
+          "1347_l_2_c_0_1_3-0_0.98-1_1.27-2_0.12-3_0.24",
+          "1348_l_2_c_0_1_3-0_1.0-1_0.42-2_0.53-3_0.01",
+          "1349_l_2_c_0_1_3-0_0.04-1_0.54-2_0.13-3_0.87",
+          "1350_l_2_c_0_1_3-0_0.62-1_0.27-2_0.26-3_0.12",
+          "1351_l_2_c_0_1_3-0_0.76-1_0.19-2_1.3-3_0.85",
+          "1352_l_2_c_0_1_3-0_0.83-1_0.72-2_0.03-3_0.28",
+          "1353_l_2_c_0_1_3-0_0.06-1_0.02-2_0.58-3_0.15",
+          "1354_l_2_c_0_1_3-0_0.2-1_0.75-2_0.25-3_0.44",
+          "1355_l_2_c_0_1_3-0_0.0-1_0.01-2_0.07-3_0.62",
+          "1356_l_2_c_0_1_3-0_0.51-1_0.13-2_0.03-3_0.09",
+          "1357_l_2_c_0_1_3-0_0.72-1_0.08-2_1.79-3_0.38",
+          "1358_l_2_c_0_1_3-0_0.87-1_0.38-2_0.45-3_0.25",
+          "1359_l_2_c_0_1_3-0_0.52-1_0.96-2_0.35-3_0.08",
+          "1360_l_2_c_0_1_3-0_0.73-1_0.19-2_1.06-3_1.11",
+          "1361_l_2_c_0_1_3-0_0.08-1_0.12-2_0.29-3_0.16",
+          "1362_l_2_c_0_1_3-0_0.13-1_0.07-2_0.47-3_0.28",
+          "1363_l_2_c_0_1_3-0_0.34-1_0.38-2_0.97-3_0.13",
+          "1364_l_2_c_0_1_3-0_0.36-1_0.03-2_0.55-3_0.14",
+          "1365_l_2_c_0_1_3-0_0.96-1_0.15-2_0.39-3_0.17",
+          "1366_l_2_c_0_1_3-0_0.04-1_0.05-2_0.35-3_0.68",
+          "1367_l_2_c_0_1_3-0_0.9-1_0.28-2_0.42-3_0.21",
+          "1368_l_2_c_0_1_3-0_0.14-1_0.14-2_0.23-3_0.14",
+          "1369_l_2_c_0_1_3-0_0.19-1_0.39-2_1.23-3_0.28",
+          "1370_l_2_c_0_1_3-0_0.48-1_0.16-2_0.02-3_0.35",
+          "1371_l_2_c_0_1_3-0_0.05-1_0.35-2_0.66-3_0.11",
+          "1372_l_2_c_0_1_3-0_0.65-1_0.13-2_0.57-3_0.6",
+          "1373_l_2_c_0_1_3-0_0.55-1_0.26-2_0.35-3_0.83",
+          "1374_l_2_c_0_1_3-0_0.15-1_0.87-2_0.89-3_0.16",
+          "1375_l_2_c_0_1_3-0_0.19-1_0.53-2_0.43-3_0.14",
+          "1376_l_2_c_0_1_3-0_0.18-1_0.33-2_0.74-3_0.13",
+          "1377_l_2_c_0_1_3-0_0.52-1_0.07-2_0.62-3_0.42",
+          "1378_l_2_c_0_1_3-0_0.02-1_0.08-2_1.53-3_0.11",
+          "1379_l_2_c_0_1_3-0_0.35-1_0.08-2_0.37-3_0.76",
+          "1380_l_2_c_0_1_2-0_0.32-1_0.35-2_0.05-3_0.08",
+          "1381_l_2_c_0_1_3-0_0.14-1_0.78-2_0.65-3_0.11",
+          "1382_l_2_c_0_1_2-0_0.1-1_0.14-2_0.34-3_1.03",
+          "1383_l_2_c_0_1_3-0_0.82-1_0.05-2_0.24-3_0.76",
+          "1384_l_2_c_0_1_2-0_0.07-1_0.35-2_0.01-3_1.09",
+          "1385_l_2_c_0_1_3-0_0.37-1_0.17-2_1.62-3_0.09",
+          "1386_l_2_c_0_1_2-0_0.54-1_0.05-2_0.54-3_0.3",
+          "1387_l_2_c_0_1_3-0_0.13-1_1.2-2_0.96-3_0.04",
+          "1388_l_2_c_0_1_2-0_0.44-1_0.34-2_0.04-3_0.63",
+          "1389_l_2_c_0_1_3-0_0.64-1_0.04-2_0.78-3_0.06",
+          "1390_l_2_c_0_1_2-0_0.24-1_0.7-2_0.58-3_0.95",
+          "1391_l_2_c_0_1_3-0_1.0-1_0.24-2_0.98-3_0.45",
+          "1392_l_2_c_0_1_2-0_0.31-1_0.03-2_0.05-3_0.08",
+          "1393_l_2_c_0_1_3-0_0.53-1_0.44-2_0.94-3_0.65",
+          "1394_l_2_c_0_1_2-0_0.14-1_0.16-2_0.75-3_0.99",
+          "1395_l_2_c_0_1_3-0_0.23-1_0.67-2_0.27-3_0.26",
+          "1396_l_2_c_0_1_2-0_0.32-1_0.77-2_0.22-3_0.72",
+          "1397_l_2_c_0_1_3-0_0.12-1_0.13-2_0.75-3_0.11",
+          "1398_l_2_c_0_1_2-0_0.34-1_0.15-2_0.36-3_0.93",
+          "1399_l_2_c_0_1_3-0_0.69-1_0.29-2_1.08-3_0.5",
+          "1400_l_2_c_0_1_2-0_0.17-1_0.2-2_0.04-3_0.4",
+          "1401_l_2_c_0_1_3-0_0.72-1_0.25-2_0.39-3_0.1",
+          "1402_l_2_c_0_1_2-0_0.25-1_0.01-2_0.03-3_0.66",
+          "1403_l_2_c_0_1_3-0_0.07-1_0.63-2_0.93-3_0.48",
+          "1404_l_2_c_0_1_2-0_0.32-1_0.24-2_0.61-3_1.56",
+          "1405_l_2_c_0_1_3-0_0.19-1_0.13-2_0.51-3_0.55",
+          "1406_l_2_c_0_1_2-0_0.8-1_0.33-2_0.23-3_0.34",
+          "1407_l_2_c_0_1_3-0_0.1-1_0.15-2_0.56-3_0.77",
+          "1408_l_2_c_0_1_2-0_0.84-1_0.06-2_0.47-3_0.17",
+          "1409_l_2_c_0_1_3-0_0.01-1_0.03-2_0.47-3_0.57",
+          "1410_l_2_c_0_1_2-0_0.07-1_0.1-2_0.14-3_0.14",
+          "1411_l_2_c_0_1_3-0_0.5-1_0.19-2_1.55-3_0.55",
+          "1412_l_2_c_0_1_2-0_0.83-1_0.01-2_0.02-3_0.76",
+          "1413_l_2_c_0_1_3-0_0.24-1_0.57-2_0.53-3_0.05",
+          "1414_l_2_c_0_1_2-0_0.4-1_0.27-2_0.23-3_0.43",
+          "1415_l_2_c_0_1_3-0_0.64-1_0.66-2_0.7-3_0.67",
+          "1416_l_2_c_0_1_2-0_0.09-1_0.95-2_0.8-3_0.57",
+          "1417_l_2_c_0_1_3-0_0.12-1_0.27-2_0.02-3_0.69",
+          "1418_l_2_c_0_1_2-0_0.02-1_0.31-2_0.62-3_0.33",
+          "1419_l_2_c_0_1_3-0_0.19-1_0.14-2_0.02-3_0.26",
+          "1420_l_2_c_0_1_2-0_0.5-1_0.02-2_0.07-3_1.04",
+          "1421_l_2_c_0_1_3-0_0.09-1_0.05-2_0.12-3_0.44",
+          "1422_l_2_c_0_1_2-0_0.03-1_1.15-2_0.84-3_1.68",
+          "1423_l_2_c_0_1_3-0_0.3-1_0.14-2_0.57-3_0.45",
+          "1424_l_2_c_0_1_2-0_0.81-1_0.89-2_0.09-3_0.5",
+          "1425_l_2_c_0_1_3-0_0.23-1_0.05-2_0.82-3_0.49",
+          "1426_l_2_c_0_1_2-0_0.23-1_0.44-2_0.32-3_1.59",
+          "1427_l_2_c_0_1_3-0_0.18-1_0.18-2_0.8-3_0.65",
+          "1428_l_2_c_0_1_2-0_0.48-1_0.58-2_0.04-3_0.63",
+          "1429_l_2_c_0_1_3-0_0.34-1_0.27-2_0.51-3_0.38",
+          "1430_l_2_c_0_1_2-0_0.09-1_1.64-2_0.09-3_0.81",
+          "1431_l_2_c_0_1_3-0_0.22-1_0.18-2_1.22-3_0.29",
+          "1432_l_2_c_0_1_2-0_0.15-1_0.32-2_0.43-3_0.74",
+          "1433_l_2_c_0_1_3-0_0.68-1_0.56-2_0.4-3_0.14",
+          "1434_l_2_c_0_1_2-0_0.1-1_0.72-2_0.0-3_0.32",
+          "1435_l_2_c_0_1_3-0_0.46-1_0.2-2_1.3-3_0.45",
+          "1436_l_2_c_0_1_2-0_0.48-1_0.15-2_0.07-3_0.11",
+          "1437_l_2_c_0_1_3-0_0.54-1_0.09-2_1.14-3_0.51",
+          "1438_l_2_c_0_1_2-0_0.23-1_0.05-2_0.21-3_0.64",
+          "1439_l_2_c_0_1_3-0_1.13-1_0.47-2_1.55-3_0.67",
+          "1440_l_2_c_0_1_2-0_0.01-1_0.44-2_0.15-3_0.81",
+          "1441_l_2_c_0_1_3-0_0.67-1_0.28-2_0.52-3_0.17",
+          "1442_l_2_c_0_1_2-0_0.35-1_0.02-2_0.64-3_0.38",
+          "1443_l_2_c_0_1_3-0_0.21-1_0.36-2_0.4-3_0.0",
+          "1444_l_2_c_0_1_2-0_0.45-1_0.23-2_0.32-3_1.44",
+          "1445_l_2_c_0_1_3-0_0.69-1_1.13-2_0.28-3_0.64",
+          "1446_l_2_c_0_1_2-0_0.06-1_0.67-2_0.21-3_0.63",
+          "1447_l_2_c_0_1_3-0_0.5-1_0.9-2_0.38-3_0.43",
+          "1448_l_2_c_0_1_2-0_0.09-1_0.54-2_0.29-3_0.99",
+          "1449_l_2_c_0_1_3-0_0.25-1_0.46-2_1.75-3_0.99",
+          "1450_l_2_c_0_1_2-0_0.04-1_0.03-2_0.11-3_0.05",
+          "1451_l_2_c_0_1_3-0_0.26-1_0.1-2_0.61-3_0.95",
+          "1452_l_2_c_0_1_2-0_0.11-1_0.11-2_0.09-3_0.01",
+          "1453_l_2_c_0_1_3-0_1.16-1_0.36-2_1.21-3_0.67",
+          "1454_l_2_c_0_1_2-0_0.32-1_0.08-2_0.01-3_0.19",
+          "1455_l_2_c_0_1_3-0_0.45-1_0.11-2_0.85-3_0.41",
+          "1456_l_2_c_0_1_2-0_0.04-1_0.31-2_0.28-3_0.28",
+          "1457_l_2_c_0_1_3-0_0.05-1_0.27-2_0.17-3_0.19",
+          "1458_l_2_c_0_1_2-0_0.11-1_0.02-2_0.02-3_0.31",
+          "1459_l_2_c_0_1_3-0_0.15-1_0.5-2_0.61-3_0.62",
+          "1460_l_2_c_0_1_2-0_0.02-1_0.56-2_0.1-3_0.53",
+          "1461_l_2_c_0_1_3-0_0.42-1_0.43-2_1.3-3_0.32",
+          "1462_l_2_c_0_1_2-0_0.42-1_0.11-2_0.88-3_0.95",
+          "1463_l_2_c_0_1_3-0_0.11-1_0.59-2_0.11-3_0.84",
+          "1464_l_2_c_0_1_2-0_0.18-1_0.16-2_0.16-3_0.67",
+          "1465_l_2_c_0_1_3-0_0.35-1_0.95-2_0.06-3_0.27",
+          "1466_l_2_c_0_1_2-0_0.1-1_0.82-2_0.11-3_2.07",
+          "1467_l_2_c_0_1_3-0_0.48-1_0.43-2_0.41-3_0.68",
+          "1468_l_2_c_0_1_2-0_0.79-1_1.31-2_0.01-3_0.09",
+          "1469_l_2_c_0_1_3-0_0.07-1_0.15-2_0.4-3_0.79",
+          "1470_l_2_c_0_1_2-0_0.34-1_0.41-2_0.42-3_1.09",
+          "1471_l_2_c_0_1_3-0_0.01-1_0.16-2_0.31-3_0.55",
+          "1472_l_2_c_0_1_2-0_0.13-1_0.24-2_0.05-3_0.43",
+          "1473_l_2_c_0_1_3-0_0.11-1_0.14-2_0.97-3_0.33",
+          "1474_l_2_c_0_1_2-0_0.25-1_0.65-2_0.05-3_0.7",
+          "1475_l_2_c_0_1_3-0_0.2-1_0.5-2_1.36-3_0.61",
+          "1476_l_2_c_1_2_3-0_0.54-1_0.22-2_0.69-3_0.14",
+          "1477_l_2_c_0_1_2-0_0.0-1_0.54-2_0.34-3_0.17",
+          "1478_l_2_c_0_1_3-0_0.02-1_0.69-2_0.46-3_0.3",
+          "1479_l_2_c_1_2_3-0_0.56-1_0.47-2_0.12-3_0.17",
+          "1480_l_2_c_0_1_2-0_0.01-1_0.13-2_1.01-3_0.7",
+          "1481_l_2_c_0_1_3-0_1.94-1_0.32-2_1.25-3_1.17",
+          "1482_l_2_c_1_2_3-0_0.8-1_0.49-2_0.03-3_0.15",
+          "1483_l_2_c_0_1_2-0_0.06-1_0.13-2_0.59-3_0.21",
+          "1484_l_2_c_0_1_3-0_0.73-1_0.05-2_0.68-3_0.0",
+          "1485_l_2_c_1_2_3-0_0.93-1_0.11-2_0.22-3_0.25",
+          "1486_l_2_c_0_1_2-0_0.32-1_1.15-2_0.2-3_0.19",
+          "1487_l_2_c_0_1_3-0_0.05-1_0.46-2_0.55-3_0.18",
+          "1488_l_2_c_1_2_3-0_0.45-1_0.36-2_0.69-3_0.08",
+          "1489_l_2_c_0_1_2-0_0.73-1_0.25-2_0.19-3_0.85",
+          "1490_l_2_c_0_1_3-0_0.26-1_0.0-2_1.11-3_0.23",
+          "1491_l_2_c_1_2_3-0_0.85-1_0.04-2_0.41-3_0.4",
+          "1492_l_2_c_0_1_2-0_0.56-1_0.17-2_0.03-3_0.84",
+          "1493_l_2_c_0_1_3-0_0.25-1_0.09-2_1.13-3_0.04",
+          "1494_l_2_c_1_2_3-0_1.9-1_0.86-2_0.18-3_0.06",
+          "1495_l_2_c_0_1_2-0_0.41-1_0.15-2_0.4-3_1.38",
+          "1496_l_2_c_0_1_3-0_0.14-1_0.48-2_0.11-3_1.05",
+          "1497_l_2_c_1_2_3-0_0.24-1_0.41-2_0.08-3_0.28",
+          "1498_l_2_c_0_1_2-0_0.13-1_0.45-2_0.26-3_0.61",
+          "1499_l_2_c_0_1_3-0_0.97-1_0.47-2_1.06-3_1.09",
+          "1500_l_2_c_1_2_3-0_0.81-1_0.73-2_0.19-3_0.06",
+          "1501_l_2_c_0_1_2-0_0.48-1_0.01-2_0.17-3_0.89",
+          "1502_l_2_c_0_1_3-0_0.04-1_0.21-2_0.53-3_0.8",
+          "1503_l_2_c_1_2_3-0_1.16-1_0.4-2_0.41-3_0.36",
+          "1504_l_2_c_0_1_2-0_0.56-1_0.17-2_0.17-3_0.17",
+          "1505_l_2_c_0_1_3-0_0.0-1_0.14-2_0.15-3_0.12",
+          "1506_l_2_c_1_2_3-0_0.05-1_0.7-2_0.22-3_0.37",
+          "1507_l_2_c_0_1_2-0_0.13-1_1.81-2_0.1-3_0.65",
+          "1508_l_2_c_0_1_3-0_0.28-1_0.42-2_0.42-3_0.1",
+          "1509_l_2_c_1_2_3-0_0.14-1_0.42-2_0.29-3_0.33",
+          "1510_l_2_c_0_1_2-0_0.56-1_0.72-2_0.21-3_0.45",
+          "1511_l_2_c_0_1_3-0_0.52-1_0.02-2_0.45-3_0.45",
+          "1512_l_2_c_1_2_3-0_0.07-1_0.06-2_0.08-3_0.43",
+          "1513_l_2_c_0_1_2-0_0.88-1_0.55-2_0.1-3_0.3",
+          "1514_l_2_c_0_1_3-0_0.25-1_0.01-2_0.35-3_0.15",
+          "1515_l_2_c_1_2_3-0_0.37-1_0.07-2_0.54-3_0.12",
+          "1516_l_2_c_0_1_2-0_0.44-1_0.6-2_0.01-3_0.93",
+          "1517_l_2_c_0_1_3-0_0.03-1_0.28-2_1.39-3_0.11",
+          "1518_l_2_c_1_2_3-0_0.73-1_0.6-2_0.02-3_0.05",
+          "1519_l_2_c_0_1_2-0_0.19-1_0.11-2_0.33-3_0.53",
+          "1520_l_2_c_1_3-0_0.89-1_0.32-2_1.39-3_0.89",
+          "1521_l_2_r-0_0.36-1_1.47-2_1.08-3_1.21",
+          "1522_l_2_r-0_0.67-1_0.31-2_0.11-3_1.28",
+          "1523_l_2_r-0_0.57-1_0.02-2_1.04-3_1.39",
+          "1524_l_2_r-0_0.9-1_0.09-2_0.42-3_0.49",
+          "1525_l_2_r-0_0.96-1_2.23-2_1.22-3_0.86",
+          "1526_l_2_r-0_1.2-1_0.59-2_1.07-3_1.37",
+          "1527_l_2_r-0_1.14-1_0.44-2_1.03-3_0.47",
+          "1528_l_2_r-0_1.2-1_0.66-2_0.23-3_0.55",
+          "1529_l_2_r-0_1.12-1_0.04-2_0.7-3_1.12",
+          "1530_l_2_r-0_0.01-1_1.74-2_0.18-3_0.74",
+          "1531_l_2_r-0_0.48-1_0.13-2_0.32-3_0.34",
+          "1532_l_2_r-0_1.13-1_0.59-2_0.94-3_1.28",
+          "1533_l_2_r-0_0.74-1_1.34-2_0.03-3_0.12",
+          "1534_l_2_r-0_0.64-1_0.56-2_0.48-3_0.59",
+          "1535_l_2_r-0_0.01-1_0.97-2_0.26-3_0.2",
+          "1536_l_2_r-0_1.3-1_0.12-2_1.07-3_0.97",
+          "1537_l_2_r-0_0.32-1_0.96-2_1.59-3_1.25",
+          "1538_l_2_r-0_0.05-1_0.73-2_1.23-3_0.38",
+          "1539_l_2_r-0_0.01-1_1.02-2_0.61-3_1.06",
+          "1540_l_2_r-0_0.17-1_1.3-2_0.49-3_0.73",
+          "1541_l_2_r-0_0.41-1_0.18-2_0.45-3_0.32",
+          "1542_l_2_r-0_0.55-1_0.58-2_0.35-3_0.43",
+          "1543_l_2_r-0_1.55-1_0.49-2_0.26-3_0.12",
+          "1544_l_2_r-0_0.78-1_1.37-2_1.02-3_0.49",
+          "1545_l_2_r-0_2.12-1_1.57-2_0.09-3_0.3",
+          "1546_l_2_r-0_0.7-1_1.02-2_0.38-3_0.27",
+          "1547_l_2_r-0_0.13-1_0.9-2_0.53-3_0.31",
+          "1548_l_2_r-0_0.8-1_0.03-2_0.03-3_0.04",
+          "1549_l_2_r-0_1.63-1_0.8-2_0.1-3_0.1",
+          "1550_l_2_r-0_0.03-1_0.71-2_1.08-3_1.36",
+          "1551_l_2_r-0_0.16-1_1.78-2_0.54-3_0.14",
+          "1552_l_2_r-0_0.14-1_1.11-2_1.13-3_1.04",
+          "1553_l_2_r-0_0.73-1_0.12-2_0.03-3_0.6",
+          "1554_l_2_r-0_0.8-1_0.03-2_0.88-3_0.02",
+          "1555_l_2_r-0_1.46-1_1.4-2_0.52-3_2.21",
+          "1556_l_2_r-0_1.35-1_0.78-2_1.08-3_0.29",
+          "1557_l_2_r-0_0.66-1_1.36-2_1.74-3_0.64",
+          "1558_l_2_r-0_0.53-1_0.62-2_0.22-3_0.49",
+          "1559_l_2_r-0_1.07-1_0.6-2_0.91-3_0.73",
+          "1560_l_2_r-0_0.76-1_0.36-2_0.41-3_0.08",
+          "1561_l_2_r-0_1.74-1_1.83-2_0.13-3_0.3",
+          "1562_l_2_r-0_1.14-1_0.8-2_0.67-3_1.74",
+          "1563_l_2_r-0_0.91-1_0.14-2_1.45-3_1.26",
+          "1564_l_2_r-0_0.28-1_1.62-2_1.07-3_1.07",
+          "1565_l_2_r-0_0.92-1_1.22-2_0.68-3_1.55",
+          "1566_l_2_r-0_0.31-1_0.48-2_0.73-3_0.3",
+          "1567_l_2_r-0_1.17-1_0.06-2_0.25-3_0.88",
+          "1568_l_2_r-0_0.54-1_1.07-2_0.55-3_1.05",
+          "1569_l_2_r-0_1.61-1_1.1-2_0.21-3_1.3",
+          "1570_l_2_r-0_1.09-1_0.16-2_0.49-3_1.45",
+          "1571_l_2_r-0_0.45-1_0.4-2_1.25-3_1.75",
+          "1572_l_2_r-0_0.22-1_0.18-2_1.01-3_0.15",
+          "1573_l_2_r-0_0.3-1_0.07-2_0.88-3_1.11",
+          "1574_l_2_r-0_1.22-1_0.71-2_0.88-3_1.67",
+          "1575_l_2_r-0_0.04-1_0.8-2_0.13-3_0.04",
+          "1576_l_2_r-0_0.41-1_0.69-2_1.38-3_0.18",
+          "1577_l_2_r-0_0.06-1_0.77-2_1.03-3_0.69",
+          "1578_l_2_r-0_0.19-1_1.44-2_0.38-3_0.68",
+          "1579_l_2_r-0_0.73-1_0.4-2_0.05-3_0.62",
+          "1580_l_2_r-0_1.43-1_0.8-2_0.5-3_0.87",
+          "1581_l_2_r-0_1.14-1_0.79-2_0.65-3_0.74",
+          "1582_l_2_r-0_0.76-1_1.08-2_0.37-3_0.07",
+          "1583_l_2_r-0_0.79-1_0.36-2_0.14-3_0.4",
+          "1584_l_2_r-0_1.11-1_1.05-2_0.77-3_0.85",
+          "1585_l_2_r-0_1.71-1_1.09-2_0.32-3_1.01",
+          "1586_l_2_r-0_0.7-1_0.23-2_0.02-3_1.13",
+          "1587_l_2_r-0_1.37-1_0.53-2_0.46-3_0.64",
+          "1588_l_2_r-0_0.19-1_0.5-2_1.16-3_0.26",
+          "1589_l_2_r-0_0.23-1_0.2-2_0.27-3_0.45",
+          "1590_l_2_r-0_1.1-1_1.65-2_0.92-3_0.84",
+          "1591_l_2_r-0_0.86-1_1.27-2_0.38-3_0.38",
+          "1592_l_2_r-0_0.65-1_0.74-2_1.12-3_0.06",
+          "1593_l_2_r-0_0.84-1_1.53-2_0.29-3_0.8",
+          "1594_l_2_r-0_0.36-1_0.12-2_0.53-3_1.18",
+          "1595_l_2_r-0_0.15-1_0.72-2_0.85-3_0.75",
+          "1596_l_2_r-0_0.38-1_0.22-2_1.04-3_0.47",
+          "1597_l_2_r-0_0.71-1_1.12-2_0.95-3_0.24",
+          "1598_l_2_r-0_1.24-1_0.55-2_1.39-3_0.4",
+          "1599_l_2_r-0_0.82-1_0.78-2_0.19-3_0.59",
+          "1600_l_2_r-0_0.6-1_0.91-2_0.81-3_0.44",
+          "1601_l_2_r-0_0.37-1_0.82-2_1.56-3_1.04",
+          "1602_l_2_r-0_0.45-1_0.84-2_0.96-3_0.8",
+          "1603_l_2_r-0_1.32-1_0.41-2_2.33-3_1.31",
+          "1604_l_2_r-0_0.26-1_0.21-2_0.91-3_0.88",
+          "1605_l_2_r-0_0.87-1_0.2-2_0.02-3_0.69",
+          "1606_l_2_r-0_0.2-1_1.06-2_0.22-3_1.23",
+          "1607_l_2_r-0_0.78-1_0.58-2_0.1-3_1.13",
+          "1608_l_2_r-0_0.04-1_0.8-2_0.66-3_0.73",
+          "1609_l_2_r-0_1.11-1_1.29-2_0.24-3_0.27",
+          "1610_l_2_r-0_0.39-1_0.69-2_0.98-3_1.5",
+          "1611_l_2_r-0_1.06-1_0.96-2_0.48-3_0.68",
+          "1612_l_2_r-0_0.82-1_1.31-2_0.36-3_0.17",
+          "1613_l_2_r-0_0.82-1_0.21-2_0.4-3_0.35",
+          "1614_l_2_r-0_0.79-1_1.23-2_0.5-3_0.63",
+          "1615_l_2_r-0_0.81-1_0.74-2_0.44-3_1.08",
+          "1616_l_2_r-0_0.59-1_0.75-2_0.78-3_0.73",
+          "1617_l_2_r-0_0.49-1_0.03-2_1.08-3_0.62",
+          "1618_l_2_r-0_0.42-1_0.01-2_0.84-3_0.65",
+          "1619_l_2_r-0_0.49-1_0.96-2_0.52-3_0.68",
+          "1620_l_2_r-0_0.81-1_1.03-2_0.69-3_0.02",
+          "1621_l_2_r-0_0.4-1_0.61-2_1.21-3_1.41",
+          "1622_l_2_r-0_0.86-1_0.72-2_1.2-3_0.28",
+          "1623_l_2_r-0_0.43-1_1.04-2_0.29-3_0.69",
+          "1624_l_2_r-0_0.56-1_0.55-2_0.44-3_0.88",
+          "1625_l_2_r-0_0.55-1_1.37-2_0.92-3_0.98",
+          "1626_l_2_r-0_0.59-1_0.14-2_0.74-3_0.95",
+          "1627_l_2_r-0_1.2-1_0.17-2_0.69-3_0.69",
+          "1628_l_2_r-0_0.29-1_0.18-2_0.75-3_0.51",
+          "1629_l_2_r-0_0.7-1_1.15-2_0.83-3_0.8",
+          "1630_l_2_r-0_0.65-1_0.71-2_0.1-3_0.14",
+          "1631_l_2_r-0_1.05-1_0.15-2_1.02-3_0.44",
+          "1632_l_2_r-0_0.47-1_0.74-2_0.61-3_1.15",
+          "1633_l_2_r-0_0.34-1_0.55-2_1.37-3_1.58",
+          "1634_l_2_r-0_0.03-1_0.67-2_0.49-3_0.09",
+          "1635_l_2_r-0_0.97-1_1.54-2_0.38-3_0.72",
+          "1636_l_2_r-0_0.45-1_0.51-2_0.59-3_0.91",
+          "1637_l_2_r-0_0.1-1_0.16-2_0.46-3_0.57",
+          "1638_l_2_r-0_0.33-1_1.29-2_1.35-3_0.7",
+          "1639_l_2_r-0_0.93-1_0.96-2_1.19-3_0.5",
+          "1640_l_2_r-0_1.33-1_1.35-2_1.7-3_1.56",
+          "1641_l_2_r-0_0.21-1_0.22-2_0.85-3_0.3",
+          "1642_l_2_r-0_0.04-1_0.79-2_0.97-3_0.42",
+          "1643_l_2_r-0_0.38-1_1.26-2_1.65-3_0.65",
+          "1644_l_2_r-0_0.52-1_0.98-2_0.63-3_1.37",
+          "1645_l_2_r-0_0.22-1_0.3-2_0.26-3_0.84",
+          "1646_l_2_r-0_0.91-1_0.01-2_0.41-3_0.23",
+          "1647_l_2_r-0_0.52-1_0.94-2_0.73-3_0.02",
+          "1648_l_2_r-0_0.25-1_1.37-2_0.02-3_1.05",
+          "1649_l_2_r-0_0.73-1_0.87-2_1.29-3_0.66",
+          "1650_l_2_r-0_0.84-1_0.47-2_1.76-3_1.92",
+          "1651_l_2_r-0_1.48-1_0.24-2_0.19-3_0.74",
+          "1652_l_2_r-0_2.23-1_0.37-2_0.77-3_0.15",
+          "1653_l_2_r-0_0.42-1_0.77-2_0.5-3_0.04",
+          "1654_l_2_r-0_1.06-1_0.41-2_1.06-3_1.04",
+          "1655_l_2_r-0_0.33-1_1.33-2_1.12-3_2.68",
+          "1656_l_2_r-0_1.0-1_0.18-2_0.15-3_0.04",
+          "1657_l_2_r-0_1.41-1_0.16-2_0.47-3_0.2",
+          "1658_l_2_r-0_0.33-1_0.51-2_1.2-3_0.46",
+          "1659_l_2_r-0_0.21-1_1.24-2_0.69-3_1.17",
+          "1660_l_2_r-0_0.76-1_0.56-2_1.51-3_0.09",
+          "1661_l_2_r-0_0.16-1_1.07-2_0.18-3_1.39",
+          "1662_l_2_r-0_0.64-1_1.34-2_0.58-3_1.04",
+          "1663_l_2_r-0_0.79-1_0.09-2_0.17-3_0.79",
+          "1664_l_2_r-0_0.94-1_0.01-2_0.58-3_1.5",
+          "1665_l_2_r-0_0.53-1_0.74-2_0.57-3_0.4",
+          "1666_l_2_r-0_0.08-1_0.17-2_0.62-3_0.26",
+          "1667_l_2_r-0_0.23-1_0.67-2_0.41-3_0.85",
+          "1668_l_2_r-0_1.37-1_0.09-2_0.13-3_0.82",
+          "1669_l_2_r-0_0.63-1_0.67-2_0.19-3_0.84",
+          "1670_l_2_r-0_2.14-1_0.34-2_0.61-3_0.63",
+          "1671_l_2_r-0_0.05-1_1.16-2_0.49-3_0.26",
+          "1672_l_2_r-0_0.59-1_0.55-2_0.79-3_0.32",
+          "1673_l_2_r-0_0.05-1_0.35-2_0.47-3_2.37",
+          "1674_l_2_r-0_0.3-1_0.1-2_0.48-3_1.43",
+          "1675_l_2_r-0_0.66-1_1.25-2_0.2-3_0.54",
+          "1676_l_2_r-0_1.04-1_1.13-2_1.39-3_0.91",
+          "1677_l_2_r-0_2.13-1_0.2-2_0.01-3_0.13",
+          "1678_l_2_r-0_0.93-1_1.19-2_0.97-3_0.67",
+          "1679_l_2_r-0_0.64-1_0.47-2_0.25-3_0.57",
+          "1680_l_2_r-0_0.9-1_0.54-2_1.19-3_0.86",
+          "1681_l_2_r-0_0.6-1_0.4-2_0.07-3_0.16",
+          "1682_l_2_r-0_0.83-1_0.69-2_0.01-3_0.18",
+          "1683_l_2_r-0_0.76-1_0.37-2_0.62-3_0.84",
+          "1684_l_2_r-0_1.33-1_0.17-2_0.25-3_0.57",
+          "1685_l_2_r-0_0.04-1_1.53-2_0.93-3_1.05",
+          "1686_l_2_r-0_0.27-1_0.11-2_1.07-3_0.74",
+          "1687_l_2_r-0_0.13-1_1.49-2_0.64-3_0.87",
+          "1688_l_2_r-0_0.12-1_0.26-2_1.05-3_0.43",
+          "1689_l_2_r-0_0.4-1_0.83-2_0.52-3_0.07",
+          "1690_l_2_r-0_0.21-1_0.5-2_1.34-3_0.24",
+          "1691_l_2_r-0_0.76-1_0.34-2_0.81-3_1.36",
+          "1692_l_2_r-0_1.67-1_0.73-2_0.59-3_0.58",
+          "1693_l_2_r-0_0.89-1_0.33-2_0.78-3_0.46",
+          "1694_l_2_r-0_0.11-1_0.26-2_0.57-3_0.59",
+          "1695_l_2_r-0_0.19-1_2.2-2_0.65-3_0.57",
+          "1696_l_2_r-0_0.21-1_1.05-2_1.09-3_0.79",
+          "1697_l_2_r-0_0.86-1_0.1-2_1.11-3_0.61",
+          "1698_l_2_r-0_0.39-1_0.91-2_0.03-3_0.84",
+          "1699_l_2_r-0_0.86-1_0.89-2_0.69-3_0.09",
+          "1700_l_2_r-0_0.33-1_1.1-2_0.7-3_0.76",
+          "1701_l_2_r-0_0.99-1_1.68-2_0.41-3_0.34",
+          "1702_l_2_r-0_0.64-1_0.09-2_0.6-3_0.31",
+          "1703_l_2_r-0_0.47-1_0.97-2_0.18-3_0.06",
+          "1704_l_2_r-0_2.1-1_0.2-2_0.67-3_0.38",
+          "1705_l_2_r-0_0.75-1_0.71-2_0.29-3_0.78",
+          "1706_l_2_r-0_0.5-1_0.62-2_1.02-3_0.54",
+          "1707_l_2_r-0_1.18-1_0.09-2_0.38-3_0.65",
+          "1708_l_2_r-0_0.1-1_1.14-2_0.67-3_0.27",
+          "1709_l_2_r-0_0.06-1_1.06-2_0.68-3_0.59",
+          "1710_l_2_r-0_1.2-1_0.88-2_0.68-3_1.06",
+          "1711_l_2_r-0_0.96-1_0.83-2_0.87-3_0.51",
+          "1712_l_2_r-0_1.77-1_1.77-2_0.73-3_0.93",
+          "1713_l_2_r-0_0.34-1_0.77-2_1.63-3_0.07",
+          "1714_l_2_r-0_1.95-1_0.33-2_1.63-3_0.56",
+          "1715_l_2_r-0_0.93-1_1.44-2_0.58-3_1.07",
+          "1716_l_2_r-0_0.16-1_0.84-2_0.99-3_1.05",
+          "1717_l_2_r-0_0.0-1_0.2-2_0.5-3_0.54",
+          "1718_l_2_r-0_0.93-1_1.81-2_0.79-3_1.09",
+          "1719_l_2_r-0_0.67-1_1.11-2_1.02-3_1.44",
+          "1720_l_2_r-0_0.16-1_1.09-2_0.62-3_0.09",
+          "1721_l_2_r-0_0.14-1_1.22-2_0.96-3_1.06",
+          "1722_l_2_r-0_0.78-1_0.33-2_1.15-3_1.69",
+          "1723_l_2_r-0_0.67-1_1.09-2_0.48-3_1.32",
+          "1724_l_2_r-0_0.07-1_0.95-2_0.01-3_0.62",
+          "1725_l_2_r-0_1.22-1_1.03-2_0.24-3_0.91",
+          "1726_l_2_r-0_0.08-1_0.09-2_0.15-3_0.32",
+          "1727_l_2_r-0_1.19-1_0.93-2_0.18-3_0.99",
+          "1728_l_2_r-0_1.39-1_0.55-2_0.84-3_0.35",
+          "1729_l_2_r-0_0.94-1_0.67-2_0.35-3_0.8",
+          "1730_l_2_r-0_0.23-1_0.72-2_0.24-3_0.44",
+          "1731_l_2_r-0_0.51-1_1.17-2_0.97-3_0.24",
+          "1732_l_2_r-0_0.49-1_0.73-2_0.46-3_0.38",
+          "1733_l_2_r-0_1.41-1_0.3-2_0.82-3_0.43",
+          "1734_l_2_r-0_0.63-1_1.8-2_1.0-3_0.01",
+          "1735_l_2_r-0_0.23-1_0.59-2_0.2-3_1.15",
+          "1736_l_2_r-0_1.02-1_0.8-2_0.52-3_0.62",
+          "1737_l_2_r-0_0.92-1_1.42-2_0.26-3_0.77",
+          "1738_l_2_r-0_0.06-1_1.17-2_0.69-3_0.4",
+          "1739_l_2_r-0_0.34-1_0.19-2_0.7-3_0.12",
+          "1740_l_2_r-0_0.42-1_0.93-2_0.15-3_1.2",
+          "1741_l_2_r-0_1.18-1_1.63-2_1.2-3_0.42",
+          "1742_l_2_r-0_0.43-1_1.11-2_0.97-3_0.12",
+          "1743_l_2_r-0_0.12-1_0.55-2_1.05-3_0.14",
+          "1744_l_2_r-0_0.64-1_1.88-2_0.05-3_0.58",
+          "1745_l_2_r-0_0.01-1_1.21-2_0.11-3_1.66",
+          "1746_l_2_r-0_0.51-1_1.45-2_1.33-3_0.81",
+          "1747_l_2_r-0_1.27-1_0.36-2_0.85-3_0.6",
+          "1748_l_2_r-0_0.93-1_0.62-2_0.29-3_0.9",
+          "1749_l_2_r-0_0.17-1_1.18-2_0.75-3_2.16",
+          "1750_l_2_r-0_0.2-1_1.29-2_0.12-3_0.24",
+          "1751_l_2_r-0_0.79-1_0.92-2_1.46-3_0.48",
+          "1752_l_2_r-0_0.59-1_0.59-2_0.24-3_0.03",
+          "1753_l_2_r-0_0.39-1_1.44-2_0.69-3_0.83",
+          "1754_l_2_r-0_1.0-1_0.27-2_0.87-3_0.88",
+          "1755_l_2_r-0_2.28-1_0.6-2_0.71-3_1.46",
+          "1756_l_2_r-0_0.36-1_0.43-2_0.81-3_0.72",
+          "1757_l_2_r-0_0.08-1_1.5-2_0.33-3_0.41",
+          "1758_l_2_r-0_0.06-1_0.17-2_0.54-3_1.0",
+          "1759_l_2_r-0_0.21-1_0.35-2_0.51-3_1.21",
+          "1760_l_2_r-0_1.38-1_0.12-2_1.3-3_0.77",
+          "1761_l_2_r-0_0.6-1_0.5-2_0.53-3_0.27",
+          "1762_l_2_r-0_0.49-1_0.97-2_1.25-3_1.57",
+          "1763_l_2_r-0_0.04-1_0.74-2_0.01-3_0.78",
+          "1764_l_2_r-0_0.84-1_0.4-2_0.67-3_0.32",
+          "1765_l_2_r-0_0.21-1_2.31-2_1.1-3_0.17",
+          "1766_l_2_r-0_0.4-1_0.59-2_1.27-3_0.17",
+          "1767_l_2_r-0_0.57-1_0.2-2_0.17-3_0.41",
+          "1768_l_2_r-0_0.26-1_0.3-2_0.71-3_0.38",
+          "1769_l_2_r-0_0.43-1_1.08-2_0.73-3_0.52",
+          "1770_l_2_r-0_0.65-1_0.24-2_0.03-3_0.31",
+          "1771_l_2_r-0_0.94-1_0.22-2_0.87-3_0.5",
+          "1772_l_2_r-0_0.49-1_0.49-2_1.49-3_0.12",
+          "1773_l_2_r-0_1.0-1_0.53-2_0.28-3_0.4",
+          "1774_l_2_r-0_0.1-1_0.88-2_0.89-3_0.61",
+          "1775_l_2_r-0_0.5-1_0.57-2_0.03-3_1.56",
+          "1776_l_2_r-0_0.24-1_1.01-2_0.29-3_0.36",
+          "1777_l_2_r-0_1.14-1_0.84-2_0.61-3_0.95",
+          "1778_l_2_r-0_1.55-1_0.0-2_0.07-3_1.07",
+          "1779_l_2_r-0_0.72-1_0.55-2_0.36-3_0.22",
+          "1780_l_2_r-0_0.32-1_1.13-2_0.35-3_0.62",
+          "1781_l_2_r-0_0.0-1_0.91-2_0.71-3_0.5",
+          "1782_l_2_r-0_0.98-1_0.22-2_0.01-3_0.05",
+          "1783_l_2_r-0_0.05-1_0.01-2_0.43-3_0.3",
+          "1784_l_2_r-0_1.36-1_0.58-2_1.35-3_0.89",
+          "1785_l_2_r-0_1.11-1_1.03-2_0.49-3_0.29",
+          "1786_l_2_r-0_0.19-1_0.31-2_0.79-3_0.2",
+          "1787_l_2_r-0_0.78-1_0.45-2_0.81-3_0.69",
+          "1788_l_2_r-0_0.13-1_0.71-2_0.69-3_0.23",
+          "1789_l_2_r-0_0.71-1_0.11-2_0.14-3_1.37",
+          "1790_l_2_r-0_0.42-1_2.08-2_1.41-3_0.77",
+          "1791_l_2_r-0_0.15-1_1.1-2_0.48-3_0.33",
+          "1792_l_2_r-0_1.41-1_0.34-2_1.05-3_1.51",
+          "1793_l_2_r-0_1.12-1_0.1-2_0.06-3_0.33",
+          "1794_l_2_r-0_0.87-1_0.46-2_1.47-3_1.38",
+          "1795_l_2_r-0_1.26-1_0.72-2_1.33-3_0.73",
+          "1796_l_2_r-0_1.16-1_0.94-2_0.79-3_0.21",
+          "1797_l_2_r-0_0.44-1_0.03-2_0.09-3_0.79",
+          "1798_l_2_r-0_0.99-1_0.53-2_0.25-3_0.34",
+          "1799_l_2_r-0_0.93-1_1.16-2_1.01-3_1.24",
+          "1800_l_2_r-0_0.32-1_0.44-2_0.21-3_0.34",
+          "1801_l_2_r-0_0.9-1_0.87-2_0.07-3_0.77",
+          "1802_l_2_r-0_0.15-1_0.72-2_0.84-3_0.31",
+          "1803_l_2_r-0_0.13-1_0.55-2_1.36-3_1.14",
+          "1804_l_2_r-0_0.69-1_1.43-2_0.75-3_0.53",
+          "1805_l_2_r-0_0.25-1_1.21-2_0.67-3_0.87",
+          "1806_l_2_r-0_1.38-1_0.58-2_0.4-3_0.35",
+          "1807_l_2_r-0_0.59-1_0.23-2_0.68-3_1.82",
+          "1808_l_2_r-0_0.32-1_0.83-2_1.01-3_0.48",
+          "1809_l_2_r-0_1.44-1_0.32-2_0.62-3_0.01",
+          "1810_l_2_r-0_0.12-1_0.1-2_0.81-3_1.26",
+          "1811_l_2_r-0_0.25-1_1.35-2_0.11-3_1.02",
+          "1812_l_2_r-0_0.82-1_0.83-2_0.66-3_0.31",
+          "1813_l_2_r-0_1.04-1_0.06-2_0.78-3_0.72",
+          "1814_l_2_r-0_0.74-1_1.85-2_0.66-3_0.67",
+          "1815_l_2_r-0_1.13-1_0.38-2_0.15-3_0.5",
+          "1816_l_2_r-0_0.4-1_1.52-2_0.2-3_1.09",
+          "1817_l_2_r-0_1.72-1_0.51-2_0.32-3_0.24",
+          "1818_l_2_r-0_1.07-1_0.25-2_0.87-3_0.43",
+          "1819_l_2_r-0_1.74-1_1.07-2_0.34-3_1.81",
+          "1820_l_2_r-0_1.06-1_0.02-2_0.56-3_0.66",
+          "1821_l_2_r-0_0.97-1_0.44-2_0.84-3_0.03",
+          "1822_l_2_r-0_0.96-1_1.7-2_0.39-3_0.48",
+          "1823_l_2_r-0_0.21-1_0.3-2_0.68-3_0.71",
+          "1824_l_2_r-0_0.73-1_0.31-2_0.56-3_1.46",
+          "1825_l_2_r-0_0.22-1_0.5-2_0.78-3_0.98",
+          "1826_l_2_r-0_0.82-1_1.01-2_0.56-3_0.51",
+          "1827_l_2_r-0_0.7-1_0.37-2_1.15-3_1.33",
+          "1828_l_2_r-0_1.21-1_0.67-2_0.11-3_0.08",
+          "1829_l_2_r-0_0.12-1_0.97-2_0.82-3_1.03",
+          "1830_l_2_r-0_1.3-1_0.0-2_0.82-3_0.62",
+          "1831_l_2_r-0_1.34-1_1.87-2_0.92-3_0.4",
+          "1832_l_2_r-0_1.78-1_0.01-2_0.32-3_0.45",
+          "1833_l_2_r-0_0.93-1_0.9-2_1.05-3_0.48",
+          "1834_l_2_r-0_0.31-1_0.05-2_0.13-3_1.32",
+          "1835_l_2_r-0_1.37-1_0.29-2_0.07-3_0.02",
+          "1836_l_2_r-0_0.01-1_0.4-2_0.19-3_0.56",
+          "1837_l_2_r-0_0.97-1_0.54-2_0.29-3_0.41",
+          "1838_l_2_r-0_0.73-1_1.15-2_0.87-3_0.46",
+          "1839_l_2_r-0_0.95-1_0.92-2_0.57-3_1.84",
+          "1840_l_2_r-0_0.31-1_1.18-2_0.56-3_0.2",
+          "1841_l_2_r-0_0.16-1_0.22-2_0.46-3_0.06",
+          "1842_l_2_r-0_0.33-1_0.84-2_0.06-3_0.12",
+          "1843_l_2_r-0_0.82-1_0.57-2_1.2-3_1.05",
+          "1844_l_2_r-0_1.18-1_1.49-2_1.92-3_0.26",
+          "1845_l_2_r-0_0.7-1_0.18-2_0.0-3_1.09",
+          "1846_l_2_r-0_0.75-1_1.99-2_0.21-3_0.89",
+          "1847_l_2_r-0_0.22-1_0.27-2_0.68-3_0.23",
+          "1848_l_2_r-0_1.11-1_0.64-2_0.11-3_0.28",
+          "1849_l_2_r-0_1.24-1_0.9-2_0.25-3_1.47",
+          "1850_l_2_r-0_0.3-1_0.03-2_0.93-3_0.1",
+          "1851_l_2_r-0_0.05-1_0.71-2_0.19-3_0.32",
+          "1852_l_2_r-0_0.21-1_0.65-2_0.23-3_0.08",
+          "1853_l_2_r-0_0.42-1_0.91-2_0.15-3_0.02",
+          "1854_l_2_r-0_1.49-1_2.01-2_0.57-3_0.13",
+          "1855_l_2_r-0_0.32-1_0.22-2_0.88-3_0.08",
+          "1856_l_2_r-0_1.48-1_0.96-2_0.58-3_0.07",
+          "1857_l_2_r-0_0.11-1_0.8-2_1.24-3_0.5",
+          "1858_l_2_r-0_1.62-1_1.4-2_0.16-3_1.07",
+          "1859_l_2_r-0_0.2-1_0.31-2_0.37-3_0.68",
+          "1860_l_2_r-0_0.62-1_0.93-2_0.26-3_0.54",
+          "1861_l_2_r-0_1.58-1_1.03-2_0.42-3_0.29",
+          "1862_l_2_r-0_0.56-1_0.28-2_1.03-3_0.33",
+          "1863_l_2_r-0_0.5-1_0.81-2_0.7-3_0.21",
+          "1864_l_2_r-0_0.28-1_0.55-2_1.17-3_1.52",
+          "1865_l_2_r-0_0.46-1_0.11-2_0.86-3_0.76",
+          "1866_l_2_r-0_1.17-1_0.22-2_0.23-3_0.22",
+          "1867_l_2_r-0_0.05-1_1.16-2_0.15-3_0.06",
+          "1868_l_2_r-0_1.31-1_1.17-2_0.36-3_1.97",
+          "1869_l_2_r-0_0.77-1_0.34-2_0.26-3_0.42",
+          "1870_l_2_r-0_0.34-1_0.86-2_0.7-3_0.71",
+          "1871_l_2_r-0_0.28-1_0.41-2_0.45-3_1.51",
+          "1872_l_2_r-0_0.96-1_0.71-2_0.75-3_1.09",
+          "1873_l_2_r-0_0.48-1_0.63-2_0.74-3_0.23",
+          "1874_l_2_r-0_0.09-1_0.35-2_0.11-3_0.25",
+          "1875_l_2_r-0_0.93-1_0.33-2_1.64-3_1.0",
+          "1876_l_2_r-0_0.66-1_0.19-2_0.03-3_0.98",
+          "1877_l_2_r-0_0.39-1_0.26-2_1.41-3_0.93",
+          "1878_l_2_r-0_0.16-1_2.75-2_0.93-3_1.1",
+          "1879_l_2_r-0_1.29-1_1.65-2_0.78-3_0.85",
+          "1880_l_2_r-0_0.38-1_0.28-2_0.93-3_1.03",
+          "1881_l_2_r-0_0.93-1_0.58-2_0.21-3_0.54",
+          "1882_l_2_r-0_0.79-1_1.1-2_0.5-3_0.88",
+          "1883_l_2_r-0_0.5-1_0.48-2_0.41-3_0.25",
+          "1884_l_2_r-0_0.67-1_1.2-2_0.42-3_0.33",
+          "1885_l_2_r-0_0.95-1_0.95-2_0.02-3_0.39",
+          "1886_l_2_r-0_1.68-1_2.59-2_0.47-3_0.71",
+          "1887_l_2_r-0_1.04-1_0.03-2_0.47-3_0.53",
+          "1888_l_2_r-0_1.39-1_1.32-2_1.31-3_0.16",
+          "1889_l_2_r-0_0.44-1_3.27-2_0.61-3_0.75",
+          "1890_l_2_r-0_1.75-1_0.91-2_0.98-3_0.28",
+          "1891_l_2_r-0_0.47-1_0.13-2_0.99-3_0.0",
+          "1892_l_2_r-0_1.27-1_0.61-2_0.25-3_1.16",
+          "1893_l_2_r-0_1.06-1_0.7-2_2.32-3_0.35",
+          "1894_l_2_r-0_0.34-1_0.22-2_0.12-3_0.31",
+          "1895_l_2_r-0_0.02-1_0.54-2_0.8-3_0.26",
+          "1896_l_2_r-0_1.4-1_1.79-2_0.91-3_0.4",
+          "1897_l_2_r-0_1.04-1_0.13-2_1.45-3_0.16",
+          "1898_l_2_r-0_0.97-1_0.37-2_0.58-3_0.53",
+          "1899_l_2_r-0_1.02-1_0.53-2_0.98-3_1.46",
+          "1900_l_2_r-0_0.05-1_1.14-2_0.34-3_1.08",
+          "1901_l_2_r-0_0.37-1_0.06-2_1.36-3_0.38",
+          "1902_l_2_r-0_0.73-1_1.04-2_0.34-3_1.27",
+          "1903_l_2_r-0_0.47-1_0.18-2_0.8-3_0.27",
+          "1904_l_2_r-0_1.1-1_0.2-2_0.49-3_1.1",
+          "1905_l_2_r-0_0.2-1_1.19-2_0.12-3_0.86",
+          "1906_l_2_r-0_1.74-1_0.2-2_0.37-3_0.08",
+          "1907_l_2_r-0_0.68-1_0.21-2_0.9-3_1.51",
+          "1908_l_2_r-0_1.58-1_1.35-2_0.49-3_0.26",
+          "1909_l_2_r-0_0.44-1_0.76-2_0.32-3_1.09",
+          "1910_l_2_r-0_1.53-1_0.72-2_0.7-3_1.1",
+          "1911_l_2_r-0_0.89-1_0.07-2_0.07-3_1.3",
+          "1912_l_2_r-0_1.1-1_1.08-2_0.02-3_0.23",
+          "1913_l_2_r-0_1.33-1_0.35-2_0.56-3_0.11",
+          "1914_l_2_r-0_0.82-1_1.72-2_0.31-3_0.94",
+          "1915_l_2_r-0_1.5-1_0.39-2_0.79-3_0.4",
+          "1916_l_2_r-0_0.76-1_0.89-2_0.63-3_0.69",
+          "1917_l_2_r-0_0.62-1_1.85-2_0.34-3_1.39",
+          "1918_l_2_r-0_0.17-1_1.53-2_1.13-3_1.29",
+          "1919_l_2_r-0_0.62-1_0.4-2_0.4-3_0.54",
+          "1920_l_2_r-0_1.52-1_0.65-2_1.53-3_0.88",
+          "1921_l_2_r-0_0.23-1_0.63-2_0.46-3_0.5",
+          "1922_l_2_r-0_0.34-1_0.5-2_0.53-3_0.22",
+          "1923_l_2_r-0_0.24-1_0.27-2_1.66-3_0.17",
+          "1924_l_2_r-0_0.01-1_0.65-2_0.29-3_0.92",
+          "1925_l_2_r-0_0.61-1_0.06-2_0.3-3_0.63",
+          "1926_l_2_r-0_0.4-1_1.02-2_0.53-3_0.99",
+          "1927_l_2_r-0_1.49-1_0.43-2_0.88-3_1.76",
+          "1928_l_2_r-0_0.82-1_0.33-2_0.65-3_1.33",
+          "1929_l_2_r-0_1.22-1_0.64-2_0.55-3_0.38",
+          "1930_l_2_r-0_0.96-1_0.05-2_1.71-3_0.66",
+          "1931_l_2_r-0_0.03-1_1.21-2_1.11-3_0.06",
+          "1932_l_2_r-0_1.55-1_0.01-2_0.04-3_0.76",
+          "1933_l_2_r-0_1.74-1_0.36-2_0.31-3_0.2",
+          "1934_l_2_r-0_1.04-1_0.52-2_0.25-3_0.64",
+          "1935_l_2_r-0_0.66-1_0.72-2_0.25-3_0.21",
+          "1936_l_2_r-0_1.45-1_1.16-2_0.91-3_0.16",
+          "1937_l_2_r-0_1.48-1_0.85-2_0.3-3_0.28",
+          "1938_l_2_r-0_0.33-1_0.78-2_0.13-3_0.75",
+          "1939_l_2_r-0_0.06-1_0.95-2_1.27-3_1.02",
+          "1940_l_2_r-0_0.96-1_0.71-2_1.45-3_0.09",
+          "1941_l_2_r-0_1.22-1_1.09-2_0.36-3_1.72",
+          "1942_l_2_r-0_0.7-1_1.23-2_0.57-3_0.64",
+          "1943_l_2_r-0_1.25-1_0.94-2_1.17-3_1.3",
+          "1944_l_2_r-0_0.36-1_0.45-2_1.15-3_0.29",
+          "1945_l_2_r-0_0.04-1_0.35-2_0.33-3_0.32",
+          "1946_l_2_r-0_0.18-1_0.06-2_0.22-3_0.02",
+          "1947_l_2_r-0_0.46-1_0.59-2_1.4-3_0.2",
+          "1948_l_2_r-0_1.19-1_2.12-2_0.1-3_1.31",
+          "1949_l_2_r-0_0.17-1_0.91-2_1.38-3_0.99",
+          "1950_l_2_r-0_0.7-1_1.0-2_1.11-3_0.6",
+          "1951_l_2_r-0_1.45-1_0.88-2_0.08-3_0.09",
+          "1952_l_2_r-0_0.04-1_0.55-2_0.53-3_0.43",
+          "1953_l_2_r-0_0.72-1_1.17-2_0.14-3_0.41",
+          "1954_l_2_r-0_0.88-1_0.55-2_0.12-3_0.54",
+          "1955_l_2_r-0_0.63-1_0.95-2_1.04-3_0.74",
+          "1956_l_2_r-0_0.01-1_1.24-2_0.63-3_0.68",
+          "1957_l_2_r-0_1.0-1_0.41-2_0.75-3_1.14",
+          "1958_l_2_r-0_0.71-1_0.06-2_1.21-3_2.07",
+          "1959_l_2_r-0_0.54-1_0.69-2_1.14-3_0.54",
+          "1960_l_2_r-0_0.36-1_0.5-2_0.1-3_0.77",
+          "1961_l_2_r-0_0.75-1_0.25-2_0.26-3_0.57",
+          "1962_l_2_r-0_1.74-1_0.01-2_1.2-3_0.82",
+          "1963_l_2_r-0_0.6-1_0.24-2_0.9-3_0.09",
+          "1964_l_2_r-0_0.98-1_0.29-2_0.71-3_0.22",
+          "1965_l_2_r-0_1.4-1_0.55-2_1.05-3_0.65",
+          "1966_l_2_r-0_0.64-1_0.52-2_0.51-3_0.54",
+          "1967_l_2_r-0_0.86-1_0.79-2_0.9-3_0.38",
+          "1968_l_2_r-0_0.5-1_0.05-2_0.83-3_0.65",
+          "1969_l_2_r-0_0.95-1_1.67-2_0.39-3_0.46",
+          "1970_l_2_r-0_1.33-1_0.83-2_0.48-3_1.1",
+          "1971_l_2_r-0_0.3-1_0.61-2_0.43-3_0.99",
+          "1972_l_2_r-0_1.11-1_0.99-2_0.32-3_0.12",
+          "1973_l_2_r-0_0.83-1_0.08-2_0.62-3_1.17",
+          "1974_l_2_r-0_0.38-1_1.29-2_0.72-3_0.8",
+          "1975_l_2_r-0_0.13-1_0.08-2_0.09-3_0.45",
+          "1976_l_2_r-0_0.55-1_1.13-2_1.14-3_0.57",
+          "1977_l_2_r-0_0.23-1_0.29-2_0.27-3_0.31",
+          "1978_l_2_r-0_0.24-1_0.69-2_0.76-3_1.13",
+          "1979_l_2_r-0_1.21-1_0.54-2_0.73-3_0.6",
+          "1980_l_2_r-0_0.26-1_0.23-2_1.13-3_0.69",
+          "1981_l_2_r-0_0.8-1_0.26-2_0.43-3_0.27",
+          "1982_l_2_r-0_0.53-1_1.22-2_1.5-3_0.4",
+          "1983_l_2_r-0_1.23-1_0.72-2_0.36-3_0.9",
+          "1984_l_2_r-0_0.15-1_0.19-2_1.06-3_0.54",
+          "1985_l_2_r-0_0.64-1_0.33-2_0.76-3_0.3",
+          "1986_l_2_r-0_0.71-1_0.26-2_0.69-3_1.14",
+          "1987_l_2_r-0_0.64-1_1.37-2_1.49-3_0.06",
+          "1988_l_2_r-0_0.34-1_0.5-2_0.99-3_0.45",
+          "1989_l_2_r-0_0.15-1_0.0-2_0.3-3_0.36",
+          "1990_l_2_r-0_1.73-1_0.5-2_0.8-3_0.52",
+          "1991_l_2_r-0_0.53-1_2.59-2_0.33-3_0.15",
+          "1992_l_2_r-0_0.13-1_0.02-2_1.61-3_0.92",
+          "1993_l_2_r-0_0.15-1_0.63-2_0.49-3_0.6",
+          "1994_l_2_r-0_0.15-1_1.81-2_0.43-3_0.32",
+          "1995_l_2_r-0_0.05-1_0.07-2_0.44-3_0.01",
+          "1996_l_2_r-0_0.4-1_0.18-2_1.16-3_0.14",
+          "1997_l_2_r-0_1.62-1_0.63-2_0.73-3_0.8"
          ],
          "type": "scatter3d",
          "x": [
-          -10.757943189526973,
-          -10.324372578891087,
-          -10.590931058396963,
-          -9.814353734879697,
-          -10.480848101526977,
-          -9.721385856665746,
-          -11.08413089902139,
-          -9.244000153141561,
-          -9.237677875290345,
-          -10.117366521096773,
-          -9.524454988303017,
-          -9.323386521514434,
-          -9.545177807276957,
-          -9.448266153961008,
-          -10.363405908683534,
-          -9.589372425992842,
-          -9.835881002053537,
-          -9.925244999942699,
-          -9.544476496189258,
-          -10.601010208118682,
-          -11.939371078793883,
-          -8.224945942961911,
-          -10.249072831502065,
-          -10.112297222491637,
-          -11.636118999076187,
-          -8.594942814230588,
-          -10.218651242431298,
-          -9.264200491284598,
-          -10.299348072685257,
-          -10.423515913123293,
-          -8.682800952852746,
-          -12.458374346588007,
-          -11.327082999503087,
-          -9.414430628342643,
-          -10.24237263072406,
-          -10.713043036119316,
-          -9.727919821244726,
-          -10.209647168207633,
-          -10.085982671018517,
-          -9.656520084040494,
-          -7.247712860331346,
-          -10.65296790059649,
-          -10.331120216549946,
-          -10.428255232320188,
-          -9.901532983749672,
-          -10.055493322225514,
-          -9.27927459905878,
-          -11.44596750943532,
-          -10.697547646496579,
-          -11.088150268551656,
-          -11.311956880497075,
-          -10.699552904107763,
-          -10.446152776945185,
-          -9.928265072341876,
-          -8.73412460795565,
-          -9.977812805042328,
-          -9.960731517085861,
-          -9.318425824471518,
-          -7.033492351135803,
-          -13.190637384241743,
-          -9.401194349066289,
-          -9.237112539734586,
-          -10.334597458216603,
-          -9.455522060827189,
-          -8.942903434197913,
-          -10.028406489478696,
-          -10.56558403520727,
-          -7.877929045396607,
-          -9.665177364165523,
-          -10.002429952348441,
-          -10.78118244597444,
-          -10.904740413341472,
-          -10.4977044281844,
-          -9.15199839810333,
-          -10.684248196049847,
-          -9.396825051441972,
-          -10.028537707178527,
-          -10.224029887681406,
-          -9.763221644369679,
-          -9.582910425120911,
-          -14.326238720634265,
-          -8.221048694198808,
-          -9.801261405974232,
-          -11.149877734715389,
-          -10.619185951597798,
-          -8.898250040859295,
-          -9.90458637390797,
-          -9.07941501055536,
-          -9.404238121445616,
-          -10.812328376004018,
-          -9.80617291489423,
-          -9.64133416448253,
-          -10.363001252062622,
-          -10.013035689553936,
-          -8.816336432440597,
-          -10.142280205955283,
-          -10.241956961468684,
-          -11.81670104286487,
-          -9.143341398231518,
-          -9.75221434369297,
-          -10.092413142361593,
-          -8.861516225026673,
-          -10.220903188404554,
-          -9.808236981810813,
-          -11.335601335187526,
-          -9.97725187094653,
-          -9.556369772361935,
-          -10.322606080917398,
-          -10.116466250816318,
-          -10.918184464938614,
-          -9.364803481371379,
-          -10.051458156149398,
-          -10.564890238935075,
-          -9.112328613662426,
-          -9.19194869532629,
-          -11.713894460844148,
-          -9.92348317467762,
-          -12.205637268748395,
-          -9.841180090837083,
-          -11.948153535240161,
-          -6.166939889546503,
-          -8.60493128931118,
-          -10.690039344416988,
-          -8.864441869681187,
-          -10.141759479562468,
-          -9.795635317012556,
-          -11.693994047617798,
-          -9.269413832153129,
-          -9.83388022135185,
-          -8.614508401468033,
-          -10.008867667824527,
-          -9.769730763234815,
-          -10.418904110352784,
-          -9.482274004829751,
-          -10.154465413324868,
-          -11.051292714377633,
-          -10.049200197009139,
-          -7.748633773130029,
-          -9.646211713792832,
-          -10.228071102233702,
-          -9.916916592357264,
-          -8.877790338958707,
-          -10.32216132677089,
-          -10.426432570722202,
-          -12.265357990615886,
-          -10.091080614449472,
-          -10.90370418056686,
-          -10.161882596539693,
-          -9.716909344670247,
-          -11.04066637865423,
-          -8.935897045555658,
-          -11.289515820742157,
-          -10.395591913183123,
-          -10.055430725491924,
-          -10.95665293116148,
-          -11.020476256456735,
-          -8.64767845113402,
-          -8.943348743484242,
-          -10.541439200155713,
-          -11.303966605676232,
-          -10.777094114207403,
-          -8.754036324475182,
-          -8.065770625380535,
-          -10.152404338442597,
-          -10.025931474592637,
-          -10.61069674855534,
-          -9.889830350570621,
-          -9.518862286671691,
-          -9.422388411969898,
-          -9.610040662347833,
-          -9.734124331194446,
-          -10.872374882545342,
-          -9.117767501863028,
-          -11.617697443324037,
-          -10.295174852992714,
-          -9.585858035248252,
-          -8.677786215772707,
-          -9.599385844726774,
-          -11.170163393680191,
-          -9.502162197391558,
-          -10.181970233689768,
-          -10.161293304622445,
-          -10.126194977957377,
-          -9.073678604497042,
-          -11.258830681317122,
-          -9.864788444740684,
-          -9.651657654587622,
-          -9.494704750060372,
-          -10.62744599988315,
-          -9.575171664900441,
-          -10.488591879180301,
-          -11.864660501048927,
-          -8.62193549589513,
-          -9.532518812314573,
-          -9.304620299821472,
-          -11.966866835126574,
-          -9.184301576525707,
-          -9.293906980658836,
-          -9.00570938834541,
-          -9.232547941637117,
-          -8.815428035614621,
-          -9.592235454841376,
-          -9.084943910529162,
-          -10.787398313751325,
-          -13.574178941799445,
-          -9.526337229049796,
-          -9.425108967361982,
-          -10.192141226267347,
-          -10.5264307455038,
-          -10.419894000279518,
-          -9.102108274527694,
-          -9.951979495848486,
-          -9.539749061910227,
-          -8.983960705225256,
-          -10.202413042410775,
-          -10.841231663311163,
-          -10.923074548527063,
-          -9.294600263071043,
-          -11.378994195332302,
-          -10.79952219619298,
-          -10.847522101659244,
-          -10.957803788640547,
-          -7.751795824957863,
-          -10.1779599681721,
-          -9.975606988697912,
-          -10.78347898481545,
-          -10.227718007873092,
-          -10.4986029800353,
-          -8.485323870596515,
-          -9.910712572672642,
-          -10.188870034029462,
-          -9.63513054730291,
-          -11.011214439822881,
-          -9.449021109450701,
-          -9.652679666729439,
-          -7.99747483805916,
-          -10.017588172657119,
-          -11.875387570753915,
-          -12.41073253752943,
-          -12.504047334211297,
-          -10.529386256682109,
-          -10.976014128470661,
-          -11.61778394652518,
-          -8.563692517715571,
-          -12.46219762370496,
-          -10.088367315170075,
-          -10.160470460701413,
-          -10.329739376160195,
-          -10.66621710911271,
-          -9.636343263504086,
-          -9.737826803793642,
-          -9.657642719096227,
-          -9.934796915414193,
-          -10.40435779689418,
-          -6.4373924377226235,
-          -9.301674857818913,
-          -11.364446659466896,
-          -11.153759029886285,
-          -9.879681408404394,
-          -10.11407905328203,
-          -10.793699534010559,
-          -9.704321458136942,
-          -8.575233382181937,
-          -10.49208490332872,
-          -8.876041157676987,
-          -9.378313179433869,
-          -7.372636376743709,
-          -10.09237334441493,
-          -9.892104216162576,
-          -10.057831850438983,
-          -9.817108120116409,
-          -11.277104337917205,
-          -10.830569737558053,
-          -11.8617516095881,
-          -9.765562317189268,
-          -9.826480756571852,
-          -7.751722436970081,
-          -11.310119985825882,
-          -9.772089688099664,
-          -9.971199029196988,
-          -9.411461178558604,
-          -11.436548046079228,
-          -9.319743087087152,
-          -10.114596175702001,
-          -9.440112592809898,
-          -9.341728229511522,
-          -9.26499254506577,
-          -9.920370044685594,
-          -9.042916268361584,
-          -10.91033641469167,
-          -9.141597132969046,
-          -9.81610966111575,
-          -9.339991559181428,
-          -11.101553309787905,
-          -10.385655616579319,
-          -6.9723378532143006,
-          -10.137792354180737,
-          -8.584434794155069,
-          -10.18709797498706,
-          -8.36724077410991,
-          -9.844182605387404,
-          -12.557269376856402,
-          -9.856775361247259,
-          -9.988152868817467,
-          -12.354238990044946,
-          -10.276663592438899,
-          -10.777384734972198,
-          -10.882673021214012,
-          -10.504972453222907,
-          -8.599405052554438,
-          -10.624031975829968,
-          -10.634544854318237,
-          -8.636762989016898,
-          -8.67711951925605,
-          -9.732243615020872,
-          -9.017416670988306,
-          -11.007950615579034,
-          -10.182665210203563,
-          -10.686211456192527,
-          -10.863797990030262,
-          -13.116978530037585,
-          -9.334009319424403,
-          -9.491474469443462,
-          -11.48388545279813,
-          -8.979038907236522,
-          -9.280434633087959,
-          -10.112845872777378,
-          -7.92962207480903,
-          -9.39109845698306,
-          -11.069103315070473,
-          -8.264717743057734,
-          -10.233304553731093,
-          -7.358803266486211,
-          -12.529534115019707,
-          -9.98389327059902,
-          -8.329958105699728,
-          -10.304227171875702,
-          -11.06740377410637,
-          -8.132460515541359,
-          -9.220942552460933,
-          -10.236925884198682,
-          -9.951013361951807,
-          -10.085222361514278,
-          -9.507805834502497,
-          -10.605773422318908,
-          -9.58106560959914,
-          -10.701463799401917,
-          -9.167293648128704,
-          -8.863258220585191,
-          -8.667738103719058,
-          -8.699661498342792,
-          -11.467583594866555,
-          -10.372471271693307,
-          -9.265046899811901,
-          -10.916884290145807,
-          -8.604635525499608,
-          -9.845589821812478,
-          -11.225016638124053,
-          -9.838045296742925,
-          -11.554065028912031,
-          -10.231671354610103,
-          -9.936274106757674,
-          -10.493413354205394,
-          -9.39760868575419,
-          -11.694748852140025,
-          -10.849304755120105,
-          -10.713665344038942,
-          -9.23925504195823,
-          -9.600314258918285,
-          -11.321854219595695,
-          -10.0975725159147,
-          -10.391523683988238,
-          -7.987245762132947,
-          -9.872036504451723,
-          -10.171996525664051,
-          -11.061740854423029,
-          -10.634019441754521,
-          -12.552731075633886,
-          -9.821908737627652,
-          -9.54603465568572,
-          -10.20788663565259,
-          -9.708355744754002,
-          -9.813215055309547,
-          -10.499292159097632,
-          -9.345004324726652,
-          -10.293420095024143,
-          -10.845821184821016,
-          -11.08238536994281,
-          -10.130938369937615,
-          -8.096975939881581,
-          -9.586308744701311,
-          -10.59196891338974,
-          -8.573055922968347,
-          -10.12462555986564,
-          -9.710997336445326,
-          -11.483754465430234,
-          -8.772339885545872,
-          -9.761355937433457,
-          -9.468909183874548,
-          -10.077744578562255,
-          -11.667918134430078,
-          -9.193649866585563,
-          -9.993424922808355,
-          -8.973320337997242,
-          -9.533541308352836,
-          -10.37205558027958,
-          -9.580013292740729,
-          -11.8280158285593,
-          -8.483158046052743,
-          -11.357637958667452,
-          -8.747109599839938,
-          -10.727663244883443,
-          -11.401909833678243,
-          -9.511474387110109,
-          -10.023508306999338,
-          -10.815924865013738,
-          -10.782499430597332,
-          -10.197079027419317,
-          -8.442126331440113,
-          -11.501089008576457,
-          -10.288628523290264,
-          -8.179516980823323,
-          -10.590815008285912,
-          -10.499977794091407,
-          -9.66817300539478,
-          -10.451024480437685,
-          -10.046229727717542,
-          -10.840465474063226,
-          -9.908905924339676,
-          -10.261696571628374,
-          -9.743595036394042,
-          -11.12907013637186,
-          -13.021218346672928,
-          -6.485032763597017,
-          -9.988315051467104,
-          -9.990726941909823,
-          -10.10841653669249,
-          -8.570181656347073,
-          -9.758572513221251,
-          -9.290461098148013,
-          -9.878714253353568,
-          -11.386210091157047,
-          -9.534521227203326,
-          -10.156978180263945,
-          -10.590663169849062,
-          -9.760855150900086,
-          -10.281009753529341,
-          -10.455056379250578,
-          -10.408010613447882,
-          -9.400214778455096,
-          -10.428200647303324,
-          -9.024881121760366,
-          -9.695924221417282,
-          -9.186955516485847,
-          -8.30582981610463,
-          -11.055539717301677,
-          -9.449276307563895,
-          -7.31514461881013,
-          -11.939105579427718,
-          -8.665963495586453,
-          -11.187906687448692,
-          -9.687485444384105,
-          -8.933396619389873,
-          -13.214175224767537,
-          -9.868131094085998,
-          -9.533929685452046,
-          -10.035759895648393,
-          -7.544032973188775,
-          -10.734676301162706,
-          -10.649448942744973,
-          -11.34781011932141,
-          -9.974784371628923,
-          -9.792113878765877,
-          -9.942819442613084,
-          -10.292617604296472,
-          -10.246527013741918,
-          -11.203786865481185,
-          -11.666355512274897,
-          -9.627697262456525,
-          -7.165540428744928,
-          -10.871661857473791,
-          -10.496681887045744,
-          -9.814328360485481,
-          -11.483668658041475,
-          -9.204248752742496,
-          -9.43678157834716,
-          -10.258659915462657,
-          -10.400428544972755,
-          -10.208669701302187,
-          -10.046495938342966,
-          -10.743787414091022,
-          -9.672719272203633,
-          -9.00126081750441,
-          -10.142525838073087,
-          -9.44470447084395,
-          -9.953354957967104,
-          -10.574627680425488,
-          -9.285191386177136,
-          -9.855751834939413,
-          -9.947694507035338,
-          -9.673506282416707,
-          -9.191450071389317,
-          -9.651679780097938,
-          -10.034843363832062,
-          -12.804286840190382,
-          -9.839737282836444,
-          -10.466948205667027,
-          -10.460033580423909,
-          -9.501658242718388,
-          -10.71186943584191,
-          -9.414592534526424,
-          -9.928758123859122,
-          -9.473519680026463,
-          -11.48079372567432,
-          -9.901388762381773,
-          -10.851106898536003,
-          -10.068569402617669,
-          -10.169468803793542,
-          -11.660120305199175,
-          -9.121407780256416,
-          -10.362894255687687,
-          -8.94974645325382,
-          -9.29673288223334,
-          -10.299323470659218,
-          -8.494792161123062,
-          -9.526796394870155,
-          -8.450058852803211,
-          -9.967318561212513,
-          -10.07161308889742,
-          -11.376663217938521,
-          -10.02160865503223,
-          -9.84451583542823,
-          -9.669000419691438,
-          -10.016431190694362,
-          -9.68625654020321,
-          -9.973998107815031,
-          -10.141506335130236,
-          -10.90042507533926,
-          -10.662142413833168,
-          -9.053774650535743,
-          -11.692918635353356,
-          -10.834267617978954,
-          -13.145790958901218,
-          -9.806813039350871,
-          -9.4914810948874,
-          -10.057405371058081,
-          -10.764355674335158,
-          -8.101499072612294,
-          -9.947167671697875,
-          -9.39383641481913,
-          -10.205282146360457,
-          -10.107256794553628,
-          -10.518786725438863,
-          -10.877702061058848,
-          -7.958548823851287,
-          -10.700798797542742,
-          -9.713778192869992,
-          -9.652119856601317,
-          -9.748977526249135,
-          -11.592637625155044,
-          -10.31991741431877,
-          -9.717437132362054,
-          -9.822780303576128,
-          -9.839900800992114,
-          -9.832128421156472,
-          -9.468243993693422,
-          -10.435087736844993,
-          -9.67869004946298,
-          -10.53785497923705,
-          -11.001144513328386,
-          -11.344506126085076,
-          -9.77200405721914,
-          -10.23336196311452,
-          -10.197056368658917,
-          -9.488446958425936,
-          -9.259405221945169,
-          -9.488764756476693,
-          -7.3314882522863964,
-          -7.800538097681827,
-          -9.627152955275116,
-          -9.827792306016885,
-          -9.610385133165284,
-          -8.544579663941391,
-          -12.314666832512593,
-          -9.870976869202332,
-          -9.89707768012803,
-          -10.694798448261523,
-          -9.643564356966147,
-          -11.755301029859197,
-          -9.944276054873736,
-          -9.555467161709025,
-          -10.458195461055455,
-          -9.320628765419697,
-          -9.538181746224137,
-          -8.13780370788067,
-          -9.906426000140618,
-          -9.490205250012885,
-          -10.58070726836594,
-          -9.980627631295373,
-          -10.600813652137385,
-          -9.725042551040842,
-          -10.847943684452291,
-          -9.618149125679867,
-          -9.199352818696791,
-          -13.504973528323404,
-          -8.231457682320178,
-          -9.604787613093714,
-          -10.690035539288273,
-          -10.10651594537673,
-          -10.217318682389994,
-          -10.182138756431058,
-          -10.039546820605734,
-          -9.115483220044233,
-          -9.762078222778154,
-          -8.14500918337698,
-          -11.824922249203569,
-          -11.061318009637521,
-          -10.295466739945471,
-          -11.178067225454777,
-          -10.691896859498282,
-          -10.491950190853277,
-          -12.659292357250187,
-          -10.054009270752113,
-          -9.903201001854638,
-          -9.922268759437891,
-          -10.438202722143306,
-          -10.797311083270433,
-          -11.086064467470143,
-          -9.26328957619918,
-          -10.180961095150879,
-          -9.931293221092284,
-          -9.990861721839973,
-          -10.143191946552122,
-          -14.090186556830965,
-          -10.669097730958173,
-          -10.673903496516992,
-          -10.010067304020222,
-          -9.232972908924529,
-          -9.110610371232177,
-          -11.157635808557972,
-          -9.617037457587271,
-          -11.008048820066383,
-          -9.512113348187734,
-          -10.454516782790064,
-          -8.728641289567017,
-          -10.790548999659501,
-          -10.858342267955967,
-          -10.226946810652406,
-          -8.425470408844232,
-          -9.68592961083011,
-          -9.752290512339625,
-          -7.67403118596756,
-          -9.599085818414748,
-          -7.291791234199362,
-          -9.641193541055262,
-          -9.206839888154128,
-          -10.065453127861982,
-          -9.262006532287172,
-          -9.991194622215167,
-          -8.471435786412997,
-          -8.940237105200133,
-          -11.707499157865543,
-          -10.887347129931571,
-          -9.359091130398927,
-          -10.656497619798396,
-          -10.057166809966972
+          0.8682430584440669,
+          -0.11007966815723202,
+          -1.379933906286722,
+          -0.661232715698471,
+          1.016262107775336,
+          -0.07282074021437546,
+          1.8688013289349494,
+          1.3881106746854825,
+          1.118972374714718,
+          1.1801169642483922,
+          0.4867346618458478,
+          1.6872938514574818,
+          0.752900995832905,
+          1.0649844107302777,
+          0.8500745670405077,
+          2.2915617184235133,
+          0.5262937291315501,
+          1.356387759944818,
+          0.2550738596726869,
+          1.5743316305327952,
+          0.0285664323236956,
+          1.0395076069279539,
+          1.8165785303076536,
+          0.30396075481840434,
+          0.851847309589512,
+          1.7887640542246,
+          2.3327358830518037,
+          1.8614277051381225,
+          2.2216822113742176,
+          1.5327023820824752,
+          2.4983628742833286,
+          0.9764436826108193,
+          1.571629733399953,
+          1.3089503731200227,
+          0.345784778921702,
+          0.42414460337207627,
+          0.48601242902330155,
+          1.2314209885615357,
+          1.14540549371265,
+          2.3713509503210295,
+          0.7159237252404078,
+          1.7451760214472087,
+          1.8195173249387446,
+          0.43141591045375594,
+          1.425455585058532,
+          0.8958616588793505,
+          1.5298007325920122,
+          0.985159102457577,
+          -0.04634419665163603,
+          0.6484103244305419,
+          -0.3390873432856263,
+          0.23531248790393544,
+          -0.009005157421154264,
+          1.8646263483035832,
+          1.307878997337105,
+          0.9640926660531081,
+          -0.04230402761451657,
+          0.7758787231835294,
+          1.5567747702166832,
+          2.4289117878018303,
+          -0.06389283878006924,
+          1.0649362744131325,
+          1.1204159953470736,
+          0.2712439457477923,
+          -0.2461712646481884,
+          0.7496288142934556,
+          0.36066782174887824,
+          1.923371385039064,
+          -0.03933792065108177,
+          2.3942756938396927,
+          -0.028006013362797066,
+          0.932894423331679,
+          -0.6069145836011052,
+          2.5067240265617885,
+          1.274196782436241,
+          2.246334614580655,
+          -0.4728367657168804,
+          0.8883416667880311,
+          0.27771322246875985,
+          1.896868989225833,
+          -0.7623689979568573,
+          1.6222575511697377,
+          1.4129228967479583,
+          0.7723079780599302,
+          -0.7985225725673499,
+          2.174970539353901,
+          -0.6237814142007827,
+          1.2835866997356553,
+          -0.07893278223653999,
+          0.4403587575705853,
+          -0.8431682572674883,
+          0.569206226849124,
+          -0.10123134558722513,
+          0.9796847552020014,
+          1.9261740685229447,
+          2.0604800186821426,
+          1.2209783990860632,
+          1.0509090926463462,
+          -0.09433284865225966,
+          1.9751919366924144,
+          -0.4321453572544667,
+          1.26160697267133,
+          -0.004792897130031504,
+          1.3001673649744308,
+          -0.06971229847280935,
+          1.1355269975721,
+          -0.21317307244764927,
+          1.5930348885563745,
+          0.15182256161764207,
+          0.5421727011401147,
+          1.087584291380736,
+          0.39586744799588747,
+          0.35649773823864794,
+          0.28432143887893657,
+          -0.2074029308847074,
+          2.0205541243350313,
+          -0.2938684311947217,
+          1.7715236130457712,
+          -0.7578195207836089,
+          2.017734353687781,
+          1.262562753901231,
+          1.2100420058671508,
+          1.1950592809772655,
+          0.8595963274381994,
+          2.1281657206644318,
+          0.17414323667228948,
+          -0.019657962016457642,
+          0.9319382777904381,
+          0.41062362899189486,
+          1.6104248041925397,
+          -0.8796914318939109,
+          0.11019233459658506,
+          -0.15815797094579498,
+          0.06155062428594682,
+          1.1198895236628374,
+          1.3969577675724834,
+          1.4641783142028906,
+          0.4024396894425829,
+          -0.8098367675163207,
+          0.3118797104821637,
+          -0.08782405384007763,
+          0.9655259973187116,
+          1.871809139828521,
+          1.5882916109971101,
+          0.851542925604197,
+          -0.3399473479307282,
+          1.1066523172852634,
+          1.5385911338138945,
+          -1.0072172361651148,
+          1.9196093406895245,
+          0.6796272838537366,
+          -0.6792564654804649,
+          1.107243947012971,
+          1.915583510978796,
+          -0.19911339142171958,
+          0.887186611606755,
+          -0.6858319029284432,
+          1.3387723202446142,
+          1.1056212095739555,
+          1.5081554232440535,
+          0.9756105919880517,
+          1.7751322203645188,
+          1.5558290550316194,
+          -0.4024227857732059,
+          0.11221294958666184,
+          -0.08109289209186565,
+          1.4128316831825196,
+          1.5791897813717257,
+          -0.18902435664853412,
+          1.9396721590351973,
+          0.5276957681143339,
+          0.626153543729753,
+          -0.16809469966836788,
+          1.2261337896814148,
+          1.093704113881091,
+          -0.09692184329013731,
+          0.47151504724372795,
+          0.6815683803946708,
+          0.29454240009350185,
+          0.4488373685573045,
+          1.9367758251827731,
+          0.9337078843625924,
+          1.8579170238782863,
+          -0.5370353134992825,
+          -0.011676223830000998,
+          1.4359096868109542,
+          0.5803646531805688,
+          -0.32922760207071655,
+          1.3852990825945297,
+          1.0760752454230573,
+          0.1099077856413192,
+          1.2425668537516952,
+          0.4223259882928513,
+          1.597632719841339,
+          1.3923753433178647,
+          1.8010817541582362,
+          0.9501688235041001,
+          1.5329047263590483,
+          0.18451497415562146,
+          1.1317424667713032,
+          0.9366666155522133,
+          0.033813588840237996,
+          0.47796252024432007,
+          0.26464010360285584,
+          1.0660129992769365,
+          2.107795953037254,
+          1.2320170300774853,
+          2.0778402641389215,
+          1.5234377585305579,
+          0.45222588442652223,
+          0.34998542702801183,
+          1.9791651666032557,
+          1.1422259958655994,
+          3.0338691377390377,
+          0.6681343220874172,
+          2.3474902697309292,
+          0.7566845721484609,
+          0.10198927884523723,
+          1.5350283525520756,
+          1.441009770235956,
+          1.3948687095126877,
+          0.03288925352513383,
+          1.3815382564441652,
+          0.5223925977379833,
+          1.076674425558198,
+          1.7403664856524952,
+          0.35801383709224266,
+          1.1491370621434578,
+          2.089142473388527,
+          0.7403516147616962,
+          0.7773779627708468,
+          1.4494744604758634,
+          1.244228896734336,
+          0.6768079052292617,
+          1.4744386787116248,
+          0.4826995423177409,
+          1.4762571793572146,
+          1.3791314881538437,
+          0.4905903969510035,
+          2.3087985919658527,
+          1.011056148832552,
+          0.8784446069471505,
+          0.8797107100632928,
+          0.706318640631675,
+          1.3844867438408974,
+          1.854211640646153,
+          0.5251596292418141,
+          1.434705182657245,
+          0.49676153287736147,
+          1.548815521890254,
+          0.3672952701530334,
+          1.4546497459844487,
+          1.016840186775993,
+          1.913400656530228,
+          1.6819526012225832,
+          2.0075496374916693,
+          1.4388445663294205,
+          0.2718362224774239,
+          0.9170352934824033,
+          0.37911006312822204,
+          1.116562720448858,
+          0.7576748770801318,
+          1.0222433299510907,
+          0.8528665823521369,
+          1.4308166428093139,
+          1.5740655909154455,
+          2.325637897682948,
+          0.18981249210481876,
+          0.8148549267843586,
+          2.394318761289697,
+          0.9568198642565324,
+          2.3346555119067114,
+          1.101886368067278,
+          0.018542656138911928,
+          0.22257870419142023,
+          0.10099613214549508,
+          0.6604836190169558,
+          1.5653411321299853,
+          0.9766349768408291,
+          0.4809096925496502,
+          1.4990280734467865,
+          0.3965145079277883,
+          0.4951003951427071,
+          0.4449560938810063,
+          0.7779558786310458,
+          1.8255181516929548,
+          0.9497838786369451,
+          0.515456153676286,
+          1.3348433755761242,
+          1.213412778150028,
+          1.597651157297305,
+          0.2915832382758633,
+          0.4445377869277075,
+          0.9167530915536526,
+          1.0902524314765931,
+          1.1432248688109254,
+          1.0816031916755056,
+          1.2456299859539515,
+          0.5601143558437098,
+          2.6133918633166724,
+          1.352310083051888,
+          1.3744247778000172,
+          0.6302663917578731,
+          0.3830998303892761,
+          1.3667052948139276,
+          0.6422914409272328,
+          2.3032268034341463,
+          1.19401305062593,
+          1.8009110019944252,
+          2.3155555836161277,
+          1.2365153117788832,
+          1.6476812254165754,
+          0.6283595851291952,
+          0.2552026496301185,
+          0.41064976929389896,
+          0.7268816923164563,
+          0.024619382901874265,
+          1.542929849367618,
+          1.762032144359695,
+          0.192101788055687,
+          0.7723654575662309,
+          0.5015861630917486,
+          1.1824017191939544,
+          1.1197888177200692,
+          0.27164210139862066,
+          0.4742217145999893,
+          1.2002040015410074,
+          0.690543347199801,
+          1.752492195294224,
+          0.1768259112242414,
+          1.600268797446597,
+          0.41082281848204705,
+          1.0322697414920485,
+          1.0906094266599617,
+          0.6734564235256324,
+          2.3509620654689574,
+          0.1402913084696159,
+          0.1918076597883135,
+          0.7548440865757455,
+          0.48517616031469823,
+          1.5182352496555707,
+          1.3087913525036718,
+          0.481056186795522,
+          0.957448546337742,
+          1.5698654472662839,
+          1.5101474104607562,
+          1.2990273840494924,
+          0.24914136393167663,
+          1.2600529166413184,
+          0.8117538382209315,
+          2.0160466509766124,
+          1.7580162605976226,
+          0.8614948254567081,
+          1.5170758398093938,
+          1.0655058209469894,
+          1.2731449068597038,
+          1.0488489979767153,
+          2.109444137780555,
+          1.3428966452303592,
+          1.4016661020712982,
+          0.9627974672750934,
+          0.7838304682042835,
+          1.0807787591296165,
+          0.6493165486140386,
+          1.2337545407731707,
+          1.1102409373831454,
+          0.02721684825556725,
+          1.2380259758509944,
+          1.3173925483440836,
+          2.035302636876246,
+          1.6617193689477612,
+          1.4573182074780373,
+          0.7630904521756388,
+          0.28610971117799244,
+          1.863774315695541,
+          0.3761178383383912,
+          1.5891785776453755,
+          1.1241471110758858,
+          0.6800649223077289,
+          0.873177935800119,
+          1.9201690415267354,
+          1.9663773667967799,
+          1.6541227608163376,
+          0.584193312082596,
+          0.9867987377417903,
+          0.4989752268168177,
+          1.2427623880191474,
+          1.0179068958143889,
+          0.6200878227890324,
+          0.9647057091471862,
+          1.6725208112635825,
+          0.6559730257755758,
+          2.0103863823272308,
+          0.7945751874813064,
+          1.6062460929781224,
+          1.4866307668893761,
+          0.8403142001485658,
+          0.7813634429098686,
+          1.0315303921094794,
+          0.9655255310520267,
+          1.3825245534623247,
+          0.8790144484835476,
+          0.9955895703068822,
+          1.2464450167609353,
+          1.5061955737403758,
+          1.134053826052241,
+          1.8745076979572866,
+          1.3414003894606272,
+          0.45456711794576243,
+          2.154417241894406,
+          0.9657833470727218,
+          1.0537581082890868,
+          1.9728060860847665,
+          0.11327603575484779,
+          1.3312601005321683,
+          0.8465744272097439,
+          0.2895179741222511,
+          1.0922969239474647,
+          0.12430221137837616,
+          1.8358499698122204,
+          1.6202586206612368,
+          1.9088840962872813,
+          1.0529501451997845,
+          1.929617704610453,
+          1.664060402807055,
+          1.6768322858978273,
+          0.5377540254503652,
+          0.513178107589641,
+          2.232484574024231,
+          1.4761208962670678,
+          1.2539746308348034,
+          0.8248744123947869,
+          0.845507243077721,
+          1.0952847333836129,
+          1.4149229097878313,
+          0.1671360143140228,
+          0.7101538596844604,
+          0.7260036647076454,
+          2.0905390046255325,
+          0.8669042245830713,
+          1.658021402271751,
+          0.27897937063493883,
+          1.1154959069388837,
+          0.033915490186119834,
+          0.7200461139734136,
+          1.8775025214789687,
+          0.34953220310212096,
+          1.853441371787493,
+          1.3875794535066739,
+          1.1671901776273628,
+          1.2297613256111162,
+          0.43062516392782324,
+          1.3531943992392566,
+          0.49336321231310454,
+          0.7904340898001357,
+          0.8144832610515184,
+          0.6927845670728496,
+          0.14400473184510099,
+          2.072109030176752,
+          0.47823642986239356,
+          1.1569489712469,
+          0.057706774667191096,
+          1.466885289179574,
+          1.857997671730863,
+          1.6542245127399156,
+          0.08887575379061874,
+          1.137528874445226,
+          2.0480918044778558,
+          0.20617204216661122,
+          0.8859085898026912,
+          1.617229147456893,
+          2.072170576206277,
+          1.4419805341615493,
+          0.6675376706433461,
+          1.07113950888273,
+          0.9034118360061312,
+          1.704720624728275,
+          1.7588998513089118,
+          2.2849910489782923,
+          0.33913822682670414,
+          1.4522453807639952,
+          1.7061580710343494,
+          2.3484970509678598,
+          0.14690198021440548,
+          0.7190069701975544,
+          1.375721130187648,
+          0.9661317252619236,
+          0.3950327355858223,
+          0.563486841234139,
+          2.127144707038899,
+          1.3464862255479986,
+          1.8102965948271832,
+          0.5649137659264913,
+          0.8974540324920248,
+          0.5590848418033323,
+          1.1547139911128483,
+          0.11166762826251464,
+          0.8207212986709933,
+          0.8228152776913505,
+          0.9205503733530795,
+          1.055534117183849,
+          1.4819990314172453,
+          0.38475217470114786,
+          1.324330609557061,
+          0.2214357572163892,
+          0.29371615460014777,
+          1.3010669205441516,
+          1.2734284734066363,
+          1.888822343035369,
+          0.7215362148907978,
+          0.06053971418466597,
+          1.2030741796497728,
+          2.4086024426651313,
+          1.4047105936292064,
+          1.6248365800675821,
+          0.7631179858899296,
+          2.418159402257749,
+          0.5298251334402848,
+          1.9562510687810803,
+          1.651811173669771,
+          0.5563993943440924,
+          0.15030141293902732,
+          0.568894093148522,
+          0.875452492004306,
+          1.917934096318778,
+          1.2789476927351933,
+          0.15648179348937918,
+          1.1340540967705999,
+          0.46807673319852194,
+          0.42349136386551045,
+          1.0272838525238113,
+          0.766766317612056,
+          1.7134512370509591,
+          0.8796651667491944,
+          0.2268094951183256,
+          0.16150359537706604,
+          0.49252376566171074,
+          1.5267977760159779,
+          0.6990437741748493,
+          0.44517688205590233,
+          0.7520772758204992,
+          0.7503229066808722,
+          0.10920676804367846,
+          1.9517552408542072,
+          0.044210378540948336,
+          2.2305099464840055,
+          1.7704240420241892,
+          1.1112059559462661,
+          1.014241521830828,
+          1.0042821620961369,
+          0.5009653764298574,
+          0.4057326441352819,
+          0.42029814820150524,
+          0.6125381346484892,
+          0.4704093314639388,
+          1.8640669374236003,
+          1.3091714460592998,
+          0.6739609752403057,
+          1.8378839778741107,
+          2.2246898721539208,
+          0.25459938612532784,
+          2.5142414434865095,
+          1.5711876288505122,
+          1.5701625661554428,
+          1.0118769342261718,
+          1.8347584777113866,
+          1.0293617325448092,
+          1.2532572518280973,
+          2.8235512608764517,
+          1.6609483299761951,
+          1.5812536198898564,
+          0.7959669286848492,
+          0.49028083944850076,
+          0.12473924664252267,
+          0.3706471145956599,
+          1.9277424255399707,
+          1.1952440978121959,
+          0.31922081637332067,
+          0.7032830579996212,
+          0.0671649748276405,
+          0.017793026515532717,
+          0.5589184768487798,
+          0.31172931407217863,
+          1.8859186896837246,
+          0.6620438904644654,
+          0.3384422949573852,
+          1.1318047575250458,
+          0.40435187954124585,
+          2.930119162911444,
+          0.47707868592070923,
+          1.4377992753949242,
+          1.7553623353823942,
+          1.262960783696423,
+          1.7512845731013047,
+          1.7356776652407795,
+          1.7241932089750902,
+          1.0696776637934824,
+          1.5896645946996406,
+          1.7143796395041302,
+          1.1085376518600913,
+          0.03945992136073573,
+          0.3321987505607522,
+          1.3862990143901728,
+          0.2537342457771061,
+          1.450543194831588,
+          0.43871974239766154,
+          0.273005419604198,
+          1.2747203072395177,
+          1.8529059331249935,
+          0.5574035764526994,
+          0.5661971633331611,
+          1.173689831230315,
+          1.1462798225297077,
+          0.32575797126727757,
+          0.22255013287573555,
+          1.4048403838492385,
+          1.058879288031356,
+          1.7054068939125335,
+          1.1146955480962093,
+          0.08194437132536381,
+          2.458477606956451,
+          0.14304451862700718,
+          1.4342564469417982,
+          1.038605874747655,
+          1.3682151384331693,
+          1.72439593320131,
+          3.4467781694041166,
+          1.1355883485033533,
+          0.8993389435123769,
+          0.7525829283324821,
+          1.196852286968343,
+          0.8998551170250428,
+          0.8912277059213144,
+          1.0502279128968028,
+          0.5059406810409477,
+          0.9031523160287539,
+          2.131133995877346,
+          1.4834134372659682,
+          0.4796288083549366,
+          0.8803019465135334,
+          0.3166512207398954,
+          1.0511686457948848,
+          1.738681106907776,
+          0.3758992851081526,
+          2.417499010290528,
+          1.345840916124854,
+          0.758619971670437,
+          0.7317312273677676,
+          1.1278166537856316,
+          0.43216345734565953,
+          1.8495063267923708,
+          0.35844284641607993,
+          1.0627015258864982,
+          0.7574319858717015,
+          1.1300230806626366,
+          1.785142255413862,
+          1.254842538755888,
+          0.9434120113087303,
+          1.626758922307178,
+          0.6331961634408884,
+          1.611552771872837,
+          0.48697342509656205,
+          0.7506362970127247,
+          0.4398654754783128,
+          1.156721944664663,
+          0.7276617684103703
          ],
          "y": [
-          -8.857469212636119,
-          -8.777206328234247,
-          -8.68020418258287,
-          -10.102117850406493,
-          -11.69842420788561,
-          -11.334878221700555,
-          -9.672293559955287,
-          -9.592869522948158,
-          -8.636713559688669,
-          10.81914219445852,
-          9.24055355571772,
-          -8.784967326489426,
-          -9.195096146124351,
-          9.965309790085131,
-          -10.701563476825873,
-          -6.3224440053881645,
-          -9.250238879265737,
-          8.38731588479377,
-          -8.7782117741509,
-          -12.19454414808995,
-          -11.074523425128774,
-          -9.878587771158134,
-          11.42780433058117,
-          -11.70457755765698,
-          -9.017640220019448,
-          -8.297199339225978,
-          -10.227549227610432,
-          -11.188921438134269,
-          10.772320644117672,
-          -11.047206130300781,
-          -11.114628337291105,
-          -9.513736527820152,
-          -9.817959875932267,
-          -8.07864069639658,
-          -9.105653200540004,
-          -10.600080527780339,
-          9.90329597111242,
-          -10.651340485174039,
-          11.84364487676982,
-          9.245564538023695,
-          -9.733070127295916,
-          -10.847886324241292,
-          -10.107969198994464,
-          9.007415825450563,
-          -11.079060582198533,
-          -8.967226633304547,
-          -9.838359288346899,
-          -10.74812433892171,
-          -9.198443987148343,
-          -10.08128522909974,
-          -12.195275342762306,
-          10.236947074575005,
-          9.870352746027269,
-          -9.481051917484475,
-          -9.054023407726618,
-          -10.868844822876417,
-          10.735888443666648,
-          -8.990292547300601,
-          -9.628199981797957,
-          -10.902778236879888,
-          -10.684799828825588,
-          11.507521198013137,
-          9.642211947645697,
-          -11.403320470887035,
-          7.288746266190712,
-          9.498072363239574,
-          -9.270152175637197,
-          -9.918491171791498,
-          -10.965010421113911,
-          9.244583373665273,
-          -9.78769691126431,
-          -11.715024673857991,
-          11.546078936922157,
-          9.45651623011441,
-          -9.199461280240008,
-          -9.377795377190365,
-          -10.718886883838929,
-          -11.108398323481758,
-          -10.79914104952303,
-          8.52130972466644,
-          -8.199545098752703,
-          -7.876144232825465,
-          -10.424478334783132,
-          10.398218013501031,
-          9.810160804626106,
-          -8.914054719499894,
-          9.240368904882807,
-          -9.317613904348384,
-          -9.316306052913497,
-          12.746942356025999,
-          9.54013883410787,
-          11.949239540857011,
-          -11.05856630466475,
-          -9.871940409751396,
-          -10.17716351777172,
-          8.502549602509824,
-          10.400097140816502,
-          -9.811255344875038,
-          -9.070775825992929,
-          -9.35950066880765,
-          8.959470394664487,
-          -9.446941023375595,
-          10.660624011450864,
-          9.54696756650318,
-          -12.280915863544704,
-          -9.302672521790905,
-          10.04029304096942,
-          9.833169926261693,
-          -8.97379014622986,
-          9.74649332596248,
-          10.188082690937023,
-          10.23663329834959,
-          -9.432489268119296,
-          -9.913495342893102,
-          -9.96721210601033,
-          -10.353958925148296,
-          -10.232210772271223,
-          -10.994111714882825,
-          9.128103293876464,
-          -9.152083722551215,
-          -10.601284486670691,
-          -9.365349692324703,
-          -12.090710140235013,
-          -9.45330305046821,
-          -9.39620325905428,
-          9.31989716465605,
-          -9.244404235374247,
-          -10.231559670541383,
-          10.143932841242188,
-          -9.373920610699047,
-          -7.914782327572124,
-          -9.78168967363508,
-          -9.808963412693018,
-          11.003512710784527,
-          -10.465003386228975,
-          -8.364187780747233,
-          -9.771135672540211,
-          -11.55148622844628,
-          -9.219875591138376,
-          -11.688287840647607,
-          -8.087863907644877,
-          -9.73683070294085,
-          10.418663486120069,
-          -9.654791469383404,
-          -10.879387184779333,
-          -10.019272348098001,
-          -9.531823923480685,
-          -9.706096525675271,
-          9.12456291352338,
-          -10.78237628582835,
-          -8.774663916731411,
-          10.3560962968972,
-          -11.06416216128648,
-          -10.62770896305731,
-          -10.124907855820618,
-          -12.167677575763966,
-          -9.2733038558129,
-          -10.694042330760139,
-          -11.22882532009808,
-          -8.782452788731696,
-          -11.406021098913628,
-          -9.064209896362744,
-          -9.65734485268153,
-          8.60532571408026,
-          -8.808704113059893,
-          -8.800261153482412,
-          10.480786920319929,
-          -9.196070117381407,
-          -8.54249939393475,
-          11.06839884257351,
-          -10.016027506134483,
-          -9.414321977666086,
-          -10.711452789452375,
-          -11.36519491827626,
-          10.825448000094498,
-          -7.723853753862592,
-          -9.424716969603674,
-          -10.998649349436608,
-          -9.776769019799104,
-          -10.086656496690669,
-          -9.352394333429144,
-          -8.832909492407193,
-          9.165688958818087,
-          -9.41893813680063,
-          -10.87521284653246,
-          -9.967638097781359,
-          -9.858837462172422,
-          12.013067245298805,
-          10.255022427157485,
-          -9.96951793281076,
-          -9.608648981713262,
-          -9.309926004743728,
-          -11.412702617866962,
-          10.164715912946694,
-          10.462638209740454,
-          -9.572022865593626,
-          -9.856172349330189,
-          9.938174890288524,
-          -9.277995094351272,
-          -7.918135474209232,
-          -7.960709017857185,
-          -9.738148479831949,
-          -9.507903823994607,
-          12.146390038141297,
-          -9.291783629184515,
-          9.898886136149653,
-          -8.634821545663144,
-          9.690536631990819,
-          -9.114532696402835,
-          -11.213751791155415,
-          -9.560210533742024,
-          11.088815860544358,
-          -9.3115474398422,
-          -8.362722570499741,
-          -12.221427242658931,
-          -10.047463779531226,
-          10.413662942656806,
-          -10.120494900278622,
-          -9.831346208493384,
-          -10.437013722767526,
-          -11.127031409712025,
-          -10.161090143012823,
-          -7.912967312531791,
-          -9.8230826113848,
-          -9.625945397460098,
-          -11.100427254852159,
-          10.851893216626733,
-          -8.961497249032348,
-          -11.708500719955289,
-          -10.502441409929322,
-          -8.95551866653864,
-          10.37830700001637,
-          -8.489468300538723,
-          -8.160908150599527,
-          10.282647423297375,
-          -10.961066167773492,
-          -10.724207204781234,
-          -12.730433798249322,
-          -8.653866281336102,
-          -10.251768011418779,
-          -10.140017926849136,
-          -8.304822812623225,
-          -10.678339404018253,
-          -10.439235073843319,
-          -9.356157533515942,
-          11.861609845653497,
-          10.446930249356724,
-          -11.167373712156634,
-          -9.359715605965267,
-          -9.390699009095977,
-          9.248164296384394,
-          10.37200054552454,
-          9.86645863610853,
-          -7.99180529501789,
-          -10.69481390256054,
-          -11.091019681527882,
-          -9.619156151529682,
-          8.589563559985251,
-          10.229538060887489,
-          -11.089178798491181,
-          -10.23013059229523,
-          -9.174185549639853,
-          -8.002116202839042,
-          -10.919359430787017,
-          -9.935403348107648,
-          -10.542934423021011,
-          -9.79502726875298,
-          -11.526958903206923,
-          -9.80734968138396,
-          -11.350488854117247,
-          -7.852293718263361,
-          -9.573480809574715,
-          -10.285167268963658,
-          -8.243672759005909,
-          9.31429592706798,
-          -10.382728981472427,
-          -9.759114226762975,
-          -10.338259999502759,
-          -11.432725728279285,
-          10.986571857997179,
-          -9.131851515875269,
-          -10.685093908112133,
-          -9.471746936050819,
-          10.373709536706967,
-          -11.012973117144798,
-          -11.201571129959213,
-          -7.860815615791817,
-          -10.178742863321496,
-          10.668552760165479,
-          -9.91270687264499,
-          -10.245075180615226,
-          11.422719630749715,
-          -9.648323049968605,
-          -8.971051993932733,
-          -10.96980345234541,
-          -10.442514947282767,
-          -9.810589117374063,
-          -9.733159446409584,
-          -10.172750203215559,
-          -9.284275458659724,
-          -8.699609548521627,
-          -11.454144074538082,
-          -11.394781557006645,
-          8.817119635486534,
-          -10.017206226543655,
-          -10.046429907290966,
-          9.997074330920118,
-          -9.547160645925716,
-          7.74563829653893,
-          -10.27079888616347,
-          -11.216932438980638,
-          -9.899937175341407,
-          -11.871592664823588,
-          -11.047624633995996,
-          -10.941430364953032,
-          -9.532867347388674,
-          9.450879029200179,
-          -12.927022038876459,
-          -9.844004184296375,
-          9.403796866949937,
-          -9.05714250376182,
-          -8.135325620862261,
-          -9.7197334701001,
-          -11.1912316009855,
-          -9.352344944255055,
-          9.994028068335817,
-          -9.69816528611825,
-          -7.473186332649378,
-          -9.483458900806932,
-          -9.865327880243992,
-          -11.36315444953675,
-          9.788497923128931,
-          -11.284131826689283,
-          -10.954120984959427,
-          9.822472356512778,
-          -9.025958743782908,
-          -11.340012908283942,
-          -11.756749301927226,
-          -12.00904739600617,
-          -10.079931323876291,
-          -10.988459295722686,
-          11.469926014156435,
-          -9.848632525947501,
-          10.43583154339221,
-          -10.167632880434091,
-          -8.547252234813083,
-          11.738029734727842,
-          -7.026801985289749,
-          -10.24913435275615,
-          -8.524486116726617,
-          -10.81412752814996,
-          -7.248717218144446,
-          11.050911424155275,
-          -10.346577795785848,
-          -10.21109214549544,
-          -10.688887491020708,
-          8.876156997286419,
-          -10.694587935001197,
-          -11.295046377038602,
-          -9.314888149344366,
-          -9.76302399834834,
-          -10.957944468456319,
-          11.506348351150448,
-          -10.735405335230695,
-          -9.920988745694718,
-          -9.63521468328631,
-          -9.194563482336575,
-          10.03596488820777,
-          -9.650232556137457,
-          -10.188215244115716,
-          9.992153767767277,
-          -11.586495217075157,
-          -11.016781912257223,
-          -8.584940492973402,
-          -10.490563793463524,
-          -10.102496246735363,
-          10.840308228902739,
-          -9.360485338314955,
-          -8.80515434649298,
-          9.554080325527904,
-          -11.511841695552295,
-          -10.822700792050238,
-          -9.819137499044041,
-          10.561188772313313,
-          -10.374881302471046,
-          -11.726933896108523,
-          -12.083273789867482,
-          -9.71102608498383,
-          11.208093337365122,
-          -10.261288988613288,
-          9.821239689397151,
-          -10.508287081516096,
-          -9.137569378821713,
-          -9.00434377666475,
-          -9.249483503115563,
-          -10.339055515969225,
-          -8.79667884701186,
-          -9.6997836794852,
-          -9.4566557298951,
-          -10.381693700611471,
-          -9.458236764330875,
-          -9.717344531499647,
-          -10.554586651542207,
-          -11.558908001122727,
-          -8.218408208506677,
-          -10.440445647703495,
-          -11.247723687936574,
-          -9.740027947832388,
-          -8.302093874618436,
-          11.889512896441737,
-          -9.567267632145771,
-          -9.772479131956496,
-          -7.840357731256855,
-          11.537737184853153,
-          -10.403236217349917,
-          10.458272750689177,
-          -8.456159669168848,
-          10.143675701533967,
-          8.665788247971774,
-          -9.922323027099125,
-          -9.07665800218366,
-          -10.554684730740107,
-          -10.075291483393308,
-          -11.680603402287858,
-          9.304479974237827,
-          -9.703421696882597,
-          -9.688928821395617,
-          -9.585551339790118,
-          -10.310159214544104,
-          8.954132954235936,
-          -10.386271842868503,
-          -10.899554071887003,
-          -10.064803331186694,
-          -10.93516155644875,
-          -10.348251181325033,
-          -9.75379141760094,
-          -11.820392903548205,
-          -9.933843169843552,
-          -9.975057335813508,
-          -9.955179834530968,
-          10.348387682800933,
-          -8.84620149158198,
-          10.851719766657784,
-          9.362365328747465,
-          -9.782906086267475,
-          7.527501016715533,
-          9.77399207143403,
-          9.15449791420834,
-          9.901608931493683,
-          -7.71712230513312,
-          -7.3409865344875875,
-          -9.799441010115956,
-          10.508553130441541,
-          -8.765507456637494,
-          -9.806213519700478,
-          -9.419495663157484,
-          -9.52072333341675,
-          -10.597112820423403,
-          -11.384464296601745,
-          -9.085084464832965,
-          8.843392214252257,
-          9.011045250543074,
-          -9.969020019838782,
-          -8.879850692009864,
-          7.951190252792492,
-          -9.349181543300046,
-          -10.695134243591475,
-          -10.045880642906246,
-          10.42646654075911,
-          9.281270895041613,
-          -9.34327225770673,
-          9.160977133803069,
-          10.05419480484792,
-          -10.647139475830118,
-          -7.831926715491722,
-          -10.262126609235832,
-          -11.140731811071946,
-          -10.24133956717016,
-          10.448390007164166,
-          -11.386017879256363,
-          -11.125301182647517,
-          -9.99464242498531,
-          -10.714744563377614,
-          -10.180311274360479,
-          10.280554187252278,
-          10.053728746390695,
-          -8.041343331132474,
-          10.504407288369443,
-          -9.137949943836635,
-          -9.354266198084456,
-          10.171179368593158,
-          10.45949801098608,
-          -8.808296962161185,
-          11.370011243689472,
-          -11.948862857755744,
-          8.405705961061328,
-          -9.46873373242925,
-          10.336229487562756,
-          -9.813354812419869,
-          -10.450992260385194,
-          9.694578082526926,
-          -11.30437291248604,
-          9.212336623228861,
-          9.099366939679218,
-          -11.151497349982158,
-          9.406254247946661,
-          -9.686950833783449,
-          -9.211768071551463,
-          -9.408835903097462,
-          -10.495402048253252,
-          -8.904530398927808,
-          -10.631472267332727,
-          -10.709169458630042,
-          -10.539757887907317,
-          11.179379606494637,
-          -12.024328682388424,
-          11.553441137915632,
-          -11.700538764742324,
-          -9.426942747527804,
-          -10.02399748842134,
-          11.245482169134133,
-          -10.356459751017155,
-          -10.745397888540625,
-          -10.159280153025168,
-          -9.675226730286049,
-          9.085440641440217,
-          -9.127840904826627,
-          -10.760370871967517,
-          -9.304564121766536,
-          -9.470236465873331,
-          -9.719560169508382,
-          -10.228457176472805,
-          -9.528894346872143,
-          9.162159007446764,
-          8.640450748712244,
-          11.411818446568414,
-          11.19422517197755,
-          -8.362098755384473,
-          9.482572169900694,
-          -10.25123048336809,
-          -9.71055711819148,
-          -11.313974176789774,
-          -8.308622484214842,
-          -7.735094706663012,
-          10.723208193619625,
-          11.364219216042574,
-          -8.95273705270368,
-          -9.215869994932511,
-          -10.52738300950927,
-          -8.094723539484598,
-          -8.841664594924623,
-          10.17923561779477,
-          11.074268516691292,
-          -11.600959667807796,
-          -7.612584614545462,
-          -10.736652956423404,
-          8.643533249730087,
-          9.723448172264176,
-          7.819972681990542,
-          -10.367155228325787,
-          9.902186769098044,
-          -10.732055855592773,
-          11.323360449034412,
-          -11.02903495020863,
-          8.099399183363825,
-          -11.879277123433644,
-          -10.513921278129462,
-          -9.169263812944086,
-          -10.033811664103366,
-          -8.858833957691251,
-          -10.818185346466969,
-          10.84406422633793,
-          -10.467457948118208,
-          -11.010721909428367,
-          -10.754268182551783,
-          -8.169471048482837,
-          -10.772800477030506,
-          -11.070374286642615,
-          -10.362728315063023,
-          9.43090622078231,
-          10.00694594686272,
-          -9.055340582366547,
-          -10.383566850139536,
-          -9.376287137209939,
-          -10.13858852490436,
-          9.78028598518898,
-          -11.239293128648047,
-          -10.710329982579061,
-          -8.051193712819922,
-          11.316930835769437,
-          -10.376358987955904,
-          -10.032830561186197,
-          8.947792918243614,
-          -9.088912667015075,
-          -9.961927983795167,
-          -11.029447637179912,
-          -9.392106800620358,
-          -11.079287527863631,
-          -10.021744792073509,
-          9.481955048152086,
-          9.828849210549018,
-          9.47485969280688,
-          -10.654346760274782,
-          -9.7305888138014,
-          -10.755446975646187,
-          -8.565226538823726,
-          -10.932420476366742,
-          -8.517151040542098,
-          -11.154532291524502,
-          -11.091571378183094,
-          -9.252717064952664,
-          10.011941813127029,
-          -10.086375222766696,
-          9.241937309019328,
-          -9.757975067335032,
-          -10.73297097469844,
-          -9.851542704438744,
-          -11.812353372515798,
-          -9.011482564040795,
-          -12.634033370358992,
-          -9.303630142288997,
-          -9.5934791415467,
-          10.203066465569417,
-          -8.624815282385809,
-          10.476254676353001,
-          -9.202981137998046,
-          -11.10572773831154,
-          -9.69108507673182,
-          -10.518393472450295,
-          9.181207998916387,
-          -8.370087280256772,
-          9.306273199472407,
-          -10.531740247891179,
-          -9.255977040375914,
-          11.593885066473092,
-          10.009509206093421,
-          10.809776287586713,
-          -10.762817334599935,
-          -9.657025053941515,
-          -10.283741048393281,
-          -10.729444245720778,
-          -12.069266424152104,
-          10.981288258512798,
-          -8.44340611052917,
-          -6.0026053464959555,
-          11.303967324607969,
-          9.025377599152739,
-          -11.791199780999493,
-          -11.92686720435505,
-          -9.601172951290424,
-          -9.220033417811607,
-          -10.180375971032394,
-          10.998165221326948,
-          -8.912659386459543,
-          -8.951328982467366,
-          -12.556913899395886,
-          -9.528948615445518,
-          -9.507407449470152,
-          10.407556732837834,
-          -9.842861991620625,
-          -9.231732426038073,
-          -9.78011756080073,
-          -10.340822954017687,
-          9.384912848288485,
-          -11.241596502982388,
-          -9.12115978334187
+          0.07910445656561182,
+          -0.827837950949108,
+          0.6276287300820533,
+          -1.9126339721144476,
+          0.36856773766133855,
+          0.2596843660652266,
+          -0.21692754510197132,
+          -1.429202966346023,
+          -1.1467771676821832,
+          -0.9499617572309683,
+          -1.1231352666547878,
+          -0.09122983982345079,
+          -0.5799911122221696,
+          -1.4184147156165796,
+          -0.27147148932946863,
+          -0.1241107811643839,
+          -0.6710107616018839,
+          -0.1341977037058143,
+          -0.9258696115616285,
+          -1.300844497739116,
+          -0.8044406163519908,
+          -0.5805497741411056,
+          -0.9607654813209665,
+          -0.06772760838158987,
+          -0.03059332428822248,
+          -1.9518649013398615,
+          -0.4541064208307004,
+          -1.0031402745380373,
+          -1.0628074265337946,
+          -1.6735096634117617,
+          -0.6967020065487554,
+          -0.9733083963079427,
+          -1.356311217963288,
+          -0.39399147922971633,
+          -1.199056856230298,
+          -1.8099710158321565,
+          -0.2308837831062226,
+          -1.4973544003673955,
+          -0.02319385378701555,
+          -1.5353090389513075,
+          -1.0813517021971926,
+          -0.348699384934252,
+          -0.9147562767012729,
+          -1.0594853101363382,
+          -0.7365628581895629,
+          -0.6490102191163174,
+          -1.8337829063235036,
+          -1.2016113503733141,
+          -1.2275263845867386,
+          -0.8774942321364873,
+          -2.28934230458981,
+          -0.5423609354627235,
+          -1.0546218737719242,
+          -1.6216203400475062,
+          0.5430710279279634,
+          -1.9423482072527523,
+          -0.24334726924813455,
+          -1.0448911801417051,
+          0.5809081040391366,
+          -0.9791196981367996,
+          -0.25469061659259296,
+          -0.937313854460325,
+          0.7454171308558182,
+          -1.24682961932107,
+          0.219239346811279,
+          -1.178927825937736,
+          0.43945469237121904,
+          -1.0801769476989402,
+          -1.1068671572630613,
+          -0.3865587473668338,
+          -0.9908070120117711,
+          -2.165208440166566,
+          -1.6475476126401352,
+          -2.2961043499377616,
+          0.22883227939988604,
+          -0.5617127492498913,
+          -0.5194278642089243,
+          -0.4650372284806038,
+          0.14463773986995587,
+          -1.5481867377963046,
+          -1.5396238442450576,
+          -0.5869379207678355,
+          0.2347825701504993,
+          -0.6984907329517083,
+          -1.1711945824622685,
+          -1.4887421320041294,
+          -0.6998472246543873,
+          -1.3379681814953672,
+          -1.5514987679714412,
+          -0.11505274098562024,
+          -0.83599147011473,
+          -1.1302772429275456,
+          -0.085890665742826,
+          -0.8225088412597827,
+          0.32119877976762945,
+          -0.8032932793791506,
+          0.03743830384352287,
+          -0.5058472120255426,
+          -1.2293796320143324,
+          -1.2177248659827793,
+          -0.7595485556206018,
+          -0.4046856109150766,
+          -1.2801331585774676,
+          -2.3833953950805356,
+          -0.81765130564426,
+          -1.3506638316867645,
+          -1.1441467482539889,
+          -1.549687722962402,
+          0.7738523665209163,
+          -3.0831820317187346,
+          0.6391470341380032,
+          -0.7464227609975327,
+          0.32016187590066214,
+          -0.9265941001212838,
+          -0.9326863268638346,
+          -1.3716724118655201,
+          -0.30323846762349604,
+          -1.7520484250391584,
+          -0.11011960642996477,
+          -1.6516890451422026,
+          0.08657313961885871,
+          -1.473361093110168,
+          0.010228710077999636,
+          -1.342439906118901,
+          0.2769825432103934,
+          -1.3107535401975159,
+          -0.7977384034990405,
+          -0.6062910146259542,
+          0.09788054374567468,
+          -1.3029695674251598,
+          -1.4132165225443822,
+          -1.1668337290520676,
+          -1.3689977625572014,
+          -0.9740957379018857,
+          0.10566135871793869,
+          -0.41174308895466827,
+          0.013444075087698959,
+          -0.7895716077722296,
+          -0.5993534156423197,
+          -0.8109165791522782,
+          0.04969324203180858,
+          -1.4362738043606187,
+          0.048951693611724245,
+          -1.3560402497305777,
+          0.6922513030990463,
+          -2.0147339175178436,
+          -0.6997952973516572,
+          0.6347517657502246,
+          -1.2384908509781067,
+          -1.2522635260122215,
+          0.026371562086131783,
+          -1.5066232376277644,
+          -0.6835411180802398,
+          0.2153164423383267,
+          -1.1873214559262288,
+          -0.5506118439473188,
+          -0.9987268823783114,
+          0.19257352415713647,
+          -1.1767792836187723,
+          0.41250874407281923,
+          0.03337871544339621,
+          -1.1304826337867802,
+          0.17799478500396093,
+          0.5537526880733477,
+          -1.0732684279828772,
+          -0.9505124134537688,
+          0.2555954389956221,
+          -1.0581792231429517,
+          -1.5639889158005262,
+          0.16627428108949505,
+          -1.1200809901998874,
+          0.4102004170212801,
+          -1.1833753609753606,
+          -0.15042629387049888,
+          0.22488554493156054,
+          -0.6442047065918749,
+          -0.41603599600258023,
+          0.2932700254968179,
+          0.20956510851937238,
+          -3.210766901050487,
+          0.08388766006656567,
+          0.09616973283552088,
+          -0.3471746653545621,
+          -1.298008946656181,
+          -1.4005244528466605,
+          -1.57602974137346,
+          0.019223578611504033,
+          -1.0644021106488744,
+          -1.6500009045813306,
+          -1.4127564771308534,
+          -2.071960543240543,
+          -3.0139257989755297,
+          -0.6462202607460232,
+          -1.2184677853055437,
+          -1.0658607389467767,
+          -1.025903890358062,
+          -1.3516694320628226,
+          -0.7064606767722863,
+          -0.7263740687221085,
+          -0.32063458919362886,
+          -1.6866755824069832,
+          -0.7208358677499995,
+          -1.6518140198033704,
+          -1.150762286292847,
+          -2.231804455677508,
+          -1.5869402894826004,
+          -1.5809688495802696,
+          -0.609002924582404,
+          -0.624669213360858,
+          -2.05054361203738,
+          -1.1127503548277413,
+          -1.3417399134353523,
+          -1.0190666487494102,
+          -0.09299314617399079,
+          -0.3774737199563545,
+          -0.6236866130753345,
+          -0.031459604812284936,
+          -0.9002684439676994,
+          -1.0759201327357453,
+          -0.53994916540294,
+          -1.1328863090397112,
+          -0.029728655353653877,
+          -0.8811382438517374,
+          -0.9091310922185571,
+          -1.3070764112858066,
+          -1.7970447867364268,
+          -0.21630266137386578,
+          -0.9131740921772915,
+          -0.4114278497482595,
+          -2.107256015125902,
+          -0.6659084740553325,
+          -1.864402879247645,
+          -2.2085183760947693,
+          -1.6328880903060607,
+          -0.7293403320681557,
+          -0.8912497143285861,
+          -0.7858916742411737,
+          -0.20798394080108118,
+          -1.6584245721711661,
+          -1.254464174468041,
+          -1.9346770396647335,
+          -3.356558456650591,
+          -1.054417325611054,
+          -2.225842678524759,
+          -2.3397427812287126,
+          -1.0337786007793164,
+          -0.37867632684053265,
+          -0.7688677693602334,
+          -0.9495614537543868,
+          -1.237841323580925,
+          -1.5939040746258946,
+          -1.3637212386805009,
+          -0.7652815690354753,
+          -0.3228568642119126,
+          -0.017370667860497235,
+          -0.45716807830243145,
+          -1.164459588177491,
+          -0.684563935794014,
+          -1.6620229835127556,
+          -0.9265505316317216,
+          -1.9593256631303624,
+          -0.2931481167496698,
+          -0.5336993805465814,
+          -1.2731072748760277,
+          -1.0360633002124662,
+          -0.9468245303261553,
+          -1.3947814847810802,
+          -1.0660980030777139,
+          -1.0975263660804304,
+          -1.5576998658789618,
+          -2.1513367577467983,
+          -2.6384099728683803,
+          -1.9456343899711972,
+          -1.6229089796221365,
+          -0.8100817090437695,
+          -0.2664862980469088,
+          -1.3982987164172778,
+          -0.7758088075827195,
+          -1.120977430178911,
+          -1.7823401455369845,
+          -0.8323507975629978,
+          -0.6402326302246373,
+          -0.6014524015080593,
+          -0.9230920104715323,
+          -1.4536778448042862,
+          -1.4938109826586423,
+          -2.474110305250504,
+          -0.5524260346788993,
+          -0.6923011663952596,
+          -1.603876252389646,
+          -1.9082297163102626,
+          -1.0791970057671008,
+          -1.5008267403160729,
+          -1.8820941790394667,
+          -0.7404327798272572,
+          -0.6920698210669045,
+          -0.7520321444434694,
+          -0.8269902639537895,
+          -0.10426448679888756,
+          -1.019936108219102,
+          -1.2296313678776447,
+          -2.3976611754567716,
+          -0.48982312029796915,
+          -0.6090094122886278,
+          -0.5916786733641972,
+          -0.46046414136847724,
+          -1.3460063649510938,
+          -1.7262995214969246,
+          -1.6985518999206177,
+          -1.303118141768008,
+          -0.9706193069821775,
+          -1.8061516511918634,
+          -1.64633302408207,
+          -1.5238150118680256,
+          -0.5478217456447059,
+          -1.1789567676765502,
+          -1.1263025683214973,
+          -1.285556635565106,
+          -2.4366522157310184,
+          -0.4353872383047428,
+          -1.1124325871974927,
+          -0.7871150705487338,
+          -1.0621901047901672,
+          -1.7712430967610904,
+          -0.15005840421553363,
+          -0.7904304729194009,
+          -1.4824755246550325,
+          -1.4285496371922808,
+          -1.5135866206548378,
+          -0.3590974177989491,
+          -0.5768886012758311,
+          -0.1748532589193188,
+          -1.3679747915984795,
+          -0.9144195757783304,
+          -0.616373290529028,
+          -1.8765196833239766,
+          -0.12916967592147255,
+          -0.749220032381538,
+          -0.6461847530701632,
+          -0.6109681684212926,
+          -0.7891789407569751,
+          -0.470966226211463,
+          -0.7706088397311999,
+          -0.19654564403074137,
+          -1.3889783885846048,
+          -0.011385874263468043,
+          -1.2157374245941934,
+          -2.3862565556140396,
+          -1.1891059878908938,
+          -2.068952813396391,
+          -0.3747901350321513,
+          -0.6196229546072667,
+          -0.24846138953144614,
+          -0.9283340401501645,
+          -1.6354590519547516,
+          -0.6445290565372089,
+          -2.3696240042463197,
+          -0.5217455645029211,
+          -2.4021233751932147,
+          -0.8097171644065724,
+          -0.7343604354447293,
+          -0.9888971786235591,
+          -0.5677883203462664,
+          -1.0840835304586782,
+          -1.0909558340335985,
+          -1.8393076191141997,
+          -0.79614883152869,
+          -0.6930716803340876,
+          -0.7018627811921927,
+          -0.4109489759859303,
+          -0.5959701027169051,
+          -0.1803568000989415,
+          -0.6658461806997584,
+          -0.4344777578464841,
+          -1.0178400024975502,
+          -0.9351075870136176,
+          -0.6669703822830867,
+          -1.4138570297807624,
+          -1.13484673884425,
+          -1.4226565120814318,
+          -0.7294887941407013,
+          -2.879659095554807,
+          -1.6344280186370943,
+          -1.13356424000824,
+          -1.0118851878803325,
+          -1.0738908752486593,
+          -0.9904581784976303,
+          -2.529095258074923,
+          -1.3164078578650569,
+          -1.0211100489767482,
+          -1.784019808324659,
+          -0.48324064815274603,
+          -0.008628911764000269,
+          -0.23692897289365178,
+          -0.1498345812204912,
+          -0.17517786527716128,
+          -1.3235062439315406,
+          -2.2715496345809214,
+          -0.24380925058390912,
+          -1.62726941810599,
+          -0.46427455425310993,
+          -0.819937562407755,
+          -1.4584536887649173,
+          -0.200933230649748,
+          -0.8152130413311985,
+          -0.2588454848149837,
+          -2.048611042692124,
+          -2.537941617259143,
+          -1.7302880422016498,
+          -1.199288550107993,
+          -1.155295983617403,
+          -1.5726049514563027,
+          -0.049218340545415296,
+          -1.484202452916529,
+          -1.3278399743136111,
+          -1.7174680388519503,
+          -1.366664891859181,
+          -0.8603996886069667,
+          -0.3027877983146612,
+          -1.4577419349198215,
+          -0.2445464535799008,
+          -1.413089766951591,
+          -0.8717560829605354,
+          -1.288782117280896,
+          -0.8078168064654205,
+          -0.4654386800790793,
+          -0.8102923719565572,
+          -1.0163361843208187,
+          -1.2986913056205864,
+          -0.5291733387945974,
+          -1.561906156121836,
+          -0.007570008875762535,
+          -0.6698108524329411,
+          -2.0584470247806275,
+          -1.6878345165302966,
+          -0.9642553297370248,
+          -1.5627744414314,
+          -1.5170058108361244,
+          -0.7787534867732943,
+          -1.1831223991429916,
+          -1.4893280855298308,
+          -0.5375390234004739,
+          -0.8910675687329751,
+          -2.365736323094141,
+          -0.5561485346519026,
+          -0.613659736566536,
+          -1.6448438897685405,
+          -0.3616057586794249,
+          -0.3509554066608481,
+          -2.3857479730600906,
+          -0.00645477342725842,
+          -1.7516683503310149,
+          -1.533566744408223,
+          -1.2840203346765477,
+          -1.2599027111645598,
+          -1.2554416978251026,
+          -1.107875935865109,
+          -2.074846688202916,
+          -1.6406321009638969,
+          -0.8800120589722463,
+          -1.1620452970449464,
+          -0.1342204893719331,
+          -2.5631570397691084,
+          -1.3257985188584471,
+          -1.0077287718123915,
+          -1.3328269137938922,
+          -0.2542415847319309,
+          -1.0087809372517513,
+          -1.0364546665277297,
+          -0.07094199901500897,
+          -0.8359729519200941,
+          -1.356877229873387,
+          -1.3559700461380206,
+          -2.4581590642752875,
+          -0.9089310720168334,
+          -0.6798638860111926,
+          -1.012388892635339,
+          -0.6241045684553237,
+          -0.8131906076604031,
+          -0.11037381768064292,
+          -0.6648929901839362,
+          -0.7785895132060827,
+          -0.6636836104082616,
+          -1.3928987402249904,
+          -0.20384214412608137,
+          -1.8737384399663966,
+          -1.699022315873604,
+          -0.3432038724634323,
+          -2.0933736550612174,
+          -0.835932696958926,
+          -0.39245447950940926,
+          -0.6830626717283761,
+          -0.98257516559599,
+          -0.7807926894496955,
+          -1.0864082560892405,
+          -2.1549319107405105,
+          -0.5600581356683854,
+          -1.3133709006420953,
+          -1.1781294452731181,
+          -0.9897451379221728,
+          -0.3215787624780745,
+          -1.0527722605983636,
+          -0.1280673799350852,
+          -1.7825739500985058,
+          -0.46318466264841907,
+          -2.0885145526410263,
+          -0.866624916922796,
+          -0.5743169491806295,
+          -0.5571672534734683,
+          -0.4552373291512585,
+          -0.3971055277939588,
+          -2.5120488724925716,
+          -1.9215646627001988,
+          -0.002823426486575964,
+          -0.21309439244931838,
+          -0.6761644895162655,
+          -0.10909959456846763,
+          -0.24886798980104874,
+          -1.6202393789852847,
+          -1.2888733447510876,
+          -0.23039765636384935,
+          -0.8691929278239686,
+          -0.9741177926799568,
+          -0.9495358340151878,
+          -0.5782711981867275,
+          -1.5208308419461305,
+          -1.5390272993870862,
+          -0.9693382051867094,
+          -0.8757961683070339,
+          -1.9856065142102808,
+          -1.6378007691023138,
+          -0.7022755719018372,
+          -2.1841206227432317,
+          -0.8584982201752646,
+          -1.476618327368495,
+          -0.8033136349193098,
+          -0.36009046489450636,
+          -0.26317032002523133,
+          -1.2960465845056943,
+          -0.5905647846319573,
+          -1.5693831998107695,
+          -0.7383321799954858,
+          -1.6706682484040374,
+          -1.6393507217201821,
+          -0.03387277054554183,
+          -1.409474912476017,
+          -0.9273052229785932,
+          -0.778727813030526,
+          -0.9278300628911329,
+          -1.4061204355219812,
+          -1.8102549434795698,
+          -2.154637836552963,
+          -1.3745580747255695,
+          -0.01807228530547822,
+          -0.6600432238999652,
+          -0.47216578187399816,
+          -1.9554413069270034,
+          -0.959908391635782,
+          -0.9828027164401711,
+          -0.9865249234122424,
+          -0.6020865184627417,
+          -2.3227137839139496,
+          -0.11847508949903851,
+          -0.7970496947788396,
+          -0.912784531531974,
+          -1.4541802486562025,
+          -1.8140407745891123,
+          -0.987161606379291,
+          -2.0419577224386147,
+          -1.3612036363781344,
+          -0.4720246267918522,
+          -1.7272848450121083,
+          -1.16231371677528,
+          -0.6419163304063689,
+          -1.29363696952282,
+          -0.8954507375792656,
+          -0.6959743577828938,
+          -0.9569908720977479,
+          -0.8082022420243207,
+          -1.7399685241555667,
+          -1.811115856437436,
+          -0.6383223164937091,
+          -1.0158574845860886,
+          -0.7918412213586623,
+          -0.6323673040456838,
+          -1.0850882157566133,
+          -1.2752647378538315,
+          -1.4584444886618835,
+          -1.5347856711207144,
+          -0.4573137073994413,
+          -0.5276856478755194,
+          -1.656954108213299,
+          -1.9865651468513637,
+          -0.2980971867369915,
+          -1.037163512200286,
+          -0.881646359024252,
+          -0.6512089624414217,
+          -2.0561422635377986,
+          -2.4640627724629405,
+          -1.736960378058657,
+          -1.8928312903276785,
+          -0.3130641570841929,
+          -0.24741943597414795,
+          -2.405194026421227,
+          -1.045167246830828,
+          -0.29798817766041696,
+          -0.13331032498589268,
+          -1.4389961480665132,
+          -1.623969099482787,
+          -0.36310912923650773,
+          -0.7135088739553169,
+          -1.675831974687807,
+          -1.3707870054118794,
+          -1.7853479877738523,
+          -1.4276863215356448,
+          -1.9615635340883868,
+          -0.7357775107193126,
+          -1.3842534010892962,
+          -1.8145467961936217,
+          -0.7444603614017846,
+          -0.5344285319220479,
+          -1.7952082242454992,
+          -0.4918187867021322,
+          -1.1485180283374572,
+          -1.7271778580762807,
+          -0.7506160240052342,
+          -1.2069371239563162,
+          -1.2834059404619855,
+          -0.10106232289626838,
+          -0.26000454158424,
+          -1.7604791023410509,
+          -1.6304358440065,
+          -1.6570845209900014,
+          -1.2989034519021065,
+          -1.835249454517192,
+          -1.2882603233244625,
+          -2.0011996010128406,
+          -0.3864256421281934,
+          -0.572653717843647,
+          -0.4259360263101394,
+          -0.809994288257567,
+          -0.6177857522094967,
+          -0.7153076206689581,
+          -1.2670250080359475,
+          -1.1400426157873857,
+          -1.746842467363534,
+          -0.7708231046647639,
+          -0.8721323584887124,
+          -1.4692960235748211,
+          -1.7264838543425944,
+          -1.5029002398133013,
+          -1.6973071099411663,
+          -1.6244051008674765,
+          -1.8859851313106626,
+          -1.1067577470527978,
+          -1.4928795955167866,
+          -0.9869212464580943,
+          -0.29808566471748177,
+          -0.795952850657603,
+          -0.3325731293182549,
+          -1.6373323718086317,
+          -0.9125569749601523,
+          -1.2277033188269404,
+          -0.8785761657839015,
+          -2.009546391200942,
+          -1.3969863755988352
          ],
          "z": [
-          8.832410612566251,
-          10.215217197510045,
-          10.651907088722918,
-          9.203408358975773,
-          8.349975447223061,
-          10.772544292255796,
-          11.252165660323271,
-          11.391259892812641,
-          -8.070890675731967,
-          -9.613950523975472,
-          -10.43936278443198,
-          -10.400159599718185,
-          -9.920293799068544,
-          -11.27412107572455,
-          -10.908768298963976,
-          -9.867071756504943,
-          -9.380393830627577,
-          -10.358162856993186,
-          -9.987141319572265,
-          -10.986779426002146,
-          8.466199451286634,
-          8.575025665518043,
-          -9.75928035954856,
-          -9.116111821178226,
-          8.620336707388653,
-          -9.932905723830533,
-          10.126621033558045,
-          9.444486097912154,
-          -9.306109892511754,
-          9.998199034348197,
-          10.29415211904214,
-          8.885399151063035,
-          10.530625128243285,
-          -8.02525754077886,
-          8.627870696661628,
-          9.052594450054292,
-          -10.674818064061075,
-          -10.024338152762263,
-          -9.409446546867937,
-          -10.268475357415838,
-          10.901565826726285,
-          9.27542452075366,
-          -8.99149980414398,
-          -10.044784147303737,
-          -9.479412184057402,
-          11.992978840119832,
-          11.113798714124009,
-          8.706156510294988,
-          9.189994280367769,
-          -9.197579893265926,
-          -9.133782205677308,
-          -9.570774839622297,
-          -10.234372725312175,
-          9.239096702276248,
-          -12.270059082431693,
-          7.648695067204118,
-          -10.130423322388614,
-          10.987923620814566,
-          11.679061856837311,
-          6.968962636756352,
-          8.743301288634752,
-          -10.68295924986535,
-          -10.06937586011167,
-          12.31416687139868,
-          -11.813472616690076,
-          -9.238928508170902,
-          8.76911719313202,
-          10.307792301683685,
-          -8.282284448069548,
-          -9.73560992765739,
-          8.33368846134711,
-          -10.704673617462959,
-          -9.18073593955969,
-          -11.274485470842079,
-          10.265127806532472,
-          12.012996080444564,
-          9.880516604001958,
-          -9.665124298008466,
-          -10.178456034896248,
-          -9.770177116481154,
-          8.495657013053327,
-          11.84811605311593,
-          10.190726616282431,
-          -7.666115450609173,
-          -9.348001720669481,
-          -11.58365614324607,
-          -10.934452656605485,
-          11.328492875157211,
-          -9.655147114998531,
-          -8.794285837273714,
-          -9.454025228013165,
-          -9.811481290145936,
-          -12.078628921776366,
-          10.482030744726918,
-          12.18021501104266,
-          -10.509692781618272,
-          -10.078802072145402,
-          9.04625494878833,
-          10.404712407500035,
-          -9.844943354872251,
-          -10.289650597365588,
-          7.494293505617925,
-          -9.084901164840106,
-          -9.836292206819065,
-          -10.503417363189259,
-          7.814526637501505,
-          -10.264458138450772,
-          -9.774664765742893,
-          8.402651950094153,
-          -8.893761479172484,
-          -10.832421544307996,
-          -10.357672731605776,
-          11.11658246423688,
-          -11.426262679778345,
-          10.290634555429866,
-          10.266951703967448,
-          -9.281889331305791,
-          7.6079800253270315,
-          -10.462306121905643,
-          8.884928201780019,
-          12.104420535854914,
-          12.203639934430385,
-          -9.648968122660726,
-          8.36863143359437,
-          9.64794236762935,
-          -10.17292337800883,
-          9.407573910302531,
-          -10.889131555962226,
-          -9.70910638420153,
-          11.667357099458059,
-          -10.190011273148363,
-          -10.407281971517262,
-          10.637311126187415,
-          -9.96202391116314,
-          -8.81287613359128,
-          8.920063526209017,
-          10.487076335800838,
-          12.777571351635588,
-          -12.212606038010367,
-          10.133258531419283,
-          8.695394931413158,
-          11.830096886608791,
-          -10.089151300680694,
-          -7.631975688065383,
-          9.198581197528945,
-          -10.228576394561157,
-          9.283498874510677,
-          -10.16227968557976,
-          -9.939633052721566,
-          10.641736362032958,
-          -11.23003979301931,
-          -8.151204101573583,
-          9.0516514436661,
-          -8.86815978376705,
-          11.754112715415225,
-          -7.264491692028615,
-          -10.69901915770063,
-          10.902693077294265,
-          -10.115615531164888,
-          9.205385908879233,
-          -9.872058708156777,
-          9.801145739255409,
-          10.13844229418106,
-          -9.916949810252609,
-          -7.953969781462533,
-          9.754748728426339,
-          -9.688254970837475,
-          9.140141782612837,
-          9.485161320161266,
-          -10.144198619200804,
-          11.124933434238118,
-          11.137326788463612,
-          -12.46235333117024,
-          -8.423972536820852,
-          -9.449568185360803,
-          10.101850129449229,
-          11.555937673537795,
-          7.302561832448211,
-          9.387085488024647,
-          9.708157944242945,
-          10.941329740186283,
-          10.126777226499117,
-          -9.846323054406925,
-          10.202100759308426,
-          11.849573334192979,
-          8.532484642839691,
-          7.379539555563672,
-          -10.238615837965922,
-          -9.675959979375573,
-          9.132980172619886,
-          9.668279583920429,
-          8.661699376962801,
-          10.279807052111401,
-          -10.4882388233849,
-          -11.344918290383644,
-          8.456327109052399,
-          10.247561636089936,
-          -10.712519753293229,
-          11.040528417655837,
-          -11.572017266996358,
-          -9.497640440176669,
-          -10.19828314542371,
-          -8.84949595034718,
-          -8.38719622372143,
-          7.783719630257677,
-          -10.634246609535593,
-          11.971199272109262,
-          -9.309202803010658,
-          8.998934387559789,
-          -9.961142275630436,
-          -10.335511528378147,
-          -9.90315447828723,
-          10.310100244329977,
-          9.204841026865452,
-          -9.39865395462233,
-          -9.670365153515661,
-          -8.522044820367183,
-          11.208327314529136,
-          8.072269757530945,
-          10.122590588892727,
-          8.003868478178884,
-          -7.442325832094573,
-          9.955845166136536,
-          11.32888066549648,
-          -9.933958429923779,
-          8.173845683728171,
-          -9.1238539779099,
-          10.471525498346843,
-          12.593294154974465,
-          -9.746079309798876,
-          10.202084507421086,
-          -10.19033791177894,
-          10.225368243890408,
-          -10.878329332821258,
-          -10.937179161494512,
-          11.061731348061643,
-          8.795775629595218,
-          -9.844086982694742,
-          9.55642276576665,
-          9.568797039886205,
-          9.912526938058376,
-          8.038831581160137,
-          8.561568160915208,
-          -10.378199149851724,
-          7.795570260086178,
-          -10.270123047061276,
-          -10.251787989079192,
-          -10.218505395830597,
-          8.633176131152226,
-          -10.510477553303625,
-          -9.802476308797072,
-          -10.05325983757121,
-          -9.883468082297458,
-          11.164320706624524,
-          10.378915929217992,
-          11.996755434552519,
-          10.744746162193337,
-          -8.219615683410492,
-          -10.371698319175753,
-          -9.685549364480275,
-          9.81279072207035,
-          -10.049465591966332,
-          -9.457237884713036,
-          10.792731815447134,
-          9.096753316895194,
-          13.098853247896114,
-          11.365916797930064,
-          9.939860833126186,
-          9.917789446357475,
-          8.941426374435,
-          -10.868237464926844,
-          9.91692354129114,
-          10.648919513360227,
-          8.15633776494386,
-          -10.7193120817313,
-          11.469419914743792,
-          10.542320271292214,
-          7.8339802997520875,
-          9.433972794018278,
-          -10.165811421262243,
-          -10.195716500032555,
-          8.745151586565926,
-          9.856783832729091,
-          -9.446596926311935,
-          11.426629224927893,
-          10.114921180090292,
-          -10.055602112453451,
-          11.152757822837572,
-          -10.428443244061187,
-          -8.675781856296926,
-          -11.98499815354895,
-          -10.589016527508852,
-          9.342731454249343,
-          10.162345369558201,
-          -7.999098384931658,
-          12.067757815652259,
-          8.855568148743435,
-          8.61905403339152,
-          12.531194229076343,
-          7.891831406915319,
-          -8.544284169471908,
-          8.222436275856765,
-          9.511856406956028,
-          -10.079489174566117,
-          9.321328967815626,
-          -9.221991819111274,
-          -9.18877340840228,
-          -11.576704236637681,
-          -9.446121407784066,
-          12.668344006067839,
-          -9.438910520874872,
-          -8.763555079023577,
-          11.939351062369134,
-          9.350447694968649,
-          9.134818662352433,
-          11.353700880052259,
-          -8.402095048093628,
-          -10.157131450726919,
-          -9.978815538960239,
-          -9.691843957408746,
-          7.754922835350754,
-          -12.768932121850952,
-          -9.048308157851219,
-          6.60305875234387,
-          -9.890039487848757,
-          -10.81795355820043,
-          -10.95299889315263,
-          -9.933990014763515,
-          9.709830496778013,
-          8.42819709930845,
-          10.934878633654295,
-          -10.597093662555983,
-          9.220902424872868,
-          8.272377084524814,
-          -9.786578370854091,
-          10.343139334409264,
-          -12.642622862858504,
-          -8.323702911675575,
-          13.198558748476653,
-          9.848918262419303,
-          -11.710110540700933,
-          -10.022274255255105,
-          10.755443778168935,
-          -10.756132307667725,
-          10.126109948635634,
-          7.753330582240576,
-          -9.043128793869633,
-          -9.214695429092403,
-          10.204988226172064,
-          12.377215306628612,
-          10.714416181306207,
-          11.5449890679995,
-          -9.96220835655089,
-          10.652773639694336,
-          8.889519919293324,
-          11.101244517707798,
-          -9.669939368127586,
-          -9.123179809774163,
-          10.281618697271393,
-          8.361956126440052,
-          -9.369771789068523,
-          9.191356596740683,
-          -9.398328865543277,
-          -10.71177611336908,
-          7.461387405322939,
-          8.840977825549436,
-          10.225660432476799,
-          -10.984707032798443,
-          -9.749660699292933,
-          9.10251392514009,
-          -10.468270565393071,
-          -10.186306951330192,
-          9.289543242905175,
-          -10.957997490263542,
-          -10.134866880742619,
-          -10.728934228873959,
-          -9.59513835522368,
-          8.680607022630518,
-          10.223086668637867,
-          -10.264854087992942,
-          12.298826046983958,
-          9.763415191091186,
-          -8.282501732799359,
-          -9.282030357671136,
-          12.41086529641397,
-          9.828553800955072,
-          10.392520893636307,
-          -9.875111929503039,
-          -10.245044399372413,
-          10.67680552113308,
-          -10.342146715540785,
-          9.370697718657537,
-          -10.81968080066605,
-          8.505429310190303,
-          8.539969230051252,
-          -11.720481983344,
-          -11.012398303380863,
-          10.139679986957267,
-          9.817845961609503,
-          -9.272720078076809,
-          6.868049423356462,
-          -10.496321375551977,
-          8.924428392597424,
-          12.627911699555849,
-          -9.598339481377227,
-          9.57576567719838,
-          10.845791441407389,
-          -8.530148012961769,
-          11.506789832552743,
-          -8.34629375957952,
-          -12.711697575927563,
-          10.741925797828468,
-          9.726794648807225,
-          -9.765101479337218,
-          -10.017229490021721,
-          -8.881003657138866,
-          9.593499261058351,
-          -9.257034406011272,
-          -11.621541359053074,
-          8.656923654755026,
-          -8.776817016445303,
-          10.826311285844701,
-          10.411313872575086,
-          9.386577460779769,
-          -10.393113663581039,
-          -9.823888577070003,
-          7.191423586950929,
-          9.97423435808976,
-          10.4055424264348,
-          -9.858569203271252,
-          -8.055994016665842,
-          -9.077460691746573,
-          7.750361841794435,
-          11.123389227629604,
-          -9.635005067044377,
-          -11.730556520752849,
-          9.507683721040653,
-          11.928546097925759,
-          -11.452993409451636,
-          8.240980405281586,
-          -10.11264095480012,
-          10.032863833459267,
-          -10.485739560539558,
-          -9.553662653141915,
-          -8.566739114656752,
-          -10.583218983520165,
-          -11.093420348784464,
-          -10.347569545884188,
-          -9.865826049398096,
-          -11.53232441232345,
-          -10.379809692275689,
-          9.327112478533424,
-          -10.063064009792246,
-          -10.013931331902803,
-          12.088988806269766,
-          9.174852030228578,
-          9.651909467550457,
-          12.540381555527823,
-          -9.996392141859372,
-          10.271262787310112,
-          -8.427164667614324,
-          -10.199256341461478,
-          10.499291177737389,
-          9.578218863105665,
-          -10.056919455119582,
-          -11.279658817514232,
-          -10.126781889946558,
-          10.63352053942159,
-          -9.912820351190653,
-          -9.11987750701877,
-          8.449562901314014,
-          -10.263250161894312,
-          -9.807973554345784,
-          -8.862066765249688,
-          -9.598944593780004,
-          -9.739201808062264,
-          -8.591185626865261,
-          9.405073801187788,
-          -9.970952684091246,
-          14.507736257806577,
-          -8.613136122796343,
-          -10.117133037671664,
-          -11.055122744447264,
-          10.60774999713103,
-          -11.302494451649261,
-          -11.717134445342372,
-          8.740853961289499,
-          -9.55952935739993,
-          9.542402139730672,
-          -12.521173606568583,
-          -8.82056555633058,
-          -10.151706158991116,
-          10.311182616147066,
-          -9.757918535020265,
-          10.668872820944495,
-          -10.36561267560358,
-          9.597925036811354,
-          -11.65351615017492,
-          -10.980701131583961,
-          11.217243166616463,
-          -10.559339939093597,
-          11.821139837364898,
-          -10.218516858019077,
-          -10.13361632316169,
-          8.07408201998931,
-          -9.979231048555103,
-          9.658742969062029,
-          8.847677609373864,
-          9.955762986171857,
-          10.31065131209435,
-          -11.248039486345503,
-          -10.416699456284883,
-          -11.246495567082299,
-          8.3758080166259,
-          -10.375397048928802,
-          -10.96834973605453,
-          -9.518336520601515,
-          9.652655860236367,
-          8.418739256067344,
-          10.125278718167301,
-          -9.013614810169411,
-          12.691758456149893,
-          10.459151839659963,
-          10.438151381401704,
-          9.773794451587461,
-          -10.034251991243188,
-          11.410779188962621,
-          -8.836474388047186,
-          -7.121708382282306,
-          -8.200682566878477,
-          8.036077731220221,
-          -10.35880175786148,
-          10.301694444219232,
-          -10.724773144235549,
-          -10.137915680531517,
-          -11.559091312495099,
-          -9.521430742519083,
-          9.411199330806983,
-          -9.700932383988725,
-          7.8018762926119045,
-          9.041964696281804,
-          -9.693948378752072,
-          8.444292514421877,
-          -9.376557445738129,
-          -10.674411442055197,
-          -9.902356492085465,
-          -8.45272257151956,
-          11.994340600338393,
-          -11.686881077244424,
-          -10.542488749759716,
-          -9.734603650288872,
-          -9.626115217457409,
-          -9.960986228721884,
-          -9.716873446636017,
-          9.117888096607777,
-          -10.345210647623787,
-          -11.052887610207403,
-          -10.520626866077713,
-          -11.324105204628534,
-          9.230405928481023,
-          -9.63025024909214,
-          9.810642610210818,
-          -9.675256574064278,
-          -10.723686368356955,
-          -10.259081150834971,
-          9.198351073870265,
-          9.109583706690124,
-          -10.003578519629869,
-          9.091872691107646,
-          9.729035768967988,
-          8.627010435297912,
-          -9.445017870597793,
-          11.14471630696859,
-          -11.137943181945783,
-          -11.685329350688914,
-          -8.99814673367766,
-          10.910600063033511,
-          11.738066845626637,
-          10.409446930048949,
-          -10.70466724984793,
-          -10.010673401278892,
-          11.40721791601488,
-          8.92549257733708,
-          8.075534214031402,
-          9.84467484613312,
-          -10.249576611910594,
-          -12.044281108395865,
-          -12.785654260939587,
-          8.92932967328018,
-          -9.683695571885824,
-          -12.452802480984937,
-          8.628737855333421,
-          -10.970798759530823,
-          -10.541885107385463,
-          10.684176631569132,
-          -10.576285684670722,
-          10.03516750565029,
-          8.380415554755787,
-          -9.836863510881532,
-          -9.5202272668806,
-          -10.8022427546413,
-          -8.655216975447603,
-          -10.96465092677135,
-          -9.85981040773409,
-          9.461118530841066,
-          11.31296325796197,
-          -12.512212373532384,
-          8.367065207703549,
-          9.11250206432074,
-          10.692031303762803,
-          9.966640854112804,
-          -9.570841611766568,
-          11.332161493458328,
-          -10.672245311332038,
-          10.488978499098675,
-          10.08657250526325,
-          10.502496855906706,
-          9.994609181697644,
-          9.37422012856966,
-          -7.843117569682073,
-          7.236491474037912,
-          9.871178587704437,
-          -10.279591961708176,
-          -8.859019712930083,
-          -10.901737739091507,
-          -9.603253241223516,
-          -8.618745519294578,
-          8.956834051529352,
-          11.325084585015167,
-          -10.358509278947436,
-          -10.02178800275054,
-          -9.920405814344992,
-          9.033026589308278,
-          8.498108695686039,
-          -9.33618020668378,
-          -8.281993020466064,
-          -10.100762773802188,
-          8.16610304302837,
-          -10.638111415572943,
-          -10.837839997195502,
-          -11.701002344162015,
-          -9.754443709668934,
-          -11.023832906625678,
-          -9.403755496632446,
-          -9.639121574181583,
-          -9.613502029485357,
-          -9.021647578196621,
-          -12.469608130064117,
-          10.2795806519336,
-          10.639457860920022,
-          -8.430902360371505,
-          12.134913980531628,
-          -10.394524973244097,
-          11.260294864483862,
-          9.055628946395377,
-          10.07855664610767,
-          10.779382841094838,
-          -11.28359825369153,
-          -10.747496969619343,
-          12.976729534680814,
-          9.287037305386836,
-          9.135427814145388,
-          9.260758141726,
-          -10.696771240367381,
-          -9.93908458788276,
-          10.695618216681709
+          1.053834868880708,
+          -2.6744211436011707,
+          -1.0057360085936482,
+          -1.2229442587957564,
+          -3.2191995909414395,
+          -2.0741810625595347,
+          1.8438353458110344,
+          -3.7933108194739544,
+          -0.9477915160135622,
+          -4.034521003061325,
+          1.3567388442278032,
+          -3.670118162355965,
+          -3.5375852801198153,
+          -1.8846434157309861,
+          3.1095486889688395,
+          -4.013823788439678,
+          -0.675056537205939,
+          -4.04173413888243,
+          -3.5311305919012232,
+          -1.7823122807004097,
+          2.5455318641633307,
+          -3.6985300009330846,
+          0.2504523431516592,
+          -4.816457838053188,
+          1.053792068732652,
+          2.8386398999742743,
+          -1.029916170803181,
+          -0.3468800102776557,
+          -2.605009804809139,
+          0.2908064394645278,
+          -0.4748073891471325,
+          2.018068212321924,
+          0.5525452991623023,
+          -2.9520491441385617,
+          -3.5692253299871513,
+          -1.8897480869057093,
+          -2.302983987863728,
+          2.062675149738439,
+          -0.4629869260276891,
+          -0.658468194161145,
+          0.5739356773491657,
+          1.9555753156331779,
+          0.8937221605730299,
+          0.9771573548268719,
+          -4.860265340413396,
+          0.6164548482082282,
+          -3.0658511607742773,
+          0.36528213630611095,
+          -0.0573624973811242,
+          1.6080253362864667,
+          -1.9825488283453927,
+          -1.4654035647536854,
+          -2.7512141902152054,
+          -3.7863620440227477,
+          -2.7954212566667116,
+          2.5688726590027855,
+          3.0933262136555495,
+          -2.2924200220811324,
+          -4.88187458824742,
+          2.9729884078273594,
+          -0.04961114009843559,
+          -3.313794405254655,
+          -4.091079816313323,
+          3.236559428672079,
+          -1.3716890187728117,
+          -3.5067355999327985,
+          -3.094265361067016,
+          -2.9598231812718363,
+          2.6388063970170226,
+          -3.566001478146904,
+          0.8913011638931847,
+          -2.9813429105175806,
+          -2.3471704360419006,
+          -0.5100707680024135,
+          -1.917101486012322,
+          2.2588690534420923,
+          -3.7929156192551536,
+          2.2761344422345404,
+          0.6718161607864275,
+          -2.635745576797682,
+          0.02382878318618964,
+          -0.5261250534561457,
+          1.1430505370075963,
+          0.7568322024232961,
+          -2.04603339434697,
+          0.01860987192333141,
+          -3.954049829512915,
+          -0.018068655230745634,
+          0.07441334965762536,
+          -1.8424244963027592,
+          0.8813265447938736,
+          1.255172282774618,
+          3.3261097476006416,
+          -1.0317227215738871,
+          1.8571091267853506,
+          2.0658155381823304,
+          0.8173654721525363,
+          -1.5492788573314233,
+          0.11779533731990899,
+          1.544660127744769,
+          1.0973601095290224,
+          -0.8045633253151623,
+          0.2658798262631512,
+          -3.8850479537951443,
+          -0.0831630120012612,
+          -4.477155255423385,
+          -3.5152010387211696,
+          3.4229735377156594,
+          -2.362146185454736,
+          -0.5157742858044649,
+          -3.480034045367587,
+          -1.9264861098535184,
+          -3.526444636903396,
+          -4.42092899543388,
+          -3.1276305887937323,
+          -0.38361993426001817,
+          2.7139495501841084,
+          -4.943794793506174,
+          3.1592521009862704,
+          0.6137328798519786,
+          -1.4019742088439129,
+          3.361390999374441,
+          0.12597468295181002,
+          0.8458898419723573,
+          -0.8893973837466334,
+          2.1663492822621704,
+          -0.07116797520558826,
+          -3.710922082487267,
+          -0.3133227973085342,
+          1.5002010849947647,
+          -2.3001399771576425,
+          -3.0582244435511976,
+          1.9842953828554224,
+          2.0755287707988,
+          2.99167965921494,
+          3.3609376100168316,
+          -2.2226596924821598,
+          1.1854783923356136,
+          0.41596936109473415,
+          -4.733868899035672,
+          -0.683093935597908,
+          -4.732037605382986,
+          0.2688440244874899,
+          2.930336051687683,
+          -1.5511122675033082,
+          2.2022241710026638,
+          0.4613128441589742,
+          -0.12412644550834884,
+          -2.663088477207343,
+          -2.986572516517747,
+          0.9197410584906871,
+          -0.5916702109785215,
+          3.385751246915728,
+          -0.417028851932276,
+          2.5374681904148053,
+          -4.503180349907482,
+          -4.983382022353229,
+          2.8228482131255435,
+          2.0258022704733607,
+          1.655649148399359,
+          -2.9875912211367175,
+          -3.91267833033205,
+          2.940353309609578,
+          -3.555341426069505,
+          0.889839330219421,
+          0.09745714507209513,
+          -0.3089684958660257,
+          -1.3914138420342437,
+          -1.8336232452731984,
+          -4.817800222600999,
+          -1.0513369883119683,
+          1.8107368408470714,
+          1.0196361832006424,
+          -4.552995002417231,
+          -3.529405825833953,
+          -2.3263022519334933,
+          2.646796117491512,
+          -3.9327708878582244,
+          -1.7932403582640495,
+          -3.748370638499427,
+          -2.108277780374807,
+          -3.9181015895037348,
+          -4.2096333199351115,
+          -3.529826962537573,
+          -4.7497915020749355,
+          1.391026554038877,
+          -3.320013295680399,
+          0.5577342177523397,
+          -4.655443012582697,
+          -2.5678825037458743,
+          1.0166236848552757,
+          1.0420631635877413,
+          2.8334688557307928,
+          3.3549465071208697,
+          2.8373019471956313,
+          -4.337657351578183,
+          -0.22922943774164928,
+          -0.6967778360088364,
+          2.072868536501855,
+          0.7757877007542753,
+          -1.5786330399571504,
+          2.632499530054697,
+          -4.630100071465968,
+          -4.5148415064622025,
+          -1.6528137530941853,
+          -3.246947077884198,
+          -4.945559303638508,
+          -1.349586892744839,
+          0.49234962010422123,
+          -1.6807771172556665,
+          -1.7078835351210415,
+          0.25960101041942085,
+          -1.7470147965786103,
+          -4.006864882627207,
+          0.6951872465293389,
+          0.5342916445586017,
+          2.435219958109478,
+          0.8977068893845654,
+          -3.655117050029941,
+          0.8451434385521504,
+          -4.119069097896497,
+          -0.28194157616566606,
+          1.0954742969164526,
+          1.1264442425489323,
+          1.7133848370667266,
+          -1.942399156979853,
+          -1.2362500889964303,
+          -1.536050899368028,
+          -3.363626214767253,
+          0.1326327492763646,
+          -2.3724330699708376,
+          2.1993839003282583,
+          -1.068831265010127,
+          -1.3168767634825613,
+          1.4317700166066336,
+          0.25257592816178676,
+          0.5528194867032221,
+          2.9899205079035402,
+          1.6115674371868804,
+          1.9674504929707188,
+          1.746475036217693,
+          -4.656203951008076,
+          -4.874013594878739,
+          -0.13332860506397104,
+          3.4225652543080063,
+          -2.5902322404984512,
+          1.9437379793303373,
+          0.04744926472675903,
+          1.7054629075999639,
+          0.648931243889332,
+          2.2088362112318505,
+          -0.13687176195713047,
+          1.408204887884648,
+          -4.966652144968723,
+          -2.268739179873746,
+          -0.7540213824287827,
+          -4.050656180624535,
+          -3.5668699855838057,
+          2.968617712853285,
+          1.44969349133396,
+          1.8397456964255756,
+          1.9689168271024284,
+          1.1829664770111865,
+          -1.9849074088342906,
+          -4.417576072285653,
+          -3.43067588938373,
+          -3.6033724535123937,
+          -4.616047396713924,
+          1.9795646382981378,
+          -4.537624570739008,
+          2.2929755965126715,
+          3.352603498278164,
+          -0.9056403295576896,
+          -0.3586456524558912,
+          -4.777321742326922,
+          1.6725722988062657,
+          -4.2748723885333995,
+          0.24339165990518374,
+          2.3832273059638434,
+          0.5561164466890425,
+          0.36333970032672536,
+          -1.0297655483246513,
+          -3.6459353829636805,
+          3.011572800894383,
+          -4.063623055548369,
+          -1.0769747503591551,
+          -0.841677573515919,
+          -2.5080153569718036,
+          -4.128021746155317,
+          1.338937567869971,
+          -1.2045517313074394,
+          -4.191823109933396,
+          3.326074331804774,
+          3.3457247324547126,
+          1.6158978982405712,
+          0.9058639378289479,
+          -1.4131781766028824,
+          -2.2745904541149136,
+          -4.9123938666825655,
+          -2.8278151753074607,
+          -0.6123369444191642,
+          -4.746659283827685,
+          -2.1327783972759318,
+          -2.4956826210000873,
+          0.7768711601202085,
+          1.1670919662285826,
+          -4.129001481521826,
+          1.2899346929882212,
+          3.0085635913011597,
+          0.8516196520132064,
+          -1.740203520439091,
+          -4.549066093521081,
+          3.298569245052418,
+          2.388686358569619,
+          -3.885124745834177,
+          1.3953642052566524,
+          2.1789761037430324,
+          -3.5022908312856433,
+          -2.3446644360135567,
+          -1.2876956084119842,
+          2.8384217413600714,
+          -3.1354432455973194,
+          -2.329071718271411,
+          3.0548292088612143,
+          -3.8415678847828625,
+          -3.4777463073405945,
+          2.088019322989944,
+          -0.7301619088487614,
+          -3.8986384911295757,
+          1.8396908034635917,
+          -2.7130649941602365,
+          0.4875257880947208,
+          0.5823601763532036,
+          -0.5734494041065297,
+          2.087699124712522,
+          0.4061394080446288,
+          -1.4445322460264416,
+          -4.38608393616525,
+          -0.6064103566904473,
+          -4.981349261931809,
+          -4.1628438547389015,
+          -0.5198576203842142,
+          -2.42568071644496,
+          2.163069374328259,
+          -2.8088241650229073,
+          -1.405364091399075,
+          -0.9687327132244885,
+          2.3011431747676694,
+          -3.7744956845687074,
+          0.06764736612906663,
+          -0.008323620027931966,
+          -4.040991308384752,
+          -3.1254475959459587,
+          -4.083926307828353,
+          -1.1926005298672706,
+          -2.814217549821454,
+          -3.8741794665436355,
+          -3.746792575148847,
+          1.7731247753108956,
+          -4.737764536271165,
+          0.5903830714830951,
+          2.5761482489390835,
+          -0.7017251528940305,
+          0.868070961003955,
+          3.0556474848837443,
+          -1.419015328410996,
+          -1.3770342694708488,
+          1.8404661849205128,
+          -4.776849993570858,
+          -4.100435976511161,
+          -0.613657933417425,
+          -3.0562060532958943,
+          2.3147491329510563,
+          0.5918074160196634,
+          -2.83390282482324,
+          2.5133842278847176,
+          -4.064832754462004,
+          -0.6751130761949442,
+          0.9516750227643946,
+          -3.377690736519514,
+          1.1732513178122064,
+          -1.6330621900497735,
+          -4.531849273490798,
+          -0.6243441753531584,
+          2.187758843470168,
+          3.033373480841945,
+          -0.7917379030985101,
+          2.586271111688074,
+          3.413893610246461,
+          1.9708055231052874,
+          -1.1505009628679952,
+          2.99672711375049,
+          -0.41447597648842915,
+          -4.398749802074798,
+          2.0014259414232694,
+          1.327570303433589,
+          2.53918542097699,
+          0.34846536585488064,
+          -2.103772066265406,
+          -1.0645605794409079,
+          -2.9122557257473907,
+          -1.4308249127367438,
+          1.8464726088574297,
+          -0.8778653425703569,
+          -0.5183694317702878,
+          -4.1883867531509065,
+          0.6947544057052246,
+          -0.7049955234010437,
+          -0.15182456099038966,
+          -2.944359563356677,
+          -2.331326781579963,
+          1.8488771864441693,
+          -1.360771217259376,
+          -3.603629996090313,
+          -1.9099294063222532,
+          -2.7065312266740627,
+          -0.8541108051156883,
+          -0.7459863624115863,
+          2.273808202884041,
+          -3.7865170737647063,
+          -0.8368205277422618,
+          0.6905796086390339,
+          -3.022579634951305,
+          -0.7071722904870832,
+          1.6719734307817502,
+          0.32860044759579754,
+          2.431874529697197,
+          1.7660038671422456,
+          -1.7402988846741891,
+          1.0673245851208888,
+          2.0625633657916165,
+          -4.8452507652196815,
+          -4.996162989561286,
+          -2.2276011136334977,
+          -1.2655650852604796,
+          -3.889438752229297,
+          -4.907602003214687,
+          0.9450499917463429,
+          -0.026670167297123903,
+          -2.926175067844963,
+          -2.3273217399047237,
+          3.359863853951367,
+          1.5182759186196968,
+          1.1135963508001696,
+          0.2929946005452768,
+          -1.802248741141764,
+          -0.06686496334292347,
+          1.7757059733645866,
+          -2.517558088576078,
+          -0.7119703913764166,
+          -4.731785024141814,
+          -3.45478173273378,
+          -1.5123357309550358,
+          -3.6130413009999582,
+          2.0774011701093142,
+          2.4471381899405094,
+          -2.063439511030969,
+          -4.835441034942155,
+          -1.4063505536305425,
+          2.536336000735485,
+          1.0451036500392341,
+          0.1810764616967555,
+          -3.229691647501909,
+          1.9234447140168225,
+          0.7893759242103906,
+          2.517307584760908,
+          -3.5949794451366492,
+          -3.7069931446844966,
+          -1.3340664737455175,
+          -1.5238885058367462,
+          1.4899057721088615,
+          -1.4792220309076072,
+          0.7496265815708814,
+          3.0731283593480683,
+          -0.4031880988495251,
+          -1.0295865929193813,
+          2.3925591189912296,
+          2.114922394837645,
+          -2.4683675114159267,
+          -2.683885196045527,
+          3.3627631592757954,
+          2.072445468248576,
+          -3.1891036113844926,
+          1.6469438467237936,
+          3.381448636917236,
+          0.3170604137727935,
+          0.8709793004369217,
+          -3.7513278108947232,
+          -3.1374750716233306,
+          -4.254555161394419,
+          -4.784081494877749,
+          -2.8618852142200786,
+          -4.512247367681617,
+          -0.9212273525610648,
+          -2.9712235649820657,
+          1.9250080153411693,
+          -3.33747605671666,
+          -4.429459595945067,
+          -4.711893600677471,
+          -4.440937947425296,
+          3.354259557242326,
+          -1.1093563283641856,
+          1.5201190108382194,
+          0.06985662424741435,
+          -0.19230152006084644,
+          1.6380219948505133,
+          -3.5181449466695334,
+          -4.819230421221089,
+          -1.6522484547226823,
+          1.9945637936869716,
+          -1.896489433900392,
+          -4.253066186927892,
+          -3.887714933980316,
+          2.2711359374219624,
+          2.6057704143933647,
+          -1.4088172507159524,
+          -4.121023568859458,
+          -1.3849966765274444,
+          0.9256059601912385,
+          -0.18688281271465446,
+          2.1293265336384417,
+          -1.912314988986092,
+          -1.4099109136793384,
+          0.9713757139432495,
+          -5.006248990796749,
+          1.237295445884894,
+          3.393805342405896,
+          -0.3694384538566613,
+          0.25632249945876673,
+          -2.3354172544394958,
+          -4.425419299563709,
+          1.902260491312319,
+          1.1669240354316832,
+          -4.515285290577213,
+          2.4357079607494443,
+          -0.15476661723870144,
+          2.497454329555623,
+          2.971701813828421,
+          -2.572012762485114,
+          -0.6163950167747938,
+          -1.186594262203863,
+          -1.7414517784315815,
+          -1.598115351262658,
+          -2.816838054308333,
+          0.16463303374016025,
+          -4.398473663436654,
+          -1.3834557921089097,
+          1.6496019056869535,
+          -4.621277390391199,
+          0.2103366952571779,
+          -4.395498291490351,
+          -2.2848940027000038,
+          -0.48647144632088857,
+          -0.9942969456755915,
+          -3.8675186142911473,
+          -4.61068612402147,
+          -2.1183581785347814,
+          -0.6065341860242883,
+          -2.7569269911091943,
+          2.9677982904280364,
+          1.7803833075673916,
+          -4.432320642908061,
+          -0.22930549836268188,
+          -1.9338795456463655,
+          -1.1793832133561546,
+          2.6140319666976843,
+          0.5846598651686552,
+          -0.9790080620035493,
+          -0.3449152958566435,
+          2.3073903464187504,
+          -0.3396655633406329,
+          -4.438070218347577,
+          -2.135538258369472,
+          -0.22541079175246814,
+          2.550507321912556,
+          2.3739881288312485,
+          -0.48570730822960595,
+          2.450954073643784,
+          -3.430164540785581,
+          -0.5532330098991212,
+          -2.652089652197073,
+          -3.035198641137607,
+          1.4049974779783874,
+          1.5638806022614373,
+          2.864481558957401,
+          -1.8608670542474943,
+          1.1318739779724574,
+          0.6818570413019778,
+          1.982081303708389,
+          -1.1376274580639327,
+          1.8263524411673044,
+          3.1681129467363363,
+          0.2936984959362121,
+          0.3403890517734416,
+          0.5337234967190048,
+          -1.0902408675013975,
+          2.4274145466551547,
+          -0.549091406103499,
+          1.8023344837596493,
+          -2.109191084150525,
+          -4.813619532838075,
+          0.5608926510144494,
+          1.8338445716777185,
+          2.569700979590788,
+          -0.9098295342312337,
+          -4.03710561212789,
+          -2.061181377485712,
+          2.90439784542542,
+          1.4526907254677495,
+          -2.594485793594121,
+          1.5997590356686482,
+          3.28709307791925,
+          2.689551643122857,
+          0.9431363144400464,
+          2.3862196535381974,
+          -3.644762357577606,
+          -0.10340648731419755,
+          -2.451092614271427,
+          -4.428463989247819,
+          2.1920878910702912,
+          -1.3944673566865795,
+          3.3341199577429492,
+          0.12016358461101095,
+          3.301616973120437,
+          -0.6299018263521523,
+          -3.8540530878596586,
+          2.33235764383552,
+          -2.4156681986276296,
+          2.438041913806723,
+          -1.5364468937978732,
+          -2.0040779692132724,
+          -2.5591498512773296,
+          0.7079458788999835,
+          -2.1939467359504463,
+          -1.9998681864867676,
+          -4.379749829587456,
+          0.825921144811459,
+          -2.157718795453866,
+          -4.689080020070349,
+          -4.491147625428715,
+          -2.500875676336476,
+          -2.1418754149172297,
+          -4.550693599645845,
+          0.08580942527632995,
+          2.1278010524492394,
+          0.2724671470850133,
+          -3.5607724808317442,
+          -4.62835913475487,
+          -1.5270318435150005,
+          0.8719954912354497,
+          -1.8826855639644973,
+          2.430723738002725,
+          -3.197109017445272,
+          -1.7678586876223474,
+          0.6906611111653946,
+          3.0118834952111015,
+          -4.495767924798922,
+          -2.791436384414813,
+          2.6894020704520996,
+          2.4309782361876024,
+          1.7766703476450498,
+          0.8431991254831619,
+          0.42732620730324555,
+          -2.1977990352387535,
+          -2.202089634512655,
+          -1.6239415512793713
          ]
         },
         {
@@ -24665,2677 +24635,2677 @@
          "scene": "scene4",
          "showlegend": false,
          "text": [
-          "example_2",
-          "example_15",
-          "example_23",
-          "example_29",
-          "example_30",
-          "example_32",
-          "example_43",
-          "example_44",
-          "example_45",
-          "example_49",
-          "example_51",
-          "example_56",
-          "example_58",
-          "example_59",
-          "example_63",
-          "example_65",
-          "example_67",
-          "example_69",
-          "example_70",
-          "example_71",
-          "example_72",
-          "example_73",
-          "example_76",
-          "example_78",
-          "example_81",
-          "example_84",
-          "example_99",
-          "example_100",
-          "example_101",
-          "example_107",
-          "example_109",
-          "example_111",
-          "example_115",
-          "example_118",
-          "example_120",
-          "example_123",
-          "example_124",
-          "example_128",
-          "example_135",
-          "example_141",
-          "example_148",
-          "example_162",
-          "example_163",
-          "example_168",
-          "example_170",
-          "example_173",
-          "example_175",
-          "example_182",
-          "example_184",
-          "example_185",
-          "example_188",
-          "example_192",
-          "example_194",
-          "example_196",
-          "example_198",
-          "example_199",
-          "example_203",
-          "example_208",
-          "example_210",
-          "example_211",
-          "example_212",
-          "example_218",
-          "example_220",
-          "example_226",
-          "example_231",
-          "example_233",
-          "example_236",
-          "example_237",
-          "example_239",
-          "example_240",
-          "example_244",
-          "example_247",
-          "example_250",
-          "example_251",
-          "example_254",
-          "example_256",
-          "example_259",
-          "example_261",
-          "example_265",
-          "example_266",
-          "example_270",
-          "example_271",
-          "example_272",
-          "example_273",
-          "example_274",
-          "example_275",
-          "example_277",
-          "example_281",
-          "example_286",
-          "example_289",
-          "example_292",
-          "example_297",
-          "example_298",
-          "example_300",
-          "example_303",
-          "example_305",
-          "example_306",
-          "example_307",
-          "example_309",
-          "example_310",
-          "example_311",
-          "example_316",
-          "example_322",
-          "example_324",
-          "example_331",
-          "example_332",
-          "example_334",
-          "example_339",
-          "example_342",
-          "example_344",
-          "example_350",
-          "example_351",
-          "example_352",
-          "example_353",
-          "example_354",
-          "example_358",
-          "example_361",
-          "example_363",
-          "example_365",
-          "example_366",
-          "example_367",
-          "example_368",
-          "example_371",
-          "example_374",
-          "example_376",
-          "example_380",
-          "example_381",
-          "example_382",
-          "example_383",
-          "example_393",
-          "example_394",
-          "example_398",
-          "example_405",
-          "example_408",
-          "example_411",
-          "example_413",
-          "example_414",
-          "example_415",
-          "example_416",
-          "example_420",
-          "example_422",
-          "example_425",
-          "example_426",
-          "example_427",
-          "example_429",
-          "example_432",
-          "example_433",
-          "example_436",
-          "example_438",
-          "example_439",
-          "example_445",
-          "example_450",
-          "example_453",
-          "example_462",
-          "example_464",
-          "example_465",
-          "example_471",
-          "example_478",
-          "example_479",
-          "example_480",
-          "example_481",
-          "example_482",
-          "example_483",
-          "example_485",
-          "example_486",
-          "example_493",
-          "example_494",
-          "example_495",
-          "example_497",
-          "example_505",
-          "example_506",
-          "example_507",
-          "example_513",
-          "example_514",
-          "example_518",
-          "example_519",
-          "example_522",
-          "example_526",
-          "example_527",
-          "example_529",
-          "example_530",
-          "example_532",
-          "example_534",
-          "example_535",
-          "example_538",
-          "example_543",
-          "example_544",
-          "example_548",
-          "example_551",
-          "example_552",
-          "example_554",
-          "example_555",
-          "example_557",
-          "example_561",
-          "example_567",
-          "example_570",
-          "example_572",
-          "example_575",
-          "example_576",
-          "example_579",
-          "example_581",
-          "example_582",
-          "example_583",
-          "example_584",
-          "example_585",
-          "example_588",
-          "example_590",
-          "example_591",
-          "example_593",
-          "example_596",
-          "example_598",
-          "example_599",
-          "example_602",
-          "example_607",
-          "example_609",
-          "example_610",
-          "example_611",
-          "example_613",
-          "example_614",
-          "example_617",
-          "example_618",
-          "example_619",
-          "example_620",
-          "example_628",
-          "example_630",
-          "example_631",
-          "example_637",
-          "example_650",
-          "example_651",
-          "example_654",
-          "example_670",
-          "example_674",
-          "example_678",
-          "example_679",
-          "example_680",
-          "example_692",
-          "example_693",
-          "example_694",
-          "example_701",
-          "example_704",
-          "example_705",
-          "example_706",
-          "example_707",
-          "example_710",
-          "example_712",
-          "example_715",
-          "example_720",
-          "example_721",
-          "example_727",
-          "example_730",
-          "example_733",
-          "example_736",
-          "example_741",
-          "example_744",
-          "example_745",
-          "example_746",
-          "example_752",
-          "example_755",
-          "example_757",
-          "example_759",
-          "example_764",
-          "example_765",
-          "example_767",
-          "example_771",
-          "example_774",
-          "example_777",
-          "example_780",
-          "example_781",
-          "example_785",
-          "example_787",
-          "example_788",
-          "example_792",
-          "example_802",
-          "example_806",
-          "example_807",
-          "example_808",
-          "example_812",
-          "example_813",
-          "example_817",
-          "example_818",
-          "example_819",
-          "example_824",
-          "example_829",
-          "example_832",
-          "example_834",
-          "example_838",
-          "example_843",
-          "example_845",
-          "example_849",
-          "example_855",
-          "example_861",
-          "example_865",
-          "example_873",
-          "example_879",
-          "example_886",
-          "example_887",
-          "example_892",
-          "example_900",
-          "example_904",
-          "example_905",
-          "example_906",
-          "example_907",
-          "example_909",
-          "example_914",
-          "example_915",
-          "example_923",
-          "example_925",
-          "example_926",
-          "example_930",
-          "example_931",
-          "example_936",
-          "example_937",
-          "example_939",
-          "example_942",
-          "example_943",
-          "example_948",
-          "example_949",
-          "example_952",
-          "example_962",
-          "example_963",
-          "example_964",
-          "example_965",
-          "example_966",
-          "example_976",
-          "example_978",
-          "example_979",
-          "example_984",
-          "example_985",
-          "example_988",
-          "example_990",
-          "example_993",
-          "example_994",
-          "example_1004",
-          "example_1010",
-          "example_1013",
-          "example_1018",
-          "example_1022",
-          "example_1027",
-          "example_1029",
-          "example_1033",
-          "example_1036",
-          "example_1040",
-          "example_1043",
-          "example_1050",
-          "example_1052",
-          "example_1053",
-          "example_1054",
-          "example_1061",
-          "example_1063",
-          "example_1067",
-          "example_1073",
-          "example_1075",
-          "example_1083",
-          "example_1084",
-          "example_1090",
-          "example_1100",
-          "example_1102",
-          "example_1103",
-          "example_1105",
-          "example_1106",
-          "example_1107",
-          "example_1114",
-          "example_1117",
-          "example_1120",
-          "example_1125",
-          "example_1133",
-          "example_1134",
-          "example_1138",
-          "example_1144",
-          "example_1146",
-          "example_1157",
-          "example_1159",
-          "example_1160",
-          "example_1163",
-          "example_1164",
-          "example_1165",
-          "example_1170",
-          "example_1173",
-          "example_1177",
-          "example_1179",
-          "example_1181",
-          "example_1187",
-          "example_1189",
-          "example_1192",
-          "example_1198",
-          "example_1202",
-          "example_1204",
-          "example_1211",
-          "example_1220",
-          "example_1222",
-          "example_1223",
-          "example_1225",
-          "example_1228",
-          "example_1229",
-          "example_1231",
-          "example_1233",
-          "example_1235",
-          "example_1239",
-          "example_1240",
-          "example_1242",
-          "example_1245",
-          "example_1247",
-          "example_1249",
-          "example_1255",
-          "example_1258",
-          "example_1263",
-          "example_1265",
-          "example_1270",
-          "example_1271",
-          "example_1272",
-          "example_1273",
-          "example_1274",
-          "example_1280",
-          "example_1281",
-          "example_1284",
-          "example_1287",
-          "example_1288",
-          "example_1289",
-          "example_1298",
-          "example_1301",
-          "example_1304",
-          "example_1305",
-          "example_1307",
-          "example_1309",
-          "example_1314",
-          "example_1316",
-          "example_1317",
-          "example_1318",
-          "example_1319",
-          "example_1320",
-          "example_1322",
-          "example_1324",
-          "example_1326",
-          "example_1331",
-          "example_1335",
-          "example_1339",
-          "example_1343",
-          "example_1344",
-          "example_1345",
-          "example_1347",
-          "example_1355",
-          "example_1357",
-          "example_1360",
-          "example_1362",
-          "example_1364",
-          "example_1376",
-          "example_1379",
-          "example_1380",
-          "example_1381",
-          "example_1383",
-          "example_1384",
-          "example_1386",
-          "example_1387",
-          "example_1389",
-          "example_1391",
-          "example_1392",
-          "example_1393",
-          "example_1395",
-          "example_1403",
-          "example_1405",
-          "example_1412",
-          "example_1414",
-          "example_1417",
-          "example_1420",
-          "example_1423",
-          "example_1424",
-          "example_1425",
-          "example_1428",
-          "example_1429",
-          "example_1431",
-          "example_1432",
-          "example_1433",
-          "example_1436",
-          "example_1440",
-          "example_1441",
-          "example_1447",
-          "example_1448",
-          "example_1452",
-          "example_1453",
-          "example_1454",
-          "example_1458",
-          "example_1464",
-          "example_1469",
-          "example_1471",
-          "example_1472",
-          "example_1474",
-          "example_1481",
-          "example_1483",
-          "example_1490",
-          "example_1491",
-          "example_1493",
-          "example_1498",
-          "example_1502",
-          "example_1503",
-          "example_1509",
-          "example_1510",
-          "example_1511",
-          "example_1516",
-          "example_1525",
-          "example_1526",
-          "example_1530",
-          "example_1531",
-          "example_1537",
-          "example_1542",
-          "example_1546",
-          "example_1547",
-          "example_1548",
-          "example_1551",
-          "example_1552",
-          "example_1553",
-          "example_1554",
-          "example_1556",
-          "example_1558",
-          "example_1560",
-          "example_1564",
-          "example_1565",
-          "example_1568",
-          "example_1571",
-          "example_1575",
-          "example_1582",
-          "example_1586",
-          "example_1588",
-          "example_1591",
-          "example_1592",
-          "example_1596",
-          "example_1601",
-          "example_1602",
-          "example_1605",
-          "example_1606",
-          "example_1607",
-          "example_1608",
-          "example_1610",
-          "example_1611",
-          "example_1612",
-          "example_1613",
-          "example_1615",
-          "example_1616",
-          "example_1621",
-          "example_1626",
-          "example_1632",
-          "example_1635",
-          "example_1644",
-          "example_1645",
-          "example_1646",
-          "example_1649",
-          "example_1650",
-          "example_1651",
-          "example_1652",
-          "example_1656",
-          "example_1657",
-          "example_1658",
-          "example_1664",
-          "example_1667",
-          "example_1671",
-          "example_1672",
-          "example_1674",
-          "example_1675",
-          "example_1676",
-          "example_1677",
-          "example_1683",
-          "example_1686",
-          "example_1689",
-          "example_1694",
-          "example_1696",
-          "example_1703",
-          "example_1708",
-          "example_1711",
-          "example_1712",
-          "example_1717",
-          "example_1719",
-          "example_1726",
-          "example_1727",
-          "example_1729",
-          "example_1734",
-          "example_1735",
-          "example_1738",
-          "example_1739",
-          "example_1743",
-          "example_1745",
-          "example_1749",
-          "example_1752",
-          "example_1754",
-          "example_1755",
-          "example_1759",
-          "example_1761",
-          "example_1763",
-          "example_1764",
-          "example_1765",
-          "example_1767",
-          "example_1770",
-          "example_1773",
-          "example_1775",
-          "example_1778",
-          "example_1779",
-          "example_1782",
-          "example_1783",
-          "example_1786",
-          "example_1787",
-          "example_1791",
-          "example_1801",
-          "example_1808",
-          "example_1810",
-          "example_1811",
-          "example_1813",
-          "example_1814",
-          "example_1816",
-          "example_1817",
-          "example_1823",
-          "example_1827",
-          "example_1831",
-          "example_1844",
-          "example_1851",
-          "example_1857",
-          "example_1860",
-          "example_1863",
-          "example_1864",
-          "example_1865",
-          "example_1867",
-          "example_1871",
-          "example_1872",
-          "example_1874",
-          "example_1882",
-          "example_1888",
-          "example_1891",
-          "example_1903",
-          "example_1904",
-          "example_1907",
-          "example_1909",
-          "example_1910",
-          "example_1911",
-          "example_1912",
-          "example_1914",
-          "example_1917",
-          "example_1918",
-          "example_1920",
-          "example_1922",
-          "example_1925",
-          "example_1928",
-          "example_1929",
-          "example_1930",
-          "example_1932",
-          "example_1935",
-          "example_1936",
-          "example_1937",
-          "example_1939",
-          "example_1941",
-          "example_1948",
-          "example_1952",
-          "example_1955",
-          "example_1957",
-          "example_1959",
-          "example_1960",
-          "example_1963",
-          "example_1972",
-          "example_1974",
-          "example_1975",
-          "example_1976",
-          "example_1978",
-          "example_1979",
-          "example_1984",
-          "example_1985",
-          "example_1987",
-          "example_1988",
-          "example_1989",
-          "example_1990",
-          "example_1993"
+          "0_l_0_m-0_0.08-1_0.1-2_0.06-3_0.19",
+          "1_l_0_m-0_0.12-1_0.47-2_0.31-3_0.18",
+          "2_l_0_m-0_0.09-1_0.16-2_0.08-3_0.18",
+          "3_l_0_m-0_0.21-1_0.23-2_0.17-3_0.1",
+          "4_l_0_m-0_0.47-1_0.09-2_0.48-3_0.24",
+          "5_l_0_m-0_0.16-1_0.92-2_0.25-3_0.33",
+          "6_l_0_c_0_1_2-0_0.16-1_0.18-2_0.48-3_0.52",
+          "7_l_0_c_0_1_2-0_0.0-1_0.08-2_0.86-3_1.04",
+          "8_l_0_c_0_1_2-0_0.79-1_0.27-2_0.53-3_1.46",
+          "9_l_0_c_0_1_2-0_0.5-1_0.46-2_0.73-3_0.29",
+          "10_l_0_c_0_1_2-0_0.35-1_0.09-2_0.95-3_0.67",
+          "11_l_0_c_0_1_2-0_0.45-1_0.18-2_0.01-3_0.68",
+          "12_l_0_c_0_1_2-0_0.26-1_0.65-2_0.03-3_1.18",
+          "13_l_0_c_0_1_2-0_0.02-1_0.11-2_0.11-3_0.93",
+          "14_l_0_c_0_1_2-0_0.01-1_0.31-2_0.46-3_0.39",
+          "15_l_0_c_0_1_2-0_0.49-1_0.44-2_0.46-3_0.4",
+          "16_l_0_c_0_1_2-0_0.32-1_0.66-2_0.09-3_0.22",
+          "17_l_0_c_0_1_2-0_0.88-1_0.25-2_0.08-3_0.3",
+          "18_l_0_c_0_1_2-0_0.24-1_0.29-2_0.41-3_0.04",
+          "19_l_0_c_1_2_3-0_1.19-1_0.67-2_0.48-3_0.22",
+          "20_l_0_c_0_1_2-0_0.56-1_0.09-2_0.52-3_1.12",
+          "21_l_0_c_0_2_3-0_0.44-1_0.25-2_0.14-3_0.45",
+          "22_l_0_c_1_2_3-0_0.05-1_0.26-2_1.37-3_0.82",
+          "23_l_0_c_0_1_2-0_0.49-1_0.15-2_0.69-3_0.44",
+          "24_l_0_c_0_2_3-0_0.38-1_0.27-2_0.15-3_0.11",
+          "25_l_0_c_1_2_3-0_0.97-1_0.06-2_0.49-3_0.2",
+          "26_l_0_c_0_1_2-0_0.19-1_0.15-2_0.23-3_0.53",
+          "27_l_0_c_0_2_3-0_0.89-1_0.91-2_0.76-3_0.39",
+          "28_l_0_c_1_2_3-0_1.08-1_0.98-2_0.18-3_0.04",
+          "29_l_0_c_0_1_2-0_0.22-1_1.08-2_0.81-3_0.67",
+          "30_l_0_c_0_2_3-0_0.23-1_0.4-2_0.14-3_0.55",
+          "31_l_0_c_1_2_3-0_0.26-1_1.2-2_1.47-3_0.63",
+          "32_l_0_c_0_1_2-0_0.07-1_0.41-2_0.51-3_0.63",
+          "33_l_0_c_0_2_3-0_0.91-1_0.76-2_0.27-3_0.2",
+          "34_l_0_c_1_2_3-0_0.87-1_0.07-2_0.06-3_0.57",
+          "35_l_0_c_0_1_2-0_0.56-1_0.36-2_0.13-3_0.52",
+          "36_l_0_c_0_2_3-0_0.28-1_0.03-2_0.3-3_0.01",
+          "37_l_0_c_1_2_3-0_1.09-1_0.93-2_0.76-3_0.51",
+          "38_l_0_c_0_1_2-0_0.25-1_0.17-2_0.57-3_0.02",
+          "39_l_0_c_0_2_3-0_0.28-1_1.49-2_0.09-3_0.08",
+          "40_l_0_c_1_2_3-0_0.64-1_1.01-2_0.43-3_0.53",
+          "41_l_0_c_0_1_2-0_0.89-1_0.53-2_0.66-3_0.47",
+          "42_l_0_c_0_2_3-0_0.41-1_0.28-2_0.62-3_0.12",
+          "43_l_0_c_1_2_3-0_0.3-1_0.39-2_0.16-3_0.31",
+          "44_l_0_c_0_1_2-0_0.89-1_0.29-2_1.09-3_0.7",
+          "45_l_0_c_0_2_3-0_0.2-1_1.61-2_0.97-3_0.56",
+          "46_l_0_c_1_2_3-0_1.88-1_0.28-2_0.02-3_0.34",
+          "47_l_0_c_0_1_2-0_0.46-1_0.32-2_0.42-3_0.99",
+          "48_l_0_c_0_2_3-0_0.3-1_0.65-2_1.47-3_0.02",
+          "49_l_0_c_1_2_3-0_0.12-1_1.17-2_0.15-3_0.4",
+          "50_l_0_c_0_1_2-0_0.15-1_1.28-2_0.92-3_0.85",
+          "51_l_0_c_0_2_3-0_1.05-1_0.51-2_0.73-3_1.02",
+          "52_l_0_c_1_2_3-0_0.18-1_0.07-2_0.62-3_0.67",
+          "53_l_0_c_0_1_2-0_0.69-1_0.81-2_0.74-3_1.39",
+          "54_l_0_c_0_2_3-0_0.16-1_0.75-2_0.07-3_0.35",
+          "55_l_0_c_1_2_3-0_0.97-1_0.19-2_0.38-3_0.2",
+          "56_l_0_c_0_1_2-0_0.28-1_0.04-2_0.25-3_0.4",
+          "57_l_0_c_0_2_3-0_0.51-1_1.5-2_0.68-3_0.15",
+          "58_l_0_c_1_2_3-0_0.97-1_0.32-2_0.19-3_0.46",
+          "59_l_0_c_0_1_2-0_0.56-1_0.88-2_0.21-3_0.17",
+          "60_l_0_c_0_2_3-0_1.68-1_1.59-2_0.67-3_0.04",
+          "61_l_0_c_1_2_3-0_0.88-1_0.25-2_0.45-3_0.18",
+          "62_l_0_c_0_1_2-0_0.2-1_0.18-2_0.32-3_0.14",
+          "63_l_0_c_0_2_3-0_1.24-1_0.85-2_0.84-3_0.38",
+          "64_l_0_c_1_2_3-0_0.73-1_0.38-2_0.16-3_0.74",
+          "65_l_0_c_0_1_2-0_0.44-1_0.05-2_0.39-3_0.18",
+          "66_l_0_c_0_2_3-0_0.41-1_1.44-2_0.12-3_0.11",
+          "67_l_0_c_1_2_3-0_2.05-1_0.06-2_0.68-3_1.1",
+          "68_l_0_c_0_1_2-0_0.4-1_0.19-2_0.03-3_1.39",
+          "69_l_0_c_0_2_3-0_0.31-1_0.28-2_0.08-3_0.25",
+          "70_l_0_c_1_2_3-0_0.45-1_0.08-2_0.27-3_0.6",
+          "71_l_0_c_0_1_2-0_0.2-1_0.06-2_0.96-3_0.54",
+          "72_l_0_c_0_2_3-0_0.14-1_0.93-2_0.74-3_0.39",
+          "73_l_0_c_1_2_3-0_0.46-1_0.46-2_0.66-3_0.02",
+          "74_l_0_c_0_1_2-0_0.69-1_0.43-2_0.14-3_0.4",
+          "75_l_0_c_0_2_3-0_0.23-1_1.16-2_0.46-3_1.37",
+          "76_l_0_c_1_2_3-0_2.24-1_0.15-2_0.96-3_0.61",
+          "77_l_0_c_0_1_2-0_0.05-1_0.07-2_0.15-3_0.87",
+          "78_l_0_c_0_2_3-0_0.21-1_0.08-2_0.25-3_0.11",
+          "79_l_0_c_1_2_3-0_0.43-1_0.1-2_0.01-3_0.94",
+          "80_l_0_c_0_1_2-0_0.58-1_0.21-2_0.54-3_0.47",
+          "81_l_0_c_0_2_3-0_0.34-1_1.14-2_0.45-3_0.06",
+          "82_l_0_c_1_2_3-0_1.71-1_0.12-2_0.15-3_0.07",
+          "83_l_0_c_0_1_2-0_0.12-1_0.06-2_0.0-3_0.26",
+          "84_l_0_c_0_2_3-0_0.8-1_0.15-2_0.64-3_0.24",
+          "85_l_0_c_1_2_3-0_1.41-1_0.02-2_1.18-3_0.64",
+          "86_l_0_c_0_1_2-0_0.05-1_0.21-2_0.64-3_0.53",
+          "87_l_0_c_0_2_3-0_0.9-1_0.07-2_0.44-3_0.22",
+          "88_l_0_c_1_2_3-0_0.07-1_0.19-2_0.42-3_0.71",
+          "89_l_0_c_0_1_2-0_0.21-1_0.2-2_0.35-3_0.04",
+          "90_l_0_c_0_2_3-0_0.38-1_2.27-2_0.51-3_0.04",
+          "91_l_0_c_1_2_3-0_0.57-1_0.45-2_0.2-3_0.44",
+          "92_l_0_c_0_1_2-0_0.23-1_0.17-2_0.43-3_1.58",
+          "93_l_0_c_0_2_3-0_2.0-1_0.83-2_0.76-3_0.02",
+          "94_l_0_c_1_2_3-0_0.43-1_0.32-2_0.19-3_0.86",
+          "95_l_0_c_0_1_2-0_0.34-1_0.46-2_0.23-3_0.69",
+          "96_l_0_c_0_2_3-0_0.03-1_0.36-2_0.26-3_0.08",
+          "97_l_0_c_1_2_3-0_0.69-1_0.09-2_1.09-3_0.99",
+          "98_l_0_c_0_1_2-0_0.02-1_0.16-2_0.64-3_0.6",
+          "99_l_0_c_0_1_3-0_0.06-1_0.32-2_0.65-3_0.41",
+          "100_l_0_c_0_2_3-0_0.03-1_0.14-2_0.74-3_0.63",
+          "101_l_0_c_1_2_3-0_1.15-1_0.92-2_1.15-3_0.82",
+          "102_l_0_c_0_1_2-0_0.09-1_0.04-2_0.31-3_0.88",
+          "103_l_0_c_0_1_3-0_0.07-1_0.34-2_0.57-3_0.05",
+          "104_l_0_c_0_2_3-0_0.41-1_0.51-2_0.35-3_0.04",
+          "105_l_0_c_1_2_3-0_0.55-1_0.74-2_0.64-3_0.06",
+          "106_l_0_c_0_1_2-0_0.09-1_0.19-2_0.17-3_0.35",
+          "107_l_0_c_0_1_3-0_0.02-1_0.13-2_1.34-3_0.6",
+          "108_l_0_c_0_2_3-0_0.54-1_0.09-2_1.38-3_1.04",
+          "109_l_0_c_1_2_3-0_0.96-1_0.09-2_0.5-3_0.73",
+          "110_l_0_c_0_1_2-0_0.5-1_0.59-2_0.08-3_0.06",
+          "111_l_0_c_0_1_3-0_0.06-1_0.82-2_0.49-3_0.1",
+          "112_l_0_c_0_2_3-0_0.04-1_0.3-2_0.01-3_0.46",
+          "113_l_0_c_1_2_3-0_0.52-1_0.44-2_0.72-3_0.71",
+          "114_l_0_c_0_1_2-0_0.09-1_0.34-2_1.76-3_1.09",
+          "115_l_0_c_0_1_3-0_0.14-1_0.82-2_0.18-3_0.11",
+          "116_l_0_c_0_2_3-0_0.56-1_0.93-2_0.15-3_0.12",
+          "117_l_0_c_1_2_3-0_0.54-1_0.2-2_0.3-3_0.08",
+          "118_l_0_c_0_1_2-0_0.53-1_0.18-2_0.52-3_0.01",
+          "119_l_0_c_0_1_3-0_0.35-1_0.5-2_0.28-3_0.26",
+          "120_l_0_c_0_2_3-0_0.49-1_0.76-2_0.12-3_2.22",
+          "121_l_0_c_1_2_3-0_0.11-1_0.58-2_0.11-3_0.57",
+          "122_l_0_c_0_1_2-0_0.13-1_1.02-2_1.03-3_1.02",
+          "123_l_0_c_0_1_3-0_0.05-1_0.95-2_0.49-3_0.4",
+          "124_l_0_c_0_2_3-0_0.2-1_1.9-2_0.35-3_0.63",
+          "125_l_0_c_1_2_3-0_0.4-1_0.12-2_0.25-3_0.2",
+          "126_l_0_c_0_1_2-0_0.18-1_0.49-2_0.34-3_0.01",
+          "127_l_0_c_0_1_3-0_0.09-1_0.01-2_0.81-3_0.26",
+          "128_l_0_c_0_2_3-0_0.23-1_0.16-2_1.5-3_0.83",
+          "129_l_0_c_1_2_3-0_1.29-1_0.15-2_0.0-3_0.14",
+          "130_l_0_c_0_1_2-0_0.39-1_0.08-2_0.17-3_0.47",
+          "131_l_0_c_0_1_3-0_0.03-1_0.46-2_0.16-3_0.26",
+          "132_l_0_c_0_2_3-0_0.19-1_0.2-2_0.46-3_0.04",
+          "133_l_0_c_1_2_3-0_0.66-1_0.08-2_0.12-3_0.96",
+          "134_l_0_c_0_1_2-0_0.71-1_0.18-2_0.68-3_1.72",
+          "135_l_0_c_0_1_3-0_0.04-1_0.79-2_1.72-3_0.05",
+          "136_l_0_c_0_2_3-0_0.43-1_1.42-2_1.29-3_0.04",
+          "137_l_0_c_1_2_3-0_0.27-1_0.71-2_1.11-3_0.1",
+          "138_l_0_c_0_1_2-0_0.12-1_0.16-2_0.15-3_0.1",
+          "139_l_0_c_0_1_3-0_0.07-1_0.64-2_0.05-3_0.11",
+          "140_l_0_c_0_2_3-0_0.05-1_1.53-2_0.46-3_0.14",
+          "141_l_0_c_1_2_3-0_0.99-1_0.31-2_0.18-3_0.06",
+          "142_l_0_c_0_1_2-0_1.54-1_0.07-2_0.21-3_0.93",
+          "143_l_0_c_0_1_3-0_0.3-1_0.54-2_0.05-3_0.05",
+          "144_l_0_c_0_2_3-0_0.06-1_0.62-2_0.41-3_0.27",
+          "145_l_0_c_1_2_3-0_0.04-1_0.43-2_0.13-3_0.7",
+          "146_l_0_c_0_1_2-0_0.56-1_0.46-2_0.58-3_0.11",
+          "147_l_0_c_0_1_3-0_0.71-1_0.23-2_1.18-3_0.31",
+          "148_l_0_c_0_2_3-0_0.35-1_1.91-2_0.07-3_0.5",
+          "149_l_0_c_1_2_3-0_0.23-1_0.1-2_0.03-3_0.28",
+          "150_l_0_c_0_1_2-0_0.27-1_0.11-2_0.59-3_0.3",
+          "151_l_0_c_0_1_3-0_0.13-1_0.09-2_0.16-3_0.01",
+          "152_l_0_c_0_2_3-0_0.41-1_0.23-2_0.26-3_0.29",
+          "153_l_0_c_1_2_3-0_0.84-1_0.71-2_0.7-3_0.08",
+          "154_l_0_c_0_1_2-0_0.66-1_0.44-2_0.1-3_1.0",
+          "155_l_0_c_0_1_3-0_0.28-1_0.23-2_0.2-3_0.02",
+          "156_l_0_c_0_2_3-0_0.26-1_1.45-2_0.37-3_0.45",
+          "157_l_0_c_1_2_3-0_0.16-1_0.84-2_0.62-3_0.21",
+          "158_l_0_c_0_1_2-0_0.38-1_0.4-2_0.28-3_0.46",
+          "159_l_0_c_0_1_3-0_0.44-1_0.75-2_0.03-3_1.07",
+          "160_l_0_c_0_2_3-0_0.58-1_0.11-2_0.6-3_1.06",
+          "161_l_0_c_1_2_3-0_1.35-1_0.5-2_0.2-3_0.24",
+          "162_l_0_c_0_1_2-0_0.73-1_0.27-2_0.48-3_2.1",
+          "163_l_0_c_0_1_3-0_0.59-1_0.6-2_0.14-3_0.1",
+          "164_l_0_c_0_2_3-0_0.45-1_0.59-2_0.11-3_0.24",
+          "165_l_0_c_1_2_3-0_0.04-1_1.36-2_0.69-3_0.07",
+          "166_l_0_c_0_1_2-0_0.06-1_0.11-2_0.88-3_0.96",
+          "167_l_0_c_0_1_3-0_0.34-1_0.09-2_1.17-3_0.11",
+          "168_l_0_c_0_2_3-0_0.07-1_1.72-2_1.1-3_0.71",
+          "169_l_0_c_1_2_3-0_0.55-1_0.53-2_0.37-3_0.22",
+          "170_l_0_c_0_1_2-0_0.1-1_0.78-2_0.4-3_1.28",
+          "171_l_0_c_0_1_3-0_0.16-1_0.07-2_0.24-3_0.2",
+          "172_l_0_c_0_2_3-0_0.19-1_0.92-2_0.79-3_0.12",
+          "173_l_0_c_1_2_3-0_0.27-1_0.12-2_0.4-3_0.41",
+          "174_l_0_c_0_1_2-0_0.67-1_1.34-2_0.58-3_0.7",
+          "175_l_0_c_0_1_3-0_0.18-1_0.89-2_0.68-3_0.37",
+          "176_l_0_c_0_2_3-0_0.41-1_0.47-2_0.97-3_0.08",
+          "177_l_0_c_1_2_3-0_1.31-1_0.48-2_0.28-3_0.05",
+          "178_l_0_c_0_1_2-0_0.48-1_1.05-2_0.66-3_0.6",
+          "179_l_0_c_0_1_3-0_0.98-1_0.33-2_0.71-3_0.35",
+          "180_l_0_c_0_2_3-0_0.56-1_0.69-2_0.05-3_0.18",
+          "181_l_0_c_1_2_3-0_1.86-1_0.25-2_0.31-3_0.18",
+          "182_l_0_c_0_1_2-0_1.12-1_1.05-2_0.53-3_1.1",
+          "183_l_0_c_0_1_3-0_0.87-1_0.43-2_0.03-3_0.07",
+          "184_l_0_c_0_2_3-0_0.65-1_0.94-2_0.1-3_0.7",
+          "185_l_0_c_1_2_3-0_0.33-1_0.95-2_0.24-3_0.71",
+          "186_l_0_c_0_1_2-0_0.39-1_0.07-2_0.08-3_0.43",
+          "187_l_0_c_0_1_3-0_0.05-1_0.18-2_0.24-3_0.2",
+          "188_l_0_c_0_2_3-0_0.56-1_1.31-2_0.4-3_0.82",
+          "189_l_0_c_1_2_3-0_0.49-1_0.39-2_0.45-3_0.66",
+          "190_l_0_c_0_1_2-0_0.09-1_0.85-2_0.28-3_0.85",
+          "191_l_0_c_0_1_3-0_0.05-1_0.11-2_0.96-3_0.93",
+          "192_l_0_c_0_2_3-0_0.51-1_0.44-2_0.24-3_0.3",
+          "193_l_0_c_1_2_3-0_0.22-1_0.67-2_0.61-3_1.16",
+          "194_l_0_c_0_1_2-0_0.59-1_0.0-2_0.04-3_0.26",
+          "195_l_0_c_0_1_3-0_0.51-1_1.05-2_1.87-3_0.31",
+          "196_l_0_c_0_2_3-0_0.17-1_0.62-2_0.92-3_0.31",
+          "197_l_0_c_1_2_3-0_0.02-1_0.59-2_1.32-3_0.8",
+          "198_l_0_c_0_1_2-0_0.03-1_0.11-2_0.44-3_2.01",
+          "199_l_0_c_0_1_3-0_0.82-1_0.29-2_0.02-3_0.3",
+          "200_l_0_c_0_2_3-0_0.48-1_0.23-2_0.27-3_0.17",
+          "201_l_0_c_1_2_3-0_0.12-1_0.7-2_0.16-3_0.19",
+          "202_l_0_c_0_1_2-0_0.26-1_0.66-2_0.53-3_0.76",
+          "203_l_0_c_0_1_3-0_0.6-1_1.34-2_0.38-3_0.1",
+          "204_l_0_c_0_2_3-0_0.1-1_0.84-2_0.08-3_0.15",
+          "205_l_0_c_1_2_3-0_0.88-1_0.28-2_0.67-3_0.83",
+          "206_l_0_c_0_1_2-0_0.22-1_0.21-2_1.45-3_0.36",
+          "207_l_0_c_0_1_3-0_0.02-1_0.15-2_0.1-3_0.38",
+          "208_l_0_c_0_2_3-0_0.41-1_1.88-2_1.04-3_0.83",
+          "209_l_0_c_1_2_3-0_0.92-1_1.3-2_0.2-3_0.78",
+          "210_l_0_c_0_1_2-0_0.08-1_0.03-2_0.04-3_0.1",
+          "211_l_0_c_0_1_3-0_0.83-1_0.46-2_0.19-3_0.34",
+          "212_l_0_c_0_2_3-0_0.54-1_1.0-2_0.82-3_0.8",
+          "213_l_0_c_1_2_3-0_1.51-1_0.67-2_1.93-3_0.31",
+          "214_l_0_c_0_1_2-0_0.04-1_1.63-2_0.74-3_0.07",
+          "215_l_0_c_0_1_3-0_0.77-1_0.06-2_2.47-3_1.47",
+          "216_l_0_c_0_2_3-0_0.63-1_0.07-2_0.11-3_0.27",
+          "217_l_0_c_1_2_3-0_1.25-1_0.56-2_0.11-3_0.06",
+          "218_l_0_c_0_1_2-0_0.18-1_0.15-2_0.08-3_0.52",
+          "219_l_0_c_0_1_3-0_0.01-1_0.33-2_0.22-3_0.13",
+          "220_l_0_c_0_2_3-0_0.5-1_0.55-2_0.03-3_0.27",
+          "221_l_0_c_1_2_3-0_0.94-1_0.62-2_0.52-3_0.41",
+          "222_l_0_c_0_1_2-0_0.45-1_0.42-2_0.35-3_1.3",
+          "223_l_0_c_0_1_3-0_0.07-1_0.07-2_0.13-3_0.04",
+          "224_l_0_c_0_2_3-0_1.61-1_0.44-2_0.05-3_0.08",
+          "225_l_0_c_1_2_3-0_0.82-1_0.56-2_0.97-3_0.05",
+          "226_l_0_c_0_1_2-0_0.19-1_0.32-2_0.45-3_0.5",
+          "227_l_0_c_0_1_3-0_0.78-1_0.51-2_2.04-3_0.56",
+          "228_l_0_c_0_2_3-0_0.15-1_0.4-2_0.23-3_1.22",
+          "229_l_0_c_1_2_3-0_0.26-1_0.23-2_1.38-3_0.32",
+          "230_l_0_c_0_1_2-0_0.85-1_0.18-2_0.33-3_0.01",
+          "231_l_0_c_0_1_3-0_0.89-1_0.19-2_0.47-3_0.48",
+          "232_l_0_c_0_2_3-0_0.47-1_0.49-2_0.32-3_0.02",
+          "233_l_0_c_1_2_3-0_1.85-1_0.08-2_0.02-3_0.19",
+          "234_l_0_c_0_1_2-0_0.29-1_0.03-2_0.53-3_0.12",
+          "235_l_0_c_0_1_3-0_0.56-1_1.17-2_0.53-3_0.3",
+          "236_l_0_c_0_2_3-0_0.2-1_0.38-2_1.49-3_0.16",
+          "237_l_0_c_1_2_3-0_0.8-1_0.03-2_0.73-3_0.15",
+          "238_l_0_c_0_1_2-0_0.01-1_0.01-2_0.47-3_1.36",
+          "239_l_0_c_0_1_3-0_0.28-1_0.1-2_1.07-3_0.43",
+          "240_l_0_c_0_2_3-0_0.18-1_0.53-2_0.17-3_0.01",
+          "241_l_0_c_1_2_3-0_0.7-1_0.72-2_0.42-3_0.97",
+          "242_l_0_c_0_1_2-0_0.27-1_0.54-2_0.1-3_0.48",
+          "243_l_0_c_0_1_3-0_1.25-1_0.22-2_0.62-3_0.06",
+          "244_l_0_c_0_2_3-0_0.17-1_0.97-2_0.03-3_0.16",
+          "245_l_0_c_1_2_3-0_0.12-1_0.27-2_1.03-3_0.15",
+          "246_l_0_c_0_1_2-0_0.06-1_0.45-2_0.25-3_0.55",
+          "247_l_0_c_0_1_3-0_1.46-1_0.26-2_0.27-3_0.32",
+          "248_l_0_c_0_2_3-0_0.11-1_1.39-2_0.07-3_0.76",
+          "249_l_0_c_1_2_3-0_0.41-1_0.5-2_0.06-3_0.3",
+          "250_l_0_c_0_1_2-0_0.94-1_0.09-2_0.09-3_0.83",
+          "251_l_0_c_0_1_3-0_0.45-1_0.07-2_0.55-3_0.39",
+          "252_l_0_c_0_2_3-0_0.31-1_0.25-2_0.6-3_0.16",
+          "253_l_0_c_1_2_3-0_0.18-1_0.12-2_0.13-3_0.55",
+          "254_l_0_c_0_1_2-0_0.57-1_1.09-2_0.74-3_0.05",
+          "255_l_0_c_0_1_3-0_0.16-1_0.64-2_1.69-3_0.01",
+          "256_l_0_c_0_2_3-0_0.09-1_0.99-2_0.18-3_0.01",
+          "257_l_0_c_1_2_3-0_1.03-1_0.5-2_0.79-3_0.1",
+          "258_l_0_c_0_1_2-0_0.2-1_0.43-2_0.14-3_0.04",
+          "259_l_0_c_0_1_3-0_0.19-1_0.38-2_0.83-3_0.35",
+          "260_l_0_c_0_2_3-0_0.27-1_0.93-2_0.62-3_0.01",
+          "261_l_0_c_1_2_3-0_1.59-1_0.11-2_0.41-3_1.02",
+          "262_l_0_c_0_1_2-0_0.88-1_0.16-2_0.27-3_0.14",
+          "263_l_0_c_0_1_3-0_0.15-1_0.28-2_1.69-3_0.2",
+          "264_l_0_c_0_2_3-0_0.08-1_0.26-2_0.13-3_0.25",
+          "265_l_0_c_1_2_3-0_1.11-1_0.58-2_1.7-3_0.04",
+          "266_l_0_c_0_1_2-0_0.51-1_0.51-2_0.69-3_1.07",
+          "267_l_0_c_0_1_3-0_0.25-1_0.24-2_1.0-3_0.02",
+          "268_l_0_c_0_2_3-0_0.09-1_0.68-2_0.05-3_0.21",
+          "269_l_0_c_1_2_3-0_0.08-1_0.7-2_1.13-3_0.76",
+          "270_l_0_c_0_1_2-0_0.43-1_0.12-2_0.99-3_0.46",
+          "271_l_0_c_0_1_3-0_0.33-1_1.36-2_1.4-3_0.15",
+          "272_l_0_c_0_2_3-0_0.09-1_0.06-2_0.59-3_0.03",
+          "273_l_0_c_1_2_3-0_0.41-1_0.33-2_0.26-3_0.19",
+          "274_l_0_c_0_1_2-0_0.03-1_0.31-2_0.04-3_0.37",
+          "275_l_0_c_0_1_3-0_0.38-1_0.02-2_0.83-3_0.38",
+          "276_l_0_c_0_2_3-0_1.37-1_0.3-2_0.99-3_0.79",
+          "277_l_0_c_1_2_3-0_0.24-1_1.02-2_0.43-3_0.01",
+          "278_l_0_c_0_1_2-0_0.29-1_1.14-2_0.33-3_0.16",
+          "279_l_0_c_0_1_3-0_1.47-1_0.76-2_0.53-3_0.13",
+          "280_l_0_c_0_2_3-0_0.48-1_1.42-2_1.84-3_0.41",
+          "281_l_0_c_1_2_3-0_1.02-1_0.58-2_0.41-3_0.24",
+          "282_l_0_c_0_1_2-0_0.26-1_0.91-2_0.04-3_0.72",
+          "283_l_0_c_0_1_3-0_0.43-1_0.36-2_0.02-3_0.18",
+          "284_l_0_c_0_2_3-0_0.12-1_0.58-2_0.02-3_0.1",
+          "285_l_0_c_1_2_3-0_1.38-1_0.22-2_0.02-3_0.04",
+          "286_l_0_c_0_1_2-0_0.25-1_0.42-2_1.01-3_0.07",
+          "287_l_0_c_0_1_3-0_0.43-1_0.74-2_1.07-3_0.26",
+          "288_l_0_c_0_2_3-0_0.36-1_0.08-2_0.36-3_0.23",
+          "289_l_0_c_1_2_3-0_0.93-1_0.11-2_0.92-3_0.1",
+          "290_l_0_c_0_1_2-0_0.43-1_0.61-2_0.21-3_0.6",
+          "291_l_0_c_0_1_3-0_1.24-1_0.02-2_0.8-3_0.17",
+          "292_l_0_c_0_2_3-0_0.3-1_0.0-2_0.15-3_0.86",
+          "293_l_0_c_1_2_3-0_0.06-1_0.77-2_1.34-3_0.6",
+          "294_l_0_c_0_1_2-0_1.31-1_0.62-2_1.25-3_0.35",
+          "295_l_0_c_3-0_2.17-1_0.31-2_1.42-3_0.04",
+          "296_l_0_r-0_0.87-1_0.39-2_1.34-3_0.51",
+          "297_l_0_r-0_0.23-1_0.53-2_0.56-3_0.98",
+          "298_l_0_r-0_0.56-1_1.41-2_1.44-3_0.26",
+          "299_l_0_r-0_0.59-1_0.78-2_1.47-3_0.9",
+          "300_l_0_r-0_0.62-1_0.23-2_0.19-3_0.56",
+          "301_l_0_r-0_0.41-1_0.03-2_1.38-3_0.21",
+          "302_l_0_r-0_0.01-1_1.47-2_0.45-3_0.66",
+          "303_l_0_r-0_0.83-1_0.41-2_0.59-3_0.34",
+          "304_l_0_r-0_1.62-1_0.7-2_1.55-3_0.87",
+          "305_l_0_r-0_0.17-1_0.98-2_0.16-3_0.93",
+          "306_l_0_r-0_0.92-1_0.94-2_1.06-3_0.74",
+          "307_l_0_r-0_1.4-1_0.93-2_0.41-3_0.0",
+          "308_l_0_r-0_0.23-1_1.47-2_0.77-3_0.78",
+          "309_l_0_r-0_1.16-1_2.18-2_0.25-3_1.16",
+          "310_l_0_r-0_1.02-1_1.39-2_0.5-3_1.23",
+          "311_l_0_r-0_1.72-1_1.05-2_1.01-3_0.11",
+          "312_l_0_r-0_1.87-1_0.67-2_0.39-3_0.83",
+          "313_l_0_r-0_0.77-1_1.08-2_0.33-3_0.86",
+          "314_l_0_r-0_0.72-1_0.05-2_0.14-3_0.79",
+          "315_l_0_r-0_0.33-1_1.79-2_0.32-3_0.21",
+          "316_l_0_r-0_0.63-1_1.25-2_0.46-3_0.12",
+          "317_l_0_r-0_0.16-1_0.27-2_1.75-3_1.2",
+          "318_l_0_r-0_1.31-1_0.1-2_0.5-3_0.9",
+          "319_l_0_r-0_0.19-1_0.06-2_2.24-3_0.58",
+          "320_l_0_r-0_1.75-1_0.55-2_0.34-3_0.16",
+          "321_l_0_r-0_0.31-1_0.53-2_2.1-3_0.64",
+          "322_l_0_r-0_0.24-1_0.82-2_0.21-3_0.74",
+          "323_l_0_r-0_0.47-1_1.26-2_2.16-3_0.96",
+          "324_l_0_r-0_1.01-1_0.27-2_0.73-3_0.92",
+          "325_l_0_r-0_0.12-1_1.0-2_1.21-3_0.17",
+          "326_l_0_r-0_0.43-1_2.22-2_1.0-3_0.89",
+          "327_l_0_r-0_0.35-1_1.53-2_0.28-3_0.58",
+          "328_l_0_r-0_1.67-1_0.47-2_0.37-3_0.79",
+          "329_l_0_r-0_0.43-1_0.31-2_0.64-3_1.43",
+          "330_l_0_r-0_0.81-1_0.73-2_1.88-3_2.11",
+          "331_l_0_r-0_0.71-1_0.17-2_0.9-3_0.29",
+          "332_l_0_r-0_1.67-1_0.11-2_0.33-3_0.87",
+          "333_l_0_r-0_0.65-1_0.8-2_0.72-3_1.29",
+          "334_l_0_r-0_1.22-1_1.12-2_0.0-3_0.3",
+          "335_l_0_r-0_0.98-1_1.18-2_1.75-3_0.04",
+          "336_l_0_r-0_0.38-1_0.07-2_1.0-3_0.88",
+          "337_l_0_r-0_0.11-1_1.43-2_1.12-3_0.64",
+          "338_l_0_r-0_0.84-1_0.93-2_0.04-3_0.27",
+          "339_l_0_r-0_0.93-1_0.25-2_0.06-3_0.44",
+          "340_l_0_r-0_1.28-1_2.22-2_0.4-3_0.68",
+          "341_l_0_r-0_0.18-1_0.32-2_0.67-3_0.18",
+          "342_l_0_r-0_0.08-1_1.23-2_0.18-3_0.85",
+          "343_l_0_r-0_0.23-1_1.24-2_0.82-3_0.97",
+          "344_l_0_r-0_0.21-1_0.58-2_0.09-3_1.16",
+          "345_l_0_r-0_0.1-1_1.2-2_0.08-3_0.48",
+          "346_l_0_r-0_0.12-1_0.67-2_2.58-3_0.04",
+          "347_l_0_r-0_1.23-1_1.95-2_0.25-3_0.45",
+          "348_l_0_r-0_1.07-1_0.72-2_0.64-3_2.11",
+          "349_l_0_r-0_1.11-1_0.0-2_1.97-3_1.2",
+          "350_l_0_r-0_0.23-1_0.35-2_0.09-3_0.48",
+          "351_l_0_r-0_1.47-1_1.03-2_0.52-3_0.24",
+          "352_l_0_r-0_0.62-1_0.55-2_0.37-3_0.91",
+          "353_l_0_r-0_0.37-1_0.64-2_0.98-3_1.32",
+          "354_l_0_r-0_0.46-1_0.47-2_0.24-3_1.16",
+          "355_l_0_r-0_0.77-1_1.21-2_0.65-3_0.65",
+          "356_l_0_r-0_1.56-1_0.53-2_0.21-3_0.16",
+          "357_l_0_r-0_0.91-1_0.03-2_0.22-3_0.44",
+          "358_l_0_r-0_0.22-1_1.31-2_0.67-3_0.07",
+          "359_l_0_r-0_0.24-1_0.75-2_0.64-3_1.0",
+          "360_l_0_r-0_2.34-1_0.38-2_0.15-3_0.53",
+          "361_l_0_r-0_0.28-1_0.07-2_0.79-3_0.62",
+          "362_l_0_r-0_0.6-1_1.18-2_0.0-3_0.28",
+          "363_l_0_r-0_0.67-1_0.7-2_0.34-3_0.83",
+          "364_l_0_r-0_2.0-1_1.08-2_0.52-3_0.27",
+          "365_l_0_r-0_0.45-1_0.96-2_0.98-3_0.78",
+          "366_l_0_r-0_0.38-1_0.5-2_0.26-3_0.24",
+          "367_l_0_r-0_0.05-1_0.68-2_1.12-3_1.55",
+          "368_l_0_r-0_0.28-1_1.87-2_1.34-3_0.81",
+          "369_l_0_r-0_0.79-1_1.15-2_0.03-3_1.05",
+          "370_l_0_r-0_1.78-1_1.02-2_0.55-3_1.19",
+          "371_l_0_r-0_1.59-1_0.6-2_0.19-3_0.01",
+          "372_l_0_r-0_0.87-1_0.09-2_1.81-3_0.8",
+          "373_l_0_r-0_0.29-1_0.54-2_0.74-3_0.41",
+          "374_l_0_r-0_0.63-1_0.43-2_0.1-3_1.03",
+          "375_l_0_r-0_0.64-1_0.28-2_0.03-3_0.5",
+          "376_l_0_r-0_0.5-1_0.19-2_0.89-3_0.98",
+          "377_l_0_r-0_0.49-1_0.72-2_1.25-3_0.19",
+          "378_l_0_r-0_1.26-1_1.42-2_0.83-3_0.58",
+          "379_l_0_r-0_0.22-1_0.09-2_0.6-3_1.49",
+          "380_l_0_r-0_1.6-1_0.19-2_0.58-3_0.69",
+          "381_l_0_r-0_0.74-1_0.57-2_1.36-3_0.71",
+          "382_l_0_r-0_0.11-1_1.37-2_0.51-3_0.47",
+          "383_l_0_r-0_0.61-1_0.42-2_1.39-3_0.86",
+          "384_l_0_r-0_0.6-1_1.28-2_2.13-3_1.82",
+          "385_l_0_r-0_0.69-1_0.48-2_1.09-3_1.27",
+          "386_l_0_r-0_0.21-1_0.59-2_0.88-3_1.15",
+          "387_l_0_r-0_0.45-1_0.56-2_0.28-3_0.81",
+          "388_l_0_r-0_0.71-1_0.32-2_1.26-3_0.5",
+          "389_l_0_r-0_0.28-1_0.09-2_0.14-3_1.13",
+          "390_l_0_r-0_0.19-1_0.1-2_1.26-3_1.93",
+          "391_l_0_r-0_0.44-1_0.87-2_0.66-3_0.16",
+          "392_l_0_r-0_0.42-1_0.77-2_1.21-3_0.81",
+          "393_l_0_r-0_0.77-1_0.42-2_1.17-3_0.3",
+          "394_l_0_r-0_1.23-1_0.12-2_0.76-3_0.57",
+          "395_l_0_r-0_0.48-1_0.45-2_1.65-3_0.93",
+          "396_l_0_r-0_0.09-1_0.27-2_0.35-3_1.99",
+          "397_l_0_r-0_0.31-1_0.38-2_0.08-3_0.38",
+          "398_l_0_r-0_1.35-1_0.59-2_0.83-3_0.74",
+          "399_l_0_r-0_1.33-1_0.79-2_0.09-3_1.42",
+          "400_l_0_r-0_0.56-1_1.62-2_0.16-3_0.54",
+          "401_l_0_r-0_0.2-1_1.62-2_2.07-3_0.41",
+          "402_l_0_r-0_0.08-1_1.23-2_0.59-3_1.14",
+          "403_l_0_r-0_0.57-1_0.79-2_0.22-3_0.61",
+          "404_l_0_r-0_1.08-1_1.36-2_1.11-3_0.64",
+          "405_l_0_r-0_0.77-1_0.62-2_1.92-3_0.45",
+          "406_l_0_r-0_0.73-1_1.0-2_0.29-3_0.34",
+          "407_l_0_r-0_0.16-1_0.26-2_0.39-3_1.25",
+          "408_l_0_r-0_1.44-1_1.37-2_0.1-3_1.81",
+          "409_l_0_r-0_0.03-1_0.12-2_1.26-3_0.41",
+          "410_l_0_r-0_0.81-1_0.09-2_1.15-3_0.77",
+          "411_l_0_r-0_0.42-1_0.12-2_0.45-3_0.68",
+          "412_l_0_r-0_1.38-1_0.99-2_0.84-3_0.74",
+          "413_l_0_r-0_0.07-1_0.7-2_1.3-3_0.32",
+          "414_l_0_r-0_0.97-1_0.05-2_0.2-3_0.52",
+          "415_l_0_r-0_0.74-1_0.25-2_1.57-3_1.01",
+          "416_l_0_r-0_0.74-1_1.77-2_2.09-3_0.76",
+          "417_l_0_r-0_0.5-1_0.98-2_0.11-3_0.06",
+          "418_l_0_r-0_1.33-1_0.1-2_0.94-3_0.7",
+          "419_l_0_r-0_1.12-1_0.54-2_0.09-3_0.14",
+          "420_l_0_r-0_0.58-1_0.53-2_0.25-3_0.76",
+          "421_l_0_r-0_0.67-1_0.56-2_0.82-3_0.69",
+          "422_l_0_r-0_0.3-1_0.23-2_1.06-3_0.22",
+          "423_l_0_r-0_0.46-1_0.88-2_0.54-3_0.19",
+          "424_l_0_r-0_0.68-1_0.72-2_0.3-3_0.05",
+          "425_l_0_r-0_1.8-1_0.57-2_0.4-3_0.54",
+          "426_l_0_r-0_1.66-1_0.42-2_1.07-3_1.17",
+          "427_l_0_r-0_0.28-1_1.09-2_1.67-3_0.44",
+          "428_l_0_r-0_0.97-1_0.91-2_0.93-3_0.17",
+          "429_l_0_r-0_0.39-1_0.74-2_0.41-3_1.48",
+          "430_l_0_r-0_0.14-1_1.1-2_0.1-3_0.18",
+          "431_l_0_r-0_0.21-1_0.67-2_0.84-3_0.98",
+          "432_l_0_r-0_0.45-1_0.37-2_2.15-3_1.28",
+          "433_l_0_r-0_0.63-1_0.27-2_1.14-3_0.74",
+          "434_l_0_r-0_2.05-1_1.55-2_1.38-3_0.66",
+          "435_l_0_r-0_0.56-1_1.1-2_2.06-3_1.01",
+          "436_l_0_r-0_0.35-1_0.19-2_1.68-3_0.07",
+          "437_l_0_r-0_1.14-1_0.09-2_0.13-3_1.67",
+          "438_l_0_r-0_0.93-1_0.97-2_0.1-3_0.51",
+          "439_l_0_r-0_0.1-1_0.47-2_0.26-3_1.0",
+          "440_l_0_r-0_0.6-1_1.74-2_0.89-3_1.37",
+          "441_l_0_r-0_0.93-1_0.67-2_0.6-3_0.18",
+          "442_l_0_r-0_1.42-1_0.52-2_0.7-3_0.16",
+          "443_l_0_r-0_1.74-1_0.66-2_0.93-3_1.04",
+          "444_l_0_r-0_0.49-1_0.26-2_0.22-3_1.12",
+          "445_l_0_r-0_1.27-1_0.3-2_1.52-3_2.28",
+          "446_l_0_r-0_0.11-1_0.01-2_0.38-3_0.69",
+          "447_l_0_r-0_1.4-1_0.74-2_0.39-3_0.12",
+          "448_l_0_r-0_0.68-1_0.55-2_0.11-3_0.01",
+          "449_l_0_r-0_0.98-1_0.85-2_2.3-3_0.91",
+          "450_l_0_r-0_1.05-1_0.17-2_2.15-3_0.37",
+          "451_l_0_r-0_0.41-1_2.16-2_0.62-3_0.07",
+          "452_l_0_r-0_0.6-1_0.34-2_1.21-3_1.22",
+          "453_l_0_r-0_0.36-1_0.45-2_0.64-3_1.11",
+          "454_l_0_r-0_0.46-1_0.14-2_0.77-3_0.57",
+          "455_l_0_r-0_1.37-1_0.41-2_1.35-3_0.08",
+          "456_l_0_r-0_0.22-1_0.44-2_0.8-3_0.0",
+          "457_l_0_r-0_0.39-1_0.51-2_0.62-3_0.03",
+          "458_l_0_r-0_1.73-1_1.12-2_0.54-3_0.34",
+          "459_l_0_r-0_0.35-1_0.3-2_0.05-3_1.08",
+          "460_l_0_r-0_0.25-1_0.35-2_2.11-3_0.13",
+          "461_l_0_r-0_0.14-1_0.54-2_0.84-3_1.53",
+          "462_l_0_r-0_0.26-1_0.47-2_1.96-3_1.54",
+          "463_l_0_r-0_0.85-1_0.52-2_0.76-3_0.56",
+          "464_l_0_r-0_1.07-1_0.65-2_0.76-3_1.28",
+          "465_l_0_r-0_0.06-1_0.12-2_0.55-3_0.39",
+          "466_l_0_r-0_0.17-1_1.1-2_0.55-3_0.33",
+          "467_l_0_r-0_1.32-1_0.43-2_0.32-3_0.11",
+          "468_l_0_r-0_0.21-1_0.67-2_2.29-3_0.39",
+          "469_l_0_r-0_0.33-1_0.86-2_0.43-3_1.67",
+          "470_l_0_r-0_1.25-1_0.34-2_1.62-3_0.14",
+          "471_l_0_r-0_1.31-1_0.89-2_1.06-3_0.96",
+          "472_l_0_r-0_0.54-1_0.28-2_1.43-3_1.45",
+          "473_l_0_r-0_1.5-1_0.71-2_0.84-3_2.07",
+          "474_l_0_r-0_0.41-1_0.46-2_0.03-3_0.32",
+          "475_l_0_r-0_0.39-1_0.59-2_0.08-3_1.04",
+          "476_l_0_r-0_1.04-1_0.76-2_0.89-3_0.11",
+          "477_l_0_r-0_0.7-1_0.07-2_0.14-3_0.24",
+          "478_l_0_r-0_1.51-1_0.06-2_2.45-3_0.89",
+          "479_l_0_r-0_0.03-1_0.9-2_1.52-3_1.44",
+          "480_l_0_r-0_0.72-1_1.42-2_0.66-3_1.44",
+          "481_l_0_r-0_0.42-1_0.54-2_1.42-3_0.72",
+          "482_l_0_r-0_0.47-1_0.18-2_1.43-3_0.75",
+          "483_l_0_r-0_0.35-1_0.23-2_1.85-3_0.8",
+          "484_l_0_r-0_0.8-1_0.63-2_0.16-3_1.11",
+          "485_l_0_r-0_0.53-1_0.03-2_0.39-3_0.03",
+          "486_l_0_r-0_1.71-1_0.22-2_2.17-3_0.87",
+          "487_l_0_r-0_1.58-1_0.16-2_1.12-3_1.06",
+          "488_l_0_r-0_0.25-1_1.15-2_0.37-3_0.96",
+          "489_l_0_r-0_0.89-1_0.96-2_0.36-3_0.36",
+          "490_l_0_r-0_0.73-1_0.43-2_0.1-3_0.15",
+          "491_l_0_r-0_1.11-1_0.38-2_0.38-3_1.34",
+          "492_l_0_r-0_0.32-1_0.05-2_0.74-3_0.58",
+          "493_l_0_r-0_0.41-1_1.23-2_0.33-3_0.49",
+          "494_l_0_r-0_0.66-1_0.08-2_0.02-3_0.17",
+          "495_l_0_r-0_0.12-1_0.68-2_1.93-3_1.65",
+          "496_l_0_r-0_0.01-1_0.11-2_0.64-3_1.75",
+          "497_l_0_r-0_0.01-1_1.34-2_0.8-3_0.43",
+          "498_l_0_r-0_1.28-1_0.43-2_1.23-3_0.22",
+          "499_l_0_r-0_1.07-1_0.34-2_0.1-3_0.62",
+          "500_l_0_r-0_1.6-1_0.17-2_0.81-3_0.7",
+          "501_l_0_r-0_0.27-1_0.28-2_0.29-3_1.1",
+          "502_l_0_r-0_0.54-1_0.11-2_1.12-3_0.67",
+          "503_l_0_r-0_0.31-1_0.8-2_0.59-3_0.45",
+          "504_l_0_r-0_0.75-1_0.21-2_1.63-3_0.16",
+          "505_l_0_r-0_2.27-1_0.27-2_0.6-3_0.51",
+          "506_l_0_r-0_0.65-1_0.38-2_0.38-3_1.07",
+          "507_l_0_r-0_0.8-1_0.08-2_0.41-3_1.02",
+          "508_l_0_r-0_0.2-1_0.84-2_1.69-3_0.94",
+          "509_l_0_r-0_0.68-1_0.01-2_0.27-3_1.39",
+          "510_l_0_r-0_1.51-1_0.01-2_0.37-3_1.37",
+          "511_l_0_r-0_0.27-1_1.11-2_0.87-3_0.93",
+          "512_l_0_r-0_1.9-1_0.25-2_0.75-3_1.18",
+          "513_l_0_r-0_0.49-1_1.6-2_0.11-3_0.51",
+          "514_l_0_r-0_1.18-1_1.02-2_0.22-3_0.62",
+          "515_l_0_r-0_0.81-1_1.54-2_0.36-3_0.13",
+          "516_l_0_r-0_0.64-1_0.06-2_0.44-3_1.48",
+          "517_l_0_r-0_0.27-1_0.7-2_0.53-3_0.56",
+          "518_l_0_r-0_1.36-1_0.79-2_0.47-3_0.07",
+          "519_l_0_r-0_0.88-1_0.44-2_0.44-3_0.43",
+          "520_l_0_r-0_0.48-1_1.12-2_1.43-3_1.05",
+          "521_l_0_r-0_0.25-1_0.62-2_0.02-3_0.49",
+          "522_l_0_r-0_0.69-1_0.87-2_0.65-3_1.12",
+          "523_l_0_r-0_1.58-1_0.97-2_0.11-3_0.55",
+          "524_l_0_r-0_1.47-1_0.11-2_0.36-3_0.05",
+          "525_l_0_r-0_1.64-1_0.61-2_1.87-3_0.62",
+          "526_l_0_r-0_1.55-1_0.02-2_0.23-3_1.35",
+          "527_l_0_r-0_1.07-1_0.2-2_0.65-3_0.4",
+          "528_l_0_r-0_0.14-1_0.92-2_0.72-3_0.25",
+          "529_l_0_r-0_1.09-1_0.99-2_0.6-3_1.79",
+          "530_l_0_r-0_0.14-1_0.04-2_0.51-3_0.81",
+          "531_l_0_r-0_1.31-1_0.51-2_1.64-3_1.34",
+          "532_l_0_r-0_1.28-1_0.1-2_0.28-3_0.4",
+          "533_l_0_r-0_0.44-1_0.53-2_1.22-3_0.53",
+          "534_l_0_r-0_1.27-1_0.68-2_1.09-3_0.24",
+          "535_l_0_r-0_1.19-1_1.21-2_0.15-3_1.47",
+          "536_l_0_r-0_0.35-1_1.06-2_0.33-3_0.66",
+          "537_l_0_r-0_0.69-1_0.84-2_0.69-3_1.92",
+          "538_l_0_r-0_0.77-1_0.84-2_0.91-3_1.1",
+          "539_l_0_r-0_1.44-1_0.51-2_0.55-3_0.76",
+          "540_l_0_r-0_1.3-1_0.01-2_1.38-3_1.18",
+          "541_l_0_r-0_1.46-1_0.07-2_1.1-3_0.69",
+          "542_l_0_r-0_0.57-1_1.16-2_0.16-3_0.37",
+          "543_l_0_r-0_0.34-1_0.19-2_0.01-3_0.27",
+          "544_l_0_r-0_0.16-1_1.34-2_0.14-3_0.04",
+          "545_l_0_r-0_0.69-1_0.5-2_0.46-3_0.01",
+          "546_l_0_r-0_0.45-1_0.86-2_0.99-3_0.4",
+          "547_l_0_r-0_2.05-1_0.91-2_0.76-3_0.98",
+          "548_l_0_r-0_1.2-1_1.93-2_1.72-3_0.3",
+          "549_l_0_r-0_0.8-1_0.35-2_1.57-3_1.34",
+          "550_l_0_r-0_0.22-1_0.79-2_0.3-3_1.4",
+          "551_l_0_r-0_0.94-1_0.08-2_0.22-3_1.15",
+          "552_l_0_r-0_0.64-1_0.02-2_1.3-3_1.05",
+          "553_l_0_r-0_0.94-1_0.85-2_0.01-3_1.11",
+          "554_l_0_r-0_0.3-1_0.34-2_0.8-3_0.5",
+          "555_l_0_r-0_0.58-1_0.39-2_0.66-3_0.4",
+          "556_l_0_r-0_0.17-1_0.38-2_1.41-3_1.19",
+          "557_l_0_r-0_0.33-1_1.41-2_0.29-3_1.07",
+          "558_l_0_r-0_0.59-1_0.59-2_0.29-3_0.65",
+          "559_l_0_r-0_0.68-1_0.62-2_0.93-3_0.07",
+          "560_l_0_r-0_0.2-1_0.73-2_1.81-3_1.1",
+          "561_l_0_r-0_0.37-1_0.43-2_1.57-3_0.5",
+          "562_l_0_r-0_0.68-1_1.41-2_0.42-3_0.63",
+          "563_l_0_r-0_1.06-1_0.11-2_0.6-3_0.71",
+          "564_l_0_r-0_0.83-1_1.06-2_0.84-3_0.24",
+          "565_l_0_r-0_0.39-1_0.09-2_1.06-3_0.17",
+          "566_l_0_r-0_0.37-1_1.46-2_1.07-3_1.0",
+          "567_l_0_r-0_0.32-1_0.64-2_0.85-3_0.74",
+          "568_l_0_r-0_0.25-1_0.4-2_0.85-3_2.11",
+          "569_l_0_r-0_0.72-1_0.46-2_0.63-3_0.36",
+          "570_l_0_r-0_0.2-1_0.05-2_1.79-3_1.38",
+          "571_l_0_r-0_0.43-1_1.36-2_0.48-3_0.27",
+          "572_l_0_r-0_0.24-1_0.96-2_1.59-3_1.53",
+          "573_l_0_r-0_0.24-1_0.2-2_1.13-3_0.1",
+          "574_l_0_r-0_0.8-1_1.59-2_0.24-3_0.32",
+          "575_l_0_r-0_1.45-1_0.65-2_0.88-3_0.09",
+          "576_l_0_r-0_0.96-1_0.78-2_0.21-3_1.67",
+          "577_l_0_r-0_0.11-1_0.28-2_1.65-3_0.37",
+          "578_l_0_r-0_1.2-1_1.53-2_0.29-3_0.77",
+          "579_l_0_r-0_0.69-1_0.3-2_0.81-3_0.51",
+          "580_l_0_r-0_0.63-1_0.29-2_2.41-3_0.77",
+          "581_l_0_r-0_0.54-1_0.1-2_0.25-3_0.69",
+          "582_l_0_r-0_0.28-1_0.74-2_0.65-3_0.98",
+          "583_l_0_r-0_0.1-1_1.09-2_1.15-3_0.53",
+          "584_l_0_r-0_0.24-1_1.64-2_1.91-3_0.24",
+          "585_l_0_r-0_0.18-1_1.38-2_0.41-3_1.43",
+          "586_l_0_r-0_1.13-1_0.45-2_0.11-3_0.46",
+          "587_l_0_r-0_0.26-1_0.41-2_0.21-3_0.72",
+          "588_l_0_r-0_0.48-1_1.13-2_0.49-3_0.25",
+          "589_l_0_r-0_0.68-1_0.04-2_3.15-3_0.73",
+          "590_l_0_r-0_0.65-1_0.08-2_0.04-3_0.14",
+          "591_l_0_r-0_1.24-1_0.17-2_0.79-3_0.45",
+          "592_l_0_r-0_0.47-1_1.09-2_1.67-3_0.2",
+          "593_l_0_r-0_0.42-1_0.82-2_0.24-3_0.34",
+          "594_l_0_r-0_0.64-1_1.16-2_0.96-3_0.13",
+          "595_l_0_r-0_1.76-1_0.81-2_2.3-3_2.65",
+          "596_l_0_r-0_1.58-1_1.13-2_0.58-3_0.23",
+          "597_l_0_r-0_1.07-1_0.62-2_0.83-3_1.64",
+          "598_l_0_r-0_0.58-1_0.52-2_1.44-3_0.45",
+          "599_l_0_r-0_1.31-1_1.0-2_0.13-3_1.32",
+          "600_l_0_r-0_0.36-1_1.64-2_0.71-3_0.63",
+          "601_l_0_r-0_0.2-1_2.12-2_0.14-3_1.34",
+          "602_l_0_r-0_0.58-1_0.27-2_0.86-3_1.06",
+          "603_l_0_r-0_0.78-1_1.43-2_0.59-3_1.07",
+          "604_l_0_r-0_1.02-1_1.14-2_0.6-3_0.59",
+          "605_l_0_r-0_0.22-1_0.81-2_0.62-3_0.76",
+          "606_l_0_r-0_0.02-1_0.02-2_0.23-3_0.1",
+          "607_l_0_r-0_0.11-1_1.37-2_1.8-3_1.14",
+          "608_l_0_r-0_0.92-1_1.22-2_1.01-3_0.56",
+          "609_l_0_r-0_1.37-1_1.21-2_0.02-3_1.8",
+          "610_l_0_r-0_0.74-1_0.3-2_0.93-3_1.31",
+          "611_l_0_r-0_0.14-1_1.04-2_0.85-3_0.12",
+          "612_l_0_r-0_1.27-1_0.74-2_0.42-3_0.67",
+          "613_l_0_r-0_0.52-1_0.55-2_1.06-3_1.18",
+          "614_l_0_r-0_0.3-1_0.99-2_1.75-3_0.41",
+          "615_l_0_r-0_0.4-1_1.15-2_0.77-3_1.73",
+          "616_l_0_r-0_0.97-1_0.35-2_0.35-3_1.35",
+          "617_l_0_r-0_1.15-1_0.96-2_0.77-3_0.21",
+          "618_l_0_r-0_0.01-1_0.82-2_0.58-3_0.18",
+          "619_l_0_r-0_0.12-1_0.91-2_0.54-3_2.02",
+          "620_l_0_r-0_1.23-1_0.11-2_1.26-3_1.34",
+          "621_l_0_r-0_0.26-1_0.37-2_0.57-3_1.26",
+          "622_l_0_r-0_0.43-1_0.86-2_0.19-3_0.95",
+          "623_l_0_r-0_1.04-1_1.08-2_1.66-3_0.12",
+          "624_l_0_r-0_0.36-1_0.75-2_0.21-3_1.8",
+          "625_l_0_r-0_0.47-1_0.93-2_1.04-3_0.59",
+          "626_l_0_r-0_0.85-1_0.26-2_0.11-3_1.53",
+          "627_l_0_r-0_0.61-1_0.05-2_0.55-3_0.16",
+          "628_l_0_r-0_0.56-1_1.74-2_0.87-3_0.83",
+          "629_l_0_r-0_0.38-1_1.33-2_0.87-3_2.11",
+          "630_l_0_r-0_1.27-1_0.78-2_1.38-3_0.22",
+          "631_l_0_r-0_0.14-1_1.36-2_2.17-3_0.63",
+          "632_l_0_r-0_0.24-1_0.22-2_1.32-3_1.75",
+          "633_l_0_r-0_1.78-1_0.83-2_1.04-3_0.69",
+          "634_l_0_r-0_0.9-1_0.83-2_1.66-3_0.95",
+          "635_l_0_r-0_0.31-1_0.21-2_1.74-3_0.05",
+          "636_l_0_r-0_1.13-1_1.04-2_0.25-3_1.34",
+          "637_l_0_r-0_1.31-1_0.89-2_0.12-3_0.96",
+          "638_l_0_r-0_0.22-1_0.89-2_3.17-3_0.91",
+          "639_l_0_r-0_0.95-1_1.51-2_0.73-3_0.49",
+          "640_l_0_r-0_0.77-1_1.72-2_0.05-3_0.44",
+          "641_l_0_r-0_1.4-1_0.09-2_0.3-3_0.97",
+          "642_l_0_r-0_0.62-1_0.09-2_0.67-3_0.03",
+          "643_l_0_r-0_1.67-1_1.05-2_0.74-3_0.59",
+          "644_l_0_r-0_0.81-1_0.89-2_1.05-3_0.0",
+          "645_l_0_r-0_0.17-1_1.03-2_1.46-3_0.7",
+          "646_l_0_r-0_0.72-1_0.25-2_1.6-3_1.45",
+          "647_l_0_r-0_0.72-1_0.18-2_0.06-3_0.14",
+          "648_l_0_r-0_1.05-1_1.14-2_0.39-3_0.84",
+          "649_l_0_r-0_0.71-1_1.65-2_0.07-3_1.2",
+          "650_l_0_r-0_0.1-1_0.22-2_0.07-3_1.32",
+          "651_l_0_r-0_0.46-1_0.67-2_1.61-3_0.4",
+          "652_l_0_r-0_0.78-1_1.21-2_0.63-3_0.18",
+          "653_l_0_r-0_0.42-1_0.85-2_0.31-3_0.43",
+          "654_l_0_r-0_1.14-1_0.07-2_0.17-3_1.77",
+          "655_l_0_r-0_0.29-1_0.14-2_1.57-3_0.95",
+          "656_l_0_r-0_1.16-1_1.78-2_1.93-3_0.38",
+          "657_l_0_r-0_0.68-1_0.96-2_1.5-3_0.58",
+          "658_l_0_r-0_1.57-1_1.09-2_0.69-3_0.1",
+          "659_l_0_r-0_0.81-1_0.03-2_0.36-3_1.67",
+          "660_l_0_r-0_0.16-1_0.66-2_1.34-3_1.14",
+          "661_l_0_r-0_1.13-1_0.58-2_0.06-3_0.21",
+          "662_l_0_r-0_0.88-1_1.13-2_1.48-3_1.35",
+          "663_l_0_r-0_2.09-1_0.13-2_0.05-3_1.8",
+          "664_l_0_r-0_1.32-1_1.49-2_0.09-3_1.72",
+          "665_l_0_r-0_0.54-1_1.36-2_0.74-3_2.08"
          ],
          "type": "scatter3d",
          "x": [
-          10.493583384217315,
-          8.435245762788558,
-          11.018221087562072,
-          9.98384930841617,
-          -9.626223056098015,
-          9.800673678417196,
-          10.46836842725094,
-          10.634169871290787,
-          8.957678434064926,
-          9.920375946556216,
-          10.34227085978137,
-          9.128527021827733,
-          9.809978312503903,
-          -9.568298536664997,
-          8.725020899342852,
-          10.137647340981824,
-          8.673163843492869,
-          -10.53347312152879,
-          -9.783675334270024,
-          10.46769359687554,
-          8.015408208727276,
-          11.54767378239452,
-          11.25214509955596,
-          -8.175408910115424,
-          11.9355816687068,
-          8.11611235987225,
-          12.271770365694469,
-          9.70701045403196,
-          10.869746597184022,
-          9.431958430540849,
-          10.025720220033541,
-          -10.404308337538952,
-          -9.954018455181131,
-          11.647643019802018,
-          10.12664628802032,
-          8.922895408374325,
-          -8.368354867349193,
-          10.357011329931542,
-          10.468703744678088,
-          10.458823943707113,
-          10.772701081899019,
-          11.289207595194089,
-          -11.144855810158834,
-          -10.926983185789613,
-          9.171477909127075,
-          10.256335924339526,
-          9.374537323401528,
-          10.594329342492262,
-          10.323713282228441,
-          -10.769528783573914,
-          9.104294981947055,
-          10.27881056556834,
-          11.304348700900377,
-          11.096752022505033,
-          11.743575453129022,
-          10.194486486647488,
-          10.457483834242739,
-          9.93332725547926,
-          11.86803273768344,
-          -9.89848808399681,
-          -9.390669502228503,
-          9.296192952247893,
-          -10.197383431942672,
-          10.732499693202918,
-          -9.262533833768497,
-          10.786392297121502,
-          8.896427268940412,
-          10.901946433503728,
-          -11.028127091477778,
-          8.723913720025177,
-          9.785240106096936,
-          -10.745848409516192,
-          10.039879351894237,
-          -10.375158147611467,
-          10.341318148670995,
-          10.524477684879107,
-          9.813415095872726,
-          10.402322226354569,
-          10.230653617549802,
-          9.139601895242151,
-          9.85949903735563,
-          9.716144303623786,
-          8.931897366444284,
-          8.920970390397487,
-          9.598183128816025,
-          9.958995120830197,
-          8.967695923438987,
-          -10.144764471382986,
-          11.236642421205277,
-          10.713160206521602,
-          10.56302846272312,
-          -9.811076572640308,
-          10.20025869962612,
-          9.886923449029705,
-          10.957185914776792,
-          -10.411179310844517,
-          10.2469640847464,
-          -9.415482796828721,
-          10.435007288586066,
-          10.35996937112631,
-          9.199129584132702,
-          8.238192631283729,
-          10.443427042591289,
-          8.910377565120001,
-          9.57324047518301,
-          10.979720938697058,
-          10.632598652969222,
-          9.248683002833642,
-          -9.593113532447342,
-          9.632945843505032,
-          11.035682955447527,
-          10.503940901123183,
-          -10.579830860427954,
-          -9.218802326184473,
-          -11.048414653464711,
-          9.100916668388727,
-          9.268320924039472,
-          10.114887739478057,
-          9.952261480231495,
-          -9.942348710321331,
-          8.846837149631693,
-          10.308388843343513,
-          11.169765452480949,
-          12.246974069734703,
-          9.081837899875094,
-          9.715976964097,
-          9.366640197287804,
-          10.080564072848391,
-          -10.369976402831352,
-          10.326490778340967,
-          -10.249491433180236,
-          10.304492530927066,
-          10.895719333806888,
-          8.529441831640485,
-          10.222315533583716,
-          9.755378038262212,
-          -10.145276371139433,
-          10.357258840813916,
-          9.18716206950141,
-          -10.566369335116649,
-          -11.298793614891634,
-          10.674557598052525,
-          9.349867889733387,
-          -9.5385223896628,
-          10.837393633905059,
-          -8.940724456998058,
-          11.652277872188462,
-          9.227597222530699,
-          9.807838975838584,
-          10.476849687466046,
-          9.881220984965086,
-          9.963569791250666,
-          -10.744657758308161,
-          10.011397273852523,
-          8.055813382217941,
-          9.638603907158503,
-          10.544854621441361,
-          9.042340115822462,
-          -10.638436454419935,
-          8.164378683042022,
-          9.513412433496633,
-          8.60109753948294,
-          11.987615370393424,
-          -10.795492724647916,
-          9.52054658186738,
-          10.67330796481147,
-          10.234615022593392,
-          10.048481824214054,
-          10.992314635928448,
-          10.050356590193404,
-          10.866598715107344,
-          10.332994066182053,
-          9.958706382584985,
-          9.07817953560652,
-          9.017679237200836,
-          -10.840992093345033,
-          8.977399381937568,
-          9.60580165830465,
-          8.709317030736694,
-          10.88468546180995,
-          10.358230057831683,
-          10.963728336383507,
-          -10.633709000721142,
-          10.847355781098079,
-          8.34348505042559,
-          8.451189255347865,
-          9.618304805679696,
-          -10.789972788377508,
-          8.965162886550637,
-          10.418540577734941,
-          9.285205727633324,
-          8.960344195266503,
-          8.259785631865894,
-          9.457045401933987,
-          10.553388188318976,
-          9.081542730435176,
-          10.241997757904285,
-          9.43068639431838,
-          9.284161409366323,
-          9.736773696931948,
-          10.598324179279242,
-          9.594590410464917,
-          10.482595154837599,
-          -11.461216509758342,
-          8.810611168608347,
-          10.475608388386387,
-          -10.018373458381504,
-          9.841121565051138,
-          10.171057032483667,
-          -10.954662894081864,
-          10.808019194333745,
-          -9.948289012721538,
-          10.785656706692667,
-          9.279430852589403,
-          10.261878144338827,
-          10.619540374142485,
-          9.914365794615671,
-          10.48867371205868,
-          8.454758397891458,
-          11.722290929558666,
-          9.001684388606012,
-          10.765579902099715,
-          10.122286512025141,
-          -9.558497896471684,
-          8.90403473445019,
-          9.08486377017999,
-          -10.702921380145169,
-          10.206235647263306,
-          9.034116401743452,
-          8.955402497525657,
-          -9.537230680004182,
-          10.821279033546835,
-          8.095696369228115,
-          -11.7897133888046,
-          -10.19642842759966,
-          10.059991288670696,
-          11.94558763848042,
-          9.237724678680335,
-          10.775490148376921,
-          9.11099253589022,
-          9.193846572075026,
-          10.145329549245304,
-          10.19024591363446,
-          -10.572178901484866,
-          10.387561135856998,
-          11.43635152685226,
-          8.588136317421844,
-          8.667757561809578,
-          10.555159499179592,
-          11.168833607605551,
-          -10.098704241547294,
-          10.615745875759632,
-          10.38493445972786,
-          -10.226028627274966,
-          -9.687836216744836,
-          8.45193257719762,
-          10.55580918476247,
-          10.790531145346499,
-          9.20032889011266,
-          9.207612569747393,
-          9.73517780769721,
-          11.027865208340963,
-          9.055532868594206,
-          -10.263790661958408,
-          -10.802459050066343,
-          11.36671000547758,
-          -8.843211697874004,
-          11.615473362450263,
-          -9.597079751095114,
-          9.640265048124794,
-          10.099758214815905,
-          9.940710674514568,
-          9.832027657813255,
-          -10.764947038918308,
-          8.376427462267928,
-          9.53275055886535,
-          10.242970489449661,
-          9.110927515942077,
-          10.120035448581802,
-          8.887837105881873,
-          8.751754689054463,
-          11.089996235283042,
-          10.307175284389883,
-          10.173666486235977,
-          9.603269505115746,
-          9.422042177147949,
-          8.83975687861723,
-          11.693505553695234,
-          10.349640416460327,
-          -11.187566439693187,
-          -8.19422093408932,
-          -9.28759051328764,
-          9.705946283424835,
-          9.483538204036469,
-          10.162238277527592,
-          10.110068585648348,
-          9.343082047125746,
-          10.703783390885073,
-          11.191571280783037,
-          10.390480570257198,
-          -8.997317363477578,
-          -9.492862314866752,
-          11.198501366750031,
-          9.727827247733634,
-          9.493793344790868,
-          9.013154562374542,
-          -9.887683048527386,
-          -9.641316806568854,
-          7.806848628880576,
-          9.990251237058573,
-          -10.179940361771306,
-          9.366561697369649,
-          -9.660380768040786,
-          -8.538125260832228,
-          -9.786625160217627,
-          -11.427243343483237,
-          10.099101074603013,
-          -9.817316529953366,
-          -10.110241782377498,
-          10.723323224444348,
-          10.424022582944266,
-          11.014533306238649,
-          11.305574689539354,
-          9.55067868091477,
-          10.689474511432559,
-          11.586748970258048,
-          -10.622356355512382,
-          10.823632638556955,
-          9.17634192537118,
-          12.129060937104246,
-          9.72718403908991,
-          -9.963465303741943,
-          -11.228038945338746,
-          9.019036215001787,
-          -11.023031986300529,
-          10.35949163456878,
-          11.65074421395009,
-          -11.705480690602249,
-          10.157443766857137,
-          -11.423847138303973,
-          10.450806739711926,
-          -10.45304189351165,
-          9.399721299669665,
-          -8.772160954367068,
-          -9.135713674677387,
-          -10.468551159766983,
-          7.686176672659016,
-          10.624121985485653,
-          11.960847131070487,
-          9.69772871013701,
-          10.474340196997298,
-          9.802012109878271,
-          9.996480594554606,
-          12.316396228251467,
-          10.169211905280166,
-          11.016787517824037,
-          9.813890324653004,
-          9.129463438366354,
-          9.888707024731966,
-          10.119739701985212,
-          10.719952708612102,
-          9.580831975422562,
-          10.110313426843643,
-          9.003139126027078,
-          -10.744832524265705,
-          8.922499180551828,
-          -9.934553496740941,
-          9.779716713830714,
-          9.70583846302073,
-          -9.474215381992547,
-          10.991744201974397,
-          9.66598538827183,
-          8.77323011754167,
-          9.6535076797085,
-          9.915471381681419,
-          9.322787884125434,
-          10.50409390072532,
-          8.862661953805247,
-          10.431749814485553,
-          8.98805565459869,
-          -10.177545367587932,
-          11.461621467261104,
-          9.581867481088928,
-          11.994067252772577,
-          10.2678979881848,
-          12.154410373034805,
-          -9.865455522730684,
-          8.944754076947174,
-          9.109276505116586,
-          9.617578650313016,
-          11.115666795215523,
-          10.36505379883792,
-          11.484462991463413,
-          9.532667723791294,
-          10.33215735178506,
-          -8.90630181614699,
-          9.147493539712734,
-          9.714817545195238,
-          11.586527420735305,
-          10.170398335999742,
-          11.834529328266855,
-          11.264943276081318,
-          10.761329191083295,
-          10.282107193625498,
-          9.354457717678537,
-          11.371105426452704,
-          10.6422482521583,
-          9.722250526757348,
-          9.477758795792491,
-          10.913734551823948,
-          9.920793429937886,
-          10.623466114955692,
-          9.510403538566882,
-          8.881210258459122,
-          10.14000334502986,
-          11.309083635206678,
-          9.177933254772844,
-          11.363584614586392,
-          7.982314190923963,
-          10.174615706813507,
-          9.60050047243427,
-          11.334505046266239,
-          -9.664464590045462,
-          9.159112765486482,
-          9.420507151865081,
-          10.893199740705002,
-          -10.884699626860554,
-          8.80203123678484,
-          9.735938447135322,
-          9.821835233213449,
-          9.247505439724966,
-          -10.327502574758016,
-          7.622445997225245,
-          10.578156707198312,
-          -10.999353332615787,
-          -9.799760227028003,
-          11.215023631491201,
-          10.111326519548863,
-          8.767877722712202,
-          -10.710753327692233,
-          9.669345755193785,
-          10.789910166100489,
-          9.481006126206982,
-          12.063836592912455,
-          10.90757434053646,
-          11.362913827042739,
-          -10.672584715168233,
-          11.095099013101933,
-          9.857709836220165,
-          -8.272322877746133,
-          10.066137959974888,
-          10.636796488242991,
-          9.601017091762625,
-          9.826012065855846,
-          9.931894839935904,
-          9.019421777006638,
-          9.466311902786886,
-          10.735224263817177,
-          9.534560590054182,
-          9.045735053494871,
-          9.71478516309762,
-          10.866296467091239,
-          7.966300782359443,
-          10.643298030918157,
-          8.92628351329698,
-          9.820986108555031,
-          -11.204628385193152,
-          9.130418108362946,
-          9.83518989878631,
-          11.120211638402456,
-          8.061683388059446,
-          10.171023889719157,
-          8.642276908770427,
-          9.57856574502697,
-          9.985324960409054,
-          9.834969305544277,
-          10.358808446194153,
-          11.304797143028388,
-          -9.713281734759565,
-          10.476895368397205,
-          9.433698955094867,
-          9.185636736098035,
-          10.072047059428238,
-          -11.47888703638745,
-          10.306840566541762,
-          -11.072715364462953,
-          -10.740811715232345,
-          9.256331569097311,
-          12.137254529328981,
-          10.129911007682624,
-          9.08494431700812,
-          -10.920919388255408,
-          9.242558615063183,
-          10.722321615296968,
-          8.92235296448255,
-          10.721608675001498,
-          10.82218395226493,
-          9.960695652643206,
-          8.532172321655894,
-          9.055113977662662,
-          -9.417641513864766,
-          9.441895806947283,
-          9.898914647715415,
-          -9.785235746408965,
-          9.838156681658155,
-          8.692617533883778,
-          -9.686468035839148,
-          8.476369275619744,
-          10.699874492118614,
-          11.091896428160371,
-          9.764332361992958,
-          9.98844179118699,
-          8.78270654963136,
-          9.057000654963415,
-          8.923079145894814,
-          11.572471719086673,
-          -10.549686518540435,
-          8.339251816901808,
-          10.864593802067697,
-          10.425203435355645,
-          -10.828208387700718,
-          9.737372141165727,
-          9.395357722656064,
-          10.926061257176208,
-          -8.888772540634372,
-          10.070265127587723,
-          9.767806974688073,
-          10.07544884479758,
-          9.313641106652168,
-          -10.601224805266813,
-          8.956007733869436,
-          9.079994137730928,
-          9.793131784738776,
-          10.054596530150452,
-          9.76795814140496,
-          9.009506163870265,
-          11.09519779057868,
-          9.063673991504633,
-          10.451911923227017,
-          11.103871740961429,
-          9.505954308039437,
-          8.138830357983235,
-          10.452230165072667,
-          -9.891626180663492,
-          10.550748784271084,
-          10.942814329171684,
-          10.502469307290585,
-          -10.491090867593353,
-          10.092927093576954,
-          8.569747687983664,
-          8.972715414675664,
-          10.257597820099353,
-          9.468114782058882,
-          9.66744338398079,
-          10.33667632574524,
-          -10.3495235798795,
-          10.434192934400338,
-          10.321045196162247,
-          11.012565105927509,
-          9.750153813689966,
-          10.543081763162727,
-          -11.358672014941654,
-          9.629914350602126,
-          10.236795833009326,
-          9.35543627655308,
-          9.931529490177093,
-          9.992977961488249,
-          9.950907106462628,
-          11.387446712940221,
-          11.367833918095704,
-          -9.614161763788605,
-          9.680557084020958,
-          -9.667487318756555,
-          9.455771125764045,
-          9.120848472687143,
-          9.444253907932227,
-          10.009639016034717,
-          9.535454870153828,
-          10.031408847913223,
-          -8.875848246366395,
-          9.966442812946662,
-          10.961845137177276,
-          -9.73063130296495,
-          10.98503544274226,
-          9.280282208543957,
-          9.646841221649595,
-          12.011039065275167,
-          10.027173342855015,
-          9.920311359151594,
-          -9.745539841017159,
-          -10.067225726767935,
-          -9.847391698568705,
-          10.332904306047435,
-          8.91014998435432,
-          8.990074034035361,
-          9.08647344087111,
-          9.07316135440753,
-          10.394630336615386,
-          10.211662013496504,
-          9.5852193342698,
-          11.423222515312208,
-          10.31785748321525,
-          10.084393275955676,
-          9.190623855919558,
-          9.88443099333424,
-          -11.037829590369336,
-          -9.87010803547558,
-          7.570245059305382,
-          8.424774524000277,
-          10.56531002664512,
-          9.451992902689724,
-          9.97003928334207,
-          9.991765582028291,
-          9.11789386498952,
-          8.008778209513965,
-          10.085565627167266,
-          8.656118101150593,
-          9.394462931575116,
-          10.025807538278281,
-          10.861470884931332,
-          11.560609657358686,
-          12.22018313866773,
-          12.574991111210238,
-          -10.992896716514274,
-          10.466908279588736,
-          10.644761209841217,
-          -9.215314266750289,
-          -9.586983639480811,
-          9.631969704970368,
-          9.119249881313808,
-          9.822476419755505,
-          11.306083243389539,
-          9.0436827554406,
-          -10.967917594705822,
-          10.117340691695846,
-          10.891289437185689,
-          11.76992441425761,
-          10.848835872395322,
-          -11.628480303229658,
-          10.264625479200632,
-          -9.817901712349274,
-          -9.721861566198951,
-          -9.773713553363642,
-          10.32301169863635,
-          10.69901386318484,
-          9.720789983121705,
-          10.49591622040179,
-          -10.595717548744426,
-          11.422620239180429,
-          9.505976914635173,
-          9.735142770032583,
-          8.899767236815581,
-          9.847464729035131,
-          10.783907620789803,
-          11.972002079568146,
-          9.340830243415986,
-          10.847558472032139,
-          10.083693677962833,
-          9.85582912022954,
-          9.632956624356055,
-          9.400207173649855,
-          11.005519455705585,
-          -10.930367153300406,
-          -10.869634493619898,
-          -9.322139389217716,
-          10.959988119796378
+          0.19048616007432573,
+          -0.48712154759246296,
+          0.575986146640187,
+          0.10008741933494592,
+          0.24320042519474705,
+          0.334980290923504,
+          -0.5217742368689331,
+          -1.0383995665934296,
+          -1.463825530539814,
+          -1.875141617009167,
+          -2.4749741631607973,
+          -1.0774942583230658,
+          -2.505496001903257,
+          -0.933029043721979,
+          -1.2609916708075497,
+          -0.44184305391275724,
+          -1.7495039559047876,
+          -1.0494520725405203,
+          -1.2057047733289687,
+          -0.996679192648788,
+          -1.9015225951945576,
+          -0.4753930555135746,
+          -2.2556523513696805,
+          -1.5480949732012363,
+          1.4354692366773092,
+          0.19786504167126373,
+          -1.2421612785301586,
+          -1.536428536302566,
+          0.04447693293637145,
+          -1.8727154596467244,
+          0.5530058481357416,
+          1.0012120854288282,
+          -0.6271924077958511,
+          -0.5166513065446554,
+          0.5701520736100745,
+          -0.5194164836060842,
+          -1.462367554756468,
+          -2.8724017105350548,
+          -1.9372530018901553,
+          -2.009001768996929,
+          0.5333153382338727,
+          -1.5086874725799948,
+          -2.2107721295019775,
+          -1.7893427326235822,
+          -0.8543206476364374,
+          -0.805627917086412,
+          0.8766197476668325,
+          -2.0065653964552905,
+          0.020425374337353475,
+          0.40210206967366746,
+          -0.8544994848093721,
+          -1.2401109595877728,
+          0.6660823208031819,
+          -2.004010985026614,
+          -1.3582156924254492,
+          -2.1615588216798445,
+          -0.40094009356470117,
+          0.14629064551185778,
+          0.46344367488115545,
+          -0.17322540312601975,
+          0.04129669292631788,
+          -1.0333433210001288,
+          -0.8784035127751099,
+          0.3833662818254653,
+          1.0703303920000953,
+          -0.39129799226907847,
+          0.11027280825423436,
+          1.2255033561830757,
+          -1.3925588535828513,
+          0.25171238680215624,
+          0.6010743698397014,
+          -0.5427586524146468,
+          0.39003282872359435,
+          0.016373760125769632,
+          -1.5675031712001504,
+          -1.3691894641960107,
+          -0.6356511780459421,
+          -1.0614886549478464,
+          0.11169350342206985,
+          -0.9416520227249521,
+          -0.47256757570808705,
+          0.09662199167059193,
+          -0.14957409903212837,
+          -3.488103770159715,
+          0.7278813777986468,
+          -1.4048123564558739,
+          -1.6384871785143256,
+          0.6155877285355855,
+          -0.706666911054535,
+          -0.4256461287435429,
+          0.03960180713544337,
+          -1.9215853324728982,
+          -1.5827642421068076,
+          0.017834085342552264,
+          -0.8570814840419144,
+          -0.6945535757432738,
+          -1.5561213543028436,
+          0.9936972240780264,
+          -2.109692509544974,
+          -3.1641321646311744,
+          0.6341127339079897,
+          -0.9058609959170335,
+          -2.487103622976711,
+          -1.5449229994241145,
+          0.18381393456827055,
+          -0.8115830230830156,
+          -2.8532391974538553,
+          -0.8782577265712516,
+          1.0427999101888479,
+          0.7262173284929647,
+          -0.3964408535092261,
+          -1.2630330686462699,
+          -0.4639253513995719,
+          -2.071636529183412,
+          -1.0931682264384577,
+          -0.3338355559123328,
+          -1.0730536938875788,
+          0.29476627333138095,
+          -0.0059489535851443565,
+          -1.593732852869402,
+          2.2597016071796037,
+          -1.4735671685262668,
+          -1.0185014815745286,
+          0.3955856279069112,
+          -0.6337784854054254,
+          0.20256254364096282,
+          -0.3313361889190738,
+          -0.8465334209644271,
+          -2.4992294023332207,
+          -1.7858868199116684,
+          -1.8784487258538327,
+          0.25948248379716654,
+          0.1374022332614322,
+          0.9623012703445322,
+          -2.3989518352014967,
+          0.05350160260132686,
+          0.3338993446564136,
+          0.09577134192227388,
+          -0.09837277629746755,
+          0.6931629613926404,
+          0.14268415898870623,
+          -2.213360395195018,
+          -0.9322333669126939,
+          -2.7816345414780255,
+          -1.638684186500774,
+          0.7046585874737348,
+          -1.0485379141612525,
+          -2.920931171250106,
+          0.5037867628229302,
+          0.28367572376916517,
+          -1.1138886637736491,
+          -0.8335470429250543,
+          -1.4264071628448658,
+          -0.07867366465644199,
+          -1.8306469217756518,
+          0.018111616725764224,
+          -1.282259315183242,
+          -2.9430351459972357,
+          -0.4640844685774371,
+          -1.36929208624643,
+          1.482945819101201,
+          0.24318289844347518,
+          -2.0953641738270274,
+          0.10304044813902502,
+          0.24074964037776891,
+          -0.7127133436037509,
+          -0.9571853386152049,
+          -1.2557513105229017,
+          -0.7088096229936536,
+          -1.3867643229042579,
+          -1.5558092970097612,
+          0.1991083586991378,
+          0.11820869825521951,
+          0.41575601137121754,
+          -2.3708270589989455,
+          0.3746416909306458,
+          0.0771917481265405,
+          0.05300627048104056,
+          -0.6005496074982171,
+          -1.9495693922448276,
+          0.6005045722522284,
+          0.21219771328786075,
+          -1.0992002717888767,
+          -1.139002413661855,
+          0.7009917696564651,
+          0.8318574248669126,
+          -2.6954803990000515,
+          -1.3269114072423296,
+          -1.0721295625409362,
+          0.6648779535781035,
+          -0.8450331255457939,
+          -1.6479670402506144,
+          0.29520425197521427,
+          1.1593869896356428,
+          -0.2562473538631652,
+          0.30963430475884857,
+          0.3133413796001927,
+          0.8020511806847499,
+          -2.009333516716911,
+          0.30479133705212114,
+          -0.16914020333297608,
+          -0.604839501428462,
+          -1.2171154842227956,
+          0.09793543454475495,
+          -0.9115798506760413,
+          1.7760357146597983,
+          -1.4581661414438287,
+          0.3771240981012902,
+          -3.2930071598211583,
+          -1.2407191772975747,
+          -0.09686727118572946,
+          0.33911929590702417,
+          -0.8000153235345928,
+          -1.4558302227352404,
+          -0.06694273928683914,
+          1.4663198022525528,
+          0.2694190438562316,
+          0.05644899074732068,
+          -1.8953721724210297,
+          -2.0135632621324016,
+          0.435740359372643,
+          0.41306456185902074,
+          -2.0753170760425492,
+          0.03946819955998482,
+          0.07949501255825275,
+          -1.101306372840006,
+          -0.8627899952737256,
+          1.1995644652227693,
+          1.2228122561800325,
+          0.32454616620075827,
+          -2.052751076494766,
+          0.9704341396690837,
+          0.024373619758305987,
+          -0.20739411061069912,
+          -1.2290259813266329,
+          0.30377783711442774,
+          0.968948015968766,
+          0.19679857520114363,
+          -1.3643935144428412,
+          -0.43106802221562157,
+          -0.153831339354901,
+          -2.2877846292195763,
+          -0.4774256982339624,
+          0.06446256224511004,
+          0.1590200420239578,
+          0.14809141037431073,
+          -2.740919740406391,
+          -1.68785313116018,
+          -0.7691836385332133,
+          -1.5991822169621326,
+          -3.278364298516936,
+          1.3093366509011064,
+          0.8993474702819921,
+          -0.5932198707982539,
+          -1.4687215682199006,
+          0.010591912902250478,
+          -0.3456512271594605,
+          0.10105754790089216,
+          -1.708161595899094,
+          -0.34590500738107177,
+          0.0059216776225394785,
+          -1.9538404232676387,
+          -0.5623702410130904,
+          -0.5115119127187775,
+          0.24847056482843533,
+          0.03589788772276714,
+          -1.5231975418503991,
+          0.021068152869207157,
+          -2.7986634313908265,
+          0.8110809519315905,
+          -0.4563820547497217,
+          1.4782943572027767,
+          0.033788864387920725,
+          1.0135411061248774,
+          -2.0684210601417856,
+          -0.38074201422287146,
+          0.7911684698565575,
+          -2.480710447152739,
+          -0.15795288231278715,
+          0.13181025784674083,
+          -1.4289487260902178,
+          -0.88499399881459,
+          -1.1228037493443919,
+          0.6139793597609617,
+          0.09828944980042986,
+          -0.038868578146250665,
+          -1.343410050958308,
+          0.6308207702858999,
+          -0.41772183743905456,
+          -2.516225400331002,
+          -0.8127831545493769,
+          0.8569456032416922,
+          -1.3072183673257947,
+          -0.8012175572131488,
+          -0.3482319261853116,
+          -2.281594145455001,
+          -1.0400384751095195,
+          -1.0197502548557689,
+          -0.2551979019483297,
+          -1.8409864902172457,
+          -2.6035250972032786,
+          -1.4210703672493565,
+          -0.98437722342039,
+          -1.0974704020602548,
+          -3.7960441259680566,
+          -1.3428131735800948,
+          -2.1805644277043257,
+          -0.35070085623826297,
+          -1.9358808940759284,
+          -1.1642887304429868,
+          -2.950010599149596,
+          -2.522948033033504,
+          -1.166489128307056,
+          -1.03327702608129,
+          -0.7947150582325209,
+          -0.8349122962896542,
+          -2.645156627137812,
+          -3.3711252925289137,
+          -1.9313378918030741,
+          -0.5808472943439167,
+          -0.15636234921255987,
+          -1.3551544834199976,
+          -2.1089661275241838,
+          -1.3414282615144555,
+          -0.9205027210397779,
+          -0.16763237351010363,
+          -0.9424180971316384,
+          -0.5754533187718169,
+          -0.794608422099208,
+          -1.4334753607131303,
+          -2.1286377961823972,
+          -0.28630975792387714,
+          -1.4712865792788365,
+          -1.2881370961028709,
+          -1.5998364323225784,
+          -1.5921748844670627,
+          -0.9819450798152697,
+          -2.41866227227886,
+          -0.2730601521754614,
+          -0.4441406015600954,
+          -1.4327446254344733,
+          -0.18020131829250663,
+          -2.699958434169506,
+          -0.9658403194417454,
+          -1.162961753747148,
+          -0.48045298003649406,
+          -0.9189514035649162,
+          -0.45093342643738354,
+          -2.1069337381644306,
+          -2.1278871221913676,
+          -0.7022654837245534,
+          -0.29446949945058054,
+          -0.9101532080866898,
+          -2.5143738027958062,
+          -1.6863073591309652,
+          -1.6890605988032235,
+          -0.16095350380609807,
+          -0.44008929442443945,
+          -2.757040253857679,
+          -1.0016805730660325,
+          -0.5298937987787042,
+          -3.2336450455981316,
+          -2.5021502504222584,
+          -0.8278688700088593,
+          -0.2737516449993934,
+          -0.7772137094217515,
+          -0.23731958818190313,
+          -1.5548677775860076,
+          -0.8123564910745897,
+          -1.0538056345843354,
+          -2.044627342471587,
+          -1.6020765461083823,
+          -0.8027060229074692,
+          -1.8963627940996677,
+          -1.026829733387945,
+          -0.5010046443578543,
+          -0.9800552067714299,
+          -0.4940718393822169,
+          -1.340762722704505,
+          -1.4894078752045918,
+          -1.8205080901207165,
+          -0.9623800143408336,
+          -0.4720010066054803,
+          -0.8605017214505082,
+          -1.8894752441715084,
+          -1.2743798983051149,
+          -1.687882900812669,
+          -1.0601918697910069,
+          -0.4964620978564692,
+          -1.1480188181950024,
+          -2.1725992176194624,
+          -0.1590183590002413,
+          -0.8069078500953097,
+          -1.7114516891754454,
+          -1.1602345415504025,
+          -0.9315122510119798,
+          -1.9854970759097492,
+          -0.6213841179266006,
+          -1.8129457284411394,
+          -1.4214893315141706,
+          -2.999378248803221,
+          -0.4094583316073923,
+          -1.1423448270062246,
+          -2.4333915202343457,
+          -0.644738250962916,
+          -0.4533764296201851,
+          -0.33786647733421493,
+          -1.65908889028186,
+          -3.022754181739844,
+          -0.4137990304096004,
+          -1.0849605064913854,
+          -1.811397865343726,
+          -0.7401466908344623,
+          -2.3039415102301954,
+          -0.5178135115686273,
+          -2.1688448989693923,
+          -0.7613426557991715,
+          -2.6992854473757664,
+          -2.216801625661181,
+          -0.7818185201052346,
+          -0.7562815252392676,
+          -1.7048628031000468,
+          -0.2231788881777469,
+          -2.7874438910287327,
+          -0.6894385677471155,
+          -1.5512517054635002,
+          -2.5554340655315517,
+          -1.9373589554565984,
+          -1.313334540375199,
+          -2.369309013283134,
+          -0.17836209795712643,
+          -1.87316777668589,
+          -1.2757968568649751,
+          -1.1196880179734567,
+          -0.6616287269388117,
+          -1.0090125067974436,
+          -0.306025639591075,
+          -1.6703579492711216,
+          -1.3034408308739793,
+          -1.552605279534299,
+          -1.9525480306709755,
+          -1.980109404964494,
+          -1.697623001339228,
+          -1.7450327424529795,
+          -1.499491617573354,
+          -2.2791246503405533,
+          -2.078598682427298,
+          -0.12189006337176289,
+          -1.6216520507480259,
+          -0.9050762553198751,
+          -1.1203413652128815,
+          -3.9366877824184936,
+          -2.4941981356034773,
+          -1.1111884364692306,
+          -1.6265947438469839,
+          -0.0769160179681202,
+          -0.8834596460260795,
+          -0.02699823041678262,
+          -1.2495563295256815,
+          -2.886163074931103,
+          -1.9718986877380358,
+          -1.7241614457110588,
+          -1.5365146980498574,
+          -1.7638150192085424,
+          -1.3622935038502884,
+          -1.7881617640186365,
+          -2.993151550670876,
+          -1.796864143788376,
+          -0.38731109706406164,
+          -2.003227995465366,
+          -2.5161142416356577,
+          -0.9629905677330427,
+          -2.161695857407249,
+          -2.610603221354209,
+          -0.32376850015189085,
+          -1.0400712041806672,
+          -0.10805615121340262,
+          -1.2259096572308474,
+          -1.583272235627963,
+          -1.5230748987019174,
+          -1.6791041514035507,
+          -0.7151930210471142,
+          -0.9975085118069231,
+          -1.7037921707039465,
+          -1.1054933206349333,
+          -0.030319337918645495,
+          -1.0987515594630384,
+          -1.0619655097466096,
+          -1.0881174182896602,
+          -0.3614325307622349,
+          -0.14604099092700717,
+          -1.6190351049158518,
+          -0.5794176322016173,
+          -0.49197672906647016,
+          -1.0195567394115603,
+          -2.629825409246388,
+          -2.9007317968436963,
+          -1.34882056617116,
+          -0.22064451800474594,
+          -0.6162676417926807,
+          -0.7023706632237916,
+          -1.1015899292504612,
+          -1.0914349731264072,
+          -1.2782125574529903,
+          -1.5980889419635669,
+          -3.2148302531967654,
+          -1.889089872999369,
+          -1.5517087418758357,
+          -1.4253863681469325,
+          -2.1736070829291103,
+          -1.3712108557729972,
+          -2.7195376127993525,
+          -1.1796716719906488,
+          -0.5061895245753966,
+          -1.5895653431902723,
+          -2.0507111221508283,
+          -1.476200474170196,
+          -0.5607974576677801,
+          -2.706293027791611,
+          -2.241372167343551,
+          -2.408994512625916,
+          -1.1390254105854385,
+          -1.1236666479720294,
+          -1.502483650167086,
+          -1.0830974299927971,
+          -1.5704365833142018,
+          -1.7846411702045795,
+          -0.40415652716267425,
+          -1.3324267707503634,
+          -1.7924266711847632,
+          -1.4614954963715472,
+          -1.338939278476795,
+          -1.1330937272077195,
+          -0.5274912374387638,
+          -0.235417953310315,
+          -1.4666155997530916,
+          -2.5198237827886105,
+          -1.9210679830089328,
+          -2.036315921628388,
+          -0.7611693107507549,
+          -1.1793149852532512,
+          -0.6852129768783939,
+          -0.3716797690912238,
+          -0.27327173965501617,
+          -0.038776291706569266,
+          -1.5359211992698276,
+          -2.2184097621617553,
+          -1.3754321151696498,
+          -1.789225427174392,
+          -1.3394571427272066,
+          -1.9890373302133888,
+          -1.1508077247413624,
+          -1.0505361723844786,
+          -1.112063716394778,
+          -0.5030442052210937,
+          -0.8912016375109424,
+          -1.6263126618827746,
+          -2.2139098337730494,
+          -1.4891762632569816,
+          -0.870591162243654,
+          -1.3476827471082962,
+          -1.300341295569684,
+          -0.6325117390290191,
+          -3.029772960079986,
+          -0.2362693657237276,
+          -0.9363300966976283,
+          -0.9965828777476708,
+          -0.7378339447180342,
+          -2.141845047155975,
+          -1.1122023398919147,
+          -1.7716790049034925,
+          -0.3521102720361049,
+          -1.5311466440922938,
+          -0.5195981755528059,
+          -0.9971065187861027,
+          -0.25040965957286354,
+          -2.5451981977717164,
+          -1.601348485247081,
+          -0.7748923551145118,
+          -0.5123794717757824,
+          -0.9650073573962697,
+          -2.72464611577964,
+          -0.9828708091937869,
+          -1.3856391991168386,
+          -0.24034327711111103,
+          -1.631423390182997,
+          -0.8370634959845772,
+          -0.7238005236555279,
+          -0.24534989578404265,
+          -0.7285323973205547,
+          -0.8952400285877812,
+          -0.4473857851018903,
+          -2.0231252492975234,
+          -1.2416242591153406,
+          -1.8004196981911136,
+          -3.1976674115925885,
+          -0.22709513043078222,
+          -2.999932902826831,
+          -0.4512259359708366,
+          -2.9166954901864504,
+          -1.0993124194442143,
+          -1.8001335556274398,
+          -2.01828385001561,
+          -2.4676087936429125,
+          -0.6907571233199699,
+          -1.0439692046026134,
+          -1.3697248108833828,
+          -2.304585095361714,
+          -0.9496493691626074,
+          -1.7996979164380837,
+          -2.1334774148627753,
+          -1.2222978315023318,
+          -0.6661390363633689,
+          -2.526094201373073,
+          -2.1835725451446057,
+          -2.160520407938682,
+          -1.35420609067519,
+          -0.2088405354056777,
+          -1.529325771477438,
+          -2.0162813775616586,
+          -1.3418886615773038,
+          -1.2613685091246645,
+          -0.947497744673544,
+          -1.3945922126310466,
+          -1.8015571402159511,
+          -0.5928743941135037,
+          -1.721927154734142,
+          -0.1644090451512933,
+          -0.8341733555103114,
+          -2.7594892618466567,
+          -0.21876408068620878,
+          -1.4759575117836037,
+          -2.1846228330085418,
+          -0.6886758785864482,
+          -0.9457285892006629,
+          -0.054684782627873574,
+          -1.3395496627636558,
+          -0.9611910945380725,
+          -3.348150160972775,
+          -0.49108033023315545,
+          -0.44102476985450223,
+          -0.9663283536625051,
+          -0.02672736449042279,
+          -3.1812642200002155,
+          -1.286637178781899,
+          -0.7056623003215388,
+          -1.4541250041764893,
+          -1.01013309507329,
+          -2.1259502647018325,
+          -2.038913643761245,
+          -1.3218645995657006,
+          -0.9586587475038074,
+          -1.2038745585078388,
+          -1.4132596947761173,
+          -3.868174115311191,
+          -0.9467410813765639,
+          -1.7579953069204723,
+          -0.5839059576744193,
+          -1.0088705838362357,
+          -1.671795106763605,
+          -1.1361247834026638,
+          -0.21208213494156392,
+          -2.216143081771956,
+          -1.7959256772497671,
+          -1.7227207789365522,
+          -2.4952512661027635
          ],
          "y": [
-          10.01410519288544,
-          -7.891224742400154,
-          -10.458603824058772,
-          -10.774210882104727,
-          10.903779876323364,
-          -9.492136830144279,
-          -10.399769784194337,
-          -10.617285918253693,
-          -8.724806647854091,
-          -9.886680425934294,
-          10.101898856703459,
-          -8.399187770193485,
-          10.766323313360273,
-          9.479358248668676,
-          -8.398579025122547,
-          -10.477389475946282,
-          -7.694725598241438,
-          10.849038067588948,
-          10.49994179851896,
-          -9.913730454581707,
-          -8.027962997749125,
-          -11.158677767402796,
-          -11.277107891655628,
-          9.980269778236444,
-          10.513580012140315,
-          9.800929076825671,
-          -12.209235632025424,
-          -9.615195137087579,
-          10.054908256136088,
-          -9.53634558200669,
-          -9.591720950819129,
-          9.267504337790651,
-          10.070829522440608,
-          -12.103926911670948,
-          -9.512430504833878,
-          -9.778119307488797,
-          8.774826334535968,
-          -10.441978329874251,
-          -10.395835564654412,
-          10.395110299346175,
-          -11.41560338296626,
-          -11.264423399241252,
-          8.845480158863051,
-          9.837159440842782,
-          9.385009443148254,
-          -10.329992658852346,
-          -9.089253377062024,
-          -9.727579481700436,
-          -11.408726050756506,
-          10.99482638663067,
-          -9.498118243942672,
-          9.514868390540283,
-          -10.580894972536084,
-          -11.559325631863024,
-          10.251613142849358,
-          9.98693326491842,
-          -10.443289611653647,
-          -9.704420637732893,
-          -11.441618356710158,
-          9.517551924059202,
-          9.787273168337073,
-          -9.989242143128203,
-          10.597817848560839,
-          10.251462353356205,
-          9.516303027891349,
-          -10.793405510123554,
-          -8.41680901145658,
-          -10.149894862129512,
-          10.903125059594784,
-          -9.092895063496115,
-          9.887199951858307,
-          9.474593720435186,
-          10.509874668646702,
-          9.08086859288939,
-          -10.83253312921949,
-          -10.364696465666759,
-          -10.264340451448039,
-          -10.538876011279832,
-          10.107978922065454,
-          9.195128532364857,
-          -10.364735585696993,
-          9.628575526353455,
-          -9.598953193661652,
-          9.607980755106887,
-          -9.33865022471729,
-          -10.419426439044058,
-          9.115949269243018,
-          9.837621156976866,
-          -12.649170632679192,
-          -11.387708498514082,
-          -10.42364119266303,
-          9.9362672410091,
-          -10.159090564630127,
-          -9.378554488564864,
-          -11.85755886878576,
-          9.999280563816733,
-          -10.384890258513225,
-          10.420676374311777,
-          -11.454968197197584,
-          10.390176677210903,
-          9.413361738084978,
-          -8.050071753292688,
-          -11.110062603612063,
-          -9.056441224435575,
-          -9.08280536560479,
-          10.250713711167547,
-          -9.629642446805345,
-          -9.51851582617214,
-          7.968191261368359,
-          -9.148480634943503,
-          -11.780791842088524,
-          -10.743229745909831,
-          9.684043010466958,
-          10.739103561477311,
-          10.266819086460918,
-          10.478786869333236,
-          -9.079607692887876,
-          -9.993437432723972,
-          -9.366749163504139,
-          10.436718189249255,
-          -9.608310745180978,
-          -10.243398093671834,
-          -10.343028498861925,
-          -11.692332745207967,
-          -10.011903072666842,
-          -8.948876421974452,
-          -9.552023552647016,
-          -9.588080431867583,
-          10.186016502986652,
-          -9.94024216798333,
-          10.320561994436149,
-          10.189008093953783,
-          -10.671873981135876,
-          -7.96842643709799,
-          -9.551804677343593,
-          -9.328531040681266,
-          11.914548617400065,
-          10.031673857958832,
-          -9.382878833170112,
-          10.12748012453488,
-          10.966033067594882,
-          9.77048529589552,
-          -8.840936344445186,
-          10.162298180720125,
-          -10.552567786894798,
-          12.446449500169413,
-          -11.803585462461609,
-          -9.433274318741175,
-          -9.421933783731822,
-          -10.348525489973415,
-          10.363760258280106,
-          9.602152038826013,
-          8.561002147739451,
-          -10.313918634653882,
-          -8.269568709140785,
-          -8.79371090968553,
-          -10.263381259309304,
-          -9.314280803986712,
-          9.458114783929284,
-          -8.179710314579962,
-          9.338501140948575,
-          -9.288784492240104,
-          -10.709137309506437,
-          10.17313531883621,
-          -10.398253016519874,
-          -9.852922348293403,
-          10.000038278911402,
-          -9.26069586082904,
-          -10.820549997402344,
-          10.760055190325858,
-          -11.138213988296677,
-          -9.99562360821474,
-          10.137189730761346,
-          -8.5124626356676,
-          9.558090713510635,
-          10.791785209496242,
-          -9.302045967290526,
-          -10.431308933071398,
-          -9.196530370925833,
-          10.613100648978632,
-          -10.918391569153282,
-          -10.773813787615856,
-          10.756331707964835,
-          10.999677423330759,
-          -8.292369748380777,
-          -9.012683384434014,
-          -9.623522721256348,
-          10.011220681863877,
-          -8.765479538923389,
-          -10.76140959220108,
-          -9.554820961872492,
-          -9.079055852116605,
-          8.825517855755521,
-          -9.163449185382884,
-          -9.749925327724466,
-          -9.691329388195875,
-          9.523656560406579,
-          10.404929614360366,
-          -10.037031910788015,
-          9.571108661029168,
-          -10.42507874963256,
-          -9.207501165491085,
-          -10.550345409656497,
-          10.650297724731626,
-          10.6404657916649,
-          10.674641920985898,
-          9.609120162381627,
-          10.260201790755938,
-          -10.074990122903342,
-          9.47595490049159,
-          -10.381845818646811,
-          8.344892224771062,
-          9.755645782886683,
-          -9.593531623583525,
-          10.44677609480286,
-          -11.34785356591295,
-          9.725099560479924,
-          10.06149459680695,
-          -8.481006744399302,
-          -11.974410744073895,
-          -9.016324189389021,
-          -10.76574234849962,
-          -10.392798604874324,
-          10.258950979061463,
-          -9.247121640872205,
-          10.478925863551058,
-          8.990240383159652,
-          10.675178463599504,
-          -8.730581416732372,
-          10.0530821515187,
-          10.040100541693121,
-          10.738636990284267,
-          -8.709943617991021,
-          10.25476115182264,
-          11.406799055398858,
-          -10.155987320991384,
-          -11.703454006234145,
-          10.246755815391186,
-          -10.818373720381363,
-          -9.346483407497251,
-          -9.86818296053777,
-          -9.478469057712909,
-          -10.602608677055663,
-          9.350097232741284,
-          -10.713160225405968,
-          -10.861744639344803,
-          -7.910736786017557,
-          -8.674964003689496,
-          10.883516839321539,
-          -11.228199422359488,
-          10.276666422342304,
-          -10.72879121762983,
-          -11.532362149032641,
-          10.765309450621181,
-          8.773731741356283,
-          -8.094387982090826,
-          9.92699846137191,
-          -11.300674245175262,
-          -9.649200466620917,
-          -8.778364081114308,
-          10.04532752620984,
-          -10.141002712655597,
-          -8.738864664031528,
-          8.831999623034106,
-          10.626272626427072,
-          -11.203342089517406,
-          9.099534076769748,
-          -10.33097363058447,
-          10.36089247740142,
-          -9.99165167945987,
-          -9.753633021049215,
-          -10.024586798303558,
-          -9.054781263235437,
-          10.035457171278212,
-          -8.73866190475791,
-          -8.439332392160138,
-          9.92268252333878,
-          -9.385933684704971,
-          -10.412617140303071,
-          -9.135492198542433,
-          -9.343988298045705,
-          -11.66776198328768,
-          10.424176387922564,
-          -8.860601148755743,
-          -10.028601619425434,
-          -8.889823952412574,
-          -8.599860458786925,
-          -10.98653594248575,
-          -10.494177272264961,
-          10.053099846498878,
-          11.078472679099978,
-          10.008724720265848,
-          -9.344919935956376,
-          9.303779093242081,
-          -10.051441308859976,
-          -9.550700019430082,
-          -8.886891576044587,
-          -9.31982122120204,
-          -12.105365349841925,
-          -10.372994733724179,
-          10.719155465580053,
-          10.409032195161066,
-          10.365689351923868,
-          -10.084235519318488,
-          -9.777384965349375,
-          -8.828765376463737,
-          8.580508946723041,
-          10.428075087262679,
-          -8.931513397713655,
-          -10.650375621714963,
-          9.530836796828664,
-          -9.24725808263798,
-          11.49602702578692,
-          8.910586364260705,
-          10.96727602050266,
-          8.63618414890807,
-          -11.200787859172234,
-          9.468992629933709,
-          9.449361295081262,
-          -10.894990348452893,
-          -10.147036179374087,
-          -11.291127957101358,
-          -10.974157122749373,
-          -9.149500276299554,
-          10.821230791880701,
-          11.222085854278658,
-          11.426175326695079,
-          9.237094981736691,
-          -9.14922752484206,
-          -11.540570412072121,
-          -9.160070752710025,
-          8.87891171952609,
-          9.23648730800138,
-          -8.127485767272148,
-          9.87391020899139,
-          10.050764625865806,
-          10.90457172204548,
-          9.40845714752793,
-          -9.83777745653686,
-          10.11464822999978,
-          -10.87877267693809,
-          11.740340627627962,
-          10.431435455954395,
-          9.672132476212827,
-          10.30034730813928,
-          10.25758519132164,
-          -8.319832114286235,
-          10.926062355408726,
-          -11.771880905687238,
-          9.784036887787156,
-          -11.172875096111246,
-          -9.86312600033702,
-          9.952414921235462,
-          -12.404231682598155,
-          -9.563725146335802,
-          -10.646445135930009,
-          9.509887967924243,
-          9.67098446469575,
-          -8.418197611706205,
-          9.750963144890804,
-          -10.626752879061858,
-          -9.354909686981113,
-          -10.42670909327773,
-          -8.367939317298692,
-          10.148561586720621,
-          -8.596185049761313,
-          11.101809816737134,
-          -10.264075040090368,
-          10.404270682717305,
-          10.43658174669808,
-          -10.660171749285118,
-          -9.22880250426792,
-          -9.696576277324176,
-          -10.214756341398738,
-          -10.353440674107208,
-          -9.295978007967227,
-          -10.893207299136021,
-          -8.412575161334074,
-          -10.919650478186082,
-          -9.328372506207709,
-          9.850076046476488,
-          -11.703750405588737,
-          -9.858166663572026,
-          -12.548511419962919,
-          -10.679804789991396,
-          -11.9818292755442,
-          9.578672293787015,
-          -9.24012133180094,
-          -10.21586926888472,
-          -8.914335236483742,
-          -10.981526924352512,
-          -9.876204577229775,
-          10.743757420192532,
-          -9.890299860088254,
-          -10.33939398657915,
-          10.591008790480572,
-          10.289627573960255,
-          -10.249806622556543,
-          -12.017840482878295,
-          -10.56757900476417,
-          -11.859785430077673,
-          9.904285840409395,
-          -10.100119010645248,
-          10.372289517607001,
-          -8.913022722998518,
-          -11.678369385776033,
-          -10.704605625696127,
-          -10.388980744330219,
-          -9.952721971974094,
-          -10.734796414214593,
-          -9.148960065253195,
-          -11.464666184197306,
-          -9.300899614379949,
-          -9.861466154442875,
-          -10.699481923092598,
-          -11.207941416916666,
-          -8.733379233503493,
-          -11.35198134704525,
-          9.390462630291305,
-          -10.270833006691065,
-          -9.738546465243024,
-          -11.028681236046628,
-          10.004823787815738,
-          -9.118656059233404,
-          -9.706427884724583,
-          10.402510748769142,
-          11.08452470825461,
-          9.410724737235629,
-          -9.42038121230914,
-          -9.782732191150973,
-          -9.337274742671445,
-          9.666002727627301,
-          -7.884666938393114,
-          -10.033784865105078,
-          11.128574250724137,
-          9.091625514607683,
-          -11.484738894278118,
-          -10.94424650465871,
-          8.760058349735306,
-          9.745625747389102,
-          -10.09463086516691,
-          -10.293920690108616,
-          -8.907295788776194,
-          -12.307505141253598,
-          9.924232281720649,
-          10.59025550347912,
-          9.501495190633165,
-          10.302369420258461,
-          9.734040384924315,
-          11.957942351152115,
-          9.723725959106037,
-          10.817200783565575,
-          9.982630867516571,
-          -10.571577064537227,
-          -9.826125169143296,
-          -8.959538200362806,
-          -9.359026211470162,
-          10.030399103934636,
-          -9.808537116925846,
-          -8.5457485370874,
-          -9.993420705679725,
-          -11.774645643521257,
-          -7.651405414380642,
-          -10.82941171883214,
-          -9.099248587374458,
-          -9.753269996973318,
-          8.949868204831452,
-          -8.196816273370768,
-          -9.245093074566899,
-          -10.867309983840501,
-          -7.939455498105755,
-          -9.442699941158075,
-          8.853408561320805,
-          8.633269334044355,
-          -9.84980202085013,
-          -11.420385438058302,
-          9.727806122017935,
-          10.71625538599102,
-          9.968200897206875,
-          -11.072915298849928,
-          -10.183266496311088,
-          -9.143312870768675,
-          -9.993119272936516,
-          10.585026561431553,
-          10.640800591382586,
-          10.136190614285802,
-          9.51962373467165,
-          10.079543037475824,
-          -12.236077031056826,
-          -10.496033106368579,
-          -8.696848293813144,
-          10.332329865815211,
-          -9.070237842350604,
-          -10.335716472208187,
-          -9.154396370504593,
-          -9.615336072949583,
-          -10.024847546017032,
-          -9.807662567985206,
-          -8.739411482093054,
-          9.20712632959409,
-          11.20850685095655,
-          9.660612703609923,
-          9.331248610616015,
-          10.000674918356072,
-          9.900434685789717,
-          -9.064385985291853,
-          9.476609570481237,
-          -8.277458195361085,
-          -11.15984596002094,
-          10.520149737112781,
-          -9.620802316252488,
-          11.39818009942845,
-          -8.60624138014137,
-          -9.300783696061403,
-          -9.202499019151833,
-          -12.086130735604984,
-          9.637781613730281,
-          -8.784868996861668,
-          -10.783160878618753,
-          9.480019134886073,
-          9.201240561425783,
-          -10.080109286535235,
-          -9.648700408185789,
-          10.77206163716103,
-          11.007601921499061,
-          -9.65193166628177,
-          9.705800115233597,
-          -10.266795282841814,
-          -10.094756144252072,
-          10.39566767611055,
-          9.984595132299455,
-          -8.961506063628905,
-          -9.01160069994824,
-          10.041683692325474,
-          -9.187981833096819,
-          -9.878872508095563,
-          -10.667170668346403,
-          -9.037887876958749,
-          -9.570773451726941,
-          10.54624804707836,
-          -9.440032445628992,
-          9.835668866163921,
-          -9.482505773977604,
-          10.226826710642644,
-          -10.252520163949079,
-          -10.413580579982913,
-          -10.635370032834196,
-          10.423639683708368,
-          9.683446933341903,
-          -8.22415477912654,
-          -8.153803057495177,
-          -10.18816903842753,
-          9.495618708241382,
-          -8.881054224378337,
-          -9.666993340937722,
-          9.550555139558304,
-          9.876520859581419,
-          -11.135902618551365,
-          -10.703679695916634,
-          -10.132054536357373,
-          10.429507334117064,
-          8.55843739832131,
-          -8.841972480518951,
-          10.214131854460607,
-          -10.320750828823405,
-          -10.39463161995766,
-          11.092362245582013,
-          -10.202594394746871,
-          -10.706987980931277,
-          9.988748761102281,
-          8.910039216400994,
-          -11.129898150382257,
-          9.86634566788138,
-          9.431014707328531,
-          -9.029157280293623,
-          -9.511728958040734,
-          10.271194545036302,
-          -9.9924540368512,
-          -10.702550003640727,
-          11.103447744764125,
-          -10.601895149375325,
-          -11.16519453956637,
-          8.889408389186457,
-          9.869588754744528,
-          -9.131592785389316,
-          -9.981290856373448,
-          -11.25504116320015,
-          9.5464004421366,
-          -10.239986076562163,
-          11.22295989005526,
-          9.805235148953999,
-          9.44992516211335,
-          10.418881400852598,
-          -8.960870271844778,
-          9.829517925506865,
-          9.515012558649133,
-          9.234825532650337,
-          10.589826848304172,
-          -9.580540294393051,
-          -9.531591236803534,
-          -12.022936418655576,
-          -10.455334350972338,
-          -10.714184637506802,
-          10.435355776131154,
-          -10.584510440113748,
-          10.037105579401995,
-          9.96113717786642,
-          -7.870461304954226,
-          -7.607100941010975,
-          -10.519671076156696,
-          -8.534216847224874,
-          10.627261213795787,
-          9.815347039205117,
-          -10.140461931170599,
-          -7.691496231422538,
-          -9.99524285586753,
-          -9.281128306388698,
-          -9.921452819785591,
-          -9.829080216228636,
-          -10.181934352810824,
-          10.47255513844246,
-          -12.238920879391944,
-          -12.691828511652885,
-          10.111186649754954,
-          -11.285128123461991,
-          10.013899710057572,
-          9.88231548772226,
-          8.737477334391421,
-          10.00406494926385,
-          -9.368765122698152,
-          -9.723688543190825,
-          -11.14228396714061,
-          10.052633802920854,
-          8.027890348115404,
-          9.89402377908522,
-          -11.059790718383244,
-          -11.299229516398208,
-          -10.04517923300264,
-          9.834500892108206,
-          -9.844748787880729,
-          9.66410391355475,
-          10.00389432462614,
-          10.34187795420371,
-          -10.152535692998065,
-          9.694084463195365,
-          -10.674199511598944,
-          10.65389194223124,
-          8.758800454411789,
-          -11.968170987931064,
-          -8.461977983857974,
-          -10.093224219316337,
-          -8.424108267502739,
-          -10.35363567857392,
-          -10.119335201854904,
-          -11.198014201516118,
-          -8.834464917618332,
-          -10.808562433239466,
-          -12.039101985957874,
-          -10.263884414172477,
-          -9.390952193120025,
-          -9.40275719937138,
-          -11.918077030473412,
-          10.01963815991751,
-          9.86319299988144,
-          9.108952182021575,
-          10.267980411651283
+          -1.1452398592059188,
+          0.1764101380700378,
+          -1.7360551367231598,
+          -0.5132423651366104,
+          -1.050269267722827,
+          -0.7777051782910256,
+          -3.713911955141185,
+          -1.111477527961242,
+          -2.073351966053986,
+          -0.2902296567474253,
+          -0.8686207776302951,
+          -0.6762495177067478,
+          -2.3962432102609914,
+          -1.2556720396704775,
+          -0.47247189133421075,
+          -1.083688704626582,
+          -1.0965232885582386,
+          -0.301577972559541,
+          -0.03963981016986784,
+          0.21851985003248497,
+          -1.9829205550005518,
+          0.4497641884442487,
+          0.8198302631662058,
+          -0.4447324122416699,
+          -0.26515680415995013,
+          -1.2078546798017968,
+          -0.5315792134742751,
+          0.39061460328347763,
+          -0.32354584526269836,
+          -1.5508397617153409,
+          -1.9860800695758982,
+          -2.3140892160047946,
+          -0.9215713240541472,
+          0.20018715922621477,
+          -0.7168065683752398,
+          -0.7154942812235081,
+          0.009213145892517982,
+          0.506766416907457,
+          -0.02311696083806103,
+          0.0758569438614991,
+          -0.9502051393395027,
+          -0.47070245373642905,
+          0.12097993935464846,
+          0.3126072133712594,
+          -0.69557241994138,
+          0.5606751786272715,
+          -0.5883988254353023,
+          -0.9853827408107085,
+          0.015421646288500623,
+          -0.4421235580909326,
+          -1.1059908121489779,
+          1.0194090057688463,
+          -1.6332893069245453,
+          -1.3866916277522479,
+          0.3521318968153673,
+          0.19582765973970728,
+          -1.7191866037130752,
+          -1.4936312676417904,
+          -1.3018255940234118,
+          -1.8797978014049062,
+          -0.13381906154448087,
+          0.18188037859808337,
+          -0.13643535187326394,
+          -1.569857376539161,
+          -0.7425057097686635,
+          -0.9344875615869925,
+          1.0197141424359297,
+          -1.0984891520047988,
+          -1.7901506410343324,
+          -1.1342646820310531,
+          -0.7599123716900025,
+          -1.2115979209315304,
+          -0.8995368736756157,
+          -1.7889833178964807,
+          -2.2471250003840026,
+          1.5116615528469723,
+          0.6126686517449123,
+          -0.8734231618023444,
+          -0.20620716979932907,
+          1.0694560216673539,
+          -1.1155990964117453,
+          -2.3949132290001147,
+          0.07354471743323887,
+          -0.26435966012443857,
+          -0.24351996422475553,
+          0.6358457010798493,
+          -0.5265831098293359,
+          -0.2235650228976258,
+          0.7688059931895641,
+          -0.03529750718028701,
+          0.25423162761886986,
+          0.43672298128966913,
+          -2.148666898788119,
+          -1.5223881423717671,
+          1.0181317608903901,
+          -0.861228668686414,
+          0.1383205755287451,
+          -2.2528838164440113,
+          -2.4083083272149333,
+          0.9968609039310956,
+          -1.0626755275872097,
+          0.8229299120897531,
+          -0.8758315413010598,
+          0.08886037395812374,
+          -0.03892523042693985,
+          0.05603476399785268,
+          -0.6679451997301062,
+          0.5952240883897264,
+          -1.2075877794530911,
+          -0.836826536041561,
+          -0.5720088664465977,
+          0.10410902928225219,
+          1.3442742793520637,
+          0.7052320713571276,
+          -1.4985902684343717,
+          0.11033228151377128,
+          0.1231741422290693,
+          -0.08455867690749386,
+          -1.4000440293696914,
+          0.2561975491042756,
+          2.2199824625626747,
+          1.4340226017566162,
+          -1.6765427815779028,
+          -1.4028812197625764,
+          0.6464424612953494,
+          -0.5632419060489555,
+          -0.013079276930852535,
+          0.25975854786635466,
+          0.8330176494253629,
+          0.13880850397003042,
+          -1.1013216848804397,
+          -1.2701373914737741,
+          0.04385165501687416,
+          -4.054207636641843,
+          -1.723849272941533,
+          -1.0774230614357563,
+          -0.040097472700964754,
+          -1.8243753227000394,
+          -1.2072657045758892,
+          -2.3103778117829754,
+          -1.3664905855802256,
+          0.05646894990117324,
+          -1.8641725054846723,
+          0.05328051266189693,
+          0.27352335699557484,
+          -1.9244319935604535,
+          -1.4168861887892827,
+          0.3058220762418882,
+          -2.3287775338320293,
+          -1.9502878088545954,
+          -0.30023275619272616,
+          0.010197904714680739,
+          0.2867657054094299,
+          0.5330526841669163,
+          -1.0751861503170639,
+          1.5009085164075828,
+          0.4472090556318764,
+          0.21409936279735176,
+          -0.709218797345494,
+          1.073732806052631,
+          -1.0577744473963437,
+          -1.928763133834925,
+          -2.871050771285261,
+          -2.077809874320846,
+          -2.2587392581853365,
+          0.07262101786829578,
+          -1.654678048794085,
+          0.10544854138541382,
+          0.9613022256100259,
+          0.21558144778518806,
+          -1.2791706027507455,
+          -1.88306920995541,
+          -1.4733189446778727,
+          -0.41320332958009764,
+          -1.661503236289,
+          -1.3745781185770036,
+          -1.3896137894028373,
+          -0.2649123790484431,
+          -3.5792248502025408,
+          0.35208177630689486,
+          -1.3660963053947983,
+          0.1770916729130596,
+          -1.2594638428332172,
+          0.07030740339806574,
+          -2.027765165862681,
+          0.706566563217679,
+          -0.8408954063778586,
+          0.6893187663027662,
+          1.0248382669588811,
+          -2.5375987903168573,
+          -1.8509716564986096,
+          0.9325657152870035,
+          -0.9975815737643391,
+          -1.2068485348743312,
+          -0.3568949819291585,
+          0.832134492444043,
+          -1.4507563304344824,
+          -0.7981534440587665,
+          -2.635879064963245,
+          -2.286688092274101,
+          1.0684452497259982,
+          0.1918330206709038,
+          -0.7646810770844917,
+          -0.18439845967632484,
+          0.15069731180060453,
+          -0.9481459045925349,
+          -0.3586502224045497,
+          -1.0108632231082317,
+          1.7568501253882536,
+          0.7833231205305231,
+          -1.340943226265045,
+          -1.1519363490675132,
+          1.3221189257387778,
+          0.31202333804967375,
+          -0.7420670231938461,
+          -3.0646417982483274,
+          -1.0603878214419913,
+          -1.5615213773078458,
+          -1.3984886381497974,
+          0.1348141976731183,
+          -0.7275479644316418,
+          -2.174779488771535,
+          -1.2960381056928045,
+          1.759417580938099,
+          -0.6730870540978834,
+          0.048558337211987324,
+          -0.4993041545262711,
+          -0.5641644287361673,
+          -2.242532444189801,
+          -2.345301654343035,
+          -1.7986190214571314,
+          -0.48262509694652367,
+          -0.27519575136535723,
+          0.19014764256026861,
+          -0.8675099658975358,
+          -1.312208080971134,
+          0.15571568594363394,
+          -0.14669125685929485,
+          -1.987462761816555,
+          0.6195163954290479,
+          1.7103248998506086,
+          0.9711918406745799,
+          -2.3673365512897497,
+          -0.4122144444020064,
+          -2.3450316936338322,
+          -1.9860643252888546,
+          -0.5473576310410218,
+          0.3175644314337538,
+          0.7603123331945807,
+          0.30006506062206784,
+          -0.8305103021559375,
+          0.3941120743140438,
+          -0.1613718838275605,
+          0.7876918637019916,
+          -0.27921245517698934,
+          -1.6758720791707469,
+          0.008897316149931722,
+          -0.21544863152383797,
+          -0.03588413570116111,
+          0.3545869459840867,
+          -0.4985567002597999,
+          1.6204733473699626,
+          -0.14247908744500049,
+          0.2011615101137958,
+          -2.080085525560139,
+          0.8238564489874114,
+          -1.0740456559533544,
+          -1.5121478381530111,
+          0.21284936314756897,
+          -0.757096501787933,
+          -1.737509307765079,
+          -0.1549908096147805,
+          -2.442057589345708,
+          -0.19450069861412678,
+          -1.1404862930779023,
+          0.8052890910413397,
+          -1.865805486455626,
+          0.006568432861072004,
+          -1.7405217675930436,
+          -0.8012591250985184,
+          0.41118502277775537,
+          0.23886089664438637,
+          -3.400161664497761,
+          -0.9525359149012329,
+          -0.794887785466071,
+          0.8196891396905266,
+          -0.2205291816205166,
+          -0.26160919562890284,
+          0.22929478999053354,
+          0.4327038839431545,
+          -1.3636526493677221,
+          -1.9421750083956737,
+          0.8551884225684063,
+          0.6040154076431896,
+          -1.5056949023925263,
+          0.04312824024352824,
+          -0.5086034822263257,
+          -1.321775873244381,
+          -1.9572050552200035,
+          -0.8962030017120183,
+          -2.094941796929067,
+          -0.8142967101910183,
+          -0.6610395732642778,
+          -0.33987152078821914,
+          -0.8659783017313829,
+          -0.927203199940268,
+          -1.1863342177956293,
+          -0.004247183993204007,
+          -1.4283210403848128,
+          -1.8736927279777036,
+          -1.526424201740216,
+          -0.11401367467923174,
+          -0.8344068631158927,
+          -0.8623707005422487,
+          -2.109983121815441,
+          -0.5574118549544382,
+          -0.11871330646647227,
+          -1.3646811915414112,
+          -1.0692829962011245,
+          -1.0892949652058392,
+          -2.1302159866611907,
+          -0.6393653234120549,
+          -0.7359685278664887,
+          -0.955230006941584,
+          -1.191864329929086,
+          -0.9507130068888892,
+          -0.8873362481701976,
+          -0.9241222658619563,
+          -0.8355314841384202,
+          -2.105893056757826,
+          -2.1065487107555123,
+          -1.3264792462382875,
+          -0.8668458602359724,
+          -2.352283991017538,
+          -0.434070200219281,
+          -0.044043892861691414,
+          -1.5762667643906445,
+          -0.6421200789188312,
+          -0.2666011136232379,
+          -0.710830973185401,
+          -1.6455680677605646,
+          -1.7190965749394984,
+          -0.8532896079792458,
+          -2.3523330912357046,
+          -2.186076760490253,
+          -0.8406771423543576,
+          -0.0439616220908442,
+          -0.6462619797038167,
+          -2.2116857353069834,
+          -1.1972540397984412,
+          -0.4772559998147974,
+          -1.258026271708611,
+          -1.4367725013442223,
+          -2.9541656984464235,
+          -1.1573582089594405,
+          -0.648825852538761,
+          -2.275052234245414,
+          -1.0272252367035408,
+          -0.07376752101156936,
+          -2.4185598331802707,
+          -1.0213019076307797,
+          -0.6170304500747821,
+          -0.27994863259497604,
+          -1.7027265084088974,
+          -1.4012005568563415,
+          -2.338995267179704,
+          -1.5452772516073323,
+          -2.1868050560929966,
+          -1.8636046796240162,
+          -1.333271743183026,
+          -1.3961857733828198,
+          -0.01069738651875507,
+          -1.2856137890353843,
+          -0.8513957579931752,
+          -1.8950070522007672,
+          -1.6676964364793014,
+          -1.8210139885161871,
+          -0.19233048638156802,
+          -0.5805643812901828,
+          -2.7760707861873746,
+          -0.6937655389101327,
+          -0.708788558126738,
+          -1.0185748441149245,
+          -2.148833794339498,
+          -1.820003539442955,
+          -1.3971612968074951,
+          -1.8109473519697938,
+          -1.8651153464079295,
+          -1.0574231902286693,
+          -1.1301192080897133,
+          -1.9349144875670612,
+          -1.6528372342722366,
+          -1.8297938739475217,
+          -1.299419333208413,
+          -0.5710511664230165,
+          -1.94322220242071,
+          -2.2558478929727555,
+          -0.378469534355801,
+          -0.7429561596479906,
+          -1.5690463379153317,
+          -0.5389330175110558,
+          -1.440717800275785,
+          -1.294568821879083,
+          -0.6110880561323895,
+          -2.537538923087915,
+          -0.690587744091087,
+          -0.7820477648011717,
+          -1.7963614250384086,
+          -1.8099480600655458,
+          -0.9487254822976345,
+          -0.7717564053470964,
+          -0.6783317084297901,
+          -1.1989215714759882,
+          -0.3241039971822278,
+          -1.7140085865686854,
+          -1.0134781999145497,
+          -0.8367653478331546,
+          -1.7427810077942474,
+          -0.7749181008783996,
+          -0.13662132498678858,
+          -1.893236974579409,
+          -0.9461657062289441,
+          -3.5784275449222442,
+          -1.8358805068922828,
+          -0.04761270814827612,
+          -1.008556050029735,
+          -1.174094687010915,
+          -0.44196979246646206,
+          -0.1694098009380468,
+          -1.4832034709085242,
+          -1.425670247737167,
+          -0.984235738117297,
+          -2.18248825733151,
+          -0.7428276863730998,
+          -1.6925532275815414,
+          -1.02545532468668,
+          -0.07429886694695309,
+          -2.1555892050069034,
+          -1.2514337593500888,
+          -0.9972300240258103,
+          -1.371060535184383,
+          -2.567623204424846,
+          -0.15860118531386458,
+          -1.0370260608754855,
+          -1.560308050909346,
+          -2.5571596372725693,
+          -2.195681131327854,
+          -1.2121508467787707,
+          -0.00731440201329614,
+          -2.0631063242711667,
+          -0.37402160957153885,
+          -0.07224130115344274,
+          -1.2226571675769342,
+          -3.781213804556179,
+          -0.5740127941069515,
+          -3.2006224291770313,
+          -0.00107117849479621,
+          -1.128879725702776,
+          -0.5495680448023705,
+          -1.0816451651627343,
+          -1.1201231952935626,
+          -1.5281367583567393,
+          -2.1174519702284527,
+          -0.5605187343587565,
+          -1.2783596859779003,
+          -0.39146643126445313,
+          -0.3257914924434191,
+          -0.19058847347617214,
+          -0.562147162444073,
+          -1.6650218364882787,
+          -0.14335385213963092,
+          -1.547978101738134,
+          -1.4470046664856067,
+          -2.0727548260321234,
+          -1.9795570288539412,
+          -1.651575869187963,
+          -1.3635831846197886,
+          -1.405739951065497,
+          -0.8911934144293322,
+          -1.4368570715122608,
+          -1.4425292863020323,
+          -1.0532641474101818,
+          -1.304704197604089,
+          -0.8005684893053178,
+          -1.2455986273113009,
+          -1.3589038169892174,
+          -0.868140881611361,
+          -1.4190958790492243,
+          -0.9555775104809145,
+          -1.2414840173846025,
+          -0.8453102078284543,
+          -1.339473154831336,
+          -1.3831872066622715,
+          -1.3217351081359245,
+          -0.16696592793443643,
+          -1.646702043423798,
+          -2.0478572649410247,
+          -0.43299706930298576,
+          -2.2018485158335936,
+          -3.609925507577992,
+          -1.026648451349626,
+          -1.3994977609442083,
+          -0.6720990424030605,
+          -0.44856681925426933,
+          -0.1584922664816747,
+          -2.0120938663493932,
+          -1.8030696362456216,
+          -1.0196756761578758,
+          -0.9412937515376139,
+          -2.0438232826557146,
+          -2.2863575499803455,
+          -0.934924249244554,
+          -1.6886244871137772,
+          -0.9922801523878133,
+          -0.616496924344396,
+          -0.13331242334442361,
+          -1.569923137589814,
+          -1.5413367154239794,
+          -1.2049529465173592,
+          -0.4326760490991902,
+          -1.051049467666896,
+          -0.6797040790338745,
+          -1.2096329684832474,
+          -2.9259409168399237,
+          -0.053723034305386275,
+          -0.623083830716243,
+          -1.3517581666351681,
+          -0.7197374372096721,
+          -0.25478473458975914,
+          -1.932117166387392,
+          -1.2349326572698092,
+          -1.4352607890309192,
+          -0.3965678753560756,
+          -1.8575588888116557,
+          -1.7413122862614243,
+          -2.391472659487202,
+          -1.6573729726884907,
+          -1.9978567602988166,
+          -1.0984428151198484,
+          -1.4908752859687484,
+          -2.0486728265264023,
+          -0.8243629267399175,
+          -1.2081338032396434,
+          -0.6546523855749717,
+          -1.2285744470126871,
+          -0.00987740720562491,
+          -0.5169872351147915,
+          -2.698515499565395,
+          -1.3945598887496977,
+          -1.3557244146006346,
+          -1.3956981425837867,
+          -1.6830456475223974,
+          -1.7000075780599921,
+          -1.3547366974022688,
+          -0.7054337216249431,
+          -2.158354792510809,
+          -1.1940184437683452,
+          -1.9988864689972212,
+          -0.6515119073831586,
+          -0.9288873983844134,
+          -1.0971595609577989,
+          -0.4957871499390174,
+          -1.1343345886067049,
+          -0.7064613544133569,
+          -2.4770580366661905,
+          -1.0727290690193791,
+          -2.3982216638922313,
+          -1.3923792820489185,
+          -2.141486975997247,
+          -0.3609594357361976,
+          -1.377059716773619,
+          -0.26513722880004764,
+          -1.7004124072640132,
+          -0.10353238875556126,
+          -1.6643254424391163,
+          -1.23179335689269,
+          -1.6709126571511614,
+          -0.7705934239324346,
+          -1.5999520308462911,
+          -0.5534621926519963,
+          -1.0812439216827492,
+          -0.6854403691831858,
+          -3.006986997916156,
+          -2.039013177217353,
+          -2.225769483062898,
+          -1.4336444618304705,
+          -0.45785324509049874,
+          -1.8233340146356534,
+          -1.6211619612635415,
+          -2.400897047828532,
+          -1.833830780247322,
+          -1.792988777184485,
+          -0.19529061022687177,
+          -0.3418793310377044,
+          -0.12835726689557214,
+          -2.6519918912006086,
+          -1.6795839103376582,
+          -1.6362521706764863,
+          -2.2198278177577278,
+          -1.3167146627613597,
+          -0.6347937171730622,
+          -2.687073212089004,
+          -2.185050141960971,
+          -1.0666877641827222,
+          -0.5868379048646295,
+          -1.6851472166180117,
+          -1.2116784335652502,
+          -1.1393893067411862,
+          -2.7369139314751108,
+          -2.498682480706111,
+          -1.3071810306762122,
+          -1.2145469450689028,
+          -0.9366049069334776,
+          -1.1807556603573988,
+          -1.631314924656289,
+          -1.7336281454739648,
+          -2.2723773947915182,
+          -2.0573282327858724,
+          -0.17565264122022117,
+          -2.268881082838272,
+          -2.1488533924962896,
+          -1.6038699514412476,
+          -1.9659557626464959,
+          -0.12349509441996098,
+          -1.981423662639988,
+          -1.71844717129717,
+          -1.531402540941956,
+          -3.5812848317565167,
+          -0.9351595732401163,
+          -2.7986952414952606,
+          -0.3403491232998358,
+          -1.056172338946597,
+          -2.3154839101243625,
+          -2.2845503234548685,
+          -1.2616986800992394,
+          -1.515283060054079,
+          -1.5591659773228017,
+          -1.5211133606000642,
+          -0.9073370337985863,
+          -1.551506353050785,
+          -0.9994868382226276,
+          -1.8480647972175275,
+          -0.18886837381090815,
+          -2.8044563077829485,
+          -0.0022974910114321734,
+          -0.7034335461757046,
+          -1.862757919280003,
+          -0.5490574513698558,
+          -2.441920905034795,
+          -1.1974588946653961,
+          -3.6233665018205663,
+          -1.7550024856197095,
+          -0.18092703919745312,
+          -0.43185252585182243,
+          -2.2979408902506764,
+          -1.7326419317233908,
+          -0.37557946658867747,
+          -1.7190502799336214,
+          -0.8215752303530431,
+          -1.6750761782591432,
+          -3.1357672578635163,
+          -1.3959242381410628,
+          -1.3479665515580477,
+          -2.350304553286036,
+          -2.011915648647735,
+          -2.076700318583988
          ],
          "z": [
-          -10.500123388230085,
-          10.672512251291952,
-          10.28301685254457,
-          10.273394537898225,
-          9.93798230745798,
-          9.27666605572937,
-          9.563265763253227,
-          10.656682518335908,
-          9.127420240848712,
-          9.651030933916005,
-          -9.002146605740911,
-          11.72666895206439,
-          -10.899588231235295,
-          8.413322296897869,
-          10.770956293344593,
-          9.875507968879255,
-          9.78097303541846,
-          11.609587658095752,
-          10.671447397643464,
-          9.307717256110971,
-          10.424667216468261,
-          11.159345502860825,
-          8.39340318160378,
-          7.65222183277467,
-          -12.244753128243262,
-          -11.232420826242517,
-          8.803774959385853,
-          9.316821014425273,
-          -10.537428352265072,
-          10.359343402330131,
-          10.503767058665238,
-          9.328551412049142,
-          9.201235351278225,
-          11.165720966707998,
-          10.294037811692958,
-          9.481267799767556,
-          7.143218678074092,
-          9.83154426840254,
-          11.479924115084748,
-          -11.435951919223045,
-          10.251966156411356,
-          11.11578777878992,
-          10.126173168125774,
-          10.649139215020277,
-          -9.886036040427031,
-          10.431137177162958,
-          9.498692693216487,
-          8.901663649586105,
-          10.23951185760415,
-          12.192251090323449,
-          11.014656514408042,
-          -10.548180203132947,
-          11.650204502501042,
-          9.089148884573609,
-          -11.206934418946037,
-          -10.336529076560353,
-          8.279041557826396,
-          10.919587861303086,
-          10.79068374884409,
-          9.190804587900066,
-          8.35394016899439,
-          10.622825923524598,
-          11.142448886662251,
-          -11.99370379191763,
-          8.9350962646687,
-          9.625272881894377,
-          10.11902062546687,
-          11.387071751512815,
-          12.344978399825525,
-          8.9809530965412,
-          -11.414313119622255,
-          9.932359052598988,
-          -11.315582592519405,
-          9.826180299466994,
-          9.959221728308442,
-          10.644645267293885,
-          10.235829207631657,
-          10.134616536943863,
-          -10.465342505595158,
-          -8.225898516398237,
-          8.524890030622997,
-          -9.497108381088523,
-          10.7234298115487,
-          -9.86467507380977,
-          9.14925041641074,
-          10.834919544695373,
-          -9.753542637239887,
-          10.883595704263975,
-          9.190452673982579,
-          10.485418678773193,
-          11.10747444792385,
-          9.584473397560167,
-          8.564289493756766,
-          9.565455960925453,
-          10.474392245819738,
-          9.8294912682196,
-          10.016121464973791,
-          9.541743987442018,
-          11.045147517843327,
-          -11.507212555774013,
-          -8.956470030449724,
-          8.20653236359715,
-          9.01314367506957,
-          10.600861412121718,
-          10.093642082499386,
-          -11.686899889814718,
-          11.384987415443389,
-          9.396051556089775,
-          7.818289411137817,
-          10.487418419852904,
-          9.314678237378857,
-          10.714335136464458,
-          11.090350085010904,
-          9.793238244921767,
-          11.52771763412004,
-          -8.922244024881888,
-          9.348094151727764,
-          7.917259181685305,
-          10.434304787386502,
-          9.9550388134956,
-          10.262893094761594,
-          9.86821988746793,
-          10.193094117645423,
-          12.765167924012138,
-          10.193256675349042,
-          10.79046030343738,
-          10.033695027692724,
-          10.670819375803026,
-          10.66926568982513,
-          10.496185169182409,
-          11.39728925765733,
-          -11.475830395857963,
-          10.222517490039488,
-          10.171658601833503,
-          10.224443328440914,
-          10.341642517315929,
-          12.96132593181582,
-          -10.344163336560351,
-          9.908612042665128,
-          10.805357959002475,
-          12.777281271794504,
-          -10.135030022006715,
-          10.8109492284967,
-          9.038652701348049,
-          9.741891041480729,
-          11.201761136544421,
-          9.26294002235134,
-          10.211703859923349,
-          10.734932412606577,
-          10.104184845215107,
-          -9.950784651037766,
-          -10.692254422146243,
-          9.273579115065605,
-          10.832702434279467,
-          9.985237438413645,
-          8.619909975857372,
-          9.41117264654299,
-          8.197377905416488,
-          9.596827836587487,
-          9.826704307486859,
-          -9.600129423138158,
-          10.371895970407182,
-          12.535033294114596,
-          10.698420389160626,
-          9.943083052893023,
-          11.38124791915682,
-          -10.568458955113448,
-          10.053751908071048,
-          11.323538791233512,
-          -11.583335403099785,
-          10.049532328756897,
-          10.627109180860666,
-          -9.435759900796269,
-          10.790361329591969,
-          -8.743238059792414,
-          12.042985271639566,
-          10.20139852100335,
-          10.19354204852999,
-          9.57494483344526,
-          -11.394977563394646,
-          10.507799458380523,
-          10.607204616043319,
-          11.012414303632688,
-          -11.580702654440456,
-          9.950274859665827,
-          9.991904779057563,
-          12.440146329110405,
-          10.671236936137861,
-          9.032855605425153,
-          8.710437691904872,
-          11.123773931448266,
-          10.178043059856451,
-          -9.089722105412385,
-          10.60682397356019,
-          10.726667159875522,
-          9.785454051921047,
-          -9.774679981234495,
-          -10.048454651813065,
-          10.271481670793015,
-          -9.997096779087897,
-          9.010265108178325,
-          11.950154025978051,
-          10.017524318835502,
-          13.763702727455694,
-          -8.65682317111933,
-          -11.541448667315542,
-          9.773670873087065,
-          -10.623948194498938,
-          10.050667496771192,
-          10.02745918728148,
-          9.809730755249202,
-          8.643046073196318,
-          -9.921137734318984,
-          7.520888696486299,
-          -10.638536454675373,
-          8.176203597915618,
-          -9.047268033207635,
-          -10.295140108024706,
-          10.000075748052017,
-          11.724230051935882,
-          9.580122628431639,
-          10.05136840154421,
-          10.099294525907792,
-          9.47130959729768,
-          9.114027031730586,
-          -10.219205628841742,
-          10.320375477637562,
-          -10.570859711132568,
-          11.820370378906189,
-          -7.9604821491101845,
-          10.002126808816763,
-          -9.484220897261538,
-          9.569667424390783,
-          13.005207404501766,
-          11.619231707627836,
-          10.796594645620267,
-          9.883941395558075,
-          -9.298388224527084,
-          10.479922908527747,
-          9.532822841580078,
-          8.84549987579269,
-          10.794556200899478,
-          10.605305047484997,
-          10.266057228182836,
-          10.36529096109478,
-          10.722705524196005,
-          10.836195505991169,
-          10.105587227040136,
-          -10.326609686914285,
-          10.443737472930087,
-          10.614841524304342,
-          11.672085944855901,
-          11.543989979697503,
-          10.735851703843991,
-          8.592523329504413,
-          10.607597715593155,
-          -9.120684528259323,
-          10.26083975671618,
-          10.650207360045258,
-          10.170258681555023,
-          -10.208210908663542,
-          9.446022991580067,
-          9.191809901074414,
-          10.457484591161718,
-          11.520937569366417,
-          11.464033385341157,
-          7.799744126308003,
-          11.021269394166943,
-          10.006609439477836,
-          10.31746249912147,
-          10.027493815407464,
-          12.018656287105745,
-          10.330381550771676,
-          10.794945260976341,
-          9.945919103421529,
-          9.865735510250708,
-          -10.662205604822772,
-          9.182601284022782,
-          11.765437015413697,
-          11.4669534753914,
-          8.342605422319503,
-          8.9420554713544,
-          -11.00116832317536,
-          11.209282359707059,
-          11.059809808139583,
-          9.952700382111493,
-          8.224932688525092,
-          10.682215236832361,
-          10.509677252842687,
-          11.528294022959868,
-          8.555914515405245,
-          9.097456561334331,
-          9.531194562093146,
-          -9.644099901313304,
-          8.62006191912007,
-          10.238440929636528,
-          10.409040007764483,
-          11.120180888802722,
-          9.529996949405533,
-          10.6640213573408,
-          9.941561585581315,
-          8.190889865370806,
-          -11.154015318229987,
-          8.60503809703725,
-          11.78963613662214,
-          9.702263087643523,
-          8.42731452800651,
-          10.13450089548258,
-          9.423850710109098,
-          8.260499077970062,
-          9.75303330343961,
-          10.42881692256391,
-          10.875289516679917,
-          6.410449775600263,
-          10.46468461430838,
-          9.880747795684826,
-          9.34235459288224,
-          8.84840455579881,
-          10.365836052110406,
-          11.312744185844057,
-          9.55661480040479,
-          10.566648513566786,
-          10.631824560750546,
-          9.558530597869657,
-          -11.269121150412802,
-          -12.314157341314388,
-          12.001202718812358,
-          -9.839634047663017,
-          10.873228055432923,
-          10.011040412312292,
-          9.814927389162422,
-          7.743815405812309,
-          10.545317596080734,
-          10.339205174867937,
-          10.193612515243743,
-          -8.99694370355946,
-          -11.345482648139264,
-          11.010185069134478,
-          9.636200467961466,
-          11.819038227497673,
-          9.731249622727743,
-          11.813979821185168,
-          -9.67948964185658,
-          7.324349369502453,
-          9.546831595541779,
-          11.384116978493374,
-          8.60713006793866,
-          -11.008534846640876,
-          9.120508293101384,
-          -10.346589807812512,
-          7.950163022523199,
-          10.967189250796837,
-          -10.068396262244148,
-          10.594599196782223,
-          9.814358938867285,
-          10.603036325638769,
-          -9.507385488240397,
-          -9.511081405109277,
-          11.323574892748757,
-          -10.519454863462123,
-          10.349011744914305,
-          10.51403218086384,
-          10.872727173730446,
-          10.641567440761994,
-          10.58917908340079,
-          10.041692704565124,
-          10.996284936672367,
-          9.814946632487224,
-          -10.72303765065198,
-          10.014453801981148,
-          8.726768913515212,
-          10.683519518447577,
-          9.118401174777164,
-          9.211452955337053,
-          8.787846775967335,
-          9.45394126752168,
-          10.241211123839726,
-          10.095323131233076,
-          9.70311983432276,
-          9.698656687068274,
-          10.039814392964288,
-          10.149863656963198,
-          9.261172396653652,
-          9.143307252500765,
-          9.965465920663183,
-          10.485234786673985,
-          8.658424531516687,
-          10.028619586417179,
-          9.519813163383416,
-          11.503866406582834,
-          9.991056281247644,
-          10.710830801823656,
-          -10.523128062416411,
-          10.379166191481112,
-          9.560933656148917,
-          9.666355724812961,
-          -9.570358442539144,
-          8.70113014275702,
-          10.452531190453714,
-          11.008401689552414,
-          10.22607452255453,
-          -9.534054683680772,
-          11.669542960201102,
-          -11.628109461610862,
-          9.249320377027775,
-          9.268017855372339,
-          10.229274277963182,
-          8.74686871531059,
-          9.92114356210314,
-          10.519855723601625,
-          11.062801081038948,
-          10.50167516689743,
-          9.357189950837997,
-          8.094334973630982,
-          9.499724904170348,
-          10.295146634514385,
-          8.969747763186652,
-          8.462918072140354,
-          -8.48624273404861,
-          9.274486675180743,
-          9.873812997594587,
-          10.552574528217551,
-          9.576464465925067,
-          10.073548850209708,
-          9.520842412867879,
-          -11.211195700475582,
-          12.975914496945443,
-          -9.58260425073259,
-          10.567245859714884,
-          10.224401915133082,
-          10.006897340370783,
-          10.180868662692887,
-          8.924844373676919,
-          10.48519470910566,
-          12.695838620346816,
-          9.201547536678527,
-          9.953317534834301,
-          10.018333133265495,
-          -8.869945943615066,
-          10.604820231735738,
-          10.423352984232942,
-          10.118886376262221,
-          10.6958675300022,
-          10.225435541030233,
-          -10.866282887503282,
-          -10.05685335178765,
-          9.873396640310283,
-          -11.203549907473171,
-          -10.42189152593294,
-          9.885118104248006,
-          -9.359013085001006,
-          -10.922617967917013,
-          -10.293771765577173,
-          8.575432080422994,
-          10.280494595296148,
-          8.44177762685622,
-          9.701749422997468,
-          -10.677710708031604,
-          10.04981082018646,
-          10.690755958508229,
-          9.75809290838308,
-          8.639849948720938,
-          8.22718522525064,
-          10.498055462567345,
-          10.251383378875257,
-          11.415655711555594,
-          10.46110711731237,
-          10.163819611788892,
-          9.586811580289188,
-          9.866233545386605,
-          9.759618016906986,
-          11.263779161201558,
-          -9.068298716277875,
-          -7.94380550245261,
-          8.829589477639084,
-          9.394628971617287,
-          -10.835697799730514,
-          -10.71250274526803,
-          9.139857738230763,
-          9.659001446409812,
-          8.241032038735385,
-          11.153813539801272,
-          9.792811001958041,
-          12.196989805535733,
-          -10.700057955205818,
-          11.458662899983427,
-          10.681592846220296,
-          -10.125492481981453,
-          9.721321773245709,
-          10.82233546778987,
-          9.27071899800074,
-          12.157371874145525,
-          11.581043047590251,
-          10.27622367211569,
-          9.40027644446564,
-          10.455464028731981,
-          11.325717481166038,
-          11.303745341546936,
-          8.468391412950062,
-          -8.555275689021713,
-          9.693359464634135,
-          -8.824577137305564,
-          -8.218633221786378,
-          10.170278283843546,
-          -9.628898867109262,
-          9.33733721909058,
-          9.597904698102731,
-          9.235694965025129,
-          10.725885819936652,
-          -10.666176469377167,
-          11.321639885047436,
-          -11.325841051996258,
-          9.602779171850774,
-          8.82986627397529,
-          10.901020627875672,
-          9.118766843612532,
-          10.316008096476313,
-          7.524086170069129,
-          7.688890487797247,
-          -10.669831736914858,
-          9.154031384716836,
-          9.573715660442724,
-          9.687968079194945,
-          -11.043037451368077,
-          9.747627158203295,
-          9.710287036506552,
-          -9.970994427955397,
-          8.973845386697924,
-          7.94108467971455,
-          11.244541040909548,
-          -9.597191272250877,
-          10.596496112750284,
-          9.804746554555768,
-          -10.30122816545812,
-          9.14852726265331,
-          10.019871433645838,
-          11.532839834284543,
-          10.624092595953753,
-          10.991341695013748,
-          -10.840170010706784,
-          9.831722185926475,
-          -11.097899157595243,
-          11.265127175031692,
-          10.555077817707792,
-          11.136198039808725,
-          9.557075824715076,
-          10.493039887546965,
-          11.452955245738528,
-          -11.037379035258612,
-          10.895121763872138,
-          8.06567370104311,
-          11.380555366452217,
-          -10.320005802010174,
-          11.837590291669914,
-          9.191159521224208,
-          9.542173586592591,
-          -7.933209967586988,
-          9.187826658153547,
-          11.009624357318462,
-          9.255032999493805,
-          -9.912288964901578,
-          10.630806486812265,
-          9.362347708659977,
-          -9.696071950984022,
-          8.715802519258483,
-          10.55199570028208,
-          -11.88331003746198,
-          9.52293127725085,
-          9.669302631445571,
-          -10.425443836981838,
-          8.594779835693966,
-          9.264745730023057,
-          9.266861610120937,
-          -8.654642661338587,
-          10.072326824297694,
-          10.837661655160648,
-          -10.479066993993703,
-          9.380626120865106,
-          9.48833315440421,
-          10.210694873766004,
-          8.663989082064194,
-          9.937964315064125,
-          8.782359626757446,
-          -10.557376468848293,
-          10.783146873155745,
-          10.2222123581934,
-          11.654294506007881,
-          -8.706079015143763,
-          8.924857733781629,
-          11.263247036240845,
-          9.627353980892043,
-          8.819977856590766,
-          -9.298071080389407,
-          9.772755709899657,
-          -8.966730830424918,
-          -8.934379250227138,
-          -7.815794178459008,
-          -10.199181601738712,
-          10.802980240180347,
-          10.157891323008224,
-          9.84350081731568,
-          10.375581605009495,
-          9.669572387086957,
-          -10.522076859470545,
-          9.148292403396209,
-          10.838865025399247,
-          9.931325288673897,
-          8.95398892985882,
-          9.867185295535434,
-          10.376958418184392,
-          9.280558347980978,
-          -10.53305321869413,
-          -8.58177299139479,
-          8.879930117363202,
-          8.680611423657002,
-          10.127814593362215,
-          10.43554369945796,
-          9.135475412930518,
-          9.786887681710281,
-          11.105125684409375,
-          -10.98199465592725,
-          10.564972420759261,
-          10.049060019644342,
-          11.156544010236866,
-          11.516708728866185,
-          -12.019338774598594,
-          8.931316797449874,
-          7.765281412035182,
-          -9.616987587552426,
-          10.877415684963257,
-          10.217466018432019,
-          9.902282021007885,
-          -9.991099711050712,
-          8.900816252937831,
-          -9.390680279958174,
-          9.154971720663768,
-          12.601520217645131,
-          10.531327614915758,
-          12.283009336169515,
-          10.393744439801969,
-          10.020377934081154,
-          9.432185585790089,
-          9.456313407785862,
-          10.290221952195866,
-          -9.618674121552127,
-          8.100228623812834,
-          -9.869842165077907,
-          8.879637794105603,
-          9.765698326731025,
-          11.064478231890208,
-          9.810418067368671,
-          10.461375224001072,
-          9.349301481614672,
-          9.875212400604417,
-          11.510464091281017,
-          10.573073546162425,
-          10.71461830238618,
-          9.643098699818198,
-          9.643359728041203,
-          10.224833378514225,
-          10.712195298970096,
-          9.389534286781604,
-          11.210570159033065,
-          11.339193480457725,
-          7.969227145492648,
-          -9.941680003794376
+          -0.2265770212146374,
+          -3.9366589562275687,
+          -0.1759931312165346,
+          -0.9076863107622177,
+          1.12503288945965,
+          -1.6732571928475202,
+          -1.561177827907739,
+          2.6161642526306235,
+          3.4262432011509807,
+          -2.5389091600306406,
+          0.6667422666801261,
+          -2.960591342058013,
+          1.1754658358467331,
+          -2.6865527247961545,
+          0.39094498642235376,
+          -0.3956267542493004,
+          0.21923148657327474,
+          -3.7508525609718752,
+          1.0821070691211307,
+          -3.236987962542482,
+          -1.123324268329648,
+          -3.158414197990652,
+          1.0736985762571098,
+          -3.5819613587727037,
+          -0.10783483949022488,
+          2.3806316116228894,
+          0.9119047880607791,
+          0.3876713099050457,
+          0.31411839411808806,
+          0.6691913519761616,
+          -2.423137733969136,
+          -0.6335101502900025,
+          -1.8804136389339088,
+          1.7147877240744194,
+          0.6115019926498952,
+          -3.952928452780965,
+          -3.2949352119922475,
+          -0.7437038970826118,
+          -0.2782827510404209,
+          0.8212473293647271,
+          -4.000673616214475,
+          1.0753839221675197,
+          1.9886906437359357,
+          0.7415060220459297,
+          -1.3310314190645394,
+          -2.910353059592261,
+          -0.33908913167267896,
+          1.9819084649698446,
+          -0.9555164801292566,
+          -2.464602099792093,
+          2.462978206326672,
+          2.146200885897186,
+          -3.3636245745461792,
+          2.0533771698180336,
+          3.2496462555755663,
+          1.0116734071878133,
+          -3.121858082355635,
+          -1.2692738420829737,
+          -1.168440048392437,
+          -2.3074225821183276,
+          -1.550624324940471,
+          3.3976816438593778,
+          -1.2833760554649465,
+          2.2494939634408837,
+          -3.242942288394825,
+          -0.18289444811535072,
+          -0.21562280316106452,
+          -2.0505024668264342,
+          -3.4052117144302714,
+          1.3286691944820026,
+          2.0268126243690734,
+          1.5351001816425187,
+          2.506421361622876,
+          -2.077372366996158,
+          0.39748677732018756,
+          2.995933285759806,
+          -3.554940506272318,
+          3.1874505414669496,
+          1.3220014834183305,
+          3.266973683783478,
+          -2.105924255484598,
+          -0.058902683049268934,
+          0.2882719137295915,
+          0.4147376153150768,
+          -3.7667019547586786,
+          -2.0540448187517035,
+          2.910516609261853,
+          2.7348433686631095,
+          -3.070935507747531,
+          -3.846862122923807,
+          3.39336030576574,
+          1.347747954683614,
+          2.917359591052529,
+          -2.552771487236461,
+          -2.2052777656722977,
+          2.164841470336264,
+          0.08189128604519613,
+          2.336077074874728,
+          -0.6041741512674728,
+          0.41075470519594415,
+          -2.45318158672469,
+          -0.8539481353496647,
+          -3.960297238826402,
+          -0.04589434790557423,
+          -3.320003852012171,
+          -2.6652773993298773,
+          0.34797597078848597,
+          -1.6288581875845431,
+          3.017124351781857,
+          1.773345089984148,
+          0.05558496593434459,
+          -0.8679697504101793,
+          0.6441942340460027,
+          1.7449015061024156,
+          1.8470223916538933,
+          -0.4416988070482688,
+          -2.7049620709062374,
+          -0.4074061928176409,
+          -2.7152484217041413,
+          1.2180919740414886,
+          -2.856888376833208,
+          0.5717828421656188,
+          -2.209073210299934,
+          -2.46673106525217,
+          3.2527176001423648,
+          2.440137535464596,
+          2.2822400518592625,
+          -1.7257175174016588,
+          2.625061579226294,
+          2.9717609672206127,
+          -0.4733064541014653,
+          0.3906230735085803,
+          1.7858345483317777,
+          -1.9642230222106263,
+          -2.661852258483366,
+          -1.9676103524403032,
+          2.039679591620918,
+          2.4597603298576374,
+          3.4179163560421957,
+          -0.11444783717163709,
+          0.31891975229172154,
+          2.6185203250605182,
+          -4.00758095721129,
+          -0.057582197544854274,
+          1.482643556293593,
+          -2.6052765606989494,
+          -0.11483656594077818,
+          2.5190345189703036,
+          -0.9064420668355329,
+          -2.0056649316983615,
+          -3.7215963317631755,
+          -3.502346522685024,
+          -2.8194903854718003,
+          0.7559140859753226,
+          0.9976788606971017,
+          -3.683174969740482,
+          -2.4003498263054004,
+          0.208293291977256,
+          -3.437465296239252,
+          1.6880761885641142,
+          -1.1163271995788753,
+          3.2780909320791167,
+          -3.1963309186091795,
+          -0.4186065630058815,
+          2.2999243197141483,
+          2.4720142518328263,
+          2.9925121382422795,
+          1.170698112248573,
+          -2.712919438840703,
+          -1.5456715798879572,
+          -1.7691554796204834,
+          1.6661772385766405,
+          -0.4549970080342822,
+          -2.204621660477659,
+          -0.69929044136892,
+          -1.107243560162701,
+          -0.3192601571129594,
+          0.6080832955073028,
+          1.6259011760204158,
+          2.282005307951171,
+          -0.17665091239687625,
+          1.3091831627036656,
+          3.0702242952485257,
+          -3.7110754933777037,
+          -3.1293417269710564,
+          -0.762725454077247,
+          0.42520545639760066,
+          0.20109584784687407,
+          -0.8185078717378014,
+          2.8531016040653405,
+          -0.8588230746520344,
+          -2.1683602535263544,
+          0.9184908313844256,
+          2.870396255273773,
+          -1.0255450777786579,
+          -0.6139092515565157,
+          1.123448336972623,
+          -3.7539038499303867,
+          -2.075319581121636,
+          3.106008704593373,
+          -2.8168190563151096,
+          -3.8985279280346576,
+          -2.468342132314432,
+          2.203844801949037,
+          -2.63954288964336,
+          0.8283771847570662,
+          -0.5024631973728426,
+          -2.849433926975985,
+          0.8258591448057331,
+          -3.130983574907109,
+          -3.2548802983072425,
+          -2.4562306546549326,
+          -1.939839590552031,
+          -2.5105703470577514,
+          2.3008180111102083,
+          -3.2562584466622564,
+          -1.3227127312558582,
+          1.8783770549249894,
+          0.5154543569919747,
+          -1.9028249712309715,
+          0.27153159112006797,
+          -0.7959849764084126,
+          -3.016167069700841,
+          1.223099446150389,
+          1.9048013806923452,
+          3.311744200436225,
+          2.206355165897399,
+          -0.5736527062892844,
+          2.469840197963941,
+          3.367171827921428,
+          -0.007195820147715359,
+          -2.7219344853500416,
+          1.3261455144259173,
+          2.1940190054724855,
+          -0.11694566912799464,
+          -0.7189041290740685,
+          -0.27998393447773084,
+          -3.52108596785022,
+          -3.677710513301284,
+          -1.7629714535222796,
+          0.011108887645268517,
+          -1.0275631880336045,
+          1.7549093434918825,
+          0.6581970873727787,
+          -2.512288354861601,
+          2.5793402604085607,
+          2.064202667120754,
+          0.8342013161852133,
+          1.13848640201497,
+          -2.5933871969427074,
+          1.5895828334275617,
+          -2.5498906843770364,
+          -0.7549334124420759,
+          -0.5456321242574349,
+          0.053477888829749354,
+          2.97063727571141,
+          -3.009367216472311,
+          3.2136509210071447,
+          2.155228301584713,
+          -2.01610421475621,
+          2.837350983489147,
+          1.018779987196945,
+          -1.9594616923451942,
+          -3.645497632550152,
+          -0.258715697187367,
+          0.21674911774677152,
+          2.6943802673459967,
+          1.8558798514332207,
+          -0.9342757428155544,
+          -3.9673931087357235,
+          0.5149023662332448,
+          2.777531324834528,
+          0.7554252438165472,
+          2.3187905209507136,
+          0.370485084297389,
+          1.141862848844931,
+          -3.2322729179627703,
+          -2.7742648680150555,
+          -0.5715584481427909,
+          3.4477430317996696,
+          -2.4387283069493617,
+          -2.418827769771354,
+          0.7218964756896664,
+          -0.1828506058799877,
+          -3.7597975891470434,
+          -2.5686087920246963,
+          -0.06870816263096113,
+          -0.3539373132142156,
+          -3.5442401734938844,
+          0.09662516522293085,
+          -0.5973718873718159,
+          0.16605928363329703,
+          2.481047773970885,
+          1.3057453363071074,
+          -0.9081324338028276,
+          0.9972457023909094,
+          0.9406442996623259,
+          0.9795726306421155,
+          -3.9355413741977157,
+          -2.802020693598573,
+          0.5560327223083625,
+          0.20868462070523996,
+          1.0103672002950228,
+          -3.3330095803879325,
+          1.3767049920423826,
+          2.8528749921373713,
+          0.7416840808926812,
+          2.224761676041929,
+          -0.7828362272416185,
+          -1.2975590524679506,
+          1.2285030918974158,
+          0.47903803773539533,
+          -3.3425009013349065,
+          2.8013549535441893,
+          0.9079920750315695,
+          -0.21049172683385065,
+          -0.5680439343357007,
+          -1.1988097021310136,
+          0.8973715003959999,
+          -2.8483964592879003,
+          -3.6886165800211916,
+          -2.6818544530014847,
+          -3.4792353700432144,
+          0.9812076764469557,
+          -3.2259886611609367,
+          -3.819939875655139,
+          1.6985998486069418,
+          -3.017811482105247,
+          -1.6923592008003414,
+          1.6252658564740505,
+          2.1630743623209483,
+          2.1000576375743982,
+          -2.352679355692149,
+          -2.0815888553742443,
+          0.2981334034574097,
+          -0.7413570690539957,
+          -0.8811945078841616,
+          -2.748156825767435,
+          -1.8784956244832176,
+          -1.3732482008866245,
+          -0.6832344307847671,
+          -1.7698231822407027,
+          -1.6702667038881458,
+          -1.5608309582093218,
+          -2.7628002570451904,
+          1.4974776883411138,
+          1.9699624894576813,
+          2.996313737218334,
+          -3.3626384126952784,
+          -3.500321466028536,
+          3.1721510478872217,
+          -0.24474887952607105,
+          -3.9367301488226083,
+          1.3247491265552798,
+          -2.7443298708280013,
+          0.9440512146460609,
+          -2.499757580708774,
+          -0.5354369917817965,
+          2.9475420594983106,
+          -1.5975355412196577,
+          -2.1104928384490567,
+          -0.6533959864556453,
+          -3.025776691986244,
+          -3.261693470619079,
+          0.6605886095396443,
+          1.8721648157646014,
+          -3.7056264270386636,
+          -1.7438399448981938,
+          -1.3059692572597341,
+          -3.588400608723129,
+          -1.1894657650557718,
+          2.586042446541142,
+          2.5691258102338237,
+          -0.4061022095727682,
+          2.0706444465617544,
+          -2.5609723945169023,
+          1.185110940703213,
+          -1.485921622108576,
+          -3.1821611431245787,
+          -3.410181178202444,
+          -3.652931520645552,
+          1.4756102157413418,
+          -3.4267770995631777,
+          2.923348557639592,
+          -3.6190351315414975,
+          1.8346215087200441,
+          1.1533965915663424,
+          -0.8107287594815986,
+          3.0745874383873266,
+          2.7451922516701783,
+          -3.494292652907006,
+          2.4190138734018687,
+          3.1435917371351927,
+          0.3000124138014826,
+          -2.629271110725756,
+          -3.67112645576396,
+          -2.7190435770856514,
+          2.0826454327077117,
+          0.9403784266822894,
+          2.323595230723642,
+          -2.4541428415579185,
+          2.0840042433711163,
+          -3.2426860990891155,
+          -3.549272963078102,
+          1.6473379862391857,
+          2.3179376363761746,
+          -0.8597924449482806,
+          1.252979593795759,
+          3.045157140418727,
+          -1.0974628848243686,
+          2.3605968966771833,
+          3.16331345707533,
+          -2.4051084147074206,
+          2.220077146508875,
+          2.7220626862288837,
+          -3.8189216056827644,
+          -2.718253609826592,
+          0.0625521037507566,
+          -0.7016643956266235,
+          1.6838351041273363,
+          1.08716909070524,
+          -0.6859482180129395,
+          -3.4117132065564,
+          -0.19055113290722314,
+          -3.8515412496878794,
+          -0.5433386837373666,
+          -1.956070042819554,
+          -2.1659377765710497,
+          -0.4417792269936225,
+          -3.6985944896428715,
+          2.7770762012348573,
+          -1.151986893993707,
+          -3.398726540605592,
+          3.1006163782104936,
+          2.0762605336377566,
+          1.5707506680885004,
+          -2.0218853813183744,
+          -2.800348936748796,
+          -0.512313202355613,
+          2.938780895374382,
+          2.791061747032451,
+          0.18170456944367963,
+          1.473204129406641,
+          1.7060211065599127,
+          1.1168758825456315,
+          -3.966408681755195,
+          0.6941915616692773,
+          0.6932747955788807,
+          3.412490342742916,
+          2.0210956159438327,
+          2.500558902240183,
+          -2.4831731938620316,
+          -2.8233096435682654,
+          -2.3983981789583346,
+          1.6889440814375245,
+          -3.8854998662207563,
+          -3.81686332784339,
+          -3.7381013007776605,
+          0.3369702954355329,
+          -3.2215824697963775,
+          0.12676860955473224,
+          -1.755256592642632,
+          -1.7650398806633443,
+          0.8156752031644308,
+          1.2841800283736537,
+          2.94651908332654,
+          -3.5038458638941665,
+          -0.11141484566264737,
+          -3.417510696259126,
+          -2.5527578581476567,
+          2.2796188136805418,
+          -3.6288870655964414,
+          -3.749457313383039,
+          2.39707447243246,
+          3.124328598101979,
+          -4.02762856296944,
+          -3.356610690653712,
+          0.23834927528530692,
+          2.440369358090738,
+          -3.3250670826853868,
+          -3.122573798436731,
+          1.3436915511798704,
+          -0.7452279669244342,
+          2.083816227407513,
+          1.7671762475985338,
+          2.2776722611065496,
+          1.5142178055838764,
+          -1.848914120221958,
+          -3.223593753833597,
+          -1.5281554125558139,
+          -1.0862767937482998,
+          3.0806472010572614,
+          3.268026557785233,
+          -1.7204626984177294,
+          3.068162499462039,
+          -3.8568650692179105,
+          -1.7476639475367253,
+          -1.034598938149454,
+          -0.2985315263019839,
+          -1.0374920311464764,
+          -0.9396145413488011,
+          1.5708201080531188,
+          1.605251851400511,
+          3.445496058381522,
+          1.6047251362492938,
+          -0.5099318601811778,
+          -1.0679589756031702,
+          -2.259993460645058,
+          1.4746120888199252,
+          1.3921461580943522,
+          2.485947287433606,
+          -2.4784227646569423,
+          -2.2047926173760906,
+          -4.013385376137424,
+          3.4425304614865935,
+          -3.205933859779178,
+          1.8608122530132656,
+          -1.3250957718505765,
+          0.0704539587810924,
+          0.9165271939201087,
+          1.2779144922534353,
+          -0.4918866158531614,
+          -3.362067034392455,
+          0.545604205920931,
+          -3.4395435867779596,
+          -2.3155867557455823,
+          -2.127112861922373,
+          -2.754292952993126,
+          1.5228445392705643,
+          2.0697497248141907,
+          -0.80714240660321,
+          -2.8167559551911214,
+          -1.1356544750221702,
+          -1.5567738683039125,
+          1.5807671233324214,
+          2.1529944297467,
+          0.6585013962324284,
+          2.2661176607468194,
+          1.9346439293950137,
+          2.9899224942356897,
+          -2.9672550444227443,
+          -3.363199017786918,
+          -0.47819793318795334,
+          -2.805197357612161,
+          0.21704560779413562,
+          -2.83720883701952,
+          -0.40411503834327744,
+          0.9792766790228935,
+          0.30064837758968643,
+          3.112430920450839,
+          -2.509445130985398,
+          -3.7630006991493925,
+          -4.039548737831614,
+          2.7803869934140133,
+          -3.574079902740843,
+          -0.4032667410059543,
+          1.2531225258922234,
+          1.0687963600061368,
+          -2.2344711169855898,
+          -0.07296918628561189,
+          -3.83790798625332,
+          0.5746409922163815,
+          -2.3749808819417453,
+          -2.197364506522253,
+          -3.092686118550377,
+          -0.1721033106552703,
+          3.1497600899134666,
+          3.238063857365373,
+          2.1054516491200213,
+          -3.940630372149734,
+          -1.5892783936236499,
+          1.6194330840212423,
+          3.019334769723101,
+          1.2985822907478877,
+          0.3150674985676005,
+          0.09433881311209369,
+          1.9589740010370944,
+          -0.3654824713827143,
+          -1.1181550106357654,
+          2.7814224596550545,
+          -0.7655114144733846,
+          -2.6362460921989452,
+          1.7278867777476563,
+          -0.5347299687065212,
+          0.32469916630710216,
+          -3.772980115050943,
+          -0.6266654021597429,
+          1.3626881771425765,
+          -1.0199117932543773,
+          -2.2119656445795286,
+          -0.14194916910621336,
+          1.1107367339898024,
+          -0.31963020994134306,
+          -3.194637855727305,
+          2.445375244716061,
+          -3.247004915289552,
+          -1.5114801355574037,
+          -2.6518315629368665,
+          1.2064337673302745,
+          -2.0448375880285132,
+          -1.093671498805433,
+          1.338636699180614,
+          1.0579414665424842,
+          -3.7967535276138213,
+          -1.0759668642760651,
+          -0.7593179534740662,
+          -0.10200008039793973,
+          -2.274053818822603,
+          0.559090117053068,
+          -2.6442686940746913,
+          -2.8228230832874095,
+          0.12331703177474651,
+          -1.2468590876265946,
+          2.229828035858745,
+          0.4135370427883931,
+          2.7908565443505724,
+          -3.430692801254315,
+          -1.9369068895573012,
+          2.425965121499247,
+          2.2157148180097685,
+          3.17655421826617,
+          -3.96629056543364,
+          1.922210194308179,
+          1.942862528970002,
+          -2.3730952679377855,
+          1.9163171954997162,
+          -3.369946190315523,
+          -2.969914447456615,
+          1.7797889073605972,
+          -2.1093763418838236,
+          1.6244774302636777,
+          -0.6344329304535803,
+          -1.7459119212926568,
+          3.298669765883113,
+          -2.464233325723619,
+          0.676796825112751,
+          -2.608630938958834,
+          -2.913329716937299,
+          2.6715706031486457,
+          1.8007176806323688,
+          1.8665389067950624,
+          -3.5289487336778382,
+          -2.880085406951266,
+          0.593933643678775,
+          -0.34084036621421276,
+          -0.706547919370824,
+          1.7563592296745334,
+          0.1444762879150039,
+          0.8407000544560299,
+          -1.3622045658819881,
+          -2.686096466879251,
+          0.401811421526717,
+          -2.0171959147233154,
+          -1.5787907046204017,
+          1.7736458089956484,
+          -1.133639621335532,
+          -0.4752095903775815,
+          1.4987131783622294,
+          -0.09673243184931923,
+          -3.6112951541430762,
+          2.4124767871874697,
+          -0.24130852118707447,
+          -2.6379750656365175,
+          -1.9935356850751185,
+          -2.2821511136728985,
+          -2.764257786253233
          ]
         },
         {
@@ -27351,2677 +27321,2677 @@
          "scene": "scene4",
          "showlegend": false,
          "text": [
-          "example_0",
-          "example_3",
-          "example_5",
-          "example_6",
-          "example_7",
-          "example_9",
-          "example_10",
-          "example_12",
-          "example_18",
-          "example_24",
-          "example_25",
-          "example_27",
-          "example_28",
-          "example_31",
-          "example_33",
-          "example_38",
-          "example_39",
-          "example_41",
-          "example_42",
-          "example_47",
-          "example_48",
-          "example_52",
-          "example_54",
-          "example_55",
-          "example_57",
-          "example_60",
-          "example_62",
-          "example_66",
-          "example_68",
-          "example_74",
-          "example_77",
-          "example_79",
-          "example_80",
-          "example_82",
-          "example_83",
-          "example_85",
-          "example_86",
-          "example_88",
-          "example_90",
-          "example_92",
-          "example_94",
-          "example_96",
-          "example_97",
-          "example_102",
-          "example_104",
-          "example_105",
-          "example_106",
-          "example_108",
-          "example_110",
-          "example_113",
-          "example_117",
-          "example_125",
-          "example_126",
-          "example_129",
-          "example_131",
-          "example_132",
-          "example_133",
-          "example_136",
-          "example_137",
-          "example_138",
-          "example_139",
-          "example_140",
-          "example_142",
-          "example_144",
-          "example_145",
-          "example_147",
-          "example_155",
-          "example_156",
-          "example_158",
-          "example_164",
-          "example_165",
-          "example_167",
-          "example_169",
-          "example_171",
-          "example_172",
-          "example_174",
-          "example_177",
-          "example_178",
-          "example_179",
-          "example_181",
-          "example_183",
-          "example_193",
-          "example_195",
-          "example_204",
-          "example_209",
-          "example_213",
-          "example_214",
-          "example_215",
-          "example_221",
-          "example_222",
-          "example_223",
-          "example_224",
-          "example_227",
-          "example_228",
-          "example_232",
-          "example_234",
-          "example_235",
-          "example_238",
-          "example_242",
-          "example_243",
-          "example_248",
-          "example_249",
-          "example_255",
-          "example_258",
-          "example_260",
-          "example_267",
-          "example_280",
-          "example_282",
-          "example_285",
-          "example_287",
-          "example_290",
-          "example_291",
-          "example_294",
-          "example_296",
-          "example_299",
-          "example_302",
-          "example_308",
-          "example_312",
-          "example_314",
-          "example_318",
-          "example_319",
-          "example_321",
-          "example_323",
-          "example_325",
-          "example_326",
-          "example_327",
-          "example_328",
-          "example_329",
-          "example_333",
-          "example_336",
-          "example_338",
-          "example_341",
-          "example_346",
-          "example_347",
-          "example_348",
-          "example_349",
-          "example_355",
-          "example_357",
-          "example_359",
-          "example_360",
-          "example_362",
-          "example_364",
-          "example_370",
-          "example_372",
-          "example_373",
-          "example_375",
-          "example_377",
-          "example_386",
-          "example_388",
-          "example_389",
-          "example_390",
-          "example_404",
-          "example_409",
-          "example_410",
-          "example_419",
-          "example_421",
-          "example_423",
-          "example_424",
-          "example_428",
-          "example_430",
-          "example_434",
-          "example_435",
-          "example_440",
-          "example_442",
-          "example_446",
-          "example_447",
-          "example_448",
-          "example_449",
-          "example_451",
-          "example_457",
-          "example_458",
-          "example_460",
-          "example_461",
-          "example_467",
-          "example_468",
-          "example_475",
-          "example_477",
-          "example_490",
-          "example_491",
-          "example_499",
-          "example_500",
-          "example_501",
-          "example_503",
-          "example_504",
-          "example_516",
-          "example_523",
-          "example_525",
-          "example_528",
-          "example_531",
-          "example_533",
-          "example_536",
-          "example_539",
-          "example_541",
-          "example_542",
-          "example_545",
-          "example_547",
-          "example_549",
-          "example_553",
-          "example_558",
-          "example_560",
-          "example_566",
-          "example_568",
-          "example_571",
-          "example_573",
-          "example_578",
-          "example_587",
-          "example_589",
-          "example_594",
-          "example_597",
-          "example_601",
-          "example_603",
-          "example_605",
-          "example_615",
-          "example_621",
-          "example_622",
-          "example_624",
-          "example_626",
-          "example_629",
-          "example_634",
-          "example_636",
-          "example_638",
-          "example_643",
-          "example_644",
-          "example_649",
-          "example_652",
-          "example_657",
-          "example_660",
-          "example_661",
-          "example_664",
-          "example_665",
-          "example_666",
-          "example_667",
-          "example_668",
-          "example_669",
-          "example_671",
-          "example_672",
-          "example_673",
-          "example_676",
-          "example_677",
-          "example_682",
-          "example_688",
-          "example_691",
-          "example_695",
-          "example_697",
-          "example_700",
-          "example_708",
-          "example_711",
-          "example_713",
-          "example_714",
-          "example_716",
-          "example_718",
-          "example_722",
-          "example_723",
-          "example_724",
-          "example_731",
-          "example_732",
-          "example_735",
-          "example_737",
-          "example_739",
-          "example_743",
-          "example_750",
-          "example_754",
-          "example_756",
-          "example_762",
-          "example_770",
-          "example_772",
-          "example_778",
-          "example_782",
-          "example_783",
-          "example_786",
-          "example_793",
-          "example_796",
-          "example_798",
-          "example_799",
-          "example_803",
-          "example_809",
-          "example_810",
-          "example_811",
-          "example_814",
-          "example_816",
-          "example_820",
-          "example_823",
-          "example_826",
-          "example_828",
-          "example_836",
-          "example_839",
-          "example_841",
-          "example_842",
-          "example_844",
-          "example_846",
-          "example_847",
-          "example_852",
-          "example_857",
-          "example_858",
-          "example_859",
-          "example_862",
-          "example_864",
-          "example_867",
-          "example_868",
-          "example_869",
-          "example_874",
-          "example_875",
-          "example_881",
-          "example_882",
-          "example_885",
-          "example_888",
-          "example_889",
-          "example_893",
-          "example_894",
-          "example_898",
-          "example_899",
-          "example_901",
-          "example_903",
-          "example_908",
-          "example_910",
-          "example_912",
-          "example_916",
-          "example_917",
-          "example_918",
-          "example_921",
-          "example_922",
-          "example_924",
-          "example_932",
-          "example_933",
-          "example_934",
-          "example_938",
-          "example_940",
-          "example_941",
-          "example_944",
-          "example_945",
-          "example_946",
-          "example_950",
-          "example_953",
-          "example_958",
-          "example_967",
-          "example_968",
-          "example_970",
-          "example_973",
-          "example_974",
-          "example_982",
-          "example_983",
-          "example_986",
-          "example_987",
-          "example_989",
-          "example_997",
-          "example_998",
-          "example_999",
-          "example_1000",
-          "example_1001",
-          "example_1005",
-          "example_1006",
-          "example_1007",
-          "example_1009",
-          "example_1023",
-          "example_1024",
-          "example_1026",
-          "example_1030",
-          "example_1031",
-          "example_1032",
-          "example_1034",
-          "example_1035",
-          "example_1037",
-          "example_1041",
-          "example_1046",
-          "example_1047",
-          "example_1049",
-          "example_1055",
-          "example_1057",
-          "example_1058",
-          "example_1065",
-          "example_1068",
-          "example_1074",
-          "example_1078",
-          "example_1079",
-          "example_1080",
-          "example_1085",
-          "example_1087",
-          "example_1088",
-          "example_1089",
-          "example_1091",
-          "example_1093",
-          "example_1094",
-          "example_1096",
-          "example_1097",
-          "example_1101",
-          "example_1108",
-          "example_1110",
-          "example_1111",
-          "example_1112",
-          "example_1113",
-          "example_1116",
-          "example_1118",
-          "example_1121",
-          "example_1124",
-          "example_1128",
-          "example_1131",
-          "example_1132",
-          "example_1137",
-          "example_1140",
-          "example_1142",
-          "example_1145",
-          "example_1149",
-          "example_1151",
-          "example_1155",
-          "example_1156",
-          "example_1161",
-          "example_1168",
-          "example_1169",
-          "example_1172",
-          "example_1175",
-          "example_1176",
-          "example_1178",
-          "example_1182",
-          "example_1185",
-          "example_1188",
-          "example_1190",
-          "example_1193",
-          "example_1196",
-          "example_1197",
-          "example_1200",
-          "example_1201",
-          "example_1205",
-          "example_1206",
-          "example_1208",
-          "example_1209",
-          "example_1210",
-          "example_1214",
-          "example_1216",
-          "example_1217",
-          "example_1221",
-          "example_1226",
-          "example_1230",
-          "example_1232",
-          "example_1234",
-          "example_1236",
-          "example_1237",
-          "example_1244",
-          "example_1251",
-          "example_1252",
-          "example_1253",
-          "example_1259",
-          "example_1261",
-          "example_1262",
-          "example_1268",
-          "example_1269",
-          "example_1278",
-          "example_1283",
-          "example_1285",
-          "example_1286",
-          "example_1290",
-          "example_1292",
-          "example_1293",
-          "example_1299",
-          "example_1302",
-          "example_1303",
-          "example_1310",
-          "example_1313",
-          "example_1315",
-          "example_1323",
-          "example_1328",
-          "example_1329",
-          "example_1330",
-          "example_1333",
-          "example_1334",
-          "example_1336",
-          "example_1338",
-          "example_1340",
-          "example_1341",
-          "example_1342",
-          "example_1351",
-          "example_1352",
-          "example_1353",
-          "example_1356",
-          "example_1358",
-          "example_1359",
-          "example_1361",
-          "example_1366",
-          "example_1368",
-          "example_1370",
-          "example_1374",
-          "example_1375",
-          "example_1385",
-          "example_1394",
-          "example_1401",
-          "example_1402",
-          "example_1404",
-          "example_1406",
-          "example_1407",
-          "example_1418",
-          "example_1419",
-          "example_1421",
-          "example_1422",
-          "example_1427",
-          "example_1435",
-          "example_1446",
-          "example_1449",
-          "example_1450",
-          "example_1455",
-          "example_1456",
-          "example_1457",
-          "example_1460",
-          "example_1461",
-          "example_1463",
-          "example_1466",
-          "example_1467",
-          "example_1468",
-          "example_1470",
-          "example_1473",
-          "example_1477",
-          "example_1480",
-          "example_1486",
-          "example_1488",
-          "example_1489",
-          "example_1492",
-          "example_1497",
-          "example_1501",
-          "example_1505",
-          "example_1506",
-          "example_1507",
-          "example_1512",
-          "example_1514",
-          "example_1518",
-          "example_1519",
-          "example_1521",
-          "example_1523",
-          "example_1524",
-          "example_1532",
-          "example_1536",
-          "example_1538",
-          "example_1540",
-          "example_1541",
-          "example_1544",
-          "example_1545",
-          "example_1549",
-          "example_1557",
-          "example_1561",
-          "example_1562",
-          "example_1563",
-          "example_1566",
-          "example_1572",
-          "example_1574",
-          "example_1576",
-          "example_1578",
-          "example_1580",
-          "example_1581",
-          "example_1587",
-          "example_1593",
-          "example_1599",
-          "example_1604",
-          "example_1609",
-          "example_1614",
-          "example_1617",
-          "example_1618",
-          "example_1619",
-          "example_1620",
-          "example_1622",
-          "example_1625",
-          "example_1627",
-          "example_1628",
-          "example_1630",
-          "example_1637",
-          "example_1639",
-          "example_1640",
-          "example_1641",
-          "example_1642",
-          "example_1647",
-          "example_1662",
-          "example_1665",
-          "example_1666",
-          "example_1668",
-          "example_1669",
-          "example_1673",
-          "example_1682",
-          "example_1684",
-          "example_1691",
-          "example_1692",
-          "example_1697",
-          "example_1699",
-          "example_1701",
-          "example_1704",
-          "example_1709",
-          "example_1713",
-          "example_1718",
-          "example_1728",
-          "example_1730",
-          "example_1732",
-          "example_1736",
-          "example_1741",
-          "example_1747",
-          "example_1753",
-          "example_1758",
-          "example_1760",
-          "example_1769",
-          "example_1780",
-          "example_1781",
-          "example_1784",
-          "example_1789",
-          "example_1797",
-          "example_1798",
-          "example_1799",
-          "example_1800",
-          "example_1802",
-          "example_1807",
-          "example_1812",
-          "example_1815",
-          "example_1818",
-          "example_1819",
-          "example_1822",
-          "example_1824",
-          "example_1825",
-          "example_1826",
-          "example_1829",
-          "example_1830",
-          "example_1832",
-          "example_1835",
-          "example_1838",
-          "example_1840",
-          "example_1843",
-          "example_1847",
-          "example_1848",
-          "example_1852",
-          "example_1853",
-          "example_1854",
-          "example_1855",
-          "example_1856",
-          "example_1858",
-          "example_1859",
-          "example_1866",
-          "example_1869",
-          "example_1870",
-          "example_1881",
-          "example_1884",
-          "example_1885",
-          "example_1887",
-          "example_1890",
-          "example_1894",
-          "example_1896",
-          "example_1897",
-          "example_1900",
-          "example_1901",
-          "example_1919",
-          "example_1921",
-          "example_1924",
-          "example_1927",
-          "example_1931",
-          "example_1933",
-          "example_1934",
-          "example_1938",
-          "example_1942",
-          "example_1943",
-          "example_1944",
-          "example_1954",
-          "example_1956",
-          "example_1958",
-          "example_1961",
-          "example_1964",
-          "example_1967",
-          "example_1970",
-          "example_1971",
-          "example_1973",
-          "example_1977",
-          "example_1983",
-          "example_1986",
-          "example_1991",
-          "example_1992",
-          "example_1996"
+          "666_l_1_m-0_1.42-1_0.04-2_0.58-3_0.4",
+          "667_l_1_m-0_1.07-1_0.13-2_0.08-3_0.11",
+          "668_l_1_m-0_0.1-1_0.1-2_0.09-3_0.58",
+          "669_l_1_m-0_0.99-1_0.44-2_0.12-3_1.24",
+          "670_l_1_m-0_0.45-1_0.08-2_0.78-3_0.1",
+          "671_l_1_m-0_0.28-1_0.11-2_0.12-3_0.27",
+          "672_l_1_c_0_1_2-0_0.43-1_0.28-2_0.33-3_0.41",
+          "673_l_1_c_0_1_2-0_0.61-1_0.14-2_0.73-3_0.65",
+          "674_l_1_c_0_1_2-0_1.35-1_0.86-2_0.19-3_0.14",
+          "675_l_1_c_0_1_2-0_0.06-1_0.48-2_0.19-3_1.15",
+          "676_l_1_c_0_1_2-0_0.6-1_0.32-2_0.04-3_0.35",
+          "677_l_1_c_0_1_2-0_0.7-1_0.4-2_0.11-3_1.46",
+          "678_l_1_c_0_1_2-0_0.48-1_0.42-2_0.47-3_0.31",
+          "679_l_1_c_0_1_2-0_0.09-1_0.12-2_0.24-3_1.24",
+          "680_l_1_c_0_1_2-0_0.45-1_0.1-2_0.27-3_0.88",
+          "681_l_1_c_0_1_2-0_0.01-1_0.09-2_0.01-3_1.53",
+          "682_l_1_c_0_1_2-0_0.02-1_0.13-2_0.6-3_0.43",
+          "683_l_1_c_0_1_2-0_0.37-1_0.43-2_0.01-3_1.33",
+          "684_l_1_c_0_1_2-0_0.85-1_0.14-2_0.37-3_0.32",
+          "685_l_1_c_0_1_2-0_0.13-1_0.81-2_0.22-3_0.28",
+          "686_l_1_c_0_1_2-0_1.47-1_0.36-2_0.51-3_0.29",
+          "687_l_1_c_0_1_2-0_0.73-1_1.04-2_0.17-3_1.62",
+          "688_l_1_c_0_1_2-0_0.55-1_0.14-2_0.05-3_0.72",
+          "689_l_1_c_0_1_2-0_0.17-1_0.19-2_0.07-3_0.08",
+          "690_l_1_c_0_1_2-0_0.62-1_0.75-2_0.21-3_1.57",
+          "691_l_1_c_0_1_2-0_1.1-1_0.23-2_0.17-3_0.56",
+          "692_l_1_c_0_1_2-0_0.36-1_0.43-2_0.66-3_0.14",
+          "693_l_1_c_0_1_2-0_0.31-1_0.04-2_0.05-3_0.44",
+          "694_l_1_c_0_1_2-0_0.03-1_0.19-2_0.44-3_0.45",
+          "695_l_1_c_0_1_2-0_0.33-1_0.03-2_0.11-3_0.86",
+          "696_l_1_c_0_1_2-0_1.0-1_0.88-2_0.06-3_0.11",
+          "697_l_1_c_0_1_2-0_0.04-1_0.22-2_0.36-3_0.84",
+          "698_l_1_c_0_1_2-0_0.4-1_0.25-2_0.96-3_0.07",
+          "699_l_1_c_0_1_2-0_0.04-1_0.01-2_0.26-3_0.31",
+          "700_l_1_c_0_1_2-0_1.03-1_0.19-2_0.27-3_0.75",
+          "701_l_1_c_0_1_2-0_0.24-1_0.15-2_0.41-3_1.58",
+          "702_l_1_c_0_1_2-0_0.29-1_0.73-2_0.21-3_0.48",
+          "703_l_1_c_0_1_2-0_0.65-1_0.99-2_0.64-3_1.27",
+          "704_l_1_c_0_1_2-0_0.92-1_0.5-2_0.63-3_0.65",
+          "705_l_1_c_0_1_2-0_0.37-1_0.37-2_0.14-3_0.71",
+          "706_l_1_c_0_1_2-0_0.07-1_0.61-2_0.6-3_1.57",
+          "707_l_1_c_0_1_2-0_0.02-1_0.81-2_0.44-3_1.63",
+          "708_l_1_c_0_1_2-0_0.42-1_0.4-2_0.17-3_0.57",
+          "709_l_1_c_0_1_2-0_0.05-1_0.47-2_0.03-3_0.71",
+          "710_l_1_c_0_1_2-0_0.34-1_0.05-2_1.03-3_0.1",
+          "711_l_1_c_0_1_3-0_0.31-1_0.36-2_0.38-3_0.28",
+          "712_l_1_c_0_1_2-0_0.41-1_0.28-2_0.42-3_0.34",
+          "713_l_1_c_0_1_3-0_0.22-1_0.0-2_0.46-3_0.21",
+          "714_l_1_c_0_1_2-0_0.1-1_0.73-2_0.14-3_0.31",
+          "715_l_1_c_0_1_3-0_0.08-1_0.15-2_1.46-3_0.02",
+          "716_l_1_c_0_1_2-0_0.3-1_0.94-2_0.06-3_1.62",
+          "717_l_1_c_0_1_3-0_0.21-1_0.0-2_0.93-3_0.06",
+          "718_l_1_c_0_1_2-0_1.08-1_0.03-2_0.09-3_0.45",
+          "719_l_1_c_0_1_3-0_0.18-1_0.92-2_1.72-3_0.29",
+          "720_l_1_c_0_1_2-0_0.07-1_0.03-2_0.03-3_0.56",
+          "721_l_1_c_0_1_3-0_0.42-1_0.81-2_1.23-3_0.18",
+          "722_l_1_c_0_1_2-0_0.08-1_0.78-2_0.04-3_2.01",
+          "723_l_1_c_0_1_3-0_0.64-1_0.25-2_0.52-3_0.12",
+          "724_l_1_c_0_1_2-0_0.25-1_1.61-2_0.23-3_1.07",
+          "725_l_1_c_0_1_3-0_0.28-1_0.42-2_0.63-3_0.19",
+          "726_l_1_c_0_1_2-0_0.2-1_0.49-2_0.29-3_0.86",
+          "727_l_1_c_0_1_3-0_0.15-1_1.58-2_0.77-3_0.47",
+          "728_l_1_c_0_1_2-0_0.15-1_0.51-2_0.15-3_0.14",
+          "729_l_1_c_0_1_3-0_1.1-1_0.03-2_0.87-3_0.14",
+          "730_l_1_c_0_1_2-0_0.11-1_0.39-2_0.01-3_0.53",
+          "731_l_1_c_0_1_3-0_0.19-1_0.78-2_1.61-3_0.07",
+          "732_l_1_c_0_1_2-0_0.39-1_0.52-2_0.39-3_0.81",
+          "733_l_1_c_0_1_3-0_0.37-1_0.18-2_1.78-3_0.3",
+          "734_l_1_c_0_1_2-0_0.18-1_1.04-2_0.05-3_0.87",
+          "735_l_1_c_0_1_3-0_0.03-1_0.47-2_1.25-3_0.23",
+          "736_l_1_c_0_1_2-0_0.86-1_0.48-2_0.68-3_0.23",
+          "737_l_1_c_0_1_3-0_1.23-1_0.66-2_1.32-3_0.05",
+          "738_l_1_c_0_1_2-0_1.06-1_0.31-2_0.02-3_0.8",
+          "739_l_1_c_0_1_3-0_0.09-1_0.08-2_0.05-3_0.21",
+          "740_l_1_c_0_1_2-0_0.31-1_0.62-2_0.63-3_0.57",
+          "741_l_1_c_0_1_3-0_0.54-1_0.86-2_0.71-3_0.39",
+          "742_l_1_c_0_1_2-0_0.77-1_1.11-2_0.52-3_0.79",
+          "743_l_1_c_0_1_3-0_1.73-1_0.33-2_0.26-3_0.35",
+          "744_l_1_c_0_1_2-0_0.28-1_0.73-2_0.08-3_0.9",
+          "745_l_1_c_0_1_3-0_0.33-1_0.46-2_0.9-3_0.01",
+          "746_l_1_c_0_1_2-0_0.42-1_0.05-2_0.58-3_0.7",
+          "747_l_1_c_0_1_3-0_0.05-1_1.24-2_1.46-3_0.1",
+          "748_l_1_c_0_1_2-0_0.2-1_0.37-2_0.09-3_0.61",
+          "749_l_1_c_0_1_3-0_0.02-1_0.93-2_0.71-3_0.01",
+          "750_l_1_c_0_1_2-0_0.16-1_0.28-2_0.71-3_0.12",
+          "751_l_1_c_0_1_3-0_0.17-1_0.61-2_1.7-3_0.65",
+          "752_l_1_c_0_1_2-0_0.37-1_0.13-2_0.07-3_0.46",
+          "753_l_1_c_0_1_3-0_0.41-1_1.05-2_0.49-3_0.37",
+          "754_l_1_c_0_1_2-0_0.42-1_0.14-2_0.31-3_0.36",
+          "755_l_1_c_0_1_3-0_0.47-1_0.2-2_0.85-3_0.23",
+          "756_l_1_c_0_1_2-0_0.08-1_0.19-2_0.21-3_0.15",
+          "757_l_1_c_0_1_3-0_0.18-1_0.68-2_0.13-3_0.28",
+          "758_l_1_c_0_1_2-0_0.06-1_0.53-2_0.44-3_0.15",
+          "759_l_1_c_0_1_3-0_0.5-1_0.18-2_1.22-3_0.01",
+          "760_l_1_c_0_1_2-0_0.05-1_0.03-2_0.12-3_0.34",
+          "761_l_1_c_0_1_3-0_0.18-1_0.43-2_1.69-3_0.4",
+          "762_l_1_c_0_1_2-0_0.37-1_0.14-2_0.07-3_0.43",
+          "763_l_1_c_0_1_3-0_0.06-1_0.28-2_0.84-3_0.27",
+          "764_l_1_c_0_1_2-0_0.03-1_0.09-2_0.04-3_1.16",
+          "765_l_1_c_0_1_3-0_0.24-1_0.65-2_0.36-3_0.27",
+          "766_l_1_c_0_1_2-0_0.36-1_0.14-2_0.35-3_1.2",
+          "767_l_1_c_0_1_3-0_0.02-1_0.36-2_0.95-3_0.25",
+          "768_l_1_c_0_1_2-0_0.1-1_0.08-2_0.34-3_0.78",
+          "769_l_1_c_0_1_3-0_0.53-1_0.32-2_1.77-3_0.28",
+          "770_l_1_c_0_1_2-0_0.55-1_0.28-2_0.5-3_0.84",
+          "771_l_1_c_0_1_3-0_0.1-1_0.03-2_0.74-3_0.04",
+          "772_l_1_c_0_1_2-0_0.18-1_0.0-2_0.73-3_0.38",
+          "773_l_1_c_0_1_3-0_0.09-1_0.59-2_0.5-3_0.13",
+          "774_l_1_c_0_1_2-0_0.37-1_0.89-2_0.54-3_1.03",
+          "775_l_1_c_0_1_3-0_0.29-1_0.01-2_1.27-3_0.22",
+          "776_l_1_c_0_1_2-0_0.12-1_0.21-2_0.26-3_0.05",
+          "777_l_1_c_0_1_3-0_0.07-1_0.44-2_1.03-3_0.46",
+          "778_l_1_c_0_1_2-0_0.18-1_0.34-2_0.42-3_0.07",
+          "779_l_1_c_0_1_3-0_0.85-1_0.35-2_0.29-3_0.33",
+          "780_l_1_c_0_1_2-0_0.29-1_0.43-2_0.21-3_1.24",
+          "781_l_1_c_0_1_3-0_0.84-1_0.15-2_0.73-3_0.09",
+          "782_l_1_c_0_1_2-0_0.08-1_0.11-2_0.09-3_1.07",
+          "783_l_1_c_0_1_3-0_0.59-1_0.51-2_0.24-3_0.15",
+          "784_l_1_c_0_1_2-0_1.61-1_0.67-2_0.1-3_0.77",
+          "785_l_1_c_0_1_3-0_0.88-1_0.43-2_0.14-3_0.27",
+          "786_l_1_c_0_1_2-0_0.31-1_0.26-2_0.17-3_0.07",
+          "787_l_1_c_0_1_3-0_1.39-1_0.51-2_0.31-3_0.31",
+          "788_l_1_c_0_1_2-0_0.08-1_1.23-2_0.29-3_0.59",
+          "789_l_1_c_0_1_3-0_0.58-1_0.11-2_0.54-3_0.03",
+          "790_l_1_c_0_1_2-0_0.2-1_0.01-2_0.36-3_0.13",
+          "791_l_1_c_0_1_3-0_0.47-1_0.22-2_0.95-3_0.01",
+          "792_l_1_c_0_1_2-0_0.87-1_0.0-2_0.13-3_0.65",
+          "793_l_1_c_0_1_3-0_0.39-1_0.17-2_1.03-3_0.08",
+          "794_l_1_c_0_1_2-0_0.96-1_0.06-2_0.15-3_0.72",
+          "795_l_1_c_0_1_3-0_0.18-1_0.01-2_0.29-3_0.2",
+          "796_l_1_c_0_1_2-0_0.81-1_0.34-2_0.35-3_0.06",
+          "797_l_1_c_0_1_3-0_0.07-1_0.32-2_0.43-3_0.35",
+          "798_l_1_c_0_1_2-0_0.3-1_1.08-2_0.46-3_0.32",
+          "799_l_1_c_0_1_3-0_0.12-1_0.12-2_1.17-3_0.33",
+          "800_l_1_c_0_1_2-0_0.14-1_0.84-2_0.15-3_0.74",
+          "801_l_1_c_0_1_3-0_0.7-1_0.21-2_0.9-3_0.5",
+          "802_l_1_c_0_1_2-0_0.36-1_0.22-2_0.48-3_1.13",
+          "803_l_1_c_0_1_3-0_0.35-1_0.28-2_0.4-3_0.12",
+          "804_l_1_c_0_1_2-0_0.63-1_0.27-2_0.08-3_0.34",
+          "805_l_1_c_0_1_3-0_0.43-1_0.53-2_1.43-3_0.52",
+          "806_l_1_c_0_1_2-0_0.23-1_0.3-2_0.21-3_0.24",
+          "807_l_1_c_0_1_3-0_0.33-1_0.93-2_0.25-3_0.51",
+          "808_l_1_c_0_1_2-0_0.21-1_1.44-2_0.65-3_1.33",
+          "809_l_1_c_0_1_3-0_0.83-1_0.64-2_0.92-3_0.06",
+          "810_l_1_c_0_1_2-0_0.46-1_0.22-2_0.2-3_1.21",
+          "811_l_1_c_0_1_3-0_0.83-1_0.15-2_0.21-3_0.01",
+          "812_l_1_c_0_1_2-0_0.22-1_0.02-2_0.35-3_0.22",
+          "813_l_1_c_0_1_3-0_0.42-1_0.47-2_1.47-3_0.2",
+          "814_l_1_c_0_1_2-0_0.52-1_0.8-2_0.06-3_0.94",
+          "815_l_1_c_0_1_3-0_0.66-1_0.52-2_1.92-3_0.36",
+          "816_l_1_c_0_1_2-0_0.05-1_0.11-2_0.11-3_0.56",
+          "817_l_1_c_0_1_3-0_0.51-1_0.21-2_0.62-3_0.26",
+          "818_l_1_c_0_1_2-0_1.26-1_0.53-2_0.01-3_0.96",
+          "819_l_1_c_0_1_3-0_0.19-1_0.09-2_0.2-3_0.48",
+          "820_l_1_c_0_1_2-0_0.36-1_0.6-2_0.07-3_0.15",
+          "821_l_1_c_0_1_3-0_0.3-1_0.02-2_0.79-3_0.89",
+          "822_l_1_c_0_1_2-0_0.42-1_0.06-2_0.16-3_0.73",
+          "823_l_1_c_0_1_3-0_0.19-1_0.49-2_0.69-3_0.11",
+          "824_l_1_c_0_2_3-0_0.62-1_0.28-2_0.21-3_0.18",
+          "825_l_1_c_0_1_2-0_0.35-1_0.27-2_0.15-3_0.27",
+          "826_l_1_c_0_1_3-0_0.23-1_0.16-2_0.63-3_0.15",
+          "827_l_1_c_0_2_3-0_0.25-1_0.14-2_0.18-3_0.58",
+          "828_l_1_c_0_1_2-0_0.57-1_0.52-2_0.42-3_0.12",
+          "829_l_1_c_0_1_3-0_0.1-1_0.27-2_1.12-3_0.1",
+          "830_l_1_c_0_2_3-0_0.61-1_0.9-2_0.15-3_0.29",
+          "831_l_1_c_0_1_2-0_0.61-1_0.04-2_0.36-3_0.22",
+          "832_l_1_c_0_1_3-0_1.27-1_0.31-2_1.03-3_0.09",
+          "833_l_1_c_0_2_3-0_0.76-1_0.43-2_0.01-3_0.29",
+          "834_l_1_c_0_1_2-0_0.52-1_0.2-2_0.54-3_0.82",
+          "835_l_1_c_0_1_3-0_0.36-1_0.45-2_0.61-3_0.3",
+          "836_l_1_c_0_2_3-0_0.99-1_0.3-2_0.53-3_0.02",
+          "837_l_1_c_0_1_2-0_0.59-1_0.24-2_0.57-3_0.18",
+          "838_l_1_c_0_1_3-0_0.85-1_0.53-2_0.3-3_0.26",
+          "839_l_1_c_0_2_3-0_0.9-1_0.05-2_0.13-3_0.88",
+          "840_l_1_c_0_1_2-0_0.14-1_0.16-2_0.08-3_0.68",
+          "841_l_1_c_0_1_3-0_0.31-1_0.24-2_1.52-3_0.35",
+          "842_l_1_c_0_2_3-0_0.4-1_1.41-2_0.72-3_1.07",
+          "843_l_1_c_0_1_2-0_0.96-1_0.84-2_0.1-3_0.87",
+          "844_l_1_c_0_1_3-0_0.88-1_0.2-2_1.28-3_0.15",
+          "845_l_1_c_0_2_3-0_0.43-1_1.87-2_0.16-3_0.17",
+          "846_l_1_c_0_1_2-0_0.22-1_0.19-2_0.75-3_0.17",
+          "847_l_1_c_0_1_3-0_1.21-1_0.1-2_0.32-3_0.01",
+          "848_l_1_c_0_2_3-0_0.26-1_0.66-2_0.73-3_0.23",
+          "849_l_1_c_0_1_2-0_0.17-1_0.31-2_0.13-3_0.58",
+          "850_l_1_c_0_1_3-0_0.58-1_0.15-2_0.31-3_0.26",
+          "851_l_1_c_0_2_3-0_0.59-1_0.13-2_0.36-3_0.03",
+          "852_l_1_c_0_1_2-0_1.06-1_0.07-2_0.94-3_0.2",
+          "853_l_1_c_0_1_3-0_1.51-1_0.13-2_0.99-3_0.51",
+          "854_l_1_c_0_2_3-0_0.38-1_1.16-2_0.56-3_0.29",
+          "855_l_1_c_0_1_2-0_0.53-1_0.05-2_0.38-3_0.8",
+          "856_l_1_c_0_1_3-0_0.38-1_0.27-2_1.44-3_0.03",
+          "857_l_1_c_0_2_3-0_0.11-1_0.65-2_0.2-3_0.47",
+          "858_l_1_c_0_1_2-0_0.47-1_0.97-2_0.49-3_0.53",
+          "859_l_1_c_0_1_3-0_0.89-1_0.57-2_0.07-3_0.05",
+          "860_l_1_c_0_2_3-0_0.05-1_0.16-2_0.55-3_0.21",
+          "861_l_1_c_0_1_2-0_0.38-1_1.12-2_0.13-3_1.38",
+          "862_l_1_c_0_1_3-0_0.57-1_0.05-2_0.32-3_0.05",
+          "863_l_1_c_0_2_3-0_0.07-1_0.65-2_0.07-3_0.8",
+          "864_l_1_c_0_1_2-0_0.04-1_0.28-2_0.06-3_0.15",
+          "865_l_1_c_0_1_3-0_0.92-1_0.1-2_1.11-3_0.38",
+          "866_l_1_c_0_2_3-0_0.43-1_0.72-2_1.03-3_0.27",
+          "867_l_1_c_0_1_2-0_0.06-1_0.73-2_0.06-3_0.66",
+          "868_l_1_c_0_1_3-0_0.12-1_0.82-2_0.63-3_0.31",
+          "869_l_1_c_0_2_3-0_0.36-1_1.04-2_0.37-3_0.66",
+          "870_l_1_c_0-0_0.03-1_0.33-2_0.46-3_0.62",
+          "871_l_1_c_0-0_0.09-1_0.63-2_1.16-3_0.45",
+          "872_l_1_c_0-0_0.37-1_0.57-2_0.17-3_1.43",
+          "873_l_1_c_0-0_1.19-1_0.53-2_0.32-3_0.46",
+          "874_l_1_c_0-0_0.76-1_0.53-2_0.03-3_0.09",
+          "875_l_1_c_0-0_0.29-1_1.33-2_0.1-3_0.3",
+          "876_l_1_c_0-0_0.1-1_0.95-2_0.14-3_0.62",
+          "877_l_1_c_0-0_0.36-1_0.37-2_0.97-3_0.06",
+          "878_l_1_c_0-0_0.07-1_0.33-2_0.31-3_0.03",
+          "879_l_1_c_0-0_0.9-1_0.6-2_0.03-3_1.68",
+          "880_l_1_c_0-0_0.18-1_0.95-2_0.59-3_0.52",
+          "881_l_1_c_0-0_0.05-1_0.57-2_1.29-3_0.95",
+          "882_l_1_c_0-0_0.82-1_0.43-2_1.01-3_0.78",
+          "883_l_1_c_0-0_0.42-1_1.29-2_0.89-3_0.32",
+          "884_l_1_c_0-0_2.0-1_1.0-2_0.85-3_0.69",
+          "885_l_1_c_0-0_1.55-1_0.63-2_0.76-3_0.87",
+          "886_l_1_c_0-0_0.31-1_0.91-2_0.47-3_0.23",
+          "887_l_1_c_0-0_0.13-1_0.5-2_1.0-3_0.3",
+          "888_l_1_c_0-0_0.03-1_0.56-2_1.39-3_1.5",
+          "889_l_1_r-0_1.79-1_1.04-2_2.31-3_1.12",
+          "890_l_1_r-0_0.48-1_0.22-2_1.16-3_0.42",
+          "891_l_1_r-0_0.52-1_1.45-2_0.4-3_1.57",
+          "892_l_1_r-0_1.43-1_0.9-2_0.12-3_0.96",
+          "893_l_1_r-0_1.01-1_0.45-2_0.75-3_0.54",
+          "894_l_1_r-0_0.11-1_1.13-2_0.63-3_1.41",
+          "895_l_1_r-0_0.15-1_1.15-2_0.8-3_0.62",
+          "896_l_1_r-0_0.48-1_0.01-2_0.18-3_0.65",
+          "897_l_1_r-0_0.35-1_0.6-2_0.27-3_0.81",
+          "898_l_1_r-0_1.97-1_0.74-2_0.72-3_0.92",
+          "899_l_1_r-0_0.14-1_0.89-2_0.12-3_0.34",
+          "900_l_1_r-0_0.13-1_0.88-2_0.32-3_0.81",
+          "901_l_1_r-0_0.64-1_2.15-2_0.13-3_1.61",
+          "902_l_1_r-0_0.63-1_0.27-2_0.33-3_0.48",
+          "903_l_1_r-0_0.19-1_0.54-2_0.64-3_0.69",
+          "904_l_1_r-0_0.33-1_0.01-2_0.16-3_0.36",
+          "905_l_1_r-0_1.22-1_0.76-2_0.4-3_0.59",
+          "906_l_1_r-0_1.22-1_0.04-2_1.8-3_0.57",
+          "907_l_1_r-0_0.25-1_0.66-2_1.52-3_0.47",
+          "908_l_1_r-0_0.21-1_0.34-2_0.01-3_1.16",
+          "909_l_1_r-0_0.75-1_2.12-2_0.53-3_1.03",
+          "910_l_1_r-0_1.44-1_0.64-2_1.38-3_0.05",
+          "911_l_1_r-0_0.47-1_1.33-2_0.07-3_1.21",
+          "912_l_1_r-0_0.06-1_0.54-2_1.27-3_0.12",
+          "913_l_1_r-0_2.01-1_0.78-2_1.94-3_0.36",
+          "914_l_1_r-0_0.22-1_0.38-2_1.33-3_0.27",
+          "915_l_1_r-0_2.23-1_0.92-2_0.71-3_0.12",
+          "916_l_1_r-0_0.08-1_1.36-2_0.44-3_0.55",
+          "917_l_1_r-0_0.09-1_0.15-2_0.19-3_0.45",
+          "918_l_1_r-0_2.43-1_0.47-2_1.1-3_0.35",
+          "919_l_1_r-0_1.02-1_0.45-2_0.72-3_1.48",
+          "920_l_1_r-0_0.73-1_0.84-2_1.02-3_0.29",
+          "921_l_1_r-0_0.08-1_1.02-2_0.62-3_0.65",
+          "922_l_1_r-0_0.74-1_0.64-2_0.12-3_0.12",
+          "923_l_1_r-0_1.13-1_0.11-2_0.8-3_0.32",
+          "924_l_1_r-0_0.25-1_1.33-2_0.02-3_0.23",
+          "925_l_1_r-0_1.11-1_0.04-2_1.78-3_0.77",
+          "926_l_1_r-0_1.35-1_0.1-2_0.48-3_1.26",
+          "927_l_1_r-0_0.36-1_0.17-2_0.89-3_2.13",
+          "928_l_1_r-0_0.96-1_0.31-2_1.53-3_0.81",
+          "929_l_1_r-0_0.3-1_0.37-2_1.39-3_0.23",
+          "930_l_1_r-0_0.45-1_0.26-2_0.87-3_0.03",
+          "931_l_1_r-0_0.16-1_0.18-2_0.87-3_0.51",
+          "932_l_1_r-0_0.21-1_0.21-2_2.18-3_0.53",
+          "933_l_1_r-0_0.43-1_2.25-2_1.26-3_0.15",
+          "934_l_1_r-0_1.5-1_0.25-2_0.97-3_0.37",
+          "935_l_1_r-0_0.47-1_2.16-2_0.63-3_0.82",
+          "936_l_1_r-0_0.93-1_0.16-2_0.44-3_1.47",
+          "937_l_1_r-0_0.05-1_1.74-2_0.93-3_0.87",
+          "938_l_1_r-0_0.29-1_1.08-2_0.0-3_0.99",
+          "939_l_1_r-0_0.01-1_0.77-2_0.21-3_0.61",
+          "940_l_1_r-0_0.45-1_0.28-2_0.63-3_0.67",
+          "941_l_1_r-0_0.41-1_0.33-2_0.37-3_1.01",
+          "942_l_1_r-0_0.4-1_0.93-2_0.7-3_1.77",
+          "943_l_1_r-0_2.44-1_0.81-2_0.38-3_0.46",
+          "944_l_1_r-0_1.82-1_0.75-2_1.24-3_0.04",
+          "945_l_1_r-0_0.52-1_0.26-2_0.21-3_0.69",
+          "946_l_1_r-0_0.13-1_0.29-2_0.53-3_0.75",
+          "947_l_1_r-0_1.02-1_2.23-2_1.29-3_0.15",
+          "948_l_1_r-0_0.07-1_1.36-2_0.36-3_1.46",
+          "949_l_1_r-0_2.1-1_1.46-2_1.33-3_0.9",
+          "950_l_1_r-0_0.08-1_0.68-2_1.98-3_0.33",
+          "951_l_1_r-0_0.5-1_0.06-2_1.56-3_0.08",
+          "952_l_1_r-0_0.35-1_1.08-2_0.1-3_0.54",
+          "953_l_1_r-0_0.35-1_1.03-2_0.61-3_0.27",
+          "954_l_1_r-0_1.67-1_1.02-2_0.04-3_0.6",
+          "955_l_1_r-0_0.31-1_0.41-2_0.23-3_0.29",
+          "956_l_1_r-0_1.41-1_1.27-2_0.98-3_0.6",
+          "957_l_1_r-0_0.02-1_0.5-2_0.99-3_0.71",
+          "958_l_1_r-0_0.19-1_0.61-2_0.69-3_0.58",
+          "959_l_1_r-0_0.32-1_0.88-2_0.57-3_0.76",
+          "960_l_1_r-0_0.67-1_0.98-2_0.26-3_0.41",
+          "961_l_1_r-0_0.77-1_0.91-2_0.08-3_1.57",
+          "962_l_1_r-0_2.06-1_0.03-2_0.25-3_0.96",
+          "963_l_1_r-0_0.12-1_0.95-2_1.74-3_0.99",
+          "964_l_1_r-0_1.31-1_0.68-2_1.61-3_1.27",
+          "965_l_1_r-0_1.59-1_0.81-2_0.98-3_0.51",
+          "966_l_1_r-0_0.07-1_1.87-2_1.96-3_0.74",
+          "967_l_1_r-0_0.83-1_0.18-2_1.52-3_0.83",
+          "968_l_1_r-0_0.75-1_0.08-2_0.76-3_0.21",
+          "969_l_1_r-0_0.82-1_0.65-2_0.11-3_1.92",
+          "970_l_1_r-0_0.67-1_0.22-2_1.48-3_0.74",
+          "971_l_1_r-0_1.31-1_0.79-2_2.08-3_0.71",
+          "972_l_1_r-0_0.83-1_1.5-2_0.69-3_0.76",
+          "973_l_1_r-0_0.85-1_0.68-2_0.5-3_0.88",
+          "974_l_1_r-0_0.72-1_1.06-2_0.31-3_1.36",
+          "975_l_1_r-0_0.62-1_0.83-2_1.62-3_0.53",
+          "976_l_1_r-0_0.01-1_0.75-2_0.23-3_0.48",
+          "977_l_1_r-0_0.96-1_0.08-2_0.27-3_0.35",
+          "978_l_1_r-0_0.94-1_0.44-2_0.77-3_0.76",
+          "979_l_1_r-0_1.19-1_1.42-2_0.96-3_0.43",
+          "980_l_1_r-0_0.05-1_1.82-2_0.04-3_0.09",
+          "981_l_1_r-0_0.87-1_0.81-2_1.63-3_0.1",
+          "982_l_1_r-0_0.44-1_0.69-2_0.02-3_0.32",
+          "983_l_1_r-0_1.11-1_0.62-2_0.31-3_0.41",
+          "984_l_1_r-0_1.52-1_0.22-2_0.9-3_1.07",
+          "985_l_1_r-0_0.24-1_0.12-2_1.07-3_0.32",
+          "986_l_1_r-0_0.38-1_0.56-2_1.33-3_0.41",
+          "987_l_1_r-0_1.43-1_2.07-2_1.09-3_0.59",
+          "988_l_1_r-0_0.41-1_0.8-2_2.08-3_1.3",
+          "989_l_1_r-0_0.25-1_0.46-2_1.33-3_1.29",
+          "990_l_1_r-0_0.54-1_1.09-2_0.05-3_0.26",
+          "991_l_1_r-0_0.53-1_0.53-2_1.18-3_2.26",
+          "992_l_1_r-0_0.03-1_1.39-2_0.7-3_0.58",
+          "993_l_1_r-0_0.01-1_1.3-2_0.54-3_0.56",
+          "994_l_1_r-0_0.85-1_0.24-2_0.77-3_1.77",
+          "995_l_1_r-0_1.54-1_0.04-2_1.13-3_0.78",
+          "996_l_1_r-0_0.97-1_0.61-2_0.25-3_0.65",
+          "997_l_1_r-0_0.53-1_0.17-2_0.56-3_0.62",
+          "998_l_1_r-0_1.47-1_0.14-2_0.31-3_1.22",
+          "999_l_1_r-0_0.33-1_0.23-2_0.31-3_0.99",
+          "1000_l_1_r-0_0.91-1_0.63-2_1.11-3_0.75",
+          "1001_l_1_r-0_0.09-1_0.46-2_0.79-3_0.02",
+          "1002_l_1_r-0_0.14-1_0.82-2_0.0-3_0.53",
+          "1003_l_1_r-0_1.1-1_0.37-2_0.35-3_0.02",
+          "1004_l_1_r-0_0.66-1_0.24-2_0.81-3_1.06",
+          "1005_l_1_r-0_0.84-1_0.74-2_0.37-3_0.42",
+          "1006_l_1_r-0_0.59-1_1.11-2_0.54-3_1.07",
+          "1007_l_1_r-0_1.36-1_1.25-2_0.15-3_0.01",
+          "1008_l_1_r-0_0.56-1_0.01-2_0.52-3_0.14",
+          "1009_l_1_r-0_0.09-1_0.78-2_1.1-3_0.8",
+          "1010_l_1_r-0_1.51-1_1.16-2_0.52-3_0.29",
+          "1011_l_1_r-0_0.55-1_1.54-2_0.32-3_0.2",
+          "1012_l_1_r-0_1.27-1_0.69-2_0.54-3_0.3",
+          "1013_l_1_r-0_1.35-1_0.52-2_0.65-3_1.54",
+          "1014_l_1_r-0_0.87-1_0.97-2_0.72-3_0.77",
+          "1015_l_1_r-0_2.2-1_0.59-2_0.64-3_0.01",
+          "1016_l_1_r-0_0.16-1_0.16-2_0.23-3_0.72",
+          "1017_l_1_r-0_0.4-1_0.71-2_0.15-3_0.08",
+          "1018_l_1_r-0_0.02-1_1.12-2_0.18-3_0.63",
+          "1019_l_1_r-0_0.12-1_0.89-2_0.64-3_0.61",
+          "1020_l_1_r-0_1.03-1_0.18-2_0.25-3_0.11",
+          "1021_l_1_r-0_0.13-1_0.73-2_0.24-3_0.35",
+          "1022_l_1_r-0_0.42-1_0.61-2_0.29-3_0.48",
+          "1023_l_1_r-0_0.47-1_1.26-2_0.68-3_0.44",
+          "1024_l_1_r-0_1.42-1_0.41-2_1.4-3_0.04",
+          "1025_l_1_r-0_2.4-1_0.97-2_1.43-3_1.07",
+          "1026_l_1_r-0_0.92-1_0.26-2_0.52-3_0.77",
+          "1027_l_1_r-0_1.67-1_0.77-2_0.51-3_1.28",
+          "1028_l_1_r-0_1.22-1_0.33-2_0.1-3_0.46",
+          "1029_l_1_r-0_0.62-1_0.3-2_0.33-3_0.58",
+          "1030_l_1_r-0_1.07-1_0.67-2_1.03-3_0.74",
+          "1031_l_1_r-0_0.45-1_0.93-2_1.29-3_1.13",
+          "1032_l_1_r-0_0.27-1_0.19-2_0.87-3_1.24",
+          "1033_l_1_r-0_0.97-1_0.51-2_0.08-3_0.54",
+          "1034_l_1_r-0_1.2-1_0.23-2_0.71-3_0.69",
+          "1035_l_1_r-0_1.97-1_1.42-2_0.96-3_0.34",
+          "1036_l_1_r-0_0.37-1_1.93-2_1.01-3_1.29",
+          "1037_l_1_r-0_0.12-1_1.07-2_0.06-3_0.68",
+          "1038_l_1_r-0_1.24-1_1.07-2_1.54-3_0.04",
+          "1039_l_1_r-0_0.49-1_0.46-2_0.42-3_1.48",
+          "1040_l_1_r-0_0.24-1_0.89-2_0.73-3_0.42",
+          "1041_l_1_r-0_1.39-1_1.99-2_0.7-3_1.71",
+          "1042_l_1_r-0_0.59-1_0.68-2_0.48-3_0.75",
+          "1043_l_1_r-0_0.24-1_0.39-2_0.52-3_1.52",
+          "1044_l_1_r-0_0.89-1_0.12-2_0.84-3_0.2",
+          "1045_l_1_r-0_0.13-1_0.26-2_1.11-3_0.51",
+          "1046_l_1_r-0_0.5-1_0.29-2_0.14-3_1.05",
+          "1047_l_1_r-0_0.35-1_0.93-2_0.12-3_0.03",
+          "1048_l_1_r-0_1.73-1_0.15-2_1.15-3_1.1",
+          "1049_l_1_r-0_2.03-1_0.44-2_1.14-3_0.14",
+          "1050_l_1_r-0_0.4-1_1.21-2_0.99-3_0.83",
+          "1051_l_1_r-0_0.38-1_0.01-2_0.12-3_0.49",
+          "1052_l_1_r-0_0.22-1_0.94-2_0.48-3_0.62",
+          "1053_l_1_r-0_0.37-1_0.02-2_1.04-3_0.79",
+          "1054_l_1_r-0_0.15-1_1.31-2_1.87-3_0.79",
+          "1055_l_1_r-0_0.56-1_0.62-2_0.55-3_0.17",
+          "1056_l_1_r-0_1.2-1_0.74-2_0.06-3_0.02",
+          "1057_l_1_r-0_0.05-1_0.58-2_1.17-3_0.79",
+          "1058_l_1_r-0_0.6-1_1.48-2_1.64-3_0.89",
+          "1059_l_1_r-0_1.08-1_0.19-2_1.27-3_0.42",
+          "1060_l_1_r-0_1.03-1_0.25-2_0.69-3_0.8",
+          "1061_l_1_r-0_0.07-1_0.97-2_0.35-3_0.07",
+          "1062_l_1_r-0_0.93-1_0.53-2_0.74-3_0.33",
+          "1063_l_1_r-0_0.49-1_0.4-2_0.26-3_0.63",
+          "1064_l_1_r-0_0.72-1_1.16-2_0.56-3_0.77",
+          "1065_l_1_r-0_0.88-1_0.19-2_0.39-3_0.98",
+          "1066_l_1_r-0_2.57-1_0.14-2_1.09-3_0.25",
+          "1067_l_1_r-0_0.63-1_0.47-2_1.06-3_0.19",
+          "1068_l_1_r-0_0.37-1_0.32-2_0.01-3_1.13",
+          "1069_l_1_r-0_0.09-1_1.22-2_1.22-3_0.76",
+          "1070_l_1_r-0_0.35-1_1.21-2_1.48-3_0.55",
+          "1071_l_1_r-0_0.88-1_0.14-2_1.47-3_1.13",
+          "1072_l_1_r-0_3.07-1_0.16-2_0.47-3_0.15",
+          "1073_l_1_r-0_0.5-1_1.1-2_0.23-3_0.29",
+          "1074_l_1_r-0_0.77-1_0.51-2_0.53-3_0.17",
+          "1075_l_1_r-0_1.08-1_0.32-2_1.23-3_1.5",
+          "1076_l_1_r-0_0.33-1_0.55-2_0.58-3_0.67",
+          "1077_l_1_r-0_0.16-1_0.8-2_1.67-3_0.91",
+          "1078_l_1_r-0_2.15-1_1.31-2_0.36-3_0.51",
+          "1079_l_1_r-0_0.3-1_0.61-2_1.06-3_0.34",
+          "1080_l_1_r-0_1.72-1_0.33-2_0.23-3_1.05",
+          "1081_l_1_r-0_0.12-1_1.41-2_0.67-3_0.1",
+          "1082_l_1_r-0_0.57-1_1.19-2_0.33-3_0.41",
+          "1083_l_1_r-0_0.65-1_1.06-2_0.2-3_0.85",
+          "1084_l_1_r-0_0.18-1_2.04-2_0.08-3_0.86",
+          "1085_l_1_r-0_0.79-1_0.35-2_0.49-3_1.17",
+          "1086_l_1_r-0_0.28-1_0.1-2_1.0-3_1.26",
+          "1087_l_1_r-0_0.63-1_0.44-2_1.52-3_0.92",
+          "1088_l_1_r-0_1.15-1_0.63-2_0.29-3_0.71",
+          "1089_l_1_r-0_1.52-1_0.7-2_0.8-3_0.05",
+          "1090_l_1_r-0_0.02-1_0.89-2_0.82-3_1.08",
+          "1091_l_1_r-0_0.55-1_1.35-2_0.89-3_0.68",
+          "1092_l_1_r-0_0.39-1_1.82-2_0.98-3_0.48",
+          "1093_l_1_r-0_1.37-1_0.38-2_0.74-3_0.14",
+          "1094_l_1_r-0_2.07-1_0.92-2_2.11-3_0.23",
+          "1095_l_1_r-0_0.54-1_0.61-2_0.96-3_0.4",
+          "1096_l_1_r-0_1.42-1_0.71-2_0.64-3_0.47",
+          "1097_l_1_r-0_0.58-1_1.12-2_1.37-3_0.45",
+          "1098_l_1_r-0_0.32-1_1.12-2_1.53-3_0.26",
+          "1099_l_1_r-0_0.76-1_0.04-2_0.93-3_0.13",
+          "1100_l_1_r-0_0.62-1_1.51-2_0.97-3_0.42",
+          "1101_l_1_r-0_0.8-1_0.46-2_1.69-3_0.44",
+          "1102_l_1_r-0_1.53-1_0.18-2_0.7-3_1.13",
+          "1103_l_1_r-0_0.1-1_0.49-2_1.1-3_1.03",
+          "1104_l_1_r-0_0.78-1_1.05-2_0.4-3_0.49",
+          "1105_l_1_r-0_0.23-1_0.08-2_1.02-3_1.41",
+          "1106_l_1_r-0_0.44-1_0.17-2_1.13-3_1.1",
+          "1107_l_1_r-0_2.27-1_0.68-2_0.25-3_0.63",
+          "1108_l_1_r-0_1.38-1_1.29-2_0.27-3_0.21",
+          "1109_l_1_r-0_1.06-1_0.76-2_0.46-3_0.34",
+          "1110_l_1_r-0_1.35-1_1.23-2_1.32-3_0.41",
+          "1111_l_1_r-0_0.35-1_0.75-2_1.02-3_0.88",
+          "1112_l_1_r-0_1.81-1_1.09-2_1.59-3_0.01",
+          "1113_l_1_r-0_0.78-1_1.01-2_0.02-3_0.22",
+          "1114_l_1_r-0_0.69-1_0.87-2_0.12-3_0.27",
+          "1115_l_1_r-0_0.08-1_1.37-2_0.67-3_0.84",
+          "1116_l_1_r-0_1.14-1_0.02-2_0.13-3_0.6",
+          "1117_l_1_r-0_0.16-1_0.69-2_0.71-3_0.58",
+          "1118_l_1_r-0_0.96-1_1.0-2_1.09-3_0.05",
+          "1119_l_1_r-0_0.45-1_0.57-2_0.54-3_0.09",
+          "1120_l_1_r-0_0.58-1_0.11-2_0.19-3_0.87",
+          "1121_l_1_r-0_0.03-1_0.36-2_0.19-3_0.83",
+          "1122_l_1_r-0_0.65-1_1.66-2_2.2-3_0.0",
+          "1123_l_1_r-0_0.26-1_1.26-2_0.87-3_0.76",
+          "1124_l_1_r-0_1.5-1_0.77-2_0.99-3_0.94",
+          "1125_l_1_r-0_0.88-1_0.39-2_0.33-3_0.2",
+          "1126_l_1_r-0_0.37-1_1.21-2_0.51-3_0.66",
+          "1127_l_1_r-0_0.88-1_0.71-2_1.07-3_0.79",
+          "1128_l_1_r-0_0.71-1_0.52-2_0.76-3_0.33",
+          "1129_l_1_r-0_0.89-1_1.92-2_0.02-3_0.76",
+          "1130_l_1_r-0_0.22-1_0.32-2_0.3-3_0.57",
+          "1131_l_1_r-0_0.95-1_0.82-2_0.21-3_0.59",
+          "1132_l_1_r-0_0.45-1_1.11-2_0.19-3_0.1",
+          "1133_l_1_r-0_0.95-1_0.78-2_0.38-3_0.13",
+          "1134_l_1_r-0_0.21-1_1.09-2_0.01-3_0.32",
+          "1135_l_1_r-0_0.84-1_0.91-2_0.06-3_0.77",
+          "1136_l_1_r-0_0.37-1_0.54-2_0.01-3_1.35",
+          "1137_l_1_r-0_1.2-1_1.74-2_0.79-3_0.25",
+          "1138_l_1_r-0_1.66-1_1.03-2_0.1-3_1.05",
+          "1139_l_1_r-0_1.41-1_1.11-2_0.44-3_0.4",
+          "1140_l_1_r-0_0.29-1_1.39-2_0.02-3_0.55",
+          "1141_l_1_r-0_0.44-1_1.02-2_0.31-3_1.31",
+          "1142_l_1_r-0_2.17-1_1.81-2_0.83-3_0.51",
+          "1143_l_1_r-0_0.26-1_0.56-2_0.95-3_0.22",
+          "1144_l_1_r-0_1.16-1_0.32-2_1.22-3_0.74",
+          "1145_l_1_r-0_0.65-1_0.45-2_0.56-3_0.92",
+          "1146_l_1_r-0_0.04-1_1.22-2_0.79-3_0.66",
+          "1147_l_1_r-0_1.26-1_0.53-2_0.07-3_1.74",
+          "1148_l_1_r-0_1.1-1_0.06-2_0.93-3_2.17",
+          "1149_l_1_r-0_0.98-1_0.36-2_1.33-3_0.14",
+          "1150_l_1_r-0_1.8-1_0.65-2_1.19-3_0.92",
+          "1151_l_1_r-0_0.52-1_0.73-2_0.16-3_0.18",
+          "1152_l_1_r-0_1.06-1_0.87-2_0.82-3_0.13",
+          "1153_l_1_r-0_0.81-1_0.26-2_0.85-3_0.71",
+          "1154_l_1_r-0_2.15-1_0.86-2_0.38-3_0.28",
+          "1155_l_1_r-0_0.28-1_0.79-2_0.03-3_0.3",
+          "1156_l_1_r-0_2.02-1_0.19-2_1.96-3_0.37",
+          "1157_l_1_r-0_1.05-1_0.67-2_0.38-3_1.43",
+          "1158_l_1_r-0_0.7-1_0.37-2_0.89-3_0.95",
+          "1159_l_1_r-0_2.01-1_0.14-2_0.03-3_0.34",
+          "1160_l_1_r-0_0.64-1_0.35-2_0.77-3_0.69",
+          "1161_l_1_r-0_1.26-1_1.74-2_0.46-3_0.56",
+          "1162_l_1_r-0_1.23-1_0.62-2_0.34-3_0.63",
+          "1163_l_1_r-0_0.5-1_1.21-2_1.02-3_0.29",
+          "1164_l_1_r-0_1.39-1_0.34-2_1.01-3_0.63",
+          "1165_l_1_r-0_0.6-1_0.86-2_0.27-3_0.51",
+          "1166_l_1_r-0_1.05-1_1.13-2_0.9-3_1.63",
+          "1167_l_1_r-0_0.22-1_0.94-2_1.08-3_0.41",
+          "1168_l_1_r-0_0.4-1_1.6-2_0.87-3_0.97",
+          "1169_l_1_r-0_0.42-1_0.72-2_0.94-3_0.98",
+          "1170_l_1_r-0_0.89-1_2.19-2_0.72-3_1.62",
+          "1171_l_1_r-0_0.23-1_0.57-2_0.6-3_0.52",
+          "1172_l_1_r-0_0.78-1_1.55-2_0.34-3_0.43",
+          "1173_l_1_r-0_0.13-1_0.15-2_0.46-3_0.11",
+          "1174_l_1_r-0_0.35-1_0.11-2_0.77-3_1.18",
+          "1175_l_1_r-0_0.16-1_1.01-2_1.24-3_0.34",
+          "1176_l_1_r-0_1.24-1_0.3-2_0.67-3_0.73",
+          "1177_l_1_r-0_0.92-1_0.89-2_1.07-3_0.28",
+          "1178_l_1_r-0_0.71-1_0.05-2_1.05-3_1.15",
+          "1179_l_1_r-0_0.3-1_0.14-2_0.14-3_0.49",
+          "1180_l_1_r-0_1.08-1_0.86-2_0.57-3_0.85",
+          "1181_l_1_r-0_0.45-1_0.28-2_0.58-3_0.27",
+          "1182_l_1_r-0_1.13-1_1.5-2_0.79-3_0.54",
+          "1183_l_1_r-0_1.91-1_0.88-2_0.99-3_0.84",
+          "1184_l_1_r-0_1.44-1_1.06-2_1.31-3_0.66",
+          "1185_l_1_r-0_0.1-1_0.4-2_1.39-3_0.96",
+          "1186_l_1_r-0_0.5-1_0.15-2_1.29-3_1.07",
+          "1187_l_1_r-0_0.33-1_0.02-2_1.04-3_0.7",
+          "1188_l_1_r-0_0.81-1_1.33-2_0.13-3_1.6",
+          "1189_l_1_r-0_0.59-1_0.32-2_1.39-3_0.24",
+          "1190_l_1_r-0_0.65-1_1.79-2_0.4-3_0.57",
+          "1191_l_1_r-0_1.22-1_1.18-2_0.51-3_0.58",
+          "1192_l_1_r-0_0.72-1_1.14-2_0.33-3_1.25",
+          "1193_l_1_r-0_0.03-1_1.58-2_0.1-3_0.3",
+          "1194_l_1_r-0_0.2-1_0.4-2_0.26-3_1.03",
+          "1195_l_1_r-0_1.79-1_0.59-2_0.52-3_1.34",
+          "1196_l_1_r-0_1.67-1_1.46-2_0.53-3_0.16",
+          "1197_l_1_r-0_0.02-1_0.94-2_0.76-3_0.87",
+          "1198_l_1_r-0_1.07-1_0.57-2_0.64-3_0.16",
+          "1199_l_1_r-0_1.07-1_0.58-2_0.81-3_0.58",
+          "1200_l_1_r-0_0.26-1_0.63-2_0.14-3_0.72",
+          "1201_l_1_r-0_0.08-1_0.26-2_0.5-3_0.31",
+          "1202_l_1_r-0_0.93-1_0.49-2_0.13-3_0.44",
+          "1203_l_1_r-0_0.21-1_0.58-2_0.61-3_0.41",
+          "1204_l_1_r-0_3.37-1_1.09-2_0.92-3_0.33",
+          "1205_l_1_r-0_0.54-1_0.49-2_0.96-3_0.15",
+          "1206_l_1_r-0_0.23-1_0.67-2_0.87-3_0.6",
+          "1207_l_1_r-0_0.3-1_0.43-2_1.25-3_0.36",
+          "1208_l_1_r-0_0.66-1_3.19-2_0.32-3_0.7",
+          "1209_l_1_r-0_0.62-1_0.35-2_1.96-3_1.1",
+          "1210_l_1_r-0_0.55-1_0.67-2_0.89-3_0.23",
+          "1211_l_1_r-0_0.15-1_0.85-2_0.24-3_0.77",
+          "1212_l_1_r-0_1.56-1_0.06-2_0.14-3_0.84",
+          "1213_l_1_r-0_0.09-1_0.15-2_0.25-3_0.08",
+          "1214_l_1_r-0_1.04-1_0.21-2_1.19-3_0.35",
+          "1215_l_1_r-0_1.84-1_0.23-2_0.66-3_0.07",
+          "1216_l_1_r-0_0.62-1_0.92-2_0.94-3_0.13",
+          "1217_l_1_r-0_0.87-1_1.11-2_0.82-3_0.79",
+          "1218_l_1_r-0_0.39-1_0.52-2_2.21-3_0.76",
+          "1219_l_1_r-0_0.03-1_1.26-2_1.07-3_1.47",
+          "1220_l_1_r-0_0.61-1_0.72-2_0.17-3_0.32",
+          "1221_l_1_r-0_0.55-1_2.66-2_0.83-3_0.56",
+          "1222_l_1_r-0_0.28-1_0.8-2_0.09-3_0.78",
+          "1223_l_1_r-0_1.24-1_2.37-2_0.57-3_1.27",
+          "1224_l_1_r-0_1.13-1_0.21-2_0.41-3_0.85",
+          "1225_l_1_r-0_1.09-1_0.5-2_0.66-3_0.28",
+          "1226_l_1_r-0_0.38-1_2.06-2_0.74-3_0.57",
+          "1227_l_1_r-0_0.14-1_2.43-2_0.52-3_0.08",
+          "1228_l_1_r-0_0.86-1_0.59-2_0.49-3_0.77",
+          "1229_l_1_r-0_1.0-1_0.81-2_0.4-3_1.15",
+          "1230_l_1_r-0_0.76-1_0.8-2_0.85-3_1.08",
+          "1231_l_1_r-0_0.46-1_1.36-2_0.74-3_0.92",
+          "1232_l_1_r-0_2.26-1_0.84-2_1.92-3_0.27",
+          "1233_l_1_r-0_0.85-1_0.32-2_0.92-3_0.04",
+          "1234_l_1_r-0_2.44-1_0.04-2_1.19-3_1.09",
+          "1235_l_1_r-0_0.74-1_1.17-2_0.87-3_0.64",
+          "1236_l_1_r-0_0.26-1_0.66-2_1.05-3_1.27",
+          "1237_l_1_r-0_0.46-1_0.11-2_0.07-3_0.55",
+          "1238_l_1_r-0_0.48-1_1.06-2_1.14-3_0.8",
+          "1239_l_1_r-0_0.42-1_0.72-2_0.37-3_0.39",
+          "1240_l_1_r-0_0.11-1_0.78-2_0.95-3_1.31",
+          "1241_l_1_r-0_0.55-1_0.68-2_0.79-3_0.76",
+          "1242_l_1_r-0_0.86-1_1.35-2_0.41-3_0.77",
+          "1243_l_1_r-0_0.5-1_0.64-2_1.26-3_0.66",
+          "1244_l_1_r-0_0.77-1_0.26-2_0.67-3_0.36",
+          "1245_l_1_r-0_0.96-1_0.19-2_0.67-3_0.23",
+          "1246_l_1_r-0_0.56-1_0.77-2_0.75-3_0.6",
+          "1247_l_1_r-0_0.16-1_1.24-2_0.36-3_0.18",
+          "1248_l_1_r-0_0.86-1_0.96-2_0.26-3_1.11",
+          "1249_l_1_r-0_0.87-1_0.95-2_0.12-3_0.57",
+          "1250_l_1_r-0_0.09-1_0.65-2_0.02-3_0.35",
+          "1251_l_1_r-0_0.61-1_0.67-2_0.82-3_1.11",
+          "1252_l_1_r-0_0.02-1_0.57-2_0.98-3_0.38",
+          "1253_l_1_r-0_1.01-1_1.57-2_0.23-3_0.84",
+          "1254_l_1_r-0_0.35-1_0.44-2_0.07-3_0.57",
+          "1255_l_1_r-0_0.48-1_1.12-2_0.15-3_0.45",
+          "1256_l_1_r-0_2.08-1_0.68-2_1.8-3_0.04",
+          "1257_l_1_r-0_0.23-1_1.07-2_1.35-3_0.53",
+          "1258_l_1_r-0_0.1-1_0.53-2_0.92-3_0.63",
+          "1259_l_1_r-0_0.06-1_0.08-2_0.27-3_0.25",
+          "1260_l_1_r-0_2.61-1_0.85-2_0.85-3_0.98",
+          "1261_l_1_r-0_1.38-1_0.35-2_1.36-3_0.2",
+          "1262_l_1_r-0_0.79-1_1.81-2_0.47-3_0.67",
+          "1263_l_1_r-0_0.46-1_0.59-2_1.55-3_0.58",
+          "1264_l_1_r-0_0.46-1_0.85-2_0.08-3_0.02",
+          "1265_l_1_r-0_1.02-1_0.13-2_0.86-3_0.38",
+          "1266_l_1_r-0_1.89-1_0.45-2_0.18-3_1.45",
+          "1267_l_1_r-0_0.56-1_1.14-2_0.4-3_0.43",
+          "1268_l_1_r-0_0.79-1_0.11-2_0.14-3_0.37",
+          "1269_l_1_r-0_1.3-1_0.07-2_0.56-3_0.5",
+          "1270_l_1_r-0_0.59-1_0.94-2_0.48-3_0.83",
+          "1271_l_1_r-0_0.05-1_0.56-2_0.68-3_0.3",
+          "1272_l_1_r-0_0.04-1_1.49-2_0.66-3_1.22",
+          "1273_l_1_r-0_1.34-1_0.06-2_0.12-3_0.92",
+          "1274_l_1_r-0_1.39-1_0.32-2_0.15-3_0.79",
+          "1275_l_1_r-0_1.03-1_1.24-2_1.38-3_0.64",
+          "1276_l_1_r-0_0.66-1_0.25-2_0.02-3_0.6",
+          "1277_l_1_r-0_0.07-1_0.09-2_1.31-3_0.0",
+          "1278_l_1_r-0_0.39-1_0.49-2_0.74-3_0.87",
+          "1279_l_1_r-0_0.52-1_1.0-2_0.1-3_0.76",
+          "1280_l_1_r-0_0.08-1_0.35-2_1.08-3_0.47",
+          "1281_l_1_r-0_0.85-1_0.94-2_0.25-3_0.45",
+          "1282_l_1_r-0_0.16-1_0.56-2_0.54-3_0.74",
+          "1283_l_1_r-0_0.46-1_0.61-2_0.71-3_0.89",
+          "1284_l_1_r-0_1.23-1_0.86-2_1.07-3_0.91",
+          "1285_l_1_r-0_0.01-1_0.36-2_1.54-3_1.27",
+          "1286_l_1_r-0_0.67-1_0.74-2_1.37-3_1.2",
+          "1287_l_1_r-0_0.67-1_1.25-2_0.02-3_0.05",
+          "1288_l_1_r-0_0.75-1_0.25-2_0.76-3_0.41",
+          "1289_l_1_r-0_0.68-1_2.32-2_1.23-3_0.44",
+          "1290_l_1_r-0_0.44-1_0.51-2_1.28-3_0.45",
+          "1291_l_1_r-0_1.11-1_0.27-2_0.03-3_0.64",
+          "1292_l_1_r-0_0.04-1_1.79-2_1.35-3_0.57",
+          "1293_l_1_r-0_0.28-1_0.63-2_1.27-3_1.65",
+          "1294_l_1_r-0_0.06-1_0.15-2_0.88-3_0.55",
+          "1295_l_1_r-0_0.93-1_0.79-2_1.15-3_0.36",
+          "1296_l_1_r-0_1.73-1_0.28-2_0.78-3_1.65",
+          "1297_l_1_r-0_0.53-1_0.35-2_0.76-3_1.05",
+          "1298_l_1_r-0_0.59-1_0.29-2_0.39-3_0.97",
+          "1299_l_1_r-0_0.54-1_1.65-2_0.4-3_0.0",
+          "1300_l_1_r-0_0.65-1_0.21-2_1.18-3_0.17",
+          "1301_l_1_r-0_2.19-1_1.43-2_1.39-3_1.09",
+          "1302_l_1_r-0_1.06-1_0.41-2_0.86-3_1.66",
+          "1303_l_1_r-0_0.13-1_0.24-2_0.42-3_0.51",
+          "1304_l_1_r-0_0.36-1_0.12-2_0.63-3_0.52",
+          "1305_l_1_r-0_0.51-1_1.16-2_0.01-3_0.87",
+          "1306_l_1_r-0_0.43-1_0.36-2_0.01-3_0.66",
+          "1307_l_1_r-0_1.72-1_0.12-2_0.14-3_0.34",
+          "1308_l_1_r-0_1.28-1_1.61-2_1.15-3_1.07",
+          "1309_l_1_r-0_1.33-1_0.66-2_1.14-3_0.82",
+          "1310_l_1_r-0_0.49-1_0.81-2_0.21-3_0.73",
+          "1311_l_1_r-0_0.1-1_0.92-2_0.69-3_0.36",
+          "1312_l_1_r-0_0.05-1_0.68-2_0.97-3_1.42",
+          "1313_l_1_r-0_0.42-1_0.68-2_2.08-3_0.36",
+          "1314_l_1_r-0_0.19-1_1.11-2_0.84-3_0.89",
+          "1315_l_1_r-0_0.13-1_0.64-2_2.02-3_0.41",
+          "1316_l_1_r-0_0.41-1_0.72-2_0.8-3_0.98",
+          "1317_l_1_r-0_1.76-1_0.44-2_0.4-3_0.02",
+          "1318_l_1_r-0_1.07-1_0.37-2_1.02-3_0.37",
+          "1319_l_1_r-0_0.98-1_0.73-2_0.42-3_0.26",
+          "1320_l_1_r-0_1.18-1_1.88-2_0.27-3_0.43",
+          "1321_l_1_r-0_0.14-1_0.24-2_1.64-3_0.17",
+          "1322_l_1_r-0_0.88-1_0.75-2_0.57-3_0.22",
+          "1323_l_1_r-0_0.66-1_0.05-2_0.6-3_0.12",
+          "1324_l_1_r-0_0.19-1_0.08-2_0.46-3_0.11",
+          "1325_l_1_r-0_1.62-1_1.44-2_0.25-3_1.18",
+          "1326_l_1_r-0_1.06-1_0.5-2_0.43-3_0.15",
+          "1327_l_1_r-0_0.44-1_0.55-2_1.16-3_0.51",
+          "1328_l_1_r-0_0.18-1_1.22-2_1.14-3_0.37",
+          "1329_l_1_r-0_0.21-1_0.33-2_0.07-3_0.65",
+          "1330_l_1_r-0_0.34-1_1.61-2_0.45-3_0.03",
+          "1331_l_1_r-0_0.09-1_0.86-2_1.09-3_0.29"
          ],
          "type": "scatter3d",
          "x": [
-          -9.351457483976228,
-          -9.630821038499715,
-          -8.88184471239794,
-          -9.307557120727669,
-          9.077894714678735,
-          -9.978129128082537,
-          -11.357684522687277,
-          -10.02914836977377,
-          -8.621653816470609,
-          -10.124988072701875,
-          -9.01290773359202,
-          -7.794830493219481,
-          -10.558125024775453,
-          10.225723729372058,
-          11.197092509389625,
-          9.932598419609663,
-          -9.163415884057237,
-          10.425910370436535,
-          -10.413479902314464,
-          10.583965618802061,
-          -9.479107480790908,
-          9.532814474260618,
-          -10.006826969783937,
-          -9.177406309412731,
-          11.486327762218135,
-          -10.0432755936904,
-          -10.168002865453778,
-          -9.755828701570312,
-          -9.556772565750146,
-          -10.199789120597842,
-          -8.529283268047442,
-          -9.781118022389979,
-          -9.982227100902685,
-          9.056201206875723,
-          -9.965282897515614,
-          -10.700275165493796,
-          10.151392950928495,
-          -10.510295298779186,
-          10.553443650595131,
-          9.343264922192304,
-          9.860108159250744,
-          -9.753188657817654,
-          10.720963051399421,
-          -10.672414680946352,
-          8.772278655203706,
-          9.145497695107192,
-          -8.972581805977669,
-          -9.606470403727892,
-          -11.579179848183625,
-          10.55263147126185,
-          -8.69360292619613,
-          -9.5985309990115,
-          -10.169573122704104,
-          -9.582542093478004,
-          -10.230685378514451,
-          11.846859481002424,
-          9.211198575722872,
-          11.080403932715155,
-          10.186440618166827,
-          10.62871864256505,
-          9.858801230998228,
-          -9.624363672183755,
-          -10.512466990072127,
-          9.747897894448215,
-          -9.455607234950111,
-          -9.34313079812162,
-          -12.043896985137534,
-          -11.223954922748185,
-          -10.69330885542324,
-          -10.185680417450882,
-          -11.241823050357137,
-          -9.293930696570904,
-          -8.99701678823478,
-          10.007989932166517,
-          -9.905274996412608,
-          -10.26285828645165,
-          8.70181465659648,
-          8.325168779827603,
-          10.009247459300108,
-          10.441202045445173,
-          9.443995828024049,
-          -10.164209666908322,
-          11.760013022042909,
-          -9.561086729384492,
-          9.414823274160486,
-          -8.345681306241728,
-          -8.512522099781332,
-          -11.189789652734953,
-          -10.630768343691308,
-          12.63713384209271,
-          -9.197419717909414,
-          -10.186244623330209,
-          -9.989091566338576,
-          -9.160193890764605,
-          -11.789026762423722,
-          10.281108618819765,
-          9.860157170049131,
-          10.824953199836296,
-          -10.339460133212201,
-          -9.719466627612805,
-          -10.399710232987534,
-          -9.111357533153283,
-          9.442527832021785,
-          9.978646850652247,
-          -9.896855138616985,
-          -10.74812997179722,
-          9.545904002145639,
-          -10.312018843344774,
-          -10.324249776669133,
-          8.238927141110889,
-          10.34706235922656,
-          -8.783880438955986,
-          -11.138532119284749,
-          -9.706133061409414,
-          10.095046121885131,
-          -8.186549484872664,
-          -10.330675855686474,
-          -9.26066631878321,
-          -9.671467475473921,
-          -9.825269068747428,
-          10.81481820921743,
-          -10.256910682462154,
-          10.786755827861665,
-          -10.524787698950218,
-          -9.246856143992384,
-          11.065126366759536,
-          -9.59536358334617,
-          -9.868111332935294,
-          -10.758454351219706,
-          -11.630027467968123,
-          10.553700357936997,
-          9.923701497474546,
-          -10.883124017567972,
-          -9.414999464455807,
-          10.175547426746206,
-          -9.133914476998845,
-          -9.72117927252987,
-          -8.839997282602946,
-          -11.26183463811751,
-          -11.637490717718968,
-          -9.304503845455205,
-          -10.495930660281536,
-          10.318230815342305,
-          -9.179858819040815,
-          10.688927839518385,
-          8.851425557794377,
-          10.797312238536751,
-          11.156009009594237,
-          -10.369696965533336,
-          -9.245633845824607,
-          9.603194131718169,
-          -10.648628481932647,
-          10.190427480635952,
-          -9.21575663266575,
-          -10.550567650266782,
-          -11.489389137932115,
-          10.323231400499017,
-          -10.482325349138495,
-          -9.714391700509456,
-          9.427525826930854,
-          9.89708753183124,
-          -8.929961800025254,
-          -9.799858889133573,
-          -8.464969555025025,
-          -9.589009111680564,
-          8.706681293905817,
-          -9.67856325077109,
-          9.205944570523958,
-          -9.788933867379257,
-          -10.755342741869656,
-          -10.704102889493447,
-          9.403547435161638,
-          10.01249062135441,
-          9.813084743676583,
-          -10.241870815860853,
-          9.64592399458941,
-          -10.102904512388788,
-          12.148874347232196,
-          9.031612973448576,
-          8.962104382945755,
-          -10.96974674200853,
-          -11.501447497176624,
-          10.78467630726383,
-          -9.066042276979653,
-          -9.06756207548401,
-          -10.351593240944126,
-          -10.60604692614181,
-          7.6146312202496915,
-          10.93470097172027,
-          10.49940591148303,
-          9.520177540173664,
-          -10.48910759082109,
-          -10.862075124333034,
-          -10.753209177520874,
-          -10.511692990633154,
-          -9.59943470543172,
-          -10.114916709283928,
-          -10.873907735460616,
-          -9.626657775836156,
-          10.837022724425852,
-          7.87402257904968,
-          -9.788379607341314,
-          -9.12071663371113,
-          10.198151062844543,
-          -8.634982064444799,
-          9.976668241231001,
-          9.249512501478549,
-          -10.377784780978706,
-          -11.870348761964152,
-          9.586264552538895,
-          -10.256545945740973,
-          -8.90652911725652,
-          -9.564257008185374,
-          -10.284806595942499,
-          -9.452598352452528,
-          -10.26731601026617,
-          -9.54621482837966,
-          -10.306797428127535,
-          -9.640830210007673,
-          -9.074966852102355,
-          9.796745456841432,
-          -8.875307960216894,
-          10.968535052190711,
-          8.619051368146776,
-          -9.723372991995793,
-          9.500941088693635,
-          -9.960254512170662,
-          -9.18702742096081,
-          9.304029266749978,
-          -8.52152655540645,
-          11.280598064747624,
-          -10.283451212939154,
-          -11.148896943129493,
-          -10.388878222777407,
-          -10.528609723547872,
-          -10.839357198832953,
-          -9.418679085283376,
-          -9.626373274717066,
-          -10.094243044933833,
-          -10.719438813905892,
-          10.716801114724582,
-          9.334294826813025,
-          -9.438849893727333,
-          10.389203049204161,
-          -10.688846139357215,
-          10.60546807387399,
-          7.871329001109546,
-          -10.14525324312887,
-          -9.403534988108232,
-          -9.243468488020422,
-          -10.588563594101227,
-          -9.033657369499046,
-          9.554088194969955,
-          8.648626454788564,
-          -10.974106742359997,
-          -10.182000233006889,
-          -11.531289354796417,
-          -9.290718581430461,
-          11.096848093650348,
-          10.787163124754613,
-          -10.43980519446689,
-          -9.286011482908824,
-          9.928791926867879,
-          9.554243440806703,
-          9.45088460388377,
-          8.834987557014053,
-          10.41711052811476,
-          10.109512096565533,
-          9.930828502958466,
-          -11.370026752380587,
-          10.362898365879218,
-          -10.563556864750325,
-          10.281398699386981,
-          -10.286618449430403,
-          9.4791726078407,
-          -9.028763331730321,
-          -10.435140466229107,
-          9.548576933862309,
-          10.361480412905598,
-          -10.498335575333114,
-          -8.734968571219575,
-          10.851114574151218,
-          -10.300689893382843,
-          9.799124338592526,
-          7.476491881793077,
-          -9.029251063905713,
-          12.015864224979499,
-          -9.71050237817212,
-          -9.00812689600188,
-          10.159848502976695,
-          -10.536060725069769,
-          -10.374426577988475,
-          -11.413480897036711,
-          9.818228770045247,
-          12.540467862323911,
-          9.871138288292363,
-          -9.95806848808665,
-          9.203254187781916,
-          -8.370270594154771,
-          -10.907856519973256,
-          -9.02499587332323,
-          10.083033106200318,
-          -10.020673835538961,
-          -10.560838037924867,
-          11.81574220312519,
-          10.182882583286894,
-          -9.926931540912642,
-          8.852119560433675,
-          -10.950445400498403,
-          -10.485908734482864,
-          9.404207550638453,
-          -10.325612034657311,
-          9.463317521397363,
-          -8.724476830466049,
-          -10.364748903340566,
-          -10.433556086035672,
-          -11.24734270367222,
-          -9.827737716337133,
-          -10.876355117377539,
-          10.925086870031137,
-          9.908248385915812,
-          10.664870442172232,
-          9.475166591585053,
-          -9.212349747164444,
-          10.752724332979009,
-          10.35250773290717,
-          10.986212424394113,
-          -9.658734878307522,
-          -9.045745166573635,
-          9.935313681971035,
-          -10.60720745177565,
-          -10.106945808687705,
-          -10.680172485293651,
-          10.671841164524132,
-          11.633882237721256,
-          -10.409642896328972,
-          -9.252219783376216,
-          8.218305076718892,
-          -9.696545205738047,
-          10.078979977870052,
-          10.690889077336921,
-          -10.238515016403662,
-          9.772828134511437,
-          -11.32159426476871,
-          8.315370909262496,
-          -6.6457100192871525,
-          -9.037278873115074,
-          -10.720166720386896,
-          -11.241113191422578,
-          -11.83399130758403,
-          -9.87177177837423,
-          -10.372951633685734,
-          -10.517194934755315,
-          -10.567049139306594,
-          8.660707068122171,
-          9.287487058550607,
-          10.227122745482218,
-          9.51359945485173,
-          10.666638314706292,
-          9.590802758888138,
-          8.312221291180053,
-          11.326082884050635,
-          10.960698061242617,
-          9.810449009786668,
-          -10.017581149377767,
-          -11.447376923017595,
-          10.440691497972283,
-          -10.780884173333249,
-          9.55703994612627,
-          -9.72333917019626,
-          -10.10650785339703,
-          10.69059768621872,
-          -9.168374481538567,
-          -11.254193058691301,
-          -10.363678698575503,
-          -10.896674777544968,
-          9.019914717843637,
-          10.638995184099787,
-          -10.432264435508998,
-          -9.441756330802418,
-          -9.101686037515607,
-          -9.008750287859003,
-          -10.84985362393573,
-          10.52818562853049,
-          10.620165966279709,
-          -10.415143639454687,
-          -9.287433587370382,
-          9.987153686171538,
-          -10.412027723608402,
-          10.46462135129804,
-          10.236821132135793,
-          -9.517288806170685,
-          10.421633056633533,
-          -8.470106393933595,
-          -10.896911247502976,
-          11.1366555569952,
-          9.464967508468291,
-          -10.902249220699733,
-          -9.90445633573346,
-          -11.585379919700843,
-          -11.392761276195658,
-          -10.958352831916542,
-          10.27842100464213,
-          9.314057062821181,
-          11.156219563494517,
-          -11.248638556449148,
-          10.943683833505773,
-          10.06187809341104,
-          7.894052518230653,
-          10.080437072407157,
-          11.26551106192556,
-          11.097069318860793,
-          -10.329328308393027,
-          -9.604631434801714,
-          -9.318459985070202,
-          10.999237082126395,
-          9.467237581873423,
-          -9.032094301723655,
-          -9.54350832248335,
-          -9.813985322390161,
-          8.189664471875718,
-          8.58594242016014,
-          -7.62298437599169,
-          -9.686720948062558,
-          -10.926158828061492,
-          -9.905634651821542,
-          9.986757488545972,
-          -8.076430471385574,
-          -9.84845479692595,
-          9.66399465916131,
-          10.331628835154286,
-          -9.71631710602835,
-          -8.763861658878682,
-          -10.260272631006655,
-          -9.271243467732777,
-          -8.817426932337696,
-          10.279487770387336,
-          -9.895020336416493,
-          -11.392387777579321,
-          -8.89147853150063,
-          10.131522655445467,
-          11.093847228118605,
-          8.625627085769597,
-          -10.991685465445178,
-          -10.544877763549392,
-          -9.708145538505669,
-          11.513959588291389,
-          8.928452741900486,
-          -11.277569416291167,
-          -10.44283603603047,
-          11.994294008767048,
-          -9.537518412801008,
-          9.222167328123446,
-          -9.236055076226522,
-          -11.018527563531004,
-          10.288412922837201,
-          9.605473483812101,
-          -10.888842261224614,
-          10.319902926252508,
-          10.136954150892038,
-          -8.435671427580811,
-          10.900696544361235,
-          -9.741184243583703,
-          9.752031191623594,
-          -10.393486552288488,
-          10.61690974704746,
-          -8.416522810557717,
-          -10.416353304862142,
-          -10.270561919752556,
-          10.359763446193208,
-          -10.352695396237667,
-          -12.194399911085183,
-          -9.942966770174236,
-          10.099826224251553,
-          -10.677568620627152,
-          -9.981681052315665,
-          10.820953730574471,
-          -9.742385773189861,
-          -10.256924975729234,
-          10.43297619275401,
-          -8.581103772076101,
-          10.848350766336747,
-          -9.155842971644606,
-          8.81669145265183,
-          -9.195940270903966,
-          -9.047896889198585,
-          -10.647023178191747,
-          -9.752807879724024,
-          9.604153698611288,
-          -10.995068959944335,
-          10.407179160903887,
-          -9.389462202000963,
-          -9.756988590072257,
-          -9.275505859390407,
-          -9.681610791457171,
-          9.434492239389757,
-          9.51170427881401,
-          -11.613116594647108,
-          -10.716413904843511,
-          -8.717745426516558,
-          9.073785574394813,
-          -9.192100822962516,
-          -9.95917910617709,
-          8.397533641043452,
-          -11.256583157983798,
-          11.634627436939487,
-          -10.739618329766667,
-          12.191827900657483,
-          10.922326777687895,
-          9.727455343070348,
-          -10.54501691179239,
-          -9.744664308822554,
-          -10.22874333001608,
-          -8.466460051448907,
-          11.028939444473059,
-          10.085110725269228,
-          11.595256178774473,
-          -10.344794875921131,
-          -11.095254670689911,
-          -10.341036747641803,
-          -11.293851071266557,
-          -10.148364789657657,
-          -9.679533206920715,
-          11.011862328796331,
-          -9.254803651476601,
-          10.807284027453,
-          -10.223716560804661,
-          -9.821309914561596,
-          10.879116859846498,
-          9.727934251242365,
-          -9.614170114287958,
-          -10.775464781989037,
-          10.892490274500604,
-          9.158047256573496,
-          10.035659846771264,
-          -10.645723832027354,
-          10.394452453446688,
-          10.19774356561704,
-          10.421182170094276,
-          8.91170395484953,
-          9.905821689677191,
-          -10.546945259879196,
-          -11.700876351185348,
-          -9.73420560061508,
-          9.030442692391428,
-          11.441186500276109,
-          10.494835058937005,
-          -10.160301123811713,
-          9.986027939329224,
-          -10.385121910125527,
-          -8.74227889029923,
-          -10.690345218098471,
-          -10.117106930930042,
-          -10.239417881529437,
-          9.721291912814857,
-          -10.680032108662477,
-          -9.748595697621518,
-          -9.165885939708518,
-          -10.237831946421403,
-          10.95629916430066,
-          8.298820551826148,
-          -11.280364921142189,
-          9.758235796175372,
-          -9.998111250973704,
-          -10.906574631162629,
-          -8.760795645420801,
-          9.800061320773837,
-          -10.018952065958938,
-          10.764201809604613,
-          -9.54023212147698,
-          10.516230400035866,
-          -10.614499866368785,
-          8.643224365603611,
-          8.992700129372064,
-          9.302364524509416,
-          11.429584090535045,
-          -10.111360442999958,
-          -9.235049048410547,
-          10.146772887612682,
-          10.470337431853677,
-          -9.207950723798286,
-          9.826338251287153,
-          -10.277520775913342,
-          10.543476296167926,
-          10.999517501851967,
-          -11.199649389605248,
-          9.621679318175339,
-          -9.744030868341605,
-          -12.327324014554296,
-          -10.725498872331672,
-          9.620015016835437,
-          9.729949835592697,
-          -10.833298402587822,
-          -8.651926208441377,
-          8.609167421912483,
-          -12.121726674576351,
-          10.919980946263154,
-          10.433736062804602,
-          9.89016528819432,
-          -11.199510179115777,
-          -11.25582847562626,
-          11.077521880189025,
-          11.80003549902761,
-          -9.918791227321293,
-          -11.111465370150194,
-          -9.625004561512714,
-          -10.283423227428422,
-          10.483145760201099,
-          -9.302427018507434,
-          -10.119838982323383,
-          11.250069327897817,
-          -11.092465445360387,
-          9.055826175479504,
-          -10.707196753134602,
-          -10.96562467814714,
-          -8.781986333631545,
-          -9.671531253866007,
-          -10.065873275959135,
-          9.91150096389655,
-          9.951887391647254,
-          -9.716023683301408,
-          -11.866604083435204,
-          8.712798117701787,
-          -10.079585465102012,
-          -9.49730771834667,
-          11.110316832937912,
-          9.437016598758701,
-          -10.558553143217441,
-          -9.88426517256609,
-          -9.526497278286385,
-          -10.587174499353557,
-          -9.891305489450314,
-          -10.95791835147626,
-          -8.479930315017832,
-          -10.43324991411516,
-          9.45637999776244,
-          -10.162444757821737,
-          -11.401398368612128,
-          9.470651252015422,
-          7.6845577690692455,
-          11.422117656927162,
-          -10.857175666027048,
-          8.082525258883217,
-          9.463012562250963,
-          -9.186024645180265,
-          -10.055939531728551,
-          9.090287336806405,
-          9.8341248296583,
-          11.394825020327614,
-          -9.689430922561499,
-          -9.781335122949068,
-          -9.460729163406754,
-          -10.16326403395178,
-          -9.179459696712794,
-          -11.565544058773096,
-          -9.444124226891836,
-          -11.12104281801776,
-          -10.882636679014071,
-          -8.794693151611936,
-          -9.639667131125655,
-          -10.82765789674625,
-          -9.885302971990628,
-          -10.50925263974018,
-          -10.510522464594185,
-          10.724398760789734,
-          -10.914256780921113
+          0.4005892039594323,
+          -1.7449973801099787,
+          -1.5106518607117638,
+          1.235525619463163,
+          -0.6240868570546245,
+          0.26730627018088904,
+          -0.4063973710174922,
+          -0.6515353168100122,
+          -0.1374361450807473,
+          -1.1559921306904704,
+          -0.726879357215162,
+          -1.6125227546364165,
+          -0.310979040642514,
+          -1.2377501154620676,
+          -0.8811762862069639,
+          -1.7308808530198294,
+          -0.49764497785040396,
+          -1.649222061300096,
+          -2.72677866612804,
+          -0.356906702279003,
+          -0.2920539297912699,
+          -2.558335810193039,
+          -1.4784092556175752,
+          -1.4474844995278229,
+          -2.27640079942039,
+          -1.7366556113710674,
+          -1.9349816862871667,
+          -0.44143138874264176,
+          -1.417216002547896,
+          -1.4109364769527004,
+          -0.32762277317505895,
+          -0.8862505153899857,
+          -0.06960470486585979,
+          -1.4536305532504712,
+          -1.271776547728693,
+          -2.5108803198392797,
+          -0.5505633293703726,
+          -1.8602526794251117,
+          -1.0851796213552027,
+          -1.8461396695681216,
+          -1.9257963715844664,
+          -2.328494359916658,
+          -0.5745041156158026,
+          -1.8423668837638365,
+          -0.09967182740741842,
+          0.2793652818909502,
+          -0.34195062378457564,
+          -0.5916808186833349,
+          -0.31018280785170504,
+          -0.8074899059058975,
+          -1.6169057894267689,
+          -1.4050379680743665,
+          -0.44729791403083163,
+          0.3131415912444586,
+          -1.3145345805004225,
+          -1.056382678129405,
+          -2.0107593716252246,
+          0.11768440473249431,
+          -2.165370353017357,
+          -0.7986195720823553,
+          -0.8580159299203314,
+          -1.1815980394677197,
+          -1.6059629857703692,
+          -2.0153213396611056,
+          -1.008735839986616,
+          0.0673459050996914,
+          -0.8077312698560944,
+          -1.3139370923202704,
+          -0.9413015694321065,
+          0.2347053127615777,
+          -1.7519919815653198,
+          -1.4521351865005558,
+          -0.8047617655568216,
+          0.3141775072318429,
+          -0.5725118968719861,
+          -0.7525761791071255,
+          -1.4451842662091767,
+          -0.34595585152393526,
+          -2.705983728628987,
+          0.048503844030602705,
+          -0.7349683230096724,
+          0.09500068370237247,
+          -0.8527984391352665,
+          0.014262617867014438,
+          -0.855036763656853,
+          -0.8467777105992044,
+          -1.5264280009324578,
+          -0.7257292290446351,
+          -1.770709177690861,
+          -0.9592573962681847,
+          -2.208430774800771,
+          0.27949901017740086,
+          -1.1046209008388082,
+          0.011387626501793813,
+          -0.3402404841642087,
+          -1.4194619094127034,
+          -0.42579051976375504,
+          0.26635316003531084,
+          -1.835993639525428,
+          0.2739669364601398,
+          -1.1994043365738276,
+          0.6423229495617451,
+          -1.3675646496278946,
+          -1.0252031641639425,
+          -0.8406100177933022,
+          0.04035016760310195,
+          -0.7593641571250256,
+          -2.052521552574099,
+          -1.032347942111631,
+          0.21871736240824746,
+          -1.137466144321506,
+          0.4601023330004619,
+          -1.486699580710031,
+          0.33455875357135345,
+          -2.107932025895552,
+          -1.5599732746160493,
+          -1.073738214500577,
+          0.1480822881212691,
+          -1.6837918537007934,
+          0.9224043109059101,
+          -1.44776787362284,
+          -0.30699724712548027,
+          -0.5942118709433033,
+          -1.718013199867709,
+          -0.13405493988146122,
+          0.007993988676368247,
+          -0.6465486173761836,
+          0.07822474547585312,
+          -0.7176222837580013,
+          -0.4658908758086967,
+          -1.7712253256170984,
+          0.8505570241307745,
+          -0.3155749173643059,
+          -2.2314113577151975,
+          -1.5405516474111367,
+          0.49706992578772247,
+          -1.1257282129740105,
+          -0.11951277357012957,
+          -0.7960262951487659,
+          -1.2696005544177547,
+          -0.24027235524109647,
+          -1.4272898444460131,
+          -1.3333082648354568,
+          -0.19643391544990352,
+          -1.4059365609696652,
+          -0.014797066941035109,
+          -0.22208780795160155,
+          0.20147342268616564,
+          -0.9384989066999982,
+          -1.9180153823215664,
+          -0.6079221246462094,
+          -0.2605602760294211,
+          -1.251511678809778,
+          0.7038397024478433,
+          -0.8803218796434131,
+          0.893209619635245,
+          -0.7612237257679364,
+          -1.4674478187076359,
+          -1.5401225367939673,
+          -0.2704214252415593,
+          0.15404547215012165,
+          -1.4546155445051425,
+          -0.11986887219026798,
+          0.09938897981786687,
+          0.2929485829147187,
+          -0.224551328825202,
+          0.0905447262867447,
+          0.2870818221282172,
+          -0.9835155900430286,
+          -0.37223763254187925,
+          -1.5907942013436767,
+          -0.7046898628506392,
+          -1.1975399680373002,
+          -0.9652024706090401,
+          -0.8985828861160798,
+          -0.6041307352780461,
+          1.0713753818515217,
+          -0.8703035152291866,
+          0.15337572610966688,
+          -0.9199180058930405,
+          -0.170293841145443,
+          0.010179321136725372,
+          -0.23223566043388466,
+          -1.7810142379884288,
+          0.2607948248115075,
+          -1.367465466709612,
+          -0.6174608898048929,
+          0.509832119012483,
+          -0.9631627884642637,
+          -0.9416847513974732,
+          -2.5295788618218227,
+          0.46950088391457334,
+          -0.6914283286003353,
+          0.3896395587586674,
+          -1.083135024534235,
+          -1.7629611981310371,
+          -0.49432579865292403,
+          -2.2706733557192953,
+          -0.7894698193155693,
+          0.38092011436895357,
+          0.27059735091178294,
+          -2.2245088800322983,
+          -1.1054075299681394,
+          -0.6612154108707818,
+          -1.0804224335443884,
+          -1.2337842887844137,
+          -1.513834073091105,
+          -0.7780249616706686,
+          -1.276829026932036,
+          -1.269630849648079,
+          -0.6352969208985499,
+          -1.9951169076656772,
+          -1.9854441245854249,
+          -1.7287500005051954,
+          -0.516799785727978,
+          -0.9497103382246139,
+          -2.671476179037036,
+          -0.31565459735503865,
+          -1.2003656477448632,
+          -0.937066951478077,
+          -0.7050111996439224,
+          -0.9281674779145224,
+          -1.8554940119281913,
+          -1.7998310395763304,
+          -0.4180862706034877,
+          -1.8819707158760561,
+          -0.9623445577034747,
+          -1.4761826568636798,
+          -1.408477889198822,
+          -1.0593441151705325,
+          -0.6516408230282655,
+          -0.8121954750588589,
+          -1.7457714824895418,
+          -0.946136499294214,
+          -1.013554606699666,
+          -1.7964637425533945,
+          -2.184968033144308,
+          -0.6869909295688968,
+          -1.4955603547192289,
+          -0.8258314206207966,
+          -0.5716438308159103,
+          -1.796900989463972,
+          -1.2314015106558127,
+          -1.0253542586760591,
+          -0.9045151779394824,
+          -1.205335723973994,
+          -0.7904187384416794,
+          -0.3622535883464296,
+          -0.2666038899216404,
+          -1.9377917676391043,
+          -1.70804217568143,
+          -0.4464975672265479,
+          -1.0559531825568342,
+          -1.8504925348529708,
+          -1.604267366833585,
+          -0.646081512243807,
+          -1.1040787406225563,
+          -0.9607728534171953,
+          -2.0571095206466534,
+          -0.7730974279547833,
+          -1.640093212972788,
+          -2.126770198997116,
+          -0.8149141790413703,
+          -0.6906045278379296,
+          -0.034689795090676045,
+          -0.6486713881791738,
+          -0.5955194061300753,
+          -0.15146536684078848,
+          -0.6954411575780672,
+          -1.4132258363754797,
+          -1.7401222573787525,
+          -1.2296981274977263,
+          -1.3668065527431885,
+          -0.8762790860000783,
+          -1.166821461241598,
+          -1.3265378292658534,
+          -2.8033906962708572,
+          -0.4620916406442257,
+          -0.4096479134595352,
+          -0.6948788801889971,
+          -0.7464438083749914,
+          -2.67379952301438,
+          -1.4605214129962516,
+          -0.8950777258033581,
+          -0.3300271438678256,
+          -1.1446140965700753,
+          -0.5374424447744545,
+          -1.1675144625332108,
+          -0.6004888705776339,
+          -1.223745829619722,
+          -0.7588477392331897,
+          -2.1219475793648654,
+          -0.5840450510348318,
+          -0.9529025120251226,
+          -0.40888259418209927,
+          -1.5680291058830704,
+          -0.9559345410973104,
+          -0.9861061976079453,
+          -1.270576713204695,
+          -1.8895496152196332,
+          -1.9785155303459805,
+          -0.9584848245037663,
+          -1.1611257032675304,
+          -2.166124186226609,
+          -2.053539746445619,
+          -0.8797719959333118,
+          -0.7551882475700207,
+          -0.8788411815342534,
+          -2.1072688769961454,
+          -0.5299177298140361,
+          -1.0691733712626483,
+          -0.34937375964357686,
+          -1.1185795219828343,
+          -1.1118233242441848,
+          -1.0548802367933157,
+          -0.8317997849803096,
+          -1.8307404120019344,
+          -1.0081652505788423,
+          -1.4038142313579605,
+          -1.9623743802882667,
+          -1.8397683763057624,
+          -0.5908563265694904,
+          -2.2147052783710364,
+          -1.294105591580592,
+          -0.25871758187462646,
+          -2.2634326746149567,
+          -0.5805077897818338,
+          -0.5604969838041174,
+          -1.9965477892570958,
+          -1.1173155853386272,
+          -1.3684999322046738,
+          -1.6530544334522381,
+          -1.2216760070832173,
+          -0.9861570580988892,
+          -0.7546549399432448,
+          -1.3444252427080592,
+          -0.8094763812033454,
+          -0.023470003932261063,
+          -1.0609763601113436,
+          -1.2705585248349798,
+          -1.6085117986333413,
+          -0.011937793801859775,
+          -1.280376107779388,
+          -1.0387105801702097,
+          -1.3750735332903008,
+          -1.1827804083904478,
+          -1.6671830337736058,
+          -1.8547109880949755,
+          -1.3223528315346487,
+          -0.00804631389691235,
+          -0.7199862133550597,
+          -0.08265181637494812,
+          -1.2234773892223687,
+          -0.6191046832929211,
+          -1.8226979987395753,
+          -0.4248869201682566,
+          -0.48412660665777707,
+          -1.8334617400665891,
+          -0.03672438977020298,
+          -1.0695144250960438,
+          -1.3464376133470846,
+          -1.2817425350844411,
+          -0.4601440098107945,
+          -0.5790603385799113,
+          -1.4467833977899633,
+          -1.2628466182736737,
+          -1.7195971643873902,
+          -0.5401529808053064,
+          -1.2907708894328782,
+          -1.7260273444885217,
+          -1.6929298529942636,
+          -1.4352890981274162,
+          -1.804971524541989,
+          -1.4773763738071102,
+          -0.5847918320698242,
+          -2.4060901723079553,
+          -0.7529204586144753,
+          -2.2871588222112056,
+          -1.1289589710424817,
+          -0.505589674257594,
+          -1.054127089155833,
+          -1.1140398675738017,
+          -1.1017294394837607,
+          -0.14401556619634637,
+          -0.831149686578005,
+          -0.4908200448382376,
+          -0.8642750577011061,
+          -0.7891096573488561,
+          -0.7899290307653104,
+          -0.17375609205779985,
+          -1.0880643871854323,
+          -0.7906910283312799,
+          -0.8865598670467217,
+          -0.4230095748017815,
+          -2.245461118874559,
+          -1.0639135907019563,
+          -1.954480852421606,
+          -1.4222325036483783,
+          -2.167849249715511,
+          -1.071104289481226,
+          -1.2261033043152871,
+          -0.7279004076080802,
+          -1.130560551609899,
+          -1.5171135367966273,
+          -0.55013453862199,
+          -1.5901218052944683,
+          -2.0470436656135984,
+          -1.7386333002734657,
+          -1.8333951269358955,
+          -1.5018618226917764,
+          -0.6673856681511592,
+          -2.1152176295963554,
+          -0.5060325237803749,
+          -2.652824533072833,
+          -1.0509124747460414,
+          -2.0490636644040636,
+          -1.3033456074400847,
+          -1.9614584751512547,
+          -1.8842832451970128,
+          -1.1704844852293175,
+          -1.2565163066034346,
+          -0.9192888919705067,
+          -0.7123119993110041,
+          -0.0464665792815121,
+          -1.5560857847085394,
+          -0.6768344225519386,
+          -1.6458613070099026,
+          -1.9523582364449892,
+          -0.23183419568154495,
+          -0.40340366041149367,
+          -1.951008849267297,
+          -1.0619113170112837,
+          -0.9272060464579358,
+          -1.348226493182572,
+          -1.3736379662608003,
+          -0.4431528266108048,
+          -1.5409774874589992,
+          -3.3862930328607077,
+          -1.9292464612635944,
+          -1.8465194761685395,
+          -1.3551680180562917,
+          -0.6260626806981946,
+          -0.8487828242997673,
+          -1.3300586111647834,
+          -0.7278521300571328,
+          -0.8786574872616842,
+          -0.5474281374545804,
+          -1.546893691301921,
+          -0.26793999517420053,
+          -0.8722881946934113,
+          -0.5965976601838282,
+          -0.7218738509392596,
+          -0.8013071447295821,
+          -1.6718451075111456,
+          -0.8720652708384893,
+          -1.3498919069603637,
+          -1.5265787846251015,
+          -0.7604805988809239,
+          -1.7334849758851196,
+          -0.8560688294344898,
+          -0.6645066912399563,
+          -0.792309733131651,
+          -0.3317890478279837,
+          -0.7610360592328289,
+          -1.1341980687955329,
+          -0.5903627305977466,
+          -0.9564775158850648,
+          -0.13000268485099442,
+          -0.3175139642989421,
+          -0.7727184240847518,
+          -1.9264322412052057,
+          -0.25162353719433683,
+          -1.6507719180398657,
+          -0.39915596408376,
+          -1.5092164402775539,
+          -1.4355241468381605,
+          -1.3171423598442886,
+          -0.5027996683131,
+          -1.6387421327292375,
+          -1.7426270411046183,
+          -1.6119061047822698,
+          -1.744743222885821,
+          -2.470937575373296,
+          -0.6419201678965891,
+          -1.5484523279640907,
+          -0.3944246202391035,
+          -0.1307321160061231,
+          -0.7108615571609755,
+          -0.2805292457397597,
+          -1.3283729729974647,
+          -0.3672001019176728,
+          -1.8091569939630732,
+          -1.612769862498538,
+          -0.34064700335525866,
+          -0.9236577341504267,
+          -0.8813661439619386,
+          -0.6282916018969866,
+          -1.1328399421401736,
+          -1.7708935124669354,
+          -2.577199459742393,
+          -1.8836926613123843,
+          -2.014020759164923,
+          -1.7550052681272348,
+          -0.9765009779498021,
+          -2.3819150005045264,
+          -0.7739479026833774,
+          -2.0234371235650133,
+          -0.7992772994358105,
+          -1.2331033162043732,
+          -1.496904481510594,
+          -1.0139742661863396,
+          -1.8364310492851914,
+          -1.1494957655044338,
+          -1.320659246342403,
+          -1.0860708788185567,
+          -1.565543305273629,
+          -0.5388735927201224,
+          -1.4162259742904852,
+          -1.7784076619181426,
+          -0.9636041851895271,
+          -1.069612905858027,
+          -1.9430319146382442,
+          -1.6128499542695627,
+          -1.649276972568436,
+          -2.7567732598022636,
+          -0.5761277644332659,
+          -1.2469247805936883,
+          -0.29647800527359225,
+          -2.620815894496017,
+          -1.7322543750835973,
+          -0.7734509018735949,
+          -0.8742285393304379,
+          -1.3457916364036744,
+          -1.0742140064991188,
+          -1.1407217438583352,
+          -2.0331281932499086,
+          -1.089986229909853,
+          -0.41088583323272043,
+          -0.7919870659886956,
+          -1.2011184341070318,
+          -0.5984648573270587,
+          -0.9309342936702938,
+          -0.701200012222216,
+          -1.431304522172975,
+          -0.7304149488638325,
+          -0.7677751702232882,
+          -1.7991819942407932,
+          -1.9337889380617181,
+          -0.7119211800285632,
+          -1.1521949930568107,
+          -1.4567774301764622,
+          -0.7891873154331561,
+          -1.6449168661195408,
+          -1.58265690476486,
+          -0.32425193281957665,
+          -1.4983236095462171,
+          -0.7760982680842049,
+          -1.8304305705316695,
+          -1.5105963030108671,
+          -0.48690270646984934,
+          -3.106183353057941,
+          -1.3843861993145312,
+          -1.6481193243072112,
+          -1.1471939758561203,
+          -1.8974972900622222,
+          -1.2656456576590616,
+          -0.7491559607197192,
+          -0.8014492724914366,
+          -2.180718266056286,
+          -0.6350001552467668,
+          -1.9722804650603956,
+          -1.4525662220274103,
+          -0.7967021034831432,
+          -1.2438503912693317,
+          -2.086365473664423,
+          -0.7584464235511615,
+          -0.7710631501473975,
+          -0.6635628246371067,
+          -0.633845996861925,
+          -0.23159610286559706,
+          -1.2106892420573598,
+          -1.8907850423442856,
+          -1.276170195614826,
+          -1.3609021516506912,
+          -1.0657090115353187,
+          -1.1140182341226659,
+          -1.0692766510726943,
+          -0.84438837266754,
+          -2.593298956930293,
+          -0.48821903427932034,
+          -2.3872110205979364,
+          -0.5275900651594243,
+          -1.2410017464106413,
+          -0.2507094611164815,
+          -1.8562198692796112,
+          -0.4050473188170032,
+          -1.6359890392419594,
+          -0.5826903818766254,
+          -1.8353346401513941,
+          -0.6871137008666421,
+          -1.5019211895837699,
+          -0.4310046920709183,
+          -1.071184665406866,
+          -1.1589456650848091,
+          -2.8566130537762264,
+          -2.5150519088330308,
+          -1.2226298547055647,
+          -0.924520229567428,
+          -0.8676026692967032,
+          -1.2508884839187444,
+          -0.5995868394524944,
+          -0.0018433392372069202,
+          -0.8740377521111408,
+          -0.7551047584584862,
+          -2.115679681462912,
+          -0.45217577648538465,
+          -1.107455950236441,
+          -1.2547985262152612,
+          -0.9075329066337492,
+          -1.838150070516736,
+          -1.2041098098269165,
+          -1.5327014247364685,
+          -0.9983190407341441,
+          -1.603430364558594,
+          -0.5542480812064685,
+          -0.6406517819948445,
+          -0.9994426320875541,
+          -2.1127230372477173,
+          -0.548610634764165,
+          -1.4331803706981616,
+          -1.648647659230472,
+          -2.11935918510207,
+          -1.4794851288956379,
+          -1.2985150927755909,
+          -0.17323525361528802,
+          -1.0853672717286729,
+          -1.66396371622016,
+          -0.5117406069381194,
+          -0.5203583747793881,
+          -0.9960160946433326,
+          -0.6588245935425143,
+          -0.3404232308547678,
+          -1.6668379727102847,
+          -1.7496799686992581,
+          -1.1047918646155952,
+          -0.3621522147033487,
+          -1.422815317442669,
+          -1.3278051330907523,
+          -1.1680094888349082,
+          -2.0946597970812957,
+          -1.6701265834097094,
+          -1.7172446492378932,
+          -1.7353883163254218,
+          -0.2604810682061902,
+          -0.4253502943797084,
+          -1.052828056816326,
+          -0.7719553129412933,
+          -0.12346748105469829,
+          -1.0784949332797498,
+          -1.9661693693355895,
+          -1.7378941979068654,
+          -0.7253175593315658,
+          -2.075196611324269,
+          -0.6452534835724812,
+          -1.2627761215147255,
+          -0.8508313571925493
          ],
          "y": [
-          10.234582866747598,
-          9.838220625960505,
-          8.94279219969027,
-          9.525803507494192,
-          9.97466821030611,
-          9.634348848451724,
-          10.447660833519107,
-          7.997157934535753,
-          9.461802089927223,
-          9.118911728913737,
-          10.912914689603516,
-          10.27393083506573,
-          11.628417497998194,
-          -10.910152307378931,
-          9.582498832987698,
-          10.117536097584624,
-          10.58783693974278,
-          -10.85196018322135,
-          10.842903813948574,
-          10.458988494634545,
-          9.855581099358538,
-          9.923914630091128,
-          10.333964519671323,
-          10.466386000263263,
-          11.086678410755908,
-          8.682315015812469,
-          9.766693893199271,
-          10.380941070787339,
-          10.587640897593378,
-          10.075656061183498,
-          9.229926408251666,
-          8.696694648157004,
-          8.817200216522224,
-          9.034766751195221,
-          10.491517498862837,
-          10.869570792301923,
-          -10.578307340213911,
-          9.817225164438211,
-          10.276001492063177,
-          9.515656866639208,
-          9.714161109823081,
-          9.90059993652531,
-          9.812103244924883,
-          10.815016365138193,
-          9.778249171003623,
-          -9.070397146429663,
-          10.530192990059653,
-          10.499706720818654,
-          8.561947052577336,
-          -10.873840893414686,
-          9.39540840911215,
-          9.163752659079258,
-          8.894198433160348,
-          10.177653235962245,
-          11.01305304710721,
-          10.641964949808854,
-          9.796159977683159,
-          11.056771255194551,
-          10.083255202990184,
-          -10.55745604283438,
-          -10.34286881676713,
-          10.252629354345677,
-          10.380007664406476,
-          10.041169365723054,
-          10.99620256414872,
-          11.081409564702021,
-          9.189641734321318,
-          9.003254207544021,
-          8.925975041569504,
-          9.07309477119757,
-          11.403715812619932,
-          9.042175488602599,
-          10.07422793355857,
-          -9.32109621977122,
-          9.386011089702272,
-          8.819052105346605,
-          -8.583799303995226,
-          -7.944470456986913,
-          -10.27591797335614,
-          -10.536278916109225,
-          10.027347650322298,
-          9.339142615218769,
-          -11.46474281080059,
-          9.821295822258284,
-          -8.82962606981305,
-          10.333543530434964,
-          8.850473701685816,
-          11.593734130903247,
-          11.047130264521323,
-          11.446837125518751,
-          9.12968042513407,
-          10.299072551958158,
-          8.610876047166284,
-          8.126267236359316,
-          11.154105057434574,
-          10.090382586526557,
-          10.17413189799852,
-          10.073398269493072,
-          9.505740152344652,
-          10.07427012161732,
-          9.320689426957427,
-          10.807215145768108,
-          9.335434836687913,
-          -9.555392659825822,
-          11.73182254517826,
-          8.70458140960681,
-          9.535854307367229,
-          10.559986806747233,
-          9.693534466793416,
-          -8.750810682152384,
-          -10.698146857404925,
-          10.451289825541892,
-          11.674927342916554,
-          8.923986095309285,
-          -9.870126335480773,
-          9.441775587801187,
-          10.308031169938872,
-          11.632059424422057,
-          9.441931422320486,
-          9.349083956988721,
-          -11.749501035902302,
-          10.848078115015083,
-          -9.660375139398376,
-          9.727996412025524,
-          10.168180756970639,
-          -11.421389277567531,
-          9.629183603455594,
-          10.380599888553581,
-          8.786951091374982,
-          9.760128696998931,
-          10.091898666705667,
-          -10.314093593093743,
-          11.869873011960838,
-          9.244523575606108,
-          -9.590058119141007,
-          10.191213901602287,
-          8.82356969869621,
-          9.874323333113928,
-          10.566731709772128,
-          10.379688558758273,
-          10.0426814170901,
-          8.206341248743678,
-          -9.980829869420328,
-          9.106129995972996,
-          10.611210370154524,
-          -8.161513503157515,
-          -9.807222892404472,
-          10.950736769615633,
-          9.225621242404081,
-          8.595667678045189,
-          -9.671197022063422,
-          9.690061302700972,
-          -9.9886414298934,
-          9.308053212320178,
-          9.125033722150793,
-          10.293886959424567,
-          -10.727083695033373,
-          10.88963399191132,
-          11.15676524354463,
-          -9.505436072861889,
-          9.7026011016038,
-          10.751756769048027,
-          9.720339465410202,
-          10.990683120744675,
-          9.803681412920671,
-          -7.99321022279549,
-          9.979717511521335,
-          10.322691929579786,
-          10.011051634345709,
-          10.702695783406451,
-          9.423575056117524,
-          10.31082617211202,
-          -10.501251006982013,
-          10.095685002029992,
-          12.123752937258832,
-          10.035940443949922,
-          9.605971139122527,
-          -12.52534641738391,
-          8.41866987629421,
-          9.673509788391643,
-          10.409737097945085,
-          11.06273694707378,
-          9.375477544141475,
-          8.905754120989194,
-          9.59618414638568,
-          10.916436630052448,
-          9.402660185330909,
-          -8.778093228288308,
-          -10.857704202056766,
-          10.29437013573115,
-          9.52111437861591,
-          8.037442550158033,
-          10.042919759044201,
-          9.4769271197479,
-          9.332263728719129,
-          9.458408574753564,
-          10.400265256297038,
-          9.978032187636316,
-          9.641233367041412,
-          -10.084642262671254,
-          -8.161734712543028,
-          9.532860740922366,
-          9.131935000128925,
-          -9.542978779597487,
-          11.259226078377205,
-          9.083586206026038,
-          -9.820560038019595,
-          9.538200934092192,
-          11.228530185815824,
-          -9.738527692143956,
-          9.467720874602263,
-          10.896359494686246,
-          9.682342543980152,
-          9.820419723240985,
-          9.386593143343136,
-          8.4346286467254,
-          10.693680219703056,
-          9.29215498205934,
-          9.317596869890815,
-          10.1702174440142,
-          9.932342776992998,
-          11.284573899679081,
-          10.66348829093738,
-          -9.03431292230526,
-          10.764435682657819,
-          9.485835680506433,
-          10.466764449572809,
-          10.534943351628243,
-          -9.585379853229064,
-          9.315338916091505,
-          9.907930467403382,
-          9.426590039941843,
-          10.471633453702152,
-          10.635218492245999,
-          11.039168488419904,
-          9.834902200913163,
-          9.022368507679436,
-          9.445128355129008,
-          10.357227877104739,
-          10.263974370378568,
-          9.937916352961617,
-          9.714634086933602,
-          11.801177660818745,
-          10.72397654708949,
-          11.052270007131337,
-          10.404111331162763,
-          -9.20298638211655,
-          10.697794114966209,
-          10.538795199064543,
-          10.061936150598877,
-          8.775916508942819,
-          9.847440390467352,
-          -9.716840523162238,
-          -8.927703093968374,
-          8.410566083416695,
-          9.788469110663273,
-          10.015859358857805,
-          10.514396824706147,
-          10.017823721538832,
-          -10.753200672299018,
-          10.44318458789439,
-          10.107159804832968,
-          -9.726304640121505,
-          9.290285230005873,
-          10.451699991465022,
-          -9.558650966362757,
-          -10.836433254019814,
-          -10.182501779200697,
-          10.403679254706063,
-          8.734244777619084,
-          9.84639762675411,
-          9.903837066534562,
-          -10.526631206275542,
-          10.1743616138777,
-          10.008389675475213,
-          9.716670286566362,
-          10.803665881550256,
-          10.585239546550477,
-          9.793134283845166,
-          8.898188795808096,
-          10.601995215655608,
-          10.780008712947845,
-          10.448826794630168,
-          10.549559490046294,
-          -8.127259882047284,
-          10.778356737524433,
-          -11.463102724817269,
-          9.231493983768011,
-          10.790203401947926,
-          9.61790478749995,
-          9.590104974392556,
-          11.130099836385103,
-          10.822726862133393,
-          10.304069419730299,
-          -12.713183887528027,
-          -10.029634669109985,
-          8.904479669650765,
-          -9.300712197285668,
-          10.344192634409724,
-          10.353630768953364,
-          10.046284456117068,
-          10.28133848966022,
-          9.162379844072312,
-          11.208669993434917,
-          10.244553794743467,
-          -9.39595597274224,
-          11.341755021211906,
-          -8.617828295069701,
-          10.257314223266956,
-          9.671971537843275,
-          10.66057359555711,
-          11.132025348497017,
-          -9.713555531600054,
-          8.497921866509584,
-          9.935563946594504,
-          9.326732379220934,
-          8.478499116880826,
-          9.473597217279318,
-          10.18763375440323,
-          -10.597291249828602,
-          -9.027664956081075,
-          9.88274292722089,
-          -10.02514443491083,
-          8.671325801911806,
-          10.639968597400586,
-          -10.20602697983781,
-          -10.958455359334522,
-          7.411656343772563,
-          8.551812896829624,
-          9.032251882800177,
-          9.169277154725869,
-          10.121979808577516,
-          9.13565804234107,
-          9.64844673428764,
-          10.292470893660894,
-          10.950505319122792,
-          9.248529219058936,
-          -8.175469097985046,
-          10.280732101573761,
-          -8.887074840084187,
-          10.943750032839274,
-          8.609299054688448,
-          -9.827634123190204,
-          9.719129561627238,
-          9.534127988816843,
-          9.218468453360963,
-          9.622876682523838,
-          8.54581132088183,
-          8.903899860815223,
-          9.135665537186284,
-          10.07822757131742,
-          9.167753183421306,
-          10.958826270002362,
-          9.307459455684427,
-          8.469985854424792,
-          10.373642415874825,
-          9.768876490371463,
-          9.304432705935925,
-          9.613704759087684,
-          -9.22965936488144,
-          9.322256046321703,
-          -11.33239158555874,
-          -10.973540677273753,
-          10.337885914420614,
-          9.562037793844837,
-          9.376018664306619,
-          -10.396258316078729,
-          11.444329290643543,
-          -9.596551703816171,
-          10.558268083379817,
-          10.574208728339949,
-          9.464917642152308,
-          10.210004707990771,
-          9.203100844119032,
-          11.538176480613123,
-          10.69612187867374,
-          -9.168877211342107,
-          9.82703338562838,
-          9.371004319179175,
-          8.108691870932505,
-          10.952017120126559,
-          8.914730782654706,
-          9.849793692162887,
-          10.307068771213252,
-          10.11284459906676,
-          9.541196202866457,
-          10.429857368060633,
-          -9.575315911845552,
-          8.654916983387611,
-          -9.823623560423398,
-          10.127632715536734,
-          10.167292161103983,
-          9.94526191905324,
-          10.191282465004731,
-          10.590122846743938,
-          -11.517959352215332,
-          10.129251385521915,
-          8.531593935355472,
-          12.177442594930895,
-          8.57131281108861,
-          11.863234169725628,
-          9.86865136713943,
-          10.097554000515638,
-          9.846362615281112,
-          10.8641128364327,
-          9.41555005161332,
-          10.520389952679388,
-          9.845502055394745,
-          9.862555875347503,
-          -9.661714672482935,
-          -11.684697813014347,
-          -11.030752853712194,
-          9.778976509842924,
-          10.941558872662165,
-          11.752174227165742,
-          9.824160692061882,
-          -9.669083426659615,
-          10.682193276213024,
-          9.003285831231224,
-          9.5305173090639,
-          8.983154858079876,
-          9.295101381594991,
-          9.35953443142733,
-          9.943343300064692,
-          9.417709681968049,
-          11.867463915994897,
-          9.268358642992382,
-          9.321608703480242,
-          11.21532889296478,
-          9.32266406336481,
-          -9.966273449628344,
-          9.82760381485352,
-          10.617241440344813,
-          8.66508679734866,
-          11.184176673704602,
-          8.931316993363861,
-          -10.597034178693484,
-          9.606685309689846,
-          9.7840327021064,
-          10.594119142529996,
-          -9.425391502834126,
-          10.263153031876826,
-          10.031799045306974,
-          10.736081552978725,
-          7.996810790843503,
-          9.550609287576304,
-          10.33629163122836,
-          -9.845852939589985,
-          10.3138438074435,
-          10.13816950780026,
-          -11.230440771957799,
-          11.396659302857362,
-          -9.578670779657369,
-          9.13194652608101,
-          10.021025474838506,
-          -9.286383903784838,
-          -9.659720605578991,
-          10.764665301766364,
-          9.892813590347565,
-          -10.190737273757085,
-          10.511373679659075,
-          -10.405845091454747,
-          9.451404633106915,
-          -9.809092522866282,
-          9.206540910495308,
-          10.07531045657003,
-          9.276258198257384,
-          10.137366468749033,
-          10.816067060447468,
-          10.32795572823776,
-          10.043092424056065,
-          11.050930159999892,
-          10.762999982452808,
-          9.469908691868552,
-          12.27371552063742,
-          9.324563905467516,
-          -10.706111889163749,
-          9.971061364650842,
-          10.422736362438725,
-          10.277178409363202,
-          10.412344045617061,
-          -10.572407717906298,
-          9.327081172370455,
-          -8.626463981327054,
-          10.66745074656347,
-          9.372961251254146,
-          10.349635021518903,
-          9.624736629833762,
-          9.734275304945253,
-          10.615078737403328,
-          -9.312021204081457,
-          10.07841920193502,
-          10.37031802888896,
-          9.95748548616939,
-          11.322963042229755,
-          9.71717526049296,
-          10.212041342183948,
-          11.362896959260588,
-          10.868389696916058,
-          10.722464552835987,
-          -8.149085261322469,
-          10.338715196142214,
-          10.311986530521947,
-          -8.156582566435363,
-          11.313310596991979,
-          10.706135505580821,
-          10.080704012848482,
-          -12.111912212344775,
-          10.646960498993803,
-          10.457506249178621,
-          8.022590838523715,
-          11.132748283795298,
-          11.573305413533934,
-          9.082045916568232,
-          -10.470328121501634,
-          10.22049102966135,
-          10.167243543991692,
-          10.979806124780714,
-          11.180789307083394,
-          10.269537001609516,
-          10.321209436701922,
-          8.291407181775334,
-          8.78197574742719,
-          10.341309681365846,
-          11.028089505794624,
-          -9.929635103216896,
-          8.459094476186394,
-          9.975082739278713,
-          9.834821804502845,
-          10.240902363856328,
-          9.345408892222808,
-          8.732335806922514,
-          9.778480203749773,
-          -7.900711742291723,
-          -9.995661773327189,
-          10.893721286549832,
-          -9.895728826406478,
-          -10.798497884799678,
-          -10.782251147373412,
-          -8.61211215657257,
-          9.869660410271328,
-          10.380384345208743,
-          10.19829634846788,
-          11.06789173311119,
-          -9.005055160753189,
-          -12.096526575156709,
-          9.952663740943356,
-          9.353163466690562,
-          10.74556933818352,
-          10.206604344822503,
-          9.363112879821802,
-          11.08983178841938,
-          9.9558259067866,
-          9.998094699181376,
-          -9.376649496878949,
-          11.002576631671465,
-          9.011636768711497,
-          9.911248649375286,
-          10.8415427025268,
-          10.424173217642554,
-          -8.741750651254245,
-          10.603400622586737,
-          10.02723765978404,
-          10.417819660885181,
-          10.036861415396634,
-          10.149435364861146,
-          10.172166115024908,
-          10.083639577810567,
-          9.772964309543548,
-          9.177535937473882,
-          10.419758128929333,
-          10.355413330585993,
-          10.312273965645215,
-          -9.194278962205304,
-          9.419397127973927,
-          -10.798262847965916,
-          11.867342977319403,
-          10.020473803506965,
-          10.201083173978308,
-          -10.806092053113966,
-          11.13307262280614,
-          9.857440978255365,
-          11.210041584073915,
-          -10.814956331761795,
-          -10.543743458978843,
-          11.071128589047342,
-          -9.74921070293514,
-          10.848419248057532,
-          10.167654093420447,
-          8.446847502572783,
-          -9.629385837351665,
-          9.839812669979159,
-          10.627212905785724,
-          9.28082300133262,
-          9.52591472988418,
-          8.41127564239538,
-          10.122187864667183,
-          -10.582274152147887,
-          -9.380019879905863,
-          9.992043947328325,
-          11.237324888673843,
-          10.516551144850823,
-          -12.169533581527716,
-          12.297845776919011,
-          11.465253084743711,
-          10.318949369724374,
-          10.554609817943287,
-          -10.705506730135758,
-          9.795361514593552,
-          10.408292842784865,
-          -11.674753659530172,
-          8.934956170526155,
-          -8.342893745455557,
-          10.84514940791144,
-          11.622131073493732,
-          11.269125781242494,
-          9.120821394936446,
-          9.45511582505194,
-          9.968036281572294,
-          -9.893606909460953,
-          10.677918079774233,
-          10.879308124935907,
-          -8.798028876923448,
-          9.559570693957873,
-          8.523655385569358,
-          10.737000464118227,
-          9.989101662645876,
-          10.174307601687328,
-          8.300984213278575,
-          10.786326602875176,
-          9.809902449370481,
-          10.382045724905065,
-          8.970318803062941,
-          10.012062547539006,
-          9.9803473783291,
-          -8.298579127036218,
-          11.005049225542733,
-          10.462833032776983,
-          -9.109948102236046,
-          -8.513278733280496,
-          -11.487781448951164,
-          9.33608913470989,
-          -8.249399881839654,
-          -9.410745985815208,
-          11.764224426421935,
-          10.066815696711664,
-          9.962030524893967,
-          -9.469436954641179,
-          -11.316152397118422,
-          10.250608878171436,
-          10.010894283328735,
-          10.342654778369385,
-          9.770652916756301,
-          10.124152014109288,
-          10.656060491655987,
-          10.837008947331377,
-          9.734976362825929,
-          9.809890810182882,
-          10.132466503827422,
-          10.15283041243535,
-          8.493940385554842,
-          9.889984203560356,
-          10.561083386766102,
-          8.9479448660632,
-          10.169479381991856,
-          10.083403254392696
+          1.613924148079552,
+          -0.643138403478994,
+          -0.5754138697882105,
+          2.0877198050837276,
+          -0.09767748346389005,
+          0.3228854976154295,
+          1.0472406830301575,
+          1.036719539937374,
+          0.3435842617942325,
+          1.1506357086473602,
+          0.34590699307945816,
+          1.4575924618172449,
+          0.3427128547921813,
+          1.88183486255254,
+          2.00183304664277,
+          1.6157298131240774,
+          0.4329715618095513,
+          1.3318590460274726,
+          0.31877388550991703,
+          1.2403474537720032,
+          0.8427151319107713,
+          1.6171500481215468,
+          0.7217932794691826,
+          0.8007744916195432,
+          1.5726414411101666,
+          1.781001933369552,
+          1.9481564076945634,
+          1.6562273074180864,
+          0.45131775863912704,
+          2.0890668470849376,
+          0.1076698514359643,
+          0.8384581102253895,
+          1.5739816308218642,
+          0.30557420636943644,
+          0.7535847932286885,
+          2.3697981884247215,
+          0.48131940678142415,
+          1.2732013343779482,
+          0.6539806192435161,
+          0.7123279331947773,
+          1.5676180620364621,
+          1.6323483016932316,
+          1.8663267877532765,
+          0.7137937501293532,
+          0.5377434068040816,
+          -0.2956734092497879,
+          0.9954348911103292,
+          -0.2097718774131625,
+          0.6154189433100857,
+          -0.015216726491407817,
+          1.9172044392651908,
+          -0.060706996079852305,
+          1.7820815266472758,
+          0.2906677622005971,
+          1.2791546572745989,
+          -0.17968690041356772,
+          2.049343548433859,
+          0.48188796448348437,
+          1.6023708509501478,
+          -0.19175869658164846,
+          2.228823290825776,
+          -0.4746550629062225,
+          0.14372211703548066,
+          -0.14105790322765288,
+          0.5252042530771635,
+          1.3062497348896085,
+          1.1165987439419258,
+          -0.29911449475714624,
+          0.8698670702335394,
+          0.5546480214300876,
+          1.0223433743952237,
+          -0.11318746376200783,
+          0.8131574225228511,
+          0.45753093213468443,
+          1.9441236654237506,
+          -0.3933031221827925,
+          0.7852433758051927,
+          -0.4411390535931692,
+          0.9223249177296071,
+          0.01497274556182604,
+          0.6955031234453224,
+          0.7209620040238893,
+          0.6113228553191148,
+          1.8852835815882072,
+          1.5782395713010386,
+          -0.6513523607181333,
+          0.4556226109647522,
+          -0.3723189079638467,
+          1.3682530502959716,
+          -0.22718549566976365,
+          0.15423274998382197,
+          2.0875118798600547,
+          0.1526225470095287,
+          0.663957175742415,
+          1.407974175423252,
+          -0.39814009164804776,
+          1.408913787468817,
+          1.146512751573051,
+          1.164448904079104,
+          0.8379167963510253,
+          2.0727827168361195,
+          -0.24955272387445593,
+          1.6790427175428424,
+          -0.2849947389393579,
+          1.522827977347161,
+          0.51102782533893,
+          1.634962479529598,
+          -0.1267641128929473,
+          1.4495138195275228,
+          1.1107581002275848,
+          1.024503382965429,
+          2.1066148969933924,
+          0.07267054963675268,
+          1.0566469520016513,
+          1.8969246579628924,
+          -0.09315607324590847,
+          1.466662813301669,
+          0.7144586934016748,
+          0.7684448104754409,
+          1.2643224762773477,
+          0.516715509633207,
+          -0.4710625779909072,
+          1.9521937481947655,
+          -0.03305576211147465,
+          0.7274673507690271,
+          0.31319371331412205,
+          0.8741203775967178,
+          2.2639745049025857,
+          0.8114505359392241,
+          -0.20003308875128334,
+          0.4157752998226393,
+          0.43221242009162764,
+          1.3840616528872378,
+          -0.3319494263593479,
+          0.741074620058721,
+          0.98301047130193,
+          2.618062089532709,
+          -0.5457954487992369,
+          0.34071467046409953,
+          -0.5209668470643596,
+          1.1608888887431168,
+          -0.509741477462351,
+          2.177990477250088,
+          -0.0625431172254931,
+          1.2137953313223422,
+          -0.8482943325901451,
+          0.6255207398114974,
+          1.0736532525516271,
+          1.149439332777646,
+          -0.36121721873542345,
+          0.5614492346397519,
+          -0.4807179228138856,
+          1.7383270228491272,
+          1.202019228845684,
+          0.15245109543426394,
+          1.914971074815107,
+          0.730457500869808,
+          -0.11303534455879682,
+          -0.17626751410978336,
+          2.02317581833647,
+          2.7567835919031314,
+          -0.5845803134059542,
+          0.7732947559584498,
+          1.0875150202489696,
+          1.3844152600153268,
+          1.9418370556372637,
+          1.177688407137495,
+          0.29752363456457975,
+          0.8199829736152427,
+          -0.29772644180636587,
+          -0.020167269494274498,
+          0.18207968438276967,
+          -0.260376504525756,
+          -0.8830671617515171,
+          0.6763122955101031,
+          -0.3528689679729038,
+          1.1454499853148763,
+          1.6339387038242301,
+          1.1696351615533602,
+          -0.5337490892249557,
+          0.6906899771058119,
+          0.9832222013289957,
+          -0.7604643565135296,
+          1.228582172818171,
+          1.3268411827721016,
+          -0.16634461326418704,
+          0.7431749429422267,
+          0.6075223752920061,
+          -0.2948755072241598,
+          0.7975118427740134,
+          -0.0309528916429338,
+          0.8586081227148279,
+          0.5326838055619537,
+          -0.04697749831470066,
+          -0.20940223385809764,
+          1.3834449365542607,
+          -0.5815035519533793,
+          -0.7991218390419452,
+          1.484371431202307,
+          1.465067060913456,
+          1.4296186157706599,
+          1.3338765696692843,
+          -0.30845690833617345,
+          -0.7115437855851952,
+          0.6248317667621098,
+          0.4538876073774184,
+          1.4282988859301995,
+          0.46487093972557136,
+          0.09388437793642646,
+          1.5561314936921595,
+          0.6167907196677415,
+          0.49847072350227906,
+          0.03026768883233011,
+          1.6754558278911174,
+          0.5152822070126601,
+          1.4321419779555844,
+          0.7803301194349329,
+          0.6149467423509347,
+          0.6872559957171424,
+          0.8664589480646099,
+          1.596422446711569,
+          0.8693588649489117,
+          1.816251637903739,
+          2.076797224592214,
+          1.7581605119353787,
+          1.569011290982231,
+          1.4095586614058404,
+          0.5439161070971471,
+          1.5155467914996612,
+          0.619856004147693,
+          1.3231663731909287,
+          1.7556709123081502,
+          1.6246704682840543,
+          0.3422414476836324,
+          0.8063790467928265,
+          2.21094877759636,
+          0.4779336246591601,
+          1.3108679187703673,
+          0.35884438680253994,
+          0.5920405145011165,
+          1.3418107567596687,
+          0.4703493635662672,
+          1.212744193675157,
+          1.6189075225599119,
+          0.10182731841705284,
+          1.6864924032887898,
+          0.11865653965357692,
+          1.981767680067155,
+          0.3665021532962094,
+          0.9355132937164237,
+          1.2730113954671491,
+          1.7914097222504806,
+          0.3510747639147138,
+          1.4758186893904346,
+          0.5472571143078218,
+          0.8981308613907455,
+          0.12032594947670394,
+          0.31816375957308207,
+          0.7636679309937181,
+          1.5205213059559899,
+          1.2590426586091215,
+          2.785846248247344,
+          1.0534746843870217,
+          0.23314665860881245,
+          1.2179602291684524,
+          0.5100768481455535,
+          0.5348271748918929,
+          1.7115611194244513,
+          0.36599650720404253,
+          0.81737368758975,
+          1.4663353657717941,
+          0.8718021294066463,
+          0.9872800029429519,
+          0.6137337926684212,
+          0.6716696280613714,
+          1.0145113520383742,
+          1.9888859982504508,
+          1.1131461564470129,
+          0.0434416285736452,
+          1.0995612488896769,
+          1.6597424930475877,
+          0.15301528987285828,
+          1.469270972866104,
+          2.8568032950685724,
+          2.032694794215774,
+          0.08183940614214136,
+          1.2057292174881906,
+          0.2677477138128629,
+          1.2172108195061953,
+          0.2870637957612717,
+          1.6038593727821766,
+          1.0309463677990893,
+          2.269277662268736,
+          2.0962405412869347,
+          1.6054986684828063,
+          2.74645971887382,
+          1.1435078808509982,
+          1.8742505140568828,
+          2.197440926534356,
+          0.5094981879576646,
+          0.7412605661173977,
+          1.256876084331981,
+          0.21267044593164164,
+          1.9211135525597478,
+          0.9031391707924227,
+          0.7115969752543467,
+          1.306808817355624,
+          1.2653181048747524,
+          1.3581608756995647,
+          1.1931162522413374,
+          0.47650818194133737,
+          1.1955365315536084,
+          0.7583661969463962,
+          0.8915760440253604,
+          0.08913573219815252,
+          1.1200917073300853,
+          1.1623315620321426,
+          0.4146863818311918,
+          1.0739820014614483,
+          0.31968354529052834,
+          0.41408852363742976,
+          1.2366564284020833,
+          1.303005922028616,
+          1.4868866987127,
+          1.2809239420409855,
+          2.733506264674288,
+          0.8313722692908061,
+          2.4892149139620203,
+          1.7706236902075005,
+          0.7762589435198188,
+          0.6455342791200458,
+          0.6156616071206836,
+          1.2686401150499405,
+          2.361494996804323,
+          1.1942096020351136,
+          0.6620995603958288,
+          0.5327395802115906,
+          0.5356347608628768,
+          2.1522933275936613,
+          1.1728532573527621,
+          1.0686253315571357,
+          1.3139397376897386,
+          0.2789288042791612,
+          0.7960237054859332,
+          0.2933356625781155,
+          1.3680796884685023,
+          1.2487601899631506,
+          1.657384324262519,
+          0.7695045827756706,
+          0.6923711625859057,
+          1.4978388701653471,
+          1.231437226258439,
+          0.6319467552250015,
+          1.1417553004628105,
+          0.13381638982355926,
+          0.3532430673285849,
+          1.5359039414940083,
+          0.8429304939806049,
+          1.2824946234160164,
+          1.605069986911086,
+          0.7688541369265008,
+          1.876135656305733,
+          0.9460827483487777,
+          0.5936263753174753,
+          2.7790803453680626,
+          1.1255160190296347,
+          1.2386151598636483,
+          1.1596543768736214,
+          0.6874431935500938,
+          2.5717133558355822,
+          1.712497585663533,
+          1.752998646264515,
+          1.30798436810207,
+          1.6349790731809088,
+          1.689729850031033,
+          1.7081573026493362,
+          1.4520335350263083,
+          1.5244833546520578,
+          0.19693477243886792,
+          1.571904097813764,
+          1.2558359142187672,
+          0.03037430252990081,
+          1.8459507091592362,
+          0.4179993722850597,
+          1.0540876361408342,
+          0.7082127468465118,
+          1.4693273910425722,
+          1.4860427836736336,
+          1.6636588165982107,
+          0.5101370507758298,
+          0.02494535276187282,
+          1.0079963430393517,
+          2.2758832549968258,
+          0.9055567842303376,
+          0.8014581807785506,
+          0.0725548951966909,
+          0.3253375069344788,
+          0.6262413199247228,
+          0.7650614811817598,
+          0.9769343192868493,
+          0.2473474762201069,
+          0.18728256053576386,
+          1.641810884039686,
+          0.9294699704353898,
+          1.1086146953681688,
+          1.127889492594417,
+          0.14563167907097208,
+          1.9238872075880484,
+          0.17487478110636534,
+          1.7277041538297355,
+          0.8196616591887963,
+          0.9071698093398364,
+          1.8687718828004214,
+          0.3370105358665625,
+          1.7608640040228933,
+          0.10285776960027271,
+          0.4142890636417409,
+          0.8478868604822452,
+          0.8598825097501075,
+          1.2501440800242718,
+          1.277706395942436,
+          1.4765218409806544,
+          0.7412908332857573,
+          1.6382595333775378,
+          1.0787361245122045,
+          1.57916787225493,
+          0.4757097621414277,
+          1.2055239490073713,
+          1.4743674469808368,
+          0.9539287306567326,
+          0.4657436105871292,
+          0.4519958419571044,
+          1.6677530664960454,
+          1.1257196543681336,
+          0.4216090345018352,
+          0.646563523008276,
+          1.1275615376798107,
+          1.0336924101094267,
+          1.5397851701167844,
+          1.4141310793240693,
+          1.1224016942224466,
+          1.9612810499656328,
+          0.9677855062782814,
+          0.3418899507718717,
+          0.40657190460309,
+          0.9754399291693869,
+          1.1668369701082897,
+          0.21783934460601917,
+          0.7030417080772153,
+          1.6032422154175126,
+          1.5830579534845137,
+          2.5800723722485124,
+          1.5192111929810501,
+          0.6483159744459367,
+          0.9498180693079339,
+          0.83146631042666,
+          2.943945552587142,
+          2.238169938362838,
+          0.9376381518587789,
+          0.19847801493231498,
+          1.1886390451348914,
+          1.8124538317611887,
+          2.145820317536983,
+          1.6443630274715955,
+          1.1353752216903619,
+          0.6515274082161189,
+          0.0965244171010664,
+          1.890477953988234,
+          1.225560118193679,
+          1.403681404100821,
+          2.624482101749736,
+          1.647013373116777,
+          1.0459900944480698,
+          0.5101116785417548,
+          0.8773385729942642,
+          1.4107209934083769,
+          0.6348223442041996,
+          0.21721158945460917,
+          1.2388428225443473,
+          0.9158130383824435,
+          2.0313602511292004,
+          2.352073424434682,
+          2.1746047340958166,
+          0.14053844261538584,
+          0.9193605279067997,
+          1.0463960896910085,
+          0.46734958654718806,
+          1.0092016771586325,
+          1.9462865740050879,
+          0.552497475708415,
+          0.7337897558313571,
+          1.4265097454757294,
+          0.9501660338441008,
+          1.034200953955065,
+          0.690800097374909,
+          0.5601240389470361,
+          0.7632214186104862,
+          0.2901105528936331,
+          0.6344525514840891,
+          0.5104455272168891,
+          1.633464291541301,
+          0.4100668192265371,
+          1.520363992943646,
+          1.3574318483551198,
+          1.6230198448524504,
+          0.5217290751026953,
+          0.42686625963189706,
+          0.11182639046815279,
+          1.1835730285261188,
+          0.7791368755607387,
+          0.7257274766877433,
+          0.2767484350026226,
+          2.2744079853078127,
+          0.48661097573363277,
+          1.222444884424113,
+          0.6265921056116222,
+          1.6728071045284327,
+          0.836048411888877,
+          0.6596683125466629,
+          1.5313865880078357,
+          1.217165906397011,
+          1.171830480816125,
+          2.1065442606613063,
+          1.46278972465725,
+          1.7545488016475699,
+          0.7559826946996943,
+          1.3715031756415939,
+          1.1881786898325184,
+          1.1866214685601295,
+          1.3370626951958366,
+          0.7696216997700824,
+          1.158693461915024,
+          1.0195402073912623,
+          0.57948859393255,
+          0.7201254649886202,
+          0.9103281075246131,
+          0.4424946192786423,
+          0.926967804216656,
+          0.32680264668330783,
+          0.15221660682234794,
+          1.9829727984881047,
+          0.3568554808493999,
+          1.0732439777829603,
+          2.342040507299095,
+          0.22894437336675932,
+          0.8714311108738249,
+          0.8354766145357071,
+          1.3766295869005316,
+          0.3504834148161158,
+          0.07467217373942825,
+          0.5322949168460791,
+          1.830525928786435,
+          1.6038804075039335,
+          1.4723696992046993,
+          0.7848360977594486,
+          1.354642397163294,
+          0.9460523275546631,
+          1.2682389595861938,
+          0.8533154085105916,
+          1.580422789574659,
+          0.5712022312414122,
+          0.9696041908069731,
+          0.7701375556529287,
+          1.6598269561608434,
+          1.077547557563882,
+          0.9222766071090645,
+          0.48816802571424434,
+          1.604345535625189,
+          1.0868803146925756,
+          0.8952300549814973,
+          1.2650627779555093,
+          0.5452969855239058,
+          1.9973667302194715,
+          0.39346854112287566,
+          1.3145308634835264,
+          0.9695781473222241,
+          0.78885344638402,
+          0.9914308670244717,
+          0.3571770316284486,
+          1.6855649895851617,
+          0.602383741702988,
+          0.17881609950948774,
+          1.1085775556282205,
+          0.5690979234693394,
+          0.35413144891631765,
+          1.4743799507987156,
+          0.38147503080234046,
+          1.789699233242224,
+          1.2419647044000905,
+          1.0840362511390575,
+          0.04184525557086738,
+          0.7443851501119161,
+          0.6315348598252153,
+          0.6956971753429632,
+          0.9788865584211546,
+          1.368579882410464,
+          0.6748149843844922,
+          0.8052610967001899,
+          0.35334526231830254,
+          0.9215816565403245,
+          1.4452394673126825,
+          1.5397515646739532,
+          0.36561612548881706,
+          0.4995884129713206,
+          0.8335859000960142,
+          0.4881661613064018,
+          1.324858665528117,
+          1.0121645912293085,
+          0.7885465081121745,
+          1.5670946498715015,
+          1.325807472598227,
+          1.5195000982805331,
+          2.8186000446358905,
+          1.3918209013811385,
+          1.1614453889594556,
+          1.4918500323614228,
+          0.740811924134256,
+          0.8948360717804973,
+          1.3823085215710762,
+          1.2667248109317208,
+          2.1332610806156285,
+          0.04729677894923745,
+          1.1030127166529697,
+          0.4433481455537268,
+          0.45297175707964765,
+          0.8707303334114275,
+          0.5744140611195225,
+          1.6483556981570107,
+          2.447504878205688,
+          0.36365768129696785,
+          1.879055218045123,
+          1.0452857465575027,
+          1.4274327564466005,
+          0.004902793701636932,
+          0.7530611525210738,
+          1.5331691239887082,
+          1.8380432863810978,
+          1.5579041203074384,
+          1.9281003421839609,
+          0.8740137996724224,
+          1.0705486458146298,
+          2.3150859087101305,
+          1.069244098655165,
+          0.851599144459928,
+          0.7251309757401672,
+          1.2529188637070912,
+          1.639166856037064,
+          1.0412553110813332,
+          0.8927354474563687,
+          0.4139322762501111,
+          0.984266590998834,
+          1.8566371163199067,
+          0.37108591383396783,
+          1.7246910593225486,
+          1.0141414733879055,
+          0.17445476398000193,
+          0.21835850950958913,
+          1.9467391951420305,
+          0.11048552262692857,
+          2.1659461265537567,
+          0.14903327102019515,
+          0.5088980852471491,
+          1.6986730271890778,
+          2.2605101021368856,
+          1.028235914617869,
+          1.0983849807006814
          ],
          "z": [
-          8.819273742603123,
-          8.769647674805691,
-          8.358258886278568,
-          8.446373753125123,
-          -8.287738865335008,
-          9.215836157865452,
-          13.171497191870174,
-          8.494488302838974,
-          7.287764358354265,
-          9.908772943627138,
-          9.554645322425948,
-          7.722498211506771,
-          12.114701646009014,
-          10.279133221572975,
-          -11.418822375920797,
-          -9.25513177594831,
-          8.851930364004176,
-          9.481328181415043,
-          10.83193678103678,
-          -10.630800010165826,
-          9.629102722664783,
-          -9.863876028664794,
-          10.527343960661128,
-          9.935693552199348,
-          -12.112785682580995,
-          9.456681685191214,
-          9.177559634095193,
-          9.96038396276185,
-          9.533777235529426,
-          10.236915402411224,
-          7.0945344017553165,
-          8.721937410238674,
-          8.601608033833774,
-          -9.001166499200384,
-          10.57176587388804,
-          11.619426017294161,
-          8.889179178126748,
-          10.936928600005341,
-          -11.24954392326029,
-          -7.786897044098458,
-          -8.493280556300391,
-          10.134872767916823,
-          -9.678447315703911,
-          12.301087714017866,
-          -9.517266120562283,
-          9.916944928824318,
-          9.024223343976775,
-          9.402941860009355,
-          10.514640069626376,
-          9.712832996770121,
-          7.322780290470874,
-          9.400545966863618,
-          8.972596755841879,
-          9.508885209602143,
-          11.221154265187511,
-          -9.740128672983886,
-          -11.695082740708997,
-          -12.400497434878554,
-          -9.604281567459177,
-          10.472355438937257,
-          9.098386307780643,
-          9.453169324192807,
-          11.1822501789621,
-          -11.515765357301547,
-          9.573988395522075,
-          10.594631951895842,
-          12.388402023213857,
-          10.472166608533662,
-          9.817821293318257,
-          9.176458248564858,
-          12.805981908591823,
-          9.026970557064189,
-          8.867793848732857,
-          8.990623937042837,
-          8.631058761070312,
-          9.826274346203506,
-          7.711246380261112,
-          10.909158034188527,
-          9.281433507930476,
-          10.474559415396445,
-          -8.842887912822007,
-          9.008543187411659,
-          9.845215579863076,
-          10.104218188555524,
-          10.831181139349342,
-          7.9703506165148115,
-          6.501420450962156,
-          13.225901842685646,
-          12.623684121322883,
-          -13.071687131884817,
-          7.3530542022975665,
-          10.205414705033009,
-          8.495427039777525,
-          7.170194399402252,
-          14.15106148173802,
-          -9.793867743538335,
-          -10.790620792343312,
-          -8.526894292949004,
-          9.421824981020901,
-          9.578426584586422,
-          10.732778284405125,
-          10.328536655013655,
-          -9.399477800342142,
-          10.401137306352958,
-          11.566493686790487,
-          9.778773697546006,
-          -9.69939788257213,
-          10.374649230774958,
-          10.539200097580414,
-          9.565849870634711,
-          9.869370435219105,
-          8.750808413340827,
-          13.348138966618745,
-          8.69384985246998,
-          9.940910213628474,
-          7.691711860320802,
-          11.200245272139963,
-          10.428173727840534,
-          8.87046723039997,
-          8.848722244006595,
-          9.920614044895986,
-          11.89829248106721,
-          11.016401369672094,
-          10.85696336492124,
-          8.895226283799426,
-          10.728991374617426,
-          8.871297935752553,
-          10.307873020878386,
-          9.259440337753631,
-          12.00744322303158,
-          -11.14909701092963,
-          10.888915499798644,
-          13.475676402130524,
-          8.642577734046267,
-          11.21225930906703,
-          9.04416632806826,
-          8.93452141385857,
-          8.295715281079783,
-          12.51551750916074,
-          12.277462394605106,
-          8.966267541491076,
-          9.12222655842538,
-          9.791525230761119,
-          8.561661423773707,
-          -11.425185383795553,
-          10.396480689078029,
-          9.670185115260132,
-          -11.54890860031033,
-          9.690735318423815,
-          7.1664232503932945,
-          10.391909608259201,
-          9.411225653744797,
-          10.602514987152688,
-          8.953210113813354,
-          9.528709956668683,
-          12.610089654835022,
-          9.860006894743156,
-          11.742578128525654,
-          9.982546121591207,
-          9.782424005648135,
-          -9.767063230049411,
-          9.571101199347483,
-          9.107591371505091,
-          8.803696011983416,
-          10.089626116101291,
-          9.062269994454228,
-          9.838213912185937,
-          -11.11698051799756,
-          10.354500201851378,
-          11.53436301982389,
-          9.676389326064983,
-          -10.43970972151041,
-          8.582882858478344,
-          -8.937895714139605,
-          13.149741526936193,
-          -9.404380606350655,
-          9.332411256936666,
-          11.852871092282065,
-          -8.035512623337382,
-          -8.178454195183308,
-          11.925461600313254,
-          12.497298551520533,
-          -11.110703060326182,
-          7.826983849381289,
-          8.069470468221686,
-          11.602581082715217,
-          10.242860717826085,
-          10.174970596234543,
-          8.370771670682839,
-          -9.972330554818013,
-          -9.615489461188423,
-          8.847792065964022,
-          11.336753113423875,
-          10.488904563704345,
-          9.953148899020315,
-          8.11704380937629,
-          10.315002873555763,
-          10.657347457851236,
-          10.370463746913945,
-          10.128500587087826,
-          9.074364972089594,
-          9.920970314952095,
-          7.665856634107689,
-          9.864064240086122,
-          9.496927227765497,
-          -8.98416810229284,
-          10.337144983704091,
-          10.307970824517765,
-          13.323186388269999,
-          9.488665494860259,
-          8.730524102100324,
-          10.28865260759035,
-          8.85830342130878,
-          10.175879790105412,
-          8.513197747760994,
-          8.70960459995281,
-          10.10990755555677,
-          10.133291020838037,
-          8.393877817574468,
-          8.782563594375903,
-          -10.309461667233741,
-          9.003209980968583,
-          -10.538258680200315,
-          8.512156619057656,
-          11.229639942200885,
-          -9.944392951515468,
-          9.18008700875292,
-          10.331922450183635,
-          9.076003261917666,
-          7.766324227255978,
-          -12.010902203511645,
-          9.771419213271436,
-          12.505584944261557,
-          11.301800741102378,
-          11.227288456049209,
-          12.017613311893319,
-          8.231470226763392,
-          9.126099544951476,
-          10.182997192627711,
-          11.083995696589557,
-          -11.476203262433797,
-          -8.830578420110092,
-          11.744526164431662,
-          -10.538768937031724,
-          12.11714352444548,
-          -11.42886043099787,
-          9.513664353768997,
-          11.179749925555967,
-          10.528012823156882,
-          9.12046368794081,
-          9.619680884011975,
-          9.115316963495081,
-          10.805526981676321,
-          11.737177005055187,
-          9.019903997589411,
-          9.18711664974844,
-          11.925455333740919,
-          9.698961498538923,
-          -10.923174685097363,
-          10.481101825672187,
-          11.221093137443107,
-          8.884776616297223,
-          8.989126582555132,
-          -9.397018355236535,
-          -9.118680751873093,
-          7.279143372587969,
-          11.19917737978767,
-          9.5303269355589,
-          -10.233248054219409,
-          10.366893585638085,
-          -9.963790457988999,
-          10.910381164849085,
-          9.535158045330736,
-          10.666339849307239,
-          -9.558492614193186,
-          8.473297496404271,
-          11.926468546628952,
-          -10.514896482025334,
-          -10.748457289614015,
-          9.367165616781627,
-          9.082885921708865,
-          -10.759692393361846,
-          11.386064944571633,
-          -9.601692531495152,
-          11.142165773319718,
-          9.810371285902855,
-          10.397819771679558,
-          9.284990180462241,
-          10.306885776613683,
-          -9.67559720359967,
-          9.610851150242462,
-          11.722209896804301,
-          13.789041272470897,
-          -10.23167614141636,
-          10.730310556010298,
-          10.540387211405719,
-          8.048570827227383,
-          9.146651522735704,
-          7.756416603996028,
-          11.554676703290568,
-          8.837917175477498,
-          -8.866906085182215,
-          9.465685979120197,
-          11.521039925048004,
-          -11.170451705294,
-          11.509447075204164,
-          11.04099973534343,
-          10.011147206072447,
-          11.899771059175643,
-          10.331602787672793,
-          -10.460617882411146,
-          12.001692643435993,
-          9.861700175512853,
-          6.493334168048939,
-          9.390271260746191,
-          9.910817330146047,
-          9.589130990861094,
-          8.954680590356304,
-          11.89563099148706,
-          9.251587316103,
-          11.16823191461505,
-          -11.04825640118405,
-          11.054648433811067,
-          7.21743727171105,
-          -10.035883556481169,
-          10.338602031646328,
-          9.736372439235938,
-          6.145505763712668,
-          7.287929570309138,
-          -7.91108579786583,
-          9.641992106097858,
-          10.518792128990349,
-          9.73511496535204,
-          -9.72098238988898,
-          -8.871048414976467,
-          11.177103794814714,
-          7.4006981753726855,
-          10.476026380073014,
-          10.010912888333475,
-          10.968137260077569,
-          -12.430611532306079,
-          9.55467791615796,
-          10.995212692858798,
-          11.160466931810761,
-          -8.653173720402254,
-          4.9265324385313765,
-          8.821007189749222,
-          9.536761177232842,
-          10.745855969424781,
-          12.070513428436216,
-          8.949459584872683,
-          9.280762705991156,
-          11.02336284242185,
-          10.43867713283894,
-          -8.865474520047659,
-          -10.440896757574434,
-          -10.451322829503624,
-          -8.896305967645585,
-          -9.141036480360354,
-          10.724165078001516,
-          -10.695322573879919,
-          9.531850553221632,
-          10.081174895536051,
-          -10.463699691568523,
-          9.90966510711989,
-          11.792710019281564,
-          10.37568424630397,
-          12.911477978192874,
-          10.278243472422577,
-          9.940823319703922,
-          10.679848559258907,
-          -10.503743374840006,
-          9.33435724642504,
-          11.572101618774981,
-          12.320333786766387,
-          12.281891070081697,
-          8.977285508928578,
-          -10.53301130272921,
-          10.057192520390203,
-          7.308047290098235,
-          10.012423923114838,
-          7.061662860200014,
-          10.424675315442567,
-          -10.566685289422773,
-          -10.704631241124535,
-          10.4345176106065,
-          9.887983298026334,
-          11.490708177839757,
-          9.80005268010275,
-          9.855603557375195,
-          -10.420115970895287,
-          9.636662676991481,
-          -10.374380250297651,
-          8.638041465727518,
-          11.994231485078283,
-          10.67513519335919,
-          -10.182643619409882,
-          9.698126202619513,
-          11.786089604017283,
-          10.563368668285154,
-          14.466915119686124,
-          11.575624033397188,
-          -9.682896556574498,
-          -8.831708322737398,
-          -10.537889811829483,
-          11.44846532761707,
-          -11.700464329676995,
-          -9.755584660207044,
-          -8.588175678540418,
-          10.564930722657436,
-          10.2198519673944,
-          11.835131053444673,
-          10.575779101066939,
-          9.97423730544981,
-          11.325511599284631,
-          -9.023451354913323,
-          12.205684375211273,
-          9.457469500819336,
-          8.639742147704991,
-          9.450064915276199,
-          -7.527399530887486,
-          -9.355932570605042,
-          5.978888675133557,
-          8.738702475465187,
-          10.45207835748669,
-          12.023748335875087,
-          -9.642138178470663,
-          6.050311985595439,
-          11.632794211531609,
-          -10.634004525962007,
-          9.807862025102207,
-          9.769717306631806,
-          8.969753167901906,
-          9.058496898925824,
-          10.424871276092782,
-          7.224233270784332,
-          8.496317217683025,
-          9.499857898484896,
-          11.379119183128392,
-          9.20393612398026,
-          10.759592851921706,
-          -10.315876009622436,
-          -10.331949617790958,
-          13.087628215414437,
-          8.135721757497835,
-          8.809779943296736,
-          -11.439593103496367,
-          9.969891862729853,
-          12.304031866766458,
-          10.898192279562904,
-          11.841933558673054,
-          10.557873799860392,
-          10.102753354874945,
-          8.72902600828847,
-          11.502236569058685,
-          8.447354870399117,
-          9.290771219185968,
-          12.790026117244036,
-          -9.687910551348896,
-          8.553370427743765,
-          8.766895868872211,
-          11.134531404166164,
-          8.844518458787991,
-          10.224791214630608,
-          9.409172867688525,
-          -10.731212846117879,
-          6.333516160226601,
-          10.74096997113504,
-          12.143809810172092,
-          -10.772819583391309,
-          10.845039166001884,
-          13.499419580657708,
-          11.435496579384633,
-          -9.828899631486431,
-          13.381252461757075,
-          8.979880418964106,
-          12.144439137346286,
-          10.436395825456046,
-          10.448647890099078,
-          -10.60897396773032,
-          8.484739543626805,
-          10.563870538399083,
-          8.68106101790583,
-          10.773177325548938,
-          9.746029155928737,
-          8.513398151507559,
-          11.37074455836519,
-          9.263473594618873,
-          -9.3994669682896,
-          12.243614001535505,
-          10.912125888884798,
-          9.182040705192227,
-          10.332006324613529,
-          9.185078821591075,
-          11.57607304529386,
-          -9.742280622129133,
-          -10.511970887243868,
-          13.918698192495766,
-          11.986084962347302,
-          8.906029301236995,
-          10.858778609839643,
-          9.770284300131292,
-          10.171228566986992,
-          8.690911867919516,
-          13.171240510174124,
-          -11.77199780477914,
-          12.017786155955422,
-          11.22423770217892,
-          -10.995877845618061,
-          -9.069641383565882,
-          8.930180119500058,
-          10.038089550790348,
-          11.768720547867774,
-          6.573426178878181,
-          10.023314917992774,
-          -11.822236759278908,
-          -10.488345512594137,
-          11.594404497924247,
-          13.560028850544922,
-          10.673019517077485,
-          11.608509446469586,
-          8.920570759476176,
-          9.191273326469311,
-          -10.70495982681957,
-          10.902424224777862,
-          10.403287491344047,
-          8.95637025597838,
-          9.35931769068917,
-          -10.91057109768764,
-          -10.759186483794885,
-          8.629666572708413,
-          9.606434135667847,
-          -10.12173033155779,
-          11.17986970217266,
-          10.481013811869808,
-          12.538727778204454,
-          11.344015269309374,
-          10.642340294219272,
-          8.964577978914914,
-          10.341829358003931,
-          -9.2888284355894,
-          11.447935150608027,
-          12.168721596769984,
-          11.346384678404416,
-          10.428298129070395,
-          11.649403916989291,
-          -9.79271899309922,
-          9.50319856016984,
-          -11.847251234222368,
-          11.099582837587928,
-          7.900261247212121,
-          12.122275276929404,
-          10.425779766812907,
-          9.944595635553174,
-          10.914493964160078,
-          11.178720881245663,
-          9.373041554941025,
-          8.486772461801852,
-          10.928284747355946,
-          -11.02365492040667,
-          9.87200546338476,
-          12.27779019098737,
-          -10.059019129541124,
-          9.817806238353809,
-          11.414366269228074,
-          8.431495709276914,
-          -10.289742541449181,
-          9.003330771333822,
-          -9.497480958344685,
-          9.29265681363001,
-          -9.879321385154745,
-          10.854296557811182,
-          -8.928114573961587,
-          9.474702375900257,
-          -7.862759346720767,
-          10.671411935591522,
-          12.21801224828346,
-          9.24658397583203,
-          -11.492189446260701,
-          9.875850554877843,
-          9.638928901167047,
-          -9.815596910473587,
-          11.603339942979126,
-          9.93840169202965,
-          10.302358023936534,
-          11.905741728049033,
-          10.397182307782865,
-          11.053787754743466,
-          13.068773854906988,
-          8.964509626499561,
-          9.909985634004457,
-          -8.793712235741825,
-          10.733710239955869,
-          6.944649984057682,
-          -8.497059893345208,
-          11.255878257221152,
-          -10.902012855879564,
-          10.340296039260005,
-          9.082624987113197,
-          10.937776784095277,
-          12.841973892783104,
-          -11.359083240788097,
-          9.780632098192648,
-          12.009465686484898,
-          13.075486401803486,
-          9.689939446632929,
-          10.488604892011022,
-          10.086568204028005,
-          8.980276623952065,
-          11.368131582035886,
-          10.237108881592455,
-          9.92196716215505,
-          10.770866829379662,
-          12.920068356127086,
-          13.264288822010855,
-          10.508376732734943,
-          8.568131198743057,
-          9.799145904426876,
-          -10.517434410587853,
-          9.692931698834034,
-          10.66233745927231,
-          13.607779351994518,
-          10.766816346548742,
-          8.861050101268384,
-          8.342301604760138,
-          -11.136619670688805,
-          -10.153659411361136,
-          11.234612558079673,
-          7.5768602023070635,
-          10.370233565667322,
-          11.685725914047294,
-          10.977566993572843,
-          10.334703332781139,
-          7.63623978571629,
-          10.550797026708112,
-          10.930453770944498,
-          11.625966123534965,
-          12.517890186668762,
-          8.177850004666583,
-          10.416328927102546,
-          9.43267988353315,
-          10.413825995491216,
-          9.364867628998418,
-          9.095105802829194,
-          11.26404596702201,
-          9.699219260736635,
-          -8.332784760504444,
-          9.930380216874982,
-          10.208413659333681,
-          9.260469235017347,
-          9.573447749035777,
-          9.248274728137755,
-          9.602752578328397,
-          8.951704455321007,
-          12.857266012890413,
-          10.448701031615865,
-          11.244048529307497,
-          11.788796386746471,
-          8.104842885171673,
-          10.376792958702737,
-          9.114112483013773,
-          9.53897080811271,
-          9.622306935194214,
-          10.41380019085692,
-          -10.192313605655889,
-          11.232383109532133
+          1.0391452459831667,
+          0.1069985003014704,
+          1.089119213967118,
+          -2.1258958957852605,
+          3.4362410276146305,
+          -3.766481115463967,
+          -2.6064658434467187,
+          1.544796966414089,
+          1.66818209392435,
+          2.37624625535706,
+          -2.846821634238681,
+          -3.364507195047059,
+          2.164127803545113,
+          2.876629024930123,
+          -2.6989322065737955,
+          -1.5268474788404514,
+          -2.575078964987102,
+          3.313681535068522,
+          -1.8569046945841539,
+          -0.27991768154314345,
+          0.6471350330368244,
+          -2.255757343506528,
+          2.0121757523503456,
+          -0.07574024694398362,
+          -3.061974968412682,
+          -0.5573867425089705,
+          0.14200746070149606,
+          -2.3086830389061075,
+          -0.9018220301392694,
+          0.8601153914363167,
+          -0.34871804505290926,
+          -2.911773831082211,
+          1.6098887839035987,
+          -0.9257142639948182,
+          2.2797918292118435,
+          1.5842090307992223,
+          1.415313074489382,
+          1.4108843736820056,
+          -2.089094487955701,
+          -1.0892043213630904,
+          -3.0749275733887833,
+          2.193823589329976,
+          -2.859323869399434,
+          2.171623305873606,
+          -2.4579272528312535,
+          1.108034682913928,
+          -0.793552718770052,
+          -1.6675024882528664,
+          -1.6339025925182722,
+          0.16111350324701412,
+          -3.003092054984883,
+          1.072643752501338,
+          3.261013880719159,
+          0.5266536460739628,
+          0.5614952485370441,
+          -3.176372154044845,
+          -3.0520099635804474,
+          -3.441884477366033,
+          -1.068327622101831,
+          -2.6016446631206818,
+          0.9538887388146184,
+          -3.2251251935341774,
+          -2.987980223956148,
+          1.3066742961783362,
+          -3.798216695335733,
+          1.6373667839640262,
+          1.694145805523397,
+          0.5938008260692742,
+          1.921677095112675,
+          2.316587918068727,
+          0.23076805350367913,
+          0.046740072425763834,
+          1.741892925467976,
+          0.21047599173468168,
+          2.4475595886704413,
+          -2.843741666990396,
+          -1.186391863849055,
+          -3.896641733633706,
+          0.8961822996182311,
+          -1.886513538580346,
+          -3.2746632566683314,
+          -0.15640108090353122,
+          -3.2537196517152176,
+          1.7032320280565703,
+          -0.11915000483505844,
+          2.6513391639009667,
+          -2.443698568002745,
+          0.5315637001136588,
+          -0.3562138439092877,
+          1.2274044911695174,
+          -2.780866682698433,
+          0.7829124176391611,
+          2.038053278967756,
+          -2.5249987098792284,
+          -3.1304909209615577,
+          3.126601842159043,
+          -2.1389511368583016,
+          0.9238288337082041,
+          -1.5265841220809993,
+          1.782685600925081,
+          -3.151154413502904,
+          3.417285535910164,
+          0.7818223501260482,
+          3.0773273120762763,
+          -0.9466436874417905,
+          -0.8448502224058059,
+          0.37948879548916636,
+          2.3044096777538137,
+          -3.94122887247234,
+          -0.3534441528227128,
+          -0.04721287996717294,
+          2.0843656146156953,
+          0.5936889461963322,
+          -1.6813211314576773,
+          -1.2405042542923579,
+          1.7355474055281883,
+          -3.874775351316885,
+          2.9784808388726747,
+          2.072595286263775,
+          -0.2732517712222835,
+          0.0668279071229243,
+          1.014145646349463,
+          2.465896071921965,
+          -3.7141978846877777,
+          -1.8595270459543314,
+          -2.0194209705606783,
+          -1.2159094665840366,
+          -3.097087221407169,
+          1.6851763663724082,
+          1.1182009194430451,
+          0.0572322494502,
+          0.35000081776112335,
+          -2.3762091316181646,
+          -1.917891263539245,
+          -2.480049752771343,
+          -1.560574242049976,
+          -1.6782041271682338,
+          0.892539893051624,
+          2.897824501927788,
+          -0.8009549432615377,
+          1.7574009045530046,
+          -1.810849180359131,
+          2.305013957090318,
+          1.3920840709679005,
+          1.460220213105874,
+          -1.5325901120714134,
+          1.4253403424676412,
+          -1.0019722399720203,
+          -3.896709861721237,
+          1.6302803888817516,
+          0.7646400775972468,
+          -2.980220093586893,
+          0.9609245772888295,
+          0.47820365673671805,
+          -0.5366386549377244,
+          2.0387166393764398,
+          -3.394362079303453,
+          -1.153024029610136,
+          -1.4084431237330253,
+          -1.9352607136119246,
+          1.1396127124611155,
+          -1.6125832049041304,
+          0.528584423091754,
+          -1.017900751114008,
+          -1.7056099448970778,
+          -2.7318192036875075,
+          -0.8761014404305727,
+          2.2297847597832696,
+          3.1928960495489704,
+          2.4039708272368276,
+          1.3786072165584633,
+          1.0202598070240114,
+          2.0786426071161452,
+          2.078694592155225,
+          -3.4400944992388354,
+          1.4817468781220056,
+          -3.122258183073762,
+          -3.6162462877754304,
+          1.997300685838817,
+          -0.16594505786484604,
+          -0.2603047029653731,
+          0.7598806539533616,
+          1.510304970758943,
+          -0.5786839502559418,
+          1.703207668224957,
+          -0.03449164996850396,
+          -0.2000207830385019,
+          -2.5104538184687195,
+          2.5275210254542406,
+          -2.5632498930899104,
+          0.9498339742696951,
+          2.758509625619631,
+          -3.9068061471876994,
+          0.7662475894162544,
+          1.9910465927204957,
+          1.457692147465882,
+          0.05152826369825991,
+          -1.6968294826855836,
+          0.14719780812095173,
+          -1.3490150647825203,
+          2.348491015083768,
+          -0.6637751187122141,
+          -2.3843388917369275,
+          2.4545001161497817,
+          0.7208100185418296,
+          1.9670873433353595,
+          -3.1962263228906544,
+          -2.798651820444973,
+          1.122125426182957,
+          -0.30319664515420763,
+          2.152689107560186,
+          0.05961639113636341,
+          1.8185400845310538,
+          2.5541017096573286,
+          1.912462639903982,
+          2.114604876239464,
+          -2.0944308159506333,
+          -0.5207491862817157,
+          -0.9619632796849,
+          1.1328099520451973,
+          -0.22733530875913077,
+          0.2964138396459495,
+          1.500523194292879,
+          -1.1233948052928717,
+          1.2815740313604147,
+          2.961859712157823,
+          -2.37457959592013,
+          -3.122330708276535,
+          -2.8555337587528307,
+          -0.7917460325544106,
+          -0.9087673044241322,
+          1.3997979323886804,
+          -0.9175015779887845,
+          1.8988225749872853,
+          3.385712900046526,
+          -1.6062298990997168,
+          -0.8254232727020088,
+          1.697097537624213,
+          -2.0812596788205457,
+          2.4784853275194587,
+          -3.7043877611121085,
+          3.367515798673079,
+          1.1555463441187213,
+          2.8955351558410714,
+          -0.0531136467792761,
+          2.5677279772903514,
+          -2.1518265135672103,
+          -1.3874150448044444,
+          1.3020996755109824,
+          -0.11836606406946792,
+          -0.5454891793440879,
+          -0.7850443933414364,
+          -0.39271190202470896,
+          2.921059360411137,
+          0.29389756839516945,
+          1.293251818863311,
+          -3.752614530226042,
+          -1.8783214526255803,
+          -0.22868057237390804,
+          2.4565361006356143,
+          1.9552193319032893,
+          2.4450282525420057,
+          0.9851067762448782,
+          1.8649365679380123,
+          -2.6905363115382883,
+          1.3119116025535744,
+          3.3447083626150773,
+          -2.2508823760218757,
+          1.4036316043860575,
+          2.646444988564981,
+          -3.592662965599694,
+          2.6111432310362543,
+          -2.187835062078301,
+          -1.6753233593249441,
+          1.7338417032062718,
+          1.1352500385847915,
+          -1.7707372675057944,
+          0.9448225108790442,
+          1.1062767586011315,
+          -1.1059151622196342,
+          -3.419612648413046,
+          -1.5057671384512554,
+          1.7889986782681175,
+          -3.7250280869938144,
+          -1.4955620811676646,
+          -0.8247187668229392,
+          -2.4739935705648106,
+          1.0458020292584669,
+          -3.6213938603926996,
+          -2.8932209653744274,
+          -0.6016277510778147,
+          -0.7145406603757092,
+          -2.8529203289059106,
+          -0.7552845284761314,
+          -3.034181604344351,
+          2.4493182460563494,
+          1.7186477815286292,
+          2.8780196156372595,
+          2.5912891336525368,
+          -0.7379210271420491,
+          -3.200260931294558,
+          -0.8310607841113673,
+          -3.9097351525927477,
+          -2.6022332822411207,
+          -0.7372159972167918,
+          1.1827793244418912,
+          2.502538105489921,
+          -3.965281823940293,
+          2.273410015802752,
+          -0.7291679108489637,
+          -2.0762860676923096,
+          -1.1323693500867194,
+          -1.2910920933013101,
+          -0.4265328112637654,
+          -1.960418750175395,
+          0.09890310797918911,
+          -0.32387252500565333,
+          1.9342512367549736,
+          -1.0695828783776848,
+          -1.0379691756627785,
+          -0.6496509585333388,
+          1.6398236855136297,
+          -2.12113654328476,
+          2.0763905663488655,
+          -1.398558172189997,
+          -3.442036083074548,
+          0.9813154843913541,
+          -2.3114755610606808,
+          -2.871155486278882,
+          1.6674166938074784,
+          0.6637763289508056,
+          1.356643474711153,
+          2.9104248724887487,
+          -2.5265927882031916,
+          0.8308939879908568,
+          0.022204866266749335,
+          2.1870632076444005,
+          -3.114791432341989,
+          1.721170755469779,
+          -0.42244989631513263,
+          -1.2835625150357806,
+          -2.50619273509014,
+          -0.14343047661907393,
+          2.7621301914022185,
+          -2.477627156155693,
+          0.2048803325279378,
+          -0.3035750763551306,
+          -1.5429801178972196,
+          -3.2417330224187255,
+          -0.5367862836342887,
+          2.734064700173705,
+          2.6696479470248793,
+          -3.288353915580073,
+          0.6071785909169503,
+          -0.11258615133476635,
+          -3.3972667744440788,
+          -1.229703956919776,
+          -0.4403079256922422,
+          1.8101123743552998,
+          -3.6432454804453864,
+          1.568223514463381,
+          -3.3248229875740956,
+          1.2091016769223168,
+          1.7632789887184597,
+          0.7379550443527121,
+          -2.3903968670733047,
+          -3.240252489228706,
+          2.6030078412632296,
+          -3.175960944066624,
+          -0.341739977712725,
+          -1.2942841581757087,
+          -0.6772706678984686,
+          0.03683290713168752,
+          -3.1943204744296305,
+          -0.4158869735828734,
+          2.3149299662511806,
+          1.5745509232846153,
+          -1.7991333529282105,
+          1.791340404056486,
+          2.600705986242925,
+          -1.509659389800201,
+          3.3333791229547884,
+          -3.2274221005938766,
+          2.3911088420528026,
+          -3.6605179311315776,
+          1.9635335856488743,
+          0.6229303696039672,
+          1.6425504960391955,
+          -2.3815097480647824,
+          -3.288683082217851,
+          1.5458297513619241,
+          1.6075863764232494,
+          -3.518945231648096,
+          1.9935649994865576,
+          1.5291371930692659,
+          0.7128262490740305,
+          -2.954074695569735,
+          -3.8607462330077458,
+          2.6021996084659893,
+          -1.1640830977732715,
+          -2.6571471415155954,
+          1.762601470947084,
+          2.268831998311131,
+          -0.7585633870372144,
+          2.560725339095365,
+          1.9517071148725522,
+          0.467937768503611,
+          -0.28835239127916656,
+          1.5803258154306654,
+          2.6801808842061385,
+          -1.3966118507784988,
+          3.453714735647817,
+          2.55634538010412,
+          3.273990936539753,
+          -3.4530470646835507,
+          1.2000709956278834,
+          2.819859071497877,
+          2.004807094737777,
+          0.9290673650152401,
+          -2.3182501842297847,
+          2.0260930211716657,
+          -1.9143158391644906,
+          1.6205183402069245,
+          -0.845876430497869,
+          -3.048717137851863,
+          1.7194592971268108,
+          -0.9816311658152839,
+          0.13750323498192163,
+          2.0302940982151627,
+          -2.670124019014975,
+          -2.9620901299679216,
+          -0.9975855545822587,
+          -0.25917680017026745,
+          0.13271160011415173,
+          -2.8073725024269405,
+          -1.8290628051680091,
+          1.6977230562763914,
+          -3.6768861880488592,
+          -0.4879681839017964,
+          2.914913654243515,
+          1.0986175569307077,
+          -1.048533886783361,
+          -0.21019504787564358,
+          1.878331474662688,
+          -2.3740668217678085,
+          1.9313857640806784,
+          -0.008197194356347026,
+          -1.5497440590309526,
+          -3.841137248180437,
+          0.8433296243628101,
+          3.4077263833473097,
+          -0.575338870544206,
+          -0.05194586336085205,
+          -0.0877020028997717,
+          1.9332903068739755,
+          1.936659914770127,
+          0.001371101017874743,
+          -3.831577444890157,
+          -1.3177004807999766,
+          -0.6537932944230458,
+          2.4207574806801926,
+          -3.306483017124987,
+          -2.274345514145919,
+          -3.5088711567004482,
+          -0.5708890617614562,
+          0.6934421470058325,
+          -1.3976529571281096,
+          0.30217003564059386,
+          2.362986790537362,
+          0.9079560019927033,
+          -1.3510911556344118,
+          1.1182986610886232,
+          -3.985573997929771,
+          1.5775230480917442,
+          -0.5520703187836244,
+          -1.312322676375842,
+          -0.5106516916781412,
+          0.3365224554100399,
+          -0.7414587113791518,
+          1.3833065209281497,
+          -0.6565909586283456,
+          -2.6725010585868745,
+          -3.282649979836493,
+          -0.22942835391279726,
+          -1.4196971972289774,
+          -0.18425850223587448,
+          -0.6448631601288972,
+          -1.399306212792271,
+          -2.89643197931554,
+          -0.29638616230522974,
+          -2.6180674200463288,
+          3.4064801244091685,
+          -1.5339061579333726,
+          -2.0162302153283367,
+          2.6170656664717455,
+          -3.163236995095931,
+          -3.502481791632914,
+          -3.551371266518605,
+          -1.349117723984938,
+          3.211048265960324,
+          2.408149393877558,
+          2.694670580598663,
+          -0.9670055432225784,
+          -1.629576920938871,
+          3.130819604195537,
+          -2.53806263726057,
+          -3.2500030370094986,
+          1.5037477685619676,
+          -2.7375354126737945,
+          0.335643017453485,
+          -1.957827203156091,
+          -0.7945114340509782,
+          2.541475125092142,
+          3.1444144386396005,
+          0.8466970200817805,
+          -0.2658882241302707,
+          2.6700582561949293,
+          2.2386447200760315,
+          2.112269024874828,
+          -1.4006597768429963,
+          -1.4695641985760242,
+          -0.7049687420780475,
+          1.5980398955903352,
+          0.24328783259863496,
+          0.5675563196523274,
+          -3.280763422545792,
+          -2.5895529883967123,
+          -1.8570442995931673,
+          -1.032907190557438,
+          2.5265485884672367,
+          -0.15808237713478945,
+          -1.8630865175262086,
+          -0.15534134741975025,
+          -3.5136475887419927,
+          -1.6242722180612494,
+          -0.3101869776109969,
+          -3.693996779859022,
+          1.6865522959740247,
+          -1.576380531311592,
+          1.6609123909796848,
+          2.3052052874684037,
+          -3.594680873665579,
+          -2.5589602553156805,
+          1.1014056513252788,
+          -0.6319750249642633,
+          1.9726049552584684,
+          -1.607947808396379,
+          -0.08152029930423854,
+          -1.7116859052009636,
+          0.481128078336007,
+          -0.12872886742430678,
+          1.9496859882958786,
+          -0.7587315448291663,
+          2.792009480554042,
+          -2.553574858258929,
+          0.5552702498145345,
+          -1.2183892717651368,
+          -1.90388544191085,
+          -1.3014254316331972,
+          -0.2824510016164665,
+          1.3896100577915282,
+          -0.07569875588244779,
+          -2.7815530639924533,
+          2.3006551501254497,
+          -2.489330611869974,
+          0.9419941931579077,
+          0.27024837390302725,
+          0.03709733386076142,
+          1.7880652767108751,
+          2.91675994113372,
+          1.789313842525126,
+          -3.631570208342957,
+          -3.990604352396238,
+          2.2739199512095993,
+          -2.2227626658252184,
+          0.9095967314598514,
+          -0.7786776621899687,
+          -3.375211381052711,
+          1.519125747689836,
+          -3.6608862111801135,
+          2.539190473079138,
+          -3.5639129371173723,
+          1.7335085393119218,
+          2.429009377549977,
+          -3.6277454704528282,
+          2.71649331667596,
+          0.734660874162147,
+          -1.356437841674624,
+          -0.5666290093074755,
+          0.44924098396375634,
+          -1.2050253771811539,
+          -4.048659378443026,
+          2.3683949306102647,
+          0.7042304902342842,
+          -1.4189806383202321,
+          0.19629509223830066,
+          -3.886922893679004,
+          -2.9862200251296374,
+          0.018566102268349205,
+          -0.38049171013021876,
+          1.966718749286267,
+          2.773436126435632,
+          -3.6649223063043355,
+          -1.5364111961799063,
+          3.3438760939741305,
+          -0.3037817174142954,
+          2.91327482229267,
+          2.1357344653791843,
+          -2.2062630090893647,
+          -0.6368056124881645,
+          -3.767426299406469,
+          -0.12264350069723218,
+          2.33119335187647,
+          1.177078652772579,
+          -0.4660658198870897,
+          -3.9685959171709597,
+          1.4583780777361595,
+          0.9679314765196478,
+          -2.935357166330526,
+          -1.4012099520563903,
+          2.8451843766931892,
+          -2.576122396791643,
+          -0.41305199067933973,
+          0.9075868270745868,
+          -1.534097460719849,
+          -3.4977682211388554,
+          3.2846759858971133,
+          -1.852522003399506,
+          -1.1354215613579939,
+          -0.7217508025462269,
+          -3.8032483970123585,
+          3.423780174390063,
+          0.973099625938822,
+          2.056697237652159,
+          2.534653494208203,
+          3.0233221159021184,
+          -2.019566662096774,
+          3.31167400147746,
+          -1.8218169069373138,
+          -2.408491547578845,
+          1.5118723467133401,
+          -3.2821780567833105,
+          -1.2515681891047472,
+          -0.8182990330024991,
+          2.568771899180021,
+          -3.5113836204293714,
+          -1.7532579802600372,
+          0.36395916173178566,
+          -1.034866680856679,
+          -2.4962225151148036,
+          -1.7082733403129624,
+          -0.016849821948151877,
+          3.2752079716918026,
+          -2.609306856045669,
+          -2.5234294560504438,
+          0.8950480338406352,
+          -2.8554729905940786,
+          2.531564980427106,
+          -1.3321134202779823,
+          -1.1754481885244354,
+          -0.17263514183746898,
+          2.3460245003134412,
+          0.37485342743786276,
+          1.3374458042638242,
+          0.0334380417028175,
+          0.2929364690840748
          ]
         },
         {
@@ -30037,2677 +30007,2677 @@
          "scene": "scene4",
          "showlegend": false,
          "text": [
-          "example_1",
-          "example_4",
-          "example_8",
-          "example_11",
-          "example_13",
-          "example_14",
-          "example_16",
-          "example_17",
-          "example_19",
-          "example_20",
-          "example_21",
-          "example_22",
-          "example_26",
-          "example_34",
-          "example_35",
-          "example_36",
-          "example_37",
-          "example_40",
-          "example_46",
-          "example_50",
-          "example_53",
-          "example_61",
-          "example_64",
-          "example_75",
-          "example_87",
-          "example_89",
-          "example_91",
-          "example_93",
-          "example_95",
-          "example_98",
-          "example_103",
-          "example_112",
-          "example_114",
-          "example_116",
-          "example_119",
-          "example_121",
-          "example_122",
-          "example_127",
-          "example_130",
-          "example_134",
-          "example_143",
-          "example_146",
-          "example_149",
-          "example_150",
-          "example_151",
-          "example_152",
-          "example_153",
-          "example_154",
-          "example_157",
-          "example_159",
-          "example_160",
-          "example_161",
-          "example_166",
-          "example_176",
-          "example_180",
-          "example_186",
-          "example_187",
-          "example_189",
-          "example_190",
-          "example_191",
-          "example_197",
-          "example_200",
-          "example_201",
-          "example_202",
-          "example_205",
-          "example_206",
-          "example_207",
-          "example_216",
-          "example_217",
-          "example_219",
-          "example_225",
-          "example_229",
-          "example_230",
-          "example_241",
-          "example_245",
-          "example_246",
-          "example_252",
-          "example_253",
-          "example_257",
-          "example_262",
-          "example_263",
-          "example_264",
-          "example_268",
-          "example_269",
-          "example_276",
-          "example_278",
-          "example_279",
-          "example_283",
-          "example_284",
-          "example_288",
-          "example_293",
-          "example_295",
-          "example_301",
-          "example_304",
-          "example_313",
-          "example_315",
-          "example_317",
-          "example_320",
-          "example_330",
-          "example_335",
-          "example_337",
-          "example_340",
-          "example_343",
-          "example_345",
-          "example_356",
-          "example_369",
-          "example_378",
-          "example_379",
-          "example_384",
-          "example_385",
-          "example_387",
-          "example_391",
-          "example_392",
-          "example_395",
-          "example_396",
-          "example_397",
-          "example_399",
-          "example_400",
-          "example_401",
-          "example_402",
-          "example_403",
-          "example_406",
-          "example_407",
-          "example_412",
-          "example_417",
-          "example_418",
-          "example_431",
-          "example_437",
-          "example_441",
-          "example_443",
-          "example_444",
-          "example_452",
-          "example_454",
-          "example_455",
-          "example_456",
-          "example_459",
-          "example_463",
-          "example_466",
-          "example_469",
-          "example_470",
-          "example_472",
-          "example_473",
-          "example_474",
-          "example_476",
-          "example_484",
-          "example_487",
-          "example_488",
-          "example_489",
-          "example_492",
-          "example_496",
-          "example_498",
-          "example_502",
-          "example_508",
-          "example_509",
-          "example_510",
-          "example_511",
-          "example_512",
-          "example_515",
-          "example_517",
-          "example_520",
-          "example_521",
-          "example_524",
-          "example_537",
-          "example_540",
-          "example_546",
-          "example_550",
-          "example_556",
-          "example_559",
-          "example_562",
-          "example_563",
-          "example_564",
-          "example_565",
-          "example_569",
-          "example_574",
-          "example_577",
-          "example_580",
-          "example_586",
-          "example_592",
-          "example_595",
-          "example_600",
-          "example_604",
-          "example_606",
-          "example_608",
-          "example_612",
-          "example_616",
-          "example_623",
-          "example_625",
-          "example_627",
-          "example_632",
-          "example_633",
-          "example_635",
-          "example_639",
-          "example_640",
-          "example_641",
-          "example_642",
-          "example_645",
-          "example_646",
-          "example_647",
-          "example_648",
-          "example_653",
-          "example_655",
-          "example_656",
-          "example_658",
-          "example_659",
-          "example_662",
-          "example_663",
-          "example_675",
-          "example_681",
-          "example_683",
-          "example_684",
-          "example_685",
-          "example_686",
-          "example_687",
-          "example_689",
-          "example_690",
-          "example_696",
-          "example_698",
-          "example_699",
-          "example_702",
-          "example_703",
-          "example_709",
-          "example_717",
-          "example_719",
-          "example_725",
-          "example_726",
-          "example_728",
-          "example_729",
-          "example_734",
-          "example_738",
-          "example_740",
-          "example_742",
-          "example_747",
-          "example_748",
-          "example_749",
-          "example_751",
-          "example_753",
-          "example_758",
-          "example_760",
-          "example_761",
-          "example_763",
-          "example_766",
-          "example_768",
-          "example_769",
-          "example_773",
-          "example_775",
-          "example_776",
-          "example_779",
-          "example_784",
-          "example_789",
-          "example_790",
-          "example_791",
-          "example_794",
-          "example_795",
-          "example_797",
-          "example_800",
-          "example_801",
-          "example_804",
-          "example_805",
-          "example_815",
-          "example_821",
-          "example_822",
-          "example_825",
-          "example_827",
-          "example_830",
-          "example_831",
-          "example_833",
-          "example_835",
-          "example_837",
-          "example_840",
-          "example_848",
-          "example_850",
-          "example_851",
-          "example_853",
-          "example_854",
-          "example_856",
-          "example_860",
-          "example_863",
-          "example_866",
-          "example_870",
-          "example_871",
-          "example_872",
-          "example_876",
-          "example_877",
-          "example_878",
-          "example_880",
-          "example_883",
-          "example_884",
-          "example_890",
-          "example_891",
-          "example_895",
-          "example_896",
-          "example_897",
-          "example_902",
-          "example_911",
-          "example_913",
-          "example_919",
-          "example_920",
-          "example_927",
-          "example_928",
-          "example_929",
-          "example_935",
-          "example_947",
-          "example_951",
-          "example_954",
-          "example_955",
-          "example_956",
-          "example_957",
-          "example_959",
-          "example_960",
-          "example_961",
-          "example_969",
-          "example_971",
-          "example_972",
-          "example_975",
-          "example_977",
-          "example_980",
-          "example_981",
-          "example_991",
-          "example_992",
-          "example_995",
-          "example_996",
-          "example_1002",
-          "example_1003",
-          "example_1008",
-          "example_1011",
-          "example_1012",
-          "example_1014",
-          "example_1015",
-          "example_1016",
-          "example_1017",
-          "example_1019",
-          "example_1020",
-          "example_1021",
-          "example_1025",
-          "example_1028",
-          "example_1038",
-          "example_1039",
-          "example_1042",
-          "example_1044",
-          "example_1045",
-          "example_1048",
-          "example_1051",
-          "example_1056",
-          "example_1059",
-          "example_1060",
-          "example_1062",
-          "example_1064",
-          "example_1066",
-          "example_1069",
-          "example_1070",
-          "example_1071",
-          "example_1072",
-          "example_1076",
-          "example_1077",
-          "example_1081",
-          "example_1082",
-          "example_1086",
-          "example_1092",
-          "example_1095",
-          "example_1098",
-          "example_1099",
-          "example_1104",
-          "example_1109",
-          "example_1115",
-          "example_1119",
-          "example_1122",
-          "example_1123",
-          "example_1126",
-          "example_1127",
-          "example_1129",
-          "example_1130",
-          "example_1135",
-          "example_1136",
-          "example_1139",
-          "example_1141",
-          "example_1143",
-          "example_1147",
-          "example_1148",
-          "example_1150",
-          "example_1152",
-          "example_1153",
-          "example_1154",
-          "example_1158",
-          "example_1162",
-          "example_1166",
-          "example_1167",
-          "example_1171",
-          "example_1174",
-          "example_1180",
-          "example_1183",
-          "example_1184",
-          "example_1186",
-          "example_1191",
-          "example_1194",
-          "example_1195",
-          "example_1199",
-          "example_1203",
-          "example_1207",
-          "example_1212",
-          "example_1213",
-          "example_1215",
-          "example_1218",
-          "example_1219",
-          "example_1224",
-          "example_1227",
-          "example_1238",
-          "example_1241",
-          "example_1243",
-          "example_1246",
-          "example_1248",
-          "example_1250",
-          "example_1254",
-          "example_1256",
-          "example_1257",
-          "example_1260",
-          "example_1264",
-          "example_1266",
-          "example_1267",
-          "example_1275",
-          "example_1276",
-          "example_1277",
-          "example_1279",
-          "example_1282",
-          "example_1291",
-          "example_1294",
-          "example_1295",
-          "example_1296",
-          "example_1297",
-          "example_1300",
-          "example_1306",
-          "example_1308",
-          "example_1311",
-          "example_1312",
-          "example_1321",
-          "example_1325",
-          "example_1327",
-          "example_1332",
-          "example_1337",
-          "example_1346",
-          "example_1348",
-          "example_1349",
-          "example_1350",
-          "example_1354",
-          "example_1363",
-          "example_1365",
-          "example_1367",
-          "example_1369",
-          "example_1371",
-          "example_1372",
-          "example_1373",
-          "example_1377",
-          "example_1378",
-          "example_1382",
-          "example_1388",
-          "example_1390",
-          "example_1396",
-          "example_1397",
-          "example_1398",
-          "example_1399",
-          "example_1400",
-          "example_1408",
-          "example_1409",
-          "example_1410",
-          "example_1411",
-          "example_1413",
-          "example_1415",
-          "example_1416",
-          "example_1426",
-          "example_1430",
-          "example_1434",
-          "example_1437",
-          "example_1438",
-          "example_1439",
-          "example_1442",
-          "example_1443",
-          "example_1444",
-          "example_1445",
-          "example_1451",
-          "example_1459",
-          "example_1462",
-          "example_1465",
-          "example_1475",
-          "example_1476",
-          "example_1478",
-          "example_1479",
-          "example_1482",
-          "example_1484",
-          "example_1485",
-          "example_1487",
-          "example_1494",
-          "example_1495",
-          "example_1496",
-          "example_1499",
-          "example_1500",
-          "example_1504",
-          "example_1508",
-          "example_1513",
-          "example_1515",
-          "example_1517",
-          "example_1520",
-          "example_1522",
-          "example_1527",
-          "example_1528",
-          "example_1529",
-          "example_1533",
-          "example_1534",
-          "example_1535",
-          "example_1539",
-          "example_1543",
-          "example_1550",
-          "example_1555",
-          "example_1559",
-          "example_1567",
-          "example_1569",
-          "example_1570",
-          "example_1573",
-          "example_1577",
-          "example_1579",
-          "example_1583",
-          "example_1584",
-          "example_1585",
-          "example_1589",
-          "example_1590",
-          "example_1594",
-          "example_1595",
-          "example_1597",
-          "example_1598",
-          "example_1600",
-          "example_1603",
-          "example_1623",
-          "example_1624",
-          "example_1629",
-          "example_1631",
-          "example_1633",
-          "example_1634",
-          "example_1636",
-          "example_1638",
-          "example_1643",
-          "example_1648",
-          "example_1653",
-          "example_1654",
-          "example_1655",
-          "example_1659",
-          "example_1660",
-          "example_1661",
-          "example_1663",
-          "example_1670",
-          "example_1678",
-          "example_1679",
-          "example_1680",
-          "example_1681",
-          "example_1685",
-          "example_1687",
-          "example_1688",
-          "example_1690",
-          "example_1693",
-          "example_1695",
-          "example_1698",
-          "example_1700",
-          "example_1702",
-          "example_1705",
-          "example_1706",
-          "example_1707",
-          "example_1710",
-          "example_1714",
-          "example_1715",
-          "example_1716",
-          "example_1720",
-          "example_1721",
-          "example_1722",
-          "example_1723",
-          "example_1724",
-          "example_1725",
-          "example_1731",
-          "example_1733",
-          "example_1737",
-          "example_1740",
-          "example_1742",
-          "example_1744",
-          "example_1746",
-          "example_1748",
-          "example_1750",
-          "example_1751",
-          "example_1756",
-          "example_1757",
-          "example_1762",
-          "example_1766",
-          "example_1768",
-          "example_1771",
-          "example_1772",
-          "example_1774",
-          "example_1776",
-          "example_1777",
-          "example_1785",
-          "example_1788",
-          "example_1790",
-          "example_1792",
-          "example_1793",
-          "example_1794",
-          "example_1795",
-          "example_1796",
-          "example_1803",
-          "example_1804",
-          "example_1805",
-          "example_1806",
-          "example_1809",
-          "example_1820",
-          "example_1821",
-          "example_1828",
-          "example_1833",
-          "example_1834",
-          "example_1836",
-          "example_1837",
-          "example_1839",
-          "example_1841",
-          "example_1842",
-          "example_1845",
-          "example_1846",
-          "example_1849",
-          "example_1850",
-          "example_1861",
-          "example_1862",
-          "example_1868",
-          "example_1873",
-          "example_1875",
-          "example_1876",
-          "example_1877",
-          "example_1878",
-          "example_1879",
-          "example_1880",
-          "example_1883",
-          "example_1886",
-          "example_1889",
-          "example_1892",
-          "example_1893",
-          "example_1895",
-          "example_1898",
-          "example_1899",
-          "example_1902",
-          "example_1905",
-          "example_1906",
-          "example_1908",
-          "example_1913",
-          "example_1915",
-          "example_1916",
-          "example_1923",
-          "example_1926",
-          "example_1940",
-          "example_1945",
-          "example_1946",
-          "example_1947",
-          "example_1949",
-          "example_1950",
-          "example_1951",
-          "example_1953",
-          "example_1962",
-          "example_1965",
-          "example_1966",
-          "example_1968",
-          "example_1969",
-          "example_1980",
-          "example_1981",
-          "example_1982",
-          "example_1994",
-          "example_1995",
-          "example_1997"
+          "1332_l_2_m-0_0.1-1_0.4-2_0.08-3_1.02",
+          "1333_l_2_m-0_1.42-1_0.49-2_0.11-3_0.17",
+          "1334_l_2_m-0_0.41-1_0.13-2_0.63-3_0.36",
+          "1335_l_2_m-0_1.18-1_0.06-2_0.66-3_0.16",
+          "1336_l_2_m-0_0.42-1_0.02-2_0.37-3_0.04",
+          "1337_l_2_m-0_0.92-1_0.44-2_0.07-3_0.07",
+          "1338_l_2_c_0_1_3-0_0.24-1_0.21-2_0.22-3_0.16",
+          "1339_l_2_c_0_1_3-0_0.21-1_0.24-2_1.39-3_0.32",
+          "1340_l_2_c_0_1_3-0_0.02-1_0.11-2_0.95-3_0.42",
+          "1341_l_2_c_0_1_3-0_0.14-1_0.17-2_0.95-3_0.05",
+          "1342_l_2_c_0_1_3-0_0.87-1_0.24-2_0.49-3_0.38",
+          "1343_l_2_c_0_1_3-0_0.49-1_0.63-2_0.09-3_0.15",
+          "1344_l_2_c_0_1_3-0_0.25-1_0.85-2_0.58-3_0.21",
+          "1345_l_2_c_0_1_3-0_0.21-1_0.33-2_1.06-3_0.13",
+          "1346_l_2_c_0_1_3-0_0.03-1_0.24-2_0.27-3_0.41",
+          "1347_l_2_c_0_1_3-0_0.98-1_1.27-2_0.12-3_0.24",
+          "1348_l_2_c_0_1_3-0_1.0-1_0.42-2_0.53-3_0.01",
+          "1349_l_2_c_0_1_3-0_0.04-1_0.54-2_0.13-3_0.87",
+          "1350_l_2_c_0_1_3-0_0.62-1_0.27-2_0.26-3_0.12",
+          "1351_l_2_c_0_1_3-0_0.76-1_0.19-2_1.3-3_0.85",
+          "1352_l_2_c_0_1_3-0_0.83-1_0.72-2_0.03-3_0.28",
+          "1353_l_2_c_0_1_3-0_0.06-1_0.02-2_0.58-3_0.15",
+          "1354_l_2_c_0_1_3-0_0.2-1_0.75-2_0.25-3_0.44",
+          "1355_l_2_c_0_1_3-0_0.0-1_0.01-2_0.07-3_0.62",
+          "1356_l_2_c_0_1_3-0_0.51-1_0.13-2_0.03-3_0.09",
+          "1357_l_2_c_0_1_3-0_0.72-1_0.08-2_1.79-3_0.38",
+          "1358_l_2_c_0_1_3-0_0.87-1_0.38-2_0.45-3_0.25",
+          "1359_l_2_c_0_1_3-0_0.52-1_0.96-2_0.35-3_0.08",
+          "1360_l_2_c_0_1_3-0_0.73-1_0.19-2_1.06-3_1.11",
+          "1361_l_2_c_0_1_3-0_0.08-1_0.12-2_0.29-3_0.16",
+          "1362_l_2_c_0_1_3-0_0.13-1_0.07-2_0.47-3_0.28",
+          "1363_l_2_c_0_1_3-0_0.34-1_0.38-2_0.97-3_0.13",
+          "1364_l_2_c_0_1_3-0_0.36-1_0.03-2_0.55-3_0.14",
+          "1365_l_2_c_0_1_3-0_0.96-1_0.15-2_0.39-3_0.17",
+          "1366_l_2_c_0_1_3-0_0.04-1_0.05-2_0.35-3_0.68",
+          "1367_l_2_c_0_1_3-0_0.9-1_0.28-2_0.42-3_0.21",
+          "1368_l_2_c_0_1_3-0_0.14-1_0.14-2_0.23-3_0.14",
+          "1369_l_2_c_0_1_3-0_0.19-1_0.39-2_1.23-3_0.28",
+          "1370_l_2_c_0_1_3-0_0.48-1_0.16-2_0.02-3_0.35",
+          "1371_l_2_c_0_1_3-0_0.05-1_0.35-2_0.66-3_0.11",
+          "1372_l_2_c_0_1_3-0_0.65-1_0.13-2_0.57-3_0.6",
+          "1373_l_2_c_0_1_3-0_0.55-1_0.26-2_0.35-3_0.83",
+          "1374_l_2_c_0_1_3-0_0.15-1_0.87-2_0.89-3_0.16",
+          "1375_l_2_c_0_1_3-0_0.19-1_0.53-2_0.43-3_0.14",
+          "1376_l_2_c_0_1_3-0_0.18-1_0.33-2_0.74-3_0.13",
+          "1377_l_2_c_0_1_3-0_0.52-1_0.07-2_0.62-3_0.42",
+          "1378_l_2_c_0_1_3-0_0.02-1_0.08-2_1.53-3_0.11",
+          "1379_l_2_c_0_1_3-0_0.35-1_0.08-2_0.37-3_0.76",
+          "1380_l_2_c_0_1_2-0_0.32-1_0.35-2_0.05-3_0.08",
+          "1381_l_2_c_0_1_3-0_0.14-1_0.78-2_0.65-3_0.11",
+          "1382_l_2_c_0_1_2-0_0.1-1_0.14-2_0.34-3_1.03",
+          "1383_l_2_c_0_1_3-0_0.82-1_0.05-2_0.24-3_0.76",
+          "1384_l_2_c_0_1_2-0_0.07-1_0.35-2_0.01-3_1.09",
+          "1385_l_2_c_0_1_3-0_0.37-1_0.17-2_1.62-3_0.09",
+          "1386_l_2_c_0_1_2-0_0.54-1_0.05-2_0.54-3_0.3",
+          "1387_l_2_c_0_1_3-0_0.13-1_1.2-2_0.96-3_0.04",
+          "1388_l_2_c_0_1_2-0_0.44-1_0.34-2_0.04-3_0.63",
+          "1389_l_2_c_0_1_3-0_0.64-1_0.04-2_0.78-3_0.06",
+          "1390_l_2_c_0_1_2-0_0.24-1_0.7-2_0.58-3_0.95",
+          "1391_l_2_c_0_1_3-0_1.0-1_0.24-2_0.98-3_0.45",
+          "1392_l_2_c_0_1_2-0_0.31-1_0.03-2_0.05-3_0.08",
+          "1393_l_2_c_0_1_3-0_0.53-1_0.44-2_0.94-3_0.65",
+          "1394_l_2_c_0_1_2-0_0.14-1_0.16-2_0.75-3_0.99",
+          "1395_l_2_c_0_1_3-0_0.23-1_0.67-2_0.27-3_0.26",
+          "1396_l_2_c_0_1_2-0_0.32-1_0.77-2_0.22-3_0.72",
+          "1397_l_2_c_0_1_3-0_0.12-1_0.13-2_0.75-3_0.11",
+          "1398_l_2_c_0_1_2-0_0.34-1_0.15-2_0.36-3_0.93",
+          "1399_l_2_c_0_1_3-0_0.69-1_0.29-2_1.08-3_0.5",
+          "1400_l_2_c_0_1_2-0_0.17-1_0.2-2_0.04-3_0.4",
+          "1401_l_2_c_0_1_3-0_0.72-1_0.25-2_0.39-3_0.1",
+          "1402_l_2_c_0_1_2-0_0.25-1_0.01-2_0.03-3_0.66",
+          "1403_l_2_c_0_1_3-0_0.07-1_0.63-2_0.93-3_0.48",
+          "1404_l_2_c_0_1_2-0_0.32-1_0.24-2_0.61-3_1.56",
+          "1405_l_2_c_0_1_3-0_0.19-1_0.13-2_0.51-3_0.55",
+          "1406_l_2_c_0_1_2-0_0.8-1_0.33-2_0.23-3_0.34",
+          "1407_l_2_c_0_1_3-0_0.1-1_0.15-2_0.56-3_0.77",
+          "1408_l_2_c_0_1_2-0_0.84-1_0.06-2_0.47-3_0.17",
+          "1409_l_2_c_0_1_3-0_0.01-1_0.03-2_0.47-3_0.57",
+          "1410_l_2_c_0_1_2-0_0.07-1_0.1-2_0.14-3_0.14",
+          "1411_l_2_c_0_1_3-0_0.5-1_0.19-2_1.55-3_0.55",
+          "1412_l_2_c_0_1_2-0_0.83-1_0.01-2_0.02-3_0.76",
+          "1413_l_2_c_0_1_3-0_0.24-1_0.57-2_0.53-3_0.05",
+          "1414_l_2_c_0_1_2-0_0.4-1_0.27-2_0.23-3_0.43",
+          "1415_l_2_c_0_1_3-0_0.64-1_0.66-2_0.7-3_0.67",
+          "1416_l_2_c_0_1_2-0_0.09-1_0.95-2_0.8-3_0.57",
+          "1417_l_2_c_0_1_3-0_0.12-1_0.27-2_0.02-3_0.69",
+          "1418_l_2_c_0_1_2-0_0.02-1_0.31-2_0.62-3_0.33",
+          "1419_l_2_c_0_1_3-0_0.19-1_0.14-2_0.02-3_0.26",
+          "1420_l_2_c_0_1_2-0_0.5-1_0.02-2_0.07-3_1.04",
+          "1421_l_2_c_0_1_3-0_0.09-1_0.05-2_0.12-3_0.44",
+          "1422_l_2_c_0_1_2-0_0.03-1_1.15-2_0.84-3_1.68",
+          "1423_l_2_c_0_1_3-0_0.3-1_0.14-2_0.57-3_0.45",
+          "1424_l_2_c_0_1_2-0_0.81-1_0.89-2_0.09-3_0.5",
+          "1425_l_2_c_0_1_3-0_0.23-1_0.05-2_0.82-3_0.49",
+          "1426_l_2_c_0_1_2-0_0.23-1_0.44-2_0.32-3_1.59",
+          "1427_l_2_c_0_1_3-0_0.18-1_0.18-2_0.8-3_0.65",
+          "1428_l_2_c_0_1_2-0_0.48-1_0.58-2_0.04-3_0.63",
+          "1429_l_2_c_0_1_3-0_0.34-1_0.27-2_0.51-3_0.38",
+          "1430_l_2_c_0_1_2-0_0.09-1_1.64-2_0.09-3_0.81",
+          "1431_l_2_c_0_1_3-0_0.22-1_0.18-2_1.22-3_0.29",
+          "1432_l_2_c_0_1_2-0_0.15-1_0.32-2_0.43-3_0.74",
+          "1433_l_2_c_0_1_3-0_0.68-1_0.56-2_0.4-3_0.14",
+          "1434_l_2_c_0_1_2-0_0.1-1_0.72-2_0.0-3_0.32",
+          "1435_l_2_c_0_1_3-0_0.46-1_0.2-2_1.3-3_0.45",
+          "1436_l_2_c_0_1_2-0_0.48-1_0.15-2_0.07-3_0.11",
+          "1437_l_2_c_0_1_3-0_0.54-1_0.09-2_1.14-3_0.51",
+          "1438_l_2_c_0_1_2-0_0.23-1_0.05-2_0.21-3_0.64",
+          "1439_l_2_c_0_1_3-0_1.13-1_0.47-2_1.55-3_0.67",
+          "1440_l_2_c_0_1_2-0_0.01-1_0.44-2_0.15-3_0.81",
+          "1441_l_2_c_0_1_3-0_0.67-1_0.28-2_0.52-3_0.17",
+          "1442_l_2_c_0_1_2-0_0.35-1_0.02-2_0.64-3_0.38",
+          "1443_l_2_c_0_1_3-0_0.21-1_0.36-2_0.4-3_0.0",
+          "1444_l_2_c_0_1_2-0_0.45-1_0.23-2_0.32-3_1.44",
+          "1445_l_2_c_0_1_3-0_0.69-1_1.13-2_0.28-3_0.64",
+          "1446_l_2_c_0_1_2-0_0.06-1_0.67-2_0.21-3_0.63",
+          "1447_l_2_c_0_1_3-0_0.5-1_0.9-2_0.38-3_0.43",
+          "1448_l_2_c_0_1_2-0_0.09-1_0.54-2_0.29-3_0.99",
+          "1449_l_2_c_0_1_3-0_0.25-1_0.46-2_1.75-3_0.99",
+          "1450_l_2_c_0_1_2-0_0.04-1_0.03-2_0.11-3_0.05",
+          "1451_l_2_c_0_1_3-0_0.26-1_0.1-2_0.61-3_0.95",
+          "1452_l_2_c_0_1_2-0_0.11-1_0.11-2_0.09-3_0.01",
+          "1453_l_2_c_0_1_3-0_1.16-1_0.36-2_1.21-3_0.67",
+          "1454_l_2_c_0_1_2-0_0.32-1_0.08-2_0.01-3_0.19",
+          "1455_l_2_c_0_1_3-0_0.45-1_0.11-2_0.85-3_0.41",
+          "1456_l_2_c_0_1_2-0_0.04-1_0.31-2_0.28-3_0.28",
+          "1457_l_2_c_0_1_3-0_0.05-1_0.27-2_0.17-3_0.19",
+          "1458_l_2_c_0_1_2-0_0.11-1_0.02-2_0.02-3_0.31",
+          "1459_l_2_c_0_1_3-0_0.15-1_0.5-2_0.61-3_0.62",
+          "1460_l_2_c_0_1_2-0_0.02-1_0.56-2_0.1-3_0.53",
+          "1461_l_2_c_0_1_3-0_0.42-1_0.43-2_1.3-3_0.32",
+          "1462_l_2_c_0_1_2-0_0.42-1_0.11-2_0.88-3_0.95",
+          "1463_l_2_c_0_1_3-0_0.11-1_0.59-2_0.11-3_0.84",
+          "1464_l_2_c_0_1_2-0_0.18-1_0.16-2_0.16-3_0.67",
+          "1465_l_2_c_0_1_3-0_0.35-1_0.95-2_0.06-3_0.27",
+          "1466_l_2_c_0_1_2-0_0.1-1_0.82-2_0.11-3_2.07",
+          "1467_l_2_c_0_1_3-0_0.48-1_0.43-2_0.41-3_0.68",
+          "1468_l_2_c_0_1_2-0_0.79-1_1.31-2_0.01-3_0.09",
+          "1469_l_2_c_0_1_3-0_0.07-1_0.15-2_0.4-3_0.79",
+          "1470_l_2_c_0_1_2-0_0.34-1_0.41-2_0.42-3_1.09",
+          "1471_l_2_c_0_1_3-0_0.01-1_0.16-2_0.31-3_0.55",
+          "1472_l_2_c_0_1_2-0_0.13-1_0.24-2_0.05-3_0.43",
+          "1473_l_2_c_0_1_3-0_0.11-1_0.14-2_0.97-3_0.33",
+          "1474_l_2_c_0_1_2-0_0.25-1_0.65-2_0.05-3_0.7",
+          "1475_l_2_c_0_1_3-0_0.2-1_0.5-2_1.36-3_0.61",
+          "1476_l_2_c_1_2_3-0_0.54-1_0.22-2_0.69-3_0.14",
+          "1477_l_2_c_0_1_2-0_0.0-1_0.54-2_0.34-3_0.17",
+          "1478_l_2_c_0_1_3-0_0.02-1_0.69-2_0.46-3_0.3",
+          "1479_l_2_c_1_2_3-0_0.56-1_0.47-2_0.12-3_0.17",
+          "1480_l_2_c_0_1_2-0_0.01-1_0.13-2_1.01-3_0.7",
+          "1481_l_2_c_0_1_3-0_1.94-1_0.32-2_1.25-3_1.17",
+          "1482_l_2_c_1_2_3-0_0.8-1_0.49-2_0.03-3_0.15",
+          "1483_l_2_c_0_1_2-0_0.06-1_0.13-2_0.59-3_0.21",
+          "1484_l_2_c_0_1_3-0_0.73-1_0.05-2_0.68-3_0.0",
+          "1485_l_2_c_1_2_3-0_0.93-1_0.11-2_0.22-3_0.25",
+          "1486_l_2_c_0_1_2-0_0.32-1_1.15-2_0.2-3_0.19",
+          "1487_l_2_c_0_1_3-0_0.05-1_0.46-2_0.55-3_0.18",
+          "1488_l_2_c_1_2_3-0_0.45-1_0.36-2_0.69-3_0.08",
+          "1489_l_2_c_0_1_2-0_0.73-1_0.25-2_0.19-3_0.85",
+          "1490_l_2_c_0_1_3-0_0.26-1_0.0-2_1.11-3_0.23",
+          "1491_l_2_c_1_2_3-0_0.85-1_0.04-2_0.41-3_0.4",
+          "1492_l_2_c_0_1_2-0_0.56-1_0.17-2_0.03-3_0.84",
+          "1493_l_2_c_0_1_3-0_0.25-1_0.09-2_1.13-3_0.04",
+          "1494_l_2_c_1_2_3-0_1.9-1_0.86-2_0.18-3_0.06",
+          "1495_l_2_c_0_1_2-0_0.41-1_0.15-2_0.4-3_1.38",
+          "1496_l_2_c_0_1_3-0_0.14-1_0.48-2_0.11-3_1.05",
+          "1497_l_2_c_1_2_3-0_0.24-1_0.41-2_0.08-3_0.28",
+          "1498_l_2_c_0_1_2-0_0.13-1_0.45-2_0.26-3_0.61",
+          "1499_l_2_c_0_1_3-0_0.97-1_0.47-2_1.06-3_1.09",
+          "1500_l_2_c_1_2_3-0_0.81-1_0.73-2_0.19-3_0.06",
+          "1501_l_2_c_0_1_2-0_0.48-1_0.01-2_0.17-3_0.89",
+          "1502_l_2_c_0_1_3-0_0.04-1_0.21-2_0.53-3_0.8",
+          "1503_l_2_c_1_2_3-0_1.16-1_0.4-2_0.41-3_0.36",
+          "1504_l_2_c_0_1_2-0_0.56-1_0.17-2_0.17-3_0.17",
+          "1505_l_2_c_0_1_3-0_0.0-1_0.14-2_0.15-3_0.12",
+          "1506_l_2_c_1_2_3-0_0.05-1_0.7-2_0.22-3_0.37",
+          "1507_l_2_c_0_1_2-0_0.13-1_1.81-2_0.1-3_0.65",
+          "1508_l_2_c_0_1_3-0_0.28-1_0.42-2_0.42-3_0.1",
+          "1509_l_2_c_1_2_3-0_0.14-1_0.42-2_0.29-3_0.33",
+          "1510_l_2_c_0_1_2-0_0.56-1_0.72-2_0.21-3_0.45",
+          "1511_l_2_c_0_1_3-0_0.52-1_0.02-2_0.45-3_0.45",
+          "1512_l_2_c_1_2_3-0_0.07-1_0.06-2_0.08-3_0.43",
+          "1513_l_2_c_0_1_2-0_0.88-1_0.55-2_0.1-3_0.3",
+          "1514_l_2_c_0_1_3-0_0.25-1_0.01-2_0.35-3_0.15",
+          "1515_l_2_c_1_2_3-0_0.37-1_0.07-2_0.54-3_0.12",
+          "1516_l_2_c_0_1_2-0_0.44-1_0.6-2_0.01-3_0.93",
+          "1517_l_2_c_0_1_3-0_0.03-1_0.28-2_1.39-3_0.11",
+          "1518_l_2_c_1_2_3-0_0.73-1_0.6-2_0.02-3_0.05",
+          "1519_l_2_c_0_1_2-0_0.19-1_0.11-2_0.33-3_0.53",
+          "1520_l_2_c_1_3-0_0.89-1_0.32-2_1.39-3_0.89",
+          "1521_l_2_r-0_0.36-1_1.47-2_1.08-3_1.21",
+          "1522_l_2_r-0_0.67-1_0.31-2_0.11-3_1.28",
+          "1523_l_2_r-0_0.57-1_0.02-2_1.04-3_1.39",
+          "1524_l_2_r-0_0.9-1_0.09-2_0.42-3_0.49",
+          "1525_l_2_r-0_0.96-1_2.23-2_1.22-3_0.86",
+          "1526_l_2_r-0_1.2-1_0.59-2_1.07-3_1.37",
+          "1527_l_2_r-0_1.14-1_0.44-2_1.03-3_0.47",
+          "1528_l_2_r-0_1.2-1_0.66-2_0.23-3_0.55",
+          "1529_l_2_r-0_1.12-1_0.04-2_0.7-3_1.12",
+          "1530_l_2_r-0_0.01-1_1.74-2_0.18-3_0.74",
+          "1531_l_2_r-0_0.48-1_0.13-2_0.32-3_0.34",
+          "1532_l_2_r-0_1.13-1_0.59-2_0.94-3_1.28",
+          "1533_l_2_r-0_0.74-1_1.34-2_0.03-3_0.12",
+          "1534_l_2_r-0_0.64-1_0.56-2_0.48-3_0.59",
+          "1535_l_2_r-0_0.01-1_0.97-2_0.26-3_0.2",
+          "1536_l_2_r-0_1.3-1_0.12-2_1.07-3_0.97",
+          "1537_l_2_r-0_0.32-1_0.96-2_1.59-3_1.25",
+          "1538_l_2_r-0_0.05-1_0.73-2_1.23-3_0.38",
+          "1539_l_2_r-0_0.01-1_1.02-2_0.61-3_1.06",
+          "1540_l_2_r-0_0.17-1_1.3-2_0.49-3_0.73",
+          "1541_l_2_r-0_0.41-1_0.18-2_0.45-3_0.32",
+          "1542_l_2_r-0_0.55-1_0.58-2_0.35-3_0.43",
+          "1543_l_2_r-0_1.55-1_0.49-2_0.26-3_0.12",
+          "1544_l_2_r-0_0.78-1_1.37-2_1.02-3_0.49",
+          "1545_l_2_r-0_2.12-1_1.57-2_0.09-3_0.3",
+          "1546_l_2_r-0_0.7-1_1.02-2_0.38-3_0.27",
+          "1547_l_2_r-0_0.13-1_0.9-2_0.53-3_0.31",
+          "1548_l_2_r-0_0.8-1_0.03-2_0.03-3_0.04",
+          "1549_l_2_r-0_1.63-1_0.8-2_0.1-3_0.1",
+          "1550_l_2_r-0_0.03-1_0.71-2_1.08-3_1.36",
+          "1551_l_2_r-0_0.16-1_1.78-2_0.54-3_0.14",
+          "1552_l_2_r-0_0.14-1_1.11-2_1.13-3_1.04",
+          "1553_l_2_r-0_0.73-1_0.12-2_0.03-3_0.6",
+          "1554_l_2_r-0_0.8-1_0.03-2_0.88-3_0.02",
+          "1555_l_2_r-0_1.46-1_1.4-2_0.52-3_2.21",
+          "1556_l_2_r-0_1.35-1_0.78-2_1.08-3_0.29",
+          "1557_l_2_r-0_0.66-1_1.36-2_1.74-3_0.64",
+          "1558_l_2_r-0_0.53-1_0.62-2_0.22-3_0.49",
+          "1559_l_2_r-0_1.07-1_0.6-2_0.91-3_0.73",
+          "1560_l_2_r-0_0.76-1_0.36-2_0.41-3_0.08",
+          "1561_l_2_r-0_1.74-1_1.83-2_0.13-3_0.3",
+          "1562_l_2_r-0_1.14-1_0.8-2_0.67-3_1.74",
+          "1563_l_2_r-0_0.91-1_0.14-2_1.45-3_1.26",
+          "1564_l_2_r-0_0.28-1_1.62-2_1.07-3_1.07",
+          "1565_l_2_r-0_0.92-1_1.22-2_0.68-3_1.55",
+          "1566_l_2_r-0_0.31-1_0.48-2_0.73-3_0.3",
+          "1567_l_2_r-0_1.17-1_0.06-2_0.25-3_0.88",
+          "1568_l_2_r-0_0.54-1_1.07-2_0.55-3_1.05",
+          "1569_l_2_r-0_1.61-1_1.1-2_0.21-3_1.3",
+          "1570_l_2_r-0_1.09-1_0.16-2_0.49-3_1.45",
+          "1571_l_2_r-0_0.45-1_0.4-2_1.25-3_1.75",
+          "1572_l_2_r-0_0.22-1_0.18-2_1.01-3_0.15",
+          "1573_l_2_r-0_0.3-1_0.07-2_0.88-3_1.11",
+          "1574_l_2_r-0_1.22-1_0.71-2_0.88-3_1.67",
+          "1575_l_2_r-0_0.04-1_0.8-2_0.13-3_0.04",
+          "1576_l_2_r-0_0.41-1_0.69-2_1.38-3_0.18",
+          "1577_l_2_r-0_0.06-1_0.77-2_1.03-3_0.69",
+          "1578_l_2_r-0_0.19-1_1.44-2_0.38-3_0.68",
+          "1579_l_2_r-0_0.73-1_0.4-2_0.05-3_0.62",
+          "1580_l_2_r-0_1.43-1_0.8-2_0.5-3_0.87",
+          "1581_l_2_r-0_1.14-1_0.79-2_0.65-3_0.74",
+          "1582_l_2_r-0_0.76-1_1.08-2_0.37-3_0.07",
+          "1583_l_2_r-0_0.79-1_0.36-2_0.14-3_0.4",
+          "1584_l_2_r-0_1.11-1_1.05-2_0.77-3_0.85",
+          "1585_l_2_r-0_1.71-1_1.09-2_0.32-3_1.01",
+          "1586_l_2_r-0_0.7-1_0.23-2_0.02-3_1.13",
+          "1587_l_2_r-0_1.37-1_0.53-2_0.46-3_0.64",
+          "1588_l_2_r-0_0.19-1_0.5-2_1.16-3_0.26",
+          "1589_l_2_r-0_0.23-1_0.2-2_0.27-3_0.45",
+          "1590_l_2_r-0_1.1-1_1.65-2_0.92-3_0.84",
+          "1591_l_2_r-0_0.86-1_1.27-2_0.38-3_0.38",
+          "1592_l_2_r-0_0.65-1_0.74-2_1.12-3_0.06",
+          "1593_l_2_r-0_0.84-1_1.53-2_0.29-3_0.8",
+          "1594_l_2_r-0_0.36-1_0.12-2_0.53-3_1.18",
+          "1595_l_2_r-0_0.15-1_0.72-2_0.85-3_0.75",
+          "1596_l_2_r-0_0.38-1_0.22-2_1.04-3_0.47",
+          "1597_l_2_r-0_0.71-1_1.12-2_0.95-3_0.24",
+          "1598_l_2_r-0_1.24-1_0.55-2_1.39-3_0.4",
+          "1599_l_2_r-0_0.82-1_0.78-2_0.19-3_0.59",
+          "1600_l_2_r-0_0.6-1_0.91-2_0.81-3_0.44",
+          "1601_l_2_r-0_0.37-1_0.82-2_1.56-3_1.04",
+          "1602_l_2_r-0_0.45-1_0.84-2_0.96-3_0.8",
+          "1603_l_2_r-0_1.32-1_0.41-2_2.33-3_1.31",
+          "1604_l_2_r-0_0.26-1_0.21-2_0.91-3_0.88",
+          "1605_l_2_r-0_0.87-1_0.2-2_0.02-3_0.69",
+          "1606_l_2_r-0_0.2-1_1.06-2_0.22-3_1.23",
+          "1607_l_2_r-0_0.78-1_0.58-2_0.1-3_1.13",
+          "1608_l_2_r-0_0.04-1_0.8-2_0.66-3_0.73",
+          "1609_l_2_r-0_1.11-1_1.29-2_0.24-3_0.27",
+          "1610_l_2_r-0_0.39-1_0.69-2_0.98-3_1.5",
+          "1611_l_2_r-0_1.06-1_0.96-2_0.48-3_0.68",
+          "1612_l_2_r-0_0.82-1_1.31-2_0.36-3_0.17",
+          "1613_l_2_r-0_0.82-1_0.21-2_0.4-3_0.35",
+          "1614_l_2_r-0_0.79-1_1.23-2_0.5-3_0.63",
+          "1615_l_2_r-0_0.81-1_0.74-2_0.44-3_1.08",
+          "1616_l_2_r-0_0.59-1_0.75-2_0.78-3_0.73",
+          "1617_l_2_r-0_0.49-1_0.03-2_1.08-3_0.62",
+          "1618_l_2_r-0_0.42-1_0.01-2_0.84-3_0.65",
+          "1619_l_2_r-0_0.49-1_0.96-2_0.52-3_0.68",
+          "1620_l_2_r-0_0.81-1_1.03-2_0.69-3_0.02",
+          "1621_l_2_r-0_0.4-1_0.61-2_1.21-3_1.41",
+          "1622_l_2_r-0_0.86-1_0.72-2_1.2-3_0.28",
+          "1623_l_2_r-0_0.43-1_1.04-2_0.29-3_0.69",
+          "1624_l_2_r-0_0.56-1_0.55-2_0.44-3_0.88",
+          "1625_l_2_r-0_0.55-1_1.37-2_0.92-3_0.98",
+          "1626_l_2_r-0_0.59-1_0.14-2_0.74-3_0.95",
+          "1627_l_2_r-0_1.2-1_0.17-2_0.69-3_0.69",
+          "1628_l_2_r-0_0.29-1_0.18-2_0.75-3_0.51",
+          "1629_l_2_r-0_0.7-1_1.15-2_0.83-3_0.8",
+          "1630_l_2_r-0_0.65-1_0.71-2_0.1-3_0.14",
+          "1631_l_2_r-0_1.05-1_0.15-2_1.02-3_0.44",
+          "1632_l_2_r-0_0.47-1_0.74-2_0.61-3_1.15",
+          "1633_l_2_r-0_0.34-1_0.55-2_1.37-3_1.58",
+          "1634_l_2_r-0_0.03-1_0.67-2_0.49-3_0.09",
+          "1635_l_2_r-0_0.97-1_1.54-2_0.38-3_0.72",
+          "1636_l_2_r-0_0.45-1_0.51-2_0.59-3_0.91",
+          "1637_l_2_r-0_0.1-1_0.16-2_0.46-3_0.57",
+          "1638_l_2_r-0_0.33-1_1.29-2_1.35-3_0.7",
+          "1639_l_2_r-0_0.93-1_0.96-2_1.19-3_0.5",
+          "1640_l_2_r-0_1.33-1_1.35-2_1.7-3_1.56",
+          "1641_l_2_r-0_0.21-1_0.22-2_0.85-3_0.3",
+          "1642_l_2_r-0_0.04-1_0.79-2_0.97-3_0.42",
+          "1643_l_2_r-0_0.38-1_1.26-2_1.65-3_0.65",
+          "1644_l_2_r-0_0.52-1_0.98-2_0.63-3_1.37",
+          "1645_l_2_r-0_0.22-1_0.3-2_0.26-3_0.84",
+          "1646_l_2_r-0_0.91-1_0.01-2_0.41-3_0.23",
+          "1647_l_2_r-0_0.52-1_0.94-2_0.73-3_0.02",
+          "1648_l_2_r-0_0.25-1_1.37-2_0.02-3_1.05",
+          "1649_l_2_r-0_0.73-1_0.87-2_1.29-3_0.66",
+          "1650_l_2_r-0_0.84-1_0.47-2_1.76-3_1.92",
+          "1651_l_2_r-0_1.48-1_0.24-2_0.19-3_0.74",
+          "1652_l_2_r-0_2.23-1_0.37-2_0.77-3_0.15",
+          "1653_l_2_r-0_0.42-1_0.77-2_0.5-3_0.04",
+          "1654_l_2_r-0_1.06-1_0.41-2_1.06-3_1.04",
+          "1655_l_2_r-0_0.33-1_1.33-2_1.12-3_2.68",
+          "1656_l_2_r-0_1.0-1_0.18-2_0.15-3_0.04",
+          "1657_l_2_r-0_1.41-1_0.16-2_0.47-3_0.2",
+          "1658_l_2_r-0_0.33-1_0.51-2_1.2-3_0.46",
+          "1659_l_2_r-0_0.21-1_1.24-2_0.69-3_1.17",
+          "1660_l_2_r-0_0.76-1_0.56-2_1.51-3_0.09",
+          "1661_l_2_r-0_0.16-1_1.07-2_0.18-3_1.39",
+          "1662_l_2_r-0_0.64-1_1.34-2_0.58-3_1.04",
+          "1663_l_2_r-0_0.79-1_0.09-2_0.17-3_0.79",
+          "1664_l_2_r-0_0.94-1_0.01-2_0.58-3_1.5",
+          "1665_l_2_r-0_0.53-1_0.74-2_0.57-3_0.4",
+          "1666_l_2_r-0_0.08-1_0.17-2_0.62-3_0.26",
+          "1667_l_2_r-0_0.23-1_0.67-2_0.41-3_0.85",
+          "1668_l_2_r-0_1.37-1_0.09-2_0.13-3_0.82",
+          "1669_l_2_r-0_0.63-1_0.67-2_0.19-3_0.84",
+          "1670_l_2_r-0_2.14-1_0.34-2_0.61-3_0.63",
+          "1671_l_2_r-0_0.05-1_1.16-2_0.49-3_0.26",
+          "1672_l_2_r-0_0.59-1_0.55-2_0.79-3_0.32",
+          "1673_l_2_r-0_0.05-1_0.35-2_0.47-3_2.37",
+          "1674_l_2_r-0_0.3-1_0.1-2_0.48-3_1.43",
+          "1675_l_2_r-0_0.66-1_1.25-2_0.2-3_0.54",
+          "1676_l_2_r-0_1.04-1_1.13-2_1.39-3_0.91",
+          "1677_l_2_r-0_2.13-1_0.2-2_0.01-3_0.13",
+          "1678_l_2_r-0_0.93-1_1.19-2_0.97-3_0.67",
+          "1679_l_2_r-0_0.64-1_0.47-2_0.25-3_0.57",
+          "1680_l_2_r-0_0.9-1_0.54-2_1.19-3_0.86",
+          "1681_l_2_r-0_0.6-1_0.4-2_0.07-3_0.16",
+          "1682_l_2_r-0_0.83-1_0.69-2_0.01-3_0.18",
+          "1683_l_2_r-0_0.76-1_0.37-2_0.62-3_0.84",
+          "1684_l_2_r-0_1.33-1_0.17-2_0.25-3_0.57",
+          "1685_l_2_r-0_0.04-1_1.53-2_0.93-3_1.05",
+          "1686_l_2_r-0_0.27-1_0.11-2_1.07-3_0.74",
+          "1687_l_2_r-0_0.13-1_1.49-2_0.64-3_0.87",
+          "1688_l_2_r-0_0.12-1_0.26-2_1.05-3_0.43",
+          "1689_l_2_r-0_0.4-1_0.83-2_0.52-3_0.07",
+          "1690_l_2_r-0_0.21-1_0.5-2_1.34-3_0.24",
+          "1691_l_2_r-0_0.76-1_0.34-2_0.81-3_1.36",
+          "1692_l_2_r-0_1.67-1_0.73-2_0.59-3_0.58",
+          "1693_l_2_r-0_0.89-1_0.33-2_0.78-3_0.46",
+          "1694_l_2_r-0_0.11-1_0.26-2_0.57-3_0.59",
+          "1695_l_2_r-0_0.19-1_2.2-2_0.65-3_0.57",
+          "1696_l_2_r-0_0.21-1_1.05-2_1.09-3_0.79",
+          "1697_l_2_r-0_0.86-1_0.1-2_1.11-3_0.61",
+          "1698_l_2_r-0_0.39-1_0.91-2_0.03-3_0.84",
+          "1699_l_2_r-0_0.86-1_0.89-2_0.69-3_0.09",
+          "1700_l_2_r-0_0.33-1_1.1-2_0.7-3_0.76",
+          "1701_l_2_r-0_0.99-1_1.68-2_0.41-3_0.34",
+          "1702_l_2_r-0_0.64-1_0.09-2_0.6-3_0.31",
+          "1703_l_2_r-0_0.47-1_0.97-2_0.18-3_0.06",
+          "1704_l_2_r-0_2.1-1_0.2-2_0.67-3_0.38",
+          "1705_l_2_r-0_0.75-1_0.71-2_0.29-3_0.78",
+          "1706_l_2_r-0_0.5-1_0.62-2_1.02-3_0.54",
+          "1707_l_2_r-0_1.18-1_0.09-2_0.38-3_0.65",
+          "1708_l_2_r-0_0.1-1_1.14-2_0.67-3_0.27",
+          "1709_l_2_r-0_0.06-1_1.06-2_0.68-3_0.59",
+          "1710_l_2_r-0_1.2-1_0.88-2_0.68-3_1.06",
+          "1711_l_2_r-0_0.96-1_0.83-2_0.87-3_0.51",
+          "1712_l_2_r-0_1.77-1_1.77-2_0.73-3_0.93",
+          "1713_l_2_r-0_0.34-1_0.77-2_1.63-3_0.07",
+          "1714_l_2_r-0_1.95-1_0.33-2_1.63-3_0.56",
+          "1715_l_2_r-0_0.93-1_1.44-2_0.58-3_1.07",
+          "1716_l_2_r-0_0.16-1_0.84-2_0.99-3_1.05",
+          "1717_l_2_r-0_0.0-1_0.2-2_0.5-3_0.54",
+          "1718_l_2_r-0_0.93-1_1.81-2_0.79-3_1.09",
+          "1719_l_2_r-0_0.67-1_1.11-2_1.02-3_1.44",
+          "1720_l_2_r-0_0.16-1_1.09-2_0.62-3_0.09",
+          "1721_l_2_r-0_0.14-1_1.22-2_0.96-3_1.06",
+          "1722_l_2_r-0_0.78-1_0.33-2_1.15-3_1.69",
+          "1723_l_2_r-0_0.67-1_1.09-2_0.48-3_1.32",
+          "1724_l_2_r-0_0.07-1_0.95-2_0.01-3_0.62",
+          "1725_l_2_r-0_1.22-1_1.03-2_0.24-3_0.91",
+          "1726_l_2_r-0_0.08-1_0.09-2_0.15-3_0.32",
+          "1727_l_2_r-0_1.19-1_0.93-2_0.18-3_0.99",
+          "1728_l_2_r-0_1.39-1_0.55-2_0.84-3_0.35",
+          "1729_l_2_r-0_0.94-1_0.67-2_0.35-3_0.8",
+          "1730_l_2_r-0_0.23-1_0.72-2_0.24-3_0.44",
+          "1731_l_2_r-0_0.51-1_1.17-2_0.97-3_0.24",
+          "1732_l_2_r-0_0.49-1_0.73-2_0.46-3_0.38",
+          "1733_l_2_r-0_1.41-1_0.3-2_0.82-3_0.43",
+          "1734_l_2_r-0_0.63-1_1.8-2_1.0-3_0.01",
+          "1735_l_2_r-0_0.23-1_0.59-2_0.2-3_1.15",
+          "1736_l_2_r-0_1.02-1_0.8-2_0.52-3_0.62",
+          "1737_l_2_r-0_0.92-1_1.42-2_0.26-3_0.77",
+          "1738_l_2_r-0_0.06-1_1.17-2_0.69-3_0.4",
+          "1739_l_2_r-0_0.34-1_0.19-2_0.7-3_0.12",
+          "1740_l_2_r-0_0.42-1_0.93-2_0.15-3_1.2",
+          "1741_l_2_r-0_1.18-1_1.63-2_1.2-3_0.42",
+          "1742_l_2_r-0_0.43-1_1.11-2_0.97-3_0.12",
+          "1743_l_2_r-0_0.12-1_0.55-2_1.05-3_0.14",
+          "1744_l_2_r-0_0.64-1_1.88-2_0.05-3_0.58",
+          "1745_l_2_r-0_0.01-1_1.21-2_0.11-3_1.66",
+          "1746_l_2_r-0_0.51-1_1.45-2_1.33-3_0.81",
+          "1747_l_2_r-0_1.27-1_0.36-2_0.85-3_0.6",
+          "1748_l_2_r-0_0.93-1_0.62-2_0.29-3_0.9",
+          "1749_l_2_r-0_0.17-1_1.18-2_0.75-3_2.16",
+          "1750_l_2_r-0_0.2-1_1.29-2_0.12-3_0.24",
+          "1751_l_2_r-0_0.79-1_0.92-2_1.46-3_0.48",
+          "1752_l_2_r-0_0.59-1_0.59-2_0.24-3_0.03",
+          "1753_l_2_r-0_0.39-1_1.44-2_0.69-3_0.83",
+          "1754_l_2_r-0_1.0-1_0.27-2_0.87-3_0.88",
+          "1755_l_2_r-0_2.28-1_0.6-2_0.71-3_1.46",
+          "1756_l_2_r-0_0.36-1_0.43-2_0.81-3_0.72",
+          "1757_l_2_r-0_0.08-1_1.5-2_0.33-3_0.41",
+          "1758_l_2_r-0_0.06-1_0.17-2_0.54-3_1.0",
+          "1759_l_2_r-0_0.21-1_0.35-2_0.51-3_1.21",
+          "1760_l_2_r-0_1.38-1_0.12-2_1.3-3_0.77",
+          "1761_l_2_r-0_0.6-1_0.5-2_0.53-3_0.27",
+          "1762_l_2_r-0_0.49-1_0.97-2_1.25-3_1.57",
+          "1763_l_2_r-0_0.04-1_0.74-2_0.01-3_0.78",
+          "1764_l_2_r-0_0.84-1_0.4-2_0.67-3_0.32",
+          "1765_l_2_r-0_0.21-1_2.31-2_1.1-3_0.17",
+          "1766_l_2_r-0_0.4-1_0.59-2_1.27-3_0.17",
+          "1767_l_2_r-0_0.57-1_0.2-2_0.17-3_0.41",
+          "1768_l_2_r-0_0.26-1_0.3-2_0.71-3_0.38",
+          "1769_l_2_r-0_0.43-1_1.08-2_0.73-3_0.52",
+          "1770_l_2_r-0_0.65-1_0.24-2_0.03-3_0.31",
+          "1771_l_2_r-0_0.94-1_0.22-2_0.87-3_0.5",
+          "1772_l_2_r-0_0.49-1_0.49-2_1.49-3_0.12",
+          "1773_l_2_r-0_1.0-1_0.53-2_0.28-3_0.4",
+          "1774_l_2_r-0_0.1-1_0.88-2_0.89-3_0.61",
+          "1775_l_2_r-0_0.5-1_0.57-2_0.03-3_1.56",
+          "1776_l_2_r-0_0.24-1_1.01-2_0.29-3_0.36",
+          "1777_l_2_r-0_1.14-1_0.84-2_0.61-3_0.95",
+          "1778_l_2_r-0_1.55-1_0.0-2_0.07-3_1.07",
+          "1779_l_2_r-0_0.72-1_0.55-2_0.36-3_0.22",
+          "1780_l_2_r-0_0.32-1_1.13-2_0.35-3_0.62",
+          "1781_l_2_r-0_0.0-1_0.91-2_0.71-3_0.5",
+          "1782_l_2_r-0_0.98-1_0.22-2_0.01-3_0.05",
+          "1783_l_2_r-0_0.05-1_0.01-2_0.43-3_0.3",
+          "1784_l_2_r-0_1.36-1_0.58-2_1.35-3_0.89",
+          "1785_l_2_r-0_1.11-1_1.03-2_0.49-3_0.29",
+          "1786_l_2_r-0_0.19-1_0.31-2_0.79-3_0.2",
+          "1787_l_2_r-0_0.78-1_0.45-2_0.81-3_0.69",
+          "1788_l_2_r-0_0.13-1_0.71-2_0.69-3_0.23",
+          "1789_l_2_r-0_0.71-1_0.11-2_0.14-3_1.37",
+          "1790_l_2_r-0_0.42-1_2.08-2_1.41-3_0.77",
+          "1791_l_2_r-0_0.15-1_1.1-2_0.48-3_0.33",
+          "1792_l_2_r-0_1.41-1_0.34-2_1.05-3_1.51",
+          "1793_l_2_r-0_1.12-1_0.1-2_0.06-3_0.33",
+          "1794_l_2_r-0_0.87-1_0.46-2_1.47-3_1.38",
+          "1795_l_2_r-0_1.26-1_0.72-2_1.33-3_0.73",
+          "1796_l_2_r-0_1.16-1_0.94-2_0.79-3_0.21",
+          "1797_l_2_r-0_0.44-1_0.03-2_0.09-3_0.79",
+          "1798_l_2_r-0_0.99-1_0.53-2_0.25-3_0.34",
+          "1799_l_2_r-0_0.93-1_1.16-2_1.01-3_1.24",
+          "1800_l_2_r-0_0.32-1_0.44-2_0.21-3_0.34",
+          "1801_l_2_r-0_0.9-1_0.87-2_0.07-3_0.77",
+          "1802_l_2_r-0_0.15-1_0.72-2_0.84-3_0.31",
+          "1803_l_2_r-0_0.13-1_0.55-2_1.36-3_1.14",
+          "1804_l_2_r-0_0.69-1_1.43-2_0.75-3_0.53",
+          "1805_l_2_r-0_0.25-1_1.21-2_0.67-3_0.87",
+          "1806_l_2_r-0_1.38-1_0.58-2_0.4-3_0.35",
+          "1807_l_2_r-0_0.59-1_0.23-2_0.68-3_1.82",
+          "1808_l_2_r-0_0.32-1_0.83-2_1.01-3_0.48",
+          "1809_l_2_r-0_1.44-1_0.32-2_0.62-3_0.01",
+          "1810_l_2_r-0_0.12-1_0.1-2_0.81-3_1.26",
+          "1811_l_2_r-0_0.25-1_1.35-2_0.11-3_1.02",
+          "1812_l_2_r-0_0.82-1_0.83-2_0.66-3_0.31",
+          "1813_l_2_r-0_1.04-1_0.06-2_0.78-3_0.72",
+          "1814_l_2_r-0_0.74-1_1.85-2_0.66-3_0.67",
+          "1815_l_2_r-0_1.13-1_0.38-2_0.15-3_0.5",
+          "1816_l_2_r-0_0.4-1_1.52-2_0.2-3_1.09",
+          "1817_l_2_r-0_1.72-1_0.51-2_0.32-3_0.24",
+          "1818_l_2_r-0_1.07-1_0.25-2_0.87-3_0.43",
+          "1819_l_2_r-0_1.74-1_1.07-2_0.34-3_1.81",
+          "1820_l_2_r-0_1.06-1_0.02-2_0.56-3_0.66",
+          "1821_l_2_r-0_0.97-1_0.44-2_0.84-3_0.03",
+          "1822_l_2_r-0_0.96-1_1.7-2_0.39-3_0.48",
+          "1823_l_2_r-0_0.21-1_0.3-2_0.68-3_0.71",
+          "1824_l_2_r-0_0.73-1_0.31-2_0.56-3_1.46",
+          "1825_l_2_r-0_0.22-1_0.5-2_0.78-3_0.98",
+          "1826_l_2_r-0_0.82-1_1.01-2_0.56-3_0.51",
+          "1827_l_2_r-0_0.7-1_0.37-2_1.15-3_1.33",
+          "1828_l_2_r-0_1.21-1_0.67-2_0.11-3_0.08",
+          "1829_l_2_r-0_0.12-1_0.97-2_0.82-3_1.03",
+          "1830_l_2_r-0_1.3-1_0.0-2_0.82-3_0.62",
+          "1831_l_2_r-0_1.34-1_1.87-2_0.92-3_0.4",
+          "1832_l_2_r-0_1.78-1_0.01-2_0.32-3_0.45",
+          "1833_l_2_r-0_0.93-1_0.9-2_1.05-3_0.48",
+          "1834_l_2_r-0_0.31-1_0.05-2_0.13-3_1.32",
+          "1835_l_2_r-0_1.37-1_0.29-2_0.07-3_0.02",
+          "1836_l_2_r-0_0.01-1_0.4-2_0.19-3_0.56",
+          "1837_l_2_r-0_0.97-1_0.54-2_0.29-3_0.41",
+          "1838_l_2_r-0_0.73-1_1.15-2_0.87-3_0.46",
+          "1839_l_2_r-0_0.95-1_0.92-2_0.57-3_1.84",
+          "1840_l_2_r-0_0.31-1_1.18-2_0.56-3_0.2",
+          "1841_l_2_r-0_0.16-1_0.22-2_0.46-3_0.06",
+          "1842_l_2_r-0_0.33-1_0.84-2_0.06-3_0.12",
+          "1843_l_2_r-0_0.82-1_0.57-2_1.2-3_1.05",
+          "1844_l_2_r-0_1.18-1_1.49-2_1.92-3_0.26",
+          "1845_l_2_r-0_0.7-1_0.18-2_0.0-3_1.09",
+          "1846_l_2_r-0_0.75-1_1.99-2_0.21-3_0.89",
+          "1847_l_2_r-0_0.22-1_0.27-2_0.68-3_0.23",
+          "1848_l_2_r-0_1.11-1_0.64-2_0.11-3_0.28",
+          "1849_l_2_r-0_1.24-1_0.9-2_0.25-3_1.47",
+          "1850_l_2_r-0_0.3-1_0.03-2_0.93-3_0.1",
+          "1851_l_2_r-0_0.05-1_0.71-2_0.19-3_0.32",
+          "1852_l_2_r-0_0.21-1_0.65-2_0.23-3_0.08",
+          "1853_l_2_r-0_0.42-1_0.91-2_0.15-3_0.02",
+          "1854_l_2_r-0_1.49-1_2.01-2_0.57-3_0.13",
+          "1855_l_2_r-0_0.32-1_0.22-2_0.88-3_0.08",
+          "1856_l_2_r-0_1.48-1_0.96-2_0.58-3_0.07",
+          "1857_l_2_r-0_0.11-1_0.8-2_1.24-3_0.5",
+          "1858_l_2_r-0_1.62-1_1.4-2_0.16-3_1.07",
+          "1859_l_2_r-0_0.2-1_0.31-2_0.37-3_0.68",
+          "1860_l_2_r-0_0.62-1_0.93-2_0.26-3_0.54",
+          "1861_l_2_r-0_1.58-1_1.03-2_0.42-3_0.29",
+          "1862_l_2_r-0_0.56-1_0.28-2_1.03-3_0.33",
+          "1863_l_2_r-0_0.5-1_0.81-2_0.7-3_0.21",
+          "1864_l_2_r-0_0.28-1_0.55-2_1.17-3_1.52",
+          "1865_l_2_r-0_0.46-1_0.11-2_0.86-3_0.76",
+          "1866_l_2_r-0_1.17-1_0.22-2_0.23-3_0.22",
+          "1867_l_2_r-0_0.05-1_1.16-2_0.15-3_0.06",
+          "1868_l_2_r-0_1.31-1_1.17-2_0.36-3_1.97",
+          "1869_l_2_r-0_0.77-1_0.34-2_0.26-3_0.42",
+          "1870_l_2_r-0_0.34-1_0.86-2_0.7-3_0.71",
+          "1871_l_2_r-0_0.28-1_0.41-2_0.45-3_1.51",
+          "1872_l_2_r-0_0.96-1_0.71-2_0.75-3_1.09",
+          "1873_l_2_r-0_0.48-1_0.63-2_0.74-3_0.23",
+          "1874_l_2_r-0_0.09-1_0.35-2_0.11-3_0.25",
+          "1875_l_2_r-0_0.93-1_0.33-2_1.64-3_1.0",
+          "1876_l_2_r-0_0.66-1_0.19-2_0.03-3_0.98",
+          "1877_l_2_r-0_0.39-1_0.26-2_1.41-3_0.93",
+          "1878_l_2_r-0_0.16-1_2.75-2_0.93-3_1.1",
+          "1879_l_2_r-0_1.29-1_1.65-2_0.78-3_0.85",
+          "1880_l_2_r-0_0.38-1_0.28-2_0.93-3_1.03",
+          "1881_l_2_r-0_0.93-1_0.58-2_0.21-3_0.54",
+          "1882_l_2_r-0_0.79-1_1.1-2_0.5-3_0.88",
+          "1883_l_2_r-0_0.5-1_0.48-2_0.41-3_0.25",
+          "1884_l_2_r-0_0.67-1_1.2-2_0.42-3_0.33",
+          "1885_l_2_r-0_0.95-1_0.95-2_0.02-3_0.39",
+          "1886_l_2_r-0_1.68-1_2.59-2_0.47-3_0.71",
+          "1887_l_2_r-0_1.04-1_0.03-2_0.47-3_0.53",
+          "1888_l_2_r-0_1.39-1_1.32-2_1.31-3_0.16",
+          "1889_l_2_r-0_0.44-1_3.27-2_0.61-3_0.75",
+          "1890_l_2_r-0_1.75-1_0.91-2_0.98-3_0.28",
+          "1891_l_2_r-0_0.47-1_0.13-2_0.99-3_0.0",
+          "1892_l_2_r-0_1.27-1_0.61-2_0.25-3_1.16",
+          "1893_l_2_r-0_1.06-1_0.7-2_2.32-3_0.35",
+          "1894_l_2_r-0_0.34-1_0.22-2_0.12-3_0.31",
+          "1895_l_2_r-0_0.02-1_0.54-2_0.8-3_0.26",
+          "1896_l_2_r-0_1.4-1_1.79-2_0.91-3_0.4",
+          "1897_l_2_r-0_1.04-1_0.13-2_1.45-3_0.16",
+          "1898_l_2_r-0_0.97-1_0.37-2_0.58-3_0.53",
+          "1899_l_2_r-0_1.02-1_0.53-2_0.98-3_1.46",
+          "1900_l_2_r-0_0.05-1_1.14-2_0.34-3_1.08",
+          "1901_l_2_r-0_0.37-1_0.06-2_1.36-3_0.38",
+          "1902_l_2_r-0_0.73-1_1.04-2_0.34-3_1.27",
+          "1903_l_2_r-0_0.47-1_0.18-2_0.8-3_0.27",
+          "1904_l_2_r-0_1.1-1_0.2-2_0.49-3_1.1",
+          "1905_l_2_r-0_0.2-1_1.19-2_0.12-3_0.86",
+          "1906_l_2_r-0_1.74-1_0.2-2_0.37-3_0.08",
+          "1907_l_2_r-0_0.68-1_0.21-2_0.9-3_1.51",
+          "1908_l_2_r-0_1.58-1_1.35-2_0.49-3_0.26",
+          "1909_l_2_r-0_0.44-1_0.76-2_0.32-3_1.09",
+          "1910_l_2_r-0_1.53-1_0.72-2_0.7-3_1.1",
+          "1911_l_2_r-0_0.89-1_0.07-2_0.07-3_1.3",
+          "1912_l_2_r-0_1.1-1_1.08-2_0.02-3_0.23",
+          "1913_l_2_r-0_1.33-1_0.35-2_0.56-3_0.11",
+          "1914_l_2_r-0_0.82-1_1.72-2_0.31-3_0.94",
+          "1915_l_2_r-0_1.5-1_0.39-2_0.79-3_0.4",
+          "1916_l_2_r-0_0.76-1_0.89-2_0.63-3_0.69",
+          "1917_l_2_r-0_0.62-1_1.85-2_0.34-3_1.39",
+          "1918_l_2_r-0_0.17-1_1.53-2_1.13-3_1.29",
+          "1919_l_2_r-0_0.62-1_0.4-2_0.4-3_0.54",
+          "1920_l_2_r-0_1.52-1_0.65-2_1.53-3_0.88",
+          "1921_l_2_r-0_0.23-1_0.63-2_0.46-3_0.5",
+          "1922_l_2_r-0_0.34-1_0.5-2_0.53-3_0.22",
+          "1923_l_2_r-0_0.24-1_0.27-2_1.66-3_0.17",
+          "1924_l_2_r-0_0.01-1_0.65-2_0.29-3_0.92",
+          "1925_l_2_r-0_0.61-1_0.06-2_0.3-3_0.63",
+          "1926_l_2_r-0_0.4-1_1.02-2_0.53-3_0.99",
+          "1927_l_2_r-0_1.49-1_0.43-2_0.88-3_1.76",
+          "1928_l_2_r-0_0.82-1_0.33-2_0.65-3_1.33",
+          "1929_l_2_r-0_1.22-1_0.64-2_0.55-3_0.38",
+          "1930_l_2_r-0_0.96-1_0.05-2_1.71-3_0.66",
+          "1931_l_2_r-0_0.03-1_1.21-2_1.11-3_0.06",
+          "1932_l_2_r-0_1.55-1_0.01-2_0.04-3_0.76",
+          "1933_l_2_r-0_1.74-1_0.36-2_0.31-3_0.2",
+          "1934_l_2_r-0_1.04-1_0.52-2_0.25-3_0.64",
+          "1935_l_2_r-0_0.66-1_0.72-2_0.25-3_0.21",
+          "1936_l_2_r-0_1.45-1_1.16-2_0.91-3_0.16",
+          "1937_l_2_r-0_1.48-1_0.85-2_0.3-3_0.28",
+          "1938_l_2_r-0_0.33-1_0.78-2_0.13-3_0.75",
+          "1939_l_2_r-0_0.06-1_0.95-2_1.27-3_1.02",
+          "1940_l_2_r-0_0.96-1_0.71-2_1.45-3_0.09",
+          "1941_l_2_r-0_1.22-1_1.09-2_0.36-3_1.72",
+          "1942_l_2_r-0_0.7-1_1.23-2_0.57-3_0.64",
+          "1943_l_2_r-0_1.25-1_0.94-2_1.17-3_1.3",
+          "1944_l_2_r-0_0.36-1_0.45-2_1.15-3_0.29",
+          "1945_l_2_r-0_0.04-1_0.35-2_0.33-3_0.32",
+          "1946_l_2_r-0_0.18-1_0.06-2_0.22-3_0.02",
+          "1947_l_2_r-0_0.46-1_0.59-2_1.4-3_0.2",
+          "1948_l_2_r-0_1.19-1_2.12-2_0.1-3_1.31",
+          "1949_l_2_r-0_0.17-1_0.91-2_1.38-3_0.99",
+          "1950_l_2_r-0_0.7-1_1.0-2_1.11-3_0.6",
+          "1951_l_2_r-0_1.45-1_0.88-2_0.08-3_0.09",
+          "1952_l_2_r-0_0.04-1_0.55-2_0.53-3_0.43",
+          "1953_l_2_r-0_0.72-1_1.17-2_0.14-3_0.41",
+          "1954_l_2_r-0_0.88-1_0.55-2_0.12-3_0.54",
+          "1955_l_2_r-0_0.63-1_0.95-2_1.04-3_0.74",
+          "1956_l_2_r-0_0.01-1_1.24-2_0.63-3_0.68",
+          "1957_l_2_r-0_1.0-1_0.41-2_0.75-3_1.14",
+          "1958_l_2_r-0_0.71-1_0.06-2_1.21-3_2.07",
+          "1959_l_2_r-0_0.54-1_0.69-2_1.14-3_0.54",
+          "1960_l_2_r-0_0.36-1_0.5-2_0.1-3_0.77",
+          "1961_l_2_r-0_0.75-1_0.25-2_0.26-3_0.57",
+          "1962_l_2_r-0_1.74-1_0.01-2_1.2-3_0.82",
+          "1963_l_2_r-0_0.6-1_0.24-2_0.9-3_0.09",
+          "1964_l_2_r-0_0.98-1_0.29-2_0.71-3_0.22",
+          "1965_l_2_r-0_1.4-1_0.55-2_1.05-3_0.65",
+          "1966_l_2_r-0_0.64-1_0.52-2_0.51-3_0.54",
+          "1967_l_2_r-0_0.86-1_0.79-2_0.9-3_0.38",
+          "1968_l_2_r-0_0.5-1_0.05-2_0.83-3_0.65",
+          "1969_l_2_r-0_0.95-1_1.67-2_0.39-3_0.46",
+          "1970_l_2_r-0_1.33-1_0.83-2_0.48-3_1.1",
+          "1971_l_2_r-0_0.3-1_0.61-2_0.43-3_0.99",
+          "1972_l_2_r-0_1.11-1_0.99-2_0.32-3_0.12",
+          "1973_l_2_r-0_0.83-1_0.08-2_0.62-3_1.17",
+          "1974_l_2_r-0_0.38-1_1.29-2_0.72-3_0.8",
+          "1975_l_2_r-0_0.13-1_0.08-2_0.09-3_0.45",
+          "1976_l_2_r-0_0.55-1_1.13-2_1.14-3_0.57",
+          "1977_l_2_r-0_0.23-1_0.29-2_0.27-3_0.31",
+          "1978_l_2_r-0_0.24-1_0.69-2_0.76-3_1.13",
+          "1979_l_2_r-0_1.21-1_0.54-2_0.73-3_0.6",
+          "1980_l_2_r-0_0.26-1_0.23-2_1.13-3_0.69",
+          "1981_l_2_r-0_0.8-1_0.26-2_0.43-3_0.27",
+          "1982_l_2_r-0_0.53-1_1.22-2_1.5-3_0.4",
+          "1983_l_2_r-0_1.23-1_0.72-2_0.36-3_0.9",
+          "1984_l_2_r-0_0.15-1_0.19-2_1.06-3_0.54",
+          "1985_l_2_r-0_0.64-1_0.33-2_0.76-3_0.3",
+          "1986_l_2_r-0_0.71-1_0.26-2_0.69-3_1.14",
+          "1987_l_2_r-0_0.64-1_1.37-2_1.49-3_0.06",
+          "1988_l_2_r-0_0.34-1_0.5-2_0.99-3_0.45",
+          "1989_l_2_r-0_0.15-1_0.0-2_0.3-3_0.36",
+          "1990_l_2_r-0_1.73-1_0.5-2_0.8-3_0.52",
+          "1991_l_2_r-0_0.53-1_2.59-2_0.33-3_0.15",
+          "1992_l_2_r-0_0.13-1_0.02-2_1.61-3_0.92",
+          "1993_l_2_r-0_0.15-1_0.63-2_0.49-3_0.6",
+          "1994_l_2_r-0_0.15-1_1.81-2_0.43-3_0.32",
+          "1995_l_2_r-0_0.05-1_0.07-2_0.44-3_0.01",
+          "1996_l_2_r-0_0.4-1_0.18-2_1.16-3_0.14",
+          "1997_l_2_r-0_1.62-1_0.63-2_0.73-3_0.8"
          ],
          "type": "scatter3d",
          "x": [
-          -9.29482991028915,
-          9.11870856154415,
-          10.380764996646985,
-          9.023253407987461,
-          -11.55566827765047,
-          9.640360819004027,
-          9.421808362188045,
-          9.878805124519076,
-          10.013611768426754,
-          -10.09565365355578,
-          9.766421801141624,
-          8.683603528941891,
-          10.32390768260375,
-          -7.995008599336979,
-          9.781056608337172,
-          9.900788638121092,
-          9.639962275968307,
-          9.14921097942668,
-          10.095909065861292,
-          10.872808736295655,
-          -10.151484311072167,
-          9.933203076608269,
-          10.072003829967906,
-          10.347326961886893,
-          -9.890810097900564,
-          10.299419511600098,
-          10.380157240422943,
-          9.0393681546586,
-          -10.298554397128324,
-          9.864728670044054,
-          9.467549486895493,
-          10.195131835153322,
-          10.91734719539884,
-          10.71266982423436,
-          10.141516816668545,
-          -10.299572207267287,
-          9.192923331306543,
-          10.780582451146737,
-          -10.245271222994038,
-          -9.664765593014234,
-          -9.757430971297122,
-          -9.760878020321877,
-          10.41960042139462,
-          -11.03217091201443,
-          -11.564979006359419,
-          11.64803650549751,
-          11.291886931525562,
-          10.214938025264281,
-          10.435981886079887,
-          9.667873599398165,
-          10.002587975247259,
-          8.406215435583322,
-          -9.980113255325536,
-          9.347803030641098,
-          10.68720285293964,
-          -10.911081172407297,
-          -8.912261755820904,
-          -9.089320975044133,
-          10.24508428052482,
-          10.010379874365018,
-          10.091179053559324,
-          9.081677407100287,
-          -8.194820061163613,
-          -10.275407982327936,
-          10.181072345148971,
-          9.733696877923514,
-          -10.231213652516422,
-          -9.561193535607266,
-          10.426443160440808,
-          -10.06852647999986,
-          11.058483287667011,
-          10.674572169683955,
-          10.8306254667859,
-          9.87271862585197,
-          10.048492529933434,
-          -8.665475910216832,
-          -8.518696687377567,
-          -9.794474048998602,
-          10.651912245004455,
-          9.440515533174699,
-          10.675909445990445,
-          10.66800763520697,
-          8.38498622017735,
-          -10.441230766451262,
-          11.192554472846727,
-          8.3956929277298,
-          10.486092800294855,
-          10.016072373644214,
-          10.639124355322776,
-          -9.118882102310586,
-          9.342675406849647,
-          -9.27994725866164,
-          9.821941419719602,
-          9.910232466346534,
-          9.50877772810967,
-          -11.153815598994521,
-          -11.36319547368619,
-          9.367602342422185,
-          -11.116791608251436,
-          10.582672738129453,
-          -11.17562859934982,
-          11.261474519345697,
-          -10.039052021346132,
-          -8.99349312308919,
-          9.599086783840821,
-          9.27499030356021,
-          -11.397106248959462,
-          -8.803156959777168,
-          -9.135879017923239,
-          9.733293620923813,
-          -10.905067620431142,
-          11.361812658039533,
-          9.303456038028168,
-          10.450455577627778,
-          7.4784311178127965,
-          10.98336813233865,
-          10.593207434492598,
-          9.72212382380799,
-          -10.715657355933141,
-          11.037102569077872,
-          -10.844036252614252,
-          -10.908453676354085,
-          9.733685570717979,
-          9.5579140189331,
-          10.988738557823488,
-          10.042089000702802,
-          8.516191984301948,
-          9.037138115304701,
-          -10.506774075164792,
-          10.78943300675086,
-          8.180726764666405,
-          -11.685476608184082,
-          9.082451539210542,
-          9.474985446037504,
-          9.570109695058713,
-          8.761742711522745,
-          -9.75169784649018,
-          9.509876412356412,
-          9.718016161096134,
-          10.511528305191982,
-          9.824387317964767,
-          11.873882715017062,
-          10.850462625252138,
-          8.440921831419594,
-          9.964969021541018,
-          9.471015389254209,
-          12.226221259592212,
-          9.433431045853277,
-          -8.444244010615783,
-          10.73750939304067,
-          11.985194895553894,
-          -9.975915713946693,
-          -9.610651192401477,
-          9.475752229329517,
-          9.900631553509065,
-          8.877693337938732,
-          10.881576350376443,
-          9.966257941884537,
-          11.100675355173031,
-          9.524808027251918,
-          8.983278825819177,
-          -8.745462816471004,
-          10.086561156028337,
-          9.985571150100471,
-          9.82366559131382,
-          -9.304559603456438,
-          -9.755693781095706,
-          9.972465960975544,
-          10.484407712025586,
-          -8.828284185974203,
-          -9.991474049274043,
-          -9.680927085239526,
-          11.582203011861957,
-          10.413065704608895,
-          11.072524121648406,
-          11.138466047089151,
-          -10.156262780253739,
-          9.666014694652288,
-          9.453523952780454,
-          -8.652072180277138,
-          9.737375618979387,
-          11.372316080991148,
-          -8.696920854853278,
-          10.506810368273007,
-          10.466794896905592,
-          10.118622813159144,
-          9.35494714405492,
-          9.964382951259244,
-          10.858749238227832,
-          8.816926524547675,
-          10.703828203021002,
-          10.276842276449866,
-          10.318433744642327,
-          -9.510159693009266,
-          10.576335270410745,
-          -10.12057030830054,
-          -9.936764673844225,
-          11.085565931933333,
-          -9.7715603278361,
-          9.163226695171396,
-          9.558108188736245,
-          9.776143549506966,
-          11.630151081027135,
-          -9.892380127496336,
-          9.60271726618423,
-          -10.029544439163018,
-          9.593515645880556,
-          9.775559079480335,
-          9.242519816587423,
-          10.411980721371105,
-          10.557355008094731,
-          -9.509418307604921,
-          10.3033066792683,
-          9.82640722936431,
-          8.617637683353175,
-          9.737169439594965,
-          -10.088125247647724,
-          -10.670520359590297,
-          -9.603303273079385,
-          11.173965087473308,
-          -10.49406546630178,
-          9.743329684924044,
-          10.441572304337818,
-          8.783399833396484,
-          9.544500010940881,
-          9.188481763904617,
-          9.290362702995719,
-          11.18616148524611,
-          9.99823548587214,
-          8.040318348651759,
-          9.260371164636041,
-          -10.358176574957188,
-          10.305719114656155,
-          9.258895199664934,
-          9.683566490986616,
-          10.044410814820036,
-          10.178931698812459,
-          9.03958048755407,
-          9.840493126710319,
-          10.867064958486043,
-          9.310965339465179,
-          9.375267323253395,
-          9.227858063493557,
-          10.581744237653709,
-          9.84476015651702,
-          10.074763381482024,
-          -9.396042134248123,
-          10.472474359193106,
-          9.348548985581962,
-          10.183968523759306,
-          9.705821668249591,
-          -10.725684283445435,
-          -8.465640438822845,
-          8.422498274085013,
-          9.926296746907898,
-          9.473895720690734,
-          -9.446230758332039,
-          9.828123783813965,
-          -11.147786958738015,
-          9.452786821816014,
-          10.06904692739762,
-          10.402343764571023,
-          10.920720398973998,
-          11.675125413848507,
-          8.601281352010876,
-          10.85433247144455,
-          9.648621857345356,
-          9.924424813366283,
-          9.445074391165889,
-          9.38688547487404,
-          9.220496595669307,
-          9.990535840800314,
-          8.69516033465231,
-          -9.93747379885429,
-          -9.89309684655843,
-          -8.496088550668322,
-          -11.305267807419124,
-          8.992147512732664,
-          8.341952901054656,
-          10.170519423877511,
-          11.600489918058,
-          11.062668418851384,
-          8.499385159977912,
-          10.126834018044628,
-          -11.782389871344936,
-          -9.290129841734316,
-          8.51307667445912,
-          9.152507293795725,
-          9.524178126884879,
-          9.57787764096603,
-          -8.097448254974383,
-          -9.909526614973187,
-          8.783763886551329,
-          8.155018768442432,
-          9.190232302679506,
-          10.83129469866454,
-          9.991757263667745,
-          10.34735552439143,
-          -8.660344673919802,
-          -10.732833634555467,
-          10.683297803672083,
-          9.044208147068224,
-          8.535492604905219,
-          9.878957265233378,
-          -9.026634097376268,
-          10.742855212969255,
-          10.37969491771663,
-          9.604213755371381,
-          -9.618475728491317,
-          8.863094165219355,
-          11.28785304226443,
-          11.273785443143133,
-          -9.248616787987878,
-          10.034489122739886,
-          10.58869893805332,
-          10.64649579352305,
-          12.063599508096456,
-          11.269110492204774,
-          9.530679645673523,
-          -11.586734206159388,
-          10.044410420226479,
-          10.046995469486179,
-          12.1392936331624,
-          10.995116715418037,
-          10.484535166975132,
-          -11.836037443272613,
-          8.605813169716939,
-          9.445758849163617,
-          9.774608245047414,
-          11.10728830786899,
-          8.85500914427438,
-          8.955248108526547,
-          10.285326620256559,
-          -9.502794675459567,
-          -8.572669738877874,
-          8.368084557036553,
-          9.58660243946616,
-          10.389300075074956,
-          -9.68738374776269,
-          10.513501182987765,
-          9.599780012489187,
-          9.126480894289797,
-          9.669019058151951,
-          -10.465136939299523,
-          9.397106686855565,
-          9.955185085965306,
-          -12.482369490761927,
-          9.87845398145153,
-          9.625483371034477,
-          11.259729450487237,
-          9.02162127886795,
-          8.792567684257271,
-          10.323363902835638,
-          10.193181083684111,
-          8.434513226357343,
-          -11.601071865028125,
-          -9.600588042516708,
-          11.117776757773981,
-          8.458070149795615,
-          8.62572560350528,
-          9.827215158576008,
-          -11.45979521799884,
-          -10.473689645893362,
-          8.949071152108424,
-          8.954637835234827,
-          -9.593726968313408,
-          -9.786514580966271,
-          10.48035987444701,
-          11.03426896404351,
-          -10.751312588965295,
-          11.254471042572131,
-          9.968853677292458,
-          -10.619224895220619,
-          10.061558568799867,
-          9.774979481286083,
-          -9.789178302912227,
-          10.086938030000294,
-          10.818956052597896,
-          9.677362860615922,
-          -10.253252633793727,
-          -10.552090342371855,
-          -10.066873078556958,
-          9.75901719714173,
-          -10.320257449558389,
-          10.373648301005378,
-          10.19047862088945,
-          10.279254285384294,
-          9.939514905782543,
-          -9.27018993022817,
-          -9.998471978433889,
-          10.6735653094686,
-          10.9530345272732,
-          8.831112449901097,
-          10.69582846929573,
-          10.198747057993156,
-          11.224427307597033,
-          10.52036459027012,
-          -11.308741362558791,
-          9.607529378044676,
-          10.678500655774075,
-          -9.435602301397376,
-          9.878139476875567,
-          9.000336188902525,
-          8.57107472560402,
-          8.673239480129514,
-          10.788855717918308,
-          -9.200504483460579,
-          10.00800522322841,
-          9.564538588340898,
-          9.37918105518149,
-          9.343464473633851,
-          -9.056371845503305,
-          -10.580590138012862,
-          -10.0065859477709,
-          10.176903840085217,
-          9.432543479068446,
-          9.424248258732575,
-          9.840299235983938,
-          -10.151687233033236,
-          9.435722106320476,
-          10.306047881433946,
-          9.400436504916422,
-          9.188927072541386,
-          10.864277420519038,
-          11.684174110825467,
-          9.912850351434283,
-          10.43993912303838,
-          -10.016786202522828,
-          8.747595936407608,
-          -8.711730236692842,
-          10.32059339677673,
-          8.489458555237935,
-          9.246862098915692,
-          -10.528083089617818,
-          9.817745454291444,
-          10.335044089439153,
-          10.730777609951755,
-          11.287961189432925,
-          9.479424620470585,
-          10.165289830267007,
-          9.101728015098745,
-          8.873898206259765,
-          11.296715815075443,
-          10.69793792715987,
-          10.190738301585279,
-          10.323932005744958,
-          -9.277654689168907,
-          -9.751410250505359,
-          10.73416598835794,
-          9.93902943522757,
-          8.661048546104336,
-          10.100255123637456,
-          -10.385343151180665,
-          11.081635376482804,
-          -9.300719660120462,
-          10.692543590173262,
-          -9.139404348564948,
-          10.987559185886294,
-          9.42343181072763,
-          -10.791151120472293,
-          10.806850754232649,
-          9.384571932652733,
-          10.57239833878074,
-          10.373199375109412,
-          9.048871468716818,
-          9.459669848953748,
-          11.273448358680042,
-          9.745761090693938,
-          -10.18886920795718,
-          8.849831469856195,
-          -8.054125769822388,
-          -10.3922517548254,
-          9.772571565277604,
-          8.832568019672737,
-          11.31147624626588,
-          10.362304486693406,
-          8.642823016763709,
-          9.182540020508599,
-          -9.257439571371984,
-          -10.1087381118172,
-          9.170434277357332,
-          10.137368437753212,
-          8.400562423160913,
-          10.06054443230921,
-          8.32260509255318,
-          -10.895821592843024,
-          8.333311908811577,
-          -10.010982727143547,
-          10.394699657972884,
-          11.004382595146389,
-          -10.33046350215084,
-          -9.896222188246627,
-          -9.494537936514991,
-          -10.644483424573714,
-          10.018319878855868,
-          9.946976105864511,
-          -8.799029841792718,
-          -9.297163383663664,
-          9.940978577681054,
-          9.920894763931535,
-          -8.822137276643904,
-          8.531678523146873,
-          -8.64176446428411,
-          -9.395072671553264,
-          -10.217212935723758,
-          8.34510411274811,
-          10.647904970152998,
-          10.891124046587812,
-          10.731689026428295,
-          9.4568587118146,
-          9.607609820699851,
-          10.763969505097078,
-          10.584341760316335,
-          7.499355774904903,
-          -10.198811713602979,
-          9.562770788212472,
-          -8.687547794892012,
-          -11.202422998923936,
-          10.644929725448076,
-          -10.085286438872382,
-          -9.269755483706867,
-          11.035621294900492,
-          -9.308526580383035,
-          9.421301949558863,
-          -9.53277313334021,
-          -10.216712331924311,
-          10.097150446702031,
-          11.228791508183175,
-          9.777776353636256,
-          9.08009073523215,
-          9.72983331419435,
-          10.073505873456732,
-          11.355393931985187,
-          11.036185405563955,
-          -10.119086389669544,
-          10.441093715803682,
-          10.559597484980225,
-          9.687460317121383,
-          -10.212438400463737,
-          8.712487751508505,
-          9.468378121738391,
-          10.805298933502515,
-          8.983954253301956,
-          10.744622818580554,
-          11.534729964273989,
-          10.976162508417369,
-          9.277624335282106,
-          10.829941576379948,
-          9.798111001786497,
-          9.24386493840931,
-          9.620974236577164,
-          11.402491680927048,
-          -10.069348099663763,
-          7.82966064768408,
-          9.604554050945001,
-          11.758725542882772,
-          9.914232898740334,
-          -10.344826029980982,
-          -9.83736253671305,
-          11.244082303554435,
-          9.67074085789638,
-          10.537975574081418,
-          9.098738025280293,
-          11.493344549337804,
-          -9.569977615167335,
-          -9.233750628045645,
-          9.334430948096813,
-          10.505810270835138,
-          10.604756661565732,
-          10.859617515410436,
-          10.60137522005691,
-          12.226956355664637,
-          -9.79495435471977,
-          10.48812977370338,
-          9.891190752282633,
-          8.941114977978971,
-          9.98576161679038,
-          10.112254481179574,
-          12.111981803859857,
-          -9.887968657789386,
-          -10.250237570222236,
-          10.884191531473672,
-          9.724872843638222,
-          10.284517298733034,
-          10.018329853753684,
-          -8.200921657491111,
-          11.764759118204186,
-          8.832707080158444,
-          10.240960358822463,
-          11.383970937201017,
-          10.907847750093365,
-          10.553662731744623,
-          10.734280117086648,
-          10.687333885493876,
-          10.38247494892702,
-          11.139975456214119,
-          -9.162506888787181,
-          11.291225609052619,
-          8.949251756585248,
-          10.359325373985627,
-          -10.639093582670732,
-          10.151877211081352,
-          9.299294321111285,
-          11.03687810970771,
-          -9.296021728211533,
-          -9.050598570261199,
-          11.585806395889868,
-          -9.966078878137564,
-          11.467301099629488,
-          -9.802538467270319,
-          10.269505745885729,
-          8.762000853172228,
-          -11.45401282075828,
-          9.840031988460764,
-          10.449912897137782,
-          10.007904119039704,
-          -10.173782632918458,
-          -9.847489018272592,
-          8.650696923740101,
-          10.005059031825615,
-          10.852925079594293,
-          9.913850159241125,
-          -9.029927239687755,
-          10.720987324956655,
-          -10.216463456825963,
-          10.005236178101024,
-          11.434852747040763,
-          -10.181686064018233,
-          9.790432327453445,
-          10.533131210764813,
-          -10.521520897437776,
-          9.432690743870346,
-          -9.79720807685541,
-          9.898466303255152,
-          -8.904003003002504,
-          -8.775063146033988,
-          -9.28027368741819,
-          -8.984904096119067,
-          10.198099202736918,
-          8.26019995729726,
-          9.744041162498753,
-          8.699298406825932,
-          -9.596598709083535,
-          9.142350553454458,
-          10.09516372413297,
-          11.347977376083515,
-          10.174314363778816,
-          -10.387848842835606,
-          10.904856645631675,
-          10.811110267197881,
-          10.198059083020903,
-          -11.82609184799584,
-          9.78839689937558,
-          -9.865359510503922,
-          9.942629987357378,
-          10.126507937329318,
-          8.708780265181522,
-          10.209424553303897,
-          10.839301258177278,
-          10.941441102579107,
-          9.332577476870005,
-          9.64244784635412,
-          8.047505671148683,
-          9.601656287935755,
-          10.045460235002166,
-          10.69107359652156
+          1.0203053983903954,
+          -0.1693231125673651,
+          -0.36043372378719774,
+          0.7924222207280585,
+          -0.042838311648217164,
+          0.0724384684428877,
+          -0.4983795861855804,
+          1.2466510404549738,
+          -0.4229314933608892,
+          -0.5992447765521518,
+          -0.3835398284582263,
+          -0.1483421478853415,
+          -0.2126456017957994,
+          -0.13292296125891578,
+          -0.40653871826988386,
+          0.2384316557493935,
+          0.9411197830158082,
+          -0.8725038797575497,
+          1.698741834231849,
+          -0.8509266560647382,
+          -0.2824221278468577,
+          -0.6061762745080055,
+          1.1999138638400388,
+          -0.6395144133016746,
+          -0.3383478626010077,
+          2.341231545360767,
+          -0.24579944312310564,
+          0.7878367246873388,
+          -1.1832329358265694,
+          0.6177477464354796,
+          2.833013382601905,
+          0.633581925379989,
+          -0.13524618732190397,
+          1.4736910007912851,
+          0.784448871758459,
+          0.9149777639690704,
+          -0.14390074142432674,
+          1.3311297422164097,
+          -0.34689533581148346,
+          2.5361469758963286,
+          -0.6003948205330221,
+          1.4549351398888024,
+          -0.9638710163716193,
+          -0.14202857928385004,
+          -0.13247656109024297,
+          -0.49887697627218275,
+          -0.11162800030787534,
+          -0.7571561811494669,
+          0.7806590711937667,
+          0.1098464003086842,
+          1.0311515926508963,
+          2.3653823880411617,
+          1.7279167589401778,
+          -0.0926955187494396,
+          0.29906577456106265,
+          0.8073893857753422,
+          2.1112129027641178,
+          -0.35980940959239716,
+          0.9488943333592113,
+          -0.44843230560246616,
+          0.07569917748627752,
+          -0.6492041490908202,
+          1.6689747142828093,
+          -1.1776255789064223,
+          1.0309116946792785,
+          1.4366897516600217,
+          1.2401969602797533,
+          2.573922523945467,
+          1.2253661108389138,
+          2.7047542817178414,
+          0.6615488018523629,
+          -0.4769584160452214,
+          1.5788090399606325,
+          -0.5495760744512568,
+          0.3401826461204208,
+          0.8179741742071137,
+          0.16617615910392336,
+          -0.9930913928986256,
+          0.48286078844771696,
+          -0.5494638880458746,
+          0.7608231984784,
+          1.8904129122144337,
+          0.42796945307335965,
+          0.7592156066173379,
+          0.5666825697271092,
+          -0.6855265641774921,
+          0.33210951700004143,
+          -0.39833215193833893,
+          1.3041735686184066,
+          0.8292037429208376,
+          1.8261872383208946,
+          -0.44913535140037486,
+          2.4193030108562015,
+          -0.48610217121733124,
+          2.0739040648929707,
+          2.0817877969028222,
+          0.853994963793812,
+          0.7706697787158463,
+          0.8096146279377434,
+          -0.2887950593400008,
+          0.7432528329060061,
+          -0.14462331874209156,
+          1.541766131222568,
+          0.882241148219945,
+          1.5510360386033444,
+          -0.5109437832133636,
+          0.6441424249431003,
+          0.6694554942865533,
+          1.199586493808253,
+          0.2591524923030115,
+          0.3779005420558166,
+          -0.0011689308801228204,
+          2.8977848266862725,
+          -1.6291520393167933,
+          1.1179238841292634,
+          -0.4318669627391645,
+          0.9879214531605737,
+          -0.989320350803194,
+          0.13909193896611494,
+          0.9455132305999552,
+          1.3088696835468459,
+          1.2734509468666926,
+          0.7531908527108577,
+          0.8093323087862271,
+          2.1324038287224356,
+          0.6055820201612236,
+          1.609248799645973,
+          1.9297573613760077,
+          2.1161249953234824,
+          -0.3230208242394874,
+          1.6345529269535264,
+          0.9112948041215274,
+          1.2908671946206958,
+          2.4763800947816423,
+          2.2259874486455495,
+          -0.9907167755956883,
+          0.08842153769709593,
+          -0.7884687581486833,
+          1.086955998190933,
+          -0.5503119841371351,
+          1.50930575222144,
+          -0.32844374201988114,
+          1.377384395454765,
+          -0.6137832044810831,
+          -1.0794672957060452,
+          1.5111352572610441,
+          0.982190512409347,
+          -0.17420493947022342,
+          0.7008405389981385,
+          1.6252425397797652,
+          1.7095421800200268,
+          0.20781303765912407,
+          -0.0011925886676349418,
+          1.0924655780849521,
+          0.18888558615903495,
+          0.183765556161539,
+          0.7572824093508889,
+          0.8505628850880635,
+          -0.24416607521548972,
+          -0.40101914259688076,
+          1.4786169908370697,
+          1.696694851727204,
+          0.05557447845552743,
+          2.5024658515931133,
+          -1.0508583266054217,
+          -0.27628809805000576,
+          0.8100369394871154,
+          1.4129857247310624,
+          -0.056660384317963386,
+          0.8858248452657128,
+          0.7958003154989687,
+          -0.36149994566850774,
+          1.130427979068816,
+          1.644647113218856,
+          2.4785012980626684,
+          1.163216091927921,
+          -0.09873350846973494,
+          1.6637922212183494,
+          1.9823068820606562,
+          -0.4517836352481639,
+          -0.42576923489229324,
+          0.29608192735831373,
+          0.5681127697134198,
+          -0.11687714770401603,
+          0.9326921909398249,
+          -0.11410888986382073,
+          -0.13875746713587178,
+          1.6222606331666913,
+          1.708714009407727,
+          1.2058125696305713,
+          1.4712829581619078,
+          3.0373947889231356,
+          0.48744320814396513,
+          1.1925948741213837,
+          1.6528965804835685,
+          2.0149127736091064,
+          0.5502391060127735,
+          2.4917811841259923,
+          1.6227342208638091,
+          1.1363893363474487,
+          1.3730046541885388,
+          0.46012102016921963,
+          0.8716177633366918,
+          0.2049629486339548,
+          0.9713127347256617,
+          1.2519359473824396,
+          1.9773229280447797,
+          1.4462430616692714,
+          0.7306145869574987,
+          0.31772494133535034,
+          1.0760886389636894,
+          0.30710652188996246,
+          0.4892127577764578,
+          1.13468269982678,
+          1.2983987533095769,
+          0.3067998509704495,
+          0.04022292492434287,
+          1.2634330627216188,
+          2.4088218293052384,
+          0.8263049668868918,
+          2.6511627452519946,
+          0.6038425610603828,
+          1.5989814967055698,
+          2.205290320084267,
+          0.3712059245116226,
+          1.213650215121834,
+          0.4875410303582347,
+          1.4167735724597248,
+          2.302373629505461,
+          1.0454255617033466,
+          2.661756884147922,
+          1.2568086815724984,
+          1.5782935223584582,
+          1.8956175744335333,
+          0.2956751154635273,
+          0.8763674780958205,
+          2.5568690653739656,
+          1.3018584500612012,
+          1.4508482686041686,
+          1.7489244962308008,
+          0.9739763083396197,
+          1.1439192478882991,
+          2.095578988695838,
+          0.04066890919503241,
+          0.17583986870204293,
+          2.023917895913446,
+          1.8161877513325413,
+          1.9721538744744953,
+          0.8712964832419423,
+          0.7442592668618742,
+          0.42579487366324487,
+          1.8594532293260915,
+          1.1815759531042156,
+          1.0104102817329714,
+          1.8591508308420348,
+          1.61436736625705,
+          0.25748922940468,
+          0.4527202447904296,
+          1.6089104175011353,
+          1.092055953959792,
+          0.06024270927810804,
+          0.8011854284333815,
+          1.1834287074096372,
+          0.7526385293936033,
+          0.47101549876133797,
+          0.23687480585428777,
+          0.7177469602198157,
+          1.0314254074073155,
+          2.1992452877200823,
+          1.1115474984660538,
+          0.8822025002875198,
+          1.3064819648345478,
+          1.1074149719935815,
+          0.9068996971046277,
+          1.419638846435256,
+          1.1265548538720076,
+          1.5455667987499622,
+          1.6942622630024502,
+          2.1104520737144044,
+          0.6829868484505799,
+          1.030639278452318,
+          0.3484361764125815,
+          0.9800463718600926,
+          1.077783615822773,
+          2.4622089544027297,
+          1.6855045050204371,
+          0.6539701551170252,
+          1.440742104338293,
+          0.022094755772876895,
+          1.5329118384539284,
+          1.8718348588615696,
+          0.6888251335541764,
+          0.8844533156432326,
+          1.112448512134176,
+          0.9523195665266183,
+          1.9754583341041574,
+          1.7947965795960041,
+          1.6647402110460612,
+          2.778623709105719,
+          2.101335471087241,
+          1.1487628875390676,
+          1.5781767512675868,
+          1.0984699103172442,
+          0.7210044880225548,
+          1.8942777402100162,
+          2.645394447016562,
+          1.6252680502166388,
+          1.4562260192057872,
+          1.5557768850735483,
+          0.2962164024934232,
+          1.0760816486063751,
+          1.1567588759878809,
+          1.3721395437074877,
+          0.9584766197251925,
+          0.22621284573649114,
+          0.023446136136498485,
+          2.657991576676876,
+          0.9955151608816335,
+          2.0462544377625838,
+          0.7405293537419944,
+          1.079346537962731,
+          0.1517576898016828,
+          2.0886520463752403,
+          2.860422678507422,
+          0.7207517752399762,
+          0.1962819152935087,
+          1.318186104175194,
+          1.1709201473993842,
+          1.287150972420084,
+          1.8099482772283508,
+          1.0411917767797483,
+          1.6311075563255448,
+          2.3344569648974334,
+          0.40062194628429304,
+          0.7140420518911751,
+          0.8531677596392419,
+          1.3359107756772413,
+          0.8411216004813323,
+          0.6815240549135371,
+          0.2630175048259987,
+          1.1791359841193567,
+          2.900201469978568,
+          2.2003196421408093,
+          1.577302753218849,
+          2.159602862692523,
+          0.3653624944661592,
+          2.4202143656245685,
+          0.5705424357183223,
+          1.2452436290132005,
+          1.02296168963215,
+          2.699602236889106,
+          1.5705541889630417,
+          0.5661770619775696,
+          1.9738585398810573,
+          0.7551647088849582,
+          1.3925566036109371,
+          0.45235266591844114,
+          1.2694191277862825,
+          0.23698627058577837,
+          2.279853778330896,
+          1.772910463097689,
+          0.4592589150873072,
+          1.6036932524995833,
+          0.6866943189138726,
+          1.488266394940616,
+          0.7019361606589045,
+          1.1344644662030927,
+          1.731964013435467,
+          1.285841749347686,
+          0.8719744128197884,
+          0.5553913108022152,
+          0.4861331297985447,
+          0.4962236803848259,
+          0.7808992300199035,
+          2.0091788723210513,
+          0.9310076453773778,
+          0.6641591244526601,
+          0.5930016112251358,
+          1.7787807482362346,
+          0.510154330664147,
+          0.9293114846467752,
+          0.9923049654353149,
+          1.8589267462827013,
+          1.1570344027369441,
+          1.0462532099180564,
+          0.5367760454490529,
+          1.6900406109839454,
+          2.4786773741139236,
+          0.9936848788533255,
+          1.3100566046412265,
+          2.309854522198661,
+          1.4691976222530305,
+          0.8978273723417967,
+          0.9071584200316307,
+          0.922420656969436,
+          0.990297011199975,
+          0.35247845860439375,
+          1.7043400477642803,
+          1.2874843688484785,
+          0.8419179942991574,
+          1.277149936453117,
+          0.4265878666937507,
+          1.7749933831730205,
+          1.458089379123357,
+          1.3269579441432235,
+          0.7707919085124878,
+          1.2892007861316412,
+          0.11717296031677393,
+          1.5185958226291243,
+          1.7805677014602903,
+          1.1352502858456335,
+          0.1436389932395108,
+          1.5175922895792766,
+          1.8316884496714205,
+          0.8938672638855053,
+          0.7624940636335682,
+          1.607402203917938,
+          2.2588995903599316,
+          2.534921208463991,
+          1.6994422249973438,
+          1.82719777988841,
+          0.832663742362707,
+          0.8794301694767015,
+          2.3670200803589148,
+          0.717642992439812,
+          0.4120376478703386,
+          3.0731507340002757,
+          1.2087384675599016,
+          1.8538998969932865,
+          0.26909636328508824,
+          1.8015547076431622,
+          1.5675070146176897,
+          1.9490060412608585,
+          0.16853521546210348,
+          0.5680700212753202,
+          2.070555670877119,
+          1.6474069442734491,
+          0.519461241549859,
+          0.41490017276984226,
+          0.743265374977645,
+          0.11997041072245374,
+          0.8984695355990284,
+          0.6146360057381763,
+          1.711028682286279,
+          0.832135821687176,
+          0.9501831122670815,
+          2.3316074084689893,
+          2.7313152268766405,
+          0.6195167544670217,
+          1.1899855783487787,
+          1.6444146396433341,
+          0.8278629942437107,
+          1.7197894728962366,
+          0.2906614045228664,
+          1.5404349781826125,
+          0.8337810738779693,
+          0.6759511691165854,
+          1.3722399483875578,
+          0.7745349152037833,
+          0.3316894262849106,
+          1.86365386691784,
+          0.6847789722196969,
+          1.8591582602977872,
+          1.7187165121384744,
+          0.20844616119713666,
+          1.5847199483498022,
+          0.3397054791377728,
+          1.9074716059606924,
+          0.9251350699144911,
+          1.0096168205768064,
+          0.31236582606381913,
+          1.368883029127204,
+          0.5264006531405193,
+          1.437114972332568,
+          2.150963629508796,
+          1.8866127980527467,
+          0.4820651453495973,
+          1.4133357957777852,
+          1.260281715918359,
+          1.1069657456144182,
+          2.6547151642918325,
+          0.7188621952056975,
+          0.674227519380663,
+          1.2261419167066003,
+          1.092443939453915,
+          0.5916492855489077,
+          1.0191395971801043,
+          1.9539999591958048,
+          0.6593590690891415,
+          0.9086975783455855,
+          0.48465315167385925,
+          0.9021355531968496,
+          1.4627089193526397,
+          1.3325114745948543,
+          0.9686249175345519,
+          1.3802268569551708,
+          0.07883063118229705,
+          2.1610393546182625,
+          0.6159906745084327,
+          0.3965374356865391,
+          1.8510964894804087,
+          1.3079863776546417,
+          1.3156520679716208,
+          2.4859489575819165,
+          1.600256953539872,
+          0.41457279575216444,
+          0.9352385175370244,
+          1.8440738572434294,
+          0.19725203757362586,
+          0.49287240252159115,
+          0.17041722181228602,
+          2.1378254184976893,
+          1.0227590333334917,
+          1.4323762129348871,
+          2.0803475129371822,
+          1.444551228829436,
+          0.5167485847649913,
+          2.4285967621290983,
+          0.6590543090206955,
+          1.373329845781972,
+          0.07871632142296425,
+          0.01504131368229833,
+          0.12785989142053034,
+          2.713429452162047,
+          1.0539609903780964,
+          1.3182178106856615,
+          1.609126799924971,
+          2.2852629644400997,
+          1.0333412356302147,
+          0.28688424916292965,
+          0.3273832914607985,
+          0.21271005541618526,
+          2.402838547351999,
+          1.271414205280267,
+          0.2177561574516803,
+          0.8478025984446755,
+          2.324675713850981,
+          0.4233150698582626,
+          0.7131693451809471,
+          1.5091414225257873,
+          1.2473848774901093,
+          0.22855206682428952,
+          1.9759573945256173,
+          1.50398602534255,
+          0.9791711710010645,
+          1.8548548951571782,
+          1.1142405248126008,
+          0.8545971685806033,
+          1.0281737563929971,
+          0.5400377340522602,
+          1.4180926406152894,
+          0.2462888509461717,
+          1.04966199054856,
+          0.7597561365967891,
+          0.7132148111184191,
+          0.5317767316991348,
+          1.5406982850716755,
+          1.499342454073401,
+          3.456577132625045,
+          0.42612427038608525,
+          1.1598944111601812,
+          1.178724210460332,
+          0.8240493035007335,
+          1.5732942436181507,
+          0.4031575205996838,
+          0.1630320934424343,
+          1.6864141125764562,
+          2.693091772656869,
+          2.440767290325007,
+          0.3768104625669655,
+          1.2665477035929034,
+          0.27014493066336986,
+          2.1990844774814318,
+          0.8564353876863908,
+          0.0822495683783171,
+          2.5039661348231785,
+          0.3742937027904466,
+          2.448554347374076,
+          1.9764515254821708,
+          1.3015305770214374,
+          1.8982795267562387,
+          0.38127302380127925,
+          1.180272929375018,
+          0.3958646543575549,
+          2.1628501329326904,
+          1.7738492078451689,
+          1.4129739381649806,
+          1.54647643766344,
+          0.9900541264303399,
+          1.3775816423244653,
+          2.5215524442358888,
+          0.17419531198663685,
+          1.9603622847644895,
+          1.452669606778144,
+          0.9912784151378169,
+          1.7599372078194615,
+          1.330730575447562,
+          1.7905460908971365,
+          0.6582382268452065,
+          1.391589694927443,
+          0.7556116058331301,
+          0.19526548031690183,
+          1.4273471429136766,
+          0.781895971599571,
+          0.16188574886368912,
+          1.4393148888317144,
+          0.7523666335536929,
+          1.0194723596306725,
+          0.0889865221390761,
+          1.8090312837544749,
+          1.9309818796121214,
+          1.5841024195980975,
+          1.3386527801135413,
+          0.3207368332132393,
+          1.8177418930462268,
+          2.191880094498022,
+          1.3056168832841917,
+          2.2303307284122704,
+          1.9214498980505645,
+          1.1705055666273587,
+          0.6102851790061863,
+          0.5490467491985134,
+          0.8472858874588886,
+          0.7431398797638264,
+          1.498897072884554,
+          1.1411394059925248,
+          2.092446217643686,
+          0.5417346873697769,
+          1.0014195077031973,
+          1.0771535705843462,
+          2.0364846719221577,
+          0.09255776616302891,
+          0.9016784796137249,
+          1.084880327130102,
+          1.2386161459371294,
+          0.9699539797553789,
+          1.0290994009642458,
+          0.45552853604115806,
+          1.0955133699827846,
+          1.3144044421549705,
+          0.12067699193646875,
+          1.6104863771410538,
+          0.7989994662992888,
+          1.2002746529124022,
+          2.0563315999144742,
+          1.8825541673070147,
+          1.1252938931889473,
+          0.6028265732202995,
+          0.6929984959150756,
+          0.27177749500825377,
+          0.3969629451501204,
+          0.9043535432703609,
+          0.8824501726534824,
+          1.092911733058514,
+          1.8140504357915814,
+          2.6881300655057654,
+          0.4519616599088907,
+          0.36132662257788795,
+          1.4376818626600698,
+          0.15230918651700465,
+          0.9211823619081873,
+          0.6030066632139938,
+          0.31540961548461466,
+          1.387199627676446,
+          0.14178275599519286,
+          0.798521694687042
          ],
          "y": [
-          9.818157534436944,
-          -8.74962621229305,
-          11.428555391646778,
-          -10.182071162993136,
-          9.984380473900414,
-          10.132650688733202,
-          -9.65073793213806,
-          -9.573634368765743,
-          10.356871120966765,
-          9.905314259335901,
-          10.447655753426947,
-          -9.231361482240526,
-          10.309717278023147,
-          10.258173987905906,
-          -9.13542026010986,
-          -9.714431506454186,
-          9.759728908549638,
-          9.43520332522143,
-          9.356186222173854,
-          10.581320397634094,
-          11.141692001212395,
-          -10.264714626701004,
-          10.31640444460181,
-          -8.748964671994054,
-          9.724838065366125,
-          -10.083227276595089,
-          10.215162308284587,
-          9.49873506612024,
-          10.365757108258316,
-          9.881949956007352,
-          -9.130368032971178,
-          10.018270876599953,
-          -10.761924653827613,
-          -10.462765344493883,
-          9.507343497468149,
-          9.825864637056284,
-          10.002395904250644,
-          10.81911870941555,
-          8.635242375836189,
-          11.270301128332106,
-          10.30360905537757,
-          10.022087338510142,
-          10.533947598787178,
-          10.328492661975337,
-          10.315929400110349,
-          10.623126247439846,
-          -11.019037486144013,
-          -10.166385934319738,
-          -9.859639802000869,
-          -9.396736750944951,
-          -10.581976760624727,
-          9.696287932123251,
-          9.123985331103828,
-          9.520998111339527,
-          9.862802034812548,
-          9.698942100225654,
-          10.371714196255759,
-          9.754322123455466,
-          -10.709811645026116,
-          -10.734052572620557,
-          9.431928436426016,
-          9.555911109102599,
-          9.151143650415046,
-          9.42780610364675,
-          9.778944418602453,
-          9.60768682877453,
-          9.233662501922389,
-          8.819108185670478,
-          -10.41817041316156,
-          8.744969918444967,
-          -10.012538907168816,
-          -10.39615619712363,
-          10.040964130729513,
-          10.581154042035198,
-          -10.077222012942455,
-          10.95078329272683,
-          9.915197961581624,
-          8.864925689280694,
-          -11.50829198860617,
-          9.415971189638517,
-          -11.432263777722557,
-          10.342422834027186,
-          -8.853966673820281,
-          8.40138094319155,
-          10.683378566145198,
-          -8.513832075692173,
-          9.809912289313033,
-          -9.237835622414574,
-          10.518726846955634,
-          10.050006817994229,
-          9.53116726089345,
-          9.887264486435752,
-          -9.697969112404218,
-          -9.756032050304361,
-          -9.984177604020088,
-          8.073024482324383,
-          10.35500106303173,
-          10.551971934266914,
-          9.662701701211452,
-          -9.816187564432973,
-          9.73070883332619,
-          -11.147304835073912,
-          10.206115738588508,
-          8.874787185869954,
-          9.806933553293284,
-          9.933606192568469,
-          9.455206392886987,
-          10.279543130897405,
-          9.675989937073291,
-          10.162976225773287,
-          10.397258466005125,
-          10.717852517959892,
-          9.98308114418839,
-          10.077992598519266,
-          -7.778770511732029,
-          9.620805887959797,
-          -10.661735150282816,
-          10.024061706039664,
-          11.196055604392646,
-          9.89463657601325,
-          9.558028370264966,
-          10.49064984400763,
-          9.32951191439723,
-          10.604076075890736,
-          11.100217092479067,
-          9.995587993968261,
-          9.571942005897837,
-          -8.228682820150079,
-          10.92711245609335,
-          10.246494709529502,
-          -8.082670377267808,
-          10.271536164501425,
-          9.175050200763625,
-          9.253900484481552,
-          9.421566934520838,
-          10.474692463097503,
-          10.606846463429804,
-          9.746122058045701,
-          9.603630002006522,
-          -10.753611104374313,
-          9.954163524738467,
-          -11.271662327875589,
-          10.402351356310323,
-          -8.422583469473222,
-          8.844114674777147,
-          9.95522280959353,
-          11.06172785145869,
-          -9.500950589885752,
-          10.596580695774318,
-          -10.983133019150765,
-          -11.355675072908008,
-          10.527872680951676,
-          11.234722129573122,
-          -9.222330034267728,
-          9.543971141549617,
-          -8.471276468855113,
-          10.099578432018362,
-          -10.028910235787862,
-          -11.146240338510847,
-          10.863515174785858,
-          -7.68558316015816,
-          9.930814235060922,
-          10.722473383315354,
-          10.097069126173308,
-          -10.182166082577533,
-          10.728575768386193,
-          10.124480612734452,
-          -9.151483498893043,
-          10.724428162231362,
-          10.296790606446718,
-          9.798153697825827,
-          10.155786703132431,
-          10.399982519333184,
-          10.12609411424227,
-          9.798680034245372,
-          -10.88979204489868,
-          9.171580828119396,
-          9.62429917897017,
-          10.32346237881932,
-          10.287778572618734,
-          9.58907457343729,
-          -11.686670432827453,
-          9.408821716333572,
-          10.451905316048347,
-          9.676959200894228,
-          10.67778497060876,
-          10.376223433043373,
-          9.581105199616278,
-          10.167356505653196,
-          -8.190135198426754,
-          -10.049259372803832,
-          10.027761815995069,
-          10.0248703857584,
-          9.487897156661264,
-          10.201441618111696,
-          9.564790720935749,
-          10.20779234362245,
-          9.897861635158383,
-          9.2106563725472,
-          -9.261009741433574,
-          10.038506418227762,
-          -9.437078394924425,
-          -11.95611192221992,
-          8.876996726933518,
-          -9.658542024537883,
-          11.060123961430385,
-          -9.59537556137458,
-          9.434784122856314,
-          10.454385790222313,
-          -10.140049620606748,
-          9.5161622679092,
-          8.62882586421534,
-          -10.304701958720258,
-          9.380104213724682,
-          9.101066638542394,
-          -10.433011307728522,
-          9.377577565323937,
-          10.461628543942446,
-          8.944952514815613,
-          10.364854199267377,
-          11.062152151649169,
-          -9.82382125175784,
-          9.050466851326515,
-          9.603710644396664,
-          -9.115667931060877,
-          9.305508660556125,
-          9.643744685282961,
-          -10.958198418808994,
-          -9.955134906972898,
-          -8.12030269798589,
-          9.996961827908144,
-          8.926456881026342,
-          10.290967806940763,
-          -8.598560879009307,
-          10.384807829155962,
-          9.876201241308735,
-          -9.7909323054487,
-          -8.816409195574527,
-          10.150877776289288,
-          9.6735002698338,
-          9.538552645189478,
-          9.987839094781064,
-          9.475670161076065,
-          10.023047613411615,
-          10.509303734907295,
-          10.167186304045684,
-          10.025765688121778,
-          -10.061605214342931,
-          9.312197450725344,
-          10.058707405733067,
-          9.35167278646109,
-          10.180215838195991,
-          10.79290412091058,
-          -8.685161089431002,
-          -9.457731612350084,
-          -9.568437723146536,
-          9.178771265385965,
-          9.111854666857479,
-          9.911522101900797,
-          9.61141556331843,
-          -10.672572674857143,
-          -10.905883489006941,
-          10.547426502963603,
-          10.648746938469698,
-          9.75475378596437,
-          9.865690403337101,
-          9.778513749496614,
-          10.09494908821786,
-          9.478187385734948,
-          9.704646732969117,
-          9.942415979836895,
-          -10.120159599910469,
-          -8.851255969733344,
-          9.342422183200592,
-          10.149133201113152,
-          10.695367226403864,
-          10.572411845841453,
-          -8.824141843579874,
-          9.373683432352856,
-          10.35303553478441,
-          -11.607727050549402,
-          -11.890789402206172,
-          -8.234743914347451,
-          10.422310070221053,
-          9.808809973407657,
-          11.39134504194697,
-          -8.259974290373725,
-          9.976455873221582,
-          9.525884372420629,
-          -9.16477815788242,
-          10.023736868331277,
-          10.707060665831124,
-          -8.807154796835565,
-          8.387975975942227,
-          9.827231076399276,
-          9.626397492631714,
-          -10.30664069050435,
-          -9.45618097201686,
-          9.309274447067688,
-          10.601267996403513,
-          -11.340324424472456,
-          9.463640536155433,
-          8.92352751370277,
-          9.09116126977077,
-          11.275582606191604,
-          -10.710543150981001,
-          9.634963884343245,
-          9.495977612070423,
-          9.320020706473084,
-          10.127667174524822,
-          10.619677989169157,
-          -10.960189221357187,
-          9.77065595677823,
-          10.775815459844829,
-          -10.833594639293626,
-          -10.329543861686158,
-          10.748518310482144,
-          10.859688259948948,
-          10.563831409974174,
-          10.85660956634214,
-          10.598143083075998,
-          10.601472646690288,
-          9.898437364257905,
-          -11.128863895882315,
-          10.444069134715145,
-          11.084516301442813,
-          10.680750240880142,
-          -8.95524693821471,
-          9.884752316687157,
-          11.251733726118484,
-          -8.700098805901787,
-          9.425053758166799,
-          9.355581065670666,
-          10.028420137021856,
-          9.749562827565683,
-          9.890708941444826,
-          -9.95904326121842,
-          10.03416866385732,
-          10.441093963192252,
-          9.564182331943858,
-          10.061451838092983,
-          9.842926482027744,
-          9.414417165745077,
-          10.041464173416138,
-          9.625820967501072,
-          -9.95687875545265,
-          9.898308745593631,
-          9.422114437764485,
-          10.520297271346566,
-          -10.91960362815693,
-          9.337348578726926,
-          9.118897578743148,
-          9.620608609809105,
-          10.016397355549337,
-          -9.096547065691968,
-          10.523211518097932,
-          9.856089246156172,
-          -11.103668228200082,
-          9.235221506917291,
-          -9.686062067433886,
-          -9.093121518824487,
-          9.581487748824923,
-          10.04682820686265,
-          -9.374045379140568,
-          -9.852518823389161,
-          10.964683943671924,
-          10.30478694973937,
-          9.817302614332107,
-          -11.091922323416481,
-          10.168374242868564,
-          10.057586914133013,
-          -10.95973374286,
-          7.947076691788672,
-          -9.772365754843259,
-          -8.794022056173517,
-          9.876795552126989,
-          9.496297799136109,
-          9.392475292502523,
-          -9.123732231729747,
-          9.347782876052852,
-          9.322196950295774,
-          10.446089439101737,
-          -9.830507519124895,
-          9.708554076240553,
-          -11.243235904236393,
-          -9.762177770918312,
-          9.633799893821637,
-          10.750417099170926,
-          8.911466059495151,
-          10.399470239025671,
-          10.524915806852897,
-          9.110891897098963,
-          -8.909655569560107,
-          9.112645352865233,
-          -10.36081184979681,
-          10.464937070818841,
-          9.406012464263174,
-          10.990005818603233,
-          9.779726853353429,
-          10.076687625161904,
-          10.610310562112362,
-          -9.383518440956124,
-          -9.352268255754629,
-          9.3094156137877,
-          -9.203752757907223,
-          10.754003564426245,
-          10.189127215860962,
-          10.03387056508656,
-          -9.869839521817523,
-          9.176274723614178,
-          -9.91294405909701,
-          9.821460775059045,
-          9.574895398894414,
-          9.656727661660403,
-          9.792680129314862,
-          9.126440254711257,
-          11.168590674839828,
-          10.346854015823112,
-          10.40477393181148,
-          -9.984883694659652,
-          10.654965072206114,
-          -9.120662434922984,
-          10.235057416239782,
-          10.342515172563878,
-          9.788342830917399,
-          10.67325236317942,
-          10.325950782474301,
-          9.956365044431767,
-          -9.28083299316692,
-          9.951304940851527,
-          9.500563120910186,
-          -9.55204093742295,
-          -9.380094282989942,
-          10.367116351046528,
-          -9.040666567337565,
-          9.56195379469655,
-          9.706056742928295,
-          11.07827656946837,
-          -9.671377970992559,
-          9.964418134122019,
-          10.45856969621205,
-          9.880175297847332,
-          10.879250824403883,
-          10.26831551310347,
-          -10.758411151696855,
-          10.60621833639871,
-          9.743309133157485,
-          10.392008050612354,
-          10.933106241945785,
-          -9.217813108755909,
-          10.102783157602527,
-          -10.240695040125171,
-          10.468758071740396,
-          -10.548752450559363,
-          10.502509149656198,
-          9.147267839681232,
-          12.546775471506033,
-          -10.221844747586974,
-          -10.270444240276522,
-          10.514992371252225,
-          10.357604888782896,
-          10.52714703739744,
-          10.175749229810247,
-          10.651850611166497,
-          8.396914362938432,
-          9.512240261634524,
-          -10.541523888699544,
-          8.971507346029084,
-          10.21807644874558,
-          10.16745488301746,
-          10.992401647603081,
-          9.442979986480415,
-          9.722480914463148,
-          -9.702022302994887,
-          10.024386548716786,
-          10.218268367587218,
-          8.942530842558384,
-          9.761225709227137,
-          9.973015207468881,
-          9.160477465749324,
-          9.636457338014846,
-          9.617168011068776,
-          -9.192388638600702,
-          10.225221587654424,
-          9.673401735436086,
-          10.072972261023539,
-          9.596650086235739,
-          8.795277042768438,
-          10.489639956803305,
-          9.943388567937301,
-          10.103343925491476,
-          9.775133032272466,
-          11.593786170665645,
-          10.150683627752818,
-          9.669115183350138,
-          9.742696001305983,
-          9.910944557901665,
-          10.197668303439045,
-          9.711553338250283,
-          9.640833336775335,
-          9.36014480654011,
-          -8.542664015735168,
-          10.942818687227202,
-          10.517128299806062,
-          9.7265931623024,
-          9.670554262539602,
-          11.004222328758976,
-          -10.85251981369854,
-          10.076988436109295,
-          9.463521872577473,
-          -9.371008041448896,
-          -10.223733292245301,
-          -10.439236589781391,
-          -7.766738372024627,
-          12.034258781661215,
-          -10.597898103764997,
-          10.726446790745864,
-          10.029656455113555,
-          -11.412002452007783,
-          10.118691290139342,
-          9.291140107527868,
-          10.784578263054872,
-          11.034263976649141,
-          10.51199542927711,
-          8.89983662635099,
-          10.514630216931169,
-          9.778942684102757,
-          -11.546922399006586,
-          9.933998514186834,
-          -8.187797609729461,
-          9.626932468416724,
-          9.767256932698993,
-          9.728372016511683,
-          10.222011112616237,
-          9.808622239229601,
-          9.779346088804584,
-          10.275100692419858,
-          10.239801160789716,
-          10.938633102802473,
-          9.559766918150439,
-          9.685042435168794,
-          -10.252078268562746,
-          -8.553297739379834,
-          -10.81647212943015,
-          10.385456959904658,
-          10.428237896281356,
-          -8.513580848941304,
-          10.199262650754688,
-          -10.287715172033936,
-          10.480513448441878,
-          10.048296256739214,
-          10.752105292576136,
-          10.226172279310827,
-          -7.631150858243007,
-          10.609533368033002,
-          -11.576932084570497,
-          10.231723127400853,
-          10.112546795100315,
-          10.739912125690717,
-          10.377417558583758,
-          9.203178327832616,
-          -10.61382588435552,
-          10.007894883981095,
-          -11.417860114083517,
-          11.107485236844106,
-          10.35209230800973,
-          -9.46858178622288,
-          -11.730764561163976,
-          -10.179515103951001,
-          10.127290795522773,
-          -10.4300200330219,
-          10.418751999499685,
-          10.720296548089483,
-          10.000823372433048,
-          10.040006198005507,
-          -8.33371571313503,
-          -10.198942607119358,
-          9.56906906829674,
-          -11.013514222638475,
-          11.174548143397859,
-          9.317078043336208,
-          9.56583554120533,
-          9.722457660429273,
-          9.788120927789826,
-          10.314855547287758,
-          11.964884419549715,
-          11.60789328855989,
-          9.99223468910765,
-          10.421719492211405,
-          9.936498555115904,
-          -10.682719726406598,
-          9.721770645768423,
-          10.092895321872215,
-          9.575722095625343,
-          9.410179283137168,
-          -10.96284079158024,
-          10.84709279173733,
-          10.708506948689465,
-          -9.731657362450228,
-          10.205559983471229,
-          9.036593514019813,
-          10.198781306562857,
-          -9.557446356254678,
-          -11.485320537702515,
-          10.039828387702524,
-          9.25567921017288,
-          -12.035960463602517,
-          10.563066708724552,
-          10.399374971909104,
-          8.203013983874422,
-          -9.470511582463631,
-          10.301177915760134,
-          9.773881418422285,
-          9.963679174909165,
-          -10.529374769691628,
-          10.251679489414652,
-          9.483176079594664,
-          10.400791455692044,
-          9.069483199264798,
-          9.989817853609182,
-          10.1105866575599,
-          9.835060988389184,
-          9.819905184072734,
-          -10.622308395327442,
-          9.42042282028899,
-          -10.144450310058865,
-          -12.00696178792072,
-          9.153899051480527,
-          9.794387997433638,
-          10.181846163667073,
-          9.734390723698267,
-          9.54560175668708,
-          10.171813450815945,
-          10.531291498494168,
-          8.71473156678416,
-          10.527666934619157,
-          9.208203327132837,
-          9.179753925690097,
-          10.074668035052515,
-          -7.6585940666443815,
-          9.30199099089935,
-          -8.95486488932558,
-          9.156547124383279,
-          10.167778905135231,
-          -10.325632928161424,
-          10.43056288172409,
-          9.666432560422912,
-          8.836605291324355,
-          10.101931971642765,
-          -10.427801799189856,
-          -10.236012045479349,
-          8.914512105605708,
-          10.46071751153947,
-          9.437121621985005,
-          -10.534897839302262,
-          -10.482247551824196,
-          -8.3609367111595,
-          -9.662223318472742,
-          10.38032809641783,
-          10.64697353970708,
-          9.937352032110446,
-          9.138842207413832,
-          -7.9039834438164895,
-          9.954189611838654,
-          -8.9703638924132,
-          10.335631224082729
+          1.0710592277192403,
+          -1.4499258995551842,
+          -2.110789097261947,
+          0.15763039577851612,
+          -2.1181664552608312,
+          0.388474966748501,
+          -0.5691018663693059,
+          0.32235896035262246,
+          -0.5308724856821607,
+          -0.04903377525737773,
+          -0.4392282653356262,
+          -1.2187881435446695,
+          -1.4975860536103676,
+          -0.9244765495348639,
+          -1.227203671620405,
+          0.9367618238870588,
+          0.007986478938443176,
+          -0.952880961827346,
+          0.34652338602725585,
+          -1.4738172730024184,
+          -0.4292020883042159,
+          -0.5388092536699772,
+          0.7306737280220816,
+          -1.984712023145785,
+          0.09149058832985113,
+          0.3846982978820941,
+          -1.688059794974322,
+          0.07894881548241939,
+          -1.1113140123918996,
+          0.15929707042157704,
+          0.27551591915775897,
+          0.13256503371453054,
+          -1.9060922743395747,
+          0.1727428774417179,
+          0.682858223373005,
+          0.20881547115584564,
+          -0.5567736403801791,
+          0.2769757166803839,
+          -2.924425298880294,
+          0.14685512085995134,
+          -1.1867427006826818,
+          0.8324604454673368,
+          0.15676788880394454,
+          -0.5767442326864087,
+          -0.33969166472329837,
+          -0.42284991581537024,
+          -1.4298548623434664,
+          -2.0936418676272277,
+          -0.37127528298434775,
+          0.12697225561228054,
+          -1.0883315664186006,
+          0.7628979136634686,
+          -1.0915296102286403,
+          -0.8997623232610454,
+          -1.597114432363893,
+          0.04477207882429668,
+          -1.044772129985624,
+          0.060311886113444846,
+          -0.9951001444477596,
+          -0.8040992329146222,
+          -0.9510680774505971,
+          -2.6618239927692073,
+          -0.9913439351837797,
+          -0.2589780395636334,
+          -0.7194465373697482,
+          0.11451807246769485,
+          -0.9336468424404977,
+          0.5043842545322206,
+          -1.1390007897153909,
+          0.9707236557810084,
+          -2.358391432632188,
+          -0.7639860911097203,
+          -1.6367313947845772,
+          -1.1688993989678997,
+          -0.6945159880206354,
+          0.7748698077754064,
+          -1.2858359665416994,
+          -0.5657348044463508,
+          -1.0907588688946444,
+          -1.678008120512904,
+          -1.4460591554773097,
+          0.0473924506545762,
+          -0.929529326226508,
+          1.223490295294202,
+          -1.5193816118786643,
+          0.8675921042058896,
+          -1.644286965151635,
+          -0.2643580288794163,
+          -1.1121643590895494,
+          0.4422896094062603,
+          -2.392634429847868,
+          -1.2489599102978046,
+          -1.990307015310318,
+          -1.2006533675619742,
+          -1.5948932984436746,
+          0.6479396365519108,
+          -0.6314697610061852,
+          0.38390900782442894,
+          -2.135662572967187,
+          -0.29985151543351585,
+          -2.289667418901229,
+          -1.488397879938545,
+          -0.3206915080548114,
+          0.44925378589906906,
+          -0.11263569475810609,
+          -2.6105981590039997,
+          -2.004791414915796,
+          0.6984721284342137,
+          -0.8105854324935485,
+          0.1706673547642208,
+          -1.731438546590479,
+          -1.6597472580018071,
+          -1.4434283396842216,
+          0.6388358217073773,
+          -0.726501562532017,
+          -1.3329838765803277,
+          -1.6196191662646398,
+          -1.3317072776048626,
+          -1.7955217581539773,
+          1.0710502179705053,
+          -0.008472720639431941,
+          0.6704163057708545,
+          -0.1940227685438901,
+          0.41239133378220894,
+          -1.4926711748496682,
+          0.19189025722135633,
+          -0.30858655317833317,
+          0.6244463696394371,
+          -0.5347112353033565,
+          -0.6656279723299601,
+          -1.4578809501157985,
+          0.8369488807896541,
+          -0.6669394066476062,
+          0.26752442136114674,
+          -2.074325049465766,
+          -1.5895291570175654,
+          -1.3869107307900008,
+          -1.0279926404127733,
+          -1.5367930871509623,
+          -1.4241433463577713,
+          -0.4325628538044761,
+          -2.1656693745973086,
+          -0.7007396853104919,
+          -1.488021843533275,
+          -0.4426112945421591,
+          -0.7117512134046902,
+          0.3023900192510336,
+          -1.922681640613808,
+          -1.6053885088144524,
+          1.1714410489093279,
+          0.15243219432719068,
+          -2.27207212857035,
+          0.08399423346640655,
+          0.24988157008717282,
+          -0.2770851225596245,
+          0.24573007900488664,
+          0.08464659516561723,
+          -2.2308837586040795,
+          -0.23380513889488874,
+          -1.4174738719369138,
+          -1.0324785109060808,
+          0.03980861639306221,
+          1.259497567829753,
+          -1.38286878088952,
+          -1.9831799994974615,
+          -1.6210486524927528,
+          -0.6111030735116979,
+          1.0872417405340715,
+          -1.678932210487474,
+          -1.7581773948377073,
+          1.1453353956977446,
+          -0.8860025940791937,
+          -0.1693635061290737,
+          0.11718091837283295,
+          0.3657404294331992,
+          -0.647396043964114,
+          -0.7377978819534479,
+          0.8695634517840338,
+          -0.4548621352726522,
+          -0.8886008625378798,
+          -0.6858671606055409,
+          -1.7693036187630855,
+          0.3729322381423139,
+          -0.8011176448088897,
+          -0.9940179988974699,
+          -0.6869781072425252,
+          0.05361962042585455,
+          -0.5949708237638837,
+          0.8892004003881557,
+          -1.2629729577028441,
+          -1.2756825831151652,
+          -1.3910257377772448,
+          -0.6363332753260131,
+          -2.2898477085882947,
+          -1.3739783196635396,
+          -0.6723973700008548,
+          -2.09440812640731,
+          -1.1168587550922366,
+          -0.7448003571414232,
+          -0.3407807756433221,
+          -1.2783388534115747,
+          -0.9631074654243429,
+          -0.5855189966546329,
+          -1.0215633083382916,
+          -1.4166789019272836,
+          -1.7314038442403743,
+          -0.6525084631531373,
+          -1.0587982807030591,
+          -1.591690552683085,
+          -2.2530049587805525,
+          -0.4273901671258513,
+          -0.11576561745574654,
+          -2.8329113013530334,
+          -1.5879732777414932,
+          -0.26784131873652794,
+          -0.3181150154063196,
+          -0.05389768994516808,
+          -0.7528382732939629,
+          -2.4696713074100822,
+          -0.6904865452712722,
+          -1.040325140403002,
+          -0.8224067351458313,
+          -0.022837651814169857,
+          -2.567634705686448,
+          -0.2923561388656294,
+          -0.6432129889694524,
+          -0.8027792292129511,
+          -0.7339805071170198,
+          -0.08326594177571756,
+          -0.29569718837500236,
+          -1.74028387912383,
+          -1.4377956646835195,
+          -1.0669398894855118,
+          -1.5472226098643707,
+          -1.160043071205794,
+          -1.7340352688273288,
+          -1.0488138914246548,
+          -2.0211832556399405,
+          -1.6603002565012894,
+          -2.26226532008488,
+          -0.1535966494955019,
+          -1.1146916901400263,
+          -1.672900493010355,
+          -1.8553073199674985,
+          -0.6594183198553776,
+          -0.9152128133055896,
+          -0.9163144698494179,
+          -0.6218258531331746,
+          -1.2764503347130187,
+          -1.4156749625116927,
+          -0.06827134563213,
+          -0.4035020421521929,
+          -0.8460156577956146,
+          -1.9808906202436478,
+          -1.1324939730802268,
+          -0.6400823816929994,
+          -0.38835264509889855,
+          -2.3637874521995785,
+          -0.8357668742785758,
+          -0.38022896696678754,
+          -1.780011982254414,
+          -0.8660500539062245,
+          -2.1511053224561354,
+          -0.9500377114202646,
+          -1.6083030896343338,
+          -1.7344558439311055,
+          -0.3989280960041429,
+          -0.5859852512614914,
+          -0.43703151763849934,
+          -1.0395681612945094,
+          -1.9708360728152077,
+          -1.374227093436276,
+          -1.7825652962635614,
+          -1.7772311587616918,
+          -1.228594203801045,
+          -1.3772094865373692,
+          -0.7261504077831051,
+          -2.897592138162125,
+          -1.613960614993788,
+          -0.771043980923396,
+          -0.39179836830119996,
+          -0.47192256965631085,
+          -0.6328766369974521,
+          -1.7351167087237078,
+          -0.727392429928195,
+          -1.3385058678275543,
+          -0.9079047641512541,
+          -0.7759983959114436,
+          -0.7302328045933721,
+          -1.4116113408632953,
+          -0.28222917278146764,
+          -1.1609792446896963,
+          -1.2484108834274945,
+          -0.9833383955731183,
+          -1.7275053523927655,
+          -0.6928056401853555,
+          -0.5102888229553595,
+          -0.8031198959463306,
+          -0.1435240397033497,
+          -0.4447631823072943,
+          -1.4901350028877607,
+          -1.6204395995449579,
+          -0.09265679139049121,
+          -1.7787471742213636,
+          -0.9090247576922529,
+          -0.5749154459151302,
+          -0.7021041436448112,
+          -0.5007598059225715,
+          -1.9156861637258995,
+          -0.45780077621574533,
+          -1.6254925381207515,
+          -0.6542244367640333,
+          -1.5001796129650702,
+          -2.711789048418576,
+          -1.064457500456729,
+          -1.0166755344897969,
+          -1.0458622298650175,
+          -0.6552284549896766,
+          -1.916039642064483,
+          -1.63970156489501,
+          -1.4478261491839457,
+          -2.2494706428365276,
+          -1.040254528124999,
+          -2.6753306210834467,
+          -0.038182326953844714,
+          -1.5418668025967628,
+          -0.45751145542504024,
+          -1.3387332293075804,
+          -0.0938006420608738,
+          -1.3873020441476525,
+          -1.630134271358524,
+          -1.128265878263195,
+          -2.3178598897097924,
+          -0.8671869739984477,
+          -0.2638302686659496,
+          -1.5202028781162067,
+          -0.8155703438150067,
+          -1.4070205159210158,
+          -0.6285273090982725,
+          -0.3907697452952047,
+          -0.31675289373856486,
+          -2.3673891349260447,
+          -1.4287999180802833,
+          -0.5392852944942016,
+          -0.9117774506165142,
+          -0.7618395288781974,
+          -0.6745634809721965,
+          -1.08748186659192,
+          -0.8642537170355477,
+          -0.15500866206395636,
+          -0.18097607904924184,
+          -0.840119224985699,
+          -1.4339370385063905,
+          -1.04618213218444,
+          -0.7352040632648333,
+          -1.4339879378648122,
+          -0.4307923488918649,
+          -1.0166473403516931,
+          -2.008575400416671,
+          -1.356816411825525,
+          -1.865907304049945,
+          -1.6142446085835922,
+          -0.5922522630684359,
+          -0.5699346798597865,
+          -0.7948297047090402,
+          -0.610493487785175,
+          -0.8351279232192195,
+          -0.08847736696110575,
+          -0.7573328883511639,
+          -0.8919628359764966,
+          -1.4882482228609004,
+          -0.058413919745261,
+          -0.38232799635699044,
+          -1.6775000609732702,
+          -0.5449128295764547,
+          -0.6469651973455275,
+          -0.269835121636017,
+          -1.6206481800334394,
+          -2.181020746185353,
+          -0.5078867808847698,
+          -1.104577979670202,
+          -0.06877174651692919,
+          -0.5629529726807219,
+          -1.0676465482060238,
+          -1.6959164486272957,
+          -2.233855346836992,
+          -1.085126249047951,
+          -1.4363880213274927,
+          -0.4781926726339144,
+          -1.060107841333861,
+          -1.6857018689519678,
+          -1.3211455854319316,
+          -0.809381977410963,
+          -1.1225625059942808,
+          -0.3178008479344989,
+          -1.6509988881109607,
+          -1.2653227072439024,
+          -0.7996985427536962,
+          -0.4422043610447417,
+          -0.23650513062919365,
+          -0.3848681365323672,
+          -0.9289893696991962,
+          -0.19077612105208352,
+          -2.01001043046777,
+          -1.2689430964309478,
+          -0.9467383826368754,
+          -0.4012369991617054,
+          -0.22565990406579506,
+          -1.2042306592285272,
+          -2.367120941750452,
+          -1.456374958508458,
+          -2.21621068908956,
+          -0.5808853840408358,
+          -1.9428897041561974,
+          -0.8141767491194862,
+          -1.3167095932023747,
+          -0.9013255200844719,
+          -2.155639856141748,
+          -1.1465700970148112,
+          -0.48460775811591905,
+          -2.0145689460761576,
+          -1.8778296582824565,
+          -1.1178135886082394,
+          -1.4564059078986173,
+          -0.8088696547498092,
+          -0.6703437674940158,
+          -1.003045719881091,
+          -2.2240719782517457,
+          -0.77204475154969,
+          -0.4317449217840884,
+          -1.5684915883699304,
+          -0.7812947971163738,
+          -2.4032248387773825,
+          -0.8183372121851695,
+          -0.16691072469797064,
+          -0.4068703548436584,
+          -0.37719630394751713,
+          -2.1430544201108903,
+          -0.31033645881850247,
+          -0.49912550531515465,
+          -1.1890893556292568,
+          -0.3958743190743763,
+          -1.659908056766429,
+          -1.5592271603029109,
+          -0.36310366473364986,
+          -2.375909937827411,
+          -1.0691069556657358,
+          -0.2215041410801265,
+          -1.5749648797454745,
+          -0.4976316881917029,
+          -1.066763644246043,
+          -0.30005188899637125,
+          -0.8869979393356024,
+          -2.385503604247318,
+          -0.20279774133166573,
+          -0.6941904784871191,
+          -1.0717488225589156,
+          -1.9956598356501276,
+          -1.593330423935094,
+          -0.958173067640862,
+          -1.5068796207106199,
+          -0.33403854011037715,
+          -1.3752771952617682,
+          -1.9341385226470758,
+          -0.6166935925973002,
+          -0.7901063275275291,
+          -2.0411529389943266,
+          -1.2378229594122805,
+          -0.3351030067783556,
+          -1.4691760174211077,
+          -0.41130395883415205,
+          -1.5837690329915124,
+          -0.967169069416503,
+          -0.8960319875759521,
+          -0.9346963773647616,
+          -1.8150548274976377,
+          -1.785131103278347,
+          -2.2660529561068543,
+          -1.4047252209841385,
+          -1.0160307818526564,
+          -0.3306279277197235,
+          -0.8454366868896788,
+          -1.603028945083036,
+          -0.498891714742282,
+          -1.5689319443809326,
+          -0.2431940231503974,
+          -1.3361936876781837,
+          -1.8090186586112456,
+          -1.7970819803430995,
+          -0.73721777139881,
+          -0.8933107931926426,
+          -1.5635037829637837,
+          -1.6294497855553984,
+          -1.7123668622773502,
+          -0.51362680854681,
+          -1.3330679041374072,
+          -0.6723662214366567,
+          -2.3947817119869867,
+          -0.7628479086240505,
+          -1.6761577435263282,
+          -0.4482224579097539,
+          -1.5394990191348907,
+          -1.4332720915250063,
+          -0.9462686586389677,
+          -0.5645173336031968,
+          -2.1192943821031465,
+          -0.6430038621040947,
+          -2.1384114810177124,
+          -0.9505939677637575,
+          -0.11378700180077894,
+          -0.12090994814644629,
+          -1.0469794336620546,
+          -0.36252879946043326,
+          -1.091935040202051,
+          -0.8941053509672305,
+          -0.22552868071336385,
+          -0.46012895917732755,
+          -2.529130204111852,
+          -0.10328647617366193,
+          -0.5595047553810667,
+          -1.0331464977956877,
+          -0.09258417122534712,
+          -0.9692692248318818,
+          -0.07587645944413601,
+          -1.1556684326566302,
+          -0.4954747090163335,
+          -1.148994018072574,
+          -0.6793952073200729,
+          -1.214251858139989,
+          -0.28982695102101275,
+          -2.5293579913860045,
+          -0.8746545537495747,
+          -1.5188552887793172,
+          -0.760869983042844,
+          -0.814246148962984,
+          -1.962141259161392,
+          -1.9668884008814667,
+          -1.9501619649548947,
+          -0.7123825994326598,
+          -2.3779961986586384,
+          -1.747973523501354,
+          -1.0534850806637956,
+          -0.24925627582151222,
+          -1.5895596780722485,
+          -0.9757132426589115,
+          -1.1089819735532929,
+          -1.1049705059483494,
+          -1.0582581361710846,
+          -2.328655148048243,
+          -0.7322327438722547,
+          -0.8804593650348459,
+          -1.5594694216580218,
+          -0.328020842305606,
+          -0.38623375770845514,
+          -1.3262674146524172,
+          -1.0298082465198273,
+          -0.4757335948023157,
+          -0.745559957459496,
+          -0.27690165627183616,
+          -0.0015705391186712214,
+          -1.6689814688097142,
+          -1.297264415413917,
+          -0.9652064791180794,
+          -0.26109662724286664,
+          -0.7048485219593519,
+          -1.0170108974359462,
+          -0.528925579040561,
+          -1.4562026663581302,
+          -1.0846882784625242,
+          -1.0724836572290763,
+          -2.523082071052654,
+          -2.21910869760082,
+          -1.0966614445254987,
+          -1.147774617885177,
+          -0.575460069342731,
+          -1.506172636681709,
+          -0.2579882433587254,
+          -1.3304240842245152,
+          -1.0963788413968365,
+          -1.6125807460143131,
+          -0.2335748542090882,
+          -0.11272558689215839,
+          -0.9434433199004064,
+          -1.750664747588089,
+          -0.6858738209192186,
+          -1.3930492983649927,
+          -1.2856615493665011,
+          -2.1496156826864867,
+          -2.8183920538943434,
+          -0.4975902427475781,
+          -1.3598949634211381,
+          -1.3076718386508914,
+          -1.9415477874910416,
+          -0.6532014896978318,
+          -1.3094269236247333,
+          -1.9339283222061283,
+          -2.2707672201375004,
+          -0.37953345980100917,
+          -1.1911525249049157,
+          -2.1111406814550824,
+          -1.0017360954308887,
+          -0.5023059327963273,
+          -0.6449186164368048,
+          -0.8175874340534637,
+          -0.9448352454847087,
+          -0.5445830664914153,
+          -3.6768176412716507,
+          -1.3906618272330018,
+          -0.39299319954451006,
+          -1.8249713865283665,
+          -0.6416152697029831,
+          -1.3022956626063797,
+          -0.2852174398582469,
+          -0.6806622199186119,
+          -0.017370714790050035,
+          -0.6143567560241463,
+          -1.4657231246161766,
+          -0.9946622198984069,
+          -0.8627929791292888,
+          -1.2451991689623148,
+          -1.4767961715890021,
+          -1.552615359987235,
+          -1.7151734640405765,
+          -1.4298187142684275,
+          -0.6816359032310385,
+          -1.4624640493030725,
+          -2.074138395802314,
+          -1.808565514568428,
+          -1.5468505710305633,
+          -0.570891332351866,
+          -0.8242181941527023,
+          -1.5318544254415523,
+          -0.21946940198910503,
+          -0.6467320019563921,
+          -0.5405505849964329,
+          -0.3776601166539373,
+          -0.6498482653311332,
+          -0.8110818757737158,
+          -3.377665006697846,
+          -1.0715039759392,
+          -1.0549905582085854,
+          -1.173212066002695,
+          -1.2893496046742419,
+          -0.5560605103282734,
+          -0.566265664725884,
+          -0.30636260657639314,
+          -1.5950879320794629,
+          -0.6110923166117905,
+          -1.1636987691462977,
+          -1.7020400471493589,
+          -1.898435214721712,
+          -1.5631868708472867,
+          -0.727105530220087,
+          -1.6023329268614959,
+          -1.4872336410689844,
+          -0.05944859265285274,
+          -1.3484592055808682,
+          -1.1946578149048586,
+          -2.5404489378598853,
+          -0.9103737034440729,
+          -1.3673178959292642,
+          -2.0906213781265155,
+          -1.15934645075783,
+          -0.25028943691250516,
+          -1.2869238873271271,
+          -1.1621819767878072
          ],
          "z": [
-          8.94331552312122,
-          9.523096489879185,
-          -12.275893851266435,
-          8.765913618862639,
-          11.804613817912056,
-          -9.414322352166998,
-          10.909483792390683,
-          9.53047688736749,
-          -10.986489451476244,
-          10.63464093332597,
-          -9.053647155793602,
-          10.241009971753805,
-          -9.58797340026773,
-          7.069509355821445,
-          10.937075944072669,
-          9.846595079616284,
-          -9.87349462759296,
-          -9.038912462799878,
-          -9.532465274849965,
-          -12.674941516620514,
-          11.70080214029543,
-          10.103028881133593,
-          -11.577797071712274,
-          10.041811849111516,
-          10.571784214606264,
-          10.696964584403407,
-          -9.560617276567246,
-          -9.823087109376944,
-          11.311897445387912,
-          -10.206022331312917,
-          9.607171508818725,
-          -9.211251194778454,
-          9.898176863657358,
-          11.408818250070482,
-          -9.05088388784114,
-          10.671449579015922,
-          -10.12116603400233,
-          -11.51959968342901,
-          9.161352285252702,
-          11.157293161477364,
-          9.882945075126841,
-          10.13704665286775,
-          -11.51059431099919,
-          11.32599501267184,
-          12.00258294502351,
-          -10.484835225698134,
-          10.868554473838522,
-          9.780487490546284,
-          10.402075666865592,
-          8.830755576279465,
-          8.77577434078867,
-          -10.400346803754466,
-          9.470080582948274,
-          -8.279874227883496,
-          -9.662657695235545,
-          11.074189792422434,
-          8.508284366825952,
-          8.506747556071462,
-          10.686831918707512,
-          10.217574727221352,
-          -10.744625949530379,
-          -8.948936604068162,
-          6.5401438625970725,
-          9.54052139282687,
-          -12.274983250298213,
-          -9.970620290575477,
-          9.964099018207111,
-          8.108086383122007,
-          10.653489953011643,
-          9.30223862052334,
-          10.406048962070276,
-          10.818170029418122,
-          -9.948946492173679,
-          -10.60758269135307,
-          8.880670947652415,
-          8.95495729907062,
-          7.820409354691055,
-          9.263206398398914,
-          9.422841399273777,
-          -9.052083273115699,
-          9.652020485330471,
-          -9.949689427913578,
-          8.502903691973094,
-          8.836545814956224,
-          -10.77596930590852,
-          9.64595323283588,
-          -9.120073449501692,
-          9.975296209480343,
-          -10.299382990870368,
-          8.94432123292247,
-          -8.631833155341372,
-          8.64711471621846,
-          8.2761606608607,
-          11.188444795704946,
-          9.00750282715656,
-          9.670487381491208,
-          11.832530509995046,
-          -11.48744694979629,
-          11.50055702042146,
-          11.468862256974191,
-          11.787827005451268,
-          8.708816102130232,
-          10.553582246553997,
-          7.986922452971796,
-          -10.00705785780577,
-          -10.42307040460881,
-          10.605555584777296,
-          8.974530565435424,
-          8.872202354732838,
-          -10.710901500785884,
-          12.316346954889948,
-          -11.681241345422988,
-          -9.633551908331956,
-          -11.236363187364958,
-          10.260845462175942,
-          -9.624430144478714,
-          11.112488672371766,
-          -10.061796623298118,
-          12.01056286736449,
-          -10.312526427017824,
-          10.073401542399845,
-          12.26903349433325,
-          -10.049605748974397,
-          -11.017719871064953,
-          -11.450500786272983,
-          -9.723624505322901,
-          -8.49013585904805,
-          10.712536972579032,
-          11.5066000040618,
-          -10.564915449069169,
-          11.711181262851463,
-          11.93130410983529,
-          -8.829631689726279,
-          -9.257146703083617,
-          -8.650139623912226,
-          -10.909936629891414,
-          9.874785853734236,
-          -10.641134898197107,
-          -8.753361875099024,
-          11.528251866417495,
-          -9.40386788312709,
-          11.421519864459745,
-          -10.814752936461497,
-          11.307646027534942,
-          -9.583209559004596,
-          -9.68527831890345,
-          -11.658733390026418,
-          8.831517620573084,
-          8.851855997206066,
-          11.937626721039411,
-          11.32621102069042,
-          10.463085852950208,
-          10.3531493896488,
-          8.72821397723159,
-          -8.754994157308982,
-          10.244129805098906,
-          -10.17539749034906,
-          9.898107408532724,
-          10.560916395442767,
-          -11.25565969880019,
-          9.75593966844745,
-          8.169420210426875,
-          -10.399150272480572,
-          -9.736472156737918,
-          8.771755493542724,
-          10.281958685472603,
-          10.255115883222766,
-          9.482056173780066,
-          -11.426616377780029,
-          8.2742519049901,
-          9.077315676136891,
-          9.415154001413235,
-          -11.477592704612938,
-          -9.22358201187751,
-          -10.38661005207329,
-          9.372819380909734,
-          9.291586041427456,
-          -10.334887345266512,
-          -11.36381059475421,
-          8.330632938566703,
-          -9.75535666940556,
-          9.707690607824318,
-          8.003935077487888,
-          -11.927698601332112,
-          -10.072687702841593,
-          -10.928220293784669,
-          -10.286776038007863,
-          -8.400797089720921,
-          -10.725716808746977,
-          9.61081484224701,
-          8.068745694405038,
-          -10.50342225834901,
-          -9.857428386929199,
-          9.270062619964216,
-          -11.120880220002647,
-          10.012167870929034,
-          9.984120085961234,
-          -8.980480035303268,
-          9.049499105035666,
-          9.796548875530142,
-          -8.741945691570871,
-          10.30495431514674,
-          11.425346693654273,
-          8.148718941139517,
-          9.17835764772655,
-          11.115675979549792,
-          10.293579553181992,
-          -9.731267690700415,
-          -10.109191061536045,
-          9.494599580855288,
-          -12.048575575940296,
-          7.497004679227432,
-          10.887888028309828,
-          -10.457876927283214,
-          -8.67345889546513,
-          9.514669220180727,
-          9.90144683507994,
-          10.41596839642526,
-          8.180124865237392,
-          -10.116548254348697,
-          11.114425252993119,
-          9.753811998163899,
-          -8.87374018105728,
-          -10.403176807767622,
-          9.907600480807712,
-          -8.987318897207091,
-          -8.32296329209135,
-          9.832695256419125,
-          10.099073702272573,
-          9.298239301414261,
-          -9.615730066624165,
-          8.89368359642756,
-          -10.077010814274136,
-          10.509787843544801,
-          -9.6569051021712,
-          -11.170194904116325,
-          10.222098819072626,
-          9.607757015606104,
-          -10.6051289331644,
-          -10.203694577883795,
-          -10.121655175359988,
-          -10.10648716605972,
-          -9.702752358646089,
-          -10.468316280170972,
-          -9.493879890862255,
-          -12.013584600324563,
-          9.60756897208743,
-          10.007159002925354,
-          -10.531987779177507,
-          -11.936235749831695,
-          -8.419151858798303,
-          12.018580221934306,
-          8.606704725194456,
-          9.32273345592568,
-          11.048280701218275,
-          9.497473533829522,
-          9.301763021250876,
-          -9.661160292851424,
-          11.857241176712584,
-          -8.36805499375065,
-          9.817632317355407,
-          10.580841425686087,
-          -11.786545124916158,
-          -10.585315283290432,
-          -8.169153523002155,
-          -11.069574843097602,
-          -9.859914703532478,
-          -10.009193833571677,
-          -8.737262231863363,
-          -9.056180718010875,
-          -10.100346355463351,
-          10.758238782798728,
-          8.26990937253322,
-          9.679080372591962,
-          10.087328137668184,
-          8.643385742050476,
-          12.812718858945424,
-          9.036881684115851,
-          -8.665885259026052,
-          -8.710215630893325,
-          11.683204755476359,
-          9.296758450513671,
-          9.026638071379722,
-          -9.947794708383684,
-          12.362957792087082,
-          10.6493486266285,
-          10.373607220856632,
-          -9.101199880321907,
-          -9.416611047441098,
-          10.472666690680324,
-          7.1342738031197115,
-          10.888168070299887,
-          11.039993229661254,
-          -7.111718818839238,
-          -8.958071222397772,
-          -9.615441060854408,
-          9.891358287349382,
-          9.663874251186812,
-          7.25320162215125,
-          10.982233287432607,
-          10.907097031539678,
-          -7.838306514849897,
-          -9.626086698128614,
-          -9.518057194633235,
-          9.73577751874201,
-          8.831285225957812,
-          -9.921592724670155,
-          -10.76592872043283,
-          7.625803591743908,
-          -9.480508824723163,
-          -10.396922343420385,
-          10.660331449451979,
-          8.341899134241832,
-          -10.351400220757778,
-          9.370831279747913,
-          8.171631060958852,
-          -12.709808018494318,
-          -9.840634684000463,
-          -10.706323766958002,
-          12.752535301858021,
-          -10.437831930018485,
-          -10.91161141159904,
-          -11.603013027496983,
-          11.022077267492785,
-          -9.74848026402913,
-          13.410865349087617,
-          -10.104182164927218,
-          9.73843344291772,
-          -8.855621823765839,
-          -10.605543752283973,
-          9.683557321743773,
-          -8.151998096328352,
-          -8.628936291397581,
-          9.574171331053522,
-          8.028966815547548,
-          -9.883675011553407,
-          10.71904895425834,
-          -8.59533171053323,
-          10.374307886970092,
-          -10.718052153981638,
-          -9.472847914367122,
-          -9.781793165610836,
-          -9.67848073322308,
-          10.7929616625227,
-          -10.143074895836081,
-          11.183310319250085,
-          12.72783409531076,
-          -9.205894223168908,
-          -10.3990609840419,
-          10.148770698545283,
-          -9.210786953828277,
-          -7.903229188613997,
-          -9.600578599908225,
-          -9.638161869183133,
-          10.277842289777864,
-          13.171717884853958,
-          9.83785585965624,
-          9.679712865190616,
-          -8.315468908907214,
-          9.343919086024695,
-          10.427375047996831,
-          11.092454972418862,
-          10.715477881471404,
-          9.567969580623808,
-          8.567340944277035,
-          10.005922309746026,
-          9.777669691578275,
-          -9.928080737686134,
-          10.364418595730905,
-          11.61458151061772,
-          -11.146059189560102,
-          8.349311131875071,
-          8.705799417153898,
-          9.803061256786064,
-          10.063697681126659,
-          9.595182297067314,
-          -10.360724651264766,
-          -10.652133130159894,
-          10.562001649371217,
-          9.60502591453834,
-          9.087777391092056,
-          10.478678847811244,
-          11.182941969456452,
-          10.242215279158604,
-          9.396159914376003,
-          10.408397869873186,
-          -10.094473751419944,
-          -9.845361317133312,
-          7.522051798516806,
-          10.270884720727812,
-          -11.190958803487952,
-          -9.61286250971924,
-          11.211230951652748,
-          -8.79885438566247,
-          11.13791970942575,
-          -10.392055602641637,
-          -9.816038441405542,
-          12.181954259332963,
-          -9.525681848206325,
-          -10.628409773988936,
-          10.269815077821365,
-          8.737941640718342,
-          9.39558543901498,
-          -9.048812483488998,
-          9.039784522641728,
-          -11.251503149438896,
-          10.484932248335092,
-          -10.018858607573222,
-          9.561569059619629,
-          -8.717279059447478,
-          11.139328852427845,
-          8.558551714743338,
-          9.922350951592396,
-          9.492084829189416,
-          -11.492846147316351,
-          -8.775187248779032,
-          -10.605045742937369,
-          -10.424109775299385,
-          10.714315669542092,
-          10.529452197373761,
-          -10.30190891872925,
-          8.480640869049171,
-          -8.724921108578664,
-          -10.397021314951516,
-          -10.030466112380674,
-          -10.20047702121937,
-          -9.258344649917161,
-          10.371719938734815,
-          10.008848157027238,
-          7.863708086222305,
-          -9.096266360090405,
-          9.443893734366702,
-          9.826026726714318,
-          10.26893683609871,
-          9.67849692892569,
-          -11.16257004502906,
-          -9.052368231679083,
-          -12.219948760803197,
-          11.199227468660194,
-          -10.245005099256685,
-          -11.143575279874174,
-          -9.498864827663665,
-          -10.741964744566433,
-          -11.574506689497666,
-          10.496707758938909,
-          -9.522537728972297,
-          8.478171016539324,
-          10.24942091931841,
-          -10.842589656726467,
-          9.52278687725854,
-          -9.651257295287762,
-          10.860990436620783,
-          11.335800419659575,
-          10.240186543250402,
-          8.778958735434934,
-          -8.706295332598444,
-          10.578777953577804,
-          9.528141586472426,
-          9.820074077801575,
-          12.44527868748855,
-          -11.75518655147372,
-          -9.779467199740875,
-          -11.926397867893385,
-          -10.350738988363748,
-          -8.071082562644403,
-          -9.032892293213923,
-          10.124856208538871,
-          -10.214410569718654,
-          10.458211905345431,
-          -8.863317475042454,
-          8.189443130955317,
-          9.983623260541687,
-          -9.796533771006807,
-          11.03622772630738,
-          -11.23338300577908,
-          -8.707751497900428,
-          -8.689459047579211,
-          -9.747773415897983,
-          8.81475193546344,
-          9.566428491988521,
-          -9.545812669941663,
-          -9.414293480524382,
-          10.817249132398814,
-          -10.26224964479714,
-          -9.313495206703983,
-          10.61541888768178,
-          -8.984307076819471,
-          9.13840991376492,
-          -10.550149549307477,
-          -10.012933806502868,
-          10.555140091374852,
-          9.846679074802527,
-          11.165656487455607,
-          11.3981613541564,
-          -8.430791803348555,
-          -9.492579770078816,
-          8.947401717076389,
-          8.677664214718337,
-          -9.548786729691384,
-          -9.299408183998336,
-          7.578739320019457,
-          7.76166370681613,
-          8.733895573901556,
-          9.403408701990575,
-          10.308205603714818,
-          -8.057060056799466,
-          -10.832044649201693,
-          11.3033792642271,
-          -9.831490541612679,
-          -10.133423261881338,
-          10.794975665706797,
-          9.758759110866318,
-          10.743148790736845,
-          8.582895113516926,
-          12.441140168316515,
-          9.279775453808554,
-          9.687911243824324,
-          12.636195860486158,
-          9.770987437114238,
-          10.66789075738577,
-          8.746228085469845,
-          -11.653414457023848,
-          10.7684898445429,
-          -8.977580879208105,
-          7.897778718555565,
-          11.634536202192809,
-          -9.297091727297802,
-          9.779337354749424,
-          -9.5335005527324,
-          9.423207102563364,
-          -11.053781507071768,
-          -9.793017567632686,
-          -10.726963940295425,
-          -11.359674130162917,
-          9.781703932052542,
-          -9.844345712358173,
-          -11.083293440262485,
-          -10.210521835700446,
-          10.57173070509829,
-          -9.457265321809766,
-          -9.734946660702478,
-          10.941475613693,
-          9.669175354113866,
-          11.136780965240302,
-          -11.855046012573029,
-          -12.138672277438932,
-          9.735589309680808,
-          -10.633017044905026,
-          10.690469984461346,
-          -9.789316954036947,
-          -10.177014560487478,
-          -12.709030475274213,
-          9.844608112236847,
-          10.738877316023189,
-          -8.701493940315833,
-          11.333407357708833,
-          -9.561489433449545,
-          11.319829442327794,
-          10.89066471064544,
-          -10.560589583903173,
-          -8.962022590871477,
-          10.527429934547618,
-          -8.721621865940653,
-          10.092896148223396,
-          10.12112936015578,
-          10.523691933041906,
-          9.460878668857772,
-          10.307256374677511,
-          9.434577423239025,
-          -11.128900909378181,
-          10.701679361394053,
-          -11.441080885816667,
-          10.634573297539834,
-          -9.733834718144625,
-          -10.020462393180575,
-          10.454112976131347,
-          9.1396279970102,
-          -9.090929884117289,
-          11.965097005065868,
-          11.194511823583541,
-          9.47907002138308,
-          -10.296695521686221,
-          -9.096594890440024,
-          -10.029322495276178,
-          -10.270038100103996,
-          10.20358240412668,
-          -12.965635037667436,
-          -11.864330547076124,
-          -10.706096831485095,
-          -8.950043256133279,
-          10.456957598918352,
-          -10.744454326393495,
-          -9.732683995574579,
-          -10.909452483942696,
-          -10.01865555447579,
-          11.9163829795062,
-          9.451497541893815,
-          -12.123440966229305,
-          10.035783854001544,
-          -11.017442333974163,
-          10.15213891505529,
-          -10.662962246977198,
-          9.766132952738415,
-          10.434577419945946,
-          9.216116409330862,
-          7.518987966079624,
-          10.40048927152875,
-          10.134491504411779,
-          -11.666611768905186,
-          8.143609964095907,
-          11.473220523204056,
-          -9.299046597441679,
-          11.156787764659057,
-          -11.078087341356632,
-          10.585174125394927,
-          -10.849428525446527,
-          9.853387791659967,
-          10.638778875649868,
-          -8.291336802089457,
-          -9.38069203962188,
-          -10.814319582955086,
-          -9.760425664265698,
-          9.184020766955838,
-          8.711119105258867,
-          9.542664718516818,
-          9.887306537399143,
-          10.276444891346424,
-          8.794450289107317,
-          -10.160440245740414,
-          -10.021810341625546,
-          9.693932921805903,
-          -8.652849002447294,
-          9.784638828441626,
-          -10.30460924377669,
-          8.117044845623125,
-          9.344659448779106,
-          7.287929575110729,
-          9.193996782533397,
-          -11.82007799711235,
-          9.944034094132135,
-          -8.963456962971525,
-          8.030153525314788,
-          9.03595222185446,
-          -7.983970494824044,
-          10.108392966726285,
-          -9.900566999655362,
-          -10.996779702859943,
-          9.334504548434303,
-          -10.492056144487766,
-          9.652905503918033,
-          10.86106517688077,
-          11.927824889701856,
-          -10.109859977392649,
-          9.164203522271283,
-          10.088047472605767,
-          9.427081767285276,
-          10.06940388753287,
-          10.403766571575552,
-          -11.133842692037435,
-          -12.941314349613913,
-          -8.638546393925106,
-          -8.875608402190576,
-          9.536849329762571,
-          -9.84398289767041,
-          11.021637582525688,
-          -11.066874928029616
+          -1.3308728943909816,
+          -1.3978290374471616,
+          0.9058277917418485,
+          -0.7835560365501797,
+          -1.638508276472761,
+          -2.381444788298725,
+          -0.16014036490497485,
+          2.5843556758002935,
+          2.92134906571411,
+          -2.9193617109836882,
+          -0.635717082103509,
+          1.4958167972003054,
+          -3.151903718793503,
+          1.753608241941274,
+          2.6022991003479543,
+          -2.0512396810821385,
+          -2.385596298655501,
+          2.9173705446658245,
+          0.11797969041750367,
+          -4.011553420249218,
+          -1.3909477086404887,
+          -0.14623540594858175,
+          -0.43505191784041974,
+          0.6182168436433022,
+          -0.20170373281277598,
+          -2.587068599052625,
+          -4.027433528843942,
+          0.9219760432809023,
+          3.4201263906851835,
+          1.4744012339291581,
+          1.5702828561399658,
+          1.4137224975786662,
+          0.779191146708377,
+          2.2317249580271916,
+          -1.9987669466458864,
+          2.1549811965569683,
+          -1.8581132234476874,
+          -1.9309565808308435,
+          0.5126703236780621,
+          -0.10549162101255405,
+          1.8112846760683698,
+          2.7834766134240727,
+          1.1933257664317125,
+          0.7947032126866889,
+          -0.22382635501123804,
+          3.185787953700376,
+          2.149984564796375,
+          -1.7874805243428216,
+          -0.07535222825132015,
+          -0.5893045531565595,
+          -3.290252317886072,
+          -3.770117295318795,
+          3.052294579237488,
+          -3.9829780369132126,
+          -0.5980194768582501,
+          2.150771235378759,
+          0.6348061270946594,
+          -2.1179451649622543,
+          2.0435437313337834,
+          0.571330726772235,
+          -3.405675573403811,
+          -2.913166795226302,
+          -2.952883721223616,
+          0.4608290461127744,
+          -3.880598812921856,
+          1.3114752265610568,
+          -2.9222180588244813,
+          -1.6228161595936705,
+          0.40389204554395164,
+          -0.09913836019091926,
+          3.0348959332337158,
+          2.484879124010676,
+          -1.556872174279993,
+          1.0273626017818502,
+          -4.045202773119473,
+          1.6443468905443819,
+          -1.7073663163999204,
+          -1.6738520486510495,
+          0.14312346605260906,
+          2.4694309486222057,
+          -2.7990226985401803,
+          -1.307246708829143,
+          -4.035546861646047,
+          0.6662582692679839,
+          -3.909684481258036,
+          3.228945177824232,
+          -3.960677124509596,
+          2.5993667390960162,
+          1.0378844160373015,
+          -0.6114355468225483,
+          -1.6790914559062253,
+          -0.7081385993617677,
+          -0.5010766402188325,
+          -0.7021852659670333,
+          2.1168432617548945,
+          3.436687266774415,
+          2.021728696038525,
+          -1.9623834481046312,
+          -1.562846168463913,
+          1.5333080812846864,
+          -1.554148267290698,
+          -3.996490087449834,
+          -3.1153577944964996,
+          -2.0928047359098616,
+          2.951136532072451,
+          -3.6197134783558096,
+          -3.4744669594778554,
+          -1.8128761454805882,
+          -3.228488648689951,
+          -0.9293395635464572,
+          -1.7564969242738981,
+          -2.443352928959446,
+          2.1488535589010977,
+          3.343942077334775,
+          -0.6323534341043562,
+          -2.7844041889960773,
+          -2.3898085679910235,
+          -4.0092494138257715,
+          0.04665642462057207,
+          1.7584837374917912,
+          -3.332600273007269,
+          -1.411643182804236,
+          -3.3289571687383193,
+          -3.110084109584699,
+          0.27592873628543213,
+          -3.2170907263375694,
+          -3.658682672770989,
+          1.303594021474554,
+          -0.9240987124770879,
+          -0.9465950867104844,
+          0.9548005657014658,
+          -1.4122988289537486,
+          1.4659895411785557,
+          -0.4758576639811847,
+          -3.532493316424648,
+          0.6794236819928843,
+          2.4433003597517633,
+          1.854612091323684,
+          -3.7644194073616672,
+          3.408670816340134,
+          -1.7748821691868075,
+          -3.700479176499896,
+          2.4572058265140733,
+          2.420895958024147,
+          -0.1376800631527133,
+          -0.1736261233150973,
+          1.4045957220597973,
+          1.6336763072643015,
+          -3.4622497612142333,
+          3.185583118751956,
+          3.1012859832179114,
+          -3.24815406997804,
+          -1.448703126047727,
+          1.0869506682355787,
+          -2.543561712369433,
+          2.1222078942465243,
+          0.27735694389579457,
+          -2.9881542441965756,
+          2.900679695900938,
+          -2.349851748050046,
+          -0.8417096099878201,
+          -2.4949950020005067,
+          -0.5311554220562975,
+          1.8290487367446122,
+          -3.3745235577035295,
+          -1.9764361749356096,
+          -2.409891546925938,
+          2.9098535010580484,
+          0.9774978608703151,
+          1.189302284745425,
+          -3.5069799506960595,
+          -0.47107306022388284,
+          1.219288208673647,
+          -2.925983358958362,
+          -3.2321139323818495,
+          -1.010878170187608,
+          -2.8437656453999813,
+          0.33005786991609565,
+          -2.2753050226829235,
+          1.4637878939077584,
+          1.0129035732510312,
+          -2.6913222448763627,
+          0.15087551824128287,
+          -1.4524548837783686,
+          2.318330984452343,
+          3.1365487546058155,
+          -0.6234224274633426,
+          0.5307827502268001,
+          -3.9976654206188638,
+          3.1028853833746517,
+          2.4417800134367518,
+          2.0490866871442215,
+          -2.1354571144277275,
+          -0.8561813470973627,
+          -2.655300734496935,
+          0.4686882791106104,
+          0.7679044929937664,
+          -3.9653323123868236,
+          2.0458128102085844,
+          -1.2058476040759865,
+          2.695273101934327,
+          0.12224324981660839,
+          -1.485062012955547,
+          2.2842292596101883,
+          2.109266496496689,
+          -3.0362677389220973,
+          0.3817123913340481,
+          -1.9679153787526866,
+          -1.1691108917882738,
+          -0.4182840855015515,
+          -0.46006447173822185,
+          1.5774827193345624,
+          -1.8741267282942196,
+          -0.2988694186299172,
+          -4.032653992498172,
+          -2.996900446378884,
+          0.6761266581010288,
+          0.10336784818386402,
+          -1.3609706193259918,
+          0.14189069256816111,
+          -1.5089219399158695,
+          -0.7853047367449073,
+          0.5382906618559211,
+          2.9296425666903723,
+          3.204655422483218,
+          -2.5865662292486897,
+          -3.763531648268306,
+          -2.6629247177199886,
+          2.379244380868183,
+          2.1186363967451127,
+          -4.038390851730447,
+          -2.6831386993237594,
+          1.980350703449763,
+          -3.3716597569150526,
+          -1.8119184318894836,
+          -2.370048101458001,
+          2.194269403910141,
+          2.894508837918785,
+          2.553948435914581,
+          2.392227415343804,
+          -1.4822223589077281,
+          2.6706855303142376,
+          -3.9265884575887533,
+          1.7351914286245291,
+          1.316523292653362,
+          -0.6886436812456234,
+          -0.6830801361120629,
+          -1.4893896109216587,
+          -0.9912916012647823,
+          -3.343283648901828,
+          1.429874206123534,
+          -3.053285774546344,
+          2.98971267009206,
+          2.413458944691798,
+          1.2009429998454824,
+          -2.9869360607985493,
+          -1.1855619156072854,
+          -2.2914744701526617,
+          3.0458994777728154,
+          2.2068089590086375,
+          -1.3826040689512014,
+          0.9832108074756665,
+          2.590565397843534,
+          3.019622137033261,
+          -3.4174685971810694,
+          -1.3625493524091903,
+          -2.0016672267412585,
+          -1.6320429437211708,
+          0.8234021570066696,
+          -1.824354854111693,
+          -0.8009295823491969,
+          -3.8313073426254394,
+          0.8835865940110796,
+          -0.6922609871231278,
+          3.4093975719461707,
+          2.858061691945089,
+          -4.033885520997818,
+          0.26574558684751626,
+          1.499661146123172,
+          -3.3576335308660927,
+          0.17292145416509008,
+          -0.8846053666673654,
+          1.1013843416987372,
+          3.3280435777488284,
+          -2.627964690404336,
+          0.6169092123673368,
+          -3.7299798610929713,
+          -0.6819673488963289,
+          1.9316441146020304,
+          -3.466197708225967,
+          2.1212318661430087,
+          -3.595373546409338,
+          -4.023936045520818,
+          -3.2466397767094395,
+          -2.4426084473416356,
+          -3.2175881339596866,
+          2.074291616461723,
+          2.1848642634913924,
+          1.7933208969503598,
+          3.166661854690486,
+          -1.2247526827223845,
+          3.3326924182777784,
+          1.7658928279928743,
+          -2.652255731937477,
+          2.3204289605438744,
+          2.957197012303901,
+          2.390347375154434,
+          -2.3026331948392436,
+          2.6583389131560633,
+          -1.5912470356884825,
+          0.41962090924926265,
+          -2.4047625711187735,
+          -2.502534669812752,
+          0.8388678692572942,
+          -2.3750084561557,
+          3.111138790576905,
+          1.8966872242962136,
+          2.1809077214895183,
+          2.5790811799472904,
+          -1.5941981402396355,
+          -0.15016325832416078,
+          -0.04199898151030812,
+          1.510495362262061,
+          3.248780860624196,
+          2.786228794203696,
+          1.8413144752642312,
+          -2.264990637333332,
+          3.1630036213008905,
+          1.3774991997529096,
+          1.9804799052764022,
+          -1.3017712549979512,
+          0.7860988879559843,
+          -1.5029996704377844,
+          -3.135845116646357,
+          1.9310081917879902,
+          -2.674421266494264,
+          1.676805830048747,
+          -1.059751394284259,
+          2.4558971572151966,
+          -2.7300585236815236,
+          1.2217008150769733,
+          3.1792531472959062,
+          -2.198980675994764,
+          1.9399440864462072,
+          -1.0737344390161097,
+          -0.125179938332995,
+          -1.7506496132032776,
+          2.65753120386183,
+          1.151878325732807,
+          3.2015489922002844,
+          -2.674609413492374,
+          -2.910847561163383,
+          -2.3970322707247185,
+          2.4450507868779896,
+          -1.2494897569008891,
+          0.8714755922015618,
+          2.7090722727623513,
+          -0.0702512892620959,
+          -0.6887657592780538,
+          -3.5843485969875912,
+          -0.5848016273164185,
+          0.60189613591076,
+          -1.522834986129912,
+          1.59421680466963,
+          -1.7575225331055027,
+          -1.0136177530851205,
+          3.176084756394678,
+          1.9498052273441688,
+          -1.3079507758837363,
+          0.33822758728662006,
+          -0.30527787946720153,
+          -3.016368910961304,
+          3.0410197932608476,
+          -1.3442284732952592,
+          -1.835759025567019,
+          2.7021048333249134,
+          0.7978266139577714,
+          -0.616465908236032,
+          1.0601013048185912,
+          -2.643625435321824,
+          -2.693104540880242,
+          3.029567581475905,
+          -0.9685382891211032,
+          1.927824989253791,
+          2.9683522059612866,
+          -1.3160212917627474,
+          -2.79814988267343,
+          3.1688484183527246,
+          0.09301444289302019,
+          1.4797824105125912,
+          -3.7700316177508415,
+          3.240599458228881,
+          0.6248562438481171,
+          2.749109724954611,
+          2.252579309568823,
+          -1.494163470200827,
+          1.6565560037774931,
+          0.8964862681337848,
+          3.1303975696367132,
+          -0.8659998968950151,
+          0.6917520844466489,
+          1.6281238495580075,
+          0.013104799883704388,
+          -1.1470462309661862,
+          -0.6235823311349402,
+          1.38847581198426,
+          -3.604460286992391,
+          -2.602193677324654,
+          1.7370031970448254,
+          -0.4197015882803736,
+          -0.12224445026163133,
+          0.6962207704425554,
+          0.6821169572962198,
+          -1.6634769466290034,
+          -2.63895092809984,
+          0.5953250611489578,
+          3.3963884075148236,
+          -3.681814779160536,
+          0.23689063686986422,
+          -1.45348583786234,
+          0.027266904450783613,
+          0.8995125854542847,
+          1.2825025397110368,
+          -3.030864602770751,
+          3.008114407764144,
+          -0.41228086284032983,
+          1.8465438706988913,
+          -2.3201797808682776,
+          -2.540499623990965,
+          -0.9238552728160023,
+          -1.8698628724219022,
+          3.0282019915708247,
+          0.32006994495890506,
+          1.6577636446996378,
+          -2.6724923248990144,
+          -4.014890894603149,
+          -3.9976277177588466,
+          0.7614236951370046,
+          2.016888594240343,
+          2.693006985382305,
+          -2.644535234569789,
+          2.6980671998870394,
+          -3.646162622066656,
+          3.404769705787653,
+          -1.5851444235021783,
+          -2.8898811528645325,
+          1.9420331242535536,
+          -2.542654318389206,
+          2.8207852126810566,
+          3.0515442287152243,
+          -0.053846521263556824,
+          1.7026190678503852,
+          -3.4326290221613203,
+          0.34143288251870274,
+          -0.3607336365781628,
+          -0.727744816841414,
+          0.2266371277925483,
+          1.7169938330970558,
+          -2.017840164590865,
+          -0.7361440350992918,
+          -3.356716007046517,
+          -1.8023615470188616,
+          2.646280325940448,
+          -0.7283904702831498,
+          -0.3263762219719517,
+          -3.4123527993218943,
+          1.752051182826083,
+          1.2781619785954925,
+          -3.9378816093765607,
+          0.7665069556810291,
+          -1.379681178702338,
+          1.141368773286863,
+          3.4400923872037037,
+          0.8685657811197194,
+          0.3529030730746481,
+          -3.333475580019622,
+          -3.302561472590156,
+          -0.014172631896188115,
+          -2.1700189920273925,
+          -2.938999409437992,
+          0.31263116153017734,
+          1.5433753649872948,
+          0.815878248082953,
+          2.9675113566291893,
+          3.0275092882869865,
+          2.4689683909896445,
+          0.42817205211611054,
+          3.062231380610454,
+          -2.9112456001303264,
+          -0.02769423663401671,
+          0.7015804986241099,
+          0.7080999517837379,
+          -3.5011696911118393,
+          0.9751189332693224,
+          2.9901638441066822,
+          -1.3602261831295568,
+          1.2584008989736555,
+          1.0277135019514159,
+          2.330532053909492,
+          -1.6617769638131228,
+          0.9528363325019225,
+          0.4783653194304831,
+          -3.6546500698325253,
+          -0.02336082255659111,
+          -3.220875285575298,
+          -3.1776560727882157,
+          0.46245603096098087,
+          2.5809246864164814,
+          2.3143321286974086,
+          0.06191811234531386,
+          -0.8938332449109718,
+          -3.6450239062524465,
+          -0.26126338109318414,
+          -2.251800297421608,
+          -3.7346044962637754,
+          -3.4364370024825894,
+          0.27889878596049833,
+          1.4737199015249205,
+          -0.5205273689636329,
+          0.31929999608479065,
+          1.8884149037753462,
+          3.078675961307141,
+          -1.5451904193561297,
+          0.4401723103457247,
+          0.07239104916196659,
+          -0.9078501748302386,
+          -1.0671664256140625,
+          -1.5035816393081363,
+          -0.5393653100924483,
+          1.630239898436984,
+          -3.554958357123634,
+          2.250866214868557,
+          3.160549242447641,
+          -1.379189286118927,
+          2.8838797264961267,
+          0.061385058131976145,
+          -3.905544762836859,
+          1.3618850872102177,
+          -2.4648675787777155,
+          3.2402111351338707,
+          1.0937269021810616,
+          -2.872215867918762,
+          -1.2619387681826773,
+          -0.9965595429869825,
+          2.136765375856865,
+          -0.934218074000003,
+          3.0357916720337803,
+          3.3013668002580783,
+          -3.88066357738478,
+          -3.245169659496396,
+          3.2347897524725475,
+          -2.3166108127535963,
+          -3.0559612680723465,
+          -3.2421847336573855,
+          -3.1519239677831523,
+          2.0181236529007665,
+          -0.1567120389990584,
+          3.365648598550502,
+          -0.5171072590216648,
+          1.3952476351912582,
+          3.266306941633694,
+          -0.34744709686539155,
+          0.3105942399910102,
+          0.5954376901927576,
+          2.6386037549572787,
+          -3.285471766533152,
+          -0.8060426454045433,
+          -2.2168733442067836,
+          3.0064338691425396,
+          2.356986785191112,
+          2.430976349704487,
+          -1.2837059037744996,
+          -3.711256600339241,
+          1.8521292044589543,
+          -0.7211242045343313,
+          -2.2632755238240723,
+          1.7945250952975558,
+          1.09195890447383,
+          2.1361845202885252,
+          3.2080883114757475,
+          -1.772375372945866,
+          -3.72523469255834,
+          -1.9890525896421813,
+          2.536377032676091,
+          2.709816377355076,
+          2.7630255744409693,
+          -1.3121438211574543,
+          -0.5398439562874002,
+          0.8827202648624253,
+          3.162789098066593,
+          0.2207778686943671,
+          2.8408543525035936,
+          -0.9181846454895699,
+          0.625343118028324,
+          -1.5021114820259562,
+          -2.2549719358689115,
+          1.4841963157876856,
+          3.234246511914635,
+          -3.1182840113699966,
+          -0.05909679099096943,
+          1.208842902761205,
+          1.1955715952951467,
+          -3.360094817408598,
+          0.21063299480712772,
+          0.9103869712796708,
+          0.2800203154281533,
+          -1.3367493893046216,
+          2.2247153089617004,
+          1.4619936604405561,
+          1.7241268341656317,
+          -2.0451870316804777,
+          2.091802033831695,
+          1.4015745876477617,
+          -3.0974406346865644,
+          1.377228431481715,
+          0.19728016624784495,
+          2.9851073909769044,
+          -1.6671418423079736,
+          -0.5990724899339499,
+          -0.0857323580660454,
+          0.4337092795127129,
+          -0.4062905229899809,
+          -0.5386647327999183,
+          3.3330676326280004,
+          -0.8356718019540779,
+          1.407348441042842,
+          -2.6751767386074548,
+          -1.3208957146700175,
+          -0.7688353558862171,
+          2.153089620536658,
+          -1.2982983703093862,
+          -1.010375788498937,
+          2.4687387072625535,
+          2.637386720183831,
+          -1.4053864670133573,
+          -2.304469768218203,
+          -2.4264840282672537,
+          1.560877922363396,
+          -2.947535637318172,
+          -0.9933955917539721,
+          2.338890707264099,
+          -2.579473743623957,
+          -3.2606515566466494,
+          0.45430808713610826,
+          2.057613672603164,
+          2.948822083552564,
+          2.483234180917437,
+          -2.5130845668705093,
+          1.6494675881027288,
+          -3.665322983215556,
+          1.7506389081131521,
+          1.788081802959729,
+          0.5352237509933415,
+          -0.2954053053439667,
+          1.1436847016254639,
+          -2.8601612948361237,
+          2.3808004047278333,
+          2.63733142263382,
+          -0.5211858766138735,
+          -2.8599622179986994,
+          -2.327831722805202,
+          2.2926428358702298,
+          -0.5786528689962025,
+          0.006308965693399671,
+          -3.1402343380024096,
+          -3.904477476760035
          ]
         }
        ],
@@ -33607,20 +33577,20 @@
        "<div>\n",
        "        \n",
        "        \n",
-       "            <div id=\"b10b7e3e-1cd7-4e06-82ac-3ccf2ad05e12\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div>\n",
+       "            <div id=\"3a198b7d-2a96-4c5b-8994-75e0458904d9\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div>\n",
        "            <script type=\"text/javascript\">\n",
        "                require([\"plotly\"], function(Plotly) {\n",
        "                    window.PLOTLYENV=window.PLOTLYENV || {};\n",
        "                    \n",
-       "                if (document.getElementById(\"b10b7e3e-1cd7-4e06-82ac-3ccf2ad05e12\")) {\n",
+       "                if (document.getElementById(\"3a198b7d-2a96-4c5b-8994-75e0458904d9\")) {\n",
        "                    Plotly.newPlot(\n",
-       "                        'b10b7e3e-1cd7-4e06-82ac-3ccf2ad05e12',\n",
-       "                        [{\"hoverinfo\": \"text\", \"legendgroup\": \"Class 0\", \"marker\": {\"color\": \"rgb(31, 119, 180)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 0\", \"scene\": \"scene\", \"showlegend\": true, \"text\": [\"example_2\", \"example_15\", \"example_23\", \"example_29\", \"example_30\", \"example_32\", \"example_43\", \"example_44\", \"example_45\", \"example_49\", \"example_51\", \"example_56\", \"example_58\", \"example_59\", \"example_63\", \"example_65\", \"example_67\", \"example_69\", \"example_70\", \"example_71\", \"example_72\", \"example_73\", \"example_76\", \"example_78\", \"example_81\", \"example_84\", \"example_99\", \"example_100\", \"example_101\", \"example_107\", \"example_109\", \"example_111\", \"example_115\", \"example_118\", \"example_120\", \"example_123\", \"example_124\", \"example_128\", \"example_135\", \"example_141\", \"example_148\", \"example_162\", \"example_163\", \"example_168\", \"example_170\", \"example_173\", \"example_175\", \"example_182\", \"example_184\", \"example_185\", \"example_188\", \"example_192\", \"example_194\", \"example_196\", \"example_198\", \"example_199\", \"example_203\", \"example_208\", \"example_210\", \"example_211\", \"example_212\", \"example_218\", \"example_220\", \"example_226\", \"example_231\", \"example_233\", \"example_236\", \"example_237\", \"example_239\", \"example_240\", \"example_244\", \"example_247\", \"example_250\", \"example_251\", \"example_254\", \"example_256\", \"example_259\", \"example_261\", \"example_265\", \"example_266\", \"example_270\", \"example_271\", \"example_272\", \"example_273\", \"example_274\", \"example_275\", \"example_277\", \"example_281\", \"example_286\", \"example_289\", \"example_292\", \"example_297\", \"example_298\", \"example_300\", \"example_303\", \"example_305\", \"example_306\", \"example_307\", \"example_309\", \"example_310\", \"example_311\", \"example_316\", \"example_322\", \"example_324\", \"example_331\", \"example_332\", \"example_334\", \"example_339\", \"example_342\", \"example_344\", \"example_350\", \"example_351\", \"example_352\", \"example_353\", \"example_354\", \"example_358\", \"example_361\", \"example_363\", \"example_365\", \"example_366\", \"example_367\", \"example_368\", \"example_371\", \"example_374\", \"example_376\", \"example_380\", \"example_381\", \"example_382\", \"example_383\", \"example_393\", \"example_394\", \"example_398\", \"example_405\", \"example_408\", \"example_411\", \"example_413\", \"example_414\", \"example_415\", \"example_416\", \"example_420\", \"example_422\", \"example_425\", \"example_426\", \"example_427\", \"example_429\", \"example_432\", \"example_433\", \"example_436\", \"example_438\", \"example_439\", \"example_445\", \"example_450\", \"example_453\", \"example_462\", \"example_464\", \"example_465\", \"example_471\", \"example_478\", \"example_479\", \"example_480\", \"example_481\", \"example_482\", \"example_483\", \"example_485\", \"example_486\", \"example_493\", \"example_494\", \"example_495\", \"example_497\", \"example_505\", \"example_506\", \"example_507\", \"example_513\", \"example_514\", \"example_518\", \"example_519\", \"example_522\", \"example_526\", \"example_527\", \"example_529\", \"example_530\", \"example_532\", \"example_534\", \"example_535\", \"example_538\", \"example_543\", \"example_544\", \"example_548\", \"example_551\", \"example_552\", \"example_554\", \"example_555\", \"example_557\", \"example_561\", \"example_567\", \"example_570\", \"example_572\", \"example_575\", \"example_576\", \"example_579\", \"example_581\", \"example_582\", \"example_583\", \"example_584\", \"example_585\", \"example_588\", \"example_590\", \"example_591\", \"example_593\", \"example_596\", \"example_598\", \"example_599\", \"example_602\", \"example_607\", \"example_609\", \"example_610\", \"example_611\", \"example_613\", \"example_614\", \"example_617\", \"example_618\", \"example_619\", \"example_620\", \"example_628\", \"example_630\", \"example_631\", \"example_637\", \"example_650\", \"example_651\", \"example_654\", \"example_670\", \"example_674\", \"example_678\", \"example_679\", \"example_680\", \"example_692\", \"example_693\", \"example_694\", \"example_701\", \"example_704\", \"example_705\", \"example_706\", \"example_707\", \"example_710\", \"example_712\", \"example_715\", \"example_720\", \"example_721\", \"example_727\", \"example_730\", \"example_733\", \"example_736\", \"example_741\", \"example_744\", \"example_745\", \"example_746\", \"example_752\", \"example_755\", \"example_757\", \"example_759\", \"example_764\", \"example_765\", \"example_767\", \"example_771\", \"example_774\", \"example_777\", \"example_780\", \"example_781\", \"example_785\", \"example_787\", \"example_788\", \"example_792\", \"example_802\", \"example_806\", \"example_807\", \"example_808\", \"example_812\", \"example_813\", \"example_817\", \"example_818\", \"example_819\", \"example_824\", \"example_829\", \"example_832\", \"example_834\", \"example_838\", \"example_843\", \"example_845\", \"example_849\", \"example_855\", \"example_861\", \"example_865\", \"example_873\", \"example_879\", \"example_886\", \"example_887\", \"example_892\", \"example_900\", \"example_904\", \"example_905\", \"example_906\", \"example_907\", \"example_909\", \"example_914\", \"example_915\", \"example_923\", \"example_925\", \"example_926\", \"example_930\", \"example_931\", \"example_936\", \"example_937\", \"example_939\", \"example_942\", \"example_943\", \"example_948\", \"example_949\", \"example_952\", \"example_962\", \"example_963\", \"example_964\", \"example_965\", \"example_966\", \"example_976\", \"example_978\", \"example_979\", \"example_984\", \"example_985\", \"example_988\", \"example_990\", \"example_993\", \"example_994\", \"example_1004\", \"example_1010\", \"example_1013\", \"example_1018\", \"example_1022\", \"example_1027\", \"example_1029\", \"example_1033\", \"example_1036\", \"example_1040\", \"example_1043\", \"example_1050\", \"example_1052\", \"example_1053\", \"example_1054\", \"example_1061\", \"example_1063\", \"example_1067\", \"example_1073\", \"example_1075\", \"example_1083\", \"example_1084\", \"example_1090\", \"example_1100\", \"example_1102\", \"example_1103\", \"example_1105\", \"example_1106\", \"example_1107\", \"example_1114\", \"example_1117\", \"example_1120\", \"example_1125\", \"example_1133\", \"example_1134\", \"example_1138\", \"example_1144\", \"example_1146\", \"example_1157\", \"example_1159\", \"example_1160\", \"example_1163\", \"example_1164\", \"example_1165\", \"example_1170\", \"example_1173\", \"example_1177\", \"example_1179\", \"example_1181\", \"example_1187\", \"example_1189\", \"example_1192\", \"example_1198\", \"example_1202\", \"example_1204\", \"example_1211\", \"example_1220\", \"example_1222\", \"example_1223\", \"example_1225\", \"example_1228\", \"example_1229\", \"example_1231\", \"example_1233\", \"example_1235\", \"example_1239\", \"example_1240\", \"example_1242\", \"example_1245\", \"example_1247\", \"example_1249\", \"example_1255\", \"example_1258\", \"example_1263\", \"example_1265\", \"example_1270\", \"example_1271\", \"example_1272\", \"example_1273\", \"example_1274\", \"example_1280\", \"example_1281\", \"example_1284\", \"example_1287\", \"example_1288\", \"example_1289\", \"example_1298\", \"example_1301\", \"example_1304\", \"example_1305\", \"example_1307\", \"example_1309\", \"example_1314\", \"example_1316\", \"example_1317\", \"example_1318\", \"example_1319\", \"example_1320\", \"example_1322\", \"example_1324\", \"example_1326\", \"example_1331\", \"example_1335\", \"example_1339\", \"example_1343\", \"example_1344\", \"example_1345\", \"example_1347\", \"example_1355\", \"example_1357\", \"example_1360\", \"example_1362\", \"example_1364\", \"example_1376\", \"example_1379\", \"example_1380\", \"example_1381\", \"example_1383\", \"example_1384\", \"example_1386\", \"example_1387\", \"example_1389\", \"example_1391\", \"example_1392\", \"example_1393\", \"example_1395\", \"example_1403\", \"example_1405\", \"example_1412\", \"example_1414\", \"example_1417\", \"example_1420\", \"example_1423\", \"example_1424\", \"example_1425\", \"example_1428\", \"example_1429\", \"example_1431\", \"example_1432\", \"example_1433\", \"example_1436\", \"example_1440\", \"example_1441\", \"example_1447\", \"example_1448\", \"example_1452\", \"example_1453\", \"example_1454\", \"example_1458\", \"example_1464\", \"example_1469\", \"example_1471\", \"example_1472\", \"example_1474\", \"example_1481\", \"example_1483\", \"example_1490\", \"example_1491\", \"example_1493\", \"example_1498\", \"example_1502\", \"example_1503\", \"example_1509\", \"example_1510\", \"example_1511\", \"example_1516\", \"example_1525\", \"example_1526\", \"example_1530\", \"example_1531\", \"example_1537\", \"example_1542\", \"example_1546\", \"example_1547\", \"example_1548\", \"example_1551\", \"example_1552\", \"example_1553\", \"example_1554\", \"example_1556\", \"example_1558\", \"example_1560\", \"example_1564\", \"example_1565\", \"example_1568\", \"example_1571\", \"example_1575\", \"example_1582\", \"example_1586\", \"example_1588\", \"example_1591\", \"example_1592\", \"example_1596\", \"example_1601\", \"example_1602\", \"example_1605\", \"example_1606\", \"example_1607\", \"example_1608\", \"example_1610\", \"example_1611\", \"example_1612\", \"example_1613\", \"example_1615\", \"example_1616\", \"example_1621\", \"example_1626\", \"example_1632\", \"example_1635\", \"example_1644\", \"example_1645\", \"example_1646\", \"example_1649\", \"example_1650\", \"example_1651\", \"example_1652\", \"example_1656\", \"example_1657\", \"example_1658\", \"example_1664\", \"example_1667\", \"example_1671\", \"example_1672\", \"example_1674\", \"example_1675\", \"example_1676\", \"example_1677\", \"example_1683\", \"example_1686\", \"example_1689\", \"example_1694\", \"example_1696\", \"example_1703\", \"example_1708\", \"example_1711\", \"example_1712\", \"example_1717\", \"example_1719\", \"example_1726\", \"example_1727\", \"example_1729\", \"example_1734\", \"example_1735\", \"example_1738\", \"example_1739\", \"example_1743\", \"example_1745\", \"example_1749\", \"example_1752\", \"example_1754\", \"example_1755\", \"example_1759\", \"example_1761\", \"example_1763\", \"example_1764\", \"example_1765\", \"example_1767\", \"example_1770\", \"example_1773\", \"example_1775\", \"example_1778\", \"example_1779\", \"example_1782\", \"example_1783\", \"example_1786\", \"example_1787\", \"example_1791\", \"example_1801\", \"example_1808\", \"example_1810\", \"example_1811\", \"example_1813\", \"example_1814\", \"example_1816\", \"example_1817\", \"example_1823\", \"example_1827\", \"example_1831\", \"example_1844\", \"example_1851\", \"example_1857\", \"example_1860\", \"example_1863\", \"example_1864\", \"example_1865\", \"example_1867\", \"example_1871\", \"example_1872\", \"example_1874\", \"example_1882\", \"example_1888\", \"example_1891\", \"example_1903\", \"example_1904\", \"example_1907\", \"example_1909\", \"example_1910\", \"example_1911\", \"example_1912\", \"example_1914\", \"example_1917\", \"example_1918\", \"example_1920\", \"example_1922\", \"example_1925\", \"example_1928\", \"example_1929\", \"example_1930\", \"example_1932\", \"example_1935\", \"example_1936\", \"example_1937\", \"example_1939\", \"example_1941\", \"example_1948\", \"example_1952\", \"example_1955\", \"example_1957\", \"example_1959\", \"example_1960\", \"example_1963\", \"example_1972\", \"example_1974\", \"example_1975\", \"example_1976\", \"example_1978\", \"example_1979\", \"example_1984\", \"example_1985\", \"example_1987\", \"example_1988\", \"example_1989\", \"example_1990\", \"example_1993\"], \"type\": \"scatter3d\", \"x\": [10.231839644180377, 11.278277197343936, 10.736893420777783, 7.200885447279211, -10.36066896794959, 9.039706634199472, 12.081079015848742, 7.648874635131564, 9.838650368849104, 7.650892323397967, 12.023945491442426, -7.432414784860294, 10.220981551665245, 12.729869516211537, -9.313258173420953, 8.98228032085301, 9.345908334698349, 10.480000158195653, 9.96264777251509, 11.135758256790425, 10.626782570538687, 8.117142312475034, 10.1504504286891, 10.010747063073012, 9.432460174514395, 9.85161300503472, -11.669782812292425, -10.51683321486486, 10.03097364055511, 7.90594463812596, 9.028417629207238, -10.493662289763593, -10.345923452851485, 10.061880878031378, -11.315309346302701, 9.723402486553997, 9.637688165267074, -11.878233412877726, 9.554612094920026, 10.548800618083261, 11.057642996015144, 10.65469158439352, -9.693404278887694, 11.054855594239157, 11.193368869056844, 10.6768328804649, 9.215417002443617, 10.960120501295389, 8.743597147744728, 10.960985533985303, -10.482718787998296, 9.444297867992793, 8.842106741767576, -10.53517653715152, 10.460849514678303, 8.527240609968285, 8.36170672751995, 9.816208391948226, 8.24929142135063, 11.188396910561524, 8.886074453525842, 11.447352187556302, 10.032026729994234, 9.82905385984265, 12.128942455270929, -10.079758952710664, 8.34206804021043, -8.475123058768544, -9.704629578014622, 7.654200456688658, 12.131607288514953, 10.537882632758391, 9.692334552052376, 7.517217911349009, 10.893169199471219, -11.184065800178239, 11.55883460728909, 10.68357754638305, 10.273499332354726, 9.420343951293818, -11.521740343464472, 7.975361472006302, 10.134632605610596, 9.033503644590885, 10.918720743141739, 11.225918644011806, 10.293489819398838, 8.566047390168144, 11.609190661714386, -9.597496203357148, 13.5011785296652, -9.490737500510178, 8.492162645620821, 10.218263390548588, -10.082289369684505, 10.445696971800283, 9.32171845739357, -9.746470796399535, 12.563396118360885, 9.903378421386947, 9.906425300369035, -8.54060418106686, 8.462901010825638, 9.250518195141915, 11.231096720288392, 10.583511843600505, 9.017523833458961, 11.325058013687208, 7.083790932174818, -7.3781440909444935, 9.697654230265854, 9.863405705966832, -10.711512821875003, -9.817013415428749, 12.326088747890221, 7.827870729281437, 10.710908011964115, 12.439126966954639, 8.56591375705231, 12.111177361305499, -9.349687978856645, 8.210956069351273, 8.400339220557054, 10.613931585262357, 10.87768248581527, 9.878643529872921, 9.547087469772302, 9.228420846437576, -8.091365772984481, 10.982603599166833, 11.461473556891338, 8.992968722069476, 9.111494821275617, 7.61543885245529, 9.44689529270364, 11.365660647559162, 10.190925688061723, 11.996031768095003, -12.267719431286055, 6.731706294955798, 10.219813118569324, 8.775134745148536, 8.40520211403969, -8.992334527365278, -9.290167440322538, -8.135263337355116, 9.402218058939017, 8.691628706883227, -10.522260628199176, 11.28511380106549, 9.684200695390366, 9.880050380001611, 11.716915490948905, 11.731184490457945, 8.798205878068066, 8.601173766148325, 8.090512237207838, 9.846069483588932, 10.993598481177223, 10.94447028797506, 8.59432801598168, -10.555898295084987, 10.969653259457365, 10.40326867093771, -10.765560238920111, 9.322254301201355, 10.682848670135074, 9.014406076581476, 10.56911220645289, 12.50947126647441, 9.194405730951436, -10.846527291829325, 14.484352443014409, 11.954736786911077, 13.21311510533656, 7.964051613023239, 11.197527120978576, 9.728694304369066, 7.696928877995811, 10.57028072780124, 10.700785336147673, 10.527571883026086, -9.95130684491289, 12.430659943269045, 7.297197057943716, 9.157548743159738, 8.341522506943422, 11.841907898388959, 11.8162499462439, 9.03774390161534, 9.181065877655762, 10.978448771227718, 9.281561357161337, 9.487637056262356, 11.310936085617405, 9.963718761046957, 11.092261194079983, 10.017549293726406, 9.04596861496883, 9.768634485328013, 10.481689635269117, 10.794347355576285, -10.484638135908627, 11.310862885341464, 10.259538251857565, 9.277393442304678, -9.151618886248688, 9.507746131837138, -11.769213225998268, 9.573713112870278, 7.00045719887185, -8.963323408279328, 9.386016257958333, 11.223838672075525, 10.60326746935472, 8.545537555551972, 11.821320855801872, 9.70607628556054, 10.593048376104225, 8.106437530769721, 9.901610492046316, 9.199490429235237, 11.035455209698272, -11.581629118279906, 9.117908506022944, 11.602151378381796, 8.267437283143334, 10.691585101810793, 9.245166200164949, 9.912689837518107, 12.425741635189372, 7.111023607836367, 8.461810107623016, 8.482060324747952, 9.419245156476363, 8.933228927837948, 9.212392685729448, 13.0651675388091, 10.708739589158503, -8.984728711112083, -9.418069439534245, 8.601409675131183, -8.631817430173756, 10.57873515039987, 10.381340608718943, -9.605655135345952, 10.69003435116721, 8.961329062135905, 11.72778956633333, 9.540134044894902, 11.386170618879977, 8.986618127125546, 9.985053593570452, -7.827979505768157, -10.474408799125522, -9.171030271613336, 10.22513138616292, -11.555929320514053, 7.993501788899514, 11.398917606013356, 8.870447584872895, 10.14494493831295, 10.057407870248266, -10.683209073516046, 7.82002691144903, 8.038454573208787, 9.213100297260286, 11.747746777752216, 10.836108148895903, 9.175552576647787, 9.078770230071713, -8.247041303407869, -7.769124789110302, -10.587057643281362, 9.312721652269712, -10.412306223107505, 11.550898647963313, 9.583300952637572, 10.810304277418897, 9.891043471778346, -8.324165670455606, 10.810025242480439, 9.428960628575583, -9.345665319678577, 11.268609164285953, -10.609829142120994, 8.17987072768793, 6.324331051473564, 11.106291580951876, 8.218660802144411, -9.892449729701454, 11.354084038124292, 10.572600966901634, 10.247195269816059, 8.463227155853696, -9.470342938144645, 10.060917581915875, 8.550936398789535, -10.828156639655612, -11.576215500410074, 8.654941904697214, -12.098880220927002, 9.180351152529598, 10.934690786919099, 10.413696291389186, 11.511172308703733, 8.397314995750662, -11.809697234479332, 12.0553167789592, 9.337855183492573, -11.164416561111416, 9.841672254061931, 8.765535917394569, 10.87039471636234, 8.442863690960117, 8.501856974773343, 7.622609412936017, 10.973686247352282, -9.55458863381903, 9.060482436939234, 9.728717033603967, 10.065133983906584, 9.821050591386953, 10.828588718421777, 10.731241602198685, 10.929306766894186, -7.175064659824226, 9.603580527017375, -13.919113382971876, -7.511088062432838, 11.229369283803507, -10.129543361150052, 11.250782303834423, 10.91553588636177, 10.616956989156927, 9.916853948138725, 10.734912784494517, 11.461950819250301, -9.295017470466963, 8.370497905899848, 10.19900758651262, 8.21320215397931, 10.828262573801997, -10.279878840536158, -11.748317749213554, 8.525192849638223, 9.050922320695843, 10.52640151733509, -9.693624404326588, 9.201128003867332, 8.450327700771876, -10.123187649464263, 11.367329296431688, 7.7351930933577915, 10.744179105437874, 11.422635056494633, 10.893814745629468, 10.806512000988512, 8.407419385138063, 9.14133297453438, 10.148204609397782, 11.148629108199291, -7.184382161226715, 11.168487726845157, -11.119117252983616, 10.947288077728093, 10.155861098499095, 9.96713163239682, 9.190426423235888, -7.787417246222593, 8.902525891141215, 10.097792029807394, 11.299464718887346, -11.399838917144526, 10.691198455506205, 10.983015358701337, 11.510444273797996, 7.645800354033765, -9.247307452339877, 11.349617051564085, 8.346986377079354, 6.32136500355085, 9.76356116227832, 10.54072824054066, 11.072564761689273, 9.707965993040858, -9.492292305742975, 8.902157452203262, 9.99850754673109, 9.392514100901854, 9.686674341827473, 9.548530309403786, 8.646047180519858, -9.675576871915744, 10.814732833375913, 8.872630135169121, 9.733546296303523, 6.590430529913796, 10.799041043001854, 8.339368987023176, 8.678806930049003, 11.4078352239715, 9.212633518980859, 10.80164377402647, 8.943050926639124, 10.861391824201375, 11.161537397571085, -9.446937324139967, 10.288223690419088, -9.163542488351412, -9.838889024610388, 8.331339404743947, 8.024909837549455, 8.215173812333045, 8.295668424295215, 10.634016280253554, -9.091678763928655, 7.84961120985159, 10.525066945865559, 9.955214147888233, 10.0854393600447, 10.022721334901279, -8.102250748681914, 8.854657804208706, 8.149197482592015, 8.859199905823374, -11.873823034545124, 10.354989460405475, 11.233131395065342, 8.507240315057674, 11.39928057572402, 11.296496705494233, 9.913481361845767, -10.925449816195824, 11.72127653375719, 9.112341368443913, 7.809786055991088, 12.237113229464013, 9.367620950001731, 10.241007692715677, 10.38618366952411, 10.371868830941835, 8.516121269010767, -8.72908608300338, 10.999180089108506, 11.115214924002391, 9.161124649892779, 9.084165502346044, 10.324247532486607, 8.226065569035216, 9.776585216748606, 8.95205654176132, 11.107876056444827, 10.344023629486232, 10.035499709879513, 10.324512256529847, 9.949464652198149, 10.13018838295208, 11.591503600503742, -8.71960598440871, 9.877626988258276, 9.120056051490497, 8.661859324541442, 10.139877976139308, 9.990298392890502, 11.279646844670554, -11.321061079495708, 9.283505016203978, 8.523075828503305, 12.716479939190464, 10.281587523145149, 9.532591073035162, 9.74819592951051, 11.918181587645671, 10.621450659398386, 10.731690636718797, 9.804518285094739, 9.93085610183782, -13.418103191651344, -9.859926297363785, 10.723762009790914, 9.195712572286773, -10.338221153387213, 11.313740635571294, 11.216176032396406, 9.986143061304748, 12.522599931736544, 9.434114802614053, 10.966728291358233, 9.54182542180542, 13.62445125973522, 11.456679666193414, 8.871997336971631, 9.626480195634405, 11.891096271413774, -8.530844574240351, -9.182164607802132, 10.68849323513716, 9.184794781184651, 11.557009868279138, -9.507603348402617, 9.632572350169868, 7.856250836449734, -9.27041020636675, 10.646955648334758, 10.045598181853148, 10.709803774811185, 11.871218084727179, 10.231734247003912, 11.311927021487366, -8.8517204871407, 8.49786368108077, 8.019950574037061, 11.278167909598052, 7.950934884903353, -12.26983115549755, 9.78471682181419, 9.678496184801084, 11.413126851090635, 11.05317260212729, -10.08148555013811, 8.701899016347314, -8.930434343014655, 11.43289437451886, 12.99710450147506, 10.791993504898931, 11.08725116589041, 9.12154998917386, 8.304384154821337, -10.16328986016861, 6.8211409690698375, 11.44078113942978, 9.654826697152249, 10.307588174229135, 11.958783565516883, 11.443561039941633, 10.540482504128164, 10.842367725577377, 8.42815894311048, 9.418811877633821, 9.855792637740706, 9.383448693824896, 9.234900702254748, 11.081967664840956, 9.724070011019855, 10.553730601139568, 9.20452263714062, -10.471124738161095, 10.997655573390908, 9.461676246921222, 10.187478373400745, 10.863241054176656, 11.150093701227137, 10.813003074193183, 12.473910329184525, 10.71226862988943, 8.207862199751814, 11.39666811374786, -10.891924990868265, 11.266894339003892, 8.977628022277436, 11.469177484525181, -9.669180313498815, 7.684427620564623, 9.273096948051489, -10.808470680758338, 9.24288673722029, 6.520932080203706, 10.44220916944381, 10.093945424409226, -9.20578830332265, -10.888887864028652, 9.494141919934242, 10.83928685790211, 9.613732571775401, -10.50467555079971, 9.50675908000802, 8.915428687496293, 10.100657868870817, -9.934286102745661, -9.580222053729944, 8.620445272252503, -8.509415220641152, 11.152689263507671, -11.609027675539195, 10.78361111846877, 9.879082269007924, 10.060572522529592, -9.942777770358239, -10.01694497000204, 9.244034282898069, -8.60861361322624, 9.956236336431418, 10.067815373352667, 9.340097256656781, 9.812568564842739, 10.735547468363766, 10.67217949274209, 9.100686729596196, 10.321821673831204, -9.833757305022326, 10.803741098306604, 8.63865275492058, 10.14625312971613, 11.115337317515678, 10.50337151995932, 8.42482718202234, 9.4179014930008, -11.124939868890795, -9.08801601128153, 10.523751788906205, 9.244636626705939, 8.932585580139172, 9.654205898882095, 9.307833704769667, 11.086468480950286, 8.969027392419559, 10.833743174674598, 10.68347166789783, 9.973514143683296, 10.402822749826539, 9.856314588429674, -11.096018617880855, 12.41878006731299, 9.15483419727317, 8.778727117446332, 10.907281277525605, 9.939433768730115, 10.725164375719233, 9.740491237603838, 11.791375574103867, -8.786494735061007, 9.8517442072171, 7.970193999880162, 12.02856385751879, 10.672161847944928, -11.567640203145055, 8.975372784838743, -9.246196873127886, -11.093948272432478, -10.168323645259047, -10.91000339243284, -9.248929843933556, 9.945894189701777, 6.609493925932785, 9.628615548159035, 9.378456667244139, -12.131679637713557, 8.610379957824435, -11.44642259285634, 10.841787554580472, -10.88929253578112, 11.167674789669746, 10.82354194619694, 12.154680070279735, 11.759750637395687, 8.904095343947967, 9.47129470771411, 9.052238967130844, 7.391145945709324, -10.957109324605382, 9.164756187347683, -8.098356349645213, 9.689680623665403, -9.305439672647623, 11.07317955893622], \"y\": [-9.520767774904979, -10.73174039467776, -10.439634267549685, -7.7575729589510996, 9.840235240352069, -8.830155384596969, 8.586097248445162, -7.731128673357379, -10.208616514386959, -7.749823042656567, -11.508520969825955, 10.823338953643141, -10.130218449176775, -11.963750656222961, 10.732158644828209, -8.87398377936064, 9.243089538552317, -10.70698123340281, -9.953233790279416, -10.70062431350712, -10.40193693554807, -8.293686693115582, -9.742215587461967, -10.717003283743422, 10.986163284758117, 9.650652874328454, 9.778063216164725, 8.922262111730381, 8.938667615375559, -7.906009502182643, -8.646194276843993, 10.450306356963985, 9.844707989078449, -10.161158195336451, 9.05638638272806, 10.793386003357707, -10.097944065139284, 8.88816168783858, -9.488968951801997, -10.712329491151468, -10.670606231641845, -10.970444057970926, 10.066696148908552, -10.211171866163848, -10.986059596375668, -10.325286112836048, -9.79770168702189, -10.85034522416954, -8.763134115884633, -11.176989098486088, 9.746703317482968, -9.67841348986313, -9.866393817730913, 9.090143956386402, 11.794425318531255, 9.412828923399244, -8.985198055495921, 11.62589852096658, -8.689772378909792, -11.05882531461035, -8.835568020826125, -11.124682275430139, -10.944238348650716, -9.949470495931761, -11.400646876594987, 9.75334126133716, 10.65969606663074, 10.477954536053934, 9.897275444134733, -8.14569066124004, -11.396149900367487, -10.771708565760676, -9.817290340668114, -7.878919935510836, -11.189662410020887, 9.526827664040534, 8.434518798818086, -10.366386018139295, -9.83835195859449, 8.212557771510808, 10.011154803886603, -8.399529259928359, -10.157354637934137, -9.278468586100812, 10.087874097521771, -10.579227028813566, -10.734612073084046, -8.174456539249228, -11.37933579335978, 10.609825147958666, -13.779667239630033, 10.077626886586687, -8.330439618823235, -10.839286766141399, 10.13589765816301, -10.396665479316844, -9.69888586488554, 10.615829565871406, -12.01257947420089, -10.380663311290501, -9.883700586648756, 10.650271207302534, 11.004960416112803, -9.173127274824772, -10.905963504350964, -10.369007674154506, -9.228284252778444, 9.48211072310975, -7.355615548302708, 10.440028400597113, -10.001970100792294, -10.170697308830807, 9.472108396606147, 10.230975917114732, -11.431091237276744, -8.322606346953473, -10.634257651112964, -12.116510732839082, -8.793080571190544, -11.424023764062028, 9.970561649042315, -8.522182663383344, -8.640666416152664, -11.015423103660485, 8.760457805622917, -8.80409017539628, 11.352680323089967, -10.035696456416488, 9.64929631677478, -11.334011543570412, -11.04228342502213, -9.06516148853079, -9.416975208757378, -8.523779835070208, -9.660816379053655, -10.502782658397416, -10.669174507917457, -11.466072529024226, 9.88558208951689, -7.168967134156171, -10.220800978387741, -8.857952711761717, -8.199815030044736, 10.242785664778781, 9.939631697628242, 10.611767938253442, -9.961267686509768, -8.544496451908488, 9.396888928410046, -10.741777560326861, -10.063914085966392, 10.313837958537846, -11.918005803162167, -11.437024128888673, -9.392018492297794, -9.32064087775401, -8.618914078274761, -10.194453411010773, -10.77271400696823, 9.595534348723946, 10.772262119248168, 9.959216834700097, -10.82867186567791, -10.026806950672063, 9.810624484768194, 9.62097215479062, -10.972493981772455, 10.517989925987578, -9.846989835139452, -12.75249695547692, -9.837687394451466, 10.441147021594409, -14.108323179470498, -10.664995808977748, -12.480161494017283, -8.435758323525636, 8.882919278390915, 10.098023761348053, -7.635109528095012, 9.14586832178032, 10.846478684335718, 10.968561876641457, 10.068732388578383, -11.936846002341746, -8.318865600806852, 10.177525277026929, -8.781061612241093, -11.584640316183807, 9.71748420003949, -9.054379754958608, -9.13156323308255, -10.171694147120586, 9.784227793060255, -9.846316451380913, -11.25895572187813, -9.413069268031737, -10.772661894037634, 10.239171818584467, -9.537831577540906, 7.625868144896112, -10.5351536572543, -10.3362682743795, 9.927552738313496, -10.556724078236043, -10.147667418820483, -9.840004607022333, 10.060349523837287, 8.258038921117736, 9.481909226831231, -10.286032442025789, 9.76258142821983, 10.959179465240265, 10.349068194278626, -10.520078408815491, 10.625595004417955, -9.175403837387064, -11.623572177833031, -9.827411936763466, 12.294936412766022, 9.652540442798692, -10.257638820198695, 9.072191397705407, -11.094018737070954, 9.68761886822428, 9.671219050605595, 8.771618732729582, -8.308169192644897, 8.254692959444712, -9.35181705029638, 10.780883899873794, -12.029962790174661, -7.217362314810491, 11.021478561673636, -9.000248742068509, -9.943027417789127, 12.050286221488031, -9.813024563045454, -12.756034939344074, 9.033529653142317, 9.723973635829626, 10.71860756655679, -9.131050908213023, 10.32019940269758, -10.615684117137478, 11.122764832338603, 10.639787057123936, 11.668298688403342, 9.823194823082394, -10.883457934269462, -9.26617965984122, -11.559672792834286, 9.681612973652646, -10.253963627330194, 10.445535200669951, 9.63745911376466, 9.924786863641025, 8.781334885585578, 9.864797203645754, -8.619085779738272, -11.401489235357928, -8.850645655420994, -10.130465367030997, 9.025597792868108, 10.030861938039601, -8.20022440450582, 11.678479515212906, -9.416562337012138, -11.593901672890938, -9.87264998442125, 8.411039029756108, -9.143992729743186, 9.619548550533274, 9.849034133071445, 9.576491413711462, -9.119228427598504, 9.65052047618295, -11.210192830917022, 10.822798589936307, 10.327467204872486, -10.078788700693465, 10.81689742624043, -10.851079465570317, 8.365543463463492, 10.655814157181076, 11.753696581368638, 10.225477312802813, -9.919476424916724, -6.711540736893829, -10.840368136599885, -8.552268879427704, 9.509163831706003, -11.206704500902863, -10.774838371582234, -11.124837401919327, -8.752023076822283, 9.144694269622258, -9.776668525105787, -8.193166492201087, 9.510518183159018, 9.68543156777228, -8.874984867453529, 10.178946959584012, 8.48951669356931, -10.664187935075287, -10.733930030725793, -11.221314807382733, -8.156699804359992, 9.613491943480355, -11.256074544780697, 12.262893327604326, 9.660992927198087, -9.498622206386194, -8.579021795079791, -10.304352674504322, -8.775116963915282, -9.46226278337813, -8.126440812429278, -10.94208186704237, 10.547076977899708, -9.427331921742496, -9.888195379755087, -10.000389100453361, -9.886496643688261, 8.469908981012624, 11.541130849802512, -10.848913605156715, 10.745628702333928, 9.100851267689864, 9.494122023075155, 10.364805856118199, -10.403151275122083, 10.640220288414138, -11.467522957058863, 8.392498970499945, -10.645391342209518, -9.50766905046996, 9.58102882521784, -11.366875302913716, 10.026002757540596, -9.224137155065717, -10.633284399420386, -8.728279800049348, -10.98312201468948, 10.162670182642422, 9.276027665736008, -9.112767173679558, -8.905392716301112, 10.561351004271806, 10.601235356661599, 9.795278170780984, -9.372812665485675, 10.411608945242918, -11.261139329551694, 9.028838634525599, -10.648005969035454, -10.908562517594953, 10.289470691358947, 9.233787690063924, -8.489719647264184, -9.061116708319474, -9.94897768737084, 7.28458966434332, 9.927272186711722, -11.736051525715641, 10.185272017398441, -10.519966158877677, -9.922860273224755, -10.684319269707514, -9.427043916616539, 9.939253260712606, 9.27124973685278, -10.434294801478226, 9.512266946655386, 9.475540851751429, 11.166186145154514, 11.141338013264757, -11.157047358171024, -8.229106541394566, 10.330637520116731, -10.987208343142944, -8.041911259885048, -6.922861117203819, -9.638105386450562, -10.320604504168726, -10.476108980214805, -9.269375516932254, 9.92957817018561, -9.558341753399539, -10.369638916662348, -9.368399836439604, -9.450463403192904, 8.57817449389646, 10.86219170128463, 9.909738564136692, -11.555362237559992, -9.04982041434037, -9.688085711707542, -7.554154298790451, 10.48824693151114, -8.47355372278369, -9.395258229398706, -11.261234236255406, -9.207494246353763, 9.148109576139955, -9.602707120447244, -10.770206282712648, 8.756817810268453, 9.11550057505109, -10.435330229109898, 10.58153779538443, 9.514798932827143, -9.027283976759266, -8.797547734018508, -8.661655618105481, -8.610111370829049, -10.880830213687982, 10.206461169728053, -7.865574832066077, 8.266758059766946, -10.121094583404224, -9.77861507434143, 11.6785409986108, 9.585809980605662, -8.737012483549357, -8.297352184677099, -8.980205487750913, 10.152714264292996, 10.262174580431193, -11.074515328089305, 11.612394560183638, 10.480822267290042, -10.539189543652094, -10.816951241261155, 10.335827697492595, -11.279258436580927, -9.311039749755766, -8.282106799291881, -11.641597273769847, -9.28468927738382, -9.87286453826516, 10.459356947666485, 11.360739938747303, 9.565406185443695, 10.26401733563101, 10.17238832736534, 8.414482988570729, -9.309548581022097, 9.842857559241072, 10.66837157986072, -8.873961267167072, -9.617659231780822, -9.697049617023191, -10.535983305762857, 10.285310434726659, -9.583573372819487, 10.287141604781677, -9.577263336304586, 11.278636311644458, -11.29065912387956, 10.214948000303494, -9.833001239161705, -9.516624858874144, 13.371007601643335, -10.241869820238447, 8.500898123420532, -11.103172128085221, 10.051036539242375, 9.527981856930234, -8.593119630395352, -11.967747469997738, -10.967167179962148, -9.529746621227332, 9.539206529883483, -11.930082001889051, -10.565240170473887, -10.70837890059363, -10.079306543866869, -9.685403090124577, 9.900570095912968, 9.846507113473015, 10.367987267942787, -9.393283074431672, 10.431759181759556, -10.497577762475645, -10.588180894249012, -10.173720383994787, -11.900777308378926, 8.864310986574452, -11.321870871381535, -9.681058461972011, -13.106220786504641, -10.475942067047653, 9.92080938483841, 9.647868055735001, -11.803542313072462, 10.426574220848895, 9.581032714591807, -10.372471344378045, -8.810299296798583, -11.096744965069048, 10.257329474528815, 11.042376940637592, -8.008571551053915, 9.992691212808216, -10.589742447446772, -10.20050225946414, -10.232913346680533, -11.546549527569125, -10.726114443970417, 8.649999527219297, 10.006646886456933, -8.53906580842448, -8.059696685839086, -11.269923859033774, -7.465925122967645, 9.905251453077396, -8.81062156945855, -9.679930529851692, -11.5058273749951, 9.53426324356281, 10.655876959492588, -9.015743834577247, 10.19715331761737, 8.14476942361977, -11.732924963946255, -11.143483374668516, -10.5941741202066, -9.23975593993205, 10.744087413653753, 9.806393777443693, -7.673237924554111, -11.083735938623823, -9.716420879724723, 11.613827737143696, -11.843640332501945, -11.146310990248931, 9.51705271099771, -9.931482170869856, -8.199889241987561, 11.43831956993548, -10.138497602357246, 12.403631209408093, -9.437640171860304, -11.534237764893685, -9.875406487816782, 8.66397715554105, -9.52683126199651, 9.772832313740484, -10.877615908803698, 9.929515790549129, -10.062008466219241, -10.907433591916373, -10.639938013049361, -10.999138645562152, -11.70467146949664, -10.321666436366154, -8.32108822514573, -11.733297253382991, 9.409715401859067, 10.054104625167959, 9.854312059355514, -10.86431555648007, 9.572773644550493, -7.8452341530736005, 10.696008438937401, 10.107035572754235, -9.187945387228698, -8.084227283068403, -10.428126125117714, -10.19973680743509, 10.552335709102497, 9.85408677597745, -9.145278816533397, -10.603619765774047, -9.784976237097354, 9.827875500239685, -9.044643891557142, -9.310351184214921, -9.329282949777106, 10.275519391631873, 10.470761218780169, -8.794990628274169, 10.734750892137413, -10.932322001272674, 10.085617372030228, -10.649302431173867, 9.411812251647572, -9.68134230009536, 10.283936940747047, 10.495957775061962, -9.204462431673882, 10.222345459397898, -10.122536530010516, -10.2674761104128, -9.396286778282615, 8.76483089630121, -11.0403662810785, 9.651340765584115, -8.984569528530605, -9.773066499882198, 9.508673529184726, -10.563435528361142, -9.62340014204678, -10.696929500191711, -11.03678920806918, -10.406680104198227, -8.473443172807695, -9.346895240721102, 9.687490011084924, 10.028506635683742, -10.318828771827857, -9.83857890217737, 8.858232752077203, 10.305134776025088, -9.912747901660426, 10.710954459519689, -9.251757346352198, -10.098531452672326, 9.596368662466846, -10.10385734934944, 10.314853257050403, -9.809478118455273, 9.630210002049028, -11.55915610073994, -9.109767105003616, 9.73547698796718, -9.935881511498179, -10.111966669134336, 11.470366216906841, -9.681737630459494, -11.664869964095935, 10.031576366666096, 9.518552832036884, -7.759269723203586, -11.66143939778855, -10.57924436669521, 9.762777599259628, -8.949391057430608, 9.972764202719302, 9.954458859604946, 9.228898784345104, 10.12715480940583, 9.871812870887126, -9.803778055672709, -7.327887867657729, 10.453582938573243, -9.8326705644987, 10.511015581244926, 12.439348467778872, 10.220302009702419, -11.189477196980095, 9.984229370103481, -10.87608633600767, 11.406240371915182, -10.912088272106692, -11.2234461904231, 9.439888638623122, -9.803403161379157, -9.222833526411948, -7.8104967763028466, 10.256089279813688, -8.774407485065003, 10.08484600240645, -9.572821092805304, 10.035467871477152, 9.442129126747236], \"z\": [-10.700648130744366, -9.519505963193954, -9.695100718861621, -9.931986870044568, -9.920895296847926, -9.129523607720689, -8.516345035323106, -12.46143124135226, -9.012175088819149, -10.689359771434068, -9.236896238286443, -11.304418174607909, -9.954052336066217, -8.681407682264997, -11.10118026199226, -10.713251082297909, -9.300527050878959, -10.820512036887628, -10.763605858465475, -8.047702083754956, -10.246439314308125, -10.44768747884169, -10.302120855361526, -9.323790941356727, -11.032023982992374, -9.66406561651228, -9.262856494435054, -8.074140585323773, -8.958093291207216, -10.190843949213313, -8.876187637571187, -11.333567374979916, -9.628021702761478, -10.042508340677111, -8.493531347028565, -10.709849741995667, -11.056763404507182, -8.062627339521155, -8.469003414395477, -10.449025715880099, -10.633444604842417, -9.956928180599029, -9.833763485916611, -9.585218771937793, -9.73993478267337, -8.918236737378352, -9.68207671849553, -11.20949060661832, -9.808078447471404, -12.286766349149243, -9.72674568820513, -9.50562372390414, -9.942640184009672, -8.366712496309091, -11.762746614898479, -9.463466062433596, -10.010138360684692, -11.593808850050113, -8.980095333683199, -9.256425696520889, -10.493820682359127, -10.474803712617891, -10.21985965308246, -8.139099468168098, -9.461397832884566, -9.76771241750437, -10.683163502237946, -11.024359485160904, -9.885921527381633, -10.27268777762837, -10.033226132324076, -10.580985557813454, -11.636289980208, -11.22242547217902, -10.202393443234966, -8.984611610517845, -8.506256548083556, -9.388401409318986, -11.610584839348434, -8.290904377661473, -9.713455429421922, -9.28188718769759, -9.882822699869989, -11.955055595718985, -10.02331612145466, -10.189183740200109, -11.035389195193876, -9.343586158331528, -9.649524776533166, -11.102393794401031, -11.312630887766161, -10.22654602753578, -10.994562573861591, -11.066809335083375, -10.035765544298746, -9.272756552687097, -9.997968969967777, -10.797478150221101, -8.621450781757275, -12.308333390948654, -8.0112639657427, -11.400242704725654, -10.982995902591032, -11.418017446700224, -8.540192613447562, -8.04649132941677, -10.42164451214301, -9.459003658446633, -10.563246949585539, -11.031698138899674, -9.460047140610184, -9.832642896995686, -8.956573513774106, -10.17719783477246, -9.768824470068331, -8.322933452736642, -9.15102745609045, -10.371505893989717, -9.488571062706889, -8.583113450391785, -9.85382918966441, -10.328567699211282, -10.090535381546598, -10.333202963020963, -8.711532268282857, -10.51299010012457, -11.303095064995876, -9.438327604128487, -9.602653655830792, -9.037996316055567, -9.23470859953179, -8.675674428824228, -11.228907216225704, -9.536889045196189, -10.957311706205894, -6.92710017875924, -9.265290806744062, -8.000023472007408, -9.810460041620653, -9.81947181168886, -9.719322980960762, -11.066366877500153, -10.136778054853698, -10.317817817959575, -9.804907219366816, -10.861705747951538, -9.906865860808946, -11.807775116947056, -8.713683065758318, -9.205957662442739, -8.851691402978235, -10.337109202646527, -10.001533130590126, -9.33310158736653, -10.529432322691193, -9.706487656981606, -11.666606481293178, -9.408495233943217, -10.729945033180021, -9.570223150542775, -10.859401465340905, -9.69826691517331, -10.881699730438452, -12.672889444332576, -9.594530710868979, -9.658502940448466, -10.521256849126436, -10.500355289331123, -8.108690514836173, -8.953327373790371, -8.603913391646309, -10.765624893733179, -7.160101652666214, -9.820670505424454, -9.965263473691246, -9.791315888793072, -8.931141309914477, -9.985498609005944, -10.435712270721432, -9.107335234744921, -10.777484271416844, -11.020948396686867, -9.98768027540179, -9.304754268449114, -11.343964858863995, -10.170426851758489, -9.869281773154679, -9.811293319858457, -9.684054457122135, -10.888810264168953, -9.932477250689995, -11.144830814005484, -9.793806172250253, -10.974715004018519, -10.652184792254383, -12.703633200011398, -9.943321517412967, -10.249197155508115, -10.744179994748189, -7.567655277428694, -10.347832310272928, -9.764511489135021, -9.782581410150312, -8.940948913758364, -7.735767160007471, -10.203956034164738, -9.821232727034236, -8.271981039542993, -9.071380664995276, -12.703207834278373, -9.820408157836063, -11.916763592479425, -10.373401052165905, -10.357275435606825, -10.542086264332712, -10.018114258415544, -9.935668357819145, -10.03416920193756, -12.218012067093726, -9.618589786169185, -9.941452060877966, -9.123859817855223, -9.18645178220639, -9.442031355782788, -9.713001637240868, -8.707145410667703, -10.75105116508746, -8.124647245677432, -10.358651959337015, -10.806778311873323, -8.600576137393599, -10.022767027021649, -11.070642688833086, -12.710536505485578, -8.482058866455112, -12.033574620587402, -8.825804982142431, -9.301350376348026, -9.094712578424966, -9.667652213629978, -11.456163983737465, -12.632235986522115, -10.727083159415992, -7.096502108048412, -11.124583435692172, -11.02919058728698, -11.711168823554564, -9.835889339175292, -9.702469450677352, -7.890348700083836, -9.259992483997292, -9.764304931872763, -10.226700752061152, -10.987418816892442, -9.473573459308739, -9.60028115404654, -8.760936118450273, -9.803288694467245, -11.068166460815656, -11.472614202839589, -9.471097365473346, -10.908205305815217, -9.016945494362798, -9.888116486751167, -9.384103762629463, -11.817801325635278, -10.167093343489391, -13.27246702855031, -10.068602589862545, -8.413032348209859, -13.263942955540143, -9.167148309652928, -9.985254944659959, -9.493427521634246, -11.990397710543949, -9.584619060370411, -9.817200040495797, -10.854246988613454, -10.287854829844317, -10.774945186287956, -11.17358039506344, -13.342016062067561, -8.321491625914778, -11.185898364708276, -11.673111982720595, -10.20830410268647, -9.602751152539424, -10.698658751145835, -11.020497259473668, -10.410828316081679, -9.282627540573252, -10.502701608388572, -9.664771188510281, -9.266917759342434, -9.91065459364779, -8.451026087071352, -9.748297615186244, -11.95689548404815, -9.143208754449022, -9.26760607077333, -10.525114372680497, -10.114441926747562, -8.567019931648593, -8.781357885375737, -7.0736381298904245, -8.676516895855586, -9.620574734804954, -9.152488270787758, -9.10690242441175, -12.263253798227431, -9.329424073913756, -11.347542523522547, -12.155353783231375, -10.106336628767664, -10.349167064182524, -11.353413684878209, -9.98718142881824, -10.100980203212535, -11.156527411165689, -9.58031237690721, -10.978058361917325, -10.320681097594585, -9.902616602041366, -8.349984027234651, -11.545793610993869, -10.96970538130149, -11.31535132605693, -9.242175730408, -8.94850284620468, -10.818435771222656, -11.382799249344737, -11.217563555041748, -9.780467125312247, -8.427047255270592, -11.217087567681503, -10.510064126983236, -9.563141749468114, -9.640839353850565, -10.291123194318264, -11.436570819717216, -9.763264251669222, -10.731926059812443, -9.605387199633647, -10.339922128709082, -8.692070817342263, -9.553505297600482, -11.226610556095542, -10.553950917497541, -10.983455238727268, -9.790477533939162, -11.779472425493186, -10.675855617971974, -11.212048596303578, -9.084380592136768, -9.667627743730996, -11.265988990863255, -10.309666999777596, -9.290303303370422, -11.756565445425336, -10.393357377936738, -10.090239045249307, -7.307093013498564, -10.103320111737057, -9.96560969977208, -10.053837030525166, -9.741812594861747, -8.490963301370563, -11.093012688932177, -10.656407949642503, -9.908623795902738, -9.250666273348907, -11.084290326289013, -9.49369810318576, -9.174369398107215, -11.005279967567425, -11.14894773803406, -11.65211000727226, -11.841290274321691, -10.699163187420657, -9.691689212558755, -8.662988928645216, -10.943177738371265, -9.642022980827132, -10.634791330548726, -11.070520379037967, -9.230515347626655, -9.659560574377629, -10.84538754112268, -8.714559098794435, -9.424592944642928, -10.572954883629262, -8.562473790565821, -10.926741031154553, -9.807246702900226, -10.250928767162787, -10.780835809397914, -9.998216077185809, -11.478082438472079, -10.415758828366627, -10.47959590066413, -7.827266702090056, -9.602885159739394, -10.07256854046885, -9.141866385003105, -11.758455286131753, -11.743516175874033, -8.726347232199354, -8.287134081925089, -10.29098893915711, -10.693180135043288, -9.347511984340839, -9.823267118116892, -11.047390953838352, -11.573160332217682, -11.331619537265624, -9.91629333061345, -10.316945889660822, -10.6097860339512, -8.28491536831771, -11.600143939059564, -11.690208977787504, -11.565702985589457, -9.403029827160378, -9.324459078514842, -10.996420506026812, -9.438115336135638, -10.2605039879774, -10.234674261774568, -8.622047851922567, -11.542128663337248, -10.406081420353502, -9.641867098424319, -8.161350989932597, -10.660867386543044, -8.273357471737379, -8.825518394784108, -9.709037621478831, -10.452250590296494, -9.57360744179068, -9.268975686830945, -10.485094853727247, -11.397629651943324, -9.637546639845208, -10.622288788563987, -10.152084553718222, -8.414593273567458, -13.78518211501636, -9.955830794465653, -10.566660752005404, -9.712884030186421, -9.1090735230698, -10.828116840854864, -8.28522563348686, -10.237588719366585, -9.635119356316766, -10.22134686373707, -9.673555329826609, -11.363718048518304, -10.494545905089023, -10.30215594516912, -10.372706321951709, -9.628743127999021, -13.274041512560252, -10.770229654467029, -8.419716603293974, -10.605364506739273, -9.821916682972413, -9.531853629881835, -11.171533525422253, -10.789710230868433, -9.622027231092137, -10.63515505439942, -9.493717869819516, -9.978070591831996, -8.662040040236002, -11.227800623509825, -9.110251705755209, -8.744493141339518, -9.475628543077795, -9.884590538277877, -10.31463954694891, -10.737401163805583, -10.68545496114106, -10.217377665190003, -9.69650788433637, -10.873424262630387, -10.98345090468884, -8.943316044974702, -10.384562629060833, -9.636836967376206, -8.961482576655094, -8.807517023879763, -9.969012456193113, -9.640497699136317, -10.056664054602868, -10.669309828727199, -9.272625517806304, -10.605683043796738, -12.028565916470669, -9.103002489066906, -10.200145869400838, -10.934682618019833, -10.544329846678128, -10.002436444776544, -9.164164979461061, -9.589470942034534, -10.392160177603433, -9.31480564552613, -10.218315510563139, -8.64106982021424, -10.009833558742185, -10.171383721856868, -9.931752079584166, -9.94959670846428, -9.898995838051395, -9.620059154103984, -9.34641693511935, -8.39900456030394, -8.309181188065963, -9.52907697883191, -11.512928016849989, -9.740607640041599, -10.502867585213707, -8.159863166570036, -8.216815118135267, -12.145809045096168, -10.728845817284782, -9.591181917728074, -10.855906874618231, -9.440641517769132, -11.974847840385264, -9.728445546440573, -9.005222090440878, -11.557081170442018, -8.182893813617705, -7.762365333155131, -9.50504011345849, -9.919238532199374, -9.867086523417322, -11.449439872297924, -11.191364139187455, -12.274964512847585, -10.74281437886251, -10.375419761548567, -9.812954399499262, -8.616471900704521, -9.926954573264, -9.675458372079005, -9.48729053665248, -9.951409485009387, -8.459263607663097, -9.451696329548728, -9.200106450538224, -11.696272567074473, -11.182304438815061, -9.348614879692244, -10.462787806922034, -10.263373114707932, -8.756595265976255, -10.001928026918561, -9.767835456622537, -8.6837014448301, -9.159708466361558, -12.680979229029626, -10.708822589964273, -10.303261392907487, -11.453691504963786, -10.92792508049556, -10.023103746294934, -9.581120593627258, -10.942080122966662, -9.791162827439727, -11.062779489587824, -10.236126066484843, -10.446444768674796, -9.46009361416183, -11.142609009215436, -9.177833323190415, -9.315893644679655, -10.847611320266052, -10.554478689106357, -10.82961781079543, -11.166470445725276, -9.01479292652788, -10.16097319086255, -10.291340138084447, -9.382441906001542, -10.759497808900889, -10.155488534229972, -11.056162722058888, -9.442405458382853, -10.65284710430155, -10.434174737727744, -12.142969853412538, -10.292842058859579, -8.739124886914606, -10.848543210151089, -9.63132967283902, -11.450010023213435, -9.583706329551546, -9.67986350115862, -10.855448701290747, -11.292574714005758, -8.156269734264546, -10.46108799969699, -10.258974762889922, -10.40849300864892, -11.428120634081294, -9.41680977723681, -10.067004097414143, -11.057858182647337, -10.068719629365233, -8.990483886105164, -10.199428152414017, -8.876026143712, -10.718040094130874, -9.405627412053025, -9.367454267845872, -9.566627565742152, -10.294927272933565, -10.334045496750354, -10.754394450176472, -9.324473563198396, -9.634438391240261, -8.736036167578089, -9.697535586236558, -10.47471281685434, -10.376808213227587, -11.55644747308222, -10.908514292265746, -10.910958467446926, -9.888578143188946, -9.52316587359717, -11.323404359944206, -10.471916159864712, -11.611809820323632, -9.782090069552078, -9.52811790468674, -9.858285046257931, -9.693299841502819, -8.68254808807082, -10.134881611858772, -9.764881435447464, -9.912558548368834, -12.749054398866281, -10.45417767191756, -10.35080776925371, -10.943530698246663, -12.42938501789001, -10.331917970903861, -9.29741940077223, -9.779277596576833, -7.581149278234921, -11.360288040612478, -9.432928254298009, -9.926688169017552, -9.417921852003948, -9.809670098262627, -10.96808220293132, -9.53633642814599, -10.265607165622633, -10.221632843325041, -10.22255815647702, -9.006024484696955, -9.946308480048335, -9.439236399141347]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 1\", \"marker\": {\"color\": \"rgb(255, 127, 14)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 1\", \"scene\": \"scene\", \"showlegend\": true, \"text\": [\"example_0\", \"example_3\", \"example_5\", \"example_6\", \"example_7\", \"example_9\", \"example_10\", \"example_12\", \"example_18\", \"example_24\", \"example_25\", \"example_27\", \"example_28\", \"example_31\", \"example_33\", \"example_38\", \"example_39\", \"example_41\", \"example_42\", \"example_47\", \"example_48\", \"example_52\", \"example_54\", \"example_55\", \"example_57\", \"example_60\", \"example_62\", \"example_66\", \"example_68\", \"example_74\", \"example_77\", \"example_79\", \"example_80\", \"example_82\", \"example_83\", \"example_85\", \"example_86\", \"example_88\", \"example_90\", \"example_92\", \"example_94\", \"example_96\", \"example_97\", \"example_102\", \"example_104\", \"example_105\", \"example_106\", \"example_108\", \"example_110\", \"example_113\", \"example_117\", \"example_125\", \"example_126\", \"example_129\", \"example_131\", \"example_132\", \"example_133\", \"example_136\", \"example_137\", \"example_138\", \"example_139\", \"example_140\", \"example_142\", \"example_144\", \"example_145\", \"example_147\", \"example_155\", \"example_156\", \"example_158\", \"example_164\", \"example_165\", \"example_167\", \"example_169\", \"example_171\", \"example_172\", \"example_174\", \"example_177\", \"example_178\", \"example_179\", \"example_181\", \"example_183\", \"example_193\", \"example_195\", \"example_204\", \"example_209\", \"example_213\", \"example_214\", \"example_215\", \"example_221\", \"example_222\", \"example_223\", \"example_224\", \"example_227\", \"example_228\", \"example_232\", \"example_234\", \"example_235\", \"example_238\", \"example_242\", \"example_243\", \"example_248\", \"example_249\", \"example_255\", \"example_258\", \"example_260\", \"example_267\", \"example_280\", \"example_282\", \"example_285\", \"example_287\", \"example_290\", \"example_291\", \"example_294\", \"example_296\", \"example_299\", \"example_302\", \"example_308\", \"example_312\", \"example_314\", \"example_318\", \"example_319\", \"example_321\", \"example_323\", \"example_325\", \"example_326\", \"example_327\", \"example_328\", \"example_329\", \"example_333\", \"example_336\", \"example_338\", \"example_341\", \"example_346\", \"example_347\", \"example_348\", \"example_349\", \"example_355\", \"example_357\", \"example_359\", \"example_360\", \"example_362\", \"example_364\", \"example_370\", \"example_372\", \"example_373\", \"example_375\", \"example_377\", \"example_386\", \"example_388\", \"example_389\", \"example_390\", \"example_404\", \"example_409\", \"example_410\", \"example_419\", \"example_421\", \"example_423\", \"example_424\", \"example_428\", \"example_430\", \"example_434\", \"example_435\", \"example_440\", \"example_442\", \"example_446\", \"example_447\", \"example_448\", \"example_449\", \"example_451\", \"example_457\", \"example_458\", \"example_460\", \"example_461\", \"example_467\", \"example_468\", \"example_475\", \"example_477\", \"example_490\", \"example_491\", \"example_499\", \"example_500\", \"example_501\", \"example_503\", \"example_504\", \"example_516\", \"example_523\", \"example_525\", \"example_528\", \"example_531\", \"example_533\", \"example_536\", \"example_539\", \"example_541\", \"example_542\", \"example_545\", \"example_547\", \"example_549\", \"example_553\", \"example_558\", \"example_560\", \"example_566\", \"example_568\", \"example_571\", \"example_573\", \"example_578\", \"example_587\", \"example_589\", \"example_594\", \"example_597\", \"example_601\", \"example_603\", \"example_605\", \"example_615\", \"example_621\", \"example_622\", \"example_624\", \"example_626\", \"example_629\", \"example_634\", \"example_636\", \"example_638\", \"example_643\", \"example_644\", \"example_649\", \"example_652\", \"example_657\", \"example_660\", \"example_661\", \"example_664\", \"example_665\", \"example_666\", \"example_667\", \"example_668\", \"example_669\", \"example_671\", \"example_672\", \"example_673\", \"example_676\", \"example_677\", \"example_682\", \"example_688\", \"example_691\", \"example_695\", \"example_697\", \"example_700\", \"example_708\", \"example_711\", \"example_713\", \"example_714\", \"example_716\", \"example_718\", \"example_722\", \"example_723\", \"example_724\", \"example_731\", \"example_732\", \"example_735\", \"example_737\", \"example_739\", \"example_743\", \"example_750\", \"example_754\", \"example_756\", \"example_762\", \"example_770\", \"example_772\", \"example_778\", \"example_782\", \"example_783\", \"example_786\", \"example_793\", \"example_796\", \"example_798\", \"example_799\", \"example_803\", \"example_809\", \"example_810\", \"example_811\", \"example_814\", \"example_816\", \"example_820\", \"example_823\", \"example_826\", \"example_828\", \"example_836\", \"example_839\", \"example_841\", \"example_842\", \"example_844\", \"example_846\", \"example_847\", \"example_852\", \"example_857\", \"example_858\", \"example_859\", \"example_862\", \"example_864\", \"example_867\", \"example_868\", \"example_869\", \"example_874\", \"example_875\", \"example_881\", \"example_882\", \"example_885\", \"example_888\", \"example_889\", \"example_893\", \"example_894\", \"example_898\", \"example_899\", \"example_901\", \"example_903\", \"example_908\", \"example_910\", \"example_912\", \"example_916\", \"example_917\", \"example_918\", \"example_921\", \"example_922\", \"example_924\", \"example_932\", \"example_933\", \"example_934\", \"example_938\", \"example_940\", \"example_941\", \"example_944\", \"example_945\", \"example_946\", \"example_950\", \"example_953\", \"example_958\", \"example_967\", \"example_968\", \"example_970\", \"example_973\", \"example_974\", \"example_982\", \"example_983\", \"example_986\", \"example_987\", \"example_989\", \"example_997\", \"example_998\", \"example_999\", \"example_1000\", \"example_1001\", \"example_1005\", \"example_1006\", \"example_1007\", \"example_1009\", \"example_1023\", \"example_1024\", \"example_1026\", \"example_1030\", \"example_1031\", \"example_1032\", \"example_1034\", \"example_1035\", \"example_1037\", \"example_1041\", \"example_1046\", \"example_1047\", \"example_1049\", \"example_1055\", \"example_1057\", \"example_1058\", \"example_1065\", \"example_1068\", \"example_1074\", \"example_1078\", \"example_1079\", \"example_1080\", \"example_1085\", \"example_1087\", \"example_1088\", \"example_1089\", \"example_1091\", \"example_1093\", \"example_1094\", \"example_1096\", \"example_1097\", \"example_1101\", \"example_1108\", \"example_1110\", \"example_1111\", \"example_1112\", \"example_1113\", \"example_1116\", \"example_1118\", \"example_1121\", \"example_1124\", \"example_1128\", \"example_1131\", \"example_1132\", \"example_1137\", \"example_1140\", \"example_1142\", \"example_1145\", \"example_1149\", \"example_1151\", \"example_1155\", \"example_1156\", \"example_1161\", \"example_1168\", \"example_1169\", \"example_1172\", \"example_1175\", \"example_1176\", \"example_1178\", \"example_1182\", \"example_1185\", \"example_1188\", \"example_1190\", \"example_1193\", \"example_1196\", \"example_1197\", \"example_1200\", \"example_1201\", \"example_1205\", \"example_1206\", \"example_1208\", \"example_1209\", \"example_1210\", \"example_1214\", \"example_1216\", \"example_1217\", \"example_1221\", \"example_1226\", \"example_1230\", \"example_1232\", \"example_1234\", \"example_1236\", \"example_1237\", \"example_1244\", \"example_1251\", \"example_1252\", \"example_1253\", \"example_1259\", \"example_1261\", \"example_1262\", \"example_1268\", \"example_1269\", \"example_1278\", \"example_1283\", \"example_1285\", \"example_1286\", \"example_1290\", \"example_1292\", \"example_1293\", \"example_1299\", \"example_1302\", \"example_1303\", \"example_1310\", \"example_1313\", \"example_1315\", \"example_1323\", \"example_1328\", \"example_1329\", \"example_1330\", \"example_1333\", \"example_1334\", \"example_1336\", \"example_1338\", \"example_1340\", \"example_1341\", \"example_1342\", \"example_1351\", \"example_1352\", \"example_1353\", \"example_1356\", \"example_1358\", \"example_1359\", \"example_1361\", \"example_1366\", \"example_1368\", \"example_1370\", \"example_1374\", \"example_1375\", \"example_1385\", \"example_1394\", \"example_1401\", \"example_1402\", \"example_1404\", \"example_1406\", \"example_1407\", \"example_1418\", \"example_1419\", \"example_1421\", \"example_1422\", \"example_1427\", \"example_1435\", \"example_1446\", \"example_1449\", \"example_1450\", \"example_1455\", \"example_1456\", \"example_1457\", \"example_1460\", \"example_1461\", \"example_1463\", \"example_1466\", \"example_1467\", \"example_1468\", \"example_1470\", \"example_1473\", \"example_1477\", \"example_1480\", \"example_1486\", \"example_1488\", \"example_1489\", \"example_1492\", \"example_1497\", \"example_1501\", \"example_1505\", \"example_1506\", \"example_1507\", \"example_1512\", \"example_1514\", \"example_1518\", \"example_1519\", \"example_1521\", \"example_1523\", \"example_1524\", \"example_1532\", \"example_1536\", \"example_1538\", \"example_1540\", \"example_1541\", \"example_1544\", \"example_1545\", \"example_1549\", \"example_1557\", \"example_1561\", \"example_1562\", \"example_1563\", \"example_1566\", \"example_1572\", \"example_1574\", \"example_1576\", \"example_1578\", \"example_1580\", \"example_1581\", \"example_1587\", \"example_1593\", \"example_1599\", \"example_1604\", \"example_1609\", \"example_1614\", \"example_1617\", \"example_1618\", \"example_1619\", \"example_1620\", \"example_1622\", \"example_1625\", \"example_1627\", \"example_1628\", \"example_1630\", \"example_1637\", \"example_1639\", \"example_1640\", \"example_1641\", \"example_1642\", \"example_1647\", \"example_1662\", \"example_1665\", \"example_1666\", \"example_1668\", \"example_1669\", \"example_1673\", \"example_1682\", \"example_1684\", \"example_1691\", \"example_1692\", \"example_1697\", \"example_1699\", \"example_1701\", \"example_1704\", \"example_1709\", \"example_1713\", \"example_1718\", \"example_1728\", \"example_1730\", \"example_1732\", \"example_1736\", \"example_1741\", \"example_1747\", \"example_1753\", \"example_1758\", \"example_1760\", \"example_1769\", \"example_1780\", \"example_1781\", \"example_1784\", \"example_1789\", \"example_1797\", \"example_1798\", \"example_1799\", \"example_1800\", \"example_1802\", \"example_1807\", \"example_1812\", \"example_1815\", \"example_1818\", \"example_1819\", \"example_1822\", \"example_1824\", \"example_1825\", \"example_1826\", \"example_1829\", \"example_1830\", \"example_1832\", \"example_1835\", \"example_1838\", \"example_1840\", \"example_1843\", \"example_1847\", \"example_1848\", \"example_1852\", \"example_1853\", \"example_1854\", \"example_1855\", \"example_1856\", \"example_1858\", \"example_1859\", \"example_1866\", \"example_1869\", \"example_1870\", \"example_1881\", \"example_1884\", \"example_1885\", \"example_1887\", \"example_1890\", \"example_1894\", \"example_1896\", \"example_1897\", \"example_1900\", \"example_1901\", \"example_1919\", \"example_1921\", \"example_1924\", \"example_1927\", \"example_1931\", \"example_1933\", \"example_1934\", \"example_1938\", \"example_1942\", \"example_1943\", \"example_1944\", \"example_1954\", \"example_1956\", \"example_1958\", \"example_1961\", \"example_1964\", \"example_1967\", \"example_1970\", \"example_1971\", \"example_1973\", \"example_1977\", \"example_1983\", \"example_1986\", \"example_1991\", \"example_1992\", \"example_1996\"], \"type\": \"scatter3d\", \"x\": [-8.54069466432308, 9.506638641489388, 13.430117653990948, 9.158672109751748, 9.114432308289164, 9.332484000749902, 8.867235018391556, -11.538218427844704, -9.721273342775508, 9.452207635174297, -9.092413617157646, -10.509585593510664, -9.48026900442556, 11.871035808539759, 10.935828633225295, 9.66128451494432, 10.021154027265633, -9.00242782878118, -11.147924177026587, -8.3031806234281, 9.719434793869674, 8.655069041871172, -8.688304181662838, -9.565228158825219, 9.981538218009051, 11.882450637784366, 11.675310825638125, -10.027497275424068, 10.26102126464275, 11.291527811003787, 8.456960893994967, 8.48720885710557, -10.406189191969414, 9.329634488269004, 10.24451393872617, -10.092609391573033, 8.126626249671556, 11.09500615273048, -11.09769073198662, -10.782511926535033, 8.761640544658796, 11.049024353863276, 8.897632969471076, 11.67082602882916, 10.085833195999504, 10.381447761904502, 9.084951825251807, 8.794668692992413, -10.641792466945674, 11.464114626066074, 8.59656483320937, 8.547914972832956, 9.714549404042112, 10.443754198755583, 9.374802606210277, 9.417082293093843, 9.99353023233505, 8.841520671853004, -9.511393064467175, -9.916678328605267, -7.733707825271765, 10.263375694174432, 11.526084663279843, 9.224349040860211, -10.003240630216078, -8.073494668701498, -8.90147233841072, -8.56612246423431, 10.463191966830367, -8.787823332535375, 10.728682128392364, 9.27091663012585, 9.49041893802724, 11.112727047903944, -9.676104643016602, -10.505239296101474, 11.683252120960645, -7.8900301381386395, 12.613251588742484, -9.569720567025755, 8.669331527392945, -10.223047768189675, 11.19567277896561, -10.659886308815002, 13.8702124978051, 11.089082703759367, -9.964274297415479, -11.237477862759741, 10.295599601576855, 12.719097625544531, 10.316977129463327, 9.794668538792232, -9.228355229770402, 10.142007707213399, -8.301887592551129, -11.287075673208662, -10.512589181276637, -10.126316943072732, 9.648940722496057, -9.64737194482722, -10.302583271732363, -10.484262674062842, 8.944682385111289, -8.615884380558493, 9.798367390071691, -11.396567358550765, 11.17195127778837, -9.259870152636985, -10.705955927393084, 10.989188049285984, 10.756368938873644, 9.628887969104696, 10.327280699623271, 8.909238302678684, 9.246738322991572, 10.85822486012934, -8.23241959369985, 9.45893363062312, 7.573476253196233, -10.895791558269154, -8.973756212695685, -10.898512120579879, 10.1282232230374, -13.53405294353075, -12.304502224869836, -10.1332390084444, 8.595466783414201, 9.42575772972905, 9.894547853637917, 8.883938130517219, 9.745161007205525, 8.80041290529197, 9.090107201626251, -9.90747564524548, -11.0064973068853, -9.130142085189071, 6.931022249252479, 10.786252175177342, -8.442688819633794, 11.386111740842683, -6.1911890922631345, 9.059089908891952, 9.642247823379634, 9.500342785077068, 11.459389036712173, 10.674004655170625, -9.2212062358555, 10.048095640139014, -11.4491354048785, 7.888712057276956, -9.603019851226492, -10.35557788933754, -9.240053384131397, 9.786347871526914, 12.302522551368192, -12.531322800824888, 8.474838873669222, 9.288217410000719, 8.4199745137288, -9.427124296111224, 10.071388182948908, -7.128806326374253, 9.97873041715147, 11.895093285244082, -10.246663316452844, 10.121803404307935, -9.335361573247328, -9.179181307776657, -10.143864799024817, 10.91378210264376, -8.41676017094032, -8.850069655915727, -9.70646441471612, -11.027445286877184, 11.70136268308693, -10.77089162228865, -10.264579109420104, 10.164916774502828, 9.540895791071792, 11.443492012498242, 9.535914172277444, 7.622761893596005, -12.095322161645075, 9.96624448798352, -10.032139974663938, -10.992031471931954, 9.159811508831853, -7.918149044465334, -9.700418982040205, -11.289420801026063, -8.269790433683989, 9.776677803788173, 8.7264040444557, -8.3436189149215, -9.350449724207008, 9.799034979003947, 8.21210707945224, 10.029946500762655, -6.780828823429495, 10.691432463496673, 10.219709779112652, 11.151953765608436, 10.403237940477739, -10.321333191214729, 9.24019461209265, -11.069298544030419, -7.749989378311349, 13.400670482129772, 9.505554175512943, 9.771825555210846, 10.684294013946642, 12.164842258353763, -11.587238107516425, -7.910897745419563, 10.417343445183246, 10.577148249780652, 9.924198608255743, -8.52735186035681, 10.867574289971172, -11.017940458907539, 9.27796992450287, -9.486156526431582, 11.198471472376289, -11.1799453021403, 10.822651252009317, 8.7144862750073, -9.271783583337404, 10.241674780073934, 7.876245956901588, 9.53035669946935, -10.639351268474714, 9.280787942075357, -11.090470934223504, -10.158325920855278, 10.489130632921293, 10.526565866947875, -11.81565318801676, 10.338281283152082, -10.593480478782542, 5.842465273608317, -9.582827953975121, 8.019917006107331, 8.122010422629588, 11.046897146090588, -12.068914461147607, -11.474878168021489, 9.93901620281185, -9.500340855937905, -6.816902265592543, -9.862753625997595, 9.377991396721, 10.569453320080289, 12.412887309250195, -9.588317681939063, 10.774828618676189, -9.640031651481053, -9.287598864145256, -10.85060120564671, 11.086635972579817, 10.141675686224348, -8.135445431822932, -9.358618978489146, 9.791150988709422, 9.893258526703546, 9.074902686416124, 11.430264606328187, 10.290831567698815, 11.226678123950922, 8.325233946122005, 10.666006456361314, -9.254732003386797, 9.100203680044496, 9.563067204435535, 9.954331818485802, 9.919633359114808, -10.609209312754922, 8.982474919043844, 9.954727458493947, -10.48280594454864, -10.381627992405209, 9.652709323142812, -9.83634575223807, 10.33371478352974, -10.48546060641304, 11.020310197022908, 8.0119052855583, -12.028376240264837, 9.352609239781287, -8.968905557400264, -10.199135210860844, 11.268258456960263, 10.987626443468757, 8.373785949046972, -10.488430890517431, -11.391483987622566, -12.848814835428334, 8.214919441587714, 6.683115431883972, 10.09271498384432, -10.89649265905346, 7.274534177269927, 10.652625612149578, 11.923432948946205, 11.228857996572305, -9.019762221176023, -10.250193907986889, 10.561473351303851, -10.669050147537316, 11.4026255464019, 9.778120721152025, -10.734963558724848, 7.768172986947388, 11.17108391443, 9.180562032159974, -12.044077236836356, -11.916538474902051, 8.933567164464986, 9.758948646240105, 8.557405355366317, 10.874086942300732, -11.377497407729056, -11.016422358925931, 12.27985935602113, 9.295774753731667, 9.039708782688841, 10.270527345582222, -8.374607167177057, -9.961792029842735, 9.459698662705046, 10.938832799666795, -9.980040817920061, 10.833793546056146, -9.5683016529494, -10.942073560497297, -9.804411038503748, 9.08054055301806, 9.594324114910028, 7.51971271896115, -10.995256055962026, -9.35481197389815, 10.698986599170775, -10.312232396636968, -10.332324516164276, 8.809272159321518, 9.672448960976848, 9.929462080072332, 9.476944641286947, 8.186132237370911, -9.313648421575639, -12.254769449223886, 11.961079348441041, -10.866368450495075, -8.708659518712157, 12.114582938891862, -9.823728736616943, 9.046830306158917, -9.58108051172164, 9.868302117444637, 10.392499807586637, 11.57189848097451, 10.585818047325448, -9.77911723107873, 9.174733338799104, 10.793917081358945, -8.957668384725121, -9.927466057603562, 9.502982351845949, -9.923766552360137, 7.750477632075468, 10.452669693187609, 9.795909351630595, 10.300936338688913, 10.102243427915758, -10.123460906797511, 11.01090530234352, -9.911361347916898, 11.079291462825802, -12.099453014175502, 10.117776375203313, 6.096435453826869, 9.817777882234765, 11.681272090574357, -8.608441230868857, 10.474554759040956, -10.252927668370434, -9.815846636784718, 11.17100523698508, 12.03288147068572, 9.448004124328193, 9.739108481992721, 12.087253901606307, -8.751689761530725, -9.428730376075265, -9.916020883294328, 10.383318695653827, -9.641547906810413, 10.400574274289806, 11.085316943637501, 10.34391159330602, -10.95660104112133, 9.314690048738655, 8.849486720899213, 8.820741099168382, 10.940316067114287, 9.989119310331604, -10.172872836746158, 9.913300395390582, -12.127473666610454, -9.556066997035005, 10.408181550069534, -11.682724266026817, -10.111885248784857, 10.278364216377124, -11.535016514715641, -8.273863789453964, 9.754577218915836, 11.146828698772124, -10.089782503699924, -9.413796030753641, -11.243877804850632, -9.882692400330166, 9.664692591755058, 8.95690763425479, 11.3249071488891, -9.437080604755891, -6.531841319049272, 10.730519569951838, -10.905906212321518, 8.258247189451655, -10.540170105236228, 11.241392974113829, 9.877410383751918, -8.102323959961408, 11.001671988153975, 10.31040842751918, -11.757041799523813, -9.519980164687208, 7.4096704039470875, -10.367198355601328, -10.516190617281895, -8.667715487104683, -9.846352917084095, 9.744974702635776, 10.644426492254079, 10.092347223099306, -10.742948243289609, 10.032008515365794, -10.481529096796066, -9.252076896928145, -10.288108900233347, 7.867258826821131, -9.660238650231744, -9.308063028614411, 9.855053851538845, -10.903589366012033, -10.457695036307257, 9.44452309062495, -10.154799355553342, -12.186724330010883, -11.894892471918672, -9.935214871452102, 9.800182393542801, -12.404504544660197, -10.080493535128216, -9.718956498446552, -11.01334041765282, -12.832723585038682, -7.9294473590729355, 12.90827469706467, -9.379199312972066, -9.60421442191219, -8.003029552665753, -9.22420783215038, -11.523187807768261, -8.393434648284382, 9.860306689442133, -9.04697198278329, -9.400364549819324, 11.08351665420626, 10.39857733049429, 9.44423183730012, 11.0272025572439, 9.767766850934091, 11.468653018003508, 11.068009909675244, 9.934524138195831, 9.167473367155914, 8.903268066283799, -9.646305336297917, -10.470294615007187, -9.689744938830662, -10.54111684087889, -10.976536275268437, 9.669565105124288, -9.433218381302423, -8.084859859991376, -11.42008928055475, -7.259636831989797, -9.120869204412832, 9.451863722865404, 9.824947182510009, -8.906252855658582, 9.554658242020002, 12.539849928534663, -10.941764826162908, 10.149657453922714, 9.094962668698987, -10.78235837843015, -9.163209730541805, 7.594411051454019, 9.92182491461493, 8.871175632911944, 9.95017386291692, 10.287099776571688, -10.575637313111498, -9.516072913419482, 11.246833006722001, 10.33092968392695, -12.066929506515862, 8.441144399781997, -8.555715466155677, -7.844156867365239, 10.72046486950448, 10.585261376083016, -10.481820752925625, -9.827190932351384, 10.722574360280648, 9.897694862639053, 11.044654136267466, 9.916277573672893, 11.375880953315644, -9.102961036013472, -10.146320299843213, -10.617738268459656, 10.14125457224043, -8.997011042544003, 12.18298658528864, -7.719196344220485, 6.236985807865921, -12.923850971859045, -9.033867694746059, 8.366385542515138, -10.474308558907612, 8.26472700748488, -10.086280423554337, 10.034137219649097, 9.688069407500947, 9.81864449098035, -7.1356141073691255, 9.382354243352342, -9.523358995833263, 8.31204354883758, -8.329098018783956, -12.676934422125663, -10.520054091491962, 8.97605223441528, -10.957466009021747, 9.591190849836007, -9.839288187247039, 10.876182610387893, -9.847696785634009, 10.40958274180328, -8.864191520388754, 8.844107810270954, -10.710259548779977, -9.269102506244366, -8.07403060713444, 10.542788510321317, 9.926980446926496, -8.771644574624931, 11.064615667057673, -12.606753079332039, 9.629645400438092, -9.530375119402496, -9.232119704495565, -10.402963810536775, 11.565339597097356, 10.880014578365552, 9.607614746643005, -9.635614567003437, 9.838615918673314, 8.519508872074047, 10.669949125359281, 10.498197195588768, -11.564633832758023, -8.63743176252354, -11.942357851124832, 11.442993843745644, 9.86702898665132, -8.897799968658244, 8.26770441187934, -7.236205829377303, 8.490862376178452, 9.34954972193837, -8.366130342535433, -7.878531645884175, -9.009785042253437, 7.3834626337660865, -10.394085656753987, -9.558749466876062, 10.733244550232685, -9.595137827769468, 9.104178623299202, 9.076609988837001, -10.440352560678846, 10.424727167940308, -10.174815231514248, -10.018981695290318, 10.999481072264222, 10.091717810366106, 11.632472412119007, 10.193684206615158, -11.347008622887392, -8.369431508871841, 9.56094166656222, -10.078235589741164, 10.164891438574951, -9.674587850949905, 11.47724516500827, -10.182220678165212, 10.697345406325626, 10.231315035660366, -10.138194694142483, -10.634370829510965, 9.251307268444371, -9.778910771914386, 9.212741691055294, 10.949753491430798, 12.639366652190365, 8.848676884862744, 8.970299241859692, -10.552495590147307, 9.654382103525405, 10.06350533382291, -10.408827483109206, -10.988356230406648, -8.212058741170823, -10.298035230868445, 8.783775116726208, 8.167608533405263, -10.250017788299733, -11.000844067075027, -10.25661397735728, 7.8637637859497485, -10.714094393385235, -9.440996861920025, -9.734768384539402, 7.823948839713664, 8.213631690666759, 12.641833708957211, 9.098622582449732, 11.093555309842714, 8.785554590398654, -10.793875541408447, -8.666007684322565, 10.73781713723795, 11.409720046617686, -8.705934143277275, 10.011113230180126, 11.356532211306622, 9.879883333080238, 11.903367333762956, -11.177959858090237, -9.327094154915764, 9.871686690503946, -9.652598090891372], \"y\": [10.325328180886979, -9.41232136585815, -12.408485656915213, -9.730619157624695, 11.660618299449377, 11.941644216205011, -9.520772960407404, 8.801238424759202, 10.773114643643336, 11.373627500717618, 10.438511335519996, 9.367531483022825, 10.241725095453084, -11.274486574965406, 8.219444964073901, 11.417621193080263, 12.665850958362677, 9.735613993501499, 9.256157565890062, 10.425762306819236, -9.520051580030291, 10.83370932710944, 10.465179133036909, 9.820854194472679, 9.096857798605676, 8.471756683432456, 8.752699865288287, 10.490116295380004, 10.999044868933149, 8.291331676694421, 10.528597007564136, 11.748031380517771, 9.251298675802582, 9.517620904646009, -10.629921242609495, 10.723779916267553, -8.119270992715203, -11.073929655953904, 10.212307421598497, 10.132795874261754, 10.770832046604479, -10.742979773611408, 9.599096056357643, 9.577548687794597, 8.75994228378546, -10.964525871308876, 9.377364060580826, 11.199838004905999, 10.22248868753393, -11.466590792244368, 10.6203573894813, 11.535332210339707, -9.7720817472019, -10.742313908826539, -9.723240753182331, 10.21226848303686, 12.151870743417374, 10.202842450191342, 9.376987053725612, 9.632474494568488, 9.944036919452431, -10.253897997503788, -10.711566074072971, 10.67287529234528, 9.952771124356275, 10.532669779388012, 10.776383991281019, 10.192262993187015, -10.439282023639935, 10.600783017636509, 8.60576599714355, -9.66189968218161, 9.889893946720166, -10.870729313801387, 9.967198100705046, 9.998710837586806, -11.058614023659985, 10.47734415743493, -12.476715694222033, 10.206183409453601, 10.310656931430715, 9.698933900059936, -11.172869261048207, 9.640995511931266, -12.761340401460359, 10.91630871689642, 9.760667787124229, 10.311064999389906, -10.067663326660824, -12.080429219898583, 10.413028991481722, -10.065856432114742, 9.980545431845783, 9.690375874552533, 10.56282818235921, 9.87143431073019, 9.803235609279279, 10.160913490307038, 9.723299722118, 10.24340649025674, 9.500965053380943, 10.638949359924569, 10.061664803827872, 10.547379602157552, -9.840298088416404, 9.862377108814947, 9.750695356294301, 9.767219117234461, 9.592617209327294, -10.673698387813538, -10.98271041451293, -10.085955617342295, -9.991606945869743, -9.394796621318319, -9.201687062531882, 8.395857861938811, 10.618429049545378, -9.092235750600079, 10.672743842649625, 9.804023359710571, 10.324765191973288, 10.049705513830144, -10.175094287842589, 9.870034610322497, 10.482768307590675, 9.764655330811465, -8.437094898976738, -10.130087554156546, -9.793829073144588, 10.351515373018236, 9.753720878117957, -9.538440200714666, -9.422559731437994, 10.26124410722898, 9.162890194807936, 10.282680595717512, -7.759937873289783, 9.518439451723248, 9.974420234751733, -12.263190553196912, 9.244570649684533, 10.162869319445216, -9.450860036635916, 8.208055749904652, 10.595152888181765, -10.422321268047515, 9.664470191079122, 9.18959399521326, 9.662133408444854, 10.94692265671792, 9.600179616058632, 10.671215812351795, 10.067063388897141, -10.108909252500869, -11.527766237763933, 9.584177028541113, -9.374872716839791, 10.01785763122829, -9.091035249901793, 10.38383723366489, 11.929703823540327, 10.155135643456319, -10.007087862408062, -11.86419938348381, 10.298542498324862, -10.378731801404294, 10.075821193849956, 10.167460580881647, 10.018129077828831, -10.761046649900736, 9.280491495339186, 10.089258260221728, 9.370930107627842, 9.816835868672252, -11.48519615060479, 9.731740475477928, 9.79785963382964, -9.29183357389578, 10.278242253647358, 10.896601028188295, -9.337436111440521, 12.353419613393053, 10.456633027749278, 11.360674671901897, 10.655530434065955, 9.278425471210568, 9.977737621991318, 9.931554330542765, 9.14793227691156, 10.044911520481644, 10.419151867771747, 9.469808212721155, 10.597981597342027, 10.145461849221268, 9.854528328274764, 11.308356265877272, -8.586447149399882, -9.64725547360941, 10.997989942725107, -10.442467486974271, -9.938803798228339, 9.445448247465364, -10.028180653118076, 10.197603028465972, -9.46828653288543, 9.797505220064362, 10.096269416784196, 7.471718675607152, -9.776579194834664, -9.918531270455718, 8.937679155004082, -12.24679956077001, 9.566749144586757, 10.354906868318865, 10.771816276058107, 7.312614163835482, -10.309178928778048, 10.347996858613314, -10.680444206127731, 9.736356161155426, 9.890545254054548, 10.821756801356546, 11.283392952974845, 10.310642148549382, 9.84669127575578, 10.841588957772966, 10.240844124312874, 10.708144965654188, -9.12733454433793, 10.720014904514803, 9.376715121135994, 9.969733161050236, 9.80555802615334, 9.688564889867882, 8.410348714568432, -10.305910110877317, 9.941080781458357, 9.869182385850733, 10.523252833351426, -7.390231076751069, 11.291996296161882, 10.40825809658304, -8.370907652681499, 9.774161036084736, 9.813893395207078, 9.268054864332047, -9.50058649233073, 10.389741712795495, 10.20080817325506, 10.183513555953645, 11.214437995290798, -10.306509948100373, -12.023611064917977, 10.17138382402997, 9.891279709495587, 10.601609783923262, 10.069621693388585, 10.148510362507679, 10.349409270339605, -10.046651810192925, 9.790334566557895, 9.35953505430659, -9.607729210300155, 8.71219723982633, 7.077580246630319, -11.047945573898183, -9.770719662838152, -10.96165031509614, 8.134918737695758, -10.684971683312982, 9.844730800383568, 9.917967436284908, -9.322842347844256, -9.943507293819671, 9.910477605481125, 9.591416292819822, -9.556962500901042, 11.469223256989, 9.59577616760701, 10.055012425246908, -8.719774329348128, 10.02187618194454, 10.833901284571297, 10.205299651485774, -10.794468840210198, -8.376888358220416, 9.33260302231561, 9.312151362502938, 9.58857328364676, 9.629592704056451, 9.94218941908942, 10.996622212481702, -9.240613420796938, 10.42365799498445, 9.850194104267185, 10.304428121860656, -8.33636504875372, -6.963532370772549, 9.721137431128907, 9.864647844507553, -7.925663779476537, 9.749901028709528, -11.475562476000661, 12.08121947438541, 10.204185263749638, 10.241553344125354, -9.773285408323659, 9.941876527399087, 9.13195181943933, 10.954955480509376, 9.12215281679391, -8.539719008312424, -10.799073613736397, 10.073674205812477, 9.738594235726708, 9.217900757726266, -8.902824463250358, -10.609427877331028, 9.358632530198493, -10.497052707955962, 8.870853482251988, 9.528693476432272, -11.734189794253384, 9.839877729276932, 10.627432533404908, -10.64432779321898, 11.07135654078442, 10.050115462515784, -9.458915935851108, 8.179889150397456, 10.020186814569207, -10.309945311501865, 10.457102907467878, 9.657202708411893, 10.13288559726977, -9.046578518981288, 9.292759190951864, -8.385230316371116, 9.20668164498821, 9.47467041060611, 8.518098961938337, 9.826888175970707, 10.163798980064643, 8.718842534365246, -10.268470607209752, -10.019982015425938, -9.613066577321952, -8.527971896290861, 9.92457973404966, 10.451979817205967, -11.060886482672199, 9.270409479926933, 10.36738242056551, -12.033162721464745, 10.476720503979, 12.353157413818423, 9.905189645869854, 11.02499785903249, 9.770054976657303, -11.69186005466834, 9.118479145127932, 9.67741603415558, -8.742847343992626, 8.764508416590001, 9.470086584755045, 9.522875538828599, -9.641278758959094, 10.256952498492712, -8.232754394893238, 10.174249352477045, -10.064668724402535, 10.65059999707749, -9.40535425442359, 9.511513140472564, -11.415736908383435, 10.310248259472655, -10.769213178797461, 9.467381485856247, -10.083642406457137, -7.16824156396622, 10.482136800067666, -11.071065248260314, 10.104961880784073, 9.806271752555087, 10.003552990129508, 9.794891778709056, -10.83521071148997, -11.941448816910189, 10.353519419274406, -9.825372391907086, 9.536781979347404, 10.26355295397942, 9.309589902772725, 9.624896777253257, -11.175929058712642, 10.665935120510195, 9.94362027473024, 7.395731749677162, 10.170681062856596, 9.347080454015694, 10.427687591691768, 11.110278830141834, 10.96771466161361, 8.438108798713474, 8.833280094918228, 10.536492452185726, 10.858329182716028, 9.230376595549373, 10.962972247112184, -10.430193322752535, 9.457461150340938, 9.651346445733708, 9.111712859346763, 10.157998093091683, 9.978623430638285, 10.250509747799923, -10.840786223551579, 9.781147189634364, 10.212480658257045, 9.10244406156415, 10.075929099698076, 10.489655095521973, -8.77623612309952, 7.35300977519192, 9.083836176599231, 9.687349365837713, 9.775835966523791, 9.489704613078247, 11.811027674006175, 9.6154267083686, -10.35251655902032, 9.191299820215287, 10.600108279302049, -10.420420563352677, 11.021977451203371, 10.256850661854974, 10.071705678152226, 9.649790633381375, 9.761009653341546, 9.716233755136177, 9.967136905800086, 10.401951056802728, 9.829080089251915, 10.689685445874646, 10.527179463736289, 10.830651978972766, 10.00040382164134, 10.687826411506274, 10.16146737447631, 9.988380790176851, -8.088514661316006, 9.976467569459038, 9.942366850477258, 9.843912389214855, 10.322891994388899, 9.757490617486399, -9.449753850144265, 10.140690632966079, 9.46080544284267, 9.700628434988765, 10.32118783556915, -10.034105438974892, 9.865397595007092, 9.975591885967967, 10.295606993056523, 10.412130247923592, 9.79107991974497, 9.94016883475673, -12.643213655018723, 10.163013316934354, 9.733086193252735, 10.166881413262349, 10.178672321583436, 9.974093287129525, 10.496041034157722, 10.18380032082808, 10.262767778349074, 9.302234560889126, 8.467710699508617, 11.826972718192977, 11.151535446465218, -10.936993976284855, 10.289926880272423, -10.965233249671144, 9.990351096923293, -10.071657602577163, -9.493620786210466, -9.130429064634173, 9.643670043426514, 9.95909656986154, 9.943351135989515, 10.586722490881648, 9.528622619576824, -9.751462030476558, 10.161654419889754, 10.215009376551231, 9.307739013934572, 10.138074721964234, 9.93032987153229, -9.171126850559967, -10.410229902072267, 10.065285814440015, -9.349417370125325, -12.00113927928502, 9.799508250104289, 10.440935325394594, 11.080268250031995, 9.868056187768014, 10.079031621003319, 11.793852130849997, 8.313228593227327, 11.014270245253163, 9.293064539192105, 11.21317964132396, 10.442580271684722, 9.329200680879385, 10.874886451157238, 9.412343270167739, 9.077760985480966, -8.53162097408765, 9.997367864814448, 9.897454681235713, -10.975009645826793, 9.699436494723075, 9.63874004754399, 10.383711942669375, 9.270724276066531, -10.523086760975081, 9.462337299722652, 10.378956422957826, -11.297576937426589, 10.476932801888546, 10.667853725355819, 9.448715313843438, -10.108703266290876, 10.687092273749892, -12.191797872539443, 10.082901424404366, -7.255667163973328, 9.905669052315476, 10.272633015418572, -8.056365677647092, 9.992016812405854, 10.755768444135622, 9.766461457690424, -10.19786753961838, 9.436569741658346, 10.766044335113687, 10.020042941629756, 8.199570085682193, 9.900619472761466, -8.773076489388345, 10.756106287667023, 9.332563057957252, 10.055687244847672, -8.62218229844321, 9.744678223761785, -9.445710322094245, 9.433816739142559, 8.804115084425375, 10.033102243909319, 8.480380828928165, 9.663856397526255, -9.489793514074005, 10.748754802573536, 10.573842218210912, 10.151895559968121, 10.061467824414079, 9.774421504713244, 9.895805885790235, 9.285017516172951, 10.26800160746665, 8.651471410345675, 10.090553050881704, 9.208856460706084, 10.453350151271358, 8.355877860637547, -11.115719009576157, 11.61302009922706, 9.982406325638058, 10.91045004990296, 11.56699400735451, 9.121499749856484, -10.466614176077321, 10.195509762605136, 10.2080307840869, 10.055048527743514, -11.06982058805527, -9.713833883904417, 10.439453858933316, -8.822795714243291, 9.954468761798818, -8.777607995648172, 9.935487341153747, 10.383861115629731, 9.314883427811084, 10.60889056810953, -7.946338266087511, 10.088205746067631, 10.101807757344847, -10.492986925437783, 10.795709392480063, -9.085704698285431, 10.674948812654991, 10.33074154801792, 10.854965782119061, 9.756146487311842, 9.60548527481645, 9.942977001990728, 8.140939465333341, -11.572048787125883, -9.938194656343839, 10.105253460484553, 10.129474944327544, -10.05686619176922, 9.69295455286514, 10.722475810996396, 9.397331790099434, 9.542952486946456, 9.811615741942216, -10.378408779566316, -10.349353160115355, 10.523311595101507, 10.138521757246984, -9.267129382978457, 10.156869617528246, -8.702938864573024, -10.45135375843345, -12.54380416974504, 11.154252410914214, 10.619097814451212, 10.317394753251472, 11.124498919307928, 9.503921717233256, 9.897773573587532, 10.157612530634447, 9.950575381687928, 10.441671078034958, -9.091741420260702, -9.298574416784833, 9.035874791434699, 10.27763656893454, 10.450401530204552, -8.650470432472867, 10.112924897222214, 10.219968960589839, 9.701606267623008, -8.336937489295888, -8.134437503060296, 9.893705847988436, -10.012129662673697, -11.38745619638131, 12.072509669854838, 10.520089377061792, 9.719906680371006, -10.380491367511954, 9.80904833356554, 9.893761877694022, 10.954195830594669, 7.851445199013355, -9.996267267487205, -11.68811559415615, 10.224698004025791, 10.302595114301853, 10.053193011209364, 10.1900690453493], \"z\": [-10.818430713704815, -12.247729394708646, -10.630171149730153, -10.021451290081666, -11.660749256027334, -11.982957816213517, -9.95627957729342, -7.889898399117127, -11.109613106864185, -11.305110576966818, -10.880505338277983, -8.884676311039769, -10.625074858079149, -12.654913613154603, -8.234390107722762, -11.339749523311964, -12.657735979948871, -9.411399432093278, -8.701376755471285, -10.655125070067688, -11.27130149907519, -10.784007309317293, -10.806171700313165, -10.03275420012377, -9.140468324046628, -8.454247159280358, -8.737077620691931, -10.636421585155531, -11.028865122609774, -8.311612752025798, -10.480183281158912, -11.701686582913828, -8.650832106906066, -9.524599962233472, -9.702293486705267, -11.411630392437907, -10.811990384586526, -8.86202839745588, -10.554273200905724, -10.094778743001394, -10.838833568067049, -9.9649037942196, -9.572094718631515, -9.50815745305595, -8.720264819296531, -9.899916416642341, -9.441365923258914, -11.150542594528275, -10.607663186430887, -9.542455621217167, -10.670877297591346, -11.603150099712762, -9.33493846313661, -8.626451611255712, -9.688097081224099, -10.197529460107788, -12.1243800176618, -10.331513624266409, -9.036094497585538, -9.133610657996742, -10.097639599989291, -10.569355062753232, -10.395401411510203, -10.607955021477277, -9.916826280952023, -10.978452176322946, -11.438072733721432, -10.253569139774575, -9.661021156070547, -11.299306792538088, -8.569190623333222, -10.252629617114506, -9.817713477691095, -9.118194170834107, -10.18243601712522, -10.099317722616084, -9.16908497818416, -10.83396004584947, -9.71605601239768, -10.242698487221315, -10.291644908887667, -9.424941989689238, -10.565007909414375, -9.598452361032688, -10.446318618274562, -10.903003343762181, -9.88131959009876, -10.465329987525033, -9.82935490963337, -7.736847362042795, -10.365119085146352, -9.796433403800766, -10.030717821644338, -9.728659113169511, -11.114683612705678, -9.412057663551392, -9.779038807020326, -10.212480458308903, -9.710343068110529, -10.693854473047432, -9.529809801385221, -11.00151934168524, -10.066191175684255, -11.0661818836445, -10.183700779671243, -9.839811605373562, -9.781722538405417, -9.666175840977541, -9.07603161613846, -9.735787067107443, -9.5751830354498, -10.471036410140114, -9.210242528268916, -9.977038238528394, -9.018944707307906, -8.372128265139466, -10.94417705290091, -10.31476614070576, -10.684209990398996, -9.700923185429314, -10.528771632550367, -9.855479293360068, -10.47026116810064, -9.906338636074935, -10.834680760246101, -9.476224812903526, -10.051355146575089, -10.87853849677181, -10.133799207153848, -10.35767389094418, -9.911859041097289, -10.102784534652773, -12.311751890450406, -10.447289234434523, -8.70702343109177, -10.615948824380093, -8.794985539492586, -9.5050364077276, -10.054503455560173, -9.302594668399268, -8.835158778809214, -10.231320136228447, -10.641432781340377, -8.288668335136636, -10.536112064931004, -9.57203671016751, -9.327967446177226, -9.11064762923464, -9.695604158854266, -10.937174372872635, -9.626135164516425, -11.313723444316253, -9.965898912081425, -8.33621112020581, -9.217930939726523, -9.44899490618525, -10.03064751684816, -10.058447036890929, -10.010456334028316, -10.5337062814895, -11.81980269343461, -10.410112712097668, -10.488372372330845, -10.546095000180312, -10.612010012057825, -8.938816330876236, -10.114847344749533, -10.431243808398637, -10.099239157191965, -10.846428090822418, -9.103379550732317, -10.037676842467295, -8.9454464685168, -9.471298192241694, -9.175403124067048, -9.473454268629807, -9.634253369404654, -9.017003033639204, -10.255485313213969, -10.819602356307998, -9.267022923715238, -12.4126792552899, -10.820312281046515, -11.286851685243102, -11.134504304962327, -8.671868012536432, -10.109407371309635, -9.793790681951496, -8.859535914285052, -10.189526597852074, -10.892196819329358, -9.550531806612113, -10.5926329519112, -10.335742603417875, -9.54293442828726, -11.324471808225697, -9.511643576764662, -11.191786822274008, -12.041329465564914, -10.006305036921855, -9.285164017655147, -9.392895065300742, -11.690557404792997, -10.517063251726782, -9.124023438591108, -9.456897651498627, -10.43458290126186, -7.3328659423886915, -8.731215568945865, -11.970762698300664, -8.877815292157926, -8.64103013255629, -9.093803498021103, -10.679062825752528, -10.669245446876188, -7.316960637229702, -11.22714485541757, -11.141479533897115, -10.031583590606408, -9.421101332165671, -9.865608874406936, -11.27092765166522, -11.216266302079394, -10.326749511854864, -9.76133192599673, -10.797715798908492, -10.585013762339186, -10.617770729888479, -11.131413857496625, -10.774810214939961, -8.90925588630823, -10.060499894160428, -9.726887214759968, -9.221128093747426, -8.436632772198731, -9.30560636076515, -9.748209087830313, -9.866970477585063, -10.782690065210717, -13.0256459007781, -12.182414496282131, -10.517315551233139, -10.051704993257193, -9.802213949091865, -9.609330463578827, -8.69618225663979, -10.692284176268815, -10.79186412641534, -10.832975172279063, -10.23788414797895, -11.108001420680266, -9.010351936745815, -8.969416403880054, -10.321385298178095, -9.970234542501485, -10.914325927062517, -10.002582233458213, -10.260795931276325, -10.2666578099268, -10.436314081227694, -9.62082211862181, -8.961004422572767, -9.939261918265142, -8.703347642465669, -7.171393663205057, -9.043840415027372, -11.038210070480707, -9.46577334123338, -8.210145637900238, -10.309503974684164, -9.735084834192376, -9.97051651013106, -8.224313837489053, -10.535685322202246, -9.819540719905325, -9.165846460445623, -10.275253840464561, -11.457425514089513, -9.233175830467939, -10.024946359991091, -9.828662634810883, -9.934962227762966, -10.787713261647667, -10.150814686428506, -9.400391634014346, -10.099039230998631, -8.490168493874645, -9.307781880911444, -9.507914797036275, -9.515835639599818, -9.93281674296528, -10.855774567274864, -7.48620422143236, -10.82330987579641, -9.633013730834616, -10.303673223722067, -10.99490899025242, -9.922128025729485, -9.757854633203396, -9.726537400552075, -9.954511639936744, -9.725366891834739, -11.749122326608159, -12.05414533041359, -10.336799730593542, -10.468295140831057, -9.955870010425794, -9.700402509599662, -9.174800732566384, -10.954297018695591, -8.44360930266209, -10.41768291851017, -9.110981971329164, -10.078657450480067, -9.783628825678697, -8.418328149584628, -8.801194859195952, -10.3634567407341, -9.375187553915804, -9.400033178811285, -8.030738021331427, -9.095474167961548, -9.436940268442822, -9.89354760014476, -10.604304084604925, -10.132490087808128, -11.559780533839524, -10.0897447982525, -10.052662215154017, -8.16167128955505, -9.986765162358747, -8.6901076743634, -10.83934182564962, -9.598030906417584, -10.238819996940629, -9.92252912773147, -9.399867826863199, -11.157852503785842, -8.57948054543959, -8.962763629529304, -8.45551291152466, -9.694534403636453, -10.251673164949592, -8.665673861385137, -10.348496809923876, -9.529870294340112, -9.46368327363282, -12.611651588532935, -9.968869590900491, -10.726428779715315, -10.517183544392473, -8.500784167291728, -10.627954613026033, -10.329995613824126, -10.960213126989423, -12.398760546969122, -9.788710763756237, -11.04715648128644, -9.813199104335698, -9.715862613289644, -9.09940628455439, -9.44453922925689, -11.015311477200077, -8.737370618683086, -9.213357002426768, -9.163867723782062, -10.18135058885633, -10.382919775322462, -9.602949185342709, -10.076746399767954, -12.960820949489381, -10.576611700721848, -7.771209299757521, -9.366664000739181, -8.03497427029813, -10.676071099280872, -11.22581009771864, -9.18660861768792, -8.521531503919412, -11.19664434166216, -10.403728457700673, -7.9475319771035995, -10.367851856281895, -9.782978556699959, -10.03917197530618, -9.791517863035923, -8.476987750926888, -10.600555324637039, -10.308890432638323, -10.114145552212584, -9.458131455430653, -10.58293778678752, -8.645019680408637, -9.314380710481721, -9.890732809887853, -11.162569553514238, -9.953478545157688, -7.374967696046204, -10.229100942949716, -8.508471349156526, -10.514528966736327, -11.244659522698718, -11.02707547244951, -8.437662445985547, -8.789729181196739, -10.424075252520074, -10.949182200881145, -8.821111388248534, -11.726358639544747, -8.315540484406847, -9.026799871702853, -9.322720079439533, -9.108010381314717, -10.564314858342108, -9.92353496796476, -10.30065730565773, -8.604520404089872, -9.458529273674058, -10.297582192112484, -8.311535458449887, -10.12911625311442, -10.468886772152468, -9.105667645575174, -7.283313980271994, -8.349149095622703, -9.500065710761614, -9.657538164472204, -9.492127524403836, -11.892125772213543, -9.281626391780568, -9.828811751254234, -9.27440800765774, -11.108274064054392, -9.669379162763507, -10.992136125529363, -10.448608928048124, -10.243026688458674, -9.643552402102907, -9.440228711630944, -9.42237552583497, -10.219446035388, -10.86963276423949, -9.86567642801716, -10.677987931511653, -10.569075511365366, -11.397981256322144, -9.968048434850001, -11.1445940459539, -10.41109200974119, -9.744725099462647, -11.016329021187403, -9.789804301230054, -9.951261720045775, -9.946364388187458, -10.591602484697619, -9.575476740420168, -9.217919524488725, -10.330253413198585, -9.074184995276825, -9.33406915645841, -10.502992806883375, -10.358883195939807, -9.746984359404454, -9.909946007216616, -10.437621141999681, -10.730988273655854, -9.656270366656557, -9.933980958913095, -9.323473158040752, -9.727622588616443, -9.580945944483759, -10.267422805064276, -10.155507637740271, -10.168089392928387, -10.893675408684707, -10.18187759972041, -10.678087154733339, -8.951465207923462, -8.482659524820532, -11.815937855850887, -11.208815998769897, -9.488524070430863, -10.23133780554544, -10.770423752157047, -9.948174967204265, -10.949867561412214, -10.660379290571123, -9.019288750703915, -9.260972129205985, -10.244247252209481, -9.670255761033095, -10.763603880289526, -9.212449767212341, -11.212154658118909, -10.276111831187567, -10.57672272264139, -8.837097168330429, -10.421295909462321, -9.98006226748991, -9.752985060763418, -8.028495954650161, -9.975758560634908, -10.155385417303219, -9.849456710231994, -9.572048142394884, -10.404324987924532, -11.0744196274732, -9.653538884883433, -10.249790334978155, -11.853964304274614, -8.224445950855515, -11.033137493565118, -9.248749235245786, -11.247197049973959, -10.834631843437663, -9.075885892901919, -10.784979246134519, -9.47253434528677, -8.296783535177191, -8.312004177941562, -9.976018233074694, -10.144845839954957, -10.725137675817283, -9.777305160864204, -9.137026182074237, -10.508466237690019, -9.25233703753868, -9.834844493058222, -9.355590580160543, -10.352893642372983, -10.343839742555057, -10.734615775801007, -10.96286070572668, -9.080233864889257, -9.752201887893422, -11.113936866934301, -11.046272914711114, -10.48436485162667, -10.290918747638758, -9.541213314991078, -10.382619257434756, -9.42355671478001, -9.949004623583253, -10.751787135414771, -9.63890877806982, -8.736179510329665, -9.515042363769918, -10.6666670733349, -10.190631414771648, -8.330113831233668, -9.932824623770523, -9.84445062523276, -11.396873541500462, -8.619529656694427, -10.027426385729997, -9.935383641976797, -9.684619960797836, -10.997070585112414, -9.324855332074396, -8.680948435849741, -10.142878310576304, -8.469690857365935, -9.552058419035541, -9.86541998655886, -11.119450167190516, -11.19384483719414, -10.439225065249671, -10.100754021746452, -9.78446302183937, -9.609954805551961, -9.302422551454425, -10.337299888852812, -8.765064512838618, -10.037958092153849, -8.829594942480867, -10.93450269256717, -8.366530712635463, -10.14040964740791, -11.673464720464295, -10.016503760078898, -10.833276885364494, -11.571772867106326, -9.113572886621544, -9.56066514208456, -10.103029675975005, -10.23474074244447, -10.189516264151845, -10.377693473491668, -11.123708042207056, -10.750917098734933, -10.863155671644545, -9.976881629468696, -11.74122524693286, -9.968200747315754, -10.763334882368556, -8.59402898992533, -11.185165959796477, -10.241235859398117, -10.051137674618952, -10.133229467940556, -8.961180195003237, -11.231936528501844, -11.059311924602678, -10.701007504250335, -10.707997210970564, -10.716590002963555, -9.559351177498666, -9.350266038271776, -9.839795461040714, -8.16617804965475, -10.12839895992055, -11.327491484732747, -9.945349659139545, -10.407980802471572, -11.129657764346035, -9.34352865926313, -10.648921603403695, -9.04124250334557, -9.415479230161553, -9.887212712020743, -11.826913906329864, -8.050792998402658, -10.987953202751156, -10.248848088678042, -9.909045964014258, -10.143260322545423, -11.436773442567478, -10.416840579858194, -8.83275119405128, -11.129642370351922, -10.659645429852105, -10.41793204373968, -11.166003456666846, -9.502834820307678, -9.89803454676729, -9.910104726931223, -10.47467984201752, -10.993581620809444, -11.685164090084635, -12.541387291274113, -8.371947287110014, -10.54793388977759, -10.708239190212511, -11.666919476879974, -10.10534405277909, -10.289393529293509, -9.476954338404285, -10.89371344641423, -9.251576309160967, -9.89070720605316, -10.039273252910698, -12.030251641158214, -12.086960897786405, -10.808628503642863, -9.451046492762643, -10.523321135971342, -9.773117001930396, -9.67871715023656, -10.956591515477678, -7.867806629176419, -8.717751097154828, -8.419570038434118, -10.308189212070037, -11.023418489069176, -10.090290285965555, -10.347705752164753]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 2\", \"marker\": {\"color\": \"rgb(44, 160, 44)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 2\", \"scene\": \"scene\", \"showlegend\": true, \"text\": [\"example_1\", \"example_4\", \"example_8\", \"example_11\", \"example_13\", \"example_14\", \"example_16\", \"example_17\", \"example_19\", \"example_20\", \"example_21\", \"example_22\", \"example_26\", \"example_34\", \"example_35\", \"example_36\", \"example_37\", \"example_40\", \"example_46\", \"example_50\", \"example_53\", \"example_61\", \"example_64\", \"example_75\", \"example_87\", \"example_89\", \"example_91\", \"example_93\", \"example_95\", \"example_98\", \"example_103\", \"example_112\", \"example_114\", \"example_116\", \"example_119\", \"example_121\", \"example_122\", \"example_127\", \"example_130\", \"example_134\", \"example_143\", \"example_146\", \"example_149\", \"example_150\", \"example_151\", \"example_152\", \"example_153\", \"example_154\", \"example_157\", \"example_159\", \"example_160\", \"example_161\", \"example_166\", \"example_176\", \"example_180\", \"example_186\", \"example_187\", \"example_189\", \"example_190\", \"example_191\", \"example_197\", \"example_200\", \"example_201\", \"example_202\", \"example_205\", \"example_206\", \"example_207\", \"example_216\", \"example_217\", \"example_219\", \"example_225\", \"example_229\", \"example_230\", \"example_241\", \"example_245\", \"example_246\", \"example_252\", \"example_253\", \"example_257\", \"example_262\", \"example_263\", \"example_264\", \"example_268\", \"example_269\", \"example_276\", \"example_278\", \"example_279\", \"example_283\", \"example_284\", \"example_288\", \"example_293\", \"example_295\", \"example_301\", \"example_304\", \"example_313\", \"example_315\", \"example_317\", \"example_320\", \"example_330\", \"example_335\", \"example_337\", \"example_340\", \"example_343\", \"example_345\", \"example_356\", \"example_369\", \"example_378\", \"example_379\", \"example_384\", \"example_385\", \"example_387\", \"example_391\", \"example_392\", \"example_395\", \"example_396\", \"example_397\", \"example_399\", \"example_400\", \"example_401\", \"example_402\", \"example_403\", \"example_406\", \"example_407\", \"example_412\", \"example_417\", \"example_418\", \"example_431\", \"example_437\", \"example_441\", \"example_443\", \"example_444\", \"example_452\", \"example_454\", \"example_455\", \"example_456\", \"example_459\", \"example_463\", \"example_466\", \"example_469\", \"example_470\", \"example_472\", \"example_473\", \"example_474\", \"example_476\", \"example_484\", \"example_487\", \"example_488\", \"example_489\", \"example_492\", \"example_496\", \"example_498\", \"example_502\", \"example_508\", \"example_509\", \"example_510\", \"example_511\", \"example_512\", \"example_515\", \"example_517\", \"example_520\", \"example_521\", \"example_524\", \"example_537\", \"example_540\", \"example_546\", \"example_550\", \"example_556\", \"example_559\", \"example_562\", \"example_563\", \"example_564\", \"example_565\", \"example_569\", \"example_574\", \"example_577\", \"example_580\", \"example_586\", \"example_592\", \"example_595\", \"example_600\", \"example_604\", \"example_606\", \"example_608\", \"example_612\", \"example_616\", \"example_623\", \"example_625\", \"example_627\", \"example_632\", \"example_633\", \"example_635\", \"example_639\", \"example_640\", \"example_641\", \"example_642\", \"example_645\", \"example_646\", \"example_647\", \"example_648\", \"example_653\", \"example_655\", \"example_656\", \"example_658\", \"example_659\", \"example_662\", \"example_663\", \"example_675\", \"example_681\", \"example_683\", \"example_684\", \"example_685\", \"example_686\", \"example_687\", \"example_689\", \"example_690\", \"example_696\", \"example_698\", \"example_699\", \"example_702\", \"example_703\", \"example_709\", \"example_717\", \"example_719\", \"example_725\", \"example_726\", \"example_728\", \"example_729\", \"example_734\", \"example_738\", \"example_740\", \"example_742\", \"example_747\", \"example_748\", \"example_749\", \"example_751\", \"example_753\", \"example_758\", \"example_760\", \"example_761\", \"example_763\", \"example_766\", \"example_768\", \"example_769\", \"example_773\", \"example_775\", \"example_776\", \"example_779\", \"example_784\", \"example_789\", \"example_790\", \"example_791\", \"example_794\", \"example_795\", \"example_797\", \"example_800\", \"example_801\", \"example_804\", \"example_805\", \"example_815\", \"example_821\", \"example_822\", \"example_825\", \"example_827\", \"example_830\", \"example_831\", \"example_833\", \"example_835\", \"example_837\", \"example_840\", \"example_848\", \"example_850\", \"example_851\", \"example_853\", \"example_854\", \"example_856\", \"example_860\", \"example_863\", \"example_866\", \"example_870\", \"example_871\", \"example_872\", \"example_876\", \"example_877\", \"example_878\", \"example_880\", \"example_883\", \"example_884\", \"example_890\", \"example_891\", \"example_895\", \"example_896\", \"example_897\", \"example_902\", \"example_911\", \"example_913\", \"example_919\", \"example_920\", \"example_927\", \"example_928\", \"example_929\", \"example_935\", \"example_947\", \"example_951\", \"example_954\", \"example_955\", \"example_956\", \"example_957\", \"example_959\", \"example_960\", \"example_961\", \"example_969\", \"example_971\", \"example_972\", \"example_975\", \"example_977\", \"example_980\", \"example_981\", \"example_991\", \"example_992\", \"example_995\", \"example_996\", \"example_1002\", \"example_1003\", \"example_1008\", \"example_1011\", \"example_1012\", \"example_1014\", \"example_1015\", \"example_1016\", \"example_1017\", \"example_1019\", \"example_1020\", \"example_1021\", \"example_1025\", \"example_1028\", \"example_1038\", \"example_1039\", \"example_1042\", \"example_1044\", \"example_1045\", \"example_1048\", \"example_1051\", \"example_1056\", \"example_1059\", \"example_1060\", \"example_1062\", \"example_1064\", \"example_1066\", \"example_1069\", \"example_1070\", \"example_1071\", \"example_1072\", \"example_1076\", \"example_1077\", \"example_1081\", \"example_1082\", \"example_1086\", \"example_1092\", \"example_1095\", \"example_1098\", \"example_1099\", \"example_1104\", \"example_1109\", \"example_1115\", \"example_1119\", \"example_1122\", \"example_1123\", \"example_1126\", \"example_1127\", \"example_1129\", \"example_1130\", \"example_1135\", \"example_1136\", \"example_1139\", \"example_1141\", \"example_1143\", \"example_1147\", \"example_1148\", \"example_1150\", \"example_1152\", \"example_1153\", \"example_1154\", \"example_1158\", \"example_1162\", \"example_1166\", \"example_1167\", \"example_1171\", \"example_1174\", \"example_1180\", \"example_1183\", \"example_1184\", \"example_1186\", \"example_1191\", \"example_1194\", \"example_1195\", \"example_1199\", \"example_1203\", \"example_1207\", \"example_1212\", \"example_1213\", \"example_1215\", \"example_1218\", \"example_1219\", \"example_1224\", \"example_1227\", \"example_1238\", \"example_1241\", \"example_1243\", \"example_1246\", \"example_1248\", \"example_1250\", \"example_1254\", \"example_1256\", \"example_1257\", \"example_1260\", \"example_1264\", \"example_1266\", \"example_1267\", \"example_1275\", \"example_1276\", \"example_1277\", \"example_1279\", \"example_1282\", \"example_1291\", \"example_1294\", \"example_1295\", \"example_1296\", \"example_1297\", \"example_1300\", \"example_1306\", \"example_1308\", \"example_1311\", \"example_1312\", \"example_1321\", \"example_1325\", \"example_1327\", \"example_1332\", \"example_1337\", \"example_1346\", \"example_1348\", \"example_1349\", \"example_1350\", \"example_1354\", \"example_1363\", \"example_1365\", \"example_1367\", \"example_1369\", \"example_1371\", \"example_1372\", \"example_1373\", \"example_1377\", \"example_1378\", \"example_1382\", \"example_1388\", \"example_1390\", \"example_1396\", \"example_1397\", \"example_1398\", \"example_1399\", \"example_1400\", \"example_1408\", \"example_1409\", \"example_1410\", \"example_1411\", \"example_1413\", \"example_1415\", \"example_1416\", \"example_1426\", \"example_1430\", \"example_1434\", \"example_1437\", \"example_1438\", \"example_1439\", \"example_1442\", \"example_1443\", \"example_1444\", \"example_1445\", \"example_1451\", \"example_1459\", \"example_1462\", \"example_1465\", \"example_1475\", \"example_1476\", \"example_1478\", \"example_1479\", \"example_1482\", \"example_1484\", \"example_1485\", \"example_1487\", \"example_1494\", \"example_1495\", \"example_1496\", \"example_1499\", \"example_1500\", \"example_1504\", \"example_1508\", \"example_1513\", \"example_1515\", \"example_1517\", \"example_1520\", \"example_1522\", \"example_1527\", \"example_1528\", \"example_1529\", \"example_1533\", \"example_1534\", \"example_1535\", \"example_1539\", \"example_1543\", \"example_1550\", \"example_1555\", \"example_1559\", \"example_1567\", \"example_1569\", \"example_1570\", \"example_1573\", \"example_1577\", \"example_1579\", \"example_1583\", \"example_1584\", \"example_1585\", \"example_1589\", \"example_1590\", \"example_1594\", \"example_1595\", \"example_1597\", \"example_1598\", \"example_1600\", \"example_1603\", \"example_1623\", \"example_1624\", \"example_1629\", \"example_1631\", \"example_1633\", \"example_1634\", \"example_1636\", \"example_1638\", \"example_1643\", \"example_1648\", \"example_1653\", \"example_1654\", \"example_1655\", \"example_1659\", \"example_1660\", \"example_1661\", \"example_1663\", \"example_1670\", \"example_1678\", \"example_1679\", \"example_1680\", \"example_1681\", \"example_1685\", \"example_1687\", \"example_1688\", \"example_1690\", \"example_1693\", \"example_1695\", \"example_1698\", \"example_1700\", \"example_1702\", \"example_1705\", \"example_1706\", \"example_1707\", \"example_1710\", \"example_1714\", \"example_1715\", \"example_1716\", \"example_1720\", \"example_1721\", \"example_1722\", \"example_1723\", \"example_1724\", \"example_1725\", \"example_1731\", \"example_1733\", \"example_1737\", \"example_1740\", \"example_1742\", \"example_1744\", \"example_1746\", \"example_1748\", \"example_1750\", \"example_1751\", \"example_1756\", \"example_1757\", \"example_1762\", \"example_1766\", \"example_1768\", \"example_1771\", \"example_1772\", \"example_1774\", \"example_1776\", \"example_1777\", \"example_1785\", \"example_1788\", \"example_1790\", \"example_1792\", \"example_1793\", \"example_1794\", \"example_1795\", \"example_1796\", \"example_1803\", \"example_1804\", \"example_1805\", \"example_1806\", \"example_1809\", \"example_1820\", \"example_1821\", \"example_1828\", \"example_1833\", \"example_1834\", \"example_1836\", \"example_1837\", \"example_1839\", \"example_1841\", \"example_1842\", \"example_1845\", \"example_1846\", \"example_1849\", \"example_1850\", \"example_1861\", \"example_1862\", \"example_1868\", \"example_1873\", \"example_1875\", \"example_1876\", \"example_1877\", \"example_1878\", \"example_1879\", \"example_1880\", \"example_1883\", \"example_1886\", \"example_1889\", \"example_1892\", \"example_1893\", \"example_1895\", \"example_1898\", \"example_1899\", \"example_1902\", \"example_1905\", \"example_1906\", \"example_1908\", \"example_1913\", \"example_1915\", \"example_1916\", \"example_1923\", \"example_1926\", \"example_1940\", \"example_1945\", \"example_1946\", \"example_1947\", \"example_1949\", \"example_1950\", \"example_1951\", \"example_1953\", \"example_1962\", \"example_1965\", \"example_1966\", \"example_1968\", \"example_1969\", \"example_1980\", \"example_1981\", \"example_1982\", \"example_1994\", \"example_1995\", \"example_1997\"], \"type\": \"scatter3d\", \"x\": [-11.818549558986481, 10.54755096504382, 9.557486140000425, 9.882592355457401, 10.247031005355126, 10.216456646770443, 10.483213503460293, 10.608398805432982, 9.672060899290239, 11.377658602571598, -11.0962182738371, 10.316009279169776, 10.027781842222058, -10.08548960868361, 9.892659639671542, 10.262752170468673, 10.140307584592339, 11.409762472388012, 10.835004740806216, 10.287726453996084, 9.862108205820832, 10.431006095537342, 13.160898285831038, 10.576002838961818, -10.355067226168813, 12.992285015369573, 8.970130585543252, 9.533409831041459, 10.181041487406842, -7.0485970997803955, 8.792286782377506, 9.960291520764901, 11.198039779129418, 8.011139786961774, 9.080475378296894, -9.080937189598995, 9.68365782868577, 10.840855234654326, -9.94150658383999, 9.57335885338552, 10.291383996520391, -9.815577771579113, 9.322236798501503, -9.52615667276955, 13.53376816669887, 12.452336389576928, 9.667611464049024, 9.557275806569294, 9.502011652075216, 8.887546567263378, 10.201812319555389, 10.786182455721862, 12.075922173950877, 9.044524018440399, 10.97947736890239, 10.15897150100861, 11.083793894764094, -7.808758863604172, 11.171901722118598, 8.791566329166361, -8.548536209559948, 10.965424006772597, 12.11486198605132, -7.910785015309727, -8.099459848473701, 9.137398607056621, 9.863808712178269, 11.249229632449367, 9.558460960648578, -9.757407020861244, 9.11514826392913, 10.950745253859068, -8.572318556273789, 11.2875567947002, 9.362224954550411, 11.156600468162775, -8.939519405065571, 10.789557150395648, 11.409152353078428, -10.630981586900393, 10.347770103641347, 8.845405213577571, 8.202053622095884, 9.732949724502149, 8.579790049655537, 8.389620234895826, 9.729928635585395, 10.959783165819795, 9.792871870640806, 10.42446504259017, 7.092218413126991, -10.533004868727591, 10.49525834021336, 9.29464201059708, 9.540547277196884, 8.91415438543586, 9.548900785302209, 9.488924643819328, -9.599968557964502, 9.037513022299203, -10.18747266365054, 10.391698528337567, -11.193666675300975, 10.821054468650695, 10.300939786505019, 9.31293779409361, -9.285201713416035, -9.604515156573152, 10.033217324198072, 10.273074849521333, 9.662795991980223, 11.551033070107563, 9.334031562989948, 9.785124261842686, 10.447263574837615, -9.765314485107131, 8.858875756298286, 10.957362541270333, -9.4037113428527, 9.881308768336746, 11.818779684981806, -10.183504562220419, 10.077855940850569, 9.647826586357533, 8.22203194429747, 9.277433891709336, 9.978564347639605, 10.568790178548031, 9.961441356153, 9.389651755166842, 9.52502363883823, 9.538768560652057, 9.288245574401227, -9.492028383407966, 9.52748175134968, -9.416391319214151, 9.713057788599125, 9.62662574985605, 6.343724868243034, 10.02486679771612, 9.340123216026866, 9.465663056631266, -8.865265084055874, 12.050382460605835, 9.633659802634309, 9.462661977228029, 10.325839074967554, 10.371922605980656, -7.978103328468134, 10.441832939159006, 10.254392387102442, -8.917137986502697, 11.182408579349826, 9.709309542944043, -9.909750460681412, 10.231201724677426, 10.073300548248115, 9.912257996633269, 11.486586863294653, 9.627731643238643, 8.853955411788174, 7.3709987920513935, 11.158891906413485, -9.344385683573162, 9.470177749702332, -9.03511087965264, -10.24718395847089, 10.138143260368068, 10.909880637942498, 10.178184895273828, -8.09396828167972, -10.452587282394994, 9.932192757135853, 11.651803196555912, -9.567088090600292, 9.795852516220902, 10.719394419127815, 10.601597837818868, 11.638734718938034, -10.384189128607764, 10.625236061281202, 8.266574135066422, 10.06059388070415, 10.009256654904167, 9.140426199992595, -9.415313976853119, 12.789791910657588, -10.906654359697665, 9.218535369078795, 9.141300523648082, 10.587508113933, 9.864276710231984, 8.623444788857034, -10.927956950243699, -10.340852094730744, 10.753969855951947, -10.169390907765203, 11.262121721569702, -9.49458410941182, 8.969639377235792, 9.66018105364766, 10.223798113053427, 8.545085114770659, -10.016972519334502, 7.879952188819898, -10.394476487416416, 10.43546972655149, 9.87586618512616, 9.35933437192548, 11.06993984102771, 9.461668592848689, 9.267406200990393, 9.506077296019184, 12.115028809885104, 8.592480893430734, 12.188801094861667, 9.355022316391933, -8.673164364792454, -8.758047033786168, 10.872856477814798, 10.030798577804452, 9.901503895550874, 10.649795106661053, -12.861577775309945, 12.651770039379443, 10.675077588902038, -9.099668353828294, 8.754317187281368, 10.57245243531123, 9.745613652691777, 10.524389080062196, 9.525783814865928, 9.53756736800443, 8.901465032998253, -12.028559752547604, 11.446112302601172, 9.189708504303125, 10.881880886829336, 8.449092297430475, -11.376367206356598, 9.198614861702174, 9.461460149385363, -9.78240787663226, 9.904371633344033, -10.279147372122377, -8.500606595953807, -11.01957327374312, 10.849164853564947, 9.468915463846807, 9.391665527921441, 9.187400272376992, 9.689763040218526, 9.208710181710645, 9.225476400367336, 10.1376071637374, 7.609072635487475, -10.386607044028379, 10.498376445839106, 10.723548651181417, 10.695770151574951, 11.961234464925864, 9.898051648427867, 9.814408180360317, 9.897391029824558, 11.278319346448662, 9.549812247357874, 10.162648130789774, 9.713412306443823, 10.191279793049047, 10.596183396398311, 9.400369343649643, 12.153481157838439, 12.083450819207892, -10.223579451481847, -10.309345149663141, -10.721651347213728, 9.461279400943639, 10.428048392801976, 11.283477213554528, 9.39210475159549, 10.461758372586056, 8.857827327136508, 9.657139791756101, 9.70874924964718, 11.232314134406153, 9.754547168665018, 8.93243738637294, 8.786996183287267, 8.245683550146637, 10.361616058805007, 9.78528846086859, 11.043818706782467, 10.844638208150377, 9.526295504104736, 8.219729593246033, 10.46629452800939, 10.812505174260394, 11.31724852485766, 10.619605782696633, -11.542890446566924, 10.873601119929535, 10.321198782745538, -10.071761167352367, -10.155276526873246, 9.323246045558328, 10.8553372545447, 11.996468547985405, 9.972541192936788, 11.674706974130109, 12.490124304928088, 11.341103146085814, 9.564434137151645, 8.605723280959877, -12.107961283630301, 7.793811521126669, 8.931109742672055, -10.119572130727416, 9.499818482764313, 9.001626994940231, -9.437142260225919, 9.989700316147644, 8.453335492154597, 11.86932119665855, 10.51548752873646, 9.181138966830181, 9.788947181547863, 8.717657309155499, 8.623358870504573, -10.519138098649748, -10.699259434913106, 8.727719272636412, -7.947340552530161, -11.009387450532474, 10.731736574668252, 10.265045624358383, -10.239355428637293, 9.920732249705495, 9.702671870824496, -9.458105206468083, 9.57294670393785, 9.368312383469934, 9.343058401235494, 9.675748074511896, -7.721255522669949, 10.023843807815844, 9.633621441858793, 10.425531638047898, 9.430087838170634, 11.956587038188653, 9.512562192574832, -8.248492388464264, 9.564801759929297, 8.754424945559908, 9.870204207584079, 9.590841071706562, 11.602421278874246, -9.542706354777245, 10.355114396636402, 9.893664858794818, 11.503027598694024, 10.306637943680645, 10.342400848251811, -9.922108665855282, 10.322919756196105, 10.490820264986088, 10.184850802127142, 10.51275755884478, 10.71172109350484, 9.073407734539131, 11.315208735975373, -8.122700863989902, 9.594887757668081, -8.880736429920612, 11.63990236945587, 10.955730156260826, 10.556564392256416, 10.585061211811363, 11.208089539712283, 9.411221343688927, 9.617457100496768, 10.72871520123209, -8.333956769891898, 8.530488279517572, -7.445213953222349, 10.550043250979002, 10.200503981942676, -9.574587107250288, 10.213438428186373, -10.604632942781445, -9.319794079145534, -7.671924951330142, 9.907058558734619, 9.641231053862032, -10.243873579955107, 9.198945669882288, 10.34940499522747, 9.068999128715742, 9.167518808381896, 10.201985639180812, 8.767353354936564, 9.970228615714129, 9.817028755550806, 9.042205418733545, 8.073051527595906, 9.853645989096291, -11.231621933031004, 9.802516465458835, 10.94930664492717, 10.15435877496696, -11.208026174318267, 9.562758461746, -11.774419430757463, 10.034060603092515, 10.29036985473046, 10.642189380484846, 9.034154162262581, -8.12720624242477, -10.50118080186486, -12.081465234672512, 11.374696890325092, 8.770214146680743, 10.610902315066957, 9.165156967846233, -9.140165233467442, 11.0503584729199, 9.989165287837967, 10.903878057740583, 10.56263501501, 12.096957248590407, 8.705072273083852, 10.546706976336845, 9.865483525662551, 8.060202823878019, 9.109315633109711, 9.462398307945513, 8.991039648639683, 11.65337456962856, -9.816112540776006, 7.6588858122190215, 8.495603409875466, 9.655402299302947, 10.91251429915288, 8.909578331587095, -8.948922384511844, 8.902097889750092, 11.671674138601574, -9.443402496025161, 11.310562645103818, 9.072960034871565, 11.980028652137616, 10.398290467482513, 10.762693348747622, -9.614798649324253, 9.273633819913764, 10.127803143966098, 10.111654767962829, 9.836652900545031, 10.26962195465182, 10.022274481368655, 10.38640084814055, 8.619679673209685, 11.385122526986171, 8.906862654589219, -8.53725025964974, 9.765960667389917, 9.655603923991466, 8.981650899419938, -11.82378879727975, 9.298156884882614, 8.468535959189389, -9.538421752525565, 11.781597052552423, -9.62951305303754, 9.045214800210571, 8.692394420655727, 11.255603890841957, 10.083090754978798, 10.721839394106464, -10.8281860229862, 9.287138838802028, 11.253132512729191, 9.980071077824633, 9.222794666784642, -10.66447258852791, 11.517965109706056, 10.110634688881033, 11.573865958796512, 10.73789100607216, 9.771279198117817, 10.912974739795267, -10.50536652225335, 9.617254498258111, 9.755509817641581, 10.638094117407396, 11.553372105250103, -8.696308755192707, 9.258218897208671, 9.703940084006618, 10.712147837508343, 10.863684971227704, -8.610020391428732, 9.62548676971997, -10.001869841076163, 9.91488732373064, 9.774531758532808, 11.529625389130853, 9.738651218722868, 10.17390312551556, 10.278960559137891, 12.53987978952252, 10.42252785912994, 10.022262436758437, 9.8830393564443, 8.693400118865814, -8.96959103170859, 9.142139517397114, -9.388536810074983, -9.522059049433054, 8.5037315121667, 7.981304851710293, 9.131506294482394, -11.124458448052314, 12.054010786555368, 9.786739041893231, -10.126412005465026, 10.261996361769965, 10.338091857266974, 11.208249290993685, 7.59300388664359, 9.878816722388986, 9.880790111700472, 10.712669482318468, 9.266454822995007, 11.16016512518465, 9.023239966186992, 10.296440675915393, -10.52163356027716, 9.031180882131466, 9.286765027191212, 8.79485039926023, 10.088455988043576, 11.863931359755785, 8.739060897444638, 9.18791919898956, 10.75230038853931, 9.983456132984587, 10.58304682875478, -9.166008007425392, 8.994377167813969, 9.464339539103182, 11.920629936468563, 9.562586069489875, -8.729951943809128, 8.807892032306917, 9.423251629744788, 8.170080782634436, -8.575853612372418, 9.901455875061952, 9.361522726346095, 11.557009677931235, 9.352015802707976, 9.482096985749667, 10.516846853179985, 9.668936240791647, -11.574504358499706, 11.198266146728352, 10.636763658173228, 10.543251120747884, 11.086316844186946, -7.015887777279254, 10.072379928503231, 9.895844035241733, 10.018830546336186, 10.596761105225688, 10.594294512838028, 7.862005289103297, 10.346660836068613, 9.579914137788647, 9.697396234026256, 9.985454623939189, 10.771381795183952, -11.501092100156951, -7.934777144475619, 9.533365188740488, 8.535301977865457, -11.193825860506404, 10.954189976335677, 8.750757625611943, 11.179557240125334, 11.735933195060937, 9.175995985237165, 12.228398309987648, 11.197203569393194, 9.969779131022078, 11.03899506846698, 9.155055012001897, 9.165046659413367, 10.757002902966015, 11.041854870330361, 9.511533053660841, -9.259450363204056, 9.748025698810856, 10.808373762364443, 11.340684561697586, 11.754179881459722, -8.084842722050926, 8.424151880299021, 9.54412955788846, 12.156821001113865, -8.369619791491944, 8.249425814945647, 11.368242264641557, 10.287641281596215, 10.426303346833496, 9.809102361452682, 9.826937559483474, -8.3067281511427, -8.197346015749579, 10.919955196943842, 9.987179792001672, 9.997721526952782, 10.317913794066145, 10.773471123746795, 9.429924410722625, 9.11714192956713, 10.887110666681666, 8.193528500563424, 10.32788249118789, 10.439269737701988, -11.166689031380098, 9.631137525529033, 9.839317318505636, 10.581803824587515, 10.92172413066599, -9.103676530939067, -8.743414102031071, 9.58684281825532, 9.855906855345923, 8.404037720541574, 10.48957106896743, 9.552612883749664, 10.91859697969947, -11.151976256721403, 9.219597496996816, 9.522481115541826, 9.341607790522758, 8.297675634319212, 10.258553780618287, 11.739750687341635, 11.160649449799555, 9.773331310637612, 8.01419899362669, -11.333317461087377, 9.934225764596576, 10.567040592923878, 9.021000344659475, 9.229071496089992, 9.60426804288525, -9.941439903684852, 10.29113361468084, -12.517990129880207, 9.911860871750129, 9.071473691675704, 10.201247809251297, 10.242956198116502, 11.774433908727916], \"y\": [9.63317850544642, -10.556162125473689, -9.622177777072435, 9.927024938271693, 8.405489243078366, 9.949076006228582, 8.451672757760816, 9.19624988247983, 9.541211213339725, 9.476498665117385, 9.605577071826925, 7.041375894076811, 7.622806099756979, 10.302464934690935, 10.500982928115175, -10.964520526110078, 11.497817666016843, 8.14335337936172, 8.54185505786488, 10.046909718415161, 12.833977912543844, 11.06834967749632, 7.4006472972205435, -10.712899401310654, 10.215777113696202, -12.386438812557222, 10.842567436831224, 12.024010009225801, 8.967688057165201, 9.80996163212782, 11.052218708351706, 9.396663924301523, -11.00908161437414, -8.46579443096974, -9.207369884191994, 9.255971317807857, 10.73265203723898, -11.429699751855182, 10.176818208897245, 10.353555669268097, 7.505556581014858, 9.882382614328376, -9.475758188296322, 10.001706736991888, -13.075237511273743, -11.922635658557974, -9.997158041012227, -9.599355630765912, 9.428443207096437, -9.529251496788362, 8.713823450452821, 11.290616387131193, 8.972664087749406, 10.60081375481683, -11.367567264054754, 11.16199409577587, 9.007916212597515, 10.342591320150435, -11.175880537339758, 10.591482397901661, 9.926626805888047, 9.221096399005548, 9.58552492771547, 9.752874986154682, 10.848205366775858, 10.45470257433629, -9.869693526377363, 7.742145259985055, -9.594664748523082, 10.545962587129779, 8.412228340127868, 8.855698056533495, 9.783435446111676, 9.804663988739387, 11.861946552786417, 9.290863365349125, 9.555769313711261, 11.045991143391229, -10.997162043292342, 10.360023429765274, -10.591337944503284, -9.10277953816749, -8.05704555111394, 10.52204147499312, 13.043140531399427, -8.601035253163168, 9.388847371227051, -10.483956507282796, 11.974438754864988, 9.097878688237971, 11.53380014438077, 10.102635075645924, 10.975013256253341, 7.817567027977182, 11.555768916456584, 11.501913728846198, 9.89096252858429, -9.174924516006497, 10.753367346808554, 11.719593622095527, 9.633504409293334, 8.794270641229577, 10.765129914027277, 9.462770072663556, 9.879964141036757, -9.52870060091302, 9.778111891100364, 10.07804729408939, 9.872238230431352, 10.045338775720946, 9.871519558964076, 9.479811550666332, 10.416756219436726, 10.249324996284932, -11.319534737398548, 10.731701191560756, -9.230232642089987, 11.186258899093858, 10.532563140900514, 9.23646528552966, 7.950433677709978, 10.44335188029104, -10.225197001543627, -9.924793370226109, 11.403616496252951, 8.709157092397996, -9.909152965119974, -10.855839168402055, 8.789314996859869, 10.948395629712588, 10.70520414145997, 9.842049819553464, 8.007096308651464, 9.7134558921844, 10.164770297706756, 10.406359014007483, 10.147991814163925, 8.82670327049993, -7.073105301474896, 10.836736502252169, 9.030650067696596, -9.693300936513475, 9.774088661741134, -11.79985412699453, 10.62455685933947, -9.798355513826133, 9.302694688985609, 8.105256398523252, 10.209168781111286, 10.416618155590614, 8.524755250783233, 10.66958178948419, 9.401602034993417, -9.994275432887237, 9.686717360098585, 9.527009554184728, 9.748865860154977, 8.791922452675584, 9.119189832282688, 10.81998850105888, 10.67551647197442, 10.597641927726896, 10.0642935972275, 10.274866419303983, 9.249593158482524, 10.155621815048198, 10.18491572692505, 11.396795010257883, 10.422993092071135, 9.000426648355079, 10.604954625912962, 10.37916793745587, 7.240691747281561, 9.185143789933834, 10.175006026792056, 10.1300835469885, 6.768136766357486, 8.893242190804164, 9.291974098894547, 9.300088291818783, -10.190201686014227, 10.417318262390724, 10.045684989297664, 10.883647681278077, 11.585211667538605, 10.798015941594022, -12.121266101419325, 9.67673516633016, 10.889845155643139, 10.750256157936718, 10.491769942725217, 12.03452329755465, 10.281502835726586, 10.507717503986745, 10.354061282551564, 11.124273395396305, 9.75070632420516, 6.124846722304206, 9.396042207281319, 10.501466237260171, 10.1083298772278, 10.274495033110238, 10.881249657158559, 10.044895648660498, -8.52673491685276, 9.740150035214791, 8.804681163502387, 9.493354544965985, 9.249869438998658, 10.986857666689792, -9.951495896796976, 9.586486467513005, -9.797966045682562, -11.837016493849791, 10.130772293973738, -11.763480539381174, 9.208455153968382, 10.737935669827705, 9.984597719665846, 10.957065495762034, 12.036338271548884, 7.3168977805989135, 10.486724373016113, 9.6799170965786, -12.052582724814188, -10.495449699656831, 10.31831967890088, 10.533233905689533, -10.08660216968104, 10.886273817577791, 10.100627228837247, 9.648359934753131, 9.245244530429582, -9.16055792906588, 10.384075600121594, -11.100175323745123, 12.301674760570718, 11.088766193522009, -8.946810919048374, 9.741901575795294, 8.7207080553599, 9.976519543988738, 9.616090499531369, 10.516135809199147, 10.140563744310755, 9.664054958374896, 9.937635109751405, 7.720131102454401, 12.90608231365346, -9.82147015297317, 9.58956700423797, 8.87473715406734, 8.853445040125246, 10.430684791123545, 10.446815237339925, -7.721196620091691, 10.774645575355713, 9.686769938140635, 9.267026888478933, 9.124213096759595, 8.267903927786927, -10.014477392208567, -10.592849489787763, 11.039025767269546, 9.25021297634684, 8.059852128869615, 9.47172979471528, -10.212693537683386, 10.595130649430267, 9.277707279964929, 10.82031822670445, -11.864939857984492, 7.811246123746665, 9.18063042896608, 9.559187846756595, 11.039752630046026, 10.732998496230856, -10.36922937870835, 6.773994529938008, 7.940155700223446, -10.10979290941918, -9.231369530910385, 11.86864759467245, 10.355927340488774, -10.870132338551343, 10.022064858040698, -9.236875513737312, 12.795767507488568, 7.92158855635204, -10.70977646862196, 11.092626077462073, 11.109192293246458, 9.386312327828536, -9.743837874850092, 10.680848629224275, -10.398188469792792, -10.8836138600988, 9.184502993228227, 9.623667017668062, 9.789902983562964, 11.348518137468428, 9.556941222551393, 10.577692576594023, 10.143054683766959, 11.902854921024883, 10.891668358609078, 10.858041955441152, -10.254477540434582, 9.779129539116747, -12.047521801457284, -11.285762480657393, 11.08532340954773, 11.791501587774947, 10.330415140722545, -8.000303183890507, 7.8142665761816295, 10.272510411561333, -9.228593040338152, 13.621763604528514, 10.281282592474822, 9.842210989970443, -8.897555009223034, -11.661665093376133, -10.574401322735294, -9.088241425257205, 9.41464361737126, 7.826884169530347, -8.862109238263114, 9.302847862547333, 9.778804946972029, 10.955280714661157, 10.41250324565489, 9.120758846219422, 9.949381693709489, 9.86586007798676, 10.188403876674986, -10.23060570218654, 10.717200550619651, 9.992598836283301, -9.869841643232382, 11.285118112363426, 11.048574218807353, 12.096493252172099, 10.196237776369447, 8.658544150059363, -9.707689606345108, 9.16727243526311, 12.949799131015864, -11.862948042840443, 10.406712441641263, 10.161281141236726, 11.755086780095793, 11.572180101410188, 11.587373420218857, 9.985973776692054, 10.215518343364518, 9.760255124921654, -10.226143411235611, 8.306937822555811, 10.501769098814833, 12.17369350174728, 10.346505958057358, 9.73732449206884, 8.788819933776981, 8.75945010807412, 8.639262858757014, 11.512828004116534, 9.512348012566573, 9.639981227318307, 9.737722273904987, 9.990781939813443, 10.673481208907384, 10.525158992776834, 9.65856548718563, 10.997739396613602, -10.079141063059755, 10.697811435614195, 6.462998675241988, 9.486557767963822, 9.838513970477297, 7.096132844478664, 10.551119016871045, 11.856087383381197, 11.353963974848392, 10.209156491780545, -10.919091190121009, 10.038044874281125, 8.506500148687088, 10.339284774599294, 9.789222007493663, 10.014914382962488, 8.556897912243647, -9.590097749961814, 9.766486877907868, -9.245870800386362, -10.339624309092356, 11.657428096857155, 9.86470550686006, 8.319828205825596, -9.337439361557903, 10.09013110644664, -9.522436715760602, 9.311311930373563, 8.222206191777158, -9.847857058478688, 9.74491536087782, 13.286479836224824, -10.927524027566367, 12.89294741833726, 9.612559730433823, 10.064588885696045, 9.939471953495639, 10.158814263149432, 9.082227928195232, 9.52005626316353, 8.656916011553234, 9.87054113129236, 9.941800788304313, 10.566794803256125, 8.485734078796249, 8.218851077080863, 9.687431259768436, 10.111747518510445, 10.637245023284528, 10.399489028921568, 10.490204426193834, -10.32104984766549, 9.13925088574663, 9.819092533692782, 11.631329290364246, 7.385727626217857, 12.262743805786235, 11.030901444022176, 9.430986518710709, 9.303793737956369, -9.409609242964573, 10.499564551569772, 9.825194431704354, -7.935280831782403, -8.71144370095907, 10.364350756901372, 8.05766097170241, 8.300397428744173, 10.497029662600385, 10.535491608255825, 7.576769304333519, 9.858141320654305, 9.525411020385146, 10.06712807512838, -11.423172799997511, 10.843772139209728, 8.184923856570386, 9.411755683388478, 10.66460441176725, 9.764191422726409, 11.022544610208543, 12.378640746094, -10.210856566444292, 10.055070737555434, 11.231522707154555, 11.116523394051883, 9.345272992296016, 12.126823933524939, 9.591617362898342, 6.699924723098333, -9.540229296730088, 8.560959498322212, 9.655901923081768, 8.69950616145898, 13.239488174724167, 10.680495272243075, 8.658314606116422, 10.250526206352276, 9.362708777336731, 8.07502444335304, 8.432178694064685, -9.600272052803096, 10.634951805679044, 10.099671572106713, 11.69910423684796, 10.698846885443992, 9.637403194942562, 12.044834033811314, 9.53866588505566, 7.34805563353267, 9.507239765775577, 10.614955846799297, 9.810735261986766, 10.98074920655182, -10.412451608602023, 10.567665035774946, 8.692084764069751, 11.817266553441035, 11.252793990309945, 9.711249164694086, 11.379329472028353, 10.82546168070045, 10.923317214612418, -11.289922183144409, 10.543126420272428, 10.108396086016882, 10.01004053830217, 10.040791483384911, 10.332050590109342, 11.396075170431848, 12.274521468714997, -9.944001056985773, 8.367606886799319, 10.822873184115728, -12.118898397719189, 9.017665346251412, 9.253353497044266, 8.630812753695626, 10.786161585506326, 10.248487959371685, -9.15491646781006, 9.721221748397657, 10.1622584108118, 10.856452146905688, 10.697962160532612, 8.731972068819655, 10.228986093656088, 9.150473164306439, -10.409003314641048, 10.379770712111586, 10.554130347096438, 11.535983504425001, -11.44215384552364, -8.264442660757394, -10.849523744625245, -9.994580105233927, 8.991461973701169, 10.957685014275231, 9.644561850808621, 11.143394976486265, 9.335885348319257, 9.612724521098274, 11.783443347269035, 11.239394091067773, 12.720086963490917, 9.046555223027685, 9.057115825401192, -8.71731145242649, 10.399753653499014, 8.679514699776268, 11.43802826524082, 12.446710402707492, 9.002342327798665, -9.394299784613654, 7.375067528702652, -11.719010949149371, 10.176989006962476, 10.223605915266598, -9.771765497850328, -9.647540882857118, 10.161168086159984, 10.708074100351887, 8.854066137684248, 10.687526551709663, 7.9495272675047435, 9.838714338190446, 10.434373256157912, 9.615285136160265, 11.689851061324237, 10.101882317431764, 8.370915696339752, 10.444548967731144, -10.398292629599535, 10.990521400747406, 9.828365970499455, -9.724191082887867, 10.109466885066368, 10.200516565630545, -10.408121896614052, -10.770887989478515, -8.278807227669615, -10.141801935207535, 8.130952036469141, 10.25620379462664, 10.92741543974, 10.305635503868604, 9.34323610117374, 10.202493212764713, 10.365974543692053, 9.211424147468602, 9.392668022349959, 8.939126463171027, -9.227373029501132, 9.850743894590057, 9.329378967288026, -9.590336445825237, -11.609705287567209, 9.807258495935795, 11.847081663153507, -11.22991345618473, 9.196030549011871, 10.657909614565146, -10.716907833996979, 10.30634321736745, 11.580508238750149, 9.759448766043388, 8.442198433302416, 11.757424500420578, -11.216554469192355, 11.847637925117036, 9.93174489817784, 11.411576071134494, 9.5535427638905, 9.151682338062205, 10.575442542280257, 8.916325210163254, 9.709394270921988, 9.333613367292603, 9.163888484696532, 10.31577062760802, 10.997623605550837, 10.458530058828257, 9.633316795824681, 9.09047520056669, 12.438554264855174, 9.22252355130522, 9.490207947328893, 10.208961589415512, 9.861804174833596, 8.926369830104655, -10.549528516075902, -8.11626060038332, 10.473922281889031, 9.694921890378017, 10.642990628364075, 8.936402884550684, 12.390102960884619, 10.23988415608216, 8.928017427364496, 9.73668833617783, 10.552265536343493, 10.500440636116053, 9.125640804117293, 9.29422642136515, -9.927798562849075, 10.012294736078454, 7.5086130302247245, 10.101586841838055, 9.923123609354953, 8.588653202373541, 9.384254088911462, 11.893718986219566, -10.130041879901158, 11.422050894665926, -11.282004594164466, -9.595223263704165, 11.017794577674014, 10.121910815594823, 11.408571097591443, 11.41699388854534, 13.082976460718033, 7.939011482122247, 8.985925475374499, 10.242632266488949, -10.528077210284021, 9.52581856219472, 8.984992567877633, 9.167677038306405, 8.729775555840751, -10.361724344230609, -11.602251482777312], \"z\": [-9.2103944249267, -10.086662039871573, -8.636432809799706, -9.971095536301771, -8.35930912679104, -9.971137678955246, -8.415560599633464, -9.281457233493972, -9.520941572130209, -9.452549871166052, -9.081384989650566, -7.0127601312323256, -7.71143677548389, -10.60741238397401, -10.49728725993612, -8.716584147342036, -11.42498589093232, -8.13850554370896, -8.506130654872853, -10.023613273029605, -12.801661830601205, -11.108096997693366, -7.314129586920322, -9.090221724657303, -10.16783363738489, -9.328589548489, -10.854739417170068, -11.988221917078954, -9.023947392853849, -9.692533866793136, -11.055519269391848, -9.36878082307885, -7.833608008780356, -9.989095111276084, -8.685353902699731, -8.467942963673522, -10.698511222606578, -10.18782973073323, -10.084486205921056, -10.307534295301954, -7.575513439311971, -9.619463334382516, -9.650114277673147, -10.076752129431801, -10.618498556277803, -8.704501338723189, -8.214661796784668, -10.387379034211783, -9.423102658242797, -9.240232914006256, -8.70401154100312, -11.32120642691568, -8.9539625651957, -10.639282433263809, -10.28259557696205, -11.115532203427952, -9.011557328944601, -10.442240835472129, -11.670596675173622, -10.488719558837175, -9.855431736699405, -9.21730476866688, -9.54641746746586, -9.623740825950593, -11.468459105719255, -10.46541096658601, -11.161921176168677, -7.758482714265805, -10.991008258728934, -10.850677151941756, -8.473632053278637, -8.919054680228848, -9.732105809695861, -9.805817938833167, -11.824667776277938, -9.228705849632178, -9.213011647991035, -10.985424515362785, -8.873485273109779, -10.60040683325119, -9.777462178549792, -9.604101237191685, -11.335519023337584, -10.5547097382516, -13.035114466848354, -10.318055441938492, -9.393755251844492, -10.020228929746612, -11.928181001958896, -9.089363814379245, -11.598135160422745, -10.453095104843985, -10.922133439592988, -7.860517424493135, -11.53254352406516, -11.397291470731776, -9.821759680777472, -9.669964181505732, -11.361947712394473, -11.681393285358658, -9.120881949842536, -8.802675006580113, -11.392631034207248, -9.496875097906369, -9.88370792349303, -9.559131371724641, -9.918477798676674, -10.141434306741926, -9.889521188562254, -10.135027699982064, -9.836017864497816, -9.437214246926004, -10.30902738047132, -10.307806592811884, -10.729492929697168, -11.151001446362338, -8.674249279633255, -11.16063253237177, -10.835855975456978, -9.241785476264939, -7.940041455002438, -10.716915285871211, -8.513674180141328, -10.14961855511014, -11.54657572988886, -8.80228988915731, -8.559339845302032, -9.972152804447939, -8.81667687998479, -10.99696227015675, -10.715257645477482, -9.785187597418792, -8.090671477821271, -9.528165708662618, -10.16363394272034, -10.838405344535829, -10.179863420484013, -8.860558878074515, -9.823697334009994, -10.937073374888337, -9.037589866883135, -9.994528567881462, -9.457185944911515, -9.686740552656751, -10.538835213161276, -10.870184653407986, -9.366955467469298, -8.037279971491914, -10.601793174591819, -10.377640336913718, -8.510724376129989, -10.94768039550708, -9.21388629636697, -10.227338952634385, -9.374793812581071, -9.503870214381664, -9.789488940524683, -8.811522090439706, -9.130946932044708, -10.757610120942285, -10.63996663871209, -10.764173337859663, -10.112454860162552, -10.48509972342997, -9.321143262625068, -10.06249680803689, -10.21751469450596, -11.248188499006782, -10.514449397827141, -9.047403613978556, -10.897945762690624, -10.70363123807348, -7.253107652278086, -9.078623028781227, -10.295429648518319, -10.135659763101797, -6.865198792546818, -8.914178890309692, -9.286105418772081, -8.67212803645105, -10.93064822879044, -10.45842021873529, -10.013678263050737, -10.850049072530087, -11.593704585138887, -11.526522209105861, -11.270732547902233, -9.776106540707932, -10.947919661053694, -10.782913955892445, -10.564476950276338, -12.065667468268558, -10.302175170597057, -11.034235219670142, -10.351010944096027, -11.124631739424965, -9.686836901395196, -6.21025442791137, -8.787464040196081, -10.457986477085026, -10.185909759559955, -10.27177481554412, -10.834452441007645, -10.255414456745589, -11.583330391033162, -9.75067133619272, -8.786000230069874, -9.552762277794, -9.327992628079349, -11.014914851162999, -9.495033067645622, -9.62219183857212, -10.747005996158775, -7.668735467452977, -10.213890919389307, -10.51070361403483, -9.292980041953923, -11.415795827800471, -9.854534537176129, -10.91790895042782, -12.082803646781565, -7.476895017811824, -10.511413703085424, -9.527528479940031, -7.708228747582791, -8.313457394159053, -10.651223218114426, -10.627896410287613, -10.375191832247953, -10.818733430101044, -10.0275122610391, -9.618662095348553, -9.29423537988113, -9.120804656720043, -10.228004625299375, -12.887701038070858, -12.234920574833602, -11.0124411209812, -9.260924611590188, -9.519563838782117, -8.728696729493155, -10.040169661606223, -9.303551649359184, -10.578951665756167, -10.209371007778998, -9.362187442053607, -9.819954236880205, -7.853692282553385, -12.840668522034274, -9.302563257178662, -9.617900966079388, -8.889910003287715, -8.882136401850108, -10.377340356854065, -10.438554908511652, -8.203525015353412, -11.28350489164054, -9.698786497761478, -9.355610339188502, -9.112002219627916, -8.271407288644651, -8.962284023372833, -9.50493614679692, -11.094480783464945, -9.172764685482923, -8.041164657167819, -9.436390159134913, -10.56634985043647, -10.606322256005136, -9.243788102958595, -10.71505304311369, -8.561567018558444, -7.736235127478517, -8.690020666794132, -9.519188011593277, -11.631312400301763, -10.708053446251519, -11.846594709028299, -6.7517748904248105, -8.024110751652467, -9.10715809956665, -9.270670916912625, -11.879911095802349, -10.42797124981532, -10.46431526525887, -9.976632014169558, -10.376880957390524, -12.804860584074781, -7.949793436193911, -10.94208611861384, -11.110780980433807, -11.083387839147491, -9.4314054941465, -6.895048121134101, -10.669529527072177, -10.408608074396263, -8.673613598552851, -9.210484312324072, -9.577464464430335, -9.609336855441825, -11.39611745529081, -9.614210131944233, -10.961699880875807, -10.271087572507184, -11.844638615388133, -10.847656685530204, -10.804152641345766, -9.590129923882788, -9.741662748277191, -8.049390042754853, -11.011035953647175, -11.062319742255074, -11.850245680146278, -10.537849220304984, -12.191972152166558, -7.919473727261597, -10.212479855172486, -9.740813776114331, -13.477643388927513, -10.744072634197837, -9.790009255050686, -11.784155924670182, -8.902969308486089, -11.487457634833468, -10.735142375542894, -9.436938248570753, -7.926444153504047, -10.436173038365585, -8.770221945951256, -9.261969505870743, -10.9748060838397, -10.889201502257334, -8.25035950445889, -9.8364629168873, -9.862706691638797, -10.17370725325904, -12.641397496543965, -10.723946860695426, -9.736093141603424, -8.836808116416167, -11.357363045730326, -11.021006726056438, -12.111080315400324, -10.397053385294733, -8.626562026220123, -9.943630090570277, -9.231407304492423, -12.986135536820644, -10.561059219704784, -10.509359995984642, -10.152183259492395, -11.685396239606836, -11.501946111870561, -11.63276876245492, -10.02771705778395, -10.11993826556167, -9.434879124601217, -8.131110138379524, -8.256945979062213, -10.421564656693796, -12.160700281415565, -10.294492805448336, -9.645855068620342, -8.867586139611694, -8.705311489016733, -8.637579945568035, -11.54012958247081, -9.448064214805276, -9.662202640345692, -9.660400886931658, -10.353683999580378, -10.666826130586239, -11.15288698441324, -9.66050950709644, -10.947182036253242, -10.279997883738968, -10.70404116060038, -6.462940365283506, -9.495188332726876, -9.818805462636872, -7.082700354125411, -11.40286778824603, -11.923195103386504, -12.234563134029036, -10.163887647429718, -10.99429920128733, -10.092647816476843, -8.447799327219547, -10.603962644195365, -9.576669259207963, -10.632822649120005, -8.65076346748149, -11.503919136407326, -9.194253533266508, -8.308013991808876, -9.273199285255547, -11.645652680590603, -10.01186144998516, -8.37725177345394, -10.317272453754406, -10.108022383493214, -8.654808142846061, -9.331808770513069, -8.212208048016947, -10.854414358947617, -9.489619785612883, -13.231594531465545, -9.334011014297932, -12.935091404257312, -9.109842708970207, -10.114435659215879, -10.076295924951832, -10.10876955855483, -9.073196464881836, -9.552479965214525, -8.763489029064536, -9.713754076207223, -9.882170549350882, -10.965098831254588, -8.447297331105027, -8.211868058723695, -9.651368686397094, -10.20533883935746, -11.18967334320349, -10.291206626525891, -10.598361227199943, -9.886955204406533, -9.15462216973944, -9.74276756925025, -11.724101369138895, -7.371476227486605, -12.247151765647985, -11.010136308404688, -9.428523924870575, -9.311480760009132, -9.403862322445926, -10.480908237711638, -9.806435590766348, -11.238995797690796, -11.714103021750057, -10.373874652546817, -8.030143630269047, -8.233741891225106, -11.014850896668122, -10.58817158719936, -7.495150369624376, -9.784325158438888, -9.474051310025306, -10.04295239235639, -10.01296585628967, -10.980116902033267, -8.216642595962346, -9.284179177673897, -10.652389658883468, -9.75530123680081, -11.084302818022305, -12.434307869207776, -10.204109279717645, -10.063428985577037, -11.263092849944604, -11.093005087392376, -9.378192470249413, -12.223943470067402, -9.497325640284792, -6.726219281187442, -10.381743007980234, -8.57846405358291, -9.39610351296424, -8.71035168349302, -13.259899456195942, -11.414592445570397, -8.626055936512103, -10.590193999094465, -9.475337899951835, -8.098909300354743, -8.389694692951588, -10.680195974289118, -10.521537427502812, -10.291723953800599, -11.724066411734157, -10.68153853823218, -9.636022292541838, -11.966776116350013, -9.156528748444783, -7.342217569806488, -9.422494776897025, -10.540854782375797, -9.756690867070372, -11.017507461564715, -7.602543643787958, -10.78890168424208, -8.71124408419114, -11.836477167132793, -11.12111964362169, -9.6531167838013, -12.54497431792469, -10.796161778048006, -10.928070458719167, -8.184439282103192, -10.556054629762606, -10.07368108392534, -9.945716285604174, -10.14013968342284, -10.331841462702632, -11.409514655125736, -12.24720538506136, -9.708315849803936, -8.427251712759336, -10.816943720213755, -10.057684734223601, -9.003191885395683, -9.226397349871798, -8.73505692231028, -10.727624078157247, -10.11966806908879, -10.592231488161412, -9.405562646757284, -10.51766842531002, -10.880821732495663, -10.781676893123922, -8.841428864768572, -10.397279649475617, -9.156950360045215, -10.184740654481782, -10.773728583627822, -10.590961216338895, -11.432731878678533, -11.914153684983084, -11.88152409343301, -8.868624240988883, -9.471939754604637, -9.014835976305017, -10.96840148697646, -9.624820061936735, -11.163552261199127, -9.242904957278004, -9.30524379404263, -11.69459124339794, -11.141448048732247, -12.734593708550992, -9.005011758311909, -9.004724115152005, -9.331626036339788, -10.384069658773358, -8.621109838430712, -11.536857256046236, -12.41453945741524, -8.335228375863014, -10.991975824016421, -7.399489121216039, -10.273897521586518, -10.244558610158496, -10.724529931661932, -12.462548710497428, -10.921263065751283, -10.15296669999483, -11.24131962421881, -8.95448282172603, -10.617360077149037, -7.989337097343963, -9.835858165940728, -10.448441711266078, -9.649355304572511, -11.682924382248313, -9.882868662841279, -8.328371366548678, -10.355303782906788, -8.743732002451459, -10.9959606934371, -9.855019528407256, -10.610835847340018, -10.074867209576043, -10.180438058657078, -10.729754245265855, -10.371549754358663, -10.432953279602357, -9.075790767137033, -8.057965583265048, -10.333025385023621, -10.943699243094326, -10.197143538680587, -8.960225604279998, -10.34583100864789, -10.41805237529275, -9.267835205909062, -9.080627849142937, -8.993505493483438, -11.934549787680288, -9.767424362090424, -9.338260758998263, -11.890689944385448, -10.280020484848407, -9.823878522451967, -11.853660264191962, -10.871553812347507, -9.086893746637466, -10.666233831683057, -10.007881488879008, -10.322204571322386, -11.653368547252601, -9.632822211780862, -8.524271126168328, -11.69143817247433, -9.111482585063353, -11.84682863522295, -10.18333219400446, -11.515052594670852, -9.587050601255612, -9.09859551579187, -10.813502340183545, -8.924141437967055, -9.709454888080957, -9.34823549568022, -9.115199892000321, -10.307193375519745, -10.888236758275095, -10.898077132038576, -9.570090141914, -9.028717906235013, -12.367587674046852, -9.269544766905963, -9.458932234644015, -10.146958340575079, -9.859118607962122, -9.044756000063796, -9.693861179613966, -10.534721267113651, -10.366103582875839, -9.726415660451515, -11.049767984078422, -8.90399168907425, -12.349396089303838, -10.203751464385656, -8.92573669878543, -9.340481636606638, -11.033710557673892, -10.483107784645146, -9.213816603412276, -9.369468141753583, -9.84829699770744, -10.02710388100538, -7.514005981998423, -9.960642002495183, -9.863513138533794, -8.557043807658063, -9.398482538817136, -11.883513114559213, -9.232498987053248, -11.357334950694682, -11.106210233430005, -8.909127625697607, -11.055069428169789, -9.97131272480077, -11.45296816473521, -11.29194984256014, -13.063347388590216, -7.921973750469709, -9.020698805239315, -10.581076715575156, -9.575389249535295, -9.036020339343107, -9.093828450001388, -9.13722626343236, -8.662952243083202, -9.568906814197653, -7.513276887726271]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 0\", \"marker\": {\"color\": \"rgb(31, 119, 180)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 0\", \"scene\": \"scene2\", \"showlegend\": false, \"text\": [\"example_2\", \"example_15\", \"example_23\", \"example_29\", \"example_30\", \"example_32\", \"example_43\", \"example_44\", \"example_45\", \"example_49\", \"example_51\", \"example_56\", \"example_58\", \"example_59\", \"example_63\", \"example_65\", \"example_67\", \"example_69\", \"example_70\", \"example_71\", \"example_72\", \"example_73\", \"example_76\", \"example_78\", \"example_81\", \"example_84\", \"example_99\", \"example_100\", \"example_101\", \"example_107\", \"example_109\", \"example_111\", \"example_115\", \"example_118\", \"example_120\", \"example_123\", \"example_124\", \"example_128\", \"example_135\", \"example_141\", \"example_148\", \"example_162\", \"example_163\", \"example_168\", \"example_170\", \"example_173\", \"example_175\", \"example_182\", \"example_184\", \"example_185\", \"example_188\", \"example_192\", \"example_194\", \"example_196\", \"example_198\", \"example_199\", \"example_203\", \"example_208\", \"example_210\", \"example_211\", \"example_212\", \"example_218\", \"example_220\", \"example_226\", \"example_231\", \"example_233\", \"example_236\", \"example_237\", \"example_239\", \"example_240\", \"example_244\", \"example_247\", \"example_250\", \"example_251\", \"example_254\", \"example_256\", \"example_259\", \"example_261\", \"example_265\", \"example_266\", \"example_270\", \"example_271\", \"example_272\", \"example_273\", \"example_274\", \"example_275\", \"example_277\", \"example_281\", \"example_286\", \"example_289\", \"example_292\", \"example_297\", \"example_298\", \"example_300\", \"example_303\", \"example_305\", \"example_306\", \"example_307\", \"example_309\", \"example_310\", \"example_311\", \"example_316\", \"example_322\", \"example_324\", \"example_331\", \"example_332\", \"example_334\", \"example_339\", \"example_342\", \"example_344\", \"example_350\", \"example_351\", \"example_352\", \"example_353\", \"example_354\", \"example_358\", \"example_361\", \"example_363\", \"example_365\", \"example_366\", \"example_367\", \"example_368\", \"example_371\", \"example_374\", \"example_376\", \"example_380\", \"example_381\", \"example_382\", \"example_383\", \"example_393\", \"example_394\", \"example_398\", \"example_405\", \"example_408\", \"example_411\", \"example_413\", \"example_414\", \"example_415\", \"example_416\", \"example_420\", \"example_422\", \"example_425\", \"example_426\", \"example_427\", \"example_429\", \"example_432\", \"example_433\", \"example_436\", \"example_438\", \"example_439\", \"example_445\", \"example_450\", \"example_453\", \"example_462\", \"example_464\", \"example_465\", \"example_471\", \"example_478\", \"example_479\", \"example_480\", \"example_481\", \"example_482\", \"example_483\", \"example_485\", \"example_486\", \"example_493\", \"example_494\", \"example_495\", \"example_497\", \"example_505\", \"example_506\", \"example_507\", \"example_513\", \"example_514\", \"example_518\", \"example_519\", \"example_522\", \"example_526\", \"example_527\", \"example_529\", \"example_530\", \"example_532\", \"example_534\", \"example_535\", \"example_538\", \"example_543\", \"example_544\", \"example_548\", \"example_551\", \"example_552\", \"example_554\", \"example_555\", \"example_557\", \"example_561\", \"example_567\", \"example_570\", \"example_572\", \"example_575\", \"example_576\", \"example_579\", \"example_581\", \"example_582\", \"example_583\", \"example_584\", \"example_585\", \"example_588\", \"example_590\", \"example_591\", \"example_593\", \"example_596\", \"example_598\", \"example_599\", \"example_602\", \"example_607\", \"example_609\", \"example_610\", \"example_611\", \"example_613\", \"example_614\", \"example_617\", \"example_618\", \"example_619\", \"example_620\", \"example_628\", \"example_630\", \"example_631\", \"example_637\", \"example_650\", \"example_651\", \"example_654\", \"example_670\", \"example_674\", \"example_678\", \"example_679\", \"example_680\", \"example_692\", \"example_693\", \"example_694\", \"example_701\", \"example_704\", \"example_705\", \"example_706\", \"example_707\", \"example_710\", \"example_712\", \"example_715\", \"example_720\", \"example_721\", \"example_727\", \"example_730\", \"example_733\", \"example_736\", \"example_741\", \"example_744\", \"example_745\", \"example_746\", \"example_752\", \"example_755\", \"example_757\", \"example_759\", \"example_764\", \"example_765\", \"example_767\", \"example_771\", \"example_774\", \"example_777\", \"example_780\", \"example_781\", \"example_785\", \"example_787\", \"example_788\", \"example_792\", \"example_802\", \"example_806\", \"example_807\", \"example_808\", \"example_812\", \"example_813\", \"example_817\", \"example_818\", \"example_819\", \"example_824\", \"example_829\", \"example_832\", \"example_834\", \"example_838\", \"example_843\", \"example_845\", \"example_849\", \"example_855\", \"example_861\", \"example_865\", \"example_873\", \"example_879\", \"example_886\", \"example_887\", \"example_892\", \"example_900\", \"example_904\", \"example_905\", \"example_906\", \"example_907\", \"example_909\", \"example_914\", \"example_915\", \"example_923\", \"example_925\", \"example_926\", \"example_930\", \"example_931\", \"example_936\", \"example_937\", \"example_939\", \"example_942\", \"example_943\", \"example_948\", \"example_949\", \"example_952\", \"example_962\", \"example_963\", \"example_964\", \"example_965\", \"example_966\", \"example_976\", \"example_978\", \"example_979\", \"example_984\", \"example_985\", \"example_988\", \"example_990\", \"example_993\", \"example_994\", \"example_1004\", \"example_1010\", \"example_1013\", \"example_1018\", \"example_1022\", \"example_1027\", \"example_1029\", \"example_1033\", \"example_1036\", \"example_1040\", \"example_1043\", \"example_1050\", \"example_1052\", \"example_1053\", \"example_1054\", \"example_1061\", \"example_1063\", \"example_1067\", \"example_1073\", \"example_1075\", \"example_1083\", \"example_1084\", \"example_1090\", \"example_1100\", \"example_1102\", \"example_1103\", \"example_1105\", \"example_1106\", \"example_1107\", \"example_1114\", \"example_1117\", \"example_1120\", \"example_1125\", \"example_1133\", \"example_1134\", \"example_1138\", \"example_1144\", \"example_1146\", \"example_1157\", \"example_1159\", \"example_1160\", \"example_1163\", \"example_1164\", \"example_1165\", \"example_1170\", \"example_1173\", \"example_1177\", \"example_1179\", \"example_1181\", \"example_1187\", \"example_1189\", \"example_1192\", \"example_1198\", \"example_1202\", \"example_1204\", \"example_1211\", \"example_1220\", \"example_1222\", \"example_1223\", \"example_1225\", \"example_1228\", \"example_1229\", \"example_1231\", \"example_1233\", \"example_1235\", \"example_1239\", \"example_1240\", \"example_1242\", \"example_1245\", \"example_1247\", \"example_1249\", \"example_1255\", \"example_1258\", \"example_1263\", \"example_1265\", \"example_1270\", \"example_1271\", \"example_1272\", \"example_1273\", \"example_1274\", \"example_1280\", \"example_1281\", \"example_1284\", \"example_1287\", \"example_1288\", \"example_1289\", \"example_1298\", \"example_1301\", \"example_1304\", \"example_1305\", \"example_1307\", \"example_1309\", \"example_1314\", \"example_1316\", \"example_1317\", \"example_1318\", \"example_1319\", \"example_1320\", \"example_1322\", \"example_1324\", \"example_1326\", \"example_1331\", \"example_1335\", \"example_1339\", \"example_1343\", \"example_1344\", \"example_1345\", \"example_1347\", \"example_1355\", \"example_1357\", \"example_1360\", \"example_1362\", \"example_1364\", \"example_1376\", \"example_1379\", \"example_1380\", \"example_1381\", \"example_1383\", \"example_1384\", \"example_1386\", \"example_1387\", \"example_1389\", \"example_1391\", \"example_1392\", \"example_1393\", \"example_1395\", \"example_1403\", \"example_1405\", \"example_1412\", \"example_1414\", \"example_1417\", \"example_1420\", \"example_1423\", \"example_1424\", \"example_1425\", \"example_1428\", \"example_1429\", \"example_1431\", \"example_1432\", \"example_1433\", \"example_1436\", \"example_1440\", \"example_1441\", \"example_1447\", \"example_1448\", \"example_1452\", \"example_1453\", \"example_1454\", \"example_1458\", \"example_1464\", \"example_1469\", \"example_1471\", \"example_1472\", \"example_1474\", \"example_1481\", \"example_1483\", \"example_1490\", \"example_1491\", \"example_1493\", \"example_1498\", \"example_1502\", \"example_1503\", \"example_1509\", \"example_1510\", \"example_1511\", \"example_1516\", \"example_1525\", \"example_1526\", \"example_1530\", \"example_1531\", \"example_1537\", \"example_1542\", \"example_1546\", \"example_1547\", \"example_1548\", \"example_1551\", \"example_1552\", \"example_1553\", \"example_1554\", \"example_1556\", \"example_1558\", \"example_1560\", \"example_1564\", \"example_1565\", \"example_1568\", \"example_1571\", \"example_1575\", \"example_1582\", \"example_1586\", \"example_1588\", \"example_1591\", \"example_1592\", \"example_1596\", \"example_1601\", \"example_1602\", \"example_1605\", \"example_1606\", \"example_1607\", \"example_1608\", \"example_1610\", \"example_1611\", \"example_1612\", \"example_1613\", \"example_1615\", \"example_1616\", \"example_1621\", \"example_1626\", \"example_1632\", \"example_1635\", \"example_1644\", \"example_1645\", \"example_1646\", \"example_1649\", \"example_1650\", \"example_1651\", \"example_1652\", \"example_1656\", \"example_1657\", \"example_1658\", \"example_1664\", \"example_1667\", \"example_1671\", \"example_1672\", \"example_1674\", \"example_1675\", \"example_1676\", \"example_1677\", \"example_1683\", \"example_1686\", \"example_1689\", \"example_1694\", \"example_1696\", \"example_1703\", \"example_1708\", \"example_1711\", \"example_1712\", \"example_1717\", \"example_1719\", \"example_1726\", \"example_1727\", \"example_1729\", \"example_1734\", \"example_1735\", \"example_1738\", \"example_1739\", \"example_1743\", \"example_1745\", \"example_1749\", \"example_1752\", \"example_1754\", \"example_1755\", \"example_1759\", \"example_1761\", \"example_1763\", \"example_1764\", \"example_1765\", \"example_1767\", \"example_1770\", \"example_1773\", \"example_1775\", \"example_1778\", \"example_1779\", \"example_1782\", \"example_1783\", \"example_1786\", \"example_1787\", \"example_1791\", \"example_1801\", \"example_1808\", \"example_1810\", \"example_1811\", \"example_1813\", \"example_1814\", \"example_1816\", \"example_1817\", \"example_1823\", \"example_1827\", \"example_1831\", \"example_1844\", \"example_1851\", \"example_1857\", \"example_1860\", \"example_1863\", \"example_1864\", \"example_1865\", \"example_1867\", \"example_1871\", \"example_1872\", \"example_1874\", \"example_1882\", \"example_1888\", \"example_1891\", \"example_1903\", \"example_1904\", \"example_1907\", \"example_1909\", \"example_1910\", \"example_1911\", \"example_1912\", \"example_1914\", \"example_1917\", \"example_1918\", \"example_1920\", \"example_1922\", \"example_1925\", \"example_1928\", \"example_1929\", \"example_1930\", \"example_1932\", \"example_1935\", \"example_1936\", \"example_1937\", \"example_1939\", \"example_1941\", \"example_1948\", \"example_1952\", \"example_1955\", \"example_1957\", \"example_1959\", \"example_1960\", \"example_1963\", \"example_1972\", \"example_1974\", \"example_1975\", \"example_1976\", \"example_1978\", \"example_1979\", \"example_1984\", \"example_1985\", \"example_1987\", \"example_1988\", \"example_1989\", \"example_1990\", \"example_1993\"], \"type\": \"scatter3d\", \"x\": [10.177831740432934, 9.534298715772811, -10.638919856739657, 11.415278859095636, 10.68849364949543, -10.134193370565404, 10.130766305996499, -10.051455731212634, 11.385267343683411, 10.441059829499546, 10.244995744429811, -9.753103583753193, 10.061303374819207, 9.325504352346897, -10.137005218765173, 10.512946805567703, 8.67748132498726, -12.587347864285697, -9.078342026404846, 10.07171365132163, 10.760544155954506, 10.478764714041441, 11.864325183266418, 9.629342327349933, 11.282352864416882, 10.57132487951842, 9.123165066682997, -10.78135424832675, 9.965342817459845, 9.478649741112246, -9.754539220658664, 9.53358317227941, 8.306673275404588, 10.086791739271282, 10.22570516273943, 9.568346713433954, 10.063061248717501, 9.463042932330094, 10.712294266111323, 10.266443614727132, 10.905229004978324, -10.300428914897724, -7.202824270759107, 10.499506301837384, 9.157112462985891, 8.55158996105485, 8.97469053100251, 9.444749294233592, 10.211684960697903, 9.808472793271687, -10.625917853878182, 9.928479478803597, 10.11487470131824, -10.125300534632721, 8.695265800353381, 9.36884967010222, 9.865338702554528, 10.930321134219911, -8.246381911243535, 11.480897181667101, 10.613733590452258, 8.221918199695377, -9.509850836064425, 9.981095217068944, -11.036688182162994, 8.774546504470036, 10.656993709662224, 8.869382936859513, -9.655603898703841, 10.752918992490734, 11.275888254250809, 11.596476156390597, 9.811793167803506, -11.249595094944144, -10.397082405908295, 9.373364808823595, 10.703164648399397, 11.25326579843883, 10.306848808350534, 9.331331101944144, 9.59758868747817, 9.665927228042307, 9.716953567106001, 9.621162847167794, 11.032425225285774, 11.610003037142867, 11.836369099176556, -10.383536751261056, 11.086639019423703, 10.470594762583993, 10.843537148862115, 9.06069258912347, 11.539634423075196, 10.128993323727844, -11.126199435960785, 9.54751231804083, 10.184830377155036, -10.947486744110495, 10.033316251268491, 9.121886813818037, 8.609252078251835, -10.655987649222103, 10.927022799457223, 8.917571469298004, 10.728991790504999, 11.333629307040223, 10.410538931149771, 7.708928482536351, 9.791834650690367, 11.498083701987108, 9.797819746289305, 12.660569004488174, 12.32693127724996, 10.570839200932616, 10.024711081127718, 11.832481955043509, 10.159750997949814, 12.454972480048918, 10.276501665696156, 10.65249452383441, -9.674469620875533, 12.418850367109338, 10.46882894704782, 10.947340779944623, 12.828053725398831, 11.63634644177627, 10.061632664421479, 9.386253907438899, 9.74193316728213, -10.041445883165785, 11.759341065556763, 9.942703635101479, 8.72785773527837, 10.744515059890597, 8.903266293131294, 10.322993165100353, 10.542680774529034, 9.756717293092567, 10.921241186093859, -12.143818100463774, -11.115765167457502, 10.773788258862488, 9.155356854733581, 10.209081924542506, -10.317471598317931, -11.819663983562638, -9.320346269711887, 10.374424886436238, -9.841066222223263, 9.059484350222402, 9.554817991466939, 9.537502255742545, 10.504252885708803, 11.32582230873554, -11.51014734111658, 8.034909442627493, 10.932401108433732, 10.319153295941804, -7.622051198967227, 10.24377028928115, 9.782837009551072, 9.024106048720832, 9.693912822110862, -10.728779576774238, 9.531614426832634, 8.843949258700095, 10.124120106283987, 13.097743192704433, 10.152075435448484, 10.490093812522046, 10.15711416192504, 8.551105590837986, 10.906512703933227, 9.497644795564739, 8.434830301123252, 9.61628698332334, 11.015869780100113, 9.85040788041519, 11.270651088785026, 9.753660596914468, 10.475209331413623, 8.751060707015599, 9.818224717611933, 10.64787555286353, 10.594335127785326, 9.904426233486095, 9.601650817792907, -9.49860507314953, 10.21626542217229, 9.548101018773153, 9.010427978929064, -7.400777101261405, 11.318376710869614, 9.839543910898868, 9.85965518934585, 12.218461794205279, 10.757787941432934, 11.510484174554238, -11.421091259914434, 8.253984882888556, 9.624209395562362, 10.118104080852898, -7.436694923112233, -10.701514834697651, 10.488318519571187, 10.016687251190538, 8.158854045686327, 10.312446186905019, -9.897814257111465, -9.945050766254736, 9.614871421295184, -7.8942408497135315, 9.548789322359761, -10.602057834190681, 11.173002569703854, 9.660854902610259, 11.929169455246727, 7.9874970789714315, 9.128765245691982, 11.464072762534428, 8.985675337299554, 10.060014106540953, 11.24271811959155, 9.30073214729249, 10.457172231765908, 10.820489611081037, 10.639572280484195, 9.868738329981571, 8.616922066822918, 8.875699628551803, 9.49835785695971, 10.106569811732353, 10.584741160847601, -10.669217231431986, 10.760073695941577, 12.192219640790967, 9.748952647237914, 10.523277150689985, 10.516125420679208, 8.811801864186242, 8.49495355502166, -13.217029086646047, 8.820544805846138, 9.466224392808149, 10.162019330162249, 11.02108681069921, 10.85417018077819, 10.442838539972682, 11.409962169376357, -10.72823170619091, 11.623312710116043, 11.133344157669109, 7.994899256389316, 8.502883822760749, 9.417016718832448, -11.001083046483387, 10.898467934860008, 7.941279770032411, -10.562373911565913, 9.786410816104535, 8.93103879702854, 9.384703522429191, 10.536086957031307, 10.914022310819885, 9.683198000671915, 10.103939493910858, 10.165879335820398, -11.774150284358873, -9.58346448568149, 9.34176117568975, 9.425721699125365, -10.760952917890057, -9.185086106395698, 10.234883256067796, 11.466066675925886, -10.169491958079336, 8.064061822180987, 9.017182914607925, 9.37039799098157, 9.399021693104554, 9.063281812032939, 8.637161352463956, 8.867193641540469, -10.148265653459, 9.351584909661717, 10.743689482745278, 11.005537090382715, 8.866256733079126, -9.537123433326649, -10.856388877949449, -10.045832223442442, -12.230838132242184, 11.226185461017483, 9.952896470544909, -10.33876774564621, 10.723937901061236, -8.79896182039004, 9.521715170170042, 10.384852580831229, -10.252313555016586, 8.717341936865889, 8.863678671334041, 10.005139587653717, -10.62596231393928, 10.354193654454537, -9.823748357695093, 11.663005315020749, -9.696226414242249, 9.588105194324138, 12.17232580089256, 10.179194224416484, 9.034743838474222, 9.352659178977323, 10.651698694028141, -13.090742922638224, -12.035654311798801, 9.463591546091624, 7.910871127452425, 10.805673851545516, 11.363471614236254, 9.299157560599955, 9.819477075597423, 9.087895655441274, 10.805477846676801, 9.386594391218361, 9.550384593519674, -8.0402296676917, 10.62398717779682, -11.075356319522973, -11.371635119529543, 10.180900341933064, -8.282036216212552, 10.607627913870644, 9.81879650523203, -11.359944247352628, 11.487523357260397, 9.906597509433848, 10.552803996597023, -10.483702262685556, 11.050634974797735, 10.534493448266272, -11.624350075101695, 9.695355560808215, -11.078590413149247, 11.42623350668276, 10.55318723342326, 10.595847328897035, 10.624470139663588, 8.133316416905405, 10.797599215889107, 7.356796333220535, -10.674896949465152, 10.338611764405176, 9.961016900932702, 10.460678200021487, 10.507424899387509, 9.446305109993919, 11.10607633333955, 8.987858987474501, 8.35708803903847, 10.961273130811513, 10.259393534564309, 10.274937513624195, 10.343071851285494, -10.644470868706417, 7.445544303658254, -9.64959820492367, 11.741106476733297, 9.014322511681302, 8.834605216161233, 9.663865954261352, 11.461979636144742, 11.35784709209186, 10.828581576304344, 10.250418826653696, 9.208851624161571, -10.741847047789292, 8.50687937785677, -10.719383046432535, 9.8922632887895, 10.51198347684767, 11.659081589472736, 8.979170276714923, -11.9855886293904, 11.183569489528956, 9.58448665819338, 9.908802865114323, 9.866713190592852, 8.279871946339835, -10.846685054312438, -9.86451075919118, 10.607433813331822, 10.042852220550856, 7.940463864960125, -11.964727962687467, -10.071379619702016, 9.507640459935525, -9.886132990499055, 10.490418147843677, 10.608665758310202, -10.868274605014618, 9.744926718887312, 8.541070114446345, 8.38438502202572, 8.316684137961829, 10.227184001823144, 9.613423131421944, 8.938978143532484, 9.805503348067996, 10.249551763159722, 9.699994784825316, -11.227551655827414, 9.74850246450543, 10.083491668234629, 9.831227959686123, 9.491189639011614, 11.045514141287782, 11.693139228138016, 10.836893656950483, -9.974281577976033, 11.247642083244767, 10.885111223929586, -9.951657077044455, 10.129613321715143, -9.29257294501207, 10.890797457643147, 11.082240951096281, 9.697091386039792, -10.073773807717547, 12.326168492348378, 11.560302304966102, 11.756723352654824, 10.174500119172999, -9.347518241891352, 8.40853783782653, 10.203327034173528, 12.063344964507326, 9.202499640511157, 8.280312167751916, 10.103777541318907, 11.154838316677035, 8.841172395744229, 9.906303219761758, -8.588017239711283, 11.57411051143082, 9.796975670338517, 11.307790040468282, 8.911332883449363, 10.003555056913894, 9.439597125138667, 9.759252908809296, 9.044150638356685, 9.685093442741874, 11.45246642969978, 9.618176946486146, 12.192509516711869, 8.04115857390106, 9.780032272095303, -9.78592964038731, 10.610849785576837, -9.729862478809014, 10.27627341044952, 10.952454310620023, 9.27547269443908, 10.083824035280346, -10.600205940693213, -8.549192342415706, 11.142739219362777, -8.991401997682981, -12.463929165736594, -8.216923625464347, 10.01322748745131, 10.67619215045129, 10.380497397390394, 11.430845594644278, 10.915681857412514, 11.194743529272124, 9.909795302812785, 11.164802465352016, -10.164057063129013, 9.411055682769003, -11.77967255129429, 11.919356813653083, 10.820859940031855, 9.156834103766164, -11.240868056569228, -9.560835748050593, 9.809370709852523, -9.610149487853661, 10.23614921447263, 7.911537971058151, 6.906247022698676, 9.342118779763766, 10.050548677903148, 9.622540615923224, 12.908860625130638, -10.280196658437713, -9.299763631427439, -8.73262661423053, 9.241661927501172, 10.18149916056196, 11.210726275330426, 9.344376645573544, -9.22802633127401, 9.69979399600312, 11.98747668004308, 9.794510839120363, -11.633781376040439, 11.362294360564793, 9.857255648737118, 10.227224112024834, 10.583745590269556, 9.237189340774435, -10.627901400358184, -11.687075233777506, 10.780270006595488, -9.071973756369184, 12.491094074165948, 10.84396059007831, 11.28854525492376, -8.532994022635531, 12.812477610349138, 9.948911697023302, 9.984498660034713, 10.819480385670115, 9.877850765362645, 11.397196315720842, 9.039935840951694, 8.391285258775511, 9.185529102029554, 8.192680179303627, 9.587402576023084, 9.201031435963188, 9.233561170468969, 11.026954069797696, 7.957559694048047, 10.210928932063004, 8.74214489895725, 7.7882898077440466, 10.659109243134719, 9.352475083144759, 10.91650802720544, 9.108675683729032, 10.081960787916277, 10.733218674662831, 10.10327764023521, 11.29904660424805, 8.852353855977592, 10.053181810181725, 9.541434906057297, -11.540398367699623, 10.079807892722423, 9.959503816999872, 8.651487809872647, 12.251520638428353, 10.63362830848316, 11.333752366975315, 10.957421047226426, 9.19947573709743, 9.790003454470687, 7.851954600780348, 7.025632729289928, 10.671136972598424, 10.721819559372824, 11.224379768894803, -10.633742842184354, 9.671065031223517, 9.911899580793282, 9.205563285368934, 9.489061852061385, 9.49276676825167, -7.344147906893969, 11.537667595936737, 9.814911641934133, 9.11383689266199, 10.183697156490807, 10.533589353161723, 10.160367535002063, -8.128959263555748, 10.511622948777338, 8.515292305568236, 9.292912347002213, 9.590268140330044, 8.8555574382871, 8.696049750113987, -10.249814777864465, 11.262532348268937, 9.13765306455338, 10.157735836437233, 13.643436548334552, -11.489069261180727, 10.942210526395076, 9.211582288148644, 10.652505047798705, 9.779398014861611, 11.46385116153394, 9.453138910506373, 10.146101396243516, 10.615143550255286, -9.597868513848361, -11.116546873460942, 8.69450848694446, 10.200700939933895, 9.166449456297897, 10.215924531911572, 8.764799512033056, 8.854091614393008, 10.813164502111846, 9.603737481720636, 11.05397181300304, 9.586686122245538, 9.76959661298142, 10.476357508204146, 10.645987398454835, -11.04069800731309, 11.302188423377503, 9.198667172745134, 10.101381771038628, 11.519412262521367, -10.176818113470302, 9.76181218217129, 9.980928803422747, -9.572154195914848, -7.297926727791374, 7.665361485531745, 10.876536504355181, -9.167463861285981, 9.065516159632768, 8.902610246979219, 10.49492332924048, 10.24521203178007, 10.148888329429827, 8.764048530813735, 9.867509644607415, 9.712995284397618, 9.086665536991665, 9.974715351962727, -10.22960866407268, 8.76660500339683, 10.375543226374157, 11.378595188136448, 9.662167724576197, -8.44496962121084, 9.211761088900792, 8.81845103590103, 8.648446093670586, 10.884850927148882, 10.965135684929471, 10.150213860049243, -11.187973481720702, 9.947879880411582, 9.950478988527681, 10.722554830627834, 11.19679812354751, 11.283835724888995, -12.772539388316622, 9.129302595777379, 10.236853461882752, 8.384531900909787, -8.64770404798996, 10.076211616149294, 9.648745848878221, 10.201542743769318, -11.369413004714424, -9.417247746798662, 10.050503031051253], \"y\": [10.431991436409982, 10.578922789979023, -11.08784689604023, 9.368319662326709, 10.864509875031393, -9.145380298542515, 8.530649738803161, -8.734969664421655, 10.682570704093212, 8.692681269424902, 8.273496467261813, -10.756438362455098, 9.805802993507807, 10.530566150578572, -10.18011272998371, 10.668778436691964, 10.643328374285842, -10.269615786950212, -11.342604186205497, 9.888926759072332, 9.875598370488358, 9.012441494913128, 8.710347724810742, 10.243782859181428, 8.700127770581185, 9.207415666630974, 9.815447846049242, -9.64218312692443, 10.7953377253875, 8.558276688565394, -10.052087148194078, 10.548056448677952, 10.311829346914637, 10.640392422182662, 9.782263834222302, 9.053150858192362, 9.213572725425614, 9.503469658951172, 10.692198950929914, 11.496235358415476, 8.895901224717713, -11.145131426840642, -12.974158509365267, 10.19977539821301, 9.146700784294923, 10.040131479847442, 9.86771238002933, 9.887351795241448, 9.929084065652068, 11.290266011609688, -11.123453067067258, 10.147484489283585, 11.208989268177485, -12.135275666847397, 9.054181960931308, 9.793301253704078, 9.802668797638288, 9.554716217405163, -10.315071284971653, 8.359029123511537, 10.990830333374355, 10.483492038645167, -9.092657211857652, 8.509900286031097, -10.984654073509118, 12.267037142183929, 10.330132567017964, 10.007529827792071, -11.375256470526262, 10.215957198774724, 9.049433653585467, 8.718453840398695, 9.60125879686179, -9.289832655501169, -10.302489953410696, 10.227936908356645, 9.14022186983589, 10.217130995860394, 10.693325962928839, 9.498699573350217, 10.19702192134427, 10.34791074035657, 11.126312963017314, 9.872790417544415, 9.96413732730198, 9.648344632228618, 11.349788757875157, -9.14148970496857, 11.979403790977988, 10.397481244930434, 9.168525461517437, 10.189806842706119, 8.274260608596698, 8.657166445432388, -9.131881461414878, 9.798286161824397, 8.591198578810923, -7.942150070565106, 10.735350723743633, 10.658232735053621, 8.836023891177458, -9.339346894309443, 8.420813388598399, 10.81579400350564, 9.045639499970287, 9.977619255984662, 9.835962717704705, 10.595784879170099, 8.57563314787465, 8.252731050294305, 8.805071194788255, 9.590863900488054, 9.168886529464316, 9.986819204723757, 9.936588900087296, 9.144192081386901, 9.901585094397303, 9.146346650844777, 9.531953722671854, 10.547320314461079, -10.089442384176456, 10.14694970200409, 9.334935447012318, 10.623486152469965, 9.05247643498976, 10.636873495352503, 10.339192968496597, 10.853754725674913, 9.663818817070402, -10.164655954480336, 8.64917178909983, 9.12329098874219, 10.032804002982497, 9.384590803637789, 11.063427899912183, 9.772327947689812, 10.192699869638561, 9.570166270951905, 8.828190989155607, -8.21558969179312, -7.4735799252741, 10.634598845051233, 9.897842787110605, 11.414447848827578, -8.56707263610383, -9.999502022651328, -11.618586014578087, 10.377459755952348, -9.03776220785584, 9.626572184833593, 10.82715264984097, 10.97859365551716, 10.023128245185594, 8.012431767579512, -8.245898709458, 12.030888859836285, 9.510323814805727, 9.950630908100633, -11.141731390118052, 9.658436721489581, 9.950861279134816, 11.427995669690947, 10.417739933661831, -9.325448456420052, 9.749316881555785, 10.689917582638476, 9.595909491600912, 8.615436636653907, 10.26750328703556, 10.443309312812659, 9.212899904918897, 10.193565194717024, 9.645036541093809, 9.981468754855108, 10.318751711366856, 9.699427431838405, 9.908554114762227, 9.677240291728106, 10.222697180977601, 9.77301555589185, 10.406504458766769, 9.171739718856749, 9.739275957188285, 9.467376504074924, 9.54828124413794, 10.682091152107661, 9.562067145009323, -8.661817995044908, 9.001953691743802, 8.891508625765164, 10.981536043660878, -10.948757657425011, 9.738233529170705, 10.177115059115138, 9.071374544683188, 8.230666290834629, 9.18652534799876, 9.495901127302194, -9.93614082945308, 10.428069014933625, 10.477918270827736, 9.299459548411388, -10.489333005459427, -10.994800623839984, 9.900549859709495, 9.784507986204426, 11.034384406929828, 10.103732866229231, -9.07782401881131, -8.89198790247796, 9.85444434122077, -11.241936776121456, 8.677667551653444, -11.168876331537785, 10.972720395130409, 10.479426868397, 9.235404909863526, 11.021943936691482, 11.599082225261895, 9.637575146108645, 10.546682549701938, 10.627700108970714, 10.76498779870255, 9.879118279558382, 9.052000468107382, 10.43595198099494, 10.238889372911842, 9.733374699066209, 10.446425139072616, 10.200229444340014, 11.226127356030167, 9.271352328671032, 9.581614235354017, -9.775885044994055, 10.059555501254955, 9.718505851193045, 10.566019758535443, 9.42815905464993, 9.27115582279102, 11.17064707669625, 11.448101801066713, -8.205397441929208, 11.609559802610033, 9.38881980301231, 10.421475645435361, 9.47975464102002, 10.642257870137197, 9.236088841927172, 10.312020709152538, -12.300409056880625, 10.10599430937007, 10.81492870253434, 9.938698975406927, 11.54412841943443, 10.418707786148973, -9.270262708470334, 10.18042495522522, 10.17573788306825, -8.53738008563643, 11.07368304567641, 10.518059740969722, 9.937017916684633, 10.273381577142647, 10.128949268498529, 10.15734725877641, 11.169708147334527, 8.649627527957849, -9.29412394484856, -9.706170696358674, 9.815853933275791, 10.2264264838116, -9.914029721657402, -10.001461834741919, 9.11283842240048, 10.741495400905615, -8.781589093946822, 9.098007744102983, 10.666373797278975, 9.703782597902013, 9.613191590441167, 9.406013766174574, 9.841034015274516, 10.206659110317895, -8.927032828927773, 10.106935786018445, 8.907552460597302, 9.777764361359209, 9.3794106036389, -9.57173701523777, -10.227876642230848, -9.474711670670247, -10.748771595806618, 10.447958471508786, 9.983844908655856, -8.534551693098845, 9.703775031279745, -10.426718806311984, 9.124656783593613, 9.759926009993045, -10.569232716962441, 8.930849094952343, 10.40905613099042, 9.67042935890673, -9.890830023677996, 10.088065111893188, -7.787790273671671, 8.966832377411906, -10.837743553815402, 8.590646068553145, 7.842374131366396, 10.214353919311295, 10.927048487636652, 9.096636740796201, 9.284919575983025, -8.908647184766146, -9.935525409097018, 10.075054588707776, 9.949663459178467, 8.732990986059109, 9.833115719895162, 9.656282407841541, 9.443848458035513, 11.235362687154883, 9.227678542451521, 8.922321190684569, 10.803055547325252, -11.292424195184024, 9.49842682655462, -9.18419833604568, -9.87135639816811, 9.870844521031264, -12.244497549912928, 10.174980296682133, 8.297384361674307, -10.47586431168546, 9.513445507973785, 10.557444860168657, 9.872022593138968, -11.249423151359132, 9.222030434710177, 8.966913995361507, -8.939161755713105, 9.7442792020588, -8.572874823756841, 9.553219137913146, 10.101501027131881, 9.835323301146465, 10.657160502475307, 11.531500870498302, 10.914443568370425, 11.893521848533114, -9.033315040784878, 9.575406444425985, 9.292221165402676, 10.381834420789769, 10.088183129282383, 8.188311792627863, 10.606287734702304, 8.843492053375213, 10.240897014919259, 9.30841384148233, 9.8221794252643, 10.431621306091749, 9.435428285582317, -10.911325740186651, 9.511343844521292, -8.819102547114298, 10.18578104573953, 9.230832463936869, 11.03699342666007, 10.47514725007039, 9.76725518420792, 9.20438729761474, 9.330566132272242, 9.964517795122646, 8.665134441131773, -8.978457549702714, 10.894019368893543, -10.896326433763264, 8.43840566457959, 9.652888395848654, 9.804389893987894, 9.746852748126114, -7.369606115835402, 10.547996645888016, 10.700555536090503, 8.678993402397865, 10.641414556301067, 11.213985639167232, -8.569646995956298, -10.264398791866753, 11.731843948160328, 10.593996068297656, 10.739414198051527, -8.632490053105942, -11.197419486460035, 10.348365212089277, -11.363447534759244, 10.984939545914226, 10.226032416549858, -10.888526051532166, 9.969383269861243, 11.212630521616699, 10.064859307357807, 10.617010236296904, 10.952121526082072, 9.277512916379834, 11.059226025669147, 10.307171168172278, 10.606774540893143, 8.9773782294601, -9.151741340769883, 10.207617086127053, 11.094789611239051, 9.336843318238431, 9.86079781130389, 9.216006027904323, 8.324854894070997, 10.338044044790761, -10.294151604174663, 9.718395044809713, 11.265249274873451, -10.242808140876818, 10.561353908868156, -10.313459722722945, 8.98322402904057, 9.177341570987043, 11.469940697074888, -9.738334175633044, 7.7143900061613895, 11.072012421836584, 10.42710291769703, 10.276099870861543, -9.026879339855528, 11.72271381493591, 10.247979599243903, 10.408967128763571, 10.238884267662408, 10.871935346197345, 9.664866949459691, 9.736767612505343, 10.207542216162285, 10.121485641612255, -11.345720916613722, 10.76405867518501, 9.660131974179482, 9.180360109109165, 8.94104979912801, 9.788901032255277, 10.286331371747263, 10.055583314171287, 9.215361894196242, 10.92181208884308, 9.527377138699975, 10.075201491740232, 8.214713705209258, 10.786486202622607, 9.350542010367965, -10.520900309789052, 11.354523182026892, -10.518102226321359, 10.63925700001192, 11.560222346027272, 9.5928575727145, 10.731765461378277, -11.431816707505398, -11.862030322020379, 9.140746357147194, -7.982516681678645, -9.003073446781471, -11.943885806098972, 10.259214557590015, 10.127628320588185, 9.939410921379583, 9.561690325539905, 9.992093971545948, 11.151046148880095, 9.704873320345968, 9.962192865672469, -8.125877846778623, 8.743305768760605, -9.905547714399635, 9.652174536339592, 9.187271581517008, 9.4365030577969, -9.669297893995113, -10.082552919555344, 9.350127564355097, -10.800873606138875, 9.869161231670079, 11.712185599905824, 9.050485749954213, 9.325690060756026, 9.973098271721662, 10.446575747338162, 9.70834775687247, -10.114049640542355, -10.930336100776112, -9.175041647807143, 10.659014748928906, 9.189456974407953, 9.829789421048153, 9.76875887324466, -9.758800063283353, 9.436579687418199, 9.648222991328623, 9.813950421623643, -9.309935979417528, 10.021509109578314, 10.823305644928398, 8.808218812350832, 10.548839245217419, 10.105198569921617, -9.46839152299188, -9.443937965692445, 7.6066228875150745, -8.756951551895897, 7.238534964105543, 9.72426218467181, 9.703337125902735, -9.827766204096138, 9.068416737094482, 11.076594989730484, 8.90457588222235, 10.090817621690071, 9.770582686330238, 10.890080777113349, 9.861186553584565, 11.199261082291462, 9.884285375811713, 9.456455460360337, 11.31501439302259, 9.690903320707816, 10.570510309756907, 10.416952326055405, 10.813588956431143, 10.7226153252407, 10.610280029430893, 11.538145420260602, 10.60103731555176, 10.960828040200456, 10.75798163115783, 10.246711769105206, 9.891535405639642, 9.53772634950135, 10.763098694087024, 8.707960938566995, 10.009786330540289, 11.645640184563408, 10.209251398709762, -11.584685486459126, 10.605915616615206, 10.587824851903227, 11.980285267506222, 8.531564633844482, 9.311910773139628, 10.805530887549123, 10.39440558611863, 11.330820304157285, 10.981179221277376, 8.294746025342986, 10.02965778468456, 10.00120627075204, 9.731110833163294, 10.662977672509228, -8.700974814916293, 8.163656810895718, 10.372522842677265, 10.828198888217022, 10.737457450678148, 10.357833741682963, -11.467713488496731, 10.325193707120333, 8.732099774408587, 10.671291044040728, 9.405320778003938, 9.48102219566023, 9.509463201661852, -11.580978773095676, 10.222869875899125, 11.068013043863946, 10.070922635137961, 11.02875273502783, 10.258272133459817, 10.571527664141403, -9.802240082136032, 10.328602110772218, 11.312201884480581, 10.042545324189176, 9.076083240913015, -8.834853084143543, 8.71482504212095, 9.21031875634279, 9.459741071764693, 10.861509052201415, 8.363737072122976, 10.0656891476003, 9.447450021229692, 9.181950368054672, -10.182701480803098, -10.06014345688638, 9.440243059848338, 10.543970465904785, 8.337115480112354, 10.81048957472565, 10.925193432628356, 11.548291560699061, 9.799791857694515, 10.266631448687344, 7.848038698260519, 9.93012963120272, 10.395841246433989, 9.639308222485864, 9.34451477338117, -9.141066641454204, 8.873025911234294, 10.600852401609487, 10.023807259502458, 8.887953804404015, -11.551033598370369, 10.418108474020185, 10.246550977792575, -9.7973989273203, -12.161562221535783, 10.742961329657057, 11.203939331601806, -11.19118631231781, 9.564947410594693, 10.867532341091906, 8.989382887260156, 8.826364286784788, 11.572992020918974, 9.930108139682497, 10.846620883689205, 9.964107378839685, 11.05148960067864, 10.176150986973559, -10.523228749012134, 10.413560089689984, 11.21870665809445, 9.780257090133095, 10.404717310623406, -11.402279214205205, 10.519067866536659, 8.946302081259468, 9.641023999978408, 9.963430160825444, 9.47671465418163, 9.675810879589756, -7.668508321830097, 8.91725705414001, 9.650863054754645, 9.254731488655027, 8.538371645242158, 8.399063215890651, -8.771321862652295, 9.894760174360677, 8.638963909909863, 10.698774700364654, -11.689265106315581, 9.452672235740883, 10.44209433365358, 10.824921719493947, -7.938031259632401, -11.57887233344244, 9.153634717552153], \"z\": [-11.105267306978858, 11.19085523284095, -10.947097900844499, -10.296990556374467, -8.931551689711268, -9.160583582719374, 7.996811259088714, -8.941449413006167, -9.066303680100912, -10.857691886899458, -11.320720927068777, -10.66045443403432, 9.717621619554329, -8.883109845515694, -10.197111914676801, -9.735881459295953, -9.313412961015064, -10.479234240107388, -11.087430933581924, 9.967392955732373, -10.8093092823047, -10.217746457175448, -11.690008999811907, -9.853402107077093, -10.592235999302437, -11.221968166549527, -9.995685928397165, -9.805415119660385, -9.52370499831622, -10.367586750645454, -10.107791308510844, -8.254211273301523, -8.872437990394051, 10.722620671714637, -11.194072241800837, 9.01965998898805, -9.741376877383177, -10.73224445254886, -8.567651043911479, -9.299574567916476, -11.158352784272736, -11.010473731584916, -12.2204626490463, -9.026294198017164, 9.375235544612867, -9.065307082410214, -10.654850435412252, -9.480074009832979, -10.332371475737649, 11.992712173725717, -10.916724327753949, -9.563285334319001, 11.55853575048472, -11.84708538061338, 9.818400835398503, -11.140368341172858, -9.652147403597484, -10.11946207894941, -10.11634528665132, -10.352396689908627, -9.822528975832574, -9.83718032584841, -9.281104383942354, 8.138103832796457, -11.004938247494836, -9.05528204823771, 10.003988463867316, -8.91043315922229, -11.152580234165764, -10.676520289587339, -10.650487495106258, -9.811681962135832, -10.53565055329651, -9.452751558074898, -10.234622067354653, -10.331433438091613, -9.571283297305682, -9.28825233118525, 10.802868987561688, 9.836212259723137, -9.583986444840797, -9.376550834565437, -10.039938459609035, 10.384447319660188, 8.983022259153623, -9.65427548862961, 10.396045887595983, -9.32376377398416, 11.769374055034973, -9.207258703242164, -9.947128023438554, -10.306263698401713, -10.114367539270448, -10.415225869036215, -9.391849430215759, -10.66109567773707, -10.986893461601527, -8.369423981467339, -10.936931406514615, -10.98942097111687, -9.154968154602772, -9.459012766077104, -9.966787025748387, -9.262020189042168, -12.199219511490707, 8.812250307717667, -10.84860238030653, -10.452709357407592, -10.589508904468898, -10.765224009805092, -9.671333807986562, -9.048851036960768, -9.983478491215758, -10.60159210282733, -9.557670941652464, -9.93049009125282, 9.703677626043858, -10.746984571035934, 9.25676617603981, -8.752877747683875, -10.064216507956314, -9.801704970178145, 8.532172631526159, -10.074701856463411, -11.129583568751444, -9.991877950209773, -9.61812803691525, -9.273269726736224, -8.988335259361634, -10.15799606042903, -11.260634189347492, 8.679932939339754, -8.914396564608529, -11.03479825085903, -9.280254161068228, -10.12304941973937, -10.454600993159778, -10.235621153551085, -12.217125440788417, -8.728436594374356, -8.006981501029676, 10.057101175519376, -9.551280990048754, -11.09263314263856, -8.842031671516626, -10.071520174765896, -11.218847451467546, 10.092004801764743, -9.16303615896891, 10.22786992252169, -8.981382864244395, 11.487898017318011, -10.288211167385494, -10.970812007551633, -8.523202592344997, -10.650451911583412, -10.32586191977748, 9.559071243896788, -10.671073288446062, -11.408212639376641, -9.532410298446667, -9.733120973871443, 10.71831410278362, -9.498655312922372, 9.931800501306187, -8.549281642972636, 9.218041754248329, -10.741390418145736, -10.547264027876093, 10.11541903467514, -10.160291200076198, -10.743774815413287, -9.703782188152976, -8.96990550432846, 11.677816789348961, -10.191216439547736, 8.807419958441901, 9.767468757502039, -9.906681470270339, -10.059720575845379, -10.64206452704701, 9.969919063262212, -11.28338023720815, -9.32891307712815, -10.452825517392958, -9.330775006880025, -9.809302487233946, -8.7697474095757, -11.693822888252537, -10.159531053257725, -9.12277402650114, -10.51785391470663, -11.64454113517821, 10.46763476646958, 8.918081572609086, -10.48855128123401, -10.20887915526111, -10.27830389066572, -10.112053868581464, -9.992573650083703, -11.041869751477574, -10.496903833498964, -10.262554194399565, -10.868261053967695, -11.23552186657663, -10.717717914237298, -8.609474572505201, 10.001153379937008, -9.18002839676978, -9.057715020085388, -10.133179334312084, -10.770060300052053, -10.4885045000884, -11.043461563876166, 10.251433532767916, -9.990536747144182, -9.776283393166768, -9.27000360421941, -9.500862546634636, -12.070538834614451, -10.41682803138812, -9.853529518912879, -11.394928760507266, -11.496854379268022, -9.705620588763605, 9.891690547080133, -8.259038929277185, 9.722054860310886, -10.593402397199615, 11.00177904996722, -9.520814629440231, 8.76094189127912, 9.074634820067262, -9.8272616847432, -9.266587662538624, -10.506101128707755, -10.510522301155723, -11.204753984192354, 8.546213277968459, -9.58875919110552, -9.536996842762505, -8.806934042412538, -9.686868675529002, -9.103322711139167, -9.310514082138813, -10.064898344720405, -9.830609987312426, -9.624411978740579, 9.235736381090376, -11.985955500798378, -11.40683143086642, -10.829845406976169, -10.68570731432977, -9.504297993489606, -9.964576497333194, -9.41199267043706, -10.310358481605949, -10.42321815096765, -8.724165722931662, -10.402814722922727, -8.874169014922678, 10.472589874817778, 10.035781632803687, -9.10711573563627, -9.646599640470091, 11.65778751387266, -10.792133859322746, -9.506139124715483, -9.735656603815215, 10.24654651405657, -9.745586301236116, -10.103612917211782, -9.953001523671654, 8.818138828816307, -10.019964937754098, -9.086858537564218, 10.387154671064502, -10.23135916597227, -8.78067292417932, -10.297489643692177, -9.623372678777823, -9.873884429015003, -8.17479828389425, -9.174955848902762, -10.411261465297354, -11.00941794543099, -9.407897829315283, -9.300521006493954, -9.553136221404635, -10.29876906454553, -9.56242203064996, -10.805941270819535, -10.839946100459304, -9.155894604038506, -8.818913923493803, -9.153978454473052, -10.28809148331198, -10.548943817893864, -9.251453384415111, -10.524965914124175, -10.483760773383445, -8.759278212848844, -10.805296429020107, -9.967765923194149, 9.814872079151538, -8.169659395049177, -9.928649012308433, -10.701391120491985, -10.769639052065397, -12.330387658318246, 10.020874844924805, -9.406717409127225, 9.254247618071378, 8.513673515195034, -9.38693132709783, -10.06007291752894, -9.110738702061209, -11.370386540966388, -9.613342190716725, 8.705440313332295, -10.697581186924364, 9.257373221689946, -9.216901023144857, -9.957361946841305, 9.000967275969176, -10.536562300416199, -11.048401466252011, -10.935046969911488, -9.34872319188463, -10.015874792504487, -11.015608282881386, -11.717496707406163, -11.04794727728506, 7.8822793325917315, -10.53390959836035, 8.199682127050059, 10.877846340515882, -10.43606621751903, -11.112482112094682, -10.309578760709975, -10.013594909200862, -9.23814057921528, -11.775515074823069, -8.85699980600209, -10.736604361394159, -9.284949356522699, -11.621786984769232, 10.37356977074443, -9.17817161755589, 10.549382153512463, -10.752956745550119, -9.239816020870835, 9.23501862428561, -11.187957519848956, -9.07008471021217, -10.934948032148496, -10.856452070426414, -11.341789811474808, 9.346875516677638, 11.799574930384193, -9.131121669052956, 9.75720258355876, -10.550908167180292, -10.568536541830744, -10.70537185092636, 11.509925999869555, -9.082560377461503, -9.670626896506693, 9.933263780726143, -9.713388296713394, -9.59643962949021, -10.257463983979699, -10.131551400914967, -10.194926184856019, 9.818504763503183, 9.104978857884454, -9.233639083133237, -10.757448746554797, -10.754618718895832, -10.832817874786057, -9.393303161072815, -10.300814919237954, -10.756470722100731, -7.895788868287207, -10.063297494632025, 11.32147389431444, -10.979715080455545, 11.054363003461832, -8.38473908841343, -9.015799361653185, -10.291636195849156, -10.230453340327104, -10.117745597133343, -9.911823390761686, -8.967165922974683, -10.88864955890278, -10.10717811557293, -11.113536764692707, -10.64217330675725, -10.01633493396354, -10.797822228025336, -9.566192849908864, -8.85240167736895, -9.196233796538825, -8.970540114636744, -8.921627089158541, -11.537932556122367, -10.165217561784539, -9.545355407056755, -11.322286836287825, -8.937380764027356, -9.410879418678475, -9.725090886067282, -9.615781147932818, -9.209565164138404, -9.272156038279748, -9.629660983847094, -11.036459503925382, 9.685041206856452, -10.308152066121629, -10.671315848106353, 10.971423700095558, -10.233097743310388, 10.851645899504483, -10.241836005870413, 7.959188447927158, -9.862869274864554, -8.524294888783015, -9.86141274558701, -9.69197574333864, 10.166535400067602, -10.083272437384421, -10.147306658861856, -9.104166522695913, -8.389096670657215, -10.815754952411936, -9.59317961843981, -11.601728127392434, -9.146677812653222, -10.335323488945317, -9.898365788462442, 11.187190778769494, -8.980158648832706, -11.051285698819878, 9.712934135871127, -9.831665776154415, -10.221788407038241, -10.221037397802592, -10.438634985853652, -9.00649703489815, 10.21061398346157, 9.926156861204232, -10.348227809796523, -10.532812844484651, -10.404123843156686, -10.522011189302525, -9.884491777360951, -10.685702239831539, -10.490234023529577, -9.433830608354537, -10.392097376703406, 10.450299354003617, 11.374821911597806, -9.241500268061037, 10.90735232769793, -11.239586106570762, -11.36227566280655, 7.977278031799438, -8.28200371520016, -9.372922842650702, -11.527529455343469, -9.502616553335008, 9.665395891374342, 9.58613926021746, -9.051401828358642, -9.541123088835423, 10.41240848056892, 9.713593309929571, -9.761180650301464, -8.365600835042834, -10.25316827733324, -10.03418443626311, -9.400660627187898, -11.548046708655855, -10.319197332073037, -9.871939198234076, -10.016518960097311, -11.558930891239639, -10.57482746259738, -8.859636377819243, -9.333608900458268, -9.243953590225857, 9.758861329381155, -10.51178254628297, -9.246160493504782, -10.048243939338388, -10.060091668331497, -10.766491692941868, -9.20749783544738, -10.132330593133762, -9.613885060211672, -9.466406524205022, 10.19592384270935, -9.776544873291527, 9.3859685099662, -10.44700258224902, -10.676677366259495, -9.49324826153377, -9.502913936856187, -10.107632800590414, -11.285544640647483, 10.16391732644831, -9.608939238372217, -9.682237318806628, -9.674230080902689, -10.659515579507593, -8.95272318305296, -11.4319908952023, -9.685448052368983, 8.32459741104036, -9.712595830186736, -10.722026352069626, -9.951525350317128, 8.324208185280003, -9.849728679775696, 9.734211176721534, 9.969303478055581, -9.564075831538123, -9.50693469374803, -9.896695551718091, 10.52652338045619, -8.182239555518855, -10.406655222060895, -9.446756537897713, -11.272782264050962, -10.121744260609361, 10.782973755595778, -9.716737966318197, -8.351258731819595, -8.655031112272061, 11.67928201290393, -8.795664386906061, -9.486853193379732, -10.735829748537785, -9.94595795433673, 10.856009520526102, -9.992110198090755, -8.97327143815815, 12.142710822366393, 10.64415848767782, -11.44605629097473, -9.332578047527896, 10.75437792216234, -10.313529095931862, -11.698061803120252, -9.238479593733548, 10.06419909504426, 9.659835310255286, -9.204926049225913, 11.6217265604779, 9.632245542056122, -9.017739019742278, -10.263822233982474, -11.207538700768056, 9.660321155214284, -8.896950220527403, 8.004600073404104, -8.4554309240528, -10.093560462497434, -9.450218438048516, -10.127854608273967, -11.035454958082964, -11.038907455932366, -10.795072277248137, -9.472261009174293, -9.020243846803472, 8.94842163726299, -10.155543197351124, -11.239096529048648, -8.32219824841543, -9.897297183307066, -10.889155741371678, -10.496692430500904, -8.952102817847779, -8.871643395831686, -9.80845182501751, -10.123192570213329, -10.836664095277854, 10.164374889165632, -9.617119880375238, -9.208734051792522, -11.390477983535195, -9.540786485115511, -11.098531022500586, 11.295109036119896, -10.156369170187382, 10.578910694019404, 9.162834720692164, -10.384557995118696, -10.276536899425682, -10.082327700424289, 10.14853926833251, 10.505065105435138, 8.162995355817646, -8.740078320670944, -8.669391963759825, -8.833764676220664, -9.309999515712205, -9.46671725867314, -11.526170948087952, 10.317975187526514, -10.951330567841536, 8.90244617105325, 8.649630812180767, -9.401499878147236, -10.71687639770355, 11.42746236050356, -10.333996058252396, -10.314906262262447, -11.380808203328304, 10.873844125677316, 10.288047646778105, -9.809331202452846, -11.636858721655921, -9.183790432292291, 10.919735527162333, -10.901888194951635, -9.066053467495049, -8.974024034445218, -9.750028865817928, -9.784582859991378, -9.715949552812422, 11.035359432515504, -9.20312278871186, -9.839605630909404, 12.09835648432104, -10.847991766010258, -10.4223686508385, -9.482833468256734, -9.054528711023224, -10.259080266226004, -9.436089803113818, -11.05571771215743, -9.473738977076549, 9.618609942038272, 10.38554822232626, -9.837930809519527, -9.586502292116087, -9.760145855294123, -8.212558682846067, -11.256352162861818, -9.854059324616989, -10.191543211337805, -9.761798115950524, -10.01485460970319, -9.240233053843028, -9.350368327107644, 8.033736831755926, -9.39226157680316, -11.225413529859074, -11.165325652777241, -8.941255401734374, -10.3970413616433, -8.395786318618223, -11.29155241751624, -10.743204326511096]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 1\", \"marker\": {\"color\": \"rgb(255, 127, 14)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 1\", \"scene\": \"scene2\", \"showlegend\": false, \"text\": [\"example_0\", \"example_3\", \"example_5\", \"example_6\", \"example_7\", \"example_9\", \"example_10\", \"example_12\", \"example_18\", \"example_24\", \"example_25\", \"example_27\", \"example_28\", \"example_31\", \"example_33\", \"example_38\", \"example_39\", \"example_41\", \"example_42\", \"example_47\", \"example_48\", \"example_52\", \"example_54\", \"example_55\", \"example_57\", \"example_60\", \"example_62\", \"example_66\", \"example_68\", \"example_74\", \"example_77\", \"example_79\", \"example_80\", \"example_82\", \"example_83\", \"example_85\", \"example_86\", \"example_88\", \"example_90\", \"example_92\", \"example_94\", \"example_96\", \"example_97\", \"example_102\", \"example_104\", \"example_105\", \"example_106\", \"example_108\", \"example_110\", \"example_113\", \"example_117\", \"example_125\", \"example_126\", \"example_129\", \"example_131\", \"example_132\", \"example_133\", \"example_136\", \"example_137\", \"example_138\", \"example_139\", \"example_140\", \"example_142\", \"example_144\", \"example_145\", \"example_147\", \"example_155\", \"example_156\", \"example_158\", \"example_164\", \"example_165\", \"example_167\", \"example_169\", \"example_171\", \"example_172\", \"example_174\", \"example_177\", \"example_178\", \"example_179\", \"example_181\", \"example_183\", \"example_193\", \"example_195\", \"example_204\", \"example_209\", \"example_213\", \"example_214\", \"example_215\", \"example_221\", \"example_222\", \"example_223\", \"example_224\", \"example_227\", \"example_228\", \"example_232\", \"example_234\", \"example_235\", \"example_238\", \"example_242\", \"example_243\", \"example_248\", \"example_249\", \"example_255\", \"example_258\", \"example_260\", \"example_267\", \"example_280\", \"example_282\", \"example_285\", \"example_287\", \"example_290\", \"example_291\", \"example_294\", \"example_296\", \"example_299\", \"example_302\", \"example_308\", \"example_312\", \"example_314\", \"example_318\", \"example_319\", \"example_321\", \"example_323\", \"example_325\", \"example_326\", \"example_327\", \"example_328\", \"example_329\", \"example_333\", \"example_336\", \"example_338\", \"example_341\", \"example_346\", \"example_347\", \"example_348\", \"example_349\", \"example_355\", \"example_357\", \"example_359\", \"example_360\", \"example_362\", \"example_364\", \"example_370\", \"example_372\", \"example_373\", \"example_375\", \"example_377\", \"example_386\", \"example_388\", \"example_389\", \"example_390\", \"example_404\", \"example_409\", \"example_410\", \"example_419\", \"example_421\", \"example_423\", \"example_424\", \"example_428\", \"example_430\", \"example_434\", \"example_435\", \"example_440\", \"example_442\", \"example_446\", \"example_447\", \"example_448\", \"example_449\", \"example_451\", \"example_457\", \"example_458\", \"example_460\", \"example_461\", \"example_467\", \"example_468\", \"example_475\", \"example_477\", \"example_490\", \"example_491\", \"example_499\", \"example_500\", \"example_501\", \"example_503\", \"example_504\", \"example_516\", \"example_523\", \"example_525\", \"example_528\", \"example_531\", \"example_533\", \"example_536\", \"example_539\", \"example_541\", \"example_542\", \"example_545\", \"example_547\", \"example_549\", \"example_553\", \"example_558\", \"example_560\", \"example_566\", \"example_568\", \"example_571\", \"example_573\", \"example_578\", \"example_587\", \"example_589\", \"example_594\", \"example_597\", \"example_601\", \"example_603\", \"example_605\", \"example_615\", \"example_621\", \"example_622\", \"example_624\", \"example_626\", \"example_629\", \"example_634\", \"example_636\", \"example_638\", \"example_643\", \"example_644\", \"example_649\", \"example_652\", \"example_657\", \"example_660\", \"example_661\", \"example_664\", \"example_665\", \"example_666\", \"example_667\", \"example_668\", \"example_669\", \"example_671\", \"example_672\", \"example_673\", \"example_676\", \"example_677\", \"example_682\", \"example_688\", \"example_691\", \"example_695\", \"example_697\", \"example_700\", \"example_708\", \"example_711\", \"example_713\", \"example_714\", \"example_716\", \"example_718\", \"example_722\", \"example_723\", \"example_724\", \"example_731\", \"example_732\", \"example_735\", \"example_737\", \"example_739\", \"example_743\", \"example_750\", \"example_754\", \"example_756\", \"example_762\", \"example_770\", \"example_772\", \"example_778\", \"example_782\", \"example_783\", \"example_786\", \"example_793\", \"example_796\", \"example_798\", \"example_799\", \"example_803\", \"example_809\", \"example_810\", \"example_811\", \"example_814\", \"example_816\", \"example_820\", \"example_823\", \"example_826\", \"example_828\", \"example_836\", \"example_839\", \"example_841\", \"example_842\", \"example_844\", \"example_846\", \"example_847\", \"example_852\", \"example_857\", \"example_858\", \"example_859\", \"example_862\", \"example_864\", \"example_867\", \"example_868\", \"example_869\", \"example_874\", \"example_875\", \"example_881\", \"example_882\", \"example_885\", \"example_888\", \"example_889\", \"example_893\", \"example_894\", \"example_898\", \"example_899\", \"example_901\", \"example_903\", \"example_908\", \"example_910\", \"example_912\", \"example_916\", \"example_917\", \"example_918\", \"example_921\", \"example_922\", \"example_924\", \"example_932\", \"example_933\", \"example_934\", \"example_938\", \"example_940\", \"example_941\", \"example_944\", \"example_945\", \"example_946\", \"example_950\", \"example_953\", \"example_958\", \"example_967\", \"example_968\", \"example_970\", \"example_973\", \"example_974\", \"example_982\", \"example_983\", \"example_986\", \"example_987\", \"example_989\", \"example_997\", \"example_998\", \"example_999\", \"example_1000\", \"example_1001\", \"example_1005\", \"example_1006\", \"example_1007\", \"example_1009\", \"example_1023\", \"example_1024\", \"example_1026\", \"example_1030\", \"example_1031\", \"example_1032\", \"example_1034\", \"example_1035\", \"example_1037\", \"example_1041\", \"example_1046\", \"example_1047\", \"example_1049\", \"example_1055\", \"example_1057\", \"example_1058\", \"example_1065\", \"example_1068\", \"example_1074\", \"example_1078\", \"example_1079\", \"example_1080\", \"example_1085\", \"example_1087\", \"example_1088\", \"example_1089\", \"example_1091\", \"example_1093\", \"example_1094\", \"example_1096\", \"example_1097\", \"example_1101\", \"example_1108\", \"example_1110\", \"example_1111\", \"example_1112\", \"example_1113\", \"example_1116\", \"example_1118\", \"example_1121\", \"example_1124\", \"example_1128\", \"example_1131\", \"example_1132\", \"example_1137\", \"example_1140\", \"example_1142\", \"example_1145\", \"example_1149\", \"example_1151\", \"example_1155\", \"example_1156\", \"example_1161\", \"example_1168\", \"example_1169\", \"example_1172\", \"example_1175\", \"example_1176\", \"example_1178\", \"example_1182\", \"example_1185\", \"example_1188\", \"example_1190\", \"example_1193\", \"example_1196\", \"example_1197\", \"example_1200\", \"example_1201\", \"example_1205\", \"example_1206\", \"example_1208\", \"example_1209\", \"example_1210\", \"example_1214\", \"example_1216\", \"example_1217\", \"example_1221\", \"example_1226\", \"example_1230\", \"example_1232\", \"example_1234\", \"example_1236\", \"example_1237\", \"example_1244\", \"example_1251\", \"example_1252\", \"example_1253\", \"example_1259\", \"example_1261\", \"example_1262\", \"example_1268\", \"example_1269\", \"example_1278\", \"example_1283\", \"example_1285\", \"example_1286\", \"example_1290\", \"example_1292\", \"example_1293\", \"example_1299\", \"example_1302\", \"example_1303\", \"example_1310\", \"example_1313\", \"example_1315\", \"example_1323\", \"example_1328\", \"example_1329\", \"example_1330\", \"example_1333\", \"example_1334\", \"example_1336\", \"example_1338\", \"example_1340\", \"example_1341\", \"example_1342\", \"example_1351\", \"example_1352\", \"example_1353\", \"example_1356\", \"example_1358\", \"example_1359\", \"example_1361\", \"example_1366\", \"example_1368\", \"example_1370\", \"example_1374\", \"example_1375\", \"example_1385\", \"example_1394\", \"example_1401\", \"example_1402\", \"example_1404\", \"example_1406\", \"example_1407\", \"example_1418\", \"example_1419\", \"example_1421\", \"example_1422\", \"example_1427\", \"example_1435\", \"example_1446\", \"example_1449\", \"example_1450\", \"example_1455\", \"example_1456\", \"example_1457\", \"example_1460\", \"example_1461\", \"example_1463\", \"example_1466\", \"example_1467\", \"example_1468\", \"example_1470\", \"example_1473\", \"example_1477\", \"example_1480\", \"example_1486\", \"example_1488\", \"example_1489\", \"example_1492\", \"example_1497\", \"example_1501\", \"example_1505\", \"example_1506\", \"example_1507\", \"example_1512\", \"example_1514\", \"example_1518\", \"example_1519\", \"example_1521\", \"example_1523\", \"example_1524\", \"example_1532\", \"example_1536\", \"example_1538\", \"example_1540\", \"example_1541\", \"example_1544\", \"example_1545\", \"example_1549\", \"example_1557\", \"example_1561\", \"example_1562\", \"example_1563\", \"example_1566\", \"example_1572\", \"example_1574\", \"example_1576\", \"example_1578\", \"example_1580\", \"example_1581\", \"example_1587\", \"example_1593\", \"example_1599\", \"example_1604\", \"example_1609\", \"example_1614\", \"example_1617\", \"example_1618\", \"example_1619\", \"example_1620\", \"example_1622\", \"example_1625\", \"example_1627\", \"example_1628\", \"example_1630\", \"example_1637\", \"example_1639\", \"example_1640\", \"example_1641\", \"example_1642\", \"example_1647\", \"example_1662\", \"example_1665\", \"example_1666\", \"example_1668\", \"example_1669\", \"example_1673\", \"example_1682\", \"example_1684\", \"example_1691\", \"example_1692\", \"example_1697\", \"example_1699\", \"example_1701\", \"example_1704\", \"example_1709\", \"example_1713\", \"example_1718\", \"example_1728\", \"example_1730\", \"example_1732\", \"example_1736\", \"example_1741\", \"example_1747\", \"example_1753\", \"example_1758\", \"example_1760\", \"example_1769\", \"example_1780\", \"example_1781\", \"example_1784\", \"example_1789\", \"example_1797\", \"example_1798\", \"example_1799\", \"example_1800\", \"example_1802\", \"example_1807\", \"example_1812\", \"example_1815\", \"example_1818\", \"example_1819\", \"example_1822\", \"example_1824\", \"example_1825\", \"example_1826\", \"example_1829\", \"example_1830\", \"example_1832\", \"example_1835\", \"example_1838\", \"example_1840\", \"example_1843\", \"example_1847\", \"example_1848\", \"example_1852\", \"example_1853\", \"example_1854\", \"example_1855\", \"example_1856\", \"example_1858\", \"example_1859\", \"example_1866\", \"example_1869\", \"example_1870\", \"example_1881\", \"example_1884\", \"example_1885\", \"example_1887\", \"example_1890\", \"example_1894\", \"example_1896\", \"example_1897\", \"example_1900\", \"example_1901\", \"example_1919\", \"example_1921\", \"example_1924\", \"example_1927\", \"example_1931\", \"example_1933\", \"example_1934\", \"example_1938\", \"example_1942\", \"example_1943\", \"example_1944\", \"example_1954\", \"example_1956\", \"example_1958\", \"example_1961\", \"example_1964\", \"example_1967\", \"example_1970\", \"example_1971\", \"example_1973\", \"example_1977\", \"example_1983\", \"example_1986\", \"example_1991\", \"example_1992\", \"example_1996\"], \"type\": \"scatter3d\", \"x\": [9.868681265774383, 9.933493411279311, 10.796801885922468, -10.469254134758167, -10.386146105819025, -8.831806197491685, 10.074611271267505, -11.47117689036956, -10.462461706344053, 11.202619178881479, -12.110145489414888, 10.69416830983414, 10.044532017161947, -9.203193393256836, -8.27959399580646, 11.316988606548454, 11.354924767762956, -10.184411024408185, -9.135882527518648, 10.893925559143582, 10.193190011879743, -10.719729359236164, -7.692071443049805, -7.224421427365524, -10.682233743082515, 9.805667200449873, -12.083605822314953, -8.677235905149185, 9.933305227260492, -9.866840724836207, -9.997095324002226, -11.250981286022332, -8.66988697543251, -9.538238897314134, 9.544409104573942, -11.303413168773533, 10.09145732779186, -8.839233760329599, -9.152909520204089, -11.364946209159587, -7.245513682920617, -10.993920844700682, 8.776849403936978, -8.60270991878051, 9.70588014173924, 11.32196592982662, 8.95199054141313, -8.424271606895871, -10.932075684287556, -8.97755091251743, -9.263933716530271, 10.453504007506075, 9.82148984001884, -11.240922003485748, -8.199603957077816, 9.661191826691732, 8.99400474090947, -8.505450831720392, -10.152370447147987, -8.909933623889126, 9.805204485634297, 11.212994453268456, -9.003134920160997, 9.980200906855893, -9.675506533890655, -8.779440252057224, -12.308463252027273, -8.866791236135043, 10.784037437018716, 7.661246810597218, -10.702752345224404, -11.16532091765001, 10.518894443745813, -10.90707986556019, 10.244657650312945, -8.832609507837288, 10.945514420048136, -10.314775295642276, 8.932253388026497, -7.603821840005055, -11.243442496982386, -11.419572747204604, -8.764258116505697, 10.955195154174309, 9.523762626968248, 10.496215251692288, -10.463316030142105, 10.501472283184514, -9.585371449878169, -8.305359565173077, -9.854364958351702, -11.293834007049938, -10.51835793939442, -11.124857966164715, -9.378926141988986, 9.684561414888242, 9.997560177446571, -9.278124226431357, -8.813909618841986, -7.9546002589152085, 9.076696797346155, 7.888958479587693, -10.034598801520831, 10.183261448695061, -10.219298728799789, -8.092762132192666, -7.01711161386946, 12.04444734668116, -10.637558290425423, -7.692011258320498, -9.348390962628395, 9.818520773501284, 10.693960545885652, -11.393976010377575, 12.24525681583924, -10.4516642448305, -7.723347652114421, -10.10358509030745, -8.637836433834632, -9.221614801666435, 9.40679247314159, 10.95397205773973, -10.903194200787958, 10.75785550130032, -10.015134762711003, -9.30328921059428, -9.657841962560761, -7.711804416911535, -8.83847622150865, -9.791597780090433, -10.470531384203676, -9.573784667993083, -9.073754173472658, -8.08662914773739, 11.144945532748748, -9.593003423948165, -9.456251266026355, -11.34924418017669, -10.447823535466306, -7.492926404867799, -11.434335309499195, -10.502945861459828, -11.38973802924525, -8.182086996875924, -8.463324953842896, -9.056319317958309, -7.751731014829094, -10.81818561421571, 9.94599711752872, -9.483573814448917, -9.949816533271175, -12.333728762500632, -11.79359733109791, -8.933863376035259, -11.423715523513, -9.443358083592859, 10.993000775680402, -11.336331257146677, 9.982709154237789, 10.623148380053443, 8.727885344357755, 10.705631153792902, -9.503609482825327, 10.625670637733792, 10.143534502520833, 9.267559342880736, -10.539589933231543, -9.520514336645286, -11.99457253841302, -10.704449553244912, -9.50488602768965, 10.799969204149328, -8.71455213832868, -10.616583228816351, -9.748536792082888, -9.929623665668855, -7.592351175281272, 11.672303980412744, 11.22710370819908, -8.552086350942103, -10.282170266817374, 12.521067325032542, -10.10410695948474, -10.258739509799138, 9.189172233095336, 9.00298120177551, -10.802409191246122, 8.42366431575832, -7.706290093750997, -9.887152402836028, 10.450706709475341, 10.132645298213433, 10.289279937185217, -8.586619118748185, -11.003727245443372, -7.943694919522665, 9.21961381075815, 9.84519638440543, -11.07950030882891, -8.986393008818656, 10.619597186638469, -9.003573778190553, 11.983568970595758, -11.577321526310143, -9.365891996817673, 9.722934097373352, -10.503151879586369, 11.307950960591919, 10.228577873185325, -10.673036879220545, -10.26108289597787, -8.358782944216227, 9.954086917778913, -8.889493895706302, 11.311043640206341, -9.550294163678043, 11.731521289317213, 11.105392203910423, 10.748116883429867, 10.552939531703801, 9.702143513777672, -11.643352379220323, -10.205187798298441, -7.196304592725073, -9.740887242172288, -11.27788142802443, -10.375525703550698, -9.904230819201523, 9.530256215112146, -10.889735907085853, -11.44465830916263, 7.796376676496719, -9.05737705812395, -9.07937835593852, -8.055016054613729, 9.868151414000186, 9.959390902197997, -10.878867741331288, 9.349768901332162, 9.745662855803946, 10.276176175189887, 9.463531617790608, 9.935098183929012, -7.10126116829161, 10.174728170546693, -9.396525445247601, -8.814449786454846, 10.510926921405355, -10.243200592051773, -9.235177856679028, -9.520195258897987, 9.802768541568774, 10.900207157991499, -10.651722962036764, 9.047496466946287, -11.230652328101698, -11.093318561351882, -10.089156410668654, 10.141496665865267, -9.605344063474144, -10.220163499601549, -10.203876170224506, -10.771831576150117, -9.320822808233144, 10.882714261675957, -9.622613303536324, 9.196195743369925, -6.446991710655491, 9.199932386042347, -10.388317241516901, -11.172860093403578, -9.688909899482312, -10.0120839634501, -7.179921034233361, -7.802894148814422, -6.63132931506183, 6.77729607850974, -11.787389250799642, 9.875654513658638, -9.73257772271785, -8.576616592307156, -11.654853682091083, -10.704611187943675, 10.623677365191188, -8.767303135987284, 10.023504069455605, 9.393868184867337, -10.309127250346933, -9.836936523635428, 10.79366862957579, 10.161347431851564, -9.318031891441265, 9.77235022743135, 11.315941227873918, -10.134583564115903, -9.366921075585198, 10.33931069984107, 9.378065869766978, 10.477775725722003, -9.559692282523232, 10.433081161005935, 10.367416347362365, -10.094883957033016, 9.73059973350117, -10.861318844838866, -9.1105169122697, -6.51693508526778, -10.036308474332179, -11.880907777894771, -9.75594593918602, -9.419374246794936, -9.57555792364093, 10.566961582662033, 9.332479875409653, 8.303143542522536, 12.2279443445101, 8.987320046682898, 9.308817867710234, 9.80865011613177, -9.716974621728859, -11.919234167296496, 9.462473049609372, -9.997405176099557, 9.056244413146691, -11.77016487537416, -8.252051962774916, -10.1960313961695, -10.866795286973511, -9.781748554011585, 11.564227753157757, -10.394749178645178, 9.127396239415344, -9.562555040701751, -10.159057895505496, -12.428004095101912, -9.750835731652417, 10.057073689363587, -10.093329250830381, -9.817636935940572, -10.033063572495639, -11.364234743183147, -10.198730402301509, 11.353858626115239, -9.06735593338623, 11.548496460337347, 10.209650169670933, -10.353132485541426, 10.59043119839254, 11.535053071079108, -12.256875479419687, 9.865441170625868, -10.05880854516008, -10.745152458657422, -9.761365277778609, -11.599222346786501, -12.703110868773354, -10.260775539042951, -11.200474611821006, -12.279393925103495, -8.388832946045182, 10.737327958137255, -8.611017831849813, -10.094012268240142, -9.148530515867199, -10.275280072914084, 9.73646262863832, -9.074916216525331, -10.443673538167147, -10.821117884888091, -9.369207648891278, 8.402973316967605, 10.810838933614418, 9.238128755720497, 9.556341402725494, -10.821743947395664, -8.89565162149044, -10.856448064579663, -9.50577882183716, 9.02247675784958, -10.294992479210926, 9.324864319963426, -10.07743107892925, 9.848961905439108, -11.563216174131142, -10.813376109377069, 11.599961491874424, 10.569435506427867, -9.129686714123984, -11.190298186346032, -9.407202385448365, -8.019159758809838, 10.066622693897937, -13.686894304912851, 11.232805968087293, 9.429284474412535, 10.28380245087822, 10.475496501798869, -9.70019957651568, 10.882264594889012, 10.406710362675256, 10.593873859956698, 9.705451815300822, -8.516344909458356, -9.51667533920373, 9.525079435570403, 12.035583659005963, 10.0060127333943, -9.33597028843071, -10.184690655773478, 11.564994718376129, -10.29027587148474, 11.213746087952865, 8.128071015610796, -9.582185031873431, 9.721873852349411, 10.525847616971683, 10.564838025101679, -8.962070684353735, -12.315204542138229, -9.629342755620474, -8.991697853545388, -10.347474199464067, 8.122641996520036, 9.951005901084262, -9.82776902489645, -11.821915758117903, -8.572166986708156, 10.384684748269363, 9.815649887678441, -11.118264846444088, 9.451137430236738, 11.381604878182994, -9.41922297218771, 10.355530892660878, -9.704091405794292, 9.267721770570315, -10.52961172584094, 9.28151044513708, 10.18373651229163, 10.291126141960001, 10.000814651536505, -10.876179820803754, -11.354362739235773, -11.336660698427254, -9.494745192480364, -10.817383877943408, -8.87149918675274, -9.945822089413971, 9.742205003493277, 10.374448854736489, -10.33955600571596, -11.438431092591387, -8.612575670993586, -10.146304199862993, -9.177787566907206, 10.780466802601456, -10.374201178532108, -10.329719928584602, 9.611822930493732, -9.481123994913114, 8.704002134714642, 10.277277172866354, 10.623330034433398, -7.997018205912758, -10.362171727995289, 10.071379289234171, 9.808773221671672, -9.01058706757377, 10.06412792703626, 10.528986431747681, 10.977387589391329, -6.691025345544356, -11.961084642337768, 10.848688493861737, 9.804655018552406, 9.064141344125217, 9.554099234139604, 10.04266469946158, 11.013665366050292, 9.084131025897547, -12.5381204732763, -9.014321470832293, 9.154994157195587, 10.328825451511053, 10.700138731898559, 10.725958595690845, -8.947572361756576, -9.44733313165525, -9.421695199308584, -9.318650810515702, 10.883055999838202, -9.204412709093342, -8.765567377875247, -10.439974800335905, -11.188849790236386, -10.257599244132168, -12.138131181994636, -11.20627923559919, 10.373588685541401, -12.314147811205306, -8.507606964419839, -10.981195147909363, -9.046770750364411, -12.033763003584312, 9.487040790774659, -10.968158502733743, -11.270065848820222, -10.70472823373839, 9.81071833968933, 10.884007749655344, -10.233420422418144, -11.29175073098843, 9.344322322626605, -8.199988454042785, 10.472161385730649, -13.081983985099718, -10.221814328774512, 8.99027157649282, 10.47646680291432, 10.747983131379316, 8.946285790188973, 10.041272573724433, -9.145234518844383, 9.969286860336597, 10.043903763791056, -11.427217388305047, -10.784330868549914, -11.342205317753722, -10.308469679876325, -10.307972009571083, 7.871937991850896, -12.144688402904771, 10.217990828123733, -8.812224095008391, -11.69387996943074, -10.975047571186044, 9.652931274413419, -9.945130286903304, 8.46893049012757, -9.787183983185534, -7.2743351732597645, -8.362415621489065, -11.630016531287602, -8.990883342539451, -9.357110155308337, -9.149865276370775, -12.01472745036822, -9.647459971605063, -9.787963278619522, -9.9001200096289, 9.235829035871218, 10.245749155298475, -10.803771207127918, 10.841314914311978, 10.77239987353727, -9.94950852772523, 10.748209582035384, -8.915576440557361, -10.853802125469937, 9.901915117939518, -9.675452904072651, -8.49519650111443, 9.642914966452496, 8.74056188720364, 10.722448359247494, -11.206271202373554, 10.247360106306846, -8.384494477491929, -11.202110390904195, -11.668418804370365, -11.400663015457297, 11.747888614836093, -10.679038689817613, 8.96784719604586, -9.940461378638016, -12.637435669061293, -11.76381872845003, -10.11876048867162, 9.17953221477506, 10.085188792308362, 10.411499024616846, 10.405941970729302, 10.810035218154454, -11.517922279781677, -9.781905459782749, -11.214973033046055, 11.455167644863412, -8.857317743078594, -9.745747433456902, -9.535255532922282, -11.407435333441459, -8.84317516160619, -13.535565442932452, -8.496966216500068, -12.29263702933368, 9.846793312775944, 10.511317013155615, 9.61219215312482, -11.639964539073402, 10.049142263169271, 8.115331850172732, -11.11469247016516, 10.865645778269144, -9.616955887049278, 10.191233092822962, -9.372942217136327, 8.938720591241148, 10.594460128759325, -11.029319216870233, -10.340217448576706, -11.544137729899424, -8.812865870418463, -9.718230928258487, -8.837271208084466, 8.851759817489102, -9.581533895623402, 10.171369048125166, -10.506841067508564, 8.30435045247054, -8.397852006725849, 8.645486610233004, -9.077552281679568, 9.498925979535475, -10.217000944416906, -10.805120673918664, -11.5008453238372, -9.13297745900813, 12.747623496023825, 9.731591504815933, -9.067404884296439, -8.227052106236965, -10.708427586776954, 8.642764225511085, 10.619642750796931, -10.95171416197922, 10.460139529752242, -10.29759629761954, -7.758743681097027, 10.572214511108882, 9.010301997460516, 8.512202364824276, -9.616125611739827, -8.221912563244048, -10.902929498527342, 9.518279463723449, 11.178536519015175, 9.608348018222227, -9.155002264401508, -10.064648629737718, 12.010765930964578, -10.533596275177254, -9.728067484030817, -9.596396205554546, 11.501580391291084, 10.366673925126078, -10.59173488915163, 9.41056757774286, 9.024960916674063, -10.18844899727191, -13.060102620528903, 9.022916756900678, 10.965276299933638, 8.606830289403598, -8.708805384495344, 10.392205979465627, -8.302666179283108], \"y\": [10.952617063284325, 10.397363537742384, 9.050123141763965, -10.034861020945822, -11.453758251242261, -10.945564635349177, 10.685309152445097, -9.007639890946388, -9.427657721936457, 9.95758913533719, -10.502773561115228, 9.628494477234991, 9.240600932578332, -10.070970937883736, -9.846672256924625, 11.17152044455243, 9.747730992147039, -9.185222852468394, -9.82486045880134, 9.977958901370169, 11.04317356891552, -9.700752143613085, -10.245937656935727, -11.182268686824797, -9.0409886994639, 9.546981318177679, -10.33741339869035, -10.398989624556094, 10.607965687073643, -7.801415555054903, -9.896898867670084, -10.6759706911525, -10.224459512279426, -10.108129823401798, 8.859921311047856, -10.23165828606738, 9.476862911495818, -9.819986744236026, -9.75326866694088, -9.407858628623108, -11.351433387706045, -7.370834062144537, 9.726444786516783, -9.97539390237617, 9.986029605715284, 9.268906688318522, 9.192969015914755, -9.04558482704149, -10.292738482948021, -10.852700474138452, -9.445438565435165, 9.786656406851398, 9.311238611403445, -10.01109967323545, -11.031105171591816, 8.616724694275963, 9.004953654350485, -9.050915815489573, -10.668400701981701, -10.01836696654187, 11.04100412976088, 8.315351381221728, -9.807083558960139, 10.010629199038592, -8.466591311998101, -9.212715839838893, -9.086199280181837, -11.607685239559913, 9.572084778755325, 10.954699764105285, -10.649117823105895, -10.423538167511587, 10.915556642591984, -9.81999303602928, 10.863531404000788, -10.921562492505302, 9.218628755419362, -10.830188014197818, 10.613553636155531, -11.29843813675607, -9.578923337365996, -10.153957425023819, -10.535235019475419, 10.943013621521775, 10.486350389834845, 10.69322376860721, -11.35738538188812, 9.671374914029396, -10.8659126280404, -9.953269693651986, -9.006614969476834, -7.763264874884348, -11.053866175510887, -8.499115954315451, -10.054618867090166, 10.436100996363452, 10.317581024990357, -9.923196474830414, -10.813961574850142, -11.452784912821567, 9.779179516573071, 8.39203422104963, -11.146029691987952, 10.445766771867527, -8.42866200128398, -11.257187748133127, -10.972649610953166, 10.01621485356473, -9.565895278510379, -11.17780685462025, -9.955883923730113, 9.409632480752942, 9.48098620990824, -7.886791140634635, 9.559361918323479, -9.887864493144502, -8.887710688622102, -8.730720789619053, -9.19091184302046, -10.311051960668621, 9.7869348340496, 10.705062298570311, -9.262974802374, 9.757440244709072, -9.930686674265742, -9.8781063042683, -11.423444372234759, -10.779089776716871, -9.708808331337577, -9.379592369877459, -9.328222586622653, -10.164172623676766, -8.834258267412165, -9.057042592584315, 8.642123995827525, -10.474309895163826, -7.2261836157472406, -9.155761208157822, -8.134980961100661, -9.770743353634078, -9.200817706022482, -10.183765161938009, -11.108369339490231, -10.447940030338593, -10.693280501625155, -12.436049779340976, -11.717134942622858, -8.261754613594656, 10.779163814162285, -10.501171910389605, -8.316415666524838, -9.110435311373571, -9.794682668781924, -11.024867391341104, -8.63140373795071, -8.930824636476876, 10.615255554555517, -10.106930476319164, 8.254929103087239, 11.129082616489539, 10.378823391277484, 9.656457058819157, -9.75906913276347, 9.657100949795426, 10.544116393058335, 11.76916593528104, -10.145669699585213, -10.346875820728325, -9.986847790495373, -9.386732990568063, -11.031378794953843, 9.807299440017307, -11.719165878121222, -9.446099986262801, -10.73394879719487, -10.46436179188301, -11.146930295583825, 8.934843165422343, 11.56809906818252, -10.282154351508085, -9.40363734757285, 10.241613399555321, -10.758155209730905, -9.677125747315683, 10.212579678588252, 9.455079296482204, -11.22287788113925, 11.97636521003893, -9.775561499089074, -10.360264560722541, 8.923889061795466, 8.830261150303466, 9.904712998723324, -10.734299747818694, -10.692760389693689, -10.49568136756527, 7.997896156834275, 10.551014316613413, -9.925528866542232, -9.871440638203245, 10.289455853351118, -8.266562565906032, 10.392044013571637, -10.523081548548644, -9.841177613726737, 10.18319358184833, -10.147142492707163, 9.79416559503734, 11.468605477117991, -8.635506987430496, -10.144373443920243, -10.296444831928174, 9.698899010996659, -9.789426620268138, 10.873294799757348, -11.304666538270398, 9.34190342605511, 10.179543608938976, 10.064723100863027, 9.992300888955427, 9.859281602788409, -9.933352402294906, -9.765837980987136, -10.573644790405682, -10.461012546143088, -10.064123008705538, -8.474006439838833, -10.644586060169274, 10.794871301160246, -9.22824484397218, -8.848933241059923, 9.28594390614274, -10.015140039040912, -10.038433654738567, -11.00091298078219, 11.281652426941717, 9.42989702227168, -8.703656615669372, 11.454900452648973, 10.555636686531688, 10.331815249346059, 9.365854485707928, 9.146108960602188, -10.564868414230167, 9.954840982513412, -11.2298399870219, -12.004516615251722, 10.660079897217686, -10.486332340543107, -10.904431231668454, -10.440615516175157, 10.247227932552883, 9.39911006032883, -8.689213972265643, 9.30651207286857, -10.639131331406434, -10.10558590307648, -10.533933249707335, 9.109823436286696, -9.578461067710617, -10.265257033360824, -11.07619757525752, -8.359002816407607, -10.509880855387586, 9.058180266555537, -10.035576143324171, 9.70428081356824, -11.024396217283911, 8.415100749313556, -9.578823200823754, -10.166343593935935, -9.206784880095405, -9.46824226513786, -11.730903283491314, -11.15007046867879, -11.399697903725428, 10.766429262130195, -10.681005006591198, 9.390380441334809, -10.40928377877054, -10.98875887340469, -10.026799197518896, -9.335370480782409, 10.917536921446906, -11.004531641331665, 10.679306295976879, 11.884759742727919, -11.321177815285868, -12.276325246153986, 9.19037927321482, 9.290777620930294, -8.823354135139505, 10.46149667105355, 10.882238494491984, -10.755616897259264, -9.271643667129249, 8.540627587456166, 9.089471215754362, 10.321549948670897, -9.357150814838665, 9.327495809082404, 10.409354398803366, -10.225448783455011, 10.240202053768908, -8.313014212156968, -9.5715094686389, -10.477011815183142, -9.684949134928248, -9.42525620029764, -8.487925047039958, -10.8398735376154, -9.251217113283804, 11.571960846195033, 9.905220845911405, 9.021882136045214, 9.680484678339019, 9.002877871020237, 9.529573674887805, 8.96863647071554, -10.80855351631392, -9.82957009179802, 9.456278507961677, -10.81232057704588, 10.06222517010343, -9.79157398830503, -8.83818974754968, -10.898273415864326, -11.170317297144578, -10.220429562847531, 10.868753786913576, -9.773668267652194, 10.175215679020196, -10.922178047070986, -8.945661259163886, -9.477812539694234, -10.45245718847903, 10.075278832081825, -9.810336968053969, -9.379974483010482, -10.720401279935297, -9.351594525110466, -10.143421224153869, 8.994978258785652, -9.240861722278927, 10.339658420251965, 9.13326370971144, -9.569859064722475, 9.653282609848944, 8.942845038765562, -9.46511069697944, 9.848138808868757, -8.004040568399516, -9.997604657308234, -7.86814805379791, -10.076557486825765, -8.820995071153618, -10.93790344056029, -9.328411474831588, -6.635581931951155, -9.839699228929645, 9.443610036530963, -9.74975283765068, -11.258786841481982, -8.81193418034137, -11.143288278716561, 11.844137252164744, -10.53133303096143, -9.5621258945337, -10.390549886579151, -9.039320782855231, 10.42050217372142, 10.579465381637931, 10.838816823142745, 10.393277596956795, -9.169313228335634, -9.913178259582862, -10.481814142053153, -11.12237930501644, 11.068146541417619, -10.053161908966485, 9.438830410464119, -7.361315184289815, 8.97688862561472, -9.279266596289812, -8.144034233003168, 9.731913502792555, 8.81683584065254, -9.505324378177393, -9.699275852079916, -9.309078424570819, -11.448517825696738, 10.372378699520636, -9.570352259911182, 10.347362470319558, 11.196889288323407, 9.350970508155056, 10.140401608455766, -10.60631585211892, 9.86712451202717, 10.341979585742815, 10.603428743801128, 9.575363917264218, -10.668266149983411, -11.698704030868006, 9.680553521826884, 9.001262686545378, 8.964030171336285, -10.07475073183454, -11.46769608838935, 9.116192240408981, -8.515192117482156, 10.555633224381978, 10.410248168179042, -8.465802126681504, 10.494965191611705, 10.314043369029228, 11.068460396960822, -10.969208716433235, -10.541089664061204, -9.310269504747497, -12.325008014631965, -8.76899123138122, 10.452805056436693, 9.416560811710086, -8.698414756930447, -10.007162341722156, -10.52115817379654, 9.91647917450116, 10.16436733461958, -10.885935365453465, 10.086680901879976, 8.968024898129901, -9.826708365727807, 9.593238098596593, -10.915972846457075, 9.104416203844544, -9.887250878530326, 9.844002508229476, 11.141416334461928, 9.892505140310062, 10.670296349734741, -10.402213247005605, -10.395638609087804, -10.326520735090439, -11.639763923406658, -10.370985971188073, -10.62611387544901, -10.738745593586659, 11.138930141628578, 9.50771718161616, -10.004887188100794, -9.746732959940843, -10.326164832623585, -9.913554730227558, -9.274979648665823, 10.138069305005931, -9.925568928534581, -9.941357354055347, 9.927022868347375, -10.692724886626195, 9.308969243064311, 9.057951963309431, 8.84089806258229, -11.1951679549969, -8.145256128348223, 9.741848193497187, 10.210078817807501, -10.097096938723002, 10.428732595167691, 10.92190775720111, 9.459070686994567, -10.61799877459407, -10.256052438756651, 9.449296723989312, 10.629094182553592, 10.210175449589837, 10.812566391285909, 9.917433296417691, 10.914106250313054, 9.974095193828566, -7.943001041155934, -8.770517123177962, 9.087744619686545, 11.008876513023711, 11.204528361434235, 10.215289123415674, -11.303875115922168, -10.393160543849053, -9.948805525532588, -9.297230151644529, 9.830158943058409, -11.37591385110498, -11.553201315656066, -11.382834344940726, -8.52354953047084, -10.633061667259446, -10.845545203942054, -10.6910597171041, 10.32123327895102, -10.751753826706151, -9.86978099627628, -8.362870826206107, -9.959599481417829, -7.749578031051847, 8.735460050979043, -10.150946664600106, -9.44746071363231, -10.457015793203555, 11.090087068633153, 9.196190174533687, -9.865346303508435, -10.275871041591714, 10.848496838346785, -11.766060843666775, 8.68329836500945, -9.775469991906728, -11.27576565894253, 11.310221052500923, 9.48559001910533, 8.24096798495896, 10.735846621932945, 10.810260272451844, -10.124354723131857, 10.658411241658165, 9.81506804708678, -8.20945359043385, -9.283080924551108, -10.214660755564953, -10.378174852424682, -9.38585326373315, 10.852958733500468, -11.092123332210416, 10.576001745180577, -10.234951368225348, -9.449461484497547, -10.968165380837139, 10.406581037950449, -10.207645275954386, 10.541019374865597, -9.76998302041709, -11.215620204188475, -11.168335957157014, -10.25192246826506, -8.828172765994134, -9.716247343421585, -10.307482953720456, -9.300574403623001, -9.909408990947822, -9.57524050905998, -10.896318778576587, 11.119014232080225, 9.059022057339122, -7.97278672944603, 9.53755002295199, 10.96864811971386, -10.666484965740452, 9.794930213423664, -8.917678007569355, -9.396761906068004, 10.434158753260478, -9.65757572541646, -11.810697852311344, 8.97215192982367, 9.735852125955905, 9.289270241750746, -11.595669763096312, 9.712264694690026, -9.467224932411433, -9.972152697017101, -10.66964983882644, -8.886591412420984, 9.144008991796746, -8.961307027896215, 10.922467770771187, -11.135338523819284, -8.58767724679666, -7.9624631862961, -9.517885074966257, 8.70313885683989, 10.862894782175713, 9.583975997858595, 9.466946439036564, 10.860562411943675, -8.968977989923381, -12.355577318242137, -9.514057591908653, 8.03134026054816, -9.727151610006997, -9.599285196232485, -9.260254766799454, -8.598222798140755, -11.335405331594751, -7.23170816780549, -9.863984967102276, -8.238196492518384, 9.587297322014969, 9.376663548914083, 9.428114126395698, -9.137174283116828, 10.377073830522553, 10.565762583301858, -12.08966811084405, 8.77014841624921, -11.029855263447242, 9.83944402929282, -9.45216599220219, 10.16628834002494, 9.726973736629105, -8.493860878174424, -9.66526574734373, -10.523731411002956, -10.656413495954803, -10.4184822192089, -7.955645308502358, 10.556488390086834, -9.750458318161462, 7.667515514935887, -9.18384822608894, 10.15579825714855, -9.879747686615598, 11.503341640478107, -10.901914988199234, 11.572456036022656, -8.62654533684902, -7.341158429793044, -9.788149916322826, -9.065891200592445, 9.910351311363977, 9.988966195644272, -10.299543745116399, -8.335162122822325, -8.710910838642015, 9.407056809044157, 10.169398850454332, -9.608520880907104, 9.970510753669268, -11.209216985370947, -9.775874567016547, 8.653911348221389, 9.316910698476061, 10.317360641061649, -10.164997044519763, -10.429732759747246, -8.985326746928607, 11.042182466174477, 10.057570816524393, 10.031840864750686, -10.856230495222853, -9.96940010057161, 10.203828743260123, -10.958657292196735, -10.39363511546286, -10.292200903551649, 9.819351010901675, 9.623515680457173, -9.027949081378484, 10.034234461562953, 10.31443013374993, -9.554890555554755, -9.654670369433, 8.473326616468631, 7.683124257255351, 10.12383718527408, -10.75680246337727, 9.553524549358407, -9.498347967592684], \"z\": [11.597964531397883, 10.483718202410198, 7.971297800839785, -9.970184058747712, -11.242168455362295, -10.81913485360004, -9.815998703570731, -9.306646642008277, -9.657022087219387, 9.003031830516255, -10.58833674762046, 8.892497145111564, 9.002205251173843, -9.99715156235911, -9.807932170570952, 10.388696618315253, 8.667292509566423, -9.30480916345569, -9.786376523080687, 9.152480889759147, -10.294576238093669, -9.690938508023047, -10.110857998939832, -10.719840683668997, -9.307318515496798, 9.374768125927924, -10.475627256334073, -10.170037038494073, 10.777239436050754, -8.12854608049755, -9.959171660244222, -10.704569665818916, -10.16765512594248, -10.040439037435988, -10.148885353885666, -10.17435650153961, -9.992033223472728, -9.760232627777581, -9.74338698292693, -9.668528301135321, -10.856080608422568, -7.894288044395314, 10.572345905266035, -9.90726148266395, 10.21480759709525, -10.78344093199028, 9.539125651255583, -9.145171998126715, -10.299117997938108, -10.592283036016747, -9.43443808865634, 9.448323548566488, -9.268318039897729, -10.01222532506424, -10.693464026352872, 8.608558777829353, 9.396898036710798, -9.189139160808754, -10.548717587673266, -9.90699488588983, -8.654820295794964, -9.606650115896995, -9.772935736133018, 9.837871160938763, -8.766414850866411, -9.293441154563828, -9.410824331627085, -11.274381745524492, -10.555931963838153, -10.550057331365206, -10.49769581774319, -10.496825905624263, 10.809764012353412, -9.884262925936754, 10.99212959666179, -10.82604037974495, -8.939086336360601, -10.724698800232055, -9.898727745390985, -10.90989992998136, -9.77544056311933, -10.167434049534064, -10.285719746188986, 10.578116309743882, -10.995829160574047, 10.351483562265138, -11.178471309557008, -11.330374777893852, -10.592327091509203, -9.785193399805776, -9.223660524560515, -8.34417695759266, -10.969263788744247, -8.924568748431296, -10.080641289019034, 10.725936185278378, 10.364099966145982, -9.79131535722742, -10.627013934777718, -11.122497551401322, 10.330517998514274, 9.503354581606404, -11.005380420453573, -11.034826144300458, -8.795797675431366, -10.897626834491014, -10.657879358634762, -10.357608712982051, -9.609265635300828, -10.843188292751076, -9.908614127578787, -10.18722421407256, -9.874273555915233, -8.391311811004172, -10.49647208806475, -9.991407618960892, -8.890192010664345, -8.924498005949218, -9.103843006365233, -10.201627807733244, -10.572955692792764, 10.10068075283852, -9.507267836550517, -9.882681690579338, -9.975099277395824, -9.840173395978537, -11.139110559956565, -10.420689497840556, -9.678746824425174, -9.447093433036676, -9.501166510277894, -10.104919145354875, -8.971546671841859, -9.067449469287578, -11.237104187118367, -10.256894970604733, -7.587257210116507, -9.375074232966357, -8.424317328123813, -9.544049888614733, -9.534995152163317, -10.191786540014892, -11.068573906467368, -10.237798368247221, -10.511447620817997, -11.944464222254826, -11.28184602305234, -8.683396921930171, 11.050009979969817, -10.27546503765574, -8.619405203020431, -9.376932370180857, -9.921028103468725, -10.845752565844165, -8.95040585299813, -9.122247139941157, -10.538003386374882, -10.09805334653297, -9.093260931236376, -9.26422086223793, 11.505448021672612, -9.854239262090564, -9.675601704072216, -10.460424151074092, 10.688818395292374, -9.043407964593674, -10.112073659164436, -10.259939913249152, -10.165341724856, -9.54027606696959, -10.756079299321467, 9.233112317159016, -11.296543079262788, -9.610361338352504, -10.569734323244399, -10.38436575186363, -10.82438656476276, -9.013626505638161, 10.82139835798328, -10.195794751640905, -9.527271862691972, 8.487230208127748, -10.62555514642371, -9.707012035931106, -9.9111012332732, 10.055301785880621, -11.17215297257197, -9.340719202937791, -9.57018445014093, -10.376466669974253, 8.057165165984518, 8.200660110831576, 9.62139715234235, -10.50560521345257, -10.604877772268074, -10.307489496311533, -9.81121006820991, -10.346059277742947, -10.107984032105831, -9.898332297671875, -9.723619137990852, -8.545324450778976, -10.501043087173896, -10.53156667279463, -9.868041036569815, 10.590863819810503, -10.144687098087644, 8.571961555413182, -11.12226658459403, -8.892192408970981, -10.156078696857868, -10.04799901830765, -9.550095613294246, -9.723655235046804, 10.025910126444643, -11.153521610393037, -8.37173917321654, -9.684910210842961, -9.674196118729276, -9.266149988340283, 10.128385341350707, -9.945937648974438, -9.825111645118316, -10.386504297235634, -10.375338946047535, -10.228657136694153, -8.765936599391452, -10.529594861428253, -9.92281528256821, -9.401926486442425, -9.094357188153007, 10.860332002835639, -10.135118009890267, -9.914047577451948, -10.684444972333537, -11.072522693049494, 9.133848844249933, -9.032198467670616, -10.972703543594317, -9.51074986045908, 10.10312510458631, 9.381168381056828, -9.94175660378579, -10.26397406889653, -8.537085904764085, -10.995643669254543, -11.495516504207377, 10.469548510473523, -10.37534411907299, -10.828541549989389, -10.316010987859777, -9.79165772486197, -10.820116103345176, -8.946562970180626, 9.864762308989476, -10.68308086949758, -10.104923633667319, -10.400444756795826, 8.656670871857884, -9.693659853087228, -10.283232361567563, -10.877558287383907, -8.637042615903367, -10.420631635842964, 7.857550071637702, -9.912313564283872, -9.409834832741454, -10.631633553299869, 8.544050602440537, -9.711140968595084, -10.249465821434173, -9.321451652891946, -9.53867013357004, -11.231920072558971, -10.729256212362408, -10.87638600884593, -10.187827496492783, -10.743904216808074, 9.462390090144494, -10.305422279360291, -10.80717066470709, -10.218152978868288, -9.545003051039393, 10.719556491365909, -10.739317451437891, -9.49251744950856, -8.883616500669492, -11.157443702597948, -11.830130387346731, 8.23316820165026, 8.920651311025345, -9.02491322064423, -9.74321609521554, 10.361556082945713, -10.748615117078915, -9.419605929072825, -11.559934364358664, -10.612891530827767, 9.805948586045407, -9.584724792361031, -9.818665817115964, 10.193564910857036, -10.265310190461296, 10.50466440372663, -8.666524975547363, -9.534427665442816, -10.20417656899582, -9.761739090029478, -9.687343153636064, -8.689797365018087, -10.619525819158945, -9.334553349874344, -8.68817422535411, 10.412737547255615, -10.530459369203852, 7.821004202353871, -10.052441306913197, -10.329859919140953, 8.63956174102412, -10.725759583263049, -10.037934471180403, 9.657033908796887, -10.572220909577014, 10.67463892689484, -10.02161001912736, -8.86178188401167, -10.751071758640604, -11.155194360417717, -10.060498151556558, 9.700301589660382, -9.790340376257808, -9.726564868541763, -10.781987377721057, -9.115004579747186, -9.691104937784589, -10.305106963849749, 10.165179215463782, -9.900648106455916, -9.529590401552607, -10.67242070226449, -9.481957790644923, -10.115039241993681, -9.360774567693174, -9.293881243396573, -11.365417741151157, -8.78200435363924, -9.750950993758753, -10.387968195393036, -10.240227110887561, -9.78545900970153, -9.607982657168225, -8.33724124331637, -10.049331448033252, -8.331532529674817, -10.154292925934943, -9.302285986881884, -10.890968584236843, -9.588914978376343, -7.361809314449458, -9.767485334157785, 8.547460050005911, -9.728364169789057, -11.092742374300737, -8.914562466379218, -10.964454334073357, 12.894687442946996, -10.385642363986697, -9.650349560351446, -10.51106164722087, -9.22331960587028, -10.957794470362021, 10.456920272012955, -10.903751930040674, 10.652475815506412, -9.322466487071381, -9.856544117045425, -10.462693811003104, -10.81152334733651, -8.932436335895915, -10.098104900392523, 9.836361087624722, -7.749157186481523, 8.687121217654203, -9.524354249004132, -8.621293067691186, 8.346935282539082, -10.915836996895123, -9.548422097823698, -9.885108400992877, -9.328852263755898, -11.071868856086406, 10.352176140045353, -9.843541830086078, -11.733074717210755, -9.249186189953871, -9.246823781484704, 9.721346367319976, -10.417537835441795, 9.012039936369879, 10.151825178718717, 10.311734571519867, 9.578688600045577, -10.435207361685157, -11.35638327661063, 10.011304766947003, -9.95461677672848, 8.72597588149478, -9.983708388109438, -11.237182440380806, -10.02911933125128, -8.81798635848853, -9.708263111290334, 11.621376627841455, -8.701573596466142, 10.839430951555052, 9.939973107068814, -9.392084463264965, -10.662980442300269, -10.57540265732133, -9.368366374351748, -11.984847942563785, -8.96785162343332, -9.472233874538714, 9.159142731523163, -8.86716775071007, -10.218657770228761, -10.339859999658628, 9.457580313539363, 10.307142897901437, -10.867763135493044, -9.781076309206437, 7.414029921938599, -9.746076351960502, -9.43832059226568, -10.672296434167704, -10.267049115416345, -9.846022298178486, 10.463140200210496, 11.303478214460839, 9.71282075482781, -9.78400754203087, -10.401629276842502, -10.475353671820114, -10.30356205897617, -11.359931839862433, -10.424421071055477, -10.453839489146556, -10.679300346247809, 11.699612511228636, -10.469911438017071, -10.032177237851247, -9.824861868493464, -10.08479796962796, -9.96291655774097, -9.28313031544891, -9.635225676605003, -9.948405641817196, -9.960831696190809, 10.233313029438557, -10.544288569798946, 10.090787729321749, -10.00706369499739, -10.398378333553675, -10.85794704544454, -8.499181520394044, 9.449742620628209, -9.751034797024293, -10.15513447056194, -9.459643392185464, 10.798844814458368, 8.537701913993367, -10.272566268156266, -10.37844235249693, 8.545155790040043, -8.396294602997777, 11.156849064009716, -9.69100529263949, -10.162092914764086, 10.314266403640854, 10.634352792430619, -8.4372987789803, -9.006244185109683, 9.561176528778434, -9.412652864810465, 11.059581070080883, -9.911363838155605, -11.05066221044809, -10.305319601751652, -9.975340250025146, -9.389600390441318, -9.25322725374637, -11.061957478704276, -11.167428136798973, -11.080883602056428, -8.8637152363236, -10.535964599994234, -10.865634925668882, -10.638153884582346, -9.463702229550606, -10.86674771550826, -9.755684457086788, -8.797965613648419, -9.76762814299425, -8.21781320092912, 8.768496081004955, -10.214523911999796, -9.622049918604752, -10.466529792740797, 11.600235924453953, 8.324102960012, -9.905413043556125, -10.257787747696577, 11.64222794640578, -11.359530694621093, -10.169738845327332, -10.06325796630384, -11.044483525874504, 12.469393207944165, -9.51206774071412, 6.8885533976418305, -10.201197816231383, -8.494952461283601, -10.061194213407282, 11.09076056359527, 9.700679707348266, -8.66737076769663, -9.343514846263702, -10.190793759892339, -10.433445371386787, -9.481803394669916, -10.512226545729474, -11.034685201190396, 10.30087250487569, -10.066366846263286, -9.753033864089463, -10.919185135327787, -9.327139972775404, -10.170763990376182, -11.341143876939284, -9.858920579676884, -10.839843457530813, -10.89241642182662, -10.321804840002685, -9.062875993378727, -9.77918638514634, -10.283059689381602, -9.626467061212773, -9.9243304536467, -9.618334581149156, -10.682456916640673, -9.022087910301876, -9.938757865401772, -8.393029940823164, -10.858690703365097, -9.931533580798783, -10.526407594197439, 9.385328930570772, -8.96651815855104, -9.573609682002752, 10.61681350605328, -9.775708960429423, -11.44564933983155, 8.851412174499433, -10.169024846100154, -10.322318009249717, -11.407744161786539, 9.42024242996185, -9.447121583617957, -10.038809653726974, -10.722168074506808, -9.203277495368114, 7.427854600207198, -9.187040881014578, -8.386587605330142, -10.870929295590125, -9.042866819169776, -8.529892167794397, -9.665912979780055, 9.007507099797865, -8.779618169726865, 8.999222863512097, 9.019839114704443, 10.32869279607932, -9.327067481099789, -11.928486509414016, -9.634990465014905, -10.690523694351311, -9.740126616665494, -9.744111906346035, -9.284610111544016, -8.967280083626347, -11.051337679894912, -7.875994250589656, -9.74689665774314, -8.752246501469171, 9.515793434955942, 8.655459551704235, -10.487708572228101, -9.481319048948063, -8.607489807037519, -9.237188394406433, -11.918661242679761, -10.7255034161752, -10.797855541427356, 9.447198563173467, -9.523258031605874, -10.027663287498024, -10.912930025273088, -8.764599155102319, -9.735241657192349, -10.535069686992049, -10.447719365026147, -10.26762940757838, -8.31052167579778, -10.468503489294974, -9.783004387544295, 6.835511696842363, -9.31715367211141, 11.698862297031209, -9.932510718225341, -6.913561360428195, -10.678787181192297, -8.38779656929238, -8.997388929217834, -7.813079036660518, -9.917792991960573, -9.209598579661895, -10.962371902103092, -9.318059986331459, -10.236460539210817, -8.457145589752098, -8.95725160524874, 10.521616360336422, 9.736650100617318, -9.702151275529573, -9.7123028813744, -10.963694006423186, -9.628183913831108, -11.703644382464692, -9.206583986325658, -9.286934882221999, -10.200980174358133, -10.291252054358425, -9.222924131959624, -10.405399497430013, -10.301130261497425, 10.497102107718376, -10.721771771568315, -10.059466497971476, 8.613291817862676, -10.871243911418478, -10.316665479292098, -10.142742973002049, -10.711897871037191, 9.17786960681422, -9.231436700389127, 10.483508599744578, -9.557568304326123, -9.561893100050579, -9.9357696256996, -9.460585132889815, -10.915873698308209, 11.632298104779949, -10.538306334758108, 9.094942241158941, -9.49638937006343]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 2\", \"marker\": {\"color\": \"rgb(44, 160, 44)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 2\", \"scene\": \"scene2\", \"showlegend\": false, \"text\": [\"example_1\", \"example_4\", \"example_8\", \"example_11\", \"example_13\", \"example_14\", \"example_16\", \"example_17\", \"example_19\", \"example_20\", \"example_21\", \"example_22\", \"example_26\", \"example_34\", \"example_35\", \"example_36\", \"example_37\", \"example_40\", \"example_46\", \"example_50\", \"example_53\", \"example_61\", \"example_64\", \"example_75\", \"example_87\", \"example_89\", \"example_91\", \"example_93\", \"example_95\", \"example_98\", \"example_103\", \"example_112\", \"example_114\", \"example_116\", \"example_119\", \"example_121\", \"example_122\", \"example_127\", \"example_130\", \"example_134\", \"example_143\", \"example_146\", \"example_149\", \"example_150\", \"example_151\", \"example_152\", \"example_153\", \"example_154\", \"example_157\", \"example_159\", \"example_160\", \"example_161\", \"example_166\", \"example_176\", \"example_180\", \"example_186\", \"example_187\", \"example_189\", \"example_190\", \"example_191\", \"example_197\", \"example_200\", \"example_201\", \"example_202\", \"example_205\", \"example_206\", \"example_207\", \"example_216\", \"example_217\", \"example_219\", \"example_225\", \"example_229\", \"example_230\", \"example_241\", \"example_245\", \"example_246\", \"example_252\", \"example_253\", \"example_257\", \"example_262\", \"example_263\", \"example_264\", \"example_268\", \"example_269\", \"example_276\", \"example_278\", \"example_279\", \"example_283\", \"example_284\", \"example_288\", \"example_293\", \"example_295\", \"example_301\", \"example_304\", \"example_313\", \"example_315\", \"example_317\", \"example_320\", \"example_330\", \"example_335\", \"example_337\", \"example_340\", \"example_343\", \"example_345\", \"example_356\", \"example_369\", \"example_378\", \"example_379\", \"example_384\", \"example_385\", \"example_387\", \"example_391\", \"example_392\", \"example_395\", \"example_396\", \"example_397\", \"example_399\", \"example_400\", \"example_401\", \"example_402\", \"example_403\", \"example_406\", \"example_407\", \"example_412\", \"example_417\", \"example_418\", \"example_431\", \"example_437\", \"example_441\", \"example_443\", \"example_444\", \"example_452\", \"example_454\", \"example_455\", \"example_456\", \"example_459\", \"example_463\", \"example_466\", \"example_469\", \"example_470\", \"example_472\", \"example_473\", \"example_474\", \"example_476\", \"example_484\", \"example_487\", \"example_488\", \"example_489\", \"example_492\", \"example_496\", \"example_498\", \"example_502\", \"example_508\", \"example_509\", \"example_510\", \"example_511\", \"example_512\", \"example_515\", \"example_517\", \"example_520\", \"example_521\", \"example_524\", \"example_537\", \"example_540\", \"example_546\", \"example_550\", \"example_556\", \"example_559\", \"example_562\", \"example_563\", \"example_564\", \"example_565\", \"example_569\", \"example_574\", \"example_577\", \"example_580\", \"example_586\", \"example_592\", \"example_595\", \"example_600\", \"example_604\", \"example_606\", \"example_608\", \"example_612\", \"example_616\", \"example_623\", \"example_625\", \"example_627\", \"example_632\", \"example_633\", \"example_635\", \"example_639\", \"example_640\", \"example_641\", \"example_642\", \"example_645\", \"example_646\", \"example_647\", \"example_648\", \"example_653\", \"example_655\", \"example_656\", \"example_658\", \"example_659\", \"example_662\", \"example_663\", \"example_675\", \"example_681\", \"example_683\", \"example_684\", \"example_685\", \"example_686\", \"example_687\", \"example_689\", \"example_690\", \"example_696\", \"example_698\", \"example_699\", \"example_702\", \"example_703\", \"example_709\", \"example_717\", \"example_719\", \"example_725\", \"example_726\", \"example_728\", \"example_729\", \"example_734\", \"example_738\", \"example_740\", \"example_742\", \"example_747\", \"example_748\", \"example_749\", \"example_751\", \"example_753\", \"example_758\", \"example_760\", \"example_761\", \"example_763\", \"example_766\", \"example_768\", \"example_769\", \"example_773\", \"example_775\", \"example_776\", \"example_779\", \"example_784\", \"example_789\", \"example_790\", \"example_791\", \"example_794\", \"example_795\", \"example_797\", \"example_800\", \"example_801\", \"example_804\", \"example_805\", \"example_815\", \"example_821\", \"example_822\", \"example_825\", \"example_827\", \"example_830\", \"example_831\", \"example_833\", \"example_835\", \"example_837\", \"example_840\", \"example_848\", \"example_850\", \"example_851\", \"example_853\", \"example_854\", \"example_856\", \"example_860\", \"example_863\", \"example_866\", \"example_870\", \"example_871\", \"example_872\", \"example_876\", \"example_877\", \"example_878\", \"example_880\", \"example_883\", \"example_884\", \"example_890\", \"example_891\", \"example_895\", \"example_896\", \"example_897\", \"example_902\", \"example_911\", \"example_913\", \"example_919\", \"example_920\", \"example_927\", \"example_928\", \"example_929\", \"example_935\", \"example_947\", \"example_951\", \"example_954\", \"example_955\", \"example_956\", \"example_957\", \"example_959\", \"example_960\", \"example_961\", \"example_969\", \"example_971\", \"example_972\", \"example_975\", \"example_977\", \"example_980\", \"example_981\", \"example_991\", \"example_992\", \"example_995\", \"example_996\", \"example_1002\", \"example_1003\", \"example_1008\", \"example_1011\", \"example_1012\", \"example_1014\", \"example_1015\", \"example_1016\", \"example_1017\", \"example_1019\", \"example_1020\", \"example_1021\", \"example_1025\", \"example_1028\", \"example_1038\", \"example_1039\", \"example_1042\", \"example_1044\", \"example_1045\", \"example_1048\", \"example_1051\", \"example_1056\", \"example_1059\", \"example_1060\", \"example_1062\", \"example_1064\", \"example_1066\", \"example_1069\", \"example_1070\", \"example_1071\", \"example_1072\", \"example_1076\", \"example_1077\", \"example_1081\", \"example_1082\", \"example_1086\", \"example_1092\", \"example_1095\", \"example_1098\", \"example_1099\", \"example_1104\", \"example_1109\", \"example_1115\", \"example_1119\", \"example_1122\", \"example_1123\", \"example_1126\", \"example_1127\", \"example_1129\", \"example_1130\", \"example_1135\", \"example_1136\", \"example_1139\", \"example_1141\", \"example_1143\", \"example_1147\", \"example_1148\", \"example_1150\", \"example_1152\", \"example_1153\", \"example_1154\", \"example_1158\", \"example_1162\", \"example_1166\", \"example_1167\", \"example_1171\", \"example_1174\", \"example_1180\", \"example_1183\", \"example_1184\", \"example_1186\", \"example_1191\", \"example_1194\", \"example_1195\", \"example_1199\", \"example_1203\", \"example_1207\", \"example_1212\", \"example_1213\", \"example_1215\", \"example_1218\", \"example_1219\", \"example_1224\", \"example_1227\", \"example_1238\", \"example_1241\", \"example_1243\", \"example_1246\", \"example_1248\", \"example_1250\", \"example_1254\", \"example_1256\", \"example_1257\", \"example_1260\", \"example_1264\", \"example_1266\", \"example_1267\", \"example_1275\", \"example_1276\", \"example_1277\", \"example_1279\", \"example_1282\", \"example_1291\", \"example_1294\", \"example_1295\", \"example_1296\", \"example_1297\", \"example_1300\", \"example_1306\", \"example_1308\", \"example_1311\", \"example_1312\", \"example_1321\", \"example_1325\", \"example_1327\", \"example_1332\", \"example_1337\", \"example_1346\", \"example_1348\", \"example_1349\", \"example_1350\", \"example_1354\", \"example_1363\", \"example_1365\", \"example_1367\", \"example_1369\", \"example_1371\", \"example_1372\", \"example_1373\", \"example_1377\", \"example_1378\", \"example_1382\", \"example_1388\", \"example_1390\", \"example_1396\", \"example_1397\", \"example_1398\", \"example_1399\", \"example_1400\", \"example_1408\", \"example_1409\", \"example_1410\", \"example_1411\", \"example_1413\", \"example_1415\", \"example_1416\", \"example_1426\", \"example_1430\", \"example_1434\", \"example_1437\", \"example_1438\", \"example_1439\", \"example_1442\", \"example_1443\", \"example_1444\", \"example_1445\", \"example_1451\", \"example_1459\", \"example_1462\", \"example_1465\", \"example_1475\", \"example_1476\", \"example_1478\", \"example_1479\", \"example_1482\", \"example_1484\", \"example_1485\", \"example_1487\", \"example_1494\", \"example_1495\", \"example_1496\", \"example_1499\", \"example_1500\", \"example_1504\", \"example_1508\", \"example_1513\", \"example_1515\", \"example_1517\", \"example_1520\", \"example_1522\", \"example_1527\", \"example_1528\", \"example_1529\", \"example_1533\", \"example_1534\", \"example_1535\", \"example_1539\", \"example_1543\", \"example_1550\", \"example_1555\", \"example_1559\", \"example_1567\", \"example_1569\", \"example_1570\", \"example_1573\", \"example_1577\", \"example_1579\", \"example_1583\", \"example_1584\", \"example_1585\", \"example_1589\", \"example_1590\", \"example_1594\", \"example_1595\", \"example_1597\", \"example_1598\", \"example_1600\", \"example_1603\", \"example_1623\", \"example_1624\", \"example_1629\", \"example_1631\", \"example_1633\", \"example_1634\", \"example_1636\", \"example_1638\", \"example_1643\", \"example_1648\", \"example_1653\", \"example_1654\", \"example_1655\", \"example_1659\", \"example_1660\", \"example_1661\", \"example_1663\", \"example_1670\", \"example_1678\", \"example_1679\", \"example_1680\", \"example_1681\", \"example_1685\", \"example_1687\", \"example_1688\", \"example_1690\", \"example_1693\", \"example_1695\", \"example_1698\", \"example_1700\", \"example_1702\", \"example_1705\", \"example_1706\", \"example_1707\", \"example_1710\", \"example_1714\", \"example_1715\", \"example_1716\", \"example_1720\", \"example_1721\", \"example_1722\", \"example_1723\", \"example_1724\", \"example_1725\", \"example_1731\", \"example_1733\", \"example_1737\", \"example_1740\", \"example_1742\", \"example_1744\", \"example_1746\", \"example_1748\", \"example_1750\", \"example_1751\", \"example_1756\", \"example_1757\", \"example_1762\", \"example_1766\", \"example_1768\", \"example_1771\", \"example_1772\", \"example_1774\", \"example_1776\", \"example_1777\", \"example_1785\", \"example_1788\", \"example_1790\", \"example_1792\", \"example_1793\", \"example_1794\", \"example_1795\", \"example_1796\", \"example_1803\", \"example_1804\", \"example_1805\", \"example_1806\", \"example_1809\", \"example_1820\", \"example_1821\", \"example_1828\", \"example_1833\", \"example_1834\", \"example_1836\", \"example_1837\", \"example_1839\", \"example_1841\", \"example_1842\", \"example_1845\", \"example_1846\", \"example_1849\", \"example_1850\", \"example_1861\", \"example_1862\", \"example_1868\", \"example_1873\", \"example_1875\", \"example_1876\", \"example_1877\", \"example_1878\", \"example_1879\", \"example_1880\", \"example_1883\", \"example_1886\", \"example_1889\", \"example_1892\", \"example_1893\", \"example_1895\", \"example_1898\", \"example_1899\", \"example_1902\", \"example_1905\", \"example_1906\", \"example_1908\", \"example_1913\", \"example_1915\", \"example_1916\", \"example_1923\", \"example_1926\", \"example_1940\", \"example_1945\", \"example_1946\", \"example_1947\", \"example_1949\", \"example_1950\", \"example_1951\", \"example_1953\", \"example_1962\", \"example_1965\", \"example_1966\", \"example_1968\", \"example_1969\", \"example_1980\", \"example_1981\", \"example_1982\", \"example_1994\", \"example_1995\", \"example_1997\"], \"type\": \"scatter3d\", \"x\": [-9.905055649454463, 10.240670939968378, 9.906061909750367, 10.290720128967397, -10.661215860636451, 9.431006390062615, 10.675727788750171, 8.532971506991553, 9.85104669139728, -9.881199025328305, -10.80863641055078, 10.679260578659983, 9.766226897546733, -10.821927694413395, 8.783031358166692, 10.84724621877913, 10.150983978751661, -8.418739807716197, 9.990489502496771, 10.491015978790776, 11.288286078109248, 10.576597198173156, 9.27423646758659, 9.149455264203016, -8.881871288940834, 10.117537404240744, 9.854351562768247, 9.167934011028215, 10.32290047246955, -10.226058031971016, 9.225681505399837, -10.288035348910519, 8.667959484049774, 9.817656691077847, 10.02624905144214, -11.469969068626254, -9.529691006170777, 9.164845366743403, 10.594727724791158, -10.266257474193885, 10.349332200179274, -9.749377633981647, 10.308017761795657, -12.433599286239481, 10.803315880901026, 10.16886586105708, 8.420072589886418, 11.252798165879303, 11.354285268637234, 10.556997277249893, 10.070160414255565, -10.26957679802639, -10.39919148312281, 9.585786304325483, 7.171858973135229, 9.463645365436266, 10.525946160534778, -8.012441846501321, 10.791925739185864, 11.37213948237856, -11.83723337224704, -10.696320781603141, -10.62175128515177, 10.242192498008002, 8.9009827773523, 9.659368691817333, 8.992900808727697, 10.720331987813747, 10.278362218001517, 10.536585018164633, 9.16788056296674, 10.462510264728753, -8.92733022689414, -9.754805887801115, 7.987530596596413, 9.048280666131825, 9.03494597742082, 8.592213186522041, 9.512679688825246, 7.591494209945484, 10.16387452860615, 10.512075162496167, 10.205030195691894, -11.53533409115434, 8.054797732127158, 10.76530004870801, -8.53489557125057, 8.87595683007851, 10.052074392898648, -7.443994496358844, -9.431738354277256, -10.650178069080255, 12.223852866414155, 9.36129976512608, 9.909471333691677, -8.2444784731489, 9.320015754663405, 9.91118902347026, 10.114096081339056, 10.379531961340557, -8.390697198814337, 10.0443846773304, -9.15742582374099, 10.419936330305287, 9.053783654255273, 10.788533107995814, -9.852092000472682, 10.397804061325498, -9.026532277460952, -10.259672314561527, -10.471187707136549, -9.233092213466417, 10.732352458094653, 11.693188610817966, 10.121742355004203, 7.846391720448834, 8.395072240032475, -8.8420580864483, 9.285856912402982, -10.074851373676925, 10.285470387906816, 10.34903677238665, 9.293981046976333, 10.583053993260247, 10.489690786823417, 9.072020266035235, 10.212601682773238, 10.652732687050738, 10.41293565697862, 10.053718334426021, 9.452923047939242, 11.277800694001588, 9.490066722622592, -10.38117677178063, 10.196233739436655, -8.599458384549557, 11.14426652201496, -10.72329710054115, 9.813850856363535, 9.791749423526209, -10.363912324806902, 9.695841978049236, 10.437235041159633, 10.302425783867836, 10.038347613197248, 9.215709565194807, -9.643448167501793, 11.170762575682874, 8.73543461437979, 9.084478813065033, 9.67069281883713, -8.581661788243741, 10.335967825582552, 11.842593181318936, 9.655572886680092, 10.429456575601868, 8.962535682595766, 11.407608461877674, 11.040841013954248, 10.788050873143902, 11.36664327727831, -11.736475776652902, 10.506729692198123, 11.550231257382409, 9.339675888767268, 9.56564715399253, 9.605875728972853, 9.86128235927507, 10.44241755168903, -9.802095378588719, -11.505176165789614, -10.058540201872477, 9.263133172281474, 9.498066176939501, -9.478084008705872, 9.680555890645904, 10.354522535356349, 10.400590933061835, 11.270240887270944, 10.332462666510969, 10.005542857002382, 9.915310385493083, -9.512688433025632, -8.331710970454852, 9.502971428312001, 9.936132196445197, 9.760672693651724, -9.728421137257879, 12.00397102617368, 9.896872222959075, 10.319080488767945, 9.38149208433733, -10.890163598112624, 11.47373096220928, 8.34773660649747, -10.495129041197332, -9.59715428784127, -10.688372901313917, -8.41240534817536, 7.835432145627712, 11.424401194516019, 10.897489008190396, 9.227289890111557, 11.365763791116175, 10.168928591188257, -11.331923201215218, 8.714776806096458, -10.148002850534484, -10.045529497242725, 10.65456057964333, 7.008159491928065, 11.41749826837408, 11.201313935736499, 11.46551917739199, 10.94926730570014, 9.57559832196401, -9.814878361936355, 11.095935763736339, -12.388982792443139, 11.688720592614283, 9.583822896161, 9.808025415692146, 10.662694550201138, 10.47637580806645, 9.950861509728561, 9.62190960755804, -10.262203472396418, 11.610254297161832, 9.754111116775084, 9.441848457315164, 9.96126886604928, 9.920509843656504, -10.490760551495233, 9.448448336265102, 8.783154964051976, 8.778545627316642, 9.202877681276204, 9.210191074720603, 10.693006343305612, 9.571045595263522, 9.079260162033835, 8.923203640852792, 9.25324843956434, 9.53280533984166, 10.195886010134926, 11.353927110436553, 9.656831242682792, 9.853926815345888, 9.921449320324916, 10.96460245097775, 8.581753227631566, 10.099959018140463, 9.866522898099692, 10.229246471534777, 10.190095787083878, 9.412843765033838, 9.796543472249674, -6.426282233566894, -10.070650749724258, 9.218866080564187, 11.813201725222772, 10.892547069719253, 11.224385825850709, 11.052986127352055, -8.87726143647513, 9.371803598465839, 10.269435126431942, 10.1900433503469, -9.849362685627211, 11.191806037417786, 10.658342131561456, 10.674925240038542, 9.32959668171347, -11.832902566110047, 9.708935152474398, 11.1429266680379, -11.603615177135415, 10.21620558698006, -9.517054055755453, -11.307465066201193, 11.631847880322086, 10.445969492341074, 9.226553205876478, -11.418926240292821, 9.258279964035934, 10.554994192578073, 10.96312811340578, 10.148883127520794, 9.675788238516605, 9.837569251833768, 10.119909084275355, -7.9974457454635175, 9.940976706054634, 10.716397062067045, 10.783693134513378, 10.078498890994934, 9.845412120890762, 10.629402212118917, -10.610756889624271, -9.972098890361018, 9.96783772516158, 9.071720967648492, 11.18174815724351, -11.121753778223065, 9.752437264065597, 9.417719673472353, -10.638336923699892, 9.165440096750622, 9.430309511429163, 9.443294399628746, 9.798886273927396, 9.706866288426642, 9.073419381027453, -8.102512091548457, 9.835046265763808, 12.366170465868704, 10.261945367957805, 10.521716059154366, 8.568041077066212, -11.002913765455135, 9.574158485103347, 10.393082174333145, 8.84745486571212, 10.655579237422609, 7.992602700777793, -9.436375346848095, 11.944442009247425, 9.832685147554859, 9.003120199040854, 11.000740286851642, 11.199968669626198, -10.359358410706752, 11.741109759881448, 9.47640870784548, -9.8346699730518, -10.459320861691904, 10.123515034496045, 10.161032542629343, -10.221832417219451, 11.121711893831833, 9.322523006248812, 10.508017381632293, 9.424631536501302, 10.720873902815475, 9.6365737538652, 8.6491143105114, 10.706899923953243, 10.528991668307928, 10.786894806795438, 9.811898893578995, -9.700445310363806, 10.448633865807508, -9.766184589821489, 10.949881760307026, 10.4678348893764, 10.963991944127221, 10.087939332997454, 10.42990571916574, 9.56924332140739, 12.282315868957744, 11.377606944469399, -11.198839459178064, -8.997412254734284, 9.62419822572609, 10.399592625615984, 9.039267342459079, 8.504447078573847, 9.819994560112079, 8.79447159775427, -12.311716754368348, 10.825897323382424, 9.168712761313337, -9.690115085607793, 10.014108351220838, 9.219815583468892, 9.3428096264242, 9.59664085054431, 10.05433912828164, 9.138103806650287, 10.645130925749077, -10.737601281920089, -9.465462471290433, 8.776112991294658, 11.281586683387639, 10.231012754849688, 11.853199422379618, -10.878955667013605, 11.601410576145494, 9.248552813241814, -9.311576234774874, -9.516390657250723, 11.324059318908771, 9.861751805456656, 10.266616515683028, 8.402459022431763, 9.783701604143943, 10.77783255396183, 9.773930714719555, 10.466739518169039, 9.224344728661878, 9.94947933633139, 10.241799974417823, 10.048531268481353, -11.405303012103843, 9.584517088191879, 10.693885815131107, -12.819017635222927, 11.204842209553949, 10.319239188575384, -8.790939498527838, 10.070050907178732, -9.310356006353027, -9.220738915193673, 9.766805406441831, 9.86130491887534, 9.996370073312821, -9.614687140953482, 9.029265196205406, -8.334345883657937, 11.120477129658733, 10.76968660876469, 8.983279419843688, 10.12452827398964, 9.978745502720342, 8.71052980832241, 9.643924648125138, 10.493073303142326, -9.399409404423118, 10.276078153090657, -11.42293019806444, 10.339397265218892, 10.7742711628992, 7.983229059713498, 8.710841714903667, 12.106710208219482, 10.335904598619482, 9.76524605339186, -8.703416109548272, 10.45200554371306, 9.964637093885184, 10.443580022690783, 9.929682151274108, 9.407073820597757, -10.393992099340423, 9.807908848849925, 9.592870298919015, -12.17812052470943, -9.627118719766967, -10.85294262658011, 10.712307451058393, 8.488712318180314, 10.128952532550493, 10.910433167301042, 11.630549492624501, 9.112458194357123, 9.35357660324489, 9.101659345260341, 10.326576029423808, 10.917417103832818, 11.945896795578305, 10.478024730229835, -11.252102603374198, -9.370081700328699, 9.641495417685736, 10.872179041490558, 10.37538618441912, 10.104582041457206, 9.708312414525219, 11.083688025004355, 10.574959884511252, -7.9023465251730345, -10.357271571100757, -10.798951545253622, 9.510538863975256, 10.6196624089087, 11.05497113897943, 11.57603066537131, -10.613716054636248, 11.532337747651376, -10.185158432497373, 9.719837711193167, 7.85100875269729, 11.138910775981659, -9.620369865637814, -9.793417832802506, 9.413993178884365, 9.651168514247598, -9.836310684140443, 11.222201365957801, 10.175053000706015, -11.447825905637425, -7.6131378487131025, 8.791707331122284, -10.513658601416152, 9.644844815041033, -10.342773190233753, 11.094201135916276, -10.69872429158195, 8.182705323380555, -9.384227947290709, -11.001893262044668, 8.956627868297568, 10.952376013135684, 11.010757724772962, 9.996245788117701, 9.051308162013244, 8.68229068760397, 11.993865468187359, 10.142852325931367, 10.28000843097451, 10.579790465313266, 11.05259113947327, 8.700936138205408, 9.258783503913358, 8.888829833637354, 9.609125966025736, -13.590951877872637, 9.73131736871313, 10.086199885498074, 11.512503978147853, 9.57159040492664, 10.688624175106353, -8.922412139708499, 10.076646661120268, 9.766206179865279, 11.322704370660567, 8.938249763215449, 9.918997344750098, 9.732434866002743, 10.30558216450427, 11.308451038474768, 8.934651419522282, -8.657820128028767, 11.01629484166598, 9.318655439296556, -11.29159641793073, -11.096281985172386, -10.000297146376012, -9.591365054952908, 9.186871707966564, 9.136025716313721, 9.325808693623614, 10.640652505756846, 9.416149142222157, 9.021216285501977, -11.611318822167373, 11.658986157644666, 9.66754384112091, 10.752080174273594, 8.435092689717052, 9.627973723066802, -10.178323879740693, 7.886861593939621, 10.345231745836754, 10.06970247345869, 11.277033411486451, -9.072688376835242, -9.051698465581305, 9.625168646818471, -7.613321783273591, -9.474210659925214, 11.126913332941001, 9.949720669616884, 10.733955178323928, 9.678745283360325, -10.962851833763223, 11.475808410678274, 8.598394739282531, 9.067456379798742, -10.884332713373219, 10.732210909470783, -10.028328533241112, 10.942584822664834, 9.583469231603512, 9.89073649554831, 10.18379746392908, 9.897332220671926, 9.878131304351747, 11.415213086515855, 9.295937441402337, -10.257770285141966, -11.348330678714431, 8.160960246389882, 10.87975513040806, 9.508815160339138, -8.923245950366304, 10.21628080555745, 9.780124616462269, 11.59656311826226, -9.797707243968526, 10.408392923856317, 10.42851769566048, -8.55113976393603, 8.982408528639736, 8.408148667083616, 11.066127503945637, 10.938148297649926, 9.597162094328601, 9.305714378349036, -12.274978888111946, -10.901551929708942, 10.292302803972154, 8.257796984425065, 10.084075679697158, 10.030243540945364, 12.311971109385675, 9.47623423463272, 9.333869757571822, 10.807191581971853, 9.706680206064314, 11.3154521025606, -12.50426522165583, 9.163044799685867, -10.213480925498459, 9.993273053829476, 9.716684538280553, 9.795943261865675, -7.4305698369539055, -10.447719055012083, 11.751753672408778, -9.630275531706312, -9.124858914086573, -10.016579921936305, 8.909667629501108, 10.204797505873852, 10.799426294398303, 10.395045005613392, -12.629206180589453, 11.61805660825999, -9.417109865197276, 10.232688156293355, 8.19804662088947, 11.72046580534114, 10.443434369662228, 9.619881344853207, -10.042852817768821, 10.034817419182325, 10.816188763842808, 10.58840755498599, 8.966827734451517, 9.361848596507688, 10.367958347350047, 9.756912541705264, 8.911479243649547, 10.697160775023272, -12.006056820081618, -9.967205184830656, 9.274586630401629, -11.499258835570158, 10.323257494038906, 9.833470525822054, -8.958301482944094, -7.916808485788827, 10.548084784535734, 11.140698323720603, 9.374993257094447, 8.234380698629836, 9.964648467371081, -9.987621570597865, 10.316912627856128, 10.190576814205329, 10.612641159420928, 10.383384862425682, -10.93419711032671, 9.669616373519448, 11.035768241459909], \"y\": [-10.262104212074854, 10.089435822710705, 9.73048217741532, 8.84372543401127, -11.74336514726022, 9.48533089857743, 10.185998511433528, 10.297128980460652, 10.306620773331499, -8.94731397606533, -9.452170440394966, 7.990310478676338, 10.782998587869958, -11.54486609281283, 9.80644504889457, 10.878886837420362, 10.23749507090404, -12.6739937633394, 11.67550943954227, 9.680707350680175, 10.89730791676087, 9.439428298115251, 8.869476752826067, 9.73816013812024, -10.655957385478708, 8.248084630632912, 9.324606948570226, 9.532214967708525, 11.118376062793885, -11.958185642372783, 8.998748984778146, -10.265476529644184, 9.177756181794253, 9.720755391632023, 9.293915366341789, -8.141227877288975, -10.036477469156628, 9.423844982987495, 10.26987507846367, -9.452381123211406, 10.34097103444396, -11.272643768400021, 10.230980029540953, -10.572166294971124, 10.560772029305587, 10.796700987630757, 9.55565762933865, 9.35200751434144, 10.112264657333833, 9.566647000024524, 10.030846154047117, -9.637552432019175, -8.56221580963793, 10.806800541347672, 9.879671386760991, 9.270752925405178, 10.347974246133766, -10.832658681919815, 9.901122784818035, 10.421027652229979, -10.814392161850526, -8.56589799501598, -9.783818779090197, 8.658436278183984, 10.852349671736098, 9.979622166447156, 9.606641346719616, 10.11677962213667, 10.021164236401875, 10.882651827021999, 10.487532398379805, 10.006403579549213, -10.985510293700404, -9.707229170330786, 9.517133646162824, 10.908499358143796, 9.214205408542865, 9.537712753556217, 9.57587310349781, 9.181851339692733, 9.975647588929485, 9.622939699994413, 10.473728585964183, -9.138218642963075, 9.572019549395005, 10.010315779745975, -12.59705707546351, 10.036567071181684, 9.84711630466857, -9.290937550477683, -8.067641610004182, -10.539222397745789, 9.31824338741094, 8.981397061360585, 11.431754919747421, -12.083824159585085, 9.130947628032985, 11.202779586816312, 10.25700603603683, 9.941484254275016, -10.279291628092789, 10.249042523637343, -11.725709781774391, 9.3407287821758, 10.179330262076192, 10.22774091535151, -9.232567735940682, 9.231246127216824, -10.39229203902207, -9.792156354834551, -8.540740057581074, -11.764149399312192, 10.1161965032518, 9.62589329239527, 10.472964876680313, 9.143612411893864, 10.967095637451232, -11.07605887791435, 9.807367327531363, -9.35244788698565, 11.374892223125263, 10.500847753106697, 10.84691865225814, 9.330462889999266, 10.5836704645847, 9.648138704453524, 11.273047037349976, 9.805577029069362, 9.821794269126363, 9.75401732229716, 10.108209023774798, 9.765201427804634, 9.814110769202887, -9.941516454401299, 10.033866239408939, -9.871412266768436, 9.75565231847062, -9.773652015921279, 10.384121859747644, 9.87874429089942, -7.86120357589375, 8.525590160370957, 11.180281211126005, 10.419675781304907, 10.820179554042983, 10.168226984740603, -10.124764769341073, 10.06177905333947, 10.454597303645905, 10.237761309906617, 9.441996101469352, -10.526567790331915, 11.109208314733886, 9.960333640361725, 11.440666930126094, 10.905194087966262, 8.884150365151129, 10.095512416813335, 9.078105129673474, 9.982239306895972, 10.26603990776408, -10.298507619371177, 9.751755925516045, 10.050881640882883, 10.005006417074748, 8.90582781085888, 9.37630496774819, 10.200050664124234, 10.061133376659209, -11.13366027813558, -10.969589719800707, -10.522726466012417, 9.29728188561037, 10.068393790621009, -9.849940715936324, 9.716368401374432, 10.761724126392483, 9.60331321618134, 9.803494982254945, 10.261190908887759, 10.294693366558693, 9.399404104503528, -9.860167411123745, -11.062011612136125, 8.809824300155501, 10.016800906527257, 9.588584026247146, -10.120178240969395, 11.067047860232675, 10.209043523511555, 9.154224893753707, 9.851474296039338, -9.314377630433198, 9.939611518522373, 7.95044231685117, -10.3633976968925, -8.598268548394957, -9.073735291762747, -9.740265978402853, 10.79560543041071, 9.904141614251396, 10.626588157918032, 10.909956399852291, 11.064850779376744, 9.99614358141209, -8.677302311822306, 10.177263018740772, -11.108899936600519, -9.377135737711457, 10.267164414630255, 9.98739227243983, 10.968005438526202, 10.585208671215408, 10.857264106641061, 9.89588828763576, 9.398585488369733, -9.94950438024418, 10.139128422240477, -8.230483224316183, 9.885404360530025, 10.725108106394984, 12.151184951094255, 9.948421159384287, 10.971083131204155, 10.54245816527037, 10.329299160982563, -10.82155912249889, 9.659485077821017, 10.912683905954125, 10.020486711653117, 9.225604972671507, 11.240319041301614, -9.007344024853163, 9.456155022759162, 8.822806315518667, 9.83135988190192, 9.558088488372105, 10.180163182356505, 10.637203461834192, 9.463409713207747, 9.73558676917079, 9.621747005888382, 10.119901565061294, 12.582523974541521, 11.117598807933465, 11.562332117449419, 10.976924754285848, 8.172583226557363, 9.04376022961978, 9.689535598292329, 9.498545549817186, 9.00052420036868, 9.157516875738306, 10.63841347445582, 10.342725365412418, 9.752662364003704, 10.379984492009509, -10.858696810512507, -9.146331130782066, 9.495543516031235, 9.712652460242394, 9.886125077643548, 8.917604620349072, 9.893883382102656, -12.053714187224084, 11.276530135218623, 8.883540003370593, 9.574580684488174, -9.870834011435809, 10.501382057716603, 8.363382227350062, 9.668921922685895, 9.63301916736754, -10.666968103079407, 8.942611253044443, 11.623525892508573, -10.262979891135187, 9.380737035871963, -8.075345250476746, -10.61965726057398, 8.895589714107373, 9.250830238893236, 9.703937539546121, -8.548628087205687, 10.181119719107835, 9.158890415684104, 11.07831049703419, 10.283157345792446, 11.627105188882023, 9.908975080780975, 9.670560471053262, -10.157825119795307, 8.641776273429363, 8.970650116882599, 8.006676125922414, 10.135474027412139, 9.460804476824055, 9.672112073032874, -9.646180408156543, -11.137609414007992, 8.275346440748319, 8.979526158686054, 10.245322940925398, -9.969196948487431, 10.100914068085714, 10.417768331218703, -10.763339248050482, 9.674966697423011, 9.728384029557716, 10.090118998645076, 10.497562448095291, 9.491601164478023, 10.87952183950631, -10.522385359130904, 9.037081569866386, 10.77719700375727, 10.016120465434332, 11.686450700060085, 11.27993248588863, -10.037864150241212, 8.810474353753891, 10.735582265932475, 10.159165612082685, 9.774353057444639, 11.24778487195896, -10.117124427909218, 8.982267330560756, 9.746908507667559, 10.284212150172273, 10.034117194611285, 10.93528107704676, -10.109206305576388, 11.36351773818153, 10.383479420876448, -9.758670044620299, -10.702409116688422, 10.506954376780122, 9.833248636008435, -9.537936338792113, 10.455439077833216, 10.23272505735249, 9.294319838512813, 8.785531655244963, 10.445798061888995, 9.993021225551685, 9.637837174834413, 10.459314490745712, 9.233685387314114, 9.888012997336334, 12.039569836613243, -10.314392425269352, 11.117253563897949, -10.68271266958794, 9.208935709972486, 8.832538347422801, 9.908618141063336, 10.522957346164366, 11.529619298865072, 10.790825452700487, 9.249862206472145, 10.026024234275939, -10.383407567512872, -11.982855979724373, 9.169622411832338, 10.073188813559154, 10.948258795220633, 10.156348242500474, 10.943981597471904, 10.918276587972423, -8.221257714323109, 10.27378224074236, 9.421675636448185, -7.641243587857848, 10.725529957153281, 11.1846849366872, 9.001226761729063, 9.650706056331423, 11.028236235133782, 9.855326637234652, 10.167927383252195, -10.692950777922228, -10.776265523340268, 11.130324963505315, 10.004091508864462, 9.518805772569824, 10.228726217179466, -9.760219932802109, 9.940692820786515, 10.535971575363607, -10.33870625897727, -10.780724855110241, 9.512480401673882, 10.037671228132576, 8.86807778468738, 10.618085387066596, 11.047142330674996, 9.212154875052207, 10.31566037396264, 10.511865114363095, 9.704931288866295, 10.964019900650113, 10.59089502418231, 9.435278138546822, -8.552041861717054, 10.77874889197917, 9.921043389436777, -8.994690182560388, 8.666268596938822, 9.203985371683885, -10.601768510876886, 10.024164873865711, -8.848494004490986, -9.937839666450925, 9.528842267920579, 9.662409158611622, 10.933450153134688, -10.496615271169974, 11.079325517415755, -9.894129649567121, 9.715735536147209, 10.748559361646903, 11.032025883541847, 9.253619465037527, 10.758963829439164, 9.039856656878646, 9.073905874040944, 9.50175118925728, -10.68978484296337, 9.817651710919364, -9.820536689873933, 11.485973481350625, 10.58333445321144, 11.183927940025933, 10.381012058541717, 7.993567289991118, 9.580930401294937, 10.740925963710884, -10.11065328981658, 9.01704380003541, 10.92118488942703, 9.543020705794337, 10.025388731599818, 10.243142873853346, -9.961003240655987, 10.104316636546816, 9.190132628898942, -9.510522160266026, -11.456127054363318, -10.957853675789112, 9.766132087731245, 9.712773799562042, 9.849020298344517, 10.1755688272838, 8.430850604890317, 9.762090510458233, 9.818959947681005, 10.009995044732234, 9.455436981245809, 9.31616215177632, 9.928312688516035, 9.549780324693575, -11.004856496447033, -10.582299708280324, 9.637873877770115, 8.683321300755924, 10.90468172202641, 9.488932491485015, 10.113857534732775, 10.973144425204303, 9.624862567269924, -11.59647213651596, -9.152473558155886, -10.15414308094141, 10.305471484107773, 10.408830854705387, 10.281778950909771, 9.833017349038268, -9.515608124980274, 10.508870337920772, -9.754334239559666, 9.547901810201147, 10.79707940118109, 9.085451981256673, -8.457683898761887, -9.669886055552459, 9.429204866559967, 9.615675277207359, -8.919664218348665, 10.790228277251451, 9.128711779799444, -8.373433893074726, -12.946262005535033, 9.311285680408872, -11.967224826034645, 8.36768605126349, -10.505916572473852, 9.007433292791747, -11.313474739630543, 9.988783337400912, -11.118790079524485, -8.496231715452415, 9.653358006846348, 9.114347079736355, 10.41506467427488, 10.057665554824148, 9.63160714731387, 11.208027200666328, 9.645629067039508, 10.563590294368511, 9.20898335181722, 10.377433986495324, 9.471496291049613, 9.149397429379215, 10.559546763502802, 9.811548371010613, 10.382667821973628, -8.284393906513637, 9.3504083320457, 10.421091268209235, 9.923175570677957, 10.052990701016599, 9.428357432381363, -11.605361977572835, 10.218183052047396, 9.334664011690178, 10.20189382385166, 9.328936498591874, 9.405093067905868, 9.474502881928817, 11.106506054520183, 9.839627070335913, 9.337746131038006, -9.313023127709236, 9.361691937871546, 9.991951427557796, -9.148600468309589, -11.703783260162549, -9.986897987322807, -10.934374908495647, 11.077078767218518, 10.307761135415312, 8.987304487509927, 10.3839500280665, 9.50742429963532, 9.423036121230126, -9.496374390870958, 10.534171360173456, 9.506003076981205, 10.886109302247702, 10.698536008246693, 9.411588643588315, -10.325619016063108, 9.005975395017652, 9.939399100807588, 10.485155691623856, 10.416089406523145, -9.671081155751441, -9.75845793011432, 9.322671185428478, -9.437663016816224, -11.297145475631977, 10.607328117431033, 9.849703710566827, 10.150312539495363, 10.420745328893231, -10.333752058466713, 11.268772255927862, 9.614639347962617, 11.144334703211028, -9.903518200098514, 9.73448549971294, -10.50691691714869, 9.441571667960133, 10.851153882579437, 9.198771897018387, 10.020759231890663, 9.917465991823374, 9.741760523314785, 9.87977151072492, 9.069948843474457, -11.03401594844389, -9.948390967604782, 10.14490214208878, 10.212589959535782, 10.929719236448513, -8.809956112755755, 9.822362070816146, 10.244076884468718, 10.364877050283058, -10.996173615018193, 10.979965168716493, 9.728173808962334, -9.196787714818884, 9.686410182187332, 11.25579105719045, 10.056294180921656, 9.784671203935517, 11.036241786507704, 9.313727367885921, -10.365388553252927, -9.477245975987467, 10.866058654960632, 9.162017301223468, 9.991216005332674, 10.369960794090492, 11.326383025292046, 11.142723738666763, 9.987027416965834, 9.576119639599696, 8.755930292564699, 10.154031040456555, -10.516054263593677, 9.974457352167384, -10.008877919043954, 10.054524481887807, 10.269679760277105, 9.412538073748816, -10.162615937197744, -10.086245075917898, 9.407415633822117, -9.798308645090936, -9.52009196198737, -9.774582363286052, 8.45358305631169, 9.721630839389736, 10.934188976715813, 10.12589727497755, -8.03488338369207, 8.948607821743245, -10.355118500935227, 10.35588406361666, 9.61843745168349, 9.981704964996608, 11.002040797735315, 10.305841847047219, -8.794696174867996, 9.327276520551543, 9.43115976949206, 9.374923743830372, 9.797566352505946, 11.569169297270404, 10.365566223641913, 10.191868623477559, 10.1979411356937, 9.29315503717695, -9.740793131552188, -8.212003779289006, 10.315010251677247, -10.49463085645754, 9.362502227453893, 10.548442830241576, -10.73052650758701, -11.19931272587959, 9.262031920897133, 10.029531666279874, 10.589365825442405, 10.848341280166297, 11.261035517577904, -10.49400585098899, 10.288937620988534, 10.193692107001235, 10.797752095907768, 9.469758958010676, -10.347038707785211, 9.847963152355733, 10.142108065505806], \"z\": [-10.230555969263344, 9.943449603693537, 9.83151592955282, 8.207424721818299, -11.493083342381869, 9.631688843033785, -10.059909597766906, -9.762938031068424, 10.635510389950525, -9.003051148438262, -9.606599671019785, -10.229689338829768, -9.875030494573027, -11.310470642082286, 10.664858566042712, 10.301553440129075, 10.082028941397647, -12.15219747841474, -9.512242544268716, -10.813551974911014, -9.514027223492661, -9.547040345048254, 9.132350937595415, -10.224681257016668, -10.439491433873428, -10.393899134328064, 9.132744121082037, 9.980693270971319, 11.30215846822566, -11.494323312352003, 9.178343617635386, -10.223833865431642, 10.05824562744489, -10.89665518855344, -8.941823983920374, -8.594734547264304, -9.95705435171784, 9.85300388626809, 9.785840151403209, -9.54153507848751, 10.098545965626075, -11.069445074148513, 10.080385684899289, -10.58548372440017, 9.955632910808323, 11.046136195315944, 10.64091731938471, -10.532348098532191, 9.067197812174204, -10.328444838825211, -11.674993931862405, -9.610578590701495, -8.79087474328595, -10.130153180428772, -10.189935741089805, 9.530263045283103, 10.015713561230871, -10.651972396761847, 9.320009319360606, -8.947048261331629, -10.771616577627448, -8.832158341759087, -9.940379618352587, 8.055148364818805, 12.117502107261181, 10.066755378224808, -10.553427291034504, 9.618314879714053, 9.77036256968968, 10.80493558210502, -7.943044771106999, 9.771998435949216, -10.743495990896845, -9.81444566978263, 10.878640213633279, 11.90654059617463, 9.713046376866382, 10.519528749639685, -11.110123797378264, 10.946115359997957, -10.128950603294422, -9.993147872900071, -9.967638642289323, -9.425418775175709, 10.869006604883023, 9.275179633902093, -12.053646604135492, -9.595349347038956, 9.881673714490528, -9.292637144107285, -8.29915974625212, -10.496647754859548, -8.932141497047807, 9.224110367488537, 12.271248080726355, -11.513291596994966, 9.41063040423862, 11.561515891723765, 10.268001682416871, 9.6274720572828, -10.133844360202854, 10.507492726521594, -11.280118924681164, -10.324885492074491, -9.75187043177544, 9.664148764360498, -9.440477206072508, 8.597515971912049, -10.2777448471836, -9.902238285559402, -8.797996577916226, -11.480154833912946, 9.688862597123988, -10.692130025678125, -9.593851990306524, 10.614137180455772, -7.816857802471209, -10.820188525264577, 10.16402625352853, -9.498174422529653, 11.69806619780917, 10.326183236189856, 11.836848929756636, 8.583053573694299, -9.91661156663952, 10.283623735061031, -9.835561721061012, 8.996379868920878, 9.187529578267837, -9.497870591404666, 10.549745859001215, 8.508008499881432, -8.39161167439587, -10.049282822940027, 9.866501139144528, -9.80949567286796, 8.945628471926062, -9.796419593362325, -8.86446102979093, -9.728289751905713, -8.23453541096567, 8.407536809131425, 11.249906625151802, 10.381858661847065, 11.183724686477328, 10.741015305810691, -10.150190214296474, 9.090892460826318, 11.738089778489174, 11.155741046268346, 9.491235053450175, -10.341706774668658, 11.256236816618927, -9.011097014959262, 12.30012633609007, 10.739618503655814, 9.389477310186491, 8.745919941157833, -10.714331766950178, 9.269914651328696, 9.32343756498837, -10.260026159210051, 9.12191087758175, 8.713561034808912, -10.29925856673019, 8.96694956125294, 9.397716962812595, 10.436125877631168, 9.818496479176307, -10.883932333602862, -10.876470682884792, -10.506534530656207, -10.354521863745964, 10.35259329580629, -9.86100014486067, -10.084228431523002, -10.771515105050343, 9.332022221391174, -10.57968956969147, 10.072531741427301, 10.26430955147939, 9.129079685176759, -9.841272889864467, -10.803738819547036, 8.96875627695674, -9.946184914696946, -9.41090374910199, -10.079036890866755, 9.733342485017383, -10.536481648660857, 8.765126145568066, -10.098439164445256, -9.505784198518116, 8.646797325413154, 8.63239691343337, -10.329420937741215, -8.813297348754386, -9.1980459445086, -9.547081328083253, -10.768967608172982, -10.697298129414232, -9.21410504494641, -9.832297782041959, 10.375917773888546, 10.027014770711482, -9.076547025722052, -9.953692131935007, -10.940527782072763, -9.520874772416446, 9.939106386737798, -9.353766691756347, 10.036451110986556, 9.689049001552204, 10.084019923526576, -9.010089270735287, 9.52047261576208, -9.95598019187799, 9.380008793561535, -8.705227508725194, 8.402323196710908, 11.40606417160879, -9.629335609076154, 9.3117545149268, 10.901288961923154, 10.663976751904293, -10.44956431162972, -10.638662068551627, -9.974248723695641, 11.259818286736916, 10.479371937948716, 9.081499801015829, 11.828621657646096, -9.243061956424265, -10.223016318088343, 9.414418122151803, 10.816630658415903, -9.89551841900301, -9.812698742573943, 10.6602377567279, 9.612292216498844, 10.206634336422592, 10.309636354000618, 10.812366044725625, -8.988683350148861, 11.055641850218208, 10.987110895971615, 11.643093073714601, -11.269148896472956, -9.771220381114208, 8.611184402053693, 10.36072701330514, 8.542298452923548, 8.929376263594364, 10.679058707532235, 10.274695805774488, -10.431145383658155, 10.68789426375039, -10.447659476305125, -9.364259339132397, -10.06739487036616, -9.442692161756815, -9.764503302173656, -9.555244218172275, -10.60440643738951, -11.652682987290769, -9.186568636527818, 8.301205500189992, 9.19631442508856, -9.909541245657081, 9.666110293648984, 7.304392731578492, -8.658695722142355, 10.006131684783897, -10.796781868460517, 8.642527773865748, 11.342934803491914, -10.254866901831406, -11.087020311781451, -8.478871488335557, -10.583745996547643, -10.987268830442114, -10.773585638795627, -11.207906134962835, -8.946226135260693, 10.787871658046665, 8.278474941347538, -8.495654594763543, 10.363268694875758, 12.298134191916553, 9.957058858686569, 9.427326717142545, -10.018531006571019, 7.942550085121189, -9.325028949947244, -9.793487653114424, 10.178837068129306, 9.427919224755565, -9.530080881278847, -9.814196925258486, -11.030428098235848, -10.802740642939296, 9.303821381565989, 9.521709487041147, -10.137581763009496, 10.293564182165, 10.945341164716782, -10.668848775115888, -10.338269015393987, 10.14461517648908, 10.459485271690765, 10.590057591618184, 9.387331665495589, 11.989008186446686, -10.2580163902293, 8.683032619845259, -9.460659153856785, 9.794515641786885, 11.846833214989065, -9.175280298467712, -10.229618541171325, 8.595376936766527, -8.841474207722102, 11.000714620270566, -9.338845523701206, -10.244839970045009, -9.985441379284604, -11.759975930142014, -11.36928453358672, 11.377500587078558, 9.2045249558089, -10.187663867798902, -10.094238184551022, 10.509169715517196, 10.790290386836874, -9.808656707468113, -10.63210373500242, 10.40704815617568, -9.746290261586651, -9.625236588153415, 9.557904975495745, -11.07688307761593, 8.59140414880924, 9.071110529616567, 9.974567027614174, -9.834201720261948, 10.520805193148629, 10.070696285962557, 8.32057345650998, -11.003632698563397, 12.938923736104838, -10.329994117821016, 11.038941040441024, -10.588401033778114, -10.102820581030004, -11.102195386635444, 9.17705915466587, 10.617781074121387, 11.756143170161227, 11.494954979851045, -10.499253635615066, -11.029146615397597, -10.415558460741991, -11.631577598983926, -10.31216375362001, 9.832796470326732, 12.071490905250391, 11.5096287259074, 11.419573039171503, -9.424604993974338, -8.681114158813797, 9.851478047544123, 9.695126576451061, -8.003762543300216, 10.737578426534947, 12.11314719249468, 9.125017514510832, 9.967547203778437, 11.379692901338025, 10.209730496992243, 9.803401010613436, -10.735335514451357, -10.537680571114688, 12.612399596644122, 8.859703679158946, 9.163588414737529, 8.84541583480365, -9.920451084871182, 8.76643345252603, 11.358089408362932, -10.327917947922124, -10.555161356110695, -9.040548796292649, 10.182206775485449, 8.256472156850961, 12.175835805312289, -9.379283721795217, -10.686761038732651, 10.457211817193183, -10.07187212511684, 10.215720606737444, 11.234414158009269, 10.729783004647462, 9.209183536438514, -8.8810194466639, 11.495757799564704, 9.417754517769609, -9.401426305783666, 7.165691965770704, -9.123860762485725, -10.446822332996904, -9.916360993662257, -9.055060725992606, -9.878538986834128, 9.524224566886922, 9.864889631231588, 11.358763475999774, -10.303231961697994, 12.298329347718692, -9.755799702950053, -11.293509368591991, 10.239773463969032, 12.399169402055849, 8.724122123822738, 11.309010643495908, 9.905848729319928, 9.04427914476847, 8.99404325120562, -10.566613161897841, 9.658199536596369, -9.894342207234846, -8.417631207738664, -11.193007492112377, -11.195873801781302, -9.324766547987629, -11.65305630075038, -10.10234715918712, 11.10900529075943, -9.948139950035744, -9.710603699408402, -9.83903884087962, 9.186907513941065, -11.749587362096406, 10.828853707277451, -9.997009033484577, 10.231682585647027, 9.266139404469977, -9.713893132085968, -11.092171669586685, -10.985567986389581, 9.146278570112026, -9.676074534055306, 9.700203747072765, 9.614766659938365, -11.433548883832888, 10.144943743675832, 10.20419905672814, 10.630659207859695, -9.255230147498184, -10.522745279780743, 8.307165400302846, 8.948597211986527, -10.896137907613086, -10.50492064849407, 9.786331510434897, 7.501774643653697, -9.845773239155154, 9.285352730260302, 10.621350844616678, 10.303884063152859, 8.945683569207144, -11.214610236865726, -9.223103500442551, -10.093894101611475, -10.9699924053395, 10.027686358288925, 9.459995729481685, -10.268161634946338, -9.661689299468673, 9.530057641081743, -9.741937357762877, 9.682767420943192, -10.523905133566531, -10.47870462918536, -8.627370875918174, -9.623680313862172, 9.657460869500333, 9.509732874618335, -9.117571049510557, 10.054075949522375, 8.822810481079472, -8.717966321608202, -12.283595349740432, 10.163659188998317, -11.694449288888833, 8.39827497873839, -10.485326514376075, 7.9023514103742105, -11.233216680507997, 11.407455217127653, -10.866318939967432, -8.821236344806183, -11.329301363907087, 7.959333016256657, 9.518680665061378, 10.287059112238763, 10.355706625799334, -10.659785048142773, -11.028449735532746, 10.64607925982355, -10.013728803863687, 10.278849462486328, 8.336118214965834, -11.31323889530861, -10.611542434429644, 10.611998586407527, 10.75977414852684, -8.801192651315677, 9.226459130081775, -11.485914362545156, 8.432533480549097, 10.61549075914862, 8.568621398117806, -11.282762398045325, -10.823327071706197, 9.369307694534486, 9.101512571790662, 9.968856872520146, 9.320493863543215, 9.631301780823298, 11.234422510569441, 8.715655418456581, -10.301433881761428, -9.353153846732534, 8.057811627624654, -9.933755598638765, -9.277620639756991, -11.521952241634096, -10.019801987424, -10.808864504917716, -9.391690385766905, 10.996189300367066, 9.194483592146927, -9.796403987185371, 9.858110097793388, 10.017981269117836, -9.723002113554895, -10.550743922673371, 9.737790957478788, 10.46341456212497, -9.871571968368533, 9.55272214093674, -10.305788931714806, 10.742569904279959, 9.753147616187745, 10.675036821683031, 9.434181586426167, -9.646141130996694, -9.788650537279718, 9.257842051900772, -9.489119344765154, -11.091312375514628, -9.623788099995958, 9.876115099989219, -9.312699255924738, 10.809769244868589, -10.370265625807972, 10.453243508171983, -11.164777100094566, -9.541597705711643, -9.958493588232768, -9.855108226699352, -10.488415156921128, 8.502909956412402, -8.57838246482655, 9.024401844307365, 9.810209100255667, 10.065816436944013, -9.332975619102392, 8.750110426227796, 9.185483493515047, -11.026027043333343, -10.082349320571655, 11.883972603984859, 9.503598826133585, 11.740652357200975, -8.966831927825236, 9.561549785535176, 10.492605939921033, 9.188434461791942, -10.79821383150257, 10.844210033517953, -10.694100038307743, -9.232346623555319, 10.449008330813125, -9.618891172376612, 9.09776913985728, 9.10385112457164, -9.231580715625018, 9.572594610470512, -10.541823194235425, -9.705074070384597, -8.89924339161062, 10.244715455532814, -10.370221223298275, 10.350450629066954, 10.011138273167328, -11.058413100271295, 10.645551601967771, 8.84614154154776, 8.404230861284017, -10.822591402065042, -10.614294085653134, 10.597098566452289, -9.94101015043924, 10.16288675049461, 10.634547262970418, 9.302617878059847, -10.044114606331076, -10.095083169246085, -10.538135802343684, -9.831682247174538, -9.46871239967867, -9.890838836137672, 8.697672138910509, 9.357785850818487, 10.718092906746442, -9.439843579470512, -8.55672086024236, -10.827393018365765, -10.192847785697744, -9.58198568985557, 10.93352410298436, 8.583443124716727, 11.079063064656431, -10.35282082374594, -8.878843772591116, 8.997376214244904, 8.690640502151313, 8.530215184345575, -10.867106920374013, -7.996297196521823, -10.344492726129562, 10.390850008295667, 11.317404499542839, 8.50557823687131, -10.015682189664048, -8.530425870233854, 11.126741233468548, -10.53004454200137, 8.994402160335156, -8.66352461993878, -10.499982413834033, -10.758566091395005, 8.564915500886991, 9.201265295171865, -10.179553585709032, -8.648742248639683, -8.644936484763118, -10.375261320269308, 10.182169508489688, 10.124632215849838, 10.514828789465117, 9.070933078013715, -10.318248671248702, -9.735247021032569, -8.678095628748482]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 0\", \"marker\": {\"color\": \"rgb(31, 119, 180)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 0\", \"scene\": \"scene3\", \"showlegend\": false, \"text\": [\"example_2\", \"example_15\", \"example_23\", \"example_29\", \"example_30\", \"example_32\", \"example_43\", \"example_44\", \"example_45\", \"example_49\", \"example_51\", \"example_56\", \"example_58\", \"example_59\", \"example_63\", \"example_65\", \"example_67\", \"example_69\", \"example_70\", \"example_71\", \"example_72\", \"example_73\", \"example_76\", \"example_78\", \"example_81\", \"example_84\", \"example_99\", \"example_100\", \"example_101\", \"example_107\", \"example_109\", \"example_111\", \"example_115\", \"example_118\", \"example_120\", \"example_123\", \"example_124\", \"example_128\", \"example_135\", \"example_141\", \"example_148\", \"example_162\", \"example_163\", \"example_168\", \"example_170\", \"example_173\", \"example_175\", \"example_182\", \"example_184\", \"example_185\", \"example_188\", \"example_192\", \"example_194\", \"example_196\", \"example_198\", \"example_199\", \"example_203\", \"example_208\", \"example_210\", \"example_211\", \"example_212\", \"example_218\", \"example_220\", \"example_226\", \"example_231\", \"example_233\", \"example_236\", \"example_237\", \"example_239\", \"example_240\", \"example_244\", \"example_247\", \"example_250\", \"example_251\", \"example_254\", \"example_256\", \"example_259\", \"example_261\", \"example_265\", \"example_266\", \"example_270\", \"example_271\", \"example_272\", \"example_273\", \"example_274\", \"example_275\", \"example_277\", \"example_281\", \"example_286\", \"example_289\", \"example_292\", \"example_297\", \"example_298\", \"example_300\", \"example_303\", \"example_305\", \"example_306\", \"example_307\", \"example_309\", \"example_310\", \"example_311\", \"example_316\", \"example_322\", \"example_324\", \"example_331\", \"example_332\", \"example_334\", \"example_339\", \"example_342\", \"example_344\", \"example_350\", \"example_351\", \"example_352\", \"example_353\", \"example_354\", \"example_358\", \"example_361\", \"example_363\", \"example_365\", \"example_366\", \"example_367\", \"example_368\", \"example_371\", \"example_374\", \"example_376\", \"example_380\", \"example_381\", \"example_382\", \"example_383\", \"example_393\", \"example_394\", \"example_398\", \"example_405\", \"example_408\", \"example_411\", \"example_413\", \"example_414\", \"example_415\", \"example_416\", \"example_420\", \"example_422\", \"example_425\", \"example_426\", \"example_427\", \"example_429\", \"example_432\", \"example_433\", \"example_436\", \"example_438\", \"example_439\", \"example_445\", \"example_450\", \"example_453\", \"example_462\", \"example_464\", \"example_465\", \"example_471\", \"example_478\", \"example_479\", \"example_480\", \"example_481\", \"example_482\", \"example_483\", \"example_485\", \"example_486\", \"example_493\", \"example_494\", \"example_495\", \"example_497\", \"example_505\", \"example_506\", \"example_507\", \"example_513\", \"example_514\", \"example_518\", \"example_519\", \"example_522\", \"example_526\", \"example_527\", \"example_529\", \"example_530\", \"example_532\", \"example_534\", \"example_535\", \"example_538\", \"example_543\", \"example_544\", \"example_548\", \"example_551\", \"example_552\", \"example_554\", \"example_555\", \"example_557\", \"example_561\", \"example_567\", \"example_570\", \"example_572\", \"example_575\", \"example_576\", \"example_579\", \"example_581\", \"example_582\", \"example_583\", \"example_584\", \"example_585\", \"example_588\", \"example_590\", \"example_591\", \"example_593\", \"example_596\", \"example_598\", \"example_599\", \"example_602\", \"example_607\", \"example_609\", \"example_610\", \"example_611\", \"example_613\", \"example_614\", \"example_617\", \"example_618\", \"example_619\", \"example_620\", \"example_628\", \"example_630\", \"example_631\", \"example_637\", \"example_650\", \"example_651\", \"example_654\", \"example_670\", \"example_674\", \"example_678\", \"example_679\", \"example_680\", \"example_692\", \"example_693\", \"example_694\", \"example_701\", \"example_704\", \"example_705\", \"example_706\", \"example_707\", \"example_710\", \"example_712\", \"example_715\", \"example_720\", \"example_721\", \"example_727\", \"example_730\", \"example_733\", \"example_736\", \"example_741\", \"example_744\", \"example_745\", \"example_746\", \"example_752\", \"example_755\", \"example_757\", \"example_759\", \"example_764\", \"example_765\", \"example_767\", \"example_771\", \"example_774\", \"example_777\", \"example_780\", \"example_781\", \"example_785\", \"example_787\", \"example_788\", \"example_792\", \"example_802\", \"example_806\", \"example_807\", \"example_808\", \"example_812\", \"example_813\", \"example_817\", \"example_818\", \"example_819\", \"example_824\", \"example_829\", \"example_832\", \"example_834\", \"example_838\", \"example_843\", \"example_845\", \"example_849\", \"example_855\", \"example_861\", \"example_865\", \"example_873\", \"example_879\", \"example_886\", \"example_887\", \"example_892\", \"example_900\", \"example_904\", \"example_905\", \"example_906\", \"example_907\", \"example_909\", \"example_914\", \"example_915\", \"example_923\", \"example_925\", \"example_926\", \"example_930\", \"example_931\", \"example_936\", \"example_937\", \"example_939\", \"example_942\", \"example_943\", \"example_948\", \"example_949\", \"example_952\", \"example_962\", \"example_963\", \"example_964\", \"example_965\", \"example_966\", \"example_976\", \"example_978\", \"example_979\", \"example_984\", \"example_985\", \"example_988\", \"example_990\", \"example_993\", \"example_994\", \"example_1004\", \"example_1010\", \"example_1013\", \"example_1018\", \"example_1022\", \"example_1027\", \"example_1029\", \"example_1033\", \"example_1036\", \"example_1040\", \"example_1043\", \"example_1050\", \"example_1052\", \"example_1053\", \"example_1054\", \"example_1061\", \"example_1063\", \"example_1067\", \"example_1073\", \"example_1075\", \"example_1083\", \"example_1084\", \"example_1090\", \"example_1100\", \"example_1102\", \"example_1103\", \"example_1105\", \"example_1106\", \"example_1107\", \"example_1114\", \"example_1117\", \"example_1120\", \"example_1125\", \"example_1133\", \"example_1134\", \"example_1138\", \"example_1144\", \"example_1146\", \"example_1157\", \"example_1159\", \"example_1160\", \"example_1163\", \"example_1164\", \"example_1165\", \"example_1170\", \"example_1173\", \"example_1177\", \"example_1179\", \"example_1181\", \"example_1187\", \"example_1189\", \"example_1192\", \"example_1198\", \"example_1202\", \"example_1204\", \"example_1211\", \"example_1220\", \"example_1222\", \"example_1223\", \"example_1225\", \"example_1228\", \"example_1229\", \"example_1231\", \"example_1233\", \"example_1235\", \"example_1239\", \"example_1240\", \"example_1242\", \"example_1245\", \"example_1247\", \"example_1249\", \"example_1255\", \"example_1258\", \"example_1263\", \"example_1265\", \"example_1270\", \"example_1271\", \"example_1272\", \"example_1273\", \"example_1274\", \"example_1280\", \"example_1281\", \"example_1284\", \"example_1287\", \"example_1288\", \"example_1289\", \"example_1298\", \"example_1301\", \"example_1304\", \"example_1305\", \"example_1307\", \"example_1309\", \"example_1314\", \"example_1316\", \"example_1317\", \"example_1318\", \"example_1319\", \"example_1320\", \"example_1322\", \"example_1324\", \"example_1326\", \"example_1331\", \"example_1335\", \"example_1339\", \"example_1343\", \"example_1344\", \"example_1345\", \"example_1347\", \"example_1355\", \"example_1357\", \"example_1360\", \"example_1362\", \"example_1364\", \"example_1376\", \"example_1379\", \"example_1380\", \"example_1381\", \"example_1383\", \"example_1384\", \"example_1386\", \"example_1387\", \"example_1389\", \"example_1391\", \"example_1392\", \"example_1393\", \"example_1395\", \"example_1403\", \"example_1405\", \"example_1412\", \"example_1414\", \"example_1417\", \"example_1420\", \"example_1423\", \"example_1424\", \"example_1425\", \"example_1428\", \"example_1429\", \"example_1431\", \"example_1432\", \"example_1433\", \"example_1436\", \"example_1440\", \"example_1441\", \"example_1447\", \"example_1448\", \"example_1452\", \"example_1453\", \"example_1454\", \"example_1458\", \"example_1464\", \"example_1469\", \"example_1471\", \"example_1472\", \"example_1474\", \"example_1481\", \"example_1483\", \"example_1490\", \"example_1491\", \"example_1493\", \"example_1498\", \"example_1502\", \"example_1503\", \"example_1509\", \"example_1510\", \"example_1511\", \"example_1516\", \"example_1525\", \"example_1526\", \"example_1530\", \"example_1531\", \"example_1537\", \"example_1542\", \"example_1546\", \"example_1547\", \"example_1548\", \"example_1551\", \"example_1552\", \"example_1553\", \"example_1554\", \"example_1556\", \"example_1558\", \"example_1560\", \"example_1564\", \"example_1565\", \"example_1568\", \"example_1571\", \"example_1575\", \"example_1582\", \"example_1586\", \"example_1588\", \"example_1591\", \"example_1592\", \"example_1596\", \"example_1601\", \"example_1602\", \"example_1605\", \"example_1606\", \"example_1607\", \"example_1608\", \"example_1610\", \"example_1611\", \"example_1612\", \"example_1613\", \"example_1615\", \"example_1616\", \"example_1621\", \"example_1626\", \"example_1632\", \"example_1635\", \"example_1644\", \"example_1645\", \"example_1646\", \"example_1649\", \"example_1650\", \"example_1651\", \"example_1652\", \"example_1656\", \"example_1657\", \"example_1658\", \"example_1664\", \"example_1667\", \"example_1671\", \"example_1672\", \"example_1674\", \"example_1675\", \"example_1676\", \"example_1677\", \"example_1683\", \"example_1686\", \"example_1689\", \"example_1694\", \"example_1696\", \"example_1703\", \"example_1708\", \"example_1711\", \"example_1712\", \"example_1717\", \"example_1719\", \"example_1726\", \"example_1727\", \"example_1729\", \"example_1734\", \"example_1735\", \"example_1738\", \"example_1739\", \"example_1743\", \"example_1745\", \"example_1749\", \"example_1752\", \"example_1754\", \"example_1755\", \"example_1759\", \"example_1761\", \"example_1763\", \"example_1764\", \"example_1765\", \"example_1767\", \"example_1770\", \"example_1773\", \"example_1775\", \"example_1778\", \"example_1779\", \"example_1782\", \"example_1783\", \"example_1786\", \"example_1787\", \"example_1791\", \"example_1801\", \"example_1808\", \"example_1810\", \"example_1811\", \"example_1813\", \"example_1814\", \"example_1816\", \"example_1817\", \"example_1823\", \"example_1827\", \"example_1831\", \"example_1844\", \"example_1851\", \"example_1857\", \"example_1860\", \"example_1863\", \"example_1864\", \"example_1865\", \"example_1867\", \"example_1871\", \"example_1872\", \"example_1874\", \"example_1882\", \"example_1888\", \"example_1891\", \"example_1903\", \"example_1904\", \"example_1907\", \"example_1909\", \"example_1910\", \"example_1911\", \"example_1912\", \"example_1914\", \"example_1917\", \"example_1918\", \"example_1920\", \"example_1922\", \"example_1925\", \"example_1928\", \"example_1929\", \"example_1930\", \"example_1932\", \"example_1935\", \"example_1936\", \"example_1937\", \"example_1939\", \"example_1941\", \"example_1948\", \"example_1952\", \"example_1955\", \"example_1957\", \"example_1959\", \"example_1960\", \"example_1963\", \"example_1972\", \"example_1974\", \"example_1975\", \"example_1976\", \"example_1978\", \"example_1979\", \"example_1984\", \"example_1985\", \"example_1987\", \"example_1988\", \"example_1989\", \"example_1990\", \"example_1993\"], \"type\": \"scatter3d\", \"x\": [-9.39819415073669, -11.714348648216252, -10.030792936727298, -11.93122743789546, -9.38550276081797, -10.92356514781904, -10.31557998368875, -9.6171670101447, -10.380796079283293, -10.083182840428496, -10.672781118179687, -9.420713618435512, -11.782759835625892, -10.770790755498686, -9.59424860893065, -10.382858900288326, -9.58266299994006, -9.369610064610944, -9.649326713448717, -8.076773883628094, -9.33423111418971, -8.407846913017929, -10.432910959071032, -11.00225998420091, -11.23072853689647, -11.543365753259824, -10.526212666901486, -10.286139360597259, -10.375036733627743, -9.633761157850321, -10.46998585090999, -9.224917395915995, -10.388431717002485, -8.886946695373014, -9.532902338518678, -11.89646851361921, -10.994129828183642, -9.489965413241915, -9.573914682653, -10.685208998660535, -10.755289034787008, -10.727122951140565, -10.582953893467465, -9.888195032408602, -11.379451826940274, -10.605635898432473, -8.990245144692514, -10.462857937786533, -6.486104338185701, -11.033951376891773, -10.139626232660673, -10.785761295739487, -10.443870532843269, -9.913023506774122, -9.435223603707488, -10.343687397507127, -9.808615387541801, -10.072111005618066, -10.147228529340936, -10.827393533596005, -9.796622581459209, -9.523080495511884, -10.497947710309953, -10.056910388972563, -11.242973437330884, -8.876214034090793, -10.377963774661975, -10.031807260609199, -9.879242703015514, -8.869232976021713, -8.651934221368844, -10.13489329300021, -8.996811958008367, -8.944829310165671, -10.299909513305362, -10.065352783392077, -9.379224473447017, -10.203762593632794, -10.048406709820316, -10.346478825644809, -10.995183020313211, -8.407348181235392, -11.080247222139043, -7.13752430226576, -11.021962366822773, -10.285695472706246, -11.933065382608719, -10.412329022218099, -9.421343229313404, -9.92065483225753, -10.177968024736195, -9.978019165630164, -9.341042837301146, -9.9261992824764, -9.74427090767008, -10.694949580985751, -11.25491882892633, -10.53123817782706, -10.443254225913348, -10.821473544585567, -9.134028073092182, -10.589234830289387, -10.444054594595766, -10.039962102872522, -8.984380456941825, -10.816187517309931, -9.32216493404649, -9.775405000672874, -11.000629040932116, -10.869378282589944, -10.165248859061855, -9.974886082662843, -9.7629228681823, -9.792720543177536, -10.703129230332584, -11.702430930394819, -10.032857082786501, -10.479509743249285, -9.455206370446984, -10.141560119578862, -9.505218318382653, -10.648121926800464, -9.665716004355462, -10.486976623855373, -11.28730011932215, -9.245894287393496, -13.310738023328627, -9.587523171752027, -10.124218600393839, -9.718026128105015, -10.301443194556146, -10.076445854196347, -8.812264006565036, -11.363158903474792, -9.575172963676772, -11.119143200901807, -10.350714465189865, -11.224648242694096, -10.683391040036913, -10.735160110124006, -8.206654173760946, -9.880948960965405, -10.853907895956013, -11.160513084719172, -9.70326277245763, -10.762742517551613, -9.9195313178369, -9.066041508643243, -9.918769821348917, -13.83743203506943, -10.884258259875264, -10.832252027688142, -10.30532730994172, -10.18049173815038, -9.78971831778105, -9.680061296614975, -11.039252695024894, -9.90065769251287, -9.672404468733163, -10.66633266322589, -9.935334557147044, -10.228504447551266, -10.858598734485465, -10.36018028477729, -10.353609807642961, -9.96492258736194, -10.07436303001612, -9.964722413136423, -8.972814160830785, -9.608782797353733, -10.385929362631503, -8.482143090346218, -10.019279818536013, -9.747296926644212, -10.699338868262252, -10.01329135750568, -10.354681123155732, -11.819410186687138, -9.442941624748805, -9.652863835870324, -10.23093325457528, -8.762913676562933, -10.376893518019404, -9.793051995270115, -10.664616278508337, -8.45092828365663, -11.809214684344774, -10.121871656390871, -8.29372962906357, -9.880831873220417, -10.334040240510365, -10.155265621359389, -8.947878176369137, -9.961877300746707, -11.994737842689414, -10.397749609121375, -11.065904127492193, -9.830616600851984, -9.551340643600179, -10.962861791700567, -10.689359141555192, -9.398376799754557, -9.532069783178663, -9.926658807123586, -10.922874387959276, -9.275811580143419, -9.171526964519447, -10.061858948318022, -10.562792328629142, -10.27076255989942, -12.92785788268489, -9.939738752606248, -10.059184824764454, -9.357990527912571, -9.77524422211442, -11.910998140579949, -9.77448708417121, -10.046009780961219, -8.144582772238685, -9.455087700000185, -10.136843704580846, -12.641995201539867, -9.478319459103993, -9.226517623647588, -8.513439505516434, -10.034448931356097, -9.497105943154112, -10.999996667874772, -8.581456840749963, -10.31479700924308, -10.169179614346646, -8.599974508424811, -9.834662726534317, -9.60598482892676, -9.58377014662727, -9.9077631148078, -12.266349128665599, -9.462661804590839, -9.687534668018525, -9.790753507902155, -9.908650821256451, -10.227920369315353, -10.720401288745325, -11.00797396351507, -10.090795542834123, -10.528698177187765, -10.848154030630957, -8.32689144983985, -9.533099379601307, -9.98176895513116, -9.189491925376618, -9.58121461154772, -9.942812072633927, -9.95065313786825, -9.645088590423565, -9.272834045960995, -10.132242193429919, -6.915838887496726, -11.040514478717547, -11.167564031728157, -10.111076518403037, -9.141420028839438, -12.595033053892623, -10.82284572395427, -10.378001748093748, -9.807094755925382, -9.941325677800545, -11.353507456015134, -10.211363029556471, -10.751070091076528, -12.147891023844245, -10.772877961916038, -10.719166369909072, -9.974451573853882, -11.096165759274683, -11.3301164503783, -11.752578701061244, -8.996915087460476, -10.078244400204738, -10.245208977240482, -10.509154845876134, -10.471113982909605, -9.479183073060419, -11.178958185049865, -10.100649243961165, -9.995486280993708, -12.441973447560379, -10.791703793375623, -11.237206975797246, -8.560605780478353, -10.196132979168398, -9.4795823641033, -9.806607462914034, -8.305694214382369, -9.364367028686532, -10.452984949267677, -9.665450810703774, -9.726454707335, -11.082208183713544, -10.06837884312703, -9.888303908922854, -9.30829740838746, -8.712692481540069, -10.044068915879926, -10.54399237581478, -10.071330474844883, -9.065367332698171, -9.69756727705472, -10.001486228806309, -12.955550776430837, -10.517260053344591, -10.255116261019092, -9.24655610382757, -9.644068770620528, -9.393086337748835, -10.896476530630931, -10.727395395837847, -10.62023145643794, -10.74156961460553, -10.830935680729183, -8.867692277956287, -10.304477493030626, -9.726373181650121, -10.913456284654695, -10.939659130634588, -10.378451944062565, -9.804508681544936, -8.79743528308063, -8.977179942913901, -10.095902243092933, -10.223263186529728, -10.003515957230602, -9.227219879706318, -9.407218621450275, -10.288016318338592, -9.667910356732415, -10.384979538353578, -10.236691535100919, -10.360725911065007, -10.711266199370097, -8.83587303289171, -10.095703452234261, -10.140758330646173, -9.079410927593534, -11.228676956584152, -9.86549085134444, -9.681184515172998, -9.938513282990787, -9.949608731226094, -10.913208500077875, -10.232316062866708, -10.271343803424708, -10.82682488776013, -11.35072906378073, -10.118768001858195, -9.935447519016535, -10.836090664640967, -9.834476817885696, -10.125535729992782, -9.252846737891007, -10.012157011036118, -11.126748405300987, -8.689807731608427, -10.38888074990663, -9.86579144257398, -10.778412117185166, -10.272982122263977, -9.185916536759215, -9.909839595955743, -10.623803567195747, -10.006244834162116, -10.724370070020546, -10.19843754544167, -10.412050714509654, -9.310716777225556, -10.034254506731399, -9.8990388915141, -11.651394861959815, -10.891165816518267, -10.409591059217632, -10.075413112413587, -9.345686694902447, -9.535464308668185, -9.896824878104061, -9.705639450155093, -10.280979153033014, -10.235427103129556, -9.171025543721875, -8.840515924921503, -10.056485165013875, -10.153797658425852, -8.074700267861532, -9.151909044508031, -10.098338132634442, -10.486063384538937, -10.168210689431465, -10.885717282341721, -10.1737163877275, -10.34056746315999, -11.507786499046864, -9.685219390545567, -11.639457768439215, -9.864559949532653, -11.224953547758417, -9.020586843423207, -9.600547711138795, -9.5980214476019, -10.575889368820764, -10.289413902231779, -9.84074007515616, -10.035726633618774, -10.430909981082813, -10.677476903639441, -9.782761702415725, -9.830979769847582, -9.969687308261625, -9.780951202863347, -10.502362224690758, -11.724841721055462, -9.912062901849163, -10.01305065514909, -10.116307179659518, -9.954166832311266, -9.919280395559511, -9.348657519799428, -10.610928102955393, -7.677346773956067, -10.502779915273468, -8.3645393377826, -9.537650964969469, -8.85852737805082, -11.602202423381328, -9.823534317103325, -9.435131773743896, -9.0544211157971, -8.273354004849349, -10.080239553825452, -10.869723233185855, -11.269580470181426, -9.772078745754136, -9.168051696493892, -11.1046164022793, -12.001109539072685, -10.283264025204563, -7.619051310289588, -10.417983833742042, -9.049637862534423, -8.847302238340806, -10.247104831031768, -11.70445689754937, -10.36846597873317, -10.383799188782842, -10.51227461553345, -11.0158323385821, -7.499741857761839, -11.676795663522745, -10.319037945542652, -9.356040137312274, -9.33148900393377, -10.271652432766025, -9.372936504379576, -9.554387904676856, -9.053299736900863, -9.670861739382977, -10.138876140500376, -9.695351067377313, -9.025720030217066, -9.317220067427202, -9.34055428777074, -9.964946903382476, -10.690443466883288, -9.530171618538033, -8.10922171431195, -10.551470769991488, -10.387859147968776, -11.510245062370457, -9.666747126534442, -10.404121559656716, -9.468534568639193, -9.879997577337758, -9.776897659947053, -9.876174568093129, -10.973958160886653, -8.857964559843607, -9.457170682613851, -10.639484314488534, -9.402125806913668, -9.53163277336623, -11.296740187483564, -9.270478383057021, -9.420251414682623, -10.939477061714335, -9.256167553138933, -9.534808618330082, -10.495009935842756, -10.660035683448676, -9.168661323309436, -10.686844344611037, -9.897602853072346, -9.217701300473932, -9.324409530397084, -9.485139712445594, -12.419782950662794, -10.050628479768992, -9.954572195485037, -9.681194477801197, -11.090545736501754, -10.453531659310515, -8.527211129190134, -8.859578340153357, -10.025490834017198, -8.293930588877926, -9.152978595211751, -10.112273897350374, -8.847821964197749, -8.70275917084834, -10.489451125051325, -8.771010261737327, -8.570192881307085, -9.471162776902542, -8.121078367205717, -9.381946750313878, -10.144624425384295, -10.871255272035157, -11.563546633327409, -9.439574245067996, -10.326689998489899, -10.672124360651225, -9.910382396574578, -9.698825978952213, -11.378253642686769, -9.642978252044584, -9.843748519453408, -10.89975867304656, -9.157494541307674, -10.340270945529017, -10.728898321021347, -8.438518172091356, -9.847676704549915, -8.814285799703411, -10.413938221238563, -9.435258537970782, -9.07752405267628, -10.10280676472289, -9.716601048472459, -9.141319145483191, -10.443406497281222, -10.066522659868475, -10.778266035129246, -7.7200123641576965, -9.6013339558444, -9.840394820658808, -10.108083469050701, -9.695056206442889, -8.37333505115367, -10.542525263824071, -10.702096717191349, -10.043050066589682, -11.996540941042221, -9.296556902574952, -9.969828004057296, -10.02031346481602, -9.95610279594031, -9.47304892846611, -11.81625306228101, -9.854368734970533, -9.67672543111391, -8.572384622212677, -10.370533966612083, -9.252959700568974, -8.626766503229067, -9.768428579019371, -10.51507616520454, -9.174509383526168, -9.069427003626437, -10.045342781334817, -10.060910967473697, -9.853325669994902, -8.919897499251427, -11.320165913833945, -7.523484773958846, -9.947198020952138, -10.340096990708865, -10.075998817205337, -10.268500415741409, -11.033153364683615, -10.402679222134743, -9.3689242358782, -10.61728203879371, -10.550151550005797, -10.84534111287639, -10.071254280248699, -9.45475763826254, -10.615829945790672, -9.953164533592496, -9.361087512589348, -9.874434559314906, -9.940013111796246, -9.653627955555187, -9.371245019360103, -9.715578828949313, -10.185564287831054, -10.555460237667276, -10.506700664564589, -9.796671318330135, -10.746866728486683, -11.117810072336667, -9.894985199956588, -10.879798020798148, -10.332910743671619, -9.949103394158294, -9.683436080696465, -10.350075200911402, -11.56181443949079, -10.593395294116718, -10.540399968230558, -9.63145885631616, -10.210233566605318, -10.00489220313104, -10.0350969833165, -10.516928965630582, -7.403561258374744, -9.972331924648435, -10.340620943121463, -9.945572434645094, -11.079845675156335, -9.362352615141718, -9.91404370062957, -10.127142528583873, -9.84969165815216, -9.21838262951179, -10.885043358014277, -11.396284312651828, -9.8207105072823, -9.136969647537603, -10.479263403604024, -9.728343722091136, -10.834479221159338, -9.927550527814654, -10.492848051639214, -8.752648295806639, -8.85237893062912, -9.831812214636276, -9.461488851787655, -11.439020454430892, -10.120199387426224, -11.001478296715641, -10.197678028125074, -8.621842736058177, -10.724256672457244, -8.643457805213824, -9.229948584648337, -9.302209938464475, -11.937994424807831, -10.028348742004038, -10.18815406107564, -9.585008881196186, -8.429811386462772, -9.629923843389761, -10.21841013049723, -8.938147848588772, -10.736257507960964, -9.619187121996351, -9.353018014633, -10.277124824461833, -9.965378194186783], \"y\": [-8.182339666169653, -9.633735012642578, -9.941540073939857, -12.036403359898566, -11.21389620346378, -10.261651846722888, -10.23593843463161, -9.919689375552839, -11.355051361114366, 9.190363656518477, -12.966614900920078, -10.448503289368785, -10.146075735905981, 10.0242711644754, 11.113409335010779, -11.350006496728913, -9.532594453515438, -9.240268733920784, 10.127466696568446, -9.698224235053477, -9.202828398114505, -8.542466310863208, 7.0764865696500845, -10.341361991376772, -13.18738146345096, -11.755101194504743, -11.044253469951569, -9.297053006698768, -9.398773592614825, -10.495946446013589, -9.569442277147463, -8.08732549498751, 10.393328871399145, -10.013682104581394, 10.214099718215328, -9.91357230765839, -11.193570137872687, -10.023099546038395, 10.61546849103685, -9.775201054394861, -9.79801961440036, 9.12310692530425, -10.501204602213587, -11.522478239171765, -9.523293548997348, 9.87069047659762, -11.119184558425868, -10.679786241998091, -10.746769568162028, -11.889245352915227, -9.685934931485608, -10.425270400483003, -10.242499786352676, -10.407225170198904, -10.999912689044654, -10.484760774112102, 10.244192975410066, -9.702262256237084, 11.26751366249444, -12.621922810498544, 11.050387646314523, 10.351322108178268, 10.15351128808498, -10.80318446226906, -11.529094390622877, -7.551289607694052, -8.91303989595367, 10.201473621506006, 10.626696923468499, -10.472184810032253, -8.868615444881108, -9.767034268304535, -10.20707945226991, 10.853330284396446, -10.997021955098257, 8.938349922559402, -9.914723191492394, -9.442420965624834, -9.774875398342056, -8.913064838663022, -12.136571493481375, -8.553992636036085, -9.36635513157145, -9.575794763025165, -12.806527974097524, -11.451914266719438, -9.221575313081757, 9.673984958874899, -9.484362563294065, 9.744247483090696, -8.469330838777012, 8.610712641798042, 8.43796100371475, -10.25339526421064, -10.515068051862816, 11.819067611876976, -11.886712769905085, -10.688472992855333, -9.934971616658716, -9.603284940492538, -10.060403735562, 10.860730299329626, -9.090751794323918, -10.482032908925609, -11.142455582793994, -10.099879556527048, -8.154923384531315, -9.370629918981562, -9.946810804812722, 8.668447481065495, -8.816565715223819, -10.511975401815613, -10.714477127162041, -9.280140635382697, -10.888897579819877, -10.520292487063783, -10.506168986613266, -11.662916627371237, -10.28209048086025, -8.796472101377622, -10.983285604134236, -9.537422990152246, -8.712162701664893, -11.455458836722947, -10.55367656025232, -12.143176367539045, -11.0207204065871, 10.152388533165874, 9.55835743549212, 10.022640763572543, 8.936790905392666, -8.817733609762108, -9.299779285136726, -11.749007676406896, -9.308151125620247, -9.81410460264471, -9.207638923494596, -10.755782593398303, -11.802948539562498, -10.133903330711279, -10.776234914636687, -9.52402881186178, -8.749697284120229, -11.361934431012365, 11.107860966964838, 8.325883273661006, 9.013520486574125, -11.07594421106932, -10.37521760859062, -9.194764591215288, -11.464157602521437, -9.992040161367562, 11.096127455816104, -9.596053753160472, -7.564856299224542, -9.51730336333032, -11.567205672235072, -11.717306946953283, 7.120208099198694, -11.58206979022783, -11.004951790306885, -8.786092521126037, -12.061931304707217, 8.491863095915491, -9.737043374125324, -10.167115985391161, -9.774190541084126, -10.59853573832821, -9.530237904980375, -10.191921704279578, -8.486555303994672, -8.504579689965233, -11.15477078390773, 9.426621373691011, -10.175068995830884, 10.58515398444781, -10.80158015680418, -9.929567679328013, 10.814156361809061, -10.914822246789088, -10.304955646343458, -8.347932445141499, -8.553024469569351, -9.273285320011771, 9.882979053620884, -9.551059885321209, -10.475613801674717, 10.245710203992068, -9.348108790746856, 10.303574631112575, -11.368268349686321, 10.841523245184694, -8.644621238584742, -10.081012182929593, -8.779691524123404, 10.186375579213989, -9.382474372842358, -10.075885922113033, -8.509785018191051, -10.80670586192972, 10.7306225224079, -10.040136300725829, 9.472957581763435, -11.08639514648231, -9.353614255782714, -8.804446936094841, -9.776525622148272, -10.15914756050846, -8.541537930260962, -10.077453872066544, -9.586849065368948, 8.564137974355958, -7.980672580330472, 9.230072988808288, -10.51966679818552, -10.540368185377728, -12.622151995489478, -10.51979586574914, -8.9064889863673, -9.888947776967827, -11.139074973213408, -9.934930006990319, 9.769049049723828, -10.474126407134383, -10.273893057391335, -9.93381035098787, -12.057780818115045, -8.76582438098901, -7.592476264902415, -8.60176885662972, 10.772464144604132, -8.175866221166272, -9.175102994813786, -7.796410628530744, 9.23960747441389, -9.4550118756585, -9.11832338694392, -9.730535277915404, -8.21095404313622, -10.695017984514372, -10.879962599273755, -12.367445777559809, -9.791771096432754, -10.183820099689948, -9.210906920840758, -12.692651059620745, -7.933533341877876, -6.1801026832698405, -8.79085850614554, -10.060552401035507, -10.452749617731888, -9.686153280157553, 10.140751409122373, -11.851452308897432, -8.412541460235724, -8.955375343932644, -10.644307306687063, -9.740287646561264, 10.610109052707346, -11.586400402788234, -10.884622201563152, -7.778848685766617, -9.2447390365215, -10.162971684666658, -9.427219350423114, -9.79767445359824, -8.186609501964554, -10.983737496377644, -7.607051885953473, -9.816063923719586, -9.48889358123351, 10.06942348902886, 11.564293957369102, -9.908492001857665, 9.188283697746996, -10.104514681569313, -10.790052720595913, -8.468325500660024, -9.90255383186164, -8.478286097326109, -10.790937531688964, -10.420906164984821, -9.889502699699968, -10.691107501565739, -8.587176391222792, 10.067034421261374, -10.720392502657853, -9.669266851209038, -9.999183714940491, -7.593537410529155, 9.153734592733718, 9.838417360411682, -8.547400550742559, -10.760133034793695, 10.046505205615551, -11.043289201935403, -10.978395631365206, -10.889418318391332, -9.04951166905545, -11.644116995130737, -9.752720492261671, -9.114183584175631, -7.253746775885547, 10.206073342436445, -12.778965646011088, -10.986510480986274, 10.025948463518441, -10.186853217907615, -10.272552969623748, -9.560156436224721, -12.018127075355991, -10.3699514306297, -9.089486204960396, -8.885963136808732, -8.38057082477893, -12.31974911140407, -9.92024016925453, -11.045357001411558, -8.8209835770758, -11.28250338634569, -10.718937952114317, -11.420817980710712, -12.323195701820687, -11.652179639948585, -8.947374625424613, -9.112768549707951, -9.6050634779841, -10.614193909539164, -9.45239466161771, 9.514704118517733, -11.000822296736683, -10.052787882712153, 10.585268736220838, -9.986033812989227, 11.37028185710268, -10.172040971029485, -9.749014017405448, 10.751644977128386, -10.139016031403292, -10.415699042626194, -8.381649138077627, 10.405543095717501, -11.866760476467348, -9.40399161829232, -13.042639697597684, -9.582938772866662, -10.602811958773472, -10.24293076598806, -9.40261833488412, -10.927384662290825, -9.288721182994344, 9.955829807062326, -11.791718313903448, -11.796309828299139, 8.147438423728458, -9.244870852573932, -10.280366476027433, -10.733253679837159, -10.927988130569968, -10.41733985837156, 9.987280573218586, -11.716293852666444, -8.715878305536117, -10.145935951910198, -10.357446520726583, -10.843180515467997, 11.118625340601042, 11.64075381919317, -9.417662403554685, 11.154264162091984, -9.477746273706996, -12.225094652110467, -9.16178087625518, -9.991903736274548, -11.513214636447241, -10.0593153659045, 10.141236970751335, -9.174562020250148, 10.58509844006645, -8.673960166442237, 13.216816910615357, -7.496260121113655, -9.571150664440713, -9.224338780606306, -10.259952816223167, -10.432722728344869, 8.851489179405148, -10.088200514872556, -8.9779986875095, 9.03134777676845, -10.713982919302557, -10.628357105812407, -9.680668465848468, 9.964898426589787, 10.266325848085664, 10.741948062890291, -10.044410339784394, -10.275196092398122, -9.881721617919517, -9.735516675318122, -9.882470543584377, -10.673545575104255, -10.96030434576066, -9.555286668785937, -7.737196473978177, -8.997403894113033, -7.878793832244435, -9.959396681583224, 9.668014581576177, 10.510534840357158, -10.52041469442978, -9.456736702985683, -11.78096652431443, -10.189950202667841, 8.301988063486485, -9.32977056908604, -11.297472554158645, -9.181911268538475, -13.924080376018065, 8.991360546913645, -10.09633977759378, -10.514541091076334, -8.284877178684821, -11.322028541400371, -8.707285392974091, -9.70835211819295, -8.40265644525286, -10.086526665473, -10.06810078908825, -10.619448339233944, -8.367123996473438, -9.322422063782941, -9.980603107020164, 10.638288007288232, 8.793776541100241, -7.749049843446793, -9.523796873656474, -8.658689824407277, -10.88968493378175, -8.750334082679554, -8.87707108591842, -9.448464997465196, -9.080181741015561, -7.738914152425476, -10.184750401265443, -11.562843170544298, -8.430225704745212, -9.739738552418025, -10.312187248383356, -8.939508621139577, -9.137225782409764, -9.589970780713015, -12.126488139104033, -11.188063121603435, -8.620868557065293, -7.92534346731563, 10.547320211387415, -8.722408169485085, -10.363069986065417, 7.861150615319087, 8.551479541911647, -7.22934592202127, -11.74781484235907, -8.569070326513256, -10.357038900919186, -9.809666311257807, 8.892232051390955, -10.957448444635464, 8.271822365705837, -8.990436604613668, 10.25303477941417, -9.935670647576497, -8.108562839327409, -10.585403495706723, 10.734244867959765, -10.344946521765777, -9.860138290945233, -10.072633215835275, 10.091503544361943, 10.337929690471057, -8.70258475913, -8.796006994707597, -9.953461183186278, -6.921926010012378, -9.85898786536258, -10.981624451301826, 8.142269194715722, -10.935517293069914, -11.79353397411369, 11.516691486291133, 9.057976316747931, 8.105329244131896, -11.49466312505517, -8.379758718617703, -11.342827517545867, 10.220145387507575, 9.035376099048966, -9.038209092540978, -9.509680823071076, -9.246878970637843, -12.037247196270194, -7.968571757597156, -9.642077176633755, 10.485943314303029, -11.586991286650191, -10.643084426914463, -11.490777559523988, -8.386062284604165, -8.698465310770587, -9.374201464456084, -11.121539497165003, -10.173237460062527, -9.693468577276533, 9.099266018446695, -9.244739310892289, -11.020492970148553, 7.661037443230347, -10.744484843928408, -11.29061023705919, -8.945913666245069, -8.62960674875238, -10.14168965154167, -9.647512876743328, -11.41302050306054, -11.143986093784214, -6.881281115448498, -10.514592697558307, -10.826346207644653, -10.103059014767435, -9.397370842585689, -11.484772927762654, 8.874277310100002, -11.28797810708439, -9.889156114960809, -12.727553770424786, -10.256280656856836, -9.603656635473811, -9.198722200875187, -9.878085871701995, -9.677463357218294, -10.181632790055739, -9.601325873651355, -10.234863102325798, -9.29805198578558, -9.272971062980638, -9.913915828275172, -8.662198652425587, -9.763766245216432, -11.946953135865929, -11.76333902719445, -9.755377187885758, 12.049585418456186, -10.387668672842029, -9.218453422065018, -9.327840888901965, -10.97996557347216, -9.733677319124864, -9.15238647721031, -10.439945585642915, -11.766897007021743, -10.300727534201148, 9.920505139940667, -9.320198183847275, -8.693416239494713, -9.407755339438326, -9.876522846975496, -8.821172324513155, -10.271597246030858, -9.247000920514777, -9.25496932617072, 10.086324163260603, -9.410108392226942, -9.357903959922297, -10.523873495932838, -10.460590542728307, 9.359992652150972, -11.291653697151883, -11.385168203930768, -9.773588591631352, -12.078811637057843, -10.219924418152317, 10.278312657773615, -10.474726181348252, -10.280313505755002, 9.88663868641198, -10.175405217507409, -8.848980165985783, -8.788563257116872, -9.133819402756117, 11.103775137460062, -9.234583323438368, 9.437606703834682, -8.841567537043705, -11.22745829760659, -8.625454256609766, -10.136134220923804, -8.464220280171613, -11.513690238819667, 9.604532344966781, 10.343711770685822, 8.635151755179589, -11.376489190130307, -10.163947353555741, -10.237190944752527, -11.023954072687312, -11.646010074527467, 11.077451686875746, -10.226504026386351, -10.557455450736764, 9.713315933138531, -9.00255393131319, -8.459147464437612, -10.430774270258196, -9.485944594135123, -11.148227667567163, -10.968408948709973, -9.769105145861605, -9.830830247365625, -10.27236877190204, 8.495601877211552, -11.220086945210557, -11.073079407369876, 10.682272011237044, -11.94097623366986, 8.607448492878307, -10.54127136333957, -9.178314428822851, -9.850632356981164, -11.426500695766858, 12.14115813244441, -9.720903676183111, -9.632454348018166, -9.716636335263466, 9.873343762289375, -10.499574992501502, -10.274020848059513, 10.52980427045567, -12.06427237592748, -8.381044374424079, -8.974747064059075, 10.142433299572621, -8.510578270450525, -9.23263199064586, -9.856061078683904, -11.811038464677154, -8.915137324566707, -9.871440498946754, -11.196106569515894, -8.834782967003068, -11.652014584632296, -8.587677169832173, 9.712844990470144, 8.841543540926757, -10.820730262677474, -11.268170853546744, 9.933510611800443, -10.196361676606115, -9.460592467413543, 9.868220687477482, -10.70500727999117, -8.515524715233463, -10.942457522647121, 9.16448227806212, 7.7299372955354935, 9.957101545318643, -9.217952336957461], \"z\": [-7.9333549449468075, 9.667579170932616, -11.005497410229694, -8.818947874186978, -10.000499036336763, -9.163607139799165, 7.614166967791559, -8.859205303334761, -9.478448330113341, -10.425347108574526, -10.163018966590316, -9.683590256594167, 10.511703887143803, -9.56233076661984, -10.14412797207693, -9.4081432797376, -9.964322039898443, -9.804690865408315, -11.230570648282177, 10.76560756593357, 11.015481893035533, -10.753275570341177, -10.191125531085126, -9.768300946520405, -10.11022161235244, -10.069790669421861, -8.758442099634276, -9.18123017412168, -10.683364909237214, 9.08078728475887, -11.053178246967192, -9.247339247737115, -10.227158532709398, -9.619507038555202, -10.838592375900179, 8.165956356187818, -9.878415950043147, -12.856074007636533, -11.60070278336848, -8.422477593178066, 8.318887117291396, -9.266578931147068, -8.967769191996076, -12.978950235802861, 10.952745749107423, -9.332679059259515, 9.967361017328251, 10.271253080704446, 11.00572750811313, -11.577108138580545, -9.514506993925563, -7.012584278164137, -10.77738819362754, -9.08995352081442, 10.99826467176584, -11.722482403943419, -9.374820087894427, -10.137605971999218, -9.13802755667298, -11.646387376438426, -9.822057360164225, -10.71957274496028, -9.832370491496853, -8.638914523195046, -10.142564788068086, -12.297712994911803, -9.129305148857426, -10.515137207511643, -10.652111431763105, 9.338448021070693, -11.746143982250643, -10.407667253602419, 10.089771047872967, -10.19447202419948, -10.00260945997796, -9.548329101398421, 9.815779183011168, -10.519646156102196, -9.55999470063235, -10.495142487913043, -11.053061502558919, 10.233647482659965, 11.475167151293888, 10.848173340974512, -9.676654710176985, -9.7048853428957, 6.981908422841118, -8.978584905981037, 11.104692515928736, -10.661401974239933, 10.086778365791274, -9.989659946681595, -10.774534193423593, -10.78832369233294, -11.148598878297273, -9.771876711835755, -10.095151804229229, -9.674495545822928, 10.069485106480817, -9.208486491908655, -11.687892921924208, -9.27611466654873, -8.854745415252037, -13.01823096772815, 9.856219334709145, 7.91048919602464, -10.032017072896723, -9.163573189233585, -7.383321048012678, -9.41071484957741, -10.984346037127919, -10.51001248135151, -11.58090025984211, -10.59829251345323, -9.972194762804675, 9.217741534228972, -9.73491848288941, -9.310332204111612, 10.565728086293438, -8.89428016066707, -11.836877733757749, -9.64160004300316, 10.317076551033155, -10.937326192198611, 9.259632181805433, 9.699542364305822, 7.851080669859243, -10.645415518423043, -10.666731728565264, -9.913993391220194, -9.448243510425439, 11.340778547130283, 11.037848709499043, -7.771367804805479, -8.739492290627421, 10.543503823998137, 8.555612425951951, 9.686541943174273, -7.532872943539003, -8.558231071738597, -10.687134892996394, -12.043636177352194, 7.946634385082733, -7.880398609741977, -9.956280780085637, -9.070875494500667, -10.55334401380572, 10.417184109589908, -8.604279395435317, 8.33161028671244, -9.76520227959793, 9.532164955794725, -10.583962205906042, -11.174423518264176, -10.598864173265095, -10.95141960405785, -9.450704652263328, 8.483847954799465, -10.56271988035226, -9.310539397004794, -9.72334293902181, -10.178564626191188, -9.271194751487018, -9.024546683113705, -10.358862336039374, -10.614652855688616, -11.508938693553674, -10.377292883474464, -11.247644321441644, 12.009645192474629, 9.151430756184109, -9.559907798145602, -9.240904331251464, -9.673101783617586, 8.587984682297026, -10.669292930928059, -10.070726432508447, 10.08704490458646, -10.877222984883826, 11.555268892092412, -9.400183293219731, -12.212042227442915, -7.846388657612518, -9.607032067648614, -9.82231960356349, -9.728792831419687, -7.964610259231484, -9.57261602559172, -11.409679806659726, -10.044305018279099, -10.459624803792723, -9.461423339968452, -9.629435575592664, -10.000837861693153, 9.419332048146122, -9.830814835669495, 9.386563161930484, -9.772781120568677, -10.172626590804603, -9.527264005712272, -9.742856453098018, -8.214918692961392, -10.645660895180143, -11.558707463427307, 9.792044998454342, -10.028443069957216, -9.066163404731105, -8.500701648944052, -9.787460109125535, -9.653836594267778, 11.875692388050522, -10.437638591050755, 11.931283029152407, -11.886548492905376, 9.93637161652953, -7.995910803116682, -10.630562423746412, -9.752196885493367, 11.945116331600772, 11.264176579657459, -9.171575327787435, 8.913841412276982, -10.124495612597594, -10.67030758119451, 13.693569328268469, 8.711995378647003, 9.356898619186316, 9.096213028293715, -12.476209759477864, -9.586283749422638, -10.317767140389668, -10.862900224282045, 11.397994663209827, -10.055198625780038, -9.92632205025794, -8.244546376763711, 7.069477120149019, -13.92137818554731, -10.437297113105531, -9.618901702716697, -10.909945200134326, -9.905302316559341, 9.9925920778048, -9.308933141303797, 11.234886032765298, -13.27651184050197, 8.085630325643589, -9.623087020696213, -11.311489261417645, -10.378446788323952, -12.404789143147388, -10.08954913901719, -9.794943089711303, -9.307479068239344, -8.643114662598238, -8.903820920771793, -11.263937169179169, 11.82546526529201, -8.862457753304163, -8.888432382314605, -10.307484706553895, -9.83059864961739, 6.525478282350695, -10.99351438016975, -9.85895918446981, -9.002704520869854, -9.870898253893845, -9.509901158635726, -9.341186013582577, 9.845408425587246, 10.25688506725211, -9.237892349547339, -9.63349624379118, 9.72477982134084, -8.772992634450894, -10.293427657230632, -9.797104451513906, -11.384621536846016, 11.651920333488446, -7.0950474836565025, -9.466938632424919, -10.515288890313284, -9.591890172743577, -11.796934154868119, -8.935219745294328, -10.27126457584956, 9.368975622518377, -8.597838339690778, -9.664658231641408, -9.3782947478796, -9.26949918503035, -10.613940582320511, -9.735416243232663, 10.79276976763987, -10.861323677871153, -9.565640007384651, -8.954042785671964, -10.80434264367524, -10.219259311172369, -11.586759318339602, -8.906361747549653, -10.582533753996488, -11.468914895156418, -9.653272166902024, -9.02113935990438, -9.430173309151675, -11.30883398685113, -8.897256940831438, -10.079142526001228, 7.237819132766164, -8.376087588678688, -8.441077890848343, 10.187222985065652, -9.37515700442237, -9.910541529714266, -9.282235639267531, -7.6044852402771355, -10.530205506949954, -9.568227574898845, -10.736868786034728, 9.35116885213332, -8.50101471088188, -10.336826890593864, -9.296788681993474, -9.112878346980443, 12.913153514328194, -8.540935836362626, -12.54832928926062, -7.834299203239938, -10.6222834377259, -9.850893923470275, -9.84048665631829, -10.69913396978456, -10.889122714646442, -9.984638056514415, -10.105145840873595, -8.999295982920689, -9.541843213419227, -9.83539003610014, -10.313510266467755, -10.309068841735318, -9.692467094706677, -8.34985028647311, -9.555688076335455, -11.106274795948723, -9.60728824291854, -13.147750209250445, -9.805101061109815, -12.466518042859981, 8.013126274577886, -10.569144095739865, -9.769381198246368, -9.04916295336785, -10.064435177528729, -11.085461957248453, -10.05502754881966, -9.895662519840641, -11.813294046389801, -10.822277595030176, 9.46133654242281, -9.410742903026339, -10.194117055815287, -10.619388591674612, -10.407979275626058, -11.018536988832158, -10.39666836113413, -8.872605080370663, -11.04853267114799, -9.150098877918111, -8.59558153417914, -9.191061774702682, -11.580813701302711, 9.338458394768008, 11.474904799186628, -11.652245720774346, -8.5709771904425, -9.179283118453526, 8.026747342897439, -8.723245422297953, -11.187274097954907, -10.078186256914908, -10.748234609009602, 8.16150772525177, -10.318216143653997, -9.114111490280742, -10.555432912401944, -8.898568377225606, -10.097270620801622, -8.923300159996405, -9.932544121616548, -9.595310433052596, 10.300118615251467, -10.417656786323398, -9.658611598924074, -10.088744977078113, -9.395543997726998, -8.84501934668201, -8.630332647250121, -10.81692072199764, 8.444357336759163, -11.297338187901058, -8.915806841770657, 10.787272479162958, -6.517112624183948, -11.279170742124972, -9.217874966309797, -8.905503331046397, -12.14365949742699, -9.615716225755168, -10.192835776099956, -8.913631163450477, -9.158099457732698, -9.605482201243218, -10.809507449137111, -10.672327608519096, -9.013786899637488, -10.034231875661693, -8.92178721868344, -10.519885693161745, -9.938755363236545, -9.06017156540235, -9.819368630955738, -9.157382566981093, -10.414113740118871, -9.40857967972949, -9.18246362138501, -12.226367821156957, 10.125452198007276, 10.918409561457445, -10.32466618614956, -10.747060147295565, -7.5400524011880545, -10.682367211167657, -11.257316216570823, -11.386809627068853, -13.085832808023486, -9.835825705377466, -10.341128912621098, 9.53960729571569, -10.833354500094075, -10.791280874035325, -8.6784329300474, 9.2328616640864, -8.916064799130284, 9.45371302838401, -11.199478827145226, -11.870379191476633, -10.01144974988479, -9.009448367829341, -7.2406869824023605, 11.716347087438118, 10.741900820643291, -8.570298413386462, -9.559512301312926, 13.371154574664104, 9.218615720468058, -9.510759275704489, -9.775111962182727, -9.574777297597318, -10.817097254061819, -10.490939050166089, -12.258982787702843, 11.031119251435832, -6.852642794011539, 8.27806334850753, -9.016623467585047, -11.111779630230352, -9.467675655391442, -9.990509714350864, -10.522223120686753, -8.929339847568587, 10.463237931608173, -11.54419154588125, -10.26918156665563, -8.770127657339437, 10.349739841007219, -11.474643907711899, -7.990929540110334, -10.478036295579578, -10.311593274841734, 9.362282205185856, -10.491783635396478, -9.57458589827447, -11.022060648036899, -11.26742275042159, -8.539341329601214, -10.751795439075606, 11.558605102224343, -10.506479577044614, -10.811220931980994, -11.105424610363182, -9.457117565535142, 10.796287509718574, -10.645552134540115, -10.936335429914156, -9.773312116556616, -11.054282798731395, -9.50814484383138, -11.663990494129326, -10.666132322095137, -11.563280736785465, -10.636098087251131, 9.147680080394125, -9.630899631286047, 11.248402940616824, -11.57037682021877, -12.138557719466949, -8.548718106714032, -11.94836723610873, 10.069441870466395, -11.055988329915392, 11.340428871891286, -8.946480851621445, -9.997583093241618, -10.453170370586422, 10.27086424111246, -9.615385912242555, -11.388572140427808, -12.12253480457056, -6.88138315431439, -10.157383821962004, -10.27468098142963, -8.434655293133291, -10.205051073630239, -12.95940014371412, -8.1622926211772, 8.207037614162617, -10.493775963539527, -10.138727419408584, -10.351645283290493, -6.424937794126976, -10.893941556669777, -9.152871301986846, -9.002462371899528, 10.007440922206891, -8.381141868036675, -10.758336100600044, -10.936312126294576, -8.622657611209934, -10.63107463363661, -9.603546994737721, -9.243842026404408, 8.56255372658746, -11.81954296058155, 9.059539766629532, -11.236820721684458, -10.142378929372178, -9.49071512735448, -11.014575537077627, 11.846236828845072, -9.82385681531276, -10.360712831704971, -10.030912825452758, -10.780399057882304, -9.231778421527212, -8.744043756046354, -11.19049060770853, -9.903467059469234, -7.539473287003471, -10.423566224063157, 8.968733858767385, -9.522709597191081, -10.484412345099873, 11.545415031523618, 8.193461021140259, -9.743781186234378, -8.624667470936757, 10.509489879243379, 10.465992495439131, -9.799671420556905, -12.169335729495707, -10.367960098898255, -9.43258242214875, -9.996362531465609, 10.909430549462085, -8.982267584712478, -11.030186061154382, -11.021972983792997, -8.526803956525704, -10.268529414944918, 12.092587924891305, -10.279830229720487, -9.65127631594487, -9.938214366555906, -9.300163792289991, -8.598319324564253, 10.192211441357946, -8.555408644683778, 10.681937178785859, -9.090642341388243, -11.370754282201261, -10.273901630120937, -10.092504542035863, -10.301261294720339, -10.820280672163472, -10.055951503944138, 10.636772753828048, -11.054719420411931, -11.14882762989088, -11.4961745652314, -10.53662794228994, 8.080816476940086, -6.712331192081012, 10.981322804121934, -8.311837576697414, -9.261639857193826, -8.643504758179708, -8.82716188633484, -9.798440213773322, -9.556571334503541, -11.45846766594066, -9.649734434563406, -9.09064913378823, 10.250725156445771, -10.12552864477363, 10.751918908313192, -9.992288440063273, -9.553413492079994, -9.102036530872214, -9.661485029707956, -11.547091813138545, 10.034630871857766, -10.307387580845027, -7.657267876866184, -9.952176029676453, -9.153197802338665, -7.930806758528336, -9.2885812254883, -8.749889125111482, -8.949946140438371, 10.728761843651464, -8.01203452466077, 11.233681685144756, -10.252951963578678, 8.339008939334889, 9.081405695464237, -11.63877972180525, -9.971964506978798, -10.664231007370333, -8.823024887053919, -11.753890649984884, -8.9537517590422, -8.252646842479242, -10.932411675587968, -9.441598428297887, -9.920303238910003, -10.091517823547582, -10.091505790155512, -9.371105652102877, -7.567701224266322, 11.705983457745708, -11.336328959145465, -10.95038247904581, 8.08082564349792, -10.05321197193243, -8.656857893485226, -10.132413181372355, 12.399756940524831, -9.98396920624081, -12.281131474790728, -10.102533926267903, -9.894852669906475, -10.632324750538796, -10.09240742735917, -10.101332062122129, 7.770360177244612]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 1\", \"marker\": {\"color\": \"rgb(255, 127, 14)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 1\", \"scene\": \"scene3\", \"showlegend\": false, \"text\": [\"example_0\", \"example_3\", \"example_5\", \"example_6\", \"example_7\", \"example_9\", \"example_10\", \"example_12\", \"example_18\", \"example_24\", \"example_25\", \"example_27\", \"example_28\", \"example_31\", \"example_33\", \"example_38\", \"example_39\", \"example_41\", \"example_42\", \"example_47\", \"example_48\", \"example_52\", \"example_54\", \"example_55\", \"example_57\", \"example_60\", \"example_62\", \"example_66\", \"example_68\", \"example_74\", \"example_77\", \"example_79\", \"example_80\", \"example_82\", \"example_83\", \"example_85\", \"example_86\", \"example_88\", \"example_90\", \"example_92\", \"example_94\", \"example_96\", \"example_97\", \"example_102\", \"example_104\", \"example_105\", \"example_106\", \"example_108\", \"example_110\", \"example_113\", \"example_117\", \"example_125\", \"example_126\", \"example_129\", \"example_131\", \"example_132\", \"example_133\", \"example_136\", \"example_137\", \"example_138\", \"example_139\", \"example_140\", \"example_142\", \"example_144\", \"example_145\", \"example_147\", \"example_155\", \"example_156\", \"example_158\", \"example_164\", \"example_165\", \"example_167\", \"example_169\", \"example_171\", \"example_172\", \"example_174\", \"example_177\", \"example_178\", \"example_179\", \"example_181\", \"example_183\", \"example_193\", \"example_195\", \"example_204\", \"example_209\", \"example_213\", \"example_214\", \"example_215\", \"example_221\", \"example_222\", \"example_223\", \"example_224\", \"example_227\", \"example_228\", \"example_232\", \"example_234\", \"example_235\", \"example_238\", \"example_242\", \"example_243\", \"example_248\", \"example_249\", \"example_255\", \"example_258\", \"example_260\", \"example_267\", \"example_280\", \"example_282\", \"example_285\", \"example_287\", \"example_290\", \"example_291\", \"example_294\", \"example_296\", \"example_299\", \"example_302\", \"example_308\", \"example_312\", \"example_314\", \"example_318\", \"example_319\", \"example_321\", \"example_323\", \"example_325\", \"example_326\", \"example_327\", \"example_328\", \"example_329\", \"example_333\", \"example_336\", \"example_338\", \"example_341\", \"example_346\", \"example_347\", \"example_348\", \"example_349\", \"example_355\", \"example_357\", \"example_359\", \"example_360\", \"example_362\", \"example_364\", \"example_370\", \"example_372\", \"example_373\", \"example_375\", \"example_377\", \"example_386\", \"example_388\", \"example_389\", \"example_390\", \"example_404\", \"example_409\", \"example_410\", \"example_419\", \"example_421\", \"example_423\", \"example_424\", \"example_428\", \"example_430\", \"example_434\", \"example_435\", \"example_440\", \"example_442\", \"example_446\", \"example_447\", \"example_448\", \"example_449\", \"example_451\", \"example_457\", \"example_458\", \"example_460\", \"example_461\", \"example_467\", \"example_468\", \"example_475\", \"example_477\", \"example_490\", \"example_491\", \"example_499\", \"example_500\", \"example_501\", \"example_503\", \"example_504\", \"example_516\", \"example_523\", \"example_525\", \"example_528\", \"example_531\", \"example_533\", \"example_536\", \"example_539\", \"example_541\", \"example_542\", \"example_545\", \"example_547\", \"example_549\", \"example_553\", \"example_558\", \"example_560\", \"example_566\", \"example_568\", \"example_571\", \"example_573\", \"example_578\", \"example_587\", \"example_589\", \"example_594\", \"example_597\", \"example_601\", \"example_603\", \"example_605\", \"example_615\", \"example_621\", \"example_622\", \"example_624\", \"example_626\", \"example_629\", \"example_634\", \"example_636\", \"example_638\", \"example_643\", \"example_644\", \"example_649\", \"example_652\", \"example_657\", \"example_660\", \"example_661\", \"example_664\", \"example_665\", \"example_666\", \"example_667\", \"example_668\", \"example_669\", \"example_671\", \"example_672\", \"example_673\", \"example_676\", \"example_677\", \"example_682\", \"example_688\", \"example_691\", \"example_695\", \"example_697\", \"example_700\", \"example_708\", \"example_711\", \"example_713\", \"example_714\", \"example_716\", \"example_718\", \"example_722\", \"example_723\", \"example_724\", \"example_731\", \"example_732\", \"example_735\", \"example_737\", \"example_739\", \"example_743\", \"example_750\", \"example_754\", \"example_756\", \"example_762\", \"example_770\", \"example_772\", \"example_778\", \"example_782\", \"example_783\", \"example_786\", \"example_793\", \"example_796\", \"example_798\", \"example_799\", \"example_803\", \"example_809\", \"example_810\", \"example_811\", \"example_814\", \"example_816\", \"example_820\", \"example_823\", \"example_826\", \"example_828\", \"example_836\", \"example_839\", \"example_841\", \"example_842\", \"example_844\", \"example_846\", \"example_847\", \"example_852\", \"example_857\", \"example_858\", \"example_859\", \"example_862\", \"example_864\", \"example_867\", \"example_868\", \"example_869\", \"example_874\", \"example_875\", \"example_881\", \"example_882\", \"example_885\", \"example_888\", \"example_889\", \"example_893\", \"example_894\", \"example_898\", \"example_899\", \"example_901\", \"example_903\", \"example_908\", \"example_910\", \"example_912\", \"example_916\", \"example_917\", \"example_918\", \"example_921\", \"example_922\", \"example_924\", \"example_932\", \"example_933\", \"example_934\", \"example_938\", \"example_940\", \"example_941\", \"example_944\", \"example_945\", \"example_946\", \"example_950\", \"example_953\", \"example_958\", \"example_967\", \"example_968\", \"example_970\", \"example_973\", \"example_974\", \"example_982\", \"example_983\", \"example_986\", \"example_987\", \"example_989\", \"example_997\", \"example_998\", \"example_999\", \"example_1000\", \"example_1001\", \"example_1005\", \"example_1006\", \"example_1007\", \"example_1009\", \"example_1023\", \"example_1024\", \"example_1026\", \"example_1030\", \"example_1031\", \"example_1032\", \"example_1034\", \"example_1035\", \"example_1037\", \"example_1041\", \"example_1046\", \"example_1047\", \"example_1049\", \"example_1055\", \"example_1057\", \"example_1058\", \"example_1065\", \"example_1068\", \"example_1074\", \"example_1078\", \"example_1079\", \"example_1080\", \"example_1085\", \"example_1087\", \"example_1088\", \"example_1089\", \"example_1091\", \"example_1093\", \"example_1094\", \"example_1096\", \"example_1097\", \"example_1101\", \"example_1108\", \"example_1110\", \"example_1111\", \"example_1112\", \"example_1113\", \"example_1116\", \"example_1118\", \"example_1121\", \"example_1124\", \"example_1128\", \"example_1131\", \"example_1132\", \"example_1137\", \"example_1140\", \"example_1142\", \"example_1145\", \"example_1149\", \"example_1151\", \"example_1155\", \"example_1156\", \"example_1161\", \"example_1168\", \"example_1169\", \"example_1172\", \"example_1175\", \"example_1176\", \"example_1178\", \"example_1182\", \"example_1185\", \"example_1188\", \"example_1190\", \"example_1193\", \"example_1196\", \"example_1197\", \"example_1200\", \"example_1201\", \"example_1205\", \"example_1206\", \"example_1208\", \"example_1209\", \"example_1210\", \"example_1214\", \"example_1216\", \"example_1217\", \"example_1221\", \"example_1226\", \"example_1230\", \"example_1232\", \"example_1234\", \"example_1236\", \"example_1237\", \"example_1244\", \"example_1251\", \"example_1252\", \"example_1253\", \"example_1259\", \"example_1261\", \"example_1262\", \"example_1268\", \"example_1269\", \"example_1278\", \"example_1283\", \"example_1285\", \"example_1286\", \"example_1290\", \"example_1292\", \"example_1293\", \"example_1299\", \"example_1302\", \"example_1303\", \"example_1310\", \"example_1313\", \"example_1315\", \"example_1323\", \"example_1328\", \"example_1329\", \"example_1330\", \"example_1333\", \"example_1334\", \"example_1336\", \"example_1338\", \"example_1340\", \"example_1341\", \"example_1342\", \"example_1351\", \"example_1352\", \"example_1353\", \"example_1356\", \"example_1358\", \"example_1359\", \"example_1361\", \"example_1366\", \"example_1368\", \"example_1370\", \"example_1374\", \"example_1375\", \"example_1385\", \"example_1394\", \"example_1401\", \"example_1402\", \"example_1404\", \"example_1406\", \"example_1407\", \"example_1418\", \"example_1419\", \"example_1421\", \"example_1422\", \"example_1427\", \"example_1435\", \"example_1446\", \"example_1449\", \"example_1450\", \"example_1455\", \"example_1456\", \"example_1457\", \"example_1460\", \"example_1461\", \"example_1463\", \"example_1466\", \"example_1467\", \"example_1468\", \"example_1470\", \"example_1473\", \"example_1477\", \"example_1480\", \"example_1486\", \"example_1488\", \"example_1489\", \"example_1492\", \"example_1497\", \"example_1501\", \"example_1505\", \"example_1506\", \"example_1507\", \"example_1512\", \"example_1514\", \"example_1518\", \"example_1519\", \"example_1521\", \"example_1523\", \"example_1524\", \"example_1532\", \"example_1536\", \"example_1538\", \"example_1540\", \"example_1541\", \"example_1544\", \"example_1545\", \"example_1549\", \"example_1557\", \"example_1561\", \"example_1562\", \"example_1563\", \"example_1566\", \"example_1572\", \"example_1574\", \"example_1576\", \"example_1578\", \"example_1580\", \"example_1581\", \"example_1587\", \"example_1593\", \"example_1599\", \"example_1604\", \"example_1609\", \"example_1614\", \"example_1617\", \"example_1618\", \"example_1619\", \"example_1620\", \"example_1622\", \"example_1625\", \"example_1627\", \"example_1628\", \"example_1630\", \"example_1637\", \"example_1639\", \"example_1640\", \"example_1641\", \"example_1642\", \"example_1647\", \"example_1662\", \"example_1665\", \"example_1666\", \"example_1668\", \"example_1669\", \"example_1673\", \"example_1682\", \"example_1684\", \"example_1691\", \"example_1692\", \"example_1697\", \"example_1699\", \"example_1701\", \"example_1704\", \"example_1709\", \"example_1713\", \"example_1718\", \"example_1728\", \"example_1730\", \"example_1732\", \"example_1736\", \"example_1741\", \"example_1747\", \"example_1753\", \"example_1758\", \"example_1760\", \"example_1769\", \"example_1780\", \"example_1781\", \"example_1784\", \"example_1789\", \"example_1797\", \"example_1798\", \"example_1799\", \"example_1800\", \"example_1802\", \"example_1807\", \"example_1812\", \"example_1815\", \"example_1818\", \"example_1819\", \"example_1822\", \"example_1824\", \"example_1825\", \"example_1826\", \"example_1829\", \"example_1830\", \"example_1832\", \"example_1835\", \"example_1838\", \"example_1840\", \"example_1843\", \"example_1847\", \"example_1848\", \"example_1852\", \"example_1853\", \"example_1854\", \"example_1855\", \"example_1856\", \"example_1858\", \"example_1859\", \"example_1866\", \"example_1869\", \"example_1870\", \"example_1881\", \"example_1884\", \"example_1885\", \"example_1887\", \"example_1890\", \"example_1894\", \"example_1896\", \"example_1897\", \"example_1900\", \"example_1901\", \"example_1919\", \"example_1921\", \"example_1924\", \"example_1927\", \"example_1931\", \"example_1933\", \"example_1934\", \"example_1938\", \"example_1942\", \"example_1943\", \"example_1944\", \"example_1954\", \"example_1956\", \"example_1958\", \"example_1961\", \"example_1964\", \"example_1967\", \"example_1970\", \"example_1971\", \"example_1973\", \"example_1977\", \"example_1983\", \"example_1986\", \"example_1991\", \"example_1992\", \"example_1996\"], \"type\": \"scatter3d\", \"x\": [-13.0550882443163, -9.669528155567289, -10.341977661643153, -9.777758098775422, -9.538381004071574, -9.615076018579474, -10.083167621073512, -10.912753662980855, -8.60625512429842, -11.267348544158004, -9.673121177542154, -9.920150913143344, -10.267890558574914, -9.606114588821361, -10.504752008656531, -9.740273899597142, -10.551994195272533, -10.475814920428823, -11.950728511523858, -9.955023863679806, -9.38259840174936, -9.190492562842465, -10.324780613476287, -10.39627506930628, -11.147552674836396, -11.986764457376369, -9.677978182103306, -10.561973006571918, -9.656189472602408, -9.435511703314129, -9.025261998285377, -8.874965658853155, -9.782259768102689, -11.594976593729417, -9.686222975260154, -10.290283191303228, -10.487236249217663, -9.687144871127028, -11.200993671771823, -10.158368642746598, -10.505068144001106, -9.588887094700866, -11.585104112005858, -7.544568015501955, -10.335454620322944, -10.32007554234061, -9.83378596195364, -10.214658640917623, -9.889002541176522, -10.200450546002422, -10.841773170506915, -9.627694850360415, -9.948478462747383, -9.81179341285229, -8.903530501444886, -10.358211809498853, -10.098178221202536, -9.927936387600585, -10.542805944873834, -10.878849124206166, -9.782703133841615, -9.992265907414582, -10.724466265910499, -9.396792408044252, -9.534255951142544, -9.665544178073562, -9.833283576379364, -10.568993598222182, -10.56426675466598, -9.748295280439145, -9.544303545580052, -10.314150785899468, -10.75895010936025, -9.829752674715015, -9.337841412074814, -9.533006377958156, -9.970606454220134, -9.923315784605858, -8.523450059313696, -10.71052445571831, -10.8137594098045, -8.566814517625561, -10.724577808351892, -10.974719854567034, -9.35196219803411, -15.21828817578275, -8.330755827702415, -10.227674980899604, -10.683173291145648, -12.492361706813561, -9.057548737250995, -10.521701786989953, -8.566178574930905, -10.450970106054362, -10.587068086525047, -11.449216401359973, -9.778116916388829, -10.091479286008061, -10.466737989988708, -9.715381466015288, -10.159441184168001, -10.075440584238207, -10.281293108432354, -9.683195854281303, -10.003570365127345, -9.373615781249331, -9.712339773298268, -9.722954105508217, -11.12774168222989, -9.56726105083854, -10.748840094301046, -10.552397939128625, -9.487648716273789, -9.789713296093508, -9.812251693327394, -9.670885762614466, -8.999230828881181, -9.395956431679886, -10.267346334157212, -9.904240113745523, -10.321693934890332, -9.609459565759257, -10.177728037720348, -9.348251998951524, -10.43948946282867, -9.332713753088543, -10.02175681753227, -9.77157655887733, -11.477828284388252, -9.183613457609479, -10.59039159648922, -9.502546192744518, -9.767465928316664, -9.53641750829498, -10.16928158057347, -10.868048742100482, -10.968318060024874, -10.667897314400875, -10.319787503740855, -9.843582855501179, -11.255001482665202, -9.513126973827493, -10.300149617338382, -9.686765405835821, -8.822093138449787, -10.248879320373751, -9.97541036411479, -9.866357359626928, -8.90138492268437, -10.097948791369241, -9.524906975763225, -11.35010461578347, -9.805112848202047, -9.548387783435247, -10.579118190530865, -10.935262094484116, -9.774591209754107, -10.590269756783002, -10.509610879393495, -10.855187590703387, -9.385657373511155, -10.665140959191538, -8.525274426821404, -10.352862678772249, -10.201757919015737, -9.545901507673504, -9.116215831782444, -10.561392513570677, -10.193549628735969, -10.20540200415922, -9.213223628661602, -9.957573171713548, -9.460148609709375, -10.494115130551638, -11.166030579864168, -10.283185319593244, -10.305728589755258, -8.683237364274419, -10.60129096423454, -8.28060333888793, -9.61370976419402, -9.761316077977005, -10.101990906818788, -11.09892348896481, -9.726749555884325, -9.263787384755364, -10.342365616628342, -10.45911216044001, -9.90899795349515, -6.836104087856725, -9.016370050607359, -10.541063949498655, -10.872412143201348, -11.761108622354334, -11.282792756878479, -10.302892156284614, -10.307050375563588, -10.058805847192902, -10.314563473716643, -9.960707219755923, -10.139063719029993, -10.196382208375738, -10.396281475755332, -9.858437465566038, -9.167332141074942, -10.267437270176034, -9.416009952658111, -10.02703868409736, -10.991178121599756, -9.865496339070686, -9.624686874510981, -9.231288997389308, -10.257450246223788, -10.082530684006906, -8.463615479502165, -10.315388533275204, -9.781588519462801, -9.987898027980494, -10.122263406778815, -9.960944961028522, -11.593835226106524, -9.690844064995675, -10.132296547075347, -9.13952200202551, -10.36890432911038, -8.433243855333522, -11.554376711966244, -10.662811148776191, -11.19863664476559, -9.863560784435286, -9.641842474467907, -10.944330529344672, -10.167473423856727, -9.531729295833793, -9.600407944670621, -9.852365468630415, -10.499469882088144, -9.627969678364911, -10.155520665384774, -10.499756442301301, -12.037786123125077, -10.849507609066642, -9.210768837323213, -9.775134084892978, -9.497729889151799, -9.798896098916758, -10.75873484544143, -11.02514468634354, -10.44224334453164, -9.887240424081607, -10.04212749514682, -9.59183344496896, -9.76875546027798, -10.250412641697467, -10.693710764306548, -9.542500327028211, -10.361957675663046, -8.903314124959811, -9.359054929296956, -10.117198977297862, -10.68786677838935, -11.100557343359156, -8.611600900689035, -10.796076473081984, -10.826234473293841, -10.824750030102097, -10.400568456649033, -11.06632146376951, -8.886002170193848, -10.15549109062209, -10.00498283908873, -10.756689487047288, -9.453360444584346, -10.043259452197285, -10.444053052087014, -10.657899531172413, -9.717526843088793, -11.70612633941226, -9.484717487166815, -10.51947385780226, -9.679633327975235, -9.525841247868327, -9.72595415668378, -9.72318189803964, -9.770440447891588, -10.804906110147373, -10.642595558950994, -9.90234294806474, -9.946655489024995, -8.047294137954363, -10.075247302877807, -8.18127614967676, -10.570769729653469, -6.971109610811896, -8.856235473608749, -9.81686190266339, -11.03423471577147, -11.289227866074302, -8.916420387375597, -10.209966584208368, -9.376353474888244, -10.638767731030638, -9.622208859224907, -9.714539500582472, -9.314590094906098, -10.0285816281688, -9.729601933507562, -9.567913002468577, -10.479240123460496, -10.54909863859999, -9.63148540829741, -10.755320826213623, -9.933645292216436, -10.164217600114407, -9.372548320215202, -10.18112462248308, -9.032758865013834, -10.964643531991703, -10.957452633867941, -10.012268633477838, -9.885173162297907, -10.242766165998477, -9.358172803777734, -10.169868659871433, -9.615930588638825, -10.515958004004373, -9.939460532886292, -9.936727128316234, -10.177367594855363, -8.506717224727023, -10.475067239177418, -10.069192679252163, -9.937299142692764, -9.230327026220394, -10.118432939029619, -10.589565022031566, -9.370953017585833, -10.891534788832928, -9.293147077164118, -10.508034928701704, -9.967111496642337, -10.190548533503815, -9.852669563482632, -8.277908260371714, -9.461190594170715, -10.629165322577308, -9.986362322987267, -9.55612496160255, -10.767225087573989, -10.944094890167927, -9.598945564125609, -10.397241414211948, -9.895655021551361, -10.661988209359377, -10.447178979998986, -10.48076825487693, -10.25074583738589, -10.941150965573804, -10.075517420632812, -10.412339588962991, -10.581193648425607, -10.680208426194879, -8.985982185248735, -9.082486706364353, -10.100039468291167, -10.586342468655008, -9.547836797767395, -10.309104428123671, -10.17632485253864, -11.539929164118377, -9.032933852929943, -10.899338673113274, -9.873134289348776, -9.942829021644537, -10.971952301855131, -9.934510637813966, -10.94643194576338, -9.620276405758904, -10.378987121829782, -9.720724059777769, -10.016596326109509, -10.20744815844341, -8.882349043860273, -8.858412756403641, -7.211154833574628, -9.967512912812394, -9.451016450663877, -10.886814547218888, -9.820854913766908, -10.062401563673207, -9.622165293925569, -10.349710168938941, -7.940873666410598, -9.403850788534777, -10.26678522858937, -9.01161652734604, -10.453763592343082, -9.530423761774824, -9.056053171608355, -7.657097644204699, -9.896948859015756, -9.589882213883262, -10.400918117605046, -10.816904757990654, -9.579792643798424, -8.80146885574351, -9.890719428079054, -10.97081879140702, -8.87351226400982, -10.0092157204185, -10.444016697847669, -9.741226890395975, -10.122757043396888, -9.953363426022179, -9.704335865171668, -10.074751884997037, -9.90503920172446, -9.254441962130969, -9.135991132736098, -9.874003326426209, -8.668807156711015, -9.984328452287516, -10.372030288684082, -9.963336657233443, -9.937388261409886, -10.815882323901347, -9.521780844465784, -9.740885879152458, -10.218384883946097, -9.200517723332146, -9.712422067823121, -9.981054462229505, -9.627841749504304, -9.453278747698423, -8.698941384922673, -9.454637775271069, -9.487624563070973, -10.330293969248302, -10.27186468935682, -9.555124252853687, -10.727400174010278, -10.690543383626773, -10.413606436088143, -10.271547922355586, -10.0776480582467, -9.387066249526713, -9.414155111224792, -10.034616538317822, -9.86440705022364, -10.357785264547397, -9.644921489121508, -10.2786385487534, -9.921968218634026, -12.090945532461001, -9.786084346644628, -10.144257397764017, -10.186537691096008, -9.133304714266076, -9.381824659238497, -9.762460448453252, -10.415178175945627, -10.95734642219846, -9.307397628170362, -9.711914764537758, -10.42970704436783, -10.54433757168074, -9.882152073199423, -9.405983426872401, -9.678137043563703, -10.330886258810011, -9.875871841241242, -8.006923289358614, -10.026443656165481, -10.562817950005742, -9.869962540127379, -8.14955034716221, -10.385811019767472, -10.82589794102554, -9.675348849767907, -9.192416865070808, -9.863815482538781, -9.50113288919829, -13.048927915471042, -8.953398945575605, -10.582030251721651, -10.209996859524516, -9.979275579080866, -10.13997894852523, -12.080858863349555, -9.776393460409297, -9.379785974818033, -9.837600126249823, -9.354385958799591, -10.634569819385822, -9.859124125748476, -9.193381180524465, -10.493564051358012, -8.056242394652728, -10.172352932773663, -10.385503829881289, -9.709706430389245, -9.102276411782572, -10.200268402635501, -10.854043187426663, -9.131981156977686, -10.091383231330445, -8.414700415362487, -10.130044018797804, -8.331734172346648, -10.194534828725825, -9.79185186016931, -9.216254823811681, -10.290454224338582, -9.362703654423967, -10.340829208397833, -9.768672651176955, -10.626332773534704, -8.556052405710167, -9.848571856326755, -8.93807080616903, -8.844298683216266, -10.777644194281297, -9.533551102464253, -10.117025070022175, -8.863754630337343, -10.332599365948937, -8.824603859171791, -10.693621977346275, -10.007601703630264, -9.056388661969855, -9.608613693702413, -9.217373460827172, -11.316276603681281, -9.99945888341222, -10.530608220455925, -10.111888183410183, -11.416825532194965, -9.605325144359384, -9.274131544689398, -9.230939618676764, -10.128087338865503, -9.517777090237917, -9.972086507098796, -10.429460818435, -10.449592535352187, -8.991533517514373, -9.280983585230492, -10.922791620743046, -9.848921891610292, -9.834188778694081, -10.443280445744913, -10.111184094086594, -11.091663742522982, -9.660578636838915, -10.14519382297567, -9.830159809296262, -12.489636510624674, -9.504812875579882, -9.654331609049681, -9.472251911428984, -9.734600788667835, -10.608385350254077, -8.256254011241976, -9.626808340711639, -10.658605831409716, -12.467110483967947, -10.173680738003812, -9.427930069741702, -9.635801355427294, -10.168234577097742, -9.774627221016837, -10.17753519307781, -10.760102672358382, -9.946716679777712, -7.316454181687924, -10.173138329088756, -9.917203931660984, -9.635653983420838, -10.934871385243897, -9.903125966212507, -9.033022842428432, -10.289089799546455, -9.887876675902536, -11.32644788692169, -10.237408995721806, -9.092657115195598, -9.708037271130854, -10.180623656451555, -10.253985006156666, -9.365929949453745, -8.426020125130057, -9.272943665035289, -10.652123155019375, -9.535427712194625, -8.546060431390332, -9.487468266530884, -8.850533284719269, -10.031342904341976, -10.080450234160244, -9.42521506669535, -9.613962188459617, -9.878908554227262, -9.227414276141221, -9.61325159420473, -11.272648984252141, -9.404085604206317, -10.110800262382224, -9.399328430367081, -10.104561342199878, -8.639367729922133, -10.109722152467011, -8.74766287565963, -10.518314761094526, -9.479911754515618, -10.438675591087682, -9.97956922408287, -9.785097976212155, -9.579935498439395, -10.756144420676469, -10.99424285443491, -9.963242608649209, -9.816287030366636, -10.028383559832054, -10.39974590755408, -9.869891509974753, -10.868625154121048, -9.7725855553961, -9.993906466731556, -11.33160351316699, -9.794694865583914, -9.437431671230017, -10.33321565990561, -11.630834989439684, -9.583983598741032, -12.107514662296243, -11.575001312418454, -9.754967340998352, -9.60935257205841, -10.26076538953044, -10.065954730929763, -10.303712475069291, -9.57961617405423, -10.495973937533721, -9.961890156228566, -10.966764379303607, -9.737934452816413, -9.363384356100738, -9.52668091920873, -11.473168888485715, -8.886987170965778, -9.254048988411228, -9.10584935218152, -10.918850339409563, -10.27656908486075, -10.442127833434393, -9.53360934344321, -9.756314617855473, -10.412820520677112, -10.445987536355558, -9.830269964040909, -10.149792491891818, -11.467134706797314, -11.033016807408028, -9.176668143222091, -5.7791834702076255, -9.27308356529294], \"y\": [-10.716149552642973, -10.88918812244048, 10.458003403468066, 8.719042910759581, 10.198343996647663, 9.659147800698202, 8.819046194607706, 10.750471109216289, 9.387445565726757, -10.31550968982204, 8.673058692788539, 9.385007105158522, 11.790815217683656, 9.438667148016302, 8.92448628991958, 9.235562878383025, 9.757334497849158, 9.492584621261514, -9.824259834008732, 8.330498287185724, -9.377757111246982, 10.736964278745894, -9.92095903118054, 10.594719892732888, -10.529844751789687, -9.920604738102394, 10.51389922991239, 9.554182188445619, 9.208645041156455, 10.093609759179923, 9.4629978323369, -10.616691347022613, 10.16943783820688, -8.289357187015458, 8.805889148583177, 10.155819485888001, -10.827836193361124, -10.001637555400839, -10.530045662088245, 10.906249478408586, -10.498499975205542, 8.954754896918347, 10.607336814529175, -11.5943155957535, 7.147990698340781, -12.107710859449153, -10.350893708976852, -9.505173957495945, -9.737581787066242, 9.19890821957408, -8.648362651823593, 10.101438411596272, 12.343515837546812, -9.904043539856282, -9.074091079445257, -9.432020691856232, 9.903547806358768, 10.235486363327036, -11.217411690647783, 11.201800591373871, 10.970945663955028, 12.086771161691573, 9.14814374129879, 9.370017513662308, 10.075503392654689, 10.971089677023418, 10.44192924917603, -11.070647832989858, 11.03706118613772, -10.647585820313614, 10.797606172894476, 10.911795394714705, 9.60933048288672, -10.504974356319444, -8.526031962593166, -10.738372570773368, 10.004015918669777, 10.128780110761927, -7.844360424810427, 11.0613712130119, 9.754675607918651, -9.795723456556535, 9.94209589674869, 10.081437852421605, 10.837947074629385, -8.374768473836003, -8.166438639707186, -12.338962859221773, 10.362390246639231, -9.253725112102094, -8.91018324730704, 11.590518524969873, -9.659098484842632, 11.043160163170219, 11.256842358050987, 10.260491143487792, 12.142748234140766, 10.063723418279729, 9.461891330907964, -9.89795009294608, 10.343731753216336, 9.030831682889788, 9.88209769254313, 10.626466198968465, 9.4538082896346, 11.08982493952891, 10.145688324770532, 9.7215881493732, 9.470201431590526, 8.715552515630193, 9.083578615255226, 11.730795117772356, -11.059639280937839, 10.01109689186039, 10.355190753942436, 8.42458081324716, 9.122448339968967, -9.580683293635948, 11.26365860342329, 10.561649434855525, -11.713803245359717, 9.38775674032746, 9.787409678191601, 11.036424276890791, 9.368676470038423, 8.769960683299193, 9.85338466076444, 7.896423271935715, -13.149271145432005, 9.704377403763232, -10.346251863011167, 10.741665099168737, -11.194593059446564, 8.405915011908302, 10.630274118310865, -11.131453807936815, 9.790996020819287, 10.64470596764871, 11.786982886476775, 9.090676822305873, 10.244846056473355, -8.805804235157694, -12.602618734759986, 9.684415901369613, -9.773254851235894, 10.896204486472376, 9.37022739044231, 10.64358325871915, 10.762393376069559, -10.880742536089981, -8.55256861236568, -8.350242772918758, 10.024850208913056, 10.560821366941562, -9.066086839708321, -10.45128325840994, 12.000920870289203, 10.259399434381246, 9.255589549092043, 9.46040483353375, 9.392916745954587, 10.131567583610158, -7.592688521287608, 10.82605507797423, -10.614877725123973, 11.406054690621446, 10.833395235279948, 10.193171645433608, -9.825152236904527, 10.850995113361664, 10.292105160289093, 10.897935663126047, 11.419347904106026, 9.497449658586339, -11.2387187232735, 10.294063582677435, -9.295322776386056, -8.718497348049707, 11.613407632490057, -9.23819164765716, -11.44332193835385, 10.123010885242367, 10.251816969840212, 9.747088156337828, 11.00755884484612, -9.293154690706174, 11.06837082164014, 11.391301550037612, -9.078628795830774, -10.501860903205156, -10.75486939041951, -9.291503218237825, -6.995994364950569, -7.965696999147351, -10.482241746527116, -10.400744688989425, 9.658550509812887, -9.15186561455829, -11.82884333401295, 11.112122913107646, 10.341264130058368, -9.341620283592237, 8.319769273401569, -9.675424337122491, 9.022730897799294, 10.509907493162785, 9.212956224363609, -10.827788888397556, 7.347546640608671, 10.495973977788564, 9.770698958049135, 9.854585711309527, -9.900143435850152, -9.989263603141532, -9.848329998332826, 8.720990425160416, -9.517588617575221, 11.118207282580165, -8.880319096207828, 10.416564647430246, -8.504091092458037, 10.096813379983269, 10.119107285582428, -9.026715497973274, 9.715262932438739, -8.771332957814547, -11.345696722023735, -8.266207042954171, -11.614758624649376, 8.540226417771493, 9.069074187948676, 10.321753356609701, -10.61908160649201, -9.128687516039768, 10.50521841770923, 8.388663755566748, -10.260475779258163, 11.146407147631022, -11.16677821491462, -11.615817418537109, -9.813126354596715, 9.831084027925664, -11.866159925675312, 11.0157387773703, -8.298006052819789, 10.103732469850597, 9.306894794745785, -9.315343051194482, -10.678625501052727, -11.465224027958488, 10.958808874532723, 10.133894856149364, -9.125723557971677, 9.757736879474628, 9.105339628292432, 10.47888241546265, 10.657303825017316, 8.785552579708233, -9.082330530638568, -9.15040537702842, -8.881649671567839, 11.420743004886987, 10.195341647671311, 11.516018570649553, -9.138279164281847, -10.72348561586323, 9.898306356119392, 10.716703219647847, 7.684073080577006, 10.507020864818514, 10.637770801470332, -9.328871367758008, -10.020921717130475, 11.055049209695683, -10.537571021800858, 8.711300700075277, 9.155593971443155, -11.556178060035279, 9.57382838479664, 8.96843735429041, -9.819109201156191, 9.051230011147721, 10.489153538103762, -10.368149156814535, 10.771453849713222, -9.487516048593005, 9.692018034997737, 10.786408044144688, 9.170273792302652, -9.742428567133377, 9.468476054457556, -9.167241961931687, -12.84955449776864, -10.1805060195119, 10.20727133604668, 9.070755906700882, -9.978951062843214, -12.003720034095727, -11.905527445413055, 11.823380166666558, 11.488183090444148, 9.075432865013891, 9.798143001636728, -8.375099184601922, 9.621159405680446, -11.131801381855846, 9.569707204680055, -9.331174128548154, 11.277104611810314, -9.198471527242583, -11.331540781926622, 9.98478192596779, 9.298389642010642, 9.666001465759043, 11.877381412634874, 9.272231502873685, -8.43489544523697, -9.404543112327326, -10.270725210115595, 9.089746265777269, -10.400736370362567, 8.743312177022702, 9.622139747294185, 9.532118965116357, 9.751563103994043, 9.890607668522593, 9.8631488728916, 10.327436740922055, 10.313626525202036, -11.109315798736855, 9.820167777685215, 9.846325097801449, -9.168993823527378, -10.059326110528984, 9.247012538062728, 10.826848913487432, -12.78167479276067, -10.31088895760579, -11.622086215528835, 9.514607556971571, 9.504591829798178, 10.922909117086878, 12.211421124562168, -11.468258225921998, 10.854714007088733, -10.506210486363647, -12.708243575352018, -7.177282403451482, -11.427772407638134, -10.444491502616357, 10.635811174328632, 9.59984116997707, -11.488790778245194, 10.028175980224045, 10.523005353978595, -9.410813035950266, 11.074742466658732, 8.022688828160371, 9.087628693162433, -10.538447988053202, -9.46565248801353, 10.37707034562115, -9.988433190697704, 8.693932965612943, 9.65038174771369, 10.611310100553425, 9.714292305945955, -10.68161329402121, 10.415689167951975, -10.853980354077695, 11.584340666093285, -9.245999690435278, 10.75663687800629, 10.215369677898776, 10.127998631188802, -11.114997193045113, -10.848377199840922, 9.814909295100275, -11.091640632034926, 9.050473746858955, 9.76596817960492, 9.15537998614071, -10.162592358634392, 9.830277903171371, -10.040045891975277, 9.497899786534736, 9.503890609098223, 11.633017485396836, -9.754737033126355, 10.770880598885244, 10.439845581016804, 11.745118047727402, -10.785670687996674, 9.38023241018898, 11.035576536891902, -7.051823497614047, 9.926603965381625, 9.510490615926019, 9.365630605959913, -9.529678056868173, -9.159729610339273, 10.481285644697866, 9.168994987143577, -9.95002427149751, 10.663691086597865, 10.557581148870531, 9.726001105234925, -10.208467719275607, -10.855241361905865, 10.841618851868068, 8.928827999032427, -10.875737409488409, 9.816529670372443, -10.548774058993912, -10.167242395400773, 9.718980572927803, 8.545100206489295, -10.31167356490274, -9.40695892148088, 9.901079301227469, 9.315014564865987, -8.447912878815982, -9.320360244453012, 10.65451213268685, 10.558661088208703, 7.785115326647067, 8.653430547505538, 9.925656388542421, 9.639838885825789, 8.026751883750734, 9.03033622981705, 7.995444030362939, -8.355685831524246, -8.558460773978169, -9.981351902220954, -8.024509537946875, 8.241092780783653, 9.9768113385966, -10.391851782330088, 8.927795660867215, 9.53646322253575, 11.446682267342124, 8.932596923966397, -9.944088856048168, 10.34177681932186, 9.793332674190621, 7.469016891949357, 9.556834092002592, -10.309823655835634, -11.397849142360283, -10.618186049723164, 11.271128462425645, -10.980691223044024, -8.476837485044934, 11.316722065831529, 10.103828583742448, 9.063088953664417, -9.383721202384798, 8.867827781787966, 9.404291927394556, 11.368344183635397, 9.45880009496142, -9.973891325927948, 8.676863248671864, 9.36840477316232, 9.100862881303868, -8.538526609246404, 8.843052348492195, -11.011616839341468, -10.849353496414837, 12.390838072672707, -11.033782510352475, -8.837829815210686, -9.876513101699217, -8.590307491498923, -11.166355083496395, -8.96213258188472, 10.913720150289985, 7.2419989489298535, -9.90496448566622, 10.581418749217875, 10.111788087522754, -10.578075651040727, 7.614186396866692, 10.000210030722334, -12.220999555023026, 8.487937157168977, 11.66120860463603, -8.96321707264206, 10.110317114610565, -8.331922797097981, 10.103077238896097, -10.667831904374657, -9.166443252936968, -11.334054737094945, 10.523112585905796, 10.85530676197388, -8.073400578400374, -11.312302401930244, 7.498925666488656, 11.107269023449017, -10.527144701813059, -9.105577455184763, -11.006165588940693, 8.278562688864254, 10.15502818239337, -9.940460581669866, 9.73083554267237, -8.26915280773013, 10.017950721865828, 11.284450144410597, -10.671631178278144, -11.08911040300038, 10.767468190833737, 10.054041971602885, 9.65795637898057, 9.862207909300409, -10.166711177686436, 8.047224253720433, 9.851656822985223, -9.073741933786684, -10.249129745179417, 10.265261851003212, 11.106401994604926, -10.647078600421992, -10.672838068181342, -10.973390973494173, -10.6987000798907, 10.14757553310878, 9.31025366849986, 12.10179750575439, -9.897896441978308, -9.5413268132617, 10.889296916803746, 10.93443466257807, 11.231870322784195, -10.766037547196188, 9.763481034126256, 9.874499147392353, -7.947232122547174, 9.683852193165945, 11.95949602840915, 10.396612421309598, -10.085756956488801, -9.466407006753158, -8.540880974091507, 10.621390140838992, -7.105184787747698, 9.473619204136078, 8.854951013041672, -12.084893900381289, -10.635422407481617, 9.743914904525955, -10.580014893114809, -9.53367021462624, 9.915619256788611, -10.835958811215068, -11.853570466717064, 9.928953012411242, 9.766496382028738, 10.581083506744033, -8.869889640324821, -12.093491470496094, 9.589060531158632, 11.209259326092248, -8.039318599702186, 10.151371798146142, 11.188723480682047, 11.177138662599733, 9.570210263404412, 8.075705723492032, 10.301331563673937, 8.875610200560043, 8.793628847936029, -9.711848780187234, 10.185399874844848, 10.52192106117407, 10.679512814777079, 8.142090443155784, 9.765973776439637, -8.878370769476522, 9.928992758831766, 10.634356420445831, -10.087495654469421, -8.704549555595511, -7.651877438685495, -9.922490967762823, 11.087498213715362, -9.255190160226178, 9.198136877421192, -9.003357344898134, 8.133998965860249, 9.30109045896339, 9.305596654920109, -10.532614234593508, 10.044144494214908, 10.092203684743136, -9.750650673860983, 10.875645073134883, 9.725248264308947, -10.617290232593344, -10.64720141494558, -8.464287443582862, -10.639227909380756, -9.256140132288039, 10.093326414030424, 9.644662163655342, 10.144504277309915, 8.139997548000363, -10.884514500994081, 10.895552436826442, -8.45000170358437, -8.766126458492378, 10.858787769848263, 10.088649150720338, 12.293351132072015, 8.852093096989831, 10.018023934768308, 9.358048494548678, 12.216680082981197, 10.942287810731523, 10.858654544741263, 9.35768325544182, -11.341190962317803, 10.826548097704892, -10.111708148171395, 10.354938362258535, 9.599092442243121, 9.404216257581485, 10.44927784715207, 10.512575683915639, 8.190630588426105, -8.313193996681916, 10.558104100759989, -11.345708127478536, -11.636925355647334, 9.15833415133918, -9.835391714910891, 8.972918312040669, 9.034759232413915, 11.482740574790503, -10.10711277697248, 10.194477713959989, -10.583814811712255, -7.763398624797173, 10.963452888994187, -9.110606368493976, 10.58902881767908, -9.487112924492, -11.304812162559134, 8.429105387708036, 10.910059678320676, -10.25042985245187, -8.558783779024791, 10.621954003632831, 12.676419092851047, -9.204161636618247, 9.126643812169696, -9.861356906810537, 10.66001687015919, 11.393329933062304, 8.904608559145688, -9.157992045400725, -7.485513545319533, -9.77498372246816, -7.7459103974161465], \"z\": [8.745789601862171, 7.158400186377417, -9.247494466182351, -10.293203918735216, -10.150949439316527, -9.827789468986055, -10.534715372422877, -8.354824446183644, -11.351528202785204, 9.311778520953764, -10.438796704308487, -10.187273192057777, -9.891001332702222, -11.3930641989846, -8.697032643271582, -10.509981731386649, -9.073080009280243, -8.885396942270027, 9.621322384420193, -10.160136280694054, -9.99753192691284, -11.200093630838136, -9.8933857651015, -9.395752721464994, 8.137303660454297, 11.05575998576117, -9.39371908641753, -9.961659486871929, -10.254541115369195, -10.484992647569733, -10.666243109172415, 10.201239635332511, -9.999252887574988, 8.103520810913576, -10.441728852317965, -9.519508748434598, -8.155662289372977, -10.314212721324871, 9.382087441624652, -10.347842197493033, 10.751215679450038, -10.851176131400878, -8.832721547262732, 10.66044378693355, -9.748154336126428, -10.543067078799023, 9.935733330217458, 10.413659547787077, 10.031276664047468, -10.177935886260109, 8.973171799944431, -9.506259158910837, -9.35942208424523, -10.117123951740204, -9.246466928968754, 8.725390179396452, -10.170967960266216, -10.042456998583985, 12.4658832240028, -9.05679847343816, -10.067157958133746, -9.71578358396437, -8.634319886361933, -10.176631093986803, -11.487021564582136, -10.168333775552359, -10.339264874013733, -10.273071239373458, -9.780410236629734, -10.068529483409089, -10.774691190148902, -10.596102447482199, -9.496959238653123, -10.002164369176999, 10.60600016261819, -11.379864090334225, -10.748040512579484, -10.645551239700078, -9.842422751920747, -8.353952674572383, -9.415735544695536, -10.515570900078508, -9.120541709355622, -9.044935696936149, -11.059803847064705, 8.06584246002939, -11.44740627484091, -9.477412902564938, -9.694634611299643, 9.816336695145214, 10.91027481408123, -9.432100734432785, 11.184332884441147, -9.240395473234354, -9.332855913340115, -8.16248165758845, -9.393202411301273, -9.943587772219189, -9.510012288381004, -11.141525765481974, -9.494025269915154, -9.517037038838964, -9.638465816127606, -9.953183990329498, -10.197380970007611, -10.868485869979386, -10.891956626941647, -10.66515820518668, -8.848009794037866, -11.00146267891643, -9.164488538108426, -9.376319930279097, -10.89230413220259, -10.203403901559795, -11.032846808880244, -10.178948989793028, -11.586873786639517, -8.141825837355963, -9.33107072340622, -10.586892078333866, -10.977496598550653, -10.8415770528818, -9.223562807167777, -11.268434252240851, -9.422220790435441, -10.700402242718576, -10.215778631350224, -9.457871046404346, -8.62561595691244, -11.674946852955111, 8.680949916952182, -11.527509234333507, -10.31746205139367, -10.465012627896407, -9.39433696791512, 8.861416815481144, -8.944616079747382, -9.676095236617142, -9.321084805977177, -10.520636859847597, -8.046629591273765, 10.245114763868708, -9.58270131873681, -10.70511948018215, 10.356371486661786, -10.200306785910744, -10.770747547166575, -10.181418987358624, -11.264592474943953, 9.580466121371867, -10.491582480300547, 9.591885695310994, -10.704275237540665, -10.7331102681871, -11.078140344175216, -8.45722465783254, -9.7533799499968, -8.530333765627773, -9.685347739674512, -9.784908254679651, -10.787318584871091, -10.369378163318963, -11.58750210609391, -9.6954121073276, 11.3741067861326, -11.019411035605396, -10.424588296348125, -9.532428451191834, -10.7244668394209, -8.982436578388887, -10.642183372571482, -10.133264488807873, -9.811988187190991, -9.133319990129895, -9.382507294326018, -10.073464351500013, -8.576898907443784, -8.85635737764218, -9.249594604875067, 11.345386276028645, -11.086940324048767, -10.214876401784862, -10.236278154417851, -8.140955629348667, -10.077292668614719, 12.435651370460368, -9.338889376586826, -8.361693930430162, -7.903114659563457, 14.35199750310542, 9.044964871901708, 9.274701082941803, 9.86511808538759, 10.10243742176826, 8.588666901829109, 10.282346727329612, -10.0081801924711, -9.58448279044976, -9.819786325570085, -9.441081384461029, -10.107365665723021, 8.433565940680783, -10.136153353269469, -10.1355033884624, -10.95907808682427, -8.917468396629527, -10.21073967032745, 8.172413407074993, -8.972952540325275, -9.664826928433438, -10.551674844083092, -11.097746016816362, -9.89783088829122, -7.887968897085204, 12.160997542440628, -10.200923566057307, -10.79257699993426, -9.617139832926783, -8.620777007384474, -9.791862945969521, 9.181708881902104, -10.356161094297915, -10.398564635583595, -10.66943495395878, -9.333537494897639, 11.281040394177271, -8.047084385585503, 9.785577566722875, -8.874575242590517, -9.490048921340444, -10.643567115455342, -8.292307967973086, -9.739818443738356, -9.431894649437528, -10.342601092620937, -9.99590316093207, 10.684933833885536, -9.6474120346935, -10.270286086282546, -9.643529867631365, 9.78115744532872, -8.26278652758029, -10.695742736698028, -10.06357776692326, -8.001985162351449, -9.80132083367861, -8.882998092032775, 9.34548875352372, -10.090975604156531, 10.471419638313002, -10.02256542212564, -10.7470479601506, -11.512519039358637, -10.19009266935986, -8.38337519267167, -9.956156001494236, -10.055666720156086, -11.54658081994166, 10.353420686992559, -6.046158415411275, 11.454854608909594, -8.630752178452317, -11.51094129196149, -9.863701063224616, 8.550157307541648, -11.035049044835365, -8.983786811928196, -9.279524630745842, -11.114866615612877, -10.332651316853982, -9.766549294825602, 9.996674949348828, -10.266341454410957, -9.345086157769444, 7.914495264064829, -8.123120855110354, -10.063104247169916, 9.576196110208206, -10.374373523983435, -9.875476450157493, -10.007573623796324, -11.367571660793962, -10.709990593903425, 10.192142091359216, -10.896573532854115, -9.840911348311106, -9.074950858595267, -10.559927801519308, -10.21382987038688, 9.368717395270828, -9.713083958490913, 10.880750824913239, -8.059569734425232, 12.502781700513356, -10.684911731060884, -10.013170150134883, -10.08135060499307, -8.671989037456301, 10.338398401725398, -10.293828182614604, -10.917187118022367, -10.028879200304944, -11.38902060560279, 10.093331476976063, -11.52098925140811, -9.485980495359815, -10.124383997142159, -10.351196762889202, -9.695897841969698, 11.68070086296171, 10.452059226111997, -8.724334127158802, -10.888084427686902, -9.846276186493435, -11.109373002053148, -9.514141066101871, -9.1743354332799, -9.612986421273796, 7.540107426432847, -9.503337050000257, -10.898931883316239, -10.420640874304144, -10.500413309804408, -9.84988406657767, -9.755475957609969, -9.806630676302962, -10.371366565894919, -9.957447248699097, -9.981455568882609, 11.324086780624619, -9.843434773694188, -10.086027553980578, 11.596073189465123, 7.361568772766718, -10.317966587686206, -8.968172392904474, 10.360748852296288, -8.630610180697103, -11.36099125525466, -9.627770058189782, -10.120218552113613, -11.026852761472487, -9.325124832429609, 8.98925017869059, -10.449684449332128, -12.113500417958395, -12.094676200590005, -8.825348880875026, -9.959190315718388, -11.271409431917425, -10.460950702222778, -9.60144096750002, -11.851957995857177, -9.641042776873693, -9.180240154588478, 9.80847694022804, -9.996404073714327, -9.404780275942098, -9.346618283892937, -11.079836037236698, 10.234442227590913, -8.412031234523218, -11.534139668061105, -11.89824704535632, -9.118537808080712, -8.914542188794018, -10.596353535330747, -7.829182313877295, -9.942752356499735, 6.0045955464308935, -10.822784906801946, 9.432980139209775, -10.13392924540745, -10.125064707518947, -8.65436178652624, 9.064683835956627, -8.29818879634468, -11.023115182036705, -8.29692098944246, -11.273425623915855, -10.339537459158725, -10.060339239105286, 9.136690013513057, -10.437755652851903, 12.426331586779277, -9.705864497165624, -10.303249730983431, -8.842431598935946, 11.805804261903926, -9.522735583634436, -9.199363358919276, -9.373066254369899, 10.450517520077033, -10.313378761601605, -10.962688326734956, -10.689589088962062, -9.482225332966104, -10.517780028526303, -11.411096367318386, 11.275287574864302, 8.93688166914238, -10.433428787276242, -10.152104106456106, 10.162898679806009, -10.319836956496738, -11.586314003237725, -10.01950605467256, 9.714017604854158, 10.012509055507246, -9.884472420014502, -9.253584291110315, -10.108558684199217, -9.419079245678493, -10.979330191209845, 9.831437687125925, -9.294608644014362, -10.439474952240216, -10.960792864312468, 11.134734055384891, -11.574790689735726, -11.490170736909802, 8.887556408266203, -9.149951043268102, -10.588751557590285, -9.663071060548935, -10.005833604985094, -10.730774968126118, -10.410234046194335, -9.746282249649157, -11.508115225552533, -11.180847505286764, -10.775378937133114, -10.099146643577665, -10.156745461072461, 11.630434765996172, -9.141371353347672, -10.353393536601052, -9.590249065842995, 9.818206853272391, -10.321545055963828, -9.747250693064178, -8.422026044879813, -8.994279093932906, 10.754361191407567, -9.562114358741935, -11.19755180465356, -11.050748323270813, -9.97117802865256, 12.184139169870319, -11.586522980294959, -12.537909398622546, -9.24432071695717, -11.014950336874094, 9.736333686703277, -10.0283421161714, -8.99967824787888, -10.052982814085272, -9.768782449046263, -11.271396847702661, -10.249952101847407, -10.038324461820633, -9.558089482251688, -10.767067118248162, -10.924918392299844, -8.865564809226788, -9.34808150471462, -11.377710427457542, -9.810327424687374, -9.091152189392163, 10.75557803389818, -10.522480148756934, 12.7037044540486, -8.28228983583283, 11.467307228630778, -8.525850778207168, 12.216284026517226, -8.084710970326672, -8.781552874002656, -11.076271979110546, 10.771119864009325, -9.93115404365544, -10.340678977642508, 6.786528710481192, -11.861533232425282, -9.382410676230492, -10.119824554129478, -10.381028540520555, -9.74898012796876, 7.221584792139421, -8.990505037425745, -8.626424217048704, -10.549783204098393, -10.277455966226563, -10.269176253488013, 10.952100226104712, -11.633653989734166, -9.66268372814199, -9.839206245865388, -10.411695915564405, -9.70995027504241, -10.012986194542034, 9.93022832934528, -11.148350391946188, -9.86067522430307, -10.890449199475679, -9.95683822089477, 12.442394619907004, -9.601271630920738, 11.205135410960802, -9.885989137429055, -10.210675118265232, 12.242618514095994, 9.33020492822672, -11.526600091401255, -8.642150518471619, -9.323477450950593, -9.204323487604391, 11.373424377541959, -10.439798768804382, -11.634229016416874, -9.400341603212611, -8.701581224111534, -10.514037279804649, -10.236483043323977, 9.495910666398727, -7.029535944187465, 12.155650311543864, -8.548676608391325, -10.135810035360318, -11.065457303710865, -10.001479241805379, 10.833610690011154, 10.398888490810805, -9.93190409349966, -9.341133041564, -10.037553293129886, -9.368774640863954, -10.600800995654197, -10.722761336250842, -8.580006371762845, -9.803183833212142, -10.253001518348237, -10.3557532411545, 7.123685497316224, -11.024650490076118, -11.647829622690002, -10.785765550079297, 8.223058753330173, -9.578049694981408, -10.678033755565218, -8.66378145186717, -11.365053770364234, -8.932250735861407, -9.590129049517094, -9.666756550796878, -9.379693925438023, 10.69362875616199, -9.93051927301569, -10.098166522215482, -10.266253824135655, -10.86174823520858, 11.381610519526744, 10.45475442211446, -11.01621483653248, -9.193904361928144, 9.795190928359585, -10.286254197141847, -11.595706145685341, -11.099157060048954, -10.376005057737284, -10.698961659159162, -8.912293086087393, -9.344498386630294, -10.139732391865333, 11.94622789536227, -9.615285828758193, -10.575901709050036, -9.839842610016484, -8.294670308217473, -9.68375711949917, 8.933709924581347, -9.836505388136711, -10.328520735505606, -8.254586101205307, -10.286976848745734, -10.665595858649816, -10.097214554257118, -9.865608516927606, -8.402142138417517, -10.578649909268577, -11.558512381389233, -12.060812456015434, -8.715562124827597, -10.354596042512304, 9.564549441954812, -10.413006208710987, -10.877247595514365, -10.784046927144574, -10.454346944332976, -10.585062202643421, -10.9520223907837, 10.881943603603752, -9.31598449435264, 10.20485828948726, 10.719215484035232, -10.035898735900084, -9.993575636614862, -10.26465750226131, -9.326087823135747, 10.262184335705985, -9.54725555927956, -9.106592920948449, -10.550339584036653, -11.252001405269409, -9.974900355222056, -9.559368529078224, -10.568455959716342, -9.720565189075138, -9.018098069259496, -8.771473840369087, -9.133101677347033, -10.468707343986722, -10.449918510975833, 9.529506721843116, -10.234122748269744, 11.600207922709961, -9.75976473752711, -10.050630452512726, -8.953767354831015, -11.194238771216577, -10.472460896101168, -9.75580091334041, 10.542009524545085, -11.123027203777742, 8.251157944593452, -10.389736116632974, -10.081240252588271, -10.710032000404924, -9.675377801504265, -10.631993317488499, -8.729049676253949, 11.201545427591194, -9.79942886901531, -8.852450696498948, -9.312672048203813, -10.300752767358203, 10.325483626404248, -10.650548905609918, -10.249456803037553, 9.995390532125253, -10.533564250644202, -10.815077912742314, 9.942802678593443, -8.166279904406151, -9.969534733989791, -10.327651041809638, 9.981512859758881, -9.930974133147085, 8.67823689169686, -10.33324291562229, -9.870979069602567, -8.877596854086933, 7.526498332254491, -7.7931206988837065, 11.140694311745486, -9.670926954688568]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 2\", \"marker\": {\"color\": \"rgb(44, 160, 44)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 2\", \"scene\": \"scene3\", \"showlegend\": false, \"text\": [\"example_1\", \"example_4\", \"example_8\", \"example_11\", \"example_13\", \"example_14\", \"example_16\", \"example_17\", \"example_19\", \"example_20\", \"example_21\", \"example_22\", \"example_26\", \"example_34\", \"example_35\", \"example_36\", \"example_37\", \"example_40\", \"example_46\", \"example_50\", \"example_53\", \"example_61\", \"example_64\", \"example_75\", \"example_87\", \"example_89\", \"example_91\", \"example_93\", \"example_95\", \"example_98\", \"example_103\", \"example_112\", \"example_114\", \"example_116\", \"example_119\", \"example_121\", \"example_122\", \"example_127\", \"example_130\", \"example_134\", \"example_143\", \"example_146\", \"example_149\", \"example_150\", \"example_151\", \"example_152\", \"example_153\", \"example_154\", \"example_157\", \"example_159\", \"example_160\", \"example_161\", \"example_166\", \"example_176\", \"example_180\", \"example_186\", \"example_187\", \"example_189\", \"example_190\", \"example_191\", \"example_197\", \"example_200\", \"example_201\", \"example_202\", \"example_205\", \"example_206\", \"example_207\", \"example_216\", \"example_217\", \"example_219\", \"example_225\", \"example_229\", \"example_230\", \"example_241\", \"example_245\", \"example_246\", \"example_252\", \"example_253\", \"example_257\", \"example_262\", \"example_263\", \"example_264\", \"example_268\", \"example_269\", \"example_276\", \"example_278\", \"example_279\", \"example_283\", \"example_284\", \"example_288\", \"example_293\", \"example_295\", \"example_301\", \"example_304\", \"example_313\", \"example_315\", \"example_317\", \"example_320\", \"example_330\", \"example_335\", \"example_337\", \"example_340\", \"example_343\", \"example_345\", \"example_356\", \"example_369\", \"example_378\", \"example_379\", \"example_384\", \"example_385\", \"example_387\", \"example_391\", \"example_392\", \"example_395\", \"example_396\", \"example_397\", \"example_399\", \"example_400\", \"example_401\", \"example_402\", \"example_403\", \"example_406\", \"example_407\", \"example_412\", \"example_417\", \"example_418\", \"example_431\", \"example_437\", \"example_441\", \"example_443\", \"example_444\", \"example_452\", \"example_454\", \"example_455\", \"example_456\", \"example_459\", \"example_463\", \"example_466\", \"example_469\", \"example_470\", \"example_472\", \"example_473\", \"example_474\", \"example_476\", \"example_484\", \"example_487\", \"example_488\", \"example_489\", \"example_492\", \"example_496\", \"example_498\", \"example_502\", \"example_508\", \"example_509\", \"example_510\", \"example_511\", \"example_512\", \"example_515\", \"example_517\", \"example_520\", \"example_521\", \"example_524\", \"example_537\", \"example_540\", \"example_546\", \"example_550\", \"example_556\", \"example_559\", \"example_562\", \"example_563\", \"example_564\", \"example_565\", \"example_569\", \"example_574\", \"example_577\", \"example_580\", \"example_586\", \"example_592\", \"example_595\", \"example_600\", \"example_604\", \"example_606\", \"example_608\", \"example_612\", \"example_616\", \"example_623\", \"example_625\", \"example_627\", \"example_632\", \"example_633\", \"example_635\", \"example_639\", \"example_640\", \"example_641\", \"example_642\", \"example_645\", \"example_646\", \"example_647\", \"example_648\", \"example_653\", \"example_655\", \"example_656\", \"example_658\", \"example_659\", \"example_662\", \"example_663\", \"example_675\", \"example_681\", \"example_683\", \"example_684\", \"example_685\", \"example_686\", \"example_687\", \"example_689\", \"example_690\", \"example_696\", \"example_698\", \"example_699\", \"example_702\", \"example_703\", \"example_709\", \"example_717\", \"example_719\", \"example_725\", \"example_726\", \"example_728\", \"example_729\", \"example_734\", \"example_738\", \"example_740\", \"example_742\", \"example_747\", \"example_748\", \"example_749\", \"example_751\", \"example_753\", \"example_758\", \"example_760\", \"example_761\", \"example_763\", \"example_766\", \"example_768\", \"example_769\", \"example_773\", \"example_775\", \"example_776\", \"example_779\", \"example_784\", \"example_789\", \"example_790\", \"example_791\", \"example_794\", \"example_795\", \"example_797\", \"example_800\", \"example_801\", \"example_804\", \"example_805\", \"example_815\", \"example_821\", \"example_822\", \"example_825\", \"example_827\", \"example_830\", \"example_831\", \"example_833\", \"example_835\", \"example_837\", \"example_840\", \"example_848\", \"example_850\", \"example_851\", \"example_853\", \"example_854\", \"example_856\", \"example_860\", \"example_863\", \"example_866\", \"example_870\", \"example_871\", \"example_872\", \"example_876\", \"example_877\", \"example_878\", \"example_880\", \"example_883\", \"example_884\", \"example_890\", \"example_891\", \"example_895\", \"example_896\", \"example_897\", \"example_902\", \"example_911\", \"example_913\", \"example_919\", \"example_920\", \"example_927\", \"example_928\", \"example_929\", \"example_935\", \"example_947\", \"example_951\", \"example_954\", \"example_955\", \"example_956\", \"example_957\", \"example_959\", \"example_960\", \"example_961\", \"example_969\", \"example_971\", \"example_972\", \"example_975\", \"example_977\", \"example_980\", \"example_981\", \"example_991\", \"example_992\", \"example_995\", \"example_996\", \"example_1002\", \"example_1003\", \"example_1008\", \"example_1011\", \"example_1012\", \"example_1014\", \"example_1015\", \"example_1016\", \"example_1017\", \"example_1019\", \"example_1020\", \"example_1021\", \"example_1025\", \"example_1028\", \"example_1038\", \"example_1039\", \"example_1042\", \"example_1044\", \"example_1045\", \"example_1048\", \"example_1051\", \"example_1056\", \"example_1059\", \"example_1060\", \"example_1062\", \"example_1064\", \"example_1066\", \"example_1069\", \"example_1070\", \"example_1071\", \"example_1072\", \"example_1076\", \"example_1077\", \"example_1081\", \"example_1082\", \"example_1086\", \"example_1092\", \"example_1095\", \"example_1098\", \"example_1099\", \"example_1104\", \"example_1109\", \"example_1115\", \"example_1119\", \"example_1122\", \"example_1123\", \"example_1126\", \"example_1127\", \"example_1129\", \"example_1130\", \"example_1135\", \"example_1136\", \"example_1139\", \"example_1141\", \"example_1143\", \"example_1147\", \"example_1148\", \"example_1150\", \"example_1152\", \"example_1153\", \"example_1154\", \"example_1158\", \"example_1162\", \"example_1166\", \"example_1167\", \"example_1171\", \"example_1174\", \"example_1180\", \"example_1183\", \"example_1184\", \"example_1186\", \"example_1191\", \"example_1194\", \"example_1195\", \"example_1199\", \"example_1203\", \"example_1207\", \"example_1212\", \"example_1213\", \"example_1215\", \"example_1218\", \"example_1219\", \"example_1224\", \"example_1227\", \"example_1238\", \"example_1241\", \"example_1243\", \"example_1246\", \"example_1248\", \"example_1250\", \"example_1254\", \"example_1256\", \"example_1257\", \"example_1260\", \"example_1264\", \"example_1266\", \"example_1267\", \"example_1275\", \"example_1276\", \"example_1277\", \"example_1279\", \"example_1282\", \"example_1291\", \"example_1294\", \"example_1295\", \"example_1296\", \"example_1297\", \"example_1300\", \"example_1306\", \"example_1308\", \"example_1311\", \"example_1312\", \"example_1321\", \"example_1325\", \"example_1327\", \"example_1332\", \"example_1337\", \"example_1346\", \"example_1348\", \"example_1349\", \"example_1350\", \"example_1354\", \"example_1363\", \"example_1365\", \"example_1367\", \"example_1369\", \"example_1371\", \"example_1372\", \"example_1373\", \"example_1377\", \"example_1378\", \"example_1382\", \"example_1388\", \"example_1390\", \"example_1396\", \"example_1397\", \"example_1398\", \"example_1399\", \"example_1400\", \"example_1408\", \"example_1409\", \"example_1410\", \"example_1411\", \"example_1413\", \"example_1415\", \"example_1416\", \"example_1426\", \"example_1430\", \"example_1434\", \"example_1437\", \"example_1438\", \"example_1439\", \"example_1442\", \"example_1443\", \"example_1444\", \"example_1445\", \"example_1451\", \"example_1459\", \"example_1462\", \"example_1465\", \"example_1475\", \"example_1476\", \"example_1478\", \"example_1479\", \"example_1482\", \"example_1484\", \"example_1485\", \"example_1487\", \"example_1494\", \"example_1495\", \"example_1496\", \"example_1499\", \"example_1500\", \"example_1504\", \"example_1508\", \"example_1513\", \"example_1515\", \"example_1517\", \"example_1520\", \"example_1522\", \"example_1527\", \"example_1528\", \"example_1529\", \"example_1533\", \"example_1534\", \"example_1535\", \"example_1539\", \"example_1543\", \"example_1550\", \"example_1555\", \"example_1559\", \"example_1567\", \"example_1569\", \"example_1570\", \"example_1573\", \"example_1577\", \"example_1579\", \"example_1583\", \"example_1584\", \"example_1585\", \"example_1589\", \"example_1590\", \"example_1594\", \"example_1595\", \"example_1597\", \"example_1598\", \"example_1600\", \"example_1603\", \"example_1623\", \"example_1624\", \"example_1629\", \"example_1631\", \"example_1633\", \"example_1634\", \"example_1636\", \"example_1638\", \"example_1643\", \"example_1648\", \"example_1653\", \"example_1654\", \"example_1655\", \"example_1659\", \"example_1660\", \"example_1661\", \"example_1663\", \"example_1670\", \"example_1678\", \"example_1679\", \"example_1680\", \"example_1681\", \"example_1685\", \"example_1687\", \"example_1688\", \"example_1690\", \"example_1693\", \"example_1695\", \"example_1698\", \"example_1700\", \"example_1702\", \"example_1705\", \"example_1706\", \"example_1707\", \"example_1710\", \"example_1714\", \"example_1715\", \"example_1716\", \"example_1720\", \"example_1721\", \"example_1722\", \"example_1723\", \"example_1724\", \"example_1725\", \"example_1731\", \"example_1733\", \"example_1737\", \"example_1740\", \"example_1742\", \"example_1744\", \"example_1746\", \"example_1748\", \"example_1750\", \"example_1751\", \"example_1756\", \"example_1757\", \"example_1762\", \"example_1766\", \"example_1768\", \"example_1771\", \"example_1772\", \"example_1774\", \"example_1776\", \"example_1777\", \"example_1785\", \"example_1788\", \"example_1790\", \"example_1792\", \"example_1793\", \"example_1794\", \"example_1795\", \"example_1796\", \"example_1803\", \"example_1804\", \"example_1805\", \"example_1806\", \"example_1809\", \"example_1820\", \"example_1821\", \"example_1828\", \"example_1833\", \"example_1834\", \"example_1836\", \"example_1837\", \"example_1839\", \"example_1841\", \"example_1842\", \"example_1845\", \"example_1846\", \"example_1849\", \"example_1850\", \"example_1861\", \"example_1862\", \"example_1868\", \"example_1873\", \"example_1875\", \"example_1876\", \"example_1877\", \"example_1878\", \"example_1879\", \"example_1880\", \"example_1883\", \"example_1886\", \"example_1889\", \"example_1892\", \"example_1893\", \"example_1895\", \"example_1898\", \"example_1899\", \"example_1902\", \"example_1905\", \"example_1906\", \"example_1908\", \"example_1913\", \"example_1915\", \"example_1916\", \"example_1923\", \"example_1926\", \"example_1940\", \"example_1945\", \"example_1946\", \"example_1947\", \"example_1949\", \"example_1950\", \"example_1951\", \"example_1953\", \"example_1962\", \"example_1965\", \"example_1966\", \"example_1968\", \"example_1969\", \"example_1980\", \"example_1981\", \"example_1982\", \"example_1994\", \"example_1995\", \"example_1997\"], \"type\": \"scatter3d\", \"x\": [-10.757943189526973, -10.324372578891087, -10.590931058396963, -9.814353734879697, -10.480848101526977, -9.721385856665746, -11.08413089902139, -9.244000153141561, -9.237677875290345, -10.117366521096773, -9.524454988303017, -9.323386521514434, -9.545177807276957, -9.448266153961008, -10.363405908683534, -9.589372425992842, -9.835881002053537, -9.925244999942699, -9.544476496189258, -10.601010208118682, -11.939371078793883, -8.224945942961911, -10.249072831502065, -10.112297222491637, -11.636118999076187, -8.594942814230588, -10.218651242431298, -9.264200491284598, -10.299348072685257, -10.423515913123293, -8.682800952852746, -12.458374346588007, -11.327082999503087, -9.414430628342643, -10.24237263072406, -10.713043036119316, -9.727919821244726, -10.209647168207633, -10.085982671018517, -9.656520084040494, -7.247712860331346, -10.65296790059649, -10.331120216549946, -10.428255232320188, -9.901532983749672, -10.055493322225514, -9.27927459905878, -11.44596750943532, -10.697547646496579, -11.088150268551656, -11.311956880497075, -10.699552904107763, -10.446152776945185, -9.928265072341876, -8.73412460795565, -9.977812805042328, -9.960731517085861, -9.318425824471518, -7.033492351135803, -13.190637384241743, -9.401194349066289, -9.237112539734586, -10.334597458216603, -9.455522060827189, -8.942903434197913, -10.028406489478696, -10.56558403520727, -7.877929045396607, -9.665177364165523, -10.002429952348441, -10.78118244597444, -10.904740413341472, -10.4977044281844, -9.15199839810333, -10.684248196049847, -9.396825051441972, -10.028537707178527, -10.224029887681406, -9.763221644369679, -9.582910425120911, -14.326238720634265, -8.221048694198808, -9.801261405974232, -11.149877734715389, -10.619185951597798, -8.898250040859295, -9.90458637390797, -9.07941501055536, -9.404238121445616, -10.812328376004018, -9.80617291489423, -9.64133416448253, -10.363001252062622, -10.013035689553936, -8.816336432440597, -10.142280205955283, -10.241956961468684, -11.81670104286487, -9.143341398231518, -9.75221434369297, -10.092413142361593, -8.861516225026673, -10.220903188404554, -9.808236981810813, -11.335601335187526, -9.97725187094653, -9.556369772361935, -10.322606080917398, -10.116466250816318, -10.918184464938614, -9.364803481371379, -10.051458156149398, -10.564890238935075, -9.112328613662426, -9.19194869532629, -11.713894460844148, -9.92348317467762, -12.205637268748395, -9.841180090837083, -11.948153535240161, -6.166939889546503, -8.60493128931118, -10.690039344416988, -8.864441869681187, -10.141759479562468, -9.795635317012556, -11.693994047617798, -9.269413832153129, -9.83388022135185, -8.614508401468033, -10.008867667824527, -9.769730763234815, -10.418904110352784, -9.482274004829751, -10.154465413324868, -11.051292714377633, -10.049200197009139, -7.748633773130029, -9.646211713792832, -10.228071102233702, -9.916916592357264, -8.877790338958707, -10.32216132677089, -10.426432570722202, -12.265357990615886, -10.091080614449472, -10.90370418056686, -10.161882596539693, -9.716909344670247, -11.04066637865423, -8.935897045555658, -11.289515820742157, -10.395591913183123, -10.055430725491924, -10.95665293116148, -11.020476256456735, -8.64767845113402, -8.943348743484242, -10.541439200155713, -11.303966605676232, -10.777094114207403, -8.754036324475182, -8.065770625380535, -10.152404338442597, -10.025931474592637, -10.61069674855534, -9.889830350570621, -9.518862286671691, -9.422388411969898, -9.610040662347833, -9.734124331194446, -10.872374882545342, -9.117767501863028, -11.617697443324037, -10.295174852992714, -9.585858035248252, -8.677786215772707, -9.599385844726774, -11.170163393680191, -9.502162197391558, -10.181970233689768, -10.161293304622445, -10.126194977957377, -9.073678604497042, -11.258830681317122, -9.864788444740684, -9.651657654587622, -9.494704750060372, -10.62744599988315, -9.575171664900441, -10.488591879180301, -11.864660501048927, -8.62193549589513, -9.532518812314573, -9.304620299821472, -11.966866835126574, -9.184301576525707, -9.293906980658836, -9.00570938834541, -9.232547941637117, -8.815428035614621, -9.592235454841376, -9.084943910529162, -10.787398313751325, -13.574178941799445, -9.526337229049796, -9.425108967361982, -10.192141226267347, -10.5264307455038, -10.419894000279518, -9.102108274527694, -9.951979495848486, -9.539749061910227, -8.983960705225256, -10.202413042410775, -10.841231663311163, -10.923074548527063, -9.294600263071043, -11.378994195332302, -10.79952219619298, -10.847522101659244, -10.957803788640547, -7.751795824957863, -10.1779599681721, -9.975606988697912, -10.78347898481545, -10.227718007873092, -10.4986029800353, -8.485323870596515, -9.910712572672642, -10.188870034029462, -9.63513054730291, -11.011214439822881, -9.449021109450701, -9.652679666729439, -7.99747483805916, -10.017588172657119, -11.875387570753915, -12.41073253752943, -12.504047334211297, -10.529386256682109, -10.976014128470661, -11.61778394652518, -8.563692517715571, -12.46219762370496, -10.088367315170075, -10.160470460701413, -10.329739376160195, -10.66621710911271, -9.636343263504086, -9.737826803793642, -9.657642719096227, -9.934796915414193, -10.40435779689418, -6.4373924377226235, -9.301674857818913, -11.364446659466896, -11.153759029886285, -9.879681408404394, -10.11407905328203, -10.793699534010559, -9.704321458136942, -8.575233382181937, -10.49208490332872, -8.876041157676987, -9.378313179433869, -7.372636376743709, -10.09237334441493, -9.892104216162576, -10.057831850438983, -9.817108120116409, -11.277104337917205, -10.830569737558053, -11.8617516095881, -9.765562317189268, -9.826480756571852, -7.751722436970081, -11.310119985825882, -9.772089688099664, -9.971199029196988, -9.411461178558604, -11.436548046079228, -9.319743087087152, -10.114596175702001, -9.440112592809898, -9.341728229511522, -9.26499254506577, -9.920370044685594, -9.042916268361584, -10.91033641469167, -9.141597132969046, -9.81610966111575, -9.339991559181428, -11.101553309787905, -10.385655616579319, -6.9723378532143006, -10.137792354180737, -8.584434794155069, -10.18709797498706, -8.36724077410991, -9.844182605387404, -12.557269376856402, -9.856775361247259, -9.988152868817467, -12.354238990044946, -10.276663592438899, -10.777384734972198, -10.882673021214012, -10.504972453222907, -8.599405052554438, -10.624031975829968, -10.634544854318237, -8.636762989016898, -8.67711951925605, -9.732243615020872, -9.017416670988306, -11.007950615579034, -10.182665210203563, -10.686211456192527, -10.863797990030262, -13.116978530037585, -9.334009319424403, -9.491474469443462, -11.48388545279813, -8.979038907236522, -9.280434633087959, -10.112845872777378, -7.92962207480903, -9.39109845698306, -11.069103315070473, -8.264717743057734, -10.233304553731093, -7.358803266486211, -12.529534115019707, -9.98389327059902, -8.329958105699728, -10.304227171875702, -11.06740377410637, -8.132460515541359, -9.220942552460933, -10.236925884198682, -9.951013361951807, -10.085222361514278, -9.507805834502497, -10.605773422318908, -9.58106560959914, -10.701463799401917, -9.167293648128704, -8.863258220585191, -8.667738103719058, -8.699661498342792, -11.467583594866555, -10.372471271693307, -9.265046899811901, -10.916884290145807, -8.604635525499608, -9.845589821812478, -11.225016638124053, -9.838045296742925, -11.554065028912031, -10.231671354610103, -9.936274106757674, -10.493413354205394, -9.39760868575419, -11.694748852140025, -10.849304755120105, -10.713665344038942, -9.23925504195823, -9.600314258918285, -11.321854219595695, -10.0975725159147, -10.391523683988238, -7.987245762132947, -9.872036504451723, -10.171996525664051, -11.061740854423029, -10.634019441754521, -12.552731075633886, -9.821908737627652, -9.54603465568572, -10.20788663565259, -9.708355744754002, -9.813215055309547, -10.499292159097632, -9.345004324726652, -10.293420095024143, -10.845821184821016, -11.08238536994281, -10.130938369937615, -8.096975939881581, -9.586308744701311, -10.59196891338974, -8.573055922968347, -10.12462555986564, -9.710997336445326, -11.483754465430234, -8.772339885545872, -9.761355937433457, -9.468909183874548, -10.077744578562255, -11.667918134430078, -9.193649866585563, -9.993424922808355, -8.973320337997242, -9.533541308352836, -10.37205558027958, -9.580013292740729, -11.8280158285593, -8.483158046052743, -11.357637958667452, -8.747109599839938, -10.727663244883443, -11.401909833678243, -9.511474387110109, -10.023508306999338, -10.815924865013738, -10.782499430597332, -10.197079027419317, -8.442126331440113, -11.501089008576457, -10.288628523290264, -8.179516980823323, -10.590815008285912, -10.499977794091407, -9.66817300539478, -10.451024480437685, -10.046229727717542, -10.840465474063226, -9.908905924339676, -10.261696571628374, -9.743595036394042, -11.12907013637186, -13.021218346672928, -6.485032763597017, -9.988315051467104, -9.990726941909823, -10.10841653669249, -8.570181656347073, -9.758572513221251, -9.290461098148013, -9.878714253353568, -11.386210091157047, -9.534521227203326, -10.156978180263945, -10.590663169849062, -9.760855150900086, -10.281009753529341, -10.455056379250578, -10.408010613447882, -9.400214778455096, -10.428200647303324, -9.024881121760366, -9.695924221417282, -9.186955516485847, -8.30582981610463, -11.055539717301677, -9.449276307563895, -7.31514461881013, -11.939105579427718, -8.665963495586453, -11.187906687448692, -9.687485444384105, -8.933396619389873, -13.214175224767537, -9.868131094085998, -9.533929685452046, -10.035759895648393, -7.544032973188775, -10.734676301162706, -10.649448942744973, -11.34781011932141, -9.974784371628923, -9.792113878765877, -9.942819442613084, -10.292617604296472, -10.246527013741918, -11.203786865481185, -11.666355512274897, -9.627697262456525, -7.165540428744928, -10.871661857473791, -10.496681887045744, -9.814328360485481, -11.483668658041475, -9.204248752742496, -9.43678157834716, -10.258659915462657, -10.400428544972755, -10.208669701302187, -10.046495938342966, -10.743787414091022, -9.672719272203633, -9.00126081750441, -10.142525838073087, -9.44470447084395, -9.953354957967104, -10.574627680425488, -9.285191386177136, -9.855751834939413, -9.947694507035338, -9.673506282416707, -9.191450071389317, -9.651679780097938, -10.034843363832062, -12.804286840190382, -9.839737282836444, -10.466948205667027, -10.460033580423909, -9.501658242718388, -10.71186943584191, -9.414592534526424, -9.928758123859122, -9.473519680026463, -11.48079372567432, -9.901388762381773, -10.851106898536003, -10.068569402617669, -10.169468803793542, -11.660120305199175, -9.121407780256416, -10.362894255687687, -8.94974645325382, -9.29673288223334, -10.299323470659218, -8.494792161123062, -9.526796394870155, -8.450058852803211, -9.967318561212513, -10.07161308889742, -11.376663217938521, -10.02160865503223, -9.84451583542823, -9.669000419691438, -10.016431190694362, -9.68625654020321, -9.973998107815031, -10.141506335130236, -10.90042507533926, -10.662142413833168, -9.053774650535743, -11.692918635353356, -10.834267617978954, -13.145790958901218, -9.806813039350871, -9.4914810948874, -10.057405371058081, -10.764355674335158, -8.101499072612294, -9.947167671697875, -9.39383641481913, -10.205282146360457, -10.107256794553628, -10.518786725438863, -10.877702061058848, -7.958548823851287, -10.700798797542742, -9.713778192869992, -9.652119856601317, -9.748977526249135, -11.592637625155044, -10.31991741431877, -9.717437132362054, -9.822780303576128, -9.839900800992114, -9.832128421156472, -9.468243993693422, -10.435087736844993, -9.67869004946298, -10.53785497923705, -11.001144513328386, -11.344506126085076, -9.77200405721914, -10.23336196311452, -10.197056368658917, -9.488446958425936, -9.259405221945169, -9.488764756476693, -7.3314882522863964, -7.800538097681827, -9.627152955275116, -9.827792306016885, -9.610385133165284, -8.544579663941391, -12.314666832512593, -9.870976869202332, -9.89707768012803, -10.694798448261523, -9.643564356966147, -11.755301029859197, -9.944276054873736, -9.555467161709025, -10.458195461055455, -9.320628765419697, -9.538181746224137, -8.13780370788067, -9.906426000140618, -9.490205250012885, -10.58070726836594, -9.980627631295373, -10.600813652137385, -9.725042551040842, -10.847943684452291, -9.618149125679867, -9.199352818696791, -13.504973528323404, -8.231457682320178, -9.604787613093714, -10.690035539288273, -10.10651594537673, -10.217318682389994, -10.182138756431058, -10.039546820605734, -9.115483220044233, -9.762078222778154, -8.14500918337698, -11.824922249203569, -11.061318009637521, -10.295466739945471, -11.178067225454777, -10.691896859498282, -10.491950190853277, -12.659292357250187, -10.054009270752113, -9.903201001854638, -9.922268759437891, -10.438202722143306, -10.797311083270433, -11.086064467470143, -9.26328957619918, -10.180961095150879, -9.931293221092284, -9.990861721839973, -10.143191946552122, -14.090186556830965, -10.669097730958173, -10.673903496516992, -10.010067304020222, -9.232972908924529, -9.110610371232177, -11.157635808557972, -9.617037457587271, -11.008048820066383, -9.512113348187734, -10.454516782790064, -8.728641289567017, -10.790548999659501, -10.858342267955967, -10.226946810652406, -8.425470408844232, -9.68592961083011, -9.752290512339625, -7.67403118596756, -9.599085818414748, -7.291791234199362, -9.641193541055262, -9.206839888154128, -10.065453127861982, -9.262006532287172, -9.991194622215167, -8.471435786412997, -8.940237105200133, -11.707499157865543, -10.887347129931571, -9.359091130398927, -10.656497619798396, -10.057166809966972], \"y\": [-8.857469212636119, -8.777206328234247, -8.68020418258287, -10.102117850406493, -11.69842420788561, -11.334878221700555, -9.672293559955287, -9.592869522948158, -8.636713559688669, 10.81914219445852, 9.24055355571772, -8.784967326489426, -9.195096146124351, 9.965309790085131, -10.701563476825873, -6.3224440053881645, -9.250238879265737, 8.38731588479377, -8.7782117741509, -12.19454414808995, -11.074523425128774, -9.878587771158134, 11.42780433058117, -11.70457755765698, -9.017640220019448, -8.297199339225978, -10.227549227610432, -11.188921438134269, 10.772320644117672, -11.047206130300781, -11.114628337291105, -9.513736527820152, -9.817959875932267, -8.07864069639658, -9.105653200540004, -10.600080527780339, 9.90329597111242, -10.651340485174039, 11.84364487676982, 9.245564538023695, -9.733070127295916, -10.847886324241292, -10.107969198994464, 9.007415825450563, -11.079060582198533, -8.967226633304547, -9.838359288346899, -10.74812433892171, -9.198443987148343, -10.08128522909974, -12.195275342762306, 10.236947074575005, 9.870352746027269, -9.481051917484475, -9.054023407726618, -10.868844822876417, 10.735888443666648, -8.990292547300601, -9.628199981797957, -10.902778236879888, -10.684799828825588, 11.507521198013137, 9.642211947645697, -11.403320470887035, 7.288746266190712, 9.498072363239574, -9.270152175637197, -9.918491171791498, -10.965010421113911, 9.244583373665273, -9.78769691126431, -11.715024673857991, 11.546078936922157, 9.45651623011441, -9.199461280240008, -9.377795377190365, -10.718886883838929, -11.108398323481758, -10.79914104952303, 8.52130972466644, -8.199545098752703, -7.876144232825465, -10.424478334783132, 10.398218013501031, 9.810160804626106, -8.914054719499894, 9.240368904882807, -9.317613904348384, -9.316306052913497, 12.746942356025999, 9.54013883410787, 11.949239540857011, -11.05856630466475, -9.871940409751396, -10.17716351777172, 8.502549602509824, 10.400097140816502, -9.811255344875038, -9.070775825992929, -9.35950066880765, 8.959470394664487, -9.446941023375595, 10.660624011450864, 9.54696756650318, -12.280915863544704, -9.302672521790905, 10.04029304096942, 9.833169926261693, -8.97379014622986, 9.74649332596248, 10.188082690937023, 10.23663329834959, -9.432489268119296, -9.913495342893102, -9.96721210601033, -10.353958925148296, -10.232210772271223, -10.994111714882825, 9.128103293876464, -9.152083722551215, -10.601284486670691, -9.365349692324703, -12.090710140235013, -9.45330305046821, -9.39620325905428, 9.31989716465605, -9.244404235374247, -10.231559670541383, 10.143932841242188, -9.373920610699047, -7.914782327572124, -9.78168967363508, -9.808963412693018, 11.003512710784527, -10.465003386228975, -8.364187780747233, -9.771135672540211, -11.55148622844628, -9.219875591138376, -11.688287840647607, -8.087863907644877, -9.73683070294085, 10.418663486120069, -9.654791469383404, -10.879387184779333, -10.019272348098001, -9.531823923480685, -9.706096525675271, 9.12456291352338, -10.78237628582835, -8.774663916731411, 10.3560962968972, -11.06416216128648, -10.62770896305731, -10.124907855820618, -12.167677575763966, -9.2733038558129, -10.694042330760139, -11.22882532009808, -8.782452788731696, -11.406021098913628, -9.064209896362744, -9.65734485268153, 8.60532571408026, -8.808704113059893, -8.800261153482412, 10.480786920319929, -9.196070117381407, -8.54249939393475, 11.06839884257351, -10.016027506134483, -9.414321977666086, -10.711452789452375, -11.36519491827626, 10.825448000094498, -7.723853753862592, -9.424716969603674, -10.998649349436608, -9.776769019799104, -10.086656496690669, -9.352394333429144, -8.832909492407193, 9.165688958818087, -9.41893813680063, -10.87521284653246, -9.967638097781359, -9.858837462172422, 12.013067245298805, 10.255022427157485, -9.96951793281076, -9.608648981713262, -9.309926004743728, -11.412702617866962, 10.164715912946694, 10.462638209740454, -9.572022865593626, -9.856172349330189, 9.938174890288524, -9.277995094351272, -7.918135474209232, -7.960709017857185, -9.738148479831949, -9.507903823994607, 12.146390038141297, -9.291783629184515, 9.898886136149653, -8.634821545663144, 9.690536631990819, -9.114532696402835, -11.213751791155415, -9.560210533742024, 11.088815860544358, -9.3115474398422, -8.362722570499741, -12.221427242658931, -10.047463779531226, 10.413662942656806, -10.120494900278622, -9.831346208493384, -10.437013722767526, -11.127031409712025, -10.161090143012823, -7.912967312531791, -9.8230826113848, -9.625945397460098, -11.100427254852159, 10.851893216626733, -8.961497249032348, -11.708500719955289, -10.502441409929322, -8.95551866653864, 10.37830700001637, -8.489468300538723, -8.160908150599527, 10.282647423297375, -10.961066167773492, -10.724207204781234, -12.730433798249322, -8.653866281336102, -10.251768011418779, -10.140017926849136, -8.304822812623225, -10.678339404018253, -10.439235073843319, -9.356157533515942, 11.861609845653497, 10.446930249356724, -11.167373712156634, -9.359715605965267, -9.390699009095977, 9.248164296384394, 10.37200054552454, 9.86645863610853, -7.99180529501789, -10.69481390256054, -11.091019681527882, -9.619156151529682, 8.589563559985251, 10.229538060887489, -11.089178798491181, -10.23013059229523, -9.174185549639853, -8.002116202839042, -10.919359430787017, -9.935403348107648, -10.542934423021011, -9.79502726875298, -11.526958903206923, -9.80734968138396, -11.350488854117247, -7.852293718263361, -9.573480809574715, -10.285167268963658, -8.243672759005909, 9.31429592706798, -10.382728981472427, -9.759114226762975, -10.338259999502759, -11.432725728279285, 10.986571857997179, -9.131851515875269, -10.685093908112133, -9.471746936050819, 10.373709536706967, -11.012973117144798, -11.201571129959213, -7.860815615791817, -10.178742863321496, 10.668552760165479, -9.91270687264499, -10.245075180615226, 11.422719630749715, -9.648323049968605, -8.971051993932733, -10.96980345234541, -10.442514947282767, -9.810589117374063, -9.733159446409584, -10.172750203215559, -9.284275458659724, -8.699609548521627, -11.454144074538082, -11.394781557006645, 8.817119635486534, -10.017206226543655, -10.046429907290966, 9.997074330920118, -9.547160645925716, 7.74563829653893, -10.27079888616347, -11.216932438980638, -9.899937175341407, -11.871592664823588, -11.047624633995996, -10.941430364953032, -9.532867347388674, 9.450879029200179, -12.927022038876459, -9.844004184296375, 9.403796866949937, -9.05714250376182, -8.135325620862261, -9.7197334701001, -11.1912316009855, -9.352344944255055, 9.994028068335817, -9.69816528611825, -7.473186332649378, -9.483458900806932, -9.865327880243992, -11.36315444953675, 9.788497923128931, -11.284131826689283, -10.954120984959427, 9.822472356512778, -9.025958743782908, -11.340012908283942, -11.756749301927226, -12.00904739600617, -10.079931323876291, -10.988459295722686, 11.469926014156435, -9.848632525947501, 10.43583154339221, -10.167632880434091, -8.547252234813083, 11.738029734727842, -7.026801985289749, -10.24913435275615, -8.524486116726617, -10.81412752814996, -7.248717218144446, 11.050911424155275, -10.346577795785848, -10.21109214549544, -10.688887491020708, 8.876156997286419, -10.694587935001197, -11.295046377038602, -9.314888149344366, -9.76302399834834, -10.957944468456319, 11.506348351150448, -10.735405335230695, -9.920988745694718, -9.63521468328631, -9.194563482336575, 10.03596488820777, -9.650232556137457, -10.188215244115716, 9.992153767767277, -11.586495217075157, -11.016781912257223, -8.584940492973402, -10.490563793463524, -10.102496246735363, 10.840308228902739, -9.360485338314955, -8.80515434649298, 9.554080325527904, -11.511841695552295, -10.822700792050238, -9.819137499044041, 10.561188772313313, -10.374881302471046, -11.726933896108523, -12.083273789867482, -9.71102608498383, 11.208093337365122, -10.261288988613288, 9.821239689397151, -10.508287081516096, -9.137569378821713, -9.00434377666475, -9.249483503115563, -10.339055515969225, -8.79667884701186, -9.6997836794852, -9.4566557298951, -10.381693700611471, -9.458236764330875, -9.717344531499647, -10.554586651542207, -11.558908001122727, -8.218408208506677, -10.440445647703495, -11.247723687936574, -9.740027947832388, -8.302093874618436, 11.889512896441737, -9.567267632145771, -9.772479131956496, -7.840357731256855, 11.537737184853153, -10.403236217349917, 10.458272750689177, -8.456159669168848, 10.143675701533967, 8.665788247971774, -9.922323027099125, -9.07665800218366, -10.554684730740107, -10.075291483393308, -11.680603402287858, 9.304479974237827, -9.703421696882597, -9.688928821395617, -9.585551339790118, -10.310159214544104, 8.954132954235936, -10.386271842868503, -10.899554071887003, -10.064803331186694, -10.93516155644875, -10.348251181325033, -9.75379141760094, -11.820392903548205, -9.933843169843552, -9.975057335813508, -9.955179834530968, 10.348387682800933, -8.84620149158198, 10.851719766657784, 9.362365328747465, -9.782906086267475, 7.527501016715533, 9.77399207143403, 9.15449791420834, 9.901608931493683, -7.71712230513312, -7.3409865344875875, -9.799441010115956, 10.508553130441541, -8.765507456637494, -9.806213519700478, -9.419495663157484, -9.52072333341675, -10.597112820423403, -11.384464296601745, -9.085084464832965, 8.843392214252257, 9.011045250543074, -9.969020019838782, -8.879850692009864, 7.951190252792492, -9.349181543300046, -10.695134243591475, -10.045880642906246, 10.42646654075911, 9.281270895041613, -9.34327225770673, 9.160977133803069, 10.05419480484792, -10.647139475830118, -7.831926715491722, -10.262126609235832, -11.140731811071946, -10.24133956717016, 10.448390007164166, -11.386017879256363, -11.125301182647517, -9.99464242498531, -10.714744563377614, -10.180311274360479, 10.280554187252278, 10.053728746390695, -8.041343331132474, 10.504407288369443, -9.137949943836635, -9.354266198084456, 10.171179368593158, 10.45949801098608, -8.808296962161185, 11.370011243689472, -11.948862857755744, 8.405705961061328, -9.46873373242925, 10.336229487562756, -9.813354812419869, -10.450992260385194, 9.694578082526926, -11.30437291248604, 9.212336623228861, 9.099366939679218, -11.151497349982158, 9.406254247946661, -9.686950833783449, -9.211768071551463, -9.408835903097462, -10.495402048253252, -8.904530398927808, -10.631472267332727, -10.709169458630042, -10.539757887907317, 11.179379606494637, -12.024328682388424, 11.553441137915632, -11.700538764742324, -9.426942747527804, -10.02399748842134, 11.245482169134133, -10.356459751017155, -10.745397888540625, -10.159280153025168, -9.675226730286049, 9.085440641440217, -9.127840904826627, -10.760370871967517, -9.304564121766536, -9.470236465873331, -9.719560169508382, -10.228457176472805, -9.528894346872143, 9.162159007446764, 8.640450748712244, 11.411818446568414, 11.19422517197755, -8.362098755384473, 9.482572169900694, -10.25123048336809, -9.71055711819148, -11.313974176789774, -8.308622484214842, -7.735094706663012, 10.723208193619625, 11.364219216042574, -8.95273705270368, -9.215869994932511, -10.52738300950927, -8.094723539484598, -8.841664594924623, 10.17923561779477, 11.074268516691292, -11.600959667807796, -7.612584614545462, -10.736652956423404, 8.643533249730087, 9.723448172264176, 7.819972681990542, -10.367155228325787, 9.902186769098044, -10.732055855592773, 11.323360449034412, -11.02903495020863, 8.099399183363825, -11.879277123433644, -10.513921278129462, -9.169263812944086, -10.033811664103366, -8.858833957691251, -10.818185346466969, 10.84406422633793, -10.467457948118208, -11.010721909428367, -10.754268182551783, -8.169471048482837, -10.772800477030506, -11.070374286642615, -10.362728315063023, 9.43090622078231, 10.00694594686272, -9.055340582366547, -10.383566850139536, -9.376287137209939, -10.13858852490436, 9.78028598518898, -11.239293128648047, -10.710329982579061, -8.051193712819922, 11.316930835769437, -10.376358987955904, -10.032830561186197, 8.947792918243614, -9.088912667015075, -9.961927983795167, -11.029447637179912, -9.392106800620358, -11.079287527863631, -10.021744792073509, 9.481955048152086, 9.828849210549018, 9.47485969280688, -10.654346760274782, -9.7305888138014, -10.755446975646187, -8.565226538823726, -10.932420476366742, -8.517151040542098, -11.154532291524502, -11.091571378183094, -9.252717064952664, 10.011941813127029, -10.086375222766696, 9.241937309019328, -9.757975067335032, -10.73297097469844, -9.851542704438744, -11.812353372515798, -9.011482564040795, -12.634033370358992, -9.303630142288997, -9.5934791415467, 10.203066465569417, -8.624815282385809, 10.476254676353001, -9.202981137998046, -11.10572773831154, -9.69108507673182, -10.518393472450295, 9.181207998916387, -8.370087280256772, 9.306273199472407, -10.531740247891179, -9.255977040375914, 11.593885066473092, 10.009509206093421, 10.809776287586713, -10.762817334599935, -9.657025053941515, -10.283741048393281, -10.729444245720778, -12.069266424152104, 10.981288258512798, -8.44340611052917, -6.0026053464959555, 11.303967324607969, 9.025377599152739, -11.791199780999493, -11.92686720435505, -9.601172951290424, -9.220033417811607, -10.180375971032394, 10.998165221326948, -8.912659386459543, -8.951328982467366, -12.556913899395886, -9.528948615445518, -9.507407449470152, 10.407556732837834, -9.842861991620625, -9.231732426038073, -9.78011756080073, -10.340822954017687, 9.384912848288485, -11.241596502982388, -9.12115978334187], \"z\": [8.832410612566251, 10.215217197510045, 10.651907088722918, 9.203408358975773, 8.349975447223061, 10.772544292255796, 11.252165660323271, 11.391259892812641, -8.070890675731967, -9.613950523975472, -10.43936278443198, -10.400159599718185, -9.920293799068544, -11.27412107572455, -10.908768298963976, -9.867071756504943, -9.380393830627577, -10.358162856993186, -9.987141319572265, -10.986779426002146, 8.466199451286634, 8.575025665518043, -9.75928035954856, -9.116111821178226, 8.620336707388653, -9.932905723830533, 10.126621033558045, 9.444486097912154, -9.306109892511754, 9.998199034348197, 10.29415211904214, 8.885399151063035, 10.530625128243285, -8.02525754077886, 8.627870696661628, 9.052594450054292, -10.674818064061075, -10.024338152762263, -9.409446546867937, -10.268475357415838, 10.901565826726285, 9.27542452075366, -8.99149980414398, -10.044784147303737, -9.479412184057402, 11.992978840119832, 11.113798714124009, 8.706156510294988, 9.189994280367769, -9.197579893265926, -9.133782205677308, -9.570774839622297, -10.234372725312175, 9.239096702276248, -12.270059082431693, 7.648695067204118, -10.130423322388614, 10.987923620814566, 11.679061856837311, 6.968962636756352, 8.743301288634752, -10.68295924986535, -10.06937586011167, 12.31416687139868, -11.813472616690076, -9.238928508170902, 8.76911719313202, 10.307792301683685, -8.282284448069548, -9.73560992765739, 8.33368846134711, -10.704673617462959, -9.18073593955969, -11.274485470842079, 10.265127806532472, 12.012996080444564, 9.880516604001958, -9.665124298008466, -10.178456034896248, -9.770177116481154, 8.495657013053327, 11.84811605311593, 10.190726616282431, -7.666115450609173, -9.348001720669481, -11.58365614324607, -10.934452656605485, 11.328492875157211, -9.655147114998531, -8.794285837273714, -9.454025228013165, -9.811481290145936, -12.078628921776366, 10.482030744726918, 12.18021501104266, -10.509692781618272, -10.078802072145402, 9.04625494878833, 10.404712407500035, -9.844943354872251, -10.289650597365588, 7.494293505617925, -9.084901164840106, -9.836292206819065, -10.503417363189259, 7.814526637501505, -10.264458138450772, -9.774664765742893, 8.402651950094153, -8.893761479172484, -10.832421544307996, -10.357672731605776, 11.11658246423688, -11.426262679778345, 10.290634555429866, 10.266951703967448, -9.281889331305791, 7.6079800253270315, -10.462306121905643, 8.884928201780019, 12.104420535854914, 12.203639934430385, -9.648968122660726, 8.36863143359437, 9.64794236762935, -10.17292337800883, 9.407573910302531, -10.889131555962226, -9.70910638420153, 11.667357099458059, -10.190011273148363, -10.407281971517262, 10.637311126187415, -9.96202391116314, -8.81287613359128, 8.920063526209017, 10.487076335800838, 12.777571351635588, -12.212606038010367, 10.133258531419283, 8.695394931413158, 11.830096886608791, -10.089151300680694, -7.631975688065383, 9.198581197528945, -10.228576394561157, 9.283498874510677, -10.16227968557976, -9.939633052721566, 10.641736362032958, -11.23003979301931, -8.151204101573583, 9.0516514436661, -8.86815978376705, 11.754112715415225, -7.264491692028615, -10.69901915770063, 10.902693077294265, -10.115615531164888, 9.205385908879233, -9.872058708156777, 9.801145739255409, 10.13844229418106, -9.916949810252609, -7.953969781462533, 9.754748728426339, -9.688254970837475, 9.140141782612837, 9.485161320161266, -10.144198619200804, 11.124933434238118, 11.137326788463612, -12.46235333117024, -8.423972536820852, -9.449568185360803, 10.101850129449229, 11.555937673537795, 7.302561832448211, 9.387085488024647, 9.708157944242945, 10.941329740186283, 10.126777226499117, -9.846323054406925, 10.202100759308426, 11.849573334192979, 8.532484642839691, 7.379539555563672, -10.238615837965922, -9.675959979375573, 9.132980172619886, 9.668279583920429, 8.661699376962801, 10.279807052111401, -10.4882388233849, -11.344918290383644, 8.456327109052399, 10.247561636089936, -10.712519753293229, 11.040528417655837, -11.572017266996358, -9.497640440176669, -10.19828314542371, -8.84949595034718, -8.38719622372143, 7.783719630257677, -10.634246609535593, 11.971199272109262, -9.309202803010658, 8.998934387559789, -9.961142275630436, -10.335511528378147, -9.90315447828723, 10.310100244329977, 9.204841026865452, -9.39865395462233, -9.670365153515661, -8.522044820367183, 11.208327314529136, 8.072269757530945, 10.122590588892727, 8.003868478178884, -7.442325832094573, 9.955845166136536, 11.32888066549648, -9.933958429923779, 8.173845683728171, -9.1238539779099, 10.471525498346843, 12.593294154974465, -9.746079309798876, 10.202084507421086, -10.19033791177894, 10.225368243890408, -10.878329332821258, -10.937179161494512, 11.061731348061643, 8.795775629595218, -9.844086982694742, 9.55642276576665, 9.568797039886205, 9.912526938058376, 8.038831581160137, 8.561568160915208, -10.378199149851724, 7.795570260086178, -10.270123047061276, -10.251787989079192, -10.218505395830597, 8.633176131152226, -10.510477553303625, -9.802476308797072, -10.05325983757121, -9.883468082297458, 11.164320706624524, 10.378915929217992, 11.996755434552519, 10.744746162193337, -8.219615683410492, -10.371698319175753, -9.685549364480275, 9.81279072207035, -10.049465591966332, -9.457237884713036, 10.792731815447134, 9.096753316895194, 13.098853247896114, 11.365916797930064, 9.939860833126186, 9.917789446357475, 8.941426374435, -10.868237464926844, 9.91692354129114, 10.648919513360227, 8.15633776494386, -10.7193120817313, 11.469419914743792, 10.542320271292214, 7.8339802997520875, 9.433972794018278, -10.165811421262243, -10.195716500032555, 8.745151586565926, 9.856783832729091, -9.446596926311935, 11.426629224927893, 10.114921180090292, -10.055602112453451, 11.152757822837572, -10.428443244061187, -8.675781856296926, -11.98499815354895, -10.589016527508852, 9.342731454249343, 10.162345369558201, -7.999098384931658, 12.067757815652259, 8.855568148743435, 8.61905403339152, 12.531194229076343, 7.891831406915319, -8.544284169471908, 8.222436275856765, 9.511856406956028, -10.079489174566117, 9.321328967815626, -9.221991819111274, -9.18877340840228, -11.576704236637681, -9.446121407784066, 12.668344006067839, -9.438910520874872, -8.763555079023577, 11.939351062369134, 9.350447694968649, 9.134818662352433, 11.353700880052259, -8.402095048093628, -10.157131450726919, -9.978815538960239, -9.691843957408746, 7.754922835350754, -12.768932121850952, -9.048308157851219, 6.60305875234387, -9.890039487848757, -10.81795355820043, -10.95299889315263, -9.933990014763515, 9.709830496778013, 8.42819709930845, 10.934878633654295, -10.597093662555983, 9.220902424872868, 8.272377084524814, -9.786578370854091, 10.343139334409264, -12.642622862858504, -8.323702911675575, 13.198558748476653, 9.848918262419303, -11.710110540700933, -10.022274255255105, 10.755443778168935, -10.756132307667725, 10.126109948635634, 7.753330582240576, -9.043128793869633, -9.214695429092403, 10.204988226172064, 12.377215306628612, 10.714416181306207, 11.5449890679995, -9.96220835655089, 10.652773639694336, 8.889519919293324, 11.101244517707798, -9.669939368127586, -9.123179809774163, 10.281618697271393, 8.361956126440052, -9.369771789068523, 9.191356596740683, -9.398328865543277, -10.71177611336908, 7.461387405322939, 8.840977825549436, 10.225660432476799, -10.984707032798443, -9.749660699292933, 9.10251392514009, -10.468270565393071, -10.186306951330192, 9.289543242905175, -10.957997490263542, -10.134866880742619, -10.728934228873959, -9.59513835522368, 8.680607022630518, 10.223086668637867, -10.264854087992942, 12.298826046983958, 9.763415191091186, -8.282501732799359, -9.282030357671136, 12.41086529641397, 9.828553800955072, 10.392520893636307, -9.875111929503039, -10.245044399372413, 10.67680552113308, -10.342146715540785, 9.370697718657537, -10.81968080066605, 8.505429310190303, 8.539969230051252, -11.720481983344, -11.012398303380863, 10.139679986957267, 9.817845961609503, -9.272720078076809, 6.868049423356462, -10.496321375551977, 8.924428392597424, 12.627911699555849, -9.598339481377227, 9.57576567719838, 10.845791441407389, -8.530148012961769, 11.506789832552743, -8.34629375957952, -12.711697575927563, 10.741925797828468, 9.726794648807225, -9.765101479337218, -10.017229490021721, -8.881003657138866, 9.593499261058351, -9.257034406011272, -11.621541359053074, 8.656923654755026, -8.776817016445303, 10.826311285844701, 10.411313872575086, 9.386577460779769, -10.393113663581039, -9.823888577070003, 7.191423586950929, 9.97423435808976, 10.4055424264348, -9.858569203271252, -8.055994016665842, -9.077460691746573, 7.750361841794435, 11.123389227629604, -9.635005067044377, -11.730556520752849, 9.507683721040653, 11.928546097925759, -11.452993409451636, 8.240980405281586, -10.11264095480012, 10.032863833459267, -10.485739560539558, -9.553662653141915, -8.566739114656752, -10.583218983520165, -11.093420348784464, -10.347569545884188, -9.865826049398096, -11.53232441232345, -10.379809692275689, 9.327112478533424, -10.063064009792246, -10.013931331902803, 12.088988806269766, 9.174852030228578, 9.651909467550457, 12.540381555527823, -9.996392141859372, 10.271262787310112, -8.427164667614324, -10.199256341461478, 10.499291177737389, 9.578218863105665, -10.056919455119582, -11.279658817514232, -10.126781889946558, 10.63352053942159, -9.912820351190653, -9.11987750701877, 8.449562901314014, -10.263250161894312, -9.807973554345784, -8.862066765249688, -9.598944593780004, -9.739201808062264, -8.591185626865261, 9.405073801187788, -9.970952684091246, 14.507736257806577, -8.613136122796343, -10.117133037671664, -11.055122744447264, 10.60774999713103, -11.302494451649261, -11.717134445342372, 8.740853961289499, -9.55952935739993, 9.542402139730672, -12.521173606568583, -8.82056555633058, -10.151706158991116, 10.311182616147066, -9.757918535020265, 10.668872820944495, -10.36561267560358, 9.597925036811354, -11.65351615017492, -10.980701131583961, 11.217243166616463, -10.559339939093597, 11.821139837364898, -10.218516858019077, -10.13361632316169, 8.07408201998931, -9.979231048555103, 9.658742969062029, 8.847677609373864, 9.955762986171857, 10.31065131209435, -11.248039486345503, -10.416699456284883, -11.246495567082299, 8.3758080166259, -10.375397048928802, -10.96834973605453, -9.518336520601515, 9.652655860236367, 8.418739256067344, 10.125278718167301, -9.013614810169411, 12.691758456149893, 10.459151839659963, 10.438151381401704, 9.773794451587461, -10.034251991243188, 11.410779188962621, -8.836474388047186, -7.121708382282306, -8.200682566878477, 8.036077731220221, -10.35880175786148, 10.301694444219232, -10.724773144235549, -10.137915680531517, -11.559091312495099, -9.521430742519083, 9.411199330806983, -9.700932383988725, 7.8018762926119045, 9.041964696281804, -9.693948378752072, 8.444292514421877, -9.376557445738129, -10.674411442055197, -9.902356492085465, -8.45272257151956, 11.994340600338393, -11.686881077244424, -10.542488749759716, -9.734603650288872, -9.626115217457409, -9.960986228721884, -9.716873446636017, 9.117888096607777, -10.345210647623787, -11.052887610207403, -10.520626866077713, -11.324105204628534, 9.230405928481023, -9.63025024909214, 9.810642610210818, -9.675256574064278, -10.723686368356955, -10.259081150834971, 9.198351073870265, 9.109583706690124, -10.003578519629869, 9.091872691107646, 9.729035768967988, 8.627010435297912, -9.445017870597793, 11.14471630696859, -11.137943181945783, -11.685329350688914, -8.99814673367766, 10.910600063033511, 11.738066845626637, 10.409446930048949, -10.70466724984793, -10.010673401278892, 11.40721791601488, 8.92549257733708, 8.075534214031402, 9.84467484613312, -10.249576611910594, -12.044281108395865, -12.785654260939587, 8.92932967328018, -9.683695571885824, -12.452802480984937, 8.628737855333421, -10.970798759530823, -10.541885107385463, 10.684176631569132, -10.576285684670722, 10.03516750565029, 8.380415554755787, -9.836863510881532, -9.5202272668806, -10.8022427546413, -8.655216975447603, -10.96465092677135, -9.85981040773409, 9.461118530841066, 11.31296325796197, -12.512212373532384, 8.367065207703549, 9.11250206432074, 10.692031303762803, 9.966640854112804, -9.570841611766568, 11.332161493458328, -10.672245311332038, 10.488978499098675, 10.08657250526325, 10.502496855906706, 9.994609181697644, 9.37422012856966, -7.843117569682073, 7.236491474037912, 9.871178587704437, -10.279591961708176, -8.859019712930083, -10.901737739091507, -9.603253241223516, -8.618745519294578, 8.956834051529352, 11.325084585015167, -10.358509278947436, -10.02178800275054, -9.920405814344992, 9.033026589308278, 8.498108695686039, -9.33618020668378, -8.281993020466064, -10.100762773802188, 8.16610304302837, -10.638111415572943, -10.837839997195502, -11.701002344162015, -9.754443709668934, -11.023832906625678, -9.403755496632446, -9.639121574181583, -9.613502029485357, -9.021647578196621, -12.469608130064117, 10.2795806519336, 10.639457860920022, -8.430902360371505, 12.134913980531628, -10.394524973244097, 11.260294864483862, 9.055628946395377, 10.07855664610767, 10.779382841094838, -11.28359825369153, -10.747496969619343, 12.976729534680814, 9.287037305386836, 9.135427814145388, 9.260758141726, -10.696771240367381, -9.93908458788276, 10.695618216681709]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 0\", \"marker\": {\"color\": \"rgb(31, 119, 180)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 0\", \"scene\": \"scene4\", \"showlegend\": false, \"text\": [\"example_2\", \"example_15\", \"example_23\", \"example_29\", \"example_30\", \"example_32\", \"example_43\", \"example_44\", \"example_45\", \"example_49\", \"example_51\", \"example_56\", \"example_58\", \"example_59\", \"example_63\", \"example_65\", \"example_67\", \"example_69\", \"example_70\", \"example_71\", \"example_72\", \"example_73\", \"example_76\", \"example_78\", \"example_81\", \"example_84\", \"example_99\", \"example_100\", \"example_101\", \"example_107\", \"example_109\", \"example_111\", \"example_115\", \"example_118\", \"example_120\", \"example_123\", \"example_124\", \"example_128\", \"example_135\", \"example_141\", \"example_148\", \"example_162\", \"example_163\", \"example_168\", \"example_170\", \"example_173\", \"example_175\", \"example_182\", \"example_184\", \"example_185\", \"example_188\", \"example_192\", \"example_194\", \"example_196\", \"example_198\", \"example_199\", \"example_203\", \"example_208\", \"example_210\", \"example_211\", \"example_212\", \"example_218\", \"example_220\", \"example_226\", \"example_231\", \"example_233\", \"example_236\", \"example_237\", \"example_239\", \"example_240\", \"example_244\", \"example_247\", \"example_250\", \"example_251\", \"example_254\", \"example_256\", \"example_259\", \"example_261\", \"example_265\", \"example_266\", \"example_270\", \"example_271\", \"example_272\", \"example_273\", \"example_274\", \"example_275\", \"example_277\", \"example_281\", \"example_286\", \"example_289\", \"example_292\", \"example_297\", \"example_298\", \"example_300\", \"example_303\", \"example_305\", \"example_306\", \"example_307\", \"example_309\", \"example_310\", \"example_311\", \"example_316\", \"example_322\", \"example_324\", \"example_331\", \"example_332\", \"example_334\", \"example_339\", \"example_342\", \"example_344\", \"example_350\", \"example_351\", \"example_352\", \"example_353\", \"example_354\", \"example_358\", \"example_361\", \"example_363\", \"example_365\", \"example_366\", \"example_367\", \"example_368\", \"example_371\", \"example_374\", \"example_376\", \"example_380\", \"example_381\", \"example_382\", \"example_383\", \"example_393\", \"example_394\", \"example_398\", \"example_405\", \"example_408\", \"example_411\", \"example_413\", \"example_414\", \"example_415\", \"example_416\", \"example_420\", \"example_422\", \"example_425\", \"example_426\", \"example_427\", \"example_429\", \"example_432\", \"example_433\", \"example_436\", \"example_438\", \"example_439\", \"example_445\", \"example_450\", \"example_453\", \"example_462\", \"example_464\", \"example_465\", \"example_471\", \"example_478\", \"example_479\", \"example_480\", \"example_481\", \"example_482\", \"example_483\", \"example_485\", \"example_486\", \"example_493\", \"example_494\", \"example_495\", \"example_497\", \"example_505\", \"example_506\", \"example_507\", \"example_513\", \"example_514\", \"example_518\", \"example_519\", \"example_522\", \"example_526\", \"example_527\", \"example_529\", \"example_530\", \"example_532\", \"example_534\", \"example_535\", \"example_538\", \"example_543\", \"example_544\", \"example_548\", \"example_551\", \"example_552\", \"example_554\", \"example_555\", \"example_557\", \"example_561\", \"example_567\", \"example_570\", \"example_572\", \"example_575\", \"example_576\", \"example_579\", \"example_581\", \"example_582\", \"example_583\", \"example_584\", \"example_585\", \"example_588\", \"example_590\", \"example_591\", \"example_593\", \"example_596\", \"example_598\", \"example_599\", \"example_602\", \"example_607\", \"example_609\", \"example_610\", \"example_611\", \"example_613\", \"example_614\", \"example_617\", \"example_618\", \"example_619\", \"example_620\", \"example_628\", \"example_630\", \"example_631\", \"example_637\", \"example_650\", \"example_651\", \"example_654\", \"example_670\", \"example_674\", \"example_678\", \"example_679\", \"example_680\", \"example_692\", \"example_693\", \"example_694\", \"example_701\", \"example_704\", \"example_705\", \"example_706\", \"example_707\", \"example_710\", \"example_712\", \"example_715\", \"example_720\", \"example_721\", \"example_727\", \"example_730\", \"example_733\", \"example_736\", \"example_741\", \"example_744\", \"example_745\", \"example_746\", \"example_752\", \"example_755\", \"example_757\", \"example_759\", \"example_764\", \"example_765\", \"example_767\", \"example_771\", \"example_774\", \"example_777\", \"example_780\", \"example_781\", \"example_785\", \"example_787\", \"example_788\", \"example_792\", \"example_802\", \"example_806\", \"example_807\", \"example_808\", \"example_812\", \"example_813\", \"example_817\", \"example_818\", \"example_819\", \"example_824\", \"example_829\", \"example_832\", \"example_834\", \"example_838\", \"example_843\", \"example_845\", \"example_849\", \"example_855\", \"example_861\", \"example_865\", \"example_873\", \"example_879\", \"example_886\", \"example_887\", \"example_892\", \"example_900\", \"example_904\", \"example_905\", \"example_906\", \"example_907\", \"example_909\", \"example_914\", \"example_915\", \"example_923\", \"example_925\", \"example_926\", \"example_930\", \"example_931\", \"example_936\", \"example_937\", \"example_939\", \"example_942\", \"example_943\", \"example_948\", \"example_949\", \"example_952\", \"example_962\", \"example_963\", \"example_964\", \"example_965\", \"example_966\", \"example_976\", \"example_978\", \"example_979\", \"example_984\", \"example_985\", \"example_988\", \"example_990\", \"example_993\", \"example_994\", \"example_1004\", \"example_1010\", \"example_1013\", \"example_1018\", \"example_1022\", \"example_1027\", \"example_1029\", \"example_1033\", \"example_1036\", \"example_1040\", \"example_1043\", \"example_1050\", \"example_1052\", \"example_1053\", \"example_1054\", \"example_1061\", \"example_1063\", \"example_1067\", \"example_1073\", \"example_1075\", \"example_1083\", \"example_1084\", \"example_1090\", \"example_1100\", \"example_1102\", \"example_1103\", \"example_1105\", \"example_1106\", \"example_1107\", \"example_1114\", \"example_1117\", \"example_1120\", \"example_1125\", \"example_1133\", \"example_1134\", \"example_1138\", \"example_1144\", \"example_1146\", \"example_1157\", \"example_1159\", \"example_1160\", \"example_1163\", \"example_1164\", \"example_1165\", \"example_1170\", \"example_1173\", \"example_1177\", \"example_1179\", \"example_1181\", \"example_1187\", \"example_1189\", \"example_1192\", \"example_1198\", \"example_1202\", \"example_1204\", \"example_1211\", \"example_1220\", \"example_1222\", \"example_1223\", \"example_1225\", \"example_1228\", \"example_1229\", \"example_1231\", \"example_1233\", \"example_1235\", \"example_1239\", \"example_1240\", \"example_1242\", \"example_1245\", \"example_1247\", \"example_1249\", \"example_1255\", \"example_1258\", \"example_1263\", \"example_1265\", \"example_1270\", \"example_1271\", \"example_1272\", \"example_1273\", \"example_1274\", \"example_1280\", \"example_1281\", \"example_1284\", \"example_1287\", \"example_1288\", \"example_1289\", \"example_1298\", \"example_1301\", \"example_1304\", \"example_1305\", \"example_1307\", \"example_1309\", \"example_1314\", \"example_1316\", \"example_1317\", \"example_1318\", \"example_1319\", \"example_1320\", \"example_1322\", \"example_1324\", \"example_1326\", \"example_1331\", \"example_1335\", \"example_1339\", \"example_1343\", \"example_1344\", \"example_1345\", \"example_1347\", \"example_1355\", \"example_1357\", \"example_1360\", \"example_1362\", \"example_1364\", \"example_1376\", \"example_1379\", \"example_1380\", \"example_1381\", \"example_1383\", \"example_1384\", \"example_1386\", \"example_1387\", \"example_1389\", \"example_1391\", \"example_1392\", \"example_1393\", \"example_1395\", \"example_1403\", \"example_1405\", \"example_1412\", \"example_1414\", \"example_1417\", \"example_1420\", \"example_1423\", \"example_1424\", \"example_1425\", \"example_1428\", \"example_1429\", \"example_1431\", \"example_1432\", \"example_1433\", \"example_1436\", \"example_1440\", \"example_1441\", \"example_1447\", \"example_1448\", \"example_1452\", \"example_1453\", \"example_1454\", \"example_1458\", \"example_1464\", \"example_1469\", \"example_1471\", \"example_1472\", \"example_1474\", \"example_1481\", \"example_1483\", \"example_1490\", \"example_1491\", \"example_1493\", \"example_1498\", \"example_1502\", \"example_1503\", \"example_1509\", \"example_1510\", \"example_1511\", \"example_1516\", \"example_1525\", \"example_1526\", \"example_1530\", \"example_1531\", \"example_1537\", \"example_1542\", \"example_1546\", \"example_1547\", \"example_1548\", \"example_1551\", \"example_1552\", \"example_1553\", \"example_1554\", \"example_1556\", \"example_1558\", \"example_1560\", \"example_1564\", \"example_1565\", \"example_1568\", \"example_1571\", \"example_1575\", \"example_1582\", \"example_1586\", \"example_1588\", \"example_1591\", \"example_1592\", \"example_1596\", \"example_1601\", \"example_1602\", \"example_1605\", \"example_1606\", \"example_1607\", \"example_1608\", \"example_1610\", \"example_1611\", \"example_1612\", \"example_1613\", \"example_1615\", \"example_1616\", \"example_1621\", \"example_1626\", \"example_1632\", \"example_1635\", \"example_1644\", \"example_1645\", \"example_1646\", \"example_1649\", \"example_1650\", \"example_1651\", \"example_1652\", \"example_1656\", \"example_1657\", \"example_1658\", \"example_1664\", \"example_1667\", \"example_1671\", \"example_1672\", \"example_1674\", \"example_1675\", \"example_1676\", \"example_1677\", \"example_1683\", \"example_1686\", \"example_1689\", \"example_1694\", \"example_1696\", \"example_1703\", \"example_1708\", \"example_1711\", \"example_1712\", \"example_1717\", \"example_1719\", \"example_1726\", \"example_1727\", \"example_1729\", \"example_1734\", \"example_1735\", \"example_1738\", \"example_1739\", \"example_1743\", \"example_1745\", \"example_1749\", \"example_1752\", \"example_1754\", \"example_1755\", \"example_1759\", \"example_1761\", \"example_1763\", \"example_1764\", \"example_1765\", \"example_1767\", \"example_1770\", \"example_1773\", \"example_1775\", \"example_1778\", \"example_1779\", \"example_1782\", \"example_1783\", \"example_1786\", \"example_1787\", \"example_1791\", \"example_1801\", \"example_1808\", \"example_1810\", \"example_1811\", \"example_1813\", \"example_1814\", \"example_1816\", \"example_1817\", \"example_1823\", \"example_1827\", \"example_1831\", \"example_1844\", \"example_1851\", \"example_1857\", \"example_1860\", \"example_1863\", \"example_1864\", \"example_1865\", \"example_1867\", \"example_1871\", \"example_1872\", \"example_1874\", \"example_1882\", \"example_1888\", \"example_1891\", \"example_1903\", \"example_1904\", \"example_1907\", \"example_1909\", \"example_1910\", \"example_1911\", \"example_1912\", \"example_1914\", \"example_1917\", \"example_1918\", \"example_1920\", \"example_1922\", \"example_1925\", \"example_1928\", \"example_1929\", \"example_1930\", \"example_1932\", \"example_1935\", \"example_1936\", \"example_1937\", \"example_1939\", \"example_1941\", \"example_1948\", \"example_1952\", \"example_1955\", \"example_1957\", \"example_1959\", \"example_1960\", \"example_1963\", \"example_1972\", \"example_1974\", \"example_1975\", \"example_1976\", \"example_1978\", \"example_1979\", \"example_1984\", \"example_1985\", \"example_1987\", \"example_1988\", \"example_1989\", \"example_1990\", \"example_1993\"], \"type\": \"scatter3d\", \"x\": [10.493583384217315, 8.435245762788558, 11.018221087562072, 9.98384930841617, -9.626223056098015, 9.800673678417196, 10.46836842725094, 10.634169871290787, 8.957678434064926, 9.920375946556216, 10.34227085978137, 9.128527021827733, 9.809978312503903, -9.568298536664997, 8.725020899342852, 10.137647340981824, 8.673163843492869, -10.53347312152879, -9.783675334270024, 10.46769359687554, 8.015408208727276, 11.54767378239452, 11.25214509955596, -8.175408910115424, 11.9355816687068, 8.11611235987225, 12.271770365694469, 9.70701045403196, 10.869746597184022, 9.431958430540849, 10.025720220033541, -10.404308337538952, -9.954018455181131, 11.647643019802018, 10.12664628802032, 8.922895408374325, -8.368354867349193, 10.357011329931542, 10.468703744678088, 10.458823943707113, 10.772701081899019, 11.289207595194089, -11.144855810158834, -10.926983185789613, 9.171477909127075, 10.256335924339526, 9.374537323401528, 10.594329342492262, 10.323713282228441, -10.769528783573914, 9.104294981947055, 10.27881056556834, 11.304348700900377, 11.096752022505033, 11.743575453129022, 10.194486486647488, 10.457483834242739, 9.93332725547926, 11.86803273768344, -9.89848808399681, -9.390669502228503, 9.296192952247893, -10.197383431942672, 10.732499693202918, -9.262533833768497, 10.786392297121502, 8.896427268940412, 10.901946433503728, -11.028127091477778, 8.723913720025177, 9.785240106096936, -10.745848409516192, 10.039879351894237, -10.375158147611467, 10.341318148670995, 10.524477684879107, 9.813415095872726, 10.402322226354569, 10.230653617549802, 9.139601895242151, 9.85949903735563, 9.716144303623786, 8.931897366444284, 8.920970390397487, 9.598183128816025, 9.958995120830197, 8.967695923438987, -10.144764471382986, 11.236642421205277, 10.713160206521602, 10.56302846272312, -9.811076572640308, 10.20025869962612, 9.886923449029705, 10.957185914776792, -10.411179310844517, 10.2469640847464, -9.415482796828721, 10.435007288586066, 10.35996937112631, 9.199129584132702, 8.238192631283729, 10.443427042591289, 8.910377565120001, 9.57324047518301, 10.979720938697058, 10.632598652969222, 9.248683002833642, -9.593113532447342, 9.632945843505032, 11.035682955447527, 10.503940901123183, -10.579830860427954, -9.218802326184473, -11.048414653464711, 9.100916668388727, 9.268320924039472, 10.114887739478057, 9.952261480231495, -9.942348710321331, 8.846837149631693, 10.308388843343513, 11.169765452480949, 12.246974069734703, 9.081837899875094, 9.715976964097, 9.366640197287804, 10.080564072848391, -10.369976402831352, 10.326490778340967, -10.249491433180236, 10.304492530927066, 10.895719333806888, 8.529441831640485, 10.222315533583716, 9.755378038262212, -10.145276371139433, 10.357258840813916, 9.18716206950141, -10.566369335116649, -11.298793614891634, 10.674557598052525, 9.349867889733387, -9.5385223896628, 10.837393633905059, -8.940724456998058, 11.652277872188462, 9.227597222530699, 9.807838975838584, 10.476849687466046, 9.881220984965086, 9.963569791250666, -10.744657758308161, 10.011397273852523, 8.055813382217941, 9.638603907158503, 10.544854621441361, 9.042340115822462, -10.638436454419935, 8.164378683042022, 9.513412433496633, 8.60109753948294, 11.987615370393424, -10.795492724647916, 9.52054658186738, 10.67330796481147, 10.234615022593392, 10.048481824214054, 10.992314635928448, 10.050356590193404, 10.866598715107344, 10.332994066182053, 9.958706382584985, 9.07817953560652, 9.017679237200836, -10.840992093345033, 8.977399381937568, 9.60580165830465, 8.709317030736694, 10.88468546180995, 10.358230057831683, 10.963728336383507, -10.633709000721142, 10.847355781098079, 8.34348505042559, 8.451189255347865, 9.618304805679696, -10.789972788377508, 8.965162886550637, 10.418540577734941, 9.285205727633324, 8.960344195266503, 8.259785631865894, 9.457045401933987, 10.553388188318976, 9.081542730435176, 10.241997757904285, 9.43068639431838, 9.284161409366323, 9.736773696931948, 10.598324179279242, 9.594590410464917, 10.482595154837599, -11.461216509758342, 8.810611168608347, 10.475608388386387, -10.018373458381504, 9.841121565051138, 10.171057032483667, -10.954662894081864, 10.808019194333745, -9.948289012721538, 10.785656706692667, 9.279430852589403, 10.261878144338827, 10.619540374142485, 9.914365794615671, 10.48867371205868, 8.454758397891458, 11.722290929558666, 9.001684388606012, 10.765579902099715, 10.122286512025141, -9.558497896471684, 8.90403473445019, 9.08486377017999, -10.702921380145169, 10.206235647263306, 9.034116401743452, 8.955402497525657, -9.537230680004182, 10.821279033546835, 8.095696369228115, -11.7897133888046, -10.19642842759966, 10.059991288670696, 11.94558763848042, 9.237724678680335, 10.775490148376921, 9.11099253589022, 9.193846572075026, 10.145329549245304, 10.19024591363446, -10.572178901484866, 10.387561135856998, 11.43635152685226, 8.588136317421844, 8.667757561809578, 10.555159499179592, 11.168833607605551, -10.098704241547294, 10.615745875759632, 10.38493445972786, -10.226028627274966, -9.687836216744836, 8.45193257719762, 10.55580918476247, 10.790531145346499, 9.20032889011266, 9.207612569747393, 9.73517780769721, 11.027865208340963, 9.055532868594206, -10.263790661958408, -10.802459050066343, 11.36671000547758, -8.843211697874004, 11.615473362450263, -9.597079751095114, 9.640265048124794, 10.099758214815905, 9.940710674514568, 9.832027657813255, -10.764947038918308, 8.376427462267928, 9.53275055886535, 10.242970489449661, 9.110927515942077, 10.120035448581802, 8.887837105881873, 8.751754689054463, 11.089996235283042, 10.307175284389883, 10.173666486235977, 9.603269505115746, 9.422042177147949, 8.83975687861723, 11.693505553695234, 10.349640416460327, -11.187566439693187, -8.19422093408932, -9.28759051328764, 9.705946283424835, 9.483538204036469, 10.162238277527592, 10.110068585648348, 9.343082047125746, 10.703783390885073, 11.191571280783037, 10.390480570257198, -8.997317363477578, -9.492862314866752, 11.198501366750031, 9.727827247733634, 9.493793344790868, 9.013154562374542, -9.887683048527386, -9.641316806568854, 7.806848628880576, 9.990251237058573, -10.179940361771306, 9.366561697369649, -9.660380768040786, -8.538125260832228, -9.786625160217627, -11.427243343483237, 10.099101074603013, -9.817316529953366, -10.110241782377498, 10.723323224444348, 10.424022582944266, 11.014533306238649, 11.305574689539354, 9.55067868091477, 10.689474511432559, 11.586748970258048, -10.622356355512382, 10.823632638556955, 9.17634192537118, 12.129060937104246, 9.72718403908991, -9.963465303741943, -11.228038945338746, 9.019036215001787, -11.023031986300529, 10.35949163456878, 11.65074421395009, -11.705480690602249, 10.157443766857137, -11.423847138303973, 10.450806739711926, -10.45304189351165, 9.399721299669665, -8.772160954367068, -9.135713674677387, -10.468551159766983, 7.686176672659016, 10.624121985485653, 11.960847131070487, 9.69772871013701, 10.474340196997298, 9.802012109878271, 9.996480594554606, 12.316396228251467, 10.169211905280166, 11.016787517824037, 9.813890324653004, 9.129463438366354, 9.888707024731966, 10.119739701985212, 10.719952708612102, 9.580831975422562, 10.110313426843643, 9.003139126027078, -10.744832524265705, 8.922499180551828, -9.934553496740941, 9.779716713830714, 9.70583846302073, -9.474215381992547, 10.991744201974397, 9.66598538827183, 8.77323011754167, 9.6535076797085, 9.915471381681419, 9.322787884125434, 10.50409390072532, 8.862661953805247, 10.431749814485553, 8.98805565459869, -10.177545367587932, 11.461621467261104, 9.581867481088928, 11.994067252772577, 10.2678979881848, 12.154410373034805, -9.865455522730684, 8.944754076947174, 9.109276505116586, 9.617578650313016, 11.115666795215523, 10.36505379883792, 11.484462991463413, 9.532667723791294, 10.33215735178506, -8.90630181614699, 9.147493539712734, 9.714817545195238, 11.586527420735305, 10.170398335999742, 11.834529328266855, 11.264943276081318, 10.761329191083295, 10.282107193625498, 9.354457717678537, 11.371105426452704, 10.6422482521583, 9.722250526757348, 9.477758795792491, 10.913734551823948, 9.920793429937886, 10.623466114955692, 9.510403538566882, 8.881210258459122, 10.14000334502986, 11.309083635206678, 9.177933254772844, 11.363584614586392, 7.982314190923963, 10.174615706813507, 9.60050047243427, 11.334505046266239, -9.664464590045462, 9.159112765486482, 9.420507151865081, 10.893199740705002, -10.884699626860554, 8.80203123678484, 9.735938447135322, 9.821835233213449, 9.247505439724966, -10.327502574758016, 7.622445997225245, 10.578156707198312, -10.999353332615787, -9.799760227028003, 11.215023631491201, 10.111326519548863, 8.767877722712202, -10.710753327692233, 9.669345755193785, 10.789910166100489, 9.481006126206982, 12.063836592912455, 10.90757434053646, 11.362913827042739, -10.672584715168233, 11.095099013101933, 9.857709836220165, -8.272322877746133, 10.066137959974888, 10.636796488242991, 9.601017091762625, 9.826012065855846, 9.931894839935904, 9.019421777006638, 9.466311902786886, 10.735224263817177, 9.534560590054182, 9.045735053494871, 9.71478516309762, 10.866296467091239, 7.966300782359443, 10.643298030918157, 8.92628351329698, 9.820986108555031, -11.204628385193152, 9.130418108362946, 9.83518989878631, 11.120211638402456, 8.061683388059446, 10.171023889719157, 8.642276908770427, 9.57856574502697, 9.985324960409054, 9.834969305544277, 10.358808446194153, 11.304797143028388, -9.713281734759565, 10.476895368397205, 9.433698955094867, 9.185636736098035, 10.072047059428238, -11.47888703638745, 10.306840566541762, -11.072715364462953, -10.740811715232345, 9.256331569097311, 12.137254529328981, 10.129911007682624, 9.08494431700812, -10.920919388255408, 9.242558615063183, 10.722321615296968, 8.92235296448255, 10.721608675001498, 10.82218395226493, 9.960695652643206, 8.532172321655894, 9.055113977662662, -9.417641513864766, 9.441895806947283, 9.898914647715415, -9.785235746408965, 9.838156681658155, 8.692617533883778, -9.686468035839148, 8.476369275619744, 10.699874492118614, 11.091896428160371, 9.764332361992958, 9.98844179118699, 8.78270654963136, 9.057000654963415, 8.923079145894814, 11.572471719086673, -10.549686518540435, 8.339251816901808, 10.864593802067697, 10.425203435355645, -10.828208387700718, 9.737372141165727, 9.395357722656064, 10.926061257176208, -8.888772540634372, 10.070265127587723, 9.767806974688073, 10.07544884479758, 9.313641106652168, -10.601224805266813, 8.956007733869436, 9.079994137730928, 9.793131784738776, 10.054596530150452, 9.76795814140496, 9.009506163870265, 11.09519779057868, 9.063673991504633, 10.451911923227017, 11.103871740961429, 9.505954308039437, 8.138830357983235, 10.452230165072667, -9.891626180663492, 10.550748784271084, 10.942814329171684, 10.502469307290585, -10.491090867593353, 10.092927093576954, 8.569747687983664, 8.972715414675664, 10.257597820099353, 9.468114782058882, 9.66744338398079, 10.33667632574524, -10.3495235798795, 10.434192934400338, 10.321045196162247, 11.012565105927509, 9.750153813689966, 10.543081763162727, -11.358672014941654, 9.629914350602126, 10.236795833009326, 9.35543627655308, 9.931529490177093, 9.992977961488249, 9.950907106462628, 11.387446712940221, 11.367833918095704, -9.614161763788605, 9.680557084020958, -9.667487318756555, 9.455771125764045, 9.120848472687143, 9.444253907932227, 10.009639016034717, 9.535454870153828, 10.031408847913223, -8.875848246366395, 9.966442812946662, 10.961845137177276, -9.73063130296495, 10.98503544274226, 9.280282208543957, 9.646841221649595, 12.011039065275167, 10.027173342855015, 9.920311359151594, -9.745539841017159, -10.067225726767935, -9.847391698568705, 10.332904306047435, 8.91014998435432, 8.990074034035361, 9.08647344087111, 9.07316135440753, 10.394630336615386, 10.211662013496504, 9.5852193342698, 11.423222515312208, 10.31785748321525, 10.084393275955676, 9.190623855919558, 9.88443099333424, -11.037829590369336, -9.87010803547558, 7.570245059305382, 8.424774524000277, 10.56531002664512, 9.451992902689724, 9.97003928334207, 9.991765582028291, 9.11789386498952, 8.008778209513965, 10.085565627167266, 8.656118101150593, 9.394462931575116, 10.025807538278281, 10.861470884931332, 11.560609657358686, 12.22018313866773, 12.574991111210238, -10.992896716514274, 10.466908279588736, 10.644761209841217, -9.215314266750289, -9.586983639480811, 9.631969704970368, 9.119249881313808, 9.822476419755505, 11.306083243389539, 9.0436827554406, -10.967917594705822, 10.117340691695846, 10.891289437185689, 11.76992441425761, 10.848835872395322, -11.628480303229658, 10.264625479200632, -9.817901712349274, -9.721861566198951, -9.773713553363642, 10.32301169863635, 10.69901386318484, 9.720789983121705, 10.49591622040179, -10.595717548744426, 11.422620239180429, 9.505976914635173, 9.735142770032583, 8.899767236815581, 9.847464729035131, 10.783907620789803, 11.972002079568146, 9.340830243415986, 10.847558472032139, 10.083693677962833, 9.85582912022954, 9.632956624356055, 9.400207173649855, 11.005519455705585, -10.930367153300406, -10.869634493619898, -9.322139389217716, 10.959988119796378], \"y\": [10.01410519288544, -7.891224742400154, -10.458603824058772, -10.774210882104727, 10.903779876323364, -9.492136830144279, -10.399769784194337, -10.617285918253693, -8.724806647854091, -9.886680425934294, 10.101898856703459, -8.399187770193485, 10.766323313360273, 9.479358248668676, -8.398579025122547, -10.477389475946282, -7.694725598241438, 10.849038067588948, 10.49994179851896, -9.913730454581707, -8.027962997749125, -11.158677767402796, -11.277107891655628, 9.980269778236444, 10.513580012140315, 9.800929076825671, -12.209235632025424, -9.615195137087579, 10.054908256136088, -9.53634558200669, -9.591720950819129, 9.267504337790651, 10.070829522440608, -12.103926911670948, -9.512430504833878, -9.778119307488797, 8.774826334535968, -10.441978329874251, -10.395835564654412, 10.395110299346175, -11.41560338296626, -11.264423399241252, 8.845480158863051, 9.837159440842782, 9.385009443148254, -10.329992658852346, -9.089253377062024, -9.727579481700436, -11.408726050756506, 10.99482638663067, -9.498118243942672, 9.514868390540283, -10.580894972536084, -11.559325631863024, 10.251613142849358, 9.98693326491842, -10.443289611653647, -9.704420637732893, -11.441618356710158, 9.517551924059202, 9.787273168337073, -9.989242143128203, 10.597817848560839, 10.251462353356205, 9.516303027891349, -10.793405510123554, -8.41680901145658, -10.149894862129512, 10.903125059594784, -9.092895063496115, 9.887199951858307, 9.474593720435186, 10.509874668646702, 9.08086859288939, -10.83253312921949, -10.364696465666759, -10.264340451448039, -10.538876011279832, 10.107978922065454, 9.195128532364857, -10.364735585696993, 9.628575526353455, -9.598953193661652, 9.607980755106887, -9.33865022471729, -10.419426439044058, 9.115949269243018, 9.837621156976866, -12.649170632679192, -11.387708498514082, -10.42364119266303, 9.9362672410091, -10.159090564630127, -9.378554488564864, -11.85755886878576, 9.999280563816733, -10.384890258513225, 10.420676374311777, -11.454968197197584, 10.390176677210903, 9.413361738084978, -8.050071753292688, -11.110062603612063, -9.056441224435575, -9.08280536560479, 10.250713711167547, -9.629642446805345, -9.51851582617214, 7.968191261368359, -9.148480634943503, -11.780791842088524, -10.743229745909831, 9.684043010466958, 10.739103561477311, 10.266819086460918, 10.478786869333236, -9.079607692887876, -9.993437432723972, -9.366749163504139, 10.436718189249255, -9.608310745180978, -10.243398093671834, -10.343028498861925, -11.692332745207967, -10.011903072666842, -8.948876421974452, -9.552023552647016, -9.588080431867583, 10.186016502986652, -9.94024216798333, 10.320561994436149, 10.189008093953783, -10.671873981135876, -7.96842643709799, -9.551804677343593, -9.328531040681266, 11.914548617400065, 10.031673857958832, -9.382878833170112, 10.12748012453488, 10.966033067594882, 9.77048529589552, -8.840936344445186, 10.162298180720125, -10.552567786894798, 12.446449500169413, -11.803585462461609, -9.433274318741175, -9.421933783731822, -10.348525489973415, 10.363760258280106, 9.602152038826013, 8.561002147739451, -10.313918634653882, -8.269568709140785, -8.79371090968553, -10.263381259309304, -9.314280803986712, 9.458114783929284, -8.179710314579962, 9.338501140948575, -9.288784492240104, -10.709137309506437, 10.17313531883621, -10.398253016519874, -9.852922348293403, 10.000038278911402, -9.26069586082904, -10.820549997402344, 10.760055190325858, -11.138213988296677, -9.99562360821474, 10.137189730761346, -8.5124626356676, 9.558090713510635, 10.791785209496242, -9.302045967290526, -10.431308933071398, -9.196530370925833, 10.613100648978632, -10.918391569153282, -10.773813787615856, 10.756331707964835, 10.999677423330759, -8.292369748380777, -9.012683384434014, -9.623522721256348, 10.011220681863877, -8.765479538923389, -10.76140959220108, -9.554820961872492, -9.079055852116605, 8.825517855755521, -9.163449185382884, -9.749925327724466, -9.691329388195875, 9.523656560406579, 10.404929614360366, -10.037031910788015, 9.571108661029168, -10.42507874963256, -9.207501165491085, -10.550345409656497, 10.650297724731626, 10.6404657916649, 10.674641920985898, 9.609120162381627, 10.260201790755938, -10.074990122903342, 9.47595490049159, -10.381845818646811, 8.344892224771062, 9.755645782886683, -9.593531623583525, 10.44677609480286, -11.34785356591295, 9.725099560479924, 10.06149459680695, -8.481006744399302, -11.974410744073895, -9.016324189389021, -10.76574234849962, -10.392798604874324, 10.258950979061463, -9.247121640872205, 10.478925863551058, 8.990240383159652, 10.675178463599504, -8.730581416732372, 10.0530821515187, 10.040100541693121, 10.738636990284267, -8.709943617991021, 10.25476115182264, 11.406799055398858, -10.155987320991384, -11.703454006234145, 10.246755815391186, -10.818373720381363, -9.346483407497251, -9.86818296053777, -9.478469057712909, -10.602608677055663, 9.350097232741284, -10.713160225405968, -10.861744639344803, -7.910736786017557, -8.674964003689496, 10.883516839321539, -11.228199422359488, 10.276666422342304, -10.72879121762983, -11.532362149032641, 10.765309450621181, 8.773731741356283, -8.094387982090826, 9.92699846137191, -11.300674245175262, -9.649200466620917, -8.778364081114308, 10.04532752620984, -10.141002712655597, -8.738864664031528, 8.831999623034106, 10.626272626427072, -11.203342089517406, 9.099534076769748, -10.33097363058447, 10.36089247740142, -9.99165167945987, -9.753633021049215, -10.024586798303558, -9.054781263235437, 10.035457171278212, -8.73866190475791, -8.439332392160138, 9.92268252333878, -9.385933684704971, -10.412617140303071, -9.135492198542433, -9.343988298045705, -11.66776198328768, 10.424176387922564, -8.860601148755743, -10.028601619425434, -8.889823952412574, -8.599860458786925, -10.98653594248575, -10.494177272264961, 10.053099846498878, 11.078472679099978, 10.008724720265848, -9.344919935956376, 9.303779093242081, -10.051441308859976, -9.550700019430082, -8.886891576044587, -9.31982122120204, -12.105365349841925, -10.372994733724179, 10.719155465580053, 10.409032195161066, 10.365689351923868, -10.084235519318488, -9.777384965349375, -8.828765376463737, 8.580508946723041, 10.428075087262679, -8.931513397713655, -10.650375621714963, 9.530836796828664, -9.24725808263798, 11.49602702578692, 8.910586364260705, 10.96727602050266, 8.63618414890807, -11.200787859172234, 9.468992629933709, 9.449361295081262, -10.894990348452893, -10.147036179374087, -11.291127957101358, -10.974157122749373, -9.149500276299554, 10.821230791880701, 11.222085854278658, 11.426175326695079, 9.237094981736691, -9.14922752484206, -11.540570412072121, -9.160070752710025, 8.87891171952609, 9.23648730800138, -8.127485767272148, 9.87391020899139, 10.050764625865806, 10.90457172204548, 9.40845714752793, -9.83777745653686, 10.11464822999978, -10.87877267693809, 11.740340627627962, 10.431435455954395, 9.672132476212827, 10.30034730813928, 10.25758519132164, -8.319832114286235, 10.926062355408726, -11.771880905687238, 9.784036887787156, -11.172875096111246, -9.86312600033702, 9.952414921235462, -12.404231682598155, -9.563725146335802, -10.646445135930009, 9.509887967924243, 9.67098446469575, -8.418197611706205, 9.750963144890804, -10.626752879061858, -9.354909686981113, -10.42670909327773, -8.367939317298692, 10.148561586720621, -8.596185049761313, 11.101809816737134, -10.264075040090368, 10.404270682717305, 10.43658174669808, -10.660171749285118, -9.22880250426792, -9.696576277324176, -10.214756341398738, -10.353440674107208, -9.295978007967227, -10.893207299136021, -8.412575161334074, -10.919650478186082, -9.328372506207709, 9.850076046476488, -11.703750405588737, -9.858166663572026, -12.548511419962919, -10.679804789991396, -11.9818292755442, 9.578672293787015, -9.24012133180094, -10.21586926888472, -8.914335236483742, -10.981526924352512, -9.876204577229775, 10.743757420192532, -9.890299860088254, -10.33939398657915, 10.591008790480572, 10.289627573960255, -10.249806622556543, -12.017840482878295, -10.56757900476417, -11.859785430077673, 9.904285840409395, -10.100119010645248, 10.372289517607001, -8.913022722998518, -11.678369385776033, -10.704605625696127, -10.388980744330219, -9.952721971974094, -10.734796414214593, -9.148960065253195, -11.464666184197306, -9.300899614379949, -9.861466154442875, -10.699481923092598, -11.207941416916666, -8.733379233503493, -11.35198134704525, 9.390462630291305, -10.270833006691065, -9.738546465243024, -11.028681236046628, 10.004823787815738, -9.118656059233404, -9.706427884724583, 10.402510748769142, 11.08452470825461, 9.410724737235629, -9.42038121230914, -9.782732191150973, -9.337274742671445, 9.666002727627301, -7.884666938393114, -10.033784865105078, 11.128574250724137, 9.091625514607683, -11.484738894278118, -10.94424650465871, 8.760058349735306, 9.745625747389102, -10.09463086516691, -10.293920690108616, -8.907295788776194, -12.307505141253598, 9.924232281720649, 10.59025550347912, 9.501495190633165, 10.302369420258461, 9.734040384924315, 11.957942351152115, 9.723725959106037, 10.817200783565575, 9.982630867516571, -10.571577064537227, -9.826125169143296, -8.959538200362806, -9.359026211470162, 10.030399103934636, -9.808537116925846, -8.5457485370874, -9.993420705679725, -11.774645643521257, -7.651405414380642, -10.82941171883214, -9.099248587374458, -9.753269996973318, 8.949868204831452, -8.196816273370768, -9.245093074566899, -10.867309983840501, -7.939455498105755, -9.442699941158075, 8.853408561320805, 8.633269334044355, -9.84980202085013, -11.420385438058302, 9.727806122017935, 10.71625538599102, 9.968200897206875, -11.072915298849928, -10.183266496311088, -9.143312870768675, -9.993119272936516, 10.585026561431553, 10.640800591382586, 10.136190614285802, 9.51962373467165, 10.079543037475824, -12.236077031056826, -10.496033106368579, -8.696848293813144, 10.332329865815211, -9.070237842350604, -10.335716472208187, -9.154396370504593, -9.615336072949583, -10.024847546017032, -9.807662567985206, -8.739411482093054, 9.20712632959409, 11.20850685095655, 9.660612703609923, 9.331248610616015, 10.000674918356072, 9.900434685789717, -9.064385985291853, 9.476609570481237, -8.277458195361085, -11.15984596002094, 10.520149737112781, -9.620802316252488, 11.39818009942845, -8.60624138014137, -9.300783696061403, -9.202499019151833, -12.086130735604984, 9.637781613730281, -8.784868996861668, -10.783160878618753, 9.480019134886073, 9.201240561425783, -10.080109286535235, -9.648700408185789, 10.77206163716103, 11.007601921499061, -9.65193166628177, 9.705800115233597, -10.266795282841814, -10.094756144252072, 10.39566767611055, 9.984595132299455, -8.961506063628905, -9.01160069994824, 10.041683692325474, -9.187981833096819, -9.878872508095563, -10.667170668346403, -9.037887876958749, -9.570773451726941, 10.54624804707836, -9.440032445628992, 9.835668866163921, -9.482505773977604, 10.226826710642644, -10.252520163949079, -10.413580579982913, -10.635370032834196, 10.423639683708368, 9.683446933341903, -8.22415477912654, -8.153803057495177, -10.18816903842753, 9.495618708241382, -8.881054224378337, -9.666993340937722, 9.550555139558304, 9.876520859581419, -11.135902618551365, -10.703679695916634, -10.132054536357373, 10.429507334117064, 8.55843739832131, -8.841972480518951, 10.214131854460607, -10.320750828823405, -10.39463161995766, 11.092362245582013, -10.202594394746871, -10.706987980931277, 9.988748761102281, 8.910039216400994, -11.129898150382257, 9.86634566788138, 9.431014707328531, -9.029157280293623, -9.511728958040734, 10.271194545036302, -9.9924540368512, -10.702550003640727, 11.103447744764125, -10.601895149375325, -11.16519453956637, 8.889408389186457, 9.869588754744528, -9.131592785389316, -9.981290856373448, -11.25504116320015, 9.5464004421366, -10.239986076562163, 11.22295989005526, 9.805235148953999, 9.44992516211335, 10.418881400852598, -8.960870271844778, 9.829517925506865, 9.515012558649133, 9.234825532650337, 10.589826848304172, -9.580540294393051, -9.531591236803534, -12.022936418655576, -10.455334350972338, -10.714184637506802, 10.435355776131154, -10.584510440113748, 10.037105579401995, 9.96113717786642, -7.870461304954226, -7.607100941010975, -10.519671076156696, -8.534216847224874, 10.627261213795787, 9.815347039205117, -10.140461931170599, -7.691496231422538, -9.99524285586753, -9.281128306388698, -9.921452819785591, -9.829080216228636, -10.181934352810824, 10.47255513844246, -12.238920879391944, -12.691828511652885, 10.111186649754954, -11.285128123461991, 10.013899710057572, 9.88231548772226, 8.737477334391421, 10.00406494926385, -9.368765122698152, -9.723688543190825, -11.14228396714061, 10.052633802920854, 8.027890348115404, 9.89402377908522, -11.059790718383244, -11.299229516398208, -10.04517923300264, 9.834500892108206, -9.844748787880729, 9.66410391355475, 10.00389432462614, 10.34187795420371, -10.152535692998065, 9.694084463195365, -10.674199511598944, 10.65389194223124, 8.758800454411789, -11.968170987931064, -8.461977983857974, -10.093224219316337, -8.424108267502739, -10.35363567857392, -10.119335201854904, -11.198014201516118, -8.834464917618332, -10.808562433239466, -12.039101985957874, -10.263884414172477, -9.390952193120025, -9.40275719937138, -11.918077030473412, 10.01963815991751, 9.86319299988144, 9.108952182021575, 10.267980411651283], \"z\": [-10.500123388230085, 10.672512251291952, 10.28301685254457, 10.273394537898225, 9.93798230745798, 9.27666605572937, 9.563265763253227, 10.656682518335908, 9.127420240848712, 9.651030933916005, -9.002146605740911, 11.72666895206439, -10.899588231235295, 8.413322296897869, 10.770956293344593, 9.875507968879255, 9.78097303541846, 11.609587658095752, 10.671447397643464, 9.307717256110971, 10.424667216468261, 11.159345502860825, 8.39340318160378, 7.65222183277467, -12.244753128243262, -11.232420826242517, 8.803774959385853, 9.316821014425273, -10.537428352265072, 10.359343402330131, 10.503767058665238, 9.328551412049142, 9.201235351278225, 11.165720966707998, 10.294037811692958, 9.481267799767556, 7.143218678074092, 9.83154426840254, 11.479924115084748, -11.435951919223045, 10.251966156411356, 11.11578777878992, 10.126173168125774, 10.649139215020277, -9.886036040427031, 10.431137177162958, 9.498692693216487, 8.901663649586105, 10.23951185760415, 12.192251090323449, 11.014656514408042, -10.548180203132947, 11.650204502501042, 9.089148884573609, -11.206934418946037, -10.336529076560353, 8.279041557826396, 10.919587861303086, 10.79068374884409, 9.190804587900066, 8.35394016899439, 10.622825923524598, 11.142448886662251, -11.99370379191763, 8.9350962646687, 9.625272881894377, 10.11902062546687, 11.387071751512815, 12.344978399825525, 8.9809530965412, -11.414313119622255, 9.932359052598988, -11.315582592519405, 9.826180299466994, 9.959221728308442, 10.644645267293885, 10.235829207631657, 10.134616536943863, -10.465342505595158, -8.225898516398237, 8.524890030622997, -9.497108381088523, 10.7234298115487, -9.86467507380977, 9.14925041641074, 10.834919544695373, -9.753542637239887, 10.883595704263975, 9.190452673982579, 10.485418678773193, 11.10747444792385, 9.584473397560167, 8.564289493756766, 9.565455960925453, 10.474392245819738, 9.8294912682196, 10.016121464973791, 9.541743987442018, 11.045147517843327, -11.507212555774013, -8.956470030449724, 8.20653236359715, 9.01314367506957, 10.600861412121718, 10.093642082499386, -11.686899889814718, 11.384987415443389, 9.396051556089775, 7.818289411137817, 10.487418419852904, 9.314678237378857, 10.714335136464458, 11.090350085010904, 9.793238244921767, 11.52771763412004, -8.922244024881888, 9.348094151727764, 7.917259181685305, 10.434304787386502, 9.9550388134956, 10.262893094761594, 9.86821988746793, 10.193094117645423, 12.765167924012138, 10.193256675349042, 10.79046030343738, 10.033695027692724, 10.670819375803026, 10.66926568982513, 10.496185169182409, 11.39728925765733, -11.475830395857963, 10.222517490039488, 10.171658601833503, 10.224443328440914, 10.341642517315929, 12.96132593181582, -10.344163336560351, 9.908612042665128, 10.805357959002475, 12.777281271794504, -10.135030022006715, 10.8109492284967, 9.038652701348049, 9.741891041480729, 11.201761136544421, 9.26294002235134, 10.211703859923349, 10.734932412606577, 10.104184845215107, -9.950784651037766, -10.692254422146243, 9.273579115065605, 10.832702434279467, 9.985237438413645, 8.619909975857372, 9.41117264654299, 8.197377905416488, 9.596827836587487, 9.826704307486859, -9.600129423138158, 10.371895970407182, 12.535033294114596, 10.698420389160626, 9.943083052893023, 11.38124791915682, -10.568458955113448, 10.053751908071048, 11.323538791233512, -11.583335403099785, 10.049532328756897, 10.627109180860666, -9.435759900796269, 10.790361329591969, -8.743238059792414, 12.042985271639566, 10.20139852100335, 10.19354204852999, 9.57494483344526, -11.394977563394646, 10.507799458380523, 10.607204616043319, 11.012414303632688, -11.580702654440456, 9.950274859665827, 9.991904779057563, 12.440146329110405, 10.671236936137861, 9.032855605425153, 8.710437691904872, 11.123773931448266, 10.178043059856451, -9.089722105412385, 10.60682397356019, 10.726667159875522, 9.785454051921047, -9.774679981234495, -10.048454651813065, 10.271481670793015, -9.997096779087897, 9.010265108178325, 11.950154025978051, 10.017524318835502, 13.763702727455694, -8.65682317111933, -11.541448667315542, 9.773670873087065, -10.623948194498938, 10.050667496771192, 10.02745918728148, 9.809730755249202, 8.643046073196318, -9.921137734318984, 7.520888696486299, -10.638536454675373, 8.176203597915618, -9.047268033207635, -10.295140108024706, 10.000075748052017, 11.724230051935882, 9.580122628431639, 10.05136840154421, 10.099294525907792, 9.47130959729768, 9.114027031730586, -10.219205628841742, 10.320375477637562, -10.570859711132568, 11.820370378906189, -7.9604821491101845, 10.002126808816763, -9.484220897261538, 9.569667424390783, 13.005207404501766, 11.619231707627836, 10.796594645620267, 9.883941395558075, -9.298388224527084, 10.479922908527747, 9.532822841580078, 8.84549987579269, 10.794556200899478, 10.605305047484997, 10.266057228182836, 10.36529096109478, 10.722705524196005, 10.836195505991169, 10.105587227040136, -10.326609686914285, 10.443737472930087, 10.614841524304342, 11.672085944855901, 11.543989979697503, 10.735851703843991, 8.592523329504413, 10.607597715593155, -9.120684528259323, 10.26083975671618, 10.650207360045258, 10.170258681555023, -10.208210908663542, 9.446022991580067, 9.191809901074414, 10.457484591161718, 11.520937569366417, 11.464033385341157, 7.799744126308003, 11.021269394166943, 10.006609439477836, 10.31746249912147, 10.027493815407464, 12.018656287105745, 10.330381550771676, 10.794945260976341, 9.945919103421529, 9.865735510250708, -10.662205604822772, 9.182601284022782, 11.765437015413697, 11.4669534753914, 8.342605422319503, 8.9420554713544, -11.00116832317536, 11.209282359707059, 11.059809808139583, 9.952700382111493, 8.224932688525092, 10.682215236832361, 10.509677252842687, 11.528294022959868, 8.555914515405245, 9.097456561334331, 9.531194562093146, -9.644099901313304, 8.62006191912007, 10.238440929636528, 10.409040007764483, 11.120180888802722, 9.529996949405533, 10.6640213573408, 9.941561585581315, 8.190889865370806, -11.154015318229987, 8.60503809703725, 11.78963613662214, 9.702263087643523, 8.42731452800651, 10.13450089548258, 9.423850710109098, 8.260499077970062, 9.75303330343961, 10.42881692256391, 10.875289516679917, 6.410449775600263, 10.46468461430838, 9.880747795684826, 9.34235459288224, 8.84840455579881, 10.365836052110406, 11.312744185844057, 9.55661480040479, 10.566648513566786, 10.631824560750546, 9.558530597869657, -11.269121150412802, -12.314157341314388, 12.001202718812358, -9.839634047663017, 10.873228055432923, 10.011040412312292, 9.814927389162422, 7.743815405812309, 10.545317596080734, 10.339205174867937, 10.193612515243743, -8.99694370355946, -11.345482648139264, 11.010185069134478, 9.636200467961466, 11.819038227497673, 9.731249622727743, 11.813979821185168, -9.67948964185658, 7.324349369502453, 9.546831595541779, 11.384116978493374, 8.60713006793866, -11.008534846640876, 9.120508293101384, -10.346589807812512, 7.950163022523199, 10.967189250796837, -10.068396262244148, 10.594599196782223, 9.814358938867285, 10.603036325638769, -9.507385488240397, -9.511081405109277, 11.323574892748757, -10.519454863462123, 10.349011744914305, 10.51403218086384, 10.872727173730446, 10.641567440761994, 10.58917908340079, 10.041692704565124, 10.996284936672367, 9.814946632487224, -10.72303765065198, 10.014453801981148, 8.726768913515212, 10.683519518447577, 9.118401174777164, 9.211452955337053, 8.787846775967335, 9.45394126752168, 10.241211123839726, 10.095323131233076, 9.70311983432276, 9.698656687068274, 10.039814392964288, 10.149863656963198, 9.261172396653652, 9.143307252500765, 9.965465920663183, 10.485234786673985, 8.658424531516687, 10.028619586417179, 9.519813163383416, 11.503866406582834, 9.991056281247644, 10.710830801823656, -10.523128062416411, 10.379166191481112, 9.560933656148917, 9.666355724812961, -9.570358442539144, 8.70113014275702, 10.452531190453714, 11.008401689552414, 10.22607452255453, -9.534054683680772, 11.669542960201102, -11.628109461610862, 9.249320377027775, 9.268017855372339, 10.229274277963182, 8.74686871531059, 9.92114356210314, 10.519855723601625, 11.062801081038948, 10.50167516689743, 9.357189950837997, 8.094334973630982, 9.499724904170348, 10.295146634514385, 8.969747763186652, 8.462918072140354, -8.48624273404861, 9.274486675180743, 9.873812997594587, 10.552574528217551, 9.576464465925067, 10.073548850209708, 9.520842412867879, -11.211195700475582, 12.975914496945443, -9.58260425073259, 10.567245859714884, 10.224401915133082, 10.006897340370783, 10.180868662692887, 8.924844373676919, 10.48519470910566, 12.695838620346816, 9.201547536678527, 9.953317534834301, 10.018333133265495, -8.869945943615066, 10.604820231735738, 10.423352984232942, 10.118886376262221, 10.6958675300022, 10.225435541030233, -10.866282887503282, -10.05685335178765, 9.873396640310283, -11.203549907473171, -10.42189152593294, 9.885118104248006, -9.359013085001006, -10.922617967917013, -10.293771765577173, 8.575432080422994, 10.280494595296148, 8.44177762685622, 9.701749422997468, -10.677710708031604, 10.04981082018646, 10.690755958508229, 9.75809290838308, 8.639849948720938, 8.22718522525064, 10.498055462567345, 10.251383378875257, 11.415655711555594, 10.46110711731237, 10.163819611788892, 9.586811580289188, 9.866233545386605, 9.759618016906986, 11.263779161201558, -9.068298716277875, -7.94380550245261, 8.829589477639084, 9.394628971617287, -10.835697799730514, -10.71250274526803, 9.139857738230763, 9.659001446409812, 8.241032038735385, 11.153813539801272, 9.792811001958041, 12.196989805535733, -10.700057955205818, 11.458662899983427, 10.681592846220296, -10.125492481981453, 9.721321773245709, 10.82233546778987, 9.27071899800074, 12.157371874145525, 11.581043047590251, 10.27622367211569, 9.40027644446564, 10.455464028731981, 11.325717481166038, 11.303745341546936, 8.468391412950062, -8.555275689021713, 9.693359464634135, -8.824577137305564, -8.218633221786378, 10.170278283843546, -9.628898867109262, 9.33733721909058, 9.597904698102731, 9.235694965025129, 10.725885819936652, -10.666176469377167, 11.321639885047436, -11.325841051996258, 9.602779171850774, 8.82986627397529, 10.901020627875672, 9.118766843612532, 10.316008096476313, 7.524086170069129, 7.688890487797247, -10.669831736914858, 9.154031384716836, 9.573715660442724, 9.687968079194945, -11.043037451368077, 9.747627158203295, 9.710287036506552, -9.970994427955397, 8.973845386697924, 7.94108467971455, 11.244541040909548, -9.597191272250877, 10.596496112750284, 9.804746554555768, -10.30122816545812, 9.14852726265331, 10.019871433645838, 11.532839834284543, 10.624092595953753, 10.991341695013748, -10.840170010706784, 9.831722185926475, -11.097899157595243, 11.265127175031692, 10.555077817707792, 11.136198039808725, 9.557075824715076, 10.493039887546965, 11.452955245738528, -11.037379035258612, 10.895121763872138, 8.06567370104311, 11.380555366452217, -10.320005802010174, 11.837590291669914, 9.191159521224208, 9.542173586592591, -7.933209967586988, 9.187826658153547, 11.009624357318462, 9.255032999493805, -9.912288964901578, 10.630806486812265, 9.362347708659977, -9.696071950984022, 8.715802519258483, 10.55199570028208, -11.88331003746198, 9.52293127725085, 9.669302631445571, -10.425443836981838, 8.594779835693966, 9.264745730023057, 9.266861610120937, -8.654642661338587, 10.072326824297694, 10.837661655160648, -10.479066993993703, 9.380626120865106, 9.48833315440421, 10.210694873766004, 8.663989082064194, 9.937964315064125, 8.782359626757446, -10.557376468848293, 10.783146873155745, 10.2222123581934, 11.654294506007881, -8.706079015143763, 8.924857733781629, 11.263247036240845, 9.627353980892043, 8.819977856590766, -9.298071080389407, 9.772755709899657, -8.966730830424918, -8.934379250227138, -7.815794178459008, -10.199181601738712, 10.802980240180347, 10.157891323008224, 9.84350081731568, 10.375581605009495, 9.669572387086957, -10.522076859470545, 9.148292403396209, 10.838865025399247, 9.931325288673897, 8.95398892985882, 9.867185295535434, 10.376958418184392, 9.280558347980978, -10.53305321869413, -8.58177299139479, 8.879930117363202, 8.680611423657002, 10.127814593362215, 10.43554369945796, 9.135475412930518, 9.786887681710281, 11.105125684409375, -10.98199465592725, 10.564972420759261, 10.049060019644342, 11.156544010236866, 11.516708728866185, -12.019338774598594, 8.931316797449874, 7.765281412035182, -9.616987587552426, 10.877415684963257, 10.217466018432019, 9.902282021007885, -9.991099711050712, 8.900816252937831, -9.390680279958174, 9.154971720663768, 12.601520217645131, 10.531327614915758, 12.283009336169515, 10.393744439801969, 10.020377934081154, 9.432185585790089, 9.456313407785862, 10.290221952195866, -9.618674121552127, 8.100228623812834, -9.869842165077907, 8.879637794105603, 9.765698326731025, 11.064478231890208, 9.810418067368671, 10.461375224001072, 9.349301481614672, 9.875212400604417, 11.510464091281017, 10.573073546162425, 10.71461830238618, 9.643098699818198, 9.643359728041203, 10.224833378514225, 10.712195298970096, 9.389534286781604, 11.210570159033065, 11.339193480457725, 7.969227145492648, -9.941680003794376]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 1\", \"marker\": {\"color\": \"rgb(255, 127, 14)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 1\", \"scene\": \"scene4\", \"showlegend\": false, \"text\": [\"example_0\", \"example_3\", \"example_5\", \"example_6\", \"example_7\", \"example_9\", \"example_10\", \"example_12\", \"example_18\", \"example_24\", \"example_25\", \"example_27\", \"example_28\", \"example_31\", \"example_33\", \"example_38\", \"example_39\", \"example_41\", \"example_42\", \"example_47\", \"example_48\", \"example_52\", \"example_54\", \"example_55\", \"example_57\", \"example_60\", \"example_62\", \"example_66\", \"example_68\", \"example_74\", \"example_77\", \"example_79\", \"example_80\", \"example_82\", \"example_83\", \"example_85\", \"example_86\", \"example_88\", \"example_90\", \"example_92\", \"example_94\", \"example_96\", \"example_97\", \"example_102\", \"example_104\", \"example_105\", \"example_106\", \"example_108\", \"example_110\", \"example_113\", \"example_117\", \"example_125\", \"example_126\", \"example_129\", \"example_131\", \"example_132\", \"example_133\", \"example_136\", \"example_137\", \"example_138\", \"example_139\", \"example_140\", \"example_142\", \"example_144\", \"example_145\", \"example_147\", \"example_155\", \"example_156\", \"example_158\", \"example_164\", \"example_165\", \"example_167\", \"example_169\", \"example_171\", \"example_172\", \"example_174\", \"example_177\", \"example_178\", \"example_179\", \"example_181\", \"example_183\", \"example_193\", \"example_195\", \"example_204\", \"example_209\", \"example_213\", \"example_214\", \"example_215\", \"example_221\", \"example_222\", \"example_223\", \"example_224\", \"example_227\", \"example_228\", \"example_232\", \"example_234\", \"example_235\", \"example_238\", \"example_242\", \"example_243\", \"example_248\", \"example_249\", \"example_255\", \"example_258\", \"example_260\", \"example_267\", \"example_280\", \"example_282\", \"example_285\", \"example_287\", \"example_290\", \"example_291\", \"example_294\", \"example_296\", \"example_299\", \"example_302\", \"example_308\", \"example_312\", \"example_314\", \"example_318\", \"example_319\", \"example_321\", \"example_323\", \"example_325\", \"example_326\", \"example_327\", \"example_328\", \"example_329\", \"example_333\", \"example_336\", \"example_338\", \"example_341\", \"example_346\", \"example_347\", \"example_348\", \"example_349\", \"example_355\", \"example_357\", \"example_359\", \"example_360\", \"example_362\", \"example_364\", \"example_370\", \"example_372\", \"example_373\", \"example_375\", \"example_377\", \"example_386\", \"example_388\", \"example_389\", \"example_390\", \"example_404\", \"example_409\", \"example_410\", \"example_419\", \"example_421\", \"example_423\", \"example_424\", \"example_428\", \"example_430\", \"example_434\", \"example_435\", \"example_440\", \"example_442\", \"example_446\", \"example_447\", \"example_448\", \"example_449\", \"example_451\", \"example_457\", \"example_458\", \"example_460\", \"example_461\", \"example_467\", \"example_468\", \"example_475\", \"example_477\", \"example_490\", \"example_491\", \"example_499\", \"example_500\", \"example_501\", \"example_503\", \"example_504\", \"example_516\", \"example_523\", \"example_525\", \"example_528\", \"example_531\", \"example_533\", \"example_536\", \"example_539\", \"example_541\", \"example_542\", \"example_545\", \"example_547\", \"example_549\", \"example_553\", \"example_558\", \"example_560\", \"example_566\", \"example_568\", \"example_571\", \"example_573\", \"example_578\", \"example_587\", \"example_589\", \"example_594\", \"example_597\", \"example_601\", \"example_603\", \"example_605\", \"example_615\", \"example_621\", \"example_622\", \"example_624\", \"example_626\", \"example_629\", \"example_634\", \"example_636\", \"example_638\", \"example_643\", \"example_644\", \"example_649\", \"example_652\", \"example_657\", \"example_660\", \"example_661\", \"example_664\", \"example_665\", \"example_666\", \"example_667\", \"example_668\", \"example_669\", \"example_671\", \"example_672\", \"example_673\", \"example_676\", \"example_677\", \"example_682\", \"example_688\", \"example_691\", \"example_695\", \"example_697\", \"example_700\", \"example_708\", \"example_711\", \"example_713\", \"example_714\", \"example_716\", \"example_718\", \"example_722\", \"example_723\", \"example_724\", \"example_731\", \"example_732\", \"example_735\", \"example_737\", \"example_739\", \"example_743\", \"example_750\", \"example_754\", \"example_756\", \"example_762\", \"example_770\", \"example_772\", \"example_778\", \"example_782\", \"example_783\", \"example_786\", \"example_793\", \"example_796\", \"example_798\", \"example_799\", \"example_803\", \"example_809\", \"example_810\", \"example_811\", \"example_814\", \"example_816\", \"example_820\", \"example_823\", \"example_826\", \"example_828\", \"example_836\", \"example_839\", \"example_841\", \"example_842\", \"example_844\", \"example_846\", \"example_847\", \"example_852\", \"example_857\", \"example_858\", \"example_859\", \"example_862\", \"example_864\", \"example_867\", \"example_868\", \"example_869\", \"example_874\", \"example_875\", \"example_881\", \"example_882\", \"example_885\", \"example_888\", \"example_889\", \"example_893\", \"example_894\", \"example_898\", \"example_899\", \"example_901\", \"example_903\", \"example_908\", \"example_910\", \"example_912\", \"example_916\", \"example_917\", \"example_918\", \"example_921\", \"example_922\", \"example_924\", \"example_932\", \"example_933\", \"example_934\", \"example_938\", \"example_940\", \"example_941\", \"example_944\", \"example_945\", \"example_946\", \"example_950\", \"example_953\", \"example_958\", \"example_967\", \"example_968\", \"example_970\", \"example_973\", \"example_974\", \"example_982\", \"example_983\", \"example_986\", \"example_987\", \"example_989\", \"example_997\", \"example_998\", \"example_999\", \"example_1000\", \"example_1001\", \"example_1005\", \"example_1006\", \"example_1007\", \"example_1009\", \"example_1023\", \"example_1024\", \"example_1026\", \"example_1030\", \"example_1031\", \"example_1032\", \"example_1034\", \"example_1035\", \"example_1037\", \"example_1041\", \"example_1046\", \"example_1047\", \"example_1049\", \"example_1055\", \"example_1057\", \"example_1058\", \"example_1065\", \"example_1068\", \"example_1074\", \"example_1078\", \"example_1079\", \"example_1080\", \"example_1085\", \"example_1087\", \"example_1088\", \"example_1089\", \"example_1091\", \"example_1093\", \"example_1094\", \"example_1096\", \"example_1097\", \"example_1101\", \"example_1108\", \"example_1110\", \"example_1111\", \"example_1112\", \"example_1113\", \"example_1116\", \"example_1118\", \"example_1121\", \"example_1124\", \"example_1128\", \"example_1131\", \"example_1132\", \"example_1137\", \"example_1140\", \"example_1142\", \"example_1145\", \"example_1149\", \"example_1151\", \"example_1155\", \"example_1156\", \"example_1161\", \"example_1168\", \"example_1169\", \"example_1172\", \"example_1175\", \"example_1176\", \"example_1178\", \"example_1182\", \"example_1185\", \"example_1188\", \"example_1190\", \"example_1193\", \"example_1196\", \"example_1197\", \"example_1200\", \"example_1201\", \"example_1205\", \"example_1206\", \"example_1208\", \"example_1209\", \"example_1210\", \"example_1214\", \"example_1216\", \"example_1217\", \"example_1221\", \"example_1226\", \"example_1230\", \"example_1232\", \"example_1234\", \"example_1236\", \"example_1237\", \"example_1244\", \"example_1251\", \"example_1252\", \"example_1253\", \"example_1259\", \"example_1261\", \"example_1262\", \"example_1268\", \"example_1269\", \"example_1278\", \"example_1283\", \"example_1285\", \"example_1286\", \"example_1290\", \"example_1292\", \"example_1293\", \"example_1299\", \"example_1302\", \"example_1303\", \"example_1310\", \"example_1313\", \"example_1315\", \"example_1323\", \"example_1328\", \"example_1329\", \"example_1330\", \"example_1333\", \"example_1334\", \"example_1336\", \"example_1338\", \"example_1340\", \"example_1341\", \"example_1342\", \"example_1351\", \"example_1352\", \"example_1353\", \"example_1356\", \"example_1358\", \"example_1359\", \"example_1361\", \"example_1366\", \"example_1368\", \"example_1370\", \"example_1374\", \"example_1375\", \"example_1385\", \"example_1394\", \"example_1401\", \"example_1402\", \"example_1404\", \"example_1406\", \"example_1407\", \"example_1418\", \"example_1419\", \"example_1421\", \"example_1422\", \"example_1427\", \"example_1435\", \"example_1446\", \"example_1449\", \"example_1450\", \"example_1455\", \"example_1456\", \"example_1457\", \"example_1460\", \"example_1461\", \"example_1463\", \"example_1466\", \"example_1467\", \"example_1468\", \"example_1470\", \"example_1473\", \"example_1477\", \"example_1480\", \"example_1486\", \"example_1488\", \"example_1489\", \"example_1492\", \"example_1497\", \"example_1501\", \"example_1505\", \"example_1506\", \"example_1507\", \"example_1512\", \"example_1514\", \"example_1518\", \"example_1519\", \"example_1521\", \"example_1523\", \"example_1524\", \"example_1532\", \"example_1536\", \"example_1538\", \"example_1540\", \"example_1541\", \"example_1544\", \"example_1545\", \"example_1549\", \"example_1557\", \"example_1561\", \"example_1562\", \"example_1563\", \"example_1566\", \"example_1572\", \"example_1574\", \"example_1576\", \"example_1578\", \"example_1580\", \"example_1581\", \"example_1587\", \"example_1593\", \"example_1599\", \"example_1604\", \"example_1609\", \"example_1614\", \"example_1617\", \"example_1618\", \"example_1619\", \"example_1620\", \"example_1622\", \"example_1625\", \"example_1627\", \"example_1628\", \"example_1630\", \"example_1637\", \"example_1639\", \"example_1640\", \"example_1641\", \"example_1642\", \"example_1647\", \"example_1662\", \"example_1665\", \"example_1666\", \"example_1668\", \"example_1669\", \"example_1673\", \"example_1682\", \"example_1684\", \"example_1691\", \"example_1692\", \"example_1697\", \"example_1699\", \"example_1701\", \"example_1704\", \"example_1709\", \"example_1713\", \"example_1718\", \"example_1728\", \"example_1730\", \"example_1732\", \"example_1736\", \"example_1741\", \"example_1747\", \"example_1753\", \"example_1758\", \"example_1760\", \"example_1769\", \"example_1780\", \"example_1781\", \"example_1784\", \"example_1789\", \"example_1797\", \"example_1798\", \"example_1799\", \"example_1800\", \"example_1802\", \"example_1807\", \"example_1812\", \"example_1815\", \"example_1818\", \"example_1819\", \"example_1822\", \"example_1824\", \"example_1825\", \"example_1826\", \"example_1829\", \"example_1830\", \"example_1832\", \"example_1835\", \"example_1838\", \"example_1840\", \"example_1843\", \"example_1847\", \"example_1848\", \"example_1852\", \"example_1853\", \"example_1854\", \"example_1855\", \"example_1856\", \"example_1858\", \"example_1859\", \"example_1866\", \"example_1869\", \"example_1870\", \"example_1881\", \"example_1884\", \"example_1885\", \"example_1887\", \"example_1890\", \"example_1894\", \"example_1896\", \"example_1897\", \"example_1900\", \"example_1901\", \"example_1919\", \"example_1921\", \"example_1924\", \"example_1927\", \"example_1931\", \"example_1933\", \"example_1934\", \"example_1938\", \"example_1942\", \"example_1943\", \"example_1944\", \"example_1954\", \"example_1956\", \"example_1958\", \"example_1961\", \"example_1964\", \"example_1967\", \"example_1970\", \"example_1971\", \"example_1973\", \"example_1977\", \"example_1983\", \"example_1986\", \"example_1991\", \"example_1992\", \"example_1996\"], \"type\": \"scatter3d\", \"x\": [-9.351457483976228, -9.630821038499715, -8.88184471239794, -9.307557120727669, 9.077894714678735, -9.978129128082537, -11.357684522687277, -10.02914836977377, -8.621653816470609, -10.124988072701875, -9.01290773359202, -7.794830493219481, -10.558125024775453, 10.225723729372058, 11.197092509389625, 9.932598419609663, -9.163415884057237, 10.425910370436535, -10.413479902314464, 10.583965618802061, -9.479107480790908, 9.532814474260618, -10.006826969783937, -9.177406309412731, 11.486327762218135, -10.0432755936904, -10.168002865453778, -9.755828701570312, -9.556772565750146, -10.199789120597842, -8.529283268047442, -9.781118022389979, -9.982227100902685, 9.056201206875723, -9.965282897515614, -10.700275165493796, 10.151392950928495, -10.510295298779186, 10.553443650595131, 9.343264922192304, 9.860108159250744, -9.753188657817654, 10.720963051399421, -10.672414680946352, 8.772278655203706, 9.145497695107192, -8.972581805977669, -9.606470403727892, -11.579179848183625, 10.55263147126185, -8.69360292619613, -9.5985309990115, -10.169573122704104, -9.582542093478004, -10.230685378514451, 11.846859481002424, 9.211198575722872, 11.080403932715155, 10.186440618166827, 10.62871864256505, 9.858801230998228, -9.624363672183755, -10.512466990072127, 9.747897894448215, -9.455607234950111, -9.34313079812162, -12.043896985137534, -11.223954922748185, -10.69330885542324, -10.185680417450882, -11.241823050357137, -9.293930696570904, -8.99701678823478, 10.007989932166517, -9.905274996412608, -10.26285828645165, 8.70181465659648, 8.325168779827603, 10.009247459300108, 10.441202045445173, 9.443995828024049, -10.164209666908322, 11.760013022042909, -9.561086729384492, 9.414823274160486, -8.345681306241728, -8.512522099781332, -11.189789652734953, -10.630768343691308, 12.63713384209271, -9.197419717909414, -10.186244623330209, -9.989091566338576, -9.160193890764605, -11.789026762423722, 10.281108618819765, 9.860157170049131, 10.824953199836296, -10.339460133212201, -9.719466627612805, -10.399710232987534, -9.111357533153283, 9.442527832021785, 9.978646850652247, -9.896855138616985, -10.74812997179722, 9.545904002145639, -10.312018843344774, -10.324249776669133, 8.238927141110889, 10.34706235922656, -8.783880438955986, -11.138532119284749, -9.706133061409414, 10.095046121885131, -8.186549484872664, -10.330675855686474, -9.26066631878321, -9.671467475473921, -9.825269068747428, 10.81481820921743, -10.256910682462154, 10.786755827861665, -10.524787698950218, -9.246856143992384, 11.065126366759536, -9.59536358334617, -9.868111332935294, -10.758454351219706, -11.630027467968123, 10.553700357936997, 9.923701497474546, -10.883124017567972, -9.414999464455807, 10.175547426746206, -9.133914476998845, -9.72117927252987, -8.839997282602946, -11.26183463811751, -11.637490717718968, -9.304503845455205, -10.495930660281536, 10.318230815342305, -9.179858819040815, 10.688927839518385, 8.851425557794377, 10.797312238536751, 11.156009009594237, -10.369696965533336, -9.245633845824607, 9.603194131718169, -10.648628481932647, 10.190427480635952, -9.21575663266575, -10.550567650266782, -11.489389137932115, 10.323231400499017, -10.482325349138495, -9.714391700509456, 9.427525826930854, 9.89708753183124, -8.929961800025254, -9.799858889133573, -8.464969555025025, -9.589009111680564, 8.706681293905817, -9.67856325077109, 9.205944570523958, -9.788933867379257, -10.755342741869656, -10.704102889493447, 9.403547435161638, 10.01249062135441, 9.813084743676583, -10.241870815860853, 9.64592399458941, -10.102904512388788, 12.148874347232196, 9.031612973448576, 8.962104382945755, -10.96974674200853, -11.501447497176624, 10.78467630726383, -9.066042276979653, -9.06756207548401, -10.351593240944126, -10.60604692614181, 7.6146312202496915, 10.93470097172027, 10.49940591148303, 9.520177540173664, -10.48910759082109, -10.862075124333034, -10.753209177520874, -10.511692990633154, -9.59943470543172, -10.114916709283928, -10.873907735460616, -9.626657775836156, 10.837022724425852, 7.87402257904968, -9.788379607341314, -9.12071663371113, 10.198151062844543, -8.634982064444799, 9.976668241231001, 9.249512501478549, -10.377784780978706, -11.870348761964152, 9.586264552538895, -10.256545945740973, -8.90652911725652, -9.564257008185374, -10.284806595942499, -9.452598352452528, -10.26731601026617, -9.54621482837966, -10.306797428127535, -9.640830210007673, -9.074966852102355, 9.796745456841432, -8.875307960216894, 10.968535052190711, 8.619051368146776, -9.723372991995793, 9.500941088693635, -9.960254512170662, -9.18702742096081, 9.304029266749978, -8.52152655540645, 11.280598064747624, -10.283451212939154, -11.148896943129493, -10.388878222777407, -10.528609723547872, -10.839357198832953, -9.418679085283376, -9.626373274717066, -10.094243044933833, -10.719438813905892, 10.716801114724582, 9.334294826813025, -9.438849893727333, 10.389203049204161, -10.688846139357215, 10.60546807387399, 7.871329001109546, -10.14525324312887, -9.403534988108232, -9.243468488020422, -10.588563594101227, -9.033657369499046, 9.554088194969955, 8.648626454788564, -10.974106742359997, -10.182000233006889, -11.531289354796417, -9.290718581430461, 11.096848093650348, 10.787163124754613, -10.43980519446689, -9.286011482908824, 9.928791926867879, 9.554243440806703, 9.45088460388377, 8.834987557014053, 10.41711052811476, 10.109512096565533, 9.930828502958466, -11.370026752380587, 10.362898365879218, -10.563556864750325, 10.281398699386981, -10.286618449430403, 9.4791726078407, -9.028763331730321, -10.435140466229107, 9.548576933862309, 10.361480412905598, -10.498335575333114, -8.734968571219575, 10.851114574151218, -10.300689893382843, 9.799124338592526, 7.476491881793077, -9.029251063905713, 12.015864224979499, -9.71050237817212, -9.00812689600188, 10.159848502976695, -10.536060725069769, -10.374426577988475, -11.413480897036711, 9.818228770045247, 12.540467862323911, 9.871138288292363, -9.95806848808665, 9.203254187781916, -8.370270594154771, -10.907856519973256, -9.02499587332323, 10.083033106200318, -10.020673835538961, -10.560838037924867, 11.81574220312519, 10.182882583286894, -9.926931540912642, 8.852119560433675, -10.950445400498403, -10.485908734482864, 9.404207550638453, -10.325612034657311, 9.463317521397363, -8.724476830466049, -10.364748903340566, -10.433556086035672, -11.24734270367222, -9.827737716337133, -10.876355117377539, 10.925086870031137, 9.908248385915812, 10.664870442172232, 9.475166591585053, -9.212349747164444, 10.752724332979009, 10.35250773290717, 10.986212424394113, -9.658734878307522, -9.045745166573635, 9.935313681971035, -10.60720745177565, -10.106945808687705, -10.680172485293651, 10.671841164524132, 11.633882237721256, -10.409642896328972, -9.252219783376216, 8.218305076718892, -9.696545205738047, 10.078979977870052, 10.690889077336921, -10.238515016403662, 9.772828134511437, -11.32159426476871, 8.315370909262496, -6.6457100192871525, -9.037278873115074, -10.720166720386896, -11.241113191422578, -11.83399130758403, -9.87177177837423, -10.372951633685734, -10.517194934755315, -10.567049139306594, 8.660707068122171, 9.287487058550607, 10.227122745482218, 9.51359945485173, 10.666638314706292, 9.590802758888138, 8.312221291180053, 11.326082884050635, 10.960698061242617, 9.810449009786668, -10.017581149377767, -11.447376923017595, 10.440691497972283, -10.780884173333249, 9.55703994612627, -9.72333917019626, -10.10650785339703, 10.69059768621872, -9.168374481538567, -11.254193058691301, -10.363678698575503, -10.896674777544968, 9.019914717843637, 10.638995184099787, -10.432264435508998, -9.441756330802418, -9.101686037515607, -9.008750287859003, -10.84985362393573, 10.52818562853049, 10.620165966279709, -10.415143639454687, -9.287433587370382, 9.987153686171538, -10.412027723608402, 10.46462135129804, 10.236821132135793, -9.517288806170685, 10.421633056633533, -8.470106393933595, -10.896911247502976, 11.1366555569952, 9.464967508468291, -10.902249220699733, -9.90445633573346, -11.585379919700843, -11.392761276195658, -10.958352831916542, 10.27842100464213, 9.314057062821181, 11.156219563494517, -11.248638556449148, 10.943683833505773, 10.06187809341104, 7.894052518230653, 10.080437072407157, 11.26551106192556, 11.097069318860793, -10.329328308393027, -9.604631434801714, -9.318459985070202, 10.999237082126395, 9.467237581873423, -9.032094301723655, -9.54350832248335, -9.813985322390161, 8.189664471875718, 8.58594242016014, -7.62298437599169, -9.686720948062558, -10.926158828061492, -9.905634651821542, 9.986757488545972, -8.076430471385574, -9.84845479692595, 9.66399465916131, 10.331628835154286, -9.71631710602835, -8.763861658878682, -10.260272631006655, -9.271243467732777, -8.817426932337696, 10.279487770387336, -9.895020336416493, -11.392387777579321, -8.89147853150063, 10.131522655445467, 11.093847228118605, 8.625627085769597, -10.991685465445178, -10.544877763549392, -9.708145538505669, 11.513959588291389, 8.928452741900486, -11.277569416291167, -10.44283603603047, 11.994294008767048, -9.537518412801008, 9.222167328123446, -9.236055076226522, -11.018527563531004, 10.288412922837201, 9.605473483812101, -10.888842261224614, 10.319902926252508, 10.136954150892038, -8.435671427580811, 10.900696544361235, -9.741184243583703, 9.752031191623594, -10.393486552288488, 10.61690974704746, -8.416522810557717, -10.416353304862142, -10.270561919752556, 10.359763446193208, -10.352695396237667, -12.194399911085183, -9.942966770174236, 10.099826224251553, -10.677568620627152, -9.981681052315665, 10.820953730574471, -9.742385773189861, -10.256924975729234, 10.43297619275401, -8.581103772076101, 10.848350766336747, -9.155842971644606, 8.81669145265183, -9.195940270903966, -9.047896889198585, -10.647023178191747, -9.752807879724024, 9.604153698611288, -10.995068959944335, 10.407179160903887, -9.389462202000963, -9.756988590072257, -9.275505859390407, -9.681610791457171, 9.434492239389757, 9.51170427881401, -11.613116594647108, -10.716413904843511, -8.717745426516558, 9.073785574394813, -9.192100822962516, -9.95917910617709, 8.397533641043452, -11.256583157983798, 11.634627436939487, -10.739618329766667, 12.191827900657483, 10.922326777687895, 9.727455343070348, -10.54501691179239, -9.744664308822554, -10.22874333001608, -8.466460051448907, 11.028939444473059, 10.085110725269228, 11.595256178774473, -10.344794875921131, -11.095254670689911, -10.341036747641803, -11.293851071266557, -10.148364789657657, -9.679533206920715, 11.011862328796331, -9.254803651476601, 10.807284027453, -10.223716560804661, -9.821309914561596, 10.879116859846498, 9.727934251242365, -9.614170114287958, -10.775464781989037, 10.892490274500604, 9.158047256573496, 10.035659846771264, -10.645723832027354, 10.394452453446688, 10.19774356561704, 10.421182170094276, 8.91170395484953, 9.905821689677191, -10.546945259879196, -11.700876351185348, -9.73420560061508, 9.030442692391428, 11.441186500276109, 10.494835058937005, -10.160301123811713, 9.986027939329224, -10.385121910125527, -8.74227889029923, -10.690345218098471, -10.117106930930042, -10.239417881529437, 9.721291912814857, -10.680032108662477, -9.748595697621518, -9.165885939708518, -10.237831946421403, 10.95629916430066, 8.298820551826148, -11.280364921142189, 9.758235796175372, -9.998111250973704, -10.906574631162629, -8.760795645420801, 9.800061320773837, -10.018952065958938, 10.764201809604613, -9.54023212147698, 10.516230400035866, -10.614499866368785, 8.643224365603611, 8.992700129372064, 9.302364524509416, 11.429584090535045, -10.111360442999958, -9.235049048410547, 10.146772887612682, 10.470337431853677, -9.207950723798286, 9.826338251287153, -10.277520775913342, 10.543476296167926, 10.999517501851967, -11.199649389605248, 9.621679318175339, -9.744030868341605, -12.327324014554296, -10.725498872331672, 9.620015016835437, 9.729949835592697, -10.833298402587822, -8.651926208441377, 8.609167421912483, -12.121726674576351, 10.919980946263154, 10.433736062804602, 9.89016528819432, -11.199510179115777, -11.25582847562626, 11.077521880189025, 11.80003549902761, -9.918791227321293, -11.111465370150194, -9.625004561512714, -10.283423227428422, 10.483145760201099, -9.302427018507434, -10.119838982323383, 11.250069327897817, -11.092465445360387, 9.055826175479504, -10.707196753134602, -10.96562467814714, -8.781986333631545, -9.671531253866007, -10.065873275959135, 9.91150096389655, 9.951887391647254, -9.716023683301408, -11.866604083435204, 8.712798117701787, -10.079585465102012, -9.49730771834667, 11.110316832937912, 9.437016598758701, -10.558553143217441, -9.88426517256609, -9.526497278286385, -10.587174499353557, -9.891305489450314, -10.95791835147626, -8.479930315017832, -10.43324991411516, 9.45637999776244, -10.162444757821737, -11.401398368612128, 9.470651252015422, 7.6845577690692455, 11.422117656927162, -10.857175666027048, 8.082525258883217, 9.463012562250963, -9.186024645180265, -10.055939531728551, 9.090287336806405, 9.8341248296583, 11.394825020327614, -9.689430922561499, -9.781335122949068, -9.460729163406754, -10.16326403395178, -9.179459696712794, -11.565544058773096, -9.444124226891836, -11.12104281801776, -10.882636679014071, -8.794693151611936, -9.639667131125655, -10.82765789674625, -9.885302971990628, -10.50925263974018, -10.510522464594185, 10.724398760789734, -10.914256780921113], \"y\": [10.234582866747598, 9.838220625960505, 8.94279219969027, 9.525803507494192, 9.97466821030611, 9.634348848451724, 10.447660833519107, 7.997157934535753, 9.461802089927223, 9.118911728913737, 10.912914689603516, 10.27393083506573, 11.628417497998194, -10.910152307378931, 9.582498832987698, 10.117536097584624, 10.58783693974278, -10.85196018322135, 10.842903813948574, 10.458988494634545, 9.855581099358538, 9.923914630091128, 10.333964519671323, 10.466386000263263, 11.086678410755908, 8.682315015812469, 9.766693893199271, 10.380941070787339, 10.587640897593378, 10.075656061183498, 9.229926408251666, 8.696694648157004, 8.817200216522224, 9.034766751195221, 10.491517498862837, 10.869570792301923, -10.578307340213911, 9.817225164438211, 10.276001492063177, 9.515656866639208, 9.714161109823081, 9.90059993652531, 9.812103244924883, 10.815016365138193, 9.778249171003623, -9.070397146429663, 10.530192990059653, 10.499706720818654, 8.561947052577336, -10.873840893414686, 9.39540840911215, 9.163752659079258, 8.894198433160348, 10.177653235962245, 11.01305304710721, 10.641964949808854, 9.796159977683159, 11.056771255194551, 10.083255202990184, -10.55745604283438, -10.34286881676713, 10.252629354345677, 10.380007664406476, 10.041169365723054, 10.99620256414872, 11.081409564702021, 9.189641734321318, 9.003254207544021, 8.925975041569504, 9.07309477119757, 11.403715812619932, 9.042175488602599, 10.07422793355857, -9.32109621977122, 9.386011089702272, 8.819052105346605, -8.583799303995226, -7.944470456986913, -10.27591797335614, -10.536278916109225, 10.027347650322298, 9.339142615218769, -11.46474281080059, 9.821295822258284, -8.82962606981305, 10.333543530434964, 8.850473701685816, 11.593734130903247, 11.047130264521323, 11.446837125518751, 9.12968042513407, 10.299072551958158, 8.610876047166284, 8.126267236359316, 11.154105057434574, 10.090382586526557, 10.17413189799852, 10.073398269493072, 9.505740152344652, 10.07427012161732, 9.320689426957427, 10.807215145768108, 9.335434836687913, -9.555392659825822, 11.73182254517826, 8.70458140960681, 9.535854307367229, 10.559986806747233, 9.693534466793416, -8.750810682152384, -10.698146857404925, 10.451289825541892, 11.674927342916554, 8.923986095309285, -9.870126335480773, 9.441775587801187, 10.308031169938872, 11.632059424422057, 9.441931422320486, 9.349083956988721, -11.749501035902302, 10.848078115015083, -9.660375139398376, 9.727996412025524, 10.168180756970639, -11.421389277567531, 9.629183603455594, 10.380599888553581, 8.786951091374982, 9.760128696998931, 10.091898666705667, -10.314093593093743, 11.869873011960838, 9.244523575606108, -9.590058119141007, 10.191213901602287, 8.82356969869621, 9.874323333113928, 10.566731709772128, 10.379688558758273, 10.0426814170901, 8.206341248743678, -9.980829869420328, 9.106129995972996, 10.611210370154524, -8.161513503157515, -9.807222892404472, 10.950736769615633, 9.225621242404081, 8.595667678045189, -9.671197022063422, 9.690061302700972, -9.9886414298934, 9.308053212320178, 9.125033722150793, 10.293886959424567, -10.727083695033373, 10.88963399191132, 11.15676524354463, -9.505436072861889, 9.7026011016038, 10.751756769048027, 9.720339465410202, 10.990683120744675, 9.803681412920671, -7.99321022279549, 9.979717511521335, 10.322691929579786, 10.011051634345709, 10.702695783406451, 9.423575056117524, 10.31082617211202, -10.501251006982013, 10.095685002029992, 12.123752937258832, 10.035940443949922, 9.605971139122527, -12.52534641738391, 8.41866987629421, 9.673509788391643, 10.409737097945085, 11.06273694707378, 9.375477544141475, 8.905754120989194, 9.59618414638568, 10.916436630052448, 9.402660185330909, -8.778093228288308, -10.857704202056766, 10.29437013573115, 9.52111437861591, 8.037442550158033, 10.042919759044201, 9.4769271197479, 9.332263728719129, 9.458408574753564, 10.400265256297038, 9.978032187636316, 9.641233367041412, -10.084642262671254, -8.161734712543028, 9.532860740922366, 9.131935000128925, -9.542978779597487, 11.259226078377205, 9.083586206026038, -9.820560038019595, 9.538200934092192, 11.228530185815824, -9.738527692143956, 9.467720874602263, 10.896359494686246, 9.682342543980152, 9.820419723240985, 9.386593143343136, 8.4346286467254, 10.693680219703056, 9.29215498205934, 9.317596869890815, 10.1702174440142, 9.932342776992998, 11.284573899679081, 10.66348829093738, -9.03431292230526, 10.764435682657819, 9.485835680506433, 10.466764449572809, 10.534943351628243, -9.585379853229064, 9.315338916091505, 9.907930467403382, 9.426590039941843, 10.471633453702152, 10.635218492245999, 11.039168488419904, 9.834902200913163, 9.022368507679436, 9.445128355129008, 10.357227877104739, 10.263974370378568, 9.937916352961617, 9.714634086933602, 11.801177660818745, 10.72397654708949, 11.052270007131337, 10.404111331162763, -9.20298638211655, 10.697794114966209, 10.538795199064543, 10.061936150598877, 8.775916508942819, 9.847440390467352, -9.716840523162238, -8.927703093968374, 8.410566083416695, 9.788469110663273, 10.015859358857805, 10.514396824706147, 10.017823721538832, -10.753200672299018, 10.44318458789439, 10.107159804832968, -9.726304640121505, 9.290285230005873, 10.451699991465022, -9.558650966362757, -10.836433254019814, -10.182501779200697, 10.403679254706063, 8.734244777619084, 9.84639762675411, 9.903837066534562, -10.526631206275542, 10.1743616138777, 10.008389675475213, 9.716670286566362, 10.803665881550256, 10.585239546550477, 9.793134283845166, 8.898188795808096, 10.601995215655608, 10.780008712947845, 10.448826794630168, 10.549559490046294, -8.127259882047284, 10.778356737524433, -11.463102724817269, 9.231493983768011, 10.790203401947926, 9.61790478749995, 9.590104974392556, 11.130099836385103, 10.822726862133393, 10.304069419730299, -12.713183887528027, -10.029634669109985, 8.904479669650765, -9.300712197285668, 10.344192634409724, 10.353630768953364, 10.046284456117068, 10.28133848966022, 9.162379844072312, 11.208669993434917, 10.244553794743467, -9.39595597274224, 11.341755021211906, -8.617828295069701, 10.257314223266956, 9.671971537843275, 10.66057359555711, 11.132025348497017, -9.713555531600054, 8.497921866509584, 9.935563946594504, 9.326732379220934, 8.478499116880826, 9.473597217279318, 10.18763375440323, -10.597291249828602, -9.027664956081075, 9.88274292722089, -10.02514443491083, 8.671325801911806, 10.639968597400586, -10.20602697983781, -10.958455359334522, 7.411656343772563, 8.551812896829624, 9.032251882800177, 9.169277154725869, 10.121979808577516, 9.13565804234107, 9.64844673428764, 10.292470893660894, 10.950505319122792, 9.248529219058936, -8.175469097985046, 10.280732101573761, -8.887074840084187, 10.943750032839274, 8.609299054688448, -9.827634123190204, 9.719129561627238, 9.534127988816843, 9.218468453360963, 9.622876682523838, 8.54581132088183, 8.903899860815223, 9.135665537186284, 10.07822757131742, 9.167753183421306, 10.958826270002362, 9.307459455684427, 8.469985854424792, 10.373642415874825, 9.768876490371463, 9.304432705935925, 9.613704759087684, -9.22965936488144, 9.322256046321703, -11.33239158555874, -10.973540677273753, 10.337885914420614, 9.562037793844837, 9.376018664306619, -10.396258316078729, 11.444329290643543, -9.596551703816171, 10.558268083379817, 10.574208728339949, 9.464917642152308, 10.210004707990771, 9.203100844119032, 11.538176480613123, 10.69612187867374, -9.168877211342107, 9.82703338562838, 9.371004319179175, 8.108691870932505, 10.952017120126559, 8.914730782654706, 9.849793692162887, 10.307068771213252, 10.11284459906676, 9.541196202866457, 10.429857368060633, -9.575315911845552, 8.654916983387611, -9.823623560423398, 10.127632715536734, 10.167292161103983, 9.94526191905324, 10.191282465004731, 10.590122846743938, -11.517959352215332, 10.129251385521915, 8.531593935355472, 12.177442594930895, 8.57131281108861, 11.863234169725628, 9.86865136713943, 10.097554000515638, 9.846362615281112, 10.8641128364327, 9.41555005161332, 10.520389952679388, 9.845502055394745, 9.862555875347503, -9.661714672482935, -11.684697813014347, -11.030752853712194, 9.778976509842924, 10.941558872662165, 11.752174227165742, 9.824160692061882, -9.669083426659615, 10.682193276213024, 9.003285831231224, 9.5305173090639, 8.983154858079876, 9.295101381594991, 9.35953443142733, 9.943343300064692, 9.417709681968049, 11.867463915994897, 9.268358642992382, 9.321608703480242, 11.21532889296478, 9.32266406336481, -9.966273449628344, 9.82760381485352, 10.617241440344813, 8.66508679734866, 11.184176673704602, 8.931316993363861, -10.597034178693484, 9.606685309689846, 9.7840327021064, 10.594119142529996, -9.425391502834126, 10.263153031876826, 10.031799045306974, 10.736081552978725, 7.996810790843503, 9.550609287576304, 10.33629163122836, -9.845852939589985, 10.3138438074435, 10.13816950780026, -11.230440771957799, 11.396659302857362, -9.578670779657369, 9.13194652608101, 10.021025474838506, -9.286383903784838, -9.659720605578991, 10.764665301766364, 9.892813590347565, -10.190737273757085, 10.511373679659075, -10.405845091454747, 9.451404633106915, -9.809092522866282, 9.206540910495308, 10.07531045657003, 9.276258198257384, 10.137366468749033, 10.816067060447468, 10.32795572823776, 10.043092424056065, 11.050930159999892, 10.762999982452808, 9.469908691868552, 12.27371552063742, 9.324563905467516, -10.706111889163749, 9.971061364650842, 10.422736362438725, 10.277178409363202, 10.412344045617061, -10.572407717906298, 9.327081172370455, -8.626463981327054, 10.66745074656347, 9.372961251254146, 10.349635021518903, 9.624736629833762, 9.734275304945253, 10.615078737403328, -9.312021204081457, 10.07841920193502, 10.37031802888896, 9.95748548616939, 11.322963042229755, 9.71717526049296, 10.212041342183948, 11.362896959260588, 10.868389696916058, 10.722464552835987, -8.149085261322469, 10.338715196142214, 10.311986530521947, -8.156582566435363, 11.313310596991979, 10.706135505580821, 10.080704012848482, -12.111912212344775, 10.646960498993803, 10.457506249178621, 8.022590838523715, 11.132748283795298, 11.573305413533934, 9.082045916568232, -10.470328121501634, 10.22049102966135, 10.167243543991692, 10.979806124780714, 11.180789307083394, 10.269537001609516, 10.321209436701922, 8.291407181775334, 8.78197574742719, 10.341309681365846, 11.028089505794624, -9.929635103216896, 8.459094476186394, 9.975082739278713, 9.834821804502845, 10.240902363856328, 9.345408892222808, 8.732335806922514, 9.778480203749773, -7.900711742291723, -9.995661773327189, 10.893721286549832, -9.895728826406478, -10.798497884799678, -10.782251147373412, -8.61211215657257, 9.869660410271328, 10.380384345208743, 10.19829634846788, 11.06789173311119, -9.005055160753189, -12.096526575156709, 9.952663740943356, 9.353163466690562, 10.74556933818352, 10.206604344822503, 9.363112879821802, 11.08983178841938, 9.9558259067866, 9.998094699181376, -9.376649496878949, 11.002576631671465, 9.011636768711497, 9.911248649375286, 10.8415427025268, 10.424173217642554, -8.741750651254245, 10.603400622586737, 10.02723765978404, 10.417819660885181, 10.036861415396634, 10.149435364861146, 10.172166115024908, 10.083639577810567, 9.772964309543548, 9.177535937473882, 10.419758128929333, 10.355413330585993, 10.312273965645215, -9.194278962205304, 9.419397127973927, -10.798262847965916, 11.867342977319403, 10.020473803506965, 10.201083173978308, -10.806092053113966, 11.13307262280614, 9.857440978255365, 11.210041584073915, -10.814956331761795, -10.543743458978843, 11.071128589047342, -9.74921070293514, 10.848419248057532, 10.167654093420447, 8.446847502572783, -9.629385837351665, 9.839812669979159, 10.627212905785724, 9.28082300133262, 9.52591472988418, 8.41127564239538, 10.122187864667183, -10.582274152147887, -9.380019879905863, 9.992043947328325, 11.237324888673843, 10.516551144850823, -12.169533581527716, 12.297845776919011, 11.465253084743711, 10.318949369724374, 10.554609817943287, -10.705506730135758, 9.795361514593552, 10.408292842784865, -11.674753659530172, 8.934956170526155, -8.342893745455557, 10.84514940791144, 11.622131073493732, 11.269125781242494, 9.120821394936446, 9.45511582505194, 9.968036281572294, -9.893606909460953, 10.677918079774233, 10.879308124935907, -8.798028876923448, 9.559570693957873, 8.523655385569358, 10.737000464118227, 9.989101662645876, 10.174307601687328, 8.300984213278575, 10.786326602875176, 9.809902449370481, 10.382045724905065, 8.970318803062941, 10.012062547539006, 9.9803473783291, -8.298579127036218, 11.005049225542733, 10.462833032776983, -9.109948102236046, -8.513278733280496, -11.487781448951164, 9.33608913470989, -8.249399881839654, -9.410745985815208, 11.764224426421935, 10.066815696711664, 9.962030524893967, -9.469436954641179, -11.316152397118422, 10.250608878171436, 10.010894283328735, 10.342654778369385, 9.770652916756301, 10.124152014109288, 10.656060491655987, 10.837008947331377, 9.734976362825929, 9.809890810182882, 10.132466503827422, 10.15283041243535, 8.493940385554842, 9.889984203560356, 10.561083386766102, 8.9479448660632, 10.169479381991856, 10.083403254392696], \"z\": [8.819273742603123, 8.769647674805691, 8.358258886278568, 8.446373753125123, -8.287738865335008, 9.215836157865452, 13.171497191870174, 8.494488302838974, 7.287764358354265, 9.908772943627138, 9.554645322425948, 7.722498211506771, 12.114701646009014, 10.279133221572975, -11.418822375920797, -9.25513177594831, 8.851930364004176, 9.481328181415043, 10.83193678103678, -10.630800010165826, 9.629102722664783, -9.863876028664794, 10.527343960661128, 9.935693552199348, -12.112785682580995, 9.456681685191214, 9.177559634095193, 9.96038396276185, 9.533777235529426, 10.236915402411224, 7.0945344017553165, 8.721937410238674, 8.601608033833774, -9.001166499200384, 10.57176587388804, 11.619426017294161, 8.889179178126748, 10.936928600005341, -11.24954392326029, -7.786897044098458, -8.493280556300391, 10.134872767916823, -9.678447315703911, 12.301087714017866, -9.517266120562283, 9.916944928824318, 9.024223343976775, 9.402941860009355, 10.514640069626376, 9.712832996770121, 7.322780290470874, 9.400545966863618, 8.972596755841879, 9.508885209602143, 11.221154265187511, -9.740128672983886, -11.695082740708997, -12.400497434878554, -9.604281567459177, 10.472355438937257, 9.098386307780643, 9.453169324192807, 11.1822501789621, -11.515765357301547, 9.573988395522075, 10.594631951895842, 12.388402023213857, 10.472166608533662, 9.817821293318257, 9.176458248564858, 12.805981908591823, 9.026970557064189, 8.867793848732857, 8.990623937042837, 8.631058761070312, 9.826274346203506, 7.711246380261112, 10.909158034188527, 9.281433507930476, 10.474559415396445, -8.842887912822007, 9.008543187411659, 9.845215579863076, 10.104218188555524, 10.831181139349342, 7.9703506165148115, 6.501420450962156, 13.225901842685646, 12.623684121322883, -13.071687131884817, 7.3530542022975665, 10.205414705033009, 8.495427039777525, 7.170194399402252, 14.15106148173802, -9.793867743538335, -10.790620792343312, -8.526894292949004, 9.421824981020901, 9.578426584586422, 10.732778284405125, 10.328536655013655, -9.399477800342142, 10.401137306352958, 11.566493686790487, 9.778773697546006, -9.69939788257213, 10.374649230774958, 10.539200097580414, 9.565849870634711, 9.869370435219105, 8.750808413340827, 13.348138966618745, 8.69384985246998, 9.940910213628474, 7.691711860320802, 11.200245272139963, 10.428173727840534, 8.87046723039997, 8.848722244006595, 9.920614044895986, 11.89829248106721, 11.016401369672094, 10.85696336492124, 8.895226283799426, 10.728991374617426, 8.871297935752553, 10.307873020878386, 9.259440337753631, 12.00744322303158, -11.14909701092963, 10.888915499798644, 13.475676402130524, 8.642577734046267, 11.21225930906703, 9.04416632806826, 8.93452141385857, 8.295715281079783, 12.51551750916074, 12.277462394605106, 8.966267541491076, 9.12222655842538, 9.791525230761119, 8.561661423773707, -11.425185383795553, 10.396480689078029, 9.670185115260132, -11.54890860031033, 9.690735318423815, 7.1664232503932945, 10.391909608259201, 9.411225653744797, 10.602514987152688, 8.953210113813354, 9.528709956668683, 12.610089654835022, 9.860006894743156, 11.742578128525654, 9.982546121591207, 9.782424005648135, -9.767063230049411, 9.571101199347483, 9.107591371505091, 8.803696011983416, 10.089626116101291, 9.062269994454228, 9.838213912185937, -11.11698051799756, 10.354500201851378, 11.53436301982389, 9.676389326064983, -10.43970972151041, 8.582882858478344, -8.937895714139605, 13.149741526936193, -9.404380606350655, 9.332411256936666, 11.852871092282065, -8.035512623337382, -8.178454195183308, 11.925461600313254, 12.497298551520533, -11.110703060326182, 7.826983849381289, 8.069470468221686, 11.602581082715217, 10.242860717826085, 10.174970596234543, 8.370771670682839, -9.972330554818013, -9.615489461188423, 8.847792065964022, 11.336753113423875, 10.488904563704345, 9.953148899020315, 8.11704380937629, 10.315002873555763, 10.657347457851236, 10.370463746913945, 10.128500587087826, 9.074364972089594, 9.920970314952095, 7.665856634107689, 9.864064240086122, 9.496927227765497, -8.98416810229284, 10.337144983704091, 10.307970824517765, 13.323186388269999, 9.488665494860259, 8.730524102100324, 10.28865260759035, 8.85830342130878, 10.175879790105412, 8.513197747760994, 8.70960459995281, 10.10990755555677, 10.133291020838037, 8.393877817574468, 8.782563594375903, -10.309461667233741, 9.003209980968583, -10.538258680200315, 8.512156619057656, 11.229639942200885, -9.944392951515468, 9.18008700875292, 10.331922450183635, 9.076003261917666, 7.766324227255978, -12.010902203511645, 9.771419213271436, 12.505584944261557, 11.301800741102378, 11.227288456049209, 12.017613311893319, 8.231470226763392, 9.126099544951476, 10.182997192627711, 11.083995696589557, -11.476203262433797, -8.830578420110092, 11.744526164431662, -10.538768937031724, 12.11714352444548, -11.42886043099787, 9.513664353768997, 11.179749925555967, 10.528012823156882, 9.12046368794081, 9.619680884011975, 9.115316963495081, 10.805526981676321, 11.737177005055187, 9.019903997589411, 9.18711664974844, 11.925455333740919, 9.698961498538923, -10.923174685097363, 10.481101825672187, 11.221093137443107, 8.884776616297223, 8.989126582555132, -9.397018355236535, -9.118680751873093, 7.279143372587969, 11.19917737978767, 9.5303269355589, -10.233248054219409, 10.366893585638085, -9.963790457988999, 10.910381164849085, 9.535158045330736, 10.666339849307239, -9.558492614193186, 8.473297496404271, 11.926468546628952, -10.514896482025334, -10.748457289614015, 9.367165616781627, 9.082885921708865, -10.759692393361846, 11.386064944571633, -9.601692531495152, 11.142165773319718, 9.810371285902855, 10.397819771679558, 9.284990180462241, 10.306885776613683, -9.67559720359967, 9.610851150242462, 11.722209896804301, 13.789041272470897, -10.23167614141636, 10.730310556010298, 10.540387211405719, 8.048570827227383, 9.146651522735704, 7.756416603996028, 11.554676703290568, 8.837917175477498, -8.866906085182215, 9.465685979120197, 11.521039925048004, -11.170451705294, 11.509447075204164, 11.04099973534343, 10.011147206072447, 11.899771059175643, 10.331602787672793, -10.460617882411146, 12.001692643435993, 9.861700175512853, 6.493334168048939, 9.390271260746191, 9.910817330146047, 9.589130990861094, 8.954680590356304, 11.89563099148706, 9.251587316103, 11.16823191461505, -11.04825640118405, 11.054648433811067, 7.21743727171105, -10.035883556481169, 10.338602031646328, 9.736372439235938, 6.145505763712668, 7.287929570309138, -7.91108579786583, 9.641992106097858, 10.518792128990349, 9.73511496535204, -9.72098238988898, -8.871048414976467, 11.177103794814714, 7.4006981753726855, 10.476026380073014, 10.010912888333475, 10.968137260077569, -12.430611532306079, 9.55467791615796, 10.995212692858798, 11.160466931810761, -8.653173720402254, 4.9265324385313765, 8.821007189749222, 9.536761177232842, 10.745855969424781, 12.070513428436216, 8.949459584872683, 9.280762705991156, 11.02336284242185, 10.43867713283894, -8.865474520047659, -10.440896757574434, -10.451322829503624, -8.896305967645585, -9.141036480360354, 10.724165078001516, -10.695322573879919, 9.531850553221632, 10.081174895536051, -10.463699691568523, 9.90966510711989, 11.792710019281564, 10.37568424630397, 12.911477978192874, 10.278243472422577, 9.940823319703922, 10.679848559258907, -10.503743374840006, 9.33435724642504, 11.572101618774981, 12.320333786766387, 12.281891070081697, 8.977285508928578, -10.53301130272921, 10.057192520390203, 7.308047290098235, 10.012423923114838, 7.061662860200014, 10.424675315442567, -10.566685289422773, -10.704631241124535, 10.4345176106065, 9.887983298026334, 11.490708177839757, 9.80005268010275, 9.855603557375195, -10.420115970895287, 9.636662676991481, -10.374380250297651, 8.638041465727518, 11.994231485078283, 10.67513519335919, -10.182643619409882, 9.698126202619513, 11.786089604017283, 10.563368668285154, 14.466915119686124, 11.575624033397188, -9.682896556574498, -8.831708322737398, -10.537889811829483, 11.44846532761707, -11.700464329676995, -9.755584660207044, -8.588175678540418, 10.564930722657436, 10.2198519673944, 11.835131053444673, 10.575779101066939, 9.97423730544981, 11.325511599284631, -9.023451354913323, 12.205684375211273, 9.457469500819336, 8.639742147704991, 9.450064915276199, -7.527399530887486, -9.355932570605042, 5.978888675133557, 8.738702475465187, 10.45207835748669, 12.023748335875087, -9.642138178470663, 6.050311985595439, 11.632794211531609, -10.634004525962007, 9.807862025102207, 9.769717306631806, 8.969753167901906, 9.058496898925824, 10.424871276092782, 7.224233270784332, 8.496317217683025, 9.499857898484896, 11.379119183128392, 9.20393612398026, 10.759592851921706, -10.315876009622436, -10.331949617790958, 13.087628215414437, 8.135721757497835, 8.809779943296736, -11.439593103496367, 9.969891862729853, 12.304031866766458, 10.898192279562904, 11.841933558673054, 10.557873799860392, 10.102753354874945, 8.72902600828847, 11.502236569058685, 8.447354870399117, 9.290771219185968, 12.790026117244036, -9.687910551348896, 8.553370427743765, 8.766895868872211, 11.134531404166164, 8.844518458787991, 10.224791214630608, 9.409172867688525, -10.731212846117879, 6.333516160226601, 10.74096997113504, 12.143809810172092, -10.772819583391309, 10.845039166001884, 13.499419580657708, 11.435496579384633, -9.828899631486431, 13.381252461757075, 8.979880418964106, 12.144439137346286, 10.436395825456046, 10.448647890099078, -10.60897396773032, 8.484739543626805, 10.563870538399083, 8.68106101790583, 10.773177325548938, 9.746029155928737, 8.513398151507559, 11.37074455836519, 9.263473594618873, -9.3994669682896, 12.243614001535505, 10.912125888884798, 9.182040705192227, 10.332006324613529, 9.185078821591075, 11.57607304529386, -9.742280622129133, -10.511970887243868, 13.918698192495766, 11.986084962347302, 8.906029301236995, 10.858778609839643, 9.770284300131292, 10.171228566986992, 8.690911867919516, 13.171240510174124, -11.77199780477914, 12.017786155955422, 11.22423770217892, -10.995877845618061, -9.069641383565882, 8.930180119500058, 10.038089550790348, 11.768720547867774, 6.573426178878181, 10.023314917992774, -11.822236759278908, -10.488345512594137, 11.594404497924247, 13.560028850544922, 10.673019517077485, 11.608509446469586, 8.920570759476176, 9.191273326469311, -10.70495982681957, 10.902424224777862, 10.403287491344047, 8.95637025597838, 9.35931769068917, -10.91057109768764, -10.759186483794885, 8.629666572708413, 9.606434135667847, -10.12173033155779, 11.17986970217266, 10.481013811869808, 12.538727778204454, 11.344015269309374, 10.642340294219272, 8.964577978914914, 10.341829358003931, -9.2888284355894, 11.447935150608027, 12.168721596769984, 11.346384678404416, 10.428298129070395, 11.649403916989291, -9.79271899309922, 9.50319856016984, -11.847251234222368, 11.099582837587928, 7.900261247212121, 12.122275276929404, 10.425779766812907, 9.944595635553174, 10.914493964160078, 11.178720881245663, 9.373041554941025, 8.486772461801852, 10.928284747355946, -11.02365492040667, 9.87200546338476, 12.27779019098737, -10.059019129541124, 9.817806238353809, 11.414366269228074, 8.431495709276914, -10.289742541449181, 9.003330771333822, -9.497480958344685, 9.29265681363001, -9.879321385154745, 10.854296557811182, -8.928114573961587, 9.474702375900257, -7.862759346720767, 10.671411935591522, 12.21801224828346, 9.24658397583203, -11.492189446260701, 9.875850554877843, 9.638928901167047, -9.815596910473587, 11.603339942979126, 9.93840169202965, 10.302358023936534, 11.905741728049033, 10.397182307782865, 11.053787754743466, 13.068773854906988, 8.964509626499561, 9.909985634004457, -8.793712235741825, 10.733710239955869, 6.944649984057682, -8.497059893345208, 11.255878257221152, -10.902012855879564, 10.340296039260005, 9.082624987113197, 10.937776784095277, 12.841973892783104, -11.359083240788097, 9.780632098192648, 12.009465686484898, 13.075486401803486, 9.689939446632929, 10.488604892011022, 10.086568204028005, 8.980276623952065, 11.368131582035886, 10.237108881592455, 9.92196716215505, 10.770866829379662, 12.920068356127086, 13.264288822010855, 10.508376732734943, 8.568131198743057, 9.799145904426876, -10.517434410587853, 9.692931698834034, 10.66233745927231, 13.607779351994518, 10.766816346548742, 8.861050101268384, 8.342301604760138, -11.136619670688805, -10.153659411361136, 11.234612558079673, 7.5768602023070635, 10.370233565667322, 11.685725914047294, 10.977566993572843, 10.334703332781139, 7.63623978571629, 10.550797026708112, 10.930453770944498, 11.625966123534965, 12.517890186668762, 8.177850004666583, 10.416328927102546, 9.43267988353315, 10.413825995491216, 9.364867628998418, 9.095105802829194, 11.26404596702201, 9.699219260736635, -8.332784760504444, 9.930380216874982, 10.208413659333681, 9.260469235017347, 9.573447749035777, 9.248274728137755, 9.602752578328397, 8.951704455321007, 12.857266012890413, 10.448701031615865, 11.244048529307497, 11.788796386746471, 8.104842885171673, 10.376792958702737, 9.114112483013773, 9.53897080811271, 9.622306935194214, 10.41380019085692, -10.192313605655889, 11.232383109532133]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 2\", \"marker\": {\"color\": \"rgb(44, 160, 44)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 2\", \"scene\": \"scene4\", \"showlegend\": false, \"text\": [\"example_1\", \"example_4\", \"example_8\", \"example_11\", \"example_13\", \"example_14\", \"example_16\", \"example_17\", \"example_19\", \"example_20\", \"example_21\", \"example_22\", \"example_26\", \"example_34\", \"example_35\", \"example_36\", \"example_37\", \"example_40\", \"example_46\", \"example_50\", \"example_53\", \"example_61\", \"example_64\", \"example_75\", \"example_87\", \"example_89\", \"example_91\", \"example_93\", \"example_95\", \"example_98\", \"example_103\", \"example_112\", \"example_114\", \"example_116\", \"example_119\", \"example_121\", \"example_122\", \"example_127\", \"example_130\", \"example_134\", \"example_143\", \"example_146\", \"example_149\", \"example_150\", \"example_151\", \"example_152\", \"example_153\", \"example_154\", \"example_157\", \"example_159\", \"example_160\", \"example_161\", \"example_166\", \"example_176\", \"example_180\", \"example_186\", \"example_187\", \"example_189\", \"example_190\", \"example_191\", \"example_197\", \"example_200\", \"example_201\", \"example_202\", \"example_205\", \"example_206\", \"example_207\", \"example_216\", \"example_217\", \"example_219\", \"example_225\", \"example_229\", \"example_230\", \"example_241\", \"example_245\", \"example_246\", \"example_252\", \"example_253\", \"example_257\", \"example_262\", \"example_263\", \"example_264\", \"example_268\", \"example_269\", \"example_276\", \"example_278\", \"example_279\", \"example_283\", \"example_284\", \"example_288\", \"example_293\", \"example_295\", \"example_301\", \"example_304\", \"example_313\", \"example_315\", \"example_317\", \"example_320\", \"example_330\", \"example_335\", \"example_337\", \"example_340\", \"example_343\", \"example_345\", \"example_356\", \"example_369\", \"example_378\", \"example_379\", \"example_384\", \"example_385\", \"example_387\", \"example_391\", \"example_392\", \"example_395\", \"example_396\", \"example_397\", \"example_399\", \"example_400\", \"example_401\", \"example_402\", \"example_403\", \"example_406\", \"example_407\", \"example_412\", \"example_417\", \"example_418\", \"example_431\", \"example_437\", \"example_441\", \"example_443\", \"example_444\", \"example_452\", \"example_454\", \"example_455\", \"example_456\", \"example_459\", \"example_463\", \"example_466\", \"example_469\", \"example_470\", \"example_472\", \"example_473\", \"example_474\", \"example_476\", \"example_484\", \"example_487\", \"example_488\", \"example_489\", \"example_492\", \"example_496\", \"example_498\", \"example_502\", \"example_508\", \"example_509\", \"example_510\", \"example_511\", \"example_512\", \"example_515\", \"example_517\", \"example_520\", \"example_521\", \"example_524\", \"example_537\", \"example_540\", \"example_546\", \"example_550\", \"example_556\", \"example_559\", \"example_562\", \"example_563\", \"example_564\", \"example_565\", \"example_569\", \"example_574\", \"example_577\", \"example_580\", \"example_586\", \"example_592\", \"example_595\", \"example_600\", \"example_604\", \"example_606\", \"example_608\", \"example_612\", \"example_616\", \"example_623\", \"example_625\", \"example_627\", \"example_632\", \"example_633\", \"example_635\", \"example_639\", \"example_640\", \"example_641\", \"example_642\", \"example_645\", \"example_646\", \"example_647\", \"example_648\", \"example_653\", \"example_655\", \"example_656\", \"example_658\", \"example_659\", \"example_662\", \"example_663\", \"example_675\", \"example_681\", \"example_683\", \"example_684\", \"example_685\", \"example_686\", \"example_687\", \"example_689\", \"example_690\", \"example_696\", \"example_698\", \"example_699\", \"example_702\", \"example_703\", \"example_709\", \"example_717\", \"example_719\", \"example_725\", \"example_726\", \"example_728\", \"example_729\", \"example_734\", \"example_738\", \"example_740\", \"example_742\", \"example_747\", \"example_748\", \"example_749\", \"example_751\", \"example_753\", \"example_758\", \"example_760\", \"example_761\", \"example_763\", \"example_766\", \"example_768\", \"example_769\", \"example_773\", \"example_775\", \"example_776\", \"example_779\", \"example_784\", \"example_789\", \"example_790\", \"example_791\", \"example_794\", \"example_795\", \"example_797\", \"example_800\", \"example_801\", \"example_804\", \"example_805\", \"example_815\", \"example_821\", \"example_822\", \"example_825\", \"example_827\", \"example_830\", \"example_831\", \"example_833\", \"example_835\", \"example_837\", \"example_840\", \"example_848\", \"example_850\", \"example_851\", \"example_853\", \"example_854\", \"example_856\", \"example_860\", \"example_863\", \"example_866\", \"example_870\", \"example_871\", \"example_872\", \"example_876\", \"example_877\", \"example_878\", \"example_880\", \"example_883\", \"example_884\", \"example_890\", \"example_891\", \"example_895\", \"example_896\", \"example_897\", \"example_902\", \"example_911\", \"example_913\", \"example_919\", \"example_920\", \"example_927\", \"example_928\", \"example_929\", \"example_935\", \"example_947\", \"example_951\", \"example_954\", \"example_955\", \"example_956\", \"example_957\", \"example_959\", \"example_960\", \"example_961\", \"example_969\", \"example_971\", \"example_972\", \"example_975\", \"example_977\", \"example_980\", \"example_981\", \"example_991\", \"example_992\", \"example_995\", \"example_996\", \"example_1002\", \"example_1003\", \"example_1008\", \"example_1011\", \"example_1012\", \"example_1014\", \"example_1015\", \"example_1016\", \"example_1017\", \"example_1019\", \"example_1020\", \"example_1021\", \"example_1025\", \"example_1028\", \"example_1038\", \"example_1039\", \"example_1042\", \"example_1044\", \"example_1045\", \"example_1048\", \"example_1051\", \"example_1056\", \"example_1059\", \"example_1060\", \"example_1062\", \"example_1064\", \"example_1066\", \"example_1069\", \"example_1070\", \"example_1071\", \"example_1072\", \"example_1076\", \"example_1077\", \"example_1081\", \"example_1082\", \"example_1086\", \"example_1092\", \"example_1095\", \"example_1098\", \"example_1099\", \"example_1104\", \"example_1109\", \"example_1115\", \"example_1119\", \"example_1122\", \"example_1123\", \"example_1126\", \"example_1127\", \"example_1129\", \"example_1130\", \"example_1135\", \"example_1136\", \"example_1139\", \"example_1141\", \"example_1143\", \"example_1147\", \"example_1148\", \"example_1150\", \"example_1152\", \"example_1153\", \"example_1154\", \"example_1158\", \"example_1162\", \"example_1166\", \"example_1167\", \"example_1171\", \"example_1174\", \"example_1180\", \"example_1183\", \"example_1184\", \"example_1186\", \"example_1191\", \"example_1194\", \"example_1195\", \"example_1199\", \"example_1203\", \"example_1207\", \"example_1212\", \"example_1213\", \"example_1215\", \"example_1218\", \"example_1219\", \"example_1224\", \"example_1227\", \"example_1238\", \"example_1241\", \"example_1243\", \"example_1246\", \"example_1248\", \"example_1250\", \"example_1254\", \"example_1256\", \"example_1257\", \"example_1260\", \"example_1264\", \"example_1266\", \"example_1267\", \"example_1275\", \"example_1276\", \"example_1277\", \"example_1279\", \"example_1282\", \"example_1291\", \"example_1294\", \"example_1295\", \"example_1296\", \"example_1297\", \"example_1300\", \"example_1306\", \"example_1308\", \"example_1311\", \"example_1312\", \"example_1321\", \"example_1325\", \"example_1327\", \"example_1332\", \"example_1337\", \"example_1346\", \"example_1348\", \"example_1349\", \"example_1350\", \"example_1354\", \"example_1363\", \"example_1365\", \"example_1367\", \"example_1369\", \"example_1371\", \"example_1372\", \"example_1373\", \"example_1377\", \"example_1378\", \"example_1382\", \"example_1388\", \"example_1390\", \"example_1396\", \"example_1397\", \"example_1398\", \"example_1399\", \"example_1400\", \"example_1408\", \"example_1409\", \"example_1410\", \"example_1411\", \"example_1413\", \"example_1415\", \"example_1416\", \"example_1426\", \"example_1430\", \"example_1434\", \"example_1437\", \"example_1438\", \"example_1439\", \"example_1442\", \"example_1443\", \"example_1444\", \"example_1445\", \"example_1451\", \"example_1459\", \"example_1462\", \"example_1465\", \"example_1475\", \"example_1476\", \"example_1478\", \"example_1479\", \"example_1482\", \"example_1484\", \"example_1485\", \"example_1487\", \"example_1494\", \"example_1495\", \"example_1496\", \"example_1499\", \"example_1500\", \"example_1504\", \"example_1508\", \"example_1513\", \"example_1515\", \"example_1517\", \"example_1520\", \"example_1522\", \"example_1527\", \"example_1528\", \"example_1529\", \"example_1533\", \"example_1534\", \"example_1535\", \"example_1539\", \"example_1543\", \"example_1550\", \"example_1555\", \"example_1559\", \"example_1567\", \"example_1569\", \"example_1570\", \"example_1573\", \"example_1577\", \"example_1579\", \"example_1583\", \"example_1584\", \"example_1585\", \"example_1589\", \"example_1590\", \"example_1594\", \"example_1595\", \"example_1597\", \"example_1598\", \"example_1600\", \"example_1603\", \"example_1623\", \"example_1624\", \"example_1629\", \"example_1631\", \"example_1633\", \"example_1634\", \"example_1636\", \"example_1638\", \"example_1643\", \"example_1648\", \"example_1653\", \"example_1654\", \"example_1655\", \"example_1659\", \"example_1660\", \"example_1661\", \"example_1663\", \"example_1670\", \"example_1678\", \"example_1679\", \"example_1680\", \"example_1681\", \"example_1685\", \"example_1687\", \"example_1688\", \"example_1690\", \"example_1693\", \"example_1695\", \"example_1698\", \"example_1700\", \"example_1702\", \"example_1705\", \"example_1706\", \"example_1707\", \"example_1710\", \"example_1714\", \"example_1715\", \"example_1716\", \"example_1720\", \"example_1721\", \"example_1722\", \"example_1723\", \"example_1724\", \"example_1725\", \"example_1731\", \"example_1733\", \"example_1737\", \"example_1740\", \"example_1742\", \"example_1744\", \"example_1746\", \"example_1748\", \"example_1750\", \"example_1751\", \"example_1756\", \"example_1757\", \"example_1762\", \"example_1766\", \"example_1768\", \"example_1771\", \"example_1772\", \"example_1774\", \"example_1776\", \"example_1777\", \"example_1785\", \"example_1788\", \"example_1790\", \"example_1792\", \"example_1793\", \"example_1794\", \"example_1795\", \"example_1796\", \"example_1803\", \"example_1804\", \"example_1805\", \"example_1806\", \"example_1809\", \"example_1820\", \"example_1821\", \"example_1828\", \"example_1833\", \"example_1834\", \"example_1836\", \"example_1837\", \"example_1839\", \"example_1841\", \"example_1842\", \"example_1845\", \"example_1846\", \"example_1849\", \"example_1850\", \"example_1861\", \"example_1862\", \"example_1868\", \"example_1873\", \"example_1875\", \"example_1876\", \"example_1877\", \"example_1878\", \"example_1879\", \"example_1880\", \"example_1883\", \"example_1886\", \"example_1889\", \"example_1892\", \"example_1893\", \"example_1895\", \"example_1898\", \"example_1899\", \"example_1902\", \"example_1905\", \"example_1906\", \"example_1908\", \"example_1913\", \"example_1915\", \"example_1916\", \"example_1923\", \"example_1926\", \"example_1940\", \"example_1945\", \"example_1946\", \"example_1947\", \"example_1949\", \"example_1950\", \"example_1951\", \"example_1953\", \"example_1962\", \"example_1965\", \"example_1966\", \"example_1968\", \"example_1969\", \"example_1980\", \"example_1981\", \"example_1982\", \"example_1994\", \"example_1995\", \"example_1997\"], \"type\": \"scatter3d\", \"x\": [-9.29482991028915, 9.11870856154415, 10.380764996646985, 9.023253407987461, -11.55566827765047, 9.640360819004027, 9.421808362188045, 9.878805124519076, 10.013611768426754, -10.09565365355578, 9.766421801141624, 8.683603528941891, 10.32390768260375, -7.995008599336979, 9.781056608337172, 9.900788638121092, 9.639962275968307, 9.14921097942668, 10.095909065861292, 10.872808736295655, -10.151484311072167, 9.933203076608269, 10.072003829967906, 10.347326961886893, -9.890810097900564, 10.299419511600098, 10.380157240422943, 9.0393681546586, -10.298554397128324, 9.864728670044054, 9.467549486895493, 10.195131835153322, 10.91734719539884, 10.71266982423436, 10.141516816668545, -10.299572207267287, 9.192923331306543, 10.780582451146737, -10.245271222994038, -9.664765593014234, -9.757430971297122, -9.760878020321877, 10.41960042139462, -11.03217091201443, -11.564979006359419, 11.64803650549751, 11.291886931525562, 10.214938025264281, 10.435981886079887, 9.667873599398165, 10.002587975247259, 8.406215435583322, -9.980113255325536, 9.347803030641098, 10.68720285293964, -10.911081172407297, -8.912261755820904, -9.089320975044133, 10.24508428052482, 10.010379874365018, 10.091179053559324, 9.081677407100287, -8.194820061163613, -10.275407982327936, 10.181072345148971, 9.733696877923514, -10.231213652516422, -9.561193535607266, 10.426443160440808, -10.06852647999986, 11.058483287667011, 10.674572169683955, 10.8306254667859, 9.87271862585197, 10.048492529933434, -8.665475910216832, -8.518696687377567, -9.794474048998602, 10.651912245004455, 9.440515533174699, 10.675909445990445, 10.66800763520697, 8.38498622017735, -10.441230766451262, 11.192554472846727, 8.3956929277298, 10.486092800294855, 10.016072373644214, 10.639124355322776, -9.118882102310586, 9.342675406849647, -9.27994725866164, 9.821941419719602, 9.910232466346534, 9.50877772810967, -11.153815598994521, -11.36319547368619, 9.367602342422185, -11.116791608251436, 10.582672738129453, -11.17562859934982, 11.261474519345697, -10.039052021346132, -8.99349312308919, 9.599086783840821, 9.27499030356021, -11.397106248959462, -8.803156959777168, -9.135879017923239, 9.733293620923813, -10.905067620431142, 11.361812658039533, 9.303456038028168, 10.450455577627778, 7.4784311178127965, 10.98336813233865, 10.593207434492598, 9.72212382380799, -10.715657355933141, 11.037102569077872, -10.844036252614252, -10.908453676354085, 9.733685570717979, 9.5579140189331, 10.988738557823488, 10.042089000702802, 8.516191984301948, 9.037138115304701, -10.506774075164792, 10.78943300675086, 8.180726764666405, -11.685476608184082, 9.082451539210542, 9.474985446037504, 9.570109695058713, 8.761742711522745, -9.75169784649018, 9.509876412356412, 9.718016161096134, 10.511528305191982, 9.824387317964767, 11.873882715017062, 10.850462625252138, 8.440921831419594, 9.964969021541018, 9.471015389254209, 12.226221259592212, 9.433431045853277, -8.444244010615783, 10.73750939304067, 11.985194895553894, -9.975915713946693, -9.610651192401477, 9.475752229329517, 9.900631553509065, 8.877693337938732, 10.881576350376443, 9.966257941884537, 11.100675355173031, 9.524808027251918, 8.983278825819177, -8.745462816471004, 10.086561156028337, 9.985571150100471, 9.82366559131382, -9.304559603456438, -9.755693781095706, 9.972465960975544, 10.484407712025586, -8.828284185974203, -9.991474049274043, -9.680927085239526, 11.582203011861957, 10.413065704608895, 11.072524121648406, 11.138466047089151, -10.156262780253739, 9.666014694652288, 9.453523952780454, -8.652072180277138, 9.737375618979387, 11.372316080991148, -8.696920854853278, 10.506810368273007, 10.466794896905592, 10.118622813159144, 9.35494714405492, 9.964382951259244, 10.858749238227832, 8.816926524547675, 10.703828203021002, 10.276842276449866, 10.318433744642327, -9.510159693009266, 10.576335270410745, -10.12057030830054, -9.936764673844225, 11.085565931933333, -9.7715603278361, 9.163226695171396, 9.558108188736245, 9.776143549506966, 11.630151081027135, -9.892380127496336, 9.60271726618423, -10.029544439163018, 9.593515645880556, 9.775559079480335, 9.242519816587423, 10.411980721371105, 10.557355008094731, -9.509418307604921, 10.3033066792683, 9.82640722936431, 8.617637683353175, 9.737169439594965, -10.088125247647724, -10.670520359590297, -9.603303273079385, 11.173965087473308, -10.49406546630178, 9.743329684924044, 10.441572304337818, 8.783399833396484, 9.544500010940881, 9.188481763904617, 9.290362702995719, 11.18616148524611, 9.99823548587214, 8.040318348651759, 9.260371164636041, -10.358176574957188, 10.305719114656155, 9.258895199664934, 9.683566490986616, 10.044410814820036, 10.178931698812459, 9.03958048755407, 9.840493126710319, 10.867064958486043, 9.310965339465179, 9.375267323253395, 9.227858063493557, 10.581744237653709, 9.84476015651702, 10.074763381482024, -9.396042134248123, 10.472474359193106, 9.348548985581962, 10.183968523759306, 9.705821668249591, -10.725684283445435, -8.465640438822845, 8.422498274085013, 9.926296746907898, 9.473895720690734, -9.446230758332039, 9.828123783813965, -11.147786958738015, 9.452786821816014, 10.06904692739762, 10.402343764571023, 10.920720398973998, 11.675125413848507, 8.601281352010876, 10.85433247144455, 9.648621857345356, 9.924424813366283, 9.445074391165889, 9.38688547487404, 9.220496595669307, 9.990535840800314, 8.69516033465231, -9.93747379885429, -9.89309684655843, -8.496088550668322, -11.305267807419124, 8.992147512732664, 8.341952901054656, 10.170519423877511, 11.600489918058, 11.062668418851384, 8.499385159977912, 10.126834018044628, -11.782389871344936, -9.290129841734316, 8.51307667445912, 9.152507293795725, 9.524178126884879, 9.57787764096603, -8.097448254974383, -9.909526614973187, 8.783763886551329, 8.155018768442432, 9.190232302679506, 10.83129469866454, 9.991757263667745, 10.34735552439143, -8.660344673919802, -10.732833634555467, 10.683297803672083, 9.044208147068224, 8.535492604905219, 9.878957265233378, -9.026634097376268, 10.742855212969255, 10.37969491771663, 9.604213755371381, -9.618475728491317, 8.863094165219355, 11.28785304226443, 11.273785443143133, -9.248616787987878, 10.034489122739886, 10.58869893805332, 10.64649579352305, 12.063599508096456, 11.269110492204774, 9.530679645673523, -11.586734206159388, 10.044410420226479, 10.046995469486179, 12.1392936331624, 10.995116715418037, 10.484535166975132, -11.836037443272613, 8.605813169716939, 9.445758849163617, 9.774608245047414, 11.10728830786899, 8.85500914427438, 8.955248108526547, 10.285326620256559, -9.502794675459567, -8.572669738877874, 8.368084557036553, 9.58660243946616, 10.389300075074956, -9.68738374776269, 10.513501182987765, 9.599780012489187, 9.126480894289797, 9.669019058151951, -10.465136939299523, 9.397106686855565, 9.955185085965306, -12.482369490761927, 9.87845398145153, 9.625483371034477, 11.259729450487237, 9.02162127886795, 8.792567684257271, 10.323363902835638, 10.193181083684111, 8.434513226357343, -11.601071865028125, -9.600588042516708, 11.117776757773981, 8.458070149795615, 8.62572560350528, 9.827215158576008, -11.45979521799884, -10.473689645893362, 8.949071152108424, 8.954637835234827, -9.593726968313408, -9.786514580966271, 10.48035987444701, 11.03426896404351, -10.751312588965295, 11.254471042572131, 9.968853677292458, -10.619224895220619, 10.061558568799867, 9.774979481286083, -9.789178302912227, 10.086938030000294, 10.818956052597896, 9.677362860615922, -10.253252633793727, -10.552090342371855, -10.066873078556958, 9.75901719714173, -10.320257449558389, 10.373648301005378, 10.19047862088945, 10.279254285384294, 9.939514905782543, -9.27018993022817, -9.998471978433889, 10.6735653094686, 10.9530345272732, 8.831112449901097, 10.69582846929573, 10.198747057993156, 11.224427307597033, 10.52036459027012, -11.308741362558791, 9.607529378044676, 10.678500655774075, -9.435602301397376, 9.878139476875567, 9.000336188902525, 8.57107472560402, 8.673239480129514, 10.788855717918308, -9.200504483460579, 10.00800522322841, 9.564538588340898, 9.37918105518149, 9.343464473633851, -9.056371845503305, -10.580590138012862, -10.0065859477709, 10.176903840085217, 9.432543479068446, 9.424248258732575, 9.840299235983938, -10.151687233033236, 9.435722106320476, 10.306047881433946, 9.400436504916422, 9.188927072541386, 10.864277420519038, 11.684174110825467, 9.912850351434283, 10.43993912303838, -10.016786202522828, 8.747595936407608, -8.711730236692842, 10.32059339677673, 8.489458555237935, 9.246862098915692, -10.528083089617818, 9.817745454291444, 10.335044089439153, 10.730777609951755, 11.287961189432925, 9.479424620470585, 10.165289830267007, 9.101728015098745, 8.873898206259765, 11.296715815075443, 10.69793792715987, 10.190738301585279, 10.323932005744958, -9.277654689168907, -9.751410250505359, 10.73416598835794, 9.93902943522757, 8.661048546104336, 10.100255123637456, -10.385343151180665, 11.081635376482804, -9.300719660120462, 10.692543590173262, -9.139404348564948, 10.987559185886294, 9.42343181072763, -10.791151120472293, 10.806850754232649, 9.384571932652733, 10.57239833878074, 10.373199375109412, 9.048871468716818, 9.459669848953748, 11.273448358680042, 9.745761090693938, -10.18886920795718, 8.849831469856195, -8.054125769822388, -10.3922517548254, 9.772571565277604, 8.832568019672737, 11.31147624626588, 10.362304486693406, 8.642823016763709, 9.182540020508599, -9.257439571371984, -10.1087381118172, 9.170434277357332, 10.137368437753212, 8.400562423160913, 10.06054443230921, 8.32260509255318, -10.895821592843024, 8.333311908811577, -10.010982727143547, 10.394699657972884, 11.004382595146389, -10.33046350215084, -9.896222188246627, -9.494537936514991, -10.644483424573714, 10.018319878855868, 9.946976105864511, -8.799029841792718, -9.297163383663664, 9.940978577681054, 9.920894763931535, -8.822137276643904, 8.531678523146873, -8.64176446428411, -9.395072671553264, -10.217212935723758, 8.34510411274811, 10.647904970152998, 10.891124046587812, 10.731689026428295, 9.4568587118146, 9.607609820699851, 10.763969505097078, 10.584341760316335, 7.499355774904903, -10.198811713602979, 9.562770788212472, -8.687547794892012, -11.202422998923936, 10.644929725448076, -10.085286438872382, -9.269755483706867, 11.035621294900492, -9.308526580383035, 9.421301949558863, -9.53277313334021, -10.216712331924311, 10.097150446702031, 11.228791508183175, 9.777776353636256, 9.08009073523215, 9.72983331419435, 10.073505873456732, 11.355393931985187, 11.036185405563955, -10.119086389669544, 10.441093715803682, 10.559597484980225, 9.687460317121383, -10.212438400463737, 8.712487751508505, 9.468378121738391, 10.805298933502515, 8.983954253301956, 10.744622818580554, 11.534729964273989, 10.976162508417369, 9.277624335282106, 10.829941576379948, 9.798111001786497, 9.24386493840931, 9.620974236577164, 11.402491680927048, -10.069348099663763, 7.82966064768408, 9.604554050945001, 11.758725542882772, 9.914232898740334, -10.344826029980982, -9.83736253671305, 11.244082303554435, 9.67074085789638, 10.537975574081418, 9.098738025280293, 11.493344549337804, -9.569977615167335, -9.233750628045645, 9.334430948096813, 10.505810270835138, 10.604756661565732, 10.859617515410436, 10.60137522005691, 12.226956355664637, -9.79495435471977, 10.48812977370338, 9.891190752282633, 8.941114977978971, 9.98576161679038, 10.112254481179574, 12.111981803859857, -9.887968657789386, -10.250237570222236, 10.884191531473672, 9.724872843638222, 10.284517298733034, 10.018329853753684, -8.200921657491111, 11.764759118204186, 8.832707080158444, 10.240960358822463, 11.383970937201017, 10.907847750093365, 10.553662731744623, 10.734280117086648, 10.687333885493876, 10.38247494892702, 11.139975456214119, -9.162506888787181, 11.291225609052619, 8.949251756585248, 10.359325373985627, -10.639093582670732, 10.151877211081352, 9.299294321111285, 11.03687810970771, -9.296021728211533, -9.050598570261199, 11.585806395889868, -9.966078878137564, 11.467301099629488, -9.802538467270319, 10.269505745885729, 8.762000853172228, -11.45401282075828, 9.840031988460764, 10.449912897137782, 10.007904119039704, -10.173782632918458, -9.847489018272592, 8.650696923740101, 10.005059031825615, 10.852925079594293, 9.913850159241125, -9.029927239687755, 10.720987324956655, -10.216463456825963, 10.005236178101024, 11.434852747040763, -10.181686064018233, 9.790432327453445, 10.533131210764813, -10.521520897437776, 9.432690743870346, -9.79720807685541, 9.898466303255152, -8.904003003002504, -8.775063146033988, -9.28027368741819, -8.984904096119067, 10.198099202736918, 8.26019995729726, 9.744041162498753, 8.699298406825932, -9.596598709083535, 9.142350553454458, 10.09516372413297, 11.347977376083515, 10.174314363778816, -10.387848842835606, 10.904856645631675, 10.811110267197881, 10.198059083020903, -11.82609184799584, 9.78839689937558, -9.865359510503922, 9.942629987357378, 10.126507937329318, 8.708780265181522, 10.209424553303897, 10.839301258177278, 10.941441102579107, 9.332577476870005, 9.64244784635412, 8.047505671148683, 9.601656287935755, 10.045460235002166, 10.69107359652156], \"y\": [9.818157534436944, -8.74962621229305, 11.428555391646778, -10.182071162993136, 9.984380473900414, 10.132650688733202, -9.65073793213806, -9.573634368765743, 10.356871120966765, 9.905314259335901, 10.447655753426947, -9.231361482240526, 10.309717278023147, 10.258173987905906, -9.13542026010986, -9.714431506454186, 9.759728908549638, 9.43520332522143, 9.356186222173854, 10.581320397634094, 11.141692001212395, -10.264714626701004, 10.31640444460181, -8.748964671994054, 9.724838065366125, -10.083227276595089, 10.215162308284587, 9.49873506612024, 10.365757108258316, 9.881949956007352, -9.130368032971178, 10.018270876599953, -10.761924653827613, -10.462765344493883, 9.507343497468149, 9.825864637056284, 10.002395904250644, 10.81911870941555, 8.635242375836189, 11.270301128332106, 10.30360905537757, 10.022087338510142, 10.533947598787178, 10.328492661975337, 10.315929400110349, 10.623126247439846, -11.019037486144013, -10.166385934319738, -9.859639802000869, -9.396736750944951, -10.581976760624727, 9.696287932123251, 9.123985331103828, 9.520998111339527, 9.862802034812548, 9.698942100225654, 10.371714196255759, 9.754322123455466, -10.709811645026116, -10.734052572620557, 9.431928436426016, 9.555911109102599, 9.151143650415046, 9.42780610364675, 9.778944418602453, 9.60768682877453, 9.233662501922389, 8.819108185670478, -10.41817041316156, 8.744969918444967, -10.012538907168816, -10.39615619712363, 10.040964130729513, 10.581154042035198, -10.077222012942455, 10.95078329272683, 9.915197961581624, 8.864925689280694, -11.50829198860617, 9.415971189638517, -11.432263777722557, 10.342422834027186, -8.853966673820281, 8.40138094319155, 10.683378566145198, -8.513832075692173, 9.809912289313033, -9.237835622414574, 10.518726846955634, 10.050006817994229, 9.53116726089345, 9.887264486435752, -9.697969112404218, -9.756032050304361, -9.984177604020088, 8.073024482324383, 10.35500106303173, 10.551971934266914, 9.662701701211452, -9.816187564432973, 9.73070883332619, -11.147304835073912, 10.206115738588508, 8.874787185869954, 9.806933553293284, 9.933606192568469, 9.455206392886987, 10.279543130897405, 9.675989937073291, 10.162976225773287, 10.397258466005125, 10.717852517959892, 9.98308114418839, 10.077992598519266, -7.778770511732029, 9.620805887959797, -10.661735150282816, 10.024061706039664, 11.196055604392646, 9.89463657601325, 9.558028370264966, 10.49064984400763, 9.32951191439723, 10.604076075890736, 11.100217092479067, 9.995587993968261, 9.571942005897837, -8.228682820150079, 10.92711245609335, 10.246494709529502, -8.082670377267808, 10.271536164501425, 9.175050200763625, 9.253900484481552, 9.421566934520838, 10.474692463097503, 10.606846463429804, 9.746122058045701, 9.603630002006522, -10.753611104374313, 9.954163524738467, -11.271662327875589, 10.402351356310323, -8.422583469473222, 8.844114674777147, 9.95522280959353, 11.06172785145869, -9.500950589885752, 10.596580695774318, -10.983133019150765, -11.355675072908008, 10.527872680951676, 11.234722129573122, -9.222330034267728, 9.543971141549617, -8.471276468855113, 10.099578432018362, -10.028910235787862, -11.146240338510847, 10.863515174785858, -7.68558316015816, 9.930814235060922, 10.722473383315354, 10.097069126173308, -10.182166082577533, 10.728575768386193, 10.124480612734452, -9.151483498893043, 10.724428162231362, 10.296790606446718, 9.798153697825827, 10.155786703132431, 10.399982519333184, 10.12609411424227, 9.798680034245372, -10.88979204489868, 9.171580828119396, 9.62429917897017, 10.32346237881932, 10.287778572618734, 9.58907457343729, -11.686670432827453, 9.408821716333572, 10.451905316048347, 9.676959200894228, 10.67778497060876, 10.376223433043373, 9.581105199616278, 10.167356505653196, -8.190135198426754, -10.049259372803832, 10.027761815995069, 10.0248703857584, 9.487897156661264, 10.201441618111696, 9.564790720935749, 10.20779234362245, 9.897861635158383, 9.2106563725472, -9.261009741433574, 10.038506418227762, -9.437078394924425, -11.95611192221992, 8.876996726933518, -9.658542024537883, 11.060123961430385, -9.59537556137458, 9.434784122856314, 10.454385790222313, -10.140049620606748, 9.5161622679092, 8.62882586421534, -10.304701958720258, 9.380104213724682, 9.101066638542394, -10.433011307728522, 9.377577565323937, 10.461628543942446, 8.944952514815613, 10.364854199267377, 11.062152151649169, -9.82382125175784, 9.050466851326515, 9.603710644396664, -9.115667931060877, 9.305508660556125, 9.643744685282961, -10.958198418808994, -9.955134906972898, -8.12030269798589, 9.996961827908144, 8.926456881026342, 10.290967806940763, -8.598560879009307, 10.384807829155962, 9.876201241308735, -9.7909323054487, -8.816409195574527, 10.150877776289288, 9.6735002698338, 9.538552645189478, 9.987839094781064, 9.475670161076065, 10.023047613411615, 10.509303734907295, 10.167186304045684, 10.025765688121778, -10.061605214342931, 9.312197450725344, 10.058707405733067, 9.35167278646109, 10.180215838195991, 10.79290412091058, -8.685161089431002, -9.457731612350084, -9.568437723146536, 9.178771265385965, 9.111854666857479, 9.911522101900797, 9.61141556331843, -10.672572674857143, -10.905883489006941, 10.547426502963603, 10.648746938469698, 9.75475378596437, 9.865690403337101, 9.778513749496614, 10.09494908821786, 9.478187385734948, 9.704646732969117, 9.942415979836895, -10.120159599910469, -8.851255969733344, 9.342422183200592, 10.149133201113152, 10.695367226403864, 10.572411845841453, -8.824141843579874, 9.373683432352856, 10.35303553478441, -11.607727050549402, -11.890789402206172, -8.234743914347451, 10.422310070221053, 9.808809973407657, 11.39134504194697, -8.259974290373725, 9.976455873221582, 9.525884372420629, -9.16477815788242, 10.023736868331277, 10.707060665831124, -8.807154796835565, 8.387975975942227, 9.827231076399276, 9.626397492631714, -10.30664069050435, -9.45618097201686, 9.309274447067688, 10.601267996403513, -11.340324424472456, 9.463640536155433, 8.92352751370277, 9.09116126977077, 11.275582606191604, -10.710543150981001, 9.634963884343245, 9.495977612070423, 9.320020706473084, 10.127667174524822, 10.619677989169157, -10.960189221357187, 9.77065595677823, 10.775815459844829, -10.833594639293626, -10.329543861686158, 10.748518310482144, 10.859688259948948, 10.563831409974174, 10.85660956634214, 10.598143083075998, 10.601472646690288, 9.898437364257905, -11.128863895882315, 10.444069134715145, 11.084516301442813, 10.680750240880142, -8.95524693821471, 9.884752316687157, 11.251733726118484, -8.700098805901787, 9.425053758166799, 9.355581065670666, 10.028420137021856, 9.749562827565683, 9.890708941444826, -9.95904326121842, 10.03416866385732, 10.441093963192252, 9.564182331943858, 10.061451838092983, 9.842926482027744, 9.414417165745077, 10.041464173416138, 9.625820967501072, -9.95687875545265, 9.898308745593631, 9.422114437764485, 10.520297271346566, -10.91960362815693, 9.337348578726926, 9.118897578743148, 9.620608609809105, 10.016397355549337, -9.096547065691968, 10.523211518097932, 9.856089246156172, -11.103668228200082, 9.235221506917291, -9.686062067433886, -9.093121518824487, 9.581487748824923, 10.04682820686265, -9.374045379140568, -9.852518823389161, 10.964683943671924, 10.30478694973937, 9.817302614332107, -11.091922323416481, 10.168374242868564, 10.057586914133013, -10.95973374286, 7.947076691788672, -9.772365754843259, -8.794022056173517, 9.876795552126989, 9.496297799136109, 9.392475292502523, -9.123732231729747, 9.347782876052852, 9.322196950295774, 10.446089439101737, -9.830507519124895, 9.708554076240553, -11.243235904236393, -9.762177770918312, 9.633799893821637, 10.750417099170926, 8.911466059495151, 10.399470239025671, 10.524915806852897, 9.110891897098963, -8.909655569560107, 9.112645352865233, -10.36081184979681, 10.464937070818841, 9.406012464263174, 10.990005818603233, 9.779726853353429, 10.076687625161904, 10.610310562112362, -9.383518440956124, -9.352268255754629, 9.3094156137877, -9.203752757907223, 10.754003564426245, 10.189127215860962, 10.03387056508656, -9.869839521817523, 9.176274723614178, -9.91294405909701, 9.821460775059045, 9.574895398894414, 9.656727661660403, 9.792680129314862, 9.126440254711257, 11.168590674839828, 10.346854015823112, 10.40477393181148, -9.984883694659652, 10.654965072206114, -9.120662434922984, 10.235057416239782, 10.342515172563878, 9.788342830917399, 10.67325236317942, 10.325950782474301, 9.956365044431767, -9.28083299316692, 9.951304940851527, 9.500563120910186, -9.55204093742295, -9.380094282989942, 10.367116351046528, -9.040666567337565, 9.56195379469655, 9.706056742928295, 11.07827656946837, -9.671377970992559, 9.964418134122019, 10.45856969621205, 9.880175297847332, 10.879250824403883, 10.26831551310347, -10.758411151696855, 10.60621833639871, 9.743309133157485, 10.392008050612354, 10.933106241945785, -9.217813108755909, 10.102783157602527, -10.240695040125171, 10.468758071740396, -10.548752450559363, 10.502509149656198, 9.147267839681232, 12.546775471506033, -10.221844747586974, -10.270444240276522, 10.514992371252225, 10.357604888782896, 10.52714703739744, 10.175749229810247, 10.651850611166497, 8.396914362938432, 9.512240261634524, -10.541523888699544, 8.971507346029084, 10.21807644874558, 10.16745488301746, 10.992401647603081, 9.442979986480415, 9.722480914463148, -9.702022302994887, 10.024386548716786, 10.218268367587218, 8.942530842558384, 9.761225709227137, 9.973015207468881, 9.160477465749324, 9.636457338014846, 9.617168011068776, -9.192388638600702, 10.225221587654424, 9.673401735436086, 10.072972261023539, 9.596650086235739, 8.795277042768438, 10.489639956803305, 9.943388567937301, 10.103343925491476, 9.775133032272466, 11.593786170665645, 10.150683627752818, 9.669115183350138, 9.742696001305983, 9.910944557901665, 10.197668303439045, 9.711553338250283, 9.640833336775335, 9.36014480654011, -8.542664015735168, 10.942818687227202, 10.517128299806062, 9.7265931623024, 9.670554262539602, 11.004222328758976, -10.85251981369854, 10.076988436109295, 9.463521872577473, -9.371008041448896, -10.223733292245301, -10.439236589781391, -7.766738372024627, 12.034258781661215, -10.597898103764997, 10.726446790745864, 10.029656455113555, -11.412002452007783, 10.118691290139342, 9.291140107527868, 10.784578263054872, 11.034263976649141, 10.51199542927711, 8.89983662635099, 10.514630216931169, 9.778942684102757, -11.546922399006586, 9.933998514186834, -8.187797609729461, 9.626932468416724, 9.767256932698993, 9.728372016511683, 10.222011112616237, 9.808622239229601, 9.779346088804584, 10.275100692419858, 10.239801160789716, 10.938633102802473, 9.559766918150439, 9.685042435168794, -10.252078268562746, -8.553297739379834, -10.81647212943015, 10.385456959904658, 10.428237896281356, -8.513580848941304, 10.199262650754688, -10.287715172033936, 10.480513448441878, 10.048296256739214, 10.752105292576136, 10.226172279310827, -7.631150858243007, 10.609533368033002, -11.576932084570497, 10.231723127400853, 10.112546795100315, 10.739912125690717, 10.377417558583758, 9.203178327832616, -10.61382588435552, 10.007894883981095, -11.417860114083517, 11.107485236844106, 10.35209230800973, -9.46858178622288, -11.730764561163976, -10.179515103951001, 10.127290795522773, -10.4300200330219, 10.418751999499685, 10.720296548089483, 10.000823372433048, 10.040006198005507, -8.33371571313503, -10.198942607119358, 9.56906906829674, -11.013514222638475, 11.174548143397859, 9.317078043336208, 9.56583554120533, 9.722457660429273, 9.788120927789826, 10.314855547287758, 11.964884419549715, 11.60789328855989, 9.99223468910765, 10.421719492211405, 9.936498555115904, -10.682719726406598, 9.721770645768423, 10.092895321872215, 9.575722095625343, 9.410179283137168, -10.96284079158024, 10.84709279173733, 10.708506948689465, -9.731657362450228, 10.205559983471229, 9.036593514019813, 10.198781306562857, -9.557446356254678, -11.485320537702515, 10.039828387702524, 9.25567921017288, -12.035960463602517, 10.563066708724552, 10.399374971909104, 8.203013983874422, -9.470511582463631, 10.301177915760134, 9.773881418422285, 9.963679174909165, -10.529374769691628, 10.251679489414652, 9.483176079594664, 10.400791455692044, 9.069483199264798, 9.989817853609182, 10.1105866575599, 9.835060988389184, 9.819905184072734, -10.622308395327442, 9.42042282028899, -10.144450310058865, -12.00696178792072, 9.153899051480527, 9.794387997433638, 10.181846163667073, 9.734390723698267, 9.54560175668708, 10.171813450815945, 10.531291498494168, 8.71473156678416, 10.527666934619157, 9.208203327132837, 9.179753925690097, 10.074668035052515, -7.6585940666443815, 9.30199099089935, -8.95486488932558, 9.156547124383279, 10.167778905135231, -10.325632928161424, 10.43056288172409, 9.666432560422912, 8.836605291324355, 10.101931971642765, -10.427801799189856, -10.236012045479349, 8.914512105605708, 10.46071751153947, 9.437121621985005, -10.534897839302262, -10.482247551824196, -8.3609367111595, -9.662223318472742, 10.38032809641783, 10.64697353970708, 9.937352032110446, 9.138842207413832, -7.9039834438164895, 9.954189611838654, -8.9703638924132, 10.335631224082729], \"z\": [8.94331552312122, 9.523096489879185, -12.275893851266435, 8.765913618862639, 11.804613817912056, -9.414322352166998, 10.909483792390683, 9.53047688736749, -10.986489451476244, 10.63464093332597, -9.053647155793602, 10.241009971753805, -9.58797340026773, 7.069509355821445, 10.937075944072669, 9.846595079616284, -9.87349462759296, -9.038912462799878, -9.532465274849965, -12.674941516620514, 11.70080214029543, 10.103028881133593, -11.577797071712274, 10.041811849111516, 10.571784214606264, 10.696964584403407, -9.560617276567246, -9.823087109376944, 11.311897445387912, -10.206022331312917, 9.607171508818725, -9.211251194778454, 9.898176863657358, 11.408818250070482, -9.05088388784114, 10.671449579015922, -10.12116603400233, -11.51959968342901, 9.161352285252702, 11.157293161477364, 9.882945075126841, 10.13704665286775, -11.51059431099919, 11.32599501267184, 12.00258294502351, -10.484835225698134, 10.868554473838522, 9.780487490546284, 10.402075666865592, 8.830755576279465, 8.77577434078867, -10.400346803754466, 9.470080582948274, -8.279874227883496, -9.662657695235545, 11.074189792422434, 8.508284366825952, 8.506747556071462, 10.686831918707512, 10.217574727221352, -10.744625949530379, -8.948936604068162, 6.5401438625970725, 9.54052139282687, -12.274983250298213, -9.970620290575477, 9.964099018207111, 8.108086383122007, 10.653489953011643, 9.30223862052334, 10.406048962070276, 10.818170029418122, -9.948946492173679, -10.60758269135307, 8.880670947652415, 8.95495729907062, 7.820409354691055, 9.263206398398914, 9.422841399273777, -9.052083273115699, 9.652020485330471, -9.949689427913578, 8.502903691973094, 8.836545814956224, -10.77596930590852, 9.64595323283588, -9.120073449501692, 9.975296209480343, -10.299382990870368, 8.94432123292247, -8.631833155341372, 8.64711471621846, 8.2761606608607, 11.188444795704946, 9.00750282715656, 9.670487381491208, 11.832530509995046, -11.48744694979629, 11.50055702042146, 11.468862256974191, 11.787827005451268, 8.708816102130232, 10.553582246553997, 7.986922452971796, -10.00705785780577, -10.42307040460881, 10.605555584777296, 8.974530565435424, 8.872202354732838, -10.710901500785884, 12.316346954889948, -11.681241345422988, -9.633551908331956, -11.236363187364958, 10.260845462175942, -9.624430144478714, 11.112488672371766, -10.061796623298118, 12.01056286736449, -10.312526427017824, 10.073401542399845, 12.26903349433325, -10.049605748974397, -11.017719871064953, -11.450500786272983, -9.723624505322901, -8.49013585904805, 10.712536972579032, 11.5066000040618, -10.564915449069169, 11.711181262851463, 11.93130410983529, -8.829631689726279, -9.257146703083617, -8.650139623912226, -10.909936629891414, 9.874785853734236, -10.641134898197107, -8.753361875099024, 11.528251866417495, -9.40386788312709, 11.421519864459745, -10.814752936461497, 11.307646027534942, -9.583209559004596, -9.68527831890345, -11.658733390026418, 8.831517620573084, 8.851855997206066, 11.937626721039411, 11.32621102069042, 10.463085852950208, 10.3531493896488, 8.72821397723159, -8.754994157308982, 10.244129805098906, -10.17539749034906, 9.898107408532724, 10.560916395442767, -11.25565969880019, 9.75593966844745, 8.169420210426875, -10.399150272480572, -9.736472156737918, 8.771755493542724, 10.281958685472603, 10.255115883222766, 9.482056173780066, -11.426616377780029, 8.2742519049901, 9.077315676136891, 9.415154001413235, -11.477592704612938, -9.22358201187751, -10.38661005207329, 9.372819380909734, 9.291586041427456, -10.334887345266512, -11.36381059475421, 8.330632938566703, -9.75535666940556, 9.707690607824318, 8.003935077487888, -11.927698601332112, -10.072687702841593, -10.928220293784669, -10.286776038007863, -8.400797089720921, -10.725716808746977, 9.61081484224701, 8.068745694405038, -10.50342225834901, -9.857428386929199, 9.270062619964216, -11.120880220002647, 10.012167870929034, 9.984120085961234, -8.980480035303268, 9.049499105035666, 9.796548875530142, -8.741945691570871, 10.30495431514674, 11.425346693654273, 8.148718941139517, 9.17835764772655, 11.115675979549792, 10.293579553181992, -9.731267690700415, -10.109191061536045, 9.494599580855288, -12.048575575940296, 7.497004679227432, 10.887888028309828, -10.457876927283214, -8.67345889546513, 9.514669220180727, 9.90144683507994, 10.41596839642526, 8.180124865237392, -10.116548254348697, 11.114425252993119, 9.753811998163899, -8.87374018105728, -10.403176807767622, 9.907600480807712, -8.987318897207091, -8.32296329209135, 9.832695256419125, 10.099073702272573, 9.298239301414261, -9.615730066624165, 8.89368359642756, -10.077010814274136, 10.509787843544801, -9.6569051021712, -11.170194904116325, 10.222098819072626, 9.607757015606104, -10.6051289331644, -10.203694577883795, -10.121655175359988, -10.10648716605972, -9.702752358646089, -10.468316280170972, -9.493879890862255, -12.013584600324563, 9.60756897208743, 10.007159002925354, -10.531987779177507, -11.936235749831695, -8.419151858798303, 12.018580221934306, 8.606704725194456, 9.32273345592568, 11.048280701218275, 9.497473533829522, 9.301763021250876, -9.661160292851424, 11.857241176712584, -8.36805499375065, 9.817632317355407, 10.580841425686087, -11.786545124916158, -10.585315283290432, -8.169153523002155, -11.069574843097602, -9.859914703532478, -10.009193833571677, -8.737262231863363, -9.056180718010875, -10.100346355463351, 10.758238782798728, 8.26990937253322, 9.679080372591962, 10.087328137668184, 8.643385742050476, 12.812718858945424, 9.036881684115851, -8.665885259026052, -8.710215630893325, 11.683204755476359, 9.296758450513671, 9.026638071379722, -9.947794708383684, 12.362957792087082, 10.6493486266285, 10.373607220856632, -9.101199880321907, -9.416611047441098, 10.472666690680324, 7.1342738031197115, 10.888168070299887, 11.039993229661254, -7.111718818839238, -8.958071222397772, -9.615441060854408, 9.891358287349382, 9.663874251186812, 7.25320162215125, 10.982233287432607, 10.907097031539678, -7.838306514849897, -9.626086698128614, -9.518057194633235, 9.73577751874201, 8.831285225957812, -9.921592724670155, -10.76592872043283, 7.625803591743908, -9.480508824723163, -10.396922343420385, 10.660331449451979, 8.341899134241832, -10.351400220757778, 9.370831279747913, 8.171631060958852, -12.709808018494318, -9.840634684000463, -10.706323766958002, 12.752535301858021, -10.437831930018485, -10.91161141159904, -11.603013027496983, 11.022077267492785, -9.74848026402913, 13.410865349087617, -10.104182164927218, 9.73843344291772, -8.855621823765839, -10.605543752283973, 9.683557321743773, -8.151998096328352, -8.628936291397581, 9.574171331053522, 8.028966815547548, -9.883675011553407, 10.71904895425834, -8.59533171053323, 10.374307886970092, -10.718052153981638, -9.472847914367122, -9.781793165610836, -9.67848073322308, 10.7929616625227, -10.143074895836081, 11.183310319250085, 12.72783409531076, -9.205894223168908, -10.3990609840419, 10.148770698545283, -9.210786953828277, -7.903229188613997, -9.600578599908225, -9.638161869183133, 10.277842289777864, 13.171717884853958, 9.83785585965624, 9.679712865190616, -8.315468908907214, 9.343919086024695, 10.427375047996831, 11.092454972418862, 10.715477881471404, 9.567969580623808, 8.567340944277035, 10.005922309746026, 9.777669691578275, -9.928080737686134, 10.364418595730905, 11.61458151061772, -11.146059189560102, 8.349311131875071, 8.705799417153898, 9.803061256786064, 10.063697681126659, 9.595182297067314, -10.360724651264766, -10.652133130159894, 10.562001649371217, 9.60502591453834, 9.087777391092056, 10.478678847811244, 11.182941969456452, 10.242215279158604, 9.396159914376003, 10.408397869873186, -10.094473751419944, -9.845361317133312, 7.522051798516806, 10.270884720727812, -11.190958803487952, -9.61286250971924, 11.211230951652748, -8.79885438566247, 11.13791970942575, -10.392055602641637, -9.816038441405542, 12.181954259332963, -9.525681848206325, -10.628409773988936, 10.269815077821365, 8.737941640718342, 9.39558543901498, -9.048812483488998, 9.039784522641728, -11.251503149438896, 10.484932248335092, -10.018858607573222, 9.561569059619629, -8.717279059447478, 11.139328852427845, 8.558551714743338, 9.922350951592396, 9.492084829189416, -11.492846147316351, -8.775187248779032, -10.605045742937369, -10.424109775299385, 10.714315669542092, 10.529452197373761, -10.30190891872925, 8.480640869049171, -8.724921108578664, -10.397021314951516, -10.030466112380674, -10.20047702121937, -9.258344649917161, 10.371719938734815, 10.008848157027238, 7.863708086222305, -9.096266360090405, 9.443893734366702, 9.826026726714318, 10.26893683609871, 9.67849692892569, -11.16257004502906, -9.052368231679083, -12.219948760803197, 11.199227468660194, -10.245005099256685, -11.143575279874174, -9.498864827663665, -10.741964744566433, -11.574506689497666, 10.496707758938909, -9.522537728972297, 8.478171016539324, 10.24942091931841, -10.842589656726467, 9.52278687725854, -9.651257295287762, 10.860990436620783, 11.335800419659575, 10.240186543250402, 8.778958735434934, -8.706295332598444, 10.578777953577804, 9.528141586472426, 9.820074077801575, 12.44527868748855, -11.75518655147372, -9.779467199740875, -11.926397867893385, -10.350738988363748, -8.071082562644403, -9.032892293213923, 10.124856208538871, -10.214410569718654, 10.458211905345431, -8.863317475042454, 8.189443130955317, 9.983623260541687, -9.796533771006807, 11.03622772630738, -11.23338300577908, -8.707751497900428, -8.689459047579211, -9.747773415897983, 8.81475193546344, 9.566428491988521, -9.545812669941663, -9.414293480524382, 10.817249132398814, -10.26224964479714, -9.313495206703983, 10.61541888768178, -8.984307076819471, 9.13840991376492, -10.550149549307477, -10.012933806502868, 10.555140091374852, 9.846679074802527, 11.165656487455607, 11.3981613541564, -8.430791803348555, -9.492579770078816, 8.947401717076389, 8.677664214718337, -9.548786729691384, -9.299408183998336, 7.578739320019457, 7.76166370681613, 8.733895573901556, 9.403408701990575, 10.308205603714818, -8.057060056799466, -10.832044649201693, 11.3033792642271, -9.831490541612679, -10.133423261881338, 10.794975665706797, 9.758759110866318, 10.743148790736845, 8.582895113516926, 12.441140168316515, 9.279775453808554, 9.687911243824324, 12.636195860486158, 9.770987437114238, 10.66789075738577, 8.746228085469845, -11.653414457023848, 10.7684898445429, -8.977580879208105, 7.897778718555565, 11.634536202192809, -9.297091727297802, 9.779337354749424, -9.5335005527324, 9.423207102563364, -11.053781507071768, -9.793017567632686, -10.726963940295425, -11.359674130162917, 9.781703932052542, -9.844345712358173, -11.083293440262485, -10.210521835700446, 10.57173070509829, -9.457265321809766, -9.734946660702478, 10.941475613693, 9.669175354113866, 11.136780965240302, -11.855046012573029, -12.138672277438932, 9.735589309680808, -10.633017044905026, 10.690469984461346, -9.789316954036947, -10.177014560487478, -12.709030475274213, 9.844608112236847, 10.738877316023189, -8.701493940315833, 11.333407357708833, -9.561489433449545, 11.319829442327794, 10.89066471064544, -10.560589583903173, -8.962022590871477, 10.527429934547618, -8.721621865940653, 10.092896148223396, 10.12112936015578, 10.523691933041906, 9.460878668857772, 10.307256374677511, 9.434577423239025, -11.128900909378181, 10.701679361394053, -11.441080885816667, 10.634573297539834, -9.733834718144625, -10.020462393180575, 10.454112976131347, 9.1396279970102, -9.090929884117289, 11.965097005065868, 11.194511823583541, 9.47907002138308, -10.296695521686221, -9.096594890440024, -10.029322495276178, -10.270038100103996, 10.20358240412668, -12.965635037667436, -11.864330547076124, -10.706096831485095, -8.950043256133279, 10.456957598918352, -10.744454326393495, -9.732683995574579, -10.909452483942696, -10.01865555447579, 11.9163829795062, 9.451497541893815, -12.123440966229305, 10.035783854001544, -11.017442333974163, 10.15213891505529, -10.662962246977198, 9.766132952738415, 10.434577419945946, 9.216116409330862, 7.518987966079624, 10.40048927152875, 10.134491504411779, -11.666611768905186, 8.143609964095907, 11.473220523204056, -9.299046597441679, 11.156787764659057, -11.078087341356632, 10.585174125394927, -10.849428525446527, 9.853387791659967, 10.638778875649868, -8.291336802089457, -9.38069203962188, -10.814319582955086, -9.760425664265698, 9.184020766955838, 8.711119105258867, 9.542664718516818, 9.887306537399143, 10.276444891346424, 8.794450289107317, -10.160440245740414, -10.021810341625546, 9.693932921805903, -8.652849002447294, 9.784638828441626, -10.30460924377669, 8.117044845623125, 9.344659448779106, 7.287929575110729, 9.193996782533397, -11.82007799711235, 9.944034094132135, -8.963456962971525, 8.030153525314788, 9.03595222185446, -7.983970494824044, 10.108392966726285, -9.900566999655362, -10.996779702859943, 9.334504548434303, -10.492056144487766, 9.652905503918033, 10.86106517688077, 11.927824889701856, -10.109859977392649, 9.164203522271283, 10.088047472605767, 9.427081767285276, 10.06940388753287, 10.403766571575552, -11.133842692037435, -12.941314349613913, -8.638546393925106, -8.875608402190576, 9.536849329762571, -9.84398289767041, 11.021637582525688, -11.066874928029616]}],\n",
+       "                        '3a198b7d-2a96-4c5b-8994-75e0458904d9',\n",
+       "                        [{\"hoverinfo\": \"text\", \"legendgroup\": \"Class 0\", \"marker\": {\"color\": \"rgb(31, 119, 180)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 0\", \"scene\": \"scene\", \"showlegend\": true, \"text\": [\"0_l_0_m-0_0.08-1_0.1-2_0.06-3_0.19\", \"1_l_0_m-0_0.12-1_0.47-2_0.31-3_0.18\", \"2_l_0_m-0_0.09-1_0.16-2_0.08-3_0.18\", \"3_l_0_m-0_0.21-1_0.23-2_0.17-3_0.1\", \"4_l_0_m-0_0.47-1_0.09-2_0.48-3_0.24\", \"5_l_0_m-0_0.16-1_0.92-2_0.25-3_0.33\", \"6_l_0_c_0_1_2-0_0.16-1_0.18-2_0.48-3_0.52\", \"7_l_0_c_0_1_2-0_0.0-1_0.08-2_0.86-3_1.04\", \"8_l_0_c_0_1_2-0_0.79-1_0.27-2_0.53-3_1.46\", \"9_l_0_c_0_1_2-0_0.5-1_0.46-2_0.73-3_0.29\", \"10_l_0_c_0_1_2-0_0.35-1_0.09-2_0.95-3_0.67\", \"11_l_0_c_0_1_2-0_0.45-1_0.18-2_0.01-3_0.68\", \"12_l_0_c_0_1_2-0_0.26-1_0.65-2_0.03-3_1.18\", \"13_l_0_c_0_1_2-0_0.02-1_0.11-2_0.11-3_0.93\", \"14_l_0_c_0_1_2-0_0.01-1_0.31-2_0.46-3_0.39\", \"15_l_0_c_0_1_2-0_0.49-1_0.44-2_0.46-3_0.4\", \"16_l_0_c_0_1_2-0_0.32-1_0.66-2_0.09-3_0.22\", \"17_l_0_c_0_1_2-0_0.88-1_0.25-2_0.08-3_0.3\", \"18_l_0_c_0_1_2-0_0.24-1_0.29-2_0.41-3_0.04\", \"19_l_0_c_1_2_3-0_1.19-1_0.67-2_0.48-3_0.22\", \"20_l_0_c_0_1_2-0_0.56-1_0.09-2_0.52-3_1.12\", \"21_l_0_c_0_2_3-0_0.44-1_0.25-2_0.14-3_0.45\", \"22_l_0_c_1_2_3-0_0.05-1_0.26-2_1.37-3_0.82\", \"23_l_0_c_0_1_2-0_0.49-1_0.15-2_0.69-3_0.44\", \"24_l_0_c_0_2_3-0_0.38-1_0.27-2_0.15-3_0.11\", \"25_l_0_c_1_2_3-0_0.97-1_0.06-2_0.49-3_0.2\", \"26_l_0_c_0_1_2-0_0.19-1_0.15-2_0.23-3_0.53\", \"27_l_0_c_0_2_3-0_0.89-1_0.91-2_0.76-3_0.39\", \"28_l_0_c_1_2_3-0_1.08-1_0.98-2_0.18-3_0.04\", \"29_l_0_c_0_1_2-0_0.22-1_1.08-2_0.81-3_0.67\", \"30_l_0_c_0_2_3-0_0.23-1_0.4-2_0.14-3_0.55\", \"31_l_0_c_1_2_3-0_0.26-1_1.2-2_1.47-3_0.63\", \"32_l_0_c_0_1_2-0_0.07-1_0.41-2_0.51-3_0.63\", \"33_l_0_c_0_2_3-0_0.91-1_0.76-2_0.27-3_0.2\", \"34_l_0_c_1_2_3-0_0.87-1_0.07-2_0.06-3_0.57\", \"35_l_0_c_0_1_2-0_0.56-1_0.36-2_0.13-3_0.52\", \"36_l_0_c_0_2_3-0_0.28-1_0.03-2_0.3-3_0.01\", \"37_l_0_c_1_2_3-0_1.09-1_0.93-2_0.76-3_0.51\", \"38_l_0_c_0_1_2-0_0.25-1_0.17-2_0.57-3_0.02\", \"39_l_0_c_0_2_3-0_0.28-1_1.49-2_0.09-3_0.08\", \"40_l_0_c_1_2_3-0_0.64-1_1.01-2_0.43-3_0.53\", \"41_l_0_c_0_1_2-0_0.89-1_0.53-2_0.66-3_0.47\", \"42_l_0_c_0_2_3-0_0.41-1_0.28-2_0.62-3_0.12\", \"43_l_0_c_1_2_3-0_0.3-1_0.39-2_0.16-3_0.31\", \"44_l_0_c_0_1_2-0_0.89-1_0.29-2_1.09-3_0.7\", \"45_l_0_c_0_2_3-0_0.2-1_1.61-2_0.97-3_0.56\", \"46_l_0_c_1_2_3-0_1.88-1_0.28-2_0.02-3_0.34\", \"47_l_0_c_0_1_2-0_0.46-1_0.32-2_0.42-3_0.99\", \"48_l_0_c_0_2_3-0_0.3-1_0.65-2_1.47-3_0.02\", \"49_l_0_c_1_2_3-0_0.12-1_1.17-2_0.15-3_0.4\", \"50_l_0_c_0_1_2-0_0.15-1_1.28-2_0.92-3_0.85\", \"51_l_0_c_0_2_3-0_1.05-1_0.51-2_0.73-3_1.02\", \"52_l_0_c_1_2_3-0_0.18-1_0.07-2_0.62-3_0.67\", \"53_l_0_c_0_1_2-0_0.69-1_0.81-2_0.74-3_1.39\", \"54_l_0_c_0_2_3-0_0.16-1_0.75-2_0.07-3_0.35\", \"55_l_0_c_1_2_3-0_0.97-1_0.19-2_0.38-3_0.2\", \"56_l_0_c_0_1_2-0_0.28-1_0.04-2_0.25-3_0.4\", \"57_l_0_c_0_2_3-0_0.51-1_1.5-2_0.68-3_0.15\", \"58_l_0_c_1_2_3-0_0.97-1_0.32-2_0.19-3_0.46\", \"59_l_0_c_0_1_2-0_0.56-1_0.88-2_0.21-3_0.17\", \"60_l_0_c_0_2_3-0_1.68-1_1.59-2_0.67-3_0.04\", \"61_l_0_c_1_2_3-0_0.88-1_0.25-2_0.45-3_0.18\", \"62_l_0_c_0_1_2-0_0.2-1_0.18-2_0.32-3_0.14\", \"63_l_0_c_0_2_3-0_1.24-1_0.85-2_0.84-3_0.38\", \"64_l_0_c_1_2_3-0_0.73-1_0.38-2_0.16-3_0.74\", \"65_l_0_c_0_1_2-0_0.44-1_0.05-2_0.39-3_0.18\", \"66_l_0_c_0_2_3-0_0.41-1_1.44-2_0.12-3_0.11\", \"67_l_0_c_1_2_3-0_2.05-1_0.06-2_0.68-3_1.1\", \"68_l_0_c_0_1_2-0_0.4-1_0.19-2_0.03-3_1.39\", \"69_l_0_c_0_2_3-0_0.31-1_0.28-2_0.08-3_0.25\", \"70_l_0_c_1_2_3-0_0.45-1_0.08-2_0.27-3_0.6\", \"71_l_0_c_0_1_2-0_0.2-1_0.06-2_0.96-3_0.54\", \"72_l_0_c_0_2_3-0_0.14-1_0.93-2_0.74-3_0.39\", \"73_l_0_c_1_2_3-0_0.46-1_0.46-2_0.66-3_0.02\", \"74_l_0_c_0_1_2-0_0.69-1_0.43-2_0.14-3_0.4\", \"75_l_0_c_0_2_3-0_0.23-1_1.16-2_0.46-3_1.37\", \"76_l_0_c_1_2_3-0_2.24-1_0.15-2_0.96-3_0.61\", \"77_l_0_c_0_1_2-0_0.05-1_0.07-2_0.15-3_0.87\", \"78_l_0_c_0_2_3-0_0.21-1_0.08-2_0.25-3_0.11\", \"79_l_0_c_1_2_3-0_0.43-1_0.1-2_0.01-3_0.94\", \"80_l_0_c_0_1_2-0_0.58-1_0.21-2_0.54-3_0.47\", \"81_l_0_c_0_2_3-0_0.34-1_1.14-2_0.45-3_0.06\", \"82_l_0_c_1_2_3-0_1.71-1_0.12-2_0.15-3_0.07\", \"83_l_0_c_0_1_2-0_0.12-1_0.06-2_0.0-3_0.26\", \"84_l_0_c_0_2_3-0_0.8-1_0.15-2_0.64-3_0.24\", \"85_l_0_c_1_2_3-0_1.41-1_0.02-2_1.18-3_0.64\", \"86_l_0_c_0_1_2-0_0.05-1_0.21-2_0.64-3_0.53\", \"87_l_0_c_0_2_3-0_0.9-1_0.07-2_0.44-3_0.22\", \"88_l_0_c_1_2_3-0_0.07-1_0.19-2_0.42-3_0.71\", \"89_l_0_c_0_1_2-0_0.21-1_0.2-2_0.35-3_0.04\", \"90_l_0_c_0_2_3-0_0.38-1_2.27-2_0.51-3_0.04\", \"91_l_0_c_1_2_3-0_0.57-1_0.45-2_0.2-3_0.44\", \"92_l_0_c_0_1_2-0_0.23-1_0.17-2_0.43-3_1.58\", \"93_l_0_c_0_2_3-0_2.0-1_0.83-2_0.76-3_0.02\", \"94_l_0_c_1_2_3-0_0.43-1_0.32-2_0.19-3_0.86\", \"95_l_0_c_0_1_2-0_0.34-1_0.46-2_0.23-3_0.69\", \"96_l_0_c_0_2_3-0_0.03-1_0.36-2_0.26-3_0.08\", \"97_l_0_c_1_2_3-0_0.69-1_0.09-2_1.09-3_0.99\", \"98_l_0_c_0_1_2-0_0.02-1_0.16-2_0.64-3_0.6\", \"99_l_0_c_0_1_3-0_0.06-1_0.32-2_0.65-3_0.41\", \"100_l_0_c_0_2_3-0_0.03-1_0.14-2_0.74-3_0.63\", \"101_l_0_c_1_2_3-0_1.15-1_0.92-2_1.15-3_0.82\", \"102_l_0_c_0_1_2-0_0.09-1_0.04-2_0.31-3_0.88\", \"103_l_0_c_0_1_3-0_0.07-1_0.34-2_0.57-3_0.05\", \"104_l_0_c_0_2_3-0_0.41-1_0.51-2_0.35-3_0.04\", \"105_l_0_c_1_2_3-0_0.55-1_0.74-2_0.64-3_0.06\", \"106_l_0_c_0_1_2-0_0.09-1_0.19-2_0.17-3_0.35\", \"107_l_0_c_0_1_3-0_0.02-1_0.13-2_1.34-3_0.6\", \"108_l_0_c_0_2_3-0_0.54-1_0.09-2_1.38-3_1.04\", \"109_l_0_c_1_2_3-0_0.96-1_0.09-2_0.5-3_0.73\", \"110_l_0_c_0_1_2-0_0.5-1_0.59-2_0.08-3_0.06\", \"111_l_0_c_0_1_3-0_0.06-1_0.82-2_0.49-3_0.1\", \"112_l_0_c_0_2_3-0_0.04-1_0.3-2_0.01-3_0.46\", \"113_l_0_c_1_2_3-0_0.52-1_0.44-2_0.72-3_0.71\", \"114_l_0_c_0_1_2-0_0.09-1_0.34-2_1.76-3_1.09\", \"115_l_0_c_0_1_3-0_0.14-1_0.82-2_0.18-3_0.11\", \"116_l_0_c_0_2_3-0_0.56-1_0.93-2_0.15-3_0.12\", \"117_l_0_c_1_2_3-0_0.54-1_0.2-2_0.3-3_0.08\", \"118_l_0_c_0_1_2-0_0.53-1_0.18-2_0.52-3_0.01\", \"119_l_0_c_0_1_3-0_0.35-1_0.5-2_0.28-3_0.26\", \"120_l_0_c_0_2_3-0_0.49-1_0.76-2_0.12-3_2.22\", \"121_l_0_c_1_2_3-0_0.11-1_0.58-2_0.11-3_0.57\", \"122_l_0_c_0_1_2-0_0.13-1_1.02-2_1.03-3_1.02\", \"123_l_0_c_0_1_3-0_0.05-1_0.95-2_0.49-3_0.4\", \"124_l_0_c_0_2_3-0_0.2-1_1.9-2_0.35-3_0.63\", \"125_l_0_c_1_2_3-0_0.4-1_0.12-2_0.25-3_0.2\", \"126_l_0_c_0_1_2-0_0.18-1_0.49-2_0.34-3_0.01\", \"127_l_0_c_0_1_3-0_0.09-1_0.01-2_0.81-3_0.26\", \"128_l_0_c_0_2_3-0_0.23-1_0.16-2_1.5-3_0.83\", \"129_l_0_c_1_2_3-0_1.29-1_0.15-2_0.0-3_0.14\", \"130_l_0_c_0_1_2-0_0.39-1_0.08-2_0.17-3_0.47\", \"131_l_0_c_0_1_3-0_0.03-1_0.46-2_0.16-3_0.26\", \"132_l_0_c_0_2_3-0_0.19-1_0.2-2_0.46-3_0.04\", \"133_l_0_c_1_2_3-0_0.66-1_0.08-2_0.12-3_0.96\", \"134_l_0_c_0_1_2-0_0.71-1_0.18-2_0.68-3_1.72\", \"135_l_0_c_0_1_3-0_0.04-1_0.79-2_1.72-3_0.05\", \"136_l_0_c_0_2_3-0_0.43-1_1.42-2_1.29-3_0.04\", \"137_l_0_c_1_2_3-0_0.27-1_0.71-2_1.11-3_0.1\", \"138_l_0_c_0_1_2-0_0.12-1_0.16-2_0.15-3_0.1\", \"139_l_0_c_0_1_3-0_0.07-1_0.64-2_0.05-3_0.11\", \"140_l_0_c_0_2_3-0_0.05-1_1.53-2_0.46-3_0.14\", \"141_l_0_c_1_2_3-0_0.99-1_0.31-2_0.18-3_0.06\", \"142_l_0_c_0_1_2-0_1.54-1_0.07-2_0.21-3_0.93\", \"143_l_0_c_0_1_3-0_0.3-1_0.54-2_0.05-3_0.05\", \"144_l_0_c_0_2_3-0_0.06-1_0.62-2_0.41-3_0.27\", \"145_l_0_c_1_2_3-0_0.04-1_0.43-2_0.13-3_0.7\", \"146_l_0_c_0_1_2-0_0.56-1_0.46-2_0.58-3_0.11\", \"147_l_0_c_0_1_3-0_0.71-1_0.23-2_1.18-3_0.31\", \"148_l_0_c_0_2_3-0_0.35-1_1.91-2_0.07-3_0.5\", \"149_l_0_c_1_2_3-0_0.23-1_0.1-2_0.03-3_0.28\", \"150_l_0_c_0_1_2-0_0.27-1_0.11-2_0.59-3_0.3\", \"151_l_0_c_0_1_3-0_0.13-1_0.09-2_0.16-3_0.01\", \"152_l_0_c_0_2_3-0_0.41-1_0.23-2_0.26-3_0.29\", \"153_l_0_c_1_2_3-0_0.84-1_0.71-2_0.7-3_0.08\", \"154_l_0_c_0_1_2-0_0.66-1_0.44-2_0.1-3_1.0\", \"155_l_0_c_0_1_3-0_0.28-1_0.23-2_0.2-3_0.02\", \"156_l_0_c_0_2_3-0_0.26-1_1.45-2_0.37-3_0.45\", \"157_l_0_c_1_2_3-0_0.16-1_0.84-2_0.62-3_0.21\", \"158_l_0_c_0_1_2-0_0.38-1_0.4-2_0.28-3_0.46\", \"159_l_0_c_0_1_3-0_0.44-1_0.75-2_0.03-3_1.07\", \"160_l_0_c_0_2_3-0_0.58-1_0.11-2_0.6-3_1.06\", \"161_l_0_c_1_2_3-0_1.35-1_0.5-2_0.2-3_0.24\", \"162_l_0_c_0_1_2-0_0.73-1_0.27-2_0.48-3_2.1\", \"163_l_0_c_0_1_3-0_0.59-1_0.6-2_0.14-3_0.1\", \"164_l_0_c_0_2_3-0_0.45-1_0.59-2_0.11-3_0.24\", \"165_l_0_c_1_2_3-0_0.04-1_1.36-2_0.69-3_0.07\", \"166_l_0_c_0_1_2-0_0.06-1_0.11-2_0.88-3_0.96\", \"167_l_0_c_0_1_3-0_0.34-1_0.09-2_1.17-3_0.11\", \"168_l_0_c_0_2_3-0_0.07-1_1.72-2_1.1-3_0.71\", \"169_l_0_c_1_2_3-0_0.55-1_0.53-2_0.37-3_0.22\", \"170_l_0_c_0_1_2-0_0.1-1_0.78-2_0.4-3_1.28\", \"171_l_0_c_0_1_3-0_0.16-1_0.07-2_0.24-3_0.2\", \"172_l_0_c_0_2_3-0_0.19-1_0.92-2_0.79-3_0.12\", \"173_l_0_c_1_2_3-0_0.27-1_0.12-2_0.4-3_0.41\", \"174_l_0_c_0_1_2-0_0.67-1_1.34-2_0.58-3_0.7\", \"175_l_0_c_0_1_3-0_0.18-1_0.89-2_0.68-3_0.37\", \"176_l_0_c_0_2_3-0_0.41-1_0.47-2_0.97-3_0.08\", \"177_l_0_c_1_2_3-0_1.31-1_0.48-2_0.28-3_0.05\", \"178_l_0_c_0_1_2-0_0.48-1_1.05-2_0.66-3_0.6\", \"179_l_0_c_0_1_3-0_0.98-1_0.33-2_0.71-3_0.35\", \"180_l_0_c_0_2_3-0_0.56-1_0.69-2_0.05-3_0.18\", \"181_l_0_c_1_2_3-0_1.86-1_0.25-2_0.31-3_0.18\", \"182_l_0_c_0_1_2-0_1.12-1_1.05-2_0.53-3_1.1\", \"183_l_0_c_0_1_3-0_0.87-1_0.43-2_0.03-3_0.07\", \"184_l_0_c_0_2_3-0_0.65-1_0.94-2_0.1-3_0.7\", \"185_l_0_c_1_2_3-0_0.33-1_0.95-2_0.24-3_0.71\", \"186_l_0_c_0_1_2-0_0.39-1_0.07-2_0.08-3_0.43\", \"187_l_0_c_0_1_3-0_0.05-1_0.18-2_0.24-3_0.2\", \"188_l_0_c_0_2_3-0_0.56-1_1.31-2_0.4-3_0.82\", \"189_l_0_c_1_2_3-0_0.49-1_0.39-2_0.45-3_0.66\", \"190_l_0_c_0_1_2-0_0.09-1_0.85-2_0.28-3_0.85\", \"191_l_0_c_0_1_3-0_0.05-1_0.11-2_0.96-3_0.93\", \"192_l_0_c_0_2_3-0_0.51-1_0.44-2_0.24-3_0.3\", \"193_l_0_c_1_2_3-0_0.22-1_0.67-2_0.61-3_1.16\", \"194_l_0_c_0_1_2-0_0.59-1_0.0-2_0.04-3_0.26\", \"195_l_0_c_0_1_3-0_0.51-1_1.05-2_1.87-3_0.31\", \"196_l_0_c_0_2_3-0_0.17-1_0.62-2_0.92-3_0.31\", \"197_l_0_c_1_2_3-0_0.02-1_0.59-2_1.32-3_0.8\", \"198_l_0_c_0_1_2-0_0.03-1_0.11-2_0.44-3_2.01\", \"199_l_0_c_0_1_3-0_0.82-1_0.29-2_0.02-3_0.3\", \"200_l_0_c_0_2_3-0_0.48-1_0.23-2_0.27-3_0.17\", \"201_l_0_c_1_2_3-0_0.12-1_0.7-2_0.16-3_0.19\", \"202_l_0_c_0_1_2-0_0.26-1_0.66-2_0.53-3_0.76\", \"203_l_0_c_0_1_3-0_0.6-1_1.34-2_0.38-3_0.1\", \"204_l_0_c_0_2_3-0_0.1-1_0.84-2_0.08-3_0.15\", \"205_l_0_c_1_2_3-0_0.88-1_0.28-2_0.67-3_0.83\", \"206_l_0_c_0_1_2-0_0.22-1_0.21-2_1.45-3_0.36\", \"207_l_0_c_0_1_3-0_0.02-1_0.15-2_0.1-3_0.38\", \"208_l_0_c_0_2_3-0_0.41-1_1.88-2_1.04-3_0.83\", \"209_l_0_c_1_2_3-0_0.92-1_1.3-2_0.2-3_0.78\", \"210_l_0_c_0_1_2-0_0.08-1_0.03-2_0.04-3_0.1\", \"211_l_0_c_0_1_3-0_0.83-1_0.46-2_0.19-3_0.34\", \"212_l_0_c_0_2_3-0_0.54-1_1.0-2_0.82-3_0.8\", \"213_l_0_c_1_2_3-0_1.51-1_0.67-2_1.93-3_0.31\", \"214_l_0_c_0_1_2-0_0.04-1_1.63-2_0.74-3_0.07\", \"215_l_0_c_0_1_3-0_0.77-1_0.06-2_2.47-3_1.47\", \"216_l_0_c_0_2_3-0_0.63-1_0.07-2_0.11-3_0.27\", \"217_l_0_c_1_2_3-0_1.25-1_0.56-2_0.11-3_0.06\", \"218_l_0_c_0_1_2-0_0.18-1_0.15-2_0.08-3_0.52\", \"219_l_0_c_0_1_3-0_0.01-1_0.33-2_0.22-3_0.13\", \"220_l_0_c_0_2_3-0_0.5-1_0.55-2_0.03-3_0.27\", \"221_l_0_c_1_2_3-0_0.94-1_0.62-2_0.52-3_0.41\", \"222_l_0_c_0_1_2-0_0.45-1_0.42-2_0.35-3_1.3\", \"223_l_0_c_0_1_3-0_0.07-1_0.07-2_0.13-3_0.04\", \"224_l_0_c_0_2_3-0_1.61-1_0.44-2_0.05-3_0.08\", \"225_l_0_c_1_2_3-0_0.82-1_0.56-2_0.97-3_0.05\", \"226_l_0_c_0_1_2-0_0.19-1_0.32-2_0.45-3_0.5\", \"227_l_0_c_0_1_3-0_0.78-1_0.51-2_2.04-3_0.56\", \"228_l_0_c_0_2_3-0_0.15-1_0.4-2_0.23-3_1.22\", \"229_l_0_c_1_2_3-0_0.26-1_0.23-2_1.38-3_0.32\", \"230_l_0_c_0_1_2-0_0.85-1_0.18-2_0.33-3_0.01\", \"231_l_0_c_0_1_3-0_0.89-1_0.19-2_0.47-3_0.48\", \"232_l_0_c_0_2_3-0_0.47-1_0.49-2_0.32-3_0.02\", \"233_l_0_c_1_2_3-0_1.85-1_0.08-2_0.02-3_0.19\", \"234_l_0_c_0_1_2-0_0.29-1_0.03-2_0.53-3_0.12\", \"235_l_0_c_0_1_3-0_0.56-1_1.17-2_0.53-3_0.3\", \"236_l_0_c_0_2_3-0_0.2-1_0.38-2_1.49-3_0.16\", \"237_l_0_c_1_2_3-0_0.8-1_0.03-2_0.73-3_0.15\", \"238_l_0_c_0_1_2-0_0.01-1_0.01-2_0.47-3_1.36\", \"239_l_0_c_0_1_3-0_0.28-1_0.1-2_1.07-3_0.43\", \"240_l_0_c_0_2_3-0_0.18-1_0.53-2_0.17-3_0.01\", \"241_l_0_c_1_2_3-0_0.7-1_0.72-2_0.42-3_0.97\", \"242_l_0_c_0_1_2-0_0.27-1_0.54-2_0.1-3_0.48\", \"243_l_0_c_0_1_3-0_1.25-1_0.22-2_0.62-3_0.06\", \"244_l_0_c_0_2_3-0_0.17-1_0.97-2_0.03-3_0.16\", \"245_l_0_c_1_2_3-0_0.12-1_0.27-2_1.03-3_0.15\", \"246_l_0_c_0_1_2-0_0.06-1_0.45-2_0.25-3_0.55\", \"247_l_0_c_0_1_3-0_1.46-1_0.26-2_0.27-3_0.32\", \"248_l_0_c_0_2_3-0_0.11-1_1.39-2_0.07-3_0.76\", \"249_l_0_c_1_2_3-0_0.41-1_0.5-2_0.06-3_0.3\", \"250_l_0_c_0_1_2-0_0.94-1_0.09-2_0.09-3_0.83\", \"251_l_0_c_0_1_3-0_0.45-1_0.07-2_0.55-3_0.39\", \"252_l_0_c_0_2_3-0_0.31-1_0.25-2_0.6-3_0.16\", \"253_l_0_c_1_2_3-0_0.18-1_0.12-2_0.13-3_0.55\", \"254_l_0_c_0_1_2-0_0.57-1_1.09-2_0.74-3_0.05\", \"255_l_0_c_0_1_3-0_0.16-1_0.64-2_1.69-3_0.01\", \"256_l_0_c_0_2_3-0_0.09-1_0.99-2_0.18-3_0.01\", \"257_l_0_c_1_2_3-0_1.03-1_0.5-2_0.79-3_0.1\", \"258_l_0_c_0_1_2-0_0.2-1_0.43-2_0.14-3_0.04\", \"259_l_0_c_0_1_3-0_0.19-1_0.38-2_0.83-3_0.35\", \"260_l_0_c_0_2_3-0_0.27-1_0.93-2_0.62-3_0.01\", \"261_l_0_c_1_2_3-0_1.59-1_0.11-2_0.41-3_1.02\", \"262_l_0_c_0_1_2-0_0.88-1_0.16-2_0.27-3_0.14\", \"263_l_0_c_0_1_3-0_0.15-1_0.28-2_1.69-3_0.2\", \"264_l_0_c_0_2_3-0_0.08-1_0.26-2_0.13-3_0.25\", \"265_l_0_c_1_2_3-0_1.11-1_0.58-2_1.7-3_0.04\", \"266_l_0_c_0_1_2-0_0.51-1_0.51-2_0.69-3_1.07\", \"267_l_0_c_0_1_3-0_0.25-1_0.24-2_1.0-3_0.02\", \"268_l_0_c_0_2_3-0_0.09-1_0.68-2_0.05-3_0.21\", \"269_l_0_c_1_2_3-0_0.08-1_0.7-2_1.13-3_0.76\", \"270_l_0_c_0_1_2-0_0.43-1_0.12-2_0.99-3_0.46\", \"271_l_0_c_0_1_3-0_0.33-1_1.36-2_1.4-3_0.15\", \"272_l_0_c_0_2_3-0_0.09-1_0.06-2_0.59-3_0.03\", \"273_l_0_c_1_2_3-0_0.41-1_0.33-2_0.26-3_0.19\", \"274_l_0_c_0_1_2-0_0.03-1_0.31-2_0.04-3_0.37\", \"275_l_0_c_0_1_3-0_0.38-1_0.02-2_0.83-3_0.38\", \"276_l_0_c_0_2_3-0_1.37-1_0.3-2_0.99-3_0.79\", \"277_l_0_c_1_2_3-0_0.24-1_1.02-2_0.43-3_0.01\", \"278_l_0_c_0_1_2-0_0.29-1_1.14-2_0.33-3_0.16\", \"279_l_0_c_0_1_3-0_1.47-1_0.76-2_0.53-3_0.13\", \"280_l_0_c_0_2_3-0_0.48-1_1.42-2_1.84-3_0.41\", \"281_l_0_c_1_2_3-0_1.02-1_0.58-2_0.41-3_0.24\", \"282_l_0_c_0_1_2-0_0.26-1_0.91-2_0.04-3_0.72\", \"283_l_0_c_0_1_3-0_0.43-1_0.36-2_0.02-3_0.18\", \"284_l_0_c_0_2_3-0_0.12-1_0.58-2_0.02-3_0.1\", \"285_l_0_c_1_2_3-0_1.38-1_0.22-2_0.02-3_0.04\", \"286_l_0_c_0_1_2-0_0.25-1_0.42-2_1.01-3_0.07\", \"287_l_0_c_0_1_3-0_0.43-1_0.74-2_1.07-3_0.26\", \"288_l_0_c_0_2_3-0_0.36-1_0.08-2_0.36-3_0.23\", \"289_l_0_c_1_2_3-0_0.93-1_0.11-2_0.92-3_0.1\", \"290_l_0_c_0_1_2-0_0.43-1_0.61-2_0.21-3_0.6\", \"291_l_0_c_0_1_3-0_1.24-1_0.02-2_0.8-3_0.17\", \"292_l_0_c_0_2_3-0_0.3-1_0.0-2_0.15-3_0.86\", \"293_l_0_c_1_2_3-0_0.06-1_0.77-2_1.34-3_0.6\", \"294_l_0_c_0_1_2-0_1.31-1_0.62-2_1.25-3_0.35\", \"295_l_0_c_3-0_2.17-1_0.31-2_1.42-3_0.04\", \"296_l_0_r-0_0.87-1_0.39-2_1.34-3_0.51\", \"297_l_0_r-0_0.23-1_0.53-2_0.56-3_0.98\", \"298_l_0_r-0_0.56-1_1.41-2_1.44-3_0.26\", \"299_l_0_r-0_0.59-1_0.78-2_1.47-3_0.9\", \"300_l_0_r-0_0.62-1_0.23-2_0.19-3_0.56\", \"301_l_0_r-0_0.41-1_0.03-2_1.38-3_0.21\", \"302_l_0_r-0_0.01-1_1.47-2_0.45-3_0.66\", \"303_l_0_r-0_0.83-1_0.41-2_0.59-3_0.34\", \"304_l_0_r-0_1.62-1_0.7-2_1.55-3_0.87\", \"305_l_0_r-0_0.17-1_0.98-2_0.16-3_0.93\", \"306_l_0_r-0_0.92-1_0.94-2_1.06-3_0.74\", \"307_l_0_r-0_1.4-1_0.93-2_0.41-3_0.0\", \"308_l_0_r-0_0.23-1_1.47-2_0.77-3_0.78\", \"309_l_0_r-0_1.16-1_2.18-2_0.25-3_1.16\", \"310_l_0_r-0_1.02-1_1.39-2_0.5-3_1.23\", \"311_l_0_r-0_1.72-1_1.05-2_1.01-3_0.11\", \"312_l_0_r-0_1.87-1_0.67-2_0.39-3_0.83\", \"313_l_0_r-0_0.77-1_1.08-2_0.33-3_0.86\", \"314_l_0_r-0_0.72-1_0.05-2_0.14-3_0.79\", \"315_l_0_r-0_0.33-1_1.79-2_0.32-3_0.21\", \"316_l_0_r-0_0.63-1_1.25-2_0.46-3_0.12\", \"317_l_0_r-0_0.16-1_0.27-2_1.75-3_1.2\", \"318_l_0_r-0_1.31-1_0.1-2_0.5-3_0.9\", \"319_l_0_r-0_0.19-1_0.06-2_2.24-3_0.58\", \"320_l_0_r-0_1.75-1_0.55-2_0.34-3_0.16\", \"321_l_0_r-0_0.31-1_0.53-2_2.1-3_0.64\", \"322_l_0_r-0_0.24-1_0.82-2_0.21-3_0.74\", \"323_l_0_r-0_0.47-1_1.26-2_2.16-3_0.96\", \"324_l_0_r-0_1.01-1_0.27-2_0.73-3_0.92\", \"325_l_0_r-0_0.12-1_1.0-2_1.21-3_0.17\", \"326_l_0_r-0_0.43-1_2.22-2_1.0-3_0.89\", \"327_l_0_r-0_0.35-1_1.53-2_0.28-3_0.58\", \"328_l_0_r-0_1.67-1_0.47-2_0.37-3_0.79\", \"329_l_0_r-0_0.43-1_0.31-2_0.64-3_1.43\", \"330_l_0_r-0_0.81-1_0.73-2_1.88-3_2.11\", \"331_l_0_r-0_0.71-1_0.17-2_0.9-3_0.29\", \"332_l_0_r-0_1.67-1_0.11-2_0.33-3_0.87\", \"333_l_0_r-0_0.65-1_0.8-2_0.72-3_1.29\", \"334_l_0_r-0_1.22-1_1.12-2_0.0-3_0.3\", \"335_l_0_r-0_0.98-1_1.18-2_1.75-3_0.04\", \"336_l_0_r-0_0.38-1_0.07-2_1.0-3_0.88\", \"337_l_0_r-0_0.11-1_1.43-2_1.12-3_0.64\", \"338_l_0_r-0_0.84-1_0.93-2_0.04-3_0.27\", \"339_l_0_r-0_0.93-1_0.25-2_0.06-3_0.44\", \"340_l_0_r-0_1.28-1_2.22-2_0.4-3_0.68\", \"341_l_0_r-0_0.18-1_0.32-2_0.67-3_0.18\", \"342_l_0_r-0_0.08-1_1.23-2_0.18-3_0.85\", \"343_l_0_r-0_0.23-1_1.24-2_0.82-3_0.97\", \"344_l_0_r-0_0.21-1_0.58-2_0.09-3_1.16\", \"345_l_0_r-0_0.1-1_1.2-2_0.08-3_0.48\", \"346_l_0_r-0_0.12-1_0.67-2_2.58-3_0.04\", \"347_l_0_r-0_1.23-1_1.95-2_0.25-3_0.45\", \"348_l_0_r-0_1.07-1_0.72-2_0.64-3_2.11\", \"349_l_0_r-0_1.11-1_0.0-2_1.97-3_1.2\", \"350_l_0_r-0_0.23-1_0.35-2_0.09-3_0.48\", \"351_l_0_r-0_1.47-1_1.03-2_0.52-3_0.24\", \"352_l_0_r-0_0.62-1_0.55-2_0.37-3_0.91\", \"353_l_0_r-0_0.37-1_0.64-2_0.98-3_1.32\", \"354_l_0_r-0_0.46-1_0.47-2_0.24-3_1.16\", \"355_l_0_r-0_0.77-1_1.21-2_0.65-3_0.65\", \"356_l_0_r-0_1.56-1_0.53-2_0.21-3_0.16\", \"357_l_0_r-0_0.91-1_0.03-2_0.22-3_0.44\", \"358_l_0_r-0_0.22-1_1.31-2_0.67-3_0.07\", \"359_l_0_r-0_0.24-1_0.75-2_0.64-3_1.0\", \"360_l_0_r-0_2.34-1_0.38-2_0.15-3_0.53\", \"361_l_0_r-0_0.28-1_0.07-2_0.79-3_0.62\", \"362_l_0_r-0_0.6-1_1.18-2_0.0-3_0.28\", \"363_l_0_r-0_0.67-1_0.7-2_0.34-3_0.83\", \"364_l_0_r-0_2.0-1_1.08-2_0.52-3_0.27\", \"365_l_0_r-0_0.45-1_0.96-2_0.98-3_0.78\", \"366_l_0_r-0_0.38-1_0.5-2_0.26-3_0.24\", \"367_l_0_r-0_0.05-1_0.68-2_1.12-3_1.55\", \"368_l_0_r-0_0.28-1_1.87-2_1.34-3_0.81\", \"369_l_0_r-0_0.79-1_1.15-2_0.03-3_1.05\", \"370_l_0_r-0_1.78-1_1.02-2_0.55-3_1.19\", \"371_l_0_r-0_1.59-1_0.6-2_0.19-3_0.01\", \"372_l_0_r-0_0.87-1_0.09-2_1.81-3_0.8\", \"373_l_0_r-0_0.29-1_0.54-2_0.74-3_0.41\", \"374_l_0_r-0_0.63-1_0.43-2_0.1-3_1.03\", \"375_l_0_r-0_0.64-1_0.28-2_0.03-3_0.5\", \"376_l_0_r-0_0.5-1_0.19-2_0.89-3_0.98\", \"377_l_0_r-0_0.49-1_0.72-2_1.25-3_0.19\", \"378_l_0_r-0_1.26-1_1.42-2_0.83-3_0.58\", \"379_l_0_r-0_0.22-1_0.09-2_0.6-3_1.49\", \"380_l_0_r-0_1.6-1_0.19-2_0.58-3_0.69\", \"381_l_0_r-0_0.74-1_0.57-2_1.36-3_0.71\", \"382_l_0_r-0_0.11-1_1.37-2_0.51-3_0.47\", \"383_l_0_r-0_0.61-1_0.42-2_1.39-3_0.86\", \"384_l_0_r-0_0.6-1_1.28-2_2.13-3_1.82\", \"385_l_0_r-0_0.69-1_0.48-2_1.09-3_1.27\", \"386_l_0_r-0_0.21-1_0.59-2_0.88-3_1.15\", \"387_l_0_r-0_0.45-1_0.56-2_0.28-3_0.81\", \"388_l_0_r-0_0.71-1_0.32-2_1.26-3_0.5\", \"389_l_0_r-0_0.28-1_0.09-2_0.14-3_1.13\", \"390_l_0_r-0_0.19-1_0.1-2_1.26-3_1.93\", \"391_l_0_r-0_0.44-1_0.87-2_0.66-3_0.16\", \"392_l_0_r-0_0.42-1_0.77-2_1.21-3_0.81\", \"393_l_0_r-0_0.77-1_0.42-2_1.17-3_0.3\", \"394_l_0_r-0_1.23-1_0.12-2_0.76-3_0.57\", \"395_l_0_r-0_0.48-1_0.45-2_1.65-3_0.93\", \"396_l_0_r-0_0.09-1_0.27-2_0.35-3_1.99\", \"397_l_0_r-0_0.31-1_0.38-2_0.08-3_0.38\", \"398_l_0_r-0_1.35-1_0.59-2_0.83-3_0.74\", \"399_l_0_r-0_1.33-1_0.79-2_0.09-3_1.42\", \"400_l_0_r-0_0.56-1_1.62-2_0.16-3_0.54\", \"401_l_0_r-0_0.2-1_1.62-2_2.07-3_0.41\", \"402_l_0_r-0_0.08-1_1.23-2_0.59-3_1.14\", \"403_l_0_r-0_0.57-1_0.79-2_0.22-3_0.61\", \"404_l_0_r-0_1.08-1_1.36-2_1.11-3_0.64\", \"405_l_0_r-0_0.77-1_0.62-2_1.92-3_0.45\", \"406_l_0_r-0_0.73-1_1.0-2_0.29-3_0.34\", \"407_l_0_r-0_0.16-1_0.26-2_0.39-3_1.25\", \"408_l_0_r-0_1.44-1_1.37-2_0.1-3_1.81\", \"409_l_0_r-0_0.03-1_0.12-2_1.26-3_0.41\", \"410_l_0_r-0_0.81-1_0.09-2_1.15-3_0.77\", \"411_l_0_r-0_0.42-1_0.12-2_0.45-3_0.68\", \"412_l_0_r-0_1.38-1_0.99-2_0.84-3_0.74\", \"413_l_0_r-0_0.07-1_0.7-2_1.3-3_0.32\", \"414_l_0_r-0_0.97-1_0.05-2_0.2-3_0.52\", \"415_l_0_r-0_0.74-1_0.25-2_1.57-3_1.01\", \"416_l_0_r-0_0.74-1_1.77-2_2.09-3_0.76\", \"417_l_0_r-0_0.5-1_0.98-2_0.11-3_0.06\", \"418_l_0_r-0_1.33-1_0.1-2_0.94-3_0.7\", \"419_l_0_r-0_1.12-1_0.54-2_0.09-3_0.14\", \"420_l_0_r-0_0.58-1_0.53-2_0.25-3_0.76\", \"421_l_0_r-0_0.67-1_0.56-2_0.82-3_0.69\", \"422_l_0_r-0_0.3-1_0.23-2_1.06-3_0.22\", \"423_l_0_r-0_0.46-1_0.88-2_0.54-3_0.19\", \"424_l_0_r-0_0.68-1_0.72-2_0.3-3_0.05\", \"425_l_0_r-0_1.8-1_0.57-2_0.4-3_0.54\", \"426_l_0_r-0_1.66-1_0.42-2_1.07-3_1.17\", \"427_l_0_r-0_0.28-1_1.09-2_1.67-3_0.44\", \"428_l_0_r-0_0.97-1_0.91-2_0.93-3_0.17\", \"429_l_0_r-0_0.39-1_0.74-2_0.41-3_1.48\", \"430_l_0_r-0_0.14-1_1.1-2_0.1-3_0.18\", \"431_l_0_r-0_0.21-1_0.67-2_0.84-3_0.98\", \"432_l_0_r-0_0.45-1_0.37-2_2.15-3_1.28\", \"433_l_0_r-0_0.63-1_0.27-2_1.14-3_0.74\", \"434_l_0_r-0_2.05-1_1.55-2_1.38-3_0.66\", \"435_l_0_r-0_0.56-1_1.1-2_2.06-3_1.01\", \"436_l_0_r-0_0.35-1_0.19-2_1.68-3_0.07\", \"437_l_0_r-0_1.14-1_0.09-2_0.13-3_1.67\", \"438_l_0_r-0_0.93-1_0.97-2_0.1-3_0.51\", \"439_l_0_r-0_0.1-1_0.47-2_0.26-3_1.0\", \"440_l_0_r-0_0.6-1_1.74-2_0.89-3_1.37\", \"441_l_0_r-0_0.93-1_0.67-2_0.6-3_0.18\", \"442_l_0_r-0_1.42-1_0.52-2_0.7-3_0.16\", \"443_l_0_r-0_1.74-1_0.66-2_0.93-3_1.04\", \"444_l_0_r-0_0.49-1_0.26-2_0.22-3_1.12\", \"445_l_0_r-0_1.27-1_0.3-2_1.52-3_2.28\", \"446_l_0_r-0_0.11-1_0.01-2_0.38-3_0.69\", \"447_l_0_r-0_1.4-1_0.74-2_0.39-3_0.12\", \"448_l_0_r-0_0.68-1_0.55-2_0.11-3_0.01\", \"449_l_0_r-0_0.98-1_0.85-2_2.3-3_0.91\", \"450_l_0_r-0_1.05-1_0.17-2_2.15-3_0.37\", \"451_l_0_r-0_0.41-1_2.16-2_0.62-3_0.07\", \"452_l_0_r-0_0.6-1_0.34-2_1.21-3_1.22\", \"453_l_0_r-0_0.36-1_0.45-2_0.64-3_1.11\", \"454_l_0_r-0_0.46-1_0.14-2_0.77-3_0.57\", \"455_l_0_r-0_1.37-1_0.41-2_1.35-3_0.08\", \"456_l_0_r-0_0.22-1_0.44-2_0.8-3_0.0\", \"457_l_0_r-0_0.39-1_0.51-2_0.62-3_0.03\", \"458_l_0_r-0_1.73-1_1.12-2_0.54-3_0.34\", \"459_l_0_r-0_0.35-1_0.3-2_0.05-3_1.08\", \"460_l_0_r-0_0.25-1_0.35-2_2.11-3_0.13\", \"461_l_0_r-0_0.14-1_0.54-2_0.84-3_1.53\", \"462_l_0_r-0_0.26-1_0.47-2_1.96-3_1.54\", \"463_l_0_r-0_0.85-1_0.52-2_0.76-3_0.56\", \"464_l_0_r-0_1.07-1_0.65-2_0.76-3_1.28\", \"465_l_0_r-0_0.06-1_0.12-2_0.55-3_0.39\", \"466_l_0_r-0_0.17-1_1.1-2_0.55-3_0.33\", \"467_l_0_r-0_1.32-1_0.43-2_0.32-3_0.11\", \"468_l_0_r-0_0.21-1_0.67-2_2.29-3_0.39\", \"469_l_0_r-0_0.33-1_0.86-2_0.43-3_1.67\", \"470_l_0_r-0_1.25-1_0.34-2_1.62-3_0.14\", \"471_l_0_r-0_1.31-1_0.89-2_1.06-3_0.96\", \"472_l_0_r-0_0.54-1_0.28-2_1.43-3_1.45\", \"473_l_0_r-0_1.5-1_0.71-2_0.84-3_2.07\", \"474_l_0_r-0_0.41-1_0.46-2_0.03-3_0.32\", \"475_l_0_r-0_0.39-1_0.59-2_0.08-3_1.04\", \"476_l_0_r-0_1.04-1_0.76-2_0.89-3_0.11\", \"477_l_0_r-0_0.7-1_0.07-2_0.14-3_0.24\", \"478_l_0_r-0_1.51-1_0.06-2_2.45-3_0.89\", \"479_l_0_r-0_0.03-1_0.9-2_1.52-3_1.44\", \"480_l_0_r-0_0.72-1_1.42-2_0.66-3_1.44\", \"481_l_0_r-0_0.42-1_0.54-2_1.42-3_0.72\", \"482_l_0_r-0_0.47-1_0.18-2_1.43-3_0.75\", \"483_l_0_r-0_0.35-1_0.23-2_1.85-3_0.8\", \"484_l_0_r-0_0.8-1_0.63-2_0.16-3_1.11\", \"485_l_0_r-0_0.53-1_0.03-2_0.39-3_0.03\", \"486_l_0_r-0_1.71-1_0.22-2_2.17-3_0.87\", \"487_l_0_r-0_1.58-1_0.16-2_1.12-3_1.06\", \"488_l_0_r-0_0.25-1_1.15-2_0.37-3_0.96\", \"489_l_0_r-0_0.89-1_0.96-2_0.36-3_0.36\", \"490_l_0_r-0_0.73-1_0.43-2_0.1-3_0.15\", \"491_l_0_r-0_1.11-1_0.38-2_0.38-3_1.34\", \"492_l_0_r-0_0.32-1_0.05-2_0.74-3_0.58\", \"493_l_0_r-0_0.41-1_1.23-2_0.33-3_0.49\", \"494_l_0_r-0_0.66-1_0.08-2_0.02-3_0.17\", \"495_l_0_r-0_0.12-1_0.68-2_1.93-3_1.65\", \"496_l_0_r-0_0.01-1_0.11-2_0.64-3_1.75\", \"497_l_0_r-0_0.01-1_1.34-2_0.8-3_0.43\", \"498_l_0_r-0_1.28-1_0.43-2_1.23-3_0.22\", \"499_l_0_r-0_1.07-1_0.34-2_0.1-3_0.62\", \"500_l_0_r-0_1.6-1_0.17-2_0.81-3_0.7\", \"501_l_0_r-0_0.27-1_0.28-2_0.29-3_1.1\", \"502_l_0_r-0_0.54-1_0.11-2_1.12-3_0.67\", \"503_l_0_r-0_0.31-1_0.8-2_0.59-3_0.45\", \"504_l_0_r-0_0.75-1_0.21-2_1.63-3_0.16\", \"505_l_0_r-0_2.27-1_0.27-2_0.6-3_0.51\", \"506_l_0_r-0_0.65-1_0.38-2_0.38-3_1.07\", \"507_l_0_r-0_0.8-1_0.08-2_0.41-3_1.02\", \"508_l_0_r-0_0.2-1_0.84-2_1.69-3_0.94\", \"509_l_0_r-0_0.68-1_0.01-2_0.27-3_1.39\", \"510_l_0_r-0_1.51-1_0.01-2_0.37-3_1.37\", \"511_l_0_r-0_0.27-1_1.11-2_0.87-3_0.93\", \"512_l_0_r-0_1.9-1_0.25-2_0.75-3_1.18\", \"513_l_0_r-0_0.49-1_1.6-2_0.11-3_0.51\", \"514_l_0_r-0_1.18-1_1.02-2_0.22-3_0.62\", \"515_l_0_r-0_0.81-1_1.54-2_0.36-3_0.13\", \"516_l_0_r-0_0.64-1_0.06-2_0.44-3_1.48\", \"517_l_0_r-0_0.27-1_0.7-2_0.53-3_0.56\", \"518_l_0_r-0_1.36-1_0.79-2_0.47-3_0.07\", \"519_l_0_r-0_0.88-1_0.44-2_0.44-3_0.43\", \"520_l_0_r-0_0.48-1_1.12-2_1.43-3_1.05\", \"521_l_0_r-0_0.25-1_0.62-2_0.02-3_0.49\", \"522_l_0_r-0_0.69-1_0.87-2_0.65-3_1.12\", \"523_l_0_r-0_1.58-1_0.97-2_0.11-3_0.55\", \"524_l_0_r-0_1.47-1_0.11-2_0.36-3_0.05\", \"525_l_0_r-0_1.64-1_0.61-2_1.87-3_0.62\", \"526_l_0_r-0_1.55-1_0.02-2_0.23-3_1.35\", \"527_l_0_r-0_1.07-1_0.2-2_0.65-3_0.4\", \"528_l_0_r-0_0.14-1_0.92-2_0.72-3_0.25\", \"529_l_0_r-0_1.09-1_0.99-2_0.6-3_1.79\", \"530_l_0_r-0_0.14-1_0.04-2_0.51-3_0.81\", \"531_l_0_r-0_1.31-1_0.51-2_1.64-3_1.34\", \"532_l_0_r-0_1.28-1_0.1-2_0.28-3_0.4\", \"533_l_0_r-0_0.44-1_0.53-2_1.22-3_0.53\", \"534_l_0_r-0_1.27-1_0.68-2_1.09-3_0.24\", \"535_l_0_r-0_1.19-1_1.21-2_0.15-3_1.47\", \"536_l_0_r-0_0.35-1_1.06-2_0.33-3_0.66\", \"537_l_0_r-0_0.69-1_0.84-2_0.69-3_1.92\", \"538_l_0_r-0_0.77-1_0.84-2_0.91-3_1.1\", \"539_l_0_r-0_1.44-1_0.51-2_0.55-3_0.76\", \"540_l_0_r-0_1.3-1_0.01-2_1.38-3_1.18\", \"541_l_0_r-0_1.46-1_0.07-2_1.1-3_0.69\", \"542_l_0_r-0_0.57-1_1.16-2_0.16-3_0.37\", \"543_l_0_r-0_0.34-1_0.19-2_0.01-3_0.27\", \"544_l_0_r-0_0.16-1_1.34-2_0.14-3_0.04\", \"545_l_0_r-0_0.69-1_0.5-2_0.46-3_0.01\", \"546_l_0_r-0_0.45-1_0.86-2_0.99-3_0.4\", \"547_l_0_r-0_2.05-1_0.91-2_0.76-3_0.98\", \"548_l_0_r-0_1.2-1_1.93-2_1.72-3_0.3\", \"549_l_0_r-0_0.8-1_0.35-2_1.57-3_1.34\", \"550_l_0_r-0_0.22-1_0.79-2_0.3-3_1.4\", \"551_l_0_r-0_0.94-1_0.08-2_0.22-3_1.15\", \"552_l_0_r-0_0.64-1_0.02-2_1.3-3_1.05\", \"553_l_0_r-0_0.94-1_0.85-2_0.01-3_1.11\", \"554_l_0_r-0_0.3-1_0.34-2_0.8-3_0.5\", \"555_l_0_r-0_0.58-1_0.39-2_0.66-3_0.4\", \"556_l_0_r-0_0.17-1_0.38-2_1.41-3_1.19\", \"557_l_0_r-0_0.33-1_1.41-2_0.29-3_1.07\", \"558_l_0_r-0_0.59-1_0.59-2_0.29-3_0.65\", \"559_l_0_r-0_0.68-1_0.62-2_0.93-3_0.07\", \"560_l_0_r-0_0.2-1_0.73-2_1.81-3_1.1\", \"561_l_0_r-0_0.37-1_0.43-2_1.57-3_0.5\", \"562_l_0_r-0_0.68-1_1.41-2_0.42-3_0.63\", \"563_l_0_r-0_1.06-1_0.11-2_0.6-3_0.71\", \"564_l_0_r-0_0.83-1_1.06-2_0.84-3_0.24\", \"565_l_0_r-0_0.39-1_0.09-2_1.06-3_0.17\", \"566_l_0_r-0_0.37-1_1.46-2_1.07-3_1.0\", \"567_l_0_r-0_0.32-1_0.64-2_0.85-3_0.74\", \"568_l_0_r-0_0.25-1_0.4-2_0.85-3_2.11\", \"569_l_0_r-0_0.72-1_0.46-2_0.63-3_0.36\", \"570_l_0_r-0_0.2-1_0.05-2_1.79-3_1.38\", \"571_l_0_r-0_0.43-1_1.36-2_0.48-3_0.27\", \"572_l_0_r-0_0.24-1_0.96-2_1.59-3_1.53\", \"573_l_0_r-0_0.24-1_0.2-2_1.13-3_0.1\", \"574_l_0_r-0_0.8-1_1.59-2_0.24-3_0.32\", \"575_l_0_r-0_1.45-1_0.65-2_0.88-3_0.09\", \"576_l_0_r-0_0.96-1_0.78-2_0.21-3_1.67\", \"577_l_0_r-0_0.11-1_0.28-2_1.65-3_0.37\", \"578_l_0_r-0_1.2-1_1.53-2_0.29-3_0.77\", \"579_l_0_r-0_0.69-1_0.3-2_0.81-3_0.51\", \"580_l_0_r-0_0.63-1_0.29-2_2.41-3_0.77\", \"581_l_0_r-0_0.54-1_0.1-2_0.25-3_0.69\", \"582_l_0_r-0_0.28-1_0.74-2_0.65-3_0.98\", \"583_l_0_r-0_0.1-1_1.09-2_1.15-3_0.53\", \"584_l_0_r-0_0.24-1_1.64-2_1.91-3_0.24\", \"585_l_0_r-0_0.18-1_1.38-2_0.41-3_1.43\", \"586_l_0_r-0_1.13-1_0.45-2_0.11-3_0.46\", \"587_l_0_r-0_0.26-1_0.41-2_0.21-3_0.72\", \"588_l_0_r-0_0.48-1_1.13-2_0.49-3_0.25\", \"589_l_0_r-0_0.68-1_0.04-2_3.15-3_0.73\", \"590_l_0_r-0_0.65-1_0.08-2_0.04-3_0.14\", \"591_l_0_r-0_1.24-1_0.17-2_0.79-3_0.45\", \"592_l_0_r-0_0.47-1_1.09-2_1.67-3_0.2\", \"593_l_0_r-0_0.42-1_0.82-2_0.24-3_0.34\", \"594_l_0_r-0_0.64-1_1.16-2_0.96-3_0.13\", \"595_l_0_r-0_1.76-1_0.81-2_2.3-3_2.65\", \"596_l_0_r-0_1.58-1_1.13-2_0.58-3_0.23\", \"597_l_0_r-0_1.07-1_0.62-2_0.83-3_1.64\", \"598_l_0_r-0_0.58-1_0.52-2_1.44-3_0.45\", \"599_l_0_r-0_1.31-1_1.0-2_0.13-3_1.32\", \"600_l_0_r-0_0.36-1_1.64-2_0.71-3_0.63\", \"601_l_0_r-0_0.2-1_2.12-2_0.14-3_1.34\", \"602_l_0_r-0_0.58-1_0.27-2_0.86-3_1.06\", \"603_l_0_r-0_0.78-1_1.43-2_0.59-3_1.07\", \"604_l_0_r-0_1.02-1_1.14-2_0.6-3_0.59\", \"605_l_0_r-0_0.22-1_0.81-2_0.62-3_0.76\", \"606_l_0_r-0_0.02-1_0.02-2_0.23-3_0.1\", \"607_l_0_r-0_0.11-1_1.37-2_1.8-3_1.14\", \"608_l_0_r-0_0.92-1_1.22-2_1.01-3_0.56\", \"609_l_0_r-0_1.37-1_1.21-2_0.02-3_1.8\", \"610_l_0_r-0_0.74-1_0.3-2_0.93-3_1.31\", \"611_l_0_r-0_0.14-1_1.04-2_0.85-3_0.12\", \"612_l_0_r-0_1.27-1_0.74-2_0.42-3_0.67\", \"613_l_0_r-0_0.52-1_0.55-2_1.06-3_1.18\", \"614_l_0_r-0_0.3-1_0.99-2_1.75-3_0.41\", \"615_l_0_r-0_0.4-1_1.15-2_0.77-3_1.73\", \"616_l_0_r-0_0.97-1_0.35-2_0.35-3_1.35\", \"617_l_0_r-0_1.15-1_0.96-2_0.77-3_0.21\", \"618_l_0_r-0_0.01-1_0.82-2_0.58-3_0.18\", \"619_l_0_r-0_0.12-1_0.91-2_0.54-3_2.02\", \"620_l_0_r-0_1.23-1_0.11-2_1.26-3_1.34\", \"621_l_0_r-0_0.26-1_0.37-2_0.57-3_1.26\", \"622_l_0_r-0_0.43-1_0.86-2_0.19-3_0.95\", \"623_l_0_r-0_1.04-1_1.08-2_1.66-3_0.12\", \"624_l_0_r-0_0.36-1_0.75-2_0.21-3_1.8\", \"625_l_0_r-0_0.47-1_0.93-2_1.04-3_0.59\", \"626_l_0_r-0_0.85-1_0.26-2_0.11-3_1.53\", \"627_l_0_r-0_0.61-1_0.05-2_0.55-3_0.16\", \"628_l_0_r-0_0.56-1_1.74-2_0.87-3_0.83\", \"629_l_0_r-0_0.38-1_1.33-2_0.87-3_2.11\", \"630_l_0_r-0_1.27-1_0.78-2_1.38-3_0.22\", \"631_l_0_r-0_0.14-1_1.36-2_2.17-3_0.63\", \"632_l_0_r-0_0.24-1_0.22-2_1.32-3_1.75\", \"633_l_0_r-0_1.78-1_0.83-2_1.04-3_0.69\", \"634_l_0_r-0_0.9-1_0.83-2_1.66-3_0.95\", \"635_l_0_r-0_0.31-1_0.21-2_1.74-3_0.05\", \"636_l_0_r-0_1.13-1_1.04-2_0.25-3_1.34\", \"637_l_0_r-0_1.31-1_0.89-2_0.12-3_0.96\", \"638_l_0_r-0_0.22-1_0.89-2_3.17-3_0.91\", \"639_l_0_r-0_0.95-1_1.51-2_0.73-3_0.49\", \"640_l_0_r-0_0.77-1_1.72-2_0.05-3_0.44\", \"641_l_0_r-0_1.4-1_0.09-2_0.3-3_0.97\", \"642_l_0_r-0_0.62-1_0.09-2_0.67-3_0.03\", \"643_l_0_r-0_1.67-1_1.05-2_0.74-3_0.59\", \"644_l_0_r-0_0.81-1_0.89-2_1.05-3_0.0\", \"645_l_0_r-0_0.17-1_1.03-2_1.46-3_0.7\", \"646_l_0_r-0_0.72-1_0.25-2_1.6-3_1.45\", \"647_l_0_r-0_0.72-1_0.18-2_0.06-3_0.14\", \"648_l_0_r-0_1.05-1_1.14-2_0.39-3_0.84\", \"649_l_0_r-0_0.71-1_1.65-2_0.07-3_1.2\", \"650_l_0_r-0_0.1-1_0.22-2_0.07-3_1.32\", \"651_l_0_r-0_0.46-1_0.67-2_1.61-3_0.4\", \"652_l_0_r-0_0.78-1_1.21-2_0.63-3_0.18\", \"653_l_0_r-0_0.42-1_0.85-2_0.31-3_0.43\", \"654_l_0_r-0_1.14-1_0.07-2_0.17-3_1.77\", \"655_l_0_r-0_0.29-1_0.14-2_1.57-3_0.95\", \"656_l_0_r-0_1.16-1_1.78-2_1.93-3_0.38\", \"657_l_0_r-0_0.68-1_0.96-2_1.5-3_0.58\", \"658_l_0_r-0_1.57-1_1.09-2_0.69-3_0.1\", \"659_l_0_r-0_0.81-1_0.03-2_0.36-3_1.67\", \"660_l_0_r-0_0.16-1_0.66-2_1.34-3_1.14\", \"661_l_0_r-0_1.13-1_0.58-2_0.06-3_0.21\", \"662_l_0_r-0_0.88-1_1.13-2_1.48-3_1.35\", \"663_l_0_r-0_2.09-1_0.13-2_0.05-3_1.8\", \"664_l_0_r-0_1.32-1_1.49-2_0.09-3_1.72\", \"665_l_0_r-0_0.54-1_1.36-2_0.74-3_2.08\"], \"type\": \"scatter3d\", \"x\": [-0.9223519467538388, -3.8785187988585146, 0.08983983209603252, 0.20743945006192788, -2.6235064757406237, 0.917943572404027, -2.40186630149753, -0.5740309289356447, 0.7863611789379394, 0.5019616097707138, -3.275185042009142, -1.8869988001509912, 0.2649904761637156, 0.018119405418580703, 0.005392781190140639, 0.6592582719877518, 0.31514515728325065, 0.8792475860349853, 0.24276440505757857, -1.7122723753239653, 0.5639123146706804, 0.44146878332384065, -2.8075256240053434, -2.112439624249136, -0.996194615522761, -0.9689191636170884, 0.1914125500071282, 0.8862557379405656, -1.0801055168337925, -1.654651912565412, 0.23008167749617892, -0.9698652504789683, -1.8346895695822134, -0.9068438974821186, -1.9099225083611044, 0.5552960594693812, 0.2833583946394844, -1.091739228313504, 0.24659490911311677, 0.2838797316485755, -1.2679335921102475, 0.8911477871598648, 0.4103762854188351, -1.6392758038737094, -0.8853643258153508, -1.0070366685488268, -3.1003326586599838, 1.5140629193067547, -2.2658034637787297, -2.1700849104883972, -2.4839126679385877, -1.046785345039444, -1.4325518431799702, 0.6894082168516309, 0.15534118793262142, -0.971437469440371, 0.5267743988423383, 0.509314609621083, -2.826301977313583, 0.9565204014044058, 2.229114298464416, -0.8804195862961209, 0.2020380112256457, -1.242246398798493, -1.4978753443244628, -0.8797692799174401, 1.7567407224213496, -2.6426077561184482, -1.3534302432500458, 0.31050141516509977, -1.8889056061239593, -0.2008936377007179, -0.5466012908228656, -0.4631213946666901, -1.8138950895362664, 0.22934532211093095, -2.2355481370730397, 0.0549285203506813, -3.0592997017578383, -0.6759446910627394, 0.5761805683871508, -0.6540918693822604, -1.7085518503845205, 0.11850275216020756, 0.8343046446487321, -1.4082603380301322, 0.054372513142512346, -1.4716429463010623, -1.4920737831447395, 0.21193116491413444, -0.37681589011011163, -0.5711317582464335, 0.2254199142127966, 2.002151350139458, -0.4264265121859847, -1.2840452796626387, -2.278418770033441, -1.043313779567856, 0.017042232183730244, 0.055908756311188856, 0.033135716033867224, -1.1499740091844275, -0.09347265773581248, 0.07013457669914036, -0.991775396369539, -2.0049418130169165, -1.237599058186884, 0.019457014231197833, 0.543151963587053, -1.4119016252956134, 0.49758322962997537, 0.05781028332762639, -0.6512212859443027, -0.5157240484481787, -0.09320961105909653, -0.1379135591627635, 0.559912140630356, -1.9716573447206143, 0.5288321739106248, -2.3500874492509802, 0.49021324434194935, -0.743947370644019, 0.13444243987608284, -1.8659439012837207, -1.4124511395896153, -1.7652907699075548, 0.1832725862561151, 0.087731933327305, 1.3205803777820861, -1.401817967221981, -0.3878601530027507, 0.02959791133751377, 0.18544363681035425, -1.2378839851963737, -2.386202507880806, 0.03911171566501137, 0.4276475605761818, -0.27461564498625146, 0.11902152859586068, -1.987174909141304, 0.11124799468443669, -1.5401819901226341, -2.463834311894363, -1.5654199768272186, 0.1733021654101603, -0.038627522068085174, -1.0004421066191436, -1.885494356141996, -0.6458515443729037, -0.2777105840547158, 0.2663514571467569, -1.611738336464231, 0.4077322452177363, -0.8434121422804637, 0.6613207022863554, -0.422475871385774, 0.428037675032767, -1.3470158186341534, -1.113314334163461, 0.4381597339275758, 0.5820415238189238, -1.535673490636394, -1.0068369507827215, 0.5930826786445398, -0.44818682216026884, -1.5823115596158934, 0.06069029100383627, 0.3383945265351078, 0.06678618592692187, -1.4469569899228585, -1.2812125962375789, -0.16122669629160968, -1.2666117888122106, -0.26546653831089806, 0.6676655133029541, 0.1767286987991723, -1.3055814766042793, -1.3057414779269914, 0.482710101111095, 1.261106190520405, 1.1927812674891856, -1.8767175915510175, 1.1171595774983278, 0.8724808688613495, 0.6510721019163435, -1.5725529018962672, 0.3861297314804215, 0.0450900161155412, -1.9927275401046456, -0.48859462168154144, 0.09249454506282717, -1.9335229090313506, 0.505738621914561, -0.21960865916895378, -1.9936544412360937, -1.005245112330801, 1.367108371380528, -1.2140554350453887, 0.03267862725899029, 0.8241181890261047, -0.7355155680338581, -0.27990072736003846, -0.26456569805050323, -0.9866146941771613, 0.6017328034606055, -0.9237624269460839, -2.315005311207117, 0.019357012989089872, 0.9354158379795259, -0.9161884238974047, -1.1277660381887438, 0.8294115053146387, -0.860179908426724, -1.5060111639114688, 0.03701341517057055, -0.7688331523489884, -0.742208119416254, -1.6852828209867956, 0.7398318042847862, 1.2963821100299935, -2.5125787027723545, -1.7621221441879023, -1.7588265934025622, 0.22639063783613955, -2.643899473831766, -1.1842527989821228, -1.1522750732087244, 1.3001606450236056, 0.14785144613399792, -1.532130144631139, -1.9527361221405783, 0.8869595356802678, -1.0210165567193537, -2.054603323798753, -1.6253792924257904, 0.5564956060622215, 0.20089952080337725, -0.8760155576831343, -0.22601117653298952, 0.2832418426235548, -0.17696663236459786, -1.7066635189226111, 0.2662534842888351, 1.2526657631910578, 0.16757850368401672, -0.7169302947343748, 0.19319746255237913, -1.7069944504517252, 0.10991861417908155, -3.117857829577776, 0.9670497519187358, -2.7734159501327644, -0.30528376946445235, -1.3712174921532267, 0.5678360692148376, 0.6950034444442716, -0.7913019757198916, -1.8156074058871061, 0.4566281165382875, 0.19025335230962925, 0.2747549391696438, -1.5876148478640681, -1.446882054656088, 0.14984380877495562, 0.07749249237678879, -1.1069155313175623, -1.2653972533638773, -0.24713116261815415, 0.08623667053191286, -0.43763679340145856, -0.4615294369100271, -0.3303079087431313, 0.09414708291664486, -1.3971053223656018, -1.2933622161273284, 0.3847069721326313, 1.3747886047160884, -2.195308587404562, 0.28907472375453414, -1.5417342320510299, 0.4829674742522756, -1.0165496471403888, 0.7157216636717343, 0.43058900159225977, 0.11741798351379673, -2.6355026883363646, -2.686086110563608, -1.2558542664094485, 0.52327040408788, -3.201866571950227, -1.7216807296160377, 1.2367038383165672, 0.3034013921645895, -1.5811893580645588, 2.474684109175074, -2.1679202192248086, -1.6245840788069623, -0.5946934797652537, -0.5636170861866644, -1.350632509880746, -1.1114458744267897, -0.4084323622642174, -0.9663122365806859, -1.5214220573334956, -2.2441439121543736, -1.146536465724322, -1.2561142709893522, -1.4004304214053653, -0.8810197739990477, -1.164368674628662, -1.0228500552670756, -1.9281615168746322, -1.8740005089439435, -2.172304032643985, -0.716534565867287, -0.3270540783717406, -2.6432009590619434, -0.2962004319232512, -1.3093129071142213, -1.4933855798771132, -1.7520034804542974, -2.030087659305167, -0.971249582604375, -3.3849680106216327, -1.7690154344242854, -0.12356262084718428, -0.4296349557405005, -1.965850466075955, -1.759450710866953, -2.265183688913971, -0.8121899573389926, -2.1571132077447457, -1.695166971766857, -2.6435272350347647, -1.2225487644896809, -2.862852533520678, -2.1708682074061048, -1.3157398026944267, -0.8423089158625198, -1.0858211253666576, -1.6102487850366476, -0.18006522397907, -0.27170368779495746, -2.186226994340455, -1.5172024649688205, -0.0971612158291505, -1.8409038917533067, -1.2253705743590273, -1.9994539016477146, -1.1068077829409022, -0.23424248384890733, -2.2383353210782273, -0.6172560896704682, -1.9397396574470611, -3.9560987848366493, -0.7662443551672171, -3.8795947690099806, -1.135619670232026, -0.6501762112973095, -1.9233757492807764, -3.614362082980797, -0.9178313809271961, -1.0448538282429363, -1.7016631297150313, -1.9966482407438166, -0.44895654091246784, -0.3824320476344065, -0.16297915521669748, -3.379673393567826, -1.1549451903981656, -2.753468764580862, -1.5903711701163583, -0.9817346507979542, -1.4325869226275185, -2.6656053135753854, -0.6423816581240345, -0.4951784783935279, -0.4914834137697752, -1.6735289368038988, -1.2149087925273985, -2.1601067982274773, -1.1872594454598235, -0.11668163630987816, -1.4030322946752152, -0.5998107228488951, -3.340447390295396, -2.009045527338936, -0.45719602163765016, -0.708060336941845, -0.6513479819183203, -1.3483759563635576, -0.5541380049617531, -2.726007044625665, -2.522624154303167, -1.233104622631168, -0.48153347409499647, -0.08536197681152258, -0.3058644765183973, -1.3549833813659948, -1.3278192905674076, -0.5640888069489312, -0.44292837148210484, -0.4106885227524638, -0.5670937243830825, -1.0756120110647684, -0.7714796031812488, -0.7300504420252172, -1.2380616167964575, -1.4402600998221837, -0.026537277526602177, -0.8119040332728503, -0.4168818771702123, -1.3793570712760774, -0.7793980695722338, -0.9675399604707501, -1.1711491591715883, -0.7387096539005802, -1.2486765690935715, -1.9719626120421976, -2.670066864165439, -1.3463905322244365, -0.6713288626318183, -0.5276328269821097, -0.6738130788999322, -2.2483706863251234, -2.3063853512832297, -1.8381736977798098, -0.2793921942160362, -1.4920030645636795, -1.1092298905952915, -1.5928302438228341, -0.21208724621387276, -0.9957942534247265, -2.241046450974616, -2.048725137460206, -0.5601805415424945, -2.2215273326596208, -1.1409647500598048, -0.9272681185293583, -0.9732759717292845, -0.6015190938687637, -1.3838097989520124, -1.4160921717605652, -3.189183375918542, -1.4832769750793304, -1.2733225674772475, -2.587991538008427, -1.404843043740317, -2.6365917487244674, -1.4431062799055743, -1.5839117357690575, -0.4067418945396485, -0.6040242664041262, -1.1721331654852394, -0.45603177820726093, -1.3719512490741685, -1.0253467728626244, -1.1406125429553549, -1.7329445340602525, -0.35402327738006467, -0.25281202566649363, -0.14358450497461062, -1.15273440657489, -1.2692972635605126, -2.4663503548487915, -0.058074285819233684, -0.16537077939025036, -2.2128545349864517, -0.2055757449926353, -1.3940700570827544, -1.2452884721590207, -1.3139649058601448, -0.5417475211936578, -2.3826876173697116, -1.3742177028614826, -0.3891949319999307, -3.070277966660267, -0.7007351787794808, -1.505052479950891, -0.27770130049109065, -0.721894682450489, -0.9989930303621324, -0.47107219942962375, -0.3489350839540676, -0.8016593992383111, -1.7056699557125699, -1.8347886607490005, -2.950515632693616, -1.4690594598640163, -1.4504900577556472, -1.389244709676231, -1.5111866453862517, -2.20203108151157, -0.8812029463172386, -0.6649216492543796, -1.3820841288061405, -1.9840439416337765, -2.219250730490642, -1.2758697341159153, -1.0669569459197377, -2.677686734749176, -1.3114682865747587, -2.5248458779654372, -0.36360946533648386, -0.7542847986659069, -3.579878971881483, -1.8072333280988724, -0.8013812248592004, -0.19935251763687767, -1.309515475532127, -2.956189669232022, -0.27433541854098564, -2.858247996794786, -2.371418786913881, -2.66999339362422, -0.9680967126843597, -0.6429259102053917, -0.4572887453048964, -1.6850006439575704, -0.8761518741980633, -0.48367763239108386, -1.09601377883043, -0.6895663599008625, -1.5834090913550205, -1.484960084445559, -2.0881557846530012, -1.5499504164213296, -1.6461933315088149, -0.7059444778197692, -1.094805348443174, -1.651879766606429, -3.621119643391307, -1.2787717767275368, -0.43667396324299634, -1.274273013984727, -1.2395778236446306, -1.0960505274869672, -0.694059528966692, -1.7525760875204746, -1.9448584208191102, -2.2990914632787147, -1.5664392727453156, -0.7312063916155651, -0.3364381548332106, -1.0070154673791207, -1.6527881075544726, -0.4458547041927733, -2.052632741911191, -1.7057165011887747, -0.7988177207372797, -1.1523644437623866, -0.9371860414359277, -1.6498005109835123, -1.2080645499060294, -2.6211665649475124, -1.8879100143554148, -0.1685664126760429, -1.4819155064730818, -0.5882872637414602, -0.6780871709756517, -0.20427370883944573, -0.3716676695724468, -0.6778919836441468, -1.3936917814830239, -0.8251742061889233, -1.9990090590077045, -0.4190202788781022, -0.737106148126824, -0.35571831158393874, -1.0450214634422752, -0.19926779049424415, -0.43167096706430674, -0.46193368799722967, -0.2448801511993971, -0.7999207363685517, -1.4459426523156453, -0.9615136957434017, -1.805212675648212, -1.2009205199267767, -0.6894611788051199, -0.6330780357453123, -0.5353621067065089, -0.8604543395802762, -0.5223953266737538, -0.24351889261057236, -1.5652095906535788, -2.453033630622084, -0.6639243076226253, -0.4751786968192345, -0.6752571754413492, -0.9537801320964824, -1.8089211897865298, -2.7157462580739278, -1.7161928358147351, -0.6355972933775356, -2.761945843786086, -1.580211952595887, -2.508109956802065, -1.5902231433524439, -3.7507661565091555, -0.35931285984869243, -0.20178579224602655, -0.9242917373350583, -0.7832619397596288, -1.0219752767511072, -0.21685973833569994, -0.020530658783453393, -1.3611118736166783, -0.9236719719479276, -1.371009381985003, -1.7087594093002447, -2.1362910561814044, -1.2749620397678834, -0.5191483814497477, -1.7252178840513772, -0.39533330029111213, -0.9667554931978908, -1.153177649542697, -1.9843031505014315, -0.12239040539578505, -2.1382629493231065, -1.706885826939569, -1.2856961570472771, -1.03682220850649, -2.1267908268896845, -2.479300059999832, -0.8460588729939185, -0.6130369771183493, -1.9465496265460338, -0.38470642270089217, -1.265477616464579, -1.1540874866088182, -0.24082586946015605, -2.895980435675011, -0.9030202678227401, -0.3080464644711216, -1.6198076680748825, -1.3135431401197992, -0.21707705767340146, -0.9460121600200738, -1.193249050527889, -1.5854456071920553, -0.6164247480326072, -1.6729816843155592, -2.0777259994307222, -2.7345227050289775, -1.2175732924924278, -1.0931702670824168, -1.098876129971625, -1.7582030237938635, -0.600215487474453, -1.2459700427729612, -0.7806368915296741, -1.9904271748878535, -1.13644595158979, -0.2913349474172988, -1.1683573737828403, -1.7351811558625587, -3.933721492209337, -0.8106582360251973, -0.7881373649166712, -1.1333635989426298, -0.8779810135873106, -2.091615323407209, -1.9416165346213434, -2.8846579728583324], \"y\": [0.08016293317553314, 0.12036955706530406, 0.3076352294552802, -0.5547965621590076, 0.47033053156621585, -2.1903797983185997, 0.16008405729259945, 0.00456197625187893, -2.0109330707164528, -2.6368227266052555, 0.3499322259827742, 0.4468076878311069, -1.7130024320501076, -1.3627861650917432, -1.0642012258436457, -0.9786978859729374, -3.35177172463966, -0.9939535502025456, 1.3632526074067517, -2.922788243458347, 0.5610165655274562, -3.475556384518818, -0.048167249661313694, 0.4932484452866135, 1.3198969782145307, -3.709971021101731, -0.9501326037338337, -1.9239711734491558, -1.894888453098294, 0.21642227081259358, -0.5788700332374555, -0.25625008333111, 0.07439565297277295, 0.9695017926175049, -0.8660514575461497, 0.5840100087408155, -0.39739333936539256, -4.004992478339801, -2.6034172982800827, 0.29523667554957744, -2.1371251794290034, -2.477018387351297, -3.2673333127663975, -0.2989645095952015, 1.0734881032734158, 0.20419047521781697, -1.8834578256612362, -0.4554382230666729, 0.29634891909451566, -2.241811846969027, 0.1538122846017549, 1.2662922000111094, -0.1765686210260995, -0.9111495366016655, -1.8436879268529167, -1.84263273708125, -0.27834462165795815, -1.3676991593127354, -0.9704865039202096, -1.160768469735203, -1.6774984039767236, -2.591989580153787, 0.3574260551742505, 2.881145405931723, -1.523449013720834, 0.4405426048407519, 0.4126456380621979, -2.0462166283796512, 0.4005048049340363, 0.35100402155989596, -0.4485566225560148, 1.0438940035797302, 0.24154856106987488, -1.8677176864593235, 0.6872138366730012, -1.6223611586627082, -2.357976594683474, -0.08174213360071148, 0.20848966950075143, -0.4290874710123521, -1.712903194355493, 0.3444893851382542, -2.0073602314507166, 0.6890326879106674, -0.7954334770559054, -2.0890181405002286, -1.3021672843287526, 0.9027620071399609, -1.734858498148454, -1.4326929072530112, 1.0379440870888441, -2.3652889881594117, -0.7189468363975142, -2.0211849235649746, -1.4852223295554028, 0.34331539254050747, 0.027848467900298157, -2.4713949501582952, -0.3086624016214774, -2.1846376831112284, -0.7289260165758373, -1.8740188877657085, 0.2150519623914926, -2.349381197478606, 0.40518168085955164, -0.5525782206869562, 0.08683548812267028, -0.24064874285353444, -1.8818571940982274, -2.678363728440201, -1.0659232424334255, 0.0563213177009001, 0.04280247340069909, -0.8146941139367041, 0.2702946748821964, 0.2053879626777506, -0.6247295584663541, -0.5415865824457669, -1.4542554294902863, 0.45889097550954294, -1.9725248086835752, -0.10777398274188565, -2.06823157321674, 0.05005825873824654, 0.20006639822400674, -1.3810698593411135, 0.40442837939626397, -1.1476741671103046, -0.2257383468353681, -1.2926667190877934, 1.234995830461889, 0.33600258721827814, -1.8727449619027625, -1.8103451920801235, 0.714207974657137, -0.9105070581424906, 0.9289467835050187, -0.9054703185596228, -2.6528236245080556, 0.07273533733769022, 0.049730890023956364, -2.775027280181856, 1.6848773850346404, 0.41075417073996334, -0.9163067794031924, -1.3342529508395906, 0.5595168737505545, 0.7064439414907449, 0.34920336084669357, -0.22770757005271958, -1.3562815820970031, 0.12880731795872125, -2.053909448111648, -1.5839102230255446, -1.201709419676099, 0.8280064122502258, -1.5298084481434118, -0.15886013463039594, 0.38123443439336335, -1.7230048121927517, -1.7988996630678336, -1.3518627507409602, 0.7325474467424342, -1.358928463100795, 0.7996729107207066, -3.433568147715131, -0.1717738578650524, -0.4535657851506202, -2.117421019914759, -0.5492116318914229, 0.09645932406100766, 1.4145218889831424, 0.18613792007685404, -0.8091935180858914, -1.2967491360460908, -0.776569983384841, 0.41178386403742007, -2.0591130705708434, -1.1787165059912534, -0.9827062104988328, -0.5629822857351889, -1.8582809044726574, -1.8342570793073758, -1.9765933536480471, -2.087500143221356, -0.3299523313889563, -1.537534311129133, -1.1993181019513246, 0.5561495927332485, -1.0876579425022659, 0.5842972030385698, 0.0509023857532942, -2.4083851290486837, -1.1988174520561825, 0.5878264664074582, 0.5050857683888179, -0.1719294904553128, -0.0207166001633019, -1.304631130547421, -1.460744140902917, 0.48103691679222926, -1.467408478644697, 1.270443024026441, 1.2873851540088586, -0.2536705062467186, -2.927024957652849, 0.22265926227706867, -1.259361639444172, -0.4077756590126036, -2.9799820117921607, 0.08470140046448371, -1.0779657574038815, 0.540735112163405, -1.9566899133942486, 0.8929365667726534, 0.9218241955059052, 0.629536901777846, -1.2478328150904847, 0.1781402503200855, -0.6703293070572267, 0.4959099505698694, -2.0989423155847513, 0.45126864588743865, -0.06855731190329784, 1.6104557331346427, -0.8230423386843944, 0.18790380481922897, -0.7810280959881701, -1.7656504410526193, -1.6927772038860935, 0.8476629685549255, -2.773503020572679, 0.47049609194962083, -1.8485560358382185, 0.6023487493866269, -1.4594966369661906, -1.4013511178974856, -0.7994121008407832, 0.5994292065944853, -0.9913544279557391, 0.3326091174316468, -2.7187085476906434, 0.877833406781712, -1.3063726434148335, 0.18551989746026964, -0.11708312612224292, -2.6313658864239047, 1.4621671787361765, -1.8657235304057254, -0.4146446938346471, -1.0548937610195697, 0.4470969548894137, 0.5865137813243744, -0.8962648985631156, -2.214653547416197, 0.15649019202082592, 0.09193959347525626, -2.9142934322723413, -0.20438375869682168, -0.26290612470902, -1.3452805723281478, -1.7939582462893013, 0.877862367496385, 0.3750262735303558, -0.6800846670139835, -1.6600452278178297, 0.5109174767268683, 0.3745826965979042, 0.33439467540827406, -0.0818162570001919, 0.43259623295429894, 0.5224607833746155, -3.0093300833360366, -0.4120445346643372, 0.031900696070910284, -0.7238624474407249, -2.887201021517874, -0.24206701948307308, -1.221716266715092, 1.4734802783178673, -3.355537820969158, -3.152856721236086, -1.3165156295537348, -0.5651378266003946, -2.227321452880715, -1.380909267644314, 0.24708830992948205, 0.42525069539466287, -0.3641683466752642, -1.8705086574530392, 0.42768425614171335, -1.961960719421744, -1.8523429180065312, -3.151948381541203, -1.3147148020626211, -2.4083199370354054, -0.8727995072834565, -0.2306478457179566, -2.6708349232354855, -0.5929560131199005, -0.6176142455943663, -1.1059315632447806, -0.00894992060229649, -0.8291985964962848, -1.6249220219516494, -0.17014749050205424, -0.9156444054097999, -2.3918354855731856, -0.2343251672166955, -1.4837063600658895, -1.460983211195056, -1.7241677931147563, -2.0868708979188915, -2.5213261603348167, -1.0774516557851361, -1.564917646126188, -0.6323507561358142, -0.1622321514524161, -2.272626829682867, -0.5988644470823143, -2.8225028085430974, -0.30552001542546037, -0.2399289134698236, -2.448105190177378, -1.1292621439377035, -1.6548832988303805, -2.6574708808748246, -0.34737130399736793, -1.6690009608337224, -0.4275502544866616, -1.9070508372131139, -0.7076779266852098, -1.8389907341176368, -0.6495644857978502, -1.522192988191025, -0.9787099958296197, -0.37847336639392726, -1.5262988718466854, -1.6676497543478819, -0.9276770372418697, -1.2752180352636702, -1.1845016800351436, -0.08016069840672657, -1.1711991148494532, -0.2076666146547428, -1.9530583380704978, -0.12122024223249228, -2.9876511868113083, -1.066600712375044, -2.08577528842671, -0.47007108482084203, -1.4666959426350685, -1.4634391419687398, -0.3734650033772686, -0.4557438853745094, -1.2228704944169984, -2.1277490784443414, -0.905020329286437, -0.21688769753599124, -0.9591263103643206, -2.891339975308212, -1.182575204775773, -0.5982624449089109, -1.4912817380893781, -2.231063570041618, -1.0019544339648456, -1.973653446584858, -0.05470046052546185, -0.28135438314606376, -0.7920739494336426, -1.7800486434256928, -1.6191352833262576, -0.8727780232337564, -1.6856073012825323, -0.6310915985789909, -2.066705553844463, -1.5599547949601182, -1.4972710751335594, -1.264366070150757, -0.21541728131225246, -1.5950150618297436, -0.7365573967361232, -0.6829392133117698, -0.6052060380165516, -1.3217947847459408, -1.0391873053792104, -1.6412780857683535, -0.45315198967602544, -2.1093494715543226, -0.281404304399696, -0.18917122245716833, -1.613886305460166, -0.6346212175554755, -0.7736003147037245, -2.807219062759267, -0.7870384311655986, -1.4723194804360744, -0.9455027501055413, -1.5219598968665309, -1.3559282290095922, -1.013115903327731, -0.20454965811725434, -1.6803519265830194, -3.1609928130575837, -1.7651599114871295, -1.0382024918524897, -2.843469203674387, -0.1597228364267974, -1.8790202315989961, -1.432546584041202, -1.2145584336176531, -2.2456730637494298, -1.4206801514851257, -0.07344835296798158, -0.9974900822884117, -0.7363019396794155, -1.7842683745430024, -1.7922866954638819, -1.328366858082284, -1.1177678442700336, -2.2075959214567487, -1.0441319148137134, -0.2960250621425484, -0.4614760986105805, -0.6798854697196339, -2.143520850063748, -2.275194887967558, -0.4797590462088217, -1.1712467092169228, -0.3902797623849048, -0.13641969592206438, -2.657260678898354, -0.8808138550573743, -1.457047403732227, -2.868412481790094, -1.1418928501396468, -2.8078599225404535, -1.671581505698577, -2.595391318347138, -0.10091695141327306, -2.0683485368068553, -0.9251924984229715, -1.6291714404359126, -1.7832005295320692, -0.49122970991247705, -1.6550593115551548, -1.9106389431328892, -1.5926719675753493, -0.6807337622215368, -0.9799627472961083, -1.76275611793268, -2.364544157077689, -1.0503257548195455, -0.3621680803982692, -0.4648713213356296, -1.7111430013517341, -0.38888229276121644, -0.3853764875354423, -2.1423465480718504, -3.1271932426580236, -2.5612910045925075, -0.4449460985288781, -0.2585283222306417, -0.847715980101345, -1.2612084282143687, -2.3571858314233998, -3.0581892550261567, -1.3209414915724285, -1.8015008769070917, -0.3282764925926509, -1.4026747710103045, -1.7001292601275062, -0.963045604767678, -1.4969976618208491, -1.3813573468654756, -1.7159226164320907, -1.345698799421131, -1.165125371386293, -1.510855465508173, -0.025298381624147548, -2.3612013643133656, -1.0019285480205125, -2.6730928012820003, -1.495181450892849, -0.8524509023415512, -0.533756837627765, -1.8051559148437928, -1.5835951465598495, -0.25063047422018436, -0.8926579734786475, -0.7281542496058104, -1.1082112055447133, -0.322894789527274, -1.0360807074636131, -2.502770285302646, -0.11804972336235486, -1.9559814293205893, -0.8638668911655956, -1.7088927687060362, -2.052322298778821, -1.5995384898556264, -0.2665537932903954, -0.5389885169395794, -0.3098183847043404, -1.6034244509948086, -2.267035601099129, -0.6537898625524223, -0.9582463886959349, -1.478817690533126, -0.6752291633756351, -1.5137270939289755, -1.435696894561215, -1.9046916190708147, -0.49409443940628084, -1.7390289023993915, -1.6850034521837025, -0.6782576040510058, -2.4409671386617195, -1.8294576705262477, -1.5928920651119176, -0.8480033452178326, -1.3290153694856937, -0.7099052376488164, -2.967140022713515, -1.4741159223896263, -1.6369044360666214, -2.707321025524117, -2.1512594346796123, -0.14108401913880442, -1.421702418308136, -0.13602754435363051, -1.382870499738198, -1.483309480973615, -0.7226879105079964, -1.6623506473336276, -1.192775020375257, -0.3515781880969172, -1.5270351202581112, -0.7713366828720525, -1.4352268358145894, -1.808134190555793, -1.4608046169270206, -0.571254461261546, -2.2561298469293494, -0.1626953626090285, -0.6873436033967684, -2.4885008015629255, -3.3294480494744625, -1.1964548338579228, -1.2367558579068807, -0.39757858038096894, -1.8625833278243942, -2.1575953422045924, -0.9364375542506955, -0.29761873680025785, -0.5801366306096654, -0.8289966493151577, -1.1217731039390504, -0.7666966231787604, -3.4670669227861346, -1.060658198028272, -0.48941525532344654, -1.4049454446902883, -1.0553552554772132, -1.4322904478182243, -0.39312654905756195, -0.3666132622917949, -0.6192151050411385, -1.8233551510052544, -2.5544637328875925, -1.1529738244165342, -1.182417177779624, -1.0470110495399485, -0.45577739839045506, -1.9177458308647641, -1.7873106934211496, -1.5731407479729818, -0.8751302334987094, -1.8470496258858073, -1.248182096780424, -2.004472469724034, -0.8277947580678777, -0.6030112163525863, -0.8928328983023536, -1.531451239178117, -0.1839827001039832, -1.1288601825734323, -0.2656021571305004, -0.6724838038709382, -2.1178790122765827, -1.1190735435421306, -1.2382327450717685, -0.46902457971652245, -3.3395530777036058, -1.8575060969379562, -1.7582538988528897, -2.9230391243365252, -1.144346391943734, -0.5803959280116024, -1.3100156090782, -0.7571452993571366, -1.6100748799687838, -0.5756226158594131, -0.9323965005034538, -1.327000391847085, -2.1730299589972546, -3.0275145173027984, -0.10576523931808934, -1.552320539490426, -1.7595785048099173, -0.7386430258256138, -0.7510967862060163, -2.6699706374541563, -1.5719884993510072, -1.0338947333688844, -1.600548258255285, -1.1003415356103803, -1.2593638045023134, -0.005306088232624684, -0.976384544950247, -1.3613342259588652, -0.26346645842571037, -0.4282507974190479, -1.8122316323234136, -0.35933571377056994, -0.4748089753914124, -1.76484227925683, -2.333631784535549, -0.663542869373854, -2.370587520988301, -2.715849883093938, -0.14004897479877643, -1.8361084422329228, -1.7768814198723366, -1.1218348638141584, -0.43705121747396714, -1.8401423778878443, -2.0015449719493423, -0.5445869972481452, -1.3908720587131311, -0.791295180304262, -1.4008981864826173, -2.0733216136446977, -1.7312822327706536, -0.8082747524542948, -1.9544502747705113, -0.7245231070091418, -0.7178776651290367, -1.046398448214998, -0.7128243127345708, -0.10169401863579752, -3.0888107838426295, -0.870790690255047, -0.4244483043138697, -2.989228652753273, -0.8217646625050969, -1.6599424114735466, -0.683091987005408, -1.567947899425731, -2.4985264700233096, -0.16073454405621423, -1.577683080322895, -1.2090320372219123, -3.42692085667908, -3.4057461709913404, -0.5423234311439853], \"z\": [-3.4395740803902997, 2.7245895904885993, 1.3480499491190816, -2.484292362581148, -1.4240070819821375, -0.1575391234644723, -1.7449766156888238, 0.942984851703331, 1.3655206253069014, 2.6595914119072486, 3.508992364275473, -3.5541060804905547, 1.7428310693623548, 0.4613169716602661, 1.2836293872896078, 0.4931614882023432, -4.01229521221042, -1.5496896286641282, -4.035200507396367, -1.1863100206841204, 3.263895662909597, -1.0224850331497888, 2.7607155845363254, 3.7696350744036105, 0.38328233352355223, 4.243793502675547, 0.47375601926856614, 1.4358510662271842, -2.7221223171691125, -2.3796635570257525, 1.2893736908143554, 2.7925131970363317, 1.5953372759931126, -4.136033254374992, 3.412771502248807, 1.7632564976224332, 1.750982404602727, 3.438450505311467, 2.2017812476945267, 3.0134856049527423, 0.6398356785485948, 2.976184529523679, -3.8679547871229927, 2.9460640049904887, 1.5281721217940731, -0.786834478065348, -2.2455200585481014, -3.6004200011904053, -0.782514944757768, -0.11780437829853518, -2.7040072536000803, 3.4870481675280978, 2.8734384594377618, -2.2887553671039624, 4.079273313676047, -3.7424699170691023, -3.714221183162644, 2.7887380553144343, 1.4520439481119078, -0.5632544984465642, 3.647947148762932, -2.067798421874673, -1.6055625373500653, -1.450279150179841, 0.7268328994789073, 0.689761265803198, -3.598872819518267, 3.176666180296836, -0.7588583413183438, 1.9869197558562925, 1.2837543331955352, -1.7160134015312623, -0.13973439398007503, 3.427879939027247, 2.152259129566607, -2.933876397633952, 2.352126096423439, -3.7445531746617804, 3.9322552699694393, 3.0598615847795774, 1.551700155082366, -0.8758669336397569, -2.0549858203213724, 0.6384780537421131, 4.082011820272485, -3.5296362313433303, -0.4006886259234439, -1.323754254528624, -0.0686172592750447, -2.78840273275699, 3.7876464555172484, -3.9948197567460375, 3.4332206894391017, 2.209492014923037, -3.2335035207013476, -4.237570394871795, -2.5771386242601526, 0.6887745893388395, 3.0635992450793728, -2.2968888413727075, -0.14525819478370927, 4.249415829326275, 3.5775539119725748, -2.777754997728266, 1.521496773558317, -4.250998294515096, -4.166292472376218, -3.1388283782116497, -2.714306239007815, 0.9594373883912555, 0.5201356056230733, 2.0946500118155456, 1.7793271628699205, 3.084265115676411, -3.767316752365702, 0.30152399275676256, -1.5032354858713015, -3.6788884029536124, -0.9500627232151757, 0.3481562003329701, 3.0222769387988935, 3.5411329028545353, -0.7151042585617122, 1.054826804698057, -0.22582399189613422, -0.3950613743545599, -3.1942321646541587, 3.521704642121774, -3.916009585780243, -3.0787219717125316, 1.3033441117023026, 1.981109281452051, -3.4459619381237276, -0.6600397148226635, -3.736533345562937, -2.953896669923731, 3.559405085499108, -0.42928976890507675, 1.8215160265975605, 3.921674113077013, -4.18778699627519, 0.9916457188801555, -1.5400246193394667, -0.3025934805099144, 0.05668236122969539, -2.717193564013076, 3.321649435822712, -1.2595762171188944, 2.4662878967609094, -3.23460839115661, 1.0362727437794756, 0.367785374139606, -1.345146354285959, -2.8085097442662112, -0.9814201283955946, 0.2830805386883597, 0.2631395769791256, 1.8139575074560153, 2.2900799313297453, -4.172925901240396, 2.332509719072113, 1.6448438367027425, 2.085436530784434, 3.4018732944636927, 2.7541326070296854, 0.03856254598522835, 2.6416497857013885, 1.8676044964420893, -1.117204492620195, -3.277771383753063, -0.7237135923635103, -2.180356736832857, -0.464304108117203, 1.7173960658150795, -3.709652157327633, 2.649962429468573, 4.0582493069473715, 3.53113594044731, 2.90758206041542, 1.5639591319489172, 2.380534625206357, -2.3278881671521248, -1.674915517931288, 1.921252824656488, 4.244871583351027, -3.7419915141891553, 3.0190021462053362, 3.175176225616279, -3.6234702575825426, -1.8835529443493626, -2.403717302655775, 1.672699272853304, 0.5423029122967709, -3.976898278462299, 1.0668899473261817, 3.701948919029986, 2.7538822327288672, 4.247851649172795, -3.443427677818921, -2.4530555481517817, 2.617933800286095, 0.116956070469592, -0.793808173368951, -0.5957479459642787, 0.10465999746760968, 0.8771992508879638, 1.0446341132182848, -0.9054855573715477, -1.5832778087125128, 1.6185650327260133, 1.400245555684804, 0.8264106747149906, -2.0069369753616986, 3.8138015578129894, -1.5805938007989324, 2.984579194593204, -2.1120733128934663, 3.4820955295510796, -3.6104062060119224, 0.01432556871291979, -3.3824262209937945, -0.9376594037112103, -2.4103093989991367, 1.0935844815419369, 3.188511798954469, 1.9811054482348327, -4.241842234587552, 3.895412975654824, -2.7271147349312823, 0.25579803211424146, 3.887408024236989, -1.7865997152249955, 1.8286611880027177, 1.8540649624032177, -0.29112099126676316, 2.636440566600845, 1.9855250645134435, -3.98190855019614, -0.01004270388424544, -1.4021274332324767, 4.218716518989257, 0.7047737041835145, -3.7671520444865263, -3.7932933464293654, 3.849520644041383, -0.8207313590605483, 0.06032547178085412, -2.4121732673328116, 0.41154018013057314, -1.1011718205271288, 0.9417081653242683, 1.0024553452458678, 1.8441038449907845, -0.17836419343778243, 1.4813190832093701, -1.1498437730250726, -0.9425524703780059, 1.02912015420622, -2.8098760678325663, 1.3510251874497046, -3.800578558864684, 2.722469473050521, -2.53119846355962, 1.495057864365248, 4.184492825408522, -3.4048402184498516, 1.4433695180815507, -1.0892909205172248, -2.896035341108991, -0.31464923661846766, -1.501643430687678, 2.7137409108711665, -4.186013973792229, -2.718856484379428, 2.771726026296358, -1.0575469104837798, 2.2230137645901484, -1.8555796563413853, -2.00611954586953, -4.107336888674432, 4.037378322001833, 2.843709384391361, -0.25659414080406817, 3.316537640649794, 4.328971694317938, -3.8458431329873712, 1.8942515071105452, -3.747230668169908, -3.252855611146284, 0.9343321265091964, -0.8069142290991449, 4.024764793311973, 3.3833977840834217, -0.06353537000360188, -2.2078449513238554, -3.890363748587739, -2.8809942337694117, -2.5554185341343056, 3.201994756923514, -2.8370907179348266, 2.8261161604550553, 1.6818316619585385, 2.929634976175417, 3.6689188781540096, -3.5263314690601915, 0.9044728774256221, -2.470052419297403, 3.3728450031891795, 1.0344969516334634, 4.022351114904482, -2.5506153965143805, -3.8420572940268385, 2.3049482641985373, -0.7677627245567744, 1.2608714785333364, 4.180758641599238, 2.064119860281682, -2.9707695878069362, 2.200376674948597, -0.18716338647921482, 2.250047568524364, 1.8771763362290823, -3.2021248629320453, -0.47199702514698183, -1.0126398607717495, 2.410326134407608, -3.8197191654559526, -1.212186154364503, 4.020470571453729, 3.7508105095711537, -2.0820789991445015, -3.363660062605562, -1.6744358454110335, 2.2852097389078185, 2.334334781235335, 2.7197874157891127, 2.852808867619226, -0.10660675067449876, -1.1034258942290034, 2.9178599487853196, -2.326728122347693, 1.4195213341943589, -4.07898375780548, 0.23295730411402626, -1.4401985136530104, 1.0970361098367043, -1.7224681240197746, 1.528950346629724, -2.3783068647411643, -3.430553515556487, 0.6702160665985444, -2.5091871565903996, 3.895531165453545, -3.0578738838832797, -2.1503239373565957, -3.63577082872352, -1.5582340557989278, 1.262871223945897, -1.3703799970342607, 0.244591510090717, 2.3392588867745348, 0.2778802651664254, -0.8735812752100109, 0.6680159076061392, 2.3984798099258064, 2.018305330722516, -1.9916267147394757, 1.118771360927557, -3.31463181340934, 2.415967634042673, 3.806977548517657, -2.3096062548594567, 1.529220147195561, -0.28976965492122897, -3.899853130898414, 3.5104938415781364, -4.025809533748136, -4.150576027933203, 1.9392218100441267, -2.299623921077583, -2.653647806754602, -0.9314302107167274, 0.1125371188787927, 3.0996044190222873, -3.3049392801087603, 0.6927359892978515, -0.20989515578612838, 0.9657846785492668, -1.5366209998495597, 0.6916300153599568, 2.118272957596929, 0.4448280204275017, 0.4189593315074438, 2.2960213324017413, -4.061983914195004, 2.9121188892857504, 3.428801585080156, 0.9904941160027221, -2.0395083706494166, 1.3977105758071389, -1.6178020509156448, -0.8613549816292787, -0.07946806795743999, 1.326752537718936, -2.2522607152437355, 2.0049096355039984, -2.192480426399284, 4.070996821935583, -1.9936929372924679, -1.3827813532240922, -2.5731523241907652, 2.5249826940004247, 3.760105615637797, 2.3012988141715143, -3.605084462317815, -3.4933262162153835, -1.3919775547977125, -0.4956639579772193, 3.593389862647909, 3.5017989754383905, -0.5788746802313707, 2.5589937726314345, -2.2687323453386994, -2.5595717178260737, -2.630309531281611, -1.804883688835074, -1.6561735943731475, -0.534547405862837, -0.9702132232241429, 0.4444885185069438, 4.109196516250557, 3.619138272405854, 0.45131023876607035, -0.6317496663629867, -2.6464449509432217, 1.0438367392912538, -0.3532940721718685, -2.3503985073353473, -1.8941743329303913, 4.217355304624646, 1.0020576103644903, -1.7471601262634664, 4.002120568717381, 1.7411448783210366, 3.7061094658138813, -3.3341537104503893, -0.10755352949184971, -4.097358920512976, 2.896398800385459, -1.0300898432584695, -1.0501692091327528, -4.077193027724339, 0.9644460564324069, 1.159784496843268, 1.367382952844518, 3.912207762525143, 0.21575211536814898, -0.9462468025913342, -2.0374300975189312, 1.6282966443149665, -1.49399594250339, 1.6799930729996362, 3.8207422399257043, -1.6721756737218763, 1.0741571751934549, -4.196499685001836, 1.412393894907158, -3.2942872448768723, 0.2494673425158105, 4.3377784165343565, 3.2487202566622058, 2.243601895775728, 1.8035575028246074, 3.0402051950244324, 0.4085204442882482, 2.176273798296849, 1.0350522302852578, -0.7285311491514972, 3.8693198596863025, -2.938389985118127, -2.9015747017216, 0.4209414087041399, -1.6087108556908594, 3.6755396432063225, -2.6163250229049946, -1.398821363097357, -1.7083338342582683, -3.6143134315581236, -2.8029233851233246, -4.151118836335982, 2.933138111711698, 2.9806313305654557, -1.0510644913415357, -0.41105356875121535, -3.5113575943384614, -2.347935515207045, -0.014405421453146161, 0.008719388674142792, -1.709879366198693, -3.0900986567216355, -2.572591269818741, 2.1315944045566715, 3.4398031819032804, 1.8780032559450444, 0.9167979922799869, 2.8129381090543264, 4.028677406868579, 1.9548162131613624, -3.032177096575489, 1.1077263608258958, -3.141119943282743, -2.9994599040312053, -2.3327064636602275, -3.8553668501034117, -1.182530707838224, -0.8053814043341792, -4.071961442131636, -0.26566674726222184, 1.3618096437765939, -1.284420225449988, 0.5755237895993597, 0.24835731537658123, -2.952244323383077, -3.800307324772234, -1.963164263763824, -1.6795156255635635, 3.9670104080065114, 1.0709419757667389, -3.5118127294988932, 3.591803864055872, -1.1747116372260225, 1.3055167775535743, -2.822980560055504, 4.25531619542599, 1.8149411089321514, -1.533264402400802, -4.140714980162716, 1.7681382540062032, 3.3091924428486195, 1.9809125266062741, -1.304454738228114, -2.7190388211810683, 3.1562424961703357, 4.101642179820188, 3.9462404545536947, -2.604839553744437, -1.0111108708661698, -2.2942200920751255, -1.6928620688376586, -3.493125029160003, 0.22332677321563832, 2.405828963541686, -0.6433230480159753, -3.2717811498079334, -3.097333886440178, 3.338783587017831, 2.9985116807814247, -0.3256636460280111, -0.8977633308674773, -2.3295685774896953, -1.4156039945113474, 3.8933320496977464, 2.079648599750209, -4.028090693379466, 2.529784418947333, -3.4351256049819363, 3.9776761641852003, 0.32256328146855484, -0.2455353482394571, 0.7160495086717082, -3.376721680903367, -2.6798842447746027, 0.23971420990065084, 2.823035772838236, 2.42674595285954, -1.5307110654794291, 1.3782650310208826, -0.11126115445366924, -3.586318814067428, 4.077124178843378, 3.7075485140112487, 3.647722745406595, 0.27668443732350045, -0.0980441455546881, 2.6413422947530307, 2.8328043389223954, 1.7767800536387188, 0.26491958469323773, -1.462534819744135, -2.8027447208077207, 0.6464181837625516, -2.657341934831715, -0.6683160307965812, -0.41554742186194105, 1.6657719018006665, 2.390230302075074, -3.3993203848109386, 1.0704436458848585, 4.327026449063914, -1.830165797567167, -1.2174673259786908, 0.40616237763584895, -3.393211386658459, 3.3996060806525605, -3.443403959953373, 1.1547179577777626, -3.7628763442466515, 2.1829073754745574, 2.6454949905643694, 1.3884718637514561, 1.8504241835089994, 0.13841712441924958, 1.3081060118215904, -2.453426850648283, -0.29922839418389247, -3.9515960714454126, -3.1307302986046763, 3.938415952766799, -0.8171020286892738, 0.6114999045897012, -1.2317901641265547, 3.62032956910748, 1.2196225737045951, -3.191859657011696, -3.9413527441158545, 2.625659900422888, -3.315325601374892, -3.3698280021393163, 0.5616466425769042, -1.3207610874506686, -2.3893547211517987, 1.7469803649313516, -0.3183238648560427, -2.078401618854661, 1.5067568004505159, 3.6662429277165423, -1.130375533873822, 2.796567504137095, 3.3845880009945057, 3.0184242686480074, 0.7661407263956201, 1.716591373007554, -2.263774167588834, -1.9646171214742258, 0.963136767302653, -0.17027971691677202, -2.809847588630393, 1.2335693798542913, -3.5037162882733757, -2.7753289824193983, 0.9176652350647476, 0.46448207558012466, -4.165378003893153, 4.288972609470332, 2.6618602412518895, 0.30303788944496457, -1.1643485063855192, 3.5003789070912994, -3.1033786330525897, 3.084604328507643, 3.2027332021867174, 3.0374740063828947, 2.803661123404786, 3.5729389746491975, -1.3236386225464538, -1.4304394562949887]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 1\", \"marker\": {\"color\": \"rgb(255, 127, 14)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 1\", \"scene\": \"scene\", \"showlegend\": true, \"text\": [\"666_l_1_m-0_1.42-1_0.04-2_0.58-3_0.4\", \"667_l_1_m-0_1.07-1_0.13-2_0.08-3_0.11\", \"668_l_1_m-0_0.1-1_0.1-2_0.09-3_0.58\", \"669_l_1_m-0_0.99-1_0.44-2_0.12-3_1.24\", \"670_l_1_m-0_0.45-1_0.08-2_0.78-3_0.1\", \"671_l_1_m-0_0.28-1_0.11-2_0.12-3_0.27\", \"672_l_1_c_0_1_2-0_0.43-1_0.28-2_0.33-3_0.41\", \"673_l_1_c_0_1_2-0_0.61-1_0.14-2_0.73-3_0.65\", \"674_l_1_c_0_1_2-0_1.35-1_0.86-2_0.19-3_0.14\", \"675_l_1_c_0_1_2-0_0.06-1_0.48-2_0.19-3_1.15\", \"676_l_1_c_0_1_2-0_0.6-1_0.32-2_0.04-3_0.35\", \"677_l_1_c_0_1_2-0_0.7-1_0.4-2_0.11-3_1.46\", \"678_l_1_c_0_1_2-0_0.48-1_0.42-2_0.47-3_0.31\", \"679_l_1_c_0_1_2-0_0.09-1_0.12-2_0.24-3_1.24\", \"680_l_1_c_0_1_2-0_0.45-1_0.1-2_0.27-3_0.88\", \"681_l_1_c_0_1_2-0_0.01-1_0.09-2_0.01-3_1.53\", \"682_l_1_c_0_1_2-0_0.02-1_0.13-2_0.6-3_0.43\", \"683_l_1_c_0_1_2-0_0.37-1_0.43-2_0.01-3_1.33\", \"684_l_1_c_0_1_2-0_0.85-1_0.14-2_0.37-3_0.32\", \"685_l_1_c_0_1_2-0_0.13-1_0.81-2_0.22-3_0.28\", \"686_l_1_c_0_1_2-0_1.47-1_0.36-2_0.51-3_0.29\", \"687_l_1_c_0_1_2-0_0.73-1_1.04-2_0.17-3_1.62\", \"688_l_1_c_0_1_2-0_0.55-1_0.14-2_0.05-3_0.72\", \"689_l_1_c_0_1_2-0_0.17-1_0.19-2_0.07-3_0.08\", \"690_l_1_c_0_1_2-0_0.62-1_0.75-2_0.21-3_1.57\", \"691_l_1_c_0_1_2-0_1.1-1_0.23-2_0.17-3_0.56\", \"692_l_1_c_0_1_2-0_0.36-1_0.43-2_0.66-3_0.14\", \"693_l_1_c_0_1_2-0_0.31-1_0.04-2_0.05-3_0.44\", \"694_l_1_c_0_1_2-0_0.03-1_0.19-2_0.44-3_0.45\", \"695_l_1_c_0_1_2-0_0.33-1_0.03-2_0.11-3_0.86\", \"696_l_1_c_0_1_2-0_1.0-1_0.88-2_0.06-3_0.11\", \"697_l_1_c_0_1_2-0_0.04-1_0.22-2_0.36-3_0.84\", \"698_l_1_c_0_1_2-0_0.4-1_0.25-2_0.96-3_0.07\", \"699_l_1_c_0_1_2-0_0.04-1_0.01-2_0.26-3_0.31\", \"700_l_1_c_0_1_2-0_1.03-1_0.19-2_0.27-3_0.75\", \"701_l_1_c_0_1_2-0_0.24-1_0.15-2_0.41-3_1.58\", \"702_l_1_c_0_1_2-0_0.29-1_0.73-2_0.21-3_0.48\", \"703_l_1_c_0_1_2-0_0.65-1_0.99-2_0.64-3_1.27\", \"704_l_1_c_0_1_2-0_0.92-1_0.5-2_0.63-3_0.65\", \"705_l_1_c_0_1_2-0_0.37-1_0.37-2_0.14-3_0.71\", \"706_l_1_c_0_1_2-0_0.07-1_0.61-2_0.6-3_1.57\", \"707_l_1_c_0_1_2-0_0.02-1_0.81-2_0.44-3_1.63\", \"708_l_1_c_0_1_2-0_0.42-1_0.4-2_0.17-3_0.57\", \"709_l_1_c_0_1_2-0_0.05-1_0.47-2_0.03-3_0.71\", \"710_l_1_c_0_1_2-0_0.34-1_0.05-2_1.03-3_0.1\", \"711_l_1_c_0_1_3-0_0.31-1_0.36-2_0.38-3_0.28\", \"712_l_1_c_0_1_2-0_0.41-1_0.28-2_0.42-3_0.34\", \"713_l_1_c_0_1_3-0_0.22-1_0.0-2_0.46-3_0.21\", \"714_l_1_c_0_1_2-0_0.1-1_0.73-2_0.14-3_0.31\", \"715_l_1_c_0_1_3-0_0.08-1_0.15-2_1.46-3_0.02\", \"716_l_1_c_0_1_2-0_0.3-1_0.94-2_0.06-3_1.62\", \"717_l_1_c_0_1_3-0_0.21-1_0.0-2_0.93-3_0.06\", \"718_l_1_c_0_1_2-0_1.08-1_0.03-2_0.09-3_0.45\", \"719_l_1_c_0_1_3-0_0.18-1_0.92-2_1.72-3_0.29\", \"720_l_1_c_0_1_2-0_0.07-1_0.03-2_0.03-3_0.56\", \"721_l_1_c_0_1_3-0_0.42-1_0.81-2_1.23-3_0.18\", \"722_l_1_c_0_1_2-0_0.08-1_0.78-2_0.04-3_2.01\", \"723_l_1_c_0_1_3-0_0.64-1_0.25-2_0.52-3_0.12\", \"724_l_1_c_0_1_2-0_0.25-1_1.61-2_0.23-3_1.07\", \"725_l_1_c_0_1_3-0_0.28-1_0.42-2_0.63-3_0.19\", \"726_l_1_c_0_1_2-0_0.2-1_0.49-2_0.29-3_0.86\", \"727_l_1_c_0_1_3-0_0.15-1_1.58-2_0.77-3_0.47\", \"728_l_1_c_0_1_2-0_0.15-1_0.51-2_0.15-3_0.14\", \"729_l_1_c_0_1_3-0_1.1-1_0.03-2_0.87-3_0.14\", \"730_l_1_c_0_1_2-0_0.11-1_0.39-2_0.01-3_0.53\", \"731_l_1_c_0_1_3-0_0.19-1_0.78-2_1.61-3_0.07\", \"732_l_1_c_0_1_2-0_0.39-1_0.52-2_0.39-3_0.81\", \"733_l_1_c_0_1_3-0_0.37-1_0.18-2_1.78-3_0.3\", \"734_l_1_c_0_1_2-0_0.18-1_1.04-2_0.05-3_0.87\", \"735_l_1_c_0_1_3-0_0.03-1_0.47-2_1.25-3_0.23\", \"736_l_1_c_0_1_2-0_0.86-1_0.48-2_0.68-3_0.23\", \"737_l_1_c_0_1_3-0_1.23-1_0.66-2_1.32-3_0.05\", \"738_l_1_c_0_1_2-0_1.06-1_0.31-2_0.02-3_0.8\", \"739_l_1_c_0_1_3-0_0.09-1_0.08-2_0.05-3_0.21\", \"740_l_1_c_0_1_2-0_0.31-1_0.62-2_0.63-3_0.57\", \"741_l_1_c_0_1_3-0_0.54-1_0.86-2_0.71-3_0.39\", \"742_l_1_c_0_1_2-0_0.77-1_1.11-2_0.52-3_0.79\", \"743_l_1_c_0_1_3-0_1.73-1_0.33-2_0.26-3_0.35\", \"744_l_1_c_0_1_2-0_0.28-1_0.73-2_0.08-3_0.9\", \"745_l_1_c_0_1_3-0_0.33-1_0.46-2_0.9-3_0.01\", \"746_l_1_c_0_1_2-0_0.42-1_0.05-2_0.58-3_0.7\", \"747_l_1_c_0_1_3-0_0.05-1_1.24-2_1.46-3_0.1\", \"748_l_1_c_0_1_2-0_0.2-1_0.37-2_0.09-3_0.61\", \"749_l_1_c_0_1_3-0_0.02-1_0.93-2_0.71-3_0.01\", \"750_l_1_c_0_1_2-0_0.16-1_0.28-2_0.71-3_0.12\", \"751_l_1_c_0_1_3-0_0.17-1_0.61-2_1.7-3_0.65\", \"752_l_1_c_0_1_2-0_0.37-1_0.13-2_0.07-3_0.46\", \"753_l_1_c_0_1_3-0_0.41-1_1.05-2_0.49-3_0.37\", \"754_l_1_c_0_1_2-0_0.42-1_0.14-2_0.31-3_0.36\", \"755_l_1_c_0_1_3-0_0.47-1_0.2-2_0.85-3_0.23\", \"756_l_1_c_0_1_2-0_0.08-1_0.19-2_0.21-3_0.15\", \"757_l_1_c_0_1_3-0_0.18-1_0.68-2_0.13-3_0.28\", \"758_l_1_c_0_1_2-0_0.06-1_0.53-2_0.44-3_0.15\", \"759_l_1_c_0_1_3-0_0.5-1_0.18-2_1.22-3_0.01\", \"760_l_1_c_0_1_2-0_0.05-1_0.03-2_0.12-3_0.34\", \"761_l_1_c_0_1_3-0_0.18-1_0.43-2_1.69-3_0.4\", \"762_l_1_c_0_1_2-0_0.37-1_0.14-2_0.07-3_0.43\", \"763_l_1_c_0_1_3-0_0.06-1_0.28-2_0.84-3_0.27\", \"764_l_1_c_0_1_2-0_0.03-1_0.09-2_0.04-3_1.16\", \"765_l_1_c_0_1_3-0_0.24-1_0.65-2_0.36-3_0.27\", \"766_l_1_c_0_1_2-0_0.36-1_0.14-2_0.35-3_1.2\", \"767_l_1_c_0_1_3-0_0.02-1_0.36-2_0.95-3_0.25\", \"768_l_1_c_0_1_2-0_0.1-1_0.08-2_0.34-3_0.78\", \"769_l_1_c_0_1_3-0_0.53-1_0.32-2_1.77-3_0.28\", \"770_l_1_c_0_1_2-0_0.55-1_0.28-2_0.5-3_0.84\", \"771_l_1_c_0_1_3-0_0.1-1_0.03-2_0.74-3_0.04\", \"772_l_1_c_0_1_2-0_0.18-1_0.0-2_0.73-3_0.38\", \"773_l_1_c_0_1_3-0_0.09-1_0.59-2_0.5-3_0.13\", \"774_l_1_c_0_1_2-0_0.37-1_0.89-2_0.54-3_1.03\", \"775_l_1_c_0_1_3-0_0.29-1_0.01-2_1.27-3_0.22\", \"776_l_1_c_0_1_2-0_0.12-1_0.21-2_0.26-3_0.05\", \"777_l_1_c_0_1_3-0_0.07-1_0.44-2_1.03-3_0.46\", \"778_l_1_c_0_1_2-0_0.18-1_0.34-2_0.42-3_0.07\", \"779_l_1_c_0_1_3-0_0.85-1_0.35-2_0.29-3_0.33\", \"780_l_1_c_0_1_2-0_0.29-1_0.43-2_0.21-3_1.24\", \"781_l_1_c_0_1_3-0_0.84-1_0.15-2_0.73-3_0.09\", \"782_l_1_c_0_1_2-0_0.08-1_0.11-2_0.09-3_1.07\", \"783_l_1_c_0_1_3-0_0.59-1_0.51-2_0.24-3_0.15\", \"784_l_1_c_0_1_2-0_1.61-1_0.67-2_0.1-3_0.77\", \"785_l_1_c_0_1_3-0_0.88-1_0.43-2_0.14-3_0.27\", \"786_l_1_c_0_1_2-0_0.31-1_0.26-2_0.17-3_0.07\", \"787_l_1_c_0_1_3-0_1.39-1_0.51-2_0.31-3_0.31\", \"788_l_1_c_0_1_2-0_0.08-1_1.23-2_0.29-3_0.59\", \"789_l_1_c_0_1_3-0_0.58-1_0.11-2_0.54-3_0.03\", \"790_l_1_c_0_1_2-0_0.2-1_0.01-2_0.36-3_0.13\", \"791_l_1_c_0_1_3-0_0.47-1_0.22-2_0.95-3_0.01\", \"792_l_1_c_0_1_2-0_0.87-1_0.0-2_0.13-3_0.65\", \"793_l_1_c_0_1_3-0_0.39-1_0.17-2_1.03-3_0.08\", \"794_l_1_c_0_1_2-0_0.96-1_0.06-2_0.15-3_0.72\", \"795_l_1_c_0_1_3-0_0.18-1_0.01-2_0.29-3_0.2\", \"796_l_1_c_0_1_2-0_0.81-1_0.34-2_0.35-3_0.06\", \"797_l_1_c_0_1_3-0_0.07-1_0.32-2_0.43-3_0.35\", \"798_l_1_c_0_1_2-0_0.3-1_1.08-2_0.46-3_0.32\", \"799_l_1_c_0_1_3-0_0.12-1_0.12-2_1.17-3_0.33\", \"800_l_1_c_0_1_2-0_0.14-1_0.84-2_0.15-3_0.74\", \"801_l_1_c_0_1_3-0_0.7-1_0.21-2_0.9-3_0.5\", \"802_l_1_c_0_1_2-0_0.36-1_0.22-2_0.48-3_1.13\", \"803_l_1_c_0_1_3-0_0.35-1_0.28-2_0.4-3_0.12\", \"804_l_1_c_0_1_2-0_0.63-1_0.27-2_0.08-3_0.34\", \"805_l_1_c_0_1_3-0_0.43-1_0.53-2_1.43-3_0.52\", \"806_l_1_c_0_1_2-0_0.23-1_0.3-2_0.21-3_0.24\", \"807_l_1_c_0_1_3-0_0.33-1_0.93-2_0.25-3_0.51\", \"808_l_1_c_0_1_2-0_0.21-1_1.44-2_0.65-3_1.33\", \"809_l_1_c_0_1_3-0_0.83-1_0.64-2_0.92-3_0.06\", \"810_l_1_c_0_1_2-0_0.46-1_0.22-2_0.2-3_1.21\", \"811_l_1_c_0_1_3-0_0.83-1_0.15-2_0.21-3_0.01\", \"812_l_1_c_0_1_2-0_0.22-1_0.02-2_0.35-3_0.22\", \"813_l_1_c_0_1_3-0_0.42-1_0.47-2_1.47-3_0.2\", \"814_l_1_c_0_1_2-0_0.52-1_0.8-2_0.06-3_0.94\", \"815_l_1_c_0_1_3-0_0.66-1_0.52-2_1.92-3_0.36\", \"816_l_1_c_0_1_2-0_0.05-1_0.11-2_0.11-3_0.56\", \"817_l_1_c_0_1_3-0_0.51-1_0.21-2_0.62-3_0.26\", \"818_l_1_c_0_1_2-0_1.26-1_0.53-2_0.01-3_0.96\", \"819_l_1_c_0_1_3-0_0.19-1_0.09-2_0.2-3_0.48\", \"820_l_1_c_0_1_2-0_0.36-1_0.6-2_0.07-3_0.15\", \"821_l_1_c_0_1_3-0_0.3-1_0.02-2_0.79-3_0.89\", \"822_l_1_c_0_1_2-0_0.42-1_0.06-2_0.16-3_0.73\", \"823_l_1_c_0_1_3-0_0.19-1_0.49-2_0.69-3_0.11\", \"824_l_1_c_0_2_3-0_0.62-1_0.28-2_0.21-3_0.18\", \"825_l_1_c_0_1_2-0_0.35-1_0.27-2_0.15-3_0.27\", \"826_l_1_c_0_1_3-0_0.23-1_0.16-2_0.63-3_0.15\", \"827_l_1_c_0_2_3-0_0.25-1_0.14-2_0.18-3_0.58\", \"828_l_1_c_0_1_2-0_0.57-1_0.52-2_0.42-3_0.12\", \"829_l_1_c_0_1_3-0_0.1-1_0.27-2_1.12-3_0.1\", \"830_l_1_c_0_2_3-0_0.61-1_0.9-2_0.15-3_0.29\", \"831_l_1_c_0_1_2-0_0.61-1_0.04-2_0.36-3_0.22\", \"832_l_1_c_0_1_3-0_1.27-1_0.31-2_1.03-3_0.09\", \"833_l_1_c_0_2_3-0_0.76-1_0.43-2_0.01-3_0.29\", \"834_l_1_c_0_1_2-0_0.52-1_0.2-2_0.54-3_0.82\", \"835_l_1_c_0_1_3-0_0.36-1_0.45-2_0.61-3_0.3\", \"836_l_1_c_0_2_3-0_0.99-1_0.3-2_0.53-3_0.02\", \"837_l_1_c_0_1_2-0_0.59-1_0.24-2_0.57-3_0.18\", \"838_l_1_c_0_1_3-0_0.85-1_0.53-2_0.3-3_0.26\", \"839_l_1_c_0_2_3-0_0.9-1_0.05-2_0.13-3_0.88\", \"840_l_1_c_0_1_2-0_0.14-1_0.16-2_0.08-3_0.68\", \"841_l_1_c_0_1_3-0_0.31-1_0.24-2_1.52-3_0.35\", \"842_l_1_c_0_2_3-0_0.4-1_1.41-2_0.72-3_1.07\", \"843_l_1_c_0_1_2-0_0.96-1_0.84-2_0.1-3_0.87\", \"844_l_1_c_0_1_3-0_0.88-1_0.2-2_1.28-3_0.15\", \"845_l_1_c_0_2_3-0_0.43-1_1.87-2_0.16-3_0.17\", \"846_l_1_c_0_1_2-0_0.22-1_0.19-2_0.75-3_0.17\", \"847_l_1_c_0_1_3-0_1.21-1_0.1-2_0.32-3_0.01\", \"848_l_1_c_0_2_3-0_0.26-1_0.66-2_0.73-3_0.23\", \"849_l_1_c_0_1_2-0_0.17-1_0.31-2_0.13-3_0.58\", \"850_l_1_c_0_1_3-0_0.58-1_0.15-2_0.31-3_0.26\", \"851_l_1_c_0_2_3-0_0.59-1_0.13-2_0.36-3_0.03\", \"852_l_1_c_0_1_2-0_1.06-1_0.07-2_0.94-3_0.2\", \"853_l_1_c_0_1_3-0_1.51-1_0.13-2_0.99-3_0.51\", \"854_l_1_c_0_2_3-0_0.38-1_1.16-2_0.56-3_0.29\", \"855_l_1_c_0_1_2-0_0.53-1_0.05-2_0.38-3_0.8\", \"856_l_1_c_0_1_3-0_0.38-1_0.27-2_1.44-3_0.03\", \"857_l_1_c_0_2_3-0_0.11-1_0.65-2_0.2-3_0.47\", \"858_l_1_c_0_1_2-0_0.47-1_0.97-2_0.49-3_0.53\", \"859_l_1_c_0_1_3-0_0.89-1_0.57-2_0.07-3_0.05\", \"860_l_1_c_0_2_3-0_0.05-1_0.16-2_0.55-3_0.21\", \"861_l_1_c_0_1_2-0_0.38-1_1.12-2_0.13-3_1.38\", \"862_l_1_c_0_1_3-0_0.57-1_0.05-2_0.32-3_0.05\", \"863_l_1_c_0_2_3-0_0.07-1_0.65-2_0.07-3_0.8\", \"864_l_1_c_0_1_2-0_0.04-1_0.28-2_0.06-3_0.15\", \"865_l_1_c_0_1_3-0_0.92-1_0.1-2_1.11-3_0.38\", \"866_l_1_c_0_2_3-0_0.43-1_0.72-2_1.03-3_0.27\", \"867_l_1_c_0_1_2-0_0.06-1_0.73-2_0.06-3_0.66\", \"868_l_1_c_0_1_3-0_0.12-1_0.82-2_0.63-3_0.31\", \"869_l_1_c_0_2_3-0_0.36-1_1.04-2_0.37-3_0.66\", \"870_l_1_c_0-0_0.03-1_0.33-2_0.46-3_0.62\", \"871_l_1_c_0-0_0.09-1_0.63-2_1.16-3_0.45\", \"872_l_1_c_0-0_0.37-1_0.57-2_0.17-3_1.43\", \"873_l_1_c_0-0_1.19-1_0.53-2_0.32-3_0.46\", \"874_l_1_c_0-0_0.76-1_0.53-2_0.03-3_0.09\", \"875_l_1_c_0-0_0.29-1_1.33-2_0.1-3_0.3\", \"876_l_1_c_0-0_0.1-1_0.95-2_0.14-3_0.62\", \"877_l_1_c_0-0_0.36-1_0.37-2_0.97-3_0.06\", \"878_l_1_c_0-0_0.07-1_0.33-2_0.31-3_0.03\", \"879_l_1_c_0-0_0.9-1_0.6-2_0.03-3_1.68\", \"880_l_1_c_0-0_0.18-1_0.95-2_0.59-3_0.52\", \"881_l_1_c_0-0_0.05-1_0.57-2_1.29-3_0.95\", \"882_l_1_c_0-0_0.82-1_0.43-2_1.01-3_0.78\", \"883_l_1_c_0-0_0.42-1_1.29-2_0.89-3_0.32\", \"884_l_1_c_0-0_2.0-1_1.0-2_0.85-3_0.69\", \"885_l_1_c_0-0_1.55-1_0.63-2_0.76-3_0.87\", \"886_l_1_c_0-0_0.31-1_0.91-2_0.47-3_0.23\", \"887_l_1_c_0-0_0.13-1_0.5-2_1.0-3_0.3\", \"888_l_1_c_0-0_0.03-1_0.56-2_1.39-3_1.5\", \"889_l_1_r-0_1.79-1_1.04-2_2.31-3_1.12\", \"890_l_1_r-0_0.48-1_0.22-2_1.16-3_0.42\", \"891_l_1_r-0_0.52-1_1.45-2_0.4-3_1.57\", \"892_l_1_r-0_1.43-1_0.9-2_0.12-3_0.96\", \"893_l_1_r-0_1.01-1_0.45-2_0.75-3_0.54\", \"894_l_1_r-0_0.11-1_1.13-2_0.63-3_1.41\", \"895_l_1_r-0_0.15-1_1.15-2_0.8-3_0.62\", \"896_l_1_r-0_0.48-1_0.01-2_0.18-3_0.65\", \"897_l_1_r-0_0.35-1_0.6-2_0.27-3_0.81\", \"898_l_1_r-0_1.97-1_0.74-2_0.72-3_0.92\", \"899_l_1_r-0_0.14-1_0.89-2_0.12-3_0.34\", \"900_l_1_r-0_0.13-1_0.88-2_0.32-3_0.81\", \"901_l_1_r-0_0.64-1_2.15-2_0.13-3_1.61\", \"902_l_1_r-0_0.63-1_0.27-2_0.33-3_0.48\", \"903_l_1_r-0_0.19-1_0.54-2_0.64-3_0.69\", \"904_l_1_r-0_0.33-1_0.01-2_0.16-3_0.36\", \"905_l_1_r-0_1.22-1_0.76-2_0.4-3_0.59\", \"906_l_1_r-0_1.22-1_0.04-2_1.8-3_0.57\", \"907_l_1_r-0_0.25-1_0.66-2_1.52-3_0.47\", \"908_l_1_r-0_0.21-1_0.34-2_0.01-3_1.16\", \"909_l_1_r-0_0.75-1_2.12-2_0.53-3_1.03\", \"910_l_1_r-0_1.44-1_0.64-2_1.38-3_0.05\", \"911_l_1_r-0_0.47-1_1.33-2_0.07-3_1.21\", \"912_l_1_r-0_0.06-1_0.54-2_1.27-3_0.12\", \"913_l_1_r-0_2.01-1_0.78-2_1.94-3_0.36\", \"914_l_1_r-0_0.22-1_0.38-2_1.33-3_0.27\", \"915_l_1_r-0_2.23-1_0.92-2_0.71-3_0.12\", \"916_l_1_r-0_0.08-1_1.36-2_0.44-3_0.55\", \"917_l_1_r-0_0.09-1_0.15-2_0.19-3_0.45\", \"918_l_1_r-0_2.43-1_0.47-2_1.1-3_0.35\", \"919_l_1_r-0_1.02-1_0.45-2_0.72-3_1.48\", \"920_l_1_r-0_0.73-1_0.84-2_1.02-3_0.29\", \"921_l_1_r-0_0.08-1_1.02-2_0.62-3_0.65\", \"922_l_1_r-0_0.74-1_0.64-2_0.12-3_0.12\", \"923_l_1_r-0_1.13-1_0.11-2_0.8-3_0.32\", \"924_l_1_r-0_0.25-1_1.33-2_0.02-3_0.23\", \"925_l_1_r-0_1.11-1_0.04-2_1.78-3_0.77\", \"926_l_1_r-0_1.35-1_0.1-2_0.48-3_1.26\", \"927_l_1_r-0_0.36-1_0.17-2_0.89-3_2.13\", \"928_l_1_r-0_0.96-1_0.31-2_1.53-3_0.81\", \"929_l_1_r-0_0.3-1_0.37-2_1.39-3_0.23\", \"930_l_1_r-0_0.45-1_0.26-2_0.87-3_0.03\", \"931_l_1_r-0_0.16-1_0.18-2_0.87-3_0.51\", \"932_l_1_r-0_0.21-1_0.21-2_2.18-3_0.53\", \"933_l_1_r-0_0.43-1_2.25-2_1.26-3_0.15\", \"934_l_1_r-0_1.5-1_0.25-2_0.97-3_0.37\", \"935_l_1_r-0_0.47-1_2.16-2_0.63-3_0.82\", \"936_l_1_r-0_0.93-1_0.16-2_0.44-3_1.47\", \"937_l_1_r-0_0.05-1_1.74-2_0.93-3_0.87\", \"938_l_1_r-0_0.29-1_1.08-2_0.0-3_0.99\", \"939_l_1_r-0_0.01-1_0.77-2_0.21-3_0.61\", \"940_l_1_r-0_0.45-1_0.28-2_0.63-3_0.67\", \"941_l_1_r-0_0.41-1_0.33-2_0.37-3_1.01\", \"942_l_1_r-0_0.4-1_0.93-2_0.7-3_1.77\", \"943_l_1_r-0_2.44-1_0.81-2_0.38-3_0.46\", \"944_l_1_r-0_1.82-1_0.75-2_1.24-3_0.04\", \"945_l_1_r-0_0.52-1_0.26-2_0.21-3_0.69\", \"946_l_1_r-0_0.13-1_0.29-2_0.53-3_0.75\", \"947_l_1_r-0_1.02-1_2.23-2_1.29-3_0.15\", \"948_l_1_r-0_0.07-1_1.36-2_0.36-3_1.46\", \"949_l_1_r-0_2.1-1_1.46-2_1.33-3_0.9\", \"950_l_1_r-0_0.08-1_0.68-2_1.98-3_0.33\", \"951_l_1_r-0_0.5-1_0.06-2_1.56-3_0.08\", \"952_l_1_r-0_0.35-1_1.08-2_0.1-3_0.54\", \"953_l_1_r-0_0.35-1_1.03-2_0.61-3_0.27\", \"954_l_1_r-0_1.67-1_1.02-2_0.04-3_0.6\", \"955_l_1_r-0_0.31-1_0.41-2_0.23-3_0.29\", \"956_l_1_r-0_1.41-1_1.27-2_0.98-3_0.6\", \"957_l_1_r-0_0.02-1_0.5-2_0.99-3_0.71\", \"958_l_1_r-0_0.19-1_0.61-2_0.69-3_0.58\", \"959_l_1_r-0_0.32-1_0.88-2_0.57-3_0.76\", \"960_l_1_r-0_0.67-1_0.98-2_0.26-3_0.41\", \"961_l_1_r-0_0.77-1_0.91-2_0.08-3_1.57\", \"962_l_1_r-0_2.06-1_0.03-2_0.25-3_0.96\", \"963_l_1_r-0_0.12-1_0.95-2_1.74-3_0.99\", \"964_l_1_r-0_1.31-1_0.68-2_1.61-3_1.27\", \"965_l_1_r-0_1.59-1_0.81-2_0.98-3_0.51\", \"966_l_1_r-0_0.07-1_1.87-2_1.96-3_0.74\", \"967_l_1_r-0_0.83-1_0.18-2_1.52-3_0.83\", \"968_l_1_r-0_0.75-1_0.08-2_0.76-3_0.21\", \"969_l_1_r-0_0.82-1_0.65-2_0.11-3_1.92\", \"970_l_1_r-0_0.67-1_0.22-2_1.48-3_0.74\", \"971_l_1_r-0_1.31-1_0.79-2_2.08-3_0.71\", \"972_l_1_r-0_0.83-1_1.5-2_0.69-3_0.76\", \"973_l_1_r-0_0.85-1_0.68-2_0.5-3_0.88\", \"974_l_1_r-0_0.72-1_1.06-2_0.31-3_1.36\", \"975_l_1_r-0_0.62-1_0.83-2_1.62-3_0.53\", \"976_l_1_r-0_0.01-1_0.75-2_0.23-3_0.48\", \"977_l_1_r-0_0.96-1_0.08-2_0.27-3_0.35\", \"978_l_1_r-0_0.94-1_0.44-2_0.77-3_0.76\", \"979_l_1_r-0_1.19-1_1.42-2_0.96-3_0.43\", \"980_l_1_r-0_0.05-1_1.82-2_0.04-3_0.09\", \"981_l_1_r-0_0.87-1_0.81-2_1.63-3_0.1\", \"982_l_1_r-0_0.44-1_0.69-2_0.02-3_0.32\", \"983_l_1_r-0_1.11-1_0.62-2_0.31-3_0.41\", \"984_l_1_r-0_1.52-1_0.22-2_0.9-3_1.07\", \"985_l_1_r-0_0.24-1_0.12-2_1.07-3_0.32\", \"986_l_1_r-0_0.38-1_0.56-2_1.33-3_0.41\", \"987_l_1_r-0_1.43-1_2.07-2_1.09-3_0.59\", \"988_l_1_r-0_0.41-1_0.8-2_2.08-3_1.3\", \"989_l_1_r-0_0.25-1_0.46-2_1.33-3_1.29\", \"990_l_1_r-0_0.54-1_1.09-2_0.05-3_0.26\", \"991_l_1_r-0_0.53-1_0.53-2_1.18-3_2.26\", \"992_l_1_r-0_0.03-1_1.39-2_0.7-3_0.58\", \"993_l_1_r-0_0.01-1_1.3-2_0.54-3_0.56\", \"994_l_1_r-0_0.85-1_0.24-2_0.77-3_1.77\", \"995_l_1_r-0_1.54-1_0.04-2_1.13-3_0.78\", \"996_l_1_r-0_0.97-1_0.61-2_0.25-3_0.65\", \"997_l_1_r-0_0.53-1_0.17-2_0.56-3_0.62\", \"998_l_1_r-0_1.47-1_0.14-2_0.31-3_1.22\", \"999_l_1_r-0_0.33-1_0.23-2_0.31-3_0.99\", \"1000_l_1_r-0_0.91-1_0.63-2_1.11-3_0.75\", \"1001_l_1_r-0_0.09-1_0.46-2_0.79-3_0.02\", \"1002_l_1_r-0_0.14-1_0.82-2_0.0-3_0.53\", \"1003_l_1_r-0_1.1-1_0.37-2_0.35-3_0.02\", \"1004_l_1_r-0_0.66-1_0.24-2_0.81-3_1.06\", \"1005_l_1_r-0_0.84-1_0.74-2_0.37-3_0.42\", \"1006_l_1_r-0_0.59-1_1.11-2_0.54-3_1.07\", \"1007_l_1_r-0_1.36-1_1.25-2_0.15-3_0.01\", \"1008_l_1_r-0_0.56-1_0.01-2_0.52-3_0.14\", \"1009_l_1_r-0_0.09-1_0.78-2_1.1-3_0.8\", \"1010_l_1_r-0_1.51-1_1.16-2_0.52-3_0.29\", \"1011_l_1_r-0_0.55-1_1.54-2_0.32-3_0.2\", \"1012_l_1_r-0_1.27-1_0.69-2_0.54-3_0.3\", \"1013_l_1_r-0_1.35-1_0.52-2_0.65-3_1.54\", \"1014_l_1_r-0_0.87-1_0.97-2_0.72-3_0.77\", \"1015_l_1_r-0_2.2-1_0.59-2_0.64-3_0.01\", \"1016_l_1_r-0_0.16-1_0.16-2_0.23-3_0.72\", \"1017_l_1_r-0_0.4-1_0.71-2_0.15-3_0.08\", \"1018_l_1_r-0_0.02-1_1.12-2_0.18-3_0.63\", \"1019_l_1_r-0_0.12-1_0.89-2_0.64-3_0.61\", \"1020_l_1_r-0_1.03-1_0.18-2_0.25-3_0.11\", \"1021_l_1_r-0_0.13-1_0.73-2_0.24-3_0.35\", \"1022_l_1_r-0_0.42-1_0.61-2_0.29-3_0.48\", \"1023_l_1_r-0_0.47-1_1.26-2_0.68-3_0.44\", \"1024_l_1_r-0_1.42-1_0.41-2_1.4-3_0.04\", \"1025_l_1_r-0_2.4-1_0.97-2_1.43-3_1.07\", \"1026_l_1_r-0_0.92-1_0.26-2_0.52-3_0.77\", \"1027_l_1_r-0_1.67-1_0.77-2_0.51-3_1.28\", \"1028_l_1_r-0_1.22-1_0.33-2_0.1-3_0.46\", \"1029_l_1_r-0_0.62-1_0.3-2_0.33-3_0.58\", \"1030_l_1_r-0_1.07-1_0.67-2_1.03-3_0.74\", \"1031_l_1_r-0_0.45-1_0.93-2_1.29-3_1.13\", \"1032_l_1_r-0_0.27-1_0.19-2_0.87-3_1.24\", \"1033_l_1_r-0_0.97-1_0.51-2_0.08-3_0.54\", \"1034_l_1_r-0_1.2-1_0.23-2_0.71-3_0.69\", \"1035_l_1_r-0_1.97-1_1.42-2_0.96-3_0.34\", \"1036_l_1_r-0_0.37-1_1.93-2_1.01-3_1.29\", \"1037_l_1_r-0_0.12-1_1.07-2_0.06-3_0.68\", \"1038_l_1_r-0_1.24-1_1.07-2_1.54-3_0.04\", \"1039_l_1_r-0_0.49-1_0.46-2_0.42-3_1.48\", \"1040_l_1_r-0_0.24-1_0.89-2_0.73-3_0.42\", \"1041_l_1_r-0_1.39-1_1.99-2_0.7-3_1.71\", \"1042_l_1_r-0_0.59-1_0.68-2_0.48-3_0.75\", \"1043_l_1_r-0_0.24-1_0.39-2_0.52-3_1.52\", \"1044_l_1_r-0_0.89-1_0.12-2_0.84-3_0.2\", \"1045_l_1_r-0_0.13-1_0.26-2_1.11-3_0.51\", \"1046_l_1_r-0_0.5-1_0.29-2_0.14-3_1.05\", \"1047_l_1_r-0_0.35-1_0.93-2_0.12-3_0.03\", \"1048_l_1_r-0_1.73-1_0.15-2_1.15-3_1.1\", \"1049_l_1_r-0_2.03-1_0.44-2_1.14-3_0.14\", \"1050_l_1_r-0_0.4-1_1.21-2_0.99-3_0.83\", \"1051_l_1_r-0_0.38-1_0.01-2_0.12-3_0.49\", \"1052_l_1_r-0_0.22-1_0.94-2_0.48-3_0.62\", \"1053_l_1_r-0_0.37-1_0.02-2_1.04-3_0.79\", \"1054_l_1_r-0_0.15-1_1.31-2_1.87-3_0.79\", \"1055_l_1_r-0_0.56-1_0.62-2_0.55-3_0.17\", \"1056_l_1_r-0_1.2-1_0.74-2_0.06-3_0.02\", \"1057_l_1_r-0_0.05-1_0.58-2_1.17-3_0.79\", \"1058_l_1_r-0_0.6-1_1.48-2_1.64-3_0.89\", \"1059_l_1_r-0_1.08-1_0.19-2_1.27-3_0.42\", \"1060_l_1_r-0_1.03-1_0.25-2_0.69-3_0.8\", \"1061_l_1_r-0_0.07-1_0.97-2_0.35-3_0.07\", \"1062_l_1_r-0_0.93-1_0.53-2_0.74-3_0.33\", \"1063_l_1_r-0_0.49-1_0.4-2_0.26-3_0.63\", \"1064_l_1_r-0_0.72-1_1.16-2_0.56-3_0.77\", \"1065_l_1_r-0_0.88-1_0.19-2_0.39-3_0.98\", \"1066_l_1_r-0_2.57-1_0.14-2_1.09-3_0.25\", \"1067_l_1_r-0_0.63-1_0.47-2_1.06-3_0.19\", \"1068_l_1_r-0_0.37-1_0.32-2_0.01-3_1.13\", \"1069_l_1_r-0_0.09-1_1.22-2_1.22-3_0.76\", \"1070_l_1_r-0_0.35-1_1.21-2_1.48-3_0.55\", \"1071_l_1_r-0_0.88-1_0.14-2_1.47-3_1.13\", \"1072_l_1_r-0_3.07-1_0.16-2_0.47-3_0.15\", \"1073_l_1_r-0_0.5-1_1.1-2_0.23-3_0.29\", \"1074_l_1_r-0_0.77-1_0.51-2_0.53-3_0.17\", \"1075_l_1_r-0_1.08-1_0.32-2_1.23-3_1.5\", \"1076_l_1_r-0_0.33-1_0.55-2_0.58-3_0.67\", \"1077_l_1_r-0_0.16-1_0.8-2_1.67-3_0.91\", \"1078_l_1_r-0_2.15-1_1.31-2_0.36-3_0.51\", \"1079_l_1_r-0_0.3-1_0.61-2_1.06-3_0.34\", \"1080_l_1_r-0_1.72-1_0.33-2_0.23-3_1.05\", \"1081_l_1_r-0_0.12-1_1.41-2_0.67-3_0.1\", \"1082_l_1_r-0_0.57-1_1.19-2_0.33-3_0.41\", \"1083_l_1_r-0_0.65-1_1.06-2_0.2-3_0.85\", \"1084_l_1_r-0_0.18-1_2.04-2_0.08-3_0.86\", \"1085_l_1_r-0_0.79-1_0.35-2_0.49-3_1.17\", \"1086_l_1_r-0_0.28-1_0.1-2_1.0-3_1.26\", \"1087_l_1_r-0_0.63-1_0.44-2_1.52-3_0.92\", \"1088_l_1_r-0_1.15-1_0.63-2_0.29-3_0.71\", \"1089_l_1_r-0_1.52-1_0.7-2_0.8-3_0.05\", \"1090_l_1_r-0_0.02-1_0.89-2_0.82-3_1.08\", \"1091_l_1_r-0_0.55-1_1.35-2_0.89-3_0.68\", \"1092_l_1_r-0_0.39-1_1.82-2_0.98-3_0.48\", \"1093_l_1_r-0_1.37-1_0.38-2_0.74-3_0.14\", \"1094_l_1_r-0_2.07-1_0.92-2_2.11-3_0.23\", \"1095_l_1_r-0_0.54-1_0.61-2_0.96-3_0.4\", \"1096_l_1_r-0_1.42-1_0.71-2_0.64-3_0.47\", \"1097_l_1_r-0_0.58-1_1.12-2_1.37-3_0.45\", \"1098_l_1_r-0_0.32-1_1.12-2_1.53-3_0.26\", \"1099_l_1_r-0_0.76-1_0.04-2_0.93-3_0.13\", \"1100_l_1_r-0_0.62-1_1.51-2_0.97-3_0.42\", \"1101_l_1_r-0_0.8-1_0.46-2_1.69-3_0.44\", \"1102_l_1_r-0_1.53-1_0.18-2_0.7-3_1.13\", \"1103_l_1_r-0_0.1-1_0.49-2_1.1-3_1.03\", \"1104_l_1_r-0_0.78-1_1.05-2_0.4-3_0.49\", \"1105_l_1_r-0_0.23-1_0.08-2_1.02-3_1.41\", \"1106_l_1_r-0_0.44-1_0.17-2_1.13-3_1.1\", \"1107_l_1_r-0_2.27-1_0.68-2_0.25-3_0.63\", \"1108_l_1_r-0_1.38-1_1.29-2_0.27-3_0.21\", \"1109_l_1_r-0_1.06-1_0.76-2_0.46-3_0.34\", \"1110_l_1_r-0_1.35-1_1.23-2_1.32-3_0.41\", \"1111_l_1_r-0_0.35-1_0.75-2_1.02-3_0.88\", \"1112_l_1_r-0_1.81-1_1.09-2_1.59-3_0.01\", \"1113_l_1_r-0_0.78-1_1.01-2_0.02-3_0.22\", \"1114_l_1_r-0_0.69-1_0.87-2_0.12-3_0.27\", \"1115_l_1_r-0_0.08-1_1.37-2_0.67-3_0.84\", \"1116_l_1_r-0_1.14-1_0.02-2_0.13-3_0.6\", \"1117_l_1_r-0_0.16-1_0.69-2_0.71-3_0.58\", \"1118_l_1_r-0_0.96-1_1.0-2_1.09-3_0.05\", \"1119_l_1_r-0_0.45-1_0.57-2_0.54-3_0.09\", \"1120_l_1_r-0_0.58-1_0.11-2_0.19-3_0.87\", \"1121_l_1_r-0_0.03-1_0.36-2_0.19-3_0.83\", \"1122_l_1_r-0_0.65-1_1.66-2_2.2-3_0.0\", \"1123_l_1_r-0_0.26-1_1.26-2_0.87-3_0.76\", \"1124_l_1_r-0_1.5-1_0.77-2_0.99-3_0.94\", \"1125_l_1_r-0_0.88-1_0.39-2_0.33-3_0.2\", \"1126_l_1_r-0_0.37-1_1.21-2_0.51-3_0.66\", \"1127_l_1_r-0_0.88-1_0.71-2_1.07-3_0.79\", \"1128_l_1_r-0_0.71-1_0.52-2_0.76-3_0.33\", \"1129_l_1_r-0_0.89-1_1.92-2_0.02-3_0.76\", \"1130_l_1_r-0_0.22-1_0.32-2_0.3-3_0.57\", \"1131_l_1_r-0_0.95-1_0.82-2_0.21-3_0.59\", \"1132_l_1_r-0_0.45-1_1.11-2_0.19-3_0.1\", \"1133_l_1_r-0_0.95-1_0.78-2_0.38-3_0.13\", \"1134_l_1_r-0_0.21-1_1.09-2_0.01-3_0.32\", \"1135_l_1_r-0_0.84-1_0.91-2_0.06-3_0.77\", \"1136_l_1_r-0_0.37-1_0.54-2_0.01-3_1.35\", \"1137_l_1_r-0_1.2-1_1.74-2_0.79-3_0.25\", \"1138_l_1_r-0_1.66-1_1.03-2_0.1-3_1.05\", \"1139_l_1_r-0_1.41-1_1.11-2_0.44-3_0.4\", \"1140_l_1_r-0_0.29-1_1.39-2_0.02-3_0.55\", \"1141_l_1_r-0_0.44-1_1.02-2_0.31-3_1.31\", \"1142_l_1_r-0_2.17-1_1.81-2_0.83-3_0.51\", \"1143_l_1_r-0_0.26-1_0.56-2_0.95-3_0.22\", \"1144_l_1_r-0_1.16-1_0.32-2_1.22-3_0.74\", \"1145_l_1_r-0_0.65-1_0.45-2_0.56-3_0.92\", \"1146_l_1_r-0_0.04-1_1.22-2_0.79-3_0.66\", \"1147_l_1_r-0_1.26-1_0.53-2_0.07-3_1.74\", \"1148_l_1_r-0_1.1-1_0.06-2_0.93-3_2.17\", \"1149_l_1_r-0_0.98-1_0.36-2_1.33-3_0.14\", \"1150_l_1_r-0_1.8-1_0.65-2_1.19-3_0.92\", \"1151_l_1_r-0_0.52-1_0.73-2_0.16-3_0.18\", \"1152_l_1_r-0_1.06-1_0.87-2_0.82-3_0.13\", \"1153_l_1_r-0_0.81-1_0.26-2_0.85-3_0.71\", \"1154_l_1_r-0_2.15-1_0.86-2_0.38-3_0.28\", \"1155_l_1_r-0_0.28-1_0.79-2_0.03-3_0.3\", \"1156_l_1_r-0_2.02-1_0.19-2_1.96-3_0.37\", \"1157_l_1_r-0_1.05-1_0.67-2_0.38-3_1.43\", \"1158_l_1_r-0_0.7-1_0.37-2_0.89-3_0.95\", \"1159_l_1_r-0_2.01-1_0.14-2_0.03-3_0.34\", \"1160_l_1_r-0_0.64-1_0.35-2_0.77-3_0.69\", \"1161_l_1_r-0_1.26-1_1.74-2_0.46-3_0.56\", \"1162_l_1_r-0_1.23-1_0.62-2_0.34-3_0.63\", \"1163_l_1_r-0_0.5-1_1.21-2_1.02-3_0.29\", \"1164_l_1_r-0_1.39-1_0.34-2_1.01-3_0.63\", \"1165_l_1_r-0_0.6-1_0.86-2_0.27-3_0.51\", \"1166_l_1_r-0_1.05-1_1.13-2_0.9-3_1.63\", \"1167_l_1_r-0_0.22-1_0.94-2_1.08-3_0.41\", \"1168_l_1_r-0_0.4-1_1.6-2_0.87-3_0.97\", \"1169_l_1_r-0_0.42-1_0.72-2_0.94-3_0.98\", \"1170_l_1_r-0_0.89-1_2.19-2_0.72-3_1.62\", \"1171_l_1_r-0_0.23-1_0.57-2_0.6-3_0.52\", \"1172_l_1_r-0_0.78-1_1.55-2_0.34-3_0.43\", \"1173_l_1_r-0_0.13-1_0.15-2_0.46-3_0.11\", \"1174_l_1_r-0_0.35-1_0.11-2_0.77-3_1.18\", \"1175_l_1_r-0_0.16-1_1.01-2_1.24-3_0.34\", \"1176_l_1_r-0_1.24-1_0.3-2_0.67-3_0.73\", \"1177_l_1_r-0_0.92-1_0.89-2_1.07-3_0.28\", \"1178_l_1_r-0_0.71-1_0.05-2_1.05-3_1.15\", \"1179_l_1_r-0_0.3-1_0.14-2_0.14-3_0.49\", \"1180_l_1_r-0_1.08-1_0.86-2_0.57-3_0.85\", \"1181_l_1_r-0_0.45-1_0.28-2_0.58-3_0.27\", \"1182_l_1_r-0_1.13-1_1.5-2_0.79-3_0.54\", \"1183_l_1_r-0_1.91-1_0.88-2_0.99-3_0.84\", \"1184_l_1_r-0_1.44-1_1.06-2_1.31-3_0.66\", \"1185_l_1_r-0_0.1-1_0.4-2_1.39-3_0.96\", \"1186_l_1_r-0_0.5-1_0.15-2_1.29-3_1.07\", \"1187_l_1_r-0_0.33-1_0.02-2_1.04-3_0.7\", \"1188_l_1_r-0_0.81-1_1.33-2_0.13-3_1.6\", \"1189_l_1_r-0_0.59-1_0.32-2_1.39-3_0.24\", \"1190_l_1_r-0_0.65-1_1.79-2_0.4-3_0.57\", \"1191_l_1_r-0_1.22-1_1.18-2_0.51-3_0.58\", \"1192_l_1_r-0_0.72-1_1.14-2_0.33-3_1.25\", \"1193_l_1_r-0_0.03-1_1.58-2_0.1-3_0.3\", \"1194_l_1_r-0_0.2-1_0.4-2_0.26-3_1.03\", \"1195_l_1_r-0_1.79-1_0.59-2_0.52-3_1.34\", \"1196_l_1_r-0_1.67-1_1.46-2_0.53-3_0.16\", \"1197_l_1_r-0_0.02-1_0.94-2_0.76-3_0.87\", \"1198_l_1_r-0_1.07-1_0.57-2_0.64-3_0.16\", \"1199_l_1_r-0_1.07-1_0.58-2_0.81-3_0.58\", \"1200_l_1_r-0_0.26-1_0.63-2_0.14-3_0.72\", \"1201_l_1_r-0_0.08-1_0.26-2_0.5-3_0.31\", \"1202_l_1_r-0_0.93-1_0.49-2_0.13-3_0.44\", \"1203_l_1_r-0_0.21-1_0.58-2_0.61-3_0.41\", \"1204_l_1_r-0_3.37-1_1.09-2_0.92-3_0.33\", \"1205_l_1_r-0_0.54-1_0.49-2_0.96-3_0.15\", \"1206_l_1_r-0_0.23-1_0.67-2_0.87-3_0.6\", \"1207_l_1_r-0_0.3-1_0.43-2_1.25-3_0.36\", \"1208_l_1_r-0_0.66-1_3.19-2_0.32-3_0.7\", \"1209_l_1_r-0_0.62-1_0.35-2_1.96-3_1.1\", \"1210_l_1_r-0_0.55-1_0.67-2_0.89-3_0.23\", \"1211_l_1_r-0_0.15-1_0.85-2_0.24-3_0.77\", \"1212_l_1_r-0_1.56-1_0.06-2_0.14-3_0.84\", \"1213_l_1_r-0_0.09-1_0.15-2_0.25-3_0.08\", \"1214_l_1_r-0_1.04-1_0.21-2_1.19-3_0.35\", \"1215_l_1_r-0_1.84-1_0.23-2_0.66-3_0.07\", \"1216_l_1_r-0_0.62-1_0.92-2_0.94-3_0.13\", \"1217_l_1_r-0_0.87-1_1.11-2_0.82-3_0.79\", \"1218_l_1_r-0_0.39-1_0.52-2_2.21-3_0.76\", \"1219_l_1_r-0_0.03-1_1.26-2_1.07-3_1.47\", \"1220_l_1_r-0_0.61-1_0.72-2_0.17-3_0.32\", \"1221_l_1_r-0_0.55-1_2.66-2_0.83-3_0.56\", \"1222_l_1_r-0_0.28-1_0.8-2_0.09-3_0.78\", \"1223_l_1_r-0_1.24-1_2.37-2_0.57-3_1.27\", \"1224_l_1_r-0_1.13-1_0.21-2_0.41-3_0.85\", \"1225_l_1_r-0_1.09-1_0.5-2_0.66-3_0.28\", \"1226_l_1_r-0_0.38-1_2.06-2_0.74-3_0.57\", \"1227_l_1_r-0_0.14-1_2.43-2_0.52-3_0.08\", \"1228_l_1_r-0_0.86-1_0.59-2_0.49-3_0.77\", \"1229_l_1_r-0_1.0-1_0.81-2_0.4-3_1.15\", \"1230_l_1_r-0_0.76-1_0.8-2_0.85-3_1.08\", \"1231_l_1_r-0_0.46-1_1.36-2_0.74-3_0.92\", \"1232_l_1_r-0_2.26-1_0.84-2_1.92-3_0.27\", \"1233_l_1_r-0_0.85-1_0.32-2_0.92-3_0.04\", \"1234_l_1_r-0_2.44-1_0.04-2_1.19-3_1.09\", \"1235_l_1_r-0_0.74-1_1.17-2_0.87-3_0.64\", \"1236_l_1_r-0_0.26-1_0.66-2_1.05-3_1.27\", \"1237_l_1_r-0_0.46-1_0.11-2_0.07-3_0.55\", \"1238_l_1_r-0_0.48-1_1.06-2_1.14-3_0.8\", \"1239_l_1_r-0_0.42-1_0.72-2_0.37-3_0.39\", \"1240_l_1_r-0_0.11-1_0.78-2_0.95-3_1.31\", \"1241_l_1_r-0_0.55-1_0.68-2_0.79-3_0.76\", \"1242_l_1_r-0_0.86-1_1.35-2_0.41-3_0.77\", \"1243_l_1_r-0_0.5-1_0.64-2_1.26-3_0.66\", \"1244_l_1_r-0_0.77-1_0.26-2_0.67-3_0.36\", \"1245_l_1_r-0_0.96-1_0.19-2_0.67-3_0.23\", \"1246_l_1_r-0_0.56-1_0.77-2_0.75-3_0.6\", \"1247_l_1_r-0_0.16-1_1.24-2_0.36-3_0.18\", \"1248_l_1_r-0_0.86-1_0.96-2_0.26-3_1.11\", \"1249_l_1_r-0_0.87-1_0.95-2_0.12-3_0.57\", \"1250_l_1_r-0_0.09-1_0.65-2_0.02-3_0.35\", \"1251_l_1_r-0_0.61-1_0.67-2_0.82-3_1.11\", \"1252_l_1_r-0_0.02-1_0.57-2_0.98-3_0.38\", \"1253_l_1_r-0_1.01-1_1.57-2_0.23-3_0.84\", \"1254_l_1_r-0_0.35-1_0.44-2_0.07-3_0.57\", \"1255_l_1_r-0_0.48-1_1.12-2_0.15-3_0.45\", \"1256_l_1_r-0_2.08-1_0.68-2_1.8-3_0.04\", \"1257_l_1_r-0_0.23-1_1.07-2_1.35-3_0.53\", \"1258_l_1_r-0_0.1-1_0.53-2_0.92-3_0.63\", \"1259_l_1_r-0_0.06-1_0.08-2_0.27-3_0.25\", \"1260_l_1_r-0_2.61-1_0.85-2_0.85-3_0.98\", \"1261_l_1_r-0_1.38-1_0.35-2_1.36-3_0.2\", \"1262_l_1_r-0_0.79-1_1.81-2_0.47-3_0.67\", \"1263_l_1_r-0_0.46-1_0.59-2_1.55-3_0.58\", \"1264_l_1_r-0_0.46-1_0.85-2_0.08-3_0.02\", \"1265_l_1_r-0_1.02-1_0.13-2_0.86-3_0.38\", \"1266_l_1_r-0_1.89-1_0.45-2_0.18-3_1.45\", \"1267_l_1_r-0_0.56-1_1.14-2_0.4-3_0.43\", \"1268_l_1_r-0_0.79-1_0.11-2_0.14-3_0.37\", \"1269_l_1_r-0_1.3-1_0.07-2_0.56-3_0.5\", \"1270_l_1_r-0_0.59-1_0.94-2_0.48-3_0.83\", \"1271_l_1_r-0_0.05-1_0.56-2_0.68-3_0.3\", \"1272_l_1_r-0_0.04-1_1.49-2_0.66-3_1.22\", \"1273_l_1_r-0_1.34-1_0.06-2_0.12-3_0.92\", \"1274_l_1_r-0_1.39-1_0.32-2_0.15-3_0.79\", \"1275_l_1_r-0_1.03-1_1.24-2_1.38-3_0.64\", \"1276_l_1_r-0_0.66-1_0.25-2_0.02-3_0.6\", \"1277_l_1_r-0_0.07-1_0.09-2_1.31-3_0.0\", \"1278_l_1_r-0_0.39-1_0.49-2_0.74-3_0.87\", \"1279_l_1_r-0_0.52-1_1.0-2_0.1-3_0.76\", \"1280_l_1_r-0_0.08-1_0.35-2_1.08-3_0.47\", \"1281_l_1_r-0_0.85-1_0.94-2_0.25-3_0.45\", \"1282_l_1_r-0_0.16-1_0.56-2_0.54-3_0.74\", \"1283_l_1_r-0_0.46-1_0.61-2_0.71-3_0.89\", \"1284_l_1_r-0_1.23-1_0.86-2_1.07-3_0.91\", \"1285_l_1_r-0_0.01-1_0.36-2_1.54-3_1.27\", \"1286_l_1_r-0_0.67-1_0.74-2_1.37-3_1.2\", \"1287_l_1_r-0_0.67-1_1.25-2_0.02-3_0.05\", \"1288_l_1_r-0_0.75-1_0.25-2_0.76-3_0.41\", \"1289_l_1_r-0_0.68-1_2.32-2_1.23-3_0.44\", \"1290_l_1_r-0_0.44-1_0.51-2_1.28-3_0.45\", \"1291_l_1_r-0_1.11-1_0.27-2_0.03-3_0.64\", \"1292_l_1_r-0_0.04-1_1.79-2_1.35-3_0.57\", \"1293_l_1_r-0_0.28-1_0.63-2_1.27-3_1.65\", \"1294_l_1_r-0_0.06-1_0.15-2_0.88-3_0.55\", \"1295_l_1_r-0_0.93-1_0.79-2_1.15-3_0.36\", \"1296_l_1_r-0_1.73-1_0.28-2_0.78-3_1.65\", \"1297_l_1_r-0_0.53-1_0.35-2_0.76-3_1.05\", \"1298_l_1_r-0_0.59-1_0.29-2_0.39-3_0.97\", \"1299_l_1_r-0_0.54-1_1.65-2_0.4-3_0.0\", \"1300_l_1_r-0_0.65-1_0.21-2_1.18-3_0.17\", \"1301_l_1_r-0_2.19-1_1.43-2_1.39-3_1.09\", \"1302_l_1_r-0_1.06-1_0.41-2_0.86-3_1.66\", \"1303_l_1_r-0_0.13-1_0.24-2_0.42-3_0.51\", \"1304_l_1_r-0_0.36-1_0.12-2_0.63-3_0.52\", \"1305_l_1_r-0_0.51-1_1.16-2_0.01-3_0.87\", \"1306_l_1_r-0_0.43-1_0.36-2_0.01-3_0.66\", \"1307_l_1_r-0_1.72-1_0.12-2_0.14-3_0.34\", \"1308_l_1_r-0_1.28-1_1.61-2_1.15-3_1.07\", \"1309_l_1_r-0_1.33-1_0.66-2_1.14-3_0.82\", \"1310_l_1_r-0_0.49-1_0.81-2_0.21-3_0.73\", \"1311_l_1_r-0_0.1-1_0.92-2_0.69-3_0.36\", \"1312_l_1_r-0_0.05-1_0.68-2_0.97-3_1.42\", \"1313_l_1_r-0_0.42-1_0.68-2_2.08-3_0.36\", \"1314_l_1_r-0_0.19-1_1.11-2_0.84-3_0.89\", \"1315_l_1_r-0_0.13-1_0.64-2_2.02-3_0.41\", \"1316_l_1_r-0_0.41-1_0.72-2_0.8-3_0.98\", \"1317_l_1_r-0_1.76-1_0.44-2_0.4-3_0.02\", \"1318_l_1_r-0_1.07-1_0.37-2_1.02-3_0.37\", \"1319_l_1_r-0_0.98-1_0.73-2_0.42-3_0.26\", \"1320_l_1_r-0_1.18-1_1.88-2_0.27-3_0.43\", \"1321_l_1_r-0_0.14-1_0.24-2_1.64-3_0.17\", \"1322_l_1_r-0_0.88-1_0.75-2_0.57-3_0.22\", \"1323_l_1_r-0_0.66-1_0.05-2_0.6-3_0.12\", \"1324_l_1_r-0_0.19-1_0.08-2_0.46-3_0.11\", \"1325_l_1_r-0_1.62-1_1.44-2_0.25-3_1.18\", \"1326_l_1_r-0_1.06-1_0.5-2_0.43-3_0.15\", \"1327_l_1_r-0_0.44-1_0.55-2_1.16-3_0.51\", \"1328_l_1_r-0_0.18-1_1.22-2_1.14-3_0.37\", \"1329_l_1_r-0_0.21-1_0.33-2_0.07-3_0.65\", \"1330_l_1_r-0_0.34-1_1.61-2_0.45-3_0.03\", \"1331_l_1_r-0_0.09-1_0.86-2_1.09-3_0.29\"], \"type\": \"scatter3d\", \"x\": [-1.4230118806523007, -1.4389563627400421, -1.5701746542269583, -2.221325626189354, 1.493111583029874, -2.367356576545705, 1.4692361034541648, -1.4719595912076788, -1.3510304063103837, 0.10773484618245388, -1.224038184276792, 1.343236320820675, 0.5961485869740861, 0.0892867165882738, 0.44500431809031316, 0.005618473278605096, 0.543093907947005, 1.6148661955974881, 1.105927511540481, 0.12954799205237766, 2.295297751312019, 0.7327219477256739, -1.4702435942480923, -0.1690630998610697, -1.6471271825496174, -1.285488851994287, 1.8659727550230958, 0.30709264215441645, 0.02687811894236658, -0.3901592202544236, -0.9992652776244962, -1.5834641111237406, -0.40491183768735584, 0.03660517788975004, -1.0281412433908308, 0.5564541108597512, 0.29172253456758757, 1.0595644689503456, -1.947687821172713, 0.37167732688546895, -1.657590695054058, -0.16758554576666984, 0.41918810021231945, 0.054499035859210565, -3.7178362195186887, -1.0020769080622538, -1.001681108886157, 0.21614725523648093, -0.9354503697022809, 0.08310452333814622, 0.4890604502548843, 0.21020370577245773, 1.0806572694892198, 0.5825036958868726, -0.750952535802264, 0.4231112845819378, -1.6335132613331675, -1.430520868041451, 0.27109641759562675, 0.279610086206044, -0.6022035267294035, -0.1458038583916207, 0.15493222412302132, -1.1035093270836684, -2.4693533163969525, 0.4703248006256697, -3.0879892837831147, 0.5805094989500401, 0.1816676683390539, 2.092203541128784, -2.9554009566039374, 1.393003850076552, -2.6697671472756923, -1.532352465580649, -3.3023038961774036, 1.0625325578744804, -0.7734171827155676, 1.9941935946719802, -1.7012310470531826, 0.3877130841590595, -0.41816035213542624, -1.312527205711782, -0.8544305365200381, -0.9524270041258497, 0.16036483848203908, -0.5476889546511086, -0.6087992941767331, -0.4075801963906722, 0.4241892654601964, 1.1275298035807797, 0.07835629829243662, 0.18322980320514648, -2.843326558865777, 0.5019195884685856, -1.1617190637409587, -0.2202841362800434, -0.5111253217999492, 0.06144806240165579, 0.025377725380463678, 0.23929788631721172, -0.3580972555891059, -0.8660131642687257, 0.09646857417664312, 0.8331256388419281, -0.5916053323203084, -0.09516394925253135, -0.27974064230991236, 0.09267793907151312, 0.36962232767388237, -0.6103147542177823, 0.15108770081826828, 0.36673769658888666, 0.1798439983998723, -1.29180323869109, -1.8929011489105387, 1.5914346126094454, 1.101667388903934, -0.592566830932157, 1.6077832214155103, -1.616478061385226, 0.3056657991285725, 1.3948527109106066, 0.07615721057456648, -0.5847053642601988, 1.0128876406394682, 0.4746057950007778, 0.8687895156684011, 0.39266434383793225, 1.9160864679025518, -0.9135589375707288, 0.8091067859375376, 0.07371620415171853, -1.5529708009438528, 3.2675467595777326, 1.1047183536065894, 0.7021998358722858, 0.36392431597493435, -1.533119052266632, 0.7791152320461068, -1.1631386832003623, -1.3669594766332147, -0.6628237817779279, -0.214167066170032, 0.8305929052020642, -2.629642723148334, 0.8347588428309309, -1.2063667409564873, 1.485364222982895, -2.1949805996701928, -1.7716717516213065, -0.049210754124953016, -2.6075386603932564, -1.7719945559704788, 0.19368053680172181, -1.9147393591353368, -0.7263344591447957, -2.5547995561092884, -1.1422362079675108, 0.6213954207620254, -0.3544225623888695, 0.45488871550320065, -1.2621173617279267, -2.315874876712198, 0.3292217356387688, 0.6104496022279435, 1.244915605136812, 1.380935510340123, -2.419788250018379, 0.7084419622145901, -2.307883854909769, 1.7292766022315198, -1.065893495750444, -0.8473040767745333, 1.994291187932912, -0.9752172625642683, 0.3069941581329694, 0.8230494392451315, 0.9600300704202485, -1.7670704832529407, 0.4326288673474661, 0.5968598401414282, 1.2061622895119366, 0.25594282339596086, -3.040746562890056, -0.8927156649266655, 0.5871586193593799, -2.0007327291374093, 1.5079132053130921, -1.7149598188024238, -1.0063150097317388, 0.3774192436326018, -3.1366157057549175, 0.47045720995684603, 0.8915926918740362, 0.05489959170001124, -0.9638442973707757, 0.5688677498190926, 0.06691371825146564, -1.2887507733313188, 1.9367456692808709, 1.165617397434001, 0.05886828735671079, 0.11643206111210014, -0.8243414855546841, 0.031130198431596146, 0.09476104098157823, 0.552608805335592, 1.187060024917168, -0.7592422326838111, 0.46443691826175515, 0.09905144553504108, -0.3628388876891001, 0.07218884934592551, -0.9044938840471879, 0.1766289158274501, -0.0520026044270534, -1.5542319872024237, 0.4189353668477245, 1.9970268146688719, -1.5501192651489082, 0.31460826742144987, -0.8916075291031825, -2.372298403056199, -2.290173443176198, -1.0690527083012091, -0.5164572556536775, -1.430149831925736, -1.8003159120660288, -0.10874700440801732, -1.4154227000461097, -0.4766993002005063, -1.5996544753892143, -4.2544335781459806, -1.816271133512938, -2.053236268675696, -0.6437185253071529, -0.6321236631368552, -0.19082143371643345, -0.4159589032812351, -1.3848975370615317, -1.8658186413439168, -0.25336222880114134, -1.9660933135193384, -0.7546724741905775, -1.444651903342977, -0.5153852776641692, -0.05805614840638085, -3.1272457418737187, -0.764888367978978, -2.448232696698515, -0.0774165407609324, -4.090136705405033, -3.358049525274709, -2.672794147848199, -0.7337990450636833, -0.6247029175331762, -1.5023585772062118, -1.7543571224550623, -3.0297912868647128, -1.1141941371285604, -1.3514340765211874, -0.36113499157875606, -1.8890600213331847, -0.8404181736966254, -1.3499191294295318, -0.16389154324767918, -1.3400169708095178, -1.036097505298832, -1.5873407315835324, -0.467408650423878, -1.4745238099709537, -1.4584040803999487, -0.2887704775451626, -1.6046215756386628, -1.710023742643351, -0.888230142243995, -0.6104770635913789, -2.9275262248114364, -1.815483386461099, -1.2030253144767171, -0.13123520955127288, -1.66009481637366, -0.8801660451488496, -2.1044409080165707, -0.0845083044110364, -0.5009563350584428, -0.34950756580955966, -0.35274938488095364, -2.4556232034268204, -1.0669060173610112, -1.4468112278796788, -0.019810263083763657, -0.4875893630303296, -1.0220112606769565, -0.6729919421656281, -0.7728472820321536, -2.0624423160310625, -1.690150227267548, -3.0607318643146755, -1.8496784239179513, -0.07374230307694074, -2.429252947028029, -0.7529764581033868, -0.8199360119967068, -2.097857760205846, -2.2463234883000824, -1.4982685199375207, -0.8485010268106384, -0.8591297722882802, -0.8380373116544994, -2.1588800606035523, -1.1798535835444781, -1.2404841873774206, -1.1896866792886296, -0.052187723459745206, -0.8677509667642752, -0.8664907518063351, -3.643541097666583, -3.2566194694795163, -0.7004555709628922, -1.3088175571120866, -2.0493791898158973, -1.4823248232351878, -0.25341878104188575, -0.5426530289512159, -0.5340207853551152, -0.031170396165830838, -0.010508838241576446, -1.1938064467827298, -2.185517067084011, -0.9749523576711433, -3.6116383518162674, -1.4672381781320571, -1.3240391243683938, -1.1130469674973034, -1.7620531690505827, -0.29437489215092083, -1.1230893054012807, -1.1222651648266366, -0.842245068660632, -0.5916698142211749, -1.3644876632138745, -1.6952016449411262, -1.3950995450221204, -1.5099913853278326, -2.9216821260586974, -1.2659491660193818, -2.0544558048599395, -0.8719185027333419, -2.2043691752247065, -2.318580211547551, -0.404014234191836, -0.019851250589491554, -1.1937284393728362, -1.5695047156780622, -0.1269609495336257, -0.6635363523673856, -3.9971493118066186, -1.4169648742812484, -2.4040359141790266, -0.9237791851903838, -1.702556762361848, -1.222302401597662, -0.6171351430827172, -1.9132826943926402, -2.6108530950257594, -0.3800247203662931, -2.257360993256361, -1.1994055546188163, -1.9746385790497165, -1.6904742177596663, -1.385143441786966, -1.6994938501201684, -1.8094925956116565, -0.24396490518699587, -1.3945261583430277, -1.7659723369208722, -1.0363649177967813, -0.8867499738467588, -1.122269515927175, -1.3150471811119884, -1.1914929717778246, -2.917362027118295, -2.0337483362125637, -1.4269698326434048, -1.5456621794423966, -2.0027194174269756, -0.3655299003685948, -0.22733287086024867, -2.5685917391341273, -1.199841422244833, -2.15583673843099, -0.6038811331859077, -1.267895642599501, -1.7425366185529167, -0.3766414036143494, -2.580896309043723, -0.49212750264271177, -0.9122587175801309, -2.1301983019246404, -2.5711159068426173, -1.1868743053487258, -2.3027009036662074, -0.0927023332162259, -0.46297455805500876, -2.3704854149960632, -3.4654927702072755, -1.5160211654527478, -0.7656875054904929, -2.1100645013981962, -0.7005918244711882, -0.18579931855916088, -2.1501250401465537, -0.8035027039451443, -4.204313177973695, -0.9820819119590924, -2.2667988302599316, -0.6544043356379932, -0.700870270412896, -0.791650083871207, -0.6602526149077564, -0.6266618873356874, -1.6101791234836191, -1.7781400414453432, -1.611134414413737, -1.0255827040752235, -0.4026163525850672, -1.3748507314847171, -2.0721781472616487, -0.8192779451165029, -2.2448135098547812, -0.5799140759042976, -0.32255717471932754, -1.5108146216053884, -0.6890057110981507, -1.2759478283980514, -1.9030699330768317, -0.460552212974331, -0.7788113670656559, -0.2294956710815259, -0.43658891627870755, -2.2668742095475434, -3.633689510821202, -2.4733887449624294, -2.729887639105387, -0.34695795885216685, -1.805875097794461, -1.462187855514281, -1.5898774501023403, -1.3196305994569475, -1.1377973267776036, -1.7292147192221607, -1.0466761485472185, -0.4524287142297819, -1.3408620720004674, -0.026149769686932167, -0.6514491693946238, -0.2552037590741375, -1.5030019309737468, -0.9267687939147018, -1.8409216706718912, -1.534790824177692, -0.713758030973084, -1.036431326404868, -0.25681559507918517, -1.3321366559261252, -1.0334799034437863, -0.954057469212006, -0.20988500894518136, -0.8427701842937139, -2.0473597166499067, -1.1961549621270702, -1.6625430987166034, -2.5958381156550914, -0.2900871158106477, -0.6487055268859856, -2.1749225486701524, -3.846377739639611, -1.164431072304179, -0.6456682193755774, -1.314272741462416, -1.721552790578674, -1.102376267874372, -1.506043461022057, -1.796714258635847, -1.5159939253625971, -2.053866356750415, -2.8939498759675595, -2.150463418463853, -0.2750764061887284, -2.0677490431085825, -1.888737658601012, -1.7091968953228487, -2.607324034277525, -2.3300735695735693, -1.3519384784125565, -1.5493808617713656, -0.4992915685455427, -3.0016204688273445, -2.1354134976863146, -3.6558703812622797, -1.5656999079840617, -2.229378475066911, -2.6440641209631863, -0.8946633095944702, -2.743454841553261, -0.7799219984719139, -1.9516548441515678, -0.4433985238244499, -1.1328246881951782, -1.2943728226842888, -3.4387999928608886, -1.4403815128308533, -0.3688307059023611, -1.4547152431385297, -3.034803134787413, -1.1280207024553164, -2.0650638671682113, -1.7325099583517503, -0.10077439349705941, -1.2043326186894143, -1.7824202050716518, -1.0336198364333657, -1.3234956832967504, -0.6528283836308715, -1.9796511493685252, -0.7170782058578263, -1.3810236995674054, -1.3395193732556896, -1.7880541762198705, -1.672732240405831, -1.0486577250440945, -2.7259240355029863, -2.3260948249448727, -1.170015298940035, -2.2039720543839403, -2.210946749108386, -2.0635612870459026, -3.371598892977182, -0.6703522764503592, -1.2254148806337393, -0.3011078318079293, -1.3289761976216101, -1.0290954960047658, -1.3460095628349744, -0.2743870749341545, -1.5586004231039041, -0.7311449749820861, -2.1748011434445482, -1.8373316886118771, -2.0402586616208254, -0.8703992845845296, -0.5351625586437296, -1.923837822398853, -2.1854137798435946, -1.571426347923504, -0.277894129472134, -1.244099403303459, -2.910871848262156, -1.0853060061706892, -0.38415764860977897, -1.341820382727192, -0.8700086394451096, -0.9958251690240595, -1.2865939559700512, -0.7802139823521339, -2.263663950841658, -1.3460283611533794, -2.5185822901844803, -0.742456770767711, -2.7346069127644927, -0.5226364983627889, -0.48305344820211504, -0.41600547141890964, -1.753827208824682, -1.4949128118576547, -0.8623782576251181, -0.4960442421308069, -0.7671888044690902, -1.8360778602359784, -3.0661197066758348, -2.0401923460849023, -0.8584501990756871, -0.8714384406978015, -1.8555664845843582, -1.589978191470541, -0.8672782059025231, -3.0313357969914065, -0.3513198423394983, -0.4759562870060938, -2.2665052900659477, -3.1210114914615357, -1.5362780143186463, -1.921276278080342, -3.0566670796901976, -1.9233730006348064, -0.7934574790255347, -0.46300859472985345, -0.4585505852459387, -1.0191850093183927, -1.885192337929141, -0.90059165702363, -1.916333316712746, -1.2975197949241837, -2.429699798403203, -0.05013088867677806, -1.9734733630745025, -2.295084946492974, -1.8537728686652928, -1.0290906924335033, -1.2691929446936034, -1.0249540812918418, -0.387686320779584, -2.252027471451544, -2.065008756282034, -3.164689991452084, -0.15816354995335435, -1.3317993333392926, -2.6163781053349027, -0.9353187088493532, -1.0253140278341424, -3.6421827765249954, -1.5017490133233642, -0.7383052669028913, -0.4398735547517766, -2.49107995025334, -1.9900238773814158, -0.27534527189832947, -0.1410954783897269, -2.5236990594830297, -1.7312640064103264, -0.52609787885404, -1.4873006509030007, -0.5438863120663944, -0.6539621627317773, -2.19155938507338, -1.056881601336416, -0.1296856953061264, -0.3621409973699462, -0.5105332301835297, -0.9475848564888769, -1.7191340444193457, -1.2782467096059718, -1.3333795762628395, -0.8261528560413267, -0.6919851138812974, -0.31307196898460743, -0.4223643807193781, -0.7585362486234649, -0.8135717780578333, -0.40750732664824985, -1.7646739008713999, -1.0771956978828703, -0.9789939143908183, -1.9212171008047965, -0.1961893610809513, -1.3211828134996815, -1.4409358446371776, -0.8040335177466044, -1.6197887542691105, -2.5065967177479087, -0.44301566631775025, -0.1819351292373197, -0.5713961613878862, -2.9880451324842605, -1.13708358118249], \"y\": [-1.4857311178942783, -1.0723636812396542, -0.09743213564937014, -0.9923178270260069, 0.4481166914137775, -0.28077554135704075, 0.43484930246829734, -0.6086616330204728, -1.448918158522015, -0.05767074696331154, -0.6037864673398763, 0.6967467893294699, 0.4769875788601392, -1.4117284397989462, 1.851058391995163, 0.4278298756649703, 0.6090960081304404, 2.7364622167369577, 0.8499653506234571, 2.3781934701024454, 1.466912924315974, 1.1431354101415105, -0.7619804925647651, -0.8092332232551607, -0.6179237634080186, -1.09769506082987, -0.36201797488035314, 1.6447991310969243, 0.2984118333625687, -0.3294365478644792, -1.1593501876767296, -0.043944245618990685, -0.5740909743762312, 0.41395937106665104, -1.0488789559222558, 0.24182738287679773, 0.5485242259692802, 0.6493435214732375, -0.9152075009610767, 2.8680328647153237, -0.06901099845027203, -0.019362433683497438, 2.218947079548012, 2.5825416099251983, -0.3375523611662339, -0.31423115808270374, -0.4060308965394561, 0.6769487920263999, -0.10384952823594906, 2.4801853487816627, -0.29521856508563693, 1.5144411537298974, 2.982519609012586, 0.17906214797453013, -0.068398387060699, 0.5223773734239502, -1.3157718720258553, -0.6435599511740355, 0.24579771570979458, 0.5290166299212167, -0.20014875987334468, -1.554453472899188, 1.2114559869004398, -1.8965272119690635, -0.11015103067518028, -0.1929008329212627, -0.4011749977401684, -0.37090886413920066, 2.1428599484403055, -0.02733475959703191, -0.8583145311308644, 1.2270285859642023, -1.063596415036118, -0.0935765980620491, -0.3108064792323646, -0.5390304759051383, -1.4028265800686892, 2.5743438892877264, -0.2844684678837859, -0.3302314418617207, -1.6513785587479592, -0.05275319730444017, -0.20318906499956135, -0.017258673162839022, -0.9026724862498468, -0.6581261080220713, -0.37482849383269445, -1.1512816508513404, 1.6115280417988092, 0.468961249212561, 1.5356529169838846, -0.25730279491290275, -0.06170805182086969, 0.63859122024227, -0.049479143081919696, -0.18192500898084263, -0.36701171971142665, 0.948864669255327, -1.3579217122052336, 2.201977796420903, -0.524432666416621, -0.022619775050709556, 0.3909769123361898, -0.5250790976110884, -0.5538827518681582, -0.2855513006633257, -0.17781457846234705, -0.45819859779388383, 1.9422539947003874, -0.4515431907558971, 0.11598936046459396, -0.0731749573316367, 0.6219834940772277, -0.850192460154193, -1.3467586002841458, 0.8449505874801309, 1.4244439441386794, -1.2760133328251628, 2.4875891789710227, -0.8822334883660141, 1.7364889469050917, 2.062331242615079, 1.6483950322702725, -1.1262529561682202, -0.19673503817902893, 1.7359231041006917, 0.9931089319327546, -1.1954047278719346, 0.9565673070067591, -0.18063034037844394, 1.4269153355241153, 0.48880593968535657, -0.3028555526936898, 1.2108169192318852, 0.14488992918679822, 3.0096547623796357, 0.7091536017852464, -2.3648093663378353, -0.6256206030205387, -0.5050721559774491, -0.2294460761967445, -0.3296268559514628, -0.9656845480493985, 2.9686007742870935, -0.46220317305367664, 1.9023970919211113, -0.2184576248405241, 0.41869104945538693, -0.5187504962693392, -0.6608459287851378, -1.1441046083327278, -0.5115882290372551, -1.2626164252777192, 0.5339150289863472, -1.023820299600322, -0.30117359339110217, -0.4213560809497736, -0.19170359208369958, 1.5038626052689192, -0.9730346301404496, 0.40512013539303515, -0.24597094392376473, -0.5679119727196875, 0.1011914035841891, 0.8979888949381185, -0.6081459693172466, 4.115196332265118, -0.7649696174030827, 1.768020342609384, -0.35983798110827303, 0.9898139356876513, -0.5867838638484728, -0.9660163794550705, 0.8963649598100218, -0.14056938776015837, 0.5318546812125151, 1.2117389594488766, 1.6364752632544666, -1.0057263982158502, 1.4601748307298155, 0.22453239715231588, -1.5684674932683889, 0.5891284602805964, -0.16922821338549965, -0.5778488260527299, 2.4031831079112145, -1.0601722589072278, 2.1466822315121252, -0.3794646341149417, -0.5258392118013051, 1.3380919246301513, -1.0071819703522276, 2.341141048362129, 1.688067830487077, -0.9337564749790495, -0.37845238610235654, 1.9170690874767338, 2.237315508477032, -0.03932297895618864, 1.6932656310016436, 0.9942698355929341, -0.5095177877186359, 1.288764371158702, -0.4925085054910425, 1.3292002566156842, 0.6050605735306451, 0.36863328502218273, 3.203097329439698, -1.8457769660846943, -0.2895960581524277, -0.6398422892370372, -0.40112322114769383, 0.5318331595881092, -1.0265313480458467, -1.0685394191218416, -0.4632668941581022, -0.8220284020493911, 1.3486375712341556, 2.2046355943437654, -2.0780128389449843, 1.5022872142164392, -0.1270871105824336, -0.5648251959412927, 1.7866825349867186, 0.4838472231269165, 1.1022693021126073, 1.739647245743493, 1.0130084489360116, 0.15936521198671683, 0.3541981386287888, 1.404547000611151, 1.394495860193496, 1.9666701423011796, 0.9334273953996204, 0.12662932796092052, 1.9363356411577848, 4.3403808433232705, 1.1004070333418956, 1.2286793559547582, 2.3633916105579553, 1.8663829022105918, 1.1779669011079403, 0.21301126849512209, 1.5405601046149933, 3.3320510871327476, 1.1427247109758143, 1.3735349974761384, 2.625115140851846, 2.6270793594023267, 2.228365566095343, 0.31493243506648905, 2.2726660122099847, 3.515891800630189, 1.0162912634857333, 1.4222464172345588, 1.1509591667740178, 0.7414019570334662, 1.134105456079702, 1.3650871756387226, 1.9737991897698053, 1.6969657340501036, 0.8390583412050882, 2.9020852240026267, 0.6565280357070976, 1.0022901083130713, 1.2243315169048594, 1.181142896151652, 0.5187038642267019, 1.5040836611304118, 2.1450583843836566, 0.9326899724776722, 0.05250454262677007, 0.8280857187003923, 1.2734496074357475, 0.44965038031306814, 0.41380635581153136, 0.4022434297833498, 2.4416192558948886, 2.211024326485205, 0.5158153789426791, 0.805783634256195, 1.0192020146974798, 0.06560250591831995, 2.117703111458349, 1.5167588709142428, 1.1546089617530226, 0.9517509627978101, 2.061902277798543, 2.268776408184692, 2.687591080078806, 1.4117014447825333, 1.0801277391427326, 0.18706130360082873, 0.3170030463107544, 2.608347692563568, 1.8164087155634925, 2.4371967214599355, 0.12017124203881235, 1.3110845956367787, 1.5939522025522943, 2.34325091362328, 2.797373521134011, 3.0289917604267176, 1.667494342664794, 2.1397671666911675, 1.3110605422059096, 0.8980352322208935, 3.4880073922518693, 0.9122027901257738, 0.6177985173191862, 3.383075338847999, 1.4130134951210187, 0.9435879076268117, 1.492478511267723, 0.7772592463696326, 1.9419190055948838, 0.44381161723305396, 1.4262689738481011, 1.5209241199274688, 0.23679909462533566, 0.37648743223368053, 1.4336259467170176, 1.194252186532182, 2.4146153229563603, 1.8096163032858819, 1.0188202354563496, 2.8623616097666558, 0.7759220331603659, 0.8494845720671937, 1.5426903146079254, 2.7143442460768217, 1.240818951322062, 1.9377451297433597, 0.33333032959827114, 0.9091517560453366, 2.8941061710839167, 0.14187897176804687, 1.0983391215791893, 0.6617665034034825, 2.640033958072988, 3.7987162944021544, 1.5243139727298392, 0.5589917943702416, 2.4307106296067236, 2.3316300941738564, 0.551631472029585, 1.3630607788565314, 1.4179112882540084, 1.6251240621621275, 3.296052008942092, 0.2762066344520867, 1.1363406000100398, 0.641333028143514, 3.0847705231130687, 1.0280552756985126, 0.14440277058965612, 0.4169692262559759, 2.2953433691570133, 2.2177117575457705, 3.14945585827081, 2.22503314287922, 1.6663210391368115, 1.5229660805652494, 1.22088477844021, 1.0741757837407597, 0.4469280965588912, 1.301136768941749, 2.0994287970189207, 2.4177448733399878, 2.2187207616559546, 0.3663494298871971, 0.8828876055154656, 1.242629586989352, 0.4938654306167185, 0.410515494990069, 2.1240913093871, 0.5900545549454963, 0.23619919870275563, 2.977487914887215, 0.12541642334688174, 1.1489348484900095, 0.34863150182806435, 1.7333510279264877, 2.6925401567538265, 0.4022268345234369, 1.1738175432954348, 0.2185873084914779, 1.957633482493979, 1.2703772698069675, 0.5620993815407218, 1.7918374476897985, 0.05278973896560557, 2.434204116330627, 1.0782345823469015, 3.281387431148688, 0.0691603795747282, 0.9270864399183891, 3.129978695714084, 0.7189018743641661, 1.4286479883642578, 2.960467449283737, 0.6328026020501929, 0.37412528337129924, 0.34518466803308356, 0.35415163227875035, 2.3822998577405543, 3.065780599320977, 0.574181071756044, 1.2138405265846, 1.0784448205927313, 0.6520498273086761, 0.16392827608449323, 2.6148670458294454, 0.3042029848992951, 1.7179248046245958, 2.50536333599989, 0.5680409215298473, 2.4535203768704354, 0.18127164677863838, 1.8687614063913176, 0.2840321463534361, 1.3438949362632302, 1.2967383888176143, 1.6359354686257213, 0.01941535061356081, 0.546372858603712, 1.4429344703204503, 2.4377495834416263, 2.164768937326588, 0.5435644316930004, 1.4212388423067468, 2.165856969659901, 1.760242868963521, 0.7573052122406508, 0.6168231483782136, 1.7841274395770939, 1.5284049568628064, 0.10239546724527748, 1.2918607676849687, 3.0236046925809257, 1.5949270443458399, 3.3709185092764806, 1.3762149672590125, 1.062246130482685, 1.3530276633237577, 1.2034975761923894, 2.0167697866432697, 0.7820132228398882, 0.6899375931721607, 0.08035388233833862, 2.169621239572723, 1.5081275212296343, 0.9634810440237155, 2.8685539379220897, 0.5825419596217309, 1.5240852069818274, 0.9340959689093764, 0.78973638367366, 1.9174040299780035, 0.8780428377318834, 0.3663241900416463, 0.8778696874738636, 1.5069987038380181, 0.8929602242202236, 0.21635226100033844, 0.9489211703570216, 0.45274146996745745, 1.7232767858607754, 1.8973334207135228, 1.556859290426178, 0.3671478372616028, 2.4869177571581584, 2.104675113991061, 1.4125702199958807, 0.3501031788231367, 0.44270342002992735, 2.5111115838668043, 0.258153610568689, 1.4085399077478298, 1.2103419428618833, 1.8871436352315083, 1.8500028204193584, 2.7897205062541452, 3.816774932074517, 2.8745422384770922, 0.5182573201389942, 1.9244965940839023, 0.8108948224782957, 2.3704375980040404, 0.38250623501378256, 2.019614557631159, 1.0512937915235347, 0.7010492216290038, 2.012896124156234, 1.7038326338809444, 1.257966356820496, 1.227084267529183, 0.5939411822177236, 1.3900316841615408, 0.5974902072157109, 1.8192677035840146, 1.3339658531822005, 3.3348621298846157, 0.42311095194713666, 1.7254525175451962, 0.22615763793124122, 1.524632907604416, 3.130109302777611, 1.8988283670534911, 0.9812083880058002, 1.240093490013415, 1.1482352375229437, 0.7055805199210977, 0.3011944613461246, 1.084300407450197, 0.5281579179127651, 3.042116324372371, 1.9129792026210923, 2.002537478547592, 0.39787450362908505, 0.5028270500620475, 0.3328177840332843, 0.8133409352650394, 0.5926788374764365, 3.803781909340979, 1.2230339468791604, 0.9871572569175766, 2.2172040592252307, 1.011353255938253, 1.9487313862934004, 1.908668538642473, 0.9800406767685532, 1.0692674274689589, 1.0712839392836475, 0.2645313244939139, 0.08428734828509954, 1.4639767384615943, 0.21496833830357176, 3.4671890377520738, 0.5370967309142204, 0.23379836751885186, 3.5568805273325723, 0.6577484977946806, 1.301142792263413, 0.5460315242983521, 0.14912813943929515, 1.9005003600049237, 0.09237034722468485, 1.0407937829714924, 3.336125689251777, 0.979885082510114, 1.3582129983759919, 2.9918531083101705, 0.028232088881630202, 0.608842776633516, 2.1292336436163426, 0.4216734386705019, 2.0599270343720875, 1.1300372677443578, 1.337197807712273, 1.170781287967531, 0.14272792998973316, 0.8581710093930683, 2.2105411372159236, 0.7591275597330652, 4.038935423498882, 2.2636403697055325, 0.9294176866272409, 3.1762807842488106, 1.7624681725938112, 0.2566954588556952, 0.8136986911947587, 3.433651955849628, 0.48066225755699465, 0.11425651227264733, 0.5538786698827836, 1.6114346721628134, 1.1528943930556055, 3.9345635943861903, 0.9573495077794433, 0.5568498052296645, 0.15532947187105484, 1.8220764620934524, 1.5433099772082362, 0.08599093840979333, 0.7090094213672604, 0.021466279115728515, 1.6256554203340428, 0.7097257795081413, 1.484177928451031, 2.076857794806229, 0.5403551246711138, 0.10121811351806109, 2.3383800865565902, 2.6052027137773477, 1.5958927363114377, 2.0968952823737177, 2.0773235208750194, 1.17066757175528, 1.955771941120945, 2.6490454612397007, 0.561605326118706, 0.7909899441412135, 2.8240682789337086, 0.5945983738108114, 0.8929085591283844, 1.8525252666396623, 1.3354689902173553, 1.386463819109001, 1.0443186403510825, 0.6559045064880451, 2.6656049505253137, 0.8485201037580541, 0.5150516020360221, 0.07810173940276066, 0.9869313837201612, 2.1107855438874203, 0.7456789049565532, 1.2278917132443394, 0.00912811174985606, 3.243959512595764, 0.6687522396519426, 0.790368389042654, 0.7562957591834162, 1.5350780073546615, 1.2337376860235958, 1.7149038350139487, 3.3679909498949105, 2.6376020559139635, 0.9268526821495264, 1.977279839742649, 2.3607830115145543, 0.8650005159731046, 0.6863105934361695, 2.4699570393808674, 2.4150745493005035, 2.485985697509868, 1.475787014778866, 2.2598994040169664, 2.7366790475614495, 0.4281810059847473, 1.982735816709329, 1.4192186811364027, 2.35862049941936, 2.6528363378799558, 0.09763581638721908, 1.3486936502513138, 1.7793948487762674, 0.1886944633670048, 0.12729461081951, 1.27723925483655, 1.779184144809045, 1.0665690317648608, 2.6614918908130503, 1.1759596958508312, 0.1388285477566953, 2.6450463701984033, 0.6610687326062039, 0.19356905056355567, 1.873144714474966, 1.2082353714502028, 1.6707860984412193, 1.6618720957417685, 0.2119965322161994, 0.34020546401883756, 2.6050851761475395], \"z\": [4.186402508805773, 2.9466406856414933, -2.788157779683302, 2.3146865522481725, -2.0043405850539933, -1.6420254786233506, -2.9050269888036055, -3.5865030628211643, -3.883135009339169, -3.666138353210056, -2.1703099402845734, 1.6036044145309543, -3.189891841065954, -2.2948659100441464, -0.6721964770880509, -3.118377662362411, -0.024781384986052757, 0.37264627702650976, -4.231561886381974, 3.4207878178219, -1.6758189554118643, 3.038258024615817, -0.5473159993505536, -0.17023549293036044, -2.365598847583424, 2.2173106714707567, 2.5027846205704654, 4.031211668053333, 2.635808728235509, -3.639743316448339, -1.4732907535898825, 1.5316433917752006, -0.9411803774153733, -2.414798146174795, 3.467076792838765, -0.2826222049292446, 0.6836569875776979, -0.9567620967917305, -3.23439670065485, 0.6012455407343129, 3.774767019482975, 0.48787576564633905, -2.539182815427546, -2.5946821391339654, 2.488376765733192, 1.687945141439731, -3.5774982277304384, -1.9327327357786457, -2.911147617227771, -3.888545557201392, -1.266793211684952, 1.7846673976514857, -3.4572319433640066, -1.0489206851910065, -3.403446823569533, -1.0480303975682843, 0.08024798006649903, -0.9919859698983053, 3.901662599486632, -0.8912783834798743, 3.5359700645764844, 1.2652277250595834, -2.650005343856931, 3.1086485686171708, 0.15658925024344494, 1.5482043642093357, -0.38779807585816206, 1.1601973459173145, -0.36765018314288644, -2.8050734587847246, -2.8644295451734427, -3.5836486277999455, -3.9396122095270356, 1.3517279790883645, -3.621618802024988, 3.2434120250115326, 1.005630142170114, 1.7251767553213373, 3.6268105806305853, -3.0356665365096425, -1.005267943801651, -3.2946061077913047, 1.1531635014247996, 0.2188514761023086, -1.831583650042265, 0.16857622601441857, 3.3853738232475106, -3.4992792775343, 3.4373746669812526, -3.8985836869389607, 3.76209391630113, 2.0458938319682725, 3.1356756230933955, 4.24375140852523, -0.9320378549836978, -0.9324371320861835, -4.235867884069135, -0.46500634090614756, -1.1604177509269173, -1.796855643783041, 0.8209444150444831, 3.329642136793245, -1.6892390647846676, -1.5292704575494023, -0.9030785472207925, -1.0005954596713296, 1.1377133722170978, 3.7485247398403407, 2.8306524211313544, 0.2925206816074528, 4.278980296086885, 4.21868188907541, -3.06739104026311, 3.6356799316511275, 0.28612722143173386, -2.198939874431836, 0.07828910363794961, 3.7731844696124464, 1.822253511303332, 1.4209484467210132, -2.301781531702984, -1.7991083502442762, 1.9583237859519604, 1.2340993131653901, 1.121198418161348, 2.5253305668381554, 2.100383196688724, 2.7521246979695313, 2.7678136670240434, 0.5437298445501977, -3.517655808570767, 1.2576309767787341, 1.4081586201360992, 0.12229574244666086, -2.890119891422823, 0.7435346073001359, -2.1437179105652246, -0.3517882483825381, 0.7582826639835378, -0.43015430412996114, 1.8435592398923886, 2.9909292679028523, 3.7941892779351507, -2.01786269881562, -3.482078760471544, 2.644166364828992, 0.8079401162052822, 3.2428644130671422, -3.710992673977719, 1.678095500816255, -1.0948335576845754, 2.153087700308273, -3.0597897486449463, 0.811381096673351, -0.3647242495549752, 3.6610266588750617, -2.6460614628556973, 3.0264161532272515, -2.392833885756348, -3.3032026715332408, 0.22930948869305112, -4.092787786585582, 3.546503873687244, 3.455861469277961, 2.1394358635734934, 2.115250403535237, -1.2720357269129696, 1.4216864388014967, -0.5208867947589231, 1.9893688123970676, 1.7546142863614884, 0.8416303277658059, 0.9454438919804113, -4.198515132103789, -0.961135652813423, 2.823210874704273, -0.40145352743562146, -2.694991881141423, -0.8834159836092308, 2.2752257363056563, 3.0971601810907794, 2.296719855409343, 3.9193424949753846, 2.6348516078943005, 4.0639527467888135, -1.1039143249744603, 3.269294880338421, -2.765016816391647, -1.8512589956178855, 3.5998580113182967, -0.8266875949156933, 0.1052835217500494, 1.0110265564180283, -0.9028095635086149, 3.2837402250478123, 3.8348374680915596, 0.5904196408446358, 2.0135912550382358, -4.005957608031209, 0.9152916324171674, 0.4319741329497413, -2.292340013909238, -3.2081018566424557, -0.3633895328329375, -3.662399260693108, 2.8013495987558974, 2.2871522333486327, -3.450618202131362, -0.9282850057694629, 2.3021347443695426, 1.6361137003294353, -3.400787458203971, -4.022632479183336, 1.3690446522693804, 3.6461219393759476, -0.7312571786503006, 3.733390208785745, 3.891251407585348, -2.212292488301088, -2.9532348488573037, -0.7598759681699332, -3.7447487647588256, -0.030719766683677818, -2.2521003472494954, 1.0741263791239746, 1.1443473383709906, -2.190565171495842, -2.3078486413347967, 1.681407167228179, -0.15401409370460772, 4.190598470947545, -0.35050378916269365, 2.623224441842673, -0.13506704827645777, -3.2831546740848365, 0.9099351596520755, 2.4697061129231974, -3.144141348211156, 0.3295196328299994, 1.2158678565011822, 1.2214640642612373, 0.9191819808824802, -2.2217902249287103, -1.2453583865481566, 2.5005827571317294, -0.468629490562245, 1.5859739533434167, 2.0077323565428147, -0.2190221373189356, 3.672768719748416, -4.012465283691254, 0.09218909222475347, 2.428441315940656, -1.2175126593578196, -1.8612366330102845, -0.07976209188896632, 1.7550772468561835, -1.5786419991948062, 0.25292117954210447, -4.070398011603419, 1.8825868236242052, 2.5603321290727665, -0.9648441141891118, -0.3045378440834665, 0.4458202124344979, 3.973506354368472, 0.2112470786871219, 0.4317161087997601, -2.6314856291648043, -1.344060269246509, 3.9153445725601346, -3.3465301337328803, -3.6354981426916275, -0.00965602564562218, 2.3804134293137853, 2.6218383900918116, -3.073141434266984, 4.004976452147987, -3.21441776943751, 0.6659015763517475, 3.1727037595116094, -1.4206971612100174, 1.489581419079741, 3.5769525382823417, -3.8825946295227456, -2.4042139032726793, -1.4542454550277668, -4.062445584130047, 1.6730142581172167, -0.30538605536894803, -2.1471017203758045, -0.15299199986163092, 4.25170380195481, -2.60998747454724, -1.5302588877345085, 3.165173908408902, -3.385374279483872, -2.395914122806987, -2.978885302673405, -2.503030642498061, 2.2200980389225116, -0.8291207692672597, 3.703753402346841, 1.473036351621837, 0.6715876708304345, 1.6562998248189187, -0.8322086215667959, -2.071778377029624, -0.7242569185131629, -3.4028777193198168, -0.011443053516653201, 0.9561559904703607, -2.2216033626895264, 2.2572482149997377, -1.015779774257902, 1.693293090965538, 2.6836924002336815, 1.111315329725044, -2.5195903256065533, 4.161864965212545, -3.342576731819867, 2.173220961443488, -0.4070307840553702, 1.9346836543432033, -1.6750369666779892, -4.195021139871202, 3.6803446731344103, 0.7547383474838973, -2.8711646566259588, -2.5528013683306723, -2.685902680862543, 0.5337748790329115, 2.7857164186348857, -2.9129275927351896, -2.468183573810764, 0.08546322031723363, 0.4316691235682555, -4.092763028942487, -3.6977667606699303, -2.27723239765702, 3.8544535259089843, 4.328430528374734, 0.5586982630934267, 0.08937963620252631, 3.872771489804834, -3.055627660795164, -2.4166335131969667, 1.3495985022459571, -0.8712680863805775, 3.7338639029173466, -0.1632548162430112, 4.151543943206682, 0.8974202937847586, 0.11871763427135118, -3.2562464454281868, -0.31479246442026154, 0.6330869640916452, -0.47301837046449524, 2.879511660254088, 2.8188050933874926, 2.4823129901694356, 2.658635564367194, -4.093786283717344, 4.286681697019586, -2.098183905314303, -2.1527742786130823, 0.27078198542885357, 0.9663451345740723, 2.5298183083171732, -3.498567567540487, -3.176894022200425, 0.12046489457375298, -1.5150498051267651, -0.6868146157965294, -1.2605769901609891, -2.0836436284467097, -3.0871906108142393, -1.6625367391953807, -3.9896387417012322, 1.7601684096870907, 0.501612316543171, 2.153722631264155, -2.8501972605497565, 2.413857979335445, -3.0147545328162497, 0.3782147543670611, -0.5796438036882838, -0.7160548458324003, -0.1521698013221533, -3.1269010009519587, -3.8090663802964326, -0.7862243940784173, -1.892546726445016, -2.141754088954957, 1.034977920169661, 0.3241019856091656, -3.8690302816383273, -2.8064943699445255, -1.63230308165444, 0.8778940929115429, 2.750173308830777, -4.190727726615172, 3.7999075065636623, 2.0368125134890898, -1.769113541783562, 0.8798736162472514, 3.7446200802120515, 0.5040624684078088, -1.4748022464910724, 3.5704234006038424, 0.3299483319800647, 0.8216448581946505, 2.45694807487377, -4.118048936842813, -2.226977844301231, -0.11982765592003819, 0.7302905710734144, -0.7418236963768865, -1.4081813135031913, 0.857981563151224, 3.4285321129200206, -3.47904440548908, -1.1461924659550156, 1.5179706758862856, -0.4864296848081149, 1.8529312345106383, 0.3889583905571179, -3.124749525221231, 2.621363742394224, -3.4186912790488937, -1.4567365223221107, -2.0501413689040957, 3.114750545977043, 1.8054286301441973, 3.175852059117557, -0.798967349726504, 2.2804193417026024, 3.6214365954973067, 3.238163780499754, -4.033710523519329, 1.4880450388538726, 3.7957024875207237, -2.8788075279465946, 3.387354675250248, 3.6733467838073146, -1.4711466495836736, 1.9753416808421411, -0.9123915691579998, 0.7717109550144015, -1.3303993154524973, -4.039812253735011, -0.16192578509557087, -3.70748679754254, 0.9858564444661813, 0.9298509434023838, -1.3120296823390878, 3.7663486823420262, -3.1615886175291474, 2.8281618337376973, -2.6970871214426877, 0.720304297788589, 1.949592270148802, -2.7979753582193894, 3.135103778459878, 0.6139348824929396, 4.282392242241712, 1.7203139551750004, 2.1770851245181024, 3.992349392503061, 1.594349404602517, 0.5962697981369978, 3.3467968872381686, 2.9478885615921078, -3.3080006009743532, 3.310551771965402, -2.8234880823716204, 3.016743801851465, -4.100929711137224, -1.2192041506517022, -1.423835187762144, -0.038306185257138026, 1.256786127898704, 1.721448256517765, 0.9831783718417242, 3.419636765123558, -0.7467870869918345, 1.0618641236005706, -1.5004233488398038, -2.385685898914357, -1.0800815643634145, 2.316729518490905, -1.4422297163684643, 4.290599591438498, 3.380711520134179, 0.6379879487177567, -3.821047982256279, 3.0414742259019834, -3.2218738957960475, 1.5992572309270061, 2.0885676821282573, 1.0539801124709474, 0.21747265005131755, 0.40102972654703617, -3.9905857812023218, 4.153835639053891, -2.4549558757704215, 1.0711863340869625, -0.13194888552637707, -0.35072321224479985, 0.1644761031792088, -1.8846519994216835, -0.9241148386472622, 2.6447449966770087, 2.7346901247574236, -2.6045974846902977, 0.45464463042523207, 2.418941799484398, -2.951231696974925, 1.4371726338907127, -1.3032633848301574, -0.5584212152968537, 3.460690631994484, 3.1820542302373944, -4.039976761680008, 2.19762535298117, -2.5514150965547415, 2.672609772381975, 0.025492301945316598, 0.19543649979026245, 2.899421761248089, 2.076105431671147, 0.015944301861069654, -2.30375769271253, -2.8978159436703494, -4.254385991445501, -3.866445830700811, 0.933150184813039, -4.068659090301838, 4.338570533140598, -1.2388858392195035, 4.331525968715492, 4.254909348391512, 2.8596186529276295, -0.6170199736514386, -1.0406947149893537, 1.5280603909104027, 4.164283728411143, 2.0078465483903036, -2.5682040983619254, 2.066107863344315, -0.6150571202099764, 2.805094322236801, 0.3877369318857511, 1.5343805842888223, -2.6067016755581545, 0.5454663845476864, -0.744799179958314, -3.438553605279921, 4.061362880607363, -3.2410674242074125, -1.5239675885331967, 0.6665976578256867, -1.5695137641579966, 2.550345576583881, -2.4033393793183166, 0.4582435490490715, 3.3867102561010904, 0.8467616961550917, -2.444657318718346, 1.292572735865976, -1.4198316083232108, 0.45822453931902984, 1.4745783018748755, 2.124345694698727, -3.8825799579788964, 2.395579997005896, -1.636572194358091, 1.5501428566238928, -3.913584390408834, 1.7388881415761146, 2.882831309761804, -3.654258864810181, 2.052912454755739, -3.780543571629146, 0.22991169285057023, -0.6069569603454363, -2.651896726322237, -1.0133197818411062, -2.6897128152771517, 1.1057842300392622, -2.9554374192691406, 0.23274265555761353, -3.181650912212775, 0.06414918724518515, 3.919248530885045, -1.3796134854847502, 2.19837467970022, 2.634844929175002, 1.9076250271852588, 2.849194616022806, 2.9950941484388176, -2.6882195374144873, -1.8208018181181531, 4.071009022667725, -1.4382328661267465, 0.7475194324591854, 0.03891503137641461, 3.620661527170161, 3.8608212664671404, 3.3542339601216398, 2.2532319994964958, 0.06798060529017302, 4.111941941173215, -2.575716681243887, 2.696125428397525, 0.8453367391291611, 0.8413236351271918, 0.46057516282432776, -3.509011204925572, 3.877287687038719, -0.6672220544953817, -0.8904310431429336, -0.7541115351316474, -0.6783110868061226, -2.8220662676083235, 1.1078648569788356, -0.035799079693065394, -3.376937304326402, -0.05848189012988758, -3.1709623177764756, 2.2015385128324594, 1.7053276540485314, 0.5870208824273435, 2.2217465192558947, 3.7281020631400823, 3.5674134755454396, -1.7057507477826026, -0.9420720901157451, 1.7064199229681316, 3.4873779608735322, 1.991285575568761, 2.639506913678768, 2.44643671741124, 2.578760170616989, -0.4924906393082362, -1.004170600057002, 0.047805753440279375, 2.9611193121317028, -1.5395184986401134, 0.12824188130024883, 4.2214553468308305, -4.109456149920523, 1.3128925770164788, 2.983485255828592, 2.8412845294078943, 1.5707230415970939, 0.8844891221056681, -3.3829714921832914, 1.871193214437561, 2.9850522208098837, -1.0577573286300823, -0.7179590979879329, 1.1181693466161455, 2.1384281578622977, 1.7877881521468435, -0.09438323662943215]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 2\", \"marker\": {\"color\": \"rgb(44, 160, 44)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 2\", \"scene\": \"scene\", \"showlegend\": true, \"text\": [\"1332_l_2_m-0_0.1-1_0.4-2_0.08-3_1.02\", \"1333_l_2_m-0_1.42-1_0.49-2_0.11-3_0.17\", \"1334_l_2_m-0_0.41-1_0.13-2_0.63-3_0.36\", \"1335_l_2_m-0_1.18-1_0.06-2_0.66-3_0.16\", \"1336_l_2_m-0_0.42-1_0.02-2_0.37-3_0.04\", \"1337_l_2_m-0_0.92-1_0.44-2_0.07-3_0.07\", \"1338_l_2_c_0_1_3-0_0.24-1_0.21-2_0.22-3_0.16\", \"1339_l_2_c_0_1_3-0_0.21-1_0.24-2_1.39-3_0.32\", \"1340_l_2_c_0_1_3-0_0.02-1_0.11-2_0.95-3_0.42\", \"1341_l_2_c_0_1_3-0_0.14-1_0.17-2_0.95-3_0.05\", \"1342_l_2_c_0_1_3-0_0.87-1_0.24-2_0.49-3_0.38\", \"1343_l_2_c_0_1_3-0_0.49-1_0.63-2_0.09-3_0.15\", \"1344_l_2_c_0_1_3-0_0.25-1_0.85-2_0.58-3_0.21\", \"1345_l_2_c_0_1_3-0_0.21-1_0.33-2_1.06-3_0.13\", \"1346_l_2_c_0_1_3-0_0.03-1_0.24-2_0.27-3_0.41\", \"1347_l_2_c_0_1_3-0_0.98-1_1.27-2_0.12-3_0.24\", \"1348_l_2_c_0_1_3-0_1.0-1_0.42-2_0.53-3_0.01\", \"1349_l_2_c_0_1_3-0_0.04-1_0.54-2_0.13-3_0.87\", \"1350_l_2_c_0_1_3-0_0.62-1_0.27-2_0.26-3_0.12\", \"1351_l_2_c_0_1_3-0_0.76-1_0.19-2_1.3-3_0.85\", \"1352_l_2_c_0_1_3-0_0.83-1_0.72-2_0.03-3_0.28\", \"1353_l_2_c_0_1_3-0_0.06-1_0.02-2_0.58-3_0.15\", \"1354_l_2_c_0_1_3-0_0.2-1_0.75-2_0.25-3_0.44\", \"1355_l_2_c_0_1_3-0_0.0-1_0.01-2_0.07-3_0.62\", \"1356_l_2_c_0_1_3-0_0.51-1_0.13-2_0.03-3_0.09\", \"1357_l_2_c_0_1_3-0_0.72-1_0.08-2_1.79-3_0.38\", \"1358_l_2_c_0_1_3-0_0.87-1_0.38-2_0.45-3_0.25\", \"1359_l_2_c_0_1_3-0_0.52-1_0.96-2_0.35-3_0.08\", \"1360_l_2_c_0_1_3-0_0.73-1_0.19-2_1.06-3_1.11\", \"1361_l_2_c_0_1_3-0_0.08-1_0.12-2_0.29-3_0.16\", \"1362_l_2_c_0_1_3-0_0.13-1_0.07-2_0.47-3_0.28\", \"1363_l_2_c_0_1_3-0_0.34-1_0.38-2_0.97-3_0.13\", \"1364_l_2_c_0_1_3-0_0.36-1_0.03-2_0.55-3_0.14\", \"1365_l_2_c_0_1_3-0_0.96-1_0.15-2_0.39-3_0.17\", \"1366_l_2_c_0_1_3-0_0.04-1_0.05-2_0.35-3_0.68\", \"1367_l_2_c_0_1_3-0_0.9-1_0.28-2_0.42-3_0.21\", \"1368_l_2_c_0_1_3-0_0.14-1_0.14-2_0.23-3_0.14\", \"1369_l_2_c_0_1_3-0_0.19-1_0.39-2_1.23-3_0.28\", \"1370_l_2_c_0_1_3-0_0.48-1_0.16-2_0.02-3_0.35\", \"1371_l_2_c_0_1_3-0_0.05-1_0.35-2_0.66-3_0.11\", \"1372_l_2_c_0_1_3-0_0.65-1_0.13-2_0.57-3_0.6\", \"1373_l_2_c_0_1_3-0_0.55-1_0.26-2_0.35-3_0.83\", \"1374_l_2_c_0_1_3-0_0.15-1_0.87-2_0.89-3_0.16\", \"1375_l_2_c_0_1_3-0_0.19-1_0.53-2_0.43-3_0.14\", \"1376_l_2_c_0_1_3-0_0.18-1_0.33-2_0.74-3_0.13\", \"1377_l_2_c_0_1_3-0_0.52-1_0.07-2_0.62-3_0.42\", \"1378_l_2_c_0_1_3-0_0.02-1_0.08-2_1.53-3_0.11\", \"1379_l_2_c_0_1_3-0_0.35-1_0.08-2_0.37-3_0.76\", \"1380_l_2_c_0_1_2-0_0.32-1_0.35-2_0.05-3_0.08\", \"1381_l_2_c_0_1_3-0_0.14-1_0.78-2_0.65-3_0.11\", \"1382_l_2_c_0_1_2-0_0.1-1_0.14-2_0.34-3_1.03\", \"1383_l_2_c_0_1_3-0_0.82-1_0.05-2_0.24-3_0.76\", \"1384_l_2_c_0_1_2-0_0.07-1_0.35-2_0.01-3_1.09\", \"1385_l_2_c_0_1_3-0_0.37-1_0.17-2_1.62-3_0.09\", \"1386_l_2_c_0_1_2-0_0.54-1_0.05-2_0.54-3_0.3\", \"1387_l_2_c_0_1_3-0_0.13-1_1.2-2_0.96-3_0.04\", \"1388_l_2_c_0_1_2-0_0.44-1_0.34-2_0.04-3_0.63\", \"1389_l_2_c_0_1_3-0_0.64-1_0.04-2_0.78-3_0.06\", \"1390_l_2_c_0_1_2-0_0.24-1_0.7-2_0.58-3_0.95\", \"1391_l_2_c_0_1_3-0_1.0-1_0.24-2_0.98-3_0.45\", \"1392_l_2_c_0_1_2-0_0.31-1_0.03-2_0.05-3_0.08\", \"1393_l_2_c_0_1_3-0_0.53-1_0.44-2_0.94-3_0.65\", \"1394_l_2_c_0_1_2-0_0.14-1_0.16-2_0.75-3_0.99\", \"1395_l_2_c_0_1_3-0_0.23-1_0.67-2_0.27-3_0.26\", \"1396_l_2_c_0_1_2-0_0.32-1_0.77-2_0.22-3_0.72\", \"1397_l_2_c_0_1_3-0_0.12-1_0.13-2_0.75-3_0.11\", \"1398_l_2_c_0_1_2-0_0.34-1_0.15-2_0.36-3_0.93\", \"1399_l_2_c_0_1_3-0_0.69-1_0.29-2_1.08-3_0.5\", \"1400_l_2_c_0_1_2-0_0.17-1_0.2-2_0.04-3_0.4\", \"1401_l_2_c_0_1_3-0_0.72-1_0.25-2_0.39-3_0.1\", \"1402_l_2_c_0_1_2-0_0.25-1_0.01-2_0.03-3_0.66\", \"1403_l_2_c_0_1_3-0_0.07-1_0.63-2_0.93-3_0.48\", \"1404_l_2_c_0_1_2-0_0.32-1_0.24-2_0.61-3_1.56\", \"1405_l_2_c_0_1_3-0_0.19-1_0.13-2_0.51-3_0.55\", \"1406_l_2_c_0_1_2-0_0.8-1_0.33-2_0.23-3_0.34\", \"1407_l_2_c_0_1_3-0_0.1-1_0.15-2_0.56-3_0.77\", \"1408_l_2_c_0_1_2-0_0.84-1_0.06-2_0.47-3_0.17\", \"1409_l_2_c_0_1_3-0_0.01-1_0.03-2_0.47-3_0.57\", \"1410_l_2_c_0_1_2-0_0.07-1_0.1-2_0.14-3_0.14\", \"1411_l_2_c_0_1_3-0_0.5-1_0.19-2_1.55-3_0.55\", \"1412_l_2_c_0_1_2-0_0.83-1_0.01-2_0.02-3_0.76\", \"1413_l_2_c_0_1_3-0_0.24-1_0.57-2_0.53-3_0.05\", \"1414_l_2_c_0_1_2-0_0.4-1_0.27-2_0.23-3_0.43\", \"1415_l_2_c_0_1_3-0_0.64-1_0.66-2_0.7-3_0.67\", \"1416_l_2_c_0_1_2-0_0.09-1_0.95-2_0.8-3_0.57\", \"1417_l_2_c_0_1_3-0_0.12-1_0.27-2_0.02-3_0.69\", \"1418_l_2_c_0_1_2-0_0.02-1_0.31-2_0.62-3_0.33\", \"1419_l_2_c_0_1_3-0_0.19-1_0.14-2_0.02-3_0.26\", \"1420_l_2_c_0_1_2-0_0.5-1_0.02-2_0.07-3_1.04\", \"1421_l_2_c_0_1_3-0_0.09-1_0.05-2_0.12-3_0.44\", \"1422_l_2_c_0_1_2-0_0.03-1_1.15-2_0.84-3_1.68\", \"1423_l_2_c_0_1_3-0_0.3-1_0.14-2_0.57-3_0.45\", \"1424_l_2_c_0_1_2-0_0.81-1_0.89-2_0.09-3_0.5\", \"1425_l_2_c_0_1_3-0_0.23-1_0.05-2_0.82-3_0.49\", \"1426_l_2_c_0_1_2-0_0.23-1_0.44-2_0.32-3_1.59\", \"1427_l_2_c_0_1_3-0_0.18-1_0.18-2_0.8-3_0.65\", \"1428_l_2_c_0_1_2-0_0.48-1_0.58-2_0.04-3_0.63\", \"1429_l_2_c_0_1_3-0_0.34-1_0.27-2_0.51-3_0.38\", \"1430_l_2_c_0_1_2-0_0.09-1_1.64-2_0.09-3_0.81\", \"1431_l_2_c_0_1_3-0_0.22-1_0.18-2_1.22-3_0.29\", \"1432_l_2_c_0_1_2-0_0.15-1_0.32-2_0.43-3_0.74\", \"1433_l_2_c_0_1_3-0_0.68-1_0.56-2_0.4-3_0.14\", \"1434_l_2_c_0_1_2-0_0.1-1_0.72-2_0.0-3_0.32\", \"1435_l_2_c_0_1_3-0_0.46-1_0.2-2_1.3-3_0.45\", \"1436_l_2_c_0_1_2-0_0.48-1_0.15-2_0.07-3_0.11\", \"1437_l_2_c_0_1_3-0_0.54-1_0.09-2_1.14-3_0.51\", \"1438_l_2_c_0_1_2-0_0.23-1_0.05-2_0.21-3_0.64\", \"1439_l_2_c_0_1_3-0_1.13-1_0.47-2_1.55-3_0.67\", \"1440_l_2_c_0_1_2-0_0.01-1_0.44-2_0.15-3_0.81\", \"1441_l_2_c_0_1_3-0_0.67-1_0.28-2_0.52-3_0.17\", \"1442_l_2_c_0_1_2-0_0.35-1_0.02-2_0.64-3_0.38\", \"1443_l_2_c_0_1_3-0_0.21-1_0.36-2_0.4-3_0.0\", \"1444_l_2_c_0_1_2-0_0.45-1_0.23-2_0.32-3_1.44\", \"1445_l_2_c_0_1_3-0_0.69-1_1.13-2_0.28-3_0.64\", \"1446_l_2_c_0_1_2-0_0.06-1_0.67-2_0.21-3_0.63\", \"1447_l_2_c_0_1_3-0_0.5-1_0.9-2_0.38-3_0.43\", \"1448_l_2_c_0_1_2-0_0.09-1_0.54-2_0.29-3_0.99\", \"1449_l_2_c_0_1_3-0_0.25-1_0.46-2_1.75-3_0.99\", \"1450_l_2_c_0_1_2-0_0.04-1_0.03-2_0.11-3_0.05\", \"1451_l_2_c_0_1_3-0_0.26-1_0.1-2_0.61-3_0.95\", \"1452_l_2_c_0_1_2-0_0.11-1_0.11-2_0.09-3_0.01\", \"1453_l_2_c_0_1_3-0_1.16-1_0.36-2_1.21-3_0.67\", \"1454_l_2_c_0_1_2-0_0.32-1_0.08-2_0.01-3_0.19\", \"1455_l_2_c_0_1_3-0_0.45-1_0.11-2_0.85-3_0.41\", \"1456_l_2_c_0_1_2-0_0.04-1_0.31-2_0.28-3_0.28\", \"1457_l_2_c_0_1_3-0_0.05-1_0.27-2_0.17-3_0.19\", \"1458_l_2_c_0_1_2-0_0.11-1_0.02-2_0.02-3_0.31\", \"1459_l_2_c_0_1_3-0_0.15-1_0.5-2_0.61-3_0.62\", \"1460_l_2_c_0_1_2-0_0.02-1_0.56-2_0.1-3_0.53\", \"1461_l_2_c_0_1_3-0_0.42-1_0.43-2_1.3-3_0.32\", \"1462_l_2_c_0_1_2-0_0.42-1_0.11-2_0.88-3_0.95\", \"1463_l_2_c_0_1_3-0_0.11-1_0.59-2_0.11-3_0.84\", \"1464_l_2_c_0_1_2-0_0.18-1_0.16-2_0.16-3_0.67\", \"1465_l_2_c_0_1_3-0_0.35-1_0.95-2_0.06-3_0.27\", \"1466_l_2_c_0_1_2-0_0.1-1_0.82-2_0.11-3_2.07\", \"1467_l_2_c_0_1_3-0_0.48-1_0.43-2_0.41-3_0.68\", \"1468_l_2_c_0_1_2-0_0.79-1_1.31-2_0.01-3_0.09\", \"1469_l_2_c_0_1_3-0_0.07-1_0.15-2_0.4-3_0.79\", \"1470_l_2_c_0_1_2-0_0.34-1_0.41-2_0.42-3_1.09\", \"1471_l_2_c_0_1_3-0_0.01-1_0.16-2_0.31-3_0.55\", \"1472_l_2_c_0_1_2-0_0.13-1_0.24-2_0.05-3_0.43\", \"1473_l_2_c_0_1_3-0_0.11-1_0.14-2_0.97-3_0.33\", \"1474_l_2_c_0_1_2-0_0.25-1_0.65-2_0.05-3_0.7\", \"1475_l_2_c_0_1_3-0_0.2-1_0.5-2_1.36-3_0.61\", \"1476_l_2_c_1_2_3-0_0.54-1_0.22-2_0.69-3_0.14\", \"1477_l_2_c_0_1_2-0_0.0-1_0.54-2_0.34-3_0.17\", \"1478_l_2_c_0_1_3-0_0.02-1_0.69-2_0.46-3_0.3\", \"1479_l_2_c_1_2_3-0_0.56-1_0.47-2_0.12-3_0.17\", \"1480_l_2_c_0_1_2-0_0.01-1_0.13-2_1.01-3_0.7\", \"1481_l_2_c_0_1_3-0_1.94-1_0.32-2_1.25-3_1.17\", \"1482_l_2_c_1_2_3-0_0.8-1_0.49-2_0.03-3_0.15\", \"1483_l_2_c_0_1_2-0_0.06-1_0.13-2_0.59-3_0.21\", \"1484_l_2_c_0_1_3-0_0.73-1_0.05-2_0.68-3_0.0\", \"1485_l_2_c_1_2_3-0_0.93-1_0.11-2_0.22-3_0.25\", \"1486_l_2_c_0_1_2-0_0.32-1_1.15-2_0.2-3_0.19\", \"1487_l_2_c_0_1_3-0_0.05-1_0.46-2_0.55-3_0.18\", \"1488_l_2_c_1_2_3-0_0.45-1_0.36-2_0.69-3_0.08\", \"1489_l_2_c_0_1_2-0_0.73-1_0.25-2_0.19-3_0.85\", \"1490_l_2_c_0_1_3-0_0.26-1_0.0-2_1.11-3_0.23\", \"1491_l_2_c_1_2_3-0_0.85-1_0.04-2_0.41-3_0.4\", \"1492_l_2_c_0_1_2-0_0.56-1_0.17-2_0.03-3_0.84\", \"1493_l_2_c_0_1_3-0_0.25-1_0.09-2_1.13-3_0.04\", \"1494_l_2_c_1_2_3-0_1.9-1_0.86-2_0.18-3_0.06\", \"1495_l_2_c_0_1_2-0_0.41-1_0.15-2_0.4-3_1.38\", \"1496_l_2_c_0_1_3-0_0.14-1_0.48-2_0.11-3_1.05\", \"1497_l_2_c_1_2_3-0_0.24-1_0.41-2_0.08-3_0.28\", \"1498_l_2_c_0_1_2-0_0.13-1_0.45-2_0.26-3_0.61\", \"1499_l_2_c_0_1_3-0_0.97-1_0.47-2_1.06-3_1.09\", \"1500_l_2_c_1_2_3-0_0.81-1_0.73-2_0.19-3_0.06\", \"1501_l_2_c_0_1_2-0_0.48-1_0.01-2_0.17-3_0.89\", \"1502_l_2_c_0_1_3-0_0.04-1_0.21-2_0.53-3_0.8\", \"1503_l_2_c_1_2_3-0_1.16-1_0.4-2_0.41-3_0.36\", \"1504_l_2_c_0_1_2-0_0.56-1_0.17-2_0.17-3_0.17\", \"1505_l_2_c_0_1_3-0_0.0-1_0.14-2_0.15-3_0.12\", \"1506_l_2_c_1_2_3-0_0.05-1_0.7-2_0.22-3_0.37\", \"1507_l_2_c_0_1_2-0_0.13-1_1.81-2_0.1-3_0.65\", \"1508_l_2_c_0_1_3-0_0.28-1_0.42-2_0.42-3_0.1\", \"1509_l_2_c_1_2_3-0_0.14-1_0.42-2_0.29-3_0.33\", \"1510_l_2_c_0_1_2-0_0.56-1_0.72-2_0.21-3_0.45\", \"1511_l_2_c_0_1_3-0_0.52-1_0.02-2_0.45-3_0.45\", \"1512_l_2_c_1_2_3-0_0.07-1_0.06-2_0.08-3_0.43\", \"1513_l_2_c_0_1_2-0_0.88-1_0.55-2_0.1-3_0.3\", \"1514_l_2_c_0_1_3-0_0.25-1_0.01-2_0.35-3_0.15\", \"1515_l_2_c_1_2_3-0_0.37-1_0.07-2_0.54-3_0.12\", \"1516_l_2_c_0_1_2-0_0.44-1_0.6-2_0.01-3_0.93\", \"1517_l_2_c_0_1_3-0_0.03-1_0.28-2_1.39-3_0.11\", \"1518_l_2_c_1_2_3-0_0.73-1_0.6-2_0.02-3_0.05\", \"1519_l_2_c_0_1_2-0_0.19-1_0.11-2_0.33-3_0.53\", \"1520_l_2_c_1_3-0_0.89-1_0.32-2_1.39-3_0.89\", \"1521_l_2_r-0_0.36-1_1.47-2_1.08-3_1.21\", \"1522_l_2_r-0_0.67-1_0.31-2_0.11-3_1.28\", \"1523_l_2_r-0_0.57-1_0.02-2_1.04-3_1.39\", \"1524_l_2_r-0_0.9-1_0.09-2_0.42-3_0.49\", \"1525_l_2_r-0_0.96-1_2.23-2_1.22-3_0.86\", \"1526_l_2_r-0_1.2-1_0.59-2_1.07-3_1.37\", \"1527_l_2_r-0_1.14-1_0.44-2_1.03-3_0.47\", \"1528_l_2_r-0_1.2-1_0.66-2_0.23-3_0.55\", \"1529_l_2_r-0_1.12-1_0.04-2_0.7-3_1.12\", \"1530_l_2_r-0_0.01-1_1.74-2_0.18-3_0.74\", \"1531_l_2_r-0_0.48-1_0.13-2_0.32-3_0.34\", \"1532_l_2_r-0_1.13-1_0.59-2_0.94-3_1.28\", \"1533_l_2_r-0_0.74-1_1.34-2_0.03-3_0.12\", \"1534_l_2_r-0_0.64-1_0.56-2_0.48-3_0.59\", \"1535_l_2_r-0_0.01-1_0.97-2_0.26-3_0.2\", \"1536_l_2_r-0_1.3-1_0.12-2_1.07-3_0.97\", \"1537_l_2_r-0_0.32-1_0.96-2_1.59-3_1.25\", \"1538_l_2_r-0_0.05-1_0.73-2_1.23-3_0.38\", \"1539_l_2_r-0_0.01-1_1.02-2_0.61-3_1.06\", \"1540_l_2_r-0_0.17-1_1.3-2_0.49-3_0.73\", \"1541_l_2_r-0_0.41-1_0.18-2_0.45-3_0.32\", \"1542_l_2_r-0_0.55-1_0.58-2_0.35-3_0.43\", \"1543_l_2_r-0_1.55-1_0.49-2_0.26-3_0.12\", \"1544_l_2_r-0_0.78-1_1.37-2_1.02-3_0.49\", \"1545_l_2_r-0_2.12-1_1.57-2_0.09-3_0.3\", \"1546_l_2_r-0_0.7-1_1.02-2_0.38-3_0.27\", \"1547_l_2_r-0_0.13-1_0.9-2_0.53-3_0.31\", \"1548_l_2_r-0_0.8-1_0.03-2_0.03-3_0.04\", \"1549_l_2_r-0_1.63-1_0.8-2_0.1-3_0.1\", \"1550_l_2_r-0_0.03-1_0.71-2_1.08-3_1.36\", \"1551_l_2_r-0_0.16-1_1.78-2_0.54-3_0.14\", \"1552_l_2_r-0_0.14-1_1.11-2_1.13-3_1.04\", \"1553_l_2_r-0_0.73-1_0.12-2_0.03-3_0.6\", \"1554_l_2_r-0_0.8-1_0.03-2_0.88-3_0.02\", \"1555_l_2_r-0_1.46-1_1.4-2_0.52-3_2.21\", \"1556_l_2_r-0_1.35-1_0.78-2_1.08-3_0.29\", \"1557_l_2_r-0_0.66-1_1.36-2_1.74-3_0.64\", \"1558_l_2_r-0_0.53-1_0.62-2_0.22-3_0.49\", \"1559_l_2_r-0_1.07-1_0.6-2_0.91-3_0.73\", \"1560_l_2_r-0_0.76-1_0.36-2_0.41-3_0.08\", \"1561_l_2_r-0_1.74-1_1.83-2_0.13-3_0.3\", \"1562_l_2_r-0_1.14-1_0.8-2_0.67-3_1.74\", \"1563_l_2_r-0_0.91-1_0.14-2_1.45-3_1.26\", \"1564_l_2_r-0_0.28-1_1.62-2_1.07-3_1.07\", \"1565_l_2_r-0_0.92-1_1.22-2_0.68-3_1.55\", \"1566_l_2_r-0_0.31-1_0.48-2_0.73-3_0.3\", \"1567_l_2_r-0_1.17-1_0.06-2_0.25-3_0.88\", \"1568_l_2_r-0_0.54-1_1.07-2_0.55-3_1.05\", \"1569_l_2_r-0_1.61-1_1.1-2_0.21-3_1.3\", \"1570_l_2_r-0_1.09-1_0.16-2_0.49-3_1.45\", \"1571_l_2_r-0_0.45-1_0.4-2_1.25-3_1.75\", \"1572_l_2_r-0_0.22-1_0.18-2_1.01-3_0.15\", \"1573_l_2_r-0_0.3-1_0.07-2_0.88-3_1.11\", \"1574_l_2_r-0_1.22-1_0.71-2_0.88-3_1.67\", \"1575_l_2_r-0_0.04-1_0.8-2_0.13-3_0.04\", \"1576_l_2_r-0_0.41-1_0.69-2_1.38-3_0.18\", \"1577_l_2_r-0_0.06-1_0.77-2_1.03-3_0.69\", \"1578_l_2_r-0_0.19-1_1.44-2_0.38-3_0.68\", \"1579_l_2_r-0_0.73-1_0.4-2_0.05-3_0.62\", \"1580_l_2_r-0_1.43-1_0.8-2_0.5-3_0.87\", \"1581_l_2_r-0_1.14-1_0.79-2_0.65-3_0.74\", \"1582_l_2_r-0_0.76-1_1.08-2_0.37-3_0.07\", \"1583_l_2_r-0_0.79-1_0.36-2_0.14-3_0.4\", \"1584_l_2_r-0_1.11-1_1.05-2_0.77-3_0.85\", \"1585_l_2_r-0_1.71-1_1.09-2_0.32-3_1.01\", \"1586_l_2_r-0_0.7-1_0.23-2_0.02-3_1.13\", \"1587_l_2_r-0_1.37-1_0.53-2_0.46-3_0.64\", \"1588_l_2_r-0_0.19-1_0.5-2_1.16-3_0.26\", \"1589_l_2_r-0_0.23-1_0.2-2_0.27-3_0.45\", \"1590_l_2_r-0_1.1-1_1.65-2_0.92-3_0.84\", \"1591_l_2_r-0_0.86-1_1.27-2_0.38-3_0.38\", \"1592_l_2_r-0_0.65-1_0.74-2_1.12-3_0.06\", \"1593_l_2_r-0_0.84-1_1.53-2_0.29-3_0.8\", \"1594_l_2_r-0_0.36-1_0.12-2_0.53-3_1.18\", \"1595_l_2_r-0_0.15-1_0.72-2_0.85-3_0.75\", \"1596_l_2_r-0_0.38-1_0.22-2_1.04-3_0.47\", \"1597_l_2_r-0_0.71-1_1.12-2_0.95-3_0.24\", \"1598_l_2_r-0_1.24-1_0.55-2_1.39-3_0.4\", \"1599_l_2_r-0_0.82-1_0.78-2_0.19-3_0.59\", \"1600_l_2_r-0_0.6-1_0.91-2_0.81-3_0.44\", \"1601_l_2_r-0_0.37-1_0.82-2_1.56-3_1.04\", \"1602_l_2_r-0_0.45-1_0.84-2_0.96-3_0.8\", \"1603_l_2_r-0_1.32-1_0.41-2_2.33-3_1.31\", \"1604_l_2_r-0_0.26-1_0.21-2_0.91-3_0.88\", \"1605_l_2_r-0_0.87-1_0.2-2_0.02-3_0.69\", \"1606_l_2_r-0_0.2-1_1.06-2_0.22-3_1.23\", \"1607_l_2_r-0_0.78-1_0.58-2_0.1-3_1.13\", \"1608_l_2_r-0_0.04-1_0.8-2_0.66-3_0.73\", \"1609_l_2_r-0_1.11-1_1.29-2_0.24-3_0.27\", \"1610_l_2_r-0_0.39-1_0.69-2_0.98-3_1.5\", \"1611_l_2_r-0_1.06-1_0.96-2_0.48-3_0.68\", \"1612_l_2_r-0_0.82-1_1.31-2_0.36-3_0.17\", \"1613_l_2_r-0_0.82-1_0.21-2_0.4-3_0.35\", \"1614_l_2_r-0_0.79-1_1.23-2_0.5-3_0.63\", \"1615_l_2_r-0_0.81-1_0.74-2_0.44-3_1.08\", \"1616_l_2_r-0_0.59-1_0.75-2_0.78-3_0.73\", \"1617_l_2_r-0_0.49-1_0.03-2_1.08-3_0.62\", \"1618_l_2_r-0_0.42-1_0.01-2_0.84-3_0.65\", \"1619_l_2_r-0_0.49-1_0.96-2_0.52-3_0.68\", \"1620_l_2_r-0_0.81-1_1.03-2_0.69-3_0.02\", \"1621_l_2_r-0_0.4-1_0.61-2_1.21-3_1.41\", \"1622_l_2_r-0_0.86-1_0.72-2_1.2-3_0.28\", \"1623_l_2_r-0_0.43-1_1.04-2_0.29-3_0.69\", \"1624_l_2_r-0_0.56-1_0.55-2_0.44-3_0.88\", \"1625_l_2_r-0_0.55-1_1.37-2_0.92-3_0.98\", \"1626_l_2_r-0_0.59-1_0.14-2_0.74-3_0.95\", \"1627_l_2_r-0_1.2-1_0.17-2_0.69-3_0.69\", \"1628_l_2_r-0_0.29-1_0.18-2_0.75-3_0.51\", \"1629_l_2_r-0_0.7-1_1.15-2_0.83-3_0.8\", \"1630_l_2_r-0_0.65-1_0.71-2_0.1-3_0.14\", \"1631_l_2_r-0_1.05-1_0.15-2_1.02-3_0.44\", \"1632_l_2_r-0_0.47-1_0.74-2_0.61-3_1.15\", \"1633_l_2_r-0_0.34-1_0.55-2_1.37-3_1.58\", \"1634_l_2_r-0_0.03-1_0.67-2_0.49-3_0.09\", \"1635_l_2_r-0_0.97-1_1.54-2_0.38-3_0.72\", \"1636_l_2_r-0_0.45-1_0.51-2_0.59-3_0.91\", \"1637_l_2_r-0_0.1-1_0.16-2_0.46-3_0.57\", \"1638_l_2_r-0_0.33-1_1.29-2_1.35-3_0.7\", \"1639_l_2_r-0_0.93-1_0.96-2_1.19-3_0.5\", \"1640_l_2_r-0_1.33-1_1.35-2_1.7-3_1.56\", \"1641_l_2_r-0_0.21-1_0.22-2_0.85-3_0.3\", \"1642_l_2_r-0_0.04-1_0.79-2_0.97-3_0.42\", \"1643_l_2_r-0_0.38-1_1.26-2_1.65-3_0.65\", \"1644_l_2_r-0_0.52-1_0.98-2_0.63-3_1.37\", \"1645_l_2_r-0_0.22-1_0.3-2_0.26-3_0.84\", \"1646_l_2_r-0_0.91-1_0.01-2_0.41-3_0.23\", \"1647_l_2_r-0_0.52-1_0.94-2_0.73-3_0.02\", \"1648_l_2_r-0_0.25-1_1.37-2_0.02-3_1.05\", \"1649_l_2_r-0_0.73-1_0.87-2_1.29-3_0.66\", \"1650_l_2_r-0_0.84-1_0.47-2_1.76-3_1.92\", \"1651_l_2_r-0_1.48-1_0.24-2_0.19-3_0.74\", \"1652_l_2_r-0_2.23-1_0.37-2_0.77-3_0.15\", \"1653_l_2_r-0_0.42-1_0.77-2_0.5-3_0.04\", \"1654_l_2_r-0_1.06-1_0.41-2_1.06-3_1.04\", \"1655_l_2_r-0_0.33-1_1.33-2_1.12-3_2.68\", \"1656_l_2_r-0_1.0-1_0.18-2_0.15-3_0.04\", \"1657_l_2_r-0_1.41-1_0.16-2_0.47-3_0.2\", \"1658_l_2_r-0_0.33-1_0.51-2_1.2-3_0.46\", \"1659_l_2_r-0_0.21-1_1.24-2_0.69-3_1.17\", \"1660_l_2_r-0_0.76-1_0.56-2_1.51-3_0.09\", \"1661_l_2_r-0_0.16-1_1.07-2_0.18-3_1.39\", \"1662_l_2_r-0_0.64-1_1.34-2_0.58-3_1.04\", \"1663_l_2_r-0_0.79-1_0.09-2_0.17-3_0.79\", \"1664_l_2_r-0_0.94-1_0.01-2_0.58-3_1.5\", \"1665_l_2_r-0_0.53-1_0.74-2_0.57-3_0.4\", \"1666_l_2_r-0_0.08-1_0.17-2_0.62-3_0.26\", \"1667_l_2_r-0_0.23-1_0.67-2_0.41-3_0.85\", \"1668_l_2_r-0_1.37-1_0.09-2_0.13-3_0.82\", \"1669_l_2_r-0_0.63-1_0.67-2_0.19-3_0.84\", \"1670_l_2_r-0_2.14-1_0.34-2_0.61-3_0.63\", \"1671_l_2_r-0_0.05-1_1.16-2_0.49-3_0.26\", \"1672_l_2_r-0_0.59-1_0.55-2_0.79-3_0.32\", \"1673_l_2_r-0_0.05-1_0.35-2_0.47-3_2.37\", \"1674_l_2_r-0_0.3-1_0.1-2_0.48-3_1.43\", \"1675_l_2_r-0_0.66-1_1.25-2_0.2-3_0.54\", \"1676_l_2_r-0_1.04-1_1.13-2_1.39-3_0.91\", \"1677_l_2_r-0_2.13-1_0.2-2_0.01-3_0.13\", \"1678_l_2_r-0_0.93-1_1.19-2_0.97-3_0.67\", \"1679_l_2_r-0_0.64-1_0.47-2_0.25-3_0.57\", \"1680_l_2_r-0_0.9-1_0.54-2_1.19-3_0.86\", \"1681_l_2_r-0_0.6-1_0.4-2_0.07-3_0.16\", \"1682_l_2_r-0_0.83-1_0.69-2_0.01-3_0.18\", \"1683_l_2_r-0_0.76-1_0.37-2_0.62-3_0.84\", \"1684_l_2_r-0_1.33-1_0.17-2_0.25-3_0.57\", \"1685_l_2_r-0_0.04-1_1.53-2_0.93-3_1.05\", \"1686_l_2_r-0_0.27-1_0.11-2_1.07-3_0.74\", \"1687_l_2_r-0_0.13-1_1.49-2_0.64-3_0.87\", \"1688_l_2_r-0_0.12-1_0.26-2_1.05-3_0.43\", \"1689_l_2_r-0_0.4-1_0.83-2_0.52-3_0.07\", \"1690_l_2_r-0_0.21-1_0.5-2_1.34-3_0.24\", \"1691_l_2_r-0_0.76-1_0.34-2_0.81-3_1.36\", \"1692_l_2_r-0_1.67-1_0.73-2_0.59-3_0.58\", \"1693_l_2_r-0_0.89-1_0.33-2_0.78-3_0.46\", \"1694_l_2_r-0_0.11-1_0.26-2_0.57-3_0.59\", \"1695_l_2_r-0_0.19-1_2.2-2_0.65-3_0.57\", \"1696_l_2_r-0_0.21-1_1.05-2_1.09-3_0.79\", \"1697_l_2_r-0_0.86-1_0.1-2_1.11-3_0.61\", \"1698_l_2_r-0_0.39-1_0.91-2_0.03-3_0.84\", \"1699_l_2_r-0_0.86-1_0.89-2_0.69-3_0.09\", \"1700_l_2_r-0_0.33-1_1.1-2_0.7-3_0.76\", \"1701_l_2_r-0_0.99-1_1.68-2_0.41-3_0.34\", \"1702_l_2_r-0_0.64-1_0.09-2_0.6-3_0.31\", \"1703_l_2_r-0_0.47-1_0.97-2_0.18-3_0.06\", \"1704_l_2_r-0_2.1-1_0.2-2_0.67-3_0.38\", \"1705_l_2_r-0_0.75-1_0.71-2_0.29-3_0.78\", \"1706_l_2_r-0_0.5-1_0.62-2_1.02-3_0.54\", \"1707_l_2_r-0_1.18-1_0.09-2_0.38-3_0.65\", \"1708_l_2_r-0_0.1-1_1.14-2_0.67-3_0.27\", \"1709_l_2_r-0_0.06-1_1.06-2_0.68-3_0.59\", \"1710_l_2_r-0_1.2-1_0.88-2_0.68-3_1.06\", \"1711_l_2_r-0_0.96-1_0.83-2_0.87-3_0.51\", \"1712_l_2_r-0_1.77-1_1.77-2_0.73-3_0.93\", \"1713_l_2_r-0_0.34-1_0.77-2_1.63-3_0.07\", \"1714_l_2_r-0_1.95-1_0.33-2_1.63-3_0.56\", \"1715_l_2_r-0_0.93-1_1.44-2_0.58-3_1.07\", \"1716_l_2_r-0_0.16-1_0.84-2_0.99-3_1.05\", \"1717_l_2_r-0_0.0-1_0.2-2_0.5-3_0.54\", \"1718_l_2_r-0_0.93-1_1.81-2_0.79-3_1.09\", \"1719_l_2_r-0_0.67-1_1.11-2_1.02-3_1.44\", \"1720_l_2_r-0_0.16-1_1.09-2_0.62-3_0.09\", \"1721_l_2_r-0_0.14-1_1.22-2_0.96-3_1.06\", \"1722_l_2_r-0_0.78-1_0.33-2_1.15-3_1.69\", \"1723_l_2_r-0_0.67-1_1.09-2_0.48-3_1.32\", \"1724_l_2_r-0_0.07-1_0.95-2_0.01-3_0.62\", \"1725_l_2_r-0_1.22-1_1.03-2_0.24-3_0.91\", \"1726_l_2_r-0_0.08-1_0.09-2_0.15-3_0.32\", \"1727_l_2_r-0_1.19-1_0.93-2_0.18-3_0.99\", \"1728_l_2_r-0_1.39-1_0.55-2_0.84-3_0.35\", \"1729_l_2_r-0_0.94-1_0.67-2_0.35-3_0.8\", \"1730_l_2_r-0_0.23-1_0.72-2_0.24-3_0.44\", \"1731_l_2_r-0_0.51-1_1.17-2_0.97-3_0.24\", \"1732_l_2_r-0_0.49-1_0.73-2_0.46-3_0.38\", \"1733_l_2_r-0_1.41-1_0.3-2_0.82-3_0.43\", \"1734_l_2_r-0_0.63-1_1.8-2_1.0-3_0.01\", \"1735_l_2_r-0_0.23-1_0.59-2_0.2-3_1.15\", \"1736_l_2_r-0_1.02-1_0.8-2_0.52-3_0.62\", \"1737_l_2_r-0_0.92-1_1.42-2_0.26-3_0.77\", \"1738_l_2_r-0_0.06-1_1.17-2_0.69-3_0.4\", \"1739_l_2_r-0_0.34-1_0.19-2_0.7-3_0.12\", \"1740_l_2_r-0_0.42-1_0.93-2_0.15-3_1.2\", \"1741_l_2_r-0_1.18-1_1.63-2_1.2-3_0.42\", \"1742_l_2_r-0_0.43-1_1.11-2_0.97-3_0.12\", \"1743_l_2_r-0_0.12-1_0.55-2_1.05-3_0.14\", \"1744_l_2_r-0_0.64-1_1.88-2_0.05-3_0.58\", \"1745_l_2_r-0_0.01-1_1.21-2_0.11-3_1.66\", \"1746_l_2_r-0_0.51-1_1.45-2_1.33-3_0.81\", \"1747_l_2_r-0_1.27-1_0.36-2_0.85-3_0.6\", \"1748_l_2_r-0_0.93-1_0.62-2_0.29-3_0.9\", \"1749_l_2_r-0_0.17-1_1.18-2_0.75-3_2.16\", \"1750_l_2_r-0_0.2-1_1.29-2_0.12-3_0.24\", \"1751_l_2_r-0_0.79-1_0.92-2_1.46-3_0.48\", \"1752_l_2_r-0_0.59-1_0.59-2_0.24-3_0.03\", \"1753_l_2_r-0_0.39-1_1.44-2_0.69-3_0.83\", \"1754_l_2_r-0_1.0-1_0.27-2_0.87-3_0.88\", \"1755_l_2_r-0_2.28-1_0.6-2_0.71-3_1.46\", \"1756_l_2_r-0_0.36-1_0.43-2_0.81-3_0.72\", \"1757_l_2_r-0_0.08-1_1.5-2_0.33-3_0.41\", \"1758_l_2_r-0_0.06-1_0.17-2_0.54-3_1.0\", \"1759_l_2_r-0_0.21-1_0.35-2_0.51-3_1.21\", \"1760_l_2_r-0_1.38-1_0.12-2_1.3-3_0.77\", \"1761_l_2_r-0_0.6-1_0.5-2_0.53-3_0.27\", \"1762_l_2_r-0_0.49-1_0.97-2_1.25-3_1.57\", \"1763_l_2_r-0_0.04-1_0.74-2_0.01-3_0.78\", \"1764_l_2_r-0_0.84-1_0.4-2_0.67-3_0.32\", \"1765_l_2_r-0_0.21-1_2.31-2_1.1-3_0.17\", \"1766_l_2_r-0_0.4-1_0.59-2_1.27-3_0.17\", \"1767_l_2_r-0_0.57-1_0.2-2_0.17-3_0.41\", \"1768_l_2_r-0_0.26-1_0.3-2_0.71-3_0.38\", \"1769_l_2_r-0_0.43-1_1.08-2_0.73-3_0.52\", \"1770_l_2_r-0_0.65-1_0.24-2_0.03-3_0.31\", \"1771_l_2_r-0_0.94-1_0.22-2_0.87-3_0.5\", \"1772_l_2_r-0_0.49-1_0.49-2_1.49-3_0.12\", \"1773_l_2_r-0_1.0-1_0.53-2_0.28-3_0.4\", \"1774_l_2_r-0_0.1-1_0.88-2_0.89-3_0.61\", \"1775_l_2_r-0_0.5-1_0.57-2_0.03-3_1.56\", \"1776_l_2_r-0_0.24-1_1.01-2_0.29-3_0.36\", \"1777_l_2_r-0_1.14-1_0.84-2_0.61-3_0.95\", \"1778_l_2_r-0_1.55-1_0.0-2_0.07-3_1.07\", \"1779_l_2_r-0_0.72-1_0.55-2_0.36-3_0.22\", \"1780_l_2_r-0_0.32-1_1.13-2_0.35-3_0.62\", \"1781_l_2_r-0_0.0-1_0.91-2_0.71-3_0.5\", \"1782_l_2_r-0_0.98-1_0.22-2_0.01-3_0.05\", \"1783_l_2_r-0_0.05-1_0.01-2_0.43-3_0.3\", \"1784_l_2_r-0_1.36-1_0.58-2_1.35-3_0.89\", \"1785_l_2_r-0_1.11-1_1.03-2_0.49-3_0.29\", \"1786_l_2_r-0_0.19-1_0.31-2_0.79-3_0.2\", \"1787_l_2_r-0_0.78-1_0.45-2_0.81-3_0.69\", \"1788_l_2_r-0_0.13-1_0.71-2_0.69-3_0.23\", \"1789_l_2_r-0_0.71-1_0.11-2_0.14-3_1.37\", \"1790_l_2_r-0_0.42-1_2.08-2_1.41-3_0.77\", \"1791_l_2_r-0_0.15-1_1.1-2_0.48-3_0.33\", \"1792_l_2_r-0_1.41-1_0.34-2_1.05-3_1.51\", \"1793_l_2_r-0_1.12-1_0.1-2_0.06-3_0.33\", \"1794_l_2_r-0_0.87-1_0.46-2_1.47-3_1.38\", \"1795_l_2_r-0_1.26-1_0.72-2_1.33-3_0.73\", \"1796_l_2_r-0_1.16-1_0.94-2_0.79-3_0.21\", \"1797_l_2_r-0_0.44-1_0.03-2_0.09-3_0.79\", \"1798_l_2_r-0_0.99-1_0.53-2_0.25-3_0.34\", \"1799_l_2_r-0_0.93-1_1.16-2_1.01-3_1.24\", \"1800_l_2_r-0_0.32-1_0.44-2_0.21-3_0.34\", \"1801_l_2_r-0_0.9-1_0.87-2_0.07-3_0.77\", \"1802_l_2_r-0_0.15-1_0.72-2_0.84-3_0.31\", \"1803_l_2_r-0_0.13-1_0.55-2_1.36-3_1.14\", \"1804_l_2_r-0_0.69-1_1.43-2_0.75-3_0.53\", \"1805_l_2_r-0_0.25-1_1.21-2_0.67-3_0.87\", \"1806_l_2_r-0_1.38-1_0.58-2_0.4-3_0.35\", \"1807_l_2_r-0_0.59-1_0.23-2_0.68-3_1.82\", \"1808_l_2_r-0_0.32-1_0.83-2_1.01-3_0.48\", \"1809_l_2_r-0_1.44-1_0.32-2_0.62-3_0.01\", \"1810_l_2_r-0_0.12-1_0.1-2_0.81-3_1.26\", \"1811_l_2_r-0_0.25-1_1.35-2_0.11-3_1.02\", \"1812_l_2_r-0_0.82-1_0.83-2_0.66-3_0.31\", \"1813_l_2_r-0_1.04-1_0.06-2_0.78-3_0.72\", \"1814_l_2_r-0_0.74-1_1.85-2_0.66-3_0.67\", \"1815_l_2_r-0_1.13-1_0.38-2_0.15-3_0.5\", \"1816_l_2_r-0_0.4-1_1.52-2_0.2-3_1.09\", \"1817_l_2_r-0_1.72-1_0.51-2_0.32-3_0.24\", \"1818_l_2_r-0_1.07-1_0.25-2_0.87-3_0.43\", \"1819_l_2_r-0_1.74-1_1.07-2_0.34-3_1.81\", \"1820_l_2_r-0_1.06-1_0.02-2_0.56-3_0.66\", \"1821_l_2_r-0_0.97-1_0.44-2_0.84-3_0.03\", \"1822_l_2_r-0_0.96-1_1.7-2_0.39-3_0.48\", \"1823_l_2_r-0_0.21-1_0.3-2_0.68-3_0.71\", \"1824_l_2_r-0_0.73-1_0.31-2_0.56-3_1.46\", \"1825_l_2_r-0_0.22-1_0.5-2_0.78-3_0.98\", \"1826_l_2_r-0_0.82-1_1.01-2_0.56-3_0.51\", \"1827_l_2_r-0_0.7-1_0.37-2_1.15-3_1.33\", \"1828_l_2_r-0_1.21-1_0.67-2_0.11-3_0.08\", \"1829_l_2_r-0_0.12-1_0.97-2_0.82-3_1.03\", \"1830_l_2_r-0_1.3-1_0.0-2_0.82-3_0.62\", \"1831_l_2_r-0_1.34-1_1.87-2_0.92-3_0.4\", \"1832_l_2_r-0_1.78-1_0.01-2_0.32-3_0.45\", \"1833_l_2_r-0_0.93-1_0.9-2_1.05-3_0.48\", \"1834_l_2_r-0_0.31-1_0.05-2_0.13-3_1.32\", \"1835_l_2_r-0_1.37-1_0.29-2_0.07-3_0.02\", \"1836_l_2_r-0_0.01-1_0.4-2_0.19-3_0.56\", \"1837_l_2_r-0_0.97-1_0.54-2_0.29-3_0.41\", \"1838_l_2_r-0_0.73-1_1.15-2_0.87-3_0.46\", \"1839_l_2_r-0_0.95-1_0.92-2_0.57-3_1.84\", \"1840_l_2_r-0_0.31-1_1.18-2_0.56-3_0.2\", \"1841_l_2_r-0_0.16-1_0.22-2_0.46-3_0.06\", \"1842_l_2_r-0_0.33-1_0.84-2_0.06-3_0.12\", \"1843_l_2_r-0_0.82-1_0.57-2_1.2-3_1.05\", \"1844_l_2_r-0_1.18-1_1.49-2_1.92-3_0.26\", \"1845_l_2_r-0_0.7-1_0.18-2_0.0-3_1.09\", \"1846_l_2_r-0_0.75-1_1.99-2_0.21-3_0.89\", \"1847_l_2_r-0_0.22-1_0.27-2_0.68-3_0.23\", \"1848_l_2_r-0_1.11-1_0.64-2_0.11-3_0.28\", \"1849_l_2_r-0_1.24-1_0.9-2_0.25-3_1.47\", \"1850_l_2_r-0_0.3-1_0.03-2_0.93-3_0.1\", \"1851_l_2_r-0_0.05-1_0.71-2_0.19-3_0.32\", \"1852_l_2_r-0_0.21-1_0.65-2_0.23-3_0.08\", \"1853_l_2_r-0_0.42-1_0.91-2_0.15-3_0.02\", \"1854_l_2_r-0_1.49-1_2.01-2_0.57-3_0.13\", \"1855_l_2_r-0_0.32-1_0.22-2_0.88-3_0.08\", \"1856_l_2_r-0_1.48-1_0.96-2_0.58-3_0.07\", \"1857_l_2_r-0_0.11-1_0.8-2_1.24-3_0.5\", \"1858_l_2_r-0_1.62-1_1.4-2_0.16-3_1.07\", \"1859_l_2_r-0_0.2-1_0.31-2_0.37-3_0.68\", \"1860_l_2_r-0_0.62-1_0.93-2_0.26-3_0.54\", \"1861_l_2_r-0_1.58-1_1.03-2_0.42-3_0.29\", \"1862_l_2_r-0_0.56-1_0.28-2_1.03-3_0.33\", \"1863_l_2_r-0_0.5-1_0.81-2_0.7-3_0.21\", \"1864_l_2_r-0_0.28-1_0.55-2_1.17-3_1.52\", \"1865_l_2_r-0_0.46-1_0.11-2_0.86-3_0.76\", \"1866_l_2_r-0_1.17-1_0.22-2_0.23-3_0.22\", \"1867_l_2_r-0_0.05-1_1.16-2_0.15-3_0.06\", \"1868_l_2_r-0_1.31-1_1.17-2_0.36-3_1.97\", \"1869_l_2_r-0_0.77-1_0.34-2_0.26-3_0.42\", \"1870_l_2_r-0_0.34-1_0.86-2_0.7-3_0.71\", \"1871_l_2_r-0_0.28-1_0.41-2_0.45-3_1.51\", \"1872_l_2_r-0_0.96-1_0.71-2_0.75-3_1.09\", \"1873_l_2_r-0_0.48-1_0.63-2_0.74-3_0.23\", \"1874_l_2_r-0_0.09-1_0.35-2_0.11-3_0.25\", \"1875_l_2_r-0_0.93-1_0.33-2_1.64-3_1.0\", \"1876_l_2_r-0_0.66-1_0.19-2_0.03-3_0.98\", \"1877_l_2_r-0_0.39-1_0.26-2_1.41-3_0.93\", \"1878_l_2_r-0_0.16-1_2.75-2_0.93-3_1.1\", \"1879_l_2_r-0_1.29-1_1.65-2_0.78-3_0.85\", \"1880_l_2_r-0_0.38-1_0.28-2_0.93-3_1.03\", \"1881_l_2_r-0_0.93-1_0.58-2_0.21-3_0.54\", \"1882_l_2_r-0_0.79-1_1.1-2_0.5-3_0.88\", \"1883_l_2_r-0_0.5-1_0.48-2_0.41-3_0.25\", \"1884_l_2_r-0_0.67-1_1.2-2_0.42-3_0.33\", \"1885_l_2_r-0_0.95-1_0.95-2_0.02-3_0.39\", \"1886_l_2_r-0_1.68-1_2.59-2_0.47-3_0.71\", \"1887_l_2_r-0_1.04-1_0.03-2_0.47-3_0.53\", \"1888_l_2_r-0_1.39-1_1.32-2_1.31-3_0.16\", \"1889_l_2_r-0_0.44-1_3.27-2_0.61-3_0.75\", \"1890_l_2_r-0_1.75-1_0.91-2_0.98-3_0.28\", \"1891_l_2_r-0_0.47-1_0.13-2_0.99-3_0.0\", \"1892_l_2_r-0_1.27-1_0.61-2_0.25-3_1.16\", \"1893_l_2_r-0_1.06-1_0.7-2_2.32-3_0.35\", \"1894_l_2_r-0_0.34-1_0.22-2_0.12-3_0.31\", \"1895_l_2_r-0_0.02-1_0.54-2_0.8-3_0.26\", \"1896_l_2_r-0_1.4-1_1.79-2_0.91-3_0.4\", \"1897_l_2_r-0_1.04-1_0.13-2_1.45-3_0.16\", \"1898_l_2_r-0_0.97-1_0.37-2_0.58-3_0.53\", \"1899_l_2_r-0_1.02-1_0.53-2_0.98-3_1.46\", \"1900_l_2_r-0_0.05-1_1.14-2_0.34-3_1.08\", \"1901_l_2_r-0_0.37-1_0.06-2_1.36-3_0.38\", \"1902_l_2_r-0_0.73-1_1.04-2_0.34-3_1.27\", \"1903_l_2_r-0_0.47-1_0.18-2_0.8-3_0.27\", \"1904_l_2_r-0_1.1-1_0.2-2_0.49-3_1.1\", \"1905_l_2_r-0_0.2-1_1.19-2_0.12-3_0.86\", \"1906_l_2_r-0_1.74-1_0.2-2_0.37-3_0.08\", \"1907_l_2_r-0_0.68-1_0.21-2_0.9-3_1.51\", \"1908_l_2_r-0_1.58-1_1.35-2_0.49-3_0.26\", \"1909_l_2_r-0_0.44-1_0.76-2_0.32-3_1.09\", \"1910_l_2_r-0_1.53-1_0.72-2_0.7-3_1.1\", \"1911_l_2_r-0_0.89-1_0.07-2_0.07-3_1.3\", \"1912_l_2_r-0_1.1-1_1.08-2_0.02-3_0.23\", \"1913_l_2_r-0_1.33-1_0.35-2_0.56-3_0.11\", \"1914_l_2_r-0_0.82-1_1.72-2_0.31-3_0.94\", \"1915_l_2_r-0_1.5-1_0.39-2_0.79-3_0.4\", \"1916_l_2_r-0_0.76-1_0.89-2_0.63-3_0.69\", \"1917_l_2_r-0_0.62-1_1.85-2_0.34-3_1.39\", \"1918_l_2_r-0_0.17-1_1.53-2_1.13-3_1.29\", \"1919_l_2_r-0_0.62-1_0.4-2_0.4-3_0.54\", \"1920_l_2_r-0_1.52-1_0.65-2_1.53-3_0.88\", \"1921_l_2_r-0_0.23-1_0.63-2_0.46-3_0.5\", \"1922_l_2_r-0_0.34-1_0.5-2_0.53-3_0.22\", \"1923_l_2_r-0_0.24-1_0.27-2_1.66-3_0.17\", \"1924_l_2_r-0_0.01-1_0.65-2_0.29-3_0.92\", \"1925_l_2_r-0_0.61-1_0.06-2_0.3-3_0.63\", \"1926_l_2_r-0_0.4-1_1.02-2_0.53-3_0.99\", \"1927_l_2_r-0_1.49-1_0.43-2_0.88-3_1.76\", \"1928_l_2_r-0_0.82-1_0.33-2_0.65-3_1.33\", \"1929_l_2_r-0_1.22-1_0.64-2_0.55-3_0.38\", \"1930_l_2_r-0_0.96-1_0.05-2_1.71-3_0.66\", \"1931_l_2_r-0_0.03-1_1.21-2_1.11-3_0.06\", \"1932_l_2_r-0_1.55-1_0.01-2_0.04-3_0.76\", \"1933_l_2_r-0_1.74-1_0.36-2_0.31-3_0.2\", \"1934_l_2_r-0_1.04-1_0.52-2_0.25-3_0.64\", \"1935_l_2_r-0_0.66-1_0.72-2_0.25-3_0.21\", \"1936_l_2_r-0_1.45-1_1.16-2_0.91-3_0.16\", \"1937_l_2_r-0_1.48-1_0.85-2_0.3-3_0.28\", \"1938_l_2_r-0_0.33-1_0.78-2_0.13-3_0.75\", \"1939_l_2_r-0_0.06-1_0.95-2_1.27-3_1.02\", \"1940_l_2_r-0_0.96-1_0.71-2_1.45-3_0.09\", \"1941_l_2_r-0_1.22-1_1.09-2_0.36-3_1.72\", \"1942_l_2_r-0_0.7-1_1.23-2_0.57-3_0.64\", \"1943_l_2_r-0_1.25-1_0.94-2_1.17-3_1.3\", \"1944_l_2_r-0_0.36-1_0.45-2_1.15-3_0.29\", \"1945_l_2_r-0_0.04-1_0.35-2_0.33-3_0.32\", \"1946_l_2_r-0_0.18-1_0.06-2_0.22-3_0.02\", \"1947_l_2_r-0_0.46-1_0.59-2_1.4-3_0.2\", \"1948_l_2_r-0_1.19-1_2.12-2_0.1-3_1.31\", \"1949_l_2_r-0_0.17-1_0.91-2_1.38-3_0.99\", \"1950_l_2_r-0_0.7-1_1.0-2_1.11-3_0.6\", \"1951_l_2_r-0_1.45-1_0.88-2_0.08-3_0.09\", \"1952_l_2_r-0_0.04-1_0.55-2_0.53-3_0.43\", \"1953_l_2_r-0_0.72-1_1.17-2_0.14-3_0.41\", \"1954_l_2_r-0_0.88-1_0.55-2_0.12-3_0.54\", \"1955_l_2_r-0_0.63-1_0.95-2_1.04-3_0.74\", \"1956_l_2_r-0_0.01-1_1.24-2_0.63-3_0.68\", \"1957_l_2_r-0_1.0-1_0.41-2_0.75-3_1.14\", \"1958_l_2_r-0_0.71-1_0.06-2_1.21-3_2.07\", \"1959_l_2_r-0_0.54-1_0.69-2_1.14-3_0.54\", \"1960_l_2_r-0_0.36-1_0.5-2_0.1-3_0.77\", \"1961_l_2_r-0_0.75-1_0.25-2_0.26-3_0.57\", \"1962_l_2_r-0_1.74-1_0.01-2_1.2-3_0.82\", \"1963_l_2_r-0_0.6-1_0.24-2_0.9-3_0.09\", \"1964_l_2_r-0_0.98-1_0.29-2_0.71-3_0.22\", \"1965_l_2_r-0_1.4-1_0.55-2_1.05-3_0.65\", \"1966_l_2_r-0_0.64-1_0.52-2_0.51-3_0.54\", \"1967_l_2_r-0_0.86-1_0.79-2_0.9-3_0.38\", \"1968_l_2_r-0_0.5-1_0.05-2_0.83-3_0.65\", \"1969_l_2_r-0_0.95-1_1.67-2_0.39-3_0.46\", \"1970_l_2_r-0_1.33-1_0.83-2_0.48-3_1.1\", \"1971_l_2_r-0_0.3-1_0.61-2_0.43-3_0.99\", \"1972_l_2_r-0_1.11-1_0.99-2_0.32-3_0.12\", \"1973_l_2_r-0_0.83-1_0.08-2_0.62-3_1.17\", \"1974_l_2_r-0_0.38-1_1.29-2_0.72-3_0.8\", \"1975_l_2_r-0_0.13-1_0.08-2_0.09-3_0.45\", \"1976_l_2_r-0_0.55-1_1.13-2_1.14-3_0.57\", \"1977_l_2_r-0_0.23-1_0.29-2_0.27-3_0.31\", \"1978_l_2_r-0_0.24-1_0.69-2_0.76-3_1.13\", \"1979_l_2_r-0_1.21-1_0.54-2_0.73-3_0.6\", \"1980_l_2_r-0_0.26-1_0.23-2_1.13-3_0.69\", \"1981_l_2_r-0_0.8-1_0.26-2_0.43-3_0.27\", \"1982_l_2_r-0_0.53-1_1.22-2_1.5-3_0.4\", \"1983_l_2_r-0_1.23-1_0.72-2_0.36-3_0.9\", \"1984_l_2_r-0_0.15-1_0.19-2_1.06-3_0.54\", \"1985_l_2_r-0_0.64-1_0.33-2_0.76-3_0.3\", \"1986_l_2_r-0_0.71-1_0.26-2_0.69-3_1.14\", \"1987_l_2_r-0_0.64-1_1.37-2_1.49-3_0.06\", \"1988_l_2_r-0_0.34-1_0.5-2_0.99-3_0.45\", \"1989_l_2_r-0_0.15-1_0.0-2_0.3-3_0.36\", \"1990_l_2_r-0_1.73-1_0.5-2_0.8-3_0.52\", \"1991_l_2_r-0_0.53-1_2.59-2_0.33-3_0.15\", \"1992_l_2_r-0_0.13-1_0.02-2_1.61-3_0.92\", \"1993_l_2_r-0_0.15-1_0.63-2_0.49-3_0.6\", \"1994_l_2_r-0_0.15-1_1.81-2_0.43-3_0.32\", \"1995_l_2_r-0_0.05-1_0.07-2_0.44-3_0.01\", \"1996_l_2_r-0_0.4-1_0.18-2_1.16-3_0.14\", \"1997_l_2_r-0_1.62-1_0.63-2_0.73-3_0.8\"], \"type\": \"scatter3d\", \"x\": [-1.0901328101273164, 1.6677737118632119, 0.9960444552807564, -1.1811853406219894, -0.43251358995055966, 0.962925965742037, 0.40670212448658727, 1.9232311333613898, -0.021055995985781895, -0.8062011172596635, 1.4819809580036474, -0.49407690702778684, -0.9459200485883841, 2.446496180311982, -0.1665117996975456, -1.1189750082775944, 1.85180788464427, 1.923349465343855, 2.493308977187074, 1.7637218838292885, 0.8265442011433727, -0.0551094203187068, -0.20365964182212304, -0.0010392239699452688, 0.5081422512364178, -0.7233571606979317, 1.770057443665286, 0.5210636654993158, 1.6489899511495856, -0.08275775945577268, 0.6996200968149457, -0.8798866681308386, 0.6066495009559362, 2.8134597193628332, -0.03934475781981028, -0.9018415748796353, 0.14394299687606493, 0.19384441541663433, -0.526786721600204, -0.04831559685989051, -0.6543716244289717, -0.6429988103864239, -0.1470535427717079, 1.8553557957938691, -0.4003993842978888, 0.9076900170373987, 2.247818150225671, 1.4433893711399026, 1.4057345817454512, -0.14415918423672203, -0.10393147736220043, -0.8239742937481385, -0.07222456239628916, 2.517262730442204, -1.2327595439728154, 0.8903354554460953, 1.1728249757557396, 2.3467756233062307, -0.2366321947517227, 1.883364003137073, -0.3083349326521261, -0.5332311258066773, -0.14264635453560426, -0.2297913513175096, 0.9950005725779459, 0.11778659043460527, 0.9764406116424654, 0.6912938306697445, 1.5885564252551574, 1.6802325218514318, -0.251423502054811, -0.07341872850709663, -0.3185271660136275, 1.2863358863811292, 2.4944210666943425, 0.41813660061696956, -0.8399391873701862, -0.011587253154394794, -0.07278360117455263, 2.267841416263681, 1.9680522750749698, 0.8243980704171558, -0.40332795762026286, 0.6779664821985563, -0.08722037381554992, -0.12459572718020762, -0.019065674008932554, -0.4398980232291936, 1.1242967263144836, 1.2489609866399627, 0.02909918068589512, -0.3030744095947646, 0.8119443962814324, 1.0846233207562885, 2.0302677646244103, 1.6612119158303273, 0.4815711817486805, 0.3391239179114315, 0.2402840556740068, -0.21557268399532492, -0.1537592800027825, 2.0964414089485937, 0.9769930583971209, -0.4604406939080603, -0.4757795872437709, -0.5417016397996028, 2.049066881021219, 1.4766260905516453, -0.014925970454958915, 1.7601531992591424, -0.346600339400692, -0.2091214628439182, 1.3634656557483507, -0.6862149262781521, -0.6863040460228302, 1.9405597170210362, -0.08637644725475613, 2.051533710187469, -0.2628978134568636, -0.25675293373575436, -0.10944326645578739, 1.1578468181116675, -0.3191849561263638, 1.5048953192638013, -0.043174326519920925, -0.04656332804161911, -1.0499819357210223, 0.3235755512286532, -0.020938964599178878, -0.4207498537429548, -0.4150679389576619, 0.10803969496632815, 0.17654474972391487, -0.35362110357647936, -0.5576895294624562, -1.1996708294499783, 0.9131258016265702, -0.07069212614723908, -0.34007312231573317, -0.00937304654908555, -0.12995846035352865, 0.10582559719288587, -0.24852475112300754, -0.20156820645811657, 1.1667061854079, 0.615653506730641, -0.9907468946278382, 0.5647234364811456, 0.9411002064388173, -2.10668566883248, 0.804320639326925, -0.06450663089345099, 3.3407893076452773, 0.9323589321088863, -0.6273148296822346, -0.05121072480880029, 0.4517341779998014, 2.168772446598961, 0.25654445472838905, 0.8522376759776329, -0.562798933077983, 1.0814714564927772, 1.9041771951221587, -0.4454517485191205, -0.14933586244639274, 0.24038398939690286, 0.5301298435441368, -0.9694319863911527, 0.8083978499491491, 1.0744866797821984, -0.03922185856756899, 2.1395075053639863, 2.633368905646973, -0.0034101107309429946, 0.6831294167688722, 2.4287890897115716, -0.27593897897625075, 1.0740055143024947, -0.5563127584593315, -0.5184226239637484, 1.445823903110744, -0.8763867366271976, -1.0286222872544633, 0.5437904272866876, -0.43626791798649256, -0.05833362872311576, 1.413866050929756, -0.18551164650875895, 1.3003240355787122, 1.6967601673183803, 1.8957183490738327, 0.598922989528843, 3.1486606844013347, 0.9687193697217712, 1.202969719237998, 1.1386552070654907, 2.2759818887071956, 1.1660315108168235, 0.43372484084407037, 0.4837851584641417, 1.5928537103170664, 0.7423505029487514, 0.7254420654975652, 1.3385885083470854, 1.4146397159281714, 1.5699898308363553, 1.3258074304407144, 1.2778968062984557, 1.1992883880045289, 0.7979100781487347, 0.5490624919183205, 2.0998840826839906, 1.3588997989924192, 2.119957337005105, 1.3183163261293442, 0.2256731797799224, 0.8737242888956824, 1.6337904454293626, 0.03294720003422269, 2.968604054906318, 1.4660986380901049, 1.7693583839031142, 0.7992885453616745, 1.4638204452744508, 1.3549869526524605, 1.5842810043284132, 1.3963398053198708, 1.5145243609935803, 0.7553425786236889, 2.5746418446274335, 1.1383649260386293, 1.2744929378985261, 1.4720114585162314, 0.9196333186016139, 1.5779676486596417, 1.5104975307283146, 2.666885249594041, 1.605438571642501, 1.9197816670215821, 0.4517962320625567, 1.1973876837292554, 0.29590966378033356, 1.2217680865729883, 1.9457723160041653, 0.7841996973021353, 2.8431651209812454, 0.9350254983045139, 0.7309432399373754, 1.4326075227028499, 1.332771172503239, 0.7645904241194176, 0.7866263639259441, 1.1061298811020701, 2.883735450256576, 1.295729949177939, 1.3693636146589052, 1.8043826838573525, 1.5799877176234398, 2.4814689589600043, 0.8565617011089295, 0.6476034402026456, 2.357926631306776, 0.4529062683767021, 1.5430689024530824, 1.922867673793633, 1.2270180142386866, 1.2391396340338952, 0.8176411468130399, 0.5982379291639031, 1.0902786664848945, 1.4218868393689963, 2.497237332644425, 0.9005077578882499, 2.053857745673254, 0.2022514523686182, 1.487459130442403, 0.5781711988477685, 2.077346804629006, 0.89597641490709, 2.3588417111219506, 1.198154966030585, 1.9580669549066223, 3.2283715586995783, 0.8098153325508526, 0.5870542806821596, 0.4892450849115221, 1.7516848246230636, 0.869524715490956, 0.9040071867000653, 0.3979584607088732, 1.136620221484098, 1.9127847297863307, 0.5559237239919634, 1.7967075792504084, 1.8749095586338054, 2.629325027986153, 1.0373789071501778, 1.7790373649213187, 0.651606643587668, 1.5878213298961557, 1.266408345246858, 0.3378450390287254, 0.40323775014319363, 3.1590834803544174, 0.4709743818510407, 0.10322088632095994, 1.1587629776430575, 0.9293055852166905, 1.3327139042288154, 0.20768271906870817, 0.4654913313535306, 0.38258734809520245, 0.5160387472712767, 0.21668725028804314, 0.9071007915026352, 0.9169252352134493, 0.25325169323082797, 0.7310436895478581, 0.8381202935942111, 1.4798202263567364, 2.8943071594370906, 1.0800032917076572, 1.057183660415859, 0.5633926675955107, 1.0034897480130227, 1.4113214351485222, 0.32522443256044564, 1.2349314888188254, 0.7640707178415683, 0.1564881794959414, 1.6609395295078668, 0.7857096351335255, 0.9421588281151446, 0.7961256930702022, 0.07553740434494738, 0.2977335467757859, 1.5840325749593114, 2.076620329461697, 2.2395005319323764, 0.35542805196578786, 2.0584879623392416, 0.7339702209395389, 0.3003258701007755, 1.8885039640136156, 1.0397073324160633, 2.2712330701205676, 0.9296194677319709, 0.640695584818886, 2.954402154839067, 0.5988950507785678, 1.890263692597847, 2.897214701193814, 1.8993140798926231, 2.2198351230727917, 0.32186019262903165, 1.154472810905854, 0.2019015205989998, 0.39814756443792554, 0.20539134783380808, 1.3962688935559988, 1.6661404928909023, 0.894797212823737, 0.11323883739222385, 0.19291956674585709, 1.3612021389012452, 1.2961396922140005, 1.0712143901050946, 0.863418592722927, 0.3271500904074358, 1.5256429463996533, 1.0241004372629696, 0.47277401914628625, 2.099355515856809, 0.8380457464904838, 1.1800789062153467, 1.1812586481043135, 0.10424966657015455, 2.0484964489515933, 1.4994397070314531, 0.9625323342285171, 1.7697063770705193, 1.309577067409475, 2.2760209114718837, 0.9259841210784917, 0.16185847077098503, 2.3001976277308964, 0.9324574818809002, 1.3545576884183448, 0.157252625090343, 0.13989353495862134, 1.2176077822066453, 0.6736980672262405, 1.2709501704999167, 2.0451131350770293, 0.08046000271109455, 1.1857572346073992, 1.3945169718559098, 0.9434249029838158, 0.6391000232107604, 2.095662389971877, 1.0848916645688569, 1.6788238743380148, 1.821778154436726, 0.22901367187244448, 1.3502681013294369, 1.6312236741202912, 1.4953819999909872, 1.5718325026195452, 2.019534565911017, 1.810230927487145, 0.5057027061529257, 0.11854127967754657, 0.9660595497104972, 1.4844870006076278, 1.7499177591885422, 1.2688812272016565, 1.767953432676305, 0.73649221224525, 0.2033912303352864, 0.7896466178402134, 1.01982606164903, 0.38982005233006745, 1.217370587122499, 2.2806047556176363, 0.6566346869080748, 0.19058990142804944, 0.5316023236755043, 0.21198615477172766, 1.3804684426246663, 0.602859660686957, 0.48747016099623963, 0.7677521464174369, 3.078772529851833, 0.4200338133055277, 2.086650255409011, 0.5684734047694302, 0.837920688368319, 0.5932926928279947, 0.653496113487506, 0.93862577604706, 0.8736368390317155, 1.0044103187052498, 0.2554536000808977, 1.7971095891527646, 0.4920757678435901, 1.1406181430751283, 2.104231939441676, 0.841483915071479, 0.5198654646026866, 0.003572201630959726, 2.1064503914677646, 0.04602241170434063, 1.362569597619961, 1.1083236973809074, 1.0207114421305687, 1.4085667884216342, 0.13349370319814347, 2.039558579988503, 1.5407426065080894, 1.0206860768718604, 1.4051772744995132, 1.1210686642311565, 1.5804132430702351, 1.2583114978321592, 1.1638856179143713, 1.5159394802910404, 1.1409404747835528, 1.3563005651784452, 0.3159733961148139, 2.8393723804111373, 2.851131003598687, 1.5089857143115197, 1.932045147423389, 0.7926645653581118, 1.3827480661289837, 2.271972157025319, 0.3237123894007582, 2.7682981461059653, 1.6796773911358809, 1.9002691363984088, 0.8222845699450319, 3.184032044996887, 0.9036926585098737, 1.4870987127685433, 0.4045500790749931, 1.9258378980878366, 1.7965050135327063, 1.9471403211321885, 1.8534882554284944, 1.0387124825379819, 1.5868595078324885, 1.7991445669222972, 0.7278535192557736, 0.22418532130881064, 1.1782047763215187, 0.6957361601049892, 1.4125820044229167, 0.11973571836176955, 1.435709883569574, 1.3351829636609394, 1.8660439927517807, 0.9622654500484948, 0.3131365247356166, 1.687669627805151, 1.6703660713973432, 1.5015992554093531, 0.7255664147852252, 0.9508720989857978, 0.3102661863733861, 0.16359945533542464, 0.3306064797732725, 0.8212945907679009, 1.180258460685322, 0.7038713188334231, 1.2818415799931442, 0.22296986029702737, 2.294180542388329, 1.6201346013029503, 0.33875316948631273, 1.6378297291867767, 1.1544502095245828, 2.0836246217725427, 1.6628804757623192, 0.31939081161068084, 1.4804904840290338, 2.6569635712851287, 2.0737463451743574, 1.1808060842652552, 1.1962053121855745, 1.9589267781000417, 1.2733755797722466, 0.4999411499304768, 0.891489452907966, 0.8673174459080715, 1.7168199908478883, 0.898287836200658, 2.031239388489508, 2.0270381703951386, 0.33506728560593646, 1.5477978939949169, 0.9701897320294914, 0.4793601161487304, 2.7886648129852505, 0.9313436661439572, 0.6602348932230873, 0.5640784901272948, 0.15867467396074753, 1.928545534526577, 0.3799198050899303, 0.9334170479976301, 0.7904920109143369, 0.4983694916584379, 0.6680737980277804, 0.94991088695337, 1.681977529413552, 1.4752379999476355, 1.3920193728261712, 1.7971187521411118, 2.510390847032591, 0.47194681710262965, 1.2663508535831938, 1.1201404917353341, 1.999076476224026, 0.35393905319815566, 1.404017066443419, 1.1085404257676916, 0.9653619661801854, 1.0224096458212695, 0.052981746354837655, 0.7937628352636321, 1.0424830391560977, 1.729706721751615, 1.0978878990772094, 1.158271132742765, 1.7414713903057264, 0.6750728923706696, 1.5785168498269135, 0.4414917154112815, 1.9553090563784805, 1.0685078336816873, 1.1858237919537125, 1.325986807640032, 1.7634978723096542, 1.5702289733683195, 1.508580676319645, 1.1992935168464345, 0.8609351342530106, 0.6225703722339238, 1.5192257252468202, 1.0975433064392879, 0.6899020687432347, 0.2387221716720549, 0.5658864401925082, 2.058740906317713, 1.5073796459729147, 1.8340261418679455, 0.8205994154551312, 1.4759122380315004, 2.0084839150148794, 0.8807589358372688, 2.4763528513577504, 1.9382805115522195, 1.039564216079712, 0.6648196564030449, 1.630275319269034, 1.4786135706687349, 0.32705107850446846, 0.777749605168768, 1.5603948974284207, 1.221337424303208, 1.2722234644738797, 1.6062480663567253, 0.9939211412467404, 0.04437248052512577, 0.1790532292958419, 0.5244097308095894, 1.2526595499160575, 0.43929845906710907, 2.110539387032853, 1.44890252154006, 1.2765331960901265, 1.5012902137379829, 1.1840444976988347, 1.7926248689425939, 1.8571359784454047, 1.0952903192283179, 0.7303769472826078, 1.9145202456091541, 0.3550519155307478, 0.7509823303347614, 1.7406823523192583, 2.3506061179544333, 0.9759776519716507, 1.7962365286653283, 1.6402023420959342, 2.16575807660511, 3.813102090033156, 1.1320367518321004, 1.7913633807587495, 0.3011326804816489, 1.2640130427150442, 1.982845180487773, 2.797682857518981, 0.1265455256373147, 1.7724726648295852, 0.23167227073194552, 0.8265887751272615, 2.1725338683002597, 0.2610652367337106, 0.9606462133460835, 0.5301518431042465, 1.9337369266120277, 1.6020735963190273, 0.6398970785513656, 0.7070144993245351, 1.1762286107603066, 1.2330006781230924, 0.14617785931463134, 2.8252034180294725, 0.5290016180007363, 1.1306142925105107, 1.0183869806691386, 0.14753425812541354, 0.04876282737571813, 2.045206098164245, 1.620747472278317], \"y\": [-0.10376138228781262, 1.421893698403804, 0.4109824571357519, -1.425355240443866, -0.41533845314288065, 0.9204763394688071, 0.23714966717116348, 0.2118311572559528, -1.4648723526630714, -0.13942026342392178, 0.8737953834324248, -1.5699887522822547, -1.816864175245568, 0.2111214508621877, -0.029093547221610172, -0.9758399952580434, 0.9967528313045371, 0.0392508359068835, 0.6152800821121756, 0.7571474607942796, 1.030861787436654, -0.14250100383075726, -0.39357434710168804, -1.5771088242821474, 1.0668386773812006, -2.5599932301224806, 0.8676066498724273, 0.6544868141839717, 0.7257786192366762, 0.28738152926312255, 0.12533479999141472, -0.34336986735564534, 0.3648221395281388, 0.961845259406152, -1.31733493901182, -1.0533771194969175, 0.6034897954939364, 0.6901288349172088, -0.48385532050192814, -1.7331287696686297, -0.8835576324889948, -0.6749387138375237, -1.2728227103728862, 0.18811509268898008, 0.17622795826076643, 0.5157999161097457, 0.02088927403087637, 0.34585142418476833, 0.31840433484690966, -2.159294162401622, -2.163364043775254, -2.411857047057226, -2.1252483021351747, 0.3702089130686159, -1.9615185724440807, 0.12518738588470368, 0.43778616833884065, 0.6428855737067971, -1.8171418199117095, 0.9963350748952338, -0.8490969853829794, -1.4737895166355222, -2.6823435828198745, -0.9620985626745713, 0.31576232268435356, 0.9333370908607279, 0.3411753210334241, 0.6955922536751762, 0.16927193327535317, 0.7181052791965337, 0.30745841015924547, -0.6091651784173068, -1.1133939699559874, 0.6154851126268848, 0.8036790750018612, 0.10483380295623745, -1.0567451644782129, -2.215029845465735, -0.5678280387074786, 0.5027524687480691, 0.8317893746037079, 0.23992684394742403, -0.7168547138059813, 0.6385753928591698, 0.7036310487676787, -2.43082029413816, -0.1962888665667759, -0.18869242417992615, 0.49743048108682175, 0.2315435986849088, 0.18501839795691577, -0.34761509509071176, 0.8274991130655722, 0.2299870788732148, 0.22729684496955493, 0.17555385290958014, 1.3027128769066492, 1.5371220008840458, 0.09461055051019995, -1.3975636765358974, -0.936244831956913, 0.6752140196006238, 0.09773825678744008, -0.9706263145286782, -2.2755953891123637, -1.7407137068846468, 0.23272215028654597, 1.1312600044938255, -1.318748767530423, 0.6739298359682944, -3.1439792360055927, 0.517658644324227, 0.4524743836062468, -1.0269085341048125, -0.058574148538271364, 0.5048470891186916, -1.8002442482484842, 0.2538703339655415, -0.039052126068578774, -1.7832443466313168, -1.2806232709252359, 1.2817509665441569, -2.1844746387479974, 0.45147072391033194, -0.4838694271180324, -0.8675037758600269, -2.255446368904674, 0.15177345345759918, -1.7076448966424156, -1.6924097348913638, -1.9307496451973654, 0.7242522605668424, 0.7512307566412642, -2.2964603555059284, 0.9727173362115027, -0.4836734537025422, 0.7879917906658831, -0.28243752472492445, -1.1145216132149165, -0.2909855038643707, -1.6671173664216798, 0.1842745055455357, -1.5099126359518018, -1.9249661679957346, -0.5447621075473363, 0.0032898999463253364, -0.01858483814755163, -0.7202066527403151, 0.12605363377520384, -2.0544650176321113, -0.8590739589640621, -1.5527764096210077, 0.7272752542349414, -1.0064092227289623, 1.1099626738853852, -0.5134849262765664, -2.0599660270445055, 0.725728259334943, 0.2947347236631779, -1.96757153249699, -1.2631199830355662, 0.2452281791546831, -1.940177674017886, -0.41091968393421874, -0.4649944608336666, -1.286253780772346, 0.23343907112575724, -1.1592717848308929, -1.0987762147573428, 0.4833631048243223, -0.6824626005182965, -1.1578089961362645, 0.559649413528992, -2.0352609227160228, -0.04815633349978288, 0.12819812202710645, -0.3892563430649415, -0.1435834610878689, -0.6603072665796543, -0.8354639942227978, -0.3398498836367809, -2.0879012634362795, -1.1052479363455756, -0.3701165941255208, -2.5959282108808557, 0.24692916833781897, -1.2309013428948157, -1.6463959080224577, -0.8932432347214899, -0.3607521896532597, -2.1084958744737112, -0.5725822194496641, -0.8971934843525509, -0.9599877899599123, -1.6589410622953449, -1.9012570052575324, -1.2001434858149949, -1.1163747746388444, -0.01137807305486993, -1.747863583495103, -2.742784111118393, -1.4684583487961897, -1.44086006707796, -0.007322169668206868, -1.3041291898537875, -0.32425270753540303, -0.05339224675759968, -2.337099461324784, -0.17408146248628853, -0.4073472254999406, -1.3521693095530372, -1.5459990626551137, -0.7826980423833976, -2.8237826863444773, -0.6963638831138277, -0.13319301885385815, -0.8035202691621236, -1.66475134278721, -1.37966456636029, -0.9570253988370033, -0.13580119121817247, -1.0529800276550034, -1.3587450660368319, -2.739167418152271, -1.5913391882226846, -0.6627669031902468, -0.5276976196819607, -1.298555941809397, -2.2283974076899113, -1.7411822642847716, -2.7343766617429823, -0.9142790340555764, -0.27602882663598294, -1.266630337648467, -0.31189519316325, -1.1720971670514873, -2.1760428921150807, -3.376916866156657, -1.9235473262399192, -1.2627795461797215, -0.21610486507593651, -1.3781182893262105, -1.4144403347809873, -0.03624307123983539, -0.40605475246060097, -0.057050357877444946, -0.18551464982325838, -1.049146239256056, -2.307500619192017, -1.6241585206917282, -0.8014195482352946, -1.5566396303583232, -2.2296904423794697, -1.70907186828605, -2.173255159183351, -1.5117496345232067, -0.18945106095212616, -1.3480817795746436, -1.4738299204720988, -2.3242949376786433, -2.1803733090520407, -0.8449134798842676, -2.0108252368890334, -2.175077470053726, -2.0401829765781545, -0.7141358399679618, -2.1623907601871517, -2.038890350097632, -2.135854069013458, -0.36912223862516, -0.44516276377131037, -1.3519696710891376, -0.6351458024288741, -0.8718149488120195, -1.3701730357335657, -1.2663934131055516, -1.841308638926706, -1.1097470390554809, -0.3862691058112063, -1.0576219724650409, -0.8220154785570786, -0.8183558870754118, -0.7912287277888118, -1.5412553640282924, -1.7017114882002238, -1.327966431411265, -0.5635160889725406, -0.493735005333626, -0.8135339945307788, -1.5937040529320194, -0.8613553214999135, -0.5492637211871415, -2.1555114296925653, -0.700603187723764, -0.5858785454926942, -1.1953243246810061, -0.2864484825588144, -0.7047331344229895, -0.9803077308236846, -1.0534391085178538, -0.46938185285654266, -1.2149365736123345, -0.030611443357077106, -2.4001835082219753, -0.4471484065358535, -1.2454192053546784, -1.6434577477971555, -1.9375849136748535, -1.88625599043135, -3.1379665527138147, -0.03811007929184507, -1.8629126225015218, -0.5401245496959592, -1.3092912561120644, -1.6065433453298619, -1.1941247547936, -0.6402314524866735, -1.1212137076780577, -1.745275133024032, -2.9027016542345487, -2.2327818802784876, -0.5054125932683319, -2.1124265642009616, -3.2040563736215018, -2.2781148882292817, -1.5898390808265885, -0.8496564334934158, -0.21349872842229778, -1.0954880702612977, -0.3456975972670303, -0.6390111175305389, -1.3274386354831622, -2.7186247336296816, -1.029554282959294, -0.8323815725771306, -0.23284142979638955, -1.3746808711075795, -0.6258834539077098, -2.1442704624897164, -0.9153965150029374, -0.5894562206317857, -1.8271677256247854, -2.202602733427133, -0.6600281388000665, -2.3909180214813106, -2.201063415563069, -1.2552180908887696, -0.9755568745256096, -0.9030894202812996, -0.7310850477691402, -0.8299831044119246, -0.7583670329265739, -1.331941418229352, -0.044125084173671, -0.40510020481167586, -1.444087936128841, -0.11587616593359429, -0.9031922993456862, -1.1434572920887969, -0.7569496915978737, -2.2403821506815857, -1.4244461296762503, -1.6765800018186785, -0.684120269335345, -0.20958111973731752, -0.8566489794071995, -0.3900891206107011, -1.6535788070062862, -0.9793022028795761, -0.9887118240882128, -0.6356652377802856, -1.1854786005763525, -2.1469237603151496, -0.7510596746072912, -0.4976930342409459, -1.8558547883542658, -2.3912751580660703, -0.35883732436428883, -1.2010430964046324, -1.2425509841364357, -2.0383939509779463, -0.3386194035839448, -1.9549673292937813, -1.9031607466233242, -1.387973758133736, -0.0026895432354904214, -2.94629556708957, -0.6662999447175182, -0.2501371031685572, -0.2528067293276698, -2.3177630871355346, -0.8694243622479598, -0.06735937547231186, -1.2154046687584836, -1.5488007464508382, -2.9102280449580182, -1.4263814280068439, -2.0551312551111782, -2.9976002603322964, -0.5103367290245024, -0.48722392645551127, -1.412010903585589, -0.6326679610289057, -0.3810611730081127, -1.0241946584766035, -0.9214138520095937, -0.06496575920449232, -0.3440867297059145, -1.944806454013043, -1.178365562717355, -0.42820586707260855, -0.7695004357701258, -0.6425078845638937, -0.41898721726781396, -0.5104782914551084, -1.6018460610966962, -1.6290717168418298, -1.7778073656803182, -1.286154654651103, -1.7343900877458576, -0.8584933891431119, -0.8755712685306197, -1.0031362296515574, -2.535904465630182, -0.35562658121675994, -2.3961688707890216, -0.05764728722121826, -1.3217434892075262, -1.5229320342263954, -1.588600460920741, -2.0497724632163705, -0.03932476866905077, -0.8363620013933849, -0.2063603451947934, -0.4001617056233654, -1.7022719313159498, -0.2552980906337865, -0.4324034992547142, -1.1468723400290946, -2.5348484456478046, -0.4925582337991835, -1.565809241164045, -0.7309101045760225, -0.4997139489548138, -0.24244134194662992, -2.5525776179980677, -1.5538789444605108, -0.7206481149196193, -0.3167455392845794, -1.5184886262884043, -0.9771826452744138, -0.9289326771135255, -2.4316867166734917, -1.1806120910948494, -0.19385012001913904, -0.7840506439283591, -0.198954980952041, -0.7488172272506807, -1.277521861906094, -0.15380689345206866, -1.604240834348939, -1.1290221202224289, -0.8722318881097868, -1.926045900823432, -1.9492412599446192, -0.4448042269506154, -0.9857929117447574, -1.7474481105441462, -0.7483411118064965, -1.3587668521256624, -1.0688359401041552, -0.13367199135303076, -0.6939290381250416, -0.25251065017809027, -1.3934525093535823, -0.5871099599779783, -1.7818741313095523, -1.4446795948128537, -0.659817055071636, -0.2455565472391874, -1.599904849188865, -1.0377651890858215, -0.7393090322695568, -2.1824580577135366, -0.9903327029722444, -2.3724796940196864, -1.0722950076860047, -1.7357051208911685, -1.0556472780613386, -0.9713194693790668, -1.9972996478298404, -0.21387985663275777, -0.997772461013549, -2.0474613259279666, -0.8159659232155725, -2.128165406562479, -1.3261463232823012, -0.49276153212267204, -1.3034279078270044, -2.9208274122083946, -1.960359965392341, -0.9301530167236735, -1.6291921011287132, -1.3731020423785048, -0.010807809732368945, -3.774974154493558, -1.1501228811824757, -2.87956616312471, -2.2296867985095776, -1.233516418571961, -1.7700075214066038, -1.4443119801872282, -1.3790007779052056, -1.4043838208422952, -1.5423305444096345, -1.4801972923940623, -1.1081777264798012, -1.2432401765447256, -0.2957815114101031, -2.405721160737782, -0.20824803993845808, -0.4164557521496265, -1.4875382074715742, -1.849166341401508, -1.9141806855832306, -0.10710228260780275, -1.6220957620721945, -1.9414125801043869, -2.595707284978934, -1.5821417775295705, -0.5590583462964509, -1.72058366510793, -0.2751693907704338, -0.45571489771869, -1.1737256552151651, -0.8746997051982629, -1.3098775105194804, -0.7696985187022389, -1.037907508855907, -0.27986046612625803, -0.9569584164449789, -0.8466512209689008, -0.0885549611434151, -1.1473097067738363, -2.2737590557393688, -0.39137643017957724, -1.2528054720480417, -1.2919087529190774, -0.5711148776107142, -1.797241741219576, -2.525467019449647, -0.5932958295867747, -1.5420205679439447, -1.2431435053511137, -2.1976520597737785, -1.0416487285311664, -2.2539310890752295, -0.509801705843127, -1.7517048478227832, -2.610567202590776, -1.655676494786761, -1.0555610645499502, -0.33506743843224507, -0.017114981671968343, -1.9971179317177032, -1.037110324440055, -1.4604806308605707, -1.7679830046658473, -0.6188084444980284, -0.3668436096982811, -0.7295551055861711, -0.47459082184593815, -1.5538700051935783, -1.3568710352907858, -2.250339648846963, -1.8853375645141708, -2.686189734497937, -2.3531935722511825, -1.5257883848096578, -0.8880279104483262, -3.6112525158620077, -1.4950931587366656, -0.8169690471754467, -1.6573085485846906, -0.799408856456868, -0.620302872086353, -1.113321845293905, -3.2292462080202133, -1.9012370599089103, -1.7403984661679281, -1.3603122253550375, -1.2039143367022693, -1.9392191699514854, -1.72345375165473, -0.3967864289988292, -1.492404465621957, -1.151509283772687, -1.2187884371996192, -1.0106004480710868, -0.6935290915286301, -1.5462958408498182, -1.7380284411250562, -1.7174375494512, -1.6125180257251635, -1.4488582511973405, -1.475564240027044, -1.6558311743849787, -1.0158706310675223, -0.9611978856928728, -2.0420020699337518, -0.7036454566055765, -1.2964006163603699, -0.3623774804514118, -2.6203137966638623, -1.0759997884336396, -0.5656290873947851, -1.791285255635318, -1.1291034916715696, -1.59017154551892, -2.049728400056119, -0.26731445558626576, -0.7242317028580243, -0.8773292598042741, -1.1350265434643718, -0.7184164358181462, -1.2780633204678304, -0.7120236688835426, -0.5446829368659125, -2.44333876296446, -1.4184999992698257, -1.777112188376051, -0.6278109324476076, -1.6987875381737103, -1.4009733022816044, -0.6397452856856543, -0.8564921369300686, -0.49903170253145335, -1.3511878288621184, -1.330934153260698, -1.4230778873065684, -1.5966842088931639, -0.8298341981022647, -1.6204403778181047, -1.6973451183620516, -1.3244247889236669, -1.225084146562358, -0.23679000053419896, -1.2078313796419724, -1.972741579769198, -0.8046621023808332, -1.5419898263116782, -1.6003041994416427, -2.23249871698848, -0.907782232537952, -2.7217091236663973, -0.6427136432716487, -0.34089760952618464, -2.260904229536172, -1.7251435675559241, -1.2115100350086223, -0.1320747025397433, -0.2640631954215801, -2.2231229287765384, -0.35317869775523614, -0.40405343123338056, -1.8376111120580885], \"z\": [4.154599326725324, 1.719607732740326, -1.5899220680131467, -1.900475717951951, 3.734370723864309, -1.8097281667586587, 3.378718297348546, 2.97250177127548, -1.9884596322431687, 1.0894829505253858, 1.7833750652406524, -3.3314002247169006, 0.2506399525721452, -3.4108116596531466, 3.7652150336160934, 3.6732208771195065, -2.3463459740490147, -0.877879571550094, 2.1952923494083434, -3.424754177891074, 0.9179613091867456, -3.059106857254842, -3.3531898091372345, -3.4712966548969755, 1.0683381194117594, 1.5493649414519561, 2.440802248314477, 4.250722416941755, 3.6737807359994967, -2.5920366128466172, 3.871959280398248, 1.3509578813392311, -2.1290504439231484, 1.262490211173807, 0.5203257303059328, -2.2954628630851657, 3.295145403402983, -1.1273893323453246, 1.3112791611659134, -3.0322084733014543, -2.178557626077211, -0.545911798458357, -2.2743985826341793, 2.9900247702222122, -2.800402488256289, 1.8691201901129606, -3.898919386337418, 3.85820152600417, -4.122595318186941, 2.371477397812914, 1.6722781326952765, -1.8738688161637076, 1.8806326001781057, -0.9053839564475217, 0.5408134154354185, 1.9916640817162463, 1.8056015424111393, -2.7087185195890027, -2.043940031720921, -1.7294850354540552, -3.719097408149598, -3.0822541920933455, 1.926865398454547, -1.2143310040378168, 2.0237082244308002, -3.3382843027225166, 0.8177753619384589, 3.143959531891973, -1.0989715870030605, 3.3012101116431607, -0.5208154917595507, 0.2675012278457416, -3.2494214527551533, 0.19144294739366252, 4.277958345874276, 1.8590851858532433, -3.8839924830104833, 4.262833045717305, 1.2033804774318826, -3.3936703198802354, -2.724796850121073, -0.8833718821242464, -1.0094953032226357, 4.254501515698235, -0.8111252219023046, -3.808167759333225, 3.2075924463737175, 0.9817379397089256, 4.277492174369329, -0.08587655924636373, 0.35280290697731864, 4.111489042120188, -1.9254261169097222, -2.3210512113515778, -3.261526131137387, 2.0928152058866436, -2.651021727140198, -1.4415545066498257, -1.3814050274894853, 3.1338189605762157, -3.1403821570862163, -3.1356590940563263, 1.914337370699136, 0.48256566598019024, -2.365696302998448, -2.204964700808989, 3.3715159624924107, -1.2699318712756549, -1.7749292281598619, -1.3933809149754803, 3.635765413518449, 0.7670634629899089, 2.6496888590246215, -1.8818515611087236, 1.5382290689413898, 4.309838459899162, 3.907918771550775, 0.48720692436889657, 3.172550810661984, 3.3850831871734712, -3.248319240998194, 4.2017721383137525, 3.332099536244913, -3.651070604784409, 2.5738941938546454, 1.7125555522650693, 0.10556770346930033, 0.8774487734158445, 2.0800092668218477, 4.001458026587605, -0.5623303455664446, -1.895187587312424, -3.0942454608919845, -0.6265104313265448, -0.09750417691633029, -3.9786161459127602, -1.5859115242612138, -4.116638553063174, 1.9851176123210683, -1.479150899606386, -3.676448417566119, -3.47116878938642, 3.110013086585906, 1.7566007714110343, -3.2317723301868333, 2.2132959762990794, 3.7736473697001953, 3.935755403821699, 0.013114857743904196, 1.944280580554464, -1.7443288059716333, -3.576480491276718, -4.056360889445981, -2.372494748544411, 0.3209561267133587, 2.526835925365911, -3.6658205965297026, 1.539157119783705, -3.881936146578472, 1.7539917703017682, 3.3135822372614943, 4.031921142414562, 1.9439264851929474, 0.9140122630450662, -0.13853722623461717, 3.290534667706809, -0.1322275877382726, 1.164521900659599, 3.289949783958316, -2.4648624465580324, -1.5108359211183098, -4.141976028949658, 0.6744438253759935, 2.8644483195033406, 1.7871728420072133, -2.2036602527718423, 1.8919175521953768, -0.22760691059175464, 0.7396238998247355, -2.121485115112088, -0.07321014601323927, 3.0138370651070163, -0.249466146172602, 3.7189276275573526, 3.3740817152448868, 0.03307715125090649, 0.7287836193339441, 1.79752847190899, 3.6112881416195703, -1.310535814611098, -0.6683533440487759, 3.061791892469201, -4.072154318727843, -4.1481055572306404, 1.4968998585425295, -2.0730238068350793, -3.951224281791434, -3.9092059515008675, -1.639867243798911, 2.375683721695136, 1.1309830395012783, 3.07062100868331, -0.6406572117367317, -0.9140785222747065, -1.6042161899186609, -0.5137985584198268, 2.081691558766402, -0.014118354241937858, 1.3639890573000475, -3.995705673251206, 1.162737476530924, 1.5869061632450547, 3.130426968084433, 3.1760880720710087, 2.0898886615501278, 2.5520801246175457, 1.3743654638304967, -2.441844010096384, -2.9195506562183384, -0.15739434151204978, -1.7045355755435856, 0.7303586329707494, 1.1975534754462611, 3.6184759312080077, 2.658142616697149, 4.269249318394061, -1.7534988673191183, -1.0730636169724597, 2.1636161980248705, -1.8239857946129745, -2.400384023525249, -3.6324445143181405, -3.2625742058779297, -3.131357493821568, 3.706321247497095, 3.110730910710183, -0.5364220865026614, 3.441205299636657, -1.0857714544458008, 2.978358956187283, -3.7335515936331234, -1.9351490522056722, -2.722679341472019, -2.89598618477444, -1.94700587970088, 0.7228698735700494, 0.8860934744116022, -3.740905403448665, 2.5158645543749394, -1.1388479124828352, -2.9641605680511764, -3.4130043631994003, -3.95089388127729, 2.6611565621989817, -0.6989469630190883, -3.6132865562718792, -1.0093007979428963, -0.23367883653409027, 1.1005612504309203, 1.6812415931085907, 0.6560781427836853, -3.1077682491068757, 0.3622774898429446, -0.14967576745409605, -0.37986320273310525, -3.6729424489558906, 1.393880227511314, 1.4210287977126779, -3.431367280788086, -3.859801502772248, -0.9656144121433718, -1.3164258811141436, 0.25602134369854834, 2.479565626378095, 0.3043258102333519, 0.7790879198116372, 0.04025986562923567, -2.7994249307906633, 1.103757677753297, -3.4622696240838007, -1.7199708710364026, -0.913225321624497, 3.247330268683717, -2.989967195162637, 1.5565917192574448, 0.6256762393880262, -0.42182575133546774, 3.2684146413606, 1.922736840281706, 2.673776340766757, -2.0653035553638786, 0.43235458686776695, -3.0895489507166767, 0.5460349456563067, 3.8580820588633786, -1.2299612577389678, -1.6501472165875168, 1.2334029240064766, -0.896053313312533, 4.223131935397796, 0.8046816685262348, 0.7637588623430549, 1.0025187734885446, -0.9657253021010948, 1.417442028539897, -2.5542014652109817, -0.3262299165975522, 1.0694716575456518, -1.8177357329845942, -3.178139923829483, -2.219540489005761, 1.5140822952094224, -1.67363315413639, -1.7631292500127285, 1.402283801362156, -0.5249503107514251, -3.5164777355954726, 2.0776493696772285, 2.4583434767196515, 1.5102700670501008, 2.2708363177090805, -0.42367197948521085, 1.4165725626222043, -0.33338680800847653, -2.2614025089528758, -2.710312462978226, -2.804398511358694, -0.2816166432522458, -1.5495416246928762, 4.061636245588622, -3.9200654923705462, 1.8508433272825426, 3.846430371715294, -0.5328795653568568, -2.370868201779637, 1.5169435259823612, 3.840697190670224, -3.6012427744674067, 2.6768765809133654, -0.049892768064119686, 2.7999083707756007, -0.04693083145796617, -0.8384815551491722, 1.5365588540729522, 2.4404832137947112, -2.1310776348630007, 1.2062786681319242, 2.0703364378803526, -3.692559872091154, -1.8889467573981782, 1.3391253078924565, 3.5608555082139635, 3.1967088880588257, -3.4063637631008645, -0.26968876364763084, -0.13472353886514377, 0.39808026536869523, -1.8598927076444505, 0.7282265937147896, 3.104199896599795, 3.6407211021315344, 4.0222160920309085, 2.061615924828904, -3.7705347646194425, -2.50675839511042, -1.3284100906047316, 2.935736876882438, -2.257685774542543, 3.6110786723490405, -2.239374972918453, 0.8176997666726988, 2.0965427969727823, -3.129287081817106, 1.0490073851257815, -3.2218316163368312, 2.2632899780414837, 3.2407057420941525, 0.05765813498146688, 2.9774211194740285, 2.594020798420991, 2.258980113501373, -0.4954854318882864, -3.699561382302493, -2.7367700788653133, -1.3827404608808105, 2.9244332485721696, 3.339015475847111, -2.865692214650924, 1.1936428165122583, -3.0023006056809316, 0.7772185594895316, -3.486006621050864, 1.0868409764288653, -2.041892610285772, 3.6511802788525545, 3.948879196410286, -2.5309577494157764, 1.0062527973990347, 0.23145179871795563, -2.560962364328282, 2.4063585996952126, 1.464394886728484, -1.9673183675010448, 2.0452111178512205, -4.00248985047311, 0.9698882965123206, -3.776055603666276, -2.4498009469047766, 0.42449668732979173, -3.8233474186702785, -3.1044530983263634, 2.3814811870334234, 3.67325634872567, 0.007251187520409985, -3.8532641447773037, 1.3338979639382496, -0.9322000956107934, 0.1704328529907677, -0.9546265771101794, -2.2546762987165145, -0.5939290682150791, 1.863133012128909, 2.624155997020485, -3.8897118477986843, -2.7367852996325692, -0.07587283011231527, -1.75927831640253, -0.37266276365804174, 2.3421659674127477, 1.1047052673990718, 1.0350913270244364, 3.563359917326248, -2.7884216097277745, -1.624524106822534, 0.7841301713635715, 2.3082626469685765, -0.6309972853158445, -3.3217484925026044, -2.0316728440551146, 1.3978225573419314, -1.9134860394631668, -2.470157254763442, -0.09706314935358318, -0.6351177486193897, 1.2391359878955113, 4.313900220699186, 1.75755638112076, -3.3485976591783118, 1.4134724747512912, 0.0916818492263971, 3.6420258267505057, -0.7532469355710671, -3.3291172726009304, -2.013056868733975, 2.6127551470202572, -1.2841964164250594, -2.7413381587302843, -0.7130808729900386, -0.41511417928634753, 2.604739219098338, 2.683117172143014, 3.8078187013261013, 1.3222200010066096, -4.01379817438267, -1.7210493922395398, 1.1588122972050643, 3.1265167354515766, -0.9264800254363275, -2.8907541574615463, 0.8952411639465581, 0.1473721020299692, 1.6562992741654599, -1.0610142329553698, -1.9743280205201357, -1.811042978720054, -3.386984957655894, -1.6030045200981826, -4.239203985378486, 0.11652366165252914, 2.5332757850199883, -2.2562788759951826, -2.060484652237031, -4.206977495948719, 1.1302939815804942, -0.9681089653180508, -1.7161670003573195, 3.5163958457157953, -4.226840875295946, -1.3874063712080553, -3.5777629926523624, -0.9617353353470475, -0.4202344954598707, 2.155439310363568, -1.2614017817909944, -2.75921718749628, -1.3179462405858278, -1.2081925572688954, -0.6222596924939343, 3.30537158048375, -2.2270741210807152, -1.7821804687796425, 2.675772197051063, 4.1817384046952855, 3.126865711979778, -1.4401369426933615, -0.9730556480473798, -1.32601901182532, 1.8048408313391144, 2.7271414832869763, 3.0194221792969387, 3.803129906627851, 3.2283480076670674, -2.4934712516852473, -1.3251315467044678, -0.7520296730671494, -2.073881393092055, -2.0313931253570003, 2.282651672413558, 0.8500366222677345, -0.05129208042810873, 2.382387192672616, 2.819038795199483, -1.826779436069502, -2.3789431281213114, -3.25329262553905, 1.6340626285588495, 3.3603885111355734, -0.2047668208914235, 0.6245665409962777, -1.92125521041375, -4.228580715339482, 2.7043109922040305, -1.4105217338393188, 2.1394257638970826, -3.5742193722312368, 0.05399303681850398, 4.26590363259167, -1.3223526315749266, 4.119698235937597, 2.286391769680389, -2.410983763868331, -2.326133181955824, 2.8091406859511183, -2.9628086088177965, -0.6784762520086889, 4.295372981293927, -2.0625135089868287, -4.106385086069601, 4.178862094708932, -2.2641520652112472, -2.3789343257730886, 3.160656991063443, 1.0013293314797638, -2.0883777937391628, 2.8159851936043445, -3.2618226404599744, -3.372123056214865, -0.4389845980374645, 3.7273506027792678, 2.9294764359334637, -2.283685705143815, -1.8785794704323537, -2.2022117583993084, -2.6718147054335324, 4.176671156369179, -4.202798852431267, 4.150168015188984, -2.9983074197062196, 3.83802627987584, 3.2168763142899435, -3.8748488538852537, 2.7125798253569426, 2.1809734148748534, -0.2035638273080158, 3.5030782760978676, -1.2955695205733067, 3.623507702296539, -1.529232525784657, 2.6859541298487972, -1.1690418453491511, -1.0987687959399204, -1.8280211864898366, 3.2932640412173813, -1.4953341646719536, 0.7604031344707733, 4.284902585895135, 0.17258476587767557, 3.7280850822118827, -2.0327153436800516, 0.2342230858865717, -0.3423543706916856, 0.7759741783469041, 0.010641481071414383, -0.6057091171315352, 1.177468551154151, -3.2641141672060012, -1.14602962379662, -2.3539531590251284, -0.9647990810197347, 0.028757527551391604, 1.8395927393306932, -4.252886176490191, -4.146289582659566, 1.675496814859759, -3.6245354898999804, -1.6742467789647848, 4.302411230452294, 0.06470185899620695, -2.7895504590352598, 3.598871901078394, -3.648868267234282, 1.246865829213795, -1.4898674535847745, 2.1594147036347495, -1.621264142175601, 0.46100695072615583, -1.1940494396406982, 0.16766615232184012, -0.700034672812869, 2.6079091938343257, -0.039342860675849245, -2.460528234203363, 3.3741204437771115, 0.6282122853818128, 0.007245876776520888, -1.003444990863029, -1.6799679630687732, 0.9956564604025004, 2.048487418714644, 4.146928707811324, 3.0090576604865733, 0.5970204532564694, -4.021784692028722, -3.7464788625291643, 2.1980422207002546, -2.295890112304265, -2.1444216001594256, -0.9513861205995391, 3.143938371949214, 3.4783892773544043, 1.1088855093379282, 3.3502886148353, 0.3788460920579304, -1.2310189015050144, 0.5465586859255822, -1.5410180179679287, 0.724949577076015, 1.7173214492195603, 2.581587226816776, -1.7842032223884416, 0.8150206183045547, -1.2285331607263488, -0.14826132216554022, 1.4028279253572933, 1.719047445385022, -0.8235384520932527, 1.5624844800827464, -1.505421950336312, 3.9496582213347198, 2.832688149187274, 4.199185247237554, 0.1501373335117382, 1.1999054133678477, -2.416820493531411, -2.85167221947174, 2.1028041511523723]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 0\", \"marker\": {\"color\": \"rgb(31, 119, 180)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 0\", \"scene\": \"scene2\", \"showlegend\": false, \"text\": [\"0_l_0_m-0_0.08-1_0.1-2_0.06-3_0.19\", \"1_l_0_m-0_0.12-1_0.47-2_0.31-3_0.18\", \"2_l_0_m-0_0.09-1_0.16-2_0.08-3_0.18\", \"3_l_0_m-0_0.21-1_0.23-2_0.17-3_0.1\", \"4_l_0_m-0_0.47-1_0.09-2_0.48-3_0.24\", \"5_l_0_m-0_0.16-1_0.92-2_0.25-3_0.33\", \"6_l_0_c_0_1_2-0_0.16-1_0.18-2_0.48-3_0.52\", \"7_l_0_c_0_1_2-0_0.0-1_0.08-2_0.86-3_1.04\", \"8_l_0_c_0_1_2-0_0.79-1_0.27-2_0.53-3_1.46\", \"9_l_0_c_0_1_2-0_0.5-1_0.46-2_0.73-3_0.29\", \"10_l_0_c_0_1_2-0_0.35-1_0.09-2_0.95-3_0.67\", \"11_l_0_c_0_1_2-0_0.45-1_0.18-2_0.01-3_0.68\", \"12_l_0_c_0_1_2-0_0.26-1_0.65-2_0.03-3_1.18\", \"13_l_0_c_0_1_2-0_0.02-1_0.11-2_0.11-3_0.93\", \"14_l_0_c_0_1_2-0_0.01-1_0.31-2_0.46-3_0.39\", \"15_l_0_c_0_1_2-0_0.49-1_0.44-2_0.46-3_0.4\", \"16_l_0_c_0_1_2-0_0.32-1_0.66-2_0.09-3_0.22\", \"17_l_0_c_0_1_2-0_0.88-1_0.25-2_0.08-3_0.3\", \"18_l_0_c_0_1_2-0_0.24-1_0.29-2_0.41-3_0.04\", \"19_l_0_c_1_2_3-0_1.19-1_0.67-2_0.48-3_0.22\", \"20_l_0_c_0_1_2-0_0.56-1_0.09-2_0.52-3_1.12\", \"21_l_0_c_0_2_3-0_0.44-1_0.25-2_0.14-3_0.45\", \"22_l_0_c_1_2_3-0_0.05-1_0.26-2_1.37-3_0.82\", \"23_l_0_c_0_1_2-0_0.49-1_0.15-2_0.69-3_0.44\", \"24_l_0_c_0_2_3-0_0.38-1_0.27-2_0.15-3_0.11\", \"25_l_0_c_1_2_3-0_0.97-1_0.06-2_0.49-3_0.2\", \"26_l_0_c_0_1_2-0_0.19-1_0.15-2_0.23-3_0.53\", \"27_l_0_c_0_2_3-0_0.89-1_0.91-2_0.76-3_0.39\", \"28_l_0_c_1_2_3-0_1.08-1_0.98-2_0.18-3_0.04\", \"29_l_0_c_0_1_2-0_0.22-1_1.08-2_0.81-3_0.67\", \"30_l_0_c_0_2_3-0_0.23-1_0.4-2_0.14-3_0.55\", \"31_l_0_c_1_2_3-0_0.26-1_1.2-2_1.47-3_0.63\", \"32_l_0_c_0_1_2-0_0.07-1_0.41-2_0.51-3_0.63\", \"33_l_0_c_0_2_3-0_0.91-1_0.76-2_0.27-3_0.2\", \"34_l_0_c_1_2_3-0_0.87-1_0.07-2_0.06-3_0.57\", \"35_l_0_c_0_1_2-0_0.56-1_0.36-2_0.13-3_0.52\", \"36_l_0_c_0_2_3-0_0.28-1_0.03-2_0.3-3_0.01\", \"37_l_0_c_1_2_3-0_1.09-1_0.93-2_0.76-3_0.51\", \"38_l_0_c_0_1_2-0_0.25-1_0.17-2_0.57-3_0.02\", \"39_l_0_c_0_2_3-0_0.28-1_1.49-2_0.09-3_0.08\", \"40_l_0_c_1_2_3-0_0.64-1_1.01-2_0.43-3_0.53\", \"41_l_0_c_0_1_2-0_0.89-1_0.53-2_0.66-3_0.47\", \"42_l_0_c_0_2_3-0_0.41-1_0.28-2_0.62-3_0.12\", \"43_l_0_c_1_2_3-0_0.3-1_0.39-2_0.16-3_0.31\", \"44_l_0_c_0_1_2-0_0.89-1_0.29-2_1.09-3_0.7\", \"45_l_0_c_0_2_3-0_0.2-1_1.61-2_0.97-3_0.56\", \"46_l_0_c_1_2_3-0_1.88-1_0.28-2_0.02-3_0.34\", \"47_l_0_c_0_1_2-0_0.46-1_0.32-2_0.42-3_0.99\", \"48_l_0_c_0_2_3-0_0.3-1_0.65-2_1.47-3_0.02\", \"49_l_0_c_1_2_3-0_0.12-1_1.17-2_0.15-3_0.4\", \"50_l_0_c_0_1_2-0_0.15-1_1.28-2_0.92-3_0.85\", \"51_l_0_c_0_2_3-0_1.05-1_0.51-2_0.73-3_1.02\", \"52_l_0_c_1_2_3-0_0.18-1_0.07-2_0.62-3_0.67\", \"53_l_0_c_0_1_2-0_0.69-1_0.81-2_0.74-3_1.39\", \"54_l_0_c_0_2_3-0_0.16-1_0.75-2_0.07-3_0.35\", \"55_l_0_c_1_2_3-0_0.97-1_0.19-2_0.38-3_0.2\", \"56_l_0_c_0_1_2-0_0.28-1_0.04-2_0.25-3_0.4\", \"57_l_0_c_0_2_3-0_0.51-1_1.5-2_0.68-3_0.15\", \"58_l_0_c_1_2_3-0_0.97-1_0.32-2_0.19-3_0.46\", \"59_l_0_c_0_1_2-0_0.56-1_0.88-2_0.21-3_0.17\", \"60_l_0_c_0_2_3-0_1.68-1_1.59-2_0.67-3_0.04\", \"61_l_0_c_1_2_3-0_0.88-1_0.25-2_0.45-3_0.18\", \"62_l_0_c_0_1_2-0_0.2-1_0.18-2_0.32-3_0.14\", \"63_l_0_c_0_2_3-0_1.24-1_0.85-2_0.84-3_0.38\", \"64_l_0_c_1_2_3-0_0.73-1_0.38-2_0.16-3_0.74\", \"65_l_0_c_0_1_2-0_0.44-1_0.05-2_0.39-3_0.18\", \"66_l_0_c_0_2_3-0_0.41-1_1.44-2_0.12-3_0.11\", \"67_l_0_c_1_2_3-0_2.05-1_0.06-2_0.68-3_1.1\", \"68_l_0_c_0_1_2-0_0.4-1_0.19-2_0.03-3_1.39\", \"69_l_0_c_0_2_3-0_0.31-1_0.28-2_0.08-3_0.25\", \"70_l_0_c_1_2_3-0_0.45-1_0.08-2_0.27-3_0.6\", \"71_l_0_c_0_1_2-0_0.2-1_0.06-2_0.96-3_0.54\", \"72_l_0_c_0_2_3-0_0.14-1_0.93-2_0.74-3_0.39\", \"73_l_0_c_1_2_3-0_0.46-1_0.46-2_0.66-3_0.02\", \"74_l_0_c_0_1_2-0_0.69-1_0.43-2_0.14-3_0.4\", \"75_l_0_c_0_2_3-0_0.23-1_1.16-2_0.46-3_1.37\", \"76_l_0_c_1_2_3-0_2.24-1_0.15-2_0.96-3_0.61\", \"77_l_0_c_0_1_2-0_0.05-1_0.07-2_0.15-3_0.87\", \"78_l_0_c_0_2_3-0_0.21-1_0.08-2_0.25-3_0.11\", \"79_l_0_c_1_2_3-0_0.43-1_0.1-2_0.01-3_0.94\", \"80_l_0_c_0_1_2-0_0.58-1_0.21-2_0.54-3_0.47\", \"81_l_0_c_0_2_3-0_0.34-1_1.14-2_0.45-3_0.06\", \"82_l_0_c_1_2_3-0_1.71-1_0.12-2_0.15-3_0.07\", \"83_l_0_c_0_1_2-0_0.12-1_0.06-2_0.0-3_0.26\", \"84_l_0_c_0_2_3-0_0.8-1_0.15-2_0.64-3_0.24\", \"85_l_0_c_1_2_3-0_1.41-1_0.02-2_1.18-3_0.64\", \"86_l_0_c_0_1_2-0_0.05-1_0.21-2_0.64-3_0.53\", \"87_l_0_c_0_2_3-0_0.9-1_0.07-2_0.44-3_0.22\", \"88_l_0_c_1_2_3-0_0.07-1_0.19-2_0.42-3_0.71\", \"89_l_0_c_0_1_2-0_0.21-1_0.2-2_0.35-3_0.04\", \"90_l_0_c_0_2_3-0_0.38-1_2.27-2_0.51-3_0.04\", \"91_l_0_c_1_2_3-0_0.57-1_0.45-2_0.2-3_0.44\", \"92_l_0_c_0_1_2-0_0.23-1_0.17-2_0.43-3_1.58\", \"93_l_0_c_0_2_3-0_2.0-1_0.83-2_0.76-3_0.02\", \"94_l_0_c_1_2_3-0_0.43-1_0.32-2_0.19-3_0.86\", \"95_l_0_c_0_1_2-0_0.34-1_0.46-2_0.23-3_0.69\", \"96_l_0_c_0_2_3-0_0.03-1_0.36-2_0.26-3_0.08\", \"97_l_0_c_1_2_3-0_0.69-1_0.09-2_1.09-3_0.99\", \"98_l_0_c_0_1_2-0_0.02-1_0.16-2_0.64-3_0.6\", \"99_l_0_c_0_1_3-0_0.06-1_0.32-2_0.65-3_0.41\", \"100_l_0_c_0_2_3-0_0.03-1_0.14-2_0.74-3_0.63\", \"101_l_0_c_1_2_3-0_1.15-1_0.92-2_1.15-3_0.82\", \"102_l_0_c_0_1_2-0_0.09-1_0.04-2_0.31-3_0.88\", \"103_l_0_c_0_1_3-0_0.07-1_0.34-2_0.57-3_0.05\", \"104_l_0_c_0_2_3-0_0.41-1_0.51-2_0.35-3_0.04\", \"105_l_0_c_1_2_3-0_0.55-1_0.74-2_0.64-3_0.06\", \"106_l_0_c_0_1_2-0_0.09-1_0.19-2_0.17-3_0.35\", \"107_l_0_c_0_1_3-0_0.02-1_0.13-2_1.34-3_0.6\", \"108_l_0_c_0_2_3-0_0.54-1_0.09-2_1.38-3_1.04\", \"109_l_0_c_1_2_3-0_0.96-1_0.09-2_0.5-3_0.73\", \"110_l_0_c_0_1_2-0_0.5-1_0.59-2_0.08-3_0.06\", \"111_l_0_c_0_1_3-0_0.06-1_0.82-2_0.49-3_0.1\", \"112_l_0_c_0_2_3-0_0.04-1_0.3-2_0.01-3_0.46\", \"113_l_0_c_1_2_3-0_0.52-1_0.44-2_0.72-3_0.71\", \"114_l_0_c_0_1_2-0_0.09-1_0.34-2_1.76-3_1.09\", \"115_l_0_c_0_1_3-0_0.14-1_0.82-2_0.18-3_0.11\", \"116_l_0_c_0_2_3-0_0.56-1_0.93-2_0.15-3_0.12\", \"117_l_0_c_1_2_3-0_0.54-1_0.2-2_0.3-3_0.08\", \"118_l_0_c_0_1_2-0_0.53-1_0.18-2_0.52-3_0.01\", \"119_l_0_c_0_1_3-0_0.35-1_0.5-2_0.28-3_0.26\", \"120_l_0_c_0_2_3-0_0.49-1_0.76-2_0.12-3_2.22\", \"121_l_0_c_1_2_3-0_0.11-1_0.58-2_0.11-3_0.57\", \"122_l_0_c_0_1_2-0_0.13-1_1.02-2_1.03-3_1.02\", \"123_l_0_c_0_1_3-0_0.05-1_0.95-2_0.49-3_0.4\", \"124_l_0_c_0_2_3-0_0.2-1_1.9-2_0.35-3_0.63\", \"125_l_0_c_1_2_3-0_0.4-1_0.12-2_0.25-3_0.2\", \"126_l_0_c_0_1_2-0_0.18-1_0.49-2_0.34-3_0.01\", \"127_l_0_c_0_1_3-0_0.09-1_0.01-2_0.81-3_0.26\", \"128_l_0_c_0_2_3-0_0.23-1_0.16-2_1.5-3_0.83\", \"129_l_0_c_1_2_3-0_1.29-1_0.15-2_0.0-3_0.14\", \"130_l_0_c_0_1_2-0_0.39-1_0.08-2_0.17-3_0.47\", \"131_l_0_c_0_1_3-0_0.03-1_0.46-2_0.16-3_0.26\", \"132_l_0_c_0_2_3-0_0.19-1_0.2-2_0.46-3_0.04\", \"133_l_0_c_1_2_3-0_0.66-1_0.08-2_0.12-3_0.96\", \"134_l_0_c_0_1_2-0_0.71-1_0.18-2_0.68-3_1.72\", \"135_l_0_c_0_1_3-0_0.04-1_0.79-2_1.72-3_0.05\", \"136_l_0_c_0_2_3-0_0.43-1_1.42-2_1.29-3_0.04\", \"137_l_0_c_1_2_3-0_0.27-1_0.71-2_1.11-3_0.1\", \"138_l_0_c_0_1_2-0_0.12-1_0.16-2_0.15-3_0.1\", \"139_l_0_c_0_1_3-0_0.07-1_0.64-2_0.05-3_0.11\", \"140_l_0_c_0_2_3-0_0.05-1_1.53-2_0.46-3_0.14\", \"141_l_0_c_1_2_3-0_0.99-1_0.31-2_0.18-3_0.06\", \"142_l_0_c_0_1_2-0_1.54-1_0.07-2_0.21-3_0.93\", \"143_l_0_c_0_1_3-0_0.3-1_0.54-2_0.05-3_0.05\", \"144_l_0_c_0_2_3-0_0.06-1_0.62-2_0.41-3_0.27\", \"145_l_0_c_1_2_3-0_0.04-1_0.43-2_0.13-3_0.7\", \"146_l_0_c_0_1_2-0_0.56-1_0.46-2_0.58-3_0.11\", \"147_l_0_c_0_1_3-0_0.71-1_0.23-2_1.18-3_0.31\", \"148_l_0_c_0_2_3-0_0.35-1_1.91-2_0.07-3_0.5\", \"149_l_0_c_1_2_3-0_0.23-1_0.1-2_0.03-3_0.28\", \"150_l_0_c_0_1_2-0_0.27-1_0.11-2_0.59-3_0.3\", \"151_l_0_c_0_1_3-0_0.13-1_0.09-2_0.16-3_0.01\", \"152_l_0_c_0_2_3-0_0.41-1_0.23-2_0.26-3_0.29\", \"153_l_0_c_1_2_3-0_0.84-1_0.71-2_0.7-3_0.08\", \"154_l_0_c_0_1_2-0_0.66-1_0.44-2_0.1-3_1.0\", \"155_l_0_c_0_1_3-0_0.28-1_0.23-2_0.2-3_0.02\", \"156_l_0_c_0_2_3-0_0.26-1_1.45-2_0.37-3_0.45\", \"157_l_0_c_1_2_3-0_0.16-1_0.84-2_0.62-3_0.21\", \"158_l_0_c_0_1_2-0_0.38-1_0.4-2_0.28-3_0.46\", \"159_l_0_c_0_1_3-0_0.44-1_0.75-2_0.03-3_1.07\", \"160_l_0_c_0_2_3-0_0.58-1_0.11-2_0.6-3_1.06\", \"161_l_0_c_1_2_3-0_1.35-1_0.5-2_0.2-3_0.24\", \"162_l_0_c_0_1_2-0_0.73-1_0.27-2_0.48-3_2.1\", \"163_l_0_c_0_1_3-0_0.59-1_0.6-2_0.14-3_0.1\", \"164_l_0_c_0_2_3-0_0.45-1_0.59-2_0.11-3_0.24\", \"165_l_0_c_1_2_3-0_0.04-1_1.36-2_0.69-3_0.07\", \"166_l_0_c_0_1_2-0_0.06-1_0.11-2_0.88-3_0.96\", \"167_l_0_c_0_1_3-0_0.34-1_0.09-2_1.17-3_0.11\", \"168_l_0_c_0_2_3-0_0.07-1_1.72-2_1.1-3_0.71\", \"169_l_0_c_1_2_3-0_0.55-1_0.53-2_0.37-3_0.22\", \"170_l_0_c_0_1_2-0_0.1-1_0.78-2_0.4-3_1.28\", \"171_l_0_c_0_1_3-0_0.16-1_0.07-2_0.24-3_0.2\", \"172_l_0_c_0_2_3-0_0.19-1_0.92-2_0.79-3_0.12\", \"173_l_0_c_1_2_3-0_0.27-1_0.12-2_0.4-3_0.41\", \"174_l_0_c_0_1_2-0_0.67-1_1.34-2_0.58-3_0.7\", \"175_l_0_c_0_1_3-0_0.18-1_0.89-2_0.68-3_0.37\", \"176_l_0_c_0_2_3-0_0.41-1_0.47-2_0.97-3_0.08\", \"177_l_0_c_1_2_3-0_1.31-1_0.48-2_0.28-3_0.05\", \"178_l_0_c_0_1_2-0_0.48-1_1.05-2_0.66-3_0.6\", \"179_l_0_c_0_1_3-0_0.98-1_0.33-2_0.71-3_0.35\", \"180_l_0_c_0_2_3-0_0.56-1_0.69-2_0.05-3_0.18\", \"181_l_0_c_1_2_3-0_1.86-1_0.25-2_0.31-3_0.18\", \"182_l_0_c_0_1_2-0_1.12-1_1.05-2_0.53-3_1.1\", \"183_l_0_c_0_1_3-0_0.87-1_0.43-2_0.03-3_0.07\", \"184_l_0_c_0_2_3-0_0.65-1_0.94-2_0.1-3_0.7\", \"185_l_0_c_1_2_3-0_0.33-1_0.95-2_0.24-3_0.71\", \"186_l_0_c_0_1_2-0_0.39-1_0.07-2_0.08-3_0.43\", \"187_l_0_c_0_1_3-0_0.05-1_0.18-2_0.24-3_0.2\", \"188_l_0_c_0_2_3-0_0.56-1_1.31-2_0.4-3_0.82\", \"189_l_0_c_1_2_3-0_0.49-1_0.39-2_0.45-3_0.66\", \"190_l_0_c_0_1_2-0_0.09-1_0.85-2_0.28-3_0.85\", \"191_l_0_c_0_1_3-0_0.05-1_0.11-2_0.96-3_0.93\", \"192_l_0_c_0_2_3-0_0.51-1_0.44-2_0.24-3_0.3\", \"193_l_0_c_1_2_3-0_0.22-1_0.67-2_0.61-3_1.16\", \"194_l_0_c_0_1_2-0_0.59-1_0.0-2_0.04-3_0.26\", \"195_l_0_c_0_1_3-0_0.51-1_1.05-2_1.87-3_0.31\", \"196_l_0_c_0_2_3-0_0.17-1_0.62-2_0.92-3_0.31\", \"197_l_0_c_1_2_3-0_0.02-1_0.59-2_1.32-3_0.8\", \"198_l_0_c_0_1_2-0_0.03-1_0.11-2_0.44-3_2.01\", \"199_l_0_c_0_1_3-0_0.82-1_0.29-2_0.02-3_0.3\", \"200_l_0_c_0_2_3-0_0.48-1_0.23-2_0.27-3_0.17\", \"201_l_0_c_1_2_3-0_0.12-1_0.7-2_0.16-3_0.19\", \"202_l_0_c_0_1_2-0_0.26-1_0.66-2_0.53-3_0.76\", \"203_l_0_c_0_1_3-0_0.6-1_1.34-2_0.38-3_0.1\", \"204_l_0_c_0_2_3-0_0.1-1_0.84-2_0.08-3_0.15\", \"205_l_0_c_1_2_3-0_0.88-1_0.28-2_0.67-3_0.83\", \"206_l_0_c_0_1_2-0_0.22-1_0.21-2_1.45-3_0.36\", \"207_l_0_c_0_1_3-0_0.02-1_0.15-2_0.1-3_0.38\", \"208_l_0_c_0_2_3-0_0.41-1_1.88-2_1.04-3_0.83\", \"209_l_0_c_1_2_3-0_0.92-1_1.3-2_0.2-3_0.78\", \"210_l_0_c_0_1_2-0_0.08-1_0.03-2_0.04-3_0.1\", \"211_l_0_c_0_1_3-0_0.83-1_0.46-2_0.19-3_0.34\", \"212_l_0_c_0_2_3-0_0.54-1_1.0-2_0.82-3_0.8\", \"213_l_0_c_1_2_3-0_1.51-1_0.67-2_1.93-3_0.31\", \"214_l_0_c_0_1_2-0_0.04-1_1.63-2_0.74-3_0.07\", \"215_l_0_c_0_1_3-0_0.77-1_0.06-2_2.47-3_1.47\", \"216_l_0_c_0_2_3-0_0.63-1_0.07-2_0.11-3_0.27\", \"217_l_0_c_1_2_3-0_1.25-1_0.56-2_0.11-3_0.06\", \"218_l_0_c_0_1_2-0_0.18-1_0.15-2_0.08-3_0.52\", \"219_l_0_c_0_1_3-0_0.01-1_0.33-2_0.22-3_0.13\", \"220_l_0_c_0_2_3-0_0.5-1_0.55-2_0.03-3_0.27\", \"221_l_0_c_1_2_3-0_0.94-1_0.62-2_0.52-3_0.41\", \"222_l_0_c_0_1_2-0_0.45-1_0.42-2_0.35-3_1.3\", \"223_l_0_c_0_1_3-0_0.07-1_0.07-2_0.13-3_0.04\", \"224_l_0_c_0_2_3-0_1.61-1_0.44-2_0.05-3_0.08\", \"225_l_0_c_1_2_3-0_0.82-1_0.56-2_0.97-3_0.05\", \"226_l_0_c_0_1_2-0_0.19-1_0.32-2_0.45-3_0.5\", \"227_l_0_c_0_1_3-0_0.78-1_0.51-2_2.04-3_0.56\", \"228_l_0_c_0_2_3-0_0.15-1_0.4-2_0.23-3_1.22\", \"229_l_0_c_1_2_3-0_0.26-1_0.23-2_1.38-3_0.32\", \"230_l_0_c_0_1_2-0_0.85-1_0.18-2_0.33-3_0.01\", \"231_l_0_c_0_1_3-0_0.89-1_0.19-2_0.47-3_0.48\", \"232_l_0_c_0_2_3-0_0.47-1_0.49-2_0.32-3_0.02\", \"233_l_0_c_1_2_3-0_1.85-1_0.08-2_0.02-3_0.19\", \"234_l_0_c_0_1_2-0_0.29-1_0.03-2_0.53-3_0.12\", \"235_l_0_c_0_1_3-0_0.56-1_1.17-2_0.53-3_0.3\", \"236_l_0_c_0_2_3-0_0.2-1_0.38-2_1.49-3_0.16\", \"237_l_0_c_1_2_3-0_0.8-1_0.03-2_0.73-3_0.15\", \"238_l_0_c_0_1_2-0_0.01-1_0.01-2_0.47-3_1.36\", \"239_l_0_c_0_1_3-0_0.28-1_0.1-2_1.07-3_0.43\", \"240_l_0_c_0_2_3-0_0.18-1_0.53-2_0.17-3_0.01\", \"241_l_0_c_1_2_3-0_0.7-1_0.72-2_0.42-3_0.97\", \"242_l_0_c_0_1_2-0_0.27-1_0.54-2_0.1-3_0.48\", \"243_l_0_c_0_1_3-0_1.25-1_0.22-2_0.62-3_0.06\", \"244_l_0_c_0_2_3-0_0.17-1_0.97-2_0.03-3_0.16\", \"245_l_0_c_1_2_3-0_0.12-1_0.27-2_1.03-3_0.15\", \"246_l_0_c_0_1_2-0_0.06-1_0.45-2_0.25-3_0.55\", \"247_l_0_c_0_1_3-0_1.46-1_0.26-2_0.27-3_0.32\", \"248_l_0_c_0_2_3-0_0.11-1_1.39-2_0.07-3_0.76\", \"249_l_0_c_1_2_3-0_0.41-1_0.5-2_0.06-3_0.3\", \"250_l_0_c_0_1_2-0_0.94-1_0.09-2_0.09-3_0.83\", \"251_l_0_c_0_1_3-0_0.45-1_0.07-2_0.55-3_0.39\", \"252_l_0_c_0_2_3-0_0.31-1_0.25-2_0.6-3_0.16\", \"253_l_0_c_1_2_3-0_0.18-1_0.12-2_0.13-3_0.55\", \"254_l_0_c_0_1_2-0_0.57-1_1.09-2_0.74-3_0.05\", \"255_l_0_c_0_1_3-0_0.16-1_0.64-2_1.69-3_0.01\", \"256_l_0_c_0_2_3-0_0.09-1_0.99-2_0.18-3_0.01\", \"257_l_0_c_1_2_3-0_1.03-1_0.5-2_0.79-3_0.1\", \"258_l_0_c_0_1_2-0_0.2-1_0.43-2_0.14-3_0.04\", \"259_l_0_c_0_1_3-0_0.19-1_0.38-2_0.83-3_0.35\", \"260_l_0_c_0_2_3-0_0.27-1_0.93-2_0.62-3_0.01\", \"261_l_0_c_1_2_3-0_1.59-1_0.11-2_0.41-3_1.02\", \"262_l_0_c_0_1_2-0_0.88-1_0.16-2_0.27-3_0.14\", \"263_l_0_c_0_1_3-0_0.15-1_0.28-2_1.69-3_0.2\", \"264_l_0_c_0_2_3-0_0.08-1_0.26-2_0.13-3_0.25\", \"265_l_0_c_1_2_3-0_1.11-1_0.58-2_1.7-3_0.04\", \"266_l_0_c_0_1_2-0_0.51-1_0.51-2_0.69-3_1.07\", \"267_l_0_c_0_1_3-0_0.25-1_0.24-2_1.0-3_0.02\", \"268_l_0_c_0_2_3-0_0.09-1_0.68-2_0.05-3_0.21\", \"269_l_0_c_1_2_3-0_0.08-1_0.7-2_1.13-3_0.76\", \"270_l_0_c_0_1_2-0_0.43-1_0.12-2_0.99-3_0.46\", \"271_l_0_c_0_1_3-0_0.33-1_1.36-2_1.4-3_0.15\", \"272_l_0_c_0_2_3-0_0.09-1_0.06-2_0.59-3_0.03\", \"273_l_0_c_1_2_3-0_0.41-1_0.33-2_0.26-3_0.19\", \"274_l_0_c_0_1_2-0_0.03-1_0.31-2_0.04-3_0.37\", \"275_l_0_c_0_1_3-0_0.38-1_0.02-2_0.83-3_0.38\", \"276_l_0_c_0_2_3-0_1.37-1_0.3-2_0.99-3_0.79\", \"277_l_0_c_1_2_3-0_0.24-1_1.02-2_0.43-3_0.01\", \"278_l_0_c_0_1_2-0_0.29-1_1.14-2_0.33-3_0.16\", \"279_l_0_c_0_1_3-0_1.47-1_0.76-2_0.53-3_0.13\", \"280_l_0_c_0_2_3-0_0.48-1_1.42-2_1.84-3_0.41\", \"281_l_0_c_1_2_3-0_1.02-1_0.58-2_0.41-3_0.24\", \"282_l_0_c_0_1_2-0_0.26-1_0.91-2_0.04-3_0.72\", \"283_l_0_c_0_1_3-0_0.43-1_0.36-2_0.02-3_0.18\", \"284_l_0_c_0_2_3-0_0.12-1_0.58-2_0.02-3_0.1\", \"285_l_0_c_1_2_3-0_1.38-1_0.22-2_0.02-3_0.04\", \"286_l_0_c_0_1_2-0_0.25-1_0.42-2_1.01-3_0.07\", \"287_l_0_c_0_1_3-0_0.43-1_0.74-2_1.07-3_0.26\", \"288_l_0_c_0_2_3-0_0.36-1_0.08-2_0.36-3_0.23\", \"289_l_0_c_1_2_3-0_0.93-1_0.11-2_0.92-3_0.1\", \"290_l_0_c_0_1_2-0_0.43-1_0.61-2_0.21-3_0.6\", \"291_l_0_c_0_1_3-0_1.24-1_0.02-2_0.8-3_0.17\", \"292_l_0_c_0_2_3-0_0.3-1_0.0-2_0.15-3_0.86\", \"293_l_0_c_1_2_3-0_0.06-1_0.77-2_1.34-3_0.6\", \"294_l_0_c_0_1_2-0_1.31-1_0.62-2_1.25-3_0.35\", \"295_l_0_c_3-0_2.17-1_0.31-2_1.42-3_0.04\", \"296_l_0_r-0_0.87-1_0.39-2_1.34-3_0.51\", \"297_l_0_r-0_0.23-1_0.53-2_0.56-3_0.98\", \"298_l_0_r-0_0.56-1_1.41-2_1.44-3_0.26\", \"299_l_0_r-0_0.59-1_0.78-2_1.47-3_0.9\", \"300_l_0_r-0_0.62-1_0.23-2_0.19-3_0.56\", \"301_l_0_r-0_0.41-1_0.03-2_1.38-3_0.21\", \"302_l_0_r-0_0.01-1_1.47-2_0.45-3_0.66\", \"303_l_0_r-0_0.83-1_0.41-2_0.59-3_0.34\", \"304_l_0_r-0_1.62-1_0.7-2_1.55-3_0.87\", \"305_l_0_r-0_0.17-1_0.98-2_0.16-3_0.93\", \"306_l_0_r-0_0.92-1_0.94-2_1.06-3_0.74\", \"307_l_0_r-0_1.4-1_0.93-2_0.41-3_0.0\", \"308_l_0_r-0_0.23-1_1.47-2_0.77-3_0.78\", \"309_l_0_r-0_1.16-1_2.18-2_0.25-3_1.16\", \"310_l_0_r-0_1.02-1_1.39-2_0.5-3_1.23\", \"311_l_0_r-0_1.72-1_1.05-2_1.01-3_0.11\", \"312_l_0_r-0_1.87-1_0.67-2_0.39-3_0.83\", \"313_l_0_r-0_0.77-1_1.08-2_0.33-3_0.86\", \"314_l_0_r-0_0.72-1_0.05-2_0.14-3_0.79\", \"315_l_0_r-0_0.33-1_1.79-2_0.32-3_0.21\", \"316_l_0_r-0_0.63-1_1.25-2_0.46-3_0.12\", \"317_l_0_r-0_0.16-1_0.27-2_1.75-3_1.2\", \"318_l_0_r-0_1.31-1_0.1-2_0.5-3_0.9\", \"319_l_0_r-0_0.19-1_0.06-2_2.24-3_0.58\", \"320_l_0_r-0_1.75-1_0.55-2_0.34-3_0.16\", \"321_l_0_r-0_0.31-1_0.53-2_2.1-3_0.64\", \"322_l_0_r-0_0.24-1_0.82-2_0.21-3_0.74\", \"323_l_0_r-0_0.47-1_1.26-2_2.16-3_0.96\", \"324_l_0_r-0_1.01-1_0.27-2_0.73-3_0.92\", \"325_l_0_r-0_0.12-1_1.0-2_1.21-3_0.17\", \"326_l_0_r-0_0.43-1_2.22-2_1.0-3_0.89\", \"327_l_0_r-0_0.35-1_1.53-2_0.28-3_0.58\", \"328_l_0_r-0_1.67-1_0.47-2_0.37-3_0.79\", \"329_l_0_r-0_0.43-1_0.31-2_0.64-3_1.43\", \"330_l_0_r-0_0.81-1_0.73-2_1.88-3_2.11\", \"331_l_0_r-0_0.71-1_0.17-2_0.9-3_0.29\", \"332_l_0_r-0_1.67-1_0.11-2_0.33-3_0.87\", \"333_l_0_r-0_0.65-1_0.8-2_0.72-3_1.29\", \"334_l_0_r-0_1.22-1_1.12-2_0.0-3_0.3\", \"335_l_0_r-0_0.98-1_1.18-2_1.75-3_0.04\", \"336_l_0_r-0_0.38-1_0.07-2_1.0-3_0.88\", \"337_l_0_r-0_0.11-1_1.43-2_1.12-3_0.64\", \"338_l_0_r-0_0.84-1_0.93-2_0.04-3_0.27\", \"339_l_0_r-0_0.93-1_0.25-2_0.06-3_0.44\", \"340_l_0_r-0_1.28-1_2.22-2_0.4-3_0.68\", \"341_l_0_r-0_0.18-1_0.32-2_0.67-3_0.18\", \"342_l_0_r-0_0.08-1_1.23-2_0.18-3_0.85\", \"343_l_0_r-0_0.23-1_1.24-2_0.82-3_0.97\", \"344_l_0_r-0_0.21-1_0.58-2_0.09-3_1.16\", \"345_l_0_r-0_0.1-1_1.2-2_0.08-3_0.48\", \"346_l_0_r-0_0.12-1_0.67-2_2.58-3_0.04\", \"347_l_0_r-0_1.23-1_1.95-2_0.25-3_0.45\", \"348_l_0_r-0_1.07-1_0.72-2_0.64-3_2.11\", \"349_l_0_r-0_1.11-1_0.0-2_1.97-3_1.2\", \"350_l_0_r-0_0.23-1_0.35-2_0.09-3_0.48\", \"351_l_0_r-0_1.47-1_1.03-2_0.52-3_0.24\", \"352_l_0_r-0_0.62-1_0.55-2_0.37-3_0.91\", \"353_l_0_r-0_0.37-1_0.64-2_0.98-3_1.32\", \"354_l_0_r-0_0.46-1_0.47-2_0.24-3_1.16\", \"355_l_0_r-0_0.77-1_1.21-2_0.65-3_0.65\", \"356_l_0_r-0_1.56-1_0.53-2_0.21-3_0.16\", \"357_l_0_r-0_0.91-1_0.03-2_0.22-3_0.44\", \"358_l_0_r-0_0.22-1_1.31-2_0.67-3_0.07\", \"359_l_0_r-0_0.24-1_0.75-2_0.64-3_1.0\", \"360_l_0_r-0_2.34-1_0.38-2_0.15-3_0.53\", \"361_l_0_r-0_0.28-1_0.07-2_0.79-3_0.62\", \"362_l_0_r-0_0.6-1_1.18-2_0.0-3_0.28\", \"363_l_0_r-0_0.67-1_0.7-2_0.34-3_0.83\", \"364_l_0_r-0_2.0-1_1.08-2_0.52-3_0.27\", \"365_l_0_r-0_0.45-1_0.96-2_0.98-3_0.78\", \"366_l_0_r-0_0.38-1_0.5-2_0.26-3_0.24\", \"367_l_0_r-0_0.05-1_0.68-2_1.12-3_1.55\", \"368_l_0_r-0_0.28-1_1.87-2_1.34-3_0.81\", \"369_l_0_r-0_0.79-1_1.15-2_0.03-3_1.05\", \"370_l_0_r-0_1.78-1_1.02-2_0.55-3_1.19\", \"371_l_0_r-0_1.59-1_0.6-2_0.19-3_0.01\", \"372_l_0_r-0_0.87-1_0.09-2_1.81-3_0.8\", \"373_l_0_r-0_0.29-1_0.54-2_0.74-3_0.41\", \"374_l_0_r-0_0.63-1_0.43-2_0.1-3_1.03\", \"375_l_0_r-0_0.64-1_0.28-2_0.03-3_0.5\", \"376_l_0_r-0_0.5-1_0.19-2_0.89-3_0.98\", \"377_l_0_r-0_0.49-1_0.72-2_1.25-3_0.19\", \"378_l_0_r-0_1.26-1_1.42-2_0.83-3_0.58\", \"379_l_0_r-0_0.22-1_0.09-2_0.6-3_1.49\", \"380_l_0_r-0_1.6-1_0.19-2_0.58-3_0.69\", \"381_l_0_r-0_0.74-1_0.57-2_1.36-3_0.71\", \"382_l_0_r-0_0.11-1_1.37-2_0.51-3_0.47\", \"383_l_0_r-0_0.61-1_0.42-2_1.39-3_0.86\", \"384_l_0_r-0_0.6-1_1.28-2_2.13-3_1.82\", \"385_l_0_r-0_0.69-1_0.48-2_1.09-3_1.27\", \"386_l_0_r-0_0.21-1_0.59-2_0.88-3_1.15\", \"387_l_0_r-0_0.45-1_0.56-2_0.28-3_0.81\", \"388_l_0_r-0_0.71-1_0.32-2_1.26-3_0.5\", \"389_l_0_r-0_0.28-1_0.09-2_0.14-3_1.13\", \"390_l_0_r-0_0.19-1_0.1-2_1.26-3_1.93\", \"391_l_0_r-0_0.44-1_0.87-2_0.66-3_0.16\", \"392_l_0_r-0_0.42-1_0.77-2_1.21-3_0.81\", \"393_l_0_r-0_0.77-1_0.42-2_1.17-3_0.3\", \"394_l_0_r-0_1.23-1_0.12-2_0.76-3_0.57\", \"395_l_0_r-0_0.48-1_0.45-2_1.65-3_0.93\", \"396_l_0_r-0_0.09-1_0.27-2_0.35-3_1.99\", \"397_l_0_r-0_0.31-1_0.38-2_0.08-3_0.38\", \"398_l_0_r-0_1.35-1_0.59-2_0.83-3_0.74\", \"399_l_0_r-0_1.33-1_0.79-2_0.09-3_1.42\", \"400_l_0_r-0_0.56-1_1.62-2_0.16-3_0.54\", \"401_l_0_r-0_0.2-1_1.62-2_2.07-3_0.41\", \"402_l_0_r-0_0.08-1_1.23-2_0.59-3_1.14\", \"403_l_0_r-0_0.57-1_0.79-2_0.22-3_0.61\", \"404_l_0_r-0_1.08-1_1.36-2_1.11-3_0.64\", \"405_l_0_r-0_0.77-1_0.62-2_1.92-3_0.45\", \"406_l_0_r-0_0.73-1_1.0-2_0.29-3_0.34\", \"407_l_0_r-0_0.16-1_0.26-2_0.39-3_1.25\", \"408_l_0_r-0_1.44-1_1.37-2_0.1-3_1.81\", \"409_l_0_r-0_0.03-1_0.12-2_1.26-3_0.41\", \"410_l_0_r-0_0.81-1_0.09-2_1.15-3_0.77\", \"411_l_0_r-0_0.42-1_0.12-2_0.45-3_0.68\", \"412_l_0_r-0_1.38-1_0.99-2_0.84-3_0.74\", \"413_l_0_r-0_0.07-1_0.7-2_1.3-3_0.32\", \"414_l_0_r-0_0.97-1_0.05-2_0.2-3_0.52\", \"415_l_0_r-0_0.74-1_0.25-2_1.57-3_1.01\", \"416_l_0_r-0_0.74-1_1.77-2_2.09-3_0.76\", \"417_l_0_r-0_0.5-1_0.98-2_0.11-3_0.06\", \"418_l_0_r-0_1.33-1_0.1-2_0.94-3_0.7\", \"419_l_0_r-0_1.12-1_0.54-2_0.09-3_0.14\", \"420_l_0_r-0_0.58-1_0.53-2_0.25-3_0.76\", \"421_l_0_r-0_0.67-1_0.56-2_0.82-3_0.69\", \"422_l_0_r-0_0.3-1_0.23-2_1.06-3_0.22\", \"423_l_0_r-0_0.46-1_0.88-2_0.54-3_0.19\", \"424_l_0_r-0_0.68-1_0.72-2_0.3-3_0.05\", \"425_l_0_r-0_1.8-1_0.57-2_0.4-3_0.54\", \"426_l_0_r-0_1.66-1_0.42-2_1.07-3_1.17\", \"427_l_0_r-0_0.28-1_1.09-2_1.67-3_0.44\", \"428_l_0_r-0_0.97-1_0.91-2_0.93-3_0.17\", \"429_l_0_r-0_0.39-1_0.74-2_0.41-3_1.48\", \"430_l_0_r-0_0.14-1_1.1-2_0.1-3_0.18\", \"431_l_0_r-0_0.21-1_0.67-2_0.84-3_0.98\", \"432_l_0_r-0_0.45-1_0.37-2_2.15-3_1.28\", \"433_l_0_r-0_0.63-1_0.27-2_1.14-3_0.74\", \"434_l_0_r-0_2.05-1_1.55-2_1.38-3_0.66\", \"435_l_0_r-0_0.56-1_1.1-2_2.06-3_1.01\", \"436_l_0_r-0_0.35-1_0.19-2_1.68-3_0.07\", \"437_l_0_r-0_1.14-1_0.09-2_0.13-3_1.67\", \"438_l_0_r-0_0.93-1_0.97-2_0.1-3_0.51\", \"439_l_0_r-0_0.1-1_0.47-2_0.26-3_1.0\", \"440_l_0_r-0_0.6-1_1.74-2_0.89-3_1.37\", \"441_l_0_r-0_0.93-1_0.67-2_0.6-3_0.18\", \"442_l_0_r-0_1.42-1_0.52-2_0.7-3_0.16\", \"443_l_0_r-0_1.74-1_0.66-2_0.93-3_1.04\", \"444_l_0_r-0_0.49-1_0.26-2_0.22-3_1.12\", \"445_l_0_r-0_1.27-1_0.3-2_1.52-3_2.28\", \"446_l_0_r-0_0.11-1_0.01-2_0.38-3_0.69\", \"447_l_0_r-0_1.4-1_0.74-2_0.39-3_0.12\", \"448_l_0_r-0_0.68-1_0.55-2_0.11-3_0.01\", \"449_l_0_r-0_0.98-1_0.85-2_2.3-3_0.91\", \"450_l_0_r-0_1.05-1_0.17-2_2.15-3_0.37\", \"451_l_0_r-0_0.41-1_2.16-2_0.62-3_0.07\", \"452_l_0_r-0_0.6-1_0.34-2_1.21-3_1.22\", \"453_l_0_r-0_0.36-1_0.45-2_0.64-3_1.11\", \"454_l_0_r-0_0.46-1_0.14-2_0.77-3_0.57\", \"455_l_0_r-0_1.37-1_0.41-2_1.35-3_0.08\", \"456_l_0_r-0_0.22-1_0.44-2_0.8-3_0.0\", \"457_l_0_r-0_0.39-1_0.51-2_0.62-3_0.03\", \"458_l_0_r-0_1.73-1_1.12-2_0.54-3_0.34\", \"459_l_0_r-0_0.35-1_0.3-2_0.05-3_1.08\", \"460_l_0_r-0_0.25-1_0.35-2_2.11-3_0.13\", \"461_l_0_r-0_0.14-1_0.54-2_0.84-3_1.53\", \"462_l_0_r-0_0.26-1_0.47-2_1.96-3_1.54\", \"463_l_0_r-0_0.85-1_0.52-2_0.76-3_0.56\", \"464_l_0_r-0_1.07-1_0.65-2_0.76-3_1.28\", \"465_l_0_r-0_0.06-1_0.12-2_0.55-3_0.39\", \"466_l_0_r-0_0.17-1_1.1-2_0.55-3_0.33\", \"467_l_0_r-0_1.32-1_0.43-2_0.32-3_0.11\", \"468_l_0_r-0_0.21-1_0.67-2_2.29-3_0.39\", \"469_l_0_r-0_0.33-1_0.86-2_0.43-3_1.67\", \"470_l_0_r-0_1.25-1_0.34-2_1.62-3_0.14\", \"471_l_0_r-0_1.31-1_0.89-2_1.06-3_0.96\", \"472_l_0_r-0_0.54-1_0.28-2_1.43-3_1.45\", \"473_l_0_r-0_1.5-1_0.71-2_0.84-3_2.07\", \"474_l_0_r-0_0.41-1_0.46-2_0.03-3_0.32\", \"475_l_0_r-0_0.39-1_0.59-2_0.08-3_1.04\", \"476_l_0_r-0_1.04-1_0.76-2_0.89-3_0.11\", \"477_l_0_r-0_0.7-1_0.07-2_0.14-3_0.24\", \"478_l_0_r-0_1.51-1_0.06-2_2.45-3_0.89\", \"479_l_0_r-0_0.03-1_0.9-2_1.52-3_1.44\", \"480_l_0_r-0_0.72-1_1.42-2_0.66-3_1.44\", \"481_l_0_r-0_0.42-1_0.54-2_1.42-3_0.72\", \"482_l_0_r-0_0.47-1_0.18-2_1.43-3_0.75\", \"483_l_0_r-0_0.35-1_0.23-2_1.85-3_0.8\", \"484_l_0_r-0_0.8-1_0.63-2_0.16-3_1.11\", \"485_l_0_r-0_0.53-1_0.03-2_0.39-3_0.03\", \"486_l_0_r-0_1.71-1_0.22-2_2.17-3_0.87\", \"487_l_0_r-0_1.58-1_0.16-2_1.12-3_1.06\", \"488_l_0_r-0_0.25-1_1.15-2_0.37-3_0.96\", \"489_l_0_r-0_0.89-1_0.96-2_0.36-3_0.36\", \"490_l_0_r-0_0.73-1_0.43-2_0.1-3_0.15\", \"491_l_0_r-0_1.11-1_0.38-2_0.38-3_1.34\", \"492_l_0_r-0_0.32-1_0.05-2_0.74-3_0.58\", \"493_l_0_r-0_0.41-1_1.23-2_0.33-3_0.49\", \"494_l_0_r-0_0.66-1_0.08-2_0.02-3_0.17\", \"495_l_0_r-0_0.12-1_0.68-2_1.93-3_1.65\", \"496_l_0_r-0_0.01-1_0.11-2_0.64-3_1.75\", \"497_l_0_r-0_0.01-1_1.34-2_0.8-3_0.43\", \"498_l_0_r-0_1.28-1_0.43-2_1.23-3_0.22\", \"499_l_0_r-0_1.07-1_0.34-2_0.1-3_0.62\", \"500_l_0_r-0_1.6-1_0.17-2_0.81-3_0.7\", \"501_l_0_r-0_0.27-1_0.28-2_0.29-3_1.1\", \"502_l_0_r-0_0.54-1_0.11-2_1.12-3_0.67\", \"503_l_0_r-0_0.31-1_0.8-2_0.59-3_0.45\", \"504_l_0_r-0_0.75-1_0.21-2_1.63-3_0.16\", \"505_l_0_r-0_2.27-1_0.27-2_0.6-3_0.51\", \"506_l_0_r-0_0.65-1_0.38-2_0.38-3_1.07\", \"507_l_0_r-0_0.8-1_0.08-2_0.41-3_1.02\", \"508_l_0_r-0_0.2-1_0.84-2_1.69-3_0.94\", \"509_l_0_r-0_0.68-1_0.01-2_0.27-3_1.39\", \"510_l_0_r-0_1.51-1_0.01-2_0.37-3_1.37\", \"511_l_0_r-0_0.27-1_1.11-2_0.87-3_0.93\", \"512_l_0_r-0_1.9-1_0.25-2_0.75-3_1.18\", \"513_l_0_r-0_0.49-1_1.6-2_0.11-3_0.51\", \"514_l_0_r-0_1.18-1_1.02-2_0.22-3_0.62\", \"515_l_0_r-0_0.81-1_1.54-2_0.36-3_0.13\", \"516_l_0_r-0_0.64-1_0.06-2_0.44-3_1.48\", \"517_l_0_r-0_0.27-1_0.7-2_0.53-3_0.56\", \"518_l_0_r-0_1.36-1_0.79-2_0.47-3_0.07\", \"519_l_0_r-0_0.88-1_0.44-2_0.44-3_0.43\", \"520_l_0_r-0_0.48-1_1.12-2_1.43-3_1.05\", \"521_l_0_r-0_0.25-1_0.62-2_0.02-3_0.49\", \"522_l_0_r-0_0.69-1_0.87-2_0.65-3_1.12\", \"523_l_0_r-0_1.58-1_0.97-2_0.11-3_0.55\", \"524_l_0_r-0_1.47-1_0.11-2_0.36-3_0.05\", \"525_l_0_r-0_1.64-1_0.61-2_1.87-3_0.62\", \"526_l_0_r-0_1.55-1_0.02-2_0.23-3_1.35\", \"527_l_0_r-0_1.07-1_0.2-2_0.65-3_0.4\", \"528_l_0_r-0_0.14-1_0.92-2_0.72-3_0.25\", \"529_l_0_r-0_1.09-1_0.99-2_0.6-3_1.79\", \"530_l_0_r-0_0.14-1_0.04-2_0.51-3_0.81\", \"531_l_0_r-0_1.31-1_0.51-2_1.64-3_1.34\", \"532_l_0_r-0_1.28-1_0.1-2_0.28-3_0.4\", \"533_l_0_r-0_0.44-1_0.53-2_1.22-3_0.53\", \"534_l_0_r-0_1.27-1_0.68-2_1.09-3_0.24\", \"535_l_0_r-0_1.19-1_1.21-2_0.15-3_1.47\", \"536_l_0_r-0_0.35-1_1.06-2_0.33-3_0.66\", \"537_l_0_r-0_0.69-1_0.84-2_0.69-3_1.92\", \"538_l_0_r-0_0.77-1_0.84-2_0.91-3_1.1\", \"539_l_0_r-0_1.44-1_0.51-2_0.55-3_0.76\", \"540_l_0_r-0_1.3-1_0.01-2_1.38-3_1.18\", \"541_l_0_r-0_1.46-1_0.07-2_1.1-3_0.69\", \"542_l_0_r-0_0.57-1_1.16-2_0.16-3_0.37\", \"543_l_0_r-0_0.34-1_0.19-2_0.01-3_0.27\", \"544_l_0_r-0_0.16-1_1.34-2_0.14-3_0.04\", \"545_l_0_r-0_0.69-1_0.5-2_0.46-3_0.01\", \"546_l_0_r-0_0.45-1_0.86-2_0.99-3_0.4\", \"547_l_0_r-0_2.05-1_0.91-2_0.76-3_0.98\", \"548_l_0_r-0_1.2-1_1.93-2_1.72-3_0.3\", \"549_l_0_r-0_0.8-1_0.35-2_1.57-3_1.34\", \"550_l_0_r-0_0.22-1_0.79-2_0.3-3_1.4\", \"551_l_0_r-0_0.94-1_0.08-2_0.22-3_1.15\", \"552_l_0_r-0_0.64-1_0.02-2_1.3-3_1.05\", \"553_l_0_r-0_0.94-1_0.85-2_0.01-3_1.11\", \"554_l_0_r-0_0.3-1_0.34-2_0.8-3_0.5\", \"555_l_0_r-0_0.58-1_0.39-2_0.66-3_0.4\", \"556_l_0_r-0_0.17-1_0.38-2_1.41-3_1.19\", \"557_l_0_r-0_0.33-1_1.41-2_0.29-3_1.07\", \"558_l_0_r-0_0.59-1_0.59-2_0.29-3_0.65\", \"559_l_0_r-0_0.68-1_0.62-2_0.93-3_0.07\", \"560_l_0_r-0_0.2-1_0.73-2_1.81-3_1.1\", \"561_l_0_r-0_0.37-1_0.43-2_1.57-3_0.5\", \"562_l_0_r-0_0.68-1_1.41-2_0.42-3_0.63\", \"563_l_0_r-0_1.06-1_0.11-2_0.6-3_0.71\", \"564_l_0_r-0_0.83-1_1.06-2_0.84-3_0.24\", \"565_l_0_r-0_0.39-1_0.09-2_1.06-3_0.17\", \"566_l_0_r-0_0.37-1_1.46-2_1.07-3_1.0\", \"567_l_0_r-0_0.32-1_0.64-2_0.85-3_0.74\", \"568_l_0_r-0_0.25-1_0.4-2_0.85-3_2.11\", \"569_l_0_r-0_0.72-1_0.46-2_0.63-3_0.36\", \"570_l_0_r-0_0.2-1_0.05-2_1.79-3_1.38\", \"571_l_0_r-0_0.43-1_1.36-2_0.48-3_0.27\", \"572_l_0_r-0_0.24-1_0.96-2_1.59-3_1.53\", \"573_l_0_r-0_0.24-1_0.2-2_1.13-3_0.1\", \"574_l_0_r-0_0.8-1_1.59-2_0.24-3_0.32\", \"575_l_0_r-0_1.45-1_0.65-2_0.88-3_0.09\", \"576_l_0_r-0_0.96-1_0.78-2_0.21-3_1.67\", \"577_l_0_r-0_0.11-1_0.28-2_1.65-3_0.37\", \"578_l_0_r-0_1.2-1_1.53-2_0.29-3_0.77\", \"579_l_0_r-0_0.69-1_0.3-2_0.81-3_0.51\", \"580_l_0_r-0_0.63-1_0.29-2_2.41-3_0.77\", \"581_l_0_r-0_0.54-1_0.1-2_0.25-3_0.69\", \"582_l_0_r-0_0.28-1_0.74-2_0.65-3_0.98\", \"583_l_0_r-0_0.1-1_1.09-2_1.15-3_0.53\", \"584_l_0_r-0_0.24-1_1.64-2_1.91-3_0.24\", \"585_l_0_r-0_0.18-1_1.38-2_0.41-3_1.43\", \"586_l_0_r-0_1.13-1_0.45-2_0.11-3_0.46\", \"587_l_0_r-0_0.26-1_0.41-2_0.21-3_0.72\", \"588_l_0_r-0_0.48-1_1.13-2_0.49-3_0.25\", \"589_l_0_r-0_0.68-1_0.04-2_3.15-3_0.73\", \"590_l_0_r-0_0.65-1_0.08-2_0.04-3_0.14\", \"591_l_0_r-0_1.24-1_0.17-2_0.79-3_0.45\", \"592_l_0_r-0_0.47-1_1.09-2_1.67-3_0.2\", \"593_l_0_r-0_0.42-1_0.82-2_0.24-3_0.34\", \"594_l_0_r-0_0.64-1_1.16-2_0.96-3_0.13\", \"595_l_0_r-0_1.76-1_0.81-2_2.3-3_2.65\", \"596_l_0_r-0_1.58-1_1.13-2_0.58-3_0.23\", \"597_l_0_r-0_1.07-1_0.62-2_0.83-3_1.64\", \"598_l_0_r-0_0.58-1_0.52-2_1.44-3_0.45\", \"599_l_0_r-0_1.31-1_1.0-2_0.13-3_1.32\", \"600_l_0_r-0_0.36-1_1.64-2_0.71-3_0.63\", \"601_l_0_r-0_0.2-1_2.12-2_0.14-3_1.34\", \"602_l_0_r-0_0.58-1_0.27-2_0.86-3_1.06\", \"603_l_0_r-0_0.78-1_1.43-2_0.59-3_1.07\", \"604_l_0_r-0_1.02-1_1.14-2_0.6-3_0.59\", \"605_l_0_r-0_0.22-1_0.81-2_0.62-3_0.76\", \"606_l_0_r-0_0.02-1_0.02-2_0.23-3_0.1\", \"607_l_0_r-0_0.11-1_1.37-2_1.8-3_1.14\", \"608_l_0_r-0_0.92-1_1.22-2_1.01-3_0.56\", \"609_l_0_r-0_1.37-1_1.21-2_0.02-3_1.8\", \"610_l_0_r-0_0.74-1_0.3-2_0.93-3_1.31\", \"611_l_0_r-0_0.14-1_1.04-2_0.85-3_0.12\", \"612_l_0_r-0_1.27-1_0.74-2_0.42-3_0.67\", \"613_l_0_r-0_0.52-1_0.55-2_1.06-3_1.18\", \"614_l_0_r-0_0.3-1_0.99-2_1.75-3_0.41\", \"615_l_0_r-0_0.4-1_1.15-2_0.77-3_1.73\", \"616_l_0_r-0_0.97-1_0.35-2_0.35-3_1.35\", \"617_l_0_r-0_1.15-1_0.96-2_0.77-3_0.21\", \"618_l_0_r-0_0.01-1_0.82-2_0.58-3_0.18\", \"619_l_0_r-0_0.12-1_0.91-2_0.54-3_2.02\", \"620_l_0_r-0_1.23-1_0.11-2_1.26-3_1.34\", \"621_l_0_r-0_0.26-1_0.37-2_0.57-3_1.26\", \"622_l_0_r-0_0.43-1_0.86-2_0.19-3_0.95\", \"623_l_0_r-0_1.04-1_1.08-2_1.66-3_0.12\", \"624_l_0_r-0_0.36-1_0.75-2_0.21-3_1.8\", \"625_l_0_r-0_0.47-1_0.93-2_1.04-3_0.59\", \"626_l_0_r-0_0.85-1_0.26-2_0.11-3_1.53\", \"627_l_0_r-0_0.61-1_0.05-2_0.55-3_0.16\", \"628_l_0_r-0_0.56-1_1.74-2_0.87-3_0.83\", \"629_l_0_r-0_0.38-1_1.33-2_0.87-3_2.11\", \"630_l_0_r-0_1.27-1_0.78-2_1.38-3_0.22\", \"631_l_0_r-0_0.14-1_1.36-2_2.17-3_0.63\", \"632_l_0_r-0_0.24-1_0.22-2_1.32-3_1.75\", \"633_l_0_r-0_1.78-1_0.83-2_1.04-3_0.69\", \"634_l_0_r-0_0.9-1_0.83-2_1.66-3_0.95\", \"635_l_0_r-0_0.31-1_0.21-2_1.74-3_0.05\", \"636_l_0_r-0_1.13-1_1.04-2_0.25-3_1.34\", \"637_l_0_r-0_1.31-1_0.89-2_0.12-3_0.96\", \"638_l_0_r-0_0.22-1_0.89-2_3.17-3_0.91\", \"639_l_0_r-0_0.95-1_1.51-2_0.73-3_0.49\", \"640_l_0_r-0_0.77-1_1.72-2_0.05-3_0.44\", \"641_l_0_r-0_1.4-1_0.09-2_0.3-3_0.97\", \"642_l_0_r-0_0.62-1_0.09-2_0.67-3_0.03\", \"643_l_0_r-0_1.67-1_1.05-2_0.74-3_0.59\", \"644_l_0_r-0_0.81-1_0.89-2_1.05-3_0.0\", \"645_l_0_r-0_0.17-1_1.03-2_1.46-3_0.7\", \"646_l_0_r-0_0.72-1_0.25-2_1.6-3_1.45\", \"647_l_0_r-0_0.72-1_0.18-2_0.06-3_0.14\", \"648_l_0_r-0_1.05-1_1.14-2_0.39-3_0.84\", \"649_l_0_r-0_0.71-1_1.65-2_0.07-3_1.2\", \"650_l_0_r-0_0.1-1_0.22-2_0.07-3_1.32\", \"651_l_0_r-0_0.46-1_0.67-2_1.61-3_0.4\", \"652_l_0_r-0_0.78-1_1.21-2_0.63-3_0.18\", \"653_l_0_r-0_0.42-1_0.85-2_0.31-3_0.43\", \"654_l_0_r-0_1.14-1_0.07-2_0.17-3_1.77\", \"655_l_0_r-0_0.29-1_0.14-2_1.57-3_0.95\", \"656_l_0_r-0_1.16-1_1.78-2_1.93-3_0.38\", \"657_l_0_r-0_0.68-1_0.96-2_1.5-3_0.58\", \"658_l_0_r-0_1.57-1_1.09-2_0.69-3_0.1\", \"659_l_0_r-0_0.81-1_0.03-2_0.36-3_1.67\", \"660_l_0_r-0_0.16-1_0.66-2_1.34-3_1.14\", \"661_l_0_r-0_1.13-1_0.58-2_0.06-3_0.21\", \"662_l_0_r-0_0.88-1_1.13-2_1.48-3_1.35\", \"663_l_0_r-0_2.09-1_0.13-2_0.05-3_1.8\", \"664_l_0_r-0_1.32-1_1.49-2_0.09-3_1.72\", \"665_l_0_r-0_0.54-1_1.36-2_0.74-3_2.08\"], \"type\": \"scatter3d\", \"x\": [-1.688077428424278, -0.4676987066251054, 0.6354847018711802, 0.2329667618050455, -0.57438362412745, -1.210261037418279, 0.17889375269733376, -2.0305771128171104, -0.45154649773907474, 1.3918642635172191, 0.08756678777096494, 0.18173873872962054, 0.652893633976978, 0.3575679689684752, -0.95219793695073, 0.4356274399012723, 0.6575650529712751, -2.44748288633416, 0.2877126372814707, -0.7472620975825447, 0.14906169256821822, -1.3181549860817885, 1.1762885336006437, -0.15270470762247268, -0.2681393924130563, 0.05980096083042841, 0.6832354705029424, -0.9093471151515489, 1.002833824415307, -1.4616851952080299, -1.6990366704079092, 1.2015453421691622, 0.7067743098426409, -0.7634574673488417, -1.207398924542006, -0.36381265121313133, -1.1913711407791594, -2.1810121715857407, 0.17329212981128217, -1.957772808168808, -1.0073739621406648, 0.527748978228544, -2.7838118304897046, 0.39466435432720237, -0.44743857186304337, -1.6072205259377657, -0.30765709324800183, 0.32182805731680486, -0.6465859937834123, -1.170827203556545, 1.2830997905786128, -0.5131872165079249, -0.9119997151713075, -0.8069594466549972, -1.5548869295989831, 0.5967137524820494, -1.4560290610233115, -2.36383303673823, 0.31963182613299246, -0.8839371392126125, -1.6226495143853379, 0.5472821532544163, 1.1156075690241898, -0.8507188274252638, -2.0072067321606717, -0.04928220082705059, -2.577852438810809, 0.05513776558891359, 0.1940342321709112, -1.4330930418858163, 0.0796233341968604, 0.06350051144112823, -1.806319365701892, 0.5160807210123497, -0.4321445088804905, -1.1552205612555198, 0.7393608593142529, 0.0671570369548331, -0.2434034515265543, -2.5486117308647502, -1.4864063228022013, -1.139150221943353, -0.8378834116901441, -2.0170322263196767, -1.535153429309896, -3.429413658005181, -1.6333905210930317, -3.431821428165199, 0.18816527393981453, 0.20299873547708502, -2.2697157959536827, -0.524798731596864, -0.8866551294229723, -0.8312626617709469, -1.3492539331409659, 0.46095090750810774, -0.36023169225925133, -0.9475713680541091, 0.5055719633298563, 0.31776020763933466, -0.14048622305730962, -0.9896136987730328, -1.4646173933080757, -1.840397247762806, -0.5068836249732316, -1.0908264789010713, 0.5863227807097524, 0.13222415772720808, -0.09222957369357143, 0.5271638485587831, -2.939599445382691, 0.8159270562662682, -0.807012557177875, -1.5225184659227102, 0.38349841547709107, -1.665684650877483, -0.9293916339298812, 0.19623798371947831, 0.1837876798379421, 0.4955307174854162, -0.770621326977905, 0.5770532963525243, 1.0241541797418936, 0.9460003301878699, -3.5703328312012097, -0.7074489696154271, 0.49461207813156616, 0.005971887014940114, -0.15982580633002963, 0.45320832185257887, -0.7266986184814402, 0.4597325540736592, -0.1966045006191801, 0.0794104135700735, 0.3286414567525604, 0.7878819455563901, -1.6137556603504328, 0.7148363066571795, 0.3185512000438453, -1.054679069940761, -1.5328798120708116, 0.30940558148853503, -1.5798750294268373, -0.5386149333261654, -0.6171067127813101, -1.7676176920850954, -2.319816513574114, -2.6752277185527236, -4.044454067332422, -1.715568745710695, 0.11230849138345511, 0.09114999635874033, -0.6479246923191914, -0.9932401019604737, -1.3654759072147575, 0.22644687423627952, -1.4531229829865402, -1.2642402055465567, 0.3959979866988226, 1.5990533841152992, -1.2155481286843157, 0.5039481673097488, 0.6143966160064662, 0.5963426655350723, -1.4516897575558105, 1.3617430003591715, 0.1133962501065231, -1.4173155041621963, -1.7220793058479436, 0.5310347676035616, 1.9653537104928018, -0.6572104748493209, -0.9208013684405528, -0.11691701576586055, 2.1349438135507683, 1.2272014187213096, -0.9635044347770803, -2.642888664708706, -1.056015808654962, 0.33311866211371677, -1.311873493532424, 0.2509254507539689, -1.14223323651134, 0.4325770284032644, -0.9925587749198745, -0.9977170445776675, 0.08638475596096296, -2.4335887052428644, -1.3090158839786827, -1.4129720323276054, -1.0152428283699746, 0.32824062580675384, -0.4376417515870291, -0.6689109333590356, -1.2193923546557182, -1.096272629532633, -0.6189747187489001, 0.5899743806948634, 1.2305115464375724, 0.3480141337597442, -0.2261301045012385, -0.6959306260209087, -0.9823023804601128, -2.7184608195574995, -0.8353928214939398, -0.27833638281741924, 0.21136907349275802, -0.1544166090890149, -1.9468167036602686, -1.6945767595189274, 0.03250830225214307, 0.623356340198121, -0.9971385371199929, 0.6651315463000111, -1.627271414092072, -1.2050643469700386, -2.4769045507179577, 1.2845165171627029, 0.9326285222162165, -1.20148361302723, -0.5484498764508261, 1.6332004758158933, -0.9400095873537493, 0.06818089330654953, -0.7079966706248092, -0.5554911893154499, -0.32007479284022633, -1.1830026092377897, -0.6706775304468271, 0.7038738328521557, -2.7451913630418066, 0.18740644269479056, -0.4946353430342121, -1.9916571973892472, -0.9493029362918135, 1.167574494349597, -1.2613849310514031, -0.7691955381792914, -0.7502791120695727, -0.9061632744778125, -0.5291835977323516, 0.7229200373691427, -1.2670641762706647, 0.21659719524310295, -1.6148844347994724, 0.2666682200785888, -1.1022584443550285, 0.8074687989303087, -3.08516294531643, 0.5017981442451163, 0.09054133090834426, -1.1864903337681203, -0.25362868439217556, 0.12497190141649739, 1.3013981227108293, -1.573096297343075, -1.1980497944314257, 0.49978198501661564, 0.4296467241648325, 0.38105577268105684, -3.0371089066981165, -2.2126723667742416, 0.16401327500843643, 0.28324297297605194, -0.26062657782832244, -2.2397496536307218, -0.5139186828556825, 0.24043691323183003, -2.2535052660627026, -1.156655252505881, 0.11873554601192216, 1.3583175308964521, -1.6037618725776226, -0.3348464558722418, 0.3062162398701913, 0.7323071949519881, -1.3214505805194172, -1.1723020983612094, -2.7707213908194097, -0.7645779641056896, -1.779486351040915, 0.5815481999958017, -1.9576261615744976, 0.3620947781526114, -0.8852660634686196, 0.6815656268210037, -1.4113192853871341, 0.7410237575736593, -0.08200405427085689, -2.9352772401718648, 1.4704680100654342, -1.7214554196568481, -0.0022137969237434607, -1.8648301005975276, -1.0171274321216652, -1.8077319538737593, -1.6500411454860942, -0.5306228757066539, -1.8951116729311313, -1.9658933451924132, -0.7820647671718556, -0.6548048452591408, -2.1789073057143575, -2.1775968783021513, -0.6982779767341432, -0.9769041492680208, -0.9350229953510658, -0.929203845051839, -1.9594171903160507, -2.9751035974140994, -1.9467274561193082, -1.0464742753042886, -0.6734454467979974, -2.8116619748646983, -2.540892157314543, -3.814207248368158, -1.2451087555357094, -0.2666820995332274, -0.09644145888584432, -2.570666688428402, -0.5505598640880578, -0.5300904121890048, -0.821073995934563, -1.289375131014353, -0.26784555910638186, -1.4935114392072382, -2.5276259249103177, -2.622118658343539, -2.0414820963756135, -0.3107707775372447, -1.373328868378646, -0.209761761592984, -0.10575595954432926, -0.7962235426606662, -2.139295664476629, -2.1774311342933546, -1.9951220664999654, -1.4273174683045011, -1.9888536301586022, -1.3023746467114512, -2.2185810259030525, -0.31579883015744403, -1.2342344805561019, -1.6708613325312656, -0.5834803677594295, -2.417571809375908, -0.6699289386516614, -1.9519212448632433, -1.571950047392201, -0.0013381335100962621, -0.35318681950057584, -1.029529208620791, -0.7178156573417862, -3.111841714092702, -2.7599979586985537, -1.9008756688769055, -2.5638861218771094, -2.45703498349972, -2.6563731805788358, -0.7463837064879696, -1.8374965521254247, -2.339080307130038, -1.3202376959078053, -0.7024470161596592, -1.0818240058399002, -1.5432995496204212, -1.3824056321878093, -0.9059641559214019, -1.8738099676708675, -1.1511534340663812, -1.015668225654832, -1.268757985564849, -1.2377955191794603, -2.4714485592009057, -1.368224018929723, -2.0084145732717325, -1.7731820377245697, -1.1173915611902945, -2.2606494001709265, -1.2828739120831782, -1.5690930088960175, -1.848916070853469, -1.3662797398818745, -1.7602042270984213, -1.2821905192691014, -0.47564324918887424, -0.587572571701783, -1.9280195810916254, -0.3240109263398109, -1.1286150450409551, -1.6093797079276144, -1.3944710861778933, -1.593817118817447, -0.4150560780242757, -1.1570388890812657, -1.6263380241233003, -0.267331654671509, -0.37639411742928275, -0.5930671096271088, -3.1411825979216808, -1.7994756941030117, -3.51600312193888, -1.2325995662778704, -0.7901121653933961, -1.7502149687394266, -1.2306062655705836, -1.0016995942685554, -0.26425021565902507, -1.3671065659007662, -0.11913968817024323, -0.6947288598193292, -0.11867403664963239, -0.9870100132390316, -1.193549830859465, -0.49156065450337316, -0.2530533769912472, -2.1438712771455903, -1.0350767531507292, -1.796071150264053, -0.538183606520112, -0.689744886946297, -2.0551091440607547, -1.9915357074350157, -0.8840579783612447, -0.9285839275534149, -2.459532562870218, -0.6441782192640868, -2.662291731420411, -0.9107574640422632, -0.9542568015954302, -1.1000933132194517, -1.1583002115088061, -2.424486265259378, -0.26625642822942064, -1.5534210010459166, -1.0971961482948906, -0.19271140671653553, -0.08905857976058695, -2.2747549873264425, -0.4703011156355189, -1.7414938311650934, -1.2593768578578401, -2.244418474885756, -0.6599647482348567, -0.7420393660675344, -0.300739177721547, -0.013470492011355528, -1.2329277235149583, -1.4233032589799826, -2.041802872089372, -0.2276457507128664, -2.1606180491567537, -0.33617924383902975, -1.7031222324158102, -3.171403724463267, -1.260855208965688, -0.439388074051282, -0.5065961844502704, -1.1206300595163348, -0.30352318168538917, -0.480485293612827, -1.6403941791982386, -1.1772073504020706, -1.1983999181115839, -0.6485480135419592, -0.1193236073814875, -1.6612898518204644, -0.42862586619890974, -2.205704560535342, -1.4390312518359865, -1.3552086236854015, -2.4500334246472883, -0.6020965387630401, -1.189984545493671, -1.9766333631913784, -2.1415692265512716, -2.7215738337036592, -1.2597088610158855, -0.5782150655729643, -3.119466311602308, -2.187230083533122, -0.5369585652679247, -0.1828849803291216, -0.8340028061687821, -4.296018842876524, -1.5237834317165737, -2.51210172506081, -0.15671341054811028, -1.146775753505347, -1.6408414106687996, -0.4326830014624764, -1.1499957065486752, -0.052046339069604874, -1.231624698685754, -0.07924886229601891, -0.678017704905316, -0.10991950005069795, -1.3360084372445373, -0.4333011035711706, -0.34253407991094065, -0.16624247799296954, -0.5642643068255488, -0.4450566156752037, -1.9996691689987673, -1.927550146503183, -0.2657447952612483, -0.376583606496963, -3.1760691337949574, -0.8415224967715267, -1.8384798633902055, -0.010473534463872447, -2.003504431251485, -0.2527278954305131, -2.7878841301201254, -1.1399692818672726, -1.5440802321234304, -1.1447701978063853, -0.6992892968321806, -3.7824611063970663, -0.44307110562225616, -1.1163350502706177, -0.6197907285074233, -1.0245983016485707, -1.858460480485197, -0.9993698699253947, -2.6763016269704423, -2.5074493128598663, -0.9884379213673194, -2.1816417730365956, -1.4132450574093822, -0.8543597689966326, -0.6689833545530337, -0.8941803686068421, -0.5841702991325266, -0.9795170548365386, -3.7665976941705464, -2.197597659050893, -0.8418701642105403, -1.6184273922490195, -2.822093354758215, -2.738372252390576, -0.06652868486166419, -1.4539744711410796, -2.1974587559445693, -2.272925475409428, -1.5502402814517442, -1.5891429502646646, -1.7689216295394312, -2.3907116782982336, -1.5503418893873393, -0.7923136864727072, -2.7739656344618195, -2.243006685872637, -0.8607963206936794, -0.3440778221556814, -0.3899190830487195, -1.341379795094901, -1.4074958806226294, -0.5859588245857839, -0.6208143205075194, -1.6143840443518327, -0.5013804861307236, -1.4088116253923975, -0.11472849421546472, -1.0639160776343637, -2.1986607112043948, -2.240752715547607, -2.680299420725837, -0.4072552861486374, -1.5526839804172017, -1.3506546006899156, -2.5567526297533116, -2.832928593349915, -0.9596777222963705, -1.5853552042322478, -3.229190574643806, -1.936141741752341, -0.7964301264158695, -1.5267788057735163, -0.4413639708869528, -0.2942108372208493, -0.27213800740531957, -0.7394966355913923, -1.0937388814631699, -3.8610242015542835, -2.480467511302176, -0.6698600496330355, -1.1171214040883424, -1.1298306716774866, -2.2208291966113953, -1.1006876019220815, -1.6704122742143017, -1.0857157816102727, -2.257841374108934, -1.1592837346682119, -1.7891137616035468, -2.2106548618270576, -0.6210545922964037, -0.5244340799464243, -1.2207738690048477, -1.6422066047497061, -2.120083412239673, -1.2441879552401953, -1.431590722531365, -1.1397485414059172, -1.7271882228091053, -0.9832809305832411, -1.9742758918841325, -2.032974190436846, -1.9547602837350584, -0.29766507849161505, -1.240491055089494, -1.8695403540441125, -0.552018221154287, -1.0412825113185928, -1.151965335191579, -0.348825030331542, -1.5498414173535757, -1.5968460380745246, -0.910756833142911, -0.10853189456528434, -0.3699845882959255, -1.155739031563086, -2.2261619425525896, -0.7531030736324064, -1.5934663113962033, -0.2644387239495184, -0.8932014141200294, -1.7502441124313242, -1.3295092393343557, -1.3103641023956463, -1.3601667299856786, -1.719837737385788, -1.6214405616539154, -0.8308417065737033, -0.21063114431281882, -1.4474942451930275, -0.8907899356811322, -2.0717015735103868, -1.9673480311500557, -1.7234146939829258, -2.6005962782846868, -2.5362912625522376, -1.045490743773371, -1.5797568787204348, -1.0337750875450331, -0.9851223205907901, -0.5393255290558154, -1.140348413016542, -1.6489985801012637, -0.32761993910509335, -0.6746985678090562, -2.8696921191744345, -1.4805447746488658, -0.07356313922428215, -2.452095935992274, -3.445655966621475, -0.9638298022191759, -1.8548596331999945, -0.37451826004682565, -1.4696246914783313, -0.5772401810366474, -1.127632233289011, -2.6681801921809845, -3.7559972615492185, -1.3634542716761362], \"y\": [0.0989308653311407, 1.0905495233739284, -0.16209825763649022, 0.7308799281502973, 0.08995103841086394, 0.9178887288491782, -0.9829082561619298, 0.07552923703985592, 0.27046442148779937, -0.4615685832095655, -0.9529822692023932, -1.2566857317871252, -0.8662248426301181, -1.8821519613532498, 0.30971406582915995, -2.108062778390804, -1.8262699662863593, 0.24584277742564997, -0.7349258352229834, 0.6670368808881302, 0.09102378674510114, -0.2514339704679245, -0.2555576094369775, 0.26386425302173766, -1.952816505975524, -0.2048512110098044, -3.1796669687115284, -2.682309109406776, 0.9784550643478349, 1.0845907896026117, -1.645587696917562, -1.6636794640417956, -0.4098155851545463, -1.2643723726549578, 0.06502201600563451, 0.7022611449471654, -0.031027714672194007, 0.9329280510126146, -2.530896228648367, -1.4883058509498173, 1.173403997120377, -1.1471652686507057, -0.27787071239917005, -1.710661072898145, 0.2914330988384213, -2.05036153929, 0.2782034539394478, -1.5367914855390066, -2.4005576396953843, 1.5830031118827579, -2.3362180986940038, -1.5853005551630566, 0.06942603583070972, 1.4939670730151997, -0.7549725506652702, -0.48029849044736184, 0.03697901456579844, -1.5048046439611642, -2.3848359116842857, 1.061451054694336, -2.959238881220049, 0.2516813292063338, -1.598693519004919, -1.7922586184069025, 0.3844387733172876, 0.30051858678934584, -1.438564010561161, -0.23633978728058647, -1.9494200023874313, -0.8679138878405165, 0.19568796200988814, -2.210735902664564, -0.9250353590156313, 0.459557094927749, 0.6136703284544551, -1.7626505340268226, -0.14820132672200814, -1.4342616303422204, -0.07582100982877304, 0.10272134967935975, 0.6832871246534209, -1.528248983127038, 0.12029183295258905, 0.061442475147006625, -2.066640772196779, 0.01827312419600169, 0.21054088815677585, -0.06654663603979938, 0.5083760497224621, -1.0792177355969559, -2.4306088460973614, 0.4540481570440076, 0.173424370562707, -1.0056530708699696, 0.316728902798882, -0.4558855176407792, -1.1637867220469726, 0.09320558843296078, -1.330936727291566, -1.0676005913563933, -1.5915338703893624, 0.9199153023230502, 0.03699879423188679, 0.3440487531476708, -1.1738752410196842, 0.7397656918820754, -1.2241797014773386, -0.7530163743124852, -0.9313272909656052, 0.08685263602325821, 0.5891544248127556, -1.0542750531780456, -0.2970289285810972, 0.4382142971873346, -0.34023412101214845, 1.4875190536752192, -1.416954586145294, -1.0660488591064075, -2.379655828097588, -1.7953658544904745, -0.7647397792964494, -0.7766120619660006, -1.7345928239523898, -1.6297639988930042, -1.9015004261915212, 0.12179964780754426, -2.6618859599871687, -1.3667692604725512, -1.648916635722379, -0.15228177468194326, 0.07901868182332228, -1.3432094406221853, -0.4668831052576041, -2.4702264100301328, -1.7128959991963728, -2.165172972057797, -1.418626018559717, -3.8616641829571297, -0.1626626850598436, 0.6436486212741566, -1.7304531862601946, -1.3318572131923636, 0.06846713748549416, 0.6939864858476019, -1.047827929506262, 0.43219606516146825, 0.457965694537777, 0.22682231063291614, -2.1828328926072706, 0.1006833897212891, -0.7607457478996977, -2.2678712659271456, -0.23077992883988063, 0.7055927175465, 0.44171240009557255, -2.6007771568224305, -1.8789305330212278, 0.841123474191382, -1.6350482793430903, -0.7529270492317505, -1.2461021899329658, -1.1582093804740032, -0.26843491960177635, -2.567180777065901, -0.5866304161568348, -1.768679356319947, -2.411222954293863, 0.08706968462353282, -3.332003944907528, -1.2870437552809206, -1.6143866488121354, 0.0695955164047839, -3.0292157810501186, 0.24308630480175908, -1.3394535550836917, 0.8915934712998084, -0.47043102318122765, 0.4825482940422383, 1.050873995598085, 0.4311676414665353, -0.9154186408382529, -1.6867789941583016, 1.0497015494725832, -0.5153672317325757, -0.9376770986956955, 0.9489207240865036, -0.06697575497869568, 0.8463845421831613, -1.869234949384123, 0.38560876803373567, 1.2510071130482303, -2.4983825603075966, -0.589905072867146, 1.4517888022681111, 0.0016455754375777065, 1.0451129230531775, -3.2910211793428594, -1.494230610764363, -1.2200277298408282, -0.2915030883794131, -2.9794284777420543, 1.0551933560274134, 0.6590726793994912, 1.3374028881610003, -1.3803019929533202, 0.773113211807174, -1.992308984464001, 0.1905898016838512, -1.8784736283730004, 1.3011955875861814, -0.33349405752754535, -0.4613000578029367, -1.7760622125633052, -3.1606949885530913, 1.6464967428852204, 0.05780247004172634, -0.07119894916230163, -0.5558308417751168, -0.1480644596332229, 0.3329952672676537, -1.919851461143618, -0.6230165313256946, 0.5619477967864921, -2.496482552993303, -1.5468747375903558, 0.6813958493820482, 0.5387048214432644, 0.712528323300885, -1.0022231559418635, -1.721364156723861, 0.18138453232546348, -0.6719762264163993, -2.027337727772391, 1.6297751091214, 0.02567029203107163, -2.863174323256362, -0.3766383487150834, 0.03377634659144513, 0.005080016860375958, 0.09939165893201451, -2.7529208694696767, 1.2205184191039518, 0.540950995232738, -0.6472458149680052, -1.8557880043116306, -1.2812034305519013, 0.44724502873475847, -0.25644859398520004, -1.3857710977397661, -0.8945918743463688, -0.6754295259627527, 0.06626701331888407, -1.3627512958569505, 0.9723109096169074, -1.0899796285238978, 0.6445091665903011, -0.9924847013214589, -1.269431886328091, -1.343744159423613, -0.539482444842248, -1.2604633736236488, 0.10790666610635147, -1.8053732690576467, -1.5042569891028155, -0.6936862173362965, 0.5774030947252407, 0.6608850348354132, -0.2909522547081492, -0.6789256159079572, 0.703760789190055, -1.1410400432577437, -1.4182730300691553, -0.055125840618441946, 1.9325738016756788, -1.8619000220795396, 0.02312346922705366, -1.7625934433003947, 1.017535099254562, 1.1367730748310572, 2.410468920671449, -1.4227766176836092, -1.828928441300037, 0.9073024319511909, -0.44263256617625024, -3.4682625876869877, 0.22393944668732457, 0.42265728579053685, -1.7502463432170037, -1.9217250536434356, 0.11472248599396195, -2.156404603282069, 0.015051886310990081, -0.9083549154211898, 0.7654159173644282, 0.6157012830004833, -0.30938694014718127, -0.39087180098862184, -1.9912149704964774, -2.2440605340479243, -0.7766402898334469, -1.0337115777546233, -0.028965055950193497, -1.4739090830457644, -0.41283443564878797, -2.6016597428484607, -2.793080047895666, -3.061223075906849, -2.724863088576087, -1.4721247710387209, -2.181974263590174, -1.389154244509201, -1.2856747955452044, -1.2950205210581747, -1.0814709392958997, -0.6819184189558549, -2.736704166716171, -1.3832579921180805, -1.9004292200740536, -1.511804934802107, -0.05769962386408922, -1.2071221037100857, -3.091934582046439, -1.6177667248260095, -1.4475734623754417, -0.6673356427622743, -2.5269410157645997, -2.2191640909846315, -1.525297262367249, -0.6667873248832648, -3.84411686763576, -0.7257487907253655, -0.171117137856588, -0.5336454750101758, -2.7949106488021385, -1.7702825136235236, -1.1761251133725987, -0.07164700855999862, -2.1956356678486104, -0.9266764796858473, -0.9552373017830794, -2.852372961121198, -1.011099310113508, -2.3659095721896977, -2.9229574646718532, -0.9630711521233102, -1.3565329188535116, -0.9691809464107817, -1.9528549514820517, -0.7213643279267402, -0.6759918087810798, -0.42114985268204796, -1.5080685521960193, -0.5472344333023882, -0.6381428402300181, -0.46662413693714133, -1.2116712917151657, -0.5260212046486992, -0.02617468823722724, -1.3106933770815419, -2.1419471514510544, -0.37852679542808354, -0.0655027766884625, -1.470248188688024, -2.7269824763646895, -1.944443799462364, -1.606417835436225, -1.664918952793423, -0.6796943445535543, -1.9608947071924017, -1.8039949573446143, -1.9411217240038035, -1.1458174139802062, -0.09324514232003278, -2.121369929159302, -0.427985984007222, -1.41373482935291, -0.18819001560567106, -1.7809303050820837, -1.4244328707539462, -0.0919571318225273, -0.18773940705768932, -0.5652774665855362, -2.407964839200247, -0.4202787336680117, -1.4270223847605827, -3.028876633479578, -2.367516100194192, -0.8993169257130792, -1.7906643691478252, -0.08897758425513769, -2.5435135210089825, -0.8702639573685498, -0.7693531315857526, -0.782562684809964, -1.7925306007793351, -1.508400742959993, -0.8207247077153582, -0.7095591867605042, -1.4363934062680295, -0.7928170944732507, -1.620285046528262, -1.6153944315877036, -2.3271269110910198, -1.305207812810019, -1.3631159462866402, -0.6235811480911467, -2.1858744740536276, -1.6691013020248433, -2.6220641877925117, -0.8664013692580365, -0.12786590932287845, -1.7547809498039355, -1.0920035343429337, -1.8621779023044347, -1.3248245931530516, -1.949049512076154, -2.000705269877166, -1.0077788908947807, -0.10087715516678686, -1.0744290515287798, -0.5343142453394052, -2.6677737440778433, -2.753276567191449, -1.9568842564342923, -0.7151978762894786, -0.5721928665266085, -0.4209078993166815, -1.0906222392658687, -0.9828258474028305, -0.7429508144233494, -1.4491733837439411, -0.6730005931673122, -0.37073554624954086, -1.3910334862843277, -1.7856776435715132, -1.1373864795737871, -2.5476508127989987, -0.11287938277851861, -1.7371214098936725, -2.4080294494114485, -2.4113729067357665, -0.6692806002318142, -2.2174257101735044, -1.5788723541192928, -0.8244108816199209, -0.4323348598940735, -0.7567130942080519, -0.7396155186843696, -1.660020043899323, -0.8510758291113106, -0.17249511499282122, -2.3029108948294934, -1.592918249842483, -1.5596277645232153, -0.14148037721918283, -0.40801496895229195, -1.2684679178088238, -1.3869805216024191, -1.2173871242581549, -0.6149920466980041, -0.713204184075316, -0.5394182031472923, -0.46512480634650666, -1.3001275692197014, -1.1150381596961731, -2.1990081937773054, -1.1031433415157563, -0.9076268534721367, -1.8166448543284113, -0.8562117029267436, -2.272231455171928, -2.3700134355317557, -0.27668899795809554, -0.7053240998971098, -0.4632937742601355, -0.882125689872808, -0.7571646730228437, -0.07117779755819753, -0.061722747646081544, -0.9014540078305235, -1.4232467259458081, -1.246099645089946, -0.8176190138523667, -0.23461396840463666, -1.7775742496549358, -0.026478595731277532, -1.1881753048090613, -2.3051610734149275, -1.1801039223246927, -0.9606211210552827, -1.197557980810754, -0.5300027486887449, -0.5560750155156622, -1.7819199826298577, -0.6883735932196253, -1.7737598505245202, -2.898731516337791, -2.138283972240197, -0.7139059334034257, -1.814504556518174, -0.20139204496170604, -0.28263090200725394, -0.11156216848526912, -0.7962901672083547, -1.3204553914547132, -1.7731483645845065, -0.7731004697770026, -0.07552451025413409, -0.8380859928518817, -0.005543213773452016, -1.490676689117647, -1.1141056454683274, -0.671229458519197, -1.6034795522463936, -1.0152688004430828, -2.9549073696352797, -0.40043778913938544, -2.561703010690272, -0.7865199723365552, -0.8875429935567238, -2.2047645526397677, -1.0862802477743947, -0.8652365279002685, -3.2299520277807097, -0.10853277444996212, -0.6093420588059173, -0.0957652817870186, -1.9429231192286467, -0.9152486215051359, -1.349454854249897, -1.253610227219436, -0.5067674436927558, -0.0954117562064839, -1.1974313286192864, -0.6753239124578909, -1.2133894104301093, -1.064149425255524, -0.9420795667680738, -0.8431923831883746, -0.5143541408890713, -0.7245219416735154, -1.867241233391332, -1.1593389884321246, -0.19050179953831392, -2.0797633944624208, -0.501840371125494, -0.8575586816079234, -0.9126713027888212, -2.3640671542195895, -0.3451185350705699, -1.8298746659810377, -1.7547923346898506, -0.5508448614673176, -0.8523973152823662, -1.3943595415616274, -0.5005068558032022, -0.3764805717179547, -3.7641450013312783, -0.7194114465940633, -3.224309152887903, -0.7282455982331133, -0.4338614161578489, -1.9113497076093813, -1.2155202346752718, -1.9670578188746086, -0.0935286968168374, -1.4647494012755267, -0.6361272986821116, -0.6313789438456411, -1.4709078884317468, -0.051232314194480044, -1.3649676261134325, -0.9573544347748537, -0.20134738375744565, -1.8411599518488577, -0.6452251523030927, -0.7808202842268441, -1.531671933895148, -2.5748718055653392, -1.4808038833779782, -1.6578179517946818, -0.09917526017719991, -3.1005325232568137, -2.502953163026444, -1.6386684995257697, -1.3805496483210256, -0.4543531191495469, -2.3811624336666473, -2.1421267064922285, -2.126347488543375, -0.07562380228348409, -0.16611228417479662, -1.4616878937026923, -0.8193212089343433, -2.4328830607412795, -3.094250336211089, -1.131763932350429, -1.346989832748842, -1.0827472207078388, -1.0038164265251583, -2.6443531185448954, -2.5130248172209457, -0.26835973424296655, -1.6716207298568773, -1.4549180508202784, -2.5086571793537606, -2.7898265238560835, -1.3736500279871227, -2.9500387736265186, -1.2079800862513517, -2.0467729315721996, -1.0368401155965148, -0.7353895933087244, -2.2614459623081427, -0.9862257136181504, -1.7541620453907132, -1.2730986323224405, -0.9630890246388683, -0.8173759035200452, -1.8436043589574669, -2.5604614545017403, -2.768938948030964, -0.8603449943023858, -2.54221747068381, -1.7266823437593044, -0.9322801012632087, -0.4366045082852965, -0.04929120385143371, -3.8640278189360946, -2.902457094378052, -1.1989978244245791, -1.7706522655909578, -0.22010770362186816, -0.8270173029665029, -1.6604411315164298, -1.1819734881838782, -2.433172675920106, -1.5860307243219087, -0.8861223611004225, -1.511784700601369, -2.206651411353966, -0.44680730503438326, -0.5421974220915959, -1.6575258582754904, -0.8896861664751354, -1.9555457296939633, -0.24829820502926603, -0.1820935502143074, -2.0123762095771407, -2.634187139773674, -0.2198010002361348, -1.7672494858703431, -1.2076954170212209, -2.4781028458410255, -1.5586943604540688, -0.13728099988440257, -1.7771045984993814, -2.4051794843290923, -1.743281534341564, -0.02757351075888348, -0.660654596336716, -2.5445863699279236, -1.6757490145738418, -0.7714772633666697, -1.4896774716466208, -2.7295131893908353], \"z\": [-4.044009291075765, -4.010474614590195, -1.2108257838708276, -1.1243303646115144, 2.0314605660627656, -3.7075873486655317, 3.2952069363799668, -0.9355666473930802, -0.7343830026303584, -3.895861147681497, -0.19125266166682575, -2.6780289966687194, -2.5395074759776413, 0.11121578833016699, 0.4234779025475204, -4.986401650692861, -4.549198659412295, -3.7120588967019534, 0.3400148837297987, -2.4584277726545105, -1.5803297259740061, -2.6296027676252787, 3.1616027177927863, 2.167736117507582, -3.1479648557177273, 2.339870082916054, 0.14729283728024534, -1.433031209096434, 1.5294806621040449, -3.7088834223481366, 0.40308741148048544, 3.024865535584433, 1.4452433994966034, -0.9765240740868322, -2.5675131427979307, -1.5953363893572927, 1.2746508995477637, -1.0882494921133206, -3.7307713572614123, 4.121369086009156, -2.6968558614803944, 1.664762954276231, -0.3361608597111063, 2.0180495690001914, 1.1950917993965673, 3.2682064846350842, 4.3064960146913185, 1.2006278432302153, -1.5619408672963577, -1.5916253754121263, -2.817704189794759, 3.331367723246614, -4.445199785368212, 1.67789107587617, -3.127373889429227, -0.18983326493949182, -0.1667890332848012, -3.4889445675176454, 1.1216938937457366, 3.125945999514294, -1.5914724503976219, 2.787485124390022, -0.181467295551772, -3.84700801072528, -3.61477625891209, -3.7796115760166886, -4.355468052038515, -3.8284272602264027, -1.7333601789906519, -0.27858261869220424, 0.7061223020744354, 0.15126992185294608, 2.776542453873269, -2.8283634738250565, 1.1540781026088123, 2.8240165626770732, 0.895302293396691, -4.399624892541896, -2.280585170563002, 0.2506670938279605, -0.2110723348635002, 1.3657023064492995, -1.9673625800964274, -1.0470452733037598, -0.15314872969678284, 0.34575275202084477, 1.176089368288527, -4.686153916238782, 1.113571589160256, -0.7642268031665651, -2.4640843694026704, 4.372225829256796, 3.328320818651208, 2.136179862975908, 2.3864406585479605, -3.3552293925237526, -2.393962664548367, 1.9787001977657885, -0.1571290419932767, 3.27712633402544, -1.6507418130060265, -2.2218610558574015, -2.0549243391749825, 3.121226027297868, 2.1178179432948463, 1.6253996012234389, 0.19236989487340939, -4.60845127584194, -0.8986933528816445, -2.580074445936278, -1.0646810380152014, 3.2071068023857903, -0.5663157353635917, -1.118477775542142, -1.1674031651736536, 0.8244818292731226, 1.8230618614274379, -4.900714646939417, -2.5746131524218074, -4.033888401856091, 2.008582217146145, 2.0053314503944453, -3.4379811013183, 1.4880886988522963, 2.169361219013269, 3.003656666885555, -2.4619265009391875, -4.277066842296735, 1.4862514195594745, -2.736903282404033, -3.812193157494007, 2.810569510776503, -3.4309288189624643, -0.5887261379776012, 0.1787818666903771, -1.0252020731219726, -4.167624407795568, -4.21857654247239, 1.1208520022515627, -3.0384341737937812, 2.82099038624816, -2.5993877281976743, -2.5649146314027336, 1.9539902933584399, -0.9791459780168852, 1.2341202464113028, -4.899364575652824, 2.1565324126134753, -1.9095619030238167, -4.088997707872991, -5.012755245716005, 0.5925006406422924, -4.1533733253736775, -3.356985817276229, 3.881770267793466, -2.572679815724069, -2.3819141576766887, -1.6829101995015283, -3.8648802600067516, -1.238786317051018, 0.11160261096486046, 2.729256444272952, 0.9558930675689155, -2.764907904015684, -1.634461744415225, 3.7337098235461363, -3.9095393561001086, 3.841763892347273, 2.477736550763746, 2.525702755014093, -0.7824446060190668, -1.3704553273539086, 1.8621734286470142, 2.027833299685434, 2.198665003791029, -4.1100648048076085, -4.2585123872700805, 1.913082330661041, 2.7812519977042056, -2.0480157488878934, 0.6945723556870869, -2.757312088906398, 4.21636814531974, -2.1287493426722763, -3.623417107521372, -1.1387259325763575, 2.3653461126719266, -0.17806196782480743, 3.1957981854143673, -4.1276572701760585, 0.8452390529321638, -0.11467580615010853, -1.0467531400901642, 0.7929812794947155, -0.19054897751883537, 3.359643229754119, -4.422555609358116, 3.381824333159167, 0.1140490749650711, -2.126976553898393, -1.1607017478267396, 1.6063371798490165, 3.622318606391141, -3.2679058751817003, 3.880122519233109, -1.4670619236608031, -1.511052892027612, 1.5387875494042618, 4.360135629891125, 3.6732218599420756, 0.8065444144497258, -4.02082665540297, 2.058776527736563, 2.541095765067676, 4.353731039353193, 0.640800635360109, 1.5968095280416366, 3.7130930936510387, 1.401518481917008, -4.710534366734149, -4.613724832480331, -1.2922635927041384, 0.42190530954114003, 1.3609168812923969, -0.4370865556651067, 1.049663363411196, 0.3228967523638353, -0.5104448335038452, -0.39846932975233784, -0.23431163360541785, -4.330934346477036, 0.8890780813570753, -1.8956495981345611, -0.08302431116092901, -3.27369566126002, -2.124671124879278, -2.0381495523431026, 2.9543589938610113, 2.3711940169800556, 1.45136721817006, 1.0115624375106202, 3.3401771227862236, -2.0651882434212183, 3.0159207280858125, 0.9661737851105023, 1.6281404302255122, 0.9143315548174922, -2.32669286362443, -3.9184881701397978, -4.474812049941045, -1.9073736839093685, -4.702849888834175, -2.970799835680111, 1.9255192054993264, 1.804297579418682, -1.1476055304910942, 3.412411982212096, 0.5756293237125742, 0.867470258980239, 0.9949196120491495, -0.9332404150324392, 1.740534015785708, 3.942820017158531, -0.985020298118382, 0.3986754624312274, -1.7811489940175793, 2.4641231004514843, 3.7366726241648545, 4.22925278854571, 2.8337643611151524, 3.0658508057134197, -4.957710684130422, -3.536872367104115, -1.6190809775336477, 3.771281378386612, 3.2701014010924014, -0.3020899093479814, -3.8161229491421915, 2.6172908763323433, -3.9513235413416865, 1.924128598851241, 1.4558392496964547, 4.153545008453533, 2.217147653577955, -0.5816904578617699, 0.7543380266685453, -3.8344742628060287, 1.1823104591639941, 3.8611006325911577, -1.3368741199657403, -0.6075142745103657, 4.273796100466044, 1.0607536069636856, 1.1940792635846025, 1.8032167475850391, 0.6354385613985736, 0.8673843385347224, 0.528425922127516, 1.408261648477227, 2.0045404940489284, 0.22535556800341716, 1.953716284102156, -4.476179561107644, -3.388673035486122, 2.542886548887303, 3.2947950426403, 2.3530932841469214, 1.018974302241622, 3.070207563386247, 2.615119886064881, -3.6711605605595983, -4.793658227314207, 2.386684377701161, 1.825637201062439, 0.0543679074702661, -1.791206255135196, 3.1816552361067325, -2.428657227437706, -1.3660229847585779, -3.3293101905851037, 1.583519957013908, -0.709176906664621, -3.404640593543286, 1.2630971172226628, 3.4202812849482997, 0.996924404959608, 3.3034920264447623, 3.3330478807926616, 0.4746569641826106, 3.31613696120196, 3.934416440643953, -4.185755397705606, 1.2809556936389717, -3.1712785097138694, -1.11971133815477, 2.1017243016270895, 0.14820661284601222, 2.4309992247113534, -4.835761444263267, -0.2493815635854535, 4.020781091997585, -1.4687995985413487, -3.963646116284173, -1.2384323633701801, -5.03066293006302, 1.1986140245630477, 3.1557562652585043, 3.787510597232292, -1.9249053907677758, -1.853799142368127, 2.4698937946619974, 2.9049220169009855, 2.2756543912486578, 3.0077549342286263, 1.3988324331809032, 2.6258802056876975, -4.5654433072413125, -2.012310322660514, -3.5997524232860685, 1.2021497478054295, -4.636033986069648, -4.380207825083104, -1.1845402700664582, 1.507433522708915, -2.371922644017858, 0.9558683968041182, -0.503595896938247, -1.051985589560264, -2.6561305594685463, -3.1717169042273987, -4.318450531026405, 0.6007988136147313, 1.9298291257604498, 0.5380263694240881, 1.083495096071359, -0.2793342445467424, 2.035445282701625, -0.7191749380377583, -2.311691626230136, 3.3753732943584476, -3.5088577364682996, 4.158232599417016, 2.7941280648671727, 3.3429476991563627, 1.481165662507414, 3.214888354069644, 1.0801116624079974, -0.561367494025629, -4.233852517962861, -0.5432333420465172, 0.10350855675263126, -2.7235542883452704, 1.604418298067829, -4.90746185116778, 0.12241006335379012, -0.4530497056439371, 4.328987360660732, 2.105793616663524, -2.784600762888871, -3.382786663822669, -3.2113101665140746, -4.512447345695303, 1.4097822806449916, -4.784679257193987, 3.685455956481724, -1.2818540073775249, 4.146954011343552, 3.860894505287301, -3.0506613898199317, 1.711465071155768, 0.08741584456535367, 1.0275409170370082, -2.761571448097288, 0.7015390357084081, 0.05490982868834582, -0.8311620428718376, -1.774528261373856, -0.9788158583081801, -4.483044675930517, -2.8074403676894386, -4.430060421493725, -0.5613314758086689, 0.23066626026599213, 2.5408306642470277, -4.873773454788938, 3.0768000936362165, -3.6934016646456147, -1.8369338801046515, 2.22076987794238, -4.54576770175465, 2.1946225454689277, -2.3632238077134624, -2.1306825119309383, 2.7010413861395106, -3.9889209945126076, -3.0523539426196593, -3.457600810890665, 3.3246018878621184, 0.9743847254009212, -3.6837376787426437, 2.446250521932675, 1.7918864471793334, 0.5166691805718191, 1.2517761296778565, 0.2611491622230284, -1.5317695366293518, -0.9872589557464764, -1.4021433623845518, 0.5455058819987277, 1.0231934594517078, 0.6577301463177632, -4.307656634867845, 2.850695417470618, -0.45015195030239585, -4.405615189878, -1.3145191254514037, -5.010549632190043, -2.8315242460339354, -1.5812692196743883, 4.192813258951058, -0.35249885237395073, -3.455216181100228, -0.596373354843724, 0.5182522765328841, 3.5850762763636874, -4.153606538122128, 3.6925050740864362, -2.7212384119521076, -0.6745441831763967, -1.0162892804874692, 0.3370494511418576, -0.8883087653271451, -4.13517023534184, 2.6076578586897554, -1.307288684999317, 0.5900386578884618, -0.9065768698628407, 4.331102668738121, -0.6144970514879633, -3.876798262153283, 4.349641220610123, -4.919501557182855, 4.213875202472832, 3.5144998501857936, 0.6252323474022461, 3.276599564180727, -0.22093563268527916, -2.2936343651979474, -3.590240392183645, 4.157494597384539, -3.9090335310346225, -0.3802499408509572, 4.368547690582845, 1.6721234151468272, 2.755742913798694, -1.2306461171967236, 1.219361477399243, -1.739449497147005, 1.0801328876151741, -4.9912566452593214, -2.868341655666318, 4.279442132912632, -5.063505532818136, -1.9972567626090951, 0.21132724448337914, 0.9366052895856685, -3.783293950073621, -4.678719336574696, -2.328477094802701, -1.1201419689486292, 1.3199456111829377, -3.120255744211236, -1.1605607389089627, -3.781023592325152, -3.0434936625675113, -3.876179050668162, 0.06432441219995422, 3.234741976216813, 2.5450695801217647, 3.097742813357171, -4.868189806722336, -4.252085508502581, -4.257571447484203, -0.9694440871389549, -0.8908542901805889, -2.8078465883070316, 0.01668887924284501, 0.2027080453714456, 2.5576986965329453, 0.9891608398567131, -0.037696257146509815, -4.39323786730786, -1.8041159216091676, -0.5269461271758233, 3.0840180234787455, 1.4244236743505292, 1.0800643248701878, 2.427185367355327, 1.0471742735808585, 1.527088597290434, -0.005012721146948174, -3.2130628648587845, 1.930966479870012, 4.345766592628409, 1.3448334320425204, -3.0088239716808713, -3.3443102818409134, 3.350075493715777, -1.9304638978509794, 1.671732068466799, -1.9841550897318978, -0.08055399486006909, -0.02208222045700925, -2.0791672248412123, -0.5247667766382733, -3.2869917603385783, 4.064306101677903, 1.7943893415628898, 4.002266456525978, 1.3157292662258335, -3.3299395298753733, 2.130989070776251, 2.2936428410691576, -3.574761405697574, -4.840826266053941, -1.180509755763147, 3.3562330318485207, -1.852117587370865, 0.4007153602800395, 0.45965399139956276, 3.9882642453229016, -4.725887038851679, -1.4092164440076185, 2.632551420424133, -4.26598516064475, 0.6747748556170832, -1.290894882054968, 0.2793131880664568, -4.150115647836211, -0.30286221807859537, 0.47990575478275765, 1.0934505200885525, -1.0367386965764256, -3.2377624626857218, 3.615984337023277, -1.6324258064920514, 1.8068608295685804, 0.40504702674131376, 2.9416569959463077, -0.040677348771492206, -1.0439022812806211, 2.5959411999239386, -4.0333898621036, -2.8649300595248173, -2.255713412903356, -0.8062147788987106, 3.6203908579338764, 3.7467408700032516, -2.0054683076216637, -3.276812640981236, 1.6680267928688703, -3.3613021449603897, 3.0182487856684626, -3.590596614477353, 2.0180142671442587, 0.806917149541782, -0.019065819356225866, 3.873787039544065, -1.2188660426145241, -3.6893656704925655, 4.092533822183518, 1.2085406034424135, 2.1097817273165944, -2.134240899267886, 2.97962517277585, 1.614723521991574, -0.4559294605585027, -4.380683396002748, -1.408125442389578, -1.7875007596939114, -1.929022690197188, -1.7189500650445857, -4.968911814234564, -1.0769572795228393, -1.3407737651976008, 0.987257269272436, -1.854412637397966, -2.611579028168522, 1.7438338347752795, -3.3168072884627415, -0.7843673208554005, 1.70840260891904, -3.8323525622481833, -2.5403497363658043, -4.0879328534304715, -2.4379367386046744, 1.0373381200945548, 4.024102181676699, 1.9972184418174619, 2.5592025034552597, 3.5321573799552644, -0.09004193940936212, -0.09365452111106354, 2.493325861153483, -4.00833354989503, -3.24519403572068, 2.7150845405760666, -0.8092693704149099, 4.064926714020149, -2.1805149324925033, 2.9378377914862055, 0.6797742398939297, 3.103895509763295, 0.8541442644682204, -1.339953757404614, 4.260466643125251, -4.057321725662484, -2.5100418706905625, 1.0850165525942481, -3.6132252888238456, -2.207086120500148, -1.9689639038248434, -3.5918548511838306, 0.12899991613883088, -3.5791048035410338, 3.1544287580319432]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 1\", \"marker\": {\"color\": \"rgb(255, 127, 14)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 1\", \"scene\": \"scene2\", \"showlegend\": false, \"text\": [\"666_l_1_m-0_1.42-1_0.04-2_0.58-3_0.4\", \"667_l_1_m-0_1.07-1_0.13-2_0.08-3_0.11\", \"668_l_1_m-0_0.1-1_0.1-2_0.09-3_0.58\", \"669_l_1_m-0_0.99-1_0.44-2_0.12-3_1.24\", \"670_l_1_m-0_0.45-1_0.08-2_0.78-3_0.1\", \"671_l_1_m-0_0.28-1_0.11-2_0.12-3_0.27\", \"672_l_1_c_0_1_2-0_0.43-1_0.28-2_0.33-3_0.41\", \"673_l_1_c_0_1_2-0_0.61-1_0.14-2_0.73-3_0.65\", \"674_l_1_c_0_1_2-0_1.35-1_0.86-2_0.19-3_0.14\", \"675_l_1_c_0_1_2-0_0.06-1_0.48-2_0.19-3_1.15\", \"676_l_1_c_0_1_2-0_0.6-1_0.32-2_0.04-3_0.35\", \"677_l_1_c_0_1_2-0_0.7-1_0.4-2_0.11-3_1.46\", \"678_l_1_c_0_1_2-0_0.48-1_0.42-2_0.47-3_0.31\", \"679_l_1_c_0_1_2-0_0.09-1_0.12-2_0.24-3_1.24\", \"680_l_1_c_0_1_2-0_0.45-1_0.1-2_0.27-3_0.88\", \"681_l_1_c_0_1_2-0_0.01-1_0.09-2_0.01-3_1.53\", \"682_l_1_c_0_1_2-0_0.02-1_0.13-2_0.6-3_0.43\", \"683_l_1_c_0_1_2-0_0.37-1_0.43-2_0.01-3_1.33\", \"684_l_1_c_0_1_2-0_0.85-1_0.14-2_0.37-3_0.32\", \"685_l_1_c_0_1_2-0_0.13-1_0.81-2_0.22-3_0.28\", \"686_l_1_c_0_1_2-0_1.47-1_0.36-2_0.51-3_0.29\", \"687_l_1_c_0_1_2-0_0.73-1_1.04-2_0.17-3_1.62\", \"688_l_1_c_0_1_2-0_0.55-1_0.14-2_0.05-3_0.72\", \"689_l_1_c_0_1_2-0_0.17-1_0.19-2_0.07-3_0.08\", \"690_l_1_c_0_1_2-0_0.62-1_0.75-2_0.21-3_1.57\", \"691_l_1_c_0_1_2-0_1.1-1_0.23-2_0.17-3_0.56\", \"692_l_1_c_0_1_2-0_0.36-1_0.43-2_0.66-3_0.14\", \"693_l_1_c_0_1_2-0_0.31-1_0.04-2_0.05-3_0.44\", \"694_l_1_c_0_1_2-0_0.03-1_0.19-2_0.44-3_0.45\", \"695_l_1_c_0_1_2-0_0.33-1_0.03-2_0.11-3_0.86\", \"696_l_1_c_0_1_2-0_1.0-1_0.88-2_0.06-3_0.11\", \"697_l_1_c_0_1_2-0_0.04-1_0.22-2_0.36-3_0.84\", \"698_l_1_c_0_1_2-0_0.4-1_0.25-2_0.96-3_0.07\", \"699_l_1_c_0_1_2-0_0.04-1_0.01-2_0.26-3_0.31\", \"700_l_1_c_0_1_2-0_1.03-1_0.19-2_0.27-3_0.75\", \"701_l_1_c_0_1_2-0_0.24-1_0.15-2_0.41-3_1.58\", \"702_l_1_c_0_1_2-0_0.29-1_0.73-2_0.21-3_0.48\", \"703_l_1_c_0_1_2-0_0.65-1_0.99-2_0.64-3_1.27\", \"704_l_1_c_0_1_2-0_0.92-1_0.5-2_0.63-3_0.65\", \"705_l_1_c_0_1_2-0_0.37-1_0.37-2_0.14-3_0.71\", \"706_l_1_c_0_1_2-0_0.07-1_0.61-2_0.6-3_1.57\", \"707_l_1_c_0_1_2-0_0.02-1_0.81-2_0.44-3_1.63\", \"708_l_1_c_0_1_2-0_0.42-1_0.4-2_0.17-3_0.57\", \"709_l_1_c_0_1_2-0_0.05-1_0.47-2_0.03-3_0.71\", \"710_l_1_c_0_1_2-0_0.34-1_0.05-2_1.03-3_0.1\", \"711_l_1_c_0_1_3-0_0.31-1_0.36-2_0.38-3_0.28\", \"712_l_1_c_0_1_2-0_0.41-1_0.28-2_0.42-3_0.34\", \"713_l_1_c_0_1_3-0_0.22-1_0.0-2_0.46-3_0.21\", \"714_l_1_c_0_1_2-0_0.1-1_0.73-2_0.14-3_0.31\", \"715_l_1_c_0_1_3-0_0.08-1_0.15-2_1.46-3_0.02\", \"716_l_1_c_0_1_2-0_0.3-1_0.94-2_0.06-3_1.62\", \"717_l_1_c_0_1_3-0_0.21-1_0.0-2_0.93-3_0.06\", \"718_l_1_c_0_1_2-0_1.08-1_0.03-2_0.09-3_0.45\", \"719_l_1_c_0_1_3-0_0.18-1_0.92-2_1.72-3_0.29\", \"720_l_1_c_0_1_2-0_0.07-1_0.03-2_0.03-3_0.56\", \"721_l_1_c_0_1_3-0_0.42-1_0.81-2_1.23-3_0.18\", \"722_l_1_c_0_1_2-0_0.08-1_0.78-2_0.04-3_2.01\", \"723_l_1_c_0_1_3-0_0.64-1_0.25-2_0.52-3_0.12\", \"724_l_1_c_0_1_2-0_0.25-1_1.61-2_0.23-3_1.07\", \"725_l_1_c_0_1_3-0_0.28-1_0.42-2_0.63-3_0.19\", \"726_l_1_c_0_1_2-0_0.2-1_0.49-2_0.29-3_0.86\", \"727_l_1_c_0_1_3-0_0.15-1_1.58-2_0.77-3_0.47\", \"728_l_1_c_0_1_2-0_0.15-1_0.51-2_0.15-3_0.14\", \"729_l_1_c_0_1_3-0_1.1-1_0.03-2_0.87-3_0.14\", \"730_l_1_c_0_1_2-0_0.11-1_0.39-2_0.01-3_0.53\", \"731_l_1_c_0_1_3-0_0.19-1_0.78-2_1.61-3_0.07\", \"732_l_1_c_0_1_2-0_0.39-1_0.52-2_0.39-3_0.81\", \"733_l_1_c_0_1_3-0_0.37-1_0.18-2_1.78-3_0.3\", \"734_l_1_c_0_1_2-0_0.18-1_1.04-2_0.05-3_0.87\", \"735_l_1_c_0_1_3-0_0.03-1_0.47-2_1.25-3_0.23\", \"736_l_1_c_0_1_2-0_0.86-1_0.48-2_0.68-3_0.23\", \"737_l_1_c_0_1_3-0_1.23-1_0.66-2_1.32-3_0.05\", \"738_l_1_c_0_1_2-0_1.06-1_0.31-2_0.02-3_0.8\", \"739_l_1_c_0_1_3-0_0.09-1_0.08-2_0.05-3_0.21\", \"740_l_1_c_0_1_2-0_0.31-1_0.62-2_0.63-3_0.57\", \"741_l_1_c_0_1_3-0_0.54-1_0.86-2_0.71-3_0.39\", \"742_l_1_c_0_1_2-0_0.77-1_1.11-2_0.52-3_0.79\", \"743_l_1_c_0_1_3-0_1.73-1_0.33-2_0.26-3_0.35\", \"744_l_1_c_0_1_2-0_0.28-1_0.73-2_0.08-3_0.9\", \"745_l_1_c_0_1_3-0_0.33-1_0.46-2_0.9-3_0.01\", \"746_l_1_c_0_1_2-0_0.42-1_0.05-2_0.58-3_0.7\", \"747_l_1_c_0_1_3-0_0.05-1_1.24-2_1.46-3_0.1\", \"748_l_1_c_0_1_2-0_0.2-1_0.37-2_0.09-3_0.61\", \"749_l_1_c_0_1_3-0_0.02-1_0.93-2_0.71-3_0.01\", \"750_l_1_c_0_1_2-0_0.16-1_0.28-2_0.71-3_0.12\", \"751_l_1_c_0_1_3-0_0.17-1_0.61-2_1.7-3_0.65\", \"752_l_1_c_0_1_2-0_0.37-1_0.13-2_0.07-3_0.46\", \"753_l_1_c_0_1_3-0_0.41-1_1.05-2_0.49-3_0.37\", \"754_l_1_c_0_1_2-0_0.42-1_0.14-2_0.31-3_0.36\", \"755_l_1_c_0_1_3-0_0.47-1_0.2-2_0.85-3_0.23\", \"756_l_1_c_0_1_2-0_0.08-1_0.19-2_0.21-3_0.15\", \"757_l_1_c_0_1_3-0_0.18-1_0.68-2_0.13-3_0.28\", \"758_l_1_c_0_1_2-0_0.06-1_0.53-2_0.44-3_0.15\", \"759_l_1_c_0_1_3-0_0.5-1_0.18-2_1.22-3_0.01\", \"760_l_1_c_0_1_2-0_0.05-1_0.03-2_0.12-3_0.34\", \"761_l_1_c_0_1_3-0_0.18-1_0.43-2_1.69-3_0.4\", \"762_l_1_c_0_1_2-0_0.37-1_0.14-2_0.07-3_0.43\", \"763_l_1_c_0_1_3-0_0.06-1_0.28-2_0.84-3_0.27\", \"764_l_1_c_0_1_2-0_0.03-1_0.09-2_0.04-3_1.16\", \"765_l_1_c_0_1_3-0_0.24-1_0.65-2_0.36-3_0.27\", \"766_l_1_c_0_1_2-0_0.36-1_0.14-2_0.35-3_1.2\", \"767_l_1_c_0_1_3-0_0.02-1_0.36-2_0.95-3_0.25\", \"768_l_1_c_0_1_2-0_0.1-1_0.08-2_0.34-3_0.78\", \"769_l_1_c_0_1_3-0_0.53-1_0.32-2_1.77-3_0.28\", \"770_l_1_c_0_1_2-0_0.55-1_0.28-2_0.5-3_0.84\", \"771_l_1_c_0_1_3-0_0.1-1_0.03-2_0.74-3_0.04\", \"772_l_1_c_0_1_2-0_0.18-1_0.0-2_0.73-3_0.38\", \"773_l_1_c_0_1_3-0_0.09-1_0.59-2_0.5-3_0.13\", \"774_l_1_c_0_1_2-0_0.37-1_0.89-2_0.54-3_1.03\", \"775_l_1_c_0_1_3-0_0.29-1_0.01-2_1.27-3_0.22\", \"776_l_1_c_0_1_2-0_0.12-1_0.21-2_0.26-3_0.05\", \"777_l_1_c_0_1_3-0_0.07-1_0.44-2_1.03-3_0.46\", \"778_l_1_c_0_1_2-0_0.18-1_0.34-2_0.42-3_0.07\", \"779_l_1_c_0_1_3-0_0.85-1_0.35-2_0.29-3_0.33\", \"780_l_1_c_0_1_2-0_0.29-1_0.43-2_0.21-3_1.24\", \"781_l_1_c_0_1_3-0_0.84-1_0.15-2_0.73-3_0.09\", \"782_l_1_c_0_1_2-0_0.08-1_0.11-2_0.09-3_1.07\", \"783_l_1_c_0_1_3-0_0.59-1_0.51-2_0.24-3_0.15\", \"784_l_1_c_0_1_2-0_1.61-1_0.67-2_0.1-3_0.77\", \"785_l_1_c_0_1_3-0_0.88-1_0.43-2_0.14-3_0.27\", \"786_l_1_c_0_1_2-0_0.31-1_0.26-2_0.17-3_0.07\", \"787_l_1_c_0_1_3-0_1.39-1_0.51-2_0.31-3_0.31\", \"788_l_1_c_0_1_2-0_0.08-1_1.23-2_0.29-3_0.59\", \"789_l_1_c_0_1_3-0_0.58-1_0.11-2_0.54-3_0.03\", \"790_l_1_c_0_1_2-0_0.2-1_0.01-2_0.36-3_0.13\", \"791_l_1_c_0_1_3-0_0.47-1_0.22-2_0.95-3_0.01\", \"792_l_1_c_0_1_2-0_0.87-1_0.0-2_0.13-3_0.65\", \"793_l_1_c_0_1_3-0_0.39-1_0.17-2_1.03-3_0.08\", \"794_l_1_c_0_1_2-0_0.96-1_0.06-2_0.15-3_0.72\", \"795_l_1_c_0_1_3-0_0.18-1_0.01-2_0.29-3_0.2\", \"796_l_1_c_0_1_2-0_0.81-1_0.34-2_0.35-3_0.06\", \"797_l_1_c_0_1_3-0_0.07-1_0.32-2_0.43-3_0.35\", \"798_l_1_c_0_1_2-0_0.3-1_1.08-2_0.46-3_0.32\", \"799_l_1_c_0_1_3-0_0.12-1_0.12-2_1.17-3_0.33\", \"800_l_1_c_0_1_2-0_0.14-1_0.84-2_0.15-3_0.74\", \"801_l_1_c_0_1_3-0_0.7-1_0.21-2_0.9-3_0.5\", \"802_l_1_c_0_1_2-0_0.36-1_0.22-2_0.48-3_1.13\", \"803_l_1_c_0_1_3-0_0.35-1_0.28-2_0.4-3_0.12\", \"804_l_1_c_0_1_2-0_0.63-1_0.27-2_0.08-3_0.34\", \"805_l_1_c_0_1_3-0_0.43-1_0.53-2_1.43-3_0.52\", \"806_l_1_c_0_1_2-0_0.23-1_0.3-2_0.21-3_0.24\", \"807_l_1_c_0_1_3-0_0.33-1_0.93-2_0.25-3_0.51\", \"808_l_1_c_0_1_2-0_0.21-1_1.44-2_0.65-3_1.33\", \"809_l_1_c_0_1_3-0_0.83-1_0.64-2_0.92-3_0.06\", \"810_l_1_c_0_1_2-0_0.46-1_0.22-2_0.2-3_1.21\", \"811_l_1_c_0_1_3-0_0.83-1_0.15-2_0.21-3_0.01\", \"812_l_1_c_0_1_2-0_0.22-1_0.02-2_0.35-3_0.22\", \"813_l_1_c_0_1_3-0_0.42-1_0.47-2_1.47-3_0.2\", \"814_l_1_c_0_1_2-0_0.52-1_0.8-2_0.06-3_0.94\", \"815_l_1_c_0_1_3-0_0.66-1_0.52-2_1.92-3_0.36\", \"816_l_1_c_0_1_2-0_0.05-1_0.11-2_0.11-3_0.56\", \"817_l_1_c_0_1_3-0_0.51-1_0.21-2_0.62-3_0.26\", \"818_l_1_c_0_1_2-0_1.26-1_0.53-2_0.01-3_0.96\", \"819_l_1_c_0_1_3-0_0.19-1_0.09-2_0.2-3_0.48\", \"820_l_1_c_0_1_2-0_0.36-1_0.6-2_0.07-3_0.15\", \"821_l_1_c_0_1_3-0_0.3-1_0.02-2_0.79-3_0.89\", \"822_l_1_c_0_1_2-0_0.42-1_0.06-2_0.16-3_0.73\", \"823_l_1_c_0_1_3-0_0.19-1_0.49-2_0.69-3_0.11\", \"824_l_1_c_0_2_3-0_0.62-1_0.28-2_0.21-3_0.18\", \"825_l_1_c_0_1_2-0_0.35-1_0.27-2_0.15-3_0.27\", \"826_l_1_c_0_1_3-0_0.23-1_0.16-2_0.63-3_0.15\", \"827_l_1_c_0_2_3-0_0.25-1_0.14-2_0.18-3_0.58\", \"828_l_1_c_0_1_2-0_0.57-1_0.52-2_0.42-3_0.12\", \"829_l_1_c_0_1_3-0_0.1-1_0.27-2_1.12-3_0.1\", \"830_l_1_c_0_2_3-0_0.61-1_0.9-2_0.15-3_0.29\", \"831_l_1_c_0_1_2-0_0.61-1_0.04-2_0.36-3_0.22\", \"832_l_1_c_0_1_3-0_1.27-1_0.31-2_1.03-3_0.09\", \"833_l_1_c_0_2_3-0_0.76-1_0.43-2_0.01-3_0.29\", \"834_l_1_c_0_1_2-0_0.52-1_0.2-2_0.54-3_0.82\", \"835_l_1_c_0_1_3-0_0.36-1_0.45-2_0.61-3_0.3\", \"836_l_1_c_0_2_3-0_0.99-1_0.3-2_0.53-3_0.02\", \"837_l_1_c_0_1_2-0_0.59-1_0.24-2_0.57-3_0.18\", \"838_l_1_c_0_1_3-0_0.85-1_0.53-2_0.3-3_0.26\", \"839_l_1_c_0_2_3-0_0.9-1_0.05-2_0.13-3_0.88\", \"840_l_1_c_0_1_2-0_0.14-1_0.16-2_0.08-3_0.68\", \"841_l_1_c_0_1_3-0_0.31-1_0.24-2_1.52-3_0.35\", \"842_l_1_c_0_2_3-0_0.4-1_1.41-2_0.72-3_1.07\", \"843_l_1_c_0_1_2-0_0.96-1_0.84-2_0.1-3_0.87\", \"844_l_1_c_0_1_3-0_0.88-1_0.2-2_1.28-3_0.15\", \"845_l_1_c_0_2_3-0_0.43-1_1.87-2_0.16-3_0.17\", \"846_l_1_c_0_1_2-0_0.22-1_0.19-2_0.75-3_0.17\", \"847_l_1_c_0_1_3-0_1.21-1_0.1-2_0.32-3_0.01\", \"848_l_1_c_0_2_3-0_0.26-1_0.66-2_0.73-3_0.23\", \"849_l_1_c_0_1_2-0_0.17-1_0.31-2_0.13-3_0.58\", \"850_l_1_c_0_1_3-0_0.58-1_0.15-2_0.31-3_0.26\", \"851_l_1_c_0_2_3-0_0.59-1_0.13-2_0.36-3_0.03\", \"852_l_1_c_0_1_2-0_1.06-1_0.07-2_0.94-3_0.2\", \"853_l_1_c_0_1_3-0_1.51-1_0.13-2_0.99-3_0.51\", \"854_l_1_c_0_2_3-0_0.38-1_1.16-2_0.56-3_0.29\", \"855_l_1_c_0_1_2-0_0.53-1_0.05-2_0.38-3_0.8\", \"856_l_1_c_0_1_3-0_0.38-1_0.27-2_1.44-3_0.03\", \"857_l_1_c_0_2_3-0_0.11-1_0.65-2_0.2-3_0.47\", \"858_l_1_c_0_1_2-0_0.47-1_0.97-2_0.49-3_0.53\", \"859_l_1_c_0_1_3-0_0.89-1_0.57-2_0.07-3_0.05\", \"860_l_1_c_0_2_3-0_0.05-1_0.16-2_0.55-3_0.21\", \"861_l_1_c_0_1_2-0_0.38-1_1.12-2_0.13-3_1.38\", \"862_l_1_c_0_1_3-0_0.57-1_0.05-2_0.32-3_0.05\", \"863_l_1_c_0_2_3-0_0.07-1_0.65-2_0.07-3_0.8\", \"864_l_1_c_0_1_2-0_0.04-1_0.28-2_0.06-3_0.15\", \"865_l_1_c_0_1_3-0_0.92-1_0.1-2_1.11-3_0.38\", \"866_l_1_c_0_2_3-0_0.43-1_0.72-2_1.03-3_0.27\", \"867_l_1_c_0_1_2-0_0.06-1_0.73-2_0.06-3_0.66\", \"868_l_1_c_0_1_3-0_0.12-1_0.82-2_0.63-3_0.31\", \"869_l_1_c_0_2_3-0_0.36-1_1.04-2_0.37-3_0.66\", \"870_l_1_c_0-0_0.03-1_0.33-2_0.46-3_0.62\", \"871_l_1_c_0-0_0.09-1_0.63-2_1.16-3_0.45\", \"872_l_1_c_0-0_0.37-1_0.57-2_0.17-3_1.43\", \"873_l_1_c_0-0_1.19-1_0.53-2_0.32-3_0.46\", \"874_l_1_c_0-0_0.76-1_0.53-2_0.03-3_0.09\", \"875_l_1_c_0-0_0.29-1_1.33-2_0.1-3_0.3\", \"876_l_1_c_0-0_0.1-1_0.95-2_0.14-3_0.62\", \"877_l_1_c_0-0_0.36-1_0.37-2_0.97-3_0.06\", \"878_l_1_c_0-0_0.07-1_0.33-2_0.31-3_0.03\", \"879_l_1_c_0-0_0.9-1_0.6-2_0.03-3_1.68\", \"880_l_1_c_0-0_0.18-1_0.95-2_0.59-3_0.52\", \"881_l_1_c_0-0_0.05-1_0.57-2_1.29-3_0.95\", \"882_l_1_c_0-0_0.82-1_0.43-2_1.01-3_0.78\", \"883_l_1_c_0-0_0.42-1_1.29-2_0.89-3_0.32\", \"884_l_1_c_0-0_2.0-1_1.0-2_0.85-3_0.69\", \"885_l_1_c_0-0_1.55-1_0.63-2_0.76-3_0.87\", \"886_l_1_c_0-0_0.31-1_0.91-2_0.47-3_0.23\", \"887_l_1_c_0-0_0.13-1_0.5-2_1.0-3_0.3\", \"888_l_1_c_0-0_0.03-1_0.56-2_1.39-3_1.5\", \"889_l_1_r-0_1.79-1_1.04-2_2.31-3_1.12\", \"890_l_1_r-0_0.48-1_0.22-2_1.16-3_0.42\", \"891_l_1_r-0_0.52-1_1.45-2_0.4-3_1.57\", \"892_l_1_r-0_1.43-1_0.9-2_0.12-3_0.96\", \"893_l_1_r-0_1.01-1_0.45-2_0.75-3_0.54\", \"894_l_1_r-0_0.11-1_1.13-2_0.63-3_1.41\", \"895_l_1_r-0_0.15-1_1.15-2_0.8-3_0.62\", \"896_l_1_r-0_0.48-1_0.01-2_0.18-3_0.65\", \"897_l_1_r-0_0.35-1_0.6-2_0.27-3_0.81\", \"898_l_1_r-0_1.97-1_0.74-2_0.72-3_0.92\", \"899_l_1_r-0_0.14-1_0.89-2_0.12-3_0.34\", \"900_l_1_r-0_0.13-1_0.88-2_0.32-3_0.81\", \"901_l_1_r-0_0.64-1_2.15-2_0.13-3_1.61\", \"902_l_1_r-0_0.63-1_0.27-2_0.33-3_0.48\", \"903_l_1_r-0_0.19-1_0.54-2_0.64-3_0.69\", \"904_l_1_r-0_0.33-1_0.01-2_0.16-3_0.36\", \"905_l_1_r-0_1.22-1_0.76-2_0.4-3_0.59\", \"906_l_1_r-0_1.22-1_0.04-2_1.8-3_0.57\", \"907_l_1_r-0_0.25-1_0.66-2_1.52-3_0.47\", \"908_l_1_r-0_0.21-1_0.34-2_0.01-3_1.16\", \"909_l_1_r-0_0.75-1_2.12-2_0.53-3_1.03\", \"910_l_1_r-0_1.44-1_0.64-2_1.38-3_0.05\", \"911_l_1_r-0_0.47-1_1.33-2_0.07-3_1.21\", \"912_l_1_r-0_0.06-1_0.54-2_1.27-3_0.12\", \"913_l_1_r-0_2.01-1_0.78-2_1.94-3_0.36\", \"914_l_1_r-0_0.22-1_0.38-2_1.33-3_0.27\", \"915_l_1_r-0_2.23-1_0.92-2_0.71-3_0.12\", \"916_l_1_r-0_0.08-1_1.36-2_0.44-3_0.55\", \"917_l_1_r-0_0.09-1_0.15-2_0.19-3_0.45\", \"918_l_1_r-0_2.43-1_0.47-2_1.1-3_0.35\", \"919_l_1_r-0_1.02-1_0.45-2_0.72-3_1.48\", \"920_l_1_r-0_0.73-1_0.84-2_1.02-3_0.29\", \"921_l_1_r-0_0.08-1_1.02-2_0.62-3_0.65\", \"922_l_1_r-0_0.74-1_0.64-2_0.12-3_0.12\", \"923_l_1_r-0_1.13-1_0.11-2_0.8-3_0.32\", \"924_l_1_r-0_0.25-1_1.33-2_0.02-3_0.23\", \"925_l_1_r-0_1.11-1_0.04-2_1.78-3_0.77\", \"926_l_1_r-0_1.35-1_0.1-2_0.48-3_1.26\", \"927_l_1_r-0_0.36-1_0.17-2_0.89-3_2.13\", \"928_l_1_r-0_0.96-1_0.31-2_1.53-3_0.81\", \"929_l_1_r-0_0.3-1_0.37-2_1.39-3_0.23\", \"930_l_1_r-0_0.45-1_0.26-2_0.87-3_0.03\", \"931_l_1_r-0_0.16-1_0.18-2_0.87-3_0.51\", \"932_l_1_r-0_0.21-1_0.21-2_2.18-3_0.53\", \"933_l_1_r-0_0.43-1_2.25-2_1.26-3_0.15\", \"934_l_1_r-0_1.5-1_0.25-2_0.97-3_0.37\", \"935_l_1_r-0_0.47-1_2.16-2_0.63-3_0.82\", \"936_l_1_r-0_0.93-1_0.16-2_0.44-3_1.47\", \"937_l_1_r-0_0.05-1_1.74-2_0.93-3_0.87\", \"938_l_1_r-0_0.29-1_1.08-2_0.0-3_0.99\", \"939_l_1_r-0_0.01-1_0.77-2_0.21-3_0.61\", \"940_l_1_r-0_0.45-1_0.28-2_0.63-3_0.67\", \"941_l_1_r-0_0.41-1_0.33-2_0.37-3_1.01\", \"942_l_1_r-0_0.4-1_0.93-2_0.7-3_1.77\", \"943_l_1_r-0_2.44-1_0.81-2_0.38-3_0.46\", \"944_l_1_r-0_1.82-1_0.75-2_1.24-3_0.04\", \"945_l_1_r-0_0.52-1_0.26-2_0.21-3_0.69\", \"946_l_1_r-0_0.13-1_0.29-2_0.53-3_0.75\", \"947_l_1_r-0_1.02-1_2.23-2_1.29-3_0.15\", \"948_l_1_r-0_0.07-1_1.36-2_0.36-3_1.46\", \"949_l_1_r-0_2.1-1_1.46-2_1.33-3_0.9\", \"950_l_1_r-0_0.08-1_0.68-2_1.98-3_0.33\", \"951_l_1_r-0_0.5-1_0.06-2_1.56-3_0.08\", \"952_l_1_r-0_0.35-1_1.08-2_0.1-3_0.54\", \"953_l_1_r-0_0.35-1_1.03-2_0.61-3_0.27\", \"954_l_1_r-0_1.67-1_1.02-2_0.04-3_0.6\", \"955_l_1_r-0_0.31-1_0.41-2_0.23-3_0.29\", \"956_l_1_r-0_1.41-1_1.27-2_0.98-3_0.6\", \"957_l_1_r-0_0.02-1_0.5-2_0.99-3_0.71\", \"958_l_1_r-0_0.19-1_0.61-2_0.69-3_0.58\", \"959_l_1_r-0_0.32-1_0.88-2_0.57-3_0.76\", \"960_l_1_r-0_0.67-1_0.98-2_0.26-3_0.41\", \"961_l_1_r-0_0.77-1_0.91-2_0.08-3_1.57\", \"962_l_1_r-0_2.06-1_0.03-2_0.25-3_0.96\", \"963_l_1_r-0_0.12-1_0.95-2_1.74-3_0.99\", \"964_l_1_r-0_1.31-1_0.68-2_1.61-3_1.27\", \"965_l_1_r-0_1.59-1_0.81-2_0.98-3_0.51\", \"966_l_1_r-0_0.07-1_1.87-2_1.96-3_0.74\", \"967_l_1_r-0_0.83-1_0.18-2_1.52-3_0.83\", \"968_l_1_r-0_0.75-1_0.08-2_0.76-3_0.21\", \"969_l_1_r-0_0.82-1_0.65-2_0.11-3_1.92\", \"970_l_1_r-0_0.67-1_0.22-2_1.48-3_0.74\", \"971_l_1_r-0_1.31-1_0.79-2_2.08-3_0.71\", \"972_l_1_r-0_0.83-1_1.5-2_0.69-3_0.76\", \"973_l_1_r-0_0.85-1_0.68-2_0.5-3_0.88\", \"974_l_1_r-0_0.72-1_1.06-2_0.31-3_1.36\", \"975_l_1_r-0_0.62-1_0.83-2_1.62-3_0.53\", \"976_l_1_r-0_0.01-1_0.75-2_0.23-3_0.48\", \"977_l_1_r-0_0.96-1_0.08-2_0.27-3_0.35\", \"978_l_1_r-0_0.94-1_0.44-2_0.77-3_0.76\", \"979_l_1_r-0_1.19-1_1.42-2_0.96-3_0.43\", \"980_l_1_r-0_0.05-1_1.82-2_0.04-3_0.09\", \"981_l_1_r-0_0.87-1_0.81-2_1.63-3_0.1\", \"982_l_1_r-0_0.44-1_0.69-2_0.02-3_0.32\", \"983_l_1_r-0_1.11-1_0.62-2_0.31-3_0.41\", \"984_l_1_r-0_1.52-1_0.22-2_0.9-3_1.07\", \"985_l_1_r-0_0.24-1_0.12-2_1.07-3_0.32\", \"986_l_1_r-0_0.38-1_0.56-2_1.33-3_0.41\", \"987_l_1_r-0_1.43-1_2.07-2_1.09-3_0.59\", \"988_l_1_r-0_0.41-1_0.8-2_2.08-3_1.3\", \"989_l_1_r-0_0.25-1_0.46-2_1.33-3_1.29\", \"990_l_1_r-0_0.54-1_1.09-2_0.05-3_0.26\", \"991_l_1_r-0_0.53-1_0.53-2_1.18-3_2.26\", \"992_l_1_r-0_0.03-1_1.39-2_0.7-3_0.58\", \"993_l_1_r-0_0.01-1_1.3-2_0.54-3_0.56\", \"994_l_1_r-0_0.85-1_0.24-2_0.77-3_1.77\", \"995_l_1_r-0_1.54-1_0.04-2_1.13-3_0.78\", \"996_l_1_r-0_0.97-1_0.61-2_0.25-3_0.65\", \"997_l_1_r-0_0.53-1_0.17-2_0.56-3_0.62\", \"998_l_1_r-0_1.47-1_0.14-2_0.31-3_1.22\", \"999_l_1_r-0_0.33-1_0.23-2_0.31-3_0.99\", \"1000_l_1_r-0_0.91-1_0.63-2_1.11-3_0.75\", \"1001_l_1_r-0_0.09-1_0.46-2_0.79-3_0.02\", \"1002_l_1_r-0_0.14-1_0.82-2_0.0-3_0.53\", \"1003_l_1_r-0_1.1-1_0.37-2_0.35-3_0.02\", \"1004_l_1_r-0_0.66-1_0.24-2_0.81-3_1.06\", \"1005_l_1_r-0_0.84-1_0.74-2_0.37-3_0.42\", \"1006_l_1_r-0_0.59-1_1.11-2_0.54-3_1.07\", \"1007_l_1_r-0_1.36-1_1.25-2_0.15-3_0.01\", \"1008_l_1_r-0_0.56-1_0.01-2_0.52-3_0.14\", \"1009_l_1_r-0_0.09-1_0.78-2_1.1-3_0.8\", \"1010_l_1_r-0_1.51-1_1.16-2_0.52-3_0.29\", \"1011_l_1_r-0_0.55-1_1.54-2_0.32-3_0.2\", \"1012_l_1_r-0_1.27-1_0.69-2_0.54-3_0.3\", \"1013_l_1_r-0_1.35-1_0.52-2_0.65-3_1.54\", \"1014_l_1_r-0_0.87-1_0.97-2_0.72-3_0.77\", \"1015_l_1_r-0_2.2-1_0.59-2_0.64-3_0.01\", \"1016_l_1_r-0_0.16-1_0.16-2_0.23-3_0.72\", \"1017_l_1_r-0_0.4-1_0.71-2_0.15-3_0.08\", \"1018_l_1_r-0_0.02-1_1.12-2_0.18-3_0.63\", \"1019_l_1_r-0_0.12-1_0.89-2_0.64-3_0.61\", \"1020_l_1_r-0_1.03-1_0.18-2_0.25-3_0.11\", \"1021_l_1_r-0_0.13-1_0.73-2_0.24-3_0.35\", \"1022_l_1_r-0_0.42-1_0.61-2_0.29-3_0.48\", \"1023_l_1_r-0_0.47-1_1.26-2_0.68-3_0.44\", \"1024_l_1_r-0_1.42-1_0.41-2_1.4-3_0.04\", \"1025_l_1_r-0_2.4-1_0.97-2_1.43-3_1.07\", \"1026_l_1_r-0_0.92-1_0.26-2_0.52-3_0.77\", \"1027_l_1_r-0_1.67-1_0.77-2_0.51-3_1.28\", \"1028_l_1_r-0_1.22-1_0.33-2_0.1-3_0.46\", \"1029_l_1_r-0_0.62-1_0.3-2_0.33-3_0.58\", \"1030_l_1_r-0_1.07-1_0.67-2_1.03-3_0.74\", \"1031_l_1_r-0_0.45-1_0.93-2_1.29-3_1.13\", \"1032_l_1_r-0_0.27-1_0.19-2_0.87-3_1.24\", \"1033_l_1_r-0_0.97-1_0.51-2_0.08-3_0.54\", \"1034_l_1_r-0_1.2-1_0.23-2_0.71-3_0.69\", \"1035_l_1_r-0_1.97-1_1.42-2_0.96-3_0.34\", \"1036_l_1_r-0_0.37-1_1.93-2_1.01-3_1.29\", \"1037_l_1_r-0_0.12-1_1.07-2_0.06-3_0.68\", \"1038_l_1_r-0_1.24-1_1.07-2_1.54-3_0.04\", \"1039_l_1_r-0_0.49-1_0.46-2_0.42-3_1.48\", \"1040_l_1_r-0_0.24-1_0.89-2_0.73-3_0.42\", \"1041_l_1_r-0_1.39-1_1.99-2_0.7-3_1.71\", \"1042_l_1_r-0_0.59-1_0.68-2_0.48-3_0.75\", \"1043_l_1_r-0_0.24-1_0.39-2_0.52-3_1.52\", \"1044_l_1_r-0_0.89-1_0.12-2_0.84-3_0.2\", \"1045_l_1_r-0_0.13-1_0.26-2_1.11-3_0.51\", \"1046_l_1_r-0_0.5-1_0.29-2_0.14-3_1.05\", \"1047_l_1_r-0_0.35-1_0.93-2_0.12-3_0.03\", \"1048_l_1_r-0_1.73-1_0.15-2_1.15-3_1.1\", \"1049_l_1_r-0_2.03-1_0.44-2_1.14-3_0.14\", \"1050_l_1_r-0_0.4-1_1.21-2_0.99-3_0.83\", \"1051_l_1_r-0_0.38-1_0.01-2_0.12-3_0.49\", \"1052_l_1_r-0_0.22-1_0.94-2_0.48-3_0.62\", \"1053_l_1_r-0_0.37-1_0.02-2_1.04-3_0.79\", \"1054_l_1_r-0_0.15-1_1.31-2_1.87-3_0.79\", \"1055_l_1_r-0_0.56-1_0.62-2_0.55-3_0.17\", \"1056_l_1_r-0_1.2-1_0.74-2_0.06-3_0.02\", \"1057_l_1_r-0_0.05-1_0.58-2_1.17-3_0.79\", \"1058_l_1_r-0_0.6-1_1.48-2_1.64-3_0.89\", \"1059_l_1_r-0_1.08-1_0.19-2_1.27-3_0.42\", \"1060_l_1_r-0_1.03-1_0.25-2_0.69-3_0.8\", \"1061_l_1_r-0_0.07-1_0.97-2_0.35-3_0.07\", \"1062_l_1_r-0_0.93-1_0.53-2_0.74-3_0.33\", \"1063_l_1_r-0_0.49-1_0.4-2_0.26-3_0.63\", \"1064_l_1_r-0_0.72-1_1.16-2_0.56-3_0.77\", \"1065_l_1_r-0_0.88-1_0.19-2_0.39-3_0.98\", \"1066_l_1_r-0_2.57-1_0.14-2_1.09-3_0.25\", \"1067_l_1_r-0_0.63-1_0.47-2_1.06-3_0.19\", \"1068_l_1_r-0_0.37-1_0.32-2_0.01-3_1.13\", \"1069_l_1_r-0_0.09-1_1.22-2_1.22-3_0.76\", \"1070_l_1_r-0_0.35-1_1.21-2_1.48-3_0.55\", \"1071_l_1_r-0_0.88-1_0.14-2_1.47-3_1.13\", \"1072_l_1_r-0_3.07-1_0.16-2_0.47-3_0.15\", \"1073_l_1_r-0_0.5-1_1.1-2_0.23-3_0.29\", \"1074_l_1_r-0_0.77-1_0.51-2_0.53-3_0.17\", \"1075_l_1_r-0_1.08-1_0.32-2_1.23-3_1.5\", \"1076_l_1_r-0_0.33-1_0.55-2_0.58-3_0.67\", \"1077_l_1_r-0_0.16-1_0.8-2_1.67-3_0.91\", \"1078_l_1_r-0_2.15-1_1.31-2_0.36-3_0.51\", \"1079_l_1_r-0_0.3-1_0.61-2_1.06-3_0.34\", \"1080_l_1_r-0_1.72-1_0.33-2_0.23-3_1.05\", \"1081_l_1_r-0_0.12-1_1.41-2_0.67-3_0.1\", \"1082_l_1_r-0_0.57-1_1.19-2_0.33-3_0.41\", \"1083_l_1_r-0_0.65-1_1.06-2_0.2-3_0.85\", \"1084_l_1_r-0_0.18-1_2.04-2_0.08-3_0.86\", \"1085_l_1_r-0_0.79-1_0.35-2_0.49-3_1.17\", \"1086_l_1_r-0_0.28-1_0.1-2_1.0-3_1.26\", \"1087_l_1_r-0_0.63-1_0.44-2_1.52-3_0.92\", \"1088_l_1_r-0_1.15-1_0.63-2_0.29-3_0.71\", \"1089_l_1_r-0_1.52-1_0.7-2_0.8-3_0.05\", \"1090_l_1_r-0_0.02-1_0.89-2_0.82-3_1.08\", \"1091_l_1_r-0_0.55-1_1.35-2_0.89-3_0.68\", \"1092_l_1_r-0_0.39-1_1.82-2_0.98-3_0.48\", \"1093_l_1_r-0_1.37-1_0.38-2_0.74-3_0.14\", \"1094_l_1_r-0_2.07-1_0.92-2_2.11-3_0.23\", \"1095_l_1_r-0_0.54-1_0.61-2_0.96-3_0.4\", \"1096_l_1_r-0_1.42-1_0.71-2_0.64-3_0.47\", \"1097_l_1_r-0_0.58-1_1.12-2_1.37-3_0.45\", \"1098_l_1_r-0_0.32-1_1.12-2_1.53-3_0.26\", \"1099_l_1_r-0_0.76-1_0.04-2_0.93-3_0.13\", \"1100_l_1_r-0_0.62-1_1.51-2_0.97-3_0.42\", \"1101_l_1_r-0_0.8-1_0.46-2_1.69-3_0.44\", \"1102_l_1_r-0_1.53-1_0.18-2_0.7-3_1.13\", \"1103_l_1_r-0_0.1-1_0.49-2_1.1-3_1.03\", \"1104_l_1_r-0_0.78-1_1.05-2_0.4-3_0.49\", \"1105_l_1_r-0_0.23-1_0.08-2_1.02-3_1.41\", \"1106_l_1_r-0_0.44-1_0.17-2_1.13-3_1.1\", \"1107_l_1_r-0_2.27-1_0.68-2_0.25-3_0.63\", \"1108_l_1_r-0_1.38-1_1.29-2_0.27-3_0.21\", \"1109_l_1_r-0_1.06-1_0.76-2_0.46-3_0.34\", \"1110_l_1_r-0_1.35-1_1.23-2_1.32-3_0.41\", \"1111_l_1_r-0_0.35-1_0.75-2_1.02-3_0.88\", \"1112_l_1_r-0_1.81-1_1.09-2_1.59-3_0.01\", \"1113_l_1_r-0_0.78-1_1.01-2_0.02-3_0.22\", \"1114_l_1_r-0_0.69-1_0.87-2_0.12-3_0.27\", \"1115_l_1_r-0_0.08-1_1.37-2_0.67-3_0.84\", \"1116_l_1_r-0_1.14-1_0.02-2_0.13-3_0.6\", \"1117_l_1_r-0_0.16-1_0.69-2_0.71-3_0.58\", \"1118_l_1_r-0_0.96-1_1.0-2_1.09-3_0.05\", \"1119_l_1_r-0_0.45-1_0.57-2_0.54-3_0.09\", \"1120_l_1_r-0_0.58-1_0.11-2_0.19-3_0.87\", \"1121_l_1_r-0_0.03-1_0.36-2_0.19-3_0.83\", \"1122_l_1_r-0_0.65-1_1.66-2_2.2-3_0.0\", \"1123_l_1_r-0_0.26-1_1.26-2_0.87-3_0.76\", \"1124_l_1_r-0_1.5-1_0.77-2_0.99-3_0.94\", \"1125_l_1_r-0_0.88-1_0.39-2_0.33-3_0.2\", \"1126_l_1_r-0_0.37-1_1.21-2_0.51-3_0.66\", \"1127_l_1_r-0_0.88-1_0.71-2_1.07-3_0.79\", \"1128_l_1_r-0_0.71-1_0.52-2_0.76-3_0.33\", \"1129_l_1_r-0_0.89-1_1.92-2_0.02-3_0.76\", \"1130_l_1_r-0_0.22-1_0.32-2_0.3-3_0.57\", \"1131_l_1_r-0_0.95-1_0.82-2_0.21-3_0.59\", \"1132_l_1_r-0_0.45-1_1.11-2_0.19-3_0.1\", \"1133_l_1_r-0_0.95-1_0.78-2_0.38-3_0.13\", \"1134_l_1_r-0_0.21-1_1.09-2_0.01-3_0.32\", \"1135_l_1_r-0_0.84-1_0.91-2_0.06-3_0.77\", \"1136_l_1_r-0_0.37-1_0.54-2_0.01-3_1.35\", \"1137_l_1_r-0_1.2-1_1.74-2_0.79-3_0.25\", \"1138_l_1_r-0_1.66-1_1.03-2_0.1-3_1.05\", \"1139_l_1_r-0_1.41-1_1.11-2_0.44-3_0.4\", \"1140_l_1_r-0_0.29-1_1.39-2_0.02-3_0.55\", \"1141_l_1_r-0_0.44-1_1.02-2_0.31-3_1.31\", \"1142_l_1_r-0_2.17-1_1.81-2_0.83-3_0.51\", \"1143_l_1_r-0_0.26-1_0.56-2_0.95-3_0.22\", \"1144_l_1_r-0_1.16-1_0.32-2_1.22-3_0.74\", \"1145_l_1_r-0_0.65-1_0.45-2_0.56-3_0.92\", \"1146_l_1_r-0_0.04-1_1.22-2_0.79-3_0.66\", \"1147_l_1_r-0_1.26-1_0.53-2_0.07-3_1.74\", \"1148_l_1_r-0_1.1-1_0.06-2_0.93-3_2.17\", \"1149_l_1_r-0_0.98-1_0.36-2_1.33-3_0.14\", \"1150_l_1_r-0_1.8-1_0.65-2_1.19-3_0.92\", \"1151_l_1_r-0_0.52-1_0.73-2_0.16-3_0.18\", \"1152_l_1_r-0_1.06-1_0.87-2_0.82-3_0.13\", \"1153_l_1_r-0_0.81-1_0.26-2_0.85-3_0.71\", \"1154_l_1_r-0_2.15-1_0.86-2_0.38-3_0.28\", \"1155_l_1_r-0_0.28-1_0.79-2_0.03-3_0.3\", \"1156_l_1_r-0_2.02-1_0.19-2_1.96-3_0.37\", \"1157_l_1_r-0_1.05-1_0.67-2_0.38-3_1.43\", \"1158_l_1_r-0_0.7-1_0.37-2_0.89-3_0.95\", \"1159_l_1_r-0_2.01-1_0.14-2_0.03-3_0.34\", \"1160_l_1_r-0_0.64-1_0.35-2_0.77-3_0.69\", \"1161_l_1_r-0_1.26-1_1.74-2_0.46-3_0.56\", \"1162_l_1_r-0_1.23-1_0.62-2_0.34-3_0.63\", \"1163_l_1_r-0_0.5-1_1.21-2_1.02-3_0.29\", \"1164_l_1_r-0_1.39-1_0.34-2_1.01-3_0.63\", \"1165_l_1_r-0_0.6-1_0.86-2_0.27-3_0.51\", \"1166_l_1_r-0_1.05-1_1.13-2_0.9-3_1.63\", \"1167_l_1_r-0_0.22-1_0.94-2_1.08-3_0.41\", \"1168_l_1_r-0_0.4-1_1.6-2_0.87-3_0.97\", \"1169_l_1_r-0_0.42-1_0.72-2_0.94-3_0.98\", \"1170_l_1_r-0_0.89-1_2.19-2_0.72-3_1.62\", \"1171_l_1_r-0_0.23-1_0.57-2_0.6-3_0.52\", \"1172_l_1_r-0_0.78-1_1.55-2_0.34-3_0.43\", \"1173_l_1_r-0_0.13-1_0.15-2_0.46-3_0.11\", \"1174_l_1_r-0_0.35-1_0.11-2_0.77-3_1.18\", \"1175_l_1_r-0_0.16-1_1.01-2_1.24-3_0.34\", \"1176_l_1_r-0_1.24-1_0.3-2_0.67-3_0.73\", \"1177_l_1_r-0_0.92-1_0.89-2_1.07-3_0.28\", \"1178_l_1_r-0_0.71-1_0.05-2_1.05-3_1.15\", \"1179_l_1_r-0_0.3-1_0.14-2_0.14-3_0.49\", \"1180_l_1_r-0_1.08-1_0.86-2_0.57-3_0.85\", \"1181_l_1_r-0_0.45-1_0.28-2_0.58-3_0.27\", \"1182_l_1_r-0_1.13-1_1.5-2_0.79-3_0.54\", \"1183_l_1_r-0_1.91-1_0.88-2_0.99-3_0.84\", \"1184_l_1_r-0_1.44-1_1.06-2_1.31-3_0.66\", \"1185_l_1_r-0_0.1-1_0.4-2_1.39-3_0.96\", \"1186_l_1_r-0_0.5-1_0.15-2_1.29-3_1.07\", \"1187_l_1_r-0_0.33-1_0.02-2_1.04-3_0.7\", \"1188_l_1_r-0_0.81-1_1.33-2_0.13-3_1.6\", \"1189_l_1_r-0_0.59-1_0.32-2_1.39-3_0.24\", \"1190_l_1_r-0_0.65-1_1.79-2_0.4-3_0.57\", \"1191_l_1_r-0_1.22-1_1.18-2_0.51-3_0.58\", \"1192_l_1_r-0_0.72-1_1.14-2_0.33-3_1.25\", \"1193_l_1_r-0_0.03-1_1.58-2_0.1-3_0.3\", \"1194_l_1_r-0_0.2-1_0.4-2_0.26-3_1.03\", \"1195_l_1_r-0_1.79-1_0.59-2_0.52-3_1.34\", \"1196_l_1_r-0_1.67-1_1.46-2_0.53-3_0.16\", \"1197_l_1_r-0_0.02-1_0.94-2_0.76-3_0.87\", \"1198_l_1_r-0_1.07-1_0.57-2_0.64-3_0.16\", \"1199_l_1_r-0_1.07-1_0.58-2_0.81-3_0.58\", \"1200_l_1_r-0_0.26-1_0.63-2_0.14-3_0.72\", \"1201_l_1_r-0_0.08-1_0.26-2_0.5-3_0.31\", \"1202_l_1_r-0_0.93-1_0.49-2_0.13-3_0.44\", \"1203_l_1_r-0_0.21-1_0.58-2_0.61-3_0.41\", \"1204_l_1_r-0_3.37-1_1.09-2_0.92-3_0.33\", \"1205_l_1_r-0_0.54-1_0.49-2_0.96-3_0.15\", \"1206_l_1_r-0_0.23-1_0.67-2_0.87-3_0.6\", \"1207_l_1_r-0_0.3-1_0.43-2_1.25-3_0.36\", \"1208_l_1_r-0_0.66-1_3.19-2_0.32-3_0.7\", \"1209_l_1_r-0_0.62-1_0.35-2_1.96-3_1.1\", \"1210_l_1_r-0_0.55-1_0.67-2_0.89-3_0.23\", \"1211_l_1_r-0_0.15-1_0.85-2_0.24-3_0.77\", \"1212_l_1_r-0_1.56-1_0.06-2_0.14-3_0.84\", \"1213_l_1_r-0_0.09-1_0.15-2_0.25-3_0.08\", \"1214_l_1_r-0_1.04-1_0.21-2_1.19-3_0.35\", \"1215_l_1_r-0_1.84-1_0.23-2_0.66-3_0.07\", \"1216_l_1_r-0_0.62-1_0.92-2_0.94-3_0.13\", \"1217_l_1_r-0_0.87-1_1.11-2_0.82-3_0.79\", \"1218_l_1_r-0_0.39-1_0.52-2_2.21-3_0.76\", \"1219_l_1_r-0_0.03-1_1.26-2_1.07-3_1.47\", \"1220_l_1_r-0_0.61-1_0.72-2_0.17-3_0.32\", \"1221_l_1_r-0_0.55-1_2.66-2_0.83-3_0.56\", \"1222_l_1_r-0_0.28-1_0.8-2_0.09-3_0.78\", \"1223_l_1_r-0_1.24-1_2.37-2_0.57-3_1.27\", \"1224_l_1_r-0_1.13-1_0.21-2_0.41-3_0.85\", \"1225_l_1_r-0_1.09-1_0.5-2_0.66-3_0.28\", \"1226_l_1_r-0_0.38-1_2.06-2_0.74-3_0.57\", \"1227_l_1_r-0_0.14-1_2.43-2_0.52-3_0.08\", \"1228_l_1_r-0_0.86-1_0.59-2_0.49-3_0.77\", \"1229_l_1_r-0_1.0-1_0.81-2_0.4-3_1.15\", \"1230_l_1_r-0_0.76-1_0.8-2_0.85-3_1.08\", \"1231_l_1_r-0_0.46-1_1.36-2_0.74-3_0.92\", \"1232_l_1_r-0_2.26-1_0.84-2_1.92-3_0.27\", \"1233_l_1_r-0_0.85-1_0.32-2_0.92-3_0.04\", \"1234_l_1_r-0_2.44-1_0.04-2_1.19-3_1.09\", \"1235_l_1_r-0_0.74-1_1.17-2_0.87-3_0.64\", \"1236_l_1_r-0_0.26-1_0.66-2_1.05-3_1.27\", \"1237_l_1_r-0_0.46-1_0.11-2_0.07-3_0.55\", \"1238_l_1_r-0_0.48-1_1.06-2_1.14-3_0.8\", \"1239_l_1_r-0_0.42-1_0.72-2_0.37-3_0.39\", \"1240_l_1_r-0_0.11-1_0.78-2_0.95-3_1.31\", \"1241_l_1_r-0_0.55-1_0.68-2_0.79-3_0.76\", \"1242_l_1_r-0_0.86-1_1.35-2_0.41-3_0.77\", \"1243_l_1_r-0_0.5-1_0.64-2_1.26-3_0.66\", \"1244_l_1_r-0_0.77-1_0.26-2_0.67-3_0.36\", \"1245_l_1_r-0_0.96-1_0.19-2_0.67-3_0.23\", \"1246_l_1_r-0_0.56-1_0.77-2_0.75-3_0.6\", \"1247_l_1_r-0_0.16-1_1.24-2_0.36-3_0.18\", \"1248_l_1_r-0_0.86-1_0.96-2_0.26-3_1.11\", \"1249_l_1_r-0_0.87-1_0.95-2_0.12-3_0.57\", \"1250_l_1_r-0_0.09-1_0.65-2_0.02-3_0.35\", \"1251_l_1_r-0_0.61-1_0.67-2_0.82-3_1.11\", \"1252_l_1_r-0_0.02-1_0.57-2_0.98-3_0.38\", \"1253_l_1_r-0_1.01-1_1.57-2_0.23-3_0.84\", \"1254_l_1_r-0_0.35-1_0.44-2_0.07-3_0.57\", \"1255_l_1_r-0_0.48-1_1.12-2_0.15-3_0.45\", \"1256_l_1_r-0_2.08-1_0.68-2_1.8-3_0.04\", \"1257_l_1_r-0_0.23-1_1.07-2_1.35-3_0.53\", \"1258_l_1_r-0_0.1-1_0.53-2_0.92-3_0.63\", \"1259_l_1_r-0_0.06-1_0.08-2_0.27-3_0.25\", \"1260_l_1_r-0_2.61-1_0.85-2_0.85-3_0.98\", \"1261_l_1_r-0_1.38-1_0.35-2_1.36-3_0.2\", \"1262_l_1_r-0_0.79-1_1.81-2_0.47-3_0.67\", \"1263_l_1_r-0_0.46-1_0.59-2_1.55-3_0.58\", \"1264_l_1_r-0_0.46-1_0.85-2_0.08-3_0.02\", \"1265_l_1_r-0_1.02-1_0.13-2_0.86-3_0.38\", \"1266_l_1_r-0_1.89-1_0.45-2_0.18-3_1.45\", \"1267_l_1_r-0_0.56-1_1.14-2_0.4-3_0.43\", \"1268_l_1_r-0_0.79-1_0.11-2_0.14-3_0.37\", \"1269_l_1_r-0_1.3-1_0.07-2_0.56-3_0.5\", \"1270_l_1_r-0_0.59-1_0.94-2_0.48-3_0.83\", \"1271_l_1_r-0_0.05-1_0.56-2_0.68-3_0.3\", \"1272_l_1_r-0_0.04-1_1.49-2_0.66-3_1.22\", \"1273_l_1_r-0_1.34-1_0.06-2_0.12-3_0.92\", \"1274_l_1_r-0_1.39-1_0.32-2_0.15-3_0.79\", \"1275_l_1_r-0_1.03-1_1.24-2_1.38-3_0.64\", \"1276_l_1_r-0_0.66-1_0.25-2_0.02-3_0.6\", \"1277_l_1_r-0_0.07-1_0.09-2_1.31-3_0.0\", \"1278_l_1_r-0_0.39-1_0.49-2_0.74-3_0.87\", \"1279_l_1_r-0_0.52-1_1.0-2_0.1-3_0.76\", \"1280_l_1_r-0_0.08-1_0.35-2_1.08-3_0.47\", \"1281_l_1_r-0_0.85-1_0.94-2_0.25-3_0.45\", \"1282_l_1_r-0_0.16-1_0.56-2_0.54-3_0.74\", \"1283_l_1_r-0_0.46-1_0.61-2_0.71-3_0.89\", \"1284_l_1_r-0_1.23-1_0.86-2_1.07-3_0.91\", \"1285_l_1_r-0_0.01-1_0.36-2_1.54-3_1.27\", \"1286_l_1_r-0_0.67-1_0.74-2_1.37-3_1.2\", \"1287_l_1_r-0_0.67-1_1.25-2_0.02-3_0.05\", \"1288_l_1_r-0_0.75-1_0.25-2_0.76-3_0.41\", \"1289_l_1_r-0_0.68-1_2.32-2_1.23-3_0.44\", \"1290_l_1_r-0_0.44-1_0.51-2_1.28-3_0.45\", \"1291_l_1_r-0_1.11-1_0.27-2_0.03-3_0.64\", \"1292_l_1_r-0_0.04-1_1.79-2_1.35-3_0.57\", \"1293_l_1_r-0_0.28-1_0.63-2_1.27-3_1.65\", \"1294_l_1_r-0_0.06-1_0.15-2_0.88-3_0.55\", \"1295_l_1_r-0_0.93-1_0.79-2_1.15-3_0.36\", \"1296_l_1_r-0_1.73-1_0.28-2_0.78-3_1.65\", \"1297_l_1_r-0_0.53-1_0.35-2_0.76-3_1.05\", \"1298_l_1_r-0_0.59-1_0.29-2_0.39-3_0.97\", \"1299_l_1_r-0_0.54-1_1.65-2_0.4-3_0.0\", \"1300_l_1_r-0_0.65-1_0.21-2_1.18-3_0.17\", \"1301_l_1_r-0_2.19-1_1.43-2_1.39-3_1.09\", \"1302_l_1_r-0_1.06-1_0.41-2_0.86-3_1.66\", \"1303_l_1_r-0_0.13-1_0.24-2_0.42-3_0.51\", \"1304_l_1_r-0_0.36-1_0.12-2_0.63-3_0.52\", \"1305_l_1_r-0_0.51-1_1.16-2_0.01-3_0.87\", \"1306_l_1_r-0_0.43-1_0.36-2_0.01-3_0.66\", \"1307_l_1_r-0_1.72-1_0.12-2_0.14-3_0.34\", \"1308_l_1_r-0_1.28-1_1.61-2_1.15-3_1.07\", \"1309_l_1_r-0_1.33-1_0.66-2_1.14-3_0.82\", \"1310_l_1_r-0_0.49-1_0.81-2_0.21-3_0.73\", \"1311_l_1_r-0_0.1-1_0.92-2_0.69-3_0.36\", \"1312_l_1_r-0_0.05-1_0.68-2_0.97-3_1.42\", \"1313_l_1_r-0_0.42-1_0.68-2_2.08-3_0.36\", \"1314_l_1_r-0_0.19-1_1.11-2_0.84-3_0.89\", \"1315_l_1_r-0_0.13-1_0.64-2_2.02-3_0.41\", \"1316_l_1_r-0_0.41-1_0.72-2_0.8-3_0.98\", \"1317_l_1_r-0_1.76-1_0.44-2_0.4-3_0.02\", \"1318_l_1_r-0_1.07-1_0.37-2_1.02-3_0.37\", \"1319_l_1_r-0_0.98-1_0.73-2_0.42-3_0.26\", \"1320_l_1_r-0_1.18-1_1.88-2_0.27-3_0.43\", \"1321_l_1_r-0_0.14-1_0.24-2_1.64-3_0.17\", \"1322_l_1_r-0_0.88-1_0.75-2_0.57-3_0.22\", \"1323_l_1_r-0_0.66-1_0.05-2_0.6-3_0.12\", \"1324_l_1_r-0_0.19-1_0.08-2_0.46-3_0.11\", \"1325_l_1_r-0_1.62-1_1.44-2_0.25-3_1.18\", \"1326_l_1_r-0_1.06-1_0.5-2_0.43-3_0.15\", \"1327_l_1_r-0_0.44-1_0.55-2_1.16-3_0.51\", \"1328_l_1_r-0_0.18-1_1.22-2_1.14-3_0.37\", \"1329_l_1_r-0_0.21-1_0.33-2_0.07-3_0.65\", \"1330_l_1_r-0_0.34-1_1.61-2_0.45-3_0.03\", \"1331_l_1_r-0_0.09-1_0.86-2_1.09-3_0.29\"], \"type\": \"scatter3d\", \"x\": [0.043407652380108575, -1.9671948289894436, -1.5099859638381872, 0.43883595973271095, 0.0838925474615877, -0.8327340174498526, 0.9132902944491308, -1.230272568443901, -1.2387605216747133, -0.9048058498659273, -0.9015664759916555, 0.3960242870127666, -1.6219972328438006, -1.48546564387384, 0.10348759311928069, -2.0073628774485015, -1.375492698670977, -0.4341749199301075, 0.7171669004317887, -0.806773480382875, -0.618897313959795, 1.0362667877252338, -0.13512118254725514, -2.3806724377770463, -0.7536171379717463, 0.2507957704837114, 0.4284069755907187, -1.6139788138358808, 0.1883516910327805, -0.03699365480311845, 0.9927352429997807, 0.7117429944593741, -1.7507644947498133, 0.8626984475637494, -2.4302080430267567, 0.15237643642677123, 0.7324233153084243, -1.6909255540800197, 0.503890845501326, 0.36834973304157903, 0.6051177299249937, 0.8073350204314365, -1.994532430254909, -0.46707837908662886, -2.4563884946819075, -0.7352849320941468, -2.0630288808304726, 0.14109672323276712, 1.4490314714073405, 0.15251820316662235, 0.9418682372986134, 0.0027321606457801906, -1.789875736151477, 0.9220470522552073, 0.028077260171167406, -2.8621680385235733, 0.7765564882332061, 0.2529362673696596, 1.6086835504822452, -0.5822834286014835, -1.2489979025818696, -3.8678697052715014, -1.2378923445628773, 0.03392194384532665, -1.832114084196129, -0.8217485611238108, -1.0541496489826963, -0.31682467720764507, -1.0380162423542807, 0.47456152598674284, 0.4844327464650142, 0.6649281761887751, 0.31482934428051457, -0.8724290285100368, 0.6233370810482817, 0.8630614792136093, -1.1114135230934454, 0.7014167173001133, -0.97607617083152, 0.4649391088848225, 0.04966968433780217, -1.3420937151954269, 0.36699279629104353, 0.932679288834052, 0.2845292378544828, -0.7113787678747221, 0.394617524169109, -1.5947051094151092, -0.13843998439317962, -1.1980541494753965, -0.6301587214481191, 0.6770831189889774, 0.5307631352239452, 0.5317857574048479, -0.704951645392096, 0.42964135226803113, 0.13501556219525135, 0.28465832957122905, -0.22888225561184594, 0.6486073838832087, 0.14042223527202569, 0.35551323965230774, -1.444008771025409, -2.0233327576819593, -0.7019294685762913, 0.7915563527264451, -0.9813473634763592, 0.589957418470408, -2.140044790266341, -0.10289009196885379, 0.20706274373560607, -2.8172507972807193, 0.3447307969385405, 0.3522323954510509, 0.4253974570065173, 0.14524433808644122, 0.10968486854149795, 0.5854257736333508, 0.666741557306272, -2.4670812749787467, 0.25603130938210183, -1.2268620069370146, -1.6083870523756856, 0.11448605419676117, 0.011750954744140563, 0.21909153820864713, -0.0006889447438979124, 0.16975173416508005, 0.061806202890054784, 1.0680243537239558, 0.3431794702175055, -2.202619871189399, 1.137677558600838, 0.11720273602346065, 2.091900866089721, -0.33658376228511744, 0.4079254594005213, 0.2757674186970076, -1.6611127375445458, -0.9296848206782143, -0.8217097885814046, -1.0461863812763283, -1.6917294096339819, 1.2426855508933432, -0.216283523017202, 0.1466910940834174, -2.712027719462821, -0.6741358070962161, -0.8043953088351214, 0.5151271215839583, 0.11241101479958293, -1.093049660040639, -1.514448625483276, 0.09097922355860599, 0.5981584058465566, 0.024644947305471288, -1.0051327240021244, 0.48819761409261786, -0.284510299618417, -0.7804147227356697, 0.15828220378914604, -1.5559678075509722, 1.239444568844804, -0.26911625006265505, -1.4225835222387984, 0.21840275230599415, -1.0698467014339124, -0.42505759012454036, -1.3115062610140629, 0.44907838577684456, -2.0009290177346726, -0.2391741460761686, 0.5307904513670674, -0.05146760046275134, 0.1601325344042337, -1.4830977257534614, -2.275596220748933, -0.8367904660368742, -1.4864538776264213, -2.021824145226848, 0.19042063392415698, -1.4159968030572119, -1.4081714086441721, 1.0978330736606563, 0.15149609064597436, -1.624814760805587, 0.07329711888846324, -2.4643454697892633, -1.1614091470894636, -0.44699369681466583, 0.2672559555026861, -2.201900898222681, -1.1345720450458656, 0.5663050779187058, -0.1581535690783239, -2.0433403048943863, 0.047451199543543376, -1.1113006562318697, 0.2829018851695151, -0.10865993654582051, -2.045183216663691, 0.7319780605297577, 0.8216856667083985, -2.647522466492889, -2.919004464532563, -0.6328625722970664, -0.5680530784947484, -0.5263729519030494, -1.8426779658036474, -1.329184068410309, -1.5203184391340305, -0.573255071845147, -1.1163429661576934, -0.6003820008678558, -1.6599022833228614, -0.5654050828832105, -0.42728572394615416, -2.623788425291966, -1.0024967476669624, -0.6801923828086476, -0.9050552968556692, -1.792338068689738, -2.057348734095615, -1.0444737505050279, -0.9039681787193953, -1.4452379965541022, -0.9018083479826776, -1.1938456403788, -2.506964386841621, -1.4058710279481648, -0.005440936440888722, -0.5967067204390033, -0.7403976965017587, -0.8877193190741568, -0.8752000259136721, -2.1452150732099717, -0.27286943647603523, -1.994899488629096, -0.014752045635599509, -1.427220768639909, -2.2138660961573327, -2.6239467879096354, -0.34221774717951725, -2.4473766921799456, -0.6435215645572441, -1.3267810626373633, -0.6042606261231444, -0.7791139507341077, -0.634327384279226, -1.0077542647355466, -1.3569043048025602, -0.14513238986938948, -0.5823553497909515, -0.6789232984900927, -0.8426634631356911, -1.0219869180167862, -0.7360668363942258, -1.668808615601634, -2.9167848780730985, -0.6953259956736082, -0.8397286623368516, -0.1730203042300016, -0.52385217784074, -0.5872822103623621, -2.8472786302473865, -0.8279898560980963, -0.20591163670005774, -2.247678576218962, -0.24743690334984547, -2.565969500635549, -0.15579399019182782, -2.7615520888966714, -3.1286773851562786, -1.1508582658135025, -0.437393347655596, -0.33285241705195145, -3.5827489445936496, -0.8057306951621087, -0.9071359709889747, -0.2618385725904254, -0.2892596774504538, -2.3281363028801003, -2.600324185148322, -1.4550976316362514, -0.6798597068269836, -0.06416670716900763, -2.4961990129748717, -1.3788788627276463, -3.3824478873133272, -0.4136726247323673, -1.2732119804684154, -0.5039644536830978, -0.611826431356057, -0.8793672777601822, -1.75328252970243, -0.9101196817842918, -1.7943460955216237, -0.9516640809728061, -0.6771652713815002, -1.3935359175391249, -1.8669035070984967, -0.2747138486681412, -0.07964512993142125, -1.332798998289484, -2.50601788278534, -0.8862143423706982, -1.5033095892923014, -2.661036723215137, -1.063736143098626, -1.5749513693165946, -0.9091916519052294, -1.1800513428625008, -0.43600681188188384, -2.5954184508169416, -1.8160199574579363, -1.0089179250817717, -0.6883858271477381, -1.909495158179338, -0.21665005469514342, -1.759856284028016, -1.0129147283425406, -2.070143451514113, -0.8039984296843765, -0.4579196024063018, -2.6110581187068496, -0.5299429959244235, -1.3928709454501327, -2.287458487999662, -0.2760729750186468, -1.1835050203604949, -0.6071676863213001, -1.71146089129715, -0.14294358342513236, -0.22877805744027757, -0.8702255547528799, -0.4553548842964792, -0.8189169911028195, -1.2988084248602856, -0.8992465113264346, -0.7419203871569273, -1.637831196851887, -1.247226854119412, -0.007599666816841211, -1.519724655892567, -2.070175706078789, -1.973247901640086, -1.695756252443856, -0.5152360973629022, -2.0548500843747863, -1.1690459254032777, -0.9280957155892119, -1.0337040407463702, -2.109486857591474, -0.8885531879113523, -2.244336364422675, -1.1227661278041823, -0.6122799183808774, -2.5913699897663163, -1.8815412502082902, -1.1001529878838439, -0.26113228451842896, -0.7683082860391954, -0.9077740357049693, -0.30374257664646165, -1.0081381542587002, -0.9300299417374476, -1.0706406842090566, -1.8711881377811417, -0.23123055747431598, -1.4233668214087405, -2.8733746649851253, -1.0660789675978206, -1.0681393298282154, -0.4634061843085584, -1.7212458879682901, -1.989566590039953, -0.6822907920219495, -0.3856976470624174, -2.510569201822024, -0.2626147873940041, -0.28912652010589335, -1.0964362369857175, -0.1510419975009768, -1.3824958564406522, -1.2071764078860547, -1.7270163822052327, -0.9411367218647463, -1.159879007023821, -1.819819044150349, -0.881862401640726, -2.1576100689853996, -0.5802785362384872, -1.475276645990367, -0.19489943793326414, -1.2554022533220932, -0.9689899286311026, -0.5695763088572874, -0.5296750898584415, -1.7136586131144778, -1.3463332028220947, -1.508389599300925, -0.46847472201179885, -2.4323203505291096, -1.2198997502382203, -2.1036664935709597, -0.14176067336157894, -1.451143130561535, -2.0082871765939894, -0.506717565035612, -0.3165676704483765, -0.5546533661799005, -0.803397830507644, -3.1352334498950665, -0.6095934358481181, -0.33472469477290223, -2.04831750338532, -2.0824058694353424, -1.0592400326385054, -2.0389304389893894, -1.9217104281514301, -1.3695838080012566, -0.8971869356907076, -0.629427810894652, -0.6997002273764161, -0.8890934879657146, -1.3539025908558084, -1.822341473249658, -0.5677607627563896, -1.7771737263302854, -0.6114404857958201, -0.7065114161691676, -2.2481162380925386, -1.1181193225848192, -1.4885818765676733, -1.5127435309723847, -0.46145002361411824, -1.5871297545723533, -0.4938347429765655, -1.0539423357557989, -1.7816088680939015, -0.17332275188125457, -2.013516682503136, -2.7410322571798202, -1.454578548608826, -2.106578030321785, -0.745323924425659, -1.1017956003028877, -2.8132942881576053, -0.8745324490808235, -1.373192369412494, -0.02472740748559854, -0.6916394692681167, -0.9977340509416425, -0.5687962543549369, -0.10833213604439185, -0.35645135947483264, -1.6620812023373353, -1.3139342096977051, -1.8256565260355098, -3.588468678195234, -2.479009120180268, -1.578326151171122, -0.8816539295771768, -1.9220244767129786, -1.9259326848347862, -2.967550573116047, -1.1069276102119667, -0.8655941165938386, -1.1469532206702866, -0.907086323038568, -0.539876547445828, -1.744638573646418, -1.033012489604136, -2.0116668493976695, -1.8246994147604187, -1.883534230234079, -2.657524104407605, -0.5622072660567297, -1.088020650179334, -1.0693429099202425, -2.677879722697867, -1.6489289788741264, -0.0641939694876581, -2.9870588107187923, -0.6536521968646334, -0.8223522107642158, -0.8743184399791952, -0.9862577121504781, -0.858311471794459, -0.7866163259986603, -0.8387691526627491, -1.954502302981767, -0.40274648036021343, -1.4762728609319862, -0.34801419121453014, -1.9238273509500314, -1.0904203899420029, -1.769135289905444, -0.3841698823575336, -1.2015689733323187, -5.063663783259412, -0.93791239723114, -2.3986887894101914, -3.024319512359533, -2.600141433844807, -0.5744611171309315, -2.435410146928395, -0.3800261193889469, -0.10873884761771468, -1.0144823891548214, -2.050588914362673, -1.0698464258291809, -2.1276823120977797, -0.13686986308651583, -1.3074998146964496, -1.4153317334450373, -1.5021496984444913, -1.47714048833505, -1.7597318510056226, -0.3979383113085947, -1.7487619908742584, -0.018571613276505805, -1.70691732466209, -0.32215231776305187, -1.79227177031084, -1.692540571367148, -1.1396951016510581, -1.7101887919343826, -3.323187591993899, -0.593828361551004, -1.7597300200105694, -1.2817229428160115, -1.0388285278353102, -0.8345635422114308, -2.121562364681953, -0.8992815427267062, -0.7247627658319691, -0.5817805302726484, -1.090294101116788, -0.8660486510529584, -0.6747756458818692, -0.43442308033080246, -3.9401019049479307, -0.49073145186309297, -2.944368481067239, -0.851447751386265, -0.7639271491217632, -1.5170379581711213, -2.6151818309598487, -0.6834958758303342, -0.9164004446195987, -2.6124950930461126, -0.5159391130092967, -1.2950656790017478, -0.7159214736740974, -2.9288134549414404, -0.7966896965013495, -2.5705225371406133, -0.21326186702261085, -0.5036838256891363, -2.0600156906589397, -2.4520673289078854, -0.5907647183588169, -2.576762614380665, -2.499697358261921, -2.5619739745608126, -0.8393204888803778, -1.927085077140892, -0.0404267242866615, -2.600464784362021, -1.0334547088737838, -1.3282060282372727, -1.2763815628695938, -0.7183742951447329, -2.582048995648954, -1.8490171876411083, -1.5392500863970935, -0.9332095772294283, -1.0345679039004323, -3.043308290219915, -0.7706489790514182, -1.544906440215364, -0.964761903107791, -2.0433709159710167, -1.556128150280585, -0.8765906820769739, -2.1804889595311723, -1.6285879863118047, -2.2844845459705976, -2.0291837354566153, -0.8911828216368983, -1.066953697605736, -0.5297073383890545, -0.4547894416678724, -0.849217650343516, -1.7445945501967592, -1.8104477354572945, -0.5947234074778693, -1.3418359812736844, -0.5866318841132871, -0.45410113554664777, -1.9471000767217097, -0.6373894173186463, -1.2131899755153723, -0.9419126844497167, -0.5642572683438085, -3.2025114553665714, -0.0629904797851234, -2.2283059164949135, -1.2413128496130834, -0.38942479310938694, -0.3914192003590171, -0.49209778703001883, -1.6398250456592864, -1.5483339089353287, -0.9395768588905699, -0.5553880000364044, -0.6102376662421598, -0.8570117690342225, -0.3558517427779849, -0.7386360007328625, -1.2534877491468897, -1.3961672785756811, -2.317775809299194, -1.3209565472141267, -0.4165609720217761, -1.8525254375953901, -0.6280773860645747, -1.7509921208061816, -0.7893305288015777, -1.4423372281329392, -0.34569479176951956, -1.876488600921048, -1.648642478408306, -0.38885404276148483, -1.4268990452269181, -0.4085672870492921, -1.0158073070586426, -0.4226522467997307, -1.1592043083511174, -1.5726955083229557, -1.7813476913113768, -1.6121749687529998, -0.8410551685755767, -0.8115275127862132, -2.706390050633451, -0.9937945733034681, -3.0607837647661333, -2.074756975022159, -0.7308237919982007, -1.7526391620164472, -1.8316529813851332, -0.36889625028567974, -0.7320748639013064, -2.019274181233999, -1.517366550766057, -1.3289054317343207, -0.44101802256152023, -0.08233319121755012, -1.4439234442598612, -1.0834842407247522, -3.1551040690790404, -2.073112996550323, -0.33332351434949503, -1.6056982862976716, -1.3299392695535448], \"y\": [-0.16355614236596594, -0.1309912668259503, -0.10098075532192108, 2.7293837383070327, 0.37299679597334046, -0.10783240739625044, 0.279102274541554, -0.14222002698412872, -0.8613866978154854, -0.4833014395611044, -0.3230547411297171, 2.1525276712272694, -0.4190042224638142, -0.1249079411980889, 1.1279905285416918, -0.0918454696208375, -0.12747218491107581, -1.215778787249978, 0.7605805379230839, -1.0133522324085478, -0.3625290334469524, 1.3978144404283481, -0.23949258213464097, -0.19269483059704706, -1.0498150235756776, 0.46259746280591707, -0.948447468922899, -0.038867771857239886, -1.5345116257045301, -0.03108077170128154, 0.8777908553167151, -0.22197892412654618, -0.2520779949235734, 0.012705452069162182, -0.19234873657853857, 1.8842368185214267, 1.2092454825313255, -0.9900540382543228, 2.4894758487701036, 1.8147588295873025, 0.9619595638125679, 2.1936699338707264, -0.39680846137035286, -0.6996982583030502, -0.4771345284231985, -0.35505170588468626, -0.27662908557976174, -0.0006459374385914263, -0.7344802918140458, 0.6869655123346148, 1.6999517421084303, 1.3804141124821547, -0.031256136163543724, 1.4043110000428196, 0.745699373115246, -0.8059075631524486, 0.8744809115182605, 0.6865483364358986, 1.6102615460024037, -0.605659785790934, -0.4880614322671093, -1.5838293483740813, -0.5137765415093647, -0.6654642485140727, -0.3870570694397726, -0.9335589356179796, -0.680782832771831, -0.18490690984635894, -1.3327011004440106, 2.1732186848270887, 1.511111161095176, 0.8516792277018673, 0.6380457706187144, -0.08310249661408653, 2.3795007781041324, 1.7093341232833361, -2.0168872577612196, 0.33037340990895137, -0.7304617421121318, 0.8274914561534668, 1.586087276779844, -1.23594335652515, 0.39776301955835036, 1.4858444440004637, -0.2856345777701681, -0.6111628316982103, 0.13061774260686043, -1.047056039891876, -0.4746519371694522, -0.20042319830980082, -0.19291333516409548, 2.0863796661611262, 2.396047132883858, 2.6177313956876587, -0.028802011032375452, 1.1387692055607872, 0.8387383462083194, 0.9292767767214637, -0.09451995135023994, 0.7993468507674275, 0.6760109571801611, 1.0049285529296177, -0.08376475783906567, -0.31551188285798726, -0.3735695755589046, -0.6947776975167945, -0.0025300033752000406, 2.483835116267856, -0.978987477937779, -0.011437122939291111, 2.350583570891682, -0.44270990717910697, 1.860537912538497, 1.5565189060509308, 1.0112320441342866, 0.29030690029061823, 1.81497379888642, 2.561341799941924, 2.0868544150289785, -0.425838710575269, -0.3132165917045553, -0.5059960832284998, -1.2310593637832428, 2.426323097594328, 1.7316217136740755, 1.645794017255464, -0.5344496661795046, 0.8998277755667369, 3.1530777849673015, 0.008497564908896638, 0.9058307451162628, -0.32499018105815636, 1.0773100907275293, 1.3578736261377116, 1.204320653257778, -0.21020932714240637, 1.6134224618092827, 1.328921058405552, -0.2670536866957305, -0.5282795227090649, -0.2962274386963961, -0.9328110499486231, -1.4361425842579174, 0.6379664804131041, -1.4180369276951827, 1.8788356439592282, -0.01679920998224782, -0.4678395210430055, -1.027444629619545, 0.7843989248722136, -0.32987172647867213, -0.2084319605142495, -0.5253661997706331, 2.5293065017490037, 2.1643827785651677, 0.44103378491037626, -1.634375154975198, -0.8059988649795184, 1.4858061830094873, -0.6408905075364588, 0.5674867197655438, 0.7831713171205662, 0.5198749783037137, -0.4346031590444295, 1.6758645622907662, -0.03677635529991896, -0.3131749297120041, 1.5614648436935439, -0.20266169055021166, -0.48607775926470365, 0.2961878003674596, -0.3465855806763234, 0.9780851694825571, 0.6234478226417013, -0.923061001719742, -0.30766448131715207, 1.7624768252127985, -1.0375592383078729, -0.20327884867863566, 1.8670534920759478, 1.4974593235242688, -0.09963247245370299, 0.6596846328040016, -0.3107103390086996, -0.6941055653896828, 0.12937138797073244, 1.810442779860884, -0.13168394100509717, 1.2669491627495788, -0.048567752683871035, 2.5847243944417513, 0.6472339032231262, -0.9728721321967511, 1.5344315974808609, 1.6768255538531465, -1.118754876482074, 0.12255743223127169, 0.6481488893993465, 1.7651533223746771, -0.8988791114754417, 0.7211483610031124, 2.584599797601295, 1.0806870125872667, 1.0392645301154062, 0.44868637176034143, 0.9083602329488897, 0.6061201367101043, 0.6165776683239255, 0.5291861470269436, 1.4782180087888155, 0.9515607480114061, 0.6173960207079341, 0.33436402304990065, 1.4175015986425137, 0.9541706150305049, 0.5905645650479117, 1.255906183748776, 1.2861422760344514, 1.8458324835886815, 0.8390941902696099, 1.5287775095968226, 3.0393154811288046, 0.5559720280968263, 1.6169015072333701, 0.22083184459060967, 1.743147949105969, 2.9658519619899195, 0.453170961026262, 1.1267034626348655, 1.1450634771631485, 0.8140007775155034, 1.1162776095629088, 0.8722793132424819, 1.8819805507823935, 2.0840160907836074, 3.069237780307455, 2.2557757043691047, 0.5420019914851724, 1.5480395274463175, 0.758113519946909, 0.041084290480497554, 0.661827592877849, 0.741332975410274, 2.121054177872151, 2.191516074385664, 2.5439388621048105, 0.5445460649565463, 2.2112036271781417, 0.8268638588350324, 0.9224709180558394, 1.8184212946636777, 2.2282954047170778, 0.47163653491563895, 0.4541424950845293, 2.3685550741078685, 1.8697228988527481, 0.6356019403091433, 1.6743510871384482, 1.3294070672717644, 0.03605014465031109, 0.09884937774664215, 1.1807885740864255, 1.2630243158846932, 0.3698461416221379, 0.2623052032233055, 1.0591570356902373, 0.9035508016760818, 2.3658883767599272, 0.5464650921036691, 2.1629271442427243, 1.5413054065859417, 1.736876811650737, 1.0789907702988342, 0.7670198984055829, 0.2766587278455167, 1.6742097654557857, 0.933346794160918, 1.7261935524671483, 0.74812575417294, 0.8501246495544013, 1.871932093517528, 2.264764640565342, 1.3627995588662347, 1.9827291568426637, 2.7385003855991625, 1.1558234792704207, 1.0770994782932304, 1.025737798955438, 1.3495203839186016, 1.4862628933914876, 2.906671959646753, 0.5943694724880798, 1.7007359656216323, 0.9450894358236795, 0.9810121477957071, 1.5599076707715116, 0.025056443617420654, 1.2009523835226925, 3.4932679351666738, 0.8104207394285052, 1.9065040930457497, 0.8916134253865092, 0.3623893393915525, 0.6459872535850679, 0.7516543228766683, 0.787671438365187, 1.9291015151549593, 0.8922855619265726, 1.50024240211172, 0.8349248500635069, 0.7529846644400662, 1.8084047944077288, 1.5028457978309362, 1.417215352536676, 2.9332210507309906, 0.8096437555686036, 0.8566526090586104, 0.6192924438211589, 1.6826718927338442, 0.12462761742143436, 1.0750994265069895, 2.60766466800231, 2.363687121369319, 1.0300105814656308, 1.093240069161815, 1.2160361620952822, 1.4444403694372268, 1.3010794245377832, 0.24486900199859718, 1.4143384620008572, 1.8509065391734947, 2.4333890908827835, 1.6198659367206591, 2.104793801533336, 0.632026953050469, 0.9743880049982433, 1.8960028758642047, 0.372587860948856, 0.23902283615140818, 0.7638777929839288, 1.1119168677925793, 1.6748641834390925, 0.4906134758502446, 0.7768070936789504, 1.1578912524979526, 1.5402216922229002, 0.6896916285910876, 1.6168679052848387, 0.9694446519435859, 0.5915784433387421, 0.16335956835188659, 0.7090272842311458, 2.303025492243422, 2.7592490415111035, 2.3697349074183855, 0.7304692148558356, 3.232490859607535, 2.8865438688318648, 0.41057851064805184, 0.9713052163739712, 1.6323017137944373, 0.9576518905299305, 0.32794396147135385, 1.2095917269271215, 0.6669899066554095, 2.495067533696396, 0.9924484426099555, 1.765320134206097, 2.017402880544812, 1.5277498384170578, 1.934202413954437, 1.511313861022396, 2.7645178797958323, 0.7262484520385291, 0.8875927906026289, 2.4425700083098745, 1.4198108608672348, 2.7329272226693178, 1.0779448758273444, 0.27338629095141753, 1.0436715310316733, 0.9288253639887265, 1.1140004584853043, 0.4746742068952109, 1.2194826552171496, 0.007956807502987107, 2.373142620674524, 0.021852718044123587, 1.31291014670726, 0.6228853159614628, 1.1613722468965035, 1.0427177113042858, 1.542063826530115, 1.008682443411643, 0.8806009541233368, 1.418421871603154, 0.5301591055468348, 1.8412813050925552, 2.8979249025518063, 0.4616975724617054, 2.85917777717567, 1.7994547566871848, 0.635272325034246, 1.5106141451004254, 1.212002543102387, 0.8602416654953275, 0.15871154642796947, 1.816158586536228, 1.4035502948981582, 1.1572319703695926, 2.320916149715332, 1.7956788111421713, 1.314786987022999, 1.8846414554717756, 3.2324879907233974, 1.409684819835263, 2.2179970598864815, 2.2099938426314605, 2.279548536732087, 0.3473571749925436, 0.09827550104607952, 0.44376084868970544, 1.9739485588622827, 1.3838539424501408, 1.0076711270129106, 1.7057206526775515, 2.212175295427256, 0.38392810471061867, 0.9229028400926782, 2.321074888831167, 1.9501325210896387, 1.1186363222677653, 2.9624752716755767, 0.035721793548883496, 2.902820970143953, 2.141879145519275, 0.18211468160661215, 1.0814390909520635, 2.628208986283915, 0.08420745304657185, 1.696043311340531, 1.07672091620056, 1.289296534594917, 0.7613004198514424, 2.1598101784456407, 1.9645635992491735, 2.1549189411828293, 1.0056487275608281, 1.5602545036205475, 1.9654424040385545, 0.3999335819142966, 1.1965672179451514, 1.0977260981252916, 0.8076677066833626, 1.8362413680286784, 0.959936930180601, 2.2835948466619094, 1.2626763540749748, 0.7687165866871977, 0.38964522869406304, 1.2108776959285998, 0.707180599386566, 1.2129694780656404, 2.071193283360384, 0.317733553743596, 0.823614518595359, 1.7566419155392619, 0.7807034377375441, 2.5185116008463178, 1.5336658157299743, 1.2116977478502942, 2.816926882643166, 1.5155870340618938, 1.1106393037208966, 1.391236894826829, 1.0164091005038978, 1.8114516432760293, 1.4831055436568494, 0.3232848719818686, 0.44536537870547055, 1.2185716797819317, 0.5344091834675742, 0.06580541980284438, 0.3611826580732951, 1.1326191362662734, 0.7310439782347422, 2.0258405442985548, 0.2614650899508253, 2.4209868262833245, 1.5723520223724146, 0.19063489275383771, 0.6717687635496912, 0.36848248864446165, 0.14051415285709679, 2.534057177092479, 1.7367712001648186, 2.3645473625753217, 1.2080123861892806, 0.3354849194387254, 0.8634219243171027, 1.1288045311986306, 1.777275159968862, 1.7040554864307063, 1.997378785819, 2.1890427356962183, 0.9968960386856377, 1.5462730887540785, 0.14862743469781536, 1.0098720528063918, 1.4554506363053947, 0.3028647412768619, 1.481661896067735, 1.33909312233393, 0.5143985216294581, 0.8555141099789697, 0.28447475776900866, 1.6151019463958964, 0.8815044882357544, 1.0614051552155739, 1.9501666694589124, 0.14849074432487752, 0.385833271597514, 1.3313167643449786, 2.328872985120772, 2.4842990880012517, 1.1819447222818715, 3.027886525276368, 1.5817976052161689, 0.62655361534692, 2.543310289905275, 1.460712692054901, 2.6768412779645905, 0.573009228090303, 1.1871951814344464, 0.6345774634125994, 0.2606164298158443, 0.4920040433528893, 0.788128989565375, 1.5303650856541862, 0.4935657701554539, 0.8461540463699988, 2.1140435070975077, 3.191564251434926, 1.3662844859797145, 0.6725803367856107, 2.635915651138747, 1.650144487750476, 0.5555958876184836, 0.2124645352353587, 1.5159006093981073, 1.1766727005388782, 1.1127605740151407, 1.3284007338070791, 1.262900219689354, 1.248491736600908, 3.431546351103247, 2.122697411018428, 2.8708017929348335, 1.1737780916245883, 1.4174591160047998, 2.643870580462954, 2.434917801443561, 2.23015170360764, 0.912971484252787, 0.8010751901002962, 1.3631819121766813, 1.5485442608302167, 0.3214262231776648, 2.000811338649939, 2.188297191168442, 1.706201119920394, 0.11179290244594631, 1.0626849526532802, 1.9451438556724712, 0.7843872166309623, 0.678585466271745, 1.3520772870827824, 0.6368514342197701, 0.7360330283340073, 0.18625199240324397, 1.2028714933735472, 1.2403161370340663, 1.752776993847872, 1.4716786889489475, 0.654340578620894, 2.220902488170179, 2.803405055041857, 1.5717957429749887, 3.0959826475629275, 1.2010427432766677, 0.6833539515462288, 1.3143636061606627, 1.787267277015562, 1.128355217928523, 2.0624496992656107, 0.35140427652356, 3.4768392951524363, 1.8964362725223025, 1.2506011292155872, 0.12678498687259077, 1.2484003952339457, 1.1359906242214628, 1.0045940164438736, 0.06809415509938987, 1.023185604806253, 1.0182234447672291, 1.4888746673796807, 2.095922103652624, 0.32270302664507844, 1.8169156574939032, 0.24729456163811336, 1.2210759139899334, 1.8214876005068574, 1.7587781076246782, 0.3549971355301832, 2.0613928916531097, 2.6898461194789998, 1.3522447727118614, 1.0403009896479698, 1.2959473939116555, 2.1023379555370685, 1.8140660607405683, 0.25437361366624467, 2.7898945546494773, 2.6870342733121895, 0.26788979514351097, 1.794915679076541, 2.089485769890337, 0.14784825941115076, 0.880347441390151, 0.6981208712785347, 0.8243852869278699, 2.036928176631312, 2.7606769029182687, 0.20739421054465312, 2.8915135459815966, 0.8272897359242735, 0.23691599843746847, 0.11773891193323538, 1.6210799890278653, 0.35817807048355554, 3.0357545478382284, 2.060151205549408, 0.6550261653418945, 1.2471755335892365, 0.9245697055304234, 0.6805527599418302, 0.6776423294010487, 1.2610309580124817, 0.643681297153307, 0.7184117417995997, 0.4433114920570689, 0.9869073120039744, 1.8068632137925598, 1.881955020752035, 0.24327654299371881, 0.75416632947047, 2.4179795850306305, 3.255796656475308, 1.8660749271793038, 0.4962945680356009, 0.5488337784696657, 1.2219475048985706, 0.5254222572957217, 2.916406998523898, 0.860574394016793], \"z\": [2.7319753567135248, 3.136106214349664, 1.3287305214506473, -3.123367523533325, -4.914132558449769, -3.8074394521648505, 1.984779014262112, -2.4409863854074514, -1.527236828067441, -3.242482596676783, -3.6292137020410697, -3.277948205373209, -4.795584133303218, 0.9827026986457659, -4.273529444165334, -4.986557647786495, -4.1008389030001515, 2.2044927563750205, 0.14015689767393624, 1.079561467762285, 3.9327410583045, 3.6885676150388997, -1.0571125673543165, -4.5113523394073125, 3.407951592330618, -0.2263935782184756, 2.788569910672953, 2.5969367441956663, -4.890670868024678, -1.822701826690376, 2.1189235950540795, -2.9631624043334828, -2.1346807782064388, 1.3891965955681451, 3.9608930206829713, 0.8897312967226787, -4.630758055863702, 1.1466994564591673, -1.636325887753249, -1.0920727589289152, -1.3838590000188553, 3.674364308761052, 0.6492906206977276, -0.543365300063857, -0.046637314302739874, -3.9711771358580643, 0.6367906155513641, -0.4051630206934931, 2.148358686288489, -3.8313792533705455, -2.652227437377259, -2.844968333156145, 3.1352061767288886, 3.792356444114053, -2.343116767805054, -3.2605490291582813, -1.4767296440663094, 1.9102091691088496, -3.8571845151026256, -0.42315632275052106, -2.7606594128961985, -4.693855681331515, 2.417299039060305, -4.46408121683051, 1.2857465963329862, 0.7759454313898315, -0.5159832352153071, 0.44986705877034705, 3.1271901370871555, 3.9504899267774265, -4.257688295702896, 4.296795614360788, -4.613275287117806, -3.584939470553179, 3.4110755698324047, 4.04044571978753, -2.820873826217368, -4.703055081218032, -2.456720882068971, 3.8555495792472874, -3.410328319518425, 2.2517772644802836, -4.9183303278578485, -4.949844715984162, -3.2938923866244014, 1.6005091838282723, -3.2347879697609008, -1.8380769457712658, 1.7073389065294755, 2.002316170832123, -2.8402537265083545, -3.4660026487408597, 2.720724749044491, -0.17986713072859128, -1.9780909893097283, -0.5715653288795055, 1.6853664232427432, 3.8353243001110178, -1.174677436797868, -2.4271500278842923, 2.250139313852027, 3.761046484207438, -1.308223277310908, 2.2230722155570257, -0.2753688589429828, -0.026437137483439344, 0.44994808379087203, 2.2328438736733167, 0.8870969248754266, -4.7171537621386035, -2.219936504408149, -3.6120172592527604, -0.40256586692233665, -3.7594818537804677, -3.589685796453654, -2.005989905242516, -0.9657359223528692, 0.5146537845307355, -2.9501872329203853, -3.6516156453189974, -0.6032243432239035, 2.6124698489956613, 3.723383707408817, 2.1911887725873003, 1.3490918486630035, 4.173849189310656, -3.7899628000397394, 4.377449146259004, 0.6362883931479377, -4.776414646106403, 4.197479934743227, 0.3712600100985206, 1.7109068868081847, 3.1227843671051287, -0.8441691257159869, 2.111093587736817, 0.21805375218412681, -4.095879002624367, -0.8173737950301625, 2.543026766429546, 2.919430622916331, 4.258471598426062, -3.1922455080204104, 0.8789512120230807, -1.933499977170836, 2.1416645019555673, 1.6588148269002403, -4.192586681957242, 4.094498551724146, -1.6902192693517355, -3.571054589184975, -4.543236314993068, 2.1384992636508295, -4.252222276726805, 1.2267580045167295, -1.3105323425890676, -0.06251505193409113, 3.5872916633193865, 1.5244870967809607, 0.27151111157854135, -1.8383938827608897, -0.14206749768810578, -1.59488853079477, -2.918449580320166, 0.9031196256263181, -4.68028284192894, -4.91544595385726, -1.388452121547771, -2.777929481177111, -4.6986051051338125, 1.141726307224129, -3.76030532963354, -4.406362115358921, -3.1061278503246115, 1.3926587735793667, 0.24449765762780995, -1.414860763321264, -1.5650407687704884, -3.682620778339573, -2.351512664389412, 3.067578344199407, -4.009948251923275, -1.9502641569682848, -2.5926888160885957, -1.036583424921389, -4.756679875015461, 3.126506223712485, -4.334113387676606, -2.056232450478517, 0.7130859938546017, 3.978815804045179, 1.249263025193633, 1.9926394893102186, 3.5980820375103226, -3.0211721187130087, 2.70129951325377, 2.5454837033857967, 2.914105611809883, -4.623970877315088, 0.09774672559184694, -1.2347173170608974, 2.021815957420136, 2.4304669029614523, 1.2612070377274884, 0.3308271069587212, -3.6492607690446315, -2.780416819804561, -1.5556262536852672, -0.7384329017263918, -4.93204728892272, -1.7189759351472098, -0.3716605358777292, -1.9827990624567073, 4.070144419182719, -4.386457024192653, -2.7311953575665457, -2.7535630196064624, 2.0522701925134594, -1.7251501600073418, -0.6279961286270792, 3.4777940963873943, -0.5034621573003388, 2.2466166034659603, -4.739820154760262, 1.144280985806362, -3.846390171119717, 2.0493009825749926, -0.5558663197392724, 3.664255187458985, 3.184099779150263, -0.7445107033696337, 2.3506039619881305, 3.4900863445194696, -2.217478145836815, 1.0364149478877591, -2.175560844115695, -4.10119036025885, -0.8700659703369249, -4.333504320543248, 2.859274514853869, 3.129438784709156, -3.7670848197021334, -3.541062154285534, 3.681776492346903, -1.364042989496948, 1.6324851818058823, -1.787813939013168, -1.5563052290519401, 0.37710871012787095, 3.117714660253905, 3.395588867588109, 2.5288864600642444, -4.282890080713772, -1.2432833813296438, -3.0969836825617625, -4.2422495536928455, -2.7219599240665007, 0.10780823006807694, 2.3403613194517936, 0.5267491211921822, 4.204470951487292, -1.780571415779205, -0.3142224662247024, 2.9969993775137036, -0.5621152012884245, 0.17863487480233076, -3.9158331779664173, -2.6223970223645297, 4.266927008033462, 4.00437139881307, 3.9374903056112265, -3.9350233590172667, -2.9654189423505875, -2.9769934060034045, 2.9760193059071964, 1.9794567350563677, 1.901081739739591, 1.9416109890627453, 0.9923599038935862, -3.632301750935716, -4.023544744023418, -2.233348827785373, 4.315351492673508, 2.216932253605239, 3.3002340858569914, -4.662375398490489, -3.1890371381721154, -1.8982955071954217, 1.0179852771385125, -1.1074678880948183, -1.9826645605633422, 2.675912437470916, -1.7750383183260978, -2.0210708274639684, -3.0684938609270027, -4.1638808046101525, -3.477884860173808, 3.0737516180837927, -1.2853015859842185, 4.252695170356287, -4.646369317807081, 0.1784339434718163, 1.7468996591947494, 3.74493071914669, 0.22266284312797957, -2.800338474409854, 4.255005220091939, -0.6847699919527432, -1.882778148135639, -3.2407727953593306, -2.0682180004856834, 0.07984954148980172, 0.9024967850995163, -4.678636074000549, 3.02075422049355, -1.7141755287977625, 3.711649120811919, -2.089361041607701, 1.9815216624401444, -1.6134193879435146, 0.5607296436278677, -3.7206474000736502, -4.506098402240289, -2.1500075137495416, 3.6776792945182732, -0.5950698223917046, -4.445018634665648, -3.5186902130626487, -0.7046840874668998, -0.036206032258922605, -3.0570839535900616, -0.17252114705151467, 2.1322785586011843, 1.493758170273372, -2.842804143691852, -0.7283944668364848, 2.1499794264294314, -2.055604963780946, -0.8217639692717791, -2.9682433471988015, -3.192480516441554, 4.266614337078477, -3.155527896043908, 4.2672724964687445, -4.258499400003153, -2.120328835373908, 2.8532427529584625, -2.5946579099268914, -3.9846606606230877, -3.0200307511734787, 1.7549087876060865, 1.451136229138477, 1.1248428731947193, -4.091912118521828, -0.1750165201759053, 2.9050256860408714, 3.0676217881854546, 1.2628319608573895, 3.8735950063367346, 3.7257124622694855, -3.135930518389874, 3.623317303654578, -1.0286355399287794, -1.734648984480275, 0.8855169441882262, 1.5135421783779224, 0.1904660634208284, 0.5080492292099414, 0.8024688921012082, -2.886481687951319, -3.6464206503399024, -4.002542831345451, -1.7886764390668777, 3.380801667031231, 3.3011756320295467, -5.0446054315044, -4.091466441051361, 2.1042708542736985, -0.12123425846560298, -2.021283055666073, 0.8494071719907019, 4.2021893110869994, 1.048966639360633, -0.4444437340795746, -2.05844302572501, -4.593055529259787, -4.639595366135558, -4.714174695929228, 3.6363674233517296, 2.068240086097476, -0.7354126239366963, 1.3355001369224073, 2.7341203282918523, -4.7778745470788, 0.2472997824604466, 1.5453877132656917, 1.3641229059788769, -0.4000437650652975, -1.1552270816871215, 0.18722893235927263, -0.13503456304136208, -4.0224236612530815, 0.3235533868970357, 1.7438505674264437, -4.494397779624493, 2.4638868321800977, -4.1579755036242645, 1.103832036637871, 2.0320625784613764, 4.280493346559713, 4.349984524009618, -1.1036532725315817, 2.914687321821396, -3.89396894403607, -3.5475647606281284, -2.966240982561554, 1.192081732234045, 1.263447330636569, -2.963623078375649, 2.5719650953847326, 4.184523833293809, 2.059689503217207, -4.837303078009451, -3.2206151505865197, -1.6606046984388345, -1.7717219340320014, 3.361567912802326, -0.6546765423401739, -2.5822273237421163, -3.0827883247799286, -3.890121640804616, 1.4229299164453817, 4.2241950403979205, -4.464293314413629, 4.376858899939289, 3.9028852457367096, -2.6637991154756824, -1.6592975506976653, -2.449505347205855, 0.29872318582170987, 1.2875907135743176, 0.6755819125764715, -4.04092195657868, -1.4108541783767627, 1.2296023595314711, -1.9101275029357145, 1.090587668977986, -2.7332050926746523, 3.2960290866585256, -3.0499580658070347, 2.985103606353051, -2.29384646802277, 4.026275325147648, -4.33017814203191, -1.309299556108118, -3.61013993640591, 4.204717672945844, 3.3325342081875045, -2.438736965527691, -2.298549983246561, -3.1697613833688925, -1.1986943621968815, 0.5232264012234236, -3.2270028851508537, 3.1156539281089524, 2.399891581120965, -4.703412271827909, 1.0382401858080303, -1.093083336206802, -4.557890213360086, -1.2036246026134156, 3.2327066930444586, 2.1981047065155224, -2.958229069537919, -2.293880658083687, -3.040850425659476, 3.0133536782706782, -3.1755579006720076, -1.4066920085876538, 1.8134160122266891, -3.592668188178222, 3.218466362830049, -2.1726473498147065, -0.5625602547651036, -1.4514638868966472, -4.614210807856442, -1.594722669476894, 4.285179351261317, 3.819827903832704, 3.4471005002751296, -3.5406843758331217, -3.3227169279636692, -4.206774083753017, -0.822564242219542, 1.01356022366505, -4.3433614590214304, 0.6175854461257426, -2.699421624229877, -2.9626422625871722, -4.380708471705969, -2.2889343622260583, 2.041535543674673, -1.6028663117089033, 0.7248714654395307, -3.426275909090304, 1.3394341686431552, 3.732792936549788, -2.566872843765956, -1.8865116537036122, -1.6656566904405379, 2.537922199571957, 0.8860193304888853, 0.049356472566750575, -3.629328160549583, -2.9742696979216543, 0.33422566054737235, 3.256442865944881, 1.2600414122731438, -1.6323452297655323, -1.5883677412817914, 0.8628903431503696, -1.076135593629941, 4.29888499657375, -0.6554630983777514, 3.2806488747844034, -1.1982873265407394, -2.1904727657882352, -2.6742428975372246, -0.4036830268214011, -3.9110539726622324, -1.9392382788176268, -0.9383617851737087, 3.501273734921017, 0.5821290842660387, 4.119892599412801, -2.61019543620454, -3.5450920936881003, -2.2785358201022285, 2.5194870603880455, 1.3630079734270328, -4.366746447060891, -2.696308088327663, -4.380517079450988, 0.3504683373698452, 1.4941802552828385, 3.2465238843697675, -0.05619196372909663, 0.15178206312866394, -2.11083445958874, 0.22975601546893998, 3.9265973466301647, -2.798320866476193, 1.036242936035901, 4.055270521633854, -2.3516050073372674, 2.6590431522272917, -1.790693740246235, 2.3732905739060346, 2.623234851175418, -3.599010141185082, 3.9151596466295464, -3.5011674206503085, 2.7393088053315138, 0.8054450195343552, 4.35743910599522, -3.0505702847139275, -2.9595329537919355, -3.7908998121529947, -1.1247768731691554, -1.1740930049820117, 0.6626400781489981, -2.333548647040501, 2.2588028850620434, 3.7195665490111027, 1.7474906929631615, 2.2485454128126525, -3.3916472785842653, 2.2301709035311283, 0.2620637409393245, 4.053526038312875, 2.839136642262215, 1.5183150293843983, -2.546556359674156, -0.9454666504040672, 4.074036787165796, 0.668417085916591, -0.5716364223616806, -3.2697655613892316, 0.44124321438050274, -1.1203534091564378, -2.166389741588222, -3.2309493561252722, 1.9035171172522913, 0.08014386541895213, 3.4468766960157433, 1.4405857559508526, 2.325826807867066, 2.2671984479621052, 0.8477066870745249, 2.371875886888768, 3.2780683218957316, 3.000043337626308, -0.11172065941403098, -1.9358393033695256, -3.7273241584106573, 3.484653471664255, -2.827252873115498, 0.6573502284380064, 2.063790866605201, -3.877321916439578, -4.423237417960697, 0.0947232794574644, 3.9161106698337376, 1.004833802146285, 1.390687384943421, -3.2971815612253956, 2.2151060675528678, 3.6986838268979954, 3.097196169105618, -4.979293797622423, 3.434501083667464, -2.20101366112344, -2.66347690573176, 2.6661559163876243, 0.5114841605721496, 2.259384148379757, 2.0548022882879273, -4.109184282725577, -0.6624646485757477, 1.6687953981025991, 0.27788829294052775, -3.901653238459599, 0.2947847158466903, 3.70186754842486, 1.4362499008374652, -3.53959949939964, -1.1994607238823365, 1.1029792196789945, -4.257764736030894, -2.0008533274901525, -0.9523847566814609, 0.12299495475880029, -5.018197442055199, -1.2309059662442912, -4.869596453875542, -2.423219317884211, -1.5372396887928064, -3.6584339782016073, -1.1119554675322454, 4.123251063869058, -3.6110993428916482, -2.5000832956959718, -0.584445234068709, -4.490059273109781, 4.245415652901136, 1.1525964126946393, 2.424965584831665, -0.050050071554760045, -2.0548983160233814, -4.518368665473784, -3.119413977788404, 0.9799187278940638, 1.680636710645655, -1.04127629127421, -3.850578882475831, -1.4153748054658264]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 2\", \"marker\": {\"color\": \"rgb(44, 160, 44)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 2\", \"scene\": \"scene2\", \"showlegend\": false, \"text\": [\"1332_l_2_m-0_0.1-1_0.4-2_0.08-3_1.02\", \"1333_l_2_m-0_1.42-1_0.49-2_0.11-3_0.17\", \"1334_l_2_m-0_0.41-1_0.13-2_0.63-3_0.36\", \"1335_l_2_m-0_1.18-1_0.06-2_0.66-3_0.16\", \"1336_l_2_m-0_0.42-1_0.02-2_0.37-3_0.04\", \"1337_l_2_m-0_0.92-1_0.44-2_0.07-3_0.07\", \"1338_l_2_c_0_1_3-0_0.24-1_0.21-2_0.22-3_0.16\", \"1339_l_2_c_0_1_3-0_0.21-1_0.24-2_1.39-3_0.32\", \"1340_l_2_c_0_1_3-0_0.02-1_0.11-2_0.95-3_0.42\", \"1341_l_2_c_0_1_3-0_0.14-1_0.17-2_0.95-3_0.05\", \"1342_l_2_c_0_1_3-0_0.87-1_0.24-2_0.49-3_0.38\", \"1343_l_2_c_0_1_3-0_0.49-1_0.63-2_0.09-3_0.15\", \"1344_l_2_c_0_1_3-0_0.25-1_0.85-2_0.58-3_0.21\", \"1345_l_2_c_0_1_3-0_0.21-1_0.33-2_1.06-3_0.13\", \"1346_l_2_c_0_1_3-0_0.03-1_0.24-2_0.27-3_0.41\", \"1347_l_2_c_0_1_3-0_0.98-1_1.27-2_0.12-3_0.24\", \"1348_l_2_c_0_1_3-0_1.0-1_0.42-2_0.53-3_0.01\", \"1349_l_2_c_0_1_3-0_0.04-1_0.54-2_0.13-3_0.87\", \"1350_l_2_c_0_1_3-0_0.62-1_0.27-2_0.26-3_0.12\", \"1351_l_2_c_0_1_3-0_0.76-1_0.19-2_1.3-3_0.85\", \"1352_l_2_c_0_1_3-0_0.83-1_0.72-2_0.03-3_0.28\", \"1353_l_2_c_0_1_3-0_0.06-1_0.02-2_0.58-3_0.15\", \"1354_l_2_c_0_1_3-0_0.2-1_0.75-2_0.25-3_0.44\", \"1355_l_2_c_0_1_3-0_0.0-1_0.01-2_0.07-3_0.62\", \"1356_l_2_c_0_1_3-0_0.51-1_0.13-2_0.03-3_0.09\", \"1357_l_2_c_0_1_3-0_0.72-1_0.08-2_1.79-3_0.38\", \"1358_l_2_c_0_1_3-0_0.87-1_0.38-2_0.45-3_0.25\", \"1359_l_2_c_0_1_3-0_0.52-1_0.96-2_0.35-3_0.08\", \"1360_l_2_c_0_1_3-0_0.73-1_0.19-2_1.06-3_1.11\", \"1361_l_2_c_0_1_3-0_0.08-1_0.12-2_0.29-3_0.16\", \"1362_l_2_c_0_1_3-0_0.13-1_0.07-2_0.47-3_0.28\", \"1363_l_2_c_0_1_3-0_0.34-1_0.38-2_0.97-3_0.13\", \"1364_l_2_c_0_1_3-0_0.36-1_0.03-2_0.55-3_0.14\", \"1365_l_2_c_0_1_3-0_0.96-1_0.15-2_0.39-3_0.17\", \"1366_l_2_c_0_1_3-0_0.04-1_0.05-2_0.35-3_0.68\", \"1367_l_2_c_0_1_3-0_0.9-1_0.28-2_0.42-3_0.21\", \"1368_l_2_c_0_1_3-0_0.14-1_0.14-2_0.23-3_0.14\", \"1369_l_2_c_0_1_3-0_0.19-1_0.39-2_1.23-3_0.28\", \"1370_l_2_c_0_1_3-0_0.48-1_0.16-2_0.02-3_0.35\", \"1371_l_2_c_0_1_3-0_0.05-1_0.35-2_0.66-3_0.11\", \"1372_l_2_c_0_1_3-0_0.65-1_0.13-2_0.57-3_0.6\", \"1373_l_2_c_0_1_3-0_0.55-1_0.26-2_0.35-3_0.83\", \"1374_l_2_c_0_1_3-0_0.15-1_0.87-2_0.89-3_0.16\", \"1375_l_2_c_0_1_3-0_0.19-1_0.53-2_0.43-3_0.14\", \"1376_l_2_c_0_1_3-0_0.18-1_0.33-2_0.74-3_0.13\", \"1377_l_2_c_0_1_3-0_0.52-1_0.07-2_0.62-3_0.42\", \"1378_l_2_c_0_1_3-0_0.02-1_0.08-2_1.53-3_0.11\", \"1379_l_2_c_0_1_3-0_0.35-1_0.08-2_0.37-3_0.76\", \"1380_l_2_c_0_1_2-0_0.32-1_0.35-2_0.05-3_0.08\", \"1381_l_2_c_0_1_3-0_0.14-1_0.78-2_0.65-3_0.11\", \"1382_l_2_c_0_1_2-0_0.1-1_0.14-2_0.34-3_1.03\", \"1383_l_2_c_0_1_3-0_0.82-1_0.05-2_0.24-3_0.76\", \"1384_l_2_c_0_1_2-0_0.07-1_0.35-2_0.01-3_1.09\", \"1385_l_2_c_0_1_3-0_0.37-1_0.17-2_1.62-3_0.09\", \"1386_l_2_c_0_1_2-0_0.54-1_0.05-2_0.54-3_0.3\", \"1387_l_2_c_0_1_3-0_0.13-1_1.2-2_0.96-3_0.04\", \"1388_l_2_c_0_1_2-0_0.44-1_0.34-2_0.04-3_0.63\", \"1389_l_2_c_0_1_3-0_0.64-1_0.04-2_0.78-3_0.06\", \"1390_l_2_c_0_1_2-0_0.24-1_0.7-2_0.58-3_0.95\", \"1391_l_2_c_0_1_3-0_1.0-1_0.24-2_0.98-3_0.45\", \"1392_l_2_c_0_1_2-0_0.31-1_0.03-2_0.05-3_0.08\", \"1393_l_2_c_0_1_3-0_0.53-1_0.44-2_0.94-3_0.65\", \"1394_l_2_c_0_1_2-0_0.14-1_0.16-2_0.75-3_0.99\", \"1395_l_2_c_0_1_3-0_0.23-1_0.67-2_0.27-3_0.26\", \"1396_l_2_c_0_1_2-0_0.32-1_0.77-2_0.22-3_0.72\", \"1397_l_2_c_0_1_3-0_0.12-1_0.13-2_0.75-3_0.11\", \"1398_l_2_c_0_1_2-0_0.34-1_0.15-2_0.36-3_0.93\", \"1399_l_2_c_0_1_3-0_0.69-1_0.29-2_1.08-3_0.5\", \"1400_l_2_c_0_1_2-0_0.17-1_0.2-2_0.04-3_0.4\", \"1401_l_2_c_0_1_3-0_0.72-1_0.25-2_0.39-3_0.1\", \"1402_l_2_c_0_1_2-0_0.25-1_0.01-2_0.03-3_0.66\", \"1403_l_2_c_0_1_3-0_0.07-1_0.63-2_0.93-3_0.48\", \"1404_l_2_c_0_1_2-0_0.32-1_0.24-2_0.61-3_1.56\", \"1405_l_2_c_0_1_3-0_0.19-1_0.13-2_0.51-3_0.55\", \"1406_l_2_c_0_1_2-0_0.8-1_0.33-2_0.23-3_0.34\", \"1407_l_2_c_0_1_3-0_0.1-1_0.15-2_0.56-3_0.77\", \"1408_l_2_c_0_1_2-0_0.84-1_0.06-2_0.47-3_0.17\", \"1409_l_2_c_0_1_3-0_0.01-1_0.03-2_0.47-3_0.57\", \"1410_l_2_c_0_1_2-0_0.07-1_0.1-2_0.14-3_0.14\", \"1411_l_2_c_0_1_3-0_0.5-1_0.19-2_1.55-3_0.55\", \"1412_l_2_c_0_1_2-0_0.83-1_0.01-2_0.02-3_0.76\", \"1413_l_2_c_0_1_3-0_0.24-1_0.57-2_0.53-3_0.05\", \"1414_l_2_c_0_1_2-0_0.4-1_0.27-2_0.23-3_0.43\", \"1415_l_2_c_0_1_3-0_0.64-1_0.66-2_0.7-3_0.67\", \"1416_l_2_c_0_1_2-0_0.09-1_0.95-2_0.8-3_0.57\", \"1417_l_2_c_0_1_3-0_0.12-1_0.27-2_0.02-3_0.69\", \"1418_l_2_c_0_1_2-0_0.02-1_0.31-2_0.62-3_0.33\", \"1419_l_2_c_0_1_3-0_0.19-1_0.14-2_0.02-3_0.26\", \"1420_l_2_c_0_1_2-0_0.5-1_0.02-2_0.07-3_1.04\", \"1421_l_2_c_0_1_3-0_0.09-1_0.05-2_0.12-3_0.44\", \"1422_l_2_c_0_1_2-0_0.03-1_1.15-2_0.84-3_1.68\", \"1423_l_2_c_0_1_3-0_0.3-1_0.14-2_0.57-3_0.45\", \"1424_l_2_c_0_1_2-0_0.81-1_0.89-2_0.09-3_0.5\", \"1425_l_2_c_0_1_3-0_0.23-1_0.05-2_0.82-3_0.49\", \"1426_l_2_c_0_1_2-0_0.23-1_0.44-2_0.32-3_1.59\", \"1427_l_2_c_0_1_3-0_0.18-1_0.18-2_0.8-3_0.65\", \"1428_l_2_c_0_1_2-0_0.48-1_0.58-2_0.04-3_0.63\", \"1429_l_2_c_0_1_3-0_0.34-1_0.27-2_0.51-3_0.38\", \"1430_l_2_c_0_1_2-0_0.09-1_1.64-2_0.09-3_0.81\", \"1431_l_2_c_0_1_3-0_0.22-1_0.18-2_1.22-3_0.29\", \"1432_l_2_c_0_1_2-0_0.15-1_0.32-2_0.43-3_0.74\", \"1433_l_2_c_0_1_3-0_0.68-1_0.56-2_0.4-3_0.14\", \"1434_l_2_c_0_1_2-0_0.1-1_0.72-2_0.0-3_0.32\", \"1435_l_2_c_0_1_3-0_0.46-1_0.2-2_1.3-3_0.45\", \"1436_l_2_c_0_1_2-0_0.48-1_0.15-2_0.07-3_0.11\", \"1437_l_2_c_0_1_3-0_0.54-1_0.09-2_1.14-3_0.51\", \"1438_l_2_c_0_1_2-0_0.23-1_0.05-2_0.21-3_0.64\", \"1439_l_2_c_0_1_3-0_1.13-1_0.47-2_1.55-3_0.67\", \"1440_l_2_c_0_1_2-0_0.01-1_0.44-2_0.15-3_0.81\", \"1441_l_2_c_0_1_3-0_0.67-1_0.28-2_0.52-3_0.17\", \"1442_l_2_c_0_1_2-0_0.35-1_0.02-2_0.64-3_0.38\", \"1443_l_2_c_0_1_3-0_0.21-1_0.36-2_0.4-3_0.0\", \"1444_l_2_c_0_1_2-0_0.45-1_0.23-2_0.32-3_1.44\", \"1445_l_2_c_0_1_3-0_0.69-1_1.13-2_0.28-3_0.64\", \"1446_l_2_c_0_1_2-0_0.06-1_0.67-2_0.21-3_0.63\", \"1447_l_2_c_0_1_3-0_0.5-1_0.9-2_0.38-3_0.43\", \"1448_l_2_c_0_1_2-0_0.09-1_0.54-2_0.29-3_0.99\", \"1449_l_2_c_0_1_3-0_0.25-1_0.46-2_1.75-3_0.99\", \"1450_l_2_c_0_1_2-0_0.04-1_0.03-2_0.11-3_0.05\", \"1451_l_2_c_0_1_3-0_0.26-1_0.1-2_0.61-3_0.95\", \"1452_l_2_c_0_1_2-0_0.11-1_0.11-2_0.09-3_0.01\", \"1453_l_2_c_0_1_3-0_1.16-1_0.36-2_1.21-3_0.67\", \"1454_l_2_c_0_1_2-0_0.32-1_0.08-2_0.01-3_0.19\", \"1455_l_2_c_0_1_3-0_0.45-1_0.11-2_0.85-3_0.41\", \"1456_l_2_c_0_1_2-0_0.04-1_0.31-2_0.28-3_0.28\", \"1457_l_2_c_0_1_3-0_0.05-1_0.27-2_0.17-3_0.19\", \"1458_l_2_c_0_1_2-0_0.11-1_0.02-2_0.02-3_0.31\", \"1459_l_2_c_0_1_3-0_0.15-1_0.5-2_0.61-3_0.62\", \"1460_l_2_c_0_1_2-0_0.02-1_0.56-2_0.1-3_0.53\", \"1461_l_2_c_0_1_3-0_0.42-1_0.43-2_1.3-3_0.32\", \"1462_l_2_c_0_1_2-0_0.42-1_0.11-2_0.88-3_0.95\", \"1463_l_2_c_0_1_3-0_0.11-1_0.59-2_0.11-3_0.84\", \"1464_l_2_c_0_1_2-0_0.18-1_0.16-2_0.16-3_0.67\", \"1465_l_2_c_0_1_3-0_0.35-1_0.95-2_0.06-3_0.27\", \"1466_l_2_c_0_1_2-0_0.1-1_0.82-2_0.11-3_2.07\", \"1467_l_2_c_0_1_3-0_0.48-1_0.43-2_0.41-3_0.68\", \"1468_l_2_c_0_1_2-0_0.79-1_1.31-2_0.01-3_0.09\", \"1469_l_2_c_0_1_3-0_0.07-1_0.15-2_0.4-3_0.79\", \"1470_l_2_c_0_1_2-0_0.34-1_0.41-2_0.42-3_1.09\", \"1471_l_2_c_0_1_3-0_0.01-1_0.16-2_0.31-3_0.55\", \"1472_l_2_c_0_1_2-0_0.13-1_0.24-2_0.05-3_0.43\", \"1473_l_2_c_0_1_3-0_0.11-1_0.14-2_0.97-3_0.33\", \"1474_l_2_c_0_1_2-0_0.25-1_0.65-2_0.05-3_0.7\", \"1475_l_2_c_0_1_3-0_0.2-1_0.5-2_1.36-3_0.61\", \"1476_l_2_c_1_2_3-0_0.54-1_0.22-2_0.69-3_0.14\", \"1477_l_2_c_0_1_2-0_0.0-1_0.54-2_0.34-3_0.17\", \"1478_l_2_c_0_1_3-0_0.02-1_0.69-2_0.46-3_0.3\", \"1479_l_2_c_1_2_3-0_0.56-1_0.47-2_0.12-3_0.17\", \"1480_l_2_c_0_1_2-0_0.01-1_0.13-2_1.01-3_0.7\", \"1481_l_2_c_0_1_3-0_1.94-1_0.32-2_1.25-3_1.17\", \"1482_l_2_c_1_2_3-0_0.8-1_0.49-2_0.03-3_0.15\", \"1483_l_2_c_0_1_2-0_0.06-1_0.13-2_0.59-3_0.21\", \"1484_l_2_c_0_1_3-0_0.73-1_0.05-2_0.68-3_0.0\", \"1485_l_2_c_1_2_3-0_0.93-1_0.11-2_0.22-3_0.25\", \"1486_l_2_c_0_1_2-0_0.32-1_1.15-2_0.2-3_0.19\", \"1487_l_2_c_0_1_3-0_0.05-1_0.46-2_0.55-3_0.18\", \"1488_l_2_c_1_2_3-0_0.45-1_0.36-2_0.69-3_0.08\", \"1489_l_2_c_0_1_2-0_0.73-1_0.25-2_0.19-3_0.85\", \"1490_l_2_c_0_1_3-0_0.26-1_0.0-2_1.11-3_0.23\", \"1491_l_2_c_1_2_3-0_0.85-1_0.04-2_0.41-3_0.4\", \"1492_l_2_c_0_1_2-0_0.56-1_0.17-2_0.03-3_0.84\", \"1493_l_2_c_0_1_3-0_0.25-1_0.09-2_1.13-3_0.04\", \"1494_l_2_c_1_2_3-0_1.9-1_0.86-2_0.18-3_0.06\", \"1495_l_2_c_0_1_2-0_0.41-1_0.15-2_0.4-3_1.38\", \"1496_l_2_c_0_1_3-0_0.14-1_0.48-2_0.11-3_1.05\", \"1497_l_2_c_1_2_3-0_0.24-1_0.41-2_0.08-3_0.28\", \"1498_l_2_c_0_1_2-0_0.13-1_0.45-2_0.26-3_0.61\", \"1499_l_2_c_0_1_3-0_0.97-1_0.47-2_1.06-3_1.09\", \"1500_l_2_c_1_2_3-0_0.81-1_0.73-2_0.19-3_0.06\", \"1501_l_2_c_0_1_2-0_0.48-1_0.01-2_0.17-3_0.89\", \"1502_l_2_c_0_1_3-0_0.04-1_0.21-2_0.53-3_0.8\", \"1503_l_2_c_1_2_3-0_1.16-1_0.4-2_0.41-3_0.36\", \"1504_l_2_c_0_1_2-0_0.56-1_0.17-2_0.17-3_0.17\", \"1505_l_2_c_0_1_3-0_0.0-1_0.14-2_0.15-3_0.12\", \"1506_l_2_c_1_2_3-0_0.05-1_0.7-2_0.22-3_0.37\", \"1507_l_2_c_0_1_2-0_0.13-1_1.81-2_0.1-3_0.65\", \"1508_l_2_c_0_1_3-0_0.28-1_0.42-2_0.42-3_0.1\", \"1509_l_2_c_1_2_3-0_0.14-1_0.42-2_0.29-3_0.33\", \"1510_l_2_c_0_1_2-0_0.56-1_0.72-2_0.21-3_0.45\", \"1511_l_2_c_0_1_3-0_0.52-1_0.02-2_0.45-3_0.45\", \"1512_l_2_c_1_2_3-0_0.07-1_0.06-2_0.08-3_0.43\", \"1513_l_2_c_0_1_2-0_0.88-1_0.55-2_0.1-3_0.3\", \"1514_l_2_c_0_1_3-0_0.25-1_0.01-2_0.35-3_0.15\", \"1515_l_2_c_1_2_3-0_0.37-1_0.07-2_0.54-3_0.12\", \"1516_l_2_c_0_1_2-0_0.44-1_0.6-2_0.01-3_0.93\", \"1517_l_2_c_0_1_3-0_0.03-1_0.28-2_1.39-3_0.11\", \"1518_l_2_c_1_2_3-0_0.73-1_0.6-2_0.02-3_0.05\", \"1519_l_2_c_0_1_2-0_0.19-1_0.11-2_0.33-3_0.53\", \"1520_l_2_c_1_3-0_0.89-1_0.32-2_1.39-3_0.89\", \"1521_l_2_r-0_0.36-1_1.47-2_1.08-3_1.21\", \"1522_l_2_r-0_0.67-1_0.31-2_0.11-3_1.28\", \"1523_l_2_r-0_0.57-1_0.02-2_1.04-3_1.39\", \"1524_l_2_r-0_0.9-1_0.09-2_0.42-3_0.49\", \"1525_l_2_r-0_0.96-1_2.23-2_1.22-3_0.86\", \"1526_l_2_r-0_1.2-1_0.59-2_1.07-3_1.37\", \"1527_l_2_r-0_1.14-1_0.44-2_1.03-3_0.47\", \"1528_l_2_r-0_1.2-1_0.66-2_0.23-3_0.55\", \"1529_l_2_r-0_1.12-1_0.04-2_0.7-3_1.12\", \"1530_l_2_r-0_0.01-1_1.74-2_0.18-3_0.74\", \"1531_l_2_r-0_0.48-1_0.13-2_0.32-3_0.34\", \"1532_l_2_r-0_1.13-1_0.59-2_0.94-3_1.28\", \"1533_l_2_r-0_0.74-1_1.34-2_0.03-3_0.12\", \"1534_l_2_r-0_0.64-1_0.56-2_0.48-3_0.59\", \"1535_l_2_r-0_0.01-1_0.97-2_0.26-3_0.2\", \"1536_l_2_r-0_1.3-1_0.12-2_1.07-3_0.97\", \"1537_l_2_r-0_0.32-1_0.96-2_1.59-3_1.25\", \"1538_l_2_r-0_0.05-1_0.73-2_1.23-3_0.38\", \"1539_l_2_r-0_0.01-1_1.02-2_0.61-3_1.06\", \"1540_l_2_r-0_0.17-1_1.3-2_0.49-3_0.73\", \"1541_l_2_r-0_0.41-1_0.18-2_0.45-3_0.32\", \"1542_l_2_r-0_0.55-1_0.58-2_0.35-3_0.43\", \"1543_l_2_r-0_1.55-1_0.49-2_0.26-3_0.12\", \"1544_l_2_r-0_0.78-1_1.37-2_1.02-3_0.49\", \"1545_l_2_r-0_2.12-1_1.57-2_0.09-3_0.3\", \"1546_l_2_r-0_0.7-1_1.02-2_0.38-3_0.27\", \"1547_l_2_r-0_0.13-1_0.9-2_0.53-3_0.31\", \"1548_l_2_r-0_0.8-1_0.03-2_0.03-3_0.04\", \"1549_l_2_r-0_1.63-1_0.8-2_0.1-3_0.1\", \"1550_l_2_r-0_0.03-1_0.71-2_1.08-3_1.36\", \"1551_l_2_r-0_0.16-1_1.78-2_0.54-3_0.14\", \"1552_l_2_r-0_0.14-1_1.11-2_1.13-3_1.04\", \"1553_l_2_r-0_0.73-1_0.12-2_0.03-3_0.6\", \"1554_l_2_r-0_0.8-1_0.03-2_0.88-3_0.02\", \"1555_l_2_r-0_1.46-1_1.4-2_0.52-3_2.21\", \"1556_l_2_r-0_1.35-1_0.78-2_1.08-3_0.29\", \"1557_l_2_r-0_0.66-1_1.36-2_1.74-3_0.64\", \"1558_l_2_r-0_0.53-1_0.62-2_0.22-3_0.49\", \"1559_l_2_r-0_1.07-1_0.6-2_0.91-3_0.73\", \"1560_l_2_r-0_0.76-1_0.36-2_0.41-3_0.08\", \"1561_l_2_r-0_1.74-1_1.83-2_0.13-3_0.3\", \"1562_l_2_r-0_1.14-1_0.8-2_0.67-3_1.74\", \"1563_l_2_r-0_0.91-1_0.14-2_1.45-3_1.26\", \"1564_l_2_r-0_0.28-1_1.62-2_1.07-3_1.07\", \"1565_l_2_r-0_0.92-1_1.22-2_0.68-3_1.55\", \"1566_l_2_r-0_0.31-1_0.48-2_0.73-3_0.3\", \"1567_l_2_r-0_1.17-1_0.06-2_0.25-3_0.88\", \"1568_l_2_r-0_0.54-1_1.07-2_0.55-3_1.05\", \"1569_l_2_r-0_1.61-1_1.1-2_0.21-3_1.3\", \"1570_l_2_r-0_1.09-1_0.16-2_0.49-3_1.45\", \"1571_l_2_r-0_0.45-1_0.4-2_1.25-3_1.75\", \"1572_l_2_r-0_0.22-1_0.18-2_1.01-3_0.15\", \"1573_l_2_r-0_0.3-1_0.07-2_0.88-3_1.11\", \"1574_l_2_r-0_1.22-1_0.71-2_0.88-3_1.67\", \"1575_l_2_r-0_0.04-1_0.8-2_0.13-3_0.04\", \"1576_l_2_r-0_0.41-1_0.69-2_1.38-3_0.18\", \"1577_l_2_r-0_0.06-1_0.77-2_1.03-3_0.69\", \"1578_l_2_r-0_0.19-1_1.44-2_0.38-3_0.68\", \"1579_l_2_r-0_0.73-1_0.4-2_0.05-3_0.62\", \"1580_l_2_r-0_1.43-1_0.8-2_0.5-3_0.87\", \"1581_l_2_r-0_1.14-1_0.79-2_0.65-3_0.74\", \"1582_l_2_r-0_0.76-1_1.08-2_0.37-3_0.07\", \"1583_l_2_r-0_0.79-1_0.36-2_0.14-3_0.4\", \"1584_l_2_r-0_1.11-1_1.05-2_0.77-3_0.85\", \"1585_l_2_r-0_1.71-1_1.09-2_0.32-3_1.01\", \"1586_l_2_r-0_0.7-1_0.23-2_0.02-3_1.13\", \"1587_l_2_r-0_1.37-1_0.53-2_0.46-3_0.64\", \"1588_l_2_r-0_0.19-1_0.5-2_1.16-3_0.26\", \"1589_l_2_r-0_0.23-1_0.2-2_0.27-3_0.45\", \"1590_l_2_r-0_1.1-1_1.65-2_0.92-3_0.84\", \"1591_l_2_r-0_0.86-1_1.27-2_0.38-3_0.38\", \"1592_l_2_r-0_0.65-1_0.74-2_1.12-3_0.06\", \"1593_l_2_r-0_0.84-1_1.53-2_0.29-3_0.8\", \"1594_l_2_r-0_0.36-1_0.12-2_0.53-3_1.18\", \"1595_l_2_r-0_0.15-1_0.72-2_0.85-3_0.75\", \"1596_l_2_r-0_0.38-1_0.22-2_1.04-3_0.47\", \"1597_l_2_r-0_0.71-1_1.12-2_0.95-3_0.24\", \"1598_l_2_r-0_1.24-1_0.55-2_1.39-3_0.4\", \"1599_l_2_r-0_0.82-1_0.78-2_0.19-3_0.59\", \"1600_l_2_r-0_0.6-1_0.91-2_0.81-3_0.44\", \"1601_l_2_r-0_0.37-1_0.82-2_1.56-3_1.04\", \"1602_l_2_r-0_0.45-1_0.84-2_0.96-3_0.8\", \"1603_l_2_r-0_1.32-1_0.41-2_2.33-3_1.31\", \"1604_l_2_r-0_0.26-1_0.21-2_0.91-3_0.88\", \"1605_l_2_r-0_0.87-1_0.2-2_0.02-3_0.69\", \"1606_l_2_r-0_0.2-1_1.06-2_0.22-3_1.23\", \"1607_l_2_r-0_0.78-1_0.58-2_0.1-3_1.13\", \"1608_l_2_r-0_0.04-1_0.8-2_0.66-3_0.73\", \"1609_l_2_r-0_1.11-1_1.29-2_0.24-3_0.27\", \"1610_l_2_r-0_0.39-1_0.69-2_0.98-3_1.5\", \"1611_l_2_r-0_1.06-1_0.96-2_0.48-3_0.68\", \"1612_l_2_r-0_0.82-1_1.31-2_0.36-3_0.17\", \"1613_l_2_r-0_0.82-1_0.21-2_0.4-3_0.35\", \"1614_l_2_r-0_0.79-1_1.23-2_0.5-3_0.63\", \"1615_l_2_r-0_0.81-1_0.74-2_0.44-3_1.08\", \"1616_l_2_r-0_0.59-1_0.75-2_0.78-3_0.73\", \"1617_l_2_r-0_0.49-1_0.03-2_1.08-3_0.62\", \"1618_l_2_r-0_0.42-1_0.01-2_0.84-3_0.65\", \"1619_l_2_r-0_0.49-1_0.96-2_0.52-3_0.68\", \"1620_l_2_r-0_0.81-1_1.03-2_0.69-3_0.02\", \"1621_l_2_r-0_0.4-1_0.61-2_1.21-3_1.41\", \"1622_l_2_r-0_0.86-1_0.72-2_1.2-3_0.28\", \"1623_l_2_r-0_0.43-1_1.04-2_0.29-3_0.69\", \"1624_l_2_r-0_0.56-1_0.55-2_0.44-3_0.88\", \"1625_l_2_r-0_0.55-1_1.37-2_0.92-3_0.98\", \"1626_l_2_r-0_0.59-1_0.14-2_0.74-3_0.95\", \"1627_l_2_r-0_1.2-1_0.17-2_0.69-3_0.69\", \"1628_l_2_r-0_0.29-1_0.18-2_0.75-3_0.51\", \"1629_l_2_r-0_0.7-1_1.15-2_0.83-3_0.8\", \"1630_l_2_r-0_0.65-1_0.71-2_0.1-3_0.14\", \"1631_l_2_r-0_1.05-1_0.15-2_1.02-3_0.44\", \"1632_l_2_r-0_0.47-1_0.74-2_0.61-3_1.15\", \"1633_l_2_r-0_0.34-1_0.55-2_1.37-3_1.58\", \"1634_l_2_r-0_0.03-1_0.67-2_0.49-3_0.09\", \"1635_l_2_r-0_0.97-1_1.54-2_0.38-3_0.72\", \"1636_l_2_r-0_0.45-1_0.51-2_0.59-3_0.91\", \"1637_l_2_r-0_0.1-1_0.16-2_0.46-3_0.57\", \"1638_l_2_r-0_0.33-1_1.29-2_1.35-3_0.7\", \"1639_l_2_r-0_0.93-1_0.96-2_1.19-3_0.5\", \"1640_l_2_r-0_1.33-1_1.35-2_1.7-3_1.56\", \"1641_l_2_r-0_0.21-1_0.22-2_0.85-3_0.3\", \"1642_l_2_r-0_0.04-1_0.79-2_0.97-3_0.42\", \"1643_l_2_r-0_0.38-1_1.26-2_1.65-3_0.65\", \"1644_l_2_r-0_0.52-1_0.98-2_0.63-3_1.37\", \"1645_l_2_r-0_0.22-1_0.3-2_0.26-3_0.84\", \"1646_l_2_r-0_0.91-1_0.01-2_0.41-3_0.23\", \"1647_l_2_r-0_0.52-1_0.94-2_0.73-3_0.02\", \"1648_l_2_r-0_0.25-1_1.37-2_0.02-3_1.05\", \"1649_l_2_r-0_0.73-1_0.87-2_1.29-3_0.66\", \"1650_l_2_r-0_0.84-1_0.47-2_1.76-3_1.92\", \"1651_l_2_r-0_1.48-1_0.24-2_0.19-3_0.74\", \"1652_l_2_r-0_2.23-1_0.37-2_0.77-3_0.15\", \"1653_l_2_r-0_0.42-1_0.77-2_0.5-3_0.04\", \"1654_l_2_r-0_1.06-1_0.41-2_1.06-3_1.04\", \"1655_l_2_r-0_0.33-1_1.33-2_1.12-3_2.68\", \"1656_l_2_r-0_1.0-1_0.18-2_0.15-3_0.04\", \"1657_l_2_r-0_1.41-1_0.16-2_0.47-3_0.2\", \"1658_l_2_r-0_0.33-1_0.51-2_1.2-3_0.46\", \"1659_l_2_r-0_0.21-1_1.24-2_0.69-3_1.17\", \"1660_l_2_r-0_0.76-1_0.56-2_1.51-3_0.09\", \"1661_l_2_r-0_0.16-1_1.07-2_0.18-3_1.39\", \"1662_l_2_r-0_0.64-1_1.34-2_0.58-3_1.04\", \"1663_l_2_r-0_0.79-1_0.09-2_0.17-3_0.79\", \"1664_l_2_r-0_0.94-1_0.01-2_0.58-3_1.5\", \"1665_l_2_r-0_0.53-1_0.74-2_0.57-3_0.4\", \"1666_l_2_r-0_0.08-1_0.17-2_0.62-3_0.26\", \"1667_l_2_r-0_0.23-1_0.67-2_0.41-3_0.85\", \"1668_l_2_r-0_1.37-1_0.09-2_0.13-3_0.82\", \"1669_l_2_r-0_0.63-1_0.67-2_0.19-3_0.84\", \"1670_l_2_r-0_2.14-1_0.34-2_0.61-3_0.63\", \"1671_l_2_r-0_0.05-1_1.16-2_0.49-3_0.26\", \"1672_l_2_r-0_0.59-1_0.55-2_0.79-3_0.32\", \"1673_l_2_r-0_0.05-1_0.35-2_0.47-3_2.37\", \"1674_l_2_r-0_0.3-1_0.1-2_0.48-3_1.43\", \"1675_l_2_r-0_0.66-1_1.25-2_0.2-3_0.54\", \"1676_l_2_r-0_1.04-1_1.13-2_1.39-3_0.91\", \"1677_l_2_r-0_2.13-1_0.2-2_0.01-3_0.13\", \"1678_l_2_r-0_0.93-1_1.19-2_0.97-3_0.67\", \"1679_l_2_r-0_0.64-1_0.47-2_0.25-3_0.57\", \"1680_l_2_r-0_0.9-1_0.54-2_1.19-3_0.86\", \"1681_l_2_r-0_0.6-1_0.4-2_0.07-3_0.16\", \"1682_l_2_r-0_0.83-1_0.69-2_0.01-3_0.18\", \"1683_l_2_r-0_0.76-1_0.37-2_0.62-3_0.84\", \"1684_l_2_r-0_1.33-1_0.17-2_0.25-3_0.57\", \"1685_l_2_r-0_0.04-1_1.53-2_0.93-3_1.05\", \"1686_l_2_r-0_0.27-1_0.11-2_1.07-3_0.74\", \"1687_l_2_r-0_0.13-1_1.49-2_0.64-3_0.87\", \"1688_l_2_r-0_0.12-1_0.26-2_1.05-3_0.43\", \"1689_l_2_r-0_0.4-1_0.83-2_0.52-3_0.07\", \"1690_l_2_r-0_0.21-1_0.5-2_1.34-3_0.24\", \"1691_l_2_r-0_0.76-1_0.34-2_0.81-3_1.36\", \"1692_l_2_r-0_1.67-1_0.73-2_0.59-3_0.58\", \"1693_l_2_r-0_0.89-1_0.33-2_0.78-3_0.46\", \"1694_l_2_r-0_0.11-1_0.26-2_0.57-3_0.59\", \"1695_l_2_r-0_0.19-1_2.2-2_0.65-3_0.57\", \"1696_l_2_r-0_0.21-1_1.05-2_1.09-3_0.79\", \"1697_l_2_r-0_0.86-1_0.1-2_1.11-3_0.61\", \"1698_l_2_r-0_0.39-1_0.91-2_0.03-3_0.84\", \"1699_l_2_r-0_0.86-1_0.89-2_0.69-3_0.09\", \"1700_l_2_r-0_0.33-1_1.1-2_0.7-3_0.76\", \"1701_l_2_r-0_0.99-1_1.68-2_0.41-3_0.34\", \"1702_l_2_r-0_0.64-1_0.09-2_0.6-3_0.31\", \"1703_l_2_r-0_0.47-1_0.97-2_0.18-3_0.06\", \"1704_l_2_r-0_2.1-1_0.2-2_0.67-3_0.38\", \"1705_l_2_r-0_0.75-1_0.71-2_0.29-3_0.78\", \"1706_l_2_r-0_0.5-1_0.62-2_1.02-3_0.54\", \"1707_l_2_r-0_1.18-1_0.09-2_0.38-3_0.65\", \"1708_l_2_r-0_0.1-1_1.14-2_0.67-3_0.27\", \"1709_l_2_r-0_0.06-1_1.06-2_0.68-3_0.59\", \"1710_l_2_r-0_1.2-1_0.88-2_0.68-3_1.06\", \"1711_l_2_r-0_0.96-1_0.83-2_0.87-3_0.51\", \"1712_l_2_r-0_1.77-1_1.77-2_0.73-3_0.93\", \"1713_l_2_r-0_0.34-1_0.77-2_1.63-3_0.07\", \"1714_l_2_r-0_1.95-1_0.33-2_1.63-3_0.56\", \"1715_l_2_r-0_0.93-1_1.44-2_0.58-3_1.07\", \"1716_l_2_r-0_0.16-1_0.84-2_0.99-3_1.05\", \"1717_l_2_r-0_0.0-1_0.2-2_0.5-3_0.54\", \"1718_l_2_r-0_0.93-1_1.81-2_0.79-3_1.09\", \"1719_l_2_r-0_0.67-1_1.11-2_1.02-3_1.44\", \"1720_l_2_r-0_0.16-1_1.09-2_0.62-3_0.09\", \"1721_l_2_r-0_0.14-1_1.22-2_0.96-3_1.06\", \"1722_l_2_r-0_0.78-1_0.33-2_1.15-3_1.69\", \"1723_l_2_r-0_0.67-1_1.09-2_0.48-3_1.32\", \"1724_l_2_r-0_0.07-1_0.95-2_0.01-3_0.62\", \"1725_l_2_r-0_1.22-1_1.03-2_0.24-3_0.91\", \"1726_l_2_r-0_0.08-1_0.09-2_0.15-3_0.32\", \"1727_l_2_r-0_1.19-1_0.93-2_0.18-3_0.99\", \"1728_l_2_r-0_1.39-1_0.55-2_0.84-3_0.35\", \"1729_l_2_r-0_0.94-1_0.67-2_0.35-3_0.8\", \"1730_l_2_r-0_0.23-1_0.72-2_0.24-3_0.44\", \"1731_l_2_r-0_0.51-1_1.17-2_0.97-3_0.24\", \"1732_l_2_r-0_0.49-1_0.73-2_0.46-3_0.38\", \"1733_l_2_r-0_1.41-1_0.3-2_0.82-3_0.43\", \"1734_l_2_r-0_0.63-1_1.8-2_1.0-3_0.01\", \"1735_l_2_r-0_0.23-1_0.59-2_0.2-3_1.15\", \"1736_l_2_r-0_1.02-1_0.8-2_0.52-3_0.62\", \"1737_l_2_r-0_0.92-1_1.42-2_0.26-3_0.77\", \"1738_l_2_r-0_0.06-1_1.17-2_0.69-3_0.4\", \"1739_l_2_r-0_0.34-1_0.19-2_0.7-3_0.12\", \"1740_l_2_r-0_0.42-1_0.93-2_0.15-3_1.2\", \"1741_l_2_r-0_1.18-1_1.63-2_1.2-3_0.42\", \"1742_l_2_r-0_0.43-1_1.11-2_0.97-3_0.12\", \"1743_l_2_r-0_0.12-1_0.55-2_1.05-3_0.14\", \"1744_l_2_r-0_0.64-1_1.88-2_0.05-3_0.58\", \"1745_l_2_r-0_0.01-1_1.21-2_0.11-3_1.66\", \"1746_l_2_r-0_0.51-1_1.45-2_1.33-3_0.81\", \"1747_l_2_r-0_1.27-1_0.36-2_0.85-3_0.6\", \"1748_l_2_r-0_0.93-1_0.62-2_0.29-3_0.9\", \"1749_l_2_r-0_0.17-1_1.18-2_0.75-3_2.16\", \"1750_l_2_r-0_0.2-1_1.29-2_0.12-3_0.24\", \"1751_l_2_r-0_0.79-1_0.92-2_1.46-3_0.48\", \"1752_l_2_r-0_0.59-1_0.59-2_0.24-3_0.03\", \"1753_l_2_r-0_0.39-1_1.44-2_0.69-3_0.83\", \"1754_l_2_r-0_1.0-1_0.27-2_0.87-3_0.88\", \"1755_l_2_r-0_2.28-1_0.6-2_0.71-3_1.46\", \"1756_l_2_r-0_0.36-1_0.43-2_0.81-3_0.72\", \"1757_l_2_r-0_0.08-1_1.5-2_0.33-3_0.41\", \"1758_l_2_r-0_0.06-1_0.17-2_0.54-3_1.0\", \"1759_l_2_r-0_0.21-1_0.35-2_0.51-3_1.21\", \"1760_l_2_r-0_1.38-1_0.12-2_1.3-3_0.77\", \"1761_l_2_r-0_0.6-1_0.5-2_0.53-3_0.27\", \"1762_l_2_r-0_0.49-1_0.97-2_1.25-3_1.57\", \"1763_l_2_r-0_0.04-1_0.74-2_0.01-3_0.78\", \"1764_l_2_r-0_0.84-1_0.4-2_0.67-3_0.32\", \"1765_l_2_r-0_0.21-1_2.31-2_1.1-3_0.17\", \"1766_l_2_r-0_0.4-1_0.59-2_1.27-3_0.17\", \"1767_l_2_r-0_0.57-1_0.2-2_0.17-3_0.41\", \"1768_l_2_r-0_0.26-1_0.3-2_0.71-3_0.38\", \"1769_l_2_r-0_0.43-1_1.08-2_0.73-3_0.52\", \"1770_l_2_r-0_0.65-1_0.24-2_0.03-3_0.31\", \"1771_l_2_r-0_0.94-1_0.22-2_0.87-3_0.5\", \"1772_l_2_r-0_0.49-1_0.49-2_1.49-3_0.12\", \"1773_l_2_r-0_1.0-1_0.53-2_0.28-3_0.4\", \"1774_l_2_r-0_0.1-1_0.88-2_0.89-3_0.61\", \"1775_l_2_r-0_0.5-1_0.57-2_0.03-3_1.56\", \"1776_l_2_r-0_0.24-1_1.01-2_0.29-3_0.36\", \"1777_l_2_r-0_1.14-1_0.84-2_0.61-3_0.95\", \"1778_l_2_r-0_1.55-1_0.0-2_0.07-3_1.07\", \"1779_l_2_r-0_0.72-1_0.55-2_0.36-3_0.22\", \"1780_l_2_r-0_0.32-1_1.13-2_0.35-3_0.62\", \"1781_l_2_r-0_0.0-1_0.91-2_0.71-3_0.5\", \"1782_l_2_r-0_0.98-1_0.22-2_0.01-3_0.05\", \"1783_l_2_r-0_0.05-1_0.01-2_0.43-3_0.3\", \"1784_l_2_r-0_1.36-1_0.58-2_1.35-3_0.89\", \"1785_l_2_r-0_1.11-1_1.03-2_0.49-3_0.29\", \"1786_l_2_r-0_0.19-1_0.31-2_0.79-3_0.2\", \"1787_l_2_r-0_0.78-1_0.45-2_0.81-3_0.69\", \"1788_l_2_r-0_0.13-1_0.71-2_0.69-3_0.23\", \"1789_l_2_r-0_0.71-1_0.11-2_0.14-3_1.37\", \"1790_l_2_r-0_0.42-1_2.08-2_1.41-3_0.77\", \"1791_l_2_r-0_0.15-1_1.1-2_0.48-3_0.33\", \"1792_l_2_r-0_1.41-1_0.34-2_1.05-3_1.51\", \"1793_l_2_r-0_1.12-1_0.1-2_0.06-3_0.33\", \"1794_l_2_r-0_0.87-1_0.46-2_1.47-3_1.38\", \"1795_l_2_r-0_1.26-1_0.72-2_1.33-3_0.73\", \"1796_l_2_r-0_1.16-1_0.94-2_0.79-3_0.21\", \"1797_l_2_r-0_0.44-1_0.03-2_0.09-3_0.79\", \"1798_l_2_r-0_0.99-1_0.53-2_0.25-3_0.34\", \"1799_l_2_r-0_0.93-1_1.16-2_1.01-3_1.24\", \"1800_l_2_r-0_0.32-1_0.44-2_0.21-3_0.34\", \"1801_l_2_r-0_0.9-1_0.87-2_0.07-3_0.77\", \"1802_l_2_r-0_0.15-1_0.72-2_0.84-3_0.31\", \"1803_l_2_r-0_0.13-1_0.55-2_1.36-3_1.14\", \"1804_l_2_r-0_0.69-1_1.43-2_0.75-3_0.53\", \"1805_l_2_r-0_0.25-1_1.21-2_0.67-3_0.87\", \"1806_l_2_r-0_1.38-1_0.58-2_0.4-3_0.35\", \"1807_l_2_r-0_0.59-1_0.23-2_0.68-3_1.82\", \"1808_l_2_r-0_0.32-1_0.83-2_1.01-3_0.48\", \"1809_l_2_r-0_1.44-1_0.32-2_0.62-3_0.01\", \"1810_l_2_r-0_0.12-1_0.1-2_0.81-3_1.26\", \"1811_l_2_r-0_0.25-1_1.35-2_0.11-3_1.02\", \"1812_l_2_r-0_0.82-1_0.83-2_0.66-3_0.31\", \"1813_l_2_r-0_1.04-1_0.06-2_0.78-3_0.72\", \"1814_l_2_r-0_0.74-1_1.85-2_0.66-3_0.67\", \"1815_l_2_r-0_1.13-1_0.38-2_0.15-3_0.5\", \"1816_l_2_r-0_0.4-1_1.52-2_0.2-3_1.09\", \"1817_l_2_r-0_1.72-1_0.51-2_0.32-3_0.24\", \"1818_l_2_r-0_1.07-1_0.25-2_0.87-3_0.43\", \"1819_l_2_r-0_1.74-1_1.07-2_0.34-3_1.81\", \"1820_l_2_r-0_1.06-1_0.02-2_0.56-3_0.66\", \"1821_l_2_r-0_0.97-1_0.44-2_0.84-3_0.03\", \"1822_l_2_r-0_0.96-1_1.7-2_0.39-3_0.48\", \"1823_l_2_r-0_0.21-1_0.3-2_0.68-3_0.71\", \"1824_l_2_r-0_0.73-1_0.31-2_0.56-3_1.46\", \"1825_l_2_r-0_0.22-1_0.5-2_0.78-3_0.98\", \"1826_l_2_r-0_0.82-1_1.01-2_0.56-3_0.51\", \"1827_l_2_r-0_0.7-1_0.37-2_1.15-3_1.33\", \"1828_l_2_r-0_1.21-1_0.67-2_0.11-3_0.08\", \"1829_l_2_r-0_0.12-1_0.97-2_0.82-3_1.03\", \"1830_l_2_r-0_1.3-1_0.0-2_0.82-3_0.62\", \"1831_l_2_r-0_1.34-1_1.87-2_0.92-3_0.4\", \"1832_l_2_r-0_1.78-1_0.01-2_0.32-3_0.45\", \"1833_l_2_r-0_0.93-1_0.9-2_1.05-3_0.48\", \"1834_l_2_r-0_0.31-1_0.05-2_0.13-3_1.32\", \"1835_l_2_r-0_1.37-1_0.29-2_0.07-3_0.02\", \"1836_l_2_r-0_0.01-1_0.4-2_0.19-3_0.56\", \"1837_l_2_r-0_0.97-1_0.54-2_0.29-3_0.41\", \"1838_l_2_r-0_0.73-1_1.15-2_0.87-3_0.46\", \"1839_l_2_r-0_0.95-1_0.92-2_0.57-3_1.84\", \"1840_l_2_r-0_0.31-1_1.18-2_0.56-3_0.2\", \"1841_l_2_r-0_0.16-1_0.22-2_0.46-3_0.06\", \"1842_l_2_r-0_0.33-1_0.84-2_0.06-3_0.12\", \"1843_l_2_r-0_0.82-1_0.57-2_1.2-3_1.05\", \"1844_l_2_r-0_1.18-1_1.49-2_1.92-3_0.26\", \"1845_l_2_r-0_0.7-1_0.18-2_0.0-3_1.09\", \"1846_l_2_r-0_0.75-1_1.99-2_0.21-3_0.89\", \"1847_l_2_r-0_0.22-1_0.27-2_0.68-3_0.23\", \"1848_l_2_r-0_1.11-1_0.64-2_0.11-3_0.28\", \"1849_l_2_r-0_1.24-1_0.9-2_0.25-3_1.47\", \"1850_l_2_r-0_0.3-1_0.03-2_0.93-3_0.1\", \"1851_l_2_r-0_0.05-1_0.71-2_0.19-3_0.32\", \"1852_l_2_r-0_0.21-1_0.65-2_0.23-3_0.08\", \"1853_l_2_r-0_0.42-1_0.91-2_0.15-3_0.02\", \"1854_l_2_r-0_1.49-1_2.01-2_0.57-3_0.13\", \"1855_l_2_r-0_0.32-1_0.22-2_0.88-3_0.08\", \"1856_l_2_r-0_1.48-1_0.96-2_0.58-3_0.07\", \"1857_l_2_r-0_0.11-1_0.8-2_1.24-3_0.5\", \"1858_l_2_r-0_1.62-1_1.4-2_0.16-3_1.07\", \"1859_l_2_r-0_0.2-1_0.31-2_0.37-3_0.68\", \"1860_l_2_r-0_0.62-1_0.93-2_0.26-3_0.54\", \"1861_l_2_r-0_1.58-1_1.03-2_0.42-3_0.29\", \"1862_l_2_r-0_0.56-1_0.28-2_1.03-3_0.33\", \"1863_l_2_r-0_0.5-1_0.81-2_0.7-3_0.21\", \"1864_l_2_r-0_0.28-1_0.55-2_1.17-3_1.52\", \"1865_l_2_r-0_0.46-1_0.11-2_0.86-3_0.76\", \"1866_l_2_r-0_1.17-1_0.22-2_0.23-3_0.22\", \"1867_l_2_r-0_0.05-1_1.16-2_0.15-3_0.06\", \"1868_l_2_r-0_1.31-1_1.17-2_0.36-3_1.97\", \"1869_l_2_r-0_0.77-1_0.34-2_0.26-3_0.42\", \"1870_l_2_r-0_0.34-1_0.86-2_0.7-3_0.71\", \"1871_l_2_r-0_0.28-1_0.41-2_0.45-3_1.51\", \"1872_l_2_r-0_0.96-1_0.71-2_0.75-3_1.09\", \"1873_l_2_r-0_0.48-1_0.63-2_0.74-3_0.23\", \"1874_l_2_r-0_0.09-1_0.35-2_0.11-3_0.25\", \"1875_l_2_r-0_0.93-1_0.33-2_1.64-3_1.0\", \"1876_l_2_r-0_0.66-1_0.19-2_0.03-3_0.98\", \"1877_l_2_r-0_0.39-1_0.26-2_1.41-3_0.93\", \"1878_l_2_r-0_0.16-1_2.75-2_0.93-3_1.1\", \"1879_l_2_r-0_1.29-1_1.65-2_0.78-3_0.85\", \"1880_l_2_r-0_0.38-1_0.28-2_0.93-3_1.03\", \"1881_l_2_r-0_0.93-1_0.58-2_0.21-3_0.54\", \"1882_l_2_r-0_0.79-1_1.1-2_0.5-3_0.88\", \"1883_l_2_r-0_0.5-1_0.48-2_0.41-3_0.25\", \"1884_l_2_r-0_0.67-1_1.2-2_0.42-3_0.33\", \"1885_l_2_r-0_0.95-1_0.95-2_0.02-3_0.39\", \"1886_l_2_r-0_1.68-1_2.59-2_0.47-3_0.71\", \"1887_l_2_r-0_1.04-1_0.03-2_0.47-3_0.53\", \"1888_l_2_r-0_1.39-1_1.32-2_1.31-3_0.16\", \"1889_l_2_r-0_0.44-1_3.27-2_0.61-3_0.75\", \"1890_l_2_r-0_1.75-1_0.91-2_0.98-3_0.28\", \"1891_l_2_r-0_0.47-1_0.13-2_0.99-3_0.0\", \"1892_l_2_r-0_1.27-1_0.61-2_0.25-3_1.16\", \"1893_l_2_r-0_1.06-1_0.7-2_2.32-3_0.35\", \"1894_l_2_r-0_0.34-1_0.22-2_0.12-3_0.31\", \"1895_l_2_r-0_0.02-1_0.54-2_0.8-3_0.26\", \"1896_l_2_r-0_1.4-1_1.79-2_0.91-3_0.4\", \"1897_l_2_r-0_1.04-1_0.13-2_1.45-3_0.16\", \"1898_l_2_r-0_0.97-1_0.37-2_0.58-3_0.53\", \"1899_l_2_r-0_1.02-1_0.53-2_0.98-3_1.46\", \"1900_l_2_r-0_0.05-1_1.14-2_0.34-3_1.08\", \"1901_l_2_r-0_0.37-1_0.06-2_1.36-3_0.38\", \"1902_l_2_r-0_0.73-1_1.04-2_0.34-3_1.27\", \"1903_l_2_r-0_0.47-1_0.18-2_0.8-3_0.27\", \"1904_l_2_r-0_1.1-1_0.2-2_0.49-3_1.1\", \"1905_l_2_r-0_0.2-1_1.19-2_0.12-3_0.86\", \"1906_l_2_r-0_1.74-1_0.2-2_0.37-3_0.08\", \"1907_l_2_r-0_0.68-1_0.21-2_0.9-3_1.51\", \"1908_l_2_r-0_1.58-1_1.35-2_0.49-3_0.26\", \"1909_l_2_r-0_0.44-1_0.76-2_0.32-3_1.09\", \"1910_l_2_r-0_1.53-1_0.72-2_0.7-3_1.1\", \"1911_l_2_r-0_0.89-1_0.07-2_0.07-3_1.3\", \"1912_l_2_r-0_1.1-1_1.08-2_0.02-3_0.23\", \"1913_l_2_r-0_1.33-1_0.35-2_0.56-3_0.11\", \"1914_l_2_r-0_0.82-1_1.72-2_0.31-3_0.94\", \"1915_l_2_r-0_1.5-1_0.39-2_0.79-3_0.4\", \"1916_l_2_r-0_0.76-1_0.89-2_0.63-3_0.69\", \"1917_l_2_r-0_0.62-1_1.85-2_0.34-3_1.39\", \"1918_l_2_r-0_0.17-1_1.53-2_1.13-3_1.29\", \"1919_l_2_r-0_0.62-1_0.4-2_0.4-3_0.54\", \"1920_l_2_r-0_1.52-1_0.65-2_1.53-3_0.88\", \"1921_l_2_r-0_0.23-1_0.63-2_0.46-3_0.5\", \"1922_l_2_r-0_0.34-1_0.5-2_0.53-3_0.22\", \"1923_l_2_r-0_0.24-1_0.27-2_1.66-3_0.17\", \"1924_l_2_r-0_0.01-1_0.65-2_0.29-3_0.92\", \"1925_l_2_r-0_0.61-1_0.06-2_0.3-3_0.63\", \"1926_l_2_r-0_0.4-1_1.02-2_0.53-3_0.99\", \"1927_l_2_r-0_1.49-1_0.43-2_0.88-3_1.76\", \"1928_l_2_r-0_0.82-1_0.33-2_0.65-3_1.33\", \"1929_l_2_r-0_1.22-1_0.64-2_0.55-3_0.38\", \"1930_l_2_r-0_0.96-1_0.05-2_1.71-3_0.66\", \"1931_l_2_r-0_0.03-1_1.21-2_1.11-3_0.06\", \"1932_l_2_r-0_1.55-1_0.01-2_0.04-3_0.76\", \"1933_l_2_r-0_1.74-1_0.36-2_0.31-3_0.2\", \"1934_l_2_r-0_1.04-1_0.52-2_0.25-3_0.64\", \"1935_l_2_r-0_0.66-1_0.72-2_0.25-3_0.21\", \"1936_l_2_r-0_1.45-1_1.16-2_0.91-3_0.16\", \"1937_l_2_r-0_1.48-1_0.85-2_0.3-3_0.28\", \"1938_l_2_r-0_0.33-1_0.78-2_0.13-3_0.75\", \"1939_l_2_r-0_0.06-1_0.95-2_1.27-3_1.02\", \"1940_l_2_r-0_0.96-1_0.71-2_1.45-3_0.09\", \"1941_l_2_r-0_1.22-1_1.09-2_0.36-3_1.72\", \"1942_l_2_r-0_0.7-1_1.23-2_0.57-3_0.64\", \"1943_l_2_r-0_1.25-1_0.94-2_1.17-3_1.3\", \"1944_l_2_r-0_0.36-1_0.45-2_1.15-3_0.29\", \"1945_l_2_r-0_0.04-1_0.35-2_0.33-3_0.32\", \"1946_l_2_r-0_0.18-1_0.06-2_0.22-3_0.02\", \"1947_l_2_r-0_0.46-1_0.59-2_1.4-3_0.2\", \"1948_l_2_r-0_1.19-1_2.12-2_0.1-3_1.31\", \"1949_l_2_r-0_0.17-1_0.91-2_1.38-3_0.99\", \"1950_l_2_r-0_0.7-1_1.0-2_1.11-3_0.6\", \"1951_l_2_r-0_1.45-1_0.88-2_0.08-3_0.09\", \"1952_l_2_r-0_0.04-1_0.55-2_0.53-3_0.43\", \"1953_l_2_r-0_0.72-1_1.17-2_0.14-3_0.41\", \"1954_l_2_r-0_0.88-1_0.55-2_0.12-3_0.54\", \"1955_l_2_r-0_0.63-1_0.95-2_1.04-3_0.74\", \"1956_l_2_r-0_0.01-1_1.24-2_0.63-3_0.68\", \"1957_l_2_r-0_1.0-1_0.41-2_0.75-3_1.14\", \"1958_l_2_r-0_0.71-1_0.06-2_1.21-3_2.07\", \"1959_l_2_r-0_0.54-1_0.69-2_1.14-3_0.54\", \"1960_l_2_r-0_0.36-1_0.5-2_0.1-3_0.77\", \"1961_l_2_r-0_0.75-1_0.25-2_0.26-3_0.57\", \"1962_l_2_r-0_1.74-1_0.01-2_1.2-3_0.82\", \"1963_l_2_r-0_0.6-1_0.24-2_0.9-3_0.09\", \"1964_l_2_r-0_0.98-1_0.29-2_0.71-3_0.22\", \"1965_l_2_r-0_1.4-1_0.55-2_1.05-3_0.65\", \"1966_l_2_r-0_0.64-1_0.52-2_0.51-3_0.54\", \"1967_l_2_r-0_0.86-1_0.79-2_0.9-3_0.38\", \"1968_l_2_r-0_0.5-1_0.05-2_0.83-3_0.65\", \"1969_l_2_r-0_0.95-1_1.67-2_0.39-3_0.46\", \"1970_l_2_r-0_1.33-1_0.83-2_0.48-3_1.1\", \"1971_l_2_r-0_0.3-1_0.61-2_0.43-3_0.99\", \"1972_l_2_r-0_1.11-1_0.99-2_0.32-3_0.12\", \"1973_l_2_r-0_0.83-1_0.08-2_0.62-3_1.17\", \"1974_l_2_r-0_0.38-1_1.29-2_0.72-3_0.8\", \"1975_l_2_r-0_0.13-1_0.08-2_0.09-3_0.45\", \"1976_l_2_r-0_0.55-1_1.13-2_1.14-3_0.57\", \"1977_l_2_r-0_0.23-1_0.29-2_0.27-3_0.31\", \"1978_l_2_r-0_0.24-1_0.69-2_0.76-3_1.13\", \"1979_l_2_r-0_1.21-1_0.54-2_0.73-3_0.6\", \"1980_l_2_r-0_0.26-1_0.23-2_1.13-3_0.69\", \"1981_l_2_r-0_0.8-1_0.26-2_0.43-3_0.27\", \"1982_l_2_r-0_0.53-1_1.22-2_1.5-3_0.4\", \"1983_l_2_r-0_1.23-1_0.72-2_0.36-3_0.9\", \"1984_l_2_r-0_0.15-1_0.19-2_1.06-3_0.54\", \"1985_l_2_r-0_0.64-1_0.33-2_0.76-3_0.3\", \"1986_l_2_r-0_0.71-1_0.26-2_0.69-3_1.14\", \"1987_l_2_r-0_0.64-1_1.37-2_1.49-3_0.06\", \"1988_l_2_r-0_0.34-1_0.5-2_0.99-3_0.45\", \"1989_l_2_r-0_0.15-1_0.0-2_0.3-3_0.36\", \"1990_l_2_r-0_1.73-1_0.5-2_0.8-3_0.52\", \"1991_l_2_r-0_0.53-1_2.59-2_0.33-3_0.15\", \"1992_l_2_r-0_0.13-1_0.02-2_1.61-3_0.92\", \"1993_l_2_r-0_0.15-1_0.63-2_0.49-3_0.6\", \"1994_l_2_r-0_0.15-1_1.81-2_0.43-3_0.32\", \"1995_l_2_r-0_0.05-1_0.07-2_0.44-3_0.01\", \"1996_l_2_r-0_0.4-1_0.18-2_1.16-3_0.14\", \"1997_l_2_r-0_1.62-1_0.63-2_0.73-3_0.8\"], \"type\": \"scatter3d\", \"x\": [-0.6603312465422371, -0.4875765751785923, 0.13057285643061767, -0.061728983393185555, 1.8640764806446732, 0.7718089332207013, 1.9133174633774441, -0.23804468408399515, -0.10803810030392214, 1.292285394579021, -0.26479608287559486, -0.6302839245443341, -1.3617056589183116, 3.6108084371543083, 0.6979778595794512, 3.539188200859078, -0.42316469647957433, -0.606557443419838, -1.1878229409655514, 0.6692986403270207, -0.7242877881078951, -0.01977476747018425, -0.7490919594386973, 0.5541304394449774, 0.20548257817174864, -0.07550669666632248, -0.3767697283102416, -0.9599379092469607, -0.1853322165901421, -0.16500034259847007, 3.2443184123226265, -0.6740742851557489, 0.294931140289848, 0.9890315915339203, 0.36036257867351973, -0.2789110709895499, 1.0133904858146803, -0.3877902450644628, 1.7557124292675719, -0.34680870106574524, -0.13199089083445759, 1.8441764435848524, -0.8718516273195289, 1.4008821934092799, -0.33119490082959224, -0.6818326873733485, -0.07524697317409057, -0.0798212132782723, 2.049776784989839, -1.0224306860606514, -0.13643612661366444, -0.04558883964224991, -0.3528151125252448, 2.150898280451849, -0.049937644813269344, 1.308315898517408, 0.969841463225047, 1.668866792191904, -0.7039037614534942, -0.6330758566358721, 0.03411529354872611, -0.4399828168090385, 3.070018578316514, 2.5793085007232306, 0.8363377812567212, 0.12646962193258604, -0.9849336973455807, 0.2947172083107924, 1.0500439748909454, -0.24836840919937164, -0.007855378798393264, 1.4176272502200125, 1.544211646190013, 1.6425121812041832, -0.3284385261281433, 0.14983673740658676, -0.05526460830841384, -0.08901251283605727, 2.6706289817202045, -0.1877749071983481, -0.013935620742364208, -0.5665378233032949, 0.6495909971041756, -0.7259321460541748, -0.9457426019060327, 1.0187703793259362, -0.30720082826985373, 1.4079141717198966, 1.9863276504173069, 2.347675468091341, -1.8407236643448543, 1.6468159012133952, -0.8930574109358689, -0.05374781247688798, 1.720579855429519, -0.2149897599746411, -0.5781904433543037, 0.30636642354457433, 2.2709363383363934, -0.18164392498062432, -0.3169173932530487, -0.5565969412108835, -0.7240196891115447, -0.20003651839636905, -0.152138466439941, -0.09074589474437067, 3.719132318892343, -0.47432640234393464, 1.2803892550925162, 1.8433769096622954, 0.7829257403865686, -0.5070971129161983, -0.469115830539256, -1.1327438737035167, -0.6658979707993296, -1.5165521542424427, -0.541925967449933, 0.6796102566345359, 0.31793273449988435, 1.148045783666063, -0.11196884466775336, -0.35843857063706164, -0.08105009847573896, 0.2333656042380554, -0.3061323972461789, 1.0186545401515639, 0.019476024366174016, -0.8595157179904356, -1.8817568671376184, 0.7455983499818466, 3.0158459757415375, -0.5866731193232513, -0.16320007067029585, 2.0606596307322897, 2.502189609817396, 0.4251054567219106, 1.3123934759847633, -0.1508775283127064, -0.7914199204816372, -0.15947219183280636, 0.6283320902538054, 1.1432429564261564, 2.4422082605822144, -0.8108765692437214, -0.22128232499418687, 0.5377630234347339, 2.0687570755669853, 0.4741351620767805, -0.13148218172754045, 1.459714593138721, 3.053515765610054, 0.13211440305812217, 0.054891289206926985, 0.7317408765638718, -1.1546558035957095, 1.278407667240183, -0.36349155058920735, -0.2524805615037873, -0.004064996335705562, 1.9247676038750283, 0.1732839209552014, 0.8405659485414955, -0.8586833125207403, 0.8580712961866093, 1.3745465985197711, 1.1889077326189115, 2.8457553131939606, 0.8486513908153781, 2.3042369527904887, 1.484260864765662, 1.3851196273615507, 0.3988399714753643, -0.7635525451405878, 0.13810350286199646, 0.7385114151938763, -2.503368875702764, -0.41631466670668105, -0.4202177950331538, -0.7155063279124703, -0.020718463477047422, 0.06149950832899531, 1.9892913888493262, 0.05104182378063571, 1.8751827008249273, -0.5977069533433994, -0.2784433571990814, 1.1291570627915215, -0.113572852598812, -0.4027604534083129, 1.7605250048624095, 0.3059277476215645, 0.024146907536292006, 0.0871005946403276, 2.2285710946246713, 0.5909860786341133, 0.7082122333246704, 0.6617701441442105, 1.8941129690853038, 1.8312476754788882, 0.1342194491962081, 0.5919720363175252, 1.3440106587601799, 1.7398521239370326, 1.138845130206943, 0.11738179890676326, 0.9589473613785918, 0.7335884812726516, 1.5894538874535877, 1.9897855085718417, 0.8766228152987888, 0.5801028078894934, 0.731040265414248, 1.7360611201285514, 2.9891937265950883, 1.017922430829226, 0.8960757241508709, 0.9506442770015512, 0.8978355997484329, 2.5151551758073456, 1.7807851395052468, 2.137128822320981, 0.12496045203371053, 0.5036455771654926, 2.3324356583750308, 1.8147243933356236, 1.3576177305490293, 0.6152615406471482, 1.9061844137497277, 0.36409853670797965, 2.2991182370353442, 0.8017016436218218, 2.998912738184326, 1.615783419492249, 1.311446354668616, 0.6837141225133861, 0.06259401438092438, 2.541672725419529, 2.0786901357188756, 0.15962256365280458, 3.020957815547611, 0.18398632615369193, 0.06713069428942531, 2.086774648926175, 0.8037857372129384, 0.6863234132054227, 2.542202559975429, 1.581278789002417, 2.049409321031156, 0.7988168432323525, 0.7930191188389623, 1.079304501529687, 1.3112498120026328, 1.1229487040294024, 1.7833511379461633, 1.7988605349116065, 0.5322599665525392, 0.4976794533728185, 0.19955373735855964, 1.6514116280585687, 1.5851873990143057, 2.4331992280446446, 1.698735419754389, 0.11662046884023869, 2.2134379858212294, 0.946620110866093, 1.1458694924371164, 2.066173065377928, 1.9530514514440531, 0.9069282355051821, 2.4437959342587856, 0.8418034234236491, 1.7412497134767269, 1.2487948594518534, 0.19869795759238507, 1.6797318224833937, 1.8284870703385625, 0.926856165640137, 2.4017112372626377, 1.7329043387589127, 0.9605939521538862, 3.5043356973057502, 1.8940196813754555, 1.3573938233093736, 0.9223072498640108, 0.7473249347119875, 0.027432433403138168, 0.839272850225337, 1.0972607554932183, 1.503171349279906, 1.613593511205946, 0.799912324197984, 2.042235834279772, 1.5250515322873617, 1.7691518811566187, 0.9343202529933416, 1.749614650631336, 0.17980244035569526, 2.9050583357840667, 0.7279736472723234, 0.14783821766309846, 0.7392284579439734, 1.0795604951056637, 0.7285865439088353, 1.541169627133442, 0.5072670200256714, 0.4777164168728576, 1.2941739452925503, 1.6763036144106755, 2.2753670043494107, 1.4209513565832004, 1.266994249563584, 2.048893290368474, 0.982960793095521, 0.3002051151487941, 0.8079791604587314, 0.9377107899155387, 1.3713505299462474, 0.8675055390287393, 2.1220929929248493, 0.2395617312106243, 1.851463393760023, 0.8754479512453279, 1.6494937324831906, 1.3292751356812125, 0.5266962051996409, 0.15746249117579503, 1.9322654094964826, 1.7936094136407656, 2.694167711868624, 1.06758835238007, 1.6788375662012414, 3.405466447531003, 0.006633681499070732, 0.7381055039322031, 0.28039833183233587, 0.6706167094050454, 0.89010491499093, 1.6521469383010483, 1.0620326914351619, 1.987250380062933, 1.4260867514202271, 0.8294825158367108, 0.095675295580546, 1.247921812672863, 1.7366335220590159, 0.2600783063787395, 1.1856609000156881, 1.691261984982412, 1.6892559886157952, 0.40121270483720795, 0.6880487786438705, 1.0005200410818806, 0.3473431972325618, 2.1131550355216255, 0.6915751981344855, 1.4906925852565147, 0.25696876298708027, 0.8324283834884794, 1.7146682620030282, 0.5810657944187456, 1.8644133653463912, 1.5229373679165592, 2.042233228664328, 2.201178499938614, 1.1317458762745392, 1.1514529746425541, 1.12831877129504, 1.464589483177461, 2.547880360638036, 2.4692819480488963, 0.09242100750116211, 1.0356251546349347, 0.19969636342277197, 0.708172725793236, 2.0233673133588463, 0.5354106468912481, 3.250786075041122, 1.0621848348534393, 2.3534386755212653, 0.8264754082180426, 1.7749070328963468, 0.7663997326192856, 2.7665442875311905, 1.4388747158240378, 1.1979898084866725, 1.0173002002831737, 2.6162772695367, 1.1070016444812307, 1.6328483956139517, 2.3195434311484515, 0.7731920580052638, 1.9350329267364175, 1.0766812219907815, 2.268732121069722, 2.7419740701418243, 0.9330938130583466, 0.5539969114453753, 0.666824667621361, 2.2677179260901617, 1.1715126530426463, 0.7321623964743565, 0.301722000353876, 1.797362912688604, 0.58705003937893, 1.7126382548573345, 1.419548305640923, 1.1716087363469465, 0.19117985802975046, 0.9326822119657622, 1.6342361977444724, 1.1057824341581328, 2.638096802897608, 3.133927521001217, 1.2149448904449232, 1.5943579696035166, 0.35971330553297653, 2.2538694939743102, 1.1821464848436294, 1.2911168007924116, 0.9175199689348985, 0.5869206341823174, 1.4438053821699446, 0.6358622851246436, 0.8839474970787142, 1.183501083531277, 1.9571849111814812, 0.1685987628667891, 0.34676170525644, 0.12016791293838724, 0.7926347255275898, 1.0591423564727132, 0.738360998811761, 1.240776596557065, 2.313784508751307, 0.5915074962672859, 0.1972195410873524, 0.7766297802764587, 1.6318522813959015, 1.309813210876366, 1.1201950815346782, 0.493035687910111, 0.5343108117926381, 1.750522237000085, 0.5688446084959243, 1.012040387882515, 0.8581453189312789, 0.0025976889547956183, 0.7438452017870667, 1.9380439623953416, 1.730463088722576, 0.9297384176149501, 0.3455671091129412, 0.5845745937610075, 1.027253489844334, 0.3104195707972722, 2.457034081623695, 1.3939730203887495, 4.391881290935481, 2.084584524166371, 1.1043889213854794, 0.34037150931975646, 0.10344697800416147, 0.4563852345844056, 1.971197548977012, 1.3522371734985994, 3.339614074404897, 3.398574665899481, 1.1587327476795544, 1.5620420785067155, 0.8720486954934727, 0.7206245370331763, 3.706886183831732, 1.4295950803187132, 1.684550347703061, 0.5756509060277875, 1.002496668927165, 1.1240203718212698, 0.32390067068608785, 0.09700949930492353, 2.530218155783972, 0.8259056349974319, 0.43445823830998886, 2.8032399626014364, 0.38332651336125445, 1.5191575339209877, 2.4900888465341544, 0.24957179068923863, 1.0699164536821153, 0.018124348614163233, 1.377501461190914, 2.2002287174756967, 0.29763780755258884, 0.9785161556003311, 0.5903041590017586, 1.9649733694428377, 2.0150743861039344, 0.6711256653497308, 0.9682596160008307, 0.003963370520617904, 1.8670507951861501, 0.7225508609278207, 0.8954743846845837, 1.500261715040974, 0.9114783233858427, 0.39500561089805064, 1.9193272190052164, 1.1756178924654423, 0.9214713866606258, 1.3502361292664122, 0.21906628042726795, 1.777045223095037, 2.9964583869297083, 1.48551761205996, 0.1819120795353344, 2.1893786550203447, 0.2688821943740175, 1.6730962704344432, 0.901253859683984, 2.5994946909787675, 0.712840310770323, 1.7622122846851913, 1.0885311157294544, 2.0093972099279975, 1.7700745595338108, 0.9644662999060936, 1.1638218803956022, 2.228178447272835, 0.31383614610408705, 2.574458491066368, 1.1874621597748418, 0.3543248956162528, 0.809317986652184, 1.546161704721135, 1.0963633107146997, 2.00638517911053, 1.1556667064215218, 1.1677032822821, 1.2328294155084532, 1.0722619332813976, 0.4104746507730207, 1.2722771230405354, 1.191339873032385, 0.3465208850159205, 1.1384222705940261, 0.19406493921477308, 1.6504231735823143, 2.8206723060012378, 2.940393257863124, 1.2402859604076464, 1.8592390223215367, 1.095616910676051, 0.7151775530991165, 1.1978367228378728, 0.9508081965820961, 2.5867686585098157, 0.11032534617755585, 2.38425778121596, 3.2683584154035086, 2.0890006136240187, 0.5158967561148958, 0.6118347940243412, 1.11484401891548, 0.22352832483476204, 0.589120111367718, 3.103341264737188, 0.32280493884666106, 0.3704134189739523, 1.1020402394798388, 1.9387283382103706, 0.30079860502555333, 1.0422613593477754, 1.2443407320748152, 1.0036246864142357, 1.188867138800991, 0.20241344029496, 1.125214280181737, 1.350410984136127, 0.7624016584637054, 0.7238626781899942, 0.07068692571624902, 1.0822586720799978, 0.3477862156693765, 3.153061292172432, 0.39294201429653286, 0.8873172660372362, 1.845575118360374, 3.3574965416355944, 1.7674364939880913, 0.652011487651625, 0.6296496234834339, 0.49880867978593013, 0.26867311984739484, 2.055041096546417, 0.06327560180281955, 1.1619426156670882, 0.8548311640270545, 2.007752806128633, 1.337758970950539, 1.474552845900978, 2.6830364619451856, 0.01015855032249835, 0.36169777351175547, 0.524111552496248, 0.7172574124408404, 1.6087183097339044, 1.1482162043541204, 2.045862170667296, 2.2822098875373396, 1.1540456457182586, 2.0052553889701574, 1.2258219466442786, 1.6821950826844736, 1.2357522085696615, 3.06120501388036, 0.0620571868281965, 0.8457019756476832, 2.4013953378986077, 1.308136645211941, 3.04332442099975, 1.8835302711040423, 1.0784356206857446, 1.167637864208812, 2.3242402586566997, 0.9535342061859303, 1.2904607150833396, 1.181215555447166, 0.06114714510155739, 1.6746152697981787, 1.6572673997643579, 0.2509069051729852, 0.007194566330587793, 0.23917856031062346, 0.9482395532996006, 0.8826811916314716, 0.5205042315540508, 0.7876580745826676, 0.9715568142428854, 2.288411215002169, 2.689231074789154, 0.6071833752560019, 1.2916973935199967, 0.07921231811795959, 1.3138231803120446, 0.44192451407618605, 1.1253377097328596, 0.28888563201699713, 1.7022109392862164, 0.5434301077086325, 0.22958663906595878, 0.2597642339517089, 2.358489583589014, 0.71865408703721, 0.1871716881509662, 1.7365522657235661, 0.7452668688946393, 1.992057355782082, 1.7856556638970855, 0.7107626910050808, 0.5043123441491941, 3.3098593816265627, 2.1998721593685957, 1.703952879132209, 2.627468882433731, 1.0369726645938466, 0.18388146084020918, 1.6626839151206476], \"y\": [-0.4043554700475873, -1.1976005851226597, 0.47501751338751763, 0.1712849360031501, 0.016640323006574365, 0.4378347107523255, 0.21255933219839762, -0.9126882341609063, 0.17197254378809945, 0.17022220718908576, 0.3602117523022872, -1.527443123187594, -0.8822395017121593, 0.3345022838843228, 0.2361425209061414, 1.9144437028481325, 1.1272188980892133, -2.3112174285903024, -1.8289752902093512, 0.19415459092493714, -1.0738167158990761, -1.399808185959715, -1.527243018715641, 0.00523612132147333, 0.13221766764259435, -1.7355588220888833, -1.9403079838271218, -2.0207853586950133, -1.7859789568897977, -0.304519393204144, 0.0731731467579968, 0.38147648187587335, 0.7346066829149485, 0.14932296767488928, 0.04825841997310398, -1.253126165389568, 0.14492341831340028, -1.7972460878971823, 0.1619651229392267, -1.2077242395525694, -0.441467530953602, 0.2631021128553699, -1.916121981540282, 0.5252882361364015, -0.4737604760758689, -0.0717960551009097, 1.3128949460200587, -1.2946194686224897, 0.34866098418020575, -0.7788640099313319, -0.736745906207913, -1.5585980713643433, -2.2438736436542377, 0.1668472215551795, -1.3368099163015559, 1.1965592236117608, 0.33832024747096745, 0.0378839622629239, -0.8902088676200233, 0.2369949137347631, 0.5702018543161962, -0.5601192974758569, 0.16158246622516703, 0.6688394972732317, 0.7711704692583148, 0.1966190525822682, -0.14776620883066371, 0.9739741146701983, 0.1985368581304685, -1.3636789449786209, -0.6479619683162858, 0.6348283178948742, 0.24214201053787177, 1.5058457095698055, 0.8979771591901036, 0.3289750947555665, -1.6221060730800683, 0.029453863219265797, 0.10224603954852118, 0.5387427101781539, -2.0867406745171606, -2.2323227902404836, 0.2747644879911497, -2.851616754440424, -1.4916706832691167, 0.2655618317748496, -2.078867424978795, 0.14479456317923023, 0.021799385102904578, 0.04801695981205145, -1.1508966288315272, 0.13865136706786285, -1.1183942636138116, -2.122688967280351, 0.4441458397508058, -1.2357821768672315, -1.3951278409488828, 0.26609575465582513, 1.6357293043094594, -1.0272305280686624, 1.7114851693778244, -0.6346181361956937, -2.8617541256986323, 1.743287003600432, -0.9149419069065196, -2.136815654522439, 0.04568986657357721, -1.8425886557382967, 0.4407449562718506, 0.27819684765165387, 0.019476986525099438, -0.3635594683828497, -2.233673171124768, -2.392254705809022, -2.3071705977162837, -0.8989628120793495, -0.6721572108812057, 0.4569140235289433, 0.033168216711181975, 0.09545893127300698, -0.444306431254591, -1.249990120078162, -1.4071369270060479, 0.10904196241821351, -1.379046704745284, 0.2735347999433577, 0.6443013513539657, 0.49825463212645715, -0.5584877986877562, 1.3576597260190932, 0.11125483946438997, -1.869781519994532, -0.4538121695900533, 0.9453464069586026, 0.8172053649793969, 0.6380891675811406, 1.7292842099546237, -1.4499593278443346, -0.4080751503342325, -0.9579618865198419, 0.23689211387107045, 0.1444877014444872, 0.6505259132914298, -0.5013855297219765, 1.3461903978779253, 1.086833310028148, 0.6922964349910268, 0.6540614975927972, -1.2776086041635444, 0.3177745043482285, 0.49238827977539423, 1.0191629686573935, 0.06513364335929017, 0.11186297994583017, -1.7988634243269925, 0.4615013010849116, -1.478026076727019, -0.3588250191251775, -1.709745782930622, 0.03687392939703482, 0.6019553054820925, 0.08612748448227525, -1.7095607564824784, 0.15187969602322648, 0.4820268804447079, 0.40609186701259126, 0.9004610563398776, 0.4740503270664651, 0.7348467911772296, 0.0075962110092375745, 0.2052731730096755, 0.7584655918327927, 0.17014640127207437, 0.28477229893877665, 0.7025313639180273, -1.8149958265664372, -1.0177104838061666, 1.0778624814049897, -0.9477011123279327, -0.4573532366013183, 1.5486301500429485, 0.5538339645471475, 0.01317333892574113, 0.14700236766459263, -0.9391134647616176, -1.3084250175934644, 0.5977915655836679, -2.82458237765674, -0.31956077675320393, -1.4693248913712045, -0.6211150298719056, -0.5949957205852505, -0.6044940725724242, -2.9830148786318276, -2.9494548279314454, -0.6655158127445737, -3.129721831093554, -2.4520895996147507, -1.7428799246305176, -0.989213517634712, -2.2951694782341523, -2.3321883806509054, -0.5587605817933144, -0.968986493717545, -1.9024730768344653, -2.071552051540366, -1.4680686576924713, -1.022309640886835, -1.3001922524134253, -1.2686565375427907, -1.011452825268806, -0.4858909969627856, -1.3684688882462666, -1.5673429160448964, -2.613831721750155, -1.202499557941131, -0.028144083228333727, -0.8042348995035851, -1.9958869378753583, -1.8833775421613825, -1.1331539893613065, -1.6542890300243087, -0.05204553900562803, -1.3998169119805044, -1.7712700838525137, -1.4100995628627064, -1.5368991399396044, -0.5977892601983883, -0.6789995636913917, -1.8255857518537757, -3.98382118780823, -0.8358172356273151, -2.135305069209984, -1.749656727458561, -2.5954718352522614, -1.385075195347055, -1.065479088650312, -1.0993365911041197, -1.3949640970272743, -0.3986527195584869, -0.2717260935934259, -2.7448849894967298, -0.7067093966229993, -2.6567084661469984, -0.8087798586210913, -0.7745690901826576, -1.4375288156603638, -1.0967624662358855, -1.5029527632597208, -1.5287540623922837, -1.5267836356276716, -1.6809955426705512, -1.052293770172027, -1.0878328852335872, -0.23282797645750142, -2.6410052964861075, -1.541276390278467, -1.8436476486152387, -4.013299119022818, -1.2745948003075005, -0.735075051104465, -1.5251765210566584, -3.139699896893856, -1.2751802929598721, -0.31798614713310047, -4.0996343675311575, -0.5500884461196514, -2.405462120745922, -1.6651479502542041, -0.8169955023225136, -2.0125717172597577, -0.40517360961265814, -0.212993033645842, -2.8340149123644522, -1.0559572789498408, -0.576142711696854, -0.7954901904566868, -1.2886003695702992, -0.6925323240154659, -1.4950899553912163, -1.3095941938449054, -0.2130956973941992, -1.227844804431327, -0.7434982420633368, -1.3530543796218135, -0.4925024134588154, -1.7887540156769124, -0.9573961198608885, -1.0297248523931768, -1.271663550126916, -0.7238924125559631, -1.0433735495641991, -0.7841123704357169, -1.3666507678844941, -0.14380412542478238, -1.4872429306292703, -1.7836247739526172, -1.1505431780030069, -0.7100781516201207, -2.0607539573477207, -0.953007093709104, -0.5507729058645664, -0.6716964311946638, -1.6676556869331178, -0.6097708672719325, -2.9199513042058713, -1.3812991534176995, -0.9593737536375638, -1.348863548006607, -0.8830055191173357, -2.5593775773686556, -3.293209065147532, -2.74745309629754, -0.7914502958700943, -0.014669673127618132, -1.708460906922528, -1.9126953834274416, -1.4761972480683911, -0.47320263930378237, -1.8596777368929889, -0.3695547182483009, -1.152896377911017, -0.413207476852094, -2.7533795186249552, -0.18450631457852573, -0.8453871530310408, -0.7177969642030022, -1.2401314746239331, -2.582442008334005, -1.4686914508972047, -1.33771493254432, -0.08907260920932347, -3.652086383692732, -1.5707146240512664, -0.17451845393693166, -1.4328524249624803, -0.0866173642325998, -0.9800740800873413, -0.33522772802348977, -1.1553348105115309, -0.5461019544283159, -0.35366794295087456, -0.8764133010209492, -2.8438362739045826, -1.1309115371291816, -0.19568035792189487, -1.407830340201942, -1.0290264071699435, -0.6852804690362001, -1.9111838700672348, -1.6313091084464069, -1.1668931051684335, -1.8561240495331712, -1.5313474682307489, -0.11473443528440164, -2.269996927138025, -1.4520721154795289, -1.268235489667948, -0.4998269709611396, -0.3407174368471504, -0.7259447330285465, -0.3463078410496958, -0.2620642439368577, -2.5647037181550596, -1.0457058063817297, -0.10378365937259026, -0.9119017503649618, -2.4987146198828487, -1.104204164987219, -1.8501396062117386, -1.2263711612767776, -1.5050788535703241, -0.6314363530420085, -2.073711140946418, -0.616330223634997, -0.0927988122040182, -1.1419805959051956, -1.154868203439883, -1.5884902336632445, -1.6440664177909015, -1.855979810289766, -2.5154831173106564, -0.3296100414457884, -1.6259560150692636, -0.8351659341481299, -0.197645525668959, -1.807726792295244, -1.5956855777842849, -1.0887460345703246, -1.2177178567282927, -0.3343337622637642, -1.0886202606377768, -0.9540181255752194, -1.032579404818956, -0.08822476750995578, -1.306415579853017, -2.317344030468781, -1.2801327703511958, -2.6105598706365907, -2.35385925776688, -1.5356735232779692, -1.51480167893898, -3.440723512970352, -1.287193805776807, -0.8839256511199013, -1.7420446834642478, -1.7571936906553605, -1.1588484052151036, -0.9868405396651042, -1.657726634871095, -1.3332319513031905, -2.79844950928244, -1.8789752460588365, -1.361363420587002, -1.4471169918602111, -1.9197297702785887, -0.6176304537546362, -2.9793271496107203, -2.68894146715491, -1.5512627675231596, -2.427585542204513, -2.9910940699463358, -2.3917084386809018, -1.3065889418734085, -0.8325841419824357, -1.4994057831207734, -1.8062410443089325, -0.7149480839142293, -0.6526035833138495, -0.4990491020145842, -0.9730923188752691, -1.9126724662242782, -0.39916576736922316, -3.233231743382515, -1.5053489308804457, -2.489026146760718, -0.2991425208707613, -1.0849077793995634, -0.24125241698430688, -0.2173761686797726, -1.6821719699387545, -1.9653497647640488, -2.5642574491214303, -0.6772859047963924, -1.0417196219843958, -0.836403248619433, -1.4769052819045716, -0.5465552148381754, -1.1313815948084687, -0.9107796704302502, -0.21969070899979526, -1.3088610007524364, -1.5343869468671198, -2.6612349729362412, -1.185308457963076, -0.8175661577469073, -0.9383684515324633, -0.10587164751037836, -2.4432525195274857, -1.5352359320919324, -1.650491633849359, -2.082563698849463, -1.5928360006646953, -1.5279698956203998, -1.2512086348593099, -0.03186726142757268, -1.2153956186754387, -1.8179451269083846, -0.4447853022931939, -1.6410273371482904, -2.1070130602943875, -0.5492300739438915, -1.5945403035849353, -1.2066948775261328, -1.9310810969660612, -1.4892231035493304, -0.8334009639340433, -1.492442612798555, -1.0297100656978184, -1.351873816123767, -1.5707857775927074, -1.8969876968124968, -3.0705495711240114, -1.9061836856502217, -1.6348047283566296, -0.5117128072993551, -0.7091903456613421, -2.9102721083338183, -1.6543296176560816, -0.43658693992982034, -1.7009911778046574, -1.797592027876876, -0.3054341331350626, -0.5015277620457168, -1.0104892864489359, -0.3730367511834515, -2.06710738385287, -2.5169646702300446, -1.1674587695214098, -2.323888606152856, -0.951451520533051, -2.3228357779432027, -0.05390546592113288, -0.2931862004564143, -1.3652110295791724, -0.537224312197239, -1.1466419111750965, -1.3677279699071976, -1.1780906080515292, -1.828172305356821, -1.2862888779274004, -0.916435046291154, -1.5512614622955176, -0.24018498637478713, -1.9885638568776876, -1.65543817835746, -0.6401513768825923, -1.7758126321759546, -0.02751689559373527, -1.598354720174953, -0.6508410207920474, -1.8946282427620191, -2.2299354505659377, -0.9107561387561822, -1.548274633795298, -2.368416781163692, -1.4008899482950357, -1.1957640489308285, -0.9320780958897702, -1.0280317188460706, -0.4626467082884548, -0.8599593570081833, -0.5603550758560992, -0.10614386437603607, -0.21937364287026762, -1.2418260578666958, -2.4679614362100804, -1.788952470140414, -0.8559310531792544, -2.7942276582884924, -1.001044778261603, -1.4193004615133098, -1.21396895105698, -0.3298553722783464, -0.21299079924189934, -0.48211568905653124, -2.750183076957118, -1.6502403874096188, -0.9561778079233134, -0.5800040322384221, -2.9901948465352994, -0.4795822167021455, -1.6777313835510064, -1.570706560272305, -3.182967139183567, -0.025762169621375897, -1.317853939555691, -3.4317795316868733, -0.914037141451213, -0.12682110730719154, -2.0813430743464085, -1.0539070549977005, -1.5701494796089146, -2.6177334482831722, -2.282076090854754, -0.1325513728094515, -0.7111512711035501, -3.3306272466247315, -1.1364270912782517, -1.7538580606965253, -2.729091126223496, -0.1767957325000704, -0.203695941172657, -1.3689175094492576, -2.5168603641231133, -0.20868171433176597, -2.621348079764225, -1.3161760505584554, -1.4955612599364336, -0.5495215510092686, -2.7737642394422033, -0.989947849047323, -1.72138396728936, -0.589006025967781, -2.2550897059130564, -2.0250612489893465, -1.5253682226387775, -2.155667215457863, -2.0799093171254963, -1.2150934520357533, -1.1413225797498643, -0.35062213630455497, -0.6544761136718282, -1.711351859571689, -1.0171984753347263, -0.43457578169290034, -0.3323723731213234, -0.639243511273115, -0.04823356094051523, -1.9675345849887647, -2.288766007977773, -0.926859886335337, -0.6323973144335375, -1.3433612909994104, -1.1860210757643146, -0.853883098997569, -0.7784170326855853, -0.95055211824127, -0.7122208887734216, -1.0860258844606583, -2.0254354727604214, -0.943927168032508, -1.228313039684879, -1.5422771385924827, -0.8443460312640727, -1.555732722942667, -2.1163686661407692, -0.9131323625568207, -0.9997024996276921, -0.9594600409791133, -0.5510025235098304, -1.9065792169573785, -0.5528868779831952, -1.6231887950991235, -1.2418819521152524, -1.187894796526638, -1.7766728137605297, -0.6918442721987492, -0.49949438252843736, -0.3335441794392988, -1.7888347201286403, -0.6913821544431022, -0.885863348654593, -1.0528785276422208, -2.503117217290539, -2.287348025210173, -1.5802681615459204, -1.666992840885054, -0.8286746174469636, -1.2556182566010643, -1.2667729803123566, -0.37237915411060996, -1.2911648882681062, -0.08414886001287836, -1.593889729421761, -1.4409312713107907, -0.6900451394292424, -1.5380344293076815, -0.24987724197290906, -1.227675396899195, -1.2428033964931038, -1.503095258637067, -1.2604868201461463, -0.32667000621630604, -0.2622504750315846, -1.3713888954012314, -1.5194257645018578, -0.0009124130648493489, -0.8999485629926276, -2.5899526691814665, -1.0251456727460224, -1.3461805421867252, -1.8076660627674743, -0.06947310013819652, -0.8732743869970965, -0.632696437497855], \"z\": [-2.995902220627354, -4.297220688623803, 2.046988808650867, 2.92352181720243, -4.244066193248494, -4.753097513969618, -4.205358632387636, -0.8010135203168707, -0.9164761466389084, 3.3728615026366766, -0.23577722000954093, -2.3863489877675863, -0.8459343946661271, -3.149856361186477, -3.520906890368283, -1.2682976275385238, 3.2295190141938166, -0.5393051603706782, 0.2696886035932957, -1.7647644268574, -2.8090593933085524, -2.388357322753594, -4.184985131117776, 1.4087783162374166, -1.8157893383528378, 1.860492347429668, -3.399878004355235, 1.0304700348076006, -4.236481459632994, 0.12266812714060027, -4.757848277015091, 1.2973572876324493, -0.02729467076905845, -3.2494345634786517, -0.26520727977396064, 2.139119103614248, 1.707649572472537, -3.8562803412737976, 1.455936809434939, -2.7975119145592817, -0.8383781341696555, 3.3557135633074813, -5.011902049457403, -3.3886076778509215, 1.0852740841731991, 3.484236078952068, 1.8309497742712217, 3.470739961019965, -3.9787973191846215, -1.5898368361697548, -2.158114465552442, 3.723439112373847, 1.2800203918911954, 4.375533600205224, -3.813961207151089, -1.6896717175512261, 3.352982715492982, 4.269791142157657, 2.1214801820631317, -2.7040745120688388, 3.8552021751919705, -1.4964979351880086, -1.1754301683779693, -4.273695877359421, 1.4315644090250421, -1.8380962862054862, -1.414382328793622, -2.612975151316837, -2.9260385182968545, -3.0436505311284163, 2.5850555110587603, 1.3821158004019356, 2.5191182522595774, 0.13109401433843626, -2.6080279017849706, -2.341004542491536, 4.078142087782525, -4.882358044157243, 3.376703869778022, 1.1947655651030367, -3.6405300283064492, 1.537781773861898, -3.802295485273017, -0.6588202746852669, 0.9514945285519856, -0.3103723562686769, -2.9134882948118044, -2.5100077128878246, 2.1227981662539284, -2.0790530089489656, -1.8609772854804163, -3.3689733349161477, 1.234658487332478, 3.752249544077139, -1.9385893538050625, 0.18483724410919766, 1.928763369891283, 0.26712454420072707, -3.8736263527940524, 2.6702134156626443, 3.5268652860727867, 3.778417161943257, 2.961112626354814, -2.3275342776113006, 1.802196386355222, 4.267717292218353, -2.2181470175781186, -4.08756015318273, -0.5574420475963153, 4.104246957484132, 2.7990980728582233, 2.46285549439669, 0.23209816562458485, 2.4575019105757248, 3.1951182263880726, 3.5204939229148744, -4.196083462541334, -3.7533533721154093, 3.8681406916146512, -1.2244426006330902, 2.338156997528446, 3.031025988416098, -0.9148563548808752, -1.7011874541809897, -4.679961414885341, 2.703846865436547, -3.738774832618536, 2.332902597673403, -4.602033044222664, -0.4326095833136847, -0.45020234425404304, -1.4707103512556738, -4.2388121248679305, -4.895186351745539, -2.9131287544726394, -2.7380101183632863, -4.876985340622367, 2.9205569943958825, 4.225168365337628, -1.273793491192437, -0.6328094622734008, -4.561859276830823, -1.4642851047030723, 3.911259082262581, 0.495275458973202, -3.747366079303754, 0.8419578114819002, -3.0159173237617036, -0.5932364263254213, -3.6197917609882957, 1.9204238541814505, -4.576136040746846, 0.912641259945306, 2.949062905709334, -1.4145271767465726, -4.475157209361207, 2.449068661156998, 1.836123402538541, 2.465563034130999, -3.143290553176069, -1.1542808287375381, -2.800441860727309, -1.5618574868852204, -2.8815930427380265, 1.4040344186151952, -4.892524354652274, -0.4464181893127357, -0.626384018447105, -2.3690151747679264, -4.60649922761134, 1.0236655601936624, -3.1787685771427663, 0.8447801233234538, -2.230256759104822, -1.939756585653476, 4.096819556962305, -2.8354158009774784, -3.720694498274546, 3.7724842368688867, 0.974215664647855, -3.97537791847928, 2.939548187953098, -1.9394148600010253, 0.06898884294771612, 2.5221127613158876, -2.70454897919119, -1.0038849503392084, 0.8475753349666899, -1.4288596191699354, 4.022623779537663, 1.483615783306007, 2.0015626414602634, 2.4459365279594323, -3.600625494422326, -2.7499717591792927, 0.4426035689402532, -2.676947767359758, 0.036201488357349376, 2.629201583714817, -0.16614550799508354, -4.007423707720081, -4.671978543987377, -3.827612671525011, -3.7589576867549006, -4.520285475990304, 4.014376181354064, -4.130893413443962, -1.384567949485307, 2.674640646424338, -0.17983809728322342, -3.6419683008562385, 3.0387228141923392, 3.0954487407082594, -4.55476637452651, -3.8664301198490367, -0.9426808684497248, -4.181820314503408, 1.339005174072705, -0.7091546761298559, 1.84992688593434, 1.1071084995526785, -4.067083317631221, 0.02567614807535268, -4.056389777232173, 0.7764384366870614, -2.9622036662542164, -1.5377004787655908, -2.668391377188415, -0.8617548815617235, -4.00843340885969, 1.0332615810140924, 0.14127100195410147, 2.7602251841135272, -1.2209862970469771, 0.47908553857176184, -2.6860690558586517, 1.6943803651006144, 3.3446107608848257, 0.9327179331053106, -1.2850894084417086, -3.7748566937162225, -3.087753524564493, -4.621253332055499, 0.9917804123177962, -2.5051756578771265, 4.042196292815782, 1.544183650230421, 0.3996750952990933, 0.9678024991592746, -4.750830530902248, -5.04426061216687, 0.3599079175036941, 2.248320652638851, 1.9310956459224657, -4.232013103309794, -4.287658119062842, 3.3367606230069464, -4.269855542628554, 4.016061299074198, 2.3306063250875146, -2.743955737609102, -4.712975787545148, -1.4384584422624425, 0.7244011749600086, 0.22499286117244655, -1.1193344745384035, 1.0824377021666631, -0.7774231781425396, -3.760461823919033, 3.375030930259837, 3.8349562165854314, -3.8563068691296047, -1.96766770077055, -4.617283418755728, 1.730675342825224, 1.1276793139934442, 2.6624745798409606, 2.9591321725826942, -3.1054738962998867, 2.1635384914526643, 1.6152582161763762, -3.702906527381943, -3.813726781315117, -2.189543332303105, -4.815507853555234, -1.8107799303656265, 0.005144421606448013, 2.0749644743513933, -1.462847012582447, 0.605634294536264, 3.4799974364790875, 1.2670387912607177, -0.5461482954766224, -3.499319574438294, 2.635238834021015, 0.16584151231832323, 2.298267328854137, 1.203936730912611, -2.6738347355849053, -3.9682339460970963, -4.767230700868619, -0.6298595548601762, 1.3525668749175193, -3.4943847223918967, -2.362456717613297, 0.16431489565662005, -2.619703630698656, 3.681498875579851, -1.8128465562374685, 0.21967393457110074, 0.7917689932057259, 1.2630987232832043, 2.7681828319403294, 3.8431683107797214, -3.9711897426034524, -1.2099210582585291, -4.9733539151246156, -1.0760070576422218, 4.0872868609116475, -5.039832972296957, 0.9146527269982929, 0.7715815020367129, -3.638574161093084, -2.835674912969987, -3.6935387386560476, 1.0890403557033501, 0.5088175006257201, 1.5685857747040588, 0.5634522062123697, 1.2829790245089816, -2.606455893178217, -4.453921874241512, -3.4684473477447915, 1.8304570404589944, 4.282526468045865, -5.040840419722943, 3.235605400423867, -0.6661109991539655, -3.6943632337372736, -2.9259714070895892, 3.152425466476674, 2.2373396567837105, 3.120409698020052, 4.2680515270292405, -1.2599025027986026, -3.8494328389766084, -3.1588446409744115, 0.4679776649373215, -0.5382838091422251, 4.134215432354051, -3.0477954592572574, -0.3746274647269665, 0.17285880013199684, 4.060812623511269, 1.9115889087445002, 1.8060572956481877, -4.041390221070355, -0.8858204944403054, 1.634896782793211, 4.233024755901135, -1.7261638043471206, -0.33329595062652384, -4.686718860993824, -3.9960302739684175, -1.5797350521107356, 3.113968124696899, 3.9408921998609747, 0.8891232380457845, -2.5754457624789464, -1.6766948792145357, -2.1809580324250755, 0.9694666926566109, 0.839191422735059, -1.3330020706916126, -1.564240198245908, 0.6811271593579935, 3.7447953387731845, 2.428292656332478, 0.8814179495301708, 2.0248780893403406, -3.564203303946459, -1.1944740685181903, 0.6687020095836811, 2.5206161992819105, -3.8326115518355066, 3.288597642008411, 2.205822580225763, -2.6221038952931726, -3.2769207065650323, 1.538563957186362, -0.6160767013855208, -3.6766480543231252, 3.612256324028798, -3.424242979479239, 1.465194184808431, 3.694442760137309, 2.6809882270835317, 1.6860520856150183, 0.7242288594861019, 3.855302790886685, -4.527651636204923, 3.833042313803671, -4.353980579333637, 3.387551486909005, -0.798986666924776, -2.2755050201488936, -3.2525096585308386, -2.1623723286535763, -3.7283958196942635, 1.9906353525788152, 3.952046096088833, -0.5467357673125495, -4.989358548139788, 1.9555597973280374, -3.062182565643642, 0.8270445604305205, -0.894710956285742, 2.468796314908002, -2.396008522664992, -2.639065964706059, -3.786661910697081, -2.438029977303959, 0.2660911206821277, 0.6031141549966827, 0.428495022211032, 3.5390100851296546, -0.879458822223822, 0.36882426679560343, 1.8080275469759846, 3.1516180850117896, -2.5210197133233985, -1.0886134994512529, 1.7916672713064399, -2.403906850975997, -3.95898642681534, 2.6918473453026346, -2.9707691629492015, 2.437424638274112, -4.55799579374014, -3.302685639899443, -4.190019516948408, 3.853294526088825, 0.8800438865881874, -3.360151524909881, -4.878286901055392, -4.1271909617458915, 3.822992438719022, -3.923591913785571, 3.5814998032292378, -2.911748426948884, 1.6478539609288543, 0.0058590009792975906, -3.020168047673245, 2.21905966120332, -0.5261323843716585, -0.44709092603563505, 0.7055098575164847, 3.190744574930295, -2.6412938783365365, 2.4116754495988646, -0.7455011466148802, -4.9721874238964565, 2.95801920010864, -0.7195350817902995, -0.9432923785973983, -1.63617463556964, -0.5253478686255599, -4.652673922303995, -1.4796492675071855, -3.436198678619299, 3.8674771771177285, -4.892141766245545, -2.782583187078942, -4.297630886534784, -3.021649852325128, 0.22747619043985345, 3.324437952338557, 2.2317226990551617, -4.996084640757687, 4.331276894977342, -1.8083088012035637, -0.06153207611872791, -1.8463389312094525, 1.9596184766750708, 3.281038513996177, 1.0374637243134215, 3.316267169343095, 3.8292251515569307, 3.336898895101121, 0.45729732206773654, -3.5221898157927125, -3.6323874579002995, -2.4520964555275726, 1.8448468642814992, -4.851092730133925, 1.3160401643454573, -4.294081549307043, -4.112962044118452, 1.2420525562066338, -3.1372979265433396, 0.009851291623607317, 1.363292167956919, 0.15272909127963263, 1.099220670809932, 2.3688746016702833, 1.0720957184476552, -2.8572099294835263, -2.2852284896556037, 3.690929356206257, 0.8433005822757949, 0.8445646488872933, 0.5693094763207069, -4.312069289377401, 1.784523787233594, -4.358053765458514, 3.318401267416692, 2.626755556844107, -2.2700114919940257, -1.6318320049090134, -1.3101712127270928, -1.4165531560360725, 0.9076888191198389, 2.2281156596984406, 0.2216355957407119, -1.113627611386561, 0.8037902017162759, -3.0730713946722825, -2.8394647263130364, 2.3179283050877126, 2.658558632546872, -0.2784077045589992, 4.12831853140925, -0.5525622706122455, 2.95770536248686, -0.26146620050703895, -2.6754446121977002, 1.4368734778900318, -0.3446787777817786, 1.0643016089470967, -1.6575293682417724, -0.7133684129671893, -0.6266184333831131, -3.603871440492364, -0.7052111749854273, -4.3610937712955575, -0.2556302171920093, -4.392113224551615, -1.7692634004712113, -0.27720268603921294, 3.281588581145802, -4.139486038303596, 2.8398278290422088, 2.771496260071041, -5.017176336203248, -4.2721667538374515, 2.1054041504471632, -4.743982868781132, -4.085883256229602, -2.369326719129984, 3.5245934490232598, -3.909188482320231, -0.6988957202392143, -1.8651022207588603, 0.5362063000448734, -1.7875581538295644, -0.7159272552521809, -2.699936071741675, -0.5344966604908015, -4.5058202994548715, 0.06305268715882839, 2.631258588386525, 3.9606834565266693, 0.3036932144115765, -4.064582871090071, -2.7525436055457826, -4.178614470827299, -4.7968880006198935, -2.2928699864203375, -4.408313634872224, 2.2837294598151194, -4.055692798348693, 0.8416147012524844, -2.5513901196767597, 1.6155056224461735, -4.371886692389939, -1.8717778537318273, -3.3724292835242076, 0.3990883021282414, -3.9553646840034506, 2.253324612512186, -2.200245220558796, 2.1031117834791706, 3.210782229058318, -0.08207570983281709, -4.367111612589536, -3.281752204411256, 3.5555443187498694, -3.117980792047957, 2.5596085728732234, -1.2142100629272763, -0.2821572195163471, 2.274335600776757, -2.33731378634481, -5.058672733495895, -1.1625593007309694, 3.106993817470582, 3.7672564807368554, 3.16179095100632, -1.2949875575818037, 1.8253385252656784, 3.4775505638504933, 2.306811249908238, -0.45380933031742465, 0.3534859691434855, 3.5845049109405744, 0.5888881372453998, -2.41950211923925, -2.983699172438567, -1.8558107590823858, -0.8829567301297496, 3.353114444498021, 4.102145025755555, 1.3815858753225623, -3.9947551749651105, 4.268670385907073, -0.41411731470120383, 3.988563041454724, -1.3139454035316005, 2.1188282530660807, 4.2009625074263015, -1.4686093949353043, -3.894393706329376, -0.29097238365175926, -0.5537435417596654, -3.6252925050538076, 1.5146810709183773, -0.05076280044158654, -4.14793043382264, -1.8947109859291182, -2.3128495145190993, 0.9893960374678183, -4.117344370433889, 2.62230855637044, 1.0305019476733186, -1.4714177363444114, -3.986440277504377, 3.6709224950597923, -3.812326287448923, -4.020785855772262, 2.875680099892845, 1.2194353800494078, 4.3088171132997735, 2.001511045425011, -3.5386201305211378, -1.3551660313144835, -3.047912485634747, -0.49989586177312084, 3.405222071563501, -3.522463758440216, -4.845965452121603, -0.022574082409692053, 0.6271799651751957, -4.046549977090429, 0.9228048636758217, -4.16690193664604, -4.006531859651612]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 0\", \"marker\": {\"color\": \"rgb(31, 119, 180)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 0\", \"scene\": \"scene3\", \"showlegend\": false, \"text\": [\"0_l_0_m-0_0.08-1_0.1-2_0.06-3_0.19\", \"1_l_0_m-0_0.12-1_0.47-2_0.31-3_0.18\", \"2_l_0_m-0_0.09-1_0.16-2_0.08-3_0.18\", \"3_l_0_m-0_0.21-1_0.23-2_0.17-3_0.1\", \"4_l_0_m-0_0.47-1_0.09-2_0.48-3_0.24\", \"5_l_0_m-0_0.16-1_0.92-2_0.25-3_0.33\", \"6_l_0_c_0_1_2-0_0.16-1_0.18-2_0.48-3_0.52\", \"7_l_0_c_0_1_2-0_0.0-1_0.08-2_0.86-3_1.04\", \"8_l_0_c_0_1_2-0_0.79-1_0.27-2_0.53-3_1.46\", \"9_l_0_c_0_1_2-0_0.5-1_0.46-2_0.73-3_0.29\", \"10_l_0_c_0_1_2-0_0.35-1_0.09-2_0.95-3_0.67\", \"11_l_0_c_0_1_2-0_0.45-1_0.18-2_0.01-3_0.68\", \"12_l_0_c_0_1_2-0_0.26-1_0.65-2_0.03-3_1.18\", \"13_l_0_c_0_1_2-0_0.02-1_0.11-2_0.11-3_0.93\", \"14_l_0_c_0_1_2-0_0.01-1_0.31-2_0.46-3_0.39\", \"15_l_0_c_0_1_2-0_0.49-1_0.44-2_0.46-3_0.4\", \"16_l_0_c_0_1_2-0_0.32-1_0.66-2_0.09-3_0.22\", \"17_l_0_c_0_1_2-0_0.88-1_0.25-2_0.08-3_0.3\", \"18_l_0_c_0_1_2-0_0.24-1_0.29-2_0.41-3_0.04\", \"19_l_0_c_1_2_3-0_1.19-1_0.67-2_0.48-3_0.22\", \"20_l_0_c_0_1_2-0_0.56-1_0.09-2_0.52-3_1.12\", \"21_l_0_c_0_2_3-0_0.44-1_0.25-2_0.14-3_0.45\", \"22_l_0_c_1_2_3-0_0.05-1_0.26-2_1.37-3_0.82\", \"23_l_0_c_0_1_2-0_0.49-1_0.15-2_0.69-3_0.44\", \"24_l_0_c_0_2_3-0_0.38-1_0.27-2_0.15-3_0.11\", \"25_l_0_c_1_2_3-0_0.97-1_0.06-2_0.49-3_0.2\", \"26_l_0_c_0_1_2-0_0.19-1_0.15-2_0.23-3_0.53\", \"27_l_0_c_0_2_3-0_0.89-1_0.91-2_0.76-3_0.39\", \"28_l_0_c_1_2_3-0_1.08-1_0.98-2_0.18-3_0.04\", \"29_l_0_c_0_1_2-0_0.22-1_1.08-2_0.81-3_0.67\", \"30_l_0_c_0_2_3-0_0.23-1_0.4-2_0.14-3_0.55\", \"31_l_0_c_1_2_3-0_0.26-1_1.2-2_1.47-3_0.63\", \"32_l_0_c_0_1_2-0_0.07-1_0.41-2_0.51-3_0.63\", \"33_l_0_c_0_2_3-0_0.91-1_0.76-2_0.27-3_0.2\", \"34_l_0_c_1_2_3-0_0.87-1_0.07-2_0.06-3_0.57\", \"35_l_0_c_0_1_2-0_0.56-1_0.36-2_0.13-3_0.52\", \"36_l_0_c_0_2_3-0_0.28-1_0.03-2_0.3-3_0.01\", \"37_l_0_c_1_2_3-0_1.09-1_0.93-2_0.76-3_0.51\", \"38_l_0_c_0_1_2-0_0.25-1_0.17-2_0.57-3_0.02\", \"39_l_0_c_0_2_3-0_0.28-1_1.49-2_0.09-3_0.08\", \"40_l_0_c_1_2_3-0_0.64-1_1.01-2_0.43-3_0.53\", \"41_l_0_c_0_1_2-0_0.89-1_0.53-2_0.66-3_0.47\", \"42_l_0_c_0_2_3-0_0.41-1_0.28-2_0.62-3_0.12\", \"43_l_0_c_1_2_3-0_0.3-1_0.39-2_0.16-3_0.31\", \"44_l_0_c_0_1_2-0_0.89-1_0.29-2_1.09-3_0.7\", \"45_l_0_c_0_2_3-0_0.2-1_1.61-2_0.97-3_0.56\", \"46_l_0_c_1_2_3-0_1.88-1_0.28-2_0.02-3_0.34\", \"47_l_0_c_0_1_2-0_0.46-1_0.32-2_0.42-3_0.99\", \"48_l_0_c_0_2_3-0_0.3-1_0.65-2_1.47-3_0.02\", \"49_l_0_c_1_2_3-0_0.12-1_1.17-2_0.15-3_0.4\", \"50_l_0_c_0_1_2-0_0.15-1_1.28-2_0.92-3_0.85\", \"51_l_0_c_0_2_3-0_1.05-1_0.51-2_0.73-3_1.02\", \"52_l_0_c_1_2_3-0_0.18-1_0.07-2_0.62-3_0.67\", \"53_l_0_c_0_1_2-0_0.69-1_0.81-2_0.74-3_1.39\", \"54_l_0_c_0_2_3-0_0.16-1_0.75-2_0.07-3_0.35\", \"55_l_0_c_1_2_3-0_0.97-1_0.19-2_0.38-3_0.2\", \"56_l_0_c_0_1_2-0_0.28-1_0.04-2_0.25-3_0.4\", \"57_l_0_c_0_2_3-0_0.51-1_1.5-2_0.68-3_0.15\", \"58_l_0_c_1_2_3-0_0.97-1_0.32-2_0.19-3_0.46\", \"59_l_0_c_0_1_2-0_0.56-1_0.88-2_0.21-3_0.17\", \"60_l_0_c_0_2_3-0_1.68-1_1.59-2_0.67-3_0.04\", \"61_l_0_c_1_2_3-0_0.88-1_0.25-2_0.45-3_0.18\", \"62_l_0_c_0_1_2-0_0.2-1_0.18-2_0.32-3_0.14\", \"63_l_0_c_0_2_3-0_1.24-1_0.85-2_0.84-3_0.38\", \"64_l_0_c_1_2_3-0_0.73-1_0.38-2_0.16-3_0.74\", \"65_l_0_c_0_1_2-0_0.44-1_0.05-2_0.39-3_0.18\", \"66_l_0_c_0_2_3-0_0.41-1_1.44-2_0.12-3_0.11\", \"67_l_0_c_1_2_3-0_2.05-1_0.06-2_0.68-3_1.1\", \"68_l_0_c_0_1_2-0_0.4-1_0.19-2_0.03-3_1.39\", \"69_l_0_c_0_2_3-0_0.31-1_0.28-2_0.08-3_0.25\", \"70_l_0_c_1_2_3-0_0.45-1_0.08-2_0.27-3_0.6\", \"71_l_0_c_0_1_2-0_0.2-1_0.06-2_0.96-3_0.54\", \"72_l_0_c_0_2_3-0_0.14-1_0.93-2_0.74-3_0.39\", \"73_l_0_c_1_2_3-0_0.46-1_0.46-2_0.66-3_0.02\", \"74_l_0_c_0_1_2-0_0.69-1_0.43-2_0.14-3_0.4\", \"75_l_0_c_0_2_3-0_0.23-1_1.16-2_0.46-3_1.37\", \"76_l_0_c_1_2_3-0_2.24-1_0.15-2_0.96-3_0.61\", \"77_l_0_c_0_1_2-0_0.05-1_0.07-2_0.15-3_0.87\", \"78_l_0_c_0_2_3-0_0.21-1_0.08-2_0.25-3_0.11\", \"79_l_0_c_1_2_3-0_0.43-1_0.1-2_0.01-3_0.94\", \"80_l_0_c_0_1_2-0_0.58-1_0.21-2_0.54-3_0.47\", \"81_l_0_c_0_2_3-0_0.34-1_1.14-2_0.45-3_0.06\", \"82_l_0_c_1_2_3-0_1.71-1_0.12-2_0.15-3_0.07\", \"83_l_0_c_0_1_2-0_0.12-1_0.06-2_0.0-3_0.26\", \"84_l_0_c_0_2_3-0_0.8-1_0.15-2_0.64-3_0.24\", \"85_l_0_c_1_2_3-0_1.41-1_0.02-2_1.18-3_0.64\", \"86_l_0_c_0_1_2-0_0.05-1_0.21-2_0.64-3_0.53\", \"87_l_0_c_0_2_3-0_0.9-1_0.07-2_0.44-3_0.22\", \"88_l_0_c_1_2_3-0_0.07-1_0.19-2_0.42-3_0.71\", \"89_l_0_c_0_1_2-0_0.21-1_0.2-2_0.35-3_0.04\", \"90_l_0_c_0_2_3-0_0.38-1_2.27-2_0.51-3_0.04\", \"91_l_0_c_1_2_3-0_0.57-1_0.45-2_0.2-3_0.44\", \"92_l_0_c_0_1_2-0_0.23-1_0.17-2_0.43-3_1.58\", \"93_l_0_c_0_2_3-0_2.0-1_0.83-2_0.76-3_0.02\", \"94_l_0_c_1_2_3-0_0.43-1_0.32-2_0.19-3_0.86\", \"95_l_0_c_0_1_2-0_0.34-1_0.46-2_0.23-3_0.69\", \"96_l_0_c_0_2_3-0_0.03-1_0.36-2_0.26-3_0.08\", \"97_l_0_c_1_2_3-0_0.69-1_0.09-2_1.09-3_0.99\", \"98_l_0_c_0_1_2-0_0.02-1_0.16-2_0.64-3_0.6\", \"99_l_0_c_0_1_3-0_0.06-1_0.32-2_0.65-3_0.41\", \"100_l_0_c_0_2_3-0_0.03-1_0.14-2_0.74-3_0.63\", \"101_l_0_c_1_2_3-0_1.15-1_0.92-2_1.15-3_0.82\", \"102_l_0_c_0_1_2-0_0.09-1_0.04-2_0.31-3_0.88\", \"103_l_0_c_0_1_3-0_0.07-1_0.34-2_0.57-3_0.05\", \"104_l_0_c_0_2_3-0_0.41-1_0.51-2_0.35-3_0.04\", \"105_l_0_c_1_2_3-0_0.55-1_0.74-2_0.64-3_0.06\", \"106_l_0_c_0_1_2-0_0.09-1_0.19-2_0.17-3_0.35\", \"107_l_0_c_0_1_3-0_0.02-1_0.13-2_1.34-3_0.6\", \"108_l_0_c_0_2_3-0_0.54-1_0.09-2_1.38-3_1.04\", \"109_l_0_c_1_2_3-0_0.96-1_0.09-2_0.5-3_0.73\", \"110_l_0_c_0_1_2-0_0.5-1_0.59-2_0.08-3_0.06\", \"111_l_0_c_0_1_3-0_0.06-1_0.82-2_0.49-3_0.1\", \"112_l_0_c_0_2_3-0_0.04-1_0.3-2_0.01-3_0.46\", \"113_l_0_c_1_2_3-0_0.52-1_0.44-2_0.72-3_0.71\", \"114_l_0_c_0_1_2-0_0.09-1_0.34-2_1.76-3_1.09\", \"115_l_0_c_0_1_3-0_0.14-1_0.82-2_0.18-3_0.11\", \"116_l_0_c_0_2_3-0_0.56-1_0.93-2_0.15-3_0.12\", \"117_l_0_c_1_2_3-0_0.54-1_0.2-2_0.3-3_0.08\", \"118_l_0_c_0_1_2-0_0.53-1_0.18-2_0.52-3_0.01\", \"119_l_0_c_0_1_3-0_0.35-1_0.5-2_0.28-3_0.26\", \"120_l_0_c_0_2_3-0_0.49-1_0.76-2_0.12-3_2.22\", \"121_l_0_c_1_2_3-0_0.11-1_0.58-2_0.11-3_0.57\", \"122_l_0_c_0_1_2-0_0.13-1_1.02-2_1.03-3_1.02\", \"123_l_0_c_0_1_3-0_0.05-1_0.95-2_0.49-3_0.4\", \"124_l_0_c_0_2_3-0_0.2-1_1.9-2_0.35-3_0.63\", \"125_l_0_c_1_2_3-0_0.4-1_0.12-2_0.25-3_0.2\", \"126_l_0_c_0_1_2-0_0.18-1_0.49-2_0.34-3_0.01\", \"127_l_0_c_0_1_3-0_0.09-1_0.01-2_0.81-3_0.26\", \"128_l_0_c_0_2_3-0_0.23-1_0.16-2_1.5-3_0.83\", \"129_l_0_c_1_2_3-0_1.29-1_0.15-2_0.0-3_0.14\", \"130_l_0_c_0_1_2-0_0.39-1_0.08-2_0.17-3_0.47\", \"131_l_0_c_0_1_3-0_0.03-1_0.46-2_0.16-3_0.26\", \"132_l_0_c_0_2_3-0_0.19-1_0.2-2_0.46-3_0.04\", \"133_l_0_c_1_2_3-0_0.66-1_0.08-2_0.12-3_0.96\", \"134_l_0_c_0_1_2-0_0.71-1_0.18-2_0.68-3_1.72\", \"135_l_0_c_0_1_3-0_0.04-1_0.79-2_1.72-3_0.05\", \"136_l_0_c_0_2_3-0_0.43-1_1.42-2_1.29-3_0.04\", \"137_l_0_c_1_2_3-0_0.27-1_0.71-2_1.11-3_0.1\", \"138_l_0_c_0_1_2-0_0.12-1_0.16-2_0.15-3_0.1\", \"139_l_0_c_0_1_3-0_0.07-1_0.64-2_0.05-3_0.11\", \"140_l_0_c_0_2_3-0_0.05-1_1.53-2_0.46-3_0.14\", \"141_l_0_c_1_2_3-0_0.99-1_0.31-2_0.18-3_0.06\", \"142_l_0_c_0_1_2-0_1.54-1_0.07-2_0.21-3_0.93\", \"143_l_0_c_0_1_3-0_0.3-1_0.54-2_0.05-3_0.05\", \"144_l_0_c_0_2_3-0_0.06-1_0.62-2_0.41-3_0.27\", \"145_l_0_c_1_2_3-0_0.04-1_0.43-2_0.13-3_0.7\", \"146_l_0_c_0_1_2-0_0.56-1_0.46-2_0.58-3_0.11\", \"147_l_0_c_0_1_3-0_0.71-1_0.23-2_1.18-3_0.31\", \"148_l_0_c_0_2_3-0_0.35-1_1.91-2_0.07-3_0.5\", \"149_l_0_c_1_2_3-0_0.23-1_0.1-2_0.03-3_0.28\", \"150_l_0_c_0_1_2-0_0.27-1_0.11-2_0.59-3_0.3\", \"151_l_0_c_0_1_3-0_0.13-1_0.09-2_0.16-3_0.01\", \"152_l_0_c_0_2_3-0_0.41-1_0.23-2_0.26-3_0.29\", \"153_l_0_c_1_2_3-0_0.84-1_0.71-2_0.7-3_0.08\", \"154_l_0_c_0_1_2-0_0.66-1_0.44-2_0.1-3_1.0\", \"155_l_0_c_0_1_3-0_0.28-1_0.23-2_0.2-3_0.02\", \"156_l_0_c_0_2_3-0_0.26-1_1.45-2_0.37-3_0.45\", \"157_l_0_c_1_2_3-0_0.16-1_0.84-2_0.62-3_0.21\", \"158_l_0_c_0_1_2-0_0.38-1_0.4-2_0.28-3_0.46\", \"159_l_0_c_0_1_3-0_0.44-1_0.75-2_0.03-3_1.07\", \"160_l_0_c_0_2_3-0_0.58-1_0.11-2_0.6-3_1.06\", \"161_l_0_c_1_2_3-0_1.35-1_0.5-2_0.2-3_0.24\", \"162_l_0_c_0_1_2-0_0.73-1_0.27-2_0.48-3_2.1\", \"163_l_0_c_0_1_3-0_0.59-1_0.6-2_0.14-3_0.1\", \"164_l_0_c_0_2_3-0_0.45-1_0.59-2_0.11-3_0.24\", \"165_l_0_c_1_2_3-0_0.04-1_1.36-2_0.69-3_0.07\", \"166_l_0_c_0_1_2-0_0.06-1_0.11-2_0.88-3_0.96\", \"167_l_0_c_0_1_3-0_0.34-1_0.09-2_1.17-3_0.11\", \"168_l_0_c_0_2_3-0_0.07-1_1.72-2_1.1-3_0.71\", \"169_l_0_c_1_2_3-0_0.55-1_0.53-2_0.37-3_0.22\", \"170_l_0_c_0_1_2-0_0.1-1_0.78-2_0.4-3_1.28\", \"171_l_0_c_0_1_3-0_0.16-1_0.07-2_0.24-3_0.2\", \"172_l_0_c_0_2_3-0_0.19-1_0.92-2_0.79-3_0.12\", \"173_l_0_c_1_2_3-0_0.27-1_0.12-2_0.4-3_0.41\", \"174_l_0_c_0_1_2-0_0.67-1_1.34-2_0.58-3_0.7\", \"175_l_0_c_0_1_3-0_0.18-1_0.89-2_0.68-3_0.37\", \"176_l_0_c_0_2_3-0_0.41-1_0.47-2_0.97-3_0.08\", \"177_l_0_c_1_2_3-0_1.31-1_0.48-2_0.28-3_0.05\", \"178_l_0_c_0_1_2-0_0.48-1_1.05-2_0.66-3_0.6\", \"179_l_0_c_0_1_3-0_0.98-1_0.33-2_0.71-3_0.35\", \"180_l_0_c_0_2_3-0_0.56-1_0.69-2_0.05-3_0.18\", \"181_l_0_c_1_2_3-0_1.86-1_0.25-2_0.31-3_0.18\", \"182_l_0_c_0_1_2-0_1.12-1_1.05-2_0.53-3_1.1\", \"183_l_0_c_0_1_3-0_0.87-1_0.43-2_0.03-3_0.07\", \"184_l_0_c_0_2_3-0_0.65-1_0.94-2_0.1-3_0.7\", \"185_l_0_c_1_2_3-0_0.33-1_0.95-2_0.24-3_0.71\", \"186_l_0_c_0_1_2-0_0.39-1_0.07-2_0.08-3_0.43\", \"187_l_0_c_0_1_3-0_0.05-1_0.18-2_0.24-3_0.2\", \"188_l_0_c_0_2_3-0_0.56-1_1.31-2_0.4-3_0.82\", \"189_l_0_c_1_2_3-0_0.49-1_0.39-2_0.45-3_0.66\", \"190_l_0_c_0_1_2-0_0.09-1_0.85-2_0.28-3_0.85\", \"191_l_0_c_0_1_3-0_0.05-1_0.11-2_0.96-3_0.93\", \"192_l_0_c_0_2_3-0_0.51-1_0.44-2_0.24-3_0.3\", \"193_l_0_c_1_2_3-0_0.22-1_0.67-2_0.61-3_1.16\", \"194_l_0_c_0_1_2-0_0.59-1_0.0-2_0.04-3_0.26\", \"195_l_0_c_0_1_3-0_0.51-1_1.05-2_1.87-3_0.31\", \"196_l_0_c_0_2_3-0_0.17-1_0.62-2_0.92-3_0.31\", \"197_l_0_c_1_2_3-0_0.02-1_0.59-2_1.32-3_0.8\", \"198_l_0_c_0_1_2-0_0.03-1_0.11-2_0.44-3_2.01\", \"199_l_0_c_0_1_3-0_0.82-1_0.29-2_0.02-3_0.3\", \"200_l_0_c_0_2_3-0_0.48-1_0.23-2_0.27-3_0.17\", \"201_l_0_c_1_2_3-0_0.12-1_0.7-2_0.16-3_0.19\", \"202_l_0_c_0_1_2-0_0.26-1_0.66-2_0.53-3_0.76\", \"203_l_0_c_0_1_3-0_0.6-1_1.34-2_0.38-3_0.1\", \"204_l_0_c_0_2_3-0_0.1-1_0.84-2_0.08-3_0.15\", \"205_l_0_c_1_2_3-0_0.88-1_0.28-2_0.67-3_0.83\", \"206_l_0_c_0_1_2-0_0.22-1_0.21-2_1.45-3_0.36\", \"207_l_0_c_0_1_3-0_0.02-1_0.15-2_0.1-3_0.38\", \"208_l_0_c_0_2_3-0_0.41-1_1.88-2_1.04-3_0.83\", \"209_l_0_c_1_2_3-0_0.92-1_1.3-2_0.2-3_0.78\", \"210_l_0_c_0_1_2-0_0.08-1_0.03-2_0.04-3_0.1\", \"211_l_0_c_0_1_3-0_0.83-1_0.46-2_0.19-3_0.34\", \"212_l_0_c_0_2_3-0_0.54-1_1.0-2_0.82-3_0.8\", \"213_l_0_c_1_2_3-0_1.51-1_0.67-2_1.93-3_0.31\", \"214_l_0_c_0_1_2-0_0.04-1_1.63-2_0.74-3_0.07\", \"215_l_0_c_0_1_3-0_0.77-1_0.06-2_2.47-3_1.47\", \"216_l_0_c_0_2_3-0_0.63-1_0.07-2_0.11-3_0.27\", \"217_l_0_c_1_2_3-0_1.25-1_0.56-2_0.11-3_0.06\", \"218_l_0_c_0_1_2-0_0.18-1_0.15-2_0.08-3_0.52\", \"219_l_0_c_0_1_3-0_0.01-1_0.33-2_0.22-3_0.13\", \"220_l_0_c_0_2_3-0_0.5-1_0.55-2_0.03-3_0.27\", \"221_l_0_c_1_2_3-0_0.94-1_0.62-2_0.52-3_0.41\", \"222_l_0_c_0_1_2-0_0.45-1_0.42-2_0.35-3_1.3\", \"223_l_0_c_0_1_3-0_0.07-1_0.07-2_0.13-3_0.04\", \"224_l_0_c_0_2_3-0_1.61-1_0.44-2_0.05-3_0.08\", \"225_l_0_c_1_2_3-0_0.82-1_0.56-2_0.97-3_0.05\", \"226_l_0_c_0_1_2-0_0.19-1_0.32-2_0.45-3_0.5\", \"227_l_0_c_0_1_3-0_0.78-1_0.51-2_2.04-3_0.56\", \"228_l_0_c_0_2_3-0_0.15-1_0.4-2_0.23-3_1.22\", \"229_l_0_c_1_2_3-0_0.26-1_0.23-2_1.38-3_0.32\", \"230_l_0_c_0_1_2-0_0.85-1_0.18-2_0.33-3_0.01\", \"231_l_0_c_0_1_3-0_0.89-1_0.19-2_0.47-3_0.48\", \"232_l_0_c_0_2_3-0_0.47-1_0.49-2_0.32-3_0.02\", \"233_l_0_c_1_2_3-0_1.85-1_0.08-2_0.02-3_0.19\", \"234_l_0_c_0_1_2-0_0.29-1_0.03-2_0.53-3_0.12\", \"235_l_0_c_0_1_3-0_0.56-1_1.17-2_0.53-3_0.3\", \"236_l_0_c_0_2_3-0_0.2-1_0.38-2_1.49-3_0.16\", \"237_l_0_c_1_2_3-0_0.8-1_0.03-2_0.73-3_0.15\", \"238_l_0_c_0_1_2-0_0.01-1_0.01-2_0.47-3_1.36\", \"239_l_0_c_0_1_3-0_0.28-1_0.1-2_1.07-3_0.43\", \"240_l_0_c_0_2_3-0_0.18-1_0.53-2_0.17-3_0.01\", \"241_l_0_c_1_2_3-0_0.7-1_0.72-2_0.42-3_0.97\", \"242_l_0_c_0_1_2-0_0.27-1_0.54-2_0.1-3_0.48\", \"243_l_0_c_0_1_3-0_1.25-1_0.22-2_0.62-3_0.06\", \"244_l_0_c_0_2_3-0_0.17-1_0.97-2_0.03-3_0.16\", \"245_l_0_c_1_2_3-0_0.12-1_0.27-2_1.03-3_0.15\", \"246_l_0_c_0_1_2-0_0.06-1_0.45-2_0.25-3_0.55\", \"247_l_0_c_0_1_3-0_1.46-1_0.26-2_0.27-3_0.32\", \"248_l_0_c_0_2_3-0_0.11-1_1.39-2_0.07-3_0.76\", \"249_l_0_c_1_2_3-0_0.41-1_0.5-2_0.06-3_0.3\", \"250_l_0_c_0_1_2-0_0.94-1_0.09-2_0.09-3_0.83\", \"251_l_0_c_0_1_3-0_0.45-1_0.07-2_0.55-3_0.39\", \"252_l_0_c_0_2_3-0_0.31-1_0.25-2_0.6-3_0.16\", \"253_l_0_c_1_2_3-0_0.18-1_0.12-2_0.13-3_0.55\", \"254_l_0_c_0_1_2-0_0.57-1_1.09-2_0.74-3_0.05\", \"255_l_0_c_0_1_3-0_0.16-1_0.64-2_1.69-3_0.01\", \"256_l_0_c_0_2_3-0_0.09-1_0.99-2_0.18-3_0.01\", \"257_l_0_c_1_2_3-0_1.03-1_0.5-2_0.79-3_0.1\", \"258_l_0_c_0_1_2-0_0.2-1_0.43-2_0.14-3_0.04\", \"259_l_0_c_0_1_3-0_0.19-1_0.38-2_0.83-3_0.35\", \"260_l_0_c_0_2_3-0_0.27-1_0.93-2_0.62-3_0.01\", \"261_l_0_c_1_2_3-0_1.59-1_0.11-2_0.41-3_1.02\", \"262_l_0_c_0_1_2-0_0.88-1_0.16-2_0.27-3_0.14\", \"263_l_0_c_0_1_3-0_0.15-1_0.28-2_1.69-3_0.2\", \"264_l_0_c_0_2_3-0_0.08-1_0.26-2_0.13-3_0.25\", \"265_l_0_c_1_2_3-0_1.11-1_0.58-2_1.7-3_0.04\", \"266_l_0_c_0_1_2-0_0.51-1_0.51-2_0.69-3_1.07\", \"267_l_0_c_0_1_3-0_0.25-1_0.24-2_1.0-3_0.02\", \"268_l_0_c_0_2_3-0_0.09-1_0.68-2_0.05-3_0.21\", \"269_l_0_c_1_2_3-0_0.08-1_0.7-2_1.13-3_0.76\", \"270_l_0_c_0_1_2-0_0.43-1_0.12-2_0.99-3_0.46\", \"271_l_0_c_0_1_3-0_0.33-1_1.36-2_1.4-3_0.15\", \"272_l_0_c_0_2_3-0_0.09-1_0.06-2_0.59-3_0.03\", \"273_l_0_c_1_2_3-0_0.41-1_0.33-2_0.26-3_0.19\", \"274_l_0_c_0_1_2-0_0.03-1_0.31-2_0.04-3_0.37\", \"275_l_0_c_0_1_3-0_0.38-1_0.02-2_0.83-3_0.38\", \"276_l_0_c_0_2_3-0_1.37-1_0.3-2_0.99-3_0.79\", \"277_l_0_c_1_2_3-0_0.24-1_1.02-2_0.43-3_0.01\", \"278_l_0_c_0_1_2-0_0.29-1_1.14-2_0.33-3_0.16\", \"279_l_0_c_0_1_3-0_1.47-1_0.76-2_0.53-3_0.13\", \"280_l_0_c_0_2_3-0_0.48-1_1.42-2_1.84-3_0.41\", \"281_l_0_c_1_2_3-0_1.02-1_0.58-2_0.41-3_0.24\", \"282_l_0_c_0_1_2-0_0.26-1_0.91-2_0.04-3_0.72\", \"283_l_0_c_0_1_3-0_0.43-1_0.36-2_0.02-3_0.18\", \"284_l_0_c_0_2_3-0_0.12-1_0.58-2_0.02-3_0.1\", \"285_l_0_c_1_2_3-0_1.38-1_0.22-2_0.02-3_0.04\", \"286_l_0_c_0_1_2-0_0.25-1_0.42-2_1.01-3_0.07\", \"287_l_0_c_0_1_3-0_0.43-1_0.74-2_1.07-3_0.26\", \"288_l_0_c_0_2_3-0_0.36-1_0.08-2_0.36-3_0.23\", \"289_l_0_c_1_2_3-0_0.93-1_0.11-2_0.92-3_0.1\", \"290_l_0_c_0_1_2-0_0.43-1_0.61-2_0.21-3_0.6\", \"291_l_0_c_0_1_3-0_1.24-1_0.02-2_0.8-3_0.17\", \"292_l_0_c_0_2_3-0_0.3-1_0.0-2_0.15-3_0.86\", \"293_l_0_c_1_2_3-0_0.06-1_0.77-2_1.34-3_0.6\", \"294_l_0_c_0_1_2-0_1.31-1_0.62-2_1.25-3_0.35\", \"295_l_0_c_3-0_2.17-1_0.31-2_1.42-3_0.04\", \"296_l_0_r-0_0.87-1_0.39-2_1.34-3_0.51\", \"297_l_0_r-0_0.23-1_0.53-2_0.56-3_0.98\", \"298_l_0_r-0_0.56-1_1.41-2_1.44-3_0.26\", \"299_l_0_r-0_0.59-1_0.78-2_1.47-3_0.9\", \"300_l_0_r-0_0.62-1_0.23-2_0.19-3_0.56\", \"301_l_0_r-0_0.41-1_0.03-2_1.38-3_0.21\", \"302_l_0_r-0_0.01-1_1.47-2_0.45-3_0.66\", \"303_l_0_r-0_0.83-1_0.41-2_0.59-3_0.34\", \"304_l_0_r-0_1.62-1_0.7-2_1.55-3_0.87\", \"305_l_0_r-0_0.17-1_0.98-2_0.16-3_0.93\", \"306_l_0_r-0_0.92-1_0.94-2_1.06-3_0.74\", \"307_l_0_r-0_1.4-1_0.93-2_0.41-3_0.0\", \"308_l_0_r-0_0.23-1_1.47-2_0.77-3_0.78\", \"309_l_0_r-0_1.16-1_2.18-2_0.25-3_1.16\", \"310_l_0_r-0_1.02-1_1.39-2_0.5-3_1.23\", \"311_l_0_r-0_1.72-1_1.05-2_1.01-3_0.11\", \"312_l_0_r-0_1.87-1_0.67-2_0.39-3_0.83\", \"313_l_0_r-0_0.77-1_1.08-2_0.33-3_0.86\", \"314_l_0_r-0_0.72-1_0.05-2_0.14-3_0.79\", \"315_l_0_r-0_0.33-1_1.79-2_0.32-3_0.21\", \"316_l_0_r-0_0.63-1_1.25-2_0.46-3_0.12\", \"317_l_0_r-0_0.16-1_0.27-2_1.75-3_1.2\", \"318_l_0_r-0_1.31-1_0.1-2_0.5-3_0.9\", \"319_l_0_r-0_0.19-1_0.06-2_2.24-3_0.58\", \"320_l_0_r-0_1.75-1_0.55-2_0.34-3_0.16\", \"321_l_0_r-0_0.31-1_0.53-2_2.1-3_0.64\", \"322_l_0_r-0_0.24-1_0.82-2_0.21-3_0.74\", \"323_l_0_r-0_0.47-1_1.26-2_2.16-3_0.96\", \"324_l_0_r-0_1.01-1_0.27-2_0.73-3_0.92\", \"325_l_0_r-0_0.12-1_1.0-2_1.21-3_0.17\", \"326_l_0_r-0_0.43-1_2.22-2_1.0-3_0.89\", \"327_l_0_r-0_0.35-1_1.53-2_0.28-3_0.58\", \"328_l_0_r-0_1.67-1_0.47-2_0.37-3_0.79\", \"329_l_0_r-0_0.43-1_0.31-2_0.64-3_1.43\", \"330_l_0_r-0_0.81-1_0.73-2_1.88-3_2.11\", \"331_l_0_r-0_0.71-1_0.17-2_0.9-3_0.29\", \"332_l_0_r-0_1.67-1_0.11-2_0.33-3_0.87\", \"333_l_0_r-0_0.65-1_0.8-2_0.72-3_1.29\", \"334_l_0_r-0_1.22-1_1.12-2_0.0-3_0.3\", \"335_l_0_r-0_0.98-1_1.18-2_1.75-3_0.04\", \"336_l_0_r-0_0.38-1_0.07-2_1.0-3_0.88\", \"337_l_0_r-0_0.11-1_1.43-2_1.12-3_0.64\", \"338_l_0_r-0_0.84-1_0.93-2_0.04-3_0.27\", \"339_l_0_r-0_0.93-1_0.25-2_0.06-3_0.44\", \"340_l_0_r-0_1.28-1_2.22-2_0.4-3_0.68\", \"341_l_0_r-0_0.18-1_0.32-2_0.67-3_0.18\", \"342_l_0_r-0_0.08-1_1.23-2_0.18-3_0.85\", \"343_l_0_r-0_0.23-1_1.24-2_0.82-3_0.97\", \"344_l_0_r-0_0.21-1_0.58-2_0.09-3_1.16\", \"345_l_0_r-0_0.1-1_1.2-2_0.08-3_0.48\", \"346_l_0_r-0_0.12-1_0.67-2_2.58-3_0.04\", \"347_l_0_r-0_1.23-1_1.95-2_0.25-3_0.45\", \"348_l_0_r-0_1.07-1_0.72-2_0.64-3_2.11\", \"349_l_0_r-0_1.11-1_0.0-2_1.97-3_1.2\", \"350_l_0_r-0_0.23-1_0.35-2_0.09-3_0.48\", \"351_l_0_r-0_1.47-1_1.03-2_0.52-3_0.24\", \"352_l_0_r-0_0.62-1_0.55-2_0.37-3_0.91\", \"353_l_0_r-0_0.37-1_0.64-2_0.98-3_1.32\", \"354_l_0_r-0_0.46-1_0.47-2_0.24-3_1.16\", \"355_l_0_r-0_0.77-1_1.21-2_0.65-3_0.65\", \"356_l_0_r-0_1.56-1_0.53-2_0.21-3_0.16\", \"357_l_0_r-0_0.91-1_0.03-2_0.22-3_0.44\", \"358_l_0_r-0_0.22-1_1.31-2_0.67-3_0.07\", \"359_l_0_r-0_0.24-1_0.75-2_0.64-3_1.0\", \"360_l_0_r-0_2.34-1_0.38-2_0.15-3_0.53\", \"361_l_0_r-0_0.28-1_0.07-2_0.79-3_0.62\", \"362_l_0_r-0_0.6-1_1.18-2_0.0-3_0.28\", \"363_l_0_r-0_0.67-1_0.7-2_0.34-3_0.83\", \"364_l_0_r-0_2.0-1_1.08-2_0.52-3_0.27\", \"365_l_0_r-0_0.45-1_0.96-2_0.98-3_0.78\", \"366_l_0_r-0_0.38-1_0.5-2_0.26-3_0.24\", \"367_l_0_r-0_0.05-1_0.68-2_1.12-3_1.55\", \"368_l_0_r-0_0.28-1_1.87-2_1.34-3_0.81\", \"369_l_0_r-0_0.79-1_1.15-2_0.03-3_1.05\", \"370_l_0_r-0_1.78-1_1.02-2_0.55-3_1.19\", \"371_l_0_r-0_1.59-1_0.6-2_0.19-3_0.01\", \"372_l_0_r-0_0.87-1_0.09-2_1.81-3_0.8\", \"373_l_0_r-0_0.29-1_0.54-2_0.74-3_0.41\", \"374_l_0_r-0_0.63-1_0.43-2_0.1-3_1.03\", \"375_l_0_r-0_0.64-1_0.28-2_0.03-3_0.5\", \"376_l_0_r-0_0.5-1_0.19-2_0.89-3_0.98\", \"377_l_0_r-0_0.49-1_0.72-2_1.25-3_0.19\", \"378_l_0_r-0_1.26-1_1.42-2_0.83-3_0.58\", \"379_l_0_r-0_0.22-1_0.09-2_0.6-3_1.49\", \"380_l_0_r-0_1.6-1_0.19-2_0.58-3_0.69\", \"381_l_0_r-0_0.74-1_0.57-2_1.36-3_0.71\", \"382_l_0_r-0_0.11-1_1.37-2_0.51-3_0.47\", \"383_l_0_r-0_0.61-1_0.42-2_1.39-3_0.86\", \"384_l_0_r-0_0.6-1_1.28-2_2.13-3_1.82\", \"385_l_0_r-0_0.69-1_0.48-2_1.09-3_1.27\", \"386_l_0_r-0_0.21-1_0.59-2_0.88-3_1.15\", \"387_l_0_r-0_0.45-1_0.56-2_0.28-3_0.81\", \"388_l_0_r-0_0.71-1_0.32-2_1.26-3_0.5\", \"389_l_0_r-0_0.28-1_0.09-2_0.14-3_1.13\", \"390_l_0_r-0_0.19-1_0.1-2_1.26-3_1.93\", \"391_l_0_r-0_0.44-1_0.87-2_0.66-3_0.16\", \"392_l_0_r-0_0.42-1_0.77-2_1.21-3_0.81\", \"393_l_0_r-0_0.77-1_0.42-2_1.17-3_0.3\", \"394_l_0_r-0_1.23-1_0.12-2_0.76-3_0.57\", \"395_l_0_r-0_0.48-1_0.45-2_1.65-3_0.93\", \"396_l_0_r-0_0.09-1_0.27-2_0.35-3_1.99\", \"397_l_0_r-0_0.31-1_0.38-2_0.08-3_0.38\", \"398_l_0_r-0_1.35-1_0.59-2_0.83-3_0.74\", \"399_l_0_r-0_1.33-1_0.79-2_0.09-3_1.42\", \"400_l_0_r-0_0.56-1_1.62-2_0.16-3_0.54\", \"401_l_0_r-0_0.2-1_1.62-2_2.07-3_0.41\", \"402_l_0_r-0_0.08-1_1.23-2_0.59-3_1.14\", \"403_l_0_r-0_0.57-1_0.79-2_0.22-3_0.61\", \"404_l_0_r-0_1.08-1_1.36-2_1.11-3_0.64\", \"405_l_0_r-0_0.77-1_0.62-2_1.92-3_0.45\", \"406_l_0_r-0_0.73-1_1.0-2_0.29-3_0.34\", \"407_l_0_r-0_0.16-1_0.26-2_0.39-3_1.25\", \"408_l_0_r-0_1.44-1_1.37-2_0.1-3_1.81\", \"409_l_0_r-0_0.03-1_0.12-2_1.26-3_0.41\", \"410_l_0_r-0_0.81-1_0.09-2_1.15-3_0.77\", \"411_l_0_r-0_0.42-1_0.12-2_0.45-3_0.68\", \"412_l_0_r-0_1.38-1_0.99-2_0.84-3_0.74\", \"413_l_0_r-0_0.07-1_0.7-2_1.3-3_0.32\", \"414_l_0_r-0_0.97-1_0.05-2_0.2-3_0.52\", \"415_l_0_r-0_0.74-1_0.25-2_1.57-3_1.01\", \"416_l_0_r-0_0.74-1_1.77-2_2.09-3_0.76\", \"417_l_0_r-0_0.5-1_0.98-2_0.11-3_0.06\", \"418_l_0_r-0_1.33-1_0.1-2_0.94-3_0.7\", \"419_l_0_r-0_1.12-1_0.54-2_0.09-3_0.14\", \"420_l_0_r-0_0.58-1_0.53-2_0.25-3_0.76\", \"421_l_0_r-0_0.67-1_0.56-2_0.82-3_0.69\", \"422_l_0_r-0_0.3-1_0.23-2_1.06-3_0.22\", \"423_l_0_r-0_0.46-1_0.88-2_0.54-3_0.19\", \"424_l_0_r-0_0.68-1_0.72-2_0.3-3_0.05\", \"425_l_0_r-0_1.8-1_0.57-2_0.4-3_0.54\", \"426_l_0_r-0_1.66-1_0.42-2_1.07-3_1.17\", \"427_l_0_r-0_0.28-1_1.09-2_1.67-3_0.44\", \"428_l_0_r-0_0.97-1_0.91-2_0.93-3_0.17\", \"429_l_0_r-0_0.39-1_0.74-2_0.41-3_1.48\", \"430_l_0_r-0_0.14-1_1.1-2_0.1-3_0.18\", \"431_l_0_r-0_0.21-1_0.67-2_0.84-3_0.98\", \"432_l_0_r-0_0.45-1_0.37-2_2.15-3_1.28\", \"433_l_0_r-0_0.63-1_0.27-2_1.14-3_0.74\", \"434_l_0_r-0_2.05-1_1.55-2_1.38-3_0.66\", \"435_l_0_r-0_0.56-1_1.1-2_2.06-3_1.01\", \"436_l_0_r-0_0.35-1_0.19-2_1.68-3_0.07\", \"437_l_0_r-0_1.14-1_0.09-2_0.13-3_1.67\", \"438_l_0_r-0_0.93-1_0.97-2_0.1-3_0.51\", \"439_l_0_r-0_0.1-1_0.47-2_0.26-3_1.0\", \"440_l_0_r-0_0.6-1_1.74-2_0.89-3_1.37\", \"441_l_0_r-0_0.93-1_0.67-2_0.6-3_0.18\", \"442_l_0_r-0_1.42-1_0.52-2_0.7-3_0.16\", \"443_l_0_r-0_1.74-1_0.66-2_0.93-3_1.04\", \"444_l_0_r-0_0.49-1_0.26-2_0.22-3_1.12\", \"445_l_0_r-0_1.27-1_0.3-2_1.52-3_2.28\", \"446_l_0_r-0_0.11-1_0.01-2_0.38-3_0.69\", \"447_l_0_r-0_1.4-1_0.74-2_0.39-3_0.12\", \"448_l_0_r-0_0.68-1_0.55-2_0.11-3_0.01\", \"449_l_0_r-0_0.98-1_0.85-2_2.3-3_0.91\", \"450_l_0_r-0_1.05-1_0.17-2_2.15-3_0.37\", \"451_l_0_r-0_0.41-1_2.16-2_0.62-3_0.07\", \"452_l_0_r-0_0.6-1_0.34-2_1.21-3_1.22\", \"453_l_0_r-0_0.36-1_0.45-2_0.64-3_1.11\", \"454_l_0_r-0_0.46-1_0.14-2_0.77-3_0.57\", \"455_l_0_r-0_1.37-1_0.41-2_1.35-3_0.08\", \"456_l_0_r-0_0.22-1_0.44-2_0.8-3_0.0\", \"457_l_0_r-0_0.39-1_0.51-2_0.62-3_0.03\", \"458_l_0_r-0_1.73-1_1.12-2_0.54-3_0.34\", \"459_l_0_r-0_0.35-1_0.3-2_0.05-3_1.08\", \"460_l_0_r-0_0.25-1_0.35-2_2.11-3_0.13\", \"461_l_0_r-0_0.14-1_0.54-2_0.84-3_1.53\", \"462_l_0_r-0_0.26-1_0.47-2_1.96-3_1.54\", \"463_l_0_r-0_0.85-1_0.52-2_0.76-3_0.56\", \"464_l_0_r-0_1.07-1_0.65-2_0.76-3_1.28\", \"465_l_0_r-0_0.06-1_0.12-2_0.55-3_0.39\", \"466_l_0_r-0_0.17-1_1.1-2_0.55-3_0.33\", \"467_l_0_r-0_1.32-1_0.43-2_0.32-3_0.11\", \"468_l_0_r-0_0.21-1_0.67-2_2.29-3_0.39\", \"469_l_0_r-0_0.33-1_0.86-2_0.43-3_1.67\", \"470_l_0_r-0_1.25-1_0.34-2_1.62-3_0.14\", \"471_l_0_r-0_1.31-1_0.89-2_1.06-3_0.96\", \"472_l_0_r-0_0.54-1_0.28-2_1.43-3_1.45\", \"473_l_0_r-0_1.5-1_0.71-2_0.84-3_2.07\", \"474_l_0_r-0_0.41-1_0.46-2_0.03-3_0.32\", \"475_l_0_r-0_0.39-1_0.59-2_0.08-3_1.04\", \"476_l_0_r-0_1.04-1_0.76-2_0.89-3_0.11\", \"477_l_0_r-0_0.7-1_0.07-2_0.14-3_0.24\", \"478_l_0_r-0_1.51-1_0.06-2_2.45-3_0.89\", \"479_l_0_r-0_0.03-1_0.9-2_1.52-3_1.44\", \"480_l_0_r-0_0.72-1_1.42-2_0.66-3_1.44\", \"481_l_0_r-0_0.42-1_0.54-2_1.42-3_0.72\", \"482_l_0_r-0_0.47-1_0.18-2_1.43-3_0.75\", \"483_l_0_r-0_0.35-1_0.23-2_1.85-3_0.8\", \"484_l_0_r-0_0.8-1_0.63-2_0.16-3_1.11\", \"485_l_0_r-0_0.53-1_0.03-2_0.39-3_0.03\", \"486_l_0_r-0_1.71-1_0.22-2_2.17-3_0.87\", \"487_l_0_r-0_1.58-1_0.16-2_1.12-3_1.06\", \"488_l_0_r-0_0.25-1_1.15-2_0.37-3_0.96\", \"489_l_0_r-0_0.89-1_0.96-2_0.36-3_0.36\", \"490_l_0_r-0_0.73-1_0.43-2_0.1-3_0.15\", \"491_l_0_r-0_1.11-1_0.38-2_0.38-3_1.34\", \"492_l_0_r-0_0.32-1_0.05-2_0.74-3_0.58\", \"493_l_0_r-0_0.41-1_1.23-2_0.33-3_0.49\", \"494_l_0_r-0_0.66-1_0.08-2_0.02-3_0.17\", \"495_l_0_r-0_0.12-1_0.68-2_1.93-3_1.65\", \"496_l_0_r-0_0.01-1_0.11-2_0.64-3_1.75\", \"497_l_0_r-0_0.01-1_1.34-2_0.8-3_0.43\", \"498_l_0_r-0_1.28-1_0.43-2_1.23-3_0.22\", \"499_l_0_r-0_1.07-1_0.34-2_0.1-3_0.62\", \"500_l_0_r-0_1.6-1_0.17-2_0.81-3_0.7\", \"501_l_0_r-0_0.27-1_0.28-2_0.29-3_1.1\", \"502_l_0_r-0_0.54-1_0.11-2_1.12-3_0.67\", \"503_l_0_r-0_0.31-1_0.8-2_0.59-3_0.45\", \"504_l_0_r-0_0.75-1_0.21-2_1.63-3_0.16\", \"505_l_0_r-0_2.27-1_0.27-2_0.6-3_0.51\", \"506_l_0_r-0_0.65-1_0.38-2_0.38-3_1.07\", \"507_l_0_r-0_0.8-1_0.08-2_0.41-3_1.02\", \"508_l_0_r-0_0.2-1_0.84-2_1.69-3_0.94\", \"509_l_0_r-0_0.68-1_0.01-2_0.27-3_1.39\", \"510_l_0_r-0_1.51-1_0.01-2_0.37-3_1.37\", \"511_l_0_r-0_0.27-1_1.11-2_0.87-3_0.93\", \"512_l_0_r-0_1.9-1_0.25-2_0.75-3_1.18\", \"513_l_0_r-0_0.49-1_1.6-2_0.11-3_0.51\", \"514_l_0_r-0_1.18-1_1.02-2_0.22-3_0.62\", \"515_l_0_r-0_0.81-1_1.54-2_0.36-3_0.13\", \"516_l_0_r-0_0.64-1_0.06-2_0.44-3_1.48\", \"517_l_0_r-0_0.27-1_0.7-2_0.53-3_0.56\", \"518_l_0_r-0_1.36-1_0.79-2_0.47-3_0.07\", \"519_l_0_r-0_0.88-1_0.44-2_0.44-3_0.43\", \"520_l_0_r-0_0.48-1_1.12-2_1.43-3_1.05\", \"521_l_0_r-0_0.25-1_0.62-2_0.02-3_0.49\", \"522_l_0_r-0_0.69-1_0.87-2_0.65-3_1.12\", \"523_l_0_r-0_1.58-1_0.97-2_0.11-3_0.55\", \"524_l_0_r-0_1.47-1_0.11-2_0.36-3_0.05\", \"525_l_0_r-0_1.64-1_0.61-2_1.87-3_0.62\", \"526_l_0_r-0_1.55-1_0.02-2_0.23-3_1.35\", \"527_l_0_r-0_1.07-1_0.2-2_0.65-3_0.4\", \"528_l_0_r-0_0.14-1_0.92-2_0.72-3_0.25\", \"529_l_0_r-0_1.09-1_0.99-2_0.6-3_1.79\", \"530_l_0_r-0_0.14-1_0.04-2_0.51-3_0.81\", \"531_l_0_r-0_1.31-1_0.51-2_1.64-3_1.34\", \"532_l_0_r-0_1.28-1_0.1-2_0.28-3_0.4\", \"533_l_0_r-0_0.44-1_0.53-2_1.22-3_0.53\", \"534_l_0_r-0_1.27-1_0.68-2_1.09-3_0.24\", \"535_l_0_r-0_1.19-1_1.21-2_0.15-3_1.47\", \"536_l_0_r-0_0.35-1_1.06-2_0.33-3_0.66\", \"537_l_0_r-0_0.69-1_0.84-2_0.69-3_1.92\", \"538_l_0_r-0_0.77-1_0.84-2_0.91-3_1.1\", \"539_l_0_r-0_1.44-1_0.51-2_0.55-3_0.76\", \"540_l_0_r-0_1.3-1_0.01-2_1.38-3_1.18\", \"541_l_0_r-0_1.46-1_0.07-2_1.1-3_0.69\", \"542_l_0_r-0_0.57-1_1.16-2_0.16-3_0.37\", \"543_l_0_r-0_0.34-1_0.19-2_0.01-3_0.27\", \"544_l_0_r-0_0.16-1_1.34-2_0.14-3_0.04\", \"545_l_0_r-0_0.69-1_0.5-2_0.46-3_0.01\", \"546_l_0_r-0_0.45-1_0.86-2_0.99-3_0.4\", \"547_l_0_r-0_2.05-1_0.91-2_0.76-3_0.98\", \"548_l_0_r-0_1.2-1_1.93-2_1.72-3_0.3\", \"549_l_0_r-0_0.8-1_0.35-2_1.57-3_1.34\", \"550_l_0_r-0_0.22-1_0.79-2_0.3-3_1.4\", \"551_l_0_r-0_0.94-1_0.08-2_0.22-3_1.15\", \"552_l_0_r-0_0.64-1_0.02-2_1.3-3_1.05\", \"553_l_0_r-0_0.94-1_0.85-2_0.01-3_1.11\", \"554_l_0_r-0_0.3-1_0.34-2_0.8-3_0.5\", \"555_l_0_r-0_0.58-1_0.39-2_0.66-3_0.4\", \"556_l_0_r-0_0.17-1_0.38-2_1.41-3_1.19\", \"557_l_0_r-0_0.33-1_1.41-2_0.29-3_1.07\", \"558_l_0_r-0_0.59-1_0.59-2_0.29-3_0.65\", \"559_l_0_r-0_0.68-1_0.62-2_0.93-3_0.07\", \"560_l_0_r-0_0.2-1_0.73-2_1.81-3_1.1\", \"561_l_0_r-0_0.37-1_0.43-2_1.57-3_0.5\", \"562_l_0_r-0_0.68-1_1.41-2_0.42-3_0.63\", \"563_l_0_r-0_1.06-1_0.11-2_0.6-3_0.71\", \"564_l_0_r-0_0.83-1_1.06-2_0.84-3_0.24\", \"565_l_0_r-0_0.39-1_0.09-2_1.06-3_0.17\", \"566_l_0_r-0_0.37-1_1.46-2_1.07-3_1.0\", \"567_l_0_r-0_0.32-1_0.64-2_0.85-3_0.74\", \"568_l_0_r-0_0.25-1_0.4-2_0.85-3_2.11\", \"569_l_0_r-0_0.72-1_0.46-2_0.63-3_0.36\", \"570_l_0_r-0_0.2-1_0.05-2_1.79-3_1.38\", \"571_l_0_r-0_0.43-1_1.36-2_0.48-3_0.27\", \"572_l_0_r-0_0.24-1_0.96-2_1.59-3_1.53\", \"573_l_0_r-0_0.24-1_0.2-2_1.13-3_0.1\", \"574_l_0_r-0_0.8-1_1.59-2_0.24-3_0.32\", \"575_l_0_r-0_1.45-1_0.65-2_0.88-3_0.09\", \"576_l_0_r-0_0.96-1_0.78-2_0.21-3_1.67\", \"577_l_0_r-0_0.11-1_0.28-2_1.65-3_0.37\", \"578_l_0_r-0_1.2-1_1.53-2_0.29-3_0.77\", \"579_l_0_r-0_0.69-1_0.3-2_0.81-3_0.51\", \"580_l_0_r-0_0.63-1_0.29-2_2.41-3_0.77\", \"581_l_0_r-0_0.54-1_0.1-2_0.25-3_0.69\", \"582_l_0_r-0_0.28-1_0.74-2_0.65-3_0.98\", \"583_l_0_r-0_0.1-1_1.09-2_1.15-3_0.53\", \"584_l_0_r-0_0.24-1_1.64-2_1.91-3_0.24\", \"585_l_0_r-0_0.18-1_1.38-2_0.41-3_1.43\", \"586_l_0_r-0_1.13-1_0.45-2_0.11-3_0.46\", \"587_l_0_r-0_0.26-1_0.41-2_0.21-3_0.72\", \"588_l_0_r-0_0.48-1_1.13-2_0.49-3_0.25\", \"589_l_0_r-0_0.68-1_0.04-2_3.15-3_0.73\", \"590_l_0_r-0_0.65-1_0.08-2_0.04-3_0.14\", \"591_l_0_r-0_1.24-1_0.17-2_0.79-3_0.45\", \"592_l_0_r-0_0.47-1_1.09-2_1.67-3_0.2\", \"593_l_0_r-0_0.42-1_0.82-2_0.24-3_0.34\", \"594_l_0_r-0_0.64-1_1.16-2_0.96-3_0.13\", \"595_l_0_r-0_1.76-1_0.81-2_2.3-3_2.65\", \"596_l_0_r-0_1.58-1_1.13-2_0.58-3_0.23\", \"597_l_0_r-0_1.07-1_0.62-2_0.83-3_1.64\", \"598_l_0_r-0_0.58-1_0.52-2_1.44-3_0.45\", \"599_l_0_r-0_1.31-1_1.0-2_0.13-3_1.32\", \"600_l_0_r-0_0.36-1_1.64-2_0.71-3_0.63\", \"601_l_0_r-0_0.2-1_2.12-2_0.14-3_1.34\", \"602_l_0_r-0_0.58-1_0.27-2_0.86-3_1.06\", \"603_l_0_r-0_0.78-1_1.43-2_0.59-3_1.07\", \"604_l_0_r-0_1.02-1_1.14-2_0.6-3_0.59\", \"605_l_0_r-0_0.22-1_0.81-2_0.62-3_0.76\", \"606_l_0_r-0_0.02-1_0.02-2_0.23-3_0.1\", \"607_l_0_r-0_0.11-1_1.37-2_1.8-3_1.14\", \"608_l_0_r-0_0.92-1_1.22-2_1.01-3_0.56\", \"609_l_0_r-0_1.37-1_1.21-2_0.02-3_1.8\", \"610_l_0_r-0_0.74-1_0.3-2_0.93-3_1.31\", \"611_l_0_r-0_0.14-1_1.04-2_0.85-3_0.12\", \"612_l_0_r-0_1.27-1_0.74-2_0.42-3_0.67\", \"613_l_0_r-0_0.52-1_0.55-2_1.06-3_1.18\", \"614_l_0_r-0_0.3-1_0.99-2_1.75-3_0.41\", \"615_l_0_r-0_0.4-1_1.15-2_0.77-3_1.73\", \"616_l_0_r-0_0.97-1_0.35-2_0.35-3_1.35\", \"617_l_0_r-0_1.15-1_0.96-2_0.77-3_0.21\", \"618_l_0_r-0_0.01-1_0.82-2_0.58-3_0.18\", \"619_l_0_r-0_0.12-1_0.91-2_0.54-3_2.02\", \"620_l_0_r-0_1.23-1_0.11-2_1.26-3_1.34\", \"621_l_0_r-0_0.26-1_0.37-2_0.57-3_1.26\", \"622_l_0_r-0_0.43-1_0.86-2_0.19-3_0.95\", \"623_l_0_r-0_1.04-1_1.08-2_1.66-3_0.12\", \"624_l_0_r-0_0.36-1_0.75-2_0.21-3_1.8\", \"625_l_0_r-0_0.47-1_0.93-2_1.04-3_0.59\", \"626_l_0_r-0_0.85-1_0.26-2_0.11-3_1.53\", \"627_l_0_r-0_0.61-1_0.05-2_0.55-3_0.16\", \"628_l_0_r-0_0.56-1_1.74-2_0.87-3_0.83\", \"629_l_0_r-0_0.38-1_1.33-2_0.87-3_2.11\", \"630_l_0_r-0_1.27-1_0.78-2_1.38-3_0.22\", \"631_l_0_r-0_0.14-1_1.36-2_2.17-3_0.63\", \"632_l_0_r-0_0.24-1_0.22-2_1.32-3_1.75\", \"633_l_0_r-0_1.78-1_0.83-2_1.04-3_0.69\", \"634_l_0_r-0_0.9-1_0.83-2_1.66-3_0.95\", \"635_l_0_r-0_0.31-1_0.21-2_1.74-3_0.05\", \"636_l_0_r-0_1.13-1_1.04-2_0.25-3_1.34\", \"637_l_0_r-0_1.31-1_0.89-2_0.12-3_0.96\", \"638_l_0_r-0_0.22-1_0.89-2_3.17-3_0.91\", \"639_l_0_r-0_0.95-1_1.51-2_0.73-3_0.49\", \"640_l_0_r-0_0.77-1_1.72-2_0.05-3_0.44\", \"641_l_0_r-0_1.4-1_0.09-2_0.3-3_0.97\", \"642_l_0_r-0_0.62-1_0.09-2_0.67-3_0.03\", \"643_l_0_r-0_1.67-1_1.05-2_0.74-3_0.59\", \"644_l_0_r-0_0.81-1_0.89-2_1.05-3_0.0\", \"645_l_0_r-0_0.17-1_1.03-2_1.46-3_0.7\", \"646_l_0_r-0_0.72-1_0.25-2_1.6-3_1.45\", \"647_l_0_r-0_0.72-1_0.18-2_0.06-3_0.14\", \"648_l_0_r-0_1.05-1_1.14-2_0.39-3_0.84\", \"649_l_0_r-0_0.71-1_1.65-2_0.07-3_1.2\", \"650_l_0_r-0_0.1-1_0.22-2_0.07-3_1.32\", \"651_l_0_r-0_0.46-1_0.67-2_1.61-3_0.4\", \"652_l_0_r-0_0.78-1_1.21-2_0.63-3_0.18\", \"653_l_0_r-0_0.42-1_0.85-2_0.31-3_0.43\", \"654_l_0_r-0_1.14-1_0.07-2_0.17-3_1.77\", \"655_l_0_r-0_0.29-1_0.14-2_1.57-3_0.95\", \"656_l_0_r-0_1.16-1_1.78-2_1.93-3_0.38\", \"657_l_0_r-0_0.68-1_0.96-2_1.5-3_0.58\", \"658_l_0_r-0_1.57-1_1.09-2_0.69-3_0.1\", \"659_l_0_r-0_0.81-1_0.03-2_0.36-3_1.67\", \"660_l_0_r-0_0.16-1_0.66-2_1.34-3_1.14\", \"661_l_0_r-0_1.13-1_0.58-2_0.06-3_0.21\", \"662_l_0_r-0_0.88-1_1.13-2_1.48-3_1.35\", \"663_l_0_r-0_2.09-1_0.13-2_0.05-3_1.8\", \"664_l_0_r-0_1.32-1_1.49-2_0.09-3_1.72\", \"665_l_0_r-0_0.54-1_1.36-2_0.74-3_2.08\"], \"type\": \"scatter3d\", \"x\": [0.05644973140026055, -0.3139619811749099, 0.07849517179998822, -2.053179447286218, 0.4778674887155163, -1.3722606233959291, -0.8730025455319738, 0.8619138029911262, -2.18050444563794, 1.0254472444016582, -1.7872683461880194, 0.007219260198692901, 0.14920582943465233, -2.6590395590104374, 1.7258815304798651, 0.4630118160874366, 0.09476646157532631, -1.5112862252450852, 1.5957436062418258, 0.47674504425793107, 0.5150147355456263, 0.4595756814914904, -1.365965998572137, -0.6920631121399909, 0.14663864575767627, -0.4920523950931712, -1.6078926069766526, 0.7574245091686271, 0.6249698515638762, 0.8087614621752861, 1.2238766593328472, 1.4675258512953717, -0.5059870668660835, 0.3713544895450267, 0.06495089829325407, 0.13184527056835083, 0.9833237852049506, 0.9904410790621618, -0.7830394218087822, -1.7419232495921098, 0.8375239590980732, 0.6553512426503281, 0.6529348364552403, 0.160204982333626, -2.244756840227673, -2.202138212654536, 0.018729570248869898, 0.42060103053631215, -2.1360098682989035, 0.42635937544073466, -1.2816150378365758, 0.7271096907689873, 2.336090374724826, -0.9672559522730266, -0.904112572042919, 0.3777100334335044, 0.2507796832517888, 0.6797883164590797, 0.1946166114027834, -1.592733734183715, -1.9146581291788425, -0.4510438375846989, 0.3208302998042658, -2.604145983209913, 0.44901883080990124, 0.5783526620703823, -1.1852862712701373, 0.9684419219868783, 1.162550948905154, 0.07930612495214873, -0.2905590879759382, 0.9592247315917879, 1.0094282919953121, 0.6684587576985226, 0.1415395226409213, 1.1843572994578735, 0.9623056901042628, 0.46850532775669085, 0.25221130818844495, -2.0330301788834784, 0.5353362915801336, 0.45265595262051117, 0.14619660952353608, 0.0006111783627051892, 0.6366968546700307, -2.145243339878321, -2.374609362256302, 1.0854474035457917, 0.4153260703984365, 0.3513830604469621, -2.304162119015591, -0.8077935690288647, -2.3060491756242856, -1.5261358879230813, 0.18901455945709777, -0.23484285993218657, -2.1286001148025377, 1.0947581153712682, 0.6358013332951984, -0.8195923519290944, -2.5408097988328686, 1.1462410777382335, 0.9594044617639685, -0.7590903855761622, 1.767476208902103, -0.723213269381618, -0.800283875396299, -1.339678426444347, 1.3814614488243846, 0.4978565195106397, 0.08484391356411325, -0.4936360910716472, 0.011148433175215411, 1.072668543823316, -1.9521433643840727, -3.521954093929351, -2.3511445048691924, 0.2972011105870578, -1.1047853522324076, -0.538501581258872, -1.1051006682518612, 0.10991647351122746, 1.0280897562756461, -3.2725437385895724, -0.6339571397322208, -2.0140606759816557, -3.0602412229839127, -0.8078575566240794, -1.5748960751924868, -0.41466786756934193, 0.16793516286149024, -1.653433804698472, 1.2513431144221032, 0.11921893054886823, 1.0599639471873714, -2.0237229511837174, 1.292104918294163, 1.1142863915720072, 0.23518411754498025, -0.4021766412660295, 0.4631942828116462, -2.1259387050167406, 0.2068326519451349, -0.04708621797764034, 0.4061358677721296, 0.9316179793074726, 0.5831621983259261, -1.1783888767239148, 0.06524332335423444, 0.02588879184332149, 0.5902561535854578, -0.1641313992648954, 0.2622281218928848, -1.05947626982297, 0.09981188755804937, -3.008854453332379, 0.36747588890250227, 1.197598692447082, -1.693714398676816, -2.0762019502207787, -0.6193126755455125, -1.4571254088969172, 0.7274331980102915, -1.9963944849348203, -1.2291283269667415, 0.6923502350700703, 0.8763536291396672, -1.2533351334919969, 1.1517024581303832, 0.4164841898637597, -0.4889915558630279, -0.3637642634727821, 1.034043620740979, -1.3377599235617912, 0.9962586551534462, -3.0744863608289457, 2.924750879174315, -0.8371874822752702, 0.6570024933306049, -2.5374884410779868, 0.4450080170944981, -2.1737698636750125, 2.150822372779407, -0.032374756863611576, 0.09732931067407424, -0.9774256333698839, 0.08372249722023639, -2.404619701546046, -2.5522210295923298, 0.45061334523246366, -2.854569989104538, -1.270413930297061, 0.24372940563372958, 1.2201305125317292, -0.3775420675280021, -1.8749260805593277, 0.9206984744723457, 1.319109725318583, 0.5188409495312096, -0.3237455063626191, -0.9399557469141878, 1.068751903488793, 0.680111208327598, -2.2424110473215046, 0.082309933806054, 1.0553373171231635, 1.4456516715663175, -0.513558884930088, -1.2089500182486914, -2.235011681376287, 0.036818851128671115, -0.3331142197424881, -1.9241735106743825, 2.129196485926263, -1.5054620309704663, -2.4697203665186027, 0.10659994977334075, 0.10950359431619328, -0.13083135945016233, -2.932779572771685, 0.03236129093960738, 0.5211648083905378, 0.76230964169179, -0.5737165566367058, -0.04710503305949865, 0.9731921484580017, 1.5391738986378596, -2.308390778722494, 0.23351112978265998, 1.75139223881849, 0.33327496505649434, -0.5093972313491415, -1.8100242869088845, 1.6697167762427765, 0.5312047950048484, -1.4643582678506462, 1.495707693895802, 1.2076590267301799, -1.9344997909929305, -1.0739399686460305, 0.1672550733180509, 0.42057966971648075, 0.09625225648336189, -2.3405782306526373, 0.030857432149562047, -1.0255927711032398, -2.974631877130106, -0.6336136261967966, -2.312441698529862, 1.0907913104180746, 0.09277825482868596, -0.5519821355018866, 0.7428497020502605, -1.8296152874792853, -1.176536324153773, -1.7999523808976945, 0.8559469723549231, -2.113390901743575, 0.7907263635586717, -1.1528632802139183, -0.9533713006381248, -2.421424258705807, 1.6245450627340978, -1.9789771137995757, -0.9526147271308846, -1.696068777920911, 1.9387918829845456, -2.085267519883005, 0.0481904839370797, 1.1349517359547732, 0.9919989132818081, -1.8375725497255861, 0.5885475267713165, 0.25589532195785303, 1.512736406834891, -2.2704144717359664, -1.8199934037162402, 0.5393336661980439, -0.33238757715257183, -0.5289421030578082, 2.3288066201130624, 0.42894344501739035, -2.195531445759288, -2.054955045862307, -1.6069368095978491, -0.018718116183268352, -1.0053185010026742, -1.6840178058734503, 0.36174577996030366, -0.9196176388518735, 2.4221338339131684, -2.12848706586389, 0.14747565135698038, -1.344738891020433, 1.2533035587632027, -2.560234569042775, -1.3446977462750156, -0.5584508010811449, -2.805573640013847, -2.930676262988997, -0.18710872738085127, -1.3769467858941737, -0.4538399287480319, -0.589323584541531, -1.5542683493799472, -1.3557251227022666, -3.5686172905820905, -0.41280701279530085, -0.7745968901541855, -2.1623259798562797, -1.32082051233216, -1.0056585759772971, -0.3936801383800045, -0.40911300228286784, -1.7231447374700424, -0.4378742303677283, -0.4602702044213839, -2.4546189720759246, -0.7161859880628677, -2.661438270273086, -3.8602117030072893, -2.1363627370197578, -0.5818675680585949, -2.168809408734928, -0.7256251736953954, -1.7259836404701827, -1.91793403147773, -0.7000735263272282, -2.4680145809402116, -1.513029792851273, -1.8796994717471565, -0.8980420253362398, -2.1049854202315013, -2.1143343131936305, -0.04397186605864889, -2.108973166604704, -2.673107026804999, -2.097110137355927, -0.12989817810565762, -1.944707957654488, -0.8370827793666709, -0.6681054762100915, -1.425762103766238, -2.6921658609922416, -2.1724671589041593, -0.09387615150481332, -2.5775635279785574, -3.0890849956973065, -0.6355058648277684, -1.9702074582748845, -1.0498043697560924, -0.5580606481342574, -2.766636543995948, -0.9828336523053289, -2.080195516298594, -1.954166307885373, -0.47349562670122103, -0.2376792492425528, -2.3623553088132807, -1.7129109439876045, -1.4769921669615877, -2.9429946614297124, -0.49758066902165066, -0.3428285988291855, -0.5217397294981706, -1.708308680499964, -1.49630946471146, -1.1232739019050793, -1.3355067049264955, -2.1036355708359, -0.5540274793153337, -0.5277425767960184, -3.198804269509401, -0.8871556831070696, -1.1275954813164815, -0.026675033219673017, -0.8879247041374729, -1.7376582650278134, -0.8339785542109972, -0.8614595390596804, -1.920968607936929, -1.7874977916826627, -1.7622280339382492, -1.393307496948288, -3.4146532559905203, -1.0877291123098007, -0.8771370529973502, -0.2839845575847002, -1.261881558102082, -2.832045354246967, -1.2551331153698433, -1.751661149374089, -1.2118471144178566, -2.695131620416686, -1.7776274111719452, -3.5693220157017516, -2.231128225204009, -2.2095515750062162, -1.9510215416932637, -2.0959302903514248, -3.016675563920467, -2.071617871259439, -0.5941218040630841, -0.2190279528715402, -1.1070251932927089, -2.0493698115032664, -0.2889442739712207, -1.154542314534636, -0.09609870270263077, -1.2578192930712233, -1.1458322150598144, -1.4100992883153716, -0.8430024542374244, -2.3003654841214907, -1.5444703970858387, -1.5664319309495789, -2.0908489662713885, -0.11451215709535567, -0.9416711044674275, -0.09483487163647364, -0.25330912121648586, -0.8277414603414056, -2.5457436034517213, -1.1272437739305667, -1.1653225335919402, -2.2903564262901197, -1.8457082252004797, -2.415952845671462, -0.9275583804686809, -0.4089347593904634, -0.10338530323386752, -1.2506288950318398, -2.1469099457053034, -1.1443222492657217, -2.098702723293213, -2.062143420677015, -1.6775280629877731, -1.409645043902572, -1.235292226570838, -1.8657680039007678, -0.887763129194672, -0.6008391532755408, -0.9648565140748875, -0.9326892007061627, -0.2240923002472145, -2.3001001608405844, -0.3755243965613232, -0.3852837593900339, -1.6069967879953506, -2.297976336245264, -2.168922951339144, -2.663708572989716, -1.6720504713657762, -1.1461352180988948, -1.111517203716138, -2.859626264491987, -1.5398598792766789, -0.6188816891545081, -0.5374012086738462, -1.4067437369002518, -2.1075157940282043, -1.056292533927463, -2.2338867654117713, -1.8587786705370895, -4.049542984900114, -3.4776686060603796, -2.003904666049835, -2.672811972625369, -3.5662569448614554, -0.4252498850741766, -1.7221993767502777, -3.0634488151799917, -1.4308479242606595, -0.841288948851286, -1.9666157021942197, -0.08218595159478592, -1.6696971626447286, -3.1835312137650282, -2.454090501852244, -2.3087492023836607, -4.846793549014244, -1.4177757273097977, -4.239711883074499, -1.8462129996215166, -0.15847052626720703, -0.39013553341699525, -2.168890028651874, -2.968534596564295, -0.37413770625582, -0.3589826644595314, -0.099430107539204, -0.38143663731109656, -0.7407024462721207, -0.9549914551446478, -2.2279790521870675, -2.9473336939202737, -1.7704341584185443, -1.4776726950174641, -2.3476192922943495, -0.6793909752855632, -2.0272592949349844, -1.5144329396888616, -1.9652153739788243, -0.5895189934071104, -1.6272271488237275, -2.5059495501360876, -0.8208606615894805, -0.47602448342930515, -1.6870141283491287, -3.74256682223434, -0.9804644937004848, -1.8403306098195653, -1.3093274803594106, -1.2256403850375968, -1.7868890098793786, -0.35897620812943654, -1.922602491529169, -1.4354991938611725, -1.5978945244699312, -1.8216980886235172, -2.264694990105477, -1.2696216694152884, -1.8047520317754793, -0.11234996393760122, -0.36451260315224987, -1.871413791486575, -1.6640641518880641, -0.6533934562792426, -1.3530624369879767, -0.596398156219814, -0.5110926600186282, -1.6356907657332473, -1.2381881102651224, -1.2602100623597647, -3.731346914890969, -1.6138658467813212, -1.8758937911726556, -0.6900326554319183, -0.9128370222405354, -0.5463146512842403, -1.375715499626749, -1.8312702376931163, -0.16115463695445698, -0.014345597265754462, -0.6349745867574481, -1.2008091955775677, -2.3764702153299924, -1.036056996626361, -1.724030037807931, -1.5719591606848302, -0.2976787854370645, -0.22342140827449952, -1.3526654897734374, -1.534236663063131, -0.8012026859752786, -0.6628251779536523, -1.8261942159220512, -0.29473193284099186, -0.29335804299153323, -2.3245254849410633, -2.125597871129534, -1.573153868900126, -0.418178932188047, -0.60383154639682, -0.9310536248854372, -2.2515822415191895, -1.8048004082981688, -0.8469181938578643, -1.1138726603836786, -0.6331953637802716, -2.380259865852836, -3.251243681243063, -2.270353232400427, -1.4317539773261205, -2.124215046356622, -1.981204526728046, -3.125049716810054, -2.891975428362338, -0.2852584216147408, -1.5505391144951188, -2.4144854054172793, -0.94498956631505, -0.6494109421606185, -2.6850003790940056, -1.908416596142573, -0.40939493680747097, -2.1178726316793792, -2.6478440127341303, -2.7837211167753697, -3.1464359433838567, -0.03972577108900022, -0.8048567167240082, -1.752979727517158, -0.24053151440625076, -0.9624393722255508, -2.5254168807035056, -1.712777251395167, -2.9875827994819595, -2.329491217194715, -1.9733776878479863, -0.7097866497771637, -1.4888225031659195, -0.8607425982434931, -0.5907230162746109, -2.3264064718511674, -0.6246421219036956, -2.7104204671121073, -2.379801314983953, -1.0138507200097777, -2.4887524898677142, -0.9289305129040458, -2.6401130886876123, -0.41842095170811644, -1.8185776766078856, -2.291251531155641, -2.1735879368478876, -0.3524433488115508, -1.0667805892157682, -0.583545980101461, -0.5422868950150307, -1.2593924488421282, -0.67060725663645, -0.19026648408949576, -1.658869385038981, -0.20972677614583002, -1.4181728561979878, -0.8099589517981086, -0.5548768632989344, -0.8724603197674711, -2.060467626711726, -2.3463407295923533, -3.0573072639855745, -1.401447693817882, -1.0445874611404002, -3.6772546532390877, -2.0477373200781854, -1.6519525220957219, -0.12481804940940766, -3.4934540636966904, -3.0189139964800744, -0.054169482853808626, -0.300022798209138, -0.6688390581884656, -0.7421229799878262, -2.282220058843541, -1.4593405917340354, -2.9831663267698234, -1.0766137327285443, -0.3911099750077649, -0.642497828281227, -0.06766498492612794, -1.622887012493619, -0.6270233047499948, -0.8344106053463102, -0.16956637343686032, -2.548372190902225, -3.0351312462811504, -3.172487163061874, -0.6947816777538213, -0.7010728004047728, -1.341368982611341, -0.056842814863412694, -1.4838064990945556, -0.17065597365888385, -0.8538647009173368, -0.7398383276419416], \"y\": [-1.4390576365308536, 1.5362026305873955, -2.20862850691398, 0.17157382637904872, -2.515230742759649, 0.25068938013297837, 0.4845075311393623, -2.401001524710975, 0.5290602155446487, -0.7323070869393482, 0.9473166490619911, 0.3061777917621964, 0.030619074927103584, 0.11128115326132448, -1.0984307131746154, 1.623759996005122, 0.16697782115589277, 0.07706094730061741, -1.9057971306288213, -2.525258040291961, -1.2435650569815782, -0.13779375372692493, 1.4214774197098832, 1.3245062472988733, -0.42900878644144946, 0.9045539822802022, 0.22528310675004826, 0.7905362699296561, -0.18458335067529463, -0.9491985891953971, 0.13793413293314805, 1.5694881476999019, 0.708899058795629, 1.465160004895011, -1.915068760362518, -1.6563531996520005, 0.5615006652806227, 1.6361751526153783, 0.5666543514116453, 0.09155426029140412, -0.42709211525945223, -1.5845730897094925, -0.6233784016340713, -2.6609138846556952, 1.090065730231487, 0.9696631570907865, 0.31650901809795284, -3.2600234696004207, 1.468440663100679, -0.14886520555941352, 0.9230816741594736, 0.8372789940775971, -0.6150498441179705, 1.0634615844481896, 0.06720103497009022, -1.064107923795587, -1.086021279754654, -1.1091020758970385, -1.8252109598254456, 0.21454385274809362, 1.000485126804815, 0.8461725633273098, -1.8237015300823258, 0.8407484415252742, -0.16172820422882805, -4.342607997682677, 0.11648493108791635, -2.6961556822881336, 0.1473026763648213, -2.0743952754527677, 0.2675840827251532, -1.3946850388142527, -0.7373256136640591, -1.9362157239270692, -1.0469489363406235, 0.4632135849792167, -2.368140631161797, -0.1463421937471454, -3.3961012949283913, 0.008510836579688208, -1.718012734664837, -1.1605199780295377, -0.564756115100736, -0.10600798016213187, -1.2494387783723946, 1.3398593864973565, 0.637004490141345, 0.4381982717012365, -2.553445714895554, -1.57480982285239, 1.5160069954762405, 0.19590204731560856, 0.4259371667769163, 0.7580948486696277, -1.1909896317240494, 0.24674348404092106, 0.2590053992090673, -1.2043414855487677, -2.5580505488619076, -0.645880530786326, 0.7395159243280267, -1.776924882737648, 0.30884890621981764, -2.5343042711161274, -0.8938934726972846, 0.6367975321116941, 0.16797777979119122, -3.634334301155229, -1.7473853626455274, -1.386640327021073, -1.968813916645607, -0.8355080589114049, -0.5891944962174551, 0.7239872853836951, 1.7557446116998885, -0.8304207603274832, 0.15286570045379588, -0.6200295990681018, 0.5243892144702595, -0.27764233909726077, 0.12356637689506123, -1.8406543213612525, -2.213933049361832, -0.4902017436872158, 0.35279956982573046, 0.6591012282242332, 1.0621042028184378, -2.910273775608262, 3.12844846255675, 0.004070881637687984, -0.712669706029786, -0.31328738730864736, 0.4597909955566184, -2.255914231441544, -0.6836734170292698, -1.7223992346856463, -1.9078277349637545, -4.404738278521005, -0.1463354095204623, -0.838842497557839, -2.578036005127193, 0.18155904171719262, -4.275682737133858, -1.608278021439469, -2.145212755904331, -0.13452964657570488, -2.3816731586208917, -1.9891538337469268, -0.7630745748766364, -1.3873956855890226, -2.1907409114025382, -0.8600456487794994, -0.9414222360227689, 1.9685245540697167, -1.6368392418554998, -0.1965316590945504, -1.7182066595929653, -0.6245928125911404, 0.27798519513923337, -0.029300941513281775, 0.5954213807889635, 0.20084274701443894, -2.077666931384945, -0.13751816941087336, 0.11256632466551153, -1.335850532165582, -1.0267395764573062, -1.1662458145996772, -1.8262037471310686, -0.36694573288452814, 1.9951776595588844, -0.2360243145894535, -1.7615720404057944, 0.3977947598917466, -1.0140576094612581, -0.6762315015415103, -0.9747745485697819, 0.2786930249341999, -1.1693467011805014, -0.7136080396044624, 0.05156669034019434, 0.31410556018650193, -0.5335495487166411, -2.9931750037786418, -1.3353189402062502, 0.8351919167407864, -3.3310637618046846, -2.0177649031897342, 0.4000198162954365, -1.9650453795990865, 2.2508304309564804, -1.0868206025770688, -0.5721480853628802, 0.7511862505448488, 0.03970770378121702, -2.5577883648935598, -1.5019871003191971, -1.7181786353771762, -0.4394423917133726, -4.164112459194948, 0.26832654474646667, -1.7338440797098524, -0.5325103791180031, -0.37558499312127547, -0.5142129809790446, -0.6747202396885686, -2.7605024649865735, -0.10383575749400498, 1.0400387019307642, 0.20080677607247477, -4.4433212803061135, -1.8248226142207975, 0.8218522128882368, 1.9329786113365541, 0.7357415710696453, -2.6846554775688487, -0.8678458666514315, -1.7487830215681157, 0.07874240540267063, -0.21688734131611498, 0.12366168475128148, -2.3278147653267807, 1.054445184345441, -0.1334468639299935, 1.7719077929370064, -2.322206083021347, 0.4490865238561679, -2.0368256667125046, -1.3902767866061647, -1.3838627442210805, -0.8009573459664335, -2.461567921637008, 0.320490353552088, -1.6346463668756224, -0.5605508377153972, -1.5284256013346353, -3.505009078935659, -0.7278845811348651, 0.4676349787763372, -3.0234562972672157, -1.9931072203504323, 0.6648359124196899, 0.5756615274878711, -0.6238068385608486, -3.087672888664429, 1.8158696161671761, 0.25275829490786506, -0.5587427537468693, 0.07325528915336155, -0.06054988616893753, -1.0931272913147696, -1.253119138933915, -0.6032010323903387, 0.13047236760013958, 0.7378189706150933, -2.4992275823272285, -0.5447730310200165, 0.7940125433846332, -0.13651614580587546, -0.8282104042074022, 0.6231720824877549, 0.4071292297762945, 2.4185580085531124, -2.113634455217876, 0.13282825606865067, 1.6992626526552423, -2.7031683299052323, -1.0043658073744832, -0.2926411237916151, -1.7151175851272944, -3.358088016973186, -1.7425391754153008, -3.032956882129196, -1.614376323838847, -0.044492167085082635, -0.8329616399513398, 0.9859550359983138, 1.0585644310513858, 1.9093179407529774, -0.6394246759447546, -1.8443824496645875, -0.9269585230679719, 0.7857314879215112, -0.018396901837276602, 0.02299017554755034, 0.7605047751700875, 2.3150831168613966, -1.126266207864675, -2.019022593333058, 1.0312202888164732, 0.21030424569199413, -0.846171343311181, -0.4638735528605731, 1.4382455834506485, -1.7533460751927916, -1.424563905730036, -1.6379991466558494, -1.4212973702258693, -1.8772235199309697, -1.4708443753386422, -1.3058866395786106, -2.0345417499814866, -1.265022416668705, -2.0939684959333125, -1.661052397007065, -0.15911429944735622, -1.0605295776621821, -0.6237736835698486, -1.7004646863658393, -0.24869826603937584, -0.49937449992057525, -3.5627160284239117, -1.784861001584475, -1.893587446049191, -0.1406229502078128, -1.7834053244727346, -0.5438265701766966, -1.7455022905317725, -0.5003797583072821, -2.244467712709814, -1.0089479839959001, -2.1042616184728704, -0.2087831263213088, -2.7964788724379743, -1.8583809083703065, -1.827848127362031, -1.002429544558198, -1.9202415885733708, -0.37464251751636424, -2.1945966561348733, -2.2107449569529267, -1.8499927403311955, -1.7720037961238093, -0.715823416481997, -0.004439965089927278, -1.7495695384804577, -1.0037130057812504, -1.2401490280107836, -1.4052115382585042, -0.062444032927356896, -0.39520180263750404, -2.5233589945885093, -2.766085629566085, -1.8260435527976786, -1.4632675897242873, -0.8757099880186308, -3.1047481087137805, -0.2539066910063519, -0.6450552057710852, -2.5913901059200564, -0.6051310508376859, -0.5247088660312454, -1.0249773714258126, -1.7895764589980976, -1.0675365221383735, -0.6510225846999849, -0.20630156788373388, -0.2187675553520526, -0.6731866470185708, -1.2698902949805837, -2.0510621170820897, -2.044293092758141, -0.0009925774999773873, -2.3810116567453825, -0.9851115010794019, -0.9847064029834464, -1.5576757172194213, -1.6111954143078167, -2.163044569493143, -0.798674019068154, -1.5540813467477395, -2.8531255614929023, -1.8053374263633581, -2.9418914496417834, -0.09607371586023483, -1.3626554843733945, -1.2240216736203897, -1.2527036657956465, -1.3745753682557749, -0.5992423811166546, -1.8840042571869207, -1.364104944390055, -0.7994969490621446, -1.8860577390282258, -2.1325319213445146, -2.897740298274588, -1.5674767754934202, -2.8339298979196945, -2.936013789486707, -0.14052290362542696, -1.7776933212430481, -1.9969300795774505, -2.8080851218704552, -2.3883976547716728, -1.58182482756815, -1.646018405376068, -0.3485976067224632, -2.0352030033976956, -0.8292761879033882, -0.9515001243414193, -1.8027470191416763, -2.3110221341400434, -0.8776023324996108, -2.4486985860003454, -1.3586155528606945, -1.9222758380754659, -1.9605409519459676, -0.3896331719428877, -0.670254313449506, -1.2802018267837076, -3.6830585651771894, -0.45038091940174985, -1.1644978377615438, -1.29887359919653, -1.6833073593796468, -2.2324539429291548, -4.272074367313445, -1.297689487881435, -3.8108565307342253, -2.2675107576303883, -0.366573608281928, -2.56966881782454, -1.0613229393306853, -2.2601195610632283, -0.30254983251076106, -1.542268835161602, -2.410085130142925, -1.6725185314487057, -1.8792298335156015, -0.7922036792447578, -0.5082718652321188, -1.7640582392814215, -4.420486163558614, -2.4334085424405982, -1.3768796229056486, -3.211139421056104, -1.8773735317053404, -1.5980979687877792, -0.09962146075833733, -0.2622322686232115, -1.900133233122383, -1.9287627904684599, -3.3632982747000466, -1.2999964590979856, -2.0708432386477735, -2.2117726727240328, -0.3799014008523518, -0.7224445635177655, -1.9046753866671975, -2.373118031874381, -2.251722556752447, -0.6179594676260842, -1.2054076250670112, -0.6380084872401979, -1.0919010098164759, -2.977155136544804, -0.796193883406561, -2.2209195129621087, -1.4129030154347155, -0.051079339790295, -2.687398253275348, -2.911276536737816, -1.9625365630797607, -0.7649108504000063, -0.7563764457179512, -0.5511411116861193, -0.8311845260288753, -1.7891873621642753, -2.562774142666863, -0.8990818267102099, -2.952623090380434, -1.056670425407952, -1.6378412450281665, -1.2669192325393337, -0.03244148279790904, -1.439602318133844, -1.4854101398620916, -0.14357450418531237, -3.145275497031026, -1.5244308207908603, -1.8216659000271809, -1.4452689432533596, -1.4278073246967051, -1.9683003321348171, -1.6802103289334167, -2.1532793547796634, -2.194365948166113, -1.1187793852422818, -3.328957858727127, -2.0194069257508103, -2.0091712474936765, -1.2714060906068825, -0.9303869808859344, -3.17769182736888, -0.02108210671018773, -1.9284140474768097, -1.2986100079368164, -0.9599077459797611, -2.0977746435550655, -1.0889616088016179, -1.5880484371525834, -0.2930767895019736, -1.1241357408179034, -0.9140618394316568, -2.2123763859371968, -0.6007903602473319, -0.3798760494579272, -0.4092810024453256, -2.9632714304883816, -2.1750577514587492, -0.37268427883800226, -3.5186981904749435, -2.818442963735561, -0.10746187142917785, -2.3992244342805416, -2.540870072446758, -0.4356203164634065, -0.5328265788675681, -0.4714344797801612, -0.4353621703261542, -1.4298762942555694, -2.1309023174043733, -0.6488019315138351, -0.6855960016386617, -0.8923985201821736, -3.1655160092521806, -1.1525159431675858, -1.1147683750643038, -2.209179834043051, -2.4412340184512082, -2.5311688636964527, -2.0031198001204498, -0.27638192543008344, -1.2231977239326783, -1.0888003432503521, -1.8408547050493125, -0.3266860286880544, -2.0934793915625485, -0.9800896902211004, -1.508222776917421, -1.9911316606894442, -1.098881070387551, -0.7350225964507353, -1.008257603105476, -0.13853532168307492, -2.5128407048641654, -0.9922043437164348, -0.7639694105734024, -1.8040043619606225, -2.5220050395383486, -0.6216595172106454, -2.73239481189969, -1.3010186560851735, -2.2430858490708214, -1.3996703899833065, -1.6017428975907797, -2.800812115476093, -0.6461341622707593, -1.021050436762998, -0.9301630194575603, -1.8109830094735069, -3.141802404974411, -0.4524896120398012, -1.7701013819092646, -0.8380131547547857, -1.0646578985189135, -2.480840593428489, -1.247332759536809, -1.530450053689762, -0.9767455488089983, -1.8308761074638484, -3.021331290127645, -1.5914186454165105, -1.1291436634248464, -0.7368760820749625, -0.8802632168145678, -2.260305683008262, -2.70138404830106, -1.4644736516721468, -2.831932861343882, -2.482907786883339, -0.2461540420130408, -5.008982160420718, -1.1518003026575403, -4.042076792336472, -3.4066737673635368, -0.9674988797716834, -1.5294559239899965, -0.49032161112133354, -3.35362431063541, -1.9577493863157114, -1.3794650699092181, -1.6745050922444678, -1.2877281529134321, -1.5692563337856145, -2.6352862201285037, -1.4922803944490528, -2.8616615727067716, -1.44229243573813, -0.13220702379925753, -1.6713213445430803, -1.8090118042245613, -2.9851638229328463, -3.0890776138089246, -0.9670927157058141, -0.8845771973908915, -2.5907537873375563, -3.4735830161270074, -3.2160651957109865, -0.020237566418278563, -1.09287961699559, -0.8489947160979482, -0.7997603262001308, -1.0640741559470925, -1.7497833138534855, -0.769654159898407, -0.7131939146904466, -0.7663244913243116, -0.6158335424486485, -2.2376216564105995, -2.58865073772933, -0.5684215382774215, -1.8540955012131706, -1.9359367535977934, -1.2681671029098667, -1.0393240329146902, -1.3421392642859482, -2.978811376116147, -2.8042403415758272, -0.8660631536196253, -1.3803760887139047, -2.1674943132467694, -1.3173918466742156, -3.1785143768914117, -1.6645223420495885, -1.7420426039856123, -0.2512931959782343, -0.33470531263885517, -3.682625155215259, -0.7321847098991556, -0.329637768927183, -0.5184503627631645, -1.7579202113945533, -1.4260226636360902, -1.0539474494988088, -1.7052048141322778, -2.481758973342731, -2.3375382509456566, -2.1298600980983284, -0.06658202544725722, -2.314592943181727, -1.79982515800376, -2.9814455906864366, -0.30541925186791696, -1.6479650830252897, -1.573008178077377, -1.925451041292213, -1.6876782435806024, -1.1382512985663178, -1.7589392401952444, -2.6233328887220826, -0.05969249163159274, -1.8751705436796753, -0.047989892434921355, -0.0900678426579904, -1.7145923907098561], \"z\": [-3.9589646654481463, 0.9122958986776544, 1.8236959803364439, 1.6658001519892833, 1.487726400638011, 2.410309044374838, -3.154091230822858, 0.8713291137484918, -4.544974585071853, 1.068666930421922, 3.223392302777903, 0.2006307310614801, -4.925575932515532, 0.6017399068904936, -0.4554564601386959, 1.9989288539543875, -1.3036367220887493, -0.8087214257105835, 0.4117262127610273, 0.7359511438364059, -4.114318572313261, -1.3597563349946546, 2.962977028840913, -1.0723419099384506, 0.1748444809558336, -4.805988424048235, 0.4555279854125214, -1.5555615461290504, -3.2712152112128976, -0.8935793535146992, -1.2268223848080155, 2.831737011750291, -1.4632117997370395, 0.2696300810040926, 0.5110642560362404, -3.6270296888429923, 0.2958431235934711, -0.7630234617161973, 3.0095859699056025, 2.802589457795041, 3.267381313784883, -1.929305034041946, -4.641615934708631, 2.6219643081579207, 2.237836141374948, 1.25043766469763, -1.2485688946185278, -3.19137359661821, -2.2639967017712914, 2.1033913005168925, -3.384832743650807, 1.1372242712738618, -1.0474420893924417, 0.7448488649024485, 2.6503728566746876, -0.42383808303702786, -2.608495472487597, -1.6154660274633614, -4.15244819091372, 3.4126594340833893, 0.672989854667593, -2.2128775821270006, -3.862747683950848, -4.3671421771140055, -0.8790203032789661, -0.38672131127104326, 2.8400349287831537, -0.6837861137815997, -0.02783994755685626, 1.3196122898985099, -3.5814055945918994, -1.3115050709959886, -2.568326848598202, 0.6607269638761135, 0.8596239279922875, -0.7456756110190428, -4.610256250119613, -4.7571162010704136, 1.8499097864738285, -0.9648209415169866, 2.8175441029273056, -4.237252232087458, -4.228525276209637, -0.24089700582517448, -4.2393860776610515, -1.183008701541417, -2.2841738960146305, 2.4264699779347287, 1.4644051669127602, -4.789324302658245, -0.5135230414460956, 1.0140016915646255, 1.0629811183518765, -1.094901403701166, 2.5871920163323603, -0.927846875803148, 1.5341431855110494, -4.9534796174419915, 2.2225693562783473, 1.1547909937500611, 2.8715267084345575, -1.803112866927802, 1.1571291360758682, -0.5738610895968907, 0.34617615212302155, -0.9980855724425668, -3.3495393243498013, 2.2770503048058552, -3.9608709972555864, -4.181950983500617, 2.5295027764845788, -2.716089263148547, -0.42782926173791047, -2.9346729594346237, -2.361196647236347, -0.1843848171381639, 3.2225621272712317, 0.43694792529168947, -1.6816724097406368, -3.758888491783577, 1.0240042321211824, -0.8498572901189991, -1.544337921669598, 3.182017355400868, -4.924141721001225, -0.25223677835651515, -0.34460912624321693, -3.2533879145409754, -1.4950449134709292, -2.061496189505505, -3.7146668676973946, 0.1646435837759883, -1.4421089945934078, -1.0957688126549128, 3.252707953485949, -4.683887891071825, -2.8015929143134564, 3.3001782891803213, 1.5118584884438322, -0.05086284314551204, -4.94189633872162, -3.9497741440792495, -3.0028049645888104, 2.3051762676867993, -4.396355310276864, 2.7557009976688676, 3.389644419721405, -2.6264843590559432, -2.1054252443129293, 2.2244355197010837, 1.793807609179101, 1.5830572345464855, 2.6738031015191766, -0.7022911298808072, -1.802054048589432, -2.4614078886627726, -2.2839792652002955, 2.94828446929949, 2.4639289439843264, -4.866578572212957, -4.551407597673899, -0.6403802721020533, -0.48222562336389263, -4.457659928877897, -4.801373078125643, 0.8670011205941703, -1.9063926852194424, -2.0657647309688154, -1.1036610674126583, -2.895554927185852, 0.4045978859891717, 2.808993175847152, -0.7920284795996704, -3.6451347810461816, -0.5815999358866453, -4.202965652236872, -1.3093443760034122, 0.3034369237597341, 2.656587435019004, 2.618948074952031, 2.0552013139134537, 3.1349651954553988, -4.151410517441323, -4.708284193059103, 0.8323680039393571, -0.24123452941776335, 1.101916883197621, 0.23549511254016497, -0.5049411943818782, -4.874345176931813, -0.27564992758581663, 0.962819431814415, -1.6039307783314483, -0.6132668108062234, 1.9762561514891521, -3.482925308511647, 1.4959072645960099, -2.404521345662555, -3.8432720171902846, 0.01956352192941946, 1.0358789039742735, -0.1626228764949822, 0.6689131730685318, -1.5457430403642611, 2.930356995634509, 3.3992573674198816, -4.953514538220816, -1.6852157874392253, -2.8383635689946227, 2.490500070994077, -4.804133886368833, -0.19392366942463557, 2.6154334244371897, 3.251090276261168, -2.0053488286969627, -3.493670554321528, -3.0166928712234746, 1.911361411966114, 3.3051782083281758, -4.892879568881795, 1.7180978846764479, -4.501797057009451, 0.3471967115425869, -4.985809210348372, -1.8669285370162307, -2.0413162965424885, 2.2695685781182418, -4.926085470737888, -3.4596330592911078, -2.5792601897238714, -2.3816789162609404, 0.4664485764443542, 2.7266843077432705, -0.02075395588057649, 1.0999700946687634, -0.5250787196438669, -1.48934216059958, 2.3603081926789686, -4.277687013225355, 3.146844089556488, 2.7191321301060007, -2.469952284414652, 0.8222542133849355, -1.9601625160725717, -4.344870372922077, -3.0170700995569297, -0.43776058035937915, -0.2739050659210811, -2.1518774682475903, 3.221908148669396, -3.8321762316928836, -3.4449320599570665, 2.838188895208681, -4.156738144681751, -1.3743967877773775, -1.6893558800750248, -0.1750380418621882, -1.205699263939592, -3.0116777338908842, 1.4142259543153726, -1.7073297610835994, -0.6258190645893222, 0.2672087070732667, 1.6904404229879786, 1.7321500362996396, -4.697645792499133, 0.6890351454277432, 2.5650276050970584, -1.2033814717180116, -4.665197423053185, -2.1145219941392983, -1.3967913000804941, -4.931733776164024, -1.268695652397247, -3.584795606032214, 1.1893647643768581, 3.141628459336639, 0.43101557117645317, -4.625783907254338, 1.1673601176330939, -2.0769215364494085, 0.41251641944091855, 0.04436856849008741, 1.8233336457282032, -2.0631327269284543, -3.8533091073290002, -1.7624520060979725, -1.072128248845218, 1.806360291638386, -2.980891258466301, -3.7144913939827564, 0.8011578968035078, -1.938163038395666, 1.6034203246298677, -2.629496064394904, -4.249622737603465, -2.4140663558045903, 1.2934379788620438, -1.4405142725557547, 2.293236886947531, 0.3973153674230634, -2.8312240291476156, -1.1393499481355422, -2.838090739192741, 1.7383208208512375, 2.2014091976566377, 1.554127083675195, -0.5298426032583059, -1.0355524867369947, 1.6255798208104855, 0.6734506520278032, 2.3709894923291035, 0.4142960418727446, -0.3337730195492572, 3.302163736950085, -0.3198725516612857, -1.2036826149259388, -4.573224075985612, -2.0881088248578066, -4.386656413722292, -0.3448230470754723, -2.451337506998498, -2.580095793651265, -2.1566847076942253, 1.521602088641128, -1.2141387400325305, 1.5969169867721238, 0.2798491173425042, -3.0106950311652474, 0.6435396497652119, 2.7170946106651126, 1.2558382704428475, 0.33315068626177347, -1.5388965382621027, 1.6052061408074012, -3.4653547920341947, -3.9463128777171983, -1.1161347356781146, 0.036027590359634765, 0.2309930224167065, -2.6165139639873427, -1.1913312767062285, -0.18179632387497602, -0.8245077886609584, -0.09406862838410124, 0.08338879402087951, 3.2300551392345636, 0.6459881143689303, 2.3843759013311114, -3.2524088556067676, -0.08578435279478658, 0.7723392928556576, 0.3675189237947416, -1.5018486118916052, -0.24027952178197243, -1.899659396812853, -4.838867663168174, 0.715260197771018, 1.642158648062697, 0.6411820950020806, -0.14814191902696994, -0.7932441113973958, -4.378462290729853, -4.896108986343701, 1.6564824278674415, 1.4753843976843886, 0.2630359250147807, -1.9786175150258378, -4.090461727734807, -0.03427089079687651, 1.9841624675130118, -0.1864893316286782, -2.401536475614984, 0.7373385187693113, -0.3269141123474526, -2.524621314364194, -1.5971812331580488, -3.197007187156532, -1.2909337890271075, -2.7270621601837175, 0.5782576570834328, 3.0705220534905884, -0.5078505891733762, -2.6716658615644544, -2.128583652751421, -3.1263404009552955, 2.953789783116811, -1.729453451818908, -1.4924390240702423, 1.4686001575457217, -1.3438874749096903, -0.6624008786563005, -4.945770392917611, 1.1670488432076747, -0.7551434770434078, 2.145158902820585, -0.4979338978740593, 0.07988493046760858, 2.292883738656066, 0.08729715354771095, -0.15984274057646175, -3.289148428223603, -4.085276379450496, 0.871493229494523, -2.8320716459121096, -2.9935466942197433, -2.099669294805951, -1.1143838857923485, 0.5423578873683459, 2.609896332345426, 1.5587064787769789, -4.166198877809068, -3.10662716961652, -3.7900326400690285, 0.20401084222145904, -4.644683747989334, -3.920462732994276, -1.569615774149204, -2.1146953218826026, -1.1401120192024012, 1.042208594056505, -0.8154307416283482, 2.3408171690082504, 0.5361961578685, -2.512793501523446, -0.3975970598565475, -1.0674510790668643, -2.443631566842917, 2.6198193988286667, -3.8834695777238712, -1.5297698449136128, -0.8351728423263518, -2.791188709802751, 2.9256528003069358, 2.4793743935655455, -4.45576076916221, -2.7120815556784525, 0.12954341548359594, -0.8643010750878144, -1.992965636373171, 1.665150946198426, 1.8342141811140298, -0.7046846517408154, -2.737589165261653, 1.7286617729007379, -1.5218543195286647, -4.613601237391192, 0.9152037069945225, -0.1110543230847254, 2.7636053866630075, 2.1488784940794803, -4.924758293433656, -1.9529084788587574, -1.0840231375336988, 0.7694239360249115, 1.3545156446288908, 3.3009136180321477, -1.5621912568426666, 1.132269720852336, -1.8424861438495421, 2.8807524150179624, 0.8442492525192495, 2.3003704735805197, 3.068164738550342, 2.5404941754214976, 2.804355852271117, 0.5464381296341507, 0.317919083404961, -2.288355152185015, -3.506765563495005, 1.6232714295203596, -4.811419223845099, -4.3041433335779615, 2.129379087991227, 1.7311324979192975, -2.683180266483991, 0.8856569805233638, 1.9902629629544633, -4.133652690766669, -3.297507828488553, -0.6555025649596615, -2.599963463404549, -2.0343215745887995, -4.021217414723221, 1.6581975367716169, 1.971747674796699, 3.230049173713981, 3.014555015235036, 1.8055436942186844, -2.785707467313464, 2.0802404646192967, 1.7036040563242532, -4.309263644536484, 0.33472891411927197, 0.3255675803506177, -4.4264025925856565, 0.6390475899491284, -0.7978240579757516, -1.2286823118137664, -0.10113863915851962, -0.8117979867508396, -0.3800525833381121, -4.318279419998431, -2.518676454694744, 3.3270068939823183, -4.47065222262937, -0.38329213923098315, -0.8858058043423824, 1.807501558859519, -0.27320945245531636, -0.9489921311470813, 0.8725964250618636, 0.7537153854925345, -0.37702145226290096, 0.2183758191408769, -2.3554017873771875, 0.7162980944567741, -2.6694988738381373, 2.9803212374217125, -4.759949869213156, 1.5994256747707647, 0.022022927561640593, -3.3121978230064277, -0.48935139973898156, -2.8827166173285512, -3.795121606965971, 0.2332711587340146, -4.71543119131047, -0.7155439112868205, -4.31005941244094, -4.631758118157261, 3.278870761418684, 0.683967188558035, -2.8257863684954883, -3.290091150432488, 0.1530564213609953, -1.148876950767908, -1.2148554283243302, 2.8476890910609036, -3.092784208222886, -4.667599798664721, 1.6217714939944008, -3.380078521085555, -1.0782514329551631, -2.926859292970723, -0.45742837798358327, -1.2436105554164207, -2.6071159979827896, -2.8826596270339704, -4.301354555941329, 3.155118301800867, 2.997020146773849, -2.997372437747483, -0.011439587101449433, -4.904613147865667, 1.3753332788389496, 1.4100059972193018, 3.3020859944494596, 3.178616271367364, 2.629287494669139, -3.299670330603944, -4.4496685186052165, -4.527228517386983, -2.353390577858977, -1.60622882507388, 2.6884804975500387, -1.0665866611002048, -3.478113568768867, 0.8493339901553068, 3.1316714584811898, 1.7900289732641026, 0.48241564150058736, -2.4141471522385, 3.262195097431947, -0.24319460175212448, -1.9953459182030744, -0.20919715164647812, -1.6453320734577304, 1.2992478656191446, -0.8134900987213198, 2.4604903875893944, -1.7391353128391431, 0.8187870871934599, 1.8148337164125348, -3.582916554355413, -4.320414649235078, -0.11157702868362929, 0.21078825508029553, -4.611572486093786, -3.3657995167450956, -4.020880433372337, -0.7946606207782718, -2.585688455239359, -4.676893167861388, -2.785348759043344, 2.2980225325550023, -0.5768594875384592, 0.8295444012794677, -2.3836189945962776, 0.8379429397046119, -1.60337653426037, 0.14009091414147434, -1.6242167221298756, 3.33080129292634, 0.5963859370727533, -2.44612310381815, -0.22725019401484392, 1.7962936354164674, -1.172067775946429, -3.1946433479762244, -2.9448157168495386, 1.9071878526086854, -4.220572342618514, -3.3462536386793813, -4.126375632786608, 1.1788474169293748, -1.9738526792372912, -4.030157261841828, -2.0432137648755218, 2.247392786389393, 3.072966808079306, 1.9786448949226827, 0.9893771908148716, 2.0657798083428336, -1.9816756979026962, -3.498689494976058, 0.1090665198573948, -4.98857138112469, -0.9133429925208905, 2.4724610457217686, -1.6732359223643596, 2.827279798770923, -1.4090050926805722, -2.4703761606616292, 2.340980810513779, 2.7026218055550144, -1.2198384587961328, 0.3734748244091044, -3.172991077147653, 2.7799907249011904, -1.2096242737514422, -4.321877153944351, 1.4522795050575308, -2.088132235941612, -2.722344391583931, 2.319481264314412, 1.6041787695375547, -0.05996055914663412, 1.9547224455915542, 1.0869049524497338, -0.9434239400374222, 1.6145569475996924, -4.182751487249501, -1.2404708426869195, -3.1546109593777176, 3.187886839693741, 2.14660395766595, 1.499805733226137, -3.039734001412403, 0.3614643679062839, -2.0161117609140105, -1.169073102055703, -2.005901343334941, -0.9886393060561431, -4.7261253021915595, -2.8849466962102017]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 1\", \"marker\": {\"color\": \"rgb(255, 127, 14)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 1\", \"scene\": \"scene3\", \"showlegend\": false, \"text\": [\"666_l_1_m-0_1.42-1_0.04-2_0.58-3_0.4\", \"667_l_1_m-0_1.07-1_0.13-2_0.08-3_0.11\", \"668_l_1_m-0_0.1-1_0.1-2_0.09-3_0.58\", \"669_l_1_m-0_0.99-1_0.44-2_0.12-3_1.24\", \"670_l_1_m-0_0.45-1_0.08-2_0.78-3_0.1\", \"671_l_1_m-0_0.28-1_0.11-2_0.12-3_0.27\", \"672_l_1_c_0_1_2-0_0.43-1_0.28-2_0.33-3_0.41\", \"673_l_1_c_0_1_2-0_0.61-1_0.14-2_0.73-3_0.65\", \"674_l_1_c_0_1_2-0_1.35-1_0.86-2_0.19-3_0.14\", \"675_l_1_c_0_1_2-0_0.06-1_0.48-2_0.19-3_1.15\", \"676_l_1_c_0_1_2-0_0.6-1_0.32-2_0.04-3_0.35\", \"677_l_1_c_0_1_2-0_0.7-1_0.4-2_0.11-3_1.46\", \"678_l_1_c_0_1_2-0_0.48-1_0.42-2_0.47-3_0.31\", \"679_l_1_c_0_1_2-0_0.09-1_0.12-2_0.24-3_1.24\", \"680_l_1_c_0_1_2-0_0.45-1_0.1-2_0.27-3_0.88\", \"681_l_1_c_0_1_2-0_0.01-1_0.09-2_0.01-3_1.53\", \"682_l_1_c_0_1_2-0_0.02-1_0.13-2_0.6-3_0.43\", \"683_l_1_c_0_1_2-0_0.37-1_0.43-2_0.01-3_1.33\", \"684_l_1_c_0_1_2-0_0.85-1_0.14-2_0.37-3_0.32\", \"685_l_1_c_0_1_2-0_0.13-1_0.81-2_0.22-3_0.28\", \"686_l_1_c_0_1_2-0_1.47-1_0.36-2_0.51-3_0.29\", \"687_l_1_c_0_1_2-0_0.73-1_1.04-2_0.17-3_1.62\", \"688_l_1_c_0_1_2-0_0.55-1_0.14-2_0.05-3_0.72\", \"689_l_1_c_0_1_2-0_0.17-1_0.19-2_0.07-3_0.08\", \"690_l_1_c_0_1_2-0_0.62-1_0.75-2_0.21-3_1.57\", \"691_l_1_c_0_1_2-0_1.1-1_0.23-2_0.17-3_0.56\", \"692_l_1_c_0_1_2-0_0.36-1_0.43-2_0.66-3_0.14\", \"693_l_1_c_0_1_2-0_0.31-1_0.04-2_0.05-3_0.44\", \"694_l_1_c_0_1_2-0_0.03-1_0.19-2_0.44-3_0.45\", \"695_l_1_c_0_1_2-0_0.33-1_0.03-2_0.11-3_0.86\", \"696_l_1_c_0_1_2-0_1.0-1_0.88-2_0.06-3_0.11\", \"697_l_1_c_0_1_2-0_0.04-1_0.22-2_0.36-3_0.84\", \"698_l_1_c_0_1_2-0_0.4-1_0.25-2_0.96-3_0.07\", \"699_l_1_c_0_1_2-0_0.04-1_0.01-2_0.26-3_0.31\", \"700_l_1_c_0_1_2-0_1.03-1_0.19-2_0.27-3_0.75\", \"701_l_1_c_0_1_2-0_0.24-1_0.15-2_0.41-3_1.58\", \"702_l_1_c_0_1_2-0_0.29-1_0.73-2_0.21-3_0.48\", \"703_l_1_c_0_1_2-0_0.65-1_0.99-2_0.64-3_1.27\", \"704_l_1_c_0_1_2-0_0.92-1_0.5-2_0.63-3_0.65\", \"705_l_1_c_0_1_2-0_0.37-1_0.37-2_0.14-3_0.71\", \"706_l_1_c_0_1_2-0_0.07-1_0.61-2_0.6-3_1.57\", \"707_l_1_c_0_1_2-0_0.02-1_0.81-2_0.44-3_1.63\", \"708_l_1_c_0_1_2-0_0.42-1_0.4-2_0.17-3_0.57\", \"709_l_1_c_0_1_2-0_0.05-1_0.47-2_0.03-3_0.71\", \"710_l_1_c_0_1_2-0_0.34-1_0.05-2_1.03-3_0.1\", \"711_l_1_c_0_1_3-0_0.31-1_0.36-2_0.38-3_0.28\", \"712_l_1_c_0_1_2-0_0.41-1_0.28-2_0.42-3_0.34\", \"713_l_1_c_0_1_3-0_0.22-1_0.0-2_0.46-3_0.21\", \"714_l_1_c_0_1_2-0_0.1-1_0.73-2_0.14-3_0.31\", \"715_l_1_c_0_1_3-0_0.08-1_0.15-2_1.46-3_0.02\", \"716_l_1_c_0_1_2-0_0.3-1_0.94-2_0.06-3_1.62\", \"717_l_1_c_0_1_3-0_0.21-1_0.0-2_0.93-3_0.06\", \"718_l_1_c_0_1_2-0_1.08-1_0.03-2_0.09-3_0.45\", \"719_l_1_c_0_1_3-0_0.18-1_0.92-2_1.72-3_0.29\", \"720_l_1_c_0_1_2-0_0.07-1_0.03-2_0.03-3_0.56\", \"721_l_1_c_0_1_3-0_0.42-1_0.81-2_1.23-3_0.18\", \"722_l_1_c_0_1_2-0_0.08-1_0.78-2_0.04-3_2.01\", \"723_l_1_c_0_1_3-0_0.64-1_0.25-2_0.52-3_0.12\", \"724_l_1_c_0_1_2-0_0.25-1_1.61-2_0.23-3_1.07\", \"725_l_1_c_0_1_3-0_0.28-1_0.42-2_0.63-3_0.19\", \"726_l_1_c_0_1_2-0_0.2-1_0.49-2_0.29-3_0.86\", \"727_l_1_c_0_1_3-0_0.15-1_1.58-2_0.77-3_0.47\", \"728_l_1_c_0_1_2-0_0.15-1_0.51-2_0.15-3_0.14\", \"729_l_1_c_0_1_3-0_1.1-1_0.03-2_0.87-3_0.14\", \"730_l_1_c_0_1_2-0_0.11-1_0.39-2_0.01-3_0.53\", \"731_l_1_c_0_1_3-0_0.19-1_0.78-2_1.61-3_0.07\", \"732_l_1_c_0_1_2-0_0.39-1_0.52-2_0.39-3_0.81\", \"733_l_1_c_0_1_3-0_0.37-1_0.18-2_1.78-3_0.3\", \"734_l_1_c_0_1_2-0_0.18-1_1.04-2_0.05-3_0.87\", \"735_l_1_c_0_1_3-0_0.03-1_0.47-2_1.25-3_0.23\", \"736_l_1_c_0_1_2-0_0.86-1_0.48-2_0.68-3_0.23\", \"737_l_1_c_0_1_3-0_1.23-1_0.66-2_1.32-3_0.05\", \"738_l_1_c_0_1_2-0_1.06-1_0.31-2_0.02-3_0.8\", \"739_l_1_c_0_1_3-0_0.09-1_0.08-2_0.05-3_0.21\", \"740_l_1_c_0_1_2-0_0.31-1_0.62-2_0.63-3_0.57\", \"741_l_1_c_0_1_3-0_0.54-1_0.86-2_0.71-3_0.39\", \"742_l_1_c_0_1_2-0_0.77-1_1.11-2_0.52-3_0.79\", \"743_l_1_c_0_1_3-0_1.73-1_0.33-2_0.26-3_0.35\", \"744_l_1_c_0_1_2-0_0.28-1_0.73-2_0.08-3_0.9\", \"745_l_1_c_0_1_3-0_0.33-1_0.46-2_0.9-3_0.01\", \"746_l_1_c_0_1_2-0_0.42-1_0.05-2_0.58-3_0.7\", \"747_l_1_c_0_1_3-0_0.05-1_1.24-2_1.46-3_0.1\", \"748_l_1_c_0_1_2-0_0.2-1_0.37-2_0.09-3_0.61\", \"749_l_1_c_0_1_3-0_0.02-1_0.93-2_0.71-3_0.01\", \"750_l_1_c_0_1_2-0_0.16-1_0.28-2_0.71-3_0.12\", \"751_l_1_c_0_1_3-0_0.17-1_0.61-2_1.7-3_0.65\", \"752_l_1_c_0_1_2-0_0.37-1_0.13-2_0.07-3_0.46\", \"753_l_1_c_0_1_3-0_0.41-1_1.05-2_0.49-3_0.37\", \"754_l_1_c_0_1_2-0_0.42-1_0.14-2_0.31-3_0.36\", \"755_l_1_c_0_1_3-0_0.47-1_0.2-2_0.85-3_0.23\", \"756_l_1_c_0_1_2-0_0.08-1_0.19-2_0.21-3_0.15\", \"757_l_1_c_0_1_3-0_0.18-1_0.68-2_0.13-3_0.28\", \"758_l_1_c_0_1_2-0_0.06-1_0.53-2_0.44-3_0.15\", \"759_l_1_c_0_1_3-0_0.5-1_0.18-2_1.22-3_0.01\", \"760_l_1_c_0_1_2-0_0.05-1_0.03-2_0.12-3_0.34\", \"761_l_1_c_0_1_3-0_0.18-1_0.43-2_1.69-3_0.4\", \"762_l_1_c_0_1_2-0_0.37-1_0.14-2_0.07-3_0.43\", \"763_l_1_c_0_1_3-0_0.06-1_0.28-2_0.84-3_0.27\", \"764_l_1_c_0_1_2-0_0.03-1_0.09-2_0.04-3_1.16\", \"765_l_1_c_0_1_3-0_0.24-1_0.65-2_0.36-3_0.27\", \"766_l_1_c_0_1_2-0_0.36-1_0.14-2_0.35-3_1.2\", \"767_l_1_c_0_1_3-0_0.02-1_0.36-2_0.95-3_0.25\", \"768_l_1_c_0_1_2-0_0.1-1_0.08-2_0.34-3_0.78\", \"769_l_1_c_0_1_3-0_0.53-1_0.32-2_1.77-3_0.28\", \"770_l_1_c_0_1_2-0_0.55-1_0.28-2_0.5-3_0.84\", \"771_l_1_c_0_1_3-0_0.1-1_0.03-2_0.74-3_0.04\", \"772_l_1_c_0_1_2-0_0.18-1_0.0-2_0.73-3_0.38\", \"773_l_1_c_0_1_3-0_0.09-1_0.59-2_0.5-3_0.13\", \"774_l_1_c_0_1_2-0_0.37-1_0.89-2_0.54-3_1.03\", \"775_l_1_c_0_1_3-0_0.29-1_0.01-2_1.27-3_0.22\", \"776_l_1_c_0_1_2-0_0.12-1_0.21-2_0.26-3_0.05\", \"777_l_1_c_0_1_3-0_0.07-1_0.44-2_1.03-3_0.46\", \"778_l_1_c_0_1_2-0_0.18-1_0.34-2_0.42-3_0.07\", \"779_l_1_c_0_1_3-0_0.85-1_0.35-2_0.29-3_0.33\", \"780_l_1_c_0_1_2-0_0.29-1_0.43-2_0.21-3_1.24\", \"781_l_1_c_0_1_3-0_0.84-1_0.15-2_0.73-3_0.09\", \"782_l_1_c_0_1_2-0_0.08-1_0.11-2_0.09-3_1.07\", \"783_l_1_c_0_1_3-0_0.59-1_0.51-2_0.24-3_0.15\", \"784_l_1_c_0_1_2-0_1.61-1_0.67-2_0.1-3_0.77\", \"785_l_1_c_0_1_3-0_0.88-1_0.43-2_0.14-3_0.27\", \"786_l_1_c_0_1_2-0_0.31-1_0.26-2_0.17-3_0.07\", \"787_l_1_c_0_1_3-0_1.39-1_0.51-2_0.31-3_0.31\", \"788_l_1_c_0_1_2-0_0.08-1_1.23-2_0.29-3_0.59\", \"789_l_1_c_0_1_3-0_0.58-1_0.11-2_0.54-3_0.03\", \"790_l_1_c_0_1_2-0_0.2-1_0.01-2_0.36-3_0.13\", \"791_l_1_c_0_1_3-0_0.47-1_0.22-2_0.95-3_0.01\", \"792_l_1_c_0_1_2-0_0.87-1_0.0-2_0.13-3_0.65\", \"793_l_1_c_0_1_3-0_0.39-1_0.17-2_1.03-3_0.08\", \"794_l_1_c_0_1_2-0_0.96-1_0.06-2_0.15-3_0.72\", \"795_l_1_c_0_1_3-0_0.18-1_0.01-2_0.29-3_0.2\", \"796_l_1_c_0_1_2-0_0.81-1_0.34-2_0.35-3_0.06\", \"797_l_1_c_0_1_3-0_0.07-1_0.32-2_0.43-3_0.35\", \"798_l_1_c_0_1_2-0_0.3-1_1.08-2_0.46-3_0.32\", \"799_l_1_c_0_1_3-0_0.12-1_0.12-2_1.17-3_0.33\", \"800_l_1_c_0_1_2-0_0.14-1_0.84-2_0.15-3_0.74\", \"801_l_1_c_0_1_3-0_0.7-1_0.21-2_0.9-3_0.5\", \"802_l_1_c_0_1_2-0_0.36-1_0.22-2_0.48-3_1.13\", \"803_l_1_c_0_1_3-0_0.35-1_0.28-2_0.4-3_0.12\", \"804_l_1_c_0_1_2-0_0.63-1_0.27-2_0.08-3_0.34\", \"805_l_1_c_0_1_3-0_0.43-1_0.53-2_1.43-3_0.52\", \"806_l_1_c_0_1_2-0_0.23-1_0.3-2_0.21-3_0.24\", \"807_l_1_c_0_1_3-0_0.33-1_0.93-2_0.25-3_0.51\", \"808_l_1_c_0_1_2-0_0.21-1_1.44-2_0.65-3_1.33\", \"809_l_1_c_0_1_3-0_0.83-1_0.64-2_0.92-3_0.06\", \"810_l_1_c_0_1_2-0_0.46-1_0.22-2_0.2-3_1.21\", \"811_l_1_c_0_1_3-0_0.83-1_0.15-2_0.21-3_0.01\", \"812_l_1_c_0_1_2-0_0.22-1_0.02-2_0.35-3_0.22\", \"813_l_1_c_0_1_3-0_0.42-1_0.47-2_1.47-3_0.2\", \"814_l_1_c_0_1_2-0_0.52-1_0.8-2_0.06-3_0.94\", \"815_l_1_c_0_1_3-0_0.66-1_0.52-2_1.92-3_0.36\", \"816_l_1_c_0_1_2-0_0.05-1_0.11-2_0.11-3_0.56\", \"817_l_1_c_0_1_3-0_0.51-1_0.21-2_0.62-3_0.26\", \"818_l_1_c_0_1_2-0_1.26-1_0.53-2_0.01-3_0.96\", \"819_l_1_c_0_1_3-0_0.19-1_0.09-2_0.2-3_0.48\", \"820_l_1_c_0_1_2-0_0.36-1_0.6-2_0.07-3_0.15\", \"821_l_1_c_0_1_3-0_0.3-1_0.02-2_0.79-3_0.89\", \"822_l_1_c_0_1_2-0_0.42-1_0.06-2_0.16-3_0.73\", \"823_l_1_c_0_1_3-0_0.19-1_0.49-2_0.69-3_0.11\", \"824_l_1_c_0_2_3-0_0.62-1_0.28-2_0.21-3_0.18\", \"825_l_1_c_0_1_2-0_0.35-1_0.27-2_0.15-3_0.27\", \"826_l_1_c_0_1_3-0_0.23-1_0.16-2_0.63-3_0.15\", \"827_l_1_c_0_2_3-0_0.25-1_0.14-2_0.18-3_0.58\", \"828_l_1_c_0_1_2-0_0.57-1_0.52-2_0.42-3_0.12\", \"829_l_1_c_0_1_3-0_0.1-1_0.27-2_1.12-3_0.1\", \"830_l_1_c_0_2_3-0_0.61-1_0.9-2_0.15-3_0.29\", \"831_l_1_c_0_1_2-0_0.61-1_0.04-2_0.36-3_0.22\", \"832_l_1_c_0_1_3-0_1.27-1_0.31-2_1.03-3_0.09\", \"833_l_1_c_0_2_3-0_0.76-1_0.43-2_0.01-3_0.29\", \"834_l_1_c_0_1_2-0_0.52-1_0.2-2_0.54-3_0.82\", \"835_l_1_c_0_1_3-0_0.36-1_0.45-2_0.61-3_0.3\", \"836_l_1_c_0_2_3-0_0.99-1_0.3-2_0.53-3_0.02\", \"837_l_1_c_0_1_2-0_0.59-1_0.24-2_0.57-3_0.18\", \"838_l_1_c_0_1_3-0_0.85-1_0.53-2_0.3-3_0.26\", \"839_l_1_c_0_2_3-0_0.9-1_0.05-2_0.13-3_0.88\", \"840_l_1_c_0_1_2-0_0.14-1_0.16-2_0.08-3_0.68\", \"841_l_1_c_0_1_3-0_0.31-1_0.24-2_1.52-3_0.35\", \"842_l_1_c_0_2_3-0_0.4-1_1.41-2_0.72-3_1.07\", \"843_l_1_c_0_1_2-0_0.96-1_0.84-2_0.1-3_0.87\", \"844_l_1_c_0_1_3-0_0.88-1_0.2-2_1.28-3_0.15\", \"845_l_1_c_0_2_3-0_0.43-1_1.87-2_0.16-3_0.17\", \"846_l_1_c_0_1_2-0_0.22-1_0.19-2_0.75-3_0.17\", \"847_l_1_c_0_1_3-0_1.21-1_0.1-2_0.32-3_0.01\", \"848_l_1_c_0_2_3-0_0.26-1_0.66-2_0.73-3_0.23\", \"849_l_1_c_0_1_2-0_0.17-1_0.31-2_0.13-3_0.58\", \"850_l_1_c_0_1_3-0_0.58-1_0.15-2_0.31-3_0.26\", \"851_l_1_c_0_2_3-0_0.59-1_0.13-2_0.36-3_0.03\", \"852_l_1_c_0_1_2-0_1.06-1_0.07-2_0.94-3_0.2\", \"853_l_1_c_0_1_3-0_1.51-1_0.13-2_0.99-3_0.51\", \"854_l_1_c_0_2_3-0_0.38-1_1.16-2_0.56-3_0.29\", \"855_l_1_c_0_1_2-0_0.53-1_0.05-2_0.38-3_0.8\", \"856_l_1_c_0_1_3-0_0.38-1_0.27-2_1.44-3_0.03\", \"857_l_1_c_0_2_3-0_0.11-1_0.65-2_0.2-3_0.47\", \"858_l_1_c_0_1_2-0_0.47-1_0.97-2_0.49-3_0.53\", \"859_l_1_c_0_1_3-0_0.89-1_0.57-2_0.07-3_0.05\", \"860_l_1_c_0_2_3-0_0.05-1_0.16-2_0.55-3_0.21\", \"861_l_1_c_0_1_2-0_0.38-1_1.12-2_0.13-3_1.38\", \"862_l_1_c_0_1_3-0_0.57-1_0.05-2_0.32-3_0.05\", \"863_l_1_c_0_2_3-0_0.07-1_0.65-2_0.07-3_0.8\", \"864_l_1_c_0_1_2-0_0.04-1_0.28-2_0.06-3_0.15\", \"865_l_1_c_0_1_3-0_0.92-1_0.1-2_1.11-3_0.38\", \"866_l_1_c_0_2_3-0_0.43-1_0.72-2_1.03-3_0.27\", \"867_l_1_c_0_1_2-0_0.06-1_0.73-2_0.06-3_0.66\", \"868_l_1_c_0_1_3-0_0.12-1_0.82-2_0.63-3_0.31\", \"869_l_1_c_0_2_3-0_0.36-1_1.04-2_0.37-3_0.66\", \"870_l_1_c_0-0_0.03-1_0.33-2_0.46-3_0.62\", \"871_l_1_c_0-0_0.09-1_0.63-2_1.16-3_0.45\", \"872_l_1_c_0-0_0.37-1_0.57-2_0.17-3_1.43\", \"873_l_1_c_0-0_1.19-1_0.53-2_0.32-3_0.46\", \"874_l_1_c_0-0_0.76-1_0.53-2_0.03-3_0.09\", \"875_l_1_c_0-0_0.29-1_1.33-2_0.1-3_0.3\", \"876_l_1_c_0-0_0.1-1_0.95-2_0.14-3_0.62\", \"877_l_1_c_0-0_0.36-1_0.37-2_0.97-3_0.06\", \"878_l_1_c_0-0_0.07-1_0.33-2_0.31-3_0.03\", \"879_l_1_c_0-0_0.9-1_0.6-2_0.03-3_1.68\", \"880_l_1_c_0-0_0.18-1_0.95-2_0.59-3_0.52\", \"881_l_1_c_0-0_0.05-1_0.57-2_1.29-3_0.95\", \"882_l_1_c_0-0_0.82-1_0.43-2_1.01-3_0.78\", \"883_l_1_c_0-0_0.42-1_1.29-2_0.89-3_0.32\", \"884_l_1_c_0-0_2.0-1_1.0-2_0.85-3_0.69\", \"885_l_1_c_0-0_1.55-1_0.63-2_0.76-3_0.87\", \"886_l_1_c_0-0_0.31-1_0.91-2_0.47-3_0.23\", \"887_l_1_c_0-0_0.13-1_0.5-2_1.0-3_0.3\", \"888_l_1_c_0-0_0.03-1_0.56-2_1.39-3_1.5\", \"889_l_1_r-0_1.79-1_1.04-2_2.31-3_1.12\", \"890_l_1_r-0_0.48-1_0.22-2_1.16-3_0.42\", \"891_l_1_r-0_0.52-1_1.45-2_0.4-3_1.57\", \"892_l_1_r-0_1.43-1_0.9-2_0.12-3_0.96\", \"893_l_1_r-0_1.01-1_0.45-2_0.75-3_0.54\", \"894_l_1_r-0_0.11-1_1.13-2_0.63-3_1.41\", \"895_l_1_r-0_0.15-1_1.15-2_0.8-3_0.62\", \"896_l_1_r-0_0.48-1_0.01-2_0.18-3_0.65\", \"897_l_1_r-0_0.35-1_0.6-2_0.27-3_0.81\", \"898_l_1_r-0_1.97-1_0.74-2_0.72-3_0.92\", \"899_l_1_r-0_0.14-1_0.89-2_0.12-3_0.34\", \"900_l_1_r-0_0.13-1_0.88-2_0.32-3_0.81\", \"901_l_1_r-0_0.64-1_2.15-2_0.13-3_1.61\", \"902_l_1_r-0_0.63-1_0.27-2_0.33-3_0.48\", \"903_l_1_r-0_0.19-1_0.54-2_0.64-3_0.69\", \"904_l_1_r-0_0.33-1_0.01-2_0.16-3_0.36\", \"905_l_1_r-0_1.22-1_0.76-2_0.4-3_0.59\", \"906_l_1_r-0_1.22-1_0.04-2_1.8-3_0.57\", \"907_l_1_r-0_0.25-1_0.66-2_1.52-3_0.47\", \"908_l_1_r-0_0.21-1_0.34-2_0.01-3_1.16\", \"909_l_1_r-0_0.75-1_2.12-2_0.53-3_1.03\", \"910_l_1_r-0_1.44-1_0.64-2_1.38-3_0.05\", \"911_l_1_r-0_0.47-1_1.33-2_0.07-3_1.21\", \"912_l_1_r-0_0.06-1_0.54-2_1.27-3_0.12\", \"913_l_1_r-0_2.01-1_0.78-2_1.94-3_0.36\", \"914_l_1_r-0_0.22-1_0.38-2_1.33-3_0.27\", \"915_l_1_r-0_2.23-1_0.92-2_0.71-3_0.12\", \"916_l_1_r-0_0.08-1_1.36-2_0.44-3_0.55\", \"917_l_1_r-0_0.09-1_0.15-2_0.19-3_0.45\", \"918_l_1_r-0_2.43-1_0.47-2_1.1-3_0.35\", \"919_l_1_r-0_1.02-1_0.45-2_0.72-3_1.48\", \"920_l_1_r-0_0.73-1_0.84-2_1.02-3_0.29\", \"921_l_1_r-0_0.08-1_1.02-2_0.62-3_0.65\", \"922_l_1_r-0_0.74-1_0.64-2_0.12-3_0.12\", \"923_l_1_r-0_1.13-1_0.11-2_0.8-3_0.32\", \"924_l_1_r-0_0.25-1_1.33-2_0.02-3_0.23\", \"925_l_1_r-0_1.11-1_0.04-2_1.78-3_0.77\", \"926_l_1_r-0_1.35-1_0.1-2_0.48-3_1.26\", \"927_l_1_r-0_0.36-1_0.17-2_0.89-3_2.13\", \"928_l_1_r-0_0.96-1_0.31-2_1.53-3_0.81\", \"929_l_1_r-0_0.3-1_0.37-2_1.39-3_0.23\", \"930_l_1_r-0_0.45-1_0.26-2_0.87-3_0.03\", \"931_l_1_r-0_0.16-1_0.18-2_0.87-3_0.51\", \"932_l_1_r-0_0.21-1_0.21-2_2.18-3_0.53\", \"933_l_1_r-0_0.43-1_2.25-2_1.26-3_0.15\", \"934_l_1_r-0_1.5-1_0.25-2_0.97-3_0.37\", \"935_l_1_r-0_0.47-1_2.16-2_0.63-3_0.82\", \"936_l_1_r-0_0.93-1_0.16-2_0.44-3_1.47\", \"937_l_1_r-0_0.05-1_1.74-2_0.93-3_0.87\", \"938_l_1_r-0_0.29-1_1.08-2_0.0-3_0.99\", \"939_l_1_r-0_0.01-1_0.77-2_0.21-3_0.61\", \"940_l_1_r-0_0.45-1_0.28-2_0.63-3_0.67\", \"941_l_1_r-0_0.41-1_0.33-2_0.37-3_1.01\", \"942_l_1_r-0_0.4-1_0.93-2_0.7-3_1.77\", \"943_l_1_r-0_2.44-1_0.81-2_0.38-3_0.46\", \"944_l_1_r-0_1.82-1_0.75-2_1.24-3_0.04\", \"945_l_1_r-0_0.52-1_0.26-2_0.21-3_0.69\", \"946_l_1_r-0_0.13-1_0.29-2_0.53-3_0.75\", \"947_l_1_r-0_1.02-1_2.23-2_1.29-3_0.15\", \"948_l_1_r-0_0.07-1_1.36-2_0.36-3_1.46\", \"949_l_1_r-0_2.1-1_1.46-2_1.33-3_0.9\", \"950_l_1_r-0_0.08-1_0.68-2_1.98-3_0.33\", \"951_l_1_r-0_0.5-1_0.06-2_1.56-3_0.08\", \"952_l_1_r-0_0.35-1_1.08-2_0.1-3_0.54\", \"953_l_1_r-0_0.35-1_1.03-2_0.61-3_0.27\", \"954_l_1_r-0_1.67-1_1.02-2_0.04-3_0.6\", \"955_l_1_r-0_0.31-1_0.41-2_0.23-3_0.29\", \"956_l_1_r-0_1.41-1_1.27-2_0.98-3_0.6\", \"957_l_1_r-0_0.02-1_0.5-2_0.99-3_0.71\", \"958_l_1_r-0_0.19-1_0.61-2_0.69-3_0.58\", \"959_l_1_r-0_0.32-1_0.88-2_0.57-3_0.76\", \"960_l_1_r-0_0.67-1_0.98-2_0.26-3_0.41\", \"961_l_1_r-0_0.77-1_0.91-2_0.08-3_1.57\", \"962_l_1_r-0_2.06-1_0.03-2_0.25-3_0.96\", \"963_l_1_r-0_0.12-1_0.95-2_1.74-3_0.99\", \"964_l_1_r-0_1.31-1_0.68-2_1.61-3_1.27\", \"965_l_1_r-0_1.59-1_0.81-2_0.98-3_0.51\", \"966_l_1_r-0_0.07-1_1.87-2_1.96-3_0.74\", \"967_l_1_r-0_0.83-1_0.18-2_1.52-3_0.83\", \"968_l_1_r-0_0.75-1_0.08-2_0.76-3_0.21\", \"969_l_1_r-0_0.82-1_0.65-2_0.11-3_1.92\", \"970_l_1_r-0_0.67-1_0.22-2_1.48-3_0.74\", \"971_l_1_r-0_1.31-1_0.79-2_2.08-3_0.71\", \"972_l_1_r-0_0.83-1_1.5-2_0.69-3_0.76\", \"973_l_1_r-0_0.85-1_0.68-2_0.5-3_0.88\", \"974_l_1_r-0_0.72-1_1.06-2_0.31-3_1.36\", \"975_l_1_r-0_0.62-1_0.83-2_1.62-3_0.53\", \"976_l_1_r-0_0.01-1_0.75-2_0.23-3_0.48\", \"977_l_1_r-0_0.96-1_0.08-2_0.27-3_0.35\", \"978_l_1_r-0_0.94-1_0.44-2_0.77-3_0.76\", \"979_l_1_r-0_1.19-1_1.42-2_0.96-3_0.43\", \"980_l_1_r-0_0.05-1_1.82-2_0.04-3_0.09\", \"981_l_1_r-0_0.87-1_0.81-2_1.63-3_0.1\", \"982_l_1_r-0_0.44-1_0.69-2_0.02-3_0.32\", \"983_l_1_r-0_1.11-1_0.62-2_0.31-3_0.41\", \"984_l_1_r-0_1.52-1_0.22-2_0.9-3_1.07\", \"985_l_1_r-0_0.24-1_0.12-2_1.07-3_0.32\", \"986_l_1_r-0_0.38-1_0.56-2_1.33-3_0.41\", \"987_l_1_r-0_1.43-1_2.07-2_1.09-3_0.59\", \"988_l_1_r-0_0.41-1_0.8-2_2.08-3_1.3\", \"989_l_1_r-0_0.25-1_0.46-2_1.33-3_1.29\", \"990_l_1_r-0_0.54-1_1.09-2_0.05-3_0.26\", \"991_l_1_r-0_0.53-1_0.53-2_1.18-3_2.26\", \"992_l_1_r-0_0.03-1_1.39-2_0.7-3_0.58\", \"993_l_1_r-0_0.01-1_1.3-2_0.54-3_0.56\", \"994_l_1_r-0_0.85-1_0.24-2_0.77-3_1.77\", \"995_l_1_r-0_1.54-1_0.04-2_1.13-3_0.78\", \"996_l_1_r-0_0.97-1_0.61-2_0.25-3_0.65\", \"997_l_1_r-0_0.53-1_0.17-2_0.56-3_0.62\", \"998_l_1_r-0_1.47-1_0.14-2_0.31-3_1.22\", \"999_l_1_r-0_0.33-1_0.23-2_0.31-3_0.99\", \"1000_l_1_r-0_0.91-1_0.63-2_1.11-3_0.75\", \"1001_l_1_r-0_0.09-1_0.46-2_0.79-3_0.02\", \"1002_l_1_r-0_0.14-1_0.82-2_0.0-3_0.53\", \"1003_l_1_r-0_1.1-1_0.37-2_0.35-3_0.02\", \"1004_l_1_r-0_0.66-1_0.24-2_0.81-3_1.06\", \"1005_l_1_r-0_0.84-1_0.74-2_0.37-3_0.42\", \"1006_l_1_r-0_0.59-1_1.11-2_0.54-3_1.07\", \"1007_l_1_r-0_1.36-1_1.25-2_0.15-3_0.01\", \"1008_l_1_r-0_0.56-1_0.01-2_0.52-3_0.14\", \"1009_l_1_r-0_0.09-1_0.78-2_1.1-3_0.8\", \"1010_l_1_r-0_1.51-1_1.16-2_0.52-3_0.29\", \"1011_l_1_r-0_0.55-1_1.54-2_0.32-3_0.2\", \"1012_l_1_r-0_1.27-1_0.69-2_0.54-3_0.3\", \"1013_l_1_r-0_1.35-1_0.52-2_0.65-3_1.54\", \"1014_l_1_r-0_0.87-1_0.97-2_0.72-3_0.77\", \"1015_l_1_r-0_2.2-1_0.59-2_0.64-3_0.01\", \"1016_l_1_r-0_0.16-1_0.16-2_0.23-3_0.72\", \"1017_l_1_r-0_0.4-1_0.71-2_0.15-3_0.08\", \"1018_l_1_r-0_0.02-1_1.12-2_0.18-3_0.63\", \"1019_l_1_r-0_0.12-1_0.89-2_0.64-3_0.61\", \"1020_l_1_r-0_1.03-1_0.18-2_0.25-3_0.11\", \"1021_l_1_r-0_0.13-1_0.73-2_0.24-3_0.35\", \"1022_l_1_r-0_0.42-1_0.61-2_0.29-3_0.48\", \"1023_l_1_r-0_0.47-1_1.26-2_0.68-3_0.44\", \"1024_l_1_r-0_1.42-1_0.41-2_1.4-3_0.04\", \"1025_l_1_r-0_2.4-1_0.97-2_1.43-3_1.07\", \"1026_l_1_r-0_0.92-1_0.26-2_0.52-3_0.77\", \"1027_l_1_r-0_1.67-1_0.77-2_0.51-3_1.28\", \"1028_l_1_r-0_1.22-1_0.33-2_0.1-3_0.46\", \"1029_l_1_r-0_0.62-1_0.3-2_0.33-3_0.58\", \"1030_l_1_r-0_1.07-1_0.67-2_1.03-3_0.74\", \"1031_l_1_r-0_0.45-1_0.93-2_1.29-3_1.13\", \"1032_l_1_r-0_0.27-1_0.19-2_0.87-3_1.24\", \"1033_l_1_r-0_0.97-1_0.51-2_0.08-3_0.54\", \"1034_l_1_r-0_1.2-1_0.23-2_0.71-3_0.69\", \"1035_l_1_r-0_1.97-1_1.42-2_0.96-3_0.34\", \"1036_l_1_r-0_0.37-1_1.93-2_1.01-3_1.29\", \"1037_l_1_r-0_0.12-1_1.07-2_0.06-3_0.68\", \"1038_l_1_r-0_1.24-1_1.07-2_1.54-3_0.04\", \"1039_l_1_r-0_0.49-1_0.46-2_0.42-3_1.48\", \"1040_l_1_r-0_0.24-1_0.89-2_0.73-3_0.42\", \"1041_l_1_r-0_1.39-1_1.99-2_0.7-3_1.71\", \"1042_l_1_r-0_0.59-1_0.68-2_0.48-3_0.75\", \"1043_l_1_r-0_0.24-1_0.39-2_0.52-3_1.52\", \"1044_l_1_r-0_0.89-1_0.12-2_0.84-3_0.2\", \"1045_l_1_r-0_0.13-1_0.26-2_1.11-3_0.51\", \"1046_l_1_r-0_0.5-1_0.29-2_0.14-3_1.05\", \"1047_l_1_r-0_0.35-1_0.93-2_0.12-3_0.03\", \"1048_l_1_r-0_1.73-1_0.15-2_1.15-3_1.1\", \"1049_l_1_r-0_2.03-1_0.44-2_1.14-3_0.14\", \"1050_l_1_r-0_0.4-1_1.21-2_0.99-3_0.83\", \"1051_l_1_r-0_0.38-1_0.01-2_0.12-3_0.49\", \"1052_l_1_r-0_0.22-1_0.94-2_0.48-3_0.62\", \"1053_l_1_r-0_0.37-1_0.02-2_1.04-3_0.79\", \"1054_l_1_r-0_0.15-1_1.31-2_1.87-3_0.79\", \"1055_l_1_r-0_0.56-1_0.62-2_0.55-3_0.17\", \"1056_l_1_r-0_1.2-1_0.74-2_0.06-3_0.02\", \"1057_l_1_r-0_0.05-1_0.58-2_1.17-3_0.79\", \"1058_l_1_r-0_0.6-1_1.48-2_1.64-3_0.89\", \"1059_l_1_r-0_1.08-1_0.19-2_1.27-3_0.42\", \"1060_l_1_r-0_1.03-1_0.25-2_0.69-3_0.8\", \"1061_l_1_r-0_0.07-1_0.97-2_0.35-3_0.07\", \"1062_l_1_r-0_0.93-1_0.53-2_0.74-3_0.33\", \"1063_l_1_r-0_0.49-1_0.4-2_0.26-3_0.63\", \"1064_l_1_r-0_0.72-1_1.16-2_0.56-3_0.77\", \"1065_l_1_r-0_0.88-1_0.19-2_0.39-3_0.98\", \"1066_l_1_r-0_2.57-1_0.14-2_1.09-3_0.25\", \"1067_l_1_r-0_0.63-1_0.47-2_1.06-3_0.19\", \"1068_l_1_r-0_0.37-1_0.32-2_0.01-3_1.13\", \"1069_l_1_r-0_0.09-1_1.22-2_1.22-3_0.76\", \"1070_l_1_r-0_0.35-1_1.21-2_1.48-3_0.55\", \"1071_l_1_r-0_0.88-1_0.14-2_1.47-3_1.13\", \"1072_l_1_r-0_3.07-1_0.16-2_0.47-3_0.15\", \"1073_l_1_r-0_0.5-1_1.1-2_0.23-3_0.29\", \"1074_l_1_r-0_0.77-1_0.51-2_0.53-3_0.17\", \"1075_l_1_r-0_1.08-1_0.32-2_1.23-3_1.5\", \"1076_l_1_r-0_0.33-1_0.55-2_0.58-3_0.67\", \"1077_l_1_r-0_0.16-1_0.8-2_1.67-3_0.91\", \"1078_l_1_r-0_2.15-1_1.31-2_0.36-3_0.51\", \"1079_l_1_r-0_0.3-1_0.61-2_1.06-3_0.34\", \"1080_l_1_r-0_1.72-1_0.33-2_0.23-3_1.05\", \"1081_l_1_r-0_0.12-1_1.41-2_0.67-3_0.1\", \"1082_l_1_r-0_0.57-1_1.19-2_0.33-3_0.41\", \"1083_l_1_r-0_0.65-1_1.06-2_0.2-3_0.85\", \"1084_l_1_r-0_0.18-1_2.04-2_0.08-3_0.86\", \"1085_l_1_r-0_0.79-1_0.35-2_0.49-3_1.17\", \"1086_l_1_r-0_0.28-1_0.1-2_1.0-3_1.26\", \"1087_l_1_r-0_0.63-1_0.44-2_1.52-3_0.92\", \"1088_l_1_r-0_1.15-1_0.63-2_0.29-3_0.71\", \"1089_l_1_r-0_1.52-1_0.7-2_0.8-3_0.05\", \"1090_l_1_r-0_0.02-1_0.89-2_0.82-3_1.08\", \"1091_l_1_r-0_0.55-1_1.35-2_0.89-3_0.68\", \"1092_l_1_r-0_0.39-1_1.82-2_0.98-3_0.48\", \"1093_l_1_r-0_1.37-1_0.38-2_0.74-3_0.14\", \"1094_l_1_r-0_2.07-1_0.92-2_2.11-3_0.23\", \"1095_l_1_r-0_0.54-1_0.61-2_0.96-3_0.4\", \"1096_l_1_r-0_1.42-1_0.71-2_0.64-3_0.47\", \"1097_l_1_r-0_0.58-1_1.12-2_1.37-3_0.45\", \"1098_l_1_r-0_0.32-1_1.12-2_1.53-3_0.26\", \"1099_l_1_r-0_0.76-1_0.04-2_0.93-3_0.13\", \"1100_l_1_r-0_0.62-1_1.51-2_0.97-3_0.42\", \"1101_l_1_r-0_0.8-1_0.46-2_1.69-3_0.44\", \"1102_l_1_r-0_1.53-1_0.18-2_0.7-3_1.13\", \"1103_l_1_r-0_0.1-1_0.49-2_1.1-3_1.03\", \"1104_l_1_r-0_0.78-1_1.05-2_0.4-3_0.49\", \"1105_l_1_r-0_0.23-1_0.08-2_1.02-3_1.41\", \"1106_l_1_r-0_0.44-1_0.17-2_1.13-3_1.1\", \"1107_l_1_r-0_2.27-1_0.68-2_0.25-3_0.63\", \"1108_l_1_r-0_1.38-1_1.29-2_0.27-3_0.21\", \"1109_l_1_r-0_1.06-1_0.76-2_0.46-3_0.34\", \"1110_l_1_r-0_1.35-1_1.23-2_1.32-3_0.41\", \"1111_l_1_r-0_0.35-1_0.75-2_1.02-3_0.88\", \"1112_l_1_r-0_1.81-1_1.09-2_1.59-3_0.01\", \"1113_l_1_r-0_0.78-1_1.01-2_0.02-3_0.22\", \"1114_l_1_r-0_0.69-1_0.87-2_0.12-3_0.27\", \"1115_l_1_r-0_0.08-1_1.37-2_0.67-3_0.84\", \"1116_l_1_r-0_1.14-1_0.02-2_0.13-3_0.6\", \"1117_l_1_r-0_0.16-1_0.69-2_0.71-3_0.58\", \"1118_l_1_r-0_0.96-1_1.0-2_1.09-3_0.05\", \"1119_l_1_r-0_0.45-1_0.57-2_0.54-3_0.09\", \"1120_l_1_r-0_0.58-1_0.11-2_0.19-3_0.87\", \"1121_l_1_r-0_0.03-1_0.36-2_0.19-3_0.83\", \"1122_l_1_r-0_0.65-1_1.66-2_2.2-3_0.0\", \"1123_l_1_r-0_0.26-1_1.26-2_0.87-3_0.76\", \"1124_l_1_r-0_1.5-1_0.77-2_0.99-3_0.94\", \"1125_l_1_r-0_0.88-1_0.39-2_0.33-3_0.2\", \"1126_l_1_r-0_0.37-1_1.21-2_0.51-3_0.66\", \"1127_l_1_r-0_0.88-1_0.71-2_1.07-3_0.79\", \"1128_l_1_r-0_0.71-1_0.52-2_0.76-3_0.33\", \"1129_l_1_r-0_0.89-1_1.92-2_0.02-3_0.76\", \"1130_l_1_r-0_0.22-1_0.32-2_0.3-3_0.57\", \"1131_l_1_r-0_0.95-1_0.82-2_0.21-3_0.59\", \"1132_l_1_r-0_0.45-1_1.11-2_0.19-3_0.1\", \"1133_l_1_r-0_0.95-1_0.78-2_0.38-3_0.13\", \"1134_l_1_r-0_0.21-1_1.09-2_0.01-3_0.32\", \"1135_l_1_r-0_0.84-1_0.91-2_0.06-3_0.77\", \"1136_l_1_r-0_0.37-1_0.54-2_0.01-3_1.35\", \"1137_l_1_r-0_1.2-1_1.74-2_0.79-3_0.25\", \"1138_l_1_r-0_1.66-1_1.03-2_0.1-3_1.05\", \"1139_l_1_r-0_1.41-1_1.11-2_0.44-3_0.4\", \"1140_l_1_r-0_0.29-1_1.39-2_0.02-3_0.55\", \"1141_l_1_r-0_0.44-1_1.02-2_0.31-3_1.31\", \"1142_l_1_r-0_2.17-1_1.81-2_0.83-3_0.51\", \"1143_l_1_r-0_0.26-1_0.56-2_0.95-3_0.22\", \"1144_l_1_r-0_1.16-1_0.32-2_1.22-3_0.74\", \"1145_l_1_r-0_0.65-1_0.45-2_0.56-3_0.92\", \"1146_l_1_r-0_0.04-1_1.22-2_0.79-3_0.66\", \"1147_l_1_r-0_1.26-1_0.53-2_0.07-3_1.74\", \"1148_l_1_r-0_1.1-1_0.06-2_0.93-3_2.17\", \"1149_l_1_r-0_0.98-1_0.36-2_1.33-3_0.14\", \"1150_l_1_r-0_1.8-1_0.65-2_1.19-3_0.92\", \"1151_l_1_r-0_0.52-1_0.73-2_0.16-3_0.18\", \"1152_l_1_r-0_1.06-1_0.87-2_0.82-3_0.13\", \"1153_l_1_r-0_0.81-1_0.26-2_0.85-3_0.71\", \"1154_l_1_r-0_2.15-1_0.86-2_0.38-3_0.28\", \"1155_l_1_r-0_0.28-1_0.79-2_0.03-3_0.3\", \"1156_l_1_r-0_2.02-1_0.19-2_1.96-3_0.37\", \"1157_l_1_r-0_1.05-1_0.67-2_0.38-3_1.43\", \"1158_l_1_r-0_0.7-1_0.37-2_0.89-3_0.95\", \"1159_l_1_r-0_2.01-1_0.14-2_0.03-3_0.34\", \"1160_l_1_r-0_0.64-1_0.35-2_0.77-3_0.69\", \"1161_l_1_r-0_1.26-1_1.74-2_0.46-3_0.56\", \"1162_l_1_r-0_1.23-1_0.62-2_0.34-3_0.63\", \"1163_l_1_r-0_0.5-1_1.21-2_1.02-3_0.29\", \"1164_l_1_r-0_1.39-1_0.34-2_1.01-3_0.63\", \"1165_l_1_r-0_0.6-1_0.86-2_0.27-3_0.51\", \"1166_l_1_r-0_1.05-1_1.13-2_0.9-3_1.63\", \"1167_l_1_r-0_0.22-1_0.94-2_1.08-3_0.41\", \"1168_l_1_r-0_0.4-1_1.6-2_0.87-3_0.97\", \"1169_l_1_r-0_0.42-1_0.72-2_0.94-3_0.98\", \"1170_l_1_r-0_0.89-1_2.19-2_0.72-3_1.62\", \"1171_l_1_r-0_0.23-1_0.57-2_0.6-3_0.52\", \"1172_l_1_r-0_0.78-1_1.55-2_0.34-3_0.43\", \"1173_l_1_r-0_0.13-1_0.15-2_0.46-3_0.11\", \"1174_l_1_r-0_0.35-1_0.11-2_0.77-3_1.18\", \"1175_l_1_r-0_0.16-1_1.01-2_1.24-3_0.34\", \"1176_l_1_r-0_1.24-1_0.3-2_0.67-3_0.73\", \"1177_l_1_r-0_0.92-1_0.89-2_1.07-3_0.28\", \"1178_l_1_r-0_0.71-1_0.05-2_1.05-3_1.15\", \"1179_l_1_r-0_0.3-1_0.14-2_0.14-3_0.49\", \"1180_l_1_r-0_1.08-1_0.86-2_0.57-3_0.85\", \"1181_l_1_r-0_0.45-1_0.28-2_0.58-3_0.27\", \"1182_l_1_r-0_1.13-1_1.5-2_0.79-3_0.54\", \"1183_l_1_r-0_1.91-1_0.88-2_0.99-3_0.84\", \"1184_l_1_r-0_1.44-1_1.06-2_1.31-3_0.66\", \"1185_l_1_r-0_0.1-1_0.4-2_1.39-3_0.96\", \"1186_l_1_r-0_0.5-1_0.15-2_1.29-3_1.07\", \"1187_l_1_r-0_0.33-1_0.02-2_1.04-3_0.7\", \"1188_l_1_r-0_0.81-1_1.33-2_0.13-3_1.6\", \"1189_l_1_r-0_0.59-1_0.32-2_1.39-3_0.24\", \"1190_l_1_r-0_0.65-1_1.79-2_0.4-3_0.57\", \"1191_l_1_r-0_1.22-1_1.18-2_0.51-3_0.58\", \"1192_l_1_r-0_0.72-1_1.14-2_0.33-3_1.25\", \"1193_l_1_r-0_0.03-1_1.58-2_0.1-3_0.3\", \"1194_l_1_r-0_0.2-1_0.4-2_0.26-3_1.03\", \"1195_l_1_r-0_1.79-1_0.59-2_0.52-3_1.34\", \"1196_l_1_r-0_1.67-1_1.46-2_0.53-3_0.16\", \"1197_l_1_r-0_0.02-1_0.94-2_0.76-3_0.87\", \"1198_l_1_r-0_1.07-1_0.57-2_0.64-3_0.16\", \"1199_l_1_r-0_1.07-1_0.58-2_0.81-3_0.58\", \"1200_l_1_r-0_0.26-1_0.63-2_0.14-3_0.72\", \"1201_l_1_r-0_0.08-1_0.26-2_0.5-3_0.31\", \"1202_l_1_r-0_0.93-1_0.49-2_0.13-3_0.44\", \"1203_l_1_r-0_0.21-1_0.58-2_0.61-3_0.41\", \"1204_l_1_r-0_3.37-1_1.09-2_0.92-3_0.33\", \"1205_l_1_r-0_0.54-1_0.49-2_0.96-3_0.15\", \"1206_l_1_r-0_0.23-1_0.67-2_0.87-3_0.6\", \"1207_l_1_r-0_0.3-1_0.43-2_1.25-3_0.36\", \"1208_l_1_r-0_0.66-1_3.19-2_0.32-3_0.7\", \"1209_l_1_r-0_0.62-1_0.35-2_1.96-3_1.1\", \"1210_l_1_r-0_0.55-1_0.67-2_0.89-3_0.23\", \"1211_l_1_r-0_0.15-1_0.85-2_0.24-3_0.77\", \"1212_l_1_r-0_1.56-1_0.06-2_0.14-3_0.84\", \"1213_l_1_r-0_0.09-1_0.15-2_0.25-3_0.08\", \"1214_l_1_r-0_1.04-1_0.21-2_1.19-3_0.35\", \"1215_l_1_r-0_1.84-1_0.23-2_0.66-3_0.07\", \"1216_l_1_r-0_0.62-1_0.92-2_0.94-3_0.13\", \"1217_l_1_r-0_0.87-1_1.11-2_0.82-3_0.79\", \"1218_l_1_r-0_0.39-1_0.52-2_2.21-3_0.76\", \"1219_l_1_r-0_0.03-1_1.26-2_1.07-3_1.47\", \"1220_l_1_r-0_0.61-1_0.72-2_0.17-3_0.32\", \"1221_l_1_r-0_0.55-1_2.66-2_0.83-3_0.56\", \"1222_l_1_r-0_0.28-1_0.8-2_0.09-3_0.78\", \"1223_l_1_r-0_1.24-1_2.37-2_0.57-3_1.27\", \"1224_l_1_r-0_1.13-1_0.21-2_0.41-3_0.85\", \"1225_l_1_r-0_1.09-1_0.5-2_0.66-3_0.28\", \"1226_l_1_r-0_0.38-1_2.06-2_0.74-3_0.57\", \"1227_l_1_r-0_0.14-1_2.43-2_0.52-3_0.08\", \"1228_l_1_r-0_0.86-1_0.59-2_0.49-3_0.77\", \"1229_l_1_r-0_1.0-1_0.81-2_0.4-3_1.15\", \"1230_l_1_r-0_0.76-1_0.8-2_0.85-3_1.08\", \"1231_l_1_r-0_0.46-1_1.36-2_0.74-3_0.92\", \"1232_l_1_r-0_2.26-1_0.84-2_1.92-3_0.27\", \"1233_l_1_r-0_0.85-1_0.32-2_0.92-3_0.04\", \"1234_l_1_r-0_2.44-1_0.04-2_1.19-3_1.09\", \"1235_l_1_r-0_0.74-1_1.17-2_0.87-3_0.64\", \"1236_l_1_r-0_0.26-1_0.66-2_1.05-3_1.27\", \"1237_l_1_r-0_0.46-1_0.11-2_0.07-3_0.55\", \"1238_l_1_r-0_0.48-1_1.06-2_1.14-3_0.8\", \"1239_l_1_r-0_0.42-1_0.72-2_0.37-3_0.39\", \"1240_l_1_r-0_0.11-1_0.78-2_0.95-3_1.31\", \"1241_l_1_r-0_0.55-1_0.68-2_0.79-3_0.76\", \"1242_l_1_r-0_0.86-1_1.35-2_0.41-3_0.77\", \"1243_l_1_r-0_0.5-1_0.64-2_1.26-3_0.66\", \"1244_l_1_r-0_0.77-1_0.26-2_0.67-3_0.36\", \"1245_l_1_r-0_0.96-1_0.19-2_0.67-3_0.23\", \"1246_l_1_r-0_0.56-1_0.77-2_0.75-3_0.6\", \"1247_l_1_r-0_0.16-1_1.24-2_0.36-3_0.18\", \"1248_l_1_r-0_0.86-1_0.96-2_0.26-3_1.11\", \"1249_l_1_r-0_0.87-1_0.95-2_0.12-3_0.57\", \"1250_l_1_r-0_0.09-1_0.65-2_0.02-3_0.35\", \"1251_l_1_r-0_0.61-1_0.67-2_0.82-3_1.11\", \"1252_l_1_r-0_0.02-1_0.57-2_0.98-3_0.38\", \"1253_l_1_r-0_1.01-1_1.57-2_0.23-3_0.84\", \"1254_l_1_r-0_0.35-1_0.44-2_0.07-3_0.57\", \"1255_l_1_r-0_0.48-1_1.12-2_0.15-3_0.45\", \"1256_l_1_r-0_2.08-1_0.68-2_1.8-3_0.04\", \"1257_l_1_r-0_0.23-1_1.07-2_1.35-3_0.53\", \"1258_l_1_r-0_0.1-1_0.53-2_0.92-3_0.63\", \"1259_l_1_r-0_0.06-1_0.08-2_0.27-3_0.25\", \"1260_l_1_r-0_2.61-1_0.85-2_0.85-3_0.98\", \"1261_l_1_r-0_1.38-1_0.35-2_1.36-3_0.2\", \"1262_l_1_r-0_0.79-1_1.81-2_0.47-3_0.67\", \"1263_l_1_r-0_0.46-1_0.59-2_1.55-3_0.58\", \"1264_l_1_r-0_0.46-1_0.85-2_0.08-3_0.02\", \"1265_l_1_r-0_1.02-1_0.13-2_0.86-3_0.38\", \"1266_l_1_r-0_1.89-1_0.45-2_0.18-3_1.45\", \"1267_l_1_r-0_0.56-1_1.14-2_0.4-3_0.43\", \"1268_l_1_r-0_0.79-1_0.11-2_0.14-3_0.37\", \"1269_l_1_r-0_1.3-1_0.07-2_0.56-3_0.5\", \"1270_l_1_r-0_0.59-1_0.94-2_0.48-3_0.83\", \"1271_l_1_r-0_0.05-1_0.56-2_0.68-3_0.3\", \"1272_l_1_r-0_0.04-1_1.49-2_0.66-3_1.22\", \"1273_l_1_r-0_1.34-1_0.06-2_0.12-3_0.92\", \"1274_l_1_r-0_1.39-1_0.32-2_0.15-3_0.79\", \"1275_l_1_r-0_1.03-1_1.24-2_1.38-3_0.64\", \"1276_l_1_r-0_0.66-1_0.25-2_0.02-3_0.6\", \"1277_l_1_r-0_0.07-1_0.09-2_1.31-3_0.0\", \"1278_l_1_r-0_0.39-1_0.49-2_0.74-3_0.87\", \"1279_l_1_r-0_0.52-1_1.0-2_0.1-3_0.76\", \"1280_l_1_r-0_0.08-1_0.35-2_1.08-3_0.47\", \"1281_l_1_r-0_0.85-1_0.94-2_0.25-3_0.45\", \"1282_l_1_r-0_0.16-1_0.56-2_0.54-3_0.74\", \"1283_l_1_r-0_0.46-1_0.61-2_0.71-3_0.89\", \"1284_l_1_r-0_1.23-1_0.86-2_1.07-3_0.91\", \"1285_l_1_r-0_0.01-1_0.36-2_1.54-3_1.27\", \"1286_l_1_r-0_0.67-1_0.74-2_1.37-3_1.2\", \"1287_l_1_r-0_0.67-1_1.25-2_0.02-3_0.05\", \"1288_l_1_r-0_0.75-1_0.25-2_0.76-3_0.41\", \"1289_l_1_r-0_0.68-1_2.32-2_1.23-3_0.44\", \"1290_l_1_r-0_0.44-1_0.51-2_1.28-3_0.45\", \"1291_l_1_r-0_1.11-1_0.27-2_0.03-3_0.64\", \"1292_l_1_r-0_0.04-1_1.79-2_1.35-3_0.57\", \"1293_l_1_r-0_0.28-1_0.63-2_1.27-3_1.65\", \"1294_l_1_r-0_0.06-1_0.15-2_0.88-3_0.55\", \"1295_l_1_r-0_0.93-1_0.79-2_1.15-3_0.36\", \"1296_l_1_r-0_1.73-1_0.28-2_0.78-3_1.65\", \"1297_l_1_r-0_0.53-1_0.35-2_0.76-3_1.05\", \"1298_l_1_r-0_0.59-1_0.29-2_0.39-3_0.97\", \"1299_l_1_r-0_0.54-1_1.65-2_0.4-3_0.0\", \"1300_l_1_r-0_0.65-1_0.21-2_1.18-3_0.17\", \"1301_l_1_r-0_2.19-1_1.43-2_1.39-3_1.09\", \"1302_l_1_r-0_1.06-1_0.41-2_0.86-3_1.66\", \"1303_l_1_r-0_0.13-1_0.24-2_0.42-3_0.51\", \"1304_l_1_r-0_0.36-1_0.12-2_0.63-3_0.52\", \"1305_l_1_r-0_0.51-1_1.16-2_0.01-3_0.87\", \"1306_l_1_r-0_0.43-1_0.36-2_0.01-3_0.66\", \"1307_l_1_r-0_1.72-1_0.12-2_0.14-3_0.34\", \"1308_l_1_r-0_1.28-1_1.61-2_1.15-3_1.07\", \"1309_l_1_r-0_1.33-1_0.66-2_1.14-3_0.82\", \"1310_l_1_r-0_0.49-1_0.81-2_0.21-3_0.73\", \"1311_l_1_r-0_0.1-1_0.92-2_0.69-3_0.36\", \"1312_l_1_r-0_0.05-1_0.68-2_0.97-3_1.42\", \"1313_l_1_r-0_0.42-1_0.68-2_2.08-3_0.36\", \"1314_l_1_r-0_0.19-1_1.11-2_0.84-3_0.89\", \"1315_l_1_r-0_0.13-1_0.64-2_2.02-3_0.41\", \"1316_l_1_r-0_0.41-1_0.72-2_0.8-3_0.98\", \"1317_l_1_r-0_1.76-1_0.44-2_0.4-3_0.02\", \"1318_l_1_r-0_1.07-1_0.37-2_1.02-3_0.37\", \"1319_l_1_r-0_0.98-1_0.73-2_0.42-3_0.26\", \"1320_l_1_r-0_1.18-1_1.88-2_0.27-3_0.43\", \"1321_l_1_r-0_0.14-1_0.24-2_1.64-3_0.17\", \"1322_l_1_r-0_0.88-1_0.75-2_0.57-3_0.22\", \"1323_l_1_r-0_0.66-1_0.05-2_0.6-3_0.12\", \"1324_l_1_r-0_0.19-1_0.08-2_0.46-3_0.11\", \"1325_l_1_r-0_1.62-1_1.44-2_0.25-3_1.18\", \"1326_l_1_r-0_1.06-1_0.5-2_0.43-3_0.15\", \"1327_l_1_r-0_0.44-1_0.55-2_1.16-3_0.51\", \"1328_l_1_r-0_0.18-1_1.22-2_1.14-3_0.37\", \"1329_l_1_r-0_0.21-1_0.33-2_0.07-3_0.65\", \"1330_l_1_r-0_0.34-1_1.61-2_0.45-3_0.03\", \"1331_l_1_r-0_0.09-1_0.86-2_1.09-3_0.29\"], \"type\": \"scatter3d\", \"x\": [-0.5750220609080474, 0.0777347972515765, 0.09152025589960355, 0.12333066629805711, 0.7785448668275483, -0.7953041732988739, 0.33060791500802567, -1.1267602057984925, 0.18591678049750016, -1.7291415906212366, 0.042452605483702, -0.7260491315575255, -1.0582308517163967, 0.3629781874235476, 0.44503921500150057, 0.005311085003628424, 0.5986376868404066, -0.00711314082693737, 0.3667990916703123, 0.219268690351216, 0.5052361001350072, -0.17464070411610788, 0.05362604877930388, -1.0305396699359877, 0.507175566181552, 0.16954210598644703, 0.6591093976825508, -1.387158547084024, -0.4861918244219823, 0.11021534261758315, 0.06125399057587155, -0.3612344654379831, 0.956254315290535, 0.2607930006339081, -0.39051270089048784, 0.4107100964487671, 0.6535804301346957, -1.3439527006257348, 0.6274782691075906, 0.22925469331489, 1.1274633066082376, 1.4133893806748823, -0.9707087670460426, 0.02847795513119422, -2.869120614348678, -0.3800213168417662, -0.5756270390154329, -0.4616679223716501, 0.13944550641934583, -1.4616395611999107, 0.05786349478567554, -1.0609277743668273, 0.0910437479157602, -2.379122024926171, 0.43570288272343927, -1.4088768227053223, 0.04294783456122642, -0.5183539014260512, 0.22903409242557626, -1.2746929882754783, -2.4069702715277543, -0.774934377132764, 0.14767714226434303, -1.5846716520993027, 0.014950599368898976, -1.6142146026095894, 0.386658618235467, -2.040288632718304, 0.05090743362283523, -1.9854989428860075, 0.6768356262784163, -1.6540119340244122, -0.017607193697259604, -2.2142525509359543, -2.462408288501138, -1.0103952492214872, 0.5193392737456686, -0.2569243806273174, -0.10378712634706733, -0.8987911780179582, 0.5790312507333739, -1.6179936418771281, -0.8130604095704503, -0.7078039987322837, 0.7149907074324295, -2.469450959670686, 0.1903755882064273, -1.9903714973936457, -1.1611691349305477, -1.3167780337883932, -1.3381379883497961, -2.232313626128642, 0.46923411216715283, -1.7070988785615007, -0.8102140131973078, -2.232313300487923, 0.06712439030795592, -1.2481219986914158, -0.16325656971693592, -0.41767957182709514, 0.3458753992209713, -1.55387050821126, 0.33851469075723384, -1.7683589106338116, 0.5027744987110405, -0.7425412389507857, 0.7336978233809512, -0.7028554475381554, -0.9622383850114656, -1.3851629589069234, 0.2569906484029676, -1.0274299657035435, -0.4222453535933417, -0.3654633913689822, -0.8862983417696411, -2.1901643399691375, -1.147962992695724, -2.177780191803812, -1.8644196034196765, -0.141262047757148, 0.1680839686436546, -1.8910754881384921, -0.9209438960908358, -0.5400772144901278, -1.2900958950124435, -1.3113082944825454, -1.0135357239010558, -1.0302634655111775, 0.15355779867639852, -0.6923859950153852, 0.3473110016030825, -1.4535187666485863, 0.4602107134135287, -1.718078675434688, -1.4711188316534212, -1.3587200527047556, -2.1553775629908536, -0.4012572011415063, -0.6511038040298742, -1.4334441194664485, -0.9676031258608797, -0.25498522484097674, 0.6480183232229924, -1.9152865772366245, -0.7013785729040554, -1.3183699151459394, -0.5098742962742323, -2.0437824153629256, 0.4720894424966684, -1.92463943830938, -1.8482261012262264, -1.6943060806636265, 0.1778183912236464, -1.5055042462426387, 0.07445595025745089, -2.7476858301371303, -0.16339371558973748, -0.6897585366607157, -2.009128209168995, 0.15174226827527382, -2.5259717387285856, -1.3078615405102414, -0.9217736867361581, -1.1190027129869284, 0.15225744939571006, 0.3643106888736165, -1.0332870280342403, 0.012948722357012166, 0.5379180793524898, -2.1534967187708878, 0.5307652829782212, -0.8596566929930669, -2.548907700511082, -0.13428056571519498, -0.7308024779892901, -1.5227816595542183, 0.7238338557904507, 0.10144273865974118, -1.2907772671931912, 0.16118648246279998, 0.7528507163299554, -0.3166710717974687, 0.7325266446840082, 0.5807934743552023, -1.6124220264085816, 0.35634556114852245, -1.6829320948666693, -0.9932278485438748, -0.8991687916614908, -0.5244305788903341, -1.7041897726091357, 0.1957187532248965, -0.7666397028968894, -0.41061782865036667, 0.5506544614984692, 0.13087931199144576, -0.3223266955959332, 0.07126358105910668, 0.06359472764288565, -1.1637061200751795, -1.3053127303492256, 0.14507295403221931, -1.5134340291412847, 0.3662182654559276, -0.8562252978915061, -1.5737874246651067, -0.1677289239523434, -1.0320237196602176, -0.03105134038455415, -0.9313195388432997, -1.1023724150614114, -0.9655425066500223, -0.3133721080600399, -0.02523466672122865, -0.7615376022322077, -1.4077508695770033, -1.1717900640882724, -0.9517179592853066, -2.043033296043668, -0.7631827224174894, -0.4668183293462276, -0.9961327045719701, -1.933112570468706, -2.3062902572356694, -1.1633647062508377, -0.39591727429499546, -1.8237972957817616, -2.2472579412307434, -2.4906448885238737, -0.8022188128812924, -1.7484354040754675, -0.27327881367235485, -1.4645187263911168, -1.0122731379875087, -0.31773363237441254, -0.13101606227464424, -1.5869298840105186, -2.1083612153707953, -2.490734828542087, -1.5257883606547182, -1.8049851457124695, -1.5241249237875305, -1.4267102767091573, -0.5323387874920322, -1.9961986511918086, -0.9186215104115795, -1.2737874062325376, -1.9430626010998298, -1.416013720721343, -0.7134543918287192, -0.4444661618487965, -0.5333985295777797, -1.1031154586077005, -0.9129383879671591, -1.0199628807022225, -0.9347857260694109, -0.12059951268495528, -1.1961673633749228, -0.5431187031502602, -2.0486184076360985, -0.8661445720161896, -0.8864566879036788, -1.796034531796093, -1.7313883108154455, -1.5271295421181943, -0.873521644526157, -2.1787404830211177, -2.5340643954369346, -0.9709894812105138, -0.6307524971236601, -0.437576395974855, -0.9252611341735385, -0.05098784565588721, -1.8197440388478823, -0.6309357636726244, -0.3659285921414782, -1.0616987602233108, -1.4195963840150183, -2.014758666573387, -0.21299844905384258, -1.0037656037438376, -2.0208046346941444, -0.36047277260582755, -2.4529665628970108, -1.9797883810544241, -2.080094395073724, -1.816719407472464, -0.8694514442007591, -0.5356211495427833, -1.1122328575785005, -1.9115391635515517, -1.0176276004105598, -1.9710713393301602, -0.5711726532071798, -1.3643832447634692, -1.772884260920407, -0.24787031601632092, -1.744905312608336, -2.5057831434906714, -0.9799498101272034, -1.9580328179157656, -1.5214189086326741, -0.7619055512285547, -1.055995337044533, -1.4831201396286104, -2.0821119205163363, -0.6882475968670898, -1.1229905229020474, -1.3884125294608463, -1.623782223597376, -1.5282689799563647, -0.2682845220646156, -1.1227034332931307, -1.088426841448712, -1.324376837308228, -1.6252104670755896, -0.015585872776146648, -1.1861551387198719, -2.1334121346562096, -1.071855283512878, -1.3288506978077301, -1.085369287117732, -2.2523674546945966, -1.3990696109331404, -1.8767117985032638, -1.182009849744648, -0.803277163776219, -1.7092529535158212, -0.7731079564579897, -2.1958708326245215, -0.7880214432200245, -0.5625970086334495, -1.4559087790609329, -1.6577983510137602, -1.1079178623020205, -1.6570392038472752, -0.002676489020829287, -0.3988460384047168, -0.8136882957191842, -0.36928995769665207, -2.2517191929615725, -0.15083670658772552, -0.6246009223968251, -1.095816206552976, -1.2622354659051185, -1.746035118816136, -2.042562209655153, -0.6475947112055418, -1.417186111751659, -0.7062797660024633, -0.5507381308632104, -0.4059643001372514, -1.866962274937629, -0.6429169322457432, -1.565423965354832, -0.2400925426273779, -1.1498864699986384, -0.6766615520102791, -1.3991785131660437, -1.7246453985972672, -0.5245732705025975, -0.5109839064273269, -0.09791894764098108, -1.1986602212989341, -2.612572321858485, -1.5474328659226093, -2.4186797772446296, -0.08384730070485691, -0.7088726965296122, -0.9946175346550191, -1.4320582808225706, -0.057918905512599594, -1.6523210473626146, -1.1546008114968793, -0.7322201536092381, -0.6955357301150954, -0.9547330545535678, -0.518550506572262, -0.8405697711854424, -1.494123128350776, -2.159847829447294, -0.11954761422713112, -1.4340998517833343, -1.142721397495563, -2.1200908238814984, -0.1227770978549978, -0.4766594242106358, -1.466978476114135, -1.86786991139363, -2.9650978332107307, -1.6737102042238288, -1.165496311565933, -2.1209636403298404, -2.26176087855476, -0.6927573765778325, -1.3608490789140848, -1.581498011400925, -2.6027857853859775, -1.9295292074292332, -0.9732299064086053, -1.3365891136805688, -2.626167028509472, -0.007383033015186169, -1.404354254060326, -1.4778052859499873, -1.6055836598053193, -1.0032685766610365, -0.7418256399313641, -2.7801351445860774, -1.2292351239027115, -1.0510273534074244, -1.8068608428252406, -1.8382993285763047, -2.165997156083419, -0.2321674242304821, -0.9769947850943052, -0.7362390129571726, -0.20369192598550567, -1.4275292552847563, -2.3892913999994834, -1.0006467681347873, -1.8870436401719588, -0.8168416936647677, -0.8004018215708618, -0.8158403550602323, -0.8879917323704906, -2.1258901309908866, -1.4324946498345483, -2.1126310172100236, -1.6536336224088397, -0.6351282573618835, -1.7483593058599576, -1.5298832081336289, -1.3340246492829257, -2.435046190140043, -1.8726867780688474, -0.6996969714433717, -1.1019627672016705, -0.45914640068040125, -1.0151121294140093, -1.619569201712705, -0.24748704339795236, -0.26547952165114197, -0.7876211941936945, -1.764767603850991, -1.0244671773751168, -1.5860371037170435, -0.9745857782180205, -0.47348024856147786, -0.8723532085445351, -2.3780622842727412, -0.8545579692240681, -1.4691430599354678, -1.4564996805861374, -0.610777568709318, -2.9837148735548293, -2.2778778352810423, -1.1929791669257697, -1.1033722236791224, -0.9518743210223395, -1.4880511386609476, -1.0665018712082026, -1.359089748462853, -0.4042003071553124, -0.2952182389813246, -0.20993599518617156, -0.19261305309075505, -1.7439872798103542, -1.205423820151074, -0.060453999732902775, -0.007633964326785536, -1.4028392017888196, -1.5337275081704462, -0.6879768695127684, -0.35476813216490244, -0.3093195294098732, -0.8279554261939396, -1.0649764579853265, -1.2160522817223587, -0.5587914238517174, -1.5616476212007044, -1.113013314418135, -1.0486338251606149, -1.3263429173288086, -1.1945582839711852, -0.163405761529282, -1.079833970678611, -0.8480122632553434, -0.3783738675826742, -0.03240331622552206, -2.4847262872875495, -1.0570167714456324, -2.397535631651486, -0.028022913523579218, -1.2768462969806063, -0.45923686097537875, -0.5208681272550175, -1.0167152164430167, -1.0070626655077581, -0.2697393064194791, -0.8964593905113316, -1.0818594915697242, -2.029301158017244, -1.0769997238570426, -2.3760639912564323, -1.6945671312333292, -1.6918060769423509, -0.45986193617316307, -1.680090452675608, -1.2365672227130022, -1.9524028472269341, -1.419904099621934, -1.0848577450607486, -2.167122718598884, -3.1337683009972803, -1.0593984035618353, -1.2238768453916273, -0.9870974315845467, -3.0357201757301113, -1.899781518708592, -1.2877032095092011, -1.0436496669542217, -0.7310345568927668, -1.3876520828008787, -0.4048353055842564, -1.2744755760081712, -0.32607550691044407, -1.9441107645741333, -0.3663170140388252, -0.5211922984977433, -1.4741550525663225, -1.0954332531937157, -2.617293789654114, -1.0139374172019728, -0.759128691986646, -0.9289114578234227, -2.46374984944409, -1.0434251684361577, -1.1855311791431116, -0.9647535455187172, -1.4693370166621238, -1.889503476984405, -0.8113992649919621, -2.1345374853711885, -0.9466417506307316, -0.7088441667245554, -0.1435521352584227, -1.2266078295421434, -1.1917255656118626, -0.6550968176805161, -0.9446821771350477, -0.8245994477000471, -2.2073943512658025, -1.1923005375700388, -0.17482649361893032, -0.829910742430132, -1.5070808216313492, -0.5674803030386184, -1.5938233712500465, -2.5772052962364462, -1.4254104549903155, -0.5214335528100831, -2.2644343627742245, -0.4013533014984956, -0.8457793443024503, -0.7443410648574151, -1.9206685129371697, -1.1473236684137857, -1.2327526377719453, -0.8737819304209482, -1.047375352851678, -2.3482918027695576, -1.5969368019711432, -0.5227487988957805, -1.2898193868530003, -0.7923635731224714, -0.4067816518117052, -1.2607978148773027, -1.2144316124427599, -1.3180575836855328, -0.9461458577675412, -1.7454118987955205, -0.2610219946776281, -0.4726366401060017, -0.016306778605026828, -0.8202856027561698, -1.0060645520545313, -0.22599793938562152, -0.7419297691346975, -0.15257716557729972, -1.924271045710054, -1.35375999071908, -1.3631143665338081, -0.5039540478875024, -1.3800184137594376, -2.2997777216028923, -0.47363041541155215, -1.5512084669661697, -0.07987401876101807, -0.8630541974358397, -0.18279165044717327, -0.4355553305915373, -0.9418090321779566, -0.5561815513824915, -1.0090993939363007, -0.6760490256943255, -1.1358683762398127, -2.007783863586332, -0.1522863693055747, -1.3758979397402862, -0.3425319619481074, -1.3113760082920187, -1.0635316463109616, -0.9891791219621358, -1.5027473778957532, -0.24772627432574035, -0.5449247837599321, -0.7083073049130875, -1.0651756490569728, -1.6691571902700582, -1.3707160379541004, -0.019831990700270863, -0.7621028197398301, -1.2288080829529826, -1.5779541350039503, -1.8512884344123934, -1.3471965168885338, -1.2741228141559602, -0.8756401197930512, -1.1495849488135013, -0.777779358405832, -0.7624122960704296, -1.5494965390356423, -0.39759264927926496, -2.9270193350671274, -1.3856187067065777, -1.5554559256014846, -1.4379461165440346, -1.3420082342154775, -0.9636854706122673, -0.012768456757277558, -1.3771682869508777, -1.14850455339018, -1.1448901055919114, -0.21452696561419216, -1.0249338691674725, -1.0012021345756446, -2.0849289953923327, -0.8365630677968071, -2.016033137957182, -0.799113575605325, -0.43794682549015573, -1.1042660649900742, -1.0977109953409825, -0.7921509643645711, -2.30530566720846, -1.4080257830093172, -0.6229530727818571, -1.3634732860439842, -0.4328341729585109, -0.6065900450409052, -1.1576945272195789, -1.4157352923708304, -0.0690934852732753, -1.0410692721731607, -1.0893804105790705], \"y\": [-0.996852504086118, 0.30928981959862967, 1.4554696509252667, 1.8396343620733, 2.0428936068376773, -0.12118180654556965, 1.025486482584412, -0.7262388634216894, 1.6368193622499883, -0.19068886747390268, 0.21542857347737443, -0.10726281242610702, -0.47284833289628403, 1.49392293751981, 0.27020162295772765, 1.3709225378918566, 1.4005615284272375, -0.323494080002404, 0.7251446684666267, 1.2501079337820282, 1.2165677003993258, -0.2632562718179625, 0.15788687113845168, -0.0658348823581798, -0.21185474841911, 1.8603625020812822, 2.031855572327286, -0.04725182960932739, -0.4444706499071607, 0.7071668612212484, 1.3033344844378028, -0.5544943608119648, 2.2693899881696575, 2.0774895373344675, -0.2705623534262054, 1.1922635009274107, -0.20977642162254573, -0.6428752930286525, 0.8103579401517002, -1.1494944071139934, 0.8123442588607093, 0.9997623309946243, -0.3267165251184123, -0.7022791002992492, -1.0261512493546308, 1.6653110351713776, -0.4198621452145799, 1.4428341633603265, 2.785712348001902, 1.7328695095395885, 1.781605168624179, 0.9307175885759753, 1.4611941462018707, 1.7241236768687478, 2.1175774866043957, 1.2266420119352102, 1.9621965327032216, 0.7140435242578755, 1.4732575196650695, 0.6337526959783586, -0.28585615738208037, 1.136747135968629, 2.0163697570601053, 0.8687434060391308, -0.1595318843619773, 1.917612146117468, 1.504969290889258, 1.7833364519422343, 1.4313645982401602, 1.2504367108772023, 1.8853785771907308, 1.9169126760432682, -0.6583998412645238, 0.04516540412466741, -0.6250163710158914, 0.7148614184728371, 0.5653506580733623, 1.102670260485175, -0.07508825848883083, 2.3332808546075974, 1.6495051762985082, 1.4583319653093334, -0.09084856465099178, 2.351307494208948, 1.7342154447295273, 1.6957675474416283, 0.07305261936801188, 0.49092722987552606, -0.43435720618086204, 0.8480702856191314, -0.21457832204623095, 0.12694795837517947, 0.44239435539387295, 1.2199567350538618, -0.1205195715351508, 1.6897350828423812, 0.5032383776286162, 1.076762961536468, -0.041819509091786555, 0.36467902287539466, 1.502570876558707, 1.547881807359357, 0.49630387182420577, 1.9585449296910156, 0.7099681061822017, 1.2082752974247295, 0.7382145973051947, 0.501592298881276, -0.5391996259106318, 1.2720046344177631, 0.7191258514801557, 1.9532422961477036, -0.9709228878772105, 0.289011190971479, -0.20689700997429972, 2.553359240574414, -0.08930288647367779, 0.23996693185138518, -0.100222383543215, 1.3396054894408431, 2.2252078704053933, 0.3080902543056844, -0.2871006010557413, 1.0227221568297882, -1.1513808433252355, 0.9483384996540181, -0.4069198533959768, 2.2575104471424696, 0.5583237323084373, 1.4766969765214215, 0.8321432698470779, 0.42759738584973783, 2.4897880718708434, 1.1730175008146886, -0.15096926109510767, 1.5009471239912324, -0.4829946944410304, 0.7829891574296981, -0.07567558764103843, 2.0624139736104476, -0.2095472675679857, 2.198486709918492, 1.7860500876780456, 0.9201857454797423, -0.1972019974884196, 0.21361152206370937, -0.35424322864957425, 1.4667755587954765, 0.062440053581660604, 2.349891818244643, -0.107193025524978, 1.2756982961719747, -0.007026275855700037, 0.19724281914250663, -0.4327460263706595, 0.7883888917510965, -0.6625819966925528, 1.504659890863933, -0.213346016179897, 0.5358135962737742, 0.6257679336671039, -0.17843923707584053, -0.422329451471529, 1.1697545295987775, -1.2643738778167535, 1.8456239298652029, 1.7473532322922771, 1.5205539356126812, 1.2427183652949525, 0.6103044842795422, 1.1658819562319191, -0.5676982897018727, 0.3035376531335453, -0.891804971131112, -0.7103359392214292, 1.6297190674772766, 1.6401679866442842, 2.150739810419645, 1.280967263917682, -0.30219530846784326, 1.1384052997711664, 1.7926111527348776, 1.5682417832847122, 0.13441690051825006, 1.372903045081701, 0.9675872640325478, -0.942630041764239, 2.188275616958413, -0.5613971204755828, -0.3848501362320944, 1.4429716443138174, 1.66187193699399, -0.48578005858746653, 0.07460946399129031, 2.2669183201594754, 1.2205251329931261, 1.295075770535237, 1.664288504795652, 1.5588836893534532, 2.4797370773185143, -1.033320760528722, 2.5700719473041005, 1.390156345809885, 1.5034865774848525, 0.4607771167433393, 1.155574607279326, 0.9154069612887727, 0.5130470059259242, 2.6158573998676578, 0.10263290858602925, 0.9686479353743969, 1.1668800196097386, 1.5983525323417918, 1.1866000604583, 0.590246519534522, 1.2942411117296808, 1.0114471971437091, 0.8949692878744311, 0.8510635738069556, 0.8934539003395745, 1.7908567546680874, 1.0047394376545322, 1.3865218687305272, 2.465462690300039, 1.843144032854212, 0.8167035672266494, 1.5356575261640892, 0.7544061002237386, 1.2799783997833292, 1.1008673740773416, 2.0815587740911052, 1.1871765186097647, 0.7202004914250181, 0.11954660490182867, 2.007128562155116, 0.5613341451987148, 1.6528620416605357, 0.6434619504526833, 0.32764281649539295, 0.40003124964014747, 2.075529836174179, 1.6119604688277673, 0.0108973194403722, 1.823040957500553, 1.3791393217953969, 0.07297396151491953, 2.5193102721489065, 2.335865340419187, 2.2573434642753236, 1.502627074829948, 1.0790123818565402, 0.18522208485604275, 1.6243457371291776, 0.7194929644039982, 1.6079601142628681, 0.6248625776661267, 0.4490462208164444, 1.5822962379490533, 0.02002972821793869, 2.3526978049513323, 0.4780252624006688, 2.9887777917845915, 1.5261854216092436, 1.3857168516392953, 0.8691952027931668, 2.055691567136683, 2.359273946937293, 1.2620346720131819, 1.4173203493118878, 0.8564218554900493, 0.8163826828822345, 1.925914309903114, 1.837941556211733, 1.3409257738415867, 2.413613094825073, 0.4985288761138835, 0.7046838104135686, 0.3765056983248004, 2.9087077887989112, 1.2446320661416517, 0.5320172440711787, 1.294018316365273, 0.44577516919466653, 1.5315711145851485, 2.02834408457544, 1.5597735511955442, 0.10282048211159533, 0.6124327393143341, 0.07007670772913777, 0.22505160415352832, 1.922396434783839, 0.9948109955646393, 0.6853666755587242, 0.6466041265483731, 0.262779867228661, 1.5642439907935446, 1.8648793637317964, 2.0649575803133198, 1.765002693580102, 1.6618805331179636, 2.4500439161468606, 1.9211245418382108, 2.5072830307985923, 0.11001680663871127, 1.994184450056475, 2.5287396363081416, 1.1461613150773131, 0.4962785575000054, 1.3184782035736986, 1.7825666534166071, 0.23046768606638535, 1.532404347896594, 0.7680396181635015, 2.2490145154190544, 0.04355679347078212, 1.7912502882113364, 1.356408574586078, 0.30863156885183185, 0.8970273111179294, 2.272358432214654, 1.811484721229168, 2.512965279152834, 2.0812742934999533, 1.7130110633242315, 0.04583565879938811, 1.5196514325980892, 0.6976636027122247, 0.5433948461152378, 1.6599815947510326, 1.1258586542242264, 0.24547211666083135, 1.7465128801796947, 0.306958059053297, 0.3076128169237087, 1.5104474310894007, 0.7858870987975339, 1.8106680127387333, 0.35494115811255533, 1.2180224866714124, 0.5001424816901909, 0.5355334636608606, 0.8302689881840298, 0.521312266691057, 2.0616650014321385, 0.52431578346125, 0.32126996266718266, 0.9592001224519632, 1.2817312586433778, 0.7210981793108558, 1.153914620722227, 0.23035361149785205, 0.15156104846758922, 0.44231688602017494, 2.166495338745963, 0.2510669724859965, 1.8089896686248323, 0.29445219672230627, 1.7197899440248121, 2.5365223258306457, 1.4254477541564305, 0.8637141944122735, 0.558482407390212, 0.4208715827701415, 0.32869490405032165, 1.0266964379503232, 1.2891995053082772, 0.8714980900812856, 0.6541750167979583, 0.9806901534202898, 1.3918107698826696, 1.0132858611457993, 0.9871669288582886, 2.3702096186009802, 0.4202067127635837, 1.3329143468436793, 1.986175546157599, 0.48164109492364593, 2.2056024364713984, 2.0320697829964605, 1.1111214120073007, 0.9282816739223078, 0.14103329134474274, 1.153553389372702, 1.6051340484651297, 0.9897175850843769, 1.722234430614332, 1.2094005654486826, 1.0393033963165053, 2.1096888746920346, 0.5536442207275376, 0.6455974337709156, 2.0367200023859384, 1.6414562696744888, 1.2652544293930232, 0.8352379556894511, 0.9717710228121735, 0.7375931626701454, 0.2635530497576142, 1.4166470556041095, 1.693051317376568, 1.090443069619739, 1.7284931223725775, 0.14634755149726686, 1.5511721163088705, 2.138156482028851, 1.470479059976004, 0.4743804997895954, 1.9774992217850338, 0.5645551483335455, 1.2498015745490139, 0.5812119388754677, 1.672278597216564, 0.3584047251162812, 1.307199733994125, 1.9300669356137512, 0.6652673360033972, 1.9048659423565164, 0.8659002056195196, 0.07847921658483636, 1.4355283858377417, 1.0067514841490504, 1.516302692916121, 0.2941284512388692, 1.8335460480963137, 2.344397916278565, 2.327382089454537, 0.9797290336312088, 2.258533698115563, 2.1578093650373704, 1.2109875181979541, 2.013320338338736, 1.3687264366472247, 1.8466412582138623, 0.9250193777316408, 1.4027872104646073, 1.68932120015719, 1.9079643304395177, 2.228216121215447, 0.39933795857158416, 1.0726461707981474, 1.1250117802260915, 1.0285916497283358, 0.6983662110720582, 1.0776905045048712, 1.3230079302786073, 1.1199180585617967, 1.8641939113769816, 0.017989009885319485, 0.12244291355678749, 0.6739837917528377, 0.13465370981645686, 0.7069785450914838, 1.0877533853315675, 0.5381125730018619, 0.1927518478383472, 0.5322025939380679, 2.2024444663755336, 0.8676201732537941, 1.2477806136457872, 1.1450894752785692, 2.3643276156553252, 1.4030374809789616, 0.7567624328409879, 0.015398127021390207, 0.7853708533526669, 1.1158959631978305, 1.6078521740186877, 0.3780012607032488, 1.4130914763325926, 1.4846024721970694, 0.15522718421460258, 0.7917815382337481, 0.10223105477456995, 0.4376233290033361, 0.022389020111879487, 1.1718398009903743, 1.1950351818880234, 0.9489989116081483, 1.2391297974404805, 0.638111066640833, 0.8789326320482163, 1.5867153784129417, 0.9251291513337145, 1.6612378358480577, 1.211546407655297, 0.9297082154437439, 0.8157974839780018, 1.645341193010191, 1.3928803576360431, 1.0661090852900916, 1.961436467302664, 0.3785997350656347, 0.8918907331679278, 1.1941231669480354, 2.135129160026896, 2.4175075492517397, 0.43222853304728504, 1.6296793660940012, 1.0484648181708673, 1.208486643187479, 2.611852136882538, 1.5863643019882592, 1.0017749789379267, 0.9423506009966857, 0.7164995375469193, 1.868869371053054, 1.5023376943442774, 0.5236184323893729, 0.7741829781740108, 1.2494951194181714, 0.8438664538823775, 1.0746563560378402, 1.2235290989661547, 0.7200170748833886, 0.8058202972221162, 0.5840506122363034, 0.7881039749892857, 1.3814499132375457, 1.3114776294940789, 1.388354274108895, 1.7582519895420146, 1.039834365230547, 0.12887667109113676, 1.3956067628172497, 1.1379294369378137, 1.0750844044856054, 1.1612037182365371, 0.1011318129829254, 0.2579558003211011, 2.160997303083141, 1.1416823104131182, 2.918008537394588, 0.8716535304224, 0.9112931734915772, 1.3415514511376878, 0.49848035866535, 0.1342169247607501, 1.4602376344992363, 0.9240943402337392, 1.0847898445681015, 1.3302741226678374, 1.2451258678475423, 0.31969402330223606, 1.9644824089637019, 0.8902642312791152, 0.2370961761566207, 1.4606680729012913, 0.9502552016394541, 2.0662257763001506, 1.433764172564374, 0.9998124487906002, 2.648538970242019, 2.73445367311637, 1.067102590522378, 0.8352376629991352, 1.051569866269236, 0.09118431668434368, 2.0010398348802916, 0.5788040350862063, 0.6609276680374216, 1.2050521920267283, 0.7367216207693732, 0.4868681111760669, 0.9449207942089388, 1.3116454611817898, 1.456790414444097, 2.4900924819587855, 0.9241072788541174, 1.1853399600261643, 1.4554402909564756, 1.2287117599070965, 1.124695107572223, 1.135193904201935, 0.3712488269542271, 0.9451042460273626, 1.5383829794045418, 0.8013127991690172, 2.5415533139294277, 0.665485345699169, 0.6733054615364759, 1.7303134354946648, 1.4465121555910525, 2.060855805325671, 0.11632175481743456, 1.8590423691006068, 1.1471876323649952, 0.9787736484035314, 0.7509474506084338, 1.0227405325524113, 2.6957026540496503, 1.8004450167872457, 1.6836297487873255, 1.4233572646133352, 0.44298033452251706, 0.8488776614542344, 1.3628633014309806, 1.2743755154810388, 2.6321699651177948, 1.9905032974417998, 0.8998837823436254, 0.5270759854541667, 0.40271648071232036, 0.1940867253794034, 1.5569972324164452, 0.47737212788646255, 1.7601670836596717, 0.6565275217591314, 1.17420989873298, 2.1436050474616977, 1.9360970968396598, 0.173304015187553, 1.402329722767669, 0.7400602297915846, 1.8200522255981775, 1.0840884239610695, 1.0374582465190958, 1.3827935599495071, 2.0395074410452425, 1.7815541468748863, 1.6368106398110807, 2.3836710806905628, 1.3034524701768606, 2.3731056880711163, 2.0574100213553708, 1.2782245279452373, 0.03469541681755994, 2.1296777034861596, 1.9262236998579547, 2.2804507972704715, 1.3776892420330584, 0.9350768947348421, 1.0171659466464273, 0.39096713587639587, 0.4695242170821161, 1.175290494545878, 1.6546452481716276, 0.859589367733691, 0.42409892855299225, 0.6254062665175271, 1.1854939250160195, 1.8111493332823367, 0.791108857378228, 1.9775497137750493, 1.667827897996095, 1.0941334940773482, 1.771762858063251, 0.9723945124417541, 2.1520265046707454, 1.4956522670126315, 2.1849978245183497, 2.442011345176984, 1.2200867775537036, 1.0236001161121118, 0.4181384271683114, 0.267364464616652, 1.6417141225964849, 0.5710591320939051, 0.6030230360024015, 0.45757478106503524, 0.2480355404210708, 0.7530068388525052, 2.099002657569735, 1.1407634908028181, 1.9996556918598034, 0.4870589030090883, 1.173204442753556], \"z\": [2.38736462776051, 0.7567952069551396, 0.5129380321612294, -4.990613962755746, -4.88511761536151, 2.332299888939807, 2.943309789620895, 1.710029624079894, -4.375025556183363, 1.9195959612454452, -1.7963950994038642, -4.902556141620461, -2.3463903735950264, 0.24179392125701682, 3.438964668051243, 0.6355190255613303, 3.294806273244502, -4.538268676618127, -1.811871196112107, 0.9947540451752603, -2.4680833199063223, 1.2348012015071061, -1.3311058065698158, 2.617507371660362, 2.059129338643862, -3.5772215951031128, 1.9934899425721682, -0.20837095293810926, -0.6540975370450957, -3.2028538243350377, -3.535442516859046, 0.5899069757605071, -4.470430771440908, -1.7348040686623398, 0.5525074489840458, 2.05110005535468, -2.0837657521034814, -1.3156992608250189, -3.1403631919388597, 0.1443582923084188, -0.6020446050223933, -0.4371534824493759, 0.17408962448132126, -2.010278969545043, -3.8604897012131314, -4.588041254219403, -2.002882417753199, -0.7590590738115512, 2.368232735186523, 2.381698855190578, -1.3138696282654267, -3.044304153640226, -0.9511687707541654, -2.7000722535387642, -0.03343722158740281, -4.27391239824548, -2.1089446519907793, 1.4385149769726393, 2.068780492056998, 3.38439497787874, -0.9989145849551662, 2.4109757406663332, 2.018559181881712, 3.06655877315605, -0.28486104222211317, 3.214000474596965, -1.5921974961838816, -4.616631309885782, -3.602825994565726, -3.6603092440214064, 3.061881349719954, -1.3229330725054873, -2.461356077740148, 0.8733250214409036, -2.3296021018445474, 2.7067006197016408, -3.6700447327802386, -4.290020413486475, -2.882933740645164, 3.4318659616732443, 2.268070376561755, -1.902045094046506, 0.6565956850558479, 1.3842208267823484, 1.4765892092566792, 2.5387631057928255, 0.9278671429752814, -2.659759819251551, -0.3111376626433291, -1.6802557568928846, -0.9839210009948998, 0.4588544825909757, -2.8694130752962557, -2.4019946774590184, -2.8733635758285483, 3.341458186428543, 1.8679769700780628, 0.8376873903951898, -3.679454966445376, 1.4425324867625973, 3.0805061012579724, -0.9488406811859988, -2.325419730000381, 1.7953220022855723, 1.8657398754469137, -0.8653312449841213, -0.7470126266665247, -3.9731389180993544, -3.4399137581313877, -2.343139633443368, -1.4116200206679874, 2.99043130440515, -1.3994037960257701, -2.825845942929876, -0.5642551735112384, 0.7277831111608819, -3.652416388662386, -0.7515494142380232, -0.7879576846628815, -2.418821981116567, -0.6216872230288573, 2.757441187736365, 1.9461110332211096, 3.3049520980131035, 0.36141516602390666, 3.363724405406897, -0.12733740701598517, -3.972527605092748, 2.656012616308036, -0.29285469258394325, -1.128659937771073, 2.328847131083954, -4.842017765507072, -1.5768924873533843, -4.50908206730854, -0.9046014782842642, 1.6385613316450502, -4.270424968067948, -0.8538497991602485, 3.1149181622598334, -1.3539310485139184, 3.0757414306487583, 1.607788245517546, 2.433507970419341, -2.592893411736123, -4.71548151200229, 1.9995758801458807, -2.386085537678044, 0.18227703564375108, 2.6415995237089414, 3.0908775545658447, -0.6239156889920237, -1.3516720164891436, 3.360811205673347, 0.9477502954995094, -1.3875383483088677, 1.7109729721084905, -4.799842768854222, -1.3989136819136005, 1.9176887863187915, 0.948223834830098, 0.5074010328390752, -0.5963470155539294, -1.5257356415637071, -4.193428250532061, 0.43265056750537223, -4.947017323422195, 1.3880750411404241, -2.5628254657075313, 1.6531717346499208, 0.8383344003323927, 1.145614902297205, -3.5857844747607697, -3.2146263033377522, -0.0808139729475652, 1.8531340464041444, 2.3880437288659024, -4.645594409222349, 2.3038097372035207, -2.43115529397177, -4.067124831401456, -2.947112497232926, -3.019422888439246, -2.38862851037967, 0.3146036120104725, -0.9356129562429905, -3.720361264990176, -2.46723736886081, 0.8345930752763069, 1.821270295068219, -4.685824037436549, -4.908657632335221, 1.181556049093797, 1.9059878321755974, -4.9041330337192255, 0.3604018981880994, 2.629866962553489, 0.9923501175776162, -3.813981310396107, -1.1087371303325915, 2.4375876753978796, 0.05739944056666779, 0.6288349004237048, -2.238805686643766, 1.062816155399755, -4.379463304733345, 3.3315106925439313, 0.3226248580943256, -1.5290683765578703, -0.5194533769515672, 0.1419609795746215, -3.2181700664122035, -4.909181581051999, 2.279990259005432, -2.0618368477940483, -2.0873212946100743, -1.4667636015242174, 2.255019956204615, -4.5821616378513825, 3.2074727277295665, 2.235690252555722, 1.5672533189948368, 3.1235285554223076, 3.252172068294927, -1.9341915352931913, -4.261929798680735, 0.12413100434212865, 1.1739674483786775, 0.6277132342387199, 0.9878219661008449, 0.1844863228683824, 0.4499119662708271, -2.504202251373774, -4.506485720005489, -1.5969152786989786, -2.3579222883954016, 0.3267305664235396, 2.3746065257941433, 0.1561090258608333, 2.448476271509689, -3.2920772188309186, -4.7613989635146075, -3.940730352783787, 3.0197742480502274, -4.294590929558082, -1.2580764654789824, -2.1790419333510758, -2.320603423236255, -1.3339882230153517, -3.738775198518255, -2.811740277274315, -4.546037970795084, -4.414304868598208, -2.0864971393012572, -2.2151311841467716, -2.850779149671177, 1.803948326189217, -0.7984062632425051, -3.8734335791846353, -1.7771481952320953, 1.3962636005176483, -4.762236077769426, -2.3704408356392386, -3.8841162027168696, -4.204785741545649, 2.93313177591837, -2.9827314781619165, -1.8290851865243298, 1.7507733821224098, 2.2465741163560473, -4.726882512800174, -2.3613278265629774, 0.001378428429319456, 0.21010277370566488, -1.5055506486499226, -4.672576308828834, -3.773499513879237, -0.5995732335568649, -1.2438982895265958, -1.3278901745925413, -0.6508835608247994, -4.720387567844301, -4.515539451615244, 1.3294976730861503, 2.2761376682982046, -2.6505297392902794, 3.0175368260121296, 1.6762858562115541, 0.04321570442288092, -1.4397585735037106, -0.9823843471070859, 2.8534658930303554, -3.070470923505072, -2.5743187325129036, -2.677924338601055, 0.08374582986516721, -2.598134757244179, 3.0924419307257835, 1.6080094258521465, 1.4519467860328437, -3.867713802781248, -1.5761757608941065, -3.1722832990743415, -0.8755083518552009, 3.202868201417589, -3.452936280103116, 3.0227319301418802, 0.800701169434336, -0.3119019272929675, 1.7965336384754718, -1.962792534175699, -4.2613425648215, -2.7960752652322984, -0.9627237117088887, 0.9462114033890492, 2.8250729232340444, 2.3938495945570244, 1.6921601149141932, -3.4196469940069587, -3.4739702152015397, -1.5936742337954244, 3.4196410890347995, -3.8900135559381552, 1.3277458410105982, -1.7834812254702652, -1.6276969364816436, -1.2374711597023276, 1.4030322098089485, -2.733935422663614, -1.3923393890289892, -4.897085676339366, 1.215886602661162, -4.961821893251246, -1.5814079240120593, 2.332018532751767, -2.4367768220207777, 0.854425309817989, 1.3096006462689118, -3.3167819144680406, -3.597910891287655, -3.5162500215519255, -1.491675417785146, 3.2940835656576155, -1.871193653681968, 3.153416342594701, -4.58789000473671, 0.5414827102133497, 1.440891447016348, -4.0128254021960235, 0.6416364403520296, -1.7752459637421683, -0.3562680821833428, -0.18025225197129568, -0.8903027669354326, -1.404480025207309, -2.4904593786164044, -3.3520231809842613, 0.7213176330131033, 1.7437681516427253, -1.4512404299298711, 2.9917270335001778, -1.9067301862359858, -4.05834145217961, -2.9550324262691885, -2.660777283225775, 1.7611240156399175, 2.918162644171953, -2.196744702812137, 1.2827639643632134, 0.9608564712611853, 3.4160590605306993, -1.3213971258728585, -1.5448938775753756, -0.9927758878936173, -2.021709567140143, 0.9688898935777273, -2.7907244087654672, 3.1232016692185915, 1.6330144622294975, 2.712270333428746, 0.143428034213267, -4.430055096109379, -2.8637907184890135, 1.913794482032955, -4.298370664043068, 1.5412672705416623, -2.766018133587024, -1.136927531455186, -3.182955229815696, -3.1125725997899836, -0.05543526351466799, -3.1336471162842647, 2.54316962299068, 3.1956395174989503, -0.8772806334671754, 0.3515221033429956, 1.2573412517553617, 3.02557113997125, -0.56452657800153, -0.3908295418797083, -2.632689391163325, -1.0630635467963514, -1.6784724232625745, 1.2225436759347996, -4.594672705665981, 1.5045234806377392, 0.8926695650446961, 0.22968303594992445, -0.5316830025700234, -2.441487574829563, -0.6938552964042053, -4.6917622237028365, -3.279073366411763, -1.0572708962215747, 3.289105720888431, -3.7323039553370174, 0.3262208724882578, -2.545884262642619, 0.42817154319126605, -0.48922767762232766, -4.934199188391748, -1.7080744245916817, -3.401598365881811, -2.4330318289322057, -1.1668045893267043, 2.8858600820515576, -4.486365419431881, 0.7398118973876437, -4.016420413342304, 0.9587628612380374, -1.5255573709568266, 3.2843175942234275, 3.2907426143285647, 1.7286846501039266, -0.9667219402745157, 2.336368848626993, 1.145722272705017, -1.5079220590909128, 3.17083337642576, 2.2288883045380636, -3.707077187821062, -4.047659186296893, -1.0815480003268498, 0.46359532869152353, -4.835397086864196, 2.2949454115015557, -4.1870400168418005, -2.2795602173636, 1.3237263522331588, -4.445317699707658, -2.097963386988591, -2.2930193924950997, -3.9183784118088765, -2.8752115663063926, -2.202213606428527, 0.19456106151198416, -2.7237876609269973, -4.793228042527638, -0.9914652937571367, 0.32844436461462845, -0.5137041440645733, -1.2744665683629046, -1.5635461654313962, -4.181219209357219, -2.0568231572707547, -0.5734844014334488, 1.0455721784316143, -1.3980867703745576, -0.011056935290119085, -3.295531277666658, -0.1171487926104735, -3.981332701081373, 1.097935136234078, -4.056097440214547, -1.5868480446596003, 0.6529866084757696, -0.8815191402050386, -4.748703551515248, -2.543023517203911, -1.4537165984920928, -0.7853623992764396, -0.06871908746316979, -3.211526757992594, -3.88597593256394, -3.405163615227063, -3.3419793972968104, -1.9360598641776625, -1.632171166364171, -2.4915309953785245, -4.66863543032972, -3.678534089805031, -1.1836692422996706, -2.190378988458759, -2.651881350761237, 0.7664382870960411, -0.5911370101526714, -0.34204389632595067, -1.4698518440107584, -3.3380966893297033, -3.025337005837504, -2.8825602601786966, 2.342248210140328, 0.8659105462213619, 3.2364000514355205, -4.213537646263652, -0.6038061874550538, -0.339489488534662, 3.3873144882746704, -3.0522262333158525, -2.704512106042569, 0.6709374962971895, -1.9584288658570985, 1.0480400808654, -0.1369996657380934, -0.5671108942680139, 3.2003315396211587, -4.090970755804855, -3.469411406846934, -3.186176802512925, 1.7322875443039552, -3.547918059023388, 2.16875625668711, -2.421839555854495, -1.612126576949969, -0.39532762832771606, -0.5136807078918055, -2.03774659976372, 0.42486446618075213, 1.143914501344157, 0.6479355862286313, -0.5275328298453843, -0.7587934083275201, 0.6444367981352652, 0.8115960065175072, -0.14268905398175935, 2.3597282980317322, -1.5073874855252924, 0.606223587760498, -1.1795519792110478, -3.2730532155680043, -0.8739860096094887, 2.0099473703663, -1.8751423190856396, -5.000296965129465, -2.3277082854236433, -3.642582716286917, -3.0252065280046105, 0.24700026043816425, -4.37531997933504, 0.7925030734585796, -1.531259330882301, -3.6379599038233406, -4.536309637398225, 1.6446355364706742, 2.5097481132637727, -3.9327139442791723, 0.3571616674634006, 0.8189319090597396, -0.4104839819156343, -2.1197622546046815, 0.7375573276409266, -4.194500930454524, -2.4825834045899557, -4.842173964405865, 1.089062109282179, -2.116795721456801, -4.402483701635986, 3.243123014450928, -4.222477262040367, -2.361484065606287, 1.959085165995031, 0.07406495843351468, -3.5456773961990966, 0.9139615946539328, 1.7430213932578313, -1.5006430329651073, -2.738687606728179, 1.6803004637516752, -4.014069950132363, -0.9396689562285143, -0.749416432010972, 0.3575271116531429, -3.266227701826482, -3.9271110783733776, 1.489976425099397, -2.9826596694028815, -4.355621862045724, -0.2610374933915125, -0.07446192853102573, -4.785617723735172, 2.4710092698294135, -4.3447332133267995, -0.9199006388097315, 0.27044045785219595, 1.7380568602259459, 1.9667905450747902, -2.925046876168801, 3.0237442022728995, -4.694824019774473, -3.5801035596023962, -4.4957186148863615, 2.6384871235594174, 0.13635194790384908, 1.8946206120059292, 3.0796516760808874, 2.798048358193113, -1.9439549288621958, -0.11974730442636439, -3.67075260587643, 2.2665763487995703, -0.01918277493860554, 3.2217655280965705, -1.1262782797406805, 0.09613736797834527, -3.887330732465613, 1.0283400330851027, -3.717339400466189, -1.1094022898474196, -2.0292640816248078, -1.53874950750919, -1.6232508464265818, 1.9926982514746037, 0.7731290182455526, 2.354006672415011, -4.988120160756191, 1.8490819236302416, 3.0569982576401102, 2.3784692215530763, 3.1460188571389516, -1.323614130645952, -1.2427550922943316, 2.8265563665060665, 1.5529643694303923, 2.637269549446483, 1.3889327349716014, -4.606448632389715, -3.7953798972000623, 2.3342303871368504, -4.360709052326249, -0.014373302542924904, 3.142456054973337, -0.13657303379668395, 2.0430290558046593, -1.2129014534222438, -1.2943497641720856, -0.6890734397007465, -2.449586287278434, 2.7065383586896203, -4.616422458350438, -4.679423249860872, 1.1083123405043658, 0.3995576972526793, -4.853029562604169, 1.7689132661724587, -2.0037499881531526, -3.467494798079921, -4.359210595275736, 2.3942782737626294, -4.171343539590924, -1.7528510527308523, 0.4328651828432868, -3.04043312406288, -1.8264335604620134, 1.3533302316412374, 0.4543135758086638, -4.653912676245137]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 2\", \"marker\": {\"color\": \"rgb(44, 160, 44)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 2\", \"scene\": \"scene3\", \"showlegend\": false, \"text\": [\"1332_l_2_m-0_0.1-1_0.4-2_0.08-3_1.02\", \"1333_l_2_m-0_1.42-1_0.49-2_0.11-3_0.17\", \"1334_l_2_m-0_0.41-1_0.13-2_0.63-3_0.36\", \"1335_l_2_m-0_1.18-1_0.06-2_0.66-3_0.16\", \"1336_l_2_m-0_0.42-1_0.02-2_0.37-3_0.04\", \"1337_l_2_m-0_0.92-1_0.44-2_0.07-3_0.07\", \"1338_l_2_c_0_1_3-0_0.24-1_0.21-2_0.22-3_0.16\", \"1339_l_2_c_0_1_3-0_0.21-1_0.24-2_1.39-3_0.32\", \"1340_l_2_c_0_1_3-0_0.02-1_0.11-2_0.95-3_0.42\", \"1341_l_2_c_0_1_3-0_0.14-1_0.17-2_0.95-3_0.05\", \"1342_l_2_c_0_1_3-0_0.87-1_0.24-2_0.49-3_0.38\", \"1343_l_2_c_0_1_3-0_0.49-1_0.63-2_0.09-3_0.15\", \"1344_l_2_c_0_1_3-0_0.25-1_0.85-2_0.58-3_0.21\", \"1345_l_2_c_0_1_3-0_0.21-1_0.33-2_1.06-3_0.13\", \"1346_l_2_c_0_1_3-0_0.03-1_0.24-2_0.27-3_0.41\", \"1347_l_2_c_0_1_3-0_0.98-1_1.27-2_0.12-3_0.24\", \"1348_l_2_c_0_1_3-0_1.0-1_0.42-2_0.53-3_0.01\", \"1349_l_2_c_0_1_3-0_0.04-1_0.54-2_0.13-3_0.87\", \"1350_l_2_c_0_1_3-0_0.62-1_0.27-2_0.26-3_0.12\", \"1351_l_2_c_0_1_3-0_0.76-1_0.19-2_1.3-3_0.85\", \"1352_l_2_c_0_1_3-0_0.83-1_0.72-2_0.03-3_0.28\", \"1353_l_2_c_0_1_3-0_0.06-1_0.02-2_0.58-3_0.15\", \"1354_l_2_c_0_1_3-0_0.2-1_0.75-2_0.25-3_0.44\", \"1355_l_2_c_0_1_3-0_0.0-1_0.01-2_0.07-3_0.62\", \"1356_l_2_c_0_1_3-0_0.51-1_0.13-2_0.03-3_0.09\", \"1357_l_2_c_0_1_3-0_0.72-1_0.08-2_1.79-3_0.38\", \"1358_l_2_c_0_1_3-0_0.87-1_0.38-2_0.45-3_0.25\", \"1359_l_2_c_0_1_3-0_0.52-1_0.96-2_0.35-3_0.08\", \"1360_l_2_c_0_1_3-0_0.73-1_0.19-2_1.06-3_1.11\", \"1361_l_2_c_0_1_3-0_0.08-1_0.12-2_0.29-3_0.16\", \"1362_l_2_c_0_1_3-0_0.13-1_0.07-2_0.47-3_0.28\", \"1363_l_2_c_0_1_3-0_0.34-1_0.38-2_0.97-3_0.13\", \"1364_l_2_c_0_1_3-0_0.36-1_0.03-2_0.55-3_0.14\", \"1365_l_2_c_0_1_3-0_0.96-1_0.15-2_0.39-3_0.17\", \"1366_l_2_c_0_1_3-0_0.04-1_0.05-2_0.35-3_0.68\", \"1367_l_2_c_0_1_3-0_0.9-1_0.28-2_0.42-3_0.21\", \"1368_l_2_c_0_1_3-0_0.14-1_0.14-2_0.23-3_0.14\", \"1369_l_2_c_0_1_3-0_0.19-1_0.39-2_1.23-3_0.28\", \"1370_l_2_c_0_1_3-0_0.48-1_0.16-2_0.02-3_0.35\", \"1371_l_2_c_0_1_3-0_0.05-1_0.35-2_0.66-3_0.11\", \"1372_l_2_c_0_1_3-0_0.65-1_0.13-2_0.57-3_0.6\", \"1373_l_2_c_0_1_3-0_0.55-1_0.26-2_0.35-3_0.83\", \"1374_l_2_c_0_1_3-0_0.15-1_0.87-2_0.89-3_0.16\", \"1375_l_2_c_0_1_3-0_0.19-1_0.53-2_0.43-3_0.14\", \"1376_l_2_c_0_1_3-0_0.18-1_0.33-2_0.74-3_0.13\", \"1377_l_2_c_0_1_3-0_0.52-1_0.07-2_0.62-3_0.42\", \"1378_l_2_c_0_1_3-0_0.02-1_0.08-2_1.53-3_0.11\", \"1379_l_2_c_0_1_3-0_0.35-1_0.08-2_0.37-3_0.76\", \"1380_l_2_c_0_1_2-0_0.32-1_0.35-2_0.05-3_0.08\", \"1381_l_2_c_0_1_3-0_0.14-1_0.78-2_0.65-3_0.11\", \"1382_l_2_c_0_1_2-0_0.1-1_0.14-2_0.34-3_1.03\", \"1383_l_2_c_0_1_3-0_0.82-1_0.05-2_0.24-3_0.76\", \"1384_l_2_c_0_1_2-0_0.07-1_0.35-2_0.01-3_1.09\", \"1385_l_2_c_0_1_3-0_0.37-1_0.17-2_1.62-3_0.09\", \"1386_l_2_c_0_1_2-0_0.54-1_0.05-2_0.54-3_0.3\", \"1387_l_2_c_0_1_3-0_0.13-1_1.2-2_0.96-3_0.04\", \"1388_l_2_c_0_1_2-0_0.44-1_0.34-2_0.04-3_0.63\", \"1389_l_2_c_0_1_3-0_0.64-1_0.04-2_0.78-3_0.06\", \"1390_l_2_c_0_1_2-0_0.24-1_0.7-2_0.58-3_0.95\", \"1391_l_2_c_0_1_3-0_1.0-1_0.24-2_0.98-3_0.45\", \"1392_l_2_c_0_1_2-0_0.31-1_0.03-2_0.05-3_0.08\", \"1393_l_2_c_0_1_3-0_0.53-1_0.44-2_0.94-3_0.65\", \"1394_l_2_c_0_1_2-0_0.14-1_0.16-2_0.75-3_0.99\", \"1395_l_2_c_0_1_3-0_0.23-1_0.67-2_0.27-3_0.26\", \"1396_l_2_c_0_1_2-0_0.32-1_0.77-2_0.22-3_0.72\", \"1397_l_2_c_0_1_3-0_0.12-1_0.13-2_0.75-3_0.11\", \"1398_l_2_c_0_1_2-0_0.34-1_0.15-2_0.36-3_0.93\", \"1399_l_2_c_0_1_3-0_0.69-1_0.29-2_1.08-3_0.5\", \"1400_l_2_c_0_1_2-0_0.17-1_0.2-2_0.04-3_0.4\", \"1401_l_2_c_0_1_3-0_0.72-1_0.25-2_0.39-3_0.1\", \"1402_l_2_c_0_1_2-0_0.25-1_0.01-2_0.03-3_0.66\", \"1403_l_2_c_0_1_3-0_0.07-1_0.63-2_0.93-3_0.48\", \"1404_l_2_c_0_1_2-0_0.32-1_0.24-2_0.61-3_1.56\", \"1405_l_2_c_0_1_3-0_0.19-1_0.13-2_0.51-3_0.55\", \"1406_l_2_c_0_1_2-0_0.8-1_0.33-2_0.23-3_0.34\", \"1407_l_2_c_0_1_3-0_0.1-1_0.15-2_0.56-3_0.77\", \"1408_l_2_c_0_1_2-0_0.84-1_0.06-2_0.47-3_0.17\", \"1409_l_2_c_0_1_3-0_0.01-1_0.03-2_0.47-3_0.57\", \"1410_l_2_c_0_1_2-0_0.07-1_0.1-2_0.14-3_0.14\", \"1411_l_2_c_0_1_3-0_0.5-1_0.19-2_1.55-3_0.55\", \"1412_l_2_c_0_1_2-0_0.83-1_0.01-2_0.02-3_0.76\", \"1413_l_2_c_0_1_3-0_0.24-1_0.57-2_0.53-3_0.05\", \"1414_l_2_c_0_1_2-0_0.4-1_0.27-2_0.23-3_0.43\", \"1415_l_2_c_0_1_3-0_0.64-1_0.66-2_0.7-3_0.67\", \"1416_l_2_c_0_1_2-0_0.09-1_0.95-2_0.8-3_0.57\", \"1417_l_2_c_0_1_3-0_0.12-1_0.27-2_0.02-3_0.69\", \"1418_l_2_c_0_1_2-0_0.02-1_0.31-2_0.62-3_0.33\", \"1419_l_2_c_0_1_3-0_0.19-1_0.14-2_0.02-3_0.26\", \"1420_l_2_c_0_1_2-0_0.5-1_0.02-2_0.07-3_1.04\", \"1421_l_2_c_0_1_3-0_0.09-1_0.05-2_0.12-3_0.44\", \"1422_l_2_c_0_1_2-0_0.03-1_1.15-2_0.84-3_1.68\", \"1423_l_2_c_0_1_3-0_0.3-1_0.14-2_0.57-3_0.45\", \"1424_l_2_c_0_1_2-0_0.81-1_0.89-2_0.09-3_0.5\", \"1425_l_2_c_0_1_3-0_0.23-1_0.05-2_0.82-3_0.49\", \"1426_l_2_c_0_1_2-0_0.23-1_0.44-2_0.32-3_1.59\", \"1427_l_2_c_0_1_3-0_0.18-1_0.18-2_0.8-3_0.65\", \"1428_l_2_c_0_1_2-0_0.48-1_0.58-2_0.04-3_0.63\", \"1429_l_2_c_0_1_3-0_0.34-1_0.27-2_0.51-3_0.38\", \"1430_l_2_c_0_1_2-0_0.09-1_1.64-2_0.09-3_0.81\", \"1431_l_2_c_0_1_3-0_0.22-1_0.18-2_1.22-3_0.29\", \"1432_l_2_c_0_1_2-0_0.15-1_0.32-2_0.43-3_0.74\", \"1433_l_2_c_0_1_3-0_0.68-1_0.56-2_0.4-3_0.14\", \"1434_l_2_c_0_1_2-0_0.1-1_0.72-2_0.0-3_0.32\", \"1435_l_2_c_0_1_3-0_0.46-1_0.2-2_1.3-3_0.45\", \"1436_l_2_c_0_1_2-0_0.48-1_0.15-2_0.07-3_0.11\", \"1437_l_2_c_0_1_3-0_0.54-1_0.09-2_1.14-3_0.51\", \"1438_l_2_c_0_1_2-0_0.23-1_0.05-2_0.21-3_0.64\", \"1439_l_2_c_0_1_3-0_1.13-1_0.47-2_1.55-3_0.67\", \"1440_l_2_c_0_1_2-0_0.01-1_0.44-2_0.15-3_0.81\", \"1441_l_2_c_0_1_3-0_0.67-1_0.28-2_0.52-3_0.17\", \"1442_l_2_c_0_1_2-0_0.35-1_0.02-2_0.64-3_0.38\", \"1443_l_2_c_0_1_3-0_0.21-1_0.36-2_0.4-3_0.0\", \"1444_l_2_c_0_1_2-0_0.45-1_0.23-2_0.32-3_1.44\", \"1445_l_2_c_0_1_3-0_0.69-1_1.13-2_0.28-3_0.64\", \"1446_l_2_c_0_1_2-0_0.06-1_0.67-2_0.21-3_0.63\", \"1447_l_2_c_0_1_3-0_0.5-1_0.9-2_0.38-3_0.43\", \"1448_l_2_c_0_1_2-0_0.09-1_0.54-2_0.29-3_0.99\", \"1449_l_2_c_0_1_3-0_0.25-1_0.46-2_1.75-3_0.99\", \"1450_l_2_c_0_1_2-0_0.04-1_0.03-2_0.11-3_0.05\", \"1451_l_2_c_0_1_3-0_0.26-1_0.1-2_0.61-3_0.95\", \"1452_l_2_c_0_1_2-0_0.11-1_0.11-2_0.09-3_0.01\", \"1453_l_2_c_0_1_3-0_1.16-1_0.36-2_1.21-3_0.67\", \"1454_l_2_c_0_1_2-0_0.32-1_0.08-2_0.01-3_0.19\", \"1455_l_2_c_0_1_3-0_0.45-1_0.11-2_0.85-3_0.41\", \"1456_l_2_c_0_1_2-0_0.04-1_0.31-2_0.28-3_0.28\", \"1457_l_2_c_0_1_3-0_0.05-1_0.27-2_0.17-3_0.19\", \"1458_l_2_c_0_1_2-0_0.11-1_0.02-2_0.02-3_0.31\", \"1459_l_2_c_0_1_3-0_0.15-1_0.5-2_0.61-3_0.62\", \"1460_l_2_c_0_1_2-0_0.02-1_0.56-2_0.1-3_0.53\", \"1461_l_2_c_0_1_3-0_0.42-1_0.43-2_1.3-3_0.32\", \"1462_l_2_c_0_1_2-0_0.42-1_0.11-2_0.88-3_0.95\", \"1463_l_2_c_0_1_3-0_0.11-1_0.59-2_0.11-3_0.84\", \"1464_l_2_c_0_1_2-0_0.18-1_0.16-2_0.16-3_0.67\", \"1465_l_2_c_0_1_3-0_0.35-1_0.95-2_0.06-3_0.27\", \"1466_l_2_c_0_1_2-0_0.1-1_0.82-2_0.11-3_2.07\", \"1467_l_2_c_0_1_3-0_0.48-1_0.43-2_0.41-3_0.68\", \"1468_l_2_c_0_1_2-0_0.79-1_1.31-2_0.01-3_0.09\", \"1469_l_2_c_0_1_3-0_0.07-1_0.15-2_0.4-3_0.79\", \"1470_l_2_c_0_1_2-0_0.34-1_0.41-2_0.42-3_1.09\", \"1471_l_2_c_0_1_3-0_0.01-1_0.16-2_0.31-3_0.55\", \"1472_l_2_c_0_1_2-0_0.13-1_0.24-2_0.05-3_0.43\", \"1473_l_2_c_0_1_3-0_0.11-1_0.14-2_0.97-3_0.33\", \"1474_l_2_c_0_1_2-0_0.25-1_0.65-2_0.05-3_0.7\", \"1475_l_2_c_0_1_3-0_0.2-1_0.5-2_1.36-3_0.61\", \"1476_l_2_c_1_2_3-0_0.54-1_0.22-2_0.69-3_0.14\", \"1477_l_2_c_0_1_2-0_0.0-1_0.54-2_0.34-3_0.17\", \"1478_l_2_c_0_1_3-0_0.02-1_0.69-2_0.46-3_0.3\", \"1479_l_2_c_1_2_3-0_0.56-1_0.47-2_0.12-3_0.17\", \"1480_l_2_c_0_1_2-0_0.01-1_0.13-2_1.01-3_0.7\", \"1481_l_2_c_0_1_3-0_1.94-1_0.32-2_1.25-3_1.17\", \"1482_l_2_c_1_2_3-0_0.8-1_0.49-2_0.03-3_0.15\", \"1483_l_2_c_0_1_2-0_0.06-1_0.13-2_0.59-3_0.21\", \"1484_l_2_c_0_1_3-0_0.73-1_0.05-2_0.68-3_0.0\", \"1485_l_2_c_1_2_3-0_0.93-1_0.11-2_0.22-3_0.25\", \"1486_l_2_c_0_1_2-0_0.32-1_1.15-2_0.2-3_0.19\", \"1487_l_2_c_0_1_3-0_0.05-1_0.46-2_0.55-3_0.18\", \"1488_l_2_c_1_2_3-0_0.45-1_0.36-2_0.69-3_0.08\", \"1489_l_2_c_0_1_2-0_0.73-1_0.25-2_0.19-3_0.85\", \"1490_l_2_c_0_1_3-0_0.26-1_0.0-2_1.11-3_0.23\", \"1491_l_2_c_1_2_3-0_0.85-1_0.04-2_0.41-3_0.4\", \"1492_l_2_c_0_1_2-0_0.56-1_0.17-2_0.03-3_0.84\", \"1493_l_2_c_0_1_3-0_0.25-1_0.09-2_1.13-3_0.04\", \"1494_l_2_c_1_2_3-0_1.9-1_0.86-2_0.18-3_0.06\", \"1495_l_2_c_0_1_2-0_0.41-1_0.15-2_0.4-3_1.38\", \"1496_l_2_c_0_1_3-0_0.14-1_0.48-2_0.11-3_1.05\", \"1497_l_2_c_1_2_3-0_0.24-1_0.41-2_0.08-3_0.28\", \"1498_l_2_c_0_1_2-0_0.13-1_0.45-2_0.26-3_0.61\", \"1499_l_2_c_0_1_3-0_0.97-1_0.47-2_1.06-3_1.09\", \"1500_l_2_c_1_2_3-0_0.81-1_0.73-2_0.19-3_0.06\", \"1501_l_2_c_0_1_2-0_0.48-1_0.01-2_0.17-3_0.89\", \"1502_l_2_c_0_1_3-0_0.04-1_0.21-2_0.53-3_0.8\", \"1503_l_2_c_1_2_3-0_1.16-1_0.4-2_0.41-3_0.36\", \"1504_l_2_c_0_1_2-0_0.56-1_0.17-2_0.17-3_0.17\", \"1505_l_2_c_0_1_3-0_0.0-1_0.14-2_0.15-3_0.12\", \"1506_l_2_c_1_2_3-0_0.05-1_0.7-2_0.22-3_0.37\", \"1507_l_2_c_0_1_2-0_0.13-1_1.81-2_0.1-3_0.65\", \"1508_l_2_c_0_1_3-0_0.28-1_0.42-2_0.42-3_0.1\", \"1509_l_2_c_1_2_3-0_0.14-1_0.42-2_0.29-3_0.33\", \"1510_l_2_c_0_1_2-0_0.56-1_0.72-2_0.21-3_0.45\", \"1511_l_2_c_0_1_3-0_0.52-1_0.02-2_0.45-3_0.45\", \"1512_l_2_c_1_2_3-0_0.07-1_0.06-2_0.08-3_0.43\", \"1513_l_2_c_0_1_2-0_0.88-1_0.55-2_0.1-3_0.3\", \"1514_l_2_c_0_1_3-0_0.25-1_0.01-2_0.35-3_0.15\", \"1515_l_2_c_1_2_3-0_0.37-1_0.07-2_0.54-3_0.12\", \"1516_l_2_c_0_1_2-0_0.44-1_0.6-2_0.01-3_0.93\", \"1517_l_2_c_0_1_3-0_0.03-1_0.28-2_1.39-3_0.11\", \"1518_l_2_c_1_2_3-0_0.73-1_0.6-2_0.02-3_0.05\", \"1519_l_2_c_0_1_2-0_0.19-1_0.11-2_0.33-3_0.53\", \"1520_l_2_c_1_3-0_0.89-1_0.32-2_1.39-3_0.89\", \"1521_l_2_r-0_0.36-1_1.47-2_1.08-3_1.21\", \"1522_l_2_r-0_0.67-1_0.31-2_0.11-3_1.28\", \"1523_l_2_r-0_0.57-1_0.02-2_1.04-3_1.39\", \"1524_l_2_r-0_0.9-1_0.09-2_0.42-3_0.49\", \"1525_l_2_r-0_0.96-1_2.23-2_1.22-3_0.86\", \"1526_l_2_r-0_1.2-1_0.59-2_1.07-3_1.37\", \"1527_l_2_r-0_1.14-1_0.44-2_1.03-3_0.47\", \"1528_l_2_r-0_1.2-1_0.66-2_0.23-3_0.55\", \"1529_l_2_r-0_1.12-1_0.04-2_0.7-3_1.12\", \"1530_l_2_r-0_0.01-1_1.74-2_0.18-3_0.74\", \"1531_l_2_r-0_0.48-1_0.13-2_0.32-3_0.34\", \"1532_l_2_r-0_1.13-1_0.59-2_0.94-3_1.28\", \"1533_l_2_r-0_0.74-1_1.34-2_0.03-3_0.12\", \"1534_l_2_r-0_0.64-1_0.56-2_0.48-3_0.59\", \"1535_l_2_r-0_0.01-1_0.97-2_0.26-3_0.2\", \"1536_l_2_r-0_1.3-1_0.12-2_1.07-3_0.97\", \"1537_l_2_r-0_0.32-1_0.96-2_1.59-3_1.25\", \"1538_l_2_r-0_0.05-1_0.73-2_1.23-3_0.38\", \"1539_l_2_r-0_0.01-1_1.02-2_0.61-3_1.06\", \"1540_l_2_r-0_0.17-1_1.3-2_0.49-3_0.73\", \"1541_l_2_r-0_0.41-1_0.18-2_0.45-3_0.32\", \"1542_l_2_r-0_0.55-1_0.58-2_0.35-3_0.43\", \"1543_l_2_r-0_1.55-1_0.49-2_0.26-3_0.12\", \"1544_l_2_r-0_0.78-1_1.37-2_1.02-3_0.49\", \"1545_l_2_r-0_2.12-1_1.57-2_0.09-3_0.3\", \"1546_l_2_r-0_0.7-1_1.02-2_0.38-3_0.27\", \"1547_l_2_r-0_0.13-1_0.9-2_0.53-3_0.31\", \"1548_l_2_r-0_0.8-1_0.03-2_0.03-3_0.04\", \"1549_l_2_r-0_1.63-1_0.8-2_0.1-3_0.1\", \"1550_l_2_r-0_0.03-1_0.71-2_1.08-3_1.36\", \"1551_l_2_r-0_0.16-1_1.78-2_0.54-3_0.14\", \"1552_l_2_r-0_0.14-1_1.11-2_1.13-3_1.04\", \"1553_l_2_r-0_0.73-1_0.12-2_0.03-3_0.6\", \"1554_l_2_r-0_0.8-1_0.03-2_0.88-3_0.02\", \"1555_l_2_r-0_1.46-1_1.4-2_0.52-3_2.21\", \"1556_l_2_r-0_1.35-1_0.78-2_1.08-3_0.29\", \"1557_l_2_r-0_0.66-1_1.36-2_1.74-3_0.64\", \"1558_l_2_r-0_0.53-1_0.62-2_0.22-3_0.49\", \"1559_l_2_r-0_1.07-1_0.6-2_0.91-3_0.73\", \"1560_l_2_r-0_0.76-1_0.36-2_0.41-3_0.08\", \"1561_l_2_r-0_1.74-1_1.83-2_0.13-3_0.3\", \"1562_l_2_r-0_1.14-1_0.8-2_0.67-3_1.74\", \"1563_l_2_r-0_0.91-1_0.14-2_1.45-3_1.26\", \"1564_l_2_r-0_0.28-1_1.62-2_1.07-3_1.07\", \"1565_l_2_r-0_0.92-1_1.22-2_0.68-3_1.55\", \"1566_l_2_r-0_0.31-1_0.48-2_0.73-3_0.3\", \"1567_l_2_r-0_1.17-1_0.06-2_0.25-3_0.88\", \"1568_l_2_r-0_0.54-1_1.07-2_0.55-3_1.05\", \"1569_l_2_r-0_1.61-1_1.1-2_0.21-3_1.3\", \"1570_l_2_r-0_1.09-1_0.16-2_0.49-3_1.45\", \"1571_l_2_r-0_0.45-1_0.4-2_1.25-3_1.75\", \"1572_l_2_r-0_0.22-1_0.18-2_1.01-3_0.15\", \"1573_l_2_r-0_0.3-1_0.07-2_0.88-3_1.11\", \"1574_l_2_r-0_1.22-1_0.71-2_0.88-3_1.67\", \"1575_l_2_r-0_0.04-1_0.8-2_0.13-3_0.04\", \"1576_l_2_r-0_0.41-1_0.69-2_1.38-3_0.18\", \"1577_l_2_r-0_0.06-1_0.77-2_1.03-3_0.69\", \"1578_l_2_r-0_0.19-1_1.44-2_0.38-3_0.68\", \"1579_l_2_r-0_0.73-1_0.4-2_0.05-3_0.62\", \"1580_l_2_r-0_1.43-1_0.8-2_0.5-3_0.87\", \"1581_l_2_r-0_1.14-1_0.79-2_0.65-3_0.74\", \"1582_l_2_r-0_0.76-1_1.08-2_0.37-3_0.07\", \"1583_l_2_r-0_0.79-1_0.36-2_0.14-3_0.4\", \"1584_l_2_r-0_1.11-1_1.05-2_0.77-3_0.85\", \"1585_l_2_r-0_1.71-1_1.09-2_0.32-3_1.01\", \"1586_l_2_r-0_0.7-1_0.23-2_0.02-3_1.13\", \"1587_l_2_r-0_1.37-1_0.53-2_0.46-3_0.64\", \"1588_l_2_r-0_0.19-1_0.5-2_1.16-3_0.26\", \"1589_l_2_r-0_0.23-1_0.2-2_0.27-3_0.45\", \"1590_l_2_r-0_1.1-1_1.65-2_0.92-3_0.84\", \"1591_l_2_r-0_0.86-1_1.27-2_0.38-3_0.38\", \"1592_l_2_r-0_0.65-1_0.74-2_1.12-3_0.06\", \"1593_l_2_r-0_0.84-1_1.53-2_0.29-3_0.8\", \"1594_l_2_r-0_0.36-1_0.12-2_0.53-3_1.18\", \"1595_l_2_r-0_0.15-1_0.72-2_0.85-3_0.75\", \"1596_l_2_r-0_0.38-1_0.22-2_1.04-3_0.47\", \"1597_l_2_r-0_0.71-1_1.12-2_0.95-3_0.24\", \"1598_l_2_r-0_1.24-1_0.55-2_1.39-3_0.4\", \"1599_l_2_r-0_0.82-1_0.78-2_0.19-3_0.59\", \"1600_l_2_r-0_0.6-1_0.91-2_0.81-3_0.44\", \"1601_l_2_r-0_0.37-1_0.82-2_1.56-3_1.04\", \"1602_l_2_r-0_0.45-1_0.84-2_0.96-3_0.8\", \"1603_l_2_r-0_1.32-1_0.41-2_2.33-3_1.31\", \"1604_l_2_r-0_0.26-1_0.21-2_0.91-3_0.88\", \"1605_l_2_r-0_0.87-1_0.2-2_0.02-3_0.69\", \"1606_l_2_r-0_0.2-1_1.06-2_0.22-3_1.23\", \"1607_l_2_r-0_0.78-1_0.58-2_0.1-3_1.13\", \"1608_l_2_r-0_0.04-1_0.8-2_0.66-3_0.73\", \"1609_l_2_r-0_1.11-1_1.29-2_0.24-3_0.27\", \"1610_l_2_r-0_0.39-1_0.69-2_0.98-3_1.5\", \"1611_l_2_r-0_1.06-1_0.96-2_0.48-3_0.68\", \"1612_l_2_r-0_0.82-1_1.31-2_0.36-3_0.17\", \"1613_l_2_r-0_0.82-1_0.21-2_0.4-3_0.35\", \"1614_l_2_r-0_0.79-1_1.23-2_0.5-3_0.63\", \"1615_l_2_r-0_0.81-1_0.74-2_0.44-3_1.08\", \"1616_l_2_r-0_0.59-1_0.75-2_0.78-3_0.73\", \"1617_l_2_r-0_0.49-1_0.03-2_1.08-3_0.62\", \"1618_l_2_r-0_0.42-1_0.01-2_0.84-3_0.65\", \"1619_l_2_r-0_0.49-1_0.96-2_0.52-3_0.68\", \"1620_l_2_r-0_0.81-1_1.03-2_0.69-3_0.02\", \"1621_l_2_r-0_0.4-1_0.61-2_1.21-3_1.41\", \"1622_l_2_r-0_0.86-1_0.72-2_1.2-3_0.28\", \"1623_l_2_r-0_0.43-1_1.04-2_0.29-3_0.69\", \"1624_l_2_r-0_0.56-1_0.55-2_0.44-3_0.88\", \"1625_l_2_r-0_0.55-1_1.37-2_0.92-3_0.98\", \"1626_l_2_r-0_0.59-1_0.14-2_0.74-3_0.95\", \"1627_l_2_r-0_1.2-1_0.17-2_0.69-3_0.69\", \"1628_l_2_r-0_0.29-1_0.18-2_0.75-3_0.51\", \"1629_l_2_r-0_0.7-1_1.15-2_0.83-3_0.8\", \"1630_l_2_r-0_0.65-1_0.71-2_0.1-3_0.14\", \"1631_l_2_r-0_1.05-1_0.15-2_1.02-3_0.44\", \"1632_l_2_r-0_0.47-1_0.74-2_0.61-3_1.15\", \"1633_l_2_r-0_0.34-1_0.55-2_1.37-3_1.58\", \"1634_l_2_r-0_0.03-1_0.67-2_0.49-3_0.09\", \"1635_l_2_r-0_0.97-1_1.54-2_0.38-3_0.72\", \"1636_l_2_r-0_0.45-1_0.51-2_0.59-3_0.91\", \"1637_l_2_r-0_0.1-1_0.16-2_0.46-3_0.57\", \"1638_l_2_r-0_0.33-1_1.29-2_1.35-3_0.7\", \"1639_l_2_r-0_0.93-1_0.96-2_1.19-3_0.5\", \"1640_l_2_r-0_1.33-1_1.35-2_1.7-3_1.56\", \"1641_l_2_r-0_0.21-1_0.22-2_0.85-3_0.3\", \"1642_l_2_r-0_0.04-1_0.79-2_0.97-3_0.42\", \"1643_l_2_r-0_0.38-1_1.26-2_1.65-3_0.65\", \"1644_l_2_r-0_0.52-1_0.98-2_0.63-3_1.37\", \"1645_l_2_r-0_0.22-1_0.3-2_0.26-3_0.84\", \"1646_l_2_r-0_0.91-1_0.01-2_0.41-3_0.23\", \"1647_l_2_r-0_0.52-1_0.94-2_0.73-3_0.02\", \"1648_l_2_r-0_0.25-1_1.37-2_0.02-3_1.05\", \"1649_l_2_r-0_0.73-1_0.87-2_1.29-3_0.66\", \"1650_l_2_r-0_0.84-1_0.47-2_1.76-3_1.92\", \"1651_l_2_r-0_1.48-1_0.24-2_0.19-3_0.74\", \"1652_l_2_r-0_2.23-1_0.37-2_0.77-3_0.15\", \"1653_l_2_r-0_0.42-1_0.77-2_0.5-3_0.04\", \"1654_l_2_r-0_1.06-1_0.41-2_1.06-3_1.04\", \"1655_l_2_r-0_0.33-1_1.33-2_1.12-3_2.68\", \"1656_l_2_r-0_1.0-1_0.18-2_0.15-3_0.04\", \"1657_l_2_r-0_1.41-1_0.16-2_0.47-3_0.2\", \"1658_l_2_r-0_0.33-1_0.51-2_1.2-3_0.46\", \"1659_l_2_r-0_0.21-1_1.24-2_0.69-3_1.17\", \"1660_l_2_r-0_0.76-1_0.56-2_1.51-3_0.09\", \"1661_l_2_r-0_0.16-1_1.07-2_0.18-3_1.39\", \"1662_l_2_r-0_0.64-1_1.34-2_0.58-3_1.04\", \"1663_l_2_r-0_0.79-1_0.09-2_0.17-3_0.79\", \"1664_l_2_r-0_0.94-1_0.01-2_0.58-3_1.5\", \"1665_l_2_r-0_0.53-1_0.74-2_0.57-3_0.4\", \"1666_l_2_r-0_0.08-1_0.17-2_0.62-3_0.26\", \"1667_l_2_r-0_0.23-1_0.67-2_0.41-3_0.85\", \"1668_l_2_r-0_1.37-1_0.09-2_0.13-3_0.82\", \"1669_l_2_r-0_0.63-1_0.67-2_0.19-3_0.84\", \"1670_l_2_r-0_2.14-1_0.34-2_0.61-3_0.63\", \"1671_l_2_r-0_0.05-1_1.16-2_0.49-3_0.26\", \"1672_l_2_r-0_0.59-1_0.55-2_0.79-3_0.32\", \"1673_l_2_r-0_0.05-1_0.35-2_0.47-3_2.37\", \"1674_l_2_r-0_0.3-1_0.1-2_0.48-3_1.43\", \"1675_l_2_r-0_0.66-1_1.25-2_0.2-3_0.54\", \"1676_l_2_r-0_1.04-1_1.13-2_1.39-3_0.91\", \"1677_l_2_r-0_2.13-1_0.2-2_0.01-3_0.13\", \"1678_l_2_r-0_0.93-1_1.19-2_0.97-3_0.67\", \"1679_l_2_r-0_0.64-1_0.47-2_0.25-3_0.57\", \"1680_l_2_r-0_0.9-1_0.54-2_1.19-3_0.86\", \"1681_l_2_r-0_0.6-1_0.4-2_0.07-3_0.16\", \"1682_l_2_r-0_0.83-1_0.69-2_0.01-3_0.18\", \"1683_l_2_r-0_0.76-1_0.37-2_0.62-3_0.84\", \"1684_l_2_r-0_1.33-1_0.17-2_0.25-3_0.57\", \"1685_l_2_r-0_0.04-1_1.53-2_0.93-3_1.05\", \"1686_l_2_r-0_0.27-1_0.11-2_1.07-3_0.74\", \"1687_l_2_r-0_0.13-1_1.49-2_0.64-3_0.87\", \"1688_l_2_r-0_0.12-1_0.26-2_1.05-3_0.43\", \"1689_l_2_r-0_0.4-1_0.83-2_0.52-3_0.07\", \"1690_l_2_r-0_0.21-1_0.5-2_1.34-3_0.24\", \"1691_l_2_r-0_0.76-1_0.34-2_0.81-3_1.36\", \"1692_l_2_r-0_1.67-1_0.73-2_0.59-3_0.58\", \"1693_l_2_r-0_0.89-1_0.33-2_0.78-3_0.46\", \"1694_l_2_r-0_0.11-1_0.26-2_0.57-3_0.59\", \"1695_l_2_r-0_0.19-1_2.2-2_0.65-3_0.57\", \"1696_l_2_r-0_0.21-1_1.05-2_1.09-3_0.79\", \"1697_l_2_r-0_0.86-1_0.1-2_1.11-3_0.61\", \"1698_l_2_r-0_0.39-1_0.91-2_0.03-3_0.84\", \"1699_l_2_r-0_0.86-1_0.89-2_0.69-3_0.09\", \"1700_l_2_r-0_0.33-1_1.1-2_0.7-3_0.76\", \"1701_l_2_r-0_0.99-1_1.68-2_0.41-3_0.34\", \"1702_l_2_r-0_0.64-1_0.09-2_0.6-3_0.31\", \"1703_l_2_r-0_0.47-1_0.97-2_0.18-3_0.06\", \"1704_l_2_r-0_2.1-1_0.2-2_0.67-3_0.38\", \"1705_l_2_r-0_0.75-1_0.71-2_0.29-3_0.78\", \"1706_l_2_r-0_0.5-1_0.62-2_1.02-3_0.54\", \"1707_l_2_r-0_1.18-1_0.09-2_0.38-3_0.65\", \"1708_l_2_r-0_0.1-1_1.14-2_0.67-3_0.27\", \"1709_l_2_r-0_0.06-1_1.06-2_0.68-3_0.59\", \"1710_l_2_r-0_1.2-1_0.88-2_0.68-3_1.06\", \"1711_l_2_r-0_0.96-1_0.83-2_0.87-3_0.51\", \"1712_l_2_r-0_1.77-1_1.77-2_0.73-3_0.93\", \"1713_l_2_r-0_0.34-1_0.77-2_1.63-3_0.07\", \"1714_l_2_r-0_1.95-1_0.33-2_1.63-3_0.56\", \"1715_l_2_r-0_0.93-1_1.44-2_0.58-3_1.07\", \"1716_l_2_r-0_0.16-1_0.84-2_0.99-3_1.05\", \"1717_l_2_r-0_0.0-1_0.2-2_0.5-3_0.54\", \"1718_l_2_r-0_0.93-1_1.81-2_0.79-3_1.09\", \"1719_l_2_r-0_0.67-1_1.11-2_1.02-3_1.44\", \"1720_l_2_r-0_0.16-1_1.09-2_0.62-3_0.09\", \"1721_l_2_r-0_0.14-1_1.22-2_0.96-3_1.06\", \"1722_l_2_r-0_0.78-1_0.33-2_1.15-3_1.69\", \"1723_l_2_r-0_0.67-1_1.09-2_0.48-3_1.32\", \"1724_l_2_r-0_0.07-1_0.95-2_0.01-3_0.62\", \"1725_l_2_r-0_1.22-1_1.03-2_0.24-3_0.91\", \"1726_l_2_r-0_0.08-1_0.09-2_0.15-3_0.32\", \"1727_l_2_r-0_1.19-1_0.93-2_0.18-3_0.99\", \"1728_l_2_r-0_1.39-1_0.55-2_0.84-3_0.35\", \"1729_l_2_r-0_0.94-1_0.67-2_0.35-3_0.8\", \"1730_l_2_r-0_0.23-1_0.72-2_0.24-3_0.44\", \"1731_l_2_r-0_0.51-1_1.17-2_0.97-3_0.24\", \"1732_l_2_r-0_0.49-1_0.73-2_0.46-3_0.38\", \"1733_l_2_r-0_1.41-1_0.3-2_0.82-3_0.43\", \"1734_l_2_r-0_0.63-1_1.8-2_1.0-3_0.01\", \"1735_l_2_r-0_0.23-1_0.59-2_0.2-3_1.15\", \"1736_l_2_r-0_1.02-1_0.8-2_0.52-3_0.62\", \"1737_l_2_r-0_0.92-1_1.42-2_0.26-3_0.77\", \"1738_l_2_r-0_0.06-1_1.17-2_0.69-3_0.4\", \"1739_l_2_r-0_0.34-1_0.19-2_0.7-3_0.12\", \"1740_l_2_r-0_0.42-1_0.93-2_0.15-3_1.2\", \"1741_l_2_r-0_1.18-1_1.63-2_1.2-3_0.42\", \"1742_l_2_r-0_0.43-1_1.11-2_0.97-3_0.12\", \"1743_l_2_r-0_0.12-1_0.55-2_1.05-3_0.14\", \"1744_l_2_r-0_0.64-1_1.88-2_0.05-3_0.58\", \"1745_l_2_r-0_0.01-1_1.21-2_0.11-3_1.66\", \"1746_l_2_r-0_0.51-1_1.45-2_1.33-3_0.81\", \"1747_l_2_r-0_1.27-1_0.36-2_0.85-3_0.6\", \"1748_l_2_r-0_0.93-1_0.62-2_0.29-3_0.9\", \"1749_l_2_r-0_0.17-1_1.18-2_0.75-3_2.16\", \"1750_l_2_r-0_0.2-1_1.29-2_0.12-3_0.24\", \"1751_l_2_r-0_0.79-1_0.92-2_1.46-3_0.48\", \"1752_l_2_r-0_0.59-1_0.59-2_0.24-3_0.03\", \"1753_l_2_r-0_0.39-1_1.44-2_0.69-3_0.83\", \"1754_l_2_r-0_1.0-1_0.27-2_0.87-3_0.88\", \"1755_l_2_r-0_2.28-1_0.6-2_0.71-3_1.46\", \"1756_l_2_r-0_0.36-1_0.43-2_0.81-3_0.72\", \"1757_l_2_r-0_0.08-1_1.5-2_0.33-3_0.41\", \"1758_l_2_r-0_0.06-1_0.17-2_0.54-3_1.0\", \"1759_l_2_r-0_0.21-1_0.35-2_0.51-3_1.21\", \"1760_l_2_r-0_1.38-1_0.12-2_1.3-3_0.77\", \"1761_l_2_r-0_0.6-1_0.5-2_0.53-3_0.27\", \"1762_l_2_r-0_0.49-1_0.97-2_1.25-3_1.57\", \"1763_l_2_r-0_0.04-1_0.74-2_0.01-3_0.78\", \"1764_l_2_r-0_0.84-1_0.4-2_0.67-3_0.32\", \"1765_l_2_r-0_0.21-1_2.31-2_1.1-3_0.17\", \"1766_l_2_r-0_0.4-1_0.59-2_1.27-3_0.17\", \"1767_l_2_r-0_0.57-1_0.2-2_0.17-3_0.41\", \"1768_l_2_r-0_0.26-1_0.3-2_0.71-3_0.38\", \"1769_l_2_r-0_0.43-1_1.08-2_0.73-3_0.52\", \"1770_l_2_r-0_0.65-1_0.24-2_0.03-3_0.31\", \"1771_l_2_r-0_0.94-1_0.22-2_0.87-3_0.5\", \"1772_l_2_r-0_0.49-1_0.49-2_1.49-3_0.12\", \"1773_l_2_r-0_1.0-1_0.53-2_0.28-3_0.4\", \"1774_l_2_r-0_0.1-1_0.88-2_0.89-3_0.61\", \"1775_l_2_r-0_0.5-1_0.57-2_0.03-3_1.56\", \"1776_l_2_r-0_0.24-1_1.01-2_0.29-3_0.36\", \"1777_l_2_r-0_1.14-1_0.84-2_0.61-3_0.95\", \"1778_l_2_r-0_1.55-1_0.0-2_0.07-3_1.07\", \"1779_l_2_r-0_0.72-1_0.55-2_0.36-3_0.22\", \"1780_l_2_r-0_0.32-1_1.13-2_0.35-3_0.62\", \"1781_l_2_r-0_0.0-1_0.91-2_0.71-3_0.5\", \"1782_l_2_r-0_0.98-1_0.22-2_0.01-3_0.05\", \"1783_l_2_r-0_0.05-1_0.01-2_0.43-3_0.3\", \"1784_l_2_r-0_1.36-1_0.58-2_1.35-3_0.89\", \"1785_l_2_r-0_1.11-1_1.03-2_0.49-3_0.29\", \"1786_l_2_r-0_0.19-1_0.31-2_0.79-3_0.2\", \"1787_l_2_r-0_0.78-1_0.45-2_0.81-3_0.69\", \"1788_l_2_r-0_0.13-1_0.71-2_0.69-3_0.23\", \"1789_l_2_r-0_0.71-1_0.11-2_0.14-3_1.37\", \"1790_l_2_r-0_0.42-1_2.08-2_1.41-3_0.77\", \"1791_l_2_r-0_0.15-1_1.1-2_0.48-3_0.33\", \"1792_l_2_r-0_1.41-1_0.34-2_1.05-3_1.51\", \"1793_l_2_r-0_1.12-1_0.1-2_0.06-3_0.33\", \"1794_l_2_r-0_0.87-1_0.46-2_1.47-3_1.38\", \"1795_l_2_r-0_1.26-1_0.72-2_1.33-3_0.73\", \"1796_l_2_r-0_1.16-1_0.94-2_0.79-3_0.21\", \"1797_l_2_r-0_0.44-1_0.03-2_0.09-3_0.79\", \"1798_l_2_r-0_0.99-1_0.53-2_0.25-3_0.34\", \"1799_l_2_r-0_0.93-1_1.16-2_1.01-3_1.24\", \"1800_l_2_r-0_0.32-1_0.44-2_0.21-3_0.34\", \"1801_l_2_r-0_0.9-1_0.87-2_0.07-3_0.77\", \"1802_l_2_r-0_0.15-1_0.72-2_0.84-3_0.31\", \"1803_l_2_r-0_0.13-1_0.55-2_1.36-3_1.14\", \"1804_l_2_r-0_0.69-1_1.43-2_0.75-3_0.53\", \"1805_l_2_r-0_0.25-1_1.21-2_0.67-3_0.87\", \"1806_l_2_r-0_1.38-1_0.58-2_0.4-3_0.35\", \"1807_l_2_r-0_0.59-1_0.23-2_0.68-3_1.82\", \"1808_l_2_r-0_0.32-1_0.83-2_1.01-3_0.48\", \"1809_l_2_r-0_1.44-1_0.32-2_0.62-3_0.01\", \"1810_l_2_r-0_0.12-1_0.1-2_0.81-3_1.26\", \"1811_l_2_r-0_0.25-1_1.35-2_0.11-3_1.02\", \"1812_l_2_r-0_0.82-1_0.83-2_0.66-3_0.31\", \"1813_l_2_r-0_1.04-1_0.06-2_0.78-3_0.72\", \"1814_l_2_r-0_0.74-1_1.85-2_0.66-3_0.67\", \"1815_l_2_r-0_1.13-1_0.38-2_0.15-3_0.5\", \"1816_l_2_r-0_0.4-1_1.52-2_0.2-3_1.09\", \"1817_l_2_r-0_1.72-1_0.51-2_0.32-3_0.24\", \"1818_l_2_r-0_1.07-1_0.25-2_0.87-3_0.43\", \"1819_l_2_r-0_1.74-1_1.07-2_0.34-3_1.81\", \"1820_l_2_r-0_1.06-1_0.02-2_0.56-3_0.66\", \"1821_l_2_r-0_0.97-1_0.44-2_0.84-3_0.03\", \"1822_l_2_r-0_0.96-1_1.7-2_0.39-3_0.48\", \"1823_l_2_r-0_0.21-1_0.3-2_0.68-3_0.71\", \"1824_l_2_r-0_0.73-1_0.31-2_0.56-3_1.46\", \"1825_l_2_r-0_0.22-1_0.5-2_0.78-3_0.98\", \"1826_l_2_r-0_0.82-1_1.01-2_0.56-3_0.51\", \"1827_l_2_r-0_0.7-1_0.37-2_1.15-3_1.33\", \"1828_l_2_r-0_1.21-1_0.67-2_0.11-3_0.08\", \"1829_l_2_r-0_0.12-1_0.97-2_0.82-3_1.03\", \"1830_l_2_r-0_1.3-1_0.0-2_0.82-3_0.62\", \"1831_l_2_r-0_1.34-1_1.87-2_0.92-3_0.4\", \"1832_l_2_r-0_1.78-1_0.01-2_0.32-3_0.45\", \"1833_l_2_r-0_0.93-1_0.9-2_1.05-3_0.48\", \"1834_l_2_r-0_0.31-1_0.05-2_0.13-3_1.32\", \"1835_l_2_r-0_1.37-1_0.29-2_0.07-3_0.02\", \"1836_l_2_r-0_0.01-1_0.4-2_0.19-3_0.56\", \"1837_l_2_r-0_0.97-1_0.54-2_0.29-3_0.41\", \"1838_l_2_r-0_0.73-1_1.15-2_0.87-3_0.46\", \"1839_l_2_r-0_0.95-1_0.92-2_0.57-3_1.84\", \"1840_l_2_r-0_0.31-1_1.18-2_0.56-3_0.2\", \"1841_l_2_r-0_0.16-1_0.22-2_0.46-3_0.06\", \"1842_l_2_r-0_0.33-1_0.84-2_0.06-3_0.12\", \"1843_l_2_r-0_0.82-1_0.57-2_1.2-3_1.05\", \"1844_l_2_r-0_1.18-1_1.49-2_1.92-3_0.26\", \"1845_l_2_r-0_0.7-1_0.18-2_0.0-3_1.09\", \"1846_l_2_r-0_0.75-1_1.99-2_0.21-3_0.89\", \"1847_l_2_r-0_0.22-1_0.27-2_0.68-3_0.23\", \"1848_l_2_r-0_1.11-1_0.64-2_0.11-3_0.28\", \"1849_l_2_r-0_1.24-1_0.9-2_0.25-3_1.47\", \"1850_l_2_r-0_0.3-1_0.03-2_0.93-3_0.1\", \"1851_l_2_r-0_0.05-1_0.71-2_0.19-3_0.32\", \"1852_l_2_r-0_0.21-1_0.65-2_0.23-3_0.08\", \"1853_l_2_r-0_0.42-1_0.91-2_0.15-3_0.02\", \"1854_l_2_r-0_1.49-1_2.01-2_0.57-3_0.13\", \"1855_l_2_r-0_0.32-1_0.22-2_0.88-3_0.08\", \"1856_l_2_r-0_1.48-1_0.96-2_0.58-3_0.07\", \"1857_l_2_r-0_0.11-1_0.8-2_1.24-3_0.5\", \"1858_l_2_r-0_1.62-1_1.4-2_0.16-3_1.07\", \"1859_l_2_r-0_0.2-1_0.31-2_0.37-3_0.68\", \"1860_l_2_r-0_0.62-1_0.93-2_0.26-3_0.54\", \"1861_l_2_r-0_1.58-1_1.03-2_0.42-3_0.29\", \"1862_l_2_r-0_0.56-1_0.28-2_1.03-3_0.33\", \"1863_l_2_r-0_0.5-1_0.81-2_0.7-3_0.21\", \"1864_l_2_r-0_0.28-1_0.55-2_1.17-3_1.52\", \"1865_l_2_r-0_0.46-1_0.11-2_0.86-3_0.76\", \"1866_l_2_r-0_1.17-1_0.22-2_0.23-3_0.22\", \"1867_l_2_r-0_0.05-1_1.16-2_0.15-3_0.06\", \"1868_l_2_r-0_1.31-1_1.17-2_0.36-3_1.97\", \"1869_l_2_r-0_0.77-1_0.34-2_0.26-3_0.42\", \"1870_l_2_r-0_0.34-1_0.86-2_0.7-3_0.71\", \"1871_l_2_r-0_0.28-1_0.41-2_0.45-3_1.51\", \"1872_l_2_r-0_0.96-1_0.71-2_0.75-3_1.09\", \"1873_l_2_r-0_0.48-1_0.63-2_0.74-3_0.23\", \"1874_l_2_r-0_0.09-1_0.35-2_0.11-3_0.25\", \"1875_l_2_r-0_0.93-1_0.33-2_1.64-3_1.0\", \"1876_l_2_r-0_0.66-1_0.19-2_0.03-3_0.98\", \"1877_l_2_r-0_0.39-1_0.26-2_1.41-3_0.93\", \"1878_l_2_r-0_0.16-1_2.75-2_0.93-3_1.1\", \"1879_l_2_r-0_1.29-1_1.65-2_0.78-3_0.85\", \"1880_l_2_r-0_0.38-1_0.28-2_0.93-3_1.03\", \"1881_l_2_r-0_0.93-1_0.58-2_0.21-3_0.54\", \"1882_l_2_r-0_0.79-1_1.1-2_0.5-3_0.88\", \"1883_l_2_r-0_0.5-1_0.48-2_0.41-3_0.25\", \"1884_l_2_r-0_0.67-1_1.2-2_0.42-3_0.33\", \"1885_l_2_r-0_0.95-1_0.95-2_0.02-3_0.39\", \"1886_l_2_r-0_1.68-1_2.59-2_0.47-3_0.71\", \"1887_l_2_r-0_1.04-1_0.03-2_0.47-3_0.53\", \"1888_l_2_r-0_1.39-1_1.32-2_1.31-3_0.16\", \"1889_l_2_r-0_0.44-1_3.27-2_0.61-3_0.75\", \"1890_l_2_r-0_1.75-1_0.91-2_0.98-3_0.28\", \"1891_l_2_r-0_0.47-1_0.13-2_0.99-3_0.0\", \"1892_l_2_r-0_1.27-1_0.61-2_0.25-3_1.16\", \"1893_l_2_r-0_1.06-1_0.7-2_2.32-3_0.35\", \"1894_l_2_r-0_0.34-1_0.22-2_0.12-3_0.31\", \"1895_l_2_r-0_0.02-1_0.54-2_0.8-3_0.26\", \"1896_l_2_r-0_1.4-1_1.79-2_0.91-3_0.4\", \"1897_l_2_r-0_1.04-1_0.13-2_1.45-3_0.16\", \"1898_l_2_r-0_0.97-1_0.37-2_0.58-3_0.53\", \"1899_l_2_r-0_1.02-1_0.53-2_0.98-3_1.46\", \"1900_l_2_r-0_0.05-1_1.14-2_0.34-3_1.08\", \"1901_l_2_r-0_0.37-1_0.06-2_1.36-3_0.38\", \"1902_l_2_r-0_0.73-1_1.04-2_0.34-3_1.27\", \"1903_l_2_r-0_0.47-1_0.18-2_0.8-3_0.27\", \"1904_l_2_r-0_1.1-1_0.2-2_0.49-3_1.1\", \"1905_l_2_r-0_0.2-1_1.19-2_0.12-3_0.86\", \"1906_l_2_r-0_1.74-1_0.2-2_0.37-3_0.08\", \"1907_l_2_r-0_0.68-1_0.21-2_0.9-3_1.51\", \"1908_l_2_r-0_1.58-1_1.35-2_0.49-3_0.26\", \"1909_l_2_r-0_0.44-1_0.76-2_0.32-3_1.09\", \"1910_l_2_r-0_1.53-1_0.72-2_0.7-3_1.1\", \"1911_l_2_r-0_0.89-1_0.07-2_0.07-3_1.3\", \"1912_l_2_r-0_1.1-1_1.08-2_0.02-3_0.23\", \"1913_l_2_r-0_1.33-1_0.35-2_0.56-3_0.11\", \"1914_l_2_r-0_0.82-1_1.72-2_0.31-3_0.94\", \"1915_l_2_r-0_1.5-1_0.39-2_0.79-3_0.4\", \"1916_l_2_r-0_0.76-1_0.89-2_0.63-3_0.69\", \"1917_l_2_r-0_0.62-1_1.85-2_0.34-3_1.39\", \"1918_l_2_r-0_0.17-1_1.53-2_1.13-3_1.29\", \"1919_l_2_r-0_0.62-1_0.4-2_0.4-3_0.54\", \"1920_l_2_r-0_1.52-1_0.65-2_1.53-3_0.88\", \"1921_l_2_r-0_0.23-1_0.63-2_0.46-3_0.5\", \"1922_l_2_r-0_0.34-1_0.5-2_0.53-3_0.22\", \"1923_l_2_r-0_0.24-1_0.27-2_1.66-3_0.17\", \"1924_l_2_r-0_0.01-1_0.65-2_0.29-3_0.92\", \"1925_l_2_r-0_0.61-1_0.06-2_0.3-3_0.63\", \"1926_l_2_r-0_0.4-1_1.02-2_0.53-3_0.99\", \"1927_l_2_r-0_1.49-1_0.43-2_0.88-3_1.76\", \"1928_l_2_r-0_0.82-1_0.33-2_0.65-3_1.33\", \"1929_l_2_r-0_1.22-1_0.64-2_0.55-3_0.38\", \"1930_l_2_r-0_0.96-1_0.05-2_1.71-3_0.66\", \"1931_l_2_r-0_0.03-1_1.21-2_1.11-3_0.06\", \"1932_l_2_r-0_1.55-1_0.01-2_0.04-3_0.76\", \"1933_l_2_r-0_1.74-1_0.36-2_0.31-3_0.2\", \"1934_l_2_r-0_1.04-1_0.52-2_0.25-3_0.64\", \"1935_l_2_r-0_0.66-1_0.72-2_0.25-3_0.21\", \"1936_l_2_r-0_1.45-1_1.16-2_0.91-3_0.16\", \"1937_l_2_r-0_1.48-1_0.85-2_0.3-3_0.28\", \"1938_l_2_r-0_0.33-1_0.78-2_0.13-3_0.75\", \"1939_l_2_r-0_0.06-1_0.95-2_1.27-3_1.02\", \"1940_l_2_r-0_0.96-1_0.71-2_1.45-3_0.09\", \"1941_l_2_r-0_1.22-1_1.09-2_0.36-3_1.72\", \"1942_l_2_r-0_0.7-1_1.23-2_0.57-3_0.64\", \"1943_l_2_r-0_1.25-1_0.94-2_1.17-3_1.3\", \"1944_l_2_r-0_0.36-1_0.45-2_1.15-3_0.29\", \"1945_l_2_r-0_0.04-1_0.35-2_0.33-3_0.32\", \"1946_l_2_r-0_0.18-1_0.06-2_0.22-3_0.02\", \"1947_l_2_r-0_0.46-1_0.59-2_1.4-3_0.2\", \"1948_l_2_r-0_1.19-1_2.12-2_0.1-3_1.31\", \"1949_l_2_r-0_0.17-1_0.91-2_1.38-3_0.99\", \"1950_l_2_r-0_0.7-1_1.0-2_1.11-3_0.6\", \"1951_l_2_r-0_1.45-1_0.88-2_0.08-3_0.09\", \"1952_l_2_r-0_0.04-1_0.55-2_0.53-3_0.43\", \"1953_l_2_r-0_0.72-1_1.17-2_0.14-3_0.41\", \"1954_l_2_r-0_0.88-1_0.55-2_0.12-3_0.54\", \"1955_l_2_r-0_0.63-1_0.95-2_1.04-3_0.74\", \"1956_l_2_r-0_0.01-1_1.24-2_0.63-3_0.68\", \"1957_l_2_r-0_1.0-1_0.41-2_0.75-3_1.14\", \"1958_l_2_r-0_0.71-1_0.06-2_1.21-3_2.07\", \"1959_l_2_r-0_0.54-1_0.69-2_1.14-3_0.54\", \"1960_l_2_r-0_0.36-1_0.5-2_0.1-3_0.77\", \"1961_l_2_r-0_0.75-1_0.25-2_0.26-3_0.57\", \"1962_l_2_r-0_1.74-1_0.01-2_1.2-3_0.82\", \"1963_l_2_r-0_0.6-1_0.24-2_0.9-3_0.09\", \"1964_l_2_r-0_0.98-1_0.29-2_0.71-3_0.22\", \"1965_l_2_r-0_1.4-1_0.55-2_1.05-3_0.65\", \"1966_l_2_r-0_0.64-1_0.52-2_0.51-3_0.54\", \"1967_l_2_r-0_0.86-1_0.79-2_0.9-3_0.38\", \"1968_l_2_r-0_0.5-1_0.05-2_0.83-3_0.65\", \"1969_l_2_r-0_0.95-1_1.67-2_0.39-3_0.46\", \"1970_l_2_r-0_1.33-1_0.83-2_0.48-3_1.1\", \"1971_l_2_r-0_0.3-1_0.61-2_0.43-3_0.99\", \"1972_l_2_r-0_1.11-1_0.99-2_0.32-3_0.12\", \"1973_l_2_r-0_0.83-1_0.08-2_0.62-3_1.17\", \"1974_l_2_r-0_0.38-1_1.29-2_0.72-3_0.8\", \"1975_l_2_r-0_0.13-1_0.08-2_0.09-3_0.45\", \"1976_l_2_r-0_0.55-1_1.13-2_1.14-3_0.57\", \"1977_l_2_r-0_0.23-1_0.29-2_0.27-3_0.31\", \"1978_l_2_r-0_0.24-1_0.69-2_0.76-3_1.13\", \"1979_l_2_r-0_1.21-1_0.54-2_0.73-3_0.6\", \"1980_l_2_r-0_0.26-1_0.23-2_1.13-3_0.69\", \"1981_l_2_r-0_0.8-1_0.26-2_0.43-3_0.27\", \"1982_l_2_r-0_0.53-1_1.22-2_1.5-3_0.4\", \"1983_l_2_r-0_1.23-1_0.72-2_0.36-3_0.9\", \"1984_l_2_r-0_0.15-1_0.19-2_1.06-3_0.54\", \"1985_l_2_r-0_0.64-1_0.33-2_0.76-3_0.3\", \"1986_l_2_r-0_0.71-1_0.26-2_0.69-3_1.14\", \"1987_l_2_r-0_0.64-1_1.37-2_1.49-3_0.06\", \"1988_l_2_r-0_0.34-1_0.5-2_0.99-3_0.45\", \"1989_l_2_r-0_0.15-1_0.0-2_0.3-3_0.36\", \"1990_l_2_r-0_1.73-1_0.5-2_0.8-3_0.52\", \"1991_l_2_r-0_0.53-1_2.59-2_0.33-3_0.15\", \"1992_l_2_r-0_0.13-1_0.02-2_1.61-3_0.92\", \"1993_l_2_r-0_0.15-1_0.63-2_0.49-3_0.6\", \"1994_l_2_r-0_0.15-1_1.81-2_0.43-3_0.32\", \"1995_l_2_r-0_0.05-1_0.07-2_0.44-3_0.01\", \"1996_l_2_r-0_0.4-1_0.18-2_1.16-3_0.14\", \"1997_l_2_r-0_1.62-1_0.63-2_0.73-3_0.8\"], \"type\": \"scatter3d\", \"x\": [0.8682430584440669, -0.11007966815723202, -1.379933906286722, -0.661232715698471, 1.016262107775336, -0.07282074021437546, 1.8688013289349494, 1.3881106746854825, 1.118972374714718, 1.1801169642483922, 0.4867346618458478, 1.6872938514574818, 0.752900995832905, 1.0649844107302777, 0.8500745670405077, 2.2915617184235133, 0.5262937291315501, 1.356387759944818, 0.2550738596726869, 1.5743316305327952, 0.0285664323236956, 1.0395076069279539, 1.8165785303076536, 0.30396075481840434, 0.851847309589512, 1.7887640542246, 2.3327358830518037, 1.8614277051381225, 2.2216822113742176, 1.5327023820824752, 2.4983628742833286, 0.9764436826108193, 1.571629733399953, 1.3089503731200227, 0.345784778921702, 0.42414460337207627, 0.48601242902330155, 1.2314209885615357, 1.14540549371265, 2.3713509503210295, 0.7159237252404078, 1.7451760214472087, 1.8195173249387446, 0.43141591045375594, 1.425455585058532, 0.8958616588793505, 1.5298007325920122, 0.985159102457577, -0.04634419665163603, 0.6484103244305419, -0.3390873432856263, 0.23531248790393544, -0.009005157421154264, 1.8646263483035832, 1.307878997337105, 0.9640926660531081, -0.04230402761451657, 0.7758787231835294, 1.5567747702166832, 2.4289117878018303, -0.06389283878006924, 1.0649362744131325, 1.1204159953470736, 0.2712439457477923, -0.2461712646481884, 0.7496288142934556, 0.36066782174887824, 1.923371385039064, -0.03933792065108177, 2.3942756938396927, -0.028006013362797066, 0.932894423331679, -0.6069145836011052, 2.5067240265617885, 1.274196782436241, 2.246334614580655, -0.4728367657168804, 0.8883416667880311, 0.27771322246875985, 1.896868989225833, -0.7623689979568573, 1.6222575511697377, 1.4129228967479583, 0.7723079780599302, -0.7985225725673499, 2.174970539353901, -0.6237814142007827, 1.2835866997356553, -0.07893278223653999, 0.4403587575705853, -0.8431682572674883, 0.569206226849124, -0.10123134558722513, 0.9796847552020014, 1.9261740685229447, 2.0604800186821426, 1.2209783990860632, 1.0509090926463462, -0.09433284865225966, 1.9751919366924144, -0.4321453572544667, 1.26160697267133, -0.004792897130031504, 1.3001673649744308, -0.06971229847280935, 1.1355269975721, -0.21317307244764927, 1.5930348885563745, 0.15182256161764207, 0.5421727011401147, 1.087584291380736, 0.39586744799588747, 0.35649773823864794, 0.28432143887893657, -0.2074029308847074, 2.0205541243350313, -0.2938684311947217, 1.7715236130457712, -0.7578195207836089, 2.017734353687781, 1.262562753901231, 1.2100420058671508, 1.1950592809772655, 0.8595963274381994, 2.1281657206644318, 0.17414323667228948, -0.019657962016457642, 0.9319382777904381, 0.41062362899189486, 1.6104248041925397, -0.8796914318939109, 0.11019233459658506, -0.15815797094579498, 0.06155062428594682, 1.1198895236628374, 1.3969577675724834, 1.4641783142028906, 0.4024396894425829, -0.8098367675163207, 0.3118797104821637, -0.08782405384007763, 0.9655259973187116, 1.871809139828521, 1.5882916109971101, 0.851542925604197, -0.3399473479307282, 1.1066523172852634, 1.5385911338138945, -1.0072172361651148, 1.9196093406895245, 0.6796272838537366, -0.6792564654804649, 1.107243947012971, 1.915583510978796, -0.19911339142171958, 0.887186611606755, -0.6858319029284432, 1.3387723202446142, 1.1056212095739555, 1.5081554232440535, 0.9756105919880517, 1.7751322203645188, 1.5558290550316194, -0.4024227857732059, 0.11221294958666184, -0.08109289209186565, 1.4128316831825196, 1.5791897813717257, -0.18902435664853412, 1.9396721590351973, 0.5276957681143339, 0.626153543729753, -0.16809469966836788, 1.2261337896814148, 1.093704113881091, -0.09692184329013731, 0.47151504724372795, 0.6815683803946708, 0.29454240009350185, 0.4488373685573045, 1.9367758251827731, 0.9337078843625924, 1.8579170238782863, -0.5370353134992825, -0.011676223830000998, 1.4359096868109542, 0.5803646531805688, -0.32922760207071655, 1.3852990825945297, 1.0760752454230573, 0.1099077856413192, 1.2425668537516952, 0.4223259882928513, 1.597632719841339, 1.3923753433178647, 1.8010817541582362, 0.9501688235041001, 1.5329047263590483, 0.18451497415562146, 1.1317424667713032, 0.9366666155522133, 0.033813588840237996, 0.47796252024432007, 0.26464010360285584, 1.0660129992769365, 2.107795953037254, 1.2320170300774853, 2.0778402641389215, 1.5234377585305579, 0.45222588442652223, 0.34998542702801183, 1.9791651666032557, 1.1422259958655994, 3.0338691377390377, 0.6681343220874172, 2.3474902697309292, 0.7566845721484609, 0.10198927884523723, 1.5350283525520756, 1.441009770235956, 1.3948687095126877, 0.03288925352513383, 1.3815382564441652, 0.5223925977379833, 1.076674425558198, 1.7403664856524952, 0.35801383709224266, 1.1491370621434578, 2.089142473388527, 0.7403516147616962, 0.7773779627708468, 1.4494744604758634, 1.244228896734336, 0.6768079052292617, 1.4744386787116248, 0.4826995423177409, 1.4762571793572146, 1.3791314881538437, 0.4905903969510035, 2.3087985919658527, 1.011056148832552, 0.8784446069471505, 0.8797107100632928, 0.706318640631675, 1.3844867438408974, 1.854211640646153, 0.5251596292418141, 1.434705182657245, 0.49676153287736147, 1.548815521890254, 0.3672952701530334, 1.4546497459844487, 1.016840186775993, 1.913400656530228, 1.6819526012225832, 2.0075496374916693, 1.4388445663294205, 0.2718362224774239, 0.9170352934824033, 0.37911006312822204, 1.116562720448858, 0.7576748770801318, 1.0222433299510907, 0.8528665823521369, 1.4308166428093139, 1.5740655909154455, 2.325637897682948, 0.18981249210481876, 0.8148549267843586, 2.394318761289697, 0.9568198642565324, 2.3346555119067114, 1.101886368067278, 0.018542656138911928, 0.22257870419142023, 0.10099613214549508, 0.6604836190169558, 1.5653411321299853, 0.9766349768408291, 0.4809096925496502, 1.4990280734467865, 0.3965145079277883, 0.4951003951427071, 0.4449560938810063, 0.7779558786310458, 1.8255181516929548, 0.9497838786369451, 0.515456153676286, 1.3348433755761242, 1.213412778150028, 1.597651157297305, 0.2915832382758633, 0.4445377869277075, 0.9167530915536526, 1.0902524314765931, 1.1432248688109254, 1.0816031916755056, 1.2456299859539515, 0.5601143558437098, 2.6133918633166724, 1.352310083051888, 1.3744247778000172, 0.6302663917578731, 0.3830998303892761, 1.3667052948139276, 0.6422914409272328, 2.3032268034341463, 1.19401305062593, 1.8009110019944252, 2.3155555836161277, 1.2365153117788832, 1.6476812254165754, 0.6283595851291952, 0.2552026496301185, 0.41064976929389896, 0.7268816923164563, 0.024619382901874265, 1.542929849367618, 1.762032144359695, 0.192101788055687, 0.7723654575662309, 0.5015861630917486, 1.1824017191939544, 1.1197888177200692, 0.27164210139862066, 0.4742217145999893, 1.2002040015410074, 0.690543347199801, 1.752492195294224, 0.1768259112242414, 1.600268797446597, 0.41082281848204705, 1.0322697414920485, 1.0906094266599617, 0.6734564235256324, 2.3509620654689574, 0.1402913084696159, 0.1918076597883135, 0.7548440865757455, 0.48517616031469823, 1.5182352496555707, 1.3087913525036718, 0.481056186795522, 0.957448546337742, 1.5698654472662839, 1.5101474104607562, 1.2990273840494924, 0.24914136393167663, 1.2600529166413184, 0.8117538382209315, 2.0160466509766124, 1.7580162605976226, 0.8614948254567081, 1.5170758398093938, 1.0655058209469894, 1.2731449068597038, 1.0488489979767153, 2.109444137780555, 1.3428966452303592, 1.4016661020712982, 0.9627974672750934, 0.7838304682042835, 1.0807787591296165, 0.6493165486140386, 1.2337545407731707, 1.1102409373831454, 0.02721684825556725, 1.2380259758509944, 1.3173925483440836, 2.035302636876246, 1.6617193689477612, 1.4573182074780373, 0.7630904521756388, 0.28610971117799244, 1.863774315695541, 0.3761178383383912, 1.5891785776453755, 1.1241471110758858, 0.6800649223077289, 0.873177935800119, 1.9201690415267354, 1.9663773667967799, 1.6541227608163376, 0.584193312082596, 0.9867987377417903, 0.4989752268168177, 1.2427623880191474, 1.0179068958143889, 0.6200878227890324, 0.9647057091471862, 1.6725208112635825, 0.6559730257755758, 2.0103863823272308, 0.7945751874813064, 1.6062460929781224, 1.4866307668893761, 0.8403142001485658, 0.7813634429098686, 1.0315303921094794, 0.9655255310520267, 1.3825245534623247, 0.8790144484835476, 0.9955895703068822, 1.2464450167609353, 1.5061955737403758, 1.134053826052241, 1.8745076979572866, 1.3414003894606272, 0.45456711794576243, 2.154417241894406, 0.9657833470727218, 1.0537581082890868, 1.9728060860847665, 0.11327603575484779, 1.3312601005321683, 0.8465744272097439, 0.2895179741222511, 1.0922969239474647, 0.12430221137837616, 1.8358499698122204, 1.6202586206612368, 1.9088840962872813, 1.0529501451997845, 1.929617704610453, 1.664060402807055, 1.6768322858978273, 0.5377540254503652, 0.513178107589641, 2.232484574024231, 1.4761208962670678, 1.2539746308348034, 0.8248744123947869, 0.845507243077721, 1.0952847333836129, 1.4149229097878313, 0.1671360143140228, 0.7101538596844604, 0.7260036647076454, 2.0905390046255325, 0.8669042245830713, 1.658021402271751, 0.27897937063493883, 1.1154959069388837, 0.033915490186119834, 0.7200461139734136, 1.8775025214789687, 0.34953220310212096, 1.853441371787493, 1.3875794535066739, 1.1671901776273628, 1.2297613256111162, 0.43062516392782324, 1.3531943992392566, 0.49336321231310454, 0.7904340898001357, 0.8144832610515184, 0.6927845670728496, 0.14400473184510099, 2.072109030176752, 0.47823642986239356, 1.1569489712469, 0.057706774667191096, 1.466885289179574, 1.857997671730863, 1.6542245127399156, 0.08887575379061874, 1.137528874445226, 2.0480918044778558, 0.20617204216661122, 0.8859085898026912, 1.617229147456893, 2.072170576206277, 1.4419805341615493, 0.6675376706433461, 1.07113950888273, 0.9034118360061312, 1.704720624728275, 1.7588998513089118, 2.2849910489782923, 0.33913822682670414, 1.4522453807639952, 1.7061580710343494, 2.3484970509678598, 0.14690198021440548, 0.7190069701975544, 1.375721130187648, 0.9661317252619236, 0.3950327355858223, 0.563486841234139, 2.127144707038899, 1.3464862255479986, 1.8102965948271832, 0.5649137659264913, 0.8974540324920248, 0.5590848418033323, 1.1547139911128483, 0.11166762826251464, 0.8207212986709933, 0.8228152776913505, 0.9205503733530795, 1.055534117183849, 1.4819990314172453, 0.38475217470114786, 1.324330609557061, 0.2214357572163892, 0.29371615460014777, 1.3010669205441516, 1.2734284734066363, 1.888822343035369, 0.7215362148907978, 0.06053971418466597, 1.2030741796497728, 2.4086024426651313, 1.4047105936292064, 1.6248365800675821, 0.7631179858899296, 2.418159402257749, 0.5298251334402848, 1.9562510687810803, 1.651811173669771, 0.5563993943440924, 0.15030141293902732, 0.568894093148522, 0.875452492004306, 1.917934096318778, 1.2789476927351933, 0.15648179348937918, 1.1340540967705999, 0.46807673319852194, 0.42349136386551045, 1.0272838525238113, 0.766766317612056, 1.7134512370509591, 0.8796651667491944, 0.2268094951183256, 0.16150359537706604, 0.49252376566171074, 1.5267977760159779, 0.6990437741748493, 0.44517688205590233, 0.7520772758204992, 0.7503229066808722, 0.10920676804367846, 1.9517552408542072, 0.044210378540948336, 2.2305099464840055, 1.7704240420241892, 1.1112059559462661, 1.014241521830828, 1.0042821620961369, 0.5009653764298574, 0.4057326441352819, 0.42029814820150524, 0.6125381346484892, 0.4704093314639388, 1.8640669374236003, 1.3091714460592998, 0.6739609752403057, 1.8378839778741107, 2.2246898721539208, 0.25459938612532784, 2.5142414434865095, 1.5711876288505122, 1.5701625661554428, 1.0118769342261718, 1.8347584777113866, 1.0293617325448092, 1.2532572518280973, 2.8235512608764517, 1.6609483299761951, 1.5812536198898564, 0.7959669286848492, 0.49028083944850076, 0.12473924664252267, 0.3706471145956599, 1.9277424255399707, 1.1952440978121959, 0.31922081637332067, 0.7032830579996212, 0.0671649748276405, 0.017793026515532717, 0.5589184768487798, 0.31172931407217863, 1.8859186896837246, 0.6620438904644654, 0.3384422949573852, 1.1318047575250458, 0.40435187954124585, 2.930119162911444, 0.47707868592070923, 1.4377992753949242, 1.7553623353823942, 1.262960783696423, 1.7512845731013047, 1.7356776652407795, 1.7241932089750902, 1.0696776637934824, 1.5896645946996406, 1.7143796395041302, 1.1085376518600913, 0.03945992136073573, 0.3321987505607522, 1.3862990143901728, 0.2537342457771061, 1.450543194831588, 0.43871974239766154, 0.273005419604198, 1.2747203072395177, 1.8529059331249935, 0.5574035764526994, 0.5661971633331611, 1.173689831230315, 1.1462798225297077, 0.32575797126727757, 0.22255013287573555, 1.4048403838492385, 1.058879288031356, 1.7054068939125335, 1.1146955480962093, 0.08194437132536381, 2.458477606956451, 0.14304451862700718, 1.4342564469417982, 1.038605874747655, 1.3682151384331693, 1.72439593320131, 3.4467781694041166, 1.1355883485033533, 0.8993389435123769, 0.7525829283324821, 1.196852286968343, 0.8998551170250428, 0.8912277059213144, 1.0502279128968028, 0.5059406810409477, 0.9031523160287539, 2.131133995877346, 1.4834134372659682, 0.4796288083549366, 0.8803019465135334, 0.3166512207398954, 1.0511686457948848, 1.738681106907776, 0.3758992851081526, 2.417499010290528, 1.345840916124854, 0.758619971670437, 0.7317312273677676, 1.1278166537856316, 0.43216345734565953, 1.8495063267923708, 0.35844284641607993, 1.0627015258864982, 0.7574319858717015, 1.1300230806626366, 1.785142255413862, 1.254842538755888, 0.9434120113087303, 1.626758922307178, 0.6331961634408884, 1.611552771872837, 0.48697342509656205, 0.7506362970127247, 0.4398654754783128, 1.156721944664663, 0.7276617684103703], \"y\": [0.07910445656561182, -0.827837950949108, 0.6276287300820533, -1.9126339721144476, 0.36856773766133855, 0.2596843660652266, -0.21692754510197132, -1.429202966346023, -1.1467771676821832, -0.9499617572309683, -1.1231352666547878, -0.09122983982345079, -0.5799911122221696, -1.4184147156165796, -0.27147148932946863, -0.1241107811643839, -0.6710107616018839, -0.1341977037058143, -0.9258696115616285, -1.300844497739116, -0.8044406163519908, -0.5805497741411056, -0.9607654813209665, -0.06772760838158987, -0.03059332428822248, -1.9518649013398615, -0.4541064208307004, -1.0031402745380373, -1.0628074265337946, -1.6735096634117617, -0.6967020065487554, -0.9733083963079427, -1.356311217963288, -0.39399147922971633, -1.199056856230298, -1.8099710158321565, -0.2308837831062226, -1.4973544003673955, -0.02319385378701555, -1.5353090389513075, -1.0813517021971926, -0.348699384934252, -0.9147562767012729, -1.0594853101363382, -0.7365628581895629, -0.6490102191163174, -1.8337829063235036, -1.2016113503733141, -1.2275263845867386, -0.8774942321364873, -2.28934230458981, -0.5423609354627235, -1.0546218737719242, -1.6216203400475062, 0.5430710279279634, -1.9423482072527523, -0.24334726924813455, -1.0448911801417051, 0.5809081040391366, -0.9791196981367996, -0.25469061659259296, -0.937313854460325, 0.7454171308558182, -1.24682961932107, 0.219239346811279, -1.178927825937736, 0.43945469237121904, -1.0801769476989402, -1.1068671572630613, -0.3865587473668338, -0.9908070120117711, -2.165208440166566, -1.6475476126401352, -2.2961043499377616, 0.22883227939988604, -0.5617127492498913, -0.5194278642089243, -0.4650372284806038, 0.14463773986995587, -1.5481867377963046, -1.5396238442450576, -0.5869379207678355, 0.2347825701504993, -0.6984907329517083, -1.1711945824622685, -1.4887421320041294, -0.6998472246543873, -1.3379681814953672, -1.5514987679714412, -0.11505274098562024, -0.83599147011473, -1.1302772429275456, -0.085890665742826, -0.8225088412597827, 0.32119877976762945, -0.8032932793791506, 0.03743830384352287, -0.5058472120255426, -1.2293796320143324, -1.2177248659827793, -0.7595485556206018, -0.4046856109150766, -1.2801331585774676, -2.3833953950805356, -0.81765130564426, -1.3506638316867645, -1.1441467482539889, -1.549687722962402, 0.7738523665209163, -3.0831820317187346, 0.6391470341380032, -0.7464227609975327, 0.32016187590066214, -0.9265941001212838, -0.9326863268638346, -1.3716724118655201, -0.30323846762349604, -1.7520484250391584, -0.11011960642996477, -1.6516890451422026, 0.08657313961885871, -1.473361093110168, 0.010228710077999636, -1.342439906118901, 0.2769825432103934, -1.3107535401975159, -0.7977384034990405, -0.6062910146259542, 0.09788054374567468, -1.3029695674251598, -1.4132165225443822, -1.1668337290520676, -1.3689977625572014, -0.9740957379018857, 0.10566135871793869, -0.41174308895466827, 0.013444075087698959, -0.7895716077722296, -0.5993534156423197, -0.8109165791522782, 0.04969324203180858, -1.4362738043606187, 0.048951693611724245, -1.3560402497305777, 0.6922513030990463, -2.0147339175178436, -0.6997952973516572, 0.6347517657502246, -1.2384908509781067, -1.2522635260122215, 0.026371562086131783, -1.5066232376277644, -0.6835411180802398, 0.2153164423383267, -1.1873214559262288, -0.5506118439473188, -0.9987268823783114, 0.19257352415713647, -1.1767792836187723, 0.41250874407281923, 0.03337871544339621, -1.1304826337867802, 0.17799478500396093, 0.5537526880733477, -1.0732684279828772, -0.9505124134537688, 0.2555954389956221, -1.0581792231429517, -1.5639889158005262, 0.16627428108949505, -1.1200809901998874, 0.4102004170212801, -1.1833753609753606, -0.15042629387049888, 0.22488554493156054, -0.6442047065918749, -0.41603599600258023, 0.2932700254968179, 0.20956510851937238, -3.210766901050487, 0.08388766006656567, 0.09616973283552088, -0.3471746653545621, -1.298008946656181, -1.4005244528466605, -1.57602974137346, 0.019223578611504033, -1.0644021106488744, -1.6500009045813306, -1.4127564771308534, -2.071960543240543, -3.0139257989755297, -0.6462202607460232, -1.2184677853055437, -1.0658607389467767, -1.025903890358062, -1.3516694320628226, -0.7064606767722863, -0.7263740687221085, -0.32063458919362886, -1.6866755824069832, -0.7208358677499995, -1.6518140198033704, -1.150762286292847, -2.231804455677508, -1.5869402894826004, -1.5809688495802696, -0.609002924582404, -0.624669213360858, -2.05054361203738, -1.1127503548277413, -1.3417399134353523, -1.0190666487494102, -0.09299314617399079, -0.3774737199563545, -0.6236866130753345, -0.031459604812284936, -0.9002684439676994, -1.0759201327357453, -0.53994916540294, -1.1328863090397112, -0.029728655353653877, -0.8811382438517374, -0.9091310922185571, -1.3070764112858066, -1.7970447867364268, -0.21630266137386578, -0.9131740921772915, -0.4114278497482595, -2.107256015125902, -0.6659084740553325, -1.864402879247645, -2.2085183760947693, -1.6328880903060607, -0.7293403320681557, -0.8912497143285861, -0.7858916742411737, -0.20798394080108118, -1.6584245721711661, -1.254464174468041, -1.9346770396647335, -3.356558456650591, -1.054417325611054, -2.225842678524759, -2.3397427812287126, -1.0337786007793164, -0.37867632684053265, -0.7688677693602334, -0.9495614537543868, -1.237841323580925, -1.5939040746258946, -1.3637212386805009, -0.7652815690354753, -0.3228568642119126, -0.017370667860497235, -0.45716807830243145, -1.164459588177491, -0.684563935794014, -1.6620229835127556, -0.9265505316317216, -1.9593256631303624, -0.2931481167496698, -0.5336993805465814, -1.2731072748760277, -1.0360633002124662, -0.9468245303261553, -1.3947814847810802, -1.0660980030777139, -1.0975263660804304, -1.5576998658789618, -2.1513367577467983, -2.6384099728683803, -1.9456343899711972, -1.6229089796221365, -0.8100817090437695, -0.2664862980469088, -1.3982987164172778, -0.7758088075827195, -1.120977430178911, -1.7823401455369845, -0.8323507975629978, -0.6402326302246373, -0.6014524015080593, -0.9230920104715323, -1.4536778448042862, -1.4938109826586423, -2.474110305250504, -0.5524260346788993, -0.6923011663952596, -1.603876252389646, -1.9082297163102626, -1.0791970057671008, -1.5008267403160729, -1.8820941790394667, -0.7404327798272572, -0.6920698210669045, -0.7520321444434694, -0.8269902639537895, -0.10426448679888756, -1.019936108219102, -1.2296313678776447, -2.3976611754567716, -0.48982312029796915, -0.6090094122886278, -0.5916786733641972, -0.46046414136847724, -1.3460063649510938, -1.7262995214969246, -1.6985518999206177, -1.303118141768008, -0.9706193069821775, -1.8061516511918634, -1.64633302408207, -1.5238150118680256, -0.5478217456447059, -1.1789567676765502, -1.1263025683214973, -1.285556635565106, -2.4366522157310184, -0.4353872383047428, -1.1124325871974927, -0.7871150705487338, -1.0621901047901672, -1.7712430967610904, -0.15005840421553363, -0.7904304729194009, -1.4824755246550325, -1.4285496371922808, -1.5135866206548378, -0.3590974177989491, -0.5768886012758311, -0.1748532589193188, -1.3679747915984795, -0.9144195757783304, -0.616373290529028, -1.8765196833239766, -0.12916967592147255, -0.749220032381538, -0.6461847530701632, -0.6109681684212926, -0.7891789407569751, -0.470966226211463, -0.7706088397311999, -0.19654564403074137, -1.3889783885846048, -0.011385874263468043, -1.2157374245941934, -2.3862565556140396, -1.1891059878908938, -2.068952813396391, -0.3747901350321513, -0.6196229546072667, -0.24846138953144614, -0.9283340401501645, -1.6354590519547516, -0.6445290565372089, -2.3696240042463197, -0.5217455645029211, -2.4021233751932147, -0.8097171644065724, -0.7343604354447293, -0.9888971786235591, -0.5677883203462664, -1.0840835304586782, -1.0909558340335985, -1.8393076191141997, -0.79614883152869, -0.6930716803340876, -0.7018627811921927, -0.4109489759859303, -0.5959701027169051, -0.1803568000989415, -0.6658461806997584, -0.4344777578464841, -1.0178400024975502, -0.9351075870136176, -0.6669703822830867, -1.4138570297807624, -1.13484673884425, -1.4226565120814318, -0.7294887941407013, -2.879659095554807, -1.6344280186370943, -1.13356424000824, -1.0118851878803325, -1.0738908752486593, -0.9904581784976303, -2.529095258074923, -1.3164078578650569, -1.0211100489767482, -1.784019808324659, -0.48324064815274603, -0.008628911764000269, -0.23692897289365178, -0.1498345812204912, -0.17517786527716128, -1.3235062439315406, -2.2715496345809214, -0.24380925058390912, -1.62726941810599, -0.46427455425310993, -0.819937562407755, -1.4584536887649173, -0.200933230649748, -0.8152130413311985, -0.2588454848149837, -2.048611042692124, -2.537941617259143, -1.7302880422016498, -1.199288550107993, -1.155295983617403, -1.5726049514563027, -0.049218340545415296, -1.484202452916529, -1.3278399743136111, -1.7174680388519503, -1.366664891859181, -0.8603996886069667, -0.3027877983146612, -1.4577419349198215, -0.2445464535799008, -1.413089766951591, -0.8717560829605354, -1.288782117280896, -0.8078168064654205, -0.4654386800790793, -0.8102923719565572, -1.0163361843208187, -1.2986913056205864, -0.5291733387945974, -1.561906156121836, -0.007570008875762535, -0.6698108524329411, -2.0584470247806275, -1.6878345165302966, -0.9642553297370248, -1.5627744414314, -1.5170058108361244, -0.7787534867732943, -1.1831223991429916, -1.4893280855298308, -0.5375390234004739, -0.8910675687329751, -2.365736323094141, -0.5561485346519026, -0.613659736566536, -1.6448438897685405, -0.3616057586794249, -0.3509554066608481, -2.3857479730600906, -0.00645477342725842, -1.7516683503310149, -1.533566744408223, -1.2840203346765477, -1.2599027111645598, -1.2554416978251026, -1.107875935865109, -2.074846688202916, -1.6406321009638969, -0.8800120589722463, -1.1620452970449464, -0.1342204893719331, -2.5631570397691084, -1.3257985188584471, -1.0077287718123915, -1.3328269137938922, -0.2542415847319309, -1.0087809372517513, -1.0364546665277297, -0.07094199901500897, -0.8359729519200941, -1.356877229873387, -1.3559700461380206, -2.4581590642752875, -0.9089310720168334, -0.6798638860111926, -1.012388892635339, -0.6241045684553237, -0.8131906076604031, -0.11037381768064292, -0.6648929901839362, -0.7785895132060827, -0.6636836104082616, -1.3928987402249904, -0.20384214412608137, -1.8737384399663966, -1.699022315873604, -0.3432038724634323, -2.0933736550612174, -0.835932696958926, -0.39245447950940926, -0.6830626717283761, -0.98257516559599, -0.7807926894496955, -1.0864082560892405, -2.1549319107405105, -0.5600581356683854, -1.3133709006420953, -1.1781294452731181, -0.9897451379221728, -0.3215787624780745, -1.0527722605983636, -0.1280673799350852, -1.7825739500985058, -0.46318466264841907, -2.0885145526410263, -0.866624916922796, -0.5743169491806295, -0.5571672534734683, -0.4552373291512585, -0.3971055277939588, -2.5120488724925716, -1.9215646627001988, -0.002823426486575964, -0.21309439244931838, -0.6761644895162655, -0.10909959456846763, -0.24886798980104874, -1.6202393789852847, -1.2888733447510876, -0.23039765636384935, -0.8691929278239686, -0.9741177926799568, -0.9495358340151878, -0.5782711981867275, -1.5208308419461305, -1.5390272993870862, -0.9693382051867094, -0.8757961683070339, -1.9856065142102808, -1.6378007691023138, -0.7022755719018372, -2.1841206227432317, -0.8584982201752646, -1.476618327368495, -0.8033136349193098, -0.36009046489450636, -0.26317032002523133, -1.2960465845056943, -0.5905647846319573, -1.5693831998107695, -0.7383321799954858, -1.6706682484040374, -1.6393507217201821, -0.03387277054554183, -1.409474912476017, -0.9273052229785932, -0.778727813030526, -0.9278300628911329, -1.4061204355219812, -1.8102549434795698, -2.154637836552963, -1.3745580747255695, -0.01807228530547822, -0.6600432238999652, -0.47216578187399816, -1.9554413069270034, -0.959908391635782, -0.9828027164401711, -0.9865249234122424, -0.6020865184627417, -2.3227137839139496, -0.11847508949903851, -0.7970496947788396, -0.912784531531974, -1.4541802486562025, -1.8140407745891123, -0.987161606379291, -2.0419577224386147, -1.3612036363781344, -0.4720246267918522, -1.7272848450121083, -1.16231371677528, -0.6419163304063689, -1.29363696952282, -0.8954507375792656, -0.6959743577828938, -0.9569908720977479, -0.8082022420243207, -1.7399685241555667, -1.811115856437436, -0.6383223164937091, -1.0158574845860886, -0.7918412213586623, -0.6323673040456838, -1.0850882157566133, -1.2752647378538315, -1.4584444886618835, -1.5347856711207144, -0.4573137073994413, -0.5276856478755194, -1.656954108213299, -1.9865651468513637, -0.2980971867369915, -1.037163512200286, -0.881646359024252, -0.6512089624414217, -2.0561422635377986, -2.4640627724629405, -1.736960378058657, -1.8928312903276785, -0.3130641570841929, -0.24741943597414795, -2.405194026421227, -1.045167246830828, -0.29798817766041696, -0.13331032498589268, -1.4389961480665132, -1.623969099482787, -0.36310912923650773, -0.7135088739553169, -1.675831974687807, -1.3707870054118794, -1.7853479877738523, -1.4276863215356448, -1.9615635340883868, -0.7357775107193126, -1.3842534010892962, -1.8145467961936217, -0.7444603614017846, -0.5344285319220479, -1.7952082242454992, -0.4918187867021322, -1.1485180283374572, -1.7271778580762807, -0.7506160240052342, -1.2069371239563162, -1.2834059404619855, -0.10106232289626838, -0.26000454158424, -1.7604791023410509, -1.6304358440065, -1.6570845209900014, -1.2989034519021065, -1.835249454517192, -1.2882603233244625, -2.0011996010128406, -0.3864256421281934, -0.572653717843647, -0.4259360263101394, -0.809994288257567, -0.6177857522094967, -0.7153076206689581, -1.2670250080359475, -1.1400426157873857, -1.746842467363534, -0.7708231046647639, -0.8721323584887124, -1.4692960235748211, -1.7264838543425944, -1.5029002398133013, -1.6973071099411663, -1.6244051008674765, -1.8859851313106626, -1.1067577470527978, -1.4928795955167866, -0.9869212464580943, -0.29808566471748177, -0.795952850657603, -0.3325731293182549, -1.6373323718086317, -0.9125569749601523, -1.2277033188269404, -0.8785761657839015, -2.009546391200942, -1.3969863755988352], \"z\": [1.053834868880708, -2.6744211436011707, -1.0057360085936482, -1.2229442587957564, -3.2191995909414395, -2.0741810625595347, 1.8438353458110344, -3.7933108194739544, -0.9477915160135622, -4.034521003061325, 1.3567388442278032, -3.670118162355965, -3.5375852801198153, -1.8846434157309861, 3.1095486889688395, -4.013823788439678, -0.675056537205939, -4.04173413888243, -3.5311305919012232, -1.7823122807004097, 2.5455318641633307, -3.6985300009330846, 0.2504523431516592, -4.816457838053188, 1.053792068732652, 2.8386398999742743, -1.029916170803181, -0.3468800102776557, -2.605009804809139, 0.2908064394645278, -0.4748073891471325, 2.018068212321924, 0.5525452991623023, -2.9520491441385617, -3.5692253299871513, -1.8897480869057093, -2.302983987863728, 2.062675149738439, -0.4629869260276891, -0.658468194161145, 0.5739356773491657, 1.9555753156331779, 0.8937221605730299, 0.9771573548268719, -4.860265340413396, 0.6164548482082282, -3.0658511607742773, 0.36528213630611095, -0.0573624973811242, 1.6080253362864667, -1.9825488283453927, -1.4654035647536854, -2.7512141902152054, -3.7863620440227477, -2.7954212566667116, 2.5688726590027855, 3.0933262136555495, -2.2924200220811324, -4.88187458824742, 2.9729884078273594, -0.04961114009843559, -3.313794405254655, -4.091079816313323, 3.236559428672079, -1.3716890187728117, -3.5067355999327985, -3.094265361067016, -2.9598231812718363, 2.6388063970170226, -3.566001478146904, 0.8913011638931847, -2.9813429105175806, -2.3471704360419006, -0.5100707680024135, -1.917101486012322, 2.2588690534420923, -3.7929156192551536, 2.2761344422345404, 0.6718161607864275, -2.635745576797682, 0.02382878318618964, -0.5261250534561457, 1.1430505370075963, 0.7568322024232961, -2.04603339434697, 0.01860987192333141, -3.954049829512915, -0.018068655230745634, 0.07441334965762536, -1.8424244963027592, 0.8813265447938736, 1.255172282774618, 3.3261097476006416, -1.0317227215738871, 1.8571091267853506, 2.0658155381823304, 0.8173654721525363, -1.5492788573314233, 0.11779533731990899, 1.544660127744769, 1.0973601095290224, -0.8045633253151623, 0.2658798262631512, -3.8850479537951443, -0.0831630120012612, -4.477155255423385, -3.5152010387211696, 3.4229735377156594, -2.362146185454736, -0.5157742858044649, -3.480034045367587, -1.9264861098535184, -3.526444636903396, -4.42092899543388, -3.1276305887937323, -0.38361993426001817, 2.7139495501841084, -4.943794793506174, 3.1592521009862704, 0.6137328798519786, -1.4019742088439129, 3.361390999374441, 0.12597468295181002, 0.8458898419723573, -0.8893973837466334, 2.1663492822621704, -0.07116797520558826, -3.710922082487267, -0.3133227973085342, 1.5002010849947647, -2.3001399771576425, -3.0582244435511976, 1.9842953828554224, 2.0755287707988, 2.99167965921494, 3.3609376100168316, -2.2226596924821598, 1.1854783923356136, 0.41596936109473415, -4.733868899035672, -0.683093935597908, -4.732037605382986, 0.2688440244874899, 2.930336051687683, -1.5511122675033082, 2.2022241710026638, 0.4613128441589742, -0.12412644550834884, -2.663088477207343, -2.986572516517747, 0.9197410584906871, -0.5916702109785215, 3.385751246915728, -0.417028851932276, 2.5374681904148053, -4.503180349907482, -4.983382022353229, 2.8228482131255435, 2.0258022704733607, 1.655649148399359, -2.9875912211367175, -3.91267833033205, 2.940353309609578, -3.555341426069505, 0.889839330219421, 0.09745714507209513, -0.3089684958660257, -1.3914138420342437, -1.8336232452731984, -4.817800222600999, -1.0513369883119683, 1.8107368408470714, 1.0196361832006424, -4.552995002417231, -3.529405825833953, -2.3263022519334933, 2.646796117491512, -3.9327708878582244, -1.7932403582640495, -3.748370638499427, -2.108277780374807, -3.9181015895037348, -4.2096333199351115, -3.529826962537573, -4.7497915020749355, 1.391026554038877, -3.320013295680399, 0.5577342177523397, -4.655443012582697, -2.5678825037458743, 1.0166236848552757, 1.0420631635877413, 2.8334688557307928, 3.3549465071208697, 2.8373019471956313, -4.337657351578183, -0.22922943774164928, -0.6967778360088364, 2.072868536501855, 0.7757877007542753, -1.5786330399571504, 2.632499530054697, -4.630100071465968, -4.5148415064622025, -1.6528137530941853, -3.246947077884198, -4.945559303638508, -1.349586892744839, 0.49234962010422123, -1.6807771172556665, -1.7078835351210415, 0.25960101041942085, -1.7470147965786103, -4.006864882627207, 0.6951872465293389, 0.5342916445586017, 2.435219958109478, 0.8977068893845654, -3.655117050029941, 0.8451434385521504, -4.119069097896497, -0.28194157616566606, 1.0954742969164526, 1.1264442425489323, 1.7133848370667266, -1.942399156979853, -1.2362500889964303, -1.536050899368028, -3.363626214767253, 0.1326327492763646, -2.3724330699708376, 2.1993839003282583, -1.068831265010127, -1.3168767634825613, 1.4317700166066336, 0.25257592816178676, 0.5528194867032221, 2.9899205079035402, 1.6115674371868804, 1.9674504929707188, 1.746475036217693, -4.656203951008076, -4.874013594878739, -0.13332860506397104, 3.4225652543080063, -2.5902322404984512, 1.9437379793303373, 0.04744926472675903, 1.7054629075999639, 0.648931243889332, 2.2088362112318505, -0.13687176195713047, 1.408204887884648, -4.966652144968723, -2.268739179873746, -0.7540213824287827, -4.050656180624535, -3.5668699855838057, 2.968617712853285, 1.44969349133396, 1.8397456964255756, 1.9689168271024284, 1.1829664770111865, -1.9849074088342906, -4.417576072285653, -3.43067588938373, -3.6033724535123937, -4.616047396713924, 1.9795646382981378, -4.537624570739008, 2.2929755965126715, 3.352603498278164, -0.9056403295576896, -0.3586456524558912, -4.777321742326922, 1.6725722988062657, -4.2748723885333995, 0.24339165990518374, 2.3832273059638434, 0.5561164466890425, 0.36333970032672536, -1.0297655483246513, -3.6459353829636805, 3.011572800894383, -4.063623055548369, -1.0769747503591551, -0.841677573515919, -2.5080153569718036, -4.128021746155317, 1.338937567869971, -1.2045517313074394, -4.191823109933396, 3.326074331804774, 3.3457247324547126, 1.6158978982405712, 0.9058639378289479, -1.4131781766028824, -2.2745904541149136, -4.9123938666825655, -2.8278151753074607, -0.6123369444191642, -4.746659283827685, -2.1327783972759318, -2.4956826210000873, 0.7768711601202085, 1.1670919662285826, -4.129001481521826, 1.2899346929882212, 3.0085635913011597, 0.8516196520132064, -1.740203520439091, -4.549066093521081, 3.298569245052418, 2.388686358569619, -3.885124745834177, 1.3953642052566524, 2.1789761037430324, -3.5022908312856433, -2.3446644360135567, -1.2876956084119842, 2.8384217413600714, -3.1354432455973194, -2.329071718271411, 3.0548292088612143, -3.8415678847828625, -3.4777463073405945, 2.088019322989944, -0.7301619088487614, -3.8986384911295757, 1.8396908034635917, -2.7130649941602365, 0.4875257880947208, 0.5823601763532036, -0.5734494041065297, 2.087699124712522, 0.4061394080446288, -1.4445322460264416, -4.38608393616525, -0.6064103566904473, -4.981349261931809, -4.1628438547389015, -0.5198576203842142, -2.42568071644496, 2.163069374328259, -2.8088241650229073, -1.405364091399075, -0.9687327132244885, 2.3011431747676694, -3.7744956845687074, 0.06764736612906663, -0.008323620027931966, -4.040991308384752, -3.1254475959459587, -4.083926307828353, -1.1926005298672706, -2.814217549821454, -3.8741794665436355, -3.746792575148847, 1.7731247753108956, -4.737764536271165, 0.5903830714830951, 2.5761482489390835, -0.7017251528940305, 0.868070961003955, 3.0556474848837443, -1.419015328410996, -1.3770342694708488, 1.8404661849205128, -4.776849993570858, -4.100435976511161, -0.613657933417425, -3.0562060532958943, 2.3147491329510563, 0.5918074160196634, -2.83390282482324, 2.5133842278847176, -4.064832754462004, -0.6751130761949442, 0.9516750227643946, -3.377690736519514, 1.1732513178122064, -1.6330621900497735, -4.531849273490798, -0.6243441753531584, 2.187758843470168, 3.033373480841945, -0.7917379030985101, 2.586271111688074, 3.413893610246461, 1.9708055231052874, -1.1505009628679952, 2.99672711375049, -0.41447597648842915, -4.398749802074798, 2.0014259414232694, 1.327570303433589, 2.53918542097699, 0.34846536585488064, -2.103772066265406, -1.0645605794409079, -2.9122557257473907, -1.4308249127367438, 1.8464726088574297, -0.8778653425703569, -0.5183694317702878, -4.1883867531509065, 0.6947544057052246, -0.7049955234010437, -0.15182456099038966, -2.944359563356677, -2.331326781579963, 1.8488771864441693, -1.360771217259376, -3.603629996090313, -1.9099294063222532, -2.7065312266740627, -0.8541108051156883, -0.7459863624115863, 2.273808202884041, -3.7865170737647063, -0.8368205277422618, 0.6905796086390339, -3.022579634951305, -0.7071722904870832, 1.6719734307817502, 0.32860044759579754, 2.431874529697197, 1.7660038671422456, -1.7402988846741891, 1.0673245851208888, 2.0625633657916165, -4.8452507652196815, -4.996162989561286, -2.2276011136334977, -1.2655650852604796, -3.889438752229297, -4.907602003214687, 0.9450499917463429, -0.026670167297123903, -2.926175067844963, -2.3273217399047237, 3.359863853951367, 1.5182759186196968, 1.1135963508001696, 0.2929946005452768, -1.802248741141764, -0.06686496334292347, 1.7757059733645866, -2.517558088576078, -0.7119703913764166, -4.731785024141814, -3.45478173273378, -1.5123357309550358, -3.6130413009999582, 2.0774011701093142, 2.4471381899405094, -2.063439511030969, -4.835441034942155, -1.4063505536305425, 2.536336000735485, 1.0451036500392341, 0.1810764616967555, -3.229691647501909, 1.9234447140168225, 0.7893759242103906, 2.517307584760908, -3.5949794451366492, -3.7069931446844966, -1.3340664737455175, -1.5238885058367462, 1.4899057721088615, -1.4792220309076072, 0.7496265815708814, 3.0731283593480683, -0.4031880988495251, -1.0295865929193813, 2.3925591189912296, 2.114922394837645, -2.4683675114159267, -2.683885196045527, 3.3627631592757954, 2.072445468248576, -3.1891036113844926, 1.6469438467237936, 3.381448636917236, 0.3170604137727935, 0.8709793004369217, -3.7513278108947232, -3.1374750716233306, -4.254555161394419, -4.784081494877749, -2.8618852142200786, -4.512247367681617, -0.9212273525610648, -2.9712235649820657, 1.9250080153411693, -3.33747605671666, -4.429459595945067, -4.711893600677471, -4.440937947425296, 3.354259557242326, -1.1093563283641856, 1.5201190108382194, 0.06985662424741435, -0.19230152006084644, 1.6380219948505133, -3.5181449466695334, -4.819230421221089, -1.6522484547226823, 1.9945637936869716, -1.896489433900392, -4.253066186927892, -3.887714933980316, 2.2711359374219624, 2.6057704143933647, -1.4088172507159524, -4.121023568859458, -1.3849966765274444, 0.9256059601912385, -0.18688281271465446, 2.1293265336384417, -1.912314988986092, -1.4099109136793384, 0.9713757139432495, -5.006248990796749, 1.237295445884894, 3.393805342405896, -0.3694384538566613, 0.25632249945876673, -2.3354172544394958, -4.425419299563709, 1.902260491312319, 1.1669240354316832, -4.515285290577213, 2.4357079607494443, -0.15476661723870144, 2.497454329555623, 2.971701813828421, -2.572012762485114, -0.6163950167747938, -1.186594262203863, -1.7414517784315815, -1.598115351262658, -2.816838054308333, 0.16463303374016025, -4.398473663436654, -1.3834557921089097, 1.6496019056869535, -4.621277390391199, 0.2103366952571779, -4.395498291490351, -2.2848940027000038, -0.48647144632088857, -0.9942969456755915, -3.8675186142911473, -4.61068612402147, -2.1183581785347814, -0.6065341860242883, -2.7569269911091943, 2.9677982904280364, 1.7803833075673916, -4.432320642908061, -0.22930549836268188, -1.9338795456463655, -1.1793832133561546, 2.6140319666976843, 0.5846598651686552, -0.9790080620035493, -0.3449152958566435, 2.3073903464187504, -0.3396655633406329, -4.438070218347577, -2.135538258369472, -0.22541079175246814, 2.550507321912556, 2.3739881288312485, -0.48570730822960595, 2.450954073643784, -3.430164540785581, -0.5532330098991212, -2.652089652197073, -3.035198641137607, 1.4049974779783874, 1.5638806022614373, 2.864481558957401, -1.8608670542474943, 1.1318739779724574, 0.6818570413019778, 1.982081303708389, -1.1376274580639327, 1.8263524411673044, 3.1681129467363363, 0.2936984959362121, 0.3403890517734416, 0.5337234967190048, -1.0902408675013975, 2.4274145466551547, -0.549091406103499, 1.8023344837596493, -2.109191084150525, -4.813619532838075, 0.5608926510144494, 1.8338445716777185, 2.569700979590788, -0.9098295342312337, -4.03710561212789, -2.061181377485712, 2.90439784542542, 1.4526907254677495, -2.594485793594121, 1.5997590356686482, 3.28709307791925, 2.689551643122857, 0.9431363144400464, 2.3862196535381974, -3.644762357577606, -0.10340648731419755, -2.451092614271427, -4.428463989247819, 2.1920878910702912, -1.3944673566865795, 3.3341199577429492, 0.12016358461101095, 3.301616973120437, -0.6299018263521523, -3.8540530878596586, 2.33235764383552, -2.4156681986276296, 2.438041913806723, -1.5364468937978732, -2.0040779692132724, -2.5591498512773296, 0.7079458788999835, -2.1939467359504463, -1.9998681864867676, -4.379749829587456, 0.825921144811459, -2.157718795453866, -4.689080020070349, -4.491147625428715, -2.500875676336476, -2.1418754149172297, -4.550693599645845, 0.08580942527632995, 2.1278010524492394, 0.2724671470850133, -3.5607724808317442, -4.62835913475487, -1.5270318435150005, 0.8719954912354497, -1.8826855639644973, 2.430723738002725, -3.197109017445272, -1.7678586876223474, 0.6906611111653946, 3.0118834952111015, -4.495767924798922, -2.791436384414813, 2.6894020704520996, 2.4309782361876024, 1.7766703476450498, 0.8431991254831619, 0.42732620730324555, -2.1977990352387535, -2.202089634512655, -1.6239415512793713]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 0\", \"marker\": {\"color\": \"rgb(31, 119, 180)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 0\", \"scene\": \"scene4\", \"showlegend\": false, \"text\": [\"0_l_0_m-0_0.08-1_0.1-2_0.06-3_0.19\", \"1_l_0_m-0_0.12-1_0.47-2_0.31-3_0.18\", \"2_l_0_m-0_0.09-1_0.16-2_0.08-3_0.18\", \"3_l_0_m-0_0.21-1_0.23-2_0.17-3_0.1\", \"4_l_0_m-0_0.47-1_0.09-2_0.48-3_0.24\", \"5_l_0_m-0_0.16-1_0.92-2_0.25-3_0.33\", \"6_l_0_c_0_1_2-0_0.16-1_0.18-2_0.48-3_0.52\", \"7_l_0_c_0_1_2-0_0.0-1_0.08-2_0.86-3_1.04\", \"8_l_0_c_0_1_2-0_0.79-1_0.27-2_0.53-3_1.46\", \"9_l_0_c_0_1_2-0_0.5-1_0.46-2_0.73-3_0.29\", \"10_l_0_c_0_1_2-0_0.35-1_0.09-2_0.95-3_0.67\", \"11_l_0_c_0_1_2-0_0.45-1_0.18-2_0.01-3_0.68\", \"12_l_0_c_0_1_2-0_0.26-1_0.65-2_0.03-3_1.18\", \"13_l_0_c_0_1_2-0_0.02-1_0.11-2_0.11-3_0.93\", \"14_l_0_c_0_1_2-0_0.01-1_0.31-2_0.46-3_0.39\", \"15_l_0_c_0_1_2-0_0.49-1_0.44-2_0.46-3_0.4\", \"16_l_0_c_0_1_2-0_0.32-1_0.66-2_0.09-3_0.22\", \"17_l_0_c_0_1_2-0_0.88-1_0.25-2_0.08-3_0.3\", \"18_l_0_c_0_1_2-0_0.24-1_0.29-2_0.41-3_0.04\", \"19_l_0_c_1_2_3-0_1.19-1_0.67-2_0.48-3_0.22\", \"20_l_0_c_0_1_2-0_0.56-1_0.09-2_0.52-3_1.12\", \"21_l_0_c_0_2_3-0_0.44-1_0.25-2_0.14-3_0.45\", \"22_l_0_c_1_2_3-0_0.05-1_0.26-2_1.37-3_0.82\", \"23_l_0_c_0_1_2-0_0.49-1_0.15-2_0.69-3_0.44\", \"24_l_0_c_0_2_3-0_0.38-1_0.27-2_0.15-3_0.11\", \"25_l_0_c_1_2_3-0_0.97-1_0.06-2_0.49-3_0.2\", \"26_l_0_c_0_1_2-0_0.19-1_0.15-2_0.23-3_0.53\", \"27_l_0_c_0_2_3-0_0.89-1_0.91-2_0.76-3_0.39\", \"28_l_0_c_1_2_3-0_1.08-1_0.98-2_0.18-3_0.04\", \"29_l_0_c_0_1_2-0_0.22-1_1.08-2_0.81-3_0.67\", \"30_l_0_c_0_2_3-0_0.23-1_0.4-2_0.14-3_0.55\", \"31_l_0_c_1_2_3-0_0.26-1_1.2-2_1.47-3_0.63\", \"32_l_0_c_0_1_2-0_0.07-1_0.41-2_0.51-3_0.63\", \"33_l_0_c_0_2_3-0_0.91-1_0.76-2_0.27-3_0.2\", \"34_l_0_c_1_2_3-0_0.87-1_0.07-2_0.06-3_0.57\", \"35_l_0_c_0_1_2-0_0.56-1_0.36-2_0.13-3_0.52\", \"36_l_0_c_0_2_3-0_0.28-1_0.03-2_0.3-3_0.01\", \"37_l_0_c_1_2_3-0_1.09-1_0.93-2_0.76-3_0.51\", \"38_l_0_c_0_1_2-0_0.25-1_0.17-2_0.57-3_0.02\", \"39_l_0_c_0_2_3-0_0.28-1_1.49-2_0.09-3_0.08\", \"40_l_0_c_1_2_3-0_0.64-1_1.01-2_0.43-3_0.53\", \"41_l_0_c_0_1_2-0_0.89-1_0.53-2_0.66-3_0.47\", \"42_l_0_c_0_2_3-0_0.41-1_0.28-2_0.62-3_0.12\", \"43_l_0_c_1_2_3-0_0.3-1_0.39-2_0.16-3_0.31\", \"44_l_0_c_0_1_2-0_0.89-1_0.29-2_1.09-3_0.7\", \"45_l_0_c_0_2_3-0_0.2-1_1.61-2_0.97-3_0.56\", \"46_l_0_c_1_2_3-0_1.88-1_0.28-2_0.02-3_0.34\", \"47_l_0_c_0_1_2-0_0.46-1_0.32-2_0.42-3_0.99\", \"48_l_0_c_0_2_3-0_0.3-1_0.65-2_1.47-3_0.02\", \"49_l_0_c_1_2_3-0_0.12-1_1.17-2_0.15-3_0.4\", \"50_l_0_c_0_1_2-0_0.15-1_1.28-2_0.92-3_0.85\", \"51_l_0_c_0_2_3-0_1.05-1_0.51-2_0.73-3_1.02\", \"52_l_0_c_1_2_3-0_0.18-1_0.07-2_0.62-3_0.67\", \"53_l_0_c_0_1_2-0_0.69-1_0.81-2_0.74-3_1.39\", \"54_l_0_c_0_2_3-0_0.16-1_0.75-2_0.07-3_0.35\", \"55_l_0_c_1_2_3-0_0.97-1_0.19-2_0.38-3_0.2\", \"56_l_0_c_0_1_2-0_0.28-1_0.04-2_0.25-3_0.4\", \"57_l_0_c_0_2_3-0_0.51-1_1.5-2_0.68-3_0.15\", \"58_l_0_c_1_2_3-0_0.97-1_0.32-2_0.19-3_0.46\", \"59_l_0_c_0_1_2-0_0.56-1_0.88-2_0.21-3_0.17\", \"60_l_0_c_0_2_3-0_1.68-1_1.59-2_0.67-3_0.04\", \"61_l_0_c_1_2_3-0_0.88-1_0.25-2_0.45-3_0.18\", \"62_l_0_c_0_1_2-0_0.2-1_0.18-2_0.32-3_0.14\", \"63_l_0_c_0_2_3-0_1.24-1_0.85-2_0.84-3_0.38\", \"64_l_0_c_1_2_3-0_0.73-1_0.38-2_0.16-3_0.74\", \"65_l_0_c_0_1_2-0_0.44-1_0.05-2_0.39-3_0.18\", \"66_l_0_c_0_2_3-0_0.41-1_1.44-2_0.12-3_0.11\", \"67_l_0_c_1_2_3-0_2.05-1_0.06-2_0.68-3_1.1\", \"68_l_0_c_0_1_2-0_0.4-1_0.19-2_0.03-3_1.39\", \"69_l_0_c_0_2_3-0_0.31-1_0.28-2_0.08-3_0.25\", \"70_l_0_c_1_2_3-0_0.45-1_0.08-2_0.27-3_0.6\", \"71_l_0_c_0_1_2-0_0.2-1_0.06-2_0.96-3_0.54\", \"72_l_0_c_0_2_3-0_0.14-1_0.93-2_0.74-3_0.39\", \"73_l_0_c_1_2_3-0_0.46-1_0.46-2_0.66-3_0.02\", \"74_l_0_c_0_1_2-0_0.69-1_0.43-2_0.14-3_0.4\", \"75_l_0_c_0_2_3-0_0.23-1_1.16-2_0.46-3_1.37\", \"76_l_0_c_1_2_3-0_2.24-1_0.15-2_0.96-3_0.61\", \"77_l_0_c_0_1_2-0_0.05-1_0.07-2_0.15-3_0.87\", \"78_l_0_c_0_2_3-0_0.21-1_0.08-2_0.25-3_0.11\", \"79_l_0_c_1_2_3-0_0.43-1_0.1-2_0.01-3_0.94\", \"80_l_0_c_0_1_2-0_0.58-1_0.21-2_0.54-3_0.47\", \"81_l_0_c_0_2_3-0_0.34-1_1.14-2_0.45-3_0.06\", \"82_l_0_c_1_2_3-0_1.71-1_0.12-2_0.15-3_0.07\", \"83_l_0_c_0_1_2-0_0.12-1_0.06-2_0.0-3_0.26\", \"84_l_0_c_0_2_3-0_0.8-1_0.15-2_0.64-3_0.24\", \"85_l_0_c_1_2_3-0_1.41-1_0.02-2_1.18-3_0.64\", \"86_l_0_c_0_1_2-0_0.05-1_0.21-2_0.64-3_0.53\", \"87_l_0_c_0_2_3-0_0.9-1_0.07-2_0.44-3_0.22\", \"88_l_0_c_1_2_3-0_0.07-1_0.19-2_0.42-3_0.71\", \"89_l_0_c_0_1_2-0_0.21-1_0.2-2_0.35-3_0.04\", \"90_l_0_c_0_2_3-0_0.38-1_2.27-2_0.51-3_0.04\", \"91_l_0_c_1_2_3-0_0.57-1_0.45-2_0.2-3_0.44\", \"92_l_0_c_0_1_2-0_0.23-1_0.17-2_0.43-3_1.58\", \"93_l_0_c_0_2_3-0_2.0-1_0.83-2_0.76-3_0.02\", \"94_l_0_c_1_2_3-0_0.43-1_0.32-2_0.19-3_0.86\", \"95_l_0_c_0_1_2-0_0.34-1_0.46-2_0.23-3_0.69\", \"96_l_0_c_0_2_3-0_0.03-1_0.36-2_0.26-3_0.08\", \"97_l_0_c_1_2_3-0_0.69-1_0.09-2_1.09-3_0.99\", \"98_l_0_c_0_1_2-0_0.02-1_0.16-2_0.64-3_0.6\", \"99_l_0_c_0_1_3-0_0.06-1_0.32-2_0.65-3_0.41\", \"100_l_0_c_0_2_3-0_0.03-1_0.14-2_0.74-3_0.63\", \"101_l_0_c_1_2_3-0_1.15-1_0.92-2_1.15-3_0.82\", \"102_l_0_c_0_1_2-0_0.09-1_0.04-2_0.31-3_0.88\", \"103_l_0_c_0_1_3-0_0.07-1_0.34-2_0.57-3_0.05\", \"104_l_0_c_0_2_3-0_0.41-1_0.51-2_0.35-3_0.04\", \"105_l_0_c_1_2_3-0_0.55-1_0.74-2_0.64-3_0.06\", \"106_l_0_c_0_1_2-0_0.09-1_0.19-2_0.17-3_0.35\", \"107_l_0_c_0_1_3-0_0.02-1_0.13-2_1.34-3_0.6\", \"108_l_0_c_0_2_3-0_0.54-1_0.09-2_1.38-3_1.04\", \"109_l_0_c_1_2_3-0_0.96-1_0.09-2_0.5-3_0.73\", \"110_l_0_c_0_1_2-0_0.5-1_0.59-2_0.08-3_0.06\", \"111_l_0_c_0_1_3-0_0.06-1_0.82-2_0.49-3_0.1\", \"112_l_0_c_0_2_3-0_0.04-1_0.3-2_0.01-3_0.46\", \"113_l_0_c_1_2_3-0_0.52-1_0.44-2_0.72-3_0.71\", \"114_l_0_c_0_1_2-0_0.09-1_0.34-2_1.76-3_1.09\", \"115_l_0_c_0_1_3-0_0.14-1_0.82-2_0.18-3_0.11\", \"116_l_0_c_0_2_3-0_0.56-1_0.93-2_0.15-3_0.12\", \"117_l_0_c_1_2_3-0_0.54-1_0.2-2_0.3-3_0.08\", \"118_l_0_c_0_1_2-0_0.53-1_0.18-2_0.52-3_0.01\", \"119_l_0_c_0_1_3-0_0.35-1_0.5-2_0.28-3_0.26\", \"120_l_0_c_0_2_3-0_0.49-1_0.76-2_0.12-3_2.22\", \"121_l_0_c_1_2_3-0_0.11-1_0.58-2_0.11-3_0.57\", \"122_l_0_c_0_1_2-0_0.13-1_1.02-2_1.03-3_1.02\", \"123_l_0_c_0_1_3-0_0.05-1_0.95-2_0.49-3_0.4\", \"124_l_0_c_0_2_3-0_0.2-1_1.9-2_0.35-3_0.63\", \"125_l_0_c_1_2_3-0_0.4-1_0.12-2_0.25-3_0.2\", \"126_l_0_c_0_1_2-0_0.18-1_0.49-2_0.34-3_0.01\", \"127_l_0_c_0_1_3-0_0.09-1_0.01-2_0.81-3_0.26\", \"128_l_0_c_0_2_3-0_0.23-1_0.16-2_1.5-3_0.83\", \"129_l_0_c_1_2_3-0_1.29-1_0.15-2_0.0-3_0.14\", \"130_l_0_c_0_1_2-0_0.39-1_0.08-2_0.17-3_0.47\", \"131_l_0_c_0_1_3-0_0.03-1_0.46-2_0.16-3_0.26\", \"132_l_0_c_0_2_3-0_0.19-1_0.2-2_0.46-3_0.04\", \"133_l_0_c_1_2_3-0_0.66-1_0.08-2_0.12-3_0.96\", \"134_l_0_c_0_1_2-0_0.71-1_0.18-2_0.68-3_1.72\", \"135_l_0_c_0_1_3-0_0.04-1_0.79-2_1.72-3_0.05\", \"136_l_0_c_0_2_3-0_0.43-1_1.42-2_1.29-3_0.04\", \"137_l_0_c_1_2_3-0_0.27-1_0.71-2_1.11-3_0.1\", \"138_l_0_c_0_1_2-0_0.12-1_0.16-2_0.15-3_0.1\", \"139_l_0_c_0_1_3-0_0.07-1_0.64-2_0.05-3_0.11\", \"140_l_0_c_0_2_3-0_0.05-1_1.53-2_0.46-3_0.14\", \"141_l_0_c_1_2_3-0_0.99-1_0.31-2_0.18-3_0.06\", \"142_l_0_c_0_1_2-0_1.54-1_0.07-2_0.21-3_0.93\", \"143_l_0_c_0_1_3-0_0.3-1_0.54-2_0.05-3_0.05\", \"144_l_0_c_0_2_3-0_0.06-1_0.62-2_0.41-3_0.27\", \"145_l_0_c_1_2_3-0_0.04-1_0.43-2_0.13-3_0.7\", \"146_l_0_c_0_1_2-0_0.56-1_0.46-2_0.58-3_0.11\", \"147_l_0_c_0_1_3-0_0.71-1_0.23-2_1.18-3_0.31\", \"148_l_0_c_0_2_3-0_0.35-1_1.91-2_0.07-3_0.5\", \"149_l_0_c_1_2_3-0_0.23-1_0.1-2_0.03-3_0.28\", \"150_l_0_c_0_1_2-0_0.27-1_0.11-2_0.59-3_0.3\", \"151_l_0_c_0_1_3-0_0.13-1_0.09-2_0.16-3_0.01\", \"152_l_0_c_0_2_3-0_0.41-1_0.23-2_0.26-3_0.29\", \"153_l_0_c_1_2_3-0_0.84-1_0.71-2_0.7-3_0.08\", \"154_l_0_c_0_1_2-0_0.66-1_0.44-2_0.1-3_1.0\", \"155_l_0_c_0_1_3-0_0.28-1_0.23-2_0.2-3_0.02\", \"156_l_0_c_0_2_3-0_0.26-1_1.45-2_0.37-3_0.45\", \"157_l_0_c_1_2_3-0_0.16-1_0.84-2_0.62-3_0.21\", \"158_l_0_c_0_1_2-0_0.38-1_0.4-2_0.28-3_0.46\", \"159_l_0_c_0_1_3-0_0.44-1_0.75-2_0.03-3_1.07\", \"160_l_0_c_0_2_3-0_0.58-1_0.11-2_0.6-3_1.06\", \"161_l_0_c_1_2_3-0_1.35-1_0.5-2_0.2-3_0.24\", \"162_l_0_c_0_1_2-0_0.73-1_0.27-2_0.48-3_2.1\", \"163_l_0_c_0_1_3-0_0.59-1_0.6-2_0.14-3_0.1\", \"164_l_0_c_0_2_3-0_0.45-1_0.59-2_0.11-3_0.24\", \"165_l_0_c_1_2_3-0_0.04-1_1.36-2_0.69-3_0.07\", \"166_l_0_c_0_1_2-0_0.06-1_0.11-2_0.88-3_0.96\", \"167_l_0_c_0_1_3-0_0.34-1_0.09-2_1.17-3_0.11\", \"168_l_0_c_0_2_3-0_0.07-1_1.72-2_1.1-3_0.71\", \"169_l_0_c_1_2_3-0_0.55-1_0.53-2_0.37-3_0.22\", \"170_l_0_c_0_1_2-0_0.1-1_0.78-2_0.4-3_1.28\", \"171_l_0_c_0_1_3-0_0.16-1_0.07-2_0.24-3_0.2\", \"172_l_0_c_0_2_3-0_0.19-1_0.92-2_0.79-3_0.12\", \"173_l_0_c_1_2_3-0_0.27-1_0.12-2_0.4-3_0.41\", \"174_l_0_c_0_1_2-0_0.67-1_1.34-2_0.58-3_0.7\", \"175_l_0_c_0_1_3-0_0.18-1_0.89-2_0.68-3_0.37\", \"176_l_0_c_0_2_3-0_0.41-1_0.47-2_0.97-3_0.08\", \"177_l_0_c_1_2_3-0_1.31-1_0.48-2_0.28-3_0.05\", \"178_l_0_c_0_1_2-0_0.48-1_1.05-2_0.66-3_0.6\", \"179_l_0_c_0_1_3-0_0.98-1_0.33-2_0.71-3_0.35\", \"180_l_0_c_0_2_3-0_0.56-1_0.69-2_0.05-3_0.18\", \"181_l_0_c_1_2_3-0_1.86-1_0.25-2_0.31-3_0.18\", \"182_l_0_c_0_1_2-0_1.12-1_1.05-2_0.53-3_1.1\", \"183_l_0_c_0_1_3-0_0.87-1_0.43-2_0.03-3_0.07\", \"184_l_0_c_0_2_3-0_0.65-1_0.94-2_0.1-3_0.7\", \"185_l_0_c_1_2_3-0_0.33-1_0.95-2_0.24-3_0.71\", \"186_l_0_c_0_1_2-0_0.39-1_0.07-2_0.08-3_0.43\", \"187_l_0_c_0_1_3-0_0.05-1_0.18-2_0.24-3_0.2\", \"188_l_0_c_0_2_3-0_0.56-1_1.31-2_0.4-3_0.82\", \"189_l_0_c_1_2_3-0_0.49-1_0.39-2_0.45-3_0.66\", \"190_l_0_c_0_1_2-0_0.09-1_0.85-2_0.28-3_0.85\", \"191_l_0_c_0_1_3-0_0.05-1_0.11-2_0.96-3_0.93\", \"192_l_0_c_0_2_3-0_0.51-1_0.44-2_0.24-3_0.3\", \"193_l_0_c_1_2_3-0_0.22-1_0.67-2_0.61-3_1.16\", \"194_l_0_c_0_1_2-0_0.59-1_0.0-2_0.04-3_0.26\", \"195_l_0_c_0_1_3-0_0.51-1_1.05-2_1.87-3_0.31\", \"196_l_0_c_0_2_3-0_0.17-1_0.62-2_0.92-3_0.31\", \"197_l_0_c_1_2_3-0_0.02-1_0.59-2_1.32-3_0.8\", \"198_l_0_c_0_1_2-0_0.03-1_0.11-2_0.44-3_2.01\", \"199_l_0_c_0_1_3-0_0.82-1_0.29-2_0.02-3_0.3\", \"200_l_0_c_0_2_3-0_0.48-1_0.23-2_0.27-3_0.17\", \"201_l_0_c_1_2_3-0_0.12-1_0.7-2_0.16-3_0.19\", \"202_l_0_c_0_1_2-0_0.26-1_0.66-2_0.53-3_0.76\", \"203_l_0_c_0_1_3-0_0.6-1_1.34-2_0.38-3_0.1\", \"204_l_0_c_0_2_3-0_0.1-1_0.84-2_0.08-3_0.15\", \"205_l_0_c_1_2_3-0_0.88-1_0.28-2_0.67-3_0.83\", \"206_l_0_c_0_1_2-0_0.22-1_0.21-2_1.45-3_0.36\", \"207_l_0_c_0_1_3-0_0.02-1_0.15-2_0.1-3_0.38\", \"208_l_0_c_0_2_3-0_0.41-1_1.88-2_1.04-3_0.83\", \"209_l_0_c_1_2_3-0_0.92-1_1.3-2_0.2-3_0.78\", \"210_l_0_c_0_1_2-0_0.08-1_0.03-2_0.04-3_0.1\", \"211_l_0_c_0_1_3-0_0.83-1_0.46-2_0.19-3_0.34\", \"212_l_0_c_0_2_3-0_0.54-1_1.0-2_0.82-3_0.8\", \"213_l_0_c_1_2_3-0_1.51-1_0.67-2_1.93-3_0.31\", \"214_l_0_c_0_1_2-0_0.04-1_1.63-2_0.74-3_0.07\", \"215_l_0_c_0_1_3-0_0.77-1_0.06-2_2.47-3_1.47\", \"216_l_0_c_0_2_3-0_0.63-1_0.07-2_0.11-3_0.27\", \"217_l_0_c_1_2_3-0_1.25-1_0.56-2_0.11-3_0.06\", \"218_l_0_c_0_1_2-0_0.18-1_0.15-2_0.08-3_0.52\", \"219_l_0_c_0_1_3-0_0.01-1_0.33-2_0.22-3_0.13\", \"220_l_0_c_0_2_3-0_0.5-1_0.55-2_0.03-3_0.27\", \"221_l_0_c_1_2_3-0_0.94-1_0.62-2_0.52-3_0.41\", \"222_l_0_c_0_1_2-0_0.45-1_0.42-2_0.35-3_1.3\", \"223_l_0_c_0_1_3-0_0.07-1_0.07-2_0.13-3_0.04\", \"224_l_0_c_0_2_3-0_1.61-1_0.44-2_0.05-3_0.08\", \"225_l_0_c_1_2_3-0_0.82-1_0.56-2_0.97-3_0.05\", \"226_l_0_c_0_1_2-0_0.19-1_0.32-2_0.45-3_0.5\", \"227_l_0_c_0_1_3-0_0.78-1_0.51-2_2.04-3_0.56\", \"228_l_0_c_0_2_3-0_0.15-1_0.4-2_0.23-3_1.22\", \"229_l_0_c_1_2_3-0_0.26-1_0.23-2_1.38-3_0.32\", \"230_l_0_c_0_1_2-0_0.85-1_0.18-2_0.33-3_0.01\", \"231_l_0_c_0_1_3-0_0.89-1_0.19-2_0.47-3_0.48\", \"232_l_0_c_0_2_3-0_0.47-1_0.49-2_0.32-3_0.02\", \"233_l_0_c_1_2_3-0_1.85-1_0.08-2_0.02-3_0.19\", \"234_l_0_c_0_1_2-0_0.29-1_0.03-2_0.53-3_0.12\", \"235_l_0_c_0_1_3-0_0.56-1_1.17-2_0.53-3_0.3\", \"236_l_0_c_0_2_3-0_0.2-1_0.38-2_1.49-3_0.16\", \"237_l_0_c_1_2_3-0_0.8-1_0.03-2_0.73-3_0.15\", \"238_l_0_c_0_1_2-0_0.01-1_0.01-2_0.47-3_1.36\", \"239_l_0_c_0_1_3-0_0.28-1_0.1-2_1.07-3_0.43\", \"240_l_0_c_0_2_3-0_0.18-1_0.53-2_0.17-3_0.01\", \"241_l_0_c_1_2_3-0_0.7-1_0.72-2_0.42-3_0.97\", \"242_l_0_c_0_1_2-0_0.27-1_0.54-2_0.1-3_0.48\", \"243_l_0_c_0_1_3-0_1.25-1_0.22-2_0.62-3_0.06\", \"244_l_0_c_0_2_3-0_0.17-1_0.97-2_0.03-3_0.16\", \"245_l_0_c_1_2_3-0_0.12-1_0.27-2_1.03-3_0.15\", \"246_l_0_c_0_1_2-0_0.06-1_0.45-2_0.25-3_0.55\", \"247_l_0_c_0_1_3-0_1.46-1_0.26-2_0.27-3_0.32\", \"248_l_0_c_0_2_3-0_0.11-1_1.39-2_0.07-3_0.76\", \"249_l_0_c_1_2_3-0_0.41-1_0.5-2_0.06-3_0.3\", \"250_l_0_c_0_1_2-0_0.94-1_0.09-2_0.09-3_0.83\", \"251_l_0_c_0_1_3-0_0.45-1_0.07-2_0.55-3_0.39\", \"252_l_0_c_0_2_3-0_0.31-1_0.25-2_0.6-3_0.16\", \"253_l_0_c_1_2_3-0_0.18-1_0.12-2_0.13-3_0.55\", \"254_l_0_c_0_1_2-0_0.57-1_1.09-2_0.74-3_0.05\", \"255_l_0_c_0_1_3-0_0.16-1_0.64-2_1.69-3_0.01\", \"256_l_0_c_0_2_3-0_0.09-1_0.99-2_0.18-3_0.01\", \"257_l_0_c_1_2_3-0_1.03-1_0.5-2_0.79-3_0.1\", \"258_l_0_c_0_1_2-0_0.2-1_0.43-2_0.14-3_0.04\", \"259_l_0_c_0_1_3-0_0.19-1_0.38-2_0.83-3_0.35\", \"260_l_0_c_0_2_3-0_0.27-1_0.93-2_0.62-3_0.01\", \"261_l_0_c_1_2_3-0_1.59-1_0.11-2_0.41-3_1.02\", \"262_l_0_c_0_1_2-0_0.88-1_0.16-2_0.27-3_0.14\", \"263_l_0_c_0_1_3-0_0.15-1_0.28-2_1.69-3_0.2\", \"264_l_0_c_0_2_3-0_0.08-1_0.26-2_0.13-3_0.25\", \"265_l_0_c_1_2_3-0_1.11-1_0.58-2_1.7-3_0.04\", \"266_l_0_c_0_1_2-0_0.51-1_0.51-2_0.69-3_1.07\", \"267_l_0_c_0_1_3-0_0.25-1_0.24-2_1.0-3_0.02\", \"268_l_0_c_0_2_3-0_0.09-1_0.68-2_0.05-3_0.21\", \"269_l_0_c_1_2_3-0_0.08-1_0.7-2_1.13-3_0.76\", \"270_l_0_c_0_1_2-0_0.43-1_0.12-2_0.99-3_0.46\", \"271_l_0_c_0_1_3-0_0.33-1_1.36-2_1.4-3_0.15\", \"272_l_0_c_0_2_3-0_0.09-1_0.06-2_0.59-3_0.03\", \"273_l_0_c_1_2_3-0_0.41-1_0.33-2_0.26-3_0.19\", \"274_l_0_c_0_1_2-0_0.03-1_0.31-2_0.04-3_0.37\", \"275_l_0_c_0_1_3-0_0.38-1_0.02-2_0.83-3_0.38\", \"276_l_0_c_0_2_3-0_1.37-1_0.3-2_0.99-3_0.79\", \"277_l_0_c_1_2_3-0_0.24-1_1.02-2_0.43-3_0.01\", \"278_l_0_c_0_1_2-0_0.29-1_1.14-2_0.33-3_0.16\", \"279_l_0_c_0_1_3-0_1.47-1_0.76-2_0.53-3_0.13\", \"280_l_0_c_0_2_3-0_0.48-1_1.42-2_1.84-3_0.41\", \"281_l_0_c_1_2_3-0_1.02-1_0.58-2_0.41-3_0.24\", \"282_l_0_c_0_1_2-0_0.26-1_0.91-2_0.04-3_0.72\", \"283_l_0_c_0_1_3-0_0.43-1_0.36-2_0.02-3_0.18\", \"284_l_0_c_0_2_3-0_0.12-1_0.58-2_0.02-3_0.1\", \"285_l_0_c_1_2_3-0_1.38-1_0.22-2_0.02-3_0.04\", \"286_l_0_c_0_1_2-0_0.25-1_0.42-2_1.01-3_0.07\", \"287_l_0_c_0_1_3-0_0.43-1_0.74-2_1.07-3_0.26\", \"288_l_0_c_0_2_3-0_0.36-1_0.08-2_0.36-3_0.23\", \"289_l_0_c_1_2_3-0_0.93-1_0.11-2_0.92-3_0.1\", \"290_l_0_c_0_1_2-0_0.43-1_0.61-2_0.21-3_0.6\", \"291_l_0_c_0_1_3-0_1.24-1_0.02-2_0.8-3_0.17\", \"292_l_0_c_0_2_3-0_0.3-1_0.0-2_0.15-3_0.86\", \"293_l_0_c_1_2_3-0_0.06-1_0.77-2_1.34-3_0.6\", \"294_l_0_c_0_1_2-0_1.31-1_0.62-2_1.25-3_0.35\", \"295_l_0_c_3-0_2.17-1_0.31-2_1.42-3_0.04\", \"296_l_0_r-0_0.87-1_0.39-2_1.34-3_0.51\", \"297_l_0_r-0_0.23-1_0.53-2_0.56-3_0.98\", \"298_l_0_r-0_0.56-1_1.41-2_1.44-3_0.26\", \"299_l_0_r-0_0.59-1_0.78-2_1.47-3_0.9\", \"300_l_0_r-0_0.62-1_0.23-2_0.19-3_0.56\", \"301_l_0_r-0_0.41-1_0.03-2_1.38-3_0.21\", \"302_l_0_r-0_0.01-1_1.47-2_0.45-3_0.66\", \"303_l_0_r-0_0.83-1_0.41-2_0.59-3_0.34\", \"304_l_0_r-0_1.62-1_0.7-2_1.55-3_0.87\", \"305_l_0_r-0_0.17-1_0.98-2_0.16-3_0.93\", \"306_l_0_r-0_0.92-1_0.94-2_1.06-3_0.74\", \"307_l_0_r-0_1.4-1_0.93-2_0.41-3_0.0\", \"308_l_0_r-0_0.23-1_1.47-2_0.77-3_0.78\", \"309_l_0_r-0_1.16-1_2.18-2_0.25-3_1.16\", \"310_l_0_r-0_1.02-1_1.39-2_0.5-3_1.23\", \"311_l_0_r-0_1.72-1_1.05-2_1.01-3_0.11\", \"312_l_0_r-0_1.87-1_0.67-2_0.39-3_0.83\", \"313_l_0_r-0_0.77-1_1.08-2_0.33-3_0.86\", \"314_l_0_r-0_0.72-1_0.05-2_0.14-3_0.79\", \"315_l_0_r-0_0.33-1_1.79-2_0.32-3_0.21\", \"316_l_0_r-0_0.63-1_1.25-2_0.46-3_0.12\", \"317_l_0_r-0_0.16-1_0.27-2_1.75-3_1.2\", \"318_l_0_r-0_1.31-1_0.1-2_0.5-3_0.9\", \"319_l_0_r-0_0.19-1_0.06-2_2.24-3_0.58\", \"320_l_0_r-0_1.75-1_0.55-2_0.34-3_0.16\", \"321_l_0_r-0_0.31-1_0.53-2_2.1-3_0.64\", \"322_l_0_r-0_0.24-1_0.82-2_0.21-3_0.74\", \"323_l_0_r-0_0.47-1_1.26-2_2.16-3_0.96\", \"324_l_0_r-0_1.01-1_0.27-2_0.73-3_0.92\", \"325_l_0_r-0_0.12-1_1.0-2_1.21-3_0.17\", \"326_l_0_r-0_0.43-1_2.22-2_1.0-3_0.89\", \"327_l_0_r-0_0.35-1_1.53-2_0.28-3_0.58\", \"328_l_0_r-0_1.67-1_0.47-2_0.37-3_0.79\", \"329_l_0_r-0_0.43-1_0.31-2_0.64-3_1.43\", \"330_l_0_r-0_0.81-1_0.73-2_1.88-3_2.11\", \"331_l_0_r-0_0.71-1_0.17-2_0.9-3_0.29\", \"332_l_0_r-0_1.67-1_0.11-2_0.33-3_0.87\", \"333_l_0_r-0_0.65-1_0.8-2_0.72-3_1.29\", \"334_l_0_r-0_1.22-1_1.12-2_0.0-3_0.3\", \"335_l_0_r-0_0.98-1_1.18-2_1.75-3_0.04\", \"336_l_0_r-0_0.38-1_0.07-2_1.0-3_0.88\", \"337_l_0_r-0_0.11-1_1.43-2_1.12-3_0.64\", \"338_l_0_r-0_0.84-1_0.93-2_0.04-3_0.27\", \"339_l_0_r-0_0.93-1_0.25-2_0.06-3_0.44\", \"340_l_0_r-0_1.28-1_2.22-2_0.4-3_0.68\", \"341_l_0_r-0_0.18-1_0.32-2_0.67-3_0.18\", \"342_l_0_r-0_0.08-1_1.23-2_0.18-3_0.85\", \"343_l_0_r-0_0.23-1_1.24-2_0.82-3_0.97\", \"344_l_0_r-0_0.21-1_0.58-2_0.09-3_1.16\", \"345_l_0_r-0_0.1-1_1.2-2_0.08-3_0.48\", \"346_l_0_r-0_0.12-1_0.67-2_2.58-3_0.04\", \"347_l_0_r-0_1.23-1_1.95-2_0.25-3_0.45\", \"348_l_0_r-0_1.07-1_0.72-2_0.64-3_2.11\", \"349_l_0_r-0_1.11-1_0.0-2_1.97-3_1.2\", \"350_l_0_r-0_0.23-1_0.35-2_0.09-3_0.48\", \"351_l_0_r-0_1.47-1_1.03-2_0.52-3_0.24\", \"352_l_0_r-0_0.62-1_0.55-2_0.37-3_0.91\", \"353_l_0_r-0_0.37-1_0.64-2_0.98-3_1.32\", \"354_l_0_r-0_0.46-1_0.47-2_0.24-3_1.16\", \"355_l_0_r-0_0.77-1_1.21-2_0.65-3_0.65\", \"356_l_0_r-0_1.56-1_0.53-2_0.21-3_0.16\", \"357_l_0_r-0_0.91-1_0.03-2_0.22-3_0.44\", \"358_l_0_r-0_0.22-1_1.31-2_0.67-3_0.07\", \"359_l_0_r-0_0.24-1_0.75-2_0.64-3_1.0\", \"360_l_0_r-0_2.34-1_0.38-2_0.15-3_0.53\", \"361_l_0_r-0_0.28-1_0.07-2_0.79-3_0.62\", \"362_l_0_r-0_0.6-1_1.18-2_0.0-3_0.28\", \"363_l_0_r-0_0.67-1_0.7-2_0.34-3_0.83\", \"364_l_0_r-0_2.0-1_1.08-2_0.52-3_0.27\", \"365_l_0_r-0_0.45-1_0.96-2_0.98-3_0.78\", \"366_l_0_r-0_0.38-1_0.5-2_0.26-3_0.24\", \"367_l_0_r-0_0.05-1_0.68-2_1.12-3_1.55\", \"368_l_0_r-0_0.28-1_1.87-2_1.34-3_0.81\", \"369_l_0_r-0_0.79-1_1.15-2_0.03-3_1.05\", \"370_l_0_r-0_1.78-1_1.02-2_0.55-3_1.19\", \"371_l_0_r-0_1.59-1_0.6-2_0.19-3_0.01\", \"372_l_0_r-0_0.87-1_0.09-2_1.81-3_0.8\", \"373_l_0_r-0_0.29-1_0.54-2_0.74-3_0.41\", \"374_l_0_r-0_0.63-1_0.43-2_0.1-3_1.03\", \"375_l_0_r-0_0.64-1_0.28-2_0.03-3_0.5\", \"376_l_0_r-0_0.5-1_0.19-2_0.89-3_0.98\", \"377_l_0_r-0_0.49-1_0.72-2_1.25-3_0.19\", \"378_l_0_r-0_1.26-1_1.42-2_0.83-3_0.58\", \"379_l_0_r-0_0.22-1_0.09-2_0.6-3_1.49\", \"380_l_0_r-0_1.6-1_0.19-2_0.58-3_0.69\", \"381_l_0_r-0_0.74-1_0.57-2_1.36-3_0.71\", \"382_l_0_r-0_0.11-1_1.37-2_0.51-3_0.47\", \"383_l_0_r-0_0.61-1_0.42-2_1.39-3_0.86\", \"384_l_0_r-0_0.6-1_1.28-2_2.13-3_1.82\", \"385_l_0_r-0_0.69-1_0.48-2_1.09-3_1.27\", \"386_l_0_r-0_0.21-1_0.59-2_0.88-3_1.15\", \"387_l_0_r-0_0.45-1_0.56-2_0.28-3_0.81\", \"388_l_0_r-0_0.71-1_0.32-2_1.26-3_0.5\", \"389_l_0_r-0_0.28-1_0.09-2_0.14-3_1.13\", \"390_l_0_r-0_0.19-1_0.1-2_1.26-3_1.93\", \"391_l_0_r-0_0.44-1_0.87-2_0.66-3_0.16\", \"392_l_0_r-0_0.42-1_0.77-2_1.21-3_0.81\", \"393_l_0_r-0_0.77-1_0.42-2_1.17-3_0.3\", \"394_l_0_r-0_1.23-1_0.12-2_0.76-3_0.57\", \"395_l_0_r-0_0.48-1_0.45-2_1.65-3_0.93\", \"396_l_0_r-0_0.09-1_0.27-2_0.35-3_1.99\", \"397_l_0_r-0_0.31-1_0.38-2_0.08-3_0.38\", \"398_l_0_r-0_1.35-1_0.59-2_0.83-3_0.74\", \"399_l_0_r-0_1.33-1_0.79-2_0.09-3_1.42\", \"400_l_0_r-0_0.56-1_1.62-2_0.16-3_0.54\", \"401_l_0_r-0_0.2-1_1.62-2_2.07-3_0.41\", \"402_l_0_r-0_0.08-1_1.23-2_0.59-3_1.14\", \"403_l_0_r-0_0.57-1_0.79-2_0.22-3_0.61\", \"404_l_0_r-0_1.08-1_1.36-2_1.11-3_0.64\", \"405_l_0_r-0_0.77-1_0.62-2_1.92-3_0.45\", \"406_l_0_r-0_0.73-1_1.0-2_0.29-3_0.34\", \"407_l_0_r-0_0.16-1_0.26-2_0.39-3_1.25\", \"408_l_0_r-0_1.44-1_1.37-2_0.1-3_1.81\", \"409_l_0_r-0_0.03-1_0.12-2_1.26-3_0.41\", \"410_l_0_r-0_0.81-1_0.09-2_1.15-3_0.77\", \"411_l_0_r-0_0.42-1_0.12-2_0.45-3_0.68\", \"412_l_0_r-0_1.38-1_0.99-2_0.84-3_0.74\", \"413_l_0_r-0_0.07-1_0.7-2_1.3-3_0.32\", \"414_l_0_r-0_0.97-1_0.05-2_0.2-3_0.52\", \"415_l_0_r-0_0.74-1_0.25-2_1.57-3_1.01\", \"416_l_0_r-0_0.74-1_1.77-2_2.09-3_0.76\", \"417_l_0_r-0_0.5-1_0.98-2_0.11-3_0.06\", \"418_l_0_r-0_1.33-1_0.1-2_0.94-3_0.7\", \"419_l_0_r-0_1.12-1_0.54-2_0.09-3_0.14\", \"420_l_0_r-0_0.58-1_0.53-2_0.25-3_0.76\", \"421_l_0_r-0_0.67-1_0.56-2_0.82-3_0.69\", \"422_l_0_r-0_0.3-1_0.23-2_1.06-3_0.22\", \"423_l_0_r-0_0.46-1_0.88-2_0.54-3_0.19\", \"424_l_0_r-0_0.68-1_0.72-2_0.3-3_0.05\", \"425_l_0_r-0_1.8-1_0.57-2_0.4-3_0.54\", \"426_l_0_r-0_1.66-1_0.42-2_1.07-3_1.17\", \"427_l_0_r-0_0.28-1_1.09-2_1.67-3_0.44\", \"428_l_0_r-0_0.97-1_0.91-2_0.93-3_0.17\", \"429_l_0_r-0_0.39-1_0.74-2_0.41-3_1.48\", \"430_l_0_r-0_0.14-1_1.1-2_0.1-3_0.18\", \"431_l_0_r-0_0.21-1_0.67-2_0.84-3_0.98\", \"432_l_0_r-0_0.45-1_0.37-2_2.15-3_1.28\", \"433_l_0_r-0_0.63-1_0.27-2_1.14-3_0.74\", \"434_l_0_r-0_2.05-1_1.55-2_1.38-3_0.66\", \"435_l_0_r-0_0.56-1_1.1-2_2.06-3_1.01\", \"436_l_0_r-0_0.35-1_0.19-2_1.68-3_0.07\", \"437_l_0_r-0_1.14-1_0.09-2_0.13-3_1.67\", \"438_l_0_r-0_0.93-1_0.97-2_0.1-3_0.51\", \"439_l_0_r-0_0.1-1_0.47-2_0.26-3_1.0\", \"440_l_0_r-0_0.6-1_1.74-2_0.89-3_1.37\", \"441_l_0_r-0_0.93-1_0.67-2_0.6-3_0.18\", \"442_l_0_r-0_1.42-1_0.52-2_0.7-3_0.16\", \"443_l_0_r-0_1.74-1_0.66-2_0.93-3_1.04\", \"444_l_0_r-0_0.49-1_0.26-2_0.22-3_1.12\", \"445_l_0_r-0_1.27-1_0.3-2_1.52-3_2.28\", \"446_l_0_r-0_0.11-1_0.01-2_0.38-3_0.69\", \"447_l_0_r-0_1.4-1_0.74-2_0.39-3_0.12\", \"448_l_0_r-0_0.68-1_0.55-2_0.11-3_0.01\", \"449_l_0_r-0_0.98-1_0.85-2_2.3-3_0.91\", \"450_l_0_r-0_1.05-1_0.17-2_2.15-3_0.37\", \"451_l_0_r-0_0.41-1_2.16-2_0.62-3_0.07\", \"452_l_0_r-0_0.6-1_0.34-2_1.21-3_1.22\", \"453_l_0_r-0_0.36-1_0.45-2_0.64-3_1.11\", \"454_l_0_r-0_0.46-1_0.14-2_0.77-3_0.57\", \"455_l_0_r-0_1.37-1_0.41-2_1.35-3_0.08\", \"456_l_0_r-0_0.22-1_0.44-2_0.8-3_0.0\", \"457_l_0_r-0_0.39-1_0.51-2_0.62-3_0.03\", \"458_l_0_r-0_1.73-1_1.12-2_0.54-3_0.34\", \"459_l_0_r-0_0.35-1_0.3-2_0.05-3_1.08\", \"460_l_0_r-0_0.25-1_0.35-2_2.11-3_0.13\", \"461_l_0_r-0_0.14-1_0.54-2_0.84-3_1.53\", \"462_l_0_r-0_0.26-1_0.47-2_1.96-3_1.54\", \"463_l_0_r-0_0.85-1_0.52-2_0.76-3_0.56\", \"464_l_0_r-0_1.07-1_0.65-2_0.76-3_1.28\", \"465_l_0_r-0_0.06-1_0.12-2_0.55-3_0.39\", \"466_l_0_r-0_0.17-1_1.1-2_0.55-3_0.33\", \"467_l_0_r-0_1.32-1_0.43-2_0.32-3_0.11\", \"468_l_0_r-0_0.21-1_0.67-2_2.29-3_0.39\", \"469_l_0_r-0_0.33-1_0.86-2_0.43-3_1.67\", \"470_l_0_r-0_1.25-1_0.34-2_1.62-3_0.14\", \"471_l_0_r-0_1.31-1_0.89-2_1.06-3_0.96\", \"472_l_0_r-0_0.54-1_0.28-2_1.43-3_1.45\", \"473_l_0_r-0_1.5-1_0.71-2_0.84-3_2.07\", \"474_l_0_r-0_0.41-1_0.46-2_0.03-3_0.32\", \"475_l_0_r-0_0.39-1_0.59-2_0.08-3_1.04\", \"476_l_0_r-0_1.04-1_0.76-2_0.89-3_0.11\", \"477_l_0_r-0_0.7-1_0.07-2_0.14-3_0.24\", \"478_l_0_r-0_1.51-1_0.06-2_2.45-3_0.89\", \"479_l_0_r-0_0.03-1_0.9-2_1.52-3_1.44\", \"480_l_0_r-0_0.72-1_1.42-2_0.66-3_1.44\", \"481_l_0_r-0_0.42-1_0.54-2_1.42-3_0.72\", \"482_l_0_r-0_0.47-1_0.18-2_1.43-3_0.75\", \"483_l_0_r-0_0.35-1_0.23-2_1.85-3_0.8\", \"484_l_0_r-0_0.8-1_0.63-2_0.16-3_1.11\", \"485_l_0_r-0_0.53-1_0.03-2_0.39-3_0.03\", \"486_l_0_r-0_1.71-1_0.22-2_2.17-3_0.87\", \"487_l_0_r-0_1.58-1_0.16-2_1.12-3_1.06\", \"488_l_0_r-0_0.25-1_1.15-2_0.37-3_0.96\", \"489_l_0_r-0_0.89-1_0.96-2_0.36-3_0.36\", \"490_l_0_r-0_0.73-1_0.43-2_0.1-3_0.15\", \"491_l_0_r-0_1.11-1_0.38-2_0.38-3_1.34\", \"492_l_0_r-0_0.32-1_0.05-2_0.74-3_0.58\", \"493_l_0_r-0_0.41-1_1.23-2_0.33-3_0.49\", \"494_l_0_r-0_0.66-1_0.08-2_0.02-3_0.17\", \"495_l_0_r-0_0.12-1_0.68-2_1.93-3_1.65\", \"496_l_0_r-0_0.01-1_0.11-2_0.64-3_1.75\", \"497_l_0_r-0_0.01-1_1.34-2_0.8-3_0.43\", \"498_l_0_r-0_1.28-1_0.43-2_1.23-3_0.22\", \"499_l_0_r-0_1.07-1_0.34-2_0.1-3_0.62\", \"500_l_0_r-0_1.6-1_0.17-2_0.81-3_0.7\", \"501_l_0_r-0_0.27-1_0.28-2_0.29-3_1.1\", \"502_l_0_r-0_0.54-1_0.11-2_1.12-3_0.67\", \"503_l_0_r-0_0.31-1_0.8-2_0.59-3_0.45\", \"504_l_0_r-0_0.75-1_0.21-2_1.63-3_0.16\", \"505_l_0_r-0_2.27-1_0.27-2_0.6-3_0.51\", \"506_l_0_r-0_0.65-1_0.38-2_0.38-3_1.07\", \"507_l_0_r-0_0.8-1_0.08-2_0.41-3_1.02\", \"508_l_0_r-0_0.2-1_0.84-2_1.69-3_0.94\", \"509_l_0_r-0_0.68-1_0.01-2_0.27-3_1.39\", \"510_l_0_r-0_1.51-1_0.01-2_0.37-3_1.37\", \"511_l_0_r-0_0.27-1_1.11-2_0.87-3_0.93\", \"512_l_0_r-0_1.9-1_0.25-2_0.75-3_1.18\", \"513_l_0_r-0_0.49-1_1.6-2_0.11-3_0.51\", \"514_l_0_r-0_1.18-1_1.02-2_0.22-3_0.62\", \"515_l_0_r-0_0.81-1_1.54-2_0.36-3_0.13\", \"516_l_0_r-0_0.64-1_0.06-2_0.44-3_1.48\", \"517_l_0_r-0_0.27-1_0.7-2_0.53-3_0.56\", \"518_l_0_r-0_1.36-1_0.79-2_0.47-3_0.07\", \"519_l_0_r-0_0.88-1_0.44-2_0.44-3_0.43\", \"520_l_0_r-0_0.48-1_1.12-2_1.43-3_1.05\", \"521_l_0_r-0_0.25-1_0.62-2_0.02-3_0.49\", \"522_l_0_r-0_0.69-1_0.87-2_0.65-3_1.12\", \"523_l_0_r-0_1.58-1_0.97-2_0.11-3_0.55\", \"524_l_0_r-0_1.47-1_0.11-2_0.36-3_0.05\", \"525_l_0_r-0_1.64-1_0.61-2_1.87-3_0.62\", \"526_l_0_r-0_1.55-1_0.02-2_0.23-3_1.35\", \"527_l_0_r-0_1.07-1_0.2-2_0.65-3_0.4\", \"528_l_0_r-0_0.14-1_0.92-2_0.72-3_0.25\", \"529_l_0_r-0_1.09-1_0.99-2_0.6-3_1.79\", \"530_l_0_r-0_0.14-1_0.04-2_0.51-3_0.81\", \"531_l_0_r-0_1.31-1_0.51-2_1.64-3_1.34\", \"532_l_0_r-0_1.28-1_0.1-2_0.28-3_0.4\", \"533_l_0_r-0_0.44-1_0.53-2_1.22-3_0.53\", \"534_l_0_r-0_1.27-1_0.68-2_1.09-3_0.24\", \"535_l_0_r-0_1.19-1_1.21-2_0.15-3_1.47\", \"536_l_0_r-0_0.35-1_1.06-2_0.33-3_0.66\", \"537_l_0_r-0_0.69-1_0.84-2_0.69-3_1.92\", \"538_l_0_r-0_0.77-1_0.84-2_0.91-3_1.1\", \"539_l_0_r-0_1.44-1_0.51-2_0.55-3_0.76\", \"540_l_0_r-0_1.3-1_0.01-2_1.38-3_1.18\", \"541_l_0_r-0_1.46-1_0.07-2_1.1-3_0.69\", \"542_l_0_r-0_0.57-1_1.16-2_0.16-3_0.37\", \"543_l_0_r-0_0.34-1_0.19-2_0.01-3_0.27\", \"544_l_0_r-0_0.16-1_1.34-2_0.14-3_0.04\", \"545_l_0_r-0_0.69-1_0.5-2_0.46-3_0.01\", \"546_l_0_r-0_0.45-1_0.86-2_0.99-3_0.4\", \"547_l_0_r-0_2.05-1_0.91-2_0.76-3_0.98\", \"548_l_0_r-0_1.2-1_1.93-2_1.72-3_0.3\", \"549_l_0_r-0_0.8-1_0.35-2_1.57-3_1.34\", \"550_l_0_r-0_0.22-1_0.79-2_0.3-3_1.4\", \"551_l_0_r-0_0.94-1_0.08-2_0.22-3_1.15\", \"552_l_0_r-0_0.64-1_0.02-2_1.3-3_1.05\", \"553_l_0_r-0_0.94-1_0.85-2_0.01-3_1.11\", \"554_l_0_r-0_0.3-1_0.34-2_0.8-3_0.5\", \"555_l_0_r-0_0.58-1_0.39-2_0.66-3_0.4\", \"556_l_0_r-0_0.17-1_0.38-2_1.41-3_1.19\", \"557_l_0_r-0_0.33-1_1.41-2_0.29-3_1.07\", \"558_l_0_r-0_0.59-1_0.59-2_0.29-3_0.65\", \"559_l_0_r-0_0.68-1_0.62-2_0.93-3_0.07\", \"560_l_0_r-0_0.2-1_0.73-2_1.81-3_1.1\", \"561_l_0_r-0_0.37-1_0.43-2_1.57-3_0.5\", \"562_l_0_r-0_0.68-1_1.41-2_0.42-3_0.63\", \"563_l_0_r-0_1.06-1_0.11-2_0.6-3_0.71\", \"564_l_0_r-0_0.83-1_1.06-2_0.84-3_0.24\", \"565_l_0_r-0_0.39-1_0.09-2_1.06-3_0.17\", \"566_l_0_r-0_0.37-1_1.46-2_1.07-3_1.0\", \"567_l_0_r-0_0.32-1_0.64-2_0.85-3_0.74\", \"568_l_0_r-0_0.25-1_0.4-2_0.85-3_2.11\", \"569_l_0_r-0_0.72-1_0.46-2_0.63-3_0.36\", \"570_l_0_r-0_0.2-1_0.05-2_1.79-3_1.38\", \"571_l_0_r-0_0.43-1_1.36-2_0.48-3_0.27\", \"572_l_0_r-0_0.24-1_0.96-2_1.59-3_1.53\", \"573_l_0_r-0_0.24-1_0.2-2_1.13-3_0.1\", \"574_l_0_r-0_0.8-1_1.59-2_0.24-3_0.32\", \"575_l_0_r-0_1.45-1_0.65-2_0.88-3_0.09\", \"576_l_0_r-0_0.96-1_0.78-2_0.21-3_1.67\", \"577_l_0_r-0_0.11-1_0.28-2_1.65-3_0.37\", \"578_l_0_r-0_1.2-1_1.53-2_0.29-3_0.77\", \"579_l_0_r-0_0.69-1_0.3-2_0.81-3_0.51\", \"580_l_0_r-0_0.63-1_0.29-2_2.41-3_0.77\", \"581_l_0_r-0_0.54-1_0.1-2_0.25-3_0.69\", \"582_l_0_r-0_0.28-1_0.74-2_0.65-3_0.98\", \"583_l_0_r-0_0.1-1_1.09-2_1.15-3_0.53\", \"584_l_0_r-0_0.24-1_1.64-2_1.91-3_0.24\", \"585_l_0_r-0_0.18-1_1.38-2_0.41-3_1.43\", \"586_l_0_r-0_1.13-1_0.45-2_0.11-3_0.46\", \"587_l_0_r-0_0.26-1_0.41-2_0.21-3_0.72\", \"588_l_0_r-0_0.48-1_1.13-2_0.49-3_0.25\", \"589_l_0_r-0_0.68-1_0.04-2_3.15-3_0.73\", \"590_l_0_r-0_0.65-1_0.08-2_0.04-3_0.14\", \"591_l_0_r-0_1.24-1_0.17-2_0.79-3_0.45\", \"592_l_0_r-0_0.47-1_1.09-2_1.67-3_0.2\", \"593_l_0_r-0_0.42-1_0.82-2_0.24-3_0.34\", \"594_l_0_r-0_0.64-1_1.16-2_0.96-3_0.13\", \"595_l_0_r-0_1.76-1_0.81-2_2.3-3_2.65\", \"596_l_0_r-0_1.58-1_1.13-2_0.58-3_0.23\", \"597_l_0_r-0_1.07-1_0.62-2_0.83-3_1.64\", \"598_l_0_r-0_0.58-1_0.52-2_1.44-3_0.45\", \"599_l_0_r-0_1.31-1_1.0-2_0.13-3_1.32\", \"600_l_0_r-0_0.36-1_1.64-2_0.71-3_0.63\", \"601_l_0_r-0_0.2-1_2.12-2_0.14-3_1.34\", \"602_l_0_r-0_0.58-1_0.27-2_0.86-3_1.06\", \"603_l_0_r-0_0.78-1_1.43-2_0.59-3_1.07\", \"604_l_0_r-0_1.02-1_1.14-2_0.6-3_0.59\", \"605_l_0_r-0_0.22-1_0.81-2_0.62-3_0.76\", \"606_l_0_r-0_0.02-1_0.02-2_0.23-3_0.1\", \"607_l_0_r-0_0.11-1_1.37-2_1.8-3_1.14\", \"608_l_0_r-0_0.92-1_1.22-2_1.01-3_0.56\", \"609_l_0_r-0_1.37-1_1.21-2_0.02-3_1.8\", \"610_l_0_r-0_0.74-1_0.3-2_0.93-3_1.31\", \"611_l_0_r-0_0.14-1_1.04-2_0.85-3_0.12\", \"612_l_0_r-0_1.27-1_0.74-2_0.42-3_0.67\", \"613_l_0_r-0_0.52-1_0.55-2_1.06-3_1.18\", \"614_l_0_r-0_0.3-1_0.99-2_1.75-3_0.41\", \"615_l_0_r-0_0.4-1_1.15-2_0.77-3_1.73\", \"616_l_0_r-0_0.97-1_0.35-2_0.35-3_1.35\", \"617_l_0_r-0_1.15-1_0.96-2_0.77-3_0.21\", \"618_l_0_r-0_0.01-1_0.82-2_0.58-3_0.18\", \"619_l_0_r-0_0.12-1_0.91-2_0.54-3_2.02\", \"620_l_0_r-0_1.23-1_0.11-2_1.26-3_1.34\", \"621_l_0_r-0_0.26-1_0.37-2_0.57-3_1.26\", \"622_l_0_r-0_0.43-1_0.86-2_0.19-3_0.95\", \"623_l_0_r-0_1.04-1_1.08-2_1.66-3_0.12\", \"624_l_0_r-0_0.36-1_0.75-2_0.21-3_1.8\", \"625_l_0_r-0_0.47-1_0.93-2_1.04-3_0.59\", \"626_l_0_r-0_0.85-1_0.26-2_0.11-3_1.53\", \"627_l_0_r-0_0.61-1_0.05-2_0.55-3_0.16\", \"628_l_0_r-0_0.56-1_1.74-2_0.87-3_0.83\", \"629_l_0_r-0_0.38-1_1.33-2_0.87-3_2.11\", \"630_l_0_r-0_1.27-1_0.78-2_1.38-3_0.22\", \"631_l_0_r-0_0.14-1_1.36-2_2.17-3_0.63\", \"632_l_0_r-0_0.24-1_0.22-2_1.32-3_1.75\", \"633_l_0_r-0_1.78-1_0.83-2_1.04-3_0.69\", \"634_l_0_r-0_0.9-1_0.83-2_1.66-3_0.95\", \"635_l_0_r-0_0.31-1_0.21-2_1.74-3_0.05\", \"636_l_0_r-0_1.13-1_1.04-2_0.25-3_1.34\", \"637_l_0_r-0_1.31-1_0.89-2_0.12-3_0.96\", \"638_l_0_r-0_0.22-1_0.89-2_3.17-3_0.91\", \"639_l_0_r-0_0.95-1_1.51-2_0.73-3_0.49\", \"640_l_0_r-0_0.77-1_1.72-2_0.05-3_0.44\", \"641_l_0_r-0_1.4-1_0.09-2_0.3-3_0.97\", \"642_l_0_r-0_0.62-1_0.09-2_0.67-3_0.03\", \"643_l_0_r-0_1.67-1_1.05-2_0.74-3_0.59\", \"644_l_0_r-0_0.81-1_0.89-2_1.05-3_0.0\", \"645_l_0_r-0_0.17-1_1.03-2_1.46-3_0.7\", \"646_l_0_r-0_0.72-1_0.25-2_1.6-3_1.45\", \"647_l_0_r-0_0.72-1_0.18-2_0.06-3_0.14\", \"648_l_0_r-0_1.05-1_1.14-2_0.39-3_0.84\", \"649_l_0_r-0_0.71-1_1.65-2_0.07-3_1.2\", \"650_l_0_r-0_0.1-1_0.22-2_0.07-3_1.32\", \"651_l_0_r-0_0.46-1_0.67-2_1.61-3_0.4\", \"652_l_0_r-0_0.78-1_1.21-2_0.63-3_0.18\", \"653_l_0_r-0_0.42-1_0.85-2_0.31-3_0.43\", \"654_l_0_r-0_1.14-1_0.07-2_0.17-3_1.77\", \"655_l_0_r-0_0.29-1_0.14-2_1.57-3_0.95\", \"656_l_0_r-0_1.16-1_1.78-2_1.93-3_0.38\", \"657_l_0_r-0_0.68-1_0.96-2_1.5-3_0.58\", \"658_l_0_r-0_1.57-1_1.09-2_0.69-3_0.1\", \"659_l_0_r-0_0.81-1_0.03-2_0.36-3_1.67\", \"660_l_0_r-0_0.16-1_0.66-2_1.34-3_1.14\", \"661_l_0_r-0_1.13-1_0.58-2_0.06-3_0.21\", \"662_l_0_r-0_0.88-1_1.13-2_1.48-3_1.35\", \"663_l_0_r-0_2.09-1_0.13-2_0.05-3_1.8\", \"664_l_0_r-0_1.32-1_1.49-2_0.09-3_1.72\", \"665_l_0_r-0_0.54-1_1.36-2_0.74-3_2.08\"], \"type\": \"scatter3d\", \"x\": [0.19048616007432573, -0.48712154759246296, 0.575986146640187, 0.10008741933494592, 0.24320042519474705, 0.334980290923504, -0.5217742368689331, -1.0383995665934296, -1.463825530539814, -1.875141617009167, -2.4749741631607973, -1.0774942583230658, -2.505496001903257, -0.933029043721979, -1.2609916708075497, -0.44184305391275724, -1.7495039559047876, -1.0494520725405203, -1.2057047733289687, -0.996679192648788, -1.9015225951945576, -0.4753930555135746, -2.2556523513696805, -1.5480949732012363, 1.4354692366773092, 0.19786504167126373, -1.2421612785301586, -1.536428536302566, 0.04447693293637145, -1.8727154596467244, 0.5530058481357416, 1.0012120854288282, -0.6271924077958511, -0.5166513065446554, 0.5701520736100745, -0.5194164836060842, -1.462367554756468, -2.8724017105350548, -1.9372530018901553, -2.009001768996929, 0.5333153382338727, -1.5086874725799948, -2.2107721295019775, -1.7893427326235822, -0.8543206476364374, -0.805627917086412, 0.8766197476668325, -2.0065653964552905, 0.020425374337353475, 0.40210206967366746, -0.8544994848093721, -1.2401109595877728, 0.6660823208031819, -2.004010985026614, -1.3582156924254492, -2.1615588216798445, -0.40094009356470117, 0.14629064551185778, 0.46344367488115545, -0.17322540312601975, 0.04129669292631788, -1.0333433210001288, -0.8784035127751099, 0.3833662818254653, 1.0703303920000953, -0.39129799226907847, 0.11027280825423436, 1.2255033561830757, -1.3925588535828513, 0.25171238680215624, 0.6010743698397014, -0.5427586524146468, 0.39003282872359435, 0.016373760125769632, -1.5675031712001504, -1.3691894641960107, -0.6356511780459421, -1.0614886549478464, 0.11169350342206985, -0.9416520227249521, -0.47256757570808705, 0.09662199167059193, -0.14957409903212837, -3.488103770159715, 0.7278813777986468, -1.4048123564558739, -1.6384871785143256, 0.6155877285355855, -0.706666911054535, -0.4256461287435429, 0.03960180713544337, -1.9215853324728982, -1.5827642421068076, 0.017834085342552264, -0.8570814840419144, -0.6945535757432738, -1.5561213543028436, 0.9936972240780264, -2.109692509544974, -3.1641321646311744, 0.6341127339079897, -0.9058609959170335, -2.487103622976711, -1.5449229994241145, 0.18381393456827055, -0.8115830230830156, -2.8532391974538553, -0.8782577265712516, 1.0427999101888479, 0.7262173284929647, -0.3964408535092261, -1.2630330686462699, -0.4639253513995719, -2.071636529183412, -1.0931682264384577, -0.3338355559123328, -1.0730536938875788, 0.29476627333138095, -0.0059489535851443565, -1.593732852869402, 2.2597016071796037, -1.4735671685262668, -1.0185014815745286, 0.3955856279069112, -0.6337784854054254, 0.20256254364096282, -0.3313361889190738, -0.8465334209644271, -2.4992294023332207, -1.7858868199116684, -1.8784487258538327, 0.25948248379716654, 0.1374022332614322, 0.9623012703445322, -2.3989518352014967, 0.05350160260132686, 0.3338993446564136, 0.09577134192227388, -0.09837277629746755, 0.6931629613926404, 0.14268415898870623, -2.213360395195018, -0.9322333669126939, -2.7816345414780255, -1.638684186500774, 0.7046585874737348, -1.0485379141612525, -2.920931171250106, 0.5037867628229302, 0.28367572376916517, -1.1138886637736491, -0.8335470429250543, -1.4264071628448658, -0.07867366465644199, -1.8306469217756518, 0.018111616725764224, -1.282259315183242, -2.9430351459972357, -0.4640844685774371, -1.36929208624643, 1.482945819101201, 0.24318289844347518, -2.0953641738270274, 0.10304044813902502, 0.24074964037776891, -0.7127133436037509, -0.9571853386152049, -1.2557513105229017, -0.7088096229936536, -1.3867643229042579, -1.5558092970097612, 0.1991083586991378, 0.11820869825521951, 0.41575601137121754, -2.3708270589989455, 0.3746416909306458, 0.0771917481265405, 0.05300627048104056, -0.6005496074982171, -1.9495693922448276, 0.6005045722522284, 0.21219771328786075, -1.0992002717888767, -1.139002413661855, 0.7009917696564651, 0.8318574248669126, -2.6954803990000515, -1.3269114072423296, -1.0721295625409362, 0.6648779535781035, -0.8450331255457939, -1.6479670402506144, 0.29520425197521427, 1.1593869896356428, -0.2562473538631652, 0.30963430475884857, 0.3133413796001927, 0.8020511806847499, -2.009333516716911, 0.30479133705212114, -0.16914020333297608, -0.604839501428462, -1.2171154842227956, 0.09793543454475495, -0.9115798506760413, 1.7760357146597983, -1.4581661414438287, 0.3771240981012902, -3.2930071598211583, -1.2407191772975747, -0.09686727118572946, 0.33911929590702417, -0.8000153235345928, -1.4558302227352404, -0.06694273928683914, 1.4663198022525528, 0.2694190438562316, 0.05644899074732068, -1.8953721724210297, -2.0135632621324016, 0.435740359372643, 0.41306456185902074, -2.0753170760425492, 0.03946819955998482, 0.07949501255825275, -1.101306372840006, -0.8627899952737256, 1.1995644652227693, 1.2228122561800325, 0.32454616620075827, -2.052751076494766, 0.9704341396690837, 0.024373619758305987, -0.20739411061069912, -1.2290259813266329, 0.30377783711442774, 0.968948015968766, 0.19679857520114363, -1.3643935144428412, -0.43106802221562157, -0.153831339354901, -2.2877846292195763, -0.4774256982339624, 0.06446256224511004, 0.1590200420239578, 0.14809141037431073, -2.740919740406391, -1.68785313116018, -0.7691836385332133, -1.5991822169621326, -3.278364298516936, 1.3093366509011064, 0.8993474702819921, -0.5932198707982539, -1.4687215682199006, 0.010591912902250478, -0.3456512271594605, 0.10105754790089216, -1.708161595899094, -0.34590500738107177, 0.0059216776225394785, -1.9538404232676387, -0.5623702410130904, -0.5115119127187775, 0.24847056482843533, 0.03589788772276714, -1.5231975418503991, 0.021068152869207157, -2.7986634313908265, 0.8110809519315905, -0.4563820547497217, 1.4782943572027767, 0.033788864387920725, 1.0135411061248774, -2.0684210601417856, -0.38074201422287146, 0.7911684698565575, -2.480710447152739, -0.15795288231278715, 0.13181025784674083, -1.4289487260902178, -0.88499399881459, -1.1228037493443919, 0.6139793597609617, 0.09828944980042986, -0.038868578146250665, -1.343410050958308, 0.6308207702858999, -0.41772183743905456, -2.516225400331002, -0.8127831545493769, 0.8569456032416922, -1.3072183673257947, -0.8012175572131488, -0.3482319261853116, -2.281594145455001, -1.0400384751095195, -1.0197502548557689, -0.2551979019483297, -1.8409864902172457, -2.6035250972032786, -1.4210703672493565, -0.98437722342039, -1.0974704020602548, -3.7960441259680566, -1.3428131735800948, -2.1805644277043257, -0.35070085623826297, -1.9358808940759284, -1.1642887304429868, -2.950010599149596, -2.522948033033504, -1.166489128307056, -1.03327702608129, -0.7947150582325209, -0.8349122962896542, -2.645156627137812, -3.3711252925289137, -1.9313378918030741, -0.5808472943439167, -0.15636234921255987, -1.3551544834199976, -2.1089661275241838, -1.3414282615144555, -0.9205027210397779, -0.16763237351010363, -0.9424180971316384, -0.5754533187718169, -0.794608422099208, -1.4334753607131303, -2.1286377961823972, -0.28630975792387714, -1.4712865792788365, -1.2881370961028709, -1.5998364323225784, -1.5921748844670627, -0.9819450798152697, -2.41866227227886, -0.2730601521754614, -0.4441406015600954, -1.4327446254344733, -0.18020131829250663, -2.699958434169506, -0.9658403194417454, -1.162961753747148, -0.48045298003649406, -0.9189514035649162, -0.45093342643738354, -2.1069337381644306, -2.1278871221913676, -0.7022654837245534, -0.29446949945058054, -0.9101532080866898, -2.5143738027958062, -1.6863073591309652, -1.6890605988032235, -0.16095350380609807, -0.44008929442443945, -2.757040253857679, -1.0016805730660325, -0.5298937987787042, -3.2336450455981316, -2.5021502504222584, -0.8278688700088593, -0.2737516449993934, -0.7772137094217515, -0.23731958818190313, -1.5548677775860076, -0.8123564910745897, -1.0538056345843354, -2.044627342471587, -1.6020765461083823, -0.8027060229074692, -1.8963627940996677, -1.026829733387945, -0.5010046443578543, -0.9800552067714299, -0.4940718393822169, -1.340762722704505, -1.4894078752045918, -1.8205080901207165, -0.9623800143408336, -0.4720010066054803, -0.8605017214505082, -1.8894752441715084, -1.2743798983051149, -1.687882900812669, -1.0601918697910069, -0.4964620978564692, -1.1480188181950024, -2.1725992176194624, -0.1590183590002413, -0.8069078500953097, -1.7114516891754454, -1.1602345415504025, -0.9315122510119798, -1.9854970759097492, -0.6213841179266006, -1.8129457284411394, -1.4214893315141706, -2.999378248803221, -0.4094583316073923, -1.1423448270062246, -2.4333915202343457, -0.644738250962916, -0.4533764296201851, -0.33786647733421493, -1.65908889028186, -3.022754181739844, -0.4137990304096004, -1.0849605064913854, -1.811397865343726, -0.7401466908344623, -2.3039415102301954, -0.5178135115686273, -2.1688448989693923, -0.7613426557991715, -2.6992854473757664, -2.216801625661181, -0.7818185201052346, -0.7562815252392676, -1.7048628031000468, -0.2231788881777469, -2.7874438910287327, -0.6894385677471155, -1.5512517054635002, -2.5554340655315517, -1.9373589554565984, -1.313334540375199, -2.369309013283134, -0.17836209795712643, -1.87316777668589, -1.2757968568649751, -1.1196880179734567, -0.6616287269388117, -1.0090125067974436, -0.306025639591075, -1.6703579492711216, -1.3034408308739793, -1.552605279534299, -1.9525480306709755, -1.980109404964494, -1.697623001339228, -1.7450327424529795, -1.499491617573354, -2.2791246503405533, -2.078598682427298, -0.12189006337176289, -1.6216520507480259, -0.9050762553198751, -1.1203413652128815, -3.9366877824184936, -2.4941981356034773, -1.1111884364692306, -1.6265947438469839, -0.0769160179681202, -0.8834596460260795, -0.02699823041678262, -1.2495563295256815, -2.886163074931103, -1.9718986877380358, -1.7241614457110588, -1.5365146980498574, -1.7638150192085424, -1.3622935038502884, -1.7881617640186365, -2.993151550670876, -1.796864143788376, -0.38731109706406164, -2.003227995465366, -2.5161142416356577, -0.9629905677330427, -2.161695857407249, -2.610603221354209, -0.32376850015189085, -1.0400712041806672, -0.10805615121340262, -1.2259096572308474, -1.583272235627963, -1.5230748987019174, -1.6791041514035507, -0.7151930210471142, -0.9975085118069231, -1.7037921707039465, -1.1054933206349333, -0.030319337918645495, -1.0987515594630384, -1.0619655097466096, -1.0881174182896602, -0.3614325307622349, -0.14604099092700717, -1.6190351049158518, -0.5794176322016173, -0.49197672906647016, -1.0195567394115603, -2.629825409246388, -2.9007317968436963, -1.34882056617116, -0.22064451800474594, -0.6162676417926807, -0.7023706632237916, -1.1015899292504612, -1.0914349731264072, -1.2782125574529903, -1.5980889419635669, -3.2148302531967654, -1.889089872999369, -1.5517087418758357, -1.4253863681469325, -2.1736070829291103, -1.3712108557729972, -2.7195376127993525, -1.1796716719906488, -0.5061895245753966, -1.5895653431902723, -2.0507111221508283, -1.476200474170196, -0.5607974576677801, -2.706293027791611, -2.241372167343551, -2.408994512625916, -1.1390254105854385, -1.1236666479720294, -1.502483650167086, -1.0830974299927971, -1.5704365833142018, -1.7846411702045795, -0.40415652716267425, -1.3324267707503634, -1.7924266711847632, -1.4614954963715472, -1.338939278476795, -1.1330937272077195, -0.5274912374387638, -0.235417953310315, -1.4666155997530916, -2.5198237827886105, -1.9210679830089328, -2.036315921628388, -0.7611693107507549, -1.1793149852532512, -0.6852129768783939, -0.3716797690912238, -0.27327173965501617, -0.038776291706569266, -1.5359211992698276, -2.2184097621617553, -1.3754321151696498, -1.789225427174392, -1.3394571427272066, -1.9890373302133888, -1.1508077247413624, -1.0505361723844786, -1.112063716394778, -0.5030442052210937, -0.8912016375109424, -1.6263126618827746, -2.2139098337730494, -1.4891762632569816, -0.870591162243654, -1.3476827471082962, -1.300341295569684, -0.6325117390290191, -3.029772960079986, -0.2362693657237276, -0.9363300966976283, -0.9965828777476708, -0.7378339447180342, -2.141845047155975, -1.1122023398919147, -1.7716790049034925, -0.3521102720361049, -1.5311466440922938, -0.5195981755528059, -0.9971065187861027, -0.25040965957286354, -2.5451981977717164, -1.601348485247081, -0.7748923551145118, -0.5123794717757824, -0.9650073573962697, -2.72464611577964, -0.9828708091937869, -1.3856391991168386, -0.24034327711111103, -1.631423390182997, -0.8370634959845772, -0.7238005236555279, -0.24534989578404265, -0.7285323973205547, -0.8952400285877812, -0.4473857851018903, -2.0231252492975234, -1.2416242591153406, -1.8004196981911136, -3.1976674115925885, -0.22709513043078222, -2.999932902826831, -0.4512259359708366, -2.9166954901864504, -1.0993124194442143, -1.8001335556274398, -2.01828385001561, -2.4676087936429125, -0.6907571233199699, -1.0439692046026134, -1.3697248108833828, -2.304585095361714, -0.9496493691626074, -1.7996979164380837, -2.1334774148627753, -1.2222978315023318, -0.6661390363633689, -2.526094201373073, -2.1835725451446057, -2.160520407938682, -1.35420609067519, -0.2088405354056777, -1.529325771477438, -2.0162813775616586, -1.3418886615773038, -1.2613685091246645, -0.947497744673544, -1.3945922126310466, -1.8015571402159511, -0.5928743941135037, -1.721927154734142, -0.1644090451512933, -0.8341733555103114, -2.7594892618466567, -0.21876408068620878, -1.4759575117836037, -2.1846228330085418, -0.6886758785864482, -0.9457285892006629, -0.054684782627873574, -1.3395496627636558, -0.9611910945380725, -3.348150160972775, -0.49108033023315545, -0.44102476985450223, -0.9663283536625051, -0.02672736449042279, -3.1812642200002155, -1.286637178781899, -0.7056623003215388, -1.4541250041764893, -1.01013309507329, -2.1259502647018325, -2.038913643761245, -1.3218645995657006, -0.9586587475038074, -1.2038745585078388, -1.4132596947761173, -3.868174115311191, -0.9467410813765639, -1.7579953069204723, -0.5839059576744193, -1.0088705838362357, -1.671795106763605, -1.1361247834026638, -0.21208213494156392, -2.216143081771956, -1.7959256772497671, -1.7227207789365522, -2.4952512661027635], \"y\": [-1.1452398592059188, 0.1764101380700378, -1.7360551367231598, -0.5132423651366104, -1.050269267722827, -0.7777051782910256, -3.713911955141185, -1.111477527961242, -2.073351966053986, -0.2902296567474253, -0.8686207776302951, -0.6762495177067478, -2.3962432102609914, -1.2556720396704775, -0.47247189133421075, -1.083688704626582, -1.0965232885582386, -0.301577972559541, -0.03963981016986784, 0.21851985003248497, -1.9829205550005518, 0.4497641884442487, 0.8198302631662058, -0.4447324122416699, -0.26515680415995013, -1.2078546798017968, -0.5315792134742751, 0.39061460328347763, -0.32354584526269836, -1.5508397617153409, -1.9860800695758982, -2.3140892160047946, -0.9215713240541472, 0.20018715922621477, -0.7168065683752398, -0.7154942812235081, 0.009213145892517982, 0.506766416907457, -0.02311696083806103, 0.0758569438614991, -0.9502051393395027, -0.47070245373642905, 0.12097993935464846, 0.3126072133712594, -0.69557241994138, 0.5606751786272715, -0.5883988254353023, -0.9853827408107085, 0.015421646288500623, -0.4421235580909326, -1.1059908121489779, 1.0194090057688463, -1.6332893069245453, -1.3866916277522479, 0.3521318968153673, 0.19582765973970728, -1.7191866037130752, -1.4936312676417904, -1.3018255940234118, -1.8797978014049062, -0.13381906154448087, 0.18188037859808337, -0.13643535187326394, -1.569857376539161, -0.7425057097686635, -0.9344875615869925, 1.0197141424359297, -1.0984891520047988, -1.7901506410343324, -1.1342646820310531, -0.7599123716900025, -1.2115979209315304, -0.8995368736756157, -1.7889833178964807, -2.2471250003840026, 1.5116615528469723, 0.6126686517449123, -0.8734231618023444, -0.20620716979932907, 1.0694560216673539, -1.1155990964117453, -2.3949132290001147, 0.07354471743323887, -0.26435966012443857, -0.24351996422475553, 0.6358457010798493, -0.5265831098293359, -0.2235650228976258, 0.7688059931895641, -0.03529750718028701, 0.25423162761886986, 0.43672298128966913, -2.148666898788119, -1.5223881423717671, 1.0181317608903901, -0.861228668686414, 0.1383205755287451, -2.2528838164440113, -2.4083083272149333, 0.9968609039310956, -1.0626755275872097, 0.8229299120897531, -0.8758315413010598, 0.08886037395812374, -0.03892523042693985, 0.05603476399785268, -0.6679451997301062, 0.5952240883897264, -1.2075877794530911, -0.836826536041561, -0.5720088664465977, 0.10410902928225219, 1.3442742793520637, 0.7052320713571276, -1.4985902684343717, 0.11033228151377128, 0.1231741422290693, -0.08455867690749386, -1.4000440293696914, 0.2561975491042756, 2.2199824625626747, 1.4340226017566162, -1.6765427815779028, -1.4028812197625764, 0.6464424612953494, -0.5632419060489555, -0.013079276930852535, 0.25975854786635466, 0.8330176494253629, 0.13880850397003042, -1.1013216848804397, -1.2701373914737741, 0.04385165501687416, -4.054207636641843, -1.723849272941533, -1.0774230614357563, -0.040097472700964754, -1.8243753227000394, -1.2072657045758892, -2.3103778117829754, -1.3664905855802256, 0.05646894990117324, -1.8641725054846723, 0.05328051266189693, 0.27352335699557484, -1.9244319935604535, -1.4168861887892827, 0.3058220762418882, -2.3287775338320293, -1.9502878088545954, -0.30023275619272616, 0.010197904714680739, 0.2867657054094299, 0.5330526841669163, -1.0751861503170639, 1.5009085164075828, 0.4472090556318764, 0.21409936279735176, -0.709218797345494, 1.073732806052631, -1.0577744473963437, -1.928763133834925, -2.871050771285261, -2.077809874320846, -2.2587392581853365, 0.07262101786829578, -1.654678048794085, 0.10544854138541382, 0.9613022256100259, 0.21558144778518806, -1.2791706027507455, -1.88306920995541, -1.4733189446778727, -0.41320332958009764, -1.661503236289, -1.3745781185770036, -1.3896137894028373, -0.2649123790484431, -3.5792248502025408, 0.35208177630689486, -1.3660963053947983, 0.1770916729130596, -1.2594638428332172, 0.07030740339806574, -2.027765165862681, 0.706566563217679, -0.8408954063778586, 0.6893187663027662, 1.0248382669588811, -2.5375987903168573, -1.8509716564986096, 0.9325657152870035, -0.9975815737643391, -1.2068485348743312, -0.3568949819291585, 0.832134492444043, -1.4507563304344824, -0.7981534440587665, -2.635879064963245, -2.286688092274101, 1.0684452497259982, 0.1918330206709038, -0.7646810770844917, -0.18439845967632484, 0.15069731180060453, -0.9481459045925349, -0.3586502224045497, -1.0108632231082317, 1.7568501253882536, 0.7833231205305231, -1.340943226265045, -1.1519363490675132, 1.3221189257387778, 0.31202333804967375, -0.7420670231938461, -3.0646417982483274, -1.0603878214419913, -1.5615213773078458, -1.3984886381497974, 0.1348141976731183, -0.7275479644316418, -2.174779488771535, -1.2960381056928045, 1.759417580938099, -0.6730870540978834, 0.048558337211987324, -0.4993041545262711, -0.5641644287361673, -2.242532444189801, -2.345301654343035, -1.7986190214571314, -0.48262509694652367, -0.27519575136535723, 0.19014764256026861, -0.8675099658975358, -1.312208080971134, 0.15571568594363394, -0.14669125685929485, -1.987462761816555, 0.6195163954290479, 1.7103248998506086, 0.9711918406745799, -2.3673365512897497, -0.4122144444020064, -2.3450316936338322, -1.9860643252888546, -0.5473576310410218, 0.3175644314337538, 0.7603123331945807, 0.30006506062206784, -0.8305103021559375, 0.3941120743140438, -0.1613718838275605, 0.7876918637019916, -0.27921245517698934, -1.6758720791707469, 0.008897316149931722, -0.21544863152383797, -0.03588413570116111, 0.3545869459840867, -0.4985567002597999, 1.6204733473699626, -0.14247908744500049, 0.2011615101137958, -2.080085525560139, 0.8238564489874114, -1.0740456559533544, -1.5121478381530111, 0.21284936314756897, -0.757096501787933, -1.737509307765079, -0.1549908096147805, -2.442057589345708, -0.19450069861412678, -1.1404862930779023, 0.8052890910413397, -1.865805486455626, 0.006568432861072004, -1.7405217675930436, -0.8012591250985184, 0.41118502277775537, 0.23886089664438637, -3.400161664497761, -0.9525359149012329, -0.794887785466071, 0.8196891396905266, -0.2205291816205166, -0.26160919562890284, 0.22929478999053354, 0.4327038839431545, -1.3636526493677221, -1.9421750083956737, 0.8551884225684063, 0.6040154076431896, -1.5056949023925263, 0.04312824024352824, -0.5086034822263257, -1.321775873244381, -1.9572050552200035, -0.8962030017120183, -2.094941796929067, -0.8142967101910183, -0.6610395732642778, -0.33987152078821914, -0.8659783017313829, -0.927203199940268, -1.1863342177956293, -0.004247183993204007, -1.4283210403848128, -1.8736927279777036, -1.526424201740216, -0.11401367467923174, -0.8344068631158927, -0.8623707005422487, -2.109983121815441, -0.5574118549544382, -0.11871330646647227, -1.3646811915414112, -1.0692829962011245, -1.0892949652058392, -2.1302159866611907, -0.6393653234120549, -0.7359685278664887, -0.955230006941584, -1.191864329929086, -0.9507130068888892, -0.8873362481701976, -0.9241222658619563, -0.8355314841384202, -2.105893056757826, -2.1065487107555123, -1.3264792462382875, -0.8668458602359724, -2.352283991017538, -0.434070200219281, -0.044043892861691414, -1.5762667643906445, -0.6421200789188312, -0.2666011136232379, -0.710830973185401, -1.6455680677605646, -1.7190965749394984, -0.8532896079792458, -2.3523330912357046, -2.186076760490253, -0.8406771423543576, -0.0439616220908442, -0.6462619797038167, -2.2116857353069834, -1.1972540397984412, -0.4772559998147974, -1.258026271708611, -1.4367725013442223, -2.9541656984464235, -1.1573582089594405, -0.648825852538761, -2.275052234245414, -1.0272252367035408, -0.07376752101156936, -2.4185598331802707, -1.0213019076307797, -0.6170304500747821, -0.27994863259497604, -1.7027265084088974, -1.4012005568563415, -2.338995267179704, -1.5452772516073323, -2.1868050560929966, -1.8636046796240162, -1.333271743183026, -1.3961857733828198, -0.01069738651875507, -1.2856137890353843, -0.8513957579931752, -1.8950070522007672, -1.6676964364793014, -1.8210139885161871, -0.19233048638156802, -0.5805643812901828, -2.7760707861873746, -0.6937655389101327, -0.708788558126738, -1.0185748441149245, -2.148833794339498, -1.820003539442955, -1.3971612968074951, -1.8109473519697938, -1.8651153464079295, -1.0574231902286693, -1.1301192080897133, -1.9349144875670612, -1.6528372342722366, -1.8297938739475217, -1.299419333208413, -0.5710511664230165, -1.94322220242071, -2.2558478929727555, -0.378469534355801, -0.7429561596479906, -1.5690463379153317, -0.5389330175110558, -1.440717800275785, -1.294568821879083, -0.6110880561323895, -2.537538923087915, -0.690587744091087, -0.7820477648011717, -1.7963614250384086, -1.8099480600655458, -0.9487254822976345, -0.7717564053470964, -0.6783317084297901, -1.1989215714759882, -0.3241039971822278, -1.7140085865686854, -1.0134781999145497, -0.8367653478331546, -1.7427810077942474, -0.7749181008783996, -0.13662132498678858, -1.893236974579409, -0.9461657062289441, -3.5784275449222442, -1.8358805068922828, -0.04761270814827612, -1.008556050029735, -1.174094687010915, -0.44196979246646206, -0.1694098009380468, -1.4832034709085242, -1.425670247737167, -0.984235738117297, -2.18248825733151, -0.7428276863730998, -1.6925532275815414, -1.02545532468668, -0.07429886694695309, -2.1555892050069034, -1.2514337593500888, -0.9972300240258103, -1.371060535184383, -2.567623204424846, -0.15860118531386458, -1.0370260608754855, -1.560308050909346, -2.5571596372725693, -2.195681131327854, -1.2121508467787707, -0.00731440201329614, -2.0631063242711667, -0.37402160957153885, -0.07224130115344274, -1.2226571675769342, -3.781213804556179, -0.5740127941069515, -3.2006224291770313, -0.00107117849479621, -1.128879725702776, -0.5495680448023705, -1.0816451651627343, -1.1201231952935626, -1.5281367583567393, -2.1174519702284527, -0.5605187343587565, -1.2783596859779003, -0.39146643126445313, -0.3257914924434191, -0.19058847347617214, -0.562147162444073, -1.6650218364882787, -0.14335385213963092, -1.547978101738134, -1.4470046664856067, -2.0727548260321234, -1.9795570288539412, -1.651575869187963, -1.3635831846197886, -1.405739951065497, -0.8911934144293322, -1.4368570715122608, -1.4425292863020323, -1.0532641474101818, -1.304704197604089, -0.8005684893053178, -1.2455986273113009, -1.3589038169892174, -0.868140881611361, -1.4190958790492243, -0.9555775104809145, -1.2414840173846025, -0.8453102078284543, -1.339473154831336, -1.3831872066622715, -1.3217351081359245, -0.16696592793443643, -1.646702043423798, -2.0478572649410247, -0.43299706930298576, -2.2018485158335936, -3.609925507577992, -1.026648451349626, -1.3994977609442083, -0.6720990424030605, -0.44856681925426933, -0.1584922664816747, -2.0120938663493932, -1.8030696362456216, -1.0196756761578758, -0.9412937515376139, -2.0438232826557146, -2.2863575499803455, -0.934924249244554, -1.6886244871137772, -0.9922801523878133, -0.616496924344396, -0.13331242334442361, -1.569923137589814, -1.5413367154239794, -1.2049529465173592, -0.4326760490991902, -1.051049467666896, -0.6797040790338745, -1.2096329684832474, -2.9259409168399237, -0.053723034305386275, -0.623083830716243, -1.3517581666351681, -0.7197374372096721, -0.25478473458975914, -1.932117166387392, -1.2349326572698092, -1.4352607890309192, -0.3965678753560756, -1.8575588888116557, -1.7413122862614243, -2.391472659487202, -1.6573729726884907, -1.9978567602988166, -1.0984428151198484, -1.4908752859687484, -2.0486728265264023, -0.8243629267399175, -1.2081338032396434, -0.6546523855749717, -1.2285744470126871, -0.00987740720562491, -0.5169872351147915, -2.698515499565395, -1.3945598887496977, -1.3557244146006346, -1.3956981425837867, -1.6830456475223974, -1.7000075780599921, -1.3547366974022688, -0.7054337216249431, -2.158354792510809, -1.1940184437683452, -1.9988864689972212, -0.6515119073831586, -0.9288873983844134, -1.0971595609577989, -0.4957871499390174, -1.1343345886067049, -0.7064613544133569, -2.4770580366661905, -1.0727290690193791, -2.3982216638922313, -1.3923792820489185, -2.141486975997247, -0.3609594357361976, -1.377059716773619, -0.26513722880004764, -1.7004124072640132, -0.10353238875556126, -1.6643254424391163, -1.23179335689269, -1.6709126571511614, -0.7705934239324346, -1.5999520308462911, -0.5534621926519963, -1.0812439216827492, -0.6854403691831858, -3.006986997916156, -2.039013177217353, -2.225769483062898, -1.4336444618304705, -0.45785324509049874, -1.8233340146356534, -1.6211619612635415, -2.400897047828532, -1.833830780247322, -1.792988777184485, -0.19529061022687177, -0.3418793310377044, -0.12835726689557214, -2.6519918912006086, -1.6795839103376582, -1.6362521706764863, -2.2198278177577278, -1.3167146627613597, -0.6347937171730622, -2.687073212089004, -2.185050141960971, -1.0666877641827222, -0.5868379048646295, -1.6851472166180117, -1.2116784335652502, -1.1393893067411862, -2.7369139314751108, -2.498682480706111, -1.3071810306762122, -1.2145469450689028, -0.9366049069334776, -1.1807556603573988, -1.631314924656289, -1.7336281454739648, -2.2723773947915182, -2.0573282327858724, -0.17565264122022117, -2.268881082838272, -2.1488533924962896, -1.6038699514412476, -1.9659557626464959, -0.12349509441996098, -1.981423662639988, -1.71844717129717, -1.531402540941956, -3.5812848317565167, -0.9351595732401163, -2.7986952414952606, -0.3403491232998358, -1.056172338946597, -2.3154839101243625, -2.2845503234548685, -1.2616986800992394, -1.515283060054079, -1.5591659773228017, -1.5211133606000642, -0.9073370337985863, -1.551506353050785, -0.9994868382226276, -1.8480647972175275, -0.18886837381090815, -2.8044563077829485, -0.0022974910114321734, -0.7034335461757046, -1.862757919280003, -0.5490574513698558, -2.441920905034795, -1.1974588946653961, -3.6233665018205663, -1.7550024856197095, -0.18092703919745312, -0.43185252585182243, -2.2979408902506764, -1.7326419317233908, -0.37557946658867747, -1.7190502799336214, -0.8215752303530431, -1.6750761782591432, -3.1357672578635163, -1.3959242381410628, -1.3479665515580477, -2.350304553286036, -2.011915648647735, -2.076700318583988], \"z\": [-0.2265770212146374, -3.9366589562275687, -0.1759931312165346, -0.9076863107622177, 1.12503288945965, -1.6732571928475202, -1.561177827907739, 2.6161642526306235, 3.4262432011509807, -2.5389091600306406, 0.6667422666801261, -2.960591342058013, 1.1754658358467331, -2.6865527247961545, 0.39094498642235376, -0.3956267542493004, 0.21923148657327474, -3.7508525609718752, 1.0821070691211307, -3.236987962542482, -1.123324268329648, -3.158414197990652, 1.0736985762571098, -3.5819613587727037, -0.10783483949022488, 2.3806316116228894, 0.9119047880607791, 0.3876713099050457, 0.31411839411808806, 0.6691913519761616, -2.423137733969136, -0.6335101502900025, -1.8804136389339088, 1.7147877240744194, 0.6115019926498952, -3.952928452780965, -3.2949352119922475, -0.7437038970826118, -0.2782827510404209, 0.8212473293647271, -4.000673616214475, 1.0753839221675197, 1.9886906437359357, 0.7415060220459297, -1.3310314190645394, -2.910353059592261, -0.33908913167267896, 1.9819084649698446, -0.9555164801292566, -2.464602099792093, 2.462978206326672, 2.146200885897186, -3.3636245745461792, 2.0533771698180336, 3.2496462555755663, 1.0116734071878133, -3.121858082355635, -1.2692738420829737, -1.168440048392437, -2.3074225821183276, -1.550624324940471, 3.3976816438593778, -1.2833760554649465, 2.2494939634408837, -3.242942288394825, -0.18289444811535072, -0.21562280316106452, -2.0505024668264342, -3.4052117144302714, 1.3286691944820026, 2.0268126243690734, 1.5351001816425187, 2.506421361622876, -2.077372366996158, 0.39748677732018756, 2.995933285759806, -3.554940506272318, 3.1874505414669496, 1.3220014834183305, 3.266973683783478, -2.105924255484598, -0.058902683049268934, 0.2882719137295915, 0.4147376153150768, -3.7667019547586786, -2.0540448187517035, 2.910516609261853, 2.7348433686631095, -3.070935507747531, -3.846862122923807, 3.39336030576574, 1.347747954683614, 2.917359591052529, -2.552771487236461, -2.2052777656722977, 2.164841470336264, 0.08189128604519613, 2.336077074874728, -0.6041741512674728, 0.41075470519594415, -2.45318158672469, -0.8539481353496647, -3.960297238826402, -0.04589434790557423, -3.320003852012171, -2.6652773993298773, 0.34797597078848597, -1.6288581875845431, 3.017124351781857, 1.773345089984148, 0.05558496593434459, -0.8679697504101793, 0.6441942340460027, 1.7449015061024156, 1.8470223916538933, -0.4416988070482688, -2.7049620709062374, -0.4074061928176409, -2.7152484217041413, 1.2180919740414886, -2.856888376833208, 0.5717828421656188, -2.209073210299934, -2.46673106525217, 3.2527176001423648, 2.440137535464596, 2.2822400518592625, -1.7257175174016588, 2.625061579226294, 2.9717609672206127, -0.4733064541014653, 0.3906230735085803, 1.7858345483317777, -1.9642230222106263, -2.661852258483366, -1.9676103524403032, 2.039679591620918, 2.4597603298576374, 3.4179163560421957, -0.11444783717163709, 0.31891975229172154, 2.6185203250605182, -4.00758095721129, -0.057582197544854274, 1.482643556293593, -2.6052765606989494, -0.11483656594077818, 2.5190345189703036, -0.9064420668355329, -2.0056649316983615, -3.7215963317631755, -3.502346522685024, -2.8194903854718003, 0.7559140859753226, 0.9976788606971017, -3.683174969740482, -2.4003498263054004, 0.208293291977256, -3.437465296239252, 1.6880761885641142, -1.1163271995788753, 3.2780909320791167, -3.1963309186091795, -0.4186065630058815, 2.2999243197141483, 2.4720142518328263, 2.9925121382422795, 1.170698112248573, -2.712919438840703, -1.5456715798879572, -1.7691554796204834, 1.6661772385766405, -0.4549970080342822, -2.204621660477659, -0.69929044136892, -1.107243560162701, -0.3192601571129594, 0.6080832955073028, 1.6259011760204158, 2.282005307951171, -0.17665091239687625, 1.3091831627036656, 3.0702242952485257, -3.7110754933777037, -3.1293417269710564, -0.762725454077247, 0.42520545639760066, 0.20109584784687407, -0.8185078717378014, 2.8531016040653405, -0.8588230746520344, -2.1683602535263544, 0.9184908313844256, 2.870396255273773, -1.0255450777786579, -0.6139092515565157, 1.123448336972623, -3.7539038499303867, -2.075319581121636, 3.106008704593373, -2.8168190563151096, -3.8985279280346576, -2.468342132314432, 2.203844801949037, -2.63954288964336, 0.8283771847570662, -0.5024631973728426, -2.849433926975985, 0.8258591448057331, -3.130983574907109, -3.2548802983072425, -2.4562306546549326, -1.939839590552031, -2.5105703470577514, 2.3008180111102083, -3.2562584466622564, -1.3227127312558582, 1.8783770549249894, 0.5154543569919747, -1.9028249712309715, 0.27153159112006797, -0.7959849764084126, -3.016167069700841, 1.223099446150389, 1.9048013806923452, 3.311744200436225, 2.206355165897399, -0.5736527062892844, 2.469840197963941, 3.367171827921428, -0.007195820147715359, -2.7219344853500416, 1.3261455144259173, 2.1940190054724855, -0.11694566912799464, -0.7189041290740685, -0.27998393447773084, -3.52108596785022, -3.677710513301284, -1.7629714535222796, 0.011108887645268517, -1.0275631880336045, 1.7549093434918825, 0.6581970873727787, -2.512288354861601, 2.5793402604085607, 2.064202667120754, 0.8342013161852133, 1.13848640201497, -2.5933871969427074, 1.5895828334275617, -2.5498906843770364, -0.7549334124420759, -0.5456321242574349, 0.053477888829749354, 2.97063727571141, -3.009367216472311, 3.2136509210071447, 2.155228301584713, -2.01610421475621, 2.837350983489147, 1.018779987196945, -1.9594616923451942, -3.645497632550152, -0.258715697187367, 0.21674911774677152, 2.6943802673459967, 1.8558798514332207, -0.9342757428155544, -3.9673931087357235, 0.5149023662332448, 2.777531324834528, 0.7554252438165472, 2.3187905209507136, 0.370485084297389, 1.141862848844931, -3.2322729179627703, -2.7742648680150555, -0.5715584481427909, 3.4477430317996696, -2.4387283069493617, -2.418827769771354, 0.7218964756896664, -0.1828506058799877, -3.7597975891470434, -2.5686087920246963, -0.06870816263096113, -0.3539373132142156, -3.5442401734938844, 0.09662516522293085, -0.5973718873718159, 0.16605928363329703, 2.481047773970885, 1.3057453363071074, -0.9081324338028276, 0.9972457023909094, 0.9406442996623259, 0.9795726306421155, -3.9355413741977157, -2.802020693598573, 0.5560327223083625, 0.20868462070523996, 1.0103672002950228, -3.3330095803879325, 1.3767049920423826, 2.8528749921373713, 0.7416840808926812, 2.224761676041929, -0.7828362272416185, -1.2975590524679506, 1.2285030918974158, 0.47903803773539533, -3.3425009013349065, 2.8013549535441893, 0.9079920750315695, -0.21049172683385065, -0.5680439343357007, -1.1988097021310136, 0.8973715003959999, -2.8483964592879003, -3.6886165800211916, -2.6818544530014847, -3.4792353700432144, 0.9812076764469557, -3.2259886611609367, -3.819939875655139, 1.6985998486069418, -3.017811482105247, -1.6923592008003414, 1.6252658564740505, 2.1630743623209483, 2.1000576375743982, -2.352679355692149, -2.0815888553742443, 0.2981334034574097, -0.7413570690539957, -0.8811945078841616, -2.748156825767435, -1.8784956244832176, -1.3732482008866245, -0.6832344307847671, -1.7698231822407027, -1.6702667038881458, -1.5608309582093218, -2.7628002570451904, 1.4974776883411138, 1.9699624894576813, 2.996313737218334, -3.3626384126952784, -3.500321466028536, 3.1721510478872217, -0.24474887952607105, -3.9367301488226083, 1.3247491265552798, -2.7443298708280013, 0.9440512146460609, -2.499757580708774, -0.5354369917817965, 2.9475420594983106, -1.5975355412196577, -2.1104928384490567, -0.6533959864556453, -3.025776691986244, -3.261693470619079, 0.6605886095396443, 1.8721648157646014, -3.7056264270386636, -1.7438399448981938, -1.3059692572597341, -3.588400608723129, -1.1894657650557718, 2.586042446541142, 2.5691258102338237, -0.4061022095727682, 2.0706444465617544, -2.5609723945169023, 1.185110940703213, -1.485921622108576, -3.1821611431245787, -3.410181178202444, -3.652931520645552, 1.4756102157413418, -3.4267770995631777, 2.923348557639592, -3.6190351315414975, 1.8346215087200441, 1.1533965915663424, -0.8107287594815986, 3.0745874383873266, 2.7451922516701783, -3.494292652907006, 2.4190138734018687, 3.1435917371351927, 0.3000124138014826, -2.629271110725756, -3.67112645576396, -2.7190435770856514, 2.0826454327077117, 0.9403784266822894, 2.323595230723642, -2.4541428415579185, 2.0840042433711163, -3.2426860990891155, -3.549272963078102, 1.6473379862391857, 2.3179376363761746, -0.8597924449482806, 1.252979593795759, 3.045157140418727, -1.0974628848243686, 2.3605968966771833, 3.16331345707533, -2.4051084147074206, 2.220077146508875, 2.7220626862288837, -3.8189216056827644, -2.718253609826592, 0.0625521037507566, -0.7016643956266235, 1.6838351041273363, 1.08716909070524, -0.6859482180129395, -3.4117132065564, -0.19055113290722314, -3.8515412496878794, -0.5433386837373666, -1.956070042819554, -2.1659377765710497, -0.4417792269936225, -3.6985944896428715, 2.7770762012348573, -1.151986893993707, -3.398726540605592, 3.1006163782104936, 2.0762605336377566, 1.5707506680885004, -2.0218853813183744, -2.800348936748796, -0.512313202355613, 2.938780895374382, 2.791061747032451, 0.18170456944367963, 1.473204129406641, 1.7060211065599127, 1.1168758825456315, -3.966408681755195, 0.6941915616692773, 0.6932747955788807, 3.412490342742916, 2.0210956159438327, 2.500558902240183, -2.4831731938620316, -2.8233096435682654, -2.3983981789583346, 1.6889440814375245, -3.8854998662207563, -3.81686332784339, -3.7381013007776605, 0.3369702954355329, -3.2215824697963775, 0.12676860955473224, -1.755256592642632, -1.7650398806633443, 0.8156752031644308, 1.2841800283736537, 2.94651908332654, -3.5038458638941665, -0.11141484566264737, -3.417510696259126, -2.5527578581476567, 2.2796188136805418, -3.6288870655964414, -3.749457313383039, 2.39707447243246, 3.124328598101979, -4.02762856296944, -3.356610690653712, 0.23834927528530692, 2.440369358090738, -3.3250670826853868, -3.122573798436731, 1.3436915511798704, -0.7452279669244342, 2.083816227407513, 1.7671762475985338, 2.2776722611065496, 1.5142178055838764, -1.848914120221958, -3.223593753833597, -1.5281554125558139, -1.0862767937482998, 3.0806472010572614, 3.268026557785233, -1.7204626984177294, 3.068162499462039, -3.8568650692179105, -1.7476639475367253, -1.034598938149454, -0.2985315263019839, -1.0374920311464764, -0.9396145413488011, 1.5708201080531188, 1.605251851400511, 3.445496058381522, 1.6047251362492938, -0.5099318601811778, -1.0679589756031702, -2.259993460645058, 1.4746120888199252, 1.3921461580943522, 2.485947287433606, -2.4784227646569423, -2.2047926173760906, -4.013385376137424, 3.4425304614865935, -3.205933859779178, 1.8608122530132656, -1.3250957718505765, 0.0704539587810924, 0.9165271939201087, 1.2779144922534353, -0.4918866158531614, -3.362067034392455, 0.545604205920931, -3.4395435867779596, -2.3155867557455823, -2.127112861922373, -2.754292952993126, 1.5228445392705643, 2.0697497248141907, -0.80714240660321, -2.8167559551911214, -1.1356544750221702, -1.5567738683039125, 1.5807671233324214, 2.1529944297467, 0.6585013962324284, 2.2661176607468194, 1.9346439293950137, 2.9899224942356897, -2.9672550444227443, -3.363199017786918, -0.47819793318795334, -2.805197357612161, 0.21704560779413562, -2.83720883701952, -0.40411503834327744, 0.9792766790228935, 0.30064837758968643, 3.112430920450839, -2.509445130985398, -3.7630006991493925, -4.039548737831614, 2.7803869934140133, -3.574079902740843, -0.4032667410059543, 1.2531225258922234, 1.0687963600061368, -2.2344711169855898, -0.07296918628561189, -3.83790798625332, 0.5746409922163815, -2.3749808819417453, -2.197364506522253, -3.092686118550377, -0.1721033106552703, 3.1497600899134666, 3.238063857365373, 2.1054516491200213, -3.940630372149734, -1.5892783936236499, 1.6194330840212423, 3.019334769723101, 1.2985822907478877, 0.3150674985676005, 0.09433881311209369, 1.9589740010370944, -0.3654824713827143, -1.1181550106357654, 2.7814224596550545, -0.7655114144733846, -2.6362460921989452, 1.7278867777476563, -0.5347299687065212, 0.32469916630710216, -3.772980115050943, -0.6266654021597429, 1.3626881771425765, -1.0199117932543773, -2.2119656445795286, -0.14194916910621336, 1.1107367339898024, -0.31963020994134306, -3.194637855727305, 2.445375244716061, -3.247004915289552, -1.5114801355574037, -2.6518315629368665, 1.2064337673302745, -2.0448375880285132, -1.093671498805433, 1.338636699180614, 1.0579414665424842, -3.7967535276138213, -1.0759668642760651, -0.7593179534740662, -0.10200008039793973, -2.274053818822603, 0.559090117053068, -2.6442686940746913, -2.8228230832874095, 0.12331703177474651, -1.2468590876265946, 2.229828035858745, 0.4135370427883931, 2.7908565443505724, -3.430692801254315, -1.9369068895573012, 2.425965121499247, 2.2157148180097685, 3.17655421826617, -3.96629056543364, 1.922210194308179, 1.942862528970002, -2.3730952679377855, 1.9163171954997162, -3.369946190315523, -2.969914447456615, 1.7797889073605972, -2.1093763418838236, 1.6244774302636777, -0.6344329304535803, -1.7459119212926568, 3.298669765883113, -2.464233325723619, 0.676796825112751, -2.608630938958834, -2.913329716937299, 2.6715706031486457, 1.8007176806323688, 1.8665389067950624, -3.5289487336778382, -2.880085406951266, 0.593933643678775, -0.34084036621421276, -0.706547919370824, 1.7563592296745334, 0.1444762879150039, 0.8407000544560299, -1.3622045658819881, -2.686096466879251, 0.401811421526717, -2.0171959147233154, -1.5787907046204017, 1.7736458089956484, -1.133639621335532, -0.4752095903775815, 1.4987131783622294, -0.09673243184931923, -3.6112951541430762, 2.4124767871874697, -0.24130852118707447, -2.6379750656365175, -1.9935356850751185, -2.2821511136728985, -2.764257786253233]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 1\", \"marker\": {\"color\": \"rgb(255, 127, 14)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 1\", \"scene\": \"scene4\", \"showlegend\": false, \"text\": [\"666_l_1_m-0_1.42-1_0.04-2_0.58-3_0.4\", \"667_l_1_m-0_1.07-1_0.13-2_0.08-3_0.11\", \"668_l_1_m-0_0.1-1_0.1-2_0.09-3_0.58\", \"669_l_1_m-0_0.99-1_0.44-2_0.12-3_1.24\", \"670_l_1_m-0_0.45-1_0.08-2_0.78-3_0.1\", \"671_l_1_m-0_0.28-1_0.11-2_0.12-3_0.27\", \"672_l_1_c_0_1_2-0_0.43-1_0.28-2_0.33-3_0.41\", \"673_l_1_c_0_1_2-0_0.61-1_0.14-2_0.73-3_0.65\", \"674_l_1_c_0_1_2-0_1.35-1_0.86-2_0.19-3_0.14\", \"675_l_1_c_0_1_2-0_0.06-1_0.48-2_0.19-3_1.15\", \"676_l_1_c_0_1_2-0_0.6-1_0.32-2_0.04-3_0.35\", \"677_l_1_c_0_1_2-0_0.7-1_0.4-2_0.11-3_1.46\", \"678_l_1_c_0_1_2-0_0.48-1_0.42-2_0.47-3_0.31\", \"679_l_1_c_0_1_2-0_0.09-1_0.12-2_0.24-3_1.24\", \"680_l_1_c_0_1_2-0_0.45-1_0.1-2_0.27-3_0.88\", \"681_l_1_c_0_1_2-0_0.01-1_0.09-2_0.01-3_1.53\", \"682_l_1_c_0_1_2-0_0.02-1_0.13-2_0.6-3_0.43\", \"683_l_1_c_0_1_2-0_0.37-1_0.43-2_0.01-3_1.33\", \"684_l_1_c_0_1_2-0_0.85-1_0.14-2_0.37-3_0.32\", \"685_l_1_c_0_1_2-0_0.13-1_0.81-2_0.22-3_0.28\", \"686_l_1_c_0_1_2-0_1.47-1_0.36-2_0.51-3_0.29\", \"687_l_1_c_0_1_2-0_0.73-1_1.04-2_0.17-3_1.62\", \"688_l_1_c_0_1_2-0_0.55-1_0.14-2_0.05-3_0.72\", \"689_l_1_c_0_1_2-0_0.17-1_0.19-2_0.07-3_0.08\", \"690_l_1_c_0_1_2-0_0.62-1_0.75-2_0.21-3_1.57\", \"691_l_1_c_0_1_2-0_1.1-1_0.23-2_0.17-3_0.56\", \"692_l_1_c_0_1_2-0_0.36-1_0.43-2_0.66-3_0.14\", \"693_l_1_c_0_1_2-0_0.31-1_0.04-2_0.05-3_0.44\", \"694_l_1_c_0_1_2-0_0.03-1_0.19-2_0.44-3_0.45\", \"695_l_1_c_0_1_2-0_0.33-1_0.03-2_0.11-3_0.86\", \"696_l_1_c_0_1_2-0_1.0-1_0.88-2_0.06-3_0.11\", \"697_l_1_c_0_1_2-0_0.04-1_0.22-2_0.36-3_0.84\", \"698_l_1_c_0_1_2-0_0.4-1_0.25-2_0.96-3_0.07\", \"699_l_1_c_0_1_2-0_0.04-1_0.01-2_0.26-3_0.31\", \"700_l_1_c_0_1_2-0_1.03-1_0.19-2_0.27-3_0.75\", \"701_l_1_c_0_1_2-0_0.24-1_0.15-2_0.41-3_1.58\", \"702_l_1_c_0_1_2-0_0.29-1_0.73-2_0.21-3_0.48\", \"703_l_1_c_0_1_2-0_0.65-1_0.99-2_0.64-3_1.27\", \"704_l_1_c_0_1_2-0_0.92-1_0.5-2_0.63-3_0.65\", \"705_l_1_c_0_1_2-0_0.37-1_0.37-2_0.14-3_0.71\", \"706_l_1_c_0_1_2-0_0.07-1_0.61-2_0.6-3_1.57\", \"707_l_1_c_0_1_2-0_0.02-1_0.81-2_0.44-3_1.63\", \"708_l_1_c_0_1_2-0_0.42-1_0.4-2_0.17-3_0.57\", \"709_l_1_c_0_1_2-0_0.05-1_0.47-2_0.03-3_0.71\", \"710_l_1_c_0_1_2-0_0.34-1_0.05-2_1.03-3_0.1\", \"711_l_1_c_0_1_3-0_0.31-1_0.36-2_0.38-3_0.28\", \"712_l_1_c_0_1_2-0_0.41-1_0.28-2_0.42-3_0.34\", \"713_l_1_c_0_1_3-0_0.22-1_0.0-2_0.46-3_0.21\", \"714_l_1_c_0_1_2-0_0.1-1_0.73-2_0.14-3_0.31\", \"715_l_1_c_0_1_3-0_0.08-1_0.15-2_1.46-3_0.02\", \"716_l_1_c_0_1_2-0_0.3-1_0.94-2_0.06-3_1.62\", \"717_l_1_c_0_1_3-0_0.21-1_0.0-2_0.93-3_0.06\", \"718_l_1_c_0_1_2-0_1.08-1_0.03-2_0.09-3_0.45\", \"719_l_1_c_0_1_3-0_0.18-1_0.92-2_1.72-3_0.29\", \"720_l_1_c_0_1_2-0_0.07-1_0.03-2_0.03-3_0.56\", \"721_l_1_c_0_1_3-0_0.42-1_0.81-2_1.23-3_0.18\", \"722_l_1_c_0_1_2-0_0.08-1_0.78-2_0.04-3_2.01\", \"723_l_1_c_0_1_3-0_0.64-1_0.25-2_0.52-3_0.12\", \"724_l_1_c_0_1_2-0_0.25-1_1.61-2_0.23-3_1.07\", \"725_l_1_c_0_1_3-0_0.28-1_0.42-2_0.63-3_0.19\", \"726_l_1_c_0_1_2-0_0.2-1_0.49-2_0.29-3_0.86\", \"727_l_1_c_0_1_3-0_0.15-1_1.58-2_0.77-3_0.47\", \"728_l_1_c_0_1_2-0_0.15-1_0.51-2_0.15-3_0.14\", \"729_l_1_c_0_1_3-0_1.1-1_0.03-2_0.87-3_0.14\", \"730_l_1_c_0_1_2-0_0.11-1_0.39-2_0.01-3_0.53\", \"731_l_1_c_0_1_3-0_0.19-1_0.78-2_1.61-3_0.07\", \"732_l_1_c_0_1_2-0_0.39-1_0.52-2_0.39-3_0.81\", \"733_l_1_c_0_1_3-0_0.37-1_0.18-2_1.78-3_0.3\", \"734_l_1_c_0_1_2-0_0.18-1_1.04-2_0.05-3_0.87\", \"735_l_1_c_0_1_3-0_0.03-1_0.47-2_1.25-3_0.23\", \"736_l_1_c_0_1_2-0_0.86-1_0.48-2_0.68-3_0.23\", \"737_l_1_c_0_1_3-0_1.23-1_0.66-2_1.32-3_0.05\", \"738_l_1_c_0_1_2-0_1.06-1_0.31-2_0.02-3_0.8\", \"739_l_1_c_0_1_3-0_0.09-1_0.08-2_0.05-3_0.21\", \"740_l_1_c_0_1_2-0_0.31-1_0.62-2_0.63-3_0.57\", \"741_l_1_c_0_1_3-0_0.54-1_0.86-2_0.71-3_0.39\", \"742_l_1_c_0_1_2-0_0.77-1_1.11-2_0.52-3_0.79\", \"743_l_1_c_0_1_3-0_1.73-1_0.33-2_0.26-3_0.35\", \"744_l_1_c_0_1_2-0_0.28-1_0.73-2_0.08-3_0.9\", \"745_l_1_c_0_1_3-0_0.33-1_0.46-2_0.9-3_0.01\", \"746_l_1_c_0_1_2-0_0.42-1_0.05-2_0.58-3_0.7\", \"747_l_1_c_0_1_3-0_0.05-1_1.24-2_1.46-3_0.1\", \"748_l_1_c_0_1_2-0_0.2-1_0.37-2_0.09-3_0.61\", \"749_l_1_c_0_1_3-0_0.02-1_0.93-2_0.71-3_0.01\", \"750_l_1_c_0_1_2-0_0.16-1_0.28-2_0.71-3_0.12\", \"751_l_1_c_0_1_3-0_0.17-1_0.61-2_1.7-3_0.65\", \"752_l_1_c_0_1_2-0_0.37-1_0.13-2_0.07-3_0.46\", \"753_l_1_c_0_1_3-0_0.41-1_1.05-2_0.49-3_0.37\", \"754_l_1_c_0_1_2-0_0.42-1_0.14-2_0.31-3_0.36\", \"755_l_1_c_0_1_3-0_0.47-1_0.2-2_0.85-3_0.23\", \"756_l_1_c_0_1_2-0_0.08-1_0.19-2_0.21-3_0.15\", \"757_l_1_c_0_1_3-0_0.18-1_0.68-2_0.13-3_0.28\", \"758_l_1_c_0_1_2-0_0.06-1_0.53-2_0.44-3_0.15\", \"759_l_1_c_0_1_3-0_0.5-1_0.18-2_1.22-3_0.01\", \"760_l_1_c_0_1_2-0_0.05-1_0.03-2_0.12-3_0.34\", \"761_l_1_c_0_1_3-0_0.18-1_0.43-2_1.69-3_0.4\", \"762_l_1_c_0_1_2-0_0.37-1_0.14-2_0.07-3_0.43\", \"763_l_1_c_0_1_3-0_0.06-1_0.28-2_0.84-3_0.27\", \"764_l_1_c_0_1_2-0_0.03-1_0.09-2_0.04-3_1.16\", \"765_l_1_c_0_1_3-0_0.24-1_0.65-2_0.36-3_0.27\", \"766_l_1_c_0_1_2-0_0.36-1_0.14-2_0.35-3_1.2\", \"767_l_1_c_0_1_3-0_0.02-1_0.36-2_0.95-3_0.25\", \"768_l_1_c_0_1_2-0_0.1-1_0.08-2_0.34-3_0.78\", \"769_l_1_c_0_1_3-0_0.53-1_0.32-2_1.77-3_0.28\", \"770_l_1_c_0_1_2-0_0.55-1_0.28-2_0.5-3_0.84\", \"771_l_1_c_0_1_3-0_0.1-1_0.03-2_0.74-3_0.04\", \"772_l_1_c_0_1_2-0_0.18-1_0.0-2_0.73-3_0.38\", \"773_l_1_c_0_1_3-0_0.09-1_0.59-2_0.5-3_0.13\", \"774_l_1_c_0_1_2-0_0.37-1_0.89-2_0.54-3_1.03\", \"775_l_1_c_0_1_3-0_0.29-1_0.01-2_1.27-3_0.22\", \"776_l_1_c_0_1_2-0_0.12-1_0.21-2_0.26-3_0.05\", \"777_l_1_c_0_1_3-0_0.07-1_0.44-2_1.03-3_0.46\", \"778_l_1_c_0_1_2-0_0.18-1_0.34-2_0.42-3_0.07\", \"779_l_1_c_0_1_3-0_0.85-1_0.35-2_0.29-3_0.33\", \"780_l_1_c_0_1_2-0_0.29-1_0.43-2_0.21-3_1.24\", \"781_l_1_c_0_1_3-0_0.84-1_0.15-2_0.73-3_0.09\", \"782_l_1_c_0_1_2-0_0.08-1_0.11-2_0.09-3_1.07\", \"783_l_1_c_0_1_3-0_0.59-1_0.51-2_0.24-3_0.15\", \"784_l_1_c_0_1_2-0_1.61-1_0.67-2_0.1-3_0.77\", \"785_l_1_c_0_1_3-0_0.88-1_0.43-2_0.14-3_0.27\", \"786_l_1_c_0_1_2-0_0.31-1_0.26-2_0.17-3_0.07\", \"787_l_1_c_0_1_3-0_1.39-1_0.51-2_0.31-3_0.31\", \"788_l_1_c_0_1_2-0_0.08-1_1.23-2_0.29-3_0.59\", \"789_l_1_c_0_1_3-0_0.58-1_0.11-2_0.54-3_0.03\", \"790_l_1_c_0_1_2-0_0.2-1_0.01-2_0.36-3_0.13\", \"791_l_1_c_0_1_3-0_0.47-1_0.22-2_0.95-3_0.01\", \"792_l_1_c_0_1_2-0_0.87-1_0.0-2_0.13-3_0.65\", \"793_l_1_c_0_1_3-0_0.39-1_0.17-2_1.03-3_0.08\", \"794_l_1_c_0_1_2-0_0.96-1_0.06-2_0.15-3_0.72\", \"795_l_1_c_0_1_3-0_0.18-1_0.01-2_0.29-3_0.2\", \"796_l_1_c_0_1_2-0_0.81-1_0.34-2_0.35-3_0.06\", \"797_l_1_c_0_1_3-0_0.07-1_0.32-2_0.43-3_0.35\", \"798_l_1_c_0_1_2-0_0.3-1_1.08-2_0.46-3_0.32\", \"799_l_1_c_0_1_3-0_0.12-1_0.12-2_1.17-3_0.33\", \"800_l_1_c_0_1_2-0_0.14-1_0.84-2_0.15-3_0.74\", \"801_l_1_c_0_1_3-0_0.7-1_0.21-2_0.9-3_0.5\", \"802_l_1_c_0_1_2-0_0.36-1_0.22-2_0.48-3_1.13\", \"803_l_1_c_0_1_3-0_0.35-1_0.28-2_0.4-3_0.12\", \"804_l_1_c_0_1_2-0_0.63-1_0.27-2_0.08-3_0.34\", \"805_l_1_c_0_1_3-0_0.43-1_0.53-2_1.43-3_0.52\", \"806_l_1_c_0_1_2-0_0.23-1_0.3-2_0.21-3_0.24\", \"807_l_1_c_0_1_3-0_0.33-1_0.93-2_0.25-3_0.51\", \"808_l_1_c_0_1_2-0_0.21-1_1.44-2_0.65-3_1.33\", \"809_l_1_c_0_1_3-0_0.83-1_0.64-2_0.92-3_0.06\", \"810_l_1_c_0_1_2-0_0.46-1_0.22-2_0.2-3_1.21\", \"811_l_1_c_0_1_3-0_0.83-1_0.15-2_0.21-3_0.01\", \"812_l_1_c_0_1_2-0_0.22-1_0.02-2_0.35-3_0.22\", \"813_l_1_c_0_1_3-0_0.42-1_0.47-2_1.47-3_0.2\", \"814_l_1_c_0_1_2-0_0.52-1_0.8-2_0.06-3_0.94\", \"815_l_1_c_0_1_3-0_0.66-1_0.52-2_1.92-3_0.36\", \"816_l_1_c_0_1_2-0_0.05-1_0.11-2_0.11-3_0.56\", \"817_l_1_c_0_1_3-0_0.51-1_0.21-2_0.62-3_0.26\", \"818_l_1_c_0_1_2-0_1.26-1_0.53-2_0.01-3_0.96\", \"819_l_1_c_0_1_3-0_0.19-1_0.09-2_0.2-3_0.48\", \"820_l_1_c_0_1_2-0_0.36-1_0.6-2_0.07-3_0.15\", \"821_l_1_c_0_1_3-0_0.3-1_0.02-2_0.79-3_0.89\", \"822_l_1_c_0_1_2-0_0.42-1_0.06-2_0.16-3_0.73\", \"823_l_1_c_0_1_3-0_0.19-1_0.49-2_0.69-3_0.11\", \"824_l_1_c_0_2_3-0_0.62-1_0.28-2_0.21-3_0.18\", \"825_l_1_c_0_1_2-0_0.35-1_0.27-2_0.15-3_0.27\", \"826_l_1_c_0_1_3-0_0.23-1_0.16-2_0.63-3_0.15\", \"827_l_1_c_0_2_3-0_0.25-1_0.14-2_0.18-3_0.58\", \"828_l_1_c_0_1_2-0_0.57-1_0.52-2_0.42-3_0.12\", \"829_l_1_c_0_1_3-0_0.1-1_0.27-2_1.12-3_0.1\", \"830_l_1_c_0_2_3-0_0.61-1_0.9-2_0.15-3_0.29\", \"831_l_1_c_0_1_2-0_0.61-1_0.04-2_0.36-3_0.22\", \"832_l_1_c_0_1_3-0_1.27-1_0.31-2_1.03-3_0.09\", \"833_l_1_c_0_2_3-0_0.76-1_0.43-2_0.01-3_0.29\", \"834_l_1_c_0_1_2-0_0.52-1_0.2-2_0.54-3_0.82\", \"835_l_1_c_0_1_3-0_0.36-1_0.45-2_0.61-3_0.3\", \"836_l_1_c_0_2_3-0_0.99-1_0.3-2_0.53-3_0.02\", \"837_l_1_c_0_1_2-0_0.59-1_0.24-2_0.57-3_0.18\", \"838_l_1_c_0_1_3-0_0.85-1_0.53-2_0.3-3_0.26\", \"839_l_1_c_0_2_3-0_0.9-1_0.05-2_0.13-3_0.88\", \"840_l_1_c_0_1_2-0_0.14-1_0.16-2_0.08-3_0.68\", \"841_l_1_c_0_1_3-0_0.31-1_0.24-2_1.52-3_0.35\", \"842_l_1_c_0_2_3-0_0.4-1_1.41-2_0.72-3_1.07\", \"843_l_1_c_0_1_2-0_0.96-1_0.84-2_0.1-3_0.87\", \"844_l_1_c_0_1_3-0_0.88-1_0.2-2_1.28-3_0.15\", \"845_l_1_c_0_2_3-0_0.43-1_1.87-2_0.16-3_0.17\", \"846_l_1_c_0_1_2-0_0.22-1_0.19-2_0.75-3_0.17\", \"847_l_1_c_0_1_3-0_1.21-1_0.1-2_0.32-3_0.01\", \"848_l_1_c_0_2_3-0_0.26-1_0.66-2_0.73-3_0.23\", \"849_l_1_c_0_1_2-0_0.17-1_0.31-2_0.13-3_0.58\", \"850_l_1_c_0_1_3-0_0.58-1_0.15-2_0.31-3_0.26\", \"851_l_1_c_0_2_3-0_0.59-1_0.13-2_0.36-3_0.03\", \"852_l_1_c_0_1_2-0_1.06-1_0.07-2_0.94-3_0.2\", \"853_l_1_c_0_1_3-0_1.51-1_0.13-2_0.99-3_0.51\", \"854_l_1_c_0_2_3-0_0.38-1_1.16-2_0.56-3_0.29\", \"855_l_1_c_0_1_2-0_0.53-1_0.05-2_0.38-3_0.8\", \"856_l_1_c_0_1_3-0_0.38-1_0.27-2_1.44-3_0.03\", \"857_l_1_c_0_2_3-0_0.11-1_0.65-2_0.2-3_0.47\", \"858_l_1_c_0_1_2-0_0.47-1_0.97-2_0.49-3_0.53\", \"859_l_1_c_0_1_3-0_0.89-1_0.57-2_0.07-3_0.05\", \"860_l_1_c_0_2_3-0_0.05-1_0.16-2_0.55-3_0.21\", \"861_l_1_c_0_1_2-0_0.38-1_1.12-2_0.13-3_1.38\", \"862_l_1_c_0_1_3-0_0.57-1_0.05-2_0.32-3_0.05\", \"863_l_1_c_0_2_3-0_0.07-1_0.65-2_0.07-3_0.8\", \"864_l_1_c_0_1_2-0_0.04-1_0.28-2_0.06-3_0.15\", \"865_l_1_c_0_1_3-0_0.92-1_0.1-2_1.11-3_0.38\", \"866_l_1_c_0_2_3-0_0.43-1_0.72-2_1.03-3_0.27\", \"867_l_1_c_0_1_2-0_0.06-1_0.73-2_0.06-3_0.66\", \"868_l_1_c_0_1_3-0_0.12-1_0.82-2_0.63-3_0.31\", \"869_l_1_c_0_2_3-0_0.36-1_1.04-2_0.37-3_0.66\", \"870_l_1_c_0-0_0.03-1_0.33-2_0.46-3_0.62\", \"871_l_1_c_0-0_0.09-1_0.63-2_1.16-3_0.45\", \"872_l_1_c_0-0_0.37-1_0.57-2_0.17-3_1.43\", \"873_l_1_c_0-0_1.19-1_0.53-2_0.32-3_0.46\", \"874_l_1_c_0-0_0.76-1_0.53-2_0.03-3_0.09\", \"875_l_1_c_0-0_0.29-1_1.33-2_0.1-3_0.3\", \"876_l_1_c_0-0_0.1-1_0.95-2_0.14-3_0.62\", \"877_l_1_c_0-0_0.36-1_0.37-2_0.97-3_0.06\", \"878_l_1_c_0-0_0.07-1_0.33-2_0.31-3_0.03\", \"879_l_1_c_0-0_0.9-1_0.6-2_0.03-3_1.68\", \"880_l_1_c_0-0_0.18-1_0.95-2_0.59-3_0.52\", \"881_l_1_c_0-0_0.05-1_0.57-2_1.29-3_0.95\", \"882_l_1_c_0-0_0.82-1_0.43-2_1.01-3_0.78\", \"883_l_1_c_0-0_0.42-1_1.29-2_0.89-3_0.32\", \"884_l_1_c_0-0_2.0-1_1.0-2_0.85-3_0.69\", \"885_l_1_c_0-0_1.55-1_0.63-2_0.76-3_0.87\", \"886_l_1_c_0-0_0.31-1_0.91-2_0.47-3_0.23\", \"887_l_1_c_0-0_0.13-1_0.5-2_1.0-3_0.3\", \"888_l_1_c_0-0_0.03-1_0.56-2_1.39-3_1.5\", \"889_l_1_r-0_1.79-1_1.04-2_2.31-3_1.12\", \"890_l_1_r-0_0.48-1_0.22-2_1.16-3_0.42\", \"891_l_1_r-0_0.52-1_1.45-2_0.4-3_1.57\", \"892_l_1_r-0_1.43-1_0.9-2_0.12-3_0.96\", \"893_l_1_r-0_1.01-1_0.45-2_0.75-3_0.54\", \"894_l_1_r-0_0.11-1_1.13-2_0.63-3_1.41\", \"895_l_1_r-0_0.15-1_1.15-2_0.8-3_0.62\", \"896_l_1_r-0_0.48-1_0.01-2_0.18-3_0.65\", \"897_l_1_r-0_0.35-1_0.6-2_0.27-3_0.81\", \"898_l_1_r-0_1.97-1_0.74-2_0.72-3_0.92\", \"899_l_1_r-0_0.14-1_0.89-2_0.12-3_0.34\", \"900_l_1_r-0_0.13-1_0.88-2_0.32-3_0.81\", \"901_l_1_r-0_0.64-1_2.15-2_0.13-3_1.61\", \"902_l_1_r-0_0.63-1_0.27-2_0.33-3_0.48\", \"903_l_1_r-0_0.19-1_0.54-2_0.64-3_0.69\", \"904_l_1_r-0_0.33-1_0.01-2_0.16-3_0.36\", \"905_l_1_r-0_1.22-1_0.76-2_0.4-3_0.59\", \"906_l_1_r-0_1.22-1_0.04-2_1.8-3_0.57\", \"907_l_1_r-0_0.25-1_0.66-2_1.52-3_0.47\", \"908_l_1_r-0_0.21-1_0.34-2_0.01-3_1.16\", \"909_l_1_r-0_0.75-1_2.12-2_0.53-3_1.03\", \"910_l_1_r-0_1.44-1_0.64-2_1.38-3_0.05\", \"911_l_1_r-0_0.47-1_1.33-2_0.07-3_1.21\", \"912_l_1_r-0_0.06-1_0.54-2_1.27-3_0.12\", \"913_l_1_r-0_2.01-1_0.78-2_1.94-3_0.36\", \"914_l_1_r-0_0.22-1_0.38-2_1.33-3_0.27\", \"915_l_1_r-0_2.23-1_0.92-2_0.71-3_0.12\", \"916_l_1_r-0_0.08-1_1.36-2_0.44-3_0.55\", \"917_l_1_r-0_0.09-1_0.15-2_0.19-3_0.45\", \"918_l_1_r-0_2.43-1_0.47-2_1.1-3_0.35\", \"919_l_1_r-0_1.02-1_0.45-2_0.72-3_1.48\", \"920_l_1_r-0_0.73-1_0.84-2_1.02-3_0.29\", \"921_l_1_r-0_0.08-1_1.02-2_0.62-3_0.65\", \"922_l_1_r-0_0.74-1_0.64-2_0.12-3_0.12\", \"923_l_1_r-0_1.13-1_0.11-2_0.8-3_0.32\", \"924_l_1_r-0_0.25-1_1.33-2_0.02-3_0.23\", \"925_l_1_r-0_1.11-1_0.04-2_1.78-3_0.77\", \"926_l_1_r-0_1.35-1_0.1-2_0.48-3_1.26\", \"927_l_1_r-0_0.36-1_0.17-2_0.89-3_2.13\", \"928_l_1_r-0_0.96-1_0.31-2_1.53-3_0.81\", \"929_l_1_r-0_0.3-1_0.37-2_1.39-3_0.23\", \"930_l_1_r-0_0.45-1_0.26-2_0.87-3_0.03\", \"931_l_1_r-0_0.16-1_0.18-2_0.87-3_0.51\", \"932_l_1_r-0_0.21-1_0.21-2_2.18-3_0.53\", \"933_l_1_r-0_0.43-1_2.25-2_1.26-3_0.15\", \"934_l_1_r-0_1.5-1_0.25-2_0.97-3_0.37\", \"935_l_1_r-0_0.47-1_2.16-2_0.63-3_0.82\", \"936_l_1_r-0_0.93-1_0.16-2_0.44-3_1.47\", \"937_l_1_r-0_0.05-1_1.74-2_0.93-3_0.87\", \"938_l_1_r-0_0.29-1_1.08-2_0.0-3_0.99\", \"939_l_1_r-0_0.01-1_0.77-2_0.21-3_0.61\", \"940_l_1_r-0_0.45-1_0.28-2_0.63-3_0.67\", \"941_l_1_r-0_0.41-1_0.33-2_0.37-3_1.01\", \"942_l_1_r-0_0.4-1_0.93-2_0.7-3_1.77\", \"943_l_1_r-0_2.44-1_0.81-2_0.38-3_0.46\", \"944_l_1_r-0_1.82-1_0.75-2_1.24-3_0.04\", \"945_l_1_r-0_0.52-1_0.26-2_0.21-3_0.69\", \"946_l_1_r-0_0.13-1_0.29-2_0.53-3_0.75\", \"947_l_1_r-0_1.02-1_2.23-2_1.29-3_0.15\", \"948_l_1_r-0_0.07-1_1.36-2_0.36-3_1.46\", \"949_l_1_r-0_2.1-1_1.46-2_1.33-3_0.9\", \"950_l_1_r-0_0.08-1_0.68-2_1.98-3_0.33\", \"951_l_1_r-0_0.5-1_0.06-2_1.56-3_0.08\", \"952_l_1_r-0_0.35-1_1.08-2_0.1-3_0.54\", \"953_l_1_r-0_0.35-1_1.03-2_0.61-3_0.27\", \"954_l_1_r-0_1.67-1_1.02-2_0.04-3_0.6\", \"955_l_1_r-0_0.31-1_0.41-2_0.23-3_0.29\", \"956_l_1_r-0_1.41-1_1.27-2_0.98-3_0.6\", \"957_l_1_r-0_0.02-1_0.5-2_0.99-3_0.71\", \"958_l_1_r-0_0.19-1_0.61-2_0.69-3_0.58\", \"959_l_1_r-0_0.32-1_0.88-2_0.57-3_0.76\", \"960_l_1_r-0_0.67-1_0.98-2_0.26-3_0.41\", \"961_l_1_r-0_0.77-1_0.91-2_0.08-3_1.57\", \"962_l_1_r-0_2.06-1_0.03-2_0.25-3_0.96\", \"963_l_1_r-0_0.12-1_0.95-2_1.74-3_0.99\", \"964_l_1_r-0_1.31-1_0.68-2_1.61-3_1.27\", \"965_l_1_r-0_1.59-1_0.81-2_0.98-3_0.51\", \"966_l_1_r-0_0.07-1_1.87-2_1.96-3_0.74\", \"967_l_1_r-0_0.83-1_0.18-2_1.52-3_0.83\", \"968_l_1_r-0_0.75-1_0.08-2_0.76-3_0.21\", \"969_l_1_r-0_0.82-1_0.65-2_0.11-3_1.92\", \"970_l_1_r-0_0.67-1_0.22-2_1.48-3_0.74\", \"971_l_1_r-0_1.31-1_0.79-2_2.08-3_0.71\", \"972_l_1_r-0_0.83-1_1.5-2_0.69-3_0.76\", \"973_l_1_r-0_0.85-1_0.68-2_0.5-3_0.88\", \"974_l_1_r-0_0.72-1_1.06-2_0.31-3_1.36\", \"975_l_1_r-0_0.62-1_0.83-2_1.62-3_0.53\", \"976_l_1_r-0_0.01-1_0.75-2_0.23-3_0.48\", \"977_l_1_r-0_0.96-1_0.08-2_0.27-3_0.35\", \"978_l_1_r-0_0.94-1_0.44-2_0.77-3_0.76\", \"979_l_1_r-0_1.19-1_1.42-2_0.96-3_0.43\", \"980_l_1_r-0_0.05-1_1.82-2_0.04-3_0.09\", \"981_l_1_r-0_0.87-1_0.81-2_1.63-3_0.1\", \"982_l_1_r-0_0.44-1_0.69-2_0.02-3_0.32\", \"983_l_1_r-0_1.11-1_0.62-2_0.31-3_0.41\", \"984_l_1_r-0_1.52-1_0.22-2_0.9-3_1.07\", \"985_l_1_r-0_0.24-1_0.12-2_1.07-3_0.32\", \"986_l_1_r-0_0.38-1_0.56-2_1.33-3_0.41\", \"987_l_1_r-0_1.43-1_2.07-2_1.09-3_0.59\", \"988_l_1_r-0_0.41-1_0.8-2_2.08-3_1.3\", \"989_l_1_r-0_0.25-1_0.46-2_1.33-3_1.29\", \"990_l_1_r-0_0.54-1_1.09-2_0.05-3_0.26\", \"991_l_1_r-0_0.53-1_0.53-2_1.18-3_2.26\", \"992_l_1_r-0_0.03-1_1.39-2_0.7-3_0.58\", \"993_l_1_r-0_0.01-1_1.3-2_0.54-3_0.56\", \"994_l_1_r-0_0.85-1_0.24-2_0.77-3_1.77\", \"995_l_1_r-0_1.54-1_0.04-2_1.13-3_0.78\", \"996_l_1_r-0_0.97-1_0.61-2_0.25-3_0.65\", \"997_l_1_r-0_0.53-1_0.17-2_0.56-3_0.62\", \"998_l_1_r-0_1.47-1_0.14-2_0.31-3_1.22\", \"999_l_1_r-0_0.33-1_0.23-2_0.31-3_0.99\", \"1000_l_1_r-0_0.91-1_0.63-2_1.11-3_0.75\", \"1001_l_1_r-0_0.09-1_0.46-2_0.79-3_0.02\", \"1002_l_1_r-0_0.14-1_0.82-2_0.0-3_0.53\", \"1003_l_1_r-0_1.1-1_0.37-2_0.35-3_0.02\", \"1004_l_1_r-0_0.66-1_0.24-2_0.81-3_1.06\", \"1005_l_1_r-0_0.84-1_0.74-2_0.37-3_0.42\", \"1006_l_1_r-0_0.59-1_1.11-2_0.54-3_1.07\", \"1007_l_1_r-0_1.36-1_1.25-2_0.15-3_0.01\", \"1008_l_1_r-0_0.56-1_0.01-2_0.52-3_0.14\", \"1009_l_1_r-0_0.09-1_0.78-2_1.1-3_0.8\", \"1010_l_1_r-0_1.51-1_1.16-2_0.52-3_0.29\", \"1011_l_1_r-0_0.55-1_1.54-2_0.32-3_0.2\", \"1012_l_1_r-0_1.27-1_0.69-2_0.54-3_0.3\", \"1013_l_1_r-0_1.35-1_0.52-2_0.65-3_1.54\", \"1014_l_1_r-0_0.87-1_0.97-2_0.72-3_0.77\", \"1015_l_1_r-0_2.2-1_0.59-2_0.64-3_0.01\", \"1016_l_1_r-0_0.16-1_0.16-2_0.23-3_0.72\", \"1017_l_1_r-0_0.4-1_0.71-2_0.15-3_0.08\", \"1018_l_1_r-0_0.02-1_1.12-2_0.18-3_0.63\", \"1019_l_1_r-0_0.12-1_0.89-2_0.64-3_0.61\", \"1020_l_1_r-0_1.03-1_0.18-2_0.25-3_0.11\", \"1021_l_1_r-0_0.13-1_0.73-2_0.24-3_0.35\", \"1022_l_1_r-0_0.42-1_0.61-2_0.29-3_0.48\", \"1023_l_1_r-0_0.47-1_1.26-2_0.68-3_0.44\", \"1024_l_1_r-0_1.42-1_0.41-2_1.4-3_0.04\", \"1025_l_1_r-0_2.4-1_0.97-2_1.43-3_1.07\", \"1026_l_1_r-0_0.92-1_0.26-2_0.52-3_0.77\", \"1027_l_1_r-0_1.67-1_0.77-2_0.51-3_1.28\", \"1028_l_1_r-0_1.22-1_0.33-2_0.1-3_0.46\", \"1029_l_1_r-0_0.62-1_0.3-2_0.33-3_0.58\", \"1030_l_1_r-0_1.07-1_0.67-2_1.03-3_0.74\", \"1031_l_1_r-0_0.45-1_0.93-2_1.29-3_1.13\", \"1032_l_1_r-0_0.27-1_0.19-2_0.87-3_1.24\", \"1033_l_1_r-0_0.97-1_0.51-2_0.08-3_0.54\", \"1034_l_1_r-0_1.2-1_0.23-2_0.71-3_0.69\", \"1035_l_1_r-0_1.97-1_1.42-2_0.96-3_0.34\", \"1036_l_1_r-0_0.37-1_1.93-2_1.01-3_1.29\", \"1037_l_1_r-0_0.12-1_1.07-2_0.06-3_0.68\", \"1038_l_1_r-0_1.24-1_1.07-2_1.54-3_0.04\", \"1039_l_1_r-0_0.49-1_0.46-2_0.42-3_1.48\", \"1040_l_1_r-0_0.24-1_0.89-2_0.73-3_0.42\", \"1041_l_1_r-0_1.39-1_1.99-2_0.7-3_1.71\", \"1042_l_1_r-0_0.59-1_0.68-2_0.48-3_0.75\", \"1043_l_1_r-0_0.24-1_0.39-2_0.52-3_1.52\", \"1044_l_1_r-0_0.89-1_0.12-2_0.84-3_0.2\", \"1045_l_1_r-0_0.13-1_0.26-2_1.11-3_0.51\", \"1046_l_1_r-0_0.5-1_0.29-2_0.14-3_1.05\", \"1047_l_1_r-0_0.35-1_0.93-2_0.12-3_0.03\", \"1048_l_1_r-0_1.73-1_0.15-2_1.15-3_1.1\", \"1049_l_1_r-0_2.03-1_0.44-2_1.14-3_0.14\", \"1050_l_1_r-0_0.4-1_1.21-2_0.99-3_0.83\", \"1051_l_1_r-0_0.38-1_0.01-2_0.12-3_0.49\", \"1052_l_1_r-0_0.22-1_0.94-2_0.48-3_0.62\", \"1053_l_1_r-0_0.37-1_0.02-2_1.04-3_0.79\", \"1054_l_1_r-0_0.15-1_1.31-2_1.87-3_0.79\", \"1055_l_1_r-0_0.56-1_0.62-2_0.55-3_0.17\", \"1056_l_1_r-0_1.2-1_0.74-2_0.06-3_0.02\", \"1057_l_1_r-0_0.05-1_0.58-2_1.17-3_0.79\", \"1058_l_1_r-0_0.6-1_1.48-2_1.64-3_0.89\", \"1059_l_1_r-0_1.08-1_0.19-2_1.27-3_0.42\", \"1060_l_1_r-0_1.03-1_0.25-2_0.69-3_0.8\", \"1061_l_1_r-0_0.07-1_0.97-2_0.35-3_0.07\", \"1062_l_1_r-0_0.93-1_0.53-2_0.74-3_0.33\", \"1063_l_1_r-0_0.49-1_0.4-2_0.26-3_0.63\", \"1064_l_1_r-0_0.72-1_1.16-2_0.56-3_0.77\", \"1065_l_1_r-0_0.88-1_0.19-2_0.39-3_0.98\", \"1066_l_1_r-0_2.57-1_0.14-2_1.09-3_0.25\", \"1067_l_1_r-0_0.63-1_0.47-2_1.06-3_0.19\", \"1068_l_1_r-0_0.37-1_0.32-2_0.01-3_1.13\", \"1069_l_1_r-0_0.09-1_1.22-2_1.22-3_0.76\", \"1070_l_1_r-0_0.35-1_1.21-2_1.48-3_0.55\", \"1071_l_1_r-0_0.88-1_0.14-2_1.47-3_1.13\", \"1072_l_1_r-0_3.07-1_0.16-2_0.47-3_0.15\", \"1073_l_1_r-0_0.5-1_1.1-2_0.23-3_0.29\", \"1074_l_1_r-0_0.77-1_0.51-2_0.53-3_0.17\", \"1075_l_1_r-0_1.08-1_0.32-2_1.23-3_1.5\", \"1076_l_1_r-0_0.33-1_0.55-2_0.58-3_0.67\", \"1077_l_1_r-0_0.16-1_0.8-2_1.67-3_0.91\", \"1078_l_1_r-0_2.15-1_1.31-2_0.36-3_0.51\", \"1079_l_1_r-0_0.3-1_0.61-2_1.06-3_0.34\", \"1080_l_1_r-0_1.72-1_0.33-2_0.23-3_1.05\", \"1081_l_1_r-0_0.12-1_1.41-2_0.67-3_0.1\", \"1082_l_1_r-0_0.57-1_1.19-2_0.33-3_0.41\", \"1083_l_1_r-0_0.65-1_1.06-2_0.2-3_0.85\", \"1084_l_1_r-0_0.18-1_2.04-2_0.08-3_0.86\", \"1085_l_1_r-0_0.79-1_0.35-2_0.49-3_1.17\", \"1086_l_1_r-0_0.28-1_0.1-2_1.0-3_1.26\", \"1087_l_1_r-0_0.63-1_0.44-2_1.52-3_0.92\", \"1088_l_1_r-0_1.15-1_0.63-2_0.29-3_0.71\", \"1089_l_1_r-0_1.52-1_0.7-2_0.8-3_0.05\", \"1090_l_1_r-0_0.02-1_0.89-2_0.82-3_1.08\", \"1091_l_1_r-0_0.55-1_1.35-2_0.89-3_0.68\", \"1092_l_1_r-0_0.39-1_1.82-2_0.98-3_0.48\", \"1093_l_1_r-0_1.37-1_0.38-2_0.74-3_0.14\", \"1094_l_1_r-0_2.07-1_0.92-2_2.11-3_0.23\", \"1095_l_1_r-0_0.54-1_0.61-2_0.96-3_0.4\", \"1096_l_1_r-0_1.42-1_0.71-2_0.64-3_0.47\", \"1097_l_1_r-0_0.58-1_1.12-2_1.37-3_0.45\", \"1098_l_1_r-0_0.32-1_1.12-2_1.53-3_0.26\", \"1099_l_1_r-0_0.76-1_0.04-2_0.93-3_0.13\", \"1100_l_1_r-0_0.62-1_1.51-2_0.97-3_0.42\", \"1101_l_1_r-0_0.8-1_0.46-2_1.69-3_0.44\", \"1102_l_1_r-0_1.53-1_0.18-2_0.7-3_1.13\", \"1103_l_1_r-0_0.1-1_0.49-2_1.1-3_1.03\", \"1104_l_1_r-0_0.78-1_1.05-2_0.4-3_0.49\", \"1105_l_1_r-0_0.23-1_0.08-2_1.02-3_1.41\", \"1106_l_1_r-0_0.44-1_0.17-2_1.13-3_1.1\", \"1107_l_1_r-0_2.27-1_0.68-2_0.25-3_0.63\", \"1108_l_1_r-0_1.38-1_1.29-2_0.27-3_0.21\", \"1109_l_1_r-0_1.06-1_0.76-2_0.46-3_0.34\", \"1110_l_1_r-0_1.35-1_1.23-2_1.32-3_0.41\", \"1111_l_1_r-0_0.35-1_0.75-2_1.02-3_0.88\", \"1112_l_1_r-0_1.81-1_1.09-2_1.59-3_0.01\", \"1113_l_1_r-0_0.78-1_1.01-2_0.02-3_0.22\", \"1114_l_1_r-0_0.69-1_0.87-2_0.12-3_0.27\", \"1115_l_1_r-0_0.08-1_1.37-2_0.67-3_0.84\", \"1116_l_1_r-0_1.14-1_0.02-2_0.13-3_0.6\", \"1117_l_1_r-0_0.16-1_0.69-2_0.71-3_0.58\", \"1118_l_1_r-0_0.96-1_1.0-2_1.09-3_0.05\", \"1119_l_1_r-0_0.45-1_0.57-2_0.54-3_0.09\", \"1120_l_1_r-0_0.58-1_0.11-2_0.19-3_0.87\", \"1121_l_1_r-0_0.03-1_0.36-2_0.19-3_0.83\", \"1122_l_1_r-0_0.65-1_1.66-2_2.2-3_0.0\", \"1123_l_1_r-0_0.26-1_1.26-2_0.87-3_0.76\", \"1124_l_1_r-0_1.5-1_0.77-2_0.99-3_0.94\", \"1125_l_1_r-0_0.88-1_0.39-2_0.33-3_0.2\", \"1126_l_1_r-0_0.37-1_1.21-2_0.51-3_0.66\", \"1127_l_1_r-0_0.88-1_0.71-2_1.07-3_0.79\", \"1128_l_1_r-0_0.71-1_0.52-2_0.76-3_0.33\", \"1129_l_1_r-0_0.89-1_1.92-2_0.02-3_0.76\", \"1130_l_1_r-0_0.22-1_0.32-2_0.3-3_0.57\", \"1131_l_1_r-0_0.95-1_0.82-2_0.21-3_0.59\", \"1132_l_1_r-0_0.45-1_1.11-2_0.19-3_0.1\", \"1133_l_1_r-0_0.95-1_0.78-2_0.38-3_0.13\", \"1134_l_1_r-0_0.21-1_1.09-2_0.01-3_0.32\", \"1135_l_1_r-0_0.84-1_0.91-2_0.06-3_0.77\", \"1136_l_1_r-0_0.37-1_0.54-2_0.01-3_1.35\", \"1137_l_1_r-0_1.2-1_1.74-2_0.79-3_0.25\", \"1138_l_1_r-0_1.66-1_1.03-2_0.1-3_1.05\", \"1139_l_1_r-0_1.41-1_1.11-2_0.44-3_0.4\", \"1140_l_1_r-0_0.29-1_1.39-2_0.02-3_0.55\", \"1141_l_1_r-0_0.44-1_1.02-2_0.31-3_1.31\", \"1142_l_1_r-0_2.17-1_1.81-2_0.83-3_0.51\", \"1143_l_1_r-0_0.26-1_0.56-2_0.95-3_0.22\", \"1144_l_1_r-0_1.16-1_0.32-2_1.22-3_0.74\", \"1145_l_1_r-0_0.65-1_0.45-2_0.56-3_0.92\", \"1146_l_1_r-0_0.04-1_1.22-2_0.79-3_0.66\", \"1147_l_1_r-0_1.26-1_0.53-2_0.07-3_1.74\", \"1148_l_1_r-0_1.1-1_0.06-2_0.93-3_2.17\", \"1149_l_1_r-0_0.98-1_0.36-2_1.33-3_0.14\", \"1150_l_1_r-0_1.8-1_0.65-2_1.19-3_0.92\", \"1151_l_1_r-0_0.52-1_0.73-2_0.16-3_0.18\", \"1152_l_1_r-0_1.06-1_0.87-2_0.82-3_0.13\", \"1153_l_1_r-0_0.81-1_0.26-2_0.85-3_0.71\", \"1154_l_1_r-0_2.15-1_0.86-2_0.38-3_0.28\", \"1155_l_1_r-0_0.28-1_0.79-2_0.03-3_0.3\", \"1156_l_1_r-0_2.02-1_0.19-2_1.96-3_0.37\", \"1157_l_1_r-0_1.05-1_0.67-2_0.38-3_1.43\", \"1158_l_1_r-0_0.7-1_0.37-2_0.89-3_0.95\", \"1159_l_1_r-0_2.01-1_0.14-2_0.03-3_0.34\", \"1160_l_1_r-0_0.64-1_0.35-2_0.77-3_0.69\", \"1161_l_1_r-0_1.26-1_1.74-2_0.46-3_0.56\", \"1162_l_1_r-0_1.23-1_0.62-2_0.34-3_0.63\", \"1163_l_1_r-0_0.5-1_1.21-2_1.02-3_0.29\", \"1164_l_1_r-0_1.39-1_0.34-2_1.01-3_0.63\", \"1165_l_1_r-0_0.6-1_0.86-2_0.27-3_0.51\", \"1166_l_1_r-0_1.05-1_1.13-2_0.9-3_1.63\", \"1167_l_1_r-0_0.22-1_0.94-2_1.08-3_0.41\", \"1168_l_1_r-0_0.4-1_1.6-2_0.87-3_0.97\", \"1169_l_1_r-0_0.42-1_0.72-2_0.94-3_0.98\", \"1170_l_1_r-0_0.89-1_2.19-2_0.72-3_1.62\", \"1171_l_1_r-0_0.23-1_0.57-2_0.6-3_0.52\", \"1172_l_1_r-0_0.78-1_1.55-2_0.34-3_0.43\", \"1173_l_1_r-0_0.13-1_0.15-2_0.46-3_0.11\", \"1174_l_1_r-0_0.35-1_0.11-2_0.77-3_1.18\", \"1175_l_1_r-0_0.16-1_1.01-2_1.24-3_0.34\", \"1176_l_1_r-0_1.24-1_0.3-2_0.67-3_0.73\", \"1177_l_1_r-0_0.92-1_0.89-2_1.07-3_0.28\", \"1178_l_1_r-0_0.71-1_0.05-2_1.05-3_1.15\", \"1179_l_1_r-0_0.3-1_0.14-2_0.14-3_0.49\", \"1180_l_1_r-0_1.08-1_0.86-2_0.57-3_0.85\", \"1181_l_1_r-0_0.45-1_0.28-2_0.58-3_0.27\", \"1182_l_1_r-0_1.13-1_1.5-2_0.79-3_0.54\", \"1183_l_1_r-0_1.91-1_0.88-2_0.99-3_0.84\", \"1184_l_1_r-0_1.44-1_1.06-2_1.31-3_0.66\", \"1185_l_1_r-0_0.1-1_0.4-2_1.39-3_0.96\", \"1186_l_1_r-0_0.5-1_0.15-2_1.29-3_1.07\", \"1187_l_1_r-0_0.33-1_0.02-2_1.04-3_0.7\", \"1188_l_1_r-0_0.81-1_1.33-2_0.13-3_1.6\", \"1189_l_1_r-0_0.59-1_0.32-2_1.39-3_0.24\", \"1190_l_1_r-0_0.65-1_1.79-2_0.4-3_0.57\", \"1191_l_1_r-0_1.22-1_1.18-2_0.51-3_0.58\", \"1192_l_1_r-0_0.72-1_1.14-2_0.33-3_1.25\", \"1193_l_1_r-0_0.03-1_1.58-2_0.1-3_0.3\", \"1194_l_1_r-0_0.2-1_0.4-2_0.26-3_1.03\", \"1195_l_1_r-0_1.79-1_0.59-2_0.52-3_1.34\", \"1196_l_1_r-0_1.67-1_1.46-2_0.53-3_0.16\", \"1197_l_1_r-0_0.02-1_0.94-2_0.76-3_0.87\", \"1198_l_1_r-0_1.07-1_0.57-2_0.64-3_0.16\", \"1199_l_1_r-0_1.07-1_0.58-2_0.81-3_0.58\", \"1200_l_1_r-0_0.26-1_0.63-2_0.14-3_0.72\", \"1201_l_1_r-0_0.08-1_0.26-2_0.5-3_0.31\", \"1202_l_1_r-0_0.93-1_0.49-2_0.13-3_0.44\", \"1203_l_1_r-0_0.21-1_0.58-2_0.61-3_0.41\", \"1204_l_1_r-0_3.37-1_1.09-2_0.92-3_0.33\", \"1205_l_1_r-0_0.54-1_0.49-2_0.96-3_0.15\", \"1206_l_1_r-0_0.23-1_0.67-2_0.87-3_0.6\", \"1207_l_1_r-0_0.3-1_0.43-2_1.25-3_0.36\", \"1208_l_1_r-0_0.66-1_3.19-2_0.32-3_0.7\", \"1209_l_1_r-0_0.62-1_0.35-2_1.96-3_1.1\", \"1210_l_1_r-0_0.55-1_0.67-2_0.89-3_0.23\", \"1211_l_1_r-0_0.15-1_0.85-2_0.24-3_0.77\", \"1212_l_1_r-0_1.56-1_0.06-2_0.14-3_0.84\", \"1213_l_1_r-0_0.09-1_0.15-2_0.25-3_0.08\", \"1214_l_1_r-0_1.04-1_0.21-2_1.19-3_0.35\", \"1215_l_1_r-0_1.84-1_0.23-2_0.66-3_0.07\", \"1216_l_1_r-0_0.62-1_0.92-2_0.94-3_0.13\", \"1217_l_1_r-0_0.87-1_1.11-2_0.82-3_0.79\", \"1218_l_1_r-0_0.39-1_0.52-2_2.21-3_0.76\", \"1219_l_1_r-0_0.03-1_1.26-2_1.07-3_1.47\", \"1220_l_1_r-0_0.61-1_0.72-2_0.17-3_0.32\", \"1221_l_1_r-0_0.55-1_2.66-2_0.83-3_0.56\", \"1222_l_1_r-0_0.28-1_0.8-2_0.09-3_0.78\", \"1223_l_1_r-0_1.24-1_2.37-2_0.57-3_1.27\", \"1224_l_1_r-0_1.13-1_0.21-2_0.41-3_0.85\", \"1225_l_1_r-0_1.09-1_0.5-2_0.66-3_0.28\", \"1226_l_1_r-0_0.38-1_2.06-2_0.74-3_0.57\", \"1227_l_1_r-0_0.14-1_2.43-2_0.52-3_0.08\", \"1228_l_1_r-0_0.86-1_0.59-2_0.49-3_0.77\", \"1229_l_1_r-0_1.0-1_0.81-2_0.4-3_1.15\", \"1230_l_1_r-0_0.76-1_0.8-2_0.85-3_1.08\", \"1231_l_1_r-0_0.46-1_1.36-2_0.74-3_0.92\", \"1232_l_1_r-0_2.26-1_0.84-2_1.92-3_0.27\", \"1233_l_1_r-0_0.85-1_0.32-2_0.92-3_0.04\", \"1234_l_1_r-0_2.44-1_0.04-2_1.19-3_1.09\", \"1235_l_1_r-0_0.74-1_1.17-2_0.87-3_0.64\", \"1236_l_1_r-0_0.26-1_0.66-2_1.05-3_1.27\", \"1237_l_1_r-0_0.46-1_0.11-2_0.07-3_0.55\", \"1238_l_1_r-0_0.48-1_1.06-2_1.14-3_0.8\", \"1239_l_1_r-0_0.42-1_0.72-2_0.37-3_0.39\", \"1240_l_1_r-0_0.11-1_0.78-2_0.95-3_1.31\", \"1241_l_1_r-0_0.55-1_0.68-2_0.79-3_0.76\", \"1242_l_1_r-0_0.86-1_1.35-2_0.41-3_0.77\", \"1243_l_1_r-0_0.5-1_0.64-2_1.26-3_0.66\", \"1244_l_1_r-0_0.77-1_0.26-2_0.67-3_0.36\", \"1245_l_1_r-0_0.96-1_0.19-2_0.67-3_0.23\", \"1246_l_1_r-0_0.56-1_0.77-2_0.75-3_0.6\", \"1247_l_1_r-0_0.16-1_1.24-2_0.36-3_0.18\", \"1248_l_1_r-0_0.86-1_0.96-2_0.26-3_1.11\", \"1249_l_1_r-0_0.87-1_0.95-2_0.12-3_0.57\", \"1250_l_1_r-0_0.09-1_0.65-2_0.02-3_0.35\", \"1251_l_1_r-0_0.61-1_0.67-2_0.82-3_1.11\", \"1252_l_1_r-0_0.02-1_0.57-2_0.98-3_0.38\", \"1253_l_1_r-0_1.01-1_1.57-2_0.23-3_0.84\", \"1254_l_1_r-0_0.35-1_0.44-2_0.07-3_0.57\", \"1255_l_1_r-0_0.48-1_1.12-2_0.15-3_0.45\", \"1256_l_1_r-0_2.08-1_0.68-2_1.8-3_0.04\", \"1257_l_1_r-0_0.23-1_1.07-2_1.35-3_0.53\", \"1258_l_1_r-0_0.1-1_0.53-2_0.92-3_0.63\", \"1259_l_1_r-0_0.06-1_0.08-2_0.27-3_0.25\", \"1260_l_1_r-0_2.61-1_0.85-2_0.85-3_0.98\", \"1261_l_1_r-0_1.38-1_0.35-2_1.36-3_0.2\", \"1262_l_1_r-0_0.79-1_1.81-2_0.47-3_0.67\", \"1263_l_1_r-0_0.46-1_0.59-2_1.55-3_0.58\", \"1264_l_1_r-0_0.46-1_0.85-2_0.08-3_0.02\", \"1265_l_1_r-0_1.02-1_0.13-2_0.86-3_0.38\", \"1266_l_1_r-0_1.89-1_0.45-2_0.18-3_1.45\", \"1267_l_1_r-0_0.56-1_1.14-2_0.4-3_0.43\", \"1268_l_1_r-0_0.79-1_0.11-2_0.14-3_0.37\", \"1269_l_1_r-0_1.3-1_0.07-2_0.56-3_0.5\", \"1270_l_1_r-0_0.59-1_0.94-2_0.48-3_0.83\", \"1271_l_1_r-0_0.05-1_0.56-2_0.68-3_0.3\", \"1272_l_1_r-0_0.04-1_1.49-2_0.66-3_1.22\", \"1273_l_1_r-0_1.34-1_0.06-2_0.12-3_0.92\", \"1274_l_1_r-0_1.39-1_0.32-2_0.15-3_0.79\", \"1275_l_1_r-0_1.03-1_1.24-2_1.38-3_0.64\", \"1276_l_1_r-0_0.66-1_0.25-2_0.02-3_0.6\", \"1277_l_1_r-0_0.07-1_0.09-2_1.31-3_0.0\", \"1278_l_1_r-0_0.39-1_0.49-2_0.74-3_0.87\", \"1279_l_1_r-0_0.52-1_1.0-2_0.1-3_0.76\", \"1280_l_1_r-0_0.08-1_0.35-2_1.08-3_0.47\", \"1281_l_1_r-0_0.85-1_0.94-2_0.25-3_0.45\", \"1282_l_1_r-0_0.16-1_0.56-2_0.54-3_0.74\", \"1283_l_1_r-0_0.46-1_0.61-2_0.71-3_0.89\", \"1284_l_1_r-0_1.23-1_0.86-2_1.07-3_0.91\", \"1285_l_1_r-0_0.01-1_0.36-2_1.54-3_1.27\", \"1286_l_1_r-0_0.67-1_0.74-2_1.37-3_1.2\", \"1287_l_1_r-0_0.67-1_1.25-2_0.02-3_0.05\", \"1288_l_1_r-0_0.75-1_0.25-2_0.76-3_0.41\", \"1289_l_1_r-0_0.68-1_2.32-2_1.23-3_0.44\", \"1290_l_1_r-0_0.44-1_0.51-2_1.28-3_0.45\", \"1291_l_1_r-0_1.11-1_0.27-2_0.03-3_0.64\", \"1292_l_1_r-0_0.04-1_1.79-2_1.35-3_0.57\", \"1293_l_1_r-0_0.28-1_0.63-2_1.27-3_1.65\", \"1294_l_1_r-0_0.06-1_0.15-2_0.88-3_0.55\", \"1295_l_1_r-0_0.93-1_0.79-2_1.15-3_0.36\", \"1296_l_1_r-0_1.73-1_0.28-2_0.78-3_1.65\", \"1297_l_1_r-0_0.53-1_0.35-2_0.76-3_1.05\", \"1298_l_1_r-0_0.59-1_0.29-2_0.39-3_0.97\", \"1299_l_1_r-0_0.54-1_1.65-2_0.4-3_0.0\", \"1300_l_1_r-0_0.65-1_0.21-2_1.18-3_0.17\", \"1301_l_1_r-0_2.19-1_1.43-2_1.39-3_1.09\", \"1302_l_1_r-0_1.06-1_0.41-2_0.86-3_1.66\", \"1303_l_1_r-0_0.13-1_0.24-2_0.42-3_0.51\", \"1304_l_1_r-0_0.36-1_0.12-2_0.63-3_0.52\", \"1305_l_1_r-0_0.51-1_1.16-2_0.01-3_0.87\", \"1306_l_1_r-0_0.43-1_0.36-2_0.01-3_0.66\", \"1307_l_1_r-0_1.72-1_0.12-2_0.14-3_0.34\", \"1308_l_1_r-0_1.28-1_1.61-2_1.15-3_1.07\", \"1309_l_1_r-0_1.33-1_0.66-2_1.14-3_0.82\", \"1310_l_1_r-0_0.49-1_0.81-2_0.21-3_0.73\", \"1311_l_1_r-0_0.1-1_0.92-2_0.69-3_0.36\", \"1312_l_1_r-0_0.05-1_0.68-2_0.97-3_1.42\", \"1313_l_1_r-0_0.42-1_0.68-2_2.08-3_0.36\", \"1314_l_1_r-0_0.19-1_1.11-2_0.84-3_0.89\", \"1315_l_1_r-0_0.13-1_0.64-2_2.02-3_0.41\", \"1316_l_1_r-0_0.41-1_0.72-2_0.8-3_0.98\", \"1317_l_1_r-0_1.76-1_0.44-2_0.4-3_0.02\", \"1318_l_1_r-0_1.07-1_0.37-2_1.02-3_0.37\", \"1319_l_1_r-0_0.98-1_0.73-2_0.42-3_0.26\", \"1320_l_1_r-0_1.18-1_1.88-2_0.27-3_0.43\", \"1321_l_1_r-0_0.14-1_0.24-2_1.64-3_0.17\", \"1322_l_1_r-0_0.88-1_0.75-2_0.57-3_0.22\", \"1323_l_1_r-0_0.66-1_0.05-2_0.6-3_0.12\", \"1324_l_1_r-0_0.19-1_0.08-2_0.46-3_0.11\", \"1325_l_1_r-0_1.62-1_1.44-2_0.25-3_1.18\", \"1326_l_1_r-0_1.06-1_0.5-2_0.43-3_0.15\", \"1327_l_1_r-0_0.44-1_0.55-2_1.16-3_0.51\", \"1328_l_1_r-0_0.18-1_1.22-2_1.14-3_0.37\", \"1329_l_1_r-0_0.21-1_0.33-2_0.07-3_0.65\", \"1330_l_1_r-0_0.34-1_1.61-2_0.45-3_0.03\", \"1331_l_1_r-0_0.09-1_0.86-2_1.09-3_0.29\"], \"type\": \"scatter3d\", \"x\": [0.4005892039594323, -1.7449973801099787, -1.5106518607117638, 1.235525619463163, -0.6240868570546245, 0.26730627018088904, -0.4063973710174922, -0.6515353168100122, -0.1374361450807473, -1.1559921306904704, -0.726879357215162, -1.6125227546364165, -0.310979040642514, -1.2377501154620676, -0.8811762862069639, -1.7308808530198294, -0.49764497785040396, -1.649222061300096, -2.72677866612804, -0.356906702279003, -0.2920539297912699, -2.558335810193039, -1.4784092556175752, -1.4474844995278229, -2.27640079942039, -1.7366556113710674, -1.9349816862871667, -0.44143138874264176, -1.417216002547896, -1.4109364769527004, -0.32762277317505895, -0.8862505153899857, -0.06960470486585979, -1.4536305532504712, -1.271776547728693, -2.5108803198392797, -0.5505633293703726, -1.8602526794251117, -1.0851796213552027, -1.8461396695681216, -1.9257963715844664, -2.328494359916658, -0.5745041156158026, -1.8423668837638365, -0.09967182740741842, 0.2793652818909502, -0.34195062378457564, -0.5916808186833349, -0.31018280785170504, -0.8074899059058975, -1.6169057894267689, -1.4050379680743665, -0.44729791403083163, 0.3131415912444586, -1.3145345805004225, -1.056382678129405, -2.0107593716252246, 0.11768440473249431, -2.165370353017357, -0.7986195720823553, -0.8580159299203314, -1.1815980394677197, -1.6059629857703692, -2.0153213396611056, -1.008735839986616, 0.0673459050996914, -0.8077312698560944, -1.3139370923202704, -0.9413015694321065, 0.2347053127615777, -1.7519919815653198, -1.4521351865005558, -0.8047617655568216, 0.3141775072318429, -0.5725118968719861, -0.7525761791071255, -1.4451842662091767, -0.34595585152393526, -2.705983728628987, 0.048503844030602705, -0.7349683230096724, 0.09500068370237247, -0.8527984391352665, 0.014262617867014438, -0.855036763656853, -0.8467777105992044, -1.5264280009324578, -0.7257292290446351, -1.770709177690861, -0.9592573962681847, -2.208430774800771, 0.27949901017740086, -1.1046209008388082, 0.011387626501793813, -0.3402404841642087, -1.4194619094127034, -0.42579051976375504, 0.26635316003531084, -1.835993639525428, 0.2739669364601398, -1.1994043365738276, 0.6423229495617451, -1.3675646496278946, -1.0252031641639425, -0.8406100177933022, 0.04035016760310195, -0.7593641571250256, -2.052521552574099, -1.032347942111631, 0.21871736240824746, -1.137466144321506, 0.4601023330004619, -1.486699580710031, 0.33455875357135345, -2.107932025895552, -1.5599732746160493, -1.073738214500577, 0.1480822881212691, -1.6837918537007934, 0.9224043109059101, -1.44776787362284, -0.30699724712548027, -0.5942118709433033, -1.718013199867709, -0.13405493988146122, 0.007993988676368247, -0.6465486173761836, 0.07822474547585312, -0.7176222837580013, -0.4658908758086967, -1.7712253256170984, 0.8505570241307745, -0.3155749173643059, -2.2314113577151975, -1.5405516474111367, 0.49706992578772247, -1.1257282129740105, -0.11951277357012957, -0.7960262951487659, -1.2696005544177547, -0.24027235524109647, -1.4272898444460131, -1.3333082648354568, -0.19643391544990352, -1.4059365609696652, -0.014797066941035109, -0.22208780795160155, 0.20147342268616564, -0.9384989066999982, -1.9180153823215664, -0.6079221246462094, -0.2605602760294211, -1.251511678809778, 0.7038397024478433, -0.8803218796434131, 0.893209619635245, -0.7612237257679364, -1.4674478187076359, -1.5401225367939673, -0.2704214252415593, 0.15404547215012165, -1.4546155445051425, -0.11986887219026798, 0.09938897981786687, 0.2929485829147187, -0.224551328825202, 0.0905447262867447, 0.2870818221282172, -0.9835155900430286, -0.37223763254187925, -1.5907942013436767, -0.7046898628506392, -1.1975399680373002, -0.9652024706090401, -0.8985828861160798, -0.6041307352780461, 1.0713753818515217, -0.8703035152291866, 0.15337572610966688, -0.9199180058930405, -0.170293841145443, 0.010179321136725372, -0.23223566043388466, -1.7810142379884288, 0.2607948248115075, -1.367465466709612, -0.6174608898048929, 0.509832119012483, -0.9631627884642637, -0.9416847513974732, -2.5295788618218227, 0.46950088391457334, -0.6914283286003353, 0.3896395587586674, -1.083135024534235, -1.7629611981310371, -0.49432579865292403, -2.2706733557192953, -0.7894698193155693, 0.38092011436895357, 0.27059735091178294, -2.2245088800322983, -1.1054075299681394, -0.6612154108707818, -1.0804224335443884, -1.2337842887844137, -1.513834073091105, -0.7780249616706686, -1.276829026932036, -1.269630849648079, -0.6352969208985499, -1.9951169076656772, -1.9854441245854249, -1.7287500005051954, -0.516799785727978, -0.9497103382246139, -2.671476179037036, -0.31565459735503865, -1.2003656477448632, -0.937066951478077, -0.7050111996439224, -0.9281674779145224, -1.8554940119281913, -1.7998310395763304, -0.4180862706034877, -1.8819707158760561, -0.9623445577034747, -1.4761826568636798, -1.408477889198822, -1.0593441151705325, -0.6516408230282655, -0.8121954750588589, -1.7457714824895418, -0.946136499294214, -1.013554606699666, -1.7964637425533945, -2.184968033144308, -0.6869909295688968, -1.4955603547192289, -0.8258314206207966, -0.5716438308159103, -1.796900989463972, -1.2314015106558127, -1.0253542586760591, -0.9045151779394824, -1.205335723973994, -0.7904187384416794, -0.3622535883464296, -0.2666038899216404, -1.9377917676391043, -1.70804217568143, -0.4464975672265479, -1.0559531825568342, -1.8504925348529708, -1.604267366833585, -0.646081512243807, -1.1040787406225563, -0.9607728534171953, -2.0571095206466534, -0.7730974279547833, -1.640093212972788, -2.126770198997116, -0.8149141790413703, -0.6906045278379296, -0.034689795090676045, -0.6486713881791738, -0.5955194061300753, -0.15146536684078848, -0.6954411575780672, -1.4132258363754797, -1.7401222573787525, -1.2296981274977263, -1.3668065527431885, -0.8762790860000783, -1.166821461241598, -1.3265378292658534, -2.8033906962708572, -0.4620916406442257, -0.4096479134595352, -0.6948788801889971, -0.7464438083749914, -2.67379952301438, -1.4605214129962516, -0.8950777258033581, -0.3300271438678256, -1.1446140965700753, -0.5374424447744545, -1.1675144625332108, -0.6004888705776339, -1.223745829619722, -0.7588477392331897, -2.1219475793648654, -0.5840450510348318, -0.9529025120251226, -0.40888259418209927, -1.5680291058830704, -0.9559345410973104, -0.9861061976079453, -1.270576713204695, -1.8895496152196332, -1.9785155303459805, -0.9584848245037663, -1.1611257032675304, -2.166124186226609, -2.053539746445619, -0.8797719959333118, -0.7551882475700207, -0.8788411815342534, -2.1072688769961454, -0.5299177298140361, -1.0691733712626483, -0.34937375964357686, -1.1185795219828343, -1.1118233242441848, -1.0548802367933157, -0.8317997849803096, -1.8307404120019344, -1.0081652505788423, -1.4038142313579605, -1.9623743802882667, -1.8397683763057624, -0.5908563265694904, -2.2147052783710364, -1.294105591580592, -0.25871758187462646, -2.2634326746149567, -0.5805077897818338, -0.5604969838041174, -1.9965477892570958, -1.1173155853386272, -1.3684999322046738, -1.6530544334522381, -1.2216760070832173, -0.9861570580988892, -0.7546549399432448, -1.3444252427080592, -0.8094763812033454, -0.023470003932261063, -1.0609763601113436, -1.2705585248349798, -1.6085117986333413, -0.011937793801859775, -1.280376107779388, -1.0387105801702097, -1.3750735332903008, -1.1827804083904478, -1.6671830337736058, -1.8547109880949755, -1.3223528315346487, -0.00804631389691235, -0.7199862133550597, -0.08265181637494812, -1.2234773892223687, -0.6191046832929211, -1.8226979987395753, -0.4248869201682566, -0.48412660665777707, -1.8334617400665891, -0.03672438977020298, -1.0695144250960438, -1.3464376133470846, -1.2817425350844411, -0.4601440098107945, -0.5790603385799113, -1.4467833977899633, -1.2628466182736737, -1.7195971643873902, -0.5401529808053064, -1.2907708894328782, -1.7260273444885217, -1.6929298529942636, -1.4352890981274162, -1.804971524541989, -1.4773763738071102, -0.5847918320698242, -2.4060901723079553, -0.7529204586144753, -2.2871588222112056, -1.1289589710424817, -0.505589674257594, -1.054127089155833, -1.1140398675738017, -1.1017294394837607, -0.14401556619634637, -0.831149686578005, -0.4908200448382376, -0.8642750577011061, -0.7891096573488561, -0.7899290307653104, -0.17375609205779985, -1.0880643871854323, -0.7906910283312799, -0.8865598670467217, -0.4230095748017815, -2.245461118874559, -1.0639135907019563, -1.954480852421606, -1.4222325036483783, -2.167849249715511, -1.071104289481226, -1.2261033043152871, -0.7279004076080802, -1.130560551609899, -1.5171135367966273, -0.55013453862199, -1.5901218052944683, -2.0470436656135984, -1.7386333002734657, -1.8333951269358955, -1.5018618226917764, -0.6673856681511592, -2.1152176295963554, -0.5060325237803749, -2.652824533072833, -1.0509124747460414, -2.0490636644040636, -1.3033456074400847, -1.9614584751512547, -1.8842832451970128, -1.1704844852293175, -1.2565163066034346, -0.9192888919705067, -0.7123119993110041, -0.0464665792815121, -1.5560857847085394, -0.6768344225519386, -1.6458613070099026, -1.9523582364449892, -0.23183419568154495, -0.40340366041149367, -1.951008849267297, -1.0619113170112837, -0.9272060464579358, -1.348226493182572, -1.3736379662608003, -0.4431528266108048, -1.5409774874589992, -3.3862930328607077, -1.9292464612635944, -1.8465194761685395, -1.3551680180562917, -0.6260626806981946, -0.8487828242997673, -1.3300586111647834, -0.7278521300571328, -0.8786574872616842, -0.5474281374545804, -1.546893691301921, -0.26793999517420053, -0.8722881946934113, -0.5965976601838282, -0.7218738509392596, -0.8013071447295821, -1.6718451075111456, -0.8720652708384893, -1.3498919069603637, -1.5265787846251015, -0.7604805988809239, -1.7334849758851196, -0.8560688294344898, -0.6645066912399563, -0.792309733131651, -0.3317890478279837, -0.7610360592328289, -1.1341980687955329, -0.5903627305977466, -0.9564775158850648, -0.13000268485099442, -0.3175139642989421, -0.7727184240847518, -1.9264322412052057, -0.25162353719433683, -1.6507719180398657, -0.39915596408376, -1.5092164402775539, -1.4355241468381605, -1.3171423598442886, -0.5027996683131, -1.6387421327292375, -1.7426270411046183, -1.6119061047822698, -1.744743222885821, -2.470937575373296, -0.6419201678965891, -1.5484523279640907, -0.3944246202391035, -0.1307321160061231, -0.7108615571609755, -0.2805292457397597, -1.3283729729974647, -0.3672001019176728, -1.8091569939630732, -1.612769862498538, -0.34064700335525866, -0.9236577341504267, -0.8813661439619386, -0.6282916018969866, -1.1328399421401736, -1.7708935124669354, -2.577199459742393, -1.8836926613123843, -2.014020759164923, -1.7550052681272348, -0.9765009779498021, -2.3819150005045264, -0.7739479026833774, -2.0234371235650133, -0.7992772994358105, -1.2331033162043732, -1.496904481510594, -1.0139742661863396, -1.8364310492851914, -1.1494957655044338, -1.320659246342403, -1.0860708788185567, -1.565543305273629, -0.5388735927201224, -1.4162259742904852, -1.7784076619181426, -0.9636041851895271, -1.069612905858027, -1.9430319146382442, -1.6128499542695627, -1.649276972568436, -2.7567732598022636, -0.5761277644332659, -1.2469247805936883, -0.29647800527359225, -2.620815894496017, -1.7322543750835973, -0.7734509018735949, -0.8742285393304379, -1.3457916364036744, -1.0742140064991188, -1.1407217438583352, -2.0331281932499086, -1.089986229909853, -0.41088583323272043, -0.7919870659886956, -1.2011184341070318, -0.5984648573270587, -0.9309342936702938, -0.701200012222216, -1.431304522172975, -0.7304149488638325, -0.7677751702232882, -1.7991819942407932, -1.9337889380617181, -0.7119211800285632, -1.1521949930568107, -1.4567774301764622, -0.7891873154331561, -1.6449168661195408, -1.58265690476486, -0.32425193281957665, -1.4983236095462171, -0.7760982680842049, -1.8304305705316695, -1.5105963030108671, -0.48690270646984934, -3.106183353057941, -1.3843861993145312, -1.6481193243072112, -1.1471939758561203, -1.8974972900622222, -1.2656456576590616, -0.7491559607197192, -0.8014492724914366, -2.180718266056286, -0.6350001552467668, -1.9722804650603956, -1.4525662220274103, -0.7967021034831432, -1.2438503912693317, -2.086365473664423, -0.7584464235511615, -0.7710631501473975, -0.6635628246371067, -0.633845996861925, -0.23159610286559706, -1.2106892420573598, -1.8907850423442856, -1.276170195614826, -1.3609021516506912, -1.0657090115353187, -1.1140182341226659, -1.0692766510726943, -0.84438837266754, -2.593298956930293, -0.48821903427932034, -2.3872110205979364, -0.5275900651594243, -1.2410017464106413, -0.2507094611164815, -1.8562198692796112, -0.4050473188170032, -1.6359890392419594, -0.5826903818766254, -1.8353346401513941, -0.6871137008666421, -1.5019211895837699, -0.4310046920709183, -1.071184665406866, -1.1589456650848091, -2.8566130537762264, -2.5150519088330308, -1.2226298547055647, -0.924520229567428, -0.8676026692967032, -1.2508884839187444, -0.5995868394524944, -0.0018433392372069202, -0.8740377521111408, -0.7551047584584862, -2.115679681462912, -0.45217577648538465, -1.107455950236441, -1.2547985262152612, -0.9075329066337492, -1.838150070516736, -1.2041098098269165, -1.5327014247364685, -0.9983190407341441, -1.603430364558594, -0.5542480812064685, -0.6406517819948445, -0.9994426320875541, -2.1127230372477173, -0.548610634764165, -1.4331803706981616, -1.648647659230472, -2.11935918510207, -1.4794851288956379, -1.2985150927755909, -0.17323525361528802, -1.0853672717286729, -1.66396371622016, -0.5117406069381194, -0.5203583747793881, -0.9960160946433326, -0.6588245935425143, -0.3404232308547678, -1.6668379727102847, -1.7496799686992581, -1.1047918646155952, -0.3621522147033487, -1.422815317442669, -1.3278051330907523, -1.1680094888349082, -2.0946597970812957, -1.6701265834097094, -1.7172446492378932, -1.7353883163254218, -0.2604810682061902, -0.4253502943797084, -1.052828056816326, -0.7719553129412933, -0.12346748105469829, -1.0784949332797498, -1.9661693693355895, -1.7378941979068654, -0.7253175593315658, -2.075196611324269, -0.6452534835724812, -1.2627761215147255, -0.8508313571925493], \"y\": [1.613924148079552, -0.643138403478994, -0.5754138697882105, 2.0877198050837276, -0.09767748346389005, 0.3228854976154295, 1.0472406830301575, 1.036719539937374, 0.3435842617942325, 1.1506357086473602, 0.34590699307945816, 1.4575924618172449, 0.3427128547921813, 1.88183486255254, 2.00183304664277, 1.6157298131240774, 0.4329715618095513, 1.3318590460274726, 0.31877388550991703, 1.2403474537720032, 0.8427151319107713, 1.6171500481215468, 0.7217932794691826, 0.8007744916195432, 1.5726414411101666, 1.781001933369552, 1.9481564076945634, 1.6562273074180864, 0.45131775863912704, 2.0890668470849376, 0.1076698514359643, 0.8384581102253895, 1.5739816308218642, 0.30557420636943644, 0.7535847932286885, 2.3697981884247215, 0.48131940678142415, 1.2732013343779482, 0.6539806192435161, 0.7123279331947773, 1.5676180620364621, 1.6323483016932316, 1.8663267877532765, 0.7137937501293532, 0.5377434068040816, -0.2956734092497879, 0.9954348911103292, -0.2097718774131625, 0.6154189433100857, -0.015216726491407817, 1.9172044392651908, -0.060706996079852305, 1.7820815266472758, 0.2906677622005971, 1.2791546572745989, -0.17968690041356772, 2.049343548433859, 0.48188796448348437, 1.6023708509501478, -0.19175869658164846, 2.228823290825776, -0.4746550629062225, 0.14372211703548066, -0.14105790322765288, 0.5252042530771635, 1.3062497348896085, 1.1165987439419258, -0.29911449475714624, 0.8698670702335394, 0.5546480214300876, 1.0223433743952237, -0.11318746376200783, 0.8131574225228511, 0.45753093213468443, 1.9441236654237506, -0.3933031221827925, 0.7852433758051927, -0.4411390535931692, 0.9223249177296071, 0.01497274556182604, 0.6955031234453224, 0.7209620040238893, 0.6113228553191148, 1.8852835815882072, 1.5782395713010386, -0.6513523607181333, 0.4556226109647522, -0.3723189079638467, 1.3682530502959716, -0.22718549566976365, 0.15423274998382197, 2.0875118798600547, 0.1526225470095287, 0.663957175742415, 1.407974175423252, -0.39814009164804776, 1.408913787468817, 1.146512751573051, 1.164448904079104, 0.8379167963510253, 2.0727827168361195, -0.24955272387445593, 1.6790427175428424, -0.2849947389393579, 1.522827977347161, 0.51102782533893, 1.634962479529598, -0.1267641128929473, 1.4495138195275228, 1.1107581002275848, 1.024503382965429, 2.1066148969933924, 0.07267054963675268, 1.0566469520016513, 1.8969246579628924, -0.09315607324590847, 1.466662813301669, 0.7144586934016748, 0.7684448104754409, 1.2643224762773477, 0.516715509633207, -0.4710625779909072, 1.9521937481947655, -0.03305576211147465, 0.7274673507690271, 0.31319371331412205, 0.8741203775967178, 2.2639745049025857, 0.8114505359392241, -0.20003308875128334, 0.4157752998226393, 0.43221242009162764, 1.3840616528872378, -0.3319494263593479, 0.741074620058721, 0.98301047130193, 2.618062089532709, -0.5457954487992369, 0.34071467046409953, -0.5209668470643596, 1.1608888887431168, -0.509741477462351, 2.177990477250088, -0.0625431172254931, 1.2137953313223422, -0.8482943325901451, 0.6255207398114974, 1.0736532525516271, 1.149439332777646, -0.36121721873542345, 0.5614492346397519, -0.4807179228138856, 1.7383270228491272, 1.202019228845684, 0.15245109543426394, 1.914971074815107, 0.730457500869808, -0.11303534455879682, -0.17626751410978336, 2.02317581833647, 2.7567835919031314, -0.5845803134059542, 0.7732947559584498, 1.0875150202489696, 1.3844152600153268, 1.9418370556372637, 1.177688407137495, 0.29752363456457975, 0.8199829736152427, -0.29772644180636587, -0.020167269494274498, 0.18207968438276967, -0.260376504525756, -0.8830671617515171, 0.6763122955101031, -0.3528689679729038, 1.1454499853148763, 1.6339387038242301, 1.1696351615533602, -0.5337490892249557, 0.6906899771058119, 0.9832222013289957, -0.7604643565135296, 1.228582172818171, 1.3268411827721016, -0.16634461326418704, 0.7431749429422267, 0.6075223752920061, -0.2948755072241598, 0.7975118427740134, -0.0309528916429338, 0.8586081227148279, 0.5326838055619537, -0.04697749831470066, -0.20940223385809764, 1.3834449365542607, -0.5815035519533793, -0.7991218390419452, 1.484371431202307, 1.465067060913456, 1.4296186157706599, 1.3338765696692843, -0.30845690833617345, -0.7115437855851952, 0.6248317667621098, 0.4538876073774184, 1.4282988859301995, 0.46487093972557136, 0.09388437793642646, 1.5561314936921595, 0.6167907196677415, 0.49847072350227906, 0.03026768883233011, 1.6754558278911174, 0.5152822070126601, 1.4321419779555844, 0.7803301194349329, 0.6149467423509347, 0.6872559957171424, 0.8664589480646099, 1.596422446711569, 0.8693588649489117, 1.816251637903739, 2.076797224592214, 1.7581605119353787, 1.569011290982231, 1.4095586614058404, 0.5439161070971471, 1.5155467914996612, 0.619856004147693, 1.3231663731909287, 1.7556709123081502, 1.6246704682840543, 0.3422414476836324, 0.8063790467928265, 2.21094877759636, 0.4779336246591601, 1.3108679187703673, 0.35884438680253994, 0.5920405145011165, 1.3418107567596687, 0.4703493635662672, 1.212744193675157, 1.6189075225599119, 0.10182731841705284, 1.6864924032887898, 0.11865653965357692, 1.981767680067155, 0.3665021532962094, 0.9355132937164237, 1.2730113954671491, 1.7914097222504806, 0.3510747639147138, 1.4758186893904346, 0.5472571143078218, 0.8981308613907455, 0.12032594947670394, 0.31816375957308207, 0.7636679309937181, 1.5205213059559899, 1.2590426586091215, 2.785846248247344, 1.0534746843870217, 0.23314665860881245, 1.2179602291684524, 0.5100768481455535, 0.5348271748918929, 1.7115611194244513, 0.36599650720404253, 0.81737368758975, 1.4663353657717941, 0.8718021294066463, 0.9872800029429519, 0.6137337926684212, 0.6716696280613714, 1.0145113520383742, 1.9888859982504508, 1.1131461564470129, 0.0434416285736452, 1.0995612488896769, 1.6597424930475877, 0.15301528987285828, 1.469270972866104, 2.8568032950685724, 2.032694794215774, 0.08183940614214136, 1.2057292174881906, 0.2677477138128629, 1.2172108195061953, 0.2870637957612717, 1.6038593727821766, 1.0309463677990893, 2.269277662268736, 2.0962405412869347, 1.6054986684828063, 2.74645971887382, 1.1435078808509982, 1.8742505140568828, 2.197440926534356, 0.5094981879576646, 0.7412605661173977, 1.256876084331981, 0.21267044593164164, 1.9211135525597478, 0.9031391707924227, 0.7115969752543467, 1.306808817355624, 1.2653181048747524, 1.3581608756995647, 1.1931162522413374, 0.47650818194133737, 1.1955365315536084, 0.7583661969463962, 0.8915760440253604, 0.08913573219815252, 1.1200917073300853, 1.1623315620321426, 0.4146863818311918, 1.0739820014614483, 0.31968354529052834, 0.41408852363742976, 1.2366564284020833, 1.303005922028616, 1.4868866987127, 1.2809239420409855, 2.733506264674288, 0.8313722692908061, 2.4892149139620203, 1.7706236902075005, 0.7762589435198188, 0.6455342791200458, 0.6156616071206836, 1.2686401150499405, 2.361494996804323, 1.1942096020351136, 0.6620995603958288, 0.5327395802115906, 0.5356347608628768, 2.1522933275936613, 1.1728532573527621, 1.0686253315571357, 1.3139397376897386, 0.2789288042791612, 0.7960237054859332, 0.2933356625781155, 1.3680796884685023, 1.2487601899631506, 1.657384324262519, 0.7695045827756706, 0.6923711625859057, 1.4978388701653471, 1.231437226258439, 0.6319467552250015, 1.1417553004628105, 0.13381638982355926, 0.3532430673285849, 1.5359039414940083, 0.8429304939806049, 1.2824946234160164, 1.605069986911086, 0.7688541369265008, 1.876135656305733, 0.9460827483487777, 0.5936263753174753, 2.7790803453680626, 1.1255160190296347, 1.2386151598636483, 1.1596543768736214, 0.6874431935500938, 2.5717133558355822, 1.712497585663533, 1.752998646264515, 1.30798436810207, 1.6349790731809088, 1.689729850031033, 1.7081573026493362, 1.4520335350263083, 1.5244833546520578, 0.19693477243886792, 1.571904097813764, 1.2558359142187672, 0.03037430252990081, 1.8459507091592362, 0.4179993722850597, 1.0540876361408342, 0.7082127468465118, 1.4693273910425722, 1.4860427836736336, 1.6636588165982107, 0.5101370507758298, 0.02494535276187282, 1.0079963430393517, 2.2758832549968258, 0.9055567842303376, 0.8014581807785506, 0.0725548951966909, 0.3253375069344788, 0.6262413199247228, 0.7650614811817598, 0.9769343192868493, 0.2473474762201069, 0.18728256053576386, 1.641810884039686, 0.9294699704353898, 1.1086146953681688, 1.127889492594417, 0.14563167907097208, 1.9238872075880484, 0.17487478110636534, 1.7277041538297355, 0.8196616591887963, 0.9071698093398364, 1.8687718828004214, 0.3370105358665625, 1.7608640040228933, 0.10285776960027271, 0.4142890636417409, 0.8478868604822452, 0.8598825097501075, 1.2501440800242718, 1.277706395942436, 1.4765218409806544, 0.7412908332857573, 1.6382595333775378, 1.0787361245122045, 1.57916787225493, 0.4757097621414277, 1.2055239490073713, 1.4743674469808368, 0.9539287306567326, 0.4657436105871292, 0.4519958419571044, 1.6677530664960454, 1.1257196543681336, 0.4216090345018352, 0.646563523008276, 1.1275615376798107, 1.0336924101094267, 1.5397851701167844, 1.4141310793240693, 1.1224016942224466, 1.9612810499656328, 0.9677855062782814, 0.3418899507718717, 0.40657190460309, 0.9754399291693869, 1.1668369701082897, 0.21783934460601917, 0.7030417080772153, 1.6032422154175126, 1.5830579534845137, 2.5800723722485124, 1.5192111929810501, 0.6483159744459367, 0.9498180693079339, 0.83146631042666, 2.943945552587142, 2.238169938362838, 0.9376381518587789, 0.19847801493231498, 1.1886390451348914, 1.8124538317611887, 2.145820317536983, 1.6443630274715955, 1.1353752216903619, 0.6515274082161189, 0.0965244171010664, 1.890477953988234, 1.225560118193679, 1.403681404100821, 2.624482101749736, 1.647013373116777, 1.0459900944480698, 0.5101116785417548, 0.8773385729942642, 1.4107209934083769, 0.6348223442041996, 0.21721158945460917, 1.2388428225443473, 0.9158130383824435, 2.0313602511292004, 2.352073424434682, 2.1746047340958166, 0.14053844261538584, 0.9193605279067997, 1.0463960896910085, 0.46734958654718806, 1.0092016771586325, 1.9462865740050879, 0.552497475708415, 0.7337897558313571, 1.4265097454757294, 0.9501660338441008, 1.034200953955065, 0.690800097374909, 0.5601240389470361, 0.7632214186104862, 0.2901105528936331, 0.6344525514840891, 0.5104455272168891, 1.633464291541301, 0.4100668192265371, 1.520363992943646, 1.3574318483551198, 1.6230198448524504, 0.5217290751026953, 0.42686625963189706, 0.11182639046815279, 1.1835730285261188, 0.7791368755607387, 0.7257274766877433, 0.2767484350026226, 2.2744079853078127, 0.48661097573363277, 1.222444884424113, 0.6265921056116222, 1.6728071045284327, 0.836048411888877, 0.6596683125466629, 1.5313865880078357, 1.217165906397011, 1.171830480816125, 2.1065442606613063, 1.46278972465725, 1.7545488016475699, 0.7559826946996943, 1.3715031756415939, 1.1881786898325184, 1.1866214685601295, 1.3370626951958366, 0.7696216997700824, 1.158693461915024, 1.0195402073912623, 0.57948859393255, 0.7201254649886202, 0.9103281075246131, 0.4424946192786423, 0.926967804216656, 0.32680264668330783, 0.15221660682234794, 1.9829727984881047, 0.3568554808493999, 1.0732439777829603, 2.342040507299095, 0.22894437336675932, 0.8714311108738249, 0.8354766145357071, 1.3766295869005316, 0.3504834148161158, 0.07467217373942825, 0.5322949168460791, 1.830525928786435, 1.6038804075039335, 1.4723696992046993, 0.7848360977594486, 1.354642397163294, 0.9460523275546631, 1.2682389595861938, 0.8533154085105916, 1.580422789574659, 0.5712022312414122, 0.9696041908069731, 0.7701375556529287, 1.6598269561608434, 1.077547557563882, 0.9222766071090645, 0.48816802571424434, 1.604345535625189, 1.0868803146925756, 0.8952300549814973, 1.2650627779555093, 0.5452969855239058, 1.9973667302194715, 0.39346854112287566, 1.3145308634835264, 0.9695781473222241, 0.78885344638402, 0.9914308670244717, 0.3571770316284486, 1.6855649895851617, 0.602383741702988, 0.17881609950948774, 1.1085775556282205, 0.5690979234693394, 0.35413144891631765, 1.4743799507987156, 0.38147503080234046, 1.789699233242224, 1.2419647044000905, 1.0840362511390575, 0.04184525557086738, 0.7443851501119161, 0.6315348598252153, 0.6956971753429632, 0.9788865584211546, 1.368579882410464, 0.6748149843844922, 0.8052610967001899, 0.35334526231830254, 0.9215816565403245, 1.4452394673126825, 1.5397515646739532, 0.36561612548881706, 0.4995884129713206, 0.8335859000960142, 0.4881661613064018, 1.324858665528117, 1.0121645912293085, 0.7885465081121745, 1.5670946498715015, 1.325807472598227, 1.5195000982805331, 2.8186000446358905, 1.3918209013811385, 1.1614453889594556, 1.4918500323614228, 0.740811924134256, 0.8948360717804973, 1.3823085215710762, 1.2667248109317208, 2.1332610806156285, 0.04729677894923745, 1.1030127166529697, 0.4433481455537268, 0.45297175707964765, 0.8707303334114275, 0.5744140611195225, 1.6483556981570107, 2.447504878205688, 0.36365768129696785, 1.879055218045123, 1.0452857465575027, 1.4274327564466005, 0.004902793701636932, 0.7530611525210738, 1.5331691239887082, 1.8380432863810978, 1.5579041203074384, 1.9281003421839609, 0.8740137996724224, 1.0705486458146298, 2.3150859087101305, 1.069244098655165, 0.851599144459928, 0.7251309757401672, 1.2529188637070912, 1.639166856037064, 1.0412553110813332, 0.8927354474563687, 0.4139322762501111, 0.984266590998834, 1.8566371163199067, 0.37108591383396783, 1.7246910593225486, 1.0141414733879055, 0.17445476398000193, 0.21835850950958913, 1.9467391951420305, 0.11048552262692857, 2.1659461265537567, 0.14903327102019515, 0.5088980852471491, 1.6986730271890778, 2.2605101021368856, 1.028235914617869, 1.0983849807006814], \"z\": [1.0391452459831667, 0.1069985003014704, 1.089119213967118, -2.1258958957852605, 3.4362410276146305, -3.766481115463967, -2.6064658434467187, 1.544796966414089, 1.66818209392435, 2.37624625535706, -2.846821634238681, -3.364507195047059, 2.164127803545113, 2.876629024930123, -2.6989322065737955, -1.5268474788404514, -2.575078964987102, 3.313681535068522, -1.8569046945841539, -0.27991768154314345, 0.6471350330368244, -2.255757343506528, 2.0121757523503456, -0.07574024694398362, -3.061974968412682, -0.5573867425089705, 0.14200746070149606, -2.3086830389061075, -0.9018220301392694, 0.8601153914363167, -0.34871804505290926, -2.911773831082211, 1.6098887839035987, -0.9257142639948182, 2.2797918292118435, 1.5842090307992223, 1.415313074489382, 1.4108843736820056, -2.089094487955701, -1.0892043213630904, -3.0749275733887833, 2.193823589329976, -2.859323869399434, 2.171623305873606, -2.4579272528312535, 1.108034682913928, -0.793552718770052, -1.6675024882528664, -1.6339025925182722, 0.16111350324701412, -3.003092054984883, 1.072643752501338, 3.261013880719159, 0.5266536460739628, 0.5614952485370441, -3.176372154044845, -3.0520099635804474, -3.441884477366033, -1.068327622101831, -2.6016446631206818, 0.9538887388146184, -3.2251251935341774, -2.987980223956148, 1.3066742961783362, -3.798216695335733, 1.6373667839640262, 1.694145805523397, 0.5938008260692742, 1.921677095112675, 2.316587918068727, 0.23076805350367913, 0.046740072425763834, 1.741892925467976, 0.21047599173468168, 2.4475595886704413, -2.843741666990396, -1.186391863849055, -3.896641733633706, 0.8961822996182311, -1.886513538580346, -3.2746632566683314, -0.15640108090353122, -3.2537196517152176, 1.7032320280565703, -0.11915000483505844, 2.6513391639009667, -2.443698568002745, 0.5315637001136588, -0.3562138439092877, 1.2274044911695174, -2.780866682698433, 0.7829124176391611, 2.038053278967756, -2.5249987098792284, -3.1304909209615577, 3.126601842159043, -2.1389511368583016, 0.9238288337082041, -1.5265841220809993, 1.782685600925081, -3.151154413502904, 3.417285535910164, 0.7818223501260482, 3.0773273120762763, -0.9466436874417905, -0.8448502224058059, 0.37948879548916636, 2.3044096777538137, -3.94122887247234, -0.3534441528227128, -0.04721287996717294, 2.0843656146156953, 0.5936889461963322, -1.6813211314576773, -1.2405042542923579, 1.7355474055281883, -3.874775351316885, 2.9784808388726747, 2.072595286263775, -0.2732517712222835, 0.0668279071229243, 1.014145646349463, 2.465896071921965, -3.7141978846877777, -1.8595270459543314, -2.0194209705606783, -1.2159094665840366, -3.097087221407169, 1.6851763663724082, 1.1182009194430451, 0.0572322494502, 0.35000081776112335, -2.3762091316181646, -1.917891263539245, -2.480049752771343, -1.560574242049976, -1.6782041271682338, 0.892539893051624, 2.897824501927788, -0.8009549432615377, 1.7574009045530046, -1.810849180359131, 2.305013957090318, 1.3920840709679005, 1.460220213105874, -1.5325901120714134, 1.4253403424676412, -1.0019722399720203, -3.896709861721237, 1.6302803888817516, 0.7646400775972468, -2.980220093586893, 0.9609245772888295, 0.47820365673671805, -0.5366386549377244, 2.0387166393764398, -3.394362079303453, -1.153024029610136, -1.4084431237330253, -1.9352607136119246, 1.1396127124611155, -1.6125832049041304, 0.528584423091754, -1.017900751114008, -1.7056099448970778, -2.7318192036875075, -0.8761014404305727, 2.2297847597832696, 3.1928960495489704, 2.4039708272368276, 1.3786072165584633, 1.0202598070240114, 2.0786426071161452, 2.078694592155225, -3.4400944992388354, 1.4817468781220056, -3.122258183073762, -3.6162462877754304, 1.997300685838817, -0.16594505786484604, -0.2603047029653731, 0.7598806539533616, 1.510304970758943, -0.5786839502559418, 1.703207668224957, -0.03449164996850396, -0.2000207830385019, -2.5104538184687195, 2.5275210254542406, -2.5632498930899104, 0.9498339742696951, 2.758509625619631, -3.9068061471876994, 0.7662475894162544, 1.9910465927204957, 1.457692147465882, 0.05152826369825991, -1.6968294826855836, 0.14719780812095173, -1.3490150647825203, 2.348491015083768, -0.6637751187122141, -2.3843388917369275, 2.4545001161497817, 0.7208100185418296, 1.9670873433353595, -3.1962263228906544, -2.798651820444973, 1.122125426182957, -0.30319664515420763, 2.152689107560186, 0.05961639113636341, 1.8185400845310538, 2.5541017096573286, 1.912462639903982, 2.114604876239464, -2.0944308159506333, -0.5207491862817157, -0.9619632796849, 1.1328099520451973, -0.22733530875913077, 0.2964138396459495, 1.500523194292879, -1.1233948052928717, 1.2815740313604147, 2.961859712157823, -2.37457959592013, -3.122330708276535, -2.8555337587528307, -0.7917460325544106, -0.9087673044241322, 1.3997979323886804, -0.9175015779887845, 1.8988225749872853, 3.385712900046526, -1.6062298990997168, -0.8254232727020088, 1.697097537624213, -2.0812596788205457, 2.4784853275194587, -3.7043877611121085, 3.367515798673079, 1.1555463441187213, 2.8955351558410714, -0.0531136467792761, 2.5677279772903514, -2.1518265135672103, -1.3874150448044444, 1.3020996755109824, -0.11836606406946792, -0.5454891793440879, -0.7850443933414364, -0.39271190202470896, 2.921059360411137, 0.29389756839516945, 1.293251818863311, -3.752614530226042, -1.8783214526255803, -0.22868057237390804, 2.4565361006356143, 1.9552193319032893, 2.4450282525420057, 0.9851067762448782, 1.8649365679380123, -2.6905363115382883, 1.3119116025535744, 3.3447083626150773, -2.2508823760218757, 1.4036316043860575, 2.646444988564981, -3.592662965599694, 2.6111432310362543, -2.187835062078301, -1.6753233593249441, 1.7338417032062718, 1.1352500385847915, -1.7707372675057944, 0.9448225108790442, 1.1062767586011315, -1.1059151622196342, -3.419612648413046, -1.5057671384512554, 1.7889986782681175, -3.7250280869938144, -1.4955620811676646, -0.8247187668229392, -2.4739935705648106, 1.0458020292584669, -3.6213938603926996, -2.8932209653744274, -0.6016277510778147, -0.7145406603757092, -2.8529203289059106, -0.7552845284761314, -3.034181604344351, 2.4493182460563494, 1.7186477815286292, 2.8780196156372595, 2.5912891336525368, -0.7379210271420491, -3.200260931294558, -0.8310607841113673, -3.9097351525927477, -2.6022332822411207, -0.7372159972167918, 1.1827793244418912, 2.502538105489921, -3.965281823940293, 2.273410015802752, -0.7291679108489637, -2.0762860676923096, -1.1323693500867194, -1.2910920933013101, -0.4265328112637654, -1.960418750175395, 0.09890310797918911, -0.32387252500565333, 1.9342512367549736, -1.0695828783776848, -1.0379691756627785, -0.6496509585333388, 1.6398236855136297, -2.12113654328476, 2.0763905663488655, -1.398558172189997, -3.442036083074548, 0.9813154843913541, -2.3114755610606808, -2.871155486278882, 1.6674166938074784, 0.6637763289508056, 1.356643474711153, 2.9104248724887487, -2.5265927882031916, 0.8308939879908568, 0.022204866266749335, 2.1870632076444005, -3.114791432341989, 1.721170755469779, -0.42244989631513263, -1.2835625150357806, -2.50619273509014, -0.14343047661907393, 2.7621301914022185, -2.477627156155693, 0.2048803325279378, -0.3035750763551306, -1.5429801178972196, -3.2417330224187255, -0.5367862836342887, 2.734064700173705, 2.6696479470248793, -3.288353915580073, 0.6071785909169503, -0.11258615133476635, -3.3972667744440788, -1.229703956919776, -0.4403079256922422, 1.8101123743552998, -3.6432454804453864, 1.568223514463381, -3.3248229875740956, 1.2091016769223168, 1.7632789887184597, 0.7379550443527121, -2.3903968670733047, -3.240252489228706, 2.6030078412632296, -3.175960944066624, -0.341739977712725, -1.2942841581757087, -0.6772706678984686, 0.03683290713168752, -3.1943204744296305, -0.4158869735828734, 2.3149299662511806, 1.5745509232846153, -1.7991333529282105, 1.791340404056486, 2.600705986242925, -1.509659389800201, 3.3333791229547884, -3.2274221005938766, 2.3911088420528026, -3.6605179311315776, 1.9635335856488743, 0.6229303696039672, 1.6425504960391955, -2.3815097480647824, -3.288683082217851, 1.5458297513619241, 1.6075863764232494, -3.518945231648096, 1.9935649994865576, 1.5291371930692659, 0.7128262490740305, -2.954074695569735, -3.8607462330077458, 2.6021996084659893, -1.1640830977732715, -2.6571471415155954, 1.762601470947084, 2.268831998311131, -0.7585633870372144, 2.560725339095365, 1.9517071148725522, 0.467937768503611, -0.28835239127916656, 1.5803258154306654, 2.6801808842061385, -1.3966118507784988, 3.453714735647817, 2.55634538010412, 3.273990936539753, -3.4530470646835507, 1.2000709956278834, 2.819859071497877, 2.004807094737777, 0.9290673650152401, -2.3182501842297847, 2.0260930211716657, -1.9143158391644906, 1.6205183402069245, -0.845876430497869, -3.048717137851863, 1.7194592971268108, -0.9816311658152839, 0.13750323498192163, 2.0302940982151627, -2.670124019014975, -2.9620901299679216, -0.9975855545822587, -0.25917680017026745, 0.13271160011415173, -2.8073725024269405, -1.8290628051680091, 1.6977230562763914, -3.6768861880488592, -0.4879681839017964, 2.914913654243515, 1.0986175569307077, -1.048533886783361, -0.21019504787564358, 1.878331474662688, -2.3740668217678085, 1.9313857640806784, -0.008197194356347026, -1.5497440590309526, -3.841137248180437, 0.8433296243628101, 3.4077263833473097, -0.575338870544206, -0.05194586336085205, -0.0877020028997717, 1.9332903068739755, 1.936659914770127, 0.001371101017874743, -3.831577444890157, -1.3177004807999766, -0.6537932944230458, 2.4207574806801926, -3.306483017124987, -2.274345514145919, -3.5088711567004482, -0.5708890617614562, 0.6934421470058325, -1.3976529571281096, 0.30217003564059386, 2.362986790537362, 0.9079560019927033, -1.3510911556344118, 1.1182986610886232, -3.985573997929771, 1.5775230480917442, -0.5520703187836244, -1.312322676375842, -0.5106516916781412, 0.3365224554100399, -0.7414587113791518, 1.3833065209281497, -0.6565909586283456, -2.6725010585868745, -3.282649979836493, -0.22942835391279726, -1.4196971972289774, -0.18425850223587448, -0.6448631601288972, -1.399306212792271, -2.89643197931554, -0.29638616230522974, -2.6180674200463288, 3.4064801244091685, -1.5339061579333726, -2.0162302153283367, 2.6170656664717455, -3.163236995095931, -3.502481791632914, -3.551371266518605, -1.349117723984938, 3.211048265960324, 2.408149393877558, 2.694670580598663, -0.9670055432225784, -1.629576920938871, 3.130819604195537, -2.53806263726057, -3.2500030370094986, 1.5037477685619676, -2.7375354126737945, 0.335643017453485, -1.957827203156091, -0.7945114340509782, 2.541475125092142, 3.1444144386396005, 0.8466970200817805, -0.2658882241302707, 2.6700582561949293, 2.2386447200760315, 2.112269024874828, -1.4006597768429963, -1.4695641985760242, -0.7049687420780475, 1.5980398955903352, 0.24328783259863496, 0.5675563196523274, -3.280763422545792, -2.5895529883967123, -1.8570442995931673, -1.032907190557438, 2.5265485884672367, -0.15808237713478945, -1.8630865175262086, -0.15534134741975025, -3.5136475887419927, -1.6242722180612494, -0.3101869776109969, -3.693996779859022, 1.6865522959740247, -1.576380531311592, 1.6609123909796848, 2.3052052874684037, -3.594680873665579, -2.5589602553156805, 1.1014056513252788, -0.6319750249642633, 1.9726049552584684, -1.607947808396379, -0.08152029930423854, -1.7116859052009636, 0.481128078336007, -0.12872886742430678, 1.9496859882958786, -0.7587315448291663, 2.792009480554042, -2.553574858258929, 0.5552702498145345, -1.2183892717651368, -1.90388544191085, -1.3014254316331972, -0.2824510016164665, 1.3896100577915282, -0.07569875588244779, -2.7815530639924533, 2.3006551501254497, -2.489330611869974, 0.9419941931579077, 0.27024837390302725, 0.03709733386076142, 1.7880652767108751, 2.91675994113372, 1.789313842525126, -3.631570208342957, -3.990604352396238, 2.2739199512095993, -2.2227626658252184, 0.9095967314598514, -0.7786776621899687, -3.375211381052711, 1.519125747689836, -3.6608862111801135, 2.539190473079138, -3.5639129371173723, 1.7335085393119218, 2.429009377549977, -3.6277454704528282, 2.71649331667596, 0.734660874162147, -1.356437841674624, -0.5666290093074755, 0.44924098396375634, -1.2050253771811539, -4.048659378443026, 2.3683949306102647, 0.7042304902342842, -1.4189806383202321, 0.19629509223830066, -3.886922893679004, -2.9862200251296374, 0.018566102268349205, -0.38049171013021876, 1.966718749286267, 2.773436126435632, -3.6649223063043355, -1.5364111961799063, 3.3438760939741305, -0.3037817174142954, 2.91327482229267, 2.1357344653791843, -2.2062630090893647, -0.6368056124881645, -3.767426299406469, -0.12264350069723218, 2.33119335187647, 1.177078652772579, -0.4660658198870897, -3.9685959171709597, 1.4583780777361595, 0.9679314765196478, -2.935357166330526, -1.4012099520563903, 2.8451843766931892, -2.576122396791643, -0.41305199067933973, 0.9075868270745868, -1.534097460719849, -3.4977682211388554, 3.2846759858971133, -1.852522003399506, -1.1354215613579939, -0.7217508025462269, -3.8032483970123585, 3.423780174390063, 0.973099625938822, 2.056697237652159, 2.534653494208203, 3.0233221159021184, -2.019566662096774, 3.31167400147746, -1.8218169069373138, -2.408491547578845, 1.5118723467133401, -3.2821780567833105, -1.2515681891047472, -0.8182990330024991, 2.568771899180021, -3.5113836204293714, -1.7532579802600372, 0.36395916173178566, -1.034866680856679, -2.4962225151148036, -1.7082733403129624, -0.016849821948151877, 3.2752079716918026, -2.609306856045669, -2.5234294560504438, 0.8950480338406352, -2.8554729905940786, 2.531564980427106, -1.3321134202779823, -1.1754481885244354, -0.17263514183746898, 2.3460245003134412, 0.37485342743786276, 1.3374458042638242, 0.0334380417028175, 0.2929364690840748]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 2\", \"marker\": {\"color\": \"rgb(44, 160, 44)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 2\", \"scene\": \"scene4\", \"showlegend\": false, \"text\": [\"1332_l_2_m-0_0.1-1_0.4-2_0.08-3_1.02\", \"1333_l_2_m-0_1.42-1_0.49-2_0.11-3_0.17\", \"1334_l_2_m-0_0.41-1_0.13-2_0.63-3_0.36\", \"1335_l_2_m-0_1.18-1_0.06-2_0.66-3_0.16\", \"1336_l_2_m-0_0.42-1_0.02-2_0.37-3_0.04\", \"1337_l_2_m-0_0.92-1_0.44-2_0.07-3_0.07\", \"1338_l_2_c_0_1_3-0_0.24-1_0.21-2_0.22-3_0.16\", \"1339_l_2_c_0_1_3-0_0.21-1_0.24-2_1.39-3_0.32\", \"1340_l_2_c_0_1_3-0_0.02-1_0.11-2_0.95-3_0.42\", \"1341_l_2_c_0_1_3-0_0.14-1_0.17-2_0.95-3_0.05\", \"1342_l_2_c_0_1_3-0_0.87-1_0.24-2_0.49-3_0.38\", \"1343_l_2_c_0_1_3-0_0.49-1_0.63-2_0.09-3_0.15\", \"1344_l_2_c_0_1_3-0_0.25-1_0.85-2_0.58-3_0.21\", \"1345_l_2_c_0_1_3-0_0.21-1_0.33-2_1.06-3_0.13\", \"1346_l_2_c_0_1_3-0_0.03-1_0.24-2_0.27-3_0.41\", \"1347_l_2_c_0_1_3-0_0.98-1_1.27-2_0.12-3_0.24\", \"1348_l_2_c_0_1_3-0_1.0-1_0.42-2_0.53-3_0.01\", \"1349_l_2_c_0_1_3-0_0.04-1_0.54-2_0.13-3_0.87\", \"1350_l_2_c_0_1_3-0_0.62-1_0.27-2_0.26-3_0.12\", \"1351_l_2_c_0_1_3-0_0.76-1_0.19-2_1.3-3_0.85\", \"1352_l_2_c_0_1_3-0_0.83-1_0.72-2_0.03-3_0.28\", \"1353_l_2_c_0_1_3-0_0.06-1_0.02-2_0.58-3_0.15\", \"1354_l_2_c_0_1_3-0_0.2-1_0.75-2_0.25-3_0.44\", \"1355_l_2_c_0_1_3-0_0.0-1_0.01-2_0.07-3_0.62\", \"1356_l_2_c_0_1_3-0_0.51-1_0.13-2_0.03-3_0.09\", \"1357_l_2_c_0_1_3-0_0.72-1_0.08-2_1.79-3_0.38\", \"1358_l_2_c_0_1_3-0_0.87-1_0.38-2_0.45-3_0.25\", \"1359_l_2_c_0_1_3-0_0.52-1_0.96-2_0.35-3_0.08\", \"1360_l_2_c_0_1_3-0_0.73-1_0.19-2_1.06-3_1.11\", \"1361_l_2_c_0_1_3-0_0.08-1_0.12-2_0.29-3_0.16\", \"1362_l_2_c_0_1_3-0_0.13-1_0.07-2_0.47-3_0.28\", \"1363_l_2_c_0_1_3-0_0.34-1_0.38-2_0.97-3_0.13\", \"1364_l_2_c_0_1_3-0_0.36-1_0.03-2_0.55-3_0.14\", \"1365_l_2_c_0_1_3-0_0.96-1_0.15-2_0.39-3_0.17\", \"1366_l_2_c_0_1_3-0_0.04-1_0.05-2_0.35-3_0.68\", \"1367_l_2_c_0_1_3-0_0.9-1_0.28-2_0.42-3_0.21\", \"1368_l_2_c_0_1_3-0_0.14-1_0.14-2_0.23-3_0.14\", \"1369_l_2_c_0_1_3-0_0.19-1_0.39-2_1.23-3_0.28\", \"1370_l_2_c_0_1_3-0_0.48-1_0.16-2_0.02-3_0.35\", \"1371_l_2_c_0_1_3-0_0.05-1_0.35-2_0.66-3_0.11\", \"1372_l_2_c_0_1_3-0_0.65-1_0.13-2_0.57-3_0.6\", \"1373_l_2_c_0_1_3-0_0.55-1_0.26-2_0.35-3_0.83\", \"1374_l_2_c_0_1_3-0_0.15-1_0.87-2_0.89-3_0.16\", \"1375_l_2_c_0_1_3-0_0.19-1_0.53-2_0.43-3_0.14\", \"1376_l_2_c_0_1_3-0_0.18-1_0.33-2_0.74-3_0.13\", \"1377_l_2_c_0_1_3-0_0.52-1_0.07-2_0.62-3_0.42\", \"1378_l_2_c_0_1_3-0_0.02-1_0.08-2_1.53-3_0.11\", \"1379_l_2_c_0_1_3-0_0.35-1_0.08-2_0.37-3_0.76\", \"1380_l_2_c_0_1_2-0_0.32-1_0.35-2_0.05-3_0.08\", \"1381_l_2_c_0_1_3-0_0.14-1_0.78-2_0.65-3_0.11\", \"1382_l_2_c_0_1_2-0_0.1-1_0.14-2_0.34-3_1.03\", \"1383_l_2_c_0_1_3-0_0.82-1_0.05-2_0.24-3_0.76\", \"1384_l_2_c_0_1_2-0_0.07-1_0.35-2_0.01-3_1.09\", \"1385_l_2_c_0_1_3-0_0.37-1_0.17-2_1.62-3_0.09\", \"1386_l_2_c_0_1_2-0_0.54-1_0.05-2_0.54-3_0.3\", \"1387_l_2_c_0_1_3-0_0.13-1_1.2-2_0.96-3_0.04\", \"1388_l_2_c_0_1_2-0_0.44-1_0.34-2_0.04-3_0.63\", \"1389_l_2_c_0_1_3-0_0.64-1_0.04-2_0.78-3_0.06\", \"1390_l_2_c_0_1_2-0_0.24-1_0.7-2_0.58-3_0.95\", \"1391_l_2_c_0_1_3-0_1.0-1_0.24-2_0.98-3_0.45\", \"1392_l_2_c_0_1_2-0_0.31-1_0.03-2_0.05-3_0.08\", \"1393_l_2_c_0_1_3-0_0.53-1_0.44-2_0.94-3_0.65\", \"1394_l_2_c_0_1_2-0_0.14-1_0.16-2_0.75-3_0.99\", \"1395_l_2_c_0_1_3-0_0.23-1_0.67-2_0.27-3_0.26\", \"1396_l_2_c_0_1_2-0_0.32-1_0.77-2_0.22-3_0.72\", \"1397_l_2_c_0_1_3-0_0.12-1_0.13-2_0.75-3_0.11\", \"1398_l_2_c_0_1_2-0_0.34-1_0.15-2_0.36-3_0.93\", \"1399_l_2_c_0_1_3-0_0.69-1_0.29-2_1.08-3_0.5\", \"1400_l_2_c_0_1_2-0_0.17-1_0.2-2_0.04-3_0.4\", \"1401_l_2_c_0_1_3-0_0.72-1_0.25-2_0.39-3_0.1\", \"1402_l_2_c_0_1_2-0_0.25-1_0.01-2_0.03-3_0.66\", \"1403_l_2_c_0_1_3-0_0.07-1_0.63-2_0.93-3_0.48\", \"1404_l_2_c_0_1_2-0_0.32-1_0.24-2_0.61-3_1.56\", \"1405_l_2_c_0_1_3-0_0.19-1_0.13-2_0.51-3_0.55\", \"1406_l_2_c_0_1_2-0_0.8-1_0.33-2_0.23-3_0.34\", \"1407_l_2_c_0_1_3-0_0.1-1_0.15-2_0.56-3_0.77\", \"1408_l_2_c_0_1_2-0_0.84-1_0.06-2_0.47-3_0.17\", \"1409_l_2_c_0_1_3-0_0.01-1_0.03-2_0.47-3_0.57\", \"1410_l_2_c_0_1_2-0_0.07-1_0.1-2_0.14-3_0.14\", \"1411_l_2_c_0_1_3-0_0.5-1_0.19-2_1.55-3_0.55\", \"1412_l_2_c_0_1_2-0_0.83-1_0.01-2_0.02-3_0.76\", \"1413_l_2_c_0_1_3-0_0.24-1_0.57-2_0.53-3_0.05\", \"1414_l_2_c_0_1_2-0_0.4-1_0.27-2_0.23-3_0.43\", \"1415_l_2_c_0_1_3-0_0.64-1_0.66-2_0.7-3_0.67\", \"1416_l_2_c_0_1_2-0_0.09-1_0.95-2_0.8-3_0.57\", \"1417_l_2_c_0_1_3-0_0.12-1_0.27-2_0.02-3_0.69\", \"1418_l_2_c_0_1_2-0_0.02-1_0.31-2_0.62-3_0.33\", \"1419_l_2_c_0_1_3-0_0.19-1_0.14-2_0.02-3_0.26\", \"1420_l_2_c_0_1_2-0_0.5-1_0.02-2_0.07-3_1.04\", \"1421_l_2_c_0_1_3-0_0.09-1_0.05-2_0.12-3_0.44\", \"1422_l_2_c_0_1_2-0_0.03-1_1.15-2_0.84-3_1.68\", \"1423_l_2_c_0_1_3-0_0.3-1_0.14-2_0.57-3_0.45\", \"1424_l_2_c_0_1_2-0_0.81-1_0.89-2_0.09-3_0.5\", \"1425_l_2_c_0_1_3-0_0.23-1_0.05-2_0.82-3_0.49\", \"1426_l_2_c_0_1_2-0_0.23-1_0.44-2_0.32-3_1.59\", \"1427_l_2_c_0_1_3-0_0.18-1_0.18-2_0.8-3_0.65\", \"1428_l_2_c_0_1_2-0_0.48-1_0.58-2_0.04-3_0.63\", \"1429_l_2_c_0_1_3-0_0.34-1_0.27-2_0.51-3_0.38\", \"1430_l_2_c_0_1_2-0_0.09-1_1.64-2_0.09-3_0.81\", \"1431_l_2_c_0_1_3-0_0.22-1_0.18-2_1.22-3_0.29\", \"1432_l_2_c_0_1_2-0_0.15-1_0.32-2_0.43-3_0.74\", \"1433_l_2_c_0_1_3-0_0.68-1_0.56-2_0.4-3_0.14\", \"1434_l_2_c_0_1_2-0_0.1-1_0.72-2_0.0-3_0.32\", \"1435_l_2_c_0_1_3-0_0.46-1_0.2-2_1.3-3_0.45\", \"1436_l_2_c_0_1_2-0_0.48-1_0.15-2_0.07-3_0.11\", \"1437_l_2_c_0_1_3-0_0.54-1_0.09-2_1.14-3_0.51\", \"1438_l_2_c_0_1_2-0_0.23-1_0.05-2_0.21-3_0.64\", \"1439_l_2_c_0_1_3-0_1.13-1_0.47-2_1.55-3_0.67\", \"1440_l_2_c_0_1_2-0_0.01-1_0.44-2_0.15-3_0.81\", \"1441_l_2_c_0_1_3-0_0.67-1_0.28-2_0.52-3_0.17\", \"1442_l_2_c_0_1_2-0_0.35-1_0.02-2_0.64-3_0.38\", \"1443_l_2_c_0_1_3-0_0.21-1_0.36-2_0.4-3_0.0\", \"1444_l_2_c_0_1_2-0_0.45-1_0.23-2_0.32-3_1.44\", \"1445_l_2_c_0_1_3-0_0.69-1_1.13-2_0.28-3_0.64\", \"1446_l_2_c_0_1_2-0_0.06-1_0.67-2_0.21-3_0.63\", \"1447_l_2_c_0_1_3-0_0.5-1_0.9-2_0.38-3_0.43\", \"1448_l_2_c_0_1_2-0_0.09-1_0.54-2_0.29-3_0.99\", \"1449_l_2_c_0_1_3-0_0.25-1_0.46-2_1.75-3_0.99\", \"1450_l_2_c_0_1_2-0_0.04-1_0.03-2_0.11-3_0.05\", \"1451_l_2_c_0_1_3-0_0.26-1_0.1-2_0.61-3_0.95\", \"1452_l_2_c_0_1_2-0_0.11-1_0.11-2_0.09-3_0.01\", \"1453_l_2_c_0_1_3-0_1.16-1_0.36-2_1.21-3_0.67\", \"1454_l_2_c_0_1_2-0_0.32-1_0.08-2_0.01-3_0.19\", \"1455_l_2_c_0_1_3-0_0.45-1_0.11-2_0.85-3_0.41\", \"1456_l_2_c_0_1_2-0_0.04-1_0.31-2_0.28-3_0.28\", \"1457_l_2_c_0_1_3-0_0.05-1_0.27-2_0.17-3_0.19\", \"1458_l_2_c_0_1_2-0_0.11-1_0.02-2_0.02-3_0.31\", \"1459_l_2_c_0_1_3-0_0.15-1_0.5-2_0.61-3_0.62\", \"1460_l_2_c_0_1_2-0_0.02-1_0.56-2_0.1-3_0.53\", \"1461_l_2_c_0_1_3-0_0.42-1_0.43-2_1.3-3_0.32\", \"1462_l_2_c_0_1_2-0_0.42-1_0.11-2_0.88-3_0.95\", \"1463_l_2_c_0_1_3-0_0.11-1_0.59-2_0.11-3_0.84\", \"1464_l_2_c_0_1_2-0_0.18-1_0.16-2_0.16-3_0.67\", \"1465_l_2_c_0_1_3-0_0.35-1_0.95-2_0.06-3_0.27\", \"1466_l_2_c_0_1_2-0_0.1-1_0.82-2_0.11-3_2.07\", \"1467_l_2_c_0_1_3-0_0.48-1_0.43-2_0.41-3_0.68\", \"1468_l_2_c_0_1_2-0_0.79-1_1.31-2_0.01-3_0.09\", \"1469_l_2_c_0_1_3-0_0.07-1_0.15-2_0.4-3_0.79\", \"1470_l_2_c_0_1_2-0_0.34-1_0.41-2_0.42-3_1.09\", \"1471_l_2_c_0_1_3-0_0.01-1_0.16-2_0.31-3_0.55\", \"1472_l_2_c_0_1_2-0_0.13-1_0.24-2_0.05-3_0.43\", \"1473_l_2_c_0_1_3-0_0.11-1_0.14-2_0.97-3_0.33\", \"1474_l_2_c_0_1_2-0_0.25-1_0.65-2_0.05-3_0.7\", \"1475_l_2_c_0_1_3-0_0.2-1_0.5-2_1.36-3_0.61\", \"1476_l_2_c_1_2_3-0_0.54-1_0.22-2_0.69-3_0.14\", \"1477_l_2_c_0_1_2-0_0.0-1_0.54-2_0.34-3_0.17\", \"1478_l_2_c_0_1_3-0_0.02-1_0.69-2_0.46-3_0.3\", \"1479_l_2_c_1_2_3-0_0.56-1_0.47-2_0.12-3_0.17\", \"1480_l_2_c_0_1_2-0_0.01-1_0.13-2_1.01-3_0.7\", \"1481_l_2_c_0_1_3-0_1.94-1_0.32-2_1.25-3_1.17\", \"1482_l_2_c_1_2_3-0_0.8-1_0.49-2_0.03-3_0.15\", \"1483_l_2_c_0_1_2-0_0.06-1_0.13-2_0.59-3_0.21\", \"1484_l_2_c_0_1_3-0_0.73-1_0.05-2_0.68-3_0.0\", \"1485_l_2_c_1_2_3-0_0.93-1_0.11-2_0.22-3_0.25\", \"1486_l_2_c_0_1_2-0_0.32-1_1.15-2_0.2-3_0.19\", \"1487_l_2_c_0_1_3-0_0.05-1_0.46-2_0.55-3_0.18\", \"1488_l_2_c_1_2_3-0_0.45-1_0.36-2_0.69-3_0.08\", \"1489_l_2_c_0_1_2-0_0.73-1_0.25-2_0.19-3_0.85\", \"1490_l_2_c_0_1_3-0_0.26-1_0.0-2_1.11-3_0.23\", \"1491_l_2_c_1_2_3-0_0.85-1_0.04-2_0.41-3_0.4\", \"1492_l_2_c_0_1_2-0_0.56-1_0.17-2_0.03-3_0.84\", \"1493_l_2_c_0_1_3-0_0.25-1_0.09-2_1.13-3_0.04\", \"1494_l_2_c_1_2_3-0_1.9-1_0.86-2_0.18-3_0.06\", \"1495_l_2_c_0_1_2-0_0.41-1_0.15-2_0.4-3_1.38\", \"1496_l_2_c_0_1_3-0_0.14-1_0.48-2_0.11-3_1.05\", \"1497_l_2_c_1_2_3-0_0.24-1_0.41-2_0.08-3_0.28\", \"1498_l_2_c_0_1_2-0_0.13-1_0.45-2_0.26-3_0.61\", \"1499_l_2_c_0_1_3-0_0.97-1_0.47-2_1.06-3_1.09\", \"1500_l_2_c_1_2_3-0_0.81-1_0.73-2_0.19-3_0.06\", \"1501_l_2_c_0_1_2-0_0.48-1_0.01-2_0.17-3_0.89\", \"1502_l_2_c_0_1_3-0_0.04-1_0.21-2_0.53-3_0.8\", \"1503_l_2_c_1_2_3-0_1.16-1_0.4-2_0.41-3_0.36\", \"1504_l_2_c_0_1_2-0_0.56-1_0.17-2_0.17-3_0.17\", \"1505_l_2_c_0_1_3-0_0.0-1_0.14-2_0.15-3_0.12\", \"1506_l_2_c_1_2_3-0_0.05-1_0.7-2_0.22-3_0.37\", \"1507_l_2_c_0_1_2-0_0.13-1_1.81-2_0.1-3_0.65\", \"1508_l_2_c_0_1_3-0_0.28-1_0.42-2_0.42-3_0.1\", \"1509_l_2_c_1_2_3-0_0.14-1_0.42-2_0.29-3_0.33\", \"1510_l_2_c_0_1_2-0_0.56-1_0.72-2_0.21-3_0.45\", \"1511_l_2_c_0_1_3-0_0.52-1_0.02-2_0.45-3_0.45\", \"1512_l_2_c_1_2_3-0_0.07-1_0.06-2_0.08-3_0.43\", \"1513_l_2_c_0_1_2-0_0.88-1_0.55-2_0.1-3_0.3\", \"1514_l_2_c_0_1_3-0_0.25-1_0.01-2_0.35-3_0.15\", \"1515_l_2_c_1_2_3-0_0.37-1_0.07-2_0.54-3_0.12\", \"1516_l_2_c_0_1_2-0_0.44-1_0.6-2_0.01-3_0.93\", \"1517_l_2_c_0_1_3-0_0.03-1_0.28-2_1.39-3_0.11\", \"1518_l_2_c_1_2_3-0_0.73-1_0.6-2_0.02-3_0.05\", \"1519_l_2_c_0_1_2-0_0.19-1_0.11-2_0.33-3_0.53\", \"1520_l_2_c_1_3-0_0.89-1_0.32-2_1.39-3_0.89\", \"1521_l_2_r-0_0.36-1_1.47-2_1.08-3_1.21\", \"1522_l_2_r-0_0.67-1_0.31-2_0.11-3_1.28\", \"1523_l_2_r-0_0.57-1_0.02-2_1.04-3_1.39\", \"1524_l_2_r-0_0.9-1_0.09-2_0.42-3_0.49\", \"1525_l_2_r-0_0.96-1_2.23-2_1.22-3_0.86\", \"1526_l_2_r-0_1.2-1_0.59-2_1.07-3_1.37\", \"1527_l_2_r-0_1.14-1_0.44-2_1.03-3_0.47\", \"1528_l_2_r-0_1.2-1_0.66-2_0.23-3_0.55\", \"1529_l_2_r-0_1.12-1_0.04-2_0.7-3_1.12\", \"1530_l_2_r-0_0.01-1_1.74-2_0.18-3_0.74\", \"1531_l_2_r-0_0.48-1_0.13-2_0.32-3_0.34\", \"1532_l_2_r-0_1.13-1_0.59-2_0.94-3_1.28\", \"1533_l_2_r-0_0.74-1_1.34-2_0.03-3_0.12\", \"1534_l_2_r-0_0.64-1_0.56-2_0.48-3_0.59\", \"1535_l_2_r-0_0.01-1_0.97-2_0.26-3_0.2\", \"1536_l_2_r-0_1.3-1_0.12-2_1.07-3_0.97\", \"1537_l_2_r-0_0.32-1_0.96-2_1.59-3_1.25\", \"1538_l_2_r-0_0.05-1_0.73-2_1.23-3_0.38\", \"1539_l_2_r-0_0.01-1_1.02-2_0.61-3_1.06\", \"1540_l_2_r-0_0.17-1_1.3-2_0.49-3_0.73\", \"1541_l_2_r-0_0.41-1_0.18-2_0.45-3_0.32\", \"1542_l_2_r-0_0.55-1_0.58-2_0.35-3_0.43\", \"1543_l_2_r-0_1.55-1_0.49-2_0.26-3_0.12\", \"1544_l_2_r-0_0.78-1_1.37-2_1.02-3_0.49\", \"1545_l_2_r-0_2.12-1_1.57-2_0.09-3_0.3\", \"1546_l_2_r-0_0.7-1_1.02-2_0.38-3_0.27\", \"1547_l_2_r-0_0.13-1_0.9-2_0.53-3_0.31\", \"1548_l_2_r-0_0.8-1_0.03-2_0.03-3_0.04\", \"1549_l_2_r-0_1.63-1_0.8-2_0.1-3_0.1\", \"1550_l_2_r-0_0.03-1_0.71-2_1.08-3_1.36\", \"1551_l_2_r-0_0.16-1_1.78-2_0.54-3_0.14\", \"1552_l_2_r-0_0.14-1_1.11-2_1.13-3_1.04\", \"1553_l_2_r-0_0.73-1_0.12-2_0.03-3_0.6\", \"1554_l_2_r-0_0.8-1_0.03-2_0.88-3_0.02\", \"1555_l_2_r-0_1.46-1_1.4-2_0.52-3_2.21\", \"1556_l_2_r-0_1.35-1_0.78-2_1.08-3_0.29\", \"1557_l_2_r-0_0.66-1_1.36-2_1.74-3_0.64\", \"1558_l_2_r-0_0.53-1_0.62-2_0.22-3_0.49\", \"1559_l_2_r-0_1.07-1_0.6-2_0.91-3_0.73\", \"1560_l_2_r-0_0.76-1_0.36-2_0.41-3_0.08\", \"1561_l_2_r-0_1.74-1_1.83-2_0.13-3_0.3\", \"1562_l_2_r-0_1.14-1_0.8-2_0.67-3_1.74\", \"1563_l_2_r-0_0.91-1_0.14-2_1.45-3_1.26\", \"1564_l_2_r-0_0.28-1_1.62-2_1.07-3_1.07\", \"1565_l_2_r-0_0.92-1_1.22-2_0.68-3_1.55\", \"1566_l_2_r-0_0.31-1_0.48-2_0.73-3_0.3\", \"1567_l_2_r-0_1.17-1_0.06-2_0.25-3_0.88\", \"1568_l_2_r-0_0.54-1_1.07-2_0.55-3_1.05\", \"1569_l_2_r-0_1.61-1_1.1-2_0.21-3_1.3\", \"1570_l_2_r-0_1.09-1_0.16-2_0.49-3_1.45\", \"1571_l_2_r-0_0.45-1_0.4-2_1.25-3_1.75\", \"1572_l_2_r-0_0.22-1_0.18-2_1.01-3_0.15\", \"1573_l_2_r-0_0.3-1_0.07-2_0.88-3_1.11\", \"1574_l_2_r-0_1.22-1_0.71-2_0.88-3_1.67\", \"1575_l_2_r-0_0.04-1_0.8-2_0.13-3_0.04\", \"1576_l_2_r-0_0.41-1_0.69-2_1.38-3_0.18\", \"1577_l_2_r-0_0.06-1_0.77-2_1.03-3_0.69\", \"1578_l_2_r-0_0.19-1_1.44-2_0.38-3_0.68\", \"1579_l_2_r-0_0.73-1_0.4-2_0.05-3_0.62\", \"1580_l_2_r-0_1.43-1_0.8-2_0.5-3_0.87\", \"1581_l_2_r-0_1.14-1_0.79-2_0.65-3_0.74\", \"1582_l_2_r-0_0.76-1_1.08-2_0.37-3_0.07\", \"1583_l_2_r-0_0.79-1_0.36-2_0.14-3_0.4\", \"1584_l_2_r-0_1.11-1_1.05-2_0.77-3_0.85\", \"1585_l_2_r-0_1.71-1_1.09-2_0.32-3_1.01\", \"1586_l_2_r-0_0.7-1_0.23-2_0.02-3_1.13\", \"1587_l_2_r-0_1.37-1_0.53-2_0.46-3_0.64\", \"1588_l_2_r-0_0.19-1_0.5-2_1.16-3_0.26\", \"1589_l_2_r-0_0.23-1_0.2-2_0.27-3_0.45\", \"1590_l_2_r-0_1.1-1_1.65-2_0.92-3_0.84\", \"1591_l_2_r-0_0.86-1_1.27-2_0.38-3_0.38\", \"1592_l_2_r-0_0.65-1_0.74-2_1.12-3_0.06\", \"1593_l_2_r-0_0.84-1_1.53-2_0.29-3_0.8\", \"1594_l_2_r-0_0.36-1_0.12-2_0.53-3_1.18\", \"1595_l_2_r-0_0.15-1_0.72-2_0.85-3_0.75\", \"1596_l_2_r-0_0.38-1_0.22-2_1.04-3_0.47\", \"1597_l_2_r-0_0.71-1_1.12-2_0.95-3_0.24\", \"1598_l_2_r-0_1.24-1_0.55-2_1.39-3_0.4\", \"1599_l_2_r-0_0.82-1_0.78-2_0.19-3_0.59\", \"1600_l_2_r-0_0.6-1_0.91-2_0.81-3_0.44\", \"1601_l_2_r-0_0.37-1_0.82-2_1.56-3_1.04\", \"1602_l_2_r-0_0.45-1_0.84-2_0.96-3_0.8\", \"1603_l_2_r-0_1.32-1_0.41-2_2.33-3_1.31\", \"1604_l_2_r-0_0.26-1_0.21-2_0.91-3_0.88\", \"1605_l_2_r-0_0.87-1_0.2-2_0.02-3_0.69\", \"1606_l_2_r-0_0.2-1_1.06-2_0.22-3_1.23\", \"1607_l_2_r-0_0.78-1_0.58-2_0.1-3_1.13\", \"1608_l_2_r-0_0.04-1_0.8-2_0.66-3_0.73\", \"1609_l_2_r-0_1.11-1_1.29-2_0.24-3_0.27\", \"1610_l_2_r-0_0.39-1_0.69-2_0.98-3_1.5\", \"1611_l_2_r-0_1.06-1_0.96-2_0.48-3_0.68\", \"1612_l_2_r-0_0.82-1_1.31-2_0.36-3_0.17\", \"1613_l_2_r-0_0.82-1_0.21-2_0.4-3_0.35\", \"1614_l_2_r-0_0.79-1_1.23-2_0.5-3_0.63\", \"1615_l_2_r-0_0.81-1_0.74-2_0.44-3_1.08\", \"1616_l_2_r-0_0.59-1_0.75-2_0.78-3_0.73\", \"1617_l_2_r-0_0.49-1_0.03-2_1.08-3_0.62\", \"1618_l_2_r-0_0.42-1_0.01-2_0.84-3_0.65\", \"1619_l_2_r-0_0.49-1_0.96-2_0.52-3_0.68\", \"1620_l_2_r-0_0.81-1_1.03-2_0.69-3_0.02\", \"1621_l_2_r-0_0.4-1_0.61-2_1.21-3_1.41\", \"1622_l_2_r-0_0.86-1_0.72-2_1.2-3_0.28\", \"1623_l_2_r-0_0.43-1_1.04-2_0.29-3_0.69\", \"1624_l_2_r-0_0.56-1_0.55-2_0.44-3_0.88\", \"1625_l_2_r-0_0.55-1_1.37-2_0.92-3_0.98\", \"1626_l_2_r-0_0.59-1_0.14-2_0.74-3_0.95\", \"1627_l_2_r-0_1.2-1_0.17-2_0.69-3_0.69\", \"1628_l_2_r-0_0.29-1_0.18-2_0.75-3_0.51\", \"1629_l_2_r-0_0.7-1_1.15-2_0.83-3_0.8\", \"1630_l_2_r-0_0.65-1_0.71-2_0.1-3_0.14\", \"1631_l_2_r-0_1.05-1_0.15-2_1.02-3_0.44\", \"1632_l_2_r-0_0.47-1_0.74-2_0.61-3_1.15\", \"1633_l_2_r-0_0.34-1_0.55-2_1.37-3_1.58\", \"1634_l_2_r-0_0.03-1_0.67-2_0.49-3_0.09\", \"1635_l_2_r-0_0.97-1_1.54-2_0.38-3_0.72\", \"1636_l_2_r-0_0.45-1_0.51-2_0.59-3_0.91\", \"1637_l_2_r-0_0.1-1_0.16-2_0.46-3_0.57\", \"1638_l_2_r-0_0.33-1_1.29-2_1.35-3_0.7\", \"1639_l_2_r-0_0.93-1_0.96-2_1.19-3_0.5\", \"1640_l_2_r-0_1.33-1_1.35-2_1.7-3_1.56\", \"1641_l_2_r-0_0.21-1_0.22-2_0.85-3_0.3\", \"1642_l_2_r-0_0.04-1_0.79-2_0.97-3_0.42\", \"1643_l_2_r-0_0.38-1_1.26-2_1.65-3_0.65\", \"1644_l_2_r-0_0.52-1_0.98-2_0.63-3_1.37\", \"1645_l_2_r-0_0.22-1_0.3-2_0.26-3_0.84\", \"1646_l_2_r-0_0.91-1_0.01-2_0.41-3_0.23\", \"1647_l_2_r-0_0.52-1_0.94-2_0.73-3_0.02\", \"1648_l_2_r-0_0.25-1_1.37-2_0.02-3_1.05\", \"1649_l_2_r-0_0.73-1_0.87-2_1.29-3_0.66\", \"1650_l_2_r-0_0.84-1_0.47-2_1.76-3_1.92\", \"1651_l_2_r-0_1.48-1_0.24-2_0.19-3_0.74\", \"1652_l_2_r-0_2.23-1_0.37-2_0.77-3_0.15\", \"1653_l_2_r-0_0.42-1_0.77-2_0.5-3_0.04\", \"1654_l_2_r-0_1.06-1_0.41-2_1.06-3_1.04\", \"1655_l_2_r-0_0.33-1_1.33-2_1.12-3_2.68\", \"1656_l_2_r-0_1.0-1_0.18-2_0.15-3_0.04\", \"1657_l_2_r-0_1.41-1_0.16-2_0.47-3_0.2\", \"1658_l_2_r-0_0.33-1_0.51-2_1.2-3_0.46\", \"1659_l_2_r-0_0.21-1_1.24-2_0.69-3_1.17\", \"1660_l_2_r-0_0.76-1_0.56-2_1.51-3_0.09\", \"1661_l_2_r-0_0.16-1_1.07-2_0.18-3_1.39\", \"1662_l_2_r-0_0.64-1_1.34-2_0.58-3_1.04\", \"1663_l_2_r-0_0.79-1_0.09-2_0.17-3_0.79\", \"1664_l_2_r-0_0.94-1_0.01-2_0.58-3_1.5\", \"1665_l_2_r-0_0.53-1_0.74-2_0.57-3_0.4\", \"1666_l_2_r-0_0.08-1_0.17-2_0.62-3_0.26\", \"1667_l_2_r-0_0.23-1_0.67-2_0.41-3_0.85\", \"1668_l_2_r-0_1.37-1_0.09-2_0.13-3_0.82\", \"1669_l_2_r-0_0.63-1_0.67-2_0.19-3_0.84\", \"1670_l_2_r-0_2.14-1_0.34-2_0.61-3_0.63\", \"1671_l_2_r-0_0.05-1_1.16-2_0.49-3_0.26\", \"1672_l_2_r-0_0.59-1_0.55-2_0.79-3_0.32\", \"1673_l_2_r-0_0.05-1_0.35-2_0.47-3_2.37\", \"1674_l_2_r-0_0.3-1_0.1-2_0.48-3_1.43\", \"1675_l_2_r-0_0.66-1_1.25-2_0.2-3_0.54\", \"1676_l_2_r-0_1.04-1_1.13-2_1.39-3_0.91\", \"1677_l_2_r-0_2.13-1_0.2-2_0.01-3_0.13\", \"1678_l_2_r-0_0.93-1_1.19-2_0.97-3_0.67\", \"1679_l_2_r-0_0.64-1_0.47-2_0.25-3_0.57\", \"1680_l_2_r-0_0.9-1_0.54-2_1.19-3_0.86\", \"1681_l_2_r-0_0.6-1_0.4-2_0.07-3_0.16\", \"1682_l_2_r-0_0.83-1_0.69-2_0.01-3_0.18\", \"1683_l_2_r-0_0.76-1_0.37-2_0.62-3_0.84\", \"1684_l_2_r-0_1.33-1_0.17-2_0.25-3_0.57\", \"1685_l_2_r-0_0.04-1_1.53-2_0.93-3_1.05\", \"1686_l_2_r-0_0.27-1_0.11-2_1.07-3_0.74\", \"1687_l_2_r-0_0.13-1_1.49-2_0.64-3_0.87\", \"1688_l_2_r-0_0.12-1_0.26-2_1.05-3_0.43\", \"1689_l_2_r-0_0.4-1_0.83-2_0.52-3_0.07\", \"1690_l_2_r-0_0.21-1_0.5-2_1.34-3_0.24\", \"1691_l_2_r-0_0.76-1_0.34-2_0.81-3_1.36\", \"1692_l_2_r-0_1.67-1_0.73-2_0.59-3_0.58\", \"1693_l_2_r-0_0.89-1_0.33-2_0.78-3_0.46\", \"1694_l_2_r-0_0.11-1_0.26-2_0.57-3_0.59\", \"1695_l_2_r-0_0.19-1_2.2-2_0.65-3_0.57\", \"1696_l_2_r-0_0.21-1_1.05-2_1.09-3_0.79\", \"1697_l_2_r-0_0.86-1_0.1-2_1.11-3_0.61\", \"1698_l_2_r-0_0.39-1_0.91-2_0.03-3_0.84\", \"1699_l_2_r-0_0.86-1_0.89-2_0.69-3_0.09\", \"1700_l_2_r-0_0.33-1_1.1-2_0.7-3_0.76\", \"1701_l_2_r-0_0.99-1_1.68-2_0.41-3_0.34\", \"1702_l_2_r-0_0.64-1_0.09-2_0.6-3_0.31\", \"1703_l_2_r-0_0.47-1_0.97-2_0.18-3_0.06\", \"1704_l_2_r-0_2.1-1_0.2-2_0.67-3_0.38\", \"1705_l_2_r-0_0.75-1_0.71-2_0.29-3_0.78\", \"1706_l_2_r-0_0.5-1_0.62-2_1.02-3_0.54\", \"1707_l_2_r-0_1.18-1_0.09-2_0.38-3_0.65\", \"1708_l_2_r-0_0.1-1_1.14-2_0.67-3_0.27\", \"1709_l_2_r-0_0.06-1_1.06-2_0.68-3_0.59\", \"1710_l_2_r-0_1.2-1_0.88-2_0.68-3_1.06\", \"1711_l_2_r-0_0.96-1_0.83-2_0.87-3_0.51\", \"1712_l_2_r-0_1.77-1_1.77-2_0.73-3_0.93\", \"1713_l_2_r-0_0.34-1_0.77-2_1.63-3_0.07\", \"1714_l_2_r-0_1.95-1_0.33-2_1.63-3_0.56\", \"1715_l_2_r-0_0.93-1_1.44-2_0.58-3_1.07\", \"1716_l_2_r-0_0.16-1_0.84-2_0.99-3_1.05\", \"1717_l_2_r-0_0.0-1_0.2-2_0.5-3_0.54\", \"1718_l_2_r-0_0.93-1_1.81-2_0.79-3_1.09\", \"1719_l_2_r-0_0.67-1_1.11-2_1.02-3_1.44\", \"1720_l_2_r-0_0.16-1_1.09-2_0.62-3_0.09\", \"1721_l_2_r-0_0.14-1_1.22-2_0.96-3_1.06\", \"1722_l_2_r-0_0.78-1_0.33-2_1.15-3_1.69\", \"1723_l_2_r-0_0.67-1_1.09-2_0.48-3_1.32\", \"1724_l_2_r-0_0.07-1_0.95-2_0.01-3_0.62\", \"1725_l_2_r-0_1.22-1_1.03-2_0.24-3_0.91\", \"1726_l_2_r-0_0.08-1_0.09-2_0.15-3_0.32\", \"1727_l_2_r-0_1.19-1_0.93-2_0.18-3_0.99\", \"1728_l_2_r-0_1.39-1_0.55-2_0.84-3_0.35\", \"1729_l_2_r-0_0.94-1_0.67-2_0.35-3_0.8\", \"1730_l_2_r-0_0.23-1_0.72-2_0.24-3_0.44\", \"1731_l_2_r-0_0.51-1_1.17-2_0.97-3_0.24\", \"1732_l_2_r-0_0.49-1_0.73-2_0.46-3_0.38\", \"1733_l_2_r-0_1.41-1_0.3-2_0.82-3_0.43\", \"1734_l_2_r-0_0.63-1_1.8-2_1.0-3_0.01\", \"1735_l_2_r-0_0.23-1_0.59-2_0.2-3_1.15\", \"1736_l_2_r-0_1.02-1_0.8-2_0.52-3_0.62\", \"1737_l_2_r-0_0.92-1_1.42-2_0.26-3_0.77\", \"1738_l_2_r-0_0.06-1_1.17-2_0.69-3_0.4\", \"1739_l_2_r-0_0.34-1_0.19-2_0.7-3_0.12\", \"1740_l_2_r-0_0.42-1_0.93-2_0.15-3_1.2\", \"1741_l_2_r-0_1.18-1_1.63-2_1.2-3_0.42\", \"1742_l_2_r-0_0.43-1_1.11-2_0.97-3_0.12\", \"1743_l_2_r-0_0.12-1_0.55-2_1.05-3_0.14\", \"1744_l_2_r-0_0.64-1_1.88-2_0.05-3_0.58\", \"1745_l_2_r-0_0.01-1_1.21-2_0.11-3_1.66\", \"1746_l_2_r-0_0.51-1_1.45-2_1.33-3_0.81\", \"1747_l_2_r-0_1.27-1_0.36-2_0.85-3_0.6\", \"1748_l_2_r-0_0.93-1_0.62-2_0.29-3_0.9\", \"1749_l_2_r-0_0.17-1_1.18-2_0.75-3_2.16\", \"1750_l_2_r-0_0.2-1_1.29-2_0.12-3_0.24\", \"1751_l_2_r-0_0.79-1_0.92-2_1.46-3_0.48\", \"1752_l_2_r-0_0.59-1_0.59-2_0.24-3_0.03\", \"1753_l_2_r-0_0.39-1_1.44-2_0.69-3_0.83\", \"1754_l_2_r-0_1.0-1_0.27-2_0.87-3_0.88\", \"1755_l_2_r-0_2.28-1_0.6-2_0.71-3_1.46\", \"1756_l_2_r-0_0.36-1_0.43-2_0.81-3_0.72\", \"1757_l_2_r-0_0.08-1_1.5-2_0.33-3_0.41\", \"1758_l_2_r-0_0.06-1_0.17-2_0.54-3_1.0\", \"1759_l_2_r-0_0.21-1_0.35-2_0.51-3_1.21\", \"1760_l_2_r-0_1.38-1_0.12-2_1.3-3_0.77\", \"1761_l_2_r-0_0.6-1_0.5-2_0.53-3_0.27\", \"1762_l_2_r-0_0.49-1_0.97-2_1.25-3_1.57\", \"1763_l_2_r-0_0.04-1_0.74-2_0.01-3_0.78\", \"1764_l_2_r-0_0.84-1_0.4-2_0.67-3_0.32\", \"1765_l_2_r-0_0.21-1_2.31-2_1.1-3_0.17\", \"1766_l_2_r-0_0.4-1_0.59-2_1.27-3_0.17\", \"1767_l_2_r-0_0.57-1_0.2-2_0.17-3_0.41\", \"1768_l_2_r-0_0.26-1_0.3-2_0.71-3_0.38\", \"1769_l_2_r-0_0.43-1_1.08-2_0.73-3_0.52\", \"1770_l_2_r-0_0.65-1_0.24-2_0.03-3_0.31\", \"1771_l_2_r-0_0.94-1_0.22-2_0.87-3_0.5\", \"1772_l_2_r-0_0.49-1_0.49-2_1.49-3_0.12\", \"1773_l_2_r-0_1.0-1_0.53-2_0.28-3_0.4\", \"1774_l_2_r-0_0.1-1_0.88-2_0.89-3_0.61\", \"1775_l_2_r-0_0.5-1_0.57-2_0.03-3_1.56\", \"1776_l_2_r-0_0.24-1_1.01-2_0.29-3_0.36\", \"1777_l_2_r-0_1.14-1_0.84-2_0.61-3_0.95\", \"1778_l_2_r-0_1.55-1_0.0-2_0.07-3_1.07\", \"1779_l_2_r-0_0.72-1_0.55-2_0.36-3_0.22\", \"1780_l_2_r-0_0.32-1_1.13-2_0.35-3_0.62\", \"1781_l_2_r-0_0.0-1_0.91-2_0.71-3_0.5\", \"1782_l_2_r-0_0.98-1_0.22-2_0.01-3_0.05\", \"1783_l_2_r-0_0.05-1_0.01-2_0.43-3_0.3\", \"1784_l_2_r-0_1.36-1_0.58-2_1.35-3_0.89\", \"1785_l_2_r-0_1.11-1_1.03-2_0.49-3_0.29\", \"1786_l_2_r-0_0.19-1_0.31-2_0.79-3_0.2\", \"1787_l_2_r-0_0.78-1_0.45-2_0.81-3_0.69\", \"1788_l_2_r-0_0.13-1_0.71-2_0.69-3_0.23\", \"1789_l_2_r-0_0.71-1_0.11-2_0.14-3_1.37\", \"1790_l_2_r-0_0.42-1_2.08-2_1.41-3_0.77\", \"1791_l_2_r-0_0.15-1_1.1-2_0.48-3_0.33\", \"1792_l_2_r-0_1.41-1_0.34-2_1.05-3_1.51\", \"1793_l_2_r-0_1.12-1_0.1-2_0.06-3_0.33\", \"1794_l_2_r-0_0.87-1_0.46-2_1.47-3_1.38\", \"1795_l_2_r-0_1.26-1_0.72-2_1.33-3_0.73\", \"1796_l_2_r-0_1.16-1_0.94-2_0.79-3_0.21\", \"1797_l_2_r-0_0.44-1_0.03-2_0.09-3_0.79\", \"1798_l_2_r-0_0.99-1_0.53-2_0.25-3_0.34\", \"1799_l_2_r-0_0.93-1_1.16-2_1.01-3_1.24\", \"1800_l_2_r-0_0.32-1_0.44-2_0.21-3_0.34\", \"1801_l_2_r-0_0.9-1_0.87-2_0.07-3_0.77\", \"1802_l_2_r-0_0.15-1_0.72-2_0.84-3_0.31\", \"1803_l_2_r-0_0.13-1_0.55-2_1.36-3_1.14\", \"1804_l_2_r-0_0.69-1_1.43-2_0.75-3_0.53\", \"1805_l_2_r-0_0.25-1_1.21-2_0.67-3_0.87\", \"1806_l_2_r-0_1.38-1_0.58-2_0.4-3_0.35\", \"1807_l_2_r-0_0.59-1_0.23-2_0.68-3_1.82\", \"1808_l_2_r-0_0.32-1_0.83-2_1.01-3_0.48\", \"1809_l_2_r-0_1.44-1_0.32-2_0.62-3_0.01\", \"1810_l_2_r-0_0.12-1_0.1-2_0.81-3_1.26\", \"1811_l_2_r-0_0.25-1_1.35-2_0.11-3_1.02\", \"1812_l_2_r-0_0.82-1_0.83-2_0.66-3_0.31\", \"1813_l_2_r-0_1.04-1_0.06-2_0.78-3_0.72\", \"1814_l_2_r-0_0.74-1_1.85-2_0.66-3_0.67\", \"1815_l_2_r-0_1.13-1_0.38-2_0.15-3_0.5\", \"1816_l_2_r-0_0.4-1_1.52-2_0.2-3_1.09\", \"1817_l_2_r-0_1.72-1_0.51-2_0.32-3_0.24\", \"1818_l_2_r-0_1.07-1_0.25-2_0.87-3_0.43\", \"1819_l_2_r-0_1.74-1_1.07-2_0.34-3_1.81\", \"1820_l_2_r-0_1.06-1_0.02-2_0.56-3_0.66\", \"1821_l_2_r-0_0.97-1_0.44-2_0.84-3_0.03\", \"1822_l_2_r-0_0.96-1_1.7-2_0.39-3_0.48\", \"1823_l_2_r-0_0.21-1_0.3-2_0.68-3_0.71\", \"1824_l_2_r-0_0.73-1_0.31-2_0.56-3_1.46\", \"1825_l_2_r-0_0.22-1_0.5-2_0.78-3_0.98\", \"1826_l_2_r-0_0.82-1_1.01-2_0.56-3_0.51\", \"1827_l_2_r-0_0.7-1_0.37-2_1.15-3_1.33\", \"1828_l_2_r-0_1.21-1_0.67-2_0.11-3_0.08\", \"1829_l_2_r-0_0.12-1_0.97-2_0.82-3_1.03\", \"1830_l_2_r-0_1.3-1_0.0-2_0.82-3_0.62\", \"1831_l_2_r-0_1.34-1_1.87-2_0.92-3_0.4\", \"1832_l_2_r-0_1.78-1_0.01-2_0.32-3_0.45\", \"1833_l_2_r-0_0.93-1_0.9-2_1.05-3_0.48\", \"1834_l_2_r-0_0.31-1_0.05-2_0.13-3_1.32\", \"1835_l_2_r-0_1.37-1_0.29-2_0.07-3_0.02\", \"1836_l_2_r-0_0.01-1_0.4-2_0.19-3_0.56\", \"1837_l_2_r-0_0.97-1_0.54-2_0.29-3_0.41\", \"1838_l_2_r-0_0.73-1_1.15-2_0.87-3_0.46\", \"1839_l_2_r-0_0.95-1_0.92-2_0.57-3_1.84\", \"1840_l_2_r-0_0.31-1_1.18-2_0.56-3_0.2\", \"1841_l_2_r-0_0.16-1_0.22-2_0.46-3_0.06\", \"1842_l_2_r-0_0.33-1_0.84-2_0.06-3_0.12\", \"1843_l_2_r-0_0.82-1_0.57-2_1.2-3_1.05\", \"1844_l_2_r-0_1.18-1_1.49-2_1.92-3_0.26\", \"1845_l_2_r-0_0.7-1_0.18-2_0.0-3_1.09\", \"1846_l_2_r-0_0.75-1_1.99-2_0.21-3_0.89\", \"1847_l_2_r-0_0.22-1_0.27-2_0.68-3_0.23\", \"1848_l_2_r-0_1.11-1_0.64-2_0.11-3_0.28\", \"1849_l_2_r-0_1.24-1_0.9-2_0.25-3_1.47\", \"1850_l_2_r-0_0.3-1_0.03-2_0.93-3_0.1\", \"1851_l_2_r-0_0.05-1_0.71-2_0.19-3_0.32\", \"1852_l_2_r-0_0.21-1_0.65-2_0.23-3_0.08\", \"1853_l_2_r-0_0.42-1_0.91-2_0.15-3_0.02\", \"1854_l_2_r-0_1.49-1_2.01-2_0.57-3_0.13\", \"1855_l_2_r-0_0.32-1_0.22-2_0.88-3_0.08\", \"1856_l_2_r-0_1.48-1_0.96-2_0.58-3_0.07\", \"1857_l_2_r-0_0.11-1_0.8-2_1.24-3_0.5\", \"1858_l_2_r-0_1.62-1_1.4-2_0.16-3_1.07\", \"1859_l_2_r-0_0.2-1_0.31-2_0.37-3_0.68\", \"1860_l_2_r-0_0.62-1_0.93-2_0.26-3_0.54\", \"1861_l_2_r-0_1.58-1_1.03-2_0.42-3_0.29\", \"1862_l_2_r-0_0.56-1_0.28-2_1.03-3_0.33\", \"1863_l_2_r-0_0.5-1_0.81-2_0.7-3_0.21\", \"1864_l_2_r-0_0.28-1_0.55-2_1.17-3_1.52\", \"1865_l_2_r-0_0.46-1_0.11-2_0.86-3_0.76\", \"1866_l_2_r-0_1.17-1_0.22-2_0.23-3_0.22\", \"1867_l_2_r-0_0.05-1_1.16-2_0.15-3_0.06\", \"1868_l_2_r-0_1.31-1_1.17-2_0.36-3_1.97\", \"1869_l_2_r-0_0.77-1_0.34-2_0.26-3_0.42\", \"1870_l_2_r-0_0.34-1_0.86-2_0.7-3_0.71\", \"1871_l_2_r-0_0.28-1_0.41-2_0.45-3_1.51\", \"1872_l_2_r-0_0.96-1_0.71-2_0.75-3_1.09\", \"1873_l_2_r-0_0.48-1_0.63-2_0.74-3_0.23\", \"1874_l_2_r-0_0.09-1_0.35-2_0.11-3_0.25\", \"1875_l_2_r-0_0.93-1_0.33-2_1.64-3_1.0\", \"1876_l_2_r-0_0.66-1_0.19-2_0.03-3_0.98\", \"1877_l_2_r-0_0.39-1_0.26-2_1.41-3_0.93\", \"1878_l_2_r-0_0.16-1_2.75-2_0.93-3_1.1\", \"1879_l_2_r-0_1.29-1_1.65-2_0.78-3_0.85\", \"1880_l_2_r-0_0.38-1_0.28-2_0.93-3_1.03\", \"1881_l_2_r-0_0.93-1_0.58-2_0.21-3_0.54\", \"1882_l_2_r-0_0.79-1_1.1-2_0.5-3_0.88\", \"1883_l_2_r-0_0.5-1_0.48-2_0.41-3_0.25\", \"1884_l_2_r-0_0.67-1_1.2-2_0.42-3_0.33\", \"1885_l_2_r-0_0.95-1_0.95-2_0.02-3_0.39\", \"1886_l_2_r-0_1.68-1_2.59-2_0.47-3_0.71\", \"1887_l_2_r-0_1.04-1_0.03-2_0.47-3_0.53\", \"1888_l_2_r-0_1.39-1_1.32-2_1.31-3_0.16\", \"1889_l_2_r-0_0.44-1_3.27-2_0.61-3_0.75\", \"1890_l_2_r-0_1.75-1_0.91-2_0.98-3_0.28\", \"1891_l_2_r-0_0.47-1_0.13-2_0.99-3_0.0\", \"1892_l_2_r-0_1.27-1_0.61-2_0.25-3_1.16\", \"1893_l_2_r-0_1.06-1_0.7-2_2.32-3_0.35\", \"1894_l_2_r-0_0.34-1_0.22-2_0.12-3_0.31\", \"1895_l_2_r-0_0.02-1_0.54-2_0.8-3_0.26\", \"1896_l_2_r-0_1.4-1_1.79-2_0.91-3_0.4\", \"1897_l_2_r-0_1.04-1_0.13-2_1.45-3_0.16\", \"1898_l_2_r-0_0.97-1_0.37-2_0.58-3_0.53\", \"1899_l_2_r-0_1.02-1_0.53-2_0.98-3_1.46\", \"1900_l_2_r-0_0.05-1_1.14-2_0.34-3_1.08\", \"1901_l_2_r-0_0.37-1_0.06-2_1.36-3_0.38\", \"1902_l_2_r-0_0.73-1_1.04-2_0.34-3_1.27\", \"1903_l_2_r-0_0.47-1_0.18-2_0.8-3_0.27\", \"1904_l_2_r-0_1.1-1_0.2-2_0.49-3_1.1\", \"1905_l_2_r-0_0.2-1_1.19-2_0.12-3_0.86\", \"1906_l_2_r-0_1.74-1_0.2-2_0.37-3_0.08\", \"1907_l_2_r-0_0.68-1_0.21-2_0.9-3_1.51\", \"1908_l_2_r-0_1.58-1_1.35-2_0.49-3_0.26\", \"1909_l_2_r-0_0.44-1_0.76-2_0.32-3_1.09\", \"1910_l_2_r-0_1.53-1_0.72-2_0.7-3_1.1\", \"1911_l_2_r-0_0.89-1_0.07-2_0.07-3_1.3\", \"1912_l_2_r-0_1.1-1_1.08-2_0.02-3_0.23\", \"1913_l_2_r-0_1.33-1_0.35-2_0.56-3_0.11\", \"1914_l_2_r-0_0.82-1_1.72-2_0.31-3_0.94\", \"1915_l_2_r-0_1.5-1_0.39-2_0.79-3_0.4\", \"1916_l_2_r-0_0.76-1_0.89-2_0.63-3_0.69\", \"1917_l_2_r-0_0.62-1_1.85-2_0.34-3_1.39\", \"1918_l_2_r-0_0.17-1_1.53-2_1.13-3_1.29\", \"1919_l_2_r-0_0.62-1_0.4-2_0.4-3_0.54\", \"1920_l_2_r-0_1.52-1_0.65-2_1.53-3_0.88\", \"1921_l_2_r-0_0.23-1_0.63-2_0.46-3_0.5\", \"1922_l_2_r-0_0.34-1_0.5-2_0.53-3_0.22\", \"1923_l_2_r-0_0.24-1_0.27-2_1.66-3_0.17\", \"1924_l_2_r-0_0.01-1_0.65-2_0.29-3_0.92\", \"1925_l_2_r-0_0.61-1_0.06-2_0.3-3_0.63\", \"1926_l_2_r-0_0.4-1_1.02-2_0.53-3_0.99\", \"1927_l_2_r-0_1.49-1_0.43-2_0.88-3_1.76\", \"1928_l_2_r-0_0.82-1_0.33-2_0.65-3_1.33\", \"1929_l_2_r-0_1.22-1_0.64-2_0.55-3_0.38\", \"1930_l_2_r-0_0.96-1_0.05-2_1.71-3_0.66\", \"1931_l_2_r-0_0.03-1_1.21-2_1.11-3_0.06\", \"1932_l_2_r-0_1.55-1_0.01-2_0.04-3_0.76\", \"1933_l_2_r-0_1.74-1_0.36-2_0.31-3_0.2\", \"1934_l_2_r-0_1.04-1_0.52-2_0.25-3_0.64\", \"1935_l_2_r-0_0.66-1_0.72-2_0.25-3_0.21\", \"1936_l_2_r-0_1.45-1_1.16-2_0.91-3_0.16\", \"1937_l_2_r-0_1.48-1_0.85-2_0.3-3_0.28\", \"1938_l_2_r-0_0.33-1_0.78-2_0.13-3_0.75\", \"1939_l_2_r-0_0.06-1_0.95-2_1.27-3_1.02\", \"1940_l_2_r-0_0.96-1_0.71-2_1.45-3_0.09\", \"1941_l_2_r-0_1.22-1_1.09-2_0.36-3_1.72\", \"1942_l_2_r-0_0.7-1_1.23-2_0.57-3_0.64\", \"1943_l_2_r-0_1.25-1_0.94-2_1.17-3_1.3\", \"1944_l_2_r-0_0.36-1_0.45-2_1.15-3_0.29\", \"1945_l_2_r-0_0.04-1_0.35-2_0.33-3_0.32\", \"1946_l_2_r-0_0.18-1_0.06-2_0.22-3_0.02\", \"1947_l_2_r-0_0.46-1_0.59-2_1.4-3_0.2\", \"1948_l_2_r-0_1.19-1_2.12-2_0.1-3_1.31\", \"1949_l_2_r-0_0.17-1_0.91-2_1.38-3_0.99\", \"1950_l_2_r-0_0.7-1_1.0-2_1.11-3_0.6\", \"1951_l_2_r-0_1.45-1_0.88-2_0.08-3_0.09\", \"1952_l_2_r-0_0.04-1_0.55-2_0.53-3_0.43\", \"1953_l_2_r-0_0.72-1_1.17-2_0.14-3_0.41\", \"1954_l_2_r-0_0.88-1_0.55-2_0.12-3_0.54\", \"1955_l_2_r-0_0.63-1_0.95-2_1.04-3_0.74\", \"1956_l_2_r-0_0.01-1_1.24-2_0.63-3_0.68\", \"1957_l_2_r-0_1.0-1_0.41-2_0.75-3_1.14\", \"1958_l_2_r-0_0.71-1_0.06-2_1.21-3_2.07\", \"1959_l_2_r-0_0.54-1_0.69-2_1.14-3_0.54\", \"1960_l_2_r-0_0.36-1_0.5-2_0.1-3_0.77\", \"1961_l_2_r-0_0.75-1_0.25-2_0.26-3_0.57\", \"1962_l_2_r-0_1.74-1_0.01-2_1.2-3_0.82\", \"1963_l_2_r-0_0.6-1_0.24-2_0.9-3_0.09\", \"1964_l_2_r-0_0.98-1_0.29-2_0.71-3_0.22\", \"1965_l_2_r-0_1.4-1_0.55-2_1.05-3_0.65\", \"1966_l_2_r-0_0.64-1_0.52-2_0.51-3_0.54\", \"1967_l_2_r-0_0.86-1_0.79-2_0.9-3_0.38\", \"1968_l_2_r-0_0.5-1_0.05-2_0.83-3_0.65\", \"1969_l_2_r-0_0.95-1_1.67-2_0.39-3_0.46\", \"1970_l_2_r-0_1.33-1_0.83-2_0.48-3_1.1\", \"1971_l_2_r-0_0.3-1_0.61-2_0.43-3_0.99\", \"1972_l_2_r-0_1.11-1_0.99-2_0.32-3_0.12\", \"1973_l_2_r-0_0.83-1_0.08-2_0.62-3_1.17\", \"1974_l_2_r-0_0.38-1_1.29-2_0.72-3_0.8\", \"1975_l_2_r-0_0.13-1_0.08-2_0.09-3_0.45\", \"1976_l_2_r-0_0.55-1_1.13-2_1.14-3_0.57\", \"1977_l_2_r-0_0.23-1_0.29-2_0.27-3_0.31\", \"1978_l_2_r-0_0.24-1_0.69-2_0.76-3_1.13\", \"1979_l_2_r-0_1.21-1_0.54-2_0.73-3_0.6\", \"1980_l_2_r-0_0.26-1_0.23-2_1.13-3_0.69\", \"1981_l_2_r-0_0.8-1_0.26-2_0.43-3_0.27\", \"1982_l_2_r-0_0.53-1_1.22-2_1.5-3_0.4\", \"1983_l_2_r-0_1.23-1_0.72-2_0.36-3_0.9\", \"1984_l_2_r-0_0.15-1_0.19-2_1.06-3_0.54\", \"1985_l_2_r-0_0.64-1_0.33-2_0.76-3_0.3\", \"1986_l_2_r-0_0.71-1_0.26-2_0.69-3_1.14\", \"1987_l_2_r-0_0.64-1_1.37-2_1.49-3_0.06\", \"1988_l_2_r-0_0.34-1_0.5-2_0.99-3_0.45\", \"1989_l_2_r-0_0.15-1_0.0-2_0.3-3_0.36\", \"1990_l_2_r-0_1.73-1_0.5-2_0.8-3_0.52\", \"1991_l_2_r-0_0.53-1_2.59-2_0.33-3_0.15\", \"1992_l_2_r-0_0.13-1_0.02-2_1.61-3_0.92\", \"1993_l_2_r-0_0.15-1_0.63-2_0.49-3_0.6\", \"1994_l_2_r-0_0.15-1_1.81-2_0.43-3_0.32\", \"1995_l_2_r-0_0.05-1_0.07-2_0.44-3_0.01\", \"1996_l_2_r-0_0.4-1_0.18-2_1.16-3_0.14\", \"1997_l_2_r-0_1.62-1_0.63-2_0.73-3_0.8\"], \"type\": \"scatter3d\", \"x\": [1.0203053983903954, -0.1693231125673651, -0.36043372378719774, 0.7924222207280585, -0.042838311648217164, 0.0724384684428877, -0.4983795861855804, 1.2466510404549738, -0.4229314933608892, -0.5992447765521518, -0.3835398284582263, -0.1483421478853415, -0.2126456017957994, -0.13292296125891578, -0.40653871826988386, 0.2384316557493935, 0.9411197830158082, -0.8725038797575497, 1.698741834231849, -0.8509266560647382, -0.2824221278468577, -0.6061762745080055, 1.1999138638400388, -0.6395144133016746, -0.3383478626010077, 2.341231545360767, -0.24579944312310564, 0.7878367246873388, -1.1832329358265694, 0.6177477464354796, 2.833013382601905, 0.633581925379989, -0.13524618732190397, 1.4736910007912851, 0.784448871758459, 0.9149777639690704, -0.14390074142432674, 1.3311297422164097, -0.34689533581148346, 2.5361469758963286, -0.6003948205330221, 1.4549351398888024, -0.9638710163716193, -0.14202857928385004, -0.13247656109024297, -0.49887697627218275, -0.11162800030787534, -0.7571561811494669, 0.7806590711937667, 0.1098464003086842, 1.0311515926508963, 2.3653823880411617, 1.7279167589401778, -0.0926955187494396, 0.29906577456106265, 0.8073893857753422, 2.1112129027641178, -0.35980940959239716, 0.9488943333592113, -0.44843230560246616, 0.07569917748627752, -0.6492041490908202, 1.6689747142828093, -1.1776255789064223, 1.0309116946792785, 1.4366897516600217, 1.2401969602797533, 2.573922523945467, 1.2253661108389138, 2.7047542817178414, 0.6615488018523629, -0.4769584160452214, 1.5788090399606325, -0.5495760744512568, 0.3401826461204208, 0.8179741742071137, 0.16617615910392336, -0.9930913928986256, 0.48286078844771696, -0.5494638880458746, 0.7608231984784, 1.8904129122144337, 0.42796945307335965, 0.7592156066173379, 0.5666825697271092, -0.6855265641774921, 0.33210951700004143, -0.39833215193833893, 1.3041735686184066, 0.8292037429208376, 1.8261872383208946, -0.44913535140037486, 2.4193030108562015, -0.48610217121733124, 2.0739040648929707, 2.0817877969028222, 0.853994963793812, 0.7706697787158463, 0.8096146279377434, -0.2887950593400008, 0.7432528329060061, -0.14462331874209156, 1.541766131222568, 0.882241148219945, 1.5510360386033444, -0.5109437832133636, 0.6441424249431003, 0.6694554942865533, 1.199586493808253, 0.2591524923030115, 0.3779005420558166, -0.0011689308801228204, 2.8977848266862725, -1.6291520393167933, 1.1179238841292634, -0.4318669627391645, 0.9879214531605737, -0.989320350803194, 0.13909193896611494, 0.9455132305999552, 1.3088696835468459, 1.2734509468666926, 0.7531908527108577, 0.8093323087862271, 2.1324038287224356, 0.6055820201612236, 1.609248799645973, 1.9297573613760077, 2.1161249953234824, -0.3230208242394874, 1.6345529269535264, 0.9112948041215274, 1.2908671946206958, 2.4763800947816423, 2.2259874486455495, -0.9907167755956883, 0.08842153769709593, -0.7884687581486833, 1.086955998190933, -0.5503119841371351, 1.50930575222144, -0.32844374201988114, 1.377384395454765, -0.6137832044810831, -1.0794672957060452, 1.5111352572610441, 0.982190512409347, -0.17420493947022342, 0.7008405389981385, 1.6252425397797652, 1.7095421800200268, 0.20781303765912407, -0.0011925886676349418, 1.0924655780849521, 0.18888558615903495, 0.183765556161539, 0.7572824093508889, 0.8505628850880635, -0.24416607521548972, -0.40101914259688076, 1.4786169908370697, 1.696694851727204, 0.05557447845552743, 2.5024658515931133, -1.0508583266054217, -0.27628809805000576, 0.8100369394871154, 1.4129857247310624, -0.056660384317963386, 0.8858248452657128, 0.7958003154989687, -0.36149994566850774, 1.130427979068816, 1.644647113218856, 2.4785012980626684, 1.163216091927921, -0.09873350846973494, 1.6637922212183494, 1.9823068820606562, -0.4517836352481639, -0.42576923489229324, 0.29608192735831373, 0.5681127697134198, -0.11687714770401603, 0.9326921909398249, -0.11410888986382073, -0.13875746713587178, 1.6222606331666913, 1.708714009407727, 1.2058125696305713, 1.4712829581619078, 3.0373947889231356, 0.48744320814396513, 1.1925948741213837, 1.6528965804835685, 2.0149127736091064, 0.5502391060127735, 2.4917811841259923, 1.6227342208638091, 1.1363893363474487, 1.3730046541885388, 0.46012102016921963, 0.8716177633366918, 0.2049629486339548, 0.9713127347256617, 1.2519359473824396, 1.9773229280447797, 1.4462430616692714, 0.7306145869574987, 0.31772494133535034, 1.0760886389636894, 0.30710652188996246, 0.4892127577764578, 1.13468269982678, 1.2983987533095769, 0.3067998509704495, 0.04022292492434287, 1.2634330627216188, 2.4088218293052384, 0.8263049668868918, 2.6511627452519946, 0.6038425610603828, 1.5989814967055698, 2.205290320084267, 0.3712059245116226, 1.213650215121834, 0.4875410303582347, 1.4167735724597248, 2.302373629505461, 1.0454255617033466, 2.661756884147922, 1.2568086815724984, 1.5782935223584582, 1.8956175744335333, 0.2956751154635273, 0.8763674780958205, 2.5568690653739656, 1.3018584500612012, 1.4508482686041686, 1.7489244962308008, 0.9739763083396197, 1.1439192478882991, 2.095578988695838, 0.04066890919503241, 0.17583986870204293, 2.023917895913446, 1.8161877513325413, 1.9721538744744953, 0.8712964832419423, 0.7442592668618742, 0.42579487366324487, 1.8594532293260915, 1.1815759531042156, 1.0104102817329714, 1.8591508308420348, 1.61436736625705, 0.25748922940468, 0.4527202447904296, 1.6089104175011353, 1.092055953959792, 0.06024270927810804, 0.8011854284333815, 1.1834287074096372, 0.7526385293936033, 0.47101549876133797, 0.23687480585428777, 0.7177469602198157, 1.0314254074073155, 2.1992452877200823, 1.1115474984660538, 0.8822025002875198, 1.3064819648345478, 1.1074149719935815, 0.9068996971046277, 1.419638846435256, 1.1265548538720076, 1.5455667987499622, 1.6942622630024502, 2.1104520737144044, 0.6829868484505799, 1.030639278452318, 0.3484361764125815, 0.9800463718600926, 1.077783615822773, 2.4622089544027297, 1.6855045050204371, 0.6539701551170252, 1.440742104338293, 0.022094755772876895, 1.5329118384539284, 1.8718348588615696, 0.6888251335541764, 0.8844533156432326, 1.112448512134176, 0.9523195665266183, 1.9754583341041574, 1.7947965795960041, 1.6647402110460612, 2.778623709105719, 2.101335471087241, 1.1487628875390676, 1.5781767512675868, 1.0984699103172442, 0.7210044880225548, 1.8942777402100162, 2.645394447016562, 1.6252680502166388, 1.4562260192057872, 1.5557768850735483, 0.2962164024934232, 1.0760816486063751, 1.1567588759878809, 1.3721395437074877, 0.9584766197251925, 0.22621284573649114, 0.023446136136498485, 2.657991576676876, 0.9955151608816335, 2.0462544377625838, 0.7405293537419944, 1.079346537962731, 0.1517576898016828, 2.0886520463752403, 2.860422678507422, 0.7207517752399762, 0.1962819152935087, 1.318186104175194, 1.1709201473993842, 1.287150972420084, 1.8099482772283508, 1.0411917767797483, 1.6311075563255448, 2.3344569648974334, 0.40062194628429304, 0.7140420518911751, 0.8531677596392419, 1.3359107756772413, 0.8411216004813323, 0.6815240549135371, 0.2630175048259987, 1.1791359841193567, 2.900201469978568, 2.2003196421408093, 1.577302753218849, 2.159602862692523, 0.3653624944661592, 2.4202143656245685, 0.5705424357183223, 1.2452436290132005, 1.02296168963215, 2.699602236889106, 1.5705541889630417, 0.5661770619775696, 1.9738585398810573, 0.7551647088849582, 1.3925566036109371, 0.45235266591844114, 1.2694191277862825, 0.23698627058577837, 2.279853778330896, 1.772910463097689, 0.4592589150873072, 1.6036932524995833, 0.6866943189138726, 1.488266394940616, 0.7019361606589045, 1.1344644662030927, 1.731964013435467, 1.285841749347686, 0.8719744128197884, 0.5553913108022152, 0.4861331297985447, 0.4962236803848259, 0.7808992300199035, 2.0091788723210513, 0.9310076453773778, 0.6641591244526601, 0.5930016112251358, 1.7787807482362346, 0.510154330664147, 0.9293114846467752, 0.9923049654353149, 1.8589267462827013, 1.1570344027369441, 1.0462532099180564, 0.5367760454490529, 1.6900406109839454, 2.4786773741139236, 0.9936848788533255, 1.3100566046412265, 2.309854522198661, 1.4691976222530305, 0.8978273723417967, 0.9071584200316307, 0.922420656969436, 0.990297011199975, 0.35247845860439375, 1.7043400477642803, 1.2874843688484785, 0.8419179942991574, 1.277149936453117, 0.4265878666937507, 1.7749933831730205, 1.458089379123357, 1.3269579441432235, 0.7707919085124878, 1.2892007861316412, 0.11717296031677393, 1.5185958226291243, 1.7805677014602903, 1.1352502858456335, 0.1436389932395108, 1.5175922895792766, 1.8316884496714205, 0.8938672638855053, 0.7624940636335682, 1.607402203917938, 2.2588995903599316, 2.534921208463991, 1.6994422249973438, 1.82719777988841, 0.832663742362707, 0.8794301694767015, 2.3670200803589148, 0.717642992439812, 0.4120376478703386, 3.0731507340002757, 1.2087384675599016, 1.8538998969932865, 0.26909636328508824, 1.8015547076431622, 1.5675070146176897, 1.9490060412608585, 0.16853521546210348, 0.5680700212753202, 2.070555670877119, 1.6474069442734491, 0.519461241549859, 0.41490017276984226, 0.743265374977645, 0.11997041072245374, 0.8984695355990284, 0.6146360057381763, 1.711028682286279, 0.832135821687176, 0.9501831122670815, 2.3316074084689893, 2.7313152268766405, 0.6195167544670217, 1.1899855783487787, 1.6444146396433341, 0.8278629942437107, 1.7197894728962366, 0.2906614045228664, 1.5404349781826125, 0.8337810738779693, 0.6759511691165854, 1.3722399483875578, 0.7745349152037833, 0.3316894262849106, 1.86365386691784, 0.6847789722196969, 1.8591582602977872, 1.7187165121384744, 0.20844616119713666, 1.5847199483498022, 0.3397054791377728, 1.9074716059606924, 0.9251350699144911, 1.0096168205768064, 0.31236582606381913, 1.368883029127204, 0.5264006531405193, 1.437114972332568, 2.150963629508796, 1.8866127980527467, 0.4820651453495973, 1.4133357957777852, 1.260281715918359, 1.1069657456144182, 2.6547151642918325, 0.7188621952056975, 0.674227519380663, 1.2261419167066003, 1.092443939453915, 0.5916492855489077, 1.0191395971801043, 1.9539999591958048, 0.6593590690891415, 0.9086975783455855, 0.48465315167385925, 0.9021355531968496, 1.4627089193526397, 1.3325114745948543, 0.9686249175345519, 1.3802268569551708, 0.07883063118229705, 2.1610393546182625, 0.6159906745084327, 0.3965374356865391, 1.8510964894804087, 1.3079863776546417, 1.3156520679716208, 2.4859489575819165, 1.600256953539872, 0.41457279575216444, 0.9352385175370244, 1.8440738572434294, 0.19725203757362586, 0.49287240252159115, 0.17041722181228602, 2.1378254184976893, 1.0227590333334917, 1.4323762129348871, 2.0803475129371822, 1.444551228829436, 0.5167485847649913, 2.4285967621290983, 0.6590543090206955, 1.373329845781972, 0.07871632142296425, 0.01504131368229833, 0.12785989142053034, 2.713429452162047, 1.0539609903780964, 1.3182178106856615, 1.609126799924971, 2.2852629644400997, 1.0333412356302147, 0.28688424916292965, 0.3273832914607985, 0.21271005541618526, 2.402838547351999, 1.271414205280267, 0.2177561574516803, 0.8478025984446755, 2.324675713850981, 0.4233150698582626, 0.7131693451809471, 1.5091414225257873, 1.2473848774901093, 0.22855206682428952, 1.9759573945256173, 1.50398602534255, 0.9791711710010645, 1.8548548951571782, 1.1142405248126008, 0.8545971685806033, 1.0281737563929971, 0.5400377340522602, 1.4180926406152894, 0.2462888509461717, 1.04966199054856, 0.7597561365967891, 0.7132148111184191, 0.5317767316991348, 1.5406982850716755, 1.499342454073401, 3.456577132625045, 0.42612427038608525, 1.1598944111601812, 1.178724210460332, 0.8240493035007335, 1.5732942436181507, 0.4031575205996838, 0.1630320934424343, 1.6864141125764562, 2.693091772656869, 2.440767290325007, 0.3768104625669655, 1.2665477035929034, 0.27014493066336986, 2.1990844774814318, 0.8564353876863908, 0.0822495683783171, 2.5039661348231785, 0.3742937027904466, 2.448554347374076, 1.9764515254821708, 1.3015305770214374, 1.8982795267562387, 0.38127302380127925, 1.180272929375018, 0.3958646543575549, 2.1628501329326904, 1.7738492078451689, 1.4129739381649806, 1.54647643766344, 0.9900541264303399, 1.3775816423244653, 2.5215524442358888, 0.17419531198663685, 1.9603622847644895, 1.452669606778144, 0.9912784151378169, 1.7599372078194615, 1.330730575447562, 1.7905460908971365, 0.6582382268452065, 1.391589694927443, 0.7556116058331301, 0.19526548031690183, 1.4273471429136766, 0.781895971599571, 0.16188574886368912, 1.4393148888317144, 0.7523666335536929, 1.0194723596306725, 0.0889865221390761, 1.8090312837544749, 1.9309818796121214, 1.5841024195980975, 1.3386527801135413, 0.3207368332132393, 1.8177418930462268, 2.191880094498022, 1.3056168832841917, 2.2303307284122704, 1.9214498980505645, 1.1705055666273587, 0.6102851790061863, 0.5490467491985134, 0.8472858874588886, 0.7431398797638264, 1.498897072884554, 1.1411394059925248, 2.092446217643686, 0.5417346873697769, 1.0014195077031973, 1.0771535705843462, 2.0364846719221577, 0.09255776616302891, 0.9016784796137249, 1.084880327130102, 1.2386161459371294, 0.9699539797553789, 1.0290994009642458, 0.45552853604115806, 1.0955133699827846, 1.3144044421549705, 0.12067699193646875, 1.6104863771410538, 0.7989994662992888, 1.2002746529124022, 2.0563315999144742, 1.8825541673070147, 1.1252938931889473, 0.6028265732202995, 0.6929984959150756, 0.27177749500825377, 0.3969629451501204, 0.9043535432703609, 0.8824501726534824, 1.092911733058514, 1.8140504357915814, 2.6881300655057654, 0.4519616599088907, 0.36132662257788795, 1.4376818626600698, 0.15230918651700465, 0.9211823619081873, 0.6030066632139938, 0.31540961548461466, 1.387199627676446, 0.14178275599519286, 0.798521694687042], \"y\": [1.0710592277192403, -1.4499258995551842, -2.110789097261947, 0.15763039577851612, -2.1181664552608312, 0.388474966748501, -0.5691018663693059, 0.32235896035262246, -0.5308724856821607, -0.04903377525737773, -0.4392282653356262, -1.2187881435446695, -1.4975860536103676, -0.9244765495348639, -1.227203671620405, 0.9367618238870588, 0.007986478938443176, -0.952880961827346, 0.34652338602725585, -1.4738172730024184, -0.4292020883042159, -0.5388092536699772, 0.7306737280220816, -1.984712023145785, 0.09149058832985113, 0.3846982978820941, -1.688059794974322, 0.07894881548241939, -1.1113140123918996, 0.15929707042157704, 0.27551591915775897, 0.13256503371453054, -1.9060922743395747, 0.1727428774417179, 0.682858223373005, 0.20881547115584564, -0.5567736403801791, 0.2769757166803839, -2.924425298880294, 0.14685512085995134, -1.1867427006826818, 0.8324604454673368, 0.15676788880394454, -0.5767442326864087, -0.33969166472329837, -0.42284991581537024, -1.4298548623434664, -2.0936418676272277, -0.37127528298434775, 0.12697225561228054, -1.0883315664186006, 0.7628979136634686, -1.0915296102286403, -0.8997623232610454, -1.597114432363893, 0.04477207882429668, -1.044772129985624, 0.060311886113444846, -0.9951001444477596, -0.8040992329146222, -0.9510680774505971, -2.6618239927692073, -0.9913439351837797, -0.2589780395636334, -0.7194465373697482, 0.11451807246769485, -0.9336468424404977, 0.5043842545322206, -1.1390007897153909, 0.9707236557810084, -2.358391432632188, -0.7639860911097203, -1.6367313947845772, -1.1688993989678997, -0.6945159880206354, 0.7748698077754064, -1.2858359665416994, -0.5657348044463508, -1.0907588688946444, -1.678008120512904, -1.4460591554773097, 0.0473924506545762, -0.929529326226508, 1.223490295294202, -1.5193816118786643, 0.8675921042058896, -1.644286965151635, -0.2643580288794163, -1.1121643590895494, 0.4422896094062603, -2.392634429847868, -1.2489599102978046, -1.990307015310318, -1.2006533675619742, -1.5948932984436746, 0.6479396365519108, -0.6314697610061852, 0.38390900782442894, -2.135662572967187, -0.29985151543351585, -2.289667418901229, -1.488397879938545, -0.3206915080548114, 0.44925378589906906, -0.11263569475810609, -2.6105981590039997, -2.004791414915796, 0.6984721284342137, -0.8105854324935485, 0.1706673547642208, -1.731438546590479, -1.6597472580018071, -1.4434283396842216, 0.6388358217073773, -0.726501562532017, -1.3329838765803277, -1.6196191662646398, -1.3317072776048626, -1.7955217581539773, 1.0710502179705053, -0.008472720639431941, 0.6704163057708545, -0.1940227685438901, 0.41239133378220894, -1.4926711748496682, 0.19189025722135633, -0.30858655317833317, 0.6244463696394371, -0.5347112353033565, -0.6656279723299601, -1.4578809501157985, 0.8369488807896541, -0.6669394066476062, 0.26752442136114674, -2.074325049465766, -1.5895291570175654, -1.3869107307900008, -1.0279926404127733, -1.5367930871509623, -1.4241433463577713, -0.4325628538044761, -2.1656693745973086, -0.7007396853104919, -1.488021843533275, -0.4426112945421591, -0.7117512134046902, 0.3023900192510336, -1.922681640613808, -1.6053885088144524, 1.1714410489093279, 0.15243219432719068, -2.27207212857035, 0.08399423346640655, 0.24988157008717282, -0.2770851225596245, 0.24573007900488664, 0.08464659516561723, -2.2308837586040795, -0.23380513889488874, -1.4174738719369138, -1.0324785109060808, 0.03980861639306221, 1.259497567829753, -1.38286878088952, -1.9831799994974615, -1.6210486524927528, -0.6111030735116979, 1.0872417405340715, -1.678932210487474, -1.7581773948377073, 1.1453353956977446, -0.8860025940791937, -0.1693635061290737, 0.11718091837283295, 0.3657404294331992, -0.647396043964114, -0.7377978819534479, 0.8695634517840338, -0.4548621352726522, -0.8886008625378798, -0.6858671606055409, -1.7693036187630855, 0.3729322381423139, -0.8011176448088897, -0.9940179988974699, -0.6869781072425252, 0.05361962042585455, -0.5949708237638837, 0.8892004003881557, -1.2629729577028441, -1.2756825831151652, -1.3910257377772448, -0.6363332753260131, -2.2898477085882947, -1.3739783196635396, -0.6723973700008548, -2.09440812640731, -1.1168587550922366, -0.7448003571414232, -0.3407807756433221, -1.2783388534115747, -0.9631074654243429, -0.5855189966546329, -1.0215633083382916, -1.4166789019272836, -1.7314038442403743, -0.6525084631531373, -1.0587982807030591, -1.591690552683085, -2.2530049587805525, -0.4273901671258513, -0.11576561745574654, -2.8329113013530334, -1.5879732777414932, -0.26784131873652794, -0.3181150154063196, -0.05389768994516808, -0.7528382732939629, -2.4696713074100822, -0.6904865452712722, -1.040325140403002, -0.8224067351458313, -0.022837651814169857, -2.567634705686448, -0.2923561388656294, -0.6432129889694524, -0.8027792292129511, -0.7339805071170198, -0.08326594177571756, -0.29569718837500236, -1.74028387912383, -1.4377956646835195, -1.0669398894855118, -1.5472226098643707, -1.160043071205794, -1.7340352688273288, -1.0488138914246548, -2.0211832556399405, -1.6603002565012894, -2.26226532008488, -0.1535966494955019, -1.1146916901400263, -1.672900493010355, -1.8553073199674985, -0.6594183198553776, -0.9152128133055896, -0.9163144698494179, -0.6218258531331746, -1.2764503347130187, -1.4156749625116927, -0.06827134563213, -0.4035020421521929, -0.8460156577956146, -1.9808906202436478, -1.1324939730802268, -0.6400823816929994, -0.38835264509889855, -2.3637874521995785, -0.8357668742785758, -0.38022896696678754, -1.780011982254414, -0.8660500539062245, -2.1511053224561354, -0.9500377114202646, -1.6083030896343338, -1.7344558439311055, -0.3989280960041429, -0.5859852512614914, -0.43703151763849934, -1.0395681612945094, -1.9708360728152077, -1.374227093436276, -1.7825652962635614, -1.7772311587616918, -1.228594203801045, -1.3772094865373692, -0.7261504077831051, -2.897592138162125, -1.613960614993788, -0.771043980923396, -0.39179836830119996, -0.47192256965631085, -0.6328766369974521, -1.7351167087237078, -0.727392429928195, -1.3385058678275543, -0.9079047641512541, -0.7759983959114436, -0.7302328045933721, -1.4116113408632953, -0.28222917278146764, -1.1609792446896963, -1.2484108834274945, -0.9833383955731183, -1.7275053523927655, -0.6928056401853555, -0.5102888229553595, -0.8031198959463306, -0.1435240397033497, -0.4447631823072943, -1.4901350028877607, -1.6204395995449579, -0.09265679139049121, -1.7787471742213636, -0.9090247576922529, -0.5749154459151302, -0.7021041436448112, -0.5007598059225715, -1.9156861637258995, -0.45780077621574533, -1.6254925381207515, -0.6542244367640333, -1.5001796129650702, -2.711789048418576, -1.064457500456729, -1.0166755344897969, -1.0458622298650175, -0.6552284549896766, -1.916039642064483, -1.63970156489501, -1.4478261491839457, -2.2494706428365276, -1.040254528124999, -2.6753306210834467, -0.038182326953844714, -1.5418668025967628, -0.45751145542504024, -1.3387332293075804, -0.0938006420608738, -1.3873020441476525, -1.630134271358524, -1.128265878263195, -2.3178598897097924, -0.8671869739984477, -0.2638302686659496, -1.5202028781162067, -0.8155703438150067, -1.4070205159210158, -0.6285273090982725, -0.3907697452952047, -0.31675289373856486, -2.3673891349260447, -1.4287999180802833, -0.5392852944942016, -0.9117774506165142, -0.7618395288781974, -0.6745634809721965, -1.08748186659192, -0.8642537170355477, -0.15500866206395636, -0.18097607904924184, -0.840119224985699, -1.4339370385063905, -1.04618213218444, -0.7352040632648333, -1.4339879378648122, -0.4307923488918649, -1.0166473403516931, -2.008575400416671, -1.356816411825525, -1.865907304049945, -1.6142446085835922, -0.5922522630684359, -0.5699346798597865, -0.7948297047090402, -0.610493487785175, -0.8351279232192195, -0.08847736696110575, -0.7573328883511639, -0.8919628359764966, -1.4882482228609004, -0.058413919745261, -0.38232799635699044, -1.6775000609732702, -0.5449128295764547, -0.6469651973455275, -0.269835121636017, -1.6206481800334394, -2.181020746185353, -0.5078867808847698, -1.104577979670202, -0.06877174651692919, -0.5629529726807219, -1.0676465482060238, -1.6959164486272957, -2.233855346836992, -1.085126249047951, -1.4363880213274927, -0.4781926726339144, -1.060107841333861, -1.6857018689519678, -1.3211455854319316, -0.809381977410963, -1.1225625059942808, -0.3178008479344989, -1.6509988881109607, -1.2653227072439024, -0.7996985427536962, -0.4422043610447417, -0.23650513062919365, -0.3848681365323672, -0.9289893696991962, -0.19077612105208352, -2.01001043046777, -1.2689430964309478, -0.9467383826368754, -0.4012369991617054, -0.22565990406579506, -1.2042306592285272, -2.367120941750452, -1.456374958508458, -2.21621068908956, -0.5808853840408358, -1.9428897041561974, -0.8141767491194862, -1.3167095932023747, -0.9013255200844719, -2.155639856141748, -1.1465700970148112, -0.48460775811591905, -2.0145689460761576, -1.8778296582824565, -1.1178135886082394, -1.4564059078986173, -0.8088696547498092, -0.6703437674940158, -1.003045719881091, -2.2240719782517457, -0.77204475154969, -0.4317449217840884, -1.5684915883699304, -0.7812947971163738, -2.4032248387773825, -0.8183372121851695, -0.16691072469797064, -0.4068703548436584, -0.37719630394751713, -2.1430544201108903, -0.31033645881850247, -0.49912550531515465, -1.1890893556292568, -0.3958743190743763, -1.659908056766429, -1.5592271603029109, -0.36310366473364986, -2.375909937827411, -1.0691069556657358, -0.2215041410801265, -1.5749648797454745, -0.4976316881917029, -1.066763644246043, -0.30005188899637125, -0.8869979393356024, -2.385503604247318, -0.20279774133166573, -0.6941904784871191, -1.0717488225589156, -1.9956598356501276, -1.593330423935094, -0.958173067640862, -1.5068796207106199, -0.33403854011037715, -1.3752771952617682, -1.9341385226470758, -0.6166935925973002, -0.7901063275275291, -2.0411529389943266, -1.2378229594122805, -0.3351030067783556, -1.4691760174211077, -0.41130395883415205, -1.5837690329915124, -0.967169069416503, -0.8960319875759521, -0.9346963773647616, -1.8150548274976377, -1.785131103278347, -2.2660529561068543, -1.4047252209841385, -1.0160307818526564, -0.3306279277197235, -0.8454366868896788, -1.603028945083036, -0.498891714742282, -1.5689319443809326, -0.2431940231503974, -1.3361936876781837, -1.8090186586112456, -1.7970819803430995, -0.73721777139881, -0.8933107931926426, -1.5635037829637837, -1.6294497855553984, -1.7123668622773502, -0.51362680854681, -1.3330679041374072, -0.6723662214366567, -2.3947817119869867, -0.7628479086240505, -1.6761577435263282, -0.4482224579097539, -1.5394990191348907, -1.4332720915250063, -0.9462686586389677, -0.5645173336031968, -2.1192943821031465, -0.6430038621040947, -2.1384114810177124, -0.9505939677637575, -0.11378700180077894, -0.12090994814644629, -1.0469794336620546, -0.36252879946043326, -1.091935040202051, -0.8941053509672305, -0.22552868071336385, -0.46012895917732755, -2.529130204111852, -0.10328647617366193, -0.5595047553810667, -1.0331464977956877, -0.09258417122534712, -0.9692692248318818, -0.07587645944413601, -1.1556684326566302, -0.4954747090163335, -1.148994018072574, -0.6793952073200729, -1.214251858139989, -0.28982695102101275, -2.5293579913860045, -0.8746545537495747, -1.5188552887793172, -0.760869983042844, -0.814246148962984, -1.962141259161392, -1.9668884008814667, -1.9501619649548947, -0.7123825994326598, -2.3779961986586384, -1.747973523501354, -1.0534850806637956, -0.24925627582151222, -1.5895596780722485, -0.9757132426589115, -1.1089819735532929, -1.1049705059483494, -1.0582581361710846, -2.328655148048243, -0.7322327438722547, -0.8804593650348459, -1.5594694216580218, -0.328020842305606, -0.38623375770845514, -1.3262674146524172, -1.0298082465198273, -0.4757335948023157, -0.745559957459496, -0.27690165627183616, -0.0015705391186712214, -1.6689814688097142, -1.297264415413917, -0.9652064791180794, -0.26109662724286664, -0.7048485219593519, -1.0170108974359462, -0.528925579040561, -1.4562026663581302, -1.0846882784625242, -1.0724836572290763, -2.523082071052654, -2.21910869760082, -1.0966614445254987, -1.147774617885177, -0.575460069342731, -1.506172636681709, -0.2579882433587254, -1.3304240842245152, -1.0963788413968365, -1.6125807460143131, -0.2335748542090882, -0.11272558689215839, -0.9434433199004064, -1.750664747588089, -0.6858738209192186, -1.3930492983649927, -1.2856615493665011, -2.1496156826864867, -2.8183920538943434, -0.4975902427475781, -1.3598949634211381, -1.3076718386508914, -1.9415477874910416, -0.6532014896978318, -1.3094269236247333, -1.9339283222061283, -2.2707672201375004, -0.37953345980100917, -1.1911525249049157, -2.1111406814550824, -1.0017360954308887, -0.5023059327963273, -0.6449186164368048, -0.8175874340534637, -0.9448352454847087, -0.5445830664914153, -3.6768176412716507, -1.3906618272330018, -0.39299319954451006, -1.8249713865283665, -0.6416152697029831, -1.3022956626063797, -0.2852174398582469, -0.6806622199186119, -0.017370714790050035, -0.6143567560241463, -1.4657231246161766, -0.9946622198984069, -0.8627929791292888, -1.2451991689623148, -1.4767961715890021, -1.552615359987235, -1.7151734640405765, -1.4298187142684275, -0.6816359032310385, -1.4624640493030725, -2.074138395802314, -1.808565514568428, -1.5468505710305633, -0.570891332351866, -0.8242181941527023, -1.5318544254415523, -0.21946940198910503, -0.6467320019563921, -0.5405505849964329, -0.3776601166539373, -0.6498482653311332, -0.8110818757737158, -3.377665006697846, -1.0715039759392, -1.0549905582085854, -1.173212066002695, -1.2893496046742419, -0.5560605103282734, -0.566265664725884, -0.30636260657639314, -1.5950879320794629, -0.6110923166117905, -1.1636987691462977, -1.7020400471493589, -1.898435214721712, -1.5631868708472867, -0.727105530220087, -1.6023329268614959, -1.4872336410689844, -0.05944859265285274, -1.3484592055808682, -1.1946578149048586, -2.5404489378598853, -0.9103737034440729, -1.3673178959292642, -2.0906213781265155, -1.15934645075783, -0.25028943691250516, -1.2869238873271271, -1.1621819767878072], \"z\": [-1.3308728943909816, -1.3978290374471616, 0.9058277917418485, -0.7835560365501797, -1.638508276472761, -2.381444788298725, -0.16014036490497485, 2.5843556758002935, 2.92134906571411, -2.9193617109836882, -0.635717082103509, 1.4958167972003054, -3.151903718793503, 1.753608241941274, 2.6022991003479543, -2.0512396810821385, -2.385596298655501, 2.9173705446658245, 0.11797969041750367, -4.011553420249218, -1.3909477086404887, -0.14623540594858175, -0.43505191784041974, 0.6182168436433022, -0.20170373281277598, -2.587068599052625, -4.027433528843942, 0.9219760432809023, 3.4201263906851835, 1.4744012339291581, 1.5702828561399658, 1.4137224975786662, 0.779191146708377, 2.2317249580271916, -1.9987669466458864, 2.1549811965569683, -1.8581132234476874, -1.9309565808308435, 0.5126703236780621, -0.10549162101255405, 1.8112846760683698, 2.7834766134240727, 1.1933257664317125, 0.7947032126866889, -0.22382635501123804, 3.185787953700376, 2.149984564796375, -1.7874805243428216, -0.07535222825132015, -0.5893045531565595, -3.290252317886072, -3.770117295318795, 3.052294579237488, -3.9829780369132126, -0.5980194768582501, 2.150771235378759, 0.6348061270946594, -2.1179451649622543, 2.0435437313337834, 0.571330726772235, -3.405675573403811, -2.913166795226302, -2.952883721223616, 0.4608290461127744, -3.880598812921856, 1.3114752265610568, -2.9222180588244813, -1.6228161595936705, 0.40389204554395164, -0.09913836019091926, 3.0348959332337158, 2.484879124010676, -1.556872174279993, 1.0273626017818502, -4.045202773119473, 1.6443468905443819, -1.7073663163999204, -1.6738520486510495, 0.14312346605260906, 2.4694309486222057, -2.7990226985401803, -1.307246708829143, -4.035546861646047, 0.6662582692679839, -3.909684481258036, 3.228945177824232, -3.960677124509596, 2.5993667390960162, 1.0378844160373015, -0.6114355468225483, -1.6790914559062253, -0.7081385993617677, -0.5010766402188325, -0.7021852659670333, 2.1168432617548945, 3.436687266774415, 2.021728696038525, -1.9623834481046312, -1.562846168463913, 1.5333080812846864, -1.554148267290698, -3.996490087449834, -3.1153577944964996, -2.0928047359098616, 2.951136532072451, -3.6197134783558096, -3.4744669594778554, -1.8128761454805882, -3.228488648689951, -0.9293395635464572, -1.7564969242738981, -2.443352928959446, 2.1488535589010977, 3.343942077334775, -0.6323534341043562, -2.7844041889960773, -2.3898085679910235, -4.0092494138257715, 0.04665642462057207, 1.7584837374917912, -3.332600273007269, -1.411643182804236, -3.3289571687383193, -3.110084109584699, 0.27592873628543213, -3.2170907263375694, -3.658682672770989, 1.303594021474554, -0.9240987124770879, -0.9465950867104844, 0.9548005657014658, -1.4122988289537486, 1.4659895411785557, -0.4758576639811847, -3.532493316424648, 0.6794236819928843, 2.4433003597517633, 1.854612091323684, -3.7644194073616672, 3.408670816340134, -1.7748821691868075, -3.700479176499896, 2.4572058265140733, 2.420895958024147, -0.1376800631527133, -0.1736261233150973, 1.4045957220597973, 1.6336763072643015, -3.4622497612142333, 3.185583118751956, 3.1012859832179114, -3.24815406997804, -1.448703126047727, 1.0869506682355787, -2.543561712369433, 2.1222078942465243, 0.27735694389579457, -2.9881542441965756, 2.900679695900938, -2.349851748050046, -0.8417096099878201, -2.4949950020005067, -0.5311554220562975, 1.8290487367446122, -3.3745235577035295, -1.9764361749356096, -2.409891546925938, 2.9098535010580484, 0.9774978608703151, 1.189302284745425, -3.5069799506960595, -0.47107306022388284, 1.219288208673647, -2.925983358958362, -3.2321139323818495, -1.010878170187608, -2.8437656453999813, 0.33005786991609565, -2.2753050226829235, 1.4637878939077584, 1.0129035732510312, -2.6913222448763627, 0.15087551824128287, -1.4524548837783686, 2.318330984452343, 3.1365487546058155, -0.6234224274633426, 0.5307827502268001, -3.9976654206188638, 3.1028853833746517, 2.4417800134367518, 2.0490866871442215, -2.1354571144277275, -0.8561813470973627, -2.655300734496935, 0.4686882791106104, 0.7679044929937664, -3.9653323123868236, 2.0458128102085844, -1.2058476040759865, 2.695273101934327, 0.12224324981660839, -1.485062012955547, 2.2842292596101883, 2.109266496496689, -3.0362677389220973, 0.3817123913340481, -1.9679153787526866, -1.1691108917882738, -0.4182840855015515, -0.46006447173822185, 1.5774827193345624, -1.8741267282942196, -0.2988694186299172, -4.032653992498172, -2.996900446378884, 0.6761266581010288, 0.10336784818386402, -1.3609706193259918, 0.14189069256816111, -1.5089219399158695, -0.7853047367449073, 0.5382906618559211, 2.9296425666903723, 3.204655422483218, -2.5865662292486897, -3.763531648268306, -2.6629247177199886, 2.379244380868183, 2.1186363967451127, -4.038390851730447, -2.6831386993237594, 1.980350703449763, -3.3716597569150526, -1.8119184318894836, -2.370048101458001, 2.194269403910141, 2.894508837918785, 2.553948435914581, 2.392227415343804, -1.4822223589077281, 2.6706855303142376, -3.9265884575887533, 1.7351914286245291, 1.316523292653362, -0.6886436812456234, -0.6830801361120629, -1.4893896109216587, -0.9912916012647823, -3.343283648901828, 1.429874206123534, -3.053285774546344, 2.98971267009206, 2.413458944691798, 1.2009429998454824, -2.9869360607985493, -1.1855619156072854, -2.2914744701526617, 3.0458994777728154, 2.2068089590086375, -1.3826040689512014, 0.9832108074756665, 2.590565397843534, 3.019622137033261, -3.4174685971810694, -1.3625493524091903, -2.0016672267412585, -1.6320429437211708, 0.8234021570066696, -1.824354854111693, -0.8009295823491969, -3.8313073426254394, 0.8835865940110796, -0.6922609871231278, 3.4093975719461707, 2.858061691945089, -4.033885520997818, 0.26574558684751626, 1.499661146123172, -3.3576335308660927, 0.17292145416509008, -0.8846053666673654, 1.1013843416987372, 3.3280435777488284, -2.627964690404336, 0.6169092123673368, -3.7299798610929713, -0.6819673488963289, 1.9316441146020304, -3.466197708225967, 2.1212318661430087, -3.595373546409338, -4.023936045520818, -3.2466397767094395, -2.4426084473416356, -3.2175881339596866, 2.074291616461723, 2.1848642634913924, 1.7933208969503598, 3.166661854690486, -1.2247526827223845, 3.3326924182777784, 1.7658928279928743, -2.652255731937477, 2.3204289605438744, 2.957197012303901, 2.390347375154434, -2.3026331948392436, 2.6583389131560633, -1.5912470356884825, 0.41962090924926265, -2.4047625711187735, -2.502534669812752, 0.8388678692572942, -2.3750084561557, 3.111138790576905, 1.8966872242962136, 2.1809077214895183, 2.5790811799472904, -1.5941981402396355, -0.15016325832416078, -0.04199898151030812, 1.510495362262061, 3.248780860624196, 2.786228794203696, 1.8413144752642312, -2.264990637333332, 3.1630036213008905, 1.3774991997529096, 1.9804799052764022, -1.3017712549979512, 0.7860988879559843, -1.5029996704377844, -3.135845116646357, 1.9310081917879902, -2.674421266494264, 1.676805830048747, -1.059751394284259, 2.4558971572151966, -2.7300585236815236, 1.2217008150769733, 3.1792531472959062, -2.198980675994764, 1.9399440864462072, -1.0737344390161097, -0.125179938332995, -1.7506496132032776, 2.65753120386183, 1.151878325732807, 3.2015489922002844, -2.674609413492374, -2.910847561163383, -2.3970322707247185, 2.4450507868779896, -1.2494897569008891, 0.8714755922015618, 2.7090722727623513, -0.0702512892620959, -0.6887657592780538, -3.5843485969875912, -0.5848016273164185, 0.60189613591076, -1.522834986129912, 1.59421680466963, -1.7575225331055027, -1.0136177530851205, 3.176084756394678, 1.9498052273441688, -1.3079507758837363, 0.33822758728662006, -0.30527787946720153, -3.016368910961304, 3.0410197932608476, -1.3442284732952592, -1.835759025567019, 2.7021048333249134, 0.7978266139577714, -0.616465908236032, 1.0601013048185912, -2.643625435321824, -2.693104540880242, 3.029567581475905, -0.9685382891211032, 1.927824989253791, 2.9683522059612866, -1.3160212917627474, -2.79814988267343, 3.1688484183527246, 0.09301444289302019, 1.4797824105125912, -3.7700316177508415, 3.240599458228881, 0.6248562438481171, 2.749109724954611, 2.252579309568823, -1.494163470200827, 1.6565560037774931, 0.8964862681337848, 3.1303975696367132, -0.8659998968950151, 0.6917520844466489, 1.6281238495580075, 0.013104799883704388, -1.1470462309661862, -0.6235823311349402, 1.38847581198426, -3.604460286992391, -2.602193677324654, 1.7370031970448254, -0.4197015882803736, -0.12224445026163133, 0.6962207704425554, 0.6821169572962198, -1.6634769466290034, -2.63895092809984, 0.5953250611489578, 3.3963884075148236, -3.681814779160536, 0.23689063686986422, -1.45348583786234, 0.027266904450783613, 0.8995125854542847, 1.2825025397110368, -3.030864602770751, 3.008114407764144, -0.41228086284032983, 1.8465438706988913, -2.3201797808682776, -2.540499623990965, -0.9238552728160023, -1.8698628724219022, 3.0282019915708247, 0.32006994495890506, 1.6577636446996378, -2.6724923248990144, -4.014890894603149, -3.9976277177588466, 0.7614236951370046, 2.016888594240343, 2.693006985382305, -2.644535234569789, 2.6980671998870394, -3.646162622066656, 3.404769705787653, -1.5851444235021783, -2.8898811528645325, 1.9420331242535536, -2.542654318389206, 2.8207852126810566, 3.0515442287152243, -0.053846521263556824, 1.7026190678503852, -3.4326290221613203, 0.34143288251870274, -0.3607336365781628, -0.727744816841414, 0.2266371277925483, 1.7169938330970558, -2.017840164590865, -0.7361440350992918, -3.356716007046517, -1.8023615470188616, 2.646280325940448, -0.7283904702831498, -0.3263762219719517, -3.4123527993218943, 1.752051182826083, 1.2781619785954925, -3.9378816093765607, 0.7665069556810291, -1.379681178702338, 1.141368773286863, 3.4400923872037037, 0.8685657811197194, 0.3529030730746481, -3.333475580019622, -3.302561472590156, -0.014172631896188115, -2.1700189920273925, -2.938999409437992, 0.31263116153017734, 1.5433753649872948, 0.815878248082953, 2.9675113566291893, 3.0275092882869865, 2.4689683909896445, 0.42817205211611054, 3.062231380610454, -2.9112456001303264, -0.02769423663401671, 0.7015804986241099, 0.7080999517837379, -3.5011696911118393, 0.9751189332693224, 2.9901638441066822, -1.3602261831295568, 1.2584008989736555, 1.0277135019514159, 2.330532053909492, -1.6617769638131228, 0.9528363325019225, 0.4783653194304831, -3.6546500698325253, -0.02336082255659111, -3.220875285575298, -3.1776560727882157, 0.46245603096098087, 2.5809246864164814, 2.3143321286974086, 0.06191811234531386, -0.8938332449109718, -3.6450239062524465, -0.26126338109318414, -2.251800297421608, -3.7346044962637754, -3.4364370024825894, 0.27889878596049833, 1.4737199015249205, -0.5205273689636329, 0.31929999608479065, 1.8884149037753462, 3.078675961307141, -1.5451904193561297, 0.4401723103457247, 0.07239104916196659, -0.9078501748302386, -1.0671664256140625, -1.5035816393081363, -0.5393653100924483, 1.630239898436984, -3.554958357123634, 2.250866214868557, 3.160549242447641, -1.379189286118927, 2.8838797264961267, 0.061385058131976145, -3.905544762836859, 1.3618850872102177, -2.4648675787777155, 3.2402111351338707, 1.0937269021810616, -2.872215867918762, -1.2619387681826773, -0.9965595429869825, 2.136765375856865, -0.934218074000003, 3.0357916720337803, 3.3013668002580783, -3.88066357738478, -3.245169659496396, 3.2347897524725475, -2.3166108127535963, -3.0559612680723465, -3.2421847336573855, -3.1519239677831523, 2.0181236529007665, -0.1567120389990584, 3.365648598550502, -0.5171072590216648, 1.3952476351912582, 3.266306941633694, -0.34744709686539155, 0.3105942399910102, 0.5954376901927576, 2.6386037549572787, -3.285471766533152, -0.8060426454045433, -2.2168733442067836, 3.0064338691425396, 2.356986785191112, 2.430976349704487, -1.2837059037744996, -3.711256600339241, 1.8521292044589543, -0.7211242045343313, -2.2632755238240723, 1.7945250952975558, 1.09195890447383, 2.1361845202885252, 3.2080883114757475, -1.772375372945866, -3.72523469255834, -1.9890525896421813, 2.536377032676091, 2.709816377355076, 2.7630255744409693, -1.3121438211574543, -0.5398439562874002, 0.8827202648624253, 3.162789098066593, 0.2207778686943671, 2.8408543525035936, -0.9181846454895699, 0.625343118028324, -1.5021114820259562, -2.2549719358689115, 1.4841963157876856, 3.234246511914635, -3.1182840113699966, -0.05909679099096943, 1.208842902761205, 1.1955715952951467, -3.360094817408598, 0.21063299480712772, 0.9103869712796708, 0.2800203154281533, -1.3367493893046216, 2.2247153089617004, 1.4619936604405561, 1.7241268341656317, -2.0451870316804777, 2.091802033831695, 1.4015745876477617, -3.0974406346865644, 1.377228431481715, 0.19728016624784495, 2.9851073909769044, -1.6671418423079736, -0.5990724899339499, -0.0857323580660454, 0.4337092795127129, -0.4062905229899809, -0.5386647327999183, 3.3330676326280004, -0.8356718019540779, 1.407348441042842, -2.6751767386074548, -1.3208957146700175, -0.7688353558862171, 2.153089620536658, -1.2982983703093862, -1.010375788498937, 2.4687387072625535, 2.637386720183831, -1.4053864670133573, -2.304469768218203, -2.4264840282672537, 1.560877922363396, -2.947535637318172, -0.9933955917539721, 2.338890707264099, -2.579473743623957, -3.2606515566466494, 0.45430808713610826, 2.057613672603164, 2.948822083552564, 2.483234180917437, -2.5130845668705093, 1.6494675881027288, -3.665322983215556, 1.7506389081131521, 1.788081802959729, 0.5352237509933415, -0.2954053053439667, 1.1436847016254639, -2.8601612948361237, 2.3808004047278333, 2.63733142263382, -0.5211858766138735, -2.8599622179986994, -2.327831722805202, 2.2926428358702298, -0.5786528689962025, 0.006308965693399671, -3.1402343380024096, -3.904477476760035]}],\n",
        "                        {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"View 0\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"View 1\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"View 2\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 0.375, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"View 3\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 0.375, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"scene\": {\"domain\": {\"x\": [0.0, 0.45], \"y\": [0.625, 1.0]}}, \"scene2\": {\"domain\": {\"x\": [0.55, 1.0], \"y\": [0.625, 1.0]}}, \"scene3\": {\"domain\": {\"x\": [0.0, 0.45], \"y\": [0.0, 0.375]}}, \"scene4\": {\"domain\": {\"x\": [0.55, 1.0], \"y\": [0.0, 0.375]}}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"carpet\": [{\"aaxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"white\", \"linecolor\": \"white\", \"minorgridcolor\": \"white\", \"startlinecolor\": \"#2a3f5f\"}, \"baxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"white\", \"linecolor\": \"white\", \"minorgridcolor\": \"white\", \"startlinecolor\": \"#2a3f5f\"}, \"type\": \"carpet\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"contour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"heatmap\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmap\"}], \"heatmapgl\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"histogram2d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2d\"}], \"histogram2dcontour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"surface\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"colorscale\": {\"diverging\": [[0, \"#8e0152\"], [0.1, \"#c51b7d\"], [0.2, \"#de77ae\"], [0.3, \"#f1b6da\"], [0.4, \"#fde0ef\"], [0.5, \"#f7f7f7\"], [0.6, \"#e6f5d0\"], [0.7, \"#b8e186\"], [0.8, \"#7fbc41\"], [0.9, \"#4d9221\"], [1, \"#276419\"]], \"sequential\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"sequentialminus\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}},\n",
        "                        {\"responsive\": true}\n",
        "                    ).then(function(){\n",
        "                            \n",
-       "var gd = document.getElementById('b10b7e3e-1cd7-4e06-82ac-3ccf2ad05e12');\n",
+       "var gd = document.getElementById('3a198b7d-2a96-4c5b-8994-75e0458904d9');\n",
        "var x = new MutationObserver(function (mutations, observer) {{\n",
        "        var display = window.getComputedStyle(gd).display;\n",
        "        if (!display || display === 'none') {{\n",
@@ -33673,10 +33643,10 @@
     "        concerned_examples = np.where(generator.y == lab_index)[0]\n",
     "        fig.add_trace(\n",
     "            go.Scatter3d(\n",
-    "                x=generator.view_data[view_index][concerned_examples, 0],\n",
-    "                y=generator.view_data[view_index][concerned_examples, 1],\n",
-    "                z=generator.view_data[view_index][concerned_examples, 2],\n",
-    "                text=[generator.example_ids[ind] for ind in concerned_examples],\n",
+    "                x=generator.dataset[view_index][concerned_examples, 0],\n",
+    "                y=generator.dataset[view_index][concerned_examples, 1],\n",
+    "                z=generator.dataset[view_index][concerned_examples, 2],\n",
+    "                text=[generator.sample_ids[ind] for ind in concerned_examples],\n",
     "                hoverinfo='text',\n",
     "                legendgroup=\"Class {}\".format(lab_index),\n",
     "                mode='markers', marker=dict(size=1,\n",
@@ -33701,7 +33671,7 @@
     }
    },
    "source": [
-    "The figure shows us the dataset with a 3D-subplot for each view.  It is possible to remove the samples of a specific class by clicking on a label in the legend.\n",
+    "The figure shows us the dataset with a 3D-subplot for each view.  It is possible to remove the samples of a specific class by clicking on a label in the legend. The sub-problems are of dimension 3 (3 features), however, to separate 3 classes only 2 features are needed, so the first two dimensions (x and y in the plots) are \"relevant\", while the third is filled with noise.  \n",
     "\n",
     "## Getting the outputted error matrix\n",
     "\n",
@@ -33713,7 +33683,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 11,
+   "execution_count": 16,
    "metadata": {
     "pycharm": {
      "is_executing": false,
@@ -33749,7 +33719,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 12,
+   "execution_count": 25,
    "metadata": {
     "pycharm": {
      "is_executing": false,
@@ -33762,30 +33732,30 @@
      "output_type": "stream",
      "text": [
       "Input error matrix : \n",
-      "+------+-----+------+------+\n",
-      "| 0.4  | 0.4 | 0.4  | 0.4  |\n",
-      "+------+-----+------+------+\n",
-      "| 0.55 | 0.4 | 0.4  | 0.4  |\n",
-      "+------+-----+------+------+\n",
-      "| 0.4  | 0.5 | 0.52 | 0.55 |\n",
-      "+------+-----+------+------+\n",
+      "+------+------+------+------+\n",
+      "| 0.3  | 0.32 | 0.38 | 0.3  |\n",
+      "+------+------+------+------+\n",
+      "| 0.35 | 0.28 | 0.2  | 0.15 |\n",
+      "+------+------+------+------+\n",
+      "| 0.25 | 0.29 | 0.15 | 0.21 |\n",
+      "+------+------+------+------+\n",
       "\n",
       "Outputted error matrix : \n",
       "+----------+----------+----------+----------+\n",
-      "| 0.411411 | 0.402402 | 0.402402 | 0.427928 |\n",
+      "| 0.406907 | 0.387387 | 0.381381 | 0.33033  |\n",
       "+----------+----------+----------+----------+\n",
-      "| 0.542042 | 0.408408 | 0.42042  | 0.405405 |\n",
+      "| 0.286787 | 0.273273 | 0.157658 | 0.147147 |\n",
       "+----------+----------+----------+----------+\n",
-      "| 0.406907 | 0.501502 | 0.525526 | 0.548048 |\n",
+      "| 0.241742 | 0.262763 | 0.171171 | 0.192192 |\n",
       "+----------+----------+----------+----------+\n",
       "\n",
       "Difference :\n",
       "+-------------+-------------+-------------+-------------+\n",
-      "| -0.0114114  | -0.0024024  | -0.0024024  | -0.0279279  |\n",
+      "| -0.106907   | -0.0673874  | -0.00138138 | -0.0303303  |\n",
       "+-------------+-------------+-------------+-------------+\n",
-      "|  0.00795796 | -0.00840841 | -0.0204204  | -0.00540541 |\n",
+      "|  0.0632132  |  0.00672673 |  0.0423423  |  0.00285285 |\n",
       "+-------------+-------------+-------------+-------------+\n",
-      "| -0.00690691 | -0.0015015  | -0.00552553 |  0.00195195 |\n",
+      "|  0.00825826 |  0.0272372  | -0.0211712  |  0.0178078  |\n",
       "+-------------+-------------+-------------+-------------+\n"
      ]
     }
@@ -33794,7 +33764,7 @@
     "from sklearn.tree import DecisionTreeClassifier\n",
     "from sklearn.metrics import confusion_matrix\n",
     "\n",
-    "dt = DecisionTreeClassifier(max_depth=3)\n",
+    "dt = DecisionTreeClassifier(max_depth=10)\n",
     "confusion_mat = np.zeros((n_folds, n_views, n_classes, n_classes))\n",
     "n_sample_per_class = np.zeros((n_views, n_classes, n_folds))\n",
     "\n",
@@ -33804,10 +33774,9 @@
     "    for fold_index, [train, test] in enumerate(folds):\n",
     "        \n",
     "        # Fit the decision tree on the training set\n",
-    "        dt.fit(generator.view_data[view_index][train, :], generator.y[train])\n",
-    "        \n",
+    "        dt.fit(generator.dataset[view_index][train, :], generator.y[train])\n",
     "        # Predict on the testing set\n",
-    "        pred = dt.predict(generator.view_data[view_index][test, :])\n",
+    "        pred = dt.predict(generator.dataset[view_index][test, :])\n",
     "        \n",
     "        # Get the confusion matrix\n",
     "        confusion_mat[fold_index, view_index, :, :] = confusion_matrix(generator.y[test], pred)\n",
@@ -33836,7 +33805,7 @@
     "\n",
     "## Conclusion\n",
     "\n",
-    "In this demo, we used SMuDGE to generate a basic multiview dataset, and we performed a naive analysis on it. \n",
+    "In this demo, we used MAGE to generate a basic multiview dataset, and we performed a naive analysis on it. \n",
     "The next tutorial will be focused on introducing redundancy, mutual error and complementarity. "
    ]
   }
diff --git a/demo/tutorials/sample_types.ipynb b/demo/tutorials/sample_types.ipynb
index 350cb7ad0c66029da1546d4a81af7df3e75d3dda..c83860cd7113c83a7913dae8c3e49ab1339a7230 100644
--- a/demo/tutorials/sample_types.ipynb
+++ b/demo/tutorials/sample_types.ipynb
@@ -9,7 +9,7 @@
     }
    },
    "source": [
-    "# SMuDGE tutorial : the sample types \n",
+    "# MAGE tutorial : the sample types \n",
     "\n",
     "In this tutorial, we will learn how to generate a multiview dataset presenting :\n",
     "\n",
@@ -44,7 +44,7 @@
    },
    "outputs": [],
    "source": [
-    "from multiview_generator.multiple_sub_problems import MultiViewSubProblemsGenerator\n",
+    "from multiview_generator.gaussian_classes import MultiViewGaussianSubProblemsGenerator\n",
     "from tabulate import tabulate\n",
     "import numpy as np\n",
     "import os\n",
@@ -110,18 +110,9 @@
      "name": "#%% \n"
     }
    },
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "[array([399, 399, 399, 399]), array([299, 399, 399, 399]), array([399, 333, 319, 299])]\n",
-      "400.0\n"
-     ]
-    }
-   ],
+   "outputs": [],
    "source": [
-    "generator = MultiViewSubProblemsGenerator(name=name, n_views=n_views, \n",
+    "generator = MultiViewGaussianSubProblemsGenerator(name=name, n_views=n_views, \n",
     "                                          n_classes=n_classes, \n",
     "                                          n_samples=n_samples, \n",
     "                                          n_features=n_features, \n",
@@ -132,7 +123,7 @@
     "                                          complementarity=complementarity, \n",
     "                                          mutual_error=mutual_error)\n",
     "\n",
-    "view_data, y = generator.generate_multi_view_dataset()"
+    "dataset, y = generator.generate_multi_view_dataset()"
    ]
   },
   {
@@ -147,7 +138,7 @@
     "\n",
     "## Dataset analysis using [SuMMIT](https://gitlab.lis-lab.fr/baptiste.bauvin/summit)\n",
     "\n",
-    "In order to differentiate them, we use `generator.example_ids`. In this attribute, we can find an array with the ids of all the generated exmaples, characterizing their type :"
+    "In order to differentiate them, we use `generator.sample_ids`. In this attribute, we can find an array with the ids of all the generated exmaples, characterizing their type :"
    ]
   },
   {
@@ -163,16 +154,16 @@
     {
      "data": {
       "text/plain": [
-       "['Complementary_193_1',\n",
-       " 'redundancy_56_2',\n",
-       " 'Complementary_64_0',\n",
-       " 'redundancy_26_1',\n",
-       " 'Complementary_141_2',\n",
-       " 'example_5',\n",
-       " 'redundancy_54_1',\n",
-       " 'Complementary_157_1',\n",
-       " 'example_8',\n",
-       " 'example_9']"
+       "['0_l_0_m-0_0.37-1_0.04-2_0.27-3_0.81',\n",
+       " '1_l_0_m-0_0.48-1_1.28-2_0.28-3_0.55',\n",
+       " '2_l_0_m-0_0.96-1_0.32-2_0.08-3_0.56',\n",
+       " '3_l_0_m-0_2.49-1_0.18-2_0.97-3_0.35',\n",
+       " '4_l_0_m-0_0.11-1_0.92-2_0.21-3_0.4',\n",
+       " '5_l_0_m-0_0.84-1_0.43-2_0.48-3_1.17',\n",
+       " '6_l_0_m-0_0.84-1_1.41-2_0.13-3_0.46',\n",
+       " '7_l_0_m-0_0.14-1_0.64-2_0.62-3_0.4',\n",
+       " '8_l_0_m-0_0.04-1_0.31-2_0.63-3_0.21',\n",
+       " '9_l_0_m-0_0.86-1_1.18-2_0.09-3_0.35']"
       ]
      },
      "execution_count": 4,
@@ -181,7 +172,7 @@
     }
    ],
    "source": [
-    "generator.example_ids[:10]"
+    "generator.sample_ids[:10]"
    ]
   },
   {
@@ -194,17 +185,17 @@
    "source": [
     "Here, we printed the 10 first ones, and we have : \n",
     "\n",
-    "* the redundant samples tagged `redundancy_`,\n",
-    "* the mutual error ones tagged `mutual_error_`,\n",
-    "* the complementary ones tagged `complementary_` and\n",
-    "* the filling ones tagged `example_`. \n",
+    "* the redundant samples tagged `_r-`,\n",
+    "* the mutual error ones tagged `_m-`,\n",
+    "* the complementary ones tagged `_c-` and\n",
+    "<!-- * the filling ones tagged `example_`.  -->\n",
     "\n",
     "To get a visualization on these properties, we will use SuMMIT with decision trees on each view. "
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 5,
+   "execution_count": 6,
    "metadata": {
     "pycharm": {
      "is_executing": false,
@@ -213,7 +204,7 @@
    },
    "outputs": [],
    "source": [
-    "from multiview_platform.execute import execute  \n",
+    "from summit.execute import execute  \n",
     "\n",
     "generator.to_hdf5_mc('supplementary_material')\n",
     "execute(config_path=os.path.join('supplementary_material','config_summit.yml'))\n"
@@ -242,14 +233,14 @@
        "        <iframe\n",
        "            width=\"900\"\n",
        "            height=\"500\"\n",
-       "            src=\"supplementary_material/tuto/started_2020_04_29-09_36_/error_analysis_2D.html\"\n",
+       "            src=\"supplementary_material/tuto/started_2021_06_10-09_11_/error_analysis_2D.html\"\n",
        "            frameborder=\"0\"\n",
        "            allowfullscreen\n",
        "        ></iframe>\n",
        "        "
       ],
       "text/plain": [
-       "<IPython.lib.display.IFrame at 0x7f71927ec9e8>"
+       "<IPython.lib.display.IFrame at 0x7f149d3a6f98>"
       ]
      },
      "execution_count": 7,
diff --git a/demo/tutorials/sub_problems_configuration.ipynb b/demo/tutorials/sub_problems_configuration.ipynb
index 1b591e3bcc83dec55256faa5561f656f78575f93..a774739df057b1862596b1741c0d0c1ed77a9286 100644
--- a/demo/tutorials/sub_problems_configuration.ipynb
+++ b/demo/tutorials/sub_problems_configuration.ipynb
@@ -4,7 +4,7 @@
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "# SMuDGE tutorial :  multiple monoview generators. \n",
+    "# MAGE tutorial :  multiple monoview generators. \n",
     "\n",
     "In this tutorial, we will learn how to use different monoview generators and configure them. \n",
     "Let us first define the vizualization functions :\n"
@@ -23,23 +23,33 @@
     "from plotly.subplots import make_subplots\n",
     "from plotly.colors import DEFAULT_PLOTLY_COLORS\n",
     "\n",
-    "from multiview_generator.multiple_sub_problems import MultiViewSubProblemsGenerator\n",
+    "from multiview_generator.gaussian_classes import MultiViewGaussianSubProblemsGenerator\n",
+    "from multiview_generator.sub_problems import *\n",
     "\n",
     "\n",
-    "\n",
-    "def plot_3d(X, y):\n",
+    "def plot_3d(data):\n",
     "    fig = go.Figure()\n",
-    "    for label in np.unique(y):\n",
-    "        indices = np.where(y==label)\n",
-    "        fig.add_trace(go.Scatter3d(x=X[indices, 0][0], \n",
-    "                                   y=X[indices, 1][0],\n",
-    "                                   z=X[indices, 2][0],\n",
+    "    for (label, class_data) in enumerate(data):\n",
+    "        fig.add_trace(go.Scatter3d(x=class_data[:, 0], \n",
+    "                                   y=class_data[:, 1],\n",
+    "                                   z=class_data[:, 2],\n",
     "                                  name=\"Class {}\".format(label+1), \n",
     "                                  mode=\"markers\", \n",
     "                                  marker=dict(\n",
     "                            size=1,)))\n",
     "    return fig\n",
     "\n",
+    "def plot_2d(data):\n",
+    "    fig = go.Figure()\n",
+    "    for (label, class_data) in enumerate(data):\n",
+    "        fig.add_trace(go.Scatter(x=class_data[:, 0], \n",
+    "                                 y=class_data[:, 1],\n",
+    "                                  name=\"Class {}\".format(label+1), \n",
+    "                                  mode=\"markers\", \n",
+    "                                  marker=dict(\n",
+    "                            size=3,)))\n",
+    "    return fig\n",
+    "\n",
     "def plot_3d_4_views(generator, n_views=4, n_classes=3):\n",
     "    fig = make_subplots(rows=2, cols=2,\n",
     "                        subplot_titles= [\"View {}\".format(view_index)\n",
@@ -56,10 +66,10 @@
     "            concerned_examples = np.where(generator.y == lab_index)[0]\n",
     "            fig.add_trace(\n",
     "                go.Scatter3d(\n",
-    "                    x=generator.view_data[view_index][concerned_examples, 0],\n",
-    "                    y=generator.view_data[view_index][concerned_examples, 1],\n",
-    "                    z=generator.view_data[view_index][concerned_examples, 2],\n",
-    "                    text=[generator.example_ids[ind] for ind in concerned_examples],\n",
+    "                    x=generator.dataset[view_index][concerned_examples, 0],\n",
+    "                    y=generator.dataset[view_index][concerned_examples, 1],\n",
+    "                    z=generator.dataset[view_index][concerned_examples, 2],\n",
+    "                    text=[generator.sample_ids[ind] for ind in concerned_examples],\n",
     "                    hoverinfo='text',\n",
     "                    legendgroup=\"Class {}\".format(lab_index),\n",
     "                    mode='markers', marker=dict(size=1,\n",
@@ -81,46 +91,19 @@
    "metadata": {},
    "source": [
     "\n",
-    "## [`make_classification`](https://scikit-learn.org/stable/modules/generated/sklearn.datasets.make_classification.html) : the hyper-cube vertices\n",
+    "## StumpsGenerator : the hyper-cube vertices\n",
     "\n",
-    "The first and simplest generator we use is `make_classification`, provided by `scikit-learn`. It generates an hypercube and sets `n_clusters_per_class` clusters of samples on its vertices for each class.  \n",
+    "The first and simplest generator we use is implemented in the `StumpsGenerator` class.\n",
+    "It generates an hypercube and sets clusters of samples on its vertices for each class.  \n",
     "\n",
     "Let's vizualize it in a 3D example : "
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 2,
+   "execution_count": 13,
    "metadata": {},
    "outputs": [
-    {
-     "data": {
-      "text/html": [
-       "        <script type=\"text/javascript\">\n",
-       "        window.PlotlyConfig = {MathJaxConfig: 'local'};\n",
-       "        if (window.MathJax) {MathJax.Hub.Config({SVG: {font: \"STIX-Web\"}});}\n",
-       "        if (typeof require !== 'undefined') {\n",
-       "        require.undef(\"plotly\");\n",
-       "        define('plotly', function(require, exports, module) {\n",
-       "            /**\n",
-       "* plotly.js v1.50.1\n",
-       "* Copyright 2012-2019, Plotly, Inc.\n",
-       "* All rights reserved.\n",
-       "* Licensed under the MIT license\n",
-       "*/\n",
-       "!function(t){if(\"object\"==typeof exports&&\"undefined\"!=typeof module)module.exports=t();else if(\"function\"==typeof define&&define.amd)define([],t);else{(\"undefined\"!=typeof window?window:\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:this).Plotly=t()}}(function(){return function(){return function t(e,r,n){function a(o,s){if(!r[o]){if(!e[o]){var l=\"function\"==typeof require&&require;if(!s&&l)return l(o,!0);if(i)return i(o,!0);var c=new Error(\"Cannot find module '\"+o+\"'\");throw c.code=\"MODULE_NOT_FOUND\",c}var u=r[o]={exports:{}};e[o][0].call(u.exports,function(t){return a(e[o][1][t]||t)},u,u.exports,t,e,r,n)}return r[o].exports}for(var i=\"function\"==typeof require&&require,o=0;o<n.length;o++)a(n[o]);return a}}()({1:[function(t,e,r){\"use strict\";var n=t(\"../src/lib\"),a={\"X,X div\":\"direction:ltr;font-family:'Open Sans', verdana, arial, sans-serif;margin:0;padding:0;\",\"X input,X button\":\"font-family:'Open Sans', verdana, arial, sans-serif;\",\"X input:focus,X button:focus\":\"outline:none;\",\"X a\":\"text-decoration:none;\",\"X a:hover\":\"text-decoration:none;\",\"X .crisp\":\"shape-rendering:crispEdges;\",\"X .user-select-none\":\"-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;\",\"X svg\":\"overflow:hidden;\",\"X svg a\":\"fill:#447adb;\",\"X svg a:hover\":\"fill:#3c6dc5;\",\"X .main-svg\":\"position:absolute;top:0;left:0;pointer-events:none;\",\"X .main-svg .draglayer\":\"pointer-events:all;\",\"X .cursor-default\":\"cursor:default;\",\"X .cursor-pointer\":\"cursor:pointer;\",\"X .cursor-crosshair\":\"cursor:crosshair;\",\"X .cursor-move\":\"cursor:move;\",\"X .cursor-col-resize\":\"cursor:col-resize;\",\"X .cursor-row-resize\":\"cursor:row-resize;\",\"X .cursor-ns-resize\":\"cursor:ns-resize;\",\"X .cursor-ew-resize\":\"cursor:ew-resize;\",\"X .cursor-sw-resize\":\"cursor:sw-resize;\",\"X .cursor-s-resize\":\"cursor:s-resize;\",\"X .cursor-se-resize\":\"cursor:se-resize;\",\"X .cursor-w-resize\":\"cursor:w-resize;\",\"X .cursor-e-resize\":\"cursor:e-resize;\",\"X .cursor-nw-resize\":\"cursor:nw-resize;\",\"X .cursor-n-resize\":\"cursor:n-resize;\",\"X .cursor-ne-resize\":\"cursor:ne-resize;\",\"X .cursor-grab\":\"cursor:-webkit-grab;cursor:grab;\",\"X .modebar\":\"position:absolute;top:2px;right:2px;\",\"X .ease-bg\":\"-webkit-transition:background-color 0.3s ease 0s;-moz-transition:background-color 0.3s ease 0s;-ms-transition:background-color 0.3s ease 0s;-o-transition:background-color 0.3s ease 0s;transition:background-color 0.3s ease 0s;\",\"X .modebar--hover>:not(.watermark)\":\"opacity:0;-webkit-transition:opacity 0.3s ease 0s;-moz-transition:opacity 0.3s ease 0s;-ms-transition:opacity 0.3s ease 0s;-o-transition:opacity 0.3s ease 0s;transition:opacity 0.3s ease 0s;\",\"X:hover .modebar--hover .modebar-group\":\"opacity:1;\",\"X .modebar-group\":\"float:left;display:inline-block;box-sizing:border-box;padding-left:8px;position:relative;vertical-align:middle;white-space:nowrap;\",\"X .modebar-btn\":\"position:relative;font-size:16px;padding:3px 4px;height:22px;cursor:pointer;line-height:normal;box-sizing:border-box;\",\"X .modebar-btn svg\":\"position:relative;top:2px;\",\"X .modebar.vertical\":\"display:flex;flex-direction:column;flex-wrap:wrap;align-content:flex-end;max-height:100%;\",\"X .modebar.vertical svg\":\"top:-1px;\",\"X .modebar.vertical .modebar-group\":\"display:block;float:none;padding-left:0px;padding-bottom:8px;\",\"X .modebar.vertical .modebar-group .modebar-btn\":\"display:block;text-align:center;\",\"X [data-title]:before,X [data-title]:after\":\"position:absolute;-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);display:none;opacity:0;z-index:1001;pointer-events:none;top:110%;right:50%;\",\"X [data-title]:hover:before,X [data-title]:hover:after\":\"display:block;opacity:1;\",\"X [data-title]:before\":\"content:'';position:absolute;background:transparent;border:6px solid transparent;z-index:1002;margin-top:-12px;border-bottom-color:#69738a;margin-right:-6px;\",\"X [data-title]:after\":\"content:attr(data-title);background:#69738a;color:white;padding:8px 10px;font-size:12px;line-height:12px;white-space:nowrap;margin-right:-18px;border-radius:2px;\",\"X .vertical [data-title]:before,X .vertical [data-title]:after\":\"top:0%;right:200%;\",\"X .vertical [data-title]:before\":\"border:6px solid transparent;border-left-color:#69738a;margin-top:8px;margin-right:-30px;\",\"X .select-outline\":\"fill:none;stroke-width:1;shape-rendering:crispEdges;\",\"X .select-outline-1\":\"stroke:white;\",\"X .select-outline-2\":\"stroke:black;stroke-dasharray:2px 2px;\",Y:\"font-family:'Open Sans';position:fixed;top:50px;right:20px;z-index:10000;font-size:10pt;max-width:180px;\",\"Y p\":\"margin:0;\",\"Y .notifier-note\":\"min-width:180px;max-width:250px;border:1px solid #fff;z-index:3000;margin:0;background-color:#8c97af;background-color:rgba(140,151,175,0.9);color:#fff;padding:10px;overflow-wrap:break-word;word-wrap:break-word;-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto;\",\"Y .notifier-close\":\"color:#fff;opacity:0.8;float:right;padding:0 5px;background:none;border:none;font-size:20px;font-weight:bold;line-height:20px;\",\"Y .notifier-close:hover\":\"color:#444;text-decoration:none;cursor:pointer;\"};for(var i in a){var o=i.replace(/^,/,\" ,\").replace(/X/g,\".js-plotly-plot .plotly\").replace(/Y/g,\".plotly-notifier\");n.addStyleRule(o,a[i])}},{\"../src/lib\":719}],2:[function(t,e,r){\"use strict\";e.exports=t(\"../src/transforms/aggregate\")},{\"../src/transforms/aggregate\":1279}],3:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/bar\")},{\"../src/traces/bar\":865}],4:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/barpolar\")},{\"../src/traces/barpolar\":877}],5:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/box\")},{\"../src/traces/box\":887}],6:[function(t,e,r){\"use strict\";e.exports=t(\"../src/components/calendars\")},{\"../src/components/calendars\":592}],7:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/candlestick\")},{\"../src/traces/candlestick\":896}],8:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/carpet\")},{\"../src/traces/carpet\":915}],9:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/choropleth\")},{\"../src/traces/choropleth\":929}],10:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/choroplethmapbox\")},{\"../src/traces/choroplethmapbox\":936}],11:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/cone\")},{\"../src/traces/cone\":942}],12:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/contour\")},{\"../src/traces/contour\":957}],13:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/contourcarpet\")},{\"../src/traces/contourcarpet\":968}],14:[function(t,e,r){\"use strict\";e.exports=t(\"../src/core\")},{\"../src/core\":697}],15:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/densitymapbox\")},{\"../src/traces/densitymapbox\":976}],16:[function(t,e,r){\"use strict\";e.exports=t(\"../src/transforms/filter\")},{\"../src/transforms/filter\":1280}],17:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/funnel\")},{\"../src/traces/funnel\":986}],18:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/funnelarea\")},{\"../src/traces/funnelarea\":995}],19:[function(t,e,r){\"use strict\";e.exports=t(\"../src/transforms/groupby\")},{\"../src/transforms/groupby\":1281}],20:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/heatmap\")},{\"../src/traces/heatmap\":1008}],21:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/heatmapgl\")},{\"../src/traces/heatmapgl\":1017}],22:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/histogram\")},{\"../src/traces/histogram\":1029}],23:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/histogram2d\")},{\"../src/traces/histogram2d\":1035}],24:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/histogram2dcontour\")},{\"../src/traces/histogram2dcontour\":1039}],25:[function(t,e,r){\"use strict\";var n=t(\"./core\");n.register([t(\"./bar\"),t(\"./box\"),t(\"./heatmap\"),t(\"./histogram\"),t(\"./histogram2d\"),t(\"./histogram2dcontour\"),t(\"./contour\"),t(\"./scatterternary\"),t(\"./violin\"),t(\"./funnel\"),t(\"./waterfall\"),t(\"./pie\"),t(\"./sunburst\"),t(\"./treemap\"),t(\"./funnelarea\"),t(\"./scatter3d\"),t(\"./surface\"),t(\"./isosurface\"),t(\"./volume\"),t(\"./mesh3d\"),t(\"./cone\"),t(\"./streamtube\"),t(\"./scattergeo\"),t(\"./choropleth\"),t(\"./scattergl\"),t(\"./splom\"),t(\"./pointcloud\"),t(\"./heatmapgl\"),t(\"./parcoords\"),t(\"./parcats\"),t(\"./scattermapbox\"),t(\"./choroplethmapbox\"),t(\"./densitymapbox\"),t(\"./sankey\"),t(\"./indicator\"),t(\"./table\"),t(\"./carpet\"),t(\"./scattercarpet\"),t(\"./contourcarpet\"),t(\"./ohlc\"),t(\"./candlestick\"),t(\"./scatterpolar\"),t(\"./scatterpolargl\"),t(\"./barpolar\")]),n.register([t(\"./aggregate\"),t(\"./filter\"),t(\"./groupby\"),t(\"./sort\")]),n.register([t(\"./calendars\")]),e.exports=n},{\"./aggregate\":2,\"./bar\":3,\"./barpolar\":4,\"./box\":5,\"./calendars\":6,\"./candlestick\":7,\"./carpet\":8,\"./choropleth\":9,\"./choroplethmapbox\":10,\"./cone\":11,\"./contour\":12,\"./contourcarpet\":13,\"./core\":14,\"./densitymapbox\":15,\"./filter\":16,\"./funnel\":17,\"./funnelarea\":18,\"./groupby\":19,\"./heatmap\":20,\"./heatmapgl\":21,\"./histogram\":22,\"./histogram2d\":23,\"./histogram2dcontour\":24,\"./indicator\":26,\"./isosurface\":27,\"./mesh3d\":28,\"./ohlc\":29,\"./parcats\":30,\"./parcoords\":31,\"./pie\":32,\"./pointcloud\":33,\"./sankey\":34,\"./scatter3d\":35,\"./scattercarpet\":36,\"./scattergeo\":37,\"./scattergl\":38,\"./scattermapbox\":39,\"./scatterpolar\":40,\"./scatterpolargl\":41,\"./scatterternary\":42,\"./sort\":43,\"./splom\":44,\"./streamtube\":45,\"./sunburst\":46,\"./surface\":47,\"./table\":48,\"./treemap\":49,\"./violin\":50,\"./volume\":51,\"./waterfall\":52}],26:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/indicator\")},{\"../src/traces/indicator\":1045}],27:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/isosurface\")},{\"../src/traces/isosurface\":1051}],28:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/mesh3d\")},{\"../src/traces/mesh3d\":1056}],29:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/ohlc\")},{\"../src/traces/ohlc\":1061}],30:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/parcats\")},{\"../src/traces/parcats\":1070}],31:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/parcoords\")},{\"../src/traces/parcoords\":1080}],32:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/pie\")},{\"../src/traces/pie\":1091}],33:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/pointcloud\")},{\"../src/traces/pointcloud\":1100}],34:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/sankey\")},{\"../src/traces/sankey\":1106}],35:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/scatter3d\")},{\"../src/traces/scatter3d\":1142}],36:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/scattercarpet\")},{\"../src/traces/scattercarpet\":1148}],37:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/scattergeo\")},{\"../src/traces/scattergeo\":1155}],38:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/scattergl\")},{\"../src/traces/scattergl\":1166}],39:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/scattermapbox\")},{\"../src/traces/scattermapbox\":1175}],40:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/scatterpolar\")},{\"../src/traces/scatterpolar\":1182}],41:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/scatterpolargl\")},{\"../src/traces/scatterpolargl\":1188}],42:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/scatterternary\")},{\"../src/traces/scatterternary\":1195}],43:[function(t,e,r){\"use strict\";e.exports=t(\"../src/transforms/sort\")},{\"../src/transforms/sort\":1283}],44:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/splom\")},{\"../src/traces/splom\":1204}],45:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/streamtube\")},{\"../src/traces/streamtube\":1212}],46:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/sunburst\")},{\"../src/traces/sunburst\":1220}],47:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/surface\")},{\"../src/traces/surface\":1229}],48:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/table\")},{\"../src/traces/table\":1237}],49:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/treemap\")},{\"../src/traces/treemap\":1246}],50:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/violin\")},{\"../src/traces/violin\":1258}],51:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/volume\")},{\"../src/traces/volume\":1266}],52:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/waterfall\")},{\"../src/traces/waterfall\":1274}],53:[function(t,e,r){\"use strict\";e.exports=function(t){var e=(t=t||{}).eye||[0,0,1],r=t.center||[0,0,0],s=t.up||[0,1,0],l=t.distanceLimits||[0,1/0],c=t.mode||\"turntable\",u=n(),h=a(),f=i();return u.setDistanceLimits(l[0],l[1]),u.lookAt(0,e,r,s),h.setDistanceLimits(l[0],l[1]),h.lookAt(0,e,r,s),f.setDistanceLimits(l[0],l[1]),f.lookAt(0,e,r,s),new o({turntable:u,orbit:h,matrix:f},c)};var n=t(\"turntable-camera-controller\"),a=t(\"orbit-camera-controller\"),i=t(\"matrix-camera-controller\");function o(t,e){this._controllerNames=Object.keys(t),this._controllerList=this._controllerNames.map(function(e){return t[e]}),this._mode=e,this._active=t[e],this._active||(this._mode=\"turntable\",this._active=t.turntable),this.modes=this._controllerNames,this.computedMatrix=this._active.computedMatrix,this.computedEye=this._active.computedEye,this.computedUp=this._active.computedUp,this.computedCenter=this._active.computedCenter,this.computedRadius=this._active.computedRadius}var s=o.prototype;[[\"flush\",1],[\"idle\",1],[\"lookAt\",4],[\"rotate\",4],[\"pan\",4],[\"translate\",4],[\"setMatrix\",2],[\"setDistanceLimits\",2],[\"setDistance\",2]].forEach(function(t){for(var e=t[0],r=[],n=0;n<t[1];++n)r.push(\"a\"+n);var a=\"var cc=this._controllerList;for(var i=0;i<cc.length;++i){cc[i].\"+t[0]+\"(\"+r.join()+\")}\";s[e]=Function.apply(null,r.concat(a))}),s.recalcMatrix=function(t){this._active.recalcMatrix(t)},s.getDistance=function(t){return this._active.getDistance(t)},s.getDistanceLimits=function(t){return this._active.getDistanceLimits(t)},s.lastT=function(){return this._active.lastT()},s.setMode=function(t){if(t!==this._mode){var e=this._controllerNames.indexOf(t);if(!(e<0)){var r=this._active,n=this._controllerList[e],a=Math.max(r.lastT(),n.lastT());r.recalcMatrix(a),n.setMatrix(a,r.computedMatrix),this._active=n,this._mode=t,this.computedMatrix=this._active.computedMatrix,this.computedEye=this._active.computedEye,this.computedUp=this._active.computedUp,this.computedCenter=this._active.computedCenter,this.computedRadius=this._active.computedRadius}}},s.getMode=function(){return this._mode}},{\"matrix-camera-controller\":434,\"orbit-camera-controller\":457,\"turntable-camera-controller\":543}],54:[function(t,e,r){var n,a;n=this,a=function(t,e,r,n,a){\"use strict\";function i(t){return t.target.depth}function o(t,e){return t.sourceLinks.length?t.depth:e-1}function s(t){return function(){return t}}a=a&&a.hasOwnProperty(\"default\")?a.default:a;var l=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&\"function\"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?\"symbol\":typeof t};function c(t,e){return h(t.source,e.source)||t.index-e.index}function u(t,e){return h(t.target,e.target)||t.index-e.index}function h(t,e){return t.partOfCycle===e.partOfCycle?t.y0-e.y0:\"top\"===t.circularLinkType||\"bottom\"===e.circularLinkType?-1:1}function f(t){return t.value}function p(t){return(t.y0+t.y1)/2}function d(t){return p(t.source)}function g(t){return p(t.target)}function v(t){return t.index}function m(t){return t.nodes}function y(t){return t.links}function x(t,e){var r=t.get(e);if(!r)throw new Error(\"missing: \"+e);return r}function b(t,e){return e(t)}var _=25,w=10,k=.3;function T(t,e){var r=0,n=0;t.links.forEach(function(a){a.circular&&(a.source.circularLinkType||a.target.circularLinkType?a.circularLinkType=a.source.circularLinkType?a.source.circularLinkType:a.target.circularLinkType:a.circularLinkType=r<n?\"top\":\"bottom\",\"top\"==a.circularLinkType?r+=1:n+=1,t.nodes.forEach(function(t){b(t,e)!=b(a.source,e)&&b(t,e)!=b(a.target,e)||(t.circularLinkType=a.circularLinkType)}))}),t.links.forEach(function(t){t.circular&&(t.source.circularLinkType==t.target.circularLinkType&&(t.circularLinkType=t.source.circularLinkType),Y(t,e)&&(t.circularLinkType=t.source.circularLinkType))})}function A(t){var e=Math.abs(t.y1-t.y0),r=Math.abs(t.target.x0-t.source.x1);return Math.atan(r/e)}function M(t,e){var r=0;t.sourceLinks.forEach(function(t){r=t.circular&&!Y(t,e)?r+1:r});var n=0;return t.targetLinks.forEach(function(t){n=t.circular&&!Y(t,e)?n+1:n}),r+n}function S(t){var e=t.source.sourceLinks,r=0;e.forEach(function(t){r=t.circular?r+1:r});var n=t.target.targetLinks,a=0;return n.forEach(function(t){a=t.circular?a+1:a}),!(r>1||a>1)}function E(t,e,r){return t.sort(L),t.forEach(function(n,a){var i,o,s=0;if(Y(n,r)&&S(n))n.circularPathData.verticalBuffer=s+n.width/2;else{for(var l=0;l<a;l++)if(i=t[a],o=t[l],!(i.source.column<o.target.column||i.target.column>o.source.column)){var c=t[l].circularPathData.verticalBuffer+t[l].width/2+e;s=c>s?c:s}n.circularPathData.verticalBuffer=s+n.width/2}}),t}function C(t,r,a,i){var o=e.min(t.links,function(t){return t.source.y0});t.links.forEach(function(t){t.circular&&(t.circularPathData={})}),E(t.links.filter(function(t){return\"top\"==t.circularLinkType}),r,i),E(t.links.filter(function(t){return\"bottom\"==t.circularLinkType}),r,i),t.links.forEach(function(e){if(e.circular){if(e.circularPathData.arcRadius=e.width+w,e.circularPathData.leftNodeBuffer=5,e.circularPathData.rightNodeBuffer=5,e.circularPathData.sourceWidth=e.source.x1-e.source.x0,e.circularPathData.sourceX=e.source.x0+e.circularPathData.sourceWidth,e.circularPathData.targetX=e.target.x0,e.circularPathData.sourceY=e.y0,e.circularPathData.targetY=e.y1,Y(e,i)&&S(e))e.circularPathData.leftSmallArcRadius=w+e.width/2,e.circularPathData.leftLargeArcRadius=w+e.width/2,e.circularPathData.rightSmallArcRadius=w+e.width/2,e.circularPathData.rightLargeArcRadius=w+e.width/2,\"bottom\"==e.circularLinkType?(e.circularPathData.verticalFullExtent=e.source.y1+_+e.circularPathData.verticalBuffer,e.circularPathData.verticalLeftInnerExtent=e.circularPathData.verticalFullExtent-e.circularPathData.leftLargeArcRadius,e.circularPathData.verticalRightInnerExtent=e.circularPathData.verticalFullExtent-e.circularPathData.rightLargeArcRadius):(e.circularPathData.verticalFullExtent=e.source.y0-_-e.circularPathData.verticalBuffer,e.circularPathData.verticalLeftInnerExtent=e.circularPathData.verticalFullExtent+e.circularPathData.leftLargeArcRadius,e.circularPathData.verticalRightInnerExtent=e.circularPathData.verticalFullExtent+e.circularPathData.rightLargeArcRadius);else{var s=e.source.column,l=e.circularLinkType,c=t.links.filter(function(t){return t.source.column==s&&t.circularLinkType==l});\"bottom\"==e.circularLinkType?c.sort(O):c.sort(P);var u=0;c.forEach(function(t,n){t.circularLinkID==e.circularLinkID&&(e.circularPathData.leftSmallArcRadius=w+e.width/2+u,e.circularPathData.leftLargeArcRadius=w+e.width/2+n*r+u),u+=t.width}),s=e.target.column,c=t.links.filter(function(t){return t.target.column==s&&t.circularLinkType==l}),\"bottom\"==e.circularLinkType?c.sort(z):c.sort(I),u=0,c.forEach(function(t,n){t.circularLinkID==e.circularLinkID&&(e.circularPathData.rightSmallArcRadius=w+e.width/2+u,e.circularPathData.rightLargeArcRadius=w+e.width/2+n*r+u),u+=t.width}),\"bottom\"==e.circularLinkType?(e.circularPathData.verticalFullExtent=Math.max(a,e.source.y1,e.target.y1)+_+e.circularPathData.verticalBuffer,e.circularPathData.verticalLeftInnerExtent=e.circularPathData.verticalFullExtent-e.circularPathData.leftLargeArcRadius,e.circularPathData.verticalRightInnerExtent=e.circularPathData.verticalFullExtent-e.circularPathData.rightLargeArcRadius):(e.circularPathData.verticalFullExtent=o-_-e.circularPathData.verticalBuffer,e.circularPathData.verticalLeftInnerExtent=e.circularPathData.verticalFullExtent+e.circularPathData.leftLargeArcRadius,e.circularPathData.verticalRightInnerExtent=e.circularPathData.verticalFullExtent+e.circularPathData.rightLargeArcRadius)}e.circularPathData.leftInnerExtent=e.circularPathData.sourceX+e.circularPathData.leftNodeBuffer,e.circularPathData.rightInnerExtent=e.circularPathData.targetX-e.circularPathData.rightNodeBuffer,e.circularPathData.leftFullExtent=e.circularPathData.sourceX+e.circularPathData.leftLargeArcRadius+e.circularPathData.leftNodeBuffer,e.circularPathData.rightFullExtent=e.circularPathData.targetX-e.circularPathData.rightLargeArcRadius-e.circularPathData.rightNodeBuffer}if(e.circular)e.path=function(t){var e=\"\";e=\"top\"==t.circularLinkType?\"M\"+t.circularPathData.sourceX+\" \"+t.circularPathData.sourceY+\" L\"+t.circularPathData.leftInnerExtent+\" \"+t.circularPathData.sourceY+\" A\"+t.circularPathData.leftLargeArcRadius+\" \"+t.circularPathData.leftSmallArcRadius+\" 0 0 0 \"+t.circularPathData.leftFullExtent+\" \"+(t.circularPathData.sourceY-t.circularPathData.leftSmallArcRadius)+\" L\"+t.circularPathData.leftFullExtent+\" \"+t.circularPathData.verticalLeftInnerExtent+\" A\"+t.circularPathData.leftLargeArcRadius+\" \"+t.circularPathData.leftLargeArcRadius+\" 0 0 0 \"+t.circularPathData.leftInnerExtent+\" \"+t.circularPathData.verticalFullExtent+\" L\"+t.circularPathData.rightInnerExtent+\" \"+t.circularPathData.verticalFullExtent+\" A\"+t.circularPathData.rightLargeArcRadius+\" \"+t.circularPathData.rightLargeArcRadius+\" 0 0 0 \"+t.circularPathData.rightFullExtent+\" \"+t.circularPathData.verticalRightInnerExtent+\" L\"+t.circularPathData.rightFullExtent+\" \"+(t.circularPathData.targetY-t.circularPathData.rightSmallArcRadius)+\" A\"+t.circularPathData.rightLargeArcRadius+\" \"+t.circularPathData.rightSmallArcRadius+\" 0 0 0 \"+t.circularPathData.rightInnerExtent+\" \"+t.circularPathData.targetY+\" L\"+t.circularPathData.targetX+\" \"+t.circularPathData.targetY:\"M\"+t.circularPathData.sourceX+\" \"+t.circularPathData.sourceY+\" L\"+t.circularPathData.leftInnerExtent+\" \"+t.circularPathData.sourceY+\" A\"+t.circularPathData.leftLargeArcRadius+\" \"+t.circularPathData.leftSmallArcRadius+\" 0 0 1 \"+t.circularPathData.leftFullExtent+\" \"+(t.circularPathData.sourceY+t.circularPathData.leftSmallArcRadius)+\" L\"+t.circularPathData.leftFullExtent+\" \"+t.circularPathData.verticalLeftInnerExtent+\" A\"+t.circularPathData.leftLargeArcRadius+\" \"+t.circularPathData.leftLargeArcRadius+\" 0 0 1 \"+t.circularPathData.leftInnerExtent+\" \"+t.circularPathData.verticalFullExtent+\" L\"+t.circularPathData.rightInnerExtent+\" \"+t.circularPathData.verticalFullExtent+\" A\"+t.circularPathData.rightLargeArcRadius+\" \"+t.circularPathData.rightLargeArcRadius+\" 0 0 1 \"+t.circularPathData.rightFullExtent+\" \"+t.circularPathData.verticalRightInnerExtent+\" L\"+t.circularPathData.rightFullExtent+\" \"+(t.circularPathData.targetY+t.circularPathData.rightSmallArcRadius)+\" A\"+t.circularPathData.rightLargeArcRadius+\" \"+t.circularPathData.rightSmallArcRadius+\" 0 0 1 \"+t.circularPathData.rightInnerExtent+\" \"+t.circularPathData.targetY+\" L\"+t.circularPathData.targetX+\" \"+t.circularPathData.targetY;return e}(e);else{var h=n.linkHorizontal().source(function(t){return[t.source.x0+(t.source.x1-t.source.x0),t.y0]}).target(function(t){return[t.target.x0,t.y1]});e.path=h(e)}})}function L(t,e){return D(t)==D(e)?\"bottom\"==t.circularLinkType?O(t,e):P(t,e):D(e)-D(t)}function P(t,e){return t.y0-e.y0}function O(t,e){return e.y0-t.y0}function I(t,e){return t.y1-e.y1}function z(t,e){return e.y1-t.y1}function D(t){return t.target.column-t.source.column}function R(t){return t.target.x0-t.source.x1}function F(t,e){var r=A(t),n=R(e)/Math.tan(r);return\"up\"==G(t)?t.y1+n:t.y1-n}function B(t,e){var r=A(t),n=R(e)/Math.tan(r);return\"up\"==G(t)?t.y1-n:t.y1+n}function N(t,e,r,n){t.links.forEach(function(a){if(!a.circular&&a.target.column-a.source.column>1){var i=a.source.column+1,o=a.target.column-1,s=1,l=o-i+1;for(s=1;i<=o;i++,s++)t.nodes.forEach(function(o){if(o.column==i){var c,u=s/(l+1),h=Math.pow(1-u,3),f=3*u*Math.pow(1-u,2),p=3*Math.pow(u,2)*(1-u),d=Math.pow(u,3),g=h*a.y0+f*a.y0+p*a.y1+d*a.y1,v=g-a.width/2,m=g+a.width/2;v>o.y0&&v<o.y1?(c=o.y1-v+10,c=\"bottom\"==o.circularLinkType?c:-c,o=V(o,c,e,r),t.nodes.forEach(function(t){b(t,n)!=b(o,n)&&t.column==o.column&&j(o,t)&&V(t,c,e,r)})):m>o.y0&&m<o.y1?(c=m-o.y0+10,o=V(o,c,e,r),t.nodes.forEach(function(t){b(t,n)!=b(o,n)&&t.column==o.column&&t.y0<o.y1&&t.y1>o.y1&&V(t,c,e,r)})):v<o.y0&&m>o.y1&&(c=m-o.y0+10,o=V(o,c,e,r),t.nodes.forEach(function(t){b(t,n)!=b(o,n)&&t.column==o.column&&t.y0<o.y1&&t.y1>o.y1&&V(t,c,e,r)}))}})}})}function j(t,e){return t.y0>e.y0&&t.y0<e.y1||(t.y1>e.y0&&t.y1<e.y1||t.y0<e.y0&&t.y1>e.y1)}function V(t,e,r,n){return t.y0+e>=r&&t.y1+e<=n&&(t.y0=t.y0+e,t.y1=t.y1+e,t.targetLinks.forEach(function(t){t.y1=t.y1+e}),t.sourceLinks.forEach(function(t){t.y0=t.y0+e})),t}function U(t,e,r,n){t.nodes.forEach(function(a){n&&a.y+(a.y1-a.y0)>e&&(a.y=a.y-(a.y+(a.y1-a.y0)-e));var i=t.links.filter(function(t){return b(t.source,r)==b(a,r)}),o=i.length;o>1&&i.sort(function(t,e){if(!t.circular&&!e.circular){if(t.target.column==e.target.column)return t.y1-e.y1;if(!H(t,e))return t.y1-e.y1;if(t.target.column>e.target.column){var r=B(e,t);return t.y1-r}if(e.target.column>t.target.column)return B(t,e)-e.y1}return t.circular&&!e.circular?\"top\"==t.circularLinkType?-1:1:e.circular&&!t.circular?\"top\"==e.circularLinkType?1:-1:t.circular&&e.circular?t.circularLinkType===e.circularLinkType&&\"top\"==t.circularLinkType?t.target.column===e.target.column?t.target.y1-e.target.y1:e.target.column-t.target.column:t.circularLinkType===e.circularLinkType&&\"bottom\"==t.circularLinkType?t.target.column===e.target.column?e.target.y1-t.target.y1:t.target.column-e.target.column:\"top\"==t.circularLinkType?-1:1:void 0});var s=a.y0;i.forEach(function(t){t.y0=s+t.width/2,s+=t.width}),i.forEach(function(t,e){if(\"bottom\"==t.circularLinkType){for(var r=e+1,n=0;r<o;r++)n+=i[r].width;t.y0=a.y1-n-t.width/2}})})}function q(t,e,r){t.nodes.forEach(function(e){var n=t.links.filter(function(t){return b(t.target,r)==b(e,r)}),a=n.length;a>1&&n.sort(function(t,e){if(!t.circular&&!e.circular){if(t.source.column==e.source.column)return t.y0-e.y0;if(!H(t,e))return t.y0-e.y0;if(e.source.column<t.source.column){var r=F(e,t);return t.y0-r}if(t.source.column<e.source.column)return F(t,e)-e.y0}return t.circular&&!e.circular?\"top\"==t.circularLinkType?-1:1:e.circular&&!t.circular?\"top\"==e.circularLinkType?1:-1:t.circular&&e.circular?t.circularLinkType===e.circularLinkType&&\"top\"==t.circularLinkType?t.source.column===e.source.column?t.source.y1-e.source.y1:t.source.column-e.source.column:t.circularLinkType===e.circularLinkType&&\"bottom\"==t.circularLinkType?t.source.column===e.source.column?t.source.y1-e.source.y1:e.source.column-t.source.column:\"top\"==t.circularLinkType?-1:1:void 0});var i=e.y0;n.forEach(function(t){t.y1=i+t.width/2,i+=t.width}),n.forEach(function(t,r){if(\"bottom\"==t.circularLinkType){for(var i=r+1,o=0;i<a;i++)o+=n[i].width;t.y1=e.y1-o-t.width/2}})})}function H(t,e){return G(t)==G(e)}function G(t){return t.y0-t.y1>0?\"up\":\"down\"}function Y(t,e){return b(t.source,e)==b(t.target,e)}t.sankeyCircular=function(){var t,n,i=0,b=0,A=1,S=1,E=24,L=v,P=o,O=m,I=y,z=32,D=2,R=null;function F(){var o={nodes:O.apply(null,arguments),links:I.apply(null,arguments)};!function(t){t.nodes.forEach(function(t,e){t.index=e,t.sourceLinks=[],t.targetLinks=[]});var e=r.map(t.nodes,L);t.links.forEach(function(t,r){t.index=r;var n=t.source,a=t.target;\"object\"!==(\"undefined\"==typeof n?\"undefined\":l(n))&&(n=t.source=x(e,n)),\"object\"!==(\"undefined\"==typeof a?\"undefined\":l(a))&&(a=t.target=x(e,a)),n.sourceLinks.push(t),a.targetLinks.push(t)})}(o),function(t,e,r){var n=0;if(null===r){for(var i=[],o=0;o<t.links.length;o++){var s=t.links[o],l=s.source.index,c=s.target.index;i[l]||(i[l]=[]),i[c]||(i[c]=[]),-1===i[l].indexOf(c)&&i[l].push(c)}var u=a(i);u.sort(function(t,e){return t.length-e.length});var h={};for(o=0;o<u.length;o++){var f=u[o],p=f.slice(-2);h[p[0]]||(h[p[0]]={}),h[p[0]][p[1]]=!0}t.links.forEach(function(t){var e=t.target.index,r=t.source.index;e===r||h[r]&&h[r][e]?(t.circular=!0,t.circularLinkID=n,n+=1):t.circular=!1})}else t.links.forEach(function(t){t.source[r]<t.target[r]?t.circular=!1:(t.circular=!0,t.circularLinkID=n,n+=1)})}(o,0,R),function(t){t.nodes.forEach(function(t){t.partOfCycle=!1,t.value=Math.max(e.sum(t.sourceLinks,f),e.sum(t.targetLinks,f)),t.sourceLinks.forEach(function(e){e.circular&&(t.partOfCycle=!0,t.circularLinkType=e.circularLinkType)}),t.targetLinks.forEach(function(e){e.circular&&(t.partOfCycle=!0,t.circularLinkType=e.circularLinkType)})})}(o),function(t){var e,r,n;for(e=t.nodes,r=[],n=0;e.length;++n,e=r,r=[])e.forEach(function(t){t.depth=n,t.sourceLinks.forEach(function(t){r.indexOf(t.target)<0&&!t.circular&&r.push(t.target)})});for(e=t.nodes,r=[],n=0;e.length;++n,e=r,r=[])e.forEach(function(t){t.height=n,t.targetLinks.forEach(function(t){r.indexOf(t.source)<0&&!t.circular&&r.push(t.source)})});t.nodes.forEach(function(t){t.column=Math.floor(P.call(null,t,n))})}(o),T(o,L),function(a,o,s){var l=r.nest().key(function(t){return t.column}).sortKeys(e.ascending).entries(a.nodes).map(function(t){return t.values});(function(r){if(n){var o=1/0;l.forEach(function(t){var e=S*n/(t.length+1);o=e<o?e:o}),t=o}var s=e.min(l,function(r){return(S-b-(r.length-1)*t)/e.sum(r,f)});s*=k,a.links.forEach(function(t){t.width=t.value*s});var c=function(t){var r=0,n=0,a=0,i=0,o=e.max(t.nodes,function(t){return t.column});return t.links.forEach(function(t){t.circular&&(\"top\"==t.circularLinkType?r+=t.width:n+=t.width,0==t.target.column&&(i+=t.width),t.source.column==o&&(a+=t.width))}),{top:r=r>0?r+_+w:r,bottom:n=n>0?n+_+w:n,left:i=i>0?i+_+w:i,right:a=a>0?a+_+w:a}}(a),u=function(t,r){var n=e.max(t.nodes,function(t){return t.column}),a=A-i,o=S-b,s=a+r.right+r.left,l=o+r.top+r.bottom,c=a/s,u=o/l;return i=i*c+r.left,A=0==r.right?A:A*c,b=b*u+r.top,S*=u,t.nodes.forEach(function(t){t.x0=i+t.column*((A-i-E)/n),t.x1=t.x0+E}),u}(a,c);s*=u,a.links.forEach(function(t){t.width=t.value*s}),l.forEach(function(t){var e=t.length;t.forEach(function(t,n){t.depth==l.length-1&&1==e?(t.y0=S/2-t.value*s,t.y1=t.y0+t.value*s):0==t.depth&&1==e?(t.y0=S/2-t.value*s,t.y1=t.y0+t.value*s):t.partOfCycle?0==M(t,r)?(t.y0=S/2+n,t.y1=t.y0+t.value*s):\"top\"==t.circularLinkType?(t.y0=b+n,t.y1=t.y0+t.value*s):(t.y0=S-t.value*s-n,t.y1=t.y0+t.value*s):0==c.top||0==c.bottom?(t.y0=(S-b)/e*n,t.y1=t.y0+t.value*s):(t.y0=(S-b)/2-e/2+n,t.y1=t.y0+t.value*s)})})})(s),m();for(var c=1,u=o;u>0;--u)v(c*=.99,s),m();function v(t,r){var n=l.length;l.forEach(function(a){var i=a.length,o=a[0].depth;a.forEach(function(a){var s;if(a.sourceLinks.length||a.targetLinks.length)if(a.partOfCycle&&M(a,r)>0);else if(0==o&&1==i)s=a.y1-a.y0,a.y0=S/2-s/2,a.y1=S/2+s/2;else if(o==n-1&&1==i)s=a.y1-a.y0,a.y0=S/2-s/2,a.y1=S/2+s/2;else{var l=e.mean(a.sourceLinks,g),c=e.mean(a.targetLinks,d),u=((l&&c?(l+c)/2:l||c)-p(a))*t;a.y0+=u,a.y1+=u}})})}function m(){l.forEach(function(e){var r,n,a,i=b,o=e.length;for(e.sort(h),a=0;a<o;++a)r=e[a],(n=i-r.y0)>0&&(r.y0+=n,r.y1+=n),i=r.y1+t;if((n=i-t-S)>0)for(i=r.y0-=n,r.y1-=n,a=o-2;a>=0;--a)r=e[a],(n=r.y1+t-i)>0&&(r.y0-=n,r.y1-=n),i=r.y0})}}(o,z,L),B(o);for(var s=0;s<4;s++)U(o,S,L),q(o,0,L),N(o,b,S,L),U(o,S,L),q(o,0,L);return function(t,r,n){var a=t.nodes,i=t.links,o=!1,s=!1;if(i.forEach(function(t){\"top\"==t.circularLinkType?o=!0:\"bottom\"==t.circularLinkType&&(s=!0)}),0==o||0==s){var l=e.min(a,function(t){return t.y0}),c=e.max(a,function(t){return t.y1}),u=c-l,h=n-r,f=h/u;a.forEach(function(t){var e=(t.y1-t.y0)*f;t.y0=(t.y0-l)*f,t.y1=t.y0+e}),i.forEach(function(t){t.y0=(t.y0-l)*f,t.y1=(t.y1-l)*f,t.width=t.width*f})}}(o,b,S),C(o,D,S,L),o}function B(t){t.nodes.forEach(function(t){t.sourceLinks.sort(u),t.targetLinks.sort(c)}),t.nodes.forEach(function(t){var e=t.y0,r=e,n=t.y1,a=n;t.sourceLinks.forEach(function(t){t.circular?(t.y0=n-t.width/2,n-=t.width):(t.y0=e+t.width/2,e+=t.width)}),t.targetLinks.forEach(function(t){t.circular?(t.y1=a-t.width/2,a-=t.width):(t.y1=r+t.width/2,r+=t.width)})})}return F.nodeId=function(t){return arguments.length?(L=\"function\"==typeof t?t:s(t),F):L},F.nodeAlign=function(t){return arguments.length?(P=\"function\"==typeof t?t:s(t),F):P},F.nodeWidth=function(t){return arguments.length?(E=+t,F):E},F.nodePadding=function(e){return arguments.length?(t=+e,F):t},F.nodes=function(t){return arguments.length?(O=\"function\"==typeof t?t:s(t),F):O},F.links=function(t){return arguments.length?(I=\"function\"==typeof t?t:s(t),F):I},F.size=function(t){return arguments.length?(i=b=0,A=+t[0],S=+t[1],F):[A-i,S-b]},F.extent=function(t){return arguments.length?(i=+t[0][0],A=+t[1][0],b=+t[0][1],S=+t[1][1],F):[[i,b],[A,S]]},F.iterations=function(t){return arguments.length?(z=+t,F):z},F.circularLinkGap=function(t){return arguments.length?(D=+t,F):D},F.nodePaddingRatio=function(t){return arguments.length?(n=+t,F):n},F.sortNodes=function(t){return arguments.length?(R=t,F):R},F.update=function(t){return T(t,L),B(t),t.links.forEach(function(t){t.circular&&(t.circularLinkType=t.y0+t.y1<S?\"top\":\"bottom\",t.source.circularLinkType=t.circularLinkType,t.target.circularLinkType=t.circularLinkType)}),U(t,S,L,!1),q(t,0,L),C(t,D,S,L),t},F},t.sankeyCenter=function(t){return t.targetLinks.length?t.depth:t.sourceLinks.length?e.min(t.sourceLinks,i)-1:0},t.sankeyLeft=function(t){return t.depth},t.sankeyRight=function(t,e){return e-1-t.height},t.sankeyJustify=o,Object.defineProperty(t,\"__esModule\",{value:!0})},\"object\"==typeof r&&\"undefined\"!=typeof e?a(r,t(\"d3-array\"),t(\"d3-collection\"),t(\"d3-shape\"),t(\"elementary-circuits-directed-graph\")):a(n.d3=n.d3||{},n.d3,n.d3,n.d3,null)},{\"d3-array\":153,\"d3-collection\":154,\"d3-shape\":162,\"elementary-circuits-directed-graph\":173}],55:[function(t,e,r){var n,a;n=this,a=function(t,e,r,n){\"use strict\";function a(t){return t.target.depth}function i(t,e){return t.sourceLinks.length?t.depth:e-1}function o(t){return function(){return t}}function s(t,e){return c(t.source,e.source)||t.index-e.index}function l(t,e){return c(t.target,e.target)||t.index-e.index}function c(t,e){return t.y0-e.y0}function u(t){return t.value}function h(t){return(t.y0+t.y1)/2}function f(t){return h(t.source)*t.value}function p(t){return h(t.target)*t.value}function d(t){return t.index}function g(t){return t.nodes}function v(t){return t.links}function m(t,e){var r=t.get(e);if(!r)throw new Error(\"missing: \"+e);return r}function y(t){return[t.source.x1,t.y0]}function x(t){return[t.target.x0,t.y1]}t.sankey=function(){var t=0,n=0,a=1,y=1,x=24,b=8,_=d,w=i,k=g,T=v,A=32,M=2/3;function S(){var i={nodes:k.apply(null,arguments),links:T.apply(null,arguments)};return function(t){t.nodes.forEach(function(t,e){t.index=e,t.sourceLinks=[],t.targetLinks=[]});var e=r.map(t.nodes,_);t.links.forEach(function(t,r){t.index=r;var n=t.source,a=t.target;\"object\"!=typeof n&&(n=t.source=m(e,n)),\"object\"!=typeof a&&(a=t.target=m(e,a)),n.sourceLinks.push(t),a.targetLinks.push(t)})}(i),function(t){t.nodes.forEach(function(t){t.value=Math.max(e.sum(t.sourceLinks,u),e.sum(t.targetLinks,u))})}(i),function(e){var r,n,i;for(r=e.nodes,n=[],i=0;r.length;++i,r=n,n=[])r.forEach(function(t){t.depth=i,t.sourceLinks.forEach(function(t){n.indexOf(t.target)<0&&n.push(t.target)})});for(r=e.nodes,n=[],i=0;r.length;++i,r=n,n=[])r.forEach(function(t){t.height=i,t.targetLinks.forEach(function(t){n.indexOf(t.source)<0&&n.push(t.source)})});var o=(a-t-x)/(i-1);e.nodes.forEach(function(e){e.x1=(e.x0=t+Math.max(0,Math.min(i-1,Math.floor(w.call(null,e,i))))*o)+x})}(i),function(t){var a=r.nest().key(function(t){return t.x0}).sortKeys(e.ascending).entries(t.nodes).map(function(t){return t.values});(function(){var r=e.max(a,function(t){return t.length}),i=M*(y-n)/(r-1);b>i&&(b=i);var o=e.min(a,function(t){return(y-n-(t.length-1)*b)/e.sum(t,u)});a.forEach(function(t){t.forEach(function(t,e){t.y1=(t.y0=e)+t.value*o})}),t.links.forEach(function(t){t.width=t.value*o})})(),d();for(var i=1,o=A;o>0;--o)l(i*=.99),d(),s(i),d();function s(t){a.forEach(function(r){r.forEach(function(r){if(r.targetLinks.length){var n=(e.sum(r.targetLinks,f)/e.sum(r.targetLinks,u)-h(r))*t;r.y0+=n,r.y1+=n}})})}function l(t){a.slice().reverse().forEach(function(r){r.forEach(function(r){if(r.sourceLinks.length){var n=(e.sum(r.sourceLinks,p)/e.sum(r.sourceLinks,u)-h(r))*t;r.y0+=n,r.y1+=n}})})}function d(){a.forEach(function(t){var e,r,a,i=n,o=t.length;for(t.sort(c),a=0;a<o;++a)e=t[a],(r=i-e.y0)>0&&(e.y0+=r,e.y1+=r),i=e.y1+b;if((r=i-b-y)>0)for(i=e.y0-=r,e.y1-=r,a=o-2;a>=0;--a)e=t[a],(r=e.y1+b-i)>0&&(e.y0-=r,e.y1-=r),i=e.y0})}}(i),E(i),i}function E(t){t.nodes.forEach(function(t){t.sourceLinks.sort(l),t.targetLinks.sort(s)}),t.nodes.forEach(function(t){var e=t.y0,r=e;t.sourceLinks.forEach(function(t){t.y0=e+t.width/2,e+=t.width}),t.targetLinks.forEach(function(t){t.y1=r+t.width/2,r+=t.width})})}return S.update=function(t){return E(t),t},S.nodeId=function(t){return arguments.length?(_=\"function\"==typeof t?t:o(t),S):_},S.nodeAlign=function(t){return arguments.length?(w=\"function\"==typeof t?t:o(t),S):w},S.nodeWidth=function(t){return arguments.length?(x=+t,S):x},S.nodePadding=function(t){return arguments.length?(b=+t,S):b},S.nodes=function(t){return arguments.length?(k=\"function\"==typeof t?t:o(t),S):k},S.links=function(t){return arguments.length?(T=\"function\"==typeof t?t:o(t),S):T},S.size=function(e){return arguments.length?(t=n=0,a=+e[0],y=+e[1],S):[a-t,y-n]},S.extent=function(e){return arguments.length?(t=+e[0][0],a=+e[1][0],n=+e[0][1],y=+e[1][1],S):[[t,n],[a,y]]},S.iterations=function(t){return arguments.length?(A=+t,S):A},S},t.sankeyCenter=function(t){return t.targetLinks.length?t.depth:t.sourceLinks.length?e.min(t.sourceLinks,a)-1:0},t.sankeyLeft=function(t){return t.depth},t.sankeyRight=function(t,e){return e-1-t.height},t.sankeyJustify=i,t.sankeyLinkHorizontal=function(){return n.linkHorizontal().source(y).target(x)},Object.defineProperty(t,\"__esModule\",{value:!0})},\"object\"==typeof r&&\"undefined\"!=typeof e?a(r,t(\"d3-array\"),t(\"d3-collection\"),t(\"d3-shape\")):a(n.d3=n.d3||{},n.d3,n.d3,n.d3)},{\"d3-array\":153,\"d3-collection\":154,\"d3-shape\":162}],56:[function(t,e,r){\"use strict\";Object.defineProperty(r,\"__esModule\",{value:!0});var n=t(\"@turf/meta\"),a=6378137;function i(t){var e=0;if(t&&t.length>0){e+=Math.abs(o(t[0]));for(var r=1;r<t.length;r++)e-=Math.abs(o(t[r]))}return e}function o(t){var e,r,n,i,o,l,c=0,u=t.length;if(u>2){for(l=0;l<u;l++)l===u-2?(n=u-2,i=u-1,o=0):l===u-1?(n=u-1,i=0,o=1):(n=l,i=l+1,o=l+2),e=t[n],r=t[i],c+=(s(t[o][0])-s(e[0]))*Math.sin(s(r[1]));c=c*a*a/2}return c}function s(t){return t*Math.PI/180}r.default=function(t){return n.geomReduce(t,function(t,e){return t+function(t){var e,r=0;switch(t.type){case\"Polygon\":return i(t.coordinates);case\"MultiPolygon\":for(e=0;e<t.coordinates.length;e++)r+=i(t.coordinates[e]);return r;case\"Point\":case\"MultiPoint\":case\"LineString\":case\"MultiLineString\":return 0}return 0}(e)},0)}},{\"@turf/meta\":59}],57:[function(t,e,r){\"use strict\";Object.defineProperty(r,\"__esModule\",{value:!0});var n=t(\"@turf/meta\"),a=t(\"@turf/helpers\");r.default=function(t,e){void 0===e&&(e={});var r=0,i=0,o=0;return n.coordEach(t,function(t){r+=t[0],i+=t[1],o++}),a.point([r/o,i/o],e.properties)}},{\"@turf/helpers\":58,\"@turf/meta\":59}],58:[function(t,e,r){\"use strict\";function n(t,e,r){void 0===r&&(r={});var n={type:\"Feature\"};return(0===r.id||r.id)&&(n.id=r.id),r.bbox&&(n.bbox=r.bbox),n.properties=e||{},n.geometry=t,n}function a(t,e,r){return void 0===r&&(r={}),n({type:\"Point\",coordinates:t},e,r)}function i(t,e,r){void 0===r&&(r={});for(var a=0,i=t;a<i.length;a++){var o=i[a];if(o.length<4)throw new Error(\"Each LinearRing of a Polygon must have 4 or more Positions.\");for(var s=0;s<o[o.length-1].length;s++)if(o[o.length-1][s]!==o[0][s])throw new Error(\"First and last Position are not equivalent.\")}return n({type:\"Polygon\",coordinates:t},e,r)}function o(t,e,r){if(void 0===r&&(r={}),t.length<2)throw new Error(\"coordinates must be an array of two or more positions\");return n({type:\"LineString\",coordinates:t},e,r)}function s(t,e){void 0===e&&(e={});var r={type:\"FeatureCollection\"};return e.id&&(r.id=e.id),e.bbox&&(r.bbox=e.bbox),r.features=t,r}function l(t,e,r){return void 0===r&&(r={}),n({type:\"MultiLineString\",coordinates:t},e,r)}function c(t,e,r){return void 0===r&&(r={}),n({type:\"MultiPoint\",coordinates:t},e,r)}function u(t,e,r){return void 0===r&&(r={}),n({type:\"MultiPolygon\",coordinates:t},e,r)}function h(t,e){void 0===e&&(e=\"kilometers\");var n=r.factors[e];if(!n)throw new Error(e+\" units is invalid\");return t*n}function f(t,e){void 0===e&&(e=\"kilometers\");var n=r.factors[e];if(!n)throw new Error(e+\" units is invalid\");return t/n}function p(t){return 180*(t%(2*Math.PI))/Math.PI}function d(t){return!isNaN(t)&&null!==t&&!Array.isArray(t)&&!/^\\s*$/.test(t)}Object.defineProperty(r,\"__esModule\",{value:!0}),r.earthRadius=6371008.8,r.factors={centimeters:100*r.earthRadius,centimetres:100*r.earthRadius,degrees:r.earthRadius/111325,feet:3.28084*r.earthRadius,inches:39.37*r.earthRadius,kilometers:r.earthRadius/1e3,kilometres:r.earthRadius/1e3,meters:r.earthRadius,metres:r.earthRadius,miles:r.earthRadius/1609.344,millimeters:1e3*r.earthRadius,millimetres:1e3*r.earthRadius,nauticalmiles:r.earthRadius/1852,radians:1,yards:r.earthRadius/1.0936},r.unitsFactors={centimeters:100,centimetres:100,degrees:1/111325,feet:3.28084,inches:39.37,kilometers:.001,kilometres:.001,meters:1,metres:1,miles:1/1609.344,millimeters:1e3,millimetres:1e3,nauticalmiles:1/1852,radians:1/r.earthRadius,yards:1/1.0936},r.areaFactors={acres:247105e-9,centimeters:1e4,centimetres:1e4,feet:10.763910417,inches:1550.003100006,kilometers:1e-6,kilometres:1e-6,meters:1,metres:1,miles:3.86e-7,millimeters:1e6,millimetres:1e6,yards:1.195990046},r.feature=n,r.geometry=function(t,e,r){switch(void 0===r&&(r={}),t){case\"Point\":return a(e).geometry;case\"LineString\":return o(e).geometry;case\"Polygon\":return i(e).geometry;case\"MultiPoint\":return c(e).geometry;case\"MultiLineString\":return l(e).geometry;case\"MultiPolygon\":return u(e).geometry;default:throw new Error(t+\" is invalid\")}},r.point=a,r.points=function(t,e,r){return void 0===r&&(r={}),s(t.map(function(t){return a(t,e)}),r)},r.polygon=i,r.polygons=function(t,e,r){return void 0===r&&(r={}),s(t.map(function(t){return i(t,e)}),r)},r.lineString=o,r.lineStrings=function(t,e,r){return void 0===r&&(r={}),s(t.map(function(t){return o(t,e)}),r)},r.featureCollection=s,r.multiLineString=l,r.multiPoint=c,r.multiPolygon=u,r.geometryCollection=function(t,e,r){return void 0===r&&(r={}),n({type:\"GeometryCollection\",geometries:t},e,r)},r.round=function(t,e){if(void 0===e&&(e=0),e&&!(e>=0))throw new Error(\"precision must be a positive number\");var r=Math.pow(10,e||0);return Math.round(t*r)/r},r.radiansToLength=h,r.lengthToRadians=f,r.lengthToDegrees=function(t,e){return p(f(t,e))},r.bearingToAzimuth=function(t){var e=t%360;return e<0&&(e+=360),e},r.radiansToDegrees=p,r.degreesToRadians=function(t){return t%360*Math.PI/180},r.convertLength=function(t,e,r){if(void 0===e&&(e=\"kilometers\"),void 0===r&&(r=\"kilometers\"),!(t>=0))throw new Error(\"length must be a positive number\");return h(f(t,e),r)},r.convertArea=function(t,e,n){if(void 0===e&&(e=\"meters\"),void 0===n&&(n=\"kilometers\"),!(t>=0))throw new Error(\"area must be a positive number\");var a=r.areaFactors[e];if(!a)throw new Error(\"invalid original units\");var i=r.areaFactors[n];if(!i)throw new Error(\"invalid final units\");return t/a*i},r.isNumber=d,r.isObject=function(t){return!!t&&t.constructor===Object},r.validateBBox=function(t){if(!t)throw new Error(\"bbox is required\");if(!Array.isArray(t))throw new Error(\"bbox must be an Array\");if(4!==t.length&&6!==t.length)throw new Error(\"bbox must be an Array of 4 or 6 numbers\");t.forEach(function(t){if(!d(t))throw new Error(\"bbox must only contain numbers\")})},r.validateId=function(t){if(!t)throw new Error(\"id is required\");if(-1===[\"string\",\"number\"].indexOf(typeof t))throw new Error(\"id must be a number or a string\")},r.radians2degrees=function(){throw new Error(\"method has been renamed to `radiansToDegrees`\")},r.degrees2radians=function(){throw new Error(\"method has been renamed to `degreesToRadians`\")},r.distanceToDegrees=function(){throw new Error(\"method has been renamed to `lengthToDegrees`\")},r.distanceToRadians=function(){throw new Error(\"method has been renamed to `lengthToRadians`\")},r.radiansToDistance=function(){throw new Error(\"method has been renamed to `radiansToLength`\")},r.bearingToAngle=function(){throw new Error(\"method has been renamed to `bearingToAzimuth`\")},r.convertDistance=function(){throw new Error(\"method has been renamed to `convertLength`\")}},{}],59:[function(t,e,r){\"use strict\";Object.defineProperty(r,\"__esModule\",{value:!0});var n=t(\"@turf/helpers\");function a(t,e,r){if(null!==t)for(var n,i,o,s,l,c,u,h,f=0,p=0,d=t.type,g=\"FeatureCollection\"===d,v=\"Feature\"===d,m=g?t.features.length:1,y=0;y<m;y++){l=(h=!!(u=g?t.features[y].geometry:v?t.geometry:t)&&\"GeometryCollection\"===u.type)?u.geometries.length:1;for(var x=0;x<l;x++){var b=0,_=0;if(null!==(s=h?u.geometries[x]:u)){c=s.coordinates;var w=s.type;switch(f=!r||\"Polygon\"!==w&&\"MultiPolygon\"!==w?0:1,w){case null:break;case\"Point\":if(!1===e(c,p,y,b,_))return!1;p++,b++;break;case\"LineString\":case\"MultiPoint\":for(n=0;n<c.length;n++){if(!1===e(c[n],p,y,b,_))return!1;p++,\"MultiPoint\"===w&&b++}\"LineString\"===w&&b++;break;case\"Polygon\":case\"MultiLineString\":for(n=0;n<c.length;n++){for(i=0;i<c[n].length-f;i++){if(!1===e(c[n][i],p,y,b,_))return!1;p++}\"MultiLineString\"===w&&b++,\"Polygon\"===w&&_++}\"Polygon\"===w&&b++;break;case\"MultiPolygon\":for(n=0;n<c.length;n++){for(_=0,i=0;i<c[n].length;i++){for(o=0;o<c[n][i].length-f;o++){if(!1===e(c[n][i][o],p,y,b,_))return!1;p++}_++}b++}break;case\"GeometryCollection\":for(n=0;n<s.geometries.length;n++)if(!1===a(s.geometries[n],e,r))return!1;break;default:throw new Error(\"Unknown Geometry Type\")}}}}}function i(t,e){var r;switch(t.type){case\"FeatureCollection\":for(r=0;r<t.features.length&&!1!==e(t.features[r].properties,r);r++);break;case\"Feature\":e(t.properties,0)}}function o(t,e){if(\"Feature\"===t.type)e(t,0);else if(\"FeatureCollection\"===t.type)for(var r=0;r<t.features.length&&!1!==e(t.features[r],r);r++);}function s(t,e){var r,n,a,i,o,s,l,c,u,h,f=0,p=\"FeatureCollection\"===t.type,d=\"Feature\"===t.type,g=p?t.features.length:1;for(r=0;r<g;r++){for(s=p?t.features[r].geometry:d?t.geometry:t,c=p?t.features[r].properties:d?t.properties:{},u=p?t.features[r].bbox:d?t.bbox:void 0,h=p?t.features[r].id:d?t.id:void 0,o=(l=!!s&&\"GeometryCollection\"===s.type)?s.geometries.length:1,a=0;a<o;a++)if(null!==(i=l?s.geometries[a]:s))switch(i.type){case\"Point\":case\"LineString\":case\"MultiPoint\":case\"Polygon\":case\"MultiLineString\":case\"MultiPolygon\":if(!1===e(i,f,c,u,h))return!1;break;case\"GeometryCollection\":for(n=0;n<i.geometries.length;n++)if(!1===e(i.geometries[n],f,c,u,h))return!1;break;default:throw new Error(\"Unknown Geometry Type\")}else if(!1===e(null,f,c,u,h))return!1;f++}}function l(t,e){s(t,function(t,r,a,i,o){var s,l=null===t?null:t.type;switch(l){case null:case\"Point\":case\"LineString\":case\"Polygon\":return!1!==e(n.feature(t,a,{bbox:i,id:o}),r,0)&&void 0}switch(l){case\"MultiPoint\":s=\"Point\";break;case\"MultiLineString\":s=\"LineString\";break;case\"MultiPolygon\":s=\"Polygon\"}for(var c=0;c<t.coordinates.length;c++){var u={type:s,coordinates:t.coordinates[c]};if(!1===e(n.feature(u,a),r,c))return!1}})}function c(t,e){l(t,function(t,r,i){var o=0;if(t.geometry){var s=t.geometry.type;if(\"Point\"!==s&&\"MultiPoint\"!==s){var l,c=0,u=0,h=0;return!1!==a(t,function(a,s,f,p,d){if(void 0===l||r>c||p>u||d>h)return l=a,c=r,u=p,h=d,void(o=0);var g=n.lineString([l,a],t.properties);if(!1===e(g,r,i,d,o))return!1;o++,l=a})&&void 0}}})}function u(t,e){if(!t)throw new Error(\"geojson is required\");l(t,function(t,r,a){if(null!==t.geometry){var i=t.geometry.type,o=t.geometry.coordinates;switch(i){case\"LineString\":if(!1===e(t,r,a,0,0))return!1;break;case\"Polygon\":for(var s=0;s<o.length;s++)if(!1===e(n.lineString(o[s],t.properties),r,a,s))return!1}}})}r.coordEach=a,r.coordReduce=function(t,e,r,n){var i=r;return a(t,function(t,n,a,o,s){i=0===n&&void 0===r?t:e(i,t,n,a,o,s)},n),i},r.propEach=i,r.propReduce=function(t,e,r){var n=r;return i(t,function(t,a){n=0===a&&void 0===r?t:e(n,t,a)}),n},r.featureEach=o,r.featureReduce=function(t,e,r){var n=r;return o(t,function(t,a){n=0===a&&void 0===r?t:e(n,t,a)}),n},r.coordAll=function(t){var e=[];return a(t,function(t){e.push(t)}),e},r.geomEach=s,r.geomReduce=function(t,e,r){var n=r;return s(t,function(t,a,i,o,s){n=0===a&&void 0===r?t:e(n,t,a,i,o,s)}),n},r.flattenEach=l,r.flattenReduce=function(t,e,r){var n=r;return l(t,function(t,a,i){n=0===a&&0===i&&void 0===r?t:e(n,t,a,i)}),n},r.segmentEach=c,r.segmentReduce=function(t,e,r){var n=r,a=!1;return c(t,function(t,i,o,s,l){n=!1===a&&void 0===r?t:e(n,t,i,o,s,l),a=!0}),n},r.lineEach=u,r.lineReduce=function(t,e,r){var n=r;return u(t,function(t,a,i,o){n=0===a&&void 0===r?t:e(n,t,a,i,o)}),n},r.findSegment=function(t,e){if(e=e||{},!n.isObject(e))throw new Error(\"options is invalid\");var r,a=e.featureIndex||0,i=e.multiFeatureIndex||0,o=e.geometryIndex||0,s=e.segmentIndex||0,l=e.properties;switch(t.type){case\"FeatureCollection\":a<0&&(a=t.features.length+a),l=l||t.features[a].properties,r=t.features[a].geometry;break;case\"Feature\":l=l||t.properties,r=t.geometry;break;case\"Point\":case\"MultiPoint\":return null;case\"LineString\":case\"Polygon\":case\"MultiLineString\":case\"MultiPolygon\":r=t;break;default:throw new Error(\"geojson is invalid\")}if(null===r)return null;var c=r.coordinates;switch(r.type){case\"Point\":case\"MultiPoint\":return null;case\"LineString\":return s<0&&(s=c.length+s-1),n.lineString([c[s],c[s+1]],l,e);case\"Polygon\":return o<0&&(o=c.length+o),s<0&&(s=c[o].length+s-1),n.lineString([c[o][s],c[o][s+1]],l,e);case\"MultiLineString\":return i<0&&(i=c.length+i),s<0&&(s=c[i].length+s-1),n.lineString([c[i][s],c[i][s+1]],l,e);case\"MultiPolygon\":return i<0&&(i=c.length+i),o<0&&(o=c[i].length+o),s<0&&(s=c[i][o].length-s-1),n.lineString([c[i][o][s],c[i][o][s+1]],l,e)}throw new Error(\"geojson is invalid\")},r.findPoint=function(t,e){if(e=e||{},!n.isObject(e))throw new Error(\"options is invalid\");var r,a=e.featureIndex||0,i=e.multiFeatureIndex||0,o=e.geometryIndex||0,s=e.coordIndex||0,l=e.properties;switch(t.type){case\"FeatureCollection\":a<0&&(a=t.features.length+a),l=l||t.features[a].properties,r=t.features[a].geometry;break;case\"Feature\":l=l||t.properties,r=t.geometry;break;case\"Point\":case\"MultiPoint\":return null;case\"LineString\":case\"Polygon\":case\"MultiLineString\":case\"MultiPolygon\":r=t;break;default:throw new Error(\"geojson is invalid\")}if(null===r)return null;var c=r.coordinates;switch(r.type){case\"Point\":return n.point(c,l,e);case\"MultiPoint\":return i<0&&(i=c.length+i),n.point(c[i],l,e);case\"LineString\":return s<0&&(s=c.length+s),n.point(c[s],l,e);case\"Polygon\":return o<0&&(o=c.length+o),s<0&&(s=c[o].length+s),n.point(c[o][s],l,e);case\"MultiLineString\":return i<0&&(i=c.length+i),s<0&&(s=c[i].length+s),n.point(c[i][s],l,e);case\"MultiPolygon\":return i<0&&(i=c.length+i),o<0&&(o=c[i].length+o),s<0&&(s=c[i][o].length-s),n.point(c[i][o][s],l,e)}throw new Error(\"geojson is invalid\")}},{\"@turf/helpers\":58}],60:[function(t,e,r){\"use strict\";var n=\"undefined\"==typeof WeakMap?t(\"weak-map\"):WeakMap,a=t(\"gl-buffer\"),i=t(\"gl-vao\"),o=new n;e.exports=function(t){var e=o.get(t),r=e&&(e._triangleBuffer.handle||e._triangleBuffer.buffer);if(!r||!t.isBuffer(r)){var n=a(t,new Float32Array([-1,-1,-1,4,4,-1]));(e=i(t,[{buffer:n,type:t.FLOAT,size:2}]))._triangleBuffer=n,o.set(t,e)}e.bind(),t.drawArrays(t.TRIANGLES,0,3),e.unbind()}},{\"gl-buffer\":242,\"gl-vao\":328,\"weak-map\":553}],61:[function(t,e,r){e.exports=function(t){var e=0,r=0,n=0,a=0;return t.map(function(t){var i=(t=t.slice())[0],o=i.toUpperCase();if(i!=o)switch(t[0]=o,i){case\"a\":t[6]+=n,t[7]+=a;break;case\"v\":t[1]+=a;break;case\"h\":t[1]+=n;break;default:for(var s=1;s<t.length;)t[s++]+=n,t[s++]+=a}switch(o){case\"Z\":n=e,a=r;break;case\"H\":n=t[1];break;case\"V\":a=t[1];break;case\"M\":n=e=t[1],a=r=t[2];break;default:n=t[t.length-2],a=t[t.length-1]}return t})}},{}],62:[function(t,e,r){var n=t(\"pad-left\");e.exports=function(t,e,r){e=\"number\"==typeof e?e:1,r=r||\": \";var a=t.split(/\\r?\\n/),i=String(a.length+e-1).length;return a.map(function(t,a){var o=a+e,s=String(o).length,l=n(o,i-s);return l+r+t}).join(\"\\n\")}},{\"pad-left\":458}],63:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.length;if(0===e)return[];if(1===e)return[0];for(var r=t[0].length,n=[t[0]],i=[0],o=1;o<e;++o)if(n.push(t[o]),a(n,r)){if(i.push(o),i.length===r+1)return i}else n.pop();return i};var n=t(\"robust-orientation\");function a(t,e){for(var r=new Array(e+1),a=0;a<t.length;++a)r[a]=t[a];for(a=0;a<=t.length;++a){for(var i=t.length;i<=e;++i){for(var o=new Array(e),s=0;s<e;++s)o[s]=Math.pow(i+1-a,s);r[i]=o}if(n.apply(void 0,r))return!0}return!1}},{\"robust-orientation\":511}],64:[function(t,e,r){\"use strict\";e.exports=function(t,e){return n(e).filter(function(r){for(var n=new Array(r.length),i=0;i<r.length;++i)n[i]=e[r[i]];return a(n)*t<1})};var n=t(\"delaunay-triangulate\"),a=t(\"circumradius\")},{circumradius:115,\"delaunay-triangulate\":166}],65:[function(t,e,r){e.exports=function(t,e){return a(n(t,e))};var n=t(\"alpha-complex\"),a=t(\"simplicial-complex-boundary\")},{\"alpha-complex\":64,\"simplicial-complex-boundary\":518}],66:[function(t,e,r){\"use strict\";e.exports=function(t,e){if(!t||null==t.length)throw Error(\"Argument should be an array\");e=null==e?1:Math.floor(e);for(var r=Array(2*e),n=0;n<e;n++){for(var a=-1/0,i=1/0,o=n,s=t.length;o<s;o+=e)t[o]>a&&(a=t[o]),t[o]<i&&(i=t[o]);r[n]=i,r[e+n]=a}return r}},{}],67:[function(t,e,r){\"use strict\";var n=t(\"array-bounds\");e.exports=function(t,e,r){if(!t||null==t.length)throw Error(\"Argument should be an array\");null==e&&(e=1);null==r&&(r=n(t,e));for(var a=0;a<e;a++){var i=r[e+a],o=r[a],s=a,l=t.length;if(i===1/0&&o===-1/0)for(s=a;s<l;s+=e)t[s]=t[s]===i?1:t[s]===o?0:.5;else if(i===1/0)for(s=a;s<l;s+=e)t[s]=t[s]===i?1:0;else if(o===-1/0)for(s=a;s<l;s+=e)t[s]=t[s]===o?0:1;else{var c=i-o;for(s=a;s<l;s+=e)t[s]=0===c?.5:(t[s]-o)/c}}return t}},{\"array-bounds\":66}],68:[function(t,e,r){e.exports=function(t,e){var r=\"number\"==typeof t,n=\"number\"==typeof e;r&&!n?(e=t,t=0):r||n||(t=0,e=0);var a=(e|=0)-(t|=0);if(a<0)throw new Error(\"array length must be positive\");for(var i=new Array(a),o=0,s=t;o<a;o++,s++)i[o]=s;return i}},{}],69:[function(t,e,r){(function(r){\"use strict\";var n=t(\"object-assign\");function a(t,e){if(t===e)return 0;for(var r=t.length,n=e.length,a=0,i=Math.min(r,n);a<i;++a)if(t[a]!==e[a]){r=t[a],n=e[a];break}return r<n?-1:n<r?1:0}function i(t){return r.Buffer&&\"function\"==typeof r.Buffer.isBuffer?r.Buffer.isBuffer(t):!(null==t||!t._isBuffer)}var o=t(\"util/\"),s=Object.prototype.hasOwnProperty,l=Array.prototype.slice,c=\"foo\"===function(){}.name;function u(t){return Object.prototype.toString.call(t)}function h(t){return!i(t)&&(\"function\"==typeof r.ArrayBuffer&&(\"function\"==typeof ArrayBuffer.isView?ArrayBuffer.isView(t):!!t&&(t instanceof DataView||!!(t.buffer&&t.buffer instanceof ArrayBuffer))))}var f=e.exports=y,p=/\\s*function\\s+([^\\(\\s]*)\\s*/;function d(t){if(o.isFunction(t)){if(c)return t.name;var e=t.toString().match(p);return e&&e[1]}}function g(t,e){return\"string\"==typeof t?t.length<e?t:t.slice(0,e):t}function v(t){if(c||!o.isFunction(t))return o.inspect(t);var e=d(t);return\"[Function\"+(e?\": \"+e:\"\")+\"]\"}function m(t,e,r,n,a){throw new f.AssertionError({message:r,actual:t,expected:e,operator:n,stackStartFunction:a})}function y(t,e){t||m(t,!0,e,\"==\",f.ok)}function x(t,e,r,n){if(t===e)return!0;if(i(t)&&i(e))return 0===a(t,e);if(o.isDate(t)&&o.isDate(e))return t.getTime()===e.getTime();if(o.isRegExp(t)&&o.isRegExp(e))return t.source===e.source&&t.global===e.global&&t.multiline===e.multiline&&t.lastIndex===e.lastIndex&&t.ignoreCase===e.ignoreCase;if(null!==t&&\"object\"==typeof t||null!==e&&\"object\"==typeof e){if(h(t)&&h(e)&&u(t)===u(e)&&!(t instanceof Float32Array||t instanceof Float64Array))return 0===a(new Uint8Array(t.buffer),new Uint8Array(e.buffer));if(i(t)!==i(e))return!1;var s=(n=n||{actual:[],expected:[]}).actual.indexOf(t);return-1!==s&&s===n.expected.indexOf(e)||(n.actual.push(t),n.expected.push(e),function(t,e,r,n){if(null==t||null==e)return!1;if(o.isPrimitive(t)||o.isPrimitive(e))return t===e;if(r&&Object.getPrototypeOf(t)!==Object.getPrototypeOf(e))return!1;var a=b(t),i=b(e);if(a&&!i||!a&&i)return!1;if(a)return t=l.call(t),e=l.call(e),x(t,e,r);var s,c,u=k(t),h=k(e);if(u.length!==h.length)return!1;for(u.sort(),h.sort(),c=u.length-1;c>=0;c--)if(u[c]!==h[c])return!1;for(c=u.length-1;c>=0;c--)if(s=u[c],!x(t[s],e[s],r,n))return!1;return!0}(t,e,r,n))}return r?t===e:t==e}function b(t){return\"[object Arguments]\"==Object.prototype.toString.call(t)}function _(t,e){if(!t||!e)return!1;if(\"[object RegExp]\"==Object.prototype.toString.call(e))return e.test(t);try{if(t instanceof e)return!0}catch(t){}return!Error.isPrototypeOf(e)&&!0===e.call({},t)}function w(t,e,r,n){var a;if(\"function\"!=typeof e)throw new TypeError('\"block\" argument must be a function');\"string\"==typeof r&&(n=r,r=null),a=function(t){var e;try{t()}catch(t){e=t}return e}(e),n=(r&&r.name?\" (\"+r.name+\").\":\".\")+(n?\" \"+n:\".\"),t&&!a&&m(a,r,\"Missing expected exception\"+n);var i=\"string\"==typeof n,s=!t&&a&&!r;if((!t&&o.isError(a)&&i&&_(a,r)||s)&&m(a,r,\"Got unwanted exception\"+n),t&&a&&r&&!_(a,r)||!t&&a)throw a}f.AssertionError=function(t){var e;this.name=\"AssertionError\",this.actual=t.actual,this.expected=t.expected,this.operator=t.operator,t.message?(this.message=t.message,this.generatedMessage=!1):(this.message=g(v((e=this).actual),128)+\" \"+e.operator+\" \"+g(v(e.expected),128),this.generatedMessage=!0);var r=t.stackStartFunction||m;if(Error.captureStackTrace)Error.captureStackTrace(this,r);else{var n=new Error;if(n.stack){var a=n.stack,i=d(r),o=a.indexOf(\"\\n\"+i);if(o>=0){var s=a.indexOf(\"\\n\",o+1);a=a.substring(s+1)}this.stack=a}}},o.inherits(f.AssertionError,Error),f.fail=m,f.ok=y,f.equal=function(t,e,r){t!=e&&m(t,e,r,\"==\",f.equal)},f.notEqual=function(t,e,r){t==e&&m(t,e,r,\"!=\",f.notEqual)},f.deepEqual=function(t,e,r){x(t,e,!1)||m(t,e,r,\"deepEqual\",f.deepEqual)},f.deepStrictEqual=function(t,e,r){x(t,e,!0)||m(t,e,r,\"deepStrictEqual\",f.deepStrictEqual)},f.notDeepEqual=function(t,e,r){x(t,e,!1)&&m(t,e,r,\"notDeepEqual\",f.notDeepEqual)},f.notDeepStrictEqual=function t(e,r,n){x(e,r,!0)&&m(e,r,n,\"notDeepStrictEqual\",t)},f.strictEqual=function(t,e,r){t!==e&&m(t,e,r,\"===\",f.strictEqual)},f.notStrictEqual=function(t,e,r){t===e&&m(t,e,r,\"!==\",f.notStrictEqual)},f.throws=function(t,e,r){w(!0,t,e,r)},f.doesNotThrow=function(t,e,r){w(!1,t,e,r)},f.ifError=function(t){if(t)throw t},f.strict=n(function t(e,r){e||m(e,!0,r,\"==\",t)},f,{equal:f.strictEqual,deepEqual:f.deepStrictEqual,notEqual:f.notStrictEqual,notDeepEqual:f.notDeepStrictEqual}),f.strict.strict=f.strict;var k=Object.keys||function(t){var e=[];for(var r in t)s.call(t,r)&&e.push(r);return e}}).call(this,\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{\"object-assign\":455,\"util/\":72}],70:[function(t,e,r){\"function\"==typeof Object.create?e.exports=function(t,e){t.super_=e,t.prototype=Object.create(e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}})}:e.exports=function(t,e){t.super_=e;var r=function(){};r.prototype=e.prototype,t.prototype=new r,t.prototype.constructor=t}},{}],71:[function(t,e,r){e.exports=function(t){return t&&\"object\"==typeof t&&\"function\"==typeof t.copy&&\"function\"==typeof t.fill&&\"function\"==typeof t.readUInt8}},{}],72:[function(t,e,r){(function(e,n){var a=/%[sdj%]/g;r.format=function(t){if(!m(t)){for(var e=[],r=0;r<arguments.length;r++)e.push(s(arguments[r]));return e.join(\" \")}r=1;for(var n=arguments,i=n.length,o=String(t).replace(a,function(t){if(\"%%\"===t)return\"%\";if(r>=i)return t;switch(t){case\"%s\":return String(n[r++]);case\"%d\":return Number(n[r++]);case\"%j\":try{return JSON.stringify(n[r++])}catch(t){return\"[Circular]\"}default:return t}}),l=n[r];r<i;l=n[++r])g(l)||!b(l)?o+=\" \"+l:o+=\" \"+s(l);return o},r.deprecate=function(t,a){if(y(n.process))return function(){return r.deprecate(t,a).apply(this,arguments)};if(!0===e.noDeprecation)return t;var i=!1;return function(){if(!i){if(e.throwDeprecation)throw new Error(a);e.traceDeprecation?console.trace(a):console.error(a),i=!0}return t.apply(this,arguments)}};var i,o={};function s(t,e){var n={seen:[],stylize:c};return arguments.length>=3&&(n.depth=arguments[2]),arguments.length>=4&&(n.colors=arguments[3]),d(e)?n.showHidden=e:e&&r._extend(n,e),y(n.showHidden)&&(n.showHidden=!1),y(n.depth)&&(n.depth=2),y(n.colors)&&(n.colors=!1),y(n.customInspect)&&(n.customInspect=!0),n.colors&&(n.stylize=l),u(n,t,n.depth)}function l(t,e){var r=s.styles[e];return r?\"\\x1b[\"+s.colors[r][0]+\"m\"+t+\"\\x1b[\"+s.colors[r][1]+\"m\":t}function c(t,e){return t}function u(t,e,n){if(t.customInspect&&e&&k(e.inspect)&&e.inspect!==r.inspect&&(!e.constructor||e.constructor.prototype!==e)){var a=e.inspect(n,t);return m(a)||(a=u(t,a,n)),a}var i=function(t,e){if(y(e))return t.stylize(\"undefined\",\"undefined\");if(m(e)){var r=\"'\"+JSON.stringify(e).replace(/^\"|\"$/g,\"\").replace(/'/g,\"\\\\'\").replace(/\\\\\"/g,'\"')+\"'\";return t.stylize(r,\"string\")}if(v(e))return t.stylize(\"\"+e,\"number\");if(d(e))return t.stylize(\"\"+e,\"boolean\");if(g(e))return t.stylize(\"null\",\"null\")}(t,e);if(i)return i;var o=Object.keys(e),s=function(t){var e={};return t.forEach(function(t,r){e[t]=!0}),e}(o);if(t.showHidden&&(o=Object.getOwnPropertyNames(e)),w(e)&&(o.indexOf(\"message\")>=0||o.indexOf(\"description\")>=0))return h(e);if(0===o.length){if(k(e)){var l=e.name?\": \"+e.name:\"\";return t.stylize(\"[Function\"+l+\"]\",\"special\")}if(x(e))return t.stylize(RegExp.prototype.toString.call(e),\"regexp\");if(_(e))return t.stylize(Date.prototype.toString.call(e),\"date\");if(w(e))return h(e)}var c,b=\"\",T=!1,A=[\"{\",\"}\"];(p(e)&&(T=!0,A=[\"[\",\"]\"]),k(e))&&(b=\" [Function\"+(e.name?\": \"+e.name:\"\")+\"]\");return x(e)&&(b=\" \"+RegExp.prototype.toString.call(e)),_(e)&&(b=\" \"+Date.prototype.toUTCString.call(e)),w(e)&&(b=\" \"+h(e)),0!==o.length||T&&0!=e.length?n<0?x(e)?t.stylize(RegExp.prototype.toString.call(e),\"regexp\"):t.stylize(\"[Object]\",\"special\"):(t.seen.push(e),c=T?function(t,e,r,n,a){for(var i=[],o=0,s=e.length;o<s;++o)S(e,String(o))?i.push(f(t,e,r,n,String(o),!0)):i.push(\"\");return a.forEach(function(a){a.match(/^\\d+$/)||i.push(f(t,e,r,n,a,!0))}),i}(t,e,n,s,o):o.map(function(r){return f(t,e,n,s,r,T)}),t.seen.pop(),function(t,e,r){if(t.reduce(function(t,e){return 0,e.indexOf(\"\\n\")>=0&&0,t+e.replace(/\\u001b\\[\\d\\d?m/g,\"\").length+1},0)>60)return r[0]+(\"\"===e?\"\":e+\"\\n \")+\" \"+t.join(\",\\n  \")+\" \"+r[1];return r[0]+e+\" \"+t.join(\", \")+\" \"+r[1]}(c,b,A)):A[0]+b+A[1]}function h(t){return\"[\"+Error.prototype.toString.call(t)+\"]\"}function f(t,e,r,n,a,i){var o,s,l;if((l=Object.getOwnPropertyDescriptor(e,a)||{value:e[a]}).get?s=l.set?t.stylize(\"[Getter/Setter]\",\"special\"):t.stylize(\"[Getter]\",\"special\"):l.set&&(s=t.stylize(\"[Setter]\",\"special\")),S(n,a)||(o=\"[\"+a+\"]\"),s||(t.seen.indexOf(l.value)<0?(s=g(r)?u(t,l.value,null):u(t,l.value,r-1)).indexOf(\"\\n\")>-1&&(s=i?s.split(\"\\n\").map(function(t){return\"  \"+t}).join(\"\\n\").substr(2):\"\\n\"+s.split(\"\\n\").map(function(t){return\"   \"+t}).join(\"\\n\")):s=t.stylize(\"[Circular]\",\"special\")),y(o)){if(i&&a.match(/^\\d+$/))return s;(o=JSON.stringify(\"\"+a)).match(/^\"([a-zA-Z_][a-zA-Z_0-9]*)\"$/)?(o=o.substr(1,o.length-2),o=t.stylize(o,\"name\")):(o=o.replace(/'/g,\"\\\\'\").replace(/\\\\\"/g,'\"').replace(/(^\"|\"$)/g,\"'\"),o=t.stylize(o,\"string\"))}return o+\": \"+s}function p(t){return Array.isArray(t)}function d(t){return\"boolean\"==typeof t}function g(t){return null===t}function v(t){return\"number\"==typeof t}function m(t){return\"string\"==typeof t}function y(t){return void 0===t}function x(t){return b(t)&&\"[object RegExp]\"===T(t)}function b(t){return\"object\"==typeof t&&null!==t}function _(t){return b(t)&&\"[object Date]\"===T(t)}function w(t){return b(t)&&(\"[object Error]\"===T(t)||t instanceof Error)}function k(t){return\"function\"==typeof t}function T(t){return Object.prototype.toString.call(t)}function A(t){return t<10?\"0\"+t.toString(10):t.toString(10)}r.debuglog=function(t){if(y(i)&&(i=e.env.NODE_DEBUG||\"\"),t=t.toUpperCase(),!o[t])if(new RegExp(\"\\\\b\"+t+\"\\\\b\",\"i\").test(i)){var n=e.pid;o[t]=function(){var e=r.format.apply(r,arguments);console.error(\"%s %d: %s\",t,n,e)}}else o[t]=function(){};return o[t]},r.inspect=s,s.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},s.styles={special:\"cyan\",number:\"yellow\",boolean:\"yellow\",undefined:\"grey\",null:\"bold\",string:\"green\",date:\"magenta\",regexp:\"red\"},r.isArray=p,r.isBoolean=d,r.isNull=g,r.isNullOrUndefined=function(t){return null==t},r.isNumber=v,r.isString=m,r.isSymbol=function(t){return\"symbol\"==typeof t},r.isUndefined=y,r.isRegExp=x,r.isObject=b,r.isDate=_,r.isError=w,r.isFunction=k,r.isPrimitive=function(t){return null===t||\"boolean\"==typeof t||\"number\"==typeof t||\"string\"==typeof t||\"symbol\"==typeof t||\"undefined\"==typeof t},r.isBuffer=t(\"./support/isBuffer\");var M=[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"];function S(t,e){return Object.prototype.hasOwnProperty.call(t,e)}r.log=function(){var t,e;console.log(\"%s - %s\",(t=new Date,e=[A(t.getHours()),A(t.getMinutes()),A(t.getSeconds())].join(\":\"),[t.getDate(),M[t.getMonth()],e].join(\" \")),r.format.apply(r,arguments))},r.inherits=t(\"inherits\"),r._extend=function(t,e){if(!e||!b(e))return t;for(var r=Object.keys(e),n=r.length;n--;)t[r[n]]=e[r[n]];return t}}).call(this,t(\"_process\"),\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{\"./support/isBuffer\":71,_process:483,inherits:70}],73:[function(t,e,r){e.exports=function(t){return atob(t)}},{}],74:[function(t,e,r){\"use strict\";e.exports=function(t,e){for(var r=e.length,i=new Array(r+1),o=0;o<r;++o){for(var s=new Array(r+1),l=0;l<=r;++l)s[l]=t[l][o];i[o]=s}i[r]=new Array(r+1);for(var o=0;o<=r;++o)i[r][o]=1;for(var c=new Array(r+1),o=0;o<r;++o)c[o]=e[o];c[r]=1;var u=n(i,c),h=a(u[r+1]);0===h&&(h=1);for(var f=new Array(r+1),o=0;o<=r;++o)f[o]=a(u[o])/h;return f};var n=t(\"robust-linear-solve\");function a(t){for(var e=0,r=0;r<t.length;++r)e+=t[r];return e}},{\"robust-linear-solve\":510}],75:[function(t,e,r){\"use strict\";r.byteLength=function(t){var e=c(t),r=e[0],n=e[1];return 3*(r+n)/4-n},r.toByteArray=function(t){var e,r,n=c(t),o=n[0],s=n[1],l=new i(function(t,e,r){return 3*(e+r)/4-r}(0,o,s)),u=0,h=s>0?o-4:o;for(r=0;r<h;r+=4)e=a[t.charCodeAt(r)]<<18|a[t.charCodeAt(r+1)]<<12|a[t.charCodeAt(r+2)]<<6|a[t.charCodeAt(r+3)],l[u++]=e>>16&255,l[u++]=e>>8&255,l[u++]=255&e;2===s&&(e=a[t.charCodeAt(r)]<<2|a[t.charCodeAt(r+1)]>>4,l[u++]=255&e);1===s&&(e=a[t.charCodeAt(r)]<<10|a[t.charCodeAt(r+1)]<<4|a[t.charCodeAt(r+2)]>>2,l[u++]=e>>8&255,l[u++]=255&e);return l},r.fromByteArray=function(t){for(var e,r=t.length,a=r%3,i=[],o=0,s=r-a;o<s;o+=16383)i.push(u(t,o,o+16383>s?s:o+16383));1===a?(e=t[r-1],i.push(n[e>>2]+n[e<<4&63]+\"==\")):2===a&&(e=(t[r-2]<<8)+t[r-1],i.push(n[e>>10]+n[e>>4&63]+n[e<<2&63]+\"=\"));return i.join(\"\")};for(var n=[],a=[],i=\"undefined\"!=typeof Uint8Array?Uint8Array:Array,o=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/\",s=0,l=o.length;s<l;++s)n[s]=o[s],a[o.charCodeAt(s)]=s;function c(t){var e=t.length;if(e%4>0)throw new Error(\"Invalid string. Length must be a multiple of 4\");var r=t.indexOf(\"=\");return-1===r&&(r=e),[r,r===e?0:4-r%4]}function u(t,e,r){for(var a,i,o=[],s=e;s<r;s+=3)a=(t[s]<<16&16711680)+(t[s+1]<<8&65280)+(255&t[s+2]),o.push(n[(i=a)>>18&63]+n[i>>12&63]+n[i>>6&63]+n[63&i]);return o.join(\"\")}a[\"-\".charCodeAt(0)]=62,a[\"_\".charCodeAt(0)]=63},{}],76:[function(t,e,r){\"use strict\";var n=t(\"./lib/rationalize\");e.exports=function(t,e){return n(t[0].mul(e[1]).add(e[0].mul(t[1])),t[1].mul(e[1]))}},{\"./lib/rationalize\":86}],77:[function(t,e,r){\"use strict\";e.exports=function(t,e){return t[0].mul(e[1]).cmp(e[0].mul(t[1]))}},{}],78:[function(t,e,r){\"use strict\";var n=t(\"./lib/rationalize\");e.exports=function(t,e){return n(t[0].mul(e[1]),t[1].mul(e[0]))}},{\"./lib/rationalize\":86}],79:[function(t,e,r){\"use strict\";var n=t(\"./is-rat\"),a=t(\"./lib/is-bn\"),i=t(\"./lib/num-to-bn\"),o=t(\"./lib/str-to-bn\"),s=t(\"./lib/rationalize\"),l=t(\"./div\");e.exports=function t(e,r){if(n(e))return r?l(e,t(r)):[e[0].clone(),e[1].clone()];var c=0;var u,h;if(a(e))u=e.clone();else if(\"string\"==typeof e)u=o(e);else{if(0===e)return[i(0),i(1)];if(e===Math.floor(e))u=i(e);else{for(;e!==Math.floor(e);)e*=Math.pow(2,256),c-=256;u=i(e)}}if(n(r))u.mul(r[1]),h=r[0].clone();else if(a(r))h=r.clone();else if(\"string\"==typeof r)h=o(r);else if(r)if(r===Math.floor(r))h=i(r);else{for(;r!==Math.floor(r);)r*=Math.pow(2,256),c+=256;h=i(r)}else h=i(1);c>0?u=u.ushln(c):c<0&&(h=h.ushln(-c));return s(u,h)}},{\"./div\":78,\"./is-rat\":80,\"./lib/is-bn\":84,\"./lib/num-to-bn\":85,\"./lib/rationalize\":86,\"./lib/str-to-bn\":87}],80:[function(t,e,r){\"use strict\";var n=t(\"./lib/is-bn\");e.exports=function(t){return Array.isArray(t)&&2===t.length&&n(t[0])&&n(t[1])}},{\"./lib/is-bn\":84}],81:[function(t,e,r){\"use strict\";var n=t(\"bn.js\");e.exports=function(t){return t.cmp(new n(0))}},{\"bn.js\":95}],82:[function(t,e,r){\"use strict\";var n=t(\"./bn-sign\");e.exports=function(t){var e=t.length,r=t.words,a=0;if(1===e)a=r[0];else if(2===e)a=r[0]+67108864*r[1];else for(var i=0;i<e;i++){var o=r[i];a+=o*Math.pow(67108864,i)}return n(t)*a}},{\"./bn-sign\":81}],83:[function(t,e,r){\"use strict\";var n=t(\"double-bits\"),a=t(\"bit-twiddle\").countTrailingZeros;e.exports=function(t){var e=a(n.lo(t));if(e<32)return e;var r=a(n.hi(t));if(r>20)return 52;return r+32}},{\"bit-twiddle\":93,\"double-bits\":168}],84:[function(t,e,r){\"use strict\";t(\"bn.js\");e.exports=function(t){return t&&\"object\"==typeof t&&Boolean(t.words)}},{\"bn.js\":95}],85:[function(t,e,r){\"use strict\";var n=t(\"bn.js\"),a=t(\"double-bits\");e.exports=function(t){var e=a.exponent(t);return e<52?new n(t):new n(t*Math.pow(2,52-e)).ushln(e-52)}},{\"bn.js\":95,\"double-bits\":168}],86:[function(t,e,r){\"use strict\";var n=t(\"./num-to-bn\"),a=t(\"./bn-sign\");e.exports=function(t,e){var r=a(t),i=a(e);if(0===r)return[n(0),n(1)];if(0===i)return[n(0),n(0)];i<0&&(t=t.neg(),e=e.neg());var o=t.gcd(e);if(o.cmpn(1))return[t.div(o),e.div(o)];return[t,e]}},{\"./bn-sign\":81,\"./num-to-bn\":85}],87:[function(t,e,r){\"use strict\";var n=t(\"bn.js\");e.exports=function(t){return new n(t)}},{\"bn.js\":95}],88:[function(t,e,r){\"use strict\";var n=t(\"./lib/rationalize\");e.exports=function(t,e){return n(t[0].mul(e[0]),t[1].mul(e[1]))}},{\"./lib/rationalize\":86}],89:[function(t,e,r){\"use strict\";var n=t(\"./lib/bn-sign\");e.exports=function(t){return n(t[0])*n(t[1])}},{\"./lib/bn-sign\":81}],90:[function(t,e,r){\"use strict\";var n=t(\"./lib/rationalize\");e.exports=function(t,e){return n(t[0].mul(e[1]).sub(t[1].mul(e[0])),t[1].mul(e[1]))}},{\"./lib/rationalize\":86}],91:[function(t,e,r){\"use strict\";var n=t(\"./lib/bn-to-num\"),a=t(\"./lib/ctz\");e.exports=function(t){var e=t[0],r=t[1];if(0===e.cmpn(0))return 0;var i=e.abs().divmod(r.abs()),o=i.div,s=n(o),l=i.mod,c=e.negative!==r.negative?-1:1;if(0===l.cmpn(0))return c*s;if(s){var u=a(s)+4,h=n(l.ushln(u).divRound(r));return c*(s+h*Math.pow(2,-u))}var f=r.bitLength()-l.bitLength()+53,h=n(l.ushln(f).divRound(r));return f<1023?c*h*Math.pow(2,-f):(h*=Math.pow(2,-1023),c*h*Math.pow(2,1023-f))}},{\"./lib/bn-to-num\":82,\"./lib/ctz\":83}],92:[function(t,e,r){\"use strict\";function n(t,e,r,n,a,i){var o=[\"function \",t,\"(a,l,h,\",n.join(\",\"),\"){\",i?\"\":\"var i=\",r?\"l-1\":\"h+1\",\";while(l<=h){var m=(l+h)>>>1,x=a\",a?\".get(m)\":\"[m]\"];return i?e.indexOf(\"c\")<0?o.push(\";if(x===y){return m}else if(x<=y){\"):o.push(\";var p=c(x,y);if(p===0){return m}else if(p<=0){\"):o.push(\";if(\",e,\"){i=m;\"),r?o.push(\"l=m+1}else{h=m-1}\"):o.push(\"h=m-1}else{l=m+1}\"),o.push(\"}\"),i?o.push(\"return -1};\"):o.push(\"return i};\"),o.join(\"\")}function a(t,e,r,a){return new Function([n(\"A\",\"x\"+t+\"y\",e,[\"y\"],!1,a),n(\"B\",\"x\"+t+\"y\",e,[\"y\"],!0,a),n(\"P\",\"c(x,y)\"+t+\"0\",e,[\"y\",\"c\"],!1,a),n(\"Q\",\"c(x,y)\"+t+\"0\",e,[\"y\",\"c\"],!0,a),\"function dispatchBsearch\",r,\"(a,y,c,l,h){if(a.shape){if(typeof(c)==='function'){return Q(a,(l===undefined)?0:l|0,(h===undefined)?a.shape[0]-1:h|0,y,c)}else{return B(a,(c===undefined)?0:c|0,(l===undefined)?a.shape[0]-1:l|0,y)}}else{if(typeof(c)==='function'){return P(a,(l===undefined)?0:l|0,(h===undefined)?a.length-1:h|0,y,c)}else{return A(a,(c===undefined)?0:c|0,(l===undefined)?a.length-1:l|0,y)}}}return dispatchBsearch\",r].join(\"\"))()}e.exports={ge:a(\">=\",!1,\"GE\"),gt:a(\">\",!1,\"GT\"),lt:a(\"<\",!0,\"LT\"),le:a(\"<=\",!0,\"LE\"),eq:a(\"-\",!0,\"EQ\",!0)}},{}],93:[function(t,e,r){\"use strict\";function n(t){var e=32;return(t&=-t)&&e--,65535&t&&(e-=16),16711935&t&&(e-=8),252645135&t&&(e-=4),858993459&t&&(e-=2),1431655765&t&&(e-=1),e}r.INT_BITS=32,r.INT_MAX=2147483647,r.INT_MIN=-1<<31,r.sign=function(t){return(t>0)-(t<0)},r.abs=function(t){var e=t>>31;return(t^e)-e},r.min=function(t,e){return e^(t^e)&-(t<e)},r.max=function(t,e){return t^(t^e)&-(t<e)},r.isPow2=function(t){return!(t&t-1||!t)},r.log2=function(t){var e,r;return e=(t>65535)<<4,e|=r=((t>>>=e)>255)<<3,e|=r=((t>>>=r)>15)<<2,(e|=r=((t>>>=r)>3)<<1)|(t>>>=r)>>1},r.log10=function(t){return t>=1e9?9:t>=1e8?8:t>=1e7?7:t>=1e6?6:t>=1e5?5:t>=1e4?4:t>=1e3?3:t>=100?2:t>=10?1:0},r.popCount=function(t){return 16843009*((t=(858993459&(t-=t>>>1&1431655765))+(t>>>2&858993459))+(t>>>4)&252645135)>>>24},r.countTrailingZeros=n,r.nextPow2=function(t){return t+=0===t,--t,t|=t>>>1,t|=t>>>2,t|=t>>>4,t|=t>>>8,(t|=t>>>16)+1},r.prevPow2=function(t){return t|=t>>>1,t|=t>>>2,t|=t>>>4,t|=t>>>8,(t|=t>>>16)-(t>>>1)},r.parity=function(t){return t^=t>>>16,t^=t>>>8,t^=t>>>4,27030>>>(t&=15)&1};var a=new Array(256);!function(t){for(var e=0;e<256;++e){var r=e,n=e,a=7;for(r>>>=1;r;r>>>=1)n<<=1,n|=1&r,--a;t[e]=n<<a&255}}(a),r.reverse=function(t){return a[255&t]<<24|a[t>>>8&255]<<16|a[t>>>16&255]<<8|a[t>>>24&255]},r.interleave2=function(t,e){return(t=1431655765&((t=858993459&((t=252645135&((t=16711935&((t&=65535)|t<<8))|t<<4))|t<<2))|t<<1))|(e=1431655765&((e=858993459&((e=252645135&((e=16711935&((e&=65535)|e<<8))|e<<4))|e<<2))|e<<1))<<1},r.deinterleave2=function(t,e){return(t=65535&((t=16711935&((t=252645135&((t=858993459&((t=t>>>e&1431655765)|t>>>1))|t>>>2))|t>>>4))|t>>>16))<<16>>16},r.interleave3=function(t,e,r){return t=1227133513&((t=3272356035&((t=251719695&((t=4278190335&((t&=1023)|t<<16))|t<<8))|t<<4))|t<<2),(t|=(e=1227133513&((e=3272356035&((e=251719695&((e=4278190335&((e&=1023)|e<<16))|e<<8))|e<<4))|e<<2))<<1)|(r=1227133513&((r=3272356035&((r=251719695&((r=4278190335&((r&=1023)|r<<16))|r<<8))|r<<4))|r<<2))<<2},r.deinterleave3=function(t,e){return(t=1023&((t=4278190335&((t=251719695&((t=3272356035&((t=t>>>e&1227133513)|t>>>2))|t>>>4))|t>>>8))|t>>>16))<<22>>22},r.nextCombination=function(t){var e=t|t-1;return e+1|(~e&-~e)-1>>>n(t)+1}},{}],94:[function(t,e,r){\"use strict\";var n=t(\"clamp\");e.exports=function(t,e){e||(e={});var r,o,s,l,c,u,h,f,p,d,g,v=null==e.cutoff?.25:e.cutoff,m=null==e.radius?8:e.radius,y=e.channel||0;if(ArrayBuffer.isView(t)||Array.isArray(t)){if(!e.width||!e.height)throw Error(\"For raw data width and height should be provided by options\");r=e.width,o=e.height,l=t,u=e.stride?e.stride:Math.floor(t.length/r/o)}else window.HTMLCanvasElement&&t instanceof window.HTMLCanvasElement?(h=(f=t).getContext(\"2d\"),r=f.width,o=f.height,p=h.getImageData(0,0,r,o),l=p.data,u=4):window.CanvasRenderingContext2D&&t instanceof window.CanvasRenderingContext2D?(f=t.canvas,h=t,r=f.width,o=f.height,p=h.getImageData(0,0,r,o),l=p.data,u=4):window.ImageData&&t instanceof window.ImageData&&(p=t,r=t.width,o=t.height,l=p.data,u=4);if(s=Math.max(r,o),window.Uint8ClampedArray&&l instanceof window.Uint8ClampedArray||window.Uint8Array&&l instanceof window.Uint8Array)for(c=l,l=Array(r*o),d=0,g=c.length;d<g;d++)l[d]=c[d*u+y]/255;else if(1!==u)throw Error(\"Raw data can have only 1 value per pixel\");var x=Array(r*o),b=Array(r*o),_=Array(s),w=Array(s),k=Array(s+1),T=Array(s);for(d=0,g=r*o;d<g;d++){var A=l[d];x[d]=1===A?0:0===A?a:Math.pow(Math.max(0,.5-A),2),b[d]=1===A?a:0===A?0:Math.pow(Math.max(0,A-.5),2)}i(x,r,o,_,w,T,k),i(b,r,o,_,w,T,k);var M=window.Float32Array?new Float32Array(r*o):new Array(r*o);for(d=0,g=r*o;d<g;d++)M[d]=n(1-((x[d]-b[d])/m+v),0,1);return M};var a=1e20;function i(t,e,r,n,a,i,s){for(var l=0;l<e;l++){for(var c=0;c<r;c++)n[c]=t[c*e+l];for(o(n,a,i,s,r),c=0;c<r;c++)t[c*e+l]=a[c]}for(c=0;c<r;c++){for(l=0;l<e;l++)n[l]=t[c*e+l];for(o(n,a,i,s,e),l=0;l<e;l++)t[c*e+l]=Math.sqrt(a[l])}}function o(t,e,r,n,i){r[0]=0,n[0]=-a,n[1]=+a;for(var o=1,s=0;o<i;o++){for(var l=(t[o]+o*o-(t[r[s]]+r[s]*r[s]))/(2*o-2*r[s]);l<=n[s];)s--,l=(t[o]+o*o-(t[r[s]]+r[s]*r[s]))/(2*o-2*r[s]);r[++s]=o,n[s]=l,n[s+1]=+a}for(o=0,s=0;o<i;o++){for(;n[s+1]<o;)s++;e[o]=(o-r[s])*(o-r[s])+t[r[s]]}}},{clamp:116}],95:[function(t,e,r){!function(e,r){\"use strict\";function n(t,e){if(!t)throw new Error(e||\"Assertion failed\")}function a(t,e){t.super_=e;var r=function(){};r.prototype=e.prototype,t.prototype=new r,t.prototype.constructor=t}function i(t,e,r){if(i.isBN(t))return t;this.negative=0,this.words=null,this.length=0,this.red=null,null!==t&&(\"le\"!==e&&\"be\"!==e||(r=e,e=10),this._init(t||0,e||10,r||\"be\"))}var o;\"object\"==typeof e?e.exports=i:r.BN=i,i.BN=i,i.wordSize=26;try{o=t(\"buffer\").Buffer}catch(t){}function s(t,e,r){for(var n=0,a=Math.min(t.length,r),i=e;i<a;i++){var o=t.charCodeAt(i)-48;n<<=4,n|=o>=49&&o<=54?o-49+10:o>=17&&o<=22?o-17+10:15&o}return n}function l(t,e,r,n){for(var a=0,i=Math.min(t.length,r),o=e;o<i;o++){var s=t.charCodeAt(o)-48;a*=n,a+=s>=49?s-49+10:s>=17?s-17+10:s}return a}i.isBN=function(t){return t instanceof i||null!==t&&\"object\"==typeof t&&t.constructor.wordSize===i.wordSize&&Array.isArray(t.words)},i.max=function(t,e){return t.cmp(e)>0?t:e},i.min=function(t,e){return t.cmp(e)<0?t:e},i.prototype._init=function(t,e,r){if(\"number\"==typeof t)return this._initNumber(t,e,r);if(\"object\"==typeof t)return this._initArray(t,e,r);\"hex\"===e&&(e=16),n(e===(0|e)&&e>=2&&e<=36);var a=0;\"-\"===(t=t.toString().replace(/\\s+/g,\"\"))[0]&&a++,16===e?this._parseHex(t,a):this._parseBase(t,e,a),\"-\"===t[0]&&(this.negative=1),this.strip(),\"le\"===r&&this._initArray(this.toArray(),e,r)},i.prototype._initNumber=function(t,e,r){t<0&&(this.negative=1,t=-t),t<67108864?(this.words=[67108863&t],this.length=1):t<4503599627370496?(this.words=[67108863&t,t/67108864&67108863],this.length=2):(n(t<9007199254740992),this.words=[67108863&t,t/67108864&67108863,1],this.length=3),\"le\"===r&&this._initArray(this.toArray(),e,r)},i.prototype._initArray=function(t,e,r){if(n(\"number\"==typeof t.length),t.length<=0)return this.words=[0],this.length=1,this;this.length=Math.ceil(t.length/3),this.words=new Array(this.length);for(var a=0;a<this.length;a++)this.words[a]=0;var i,o,s=0;if(\"be\"===r)for(a=t.length-1,i=0;a>=0;a-=3)o=t[a]|t[a-1]<<8|t[a-2]<<16,this.words[i]|=o<<s&67108863,this.words[i+1]=o>>>26-s&67108863,(s+=24)>=26&&(s-=26,i++);else if(\"le\"===r)for(a=0,i=0;a<t.length;a+=3)o=t[a]|t[a+1]<<8|t[a+2]<<16,this.words[i]|=o<<s&67108863,this.words[i+1]=o>>>26-s&67108863,(s+=24)>=26&&(s-=26,i++);return this.strip()},i.prototype._parseHex=function(t,e){this.length=Math.ceil((t.length-e)/6),this.words=new Array(this.length);for(var r=0;r<this.length;r++)this.words[r]=0;var n,a,i=0;for(r=t.length-6,n=0;r>=e;r-=6)a=s(t,r,r+6),this.words[n]|=a<<i&67108863,this.words[n+1]|=a>>>26-i&4194303,(i+=24)>=26&&(i-=26,n++);r+6!==e&&(a=s(t,e,r+6),this.words[n]|=a<<i&67108863,this.words[n+1]|=a>>>26-i&4194303),this.strip()},i.prototype._parseBase=function(t,e,r){this.words=[0],this.length=1;for(var n=0,a=1;a<=67108863;a*=e)n++;n--,a=a/e|0;for(var i=t.length-r,o=i%n,s=Math.min(i,i-o)+r,c=0,u=r;u<s;u+=n)c=l(t,u,u+n,e),this.imuln(a),this.words[0]+c<67108864?this.words[0]+=c:this._iaddn(c);if(0!==o){var h=1;for(c=l(t,u,t.length,e),u=0;u<o;u++)h*=e;this.imuln(h),this.words[0]+c<67108864?this.words[0]+=c:this._iaddn(c)}},i.prototype.copy=function(t){t.words=new Array(this.length);for(var e=0;e<this.length;e++)t.words[e]=this.words[e];t.length=this.length,t.negative=this.negative,t.red=this.red},i.prototype.clone=function(){var t=new i(null);return this.copy(t),t},i.prototype._expand=function(t){for(;this.length<t;)this.words[this.length++]=0;return this},i.prototype.strip=function(){for(;this.length>1&&0===this.words[this.length-1];)this.length--;return this._normSign()},i.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},i.prototype.inspect=function(){return(this.red?\"<BN-R: \":\"<BN: \")+this.toString(16)+\">\"};var c=[\"\",\"0\",\"00\",\"000\",\"0000\",\"00000\",\"000000\",\"0000000\",\"00000000\",\"000000000\",\"0000000000\",\"00000000000\",\"000000000000\",\"0000000000000\",\"00000000000000\",\"000000000000000\",\"0000000000000000\",\"00000000000000000\",\"000000000000000000\",\"0000000000000000000\",\"00000000000000000000\",\"000000000000000000000\",\"0000000000000000000000\",\"00000000000000000000000\",\"000000000000000000000000\",\"0000000000000000000000000\"],u=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],h=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function f(t,e,r){r.negative=e.negative^t.negative;var n=t.length+e.length|0;r.length=n,n=n-1|0;var a=0|t.words[0],i=0|e.words[0],o=a*i,s=67108863&o,l=o/67108864|0;r.words[0]=s;for(var c=1;c<n;c++){for(var u=l>>>26,h=67108863&l,f=Math.min(c,e.length-1),p=Math.max(0,c-t.length+1);p<=f;p++){var d=c-p|0;u+=(o=(a=0|t.words[d])*(i=0|e.words[p])+h)/67108864|0,h=67108863&o}r.words[c]=0|h,l=0|u}return 0!==l?r.words[c]=0|l:r.length--,r.strip()}i.prototype.toString=function(t,e){var r;if(e=0|e||1,16===(t=t||10)||\"hex\"===t){r=\"\";for(var a=0,i=0,o=0;o<this.length;o++){var s=this.words[o],l=(16777215&(s<<a|i)).toString(16);r=0!==(i=s>>>24-a&16777215)||o!==this.length-1?c[6-l.length]+l+r:l+r,(a+=2)>=26&&(a-=26,o--)}for(0!==i&&(r=i.toString(16)+r);r.length%e!=0;)r=\"0\"+r;return 0!==this.negative&&(r=\"-\"+r),r}if(t===(0|t)&&t>=2&&t<=36){var f=u[t],p=h[t];r=\"\";var d=this.clone();for(d.negative=0;!d.isZero();){var g=d.modn(p).toString(t);r=(d=d.idivn(p)).isZero()?g+r:c[f-g.length]+g+r}for(this.isZero()&&(r=\"0\"+r);r.length%e!=0;)r=\"0\"+r;return 0!==this.negative&&(r=\"-\"+r),r}n(!1,\"Base should be between 2 and 36\")},i.prototype.toNumber=function(){var t=this.words[0];return 2===this.length?t+=67108864*this.words[1]:3===this.length&&1===this.words[2]?t+=4503599627370496+67108864*this.words[1]:this.length>2&&n(!1,\"Number can only safely store up to 53 bits\"),0!==this.negative?-t:t},i.prototype.toJSON=function(){return this.toString(16)},i.prototype.toBuffer=function(t,e){return n(\"undefined\"!=typeof o),this.toArrayLike(o,t,e)},i.prototype.toArray=function(t,e){return this.toArrayLike(Array,t,e)},i.prototype.toArrayLike=function(t,e,r){var a=this.byteLength(),i=r||Math.max(1,a);n(a<=i,\"byte array longer than desired length\"),n(i>0,\"Requested array length <= 0\"),this.strip();var o,s,l=\"le\"===e,c=new t(i),u=this.clone();if(l){for(s=0;!u.isZero();s++)o=u.andln(255),u.iushrn(8),c[s]=o;for(;s<i;s++)c[s]=0}else{for(s=0;s<i-a;s++)c[s]=0;for(s=0;!u.isZero();s++)o=u.andln(255),u.iushrn(8),c[i-s-1]=o}return c},Math.clz32?i.prototype._countBits=function(t){return 32-Math.clz32(t)}:i.prototype._countBits=function(t){var e=t,r=0;return e>=4096&&(r+=13,e>>>=13),e>=64&&(r+=7,e>>>=7),e>=8&&(r+=4,e>>>=4),e>=2&&(r+=2,e>>>=2),r+e},i.prototype._zeroBits=function(t){if(0===t)return 26;var e=t,r=0;return 0==(8191&e)&&(r+=13,e>>>=13),0==(127&e)&&(r+=7,e>>>=7),0==(15&e)&&(r+=4,e>>>=4),0==(3&e)&&(r+=2,e>>>=2),0==(1&e)&&r++,r},i.prototype.bitLength=function(){var t=this.words[this.length-1],e=this._countBits(t);return 26*(this.length-1)+e},i.prototype.zeroBits=function(){if(this.isZero())return 0;for(var t=0,e=0;e<this.length;e++){var r=this._zeroBits(this.words[e]);if(t+=r,26!==r)break}return t},i.prototype.byteLength=function(){return Math.ceil(this.bitLength()/8)},i.prototype.toTwos=function(t){return 0!==this.negative?this.abs().inotn(t).iaddn(1):this.clone()},i.prototype.fromTwos=function(t){return this.testn(t-1)?this.notn(t).iaddn(1).ineg():this.clone()},i.prototype.isNeg=function(){return 0!==this.negative},i.prototype.neg=function(){return this.clone().ineg()},i.prototype.ineg=function(){return this.isZero()||(this.negative^=1),this},i.prototype.iuor=function(t){for(;this.length<t.length;)this.words[this.length++]=0;for(var e=0;e<t.length;e++)this.words[e]=this.words[e]|t.words[e];return this.strip()},i.prototype.ior=function(t){return n(0==(this.negative|t.negative)),this.iuor(t)},i.prototype.or=function(t){return this.length>t.length?this.clone().ior(t):t.clone().ior(this)},i.prototype.uor=function(t){return this.length>t.length?this.clone().iuor(t):t.clone().iuor(this)},i.prototype.iuand=function(t){var e;e=this.length>t.length?t:this;for(var r=0;r<e.length;r++)this.words[r]=this.words[r]&t.words[r];return this.length=e.length,this.strip()},i.prototype.iand=function(t){return n(0==(this.negative|t.negative)),this.iuand(t)},i.prototype.and=function(t){return this.length>t.length?this.clone().iand(t):t.clone().iand(this)},i.prototype.uand=function(t){return this.length>t.length?this.clone().iuand(t):t.clone().iuand(this)},i.prototype.iuxor=function(t){var e,r;this.length>t.length?(e=this,r=t):(e=t,r=this);for(var n=0;n<r.length;n++)this.words[n]=e.words[n]^r.words[n];if(this!==e)for(;n<e.length;n++)this.words[n]=e.words[n];return this.length=e.length,this.strip()},i.prototype.ixor=function(t){return n(0==(this.negative|t.negative)),this.iuxor(t)},i.prototype.xor=function(t){return this.length>t.length?this.clone().ixor(t):t.clone().ixor(this)},i.prototype.uxor=function(t){return this.length>t.length?this.clone().iuxor(t):t.clone().iuxor(this)},i.prototype.inotn=function(t){n(\"number\"==typeof t&&t>=0);var e=0|Math.ceil(t/26),r=t%26;this._expand(e),r>0&&e--;for(var a=0;a<e;a++)this.words[a]=67108863&~this.words[a];return r>0&&(this.words[a]=~this.words[a]&67108863>>26-r),this.strip()},i.prototype.notn=function(t){return this.clone().inotn(t)},i.prototype.setn=function(t,e){n(\"number\"==typeof t&&t>=0);var r=t/26|0,a=t%26;return this._expand(r+1),this.words[r]=e?this.words[r]|1<<a:this.words[r]&~(1<<a),this.strip()},i.prototype.iadd=function(t){var e,r,n;if(0!==this.negative&&0===t.negative)return this.negative=0,e=this.isub(t),this.negative^=1,this._normSign();if(0===this.negative&&0!==t.negative)return t.negative=0,e=this.isub(t),t.negative=1,e._normSign();this.length>t.length?(r=this,n=t):(r=t,n=this);for(var a=0,i=0;i<n.length;i++)e=(0|r.words[i])+(0|n.words[i])+a,this.words[i]=67108863&e,a=e>>>26;for(;0!==a&&i<r.length;i++)e=(0|r.words[i])+a,this.words[i]=67108863&e,a=e>>>26;if(this.length=r.length,0!==a)this.words[this.length]=a,this.length++;else if(r!==this)for(;i<r.length;i++)this.words[i]=r.words[i];return this},i.prototype.add=function(t){var e;return 0!==t.negative&&0===this.negative?(t.negative=0,e=this.sub(t),t.negative^=1,e):0===t.negative&&0!==this.negative?(this.negative=0,e=t.sub(this),this.negative=1,e):this.length>t.length?this.clone().iadd(t):t.clone().iadd(this)},i.prototype.isub=function(t){if(0!==t.negative){t.negative=0;var e=this.iadd(t);return t.negative=1,e._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(t),this.negative=1,this._normSign();var r,n,a=this.cmp(t);if(0===a)return this.negative=0,this.length=1,this.words[0]=0,this;a>0?(r=this,n=t):(r=t,n=this);for(var i=0,o=0;o<n.length;o++)i=(e=(0|r.words[o])-(0|n.words[o])+i)>>26,this.words[o]=67108863&e;for(;0!==i&&o<r.length;o++)i=(e=(0|r.words[o])+i)>>26,this.words[o]=67108863&e;if(0===i&&o<r.length&&r!==this)for(;o<r.length;o++)this.words[o]=r.words[o];return this.length=Math.max(this.length,o),r!==this&&(this.negative=1),this.strip()},i.prototype.sub=function(t){return this.clone().isub(t)};var p=function(t,e,r){var n,a,i,o=t.words,s=e.words,l=r.words,c=0,u=0|o[0],h=8191&u,f=u>>>13,p=0|o[1],d=8191&p,g=p>>>13,v=0|o[2],m=8191&v,y=v>>>13,x=0|o[3],b=8191&x,_=x>>>13,w=0|o[4],k=8191&w,T=w>>>13,A=0|o[5],M=8191&A,S=A>>>13,E=0|o[6],C=8191&E,L=E>>>13,P=0|o[7],O=8191&P,I=P>>>13,z=0|o[8],D=8191&z,R=z>>>13,F=0|o[9],B=8191&F,N=F>>>13,j=0|s[0],V=8191&j,U=j>>>13,q=0|s[1],H=8191&q,G=q>>>13,Y=0|s[2],W=8191&Y,X=Y>>>13,Z=0|s[3],J=8191&Z,K=Z>>>13,Q=0|s[4],$=8191&Q,tt=Q>>>13,et=0|s[5],rt=8191&et,nt=et>>>13,at=0|s[6],it=8191&at,ot=at>>>13,st=0|s[7],lt=8191&st,ct=st>>>13,ut=0|s[8],ht=8191&ut,ft=ut>>>13,pt=0|s[9],dt=8191&pt,gt=pt>>>13;r.negative=t.negative^e.negative,r.length=19;var vt=(c+(n=Math.imul(h,V))|0)+((8191&(a=(a=Math.imul(h,U))+Math.imul(f,V)|0))<<13)|0;c=((i=Math.imul(f,U))+(a>>>13)|0)+(vt>>>26)|0,vt&=67108863,n=Math.imul(d,V),a=(a=Math.imul(d,U))+Math.imul(g,V)|0,i=Math.imul(g,U);var mt=(c+(n=n+Math.imul(h,H)|0)|0)+((8191&(a=(a=a+Math.imul(h,G)|0)+Math.imul(f,H)|0))<<13)|0;c=((i=i+Math.imul(f,G)|0)+(a>>>13)|0)+(mt>>>26)|0,mt&=67108863,n=Math.imul(m,V),a=(a=Math.imul(m,U))+Math.imul(y,V)|0,i=Math.imul(y,U),n=n+Math.imul(d,H)|0,a=(a=a+Math.imul(d,G)|0)+Math.imul(g,H)|0,i=i+Math.imul(g,G)|0;var yt=(c+(n=n+Math.imul(h,W)|0)|0)+((8191&(a=(a=a+Math.imul(h,X)|0)+Math.imul(f,W)|0))<<13)|0;c=((i=i+Math.imul(f,X)|0)+(a>>>13)|0)+(yt>>>26)|0,yt&=67108863,n=Math.imul(b,V),a=(a=Math.imul(b,U))+Math.imul(_,V)|0,i=Math.imul(_,U),n=n+Math.imul(m,H)|0,a=(a=a+Math.imul(m,G)|0)+Math.imul(y,H)|0,i=i+Math.imul(y,G)|0,n=n+Math.imul(d,W)|0,a=(a=a+Math.imul(d,X)|0)+Math.imul(g,W)|0,i=i+Math.imul(g,X)|0;var xt=(c+(n=n+Math.imul(h,J)|0)|0)+((8191&(a=(a=a+Math.imul(h,K)|0)+Math.imul(f,J)|0))<<13)|0;c=((i=i+Math.imul(f,K)|0)+(a>>>13)|0)+(xt>>>26)|0,xt&=67108863,n=Math.imul(k,V),a=(a=Math.imul(k,U))+Math.imul(T,V)|0,i=Math.imul(T,U),n=n+Math.imul(b,H)|0,a=(a=a+Math.imul(b,G)|0)+Math.imul(_,H)|0,i=i+Math.imul(_,G)|0,n=n+Math.imul(m,W)|0,a=(a=a+Math.imul(m,X)|0)+Math.imul(y,W)|0,i=i+Math.imul(y,X)|0,n=n+Math.imul(d,J)|0,a=(a=a+Math.imul(d,K)|0)+Math.imul(g,J)|0,i=i+Math.imul(g,K)|0;var bt=(c+(n=n+Math.imul(h,$)|0)|0)+((8191&(a=(a=a+Math.imul(h,tt)|0)+Math.imul(f,$)|0))<<13)|0;c=((i=i+Math.imul(f,tt)|0)+(a>>>13)|0)+(bt>>>26)|0,bt&=67108863,n=Math.imul(M,V),a=(a=Math.imul(M,U))+Math.imul(S,V)|0,i=Math.imul(S,U),n=n+Math.imul(k,H)|0,a=(a=a+Math.imul(k,G)|0)+Math.imul(T,H)|0,i=i+Math.imul(T,G)|0,n=n+Math.imul(b,W)|0,a=(a=a+Math.imul(b,X)|0)+Math.imul(_,W)|0,i=i+Math.imul(_,X)|0,n=n+Math.imul(m,J)|0,a=(a=a+Math.imul(m,K)|0)+Math.imul(y,J)|0,i=i+Math.imul(y,K)|0,n=n+Math.imul(d,$)|0,a=(a=a+Math.imul(d,tt)|0)+Math.imul(g,$)|0,i=i+Math.imul(g,tt)|0;var _t=(c+(n=n+Math.imul(h,rt)|0)|0)+((8191&(a=(a=a+Math.imul(h,nt)|0)+Math.imul(f,rt)|0))<<13)|0;c=((i=i+Math.imul(f,nt)|0)+(a>>>13)|0)+(_t>>>26)|0,_t&=67108863,n=Math.imul(C,V),a=(a=Math.imul(C,U))+Math.imul(L,V)|0,i=Math.imul(L,U),n=n+Math.imul(M,H)|0,a=(a=a+Math.imul(M,G)|0)+Math.imul(S,H)|0,i=i+Math.imul(S,G)|0,n=n+Math.imul(k,W)|0,a=(a=a+Math.imul(k,X)|0)+Math.imul(T,W)|0,i=i+Math.imul(T,X)|0,n=n+Math.imul(b,J)|0,a=(a=a+Math.imul(b,K)|0)+Math.imul(_,J)|0,i=i+Math.imul(_,K)|0,n=n+Math.imul(m,$)|0,a=(a=a+Math.imul(m,tt)|0)+Math.imul(y,$)|0,i=i+Math.imul(y,tt)|0,n=n+Math.imul(d,rt)|0,a=(a=a+Math.imul(d,nt)|0)+Math.imul(g,rt)|0,i=i+Math.imul(g,nt)|0;var wt=(c+(n=n+Math.imul(h,it)|0)|0)+((8191&(a=(a=a+Math.imul(h,ot)|0)+Math.imul(f,it)|0))<<13)|0;c=((i=i+Math.imul(f,ot)|0)+(a>>>13)|0)+(wt>>>26)|0,wt&=67108863,n=Math.imul(O,V),a=(a=Math.imul(O,U))+Math.imul(I,V)|0,i=Math.imul(I,U),n=n+Math.imul(C,H)|0,a=(a=a+Math.imul(C,G)|0)+Math.imul(L,H)|0,i=i+Math.imul(L,G)|0,n=n+Math.imul(M,W)|0,a=(a=a+Math.imul(M,X)|0)+Math.imul(S,W)|0,i=i+Math.imul(S,X)|0,n=n+Math.imul(k,J)|0,a=(a=a+Math.imul(k,K)|0)+Math.imul(T,J)|0,i=i+Math.imul(T,K)|0,n=n+Math.imul(b,$)|0,a=(a=a+Math.imul(b,tt)|0)+Math.imul(_,$)|0,i=i+Math.imul(_,tt)|0,n=n+Math.imul(m,rt)|0,a=(a=a+Math.imul(m,nt)|0)+Math.imul(y,rt)|0,i=i+Math.imul(y,nt)|0,n=n+Math.imul(d,it)|0,a=(a=a+Math.imul(d,ot)|0)+Math.imul(g,it)|0,i=i+Math.imul(g,ot)|0;var kt=(c+(n=n+Math.imul(h,lt)|0)|0)+((8191&(a=(a=a+Math.imul(h,ct)|0)+Math.imul(f,lt)|0))<<13)|0;c=((i=i+Math.imul(f,ct)|0)+(a>>>13)|0)+(kt>>>26)|0,kt&=67108863,n=Math.imul(D,V),a=(a=Math.imul(D,U))+Math.imul(R,V)|0,i=Math.imul(R,U),n=n+Math.imul(O,H)|0,a=(a=a+Math.imul(O,G)|0)+Math.imul(I,H)|0,i=i+Math.imul(I,G)|0,n=n+Math.imul(C,W)|0,a=(a=a+Math.imul(C,X)|0)+Math.imul(L,W)|0,i=i+Math.imul(L,X)|0,n=n+Math.imul(M,J)|0,a=(a=a+Math.imul(M,K)|0)+Math.imul(S,J)|0,i=i+Math.imul(S,K)|0,n=n+Math.imul(k,$)|0,a=(a=a+Math.imul(k,tt)|0)+Math.imul(T,$)|0,i=i+Math.imul(T,tt)|0,n=n+Math.imul(b,rt)|0,a=(a=a+Math.imul(b,nt)|0)+Math.imul(_,rt)|0,i=i+Math.imul(_,nt)|0,n=n+Math.imul(m,it)|0,a=(a=a+Math.imul(m,ot)|0)+Math.imul(y,it)|0,i=i+Math.imul(y,ot)|0,n=n+Math.imul(d,lt)|0,a=(a=a+Math.imul(d,ct)|0)+Math.imul(g,lt)|0,i=i+Math.imul(g,ct)|0;var Tt=(c+(n=n+Math.imul(h,ht)|0)|0)+((8191&(a=(a=a+Math.imul(h,ft)|0)+Math.imul(f,ht)|0))<<13)|0;c=((i=i+Math.imul(f,ft)|0)+(a>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,n=Math.imul(B,V),a=(a=Math.imul(B,U))+Math.imul(N,V)|0,i=Math.imul(N,U),n=n+Math.imul(D,H)|0,a=(a=a+Math.imul(D,G)|0)+Math.imul(R,H)|0,i=i+Math.imul(R,G)|0,n=n+Math.imul(O,W)|0,a=(a=a+Math.imul(O,X)|0)+Math.imul(I,W)|0,i=i+Math.imul(I,X)|0,n=n+Math.imul(C,J)|0,a=(a=a+Math.imul(C,K)|0)+Math.imul(L,J)|0,i=i+Math.imul(L,K)|0,n=n+Math.imul(M,$)|0,a=(a=a+Math.imul(M,tt)|0)+Math.imul(S,$)|0,i=i+Math.imul(S,tt)|0,n=n+Math.imul(k,rt)|0,a=(a=a+Math.imul(k,nt)|0)+Math.imul(T,rt)|0,i=i+Math.imul(T,nt)|0,n=n+Math.imul(b,it)|0,a=(a=a+Math.imul(b,ot)|0)+Math.imul(_,it)|0,i=i+Math.imul(_,ot)|0,n=n+Math.imul(m,lt)|0,a=(a=a+Math.imul(m,ct)|0)+Math.imul(y,lt)|0,i=i+Math.imul(y,ct)|0,n=n+Math.imul(d,ht)|0,a=(a=a+Math.imul(d,ft)|0)+Math.imul(g,ht)|0,i=i+Math.imul(g,ft)|0;var At=(c+(n=n+Math.imul(h,dt)|0)|0)+((8191&(a=(a=a+Math.imul(h,gt)|0)+Math.imul(f,dt)|0))<<13)|0;c=((i=i+Math.imul(f,gt)|0)+(a>>>13)|0)+(At>>>26)|0,At&=67108863,n=Math.imul(B,H),a=(a=Math.imul(B,G))+Math.imul(N,H)|0,i=Math.imul(N,G),n=n+Math.imul(D,W)|0,a=(a=a+Math.imul(D,X)|0)+Math.imul(R,W)|0,i=i+Math.imul(R,X)|0,n=n+Math.imul(O,J)|0,a=(a=a+Math.imul(O,K)|0)+Math.imul(I,J)|0,i=i+Math.imul(I,K)|0,n=n+Math.imul(C,$)|0,a=(a=a+Math.imul(C,tt)|0)+Math.imul(L,$)|0,i=i+Math.imul(L,tt)|0,n=n+Math.imul(M,rt)|0,a=(a=a+Math.imul(M,nt)|0)+Math.imul(S,rt)|0,i=i+Math.imul(S,nt)|0,n=n+Math.imul(k,it)|0,a=(a=a+Math.imul(k,ot)|0)+Math.imul(T,it)|0,i=i+Math.imul(T,ot)|0,n=n+Math.imul(b,lt)|0,a=(a=a+Math.imul(b,ct)|0)+Math.imul(_,lt)|0,i=i+Math.imul(_,ct)|0,n=n+Math.imul(m,ht)|0,a=(a=a+Math.imul(m,ft)|0)+Math.imul(y,ht)|0,i=i+Math.imul(y,ft)|0;var Mt=(c+(n=n+Math.imul(d,dt)|0)|0)+((8191&(a=(a=a+Math.imul(d,gt)|0)+Math.imul(g,dt)|0))<<13)|0;c=((i=i+Math.imul(g,gt)|0)+(a>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,n=Math.imul(B,W),a=(a=Math.imul(B,X))+Math.imul(N,W)|0,i=Math.imul(N,X),n=n+Math.imul(D,J)|0,a=(a=a+Math.imul(D,K)|0)+Math.imul(R,J)|0,i=i+Math.imul(R,K)|0,n=n+Math.imul(O,$)|0,a=(a=a+Math.imul(O,tt)|0)+Math.imul(I,$)|0,i=i+Math.imul(I,tt)|0,n=n+Math.imul(C,rt)|0,a=(a=a+Math.imul(C,nt)|0)+Math.imul(L,rt)|0,i=i+Math.imul(L,nt)|0,n=n+Math.imul(M,it)|0,a=(a=a+Math.imul(M,ot)|0)+Math.imul(S,it)|0,i=i+Math.imul(S,ot)|0,n=n+Math.imul(k,lt)|0,a=(a=a+Math.imul(k,ct)|0)+Math.imul(T,lt)|0,i=i+Math.imul(T,ct)|0,n=n+Math.imul(b,ht)|0,a=(a=a+Math.imul(b,ft)|0)+Math.imul(_,ht)|0,i=i+Math.imul(_,ft)|0;var St=(c+(n=n+Math.imul(m,dt)|0)|0)+((8191&(a=(a=a+Math.imul(m,gt)|0)+Math.imul(y,dt)|0))<<13)|0;c=((i=i+Math.imul(y,gt)|0)+(a>>>13)|0)+(St>>>26)|0,St&=67108863,n=Math.imul(B,J),a=(a=Math.imul(B,K))+Math.imul(N,J)|0,i=Math.imul(N,K),n=n+Math.imul(D,$)|0,a=(a=a+Math.imul(D,tt)|0)+Math.imul(R,$)|0,i=i+Math.imul(R,tt)|0,n=n+Math.imul(O,rt)|0,a=(a=a+Math.imul(O,nt)|0)+Math.imul(I,rt)|0,i=i+Math.imul(I,nt)|0,n=n+Math.imul(C,it)|0,a=(a=a+Math.imul(C,ot)|0)+Math.imul(L,it)|0,i=i+Math.imul(L,ot)|0,n=n+Math.imul(M,lt)|0,a=(a=a+Math.imul(M,ct)|0)+Math.imul(S,lt)|0,i=i+Math.imul(S,ct)|0,n=n+Math.imul(k,ht)|0,a=(a=a+Math.imul(k,ft)|0)+Math.imul(T,ht)|0,i=i+Math.imul(T,ft)|0;var Et=(c+(n=n+Math.imul(b,dt)|0)|0)+((8191&(a=(a=a+Math.imul(b,gt)|0)+Math.imul(_,dt)|0))<<13)|0;c=((i=i+Math.imul(_,gt)|0)+(a>>>13)|0)+(Et>>>26)|0,Et&=67108863,n=Math.imul(B,$),a=(a=Math.imul(B,tt))+Math.imul(N,$)|0,i=Math.imul(N,tt),n=n+Math.imul(D,rt)|0,a=(a=a+Math.imul(D,nt)|0)+Math.imul(R,rt)|0,i=i+Math.imul(R,nt)|0,n=n+Math.imul(O,it)|0,a=(a=a+Math.imul(O,ot)|0)+Math.imul(I,it)|0,i=i+Math.imul(I,ot)|0,n=n+Math.imul(C,lt)|0,a=(a=a+Math.imul(C,ct)|0)+Math.imul(L,lt)|0,i=i+Math.imul(L,ct)|0,n=n+Math.imul(M,ht)|0,a=(a=a+Math.imul(M,ft)|0)+Math.imul(S,ht)|0,i=i+Math.imul(S,ft)|0;var Ct=(c+(n=n+Math.imul(k,dt)|0)|0)+((8191&(a=(a=a+Math.imul(k,gt)|0)+Math.imul(T,dt)|0))<<13)|0;c=((i=i+Math.imul(T,gt)|0)+(a>>>13)|0)+(Ct>>>26)|0,Ct&=67108863,n=Math.imul(B,rt),a=(a=Math.imul(B,nt))+Math.imul(N,rt)|0,i=Math.imul(N,nt),n=n+Math.imul(D,it)|0,a=(a=a+Math.imul(D,ot)|0)+Math.imul(R,it)|0,i=i+Math.imul(R,ot)|0,n=n+Math.imul(O,lt)|0,a=(a=a+Math.imul(O,ct)|0)+Math.imul(I,lt)|0,i=i+Math.imul(I,ct)|0,n=n+Math.imul(C,ht)|0,a=(a=a+Math.imul(C,ft)|0)+Math.imul(L,ht)|0,i=i+Math.imul(L,ft)|0;var Lt=(c+(n=n+Math.imul(M,dt)|0)|0)+((8191&(a=(a=a+Math.imul(M,gt)|0)+Math.imul(S,dt)|0))<<13)|0;c=((i=i+Math.imul(S,gt)|0)+(a>>>13)|0)+(Lt>>>26)|0,Lt&=67108863,n=Math.imul(B,it),a=(a=Math.imul(B,ot))+Math.imul(N,it)|0,i=Math.imul(N,ot),n=n+Math.imul(D,lt)|0,a=(a=a+Math.imul(D,ct)|0)+Math.imul(R,lt)|0,i=i+Math.imul(R,ct)|0,n=n+Math.imul(O,ht)|0,a=(a=a+Math.imul(O,ft)|0)+Math.imul(I,ht)|0,i=i+Math.imul(I,ft)|0;var Pt=(c+(n=n+Math.imul(C,dt)|0)|0)+((8191&(a=(a=a+Math.imul(C,gt)|0)+Math.imul(L,dt)|0))<<13)|0;c=((i=i+Math.imul(L,gt)|0)+(a>>>13)|0)+(Pt>>>26)|0,Pt&=67108863,n=Math.imul(B,lt),a=(a=Math.imul(B,ct))+Math.imul(N,lt)|0,i=Math.imul(N,ct),n=n+Math.imul(D,ht)|0,a=(a=a+Math.imul(D,ft)|0)+Math.imul(R,ht)|0,i=i+Math.imul(R,ft)|0;var Ot=(c+(n=n+Math.imul(O,dt)|0)|0)+((8191&(a=(a=a+Math.imul(O,gt)|0)+Math.imul(I,dt)|0))<<13)|0;c=((i=i+Math.imul(I,gt)|0)+(a>>>13)|0)+(Ot>>>26)|0,Ot&=67108863,n=Math.imul(B,ht),a=(a=Math.imul(B,ft))+Math.imul(N,ht)|0,i=Math.imul(N,ft);var It=(c+(n=n+Math.imul(D,dt)|0)|0)+((8191&(a=(a=a+Math.imul(D,gt)|0)+Math.imul(R,dt)|0))<<13)|0;c=((i=i+Math.imul(R,gt)|0)+(a>>>13)|0)+(It>>>26)|0,It&=67108863;var zt=(c+(n=Math.imul(B,dt))|0)+((8191&(a=(a=Math.imul(B,gt))+Math.imul(N,dt)|0))<<13)|0;return c=((i=Math.imul(N,gt))+(a>>>13)|0)+(zt>>>26)|0,zt&=67108863,l[0]=vt,l[1]=mt,l[2]=yt,l[3]=xt,l[4]=bt,l[5]=_t,l[6]=wt,l[7]=kt,l[8]=Tt,l[9]=At,l[10]=Mt,l[11]=St,l[12]=Et,l[13]=Ct,l[14]=Lt,l[15]=Pt,l[16]=Ot,l[17]=It,l[18]=zt,0!==c&&(l[19]=c,r.length++),r};function d(t,e,r){return(new g).mulp(t,e,r)}function g(t,e){this.x=t,this.y=e}Math.imul||(p=f),i.prototype.mulTo=function(t,e){var r=this.length+t.length;return 10===this.length&&10===t.length?p(this,t,e):r<63?f(this,t,e):r<1024?function(t,e,r){r.negative=e.negative^t.negative,r.length=t.length+e.length;for(var n=0,a=0,i=0;i<r.length-1;i++){var o=a;a=0;for(var s=67108863&n,l=Math.min(i,e.length-1),c=Math.max(0,i-t.length+1);c<=l;c++){var u=i-c,h=(0|t.words[u])*(0|e.words[c]),f=67108863&h;s=67108863&(f=f+s|0),a+=(o=(o=o+(h/67108864|0)|0)+(f>>>26)|0)>>>26,o&=67108863}r.words[i]=s,n=o,o=a}return 0!==n?r.words[i]=n:r.length--,r.strip()}(this,t,e):d(this,t,e)},g.prototype.makeRBT=function(t){for(var e=new Array(t),r=i.prototype._countBits(t)-1,n=0;n<t;n++)e[n]=this.revBin(n,r,t);return e},g.prototype.revBin=function(t,e,r){if(0===t||t===r-1)return t;for(var n=0,a=0;a<e;a++)n|=(1&t)<<e-a-1,t>>=1;return n},g.prototype.permute=function(t,e,r,n,a,i){for(var o=0;o<i;o++)n[o]=e[t[o]],a[o]=r[t[o]]},g.prototype.transform=function(t,e,r,n,a,i){this.permute(i,t,e,r,n,a);for(var o=1;o<a;o<<=1)for(var s=o<<1,l=Math.cos(2*Math.PI/s),c=Math.sin(2*Math.PI/s),u=0;u<a;u+=s)for(var h=l,f=c,p=0;p<o;p++){var d=r[u+p],g=n[u+p],v=r[u+p+o],m=n[u+p+o],y=h*v-f*m;m=h*m+f*v,v=y,r[u+p]=d+v,n[u+p]=g+m,r[u+p+o]=d-v,n[u+p+o]=g-m,p!==s&&(y=l*h-c*f,f=l*f+c*h,h=y)}},g.prototype.guessLen13b=function(t,e){var r=1|Math.max(e,t),n=1&r,a=0;for(r=r/2|0;r;r>>>=1)a++;return 1<<a+1+n},g.prototype.conjugate=function(t,e,r){if(!(r<=1))for(var n=0;n<r/2;n++){var a=t[n];t[n]=t[r-n-1],t[r-n-1]=a,a=e[n],e[n]=-e[r-n-1],e[r-n-1]=-a}},g.prototype.normalize13b=function(t,e){for(var r=0,n=0;n<e/2;n++){var a=8192*Math.round(t[2*n+1]/e)+Math.round(t[2*n]/e)+r;t[n]=67108863&a,r=a<67108864?0:a/67108864|0}return t},g.prototype.convert13b=function(t,e,r,a){for(var i=0,o=0;o<e;o++)i+=0|t[o],r[2*o]=8191&i,i>>>=13,r[2*o+1]=8191&i,i>>>=13;for(o=2*e;o<a;++o)r[o]=0;n(0===i),n(0==(-8192&i))},g.prototype.stub=function(t){for(var e=new Array(t),r=0;r<t;r++)e[r]=0;return e},g.prototype.mulp=function(t,e,r){var n=2*this.guessLen13b(t.length,e.length),a=this.makeRBT(n),i=this.stub(n),o=new Array(n),s=new Array(n),l=new Array(n),c=new Array(n),u=new Array(n),h=new Array(n),f=r.words;f.length=n,this.convert13b(t.words,t.length,o,n),this.convert13b(e.words,e.length,c,n),this.transform(o,i,s,l,n,a),this.transform(c,i,u,h,n,a);for(var p=0;p<n;p++){var d=s[p]*u[p]-l[p]*h[p];l[p]=s[p]*h[p]+l[p]*u[p],s[p]=d}return this.conjugate(s,l,n),this.transform(s,l,f,i,n,a),this.conjugate(f,i,n),this.normalize13b(f,n),r.negative=t.negative^e.negative,r.length=t.length+e.length,r.strip()},i.prototype.mul=function(t){var e=new i(null);return e.words=new Array(this.length+t.length),this.mulTo(t,e)},i.prototype.mulf=function(t){var e=new i(null);return e.words=new Array(this.length+t.length),d(this,t,e)},i.prototype.imul=function(t){return this.clone().mulTo(t,this)},i.prototype.imuln=function(t){n(\"number\"==typeof t),n(t<67108864);for(var e=0,r=0;r<this.length;r++){var a=(0|this.words[r])*t,i=(67108863&a)+(67108863&e);e>>=26,e+=a/67108864|0,e+=i>>>26,this.words[r]=67108863&i}return 0!==e&&(this.words[r]=e,this.length++),this},i.prototype.muln=function(t){return this.clone().imuln(t)},i.prototype.sqr=function(){return this.mul(this)},i.prototype.isqr=function(){return this.imul(this.clone())},i.prototype.pow=function(t){var e=function(t){for(var e=new Array(t.bitLength()),r=0;r<e.length;r++){var n=r/26|0,a=r%26;e[r]=(t.words[n]&1<<a)>>>a}return e}(t);if(0===e.length)return new i(1);for(var r=this,n=0;n<e.length&&0===e[n];n++,r=r.sqr());if(++n<e.length)for(var a=r.sqr();n<e.length;n++,a=a.sqr())0!==e[n]&&(r=r.mul(a));return r},i.prototype.iushln=function(t){n(\"number\"==typeof t&&t>=0);var e,r=t%26,a=(t-r)/26,i=67108863>>>26-r<<26-r;if(0!==r){var o=0;for(e=0;e<this.length;e++){var s=this.words[e]&i,l=(0|this.words[e])-s<<r;this.words[e]=l|o,o=s>>>26-r}o&&(this.words[e]=o,this.length++)}if(0!==a){for(e=this.length-1;e>=0;e--)this.words[e+a]=this.words[e];for(e=0;e<a;e++)this.words[e]=0;this.length+=a}return this.strip()},i.prototype.ishln=function(t){return n(0===this.negative),this.iushln(t)},i.prototype.iushrn=function(t,e,r){var a;n(\"number\"==typeof t&&t>=0),a=e?(e-e%26)/26:0;var i=t%26,o=Math.min((t-i)/26,this.length),s=67108863^67108863>>>i<<i,l=r;if(a-=o,a=Math.max(0,a),l){for(var c=0;c<o;c++)l.words[c]=this.words[c];l.length=o}if(0===o);else if(this.length>o)for(this.length-=o,c=0;c<this.length;c++)this.words[c]=this.words[c+o];else this.words[0]=0,this.length=1;var u=0;for(c=this.length-1;c>=0&&(0!==u||c>=a);c--){var h=0|this.words[c];this.words[c]=u<<26-i|h>>>i,u=h&s}return l&&0!==u&&(l.words[l.length++]=u),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},i.prototype.ishrn=function(t,e,r){return n(0===this.negative),this.iushrn(t,e,r)},i.prototype.shln=function(t){return this.clone().ishln(t)},i.prototype.ushln=function(t){return this.clone().iushln(t)},i.prototype.shrn=function(t){return this.clone().ishrn(t)},i.prototype.ushrn=function(t){return this.clone().iushrn(t)},i.prototype.testn=function(t){n(\"number\"==typeof t&&t>=0);var e=t%26,r=(t-e)/26,a=1<<e;return!(this.length<=r)&&!!(this.words[r]&a)},i.prototype.imaskn=function(t){n(\"number\"==typeof t&&t>=0);var e=t%26,r=(t-e)/26;if(n(0===this.negative,\"imaskn works only with positive numbers\"),this.length<=r)return this;if(0!==e&&r++,this.length=Math.min(r,this.length),0!==e){var a=67108863^67108863>>>e<<e;this.words[this.length-1]&=a}return this.strip()},i.prototype.maskn=function(t){return this.clone().imaskn(t)},i.prototype.iaddn=function(t){return n(\"number\"==typeof t),n(t<67108864),t<0?this.isubn(-t):0!==this.negative?1===this.length&&(0|this.words[0])<t?(this.words[0]=t-(0|this.words[0]),this.negative=0,this):(this.negative=0,this.isubn(t),this.negative=1,this):this._iaddn(t)},i.prototype._iaddn=function(t){this.words[0]+=t;for(var e=0;e<this.length&&this.words[e]>=67108864;e++)this.words[e]-=67108864,e===this.length-1?this.words[e+1]=1:this.words[e+1]++;return this.length=Math.max(this.length,e+1),this},i.prototype.isubn=function(t){if(n(\"number\"==typeof t),n(t<67108864),t<0)return this.iaddn(-t);if(0!==this.negative)return this.negative=0,this.iaddn(t),this.negative=1,this;if(this.words[0]-=t,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var e=0;e<this.length&&this.words[e]<0;e++)this.words[e]+=67108864,this.words[e+1]-=1;return this.strip()},i.prototype.addn=function(t){return this.clone().iaddn(t)},i.prototype.subn=function(t){return this.clone().isubn(t)},i.prototype.iabs=function(){return this.negative=0,this},i.prototype.abs=function(){return this.clone().iabs()},i.prototype._ishlnsubmul=function(t,e,r){var a,i,o=t.length+r;this._expand(o);var s=0;for(a=0;a<t.length;a++){i=(0|this.words[a+r])+s;var l=(0|t.words[a])*e;s=((i-=67108863&l)>>26)-(l/67108864|0),this.words[a+r]=67108863&i}for(;a<this.length-r;a++)s=(i=(0|this.words[a+r])+s)>>26,this.words[a+r]=67108863&i;if(0===s)return this.strip();for(n(-1===s),s=0,a=0;a<this.length;a++)s=(i=-(0|this.words[a])+s)>>26,this.words[a]=67108863&i;return this.negative=1,this.strip()},i.prototype._wordDiv=function(t,e){var r=(this.length,t.length),n=this.clone(),a=t,o=0|a.words[a.length-1];0!==(r=26-this._countBits(o))&&(a=a.ushln(r),n.iushln(r),o=0|a.words[a.length-1]);var s,l=n.length-a.length;if(\"mod\"!==e){(s=new i(null)).length=l+1,s.words=new Array(s.length);for(var c=0;c<s.length;c++)s.words[c]=0}var u=n.clone()._ishlnsubmul(a,1,l);0===u.negative&&(n=u,s&&(s.words[l]=1));for(var h=l-1;h>=0;h--){var f=67108864*(0|n.words[a.length+h])+(0|n.words[a.length+h-1]);for(f=Math.min(f/o|0,67108863),n._ishlnsubmul(a,f,h);0!==n.negative;)f--,n.negative=0,n._ishlnsubmul(a,1,h),n.isZero()||(n.negative^=1);s&&(s.words[h]=f)}return s&&s.strip(),n.strip(),\"div\"!==e&&0!==r&&n.iushrn(r),{div:s||null,mod:n}},i.prototype.divmod=function(t,e,r){return n(!t.isZero()),this.isZero()?{div:new i(0),mod:new i(0)}:0!==this.negative&&0===t.negative?(s=this.neg().divmod(t,e),\"mod\"!==e&&(a=s.div.neg()),\"div\"!==e&&(o=s.mod.neg(),r&&0!==o.negative&&o.iadd(t)),{div:a,mod:o}):0===this.negative&&0!==t.negative?(s=this.divmod(t.neg(),e),\"mod\"!==e&&(a=s.div.neg()),{div:a,mod:s.mod}):0!=(this.negative&t.negative)?(s=this.neg().divmod(t.neg(),e),\"div\"!==e&&(o=s.mod.neg(),r&&0!==o.negative&&o.isub(t)),{div:s.div,mod:o}):t.length>this.length||this.cmp(t)<0?{div:new i(0),mod:this}:1===t.length?\"div\"===e?{div:this.divn(t.words[0]),mod:null}:\"mod\"===e?{div:null,mod:new i(this.modn(t.words[0]))}:{div:this.divn(t.words[0]),mod:new i(this.modn(t.words[0]))}:this._wordDiv(t,e);var a,o,s},i.prototype.div=function(t){return this.divmod(t,\"div\",!1).div},i.prototype.mod=function(t){return this.divmod(t,\"mod\",!1).mod},i.prototype.umod=function(t){return this.divmod(t,\"mod\",!0).mod},i.prototype.divRound=function(t){var e=this.divmod(t);if(e.mod.isZero())return e.div;var r=0!==e.div.negative?e.mod.isub(t):e.mod,n=t.ushrn(1),a=t.andln(1),i=r.cmp(n);return i<0||1===a&&0===i?e.div:0!==e.div.negative?e.div.isubn(1):e.div.iaddn(1)},i.prototype.modn=function(t){n(t<=67108863);for(var e=(1<<26)%t,r=0,a=this.length-1;a>=0;a--)r=(e*r+(0|this.words[a]))%t;return r},i.prototype.idivn=function(t){n(t<=67108863);for(var e=0,r=this.length-1;r>=0;r--){var a=(0|this.words[r])+67108864*e;this.words[r]=a/t|0,e=a%t}return this.strip()},i.prototype.divn=function(t){return this.clone().idivn(t)},i.prototype.egcd=function(t){n(0===t.negative),n(!t.isZero());var e=this,r=t.clone();e=0!==e.negative?e.umod(t):e.clone();for(var a=new i(1),o=new i(0),s=new i(0),l=new i(1),c=0;e.isEven()&&r.isEven();)e.iushrn(1),r.iushrn(1),++c;for(var u=r.clone(),h=e.clone();!e.isZero();){for(var f=0,p=1;0==(e.words[0]&p)&&f<26;++f,p<<=1);if(f>0)for(e.iushrn(f);f-- >0;)(a.isOdd()||o.isOdd())&&(a.iadd(u),o.isub(h)),a.iushrn(1),o.iushrn(1);for(var d=0,g=1;0==(r.words[0]&g)&&d<26;++d,g<<=1);if(d>0)for(r.iushrn(d);d-- >0;)(s.isOdd()||l.isOdd())&&(s.iadd(u),l.isub(h)),s.iushrn(1),l.iushrn(1);e.cmp(r)>=0?(e.isub(r),a.isub(s),o.isub(l)):(r.isub(e),s.isub(a),l.isub(o))}return{a:s,b:l,gcd:r.iushln(c)}},i.prototype._invmp=function(t){n(0===t.negative),n(!t.isZero());var e=this,r=t.clone();e=0!==e.negative?e.umod(t):e.clone();for(var a,o=new i(1),s=new i(0),l=r.clone();e.cmpn(1)>0&&r.cmpn(1)>0;){for(var c=0,u=1;0==(e.words[0]&u)&&c<26;++c,u<<=1);if(c>0)for(e.iushrn(c);c-- >0;)o.isOdd()&&o.iadd(l),o.iushrn(1);for(var h=0,f=1;0==(r.words[0]&f)&&h<26;++h,f<<=1);if(h>0)for(r.iushrn(h);h-- >0;)s.isOdd()&&s.iadd(l),s.iushrn(1);e.cmp(r)>=0?(e.isub(r),o.isub(s)):(r.isub(e),s.isub(o))}return(a=0===e.cmpn(1)?o:s).cmpn(0)<0&&a.iadd(t),a},i.prototype.gcd=function(t){if(this.isZero())return t.abs();if(t.isZero())return this.abs();var e=this.clone(),r=t.clone();e.negative=0,r.negative=0;for(var n=0;e.isEven()&&r.isEven();n++)e.iushrn(1),r.iushrn(1);for(;;){for(;e.isEven();)e.iushrn(1);for(;r.isEven();)r.iushrn(1);var a=e.cmp(r);if(a<0){var i=e;e=r,r=i}else if(0===a||0===r.cmpn(1))break;e.isub(r)}return r.iushln(n)},i.prototype.invm=function(t){return this.egcd(t).a.umod(t)},i.prototype.isEven=function(){return 0==(1&this.words[0])},i.prototype.isOdd=function(){return 1==(1&this.words[0])},i.prototype.andln=function(t){return this.words[0]&t},i.prototype.bincn=function(t){n(\"number\"==typeof t);var e=t%26,r=(t-e)/26,a=1<<e;if(this.length<=r)return this._expand(r+1),this.words[r]|=a,this;for(var i=a,o=r;0!==i&&o<this.length;o++){var s=0|this.words[o];i=(s+=i)>>>26,s&=67108863,this.words[o]=s}return 0!==i&&(this.words[o]=i,this.length++),this},i.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},i.prototype.cmpn=function(t){var e,r=t<0;if(0!==this.negative&&!r)return-1;if(0===this.negative&&r)return 1;if(this.strip(),this.length>1)e=1;else{r&&(t=-t),n(t<=67108863,\"Number is too big\");var a=0|this.words[0];e=a===t?0:a<t?-1:1}return 0!==this.negative?0|-e:e},i.prototype.cmp=function(t){if(0!==this.negative&&0===t.negative)return-1;if(0===this.negative&&0!==t.negative)return 1;var e=this.ucmp(t);return 0!==this.negative?0|-e:e},i.prototype.ucmp=function(t){if(this.length>t.length)return 1;if(this.length<t.length)return-1;for(var e=0,r=this.length-1;r>=0;r--){var n=0|this.words[r],a=0|t.words[r];if(n!==a){n<a?e=-1:n>a&&(e=1);break}}return e},i.prototype.gtn=function(t){return 1===this.cmpn(t)},i.prototype.gt=function(t){return 1===this.cmp(t)},i.prototype.gten=function(t){return this.cmpn(t)>=0},i.prototype.gte=function(t){return this.cmp(t)>=0},i.prototype.ltn=function(t){return-1===this.cmpn(t)},i.prototype.lt=function(t){return-1===this.cmp(t)},i.prototype.lten=function(t){return this.cmpn(t)<=0},i.prototype.lte=function(t){return this.cmp(t)<=0},i.prototype.eqn=function(t){return 0===this.cmpn(t)},i.prototype.eq=function(t){return 0===this.cmp(t)},i.red=function(t){return new w(t)},i.prototype.toRed=function(t){return n(!this.red,\"Already a number in reduction context\"),n(0===this.negative,\"red works only with positives\"),t.convertTo(this)._forceRed(t)},i.prototype.fromRed=function(){return n(this.red,\"fromRed works only with numbers in reduction context\"),this.red.convertFrom(this)},i.prototype._forceRed=function(t){return this.red=t,this},i.prototype.forceRed=function(t){return n(!this.red,\"Already a number in reduction context\"),this._forceRed(t)},i.prototype.redAdd=function(t){return n(this.red,\"redAdd works only with red numbers\"),this.red.add(this,t)},i.prototype.redIAdd=function(t){return n(this.red,\"redIAdd works only with red numbers\"),this.red.iadd(this,t)},i.prototype.redSub=function(t){return n(this.red,\"redSub works only with red numbers\"),this.red.sub(this,t)},i.prototype.redISub=function(t){return n(this.red,\"redISub works only with red numbers\"),this.red.isub(this,t)},i.prototype.redShl=function(t){return n(this.red,\"redShl works only with red numbers\"),this.red.shl(this,t)},i.prototype.redMul=function(t){return n(this.red,\"redMul works only with red numbers\"),this.red._verify2(this,t),this.red.mul(this,t)},i.prototype.redIMul=function(t){return n(this.red,\"redMul works only with red numbers\"),this.red._verify2(this,t),this.red.imul(this,t)},i.prototype.redSqr=function(){return n(this.red,\"redSqr works only with red numbers\"),this.red._verify1(this),this.red.sqr(this)},i.prototype.redISqr=function(){return n(this.red,\"redISqr works only with red numbers\"),this.red._verify1(this),this.red.isqr(this)},i.prototype.redSqrt=function(){return n(this.red,\"redSqrt works only with red numbers\"),this.red._verify1(this),this.red.sqrt(this)},i.prototype.redInvm=function(){return n(this.red,\"redInvm works only with red numbers\"),this.red._verify1(this),this.red.invm(this)},i.prototype.redNeg=function(){return n(this.red,\"redNeg works only with red numbers\"),this.red._verify1(this),this.red.neg(this)},i.prototype.redPow=function(t){return n(this.red&&!t.red,\"redPow(normalNum)\"),this.red._verify1(this),this.red.pow(this,t)};var v={k256:null,p224:null,p192:null,p25519:null};function m(t,e){this.name=t,this.p=new i(e,16),this.n=this.p.bitLength(),this.k=new i(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function y(){m.call(this,\"k256\",\"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f\")}function x(){m.call(this,\"p224\",\"ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001\")}function b(){m.call(this,\"p192\",\"ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff\")}function _(){m.call(this,\"25519\",\"7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed\")}function w(t){if(\"string\"==typeof t){var e=i._prime(t);this.m=e.p,this.prime=e}else n(t.gtn(1),\"modulus must be greater than 1\"),this.m=t,this.prime=null}function k(t){w.call(this,t),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new i(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}m.prototype._tmp=function(){var t=new i(null);return t.words=new Array(Math.ceil(this.n/13)),t},m.prototype.ireduce=function(t){var e,r=t;do{this.split(r,this.tmp),e=(r=(r=this.imulK(r)).iadd(this.tmp)).bitLength()}while(e>this.n);var n=e<this.n?-1:r.ucmp(this.p);return 0===n?(r.words[0]=0,r.length=1):n>0?r.isub(this.p):r.strip(),r},m.prototype.split=function(t,e){t.iushrn(this.n,0,e)},m.prototype.imulK=function(t){return t.imul(this.k)},a(y,m),y.prototype.split=function(t,e){for(var r=Math.min(t.length,9),n=0;n<r;n++)e.words[n]=t.words[n];if(e.length=r,t.length<=9)return t.words[0]=0,void(t.length=1);var a=t.words[9];for(e.words[e.length++]=4194303&a,n=10;n<t.length;n++){var i=0|t.words[n];t.words[n-10]=(4194303&i)<<4|a>>>22,a=i}a>>>=22,t.words[n-10]=a,0===a&&t.length>10?t.length-=10:t.length-=9},y.prototype.imulK=function(t){t.words[t.length]=0,t.words[t.length+1]=0,t.length+=2;for(var e=0,r=0;r<t.length;r++){var n=0|t.words[r];e+=977*n,t.words[r]=67108863&e,e=64*n+(e/67108864|0)}return 0===t.words[t.length-1]&&(t.length--,0===t.words[t.length-1]&&t.length--),t},a(x,m),a(b,m),a(_,m),_.prototype.imulK=function(t){for(var e=0,r=0;r<t.length;r++){var n=19*(0|t.words[r])+e,a=67108863&n;n>>>=26,t.words[r]=a,e=n}return 0!==e&&(t.words[t.length++]=e),t},i._prime=function(t){if(v[t])return v[t];var e;if(\"k256\"===t)e=new y;else if(\"p224\"===t)e=new x;else if(\"p192\"===t)e=new b;else{if(\"p25519\"!==t)throw new Error(\"Unknown prime \"+t);e=new _}return v[t]=e,e},w.prototype._verify1=function(t){n(0===t.negative,\"red works only with positives\"),n(t.red,\"red works only with red numbers\")},w.prototype._verify2=function(t,e){n(0==(t.negative|e.negative),\"red works only with positives\"),n(t.red&&t.red===e.red,\"red works only with red numbers\")},w.prototype.imod=function(t){return this.prime?this.prime.ireduce(t)._forceRed(this):t.umod(this.m)._forceRed(this)},w.prototype.neg=function(t){return t.isZero()?t.clone():this.m.sub(t)._forceRed(this)},w.prototype.add=function(t,e){this._verify2(t,e);var r=t.add(e);return r.cmp(this.m)>=0&&r.isub(this.m),r._forceRed(this)},w.prototype.iadd=function(t,e){this._verify2(t,e);var r=t.iadd(e);return r.cmp(this.m)>=0&&r.isub(this.m),r},w.prototype.sub=function(t,e){this._verify2(t,e);var r=t.sub(e);return r.cmpn(0)<0&&r.iadd(this.m),r._forceRed(this)},w.prototype.isub=function(t,e){this._verify2(t,e);var r=t.isub(e);return r.cmpn(0)<0&&r.iadd(this.m),r},w.prototype.shl=function(t,e){return this._verify1(t),this.imod(t.ushln(e))},w.prototype.imul=function(t,e){return this._verify2(t,e),this.imod(t.imul(e))},w.prototype.mul=function(t,e){return this._verify2(t,e),this.imod(t.mul(e))},w.prototype.isqr=function(t){return this.imul(t,t.clone())},w.prototype.sqr=function(t){return this.mul(t,t)},w.prototype.sqrt=function(t){if(t.isZero())return t.clone();var e=this.m.andln(3);if(n(e%2==1),3===e){var r=this.m.add(new i(1)).iushrn(2);return this.pow(t,r)}for(var a=this.m.subn(1),o=0;!a.isZero()&&0===a.andln(1);)o++,a.iushrn(1);n(!a.isZero());var s=new i(1).toRed(this),l=s.redNeg(),c=this.m.subn(1).iushrn(1),u=this.m.bitLength();for(u=new i(2*u*u).toRed(this);0!==this.pow(u,c).cmp(l);)u.redIAdd(l);for(var h=this.pow(u,a),f=this.pow(t,a.addn(1).iushrn(1)),p=this.pow(t,a),d=o;0!==p.cmp(s);){for(var g=p,v=0;0!==g.cmp(s);v++)g=g.redSqr();n(v<d);var m=this.pow(h,new i(1).iushln(d-v-1));f=f.redMul(m),h=m.redSqr(),p=p.redMul(h),d=v}return f},w.prototype.invm=function(t){var e=t._invmp(this.m);return 0!==e.negative?(e.negative=0,this.imod(e).redNeg()):this.imod(e)},w.prototype.pow=function(t,e){if(e.isZero())return new i(1).toRed(this);if(0===e.cmpn(1))return t.clone();var r=new Array(16);r[0]=new i(1).toRed(this),r[1]=t;for(var n=2;n<r.length;n++)r[n]=this.mul(r[n-1],t);var a=r[0],o=0,s=0,l=e.bitLength()%26;for(0===l&&(l=26),n=e.length-1;n>=0;n--){for(var c=e.words[n],u=l-1;u>=0;u--){var h=c>>u&1;a!==r[0]&&(a=this.sqr(a)),0!==h||0!==o?(o<<=1,o|=h,(4===++s||0===n&&0===u)&&(a=this.mul(a,r[o]),s=0,o=0)):s=0}l=26}return a},w.prototype.convertTo=function(t){var e=t.umod(this.m);return e===t?e.clone():e},w.prototype.convertFrom=function(t){var e=t.clone();return e.red=null,e},i.mont=function(t){return new k(t)},a(k,w),k.prototype.convertTo=function(t){return this.imod(t.ushln(this.shift))},k.prototype.convertFrom=function(t){var e=this.imod(t.mul(this.rinv));return e.red=null,e},k.prototype.imul=function(t,e){if(t.isZero()||e.isZero())return t.words[0]=0,t.length=1,t;var r=t.imul(e),n=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),a=r.isub(n).iushrn(this.shift),i=a;return a.cmp(this.m)>=0?i=a.isub(this.m):a.cmpn(0)<0&&(i=a.iadd(this.m)),i._forceRed(this)},k.prototype.mul=function(t,e){if(t.isZero()||e.isZero())return new i(0)._forceRed(this);var r=t.mul(e),n=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),a=r.isub(n).iushrn(this.shift),o=a;return a.cmp(this.m)>=0?o=a.isub(this.m):a.cmpn(0)<0&&(o=a.iadd(this.m)),o._forceRed(this)},k.prototype.invm=function(t){return this.imod(t._invmp(this.m).mul(this.r2))._forceRed(this)}}(\"undefined\"==typeof e||e,this)},{buffer:104}],96:[function(t,e,r){\"use strict\";e.exports=function(t){var e,r,n,a=t.length,i=0;for(e=0;e<a;++e)i+=t[e].length;var o=new Array(i),s=0;for(e=0;e<a;++e){var l=t[e],c=l.length;for(r=0;r<c;++r){var u=o[s++]=new Array(c-1),h=0;for(n=0;n<c;++n)n!==r&&(u[h++]=l[n]);if(1&r){var f=u[1];u[1]=u[0],u[0]=f}}}return o}},{}],97:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){switch(arguments.length){case 1:return n=[],c(a=t,a,u,!0),n;case 2:return\"function\"==typeof e?c(t,t,e,!0):function(t,e){return n=[],c(t,e,u,!1),n}(t,e);case 3:return c(t,e,r,!1);default:throw new Error(\"box-intersect: Invalid arguments\")}var a};var n,a=t(\"typedarray-pool\"),i=t(\"./lib/sweep\"),o=t(\"./lib/intersect\");function s(t,e){for(var r=0;r<t;++r)if(!(e[r]<=e[r+t]))return!0;return!1}function l(t,e,r,n){for(var a=0,i=0,o=0,l=t.length;o<l;++o){var c=t[o];if(!s(e,c)){for(var u=0;u<2*e;++u)r[a++]=c[u];n[i++]=o}}return i}function c(t,e,r,n){var s=t.length,c=e.length;if(!(s<=0||c<=0)){var u=t[0].length>>>1;if(!(u<=0)){var h,f=a.mallocDouble(2*u*s),p=a.mallocInt32(s);if((s=l(t,u,f,p))>0){if(1===u&&n)i.init(s),h=i.sweepComplete(u,r,0,s,f,p,0,s,f,p);else{var d=a.mallocDouble(2*u*c),g=a.mallocInt32(c);(c=l(e,u,d,g))>0&&(i.init(s+c),h=1===u?i.sweepBipartite(u,r,0,s,f,p,0,c,d,g):o(u,r,n,s,f,p,c,d,g),a.free(d),a.free(g))}a.free(f),a.free(p)}return h}}}function u(t,e){n.push([t,e])}},{\"./lib/intersect\":99,\"./lib/sweep\":103,\"typedarray-pool\":546}],98:[function(t,e,r){\"use strict\";var n=\"d\",a=\"ax\",i=\"vv\",o=\"fp\",s=\"es\",l=\"rs\",c=\"re\",u=\"rb\",h=\"ri\",f=\"rp\",p=\"bs\",d=\"be\",g=\"bb\",v=\"bi\",m=\"bp\",y=\"rv\",x=\"Q\",b=[n,a,i,l,c,u,h,p,d,g,v];function _(t){var e=\"bruteForce\"+(t?\"Full\":\"Partial\"),r=[],_=b.slice();t||_.splice(3,0,o);var w=[\"function \"+e+\"(\"+_.join()+\"){\"];function k(e,o){var _=function(t,e,r){var o=\"bruteForce\"+(t?\"Red\":\"Blue\")+(e?\"Flip\":\"\")+(r?\"Full\":\"\"),_=[\"function \",o,\"(\",b.join(),\"){\",\"var \",s,\"=2*\",n,\";\"],w=\"for(var i=\"+l+\",\"+f+\"=\"+s+\"*\"+l+\";i<\"+c+\";++i,\"+f+\"+=\"+s+\"){var x0=\"+u+\"[\"+a+\"+\"+f+\"],x1=\"+u+\"[\"+a+\"+\"+f+\"+\"+n+\"],xi=\"+h+\"[i];\",k=\"for(var j=\"+p+\",\"+m+\"=\"+s+\"*\"+p+\";j<\"+d+\";++j,\"+m+\"+=\"+s+\"){var y0=\"+g+\"[\"+a+\"+\"+m+\"],\"+(r?\"y1=\"+g+\"[\"+a+\"+\"+m+\"+\"+n+\"],\":\"\")+\"yi=\"+v+\"[j];\";return t?_.push(w,x,\":\",k):_.push(k,x,\":\",w),r?_.push(\"if(y1<x0||x1<y0)continue;\"):e?_.push(\"if(y0<=x0||x1<y0)continue;\"):_.push(\"if(y0<x0||x1<y0)continue;\"),_.push(\"for(var k=\"+a+\"+1;k<\"+n+\";++k){var r0=\"+u+\"[k+\"+f+\"],r1=\"+u+\"[k+\"+n+\"+\"+f+\"],b0=\"+g+\"[k+\"+m+\"],b1=\"+g+\"[k+\"+n+\"+\"+m+\"];if(r1<b0||b1<r0)continue \"+x+\";}var \"+y+\"=\"+i+\"(\"),e?_.push(\"yi,xi\"):_.push(\"xi,yi\"),_.push(\");if(\"+y+\"!==void 0)return \"+y+\";}}}\"),{name:o,code:_.join(\"\")}}(e,o,t);r.push(_.code),w.push(\"return \"+_.name+\"(\"+b.join()+\");\")}w.push(\"if(\"+c+\"-\"+l+\">\"+d+\"-\"+p+\"){\"),t?(k(!0,!1),w.push(\"}else{\"),k(!1,!1)):(w.push(\"if(\"+o+\"){\"),k(!0,!0),w.push(\"}else{\"),k(!0,!1),w.push(\"}}else{if(\"+o+\"){\"),k(!1,!0),w.push(\"}else{\"),k(!1,!1),w.push(\"}\")),w.push(\"}}return \"+e);var T=r.join(\"\")+w.join(\"\");return new Function(T)()}r.partial=_(!1),r.full=_(!0)},{}],99:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,i,u,S,E,C,L){!function(t,e){var r=8*a.log2(e+1)*(t+1)|0,i=a.nextPow2(b*r);w.length<i&&(n.free(w),w=n.mallocInt32(i));var o=a.nextPow2(_*r);k<o&&(n.free(k),k=n.mallocDouble(o))}(t,i+E);var P,O=0,I=2*t;T(O++,0,0,i,0,E,r?16:0,-1/0,1/0),r||T(O++,0,0,E,0,i,1,-1/0,1/0);for(;O>0;){var z=(O-=1)*b,D=w[z],R=w[z+1],F=w[z+2],B=w[z+3],N=w[z+4],j=w[z+5],V=O*_,U=k[V],q=k[V+1],H=1&j,G=!!(16&j),Y=u,W=S,X=C,Z=L;if(H&&(Y=C,W=L,X=u,Z=S),!(2&j&&(F=v(t,D,R,F,Y,W,q),R>=F)||4&j&&(R=m(t,D,R,F,Y,W,U))>=F)){var J=F-R,K=N-B;if(G){if(t*J*(J+K)<p){if(void 0!==(P=l.scanComplete(t,D,e,R,F,Y,W,B,N,X,Z)))return P;continue}}else{if(t*Math.min(J,K)<h){if(void 0!==(P=o(t,D,e,H,R,F,Y,W,B,N,X,Z)))return P;continue}if(t*J*K<f){if(void 0!==(P=l.scanBipartite(t,D,e,H,R,F,Y,W,B,N,X,Z)))return P;continue}}var Q=d(t,D,R,F,Y,W,U,q);if(R<Q)if(t*(Q-R)<h){if(void 0!==(P=s(t,D+1,e,R,Q,Y,W,B,N,X,Z)))return P}else if(D===t-2){if(void 0!==(P=H?l.sweepBipartite(t,e,B,N,X,Z,R,Q,Y,W):l.sweepBipartite(t,e,R,Q,Y,W,B,N,X,Z)))return P}else T(O++,D+1,R,Q,B,N,H,-1/0,1/0),T(O++,D+1,B,N,R,Q,1^H,-1/0,1/0);if(Q<F){var $=c(t,D,B,N,X,Z),tt=X[I*$+D],et=g(t,D,$,N,X,Z,tt);if(et<N&&T(O++,D,Q,F,et,N,(4|H)+(G?16:0),tt,q),B<$&&T(O++,D,Q,F,B,$,(2|H)+(G?16:0),U,tt),$+1===et){if(void 0!==(P=G?M(t,D,e,Q,F,Y,W,$,X,Z[$]):A(t,D,e,H,Q,F,Y,W,$,X,Z[$])))return P}else if($<et){var rt;if(G){if(rt=y(t,D,Q,F,Y,W,tt),Q<rt){var nt=g(t,D,Q,rt,Y,W,tt);if(D===t-2){if(Q<nt&&void 0!==(P=l.sweepComplete(t,e,Q,nt,Y,W,$,et,X,Z)))return P;if(nt<rt&&void 0!==(P=l.sweepBipartite(t,e,nt,rt,Y,W,$,et,X,Z)))return P}else Q<nt&&T(O++,D+1,Q,nt,$,et,16,-1/0,1/0),nt<rt&&(T(O++,D+1,nt,rt,$,et,0,-1/0,1/0),T(O++,D+1,$,et,nt,rt,1,-1/0,1/0))}}else rt=H?x(t,D,Q,F,Y,W,tt):y(t,D,Q,F,Y,W,tt),Q<rt&&(D===t-2?P=H?l.sweepBipartite(t,e,$,et,X,Z,Q,rt,Y,W):l.sweepBipartite(t,e,Q,rt,Y,W,$,et,X,Z):(T(O++,D+1,Q,rt,$,et,H,-1/0,1/0),T(O++,D+1,$,et,Q,rt,1^H,-1/0,1/0)))}}}}};var n=t(\"typedarray-pool\"),a=t(\"bit-twiddle\"),i=t(\"./brute\"),o=i.partial,s=i.full,l=t(\"./sweep\"),c=t(\"./median\"),u=t(\"./partition\"),h=128,f=1<<22,p=1<<22,d=u(\"!(lo>=p0)&&!(p1>=hi)\",[\"p0\",\"p1\"]),g=u(\"lo===p0\",[\"p0\"]),v=u(\"lo<p0\",[\"p0\"]),m=u(\"hi<=p0\",[\"p0\"]),y=u(\"lo<=p0&&p0<=hi\",[\"p0\"]),x=u(\"lo<p0&&p0<=hi\",[\"p0\"]),b=6,_=2,w=n.mallocInt32(1024),k=n.mallocDouble(1024);function T(t,e,r,n,a,i,o,s,l){var c=b*t;w[c]=e,w[c+1]=r,w[c+2]=n,w[c+3]=a,w[c+4]=i,w[c+5]=o;var u=_*t;k[u]=s,k[u+1]=l}function A(t,e,r,n,a,i,o,s,l,c,u){var h=2*t,f=l*h,p=c[f+e];t:for(var d=a,g=a*h;d<i;++d,g+=h){var v=o[g+e],m=o[g+e+t];if(!(p<v||m<p)&&(!n||p!==v)){for(var y,x=s[d],b=e+1;b<t;++b){v=o[g+b],m=o[g+b+t];var _=c[f+b],w=c[f+b+t];if(m<_||w<v)continue t}if(void 0!==(y=n?r(u,x):r(x,u)))return y}}}function M(t,e,r,n,a,i,o,s,l,c){var u=2*t,h=s*u,f=l[h+e];t:for(var p=n,d=n*u;p<a;++p,d+=u){var g=o[p];if(g!==c){var v=i[d+e],m=i[d+e+t];if(!(f<v||m<f)){for(var y=e+1;y<t;++y){v=i[d+y],m=i[d+y+t];var x=l[h+y],b=l[h+y+t];if(m<x||b<v)continue t}var _=r(g,c);if(void 0!==_)return _}}}}},{\"./brute\":98,\"./median\":100,\"./partition\":101,\"./sweep\":103,\"bit-twiddle\":93,\"typedarray-pool\":546}],100:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,o,s,l){if(o<=r+1)return r;var c=r,u=o,h=o+r>>>1,f=2*t,p=h,d=s[f*h+e];for(;c<u;){if(u-c<a){i(t,e,c,u,s,l),d=s[f*h+e];break}var g=u-c,v=Math.random()*g+c|0,m=s[f*v+e],y=Math.random()*g+c|0,x=s[f*y+e],b=Math.random()*g+c|0,_=s[f*b+e];m<=x?_>=x?(p=y,d=x):m>=_?(p=v,d=m):(p=b,d=_):x>=_?(p=y,d=x):_>=m?(p=v,d=m):(p=b,d=_);for(var w=f*(u-1),k=f*p,T=0;T<f;++T,++w,++k){var A=s[w];s[w]=s[k],s[k]=A}var M=l[u-1];l[u-1]=l[p],l[p]=M,p=n(t,e,c,u-1,s,l,d);for(var w=f*(u-1),k=f*p,T=0;T<f;++T,++w,++k){var A=s[w];s[w]=s[k],s[k]=A}var M=l[u-1];if(l[u-1]=l[p],l[p]=M,h<p){for(u=p-1;c<u&&s[f*(u-1)+e]===d;)u-=1;u+=1}else{if(!(p<h))break;for(c=p+1;c<u&&s[f*c+e]===d;)c+=1}}return n(t,e,r,h,s,l,s[f*h+e])};var n=t(\"./partition\")(\"lo<p0\",[\"p0\"]),a=8;function i(t,e,r,n,a,i){for(var o=2*t,s=o*(r+1)+e,l=r+1;l<n;++l,s+=o)for(var c=a[s],u=l,h=o*(l-1);u>r&&a[h+e]>c;--u,h-=o){for(var f=h,p=h+o,d=0;d<o;++d,++f,++p){var g=a[f];a[f]=a[p],a[p]=g}var v=i[u];i[u]=i[u-1],i[u-1]=v}}},{\"./partition\":101}],101:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=\"abcdef\".split(\"\").concat(e),a=[];t.indexOf(\"lo\")>=0&&a.push(\"lo=e[k+n]\");t.indexOf(\"hi\")>=0&&a.push(\"hi=e[k+o]\");return r.push(n.replace(\"_\",a.join()).replace(\"$\",t)),Function.apply(void 0,r)};var n=\"for(var j=2*a,k=j*c,l=k,m=c,n=b,o=a+b,p=c;d>p;++p,k+=j){var _;if($)if(m===p)m+=1,l+=j;else{for(var s=0;j>s;++s){var t=e[k+s];e[k+s]=e[l],e[l++]=t}var u=f[p];f[p]=f[m],f[m++]=u}}return m\"},{}],102:[function(t,e,r){\"use strict\";e.exports=function(t,e){e<=4*n?a(0,e-1,t):function t(e,r,h){var f=(r-e+1)/6|0,p=e+f,d=r-f,g=e+r>>1,v=g-f,m=g+f,y=p,x=v,b=g,_=m,w=d,k=e+1,T=r-1,A=0;c(y,x,h)&&(A=y,y=x,x=A);c(_,w,h)&&(A=_,_=w,w=A);c(y,b,h)&&(A=y,y=b,b=A);c(x,b,h)&&(A=x,x=b,b=A);c(y,_,h)&&(A=y,y=_,_=A);c(b,_,h)&&(A=b,b=_,_=A);c(x,w,h)&&(A=x,x=w,w=A);c(x,b,h)&&(A=x,x=b,b=A);c(_,w,h)&&(A=_,_=w,w=A);var M=h[2*x];var S=h[2*x+1];var E=h[2*_];var C=h[2*_+1];var L=2*y;var P=2*b;var O=2*w;var I=2*p;var z=2*g;var D=2*d;for(var R=0;R<2;++R){var F=h[L+R],B=h[P+R],N=h[O+R];h[I+R]=F,h[z+R]=B,h[D+R]=N}o(v,e,h);o(m,r,h);for(var j=k;j<=T;++j)if(u(j,M,S,h))j!==k&&i(j,k,h),++k;else if(!u(j,E,C,h))for(;;){if(u(T,E,C,h)){u(T,M,S,h)?(s(j,k,T,h),++k,--T):(i(j,T,h),--T);break}if(--T<j)break}l(e,k-1,M,S,h);l(r,T+1,E,C,h);k-2-e<=n?a(e,k-2,h):t(e,k-2,h);r-(T+2)<=n?a(T+2,r,h):t(T+2,r,h);T-k<=n?a(k,T,h):t(k,T,h)}(0,e-1,t)};var n=32;function a(t,e,r){for(var n=2*(t+1),a=t+1;a<=e;++a){for(var i=r[n++],o=r[n++],s=a,l=n-2;s-- >t;){var c=r[l-2],u=r[l-1];if(c<i)break;if(c===i&&u<o)break;r[l]=c,r[l+1]=u,l-=2}r[l]=i,r[l+1]=o}}function i(t,e,r){e*=2;var n=r[t*=2],a=r[t+1];r[t]=r[e],r[t+1]=r[e+1],r[e]=n,r[e+1]=a}function o(t,e,r){e*=2,r[t*=2]=r[e],r[t+1]=r[e+1]}function s(t,e,r,n){e*=2,r*=2;var a=n[t*=2],i=n[t+1];n[t]=n[e],n[t+1]=n[e+1],n[e]=n[r],n[e+1]=n[r+1],n[r]=a,n[r+1]=i}function l(t,e,r,n,a){e*=2,a[t*=2]=a[e],a[e]=r,a[t+1]=a[e+1],a[e+1]=n}function c(t,e,r){e*=2;var n=r[t*=2],a=r[e];return!(n<a)&&(n!==a||r[t+1]>r[e+1])}function u(t,e,r,n){var a=n[t*=2];return a<e||a===e&&n[t+1]<r}},{}],103:[function(t,e,r){\"use strict\";e.exports={init:function(t){var e=a.nextPow2(t);s.length<e&&(n.free(s),s=n.mallocInt32(e));l.length<e&&(n.free(l),l=n.mallocInt32(e));c.length<e&&(n.free(c),c=n.mallocInt32(e));u.length<e&&(n.free(u),u=n.mallocInt32(e));h.length<e&&(n.free(h),h=n.mallocInt32(e));f.length<e&&(n.free(f),f=n.mallocInt32(e));var r=8*e;p.length<r&&(n.free(p),p=n.mallocDouble(r))},sweepBipartite:function(t,e,r,n,a,h,f,v,m,y){for(var x=0,b=2*t,_=t-1,w=b-1,k=r;k<n;++k){var T=h[k],A=b*k;p[x++]=a[A+_],p[x++]=-(T+1),p[x++]=a[A+w],p[x++]=T}for(var k=f;k<v;++k){var T=y[k]+o,M=b*k;p[x++]=m[M+_],p[x++]=-T,p[x++]=m[M+w],p[x++]=T}var S=x>>>1;i(p,S);for(var E=0,C=0,k=0;k<S;++k){var L=0|p[2*k+1];if(L>=o)d(c,u,C--,L=L-o|0);else if(L>=0)d(s,l,E--,L);else if(L<=-o){L=-L-o|0;for(var P=0;P<E;++P){var O=e(s[P],L);if(void 0!==O)return O}g(c,u,C++,L)}else{L=-L-1|0;for(var P=0;P<C;++P){var O=e(L,c[P]);if(void 0!==O)return O}g(s,l,E++,L)}}},sweepComplete:function(t,e,r,n,a,o,v,m,y,x){for(var b=0,_=2*t,w=t-1,k=_-1,T=r;T<n;++T){var A=o[T]+1<<1,M=_*T;p[b++]=a[M+w],p[b++]=-A,p[b++]=a[M+k],p[b++]=A}for(var T=v;T<m;++T){var A=x[T]+1<<1,S=_*T;p[b++]=y[S+w],p[b++]=1|-A,p[b++]=y[S+k],p[b++]=1|A}var E=b>>>1;i(p,E);for(var C=0,L=0,P=0,T=0;T<E;++T){var O=0|p[2*T+1],I=1&O;if(T<E-1&&O>>1==p[2*T+3]>>1&&(I=2,T+=1),O<0){for(var z=-(O>>1)-1,D=0;D<P;++D){var R=e(h[D],z);if(void 0!==R)return R}if(0!==I)for(var D=0;D<C;++D){var R=e(s[D],z);if(void 0!==R)return R}if(1!==I)for(var D=0;D<L;++D){var R=e(c[D],z);if(void 0!==R)return R}0===I?g(s,l,C++,z):1===I?g(c,u,L++,z):2===I&&g(h,f,P++,z)}else{var z=(O>>1)-1;0===I?d(s,l,C--,z):1===I?d(c,u,L--,z):2===I&&d(h,f,P--,z)}}},scanBipartite:function(t,e,r,n,a,c,u,h,f,v,m,y){var x=0,b=2*t,_=e,w=e+t,k=1,T=1;n?T=o:k=o;for(var A=a;A<c;++A){var M=A+k,S=b*A;p[x++]=u[S+_],p[x++]=-M,p[x++]=u[S+w],p[x++]=M}for(var A=f;A<v;++A){var M=A+T,E=b*A;p[x++]=m[E+_],p[x++]=-M}var C=x>>>1;i(p,C);for(var L=0,A=0;A<C;++A){var P=0|p[2*A+1];if(P<0){var M=-P,O=!1;if(M>=o?(O=!n,M-=o):(O=!!n,M-=1),O)g(s,l,L++,M);else{var I=y[M],z=b*M,D=m[z+e+1],R=m[z+e+1+t];t:for(var F=0;F<L;++F){var B=s[F],N=b*B;if(!(R<u[N+e+1]||u[N+e+1+t]<D)){for(var j=e+2;j<t;++j)if(m[z+j+t]<u[N+j]||u[N+j+t]<m[z+j])continue t;var V,U=h[B];if(void 0!==(V=n?r(I,U):r(U,I)))return V}}}}else d(s,l,L--,P-k)}},scanComplete:function(t,e,r,n,a,l,c,u,h,f,d){for(var g=0,v=2*t,m=e,y=e+t,x=n;x<a;++x){var b=x+o,_=v*x;p[g++]=l[_+m],p[g++]=-b,p[g++]=l[_+y],p[g++]=b}for(var x=u;x<h;++x){var b=x+1,w=v*x;p[g++]=f[w+m],p[g++]=-b}var k=g>>>1;i(p,k);for(var T=0,x=0;x<k;++x){var A=0|p[2*x+1];if(A<0){var b=-A;if(b>=o)s[T++]=b-o;else{var M=d[b-=1],S=v*b,E=f[S+e+1],C=f[S+e+1+t];t:for(var L=0;L<T;++L){var P=s[L],O=c[P];if(O===M)break;var I=v*P;if(!(C<l[I+e+1]||l[I+e+1+t]<E)){for(var z=e+2;z<t;++z)if(f[S+z+t]<l[I+z]||l[I+z+t]<f[S+z])continue t;var D=r(O,M);if(void 0!==D)return D}}}}else{for(var b=A-o,L=T-1;L>=0;--L)if(s[L]===b){for(var z=L+1;z<T;++z)s[z-1]=s[z];break}--T}}}};var n=t(\"typedarray-pool\"),a=t(\"bit-twiddle\"),i=t(\"./sort\"),o=1<<28,s=n.mallocInt32(1024),l=n.mallocInt32(1024),c=n.mallocInt32(1024),u=n.mallocInt32(1024),h=n.mallocInt32(1024),f=n.mallocInt32(1024),p=n.mallocDouble(8192);function d(t,e,r,n){var a=e[n],i=t[r-1];t[a]=i,e[i]=a}function g(t,e,r,n){t[r]=n,e[n]=r}},{\"./sort\":102,\"bit-twiddle\":93,\"typedarray-pool\":546}],104:[function(t,e,r){},{}],105:[function(t,e,r){var n=Object.create||function(t){var e=function(){};return e.prototype=t,new e},a=Object.keys||function(t){var e=[];for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&e.push(r);return r},i=Function.prototype.bind||function(t){var e=this;return function(){return e.apply(t,arguments)}};function o(){this._events&&Object.prototype.hasOwnProperty.call(this,\"_events\")||(this._events=n(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0}e.exports=o,o.EventEmitter=o,o.prototype._events=void 0,o.prototype._maxListeners=void 0;var s,l=10;try{var c={};Object.defineProperty&&Object.defineProperty(c,\"x\",{value:0}),s=0===c.x}catch(t){s=!1}function u(t){return void 0===t._maxListeners?o.defaultMaxListeners:t._maxListeners}function h(t,e,r,a){var i,o,s;if(\"function\"!=typeof r)throw new TypeError('\"listener\" argument must be a function');if((o=t._events)?(o.newListener&&(t.emit(\"newListener\",e,r.listener?r.listener:r),o=t._events),s=o[e]):(o=t._events=n(null),t._eventsCount=0),s){if(\"function\"==typeof s?s=o[e]=a?[r,s]:[s,r]:a?s.unshift(r):s.push(r),!s.warned&&(i=u(t))&&i>0&&s.length>i){s.warned=!0;var l=new Error(\"Possible EventEmitter memory leak detected. \"+s.length+' \"'+String(e)+'\" listeners added. Use emitter.setMaxListeners() to increase limit.');l.name=\"MaxListenersExceededWarning\",l.emitter=t,l.type=e,l.count=s.length,\"object\"==typeof console&&console.warn&&console.warn(\"%s: %s\",l.name,l.message)}}else s=o[e]=r,++t._eventsCount;return t}function f(){if(!this.fired)switch(this.target.removeListener(this.type,this.wrapFn),this.fired=!0,arguments.length){case 0:return this.listener.call(this.target);case 1:return this.listener.call(this.target,arguments[0]);case 2:return this.listener.call(this.target,arguments[0],arguments[1]);case 3:return this.listener.call(this.target,arguments[0],arguments[1],arguments[2]);default:for(var t=new Array(arguments.length),e=0;e<t.length;++e)t[e]=arguments[e];this.listener.apply(this.target,t)}}function p(t,e,r){var n={fired:!1,wrapFn:void 0,target:t,type:e,listener:r},a=i.call(f,n);return a.listener=r,n.wrapFn=a,a}function d(t,e,r){var n=t._events;if(!n)return[];var a=n[e];return a?\"function\"==typeof a?r?[a.listener||a]:[a]:r?function(t){for(var e=new Array(t.length),r=0;r<e.length;++r)e[r]=t[r].listener||t[r];return e}(a):v(a,a.length):[]}function g(t){var e=this._events;if(e){var r=e[t];if(\"function\"==typeof r)return 1;if(r)return r.length}return 0}function v(t,e){for(var r=new Array(e),n=0;n<e;++n)r[n]=t[n];return r}s?Object.defineProperty(o,\"defaultMaxListeners\",{enumerable:!0,get:function(){return l},set:function(t){if(\"number\"!=typeof t||t<0||t!=t)throw new TypeError('\"defaultMaxListeners\" must be a positive number');l=t}}):o.defaultMaxListeners=l,o.prototype.setMaxListeners=function(t){if(\"number\"!=typeof t||t<0||isNaN(t))throw new TypeError('\"n\" argument must be a positive number');return this._maxListeners=t,this},o.prototype.getMaxListeners=function(){return u(this)},o.prototype.emit=function(t){var e,r,n,a,i,o,s=\"error\"===t;if(o=this._events)s=s&&null==o.error;else if(!s)return!1;if(s){if(arguments.length>1&&(e=arguments[1]),e instanceof Error)throw e;var l=new Error('Unhandled \"error\" event. ('+e+\")\");throw l.context=e,l}if(!(r=o[t]))return!1;var c=\"function\"==typeof r;switch(n=arguments.length){case 1:!function(t,e,r){if(e)t.call(r);else for(var n=t.length,a=v(t,n),i=0;i<n;++i)a[i].call(r)}(r,c,this);break;case 2:!function(t,e,r,n){if(e)t.call(r,n);else for(var a=t.length,i=v(t,a),o=0;o<a;++o)i[o].call(r,n)}(r,c,this,arguments[1]);break;case 3:!function(t,e,r,n,a){if(e)t.call(r,n,a);else for(var i=t.length,o=v(t,i),s=0;s<i;++s)o[s].call(r,n,a)}(r,c,this,arguments[1],arguments[2]);break;case 4:!function(t,e,r,n,a,i){if(e)t.call(r,n,a,i);else for(var o=t.length,s=v(t,o),l=0;l<o;++l)s[l].call(r,n,a,i)}(r,c,this,arguments[1],arguments[2],arguments[3]);break;default:for(a=new Array(n-1),i=1;i<n;i++)a[i-1]=arguments[i];!function(t,e,r,n){if(e)t.apply(r,n);else for(var a=t.length,i=v(t,a),o=0;o<a;++o)i[o].apply(r,n)}(r,c,this,a)}return!0},o.prototype.addListener=function(t,e){return h(this,t,e,!1)},o.prototype.on=o.prototype.addListener,o.prototype.prependListener=function(t,e){return h(this,t,e,!0)},o.prototype.once=function(t,e){if(\"function\"!=typeof e)throw new TypeError('\"listener\" argument must be a function');return this.on(t,p(this,t,e)),this},o.prototype.prependOnceListener=function(t,e){if(\"function\"!=typeof e)throw new TypeError('\"listener\" argument must be a function');return this.prependListener(t,p(this,t,e)),this},o.prototype.removeListener=function(t,e){var r,a,i,o,s;if(\"function\"!=typeof e)throw new TypeError('\"listener\" argument must be a function');if(!(a=this._events))return this;if(!(r=a[t]))return this;if(r===e||r.listener===e)0==--this._eventsCount?this._events=n(null):(delete a[t],a.removeListener&&this.emit(\"removeListener\",t,r.listener||e));else if(\"function\"!=typeof r){for(i=-1,o=r.length-1;o>=0;o--)if(r[o]===e||r[o].listener===e){s=r[o].listener,i=o;break}if(i<0)return this;0===i?r.shift():function(t,e){for(var r=e,n=r+1,a=t.length;n<a;r+=1,n+=1)t[r]=t[n];t.pop()}(r,i),1===r.length&&(a[t]=r[0]),a.removeListener&&this.emit(\"removeListener\",t,s||e)}return this},o.prototype.removeAllListeners=function(t){var e,r,i;if(!(r=this._events))return this;if(!r.removeListener)return 0===arguments.length?(this._events=n(null),this._eventsCount=0):r[t]&&(0==--this._eventsCount?this._events=n(null):delete r[t]),this;if(0===arguments.length){var o,s=a(r);for(i=0;i<s.length;++i)\"removeListener\"!==(o=s[i])&&this.removeAllListeners(o);return this.removeAllListeners(\"removeListener\"),this._events=n(null),this._eventsCount=0,this}if(\"function\"==typeof(e=r[t]))this.removeListener(t,e);else if(e)for(i=e.length-1;i>=0;i--)this.removeListener(t,e[i]);return this},o.prototype.listeners=function(t){return d(this,t,!0)},o.prototype.rawListeners=function(t){return d(this,t,!1)},o.listenerCount=function(t,e){return\"function\"==typeof t.listenerCount?t.listenerCount(e):g.call(t,e)},o.prototype.listenerCount=g,o.prototype.eventNames=function(){return this._eventsCount>0?Reflect.ownKeys(this._events):[]}},{}],106:[function(t,e,r){(function(e){\"use strict\";var n=t(\"base64-js\"),a=t(\"ieee754\"),i=\"function\"==typeof Symbol&&\"function\"==typeof Symbol.for?Symbol.for(\"nodejs.util.inspect.custom\"):null;r.Buffer=e,r.SlowBuffer=function(t){+t!=t&&(t=0);return e.alloc(+t)},r.INSPECT_MAX_BYTES=50;var o=2147483647;function s(t){if(t>o)throw new RangeError('The value \"'+t+'\" is invalid for option \"size\"');var r=new Uint8Array(t);return Object.setPrototypeOf(r,e.prototype),r}function e(t,e,r){if(\"number\"==typeof t){if(\"string\"==typeof e)throw new TypeError('The \"string\" argument must be of type string. Received type number');return u(t)}return l(t,e,r)}function l(t,r,n){if(\"string\"==typeof t)return function(t,r){\"string\"==typeof r&&\"\"!==r||(r=\"utf8\");if(!e.isEncoding(r))throw new TypeError(\"Unknown encoding: \"+r);var n=0|p(t,r),a=s(n),i=a.write(t,r);i!==n&&(a=a.slice(0,i));return a}(t,r);if(ArrayBuffer.isView(t))return h(t);if(null==t)throw new TypeError(\"The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type \"+typeof t);if(j(t,ArrayBuffer)||t&&j(t.buffer,ArrayBuffer))return function(t,r,n){if(r<0||t.byteLength<r)throw new RangeError('\"offset\" is outside of buffer bounds');if(t.byteLength<r+(n||0))throw new RangeError('\"length\" is outside of buffer bounds');var a;a=void 0===r&&void 0===n?new Uint8Array(t):void 0===n?new Uint8Array(t,r):new Uint8Array(t,r,n);return Object.setPrototypeOf(a,e.prototype),a}(t,r,n);if(\"number\"==typeof t)throw new TypeError('The \"value\" argument must not be of type number. Received type number');var a=t.valueOf&&t.valueOf();if(null!=a&&a!==t)return e.from(a,r,n);var i=function(t){if(e.isBuffer(t)){var r=0|f(t.length),n=s(r);return 0===n.length?n:(t.copy(n,0,0,r),n)}if(void 0!==t.length)return\"number\"!=typeof t.length||V(t.length)?s(0):h(t);if(\"Buffer\"===t.type&&Array.isArray(t.data))return h(t.data)}(t);if(i)return i;if(\"undefined\"!=typeof Symbol&&null!=Symbol.toPrimitive&&\"function\"==typeof t[Symbol.toPrimitive])return e.from(t[Symbol.toPrimitive](\"string\"),r,n);throw new TypeError(\"The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type \"+typeof t)}function c(t){if(\"number\"!=typeof t)throw new TypeError('\"size\" argument must be of type number');if(t<0)throw new RangeError('The value \"'+t+'\" is invalid for option \"size\"')}function u(t){return c(t),s(t<0?0:0|f(t))}function h(t){for(var e=t.length<0?0:0|f(t.length),r=s(e),n=0;n<e;n+=1)r[n]=255&t[n];return r}function f(t){if(t>=o)throw new RangeError(\"Attempt to allocate Buffer larger than maximum size: 0x\"+o.toString(16)+\" bytes\");return 0|t}function p(t,r){if(e.isBuffer(t))return t.length;if(ArrayBuffer.isView(t)||j(t,ArrayBuffer))return t.byteLength;if(\"string\"!=typeof t)throw new TypeError('The \"string\" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof t);var n=t.length,a=arguments.length>2&&!0===arguments[2];if(!a&&0===n)return 0;for(var i=!1;;)switch(r){case\"ascii\":case\"latin1\":case\"binary\":return n;case\"utf8\":case\"utf-8\":return F(t).length;case\"ucs2\":case\"ucs-2\":case\"utf16le\":case\"utf-16le\":return 2*n;case\"hex\":return n>>>1;case\"base64\":return B(t).length;default:if(i)return a?-1:F(t).length;r=(\"\"+r).toLowerCase(),i=!0}}function d(t,e,r){var n=t[e];t[e]=t[r],t[r]=n}function g(t,r,n,a,i){if(0===t.length)return-1;if(\"string\"==typeof n?(a=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),V(n=+n)&&(n=i?0:t.length-1),n<0&&(n=t.length+n),n>=t.length){if(i)return-1;n=t.length-1}else if(n<0){if(!i)return-1;n=0}if(\"string\"==typeof r&&(r=e.from(r,a)),e.isBuffer(r))return 0===r.length?-1:v(t,r,n,a,i);if(\"number\"==typeof r)return r&=255,\"function\"==typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(t,r,n):Uint8Array.prototype.lastIndexOf.call(t,r,n):v(t,[r],n,a,i);throw new TypeError(\"val must be string, number or Buffer\")}function v(t,e,r,n,a){var i,o=1,s=t.length,l=e.length;if(void 0!==n&&(\"ucs2\"===(n=String(n).toLowerCase())||\"ucs-2\"===n||\"utf16le\"===n||\"utf-16le\"===n)){if(t.length<2||e.length<2)return-1;o=2,s/=2,l/=2,r/=2}function c(t,e){return 1===o?t[e]:t.readUInt16BE(e*o)}if(a){var u=-1;for(i=r;i<s;i++)if(c(t,i)===c(e,-1===u?0:i-u)){if(-1===u&&(u=i),i-u+1===l)return u*o}else-1!==u&&(i-=i-u),u=-1}else for(r+l>s&&(r=s-l),i=r;i>=0;i--){for(var h=!0,f=0;f<l;f++)if(c(t,i+f)!==c(e,f)){h=!1;break}if(h)return i}return-1}function m(t,e,r,n){r=Number(r)||0;var a=t.length-r;n?(n=Number(n))>a&&(n=a):n=a;var i=e.length;n>i/2&&(n=i/2);for(var o=0;o<n;++o){var s=parseInt(e.substr(2*o,2),16);if(V(s))return o;t[r+o]=s}return o}function y(t,e,r,n){return N(F(e,t.length-r),t,r,n)}function x(t,e,r,n){return N(function(t){for(var e=[],r=0;r<t.length;++r)e.push(255&t.charCodeAt(r));return e}(e),t,r,n)}function b(t,e,r,n){return x(t,e,r,n)}function _(t,e,r,n){return N(B(e),t,r,n)}function w(t,e,r,n){return N(function(t,e){for(var r,n,a,i=[],o=0;o<t.length&&!((e-=2)<0);++o)r=t.charCodeAt(o),n=r>>8,a=r%256,i.push(a),i.push(n);return i}(e,t.length-r),t,r,n)}function k(t,e,r){return 0===e&&r===t.length?n.fromByteArray(t):n.fromByteArray(t.slice(e,r))}function T(t,e,r){r=Math.min(t.length,r);for(var n=[],a=e;a<r;){var i,o,s,l,c=t[a],u=null,h=c>239?4:c>223?3:c>191?2:1;if(a+h<=r)switch(h){case 1:c<128&&(u=c);break;case 2:128==(192&(i=t[a+1]))&&(l=(31&c)<<6|63&i)>127&&(u=l);break;case 3:i=t[a+1],o=t[a+2],128==(192&i)&&128==(192&o)&&(l=(15&c)<<12|(63&i)<<6|63&o)>2047&&(l<55296||l>57343)&&(u=l);break;case 4:i=t[a+1],o=t[a+2],s=t[a+3],128==(192&i)&&128==(192&o)&&128==(192&s)&&(l=(15&c)<<18|(63&i)<<12|(63&o)<<6|63&s)>65535&&l<1114112&&(u=l)}null===u?(u=65533,h=1):u>65535&&(u-=65536,n.push(u>>>10&1023|55296),u=56320|1023&u),n.push(u),a+=h}return function(t){var e=t.length;if(e<=A)return String.fromCharCode.apply(String,t);var r=\"\",n=0;for(;n<e;)r+=String.fromCharCode.apply(String,t.slice(n,n+=A));return r}(n)}r.kMaxLength=o,e.TYPED_ARRAY_SUPPORT=function(){try{var t=new Uint8Array(1),e={foo:function(){return 42}};return Object.setPrototypeOf(e,Uint8Array.prototype),Object.setPrototypeOf(t,e),42===t.foo()}catch(t){return!1}}(),e.TYPED_ARRAY_SUPPORT||\"undefined\"==typeof console||\"function\"!=typeof console.error||console.error(\"This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support.\"),Object.defineProperty(e.prototype,\"parent\",{enumerable:!0,get:function(){if(e.isBuffer(this))return this.buffer}}),Object.defineProperty(e.prototype,\"offset\",{enumerable:!0,get:function(){if(e.isBuffer(this))return this.byteOffset}}),\"undefined\"!=typeof Symbol&&null!=Symbol.species&&e[Symbol.species]===e&&Object.defineProperty(e,Symbol.species,{value:null,configurable:!0,enumerable:!1,writable:!1}),e.poolSize=8192,e.from=function(t,e,r){return l(t,e,r)},Object.setPrototypeOf(e.prototype,Uint8Array.prototype),Object.setPrototypeOf(e,Uint8Array),e.alloc=function(t,e,r){return function(t,e,r){return c(t),t<=0?s(t):void 0!==e?\"string\"==typeof r?s(t).fill(e,r):s(t).fill(e):s(t)}(t,e,r)},e.allocUnsafe=function(t){return u(t)},e.allocUnsafeSlow=function(t){return u(t)},e.isBuffer=function(t){return null!=t&&!0===t._isBuffer&&t!==e.prototype},e.compare=function(t,r){if(j(t,Uint8Array)&&(t=e.from(t,t.offset,t.byteLength)),j(r,Uint8Array)&&(r=e.from(r,r.offset,r.byteLength)),!e.isBuffer(t)||!e.isBuffer(r))throw new TypeError('The \"buf1\", \"buf2\" arguments must be one of type Buffer or Uint8Array');if(t===r)return 0;for(var n=t.length,a=r.length,i=0,o=Math.min(n,a);i<o;++i)if(t[i]!==r[i]){n=t[i],a=r[i];break}return n<a?-1:a<n?1:0},e.isEncoding=function(t){switch(String(t).toLowerCase()){case\"hex\":case\"utf8\":case\"utf-8\":case\"ascii\":case\"latin1\":case\"binary\":case\"base64\":case\"ucs2\":case\"ucs-2\":case\"utf16le\":case\"utf-16le\":return!0;default:return!1}},e.concat=function(t,r){if(!Array.isArray(t))throw new TypeError('\"list\" argument must be an Array of Buffers');if(0===t.length)return e.alloc(0);var n;if(void 0===r)for(r=0,n=0;n<t.length;++n)r+=t[n].length;var a=e.allocUnsafe(r),i=0;for(n=0;n<t.length;++n){var o=t[n];if(j(o,Uint8Array)&&(o=e.from(o)),!e.isBuffer(o))throw new TypeError('\"list\" argument must be an Array of Buffers');o.copy(a,i),i+=o.length}return a},e.byteLength=p,e.prototype._isBuffer=!0,e.prototype.swap16=function(){var t=this.length;if(t%2!=0)throw new RangeError(\"Buffer size must be a multiple of 16-bits\");for(var e=0;e<t;e+=2)d(this,e,e+1);return this},e.prototype.swap32=function(){var t=this.length;if(t%4!=0)throw new RangeError(\"Buffer size must be a multiple of 32-bits\");for(var e=0;e<t;e+=4)d(this,e,e+3),d(this,e+1,e+2);return this},e.prototype.swap64=function(){var t=this.length;if(t%8!=0)throw new RangeError(\"Buffer size must be a multiple of 64-bits\");for(var e=0;e<t;e+=8)d(this,e,e+7),d(this,e+1,e+6),d(this,e+2,e+5),d(this,e+3,e+4);return this},e.prototype.toString=function(){var t=this.length;return 0===t?\"\":0===arguments.length?T(this,0,t):function(t,e,r){var n=!1;if((void 0===e||e<0)&&(e=0),e>this.length)return\"\";if((void 0===r||r>this.length)&&(r=this.length),r<=0)return\"\";if((r>>>=0)<=(e>>>=0))return\"\";for(t||(t=\"utf8\");;)switch(t){case\"hex\":return E(this,e,r);case\"utf8\":case\"utf-8\":return T(this,e,r);case\"ascii\":return M(this,e,r);case\"latin1\":case\"binary\":return S(this,e,r);case\"base64\":return k(this,e,r);case\"ucs2\":case\"ucs-2\":case\"utf16le\":case\"utf-16le\":return C(this,e,r);default:if(n)throw new TypeError(\"Unknown encoding: \"+t);t=(t+\"\").toLowerCase(),n=!0}}.apply(this,arguments)},e.prototype.toLocaleString=e.prototype.toString,e.prototype.equals=function(t){if(!e.isBuffer(t))throw new TypeError(\"Argument must be a Buffer\");return this===t||0===e.compare(this,t)},e.prototype.inspect=function(){var t=\"\",e=r.INSPECT_MAX_BYTES;return t=this.toString(\"hex\",0,e).replace(/(.{2})/g,\"$1 \").trim(),this.length>e&&(t+=\" ... \"),\"<Buffer \"+t+\">\"},i&&(e.prototype[i]=e.prototype.inspect),e.prototype.compare=function(t,r,n,a,i){if(j(t,Uint8Array)&&(t=e.from(t,t.offset,t.byteLength)),!e.isBuffer(t))throw new TypeError('The \"target\" argument must be one of type Buffer or Uint8Array. Received type '+typeof t);if(void 0===r&&(r=0),void 0===n&&(n=t?t.length:0),void 0===a&&(a=0),void 0===i&&(i=this.length),r<0||n>t.length||a<0||i>this.length)throw new RangeError(\"out of range index\");if(a>=i&&r>=n)return 0;if(a>=i)return-1;if(r>=n)return 1;if(this===t)return 0;for(var o=(i>>>=0)-(a>>>=0),s=(n>>>=0)-(r>>>=0),l=Math.min(o,s),c=this.slice(a,i),u=t.slice(r,n),h=0;h<l;++h)if(c[h]!==u[h]){o=c[h],s=u[h];break}return o<s?-1:s<o?1:0},e.prototype.includes=function(t,e,r){return-1!==this.indexOf(t,e,r)},e.prototype.indexOf=function(t,e,r){return g(this,t,e,r,!0)},e.prototype.lastIndexOf=function(t,e,r){return g(this,t,e,r,!1)},e.prototype.write=function(t,e,r,n){if(void 0===e)n=\"utf8\",r=this.length,e=0;else if(void 0===r&&\"string\"==typeof e)n=e,r=this.length,e=0;else{if(!isFinite(e))throw new Error(\"Buffer.write(string, encoding, offset[, length]) is no longer supported\");e>>>=0,isFinite(r)?(r>>>=0,void 0===n&&(n=\"utf8\")):(n=r,r=void 0)}var a=this.length-e;if((void 0===r||r>a)&&(r=a),t.length>0&&(r<0||e<0)||e>this.length)throw new RangeError(\"Attempt to write outside buffer bounds\");n||(n=\"utf8\");for(var i=!1;;)switch(n){case\"hex\":return m(this,t,e,r);case\"utf8\":case\"utf-8\":return y(this,t,e,r);case\"ascii\":return x(this,t,e,r);case\"latin1\":case\"binary\":return b(this,t,e,r);case\"base64\":return _(this,t,e,r);case\"ucs2\":case\"ucs-2\":case\"utf16le\":case\"utf-16le\":return w(this,t,e,r);default:if(i)throw new TypeError(\"Unknown encoding: \"+n);n=(\"\"+n).toLowerCase(),i=!0}},e.prototype.toJSON=function(){return{type:\"Buffer\",data:Array.prototype.slice.call(this._arr||this,0)}};var A=4096;function M(t,e,r){var n=\"\";r=Math.min(t.length,r);for(var a=e;a<r;++a)n+=String.fromCharCode(127&t[a]);return n}function S(t,e,r){var n=\"\";r=Math.min(t.length,r);for(var a=e;a<r;++a)n+=String.fromCharCode(t[a]);return n}function E(t,e,r){var n=t.length;(!e||e<0)&&(e=0),(!r||r<0||r>n)&&(r=n);for(var a=\"\",i=e;i<r;++i)a+=R(t[i]);return a}function C(t,e,r){for(var n=t.slice(e,r),a=\"\",i=0;i<n.length;i+=2)a+=String.fromCharCode(n[i]+256*n[i+1]);return a}function L(t,e,r){if(t%1!=0||t<0)throw new RangeError(\"offset is not uint\");if(t+e>r)throw new RangeError(\"Trying to access beyond buffer length\")}function P(t,r,n,a,i,o){if(!e.isBuffer(t))throw new TypeError('\"buffer\" argument must be a Buffer instance');if(r>i||r<o)throw new RangeError('\"value\" argument is out of bounds');if(n+a>t.length)throw new RangeError(\"Index out of range\")}function O(t,e,r,n,a,i){if(r+n>t.length)throw new RangeError(\"Index out of range\");if(r<0)throw new RangeError(\"Index out of range\")}function I(t,e,r,n,i){return e=+e,r>>>=0,i||O(t,0,r,4),a.write(t,e,r,n,23,4),r+4}function z(t,e,r,n,i){return e=+e,r>>>=0,i||O(t,0,r,8),a.write(t,e,r,n,52,8),r+8}e.prototype.slice=function(t,r){var n=this.length;(t=~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),(r=void 0===r?n:~~r)<0?(r+=n)<0&&(r=0):r>n&&(r=n),r<t&&(r=t);var a=this.subarray(t,r);return Object.setPrototypeOf(a,e.prototype),a},e.prototype.readUIntLE=function(t,e,r){t>>>=0,e>>>=0,r||L(t,e,this.length);for(var n=this[t],a=1,i=0;++i<e&&(a*=256);)n+=this[t+i]*a;return n},e.prototype.readUIntBE=function(t,e,r){t>>>=0,e>>>=0,r||L(t,e,this.length);for(var n=this[t+--e],a=1;e>0&&(a*=256);)n+=this[t+--e]*a;return n},e.prototype.readUInt8=function(t,e){return t>>>=0,e||L(t,1,this.length),this[t]},e.prototype.readUInt16LE=function(t,e){return t>>>=0,e||L(t,2,this.length),this[t]|this[t+1]<<8},e.prototype.readUInt16BE=function(t,e){return t>>>=0,e||L(t,2,this.length),this[t]<<8|this[t+1]},e.prototype.readUInt32LE=function(t,e){return t>>>=0,e||L(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},e.prototype.readUInt32BE=function(t,e){return t>>>=0,e||L(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},e.prototype.readIntLE=function(t,e,r){t>>>=0,e>>>=0,r||L(t,e,this.length);for(var n=this[t],a=1,i=0;++i<e&&(a*=256);)n+=this[t+i]*a;return n>=(a*=128)&&(n-=Math.pow(2,8*e)),n},e.prototype.readIntBE=function(t,e,r){t>>>=0,e>>>=0,r||L(t,e,this.length);for(var n=e,a=1,i=this[t+--n];n>0&&(a*=256);)i+=this[t+--n]*a;return i>=(a*=128)&&(i-=Math.pow(2,8*e)),i},e.prototype.readInt8=function(t,e){return t>>>=0,e||L(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},e.prototype.readInt16LE=function(t,e){t>>>=0,e||L(t,2,this.length);var r=this[t]|this[t+1]<<8;return 32768&r?4294901760|r:r},e.prototype.readInt16BE=function(t,e){t>>>=0,e||L(t,2,this.length);var r=this[t+1]|this[t]<<8;return 32768&r?4294901760|r:r},e.prototype.readInt32LE=function(t,e){return t>>>=0,e||L(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},e.prototype.readInt32BE=function(t,e){return t>>>=0,e||L(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},e.prototype.readFloatLE=function(t,e){return t>>>=0,e||L(t,4,this.length),a.read(this,t,!0,23,4)},e.prototype.readFloatBE=function(t,e){return t>>>=0,e||L(t,4,this.length),a.read(this,t,!1,23,4)},e.prototype.readDoubleLE=function(t,e){return t>>>=0,e||L(t,8,this.length),a.read(this,t,!0,52,8)},e.prototype.readDoubleBE=function(t,e){return t>>>=0,e||L(t,8,this.length),a.read(this,t,!1,52,8)},e.prototype.writeUIntLE=function(t,e,r,n){(t=+t,e>>>=0,r>>>=0,n)||P(this,t,e,r,Math.pow(2,8*r)-1,0);var a=1,i=0;for(this[e]=255&t;++i<r&&(a*=256);)this[e+i]=t/a&255;return e+r},e.prototype.writeUIntBE=function(t,e,r,n){(t=+t,e>>>=0,r>>>=0,n)||P(this,t,e,r,Math.pow(2,8*r)-1,0);var a=r-1,i=1;for(this[e+a]=255&t;--a>=0&&(i*=256);)this[e+a]=t/i&255;return e+r},e.prototype.writeUInt8=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,1,255,0),this[e]=255&t,e+1},e.prototype.writeUInt16LE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,2,65535,0),this[e]=255&t,this[e+1]=t>>>8,e+2},e.prototype.writeUInt16BE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,2,65535,0),this[e]=t>>>8,this[e+1]=255&t,e+2},e.prototype.writeUInt32LE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,4,4294967295,0),this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t,e+4},e.prototype.writeUInt32BE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,4,4294967295,0),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},e.prototype.writeIntLE=function(t,e,r,n){if(t=+t,e>>>=0,!n){var a=Math.pow(2,8*r-1);P(this,t,e,r,a-1,-a)}var i=0,o=1,s=0;for(this[e]=255&t;++i<r&&(o*=256);)t<0&&0===s&&0!==this[e+i-1]&&(s=1),this[e+i]=(t/o>>0)-s&255;return e+r},e.prototype.writeIntBE=function(t,e,r,n){if(t=+t,e>>>=0,!n){var a=Math.pow(2,8*r-1);P(this,t,e,r,a-1,-a)}var i=r-1,o=1,s=0;for(this[e+i]=255&t;--i>=0&&(o*=256);)t<0&&0===s&&0!==this[e+i+1]&&(s=1),this[e+i]=(t/o>>0)-s&255;return e+r},e.prototype.writeInt8=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,1,127,-128),t<0&&(t=255+t+1),this[e]=255&t,e+1},e.prototype.writeInt16LE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,2,32767,-32768),this[e]=255&t,this[e+1]=t>>>8,e+2},e.prototype.writeInt16BE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,2,32767,-32768),this[e]=t>>>8,this[e+1]=255&t,e+2},e.prototype.writeInt32LE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,4,2147483647,-2147483648),this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24,e+4},e.prototype.writeInt32BE=function(t,e,r){return t=+t,e>>>=0,r||P(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},e.prototype.writeFloatLE=function(t,e,r){return I(this,t,e,!0,r)},e.prototype.writeFloatBE=function(t,e,r){return I(this,t,e,!1,r)},e.prototype.writeDoubleLE=function(t,e,r){return z(this,t,e,!0,r)},e.prototype.writeDoubleBE=function(t,e,r){return z(this,t,e,!1,r)},e.prototype.copy=function(t,r,n,a){if(!e.isBuffer(t))throw new TypeError(\"argument should be a Buffer\");if(n||(n=0),a||0===a||(a=this.length),r>=t.length&&(r=t.length),r||(r=0),a>0&&a<n&&(a=n),a===n)return 0;if(0===t.length||0===this.length)return 0;if(r<0)throw new RangeError(\"targetStart out of bounds\");if(n<0||n>=this.length)throw new RangeError(\"Index out of range\");if(a<0)throw new RangeError(\"sourceEnd out of bounds\");a>this.length&&(a=this.length),t.length-r<a-n&&(a=t.length-r+n);var i=a-n;if(this===t&&\"function\"==typeof Uint8Array.prototype.copyWithin)this.copyWithin(r,n,a);else if(this===t&&n<r&&r<a)for(var o=i-1;o>=0;--o)t[o+r]=this[o+n];else Uint8Array.prototype.set.call(t,this.subarray(n,a),r);return i},e.prototype.fill=function(t,r,n,a){if(\"string\"==typeof t){if(\"string\"==typeof r?(a=r,r=0,n=this.length):\"string\"==typeof n&&(a=n,n=this.length),void 0!==a&&\"string\"!=typeof a)throw new TypeError(\"encoding must be a string\");if(\"string\"==typeof a&&!e.isEncoding(a))throw new TypeError(\"Unknown encoding: \"+a);if(1===t.length){var i=t.charCodeAt(0);(\"utf8\"===a&&i<128||\"latin1\"===a)&&(t=i)}}else\"number\"==typeof t?t&=255:\"boolean\"==typeof t&&(t=Number(t));if(r<0||this.length<r||this.length<n)throw new RangeError(\"Out of range index\");if(n<=r)return this;var o;if(r>>>=0,n=void 0===n?this.length:n>>>0,t||(t=0),\"number\"==typeof t)for(o=r;o<n;++o)this[o]=t;else{var s=e.isBuffer(t)?t:e.from(t,a),l=s.length;if(0===l)throw new TypeError('The value \"'+t+'\" is invalid for argument \"value\"');for(o=0;o<n-r;++o)this[o+r]=s[o%l]}return this};var D=/[^+\\/0-9A-Za-z-_]/g;function R(t){return t<16?\"0\"+t.toString(16):t.toString(16)}function F(t,e){var r;e=e||1/0;for(var n=t.length,a=null,i=[],o=0;o<n;++o){if((r=t.charCodeAt(o))>55295&&r<57344){if(!a){if(r>56319){(e-=3)>-1&&i.push(239,191,189);continue}if(o+1===n){(e-=3)>-1&&i.push(239,191,189);continue}a=r;continue}if(r<56320){(e-=3)>-1&&i.push(239,191,189),a=r;continue}r=65536+(a-55296<<10|r-56320)}else a&&(e-=3)>-1&&i.push(239,191,189);if(a=null,r<128){if((e-=1)<0)break;i.push(r)}else if(r<2048){if((e-=2)<0)break;i.push(r>>6|192,63&r|128)}else if(r<65536){if((e-=3)<0)break;i.push(r>>12|224,r>>6&63|128,63&r|128)}else{if(!(r<1114112))throw new Error(\"Invalid code point\");if((e-=4)<0)break;i.push(r>>18|240,r>>12&63|128,r>>6&63|128,63&r|128)}}return i}function B(t){return n.toByteArray(function(t){if((t=(t=t.split(\"=\")[0]).trim().replace(D,\"\")).length<2)return\"\";for(;t.length%4!=0;)t+=\"=\";return t}(t))}function N(t,e,r,n){for(var a=0;a<n&&!(a+r>=e.length||a>=t.length);++a)e[a+r]=t[a];return a}function j(t,e){return t instanceof e||null!=t&&null!=t.constructor&&null!=t.constructor.name&&t.constructor.name===e.name}function V(t){return t!=t}}).call(this,t(\"buffer\").Buffer)},{\"base64-js\":75,buffer:106,ieee754:413}],107:[function(t,e,r){\"use strict\";var n=t(\"./lib/monotone\"),a=t(\"./lib/triangulation\"),i=t(\"./lib/delaunay\"),o=t(\"./lib/filter\");function s(t){return[Math.min(t[0],t[1]),Math.max(t[0],t[1])]}function l(t,e){return t[0]-e[0]||t[1]-e[1]}function c(t,e,r){return e in t?t[e]:r}e.exports=function(t,e,r){Array.isArray(e)?(r=r||{},e=e||[]):(r=e||{},e=[]);var u=!!c(r,\"delaunay\",!0),h=!!c(r,\"interior\",!0),f=!!c(r,\"exterior\",!0),p=!!c(r,\"infinity\",!1);if(!h&&!f||0===t.length)return[];var d=n(t,e);if(u||h!==f||p){for(var g=a(t.length,function(t){return t.map(s).sort(l)}(e)),v=0;v<d.length;++v){var m=d[v];g.addTriangle(m[0],m[1],m[2])}return u&&i(t,g),f?h?p?o(g,0,p):g.cells():o(g,1,p):o(g,-1)}return d}},{\"./lib/delaunay\":108,\"./lib/filter\":109,\"./lib/monotone\":110,\"./lib/triangulation\":111}],108:[function(t,e,r){\"use strict\";var n=t(\"robust-in-sphere\")[4];t(\"binary-search-bounds\");function a(t,e,r,a,i,o){var s=e.opposite(a,i);if(!(s<0)){if(i<a){var l=a;a=i,i=l,l=o,o=s,s=l}e.isConstraint(a,i)||n(t[a],t[i],t[o],t[s])<0&&r.push(a,i)}}e.exports=function(t,e){for(var r=[],i=t.length,o=e.stars,s=0;s<i;++s)for(var l=o[s],c=1;c<l.length;c+=2){var u=l[c];if(!(u<s)&&!e.isConstraint(s,u)){for(var h=l[c-1],f=-1,p=1;p<l.length;p+=2)if(l[p-1]===u){f=l[p];break}f<0||n(t[s],t[u],t[h],t[f])<0&&r.push(s,u)}}for(;r.length>0;){for(var u=r.pop(),s=r.pop(),h=-1,f=-1,l=o[s],d=1;d<l.length;d+=2){var g=l[d-1],v=l[d];g===u?f=v:v===u&&(h=g)}h<0||f<0||(n(t[s],t[u],t[h],t[f])>=0||(e.flip(s,u),a(t,e,r,h,s,f),a(t,e,r,s,f,h),a(t,e,r,f,u,h),a(t,e,r,u,h,f)))}}},{\"binary-search-bounds\":112,\"robust-in-sphere\":509}],109:[function(t,e,r){\"use strict\";var n,a=t(\"binary-search-bounds\");function i(t,e,r,n,a,i,o){this.cells=t,this.neighbor=e,this.flags=n,this.constraint=r,this.active=a,this.next=i,this.boundary=o}function o(t,e){return t[0]-e[0]||t[1]-e[1]||t[2]-e[2]}e.exports=function(t,e,r){var n=function(t,e){for(var r=t.cells(),n=r.length,a=0;a<n;++a){var s=r[a],l=s[0],c=s[1],u=s[2];c<u?c<l&&(s[0]=c,s[1]=u,s[2]=l):u<l&&(s[0]=u,s[1]=l,s[2]=c)}r.sort(o);for(var h=new Array(n),a=0;a<h.length;++a)h[a]=0;var f=[],p=[],d=new Array(3*n),g=new Array(3*n),v=null;e&&(v=[]);for(var m=new i(r,d,g,h,f,p,v),a=0;a<n;++a)for(var s=r[a],y=0;y<3;++y){var l=s[y],c=s[(y+1)%3],x=d[3*a+y]=m.locate(c,l,t.opposite(c,l)),b=g[3*a+y]=t.isConstraint(l,c);x<0&&(b?p.push(a):(f.push(a),h[a]=1),e&&v.push([c,l,-1]))}return m}(t,r);if(0===e)return r?n.cells.concat(n.boundary):n.cells;var a=1,s=n.active,l=n.next,c=n.flags,u=n.cells,h=n.constraint,f=n.neighbor;for(;s.length>0||l.length>0;){for(;s.length>0;){var p=s.pop();if(c[p]!==-a){c[p]=a;u[p];for(var d=0;d<3;++d){var g=f[3*p+d];g>=0&&0===c[g]&&(h[3*p+d]?l.push(g):(s.push(g),c[g]=a))}}}var v=l;l=s,s=v,l.length=0,a=-a}var m=function(t,e,r){for(var n=0,a=0;a<t.length;++a)e[a]===r&&(t[n++]=t[a]);return t.length=n,t}(u,c,e);if(r)return m.concat(n.boundary);return m},i.prototype.locate=(n=[0,0,0],function(t,e,r){var i=t,s=e,l=r;return e<r?e<t&&(i=e,s=r,l=t):r<t&&(i=r,s=t,l=e),i<0?-1:(n[0]=i,n[1]=s,n[2]=l,a.eq(this.cells,n,o))})},{\"binary-search-bounds\":112}],110:[function(t,e,r){\"use strict\";var n=t(\"binary-search-bounds\"),a=t(\"robust-orientation\")[3],i=0,o=1,s=2;function l(t,e,r,n,a){this.a=t,this.b=e,this.idx=r,this.lowerIds=n,this.upperIds=a}function c(t,e,r,n){this.a=t,this.b=e,this.type=r,this.idx=n}function u(t,e){var r=t.a[0]-e.a[0]||t.a[1]-e.a[1]||t.type-e.type;return r||(t.type!==i&&(r=a(t.a,t.b,e.b))?r:t.idx-e.idx)}function h(t,e){return a(t.a,t.b,e)}function f(t,e,r,i,o){for(var s=n.lt(e,i,h),l=n.gt(e,i,h),c=s;c<l;++c){for(var u=e[c],f=u.lowerIds,p=f.length;p>1&&a(r[f[p-2]],r[f[p-1]],i)>0;)t.push([f[p-1],f[p-2],o]),p-=1;f.length=p,f.push(o);var d=u.upperIds;for(p=d.length;p>1&&a(r[d[p-2]],r[d[p-1]],i)<0;)t.push([d[p-2],d[p-1],o]),p-=1;d.length=p,d.push(o)}}function p(t,e){var r;return(r=t.a[0]<e.a[0]?a(t.a,t.b,e.a):a(e.b,e.a,t.a))?r:(r=e.b[0]<t.b[0]?a(t.a,t.b,e.b):a(e.b,e.a,t.b))||t.idx-e.idx}function d(t,e,r){var a=n.le(t,r,p),i=t[a],o=i.upperIds,s=o[o.length-1];i.upperIds=[s],t.splice(a+1,0,new l(r.a,r.b,r.idx,[s],o))}function g(t,e,r){var a=r.a;r.a=r.b,r.b=a;var i=n.eq(t,r,p),o=t[i];t[i-1].upperIds=o.upperIds,t.splice(i,1)}e.exports=function(t,e){for(var r=t.length,n=e.length,a=[],h=0;h<r;++h)a.push(new c(t[h],null,i,h));for(var h=0;h<n;++h){var p=e[h],v=t[p[0]],m=t[p[1]];v[0]<m[0]?a.push(new c(v,m,s,h),new c(m,v,o,h)):v[0]>m[0]&&a.push(new c(m,v,s,h),new c(v,m,o,h))}a.sort(u);for(var y=a[0].a[0]-(1+Math.abs(a[0].a[0]))*Math.pow(2,-52),x=[new l([y,1],[y,0],-1,[],[],[],[])],b=[],h=0,_=a.length;h<_;++h){var w=a[h],k=w.type;k===i?f(b,x,t,w.a,w.idx):k===s?d(x,t,w):g(x,t,w)}return b}},{\"binary-search-bounds\":112,\"robust-orientation\":511}],111:[function(t,e,r){\"use strict\";var n=t(\"binary-search-bounds\");function a(t,e){this.stars=t,this.edges=e}e.exports=function(t,e){for(var r=new Array(t),n=0;n<t;++n)r[n]=[];return new a(r,e)};var i=a.prototype;function o(t,e,r){for(var n=1,a=t.length;n<a;n+=2)if(t[n-1]===e&&t[n]===r)return t[n-1]=t[a-2],t[n]=t[a-1],void(t.length=a-2)}i.isConstraint=function(){var t=[0,0];function e(t,e){return t[0]-e[0]||t[1]-e[1]}return function(r,a){return t[0]=Math.min(r,a),t[1]=Math.max(r,a),n.eq(this.edges,t,e)>=0}}(),i.removeTriangle=function(t,e,r){var n=this.stars;o(n[t],e,r),o(n[e],r,t),o(n[r],t,e)},i.addTriangle=function(t,e,r){var n=this.stars;n[t].push(e,r),n[e].push(r,t),n[r].push(t,e)},i.opposite=function(t,e){for(var r=this.stars[e],n=1,a=r.length;n<a;n+=2)if(r[n]===t)return r[n-1];return-1},i.flip=function(t,e){var r=this.opposite(t,e),n=this.opposite(e,t);this.removeTriangle(t,e,r),this.removeTriangle(e,t,n),this.addTriangle(t,n,r),this.addTriangle(e,r,n)},i.edges=function(){for(var t=this.stars,e=[],r=0,n=t.length;r<n;++r)for(var a=t[r],i=0,o=a.length;i<o;i+=2)e.push([a[i],a[i+1]]);return e},i.cells=function(){for(var t=this.stars,e=[],r=0,n=t.length;r<n;++r)for(var a=t[r],i=0,o=a.length;i<o;i+=2){var s=a[i],l=a[i+1];r<Math.min(s,l)&&e.push([r,s,l])}return e}},{\"binary-search-bounds\":112}],112:[function(t,e,r){\"use strict\";function n(t,e,r,n,a){var i=[\"function \",t,\"(a,l,h,\",n.join(\",\"),\"){\",a?\"\":\"var i=\",r?\"l-1\":\"h+1\",\";while(l<=h){var m=(l+h)>>>1,x=a[m]\"];return a?e.indexOf(\"c\")<0?i.push(\";if(x===y){return m}else if(x<=y){\"):i.push(\";var p=c(x,y);if(p===0){return m}else if(p<=0){\"):i.push(\";if(\",e,\"){i=m;\"),r?i.push(\"l=m+1}else{h=m-1}\"):i.push(\"h=m-1}else{l=m+1}\"),i.push(\"}\"),a?i.push(\"return -1};\"):i.push(\"return i};\"),i.join(\"\")}function a(t,e,r,a){return new Function([n(\"A\",\"x\"+t+\"y\",e,[\"y\"],a),n(\"P\",\"c(x,y)\"+t+\"0\",e,[\"y\",\"c\"],a),\"function dispatchBsearch\",r,\"(a,y,c,l,h){if(typeof(c)==='function'){return P(a,(l===void 0)?0:l|0,(h===void 0)?a.length-1:h|0,y,c)}else{return A(a,(c===void 0)?0:c|0,(l===void 0)?a.length-1:l|0,y)}}return dispatchBsearch\",r].join(\"\"))()}e.exports={ge:a(\">=\",!1,\"GE\"),gt:a(\">\",!1,\"GT\"),lt:a(\"<\",!0,\"LT\"),le:a(\"<=\",!0,\"LE\"),eq:a(\"-\",!0,\"EQ\",!0)}},{}],113:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=1,r=1;r<t.length;++r)for(var n=0;n<r;++n)if(t[r]<t[n])e=-e;else if(t[n]===t[r])return 0;return e}},{}],114:[function(t,e,r){\"use strict\";var n=t(\"dup\"),a=t(\"robust-linear-solve\");function i(t,e){for(var r=0,n=t.length,a=0;a<n;++a)r+=t[a]*e[a];return r}function o(t){var e=t.length;if(0===e)return[];t[0].length;var r=n([t.length+1,t.length+1],1),o=n([t.length+1],1);r[e][e]=0;for(var s=0;s<e;++s){for(var l=0;l<=s;++l)r[l][s]=r[s][l]=2*i(t[s],t[l]);o[s]=i(t[s],t[s])}var c=a(r,o),u=0,h=c[e+1];for(s=0;s<h.length;++s)u+=h[s];var f=new Array(e);for(s=0;s<e;++s){h=c[s];var p=0;for(l=0;l<h.length;++l)p+=h[l];f[s]=p/u}return f}function s(t){if(0===t.length)return[];for(var e=t[0].length,r=n([e]),a=o(t),i=0;i<t.length;++i)for(var s=0;s<e;++s)r[s]+=t[i][s]*a[i];return r}s.barycenetric=o,e.exports=s},{dup:171,\"robust-linear-solve\":510}],115:[function(t,e,r){e.exports=function(t){for(var e=n(t),r=0,a=0;a<t.length;++a)for(var i=t[a],o=0;o<e.length;++o)r+=Math.pow(i[o]-e[o],2);return Math.sqrt(r/t.length)};var n=t(\"circumcenter\")},{circumcenter:114}],116:[function(t,e,r){e.exports=function(t,e,r){return e<r?t<e?e:t>r?r:t:t<r?r:t>e?e:t}},{}],117:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){var n;if(r){n=e;for(var a=new Array(e.length),i=0;i<e.length;++i){var o=e[i];a[i]=[o[0],o[1],r[i]]}e=a}var s=function(t,e,r){var n=d(t,[],p(t));return m(e,n,r),!!n}(t,e,!!r);for(;y(t,e,!!r);)s=!0;if(r&&s){n.length=0,r.length=0;for(var i=0;i<e.length;++i){var o=e[i];n.push([o[0],o[1]]),r.push(o[2])}}return s};var n=t(\"union-find\"),a=t(\"box-intersect\"),i=t(\"robust-segment-intersect\"),o=t(\"big-rat\"),s=t(\"big-rat/cmp\"),l=t(\"big-rat/to-float\"),c=t(\"rat-vec\"),u=t(\"nextafter\"),h=t(\"./lib/rat-seg-intersect\");function f(t){var e=l(t);return[u(e,-1/0),u(e,1/0)]}function p(t){for(var e=new Array(t.length),r=0;r<t.length;++r){var n=t[r];e[r]=[u(n[0],-1/0),u(n[1],-1/0),u(n[0],1/0),u(n[1],1/0)]}return e}function d(t,e,r){for(var i=e.length,o=new n(i),s=[],l=0;l<e.length;++l){var c=e[l],h=f(c[0]),p=f(c[1]);s.push([u(h[0],-1/0),u(p[0],-1/0),u(h[1],1/0),u(p[1],1/0)])}a(s,function(t,e){o.link(t,e)});var d=!0,g=new Array(i);for(l=0;l<i;++l){(m=o.find(l))!==l&&(d=!1,t[m]=[Math.min(t[l][0],t[m][0]),Math.min(t[l][1],t[m][1])])}if(d)return null;var v=0;for(l=0;l<i;++l){var m;(m=o.find(l))===l?(g[l]=v,t[v++]=t[l]):g[l]=-1}t.length=v;for(l=0;l<i;++l)g[l]<0&&(g[l]=g[o.find(l)]);return g}function g(t,e){return t[0]-e[0]||t[1]-e[1]}function v(t,e){var r=t[0]-e[0]||t[1]-e[1];return r||(t[2]<e[2]?-1:t[2]>e[2]?1:0)}function m(t,e,r){if(0!==t.length){if(e)for(var n=0;n<t.length;++n){var a=e[(o=t[n])[0]],i=e[o[1]];o[0]=Math.min(a,i),o[1]=Math.max(a,i)}else for(n=0;n<t.length;++n){var o;a=(o=t[n])[0],i=o[1];o[0]=Math.min(a,i),o[1]=Math.max(a,i)}r?t.sort(v):t.sort(g);var s=1;for(n=1;n<t.length;++n){var l=t[n-1],c=t[n];(c[0]!==l[0]||c[1]!==l[1]||r&&c[2]!==l[2])&&(t[s++]=c)}t.length=s}}function y(t,e,r){var n=function(t,e){for(var r=new Array(e.length),n=0;n<e.length;++n){var a=e[n],i=t[a[0]],o=t[a[1]];r[n]=[u(Math.min(i[0],o[0]),-1/0),u(Math.min(i[1],o[1]),-1/0),u(Math.max(i[0],o[0]),1/0),u(Math.max(i[1],o[1]),1/0)]}return r}(t,e),f=function(t,e,r){var n=[];return a(r,function(r,a){var o=e[r],s=e[a];if(o[0]!==s[0]&&o[0]!==s[1]&&o[1]!==s[0]&&o[1]!==s[1]){var l=t[o[0]],c=t[o[1]],u=t[s[0]],h=t[s[1]];i(l,c,u,h)&&n.push([r,a])}}),n}(t,e,n),g=p(t),v=function(t,e,r,n){var o=[];return a(r,n,function(r,n){var a=e[r];if(a[0]!==n&&a[1]!==n){var s=t[n],l=t[a[0]],c=t[a[1]];i(l,c,s,s)&&o.push([r,n])}}),o}(t,e,n,g),y=d(t,function(t,e,r,n,a){var i,u,f=t.map(function(t){return[o(t[0]),o(t[1])]});for(i=0;i<r.length;++i){var p=r[i];u=p[0];var d=p[1],g=e[u],v=e[d],m=h(c(t[g[0]]),c(t[g[1]]),c(t[v[0]]),c(t[v[1]]));if(m){var y=t.length;t.push([l(m[0]),l(m[1])]),f.push(m),n.push([u,y],[d,y])}}for(n.sort(function(t,e){if(t[0]!==e[0])return t[0]-e[0];var r=f[t[1]],n=f[e[1]];return s(r[0],n[0])||s(r[1],n[1])}),i=n.length-1;i>=0;--i){var x=e[u=(S=n[i])[0]],b=x[0],_=x[1],w=t[b],k=t[_];if((w[0]-k[0]||w[1]-k[1])<0){var T=b;b=_,_=T}x[0]=b;var A,M=x[1]=S[1];for(a&&(A=x[2]);i>0&&n[i-1][0]===u;){var S,E=(S=n[--i])[1];a?e.push([M,E,A]):e.push([M,E]),M=E}a?e.push([M,_,A]):e.push([M,_])}return f}(t,e,f,v,r));return m(e,y,r),!!y||(f.length>0||v.length>0)}},{\"./lib/rat-seg-intersect\":118,\"big-rat\":79,\"big-rat/cmp\":77,\"big-rat/to-float\":91,\"box-intersect\":97,nextafter:452,\"rat-vec\":487,\"robust-segment-intersect\":514,\"union-find\":547}],118:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n){var i=s(e,t),h=s(n,r),f=u(i,h);if(0===o(f))return null;var p=s(t,r),d=u(h,p),g=a(d,f),v=c(i,g);return l(t,v)};var n=t(\"big-rat/mul\"),a=t(\"big-rat/div\"),i=t(\"big-rat/sub\"),o=t(\"big-rat/sign\"),s=t(\"rat-vec/sub\"),l=t(\"rat-vec/add\"),c=t(\"rat-vec/muls\");function u(t,e){return i(n(t[0],e[1]),n(t[1],e[0]))}},{\"big-rat/div\":78,\"big-rat/mul\":88,\"big-rat/sign\":89,\"big-rat/sub\":90,\"rat-vec/add\":486,\"rat-vec/muls\":488,\"rat-vec/sub\":489}],119:[function(t,e,r){\"use strict\";var n=t(\"clamp\");function a(t,e){null==e&&(e=!0);var r=t[0],a=t[1],i=t[2],o=t[3];return null==o&&(o=e?1:255),e&&(r*=255,a*=255,i*=255,o*=255),16777216*(r=255&n(r,0,255))+((a=255&n(a,0,255))<<16)+((i=255&n(i,0,255))<<8)+(o=255&n(o,0,255))}e.exports=a,e.exports.to=a,e.exports.from=function(t,e){var r=(t=+t)>>>24,n=(16711680&t)>>>16,a=(65280&t)>>>8,i=255&t;return!1===e?[r,n,a,i]:[r/255,n/255,a/255,i/255]}},{clamp:116}],120:[function(t,e,r){\"use strict\";e.exports={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]}},{}],121:[function(t,e,r){\"use strict\";var n=t(\"color-rgba\"),a=t(\"clamp\"),i=t(\"dtype\");e.exports=function(t,e){\"float\"!==e&&e||(e=\"array\"),\"uint\"===e&&(e=\"uint8\"),\"uint_clamped\"===e&&(e=\"uint8_clamped\");var r=new(i(e))(4),o=\"uint8\"!==e&&\"uint8_clamped\"!==e;return t.length&&\"string\"!=typeof t||((t=n(t))[0]/=255,t[1]/=255,t[2]/=255),function(t){return t instanceof Uint8Array||t instanceof Uint8ClampedArray||!!(Array.isArray(t)&&(t[0]>1||0===t[0])&&(t[1]>1||0===t[1])&&(t[2]>1||0===t[2])&&(!t[3]||t[3]>1))}(t)?(r[0]=t[0],r[1]=t[1],r[2]=t[2],r[3]=null!=t[3]?t[3]:255,o&&(r[0]/=255,r[1]/=255,r[2]/=255,r[3]/=255),r):(o?(r[0]=t[0],r[1]=t[1],r[2]=t[2],r[3]=null!=t[3]?t[3]:1):(r[0]=a(Math.floor(255*t[0]),0,255),r[1]=a(Math.floor(255*t[1]),0,255),r[2]=a(Math.floor(255*t[2]),0,255),r[3]=null==t[3]?255:a(Math.floor(255*t[3]),0,255)),r)}},{clamp:116,\"color-rgba\":123,dtype:170}],122:[function(t,e,r){(function(r){\"use strict\";var n=t(\"color-name\"),a=t(\"is-plain-obj\"),i=t(\"defined\");e.exports=function(t){var e,s,l=[],c=1;if(\"string\"==typeof t)if(n[t])l=n[t].slice(),s=\"rgb\";else if(\"transparent\"===t)c=0,s=\"rgb\",l=[0,0,0];else if(/^#[A-Fa-f0-9]+$/.test(t)){var u=t.slice(1),h=u.length,f=h<=4;c=1,f?(l=[parseInt(u[0]+u[0],16),parseInt(u[1]+u[1],16),parseInt(u[2]+u[2],16)],4===h&&(c=parseInt(u[3]+u[3],16)/255)):(l=[parseInt(u[0]+u[1],16),parseInt(u[2]+u[3],16),parseInt(u[4]+u[5],16)],8===h&&(c=parseInt(u[6]+u[7],16)/255)),l[0]||(l[0]=0),l[1]||(l[1]=0),l[2]||(l[2]=0),s=\"rgb\"}else if(e=/^((?:rgb|hs[lvb]|hwb|cmyk?|xy[zy]|gray|lab|lchu?v?|[ly]uv|lms)a?)\\s*\\(([^\\)]*)\\)/.exec(t)){var p=e[1],d=\"rgb\"===p,u=p.replace(/a$/,\"\");s=u;var h=\"cmyk\"===u?4:\"gray\"===u?1:3;l=e[2].trim().split(/\\s*,\\s*/).map(function(t,e){if(/%$/.test(t))return e===h?parseFloat(t)/100:\"rgb\"===u?255*parseFloat(t)/100:parseFloat(t);if(\"h\"===u[e]){if(/deg$/.test(t))return parseFloat(t);if(void 0!==o[t])return o[t]}return parseFloat(t)}),p===u&&l.push(1),c=d?1:void 0===l[h]?1:l[h],l=l.slice(0,h)}else t.length>10&&/[0-9](?:\\s|\\/)/.test(t)&&(l=t.match(/([0-9]+)/g).map(function(t){return parseFloat(t)}),s=t.match(/([a-z])/gi).join(\"\").toLowerCase());else if(isNaN(t))if(a(t)){var g=i(t.r,t.red,t.R,null);null!==g?(s=\"rgb\",l=[g,i(t.g,t.green,t.G),i(t.b,t.blue,t.B)]):(s=\"hsl\",l=[i(t.h,t.hue,t.H),i(t.s,t.saturation,t.S),i(t.l,t.lightness,t.L,t.b,t.brightness)]),c=i(t.a,t.alpha,t.opacity,1),null!=t.opacity&&(c/=100)}else(Array.isArray(t)||r.ArrayBuffer&&ArrayBuffer.isView&&ArrayBuffer.isView(t))&&(l=[t[0],t[1],t[2]],s=\"rgb\",c=4===t.length?t[3]:1);else s=\"rgb\",l=[t>>>16,(65280&t)>>>8,255&t];return{space:s,values:l,alpha:c}};var o={red:0,orange:60,yellow:120,green:180,blue:240,purple:300}}).call(this,\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{\"color-name\":120,defined:165,\"is-plain-obj\":423}],123:[function(t,e,r){\"use strict\";var n=t(\"color-parse\"),a=t(\"color-space/hsl\"),i=t(\"clamp\");e.exports=function(t){var e,r=n(t);return r.space?((e=Array(3))[0]=i(r.values[0],0,255),e[1]=i(r.values[1],0,255),e[2]=i(r.values[2],0,255),\"h\"===r.space[0]&&(e=a.rgb(e)),e.push(i(r.alpha,0,1)),e):[]}},{clamp:116,\"color-parse\":122,\"color-space/hsl\":124}],124:[function(t,e,r){\"use strict\";var n=t(\"./rgb\");e.exports={name:\"hsl\",min:[0,0,0],max:[360,100,100],channel:[\"hue\",\"saturation\",\"lightness\"],alias:[\"HSL\"],rgb:function(t){var e,r,n,a,i,o=t[0]/360,s=t[1]/100,l=t[2]/100;if(0===s)return[i=255*l,i,i];e=2*l-(r=l<.5?l*(1+s):l+s-l*s),a=[0,0,0];for(var c=0;c<3;c++)(n=o+1/3*-(c-1))<0?n++:n>1&&n--,i=6*n<1?e+6*(r-e)*n:2*n<1?r:3*n<2?e+(r-e)*(2/3-n)*6:e,a[c]=255*i;return a}},n.hsl=function(t){var e,r,n=t[0]/255,a=t[1]/255,i=t[2]/255,o=Math.min(n,a,i),s=Math.max(n,a,i),l=s-o;return s===o?e=0:n===s?e=(a-i)/l:a===s?e=2+(i-n)/l:i===s&&(e=4+(n-a)/l),(e=Math.min(60*e,360))<0&&(e+=360),r=(o+s)/2,[e,100*(s===o?0:r<=.5?l/(s+o):l/(2-s-o)),100*r]}},{\"./rgb\":125}],125:[function(t,e,r){\"use strict\";e.exports={name:\"rgb\",min:[0,0,0],max:[255,255,255],channel:[\"red\",\"green\",\"blue\"],alias:[\"RGB\"]}},{}],126:[function(t,e,r){e.exports={jet:[{index:0,rgb:[0,0,131]},{index:.125,rgb:[0,60,170]},{index:.375,rgb:[5,255,255]},{index:.625,rgb:[255,255,0]},{index:.875,rgb:[250,0,0]},{index:1,rgb:[128,0,0]}],hsv:[{index:0,rgb:[255,0,0]},{index:.169,rgb:[253,255,2]},{index:.173,rgb:[247,255,2]},{index:.337,rgb:[0,252,4]},{index:.341,rgb:[0,252,10]},{index:.506,rgb:[1,249,255]},{index:.671,rgb:[2,0,253]},{index:.675,rgb:[8,0,253]},{index:.839,rgb:[255,0,251]},{index:.843,rgb:[255,0,245]},{index:1,rgb:[255,0,6]}],hot:[{index:0,rgb:[0,0,0]},{index:.3,rgb:[230,0,0]},{index:.6,rgb:[255,210,0]},{index:1,rgb:[255,255,255]}],cool:[{index:0,rgb:[0,255,255]},{index:1,rgb:[255,0,255]}],spring:[{index:0,rgb:[255,0,255]},{index:1,rgb:[255,255,0]}],summer:[{index:0,rgb:[0,128,102]},{index:1,rgb:[255,255,102]}],autumn:[{index:0,rgb:[255,0,0]},{index:1,rgb:[255,255,0]}],winter:[{index:0,rgb:[0,0,255]},{index:1,rgb:[0,255,128]}],bone:[{index:0,rgb:[0,0,0]},{index:.376,rgb:[84,84,116]},{index:.753,rgb:[169,200,200]},{index:1,rgb:[255,255,255]}],copper:[{index:0,rgb:[0,0,0]},{index:.804,rgb:[255,160,102]},{index:1,rgb:[255,199,127]}],greys:[{index:0,rgb:[0,0,0]},{index:1,rgb:[255,255,255]}],yignbu:[{index:0,rgb:[8,29,88]},{index:.125,rgb:[37,52,148]},{index:.25,rgb:[34,94,168]},{index:.375,rgb:[29,145,192]},{index:.5,rgb:[65,182,196]},{index:.625,rgb:[127,205,187]},{index:.75,rgb:[199,233,180]},{index:.875,rgb:[237,248,217]},{index:1,rgb:[255,255,217]}],greens:[{index:0,rgb:[0,68,27]},{index:.125,rgb:[0,109,44]},{index:.25,rgb:[35,139,69]},{index:.375,rgb:[65,171,93]},{index:.5,rgb:[116,196,118]},{index:.625,rgb:[161,217,155]},{index:.75,rgb:[199,233,192]},{index:.875,rgb:[229,245,224]},{index:1,rgb:[247,252,245]}],yiorrd:[{index:0,rgb:[128,0,38]},{index:.125,rgb:[189,0,38]},{index:.25,rgb:[227,26,28]},{index:.375,rgb:[252,78,42]},{index:.5,rgb:[253,141,60]},{index:.625,rgb:[254,178,76]},{index:.75,rgb:[254,217,118]},{index:.875,rgb:[255,237,160]},{index:1,rgb:[255,255,204]}],bluered:[{index:0,rgb:[0,0,255]},{index:1,rgb:[255,0,0]}],rdbu:[{index:0,rgb:[5,10,172]},{index:.35,rgb:[106,137,247]},{index:.5,rgb:[190,190,190]},{index:.6,rgb:[220,170,132]},{index:.7,rgb:[230,145,90]},{index:1,rgb:[178,10,28]}],picnic:[{index:0,rgb:[0,0,255]},{index:.1,rgb:[51,153,255]},{index:.2,rgb:[102,204,255]},{index:.3,rgb:[153,204,255]},{index:.4,rgb:[204,204,255]},{index:.5,rgb:[255,255,255]},{index:.6,rgb:[255,204,255]},{index:.7,rgb:[255,153,255]},{index:.8,rgb:[255,102,204]},{index:.9,rgb:[255,102,102]},{index:1,rgb:[255,0,0]}],rainbow:[{index:0,rgb:[150,0,90]},{index:.125,rgb:[0,0,200]},{index:.25,rgb:[0,25,255]},{index:.375,rgb:[0,152,255]},{index:.5,rgb:[44,255,150]},{index:.625,rgb:[151,255,0]},{index:.75,rgb:[255,234,0]},{index:.875,rgb:[255,111,0]},{index:1,rgb:[255,0,0]}],portland:[{index:0,rgb:[12,51,131]},{index:.25,rgb:[10,136,186]},{index:.5,rgb:[242,211,56]},{index:.75,rgb:[242,143,56]},{index:1,rgb:[217,30,30]}],blackbody:[{index:0,rgb:[0,0,0]},{index:.2,rgb:[230,0,0]},{index:.4,rgb:[230,210,0]},{index:.7,rgb:[255,255,255]},{index:1,rgb:[160,200,255]}],earth:[{index:0,rgb:[0,0,130]},{index:.1,rgb:[0,180,180]},{index:.2,rgb:[40,210,40]},{index:.4,rgb:[230,230,50]},{index:.6,rgb:[120,70,20]},{index:1,rgb:[255,255,255]}],electric:[{index:0,rgb:[0,0,0]},{index:.15,rgb:[30,0,100]},{index:.4,rgb:[120,0,100]},{index:.6,rgb:[160,90,0]},{index:.8,rgb:[230,200,0]},{index:1,rgb:[255,250,220]}],alpha:[{index:0,rgb:[255,255,255,0]},{index:1,rgb:[255,255,255,1]}],viridis:[{index:0,rgb:[68,1,84]},{index:.13,rgb:[71,44,122]},{index:.25,rgb:[59,81,139]},{index:.38,rgb:[44,113,142]},{index:.5,rgb:[33,144,141]},{index:.63,rgb:[39,173,129]},{index:.75,rgb:[92,200,99]},{index:.88,rgb:[170,220,50]},{index:1,rgb:[253,231,37]}],inferno:[{index:0,rgb:[0,0,4]},{index:.13,rgb:[31,12,72]},{index:.25,rgb:[85,15,109]},{index:.38,rgb:[136,34,106]},{index:.5,rgb:[186,54,85]},{index:.63,rgb:[227,89,51]},{index:.75,rgb:[249,140,10]},{index:.88,rgb:[249,201,50]},{index:1,rgb:[252,255,164]}],magma:[{index:0,rgb:[0,0,4]},{index:.13,rgb:[28,16,68]},{index:.25,rgb:[79,18,123]},{index:.38,rgb:[129,37,129]},{index:.5,rgb:[181,54,122]},{index:.63,rgb:[229,80,100]},{index:.75,rgb:[251,135,97]},{index:.88,rgb:[254,194,135]},{index:1,rgb:[252,253,191]}],plasma:[{index:0,rgb:[13,8,135]},{index:.13,rgb:[75,3,161]},{index:.25,rgb:[125,3,168]},{index:.38,rgb:[168,34,150]},{index:.5,rgb:[203,70,121]},{index:.63,rgb:[229,107,93]},{index:.75,rgb:[248,148,65]},{index:.88,rgb:[253,195,40]},{index:1,rgb:[240,249,33]}],warm:[{index:0,rgb:[125,0,179]},{index:.13,rgb:[172,0,187]},{index:.25,rgb:[219,0,170]},{index:.38,rgb:[255,0,130]},{index:.5,rgb:[255,63,74]},{index:.63,rgb:[255,123,0]},{index:.75,rgb:[234,176,0]},{index:.88,rgb:[190,228,0]},{index:1,rgb:[147,255,0]}],cool:[{index:0,rgb:[125,0,179]},{index:.13,rgb:[116,0,218]},{index:.25,rgb:[98,74,237]},{index:.38,rgb:[68,146,231]},{index:.5,rgb:[0,204,197]},{index:.63,rgb:[0,247,146]},{index:.75,rgb:[0,255,88]},{index:.88,rgb:[40,255,8]},{index:1,rgb:[147,255,0]}],\"rainbow-soft\":[{index:0,rgb:[125,0,179]},{index:.1,rgb:[199,0,180]},{index:.2,rgb:[255,0,121]},{index:.3,rgb:[255,108,0]},{index:.4,rgb:[222,194,0]},{index:.5,rgb:[150,255,0]},{index:.6,rgb:[0,255,55]},{index:.7,rgb:[0,246,150]},{index:.8,rgb:[50,167,222]},{index:.9,rgb:[103,51,235]},{index:1,rgb:[124,0,186]}],bathymetry:[{index:0,rgb:[40,26,44]},{index:.13,rgb:[59,49,90]},{index:.25,rgb:[64,76,139]},{index:.38,rgb:[63,110,151]},{index:.5,rgb:[72,142,158]},{index:.63,rgb:[85,174,163]},{index:.75,rgb:[120,206,163]},{index:.88,rgb:[187,230,172]},{index:1,rgb:[253,254,204]}],cdom:[{index:0,rgb:[47,15,62]},{index:.13,rgb:[87,23,86]},{index:.25,rgb:[130,28,99]},{index:.38,rgb:[171,41,96]},{index:.5,rgb:[206,67,86]},{index:.63,rgb:[230,106,84]},{index:.75,rgb:[242,149,103]},{index:.88,rgb:[249,193,135]},{index:1,rgb:[254,237,176]}],chlorophyll:[{index:0,rgb:[18,36,20]},{index:.13,rgb:[25,63,41]},{index:.25,rgb:[24,91,59]},{index:.38,rgb:[13,119,72]},{index:.5,rgb:[18,148,80]},{index:.63,rgb:[80,173,89]},{index:.75,rgb:[132,196,122]},{index:.88,rgb:[175,221,162]},{index:1,rgb:[215,249,208]}],density:[{index:0,rgb:[54,14,36]},{index:.13,rgb:[89,23,80]},{index:.25,rgb:[110,45,132]},{index:.38,rgb:[120,77,178]},{index:.5,rgb:[120,113,213]},{index:.63,rgb:[115,151,228]},{index:.75,rgb:[134,185,227]},{index:.88,rgb:[177,214,227]},{index:1,rgb:[230,241,241]}],\"freesurface-blue\":[{index:0,rgb:[30,4,110]},{index:.13,rgb:[47,14,176]},{index:.25,rgb:[41,45,236]},{index:.38,rgb:[25,99,212]},{index:.5,rgb:[68,131,200]},{index:.63,rgb:[114,156,197]},{index:.75,rgb:[157,181,203]},{index:.88,rgb:[200,208,216]},{index:1,rgb:[241,237,236]}],\"freesurface-red\":[{index:0,rgb:[60,9,18]},{index:.13,rgb:[100,17,27]},{index:.25,rgb:[142,20,29]},{index:.38,rgb:[177,43,27]},{index:.5,rgb:[192,87,63]},{index:.63,rgb:[205,125,105]},{index:.75,rgb:[216,162,148]},{index:.88,rgb:[227,199,193]},{index:1,rgb:[241,237,236]}],oxygen:[{index:0,rgb:[64,5,5]},{index:.13,rgb:[106,6,15]},{index:.25,rgb:[144,26,7]},{index:.38,rgb:[168,64,3]},{index:.5,rgb:[188,100,4]},{index:.63,rgb:[206,136,11]},{index:.75,rgb:[220,174,25]},{index:.88,rgb:[231,215,44]},{index:1,rgb:[248,254,105]}],par:[{index:0,rgb:[51,20,24]},{index:.13,rgb:[90,32,35]},{index:.25,rgb:[129,44,34]},{index:.38,rgb:[159,68,25]},{index:.5,rgb:[182,99,19]},{index:.63,rgb:[199,134,22]},{index:.75,rgb:[212,171,35]},{index:.88,rgb:[221,210,54]},{index:1,rgb:[225,253,75]}],phase:[{index:0,rgb:[145,105,18]},{index:.13,rgb:[184,71,38]},{index:.25,rgb:[186,58,115]},{index:.38,rgb:[160,71,185]},{index:.5,rgb:[110,97,218]},{index:.63,rgb:[50,123,164]},{index:.75,rgb:[31,131,110]},{index:.88,rgb:[77,129,34]},{index:1,rgb:[145,105,18]}],salinity:[{index:0,rgb:[42,24,108]},{index:.13,rgb:[33,50,162]},{index:.25,rgb:[15,90,145]},{index:.38,rgb:[40,118,137]},{index:.5,rgb:[59,146,135]},{index:.63,rgb:[79,175,126]},{index:.75,rgb:[120,203,104]},{index:.88,rgb:[193,221,100]},{index:1,rgb:[253,239,154]}],temperature:[{index:0,rgb:[4,35,51]},{index:.13,rgb:[23,51,122]},{index:.25,rgb:[85,59,157]},{index:.38,rgb:[129,79,143]},{index:.5,rgb:[175,95,130]},{index:.63,rgb:[222,112,101]},{index:.75,rgb:[249,146,66]},{index:.88,rgb:[249,196,65]},{index:1,rgb:[232,250,91]}],turbidity:[{index:0,rgb:[34,31,27]},{index:.13,rgb:[65,50,41]},{index:.25,rgb:[98,69,52]},{index:.38,rgb:[131,89,57]},{index:.5,rgb:[161,112,59]},{index:.63,rgb:[185,140,66]},{index:.75,rgb:[202,174,88]},{index:.88,rgb:[216,209,126]},{index:1,rgb:[233,246,171]}],\"velocity-blue\":[{index:0,rgb:[17,32,64]},{index:.13,rgb:[35,52,116]},{index:.25,rgb:[29,81,156]},{index:.38,rgb:[31,113,162]},{index:.5,rgb:[50,144,169]},{index:.63,rgb:[87,173,176]},{index:.75,rgb:[149,196,189]},{index:.88,rgb:[203,221,211]},{index:1,rgb:[254,251,230]}],\"velocity-green\":[{index:0,rgb:[23,35,19]},{index:.13,rgb:[24,64,38]},{index:.25,rgb:[11,95,45]},{index:.38,rgb:[39,123,35]},{index:.5,rgb:[95,146,12]},{index:.63,rgb:[152,165,18]},{index:.75,rgb:[201,186,69]},{index:.88,rgb:[233,216,137]},{index:1,rgb:[255,253,205]}],cubehelix:[{index:0,rgb:[0,0,0]},{index:.07,rgb:[22,5,59]},{index:.13,rgb:[60,4,105]},{index:.2,rgb:[109,1,135]},{index:.27,rgb:[161,0,147]},{index:.33,rgb:[210,2,142]},{index:.4,rgb:[251,11,123]},{index:.47,rgb:[255,29,97]},{index:.53,rgb:[255,54,69]},{index:.6,rgb:[255,85,46]},{index:.67,rgb:[255,120,34]},{index:.73,rgb:[255,157,37]},{index:.8,rgb:[241,191,57]},{index:.87,rgb:[224,220,93]},{index:.93,rgb:[218,241,142]},{index:1,rgb:[227,253,198]}]}},{}],127:[function(t,e,r){\"use strict\";var n=t(\"./colorScale\"),a=t(\"lerp\");function i(t){return[t[0]/255,t[1]/255,t[2]/255,t[3]]}function o(t){for(var e,r=\"#\",n=0;n<3;++n)r+=(\"00\"+(e=(e=t[n]).toString(16))).substr(e.length);return r}function s(t){return\"rgba(\"+t.join(\",\")+\")\"}e.exports=function(t){var e,r,l,c,u,h,f,p,d,g;t||(t={});p=(t.nshades||72)-1,f=t.format||\"hex\",(h=t.colormap)||(h=\"jet\");if(\"string\"==typeof h){if(h=h.toLowerCase(),!n[h])throw Error(h+\" not a supported colorscale\");u=n[h]}else{if(!Array.isArray(h))throw Error(\"unsupported colormap option\",h);u=h.slice()}if(u.length>p+1)throw new Error(h+\" map requires nshades to be at least size \"+u.length);d=Array.isArray(t.alpha)?2!==t.alpha.length?[1,1]:t.alpha.slice():\"number\"==typeof t.alpha?[t.alpha,t.alpha]:[1,1];e=u.map(function(t){return Math.round(t.index*p)}),d[0]=Math.min(Math.max(d[0],0),1),d[1]=Math.min(Math.max(d[1],0),1);var v=u.map(function(t,e){var r=u[e].index,n=u[e].rgb.slice();return 4===n.length&&n[3]>=0&&n[3]<=1?n:(n[3]=d[0]+(d[1]-d[0])*r,n)}),m=[];for(g=0;g<e.length-1;++g){c=e[g+1]-e[g],r=v[g],l=v[g+1];for(var y=0;y<c;y++){var x=y/c;m.push([Math.round(a(r[0],l[0],x)),Math.round(a(r[1],l[1],x)),Math.round(a(r[2],l[2],x)),a(r[3],l[3],x)])}}m.push(u[u.length-1].rgb.concat(d[1])),\"hex\"===f?m=m.map(o):\"rgbaString\"===f?m=m.map(s):\"float\"===f&&(m=m.map(i));return m}},{\"./colorScale\":126,lerp:426}],128:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,i){var o=n(e,r,i);if(0===o){var s=a(n(t,e,r)),c=a(n(t,e,i));if(s===c){if(0===s){var u=l(t,e,r),h=l(t,e,i);return u===h?0:u?1:-1}return 0}return 0===c?s>0?-1:l(t,e,i)?-1:1:0===s?c>0?1:l(t,e,r)?1:-1:a(c-s)}var f=n(t,e,r);if(f>0)return o>0&&n(t,e,i)>0?1:-1;if(f<0)return o>0||n(t,e,i)>0?1:-1;var p=n(t,e,i);return p>0?1:l(t,e,r)?1:-1};var n=t(\"robust-orientation\"),a=t(\"signum\"),i=t(\"two-sum\"),o=t(\"robust-product\"),s=t(\"robust-sum\");function l(t,e,r){var n=i(t[0],-e[0]),a=i(t[1],-e[1]),l=i(r[0],-e[0]),c=i(r[1],-e[1]),u=s(o(n,l),o(a,c));return u[u.length-1]>=0}},{\"robust-orientation\":511,\"robust-product\":512,\"robust-sum\":516,signum:517,\"two-sum\":545}],129:[function(t,e,r){e.exports=function(t,e){var r=t.length,i=t.length-e.length;if(i)return i;switch(r){case 0:return 0;case 1:return t[0]-e[0];case 2:return t[0]+t[1]-e[0]-e[1]||n(t[0],t[1])-n(e[0],e[1]);case 3:var o=t[0]+t[1],s=e[0]+e[1];if(i=o+t[2]-(s+e[2]))return i;var l=n(t[0],t[1]),c=n(e[0],e[1]);return n(l,t[2])-n(c,e[2])||n(l+t[2],o)-n(c+e[2],s);case 4:var u=t[0],h=t[1],f=t[2],p=t[3],d=e[0],g=e[1],v=e[2],m=e[3];return u+h+f+p-(d+g+v+m)||n(u,h,f,p)-n(d,g,v,m,d)||n(u+h,u+f,u+p,h+f,h+p,f+p)-n(d+g,d+v,d+m,g+v,g+m,v+m)||n(u+h+f,u+h+p,u+f+p,h+f+p)-n(d+g+v,d+g+m,d+v+m,g+v+m);default:for(var y=t.slice().sort(a),x=e.slice().sort(a),b=0;b<r;++b)if(i=y[b]-x[b])return i;return 0}};var n=Math.min;function a(t,e){return t-e}},{}],130:[function(t,e,r){\"use strict\";var n=t(\"compare-cell\"),a=t(\"cell-orientation\");e.exports=function(t,e){return n(t,e)||a(t)-a(e)}},{\"cell-orientation\":113,\"compare-cell\":129}],131:[function(t,e,r){\"use strict\";var n=t(\"./lib/ch1d\"),a=t(\"./lib/ch2d\"),i=t(\"./lib/chnd\");e.exports=function(t){var e=t.length;if(0===e)return[];if(1===e)return[[0]];var r=t[0].length;if(0===r)return[];if(1===r)return n(t);if(2===r)return a(t);return i(t,r)}},{\"./lib/ch1d\":132,\"./lib/ch2d\":133,\"./lib/chnd\":134}],132:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=0,r=0,n=1;n<t.length;++n)t[n][0]<t[e][0]&&(e=n),t[n][0]>t[r][0]&&(r=n);return e<r?[[e],[r]]:e>r?[[r],[e]]:[[e]]}},{}],133:[function(t,e,r){\"use strict\";e.exports=function(t){var e=n(t),r=e.length;if(r<=2)return[];for(var a=new Array(r),i=e[r-1],o=0;o<r;++o){var s=e[o];a[o]=[i,s],i=s}return a};var n=t(\"monotone-convex-hull-2d\")},{\"monotone-convex-hull-2d\":435}],134:[function(t,e,r){\"use strict\";e.exports=function(t,e){try{return n(t,!0)}catch(s){var r=a(t);if(r.length<=e)return[];var i=function(t,e){for(var r=t.length,n=new Array(r),a=0;a<e.length;++a)n[a]=t[e[a]];for(var i=e.length,a=0;a<r;++a)e.indexOf(a)<0&&(n[i++]=t[a]);return n}(t,r),o=n(i,!0);return function(t,e){for(var r=t.length,n=e.length,a=0;a<r;++a)for(var i=t[a],o=0;o<i.length;++o){var s=i[o];if(s<n)i[o]=e[s];else{s-=n;for(var l=0;l<n;++l)s>=e[l]&&(s+=1);i[o]=s}}return t}(o,r)}};var n=t(\"incremental-convex-hull\"),a=t(\"affine-hull\")},{\"affine-hull\":63,\"incremental-convex-hull\":414}],135:[function(t,e,r){e.exports={AFG:\"afghan\",ALA:\"\\\\b\\\\wland\",ALB:\"albania\",DZA:\"algeria\",ASM:\"^(?=.*americ).*samoa\",AND:\"andorra\",AGO:\"angola\",AIA:\"anguill?a\",ATA:\"antarctica\",ATG:\"antigua\",ARG:\"argentin\",ARM:\"armenia\",ABW:\"^(?!.*bonaire).*\\\\baruba\",AUS:\"australia\",AUT:\"^(?!.*hungary).*austria|\\\\baustri.*\\\\bemp\",AZE:\"azerbaijan\",BHS:\"bahamas\",BHR:\"bahrain\",BGD:\"bangladesh|^(?=.*east).*paki?stan\",BRB:\"barbados\",BLR:\"belarus|byelo\",BEL:\"^(?!.*luxem).*belgium\",BLZ:\"belize|^(?=.*british).*honduras\",BEN:\"benin|dahome\",BMU:\"bermuda\",BTN:\"bhutan\",BOL:\"bolivia\",BES:\"^(?=.*bonaire).*eustatius|^(?=.*carib).*netherlands|\\\\bbes.?islands\",BIH:\"herzegovina|bosnia\",BWA:\"botswana|bechuana\",BVT:\"bouvet\",BRA:\"brazil\",IOT:\"british.?indian.?ocean\",BRN:\"brunei\",BGR:\"bulgaria\",BFA:\"burkina|\\\\bfaso|upper.?volta\",BDI:\"burundi\",CPV:\"verde\",KHM:\"cambodia|kampuchea|khmer\",CMR:\"cameroon\",CAN:\"canada\",CYM:\"cayman\",CAF:\"\\\\bcentral.african.republic\",TCD:\"\\\\bchad\",CHL:\"\\\\bchile\",CHN:\"^(?!.*\\\\bmac)(?!.*\\\\bhong)(?!.*\\\\btai)(?!.*\\\\brep).*china|^(?=.*peo)(?=.*rep).*china\",CXR:\"christmas\",CCK:\"\\\\bcocos|keeling\",COL:\"colombia\",COM:\"comoro\",COG:\"^(?!.*\\\\bdem)(?!.*\\\\bd[\\\\.]?r)(?!.*kinshasa)(?!.*zaire)(?!.*belg)(?!.*l.opoldville)(?!.*free).*\\\\bcongo\",COK:\"\\\\bcook\",CRI:\"costa.?rica\",CIV:\"ivoire|ivory\",HRV:\"croatia\",CUB:\"\\\\bcuba\",CUW:\"^(?!.*bonaire).*\\\\bcura(c|\\xe7)ao\",CYP:\"cyprus\",CSK:\"czechoslovakia\",CZE:\"^(?=.*rep).*czech|czechia|bohemia\",COD:\"\\\\bdem.*congo|congo.*\\\\bdem|congo.*\\\\bd[\\\\.]?r|\\\\bd[\\\\.]?r.*congo|belgian.?congo|congo.?free.?state|kinshasa|zaire|l.opoldville|drc|droc|rdc\",DNK:\"denmark\",DJI:\"djibouti\",DMA:\"dominica(?!n)\",DOM:\"dominican.rep\",ECU:\"ecuador\",EGY:\"egypt\",SLV:\"el.?salvador\",GNQ:\"guine.*eq|eq.*guine|^(?=.*span).*guinea\",ERI:\"eritrea\",EST:\"estonia\",ETH:\"ethiopia|abyssinia\",FLK:\"falkland|malvinas\",FRO:\"faroe|faeroe\",FJI:\"fiji\",FIN:\"finland\",FRA:\"^(?!.*\\\\bdep)(?!.*martinique).*france|french.?republic|\\\\bgaul\",GUF:\"^(?=.*french).*guiana\",PYF:\"french.?polynesia|tahiti\",ATF:\"french.?southern\",GAB:\"gabon\",GMB:\"gambia\",GEO:\"^(?!.*south).*georgia\",DDR:\"german.?democratic.?republic|democratic.?republic.*germany|east.germany\",DEU:\"^(?!.*east).*germany|^(?=.*\\\\bfed.*\\\\brep).*german\",GHA:\"ghana|gold.?coast\",GIB:\"gibraltar\",GRC:\"greece|hellenic|hellas\",GRL:\"greenland\",GRD:\"grenada\",GLP:\"guadeloupe\",GUM:\"\\\\bguam\",GTM:\"guatemala\",GGY:\"guernsey\",GIN:\"^(?!.*eq)(?!.*span)(?!.*bissau)(?!.*portu)(?!.*new).*guinea\",GNB:\"bissau|^(?=.*portu).*guinea\",GUY:\"guyana|british.?guiana\",HTI:\"haiti\",HMD:\"heard.*mcdonald\",VAT:\"holy.?see|vatican|papal.?st\",HND:\"^(?!.*brit).*honduras\",HKG:\"hong.?kong\",HUN:\"^(?!.*austr).*hungary\",ISL:\"iceland\",IND:\"india(?!.*ocea)\",IDN:\"indonesia\",IRN:\"\\\\biran|persia\",IRQ:\"\\\\biraq|mesopotamia\",IRL:\"(^ireland)|(^republic.*ireland)\",IMN:\"^(?=.*isle).*\\\\bman\",ISR:\"israel\",ITA:\"italy\",JAM:\"jamaica\",JPN:\"japan\",JEY:\"jersey\",JOR:\"jordan\",KAZ:\"kazak\",KEN:\"kenya|british.?east.?africa|east.?africa.?prot\",KIR:\"kiribati\",PRK:\"^(?=.*democrat|people|north|d.*p.*.r).*\\\\bkorea|dprk|korea.*(d.*p.*r)\",KWT:\"kuwait\",KGZ:\"kyrgyz|kirghiz\",LAO:\"\\\\blaos?\\\\b\",LVA:\"latvia\",LBN:\"lebanon\",LSO:\"lesotho|basuto\",LBR:\"liberia\",LBY:\"libya\",LIE:\"liechtenstein\",LTU:\"lithuania\",LUX:\"^(?!.*belg).*luxem\",MAC:\"maca(o|u)\",MDG:\"madagascar|malagasy\",MWI:\"malawi|nyasa\",MYS:\"malaysia\",MDV:\"maldive\",MLI:\"\\\\bmali\\\\b\",MLT:\"\\\\bmalta\",MHL:\"marshall\",MTQ:\"martinique\",MRT:\"mauritania\",MUS:\"mauritius\",MYT:\"\\\\bmayotte\",MEX:\"\\\\bmexic\",FSM:\"fed.*micronesia|micronesia.*fed\",MCO:\"monaco\",MNG:\"mongolia\",MNE:\"^(?!.*serbia).*montenegro\",MSR:\"montserrat\",MAR:\"morocco|\\\\bmaroc\",MOZ:\"mozambique\",MMR:\"myanmar|burma\",NAM:\"namibia\",NRU:\"nauru\",NPL:\"nepal\",NLD:\"^(?!.*\\\\bant)(?!.*\\\\bcarib).*netherlands\",ANT:\"^(?=.*\\\\bant).*(nether|dutch)\",NCL:\"new.?caledonia\",NZL:\"new.?zealand\",NIC:\"nicaragua\",NER:\"\\\\bniger(?!ia)\",NGA:\"nigeria\",NIU:\"niue\",NFK:\"norfolk\",MNP:\"mariana\",NOR:\"norway\",OMN:\"\\\\boman|trucial\",PAK:\"^(?!.*east).*paki?stan\",PLW:\"palau\",PSE:\"palestin|\\\\bgaza|west.?bank\",PAN:\"panama\",PNG:\"papua|new.?guinea\",PRY:\"paraguay\",PER:\"peru\",PHL:\"philippines\",PCN:\"pitcairn\",POL:\"poland\",PRT:\"portugal\",PRI:\"puerto.?rico\",QAT:\"qatar\",KOR:\"^(?!.*d.*p.*r)(?!.*democrat)(?!.*people)(?!.*north).*\\\\bkorea(?!.*d.*p.*r)\",MDA:\"moldov|b(a|e)ssarabia\",REU:\"r(e|\\xe9)union\",ROU:\"r(o|u|ou)mania\",RUS:\"\\\\brussia|soviet.?union|u\\\\.?s\\\\.?s\\\\.?r|socialist.?republics\",RWA:\"rwanda\",BLM:\"barth(e|\\xe9)lemy\",SHN:\"helena\",KNA:\"kitts|\\\\bnevis\",LCA:\"\\\\blucia\",MAF:\"^(?=.*collectivity).*martin|^(?=.*france).*martin(?!ique)|^(?=.*french).*martin(?!ique)\",SPM:\"miquelon\",VCT:\"vincent\",WSM:\"^(?!.*amer).*samoa\",SMR:\"san.?marino\",STP:\"\\\\bs(a|\\xe3)o.?tom(e|\\xe9)\",SAU:\"\\\\bsa\\\\w*.?arabia\",SEN:\"senegal\",SRB:\"^(?!.*monte).*serbia\",SYC:\"seychell\",SLE:\"sierra\",SGP:\"singapore\",SXM:\"^(?!.*martin)(?!.*saba).*maarten\",SVK:\"^(?!.*cze).*slovak\",SVN:\"slovenia\",SLB:\"solomon\",SOM:\"somali\",ZAF:\"south.africa|s\\\\\\\\..?africa\",SGS:\"south.?georgia|sandwich\",SSD:\"\\\\bs\\\\w*.?sudan\",ESP:\"spain\",LKA:\"sri.?lanka|ceylon\",SDN:\"^(?!.*\\\\bs(?!u)).*sudan\",SUR:\"surinam|dutch.?guiana\",SJM:\"svalbard\",SWZ:\"swaziland\",SWE:\"sweden\",CHE:\"switz|swiss\",SYR:\"syria\",TWN:\"taiwan|taipei|formosa|^(?!.*peo)(?=.*rep).*china\",TJK:\"tajik\",THA:\"thailand|\\\\bsiam\",MKD:\"macedonia|fyrom\",TLS:\"^(?=.*leste).*timor|^(?=.*east).*timor\",TGO:\"togo\",TKL:\"tokelau\",TON:\"tonga\",TTO:\"trinidad|tobago\",TUN:\"tunisia\",TUR:\"turkey\",TKM:\"turkmen\",TCA:\"turks\",TUV:\"tuvalu\",UGA:\"uganda\",UKR:\"ukrain\",ARE:\"emirates|^u\\\\.?a\\\\.?e\\\\.?$|united.?arab.?em\",GBR:\"united.?kingdom|britain|^u\\\\.?k\\\\.?$\",TZA:\"tanzania\",USA:\"united.?states\\\\b(?!.*islands)|\\\\bu\\\\.?s\\\\.?a\\\\.?\\\\b|^\\\\s*u\\\\.?s\\\\.?\\\\b(?!.*islands)\",UMI:\"minor.?outlying.?is\",URY:\"uruguay\",UZB:\"uzbek\",VUT:\"vanuatu|new.?hebrides\",VEN:\"venezuela\",VNM:\"^(?!.*republic).*viet.?nam|^(?=.*socialist).*viet.?nam\",VGB:\"^(?=.*\\\\bu\\\\.?\\\\s?k).*virgin|^(?=.*brit).*virgin|^(?=.*kingdom).*virgin\",VIR:\"^(?=.*\\\\bu\\\\.?\\\\s?s).*virgin|^(?=.*states).*virgin\",WLF:\"futuna|wallis\",ESH:\"western.sahara\",YEM:\"^(?!.*arab)(?!.*north)(?!.*sana)(?!.*peo)(?!.*dem)(?!.*south)(?!.*aden)(?!.*\\\\bp\\\\.?d\\\\.?r).*yemen\",YMD:\"^(?=.*peo).*yemen|^(?!.*rep)(?=.*dem).*yemen|^(?=.*south).*yemen|^(?=.*aden).*yemen|^(?=.*\\\\bp\\\\.?d\\\\.?r).*yemen\",YUG:\"yugoslavia\",ZMB:\"zambia|northern.?rhodesia\",EAZ:\"zanzibar\",ZWE:\"zimbabwe|^(?!.*northern).*rhodesia\"}},{}],136:[function(t,e,r){e.exports=[\"xx-small\",\"x-small\",\"small\",\"medium\",\"large\",\"x-large\",\"xx-large\",\"larger\",\"smaller\"]},{}],137:[function(t,e,r){e.exports=[\"normal\",\"condensed\",\"semi-condensed\",\"extra-condensed\",\"ultra-condensed\",\"expanded\",\"semi-expanded\",\"extra-expanded\",\"ultra-expanded\"]},{}],138:[function(t,e,r){e.exports=[\"normal\",\"italic\",\"oblique\"]},{}],139:[function(t,e,r){e.exports=[\"normal\",\"bold\",\"bolder\",\"lighter\",\"100\",\"200\",\"300\",\"400\",\"500\",\"600\",\"700\",\"800\",\"900\"]},{}],140:[function(t,e,r){\"use strict\";e.exports={parse:t(\"./parse\"),stringify:t(\"./stringify\")}},{\"./parse\":142,\"./stringify\":143}],141:[function(t,e,r){\"use strict\";var n=t(\"css-font-size-keywords\");e.exports={isSize:function(t){return/^[\\d\\.]/.test(t)||-1!==t.indexOf(\"/\")||-1!==n.indexOf(t)}}},{\"css-font-size-keywords\":136}],142:[function(t,e,r){\"use strict\";var n=t(\"unquote\"),a=t(\"css-global-keywords\"),i=t(\"css-system-font-keywords\"),o=t(\"css-font-weight-keywords\"),s=t(\"css-font-style-keywords\"),l=t(\"css-font-stretch-keywords\"),c=t(\"string-split-by\"),u=t(\"./lib/util\").isSize;e.exports=f;var h=f.cache={};function f(t){if(\"string\"!=typeof t)throw new Error(\"Font argument must be a string.\");if(h[t])return h[t];if(\"\"===t)throw new Error(\"Cannot parse an empty string.\");if(-1!==i.indexOf(t))return h[t]={system:t};for(var e,r={style:\"normal\",variant:\"normal\",weight:\"normal\",stretch:\"normal\",lineHeight:\"normal\",size:\"1rem\",family:[\"serif\"]},f=c(t,/\\s+/);e=f.shift();){if(-1!==a.indexOf(e))return[\"style\",\"variant\",\"weight\",\"stretch\"].forEach(function(t){r[t]=e}),h[t]=r;if(-1===s.indexOf(e))if(\"normal\"!==e&&\"small-caps\"!==e)if(-1===l.indexOf(e)){if(-1===o.indexOf(e)){if(u(e)){var d=c(e,\"/\");if(r.size=d[0],null!=d[1]?r.lineHeight=p(d[1]):\"/\"===f[0]&&(f.shift(),r.lineHeight=p(f.shift())),!f.length)throw new Error(\"Missing required font-family.\");return r.family=c(f.join(\" \"),/\\s*,\\s*/).map(n),h[t]=r}throw new Error(\"Unknown or unsupported font token: \"+e)}r.weight=e}else r.stretch=e;else r.variant=e;else r.style=e}throw new Error(\"Missing required font-size.\")}function p(t){var e=parseFloat(t);return e.toString()===t?e:t}},{\"./lib/util\":141,\"css-font-stretch-keywords\":137,\"css-font-style-keywords\":138,\"css-font-weight-keywords\":139,\"css-global-keywords\":144,\"css-system-font-keywords\":145,\"string-split-by\":530,unquote:549}],143:[function(t,e,r){\"use strict\";var n=t(\"pick-by-alias\"),a=t(\"./lib/util\").isSize,i=g(t(\"css-global-keywords\")),o=g(t(\"css-system-font-keywords\")),s=g(t(\"css-font-weight-keywords\")),l=g(t(\"css-font-style-keywords\")),c=g(t(\"css-font-stretch-keywords\")),u={normal:1,\"small-caps\":1},h={serif:1,\"sans-serif\":1,monospace:1,cursive:1,fantasy:1,\"system-ui\":1},f=\"1rem\",p=\"serif\";function d(t,e){if(t&&!e[t]&&!i[t])throw Error(\"Unknown keyword `\"+t+\"`\");return t}function g(t){for(var e={},r=0;r<t.length;r++)e[t[r]]=1;return e}e.exports=function(t){if((t=n(t,{style:\"style fontstyle fontStyle font-style slope distinction\",variant:\"variant font-variant fontVariant fontvariant var capitalization\",weight:\"weight w font-weight fontWeight fontweight\",stretch:\"stretch font-stretch fontStretch fontstretch width\",size:\"size s font-size fontSize fontsize height em emSize\",lineHeight:\"lh line-height lineHeight lineheight leading\",family:\"font family fontFamily font-family fontfamily type typeface face\",system:\"system reserved default global\"})).system)return t.system&&d(t.system,o),t.system;if(d(t.style,l),d(t.variant,u),d(t.weight,s),d(t.stretch,c),null==t.size&&(t.size=f),\"number\"==typeof t.size&&(t.size+=\"px\"),!a)throw Error(\"Bad size value `\"+t.size+\"`\");t.family||(t.family=p),Array.isArray(t.family)&&(t.family.length||(t.family=[p]),t.family=t.family.map(function(t){return h[t]?t:'\"'+t+'\"'}).join(\", \"));var e=[];return e.push(t.style),t.variant!==t.style&&e.push(t.variant),t.weight!==t.variant&&t.weight!==t.style&&e.push(t.weight),t.stretch!==t.weight&&t.stretch!==t.variant&&t.stretch!==t.style&&e.push(t.stretch),e.push(t.size+(null==t.lineHeight||\"normal\"===t.lineHeight||t.lineHeight+\"\"==\"1\"?\"\":\"/\"+t.lineHeight)),e.push(t.family),e.filter(Boolean).join(\" \")}},{\"./lib/util\":141,\"css-font-stretch-keywords\":137,\"css-font-style-keywords\":138,\"css-font-weight-keywords\":139,\"css-global-keywords\":144,\"css-system-font-keywords\":145,\"pick-by-alias\":466}],144:[function(t,e,r){e.exports=[\"inherit\",\"initial\",\"unset\"]},{}],145:[function(t,e,r){e.exports=[\"caption\",\"icon\",\"menu\",\"message-box\",\"small-caption\",\"status-bar\"]},{}],146:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,a,i){var o=a-1,s=a*a,l=o*o,c=(1+2*a)*l,u=a*l,h=s*(3-2*a),f=s*o;if(t.length){i||(i=new Array(t.length));for(var p=t.length-1;p>=0;--p)i[p]=c*t[p]+u*e[p]+h*r[p]+f*n[p];return i}return c*t+u*e+h*r+f*n},e.exports.derivative=function(t,e,r,n,a,i){var o=6*a*a-6*a,s=3*a*a-4*a+1,l=-6*a*a+6*a,c=3*a*a-2*a;if(t.length){i||(i=new Array(t.length));for(var u=t.length-1;u>=0;--u)i[u]=o*t[u]+s*e[u]+l*r[u]+c*n[u];return i}return o*t+s*e+l*r[u]+c*n}},{}],147:[function(t,e,r){\"use strict\";var n=t(\"./lib/thunk.js\");function a(){this.argTypes=[],this.shimArgs=[],this.arrayArgs=[],this.arrayBlockIndices=[],this.scalarArgs=[],this.offsetArgs=[],this.offsetArgIndex=[],this.indexArgs=[],this.shapeArgs=[],this.funcName=\"\",this.pre=null,this.body=null,this.post=null,this.debug=!1}e.exports=function(t){var e=new a;e.pre=t.pre,e.body=t.body,e.post=t.post;var r=t.args.slice(0);e.argTypes=r;for(var i=0;i<r.length;++i){var o=r[i];if(\"array\"===o||\"object\"==typeof o&&o.blockIndices){if(e.argTypes[i]=\"array\",e.arrayArgs.push(i),e.arrayBlockIndices.push(o.blockIndices?o.blockIndices:0),e.shimArgs.push(\"array\"+i),i<e.pre.args.length&&e.pre.args[i].count>0)throw new Error(\"cwise: pre() block may not reference array args\");if(i<e.post.args.length&&e.post.args[i].count>0)throw new Error(\"cwise: post() block may not reference array args\")}else if(\"scalar\"===o)e.scalarArgs.push(i),e.shimArgs.push(\"scalar\"+i);else if(\"index\"===o){if(e.indexArgs.push(i),i<e.pre.args.length&&e.pre.args[i].count>0)throw new Error(\"cwise: pre() block may not reference array index\");if(i<e.body.args.length&&e.body.args[i].lvalue)throw new Error(\"cwise: body() block may not write to array index\");if(i<e.post.args.length&&e.post.args[i].count>0)throw new Error(\"cwise: post() block may not reference array index\")}else if(\"shape\"===o){if(e.shapeArgs.push(i),i<e.pre.args.length&&e.pre.args[i].lvalue)throw new Error(\"cwise: pre() block may not write to array shape\");if(i<e.body.args.length&&e.body.args[i].lvalue)throw new Error(\"cwise: body() block may not write to array shape\");if(i<e.post.args.length&&e.post.args[i].lvalue)throw new Error(\"cwise: post() block may not write to array shape\")}else{if(\"object\"!=typeof o||!o.offset)throw new Error(\"cwise: Unknown argument type \"+r[i]);e.argTypes[i]=\"offset\",e.offsetArgs.push({array:o.array,offset:o.offset}),e.offsetArgIndex.push(i)}}if(e.arrayArgs.length<=0)throw new Error(\"cwise: No array arguments specified\");if(e.pre.args.length>r.length)throw new Error(\"cwise: Too many arguments in pre() block\");if(e.body.args.length>r.length)throw new Error(\"cwise: Too many arguments in body() block\");if(e.post.args.length>r.length)throw new Error(\"cwise: Too many arguments in post() block\");return e.debug=!!t.printCode||!!t.debug,e.funcName=t.funcName||\"cwise\",e.blockSize=t.blockSize||64,n(e)}},{\"./lib/thunk.js\":149}],148:[function(t,e,r){\"use strict\";var n=t(\"uniq\");function a(t,e,r){var n,a,i=t.length,o=e.arrayArgs.length,s=e.indexArgs.length>0,l=[],c=[],u=0,h=0;for(n=0;n<i;++n)c.push([\"i\",n,\"=0\"].join(\"\"));for(a=0;a<o;++a)for(n=0;n<i;++n)h=u,u=t[n],0===n?c.push([\"d\",a,\"s\",n,\"=t\",a,\"p\",u].join(\"\")):c.push([\"d\",a,\"s\",n,\"=(t\",a,\"p\",u,\"-s\",h,\"*t\",a,\"p\",h,\")\"].join(\"\"));for(c.length>0&&l.push(\"var \"+c.join(\",\")),n=i-1;n>=0;--n)u=t[n],l.push([\"for(i\",n,\"=0;i\",n,\"<s\",u,\";++i\",n,\"){\"].join(\"\"));for(l.push(r),n=0;n<i;++n){for(h=u,u=t[n],a=0;a<o;++a)l.push([\"p\",a,\"+=d\",a,\"s\",n].join(\"\"));s&&(n>0&&l.push([\"index[\",h,\"]-=s\",h].join(\"\")),l.push([\"++index[\",u,\"]\"].join(\"\"))),l.push(\"}\")}return l.join(\"\\n\")}function i(t,e,r){for(var n=t.body,a=[],i=[],o=0;o<t.args.length;++o){var s=t.args[o];if(!(s.count<=0)){var l=new RegExp(s.name,\"g\"),c=\"\",u=e.arrayArgs.indexOf(o);switch(e.argTypes[o]){case\"offset\":var h=e.offsetArgIndex.indexOf(o);u=e.offsetArgs[h].array,c=\"+q\"+h;case\"array\":c=\"p\"+u+c;var f=\"l\"+o,p=\"a\"+u;if(0===e.arrayBlockIndices[u])1===s.count?\"generic\"===r[u]?s.lvalue?(a.push([\"var \",f,\"=\",p,\".get(\",c,\")\"].join(\"\")),n=n.replace(l,f),i.push([p,\".set(\",c,\",\",f,\")\"].join(\"\"))):n=n.replace(l,[p,\".get(\",c,\")\"].join(\"\")):n=n.replace(l,[p,\"[\",c,\"]\"].join(\"\")):\"generic\"===r[u]?(a.push([\"var \",f,\"=\",p,\".get(\",c,\")\"].join(\"\")),n=n.replace(l,f),s.lvalue&&i.push([p,\".set(\",c,\",\",f,\")\"].join(\"\"))):(a.push([\"var \",f,\"=\",p,\"[\",c,\"]\"].join(\"\")),n=n.replace(l,f),s.lvalue&&i.push([p,\"[\",c,\"]=\",f].join(\"\")));else{for(var d=[s.name],g=[c],v=0;v<Math.abs(e.arrayBlockIndices[u]);v++)d.push(\"\\\\s*\\\\[([^\\\\]]+)\\\\]\"),g.push(\"$\"+(v+1)+\"*t\"+u+\"b\"+v);if(l=new RegExp(d.join(\"\"),\"g\"),c=g.join(\"+\"),\"generic\"===r[u])throw new Error(\"cwise: Generic arrays not supported in combination with blocks!\");n=n.replace(l,[p,\"[\",c,\"]\"].join(\"\"))}break;case\"scalar\":n=n.replace(l,\"Y\"+e.scalarArgs.indexOf(o));break;case\"index\":n=n.replace(l,\"index\");break;case\"shape\":n=n.replace(l,\"shape\")}}}return[a.join(\"\\n\"),n,i.join(\"\\n\")].join(\"\\n\").trim()}e.exports=function(t,e){for(var r=e[1].length-Math.abs(t.arrayBlockIndices[0])|0,o=new Array(t.arrayArgs.length),s=new Array(t.arrayArgs.length),l=0;l<t.arrayArgs.length;++l)s[l]=e[2*l],o[l]=e[2*l+1];var c=[],u=[],h=[],f=[],p=[];for(l=0;l<t.arrayArgs.length;++l){t.arrayBlockIndices[l]<0?(h.push(0),f.push(r),c.push(r),u.push(r+t.arrayBlockIndices[l])):(h.push(t.arrayBlockIndices[l]),f.push(t.arrayBlockIndices[l]+r),c.push(0),u.push(t.arrayBlockIndices[l]));for(var d=[],g=0;g<o[l].length;g++)h[l]<=o[l][g]&&o[l][g]<f[l]&&d.push(o[l][g]-h[l]);p.push(d)}var v=[\"SS\"],m=[\"'use strict'\"],y=[];for(g=0;g<r;++g)y.push([\"s\",g,\"=SS[\",g,\"]\"].join(\"\"));for(l=0;l<t.arrayArgs.length;++l){for(v.push(\"a\"+l),v.push(\"t\"+l),v.push(\"p\"+l),g=0;g<r;++g)y.push([\"t\",l,\"p\",g,\"=t\",l,\"[\",h[l]+g,\"]\"].join(\"\"));for(g=0;g<Math.abs(t.arrayBlockIndices[l]);++g)y.push([\"t\",l,\"b\",g,\"=t\",l,\"[\",c[l]+g,\"]\"].join(\"\"))}for(l=0;l<t.scalarArgs.length;++l)v.push(\"Y\"+l);if(t.shapeArgs.length>0&&y.push(\"shape=SS.slice(0)\"),t.indexArgs.length>0){var x=new Array(r);for(l=0;l<r;++l)x[l]=\"0\";y.push([\"index=[\",x.join(\",\"),\"]\"].join(\"\"))}for(l=0;l<t.offsetArgs.length;++l){var b=t.offsetArgs[l],_=[];for(g=0;g<b.offset.length;++g)0!==b.offset[g]&&(1===b.offset[g]?_.push([\"t\",b.array,\"p\",g].join(\"\")):_.push([b.offset[g],\"*t\",b.array,\"p\",g].join(\"\")));0===_.length?y.push(\"q\"+l+\"=0\"):y.push([\"q\",l,\"=\",_.join(\"+\")].join(\"\"))}var w=n([].concat(t.pre.thisVars).concat(t.body.thisVars).concat(t.post.thisVars));for((y=y.concat(w)).length>0&&m.push(\"var \"+y.join(\",\")),l=0;l<t.arrayArgs.length;++l)m.push(\"p\"+l+\"|=0\");t.pre.body.length>3&&m.push(i(t.pre,t,s));var k=i(t.body,t,s),T=function(t){for(var e=0,r=t[0].length;e<r;){for(var n=1;n<t.length;++n)if(t[n][e]!==t[0][e])return e;++e}return e}(p);T<r?m.push(function(t,e,r,n){for(var i=e.length,o=r.arrayArgs.length,s=r.blockSize,l=r.indexArgs.length>0,c=[],u=0;u<o;++u)c.push([\"var offset\",u,\"=p\",u].join(\"\"));for(u=t;u<i;++u)c.push([\"for(var j\"+u+\"=SS[\",e[u],\"]|0;j\",u,\">0;){\"].join(\"\")),c.push([\"if(j\",u,\"<\",s,\"){\"].join(\"\")),c.push([\"s\",e[u],\"=j\",u].join(\"\")),c.push([\"j\",u,\"=0\"].join(\"\")),c.push([\"}else{s\",e[u],\"=\",s].join(\"\")),c.push([\"j\",u,\"-=\",s,\"}\"].join(\"\")),l&&c.push([\"index[\",e[u],\"]=j\",u].join(\"\"));for(u=0;u<o;++u){for(var h=[\"offset\"+u],f=t;f<i;++f)h.push([\"j\",f,\"*t\",u,\"p\",e[f]].join(\"\"));c.push([\"p\",u,\"=(\",h.join(\"+\"),\")\"].join(\"\"))}for(c.push(a(e,r,n)),u=t;u<i;++u)c.push(\"}\");return c.join(\"\\n\")}(T,p[0],t,k)):m.push(a(p[0],t,k)),t.post.body.length>3&&m.push(i(t.post,t,s)),t.debug&&console.log(\"-----Generated cwise routine for \",e,\":\\n\"+m.join(\"\\n\")+\"\\n----------\");var A=[t.funcName||\"unnamed\",\"_cwise_loop_\",o[0].join(\"s\"),\"m\",T,function(t){for(var e=new Array(t.length),r=!0,n=0;n<t.length;++n){var a=t[n],i=a.match(/\\d+/);i=i?i[0]:\"\",0===a.charAt(0)?e[n]=\"u\"+a.charAt(1)+i:e[n]=a.charAt(0)+i,n>0&&(r=r&&e[n]===e[n-1])}return r?e[0]:e.join(\"\")}(s)].join(\"\");return new Function([\"function \",A,\"(\",v.join(\",\"),\"){\",m.join(\"\\n\"),\"} return \",A].join(\"\"))()}},{uniq:548}],149:[function(t,e,r){\"use strict\";var n=t(\"./compile.js\");e.exports=function(t){var e=[\"'use strict'\",\"var CACHED={}\"],r=[],a=t.funcName+\"_cwise_thunk\";e.push([\"return function \",a,\"(\",t.shimArgs.join(\",\"),\"){\"].join(\"\"));for(var i=[],o=[],s=[[\"array\",t.arrayArgs[0],\".shape.slice(\",Math.max(0,t.arrayBlockIndices[0]),t.arrayBlockIndices[0]<0?\",\"+t.arrayBlockIndices[0]+\")\":\")\"].join(\"\")],l=[],c=[],u=0;u<t.arrayArgs.length;++u){var h=t.arrayArgs[u];r.push([\"t\",h,\"=array\",h,\".dtype,\",\"r\",h,\"=array\",h,\".order\"].join(\"\")),i.push(\"t\"+h),i.push(\"r\"+h),o.push(\"t\"+h),o.push(\"r\"+h+\".join()\"),s.push(\"array\"+h+\".data\"),s.push(\"array\"+h+\".stride\"),s.push(\"array\"+h+\".offset|0\"),u>0&&(l.push(\"array\"+t.arrayArgs[0]+\".shape.length===array\"+h+\".shape.length+\"+(Math.abs(t.arrayBlockIndices[0])-Math.abs(t.arrayBlockIndices[u]))),c.push(\"array\"+t.arrayArgs[0]+\".shape[shapeIndex+\"+Math.max(0,t.arrayBlockIndices[0])+\"]===array\"+h+\".shape[shapeIndex+\"+Math.max(0,t.arrayBlockIndices[u])+\"]\"))}for(t.arrayArgs.length>1&&(e.push(\"if (!(\"+l.join(\" && \")+\")) throw new Error('cwise: Arrays do not all have the same dimensionality!')\"),e.push(\"for(var shapeIndex=array\"+t.arrayArgs[0]+\".shape.length-\"+Math.abs(t.arrayBlockIndices[0])+\"; shapeIndex--\\x3e0;) {\"),e.push(\"if (!(\"+c.join(\" && \")+\")) throw new Error('cwise: Arrays do not all have the same shape!')\"),e.push(\"}\")),u=0;u<t.scalarArgs.length;++u)s.push(\"scalar\"+t.scalarArgs[u]);return r.push([\"type=[\",o.join(\",\"),\"].join()\"].join(\"\")),r.push(\"proc=CACHED[type]\"),e.push(\"var \"+r.join(\",\")),e.push([\"if(!proc){\",\"CACHED[type]=proc=compile([\",i.join(\",\"),\"])}\",\"return proc(\",s.join(\",\"),\")}\"].join(\"\")),t.debug&&console.log(\"-----Generated thunk:\\n\"+e.join(\"\\n\")+\"\\n----------\"),new Function(\"compile\",e.join(\"\\n\"))(n.bind(void 0,t))}},{\"./compile.js\":148}],150:[function(t,e,r){e.exports=t(\"cwise-compiler\")},{\"cwise-compiler\":147}],151:[function(t,e,r){\"use strict\";var n,a=t(\"es5-ext/object/copy\"),i=t(\"es5-ext/object/normalize-options\"),o=t(\"es5-ext/object/valid-callable\"),s=t(\"es5-ext/object/map\"),l=t(\"es5-ext/object/valid-callable\"),c=t(\"es5-ext/object/valid-value\"),u=Function.prototype.bind,h=Object.defineProperty,f=Object.prototype.hasOwnProperty;n=function(t,e,r){var n,i=c(e)&&l(e.value);return delete(n=a(e)).writable,delete n.value,n.get=function(){return!r.overwriteDefinition&&f.call(this,t)?i:(e.value=u.call(i,r.resolveContext?r.resolveContext(this):this),h(this,t,e),this[t])},n},e.exports=function(t){var e=i(arguments[1]);return null!=e.resolveContext&&o(e.resolveContext),s(t,function(t,r){return n(r,t,e)})}},{\"es5-ext/object/copy\":190,\"es5-ext/object/map\":199,\"es5-ext/object/normalize-options\":200,\"es5-ext/object/valid-callable\":204,\"es5-ext/object/valid-value\":206}],152:[function(t,e,r){\"use strict\";var n=t(\"es5-ext/object/assign\"),a=t(\"es5-ext/object/normalize-options\"),i=t(\"es5-ext/object/is-callable\"),o=t(\"es5-ext/string/#/contains\");(e.exports=function(t,e){var r,i,s,l,c;return arguments.length<2||\"string\"!=typeof t?(l=e,e=t,t=null):l=arguments[2],null==t?(r=s=!0,i=!1):(r=o.call(t,\"c\"),i=o.call(t,\"e\"),s=o.call(t,\"w\")),c={value:e,configurable:r,enumerable:i,writable:s},l?n(a(l),c):c}).gs=function(t,e,r){var s,l,c,u;return\"string\"!=typeof t?(c=r,r=e,e=t,t=null):c=arguments[3],null==e?e=void 0:i(e)?null==r?r=void 0:i(r)||(c=r,r=void 0):(c=e,e=r=void 0),null==t?(s=!0,l=!1):(s=o.call(t,\"c\"),l=o.call(t,\"e\")),u={get:e,set:r,configurable:s,enumerable:l},c?n(a(c),u):u}},{\"es5-ext/object/assign\":187,\"es5-ext/object/is-callable\":193,\"es5-ext/object/normalize-options\":200,\"es5-ext/string/#/contains\":207}],153:[function(t,e,r){var n;n=this,function(t){\"use strict\";function e(t,e){return t<e?-1:t>e?1:t>=e?0:NaN}function r(t){var r;return 1===t.length&&(r=t,t=function(t,n){return e(r(t),n)}),{left:function(e,r,n,a){for(null==n&&(n=0),null==a&&(a=e.length);n<a;){var i=n+a>>>1;t(e[i],r)<0?n=i+1:a=i}return n},right:function(e,r,n,a){for(null==n&&(n=0),null==a&&(a=e.length);n<a;){var i=n+a>>>1;t(e[i],r)>0?a=i:n=i+1}return n}}}var n=r(e),a=n.right,i=n.left;function o(t,e){return[t,e]}function s(t){return null===t?NaN:+t}function l(t,e){var r,n,a=t.length,i=0,o=-1,l=0,c=0;if(null==e)for(;++o<a;)isNaN(r=s(t[o]))||(c+=(n=r-l)*(r-(l+=n/++i)));else for(;++o<a;)isNaN(r=s(e(t[o],o,t)))||(c+=(n=r-l)*(r-(l+=n/++i)));if(i>1)return c/(i-1)}function c(t,e){var r=l(t,e);return r?Math.sqrt(r):r}function u(t,e){var r,n,a,i=t.length,o=-1;if(null==e){for(;++o<i;)if(null!=(r=t[o])&&r>=r)for(n=a=r;++o<i;)null!=(r=t[o])&&(n>r&&(n=r),a<r&&(a=r))}else for(;++o<i;)if(null!=(r=e(t[o],o,t))&&r>=r)for(n=a=r;++o<i;)null!=(r=e(t[o],o,t))&&(n>r&&(n=r),a<r&&(a=r));return[n,a]}var h=Array.prototype,f=h.slice,p=h.map;function d(t){return function(){return t}}function g(t){return t}function v(t,e,r){t=+t,e=+e,r=(a=arguments.length)<2?(e=t,t=0,1):a<3?1:+r;for(var n=-1,a=0|Math.max(0,Math.ceil((e-t)/r)),i=new Array(a);++n<a;)i[n]=t+n*r;return i}var m=Math.sqrt(50),y=Math.sqrt(10),x=Math.sqrt(2);function b(t,e,r){var n=(e-t)/Math.max(0,r),a=Math.floor(Math.log(n)/Math.LN10),i=n/Math.pow(10,a);return a>=0?(i>=m?10:i>=y?5:i>=x?2:1)*Math.pow(10,a):-Math.pow(10,-a)/(i>=m?10:i>=y?5:i>=x?2:1)}function _(t,e,r){var n=Math.abs(e-t)/Math.max(0,r),a=Math.pow(10,Math.floor(Math.log(n)/Math.LN10)),i=n/a;return i>=m?a*=10:i>=y?a*=5:i>=x&&(a*=2),e<t?-a:a}function w(t){return Math.ceil(Math.log(t.length)/Math.LN2)+1}function k(t,e,r){if(null==r&&(r=s),n=t.length){if((e=+e)<=0||n<2)return+r(t[0],0,t);if(e>=1)return+r(t[n-1],n-1,t);var n,a=(n-1)*e,i=Math.floor(a),o=+r(t[i],i,t);return o+(+r(t[i+1],i+1,t)-o)*(a-i)}}function T(t,e){var r,n,a=t.length,i=-1;if(null==e){for(;++i<a;)if(null!=(r=t[i])&&r>=r)for(n=r;++i<a;)null!=(r=t[i])&&n>r&&(n=r)}else for(;++i<a;)if(null!=(r=e(t[i],i,t))&&r>=r)for(n=r;++i<a;)null!=(r=e(t[i],i,t))&&n>r&&(n=r);return n}function A(t){if(!(a=t.length))return[];for(var e=-1,r=T(t,M),n=new Array(r);++e<r;)for(var a,i=-1,o=n[e]=new Array(a);++i<a;)o[i]=t[i][e];return n}function M(t){return t.length}t.bisect=a,t.bisectRight=a,t.bisectLeft=i,t.ascending=e,t.bisector=r,t.cross=function(t,e,r){var n,a,i,s,l=t.length,c=e.length,u=new Array(l*c);for(null==r&&(r=o),n=i=0;n<l;++n)for(s=t[n],a=0;a<c;++a,++i)u[i]=r(s,e[a]);return u},t.descending=function(t,e){return e<t?-1:e>t?1:e>=t?0:NaN},t.deviation=c,t.extent=u,t.histogram=function(){var t=g,e=u,r=w;function n(n){var i,o,s=n.length,l=new Array(s);for(i=0;i<s;++i)l[i]=t(n[i],i,n);var c=e(l),u=c[0],h=c[1],f=r(l,u,h);Array.isArray(f)||(f=_(u,h,f),f=v(Math.ceil(u/f)*f,h,f));for(var p=f.length;f[0]<=u;)f.shift(),--p;for(;f[p-1]>h;)f.pop(),--p;var d,g=new Array(p+1);for(i=0;i<=p;++i)(d=g[i]=[]).x0=i>0?f[i-1]:u,d.x1=i<p?f[i]:h;for(i=0;i<s;++i)u<=(o=l[i])&&o<=h&&g[a(f,o,0,p)].push(n[i]);return g}return n.value=function(e){return arguments.length?(t=\"function\"==typeof e?e:d(e),n):t},n.domain=function(t){return arguments.length?(e=\"function\"==typeof t?t:d([t[0],t[1]]),n):e},n.thresholds=function(t){return arguments.length?(r=\"function\"==typeof t?t:Array.isArray(t)?d(f.call(t)):d(t),n):r},n},t.thresholdFreedmanDiaconis=function(t,r,n){return t=p.call(t,s).sort(e),Math.ceil((n-r)/(2*(k(t,.75)-k(t,.25))*Math.pow(t.length,-1/3)))},t.thresholdScott=function(t,e,r){return Math.ceil((r-e)/(3.5*c(t)*Math.pow(t.length,-1/3)))},t.thresholdSturges=w,t.max=function(t,e){var r,n,a=t.length,i=-1;if(null==e){for(;++i<a;)if(null!=(r=t[i])&&r>=r)for(n=r;++i<a;)null!=(r=t[i])&&r>n&&(n=r)}else for(;++i<a;)if(null!=(r=e(t[i],i,t))&&r>=r)for(n=r;++i<a;)null!=(r=e(t[i],i,t))&&r>n&&(n=r);return n},t.mean=function(t,e){var r,n=t.length,a=n,i=-1,o=0;if(null==e)for(;++i<n;)isNaN(r=s(t[i]))?--a:o+=r;else for(;++i<n;)isNaN(r=s(e(t[i],i,t)))?--a:o+=r;if(a)return o/a},t.median=function(t,r){var n,a=t.length,i=-1,o=[];if(null==r)for(;++i<a;)isNaN(n=s(t[i]))||o.push(n);else for(;++i<a;)isNaN(n=s(r(t[i],i,t)))||o.push(n);return k(o.sort(e),.5)},t.merge=function(t){for(var e,r,n,a=t.length,i=-1,o=0;++i<a;)o+=t[i].length;for(r=new Array(o);--a>=0;)for(e=(n=t[a]).length;--e>=0;)r[--o]=n[e];return r},t.min=T,t.pairs=function(t,e){null==e&&(e=o);for(var r=0,n=t.length-1,a=t[0],i=new Array(n<0?0:n);r<n;)i[r]=e(a,a=t[++r]);return i},t.permute=function(t,e){for(var r=e.length,n=new Array(r);r--;)n[r]=t[e[r]];return n},t.quantile=k,t.range=v,t.scan=function(t,r){if(n=t.length){var n,a,i=0,o=0,s=t[o];for(null==r&&(r=e);++i<n;)(r(a=t[i],s)<0||0!==r(s,s))&&(s=a,o=i);return 0===r(s,s)?o:void 0}},t.shuffle=function(t,e,r){for(var n,a,i=(null==r?t.length:r)-(e=null==e?0:+e);i;)a=Math.random()*i--|0,n=t[i+e],t[i+e]=t[a+e],t[a+e]=n;return t},t.sum=function(t,e){var r,n=t.length,a=-1,i=0;if(null==e)for(;++a<n;)(r=+t[a])&&(i+=r);else for(;++a<n;)(r=+e(t[a],a,t))&&(i+=r);return i},t.ticks=function(t,e,r){var n,a,i,o,s=-1;if(r=+r,(t=+t)==(e=+e)&&r>0)return[t];if((n=e<t)&&(a=t,t=e,e=a),0===(o=b(t,e,r))||!isFinite(o))return[];if(o>0)for(t=Math.ceil(t/o),e=Math.floor(e/o),i=new Array(a=Math.ceil(e-t+1));++s<a;)i[s]=(t+s)*o;else for(t=Math.floor(t*o),e=Math.ceil(e*o),i=new Array(a=Math.ceil(t-e+1));++s<a;)i[s]=(t-s)/o;return n&&i.reverse(),i},t.tickIncrement=b,t.tickStep=_,t.transpose=A,t.variance=l,t.zip=function(){return A(arguments)},Object.defineProperty(t,\"__esModule\",{value:!0})}(\"object\"==typeof r&&\"undefined\"!=typeof e?r:n.d3=n.d3||{})},{}],154:[function(t,e,r){var n;n=this,function(t){\"use strict\";function e(){}function r(t,r){var n=new e;if(t instanceof e)t.each(function(t,e){n.set(e,t)});else if(Array.isArray(t)){var a,i=-1,o=t.length;if(null==r)for(;++i<o;)n.set(i,t[i]);else for(;++i<o;)n.set(r(a=t[i],i,t),a)}else if(t)for(var s in t)n.set(s,t[s]);return n}e.prototype=r.prototype={constructor:e,has:function(t){return\"$\"+t in this},get:function(t){return this[\"$\"+t]},set:function(t,e){return this[\"$\"+t]=e,this},remove:function(t){var e=\"$\"+t;return e in this&&delete this[e]},clear:function(){for(var t in this)\"$\"===t[0]&&delete this[t]},keys:function(){var t=[];for(var e in this)\"$\"===e[0]&&t.push(e.slice(1));return t},values:function(){var t=[];for(var e in this)\"$\"===e[0]&&t.push(this[e]);return t},entries:function(){var t=[];for(var e in this)\"$\"===e[0]&&t.push({key:e.slice(1),value:this[e]});return t},size:function(){var t=0;for(var e in this)\"$\"===e[0]&&++t;return t},empty:function(){for(var t in this)if(\"$\"===t[0])return!1;return!0},each:function(t){for(var e in this)\"$\"===e[0]&&t(this[e],e.slice(1),this)}};function n(){return{}}function a(t,e,r){t[e]=r}function i(){return r()}function o(t,e,r){t.set(e,r)}function s(){}var l=r.prototype;function c(t,e){var r=new s;if(t instanceof s)t.each(function(t){r.add(t)});else if(t){var n=-1,a=t.length;if(null==e)for(;++n<a;)r.add(t[n]);else for(;++n<a;)r.add(e(t[n],n,t))}return r}s.prototype=c.prototype={constructor:s,has:l.has,add:function(t){return this[\"$\"+(t+=\"\")]=t,this},remove:l.remove,clear:l.clear,values:l.keys,size:l.size,empty:l.empty,each:l.each};t.nest=function(){var t,e,s,l=[],c=[];function u(n,a,i,o){if(a>=l.length)return null!=t&&n.sort(t),null!=e?e(n):n;for(var s,c,h,f=-1,p=n.length,d=l[a++],g=r(),v=i();++f<p;)(h=g.get(s=d(c=n[f])+\"\"))?h.push(c):g.set(s,[c]);return g.each(function(t,e){o(v,e,u(t,a,i,o))}),v}return s={object:function(t){return u(t,0,n,a)},map:function(t){return u(t,0,i,o)},entries:function(t){return function t(r,n){if(++n>l.length)return r;var a,i=c[n-1];return null!=e&&n>=l.length?a=r.entries():(a=[],r.each(function(e,r){a.push({key:r,values:t(e,n)})})),null!=i?a.sort(function(t,e){return i(t.key,e.key)}):a}(u(t,0,i,o),0)},key:function(t){return l.push(t),s},sortKeys:function(t){return c[l.length-1]=t,s},sortValues:function(e){return t=e,s},rollup:function(t){return e=t,s}}},t.set=c,t.map=r,t.keys=function(t){var e=[];for(var r in t)e.push(r);return e},t.values=function(t){var e=[];for(var r in t)e.push(t[r]);return e},t.entries=function(t){var e=[];for(var r in t)e.push({key:r,value:t[r]});return e},Object.defineProperty(t,\"__esModule\",{value:!0})}(\"object\"==typeof r&&\"undefined\"!=typeof e?r:n.d3=n.d3||{})},{}],155:[function(t,e,r){var n;n=this,function(t){\"use strict\";function e(t,e,r){t.prototype=e.prototype=r,r.constructor=t}function r(t,e){var r=Object.create(t.prototype);for(var n in e)r[n]=e[n];return r}function n(){}var a=\"\\\\s*([+-]?\\\\d+)\\\\s*\",i=\"\\\\s*([+-]?\\\\d*\\\\.?\\\\d+(?:[eE][+-]?\\\\d+)?)\\\\s*\",o=\"\\\\s*([+-]?\\\\d*\\\\.?\\\\d+(?:[eE][+-]?\\\\d+)?)%\\\\s*\",s=/^#([0-9a-f]{3})$/,l=/^#([0-9a-f]{6})$/,c=new RegExp(\"^rgb\\\\(\"+[a,a,a]+\"\\\\)$\"),u=new RegExp(\"^rgb\\\\(\"+[o,o,o]+\"\\\\)$\"),h=new RegExp(\"^rgba\\\\(\"+[a,a,a,i]+\"\\\\)$\"),f=new RegExp(\"^rgba\\\\(\"+[o,o,o,i]+\"\\\\)$\"),p=new RegExp(\"^hsl\\\\(\"+[i,o,o]+\"\\\\)$\"),d=new RegExp(\"^hsla\\\\(\"+[i,o,o,i]+\"\\\\)$\"),g={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};function v(t){var e;return t=(t+\"\").trim().toLowerCase(),(e=s.exec(t))?new _((e=parseInt(e[1],16))>>8&15|e>>4&240,e>>4&15|240&e,(15&e)<<4|15&e,1):(e=l.exec(t))?m(parseInt(e[1],16)):(e=c.exec(t))?new _(e[1],e[2],e[3],1):(e=u.exec(t))?new _(255*e[1]/100,255*e[2]/100,255*e[3]/100,1):(e=h.exec(t))?y(e[1],e[2],e[3],e[4]):(e=f.exec(t))?y(255*e[1]/100,255*e[2]/100,255*e[3]/100,e[4]):(e=p.exec(t))?k(e[1],e[2]/100,e[3]/100,1):(e=d.exec(t))?k(e[1],e[2]/100,e[3]/100,e[4]):g.hasOwnProperty(t)?m(g[t]):\"transparent\"===t?new _(NaN,NaN,NaN,0):null}function m(t){return new _(t>>16&255,t>>8&255,255&t,1)}function y(t,e,r,n){return n<=0&&(t=e=r=NaN),new _(t,e,r,n)}function x(t){return t instanceof n||(t=v(t)),t?new _((t=t.rgb()).r,t.g,t.b,t.opacity):new _}function b(t,e,r,n){return 1===arguments.length?x(t):new _(t,e,r,null==n?1:n)}function _(t,e,r,n){this.r=+t,this.g=+e,this.b=+r,this.opacity=+n}function w(t){return((t=Math.max(0,Math.min(255,Math.round(t)||0)))<16?\"0\":\"\")+t.toString(16)}function k(t,e,r,n){return n<=0?t=e=r=NaN:r<=0||r>=1?t=e=NaN:e<=0&&(t=NaN),new A(t,e,r,n)}function T(t,e,r,a){return 1===arguments.length?function(t){if(t instanceof A)return new A(t.h,t.s,t.l,t.opacity);if(t instanceof n||(t=v(t)),!t)return new A;if(t instanceof A)return t;var e=(t=t.rgb()).r/255,r=t.g/255,a=t.b/255,i=Math.min(e,r,a),o=Math.max(e,r,a),s=NaN,l=o-i,c=(o+i)/2;return l?(s=e===o?(r-a)/l+6*(r<a):r===o?(a-e)/l+2:(e-r)/l+4,l/=c<.5?o+i:2-o-i,s*=60):l=c>0&&c<1?0:s,new A(s,l,c,t.opacity)}(t):new A(t,e,r,null==a?1:a)}function A(t,e,r,n){this.h=+t,this.s=+e,this.l=+r,this.opacity=+n}function M(t,e,r){return 255*(t<60?e+(r-e)*t/60:t<180?r:t<240?e+(r-e)*(240-t)/60:e)}e(n,v,{displayable:function(){return this.rgb().displayable()},hex:function(){return this.rgb().hex()},toString:function(){return this.rgb()+\"\"}}),e(_,b,r(n,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new _(this.r*t,this.g*t,this.b*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new _(this.r*t,this.g*t,this.b*t,this.opacity)},rgb:function(){return this},displayable:function(){return 0<=this.r&&this.r<=255&&0<=this.g&&this.g<=255&&0<=this.b&&this.b<=255&&0<=this.opacity&&this.opacity<=1},hex:function(){return\"#\"+w(this.r)+w(this.g)+w(this.b)},toString:function(){var t=this.opacity;return(1===(t=isNaN(t)?1:Math.max(0,Math.min(1,t)))?\"rgb(\":\"rgba(\")+Math.max(0,Math.min(255,Math.round(this.r)||0))+\", \"+Math.max(0,Math.min(255,Math.round(this.g)||0))+\", \"+Math.max(0,Math.min(255,Math.round(this.b)||0))+(1===t?\")\":\", \"+t+\")\")}})),e(A,T,r(n,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new A(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new A(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=this.h%360+360*(this.h<0),e=isNaN(t)||isNaN(this.s)?0:this.s,r=this.l,n=r+(r<.5?r:1-r)*e,a=2*r-n;return new _(M(t>=240?t-240:t+120,a,n),M(t,a,n),M(t<120?t+240:t-120,a,n),this.opacity)},displayable:function(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1}}));var S=Math.PI/180,E=180/Math.PI,C=.96422,L=1,P=.82521,O=4/29,I=6/29,z=3*I*I,D=I*I*I;function R(t){if(t instanceof B)return new B(t.l,t.a,t.b,t.opacity);if(t instanceof G){if(isNaN(t.h))return new B(t.l,0,0,t.opacity);var e=t.h*S;return new B(t.l,Math.cos(e)*t.c,Math.sin(e)*t.c,t.opacity)}t instanceof _||(t=x(t));var r,n,a=U(t.r),i=U(t.g),o=U(t.b),s=N((.2225045*a+.7168786*i+.0606169*o)/L);return a===i&&i===o?r=n=s:(r=N((.4360747*a+.3850649*i+.1430804*o)/C),n=N((.0139322*a+.0971045*i+.7141733*o)/P)),new B(116*s-16,500*(r-s),200*(s-n),t.opacity)}function F(t,e,r,n){return 1===arguments.length?R(t):new B(t,e,r,null==n?1:n)}function B(t,e,r,n){this.l=+t,this.a=+e,this.b=+r,this.opacity=+n}function N(t){return t>D?Math.pow(t,1/3):t/z+O}function j(t){return t>I?t*t*t:z*(t-O)}function V(t){return 255*(t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055)}function U(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function q(t){if(t instanceof G)return new G(t.h,t.c,t.l,t.opacity);if(t instanceof B||(t=R(t)),0===t.a&&0===t.b)return new G(NaN,0,t.l,t.opacity);var e=Math.atan2(t.b,t.a)*E;return new G(e<0?e+360:e,Math.sqrt(t.a*t.a+t.b*t.b),t.l,t.opacity)}function H(t,e,r,n){return 1===arguments.length?q(t):new G(t,e,r,null==n?1:n)}function G(t,e,r,n){this.h=+t,this.c=+e,this.l=+r,this.opacity=+n}e(B,F,r(n,{brighter:function(t){return new B(this.l+18*(null==t?1:t),this.a,this.b,this.opacity)},darker:function(t){return new B(this.l-18*(null==t?1:t),this.a,this.b,this.opacity)},rgb:function(){var t=(this.l+16)/116,e=isNaN(this.a)?t:t+this.a/500,r=isNaN(this.b)?t:t-this.b/200;return new _(V(3.1338561*(e=C*j(e))-1.6168667*(t=L*j(t))-.4906146*(r=P*j(r))),V(-.9787684*e+1.9161415*t+.033454*r),V(.0719453*e-.2289914*t+1.4052427*r),this.opacity)}})),e(G,H,r(n,{brighter:function(t){return new G(this.h,this.c,this.l+18*(null==t?1:t),this.opacity)},darker:function(t){return new G(this.h,this.c,this.l-18*(null==t?1:t),this.opacity)},rgb:function(){return R(this).rgb()}}));var Y=-.14861,W=1.78277,X=-.29227,Z=-.90649,J=1.97294,K=J*Z,Q=J*W,$=W*X-Z*Y;function tt(t,e,r,n){return 1===arguments.length?function(t){if(t instanceof et)return new et(t.h,t.s,t.l,t.opacity);t instanceof _||(t=x(t));var e=t.r/255,r=t.g/255,n=t.b/255,a=($*n+K*e-Q*r)/($+K-Q),i=n-a,o=(J*(r-a)-X*i)/Z,s=Math.sqrt(o*o+i*i)/(J*a*(1-a)),l=s?Math.atan2(o,i)*E-120:NaN;return new et(l<0?l+360:l,s,a,t.opacity)}(t):new et(t,e,r,null==n?1:n)}function et(t,e,r,n){this.h=+t,this.s=+e,this.l=+r,this.opacity=+n}e(et,tt,r(n,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new et(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new et(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=isNaN(this.h)?0:(this.h+120)*S,e=+this.l,r=isNaN(this.s)?0:this.s*e*(1-e),n=Math.cos(t),a=Math.sin(t);return new _(255*(e+r*(Y*n+W*a)),255*(e+r*(X*n+Z*a)),255*(e+r*(J*n)),this.opacity)}})),t.color=v,t.rgb=b,t.hsl=T,t.lab=F,t.hcl=H,t.lch=function(t,e,r,n){return 1===arguments.length?q(t):new G(r,e,t,null==n?1:n)},t.gray=function(t,e){return new B(t,0,0,null==e?1:e)},t.cubehelix=tt,Object.defineProperty(t,\"__esModule\",{value:!0})}(\"object\"==typeof r&&\"undefined\"!=typeof e?r:n.d3=n.d3||{})},{}],156:[function(t,e,r){var n;n=this,function(t){\"use strict\";var e={value:function(){}};function r(){for(var t,e=0,r=arguments.length,a={};e<r;++e){if(!(t=arguments[e]+\"\")||t in a)throw new Error(\"illegal type: \"+t);a[t]=[]}return new n(a)}function n(t){this._=t}function a(t,e){for(var r,n=0,a=t.length;n<a;++n)if((r=t[n]).name===e)return r.value}function i(t,r,n){for(var a=0,i=t.length;a<i;++a)if(t[a].name===r){t[a]=e,t=t.slice(0,a).concat(t.slice(a+1));break}return null!=n&&t.push({name:r,value:n}),t}n.prototype=r.prototype={constructor:n,on:function(t,e){var r,n,o=this._,s=(n=o,(t+\"\").trim().split(/^|\\s+/).map(function(t){var e=\"\",r=t.indexOf(\".\");if(r>=0&&(e=t.slice(r+1),t=t.slice(0,r)),t&&!n.hasOwnProperty(t))throw new Error(\"unknown type: \"+t);return{type:t,name:e}})),l=-1,c=s.length;if(!(arguments.length<2)){if(null!=e&&\"function\"!=typeof e)throw new Error(\"invalid callback: \"+e);for(;++l<c;)if(r=(t=s[l]).type)o[r]=i(o[r],t.name,e);else if(null==e)for(r in o)o[r]=i(o[r],t.name,null);return this}for(;++l<c;)if((r=(t=s[l]).type)&&(r=a(o[r],t.name)))return r},copy:function(){var t={},e=this._;for(var r in e)t[r]=e[r].slice();return new n(t)},call:function(t,e){if((r=arguments.length-2)>0)for(var r,n,a=new Array(r),i=0;i<r;++i)a[i]=arguments[i+2];if(!this._.hasOwnProperty(t))throw new Error(\"unknown type: \"+t);for(i=0,r=(n=this._[t]).length;i<r;++i)n[i].value.apply(e,a)},apply:function(t,e,r){if(!this._.hasOwnProperty(t))throw new Error(\"unknown type: \"+t);for(var n=this._[t],a=0,i=n.length;a<i;++a)n[a].value.apply(e,r)}},t.dispatch=r,Object.defineProperty(t,\"__esModule\",{value:!0})}(\"object\"==typeof r&&\"undefined\"!=typeof e?r:n.d3=n.d3||{})},{}],157:[function(t,e,r){var n,a;n=this,a=function(t,e,r,n,a){\"use strict\";var i=function(t){return function(){return t}},o=function(){return 1e-6*(Math.random()-.5)};function s(t){return t.x+t.vx}function l(t){return t.y+t.vy}function c(t){return t.index}function u(t,e){var r=t.get(e);if(!r)throw new Error(\"missing: \"+e);return r}function h(t){return t.x}function f(t){return t.y}var p=10,d=Math.PI*(3-Math.sqrt(5));t.forceCenter=function(t,e){var r;function n(){var n,a,i=r.length,o=0,s=0;for(n=0;n<i;++n)o+=(a=r[n]).x,s+=a.y;for(o=o/i-t,s=s/i-e,n=0;n<i;++n)(a=r[n]).x-=o,a.y-=s}return null==t&&(t=0),null==e&&(e=0),n.initialize=function(t){r=t},n.x=function(e){return arguments.length?(t=+e,n):t},n.y=function(t){return arguments.length?(e=+t,n):e},n},t.forceCollide=function(t){var r,n,a=1,c=1;function u(){for(var t,i,u,f,p,d,g,v=r.length,m=0;m<c;++m)for(i=e.quadtree(r,s,l).visitAfter(h),t=0;t<v;++t)u=r[t],d=n[u.index],g=d*d,f=u.x+u.vx,p=u.y+u.vy,i.visit(y);function y(t,e,r,n,i){var s=t.data,l=t.r,c=d+l;if(!s)return e>f+c||n<f-c||r>p+c||i<p-c;if(s.index>u.index){var h=f-s.x-s.vx,v=p-s.y-s.vy,m=h*h+v*v;m<c*c&&(0===h&&(m+=(h=o())*h),0===v&&(m+=(v=o())*v),m=(c-(m=Math.sqrt(m)))/m*a,u.vx+=(h*=m)*(c=(l*=l)/(g+l)),u.vy+=(v*=m)*c,s.vx-=h*(c=1-c),s.vy-=v*c)}}}function h(t){if(t.data)return t.r=n[t.data.index];for(var e=t.r=0;e<4;++e)t[e]&&t[e].r>t.r&&(t.r=t[e].r)}function f(){if(r){var e,a,i=r.length;for(n=new Array(i),e=0;e<i;++e)a=r[e],n[a.index]=+t(a,e,r)}}return\"function\"!=typeof t&&(t=i(null==t?1:+t)),u.initialize=function(t){r=t,f()},u.iterations=function(t){return arguments.length?(c=+t,u):c},u.strength=function(t){return arguments.length?(a=+t,u):a},u.radius=function(e){return arguments.length?(t=\"function\"==typeof e?e:i(+e),f(),u):t},u},t.forceLink=function(t){var e,n,a,s,l,h=c,f=function(t){return 1/Math.min(s[t.source.index],s[t.target.index])},p=i(30),d=1;function g(r){for(var a=0,i=t.length;a<d;++a)for(var s,c,u,h,f,p,g,v=0;v<i;++v)c=(s=t[v]).source,h=(u=s.target).x+u.vx-c.x-c.vx||o(),f=u.y+u.vy-c.y-c.vy||o(),h*=p=((p=Math.sqrt(h*h+f*f))-n[v])/p*r*e[v],f*=p,u.vx-=h*(g=l[v]),u.vy-=f*g,c.vx+=h*(g=1-g),c.vy+=f*g}function v(){if(a){var i,o,c=a.length,f=t.length,p=r.map(a,h);for(i=0,s=new Array(c);i<f;++i)(o=t[i]).index=i,\"object\"!=typeof o.source&&(o.source=u(p,o.source)),\"object\"!=typeof o.target&&(o.target=u(p,o.target)),s[o.source.index]=(s[o.source.index]||0)+1,s[o.target.index]=(s[o.target.index]||0)+1;for(i=0,l=new Array(f);i<f;++i)o=t[i],l[i]=s[o.source.index]/(s[o.source.index]+s[o.target.index]);e=new Array(f),m(),n=new Array(f),y()}}function m(){if(a)for(var r=0,n=t.length;r<n;++r)e[r]=+f(t[r],r,t)}function y(){if(a)for(var e=0,r=t.length;e<r;++e)n[e]=+p(t[e],e,t)}return null==t&&(t=[]),g.initialize=function(t){a=t,v()},g.links=function(e){return arguments.length?(t=e,v(),g):t},g.id=function(t){return arguments.length?(h=t,g):h},g.iterations=function(t){return arguments.length?(d=+t,g):d},g.strength=function(t){return arguments.length?(f=\"function\"==typeof t?t:i(+t),m(),g):f},g.distance=function(t){return arguments.length?(p=\"function\"==typeof t?t:i(+t),y(),g):p},g},t.forceManyBody=function(){var t,r,n,a,s=i(-30),l=1,c=1/0,u=.81;function p(a){var i,o=t.length,s=e.quadtree(t,h,f).visitAfter(g);for(n=a,i=0;i<o;++i)r=t[i],s.visit(v)}function d(){if(t){var e,r,n=t.length;for(a=new Array(n),e=0;e<n;++e)r=t[e],a[r.index]=+s(r,e,t)}}function g(t){var e,r,n,i,o,s=0,l=0;if(t.length){for(n=i=o=0;o<4;++o)(e=t[o])&&(r=Math.abs(e.value))&&(s+=e.value,l+=r,n+=r*e.x,i+=r*e.y);t.x=n/l,t.y=i/l}else{(e=t).x=e.data.x,e.y=e.data.y;do{s+=a[e.data.index]}while(e=e.next)}t.value=s}function v(t,e,i,s){if(!t.value)return!0;var h=t.x-r.x,f=t.y-r.y,p=s-e,d=h*h+f*f;if(p*p/u<d)return d<c&&(0===h&&(d+=(h=o())*h),0===f&&(d+=(f=o())*f),d<l&&(d=Math.sqrt(l*d)),r.vx+=h*t.value*n/d,r.vy+=f*t.value*n/d),!0;if(!(t.length||d>=c)){(t.data!==r||t.next)&&(0===h&&(d+=(h=o())*h),0===f&&(d+=(f=o())*f),d<l&&(d=Math.sqrt(l*d)));do{t.data!==r&&(p=a[t.data.index]*n/d,r.vx+=h*p,r.vy+=f*p)}while(t=t.next)}}return p.initialize=function(e){t=e,d()},p.strength=function(t){return arguments.length?(s=\"function\"==typeof t?t:i(+t),d(),p):s},p.distanceMin=function(t){return arguments.length?(l=t*t,p):Math.sqrt(l)},p.distanceMax=function(t){return arguments.length?(c=t*t,p):Math.sqrt(c)},p.theta=function(t){return arguments.length?(u=t*t,p):Math.sqrt(u)},p},t.forceRadial=function(t,e,r){var n,a,o,s=i(.1);function l(t){for(var i=0,s=n.length;i<s;++i){var l=n[i],c=l.x-e||1e-6,u=l.y-r||1e-6,h=Math.sqrt(c*c+u*u),f=(o[i]-h)*a[i]*t/h;l.vx+=c*f,l.vy+=u*f}}function c(){if(n){var e,r=n.length;for(a=new Array(r),o=new Array(r),e=0;e<r;++e)o[e]=+t(n[e],e,n),a[e]=isNaN(o[e])?0:+s(n[e],e,n)}}return\"function\"!=typeof t&&(t=i(+t)),null==e&&(e=0),null==r&&(r=0),l.initialize=function(t){n=t,c()},l.strength=function(t){return arguments.length?(s=\"function\"==typeof t?t:i(+t),c(),l):s},l.radius=function(e){return arguments.length?(t=\"function\"==typeof e?e:i(+e),c(),l):t},l.x=function(t){return arguments.length?(e=+t,l):e},l.y=function(t){return arguments.length?(r=+t,l):r},l},t.forceSimulation=function(t){var e,i=1,o=.001,s=1-Math.pow(o,1/300),l=0,c=.6,u=r.map(),h=a.timer(g),f=n.dispatch(\"tick\",\"end\");function g(){v(),f.call(\"tick\",e),i<o&&(h.stop(),f.call(\"end\",e))}function v(){var e,r,n=t.length;for(i+=(l-i)*s,u.each(function(t){t(i)}),e=0;e<n;++e)null==(r=t[e]).fx?r.x+=r.vx*=c:(r.x=r.fx,r.vx=0),null==r.fy?r.y+=r.vy*=c:(r.y=r.fy,r.vy=0)}function m(){for(var e,r=0,n=t.length;r<n;++r){if((e=t[r]).index=r,isNaN(e.x)||isNaN(e.y)){var a=p*Math.sqrt(r),i=r*d;e.x=a*Math.cos(i),e.y=a*Math.sin(i)}(isNaN(e.vx)||isNaN(e.vy))&&(e.vx=e.vy=0)}}function y(e){return e.initialize&&e.initialize(t),e}return null==t&&(t=[]),m(),e={tick:v,restart:function(){return h.restart(g),e},stop:function(){return h.stop(),e},nodes:function(r){return arguments.length?(t=r,m(),u.each(y),e):t},alpha:function(t){return arguments.length?(i=+t,e):i},alphaMin:function(t){return arguments.length?(o=+t,e):o},alphaDecay:function(t){return arguments.length?(s=+t,e):+s},alphaTarget:function(t){return arguments.length?(l=+t,e):l},velocityDecay:function(t){return arguments.length?(c=1-t,e):1-c},force:function(t,r){return arguments.length>1?(null==r?u.remove(t):u.set(t,y(r)),e):u.get(t)},find:function(e,r,n){var a,i,o,s,l,c=0,u=t.length;for(null==n?n=1/0:n*=n,c=0;c<u;++c)(o=(a=e-(s=t[c]).x)*a+(i=r-s.y)*i)<n&&(l=s,n=o);return l},on:function(t,r){return arguments.length>1?(f.on(t,r),e):f.on(t)}}},t.forceX=function(t){var e,r,n,a=i(.1);function o(t){for(var a,i=0,o=e.length;i<o;++i)(a=e[i]).vx+=(n[i]-a.x)*r[i]*t}function s(){if(e){var i,o=e.length;for(r=new Array(o),n=new Array(o),i=0;i<o;++i)r[i]=isNaN(n[i]=+t(e[i],i,e))?0:+a(e[i],i,e)}}return\"function\"!=typeof t&&(t=i(null==t?0:+t)),o.initialize=function(t){e=t,s()},o.strength=function(t){return arguments.length?(a=\"function\"==typeof t?t:i(+t),s(),o):a},o.x=function(e){return arguments.length?(t=\"function\"==typeof e?e:i(+e),s(),o):t},o},t.forceY=function(t){var e,r,n,a=i(.1);function o(t){for(var a,i=0,o=e.length;i<o;++i)(a=e[i]).vy+=(n[i]-a.y)*r[i]*t}function s(){if(e){var i,o=e.length;for(r=new Array(o),n=new Array(o),i=0;i<o;++i)r[i]=isNaN(n[i]=+t(e[i],i,e))?0:+a(e[i],i,e)}}return\"function\"!=typeof t&&(t=i(null==t?0:+t)),o.initialize=function(t){e=t,s()},o.strength=function(t){return arguments.length?(a=\"function\"==typeof t?t:i(+t),s(),o):a},o.y=function(e){return arguments.length?(t=\"function\"==typeof e?e:i(+e),s(),o):t},o},Object.defineProperty(t,\"__esModule\",{value:!0})},\"object\"==typeof r&&\"undefined\"!=typeof e?a(r,t(\"d3-quadtree\"),t(\"d3-collection\"),t(\"d3-dispatch\"),t(\"d3-timer\")):a(n.d3=n.d3||{},n.d3,n.d3,n.d3,n.d3)},{\"d3-collection\":154,\"d3-dispatch\":156,\"d3-quadtree\":161,\"d3-timer\":163}],158:[function(t,e,r){var n;n=this,function(t){\"use strict\";function e(t,e){return t.parent===e.parent?1:2}function r(t,e){return t+e.x}function n(t,e){return Math.max(t,e.y)}function a(t){var e=0,r=t.children,n=r&&r.length;if(n)for(;--n>=0;)e+=r[n].value;else e=1;t.value=e}function i(t,e){var r,n,a,i,s,u=new c(t),h=+t.value&&(u.value=t.value),f=[u];for(null==e&&(e=o);r=f.pop();)if(h&&(r.value=+r.data.value),(a=e(r.data))&&(s=a.length))for(r.children=new Array(s),i=s-1;i>=0;--i)f.push(n=r.children[i]=new c(a[i])),n.parent=r,n.depth=r.depth+1;return u.eachBefore(l)}function o(t){return t.children}function s(t){t.data=t.data.data}function l(t){var e=0;do{t.height=e}while((t=t.parent)&&t.height<++e)}function c(t){this.data=t,this.depth=this.height=0,this.parent=null}c.prototype=i.prototype={constructor:c,count:function(){return this.eachAfter(a)},each:function(t){var e,r,n,a,i=this,o=[i];do{for(e=o.reverse(),o=[];i=e.pop();)if(t(i),r=i.children)for(n=0,a=r.length;n<a;++n)o.push(r[n])}while(o.length);return this},eachAfter:function(t){for(var e,r,n,a=this,i=[a],o=[];a=i.pop();)if(o.push(a),e=a.children)for(r=0,n=e.length;r<n;++r)i.push(e[r]);for(;a=o.pop();)t(a);return this},eachBefore:function(t){for(var e,r,n=this,a=[n];n=a.pop();)if(t(n),e=n.children)for(r=e.length-1;r>=0;--r)a.push(e[r]);return this},sum:function(t){return this.eachAfter(function(e){for(var r=+t(e.data)||0,n=e.children,a=n&&n.length;--a>=0;)r+=n[a].value;e.value=r})},sort:function(t){return this.eachBefore(function(e){e.children&&e.children.sort(t)})},path:function(t){for(var e=this,r=function(t,e){if(t===e)return t;var r=t.ancestors(),n=e.ancestors(),a=null;for(t=r.pop(),e=n.pop();t===e;)a=t,t=r.pop(),e=n.pop();return a}(e,t),n=[e];e!==r;)e=e.parent,n.push(e);for(var a=n.length;t!==r;)n.splice(a,0,t),t=t.parent;return n},ancestors:function(){for(var t=this,e=[t];t=t.parent;)e.push(t);return e},descendants:function(){var t=[];return this.each(function(e){t.push(e)}),t},leaves:function(){var t=[];return this.eachBefore(function(e){e.children||t.push(e)}),t},links:function(){var t=this,e=[];return t.each(function(r){r!==t&&e.push({source:r.parent,target:r})}),e},copy:function(){return i(this).eachBefore(s)}};var u=Array.prototype.slice;function h(t){for(var e,r,n=0,a=(t=function(t){for(var e,r,n=t.length;n;)r=Math.random()*n--|0,e=t[n],t[n]=t[r],t[r]=e;return t}(u.call(t))).length,i=[];n<a;)e=t[n],r&&d(r,e)?++n:(r=v(i=f(i,e)),n=0);return r}function f(t,e){var r,n;if(g(e,t))return[e];for(r=0;r<t.length;++r)if(p(e,t[r])&&g(m(t[r],e),t))return[t[r],e];for(r=0;r<t.length-1;++r)for(n=r+1;n<t.length;++n)if(p(m(t[r],t[n]),e)&&p(m(t[r],e),t[n])&&p(m(t[n],e),t[r])&&g(y(t[r],t[n],e),t))return[t[r],t[n],e];throw new Error}function p(t,e){var r=t.r-e.r,n=e.x-t.x,a=e.y-t.y;return r<0||r*r<n*n+a*a}function d(t,e){var r=t.r-e.r+1e-6,n=e.x-t.x,a=e.y-t.y;return r>0&&r*r>n*n+a*a}function g(t,e){for(var r=0;r<e.length;++r)if(!d(t,e[r]))return!1;return!0}function v(t){switch(t.length){case 1:return{x:(e=t[0]).x,y:e.y,r:e.r};case 2:return m(t[0],t[1]);case 3:return y(t[0],t[1],t[2])}var e}function m(t,e){var r=t.x,n=t.y,a=t.r,i=e.x,o=e.y,s=e.r,l=i-r,c=o-n,u=s-a,h=Math.sqrt(l*l+c*c);return{x:(r+i+l/h*u)/2,y:(n+o+c/h*u)/2,r:(h+a+s)/2}}function y(t,e,r){var n=t.x,a=t.y,i=t.r,o=e.x,s=e.y,l=e.r,c=r.x,u=r.y,h=r.r,f=n-o,p=n-c,d=a-s,g=a-u,v=l-i,m=h-i,y=n*n+a*a-i*i,x=y-o*o-s*s+l*l,b=y-c*c-u*u+h*h,_=p*d-f*g,w=(d*b-g*x)/(2*_)-n,k=(g*v-d*m)/_,T=(p*x-f*b)/(2*_)-a,A=(f*m-p*v)/_,M=k*k+A*A-1,S=2*(i+w*k+T*A),E=w*w+T*T-i*i,C=-(M?(S+Math.sqrt(S*S-4*M*E))/(2*M):E/S);return{x:n+w+k*C,y:a+T+A*C,r:C}}function x(t,e,r){var n,a,i,o,s=t.x-e.x,l=t.y-e.y,c=s*s+l*l;c?(a=e.r+r.r,a*=a,o=t.r+r.r,a>(o*=o)?(n=(c+o-a)/(2*c),i=Math.sqrt(Math.max(0,o/c-n*n)),r.x=t.x-n*s-i*l,r.y=t.y-n*l+i*s):(n=(c+a-o)/(2*c),i=Math.sqrt(Math.max(0,a/c-n*n)),r.x=e.x+n*s-i*l,r.y=e.y+n*l+i*s)):(r.x=e.x+r.r,r.y=e.y)}function b(t,e){var r=t.r+e.r-1e-6,n=e.x-t.x,a=e.y-t.y;return r>0&&r*r>n*n+a*a}function _(t){var e=t._,r=t.next._,n=e.r+r.r,a=(e.x*r.r+r.x*e.r)/n,i=(e.y*r.r+r.y*e.r)/n;return a*a+i*i}function w(t){this._=t,this.next=null,this.previous=null}function k(t){if(!(a=t.length))return 0;var e,r,n,a,i,o,s,l,c,u,f;if((e=t[0]).x=0,e.y=0,!(a>1))return e.r;if(r=t[1],e.x=-r.r,r.x=e.r,r.y=0,!(a>2))return e.r+r.r;x(r,e,n=t[2]),e=new w(e),r=new w(r),n=new w(n),e.next=n.previous=r,r.next=e.previous=n,n.next=r.previous=e;t:for(s=3;s<a;++s){x(e._,r._,n=t[s]),n=new w(n),l=r.next,c=e.previous,u=r._.r,f=e._.r;do{if(u<=f){if(b(l._,n._)){r=l,e.next=r,r.previous=e,--s;continue t}u+=l._.r,l=l.next}else{if(b(c._,n._)){(e=c).next=r,r.previous=e,--s;continue t}f+=c._.r,c=c.previous}}while(l!==c.next);for(n.previous=e,n.next=r,e.next=r.previous=r=n,i=_(e);(n=n.next)!==r;)(o=_(n))<i&&(e=n,i=o);r=e.next}for(e=[r._],n=r;(n=n.next)!==r;)e.push(n._);for(n=h(e),s=0;s<a;++s)(e=t[s]).x-=n.x,e.y-=n.y;return n.r}function T(t){if(\"function\"!=typeof t)throw new Error;return t}function A(){return 0}function M(t){return function(){return t}}function S(t){return Math.sqrt(t.value)}function E(t){return function(e){e.children||(e.r=Math.max(0,+t(e)||0))}}function C(t,e){return function(r){if(n=r.children){var n,a,i,o=n.length,s=t(r)*e||0;if(s)for(a=0;a<o;++a)n[a].r+=s;if(i=k(n),s)for(a=0;a<o;++a)n[a].r-=s;r.r=i+s}}}function L(t){return function(e){var r=e.parent;e.r*=t,r&&(e.x=r.x+t*e.x,e.y=r.y+t*e.y)}}function P(t){t.x0=Math.round(t.x0),t.y0=Math.round(t.y0),t.x1=Math.round(t.x1),t.y1=Math.round(t.y1)}function O(t,e,r,n,a){for(var i,o=t.children,s=-1,l=o.length,c=t.value&&(n-e)/t.value;++s<l;)(i=o[s]).y0=r,i.y1=a,i.x0=e,i.x1=e+=i.value*c}var I=\"$\",z={depth:-1},D={};function R(t){return t.id}function F(t){return t.parentId}function B(t,e){return t.parent===e.parent?1:2}function N(t){var e=t.children;return e?e[0]:t.t}function j(t){var e=t.children;return e?e[e.length-1]:t.t}function V(t,e,r){var n=r/(e.i-t.i);e.c-=n,e.s+=r,t.c+=n,e.z+=r,e.m+=r}function U(t,e,r){return t.a.parent===e.parent?t.a:r}function q(t,e){this._=t,this.parent=null,this.children=null,this.A=null,this.a=this,this.z=0,this.m=0,this.c=0,this.s=0,this.t=null,this.i=e}function H(t,e,r,n,a){for(var i,o=t.children,s=-1,l=o.length,c=t.value&&(a-r)/t.value;++s<l;)(i=o[s]).x0=e,i.x1=n,i.y0=r,i.y1=r+=i.value*c}q.prototype=Object.create(c.prototype);var G=(1+Math.sqrt(5))/2;function Y(t,e,r,n,a,i){for(var o,s,l,c,u,h,f,p,d,g,v,m=[],y=e.children,x=0,b=0,_=y.length,w=e.value;x<_;){l=a-r,c=i-n;do{u=y[b++].value}while(!u&&b<_);for(h=f=u,v=u*u*(g=Math.max(c/l,l/c)/(w*t)),d=Math.max(f/v,v/h);b<_;++b){if(u+=s=y[b].value,s<h&&(h=s),s>f&&(f=s),v=u*u*g,(p=Math.max(f/v,v/h))>d){u-=s;break}d=p}m.push(o={value:u,dice:l<c,children:y.slice(x,b)}),o.dice?O(o,r,n,a,w?n+=c*u/w:i):H(o,r,n,w?r+=l*u/w:a,i),w-=u,x=b}return m}var W=function t(e){function r(t,r,n,a,i){Y(e,t,r,n,a,i)}return r.ratio=function(e){return t((e=+e)>1?e:1)},r}(G);var X=function t(e){function r(t,r,n,a,i){if((o=t._squarify)&&o.ratio===e)for(var o,s,l,c,u,h=-1,f=o.length,p=t.value;++h<f;){for(l=(s=o[h]).children,c=s.value=0,u=l.length;c<u;++c)s.value+=l[c].value;s.dice?O(s,r,n,a,n+=(i-n)*s.value/p):H(s,r,n,r+=(a-r)*s.value/p,i),p-=s.value}else t._squarify=o=Y(e,t,r,n,a,i),o.ratio=e}return r.ratio=function(e){return t((e=+e)>1?e:1)},r}(G);t.cluster=function(){var t=e,a=1,i=1,o=!1;function s(e){var s,l=0;e.eachAfter(function(e){var a=e.children;a?(e.x=function(t){return t.reduce(r,0)/t.length}(a),e.y=function(t){return 1+t.reduce(n,0)}(a)):(e.x=s?l+=t(e,s):0,e.y=0,s=e)});var c=function(t){for(var e;e=t.children;)t=e[0];return t}(e),u=function(t){for(var e;e=t.children;)t=e[e.length-1];return t}(e),h=c.x-t(c,u)/2,f=u.x+t(u,c)/2;return e.eachAfter(o?function(t){t.x=(t.x-e.x)*a,t.y=(e.y-t.y)*i}:function(t){t.x=(t.x-h)/(f-h)*a,t.y=(1-(e.y?t.y/e.y:1))*i})}return s.separation=function(e){return arguments.length?(t=e,s):t},s.size=function(t){return arguments.length?(o=!1,a=+t[0],i=+t[1],s):o?null:[a,i]},s.nodeSize=function(t){return arguments.length?(o=!0,a=+t[0],i=+t[1],s):o?[a,i]:null},s},t.hierarchy=i,t.pack=function(){var t=null,e=1,r=1,n=A;function a(a){return a.x=e/2,a.y=r/2,t?a.eachBefore(E(t)).eachAfter(C(n,.5)).eachBefore(L(1)):a.eachBefore(E(S)).eachAfter(C(A,1)).eachAfter(C(n,a.r/Math.min(e,r))).eachBefore(L(Math.min(e,r)/(2*a.r))),a}return a.radius=function(e){return arguments.length?(t=null==(r=e)?null:T(r),a):t;var r},a.size=function(t){return arguments.length?(e=+t[0],r=+t[1],a):[e,r]},a.padding=function(t){return arguments.length?(n=\"function\"==typeof t?t:M(+t),a):n},a},t.packSiblings=function(t){return k(t),t},t.packEnclose=h,t.partition=function(){var t=1,e=1,r=0,n=!1;function a(a){var i=a.height+1;return a.x0=a.y0=r,a.x1=t,a.y1=e/i,a.eachBefore(function(t,e){return function(n){n.children&&O(n,n.x0,t*(n.depth+1)/e,n.x1,t*(n.depth+2)/e);var a=n.x0,i=n.y0,o=n.x1-r,s=n.y1-r;o<a&&(a=o=(a+o)/2),s<i&&(i=s=(i+s)/2),n.x0=a,n.y0=i,n.x1=o,n.y1=s}}(e,i)),n&&a.eachBefore(P),a}return a.round=function(t){return arguments.length?(n=!!t,a):n},a.size=function(r){return arguments.length?(t=+r[0],e=+r[1],a):[t,e]},a.padding=function(t){return arguments.length?(r=+t,a):r},a},t.stratify=function(){var t=R,e=F;function r(r){var n,a,i,o,s,u,h,f=r.length,p=new Array(f),d={};for(a=0;a<f;++a)n=r[a],s=p[a]=new c(n),null!=(u=t(n,a,r))&&(u+=\"\")&&(d[h=I+(s.id=u)]=h in d?D:s);for(a=0;a<f;++a)if(s=p[a],null!=(u=e(r[a],a,r))&&(u+=\"\")){if(!(o=d[I+u]))throw new Error(\"missing: \"+u);if(o===D)throw new Error(\"ambiguous: \"+u);o.children?o.children.push(s):o.children=[s],s.parent=o}else{if(i)throw new Error(\"multiple roots\");i=s}if(!i)throw new Error(\"no root\");if(i.parent=z,i.eachBefore(function(t){t.depth=t.parent.depth+1,--f}).eachBefore(l),i.parent=null,f>0)throw new Error(\"cycle\");return i}return r.id=function(e){return arguments.length?(t=T(e),r):t},r.parentId=function(t){return arguments.length?(e=T(t),r):e},r},t.tree=function(){var t=B,e=1,r=1,n=null;function a(a){var l=function(t){for(var e,r,n,a,i,o=new q(t,0),s=[o];e=s.pop();)if(n=e._.children)for(e.children=new Array(i=n.length),a=i-1;a>=0;--a)s.push(r=e.children[a]=new q(n[a],a)),r.parent=e;return(o.parent=new q(null,0)).children=[o],o}(a);if(l.eachAfter(i),l.parent.m=-l.z,l.eachBefore(o),n)a.eachBefore(s);else{var c=a,u=a,h=a;a.eachBefore(function(t){t.x<c.x&&(c=t),t.x>u.x&&(u=t),t.depth>h.depth&&(h=t)});var f=c===u?1:t(c,u)/2,p=f-c.x,d=e/(u.x+f+p),g=r/(h.depth||1);a.eachBefore(function(t){t.x=(t.x+p)*d,t.y=t.depth*g})}return a}function i(e){var r=e.children,n=e.parent.children,a=e.i?n[e.i-1]:null;if(r){!function(t){for(var e,r=0,n=0,a=t.children,i=a.length;--i>=0;)(e=a[i]).z+=r,e.m+=r,r+=e.s+(n+=e.c)}(e);var i=(r[0].z+r[r.length-1].z)/2;a?(e.z=a.z+t(e._,a._),e.m=e.z-i):e.z=i}else a&&(e.z=a.z+t(e._,a._));e.parent.A=function(e,r,n){if(r){for(var a,i=e,o=e,s=r,l=i.parent.children[0],c=i.m,u=o.m,h=s.m,f=l.m;s=j(s),i=N(i),s&&i;)l=N(l),(o=j(o)).a=e,(a=s.z+h-i.z-c+t(s._,i._))>0&&(V(U(s,e,n),e,a),c+=a,u+=a),h+=s.m,c+=i.m,f+=l.m,u+=o.m;s&&!j(o)&&(o.t=s,o.m+=h-u),i&&!N(l)&&(l.t=i,l.m+=c-f,n=e)}return n}(e,a,e.parent.A||n[0])}function o(t){t._.x=t.z+t.parent.m,t.m+=t.parent.m}function s(t){t.x*=e,t.y=t.depth*r}return a.separation=function(e){return arguments.length?(t=e,a):t},a.size=function(t){return arguments.length?(n=!1,e=+t[0],r=+t[1],a):n?null:[e,r]},a.nodeSize=function(t){return arguments.length?(n=!0,e=+t[0],r=+t[1],a):n?[e,r]:null},a},t.treemap=function(){var t=W,e=!1,r=1,n=1,a=[0],i=A,o=A,s=A,l=A,c=A;function u(t){return t.x0=t.y0=0,t.x1=r,t.y1=n,t.eachBefore(h),a=[0],e&&t.eachBefore(P),t}function h(e){var r=a[e.depth],n=e.x0+r,u=e.y0+r,h=e.x1-r,f=e.y1-r;h<n&&(n=h=(n+h)/2),f<u&&(u=f=(u+f)/2),e.x0=n,e.y0=u,e.x1=h,e.y1=f,e.children&&(r=a[e.depth+1]=i(e)/2,n+=c(e)-r,u+=o(e)-r,(h-=s(e)-r)<n&&(n=h=(n+h)/2),(f-=l(e)-r)<u&&(u=f=(u+f)/2),t(e,n,u,h,f))}return u.round=function(t){return arguments.length?(e=!!t,u):e},u.size=function(t){return arguments.length?(r=+t[0],n=+t[1],u):[r,n]},u.tile=function(e){return arguments.length?(t=T(e),u):t},u.padding=function(t){return arguments.length?u.paddingInner(t).paddingOuter(t):u.paddingInner()},u.paddingInner=function(t){return arguments.length?(i=\"function\"==typeof t?t:M(+t),u):i},u.paddingOuter=function(t){return arguments.length?u.paddingTop(t).paddingRight(t).paddingBottom(t).paddingLeft(t):u.paddingTop()},u.paddingTop=function(t){return arguments.length?(o=\"function\"==typeof t?t:M(+t),u):o},u.paddingRight=function(t){return arguments.length?(s=\"function\"==typeof t?t:M(+t),u):s},u.paddingBottom=function(t){return arguments.length?(l=\"function\"==typeof t?t:M(+t),u):l},u.paddingLeft=function(t){return arguments.length?(c=\"function\"==typeof t?t:M(+t),u):c},u},t.treemapBinary=function(t,e,r,n,a){var i,o,s=t.children,l=s.length,c=new Array(l+1);for(c[0]=o=i=0;i<l;++i)c[i+1]=o+=s[i].value;!function t(e,r,n,a,i,o,l){if(e>=r-1){var u=s[e];return u.x0=a,u.y0=i,u.x1=o,void(u.y1=l)}for(var h=c[e],f=n/2+h,p=e+1,d=r-1;p<d;){var g=p+d>>>1;c[g]<f?p=g+1:d=g}f-c[p-1]<c[p]-f&&e+1<p&&--p;var v=c[p]-h,m=n-v;if(o-a>l-i){var y=(a*m+o*v)/n;t(e,p,v,a,i,y,l),t(p,r,m,y,i,o,l)}else{var x=(i*m+l*v)/n;t(e,p,v,a,i,o,x),t(p,r,m,a,x,o,l)}}(0,l,t.value,e,r,n,a)},t.treemapDice=O,t.treemapSlice=H,t.treemapSliceDice=function(t,e,r,n,a){(1&t.depth?H:O)(t,e,r,n,a)},t.treemapSquarify=W,t.treemapResquarify=X,Object.defineProperty(t,\"__esModule\",{value:!0})}(\"object\"==typeof r&&\"undefined\"!=typeof e?r:n.d3=n.d3||{})},{}],159:[function(t,e,r){var n,a;n=this,a=function(t,e){\"use strict\";function r(t,e,r,n,a){var i=t*t,o=i*t;return((1-3*t+3*i-o)*e+(4-6*i+3*o)*r+(1+3*t+3*i-3*o)*n+o*a)/6}function n(t){var e=t.length-1;return function(n){var a=n<=0?n=0:n>=1?(n=1,e-1):Math.floor(n*e),i=t[a],o=t[a+1],s=a>0?t[a-1]:2*i-o,l=a<e-1?t[a+2]:2*o-i;return r((n-a/e)*e,s,i,o,l)}}function a(t){var e=t.length;return function(n){var a=Math.floor(((n%=1)<0?++n:n)*e),i=t[(a+e-1)%e],o=t[a%e],s=t[(a+1)%e],l=t[(a+2)%e];return r((n-a/e)*e,i,o,s,l)}}function i(t){return function(){return t}}function o(t,e){return function(r){return t+r*e}}function s(t,e){var r=e-t;return r?o(t,r>180||r<-180?r-360*Math.round(r/360):r):i(isNaN(t)?e:t)}function l(t){return 1==(t=+t)?c:function(e,r){return r-e?function(t,e,r){return t=Math.pow(t,r),e=Math.pow(e,r)-t,r=1/r,function(n){return Math.pow(t+n*e,r)}}(e,r,t):i(isNaN(e)?r:e)}}function c(t,e){var r=e-t;return r?o(t,r):i(isNaN(t)?e:t)}var u=function t(r){var n=l(r);function a(t,r){var a=n((t=e.rgb(t)).r,(r=e.rgb(r)).r),i=n(t.g,r.g),o=n(t.b,r.b),s=c(t.opacity,r.opacity);return function(e){return t.r=a(e),t.g=i(e),t.b=o(e),t.opacity=s(e),t+\"\"}}return a.gamma=t,a}(1);function h(t){return function(r){var n,a,i=r.length,o=new Array(i),s=new Array(i),l=new Array(i);for(n=0;n<i;++n)a=e.rgb(r[n]),o[n]=a.r||0,s[n]=a.g||0,l[n]=a.b||0;return o=t(o),s=t(s),l=t(l),a.opacity=1,function(t){return a.r=o(t),a.g=s(t),a.b=l(t),a+\"\"}}}var f=h(n),p=h(a);function d(t,e){var r,n=e?e.length:0,a=t?Math.min(n,t.length):0,i=new Array(a),o=new Array(n);for(r=0;r<a;++r)i[r]=_(t[r],e[r]);for(;r<n;++r)o[r]=e[r];return function(t){for(r=0;r<a;++r)o[r]=i[r](t);return o}}function g(t,e){var r=new Date;return e-=t=+t,function(n){return r.setTime(t+e*n),r}}function v(t,e){return e-=t=+t,function(r){return t+e*r}}function m(t,e){var r,n={},a={};for(r in null!==t&&\"object\"==typeof t||(t={}),null!==e&&\"object\"==typeof e||(e={}),e)r in t?n[r]=_(t[r],e[r]):a[r]=e[r];return function(t){for(r in n)a[r]=n[r](t);return a}}var y=/[-+]?(?:\\d+\\.?\\d*|\\.?\\d+)(?:[eE][-+]?\\d+)?/g,x=new RegExp(y.source,\"g\");function b(t,e){var r,n,a,i=y.lastIndex=x.lastIndex=0,o=-1,s=[],l=[];for(t+=\"\",e+=\"\";(r=y.exec(t))&&(n=x.exec(e));)(a=n.index)>i&&(a=e.slice(i,a),s[o]?s[o]+=a:s[++o]=a),(r=r[0])===(n=n[0])?s[o]?s[o]+=n:s[++o]=n:(s[++o]=null,l.push({i:o,x:v(r,n)})),i=x.lastIndex;return i<e.length&&(a=e.slice(i),s[o]?s[o]+=a:s[++o]=a),s.length<2?l[0]?function(t){return function(e){return t(e)+\"\"}}(l[0].x):function(t){return function(){return t}}(e):(e=l.length,function(t){for(var r,n=0;n<e;++n)s[(r=l[n]).i]=r.x(t);return s.join(\"\")})}function _(t,r){var n,a=typeof r;return null==r||\"boolean\"===a?i(r):(\"number\"===a?v:\"string\"===a?(n=e.color(r))?(r=n,u):b:r instanceof e.color?u:r instanceof Date?g:Array.isArray(r)?d:\"function\"!=typeof r.valueOf&&\"function\"!=typeof r.toString||isNaN(r)?m:v)(t,r)}var w,k,T,A,M=180/Math.PI,S={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function E(t,e,r,n,a,i){var o,s,l;return(o=Math.sqrt(t*t+e*e))&&(t/=o,e/=o),(l=t*r+e*n)&&(r-=t*l,n-=e*l),(s=Math.sqrt(r*r+n*n))&&(r/=s,n/=s,l/=s),t*n<e*r&&(t=-t,e=-e,l=-l,o=-o),{translateX:a,translateY:i,rotate:Math.atan2(e,t)*M,skewX:Math.atan(l)*M,scaleX:o,scaleY:s}}function C(t,e,r,n){function a(t){return t.length?t.pop()+\" \":\"\"}return function(i,o){var s=[],l=[];return i=t(i),o=t(o),function(t,n,a,i,o,s){if(t!==a||n!==i){var l=o.push(\"translate(\",null,e,null,r);s.push({i:l-4,x:v(t,a)},{i:l-2,x:v(n,i)})}else(a||i)&&o.push(\"translate(\"+a+e+i+r)}(i.translateX,i.translateY,o.translateX,o.translateY,s,l),function(t,e,r,i){t!==e?(t-e>180?e+=360:e-t>180&&(t+=360),i.push({i:r.push(a(r)+\"rotate(\",null,n)-2,x:v(t,e)})):e&&r.push(a(r)+\"rotate(\"+e+n)}(i.rotate,o.rotate,s,l),function(t,e,r,i){t!==e?i.push({i:r.push(a(r)+\"skewX(\",null,n)-2,x:v(t,e)}):e&&r.push(a(r)+\"skewX(\"+e+n)}(i.skewX,o.skewX,s,l),function(t,e,r,n,i,o){if(t!==r||e!==n){var s=i.push(a(i)+\"scale(\",null,\",\",null,\")\");o.push({i:s-4,x:v(t,r)},{i:s-2,x:v(e,n)})}else 1===r&&1===n||i.push(a(i)+\"scale(\"+r+\",\"+n+\")\")}(i.scaleX,i.scaleY,o.scaleX,o.scaleY,s,l),i=o=null,function(t){for(var e,r=-1,n=l.length;++r<n;)s[(e=l[r]).i]=e.x(t);return s.join(\"\")}}}var L=C(function(t){return\"none\"===t?S:(w||(w=document.createElement(\"DIV\"),k=document.documentElement,T=document.defaultView),w.style.transform=t,t=T.getComputedStyle(k.appendChild(w),null).getPropertyValue(\"transform\"),k.removeChild(w),E(+(t=t.slice(7,-1).split(\",\"))[0],+t[1],+t[2],+t[3],+t[4],+t[5]))},\"px, \",\"px)\",\"deg)\"),P=C(function(t){return null==t?S:(A||(A=document.createElementNS(\"http://www.w3.org/2000/svg\",\"g\")),A.setAttribute(\"transform\",t),(t=A.transform.baseVal.consolidate())?E((t=t.matrix).a,t.b,t.c,t.d,t.e,t.f):S)},\", \",\")\",\")\"),O=Math.SQRT2,I=2,z=4,D=1e-12;function R(t){return((t=Math.exp(t))+1/t)/2}function F(t){return function(r,n){var a=t((r=e.hsl(r)).h,(n=e.hsl(n)).h),i=c(r.s,n.s),o=c(r.l,n.l),s=c(r.opacity,n.opacity);return function(t){return r.h=a(t),r.s=i(t),r.l=o(t),r.opacity=s(t),r+\"\"}}}var B=F(s),N=F(c);function j(t){return function(r,n){var a=t((r=e.hcl(r)).h,(n=e.hcl(n)).h),i=c(r.c,n.c),o=c(r.l,n.l),s=c(r.opacity,n.opacity);return function(t){return r.h=a(t),r.c=i(t),r.l=o(t),r.opacity=s(t),r+\"\"}}}var V=j(s),U=j(c);function q(t){return function r(n){function a(r,a){var i=t((r=e.cubehelix(r)).h,(a=e.cubehelix(a)).h),o=c(r.s,a.s),s=c(r.l,a.l),l=c(r.opacity,a.opacity);return function(t){return r.h=i(t),r.s=o(t),r.l=s(Math.pow(t,n)),r.opacity=l(t),r+\"\"}}return n=+n,a.gamma=r,a}(1)}var H=q(s),G=q(c);t.interpolate=_,t.interpolateArray=d,t.interpolateBasis=n,t.interpolateBasisClosed=a,t.interpolateDate=g,t.interpolateDiscrete=function(t){var e=t.length;return function(r){return t[Math.max(0,Math.min(e-1,Math.floor(r*e)))]}},t.interpolateHue=function(t,e){var r=s(+t,+e);return function(t){var e=r(t);return e-360*Math.floor(e/360)}},t.interpolateNumber=v,t.interpolateObject=m,t.interpolateRound=function(t,e){return e-=t=+t,function(r){return Math.round(t+e*r)}},t.interpolateString=b,t.interpolateTransformCss=L,t.interpolateTransformSvg=P,t.interpolateZoom=function(t,e){var r,n,a=t[0],i=t[1],o=t[2],s=e[0],l=e[1],c=e[2],u=s-a,h=l-i,f=u*u+h*h;if(f<D)n=Math.log(c/o)/O,r=function(t){return[a+t*u,i+t*h,o*Math.exp(O*t*n)]};else{var p=Math.sqrt(f),d=(c*c-o*o+z*f)/(2*o*I*p),g=(c*c-o*o-z*f)/(2*c*I*p),v=Math.log(Math.sqrt(d*d+1)-d),m=Math.log(Math.sqrt(g*g+1)-g);n=(m-v)/O,r=function(t){var e,r=t*n,s=R(v),l=o/(I*p)*(s*(e=O*r+v,((e=Math.exp(2*e))-1)/(e+1))-function(t){return((t=Math.exp(t))-1/t)/2}(v));return[a+l*u,i+l*h,o*s/R(O*r+v)]}}return r.duration=1e3*n,r},t.interpolateRgb=u,t.interpolateRgbBasis=f,t.interpolateRgbBasisClosed=p,t.interpolateHsl=B,t.interpolateHslLong=N,t.interpolateLab=function(t,r){var n=c((t=e.lab(t)).l,(r=e.lab(r)).l),a=c(t.a,r.a),i=c(t.b,r.b),o=c(t.opacity,r.opacity);return function(e){return t.l=n(e),t.a=a(e),t.b=i(e),t.opacity=o(e),t+\"\"}},t.interpolateHcl=V,t.interpolateHclLong=U,t.interpolateCubehelix=H,t.interpolateCubehelixLong=G,t.piecewise=function(t,e){for(var r=0,n=e.length-1,a=e[0],i=new Array(n<0?0:n);r<n;)i[r]=t(a,a=e[++r]);return function(t){var e=Math.max(0,Math.min(n-1,Math.floor(t*=n)));return i[e](t-e)}},t.quantize=function(t,e){for(var r=new Array(e),n=0;n<e;++n)r[n]=t(n/(e-1));return r},Object.defineProperty(t,\"__esModule\",{value:!0})},\"object\"==typeof r&&\"undefined\"!=typeof e?a(r,t(\"d3-color\")):a(n.d3=n.d3||{},n.d3)},{\"d3-color\":155}],160:[function(t,e,r){var n;n=this,function(t){\"use strict\";var e=Math.PI,r=2*e,n=r-1e-6;function a(){this._x0=this._y0=this._x1=this._y1=null,this._=\"\"}function i(){return new a}a.prototype=i.prototype={constructor:a,moveTo:function(t,e){this._+=\"M\"+(this._x0=this._x1=+t)+\",\"+(this._y0=this._y1=+e)},closePath:function(){null!==this._x1&&(this._x1=this._x0,this._y1=this._y0,this._+=\"Z\")},lineTo:function(t,e){this._+=\"L\"+(this._x1=+t)+\",\"+(this._y1=+e)},quadraticCurveTo:function(t,e,r,n){this._+=\"Q\"+ +t+\",\"+ +e+\",\"+(this._x1=+r)+\",\"+(this._y1=+n)},bezierCurveTo:function(t,e,r,n,a,i){this._+=\"C\"+ +t+\",\"+ +e+\",\"+ +r+\",\"+ +n+\",\"+(this._x1=+a)+\",\"+(this._y1=+i)},arcTo:function(t,r,n,a,i){t=+t,r=+r,n=+n,a=+a,i=+i;var o=this._x1,s=this._y1,l=n-t,c=a-r,u=o-t,h=s-r,f=u*u+h*h;if(i<0)throw new Error(\"negative radius: \"+i);if(null===this._x1)this._+=\"M\"+(this._x1=t)+\",\"+(this._y1=r);else if(f>1e-6)if(Math.abs(h*l-c*u)>1e-6&&i){var p=n-o,d=a-s,g=l*l+c*c,v=p*p+d*d,m=Math.sqrt(g),y=Math.sqrt(f),x=i*Math.tan((e-Math.acos((g+f-v)/(2*m*y)))/2),b=x/y,_=x/m;Math.abs(b-1)>1e-6&&(this._+=\"L\"+(t+b*u)+\",\"+(r+b*h)),this._+=\"A\"+i+\",\"+i+\",0,0,\"+ +(h*p>u*d)+\",\"+(this._x1=t+_*l)+\",\"+(this._y1=r+_*c)}else this._+=\"L\"+(this._x1=t)+\",\"+(this._y1=r);else;},arc:function(t,a,i,o,s,l){t=+t,a=+a;var c=(i=+i)*Math.cos(o),u=i*Math.sin(o),h=t+c,f=a+u,p=1^l,d=l?o-s:s-o;if(i<0)throw new Error(\"negative radius: \"+i);null===this._x1?this._+=\"M\"+h+\",\"+f:(Math.abs(this._x1-h)>1e-6||Math.abs(this._y1-f)>1e-6)&&(this._+=\"L\"+h+\",\"+f),i&&(d<0&&(d=d%r+r),d>n?this._+=\"A\"+i+\",\"+i+\",0,1,\"+p+\",\"+(t-c)+\",\"+(a-u)+\"A\"+i+\",\"+i+\",0,1,\"+p+\",\"+(this._x1=h)+\",\"+(this._y1=f):d>1e-6&&(this._+=\"A\"+i+\",\"+i+\",0,\"+ +(d>=e)+\",\"+p+\",\"+(this._x1=t+i*Math.cos(s))+\",\"+(this._y1=a+i*Math.sin(s))))},rect:function(t,e,r,n){this._+=\"M\"+(this._x0=this._x1=+t)+\",\"+(this._y0=this._y1=+e)+\"h\"+ +r+\"v\"+ +n+\"h\"+-r+\"Z\"},toString:function(){return this._}},t.path=i,Object.defineProperty(t,\"__esModule\",{value:!0})}(\"object\"==typeof r&&\"undefined\"!=typeof e?r:n.d3=n.d3||{})},{}],161:[function(t,e,r){var n;n=this,function(t){\"use strict\";function e(t,e,r,n){if(isNaN(e)||isNaN(r))return t;var a,i,o,s,l,c,u,h,f,p=t._root,d={data:n},g=t._x0,v=t._y0,m=t._x1,y=t._y1;if(!p)return t._root=d,t;for(;p.length;)if((c=e>=(i=(g+m)/2))?g=i:m=i,(u=r>=(o=(v+y)/2))?v=o:y=o,a=p,!(p=p[h=u<<1|c]))return a[h]=d,t;if(s=+t._x.call(null,p.data),l=+t._y.call(null,p.data),e===s&&r===l)return d.next=p,a?a[h]=d:t._root=d,t;do{a=a?a[h]=new Array(4):t._root=new Array(4),(c=e>=(i=(g+m)/2))?g=i:m=i,(u=r>=(o=(v+y)/2))?v=o:y=o}while((h=u<<1|c)==(f=(l>=o)<<1|s>=i));return a[f]=p,a[h]=d,t}var r=function(t,e,r,n,a){this.node=t,this.x0=e,this.y0=r,this.x1=n,this.y1=a};function n(t){return t[0]}function a(t){return t[1]}function i(t,e,r){var i=new o(null==e?n:e,null==r?a:r,NaN,NaN,NaN,NaN);return null==t?i:i.addAll(t)}function o(t,e,r,n,a,i){this._x=t,this._y=e,this._x0=r,this._y0=n,this._x1=a,this._y1=i,this._root=void 0}function s(t){for(var e={data:t.data},r=e;t=t.next;)r=r.next={data:t.data};return e}var l=i.prototype=o.prototype;l.copy=function(){var t,e,r=new o(this._x,this._y,this._x0,this._y0,this._x1,this._y1),n=this._root;if(!n)return r;if(!n.length)return r._root=s(n),r;for(t=[{source:n,target:r._root=new Array(4)}];n=t.pop();)for(var a=0;a<4;++a)(e=n.source[a])&&(e.length?t.push({source:e,target:n.target[a]=new Array(4)}):n.target[a]=s(e));return r},l.add=function(t){var r=+this._x.call(null,t),n=+this._y.call(null,t);return e(this.cover(r,n),r,n,t)},l.addAll=function(t){var r,n,a,i,o=t.length,s=new Array(o),l=new Array(o),c=1/0,u=1/0,h=-1/0,f=-1/0;for(n=0;n<o;++n)isNaN(a=+this._x.call(null,r=t[n]))||isNaN(i=+this._y.call(null,r))||(s[n]=a,l[n]=i,a<c&&(c=a),a>h&&(h=a),i<u&&(u=i),i>f&&(f=i));for(h<c&&(c=this._x0,h=this._x1),f<u&&(u=this._y0,f=this._y1),this.cover(c,u).cover(h,f),n=0;n<o;++n)e(this,s[n],l[n],t[n]);return this},l.cover=function(t,e){if(isNaN(t=+t)||isNaN(e=+e))return this;var r=this._x0,n=this._y0,a=this._x1,i=this._y1;if(isNaN(r))a=(r=Math.floor(t))+1,i=(n=Math.floor(e))+1;else{if(!(r>t||t>a||n>e||e>i))return this;var o,s,l=a-r,c=this._root;switch(s=(e<(n+i)/2)<<1|t<(r+a)/2){case 0:do{(o=new Array(4))[s]=c,c=o}while(i=n+(l*=2),t>(a=r+l)||e>i);break;case 1:do{(o=new Array(4))[s]=c,c=o}while(i=n+(l*=2),(r=a-l)>t||e>i);break;case 2:do{(o=new Array(4))[s]=c,c=o}while(n=i-(l*=2),t>(a=r+l)||n>e);break;case 3:do{(o=new Array(4))[s]=c,c=o}while(n=i-(l*=2),(r=a-l)>t||n>e)}this._root&&this._root.length&&(this._root=c)}return this._x0=r,this._y0=n,this._x1=a,this._y1=i,this},l.data=function(){var t=[];return this.visit(function(e){if(!e.length)do{t.push(e.data)}while(e=e.next)}),t},l.extent=function(t){return arguments.length?this.cover(+t[0][0],+t[0][1]).cover(+t[1][0],+t[1][1]):isNaN(this._x0)?void 0:[[this._x0,this._y0],[this._x1,this._y1]]},l.find=function(t,e,n){var a,i,o,s,l,c,u,h=this._x0,f=this._y0,p=this._x1,d=this._y1,g=[],v=this._root;for(v&&g.push(new r(v,h,f,p,d)),null==n?n=1/0:(h=t-n,f=e-n,p=t+n,d=e+n,n*=n);c=g.pop();)if(!(!(v=c.node)||(i=c.x0)>p||(o=c.y0)>d||(s=c.x1)<h||(l=c.y1)<f))if(v.length){var m=(i+s)/2,y=(o+l)/2;g.push(new r(v[3],m,y,s,l),new r(v[2],i,y,m,l),new r(v[1],m,o,s,y),new r(v[0],i,o,m,y)),(u=(e>=y)<<1|t>=m)&&(c=g[g.length-1],g[g.length-1]=g[g.length-1-u],g[g.length-1-u]=c)}else{var x=t-+this._x.call(null,v.data),b=e-+this._y.call(null,v.data),_=x*x+b*b;if(_<n){var w=Math.sqrt(n=_);h=t-w,f=e-w,p=t+w,d=e+w,a=v.data}}return a},l.remove=function(t){if(isNaN(i=+this._x.call(null,t))||isNaN(o=+this._y.call(null,t)))return this;var e,r,n,a,i,o,s,l,c,u,h,f,p=this._root,d=this._x0,g=this._y0,v=this._x1,m=this._y1;if(!p)return this;if(p.length)for(;;){if((c=i>=(s=(d+v)/2))?d=s:v=s,(u=o>=(l=(g+m)/2))?g=l:m=l,e=p,!(p=p[h=u<<1|c]))return this;if(!p.length)break;(e[h+1&3]||e[h+2&3]||e[h+3&3])&&(r=e,f=h)}for(;p.data!==t;)if(n=p,!(p=p.next))return this;return(a=p.next)&&delete p.next,n?(a?n.next=a:delete n.next,this):e?(a?e[h]=a:delete e[h],(p=e[0]||e[1]||e[2]||e[3])&&p===(e[3]||e[2]||e[1]||e[0])&&!p.length&&(r?r[f]=p:this._root=p),this):(this._root=a,this)},l.removeAll=function(t){for(var e=0,r=t.length;e<r;++e)this.remove(t[e]);return this},l.root=function(){return this._root},l.size=function(){var t=0;return this.visit(function(e){if(!e.length)do{++t}while(e=e.next)}),t},l.visit=function(t){var e,n,a,i,o,s,l=[],c=this._root;for(c&&l.push(new r(c,this._x0,this._y0,this._x1,this._y1));e=l.pop();)if(!t(c=e.node,a=e.x0,i=e.y0,o=e.x1,s=e.y1)&&c.length){var u=(a+o)/2,h=(i+s)/2;(n=c[3])&&l.push(new r(n,u,h,o,s)),(n=c[2])&&l.push(new r(n,a,h,u,s)),(n=c[1])&&l.push(new r(n,u,i,o,h)),(n=c[0])&&l.push(new r(n,a,i,u,h))}return this},l.visitAfter=function(t){var e,n=[],a=[];for(this._root&&n.push(new r(this._root,this._x0,this._y0,this._x1,this._y1));e=n.pop();){var i=e.node;if(i.length){var o,s=e.x0,l=e.y0,c=e.x1,u=e.y1,h=(s+c)/2,f=(l+u)/2;(o=i[0])&&n.push(new r(o,s,l,h,f)),(o=i[1])&&n.push(new r(o,h,l,c,f)),(o=i[2])&&n.push(new r(o,s,f,h,u)),(o=i[3])&&n.push(new r(o,h,f,c,u))}a.push(e)}for(;e=a.pop();)t(e.node,e.x0,e.y0,e.x1,e.y1);return this},l.x=function(t){return arguments.length?(this._x=t,this):this._x},l.y=function(t){return arguments.length?(this._y=t,this):this._y},t.quadtree=i,Object.defineProperty(t,\"__esModule\",{value:!0})}(\"object\"==typeof r&&\"undefined\"!=typeof e?r:n.d3=n.d3||{})},{}],162:[function(t,e,r){var n,a;n=this,a=function(t,e){\"use strict\";function r(t){return function(){return t}}var n=Math.abs,a=Math.atan2,i=Math.cos,o=Math.max,s=Math.min,l=Math.sin,c=Math.sqrt,u=1e-12,h=Math.PI,f=h/2,p=2*h;function d(t){return t>=1?f:t<=-1?-f:Math.asin(t)}function g(t){return t.innerRadius}function v(t){return t.outerRadius}function m(t){return t.startAngle}function y(t){return t.endAngle}function x(t){return t&&t.padAngle}function b(t,e,r,n,a,i,s){var l=t-r,u=e-n,h=(s?i:-i)/c(l*l+u*u),f=h*u,p=-h*l,d=t+f,g=e+p,v=r+f,m=n+p,y=(d+v)/2,x=(g+m)/2,b=v-d,_=m-g,w=b*b+_*_,k=a-i,T=d*m-v*g,A=(_<0?-1:1)*c(o(0,k*k*w-T*T)),M=(T*_-b*A)/w,S=(-T*b-_*A)/w,E=(T*_+b*A)/w,C=(-T*b+_*A)/w,L=M-y,P=S-x,O=E-y,I=C-x;return L*L+P*P>O*O+I*I&&(M=E,S=C),{cx:M,cy:S,x01:-f,y01:-p,x11:M*(a/k-1),y11:S*(a/k-1)}}function _(t){this._context=t}function w(t){return new _(t)}function k(t){return t[0]}function T(t){return t[1]}function A(){var t=k,n=T,a=r(!0),i=null,o=w,s=null;function l(r){var l,c,u,h=r.length,f=!1;for(null==i&&(s=o(u=e.path())),l=0;l<=h;++l)!(l<h&&a(c=r[l],l,r))===f&&((f=!f)?s.lineStart():s.lineEnd()),f&&s.point(+t(c,l,r),+n(c,l,r));if(u)return s=null,u+\"\"||null}return l.x=function(e){return arguments.length?(t=\"function\"==typeof e?e:r(+e),l):t},l.y=function(t){return arguments.length?(n=\"function\"==typeof t?t:r(+t),l):n},l.defined=function(t){return arguments.length?(a=\"function\"==typeof t?t:r(!!t),l):a},l.curve=function(t){return arguments.length?(o=t,null!=i&&(s=o(i)),l):o},l.context=function(t){return arguments.length?(null==t?i=s=null:s=o(i=t),l):i},l}function M(){var t=k,n=null,a=r(0),i=T,o=r(!0),s=null,l=w,c=null;function u(r){var u,h,f,p,d,g=r.length,v=!1,m=new Array(g),y=new Array(g);for(null==s&&(c=l(d=e.path())),u=0;u<=g;++u){if(!(u<g&&o(p=r[u],u,r))===v)if(v=!v)h=u,c.areaStart(),c.lineStart();else{for(c.lineEnd(),c.lineStart(),f=u-1;f>=h;--f)c.point(m[f],y[f]);c.lineEnd(),c.areaEnd()}v&&(m[u]=+t(p,u,r),y[u]=+a(p,u,r),c.point(n?+n(p,u,r):m[u],i?+i(p,u,r):y[u]))}if(d)return c=null,d+\"\"||null}function h(){return A().defined(o).curve(l).context(s)}return u.x=function(e){return arguments.length?(t=\"function\"==typeof e?e:r(+e),n=null,u):t},u.x0=function(e){return arguments.length?(t=\"function\"==typeof e?e:r(+e),u):t},u.x1=function(t){return arguments.length?(n=null==t?null:\"function\"==typeof t?t:r(+t),u):n},u.y=function(t){return arguments.length?(a=\"function\"==typeof t?t:r(+t),i=null,u):a},u.y0=function(t){return arguments.length?(a=\"function\"==typeof t?t:r(+t),u):a},u.y1=function(t){return arguments.length?(i=null==t?null:\"function\"==typeof t?t:r(+t),u):i},u.lineX0=u.lineY0=function(){return h().x(t).y(a)},u.lineY1=function(){return h().x(t).y(i)},u.lineX1=function(){return h().x(n).y(a)},u.defined=function(t){return arguments.length?(o=\"function\"==typeof t?t:r(!!t),u):o},u.curve=function(t){return arguments.length?(l=t,null!=s&&(c=l(s)),u):l},u.context=function(t){return arguments.length?(null==t?s=c=null:c=l(s=t),u):s},u}function S(t,e){return e<t?-1:e>t?1:e>=t?0:NaN}function E(t){return t}_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:this._context.lineTo(t,e)}}};var C=P(w);function L(t){this._curve=t}function P(t){function e(e){return new L(t(e))}return e._curve=t,e}function O(t){var e=t.curve;return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t.curve=function(t){return arguments.length?e(P(t)):e()._curve},t}function I(){return O(A().curve(C))}function z(){var t=M().curve(C),e=t.curve,r=t.lineX0,n=t.lineX1,a=t.lineY0,i=t.lineY1;return t.angle=t.x,delete t.x,t.startAngle=t.x0,delete t.x0,t.endAngle=t.x1,delete t.x1,t.radius=t.y,delete t.y,t.innerRadius=t.y0,delete t.y0,t.outerRadius=t.y1,delete t.y1,t.lineStartAngle=function(){return O(r())},delete t.lineX0,t.lineEndAngle=function(){return O(n())},delete t.lineX1,t.lineInnerRadius=function(){return O(a())},delete t.lineY0,t.lineOuterRadius=function(){return O(i())},delete t.lineY1,t.curve=function(t){return arguments.length?e(P(t)):e()._curve},t}function D(t,e){return[(e=+e)*Math.cos(t-=Math.PI/2),e*Math.sin(t)]}L.prototype={areaStart:function(){this._curve.areaStart()},areaEnd:function(){this._curve.areaEnd()},lineStart:function(){this._curve.lineStart()},lineEnd:function(){this._curve.lineEnd()},point:function(t,e){this._curve.point(e*Math.sin(t),e*-Math.cos(t))}};var R=Array.prototype.slice;function F(t){return t.source}function B(t){return t.target}function N(t){var n=F,a=B,i=k,o=T,s=null;function l(){var r,l=R.call(arguments),c=n.apply(this,l),u=a.apply(this,l);if(s||(s=r=e.path()),t(s,+i.apply(this,(l[0]=c,l)),+o.apply(this,l),+i.apply(this,(l[0]=u,l)),+o.apply(this,l)),r)return s=null,r+\"\"||null}return l.source=function(t){return arguments.length?(n=t,l):n},l.target=function(t){return arguments.length?(a=t,l):a},l.x=function(t){return arguments.length?(i=\"function\"==typeof t?t:r(+t),l):i},l.y=function(t){return arguments.length?(o=\"function\"==typeof t?t:r(+t),l):o},l.context=function(t){return arguments.length?(s=null==t?null:t,l):s},l}function j(t,e,r,n,a){t.moveTo(e,r),t.bezierCurveTo(e=(e+n)/2,r,e,a,n,a)}function V(t,e,r,n,a){t.moveTo(e,r),t.bezierCurveTo(e,r=(r+a)/2,n,r,n,a)}function U(t,e,r,n,a){var i=D(e,r),o=D(e,r=(r+a)/2),s=D(n,r),l=D(n,a);t.moveTo(i[0],i[1]),t.bezierCurveTo(o[0],o[1],s[0],s[1],l[0],l[1])}var q={draw:function(t,e){var r=Math.sqrt(e/h);t.moveTo(r,0),t.arc(0,0,r,0,p)}},H={draw:function(t,e){var r=Math.sqrt(e/5)/2;t.moveTo(-3*r,-r),t.lineTo(-r,-r),t.lineTo(-r,-3*r),t.lineTo(r,-3*r),t.lineTo(r,-r),t.lineTo(3*r,-r),t.lineTo(3*r,r),t.lineTo(r,r),t.lineTo(r,3*r),t.lineTo(-r,3*r),t.lineTo(-r,r),t.lineTo(-3*r,r),t.closePath()}},G=Math.sqrt(1/3),Y=2*G,W={draw:function(t,e){var r=Math.sqrt(e/Y),n=r*G;t.moveTo(0,-r),t.lineTo(n,0),t.lineTo(0,r),t.lineTo(-n,0),t.closePath()}},X=Math.sin(h/10)/Math.sin(7*h/10),Z=Math.sin(p/10)*X,J=-Math.cos(p/10)*X,K={draw:function(t,e){var r=Math.sqrt(.8908130915292852*e),n=Z*r,a=J*r;t.moveTo(0,-r),t.lineTo(n,a);for(var i=1;i<5;++i){var o=p*i/5,s=Math.cos(o),l=Math.sin(o);t.lineTo(l*r,-s*r),t.lineTo(s*n-l*a,l*n+s*a)}t.closePath()}},Q={draw:function(t,e){var r=Math.sqrt(e),n=-r/2;t.rect(n,n,r,r)}},$=Math.sqrt(3),tt={draw:function(t,e){var r=-Math.sqrt(e/(3*$));t.moveTo(0,2*r),t.lineTo(-$*r,-r),t.lineTo($*r,-r),t.closePath()}},et=-.5,rt=Math.sqrt(3)/2,nt=1/Math.sqrt(12),at=3*(nt/2+1),it={draw:function(t,e){var r=Math.sqrt(e/at),n=r/2,a=r*nt,i=n,o=r*nt+r,s=-i,l=o;t.moveTo(n,a),t.lineTo(i,o),t.lineTo(s,l),t.lineTo(et*n-rt*a,rt*n+et*a),t.lineTo(et*i-rt*o,rt*i+et*o),t.lineTo(et*s-rt*l,rt*s+et*l),t.lineTo(et*n+rt*a,et*a-rt*n),t.lineTo(et*i+rt*o,et*o-rt*i),t.lineTo(et*s+rt*l,et*l-rt*s),t.closePath()}},ot=[q,H,W,Q,K,tt,it];function st(){}function lt(t,e,r){t._context.bezierCurveTo((2*t._x0+t._x1)/3,(2*t._y0+t._y1)/3,(t._x0+2*t._x1)/3,(t._y0+2*t._y1)/3,(t._x0+4*t._x1+e)/6,(t._y0+4*t._y1+r)/6)}function ct(t){this._context=t}function ut(t){this._context=t}function ht(t){this._context=t}function ft(t,e){this._basis=new ct(t),this._beta=e}ct.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){switch(this._point){case 3:lt(this,this._x1,this._y1);case 2:this._context.lineTo(this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3,this._context.lineTo((5*this._x0+this._x1)/6,(5*this._y0+this._y1)/6);default:lt(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},ut.prototype={areaStart:st,areaEnd:st,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._y0=this._y1=this._y2=this._y3=this._y4=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x2,this._y2),this._context.closePath();break;case 2:this._context.moveTo((this._x2+2*this._x3)/3,(this._y2+2*this._y3)/3),this._context.lineTo((this._x3+2*this._x2)/3,(this._y3+2*this._y2)/3),this._context.closePath();break;case 3:this.point(this._x2,this._y2),this.point(this._x3,this._y3),this.point(this._x4,this._y4)}},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._x2=t,this._y2=e;break;case 1:this._point=2,this._x3=t,this._y3=e;break;case 2:this._point=3,this._x4=t,this._y4=e,this._context.moveTo((this._x0+4*this._x1+t)/6,(this._y0+4*this._y1+e)/6);break;default:lt(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},ht.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3;var r=(this._x0+4*this._x1+t)/6,n=(this._y0+4*this._y1+e)/6;this._line?this._context.lineTo(r,n):this._context.moveTo(r,n);break;case 3:this._point=4;default:lt(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},ft.prototype={lineStart:function(){this._x=[],this._y=[],this._basis.lineStart()},lineEnd:function(){var t=this._x,e=this._y,r=t.length-1;if(r>0)for(var n,a=t[0],i=e[0],o=t[r]-a,s=e[r]-i,l=-1;++l<=r;)n=l/r,this._basis.point(this._beta*t[l]+(1-this._beta)*(a+n*o),this._beta*e[l]+(1-this._beta)*(i+n*s));this._x=this._y=null,this._basis.lineEnd()},point:function(t,e){this._x.push(+t),this._y.push(+e)}};var pt=function t(e){function r(t){return 1===e?new ct(t):new ft(t,e)}return r.beta=function(e){return t(+e)},r}(.85);function dt(t,e,r){t._context.bezierCurveTo(t._x1+t._k*(t._x2-t._x0),t._y1+t._k*(t._y2-t._y0),t._x2+t._k*(t._x1-e),t._y2+t._k*(t._y1-r),t._x2,t._y2)}function gt(t,e){this._context=t,this._k=(1-e)/6}gt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:dt(this,this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2,this._x1=t,this._y1=e;break;case 2:this._point=3;default:dt(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var vt=function t(e){function r(t){return new gt(t,e)}return r.tension=function(e){return t(+e)},r}(0);function mt(t,e){this._context=t,this._k=(1-e)/6}mt.prototype={areaStart:st,areaEnd:st,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:dt(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var yt=function t(e){function r(t){return new mt(t,e)}return r.tension=function(e){return t(+e)},r}(0);function xt(t,e){this._context=t,this._k=(1-e)/6}xt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:dt(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var bt=function t(e){function r(t){return new xt(t,e)}return r.tension=function(e){return t(+e)},r}(0);function _t(t,e,r){var n=t._x1,a=t._y1,i=t._x2,o=t._y2;if(t._l01_a>u){var s=2*t._l01_2a+3*t._l01_a*t._l12_a+t._l12_2a,l=3*t._l01_a*(t._l01_a+t._l12_a);n=(n*s-t._x0*t._l12_2a+t._x2*t._l01_2a)/l,a=(a*s-t._y0*t._l12_2a+t._y2*t._l01_2a)/l}if(t._l23_a>u){var c=2*t._l23_2a+3*t._l23_a*t._l12_a+t._l12_2a,h=3*t._l23_a*(t._l23_a+t._l12_a);i=(i*c+t._x1*t._l23_2a-e*t._l12_2a)/h,o=(o*c+t._y1*t._l23_2a-r*t._l12_2a)/h}t._context.bezierCurveTo(n,a,i,o,t._x2,t._y2)}function wt(t,e){this._context=t,this._alpha=e}wt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:this.point(this._x2,this._y2)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3;default:_t(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var kt=function t(e){function r(t){return e?new wt(t,e):new gt(t,0)}return r.alpha=function(e){return t(+e)},r}(.5);function Tt(t,e){this._context=t,this._alpha=e}Tt.prototype={areaStart:st,areaEnd:st,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:_t(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var At=function t(e){function r(t){return e?new Tt(t,e):new mt(t,0)}return r.alpha=function(e){return t(+e)},r}(.5);function Mt(t,e){this._context=t,this._alpha=e}Mt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:_t(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var St=function t(e){function r(t){return e?new Mt(t,e):new xt(t,0)}return r.alpha=function(e){return t(+e)},r}(.5);function Et(t){this._context=t}function Ct(t){return t<0?-1:1}function Lt(t,e,r){var n=t._x1-t._x0,a=e-t._x1,i=(t._y1-t._y0)/(n||a<0&&-0),o=(r-t._y1)/(a||n<0&&-0),s=(i*a+o*n)/(n+a);return(Ct(i)+Ct(o))*Math.min(Math.abs(i),Math.abs(o),.5*Math.abs(s))||0}function Pt(t,e){var r=t._x1-t._x0;return r?(3*(t._y1-t._y0)/r-e)/2:e}function Ot(t,e,r){var n=t._x0,a=t._y0,i=t._x1,o=t._y1,s=(i-n)/3;t._context.bezierCurveTo(n+s,a+s*e,i-s,o-s*r,i,o)}function It(t){this._context=t}function zt(t){this._context=new Dt(t)}function Dt(t){this._context=t}function Rt(t){this._context=t}function Ft(t){var e,r,n=t.length-1,a=new Array(n),i=new Array(n),o=new Array(n);for(a[0]=0,i[0]=2,o[0]=t[0]+2*t[1],e=1;e<n-1;++e)a[e]=1,i[e]=4,o[e]=4*t[e]+2*t[e+1];for(a[n-1]=2,i[n-1]=7,o[n-1]=8*t[n-1]+t[n],e=1;e<n;++e)r=a[e]/i[e-1],i[e]-=r,o[e]-=r*o[e-1];for(a[n-1]=o[n-1]/i[n-1],e=n-2;e>=0;--e)a[e]=(o[e]-a[e+1])/i[e];for(i[n-1]=(t[n]+a[n-1])/2,e=0;e<n-1;++e)i[e]=2*t[e+1]-a[e+1];return[a,i]}function Bt(t,e){this._context=t,this._t=e}function Nt(t,e){if((a=t.length)>1)for(var r,n,a,i=1,o=t[e[0]],s=o.length;i<a;++i)for(n=o,o=t[e[i]],r=0;r<s;++r)o[r][1]+=o[r][0]=isNaN(n[r][1])?n[r][0]:n[r][1]}function jt(t){for(var e=t.length,r=new Array(e);--e>=0;)r[e]=e;return r}function Vt(t,e){return t[e]}function Ut(t){var e=t.map(qt);return jt(t).sort(function(t,r){return e[t]-e[r]})}function qt(t){for(var e,r=-1,n=0,a=t.length,i=-1/0;++r<a;)(e=+t[r][1])>i&&(i=e,n=r);return n}function Ht(t){var e=t.map(Gt);return jt(t).sort(function(t,r){return e[t]-e[r]})}function Gt(t){for(var e,r=0,n=-1,a=t.length;++n<a;)(e=+t[n][1])&&(r+=e);return r}Et.prototype={areaStart:st,areaEnd:st,lineStart:function(){this._point=0},lineEnd:function(){this._point&&this._context.closePath()},point:function(t,e){t=+t,e=+e,this._point?this._context.lineTo(t,e):(this._point=1,this._context.moveTo(t,e))}},It.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=this._t0=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x1,this._y1);break;case 3:Ot(this,this._t0,Pt(this,this._t0))}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){var r=NaN;if(e=+e,(t=+t)!==this._x1||e!==this._y1){switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3,Ot(this,Pt(this,r=Lt(this,t,e)),r);break;default:Ot(this,this._t0,r=Lt(this,t,e))}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e,this._t0=r}}},(zt.prototype=Object.create(It.prototype)).point=function(t,e){It.prototype.point.call(this,e,t)},Dt.prototype={moveTo:function(t,e){this._context.moveTo(e,t)},closePath:function(){this._context.closePath()},lineTo:function(t,e){this._context.lineTo(e,t)},bezierCurveTo:function(t,e,r,n,a,i){this._context.bezierCurveTo(e,t,n,r,i,a)}},Rt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=[],this._y=[]},lineEnd:function(){var t=this._x,e=this._y,r=t.length;if(r)if(this._line?this._context.lineTo(t[0],e[0]):this._context.moveTo(t[0],e[0]),2===r)this._context.lineTo(t[1],e[1]);else for(var n=Ft(t),a=Ft(e),i=0,o=1;o<r;++i,++o)this._context.bezierCurveTo(n[0][i],a[0][i],n[1][i],a[1][i],t[o],e[o]);(this._line||0!==this._line&&1===r)&&this._context.closePath(),this._line=1-this._line,this._x=this._y=null},point:function(t,e){this._x.push(+t),this._y.push(+e)}},Bt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=this._y=NaN,this._point=0},lineEnd:function(){0<this._t&&this._t<1&&2===this._point&&this._context.lineTo(this._x,this._y),(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line>=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:if(this._t<=0)this._context.lineTo(this._x,e),this._context.lineTo(t,e);else{var r=this._x*(1-this._t)+t*this._t;this._context.lineTo(r,this._y),this._context.lineTo(r,e)}}this._x=t,this._y=e}},t.arc=function(){var t=g,o=v,_=r(0),w=null,k=m,T=y,A=x,M=null;function S(){var r,g,v,m=+t.apply(this,arguments),y=+o.apply(this,arguments),x=k.apply(this,arguments)-f,S=T.apply(this,arguments)-f,E=n(S-x),C=S>x;if(M||(M=r=e.path()),y<m&&(g=y,y=m,m=g),y>u)if(E>p-u)M.moveTo(y*i(x),y*l(x)),M.arc(0,0,y,x,S,!C),m>u&&(M.moveTo(m*i(S),m*l(S)),M.arc(0,0,m,S,x,C));else{var L,P,O=x,I=S,z=x,D=S,R=E,F=E,B=A.apply(this,arguments)/2,N=B>u&&(w?+w.apply(this,arguments):c(m*m+y*y)),j=s(n(y-m)/2,+_.apply(this,arguments)),V=j,U=j;if(N>u){var q=d(N/m*l(B)),H=d(N/y*l(B));(R-=2*q)>u?(z+=q*=C?1:-1,D-=q):(R=0,z=D=(x+S)/2),(F-=2*H)>u?(O+=H*=C?1:-1,I-=H):(F=0,O=I=(x+S)/2)}var G=y*i(O),Y=y*l(O),W=m*i(D),X=m*l(D);if(j>u){var Z,J=y*i(I),K=y*l(I),Q=m*i(z),$=m*l(z);if(E<h&&(Z=function(t,e,r,n,a,i,o,s){var l=r-t,c=n-e,h=o-a,f=s-i,p=f*l-h*c;if(!(p*p<u))return[t+(p=(h*(e-i)-f*(t-a))/p)*l,e+p*c]}(G,Y,Q,$,J,K,W,X))){var tt=G-Z[0],et=Y-Z[1],rt=J-Z[0],nt=K-Z[1],at=1/l(((v=(tt*rt+et*nt)/(c(tt*tt+et*et)*c(rt*rt+nt*nt)))>1?0:v<-1?h:Math.acos(v))/2),it=c(Z[0]*Z[0]+Z[1]*Z[1]);V=s(j,(m-it)/(at-1)),U=s(j,(y-it)/(at+1))}}F>u?U>u?(L=b(Q,$,G,Y,y,U,C),P=b(J,K,W,X,y,U,C),M.moveTo(L.cx+L.x01,L.cy+L.y01),U<j?M.arc(L.cx,L.cy,U,a(L.y01,L.x01),a(P.y01,P.x01),!C):(M.arc(L.cx,L.cy,U,a(L.y01,L.x01),a(L.y11,L.x11),!C),M.arc(0,0,y,a(L.cy+L.y11,L.cx+L.x11),a(P.cy+P.y11,P.cx+P.x11),!C),M.arc(P.cx,P.cy,U,a(P.y11,P.x11),a(P.y01,P.x01),!C))):(M.moveTo(G,Y),M.arc(0,0,y,O,I,!C)):M.moveTo(G,Y),m>u&&R>u?V>u?(L=b(W,X,J,K,m,-V,C),P=b(G,Y,Q,$,m,-V,C),M.lineTo(L.cx+L.x01,L.cy+L.y01),V<j?M.arc(L.cx,L.cy,V,a(L.y01,L.x01),a(P.y01,P.x01),!C):(M.arc(L.cx,L.cy,V,a(L.y01,L.x01),a(L.y11,L.x11),!C),M.arc(0,0,m,a(L.cy+L.y11,L.cx+L.x11),a(P.cy+P.y11,P.cx+P.x11),C),M.arc(P.cx,P.cy,V,a(P.y11,P.x11),a(P.y01,P.x01),!C))):M.arc(0,0,m,D,z,C):M.lineTo(W,X)}else M.moveTo(0,0);if(M.closePath(),r)return M=null,r+\"\"||null}return S.centroid=function(){var e=(+t.apply(this,arguments)+ +o.apply(this,arguments))/2,r=(+k.apply(this,arguments)+ +T.apply(this,arguments))/2-h/2;return[i(r)*e,l(r)*e]},S.innerRadius=function(e){return arguments.length?(t=\"function\"==typeof e?e:r(+e),S):t},S.outerRadius=function(t){return arguments.length?(o=\"function\"==typeof t?t:r(+t),S):o},S.cornerRadius=function(t){return arguments.length?(_=\"function\"==typeof t?t:r(+t),S):_},S.padRadius=function(t){return arguments.length?(w=null==t?null:\"function\"==typeof t?t:r(+t),S):w},S.startAngle=function(t){return arguments.length?(k=\"function\"==typeof t?t:r(+t),S):k},S.endAngle=function(t){return arguments.length?(T=\"function\"==typeof t?t:r(+t),S):T},S.padAngle=function(t){return arguments.length?(A=\"function\"==typeof t?t:r(+t),S):A},S.context=function(t){return arguments.length?(M=null==t?null:t,S):M},S},t.area=M,t.line=A,t.pie=function(){var t=E,e=S,n=null,a=r(0),i=r(p),o=r(0);function s(r){var s,l,c,u,h,f=r.length,d=0,g=new Array(f),v=new Array(f),m=+a.apply(this,arguments),y=Math.min(p,Math.max(-p,i.apply(this,arguments)-m)),x=Math.min(Math.abs(y)/f,o.apply(this,arguments)),b=x*(y<0?-1:1);for(s=0;s<f;++s)(h=v[g[s]=s]=+t(r[s],s,r))>0&&(d+=h);for(null!=e?g.sort(function(t,r){return e(v[t],v[r])}):null!=n&&g.sort(function(t,e){return n(r[t],r[e])}),s=0,c=d?(y-f*b)/d:0;s<f;++s,m=u)l=g[s],u=m+((h=v[l])>0?h*c:0)+b,v[l]={data:r[l],index:s,value:h,startAngle:m,endAngle:u,padAngle:x};return v}return s.value=function(e){return arguments.length?(t=\"function\"==typeof e?e:r(+e),s):t},s.sortValues=function(t){return arguments.length?(e=t,n=null,s):e},s.sort=function(t){return arguments.length?(n=t,e=null,s):n},s.startAngle=function(t){return arguments.length?(a=\"function\"==typeof t?t:r(+t),s):a},s.endAngle=function(t){return arguments.length?(i=\"function\"==typeof t?t:r(+t),s):i},s.padAngle=function(t){return arguments.length?(o=\"function\"==typeof t?t:r(+t),s):o},s},t.areaRadial=z,t.radialArea=z,t.lineRadial=I,t.radialLine=I,t.pointRadial=D,t.linkHorizontal=function(){return N(j)},t.linkVertical=function(){return N(V)},t.linkRadial=function(){var t=N(U);return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t},t.symbol=function(){var t=r(q),n=r(64),a=null;function i(){var r;if(a||(a=r=e.path()),t.apply(this,arguments).draw(a,+n.apply(this,arguments)),r)return a=null,r+\"\"||null}return i.type=function(e){return arguments.length?(t=\"function\"==typeof e?e:r(e),i):t},i.size=function(t){return arguments.length?(n=\"function\"==typeof t?t:r(+t),i):n},i.context=function(t){return arguments.length?(a=null==t?null:t,i):a},i},t.symbols=ot,t.symbolCircle=q,t.symbolCross=H,t.symbolDiamond=W,t.symbolSquare=Q,t.symbolStar=K,t.symbolTriangle=tt,t.symbolWye=it,t.curveBasisClosed=function(t){return new ut(t)},t.curveBasisOpen=function(t){return new ht(t)},t.curveBasis=function(t){return new ct(t)},t.curveBundle=pt,t.curveCardinalClosed=yt,t.curveCardinalOpen=bt,t.curveCardinal=vt,t.curveCatmullRomClosed=At,t.curveCatmullRomOpen=St,t.curveCatmullRom=kt,t.curveLinearClosed=function(t){return new Et(t)},t.curveLinear=w,t.curveMonotoneX=function(t){return new It(t)},t.curveMonotoneY=function(t){return new zt(t)},t.curveNatural=function(t){return new Rt(t)},t.curveStep=function(t){return new Bt(t,.5)},t.curveStepAfter=function(t){return new Bt(t,1)},t.curveStepBefore=function(t){return new Bt(t,0)},t.stack=function(){var t=r([]),e=jt,n=Nt,a=Vt;function i(r){var i,o,s=t.apply(this,arguments),l=r.length,c=s.length,u=new Array(c);for(i=0;i<c;++i){for(var h,f=s[i],p=u[i]=new Array(l),d=0;d<l;++d)p[d]=h=[0,+a(r[d],f,d,r)],h.data=r[d];p.key=f}for(i=0,o=e(u);i<c;++i)u[o[i]].index=i;return n(u,o),u}return i.keys=function(e){return arguments.length?(t=\"function\"==typeof e?e:r(R.call(e)),i):t},i.value=function(t){return arguments.length?(a=\"function\"==typeof t?t:r(+t),i):a},i.order=function(t){return arguments.length?(e=null==t?jt:\"function\"==typeof t?t:r(R.call(t)),i):e},i.offset=function(t){return arguments.length?(n=null==t?Nt:t,i):n},i},t.stackOffsetExpand=function(t,e){if((n=t.length)>0){for(var r,n,a,i=0,o=t[0].length;i<o;++i){for(a=r=0;r<n;++r)a+=t[r][i][1]||0;if(a)for(r=0;r<n;++r)t[r][i][1]/=a}Nt(t,e)}},t.stackOffsetDiverging=function(t,e){if((s=t.length)>1)for(var r,n,a,i,o,s,l=0,c=t[e[0]].length;l<c;++l)for(i=o=0,r=0;r<s;++r)(a=(n=t[e[r]][l])[1]-n[0])>=0?(n[0]=i,n[1]=i+=a):a<0?(n[1]=o,n[0]=o+=a):n[0]=i},t.stackOffsetNone=Nt,t.stackOffsetSilhouette=function(t,e){if((r=t.length)>0){for(var r,n=0,a=t[e[0]],i=a.length;n<i;++n){for(var o=0,s=0;o<r;++o)s+=t[o][n][1]||0;a[n][1]+=a[n][0]=-s/2}Nt(t,e)}},t.stackOffsetWiggle=function(t,e){if((a=t.length)>0&&(n=(r=t[e[0]]).length)>0){for(var r,n,a,i=0,o=1;o<n;++o){for(var s=0,l=0,c=0;s<a;++s){for(var u=t[e[s]],h=u[o][1]||0,f=(h-(u[o-1][1]||0))/2,p=0;p<s;++p){var d=t[e[p]];f+=(d[o][1]||0)-(d[o-1][1]||0)}l+=h,c+=f*h}r[o-1][1]+=r[o-1][0]=i,l&&(i-=c/l)}r[o-1][1]+=r[o-1][0]=i,Nt(t,e)}},t.stackOrderAppearance=Ut,t.stackOrderAscending=Ht,t.stackOrderDescending=function(t){return Ht(t).reverse()},t.stackOrderInsideOut=function(t){var e,r,n=t.length,a=t.map(Gt),i=Ut(t),o=0,s=0,l=[],c=[];for(e=0;e<n;++e)r=i[e],o<s?(o+=a[r],l.push(r)):(s+=a[r],c.push(r));return c.reverse().concat(l)},t.stackOrderNone=jt,t.stackOrderReverse=function(t){return jt(t).reverse()},Object.defineProperty(t,\"__esModule\",{value:!0})},\"object\"==typeof r&&\"undefined\"!=typeof e?a(r,t(\"d3-path\")):a(n.d3=n.d3||{},n.d3)},{\"d3-path\":160}],163:[function(t,e,r){var n;n=this,function(t){\"use strict\";var e,r,n=0,a=0,i=0,o=1e3,s=0,l=0,c=0,u=\"object\"==typeof performance&&performance.now?performance:Date,h=\"object\"==typeof window&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(t){setTimeout(t,17)};function f(){return l||(h(p),l=u.now()+c)}function p(){l=0}function d(){this._call=this._time=this._next=null}function g(t,e,r){var n=new d;return n.restart(t,e,r),n}function v(){f(),++n;for(var t,r=e;r;)(t=l-r._time)>=0&&r._call.call(null,t),r=r._next;--n}function m(){l=(s=u.now())+c,n=a=0;try{v()}finally{n=0,function(){var t,n,a=e,i=1/0;for(;a;)a._call?(i>a._time&&(i=a._time),t=a,a=a._next):(n=a._next,a._next=null,a=t?t._next=n:e=n);r=t,x(i)}(),l=0}}function y(){var t=u.now(),e=t-s;e>o&&(c-=e,s=t)}function x(t){n||(a&&(a=clearTimeout(a)),t-l>24?(t<1/0&&(a=setTimeout(m,t-u.now()-c)),i&&(i=clearInterval(i))):(i||(s=u.now(),i=setInterval(y,o)),n=1,h(m)))}d.prototype=g.prototype={constructor:d,restart:function(t,n,a){if(\"function\"!=typeof t)throw new TypeError(\"callback is not a function\");a=(null==a?f():+a)+(null==n?0:+n),this._next||r===this||(r?r._next=this:e=this,r=this),this._call=t,this._time=a,x()},stop:function(){this._call&&(this._call=null,this._time=1/0,x())}};t.now=f,t.timer=g,t.timerFlush=v,t.timeout=function(t,e,r){var n=new d;return e=null==e?0:+e,n.restart(function(r){n.stop(),t(r+e)},e,r),n},t.interval=function(t,e,r){var n=new d,a=e;return null==e?(n.restart(t,e,r),n):(e=+e,r=null==r?f():+r,n.restart(function i(o){o+=a,n.restart(i,a+=e,r),t(o)},e,r),n)},Object.defineProperty(t,\"__esModule\",{value:!0})}(\"object\"==typeof r&&\"undefined\"!=typeof e?r:n.d3=n.d3||{})},{}],164:[function(t,e,r){!function(){var t={version:\"3.5.17\"},r=[].slice,n=function(t){return r.call(t)},a=this.document;function i(t){return t&&(t.ownerDocument||t.document||t).documentElement}function o(t){return t&&(t.ownerDocument&&t.ownerDocument.defaultView||t.document&&t||t.defaultView)}if(a)try{n(a.documentElement.childNodes)[0].nodeType}catch(t){n=function(t){for(var e=t.length,r=new Array(e);e--;)r[e]=t[e];return r}}if(Date.now||(Date.now=function(){return+new Date}),a)try{a.createElement(\"DIV\").style.setProperty(\"opacity\",0,\"\")}catch(t){var s=this.Element.prototype,l=s.setAttribute,c=s.setAttributeNS,u=this.CSSStyleDeclaration.prototype,h=u.setProperty;s.setAttribute=function(t,e){l.call(this,t,e+\"\")},s.setAttributeNS=function(t,e,r){c.call(this,t,e,r+\"\")},u.setProperty=function(t,e,r){h.call(this,t,e+\"\",r)}}function f(t,e){return t<e?-1:t>e?1:t>=e?0:NaN}function p(t){return null===t?NaN:+t}function d(t){return!isNaN(t)}function g(t){return{left:function(e,r,n,a){for(arguments.length<3&&(n=0),arguments.length<4&&(a=e.length);n<a;){var i=n+a>>>1;t(e[i],r)<0?n=i+1:a=i}return n},right:function(e,r,n,a){for(arguments.length<3&&(n=0),arguments.length<4&&(a=e.length);n<a;){var i=n+a>>>1;t(e[i],r)>0?a=i:n=i+1}return n}}}t.ascending=f,t.descending=function(t,e){return e<t?-1:e>t?1:e>=t?0:NaN},t.min=function(t,e){var r,n,a=-1,i=t.length;if(1===arguments.length){for(;++a<i;)if(null!=(n=t[a])&&n>=n){r=n;break}for(;++a<i;)null!=(n=t[a])&&r>n&&(r=n)}else{for(;++a<i;)if(null!=(n=e.call(t,t[a],a))&&n>=n){r=n;break}for(;++a<i;)null!=(n=e.call(t,t[a],a))&&r>n&&(r=n)}return r},t.max=function(t,e){var r,n,a=-1,i=t.length;if(1===arguments.length){for(;++a<i;)if(null!=(n=t[a])&&n>=n){r=n;break}for(;++a<i;)null!=(n=t[a])&&n>r&&(r=n)}else{for(;++a<i;)if(null!=(n=e.call(t,t[a],a))&&n>=n){r=n;break}for(;++a<i;)null!=(n=e.call(t,t[a],a))&&n>r&&(r=n)}return r},t.extent=function(t,e){var r,n,a,i=-1,o=t.length;if(1===arguments.length){for(;++i<o;)if(null!=(n=t[i])&&n>=n){r=a=n;break}for(;++i<o;)null!=(n=t[i])&&(r>n&&(r=n),a<n&&(a=n))}else{for(;++i<o;)if(null!=(n=e.call(t,t[i],i))&&n>=n){r=a=n;break}for(;++i<o;)null!=(n=e.call(t,t[i],i))&&(r>n&&(r=n),a<n&&(a=n))}return[r,a]},t.sum=function(t,e){var r,n=0,a=t.length,i=-1;if(1===arguments.length)for(;++i<a;)d(r=+t[i])&&(n+=r);else for(;++i<a;)d(r=+e.call(t,t[i],i))&&(n+=r);return n},t.mean=function(t,e){var r,n=0,a=t.length,i=-1,o=a;if(1===arguments.length)for(;++i<a;)d(r=p(t[i]))?n+=r:--o;else for(;++i<a;)d(r=p(e.call(t,t[i],i)))?n+=r:--o;if(o)return n/o},t.quantile=function(t,e){var r=(t.length-1)*e+1,n=Math.floor(r),a=+t[n-1],i=r-n;return i?a+i*(t[n]-a):a},t.median=function(e,r){var n,a=[],i=e.length,o=-1;if(1===arguments.length)for(;++o<i;)d(n=p(e[o]))&&a.push(n);else for(;++o<i;)d(n=p(r.call(e,e[o],o)))&&a.push(n);if(a.length)return t.quantile(a.sort(f),.5)},t.variance=function(t,e){var r,n,a=t.length,i=0,o=0,s=-1,l=0;if(1===arguments.length)for(;++s<a;)d(r=p(t[s]))&&(o+=(n=r-i)*(r-(i+=n/++l)));else for(;++s<a;)d(r=p(e.call(t,t[s],s)))&&(o+=(n=r-i)*(r-(i+=n/++l)));if(l>1)return o/(l-1)},t.deviation=function(){var e=t.variance.apply(this,arguments);return e?Math.sqrt(e):e};var v=g(f);function m(t){return t.length}t.bisectLeft=v.left,t.bisect=t.bisectRight=v.right,t.bisector=function(t){return g(1===t.length?function(e,r){return f(t(e),r)}:t)},t.shuffle=function(t,e,r){(i=arguments.length)<3&&(r=t.length,i<2&&(e=0));for(var n,a,i=r-e;i;)a=Math.random()*i--|0,n=t[i+e],t[i+e]=t[a+e],t[a+e]=n;return t},t.permute=function(t,e){for(var r=e.length,n=new Array(r);r--;)n[r]=t[e[r]];return n},t.pairs=function(t){for(var e=0,r=t.length-1,n=t[0],a=new Array(r<0?0:r);e<r;)a[e]=[n,n=t[++e]];return a},t.transpose=function(e){if(!(i=e.length))return[];for(var r=-1,n=t.min(e,m),a=new Array(n);++r<n;)for(var i,o=-1,s=a[r]=new Array(i);++o<i;)s[o]=e[o][r];return a},t.zip=function(){return t.transpose(arguments)},t.keys=function(t){var e=[];for(var r in t)e.push(r);return e},t.values=function(t){var e=[];for(var r in t)e.push(t[r]);return e},t.entries=function(t){var e=[];for(var r in t)e.push({key:r,value:t[r]});return e},t.merge=function(t){for(var e,r,n,a=t.length,i=-1,o=0;++i<a;)o+=t[i].length;for(r=new Array(o);--a>=0;)for(e=(n=t[a]).length;--e>=0;)r[--o]=n[e];return r};var y=Math.abs;function x(t,e){for(var r in e)Object.defineProperty(t.prototype,r,{value:e[r],enumerable:!1})}function b(){this._=Object.create(null)}t.range=function(t,e,r){if(arguments.length<3&&(r=1,arguments.length<2&&(e=t,t=0)),(e-t)/r==1/0)throw new Error(\"infinite range\");var n,a=[],i=function(t){var e=1;for(;t*e%1;)e*=10;return e}(y(r)),o=-1;if(t*=i,e*=i,(r*=i)<0)for(;(n=t+r*++o)>e;)a.push(n/i);else for(;(n=t+r*++o)<e;)a.push(n/i);return a},t.map=function(t,e){var r=new b;if(t instanceof b)t.forEach(function(t,e){r.set(t,e)});else if(Array.isArray(t)){var n,a=-1,i=t.length;if(1===arguments.length)for(;++a<i;)r.set(a,t[a]);else for(;++a<i;)r.set(e.call(t,n=t[a],a),n)}else for(var o in t)r.set(o,t[o]);return r};var _=\"__proto__\",w=\"\\0\";function k(t){return(t+=\"\")===_||t[0]===w?w+t:t}function T(t){return(t+=\"\")[0]===w?t.slice(1):t}function A(t){return k(t)in this._}function M(t){return(t=k(t))in this._&&delete this._[t]}function S(){var t=[];for(var e in this._)t.push(T(e));return t}function E(){var t=0;for(var e in this._)++t;return t}function C(){for(var t in this._)return!1;return!0}function L(){this._=Object.create(null)}function P(t){return t}function O(t,e,r){return function(){var n=r.apply(e,arguments);return n===e?t:n}}function I(t,e){if(e in t)return e;e=e.charAt(0).toUpperCase()+e.slice(1);for(var r=0,n=z.length;r<n;++r){var a=z[r]+e;if(a in t)return a}}x(b,{has:A,get:function(t){return this._[k(t)]},set:function(t,e){return this._[k(t)]=e},remove:M,keys:S,values:function(){var t=[];for(var e in this._)t.push(this._[e]);return t},entries:function(){var t=[];for(var e in this._)t.push({key:T(e),value:this._[e]});return t},size:E,empty:C,forEach:function(t){for(var e in this._)t.call(this,T(e),this._[e])}}),t.nest=function(){var e,r,n={},a=[],i=[];function o(t,i,s){if(s>=a.length)return r?r.call(n,i):e?i.sort(e):i;for(var l,c,u,h,f=-1,p=i.length,d=a[s++],g=new b;++f<p;)(h=g.get(l=d(c=i[f])))?h.push(c):g.set(l,[c]);return t?(c=t(),u=function(e,r){c.set(e,o(t,r,s))}):(c={},u=function(e,r){c[e]=o(t,r,s)}),g.forEach(u),c}return n.map=function(t,e){return o(e,t,0)},n.entries=function(e){return function t(e,r){if(r>=a.length)return e;var n=[],o=i[r++];return e.forEach(function(e,a){n.push({key:e,values:t(a,r)})}),o?n.sort(function(t,e){return o(t.key,e.key)}):n}(o(t.map,e,0),0)},n.key=function(t){return a.push(t),n},n.sortKeys=function(t){return i[a.length-1]=t,n},n.sortValues=function(t){return e=t,n},n.rollup=function(t){return r=t,n},n},t.set=function(t){var e=new L;if(t)for(var r=0,n=t.length;r<n;++r)e.add(t[r]);return e},x(L,{has:A,add:function(t){return this._[k(t+=\"\")]=!0,t},remove:M,values:S,size:E,empty:C,forEach:function(t){for(var e in this._)t.call(this,T(e))}}),t.behavior={},t.rebind=function(t,e){for(var r,n=1,a=arguments.length;++n<a;)t[r=arguments[n]]=O(t,e,e[r]);return t};var z=[\"webkit\",\"ms\",\"moz\",\"Moz\",\"o\",\"O\"];function D(){}function R(){}function F(t){var e=[],r=new b;function n(){for(var r,n=e,a=-1,i=n.length;++a<i;)(r=n[a].on)&&r.apply(this,arguments);return t}return n.on=function(n,a){var i,o=r.get(n);return arguments.length<2?o&&o.on:(o&&(o.on=null,e=e.slice(0,i=e.indexOf(o)).concat(e.slice(i+1)),r.remove(n)),a&&e.push(r.set(n,{on:a})),t)},n}function B(){t.event.preventDefault()}function N(){for(var e,r=t.event;e=r.sourceEvent;)r=e;return r}function j(e){for(var r=new R,n=0,a=arguments.length;++n<a;)r[arguments[n]]=F(r);return r.of=function(n,a){return function(i){try{var o=i.sourceEvent=t.event;i.target=e,t.event=i,r[i.type].apply(n,a)}finally{t.event=o}}},r}t.dispatch=function(){for(var t=new R,e=-1,r=arguments.length;++e<r;)t[arguments[e]]=F(t);return t},R.prototype.on=function(t,e){var r=t.indexOf(\".\"),n=\"\";if(r>=0&&(n=t.slice(r+1),t=t.slice(0,r)),t)return arguments.length<2?this[t].on(n):this[t].on(n,e);if(2===arguments.length){if(null==e)for(t in this)this.hasOwnProperty(t)&&this[t].on(n,null);return this}},t.event=null,t.requote=function(t){return t.replace(V,\"\\\\$&\")};var V=/[\\\\\\^\\$\\*\\+\\?\\|\\[\\]\\(\\)\\.\\{\\}]/g,U={}.__proto__?function(t,e){t.__proto__=e}:function(t,e){for(var r in e)t[r]=e[r]};function q(t){return U(t,W),t}var H=function(t,e){return e.querySelector(t)},G=function(t,e){return e.querySelectorAll(t)},Y=function(t,e){var r=t.matches||t[I(t,\"matchesSelector\")];return(Y=function(t,e){return r.call(t,e)})(t,e)};\"function\"==typeof Sizzle&&(H=function(t,e){return Sizzle(t,e)[0]||null},G=Sizzle,Y=Sizzle.matchesSelector),t.selection=function(){return t.select(a.documentElement)};var W=t.selection.prototype=[];function X(t){return\"function\"==typeof t?t:function(){return H(t,this)}}function Z(t){return\"function\"==typeof t?t:function(){return G(t,this)}}W.select=function(t){var e,r,n,a,i=[];t=X(t);for(var o=-1,s=this.length;++o<s;){i.push(e=[]),e.parentNode=(n=this[o]).parentNode;for(var l=-1,c=n.length;++l<c;)(a=n[l])?(e.push(r=t.call(a,a.__data__,l,o)),r&&\"__data__\"in a&&(r.__data__=a.__data__)):e.push(null)}return q(i)},W.selectAll=function(t){var e,r,a=[];t=Z(t);for(var i=-1,o=this.length;++i<o;)for(var s=this[i],l=-1,c=s.length;++l<c;)(r=s[l])&&(a.push(e=n(t.call(r,r.__data__,l,i))),e.parentNode=r);return q(a)};var J=\"http://www.w3.org/1999/xhtml\",K={svg:\"http://www.w3.org/2000/svg\",xhtml:J,xlink:\"http://www.w3.org/1999/xlink\",xml:\"http://www.w3.org/XML/1998/namespace\",xmlns:\"http://www.w3.org/2000/xmlns/\"};function Q(e,r){return e=t.ns.qualify(e),null==r?e.local?function(){this.removeAttributeNS(e.space,e.local)}:function(){this.removeAttribute(e)}:\"function\"==typeof r?e.local?function(){var t=r.apply(this,arguments);null==t?this.removeAttributeNS(e.space,e.local):this.setAttributeNS(e.space,e.local,t)}:function(){var t=r.apply(this,arguments);null==t?this.removeAttribute(e):this.setAttribute(e,t)}:e.local?function(){this.setAttributeNS(e.space,e.local,r)}:function(){this.setAttribute(e,r)}}function $(t){return t.trim().replace(/\\s+/g,\" \")}function tt(e){return new RegExp(\"(?:^|\\\\s+)\"+t.requote(e)+\"(?:\\\\s+|$)\",\"g\")}function et(t){return(t+\"\").trim().split(/^|\\s+/)}function rt(t,e){var r=(t=et(t).map(nt)).length;return\"function\"==typeof e?function(){for(var n=-1,a=e.apply(this,arguments);++n<r;)t[n](this,a)}:function(){for(var n=-1;++n<r;)t[n](this,e)}}function nt(t){var e=tt(t);return function(r,n){if(a=r.classList)return n?a.add(t):a.remove(t);var a=r.getAttribute(\"class\")||\"\";n?(e.lastIndex=0,e.test(a)||r.setAttribute(\"class\",$(a+\" \"+t))):r.setAttribute(\"class\",$(a.replace(e,\" \")))}}function at(t,e,r){return null==e?function(){this.style.removeProperty(t)}:\"function\"==typeof e?function(){var n=e.apply(this,arguments);null==n?this.style.removeProperty(t):this.style.setProperty(t,n,r)}:function(){this.style.setProperty(t,e,r)}}function it(t,e){return null==e?function(){delete this[t]}:\"function\"==typeof e?function(){var r=e.apply(this,arguments);null==r?delete this[t]:this[t]=r}:function(){this[t]=e}}function ot(e){return\"function\"==typeof e?e:(e=t.ns.qualify(e)).local?function(){return this.ownerDocument.createElementNS(e.space,e.local)}:function(){var t=this.ownerDocument,r=this.namespaceURI;return r===J&&t.documentElement.namespaceURI===J?t.createElement(e):t.createElementNS(r,e)}}function st(){var t=this.parentNode;t&&t.removeChild(this)}function lt(t){return{__data__:t}}function ct(t){return function(){return Y(this,t)}}function ut(t,e){for(var r=0,n=t.length;r<n;r++)for(var a,i=t[r],o=0,s=i.length;o<s;o++)(a=i[o])&&e(a,o,r);return t}function ht(t){return U(t,ft),t}t.ns={prefix:K,qualify:function(t){var e=t.indexOf(\":\"),r=t;return e>=0&&\"xmlns\"!==(r=t.slice(0,e))&&(t=t.slice(e+1)),K.hasOwnProperty(r)?{space:K[r],local:t}:t}},W.attr=function(e,r){if(arguments.length<2){if(\"string\"==typeof e){var n=this.node();return(e=t.ns.qualify(e)).local?n.getAttributeNS(e.space,e.local):n.getAttribute(e)}for(r in e)this.each(Q(r,e[r]));return this}return this.each(Q(e,r))},W.classed=function(t,e){if(arguments.length<2){if(\"string\"==typeof t){var r=this.node(),n=(t=et(t)).length,a=-1;if(e=r.classList){for(;++a<n;)if(!e.contains(t[a]))return!1}else for(e=r.getAttribute(\"class\");++a<n;)if(!tt(t[a]).test(e))return!1;return!0}for(e in t)this.each(rt(e,t[e]));return this}return this.each(rt(t,e))},W.style=function(t,e,r){var n=arguments.length;if(n<3){if(\"string\"!=typeof t){for(r in n<2&&(e=\"\"),t)this.each(at(r,t[r],e));return this}if(n<2){var a=this.node();return o(a).getComputedStyle(a,null).getPropertyValue(t)}r=\"\"}return this.each(at(t,e,r))},W.property=function(t,e){if(arguments.length<2){if(\"string\"==typeof t)return this.node()[t];for(e in t)this.each(it(e,t[e]));return this}return this.each(it(t,e))},W.text=function(t){return arguments.length?this.each(\"function\"==typeof t?function(){var e=t.apply(this,arguments);this.textContent=null==e?\"\":e}:null==t?function(){this.textContent=\"\"}:function(){this.textContent=t}):this.node().textContent},W.html=function(t){return arguments.length?this.each(\"function\"==typeof t?function(){var e=t.apply(this,arguments);this.innerHTML=null==e?\"\":e}:null==t?function(){this.innerHTML=\"\"}:function(){this.innerHTML=t}):this.node().innerHTML},W.append=function(t){return t=ot(t),this.select(function(){return this.appendChild(t.apply(this,arguments))})},W.insert=function(t,e){return t=ot(t),e=X(e),this.select(function(){return this.insertBefore(t.apply(this,arguments),e.apply(this,arguments)||null)})},W.remove=function(){return this.each(st)},W.data=function(t,e){var r,n,a=-1,i=this.length;if(!arguments.length){for(t=new Array(i=(r=this[0]).length);++a<i;)(n=r[a])&&(t[a]=n.__data__);return t}function o(t,r){var n,a,i,o=t.length,u=r.length,h=Math.min(o,u),f=new Array(u),p=new Array(u),d=new Array(o);if(e){var g,v=new b,m=new Array(o);for(n=-1;++n<o;)(a=t[n])&&(v.has(g=e.call(a,a.__data__,n))?d[n]=a:v.set(g,a),m[n]=g);for(n=-1;++n<u;)(a=v.get(g=e.call(r,i=r[n],n)))?!0!==a&&(f[n]=a,a.__data__=i):p[n]=lt(i),v.set(g,!0);for(n=-1;++n<o;)n in m&&!0!==v.get(m[n])&&(d[n]=t[n])}else{for(n=-1;++n<h;)a=t[n],i=r[n],a?(a.__data__=i,f[n]=a):p[n]=lt(i);for(;n<u;++n)p[n]=lt(r[n]);for(;n<o;++n)d[n]=t[n]}p.update=f,p.parentNode=f.parentNode=d.parentNode=t.parentNode,s.push(p),l.push(f),c.push(d)}var s=ht([]),l=q([]),c=q([]);if(\"function\"==typeof t)for(;++a<i;)o(r=this[a],t.call(r,r.parentNode.__data__,a));else for(;++a<i;)o(r=this[a],t);return l.enter=function(){return s},l.exit=function(){return c},l},W.datum=function(t){return arguments.length?this.property(\"__data__\",t):this.property(\"__data__\")},W.filter=function(t){var e,r,n,a=[];\"function\"!=typeof t&&(t=ct(t));for(var i=0,o=this.length;i<o;i++){a.push(e=[]),e.parentNode=(r=this[i]).parentNode;for(var s=0,l=r.length;s<l;s++)(n=r[s])&&t.call(n,n.__data__,s,i)&&e.push(n)}return q(a)},W.order=function(){for(var t=-1,e=this.length;++t<e;)for(var r,n=this[t],a=n.length-1,i=n[a];--a>=0;)(r=n[a])&&(i&&i!==r.nextSibling&&i.parentNode.insertBefore(r,i),i=r);return this},W.sort=function(t){t=function(t){arguments.length||(t=f);return function(e,r){return e&&r?t(e.__data__,r.__data__):!e-!r}}.apply(this,arguments);for(var e=-1,r=this.length;++e<r;)this[e].sort(t);return this.order()},W.each=function(t){return ut(this,function(e,r,n){t.call(e,e.__data__,r,n)})},W.call=function(t){var e=n(arguments);return t.apply(e[0]=this,e),this},W.empty=function(){return!this.node()},W.node=function(){for(var t=0,e=this.length;t<e;t++)for(var r=this[t],n=0,a=r.length;n<a;n++){var i=r[n];if(i)return i}return null},W.size=function(){var t=0;return ut(this,function(){++t}),t};var ft=[];function pt(e,r,a){var i=\"__on\"+e,o=e.indexOf(\".\"),s=gt;o>0&&(e=e.slice(0,o));var l=dt.get(e);function c(){var t=this[i];t&&(this.removeEventListener(e,t,t.$),delete this[i])}return l&&(e=l,s=vt),o?r?function(){var t=s(r,n(arguments));c.call(this),this.addEventListener(e,this[i]=t,t.$=a),t._=r}:c:r?D:function(){var r,n=new RegExp(\"^__on([^.]+)\"+t.requote(e)+\"$\");for(var a in this)if(r=a.match(n)){var i=this[a];this.removeEventListener(r[1],i,i.$),delete this[a]}}}t.selection.enter=ht,t.selection.enter.prototype=ft,ft.append=W.append,ft.empty=W.empty,ft.node=W.node,ft.call=W.call,ft.size=W.size,ft.select=function(t){for(var e,r,n,a,i,o=[],s=-1,l=this.length;++s<l;){n=(a=this[s]).update,o.push(e=[]),e.parentNode=a.parentNode;for(var c=-1,u=a.length;++c<u;)(i=a[c])?(e.push(n[c]=r=t.call(a.parentNode,i.__data__,c,s)),r.__data__=i.__data__):e.push(null)}return q(o)},ft.insert=function(t,e){var r,n,a;return arguments.length<2&&(r=this,e=function(t,e,i){var o,s=r[i].update,l=s.length;for(i!=a&&(a=i,n=0),e>=n&&(n=e+1);!(o=s[n])&&++n<l;);return o}),W.insert.call(this,t,e)},t.select=function(t){var e;return\"string\"==typeof t?(e=[H(t,a)]).parentNode=a.documentElement:(e=[t]).parentNode=i(t),q([e])},t.selectAll=function(t){var e;return\"string\"==typeof t?(e=n(G(t,a))).parentNode=a.documentElement:(e=n(t)).parentNode=null,q([e])},W.on=function(t,e,r){var n=arguments.length;if(n<3){if(\"string\"!=typeof t){for(r in n<2&&(e=!1),t)this.each(pt(r,t[r],e));return this}if(n<2)return(n=this.node()[\"__on\"+t])&&n._;r=!1}return this.each(pt(t,e,r))};var dt=t.map({mouseenter:\"mouseover\",mouseleave:\"mouseout\"});function gt(e,r){return function(n){var a=t.event;t.event=n,r[0]=this.__data__;try{e.apply(this,r)}finally{t.event=a}}}function vt(t,e){var r=gt(t,e);return function(t){var e=t.relatedTarget;e&&(e===this||8&e.compareDocumentPosition(this))||r.call(this,t)}}a&&dt.forEach(function(t){\"on\"+t in a&&dt.remove(t)});var mt,yt=0;function xt(e){var r=\".dragsuppress-\"+ ++yt,n=\"click\"+r,a=t.select(o(e)).on(\"touchmove\"+r,B).on(\"dragstart\"+r,B).on(\"selectstart\"+r,B);if(null==mt&&(mt=!(\"onselectstart\"in e)&&I(e.style,\"userSelect\")),mt){var s=i(e).style,l=s[mt];s[mt]=\"none\"}return function(t){if(a.on(r,null),mt&&(s[mt]=l),t){var e=function(){a.on(n,null)};a.on(n,function(){B(),e()},!0),setTimeout(e,0)}}}t.mouse=function(t){return _t(t,N())};var bt=this.navigator&&/WebKit/.test(this.navigator.userAgent)?-1:0;function _t(e,r){r.changedTouches&&(r=r.changedTouches[0]);var n=e.ownerSVGElement||e;if(n.createSVGPoint){var a=n.createSVGPoint();if(bt<0){var i=o(e);if(i.scrollX||i.scrollY){var s=(n=t.select(\"body\").append(\"svg\").style({position:\"absolute\",top:0,left:0,margin:0,padding:0,border:\"none\"},\"important\"))[0][0].getScreenCTM();bt=!(s.f||s.e),n.remove()}}return bt?(a.x=r.pageX,a.y=r.pageY):(a.x=r.clientX,a.y=r.clientY),[(a=a.matrixTransform(e.getScreenCTM().inverse())).x,a.y]}var l=e.getBoundingClientRect();return[r.clientX-l.left-e.clientLeft,r.clientY-l.top-e.clientTop]}function wt(){return t.event.changedTouches[0].identifier}t.touch=function(t,e,r){if(arguments.length<3&&(r=e,e=N().changedTouches),e)for(var n,a=0,i=e.length;a<i;++a)if((n=e[a]).identifier===r)return _t(t,n)},t.behavior.drag=function(){var e=j(i,\"drag\",\"dragstart\",\"dragend\"),r=null,n=s(D,t.mouse,o,\"mousemove\",\"mouseup\"),a=s(wt,t.touch,P,\"touchmove\",\"touchend\");function i(){this.on(\"mousedown.drag\",n).on(\"touchstart.drag\",a)}function s(n,a,i,o,s){return function(){var l,c=t.event.target.correspondingElement||t.event.target,u=this.parentNode,h=e.of(this,arguments),f=0,p=n(),d=\".drag\"+(null==p?\"\":\"-\"+p),g=t.select(i(c)).on(o+d,function(){var t,e,r=a(u,p);if(!r)return;t=r[0]-m[0],e=r[1]-m[1],f|=t|e,m=r,h({type:\"drag\",x:r[0]+l[0],y:r[1]+l[1],dx:t,dy:e})}).on(s+d,function(){if(!a(u,p))return;g.on(o+d,null).on(s+d,null),v(f),h({type:\"dragend\"})}),v=xt(c),m=a(u,p);l=r?[(l=r.apply(this,arguments)).x-m[0],l.y-m[1]]:[0,0],h({type:\"dragstart\"})}}return i.origin=function(t){return arguments.length?(r=t,i):r},t.rebind(i,e,\"on\")},t.touches=function(t,e){return arguments.length<2&&(e=N().touches),e?n(e).map(function(e){var r=_t(t,e);return r.identifier=e.identifier,r}):[]};var kt=1e-6,Tt=kt*kt,At=Math.PI,Mt=2*At,St=Mt-kt,Et=At/2,Ct=At/180,Lt=180/At;function Pt(t){return t>0?1:t<0?-1:0}function Ot(t,e,r){return(e[0]-t[0])*(r[1]-t[1])-(e[1]-t[1])*(r[0]-t[0])}function It(t){return t>1?0:t<-1?At:Math.acos(t)}function zt(t){return t>1?Et:t<-1?-Et:Math.asin(t)}function Dt(t){return((t=Math.exp(t))+1/t)/2}function Rt(t){return(t=Math.sin(t/2))*t}var Ft=Math.SQRT2;t.interpolateZoom=function(t,e){var r,n,a=t[0],i=t[1],o=t[2],s=e[0],l=e[1],c=e[2],u=s-a,h=l-i,f=u*u+h*h;if(f<Tt)n=Math.log(c/o)/Ft,r=function(t){return[a+t*u,i+t*h,o*Math.exp(Ft*t*n)]};else{var p=Math.sqrt(f),d=(c*c-o*o+4*f)/(2*o*2*p),g=(c*c-o*o-4*f)/(2*c*2*p),v=Math.log(Math.sqrt(d*d+1)-d),m=Math.log(Math.sqrt(g*g+1)-g);n=(m-v)/Ft,r=function(t){var e,r=t*n,s=Dt(v),l=o/(2*p)*(s*(e=Ft*r+v,((e=Math.exp(2*e))-1)/(e+1))-function(t){return((t=Math.exp(t))-1/t)/2}(v));return[a+l*u,i+l*h,o*s/Dt(Ft*r+v)]}}return r.duration=1e3*n,r},t.behavior.zoom=function(){var e,r,n,i,s,l,c,u,h,f={x:0,y:0,k:1},p=[960,500],d=jt,g=250,v=0,m=\"mousedown.zoom\",y=\"mousemove.zoom\",x=\"mouseup.zoom\",b=\"touchstart.zoom\",_=j(w,\"zoomstart\",\"zoom\",\"zoomend\");function w(t){t.on(m,P).on(Nt+\".zoom\",I).on(\"dblclick.zoom\",z).on(b,O)}function k(t){return[(t[0]-f.x)/f.k,(t[1]-f.y)/f.k]}function T(t){f.k=Math.max(d[0],Math.min(d[1],t))}function A(t,e){e=function(t){return[t[0]*f.k+f.x,t[1]*f.k+f.y]}(e),f.x+=t[0]-e[0],f.y+=t[1]-e[1]}function M(e,n,a,i){e.__chart__={x:f.x,y:f.y,k:f.k},T(Math.pow(2,i)),A(r=n,a),e=t.select(e),g>0&&(e=e.transition().duration(g)),e.call(w.event)}function S(){c&&c.domain(l.range().map(function(t){return(t-f.x)/f.k}).map(l.invert)),h&&h.domain(u.range().map(function(t){return(t-f.y)/f.k}).map(u.invert))}function E(t){v++||t({type:\"zoomstart\"})}function C(t){S(),t({type:\"zoom\",scale:f.k,translate:[f.x,f.y]})}function L(t){--v||(t({type:\"zoomend\"}),r=null)}function P(){var e=this,r=_.of(e,arguments),n=0,a=t.select(o(e)).on(y,function(){n=1,A(t.mouse(e),i),C(r)}).on(x,function(){a.on(y,null).on(x,null),s(n),L(r)}),i=k(t.mouse(e)),s=xt(e);hs.call(e),E(r)}function O(){var e,r=this,n=_.of(r,arguments),a={},i=0,o=\".zoom-\"+t.event.changedTouches[0].identifier,l=\"touchmove\"+o,c=\"touchend\"+o,u=[],h=t.select(r),p=xt(r);function d(){var n=t.touches(r);return e=f.k,n.forEach(function(t){t.identifier in a&&(a[t.identifier]=k(t))}),n}function g(){var e=t.event.target;t.select(e).on(l,v).on(c,y),u.push(e);for(var n=t.event.changedTouches,o=0,h=n.length;o<h;++o)a[n[o].identifier]=null;var p=d(),g=Date.now();if(1===p.length){if(g-s<500){var m=p[0];M(r,m,a[m.identifier],Math.floor(Math.log(f.k)/Math.LN2)+1),B()}s=g}else if(p.length>1){m=p[0];var x=p[1],b=m[0]-x[0],_=m[1]-x[1];i=b*b+_*_}}function v(){var o,l,c,u,h=t.touches(r);hs.call(r);for(var f=0,p=h.length;f<p;++f,u=null)if(c=h[f],u=a[c.identifier]){if(l)break;o=c,l=u}if(u){var d=(d=c[0]-o[0])*d+(d=c[1]-o[1])*d,g=i&&Math.sqrt(d/i);o=[(o[0]+c[0])/2,(o[1]+c[1])/2],l=[(l[0]+u[0])/2,(l[1]+u[1])/2],T(g*e)}s=null,A(o,l),C(n)}function y(){if(t.event.touches.length){for(var e=t.event.changedTouches,r=0,i=e.length;r<i;++r)delete a[e[r].identifier];for(var s in a)return void d()}t.selectAll(u).on(o,null),h.on(m,P).on(b,O),p(),L(n)}g(),E(n),h.on(m,null).on(b,g)}function I(){var a=_.of(this,arguments);i?clearTimeout(i):(hs.call(this),e=k(r=n||t.mouse(this)),E(a)),i=setTimeout(function(){i=null,L(a)},50),B(),T(Math.pow(2,.002*Bt())*f.k),A(r,e),C(a)}function z(){var e=t.mouse(this),r=Math.log(f.k)/Math.LN2;M(this,e,k(e),t.event.shiftKey?Math.ceil(r)-1:Math.floor(r)+1)}return Nt||(Nt=\"onwheel\"in a?(Bt=function(){return-t.event.deltaY*(t.event.deltaMode?120:1)},\"wheel\"):\"onmousewheel\"in a?(Bt=function(){return t.event.wheelDelta},\"mousewheel\"):(Bt=function(){return-t.event.detail},\"MozMousePixelScroll\")),w.event=function(e){e.each(function(){var e=_.of(this,arguments),n=f;ds?t.select(this).transition().each(\"start.zoom\",function(){f=this.__chart__||{x:0,y:0,k:1},E(e)}).tween(\"zoom:zoom\",function(){var a=p[0],i=p[1],o=r?r[0]:a/2,s=r?r[1]:i/2,l=t.interpolateZoom([(o-f.x)/f.k,(s-f.y)/f.k,a/f.k],[(o-n.x)/n.k,(s-n.y)/n.k,a/n.k]);return function(t){var r=l(t),n=a/r[2];this.__chart__=f={x:o-r[0]*n,y:s-r[1]*n,k:n},C(e)}}).each(\"interrupt.zoom\",function(){L(e)}).each(\"end.zoom\",function(){L(e)}):(this.__chart__=f,E(e),C(e),L(e))})},w.translate=function(t){return arguments.length?(f={x:+t[0],y:+t[1],k:f.k},S(),w):[f.x,f.y]},w.scale=function(t){return arguments.length?(f={x:f.x,y:f.y,k:null},T(+t),S(),w):f.k},w.scaleExtent=function(t){return arguments.length?(d=null==t?jt:[+t[0],+t[1]],w):d},w.center=function(t){return arguments.length?(n=t&&[+t[0],+t[1]],w):n},w.size=function(t){return arguments.length?(p=t&&[+t[0],+t[1]],w):p},w.duration=function(t){return arguments.length?(g=+t,w):g},w.x=function(t){return arguments.length?(c=t,l=t.copy(),f={x:0,y:0,k:1},w):c},w.y=function(t){return arguments.length?(h=t,u=t.copy(),f={x:0,y:0,k:1},w):h},t.rebind(w,_,\"on\")};var Bt,Nt,jt=[0,1/0];function Vt(){}function Ut(t,e,r){return this instanceof Ut?(this.h=+t,this.s=+e,void(this.l=+r)):arguments.length<2?t instanceof Ut?new Ut(t.h,t.s,t.l):ue(\"\"+t,he,Ut):new Ut(t,e,r)}t.color=Vt,Vt.prototype.toString=function(){return this.rgb()+\"\"},t.hsl=Ut;var qt=Ut.prototype=new Vt;function Ht(t,e,r){var n,a;function i(t){return Math.round(255*function(t){return t>360?t-=360:t<0&&(t+=360),t<60?n+(a-n)*t/60:t<180?a:t<240?n+(a-n)*(240-t)/60:n}(t))}return t=isNaN(t)?0:(t%=360)<0?t+360:t,e=isNaN(e)?0:e<0?0:e>1?1:e,n=2*(r=r<0?0:r>1?1:r)-(a=r<=.5?r*(1+e):r+e-r*e),new ie(i(t+120),i(t),i(t-120))}function Gt(e,r,n){return this instanceof Gt?(this.h=+e,this.c=+r,void(this.l=+n)):arguments.length<2?e instanceof Gt?new Gt(e.h,e.c,e.l):ee(e instanceof Xt?e.l:(e=fe((e=t.rgb(e)).r,e.g,e.b)).l,e.a,e.b):new Gt(e,r,n)}qt.brighter=function(t){return t=Math.pow(.7,arguments.length?t:1),new Ut(this.h,this.s,this.l/t)},qt.darker=function(t){return t=Math.pow(.7,arguments.length?t:1),new Ut(this.h,this.s,t*this.l)},qt.rgb=function(){return Ht(this.h,this.s,this.l)},t.hcl=Gt;var Yt=Gt.prototype=new Vt;function Wt(t,e,r){return isNaN(t)&&(t=0),isNaN(e)&&(e=0),new Xt(r,Math.cos(t*=Ct)*e,Math.sin(t)*e)}function Xt(t,e,r){return this instanceof Xt?(this.l=+t,this.a=+e,void(this.b=+r)):arguments.length<2?t instanceof Xt?new Xt(t.l,t.a,t.b):t instanceof Gt?Wt(t.h,t.c,t.l):fe((t=ie(t)).r,t.g,t.b):new Xt(t,e,r)}Yt.brighter=function(t){return new Gt(this.h,this.c,Math.min(100,this.l+Zt*(arguments.length?t:1)))},Yt.darker=function(t){return new Gt(this.h,this.c,Math.max(0,this.l-Zt*(arguments.length?t:1)))},Yt.rgb=function(){return Wt(this.h,this.c,this.l).rgb()},t.lab=Xt;var Zt=18,Jt=.95047,Kt=1,Qt=1.08883,$t=Xt.prototype=new Vt;function te(t,e,r){var n=(t+16)/116,a=n+e/500,i=n-r/200;return new ie(ae(3.2404542*(a=re(a)*Jt)-1.5371385*(n=re(n)*Kt)-.4985314*(i=re(i)*Qt)),ae(-.969266*a+1.8760108*n+.041556*i),ae(.0556434*a-.2040259*n+1.0572252*i))}function ee(t,e,r){return t>0?new Gt(Math.atan2(r,e)*Lt,Math.sqrt(e*e+r*r),t):new Gt(NaN,NaN,t)}function re(t){return t>.206893034?t*t*t:(t-4/29)/7.787037}function ne(t){return t>.008856?Math.pow(t,1/3):7.787037*t+4/29}function ae(t){return Math.round(255*(t<=.00304?12.92*t:1.055*Math.pow(t,1/2.4)-.055))}function ie(t,e,r){return this instanceof ie?(this.r=~~t,this.g=~~e,void(this.b=~~r)):arguments.length<2?t instanceof ie?new ie(t.r,t.g,t.b):ue(\"\"+t,ie,Ht):new ie(t,e,r)}function oe(t){return new ie(t>>16,t>>8&255,255&t)}function se(t){return oe(t)+\"\"}$t.brighter=function(t){return new Xt(Math.min(100,this.l+Zt*(arguments.length?t:1)),this.a,this.b)},$t.darker=function(t){return new Xt(Math.max(0,this.l-Zt*(arguments.length?t:1)),this.a,this.b)},$t.rgb=function(){return te(this.l,this.a,this.b)},t.rgb=ie;var le=ie.prototype=new Vt;function ce(t){return t<16?\"0\"+Math.max(0,t).toString(16):Math.min(255,t).toString(16)}function ue(t,e,r){var n,a,i,o=0,s=0,l=0;if(n=/([a-z]+)\\((.*)\\)/.exec(t=t.toLowerCase()))switch(a=n[2].split(\",\"),n[1]){case\"hsl\":return r(parseFloat(a[0]),parseFloat(a[1])/100,parseFloat(a[2])/100);case\"rgb\":return e(de(a[0]),de(a[1]),de(a[2]))}return(i=ge.get(t))?e(i.r,i.g,i.b):(null==t||\"#\"!==t.charAt(0)||isNaN(i=parseInt(t.slice(1),16))||(4===t.length?(o=(3840&i)>>4,o|=o>>4,s=240&i,s|=s>>4,l=15&i,l|=l<<4):7===t.length&&(o=(16711680&i)>>16,s=(65280&i)>>8,l=255&i)),e(o,s,l))}function he(t,e,r){var n,a,i=Math.min(t/=255,e/=255,r/=255),o=Math.max(t,e,r),s=o-i,l=(o+i)/2;return s?(a=l<.5?s/(o+i):s/(2-o-i),n=t==o?(e-r)/s+(e<r?6:0):e==o?(r-t)/s+2:(t-e)/s+4,n*=60):(n=NaN,a=l>0&&l<1?0:n),new Ut(n,a,l)}function fe(t,e,r){var n=ne((.4124564*(t=pe(t))+.3575761*(e=pe(e))+.1804375*(r=pe(r)))/Jt),a=ne((.2126729*t+.7151522*e+.072175*r)/Kt);return Xt(116*a-16,500*(n-a),200*(a-ne((.0193339*t+.119192*e+.9503041*r)/Qt)))}function pe(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function de(t){var e=parseFloat(t);return\"%\"===t.charAt(t.length-1)?Math.round(2.55*e):e}le.brighter=function(t){t=Math.pow(.7,arguments.length?t:1);var e=this.r,r=this.g,n=this.b,a=30;return e||r||n?(e&&e<a&&(e=a),r&&r<a&&(r=a),n&&n<a&&(n=a),new ie(Math.min(255,e/t),Math.min(255,r/t),Math.min(255,n/t))):new ie(a,a,a)},le.darker=function(t){return new ie((t=Math.pow(.7,arguments.length?t:1))*this.r,t*this.g,t*this.b)},le.hsl=function(){return he(this.r,this.g,this.b)},le.toString=function(){return\"#\"+ce(this.r)+ce(this.g)+ce(this.b)};var ge=t.map({aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074});function ve(t){return\"function\"==typeof t?t:function(){return t}}function me(t){return function(e,r,n){return 2===arguments.length&&\"function\"==typeof r&&(n=r,r=null),ye(e,r,t,n)}}function ye(e,r,a,i){var o={},s=t.dispatch(\"beforesend\",\"progress\",\"load\",\"error\"),l={},c=new XMLHttpRequest,u=null;function h(){var t,e=c.status;if(!e&&function(t){var e=t.responseType;return e&&\"text\"!==e?t.response:t.responseText}(c)||e>=200&&e<300||304===e){try{t=a.call(o,c)}catch(t){return void s.error.call(o,t)}s.load.call(o,t)}else s.error.call(o,c)}return!this.XDomainRequest||\"withCredentials\"in c||!/^(http(s)?:)?\\/\\//.test(e)||(c=new XDomainRequest),\"onload\"in c?c.onload=c.onerror=h:c.onreadystatechange=function(){c.readyState>3&&h()},c.onprogress=function(e){var r=t.event;t.event=e;try{s.progress.call(o,c)}finally{t.event=r}},o.header=function(t,e){return t=(t+\"\").toLowerCase(),arguments.length<2?l[t]:(null==e?delete l[t]:l[t]=e+\"\",o)},o.mimeType=function(t){return arguments.length?(r=null==t?null:t+\"\",o):r},o.responseType=function(t){return arguments.length?(u=t,o):u},o.response=function(t){return a=t,o},[\"get\",\"post\"].forEach(function(t){o[t]=function(){return o.send.apply(o,[t].concat(n(arguments)))}}),o.send=function(t,n,a){if(2===arguments.length&&\"function\"==typeof n&&(a=n,n=null),c.open(t,e,!0),null==r||\"accept\"in l||(l.accept=r+\",*/*\"),c.setRequestHeader)for(var i in l)c.setRequestHeader(i,l[i]);return null!=r&&c.overrideMimeType&&c.overrideMimeType(r),null!=u&&(c.responseType=u),null!=a&&o.on(\"error\",a).on(\"load\",function(t){a(null,t)}),s.beforesend.call(o,c),c.send(null==n?null:n),o},o.abort=function(){return c.abort(),o},t.rebind(o,s,\"on\"),null==i?o:o.get(function(t){return 1===t.length?function(e,r){t(null==e?r:null)}:t}(i))}ge.forEach(function(t,e){ge.set(t,oe(e))}),t.functor=ve,t.xhr=me(P),t.dsv=function(t,e){var r=new RegExp('[\"'+t+\"\\n]\"),n=t.charCodeAt(0);function a(t,r,n){arguments.length<3&&(n=r,r=null);var a=ye(t,e,null==r?i:o(r),n);return a.row=function(t){return arguments.length?a.response(null==(r=t)?i:o(t)):r},a}function i(t){return a.parse(t.responseText)}function o(t){return function(e){return a.parse(e.responseText,t)}}function s(e){return e.map(l).join(t)}function l(t){return r.test(t)?'\"'+t.replace(/\\\"/g,'\"\"')+'\"':t}return a.parse=function(t,e){var r;return a.parseRows(t,function(t,n){if(r)return r(t,n-1);var a=new Function(\"d\",\"return {\"+t.map(function(t,e){return JSON.stringify(t)+\": d[\"+e+\"]\"}).join(\",\")+\"}\");r=e?function(t,r){return e(a(t),r)}:a})},a.parseRows=function(t,e){var r,a,i={},o={},s=[],l=t.length,c=0,u=0;function h(){if(c>=l)return o;if(a)return a=!1,i;var e=c;if(34===t.charCodeAt(e)){for(var r=e;r++<l;)if(34===t.charCodeAt(r)){if(34!==t.charCodeAt(r+1))break;++r}return c=r+2,13===(s=t.charCodeAt(r+1))?(a=!0,10===t.charCodeAt(r+2)&&++c):10===s&&(a=!0),t.slice(e+1,r).replace(/\"\"/g,'\"')}for(;c<l;){var s,u=1;if(10===(s=t.charCodeAt(c++)))a=!0;else if(13===s)a=!0,10===t.charCodeAt(c)&&(++c,++u);else if(s!==n)continue;return t.slice(e,c-u)}return t.slice(e)}for(;(r=h())!==o;){for(var f=[];r!==i&&r!==o;)f.push(r),r=h();e&&null==(f=e(f,u++))||s.push(f)}return s},a.format=function(e){if(Array.isArray(e[0]))return a.formatRows(e);var r=new L,n=[];return e.forEach(function(t){for(var e in t)r.has(e)||n.push(r.add(e))}),[n.map(l).join(t)].concat(e.map(function(e){return n.map(function(t){return l(e[t])}).join(t)})).join(\"\\n\")},a.formatRows=function(t){return t.map(s).join(\"\\n\")},a},t.csv=t.dsv(\",\",\"text/csv\"),t.tsv=t.dsv(\"\\t\",\"text/tab-separated-values\");var xe,be,_e,we,ke=this[I(this,\"requestAnimationFrame\")]||function(t){setTimeout(t,17)};function Te(t,e,r){var n=arguments.length;n<2&&(e=0),n<3&&(r=Date.now());var a={c:t,t:r+e,n:null};return be?be.n=a:xe=a,be=a,_e||(we=clearTimeout(we),_e=1,ke(Ae)),a}function Ae(){var t=Me(),e=Se()-t;e>24?(isFinite(e)&&(clearTimeout(we),we=setTimeout(Ae,e)),_e=0):(_e=1,ke(Ae))}function Me(){for(var t=Date.now(),e=xe;e;)t>=e.t&&e.c(t-e.t)&&(e.c=null),e=e.n;return t}function Se(){for(var t,e=xe,r=1/0;e;)e.c?(e.t<r&&(r=e.t),e=(t=e).n):e=t?t.n=e.n:xe=e.n;return be=t,r}function Ee(t,e){return e-(t?Math.ceil(Math.log(t)/Math.LN10):1)}t.timer=function(){Te.apply(this,arguments)},t.timer.flush=function(){Me(),Se()},t.round=function(t,e){return e?Math.round(t*(e=Math.pow(10,e)))/e:Math.round(t)};var Ce=[\"y\",\"z\",\"a\",\"f\",\"p\",\"n\",\"\\xb5\",\"m\",\"\",\"k\",\"M\",\"G\",\"T\",\"P\",\"E\",\"Z\",\"Y\"].map(function(t,e){var r=Math.pow(10,3*y(8-e));return{scale:e>8?function(t){return t/r}:function(t){return t*r},symbol:t}});t.formatPrefix=function(e,r){var n=0;return(e=+e)&&(e<0&&(e*=-1),r&&(e=t.round(e,Ee(e,r))),n=1+Math.floor(1e-12+Math.log(e)/Math.LN10),n=Math.max(-24,Math.min(24,3*Math.floor((n-1)/3)))),Ce[8+n/3]};var Le=/(?:([^{])?([<>=^]))?([+\\- ])?([$#])?(0)?(\\d+)?(,)?(\\.-?\\d+)?([a-z%])?/i,Pe=t.map({b:function(t){return t.toString(2)},c:function(t){return String.fromCharCode(t)},o:function(t){return t.toString(8)},x:function(t){return t.toString(16)},X:function(t){return t.toString(16).toUpperCase()},g:function(t,e){return t.toPrecision(e)},e:function(t,e){return t.toExponential(e)},f:function(t,e){return t.toFixed(e)},r:function(e,r){return(e=t.round(e,Ee(e,r))).toFixed(Math.max(0,Math.min(20,Ee(e*(1+1e-15),r))))}});function Oe(t){return t+\"\"}var Ie=t.time={},ze=Date;function De(){this._=new Date(arguments.length>1?Date.UTC.apply(this,arguments):arguments[0])}De.prototype={getDate:function(){return this._.getUTCDate()},getDay:function(){return this._.getUTCDay()},getFullYear:function(){return this._.getUTCFullYear()},getHours:function(){return this._.getUTCHours()},getMilliseconds:function(){return this._.getUTCMilliseconds()},getMinutes:function(){return this._.getUTCMinutes()},getMonth:function(){return this._.getUTCMonth()},getSeconds:function(){return this._.getUTCSeconds()},getTime:function(){return this._.getTime()},getTimezoneOffset:function(){return 0},valueOf:function(){return this._.valueOf()},setDate:function(){Re.setUTCDate.apply(this._,arguments)},setDay:function(){Re.setUTCDay.apply(this._,arguments)},setFullYear:function(){Re.setUTCFullYear.apply(this._,arguments)},setHours:function(){Re.setUTCHours.apply(this._,arguments)},setMilliseconds:function(){Re.setUTCMilliseconds.apply(this._,arguments)},setMinutes:function(){Re.setUTCMinutes.apply(this._,arguments)},setMonth:function(){Re.setUTCMonth.apply(this._,arguments)},setSeconds:function(){Re.setUTCSeconds.apply(this._,arguments)},setTime:function(){Re.setTime.apply(this._,arguments)}};var Re=Date.prototype;function Fe(t,e,r){function n(e){var r=t(e),n=i(r,1);return e-r<n-e?r:n}function a(r){return e(r=t(new ze(r-1)),1),r}function i(t,r){return e(t=new ze(+t),r),t}function o(t,n,i){var o=a(t),s=[];if(i>1)for(;o<n;)r(o)%i||s.push(new Date(+o)),e(o,1);else for(;o<n;)s.push(new Date(+o)),e(o,1);return s}t.floor=t,t.round=n,t.ceil=a,t.offset=i,t.range=o;var s=t.utc=Be(t);return s.floor=s,s.round=Be(n),s.ceil=Be(a),s.offset=Be(i),s.range=function(t,e,r){try{ze=De;var n=new De;return n._=t,o(n,e,r)}finally{ze=Date}},t}function Be(t){return function(e,r){try{ze=De;var n=new De;return n._=e,t(n,r)._}finally{ze=Date}}}Ie.year=Fe(function(t){return(t=Ie.day(t)).setMonth(0,1),t},function(t,e){t.setFullYear(t.getFullYear()+e)},function(t){return t.getFullYear()}),Ie.years=Ie.year.range,Ie.years.utc=Ie.year.utc.range,Ie.day=Fe(function(t){var e=new ze(2e3,0);return e.setFullYear(t.getFullYear(),t.getMonth(),t.getDate()),e},function(t,e){t.setDate(t.getDate()+e)},function(t){return t.getDate()-1}),Ie.days=Ie.day.range,Ie.days.utc=Ie.day.utc.range,Ie.dayOfYear=function(t){var e=Ie.year(t);return Math.floor((t-e-6e4*(t.getTimezoneOffset()-e.getTimezoneOffset()))/864e5)},[\"sunday\",\"monday\",\"tuesday\",\"wednesday\",\"thursday\",\"friday\",\"saturday\"].forEach(function(t,e){e=7-e;var r=Ie[t]=Fe(function(t){return(t=Ie.day(t)).setDate(t.getDate()-(t.getDay()+e)%7),t},function(t,e){t.setDate(t.getDate()+7*Math.floor(e))},function(t){var r=Ie.year(t).getDay();return Math.floor((Ie.dayOfYear(t)+(r+e)%7)/7)-(r!==e)});Ie[t+\"s\"]=r.range,Ie[t+\"s\"].utc=r.utc.range,Ie[t+\"OfYear\"]=function(t){var r=Ie.year(t).getDay();return Math.floor((Ie.dayOfYear(t)+(r+e)%7)/7)}}),Ie.week=Ie.sunday,Ie.weeks=Ie.sunday.range,Ie.weeks.utc=Ie.sunday.utc.range,Ie.weekOfYear=Ie.sundayOfYear;var Ne={\"-\":\"\",_:\" \",0:\"0\"},je=/^\\s*\\d+/,Ve=/^%/;function Ue(t,e,r){var n=t<0?\"-\":\"\",a=(n?-t:t)+\"\",i=a.length;return n+(i<r?new Array(r-i+1).join(e)+a:a)}function qe(e){return new RegExp(\"^(?:\"+e.map(t.requote).join(\"|\")+\")\",\"i\")}function He(t){for(var e=new b,r=-1,n=t.length;++r<n;)e.set(t[r].toLowerCase(),r);return e}function Ge(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r,r+1));return n?(t.w=+n[0],r+n[0].length):-1}function Ye(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r));return n?(t.U=+n[0],r+n[0].length):-1}function We(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r));return n?(t.W=+n[0],r+n[0].length):-1}function Xe(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r,r+4));return n?(t.y=+n[0],r+n[0].length):-1}function Ze(t,e,r){je.lastIndex=0;var n,a=je.exec(e.slice(r,r+2));return a?(t.y=(n=+a[0])+(n>68?1900:2e3),r+a[0].length):-1}function Je(t,e,r){return/^[+-]\\d{4}$/.test(e=e.slice(r,r+5))?(t.Z=-e,r+5):-1}function Ke(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r,r+2));return n?(t.m=n[0]-1,r+n[0].length):-1}function Qe(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r,r+2));return n?(t.d=+n[0],r+n[0].length):-1}function $e(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r,r+3));return n?(t.j=+n[0],r+n[0].length):-1}function tr(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r,r+2));return n?(t.H=+n[0],r+n[0].length):-1}function er(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r,r+2));return n?(t.M=+n[0],r+n[0].length):-1}function rr(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r,r+2));return n?(t.S=+n[0],r+n[0].length):-1}function nr(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r,r+3));return n?(t.L=+n[0],r+n[0].length):-1}function ar(t){var e=t.getTimezoneOffset(),r=e>0?\"-\":\"+\",n=y(e)/60|0,a=y(e)%60;return r+Ue(n,\"0\",2)+Ue(a,\"0\",2)}function ir(t,e,r){Ve.lastIndex=0;var n=Ve.exec(e.slice(r,r+1));return n?r+n[0].length:-1}function or(t){for(var e=t.length,r=-1;++r<e;)t[r][0]=this(t[r][0]);return function(e){for(var r=0,n=t[r];!n[1](e);)n=t[++r];return n[0](e)}}t.locale=function(e){return{numberFormat:function(e){var r=e.decimal,n=e.thousands,a=e.grouping,i=e.currency,o=a&&n?function(t,e){for(var r=t.length,i=[],o=0,s=a[0],l=0;r>0&&s>0&&(l+s+1>e&&(s=Math.max(1,e-l)),i.push(t.substring(r-=s,r+s)),!((l+=s+1)>e));)s=a[o=(o+1)%a.length];return i.reverse().join(n)}:P;return function(e){var n=Le.exec(e),a=n[1]||\" \",s=n[2]||\">\",l=n[3]||\"-\",c=n[4]||\"\",u=n[5],h=+n[6],f=n[7],p=n[8],d=n[9],g=1,v=\"\",m=\"\",y=!1,x=!0;switch(p&&(p=+p.substring(1)),(u||\"0\"===a&&\"=\"===s)&&(u=a=\"0\",s=\"=\"),d){case\"n\":f=!0,d=\"g\";break;case\"%\":g=100,m=\"%\",d=\"f\";break;case\"p\":g=100,m=\"%\",d=\"r\";break;case\"b\":case\"o\":case\"x\":case\"X\":\"#\"===c&&(v=\"0\"+d.toLowerCase());case\"c\":x=!1;case\"d\":y=!0,p=0;break;case\"s\":g=-1,d=\"r\"}\"$\"===c&&(v=i[0],m=i[1]),\"r\"!=d||p||(d=\"g\"),null!=p&&(\"g\"==d?p=Math.max(1,Math.min(21,p)):\"e\"!=d&&\"f\"!=d||(p=Math.max(0,Math.min(20,p)))),d=Pe.get(d)||Oe;var b=u&&f;return function(e){var n=m;if(y&&e%1)return\"\";var i=e<0||0===e&&1/e<0?(e=-e,\"-\"):\"-\"===l?\"\":l;if(g<0){var c=t.formatPrefix(e,p);e=c.scale(e),n=c.symbol+m}else e*=g;var _,w,k=(e=d(e,p)).lastIndexOf(\".\");if(k<0){var T=x?e.lastIndexOf(\"e\"):-1;T<0?(_=e,w=\"\"):(_=e.substring(0,T),w=e.substring(T))}else _=e.substring(0,k),w=r+e.substring(k+1);!u&&f&&(_=o(_,1/0));var A=v.length+_.length+w.length+(b?0:i.length),M=A<h?new Array(A=h-A+1).join(a):\"\";return b&&(_=o(M+_,M.length?h-w.length:1/0)),i+=v,e=_+w,(\"<\"===s?i+e+M:\">\"===s?M+i+e:\"^\"===s?M.substring(0,A>>=1)+i+e+M.substring(A):i+(b?e:M+e))+n}}}(e),timeFormat:function(e){var r=e.dateTime,n=e.date,a=e.time,i=e.periods,o=e.days,s=e.shortDays,l=e.months,c=e.shortMonths;function u(t){var e=t.length;function r(r){for(var n,a,i,o=[],s=-1,l=0;++s<e;)37===t.charCodeAt(s)&&(o.push(t.slice(l,s)),null!=(a=Ne[n=t.charAt(++s)])&&(n=t.charAt(++s)),(i=_[n])&&(n=i(r,null==a?\"e\"===n?\" \":\"0\":a)),o.push(n),l=s+1);return o.push(t.slice(l,s)),o.join(\"\")}return r.parse=function(e){var r={y:1900,m:0,d:1,H:0,M:0,S:0,L:0,Z:null};if(h(r,t,e,0)!=e.length)return null;\"p\"in r&&(r.H=r.H%12+12*r.p);var n=null!=r.Z&&ze!==De,a=new(n?De:ze);return\"j\"in r?a.setFullYear(r.y,0,r.j):\"W\"in r||\"U\"in r?(\"w\"in r||(r.w=\"W\"in r?1:0),a.setFullYear(r.y,0,1),a.setFullYear(r.y,0,\"W\"in r?(r.w+6)%7+7*r.W-(a.getDay()+5)%7:r.w+7*r.U-(a.getDay()+6)%7)):a.setFullYear(r.y,r.m,r.d),a.setHours(r.H+(r.Z/100|0),r.M+r.Z%100,r.S,r.L),n?a._:a},r.toString=function(){return t},r}function h(t,e,r,n){for(var a,i,o,s=0,l=e.length,c=r.length;s<l;){if(n>=c)return-1;if(37===(a=e.charCodeAt(s++))){if(o=e.charAt(s++),!(i=w[o in Ne?e.charAt(s++):o])||(n=i(t,r,n))<0)return-1}else if(a!=r.charCodeAt(n++))return-1}return n}u.utc=function(t){var e=u(t);function r(t){try{var r=new(ze=De);return r._=t,e(r)}finally{ze=Date}}return r.parse=function(t){try{ze=De;var r=e.parse(t);return r&&r._}finally{ze=Date}},r.toString=e.toString,r},u.multi=u.utc.multi=or;var f=t.map(),p=qe(o),d=He(o),g=qe(s),v=He(s),m=qe(l),y=He(l),x=qe(c),b=He(c);i.forEach(function(t,e){f.set(t.toLowerCase(),e)});var _={a:function(t){return s[t.getDay()]},A:function(t){return o[t.getDay()]},b:function(t){return c[t.getMonth()]},B:function(t){return l[t.getMonth()]},c:u(r),d:function(t,e){return Ue(t.getDate(),e,2)},e:function(t,e){return Ue(t.getDate(),e,2)},H:function(t,e){return Ue(t.getHours(),e,2)},I:function(t,e){return Ue(t.getHours()%12||12,e,2)},j:function(t,e){return Ue(1+Ie.dayOfYear(t),e,3)},L:function(t,e){return Ue(t.getMilliseconds(),e,3)},m:function(t,e){return Ue(t.getMonth()+1,e,2)},M:function(t,e){return Ue(t.getMinutes(),e,2)},p:function(t){return i[+(t.getHours()>=12)]},S:function(t,e){return Ue(t.getSeconds(),e,2)},U:function(t,e){return Ue(Ie.sundayOfYear(t),e,2)},w:function(t){return t.getDay()},W:function(t,e){return Ue(Ie.mondayOfYear(t),e,2)},x:u(n),X:u(a),y:function(t,e){return Ue(t.getFullYear()%100,e,2)},Y:function(t,e){return Ue(t.getFullYear()%1e4,e,4)},Z:ar,\"%\":function(){return\"%\"}},w={a:function(t,e,r){g.lastIndex=0;var n=g.exec(e.slice(r));return n?(t.w=v.get(n[0].toLowerCase()),r+n[0].length):-1},A:function(t,e,r){p.lastIndex=0;var n=p.exec(e.slice(r));return n?(t.w=d.get(n[0].toLowerCase()),r+n[0].length):-1},b:function(t,e,r){x.lastIndex=0;var n=x.exec(e.slice(r));return n?(t.m=b.get(n[0].toLowerCase()),r+n[0].length):-1},B:function(t,e,r){m.lastIndex=0;var n=m.exec(e.slice(r));return n?(t.m=y.get(n[0].toLowerCase()),r+n[0].length):-1},c:function(t,e,r){return h(t,_.c.toString(),e,r)},d:Qe,e:Qe,H:tr,I:tr,j:$e,L:nr,m:Ke,M:er,p:function(t,e,r){var n=f.get(e.slice(r,r+=2).toLowerCase());return null==n?-1:(t.p=n,r)},S:rr,U:Ye,w:Ge,W:We,x:function(t,e,r){return h(t,_.x.toString(),e,r)},X:function(t,e,r){return h(t,_.X.toString(),e,r)},y:Ze,Y:Xe,Z:Je,\"%\":ir};return u}(e)}};var sr=t.locale({decimal:\".\",thousands:\",\",grouping:[3],currency:[\"$\",\"\"],dateTime:\"%a %b %e %X %Y\",date:\"%m/%d/%Y\",time:\"%H:%M:%S\",periods:[\"AM\",\"PM\"],days:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],shortDays:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],months:[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],shortMonths:[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"]});function lr(){}t.format=sr.numberFormat,t.geo={},lr.prototype={s:0,t:0,add:function(t){ur(t,this.t,cr),ur(cr.s,this.s,this),this.s?this.t+=cr.t:this.s=cr.t},reset:function(){this.s=this.t=0},valueOf:function(){return this.s}};var cr=new lr;function ur(t,e,r){var n=r.s=t+e,a=n-t,i=n-a;r.t=t-i+(e-a)}function hr(t,e){t&&pr.hasOwnProperty(t.type)&&pr[t.type](t,e)}t.geo.stream=function(t,e){t&&fr.hasOwnProperty(t.type)?fr[t.type](t,e):hr(t,e)};var fr={Feature:function(t,e){hr(t.geometry,e)},FeatureCollection:function(t,e){for(var r=t.features,n=-1,a=r.length;++n<a;)hr(r[n].geometry,e)}},pr={Sphere:function(t,e){e.sphere()},Point:function(t,e){t=t.coordinates,e.point(t[0],t[1],t[2])},MultiPoint:function(t,e){for(var r=t.coordinates,n=-1,a=r.length;++n<a;)t=r[n],e.point(t[0],t[1],t[2])},LineString:function(t,e){dr(t.coordinates,e,0)},MultiLineString:function(t,e){for(var r=t.coordinates,n=-1,a=r.length;++n<a;)dr(r[n],e,0)},Polygon:function(t,e){gr(t.coordinates,e)},MultiPolygon:function(t,e){for(var r=t.coordinates,n=-1,a=r.length;++n<a;)gr(r[n],e)},GeometryCollection:function(t,e){for(var r=t.geometries,n=-1,a=r.length;++n<a;)hr(r[n],e)}};function dr(t,e,r){var n,a=-1,i=t.length-r;for(e.lineStart();++a<i;)n=t[a],e.point(n[0],n[1],n[2]);e.lineEnd()}function gr(t,e){var r=-1,n=t.length;for(e.polygonStart();++r<n;)dr(t[r],e,1);e.polygonEnd()}t.geo.area=function(e){return vr=0,t.geo.stream(e,Cr),vr};var vr,mr,yr,xr,br,_r,wr,kr,Tr,Ar,Mr,Sr,Er=new lr,Cr={sphere:function(){vr+=4*At},point:D,lineStart:D,lineEnd:D,polygonStart:function(){Er.reset(),Cr.lineStart=Lr},polygonEnd:function(){var t=2*Er;vr+=t<0?4*At+t:t,Cr.lineStart=Cr.lineEnd=Cr.point=D}};function Lr(){var t,e,r,n,a;function i(t,e){e=e*Ct/2+At/4;var i=(t*=Ct)-r,o=i>=0?1:-1,s=o*i,l=Math.cos(e),c=Math.sin(e),u=a*c,h=n*l+u*Math.cos(s),f=u*o*Math.sin(s);Er.add(Math.atan2(f,h)),r=t,n=l,a=c}Cr.point=function(o,s){Cr.point=i,r=(t=o)*Ct,n=Math.cos(s=(e=s)*Ct/2+At/4),a=Math.sin(s)},Cr.lineEnd=function(){i(t,e)}}function Pr(t){var e=t[0],r=t[1],n=Math.cos(r);return[n*Math.cos(e),n*Math.sin(e),Math.sin(r)]}function Or(t,e){return t[0]*e[0]+t[1]*e[1]+t[2]*e[2]}function Ir(t,e){return[t[1]*e[2]-t[2]*e[1],t[2]*e[0]-t[0]*e[2],t[0]*e[1]-t[1]*e[0]]}function zr(t,e){t[0]+=e[0],t[1]+=e[1],t[2]+=e[2]}function Dr(t,e){return[t[0]*e,t[1]*e,t[2]*e]}function Rr(t){var e=Math.sqrt(t[0]*t[0]+t[1]*t[1]+t[2]*t[2]);t[0]/=e,t[1]/=e,t[2]/=e}function Fr(t){return[Math.atan2(t[1],t[0]),zt(t[2])]}function Br(t,e){return y(t[0]-e[0])<kt&&y(t[1]-e[1])<kt}t.geo.bounds=function(){var e,r,n,a,i,o,s,l,c,u,h,f={point:p,lineStart:g,lineEnd:v,polygonStart:function(){f.point=m,f.lineStart=x,f.lineEnd=b,c=0,Cr.polygonStart()},polygonEnd:function(){Cr.polygonEnd(),f.point=p,f.lineStart=g,f.lineEnd=v,Er<0?(e=-(n=180),r=-(a=90)):c>kt?a=90:c<-kt&&(r=-90),h[0]=e,h[1]=n}};function p(t,i){u.push(h=[e=t,n=t]),i<r&&(r=i),i>a&&(a=i)}function d(t,o){var s=Pr([t*Ct,o*Ct]);if(l){var c=Ir(l,s),u=Ir([c[1],-c[0],0],c);Rr(u),u=Fr(u);var h=t-i,f=h>0?1:-1,d=u[0]*Lt*f,g=y(h)>180;if(g^(f*i<d&&d<f*t))(v=u[1]*Lt)>a&&(a=v);else if(g^(f*i<(d=(d+360)%360-180)&&d<f*t)){var v;(v=-u[1]*Lt)<r&&(r=v)}else o<r&&(r=o),o>a&&(a=o);g?t<i?_(e,t)>_(e,n)&&(n=t):_(t,n)>_(e,n)&&(e=t):n>=e?(t<e&&(e=t),t>n&&(n=t)):t>i?_(e,t)>_(e,n)&&(n=t):_(t,n)>_(e,n)&&(e=t)}else p(t,o);l=s,i=t}function g(){f.point=d}function v(){h[0]=e,h[1]=n,f.point=p,l=null}function m(t,e){if(l){var r=t-i;c+=y(r)>180?r+(r>0?360:-360):r}else o=t,s=e;Cr.point(t,e),d(t,e)}function x(){Cr.lineStart()}function b(){m(o,s),Cr.lineEnd(),y(c)>kt&&(e=-(n=180)),h[0]=e,h[1]=n,l=null}function _(t,e){return(e-=t)<0?e+360:e}function w(t,e){return t[0]-e[0]}function k(t,e){return e[0]<=e[1]?e[0]<=t&&t<=e[1]:t<e[0]||e[1]<t}return function(i){if(a=n=-(e=r=1/0),u=[],t.geo.stream(i,f),c=u.length){u.sort(w);for(var o=1,s=[g=u[0]];o<c;++o)k((p=u[o])[0],g)||k(p[1],g)?(_(g[0],p[1])>_(g[0],g[1])&&(g[1]=p[1]),_(p[0],g[1])>_(g[0],g[1])&&(g[0]=p[0])):s.push(g=p);for(var l,c,p,d=-1/0,g=(o=0,s[c=s.length-1]);o<=c;g=p,++o)p=s[o],(l=_(g[1],p[0]))>d&&(d=l,e=p[0],n=g[1])}return u=h=null,e===1/0||r===1/0?[[NaN,NaN],[NaN,NaN]]:[[e,r],[n,a]]}}(),t.geo.centroid=function(e){mr=yr=xr=br=_r=wr=kr=Tr=Ar=Mr=Sr=0,t.geo.stream(e,Nr);var r=Ar,n=Mr,a=Sr,i=r*r+n*n+a*a;return i<Tt&&(r=wr,n=kr,a=Tr,yr<kt&&(r=xr,n=br,a=_r),(i=r*r+n*n+a*a)<Tt)?[NaN,NaN]:[Math.atan2(n,r)*Lt,zt(a/Math.sqrt(i))*Lt]};var Nr={sphere:D,point:jr,lineStart:Ur,lineEnd:qr,polygonStart:function(){Nr.lineStart=Hr},polygonEnd:function(){Nr.lineStart=Ur}};function jr(t,e){t*=Ct;var r=Math.cos(e*=Ct);Vr(r*Math.cos(t),r*Math.sin(t),Math.sin(e))}function Vr(t,e,r){xr+=(t-xr)/++mr,br+=(e-br)/mr,_r+=(r-_r)/mr}function Ur(){var t,e,r;function n(n,a){n*=Ct;var i=Math.cos(a*=Ct),o=i*Math.cos(n),s=i*Math.sin(n),l=Math.sin(a),c=Math.atan2(Math.sqrt((c=e*l-r*s)*c+(c=r*o-t*l)*c+(c=t*s-e*o)*c),t*o+e*s+r*l);yr+=c,wr+=c*(t+(t=o)),kr+=c*(e+(e=s)),Tr+=c*(r+(r=l)),Vr(t,e,r)}Nr.point=function(a,i){a*=Ct;var o=Math.cos(i*=Ct);t=o*Math.cos(a),e=o*Math.sin(a),r=Math.sin(i),Nr.point=n,Vr(t,e,r)}}function qr(){Nr.point=jr}function Hr(){var t,e,r,n,a;function i(t,e){t*=Ct;var i=Math.cos(e*=Ct),o=i*Math.cos(t),s=i*Math.sin(t),l=Math.sin(e),c=n*l-a*s,u=a*o-r*l,h=r*s-n*o,f=Math.sqrt(c*c+u*u+h*h),p=r*o+n*s+a*l,d=f&&-It(p)/f,g=Math.atan2(f,p);Ar+=d*c,Mr+=d*u,Sr+=d*h,yr+=g,wr+=g*(r+(r=o)),kr+=g*(n+(n=s)),Tr+=g*(a+(a=l)),Vr(r,n,a)}Nr.point=function(o,s){t=o,e=s,Nr.point=i,o*=Ct;var l=Math.cos(s*=Ct);r=l*Math.cos(o),n=l*Math.sin(o),a=Math.sin(s),Vr(r,n,a)},Nr.lineEnd=function(){i(t,e),Nr.lineEnd=qr,Nr.point=jr}}function Gr(t,e){function r(r,n){return r=t(r,n),e(r[0],r[1])}return t.invert&&e.invert&&(r.invert=function(r,n){return(r=e.invert(r,n))&&t.invert(r[0],r[1])}),r}function Yr(){return!0}function Wr(t,e,r,n,a){var i=[],o=[];if(t.forEach(function(t){if(!((e=t.length-1)<=0)){var e,r=t[0],n=t[e];if(Br(r,n)){a.lineStart();for(var s=0;s<e;++s)a.point((r=t[s])[0],r[1]);a.lineEnd()}else{var l=new Zr(r,t,null,!0),c=new Zr(r,null,l,!1);l.o=c,i.push(l),o.push(c),l=new Zr(n,t,null,!1),c=new Zr(n,null,l,!0),l.o=c,i.push(l),o.push(c)}}}),o.sort(e),Xr(i),Xr(o),i.length){for(var s=0,l=r,c=o.length;s<c;++s)o[s].e=l=!l;for(var u,h,f=i[0];;){for(var p=f,d=!0;p.v;)if((p=p.n)===f)return;u=p.z,a.lineStart();do{if(p.v=p.o.v=!0,p.e){if(d)for(s=0,c=u.length;s<c;++s)a.point((h=u[s])[0],h[1]);else n(p.x,p.n.x,1,a);p=p.n}else{if(d)for(s=(u=p.p.z).length-1;s>=0;--s)a.point((h=u[s])[0],h[1]);else n(p.x,p.p.x,-1,a);p=p.p}u=(p=p.o).z,d=!d}while(!p.v);a.lineEnd()}}}function Xr(t){if(e=t.length){for(var e,r,n=0,a=t[0];++n<e;)a.n=r=t[n],r.p=a,a=r;a.n=r=t[0],r.p=a}}function Zr(t,e,r,n){this.x=t,this.z=e,this.o=r,this.e=n,this.v=!1,this.n=this.p=null}function Jr(e,r,n,a){return function(i,o){var s,l=r(o),c=i.invert(a[0],a[1]),u={point:h,lineStart:p,lineEnd:d,polygonStart:function(){u.point=b,u.lineStart=_,u.lineEnd=w,s=[],g=[]},polygonEnd:function(){u.point=h,u.lineStart=p,u.lineEnd=d,s=t.merge(s);var e=function(t,e){var r=t[0],n=t[1],a=[Math.sin(r),-Math.cos(r),0],i=0,o=0;Er.reset();for(var s=0,l=e.length;s<l;++s){var c=e[s],u=c.length;if(u)for(var h=c[0],f=h[0],p=h[1]/2+At/4,d=Math.sin(p),g=Math.cos(p),v=1;;){v===u&&(v=0);var m=(t=c[v])[0],y=t[1]/2+At/4,x=Math.sin(y),b=Math.cos(y),_=m-f,w=_>=0?1:-1,k=w*_,T=k>At,A=d*x;if(Er.add(Math.atan2(A*w*Math.sin(k),g*b+A*Math.cos(k))),i+=T?_+w*Mt:_,T^f>=r^m>=r){var M=Ir(Pr(h),Pr(t));Rr(M);var S=Ir(a,M);Rr(S);var E=(T^_>=0?-1:1)*zt(S[2]);(n>E||n===E&&(M[0]||M[1]))&&(o+=T^_>=0?1:-1)}if(!v++)break;f=m,d=x,g=b,h=t}}return(i<-kt||i<kt&&Er<-kt)^1&o}(c,g);s.length?(x||(o.polygonStart(),x=!0),Wr(s,$r,e,n,o)):e&&(x||(o.polygonStart(),x=!0),o.lineStart(),n(null,null,1,o),o.lineEnd()),x&&(o.polygonEnd(),x=!1),s=g=null},sphere:function(){o.polygonStart(),o.lineStart(),n(null,null,1,o),o.lineEnd(),o.polygonEnd()}};function h(t,r){var n=i(t,r);e(t=n[0],r=n[1])&&o.point(t,r)}function f(t,e){var r=i(t,e);l.point(r[0],r[1])}function p(){u.point=f,l.lineStart()}function d(){u.point=h,l.lineEnd()}var g,v,m=Qr(),y=r(m),x=!1;function b(t,e){v.push([t,e]);var r=i(t,e);y.point(r[0],r[1])}function _(){y.lineStart(),v=[]}function w(){b(v[0][0],v[0][1]),y.lineEnd();var t,e=y.clean(),r=m.buffer(),n=r.length;if(v.pop(),g.push(v),v=null,n)if(1&e){var a,i=-1;if((n=(t=r[0]).length-1)>0){for(x||(o.polygonStart(),x=!0),o.lineStart();++i<n;)o.point((a=t[i])[0],a[1]);o.lineEnd()}}else n>1&&2&e&&r.push(r.pop().concat(r.shift())),s.push(r.filter(Kr))}return u}}function Kr(t){return t.length>1}function Qr(){var t,e=[];return{lineStart:function(){e.push(t=[])},point:function(e,r){t.push([e,r])},lineEnd:D,buffer:function(){var r=e;return e=[],t=null,r},rejoin:function(){e.length>1&&e.push(e.pop().concat(e.shift()))}}}function $r(t,e){return((t=t.x)[0]<0?t[1]-Et-kt:Et-t[1])-((e=e.x)[0]<0?e[1]-Et-kt:Et-e[1])}var tn=Jr(Yr,function(t){var e,r=NaN,n=NaN,a=NaN;return{lineStart:function(){t.lineStart(),e=1},point:function(i,o){var s=i>0?At:-At,l=y(i-r);y(l-At)<kt?(t.point(r,n=(n+o)/2>0?Et:-Et),t.point(a,n),t.lineEnd(),t.lineStart(),t.point(s,n),t.point(i,n),e=0):a!==s&&l>=At&&(y(r-a)<kt&&(r-=a*kt),y(i-s)<kt&&(i-=s*kt),n=function(t,e,r,n){var a,i,o=Math.sin(t-r);return y(o)>kt?Math.atan((Math.sin(e)*(i=Math.cos(n))*Math.sin(r)-Math.sin(n)*(a=Math.cos(e))*Math.sin(t))/(a*i*o)):(e+n)/2}(r,n,i,o),t.point(a,n),t.lineEnd(),t.lineStart(),t.point(s,n),e=0),t.point(r=i,n=o),a=s},lineEnd:function(){t.lineEnd(),r=n=NaN},clean:function(){return 2-e}}},function(t,e,r,n){var a;if(null==t)a=r*Et,n.point(-At,a),n.point(0,a),n.point(At,a),n.point(At,0),n.point(At,-a),n.point(0,-a),n.point(-At,-a),n.point(-At,0),n.point(-At,a);else if(y(t[0]-e[0])>kt){var i=t[0]<e[0]?At:-At;a=r*i/2,n.point(-i,a),n.point(0,a),n.point(i,a)}else n.point(e[0],e[1])},[-At,-At/2]);function en(t,e,r,n){return function(a){var i,o=a.a,s=a.b,l=o.x,c=o.y,u=0,h=1,f=s.x-l,p=s.y-c;if(i=t-l,f||!(i>0)){if(i/=f,f<0){if(i<u)return;i<h&&(h=i)}else if(f>0){if(i>h)return;i>u&&(u=i)}if(i=r-l,f||!(i<0)){if(i/=f,f<0){if(i>h)return;i>u&&(u=i)}else if(f>0){if(i<u)return;i<h&&(h=i)}if(i=e-c,p||!(i>0)){if(i/=p,p<0){if(i<u)return;i<h&&(h=i)}else if(p>0){if(i>h)return;i>u&&(u=i)}if(i=n-c,p||!(i<0)){if(i/=p,p<0){if(i>h)return;i>u&&(u=i)}else if(p>0){if(i<u)return;i<h&&(h=i)}return u>0&&(a.a={x:l+u*f,y:c+u*p}),h<1&&(a.b={x:l+h*f,y:c+h*p}),a}}}}}}var rn=1e9;function nn(e,r,n,a){return function(l){var c,u,h,f,p,d,g,v,m,y,x,b=l,_=Qr(),w=en(e,r,n,a),k={point:M,lineStart:function(){k.point=S,u&&u.push(h=[]);y=!0,m=!1,g=v=NaN},lineEnd:function(){c&&(S(f,p),d&&m&&_.rejoin(),c.push(_.buffer()));k.point=M,m&&l.lineEnd()},polygonStart:function(){l=_,c=[],u=[],x=!0},polygonEnd:function(){l=b,c=t.merge(c);var r=function(t){for(var e=0,r=u.length,n=t[1],a=0;a<r;++a)for(var i,o=1,s=u[a],l=s.length,c=s[0];o<l;++o)i=s[o],c[1]<=n?i[1]>n&&Ot(c,i,t)>0&&++e:i[1]<=n&&Ot(c,i,t)<0&&--e,c=i;return 0!==e}([e,a]),n=x&&r,i=c.length;(n||i)&&(l.polygonStart(),n&&(l.lineStart(),T(null,null,1,l),l.lineEnd()),i&&Wr(c,o,r,T,l),l.polygonEnd()),c=u=h=null}};function T(t,o,l,c){var u=0,h=0;if(null==t||(u=i(t,l))!==(h=i(o,l))||s(t,o)<0^l>0)do{c.point(0===u||3===u?e:n,u>1?a:r)}while((u=(u+l+4)%4)!==h);else c.point(o[0],o[1])}function A(t,i){return e<=t&&t<=n&&r<=i&&i<=a}function M(t,e){A(t,e)&&l.point(t,e)}function S(t,e){var r=A(t=Math.max(-rn,Math.min(rn,t)),e=Math.max(-rn,Math.min(rn,e)));if(u&&h.push([t,e]),y)f=t,p=e,d=r,y=!1,r&&(l.lineStart(),l.point(t,e));else if(r&&m)l.point(t,e);else{var n={a:{x:g,y:v},b:{x:t,y:e}};w(n)?(m||(l.lineStart(),l.point(n.a.x,n.a.y)),l.point(n.b.x,n.b.y),r||l.lineEnd(),x=!1):r&&(l.lineStart(),l.point(t,e),x=!1)}g=t,v=e,m=r}return k};function i(t,a){return y(t[0]-e)<kt?a>0?0:3:y(t[0]-n)<kt?a>0?2:1:y(t[1]-r)<kt?a>0?1:0:a>0?3:2}function o(t,e){return s(t.x,e.x)}function s(t,e){var r=i(t,1),n=i(e,1);return r!==n?r-n:0===r?e[1]-t[1]:1===r?t[0]-e[0]:2===r?t[1]-e[1]:e[0]-t[0]}}function an(t){var e=0,r=At/3,n=Cn(t),a=n(e,r);return a.parallels=function(t){return arguments.length?n(e=t[0]*At/180,r=t[1]*At/180):[e/At*180,r/At*180]},a}function on(t,e){var r=Math.sin(t),n=(r+Math.sin(e))/2,a=1+r*(2*n-r),i=Math.sqrt(a)/n;function o(t,e){var r=Math.sqrt(a-2*n*Math.sin(e))/n;return[r*Math.sin(t*=n),i-r*Math.cos(t)]}return o.invert=function(t,e){var r=i-e;return[Math.atan2(t,r)/n,zt((a-(t*t+r*r)*n*n)/(2*n))]},o}t.geo.clipExtent=function(){var t,e,r,n,a,i,o={stream:function(t){return a&&(a.valid=!1),(a=i(t)).valid=!0,a},extent:function(s){return arguments.length?(i=nn(t=+s[0][0],e=+s[0][1],r=+s[1][0],n=+s[1][1]),a&&(a.valid=!1,a=null),o):[[t,e],[r,n]]}};return o.extent([[0,0],[960,500]])},(t.geo.conicEqualArea=function(){return an(on)}).raw=on,t.geo.albers=function(){return t.geo.conicEqualArea().rotate([96,0]).center([-.6,38.7]).parallels([29.5,45.5]).scale(1070)},t.geo.albersUsa=function(){var e,r,n,a,i=t.geo.albers(),o=t.geo.conicEqualArea().rotate([154,0]).center([-2,58.5]).parallels([55,65]),s=t.geo.conicEqualArea().rotate([157,0]).center([-3,19.9]).parallels([8,18]),l={point:function(t,r){e=[t,r]}};function c(t){var i=t[0],o=t[1];return e=null,r(i,o),e||(n(i,o),e)||a(i,o),e}return c.invert=function(t){var e=i.scale(),r=i.translate(),n=(t[0]-r[0])/e,a=(t[1]-r[1])/e;return(a>=.12&&a<.234&&n>=-.425&&n<-.214?o:a>=.166&&a<.234&&n>=-.214&&n<-.115?s:i).invert(t)},c.stream=function(t){var e=i.stream(t),r=o.stream(t),n=s.stream(t);return{point:function(t,a){e.point(t,a),r.point(t,a),n.point(t,a)},sphere:function(){e.sphere(),r.sphere(),n.sphere()},lineStart:function(){e.lineStart(),r.lineStart(),n.lineStart()},lineEnd:function(){e.lineEnd(),r.lineEnd(),n.lineEnd()},polygonStart:function(){e.polygonStart(),r.polygonStart(),n.polygonStart()},polygonEnd:function(){e.polygonEnd(),r.polygonEnd(),n.polygonEnd()}}},c.precision=function(t){return arguments.length?(i.precision(t),o.precision(t),s.precision(t),c):i.precision()},c.scale=function(t){return arguments.length?(i.scale(t),o.scale(.35*t),s.scale(t),c.translate(i.translate())):i.scale()},c.translate=function(t){if(!arguments.length)return i.translate();var e=i.scale(),u=+t[0],h=+t[1];return r=i.translate(t).clipExtent([[u-.455*e,h-.238*e],[u+.455*e,h+.238*e]]).stream(l).point,n=o.translate([u-.307*e,h+.201*e]).clipExtent([[u-.425*e+kt,h+.12*e+kt],[u-.214*e-kt,h+.234*e-kt]]).stream(l).point,a=s.translate([u-.205*e,h+.212*e]).clipExtent([[u-.214*e+kt,h+.166*e+kt],[u-.115*e-kt,h+.234*e-kt]]).stream(l).point,c},c.scale(1070)};var sn,ln,cn,un,hn,fn,pn={point:D,lineStart:D,lineEnd:D,polygonStart:function(){ln=0,pn.lineStart=dn},polygonEnd:function(){pn.lineStart=pn.lineEnd=pn.point=D,sn+=y(ln/2)}};function dn(){var t,e,r,n;function a(t,e){ln+=n*t-r*e,r=t,n=e}pn.point=function(i,o){pn.point=a,t=r=i,e=n=o},pn.lineEnd=function(){a(t,e)}}var gn={point:function(t,e){t<cn&&(cn=t);t>hn&&(hn=t);e<un&&(un=e);e>fn&&(fn=e)},lineStart:D,lineEnd:D,polygonStart:D,polygonEnd:D};function vn(){var t=mn(4.5),e=[],r={point:n,lineStart:function(){r.point=a},lineEnd:o,polygonStart:function(){r.lineEnd=s},polygonEnd:function(){r.lineEnd=o,r.point=n},pointRadius:function(e){return t=mn(e),r},result:function(){if(e.length){var t=e.join(\"\");return e=[],t}}};function n(r,n){e.push(\"M\",r,\",\",n,t)}function a(t,n){e.push(\"M\",t,\",\",n),r.point=i}function i(t,r){e.push(\"L\",t,\",\",r)}function o(){r.point=n}function s(){e.push(\"Z\")}return r}function mn(t){return\"m0,\"+t+\"a\"+t+\",\"+t+\" 0 1,1 0,\"+-2*t+\"a\"+t+\",\"+t+\" 0 1,1 0,\"+2*t+\"z\"}var yn,xn={point:bn,lineStart:_n,lineEnd:wn,polygonStart:function(){xn.lineStart=kn},polygonEnd:function(){xn.point=bn,xn.lineStart=_n,xn.lineEnd=wn}};function bn(t,e){xr+=t,br+=e,++_r}function _n(){var t,e;function r(r,n){var a=r-t,i=n-e,o=Math.sqrt(a*a+i*i);wr+=o*(t+r)/2,kr+=o*(e+n)/2,Tr+=o,bn(t=r,e=n)}xn.point=function(n,a){xn.point=r,bn(t=n,e=a)}}function wn(){xn.point=bn}function kn(){var t,e,r,n;function a(t,e){var a=t-r,i=e-n,o=Math.sqrt(a*a+i*i);wr+=o*(r+t)/2,kr+=o*(n+e)/2,Tr+=o,Ar+=(o=n*t-r*e)*(r+t),Mr+=o*(n+e),Sr+=3*o,bn(r=t,n=e)}xn.point=function(i,o){xn.point=a,bn(t=r=i,e=n=o)},xn.lineEnd=function(){a(t,e)}}function Tn(t){var e=4.5,r={point:n,lineStart:function(){r.point=a},lineEnd:o,polygonStart:function(){r.lineEnd=s},polygonEnd:function(){r.lineEnd=o,r.point=n},pointRadius:function(t){return e=t,r},result:D};function n(r,n){t.moveTo(r+e,n),t.arc(r,n,e,0,Mt)}function a(e,n){t.moveTo(e,n),r.point=i}function i(e,r){t.lineTo(e,r)}function o(){r.point=n}function s(){t.closePath()}return r}function An(t){var e=.5,r=Math.cos(30*Ct),n=16;function a(e){return(n?function(e){var r,a,o,s,l,c,u,h,f,p,d,g,v={point:m,lineStart:y,lineEnd:b,polygonStart:function(){e.polygonStart(),v.lineStart=_},polygonEnd:function(){e.polygonEnd(),v.lineStart=y}};function m(r,n){r=t(r,n),e.point(r[0],r[1])}function y(){h=NaN,v.point=x,e.lineStart()}function x(r,a){var o=Pr([r,a]),s=t(r,a);i(h,f,u,p,d,g,h=s[0],f=s[1],u=r,p=o[0],d=o[1],g=o[2],n,e),e.point(h,f)}function b(){v.point=m,e.lineEnd()}function _(){y(),v.point=w,v.lineEnd=k}function w(t,e){x(r=t,e),a=h,o=f,s=p,l=d,c=g,v.point=x}function k(){i(h,f,u,p,d,g,a,o,r,s,l,c,n,e),v.lineEnd=b,b()}return v}:function(e){return Sn(e,function(r,n){r=t(r,n),e.point(r[0],r[1])})})(e)}function i(n,a,o,s,l,c,u,h,f,p,d,g,v,m){var x=u-n,b=h-a,_=x*x+b*b;if(_>4*e&&v--){var w=s+p,k=l+d,T=c+g,A=Math.sqrt(w*w+k*k+T*T),M=Math.asin(T/=A),S=y(y(T)-1)<kt||y(o-f)<kt?(o+f)/2:Math.atan2(k,w),E=t(S,M),C=E[0],L=E[1],P=C-n,O=L-a,I=b*P-x*O;(I*I/_>e||y((x*P+b*O)/_-.5)>.3||s*p+l*d+c*g<r)&&(i(n,a,o,s,l,c,C,L,S,w/=A,k/=A,T,v,m),m.point(C,L),i(C,L,S,w,k,T,u,h,f,p,d,g,v,m))}}return a.precision=function(t){return arguments.length?(n=(e=t*t)>0&&16,a):Math.sqrt(e)},a}function Mn(t){this.stream=t}function Sn(t,e){return{point:e,sphere:function(){t.sphere()},lineStart:function(){t.lineStart()},lineEnd:function(){t.lineEnd()},polygonStart:function(){t.polygonStart()},polygonEnd:function(){t.polygonEnd()}}}function En(t){return Cn(function(){return t})()}function Cn(e){var r,n,a,i,o,s,l=An(function(t,e){return[(t=r(t,e))[0]*c+i,o-t[1]*c]}),c=150,u=480,h=250,f=0,p=0,d=0,g=0,v=0,m=tn,x=P,b=null,_=null;function w(t){return[(t=a(t[0]*Ct,t[1]*Ct))[0]*c+i,o-t[1]*c]}function k(t){return(t=a.invert((t[0]-i)/c,(o-t[1])/c))&&[t[0]*Lt,t[1]*Lt]}function T(){a=Gr(n=In(d,g,v),r);var t=r(f,p);return i=u-t[0]*c,o=h+t[1]*c,A()}function A(){return s&&(s.valid=!1,s=null),w}return w.stream=function(t){return s&&(s.valid=!1),(s=Ln(m(n,l(x(t))))).valid=!0,s},w.clipAngle=function(t){return arguments.length?(m=null==t?(b=t,tn):function(t){var e=Math.cos(t),r=e>0,n=y(e)>kt;return Jr(a,function(t){var e,s,l,c,u;return{lineStart:function(){c=l=!1,u=1},point:function(h,f){var p,d=[h,f],g=a(h,f),v=r?g?0:o(h,f):g?o(h+(h<0?At:-At),f):0;if(!e&&(c=l=g)&&t.lineStart(),g!==l&&(p=i(e,d),(Br(e,p)||Br(d,p))&&(d[0]+=kt,d[1]+=kt,g=a(d[0],d[1]))),g!==l)u=0,g?(t.lineStart(),p=i(d,e),t.point(p[0],p[1])):(p=i(e,d),t.point(p[0],p[1]),t.lineEnd()),e=p;else if(n&&e&&r^g){var m;v&s||!(m=i(d,e,!0))||(u=0,r?(t.lineStart(),t.point(m[0][0],m[0][1]),t.point(m[1][0],m[1][1]),t.lineEnd()):(t.point(m[1][0],m[1][1]),t.lineEnd(),t.lineStart(),t.point(m[0][0],m[0][1])))}!g||e&&Br(e,d)||t.point(d[0],d[1]),e=d,l=g,s=v},lineEnd:function(){l&&t.lineEnd(),e=null},clean:function(){return u|(c&&l)<<1}}},Fn(t,6*Ct),r?[0,-t]:[-At,t-At]);function a(t,r){return Math.cos(t)*Math.cos(r)>e}function i(t,r,n){var a=[1,0,0],i=Ir(Pr(t),Pr(r)),o=Or(i,i),s=i[0],l=o-s*s;if(!l)return!n&&t;var c=e*o/l,u=-e*s/l,h=Ir(a,i),f=Dr(a,c);zr(f,Dr(i,u));var p=h,d=Or(f,p),g=Or(p,p),v=d*d-g*(Or(f,f)-1);if(!(v<0)){var m=Math.sqrt(v),x=Dr(p,(-d-m)/g);if(zr(x,f),x=Fr(x),!n)return x;var b,_=t[0],w=r[0],k=t[1],T=r[1];w<_&&(b=_,_=w,w=b);var A=w-_,M=y(A-At)<kt;if(!M&&T<k&&(b=k,k=T,T=b),M||A<kt?M?k+T>0^x[1]<(y(x[0]-_)<kt?k:T):k<=x[1]&&x[1]<=T:A>At^(_<=x[0]&&x[0]<=w)){var S=Dr(p,(-d+m)/g);return zr(S,f),[x,Fr(S)]}}}function o(e,n){var a=r?t:At-t,i=0;return e<-a?i|=1:e>a&&(i|=2),n<-a?i|=4:n>a&&(i|=8),i}}((b=+t)*Ct),A()):b},w.clipExtent=function(t){return arguments.length?(_=t,x=t?nn(t[0][0],t[0][1],t[1][0],t[1][1]):P,A()):_},w.scale=function(t){return arguments.length?(c=+t,T()):c},w.translate=function(t){return arguments.length?(u=+t[0],h=+t[1],T()):[u,h]},w.center=function(t){return arguments.length?(f=t[0]%360*Ct,p=t[1]%360*Ct,T()):[f*Lt,p*Lt]},w.rotate=function(t){return arguments.length?(d=t[0]%360*Ct,g=t[1]%360*Ct,v=t.length>2?t[2]%360*Ct:0,T()):[d*Lt,g*Lt,v*Lt]},t.rebind(w,l,\"precision\"),function(){return r=e.apply(this,arguments),w.invert=r.invert&&k,T()}}function Ln(t){return Sn(t,function(e,r){t.point(e*Ct,r*Ct)})}function Pn(t,e){return[t,e]}function On(t,e){return[t>At?t-Mt:t<-At?t+Mt:t,e]}function In(t,e,r){return t?e||r?Gr(Dn(t),Rn(e,r)):Dn(t):e||r?Rn(e,r):On}function zn(t){return function(e,r){return[(e+=t)>At?e-Mt:e<-At?e+Mt:e,r]}}function Dn(t){var e=zn(t);return e.invert=zn(-t),e}function Rn(t,e){var r=Math.cos(t),n=Math.sin(t),a=Math.cos(e),i=Math.sin(e);function o(t,e){var o=Math.cos(e),s=Math.cos(t)*o,l=Math.sin(t)*o,c=Math.sin(e),u=c*r+s*n;return[Math.atan2(l*a-u*i,s*r-c*n),zt(u*a+l*i)]}return o.invert=function(t,e){var o=Math.cos(e),s=Math.cos(t)*o,l=Math.sin(t)*o,c=Math.sin(e),u=c*a-l*i;return[Math.atan2(l*a+c*i,s*r+u*n),zt(u*r-s*n)]},o}function Fn(t,e){var r=Math.cos(t),n=Math.sin(t);return function(a,i,o,s){var l=o*e;null!=a?(a=Bn(r,a),i=Bn(r,i),(o>0?a<i:a>i)&&(a+=o*Mt)):(a=t+o*Mt,i=t-.5*l);for(var c,u=a;o>0?u>i:u<i;u-=l)s.point((c=Fr([r,-n*Math.cos(u),-n*Math.sin(u)]))[0],c[1])}}function Bn(t,e){var r=Pr(e);r[0]-=t,Rr(r);var n=It(-r[1]);return((-r[2]<0?-n:n)+2*Math.PI-kt)%(2*Math.PI)}function Nn(e,r,n){var a=t.range(e,r-kt,n).concat(r);return function(t){return a.map(function(e){return[t,e]})}}function jn(e,r,n){var a=t.range(e,r-kt,n).concat(r);return function(t){return a.map(function(e){return[e,t]})}}function Vn(t){return t.source}function Un(t){return t.target}t.geo.path=function(){var e,r,n,a,i,o=4.5;function s(e){return e&&(\"function\"==typeof o&&a.pointRadius(+o.apply(this,arguments)),i&&i.valid||(i=n(a)),t.geo.stream(e,i)),a.result()}function l(){return i=null,s}return s.area=function(e){return sn=0,t.geo.stream(e,n(pn)),sn},s.centroid=function(e){return xr=br=_r=wr=kr=Tr=Ar=Mr=Sr=0,t.geo.stream(e,n(xn)),Sr?[Ar/Sr,Mr/Sr]:Tr?[wr/Tr,kr/Tr]:_r?[xr/_r,br/_r]:[NaN,NaN]},s.bounds=function(e){return hn=fn=-(cn=un=1/0),t.geo.stream(e,n(gn)),[[cn,un],[hn,fn]]},s.projection=function(t){return arguments.length?(n=(e=t)?t.stream||(r=t,a=An(function(t,e){return r([t*Lt,e*Lt])}),function(t){return Ln(a(t))}):P,l()):e;var r,a},s.context=function(t){return arguments.length?(a=null==(r=t)?new vn:new Tn(t),\"function\"!=typeof o&&a.pointRadius(o),l()):r},s.pointRadius=function(t){return arguments.length?(o=\"function\"==typeof t?t:(a.pointRadius(+t),+t),s):o},s.projection(t.geo.albersUsa()).context(null)},t.geo.transform=function(t){return{stream:function(e){var r=new Mn(e);for(var n in t)r[n]=t[n];return r}}},Mn.prototype={point:function(t,e){this.stream.point(t,e)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}},t.geo.projection=En,t.geo.projectionMutator=Cn,(t.geo.equirectangular=function(){return En(Pn)}).raw=Pn.invert=Pn,t.geo.rotation=function(t){function e(e){return(e=t(e[0]*Ct,e[1]*Ct))[0]*=Lt,e[1]*=Lt,e}return t=In(t[0]%360*Ct,t[1]*Ct,t.length>2?t[2]*Ct:0),e.invert=function(e){return(e=t.invert(e[0]*Ct,e[1]*Ct))[0]*=Lt,e[1]*=Lt,e},e},On.invert=Pn,t.geo.circle=function(){var t,e,r=[0,0],n=6;function a(){var t=\"function\"==typeof r?r.apply(this,arguments):r,n=In(-t[0]*Ct,-t[1]*Ct,0).invert,a=[];return e(null,null,1,{point:function(t,e){a.push(t=n(t,e)),t[0]*=Lt,t[1]*=Lt}}),{type:\"Polygon\",coordinates:[a]}}return a.origin=function(t){return arguments.length?(r=t,a):r},a.angle=function(r){return arguments.length?(e=Fn((t=+r)*Ct,n*Ct),a):t},a.precision=function(r){return arguments.length?(e=Fn(t*Ct,(n=+r)*Ct),a):n},a.angle(90)},t.geo.distance=function(t,e){var r,n=(e[0]-t[0])*Ct,a=t[1]*Ct,i=e[1]*Ct,o=Math.sin(n),s=Math.cos(n),l=Math.sin(a),c=Math.cos(a),u=Math.sin(i),h=Math.cos(i);return Math.atan2(Math.sqrt((r=h*o)*r+(r=c*u-l*h*s)*r),l*u+c*h*s)},t.geo.graticule=function(){var e,r,n,a,i,o,s,l,c,u,h,f,p=10,d=p,g=90,v=360,m=2.5;function x(){return{type:\"MultiLineString\",coordinates:b()}}function b(){return t.range(Math.ceil(a/g)*g,n,g).map(h).concat(t.range(Math.ceil(l/v)*v,s,v).map(f)).concat(t.range(Math.ceil(r/p)*p,e,p).filter(function(t){return y(t%g)>kt}).map(c)).concat(t.range(Math.ceil(o/d)*d,i,d).filter(function(t){return y(t%v)>kt}).map(u))}return x.lines=function(){return b().map(function(t){return{type:\"LineString\",coordinates:t}})},x.outline=function(){return{type:\"Polygon\",coordinates:[h(a).concat(f(s).slice(1),h(n).reverse().slice(1),f(l).reverse().slice(1))]}},x.extent=function(t){return arguments.length?x.majorExtent(t).minorExtent(t):x.minorExtent()},x.majorExtent=function(t){return arguments.length?(a=+t[0][0],n=+t[1][0],l=+t[0][1],s=+t[1][1],a>n&&(t=a,a=n,n=t),l>s&&(t=l,l=s,s=t),x.precision(m)):[[a,l],[n,s]]},x.minorExtent=function(t){return arguments.length?(r=+t[0][0],e=+t[1][0],o=+t[0][1],i=+t[1][1],r>e&&(t=r,r=e,e=t),o>i&&(t=o,o=i,i=t),x.precision(m)):[[r,o],[e,i]]},x.step=function(t){return arguments.length?x.majorStep(t).minorStep(t):x.minorStep()},x.majorStep=function(t){return arguments.length?(g=+t[0],v=+t[1],x):[g,v]},x.minorStep=function(t){return arguments.length?(p=+t[0],d=+t[1],x):[p,d]},x.precision=function(t){return arguments.length?(m=+t,c=Nn(o,i,90),u=jn(r,e,m),h=Nn(l,s,90),f=jn(a,n,m),x):m},x.majorExtent([[-180,-90+kt],[180,90-kt]]).minorExtent([[-180,-80-kt],[180,80+kt]])},t.geo.greatArc=function(){var e,r,n=Vn,a=Un;function i(){return{type:\"LineString\",coordinates:[e||n.apply(this,arguments),r||a.apply(this,arguments)]}}return i.distance=function(){return t.geo.distance(e||n.apply(this,arguments),r||a.apply(this,arguments))},i.source=function(t){return arguments.length?(n=t,e=\"function\"==typeof t?null:t,i):n},i.target=function(t){return arguments.length?(a=t,r=\"function\"==typeof t?null:t,i):a},i.precision=function(){return arguments.length?i:0},i},t.geo.interpolate=function(t,e){return r=t[0]*Ct,n=t[1]*Ct,a=e[0]*Ct,i=e[1]*Ct,o=Math.cos(n),s=Math.sin(n),l=Math.cos(i),c=Math.sin(i),u=o*Math.cos(r),h=o*Math.sin(r),f=l*Math.cos(a),p=l*Math.sin(a),d=2*Math.asin(Math.sqrt(Rt(i-n)+o*l*Rt(a-r))),g=1/Math.sin(d),(v=d?function(t){var e=Math.sin(t*=d)*g,r=Math.sin(d-t)*g,n=r*u+e*f,a=r*h+e*p,i=r*s+e*c;return[Math.atan2(a,n)*Lt,Math.atan2(i,Math.sqrt(n*n+a*a))*Lt]}:function(){return[r*Lt,n*Lt]}).distance=d,v;var r,n,a,i,o,s,l,c,u,h,f,p,d,g,v},t.geo.length=function(e){return yn=0,t.geo.stream(e,qn),yn};var qn={sphere:D,point:D,lineStart:function(){var t,e,r;function n(n,a){var i=Math.sin(a*=Ct),o=Math.cos(a),s=y((n*=Ct)-t),l=Math.cos(s);yn+=Math.atan2(Math.sqrt((s=o*Math.sin(s))*s+(s=r*i-e*o*l)*s),e*i+r*o*l),t=n,e=i,r=o}qn.point=function(a,i){t=a*Ct,e=Math.sin(i*=Ct),r=Math.cos(i),qn.point=n},qn.lineEnd=function(){qn.point=qn.lineEnd=D}},lineEnd:D,polygonStart:D,polygonEnd:D};function Hn(t,e){function r(e,r){var n=Math.cos(e),a=Math.cos(r),i=t(n*a);return[i*a*Math.sin(e),i*Math.sin(r)]}return r.invert=function(t,r){var n=Math.sqrt(t*t+r*r),a=e(n),i=Math.sin(a),o=Math.cos(a);return[Math.atan2(t*i,n*o),Math.asin(n&&r*i/n)]},r}var Gn=Hn(function(t){return Math.sqrt(2/(1+t))},function(t){return 2*Math.asin(t/2)});(t.geo.azimuthalEqualArea=function(){return En(Gn)}).raw=Gn;var Yn=Hn(function(t){var e=Math.acos(t);return e&&e/Math.sin(e)},P);function Wn(t,e){var r=Math.cos(t),n=function(t){return Math.tan(At/4+t/2)},a=t===e?Math.sin(t):Math.log(r/Math.cos(e))/Math.log(n(e)/n(t)),i=r*Math.pow(n(t),a)/a;if(!a)return Jn;function o(t,e){i>0?e<-Et+kt&&(e=-Et+kt):e>Et-kt&&(e=Et-kt);var r=i/Math.pow(n(e),a);return[r*Math.sin(a*t),i-r*Math.cos(a*t)]}return o.invert=function(t,e){var r=i-e,n=Pt(a)*Math.sqrt(t*t+r*r);return[Math.atan2(t,r)/a,2*Math.atan(Math.pow(i/n,1/a))-Et]},o}function Xn(t,e){var r=Math.cos(t),n=t===e?Math.sin(t):(r-Math.cos(e))/(e-t),a=r/n+t;if(y(n)<kt)return Pn;function i(t,e){var r=a-e;return[r*Math.sin(n*t),a-r*Math.cos(n*t)]}return i.invert=function(t,e){var r=a-e;return[Math.atan2(t,r)/n,a-Pt(n)*Math.sqrt(t*t+r*r)]},i}(t.geo.azimuthalEquidistant=function(){return En(Yn)}).raw=Yn,(t.geo.conicConformal=function(){return an(Wn)}).raw=Wn,(t.geo.conicEquidistant=function(){return an(Xn)}).raw=Xn;var Zn=Hn(function(t){return 1/t},Math.atan);function Jn(t,e){return[t,Math.log(Math.tan(At/4+e/2))]}function Kn(t){var e,r=En(t),n=r.scale,a=r.translate,i=r.clipExtent;return r.scale=function(){var t=n.apply(r,arguments);return t===r?e?r.clipExtent(null):r:t},r.translate=function(){var t=a.apply(r,arguments);return t===r?e?r.clipExtent(null):r:t},r.clipExtent=function(t){var o=i.apply(r,arguments);if(o===r){if(e=null==t){var s=At*n(),l=a();i([[l[0]-s,l[1]-s],[l[0]+s,l[1]+s]])}}else e&&(o=null);return o},r.clipExtent(null)}(t.geo.gnomonic=function(){return En(Zn)}).raw=Zn,Jn.invert=function(t,e){return[t,2*Math.atan(Math.exp(e))-Et]},(t.geo.mercator=function(){return Kn(Jn)}).raw=Jn;var Qn=Hn(function(){return 1},Math.asin);(t.geo.orthographic=function(){return En(Qn)}).raw=Qn;var $n=Hn(function(t){return 1/(1+t)},function(t){return 2*Math.atan(t)});function ta(t,e){return[Math.log(Math.tan(At/4+e/2)),-t]}function ea(t){return t[0]}function ra(t){return t[1]}function na(t){for(var e=t.length,r=[0,1],n=2,a=2;a<e;a++){for(;n>1&&Ot(t[r[n-2]],t[r[n-1]],t[a])<=0;)--n;r[n++]=a}return r.slice(0,n)}function aa(t,e){return t[0]-e[0]||t[1]-e[1]}(t.geo.stereographic=function(){return En($n)}).raw=$n,ta.invert=function(t,e){return[-e,2*Math.atan(Math.exp(t))-Et]},(t.geo.transverseMercator=function(){var t=Kn(ta),e=t.center,r=t.rotate;return t.center=function(t){return t?e([-t[1],t[0]]):[(t=e())[1],-t[0]]},t.rotate=function(t){return t?r([t[0],t[1],t.length>2?t[2]+90:90]):[(t=r())[0],t[1],t[2]-90]},r([0,0,90])}).raw=ta,t.geom={},t.geom.hull=function(t){var e=ea,r=ra;if(arguments.length)return n(t);function n(t){if(t.length<3)return[];var n,a=ve(e),i=ve(r),o=t.length,s=[],l=[];for(n=0;n<o;n++)s.push([+a.call(this,t[n],n),+i.call(this,t[n],n),n]);for(s.sort(aa),n=0;n<o;n++)l.push([s[n][0],-s[n][1]]);var c=na(s),u=na(l),h=u[0]===c[0],f=u[u.length-1]===c[c.length-1],p=[];for(n=c.length-1;n>=0;--n)p.push(t[s[c[n]][2]]);for(n=+h;n<u.length-f;++n)p.push(t[s[u[n]][2]]);return p}return n.x=function(t){return arguments.length?(e=t,n):e},n.y=function(t){return arguments.length?(r=t,n):r},n},t.geom.polygon=function(t){return U(t,ia),t};var ia=t.geom.polygon.prototype=[];function oa(t,e,r){return(r[0]-e[0])*(t[1]-e[1])<(r[1]-e[1])*(t[0]-e[0])}function sa(t,e,r,n){var a=t[0],i=r[0],o=e[0]-a,s=n[0]-i,l=t[1],c=r[1],u=e[1]-l,h=n[1]-c,f=(s*(l-c)-h*(a-i))/(h*o-s*u);return[a+f*o,l+f*u]}function la(t){var e=t[0],r=t[t.length-1];return!(e[0]-r[0]||e[1]-r[1])}ia.area=function(){for(var t,e=-1,r=this.length,n=this[r-1],a=0;++e<r;)t=n,n=this[e],a+=t[1]*n[0]-t[0]*n[1];return.5*a},ia.centroid=function(t){var e,r,n=-1,a=this.length,i=0,o=0,s=this[a-1];for(arguments.length||(t=-1/(6*this.area()));++n<a;)e=s,s=this[n],r=e[0]*s[1]-s[0]*e[1],i+=(e[0]+s[0])*r,o+=(e[1]+s[1])*r;return[i*t,o*t]},ia.clip=function(t){for(var e,r,n,a,i,o,s=la(t),l=-1,c=this.length-la(this),u=this[c-1];++l<c;){for(e=t.slice(),t.length=0,a=this[l],i=e[(n=e.length-s)-1],r=-1;++r<n;)oa(o=e[r],u,a)?(oa(i,u,a)||t.push(sa(i,o,u,a)),t.push(o)):oa(i,u,a)&&t.push(sa(i,o,u,a)),i=o;s&&t.push(t[0]),u=a}return t};var ca,ua,ha,fa,pa,da=[],ga=[];function va(){za(this),this.edge=this.site=this.circle=null}function ma(t){var e=da.pop()||new va;return e.site=t,e}function ya(t){Sa(t),ha.remove(t),da.push(t),za(t)}function xa(t){var e=t.circle,r=e.x,n=e.cy,a={x:r,y:n},i=t.P,o=t.N,s=[t];ya(t);for(var l=i;l.circle&&y(r-l.circle.x)<kt&&y(n-l.circle.cy)<kt;)i=l.P,s.unshift(l),ya(l),l=i;s.unshift(l),Sa(l);for(var c=o;c.circle&&y(r-c.circle.x)<kt&&y(n-c.circle.cy)<kt;)o=c.N,s.push(c),ya(c),c=o;s.push(c),Sa(c);var u,h=s.length;for(u=1;u<h;++u)c=s[u],l=s[u-1],Pa(c.edge,l.site,c.site,a);l=s[0],(c=s[h-1]).edge=La(l.site,c.site,null,a),Ma(l),Ma(c)}function ba(t){for(var e,r,n,a,i=t.x,o=t.y,s=ha._;s;)if((n=_a(s,o)-i)>kt)s=s.L;else{if(!((a=i-wa(s,o))>kt)){n>-kt?(e=s.P,r=s):a>-kt?(e=s,r=s.N):e=r=s;break}if(!s.R){e=s;break}s=s.R}var l=ma(t);if(ha.insert(e,l),e||r){if(e===r)return Sa(e),r=ma(e.site),ha.insert(l,r),l.edge=r.edge=La(e.site,l.site),Ma(e),void Ma(r);if(r){Sa(e),Sa(r);var c=e.site,u=c.x,h=c.y,f=t.x-u,p=t.y-h,d=r.site,g=d.x-u,v=d.y-h,m=2*(f*v-p*g),y=f*f+p*p,x=g*g+v*v,b={x:(v*y-p*x)/m+u,y:(f*x-g*y)/m+h};Pa(r.edge,c,d,b),l.edge=La(c,t,null,b),r.edge=La(t,d,null,b),Ma(e),Ma(r)}else l.edge=La(e.site,l.site)}}function _a(t,e){var r=t.site,n=r.x,a=r.y,i=a-e;if(!i)return n;var o=t.P;if(!o)return-1/0;var s=(r=o.site).x,l=r.y,c=l-e;if(!c)return s;var u=s-n,h=1/i-1/c,f=u/c;return h?(-f+Math.sqrt(f*f-2*h*(u*u/(-2*c)-l+c/2+a-i/2)))/h+n:(n+s)/2}function wa(t,e){var r=t.N;if(r)return _a(r,e);var n=t.site;return n.y===e?n.x:1/0}function ka(t){this.site=t,this.edges=[]}function Ta(t,e){return e.angle-t.angle}function Aa(){za(this),this.x=this.y=this.arc=this.site=this.cy=null}function Ma(t){var e=t.P,r=t.N;if(e&&r){var n=e.site,a=t.site,i=r.site;if(n!==i){var o=a.x,s=a.y,l=n.x-o,c=n.y-s,u=i.x-o,h=2*(l*(v=i.y-s)-c*u);if(!(h>=-Tt)){var f=l*l+c*c,p=u*u+v*v,d=(v*f-c*p)/h,g=(l*p-u*f)/h,v=g+s,m=ga.pop()||new Aa;m.arc=t,m.site=a,m.x=d+o,m.y=v+Math.sqrt(d*d+g*g),m.cy=v,t.circle=m;for(var y=null,x=pa._;x;)if(m.y<x.y||m.y===x.y&&m.x<=x.x){if(!x.L){y=x.P;break}x=x.L}else{if(!x.R){y=x;break}x=x.R}pa.insert(y,m),y||(fa=m)}}}}function Sa(t){var e=t.circle;e&&(e.P||(fa=e.N),pa.remove(e),ga.push(e),za(e),t.circle=null)}function Ea(t,e){var r=t.b;if(r)return!0;var n,a,i=t.a,o=e[0][0],s=e[1][0],l=e[0][1],c=e[1][1],u=t.l,h=t.r,f=u.x,p=u.y,d=h.x,g=h.y,v=(f+d)/2,m=(p+g)/2;if(g===p){if(v<o||v>=s)return;if(f>d){if(i){if(i.y>=c)return}else i={x:v,y:l};r={x:v,y:c}}else{if(i){if(i.y<l)return}else i={x:v,y:c};r={x:v,y:l}}}else if(a=m-(n=(f-d)/(g-p))*v,n<-1||n>1)if(f>d){if(i){if(i.y>=c)return}else i={x:(l-a)/n,y:l};r={x:(c-a)/n,y:c}}else{if(i){if(i.y<l)return}else i={x:(c-a)/n,y:c};r={x:(l-a)/n,y:l}}else if(p<g){if(i){if(i.x>=s)return}else i={x:o,y:n*o+a};r={x:s,y:n*s+a}}else{if(i){if(i.x<o)return}else i={x:s,y:n*s+a};r={x:o,y:n*o+a}}return t.a=i,t.b=r,!0}function Ca(t,e){this.l=t,this.r=e,this.a=this.b=null}function La(t,e,r,n){var a=new Ca(t,e);return ca.push(a),r&&Pa(a,t,e,r),n&&Pa(a,e,t,n),ua[t.i].edges.push(new Oa(a,t,e)),ua[e.i].edges.push(new Oa(a,e,t)),a}function Pa(t,e,r,n){t.a||t.b?t.l===r?t.b=n:t.a=n:(t.a=n,t.l=e,t.r=r)}function Oa(t,e,r){var n=t.a,a=t.b;this.edge=t,this.site=e,this.angle=r?Math.atan2(r.y-e.y,r.x-e.x):t.l===e?Math.atan2(a.x-n.x,n.y-a.y):Math.atan2(n.x-a.x,a.y-n.y)}function Ia(){this._=null}function za(t){t.U=t.C=t.L=t.R=t.P=t.N=null}function Da(t,e){var r=e,n=e.R,a=r.U;a?a.L===r?a.L=n:a.R=n:t._=n,n.U=a,r.U=n,r.R=n.L,r.R&&(r.R.U=r),n.L=r}function Ra(t,e){var r=e,n=e.L,a=r.U;a?a.L===r?a.L=n:a.R=n:t._=n,n.U=a,r.U=n,r.L=n.R,r.L&&(r.L.U=r),n.R=r}function Fa(t){for(;t.L;)t=t.L;return t}function Ba(t,e){var r,n,a,i=t.sort(Na).pop();for(ca=[],ua=new Array(t.length),ha=new Ia,pa=new Ia;;)if(a=fa,i&&(!a||i.y<a.y||i.y===a.y&&i.x<a.x))i.x===r&&i.y===n||(ua[i.i]=new ka(i),ba(i),r=i.x,n=i.y),i=t.pop();else{if(!a)break;xa(a.arc)}e&&(function(t){for(var e,r=ca,n=en(t[0][0],t[0][1],t[1][0],t[1][1]),a=r.length;a--;)(!Ea(e=r[a],t)||!n(e)||y(e.a.x-e.b.x)<kt&&y(e.a.y-e.b.y)<kt)&&(e.a=e.b=null,r.splice(a,1))}(e),function(t){for(var e,r,n,a,i,o,s,l,c,u,h=t[0][0],f=t[1][0],p=t[0][1],d=t[1][1],g=ua,v=g.length;v--;)if((i=g[v])&&i.prepare())for(l=(s=i.edges).length,o=0;o<l;)n=(u=s[o].end()).x,a=u.y,e=(c=s[++o%l].start()).x,r=c.y,(y(n-e)>kt||y(a-r)>kt)&&(s.splice(o,0,new Oa((m=i.site,x=u,b=y(n-h)<kt&&d-a>kt?{x:h,y:y(e-h)<kt?r:d}:y(a-d)<kt&&f-n>kt?{x:y(r-d)<kt?e:f,y:d}:y(n-f)<kt&&a-p>kt?{x:f,y:y(e-f)<kt?r:p}:y(a-p)<kt&&n-h>kt?{x:y(r-p)<kt?e:h,y:p}:null,_=void 0,_=new Ca(m,null),_.a=x,_.b=b,ca.push(_),_),i.site,null)),++l);var m,x,b,_}(e));var o={cells:ua,edges:ca};return ha=pa=ca=ua=null,o}function Na(t,e){return e.y-t.y||e.x-t.x}ka.prototype.prepare=function(){for(var t,e=this.edges,r=e.length;r--;)(t=e[r].edge).b&&t.a||e.splice(r,1);return e.sort(Ta),e.length},Oa.prototype={start:function(){return this.edge.l===this.site?this.edge.a:this.edge.b},end:function(){return this.edge.l===this.site?this.edge.b:this.edge.a}},Ia.prototype={insert:function(t,e){var r,n,a;if(t){if(e.P=t,e.N=t.N,t.N&&(t.N.P=e),t.N=e,t.R){for(t=t.R;t.L;)t=t.L;t.L=e}else t.R=e;r=t}else this._?(t=Fa(this._),e.P=null,e.N=t,t.P=t.L=e,r=t):(e.P=e.N=null,this._=e,r=null);for(e.L=e.R=null,e.U=r,e.C=!0,t=e;r&&r.C;)r===(n=r.U).L?(a=n.R)&&a.C?(r.C=a.C=!1,n.C=!0,t=n):(t===r.R&&(Da(this,r),r=(t=r).U),r.C=!1,n.C=!0,Ra(this,n)):(a=n.L)&&a.C?(r.C=a.C=!1,n.C=!0,t=n):(t===r.L&&(Ra(this,r),r=(t=r).U),r.C=!1,n.C=!0,Da(this,n)),r=t.U;this._.C=!1},remove:function(t){t.N&&(t.N.P=t.P),t.P&&(t.P.N=t.N),t.N=t.P=null;var e,r,n,a=t.U,i=t.L,o=t.R;if(r=i?o?Fa(o):i:o,a?a.L===t?a.L=r:a.R=r:this._=r,i&&o?(n=r.C,r.C=t.C,r.L=i,i.U=r,r!==o?(a=r.U,r.U=t.U,t=r.R,a.L=t,r.R=o,o.U=r):(r.U=a,a=r,t=r.R)):(n=t.C,t=r),t&&(t.U=a),!n)if(t&&t.C)t.C=!1;else{do{if(t===this._)break;if(t===a.L){if((e=a.R).C&&(e.C=!1,a.C=!0,Da(this,a),e=a.R),e.L&&e.L.C||e.R&&e.R.C){e.R&&e.R.C||(e.L.C=!1,e.C=!0,Ra(this,e),e=a.R),e.C=a.C,a.C=e.R.C=!1,Da(this,a),t=this._;break}}else if((e=a.L).C&&(e.C=!1,a.C=!0,Ra(this,a),e=a.L),e.L&&e.L.C||e.R&&e.R.C){e.L&&e.L.C||(e.R.C=!1,e.C=!0,Da(this,e),e=a.L),e.C=a.C,a.C=e.L.C=!1,Ra(this,a),t=this._;break}e.C=!0,t=a,a=a.U}while(!t.C);t&&(t.C=!1)}}},t.geom.voronoi=function(t){var e=ea,r=ra,n=e,a=r,i=ja;if(t)return o(t);function o(t){var e=new Array(t.length),r=i[0][0],n=i[0][1],a=i[1][0],o=i[1][1];return Ba(s(t),i).cells.forEach(function(i,s){var l=i.edges,c=i.site;(e[s]=l.length?l.map(function(t){var e=t.start();return[e.x,e.y]}):c.x>=r&&c.x<=a&&c.y>=n&&c.y<=o?[[r,o],[a,o],[a,n],[r,n]]:[]).point=t[s]}),e}function s(t){return t.map(function(t,e){return{x:Math.round(n(t,e)/kt)*kt,y:Math.round(a(t,e)/kt)*kt,i:e}})}return o.links=function(t){return Ba(s(t)).edges.filter(function(t){return t.l&&t.r}).map(function(e){return{source:t[e.l.i],target:t[e.r.i]}})},o.triangles=function(t){var e=[];return Ba(s(t)).cells.forEach(function(r,n){for(var a,i,o,s,l=r.site,c=r.edges.sort(Ta),u=-1,h=c.length,f=c[h-1].edge,p=f.l===l?f.r:f.l;++u<h;)f,a=p,p=(f=c[u].edge).l===l?f.r:f.l,n<a.i&&n<p.i&&(o=a,s=p,((i=l).x-s.x)*(o.y-i.y)-(i.x-o.x)*(s.y-i.y)<0)&&e.push([t[n],t[a.i],t[p.i]])}),e},o.x=function(t){return arguments.length?(n=ve(e=t),o):e},o.y=function(t){return arguments.length?(a=ve(r=t),o):r},o.clipExtent=function(t){return arguments.length?(i=null==t?ja:t,o):i===ja?null:i},o.size=function(t){return arguments.length?o.clipExtent(t&&[[0,0],t]):i===ja?null:i&&i[1]},o};var ja=[[-1e6,-1e6],[1e6,1e6]];function Va(t){return t.x}function Ua(t){return t.y}function qa(e,r){e=t.rgb(e),r=t.rgb(r);var n=e.r,a=e.g,i=e.b,o=r.r-n,s=r.g-a,l=r.b-i;return function(t){return\"#\"+ce(Math.round(n+o*t))+ce(Math.round(a+s*t))+ce(Math.round(i+l*t))}}function Ha(t,e){var r,n={},a={};for(r in t)r in e?n[r]=Za(t[r],e[r]):a[r]=t[r];for(r in e)r in t||(a[r]=e[r]);return function(t){for(r in n)a[r]=n[r](t);return a}}function Ga(t,e){return t=+t,e=+e,function(r){return t*(1-r)+e*r}}function Ya(t,e){var r,n,a,i=Wa.lastIndex=Xa.lastIndex=0,o=-1,s=[],l=[];for(t+=\"\",e+=\"\";(r=Wa.exec(t))&&(n=Xa.exec(e));)(a=n.index)>i&&(a=e.slice(i,a),s[o]?s[o]+=a:s[++o]=a),(r=r[0])===(n=n[0])?s[o]?s[o]+=n:s[++o]=n:(s[++o]=null,l.push({i:o,x:Ga(r,n)})),i=Xa.lastIndex;return i<e.length&&(a=e.slice(i),s[o]?s[o]+=a:s[++o]=a),s.length<2?l[0]?(e=l[0].x,function(t){return e(t)+\"\"}):function(){return e}:(e=l.length,function(t){for(var r,n=0;n<e;++n)s[(r=l[n]).i]=r.x(t);return s.join(\"\")})}t.geom.delaunay=function(e){return t.geom.voronoi().triangles(e)},t.geom.quadtree=function(t,e,r,n,a){var i,o=ea,s=ra;if(i=arguments.length)return o=Va,s=Ua,3===i&&(a=r,n=e,r=e=0),l(t);function l(t){var l,c,u,h,f,p,d,g,v,m=ve(o),x=ve(s);if(null!=e)p=e,d=r,g=n,v=a;else if(g=v=-(p=d=1/0),c=[],u=[],f=t.length,i)for(h=0;h<f;++h)(l=t[h]).x<p&&(p=l.x),l.y<d&&(d=l.y),l.x>g&&(g=l.x),l.y>v&&(v=l.y),c.push(l.x),u.push(l.y);else for(h=0;h<f;++h){var b=+m(l=t[h],h),_=+x(l,h);b<p&&(p=b),_<d&&(d=_),b>g&&(g=b),_>v&&(v=_),c.push(b),u.push(_)}var w=g-p,k=v-d;function T(t,e,r,n,a,i,o,s){if(!isNaN(r)&&!isNaN(n))if(t.leaf){var l=t.x,c=t.y;if(null!=l)if(y(l-r)+y(c-n)<.01)A(t,e,r,n,a,i,o,s);else{var u=t.point;t.x=t.y=t.point=null,A(t,u,l,c,a,i,o,s),A(t,e,r,n,a,i,o,s)}else t.x=r,t.y=n,t.point=e}else A(t,e,r,n,a,i,o,s)}function A(t,e,r,n,a,i,o,s){var l=.5*(a+o),c=.5*(i+s),u=r>=l,h=n>=c,f=h<<1|u;t.leaf=!1,u?a=l:o=l,h?i=c:s=c,T(t=t.nodes[f]||(t.nodes[f]={leaf:!0,nodes:[],point:null,x:null,y:null,add:function(t){T(M,t,+m(t,++h),+x(t,h),p,d,g,v)}}),e,r,n,a,i,o,s)}w>k?v=d+w:g=p+k;var M={leaf:!0,nodes:[],point:null,x:null,y:null,add:function(t){T(M,t,+m(t,++h),+x(t,h),p,d,g,v)}};if(M.visit=function(t){!function t(e,r,n,a,i,o){if(!e(r,n,a,i,o)){var s=.5*(n+i),l=.5*(a+o),c=r.nodes;c[0]&&t(e,c[0],n,a,s,l),c[1]&&t(e,c[1],s,a,i,l),c[2]&&t(e,c[2],n,l,s,o),c[3]&&t(e,c[3],s,l,i,o)}}(t,M,p,d,g,v)},M.find=function(t){return function(t,e,r,n,a,i,o){var s,l=1/0;return function t(c,u,h,f,p){if(!(u>i||h>o||f<n||p<a)){if(d=c.point){var d,g=e-c.x,v=r-c.y,m=g*g+v*v;if(m<l){var y=Math.sqrt(l=m);n=e-y,a=r-y,i=e+y,o=r+y,s=d}}for(var x=c.nodes,b=.5*(u+f),_=.5*(h+p),w=(r>=_)<<1|e>=b,k=w+4;w<k;++w)if(c=x[3&w])switch(3&w){case 0:t(c,u,h,b,_);break;case 1:t(c,b,h,f,_);break;case 2:t(c,u,_,b,p);break;case 3:t(c,b,_,f,p)}}}(t,n,a,i,o),s}(M,t[0],t[1],p,d,g,v)},h=-1,null==e){for(;++h<f;)T(M,t[h],c[h],u[h],p,d,g,v);--h}else t.forEach(M.add);return c=u=t=l=null,M}return l.x=function(t){return arguments.length?(o=t,l):o},l.y=function(t){return arguments.length?(s=t,l):s},l.extent=function(t){return arguments.length?(null==t?e=r=n=a=null:(e=+t[0][0],r=+t[0][1],n=+t[1][0],a=+t[1][1]),l):null==e?null:[[e,r],[n,a]]},l.size=function(t){return arguments.length?(null==t?e=r=n=a=null:(e=r=0,n=+t[0],a=+t[1]),l):null==e?null:[n-e,a-r]},l},t.interpolateRgb=qa,t.interpolateObject=Ha,t.interpolateNumber=Ga,t.interpolateString=Ya;var Wa=/[-+]?(?:\\d+\\.?\\d*|\\.?\\d+)(?:[eE][-+]?\\d+)?/g,Xa=new RegExp(Wa.source,\"g\");function Za(e,r){for(var n,a=t.interpolators.length;--a>=0&&!(n=t.interpolators[a](e,r)););return n}function Ja(t,e){var r,n=[],a=[],i=t.length,o=e.length,s=Math.min(t.length,e.length);for(r=0;r<s;++r)n.push(Za(t[r],e[r]));for(;r<i;++r)a[r]=t[r];for(;r<o;++r)a[r]=e[r];return function(t){for(r=0;r<s;++r)a[r]=n[r](t);return a}}t.interpolate=Za,t.interpolators=[function(t,e){var r=typeof e;return(\"string\"===r?ge.has(e.toLowerCase())||/^(#|rgb\\(|hsl\\()/i.test(e)?qa:Ya:e instanceof Vt?qa:Array.isArray(e)?Ja:\"object\"===r&&isNaN(e)?Ha:Ga)(t,e)}],t.interpolateArray=Ja;var Ka=function(){return P},Qa=t.map({linear:Ka,poly:function(t){return function(e){return Math.pow(e,t)}},quad:function(){return ri},cubic:function(){return ni},sin:function(){return ii},exp:function(){return oi},circle:function(){return si},elastic:function(t,e){var r;arguments.length<2&&(e=.45);arguments.length?r=e/Mt*Math.asin(1/t):(t=1,r=e/4);return function(n){return 1+t*Math.pow(2,-10*n)*Math.sin((n-r)*Mt/e)}},back:function(t){t||(t=1.70158);return function(e){return e*e*((t+1)*e-t)}},bounce:function(){return li}}),$a=t.map({in:P,out:ti,\"in-out\":ei,\"out-in\":function(t){return ei(ti(t))}});function ti(t){return function(e){return 1-t(1-e)}}function ei(t){return function(e){return.5*(e<.5?t(2*e):2-t(2-2*e))}}function ri(t){return t*t}function ni(t){return t*t*t}function ai(t){if(t<=0)return 0;if(t>=1)return 1;var e=t*t,r=e*t;return 4*(t<.5?r:3*(t-e)+r-.75)}function ii(t){return 1-Math.cos(t*Et)}function oi(t){return Math.pow(2,10*(t-1))}function si(t){return 1-Math.sqrt(1-t*t)}function li(t){return t<1/2.75?7.5625*t*t:t<2/2.75?7.5625*(t-=1.5/2.75)*t+.75:t<2.5/2.75?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375}function ci(t,e){return e-=t,function(r){return Math.round(t+e*r)}}function ui(t){var e,r,n,a=[t.a,t.b],i=[t.c,t.d],o=fi(a),s=hi(a,i),l=fi(((e=i)[0]+=(n=-s)*(r=a)[0],e[1]+=n*r[1],e))||0;a[0]*i[1]<i[0]*a[1]&&(a[0]*=-1,a[1]*=-1,o*=-1,s*=-1),this.rotate=(o?Math.atan2(a[1],a[0]):Math.atan2(-i[0],i[1]))*Lt,this.translate=[t.e,t.f],this.scale=[o,l],this.skew=l?Math.atan2(s,l)*Lt:0}function hi(t,e){return t[0]*e[0]+t[1]*e[1]}function fi(t){var e=Math.sqrt(hi(t,t));return e&&(t[0]/=e,t[1]/=e),e}t.ease=function(t){var e,n=t.indexOf(\"-\"),a=n>=0?t.slice(0,n):t,i=n>=0?t.slice(n+1):\"in\";return a=Qa.get(a)||Ka,i=$a.get(i)||P,e=i(a.apply(null,r.call(arguments,1))),function(t){return t<=0?0:t>=1?1:e(t)}},t.interpolateHcl=function(e,r){e=t.hcl(e),r=t.hcl(r);var n=e.h,a=e.c,i=e.l,o=r.h-n,s=r.c-a,l=r.l-i;isNaN(s)&&(s=0,a=isNaN(a)?r.c:a);isNaN(o)?(o=0,n=isNaN(n)?r.h:n):o>180?o-=360:o<-180&&(o+=360);return function(t){return Wt(n+o*t,a+s*t,i+l*t)+\"\"}},t.interpolateHsl=function(e,r){e=t.hsl(e),r=t.hsl(r);var n=e.h,a=e.s,i=e.l,o=r.h-n,s=r.s-a,l=r.l-i;isNaN(s)&&(s=0,a=isNaN(a)?r.s:a);isNaN(o)?(o=0,n=isNaN(n)?r.h:n):o>180?o-=360:o<-180&&(o+=360);return function(t){return Ht(n+o*t,a+s*t,i+l*t)+\"\"}},t.interpolateLab=function(e,r){e=t.lab(e),r=t.lab(r);var n=e.l,a=e.a,i=e.b,o=r.l-n,s=r.a-a,l=r.b-i;return function(t){return te(n+o*t,a+s*t,i+l*t)+\"\"}},t.interpolateRound=ci,t.transform=function(e){var r=a.createElementNS(t.ns.prefix.svg,\"g\");return(t.transform=function(t){if(null!=t){r.setAttribute(\"transform\",t);var e=r.transform.baseVal.consolidate()}return new ui(e?e.matrix:pi)})(e)},ui.prototype.toString=function(){return\"translate(\"+this.translate+\")rotate(\"+this.rotate+\")skewX(\"+this.skew+\")scale(\"+this.scale+\")\"};var pi={a:1,b:0,c:0,d:1,e:0,f:0};function di(t){return t.length?t.pop()+\",\":\"\"}function gi(e,r){var n=[],a=[];return e=t.transform(e),r=t.transform(r),function(t,e,r,n){if(t[0]!==e[0]||t[1]!==e[1]){var a=r.push(\"translate(\",null,\",\",null,\")\");n.push({i:a-4,x:Ga(t[0],e[0])},{i:a-2,x:Ga(t[1],e[1])})}else(e[0]||e[1])&&r.push(\"translate(\"+e+\")\")}(e.translate,r.translate,n,a),function(t,e,r,n){t!==e?(t-e>180?e+=360:e-t>180&&(t+=360),n.push({i:r.push(di(r)+\"rotate(\",null,\")\")-2,x:Ga(t,e)})):e&&r.push(di(r)+\"rotate(\"+e+\")\")}(e.rotate,r.rotate,n,a),function(t,e,r,n){t!==e?n.push({i:r.push(di(r)+\"skewX(\",null,\")\")-2,x:Ga(t,e)}):e&&r.push(di(r)+\"skewX(\"+e+\")\")}(e.skew,r.skew,n,a),function(t,e,r,n){if(t[0]!==e[0]||t[1]!==e[1]){var a=r.push(di(r)+\"scale(\",null,\",\",null,\")\");n.push({i:a-4,x:Ga(t[0],e[0])},{i:a-2,x:Ga(t[1],e[1])})}else 1===e[0]&&1===e[1]||r.push(di(r)+\"scale(\"+e+\")\")}(e.scale,r.scale,n,a),e=r=null,function(t){for(var e,r=-1,i=a.length;++r<i;)n[(e=a[r]).i]=e.x(t);return n.join(\"\")}}function vi(t,e){return e=(e-=t=+t)||1/e,function(r){return(r-t)/e}}function mi(t,e){return e=(e-=t=+t)||1/e,function(r){return Math.max(0,Math.min(1,(r-t)/e))}}function yi(t){for(var e=t.source,r=t.target,n=function(t,e){if(t===e)return t;var r=xi(t),n=xi(e),a=r.pop(),i=n.pop(),o=null;for(;a===i;)o=a,a=r.pop(),i=n.pop();return o}(e,r),a=[e];e!==n;)e=e.parent,a.push(e);for(var i=a.length;r!==n;)a.splice(i,0,r),r=r.parent;return a}function xi(t){for(var e=[],r=t.parent;null!=r;)e.push(t),t=r,r=r.parent;return e.push(t),e}function bi(t){t.fixed|=2}function _i(t){t.fixed&=-7}function wi(t){t.fixed|=4,t.px=t.x,t.py=t.y}function ki(t){t.fixed&=-5}t.interpolateTransform=gi,t.layout={},t.layout.bundle=function(){return function(t){for(var e=[],r=-1,n=t.length;++r<n;)e.push(yi(t[r]));return e}},t.layout.chord=function(){var e,r,n,a,i,o,s,l={},c=0;function u(){var l,u,f,p,d,g={},v=[],m=t.range(a),y=[];for(e=[],r=[],l=0,p=-1;++p<a;){for(u=0,d=-1;++d<a;)u+=n[p][d];v.push(u),y.push(t.range(a)),l+=u}for(i&&m.sort(function(t,e){return i(v[t],v[e])}),o&&y.forEach(function(t,e){t.sort(function(t,r){return o(n[e][t],n[e][r])})}),l=(Mt-c*a)/l,u=0,p=-1;++p<a;){for(f=u,d=-1;++d<a;){var x=m[p],b=y[x][d],_=n[x][b],w=u,k=u+=_*l;g[x+\"-\"+b]={index:x,subindex:b,startAngle:w,endAngle:k,value:_}}r[x]={index:x,startAngle:f,endAngle:u,value:v[x]},u+=c}for(p=-1;++p<a;)for(d=p-1;++d<a;){var T=g[p+\"-\"+d],A=g[d+\"-\"+p];(T.value||A.value)&&e.push(T.value<A.value?{source:A,target:T}:{source:T,target:A})}s&&h()}function h(){e.sort(function(t,e){return s((t.source.value+t.target.value)/2,(e.source.value+e.target.value)/2)})}return l.matrix=function(t){return arguments.length?(a=(n=t)&&n.length,e=r=null,l):n},l.padding=function(t){return arguments.length?(c=t,e=r=null,l):c},l.sortGroups=function(t){return arguments.length?(i=t,e=r=null,l):i},l.sortSubgroups=function(t){return arguments.length?(o=t,e=null,l):o},l.sortChords=function(t){return arguments.length?(s=t,e&&h(),l):s},l.chords=function(){return e||u(),e},l.groups=function(){return r||u(),r},l},t.layout.force=function(){var e,r,n,a,i,o,s={},l=t.dispatch(\"start\",\"tick\",\"end\"),c=[1,1],u=.9,h=Ti,f=Ai,p=-30,d=Mi,g=.1,v=.64,m=[],y=[];function x(t){return function(e,r,n,a){if(e.point!==t){var i=e.cx-t.x,o=e.cy-t.y,s=a-r,l=i*i+o*o;if(s*s/v<l){if(l<d){var c=e.charge/l;t.px-=i*c,t.py-=o*c}return!0}if(e.point&&l&&l<d){c=e.pointCharge/l;t.px-=i*c,t.py-=o*c}}return!e.charge}}function b(e){e.px=t.event.x,e.py=t.event.y,s.resume()}return s.tick=function(){if((n*=.99)<.005)return e=null,l.end({type:\"end\",alpha:n=0}),!0;var r,s,h,f,d,v,b,_,w,k=m.length,T=y.length;for(s=0;s<T;++s)f=(h=y[s]).source,(v=(_=(d=h.target).x-f.x)*_+(w=d.y-f.y)*w)&&(_*=v=n*i[s]*((v=Math.sqrt(v))-a[s])/v,w*=v,d.x-=_*(b=f.weight+d.weight?f.weight/(f.weight+d.weight):.5),d.y-=w*b,f.x+=_*(b=1-b),f.y+=w*b);if((b=n*g)&&(_=c[0]/2,w=c[1]/2,s=-1,b))for(;++s<k;)(h=m[s]).x+=(_-h.x)*b,h.y+=(w-h.y)*b;if(p)for(!function t(e,r,n){var a=0,i=0;e.charge=0;if(!e.leaf)for(var o,s=e.nodes,l=s.length,c=-1;++c<l;)null!=(o=s[c])&&(t(o,r,n),e.charge+=o.charge,a+=o.charge*o.cx,i+=o.charge*o.cy);if(e.point){e.leaf||(e.point.x+=Math.random()-.5,e.point.y+=Math.random()-.5);var u=r*n[e.point.index];e.charge+=e.pointCharge=u,a+=u*e.point.x,i+=u*e.point.y}e.cx=a/e.charge;e.cy=i/e.charge}(r=t.geom.quadtree(m),n,o),s=-1;++s<k;)(h=m[s]).fixed||r.visit(x(h));for(s=-1;++s<k;)(h=m[s]).fixed?(h.x=h.px,h.y=h.py):(h.x-=(h.px-(h.px=h.x))*u,h.y-=(h.py-(h.py=h.y))*u);l.tick({type:\"tick\",alpha:n})},s.nodes=function(t){return arguments.length?(m=t,s):m},s.links=function(t){return arguments.length?(y=t,s):y},s.size=function(t){return arguments.length?(c=t,s):c},s.linkDistance=function(t){return arguments.length?(h=\"function\"==typeof t?t:+t,s):h},s.distance=s.linkDistance,s.linkStrength=function(t){return arguments.length?(f=\"function\"==typeof t?t:+t,s):f},s.friction=function(t){return arguments.length?(u=+t,s):u},s.charge=function(t){return arguments.length?(p=\"function\"==typeof t?t:+t,s):p},s.chargeDistance=function(t){return arguments.length?(d=t*t,s):Math.sqrt(d)},s.gravity=function(t){return arguments.length?(g=+t,s):g},s.theta=function(t){return arguments.length?(v=t*t,s):Math.sqrt(v)},s.alpha=function(t){return arguments.length?(t=+t,n?t>0?n=t:(e.c=null,e.t=NaN,e=null,l.end({type:\"end\",alpha:n=0})):t>0&&(l.start({type:\"start\",alpha:n=t}),e=Te(s.tick)),s):n},s.start=function(){var t,e,r,n=m.length,l=y.length,u=c[0],d=c[1];for(t=0;t<n;++t)(r=m[t]).index=t,r.weight=0;for(t=0;t<l;++t)\"number\"==typeof(r=y[t]).source&&(r.source=m[r.source]),\"number\"==typeof r.target&&(r.target=m[r.target]),++r.source.weight,++r.target.weight;for(t=0;t<n;++t)r=m[t],isNaN(r.x)&&(r.x=g(\"x\",u)),isNaN(r.y)&&(r.y=g(\"y\",d)),isNaN(r.px)&&(r.px=r.x),isNaN(r.py)&&(r.py=r.y);if(a=[],\"function\"==typeof h)for(t=0;t<l;++t)a[t]=+h.call(this,y[t],t);else for(t=0;t<l;++t)a[t]=h;if(i=[],\"function\"==typeof f)for(t=0;t<l;++t)i[t]=+f.call(this,y[t],t);else for(t=0;t<l;++t)i[t]=f;if(o=[],\"function\"==typeof p)for(t=0;t<n;++t)o[t]=+p.call(this,m[t],t);else for(t=0;t<n;++t)o[t]=p;function g(r,a){if(!e){for(e=new Array(n),c=0;c<n;++c)e[c]=[];for(c=0;c<l;++c){var i=y[c];e[i.source.index].push(i.target),e[i.target.index].push(i.source)}}for(var o,s=e[t],c=-1,u=s.length;++c<u;)if(!isNaN(o=s[c][r]))return o;return Math.random()*a}return s.resume()},s.resume=function(){return s.alpha(.1)},s.stop=function(){return s.alpha(0)},s.drag=function(){if(r||(r=t.behavior.drag().origin(P).on(\"dragstart.force\",bi).on(\"drag.force\",b).on(\"dragend.force\",_i)),!arguments.length)return r;this.on(\"mouseover.force\",wi).on(\"mouseout.force\",ki).call(r)},t.rebind(s,l,\"on\")};var Ti=20,Ai=1,Mi=1/0;function Si(e,r){return t.rebind(e,r,\"sort\",\"children\",\"value\"),e.nodes=e,e.links=Ii,e}function Ei(t,e){for(var r=[t];null!=(t=r.pop());)if(e(t),(a=t.children)&&(n=a.length))for(var n,a;--n>=0;)r.push(a[n])}function Ci(t,e){for(var r=[t],n=[];null!=(t=r.pop());)if(n.push(t),(i=t.children)&&(a=i.length))for(var a,i,o=-1;++o<a;)r.push(i[o]);for(;null!=(t=n.pop());)e(t)}function Li(t){return t.children}function Pi(t){return t.value}function Oi(t,e){return e.value-t.value}function Ii(e){return t.merge(e.map(function(t){return(t.children||[]).map(function(e){return{source:t,target:e}})}))}t.layout.hierarchy=function(){var t=Oi,e=Li,r=Pi;function n(a){var i,o=[a],s=[];for(a.depth=0;null!=(i=o.pop());)if(s.push(i),(c=e.call(n,i,i.depth))&&(l=c.length)){for(var l,c,u;--l>=0;)o.push(u=c[l]),u.parent=i,u.depth=i.depth+1;r&&(i.value=0),i.children=c}else r&&(i.value=+r.call(n,i,i.depth)||0),delete i.children;return Ci(a,function(e){var n,a;t&&(n=e.children)&&n.sort(t),r&&(a=e.parent)&&(a.value+=e.value)}),s}return n.sort=function(e){return arguments.length?(t=e,n):t},n.children=function(t){return arguments.length?(e=t,n):e},n.value=function(t){return arguments.length?(r=t,n):r},n.revalue=function(t){return r&&(Ei(t,function(t){t.children&&(t.value=0)}),Ci(t,function(t){var e;t.children||(t.value=+r.call(n,t,t.depth)||0),(e=t.parent)&&(e.value+=t.value)})),t},n},t.layout.partition=function(){var e=t.layout.hierarchy(),r=[1,1];function n(t,n){var a=e.call(this,t,n);return function t(e,r,n,a){var i=e.children;if(e.x=r,e.y=e.depth*a,e.dx=n,e.dy=a,i&&(o=i.length)){var o,s,l,c=-1;for(n=e.value?n/e.value:0;++c<o;)t(s=i[c],r,l=s.value*n,a),r+=l}}(a[0],0,r[0],r[1]/function t(e){var r=e.children,n=0;if(r&&(a=r.length))for(var a,i=-1;++i<a;)n=Math.max(n,t(r[i]));return 1+n}(a[0])),a}return n.size=function(t){return arguments.length?(r=t,n):r},Si(n,e)},t.layout.pie=function(){var e=Number,r=zi,n=0,a=Mt,i=0;function o(s){var l,c=s.length,u=s.map(function(t,r){return+e.call(o,t,r)}),h=+(\"function\"==typeof n?n.apply(this,arguments):n),f=(\"function\"==typeof a?a.apply(this,arguments):a)-h,p=Math.min(Math.abs(f)/c,+(\"function\"==typeof i?i.apply(this,arguments):i)),d=p*(f<0?-1:1),g=t.sum(u),v=g?(f-c*d)/g:0,m=t.range(c),y=[];return null!=r&&m.sort(r===zi?function(t,e){return u[e]-u[t]}:function(t,e){return r(s[t],s[e])}),m.forEach(function(t){y[t]={data:s[t],value:l=u[t],startAngle:h,endAngle:h+=l*v+d,padAngle:p}}),y}return o.value=function(t){return arguments.length?(e=t,o):e},o.sort=function(t){return arguments.length?(r=t,o):r},o.startAngle=function(t){return arguments.length?(n=t,o):n},o.endAngle=function(t){return arguments.length?(a=t,o):a},o.padAngle=function(t){return arguments.length?(i=t,o):i},o};var zi={};function Di(t){return t.x}function Ri(t){return t.y}function Fi(t,e,r){t.y0=e,t.y=r}t.layout.stack=function(){var e=P,r=ji,n=Vi,a=Fi,i=Di,o=Ri;function s(l,c){if(!(p=l.length))return l;var u=l.map(function(t,r){return e.call(s,t,r)}),h=u.map(function(t){return t.map(function(t,e){return[i.call(s,t,e),o.call(s,t,e)]})}),f=r.call(s,h,c);u=t.permute(u,f),h=t.permute(h,f);var p,d,g,v,m=n.call(s,h,c),y=u[0].length;for(g=0;g<y;++g)for(a.call(s,u[0][g],v=m[g],h[0][g][1]),d=1;d<p;++d)a.call(s,u[d][g],v+=h[d-1][g][1],h[d][g][1]);return l}return s.values=function(t){return arguments.length?(e=t,s):e},s.order=function(t){return arguments.length?(r=\"function\"==typeof t?t:Bi.get(t)||ji,s):r},s.offset=function(t){return arguments.length?(n=\"function\"==typeof t?t:Ni.get(t)||Vi,s):n},s.x=function(t){return arguments.length?(i=t,s):i},s.y=function(t){return arguments.length?(o=t,s):o},s.out=function(t){return arguments.length?(a=t,s):a},s};var Bi=t.map({\"inside-out\":function(e){var r,n,a=e.length,i=e.map(Ui),o=e.map(qi),s=t.range(a).sort(function(t,e){return i[t]-i[e]}),l=0,c=0,u=[],h=[];for(r=0;r<a;++r)n=s[r],l<c?(l+=o[n],u.push(n)):(c+=o[n],h.push(n));return h.reverse().concat(u)},reverse:function(e){return t.range(e.length).reverse()},default:ji}),Ni=t.map({silhouette:function(t){var e,r,n,a=t.length,i=t[0].length,o=[],s=0,l=[];for(r=0;r<i;++r){for(e=0,n=0;e<a;e++)n+=t[e][r][1];n>s&&(s=n),o.push(n)}for(r=0;r<i;++r)l[r]=(s-o[r])/2;return l},wiggle:function(t){var e,r,n,a,i,o,s,l,c,u=t.length,h=t[0],f=h.length,p=[];for(p[0]=l=c=0,r=1;r<f;++r){for(e=0,a=0;e<u;++e)a+=t[e][r][1];for(e=0,i=0,s=h[r][0]-h[r-1][0];e<u;++e){for(n=0,o=(t[e][r][1]-t[e][r-1][1])/(2*s);n<e;++n)o+=(t[n][r][1]-t[n][r-1][1])/s;i+=o*t[e][r][1]}p[r]=l-=a?i/a*s:0,l<c&&(c=l)}for(r=0;r<f;++r)p[r]-=c;return p},expand:function(t){var e,r,n,a=t.length,i=t[0].length,o=1/a,s=[];for(r=0;r<i;++r){for(e=0,n=0;e<a;e++)n+=t[e][r][1];if(n)for(e=0;e<a;e++)t[e][r][1]/=n;else for(e=0;e<a;e++)t[e][r][1]=o}for(r=0;r<i;++r)s[r]=0;return s},zero:Vi});function ji(e){return t.range(e.length)}function Vi(t){for(var e=-1,r=t[0].length,n=[];++e<r;)n[e]=0;return n}function Ui(t){for(var e,r=1,n=0,a=t[0][1],i=t.length;r<i;++r)(e=t[r][1])>a&&(n=r,a=e);return n}function qi(t){return t.reduce(Hi,0)}function Hi(t,e){return t+e[1]}function Gi(t,e){return Yi(t,Math.ceil(Math.log(e.length)/Math.LN2+1))}function Yi(t,e){for(var r=-1,n=+t[0],a=(t[1]-n)/e,i=[];++r<=e;)i[r]=a*r+n;return i}function Wi(e){return[t.min(e),t.max(e)]}function Xi(t,e){return t.value-e.value}function Zi(t,e){var r=t._pack_next;t._pack_next=e,e._pack_prev=t,e._pack_next=r,r._pack_prev=e}function Ji(t,e){t._pack_next=e,e._pack_prev=t}function Ki(t,e){var r=e.x-t.x,n=e.y-t.y,a=t.r+e.r;return.999*a*a>r*r+n*n}function Qi(t){if((e=t.children)&&(l=e.length)){var e,r,n,a,i,o,s,l,c=1/0,u=-1/0,h=1/0,f=-1/0;if(e.forEach($i),(r=e[0]).x=-r.r,r.y=0,x(r),l>1&&((n=e[1]).x=n.r,n.y=0,x(n),l>2))for(eo(r,n,a=e[2]),x(a),Zi(r,a),r._pack_prev=a,Zi(a,n),n=r._pack_next,i=3;i<l;i++){eo(r,n,a=e[i]);var p=0,d=1,g=1;for(o=n._pack_next;o!==n;o=o._pack_next,d++)if(Ki(o,a)){p=1;break}if(1==p)for(s=r._pack_prev;s!==o._pack_prev&&!Ki(s,a);s=s._pack_prev,g++);p?(d<g||d==g&&n.r<r.r?Ji(r,n=o):Ji(r=s,n),i--):(Zi(r,a),n=a,x(a))}var v=(c+u)/2,m=(h+f)/2,y=0;for(i=0;i<l;i++)(a=e[i]).x-=v,a.y-=m,y=Math.max(y,a.r+Math.sqrt(a.x*a.x+a.y*a.y));t.r=y,e.forEach(to)}function x(t){c=Math.min(t.x-t.r,c),u=Math.max(t.x+t.r,u),h=Math.min(t.y-t.r,h),f=Math.max(t.y+t.r,f)}}function $i(t){t._pack_next=t._pack_prev=t}function to(t){delete t._pack_next,delete t._pack_prev}function eo(t,e,r){var n=t.r+r.r,a=e.x-t.x,i=e.y-t.y;if(n&&(a||i)){var o=e.r+r.r,s=a*a+i*i,l=.5+((n*=n)-(o*=o))/(2*s),c=Math.sqrt(Math.max(0,2*o*(n+s)-(n-=s)*n-o*o))/(2*s);r.x=t.x+l*a+c*i,r.y=t.y+l*i-c*a}else r.x=t.x+n,r.y=t.y}function ro(t,e){return t.parent==e.parent?1:2}function no(t){var e=t.children;return e.length?e[0]:t.t}function ao(t){var e,r=t.children;return(e=r.length)?r[e-1]:t.t}function io(t,e,r){var n=r/(e.i-t.i);e.c-=n,e.s+=r,t.c+=n,e.z+=r,e.m+=r}function oo(t,e,r){return t.a.parent===e.parent?t.a:r}function so(t){return{x:t.x,y:t.y,dx:t.dx,dy:t.dy}}function lo(t,e){var r=t.x+e[3],n=t.y+e[0],a=t.dx-e[1]-e[3],i=t.dy-e[0]-e[2];return a<0&&(r+=a/2,a=0),i<0&&(n+=i/2,i=0),{x:r,y:n,dx:a,dy:i}}function co(t){var e=t[0],r=t[t.length-1];return e<r?[e,r]:[r,e]}function uo(t){return t.rangeExtent?t.rangeExtent():co(t.range())}function ho(t,e,r,n){var a=r(t[0],t[1]),i=n(e[0],e[1]);return function(t){return i(a(t))}}function fo(t,e){var r,n=0,a=t.length-1,i=t[n],o=t[a];return o<i&&(r=n,n=a,a=r,r=i,i=o,o=r),t[n]=e.floor(i),t[a]=e.ceil(o),t}function po(t){return t?{floor:function(e){return Math.floor(e/t)*t},ceil:function(e){return Math.ceil(e/t)*t}}:go}t.layout.histogram=function(){var e=!0,r=Number,n=Wi,a=Gi;function i(i,o){for(var s,l,c=[],u=i.map(r,this),h=n.call(this,u,o),f=a.call(this,h,u,o),p=(o=-1,u.length),d=f.length-1,g=e?1:1/p;++o<d;)(s=c[o]=[]).dx=f[o+1]-(s.x=f[o]),s.y=0;if(d>0)for(o=-1;++o<p;)(l=u[o])>=h[0]&&l<=h[1]&&((s=c[t.bisect(f,l,1,d)-1]).y+=g,s.push(i[o]));return c}return i.value=function(t){return arguments.length?(r=t,i):r},i.range=function(t){return arguments.length?(n=ve(t),i):n},i.bins=function(t){return arguments.length?(a=\"number\"==typeof t?function(e){return Yi(e,t)}:ve(t),i):a},i.frequency=function(t){return arguments.length?(e=!!t,i):e},i},t.layout.pack=function(){var e,r=t.layout.hierarchy().sort(Xi),n=0,a=[1,1];function i(t,i){var o=r.call(this,t,i),s=o[0],l=a[0],c=a[1],u=null==e?Math.sqrt:\"function\"==typeof e?e:function(){return e};if(s.x=s.y=0,Ci(s,function(t){t.r=+u(t.value)}),Ci(s,Qi),n){var h=n*(e?1:Math.max(2*s.r/l,2*s.r/c))/2;Ci(s,function(t){t.r+=h}),Ci(s,Qi),Ci(s,function(t){t.r-=h})}return function t(e,r,n,a){var i=e.children;e.x=r+=a*e.x;e.y=n+=a*e.y;e.r*=a;if(i)for(var o=-1,s=i.length;++o<s;)t(i[o],r,n,a)}(s,l/2,c/2,e?1:1/Math.max(2*s.r/l,2*s.r/c)),o}return i.size=function(t){return arguments.length?(a=t,i):a},i.radius=function(t){return arguments.length?(e=null==t||\"function\"==typeof t?t:+t,i):e},i.padding=function(t){return arguments.length?(n=+t,i):n},Si(i,r)},t.layout.tree=function(){var e=t.layout.hierarchy().sort(null).value(null),r=ro,n=[1,1],a=null;function i(t,i){var c=e.call(this,t,i),u=c[0],h=function(t){var e,r={A:null,children:[t]},n=[r];for(;null!=(e=n.pop());)for(var a,i=e.children,o=0,s=i.length;o<s;++o)n.push((i[o]=a={_:i[o],parent:e,children:(a=i[o].children)&&a.slice()||[],A:null,a:null,z:0,m:0,c:0,s:0,t:null,i:o}).a=a);return r.children[0]}(u);if(Ci(h,o),h.parent.m=-h.z,Ei(h,s),a)Ei(u,l);else{var f=u,p=u,d=u;Ei(u,function(t){t.x<f.x&&(f=t),t.x>p.x&&(p=t),t.depth>d.depth&&(d=t)});var g=r(f,p)/2-f.x,v=n[0]/(p.x+r(p,f)/2+g),m=n[1]/(d.depth||1);Ei(u,function(t){t.x=(t.x+g)*v,t.y=t.depth*m})}return c}function o(t){var e=t.children,n=t.parent.children,a=t.i?n[t.i-1]:null;if(e.length){!function(t){var e,r=0,n=0,a=t.children,i=a.length;for(;--i>=0;)(e=a[i]).z+=r,e.m+=r,r+=e.s+(n+=e.c)}(t);var i=(e[0].z+e[e.length-1].z)/2;a?(t.z=a.z+r(t._,a._),t.m=t.z-i):t.z=i}else a&&(t.z=a.z+r(t._,a._));t.parent.A=function(t,e,n){if(e){for(var a,i=t,o=t,s=e,l=i.parent.children[0],c=i.m,u=o.m,h=s.m,f=l.m;s=ao(s),i=no(i),s&&i;)l=no(l),(o=ao(o)).a=t,(a=s.z+h-i.z-c+r(s._,i._))>0&&(io(oo(s,t,n),t,a),c+=a,u+=a),h+=s.m,c+=i.m,f+=l.m,u+=o.m;s&&!ao(o)&&(o.t=s,o.m+=h-u),i&&!no(l)&&(l.t=i,l.m+=c-f,n=t)}return n}(t,a,t.parent.A||n[0])}function s(t){t._.x=t.z+t.parent.m,t.m+=t.parent.m}function l(t){t.x*=n[0],t.y=t.depth*n[1]}return i.separation=function(t){return arguments.length?(r=t,i):r},i.size=function(t){return arguments.length?(a=null==(n=t)?l:null,i):a?null:n},i.nodeSize=function(t){return arguments.length?(a=null==(n=t)?null:l,i):a?n:null},Si(i,e)},t.layout.cluster=function(){var e=t.layout.hierarchy().sort(null).value(null),r=ro,n=[1,1],a=!1;function i(i,o){var s,l=e.call(this,i,o),c=l[0],u=0;Ci(c,function(e){var n=e.children;n&&n.length?(e.x=function(t){return t.reduce(function(t,e){return t+e.x},0)/t.length}(n),e.y=function(e){return 1+t.max(e,function(t){return t.y})}(n)):(e.x=s?u+=r(e,s):0,e.y=0,s=e)});var h=function t(e){var r=e.children;return r&&r.length?t(r[0]):e}(c),f=function t(e){var r,n=e.children;return n&&(r=n.length)?t(n[r-1]):e}(c),p=h.x-r(h,f)/2,d=f.x+r(f,h)/2;return Ci(c,a?function(t){t.x=(t.x-c.x)*n[0],t.y=(c.y-t.y)*n[1]}:function(t){t.x=(t.x-p)/(d-p)*n[0],t.y=(1-(c.y?t.y/c.y:1))*n[1]}),l}return i.separation=function(t){return arguments.length?(r=t,i):r},i.size=function(t){return arguments.length?(a=null==(n=t),i):a?null:n},i.nodeSize=function(t){return arguments.length?(a=null!=(n=t),i):a?n:null},Si(i,e)},t.layout.treemap=function(){var e,r=t.layout.hierarchy(),n=Math.round,a=[1,1],i=null,o=so,s=!1,l=\"squarify\",c=.5*(1+Math.sqrt(5));function u(t,e){for(var r,n,a=-1,i=t.length;++a<i;)n=(r=t[a]).value*(e<0?0:e),r.area=isNaN(n)||n<=0?0:n}function h(t){var e=t.children;if(e&&e.length){var r,n,a,i=o(t),s=[],c=e.slice(),f=1/0,g=\"slice\"===l?i.dx:\"dice\"===l?i.dy:\"slice-dice\"===l?1&t.depth?i.dy:i.dx:Math.min(i.dx,i.dy);for(u(c,i.dx*i.dy/t.value),s.area=0;(a=c.length)>0;)s.push(r=c[a-1]),s.area+=r.area,\"squarify\"!==l||(n=p(s,g))<=f?(c.pop(),f=n):(s.area-=s.pop().area,d(s,g,i,!1),g=Math.min(i.dx,i.dy),s.length=s.area=0,f=1/0);s.length&&(d(s,g,i,!0),s.length=s.area=0),e.forEach(h)}}function f(t){var e=t.children;if(e&&e.length){var r,n=o(t),a=e.slice(),i=[];for(u(a,n.dx*n.dy/t.value),i.area=0;r=a.pop();)i.push(r),i.area+=r.area,null!=r.z&&(d(i,r.z?n.dx:n.dy,n,!a.length),i.length=i.area=0);e.forEach(f)}}function p(t,e){for(var r,n=t.area,a=0,i=1/0,o=-1,s=t.length;++o<s;)(r=t[o].area)&&(r<i&&(i=r),r>a&&(a=r));return e*=e,(n*=n)?Math.max(e*a*c/n,n/(e*i*c)):1/0}function d(t,e,r,a){var i,o=-1,s=t.length,l=r.x,c=r.y,u=e?n(t.area/e):0;if(e==r.dx){for((a||u>r.dy)&&(u=r.dy);++o<s;)(i=t[o]).x=l,i.y=c,i.dy=u,l+=i.dx=Math.min(r.x+r.dx-l,u?n(i.area/u):0);i.z=!0,i.dx+=r.x+r.dx-l,r.y+=u,r.dy-=u}else{for((a||u>r.dx)&&(u=r.dx);++o<s;)(i=t[o]).x=l,i.y=c,i.dx=u,c+=i.dy=Math.min(r.y+r.dy-c,u?n(i.area/u):0);i.z=!1,i.dy+=r.y+r.dy-c,r.x+=u,r.dx-=u}}function g(t){var n=e||r(t),i=n[0];return i.x=i.y=0,i.value?(i.dx=a[0],i.dy=a[1]):i.dx=i.dy=0,e&&r.revalue(i),u([i],i.dx*i.dy/i.value),(e?f:h)(i),s&&(e=n),n}return g.size=function(t){return arguments.length?(a=t,g):a},g.padding=function(t){if(!arguments.length)return i;function e(e){return lo(e,t)}var r;return o=null==(i=t)?so:\"function\"==(r=typeof t)?function(e){var r=t.call(g,e,e.depth);return null==r?so(e):lo(e,\"number\"==typeof r?[r,r,r,r]:r)}:\"number\"===r?(t=[t,t,t,t],e):e,g},g.round=function(t){return arguments.length?(n=t?Math.round:Number,g):n!=Number},g.sticky=function(t){return arguments.length?(s=t,e=null,g):s},g.ratio=function(t){return arguments.length?(c=t,g):c},g.mode=function(t){return arguments.length?(l=t+\"\",g):l},Si(g,r)},t.random={normal:function(t,e){var r=arguments.length;return r<2&&(e=1),r<1&&(t=0),function(){var r,n,a;do{a=(r=2*Math.random()-1)*r+(n=2*Math.random()-1)*n}while(!a||a>1);return t+e*r*Math.sqrt(-2*Math.log(a)/a)}},logNormal:function(){var e=t.random.normal.apply(t,arguments);return function(){return Math.exp(e())}},bates:function(e){var r=t.random.irwinHall(e);return function(){return r()/e}},irwinHall:function(t){return function(){for(var e=0,r=0;r<t;r++)e+=Math.random();return e}}},t.scale={};var go={floor:P,ceil:P};function vo(e,r,n,a){var i=[],o=[],s=0,l=Math.min(e.length,r.length)-1;for(e[l]<e[0]&&(e=e.slice().reverse(),r=r.slice().reverse());++s<=l;)i.push(n(e[s-1],e[s])),o.push(a(r[s-1],r[s]));return function(r){var n=t.bisect(e,r,1,l)-1;return o[n](i[n](r))}}function mo(e,r){return t.rebind(e,r,\"range\",\"rangeRound\",\"interpolate\",\"clamp\")}function yo(t,e){return fo(t,po(xo(t,e)[2])),fo(t,po(xo(t,e)[2])),t}function xo(t,e){null==e&&(e=10);var r=co(t),n=r[1]-r[0],a=Math.pow(10,Math.floor(Math.log(n/e)/Math.LN10)),i=e/n*a;return i<=.15?a*=10:i<=.35?a*=5:i<=.75&&(a*=2),r[0]=Math.ceil(r[0]/a)*a,r[1]=Math.floor(r[1]/a)*a+.5*a,r[2]=a,r}function bo(e,r){return t.range.apply(t,xo(e,r))}function _o(e,r,n){var a=xo(e,r);if(n){var i=Le.exec(n);if(i.shift(),\"s\"===i[8]){var o=t.formatPrefix(Math.max(y(a[0]),y(a[1])));return i[7]||(i[7]=\".\"+ko(o.scale(a[2]))),i[8]=\"f\",n=t.format(i.join(\"\")),function(t){return n(o.scale(t))+o.symbol}}i[7]||(i[7]=\".\"+function(t,e){var r=ko(e[2]);return t in wo?Math.abs(r-ko(Math.max(y(e[0]),y(e[1]))))+ +(\"e\"!==t):r-2*(\"%\"===t)}(i[8],a)),n=i.join(\"\")}else n=\",.\"+ko(a[2])+\"f\";return t.format(n)}t.scale.linear=function(){return function t(e,r,n,a){var i,o;function s(){var t=Math.min(e.length,r.length)>2?vo:ho,s=a?mi:vi;return i=t(e,r,s,n),o=t(r,e,s,Za),l}function l(t){return i(t)}l.invert=function(t){return o(t)};l.domain=function(t){return arguments.length?(e=t.map(Number),s()):e};l.range=function(t){return arguments.length?(r=t,s()):r};l.rangeRound=function(t){return l.range(t).interpolate(ci)};l.clamp=function(t){return arguments.length?(a=t,s()):a};l.interpolate=function(t){return arguments.length?(n=t,s()):n};l.ticks=function(t){return bo(e,t)};l.tickFormat=function(t,r){return _o(e,t,r)};l.nice=function(t){return yo(e,t),s()};l.copy=function(){return t(e,r,n,a)};return s()}([0,1],[0,1],Za,!1)};var wo={s:1,g:1,p:1,r:1,e:1};function ko(t){return-Math.floor(Math.log(t)/Math.LN10+.01)}t.scale.log=function(){return function e(r,n,a,i){function o(t){return(a?Math.log(t<0?0:t):-Math.log(t>0?0:-t))/Math.log(n)}function s(t){return a?Math.pow(n,t):-Math.pow(n,-t)}function l(t){return r(o(t))}l.invert=function(t){return s(r.invert(t))};l.domain=function(t){return arguments.length?(a=t[0]>=0,r.domain((i=t.map(Number)).map(o)),l):i};l.base=function(t){return arguments.length?(n=+t,r.domain(i.map(o)),l):n};l.nice=function(){var t=fo(i.map(o),a?Math:Ao);return r.domain(t),i=t.map(s),l};l.ticks=function(){var t=co(i),e=[],r=t[0],l=t[1],c=Math.floor(o(r)),u=Math.ceil(o(l)),h=n%1?2:n;if(isFinite(u-c)){if(a){for(;c<u;c++)for(var f=1;f<h;f++)e.push(s(c)*f);e.push(s(c))}else for(e.push(s(c));c++<u;)for(var f=h-1;f>0;f--)e.push(s(c)*f);for(c=0;e[c]<r;c++);for(u=e.length;e[u-1]>l;u--);e=e.slice(c,u)}return e};l.tickFormat=function(e,r){if(!arguments.length)return To;arguments.length<2?r=To:\"function\"!=typeof r&&(r=t.format(r));var a=Math.max(1,n*e/l.ticks().length);return function(t){var e=t/s(Math.round(o(t)));return e*n<n-.5&&(e*=n),e<=a?r(t):\"\"}};l.copy=function(){return e(r.copy(),n,a,i)};return mo(l,r)}(t.scale.linear().domain([0,1]),10,!0,[1,10])};var To=t.format(\".0e\"),Ao={floor:function(t){return-Math.ceil(-t)},ceil:function(t){return-Math.floor(-t)}};function Mo(t){return function(e){return e<0?-Math.pow(-e,t):Math.pow(e,t)}}t.scale.pow=function(){return function t(e,r,n){var a=Mo(r),i=Mo(1/r);function o(t){return e(a(t))}o.invert=function(t){return i(e.invert(t))};o.domain=function(t){return arguments.length?(e.domain((n=t.map(Number)).map(a)),o):n};o.ticks=function(t){return bo(n,t)};o.tickFormat=function(t,e){return _o(n,t,e)};o.nice=function(t){return o.domain(yo(n,t))};o.exponent=function(t){return arguments.length?(a=Mo(r=t),i=Mo(1/r),e.domain(n.map(a)),o):r};o.copy=function(){return t(e.copy(),r,n)};return mo(o,e)}(t.scale.linear(),1,[0,1])},t.scale.sqrt=function(){return t.scale.pow().exponent(.5)},t.scale.ordinal=function(){return function e(r,n){var a,i,o;function s(t){return i[((a.get(t)||(\"range\"===n.t?a.set(t,r.push(t)):NaN))-1)%i.length]}function l(e,n){return t.range(r.length).map(function(t){return e+n*t})}s.domain=function(t){if(!arguments.length)return r;r=[],a=new b;for(var e,i=-1,o=t.length;++i<o;)a.has(e=t[i])||a.set(e,r.push(e));return s[n.t].apply(s,n.a)};s.range=function(t){return arguments.length?(i=t,o=0,n={t:\"range\",a:arguments},s):i};s.rangePoints=function(t,e){arguments.length<2&&(e=0);var a=t[0],c=t[1],u=r.length<2?(a=(a+c)/2,0):(c-a)/(r.length-1+e);return i=l(a+u*e/2,u),o=0,n={t:\"rangePoints\",a:arguments},s};s.rangeRoundPoints=function(t,e){arguments.length<2&&(e=0);var a=t[0],c=t[1],u=r.length<2?(a=c=Math.round((a+c)/2),0):(c-a)/(r.length-1+e)|0;return i=l(a+Math.round(u*e/2+(c-a-(r.length-1+e)*u)/2),u),o=0,n={t:\"rangeRoundPoints\",a:arguments},s};s.rangeBands=function(t,e,a){arguments.length<2&&(e=0),arguments.length<3&&(a=e);var c=t[1]<t[0],u=t[c-0],h=t[1-c],f=(h-u)/(r.length-e+2*a);return i=l(u+f*a,f),c&&i.reverse(),o=f*(1-e),n={t:\"rangeBands\",a:arguments},s};s.rangeRoundBands=function(t,e,a){arguments.length<2&&(e=0),arguments.length<3&&(a=e);var c=t[1]<t[0],u=t[c-0],h=t[1-c],f=Math.floor((h-u)/(r.length-e+2*a));return i=l(u+Math.round((h-u-(r.length-e)*f)/2),f),c&&i.reverse(),o=Math.round(f*(1-e)),n={t:\"rangeRoundBands\",a:arguments},s};s.rangeBand=function(){return o};s.rangeExtent=function(){return co(n.a[0])};s.copy=function(){return e(r,n)};return s.domain(r)}([],{t:\"range\",a:[[]]})},t.scale.category10=function(){return t.scale.ordinal().range(So)},t.scale.category20=function(){return t.scale.ordinal().range(Eo)},t.scale.category20b=function(){return t.scale.ordinal().range(Co)},t.scale.category20c=function(){return t.scale.ordinal().range(Lo)};var So=[2062260,16744206,2924588,14034728,9725885,9197131,14907330,8355711,12369186,1556175].map(se),Eo=[2062260,11454440,16744206,16759672,2924588,10018698,14034728,16750742,9725885,12955861,9197131,12885140,14907330,16234194,8355711,13092807,12369186,14408589,1556175,10410725].map(se),Co=[3750777,5395619,7040719,10264286,6519097,9216594,11915115,13556636,9202993,12426809,15186514,15190932,8666169,11356490,14049643,15177372,8077683,10834324,13528509,14589654].map(se),Lo=[3244733,7057110,10406625,13032431,15095053,16616764,16625259,16634018,3253076,7652470,10607003,13101504,7695281,10394312,12369372,14342891,6513507,9868950,12434877,14277081].map(se);function Po(){return 0}t.scale.quantile=function(){return function e(r,n){var a;function i(){var e=0,i=n.length;for(a=[];++e<i;)a[e-1]=t.quantile(r,e/i);return o}function o(e){if(!isNaN(e=+e))return n[t.bisect(a,e)]}o.domain=function(t){return arguments.length?(r=t.map(p).filter(d).sort(f),i()):r};o.range=function(t){return arguments.length?(n=t,i()):n};o.quantiles=function(){return a};o.invertExtent=function(t){return(t=n.indexOf(t))<0?[NaN,NaN]:[t>0?a[t-1]:r[0],t<a.length?a[t]:r[r.length-1]]};o.copy=function(){return e(r,n)};return i()}([],[])},t.scale.quantize=function(){return function t(e,r,n){var a,i;function o(t){return n[Math.max(0,Math.min(i,Math.floor(a*(t-e))))]}function s(){return a=n.length/(r-e),i=n.length-1,o}o.domain=function(t){return arguments.length?(e=+t[0],r=+t[t.length-1],s()):[e,r]};o.range=function(t){return arguments.length?(n=t,s()):n};o.invertExtent=function(t){return[t=(t=n.indexOf(t))<0?NaN:t/a+e,t+1/a]};o.copy=function(){return t(e,r,n)};return s()}(0,1,[0,1])},t.scale.threshold=function(){return function e(r,n){function a(e){if(e<=e)return n[t.bisect(r,e)]}a.domain=function(t){return arguments.length?(r=t,a):r};a.range=function(t){return arguments.length?(n=t,a):n};a.invertExtent=function(t){return t=n.indexOf(t),[r[t-1],r[t]]};a.copy=function(){return e(r,n)};return a}([.5],[0,1])},t.scale.identity=function(){return function t(e){function r(t){return+t}r.invert=r;r.domain=r.range=function(t){return arguments.length?(e=t.map(r),r):e};r.ticks=function(t){return bo(e,t)};r.tickFormat=function(t,r){return _o(e,t,r)};r.copy=function(){return t(e)};return r}([0,1])},t.svg={},t.svg.arc=function(){var t=Io,e=zo,r=Po,n=Oo,a=Do,i=Ro,o=Fo;function s(){var s=Math.max(0,+t.apply(this,arguments)),c=Math.max(0,+e.apply(this,arguments)),u=a.apply(this,arguments)-Et,h=i.apply(this,arguments)-Et,f=Math.abs(h-u),p=u>h?0:1;if(c<s&&(d=c,c=s,s=d),f>=St)return l(c,p)+(s?l(s,1-p):\"\")+\"Z\";var d,g,v,m,y,x,b,_,w,k,T,A,M=0,S=0,E=[];if((m=(+o.apply(this,arguments)||0)/2)&&(v=n===Oo?Math.sqrt(s*s+c*c):+n.apply(this,arguments),p||(S*=-1),c&&(S=zt(v/c*Math.sin(m))),s&&(M=zt(v/s*Math.sin(m)))),c){y=c*Math.cos(u+S),x=c*Math.sin(u+S),b=c*Math.cos(h-S),_=c*Math.sin(h-S);var C=Math.abs(h-u-2*S)<=At?0:1;if(S&&Bo(y,x,b,_)===p^C){var L=(u+h)/2;y=c*Math.cos(L),x=c*Math.sin(L),b=_=null}}else y=x=0;if(s){w=s*Math.cos(h-M),k=s*Math.sin(h-M),T=s*Math.cos(u+M),A=s*Math.sin(u+M);var P=Math.abs(u-h+2*M)<=At?0:1;if(M&&Bo(w,k,T,A)===1-p^P){var O=(u+h)/2;w=s*Math.cos(O),k=s*Math.sin(O),T=A=null}}else w=k=0;if(f>kt&&(d=Math.min(Math.abs(c-s)/2,+r.apply(this,arguments)))>.001){g=s<c^p?0:1;var I=d,z=d;if(f<At){var D=null==T?[w,k]:null==b?[y,x]:sa([y,x],[T,A],[b,_],[w,k]),R=y-D[0],F=x-D[1],B=b-D[0],N=_-D[1],j=1/Math.sin(Math.acos((R*B+F*N)/(Math.sqrt(R*R+F*F)*Math.sqrt(B*B+N*N)))/2),V=Math.sqrt(D[0]*D[0]+D[1]*D[1]);z=Math.min(d,(s-V)/(j-1)),I=Math.min(d,(c-V)/(j+1))}if(null!=b){var U=No(null==T?[w,k]:[T,A],[y,x],c,I,p),q=No([b,_],[w,k],c,I,p);d===I?E.push(\"M\",U[0],\"A\",I,\",\",I,\" 0 0,\",g,\" \",U[1],\"A\",c,\",\",c,\" 0 \",1-p^Bo(U[1][0],U[1][1],q[1][0],q[1][1]),\",\",p,\" \",q[1],\"A\",I,\",\",I,\" 0 0,\",g,\" \",q[0]):E.push(\"M\",U[0],\"A\",I,\",\",I,\" 0 1,\",g,\" \",q[0])}else E.push(\"M\",y,\",\",x);if(null!=T){var H=No([y,x],[T,A],s,-z,p),G=No([w,k],null==b?[y,x]:[b,_],s,-z,p);d===z?E.push(\"L\",G[0],\"A\",z,\",\",z,\" 0 0,\",g,\" \",G[1],\"A\",s,\",\",s,\" 0 \",p^Bo(G[1][0],G[1][1],H[1][0],H[1][1]),\",\",1-p,\" \",H[1],\"A\",z,\",\",z,\" 0 0,\",g,\" \",H[0]):E.push(\"L\",G[0],\"A\",z,\",\",z,\" 0 0,\",g,\" \",H[0])}else E.push(\"L\",w,\",\",k)}else E.push(\"M\",y,\",\",x),null!=b&&E.push(\"A\",c,\",\",c,\" 0 \",C,\",\",p,\" \",b,\",\",_),E.push(\"L\",w,\",\",k),null!=T&&E.push(\"A\",s,\",\",s,\" 0 \",P,\",\",1-p,\" \",T,\",\",A);return E.push(\"Z\"),E.join(\"\")}function l(t,e){return\"M0,\"+t+\"A\"+t+\",\"+t+\" 0 1,\"+e+\" 0,\"+-t+\"A\"+t+\",\"+t+\" 0 1,\"+e+\" 0,\"+t}return s.innerRadius=function(e){return arguments.length?(t=ve(e),s):t},s.outerRadius=function(t){return arguments.length?(e=ve(t),s):e},s.cornerRadius=function(t){return arguments.length?(r=ve(t),s):r},s.padRadius=function(t){return arguments.length?(n=t==Oo?Oo:ve(t),s):n},s.startAngle=function(t){return arguments.length?(a=ve(t),s):a},s.endAngle=function(t){return arguments.length?(i=ve(t),s):i},s.padAngle=function(t){return arguments.length?(o=ve(t),s):o},s.centroid=function(){var r=(+t.apply(this,arguments)+ +e.apply(this,arguments))/2,n=(+a.apply(this,arguments)+ +i.apply(this,arguments))/2-Et;return[Math.cos(n)*r,Math.sin(n)*r]},s};var Oo=\"auto\";function Io(t){return t.innerRadius}function zo(t){return t.outerRadius}function Do(t){return t.startAngle}function Ro(t){return t.endAngle}function Fo(t){return t&&t.padAngle}function Bo(t,e,r,n){return(t-r)*e-(e-n)*t>0?0:1}function No(t,e,r,n,a){var i=t[0]-e[0],o=t[1]-e[1],s=(a?n:-n)/Math.sqrt(i*i+o*o),l=s*o,c=-s*i,u=t[0]+l,h=t[1]+c,f=e[0]+l,p=e[1]+c,d=(u+f)/2,g=(h+p)/2,v=f-u,m=p-h,y=v*v+m*m,x=r-n,b=u*p-f*h,_=(m<0?-1:1)*Math.sqrt(Math.max(0,x*x*y-b*b)),w=(b*m-v*_)/y,k=(-b*v-m*_)/y,T=(b*m+v*_)/y,A=(-b*v+m*_)/y,M=w-d,S=k-g,E=T-d,C=A-g;return M*M+S*S>E*E+C*C&&(w=T,k=A),[[w-l,k-c],[w*r/x,k*r/x]]}function jo(t){var e=ea,r=ra,n=Yr,a=Uo,i=a.key,o=.7;function s(i){var s,l=[],c=[],u=-1,h=i.length,f=ve(e),p=ve(r);function d(){l.push(\"M\",a(t(c),o))}for(;++u<h;)n.call(this,s=i[u],u)?c.push([+f.call(this,s,u),+p.call(this,s,u)]):c.length&&(d(),c=[]);return c.length&&d(),l.length?l.join(\"\"):null}return s.x=function(t){return arguments.length?(e=t,s):e},s.y=function(t){return arguments.length?(r=t,s):r},s.defined=function(t){return arguments.length?(n=t,s):n},s.interpolate=function(t){return arguments.length?(i=\"function\"==typeof t?a=t:(a=Vo.get(t)||Uo).key,s):i},s.tension=function(t){return arguments.length?(o=t,s):o},s}t.svg.line=function(){return jo(P)};var Vo=t.map({linear:Uo,\"linear-closed\":qo,step:function(t){var e=0,r=t.length,n=t[0],a=[n[0],\",\",n[1]];for(;++e<r;)a.push(\"H\",(n[0]+(n=t[e])[0])/2,\"V\",n[1]);r>1&&a.push(\"H\",n[0]);return a.join(\"\")},\"step-before\":Ho,\"step-after\":Go,basis:Xo,\"basis-open\":function(t){if(t.length<4)return Uo(t);var e,r=[],n=-1,a=t.length,i=[0],o=[0];for(;++n<3;)e=t[n],i.push(e[0]),o.push(e[1]);r.push(Zo(Qo,i)+\",\"+Zo(Qo,o)),--n;for(;++n<a;)e=t[n],i.shift(),i.push(e[0]),o.shift(),o.push(e[1]),$o(r,i,o);return r.join(\"\")},\"basis-closed\":function(t){var e,r,n=-1,a=t.length,i=a+4,o=[],s=[];for(;++n<4;)r=t[n%a],o.push(r[0]),s.push(r[1]);e=[Zo(Qo,o),\",\",Zo(Qo,s)],--n;for(;++n<i;)r=t[n%a],o.shift(),o.push(r[0]),s.shift(),s.push(r[1]),$o(e,o,s);return e.join(\"\")},bundle:function(t,e){var r=t.length-1;if(r)for(var n,a,i=t[0][0],o=t[0][1],s=t[r][0]-i,l=t[r][1]-o,c=-1;++c<=r;)n=t[c],a=c/r,n[0]=e*n[0]+(1-e)*(i+a*s),n[1]=e*n[1]+(1-e)*(o+a*l);return Xo(t)},cardinal:function(t,e){return t.length<3?Uo(t):t[0]+Yo(t,Wo(t,e))},\"cardinal-open\":function(t,e){return t.length<4?Uo(t):t[1]+Yo(t.slice(1,-1),Wo(t,e))},\"cardinal-closed\":function(t,e){return t.length<3?qo(t):t[0]+Yo((t.push(t[0]),t),Wo([t[t.length-2]].concat(t,[t[1]]),e))},monotone:function(t){return t.length<3?Uo(t):t[0]+Yo(t,function(t){var e,r,n,a,i=[],o=function(t){var e=0,r=t.length-1,n=[],a=t[0],i=t[1],o=n[0]=ts(a,i);for(;++e<r;)n[e]=(o+(o=ts(a=i,i=t[e+1])))/2;return n[e]=o,n}(t),s=-1,l=t.length-1;for(;++s<l;)e=ts(t[s],t[s+1]),y(e)<kt?o[s]=o[s+1]=0:(r=o[s]/e,n=o[s+1]/e,(a=r*r+n*n)>9&&(a=3*e/Math.sqrt(a),o[s]=a*r,o[s+1]=a*n));s=-1;for(;++s<=l;)a=(t[Math.min(l,s+1)][0]-t[Math.max(0,s-1)][0])/(6*(1+o[s]*o[s])),i.push([a||0,o[s]*a||0]);return i}(t))}});function Uo(t){return t.length>1?t.join(\"L\"):t+\"Z\"}function qo(t){return t.join(\"L\")+\"Z\"}function Ho(t){for(var e=0,r=t.length,n=t[0],a=[n[0],\",\",n[1]];++e<r;)a.push(\"V\",(n=t[e])[1],\"H\",n[0]);return a.join(\"\")}function Go(t){for(var e=0,r=t.length,n=t[0],a=[n[0],\",\",n[1]];++e<r;)a.push(\"H\",(n=t[e])[0],\"V\",n[1]);return a.join(\"\")}function Yo(t,e){if(e.length<1||t.length!=e.length&&t.length!=e.length+2)return Uo(t);var r=t.length!=e.length,n=\"\",a=t[0],i=t[1],o=e[0],s=o,l=1;if(r&&(n+=\"Q\"+(i[0]-2*o[0]/3)+\",\"+(i[1]-2*o[1]/3)+\",\"+i[0]+\",\"+i[1],a=t[1],l=2),e.length>1){s=e[1],i=t[l],l++,n+=\"C\"+(a[0]+o[0])+\",\"+(a[1]+o[1])+\",\"+(i[0]-s[0])+\",\"+(i[1]-s[1])+\",\"+i[0]+\",\"+i[1];for(var c=2;c<e.length;c++,l++)i=t[l],s=e[c],n+=\"S\"+(i[0]-s[0])+\",\"+(i[1]-s[1])+\",\"+i[0]+\",\"+i[1]}if(r){var u=t[l];n+=\"Q\"+(i[0]+2*s[0]/3)+\",\"+(i[1]+2*s[1]/3)+\",\"+u[0]+\",\"+u[1]}return n}function Wo(t,e){for(var r,n=[],a=(1-e)/2,i=t[0],o=t[1],s=1,l=t.length;++s<l;)r=i,i=o,o=t[s],n.push([a*(o[0]-r[0]),a*(o[1]-r[1])]);return n}function Xo(t){if(t.length<3)return Uo(t);var e=1,r=t.length,n=t[0],a=n[0],i=n[1],o=[a,a,a,(n=t[1])[0]],s=[i,i,i,n[1]],l=[a,\",\",i,\"L\",Zo(Qo,o),\",\",Zo(Qo,s)];for(t.push(t[r-1]);++e<=r;)n=t[e],o.shift(),o.push(n[0]),s.shift(),s.push(n[1]),$o(l,o,s);return t.pop(),l.push(\"L\",n),l.join(\"\")}function Zo(t,e){return t[0]*e[0]+t[1]*e[1]+t[2]*e[2]+t[3]*e[3]}Vo.forEach(function(t,e){e.key=t,e.closed=/-closed$/.test(t)});var Jo=[0,2/3,1/3,0],Ko=[0,1/3,2/3,0],Qo=[0,1/6,2/3,1/6];function $o(t,e,r){t.push(\"C\",Zo(Jo,e),\",\",Zo(Jo,r),\",\",Zo(Ko,e),\",\",Zo(Ko,r),\",\",Zo(Qo,e),\",\",Zo(Qo,r))}function ts(t,e){return(e[1]-t[1])/(e[0]-t[0])}function es(t){for(var e,r,n,a=-1,i=t.length;++a<i;)r=(e=t[a])[0],n=e[1]-Et,e[0]=r*Math.cos(n),e[1]=r*Math.sin(n);return t}function rs(t){var e=ea,r=ea,n=0,a=ra,i=Yr,o=Uo,s=o.key,l=o,c=\"L\",u=.7;function h(s){var h,f,p,d=[],g=[],v=[],m=-1,y=s.length,x=ve(e),b=ve(n),_=e===r?function(){return f}:ve(r),w=n===a?function(){return p}:ve(a);function k(){d.push(\"M\",o(t(v),u),c,l(t(g.reverse()),u),\"Z\")}for(;++m<y;)i.call(this,h=s[m],m)?(g.push([f=+x.call(this,h,m),p=+b.call(this,h,m)]),v.push([+_.call(this,h,m),+w.call(this,h,m)])):g.length&&(k(),g=[],v=[]);return g.length&&k(),d.length?d.join(\"\"):null}return h.x=function(t){return arguments.length?(e=r=t,h):r},h.x0=function(t){return arguments.length?(e=t,h):e},h.x1=function(t){return arguments.length?(r=t,h):r},h.y=function(t){return arguments.length?(n=a=t,h):a},h.y0=function(t){return arguments.length?(n=t,h):n},h.y1=function(t){return arguments.length?(a=t,h):a},h.defined=function(t){return arguments.length?(i=t,h):i},h.interpolate=function(t){return arguments.length?(s=\"function\"==typeof t?o=t:(o=Vo.get(t)||Uo).key,l=o.reverse||o,c=o.closed?\"M\":\"L\",h):s},h.tension=function(t){return arguments.length?(u=t,h):u},h}function ns(t){return t.radius}function as(t){return[t.x,t.y]}function is(){return 64}function os(){return\"circle\"}function ss(t){var e=Math.sqrt(t/At);return\"M0,\"+e+\"A\"+e+\",\"+e+\" 0 1,1 0,\"+-e+\"A\"+e+\",\"+e+\" 0 1,1 0,\"+e+\"Z\"}t.svg.line.radial=function(){var t=jo(es);return t.radius=t.x,delete t.x,t.angle=t.y,delete t.y,t},Ho.reverse=Go,Go.reverse=Ho,t.svg.area=function(){return rs(P)},t.svg.area.radial=function(){var t=rs(es);return t.radius=t.x,delete t.x,t.innerRadius=t.x0,delete t.x0,t.outerRadius=t.x1,delete t.x1,t.angle=t.y,delete t.y,t.startAngle=t.y0,delete t.y0,t.endAngle=t.y1,delete t.y1,t},t.svg.chord=function(){var t=Vn,e=Un,r=ns,n=Do,a=Ro;function i(r,n){var a,i,c=o(this,t,r,n),u=o(this,e,r,n);return\"M\"+c.p0+s(c.r,c.p1,c.a1-c.a0)+(i=u,(a=c).a0==i.a0&&a.a1==i.a1?l(c.r,c.p1,c.r,c.p0):l(c.r,c.p1,u.r,u.p0)+s(u.r,u.p1,u.a1-u.a0)+l(u.r,u.p1,c.r,c.p0))+\"Z\"}function o(t,e,i,o){var s=e.call(t,i,o),l=r.call(t,s,o),c=n.call(t,s,o)-Et,u=a.call(t,s,o)-Et;return{r:l,a0:c,a1:u,p0:[l*Math.cos(c),l*Math.sin(c)],p1:[l*Math.cos(u),l*Math.sin(u)]}}function s(t,e,r){return\"A\"+t+\",\"+t+\" 0 \"+ +(r>At)+\",1 \"+e}function l(t,e,r,n){return\"Q 0,0 \"+n}return i.radius=function(t){return arguments.length?(r=ve(t),i):r},i.source=function(e){return arguments.length?(t=ve(e),i):t},i.target=function(t){return arguments.length?(e=ve(t),i):e},i.startAngle=function(t){return arguments.length?(n=ve(t),i):n},i.endAngle=function(t){return arguments.length?(a=ve(t),i):a},i},t.svg.diagonal=function(){var t=Vn,e=Un,r=as;function n(n,a){var i=t.call(this,n,a),o=e.call(this,n,a),s=(i.y+o.y)/2,l=[i,{x:i.x,y:s},{x:o.x,y:s},o];return\"M\"+(l=l.map(r))[0]+\"C\"+l[1]+\" \"+l[2]+\" \"+l[3]}return n.source=function(e){return arguments.length?(t=ve(e),n):t},n.target=function(t){return arguments.length?(e=ve(t),n):e},n.projection=function(t){return arguments.length?(r=t,n):r},n},t.svg.diagonal.radial=function(){var e=t.svg.diagonal(),r=as,n=e.projection;return e.projection=function(t){return arguments.length?n(function(t){return function(){var e=t.apply(this,arguments),r=e[0],n=e[1]-Et;return[r*Math.cos(n),r*Math.sin(n)]}}(r=t)):r},e},t.svg.symbol=function(){var t=os,e=is;function r(r,n){return(ls.get(t.call(this,r,n))||ss)(e.call(this,r,n))}return r.type=function(e){return arguments.length?(t=ve(e),r):t},r.size=function(t){return arguments.length?(e=ve(t),r):e},r};var ls=t.map({circle:ss,cross:function(t){var e=Math.sqrt(t/5)/2;return\"M\"+-3*e+\",\"+-e+\"H\"+-e+\"V\"+-3*e+\"H\"+e+\"V\"+-e+\"H\"+3*e+\"V\"+e+\"H\"+e+\"V\"+3*e+\"H\"+-e+\"V\"+e+\"H\"+-3*e+\"Z\"},diamond:function(t){var e=Math.sqrt(t/(2*us)),r=e*us;return\"M0,\"+-e+\"L\"+r+\",0 0,\"+e+\" \"+-r+\",0Z\"},square:function(t){var e=Math.sqrt(t)/2;return\"M\"+-e+\",\"+-e+\"L\"+e+\",\"+-e+\" \"+e+\",\"+e+\" \"+-e+\",\"+e+\"Z\"},\"triangle-down\":function(t){var e=Math.sqrt(t/cs),r=e*cs/2;return\"M0,\"+r+\"L\"+e+\",\"+-r+\" \"+-e+\",\"+-r+\"Z\"},\"triangle-up\":function(t){var e=Math.sqrt(t/cs),r=e*cs/2;return\"M0,\"+-r+\"L\"+e+\",\"+r+\" \"+-e+\",\"+r+\"Z\"}});t.svg.symbolTypes=ls.keys();var cs=Math.sqrt(3),us=Math.tan(30*Ct);W.transition=function(t){for(var e,r,n=ds||++ms,a=bs(t),i=[],o=gs||{time:Date.now(),ease:ai,delay:0,duration:250},s=-1,l=this.length;++s<l;){i.push(e=[]);for(var c=this[s],u=-1,h=c.length;++u<h;)(r=c[u])&&_s(r,u,a,n,o),e.push(r)}return ps(i,a,n)},W.interrupt=function(t){return this.each(null==t?hs:fs(bs(t)))};var hs=fs(bs());function fs(t){return function(){var e,r,n;(e=this[t])&&(n=e[r=e.active])&&(n.timer.c=null,n.timer.t=NaN,--e.count?delete e[r]:delete this[t],e.active+=.5,n.event&&n.event.interrupt.call(this,this.__data__,n.index))}}function ps(t,e,r){return U(t,vs),t.namespace=e,t.id=r,t}var ds,gs,vs=[],ms=0;function ys(t,e,r,n){var a=t.id,i=t.namespace;return ut(t,\"function\"==typeof r?function(t,o,s){t[i][a].tween.set(e,n(r.call(t,t.__data__,o,s)))}:(r=n(r),function(t){t[i][a].tween.set(e,r)}))}function xs(t){return null==t&&(t=\"\"),function(){this.textContent=t}}function bs(t){return null==t?\"__transition__\":\"__transition_\"+t+\"__\"}function _s(t,e,r,n,a){var i,o,s,l,c,u=t[r]||(t[r]={active:0,count:0}),h=u[n];function f(r){var a=u.active,f=u[a];for(var d in f&&(f.timer.c=null,f.timer.t=NaN,--u.count,delete u[a],f.event&&f.event.interrupt.call(t,t.__data__,f.index)),u)if(+d<n){var g=u[d];g.timer.c=null,g.timer.t=NaN,--u.count,delete u[d]}o.c=p,Te(function(){return o.c&&p(r||1)&&(o.c=null,o.t=NaN),1},0,i),u.active=n,h.event&&h.event.start.call(t,t.__data__,e),c=[],h.tween.forEach(function(r,n){(n=n.call(t,t.__data__,e))&&c.push(n)}),l=h.ease,s=h.duration}function p(a){for(var i=a/s,o=l(i),f=c.length;f>0;)c[--f].call(t,o);if(i>=1)return h.event&&h.event.end.call(t,t.__data__,e),--u.count?delete u[n]:delete t[r],1}h||(i=a.time,o=Te(function(t){var e=h.delay;if(o.t=e+i,e<=t)return f(t-e);o.c=f},0,i),h=u[n]={tween:new b,time:i,timer:o,delay:a.delay,duration:a.duration,ease:a.ease,index:e},a=null,++u.count)}vs.call=W.call,vs.empty=W.empty,vs.node=W.node,vs.size=W.size,t.transition=function(e,r){return e&&e.transition?ds?e.transition(r):e:t.selection().transition(e)},t.transition.prototype=vs,vs.select=function(t){var e,r,n,a=this.id,i=this.namespace,o=[];t=X(t);for(var s=-1,l=this.length;++s<l;){o.push(e=[]);for(var c=this[s],u=-1,h=c.length;++u<h;)(n=c[u])&&(r=t.call(n,n.__data__,u,s))?(\"__data__\"in n&&(r.__data__=n.__data__),_s(r,u,i,a,n[i][a]),e.push(r)):e.push(null)}return ps(o,i,a)},vs.selectAll=function(t){var e,r,n,a,i,o=this.id,s=this.namespace,l=[];t=Z(t);for(var c=-1,u=this.length;++c<u;)for(var h=this[c],f=-1,p=h.length;++f<p;)if(n=h[f]){i=n[s][o],r=t.call(n,n.__data__,f,c),l.push(e=[]);for(var d=-1,g=r.length;++d<g;)(a=r[d])&&_s(a,d,s,o,i),e.push(a)}return ps(l,s,o)},vs.filter=function(t){var e,r,n=[];\"function\"!=typeof t&&(t=ct(t));for(var a=0,i=this.length;a<i;a++){n.push(e=[]);for(var o,s=0,l=(o=this[a]).length;s<l;s++)(r=o[s])&&t.call(r,r.__data__,s,a)&&e.push(r)}return ps(n,this.namespace,this.id)},vs.tween=function(t,e){var r=this.id,n=this.namespace;return arguments.length<2?this.node()[n][r].tween.get(t):ut(this,null==e?function(e){e[n][r].tween.remove(t)}:function(a){a[n][r].tween.set(t,e)})},vs.attr=function(e,r){if(arguments.length<2){for(r in e)this.attr(r,e[r]);return this}var n=\"transform\"==e?gi:Za,a=t.ns.qualify(e);function i(){this.removeAttribute(a)}function o(){this.removeAttributeNS(a.space,a.local)}return ys(this,\"attr.\"+e,r,a.local?function(t){return null==t?o:(t+=\"\",function(){var e,r=this.getAttributeNS(a.space,a.local);return r!==t&&(e=n(r,t),function(t){this.setAttributeNS(a.space,a.local,e(t))})})}:function(t){return null==t?i:(t+=\"\",function(){var e,r=this.getAttribute(a);return r!==t&&(e=n(r,t),function(t){this.setAttribute(a,e(t))})})})},vs.attrTween=function(e,r){var n=t.ns.qualify(e);return this.tween(\"attr.\"+e,n.local?function(t,e){var a=r.call(this,t,e,this.getAttributeNS(n.space,n.local));return a&&function(t){this.setAttributeNS(n.space,n.local,a(t))}}:function(t,e){var a=r.call(this,t,e,this.getAttribute(n));return a&&function(t){this.setAttribute(n,a(t))}})},vs.style=function(t,e,r){var n=arguments.length;if(n<3){if(\"string\"!=typeof t){for(r in n<2&&(e=\"\"),t)this.style(r,t[r],e);return this}r=\"\"}function a(){this.style.removeProperty(t)}return ys(this,\"style.\"+t,e,function(e){return null==e?a:(e+=\"\",function(){var n,a=o(this).getComputedStyle(this,null).getPropertyValue(t);return a!==e&&(n=Za(a,e),function(e){this.style.setProperty(t,n(e),r)})})})},vs.styleTween=function(t,e,r){return arguments.length<3&&(r=\"\"),this.tween(\"style.\"+t,function(n,a){var i=e.call(this,n,a,o(this).getComputedStyle(this,null).getPropertyValue(t));return i&&function(e){this.style.setProperty(t,i(e),r)}})},vs.text=function(t){return ys(this,\"text\",t,xs)},vs.remove=function(){var t=this.namespace;return this.each(\"end.transition\",function(){var e;this[t].count<2&&(e=this.parentNode)&&e.removeChild(this)})},vs.ease=function(e){var r=this.id,n=this.namespace;return arguments.length<1?this.node()[n][r].ease:(\"function\"!=typeof e&&(e=t.ease.apply(t,arguments)),ut(this,function(t){t[n][r].ease=e}))},vs.delay=function(t){var e=this.id,r=this.namespace;return arguments.length<1?this.node()[r][e].delay:ut(this,\"function\"==typeof t?function(n,a,i){n[r][e].delay=+t.call(n,n.__data__,a,i)}:(t=+t,function(n){n[r][e].delay=t}))},vs.duration=function(t){var e=this.id,r=this.namespace;return arguments.length<1?this.node()[r][e].duration:ut(this,\"function\"==typeof t?function(n,a,i){n[r][e].duration=Math.max(1,t.call(n,n.__data__,a,i))}:(t=Math.max(1,t),function(n){n[r][e].duration=t}))},vs.each=function(e,r){var n=this.id,a=this.namespace;if(arguments.length<2){var i=gs,o=ds;try{ds=n,ut(this,function(t,r,i){gs=t[a][n],e.call(t,t.__data__,r,i)})}finally{gs=i,ds=o}}else ut(this,function(i){var o=i[a][n];(o.event||(o.event=t.dispatch(\"start\",\"end\",\"interrupt\"))).on(e,r)});return this},vs.transition=function(){for(var t,e,r,n=this.id,a=++ms,i=this.namespace,o=[],s=0,l=this.length;s<l;s++){o.push(t=[]);for(var c,u=0,h=(c=this[s]).length;u<h;u++)(e=c[u])&&_s(e,u,i,a,{time:(r=e[i][n]).time,ease:r.ease,delay:r.delay+r.duration,duration:r.duration}),t.push(e)}return ps(o,i,a)},t.svg.axis=function(){var e,r=t.scale.linear(),a=ws,i=6,o=6,s=3,l=[10],c=null;function u(n){n.each(function(){var n,u=t.select(this),h=this.__chart__||r,f=this.__chart__=r.copy(),p=null==c?f.ticks?f.ticks.apply(f,l):f.domain():c,d=null==e?f.tickFormat?f.tickFormat.apply(f,l):P:e,g=u.selectAll(\".tick\").data(p,f),v=g.enter().insert(\"g\",\".domain\").attr(\"class\",\"tick\").style(\"opacity\",kt),m=t.transition(g.exit()).style(\"opacity\",kt).remove(),y=t.transition(g.order()).style(\"opacity\",1),x=Math.max(i,0)+s,b=uo(f),_=u.selectAll(\".domain\").data([0]),w=(_.enter().append(\"path\").attr(\"class\",\"domain\"),t.transition(_));v.append(\"line\"),v.append(\"text\");var k,T,A,M,S=v.select(\"line\"),E=y.select(\"line\"),C=g.select(\"text\").text(d),L=v.select(\"text\"),O=y.select(\"text\"),I=\"top\"===a||\"left\"===a?-1:1;if(\"bottom\"===a||\"top\"===a?(n=Ts,k=\"x\",A=\"y\",T=\"x2\",M=\"y2\",C.attr(\"dy\",I<0?\"0em\":\".71em\").style(\"text-anchor\",\"middle\"),w.attr(\"d\",\"M\"+b[0]+\",\"+I*o+\"V0H\"+b[1]+\"V\"+I*o)):(n=As,k=\"y\",A=\"x\",T=\"y2\",M=\"x2\",C.attr(\"dy\",\".32em\").style(\"text-anchor\",I<0?\"end\":\"start\"),w.attr(\"d\",\"M\"+I*o+\",\"+b[0]+\"H0V\"+b[1]+\"H\"+I*o)),S.attr(M,I*i),L.attr(A,I*x),E.attr(T,0).attr(M,I*i),O.attr(k,0).attr(A,I*x),f.rangeBand){var z=f,D=z.rangeBand()/2;h=f=function(t){return z(t)+D}}else h.rangeBand?h=f:m.call(n,f,h);v.call(n,h,f),y.call(n,f,f)})}return u.scale=function(t){return arguments.length?(r=t,u):r},u.orient=function(t){return arguments.length?(a=t in ks?t+\"\":ws,u):a},u.ticks=function(){return arguments.length?(l=n(arguments),u):l},u.tickValues=function(t){return arguments.length?(c=t,u):c},u.tickFormat=function(t){return arguments.length?(e=t,u):e},u.tickSize=function(t){var e=arguments.length;return e?(i=+t,o=+arguments[e-1],u):i},u.innerTickSize=function(t){return arguments.length?(i=+t,u):i},u.outerTickSize=function(t){return arguments.length?(o=+t,u):o},u.tickPadding=function(t){return arguments.length?(s=+t,u):s},u.tickSubdivide=function(){return arguments.length&&u},u};var ws=\"bottom\",ks={top:1,right:1,bottom:1,left:1};function Ts(t,e,r){t.attr(\"transform\",function(t){var n=e(t);return\"translate(\"+(isFinite(n)?n:r(t))+\",0)\"})}function As(t,e,r){t.attr(\"transform\",function(t){var n=e(t);return\"translate(0,\"+(isFinite(n)?n:r(t))+\")\"})}t.svg.brush=function(){var e,r,n=j(f,\"brushstart\",\"brush\",\"brushend\"),a=null,i=null,s=[0,0],l=[0,0],c=!0,u=!0,h=Ss[0];function f(e){e.each(function(){var e=t.select(this).style(\"pointer-events\",\"all\").style(\"-webkit-tap-highlight-color\",\"rgba(0,0,0,0)\").on(\"mousedown.brush\",v).on(\"touchstart.brush\",v),r=e.selectAll(\".background\").data([0]);r.enter().append(\"rect\").attr(\"class\",\"background\").style(\"visibility\",\"hidden\").style(\"cursor\",\"crosshair\"),e.selectAll(\".extent\").data([0]).enter().append(\"rect\").attr(\"class\",\"extent\").style(\"cursor\",\"move\");var n=e.selectAll(\".resize\").data(h,P);n.exit().remove(),n.enter().append(\"g\").attr(\"class\",function(t){return\"resize \"+t}).style(\"cursor\",function(t){return Ms[t]}).append(\"rect\").attr(\"x\",function(t){return/[ew]$/.test(t)?-3:null}).attr(\"y\",function(t){return/^[ns]/.test(t)?-3:null}).attr(\"width\",6).attr(\"height\",6).style(\"visibility\",\"hidden\"),n.style(\"display\",f.empty()?\"none\":null);var o,s=t.transition(e),l=t.transition(r);a&&(o=uo(a),l.attr(\"x\",o[0]).attr(\"width\",o[1]-o[0]),d(s)),i&&(o=uo(i),l.attr(\"y\",o[0]).attr(\"height\",o[1]-o[0]),g(s)),p(s)})}function p(t){t.selectAll(\".resize\").attr(\"transform\",function(t){return\"translate(\"+s[+/e$/.test(t)]+\",\"+l[+/^s/.test(t)]+\")\"})}function d(t){t.select(\".extent\").attr(\"x\",s[0]),t.selectAll(\".extent,.n>rect,.s>rect\").attr(\"width\",s[1]-s[0])}function g(t){t.select(\".extent\").attr(\"y\",l[0]),t.selectAll(\".extent,.e>rect,.w>rect\").attr(\"height\",l[1]-l[0])}function v(){var h,v,m=this,y=t.select(t.event.target),x=n.of(m,arguments),b=t.select(m),_=y.datum(),w=!/^(n|s)$/.test(_)&&a,k=!/^(e|w)$/.test(_)&&i,T=y.classed(\"extent\"),A=xt(m),M=t.mouse(m),S=t.select(o(m)).on(\"keydown.brush\",function(){32==t.event.keyCode&&(T||(h=null,M[0]-=s[1],M[1]-=l[1],T=2),B())}).on(\"keyup.brush\",function(){32==t.event.keyCode&&2==T&&(M[0]+=s[1],M[1]+=l[1],T=0,B())});if(t.event.changedTouches?S.on(\"touchmove.brush\",L).on(\"touchend.brush\",O):S.on(\"mousemove.brush\",L).on(\"mouseup.brush\",O),b.interrupt().selectAll(\"*\").interrupt(),T)M[0]=s[0]-M[0],M[1]=l[0]-M[1];else if(_){var E=+/w$/.test(_),C=+/^n/.test(_);v=[s[1-E]-M[0],l[1-C]-M[1]],M[0]=s[E],M[1]=l[C]}else t.event.altKey&&(h=M.slice());function L(){var e=t.mouse(m),r=!1;v&&(e[0]+=v[0],e[1]+=v[1]),T||(t.event.altKey?(h||(h=[(s[0]+s[1])/2,(l[0]+l[1])/2]),M[0]=s[+(e[0]<h[0])],M[1]=l[+(e[1]<h[1])]):h=null),w&&P(e,a,0)&&(d(b),r=!0),k&&P(e,i,1)&&(g(b),r=!0),r&&(p(b),x({type:\"brush\",mode:T?\"move\":\"resize\"}))}function P(t,n,a){var i,o,f=uo(n),p=f[0],d=f[1],g=M[a],v=a?l:s,m=v[1]-v[0];if(T&&(p-=g,d-=m+g),i=(a?u:c)?Math.max(p,Math.min(d,t[a])):t[a],T?o=(i+=g)+m:(h&&(g=Math.max(p,Math.min(d,2*h[a]-i))),g<i?(o=i,i=g):o=g),v[0]!=i||v[1]!=o)return a?r=null:e=null,v[0]=i,v[1]=o,!0}function O(){L(),b.style(\"pointer-events\",\"all\").selectAll(\".resize\").style(\"display\",f.empty()?\"none\":null),t.select(\"body\").style(\"cursor\",null),S.on(\"mousemove.brush\",null).on(\"mouseup.brush\",null).on(\"touchmove.brush\",null).on(\"touchend.brush\",null).on(\"keydown.brush\",null).on(\"keyup.brush\",null),A(),x({type:\"brushend\"})}b.style(\"pointer-events\",\"none\").selectAll(\".resize\").style(\"display\",null),t.select(\"body\").style(\"cursor\",y.style(\"cursor\")),x({type:\"brushstart\"}),L()}return f.event=function(a){a.each(function(){var a=n.of(this,arguments),i={x:s,y:l,i:e,j:r},o=this.__chart__||i;this.__chart__=i,ds?t.select(this).transition().each(\"start.brush\",function(){e=o.i,r=o.j,s=o.x,l=o.y,a({type:\"brushstart\"})}).tween(\"brush:brush\",function(){var t=Ja(s,i.x),n=Ja(l,i.y);return e=r=null,function(e){s=i.x=t(e),l=i.y=n(e),a({type:\"brush\",mode:\"resize\"})}}).each(\"end.brush\",function(){e=i.i,r=i.j,a({type:\"brush\",mode:\"resize\"}),a({type:\"brushend\"})}):(a({type:\"brushstart\"}),a({type:\"brush\",mode:\"resize\"}),a({type:\"brushend\"}))})},f.x=function(t){return arguments.length?(h=Ss[!(a=t)<<1|!i],f):a},f.y=function(t){return arguments.length?(h=Ss[!a<<1|!(i=t)],f):i},f.clamp=function(t){return arguments.length?(a&&i?(c=!!t[0],u=!!t[1]):a?c=!!t:i&&(u=!!t),f):a&&i?[c,u]:a?c:i?u:null},f.extent=function(t){var n,o,c,u,h;return arguments.length?(a&&(n=t[0],o=t[1],i&&(n=n[0],o=o[0]),e=[n,o],a.invert&&(n=a(n),o=a(o)),o<n&&(h=n,n=o,o=h),n==s[0]&&o==s[1]||(s=[n,o])),i&&(c=t[0],u=t[1],a&&(c=c[1],u=u[1]),r=[c,u],i.invert&&(c=i(c),u=i(u)),u<c&&(h=c,c=u,u=h),c==l[0]&&u==l[1]||(l=[c,u])),f):(a&&(e?(n=e[0],o=e[1]):(n=s[0],o=s[1],a.invert&&(n=a.invert(n),o=a.invert(o)),o<n&&(h=n,n=o,o=h))),i&&(r?(c=r[0],u=r[1]):(c=l[0],u=l[1],i.invert&&(c=i.invert(c),u=i.invert(u)),u<c&&(h=c,c=u,u=h))),a&&i?[[n,c],[o,u]]:a?[n,o]:i&&[c,u])},f.clear=function(){return f.empty()||(s=[0,0],l=[0,0],e=r=null),f},f.empty=function(){return!!a&&s[0]==s[1]||!!i&&l[0]==l[1]},t.rebind(f,n,\"on\")};var Ms={n:\"ns-resize\",e:\"ew-resize\",s:\"ns-resize\",w:\"ew-resize\",nw:\"nwse-resize\",ne:\"nesw-resize\",se:\"nwse-resize\",sw:\"nesw-resize\"},Ss=[[\"n\",\"e\",\"s\",\"w\",\"nw\",\"ne\",\"se\",\"sw\"],[\"e\",\"w\"],[\"n\",\"s\"],[]],Es=Ie.format=sr.timeFormat,Cs=Es.utc,Ls=Cs(\"%Y-%m-%dT%H:%M:%S.%LZ\");function Ps(t){return t.toISOString()}function Os(e,r,n){function a(t){return e(t)}function i(e,n){var a=(e[1]-e[0])/n,i=t.bisect(zs,a);return i==zs.length?[r.year,xo(e.map(function(t){return t/31536e6}),n)[2]]:i?r[a/zs[i-1]<zs[i]/a?i-1:i]:[Fs,xo(e,n)[2]]}return a.invert=function(t){return Is(e.invert(t))},a.domain=function(t){return arguments.length?(e.domain(t),a):e.domain().map(Is)},a.nice=function(t,e){var r=a.domain(),n=co(r),o=null==t?i(n,10):\"number\"==typeof t&&i(n,t);function s(r){return!isNaN(r)&&!t.range(r,Is(+r+1),e).length}return o&&(t=o[0],e=o[1]),a.domain(fo(r,e>1?{floor:function(e){for(;s(e=t.floor(e));)e=Is(e-1);return e},ceil:function(e){for(;s(e=t.ceil(e));)e=Is(+e+1);return e}}:t))},a.ticks=function(t,e){var r=co(a.domain()),n=null==t?i(r,10):\"number\"==typeof t?i(r,t):!t.range&&[{range:t},e];return n&&(t=n[0],e=n[1]),t.range(r[0],Is(+r[1]+1),e<1?1:e)},a.tickFormat=function(){return n},a.copy=function(){return Os(e.copy(),r,n)},mo(a,e)}function Is(t){return new Date(t)}Es.iso=Date.prototype.toISOString&&+new Date(\"2000-01-01T00:00:00.000Z\")?Ps:Ls,Ps.parse=function(t){var e=new Date(t);return isNaN(e)?null:e},Ps.toString=Ls.toString,Ie.second=Fe(function(t){return new ze(1e3*Math.floor(t/1e3))},function(t,e){t.setTime(t.getTime()+1e3*Math.floor(e))},function(t){return t.getSeconds()}),Ie.seconds=Ie.second.range,Ie.seconds.utc=Ie.second.utc.range,Ie.minute=Fe(function(t){return new ze(6e4*Math.floor(t/6e4))},function(t,e){t.setTime(t.getTime()+6e4*Math.floor(e))},function(t){return t.getMinutes()}),Ie.minutes=Ie.minute.range,Ie.minutes.utc=Ie.minute.utc.range,Ie.hour=Fe(function(t){var e=t.getTimezoneOffset()/60;return new ze(36e5*(Math.floor(t/36e5-e)+e))},function(t,e){t.setTime(t.getTime()+36e5*Math.floor(e))},function(t){return t.getHours()}),Ie.hours=Ie.hour.range,Ie.hours.utc=Ie.hour.utc.range,Ie.month=Fe(function(t){return(t=Ie.day(t)).setDate(1),t},function(t,e){t.setMonth(t.getMonth()+e)},function(t){return t.getMonth()}),Ie.months=Ie.month.range,Ie.months.utc=Ie.month.utc.range;var zs=[1e3,5e3,15e3,3e4,6e4,3e5,9e5,18e5,36e5,108e5,216e5,432e5,864e5,1728e5,6048e5,2592e6,7776e6,31536e6],Ds=[[Ie.second,1],[Ie.second,5],[Ie.second,15],[Ie.second,30],[Ie.minute,1],[Ie.minute,5],[Ie.minute,15],[Ie.minute,30],[Ie.hour,1],[Ie.hour,3],[Ie.hour,6],[Ie.hour,12],[Ie.day,1],[Ie.day,2],[Ie.week,1],[Ie.month,1],[Ie.month,3],[Ie.year,1]],Rs=Es.multi([[\".%L\",function(t){return t.getMilliseconds()}],[\":%S\",function(t){return t.getSeconds()}],[\"%I:%M\",function(t){return t.getMinutes()}],[\"%I %p\",function(t){return t.getHours()}],[\"%a %d\",function(t){return t.getDay()&&1!=t.getDate()}],[\"%b %d\",function(t){return 1!=t.getDate()}],[\"%B\",function(t){return t.getMonth()}],[\"%Y\",Yr]]),Fs={range:function(e,r,n){return t.range(Math.ceil(e/n)*n,+r,n).map(Is)},floor:P,ceil:P};Ds.year=Ie.year,Ie.scale=function(){return Os(t.scale.linear(),Ds,Rs)};var Bs=Ds.map(function(t){return[t[0].utc,t[1]]}),Ns=Cs.multi([[\".%L\",function(t){return t.getUTCMilliseconds()}],[\":%S\",function(t){return t.getUTCSeconds()}],[\"%I:%M\",function(t){return t.getUTCMinutes()}],[\"%I %p\",function(t){return t.getUTCHours()}],[\"%a %d\",function(t){return t.getUTCDay()&&1!=t.getUTCDate()}],[\"%b %d\",function(t){return 1!=t.getUTCDate()}],[\"%B\",function(t){return t.getUTCMonth()}],[\"%Y\",Yr]]);function js(t){return JSON.parse(t.responseText)}function Vs(t){var e=a.createRange();return e.selectNode(a.body),e.createContextualFragment(t.responseText)}Bs.year=Ie.year.utc,Ie.scale.utc=function(){return Os(t.scale.linear(),Bs,Ns)},t.text=me(function(t){return t.responseText}),t.json=function(t,e){return ye(t,\"application/json\",js,e)},t.html=function(t,e){return ye(t,\"text/html\",Vs,e)},t.xml=me(function(t){return t.responseXML}),\"object\"==typeof e&&e.exports?e.exports=t:this.d3=t}()},{}],165:[function(t,e,r){e.exports=function(){for(var t=0;t<arguments.length;t++)if(void 0!==arguments[t])return arguments[t]}},{}],166:[function(t,e,r){\"use strict\";var n=t(\"incremental-convex-hull\"),a=t(\"uniq\");function i(t,e){this.point=t,this.index=e}function o(t,e){for(var r=t.point,n=e.point,a=r.length,i=0;i<a;++i){var o=n[i]-r[i];if(o)return o}return 0}e.exports=function(t,e){var r=t.length;if(0===r)return[];var s=t[0].length;if(s<1)return[];if(1===s)return function(t,e,r){if(1===t)return r?[[-1,0]]:[];var n=e.map(function(t,e){return[t[0],e]});n.sort(function(t,e){return t[0]-e[0]});for(var a=new Array(t-1),i=1;i<t;++i){var o=n[i-1],s=n[i];a[i-1]=[o[1],s[1]]}r&&a.push([-1,a[0][1]],[a[t-1][1],-1]);return a}(r,t,e);for(var l=new Array(r),c=1,u=0;u<r;++u){for(var h=t[u],f=new Array(s+1),p=0,d=0;d<s;++d){var g=h[d];f[d]=g,p+=g*g}f[s]=p,l[u]=new i(f,u),c=Math.max(p,c)}a(l,o),r=l.length;for(var v=new Array(r+s+1),m=new Array(r+s+1),y=(s+1)*(s+1)*c,x=new Array(s+1),u=0;u<=s;++u)x[u]=0;x[s]=y,v[0]=x.slice(),m[0]=-1;for(var u=0;u<=s;++u){var f=x.slice();f[u]=1,v[u+1]=f,m[u+1]=-1}for(var u=0;u<r;++u){var b=l[u];v[u+s+1]=b.point,m[u+s+1]=b.index}var _=n(v,!1);_=e?_.filter(function(t){for(var e=0,r=0;r<=s;++r){var n=m[t[r]];if(n<0&&++e>=2)return!1;t[r]=n}return!0}):_.filter(function(t){for(var e=0;e<=s;++e){var r=m[t[e]];if(r<0)return!1;t[e]=r}return!0});if(1&s)for(var u=0;u<_.length;++u){var b=_[u],f=b[0];b[0]=b[1],b[1]=f}return _}},{\"incremental-convex-hull\":414,uniq:548}],167:[function(t,e,r){\"use strict\";e.exports=i;var n=(i.canvas=document.createElement(\"canvas\")).getContext(\"2d\"),a=o([32,126]);function i(t,e){Array.isArray(t)&&(t=t.join(\", \"));var r,i={},s=16,l=.05;e&&(2===e.length&&\"number\"==typeof e[0]?r=o(e):Array.isArray(e)?r=e:(e.o?r=o(e.o):e.pairs&&(r=e.pairs),e.fontSize&&(s=e.fontSize),null!=e.threshold&&(l=e.threshold))),r||(r=a),n.font=s+\"px \"+t;for(var c=0;c<r.length;c++){var u=r[c],h=n.measureText(u[0]).width+n.measureText(u[1]).width,f=n.measureText(u).width;if(Math.abs(h-f)>s*l){var p=(f-h)/s;i[u]=1e3*p}}return i}function o(t){for(var e=[],r=t[0];r<=t[1];r++)for(var n=String.fromCharCode(r),a=t[0];a<t[1];a++){var i=n+String.fromCharCode(a);e.push(i)}return e}i.createPairs=o,i.ascii=a},{}],168:[function(t,e,r){(function(t){var r=!1;if(\"undefined\"!=typeof Float64Array){var n=new Float64Array(1),a=new Uint32Array(n.buffer);if(n[0]=1,r=!0,1072693248===a[1]){e.exports=function(t){return n[0]=t,[a[0],a[1]]},e.exports.pack=function(t,e){return a[0]=t,a[1]=e,n[0]},e.exports.lo=function(t){return n[0]=t,a[0]},e.exports.hi=function(t){return n[0]=t,a[1]}}else if(1072693248===a[0]){e.exports=function(t){return n[0]=t,[a[1],a[0]]},e.exports.pack=function(t,e){return a[1]=t,a[0]=e,n[0]},e.exports.lo=function(t){return n[0]=t,a[1]},e.exports.hi=function(t){return n[0]=t,a[0]}}else r=!1}if(!r){var i=new t(8);e.exports=function(t){return i.writeDoubleLE(t,0,!0),[i.readUInt32LE(0,!0),i.readUInt32LE(4,!0)]},e.exports.pack=function(t,e){return i.writeUInt32LE(t,0,!0),i.writeUInt32LE(e,4,!0),i.readDoubleLE(0,!0)},e.exports.lo=function(t){return i.writeDoubleLE(t,0,!0),i.readUInt32LE(0,!0)},e.exports.hi=function(t){return i.writeDoubleLE(t,0,!0),i.readUInt32LE(4,!0)}}e.exports.sign=function(t){return e.exports.hi(t)>>>31},e.exports.exponent=function(t){return(e.exports.hi(t)<<1>>>21)-1023},e.exports.fraction=function(t){var r=e.exports.lo(t),n=e.exports.hi(t),a=1048575&n;return 2146435072&n&&(a+=1<<20),[r,a]},e.exports.denormalized=function(t){return!(2146435072&e.exports.hi(t))}}).call(this,t(\"buffer\").Buffer)},{buffer:106}],169:[function(t,e,r){var n=t(\"abs-svg-path\"),a=t(\"normalize-svg-path\"),i={M:\"moveTo\",C:\"bezierCurveTo\"};e.exports=function(t,e){t.beginPath(),a(n(e)).forEach(function(e){var r=e[0],n=e.slice(1);t[i[r]].apply(t,n)}),t.closePath()}},{\"abs-svg-path\":61,\"normalize-svg-path\":453}],170:[function(t,e,r){e.exports=function(t){switch(t){case\"int8\":return Int8Array;case\"int16\":return Int16Array;case\"int32\":return Int32Array;case\"uint8\":return Uint8Array;case\"uint16\":return Uint16Array;case\"uint32\":return Uint32Array;case\"float32\":return Float32Array;case\"float64\":return Float64Array;case\"array\":return Array;case\"uint8_clamped\":return Uint8ClampedArray}}},{}],171:[function(t,e,r){\"use strict\";e.exports=function(t,e){switch(\"undefined\"==typeof e&&(e=0),typeof t){case\"number\":if(t>0)return function(t,e){var r,n;for(r=new Array(t),n=0;n<t;++n)r[n]=e;return r}(0|t,e);break;case\"object\":if(\"number\"==typeof t.length)return function t(e,r,n){var a=0|e[n];if(a<=0)return[];var i,o=new Array(a);if(n===e.length-1)for(i=0;i<a;++i)o[i]=r;else for(i=0;i<a;++i)o[i]=t(e,r,n+1);return o}(t,e,0)}return[]}},{}],172:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=t.length;if(\"number\"!=typeof e){e=0;for(var a=0;a<r;++a){var i=t[a];e=Math.max(e,i[0],i[1])}e=1+(0|e)}e|=0;for(var o=new Array(e),a=0;a<e;++a)o[a]=[];for(var a=0;a<r;++a){var i=t[a];o[i[0]].push(i[1]),o[i[1]].push(i[0])}for(var s=0;s<e;++s)n(o[s],function(t,e){return t-e});return o};var n=t(\"uniq\")},{uniq:548}],173:[function(t,e,r){var n=t(\"strongly-connected-components\");e.exports=function(t){var e,r=[],a=[],i=[],o={},s=[];function l(t){var r,n,u=!1;for(a.push(t),i[t]=!0,r=0;r<s[t].length;r++)(n=s[t][r])===e?(c(e,a),u=!0):i[n]||(u=l(n));if(u)!function t(e){i[e]=!1,o.hasOwnProperty(e)&&Object.keys(o[e]).forEach(function(r){delete o[e][r],i[r]&&t(r)})}(t);else for(r=0;r<s[t].length;r++){n=s[t][r];var h=o[n];h||(h={},o[n]=h),h[n]=!0}return a.pop(),u}function c(t,e){var n=[].concat(e).concat(t);r.push(n)}function u(e){!function(e){for(var r=0;r<t.length;r++)r<e&&(t[r]=[]),t[r]=t[r].filter(function(t){return t>=e})}(e);for(var r,a=n(t).components.filter(function(t){return t.length>1}),i=1/0,o=0;o<a.length;o++)for(var s=0;s<a[o].length;s++)a[o][s]<i&&(i=a[o][s],r=o);var l=a[r];return!!l&&{leastVertex:i,adjList:t.map(function(t,e){return-1===l.indexOf(e)?[]:t.filter(function(t){return-1!==l.indexOf(t)})})}}e=0;for(var h=t.length;e<h;){var f=u(e);if(e=f.leastVertex,s=f.adjList){for(var p=0;p<s.length;p++)for(var d=0;d<s[p].length;d++){var g=s[p][d];i[+g]=!1,o[g]={}}l(e),e+=1}else e=h}return r}},{\"strongly-connected-components\":531}],174:[function(t,e,r){\"use strict\";var n=t(\"../../object/valid-value\");e.exports=function(){return n(this).length=0,this}},{\"../../object/valid-value\":206}],175:[function(t,e,r){\"use strict\";e.exports=t(\"./is-implemented\")()?Array.from:t(\"./shim\")},{\"./is-implemented\":176,\"./shim\":177}],176:[function(t,e,r){\"use strict\";e.exports=function(){var t,e,r=Array.from;return\"function\"==typeof r&&(e=r(t=[\"raz\",\"dwa\"]),Boolean(e&&e!==t&&\"dwa\"===e[1]))}},{}],177:[function(t,e,r){\"use strict\";var n=t(\"es6-symbol\").iterator,a=t(\"../../function/is-arguments\"),i=t(\"../../function/is-function\"),o=t(\"../../number/to-pos-integer\"),s=t(\"../../object/valid-callable\"),l=t(\"../../object/valid-value\"),c=t(\"../../object/is-value\"),u=t(\"../../string/is-string\"),h=Array.isArray,f=Function.prototype.call,p={configurable:!0,enumerable:!0,writable:!0,value:null},d=Object.defineProperty;e.exports=function(t){var e,r,g,v,m,y,x,b,_,w,k=arguments[1],T=arguments[2];if(t=Object(l(t)),c(k)&&s(k),this&&this!==Array&&i(this))e=this;else{if(!k){if(a(t))return 1!==(m=t.length)?Array.apply(null,t):((v=new Array(1))[0]=t[0],v);if(h(t)){for(v=new Array(m=t.length),r=0;r<m;++r)v[r]=t[r];return v}}v=[]}if(!h(t))if(void 0!==(_=t[n])){for(x=s(_).call(t),e&&(v=new e),b=x.next(),r=0;!b.done;)w=k?f.call(k,T,b.value,r):b.value,e?(p.value=w,d(v,r,p)):v[r]=w,b=x.next(),++r;m=r}else if(u(t)){for(m=t.length,e&&(v=new e),r=0,g=0;r<m;++r)w=t[r],r+1<m&&(y=w.charCodeAt(0))>=55296&&y<=56319&&(w+=t[++r]),w=k?f.call(k,T,w,g):w,e?(p.value=w,d(v,g,p)):v[g]=w,++g;m=g}if(void 0===m)for(m=o(t.length),e&&(v=new e(m)),r=0;r<m;++r)w=k?f.call(k,T,t[r],r):t[r],e?(p.value=w,d(v,r,p)):v[r]=w;return e&&(p.value=null,v.length=m),v}},{\"../../function/is-arguments\":178,\"../../function/is-function\":179,\"../../number/to-pos-integer\":185,\"../../object/is-value\":195,\"../../object/valid-callable\":204,\"../../object/valid-value\":206,\"../../string/is-string\":210,\"es6-symbol\":220}],178:[function(t,e,r){\"use strict\";var n=Object.prototype.toString,a=n.call(function(){return arguments}());e.exports=function(t){return n.call(t)===a}},{}],179:[function(t,e,r){\"use strict\";var n=Object.prototype.toString,a=n.call(t(\"./noop\"));e.exports=function(t){return\"function\"==typeof t&&n.call(t)===a}},{\"./noop\":180}],180:[function(t,e,r){\"use strict\";e.exports=function(){}},{}],181:[function(t,e,r){\"use strict\";e.exports=t(\"./is-implemented\")()?Math.sign:t(\"./shim\")},{\"./is-implemented\":182,\"./shim\":183}],182:[function(t,e,r){\"use strict\";e.exports=function(){var t=Math.sign;return\"function\"==typeof t&&(1===t(10)&&-1===t(-20))}},{}],183:[function(t,e,r){\"use strict\";e.exports=function(t){return t=Number(t),isNaN(t)||0===t?t:t>0?1:-1}},{}],184:[function(t,e,r){\"use strict\";var n=t(\"../math/sign\"),a=Math.abs,i=Math.floor;e.exports=function(t){return isNaN(t)?0:0!==(t=Number(t))&&isFinite(t)?n(t)*i(a(t)):t}},{\"../math/sign\":181}],185:[function(t,e,r){\"use strict\";var n=t(\"./to-integer\"),a=Math.max;e.exports=function(t){return a(0,n(t))}},{\"./to-integer\":184}],186:[function(t,e,r){\"use strict\";var n=t(\"./valid-callable\"),a=t(\"./valid-value\"),i=Function.prototype.bind,o=Function.prototype.call,s=Object.keys,l=Object.prototype.propertyIsEnumerable;e.exports=function(t,e){return function(r,c){var u,h=arguments[2],f=arguments[3];return r=Object(a(r)),n(c),u=s(r),f&&u.sort(\"function\"==typeof f?i.call(f,r):void 0),\"function\"!=typeof t&&(t=u[t]),o.call(t,u,function(t,n){return l.call(r,t)?o.call(c,h,r[t],t,r,n):e})}}},{\"./valid-callable\":204,\"./valid-value\":206}],187:[function(t,e,r){\"use strict\";e.exports=t(\"./is-implemented\")()?Object.assign:t(\"./shim\")},{\"./is-implemented\":188,\"./shim\":189}],188:[function(t,e,r){\"use strict\";e.exports=function(){var t,e=Object.assign;return\"function\"==typeof e&&(e(t={foo:\"raz\"},{bar:\"dwa\"},{trzy:\"trzy\"}),t.foo+t.bar+t.trzy===\"razdwatrzy\")}},{}],189:[function(t,e,r){\"use strict\";var n=t(\"../keys\"),a=t(\"../valid-value\"),i=Math.max;e.exports=function(t,e){var r,o,s,l=i(arguments.length,2);for(t=Object(a(t)),s=function(n){try{t[n]=e[n]}catch(t){r||(r=t)}},o=1;o<l;++o)e=arguments[o],n(e).forEach(s);if(void 0!==r)throw r;return t}},{\"../keys\":196,\"../valid-value\":206}],190:[function(t,e,r){\"use strict\";var n=t(\"../array/from\"),a=t(\"./assign\"),i=t(\"./valid-value\");e.exports=function(t){var e=Object(i(t)),r=arguments[1],o=Object(arguments[2]);if(e!==t&&!r)return e;var s={};return r?n(r,function(e){(o.ensure||e in t)&&(s[e]=t[e])}):a(s,t),s}},{\"../array/from\":175,\"./assign\":187,\"./valid-value\":206}],191:[function(t,e,r){\"use strict\";var n,a,i,o,s=Object.create;t(\"./set-prototype-of/is-implemented\")()||(n=t(\"./set-prototype-of/shim\")),e.exports=n?1!==n.level?s:(a={},i={},o={configurable:!1,enumerable:!1,writable:!0,value:void 0},Object.getOwnPropertyNames(Object.prototype).forEach(function(t){i[t]=\"__proto__\"!==t?o:{configurable:!0,enumerable:!1,writable:!0,value:void 0}}),Object.defineProperties(a,i),Object.defineProperty(n,\"nullPolyfill\",{configurable:!1,enumerable:!1,writable:!1,value:a}),function(t,e){return s(null===t?a:t,e)}):s},{\"./set-prototype-of/is-implemented\":202,\"./set-prototype-of/shim\":203}],192:[function(t,e,r){\"use strict\";e.exports=t(\"./_iterate\")(\"forEach\")},{\"./_iterate\":186}],193:[function(t,e,r){\"use strict\";e.exports=function(t){return\"function\"==typeof t}},{}],194:[function(t,e,r){\"use strict\";var n=t(\"./is-value\"),a={function:!0,object:!0};e.exports=function(t){return n(t)&&a[typeof t]||!1}},{\"./is-value\":195}],195:[function(t,e,r){\"use strict\";var n=t(\"../function/noop\")();e.exports=function(t){return t!==n&&null!==t}},{\"../function/noop\":180}],196:[function(t,e,r){\"use strict\";e.exports=t(\"./is-implemented\")()?Object.keys:t(\"./shim\")},{\"./is-implemented\":197,\"./shim\":198}],197:[function(t,e,r){\"use strict\";e.exports=function(){try{return Object.keys(\"primitive\"),!0}catch(t){return!1}}},{}],198:[function(t,e,r){\"use strict\";var n=t(\"../is-value\"),a=Object.keys;e.exports=function(t){return a(n(t)?Object(t):t)}},{\"../is-value\":195}],199:[function(t,e,r){\"use strict\";var n=t(\"./valid-callable\"),a=t(\"./for-each\"),i=Function.prototype.call;e.exports=function(t,e){var r={},o=arguments[2];return n(e),a(t,function(t,n,a,s){r[n]=i.call(e,o,t,n,a,s)}),r}},{\"./for-each\":192,\"./valid-callable\":204}],200:[function(t,e,r){\"use strict\";var n=t(\"./is-value\"),a=Array.prototype.forEach,i=Object.create;e.exports=function(t){var e=i(null);return a.call(arguments,function(t){n(t)&&function(t,e){var r;for(r in t)e[r]=t[r]}(Object(t),e)}),e}},{\"./is-value\":195}],201:[function(t,e,r){\"use strict\";e.exports=t(\"./is-implemented\")()?Object.setPrototypeOf:t(\"./shim\")},{\"./is-implemented\":202,\"./shim\":203}],202:[function(t,e,r){\"use strict\";var n=Object.create,a=Object.getPrototypeOf,i={};e.exports=function(){var t=Object.setPrototypeOf,e=arguments[0]||n;return\"function\"==typeof t&&a(t(e(null),i))===i}},{}],203:[function(t,e,r){\"use strict\";var n,a,i,o,s=t(\"../is-object\"),l=t(\"../valid-value\"),c=Object.prototype.isPrototypeOf,u=Object.defineProperty,h={configurable:!0,enumerable:!1,writable:!0,value:void 0};n=function(t,e){if(l(t),null===e||s(e))return t;throw new TypeError(\"Prototype must be null or an object\")},e.exports=(a=function(){var t,e=Object.create(null),r={},n=Object.getOwnPropertyDescriptor(Object.prototype,\"__proto__\");if(n){try{(t=n.set).call(e,r)}catch(t){}if(Object.getPrototypeOf(e)===r)return{set:t,level:2}}return e.__proto__=r,Object.getPrototypeOf(e)===r?{level:2}:((e={}).__proto__=r,Object.getPrototypeOf(e)===r&&{level:1})}())?(2===a.level?a.set?(o=a.set,i=function(t,e){return o.call(n(t,e),e),t}):i=function(t,e){return n(t,e).__proto__=e,t}:i=function t(e,r){var a;return n(e,r),(a=c.call(t.nullPolyfill,e))&&delete t.nullPolyfill.__proto__,null===r&&(r=t.nullPolyfill),e.__proto__=r,a&&u(t.nullPolyfill,\"__proto__\",h),e},Object.defineProperty(i,\"level\",{configurable:!1,enumerable:!1,writable:!1,value:a.level})):null,t(\"../create\")},{\"../create\":191,\"../is-object\":194,\"../valid-value\":206}],204:[function(t,e,r){\"use strict\";e.exports=function(t){if(\"function\"!=typeof t)throw new TypeError(t+\" is not a function\");return t}},{}],205:[function(t,e,r){\"use strict\";var n=t(\"./is-object\");e.exports=function(t){if(!n(t))throw new TypeError(t+\" is not an Object\");return t}},{\"./is-object\":194}],206:[function(t,e,r){\"use strict\";var n=t(\"./is-value\");e.exports=function(t){if(!n(t))throw new TypeError(\"Cannot use null or undefined\");return t}},{\"./is-value\":195}],207:[function(t,e,r){\"use strict\";e.exports=t(\"./is-implemented\")()?String.prototype.contains:t(\"./shim\")},{\"./is-implemented\":208,\"./shim\":209}],208:[function(t,e,r){\"use strict\";var n=\"razdwatrzy\";e.exports=function(){return\"function\"==typeof n.contains&&(!0===n.contains(\"dwa\")&&!1===n.contains(\"foo\"))}},{}],209:[function(t,e,r){\"use strict\";var n=String.prototype.indexOf;e.exports=function(t){return n.call(this,t,arguments[1])>-1}},{}],210:[function(t,e,r){\"use strict\";var n=Object.prototype.toString,a=n.call(\"\");e.exports=function(t){return\"string\"==typeof t||t&&\"object\"==typeof t&&(t instanceof String||n.call(t)===a)||!1}},{}],211:[function(t,e,r){\"use strict\";var n=Object.create(null),a=Math.random;e.exports=function(){var t;do{t=a().toString(36).slice(2)}while(n[t]);return t}},{}],212:[function(t,e,r){\"use strict\";var n,a=t(\"es5-ext/object/set-prototype-of\"),i=t(\"es5-ext/string/#/contains\"),o=t(\"d\"),s=t(\"es6-symbol\"),l=t(\"./\"),c=Object.defineProperty;n=e.exports=function(t,e){if(!(this instanceof n))throw new TypeError(\"Constructor requires 'new'\");l.call(this,t),e=e?i.call(e,\"key+value\")?\"key+value\":i.call(e,\"key\")?\"key\":\"value\":\"value\",c(this,\"__kind__\",o(\"\",e))},a&&a(n,l),delete n.prototype.constructor,n.prototype=Object.create(l.prototype,{_resolve:o(function(t){return\"value\"===this.__kind__?this.__list__[t]:\"key+value\"===this.__kind__?[t,this.__list__[t]]:t})}),c(n.prototype,s.toStringTag,o(\"c\",\"Array Iterator\"))},{\"./\":215,d:152,\"es5-ext/object/set-prototype-of\":201,\"es5-ext/string/#/contains\":207,\"es6-symbol\":220}],213:[function(t,e,r){\"use strict\";var n=t(\"es5-ext/function/is-arguments\"),a=t(\"es5-ext/object/valid-callable\"),i=t(\"es5-ext/string/is-string\"),o=t(\"./get\"),s=Array.isArray,l=Function.prototype.call,c=Array.prototype.some;e.exports=function(t,e){var r,u,h,f,p,d,g,v,m=arguments[2];if(s(t)||n(t)?r=\"array\":i(t)?r=\"string\":t=o(t),a(e),h=function(){f=!0},\"array\"!==r)if(\"string\"!==r)for(u=t.next();!u.done;){if(l.call(e,m,u.value,h),f)return;u=t.next()}else for(d=t.length,p=0;p<d&&(g=t[p],p+1<d&&(v=g.charCodeAt(0))>=55296&&v<=56319&&(g+=t[++p]),l.call(e,m,g,h),!f);++p);else c.call(t,function(t){return l.call(e,m,t,h),f})}},{\"./get\":214,\"es5-ext/function/is-arguments\":178,\"es5-ext/object/valid-callable\":204,\"es5-ext/string/is-string\":210}],214:[function(t,e,r){\"use strict\";var n=t(\"es5-ext/function/is-arguments\"),a=t(\"es5-ext/string/is-string\"),i=t(\"./array\"),o=t(\"./string\"),s=t(\"./valid-iterable\"),l=t(\"es6-symbol\").iterator;e.exports=function(t){return\"function\"==typeof s(t)[l]?t[l]():n(t)?new i(t):a(t)?new o(t):new i(t)}},{\"./array\":212,\"./string\":217,\"./valid-iterable\":218,\"es5-ext/function/is-arguments\":178,\"es5-ext/string/is-string\":210,\"es6-symbol\":220}],215:[function(t,e,r){\"use strict\";var n,a=t(\"es5-ext/array/#/clear\"),i=t(\"es5-ext/object/assign\"),o=t(\"es5-ext/object/valid-callable\"),s=t(\"es5-ext/object/valid-value\"),l=t(\"d\"),c=t(\"d/auto-bind\"),u=t(\"es6-symbol\"),h=Object.defineProperty,f=Object.defineProperties;e.exports=n=function(t,e){if(!(this instanceof n))throw new TypeError(\"Constructor requires 'new'\");f(this,{__list__:l(\"w\",s(t)),__context__:l(\"w\",e),__nextIndex__:l(\"w\",0)}),e&&(o(e.on),e.on(\"_add\",this._onAdd),e.on(\"_delete\",this._onDelete),e.on(\"_clear\",this._onClear))},delete n.prototype.constructor,f(n.prototype,i({_next:l(function(){var t;if(this.__list__)return this.__redo__&&void 0!==(t=this.__redo__.shift())?t:this.__nextIndex__<this.__list__.length?this.__nextIndex__++:void this._unBind()}),next:l(function(){return this._createResult(this._next())}),_createResult:l(function(t){return void 0===t?{done:!0,value:void 0}:{done:!1,value:this._resolve(t)}}),_resolve:l(function(t){return this.__list__[t]}),_unBind:l(function(){this.__list__=null,delete this.__redo__,this.__context__&&(this.__context__.off(\"_add\",this._onAdd),this.__context__.off(\"_delete\",this._onDelete),this.__context__.off(\"_clear\",this._onClear),this.__context__=null)}),toString:l(function(){return\"[object \"+(this[u.toStringTag]||\"Object\")+\"]\"})},c({_onAdd:l(function(t){t>=this.__nextIndex__||(++this.__nextIndex__,this.__redo__?(this.__redo__.forEach(function(e,r){e>=t&&(this.__redo__[r]=++e)},this),this.__redo__.push(t)):h(this,\"__redo__\",l(\"c\",[t])))}),_onDelete:l(function(t){var e;t>=this.__nextIndex__||(--this.__nextIndex__,this.__redo__&&(-1!==(e=this.__redo__.indexOf(t))&&this.__redo__.splice(e,1),this.__redo__.forEach(function(e,r){e>t&&(this.__redo__[r]=--e)},this)))}),_onClear:l(function(){this.__redo__&&a.call(this.__redo__),this.__nextIndex__=0})}))),h(n.prototype,u.iterator,l(function(){return this}))},{d:152,\"d/auto-bind\":151,\"es5-ext/array/#/clear\":174,\"es5-ext/object/assign\":187,\"es5-ext/object/valid-callable\":204,\"es5-ext/object/valid-value\":206,\"es6-symbol\":220}],216:[function(t,e,r){\"use strict\";var n=t(\"es5-ext/function/is-arguments\"),a=t(\"es5-ext/object/is-value\"),i=t(\"es5-ext/string/is-string\"),o=t(\"es6-symbol\").iterator,s=Array.isArray;e.exports=function(t){return!!a(t)&&(!!s(t)||(!!i(t)||(!!n(t)||\"function\"==typeof t[o])))}},{\"es5-ext/function/is-arguments\":178,\"es5-ext/object/is-value\":195,\"es5-ext/string/is-string\":210,\"es6-symbol\":220}],217:[function(t,e,r){\"use strict\";var n,a=t(\"es5-ext/object/set-prototype-of\"),i=t(\"d\"),o=t(\"es6-symbol\"),s=t(\"./\"),l=Object.defineProperty;n=e.exports=function(t){if(!(this instanceof n))throw new TypeError(\"Constructor requires 'new'\");t=String(t),s.call(this,t),l(this,\"__length__\",i(\"\",t.length))},a&&a(n,s),delete n.prototype.constructor,n.prototype=Object.create(s.prototype,{_next:i(function(){if(this.__list__)return this.__nextIndex__<this.__length__?this.__nextIndex__++:void this._unBind()}),_resolve:i(function(t){var e,r=this.__list__[t];return this.__nextIndex__===this.__length__?r:(e=r.charCodeAt(0))>=55296&&e<=56319?r+this.__list__[this.__nextIndex__++]:r})}),l(n.prototype,o.toStringTag,i(\"c\",\"String Iterator\"))},{\"./\":215,d:152,\"es5-ext/object/set-prototype-of\":201,\"es6-symbol\":220}],218:[function(t,e,r){\"use strict\";var n=t(\"./is-iterable\");e.exports=function(t){if(!n(t))throw new TypeError(t+\" is not iterable\");return t}},{\"./is-iterable\":216}],219:[function(t,e,r){(function(n,a){!function(t,n){\"object\"==typeof r&&\"undefined\"!=typeof e?e.exports=n():t.ES6Promise=n()}(this,function(){\"use strict\";function e(t){return\"function\"==typeof t}var r=Array.isArray?Array.isArray:function(t){return\"[object Array]\"===Object.prototype.toString.call(t)},i=0,o=void 0,s=void 0,l=function(t,e){g[i]=t,g[i+1]=e,2===(i+=2)&&(s?s(v):_())};var c=\"undefined\"!=typeof window?window:void 0,u=c||{},h=u.MutationObserver||u.WebKitMutationObserver,f=\"undefined\"==typeof self&&\"undefined\"!=typeof n&&\"[object process]\"==={}.toString.call(n),p=\"undefined\"!=typeof Uint8ClampedArray&&\"undefined\"!=typeof importScripts&&\"undefined\"!=typeof MessageChannel;function d(){var t=setTimeout;return function(){return t(v,1)}}var g=new Array(1e3);function v(){for(var t=0;t<i;t+=2){(0,g[t])(g[t+1]),g[t]=void 0,g[t+1]=void 0}i=0}var m,y,x,b,_=void 0;function w(t,e){var r=arguments,n=this,a=new this.constructor(A);void 0===a[T]&&U(a);var i,o=n._state;return o?(i=r[o-1],l(function(){return j(o,a,i,n._result)})):R(n,a,t,e),a}function k(t){if(t&&\"object\"==typeof t&&t.constructor===this)return t;var e=new this(A);return O(e,t),e}f?_=function(){return n.nextTick(v)}:h?(y=0,x=new h(v),b=document.createTextNode(\"\"),x.observe(b,{characterData:!0}),_=function(){b.data=y=++y%2}):p?((m=new MessageChannel).port1.onmessage=v,_=function(){return m.port2.postMessage(0)}):_=void 0===c&&\"function\"==typeof t?function(){try{var e=t(\"vertx\");return o=e.runOnLoop||e.runOnContext,function(){o(v)}}catch(t){return d()}}():d();var T=Math.random().toString(36).substring(16);function A(){}var M=void 0,S=1,E=2,C=new B;function L(t){try{return t.then}catch(t){return C.error=t,C}}function P(t,r,n){r.constructor===t.constructor&&n===w&&r.constructor.resolve===k?function(t,e){e._state===S?z(t,e._result):e._state===E?D(t,e._result):R(e,void 0,function(e){return O(t,e)},function(e){return D(t,e)})}(t,r):n===C?D(t,C.error):void 0===n?z(t,r):e(n)?function(t,e,r){l(function(t){var n=!1,a=function(t,e,r,n){try{t.call(e,r,n)}catch(t){return t}}(r,e,function(r){n||(n=!0,e!==r?O(t,r):z(t,r))},function(e){n||(n=!0,D(t,e))},t._label);!n&&a&&(n=!0,D(t,a))},t)}(t,r,n):z(t,r)}function O(t,e){var r;t===e?D(t,new TypeError(\"You cannot resolve a promise with itself\")):\"function\"==typeof(r=e)||\"object\"==typeof r&&null!==r?P(t,e,L(e)):z(t,e)}function I(t){t._onerror&&t._onerror(t._result),F(t)}function z(t,e){t._state===M&&(t._result=e,t._state=S,0!==t._subscribers.length&&l(F,t))}function D(t,e){t._state===M&&(t._state=E,t._result=e,l(I,t))}function R(t,e,r,n){var a=t._subscribers,i=a.length;t._onerror=null,a[i]=e,a[i+S]=r,a[i+E]=n,0===i&&t._state&&l(F,t)}function F(t){var e=t._subscribers,r=t._state;if(0!==e.length){for(var n=void 0,a=void 0,i=t._result,o=0;o<e.length;o+=3)n=e[o],a=e[o+r],n?j(r,n,a,i):a(i);t._subscribers.length=0}}function B(){this.error=null}var N=new B;function j(t,r,n,a){var i=e(n),o=void 0,s=void 0,l=void 0,c=void 0;if(i){if((o=function(t,e){try{return t(e)}catch(t){return N.error=t,N}}(n,a))===N?(c=!0,s=o.error,o=null):l=!0,r===o)return void D(r,new TypeError(\"A promises callback cannot return that same promise.\"))}else o=a,l=!0;r._state!==M||(i&&l?O(r,o):c?D(r,s):t===S?z(r,o):t===E&&D(r,o))}var V=0;function U(t){t[T]=V++,t._state=void 0,t._result=void 0,t._subscribers=[]}function q(t,e){this._instanceConstructor=t,this.promise=new t(A),this.promise[T]||U(this.promise),r(e)?(this._input=e,this.length=e.length,this._remaining=e.length,this._result=new Array(this.length),0===this.length?z(this.promise,this._result):(this.length=this.length||0,this._enumerate(),0===this._remaining&&z(this.promise,this._result))):D(this.promise,new Error(\"Array Methods must be provided an Array\"))}function H(t){this[T]=V++,this._result=this._state=void 0,this._subscribers=[],A!==t&&(\"function\"!=typeof t&&function(){throw new TypeError(\"You must pass a resolver function as the first argument to the promise constructor\")}(),this instanceof H?function(t,e){try{e(function(e){O(t,e)},function(e){D(t,e)})}catch(e){D(t,e)}}(this,t):function(){throw new TypeError(\"Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function.\")}())}function G(){var t=void 0;if(\"undefined\"!=typeof a)t=a;else if(\"undefined\"!=typeof self)t=self;else try{t=Function(\"return this\")()}catch(t){throw new Error(\"polyfill failed because global object is unavailable in this environment\")}var e=t.Promise;if(e){var r=null;try{r=Object.prototype.toString.call(e.resolve())}catch(t){}if(\"[object Promise]\"===r&&!e.cast)return}t.Promise=H}return q.prototype._enumerate=function(){for(var t=this.length,e=this._input,r=0;this._state===M&&r<t;r++)this._eachEntry(e[r],r)},q.prototype._eachEntry=function(t,e){var r=this._instanceConstructor,n=r.resolve;if(n===k){var a=L(t);if(a===w&&t._state!==M)this._settledAt(t._state,e,t._result);else if(\"function\"!=typeof a)this._remaining--,this._result[e]=t;else if(r===H){var i=new r(A);P(i,t,a),this._willSettleAt(i,e)}else this._willSettleAt(new r(function(e){return e(t)}),e)}else this._willSettleAt(n(t),e)},q.prototype._settledAt=function(t,e,r){var n=this.promise;n._state===M&&(this._remaining--,t===E?D(n,r):this._result[e]=r),0===this._remaining&&z(n,this._result)},q.prototype._willSettleAt=function(t,e){var r=this;R(t,void 0,function(t){return r._settledAt(S,e,t)},function(t){return r._settledAt(E,e,t)})},H.all=function(t){return new q(this,t).promise},H.race=function(t){var e=this;return r(t)?new e(function(r,n){for(var a=t.length,i=0;i<a;i++)e.resolve(t[i]).then(r,n)}):new e(function(t,e){return e(new TypeError(\"You must pass an array to race.\"))})},H.resolve=k,H.reject=function(t){var e=new this(A);return D(e,t),e},H._setScheduler=function(t){s=t},H._setAsap=function(t){l=t},H._asap=l,H.prototype={constructor:H,then:w,catch:function(t){return this.then(null,t)}},G(),H.polyfill=G,H.Promise=H,H})}).call(this,t(\"_process\"),\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{_process:483}],220:[function(t,e,r){\"use strict\";e.exports=t(\"./is-implemented\")()?Symbol:t(\"./polyfill\")},{\"./is-implemented\":221,\"./polyfill\":223}],221:[function(t,e,r){\"use strict\";var n={object:!0,symbol:!0};e.exports=function(){var t;if(\"function\"!=typeof Symbol)return!1;t=Symbol(\"test symbol\");try{String(t)}catch(t){return!1}return!!n[typeof Symbol.iterator]&&(!!n[typeof Symbol.toPrimitive]&&!!n[typeof Symbol.toStringTag])}},{}],222:[function(t,e,r){\"use strict\";e.exports=function(t){return!!t&&(\"symbol\"==typeof t||!!t.constructor&&(\"Symbol\"===t.constructor.name&&\"Symbol\"===t[t.constructor.toStringTag]))}},{}],223:[function(t,e,r){\"use strict\";var n,a,i,o,s=t(\"d\"),l=t(\"./validate-symbol\"),c=Object.create,u=Object.defineProperties,h=Object.defineProperty,f=Object.prototype,p=c(null);if(\"function\"==typeof Symbol){n=Symbol;try{String(n()),o=!0}catch(t){}}var d,g=(d=c(null),function(t){for(var e,r,n=0;d[t+(n||\"\")];)++n;return d[t+=n||\"\"]=!0,h(f,e=\"@@\"+t,s.gs(null,function(t){r||(r=!0,h(this,e,s(t)),r=!1)})),e});i=function(t){if(this instanceof i)throw new TypeError(\"Symbol is not a constructor\");return a(t)},e.exports=a=function t(e){var r;if(this instanceof t)throw new TypeError(\"Symbol is not a constructor\");return o?n(e):(r=c(i.prototype),e=void 0===e?\"\":String(e),u(r,{__description__:s(\"\",e),__name__:s(\"\",g(e))}))},u(a,{for:s(function(t){return p[t]?p[t]:p[t]=a(String(t))}),keyFor:s(function(t){var e;for(e in l(t),p)if(p[e]===t)return e}),hasInstance:s(\"\",n&&n.hasInstance||a(\"hasInstance\")),isConcatSpreadable:s(\"\",n&&n.isConcatSpreadable||a(\"isConcatSpreadable\")),iterator:s(\"\",n&&n.iterator||a(\"iterator\")),match:s(\"\",n&&n.match||a(\"match\")),replace:s(\"\",n&&n.replace||a(\"replace\")),search:s(\"\",n&&n.search||a(\"search\")),species:s(\"\",n&&n.species||a(\"species\")),split:s(\"\",n&&n.split||a(\"split\")),toPrimitive:s(\"\",n&&n.toPrimitive||a(\"toPrimitive\")),toStringTag:s(\"\",n&&n.toStringTag||a(\"toStringTag\")),unscopables:s(\"\",n&&n.unscopables||a(\"unscopables\"))}),u(i.prototype,{constructor:s(a),toString:s(\"\",function(){return this.__name__})}),u(a.prototype,{toString:s(function(){return\"Symbol (\"+l(this).__description__+\")\"}),valueOf:s(function(){return l(this)})}),h(a.prototype,a.toPrimitive,s(\"\",function(){var t=l(this);return\"symbol\"==typeof t?t:t.toString()})),h(a.prototype,a.toStringTag,s(\"c\",\"Symbol\")),h(i.prototype,a.toStringTag,s(\"c\",a.prototype[a.toStringTag])),h(i.prototype,a.toPrimitive,s(\"c\",a.prototype[a.toPrimitive]))},{\"./validate-symbol\":224,d:152}],224:[function(t,e,r){\"use strict\";var n=t(\"./is-symbol\");e.exports=function(t){if(!n(t))throw new TypeError(t+\" is not a symbol\");return t}},{\"./is-symbol\":222}],225:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){var n=e||0,a=r||1;return[[t[12]+t[0],t[13]+t[1],t[14]+t[2],t[15]+t[3]],[t[12]-t[0],t[13]-t[1],t[14]-t[2],t[15]-t[3]],[t[12]+t[4],t[13]+t[5],t[14]+t[6],t[15]+t[7]],[t[12]-t[4],t[13]-t[5],t[14]-t[6],t[15]-t[7]],[n*t[12]+t[8],n*t[13]+t[9],n*t[14]+t[10],n*t[15]+t[11]],[a*t[12]-t[8],a*t[13]-t[9],a*t[14]-t[10],a*t[15]-t[11]]]}},{}],226:[function(t,e,r){\"use strict\";var n=t(\"is-string-blank\");e.exports=function(t){var e=typeof t;if(\"string\"===e){var r=t;if(0===(t=+t)&&n(r))return!1}else if(\"number\"!==e)return!1;return t-t<1}},{\"is-string-blank\":424}],227:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){switch(arguments.length){case 0:return new o([0],[0],0);case 1:if(\"number\"==typeof t){var n=l(t);return new o(n,n,0)}return new o(t,l(t.length),0);case 2:if(\"number\"==typeof e){var n=l(t.length);return new o(t,n,+e)}r=0;case 3:if(t.length!==e.length)throw new Error(\"state and velocity lengths must match\");return new o(t,e,r)}};var n=t(\"cubic-hermite\"),a=t(\"binary-search-bounds\");function i(t,e,r){return Math.min(e,Math.max(t,r))}function o(t,e,r){this.dimension=t.length,this.bounds=[new Array(this.dimension),new Array(this.dimension)];for(var n=0;n<this.dimension;++n)this.bounds[0][n]=-1/0,this.bounds[1][n]=1/0;this._state=t.slice().reverse(),this._velocity=e.slice().reverse(),this._time=[r],this._scratch=[t.slice(),t.slice(),t.slice(),t.slice(),t.slice()]}var s=o.prototype;function l(t){for(var e=new Array(t),r=0;r<t;++r)e[r]=0;return e}s.flush=function(t){var e=a.gt(this._time,t)-1;e<=0||(this._time.splice(0,e),this._state.splice(0,e*this.dimension),this._velocity.splice(0,e*this.dimension))},s.curve=function(t){var e=this._time,r=e.length,o=a.le(e,t),s=this._scratch[0],l=this._state,c=this._velocity,u=this.dimension,h=this.bounds;if(o<0)for(var f=u-1,p=0;p<u;++p,--f)s[p]=l[f];else if(o>=r-1){f=l.length-1;var d=t-e[r-1];for(p=0;p<u;++p,--f)s[p]=l[f]+d*c[f]}else{f=u*(o+1)-1;var g=e[o],v=e[o+1]-g||1,m=this._scratch[1],y=this._scratch[2],x=this._scratch[3],b=this._scratch[4],_=!0;for(p=0;p<u;++p,--f)m[p]=l[f],x[p]=c[f]*v,y[p]=l[f+u],b[p]=c[f+u]*v,_=_&&m[p]===y[p]&&x[p]===b[p]&&0===x[p];if(_)for(p=0;p<u;++p)s[p]=m[p];else n(m,x,y,b,(t-g)/v,s)}var w=h[0],k=h[1];for(p=0;p<u;++p)s[p]=i(w[p],k[p],s[p]);return s},s.dcurve=function(t){var e=this._time,r=e.length,i=a.le(e,t),o=this._scratch[0],s=this._state,l=this._velocity,c=this.dimension;if(i>=r-1)for(var u=s.length-1,h=(e[r-1],0);h<c;++h,--u)o[h]=l[u];else{u=c*(i+1)-1;var f=e[i],p=e[i+1]-f||1,d=this._scratch[1],g=this._scratch[2],v=this._scratch[3],m=this._scratch[4],y=!0;for(h=0;h<c;++h,--u)d[h]=s[u],v[h]=l[u]*p,g[h]=s[u+c],m[h]=l[u+c]*p,y=y&&d[h]===g[h]&&v[h]===m[h]&&0===v[h];if(y)for(h=0;h<c;++h)o[h]=0;else{n.derivative(d,v,g,m,(t-f)/p,o);for(h=0;h<c;++h)o[h]/=p}}return o},s.lastT=function(){var t=this._time;return t[t.length-1]},s.stable=function(){for(var t=this._velocity,e=t.length,r=this.dimension-1;r>=0;--r)if(t[--e])return!1;return!0},s.jump=function(t){var e=this.lastT(),r=this.dimension;if(!(t<e||arguments.length!==r+1)){var n=this._state,a=this._velocity,o=n.length-this.dimension,s=this.bounds,l=s[0],c=s[1];this._time.push(e,t);for(var u=0;u<2;++u)for(var h=0;h<r;++h)n.push(n[o++]),a.push(0);this._time.push(t);for(h=r;h>0;--h)n.push(i(l[h-1],c[h-1],arguments[h])),a.push(0)}},s.push=function(t){var e=this.lastT(),r=this.dimension;if(!(t<e||arguments.length!==r+1)){var n=this._state,a=this._velocity,o=n.length-this.dimension,s=t-e,l=this.bounds,c=l[0],u=l[1],h=s>1e-6?1/s:0;this._time.push(t);for(var f=r;f>0;--f){var p=i(c[f-1],u[f-1],arguments[f]);n.push(p),a.push((p-n[o++])*h)}}},s.set=function(t){var e=this.dimension;if(!(t<this.lastT()||arguments.length!==e+1)){var r=this._state,n=this._velocity,a=this.bounds,o=a[0],s=a[1];this._time.push(t);for(var l=e;l>0;--l)r.push(i(o[l-1],s[l-1],arguments[l])),n.push(0)}},s.move=function(t){var e=this.lastT(),r=this.dimension;if(!(t<=e||arguments.length!==r+1)){var n=this._state,a=this._velocity,o=n.length-this.dimension,s=this.bounds,l=s[0],c=s[1],u=t-e,h=u>1e-6?1/u:0;this._time.push(t);for(var f=r;f>0;--f){var p=arguments[f];n.push(i(l[f-1],c[f-1],n[o++]+p)),a.push(p*h)}}},s.idle=function(t){var e=this.lastT();if(!(t<e)){var r=this.dimension,n=this._state,a=this._velocity,o=n.length-r,s=this.bounds,l=s[0],c=s[1],u=t-e;this._time.push(t);for(var h=r-1;h>=0;--h)n.push(i(l[h],c[h],n[o]+u*a[o])),a.push(0),o+=1}}},{\"binary-search-bounds\":92,\"cubic-hermite\":146}],228:[function(t,e,r){var n=t(\"dtype\");e.exports=function(t,e,r){if(!t)throw new TypeError(\"must specify data as first parameter\");if(r=0|+(r||0),Array.isArray(t)&&t[0]&&\"number\"==typeof t[0][0]){var a,i,o,s,l=t[0].length,c=t.length*l;e&&\"string\"!=typeof e||(e=new(n(e||\"float32\"))(c+r));var u=e.length-r;if(c!==u)throw new Error(\"source length \"+c+\" (\"+l+\"x\"+t.length+\") does not match destination length \"+u);for(a=0,o=r;a<t.length;a++)for(i=0;i<l;i++)e[o++]=null===t[a][i]?NaN:t[a][i]}else if(e&&\"string\"!=typeof e)e.set(t,r);else{var h=n(e||\"float32\");if(Array.isArray(t)||\"array\"===e)for(e=new h(t.length+r),a=0,o=r,s=e.length;o<s;o++,a++)e[o]=null===t[a]?NaN:t[a];else 0===r?e=new h(t):(e=new h(t.length+r)).set(t,r)}return e}},{dtype:170}],229:[function(t,e,r){\"use strict\";var n=t(\"css-font/stringify\"),a=[32,126];e.exports=function(t){var e=(t=t||{}).shape?t.shape:t.canvas?[t.canvas.width,t.canvas.height]:[512,512],r=t.canvas||document.createElement(\"canvas\"),i=t.font,o=\"number\"==typeof t.step?[t.step,t.step]:t.step||[32,32],s=t.chars||a;i&&\"string\"!=typeof i&&(i=n(i));if(Array.isArray(s)){if(2===s.length&&\"number\"==typeof s[0]&&\"number\"==typeof s[1]){for(var l=[],c=s[0],u=0;c<=s[1];c++)l[u++]=String.fromCharCode(c);s=l}}else s=String(s).split(\"\");e=e.slice(),r.width=e[0],r.height=e[1];var h=r.getContext(\"2d\");h.fillStyle=\"#000\",h.fillRect(0,0,r.width,r.height),h.font=i,h.textAlign=\"center\",h.textBaseline=\"middle\",h.fillStyle=\"#fff\";for(var f=o[0]/2,p=o[1]/2,c=0;c<s.length;c++)h.fillText(s[c],f,p),(f+=o[0])>e[0]-o[0]/2&&(f=o[0]/2,p+=o[1]);return r}},{\"css-font/stringify\":143}],230:[function(t,e,r){\"use strict\";function n(t,e){e||(e={}),(\"string\"==typeof t||Array.isArray(t))&&(e.family=t);var r=Array.isArray(e.family)?e.family.join(\", \"):e.family;if(!r)throw Error(\"`family` must be defined\");var s=e.size||e.fontSize||e.em||48,l=e.weight||e.fontWeight||\"\",c=(t=[e.style||e.fontStyle||\"\",l,s].join(\" \")+\"px \"+r,e.origin||\"top\");if(n.cache[r]&&s<=n.cache[r].em)return a(n.cache[r],c);var u=e.canvas||n.canvas,h=u.getContext(\"2d\"),f={upper:void 0!==e.upper?e.upper:\"H\",lower:void 0!==e.lower?e.lower:\"x\",descent:void 0!==e.descent?e.descent:\"p\",ascent:void 0!==e.ascent?e.ascent:\"h\",tittle:void 0!==e.tittle?e.tittle:\"i\",overshoot:void 0!==e.overshoot?e.overshoot:\"O\"},p=Math.ceil(1.5*s);u.height=p,u.width=.5*p,h.font=t;var d={top:0};h.clearRect(0,0,p,p),h.textBaseline=\"top\",h.fillStyle=\"black\",h.fillText(\"H\",0,0);var g=i(h.getImageData(0,0,p,p));h.clearRect(0,0,p,p),h.textBaseline=\"bottom\",h.fillText(\"H\",0,p);var v=i(h.getImageData(0,0,p,p));d.lineHeight=d.bottom=p-v+g,h.clearRect(0,0,p,p),h.textBaseline=\"alphabetic\",h.fillText(\"H\",0,p);var m=p-i(h.getImageData(0,0,p,p))-1+g;d.baseline=d.alphabetic=m,h.clearRect(0,0,p,p),h.textBaseline=\"middle\",h.fillText(\"H\",0,.5*p);var y=i(h.getImageData(0,0,p,p));d.median=d.middle=p-y-1+g-.5*p,h.clearRect(0,0,p,p),h.textBaseline=\"hanging\",h.fillText(\"H\",0,.5*p);var x=i(h.getImageData(0,0,p,p));d.hanging=p-x-1+g-.5*p,h.clearRect(0,0,p,p),h.textBaseline=\"ideographic\",h.fillText(\"H\",0,p);var b=i(h.getImageData(0,0,p,p));if(d.ideographic=p-b-1+g,f.upper&&(h.clearRect(0,0,p,p),h.textBaseline=\"top\",h.fillText(f.upper,0,0),d.upper=i(h.getImageData(0,0,p,p)),d.capHeight=d.baseline-d.upper),f.lower&&(h.clearRect(0,0,p,p),h.textBaseline=\"top\",h.fillText(f.lower,0,0),d.lower=i(h.getImageData(0,0,p,p)),d.xHeight=d.baseline-d.lower),f.tittle&&(h.clearRect(0,0,p,p),h.textBaseline=\"top\",h.fillText(f.tittle,0,0),d.tittle=i(h.getImageData(0,0,p,p))),f.ascent&&(h.clearRect(0,0,p,p),h.textBaseline=\"top\",h.fillText(f.ascent,0,0),d.ascent=i(h.getImageData(0,0,p,p))),f.descent&&(h.clearRect(0,0,p,p),h.textBaseline=\"top\",h.fillText(f.descent,0,0),d.descent=o(h.getImageData(0,0,p,p))),f.overshoot){h.clearRect(0,0,p,p),h.textBaseline=\"top\",h.fillText(f.overshoot,0,0);var _=o(h.getImageData(0,0,p,p));d.overshoot=_-m}for(var w in d)d[w]/=s;return d.em=s,n.cache[r]=d,a(d,c)}function a(t,e){var r={};for(var n in\"string\"==typeof e&&(e=t[e]),t)\"em\"!==n&&(r[n]=t[n]-e);return r}function i(t){for(var e=t.height,r=t.data,n=3;n<r.length;n+=4)if(0!==r[n])return Math.floor(.25*(n-3)/e)}function o(t){for(var e=t.height,r=t.data,n=r.length-1;n>0;n-=4)if(0!==r[n])return Math.floor(.25*(n-3)/e)}e.exports=n,n.canvas=document.createElement(\"canvas\"),n.cache={}},{}],231:[function(t,e,r){\"use strict\";e.exports=function(t){return new c(t||d,null)};var n=0,a=1;function i(t,e,r,n,a,i){this._color=t,this.key=e,this.value=r,this.left=n,this.right=a,this._count=i}function o(t){return new i(t._color,t.key,t.value,t.left,t.right,t._count)}function s(t,e){return new i(t,e.key,e.value,e.left,e.right,e._count)}function l(t){t._count=1+(t.left?t.left._count:0)+(t.right?t.right._count:0)}function c(t,e){this._compare=t,this.root=e}var u=c.prototype;function h(t,e){this.tree=t,this._stack=e}Object.defineProperty(u,\"keys\",{get:function(){var t=[];return this.forEach(function(e,r){t.push(e)}),t}}),Object.defineProperty(u,\"values\",{get:function(){var t=[];return this.forEach(function(e,r){t.push(r)}),t}}),Object.defineProperty(u,\"length\",{get:function(){return this.root?this.root._count:0}}),u.insert=function(t,e){for(var r=this._compare,o=this.root,u=[],h=[];o;){var f=r(t,o.key);u.push(o),h.push(f),o=f<=0?o.left:o.right}u.push(new i(n,t,e,null,null,1));for(var p=u.length-2;p>=0;--p){o=u[p];h[p]<=0?u[p]=new i(o._color,o.key,o.value,u[p+1],o.right,o._count+1):u[p]=new i(o._color,o.key,o.value,o.left,u[p+1],o._count+1)}for(p=u.length-1;p>1;--p){var d=u[p-1];o=u[p];if(d._color===a||o._color===a)break;var g=u[p-2];if(g.left===d)if(d.left===o){if(!(v=g.right)||v._color!==n){if(g._color=n,g.left=d.right,d._color=a,d.right=g,u[p-2]=d,u[p-1]=o,l(g),l(d),p>=3)(m=u[p-3]).left===g?m.left=d:m.right=d;break}d._color=a,g.right=s(a,v),g._color=n,p-=1}else{if(!(v=g.right)||v._color!==n){if(d.right=o.left,g._color=n,g.left=o.right,o._color=a,o.left=d,o.right=g,u[p-2]=o,u[p-1]=d,l(g),l(d),l(o),p>=3)(m=u[p-3]).left===g?m.left=o:m.right=o;break}d._color=a,g.right=s(a,v),g._color=n,p-=1}else if(d.right===o){if(!(v=g.left)||v._color!==n){if(g._color=n,g.right=d.left,d._color=a,d.left=g,u[p-2]=d,u[p-1]=o,l(g),l(d),p>=3)(m=u[p-3]).right===g?m.right=d:m.left=d;break}d._color=a,g.left=s(a,v),g._color=n,p-=1}else{var v;if(!(v=g.left)||v._color!==n){var m;if(d.left=o.right,g._color=n,g.right=o.left,o._color=a,o.right=d,o.left=g,u[p-2]=o,u[p-1]=d,l(g),l(d),l(o),p>=3)(m=u[p-3]).right===g?m.right=o:m.left=o;break}d._color=a,g.left=s(a,v),g._color=n,p-=1}}return u[0]._color=a,new c(r,u[0])},u.forEach=function(t,e,r){if(this.root)switch(arguments.length){case 1:return function t(e,r){var n;if(r.left&&(n=t(e,r.left)))return n;return(n=e(r.key,r.value))||(r.right?t(e,r.right):void 0)}(t,this.root);case 2:return function t(e,r,n,a){if(r(e,a.key)<=0){var i;if(a.left&&(i=t(e,r,n,a.left)))return i;if(i=n(a.key,a.value))return i}if(a.right)return t(e,r,n,a.right)}(e,this._compare,t,this.root);case 3:if(this._compare(e,r)>=0)return;return function t(e,r,n,a,i){var o,s=n(e,i.key),l=n(r,i.key);if(s<=0){if(i.left&&(o=t(e,r,n,a,i.left)))return o;if(l>0&&(o=a(i.key,i.value)))return o}if(l>0&&i.right)return t(e,r,n,a,i.right)}(e,r,this._compare,t,this.root)}},Object.defineProperty(u,\"begin\",{get:function(){for(var t=[],e=this.root;e;)t.push(e),e=e.left;return new h(this,t)}}),Object.defineProperty(u,\"end\",{get:function(){for(var t=[],e=this.root;e;)t.push(e),e=e.right;return new h(this,t)}}),u.at=function(t){if(t<0)return new h(this,[]);for(var e=this.root,r=[];;){if(r.push(e),e.left){if(t<e.left._count){e=e.left;continue}t-=e.left._count}if(!t)return new h(this,r);if(t-=1,!e.right)break;if(t>=e.right._count)break;e=e.right}return new h(this,[])},u.ge=function(t){for(var e=this._compare,r=this.root,n=[],a=0;r;){var i=e(t,r.key);n.push(r),i<=0&&(a=n.length),r=i<=0?r.left:r.right}return n.length=a,new h(this,n)},u.gt=function(t){for(var e=this._compare,r=this.root,n=[],a=0;r;){var i=e(t,r.key);n.push(r),i<0&&(a=n.length),r=i<0?r.left:r.right}return n.length=a,new h(this,n)},u.lt=function(t){for(var e=this._compare,r=this.root,n=[],a=0;r;){var i=e(t,r.key);n.push(r),i>0&&(a=n.length),r=i<=0?r.left:r.right}return n.length=a,new h(this,n)},u.le=function(t){for(var e=this._compare,r=this.root,n=[],a=0;r;){var i=e(t,r.key);n.push(r),i>=0&&(a=n.length),r=i<0?r.left:r.right}return n.length=a,new h(this,n)},u.find=function(t){for(var e=this._compare,r=this.root,n=[];r;){var a=e(t,r.key);if(n.push(r),0===a)return new h(this,n);r=a<=0?r.left:r.right}return new h(this,[])},u.remove=function(t){var e=this.find(t);return e?e.remove():this},u.get=function(t){for(var e=this._compare,r=this.root;r;){var n=e(t,r.key);if(0===n)return r.value;r=n<=0?r.left:r.right}};var f=h.prototype;function p(t,e){t.key=e.key,t.value=e.value,t.left=e.left,t.right=e.right,t._color=e._color,t._count=e._count}function d(t,e){return t<e?-1:t>e?1:0}Object.defineProperty(f,\"valid\",{get:function(){return this._stack.length>0}}),Object.defineProperty(f,\"node\",{get:function(){return this._stack.length>0?this._stack[this._stack.length-1]:null},enumerable:!0}),f.clone=function(){return new h(this.tree,this._stack.slice())},f.remove=function(){var t=this._stack;if(0===t.length)return this.tree;var e=new Array(t.length),r=t[t.length-1];e[e.length-1]=new i(r._color,r.key,r.value,r.left,r.right,r._count);for(var u=t.length-2;u>=0;--u){(r=t[u]).left===t[u+1]?e[u]=new i(r._color,r.key,r.value,e[u+1],r.right,r._count):e[u]=new i(r._color,r.key,r.value,r.left,e[u+1],r._count)}if((r=e[e.length-1]).left&&r.right){var h=e.length;for(r=r.left;r.right;)e.push(r),r=r.right;var f=e[h-1];e.push(new i(r._color,f.key,f.value,r.left,r.right,r._count)),e[h-1].key=r.key,e[h-1].value=r.value;for(u=e.length-2;u>=h;--u)r=e[u],e[u]=new i(r._color,r.key,r.value,r.left,e[u+1],r._count);e[h-1].left=e[h]}if((r=e[e.length-1])._color===n){var d=e[e.length-2];d.left===r?d.left=null:d.right===r&&(d.right=null),e.pop();for(u=0;u<e.length;++u)e[u]._count--;return new c(this.tree._compare,e[0])}if(r.left||r.right){r.left?p(r,r.left):r.right&&p(r,r.right),r._color=a;for(u=0;u<e.length-1;++u)e[u]._count--;return new c(this.tree._compare,e[0])}if(1===e.length)return new c(this.tree._compare,null);for(u=0;u<e.length;++u)e[u]._count--;var g=e[e.length-2];return function(t){for(var e,r,i,c,u=t.length-1;u>=0;--u){if(e=t[u],0===u)return void(e._color=a);if((r=t[u-1]).left===e){if((i=r.right).right&&i.right._color===n)return c=(i=r.right=o(i)).right=o(i.right),r.right=i.left,i.left=r,i.right=c,i._color=r._color,e._color=a,r._color=a,c._color=a,l(r),l(i),u>1&&((h=t[u-2]).left===r?h.left=i:h.right=i),void(t[u-1]=i);if(i.left&&i.left._color===n)return c=(i=r.right=o(i)).left=o(i.left),r.right=c.left,i.left=c.right,c.left=r,c.right=i,c._color=r._color,r._color=a,i._color=a,e._color=a,l(r),l(i),l(c),u>1&&((h=t[u-2]).left===r?h.left=c:h.right=c),void(t[u-1]=c);if(i._color===a){if(r._color===n)return r._color=a,void(r.right=s(n,i));r.right=s(n,i);continue}i=o(i),r.right=i.left,i.left=r,i._color=r._color,r._color=n,l(r),l(i),u>1&&((h=t[u-2]).left===r?h.left=i:h.right=i),t[u-1]=i,t[u]=r,u+1<t.length?t[u+1]=e:t.push(e),u+=2}else{if((i=r.left).left&&i.left._color===n)return c=(i=r.left=o(i)).left=o(i.left),r.left=i.right,i.right=r,i.left=c,i._color=r._color,e._color=a,r._color=a,c._color=a,l(r),l(i),u>1&&((h=t[u-2]).right===r?h.right=i:h.left=i),void(t[u-1]=i);if(i.right&&i.right._color===n)return c=(i=r.left=o(i)).right=o(i.right),r.left=c.right,i.right=c.left,c.right=r,c.left=i,c._color=r._color,r._color=a,i._color=a,e._color=a,l(r),l(i),l(c),u>1&&((h=t[u-2]).right===r?h.right=c:h.left=c),void(t[u-1]=c);if(i._color===a){if(r._color===n)return r._color=a,void(r.left=s(n,i));r.left=s(n,i);continue}var h;i=o(i),r.left=i.right,i.right=r,i._color=r._color,r._color=n,l(r),l(i),u>1&&((h=t[u-2]).right===r?h.right=i:h.left=i),t[u-1]=i,t[u]=r,u+1<t.length?t[u+1]=e:t.push(e),u+=2}}}(e),g.left===r?g.left=null:g.right=null,new c(this.tree._compare,e[0])},Object.defineProperty(f,\"key\",{get:function(){if(this._stack.length>0)return this._stack[this._stack.length-1].key},enumerable:!0}),Object.defineProperty(f,\"value\",{get:function(){if(this._stack.length>0)return this._stack[this._stack.length-1].value},enumerable:!0}),Object.defineProperty(f,\"index\",{get:function(){var t=0,e=this._stack;if(0===e.length){var r=this.tree.root;return r?r._count:0}e[e.length-1].left&&(t=e[e.length-1].left._count);for(var n=e.length-2;n>=0;--n)e[n+1]===e[n].right&&(++t,e[n].left&&(t+=e[n].left._count));return t},enumerable:!0}),f.next=function(){var t=this._stack;if(0!==t.length){var e=t[t.length-1];if(e.right)for(e=e.right;e;)t.push(e),e=e.left;else for(t.pop();t.length>0&&t[t.length-1].right===e;)e=t[t.length-1],t.pop()}},Object.defineProperty(f,\"hasNext\",{get:function(){var t=this._stack;if(0===t.length)return!1;if(t[t.length-1].right)return!0;for(var e=t.length-1;e>0;--e)if(t[e-1].left===t[e])return!0;return!1}}),f.update=function(t){var e=this._stack;if(0===e.length)throw new Error(\"Can't update empty node!\");var r=new Array(e.length),n=e[e.length-1];r[r.length-1]=new i(n._color,n.key,t,n.left,n.right,n._count);for(var a=e.length-2;a>=0;--a)(n=e[a]).left===e[a+1]?r[a]=new i(n._color,n.key,n.value,r[a+1],n.right,n._count):r[a]=new i(n._color,n.key,n.value,n.left,r[a+1],n._count);return new c(this.tree._compare,r[0])},f.prev=function(){var t=this._stack;if(0!==t.length){var e=t[t.length-1];if(e.left)for(e=e.left;e;)t.push(e),e=e.right;else for(t.pop();t.length>0&&t[t.length-1].left===e;)e=t[t.length-1],t.pop()}},Object.defineProperty(f,\"hasPrev\",{get:function(){var t=this._stack;if(0===t.length)return!1;if(t[t.length-1].left)return!0;for(var e=t.length-1;e>0;--e)if(t[e-1].right===t[e])return!0;return!1}})},{}],232:[function(t,e,r){var n=[.9999999999998099,676.5203681218851,-1259.1392167224028,771.3234287776531,-176.6150291621406,12.507343278686905,-.13857109526572012,9984369578019572e-21,1.5056327351493116e-7],a=607/128,i=[.9999999999999971,57.15623566586292,-59.59796035547549,14.136097974741746,-.4919138160976202,3399464998481189e-20,4652362892704858e-20,-9837447530487956e-20,.0001580887032249125,-.00021026444172410488,.00021743961811521265,-.0001643181065367639,8441822398385275e-20,-26190838401581408e-21,36899182659531625e-22];function o(t){if(t<0)return Number(\"0/0\");for(var e=i[0],r=i.length-1;r>0;--r)e+=i[r]/(t+r);var n=t+a+.5;return.5*Math.log(2*Math.PI)+(t+.5)*Math.log(n)-n+Math.log(e)-Math.log(t)}e.exports=function t(e){if(e<.5)return Math.PI/(Math.sin(Math.PI*e)*t(1-e));if(e>100)return Math.exp(o(e));e-=1;for(var r=n[0],a=1;a<9;a++)r+=n[a]/(e+a);var i=e+7+.5;return Math.sqrt(2*Math.PI)*Math.pow(i,e+.5)*Math.exp(-i)*r},e.exports.log=o},{}],233:[function(t,e,r){e.exports=function(t,e){if(\"string\"!=typeof t)throw new TypeError(\"must specify type string\");if(e=e||{},\"undefined\"==typeof document&&!e.canvas)return null;var r=e.canvas||document.createElement(\"canvas\");\"number\"==typeof e.width&&(r.width=e.width);\"number\"==typeof e.height&&(r.height=e.height);var n,a=e;try{var i=[t];0===t.indexOf(\"webgl\")&&i.push(\"experimental-\"+t);for(var o=0;o<i.length;o++)if(n=r.getContext(i[o],a))return n}catch(t){n=null}return n||null}},{}],234:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=new u(t);return r.update(e),r};var n=t(\"./lib/text.js\"),a=t(\"./lib/lines.js\"),i=t(\"./lib/background.js\"),o=t(\"./lib/cube.js\"),s=t(\"./lib/ticks.js\"),l=new Float32Array([1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]);function c(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t}function u(t){this.gl=t,this.pixelRatio=1,this.bounds=[[-10,-10,-10],[10,10,10]],this.ticks=[[],[],[]],this.autoTicks=!0,this.tickSpacing=[1,1,1],this.tickEnable=[!0,!0,!0],this.tickFont=[\"sans-serif\",\"sans-serif\",\"sans-serif\"],this.tickSize=[12,12,12],this.tickAngle=[0,0,0],this.tickAlign=[\"auto\",\"auto\",\"auto\"],this.tickColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.tickPad=[10,10,10],this.lastCubeProps={cubeEdges:[0,0,0],axis:[0,0,0]},this.labels=[\"x\",\"y\",\"z\"],this.labelEnable=[!0,!0,!0],this.labelFont=\"sans-serif\",this.labelSize=[20,20,20],this.labelAngle=[0,0,0],this.labelAlign=[\"auto\",\"auto\",\"auto\"],this.labelColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.labelPad=[10,10,10],this.lineEnable=[!0,!0,!0],this.lineMirror=[!1,!1,!1],this.lineWidth=[1,1,1],this.lineColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.lineTickEnable=[!0,!0,!0],this.lineTickMirror=[!1,!1,!1],this.lineTickLength=[0,0,0],this.lineTickWidth=[1,1,1],this.lineTickColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.gridEnable=[!0,!0,!0],this.gridWidth=[1,1,1],this.gridColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.zeroEnable=[!0,!0,!0],this.zeroLineColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.zeroLineWidth=[2,2,2],this.backgroundEnable=[!1,!1,!1],this.backgroundColor=[[.8,.8,.8,.5],[.8,.8,.8,.5],[.8,.8,.8,.5]],this._firstInit=!0,this._text=null,this._lines=null,this._background=i(t)}var h=u.prototype;function f(){this.primalOffset=[0,0,0],this.primalMinor=[0,0,0],this.mirrorOffset=[0,0,0],this.mirrorMinor=[0,0,0]}h.update=function(t){function e(e,r,n){if(n in t){var a,i=t[n],o=this[n];(e?Array.isArray(i)&&Array.isArray(i[0]):Array.isArray(i))?this[n]=a=[r(i[0]),r(i[1]),r(i[2])]:this[n]=a=[r(i),r(i),r(i)];for(var s=0;s<3;++s)if(a[s]!==o[s])return!0}return!1}t=t||{};var r,i=e.bind(this,!1,Number),o=e.bind(this,!1,Boolean),l=e.bind(this,!1,String),c=e.bind(this,!0,function(t){if(Array.isArray(t)){if(3===t.length)return[+t[0],+t[1],+t[2],1];if(4===t.length)return[+t[0],+t[1],+t[2],+t[3]]}return[0,0,0,1]}),u=!1,h=!1;if(\"bounds\"in t)for(var f=t.bounds,p=0;p<2;++p)for(var d=0;d<3;++d)f[p][d]!==this.bounds[p][d]&&(h=!0),this.bounds[p][d]=f[p][d];if(\"ticks\"in t){r=t.ticks,u=!0,this.autoTicks=!1;for(p=0;p<3;++p)this.tickSpacing[p]=0}else i(\"tickSpacing\")&&(this.autoTicks=!0,h=!0);if(this._firstInit&&(\"ticks\"in t||\"tickSpacing\"in t||(this.autoTicks=!0),h=!0,u=!0,this._firstInit=!1),h&&this.autoTicks&&(r=s.create(this.bounds,this.tickSpacing),u=!0),u){for(p=0;p<3;++p)r[p].sort(function(t,e){return t.x-e.x});s.equal(r,this.ticks)?u=!1:this.ticks=r}o(\"tickEnable\"),l(\"tickFont\")&&(u=!0),i(\"tickSize\"),i(\"tickAngle\"),i(\"tickPad\"),c(\"tickColor\");var g=l(\"labels\");l(\"labelFont\")&&(g=!0),o(\"labelEnable\"),i(\"labelSize\"),i(\"labelPad\"),c(\"labelColor\"),o(\"lineEnable\"),o(\"lineMirror\"),i(\"lineWidth\"),c(\"lineColor\"),o(\"lineTickEnable\"),o(\"lineTickMirror\"),i(\"lineTickLength\"),i(\"lineTickWidth\"),c(\"lineTickColor\"),o(\"gridEnable\"),i(\"gridWidth\"),c(\"gridColor\"),o(\"zeroEnable\"),c(\"zeroLineColor\"),i(\"zeroLineWidth\"),o(\"backgroundEnable\"),c(\"backgroundColor\"),this._text?this._text&&(g||u)&&this._text.update(this.bounds,this.labels,this.labelFont,this.ticks,this.tickFont):this._text=n(this.gl,this.bounds,this.labels,this.labelFont,this.ticks,this.tickFont),this._lines&&u&&(this._lines.dispose(),this._lines=null),this._lines||(this._lines=a(this.gl,this.bounds,this.ticks))};var p=[new f,new f,new f];function d(t,e,r,n,a){for(var i=t.primalOffset,o=t.primalMinor,s=t.mirrorOffset,l=t.mirrorMinor,c=n[e],u=0;u<3;++u)if(e!==u){var h=i,f=s,p=o,d=l;c&1<<u&&(h=s,f=i,p=l,d=o),h[u]=r[0][u],f[u]=r[1][u],a[u]>0?(p[u]=-1,d[u]=0):(p[u]=0,d[u]=1)}}var g=[0,0,0],v={model:l,view:l,projection:l,_ortho:!1};h.isOpaque=function(){return!0},h.isTransparent=function(){return!1},h.drawTransparent=function(t){};var m=[0,0,0],y=[0,0,0],x=[0,0,0];h.draw=function(t){t=t||v;for(var e=this.gl,r=t.model||l,n=t.view||l,a=t.projection||l,i=this.bounds,s=t._ortho||!1,u=o(r,n,a,i,s),h=u.cubeEdges,f=u.axis,b=n[12],_=n[13],w=n[14],k=n[15],T=(s?2:1)*this.pixelRatio*(a[3]*b+a[7]*_+a[11]*w+a[15]*k)/e.drawingBufferHeight,A=0;A<3;++A)this.lastCubeProps.cubeEdges[A]=h[A],this.lastCubeProps.axis[A]=f[A];var M=p;for(A=0;A<3;++A)d(p[A],A,this.bounds,h,f);e=this.gl;var S,E=g;for(A=0;A<3;++A)this.backgroundEnable[A]?E[A]=f[A]:E[A]=0;this._background.draw(r,n,a,i,E,this.backgroundColor),this._lines.bind(r,n,a,this);for(A=0;A<3;++A){var C=[0,0,0];f[A]>0?C[A]=i[1][A]:C[A]=i[0][A];for(var L=0;L<2;++L){var P=(A+1+L)%3,O=(A+1+(1^L))%3;this.gridEnable[P]&&this._lines.drawGrid(P,O,this.bounds,C,this.gridColor[P],this.gridWidth[P]*this.pixelRatio)}for(L=0;L<2;++L){P=(A+1+L)%3,O=(A+1+(1^L))%3;this.zeroEnable[O]&&Math.min(i[0][O],i[1][O])<=0&&Math.max(i[0][O],i[1][O])>=0&&this._lines.drawZero(P,O,this.bounds,C,this.zeroLineColor[O],this.zeroLineWidth[O]*this.pixelRatio)}}for(A=0;A<3;++A){this.lineEnable[A]&&this._lines.drawAxisLine(A,this.bounds,M[A].primalOffset,this.lineColor[A],this.lineWidth[A]*this.pixelRatio),this.lineMirror[A]&&this._lines.drawAxisLine(A,this.bounds,M[A].mirrorOffset,this.lineColor[A],this.lineWidth[A]*this.pixelRatio);var I=c(m,M[A].primalMinor),z=c(y,M[A].mirrorMinor),D=this.lineTickLength;for(L=0;L<3;++L){var R=T/r[5*L];I[L]*=D[L]*R,z[L]*=D[L]*R}this.lineTickEnable[A]&&this._lines.drawAxisTicks(A,M[A].primalOffset,I,this.lineTickColor[A],this.lineTickWidth[A]*this.pixelRatio),this.lineTickMirror[A]&&this._lines.drawAxisTicks(A,M[A].mirrorOffset,z,this.lineTickColor[A],this.lineTickWidth[A]*this.pixelRatio)}this._lines.unbind(),this._text.bind(r,n,a,this.pixelRatio);var F,B;function N(t){(B=[0,0,0])[t]=1}function j(t,e,r){var n=(t+1)%3,a=(t+2)%3,i=e[n],o=e[a],s=r[n],l=r[a];i>0&&l>0?N(n):i>0&&l<0?N(n):i<0&&l>0?N(n):i<0&&l<0?N(n):o>0&&s>0?N(a):o>0&&s<0?N(a):o<0&&s>0?N(a):o<0&&s<0&&N(a)}for(A=0;A<3;++A){var V=M[A].primalMinor,U=M[A].mirrorMinor,q=c(x,M[A].primalOffset);for(L=0;L<3;++L)this.lineTickEnable[A]&&(q[L]+=T*V[L]*Math.max(this.lineTickLength[L],0)/r[5*L]);var H=[0,0,0];if(H[A]=1,this.tickEnable[A]){-3600===this.tickAngle[A]?(this.tickAngle[A]=0,this.tickAlign[A]=\"auto\"):this.tickAlign[A]=-1,F=1,\"auto\"===(S=[this.tickAlign[A],.5,F])[0]?S[0]=0:S[0]=parseInt(\"\"+S[0]),B=[0,0,0],j(A,V,U);for(L=0;L<3;++L)q[L]+=T*V[L]*this.tickPad[L]/r[5*L];this._text.drawTicks(A,this.tickSize[A],this.tickAngle[A],q,this.tickColor[A],H,B,S)}if(this.labelEnable[A]){F=0,B=[0,0,0],this.labels[A].length>4&&(N(A),F=1),\"auto\"===(S=[this.labelAlign[A],.5,F])[0]?S[0]=0:S[0]=parseInt(\"\"+S[0]);for(L=0;L<3;++L)q[L]+=T*V[L]*this.labelPad[L]/r[5*L];q[A]+=.5*(i[0][A]+i[1][A]),this._text.drawLabel(A,this.labelSize[A],this.labelAngle[A],q,this.labelColor[A],[0,0,0],B,S)}}this._text.unbind()},h.dispose=function(){this._text.dispose(),this._lines.dispose(),this._background.dispose(),this._lines=null,this._text=null,this._background=null,this.gl=null}},{\"./lib/background.js\":235,\"./lib/cube.js\":236,\"./lib/lines.js\":237,\"./lib/text.js\":239,\"./lib/ticks.js\":240}],235:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=[],r=[],s=0,l=0;l<3;++l)for(var c=(l+1)%3,u=(l+2)%3,h=[0,0,0],f=[0,0,0],p=-1;p<=1;p+=2){r.push(s,s+2,s+1,s+1,s+2,s+3),h[l]=p,f[l]=p;for(var d=-1;d<=1;d+=2){h[c]=d;for(var g=-1;g<=1;g+=2)h[u]=g,e.push(h[0],h[1],h[2],f[0],f[1],f[2]),s+=1}var v=c;c=u,u=v}var m=n(t,new Float32Array(e)),y=n(t,new Uint16Array(r),t.ELEMENT_ARRAY_BUFFER),x=a(t,[{buffer:m,type:t.FLOAT,size:3,offset:0,stride:24},{buffer:m,type:t.FLOAT,size:3,offset:12,stride:24}],y),b=i(t);return b.attributes.position.location=0,b.attributes.normal.location=1,new o(t,m,x,b)};var n=t(\"gl-buffer\"),a=t(\"gl-vao\"),i=t(\"./shaders\").bg;function o(t,e,r,n){this.gl=t,this.buffer=e,this.vao=r,this.shader=n}var s=o.prototype;s.draw=function(t,e,r,n,a,i){for(var o=!1,s=0;s<3;++s)o=o||a[s];if(o){var l=this.gl;l.enable(l.POLYGON_OFFSET_FILL),l.polygonOffset(1,2),this.shader.bind(),this.shader.uniforms={model:t,view:e,projection:r,bounds:n,enable:a,colors:i},this.vao.bind(),this.vao.draw(this.gl.TRIANGLES,36),this.vao.unbind(),l.disable(l.POLYGON_OFFSET_FILL)}},s.dispose=function(){this.vao.dispose(),this.buffer.dispose(),this.shader.dispose()}},{\"./shaders\":238,\"gl-buffer\":242,\"gl-vao\":328}],236:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,i,p){a(s,e,t),a(s,r,s);for(var y=0,x=0;x<2;++x){u[2]=i[x][2];for(var b=0;b<2;++b){u[1]=i[b][1];for(var _=0;_<2;++_)u[0]=i[_][0],f(l[y],u,s),y+=1}}for(var w=-1,x=0;x<8;++x){for(var k=l[x][3],T=0;T<3;++T)c[x][T]=l[x][T]/k;p&&(c[x][2]*=-1),k<0&&(w<0?w=x:c[x][2]<c[w][2]&&(w=x))}if(w<0){w=0;for(var A=0;A<3;++A){for(var M=(A+2)%3,S=(A+1)%3,E=-1,C=-1,L=0;L<2;++L){var P=L<<A,O=P+(L<<M)+(1-L<<S),I=P+(1-L<<M)+(L<<S);o(c[P],c[O],c[I],h)<0||(L?E=1:C=1)}if(E<0||C<0)C>E&&(w|=1<<A);else{for(var L=0;L<2;++L){var P=L<<A,O=P+(L<<M)+(1-L<<S),I=P+(1-L<<M)+(L<<S),z=d([l[P],l[O],l[I],l[P+(1<<M)+(1<<S)]]);L?E=z:C=z}C>E&&(w|=1<<A)}}}for(var D=7^w,R=-1,x=0;x<8;++x)x!==w&&x!==D&&(R<0?R=x:c[R][1]>c[x][1]&&(R=x));for(var F=-1,x=0;x<3;++x){var B=R^1<<x;if(B!==w&&B!==D){F<0&&(F=B);var S=c[B];S[0]<c[F][0]&&(F=B)}}for(var N=-1,x=0;x<3;++x){var B=R^1<<x;if(B!==w&&B!==D&&B!==F){N<0&&(N=B);var S=c[B];S[0]>c[N][0]&&(N=B)}}var j=g;j[0]=j[1]=j[2]=0,j[n.log2(F^R)]=R&F,j[n.log2(R^N)]=R&N;var V=7^N;V===w||V===D?(V=7^F,j[n.log2(N^V)]=V&N):j[n.log2(F^V)]=V&F;for(var U=v,q=w,A=0;A<3;++A)U[A]=q&1<<A?-1:1;return m};var n=t(\"bit-twiddle\"),a=t(\"gl-mat4/multiply\"),i=t(\"split-polygon\"),o=t(\"robust-orientation\"),s=new Array(16),l=new Array(8),c=new Array(8),u=new Array(3),h=[0,0,0];function f(t,e,r){for(var n=0;n<4;++n){t[n]=r[12+n];for(var a=0;a<3;++a)t[n]+=e[a]*r[4*a+n]}}!function(){for(var t=0;t<8;++t)l[t]=[1,1,1,1],c[t]=[1,1,1]}();var p=[[0,0,1,0,0],[0,0,-1,1,0],[0,-1,0,1,0],[0,1,0,1,0],[-1,0,0,1,0],[1,0,0,1,0]];function d(t){for(var e=0;e<p.length;++e)if((t=i.positive(t,p[e])).length<3)return 0;var r=t[0],n=r[0]/r[3],a=r[1]/r[3],o=0;for(e=1;e+1<t.length;++e){var s=t[e],l=t[e+1],c=s[0]/s[3]-n,u=s[1]/s[3]-a,h=l[0]/l[3]-n,f=l[1]/l[3]-a;o+=Math.abs(c*f-u*h)}return o}var g=[1,1,1],v=[0,0,0],m={cubeEdges:g,axis:v}},{\"bit-twiddle\":93,\"gl-mat4/multiply\":268,\"robust-orientation\":511,\"split-polygon\":528}],237:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){var o=[],s=[0,0,0],l=[0,0,0],c=[0,0,0],u=[0,0,0];o.push(0,0,1,0,1,1,0,0,-1,0,0,-1,0,1,1,0,1,-1);for(var h=0;h<3;++h){for(var f=o.length/3|0,d=0;d<r[h].length;++d){var g=+r[h][d].x;o.push(g,0,1,g,1,1,g,0,-1,g,0,-1,g,1,1,g,1,-1)}var v=o.length/3|0;s[h]=f,l[h]=v-f;for(var f=o.length/3|0,m=0;m<r[h].length;++m){var g=+r[h][m].x;o.push(g,0,1,g,1,1,g,0,-1,g,0,-1,g,1,1,g,1,-1)}var v=o.length/3|0;c[h]=f,u[h]=v-f}var y=n(t,new Float32Array(o)),x=a(t,[{buffer:y,type:t.FLOAT,size:3,stride:0,offset:0}]),b=i(t);return b.attributes.position.location=0,new p(t,y,x,b,l,s,u,c)};var n=t(\"gl-buffer\"),a=t(\"gl-vao\"),i=t(\"./shaders\").line,o=[0,0,0],s=[0,0,0],l=[0,0,0],c=[0,0,0],u=[1,1];function h(t){return t[0]=t[1]=t[2]=0,t}function f(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t}function p(t,e,r,n,a,i,o,s){this.gl=t,this.vertBuffer=e,this.vao=r,this.shader=n,this.tickCount=a,this.tickOffset=i,this.gridCount=o,this.gridOffset=s}var d=p.prototype;d.bind=function(t,e,r){this.shader.bind(),this.shader.uniforms.model=t,this.shader.uniforms.view=e,this.shader.uniforms.projection=r,u[0]=this.gl.drawingBufferWidth,u[1]=this.gl.drawingBufferHeight,this.shader.uniforms.screenShape=u,this.vao.bind()},d.unbind=function(){this.vao.unbind()},d.drawAxisLine=function(t,e,r,n,a){var i=h(s);this.shader.uniforms.majorAxis=s,i[t]=e[1][t]-e[0][t],this.shader.uniforms.minorAxis=i;var o,u=f(c,r);u[t]+=e[0][t],this.shader.uniforms.offset=u,this.shader.uniforms.lineWidth=a,this.shader.uniforms.color=n,(o=h(l))[(t+2)%3]=1,this.shader.uniforms.screenAxis=o,this.vao.draw(this.gl.TRIANGLES,6),(o=h(l))[(t+1)%3]=1,this.shader.uniforms.screenAxis=o,this.vao.draw(this.gl.TRIANGLES,6)},d.drawAxisTicks=function(t,e,r,n,a){if(this.tickCount[t]){var i=h(o);i[t]=1,this.shader.uniforms.majorAxis=i,this.shader.uniforms.offset=e,this.shader.uniforms.minorAxis=r,this.shader.uniforms.color=n,this.shader.uniforms.lineWidth=a;var s=h(l);s[t]=1,this.shader.uniforms.screenAxis=s,this.vao.draw(this.gl.TRIANGLES,this.tickCount[t],this.tickOffset[t])}},d.drawGrid=function(t,e,r,n,a,i){if(this.gridCount[t]){var u=h(s);u[e]=r[1][e]-r[0][e],this.shader.uniforms.minorAxis=u;var p=f(c,n);p[e]+=r[0][e],this.shader.uniforms.offset=p;var d=h(o);d[t]=1,this.shader.uniforms.majorAxis=d;var g=h(l);g[t]=1,this.shader.uniforms.screenAxis=g,this.shader.uniforms.lineWidth=i,this.shader.uniforms.color=a,this.vao.draw(this.gl.TRIANGLES,this.gridCount[t],this.gridOffset[t])}},d.drawZero=function(t,e,r,n,a,i){var o=h(s);this.shader.uniforms.majorAxis=o,o[t]=r[1][t]-r[0][t],this.shader.uniforms.minorAxis=o;var u=f(c,n);u[t]+=r[0][t],this.shader.uniforms.offset=u;var p=h(l);p[e]=1,this.shader.uniforms.screenAxis=p,this.shader.uniforms.lineWidth=i,this.shader.uniforms.color=a,this.vao.draw(this.gl.TRIANGLES,6)},d.dispose=function(){this.vao.dispose(),this.vertBuffer.dispose(),this.shader.dispose()}},{\"./shaders\":238,\"gl-buffer\":242,\"gl-vao\":328}],238:[function(t,e,r){\"use strict\";var n=t(\"glslify\"),a=t(\"gl-shader\"),i=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position;\\n\\nuniform mat4 model, view, projection;\\nuniform vec3 offset, majorAxis, minorAxis, screenAxis;\\nuniform float lineWidth;\\nuniform vec2 screenShape;\\n\\nvec3 project(vec3 p) {\\n  vec4 pp = projection * view * model * vec4(p, 1.0);\\n  return pp.xyz / max(pp.w, 0.0001);\\n}\\n\\nvoid main() {\\n  vec3 major = position.x * majorAxis;\\n  vec3 minor = position.y * minorAxis;\\n\\n  vec3 vPosition = major + minor + offset;\\n  vec3 pPosition = project(vPosition);\\n  vec3 offset = project(vPosition + screenAxis * position.z);\\n\\n  vec2 screen = normalize((offset - pPosition).xy * screenShape) / screenShape;\\n\\n  gl_Position = vec4(pPosition + vec3(0.5 * screen * lineWidth, 0), 1.0);\\n}\\n\"]),o=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nuniform vec4 color;\\nvoid main() {\\n  gl_FragColor = color;\\n}\"]);r.line=function(t){return a(t,i,o,null,[{name:\"position\",type:\"vec3\"}])};var s=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position;\\n\\nuniform mat4 model, view, projection;\\nuniform vec3 offset, axis, alignDir, alignOpt;\\nuniform float scale, angle, pixelScale;\\nuniform vec2 resolution;\\n\\nvec3 project(vec3 p) {\\n  vec4 pp = projection * view * model * vec4(p, 1.0);\\n  return pp.xyz / max(pp.w, 0.0001);\\n}\\n\\nfloat computeViewAngle(vec3 a, vec3 b) {\\n  vec3 A = project(a);\\n  vec3 B = project(b);\\n\\n  return atan(\\n    (B.y - A.y) * resolution.y,\\n    (B.x - A.x) * resolution.x\\n  );\\n}\\n\\nconst float PI = 3.141592;\\nconst float TWO_PI = 2.0 * PI;\\nconst float HALF_PI = 0.5 * PI;\\nconst float ONE_AND_HALF_PI = 1.5 * PI;\\n\\nint option = int(floor(alignOpt.x + 0.001));\\nfloat hv_ratio =       alignOpt.y;\\nbool enableAlign =    (alignOpt.z != 0.0);\\n\\nfloat mod_angle(float a) {\\n  return mod(a, PI);\\n}\\n\\nfloat positive_angle(float a) {\\n  return mod_angle((a < 0.0) ?\\n    a + TWO_PI :\\n    a\\n  );\\n}\\n\\nfloat look_upwards(float a) {\\n  float b = positive_angle(a);\\n  return ((b > HALF_PI) && (b <= ONE_AND_HALF_PI)) ?\\n    b - PI :\\n    b;\\n}\\n\\nfloat look_horizontal_or_vertical(float a, float ratio) {\\n  // ratio controls the ratio between being horizontal to (vertical + horizontal)\\n  // if ratio is set to 0.5 then it is 50%, 50%.\\n  // when using a higher ratio e.g. 0.75 the result would\\n  // likely be more horizontal than vertical.\\n\\n  float b = positive_angle(a);\\n\\n  return\\n    (b < (      ratio) * HALF_PI) ? 0.0 :\\n    (b < (2.0 - ratio) * HALF_PI) ? -HALF_PI :\\n    (b < (2.0 + ratio) * HALF_PI) ? 0.0 :\\n    (b < (4.0 - ratio) * HALF_PI) ? HALF_PI :\\n                                    0.0;\\n}\\n\\nfloat roundTo(float a, float b) {\\n  return float(b * floor((a + 0.5 * b) / b));\\n}\\n\\nfloat look_round_n_directions(float a, int n) {\\n  float b = positive_angle(a);\\n  float div = TWO_PI / float(n);\\n  float c = roundTo(b, div);\\n  return look_upwards(c);\\n}\\n\\nfloat applyAlignOption(float rawAngle, float delta) {\\n  return\\n    (option >  2) ? look_round_n_directions(rawAngle + delta, option) :       // option 3-n: round to n directions\\n    (option == 2) ? look_horizontal_or_vertical(rawAngle + delta, hv_ratio) : // horizontal or vertical\\n    (option == 1) ? rawAngle + delta :       // use free angle, and flip to align with one direction of the axis\\n    (option == 0) ? look_upwards(rawAngle) : // use free angle, and stay upwards\\n    (option ==-1) ? 0.0 :                    // useful for backward compatibility, all texts remains horizontal\\n                    rawAngle;                // otherwise return back raw input angle\\n}\\n\\nbool isAxisTitle = (axis.x == 0.0) &&\\n                   (axis.y == 0.0) &&\\n                   (axis.z == 0.0);\\n\\nvoid main() {\\n  //Compute world offset\\n  float axisDistance = position.z;\\n  vec3 dataPosition = axisDistance * axis + offset;\\n\\n  float beta = angle; // i.e. user defined attributes for each tick\\n\\n  float axisAngle;\\n  float clipAngle;\\n  float flip;\\n\\n  if (enableAlign) {\\n    axisAngle = (isAxisTitle) ? HALF_PI :\\n                      computeViewAngle(dataPosition, dataPosition + axis);\\n    clipAngle = computeViewAngle(dataPosition, dataPosition + alignDir);\\n\\n    axisAngle += (sin(axisAngle) < 0.0) ? PI : 0.0;\\n    clipAngle += (sin(clipAngle) < 0.0) ? PI : 0.0;\\n\\n    flip = (dot(vec2(cos(axisAngle), sin(axisAngle)),\\n                vec2(sin(clipAngle),-cos(clipAngle))) > 0.0) ? 1.0 : 0.0;\\n\\n    beta += applyAlignOption(clipAngle, flip * PI);\\n  }\\n\\n  //Compute plane offset\\n  vec2 planeCoord = position.xy * pixelScale;\\n\\n  mat2 planeXform = scale * mat2(\\n     cos(beta), sin(beta),\\n    -sin(beta), cos(beta)\\n  );\\n\\n  vec2 viewOffset = 2.0 * planeXform * planeCoord / resolution;\\n\\n  //Compute clip position\\n  vec3 clipPosition = project(dataPosition);\\n\\n  //Apply text offset in clip coordinates\\n  clipPosition += vec3(viewOffset, 0.0);\\n\\n  //Done\\n  gl_Position = vec4(clipPosition, 1.0);\\n}\"]),l=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nuniform vec4 color;\\nvoid main() {\\n  gl_FragColor = color;\\n}\"]);r.text=function(t){return a(t,s,l,null,[{name:\"position\",type:\"vec3\"}])};var c=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position;\\nattribute vec3 normal;\\n\\nuniform mat4 model, view, projection;\\nuniform vec3 enable;\\nuniform vec3 bounds[2];\\n\\nvarying vec3 colorChannel;\\n\\nvoid main() {\\n\\n  vec3 signAxis = sign(bounds[1] - bounds[0]);\\n\\n  vec3 realNormal = signAxis * normal;\\n\\n  if(dot(realNormal, enable) > 0.0) {\\n    vec3 minRange = min(bounds[0], bounds[1]);\\n    vec3 maxRange = max(bounds[0], bounds[1]);\\n    vec3 nPosition = mix(minRange, maxRange, 0.5 * (position + 1.0));\\n    gl_Position = projection * view * model * vec4(nPosition, 1.0);\\n  } else {\\n    gl_Position = vec4(0,0,0,0);\\n  }\\n\\n  colorChannel = abs(realNormal);\\n}\"]),u=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nuniform vec4 colors[3];\\n\\nvarying vec3 colorChannel;\\n\\nvoid main() {\\n  gl_FragColor = colorChannel.x * colors[0] +\\n                 colorChannel.y * colors[1] +\\n                 colorChannel.z * colors[2];\\n}\"]);r.bg=function(t){return a(t,c,u,null,[{name:\"position\",type:\"vec3\"},{name:\"normal\",type:\"vec3\"}])}},{\"gl-shader\":302,glslify:410}],239:[function(t,e,r){(function(r){\"use strict\";e.exports=function(t,e,r,i,s,l){var u=n(t),h=a(t,[{buffer:u,size:3}]),f=o(t);f.attributes.position.location=0;var p=new c(t,f,u,h);return p.update(e,r,i,s,l),p};var n=t(\"gl-buffer\"),a=t(\"gl-vao\"),i=t(\"vectorize-text\"),o=t(\"./shaders\").text,s=window||r.global||{},l=s.__TEXT_CACHE||{};s.__TEXT_CACHE={};function c(t,e,r,n){this.gl=t,this.shader=e,this.buffer=r,this.vao=n,this.tickOffset=this.tickCount=this.labelOffset=this.labelCount=null}var u=c.prototype,h=[0,0];u.bind=function(t,e,r,n){this.vao.bind(),this.shader.bind();var a=this.shader.uniforms;a.model=t,a.view=e,a.projection=r,a.pixelScale=n,h[0]=this.gl.drawingBufferWidth,h[1]=this.gl.drawingBufferHeight,this.shader.uniforms.resolution=h},u.unbind=function(){this.vao.unbind()},u.update=function(t,e,r,n,a){var o=[];function s(t,e,r,n,a,s){var c=l[r];c||(c=l[r]={});var u=c[e];u||(u=c[e]=function(t,e){try{return i(t,e)}catch(e){return console.warn('error vectorizing text:\"'+t+'\" error:',e),{cells:[],positions:[]}}}(e,{triangles:!0,font:r,textAlign:\"center\",textBaseline:\"middle\",lineSpacing:a,styletags:s}));for(var h=(n||12)/12,f=u.positions,p=u.cells,d=0,g=p.length;d<g;++d)for(var v=p[d],m=2;m>=0;--m){var y=f[v[m]];o.push(h*y[0],-h*y[1],t)}}for(var c=[0,0,0],u=[0,0,0],h=[0,0,0],f=[0,0,0],p={breaklines:!0,bolds:!0,italics:!0,subscripts:!0,superscripts:!0},d=0;d<3;++d){h[d]=o.length/3|0,s(.5*(t[0][d]+t[1][d]),e[d],r[d],12,1.25,p),f[d]=(o.length/3|0)-h[d],c[d]=o.length/3|0;for(var g=0;g<n[d].length;++g)n[d][g].text&&s(n[d][g].x,n[d][g].text,n[d][g].font||a,n[d][g].fontSize||12,1.25,p);u[d]=(o.length/3|0)-c[d]}this.buffer.update(o),this.tickOffset=c,this.tickCount=u,this.labelOffset=h,this.labelCount=f},u.drawTicks=function(t,e,r,n,a,i,o,s){this.tickCount[t]&&(this.shader.uniforms.axis=i,this.shader.uniforms.color=a,this.shader.uniforms.angle=r,this.shader.uniforms.scale=e,this.shader.uniforms.offset=n,this.shader.uniforms.alignDir=o,this.shader.uniforms.alignOpt=s,this.vao.draw(this.gl.TRIANGLES,this.tickCount[t],this.tickOffset[t]))},u.drawLabel=function(t,e,r,n,a,i,o,s){this.labelCount[t]&&(this.shader.uniforms.axis=i,this.shader.uniforms.color=a,this.shader.uniforms.angle=r,this.shader.uniforms.scale=e,this.shader.uniforms.offset=n,this.shader.uniforms.alignDir=o,this.shader.uniforms.alignOpt=s,this.vao.draw(this.gl.TRIANGLES,this.labelCount[t],this.labelOffset[t]))},u.dispose=function(){this.shader.dispose(),this.vao.dispose(),this.buffer.dispose()}}).call(this,t(\"_process\"))},{\"./shaders\":238,_process:483,\"gl-buffer\":242,\"gl-vao\":328,\"vectorize-text\":551}],240:[function(t,e,r){\"use strict\";function n(t,e){var r=t+\"\",n=r.indexOf(\".\"),a=0;n>=0&&(a=r.length-n-1);var i=Math.pow(10,a),o=Math.round(t*e*i),s=o+\"\";if(s.indexOf(\"e\")>=0)return s;var l=o/i,c=o%i;o<0?(l=0|-Math.ceil(l),c=0|-c):(l=0|Math.floor(l),c|=0);var u=\"\"+l;if(o<0&&(u=\"-\"+u),a){for(var h=\"\"+c;h.length<a;)h=\"0\"+h;return u+\".\"+h}return u}r.create=function(t,e){for(var r=[],a=0;a<3;++a){for(var i=[],o=(t[0][a],t[1][a],0);o*e[a]<=t[1][a];++o)i.push({x:o*e[a],text:n(e[a],o)});for(var o=-1;o*e[a]>=t[0][a];--o)i.push({x:o*e[a],text:n(e[a],o)});r.push(i)}return r},r.equal=function(t,e){for(var r=0;r<3;++r){if(t[r].length!==e[r].length)return!1;for(var n=0;n<t[r].length;++n){var a=t[r][n],i=e[r][n];if(a.x!==i.x||a.text!==i.text||a.font!==i.font||a.fontColor!==i.fontColor||a.fontSize!==i.fontSize||a.dx!==i.dx||a.dy!==i.dy)return!1}}return!0}},{}],241:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,l,h){var f=e.model||c,p=e.view||c,m=e.projection||c,y=e._ortho||!1,x=t.bounds,b=(h=h||i(f,p,m,x,y)).axis;o(u,p,f),o(u,m,u);for(var _=g,w=0;w<3;++w)_[w].lo=1/0,_[w].hi=-1/0,_[w].pixelsPerDataUnit=1/0;var k=n(s(u,u));s(u,u);for(var T=0;T<3;++T){var A=(T+1)%3,M=(T+2)%3,S=v;t:for(var w=0;w<2;++w){var E=[];if(b[T]<0!=!!w){S[T]=x[w][T];for(var C=0;C<2;++C){S[A]=x[C^w][A];for(var L=0;L<2;++L)S[M]=x[L^C^w][M],E.push(S.slice())}for(var P=y?5:4,C=P;C===P;++C){if(0===E.length)continue t;E=a.positive(E,k[C])}for(var C=0;C<E.length;++C)for(var M=E[C],O=d(v,u,M,r,l),L=0;L<3;++L)_[L].lo=Math.min(_[L].lo,M[L]),_[L].hi=Math.max(_[L].hi,M[L]),L!==T&&(_[L].pixelsPerDataUnit=Math.min(_[L].pixelsPerDataUnit,Math.abs(O[L])))}}}return _};var n=t(\"extract-frustum-planes\"),a=t(\"split-polygon\"),i=t(\"./lib/cube.js\"),o=t(\"gl-mat4/multiply\"),s=t(\"gl-mat4/transpose\"),l=t(\"gl-vec4/transformMat4\"),c=new Float32Array([1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]),u=new Float32Array(16);function h(t,e,r){this.lo=t,this.hi=e,this.pixelsPerDataUnit=r}var f=[0,0,0,1],p=[0,0,0,1];function d(t,e,r,n,a){for(var i=0;i<3;++i){for(var o=f,s=p,c=0;c<3;++c)s[c]=o[c]=r[c];s[3]=o[3]=1,s[i]+=1,l(s,s,e),s[3]<0&&(t[i]=1/0),o[i]-=1,l(o,o,e),o[3]<0&&(t[i]=1/0);var u=(o[0]/o[3]-s[0]/s[3])*n,h=(o[1]/o[3]-s[1]/s[3])*a;t[i]=.25*Math.sqrt(u*u+h*h)}return t}var g=[new h(1/0,-1/0,1/0),new h(1/0,-1/0,1/0),new h(1/0,-1/0,1/0)],v=[0,0,0]},{\"./lib/cube.js\":236,\"extract-frustum-planes\":225,\"gl-mat4/multiply\":268,\"gl-mat4/transpose\":277,\"gl-vec4/transformMat4\":399,\"split-polygon\":528}],242:[function(t,e,r){\"use strict\";var n=t(\"typedarray-pool\"),a=t(\"ndarray-ops\"),i=t(\"ndarray\"),o=[\"uint8\",\"uint8_clamped\",\"uint16\",\"uint32\",\"int8\",\"int16\",\"int32\",\"float32\"];function s(t,e,r,n,a){this.gl=t,this.type=e,this.handle=r,this.length=n,this.usage=a}var l=s.prototype;function c(t,e,r,n,a,i){var o=a.length*a.BYTES_PER_ELEMENT;if(i<0)return t.bufferData(e,a,n),o;if(o+i>r)throw new Error(\"gl-buffer: If resizing buffer, must not specify offset\");return t.bufferSubData(e,i,a),r}function u(t,e){for(var r=n.malloc(t.length,e),a=t.length,i=0;i<a;++i)r[i]=t[i];return r}l.bind=function(){this.gl.bindBuffer(this.type,this.handle)},l.unbind=function(){this.gl.bindBuffer(this.type,null)},l.dispose=function(){this.gl.deleteBuffer(this.handle)},l.update=function(t,e){if(\"number\"!=typeof e&&(e=-1),this.bind(),\"object\"==typeof t&&\"undefined\"!=typeof t.shape){var r=t.dtype;if(o.indexOf(r)<0&&(r=\"float32\"),this.type===this.gl.ELEMENT_ARRAY_BUFFER)r=gl.getExtension(\"OES_element_index_uint\")&&\"uint16\"!==r?\"uint32\":\"uint16\";if(r===t.dtype&&function(t,e){for(var r=1,n=e.length-1;n>=0;--n){if(e[n]!==r)return!1;r*=t[n]}return!0}(t.shape,t.stride))0===t.offset&&t.data.length===t.shape[0]?this.length=c(this.gl,this.type,this.length,this.usage,t.data,e):this.length=c(this.gl,this.type,this.length,this.usage,t.data.subarray(t.offset,t.shape[0]),e);else{var s=n.malloc(t.size,r),l=i(s,t.shape);a.assign(l,t),this.length=c(this.gl,this.type,this.length,this.usage,e<0?s:s.subarray(0,t.size),e),n.free(s)}}else if(Array.isArray(t)){var h;h=this.type===this.gl.ELEMENT_ARRAY_BUFFER?u(t,\"uint16\"):u(t,\"float32\"),this.length=c(this.gl,this.type,this.length,this.usage,e<0?h:h.subarray(0,t.length),e),n.free(h)}else if(\"object\"==typeof t&&\"number\"==typeof t.length)this.length=c(this.gl,this.type,this.length,this.usage,t,e);else{if(\"number\"!=typeof t&&void 0!==t)throw new Error(\"gl-buffer: Invalid data type\");if(e>=0)throw new Error(\"gl-buffer: Cannot specify offset when resizing buffer\");(t|=0)<=0&&(t=1),this.gl.bufferData(this.type,0|t,this.usage),this.length=t}},e.exports=function(t,e,r,n){if(r=r||t.ARRAY_BUFFER,n=n||t.DYNAMIC_DRAW,r!==t.ARRAY_BUFFER&&r!==t.ELEMENT_ARRAY_BUFFER)throw new Error(\"gl-buffer: Invalid type for webgl buffer, must be either gl.ARRAY_BUFFER or gl.ELEMENT_ARRAY_BUFFER\");if(n!==t.DYNAMIC_DRAW&&n!==t.STATIC_DRAW&&n!==t.STREAM_DRAW)throw new Error(\"gl-buffer: Invalid usage for buffer, must be either gl.DYNAMIC_DRAW, gl.STATIC_DRAW or gl.STREAM_DRAW\");var a=t.createBuffer(),i=new s(t,r,a,0,n);return i.update(e),i}},{ndarray:451,\"ndarray-ops\":445,\"typedarray-pool\":546}],243:[function(t,e,r){\"use strict\";var n=t(\"gl-vec3\"),a=function(t,e){for(var r=0;r<t.length;r++)if(t[r]>=e)return r-1;return r},i=n.create(),o=n.create(),s=function(t,e,r){return t<e?e:t>r?r:t},l=function(t,e,r,l){var c=t[0],u=t[1],h=t[2],f=r[0].length,p=r[1].length,d=r[2].length,g=a(r[0],c),v=a(r[1],u),m=a(r[2],h),y=g+1,x=v+1,b=m+1;if(l&&(g=s(g,0,f-1),y=s(y,0,f-1),v=s(v,0,p-1),x=s(x,0,p-1),m=s(m,0,d-1),b=s(b,0,d-1)),g<0||v<0||m<0||y>=f||x>=p||b>=d)return n.create();var _=(c-r[0][g])/(r[0][y]-r[0][g]),w=(u-r[1][v])/(r[1][x]-r[1][v]),k=(h-r[2][m])/(r[2][b]-r[2][m]);(_<0||_>1||isNaN(_))&&(_=0),(w<0||w>1||isNaN(w))&&(w=0),(k<0||k>1||isNaN(k))&&(k=0);var T=m*f*p,A=b*f*p,M=v*f,S=x*f,E=g,C=y,L=e[M+T+E],P=e[M+T+C],O=e[S+T+E],I=e[S+T+C],z=e[M+A+E],D=e[M+A+C],R=e[S+A+E],F=e[S+A+C],B=n.create();return n.lerp(B,L,P,_),n.lerp(i,O,I,_),n.lerp(B,B,i,w),n.lerp(i,z,D,_),n.lerp(o,R,F,_),n.lerp(i,i,o,w),n.lerp(B,B,i,k),B};e.exports=function(t,e){var r;r=t.positions?t.positions:function(t){for(var e=t[0],r=t[1],n=t[2],a=[],i=0;i<n.length;i++)for(var o=0;o<r.length;o++)for(var s=0;s<e.length;s++)a.push([n[i],r[o],e[s]]);return a}(t.meshgrid);var a=t.meshgrid,i=t.vectors,o={positions:[],vertexIntensity:[],vertexIntensityBounds:t.vertexIntensityBounds,vertexNormals:[],vectors:[],cells:[],coneOffset:t.coneOffset,colormap:t.colormap};if(0===t.positions.length)return e&&(e[0]=[0,0,0],e[1]=[0,0,0]),o;for(var s=0,c=1/0,u=-1/0,h=1/0,f=-1/0,p=1/0,d=-1/0,g=null,v=null,m=[],y=1/0,x=0;x<r.length;x++){var b,_=r[x];c=Math.min(_[0],c),u=Math.max(_[0],u),h=Math.min(_[1],h),f=Math.max(_[1],f),p=Math.min(_[2],p),d=Math.max(_[2],d),b=a?l(_,i,a,!0):i[x],n.length(b)>s&&(s=n.length(b)),x&&(y=Math.min(y,2*n.distance(g,_)/(n.length(v)+n.length(b)))),g=_,v=b,m.push(b)}var w=[c,h,p],k=[u,f,d];e&&(e[0]=w,e[1]=k),0===s&&(s=1);var T=1/s;isFinite(y)&&!isNaN(y)||(y=1),o.vectorScale=y;var A=function(t,e,r){var a=n.create();return void 0!==t&&n.set(a,t,e,r),a}(0,1,0),M=t.coneSize||.5;t.absoluteConeSize&&(M=t.absoluteConeSize*T),o.coneScale=M;x=0;for(var S=0;x<r.length;x++)for(var E=(_=r[x])[0],C=_[1],L=_[2],P=m[x],O=n.length(P)*T,I=0;I<8;I++){o.positions.push([E,C,L,S++]),o.positions.push([E,C,L,S++]),o.positions.push([E,C,L,S++]),o.positions.push([E,C,L,S++]),o.positions.push([E,C,L,S++]),o.positions.push([E,C,L,S++]),o.vectors.push(P),o.vectors.push(P),o.vectors.push(P),o.vectors.push(P),o.vectors.push(P),o.vectors.push(P),o.vertexIntensity.push(O,O,O),o.vertexIntensity.push(O,O,O),o.vertexNormals.push(A,A,A),o.vertexNormals.push(A,A,A);var z=o.positions.length;o.cells.push([z-6,z-5,z-4],[z-3,z-2,z-1])}return o},e.exports.createConeMesh=t(\"./lib/conemesh\")},{\"./lib/conemesh\":244,\"gl-vec3\":347}],244:[function(t,e,r){\"use strict\";var n=t(\"gl-shader\"),a=t(\"gl-buffer\"),i=t(\"gl-vao\"),o=t(\"gl-texture2d\"),s=t(\"normals\"),l=t(\"gl-mat4/multiply\"),c=t(\"gl-mat4/invert\"),u=t(\"ndarray\"),h=t(\"colormap\"),f=t(\"simplicial-complex-contour\"),p=t(\"typedarray-pool\"),d=t(\"./shaders\"),g=d.meshShader,v=d.pickShader,m=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function y(t,e,r,n,a,i,o,s,l,c,u,h,f,p,d,g,v,y,x,b,_,w,k,T){this.gl=t,this.pixelRatio=1,this.cells=[],this.positions=[],this.intensity=[],this.texture=e,this.dirty=!0,this.triShader=r,this.pickShader=n,this.trianglePositions=a,this.triangleVectors=i,this.triangleColors=s,this.triangleNormals=c,this.triangleUVs=l,this.triangleIds=o,this.triangleVAO=u,this.triangleCount=0,this.lineWidth=1,this.edgePositions=h,this.edgeColors=p,this.edgeUVs=d,this.edgeIds=f,this.edgeVAO=g,this.edgeCount=0,this.pointPositions=v,this.pointColors=x,this.pointUVs=b,this.pointSizes=_,this.pointIds=y,this.pointVAO=w,this.pointCount=0,this.contourLineWidth=1,this.contourPositions=k,this.contourVAO=T,this.contourCount=0,this.contourColor=[0,0,0],this.contourEnable=!0,this.pickId=1,this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.lightPosition=[1e5,1e5,0],this.ambientLight=.8,this.diffuseLight=.8,this.specularLight=2,this.roughness=.5,this.fresnel=1.5,this.opacity=1,this.coneScale=2,this.vectorScale=1,this.coneOffset=.25,this._model=m,this._view=m,this._projection=m,this._resolution=[1,1]}var x=y.prototype;function b(t){var e=n(t,v.vertex,v.fragment,null,v.attributes);return e.attributes.position.location=0,e.attributes.id.location=1,e.attributes.vector.location=5,e}x.isOpaque=function(){return this.opacity>=1},x.isTransparent=function(){return this.opacity<1},x.pickSlots=1,x.setPickBase=function(t){this.pickId=t},x.highlight=function(t){if(t&&this.contourEnable){for(var e=f(this.cells,this.intensity,t.intensity),r=e.cells,n=e.vertexIds,a=e.vertexWeights,i=r.length,o=p.mallocFloat32(6*i),s=0,l=0;l<i;++l)for(var c=r[l],u=0;u<2;++u){var h=c[0];2===c.length&&(h=c[u]);for(var d=n[h][0],g=n[h][1],v=a[h],m=1-v,y=this.positions[d],x=this.positions[g],b=0;b<3;++b)o[s++]=v*y[b]+m*x[b]}this.contourCount=s/3|0,this.contourPositions.update(o.subarray(0,s)),p.free(o)}else this.contourCount=0},x.update=function(t){t=t||{};var e=this.gl;this.dirty=!0,\"contourEnable\"in t&&(this.contourEnable=t.contourEnable),\"contourColor\"in t&&(this.contourColor=t.contourColor),\"lineWidth\"in t&&(this.lineWidth=t.lineWidth),\"lightPosition\"in t&&(this.lightPosition=t.lightPosition),\"opacity\"in t&&(this.opacity=t.opacity),\"ambient\"in t&&(this.ambientLight=t.ambient),\"diffuse\"in t&&(this.diffuseLight=t.diffuse),\"specular\"in t&&(this.specularLight=t.specular),\"roughness\"in t&&(this.roughness=t.roughness),\"fresnel\"in t&&(this.fresnel=t.fresnel),void 0!==t.vectorScale&&(this.vectorScale=t.vectorScale),void 0!==t.coneScale&&(this.coneScale=t.coneScale),void 0!==t.coneOffset&&(this.coneOffset=t.coneOffset),t.texture?(this.texture.dispose(),this.texture=o(e,t.texture)):t.colormap&&(this.texture.shape=[256,256],this.texture.minFilter=e.LINEAR_MIPMAP_LINEAR,this.texture.magFilter=e.LINEAR,this.texture.setPixels(function(t){for(var e=h({colormap:t,nshades:256,format:\"rgba\"}),r=new Uint8Array(1024),n=0;n<256;++n){for(var a=e[n],i=0;i<3;++i)r[4*n+i]=a[i];r[4*n+3]=255*a[3]}return u(r,[256,256,4],[4,0,1])}(t.colormap)),this.texture.generateMipmap());var r=t.cells,n=t.positions,a=t.vectors;if(n&&r&&a){var i=[],l=[],c=[],f=[],p=[],d=[],g=[],v=[],m=[],y=[],x=[],b=[],_=[],w=[],k=[];this.cells=r,this.positions=n;var T=t.vertexNormals,A=t.cellNormals,M=void 0===t.vertexNormalsEpsilon?1e-6:t.vertexNormalsEpsilon,S=void 0===t.faceNormalsEpsilon?1e-6:t.faceNormalsEpsilon;t.useFacetNormals&&!A&&(A=s.faceNormals(r,n,S)),A||T||(T=s.vertexNormals(r,n,M));var E=t.vertexColors,C=t.cellColors,L=t.meshColor||[1,1,1,1],P=t.vertexUVs,O=t.vertexIntensity,I=t.cellUVs,z=t.cellIntensity,D=1/0,R=-1/0;if(!P&&!I)if(O)if(t.vertexIntensityBounds)D=+t.vertexIntensityBounds[0],R=+t.vertexIntensityBounds[1];else for(var F=0;F<O.length;++F){var B=O[F];D=Math.min(D,B),R=Math.max(R,B)}else if(z)for(F=0;F<z.length;++F){B=z[F];D=Math.min(D,B),R=Math.max(R,B)}else for(F=0;F<n.length;++F){B=n[F][2];D=Math.min(D,B),R=Math.max(R,B)}this.intensity=O||(z?function(t,e,r){for(var n=new Array(e),a=0;a<e;++a)n[a]=0;var i=t.length;for(a=0;a<i;++a)for(var o=t[a],s=0;s<o.length;++s)n[o[s]]=r[a];return n}(r,n.length,z):function(t){for(var e=t.length,r=new Array(e),n=0;n<e;++n)r[n]=t[n][2];return r}(n));var N=t.pointSizes,j=t.pointSize||1;this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]];for(F=0;F<n.length;++F)for(var V=n[F],U=0;U<3;++U)!isNaN(V[U])&&isFinite(V[U])&&(this.bounds[0][U]=Math.min(this.bounds[0][U],V[U]),this.bounds[1][U]=Math.max(this.bounds[1][U],V[U]));var q=0,H=0,G=0;t:for(F=0;F<r.length;++F){var Y=r[F];switch(Y.length){case 1:for(V=n[X=Y[0]],U=0;U<3;++U)if(isNaN(V[U])||!isFinite(V[U]))continue t;x.push(V[0],V[1],V[2],V[3]),3===(Z=E?E[X]:C?C[F]:L).length?b.push(Z[0],Z[1],Z[2],1):b.push(Z[0],Z[1],Z[2],Z[3]),J=P?P[X]:O?[(O[X]-D)/(R-D),0]:I?I[F]:z?[(z[F]-D)/(R-D),0]:[(V[2]-D)/(R-D),0],_.push(J[0],J[1]),N?w.push(N[X]):w.push(j),k.push(F),G+=1;break;case 2:for(U=0;U<2;++U){V=n[X=Y[U]];for(var W=0;W<3;++W)if(isNaN(V[W])||!isFinite(V[W]))continue t}for(U=0;U<2;++U){V=n[X=Y[U]];g.push(V[0],V[1],V[2]),3===(Z=E?E[X]:C?C[F]:L).length?v.push(Z[0],Z[1],Z[2],1):v.push(Z[0],Z[1],Z[2],Z[3]),J=P?P[X]:O?[(O[X]-D)/(R-D),0]:I?I[F]:z?[(z[F]-D)/(R-D),0]:[(V[2]-D)/(R-D),0],m.push(J[0],J[1]),y.push(F)}H+=1;break;case 3:for(U=0;U<3;++U)for(V=n[X=Y[U]],W=0;W<3;++W)if(isNaN(V[W])||!isFinite(V[W]))continue t;for(U=0;U<3;++U){var X;V=n[X=Y[2-U]];i.push(V[0],V[1],V[2],V[3]);var Z,J,K,Q=a[X];l.push(Q[0],Q[1],Q[2]),3===(Z=E?E[X]:C?C[F]:L).length?c.push(Z[0],Z[1],Z[2],1):c.push(Z[0],Z[1],Z[2],Z[3]),J=P?P[X]:O?[(O[X]-D)/(R-D),0]:I?I[F]:z?[(z[F]-D)/(R-D),0]:[(V[2]-D)/(R-D),0],p.push(J[0],J[1]),K=T?T[X]:A[F],f.push(K[0],K[1],K[2]),d.push(F)}q+=1}}this.pointCount=G,this.edgeCount=H,this.triangleCount=q,this.pointPositions.update(x),this.pointColors.update(b),this.pointUVs.update(_),this.pointSizes.update(w),this.pointIds.update(new Uint32Array(k)),this.edgePositions.update(g),this.edgeColors.update(v),this.edgeUVs.update(m),this.edgeIds.update(new Uint32Array(y)),this.trianglePositions.update(i),this.triangleVectors.update(l),this.triangleColors.update(c),this.triangleUVs.update(p),this.triangleNormals.update(f),this.triangleIds.update(new Uint32Array(d))}},x.drawTransparent=x.draw=function(t){t=t||{};for(var e=this.gl,r=t.model||m,n=t.view||m,a=t.projection||m,i=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],o=0;o<3;++o)i[0][o]=Math.max(i[0][o],this.clipBounds[0][o]),i[1][o]=Math.min(i[1][o],this.clipBounds[1][o]);var s={model:r,view:n,projection:a,inverseModel:m.slice(),clipBounds:i,kambient:this.ambientLight,kdiffuse:this.diffuseLight,kspecular:this.specularLight,roughness:this.roughness,fresnel:this.fresnel,eyePosition:[0,0,0],lightPosition:[0,0,0],opacity:this.opacity,vectorScale:this.vectorScale,coneScale:this.coneScale,coneOffset:this.coneOffset,contourColor:this.contourColor,texture:0};s.inverseModel=c(s.inverseModel,s.model),e.disable(e.CULL_FACE),this.texture.bind(0);var u=new Array(16);l(u,s.view,s.model),l(u,s.projection,u),c(u,u);for(o=0;o<3;++o)s.eyePosition[o]=u[12+o]/u[15];var h=u[15];for(o=0;o<3;++o)h+=this.lightPosition[o]*u[4*o+3];for(o=0;o<3;++o){for(var f=u[12+o],p=0;p<3;++p)f+=u[4*p+o]*this.lightPosition[p];s.lightPosition[o]=f/h}if(this.triangleCount>0){var d=this.triShader;d.bind(),d.uniforms=s,this.triangleVAO.bind(),e.drawArrays(e.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind()}},x.drawPick=function(t){t=t||{};for(var e=this.gl,r=t.model||m,n=t.view||m,a=t.projection||m,i=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],o=0;o<3;++o)i[0][o]=Math.max(i[0][o],this.clipBounds[0][o]),i[1][o]=Math.min(i[1][o],this.clipBounds[1][o]);this._model=[].slice.call(r),this._view=[].slice.call(n),this._projection=[].slice.call(a),this._resolution=[e.drawingBufferWidth,e.drawingBufferHeight];var s={model:r,view:n,projection:a,clipBounds:i,vectorScale:this.vectorScale,coneScale:this.coneScale,coneOffset:this.coneOffset,pickId:this.pickId/255},l=this.pickShader;l.bind(),l.uniforms=s,this.triangleCount>0&&(this.triangleVAO.bind(),e.drawArrays(e.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind()),this.edgeCount>0&&(this.edgeVAO.bind(),e.lineWidth(this.lineWidth*this.pixelRatio),e.drawArrays(e.LINES,0,2*this.edgeCount),this.edgeVAO.unbind())},x.pick=function(t){if(!t)return null;if(t.id!==this.pickId)return null;var e=t.value[0]+256*t.value[1]+65536*t.value[2],r=this.cells[e],n=this.positions[r[1]].slice(0,3);return{index:Math.floor(r[1]/48),position:n,dataCoordinate:n}},x.dispose=function(){this.texture.dispose(),this.triShader.dispose(),this.pickShader.dispose(),this.triangleVAO.dispose(),this.trianglePositions.dispose(),this.triangleVectors.dispose(),this.triangleColors.dispose(),this.triangleUVs.dispose(),this.triangleNormals.dispose(),this.triangleIds.dispose(),this.edgeVAO.dispose(),this.edgePositions.dispose(),this.edgeColors.dispose(),this.edgeUVs.dispose(),this.edgeIds.dispose(),this.pointVAO.dispose(),this.pointPositions.dispose(),this.pointColors.dispose(),this.pointUVs.dispose(),this.pointSizes.dispose(),this.pointIds.dispose(),this.contourVAO.dispose(),this.contourPositions.dispose()},e.exports=function(t,e){1===arguments.length&&(t=(e=t).gl);var r=e.triShader||function(t){var e=n(t,g.vertex,g.fragment,null,g.attributes);return e.attributes.position.location=0,e.attributes.color.location=2,e.attributes.uv.location=3,e.attributes.vector.location=5,e}(t),s=b(t),l=o(t,u(new Uint8Array([255,255,255,255]),[1,1,4]));l.generateMipmap(),l.minFilter=t.LINEAR_MIPMAP_LINEAR,l.magFilter=t.LINEAR;var c=a(t),h=a(t),f=a(t),p=a(t),d=a(t),v=a(t),m=i(t,[{buffer:c,type:t.FLOAT,size:4},{buffer:v,type:t.UNSIGNED_BYTE,size:4,normalized:!0},{buffer:f,type:t.FLOAT,size:4},{buffer:p,type:t.FLOAT,size:2},{buffer:d,type:t.FLOAT,size:3},{buffer:h,type:t.FLOAT,size:3}]),x=a(t),_=a(t),w=a(t),k=a(t),T=i(t,[{buffer:x,type:t.FLOAT,size:3},{buffer:k,type:t.UNSIGNED_BYTE,size:4,normalized:!0},{buffer:_,type:t.FLOAT,size:4},{buffer:w,type:t.FLOAT,size:2}]),A=a(t),M=a(t),S=a(t),E=a(t),C=a(t),L=i(t,[{buffer:A,type:t.FLOAT,size:3},{buffer:C,type:t.UNSIGNED_BYTE,size:4,normalized:!0},{buffer:M,type:t.FLOAT,size:4},{buffer:S,type:t.FLOAT,size:2},{buffer:E,type:t.FLOAT,size:1}]),P=a(t),O=new y(t,l,r,s,c,h,v,f,p,d,m,x,k,_,w,T,A,C,M,S,E,L,P,i(t,[{buffer:P,type:t.FLOAT,size:3}]));return O.update(e),O}},{\"./shaders\":245,colormap:127,\"gl-buffer\":242,\"gl-mat4/invert\":266,\"gl-mat4/multiply\":268,\"gl-shader\":302,\"gl-texture2d\":323,\"gl-vao\":328,ndarray:451,normals:454,\"simplicial-complex-contour\":519,\"typedarray-pool\":546}],245:[function(t,e,r){var n=t(\"glslify\"),a=n([\"precision highp float;\\n\\nprecision highp float;\\n#define GLSLIFY 1\\n\\nvec3 getOrthogonalVector(vec3 v) {\\n  // Return up-vector for only-z vector.\\n  // Return ax + by + cz = 0, a point that lies on the plane that has v as a normal and that isn't (0,0,0).\\n  // From the above if-statement we have ||a|| > 0  U  ||b|| > 0.\\n  // Assign z = 0, x = -b, y = a:\\n  // a*-b + b*a + c*0 = -ba + ba + 0 = 0\\n  if (v.x*v.x > v.z*v.z || v.y*v.y > v.z*v.z) {\\n    return normalize(vec3(-v.y, v.x, 0.0));\\n  } else {\\n    return normalize(vec3(0.0, v.z, -v.y));\\n  }\\n}\\n\\n// Calculate the cone vertex and normal at the given index.\\n//\\n// The returned vertex is for a cone with its top at origin and height of 1.0,\\n// pointing in the direction of the vector attribute.\\n//\\n// Each cone is made up of a top vertex, a center base vertex and base perimeter vertices.\\n// These vertices are used to make up the triangles of the cone by the following:\\n//   segment + 0 top vertex\\n//   segment + 1 perimeter vertex a+1\\n//   segment + 2 perimeter vertex a\\n//   segment + 3 center base vertex\\n//   segment + 4 perimeter vertex a\\n//   segment + 5 perimeter vertex a+1\\n// Where segment is the number of the radial segment * 6 and a is the angle at that radial segment.\\n// To go from index to segment, floor(index / 6)\\n// To go from segment to angle, 2*pi * (segment/segmentCount)\\n// To go from index to segment index, index - (segment*6)\\n//\\nvec3 getConePosition(vec3 d, float rawIndex, float coneOffset, out vec3 normal) {\\n\\n  const float segmentCount = 8.0;\\n\\n  float index = rawIndex - floor(rawIndex /\\n    (segmentCount * 6.0)) *\\n    (segmentCount * 6.0);\\n\\n  float segment = floor(0.001 + index/6.0);\\n  float segmentIndex = index - (segment*6.0);\\n\\n  normal = -normalize(d);\\n\\n  if (segmentIndex > 2.99 && segmentIndex < 3.01) {\\n    return mix(vec3(0.0), -d, coneOffset);\\n  }\\n\\n  float nextAngle = (\\n    (segmentIndex > 0.99 &&  segmentIndex < 1.01) ||\\n    (segmentIndex > 4.99 &&  segmentIndex < 5.01)\\n  ) ? 1.0 : 0.0;\\n  float angle = 2.0 * 3.14159 * ((segment + nextAngle) / segmentCount);\\n\\n  vec3 v1 = mix(d, vec3(0.0), coneOffset);\\n  vec3 v2 = v1 - d;\\n\\n  vec3 u = getOrthogonalVector(d);\\n  vec3 v = normalize(cross(u, d));\\n\\n  vec3 x = u * cos(angle) * length(d)*0.25;\\n  vec3 y = v * sin(angle) * length(d)*0.25;\\n  vec3 v3 = v2 + x + y;\\n  if (segmentIndex < 3.0) {\\n    vec3 tx = u * sin(angle);\\n    vec3 ty = v * -cos(angle);\\n    vec3 tangent = tx + ty;\\n    normal = normalize(cross(v3 - v1, tangent));\\n  }\\n\\n  if (segmentIndex == 0.0) {\\n    return mix(d, vec3(0.0), coneOffset);\\n  }\\n  return v3;\\n}\\n\\nattribute vec3 vector;\\nattribute vec4 color, position;\\nattribute vec2 uv;\\nuniform float vectorScale;\\nuniform float coneScale;\\n\\nuniform float coneOffset;\\n\\nuniform mat4 model\\n           , view\\n           , projection\\n           , inverseModel;\\nuniform vec3 eyePosition\\n           , lightPosition;\\n\\nvarying vec3 f_normal\\n           , f_lightDirection\\n           , f_eyeDirection\\n           , f_data\\n           , f_position;\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n  // Scale the vector magnitude to stay constant with\\n  // model & view changes.\\n  vec3 normal;\\n  vec3 XYZ = getConePosition(mat3(model) * ((vectorScale * coneScale) * vector), position.w, coneOffset, normal);\\n  vec4 conePosition = model * vec4(position.xyz, 1.0) + vec4(XYZ, 0.0);\\n\\n  //Lighting geometry parameters\\n  vec4 cameraCoordinate = view * conePosition;\\n  cameraCoordinate.xyz /= cameraCoordinate.w;\\n  f_lightDirection = lightPosition - cameraCoordinate.xyz;\\n  f_eyeDirection   = eyePosition - cameraCoordinate.xyz;\\n  f_normal = normalize((vec4(normal,0.0) * inverseModel).xyz);\\n\\n  // vec4 m_position  = model * vec4(conePosition, 1.0);\\n  vec4 t_position  = view * conePosition;\\n  gl_Position      = projection * t_position;\\n\\n  f_color          = color;\\n  f_data           = conePosition.xyz;\\n  f_position       = position.xyz;\\n  f_uv             = uv;\\n}\\n\"]),i=n([\"#extension GL_OES_standard_derivatives : enable\\n\\nprecision highp float;\\n#define GLSLIFY 1\\n\\nfloat beckmannDistribution(float x, float roughness) {\\n  float NdotH = max(x, 0.0001);\\n  float cos2Alpha = NdotH * NdotH;\\n  float tan2Alpha = (cos2Alpha - 1.0) / cos2Alpha;\\n  float roughness2 = roughness * roughness;\\n  float denom = 3.141592653589793 * roughness2 * cos2Alpha * cos2Alpha;\\n  return exp(tan2Alpha / roughness2) / denom;\\n}\\n\\nfloat cookTorranceSpecular(\\n  vec3 lightDirection,\\n  vec3 viewDirection,\\n  vec3 surfaceNormal,\\n  float roughness,\\n  float fresnel) {\\n\\n  float VdotN = max(dot(viewDirection, surfaceNormal), 0.0);\\n  float LdotN = max(dot(lightDirection, surfaceNormal), 0.0);\\n\\n  //Half angle vector\\n  vec3 H = normalize(lightDirection + viewDirection);\\n\\n  //Geometric term\\n  float NdotH = max(dot(surfaceNormal, H), 0.0);\\n  float VdotH = max(dot(viewDirection, H), 0.000001);\\n  float LdotH = max(dot(lightDirection, H), 0.000001);\\n  float G1 = (2.0 * NdotH * VdotN) / VdotH;\\n  float G2 = (2.0 * NdotH * LdotN) / LdotH;\\n  float G = min(1.0, min(G1, G2));\\n  \\n  //Distribution term\\n  float D = beckmannDistribution(NdotH, roughness);\\n\\n  //Fresnel term\\n  float F = pow(1.0 - VdotN, fresnel);\\n\\n  //Multiply terms and done\\n  return  G * F * D / max(3.14159265 * VdotN, 0.000001);\\n}\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 clipBounds[2];\\nuniform float roughness\\n            , fresnel\\n            , kambient\\n            , kdiffuse\\n            , kspecular\\n            , opacity;\\nuniform sampler2D texture;\\n\\nvarying vec3 f_normal\\n           , f_lightDirection\\n           , f_eyeDirection\\n           , f_data\\n           , f_position;\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\\n  vec3 N = normalize(f_normal);\\n  vec3 L = normalize(f_lightDirection);\\n  vec3 V = normalize(f_eyeDirection);\\n\\n  if(gl_FrontFacing) {\\n    N = -N;\\n  }\\n\\n  float specular = min(1.0, max(0.0, cookTorranceSpecular(L, V, N, roughness, fresnel)));\\n  float diffuse  = min(kambient + kdiffuse * max(dot(N, L), 0.0), 1.0);\\n\\n  vec4 surfaceColor = f_color * texture2D(texture, f_uv);\\n  vec4 litColor = surfaceColor.a * vec4(diffuse * surfaceColor.rgb + kspecular * vec3(1,1,1) * specular,  1.0);\\n\\n  gl_FragColor = litColor * opacity;\\n}\\n\"]),o=n([\"precision highp float;\\n\\nprecision highp float;\\n#define GLSLIFY 1\\n\\nvec3 getOrthogonalVector(vec3 v) {\\n  // Return up-vector for only-z vector.\\n  // Return ax + by + cz = 0, a point that lies on the plane that has v as a normal and that isn't (0,0,0).\\n  // From the above if-statement we have ||a|| > 0  U  ||b|| > 0.\\n  // Assign z = 0, x = -b, y = a:\\n  // a*-b + b*a + c*0 = -ba + ba + 0 = 0\\n  if (v.x*v.x > v.z*v.z || v.y*v.y > v.z*v.z) {\\n    return normalize(vec3(-v.y, v.x, 0.0));\\n  } else {\\n    return normalize(vec3(0.0, v.z, -v.y));\\n  }\\n}\\n\\n// Calculate the cone vertex and normal at the given index.\\n//\\n// The returned vertex is for a cone with its top at origin and height of 1.0,\\n// pointing in the direction of the vector attribute.\\n//\\n// Each cone is made up of a top vertex, a center base vertex and base perimeter vertices.\\n// These vertices are used to make up the triangles of the cone by the following:\\n//   segment + 0 top vertex\\n//   segment + 1 perimeter vertex a+1\\n//   segment + 2 perimeter vertex a\\n//   segment + 3 center base vertex\\n//   segment + 4 perimeter vertex a\\n//   segment + 5 perimeter vertex a+1\\n// Where segment is the number of the radial segment * 6 and a is the angle at that radial segment.\\n// To go from index to segment, floor(index / 6)\\n// To go from segment to angle, 2*pi * (segment/segmentCount)\\n// To go from index to segment index, index - (segment*6)\\n//\\nvec3 getConePosition(vec3 d, float rawIndex, float coneOffset, out vec3 normal) {\\n\\n  const float segmentCount = 8.0;\\n\\n  float index = rawIndex - floor(rawIndex /\\n    (segmentCount * 6.0)) *\\n    (segmentCount * 6.0);\\n\\n  float segment = floor(0.001 + index/6.0);\\n  float segmentIndex = index - (segment*6.0);\\n\\n  normal = -normalize(d);\\n\\n  if (segmentIndex > 2.99 && segmentIndex < 3.01) {\\n    return mix(vec3(0.0), -d, coneOffset);\\n  }\\n\\n  float nextAngle = (\\n    (segmentIndex > 0.99 &&  segmentIndex < 1.01) ||\\n    (segmentIndex > 4.99 &&  segmentIndex < 5.01)\\n  ) ? 1.0 : 0.0;\\n  float angle = 2.0 * 3.14159 * ((segment + nextAngle) / segmentCount);\\n\\n  vec3 v1 = mix(d, vec3(0.0), coneOffset);\\n  vec3 v2 = v1 - d;\\n\\n  vec3 u = getOrthogonalVector(d);\\n  vec3 v = normalize(cross(u, d));\\n\\n  vec3 x = u * cos(angle) * length(d)*0.25;\\n  vec3 y = v * sin(angle) * length(d)*0.25;\\n  vec3 v3 = v2 + x + y;\\n  if (segmentIndex < 3.0) {\\n    vec3 tx = u * sin(angle);\\n    vec3 ty = v * -cos(angle);\\n    vec3 tangent = tx + ty;\\n    normal = normalize(cross(v3 - v1, tangent));\\n  }\\n\\n  if (segmentIndex == 0.0) {\\n    return mix(d, vec3(0.0), coneOffset);\\n  }\\n  return v3;\\n}\\n\\nattribute vec3 vector;\\nattribute vec4 position;\\nattribute vec4 id;\\n\\nuniform mat4 model, view, projection;\\n\\nuniform float vectorScale;\\nuniform float coneScale;\\nuniform float coneOffset;\\n\\nvarying vec3 f_position;\\nvarying vec4 f_id;\\n\\nvoid main() {\\n  vec3 normal;\\n  vec3 XYZ = getConePosition(mat3(model) * ((vectorScale * coneScale) * vector), position.w, coneOffset, normal);\\n  vec4 conePosition = model * vec4(position.xyz, 1.0) + vec4(XYZ, 0.0);\\n  gl_Position = projection * view * conePosition;\\n  f_id        = id;\\n  f_position  = position.xyz;\\n}\\n\"]),s=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3  clipBounds[2];\\nuniform float pickId;\\n\\nvarying vec3 f_position;\\nvarying vec4 f_id;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\\n\\n  gl_FragColor = vec4(pickId, f_id.xyz);\\n}\"]);r.meshShader={vertex:a,fragment:i,attributes:[{name:\"position\",type:\"vec4\"},{name:\"normal\",type:\"vec3\"},{name:\"color\",type:\"vec4\"},{name:\"uv\",type:\"vec2\"},{name:\"vector\",type:\"vec3\"}]},r.pickShader={vertex:o,fragment:s,attributes:[{name:\"position\",type:\"vec4\"},{name:\"id\",type:\"vec4\"},{name:\"vector\",type:\"vec3\"}]}},{glslify:410}],246:[function(t,e,r){e.exports={0:\"NONE\",1:\"ONE\",2:\"LINE_LOOP\",3:\"LINE_STRIP\",4:\"TRIANGLES\",5:\"TRIANGLE_STRIP\",6:\"TRIANGLE_FAN\",256:\"DEPTH_BUFFER_BIT\",512:\"NEVER\",513:\"LESS\",514:\"EQUAL\",515:\"LEQUAL\",516:\"GREATER\",517:\"NOTEQUAL\",518:\"GEQUAL\",519:\"ALWAYS\",768:\"SRC_COLOR\",769:\"ONE_MINUS_SRC_COLOR\",770:\"SRC_ALPHA\",771:\"ONE_MINUS_SRC_ALPHA\",772:\"DST_ALPHA\",773:\"ONE_MINUS_DST_ALPHA\",774:\"DST_COLOR\",775:\"ONE_MINUS_DST_COLOR\",776:\"SRC_ALPHA_SATURATE\",1024:\"STENCIL_BUFFER_BIT\",1028:\"FRONT\",1029:\"BACK\",1032:\"FRONT_AND_BACK\",1280:\"INVALID_ENUM\",1281:\"INVALID_VALUE\",1282:\"INVALID_OPERATION\",1285:\"OUT_OF_MEMORY\",1286:\"INVALID_FRAMEBUFFER_OPERATION\",2304:\"CW\",2305:\"CCW\",2849:\"LINE_WIDTH\",2884:\"CULL_FACE\",2885:\"CULL_FACE_MODE\",2886:\"FRONT_FACE\",2928:\"DEPTH_RANGE\",2929:\"DEPTH_TEST\",2930:\"DEPTH_WRITEMASK\",2931:\"DEPTH_CLEAR_VALUE\",2932:\"DEPTH_FUNC\",2960:\"STENCIL_TEST\",2961:\"STENCIL_CLEAR_VALUE\",2962:\"STENCIL_FUNC\",2963:\"STENCIL_VALUE_MASK\",2964:\"STENCIL_FAIL\",2965:\"STENCIL_PASS_DEPTH_FAIL\",2966:\"STENCIL_PASS_DEPTH_PASS\",2967:\"STENCIL_REF\",2968:\"STENCIL_WRITEMASK\",2978:\"VIEWPORT\",3024:\"DITHER\",3042:\"BLEND\",3088:\"SCISSOR_BOX\",3089:\"SCISSOR_TEST\",3106:\"COLOR_CLEAR_VALUE\",3107:\"COLOR_WRITEMASK\",3317:\"UNPACK_ALIGNMENT\",3333:\"PACK_ALIGNMENT\",3379:\"MAX_TEXTURE_SIZE\",3386:\"MAX_VIEWPORT_DIMS\",3408:\"SUBPIXEL_BITS\",3410:\"RED_BITS\",3411:\"GREEN_BITS\",3412:\"BLUE_BITS\",3413:\"ALPHA_BITS\",3414:\"DEPTH_BITS\",3415:\"STENCIL_BITS\",3553:\"TEXTURE_2D\",4352:\"DONT_CARE\",4353:\"FASTEST\",4354:\"NICEST\",5120:\"BYTE\",5121:\"UNSIGNED_BYTE\",5122:\"SHORT\",5123:\"UNSIGNED_SHORT\",5124:\"INT\",5125:\"UNSIGNED_INT\",5126:\"FLOAT\",5386:\"INVERT\",5890:\"TEXTURE\",6401:\"STENCIL_INDEX\",6402:\"DEPTH_COMPONENT\",6406:\"ALPHA\",6407:\"RGB\",6408:\"RGBA\",6409:\"LUMINANCE\",6410:\"LUMINANCE_ALPHA\",7680:\"KEEP\",7681:\"REPLACE\",7682:\"INCR\",7683:\"DECR\",7936:\"VENDOR\",7937:\"RENDERER\",7938:\"VERSION\",9728:\"NEAREST\",9729:\"LINEAR\",9984:\"NEAREST_MIPMAP_NEAREST\",9985:\"LINEAR_MIPMAP_NEAREST\",9986:\"NEAREST_MIPMAP_LINEAR\",9987:\"LINEAR_MIPMAP_LINEAR\",10240:\"TEXTURE_MAG_FILTER\",10241:\"TEXTURE_MIN_FILTER\",10242:\"TEXTURE_WRAP_S\",10243:\"TEXTURE_WRAP_T\",10497:\"REPEAT\",10752:\"POLYGON_OFFSET_UNITS\",16384:\"COLOR_BUFFER_BIT\",32769:\"CONSTANT_COLOR\",32770:\"ONE_MINUS_CONSTANT_COLOR\",32771:\"CONSTANT_ALPHA\",32772:\"ONE_MINUS_CONSTANT_ALPHA\",32773:\"BLEND_COLOR\",32774:\"FUNC_ADD\",32777:\"BLEND_EQUATION_RGB\",32778:\"FUNC_SUBTRACT\",32779:\"FUNC_REVERSE_SUBTRACT\",32819:\"UNSIGNED_SHORT_4_4_4_4\",32820:\"UNSIGNED_SHORT_5_5_5_1\",32823:\"POLYGON_OFFSET_FILL\",32824:\"POLYGON_OFFSET_FACTOR\",32854:\"RGBA4\",32855:\"RGB5_A1\",32873:\"TEXTURE_BINDING_2D\",32926:\"SAMPLE_ALPHA_TO_COVERAGE\",32928:\"SAMPLE_COVERAGE\",32936:\"SAMPLE_BUFFERS\",32937:\"SAMPLES\",32938:\"SAMPLE_COVERAGE_VALUE\",32939:\"SAMPLE_COVERAGE_INVERT\",32968:\"BLEND_DST_RGB\",32969:\"BLEND_SRC_RGB\",32970:\"BLEND_DST_ALPHA\",32971:\"BLEND_SRC_ALPHA\",33071:\"CLAMP_TO_EDGE\",33170:\"GENERATE_MIPMAP_HINT\",33189:\"DEPTH_COMPONENT16\",33306:\"DEPTH_STENCIL_ATTACHMENT\",33635:\"UNSIGNED_SHORT_5_6_5\",33648:\"MIRRORED_REPEAT\",33901:\"ALIASED_POINT_SIZE_RANGE\",33902:\"ALIASED_LINE_WIDTH_RANGE\",33984:\"TEXTURE0\",33985:\"TEXTURE1\",33986:\"TEXTURE2\",33987:\"TEXTURE3\",33988:\"TEXTURE4\",33989:\"TEXTURE5\",33990:\"TEXTURE6\",33991:\"TEXTURE7\",33992:\"TEXTURE8\",33993:\"TEXTURE9\",33994:\"TEXTURE10\",33995:\"TEXTURE11\",33996:\"TEXTURE12\",33997:\"TEXTURE13\",33998:\"TEXTURE14\",33999:\"TEXTURE15\",34000:\"TEXTURE16\",34001:\"TEXTURE17\",34002:\"TEXTURE18\",34003:\"TEXTURE19\",34004:\"TEXTURE20\",34005:\"TEXTURE21\",34006:\"TEXTURE22\",34007:\"TEXTURE23\",34008:\"TEXTURE24\",34009:\"TEXTURE25\",34010:\"TEXTURE26\",34011:\"TEXTURE27\",34012:\"TEXTURE28\",34013:\"TEXTURE29\",34014:\"TEXTURE30\",34015:\"TEXTURE31\",34016:\"ACTIVE_TEXTURE\",34024:\"MAX_RENDERBUFFER_SIZE\",34041:\"DEPTH_STENCIL\",34055:\"INCR_WRAP\",34056:\"DECR_WRAP\",34067:\"TEXTURE_CUBE_MAP\",34068:\"TEXTURE_BINDING_CUBE_MAP\",34069:\"TEXTURE_CUBE_MAP_POSITIVE_X\",34070:\"TEXTURE_CUBE_MAP_NEGATIVE_X\",34071:\"TEXTURE_CUBE_MAP_POSITIVE_Y\",34072:\"TEXTURE_CUBE_MAP_NEGATIVE_Y\",34073:\"TEXTURE_CUBE_MAP_POSITIVE_Z\",34074:\"TEXTURE_CUBE_MAP_NEGATIVE_Z\",34076:\"MAX_CUBE_MAP_TEXTURE_SIZE\",34338:\"VERTEX_ATTRIB_ARRAY_ENABLED\",34339:\"VERTEX_ATTRIB_ARRAY_SIZE\",34340:\"VERTEX_ATTRIB_ARRAY_STRIDE\",34341:\"VERTEX_ATTRIB_ARRAY_TYPE\",34342:\"CURRENT_VERTEX_ATTRIB\",34373:\"VERTEX_ATTRIB_ARRAY_POINTER\",34466:\"NUM_COMPRESSED_TEXTURE_FORMATS\",34467:\"COMPRESSED_TEXTURE_FORMATS\",34660:\"BUFFER_SIZE\",34661:\"BUFFER_USAGE\",34816:\"STENCIL_BACK_FUNC\",34817:\"STENCIL_BACK_FAIL\",34818:\"STENCIL_BACK_PASS_DEPTH_FAIL\",34819:\"STENCIL_BACK_PASS_DEPTH_PASS\",34877:\"BLEND_EQUATION_ALPHA\",34921:\"MAX_VERTEX_ATTRIBS\",34922:\"VERTEX_ATTRIB_ARRAY_NORMALIZED\",34930:\"MAX_TEXTURE_IMAGE_UNITS\",34962:\"ARRAY_BUFFER\",34963:\"ELEMENT_ARRAY_BUFFER\",34964:\"ARRAY_BUFFER_BINDING\",34965:\"ELEMENT_ARRAY_BUFFER_BINDING\",34975:\"VERTEX_ATTRIB_ARRAY_BUFFER_BINDING\",35040:\"STREAM_DRAW\",35044:\"STATIC_DRAW\",35048:\"DYNAMIC_DRAW\",35632:\"FRAGMENT_SHADER\",35633:\"VERTEX_SHADER\",35660:\"MAX_VERTEX_TEXTURE_IMAGE_UNITS\",35661:\"MAX_COMBINED_TEXTURE_IMAGE_UNITS\",35663:\"SHADER_TYPE\",35664:\"FLOAT_VEC2\",35665:\"FLOAT_VEC3\",35666:\"FLOAT_VEC4\",35667:\"INT_VEC2\",35668:\"INT_VEC3\",35669:\"INT_VEC4\",35670:\"BOOL\",35671:\"BOOL_VEC2\",35672:\"BOOL_VEC3\",35673:\"BOOL_VEC4\",35674:\"FLOAT_MAT2\",35675:\"FLOAT_MAT3\",35676:\"FLOAT_MAT4\",35678:\"SAMPLER_2D\",35680:\"SAMPLER_CUBE\",35712:\"DELETE_STATUS\",35713:\"COMPILE_STATUS\",35714:\"LINK_STATUS\",35715:\"VALIDATE_STATUS\",35716:\"INFO_LOG_LENGTH\",35717:\"ATTACHED_SHADERS\",35718:\"ACTIVE_UNIFORMS\",35719:\"ACTIVE_UNIFORM_MAX_LENGTH\",35720:\"SHADER_SOURCE_LENGTH\",35721:\"ACTIVE_ATTRIBUTES\",35722:\"ACTIVE_ATTRIBUTE_MAX_LENGTH\",35724:\"SHADING_LANGUAGE_VERSION\",35725:\"CURRENT_PROGRAM\",36003:\"STENCIL_BACK_REF\",36004:\"STENCIL_BACK_VALUE_MASK\",36005:\"STENCIL_BACK_WRITEMASK\",36006:\"FRAMEBUFFER_BINDING\",36007:\"RENDERBUFFER_BINDING\",36048:\"FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE\",36049:\"FRAMEBUFFER_ATTACHMENT_OBJECT_NAME\",36050:\"FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL\",36051:\"FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE\",36053:\"FRAMEBUFFER_COMPLETE\",36054:\"FRAMEBUFFER_INCOMPLETE_ATTACHMENT\",36055:\"FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT\",36057:\"FRAMEBUFFER_INCOMPLETE_DIMENSIONS\",36061:\"FRAMEBUFFER_UNSUPPORTED\",36064:\"COLOR_ATTACHMENT0\",36096:\"DEPTH_ATTACHMENT\",36128:\"STENCIL_ATTACHMENT\",36160:\"FRAMEBUFFER\",36161:\"RENDERBUFFER\",36162:\"RENDERBUFFER_WIDTH\",36163:\"RENDERBUFFER_HEIGHT\",36164:\"RENDERBUFFER_INTERNAL_FORMAT\",36168:\"STENCIL_INDEX8\",36176:\"RENDERBUFFER_RED_SIZE\",36177:\"RENDERBUFFER_GREEN_SIZE\",36178:\"RENDERBUFFER_BLUE_SIZE\",36179:\"RENDERBUFFER_ALPHA_SIZE\",36180:\"RENDERBUFFER_DEPTH_SIZE\",36181:\"RENDERBUFFER_STENCIL_SIZE\",36194:\"RGB565\",36336:\"LOW_FLOAT\",36337:\"MEDIUM_FLOAT\",36338:\"HIGH_FLOAT\",36339:\"LOW_INT\",36340:\"MEDIUM_INT\",36341:\"HIGH_INT\",36346:\"SHADER_COMPILER\",36347:\"MAX_VERTEX_UNIFORM_VECTORS\",36348:\"MAX_VARYING_VECTORS\",36349:\"MAX_FRAGMENT_UNIFORM_VECTORS\",37440:\"UNPACK_FLIP_Y_WEBGL\",37441:\"UNPACK_PREMULTIPLY_ALPHA_WEBGL\",37442:\"CONTEXT_LOST_WEBGL\",37443:\"UNPACK_COLORSPACE_CONVERSION_WEBGL\",37444:\"BROWSER_DEFAULT_WEBGL\"}},{}],247:[function(t,e,r){var n=t(\"./1.0/numbers\");e.exports=function(t){return n[t]}},{\"./1.0/numbers\":246}],248:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.gl,r=n(e),o=a(e,[{buffer:r,type:e.FLOAT,size:3,offset:0,stride:40},{buffer:r,type:e.FLOAT,size:4,offset:12,stride:40},{buffer:r,type:e.FLOAT,size:3,offset:28,stride:40}]),l=i(e);l.attributes.position.location=0,l.attributes.color.location=1,l.attributes.offset.location=2;var c=new s(e,r,o,l);return c.update(t),c};var n=t(\"gl-buffer\"),a=t(\"gl-vao\"),i=t(\"./shaders/index\"),o=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function s(t,e,r,n){this.gl=t,this.shader=n,this.buffer=e,this.vao=r,this.pixelRatio=1,this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.lineWidth=[1,1,1],this.capSize=[10,10,10],this.lineCount=[0,0,0],this.lineOffset=[0,0,0],this.opacity=1,this.hasAlpha=!1}var l=s.prototype;function c(t,e){for(var r=0;r<3;++r)t[0][r]=Math.min(t[0][r],e[r]),t[1][r]=Math.max(t[1][r],e[r])}l.isOpaque=function(){return!this.hasAlpha},l.isTransparent=function(){return this.hasAlpha},l.drawTransparent=l.draw=function(t){var e=this.gl,r=this.shader.uniforms;this.shader.bind();var n=r.view=t.view||o,a=r.projection=t.projection||o;r.model=t.model||o,r.clipBounds=this.clipBounds,r.opacity=this.opacity;var i=n[12],s=n[13],l=n[14],c=n[15],u=(t._ortho||!1?2:1)*this.pixelRatio*(a[3]*i+a[7]*s+a[11]*l+a[15]*c)/e.drawingBufferHeight;this.vao.bind();for(var h=0;h<3;++h)e.lineWidth(this.lineWidth[h]*this.pixelRatio),r.capSize=this.capSize[h]*u,this.lineCount[h]&&e.drawArrays(e.LINES,this.lineOffset[h],this.lineCount[h]);this.vao.unbind()};var u=function(){for(var t=new Array(3),e=0;e<3;++e){for(var r=[],n=1;n<=2;++n)for(var a=-1;a<=1;a+=2){var i=[0,0,0];i[(n+e)%3]=a,r.push(i)}t[e]=r}return t}();function h(t,e,r,n){for(var a=u[n],i=0;i<a.length;++i){var o=a[i];t.push(e[0],e[1],e[2],r[0],r[1],r[2],r[3],o[0],o[1],o[2])}return a.length}l.update=function(t){\"lineWidth\"in(t=t||{})&&(this.lineWidth=t.lineWidth,Array.isArray(this.lineWidth)||(this.lineWidth=[this.lineWidth,this.lineWidth,this.lineWidth])),\"capSize\"in t&&(this.capSize=t.capSize,Array.isArray(this.capSize)||(this.capSize=[this.capSize,this.capSize,this.capSize])),this.hasAlpha=!1,\"opacity\"in t&&(this.opacity=+t.opacity,this.opacity<1&&(this.hasAlpha=!0));var e=t.color||[[0,0,0],[0,0,0],[0,0,0]],r=t.position,n=t.error;if(Array.isArray(e[0])||(e=[e,e,e]),r&&n){var a=[],i=r.length,o=0;this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.lineCount=[0,0,0];for(var s=0;s<3;++s){this.lineOffset[s]=o;t:for(var l=0;l<i;++l){for(var u=r[l],f=0;f<3;++f)if(isNaN(u[f])||!isFinite(u[f]))continue t;var p=n[l],d=e[s];if(Array.isArray(d[0])&&(d=e[l]),3===d.length?d=[d[0],d[1],d[2],1]:4===d.length&&(d=[d[0],d[1],d[2],d[3]],!this.hasAlpha&&d[3]<1&&(this.hasAlpha=!0)),!isNaN(p[0][s])&&!isNaN(p[1][s])){var g;if(p[0][s]<0)(g=u.slice())[s]+=p[0][s],a.push(u[0],u[1],u[2],d[0],d[1],d[2],d[3],0,0,0,g[0],g[1],g[2],d[0],d[1],d[2],d[3],0,0,0),c(this.bounds,g),o+=2+h(a,g,d,s);if(p[1][s]>0)(g=u.slice())[s]+=p[1][s],a.push(u[0],u[1],u[2],d[0],d[1],d[2],d[3],0,0,0,g[0],g[1],g[2],d[0],d[1],d[2],d[3],0,0,0),c(this.bounds,g),o+=2+h(a,g,d,s)}}this.lineCount[s]=o-this.lineOffset[s]}this.buffer.update(a)}},l.dispose=function(){this.shader.dispose(),this.buffer.dispose(),this.vao.dispose()}},{\"./shaders/index\":249,\"gl-buffer\":242,\"gl-vao\":328}],249:[function(t,e,r){\"use strict\";var n=t(\"glslify\"),a=t(\"gl-shader\"),i=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position, offset;\\nattribute vec4 color;\\nuniform mat4 model, view, projection;\\nuniform float capSize;\\nvarying vec4 fragColor;\\nvarying vec3 fragPosition;\\n\\nvoid main() {\\n  vec4 worldPosition  = model * vec4(position, 1.0);\\n  worldPosition       = (worldPosition / worldPosition.w) + vec4(capSize * offset, 0.0);\\n  gl_Position         = projection * view * worldPosition;\\n  fragColor           = color;\\n  fragPosition        = position;\\n}\"]),o=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 clipBounds[2];\\nuniform float opacity;\\nvarying vec3 fragPosition;\\nvarying vec4 fragColor;\\n\\nvoid main() {\\n  if (\\n    outOfRange(clipBounds[0], clipBounds[1], fragPosition) ||\\n    fragColor.a * opacity == 0.\\n  ) discard;\\n\\n  gl_FragColor = opacity * fragColor;\\n}\"]);e.exports=function(t){return a(t,i,o,null,[{name:\"position\",type:\"vec3\"},{name:\"color\",type:\"vec4\"},{name:\"offset\",type:\"vec3\"}])}},{\"gl-shader\":302,glslify:410}],250:[function(t,e,r){\"use strict\";var n=t(\"gl-texture2d\");e.exports=function(t,e,r,n){a||(a=t.FRAMEBUFFER_UNSUPPORTED,i=t.FRAMEBUFFER_INCOMPLETE_ATTACHMENT,o=t.FRAMEBUFFER_INCOMPLETE_DIMENSIONS,s=t.FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT);var c=t.getExtension(\"WEBGL_draw_buffers\");!l&&c&&function(t,e){var r=t.getParameter(e.MAX_COLOR_ATTACHMENTS_WEBGL);l=new Array(r+1);for(var n=0;n<=r;++n){for(var a=new Array(r),i=0;i<n;++i)a[i]=t.COLOR_ATTACHMENT0+i;for(var i=n;i<r;++i)a[i]=t.NONE;l[n]=a}}(t,c);Array.isArray(e)&&(n=r,r=0|e[1],e=0|e[0]);if(\"number\"!=typeof e)throw new Error(\"gl-fbo: Missing shape parameter\");var u=t.getParameter(t.MAX_RENDERBUFFER_SIZE);if(e<0||e>u||r<0||r>u)throw new Error(\"gl-fbo: Parameters are too large for FBO\");var h=1;if(\"color\"in(n=n||{})){if((h=Math.max(0|n.color,0))<0)throw new Error(\"gl-fbo: Must specify a nonnegative number of colors\");if(h>1){if(!c)throw new Error(\"gl-fbo: Multiple draw buffer extension not supported\");if(h>t.getParameter(c.MAX_COLOR_ATTACHMENTS_WEBGL))throw new Error(\"gl-fbo: Context does not support \"+h+\" draw buffers\")}}var f=t.UNSIGNED_BYTE,p=t.getExtension(\"OES_texture_float\");if(n.float&&h>0){if(!p)throw new Error(\"gl-fbo: Context does not support floating point textures\");f=t.FLOAT}else n.preferFloat&&h>0&&p&&(f=t.FLOAT);var g=!0;\"depth\"in n&&(g=!!n.depth);var v=!1;\"stencil\"in n&&(v=!!n.stencil);return new d(t,e,r,f,h,g,v,c)};var a,i,o,s,l=null;function c(t){return[t.getParameter(t.FRAMEBUFFER_BINDING),t.getParameter(t.RENDERBUFFER_BINDING),t.getParameter(t.TEXTURE_BINDING_2D)]}function u(t,e){t.bindFramebuffer(t.FRAMEBUFFER,e[0]),t.bindRenderbuffer(t.RENDERBUFFER,e[1]),t.bindTexture(t.TEXTURE_2D,e[2])}function h(t){switch(t){case a:throw new Error(\"gl-fbo: Framebuffer unsupported\");case i:throw new Error(\"gl-fbo: Framebuffer incomplete attachment\");case o:throw new Error(\"gl-fbo: Framebuffer incomplete dimensions\");case s:throw new Error(\"gl-fbo: Framebuffer incomplete missing attachment\");default:throw new Error(\"gl-fbo: Framebuffer failed for unspecified reason\")}}function f(t,e,r,a,i,o){if(!a)return null;var s=n(t,e,r,i,a);return s.magFilter=t.NEAREST,s.minFilter=t.NEAREST,s.mipSamples=1,s.bind(),t.framebufferTexture2D(t.FRAMEBUFFER,o,t.TEXTURE_2D,s.handle,0),s}function p(t,e,r,n,a){var i=t.createRenderbuffer();return t.bindRenderbuffer(t.RENDERBUFFER,i),t.renderbufferStorage(t.RENDERBUFFER,n,e,r),t.framebufferRenderbuffer(t.FRAMEBUFFER,a,t.RENDERBUFFER,i),i}function d(t,e,r,n,a,i,o,s){this.gl=t,this._shape=[0|e,0|r],this._destroyed=!1,this._ext=s,this.color=new Array(a);for(var d=0;d<a;++d)this.color[d]=null;this._color_rb=null,this.depth=null,this._depth_rb=null,this._colorType=n,this._useDepth=i,this._useStencil=o;var g=this,v=[0|e,0|r];Object.defineProperties(v,{0:{get:function(){return g._shape[0]},set:function(t){return g.width=t}},1:{get:function(){return g._shape[1]},set:function(t){return g.height=t}}}),this._shapeVector=v,function(t){var e=c(t.gl),r=t.gl,n=t.handle=r.createFramebuffer(),a=t._shape[0],i=t._shape[1],o=t.color.length,s=t._ext,d=t._useStencil,g=t._useDepth,v=t._colorType;r.bindFramebuffer(r.FRAMEBUFFER,n);for(var m=0;m<o;++m)t.color[m]=f(r,a,i,v,r.RGBA,r.COLOR_ATTACHMENT0+m);0===o?(t._color_rb=p(r,a,i,r.RGBA4,r.COLOR_ATTACHMENT0),s&&s.drawBuffersWEBGL(l[0])):o>1&&s.drawBuffersWEBGL(l[o]);var y=r.getExtension(\"WEBGL_depth_texture\");y?d?t.depth=f(r,a,i,y.UNSIGNED_INT_24_8_WEBGL,r.DEPTH_STENCIL,r.DEPTH_STENCIL_ATTACHMENT):g&&(t.depth=f(r,a,i,r.UNSIGNED_SHORT,r.DEPTH_COMPONENT,r.DEPTH_ATTACHMENT)):g&&d?t._depth_rb=p(r,a,i,r.DEPTH_STENCIL,r.DEPTH_STENCIL_ATTACHMENT):g?t._depth_rb=p(r,a,i,r.DEPTH_COMPONENT16,r.DEPTH_ATTACHMENT):d&&(t._depth_rb=p(r,a,i,r.STENCIL_INDEX,r.STENCIL_ATTACHMENT));var x=r.checkFramebufferStatus(r.FRAMEBUFFER);if(x!==r.FRAMEBUFFER_COMPLETE){for(t._destroyed=!0,r.bindFramebuffer(r.FRAMEBUFFER,null),r.deleteFramebuffer(t.handle),t.handle=null,t.depth&&(t.depth.dispose(),t.depth=null),t._depth_rb&&(r.deleteRenderbuffer(t._depth_rb),t._depth_rb=null),m=0;m<t.color.length;++m)t.color[m].dispose(),t.color[m]=null;t._color_rb&&(r.deleteRenderbuffer(t._color_rb),t._color_rb=null),u(r,e),h(x)}u(r,e)}(this)}var g=d.prototype;function v(t,e,r){if(t._destroyed)throw new Error(\"gl-fbo: Can't resize destroyed FBO\");if(t._shape[0]!==e||t._shape[1]!==r){var n=t.gl,a=n.getParameter(n.MAX_RENDERBUFFER_SIZE);if(e<0||e>a||r<0||r>a)throw new Error(\"gl-fbo: Can't resize FBO, invalid dimensions\");t._shape[0]=e,t._shape[1]=r;for(var i=c(n),o=0;o<t.color.length;++o)t.color[o].shape=t._shape;t._color_rb&&(n.bindRenderbuffer(n.RENDERBUFFER,t._color_rb),n.renderbufferStorage(n.RENDERBUFFER,n.RGBA4,t._shape[0],t._shape[1])),t.depth&&(t.depth.shape=t._shape),t._depth_rb&&(n.bindRenderbuffer(n.RENDERBUFFER,t._depth_rb),t._useDepth&&t._useStencil?n.renderbufferStorage(n.RENDERBUFFER,n.DEPTH_STENCIL,t._shape[0],t._shape[1]):t._useDepth?n.renderbufferStorage(n.RENDERBUFFER,n.DEPTH_COMPONENT16,t._shape[0],t._shape[1]):t._useStencil&&n.renderbufferStorage(n.RENDERBUFFER,n.STENCIL_INDEX,t._shape[0],t._shape[1])),n.bindFramebuffer(n.FRAMEBUFFER,t.handle);var s=n.checkFramebufferStatus(n.FRAMEBUFFER);s!==n.FRAMEBUFFER_COMPLETE&&(t.dispose(),u(n,i),h(s)),u(n,i)}}Object.defineProperties(g,{shape:{get:function(){return this._destroyed?[0,0]:this._shapeVector},set:function(t){if(Array.isArray(t)||(t=[0|t,0|t]),2!==t.length)throw new Error(\"gl-fbo: Shape vector must be length 2\");var e=0|t[0],r=0|t[1];return v(this,e,r),[e,r]},enumerable:!1},width:{get:function(){return this._destroyed?0:this._shape[0]},set:function(t){return v(this,t|=0,this._shape[1]),t},enumerable:!1},height:{get:function(){return this._destroyed?0:this._shape[1]},set:function(t){return t|=0,v(this,this._shape[0],t),t},enumerable:!1}}),g.bind=function(){if(!this._destroyed){var t=this.gl;t.bindFramebuffer(t.FRAMEBUFFER,this.handle),t.viewport(0,0,this._shape[0],this._shape[1])}},g.dispose=function(){if(!this._destroyed){this._destroyed=!0;var t=this.gl;t.deleteFramebuffer(this.handle),this.handle=null,this.depth&&(this.depth.dispose(),this.depth=null),this._depth_rb&&(t.deleteRenderbuffer(this._depth_rb),this._depth_rb=null);for(var e=0;e<this.color.length;++e)this.color[e].dispose(),this.color[e]=null;this._color_rb&&(t.deleteRenderbuffer(this._color_rb),this._color_rb=null)}}},{\"gl-texture2d\":323}],251:[function(t,e,r){var n=t(\"sprintf-js\").sprintf,a=t(\"gl-constants/lookup\"),i=t(\"glsl-shader-name\"),o=t(\"add-line-numbers\");e.exports=function(t,e,r){\"use strict\";var s=i(e)||\"of unknown name (see npm glsl-shader-name)\",l=\"unknown type\";void 0!==r&&(l=r===a.FRAGMENT_SHADER?\"fragment\":\"vertex\");for(var c=n(\"Error compiling %s shader %s:\\n\",l,s),u=n(\"%s%s\",c,t),h=t.split(\"\\n\"),f={},p=0;p<h.length;p++){var d=h[p];if(\"\"!==d&&\"\\0\"!==d){var g=parseInt(d.split(\":\")[2]);if(isNaN(g))throw new Error(n(\"Could not parse error: %s\",d));f[g]=d}}for(var v=o(e).split(\"\\n\"),p=0;p<v.length;p++)if(f[p+3]||f[p+2]||f[p+1]){var m=v[p];if(c+=m+\"\\n\",f[p+1]){var y=f[p+1];y=y.substr(y.split(\":\",3).join(\":\").length+1).trim(),c+=n(\"^^^ %s\\n\\n\",y)}}return{long:c.trim(),short:u.trim()}}},{\"add-line-numbers\":62,\"gl-constants/lookup\":247,\"glsl-shader-name\":402,\"sprintf-js\":529}],252:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=t.gl,n=o(r,l.vertex,l.fragment),a=o(r,l.pickVertex,l.pickFragment),i=s(r),u=s(r),h=s(r),f=s(r),p=new c(t,n,a,i,u,h,f);return p.update(e),t.addObject(p),p};var n=t(\"binary-search-bounds\"),a=t(\"iota-array\"),i=t(\"typedarray-pool\"),o=t(\"gl-shader\"),s=t(\"gl-buffer\"),l=t(\"./lib/shaders\");function c(t,e,r,n,a,i,o){this.plot=t,this.shader=e,this.pickShader=r,this.positionBuffer=n,this.weightBuffer=a,this.colorBuffer=i,this.idBuffer=o,this.xData=[],this.yData=[],this.shape=[0,0],this.bounds=[1/0,1/0,-1/0,-1/0],this.pickOffset=0}var u,h=c.prototype,f=[0,0,1,0,0,1,1,0,1,1,0,1];h.draw=(u=[1,0,0,0,1,0,0,0,1],function(){var t=this.plot,e=this.shader,r=this.bounds,n=this.numVertices;if(!(n<=0)){var a=t.gl,i=t.dataBox,o=r[2]-r[0],s=r[3]-r[1],l=i[2]-i[0],c=i[3]-i[1];u[0]=2*o/l,u[4]=2*s/c,u[6]=2*(r[0]-i[0])/l-1,u[7]=2*(r[1]-i[1])/c-1,e.bind();var h=e.uniforms;h.viewTransform=u,h.shape=this.shape;var f=e.attributes;this.positionBuffer.bind(),f.position.pointer(),this.weightBuffer.bind(),f.weight.pointer(a.UNSIGNED_BYTE,!1),this.colorBuffer.bind(),f.color.pointer(a.UNSIGNED_BYTE,!0),a.drawArrays(a.TRIANGLES,0,n)}}),h.drawPick=function(){var t=[1,0,0,0,1,0,0,0,1],e=[0,0,0,0];return function(r){var n=this.plot,a=this.pickShader,i=this.bounds,o=this.numVertices;if(!(o<=0)){var s=n.gl,l=n.dataBox,c=i[2]-i[0],u=i[3]-i[1],h=l[2]-l[0],f=l[3]-l[1];t[0]=2*c/h,t[4]=2*u/f,t[6]=2*(i[0]-l[0])/h-1,t[7]=2*(i[1]-l[1])/f-1;for(var p=0;p<4;++p)e[p]=r>>8*p&255;this.pickOffset=r,a.bind();var d=a.uniforms;d.viewTransform=t,d.pickOffset=e,d.shape=this.shape;var g=a.attributes;return this.positionBuffer.bind(),g.position.pointer(),this.weightBuffer.bind(),g.weight.pointer(s.UNSIGNED_BYTE,!1),this.idBuffer.bind(),g.pickId.pointer(s.UNSIGNED_BYTE,!1),s.drawArrays(s.TRIANGLES,0,o),r+this.shape[0]*this.shape[1]}}}(),h.pick=function(t,e,r){var n=this.pickOffset,a=this.shape[0]*this.shape[1];if(r<n||r>=n+a)return null;var i=r-n,o=this.xData,s=this.yData;return{object:this,pointId:i,dataCoord:[o[i%this.shape[0]],s[i/this.shape[0]|0]]}},h.update=function(t){var e=(t=t||{}).shape||[0,0],r=t.x||a(e[0]),o=t.y||a(e[1]),s=t.z||new Float32Array(e[0]*e[1]);this.xData=r,this.yData=o;var l=t.colorLevels||[0],c=t.colorValues||[0,0,0,1],u=l.length,h=this.bounds,p=h[0]=r[0],d=h[1]=o[0],g=1/((h[2]=r[r.length-1])-p),v=1/((h[3]=o[o.length-1])-d),m=e[0],y=e[1];this.shape=[m,y];var x=(m-1)*(y-1)*(f.length>>>1);this.numVertices=x;for(var b=i.mallocUint8(4*x),_=i.mallocFloat32(2*x),w=i.mallocUint8(2*x),k=i.mallocUint32(x),T=0,A=0;A<y-1;++A)for(var M=v*(o[A]-d),S=v*(o[A+1]-d),E=0;E<m-1;++E)for(var C=g*(r[E]-p),L=g*(r[E+1]-p),P=0;P<f.length;P+=2){var O,I,z,D,R=f[P],F=f[P+1],B=s[(A+F)*m+(E+R)],N=n.le(l,B);if(N<0)O=c[0],I=c[1],z=c[2],D=c[3];else if(N===u-1)O=c[4*u-4],I=c[4*u-3],z=c[4*u-2],D=c[4*u-1];else{var j=(B-l[N])/(l[N+1]-l[N]),V=1-j,U=4*N,q=4*(N+1);O=V*c[U]+j*c[q],I=V*c[U+1]+j*c[q+1],z=V*c[U+2]+j*c[q+2],D=V*c[U+3]+j*c[q+3]}b[4*T]=255*O,b[4*T+1]=255*I,b[4*T+2]=255*z,b[4*T+3]=255*D,_[2*T]=.5*C+.5*L,_[2*T+1]=.5*M+.5*S,w[2*T]=R,w[2*T+1]=F,k[T]=A*m+E,T+=1}this.positionBuffer.update(_),this.weightBuffer.update(w),this.colorBuffer.update(b),this.idBuffer.update(k),i.free(_),i.free(b),i.free(w),i.free(k)},h.dispose=function(){this.shader.dispose(),this.pickShader.dispose(),this.positionBuffer.dispose(),this.weightBuffer.dispose(),this.colorBuffer.dispose(),this.idBuffer.dispose(),this.plot.removeObject(this)}},{\"./lib/shaders\":253,\"binary-search-bounds\":254,\"gl-buffer\":242,\"gl-shader\":302,\"iota-array\":417,\"typedarray-pool\":546}],253:[function(t,e,r){\"use strict\";var n=t(\"glslify\");e.exports={fragment:n([\"precision lowp float;\\n#define GLSLIFY 1\\nvarying vec4 fragColor;\\nvoid main() {\\n  gl_FragColor = vec4(fragColor.rgb * fragColor.a, fragColor.a);\\n}\\n\"]),vertex:n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec2 position;\\nattribute vec4 color;\\nattribute vec2 weight;\\n\\nuniform vec2 shape;\\nuniform mat3 viewTransform;\\n\\nvarying vec4 fragColor;\\n\\nvoid main() {\\n  vec3 vPosition = viewTransform * vec3( position + (weight-.5)/(shape-1.) , 1.0);\\n  fragColor = color;\\n  gl_Position = vec4(vPosition.xy, 0, vPosition.z);\\n}\\n\"]),pickFragment:n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nvarying vec4 fragId;\\nvarying vec2 vWeight;\\n\\nuniform vec2 shape;\\nuniform vec4 pickOffset;\\n\\nvoid main() {\\n  vec2 d = step(.5, vWeight);\\n  vec4 id = fragId + pickOffset;\\n  id.x += d.x + d.y*shape.x;\\n\\n  id.y += floor(id.x / 256.0);\\n  id.x -= floor(id.x / 256.0) * 256.0;\\n\\n  id.z += floor(id.y / 256.0);\\n  id.y -= floor(id.y / 256.0) * 256.0;\\n\\n  id.w += floor(id.z / 256.0);\\n  id.z -= floor(id.z / 256.0) * 256.0;\\n\\n  gl_FragColor = id/255.;\\n}\\n\"]),pickVertex:n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec2 position;\\nattribute vec4 pickId;\\nattribute vec2 weight;\\n\\nuniform vec2 shape;\\nuniform mat3 viewTransform;\\n\\nvarying vec4 fragId;\\nvarying vec2 vWeight;\\n\\nvoid main() {\\n  vWeight = weight;\\n\\n  fragId = pickId;\\n\\n  vec3 vPosition = viewTransform * vec3( position + (weight-.5)/(shape-1.) , 1.0);\\n  gl_Position = vec4(vPosition.xy, 0, vPosition.z);\\n}\\n\"])}},{glslify:410}],254:[function(t,e,r){arguments[4][112][0].apply(r,arguments)},{dup:112}],255:[function(t,e,r){var n=t(\"glslify\"),a=t(\"gl-shader\"),i=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position, nextPosition;\\nattribute float arcLength, lineWidth;\\nattribute vec4 color;\\n\\nuniform vec2 screenShape;\\nuniform float pixelRatio;\\nuniform mat4 model, view, projection;\\n\\nvarying vec4 fragColor;\\nvarying vec3 worldPosition;\\nvarying float pixelArcLength;\\n\\nvec4 project(vec3 p) {\\n  return projection * view * model * vec4(p, 1.0);\\n}\\n\\nvoid main() {\\n  vec4 startPoint = project(position);\\n  vec4 endPoint   = project(nextPosition);\\n\\n  vec2 A = startPoint.xy / startPoint.w;\\n  vec2 B =   endPoint.xy /   endPoint.w;\\n\\n  float clipAngle = atan(\\n    (B.y - A.y) * screenShape.y,\\n    (B.x - A.x) * screenShape.x\\n  );\\n\\n  vec2 offset = 0.5 * pixelRatio * lineWidth * vec2(\\n    sin(clipAngle),\\n    -cos(clipAngle)\\n  ) / screenShape;\\n\\n  gl_Position = vec4(startPoint.xy + startPoint.w * offset, startPoint.zw);\\n\\n  worldPosition = position;\\n  pixelArcLength = arcLength;\\n  fragColor = color;\\n}\\n\"]),o=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3      clipBounds[2];\\nuniform sampler2D dashTexture;\\nuniform float     dashScale;\\nuniform float     opacity;\\n\\nvarying vec3    worldPosition;\\nvarying float   pixelArcLength;\\nvarying vec4    fragColor;\\n\\nvoid main() {\\n  if (\\n    outOfRange(clipBounds[0], clipBounds[1], worldPosition) ||\\n    fragColor.a * opacity == 0.\\n  ) discard;\\n\\n  float dashWeight = texture2D(dashTexture, vec2(dashScale * pixelArcLength, 0)).r;\\n  if(dashWeight < 0.5) {\\n    discard;\\n  }\\n  gl_FragColor = fragColor * opacity;\\n}\\n\"]),s=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\n#define FLOAT_MAX  1.70141184e38\\n#define FLOAT_MIN  1.17549435e-38\\n\\nlowp vec4 encode_float_1604150559(highp float v) {\\n  highp float av = abs(v);\\n\\n  //Handle special cases\\n  if(av < FLOAT_MIN) {\\n    return vec4(0.0, 0.0, 0.0, 0.0);\\n  } else if(v > FLOAT_MAX) {\\n    return vec4(127.0, 128.0, 0.0, 0.0) / 255.0;\\n  } else if(v < -FLOAT_MAX) {\\n    return vec4(255.0, 128.0, 0.0, 0.0) / 255.0;\\n  }\\n\\n  highp vec4 c = vec4(0,0,0,0);\\n\\n  //Compute exponent and mantissa\\n  highp float e = floor(log2(av));\\n  highp float m = av * pow(2.0, -e) - 1.0;\\n  \\n  //Unpack mantissa\\n  c[1] = floor(128.0 * m);\\n  m -= c[1] / 128.0;\\n  c[2] = floor(32768.0 * m);\\n  m -= c[2] / 32768.0;\\n  c[3] = floor(8388608.0 * m);\\n  \\n  //Unpack exponent\\n  highp float ebias = e + 127.0;\\n  c[0] = floor(ebias / 2.0);\\n  ebias -= c[0] * 2.0;\\n  c[1] += floor(ebias) * 128.0; \\n\\n  //Unpack sign bit\\n  c[0] += 128.0 * step(0.0, -v);\\n\\n  //Scale back to range\\n  return c / 255.0;\\n}\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform float pickId;\\nuniform vec3 clipBounds[2];\\n\\nvarying vec3 worldPosition;\\nvarying float pixelArcLength;\\nvarying vec4 fragColor;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], worldPosition)) discard;\\n\\n  gl_FragColor = vec4(pickId/255.0, encode_float_1604150559(pixelArcLength).xyz);\\n}\"]),l=[{name:\"position\",type:\"vec3\"},{name:\"nextPosition\",type:\"vec3\"},{name:\"arcLength\",type:\"float\"},{name:\"lineWidth\",type:\"float\"},{name:\"color\",type:\"vec4\"}];r.createShader=function(t){return a(t,i,o,null,l)},r.createPickShader=function(t){return a(t,i,s,null,l)}},{\"gl-shader\":302,glslify:410}],256:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.gl||t.scene&&t.scene.gl,r=u(e);r.attributes.position.location=0,r.attributes.nextPosition.location=1,r.attributes.arcLength.location=2,r.attributes.lineWidth.location=3,r.attributes.color.location=4;var o=h(e);o.attributes.position.location=0,o.attributes.nextPosition.location=1,o.attributes.arcLength.location=2,o.attributes.lineWidth.location=3,o.attributes.color.location=4;for(var s=n(e),c=a(e,[{buffer:s,size:3,offset:0,stride:48},{buffer:s,size:3,offset:12,stride:48},{buffer:s,size:1,offset:24,stride:48},{buffer:s,size:1,offset:28,stride:48},{buffer:s,size:4,offset:32,stride:48}]),f=l(new Array(1024),[256,1,4]),p=0;p<1024;++p)f.data[p]=255;var d=i(e,f);d.wrap=e.REPEAT;var g=new v(e,r,o,s,c,d);return g.update(t),g};var n=t(\"gl-buffer\"),a=t(\"gl-vao\"),i=t(\"gl-texture2d\"),o=t(\"glsl-read-float\"),s=t(\"binary-search-bounds\"),l=t(\"ndarray\"),c=t(\"./lib/shaders\"),u=c.createShader,h=c.createPickShader,f=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function p(t,e){for(var r=0,n=0;n<3;++n){var a=t[n]-e[n];r+=a*a}return Math.sqrt(r)}function d(t){for(var e=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],r=0;r<3;++r)e[0][r]=Math.max(t[0][r],e[0][r]),e[1][r]=Math.min(t[1][r],e[1][r]);return e}function g(t,e,r,n){this.arcLength=t,this.position=e,this.index=r,this.dataCoordinate=n}function v(t,e,r,n,a,i){this.gl=t,this.shader=e,this.pickShader=r,this.buffer=n,this.vao=a,this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.points=[],this.arcLength=[],this.vertexCount=0,this.bounds=[[0,0,0],[0,0,0]],this.pickId=0,this.lineWidth=1,this.texture=i,this.dashScale=1,this.opacity=1,this.hasAlpha=!1,this.dirty=!0,this.pixelRatio=1}var m=v.prototype;m.isTransparent=function(){return this.hasAlpha},m.isOpaque=function(){return!this.hasAlpha},m.pickSlots=1,m.setPickBase=function(t){this.pickId=t},m.drawTransparent=m.draw=function(t){if(this.vertexCount){var e=this.gl,r=this.shader,n=this.vao;r.bind(),r.uniforms={model:t.model||f,view:t.view||f,projection:t.projection||f,clipBounds:d(this.clipBounds),dashTexture:this.texture.bind(),dashScale:this.dashScale/this.arcLength[this.arcLength.length-1],opacity:this.opacity,screenShape:[e.drawingBufferWidth,e.drawingBufferHeight],pixelRatio:this.pixelRatio},n.bind(),n.draw(e.TRIANGLE_STRIP,this.vertexCount),n.unbind()}},m.drawPick=function(t){if(this.vertexCount){var e=this.gl,r=this.pickShader,n=this.vao;r.bind(),r.uniforms={model:t.model||f,view:t.view||f,projection:t.projection||f,pickId:this.pickId,clipBounds:d(this.clipBounds),screenShape:[e.drawingBufferWidth,e.drawingBufferHeight],pixelRatio:this.pixelRatio},n.bind(),n.draw(e.TRIANGLE_STRIP,this.vertexCount),n.unbind()}},m.update=function(t){var e,r;this.dirty=!0;var n=!!t.connectGaps;\"dashScale\"in t&&(this.dashScale=t.dashScale),this.hasAlpha=!1,\"opacity\"in t&&(this.opacity=+t.opacity,this.opacity<1&&(this.hasAlpha=!0));var a=[],i=[],o=[],c=0,u=0,h=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],f=t.position||t.positions;if(f){var d=t.color||t.colors||[0,0,0,1],g=t.lineWidth||1,v=!1;t:for(e=1;e<f.length;++e){var m,y,x,b=f[e-1],_=f[e];for(i.push(c),o.push(b.slice()),r=0;r<3;++r){if(isNaN(b[r])||isNaN(_[r])||!isFinite(b[r])||!isFinite(_[r])){if(!n&&a.length>0){for(var w=0;w<24;++w)a.push(a[a.length-12]);u+=2,v=!0}continue t}h[0][r]=Math.min(h[0][r],b[r],_[r]),h[1][r]=Math.max(h[1][r],b[r],_[r])}Array.isArray(d[0])?(m=d.length>e-1?d[e-1]:d.length>0?d[d.length-1]:[0,0,0,1],y=d.length>e?d[e]:d.length>0?d[d.length-1]:[0,0,0,1]):m=y=d,3===m.length&&(m=[m[0],m[1],m[2],1]),3===y.length&&(y=[y[0],y[1],y[2],1]),!this.hasAlpha&&m[3]<1&&(this.hasAlpha=!0),x=Array.isArray(g)?g.length>e-1?g[e-1]:g.length>0?g[g.length-1]:[0,0,0,1]:g;var k=c;if(c+=p(b,_),v){for(r=0;r<2;++r)a.push(b[0],b[1],b[2],_[0],_[1],_[2],k,x,m[0],m[1],m[2],m[3]);u+=2,v=!1}a.push(b[0],b[1],b[2],_[0],_[1],_[2],k,x,m[0],m[1],m[2],m[3],b[0],b[1],b[2],_[0],_[1],_[2],k,-x,m[0],m[1],m[2],m[3],_[0],_[1],_[2],b[0],b[1],b[2],c,-x,y[0],y[1],y[2],y[3],_[0],_[1],_[2],b[0],b[1],b[2],c,x,y[0],y[1],y[2],y[3]),u+=4}}if(this.buffer.update(a),i.push(c),o.push(f[f.length-1].slice()),this.bounds=h,this.vertexCount=u,this.points=o,this.arcLength=i,\"dashes\"in t){var T=t.dashes.slice();for(T.unshift(0),e=1;e<T.length;++e)T[e]=T[e-1]+T[e];var A=l(new Array(1024),[256,1,4]);for(e=0;e<256;++e){for(r=0;r<4;++r)A.set(e,0,r,0);1&s.le(T,T[T.length-1]*e/255)?A.set(e,0,0,0):A.set(e,0,0,255)}this.texture.setPixels(A)}},m.dispose=function(){this.shader.dispose(),this.vao.dispose(),this.buffer.dispose()},m.pick=function(t){if(!t)return null;if(t.id!==this.pickId)return null;var e=o(t.value[0],t.value[1],t.value[2],0),r=s.le(this.arcLength,e);if(r<0)return null;if(r===this.arcLength.length-1)return new g(this.arcLength[this.arcLength.length-1],this.points[this.points.length-1].slice(),r);for(var n=this.points[r],a=this.points[Math.min(r+1,this.points.length-1)],i=(e-this.arcLength[r])/(this.arcLength[r+1]-this.arcLength[r]),l=1-i,c=[0,0,0],u=0;u<3;++u)c[u]=l*n[u]+i*a[u];var h=Math.min(i<.5?r:r+1,this.points.length-1);return new g(e,c,h,this.points[h])}},{\"./lib/shaders\":255,\"binary-search-bounds\":257,\"gl-buffer\":242,\"gl-texture2d\":323,\"gl-vao\":328,\"glsl-read-float\":401,ndarray:451}],257:[function(t,e,r){arguments[4][112][0].apply(r,arguments)},{dup:112}],258:[function(t,e,r){e.exports=function(t,e){var r=e[0],n=e[1],a=e[2],i=e[3],o=r*i-a*n;return o?(o=1/o,t[0]=i*o,t[1]=-n*o,t[2]=-a*o,t[3]=r*o,t):null}},{}],259:[function(t,e,r){e.exports=function(t,e){var r=e[0],n=e[1],a=e[2],i=e[3],o=e[4],s=e[5],l=e[6],c=e[7],u=e[8],h=u*o-s*c,f=-u*i+s*l,p=c*i-o*l,d=r*h+n*f+a*p;return d?(d=1/d,t[0]=h*d,t[1]=(-u*n+a*c)*d,t[2]=(s*n-a*o)*d,t[3]=f*d,t[4]=(u*r-a*l)*d,t[5]=(-s*r+a*i)*d,t[6]=p*d,t[7]=(-c*r+n*l)*d,t[8]=(o*r-n*i)*d,t):null}},{}],260:[function(t,e,r){e.exports=function(t){var e=new Float32Array(16);return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e[4]=t[4],e[5]=t[5],e[6]=t[6],e[7]=t[7],e[8]=t[8],e[9]=t[9],e[10]=t[10],e[11]=t[11],e[12]=t[12],e[13]=t[13],e[14]=t[14],e[15]=t[15],e}},{}],261:[function(t,e,r){e.exports=function(){var t=new Float32Array(16);return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}},{}],262:[function(t,e,r){e.exports=function(t){var e=t[0],r=t[1],n=t[2],a=t[3],i=t[4],o=t[5],s=t[6],l=t[7],c=t[8],u=t[9],h=t[10],f=t[11],p=t[12],d=t[13],g=t[14],v=t[15];return(e*o-r*i)*(h*v-f*g)-(e*s-n*i)*(u*v-f*d)+(e*l-a*i)*(u*g-h*d)+(r*s-n*o)*(c*v-f*p)-(r*l-a*o)*(c*g-h*p)+(n*l-a*s)*(c*d-u*p)}},{}],263:[function(t,e,r){e.exports=function(t,e){var r=e[0],n=e[1],a=e[2],i=e[3],o=r+r,s=n+n,l=a+a,c=r*o,u=n*o,h=n*s,f=a*o,p=a*s,d=a*l,g=i*o,v=i*s,m=i*l;return t[0]=1-h-d,t[1]=u+m,t[2]=f-v,t[3]=0,t[4]=u-m,t[5]=1-c-d,t[6]=p+g,t[7]=0,t[8]=f+v,t[9]=p-g,t[10]=1-c-h,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}},{}],264:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],a=e[1],i=e[2],o=e[3],s=n+n,l=a+a,c=i+i,u=n*s,h=n*l,f=n*c,p=a*l,d=a*c,g=i*c,v=o*s,m=o*l,y=o*c;return t[0]=1-(p+g),t[1]=h+y,t[2]=f-m,t[3]=0,t[4]=h-y,t[5]=1-(u+g),t[6]=d+v,t[7]=0,t[8]=f+m,t[9]=d-v,t[10]=1-(u+p),t[11]=0,t[12]=r[0],t[13]=r[1],t[14]=r[2],t[15]=1,t}},{}],265:[function(t,e,r){e.exports=function(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}},{}],266:[function(t,e,r){e.exports=function(t,e){var r=e[0],n=e[1],a=e[2],i=e[3],o=e[4],s=e[5],l=e[6],c=e[7],u=e[8],h=e[9],f=e[10],p=e[11],d=e[12],g=e[13],v=e[14],m=e[15],y=r*s-n*o,x=r*l-a*o,b=r*c-i*o,_=n*l-a*s,w=n*c-i*s,k=a*c-i*l,T=u*g-h*d,A=u*v-f*d,M=u*m-p*d,S=h*v-f*g,E=h*m-p*g,C=f*m-p*v,L=y*C-x*E+b*S+_*M-w*A+k*T;if(!L)return null;return L=1/L,t[0]=(s*C-l*E+c*S)*L,t[1]=(a*E-n*C-i*S)*L,t[2]=(g*k-v*w+m*_)*L,t[3]=(f*w-h*k-p*_)*L,t[4]=(l*M-o*C-c*A)*L,t[5]=(r*C-a*M+i*A)*L,t[6]=(v*b-d*k-m*x)*L,t[7]=(u*k-f*b+p*x)*L,t[8]=(o*E-s*M+c*T)*L,t[9]=(n*M-r*E-i*T)*L,t[10]=(d*w-g*b+m*y)*L,t[11]=(h*b-u*w-p*y)*L,t[12]=(s*A-o*S-l*T)*L,t[13]=(r*S-n*A+a*T)*L,t[14]=(g*x-d*_-v*y)*L,t[15]=(u*_-h*x+f*y)*L,t}},{}],267:[function(t,e,r){var n=t(\"./identity\");e.exports=function(t,e,r,a){var i,o,s,l,c,u,h,f,p,d,g=e[0],v=e[1],m=e[2],y=a[0],x=a[1],b=a[2],_=r[0],w=r[1],k=r[2];if(Math.abs(g-_)<1e-6&&Math.abs(v-w)<1e-6&&Math.abs(m-k)<1e-6)return n(t);h=g-_,f=v-w,p=m-k,d=1/Math.sqrt(h*h+f*f+p*p),i=x*(p*=d)-b*(f*=d),o=b*(h*=d)-y*p,s=y*f-x*h,(d=Math.sqrt(i*i+o*o+s*s))?(i*=d=1/d,o*=d,s*=d):(i=0,o=0,s=0);l=f*s-p*o,c=p*i-h*s,u=h*o-f*i,(d=Math.sqrt(l*l+c*c+u*u))?(l*=d=1/d,c*=d,u*=d):(l=0,c=0,u=0);return t[0]=i,t[1]=l,t[2]=h,t[3]=0,t[4]=o,t[5]=c,t[6]=f,t[7]=0,t[8]=s,t[9]=u,t[10]=p,t[11]=0,t[12]=-(i*g+o*v+s*m),t[13]=-(l*g+c*v+u*m),t[14]=-(h*g+f*v+p*m),t[15]=1,t}},{\"./identity\":265}],268:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],a=e[1],i=e[2],o=e[3],s=e[4],l=e[5],c=e[6],u=e[7],h=e[8],f=e[9],p=e[10],d=e[11],g=e[12],v=e[13],m=e[14],y=e[15],x=r[0],b=r[1],_=r[2],w=r[3];return t[0]=x*n+b*s+_*h+w*g,t[1]=x*a+b*l+_*f+w*v,t[2]=x*i+b*c+_*p+w*m,t[3]=x*o+b*u+_*d+w*y,x=r[4],b=r[5],_=r[6],w=r[7],t[4]=x*n+b*s+_*h+w*g,t[5]=x*a+b*l+_*f+w*v,t[6]=x*i+b*c+_*p+w*m,t[7]=x*o+b*u+_*d+w*y,x=r[8],b=r[9],_=r[10],w=r[11],t[8]=x*n+b*s+_*h+w*g,t[9]=x*a+b*l+_*f+w*v,t[10]=x*i+b*c+_*p+w*m,t[11]=x*o+b*u+_*d+w*y,x=r[12],b=r[13],_=r[14],w=r[15],t[12]=x*n+b*s+_*h+w*g,t[13]=x*a+b*l+_*f+w*v,t[14]=x*i+b*c+_*p+w*m,t[15]=x*o+b*u+_*d+w*y,t}},{}],269:[function(t,e,r){e.exports=function(t,e,r,n,a,i,o){var s=1/(e-r),l=1/(n-a),c=1/(i-o);return t[0]=-2*s,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=-2*l,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=2*c,t[11]=0,t[12]=(e+r)*s,t[13]=(a+n)*l,t[14]=(o+i)*c,t[15]=1,t}},{}],270:[function(t,e,r){e.exports=function(t,e,r,n,a){var i=1/Math.tan(e/2),o=1/(n-a);return t[0]=i/r,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=i,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=(a+n)*o,t[11]=-1,t[12]=0,t[13]=0,t[14]=2*a*n*o,t[15]=0,t}},{}],271:[function(t,e,r){e.exports=function(t,e,r,n){var a,i,o,s,l,c,u,h,f,p,d,g,v,m,y,x,b,_,w,k,T,A,M,S,E=n[0],C=n[1],L=n[2],P=Math.sqrt(E*E+C*C+L*L);if(Math.abs(P)<1e-6)return null;E*=P=1/P,C*=P,L*=P,a=Math.sin(r),i=Math.cos(r),o=1-i,s=e[0],l=e[1],c=e[2],u=e[3],h=e[4],f=e[5],p=e[6],d=e[7],g=e[8],v=e[9],m=e[10],y=e[11],x=E*E*o+i,b=C*E*o+L*a,_=L*E*o-C*a,w=E*C*o-L*a,k=C*C*o+i,T=L*C*o+E*a,A=E*L*o+C*a,M=C*L*o-E*a,S=L*L*o+i,t[0]=s*x+h*b+g*_,t[1]=l*x+f*b+v*_,t[2]=c*x+p*b+m*_,t[3]=u*x+d*b+y*_,t[4]=s*w+h*k+g*T,t[5]=l*w+f*k+v*T,t[6]=c*w+p*k+m*T,t[7]=u*w+d*k+y*T,t[8]=s*A+h*M+g*S,t[9]=l*A+f*M+v*S,t[10]=c*A+p*M+m*S,t[11]=u*A+d*M+y*S,e!==t&&(t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15]);return t}},{}],272:[function(t,e,r){e.exports=function(t,e,r){var n=Math.sin(r),a=Math.cos(r),i=e[4],o=e[5],s=e[6],l=e[7],c=e[8],u=e[9],h=e[10],f=e[11];e!==t&&(t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15]);return t[4]=i*a+c*n,t[5]=o*a+u*n,t[6]=s*a+h*n,t[7]=l*a+f*n,t[8]=c*a-i*n,t[9]=u*a-o*n,t[10]=h*a-s*n,t[11]=f*a-l*n,t}},{}],273:[function(t,e,r){e.exports=function(t,e,r){var n=Math.sin(r),a=Math.cos(r),i=e[0],o=e[1],s=e[2],l=e[3],c=e[8],u=e[9],h=e[10],f=e[11];e!==t&&(t[4]=e[4],t[5]=e[5],t[6]=e[6],t[7]=e[7],t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15]);return t[0]=i*a-c*n,t[1]=o*a-u*n,t[2]=s*a-h*n,t[3]=l*a-f*n,t[8]=i*n+c*a,t[9]=o*n+u*a,t[10]=s*n+h*a,t[11]=l*n+f*a,t}},{}],274:[function(t,e,r){e.exports=function(t,e,r){var n=Math.sin(r),a=Math.cos(r),i=e[0],o=e[1],s=e[2],l=e[3],c=e[4],u=e[5],h=e[6],f=e[7];e!==t&&(t[8]=e[8],t[9]=e[9],t[10]=e[10],t[11]=e[11],t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15]);return t[0]=i*a+c*n,t[1]=o*a+u*n,t[2]=s*a+h*n,t[3]=l*a+f*n,t[4]=c*a-i*n,t[5]=u*a-o*n,t[6]=h*a-s*n,t[7]=f*a-l*n,t}},{}],275:[function(t,e,r){e.exports=function(t,e,r){var n=r[0],a=r[1],i=r[2];return t[0]=e[0]*n,t[1]=e[1]*n,t[2]=e[2]*n,t[3]=e[3]*n,t[4]=e[4]*a,t[5]=e[5]*a,t[6]=e[6]*a,t[7]=e[7]*a,t[8]=e[8]*i,t[9]=e[9]*i,t[10]=e[10]*i,t[11]=e[11]*i,t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15],t}},{}],276:[function(t,e,r){e.exports=function(t,e,r){var n,a,i,o,s,l,c,u,h,f,p,d,g=r[0],v=r[1],m=r[2];e===t?(t[12]=e[0]*g+e[4]*v+e[8]*m+e[12],t[13]=e[1]*g+e[5]*v+e[9]*m+e[13],t[14]=e[2]*g+e[6]*v+e[10]*m+e[14],t[15]=e[3]*g+e[7]*v+e[11]*m+e[15]):(n=e[0],a=e[1],i=e[2],o=e[3],s=e[4],l=e[5],c=e[6],u=e[7],h=e[8],f=e[9],p=e[10],d=e[11],t[0]=n,t[1]=a,t[2]=i,t[3]=o,t[4]=s,t[5]=l,t[6]=c,t[7]=u,t[8]=h,t[9]=f,t[10]=p,t[11]=d,t[12]=n*g+s*v+h*m+e[12],t[13]=a*g+l*v+f*m+e[13],t[14]=i*g+c*v+p*m+e[14],t[15]=o*g+u*v+d*m+e[15]);return t}},{}],277:[function(t,e,r){e.exports=function(t,e){if(t===e){var r=e[1],n=e[2],a=e[3],i=e[6],o=e[7],s=e[11];t[1]=e[4],t[2]=e[8],t[3]=e[12],t[4]=r,t[6]=e[9],t[7]=e[13],t[8]=n,t[9]=i,t[11]=e[14],t[12]=a,t[13]=o,t[14]=s}else t[0]=e[0],t[1]=e[4],t[2]=e[8],t[3]=e[12],t[4]=e[1],t[5]=e[5],t[6]=e[9],t[7]=e[13],t[8]=e[2],t[9]=e[6],t[10]=e[10],t[11]=e[14],t[12]=e[3],t[13]=e[7],t[14]=e[11],t[15]=e[15];return t}},{}],278:[function(t,e,r){\"use strict\";e.exports=function(t,e){switch(e.length){case 0:break;case 1:t[0]=1/e[0];break;case 4:n(t,e);break;case 9:a(t,e);break;case 16:i(t,e);break;default:throw new Error(\"currently supports matrices up to 4x4\")}return t};var n=t(\"gl-mat2/invert\"),a=t(\"gl-mat3/invert\"),i=t(\"gl-mat4/invert\")},{\"gl-mat2/invert\":258,\"gl-mat3/invert\":259,\"gl-mat4/invert\":266}],279:[function(t,e,r){\"use strict\";var n=t(\"barycentric\"),a=t(\"polytope-closest-point/lib/closest_point_2d.js\");function i(t,e){for(var r=[0,0,0,0],n=0;n<4;++n)for(var a=0;a<4;++a)r[a]+=t[4*n+a]*e[n];return r}function o(t,e,r,n,a){for(var o=i(n,i(r,i(e,[t[0],t[1],t[2],1]))),s=0;s<3;++s)o[s]/=o[3];return[.5*a[0]*(1+o[0]),.5*a[1]*(1-o[1])]}e.exports=function(t,e,r,i,s,l){if(1===t.length)return[0,t[0].slice()];for(var c=new Array(t.length),u=0;u<t.length;++u)c[u]=o(t[u],r,i,s,l);for(var h=0,f=1/0,u=0;u<c.length;++u){for(var p=0,d=0;d<2;++d)p+=Math.pow(c[u][d]-e[d],2);p<f&&(f=p,h=u)}for(var g=function(t,e){if(2===t.length){for(var r=0,i=0,o=0;o<2;++o)r+=Math.pow(e[o]-t[0][o],2),i+=Math.pow(e[o]-t[1][o],2);return r=Math.sqrt(r),i=Math.sqrt(i),r+i<1e-6?[1,0]:[i/(r+i),r/(i+r)]}if(3===t.length){var s=[0,0];return a(t[0],t[1],t[2],e,s),n(t,s)}return[]}(c,e),v=0,u=0;u<3;++u){if(g[u]<-.001||g[u]>1.0001)return null;v+=g[u]}if(Math.abs(v-1)>.001)return null;return[h,function(t,e){for(var r=[0,0,0],n=0;n<t.length;++n)for(var a=t[n],i=e[n],o=0;o<3;++o)r[o]+=i*a[o];return r}(t,g),g]}},{barycentric:74,\"polytope-closest-point/lib/closest_point_2d.js\":482}],280:[function(t,e,r){var n=t(\"glslify\"),a=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position, normal;\\nattribute vec4 color;\\nattribute vec2 uv;\\n\\nuniform mat4 model\\n           , view\\n           , projection\\n           , inverseModel;\\nuniform vec3 eyePosition\\n           , lightPosition;\\n\\nvarying vec3 f_normal\\n           , f_lightDirection\\n           , f_eyeDirection\\n           , f_data;\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvec4 project(vec3 p) {\\n  return projection * view * model * vec4(p, 1.0);\\n}\\n\\nvoid main() {\\n  gl_Position      = project(position);\\n\\n  //Lighting geometry parameters\\n  vec4 cameraCoordinate = view * vec4(position , 1.0);\\n  cameraCoordinate.xyz /= cameraCoordinate.w;\\n  f_lightDirection = lightPosition - cameraCoordinate.xyz;\\n  f_eyeDirection   = eyePosition - cameraCoordinate.xyz;\\n  f_normal  = normalize((vec4(normal, 0.0) * inverseModel).xyz);\\n\\n  f_color          = color;\\n  f_data           = position;\\n  f_uv             = uv;\\n}\\n\"]),i=n([\"#extension GL_OES_standard_derivatives : enable\\n\\nprecision highp float;\\n#define GLSLIFY 1\\n\\nfloat beckmannDistribution(float x, float roughness) {\\n  float NdotH = max(x, 0.0001);\\n  float cos2Alpha = NdotH * NdotH;\\n  float tan2Alpha = (cos2Alpha - 1.0) / cos2Alpha;\\n  float roughness2 = roughness * roughness;\\n  float denom = 3.141592653589793 * roughness2 * cos2Alpha * cos2Alpha;\\n  return exp(tan2Alpha / roughness2) / denom;\\n}\\n\\nfloat cookTorranceSpecular(\\n  vec3 lightDirection,\\n  vec3 viewDirection,\\n  vec3 surfaceNormal,\\n  float roughness,\\n  float fresnel) {\\n\\n  float VdotN = max(dot(viewDirection, surfaceNormal), 0.0);\\n  float LdotN = max(dot(lightDirection, surfaceNormal), 0.0);\\n\\n  //Half angle vector\\n  vec3 H = normalize(lightDirection + viewDirection);\\n\\n  //Geometric term\\n  float NdotH = max(dot(surfaceNormal, H), 0.0);\\n  float VdotH = max(dot(viewDirection, H), 0.000001);\\n  float LdotH = max(dot(lightDirection, H), 0.000001);\\n  float G1 = (2.0 * NdotH * VdotN) / VdotH;\\n  float G2 = (2.0 * NdotH * LdotN) / LdotH;\\n  float G = min(1.0, min(G1, G2));\\n  \\n  //Distribution term\\n  float D = beckmannDistribution(NdotH, roughness);\\n\\n  //Fresnel term\\n  float F = pow(1.0 - VdotN, fresnel);\\n\\n  //Multiply terms and done\\n  return  G * F * D / max(3.14159265 * VdotN, 0.000001);\\n}\\n\\n//#pragma glslify: beckmann = require(glsl-specular-beckmann) // used in gl-surface3d\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 clipBounds[2];\\nuniform float roughness\\n            , fresnel\\n            , kambient\\n            , kdiffuse\\n            , kspecular;\\nuniform sampler2D texture;\\n\\nvarying vec3 f_normal\\n           , f_lightDirection\\n           , f_eyeDirection\\n           , f_data;\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n  if (f_color.a == 0.0 ||\\n    outOfRange(clipBounds[0], clipBounds[1], f_data)\\n  ) discard;\\n\\n  vec3 N = normalize(f_normal);\\n  vec3 L = normalize(f_lightDirection);\\n  vec3 V = normalize(f_eyeDirection);\\n\\n  if(gl_FrontFacing) {\\n    N = -N;\\n  }\\n\\n  float specular = min(1.0, max(0.0, cookTorranceSpecular(L, V, N, roughness, fresnel)));\\n  //float specular = max(0.0, beckmann(L, V, N, roughness)); // used in gl-surface3d\\n\\n  float diffuse  = min(kambient + kdiffuse * max(dot(N, L), 0.0), 1.0);\\n\\n  vec4 surfaceColor = vec4(f_color.rgb, 1.0) * texture2D(texture, f_uv);\\n  vec4 litColor = surfaceColor.a * vec4(diffuse * surfaceColor.rgb + kspecular * vec3(1,1,1) * specular,  1.0);\\n\\n  gl_FragColor = litColor * f_color.a;\\n}\\n\"]),o=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position;\\nattribute vec4 color;\\nattribute vec2 uv;\\n\\nuniform mat4 model, view, projection;\\n\\nvarying vec4 f_color;\\nvarying vec3 f_data;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n  gl_Position = projection * view * model * vec4(position, 1.0);\\n  f_color = color;\\n  f_data  = position;\\n  f_uv    = uv;\\n}\"]),s=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 clipBounds[2];\\nuniform sampler2D texture;\\nuniform float opacity;\\n\\nvarying vec4 f_color;\\nvarying vec3 f_data;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], f_data)) discard;\\n\\n  gl_FragColor = f_color * texture2D(texture, f_uv) * opacity;\\n}\"]),l=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nattribute vec3 position;\\nattribute vec4 color;\\nattribute vec2 uv;\\nattribute float pointSize;\\n\\nuniform mat4 model, view, projection;\\nuniform vec3 clipBounds[2];\\n\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], position)) {\\n\\n    gl_Position = vec4(0.0, 0.0 ,0.0 ,0.0);\\n  } else {\\n    gl_Position = projection * view * model * vec4(position, 1.0);\\n  }\\n  gl_PointSize = pointSize;\\n  f_color = color;\\n  f_uv = uv;\\n}\"]),c=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nuniform sampler2D texture;\\nuniform float opacity;\\n\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n  vec2 pointR = gl_PointCoord.xy - vec2(0.5, 0.5);\\n  if(dot(pointR, pointR) > 0.25) {\\n    discard;\\n  }\\n  gl_FragColor = f_color * texture2D(texture, f_uv) * opacity;\\n}\"]),u=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position;\\nattribute vec4 id;\\n\\nuniform mat4 model, view, projection;\\n\\nvarying vec3 f_position;\\nvarying vec4 f_id;\\n\\nvoid main() {\\n  gl_Position = projection * view * model * vec4(position, 1.0);\\n  f_id        = id;\\n  f_position  = position;\\n}\"]),h=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3  clipBounds[2];\\nuniform float pickId;\\n\\nvarying vec3 f_position;\\nvarying vec4 f_id;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\\n\\n  gl_FragColor = vec4(pickId, f_id.xyz);\\n}\"]),f=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nattribute vec3  position;\\nattribute float pointSize;\\nattribute vec4  id;\\n\\nuniform mat4 model, view, projection;\\nuniform vec3 clipBounds[2];\\n\\nvarying vec3 f_position;\\nvarying vec4 f_id;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], position)) {\\n\\n    gl_Position = vec4(0.0, 0.0, 0.0, 0.0);\\n  } else {\\n    gl_Position  = projection * view * model * vec4(position, 1.0);\\n    gl_PointSize = pointSize;\\n  }\\n  f_id         = id;\\n  f_position   = position;\\n}\"]),p=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position;\\n\\nuniform mat4 model, view, projection;\\n\\nvoid main() {\\n  gl_Position = projection * view * model * vec4(position, 1.0);\\n}\"]),d=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nuniform vec3 contourColor;\\n\\nvoid main() {\\n  gl_FragColor = vec4(contourColor, 1.0);\\n}\\n\"]);r.meshShader={vertex:a,fragment:i,attributes:[{name:\"position\",type:\"vec3\"},{name:\"normal\",type:\"vec3\"},{name:\"color\",type:\"vec4\"},{name:\"uv\",type:\"vec2\"}]},r.wireShader={vertex:o,fragment:s,attributes:[{name:\"position\",type:\"vec3\"},{name:\"color\",type:\"vec4\"},{name:\"uv\",type:\"vec2\"}]},r.pointShader={vertex:l,fragment:c,attributes:[{name:\"position\",type:\"vec3\"},{name:\"color\",type:\"vec4\"},{name:\"uv\",type:\"vec2\"},{name:\"pointSize\",type:\"float\"}]},r.pickShader={vertex:u,fragment:h,attributes:[{name:\"position\",type:\"vec3\"},{name:\"id\",type:\"vec4\"}]},r.pointPickShader={vertex:f,fragment:h,attributes:[{name:\"position\",type:\"vec3\"},{name:\"pointSize\",type:\"float\"},{name:\"id\",type:\"vec4\"}]},r.contourShader={vertex:p,fragment:d,attributes:[{name:\"position\",type:\"vec3\"}]}},{glslify:410}],281:[function(t,e,r){\"use strict\";var n=t(\"gl-shader\"),a=t(\"gl-buffer\"),i=t(\"gl-vao\"),o=t(\"gl-texture2d\"),s=t(\"normals\"),l=t(\"gl-mat4/multiply\"),c=t(\"gl-mat4/invert\"),u=t(\"ndarray\"),h=t(\"colormap\"),f=t(\"simplicial-complex-contour\"),p=t(\"typedarray-pool\"),d=t(\"./lib/shaders\"),g=t(\"./lib/closest-point\"),v=d.meshShader,m=d.wireShader,y=d.pointShader,x=d.pickShader,b=d.pointPickShader,_=d.contourShader,w=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function k(t,e,r,n,a,i,o,s,l,c,u,h,f,p,d,g,v,m,y,x,b,_,k,T,A,M,S){this.gl=t,this.pixelRatio=1,this.cells=[],this.positions=[],this.intensity=[],this.texture=e,this.dirty=!0,this.triShader=r,this.lineShader=n,this.pointShader=a,this.pickShader=i,this.pointPickShader=o,this.contourShader=s,this.trianglePositions=l,this.triangleColors=u,this.triangleNormals=f,this.triangleUVs=h,this.triangleIds=c,this.triangleVAO=p,this.triangleCount=0,this.lineWidth=1,this.edgePositions=d,this.edgeColors=v,this.edgeUVs=m,this.edgeIds=g,this.edgeVAO=y,this.edgeCount=0,this.pointPositions=x,this.pointColors=_,this.pointUVs=k,this.pointSizes=T,this.pointIds=b,this.pointVAO=A,this.pointCount=0,this.contourLineWidth=1,this.contourPositions=M,this.contourVAO=S,this.contourCount=0,this.contourColor=[0,0,0],this.contourEnable=!0,this.pickId=1,this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.lightPosition=[1e5,1e5,0],this.ambientLight=.8,this.diffuseLight=.8,this.specularLight=2,this.roughness=.5,this.fresnel=1.5,this.opacity=1,this.hasAlpha=!1,this.opacityscale=!1,this._model=w,this._view=w,this._projection=w,this._resolution=[1,1]}var T=k.prototype;function A(t,e){if(!e)return 1;if(!e.length)return 1;for(var r=0;r<e.length;++r){if(e.length<2)return 1;if(e[r][0]===t)return e[r][1];if(e[r][0]>t&&r>0){var n=(e[r][0]-t)/(e[r][0]-e[r-1][0]);return e[r][1]*(1-n)+n*e[r-1][1]}}return 1}function M(t){var e=n(t,y.vertex,y.fragment);return e.attributes.position.location=0,e.attributes.color.location=2,e.attributes.uv.location=3,e.attributes.pointSize.location=4,e}function S(t){var e=n(t,x.vertex,x.fragment);return e.attributes.position.location=0,e.attributes.id.location=1,e}function E(t){var e=n(t,b.vertex,b.fragment);return e.attributes.position.location=0,e.attributes.id.location=1,e.attributes.pointSize.location=4,e}function C(t){var e=n(t,_.vertex,_.fragment);return e.attributes.position.location=0,e}T.isOpaque=function(){return!this.hasAlpha},T.isTransparent=function(){return this.hasAlpha},T.pickSlots=1,T.setPickBase=function(t){this.pickId=t},T.highlight=function(t){if(t&&this.contourEnable){for(var e=f(this.cells,this.intensity,t.intensity),r=e.cells,n=e.vertexIds,a=e.vertexWeights,i=r.length,o=p.mallocFloat32(6*i),s=0,l=0;l<i;++l)for(var c=r[l],u=0;u<2;++u){var h=c[0];2===c.length&&(h=c[u]);for(var d=n[h][0],g=n[h][1],v=a[h],m=1-v,y=this.positions[d],x=this.positions[g],b=0;b<3;++b)o[s++]=v*y[b]+m*x[b]}this.contourCount=s/3|0,this.contourPositions.update(o.subarray(0,s)),p.free(o)}else this.contourCount=0},T.update=function(t){t=t||{};var e=this.gl;this.dirty=!0,\"contourEnable\"in t&&(this.contourEnable=t.contourEnable),\"contourColor\"in t&&(this.contourColor=t.contourColor),\"lineWidth\"in t&&(this.lineWidth=t.lineWidth),\"lightPosition\"in t&&(this.lightPosition=t.lightPosition),this.hasAlpha=!1,\"opacity\"in t&&(this.opacity=t.opacity,this.opacity<1&&(this.hasAlpha=!0)),\"opacityscale\"in t&&(this.opacityscale=t.opacityscale,this.hasAlpha=!0),\"ambient\"in t&&(this.ambientLight=t.ambient),\"diffuse\"in t&&(this.diffuseLight=t.diffuse),\"specular\"in t&&(this.specularLight=t.specular),\"roughness\"in t&&(this.roughness=t.roughness),\"fresnel\"in t&&(this.fresnel=t.fresnel),t.texture?(this.texture.dispose(),this.texture=o(e,t.texture)):t.colormap&&(this.texture.shape=[256,256],this.texture.minFilter=e.LINEAR_MIPMAP_LINEAR,this.texture.magFilter=e.LINEAR,this.texture.setPixels(function(t,e){for(var r=h({colormap:t,nshades:256,format:\"rgba\"}),n=new Uint8Array(1024),a=0;a<256;++a){for(var i=r[a],o=0;o<3;++o)n[4*a+o]=i[o];n[4*a+3]=e?255*A(a/255,e):255*i[3]}return u(n,[256,256,4],[4,0,1])}(t.colormap,this.opacityscale)),this.texture.generateMipmap());var r=t.cells,n=t.positions;if(n&&r){var a=[],i=[],l=[],c=[],f=[],p=[],d=[],g=[],v=[],m=[],y=[],x=[],b=[],_=[];this.cells=r,this.positions=n;var w=t.vertexNormals,k=t.cellNormals,T=void 0===t.vertexNormalsEpsilon?1e-6:t.vertexNormalsEpsilon,M=void 0===t.faceNormalsEpsilon?1e-6:t.faceNormalsEpsilon;t.useFacetNormals&&!k&&(k=s.faceNormals(r,n,M)),k||w||(w=s.vertexNormals(r,n,T));var S=t.vertexColors,E=t.cellColors,C=t.meshColor||[1,1,1,1],L=t.vertexUVs,P=t.vertexIntensity,O=t.cellUVs,I=t.cellIntensity,z=1/0,D=-1/0;if(!L&&!O)if(P)if(t.vertexIntensityBounds)z=+t.vertexIntensityBounds[0],D=+t.vertexIntensityBounds[1];else for(var R=0;R<P.length;++R){var F=P[R];z=Math.min(z,F),D=Math.max(D,F)}else if(I)for(R=0;R<I.length;++R){F=I[R];z=Math.min(z,F),D=Math.max(D,F)}else for(R=0;R<n.length;++R){F=n[R][2];z=Math.min(z,F),D=Math.max(D,F)}this.intensity=P||(I?function(t,e,r){for(var n=new Array(e),a=0;a<e;++a)n[a]=0;var i=t.length;for(a=0;a<i;++a)for(var o=t[a],s=0;s<o.length;++s)n[o[s]]=r[a];return n}(r,n.length,I):function(t){for(var e=t.length,r=new Array(e),n=0;n<e;++n)r[n]=t[n][2];return r}(n));var B=t.pointSizes,N=t.pointSize||1;this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]];for(R=0;R<n.length;++R)for(var j=n[R],V=0;V<3;++V)!isNaN(j[V])&&isFinite(j[V])&&(this.bounds[0][V]=Math.min(this.bounds[0][V],j[V]),this.bounds[1][V]=Math.max(this.bounds[1][V],j[V]));var U=0,q=0,H=0;t:for(R=0;R<r.length;++R){var G=r[R];switch(G.length){case 1:for(j=n[W=G[0]],V=0;V<3;++V)if(isNaN(j[V])||!isFinite(j[V]))continue t;m.push(j[0],j[1],j[2]),X=S?S[W]:E?E[R]:C,this.opacityscale&&P?i.push(X[0],X[1],X[2],this.opacity*A((P[W]-z)/(D-z),this.opacityscale)):3===X.length?y.push(X[0],X[1],X[2],this.opacity):(y.push(X[0],X[1],X[2],X[3]*this.opacity),!this.hasAlpha&&X[3]<1&&(this.hasAlpha=!0)),Z=L?L[W]:P?[(P[W]-z)/(D-z),0]:O?O[R]:I?[(I[R]-z)/(D-z),0]:[(j[2]-z)/(D-z),0],x.push(Z[0],Z[1]),B?b.push(B[W]):b.push(N),_.push(R),H+=1;break;case 2:for(V=0;V<2;++V){j=n[W=G[V]];for(var Y=0;Y<3;++Y)if(isNaN(j[Y])||!isFinite(j[Y]))continue t}for(V=0;V<2;++V){j=n[W=G[V]];p.push(j[0],j[1],j[2]),X=S?S[W]:E?E[R]:C,this.opacityscale&&P?i.push(X[0],X[1],X[2],this.opacity*A((P[W]-z)/(D-z),this.opacityscale)):3===X.length?d.push(X[0],X[1],X[2],this.opacity):(d.push(X[0],X[1],X[2],X[3]*this.opacity),!this.hasAlpha&&X[3]<1&&(this.hasAlpha=!0)),Z=L?L[W]:P?[(P[W]-z)/(D-z),0]:O?O[R]:I?[(I[R]-z)/(D-z),0]:[(j[2]-z)/(D-z),0],g.push(Z[0],Z[1]),v.push(R)}q+=1;break;case 3:for(V=0;V<3;++V)for(j=n[W=G[V]],Y=0;Y<3;++Y)if(isNaN(j[Y])||!isFinite(j[Y]))continue t;for(V=0;V<3;++V){var W,X,Z,J;j=n[W=G[2-V]];a.push(j[0],j[1],j[2]),X=S?S[W]:E?E[R]:C,this.opacityscale&&P?i.push(X[0],X[1],X[2],this.opacity*A((P[W]-z)/(D-z),this.opacityscale)):3===X.length?i.push(X[0],X[1],X[2],this.opacity):(i.push(X[0],X[1],X[2],X[3]*this.opacity),!this.hasAlpha&&X[3]<1&&(this.hasAlpha=!0)),Z=L?L[W]:P?[(P[W]-z)/(D-z),0]:O?O[R]:I?[(I[R]-z)/(D-z),0]:[(j[2]-z)/(D-z),0],c.push(Z[0],Z[1]),J=w?w[W]:k[R],l.push(J[0],J[1],J[2]),f.push(R)}U+=1}}this.pointCount=H,this.edgeCount=q,this.triangleCount=U,this.pointPositions.update(m),this.pointColors.update(y),this.pointUVs.update(x),this.pointSizes.update(b),this.pointIds.update(new Uint32Array(_)),this.edgePositions.update(p),this.edgeColors.update(d),this.edgeUVs.update(g),this.edgeIds.update(new Uint32Array(v)),this.trianglePositions.update(a),this.triangleColors.update(i),this.triangleUVs.update(c),this.triangleNormals.update(l),this.triangleIds.update(new Uint32Array(f))}},T.drawTransparent=T.draw=function(t){t=t||{};for(var e=this.gl,r=t.model||w,n=t.view||w,a=t.projection||w,i=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],o=0;o<3;++o)i[0][o]=Math.max(i[0][o],this.clipBounds[0][o]),i[1][o]=Math.min(i[1][o],this.clipBounds[1][o]);var s={model:r,view:n,projection:a,inverseModel:w.slice(),clipBounds:i,kambient:this.ambientLight,kdiffuse:this.diffuseLight,kspecular:this.specularLight,roughness:this.roughness,fresnel:this.fresnel,eyePosition:[0,0,0],lightPosition:[0,0,0],contourColor:this.contourColor,texture:0};s.inverseModel=c(s.inverseModel,s.model),e.disable(e.CULL_FACE),this.texture.bind(0);var u=new Array(16);l(u,s.view,s.model),l(u,s.projection,u),c(u,u);for(o=0;o<3;++o)s.eyePosition[o]=u[12+o]/u[15];var h,f=u[15];for(o=0;o<3;++o)f+=this.lightPosition[o]*u[4*o+3];for(o=0;o<3;++o){for(var p=u[12+o],d=0;d<3;++d)p+=u[4*d+o]*this.lightPosition[d];s.lightPosition[o]=p/f}this.triangleCount>0&&((h=this.triShader).bind(),h.uniforms=s,this.triangleVAO.bind(),e.drawArrays(e.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind());this.edgeCount>0&&this.lineWidth>0&&((h=this.lineShader).bind(),h.uniforms=s,this.edgeVAO.bind(),e.lineWidth(this.lineWidth*this.pixelRatio),e.drawArrays(e.LINES,0,2*this.edgeCount),this.edgeVAO.unbind());this.pointCount>0&&((h=this.pointShader).bind(),h.uniforms=s,this.pointVAO.bind(),e.drawArrays(e.POINTS,0,this.pointCount),this.pointVAO.unbind());this.contourEnable&&this.contourCount>0&&this.contourLineWidth>0&&((h=this.contourShader).bind(),h.uniforms=s,this.contourVAO.bind(),e.drawArrays(e.LINES,0,this.contourCount),this.contourVAO.unbind())},T.drawPick=function(t){t=t||{};for(var e=this.gl,r=t.model||w,n=t.view||w,a=t.projection||w,i=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],o=0;o<3;++o)i[0][o]=Math.max(i[0][o],this.clipBounds[0][o]),i[1][o]=Math.min(i[1][o],this.clipBounds[1][o]);this._model=[].slice.call(r),this._view=[].slice.call(n),this._projection=[].slice.call(a),this._resolution=[e.drawingBufferWidth,e.drawingBufferHeight];var s,l={model:r,view:n,projection:a,clipBounds:i,pickId:this.pickId/255};((s=this.pickShader).bind(),s.uniforms=l,this.triangleCount>0&&(this.triangleVAO.bind(),e.drawArrays(e.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind()),this.edgeCount>0&&(this.edgeVAO.bind(),e.lineWidth(this.lineWidth*this.pixelRatio),e.drawArrays(e.LINES,0,2*this.edgeCount),this.edgeVAO.unbind()),this.pointCount>0)&&((s=this.pointPickShader).bind(),s.uniforms=l,this.pointVAO.bind(),e.drawArrays(e.POINTS,0,this.pointCount),this.pointVAO.unbind())},T.pick=function(t){if(!t)return null;if(t.id!==this.pickId)return null;for(var e=t.value[0]+256*t.value[1]+65536*t.value[2],r=this.cells[e],n=this.positions,a=new Array(r.length),i=0;i<r.length;++i)a[i]=n[r[i]];var o=g(a,[t.coord[0],this._resolution[1]-t.coord[1]],this._model,this._view,this._projection,this._resolution);if(!o)return null;var s=o[2],l=0;for(i=0;i<r.length;++i)l+=s[i]*this.intensity[r[i]];return{position:o[1],index:r[o[0]],cell:r,cellId:e,intensity:l,dataCoordinate:this.positions[r[o[0]]]}},T.dispose=function(){this.texture.dispose(),this.triShader.dispose(),this.lineShader.dispose(),this.pointShader.dispose(),this.pickShader.dispose(),this.pointPickShader.dispose(),this.triangleVAO.dispose(),this.trianglePositions.dispose(),this.triangleColors.dispose(),this.triangleUVs.dispose(),this.triangleNormals.dispose(),this.triangleIds.dispose(),this.edgeVAO.dispose(),this.edgePositions.dispose(),this.edgeColors.dispose(),this.edgeUVs.dispose(),this.edgeIds.dispose(),this.pointVAO.dispose(),this.pointPositions.dispose(),this.pointColors.dispose(),this.pointUVs.dispose(),this.pointSizes.dispose(),this.pointIds.dispose(),this.contourVAO.dispose(),this.contourPositions.dispose(),this.contourShader.dispose()},e.exports=function(t,e){if(1===arguments.length&&(t=(e=t).gl),!(t.getExtension(\"OES_standard_derivatives\")||t.getExtension(\"MOZ_OES_standard_derivatives\")||t.getExtension(\"WEBKIT_OES_standard_derivatives\")))throw new Error(\"derivatives not supported\");var r=function(t){var e=n(t,v.vertex,v.fragment);return e.attributes.position.location=0,e.attributes.color.location=2,e.attributes.uv.location=3,e.attributes.normal.location=4,e}(t),s=function(t){var e=n(t,m.vertex,m.fragment);return e.attributes.position.location=0,e.attributes.color.location=2,e.attributes.uv.location=3,e}(t),l=M(t),c=S(t),h=E(t),f=C(t),p=o(t,u(new Uint8Array([255,255,255,255]),[1,1,4]));p.generateMipmap(),p.minFilter=t.LINEAR_MIPMAP_LINEAR,p.magFilter=t.LINEAR;var d=a(t),g=a(t),y=a(t),x=a(t),b=a(t),_=i(t,[{buffer:d,type:t.FLOAT,size:3},{buffer:b,type:t.UNSIGNED_BYTE,size:4,normalized:!0},{buffer:g,type:t.FLOAT,size:4},{buffer:y,type:t.FLOAT,size:2},{buffer:x,type:t.FLOAT,size:3}]),w=a(t),T=a(t),A=a(t),L=a(t),P=i(t,[{buffer:w,type:t.FLOAT,size:3},{buffer:L,type:t.UNSIGNED_BYTE,size:4,normalized:!0},{buffer:T,type:t.FLOAT,size:4},{buffer:A,type:t.FLOAT,size:2}]),O=a(t),I=a(t),z=a(t),D=a(t),R=a(t),F=i(t,[{buffer:O,type:t.FLOAT,size:3},{buffer:R,type:t.UNSIGNED_BYTE,size:4,normalized:!0},{buffer:I,type:t.FLOAT,size:4},{buffer:z,type:t.FLOAT,size:2},{buffer:D,type:t.FLOAT,size:1}]),B=a(t),N=new k(t,p,r,s,l,c,h,f,d,b,g,y,x,_,w,L,T,A,P,O,R,I,z,D,F,B,i(t,[{buffer:B,type:t.FLOAT,size:3}]));return N.update(e),N}},{\"./lib/closest-point\":279,\"./lib/shaders\":280,colormap:127,\"gl-buffer\":242,\"gl-mat4/invert\":266,\"gl-mat4/multiply\":268,\"gl-shader\":302,\"gl-texture2d\":323,\"gl-vao\":328,ndarray:451,normals:454,\"simplicial-complex-contour\":519,\"typedarray-pool\":546}],282:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.gl,r=n(e,[0,0,0,1,1,0,1,1]),s=a(e,i.boxVert,i.lineFrag);return new o(t,r,s)};var n=t(\"gl-buffer\"),a=t(\"gl-shader\"),i=t(\"./shaders\");function o(t,e,r){this.plot=t,this.vbo=e,this.shader=r}var s,l,c=o.prototype;c.bind=function(){var t=this.shader;this.vbo.bind(),this.shader.bind(),t.attributes.coord.pointer(),t.uniforms.screenBox=this.plot.screenBox},c.drawBox=(s=[0,0],l=[0,0],function(t,e,r,n,a){var i=this.plot,o=this.shader,c=i.gl;s[0]=t,s[1]=e,l[0]=r,l[1]=n,o.uniforms.lo=s,o.uniforms.hi=l,o.uniforms.color=a,c.drawArrays(c.TRIANGLE_STRIP,0,4)}),c.dispose=function(){this.vbo.dispose(),this.shader.dispose()}},{\"./shaders\":285,\"gl-buffer\":242,\"gl-shader\":302}],283:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.gl,r=n(e),i=a(e,o.gridVert,o.gridFrag),l=a(e,o.tickVert,o.gridFrag);return new s(t,r,i,l)};var n=t(\"gl-buffer\"),a=t(\"gl-shader\"),i=t(\"binary-search-bounds\"),o=t(\"./shaders\");function s(t,e,r,n){this.plot=t,this.vbo=e,this.shader=r,this.tickShader=n,this.ticks=[[],[]]}function l(t,e){return t-e}var c,u,h,f,p,d=s.prototype;d.draw=(c=[0,0],u=[0,0],h=[0,0],function(){for(var t=this.plot,e=this.vbo,r=this.shader,n=this.ticks,a=t.gl,i=t._tickBounds,o=t.dataBox,s=t.viewBox,l=t.gridLineWidth,f=t.gridLineColor,p=t.gridLineEnable,d=t.pixelRatio,g=0;g<2;++g){var v=i[g],m=i[g+2]-v,y=.5*(o[g+2]+o[g]),x=o[g+2]-o[g];u[g]=2*m/x,c[g]=2*(v-y)/x}r.bind(),e.bind(),r.attributes.dataCoord.pointer(),r.uniforms.dataShift=c,r.uniforms.dataScale=u;var b=0;for(g=0;g<2;++g){h[0]=h[1]=0,h[g]=1,r.uniforms.dataAxis=h,r.uniforms.lineWidth=l[g]/(s[g+2]-s[g])*d,r.uniforms.color=f[g];var _=6*n[g].length;p[g]&&_&&a.drawArrays(a.TRIANGLES,b,_),b+=_}}),d.drawTickMarks=function(){var t=[0,0],e=[0,0],r=[1,0],n=[0,1],a=[0,0],o=[0,0];return function(){for(var s=this.plot,c=this.vbo,u=this.tickShader,h=this.ticks,f=s.gl,p=s._tickBounds,d=s.dataBox,g=s.viewBox,v=s.pixelRatio,m=s.screenBox,y=m[2]-m[0],x=m[3]-m[1],b=g[2]-g[0],_=g[3]-g[1],w=0;w<2;++w){var k=p[w],T=p[w+2]-k,A=.5*(d[w+2]+d[w]),M=d[w+2]-d[w];e[w]=2*T/M,t[w]=2*(k-A)/M}e[0]*=b/y,t[0]*=b/y,e[1]*=_/x,t[1]*=_/x,u.bind(),c.bind(),u.attributes.dataCoord.pointer();var S=u.uniforms;S.dataShift=t,S.dataScale=e;var E=s.tickMarkLength,C=s.tickMarkWidth,L=s.tickMarkColor,P=6*h[0].length,O=Math.min(i.ge(h[0],(d[0]-p[0])/(p[2]-p[0]),l),h[0].length),I=Math.min(i.gt(h[0],(d[2]-p[0])/(p[2]-p[0]),l),h[0].length),z=0+6*O,D=6*Math.max(0,I-O),R=Math.min(i.ge(h[1],(d[1]-p[1])/(p[3]-p[1]),l),h[1].length),F=Math.min(i.gt(h[1],(d[3]-p[1])/(p[3]-p[1]),l),h[1].length),B=P+6*R,N=6*Math.max(0,F-R);a[0]=2*(g[0]-E[1])/y-1,a[1]=(g[3]+g[1])/x-1,o[0]=E[1]*v/y,o[1]=C[1]*v/x,N&&(S.color=L[1],S.tickScale=o,S.dataAxis=n,S.screenOffset=a,f.drawArrays(f.TRIANGLES,B,N)),a[0]=(g[2]+g[0])/y-1,a[1]=2*(g[1]-E[0])/x-1,o[0]=C[0]*v/y,o[1]=E[0]*v/x,D&&(S.color=L[0],S.tickScale=o,S.dataAxis=r,S.screenOffset=a,f.drawArrays(f.TRIANGLES,z,D)),a[0]=2*(g[2]+E[3])/y-1,a[1]=(g[3]+g[1])/x-1,o[0]=E[3]*v/y,o[1]=C[3]*v/x,N&&(S.color=L[3],S.tickScale=o,S.dataAxis=n,S.screenOffset=a,f.drawArrays(f.TRIANGLES,B,N)),a[0]=(g[2]+g[0])/y-1,a[1]=2*(g[3]+E[2])/x-1,o[0]=C[2]*v/y,o[1]=E[2]*v/x,D&&(S.color=L[2],S.tickScale=o,S.dataAxis=r,S.screenOffset=a,f.drawArrays(f.TRIANGLES,z,D))}}(),d.update=(f=[1,1,-1,-1,1,-1],p=[1,-1,1,1,-1,-1],function(t){for(var e=t.ticks,r=t.bounds,n=new Float32Array(18*(e[0].length+e[1].length)),a=(this.plot.zeroLineEnable,0),i=[[],[]],o=0;o<2;++o)for(var s=i[o],l=e[o],c=r[o],u=r[o+2],h=0;h<l.length;++h){var d=(l[h].x-c)/(u-c);s.push(d);for(var g=0;g<6;++g)n[a++]=d,n[a++]=f[g],n[a++]=p[g]}this.ticks=i,this.vbo.update(n)}),d.dispose=function(){this.vbo.dispose(),this.shader.dispose(),this.tickShader.dispose()}},{\"./shaders\":285,\"binary-search-bounds\":287,\"gl-buffer\":242,\"gl-shader\":302}],284:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.gl,r=n(e,[-1,-1,-1,1,1,-1,1,1]),s=a(e,i.lineVert,i.lineFrag);return new o(t,r,s)};var n=t(\"gl-buffer\"),a=t(\"gl-shader\"),i=t(\"./shaders\");function o(t,e,r){this.plot=t,this.vbo=e,this.shader=r}var s,l,c=o.prototype;c.bind=function(){var t=this.shader;this.vbo.bind(),this.shader.bind(),t.attributes.coord.pointer(),t.uniforms.screenBox=this.plot.screenBox},c.drawLine=(s=[0,0],l=[0,0],function(t,e,r,n,a,i){var o=this.plot,c=this.shader,u=o.gl;s[0]=t,s[1]=e,l[0]=r,l[1]=n,c.uniforms.start=s,c.uniforms.end=l,c.uniforms.width=a*o.pixelRatio,c.uniforms.color=i,u.drawArrays(u.TRIANGLE_STRIP,0,4)}),c.dispose=function(){this.vbo.dispose(),this.shader.dispose()}},{\"./shaders\":285,\"gl-buffer\":242,\"gl-shader\":302}],285:[function(t,e,r){\"use strict\";var n=t(\"glslify\"),a=n([\"precision lowp float;\\n#define GLSLIFY 1\\nuniform vec4 color;\\nvoid main() {\\n  gl_FragColor = vec4(color.xyz * color.w, color.w);\\n}\\n\"]);e.exports={lineVert:n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec2 coord;\\n\\nuniform vec4 screenBox;\\nuniform vec2 start, end;\\nuniform float width;\\n\\nvec2 perp(vec2 v) {\\n  return vec2(v.y, -v.x);\\n}\\n\\nvec2 screen(vec2 v) {\\n  return 2.0 * (v - screenBox.xy) / (screenBox.zw - screenBox.xy) - 1.0;\\n}\\n\\nvoid main() {\\n  vec2 delta = normalize(perp(start - end));\\n  vec2 offset = mix(start, end, 0.5 * (coord.y+1.0));\\n  gl_Position = vec4(screen(offset + 0.5 * width * delta * coord.x), 0, 1);\\n}\\n\"]),lineFrag:a,textVert:n([\"#define GLSLIFY 1\\nattribute vec3 textCoordinate;\\n\\nuniform vec2 dataScale, dataShift, dataAxis, screenOffset, textScale;\\nuniform float angle;\\n\\nvoid main() {\\n  float dataOffset  = textCoordinate.z;\\n  vec2 glyphOffset  = textCoordinate.xy;\\n  mat2 glyphMatrix = mat2(cos(angle), sin(angle), -sin(angle), cos(angle));\\n  vec2 screenCoordinate = dataAxis * (dataScale * dataOffset + dataShift) +\\n    glyphMatrix * glyphOffset * textScale + screenOffset;\\n  gl_Position = vec4(screenCoordinate, 0, 1);\\n}\\n\"]),textFrag:a,gridVert:n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec3 dataCoord;\\n\\nuniform vec2 dataAxis, dataShift, dataScale;\\nuniform float lineWidth;\\n\\nvoid main() {\\n  vec2 pos = dataAxis * (dataScale * dataCoord.x + dataShift);\\n  pos += 10.0 * dataCoord.y * vec2(dataAxis.y, -dataAxis.x) + dataCoord.z * lineWidth;\\n  gl_Position = vec4(pos, 0, 1);\\n}\\n\"]),gridFrag:a,boxVert:n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec2 coord;\\n\\nuniform vec4 screenBox;\\nuniform vec2 lo, hi;\\n\\nvec2 screen(vec2 v) {\\n  return 2.0 * (v - screenBox.xy) / (screenBox.zw - screenBox.xy) - 1.0;\\n}\\n\\nvoid main() {\\n  gl_Position = vec4(screen(mix(lo, hi, coord)), 0, 1);\\n}\\n\"]),tickVert:n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec3 dataCoord;\\n\\nuniform vec2 dataAxis, dataShift, dataScale, screenOffset, tickScale;\\n\\nvoid main() {\\n  vec2 pos = dataAxis * (dataScale * dataCoord.x + dataShift);\\n  gl_Position = vec4(pos + tickScale*dataCoord.yz + screenOffset, 0, 1);\\n}\\n\"])}},{glslify:410}],286:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.gl,r=n(e),i=a(e,s.textVert,s.textFrag);return new l(t,r,i)};var n=t(\"gl-buffer\"),a=t(\"gl-shader\"),i=t(\"text-cache\"),o=t(\"binary-search-bounds\"),s=t(\"./shaders\");function l(t,e,r){this.plot=t,this.vbo=e,this.shader=r,this.tickOffset=[[],[]],this.tickX=[[],[]],this.labelOffset=[0,0],this.labelCount=[0,0]}var c,u,h,f,p,d,g=l.prototype;g.drawTicks=(c=[0,0],u=[0,0],h=[0,0],function(t){var e=this.plot,r=this.shader,n=this.tickX[t],a=this.tickOffset[t],i=e.gl,s=e.viewBox,l=e.dataBox,f=e.screenBox,p=e.pixelRatio,d=e.tickEnable,g=e.tickPad,v=e.tickColor,m=e.tickAngle,y=e.labelEnable,x=e.labelPad,b=e.labelColor,_=e.labelAngle,w=this.labelOffset[t],k=this.labelCount[t],T=o.lt(n,l[t]),A=o.le(n,l[t+2]);c[0]=c[1]=0,c[t]=1,u[t]=(s[2+t]+s[t])/(f[2+t]-f[t])-1;var M=2/f[2+(1^t)]-f[1^t];u[1^t]=M*s[1^t]-1,d[t]&&(u[1^t]-=M*p*g[t],T<A&&a[A]>a[T]&&(r.uniforms.dataAxis=c,r.uniforms.screenOffset=u,r.uniforms.color=v[t],r.uniforms.angle=m[t],i.drawArrays(i.TRIANGLES,a[T],a[A]-a[T]))),y[t]&&k&&(u[1^t]-=M*p*x[t],r.uniforms.dataAxis=h,r.uniforms.screenOffset=u,r.uniforms.color=b[t],r.uniforms.angle=_[t],i.drawArrays(i.TRIANGLES,w,k)),u[1^t]=M*s[2+(1^t)]-1,d[t+2]&&(u[1^t]+=M*p*g[t+2],T<A&&a[A]>a[T]&&(r.uniforms.dataAxis=c,r.uniforms.screenOffset=u,r.uniforms.color=v[t+2],r.uniforms.angle=m[t+2],i.drawArrays(i.TRIANGLES,a[T],a[A]-a[T]))),y[t+2]&&k&&(u[1^t]+=M*p*x[t+2],r.uniforms.dataAxis=h,r.uniforms.screenOffset=u,r.uniforms.color=b[t+2],r.uniforms.angle=_[t+2],i.drawArrays(i.TRIANGLES,w,k))}),g.drawTitle=function(){var t=[0,0],e=[0,0];return function(){var r=this.plot,n=this.shader,a=r.gl,i=r.screenBox,o=r.titleCenter,s=r.titleAngle,l=r.titleColor,c=r.pixelRatio;if(this.titleCount){for(var u=0;u<2;++u)e[u]=2*(o[u]*c-i[u])/(i[2+u]-i[u])-1;n.bind(),n.uniforms.dataAxis=t,n.uniforms.screenOffset=e,n.uniforms.angle=s,n.uniforms.color=l,a.drawArrays(a.TRIANGLES,this.titleOffset,this.titleCount)}}}(),g.bind=(f=[0,0],p=[0,0],d=[0,0],function(){var t=this.plot,e=this.shader,r=t._tickBounds,n=t.dataBox,a=t.screenBox,i=t.viewBox;e.bind();for(var o=0;o<2;++o){var s=r[o],l=r[o+2]-s,c=.5*(n[o+2]+n[o]),u=n[o+2]-n[o],h=i[o],g=i[o+2]-h,v=a[o],m=a[o+2]-v;p[o]=2*l/u*g/m,f[o]=2*(s-c)/u*g/m}d[1]=2*t.pixelRatio/(a[3]-a[1]),d[0]=d[1]*(a[3]-a[1])/(a[2]-a[0]),e.uniforms.dataScale=p,e.uniforms.dataShift=f,e.uniforms.textScale=d,this.vbo.bind(),e.attributes.textCoordinate.pointer()}),g.update=function(t){var e,r,n,a,o,s=[],l=t.ticks,c=t.bounds;for(o=0;o<2;++o){var u=[Math.floor(s.length/3)],h=[-1/0],f=l[o];for(e=0;e<f.length;++e){var p=f[e],d=p.x,g=p.text,v=p.font||\"sans-serif\";a=p.fontSize||12;for(var m=1/(c[o+2]-c[o]),y=c[o],x=g.split(\"\\n\"),b=0;b<x.length;b++)for(n=i(v,x[b]).data,r=0;r<n.length;r+=2)s.push(n[r]*a,-n[r+1]*a-b*a*1.2,(d-y)*m);u.push(Math.floor(s.length/3)),h.push(d)}this.tickOffset[o]=u,this.tickX[o]=h}for(o=0;o<2;++o){for(this.labelOffset[o]=Math.floor(s.length/3),n=i(t.labelFont[o],t.labels[o],{textAlign:\"center\"}).data,a=t.labelSize[o],e=0;e<n.length;e+=2)s.push(n[e]*a,-n[e+1]*a,0);this.labelCount[o]=Math.floor(s.length/3)-this.labelOffset[o]}for(this.titleOffset=Math.floor(s.length/3),n=i(t.titleFont,t.title).data,a=t.titleSize,e=0;e<n.length;e+=2)s.push(n[e]*a,-n[e+1]*a,0);this.titleCount=Math.floor(s.length/3)-this.titleOffset,this.vbo.update(s)},g.dispose=function(){this.vbo.dispose(),this.shader.dispose()}},{\"./shaders\":285,\"binary-search-bounds\":287,\"gl-buffer\":242,\"gl-shader\":302,\"text-cache\":537}],287:[function(t,e,r){arguments[4][112][0].apply(r,arguments)},{dup:112}],288:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.gl,r=n(e,[e.drawingBufferWidth,e.drawingBufferHeight]),c=new l(e,r);return c.grid=a(c),c.text=i(c),c.line=o(c),c.box=s(c),c.update(t),c};var n=t(\"gl-select-static\"),a=t(\"./lib/grid\"),i=t(\"./lib/text\"),o=t(\"./lib/line\"),s=t(\"./lib/box\");function l(t,e){this.gl=t,this.pickBuffer=e,this.screenBox=[0,0,t.drawingBufferWidth,t.drawingBufferHeight],this.viewBox=[0,0,0,0],this.dataBox=[-10,-10,10,10],this.gridLineEnable=[!0,!0],this.gridLineWidth=[1,1],this.gridLineColor=[[0,0,0,1],[0,0,0,1]],this.pixelRatio=1,this.tickMarkLength=[0,0,0,0],this.tickMarkWidth=[0,0,0,0],this.tickMarkColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.tickPad=[15,15,15,15],this.tickAngle=[0,0,0,0],this.tickEnable=[!0,!0,!0,!0],this.tickColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.labelPad=[15,15,15,15],this.labelAngle=[0,Math.PI/2,0,3*Math.PI/2],this.labelEnable=[!0,!0,!0,!0],this.labelColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.titleCenter=[0,0],this.titleEnable=!0,this.titleAngle=0,this.titleColor=[0,0,0,1],this.borderColor=[0,0,0,0],this.backgroundColor=[0,0,0,0],this.zeroLineEnable=[!0,!0],this.zeroLineWidth=[4,4],this.zeroLineColor=[[0,0,0,1],[0,0,0,1]],this.borderLineEnable=[!0,!0,!0,!0],this.borderLineWidth=[2,2,2,2],this.borderLineColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.grid=null,this.text=null,this.line=null,this.box=null,this.objects=[],this.overlays=[],this._tickBounds=[1/0,1/0,-1/0,-1/0],this.static=!1,this.dirty=!1,this.pickDirty=!1,this.pickDelay=120,this.pickRadius=10,this._pickTimeout=null,this._drawPick=this.drawPick.bind(this),this._depthCounter=0}var c=l.prototype;function u(t){for(var e=t.slice(),r=0;r<e.length;++r)e[r]=e[r].slice();return e}function h(t,e){return t.x-e.x}c.setDirty=function(){this.dirty=this.pickDirty=!0},c.setOverlayDirty=function(){this.dirty=!0},c.nextDepthValue=function(){return this._depthCounter++/65536},c.draw=function(){var t=this.gl,e=this.screenBox,r=this.viewBox,n=this.dataBox,a=this.pixelRatio,i=this.grid,o=this.line,s=this.text,l=this.objects;if(this._depthCounter=0,this.pickDirty&&(this._pickTimeout&&clearTimeout(this._pickTimeout),this.pickDirty=!1,this._pickTimeout=setTimeout(this._drawPick,this.pickDelay)),this.dirty){if(this.dirty=!1,t.bindFramebuffer(t.FRAMEBUFFER,null),t.enable(t.SCISSOR_TEST),t.disable(t.DEPTH_TEST),t.depthFunc(t.LESS),t.depthMask(!1),t.enable(t.BLEND),t.blendEquation(t.FUNC_ADD,t.FUNC_ADD),t.blendFunc(t.ONE,t.ONE_MINUS_SRC_ALPHA),this.borderColor){t.scissor(e[0],e[1],e[2]-e[0],e[3]-e[1]);var c=this.borderColor;t.clearColor(c[0]*c[3],c[1]*c[3],c[2]*c[3],c[3]),t.clear(t.COLOR_BUFFER_BIT|t.DEPTH_BUFFER_BIT)}t.scissor(r[0],r[1],r[2]-r[0],r[3]-r[1]),t.viewport(r[0],r[1],r[2]-r[0],r[3]-r[1]);var u=this.backgroundColor;t.clearColor(u[0]*u[3],u[1]*u[3],u[2]*u[3],u[3]),t.clear(t.COLOR_BUFFER_BIT),i.draw();var h=this.zeroLineEnable,f=this.zeroLineColor,p=this.zeroLineWidth;if(h[0]||h[1]){o.bind();for(var d=0;d<2;++d)if(h[d]&&n[d]<=0&&n[d+2]>=0){var g=e[d]-n[d]*(e[d+2]-e[d])/(n[d+2]-n[d]);0===d?o.drawLine(g,e[1],g,e[3],p[d],f[d]):o.drawLine(e[0],g,e[2],g,p[d],f[d])}}for(d=0;d<l.length;++d)l[d].draw();t.viewport(e[0],e[1],e[2]-e[0],e[3]-e[1]),t.scissor(e[0],e[1],e[2]-e[0],e[3]-e[1]),this.grid.drawTickMarks(),o.bind();var v=this.borderLineEnable,m=this.borderLineWidth,y=this.borderLineColor;for(v[1]&&o.drawLine(r[0],r[1]-.5*m[1]*a,r[0],r[3]+.5*m[3]*a,m[1],y[1]),v[0]&&o.drawLine(r[0]-.5*m[0]*a,r[1],r[2]+.5*m[2]*a,r[1],m[0],y[0]),v[3]&&o.drawLine(r[2],r[1]-.5*m[1]*a,r[2],r[3]+.5*m[3]*a,m[3],y[3]),v[2]&&o.drawLine(r[0]-.5*m[0]*a,r[3],r[2]+.5*m[2]*a,r[3],m[2],y[2]),s.bind(),d=0;d<2;++d)s.drawTicks(d);this.titleEnable&&s.drawTitle();var x=this.overlays;for(d=0;d<x.length;++d)x[d].draw();t.disable(t.SCISSOR_TEST),t.disable(t.BLEND),t.depthMask(!0)}},c.drawPick=function(){if(!this.static){var t=this.pickBuffer;this.gl;this._pickTimeout=null,t.begin();for(var e=1,r=this.objects,n=0;n<r.length;++n)e=r[n].drawPick(e);t.end()}},c.pick=function(t,e){if(!this.static){var r=this.pixelRatio,n=this.pickPixelRatio,a=this.viewBox,i=0|Math.round((t-a[0]/r)*n),o=0|Math.round((e-a[1]/r)*n),s=this.pickBuffer.query(i,o,this.pickRadius);if(!s)return null;for(var l=s.id+(s.value[0]<<8)+(s.value[1]<<16)+(s.value[2]<<24),c=this.objects,u=0;u<c.length;++u){var h=c[u].pick(i,o,l);if(h)return h}return null}},c.setScreenBox=function(t){var e=this.screenBox,r=this.pixelRatio;e[0]=0|Math.round(t[0]*r),e[1]=0|Math.round(t[1]*r),e[2]=0|Math.round(t[2]*r),e[3]=0|Math.round(t[3]*r),this.setDirty()},c.setDataBox=function(t){var e=this.dataBox;(e[0]!==t[0]||e[1]!==t[1]||e[2]!==t[2]||e[3]!==t[3])&&(e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],this.setDirty())},c.setViewBox=function(t){var e=this.pixelRatio,r=this.viewBox;r[0]=0|Math.round(t[0]*e),r[1]=0|Math.round(t[1]*e),r[2]=0|Math.round(t[2]*e),r[3]=0|Math.round(t[3]*e);var n=this.pickPixelRatio;this.pickBuffer.shape=[0|Math.round((t[2]-t[0])*n),0|Math.round((t[3]-t[1])*n)],this.setDirty()},c.update=function(t){t=t||{};var e=this.gl;this.pixelRatio=t.pixelRatio||1;var r=this.pixelRatio;this.pickPixelRatio=Math.max(r,1),this.setScreenBox(t.screenBox||[0,0,e.drawingBufferWidth/r,e.drawingBufferHeight/r]);this.screenBox;this.setViewBox(t.viewBox||[.125*(this.screenBox[2]-this.screenBox[0])/r,.125*(this.screenBox[3]-this.screenBox[1])/r,.875*(this.screenBox[2]-this.screenBox[0])/r,.875*(this.screenBox[3]-this.screenBox[1])/r]);var n=this.viewBox,a=(n[2]-n[0])/(n[3]-n[1]);this.setDataBox(t.dataBox||[-10,-10/a,10,10/a]),this.borderColor=!1!==t.borderColor&&(t.borderColor||[0,0,0,0]).slice(),this.backgroundColor=(t.backgroundColor||[0,0,0,0]).slice(),this.gridLineEnable=(t.gridLineEnable||[!0,!0]).slice(),this.gridLineWidth=(t.gridLineWidth||[1,1]).slice(),this.gridLineColor=u(t.gridLineColor||[[.5,.5,.5,1],[.5,.5,.5,1]]),this.zeroLineEnable=(t.zeroLineEnable||[!0,!0]).slice(),this.zeroLineWidth=(t.zeroLineWidth||[4,4]).slice(),this.zeroLineColor=u(t.zeroLineColor||[[0,0,0,1],[0,0,0,1]]),this.tickMarkLength=(t.tickMarkLength||[0,0,0,0]).slice(),this.tickMarkWidth=(t.tickMarkWidth||[0,0,0,0]).slice(),this.tickMarkColor=u(t.tickMarkColor||[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]]),this.titleCenter=(t.titleCenter||[.5*(n[0]+n[2])/r,(n[3]+120)/r]).slice(),this.titleEnable=!(\"titleEnable\"in t&&!t.titleEnable),this.titleAngle=t.titleAngle||0,this.titleColor=(t.titleColor||[0,0,0,1]).slice(),this.labelPad=(t.labelPad||[15,15,15,15]).slice(),this.labelAngle=(t.labelAngle||[0,Math.PI/2,0,3*Math.PI/2]).slice(),this.labelEnable=(t.labelEnable||[!0,!0,!0,!0]).slice(),this.labelColor=u(t.labelColor||[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]]),this.tickPad=(t.tickPad||[15,15,15,15]).slice(),this.tickAngle=(t.tickAngle||[0,0,0,0]).slice(),this.tickEnable=(t.tickEnable||[!0,!0,!0,!0]).slice(),this.tickColor=u(t.tickColor||[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]]),this.borderLineEnable=(t.borderLineEnable||[!0,!0,!0,!0]).slice(),this.borderLineWidth=(t.borderLineWidth||[2,2,2,2]).slice(),this.borderLineColor=u(t.borderLineColor||[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]]);var i=t.ticks||[[],[]],o=this._tickBounds;o[0]=o[1]=1/0,o[2]=o[3]=-1/0;for(var s=0;s<2;++s){var l=i[s].slice(0);0!==l.length&&(l.sort(h),o[s]=Math.min(o[s],l[0].x),o[s+2]=Math.max(o[s+2],l[l.length-1].x))}this.grid.update({bounds:o,ticks:i}),this.text.update({bounds:o,ticks:i,labels:t.labels||[\"x\",\"y\"],labelSize:t.labelSize||[12,12],labelFont:t.labelFont||[\"sans-serif\",\"sans-serif\"],title:t.title||\"\",titleSize:t.titleSize||18,titleFont:t.titleFont||\"sans-serif\"}),this.static=!!t.static,this.setDirty()},c.dispose=function(){this.box.dispose(),this.grid.dispose(),this.text.dispose(),this.line.dispose();for(var t=this.objects.length-1;t>=0;--t)this.objects[t].dispose();this.objects.length=0;for(t=this.overlays.length-1;t>=0;--t)this.overlays[t].dispose();this.overlays.length=0,this.gl=null},c.addObject=function(t){this.objects.indexOf(t)<0&&(this.objects.push(t),this.setDirty())},c.removeObject=function(t){for(var e=this.objects,r=0;r<e.length;++r)if(e[r]===t){e.splice(r,1),this.setDirty();break}},c.addOverlay=function(t){this.overlays.indexOf(t)<0&&(this.overlays.push(t),this.setOverlayDirty())},c.removeOverlay=function(t){for(var e=this.overlays,r=0;r<e.length;++r)if(e[r]===t){e.splice(r,1),this.setOverlayDirty();break}}},{\"./lib/box\":282,\"./lib/grid\":283,\"./lib/line\":284,\"./lib/text\":286,\"gl-select-static\":301}],289:[function(t,e,r){\"use strict\";e.exports=function(t,e){t=t||document.body,e=e||{};var r=[.01,1/0];\"distanceLimits\"in e&&(r[0]=e.distanceLimits[0],r[1]=e.distanceLimits[1]);\"zoomMin\"in e&&(r[0]=e.zoomMin);\"zoomMax\"in e&&(r[1]=e.zoomMax);var c=a({center:e.center||[0,0,0],up:e.up||[0,1,0],eye:e.eye||[0,0,10],mode:e.mode||\"orbit\",distanceLimits:r}),u=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],h=0,f=t.clientWidth,p=t.clientHeight,d={keyBindingMode:\"rotate\",enableWheel:!0,view:c,element:t,delay:e.delay||16,rotateSpeed:e.rotateSpeed||1,zoomSpeed:e.zoomSpeed||1,translateSpeed:e.translateSpeed||1,flipX:!!e.flipX,flipY:!!e.flipY,modes:c.modes,_ortho:e._ortho||e.projection&&\"orthographic\"===e.projection.type||!1,tick:function(){var e=n(),r=this.delay,a=e-2*r;c.idle(e-r),c.recalcMatrix(a),c.flush(e-(100+2*r));for(var i=!0,o=c.computedMatrix,s=0;s<16;++s)i=i&&u[s]===o[s],u[s]=o[s];var l=t.clientWidth===f&&t.clientHeight===p;return f=t.clientWidth,p=t.clientHeight,i?!l:(h=Math.exp(c.computedRadius[0]),!0)},lookAt:function(t,e,r){c.lookAt(c.lastT(),t,e,r)},rotate:function(t,e,r){c.rotate(c.lastT(),t,e,r)},pan:function(t,e,r){c.pan(c.lastT(),t,e,r)},translate:function(t,e,r){c.translate(c.lastT(),t,e,r)}};return Object.defineProperties(d,{matrix:{get:function(){return c.computedMatrix},set:function(t){return c.setMatrix(c.lastT(),t),c.computedMatrix},enumerable:!0},mode:{get:function(){return c.getMode()},set:function(t){var e=c.computedUp.slice(),r=c.computedEye.slice(),a=c.computedCenter.slice();if(c.setMode(t),\"turntable\"===t){var i=n();c._active.lookAt(i,r,a,e),c._active.lookAt(i+500,r,a,[0,0,1]),c._active.flush(i)}return c.getMode()},enumerable:!0},center:{get:function(){return c.computedCenter},set:function(t){return c.lookAt(c.lastT(),null,t),c.computedCenter},enumerable:!0},eye:{get:function(){return c.computedEye},set:function(t){return c.lookAt(c.lastT(),t),c.computedEye},enumerable:!0},up:{get:function(){return c.computedUp},set:function(t){return c.lookAt(c.lastT(),null,null,t),c.computedUp},enumerable:!0},distance:{get:function(){return h},set:function(t){return c.setDistance(c.lastT(),t),t},enumerable:!0},distanceLimits:{get:function(){return c.getDistanceLimits(r)},set:function(t){return c.setDistanceLimits(t),t},enumerable:!0}}),t.addEventListener(\"contextmenu\",function(t){return t.preventDefault(),!1}),d._lastX=-1,d._lastY=-1,d._lastMods={shift:!1,control:!1,alt:!1,meta:!1},d.enableMouseListeners=function(){function e(e,r,a,i){var o=d.keyBindingMode;if(!1!==o){var s=\"rotate\"===o,l=\"pan\"===o,u=\"zoom\"===o,f=!!i.control,p=!!i.alt,g=!!i.shift,v=!!(1&e),m=!!(2&e),y=!!(4&e),x=1/t.clientHeight,b=x*(r-d._lastX),_=x*(a-d._lastY),w=d.flipX?1:-1,k=d.flipY?1:-1,T=Math.PI*d.rotateSpeed,A=n();if(-1!==d._lastX&&-1!==d._lastY&&((s&&v&&!f&&!p&&!g||v&&!f&&!p&&g)&&c.rotate(A,w*T*b,-k*T*_,0),(l&&v&&!f&&!p&&!g||m||v&&f&&!p&&!g)&&c.pan(A,-d.translateSpeed*b*h,d.translateSpeed*_*h,0),u&&v&&!f&&!p&&!g||y||v&&!f&&p&&!g)){var M=-d.zoomSpeed*_/window.innerHeight*(A-c.lastT())*100;c.pan(A,0,0,h*(Math.exp(M)-1))}return d._lastX=r,d._lastY=a,d._lastMods=i,!0}}d.mouseListener=i(t,e),t.addEventListener(\"touchstart\",function(r){var n=s(r.changedTouches[0],t);e(0,n[0],n[1],d._lastMods),e(1,n[0],n[1],d._lastMods),r.preventDefault()},!!l&&{passive:!1}),t.addEventListener(\"touchmove\",function(r){var n=s(r.changedTouches[0],t);e(1,n[0],n[1],d._lastMods),r.preventDefault()},!!l&&{passive:!1}),t.addEventListener(\"touchend\",function(t){e(0,d._lastX,d._lastY,d._lastMods),t.preventDefault()},!!l&&{passive:!1}),d.wheelListener=o(t,function(t,e){if(!1!==d.keyBindingMode&&d.enableWheel){var r=d.flipX?1:-1,a=d.flipY?1:-1,i=n();if(Math.abs(t)>Math.abs(e))c.rotate(i,0,0,-t*r*Math.PI*d.rotateSpeed/window.innerWidth);else if(!d._ortho){var o=-d.zoomSpeed*a*e/window.innerHeight*(i-c.lastT())/20;c.pan(i,0,0,h*(Math.exp(o)-1))}}},!0)},d.enableMouseListeners(),d};var n=t(\"right-now\"),a=t(\"3d-view\"),i=t(\"mouse-change\"),o=t(\"mouse-wheel\"),s=t(\"mouse-event-offset\"),l=t(\"has-passive-events\")},{\"3d-view\":53,\"has-passive-events\":412,\"mouse-change\":436,\"mouse-event-offset\":437,\"mouse-wheel\":439,\"right-now\":505}],290:[function(t,e,r){var n=t(\"glslify\"),a=t(\"gl-shader\"),i=n([\"precision mediump float;\\n#define GLSLIFY 1\\nattribute vec2 position;\\nvarying vec2 uv;\\nvoid main() {\\n  uv = position;\\n  gl_Position = vec4(position, 0, 1);\\n}\"]),o=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nuniform sampler2D accumBuffer;\\nvarying vec2 uv;\\n\\nvoid main() {\\n  vec4 accum = texture2D(accumBuffer, 0.5 * (uv + 1.0));\\n  gl_FragColor = min(vec4(1,1,1,1), accum);\\n}\"]);e.exports=function(t){return a(t,i,o,null,[{name:\"position\",type:\"vec2\"}])}},{\"gl-shader\":302,glslify:410}],291:[function(t,e,r){\"use strict\";var n=t(\"./camera.js\"),a=t(\"gl-axes3d\"),i=t(\"gl-axes3d/properties\"),o=t(\"gl-spikes3d\"),s=t(\"gl-select-static\"),l=t(\"gl-fbo\"),c=t(\"a-big-triangle\"),u=t(\"mouse-change\"),h=t(\"mouse-wheel\"),f=t(\"gl-mat4/perspective\"),p=t(\"gl-mat4/ortho\"),d=t(\"./lib/shader\"),g=t(\"is-mobile\")({tablet:!0});function v(){this.mouse=[-1,-1],this.screen=null,this.distance=1/0,this.index=null,this.dataCoordinate=null,this.dataPosition=null,this.object=null,this.data=null}function m(t){var e=Math.round(Math.log(Math.abs(t))/Math.log(10));if(e<0){var r=Math.round(Math.pow(10,-e));return Math.ceil(t*r)/r}if(e>0){r=Math.round(Math.pow(10,e));return Math.ceil(t/r)*r}return Math.ceil(t)}function y(t){return\"boolean\"!=typeof t||t}e.exports={createScene:function(t){(t=t||{}).camera=t.camera||{};var e=t.canvas;if(!e)if(e=document.createElement(\"canvas\"),t.container){var r=t.container;r.appendChild(e)}else document.body.appendChild(e);var x=t.gl;x||(x=function(t,e){var r=null;try{(r=t.getContext(\"webgl\",e))||(r=t.getContext(\"experimental-webgl\",e))}catch(t){return null}return r}(e,t.glOptions||{premultipliedAlpha:!0,antialias:!0,preserveDrawingBuffer:g}));if(!x)throw new Error(\"webgl not supported\");var b=t.bounds||[[-10,-10,-10],[10,10,10]],_=new v,w=l(x,[x.drawingBufferWidth,x.drawingBufferHeight],{preferFloat:!g}),k=d(x),T=t.cameraObject&&!0===t.cameraObject._ortho||t.camera.projection&&\"orthographic\"===t.camera.projection.type||!1,A={eye:t.camera.eye||[2,0,0],center:t.camera.center||[0,0,0],up:t.camera.up||[0,1,0],zoomMin:t.camera.zoomMax||.1,zoomMax:t.camera.zoomMin||100,mode:t.camera.mode||\"turntable\",_ortho:T},M=t.axes||{},S=a(x,M);S.enable=!M.disable;var E=t.spikes||{},C=o(x,E),L=[],P=[],O=[],I=[],z=!0,D=!0,R=new Array(16),F=new Array(16),B={view:null,projection:R,model:F,_ortho:!1},D=!0,N=[x.drawingBufferWidth,x.drawingBufferHeight],j=t.cameraObject||n(e,A),V={gl:x,contextLost:!1,pixelRatio:t.pixelRatio||1,canvas:e,selection:_,camera:j,axes:S,axesPixels:null,spikes:C,bounds:b,objects:L,shape:N,aspect:t.aspectRatio||[1,1,1],pickRadius:t.pickRadius||10,zNear:t.zNear||.01,zFar:t.zFar||1e3,fovy:t.fovy||Math.PI/4,clearColor:t.clearColor||[0,0,0,0],autoResize:y(t.autoResize),autoBounds:y(t.autoBounds),autoScale:!!t.autoScale,autoCenter:y(t.autoCenter),clipToBounds:y(t.clipToBounds),snapToData:!!t.snapToData,onselect:t.onselect||null,onrender:t.onrender||null,onclick:t.onclick||null,cameraParams:B,oncontextloss:null,mouseListener:null,_stopped:!1},U=[x.drawingBufferWidth/V.pixelRatio|0,x.drawingBufferHeight/V.pixelRatio|0];function q(){if(!V._stopped&&V.autoResize){var t=e.parentNode,r=1,n=1;t&&t!==document.body?(r=t.clientWidth,n=t.clientHeight):(r=window.innerWidth,n=window.innerHeight);var a=0|Math.ceil(r*V.pixelRatio),i=0|Math.ceil(n*V.pixelRatio);if(a!==e.width||i!==e.height){e.width=a,e.height=i;var o=e.style;o.position=o.position||\"absolute\",o.left=\"0px\",o.top=\"0px\",o.width=r+\"px\",o.height=n+\"px\",z=!0}}}V.autoResize&&q();function H(){for(var t=L.length,e=I.length,r=0;r<e;++r)O[r]=0;t:for(var r=0;r<t;++r){var n=L[r],a=n.pickSlots;if(a){for(var i=0;i<e;++i)if(O[i]+a<255){P[r]=i,n.setPickBase(O[i]+1),O[i]+=a;continue t}var o=s(x,N);P[r]=e,I.push(o),O.push(a),n.setPickBase(1),e+=1}else P[r]=-1}for(;e>0&&0===O[e-1];)O.pop(),I.pop().dispose()}function G(){if(V.contextLost)return!0;x.isContextLost()&&(V.contextLost=!0,V.mouseListener.enabled=!1,V.selection.object=null,V.oncontextloss&&V.oncontextloss())}window.addEventListener(\"resize\",q),V.update=function(t){V._stopped||(t=t||{},z=!0,D=!0)},V.add=function(t){V._stopped||(t.axes=S,L.push(t),P.push(-1),z=!0,D=!0,H())},V.remove=function(t){if(!V._stopped){var e=L.indexOf(t);e<0||(L.splice(e,1),P.pop(),z=!0,D=!0,H())}},V.dispose=function(){if(!V._stopped&&(V._stopped=!0,window.removeEventListener(\"resize\",q),e.removeEventListener(\"webglcontextlost\",G),V.mouseListener.enabled=!1,!V.contextLost)){S.dispose(),C.dispose();for(var t=0;t<L.length;++t)L[t].dispose();w.dispose();for(var t=0;t<I.length;++t)I[t].dispose();k.dispose(),x=null,S=null,C=null,L=[]}},V.wheelListener=h(e,function(t,e){if(!1!==j.keyBindingMode&&j.enableWheel&&j._ortho){var r=t>e?1.1:1/1.1;V.aspect[0]*=r,V.aspect[1]*=r,V.aspect[2]*=r,V.redraw()}},!0),V._mouseRotating=!1,V._prevButtons=0,V.enableMouseListeners=function(){V.mouseListener=u(e,function(t,e,r){if(!V._stopped){var n=I.length,a=L.length,i=_.object;_.distance=1/0,_.mouse[0]=e,_.mouse[1]=r,_.object=null,_.screen=null,_.dataCoordinate=_.dataPosition=null;var o=!1;if(t&&V._prevButtons)V._mouseRotating=!0;else{V._mouseRotating&&(D=!0),V._mouseRotating=!1;for(var s=0;s<n;++s){var l=I[s].query(e,U[1]-r-1,V.pickRadius);if(l){if(l.distance>_.distance)continue;for(var c=0;c<a;++c){var u=L[c];if(P[c]===s){var h=u.pick(l);h&&(_.buttons=t,_.screen=l.coord,_.distance=l.distance,_.object=u,_.index=h.distance,_.dataPosition=h.position,_.dataCoordinate=h.dataCoordinate,_.data=h,o=!0)}}}}}i&&i!==_.object&&(i.highlight&&i.highlight(null),z=!0),_.object&&(_.object.highlight&&_.object.highlight(_.data),z=!0),(o=o||_.object!==i)&&V.onselect&&V.onselect(_),1&t&&!(1&V._prevButtons)&&V.onclick&&V.onclick(_),V._prevButtons=t}})},e.addEventListener(\"webglcontextlost\",G);var Y=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],W=[Y[0].slice(),Y[1].slice()];function X(){if(!G()){q();var t=V.camera.tick();B.view=V.camera.matrix,z=z||t,D=D||t,S.pixelRatio=V.pixelRatio,C.pixelRatio=V.pixelRatio;var e=L.length,r=Y[0],n=Y[1];r[0]=r[1]=r[2]=1/0,n[0]=n[1]=n[2]=-1/0;for(var a=0;a<e;++a){var o=L[a];o.pixelRatio=V.pixelRatio,o.axes=V.axes,z=z||!!o.dirty,D=D||!!o.dirty;var s=o.bounds;if(s)for(var l=s[0],u=s[1],h=0;h<3;++h)r[h]=Math.min(r[h],l[h]),n[h]=Math.max(n[h],u[h])}var d=V.bounds;if(V.autoBounds)for(var h=0;h<3;++h){if(n[h]<r[h])r[h]=-1,n[h]=1;else{r[h]===n[h]&&(r[h]-=1,n[h]+=1);var g=.05*(n[h]-r[h]);r[h]=r[h]-g,n[h]=n[h]+g}d[0][h]=r[h],d[1][h]=n[h]}for(var v=!1,h=0;h<3;++h)v=v||W[0][h]!==d[0][h]||W[1][h]!==d[1][h],W[0][h]=d[0][h],W[1][h]=d[1][h];if(D=D||v,z=z||v){if(v){for(var y=[0,0,0],a=0;a<3;++a)y[a]=m((d[1][a]-d[0][a])/10);S.autoTicks?S.update({bounds:d,tickSpacing:y}):S.update({bounds:d})}var b=x.drawingBufferWidth,A=x.drawingBufferHeight;N[0]=b,N[1]=A,U[0]=0|Math.max(b/V.pixelRatio,1),U[1]=0|Math.max(A/V.pixelRatio,1),T?(p(R,-b/A,b/A,-1,1,V.zNear,V.zFar),B._ortho=!0):(f(R,V.fovy,b/A,V.zNear,V.zFar),B._ortho=!1);for(var a=0;a<16;++a)F[a]=0;F[15]=1;for(var M=0,a=0;a<3;++a)M=Math.max(M,d[1][a]-d[0][a]);for(var a=0;a<3;++a)V.autoScale?F[5*a]=V.aspect[a]/(d[1][a]-d[0][a]):F[5*a]=1/M,V.autoCenter&&(F[12+a]=.5*-F[5*a]*(d[0][a]+d[1][a]));for(var a=0;a<e;++a){var o=L[a];o.axesBounds=d,V.clipToBounds&&(o.clipBounds=d)}_.object&&(V.snapToData?C.position=_.dataCoordinate:C.position=_.dataPosition,C.bounds=d),D&&(D=!1,function(){if(G())return;x.colorMask(!0,!0,!0,!0),x.depthMask(!0),x.disable(x.BLEND),x.enable(x.DEPTH_TEST),x.depthFunc(x.LEQUAL);for(var t=L.length,e=I.length,r=0;r<e;++r){var n=I[r];n.shape=U,n.begin();for(var a=0;a<t;++a)if(P[a]===r){var i=L[a];i.drawPick&&(i.pixelRatio=1,i.drawPick(B))}n.end()}}()),V.axesPixels=i(V.axes,B,b,A),V.onrender&&V.onrender(),x.bindFramebuffer(x.FRAMEBUFFER,null),x.viewport(0,0,b,A);var E=V.clearColor;x.clearColor(E[0],E[1],E[2],E[3]),x.clear(x.COLOR_BUFFER_BIT|x.DEPTH_BUFFER_BIT),x.depthMask(!0),x.colorMask(!0,!0,!0,!0),x.enable(x.DEPTH_TEST),x.depthFunc(x.LEQUAL),x.disable(x.BLEND),x.disable(x.CULL_FACE);var O=!1;S.enable&&(O=O||S.isTransparent(),S.draw(B)),C.axes=S,_.object&&C.draw(B),x.disable(x.CULL_FACE);for(var a=0;a<e;++a){var o=L[a];o.axes=S,o.pixelRatio=V.pixelRatio,o.isOpaque&&o.isOpaque()&&o.draw(B),o.isTransparent&&o.isTransparent()&&(O=!0)}if(O){w.shape=N,w.bind(),x.clear(x.DEPTH_BUFFER_BIT),x.colorMask(!1,!1,!1,!1),x.depthMask(!0),x.depthFunc(x.LESS),S.enable&&S.isTransparent()&&S.drawTransparent(B);for(var a=0;a<e;++a){var o=L[a];o.isOpaque&&o.isOpaque()&&o.draw(B)}x.enable(x.BLEND),x.blendEquation(x.FUNC_ADD),x.blendFunc(x.ONE,x.ONE_MINUS_SRC_ALPHA),x.colorMask(!0,!0,!0,!0),x.depthMask(!1),x.clearColor(0,0,0,0),x.clear(x.COLOR_BUFFER_BIT),S.isTransparent()&&S.drawTransparent(B);for(var a=0;a<e;++a){var o=L[a];o.isTransparent&&o.isTransparent()&&o.drawTransparent(B)}x.bindFramebuffer(x.FRAMEBUFFER,null),x.blendFunc(x.ONE,x.ONE_MINUS_SRC_ALPHA),x.disable(x.DEPTH_TEST),k.bind(),w.color[0].bind(0),k.uniforms.accumBuffer=0,c(x),x.disable(x.BLEND)}z=!1;for(var a=0;a<e;++a)L[a].dirty=!1}}}return V.enableMouseListeners(),function t(){V._stopped||V.contextLost||(X(),requestAnimationFrame(t))}(),V.redraw=function(){V._stopped||(z=!0,X())},V},createCamera:n}},{\"./camera.js\":289,\"./lib/shader\":290,\"a-big-triangle\":60,\"gl-axes3d\":234,\"gl-axes3d/properties\":241,\"gl-fbo\":250,\"gl-mat4/ortho\":269,\"gl-mat4/perspective\":270,\"gl-select-static\":301,\"gl-spikes3d\":311,\"is-mobile\":421,\"mouse-change\":436,\"mouse-wheel\":439}],292:[function(t,e,r){var n=t(\"glslify\");r.pointVertex=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec2 position;\\n\\nuniform mat3 matrix;\\nuniform float pointSize;\\nuniform float pointCloud;\\n\\nhighp float rand(vec2 co) {\\n  highp float a = 12.9898;\\n  highp float b = 78.233;\\n  highp float c = 43758.5453;\\n  highp float d = dot(co.xy, vec2(a, b));\\n  highp float e = mod(d, 3.14);\\n  return fract(sin(e) * c);\\n}\\n\\nvoid main() {\\n  vec3 hgPosition = matrix * vec3(position, 1);\\n  gl_Position  = vec4(hgPosition.xy, 0, hgPosition.z);\\n    // if we don't jitter the point size a bit, overall point cloud\\n    // saturation 'jumps' on zooming, which is disturbing and confusing\\n  gl_PointSize = pointSize * ((19.5 + rand(position)) / 20.0);\\n  if(pointCloud != 0.0) { // pointCloud is truthy\\n    // get the same square surface as circle would be\\n    gl_PointSize *= 0.886;\\n  }\\n}\"]),r.pointFragment=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nuniform vec4 color, borderColor;\\nuniform float centerFraction;\\nuniform float pointCloud;\\n\\nvoid main() {\\n  float radius;\\n  vec4 baseColor;\\n  if(pointCloud != 0.0) { // pointCloud is truthy\\n    if(centerFraction == 1.0) {\\n      gl_FragColor = color;\\n    } else {\\n      gl_FragColor = mix(borderColor, color, centerFraction);\\n    }\\n  } else {\\n    radius = length(2.0 * gl_PointCoord.xy - 1.0);\\n    if(radius > 1.0) {\\n      discard;\\n    }\\n    baseColor = mix(borderColor, color, step(radius, centerFraction));\\n    gl_FragColor = vec4(baseColor.rgb * baseColor.a, baseColor.a);\\n  }\\n}\\n\"]),r.pickVertex=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec2 position;\\nattribute vec4 pickId;\\n\\nuniform mat3 matrix;\\nuniform float pointSize;\\nuniform vec4 pickOffset;\\n\\nvarying vec4 fragId;\\n\\nvoid main() {\\n  vec3 hgPosition = matrix * vec3(position, 1);\\n  gl_Position  = vec4(hgPosition.xy, 0, hgPosition.z);\\n  gl_PointSize = pointSize;\\n\\n  vec4 id = pickId + pickOffset;\\n  id.y += floor(id.x / 256.0);\\n  id.x -= floor(id.x / 256.0) * 256.0;\\n\\n  id.z += floor(id.y / 256.0);\\n  id.y -= floor(id.y / 256.0) * 256.0;\\n\\n  id.w += floor(id.z / 256.0);\\n  id.z -= floor(id.z / 256.0) * 256.0;\\n\\n  fragId = id;\\n}\\n\"]),r.pickFragment=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nvarying vec4 fragId;\\n\\nvoid main() {\\n  float radius = length(2.0 * gl_PointCoord.xy - 1.0);\\n  if(radius > 1.0) {\\n    discard;\\n  }\\n  gl_FragColor = fragId / 255.0;\\n}\\n\"])},{glslify:410}],293:[function(t,e,r){\"use strict\";var n=t(\"gl-shader\"),a=t(\"gl-buffer\"),i=t(\"typedarray-pool\"),o=t(\"./lib/shader\");function s(t,e,r,n,a){this.plot=t,this.offsetBuffer=e,this.pickBuffer=r,this.shader=n,this.pickShader=a,this.sizeMin=.5,this.sizeMinCap=2,this.sizeMax=20,this.areaRatio=1,this.pointCount=0,this.color=[1,0,0,1],this.borderColor=[0,0,0,1],this.blend=!1,this.pickOffset=0,this.points=null}e.exports=function(t,e){var r=t.gl,i=a(r),l=a(r),c=n(r,o.pointVertex,o.pointFragment),u=n(r,o.pickVertex,o.pickFragment),h=new s(t,i,l,c,u);return h.update(e),t.addObject(h),h};var l,c,u=s.prototype;u.dispose=function(){this.shader.dispose(),this.pickShader.dispose(),this.offsetBuffer.dispose(),this.pickBuffer.dispose(),this.plot.removeObject(this)},u.update=function(t){var e;function r(e,r){return e in t?t[e]:r}t=t||{},this.sizeMin=r(\"sizeMin\",.5),this.sizeMax=r(\"sizeMax\",20),this.color=r(\"color\",[1,0,0,1]).slice(),this.areaRatio=r(\"areaRatio\",1),this.borderColor=r(\"borderColor\",[0,0,0,1]).slice(),this.blend=r(\"blend\",!1);var n=t.positions.length>>>1,a=t.positions instanceof Float32Array,o=t.idToIndex instanceof Int32Array&&t.idToIndex.length>=n,s=t.positions,l=a?s:i.mallocFloat32(s.length),c=o?t.idToIndex:i.mallocInt32(n);if(a||l.set(s),!o)for(l.set(s),e=0;e<n;e++)c[e]=e;this.points=s,this.offsetBuffer.update(l),this.pickBuffer.update(c),a||i.free(l),o||i.free(c),this.pointCount=n,this.pickOffset=0},u.unifiedDraw=(l=[1,0,0,0,1,0,0,0,1],c=[0,0,0,0],function(t){var e=void 0!==t,r=e?this.pickShader:this.shader,n=this.plot.gl,a=this.plot.dataBox;if(0===this.pointCount)return t;var i=a[2]-a[0],o=a[3]-a[1],s=function(t,e){var r,n=0,a=t.length>>>1;for(r=0;r<a;r++){var i=t[2*r],o=t[2*r+1];i>=e[0]&&i<=e[2]&&o>=e[1]&&o<=e[3]&&n++}return n}(this.points,a),u=this.plot.pickPixelRatio*Math.max(Math.min(this.sizeMinCap,this.sizeMin),Math.min(this.sizeMax,this.sizeMax/Math.pow(s,.33333)));l[0]=2/i,l[4]=2/o,l[6]=-2*a[0]/i-1,l[7]=-2*a[1]/o-1,this.offsetBuffer.bind(),r.bind(),r.attributes.position.pointer(),r.uniforms.matrix=l,r.uniforms.color=this.color,r.uniforms.borderColor=this.borderColor,r.uniforms.pointCloud=u<5,r.uniforms.pointSize=u,r.uniforms.centerFraction=Math.min(1,Math.max(0,Math.sqrt(1-this.areaRatio))),e&&(c[0]=255&t,c[1]=t>>8&255,c[2]=t>>16&255,c[3]=t>>24&255,this.pickBuffer.bind(),r.attributes.pickId.pointer(n.UNSIGNED_BYTE),r.uniforms.pickOffset=c,this.pickOffset=t);var h=n.getParameter(n.BLEND),f=n.getParameter(n.DITHER);return h&&!this.blend&&n.disable(n.BLEND),f&&n.disable(n.DITHER),n.drawArrays(n.POINTS,0,this.pointCount),h&&!this.blend&&n.enable(n.BLEND),f&&n.enable(n.DITHER),t+this.pointCount}),u.draw=u.unifiedDraw,u.drawPick=u.unifiedDraw,u.pick=function(t,e,r){var n=this.pickOffset,a=this.pointCount;if(r<n||r>=n+a)return null;var i=r-n,o=this.points;return{object:this,pointId:i,dataCoord:[o[2*i],o[2*i+1]]}}},{\"./lib/shader\":292,\"gl-buffer\":242,\"gl-shader\":302,\"typedarray-pool\":546}],294:[function(t,e,r){e.exports=function(t,e,r,n){var a,i,o,s,l,c=e[0],u=e[1],h=e[2],f=e[3],p=r[0],d=r[1],g=r[2],v=r[3];(i=c*p+u*d+h*g+f*v)<0&&(i=-i,p=-p,d=-d,g=-g,v=-v);1-i>1e-6?(a=Math.acos(i),o=Math.sin(a),s=Math.sin((1-n)*a)/o,l=Math.sin(n*a)/o):(s=1-n,l=n);return t[0]=s*c+l*p,t[1]=s*u+l*d,t[2]=s*h+l*g,t[3]=s*f+l*v,t}},{}],295:[function(t,e,r){\"use strict\";e.exports=function(t){return t||0===t?t.toString():\"\"}},{}],296:[function(t,e,r){\"use strict\";var n=t(\"vectorize-text\");e.exports=function(t,e,r){var i=a[e];i||(i=a[e]={});if(t in i)return i[t];var o={textAlign:\"center\",textBaseline:\"middle\",lineHeight:1,font:e,lineSpacing:1.25,styletags:{breaklines:!0,bolds:!0,italics:!0,subscripts:!0,superscripts:!0},triangles:!0},s=n(t,o);o.triangles=!1;var l,c,u=n(t,o);if(r&&1!==r){for(l=0;l<s.positions.length;++l)for(c=0;c<s.positions[l].length;++c)s.positions[l][c]/=r;for(l=0;l<u.positions.length;++l)for(c=0;c<u.positions[l].length;++c)u.positions[l][c]/=r}var h=[[1/0,1/0],[-1/0,-1/0]],f=u.positions.length;for(l=0;l<f;++l){var p=u.positions[l];for(c=0;c<2;++c)h[0][c]=Math.min(h[0][c],p[c]),h[1][c]=Math.max(h[1][c],p[c])}return i[t]=[s,u,h]};var a={}},{\"vectorize-text\":551}],297:[function(t,e,r){var n=t(\"gl-shader\"),a=t(\"glslify\"),i=a([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nattribute vec3 position;\\nattribute vec4 color;\\nattribute vec2 glyph;\\nattribute vec4 id;\\n\\nuniform vec4 highlightId;\\nuniform float highlightScale;\\nuniform mat4 model, view, projection;\\nuniform vec3 clipBounds[2];\\n\\nvarying vec4 interpColor;\\nvarying vec4 pickId;\\nvarying vec3 dataCoordinate;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], position)) {\\n\\n    gl_Position = vec4(0,0,0,0);\\n  } else {\\n    float scale = 1.0;\\n    if(distance(highlightId, id) < 0.0001) {\\n      scale = highlightScale;\\n    }\\n\\n    vec4 worldPosition = model * vec4(position, 1);\\n    vec4 viewPosition = view * worldPosition;\\n    viewPosition = viewPosition / viewPosition.w;\\n    vec4 clipPosition = projection * (viewPosition + scale * vec4(glyph.x, -glyph.y, 0, 0));\\n\\n    gl_Position = clipPosition;\\n    interpColor = color;\\n    pickId = id;\\n    dataCoordinate = position;\\n  }\\n}\"]),o=a([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nattribute vec3 position;\\nattribute vec4 color;\\nattribute vec2 glyph;\\nattribute vec4 id;\\n\\nuniform mat4 model, view, projection;\\nuniform vec2 screenSize;\\nuniform vec3 clipBounds[2];\\nuniform float highlightScale, pixelRatio;\\nuniform vec4 highlightId;\\n\\nvarying vec4 interpColor;\\nvarying vec4 pickId;\\nvarying vec3 dataCoordinate;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], position)) {\\n\\n    gl_Position = vec4(0,0,0,0);\\n  } else {\\n    float scale = pixelRatio;\\n    if(distance(highlightId.bgr, id.bgr) < 0.001) {\\n      scale *= highlightScale;\\n    }\\n\\n    vec4 worldPosition = model * vec4(position, 1.0);\\n    vec4 viewPosition = view * worldPosition;\\n    vec4 clipPosition = projection * viewPosition;\\n    clipPosition /= clipPosition.w;\\n\\n    gl_Position = clipPosition + vec4(screenSize * scale * vec2(glyph.x, -glyph.y), 0.0, 0.0);\\n    interpColor = color;\\n    pickId = id;\\n    dataCoordinate = position;\\n  }\\n}\"]),s=a([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nattribute vec3 position;\\nattribute vec4 color;\\nattribute vec2 glyph;\\nattribute vec4 id;\\n\\nuniform float highlightScale;\\nuniform vec4 highlightId;\\nuniform vec3 axes[2];\\nuniform mat4 model, view, projection;\\nuniform vec2 screenSize;\\nuniform vec3 clipBounds[2];\\nuniform float scale, pixelRatio;\\n\\nvarying vec4 interpColor;\\nvarying vec4 pickId;\\nvarying vec3 dataCoordinate;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], position)) {\\n\\n    gl_Position = vec4(0,0,0,0);\\n  } else {\\n    float lscale = pixelRatio * scale;\\n    if(distance(highlightId, id) < 0.0001) {\\n      lscale *= highlightScale;\\n    }\\n\\n    vec4 clipCenter   = projection * view * model * vec4(position, 1);\\n    vec3 dataPosition = position + 0.5*lscale*(axes[0] * glyph.x + axes[1] * glyph.y) * clipCenter.w * screenSize.y;\\n    vec4 clipPosition = projection * view * model * vec4(dataPosition, 1);\\n\\n    gl_Position = clipPosition;\\n    interpColor = color;\\n    pickId = id;\\n    dataCoordinate = dataPosition;\\n  }\\n}\\n\"]),l=a([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 fragClipBounds[2];\\nuniform float opacity;\\n\\nvarying vec4 interpColor;\\nvarying vec3 dataCoordinate;\\n\\nvoid main() {\\n  if (\\n    outOfRange(fragClipBounds[0], fragClipBounds[1], dataCoordinate) ||\\n    interpColor.a * opacity == 0.\\n  ) discard;\\n  gl_FragColor = interpColor * opacity;\\n}\\n\"]),c=a([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 fragClipBounds[2];\\nuniform float pickGroup;\\n\\nvarying vec4 pickId;\\nvarying vec3 dataCoordinate;\\n\\nvoid main() {\\n  if (outOfRange(fragClipBounds[0], fragClipBounds[1], dataCoordinate)) discard;\\n\\n  gl_FragColor = vec4(pickGroup, pickId.bgr);\\n}\"]),u=[{name:\"position\",type:\"vec3\"},{name:\"color\",type:\"vec4\"},{name:\"glyph\",type:\"vec2\"},{name:\"id\",type:\"vec4\"}],h={vertex:i,fragment:l,attributes:u},f={vertex:o,fragment:l,attributes:u},p={vertex:s,fragment:l,attributes:u},d={vertex:i,fragment:c,attributes:u},g={vertex:o,fragment:c,attributes:u},v={vertex:s,fragment:c,attributes:u};function m(t,e){var r=n(t,e),a=r.attributes;return a.position.location=0,a.color.location=1,a.glyph.location=2,a.id.location=3,r}r.createPerspective=function(t){return m(t,h)},r.createOrtho=function(t){return m(t,f)},r.createProject=function(t){return m(t,p)},r.createPickPerspective=function(t){return m(t,d)},r.createPickOrtho=function(t){return m(t,g)},r.createPickProject=function(t){return m(t,v)}},{\"gl-shader\":302,glslify:410}],298:[function(t,e,r){\"use strict\";var n=t(\"is-string-blank\"),a=t(\"gl-buffer\"),i=t(\"gl-vao\"),o=t(\"typedarray-pool\"),s=t(\"gl-mat4/multiply\"),l=t(\"./lib/shaders\"),c=t(\"./lib/glyphs\"),u=t(\"./lib/get-simple-string\"),h=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function f(t,e){var r=t[0],n=t[1],a=t[2],i=t[3];return t[0]=e[0]*r+e[4]*n+e[8]*a+e[12]*i,t[1]=e[1]*r+e[5]*n+e[9]*a+e[13]*i,t[2]=e[2]*r+e[6]*n+e[10]*a+e[14]*i,t[3]=e[3]*r+e[7]*n+e[11]*a+e[15]*i,t}function p(t,e,r,n){return f(n,n),f(n,n),f(n,n)}function d(t,e){this.index=t,this.dataCoordinate=this.position=e}function g(t){return!0===t?1:t>1?1:t}function v(t,e,r,n,a,i,o,s,l,c,u,h){this.gl=t,this.pixelRatio=1,this.shader=e,this.orthoShader=r,this.projectShader=n,this.pointBuffer=a,this.colorBuffer=i,this.glyphBuffer=o,this.idBuffer=s,this.vao=l,this.vertexCount=0,this.lineVertexCount=0,this.opacity=1,this.hasAlpha=!1,this.lineWidth=0,this.projectScale=[2/3,2/3,2/3],this.projectOpacity=[1,1,1],this.projectHasAlpha=!1,this.pickId=0,this.pickPerspectiveShader=c,this.pickOrthoShader=u,this.pickProjectShader=h,this.points=[],this._selectResult=new d(0,[0,0,0]),this.useOrtho=!0,this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.axesProject=[!0,!0,!0],this.axesBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.highlightId=[1,1,1,1],this.highlightScale=2,this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.dirty=!0}e.exports=function(t){var e=t.gl,r=l.createPerspective(e),n=l.createOrtho(e),o=l.createProject(e),s=l.createPickPerspective(e),c=l.createPickOrtho(e),u=l.createPickProject(e),h=a(e),f=a(e),p=a(e),d=a(e),g=i(e,[{buffer:h,size:3,type:e.FLOAT},{buffer:f,size:4,type:e.FLOAT},{buffer:p,size:2,type:e.FLOAT},{buffer:d,size:4,type:e.UNSIGNED_BYTE,normalized:!0}]),m=new v(e,r,n,o,h,f,p,d,g,s,c,u);return m.update(t),m};var m=v.prototype;m.pickSlots=1,m.setPickBase=function(t){this.pickId=t},m.isTransparent=function(){if(this.hasAlpha)return!0;for(var t=0;t<3;++t)if(this.axesProject[t]&&this.projectHasAlpha)return!0;return!1},m.isOpaque=function(){if(!this.hasAlpha)return!0;for(var t=0;t<3;++t)if(this.axesProject[t]&&!this.projectHasAlpha)return!0;return!1};var y=[0,0],x=[0,0,0],b=[0,0,0],_=[0,0,0,1],w=[0,0,0,1],k=h.slice(),T=[0,0,0],A=[[0,0,0],[0,0,0]];function M(t){return t[0]=t[1]=t[2]=0,t}function S(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=1,t}function E(t,e,r,n){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[r]=n,t}function C(t,e,r,n){var a,i=e.axesProject,o=e.gl,l=t.uniforms,c=r.model||h,u=r.view||h,f=r.projection||h,d=e.axesBounds,g=function(t){for(var e=A,r=0;r<2;++r)for(var n=0;n<3;++n)e[r][n]=Math.max(Math.min(t[r][n],1e8),-1e8);return e}(e.clipBounds);a=e.axes&&e.axes.lastCubeProps?e.axes.lastCubeProps.axis:[1,1,1],y[0]=2/o.drawingBufferWidth,y[1]=2/o.drawingBufferHeight,t.bind(),l.view=u,l.projection=f,l.screenSize=y,l.highlightId=e.highlightId,l.highlightScale=e.highlightScale,l.clipBounds=g,l.pickGroup=e.pickId/255,l.pixelRatio=n;for(var v=0;v<3;++v)if(i[v]){l.scale=e.projectScale[v],l.opacity=e.projectOpacity[v];for(var m=k,C=0;C<16;++C)m[C]=0;for(C=0;C<4;++C)m[5*C]=1;m[5*v]=0,a[v]<0?m[12+v]=d[0][v]:m[12+v]=d[1][v],s(m,c,m),l.model=m;var L=(v+1)%3,P=(v+2)%3,O=M(x),I=M(b);O[L]=1,I[P]=1;var z=p(0,0,0,S(_,O)),D=p(0,0,0,S(w,I));if(Math.abs(z[1])>Math.abs(D[1])){var R=z;z=D,D=R,R=O,O=I,I=R;var F=L;L=P,P=F}z[0]<0&&(O[L]=-1),D[1]>0&&(I[P]=-1);var B=0,N=0;for(C=0;C<4;++C)B+=Math.pow(c[4*L+C],2),N+=Math.pow(c[4*P+C],2);O[L]/=Math.sqrt(B),I[P]/=Math.sqrt(N),l.axes[0]=O,l.axes[1]=I,l.fragClipBounds[0]=E(T,g[0],v,-1e8),l.fragClipBounds[1]=E(T,g[1],v,1e8),e.vao.bind(),e.vao.draw(o.TRIANGLES,e.vertexCount),e.lineWidth>0&&(o.lineWidth(e.lineWidth*n),e.vao.draw(o.LINES,e.lineVertexCount,e.vertexCount)),e.vao.unbind()}}var L=[[-1e8,-1e8,-1e8],[1e8,1e8,1e8]];function P(t,e,r,n,a,i,o){var s=r.gl;if((i===r.projectHasAlpha||o)&&C(e,r,n,a),i===r.hasAlpha||o){t.bind();var l=t.uniforms;l.model=n.model||h,l.view=n.view||h,l.projection=n.projection||h,y[0]=2/s.drawingBufferWidth,y[1]=2/s.drawingBufferHeight,l.screenSize=y,l.highlightId=r.highlightId,l.highlightScale=r.highlightScale,l.fragClipBounds=L,l.clipBounds=r.axes.bounds,l.opacity=r.opacity,l.pickGroup=r.pickId/255,l.pixelRatio=a,r.vao.bind(),r.vao.draw(s.TRIANGLES,r.vertexCount),r.lineWidth>0&&(s.lineWidth(r.lineWidth*a),r.vao.draw(s.LINES,r.lineVertexCount,r.vertexCount)),r.vao.unbind()}}function O(t,e,r,a){var i;i=Array.isArray(t)?e<t.length?t[e]:void 0:t,i=u(i);var o=!0;n(i)&&(i=\"\\u25bc\",o=!1);var s=c(i,r,a);return{mesh:s[0],lines:s[1],bounds:s[2],visible:o}}m.draw=function(t){P(this.useOrtho?this.orthoShader:this.shader,this.projectShader,this,t,this.pixelRatio,!1,!1)},m.drawTransparent=function(t){P(this.useOrtho?this.orthoShader:this.shader,this.projectShader,this,t,this.pixelRatio,!0,!1)},m.drawPick=function(t){P(this.useOrtho?this.pickOrthoShader:this.pickPerspectiveShader,this.pickProjectShader,this,t,1,!0,!0)},m.pick=function(t){if(!t)return null;if(t.id!==this.pickId)return null;var e=t.value[2]+(t.value[1]<<8)+(t.value[0]<<16);if(e>=this.pointCount||e<0)return null;var r=this.points[e],n=this._selectResult;n.index=e;for(var a=0;a<3;++a)n.position[a]=n.dataCoordinate[a]=r[a];return n},m.highlight=function(t){if(t){var e=t.index,r=255&e,n=e>>8&255,a=e>>16&255;this.highlightId=[r/255,n/255,a/255,0]}else this.highlightId=[1,1,1,1]},m.update=function(t){if(\"perspective\"in(t=t||{})&&(this.useOrtho=!t.perspective),\"orthographic\"in t&&(this.useOrtho=!!t.orthographic),\"lineWidth\"in t&&(this.lineWidth=t.lineWidth),\"project\"in t)if(Array.isArray(t.project))this.axesProject=t.project;else{var e=!!t.project;this.axesProject=[e,e,e]}if(\"projectScale\"in t)if(Array.isArray(t.projectScale))this.projectScale=t.projectScale.slice();else{var r=+t.projectScale;this.projectScale=[r,r,r]}if(this.projectHasAlpha=!1,\"projectOpacity\"in t){if(Array.isArray(t.projectOpacity))this.projectOpacity=t.projectOpacity.slice();else{r=+t.projectOpacity;this.projectOpacity=[r,r,r]}for(var n=0;n<3;++n)this.projectOpacity[n]=g(this.projectOpacity[n]),this.projectOpacity[n]<1&&(this.projectHasAlpha=!0)}this.hasAlpha=!1,\"opacity\"in t&&(this.opacity=g(t.opacity),this.opacity<1&&(this.hasAlpha=!0)),this.dirty=!0;var a,i,s=t.position,l=t.font||\"normal\",c=t.alignment||[0,0];if(2===c.length)a=c[0],i=c[1];else{a=[],i=[];for(n=0;n<c.length;++n)a[n]=c[n][0],i[n]=c[n][1]}var u=[1/0,1/0,1/0],h=[-1/0,-1/0,-1/0],f=t.glyph,p=t.color,d=t.size,v=t.angle,m=t.lineColor,y=-1,x=0,b=0,_=0;if(s.length){_=s.length;t:for(n=0;n<_;++n){for(var w=s[n],k=0;k<3;++k)if(isNaN(w[k])||!isFinite(w[k]))continue t;var T=(N=O(f,n,l,this.pixelRatio)).mesh,A=N.lines,M=N.bounds;x+=3*T.cells.length,b+=2*A.edges.length}}var S=x+b,E=o.mallocFloat(3*S),C=o.mallocFloat(4*S),L=o.mallocFloat(2*S),P=o.mallocUint32(S);if(S>0){var I=0,z=x,D=[0,0,0,1],R=[0,0,0,1],F=Array.isArray(p)&&Array.isArray(p[0]),B=Array.isArray(m)&&Array.isArray(m[0]);t:for(n=0;n<_;++n){y+=1;for(w=s[n],k=0;k<3;++k){if(isNaN(w[k])||!isFinite(w[k]))continue t;h[k]=Math.max(h[k],w[k]),u[k]=Math.min(u[k],w[k])}T=(N=O(f,n,l,this.pixelRatio)).mesh,A=N.lines,M=N.bounds;var N,j=N.visible;if(j)if(Array.isArray(p)){if(3===(V=F?n<p.length?p[n]:[0,0,0,0]:p).length){for(k=0;k<3;++k)D[k]=V[k];D[3]=1}else if(4===V.length){for(k=0;k<4;++k)D[k]=V[k];!this.hasAlpha&&V[3]<1&&(this.hasAlpha=!0)}}else D[0]=D[1]=D[2]=0,D[3]=1;else D=[1,1,1,0];if(j)if(Array.isArray(m)){var V;if(3===(V=B?n<m.length?m[n]:[0,0,0,0]:m).length){for(k=0;k<3;++k)R[k]=V[k];R[k]=1}else if(4===V.length){for(k=0;k<4;++k)R[k]=V[k];!this.hasAlpha&&V[3]<1&&(this.hasAlpha=!0)}}else R[0]=R[1]=R[2]=0,R[3]=1;else R=[1,1,1,0];var U=.5;j?Array.isArray(d)?U=n<d.length?+d[n]:12:d?U=+d:this.useOrtho&&(U=12):U=0;var q=0;Array.isArray(v)?q=n<v.length?+v[n]:0:v&&(q=+v);var H=Math.cos(q),G=Math.sin(q);for(w=s[n],k=0;k<3;++k)h[k]=Math.max(h[k],w[k]),u[k]=Math.min(u[k],w[k]);var Y=a,W=i;Y=0;Array.isArray(a)?Y=n<a.length?a[n]:0:a&&(Y=a);W=0;Array.isArray(i)?W=n<i.length?i[n]:0:i&&(W=i);var X=[Y*=Y>0?1-M[0][0]:Y<0?1+M[1][0]:1,W*=W>0?1-M[0][1]:W<0?1+M[1][1]:1],Z=T.cells||[],J=T.positions||[];for(k=0;k<Z.length;++k)for(var K=Z[k],Q=0;Q<3;++Q){for(var $=0;$<3;++$)E[3*I+$]=w[$];for($=0;$<4;++$)C[4*I+$]=D[$];P[I]=y;var tt=J[K[Q]];L[2*I]=U*(H*tt[0]-G*tt[1]+X[0]),L[2*I+1]=U*(G*tt[0]+H*tt[1]+X[1]),I+=1}for(Z=A.edges,J=A.positions,k=0;k<Z.length;++k)for(K=Z[k],Q=0;Q<2;++Q){for($=0;$<3;++$)E[3*z+$]=w[$];for($=0;$<4;++$)C[4*z+$]=R[$];P[z]=y;tt=J[K[Q]];L[2*z]=U*(H*tt[0]-G*tt[1]+X[0]),L[2*z+1]=U*(G*tt[0]+H*tt[1]+X[1]),z+=1}}}this.bounds=[u,h],this.points=s,this.pointCount=s.length,this.vertexCount=x,this.lineVertexCount=b,this.pointBuffer.update(E),this.colorBuffer.update(C),this.glyphBuffer.update(L),this.idBuffer.update(P),o.free(E),o.free(C),o.free(L),o.free(P)},m.dispose=function(){this.shader.dispose(),this.orthoShader.dispose(),this.pickPerspectiveShader.dispose(),this.pickOrthoShader.dispose(),this.vao.dispose(),this.pointBuffer.dispose(),this.colorBuffer.dispose(),this.glyphBuffer.dispose(),this.idBuffer.dispose()}},{\"./lib/get-simple-string\":295,\"./lib/glyphs\":296,\"./lib/shaders\":297,\"gl-buffer\":242,\"gl-mat4/multiply\":268,\"gl-vao\":328,\"is-string-blank\":424,\"typedarray-pool\":546}],299:[function(t,e,r){\"use strict\";var n=t(\"glslify\");r.boxVertex=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec2 vertex;\\n\\nuniform vec2 cornerA, cornerB;\\n\\nvoid main() {\\n  gl_Position = vec4(mix(cornerA, cornerB, vertex), 0, 1);\\n}\\n\"]),r.boxFragment=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nuniform vec4 color;\\n\\nvoid main() {\\n  gl_FragColor = color;\\n}\\n\"])},{glslify:410}],300:[function(t,e,r){\"use strict\";var n=t(\"gl-shader\"),a=t(\"gl-buffer\"),i=t(\"./lib/shaders\");function o(t,e,r){this.plot=t,this.boxBuffer=e,this.boxShader=r,this.enabled=!0,this.selectBox=[1/0,1/0,-1/0,-1/0],this.borderColor=[0,0,0,1],this.innerFill=!1,this.innerColor=[0,0,0,.25],this.outerFill=!0,this.outerColor=[0,0,0,.5],this.borderWidth=10}e.exports=function(t,e){var r=t.gl,s=a(r,[0,0,0,1,1,0,1,1]),l=n(r,i.boxVertex,i.boxFragment),c=new o(t,s,l);return c.update(e),t.addOverlay(c),c};var s=o.prototype;s.draw=function(){if(this.enabled){var t=this.plot,e=this.selectBox,r=this.borderWidth,n=(this.innerFill,this.innerColor),a=(this.outerFill,this.outerColor),i=this.borderColor,o=t.box,s=t.screenBox,l=t.dataBox,c=t.viewBox,u=t.pixelRatio,h=(e[0]-l[0])*(c[2]-c[0])/(l[2]-l[0])+c[0],f=(e[1]-l[1])*(c[3]-c[1])/(l[3]-l[1])+c[1],p=(e[2]-l[0])*(c[2]-c[0])/(l[2]-l[0])+c[0],d=(e[3]-l[1])*(c[3]-c[1])/(l[3]-l[1])+c[1];if(h=Math.max(h,c[0]),f=Math.max(f,c[1]),p=Math.min(p,c[2]),d=Math.min(d,c[3]),!(p<h||d<f)){o.bind();var g=s[2]-s[0],v=s[3]-s[1];if(this.outerFill&&(o.drawBox(0,0,g,f,a),o.drawBox(0,f,h,d,a),o.drawBox(0,d,g,v,a),o.drawBox(p,f,g,d,a)),this.innerFill&&o.drawBox(h,f,p,d,n),r>0){var m=r*u;o.drawBox(h-m,f-m,p+m,f+m,i),o.drawBox(h-m,d-m,p+m,d+m,i),o.drawBox(h-m,f-m,h+m,d+m,i),o.drawBox(p-m,f-m,p+m,d+m,i)}}}},s.update=function(t){t=t||{},this.innerFill=!!t.innerFill,this.outerFill=!!t.outerFill,this.innerColor=(t.innerColor||[0,0,0,.5]).slice(),this.outerColor=(t.outerColor||[0,0,0,.5]).slice(),this.borderColor=(t.borderColor||[0,0,0,1]).slice(),this.borderWidth=t.borderWidth||0,this.selectBox=(t.selectBox||this.selectBox).slice()},s.dispose=function(){this.boxBuffer.dispose(),this.boxShader.dispose(),this.plot.removeOverlay(this)}},{\"./lib/shaders\":299,\"gl-buffer\":242,\"gl-shader\":302}],301:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=n(t,e),i=a.mallocUint8(e[0]*e[1]*4);return new c(t,r,i)};var n=t(\"gl-fbo\"),a=t(\"typedarray-pool\"),i=t(\"ndarray\"),o=t(\"bit-twiddle\").nextPow2,s=t(\"cwise/lib/wrapper\")({args:[\"array\",{offset:[0,0,1],array:0},{offset:[0,0,2],array:0},{offset:[0,0,3],array:0},\"scalar\",\"scalar\",\"index\"],pre:{body:\"{this_closestD2=1e8,this_closestX=-1,this_closestY=-1}\",args:[],thisVars:[\"this_closestD2\",\"this_closestX\",\"this_closestY\"],localVars:[]},body:{body:\"{if(_inline_16_arg0_<255||_inline_16_arg1_<255||_inline_16_arg2_<255||_inline_16_arg3_<255){var _inline_16_l=_inline_16_arg4_-_inline_16_arg6_[0],_inline_16_a=_inline_16_arg5_-_inline_16_arg6_[1],_inline_16_f=_inline_16_l*_inline_16_l+_inline_16_a*_inline_16_a;_inline_16_f<this_closestD2&&(this_closestD2=_inline_16_f,this_closestX=_inline_16_arg6_[0],this_closestY=_inline_16_arg6_[1])}}\",args:[{name:\"_inline_16_arg0_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_16_arg1_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_16_arg2_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_16_arg3_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_16_arg4_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_16_arg5_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_16_arg6_\",lvalue:!1,rvalue:!0,count:4}],thisVars:[\"this_closestD2\",\"this_closestX\",\"this_closestY\"],localVars:[\"_inline_16_a\",\"_inline_16_f\",\"_inline_16_l\"]},post:{body:\"{return[this_closestX,this_closestY,this_closestD2]}\",args:[],thisVars:[\"this_closestD2\",\"this_closestX\",\"this_closestY\"],localVars:[]},debug:!1,funcName:\"cwise\",blockSize:64});function l(t,e,r,n,a){this.coord=[t,e],this.id=r,this.value=n,this.distance=a}function c(t,e,r){this.gl=t,this.fbo=e,this.buffer=r,this._readTimeout=null;var n=this;this._readCallback=function(){n.gl&&(e.bind(),t.readPixels(0,0,e.shape[0],e.shape[1],t.RGBA,t.UNSIGNED_BYTE,n.buffer),n._readTimeout=null)}}var u=c.prototype;Object.defineProperty(u,\"shape\",{get:function(){return this.gl?this.fbo.shape.slice():[0,0]},set:function(t){if(this.gl){this.fbo.shape=t;var e=this.fbo.shape[0],r=this.fbo.shape[1];if(r*e*4>this.buffer.length){a.free(this.buffer);for(var n=this.buffer=a.mallocUint8(o(r*e*4)),i=0;i<r*e*4;++i)n[i]=255}return t}}}),u.begin=function(){var t=this.gl;this.shape;t&&(this.fbo.bind(),t.clearColor(1,1,1,1),t.clear(t.COLOR_BUFFER_BIT|t.DEPTH_BUFFER_BIT))},u.end=function(){var t=this.gl;t&&(t.bindFramebuffer(t.FRAMEBUFFER,null),this._readTimeout||clearTimeout(this._readTimeout),this._readTimeout=setTimeout(this._readCallback,1))},u.query=function(t,e,r){if(!this.gl)return null;var n=this.fbo.shape.slice();t|=0,e|=0,\"number\"!=typeof r&&(r=1);var a=0|Math.min(Math.max(t-r,0),n[0]),o=0|Math.min(Math.max(t+r,0),n[0]),c=0|Math.min(Math.max(e-r,0),n[1]),u=0|Math.min(Math.max(e+r,0),n[1]);if(o<=a||u<=c)return null;var h=[o-a,u-c],f=i(this.buffer,[h[0],h[1],4],[4,4*n[0],1],4*(a+n[0]*c)),p=s(f.hi(h[0],h[1],1),r,r),d=p[0],g=p[1];return d<0||Math.pow(this.radius,2)<p[2]?null:new l(d+a|0,g+c|0,f.get(d,g,0),[f.get(d,g,1),f.get(d,g,2),f.get(d,g,3)],Math.sqrt(p[2]))},u.dispose=function(){this.gl&&(this.fbo.dispose(),a.free(this.buffer),this.gl=null,this._readTimeout&&clearTimeout(this._readTimeout))}},{\"bit-twiddle\":93,\"cwise/lib/wrapper\":150,\"gl-fbo\":250,ndarray:451,\"typedarray-pool\":546}],302:[function(t,e,r){\"use strict\";var n=t(\"./lib/create-uniforms\"),a=t(\"./lib/create-attributes\"),i=t(\"./lib/reflect\"),o=t(\"./lib/shader-cache\"),s=t(\"./lib/runtime-reflect\"),l=t(\"./lib/GLError\");function c(t){this.gl=t,this.gl.lastAttribCount=0,this._vref=this._fref=this._relink=this.vertShader=this.fragShader=this.program=this.attributes=this.uniforms=this.types=null}var u=c.prototype;function h(t,e){return t.name<e.name?-1:1}u.bind=function(){var t;this.program||this._relink();var e=this.gl.getProgramParameter(this.program,this.gl.ACTIVE_ATTRIBUTES),r=this.gl.lastAttribCount;if(e>r)for(t=r;t<e;t++)this.gl.enableVertexAttribArray(t);else if(r>e)for(t=e;t<r;t++)this.gl.disableVertexAttribArray(t);this.gl.lastAttribCount=e,this.gl.useProgram(this.program)},u.dispose=function(){for(var t=this.gl.lastAttribCount,e=0;e<t;e++)this.gl.disableVertexAttribArray(e);this.gl.lastAttribCount=0,this._fref&&this._fref.dispose(),this._vref&&this._vref.dispose(),this.attributes=this.types=this.vertShader=this.fragShader=this.program=this._relink=this._fref=this._vref=null},u.update=function(t,e,r,c){if(!e||1===arguments.length){var u=t;t=u.vertex,e=u.fragment,r=u.uniforms,c=u.attributes}var f=this,p=f.gl,d=f._vref;f._vref=o.shader(p,p.VERTEX_SHADER,t),d&&d.dispose(),f.vertShader=f._vref.shader;var g=this._fref;if(f._fref=o.shader(p,p.FRAGMENT_SHADER,e),g&&g.dispose(),f.fragShader=f._fref.shader,!r||!c){var v=p.createProgram();if(p.attachShader(v,f.fragShader),p.attachShader(v,f.vertShader),p.linkProgram(v),!p.getProgramParameter(v,p.LINK_STATUS)){var m=p.getProgramInfoLog(v);throw new l(m,\"Error linking program:\"+m)}r=r||s.uniforms(p,v),c=c||s.attributes(p,v),p.deleteProgram(v)}(c=c.slice()).sort(h);var y,x=[],b=[],_=[];for(y=0;y<c.length;++y){var w=c[y];if(w.type.indexOf(\"mat\")>=0){for(var k=0|w.type.charAt(w.type.length-1),T=new Array(k),A=0;A<k;++A)T[A]=_.length,b.push(w.name+\"[\"+A+\"]\"),\"number\"==typeof w.location?_.push(w.location+A):Array.isArray(w.location)&&w.location.length===k&&\"number\"==typeof w.location[A]?_.push(0|w.location[A]):_.push(-1);x.push({name:w.name,type:w.type,locations:T})}else x.push({name:w.name,type:w.type,locations:[_.length]}),b.push(w.name),\"number\"==typeof w.location?_.push(0|w.location):_.push(-1)}var M=0;for(y=0;y<_.length;++y)if(_[y]<0){for(;_.indexOf(M)>=0;)M+=1;_[y]=M}var S=new Array(r.length);function E(){f.program=o.program(p,f._vref,f._fref,b,_);for(var t=0;t<r.length;++t)S[t]=p.getUniformLocation(f.program,r[t].name)}E(),f._relink=E,f.types={uniforms:i(r),attributes:i(c)},f.attributes=a(p,f,x,_),Object.defineProperty(f,\"uniforms\",n(p,f,r,S))},e.exports=function(t,e,r,n,a){var i=new c(t);return i.update(e,r,n,a),i}},{\"./lib/GLError\":303,\"./lib/create-attributes\":304,\"./lib/create-uniforms\":305,\"./lib/reflect\":306,\"./lib/runtime-reflect\":307,\"./lib/shader-cache\":308}],303:[function(t,e,r){function n(t,e,r){this.shortMessage=e||\"\",this.longMessage=r||\"\",this.rawError=t||\"\",this.message=\"gl-shader: \"+(e||t||\"\")+(r?\"\\n\"+r:\"\"),this.stack=(new Error).stack}n.prototype=new Error,n.prototype.name=\"GLError\",n.prototype.constructor=n,e.exports=n},{}],304:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,a){for(var i={},l=0,c=r.length;l<c;++l){var u=r[l],h=u.name,f=u.type,p=u.locations;switch(f){case\"bool\":case\"int\":case\"float\":o(t,e,p[0],a,1,i,h);break;default:if(f.indexOf(\"vec\")>=0){var d=f.charCodeAt(f.length-1)-48;if(d<2||d>4)throw new n(\"\",\"Invalid data type for attribute \"+h+\": \"+f);o(t,e,p[0],a,d,i,h)}else{if(!(f.indexOf(\"mat\")>=0))throw new n(\"\",\"Unknown data type for attribute \"+h+\": \"+f);var d=f.charCodeAt(f.length-1)-48;if(d<2||d>4)throw new n(\"\",\"Invalid data type for attribute \"+h+\": \"+f);s(t,e,p,a,d,i,h)}}}return i};var n=t(\"./GLError\");function a(t,e,r,n,a,i){this._gl=t,this._wrapper=e,this._index=r,this._locations=n,this._dimension=a,this._constFunc=i}var i=a.prototype;function o(t,e,r,n,i,o,s){for(var l=[\"gl\",\"v\"],c=[],u=0;u<i;++u)l.push(\"x\"+u),c.push(\"x\"+u);l.push(\"if(x0.length===void 0){return gl.vertexAttrib\"+i+\"f(v,\"+c.join()+\")}else{return gl.vertexAttrib\"+i+\"fv(v,x0)}\");var h=Function.apply(null,l),f=new a(t,e,r,n,i,h);Object.defineProperty(o,s,{set:function(e){return t.disableVertexAttribArray(n[r]),h(t,n[r],e),e},get:function(){return f},enumerable:!0})}function s(t,e,r,n,a,i,s){for(var l=new Array(a),c=new Array(a),u=0;u<a;++u)o(t,e,r[u],n,a,l,u),c[u]=l[u];Object.defineProperty(l,\"location\",{set:function(t){if(Array.isArray(t))for(var e=0;e<a;++e)c[e].location=t[e];else for(e=0;e<a;++e)c[e].location=t+e;return t},get:function(){for(var t=new Array(a),e=0;e<a;++e)t[e]=n[r[e]];return t},enumerable:!0}),l.pointer=function(e,i,o,s){e=e||t.FLOAT,i=!!i,o=o||a*a,s=s||0;for(var l=0;l<a;++l){var c=n[r[l]];t.vertexAttribPointer(c,a,e,i,o,s+l*a),t.enableVertexAttribArray(c)}};var h=new Array(a),f=t[\"vertexAttrib\"+a+\"fv\"];Object.defineProperty(i,s,{set:function(e){for(var i=0;i<a;++i){var o=n[r[i]];if(t.disableVertexAttribArray(o),Array.isArray(e[0]))f.call(t,o,e[i]);else{for(var s=0;s<a;++s)h[s]=e[a*i+s];f.call(t,o,h)}}return e},get:function(){return l},enumerable:!0})}i.pointer=function(t,e,r,n){var a=this._gl,i=this._locations[this._index];a.vertexAttribPointer(i,this._dimension,t||a.FLOAT,!!e,r||0,n||0),a.enableVertexAttribArray(i)},i.set=function(t,e,r,n){return this._constFunc(this._locations[this._index],t,e,r,n)},Object.defineProperty(i,\"location\",{get:function(){return this._locations[this._index]},set:function(t){return t!==this._locations[this._index]&&(this._locations[this._index]=0|t,this._wrapper.program=null),0|t}})},{\"./GLError\":303}],305:[function(t,e,r){\"use strict\";var n=t(\"./reflect\"),a=t(\"./GLError\");function i(t){return new Function(\"y\",\"return function(){return y}\")(t)}function o(t,e){for(var r=new Array(t),n=0;n<t;++n)r[n]=e;return r}e.exports=function(t,e,r,s){function l(t,e,r){switch(r){case\"bool\":case\"int\":case\"sampler2D\":case\"samplerCube\":return\"gl.uniform1i(locations[\"+e+\"],obj\"+t+\")\";case\"float\":return\"gl.uniform1f(locations[\"+e+\"],obj\"+t+\")\";default:var n=r.indexOf(\"vec\");if(!(0<=n&&n<=1&&r.length===4+n)){if(0===r.indexOf(\"mat\")&&4===r.length){var i=r.charCodeAt(r.length-1)-48;if(i<2||i>4)throw new a(\"\",\"Invalid uniform dimension type for matrix \"+name+\": \"+r);return\"gl.uniformMatrix\"+i+\"fv(locations[\"+e+\"],false,obj\"+t+\")\"}throw new a(\"\",\"Unknown uniform data type for \"+name+\": \"+r)}var i=r.charCodeAt(r.length-1)-48;if(i<2||i>4)throw new a(\"\",\"Invalid data type\");switch(r.charAt(0)){case\"b\":case\"i\":return\"gl.uniform\"+i+\"iv(locations[\"+e+\"],obj\"+t+\")\";case\"v\":return\"gl.uniform\"+i+\"fv(locations[\"+e+\"],obj\"+t+\")\";default:throw new a(\"\",\"Unrecognized data type for vector \"+name+\": \"+r)}}}function c(e){for(var n=[\"return function updateProperty(obj){\"],a=function t(e,r){if(\"object\"!=typeof r)return[[e,r]];var n=[];for(var a in r){var i=r[a],o=e;parseInt(a)+\"\"===a?o+=\"[\"+a+\"]\":o+=\".\"+a,\"object\"==typeof i?n.push.apply(n,t(o,i)):n.push([o,i])}return n}(\"\",e),i=0;i<a.length;++i){var o=a[i],c=o[0],u=o[1];s[u]&&n.push(l(c,u,r[u].type))}n.push(\"return obj}\");var h=new Function(\"gl\",\"locations\",n.join(\"\\n\"));return h(t,s)}function u(n,l,u){if(\"object\"==typeof u){var f=h(u);Object.defineProperty(n,l,{get:i(f),set:c(u),enumerable:!0,configurable:!1})}else s[u]?Object.defineProperty(n,l,{get:(p=u,new Function(\"gl\",\"wrapper\",\"locations\",\"return function(){return gl.getUniform(wrapper.program,locations[\"+p+\"])}\")(t,e,s)),set:c(u),enumerable:!0,configurable:!1}):n[l]=function(t){switch(t){case\"bool\":return!1;case\"int\":case\"sampler2D\":case\"samplerCube\":case\"float\":return 0;default:var e=t.indexOf(\"vec\");if(0<=e&&e<=1&&t.length===4+e){var r=t.charCodeAt(t.length-1)-48;if(r<2||r>4)throw new a(\"\",\"Invalid data type\");return\"b\"===t.charAt(0)?o(r,!1):o(r,0)}if(0===t.indexOf(\"mat\")&&4===t.length){var r=t.charCodeAt(t.length-1)-48;if(r<2||r>4)throw new a(\"\",\"Invalid uniform dimension type for matrix \"+name+\": \"+t);return o(r*r,0)}throw new a(\"\",\"Unknown uniform data type for \"+name+\": \"+t)}}(r[u].type);var p}function h(t){var e;if(Array.isArray(t)){e=new Array(t.length);for(var r=0;r<t.length;++r)u(e,r,t[r])}else for(var n in e={},t)u(e,n,t[n]);return e}var f=n(r,!0);return{get:i(h(f)),set:c(f),enumerable:!0,configurable:!0}}},{\"./GLError\":303,\"./reflect\":306}],306:[function(t,e,r){\"use strict\";e.exports=function(t,e){for(var r={},n=0;n<t.length;++n)for(var a=t[n].name,i=a.split(\".\"),o=r,s=0;s<i.length;++s){var l=i[s].split(\"[\");if(l.length>1){l[0]in o||(o[l[0]]=[]),o=o[l[0]];for(var c=1;c<l.length;++c){var u=parseInt(l[c]);c<l.length-1||s<i.length-1?(u in o||(c<l.length-1?o[u]=[]:o[u]={}),o=o[u]):o[u]=e?n:t[n].type}}else s<i.length-1?(l[0]in o||(o[l[0]]={}),o=o[l[0]]):o[l[0]]=e?n:t[n].type}return r}},{}],307:[function(t,e,r){\"use strict\";r.uniforms=function(t,e){for(var r=t.getProgramParameter(e,t.ACTIVE_UNIFORMS),n=[],a=0;a<r;++a){var o=t.getActiveUniform(e,a);if(o){var s=i(t,o.type);if(o.size>1)for(var l=0;l<o.size;++l)n.push({name:o.name.replace(\"[0]\",\"[\"+l+\"]\"),type:s});else n.push({name:o.name,type:s})}}return n},r.attributes=function(t,e){for(var r=t.getProgramParameter(e,t.ACTIVE_ATTRIBUTES),n=[],a=0;a<r;++a){var o=t.getActiveAttrib(e,a);o&&n.push({name:o.name,type:i(t,o.type)})}return n};var n={FLOAT:\"float\",FLOAT_VEC2:\"vec2\",FLOAT_VEC3:\"vec3\",FLOAT_VEC4:\"vec4\",INT:\"int\",INT_VEC2:\"ivec2\",INT_VEC3:\"ivec3\",INT_VEC4:\"ivec4\",BOOL:\"bool\",BOOL_VEC2:\"bvec2\",BOOL_VEC3:\"bvec3\",BOOL_VEC4:\"bvec4\",FLOAT_MAT2:\"mat2\",FLOAT_MAT3:\"mat3\",FLOAT_MAT4:\"mat4\",SAMPLER_2D:\"sampler2D\",SAMPLER_CUBE:\"samplerCube\"},a=null;function i(t,e){if(!a){var r=Object.keys(n);a={};for(var i=0;i<r.length;++i){var o=r[i];a[t[o]]=n[o]}}return a[e]}},{}],308:[function(t,e,r){\"use strict\";r.shader=function(t,e,r){return u(t).getShaderReference(e,r)},r.program=function(t,e,r,n,a){return u(t).getProgram(e,r,n,a)};var n=t(\"./GLError\"),a=t(\"gl-format-compiler-error\"),i=new(\"undefined\"==typeof WeakMap?t(\"weakmap-shim\"):WeakMap),o=0;function s(t,e,r,n,a,i,o){this.id=t,this.src=e,this.type=r,this.shader=n,this.count=i,this.programs=[],this.cache=o}function l(t){this.gl=t,this.shaders=[{},{}],this.programs={}}s.prototype.dispose=function(){if(0==--this.count){for(var t=this.cache,e=t.gl,r=this.programs,n=0,a=r.length;n<a;++n){var i=t.programs[r[n]];i&&(delete t.programs[n],e.deleteProgram(i))}e.deleteShader(this.shader),delete t.shaders[this.type===e.FRAGMENT_SHADER|0][this.src]}};var c=l.prototype;function u(t){var e=i.get(t);return e||(e=new l(t),i.set(t,e)),e}c.getShaderReference=function(t,e){var r=this.gl,i=this.shaders[t===r.FRAGMENT_SHADER|0],l=i[e];if(l&&r.isShader(l.shader))l.count+=1;else{var c=function(t,e,r){var i=t.createShader(e);if(t.shaderSource(i,r),t.compileShader(i),!t.getShaderParameter(i,t.COMPILE_STATUS)){var o=t.getShaderInfoLog(i);try{var s=a(o,r,e)}catch(t){throw console.warn(\"Failed to format compiler error: \"+t),new n(o,\"Error compiling shader:\\n\"+o)}throw new n(o,s.short,s.long)}return i}(r,t,e);l=i[e]=new s(o++,e,t,c,[],1,this)}return l},c.getProgram=function(t,e,r,a){var i=[t.id,e.id,r.join(\":\"),a.join(\":\")].join(\"@\"),o=this.programs[i];return o&&this.gl.isProgram(o)||(this.programs[i]=o=function(t,e,r,a,i){var o=t.createProgram();t.attachShader(o,e),t.attachShader(o,r);for(var s=0;s<a.length;++s)t.bindAttribLocation(o,i[s],a[s]);if(t.linkProgram(o),!t.getProgramParameter(o,t.LINK_STATUS)){var l=t.getProgramInfoLog(o);throw new n(l,\"Error linking program: \"+l)}return o}(this.gl,t.shader,e.shader,r,a),t.programs.push(i),e.programs.push(i)),o}},{\"./GLError\":303,\"gl-format-compiler-error\":251,\"weakmap-shim\":556}],309:[function(t,e,r){\"use strict\";function n(t){this.plot=t,this.enable=[!0,!0,!1,!1],this.width=[1,1,1,1],this.color=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.center=[1/0,1/0]}e.exports=function(t,e){var r=new n(t);return r.update(e),t.addOverlay(r),r};var a=n.prototype;a.update=function(t){t=t||{},this.enable=(t.enable||[!0,!0,!1,!1]).slice(),this.width=(t.width||[1,1,1,1]).slice(),this.color=(t.color||[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]]).map(function(t){return t.slice()}),this.center=(t.center||[1/0,1/0]).slice(),this.plot.setOverlayDirty()},a.draw=function(){var t=this.enable,e=this.width,r=this.color,n=this.center,a=this.plot,i=a.line,o=a.dataBox,s=a.viewBox;if(i.bind(),o[0]<=n[0]&&n[0]<=o[2]&&o[1]<=n[1]&&n[1]<=o[3]){var l=s[0]+(n[0]-o[0])/(o[2]-o[0])*(s[2]-s[0]),c=s[1]+(n[1]-o[1])/(o[3]-o[1])*(s[3]-s[1]);t[0]&&i.drawLine(l,c,s[0],c,e[0],r[0]),t[1]&&i.drawLine(l,c,l,s[1],e[1],r[1]),t[2]&&i.drawLine(l,c,s[2],c,e[2],r[2]),t[3]&&i.drawLine(l,c,l,s[3],e[3],r[3])}},a.dispose=function(){this.plot.removeOverlay(this)}},{}],310:[function(t,e,r){\"use strict\";var n=t(\"glslify\"),a=t(\"gl-shader\"),i=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position, color;\\nattribute float weight;\\n\\nuniform mat4 model, view, projection;\\nuniform vec3 coordinates[3];\\nuniform vec4 colors[3];\\nuniform vec2 screenShape;\\nuniform float lineWidth;\\n\\nvarying vec4 fragColor;\\n\\nvoid main() {\\n  vec3 vertexPosition = mix(coordinates[0],\\n    mix(coordinates[2], coordinates[1], 0.5 * (position + 1.0)), abs(position));\\n\\n  vec4 clipPos = projection * view * model * vec4(vertexPosition, 1.0);\\n  vec2 clipOffset = (projection * view * model * vec4(color, 0.0)).xy;\\n  vec2 delta = weight * clipOffset * screenShape;\\n  vec2 lineOffset = normalize(vec2(delta.y, -delta.x)) / screenShape;\\n\\n  gl_Position   = vec4(clipPos.xy + clipPos.w * 0.5 * lineWidth * lineOffset, clipPos.z, clipPos.w);\\n  fragColor     = color.x * colors[0] + color.y * colors[1] + color.z * colors[2];\\n}\\n\"]),o=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nvarying vec4 fragColor;\\n\\nvoid main() {\\n  gl_FragColor = fragColor;\\n}\"]);e.exports=function(t){return a(t,i,o,null,[{name:\"position\",type:\"vec3\"},{name:\"color\",type:\"vec3\"},{name:\"weight\",type:\"float\"}])}},{\"gl-shader\":302,glslify:410}],311:[function(t,e,r){\"use strict\";var n=t(\"gl-buffer\"),a=t(\"gl-vao\"),i=t(\"./shaders/index\");e.exports=function(t,e){var r=[];function o(t,e,n,a,i,o){var s=[t,e,n,0,0,0,1];s[a+3]=1,s[a]=i,r.push.apply(r,s),s[6]=-1,r.push.apply(r,s),s[a]=o,r.push.apply(r,s),r.push.apply(r,s),s[6]=1,r.push.apply(r,s),s[a]=i,r.push.apply(r,s)}o(0,0,0,0,0,1),o(0,0,0,1,0,1),o(0,0,0,2,0,1),o(1,0,0,1,-1,1),o(1,0,0,2,-1,1),o(0,1,0,0,-1,1),o(0,1,0,2,-1,1),o(0,0,1,0,-1,1),o(0,0,1,1,-1,1);var l=n(t,r),c=a(t,[{type:t.FLOAT,buffer:l,size:3,offset:0,stride:28},{type:t.FLOAT,buffer:l,size:3,offset:12,stride:28},{type:t.FLOAT,buffer:l,size:1,offset:24,stride:28}]),u=i(t);u.attributes.position.location=0,u.attributes.color.location=1,u.attributes.weight.location=2;var h=new s(t,l,c,u);return h.update(e),h};var o=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function s(t,e,r,n){this.gl=t,this.buffer=e,this.vao=r,this.shader=n,this.pixelRatio=1,this.bounds=[[-1e3,-1e3,-1e3],[1e3,1e3,1e3]],this.position=[0,0,0],this.lineWidth=[2,2,2],this.colors=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.enabled=[!0,!0,!0],this.drawSides=[!0,!0,!0],this.axes=null}var l=s.prototype,c=[0,0,0],u=[0,0,0],h=[0,0];l.isTransparent=function(){return!1},l.drawTransparent=function(t){},l.draw=function(t){var e=this.gl,r=this.vao,n=this.shader;r.bind(),n.bind();var a,i=t.model||o,s=t.view||o,l=t.projection||o;this.axes&&(a=this.axes.lastCubeProps.axis);for(var f=c,p=u,d=0;d<3;++d)a&&a[d]<0?(f[d]=this.bounds[0][d],p[d]=this.bounds[1][d]):(f[d]=this.bounds[1][d],p[d]=this.bounds[0][d]);h[0]=e.drawingBufferWidth,h[1]=e.drawingBufferHeight,n.uniforms.model=i,n.uniforms.view=s,n.uniforms.projection=l,n.uniforms.coordinates=[this.position,f,p],n.uniforms.colors=this.colors,n.uniforms.screenShape=h;for(d=0;d<3;++d)n.uniforms.lineWidth=this.lineWidth[d]*this.pixelRatio,this.enabled[d]&&(r.draw(e.TRIANGLES,6,6*d),this.drawSides[d]&&r.draw(e.TRIANGLES,12,18+12*d));r.unbind()},l.update=function(t){t&&(\"bounds\"in t&&(this.bounds=t.bounds),\"position\"in t&&(this.position=t.position),\"lineWidth\"in t&&(this.lineWidth=t.lineWidth),\"colors\"in t&&(this.colors=t.colors),\"enabled\"in t&&(this.enabled=t.enabled),\"drawSides\"in t&&(this.drawSides=t.drawSides))},l.dispose=function(){this.vao.dispose(),this.buffer.dispose(),this.shader.dispose()}},{\"./shaders/index\":310,\"gl-buffer\":242,\"gl-vao\":328}],312:[function(t,e,r){var n=t(\"glslify\"),a=n([\"precision highp float;\\n\\nprecision highp float;\\n#define GLSLIFY 1\\n\\nvec3 getOrthogonalVector(vec3 v) {\\n  // Return up-vector for only-z vector.\\n  // Return ax + by + cz = 0, a point that lies on the plane that has v as a normal and that isn't (0,0,0).\\n  // From the above if-statement we have ||a|| > 0  U  ||b|| > 0.\\n  // Assign z = 0, x = -b, y = a:\\n  // a*-b + b*a + c*0 = -ba + ba + 0 = 0\\n  if (v.x*v.x > v.z*v.z || v.y*v.y > v.z*v.z) {\\n    return normalize(vec3(-v.y, v.x, 0.0));\\n  } else {\\n    return normalize(vec3(0.0, v.z, -v.y));\\n  }\\n}\\n\\n// Calculate the tube vertex and normal at the given index.\\n//\\n// The returned vertex is for a tube ring with its center at origin, radius of length(d), pointing in the direction of d.\\n//\\n// Each tube segment is made up of a ring of vertices.\\n// These vertices are used to make up the triangles of the tube by connecting them together in the vertex array.\\n// The indexes of tube segments run from 0 to 8.\\n//\\nvec3 getTubePosition(vec3 d, float index, out vec3 normal) {\\n  float segmentCount = 8.0;\\n\\n  float angle = 2.0 * 3.14159 * (index / segmentCount);\\n\\n  vec3 u = getOrthogonalVector(d);\\n  vec3 v = normalize(cross(u, d));\\n\\n  vec3 x = u * cos(angle) * length(d);\\n  vec3 y = v * sin(angle) * length(d);\\n  vec3 v3 = x + y;\\n\\n  normal = normalize(v3);\\n\\n  return v3;\\n}\\n\\nattribute vec4 vector;\\nattribute vec4 color, position;\\nattribute vec2 uv;\\nuniform float vectorScale;\\nuniform float tubeScale;\\n\\nuniform mat4 model\\n           , view\\n           , projection\\n           , inverseModel;\\nuniform vec3 eyePosition\\n           , lightPosition;\\n\\nvarying vec3 f_normal\\n           , f_lightDirection\\n           , f_eyeDirection\\n           , f_data\\n           , f_position;\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n  // Scale the vector magnitude to stay constant with\\n  // model & view changes.\\n  vec3 normal;\\n  vec3 XYZ = getTubePosition(mat3(model) * (tubeScale * vector.w * normalize(vector.xyz)), position.w, normal);\\n  vec4 tubePosition = model * vec4(position.xyz, 1.0) + vec4(XYZ, 0.0);\\n\\n  //Lighting geometry parameters\\n  vec4 cameraCoordinate = view * tubePosition;\\n  cameraCoordinate.xyz /= cameraCoordinate.w;\\n  f_lightDirection = lightPosition - cameraCoordinate.xyz;\\n  f_eyeDirection   = eyePosition - cameraCoordinate.xyz;\\n  f_normal = normalize((vec4(normal,0.0) * inverseModel).xyz);\\n\\n  // vec4 m_position  = model * vec4(tubePosition, 1.0);\\n  vec4 t_position  = view * tubePosition;\\n  gl_Position      = projection * t_position;\\n\\n  f_color          = color;\\n  f_data           = tubePosition.xyz;\\n  f_position       = position.xyz;\\n  f_uv             = uv;\\n}\\n\"]),i=n([\"#extension GL_OES_standard_derivatives : enable\\n\\nprecision highp float;\\n#define GLSLIFY 1\\n\\nfloat beckmannDistribution(float x, float roughness) {\\n  float NdotH = max(x, 0.0001);\\n  float cos2Alpha = NdotH * NdotH;\\n  float tan2Alpha = (cos2Alpha - 1.0) / cos2Alpha;\\n  float roughness2 = roughness * roughness;\\n  float denom = 3.141592653589793 * roughness2 * cos2Alpha * cos2Alpha;\\n  return exp(tan2Alpha / roughness2) / denom;\\n}\\n\\nfloat cookTorranceSpecular(\\n  vec3 lightDirection,\\n  vec3 viewDirection,\\n  vec3 surfaceNormal,\\n  float roughness,\\n  float fresnel) {\\n\\n  float VdotN = max(dot(viewDirection, surfaceNormal), 0.0);\\n  float LdotN = max(dot(lightDirection, surfaceNormal), 0.0);\\n\\n  //Half angle vector\\n  vec3 H = normalize(lightDirection + viewDirection);\\n\\n  //Geometric term\\n  float NdotH = max(dot(surfaceNormal, H), 0.0);\\n  float VdotH = max(dot(viewDirection, H), 0.000001);\\n  float LdotH = max(dot(lightDirection, H), 0.000001);\\n  float G1 = (2.0 * NdotH * VdotN) / VdotH;\\n  float G2 = (2.0 * NdotH * LdotN) / LdotH;\\n  float G = min(1.0, min(G1, G2));\\n  \\n  //Distribution term\\n  float D = beckmannDistribution(NdotH, roughness);\\n\\n  //Fresnel term\\n  float F = pow(1.0 - VdotN, fresnel);\\n\\n  //Multiply terms and done\\n  return  G * F * D / max(3.14159265 * VdotN, 0.000001);\\n}\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 clipBounds[2];\\nuniform float roughness\\n            , fresnel\\n            , kambient\\n            , kdiffuse\\n            , kspecular\\n            , opacity;\\nuniform sampler2D texture;\\n\\nvarying vec3 f_normal\\n           , f_lightDirection\\n           , f_eyeDirection\\n           , f_data\\n           , f_position;\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\\n  vec3 N = normalize(f_normal);\\n  vec3 L = normalize(f_lightDirection);\\n  vec3 V = normalize(f_eyeDirection);\\n\\n  if(gl_FrontFacing) {\\n    N = -N;\\n  }\\n\\n  float specular = min(1.0, max(0.0, cookTorranceSpecular(L, V, N, roughness, fresnel)));\\n  float diffuse  = min(kambient + kdiffuse * max(dot(N, L), 0.0), 1.0);\\n\\n  vec4 surfaceColor = f_color * texture2D(texture, f_uv);\\n  vec4 litColor = surfaceColor.a * vec4(diffuse * surfaceColor.rgb + kspecular * vec3(1,1,1) * specular,  1.0);\\n\\n  gl_FragColor = litColor * opacity;\\n}\\n\"]),o=n([\"precision highp float;\\n\\nprecision highp float;\\n#define GLSLIFY 1\\n\\nvec3 getOrthogonalVector(vec3 v) {\\n  // Return up-vector for only-z vector.\\n  // Return ax + by + cz = 0, a point that lies on the plane that has v as a normal and that isn't (0,0,0).\\n  // From the above if-statement we have ||a|| > 0  U  ||b|| > 0.\\n  // Assign z = 0, x = -b, y = a:\\n  // a*-b + b*a + c*0 = -ba + ba + 0 = 0\\n  if (v.x*v.x > v.z*v.z || v.y*v.y > v.z*v.z) {\\n    return normalize(vec3(-v.y, v.x, 0.0));\\n  } else {\\n    return normalize(vec3(0.0, v.z, -v.y));\\n  }\\n}\\n\\n// Calculate the tube vertex and normal at the given index.\\n//\\n// The returned vertex is for a tube ring with its center at origin, radius of length(d), pointing in the direction of d.\\n//\\n// Each tube segment is made up of a ring of vertices.\\n// These vertices are used to make up the triangles of the tube by connecting them together in the vertex array.\\n// The indexes of tube segments run from 0 to 8.\\n//\\nvec3 getTubePosition(vec3 d, float index, out vec3 normal) {\\n  float segmentCount = 8.0;\\n\\n  float angle = 2.0 * 3.14159 * (index / segmentCount);\\n\\n  vec3 u = getOrthogonalVector(d);\\n  vec3 v = normalize(cross(u, d));\\n\\n  vec3 x = u * cos(angle) * length(d);\\n  vec3 y = v * sin(angle) * length(d);\\n  vec3 v3 = x + y;\\n\\n  normal = normalize(v3);\\n\\n  return v3;\\n}\\n\\nattribute vec4 vector;\\nattribute vec4 position;\\nattribute vec4 id;\\n\\nuniform mat4 model, view, projection;\\nuniform float tubeScale;\\n\\nvarying vec3 f_position;\\nvarying vec4 f_id;\\n\\nvoid main() {\\n  vec3 normal;\\n  vec3 XYZ = getTubePosition(mat3(model) * (tubeScale * vector.w * normalize(vector.xyz)), position.w, normal);\\n  vec4 tubePosition = model * vec4(position.xyz, 1.0) + vec4(XYZ, 0.0);\\n\\n  gl_Position = projection * view * tubePosition;\\n  f_id        = id;\\n  f_position  = position.xyz;\\n}\\n\"]),s=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3  clipBounds[2];\\nuniform float pickId;\\n\\nvarying vec3 f_position;\\nvarying vec4 f_id;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\\n\\n  gl_FragColor = vec4(pickId, f_id.xyz);\\n}\"]);r.meshShader={vertex:a,fragment:i,attributes:[{name:\"position\",type:\"vec4\"},{name:\"normal\",type:\"vec3\"},{name:\"color\",type:\"vec4\"},{name:\"uv\",type:\"vec2\"},{name:\"vector\",type:\"vec4\"}]},r.pickShader={vertex:o,fragment:s,attributes:[{name:\"position\",type:\"vec4\"},{name:\"id\",type:\"vec4\"},{name:\"vector\",type:\"vec4\"}]}},{glslify:410}],313:[function(t,e,r){\"use strict\";var n=t(\"gl-shader\"),a=t(\"gl-buffer\"),i=t(\"gl-vao\"),o=t(\"gl-texture2d\"),s=t(\"normals\"),l=t(\"gl-mat4/multiply\"),c=t(\"gl-mat4/invert\"),u=t(\"ndarray\"),h=t(\"colormap\"),f=t(\"simplicial-complex-contour\"),p=t(\"typedarray-pool\"),d=t(\"./shaders\"),g=d.meshShader,v=d.pickShader,m=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function y(t,e,r,n,a,i,o,s,l,c,u,h,f,p,d,g,v,y,x,b,_,w,k,T){this.gl=t,this.cells=[],this.positions=[],this.intensity=[],this.texture=e,this.dirty=!0,this.triShader=r,this.pickShader=n,this.trianglePositions=a,this.triangleVectors=i,this.triangleColors=s,this.triangleNormals=c,this.triangleUVs=l,this.triangleIds=o,this.triangleVAO=u,this.triangleCount=0,this.lineWidth=1,this.edgePositions=h,this.edgeColors=p,this.edgeUVs=d,this.edgeIds=f,this.edgeVAO=g,this.edgeCount=0,this.pointPositions=v,this.pointColors=x,this.pointUVs=b,this.pointSizes=_,this.pointIds=y,this.pointVAO=w,this.pointCount=0,this.contourLineWidth=1,this.contourPositions=k,this.contourVAO=T,this.contourCount=0,this.contourColor=[0,0,0],this.contourEnable=!1,this.pickId=1,this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.lightPosition=[1e5,1e5,0],this.ambientLight=.8,this.diffuseLight=.8,this.specularLight=2,this.roughness=.5,this.fresnel=1.5,this.opacity=1,this.tubeScale=1,this._model=m,this._view=m,this._projection=m,this._resolution=[1,1],this.pixelRatio=1}var x=y.prototype;function b(t){var e=n(t,v.vertex,v.fragment,null,v.attributes);return e.attributes.position.location=0,e.attributes.id.location=1,e.attributes.vector.location=5,e}x.isOpaque=function(){return this.opacity>=1},x.isTransparent=function(){return this.opacity<1},x.pickSlots=1,x.setPickBase=function(t){this.pickId=t},x.highlight=function(t){if(t&&this.contourEnable){for(var e=f(this.cells,this.intensity,t.intensity),r=e.cells,n=e.vertexIds,a=e.vertexWeights,i=r.length,o=p.mallocFloat32(6*i),s=0,l=0;l<i;++l)for(var c=r[l],u=0;u<2;++u){var h=c[0];2===c.length&&(h=c[u]);for(var d=n[h][0],g=n[h][1],v=a[h],m=1-v,y=this.positions[d],x=this.positions[g],b=0;b<3;++b)o[s++]=v*y[b]+m*x[b]}this.contourCount=s/3|0,this.contourPositions.update(o.subarray(0,s)),p.free(o)}else this.contourCount=0},x.update=function(t){t=t||{};var e=this.gl;this.dirty=!0,\"contourEnable\"in t&&(this.contourEnable=t.contourEnable),\"contourColor\"in t&&(this.contourColor=t.contourColor),\"lineWidth\"in t&&(this.lineWidth=t.lineWidth),\"lightPosition\"in t&&(this.lightPosition=t.lightPosition),\"opacity\"in t&&(this.opacity=t.opacity),\"ambient\"in t&&(this.ambientLight=t.ambient),\"diffuse\"in t&&(this.diffuseLight=t.diffuse),\"specular\"in t&&(this.specularLight=t.specular),\"roughness\"in t&&(this.roughness=t.roughness),\"fresnel\"in t&&(this.fresnel=t.fresnel),t.texture?(this.texture.dispose(),this.texture=o(e,t.texture)):t.colormap&&(this.texture.shape=[256,256],this.texture.minFilter=e.LINEAR_MIPMAP_LINEAR,this.texture.magFilter=e.LINEAR,this.texture.setPixels(function(t){for(var e=h({colormap:t,nshades:256,format:\"rgba\"}),r=new Uint8Array(1024),n=0;n<256;++n){for(var a=e[n],i=0;i<3;++i)r[4*n+i]=a[i];r[4*n+3]=255*a[3]}return u(r,[256,256,4],[4,0,1])}(t.colormap)),this.texture.generateMipmap());var r=t.cells,n=t.positions,a=t.vectors;if(n&&r&&a){void 0!==t.tubeScale&&(this.tubeScale=t.tubeScale);var i=[],l=[],c=[],f=[],p=[],d=[],g=[],v=[],m=[],y=[],x=[],b=[],_=[],w=[],k=[];this.cells=r,this.positions=n,this.vectors=a;var T=t.vertexNormals,A=t.cellNormals,M=void 0===t.vertexNormalsEpsilon?1e-6:t.vertexNormalsEpsilon,S=void 0===t.faceNormalsEpsilon?1e-6:t.faceNormalsEpsilon;t.useFacetNormals&&!A&&(A=s.faceNormals(r,n,S)),A||T||(T=s.vertexNormals(r,n,M));var E=t.vertexColors,C=t.cellColors,L=t.meshColor||[1,1,1,1],P=t.vertexUVs,O=t.vertexIntensity,I=t.cellUVs,z=t.cellIntensity,D=1/0,R=-1/0;if(!P&&!I)if(O)if(t.vertexIntensityBounds)D=+t.vertexIntensityBounds[0],R=+t.vertexIntensityBounds[1];else for(var F=0;F<O.length;++F){var B=O[F];D=Math.min(D,B),R=Math.max(R,B)}else if(z)for(F=0;F<z.length;++F){B=z[F];D=Math.min(D,B),R=Math.max(R,B)}else for(F=0;F<n.length;++F){B=n[F][2];D=Math.min(D,B),R=Math.max(R,B)}this.intensity=O||(z?function(t,e,r){for(var n=new Array(e),a=0;a<e;++a)n[a]=0;var i=t.length;for(a=0;a<i;++a)for(var o=t[a],s=0;s<o.length;++s)n[o[s]]=r[a];return n}(r,n.length,z):function(t){for(var e=t.length,r=new Array(e),n=0;n<e;++n)r[n]=t[n][2];return r}(n));var N=t.pointSizes,j=t.pointSize||1;this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]];for(F=0;F<n.length;++F)for(var V=n[F],U=0;U<3;++U)!isNaN(V[U])&&isFinite(V[U])&&(this.bounds[0][U]=Math.min(this.bounds[0][U],V[U]),this.bounds[1][U]=Math.max(this.bounds[1][U],V[U]));var q=0,H=0,G=0;t:for(F=0;F<r.length;++F){var Y=r[F];switch(Y.length){case 1:for(V=n[X=Y[0]],U=0;U<3;++U)if(isNaN(V[U])||!isFinite(V[U]))continue t;x.push(V[0],V[1],V[2],V[3]),3===(Z=E?E[X]:C?C[F]:L).length?b.push(Z[0],Z[1],Z[2],1):b.push(Z[0],Z[1],Z[2],Z[3]),J=P?P[X]:O?[(O[X]-D)/(R-D),0]:I?I[F]:z?[(z[F]-D)/(R-D),0]:[(V[2]-D)/(R-D),0],_.push(J[0],J[1]),N?w.push(N[X]):w.push(j),k.push(F),G+=1;break;case 2:for(U=0;U<2;++U){V=n[X=Y[U]];for(var W=0;W<3;++W)if(isNaN(V[W])||!isFinite(V[W]))continue t}for(U=0;U<2;++U){V=n[X=Y[U]];g.push(V[0],V[1],V[2]),3===(Z=E?E[X]:C?C[F]:L).length?v.push(Z[0],Z[1],Z[2],1):v.push(Z[0],Z[1],Z[2],Z[3]),J=P?P[X]:O?[(O[X]-D)/(R-D),0]:I?I[F]:z?[(z[F]-D)/(R-D),0]:[(V[2]-D)/(R-D),0],m.push(J[0],J[1]),y.push(F)}H+=1;break;case 3:for(U=0;U<3;++U)for(V=n[X=Y[U]],W=0;W<3;++W)if(isNaN(V[W])||!isFinite(V[W]))continue t;for(U=0;U<3;++U){var X;V=n[X=Y[2-U]];i.push(V[0],V[1],V[2],V[3]);var Z,J,K,Q=a[X];l.push(Q[0],Q[1],Q[2],Q[3]),3===(Z=E?E[X]:C?C[F]:L).length?c.push(Z[0],Z[1],Z[2],1):c.push(Z[0],Z[1],Z[2],Z[3]),J=P?P[X]:O?[(O[X]-D)/(R-D),0]:I?I[F]:z?[(z[F]-D)/(R-D),0]:[(V[2]-D)/(R-D),0],p.push(J[0],J[1]),K=T?T[X]:A[F],f.push(K[0],K[1],K[2]),d.push(F)}q+=1}}this.pointCount=G,this.edgeCount=H,this.triangleCount=q,this.pointPositions.update(x),this.pointColors.update(b),this.pointUVs.update(_),this.pointSizes.update(w),this.pointIds.update(new Uint32Array(k)),this.edgePositions.update(g),this.edgeColors.update(v),this.edgeUVs.update(m),this.edgeIds.update(new Uint32Array(y)),this.trianglePositions.update(i),this.triangleVectors.update(l),this.triangleColors.update(c),this.triangleUVs.update(p),this.triangleNormals.update(f),this.triangleIds.update(new Uint32Array(d))}},x.drawTransparent=x.draw=function(t){t=t||{};for(var e=this.gl,r=t.model||m,n=t.view||m,a=t.projection||m,i=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],o=0;o<3;++o)i[0][o]=Math.max(i[0][o],this.clipBounds[0][o]),i[1][o]=Math.min(i[1][o],this.clipBounds[1][o]);var s={model:r,view:n,projection:a,inverseModel:m.slice(),clipBounds:i,kambient:this.ambientLight,kdiffuse:this.diffuseLight,kspecular:this.specularLight,roughness:this.roughness,fresnel:this.fresnel,eyePosition:[0,0,0],lightPosition:[0,0,0],opacity:this.opacity,tubeScale:this.tubeScale,contourColor:this.contourColor,texture:0};s.inverseModel=c(s.inverseModel,s.model),e.disable(e.CULL_FACE),this.texture.bind(0);var u=new Array(16);l(u,s.view,s.model),l(u,s.projection,u),c(u,u);for(o=0;o<3;++o)s.eyePosition[o]=u[12+o]/u[15];var h=u[15];for(o=0;o<3;++o)h+=this.lightPosition[o]*u[4*o+3];for(o=0;o<3;++o){for(var f=u[12+o],p=0;p<3;++p)f+=u[4*p+o]*this.lightPosition[p];s.lightPosition[o]=f/h}if(this.triangleCount>0){var d=this.triShader;d.bind(),d.uniforms=s,this.triangleVAO.bind(),e.drawArrays(e.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind()}},x.drawPick=function(t){t=t||{};for(var e=this.gl,r=t.model||m,n=t.view||m,a=t.projection||m,i=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],o=0;o<3;++o)i[0][o]=Math.max(i[0][o],this.clipBounds[0][o]),i[1][o]=Math.min(i[1][o],this.clipBounds[1][o]);this._model=[].slice.call(r),this._view=[].slice.call(n),this._projection=[].slice.call(a),this._resolution=[e.drawingBufferWidth,e.drawingBufferHeight];var s={model:r,view:n,projection:a,clipBounds:i,tubeScale:this.tubeScale,pickId:this.pickId/255},l=this.pickShader;l.bind(),l.uniforms=s,this.triangleCount>0&&(this.triangleVAO.bind(),e.drawArrays(e.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind()),this.edgeCount>0&&(this.edgeVAO.bind(),e.lineWidth(this.lineWidth*this.pixelRatio),e.drawArrays(e.LINES,0,2*this.edgeCount),this.edgeVAO.unbind())},x.pick=function(t){if(!t)return null;if(t.id!==this.pickId)return null;var e=t.value[0]+256*t.value[1]+65536*t.value[2],r=this.cells[e],n=this.positions[r[1]].slice(0,3);return{index:e,position:n,intensity:this.intensity[r[1]],velocity:this.vectors[r[1]].slice(0,3),divergence:this.vectors[r[1]][3],dataCoordinate:n}},x.dispose=function(){this.texture.dispose(),this.triShader.dispose(),this.pickShader.dispose(),this.triangleVAO.dispose(),this.trianglePositions.dispose(),this.triangleVectors.dispose(),this.triangleColors.dispose(),this.triangleUVs.dispose(),this.triangleNormals.dispose(),this.triangleIds.dispose(),this.edgeVAO.dispose(),this.edgePositions.dispose(),this.edgeColors.dispose(),this.edgeUVs.dispose(),this.edgeIds.dispose(),this.pointVAO.dispose(),this.pointPositions.dispose(),this.pointColors.dispose(),this.pointUVs.dispose(),this.pointSizes.dispose(),this.pointIds.dispose(),this.contourVAO.dispose(),this.contourPositions.dispose()},e.exports=function(t,e){1===arguments.length&&(t=(e=t).gl);var r=e.triShader||function(t){var e=n(t,g.vertex,g.fragment,null,g.attributes);return e.attributes.position.location=0,e.attributes.color.location=2,e.attributes.uv.location=3,e.attributes.vector.location=5,e}(t),s=b(t),l=o(t,u(new Uint8Array([255,255,255,255]),[1,1,4]));l.generateMipmap(),l.minFilter=t.LINEAR_MIPMAP_LINEAR,l.magFilter=t.LINEAR;var c=a(t),h=a(t),f=a(t),p=a(t),d=a(t),v=a(t),m=i(t,[{buffer:c,type:t.FLOAT,size:4},{buffer:v,type:t.UNSIGNED_BYTE,size:4,normalized:!0},{buffer:f,type:t.FLOAT,size:4},{buffer:p,type:t.FLOAT,size:2},{buffer:d,type:t.FLOAT,size:3},{buffer:h,type:t.FLOAT,size:4}]),x=a(t),_=a(t),w=a(t),k=a(t),T=i(t,[{buffer:x,type:t.FLOAT,size:3},{buffer:k,type:t.UNSIGNED_BYTE,size:4,normalized:!0},{buffer:_,type:t.FLOAT,size:4},{buffer:w,type:t.FLOAT,size:2}]),A=a(t),M=a(t),S=a(t),E=a(t),C=a(t),L=i(t,[{buffer:A,type:t.FLOAT,size:3},{buffer:C,type:t.UNSIGNED_BYTE,size:4,normalized:!0},{buffer:M,type:t.FLOAT,size:4},{buffer:S,type:t.FLOAT,size:2},{buffer:E,type:t.FLOAT,size:1}]),P=a(t),O=new y(t,l,r,s,c,h,v,f,p,d,m,x,k,_,w,T,A,C,M,S,E,L,P,i(t,[{buffer:P,type:t.FLOAT,size:3}]));return O.update(e),O}},{\"./shaders\":312,colormap:127,\"gl-buffer\":242,\"gl-mat4/invert\":266,\"gl-mat4/multiply\":268,\"gl-shader\":302,\"gl-texture2d\":323,\"gl-vao\":328,ndarray:451,normals:454,\"simplicial-complex-contour\":519,\"typedarray-pool\":546}],314:[function(t,e,r){\"use strict\";var n=t(\"gl-vec3\"),a=t(\"gl-vec4\"),i=function(t,e,r,i){for(var o=0,s=0;s<t.length;s++)for(var l=t[s].velocities,c=0;c<l.length;c++){var u=n.length(l[c]);u>o&&(o=u)}var h=t.map(function(t){return function(t,e,r,i){var o,s,l,c=t.points,u=t.velocities,h=t.divergences;n.set(n.create(),0,1,0),n.create(),n.create();n.create();for(var f=[],p=[],d=[],g=[],v=[],m=[],y=0,x=0,b=a.create(),_=a.create(),w=0;w<c.length;w++){o=c[w],s=u[w],l=h[w],0===e&&(l=.05*r),x=n.length(s)/i,b=a.create(),n.copy(b,s),b[3]=l;for(var k=0;k<8;k++)v[k]=[o[0],o[1],o[2],k];if(g.length>0)for(k=0;k<8;k++){var T=(k+1)%8;f.push(g[k],v[k],v[T],v[T],g[T],g[k]),d.push(_,b,b,b,_,_),m.push(y,x,x,x,y,y),p.push([f.length-6,f.length-5,f.length-4],[f.length-3,f.length-2,f.length-1])}var A=g;g=v,v=A,A=_,_=b,b=A,A=y,y=x,x=A}return{positions:f,cells:p,vectors:d,vertexIntensity:m}}(t,r,i,o)}),f=[],p=[],d=[],g=[];for(s=0;s<h.length;s++){var v=h[s],m=f.length;f=f.concat(v.positions),d=d.concat(v.vectors),g=g.concat(v.vertexIntensity);for(c=0;c<v.cells.length;c++){var y=v.cells[c],x=[];p.push(x);for(var b=0;b<y.length;b++)x.push(y[b]+m)}}return{positions:f,cells:p,vectors:d,vertexIntensity:g,colormap:e}},o=function(t,e){var r=n.create(),a=1e-4;n.add(r,t,[a,0,0]);var i=this.getVelocity(r);n.subtract(i,i,e),n.scale(i,i,1e4),n.add(r,t,[0,a,0]);var o=this.getVelocity(r);n.subtract(o,o,e),n.scale(o,o,1e4),n.add(r,t,[0,0,a]);var s=this.getVelocity(r);return n.subtract(s,s,e),n.scale(s,s,1e4),n.add(r,i,o),n.add(r,r,s),r},s=function(t){return f(t,this.vectors,this.meshgrid,this.clampBorders)},l=function(t,e){for(var r=0;r<t.length;r++){var n=t[r];if(n===e)return r;if(n>e)return r-1}return r},c=n.create(),u=n.create(),h=function(t,e,r){return t<e?e:t>r?r:t},f=function(t,e,r,a){var i=t[0],o=t[1],s=t[2],f=r[0].length,p=r[1].length,d=r[2].length,g=l(r[0],i),v=l(r[1],o),m=l(r[2],s),y=g+1,x=v+1,b=m+1;if(r[0][g]===i&&(y=g),r[1][v]===o&&(x=v),r[2][m]===s&&(b=m),a&&(g=h(g,0,f-1),y=h(y,0,f-1),v=h(v,0,p-1),x=h(x,0,p-1),m=h(m,0,d-1),b=h(b,0,d-1)),g<0||v<0||m<0||y>=f||x>=p||b>=d)return n.create();var _=(i-r[0][g])/(r[0][y]-r[0][g]),w=(o-r[1][v])/(r[1][x]-r[1][v]),k=(s-r[2][m])/(r[2][b]-r[2][m]);(_<0||_>1||isNaN(_))&&(_=0),(w<0||w>1||isNaN(w))&&(w=0),(k<0||k>1||isNaN(k))&&(k=0);var T=m*f*p,A=b*f*p,M=v*f,S=x*f,E=g,C=y,L=e[M+T+E],P=e[M+T+C],O=e[S+T+E],I=e[S+T+C],z=e[M+A+E],D=e[M+A+C],R=e[S+A+E],F=e[S+A+C],B=n.create();return n.lerp(B,L,P,_),n.lerp(c,O,I,_),n.lerp(B,B,c,w),n.lerp(c,z,D,_),n.lerp(u,R,F,_),n.lerp(c,c,u,w),n.lerp(B,B,c,k),B},p=function(t){var e=1/0;t.sort(function(t,e){return t-e});for(var r=1;r<t.length;r++){var n=Math.abs(t[r]-t[r-1]);n<e&&(e=n)}return e};e.exports=function(t,e){var r=t.startingPositions,a=t.maxLength||1e3,l=t.tubeSize||1,c=t.absoluteTubeSize;t.getDivergence||(t.getDivergence=o),t.getVelocity||(t.getVelocity=s),void 0===t.clampBorders&&(t.clampBorders=!0);var u=[],h=e[0][0],f=e[0][1],d=e[0][2],g=e[1][0],v=e[1][1],m=e[1][2],y=function(t,e){var r=e[0],n=e[1],a=e[2];return r>=h&&r<=g&&n>=f&&n<=v&&a>=d&&a<=m},x=10*n.distance(e[0],e[1])/a,b=x*x,_=1,w=0;n.create();r.length>=2&&(_=function(t){for(var e=[],r=[],n=[],a={},i={},o={},s=0;s<t.length;s++){var l=t[s],c=l[0],u=l[1],h=l[2];a[c]||(e.push(c),a[c]=!0),i[u]||(r.push(u),i[u]=!0),o[h]||(n.push(h),o[h]=!0)}var f=p(e),d=p(r),g=p(n),v=Math.min(f,d,g);return isFinite(v)?v:1}(r));for(var k=0;k<r.length;k++){var T=n.create();n.copy(T,r[k]);var A=[T],M=[],S=t.getVelocity(T),E=T;M.push(S);var C=[],L=t.getDivergence(T,S);(z=n.length(L))>w&&!isNaN(z)&&isFinite(z)&&(w=z),C.push(z),u.push({points:A,velocities:M,divergences:C});for(var P=0;P<100*a&&A.length<a&&y(0,T);){P++;var O=n.clone(S),I=n.squaredLength(O);if(0===I)break;if(I>b&&n.scale(O,O,x/Math.sqrt(I)),n.add(O,O,T),S=t.getVelocity(O),n.squaredDistance(E,O)-b>-1e-4*b){A.push(O),E=O,M.push(S);L=t.getDivergence(O,S);(z=n.length(L))>w&&!isNaN(z)&&isFinite(z)&&(w=z),C.push(z)}T=O}}for(k=0;k<C.length;k++){var z=C[k];!isNaN(z)&&isFinite(z)||(C[k]=w)}var D=i(u,t.colormap,w,_);return c?D.tubeScale=c:(0===w&&(w=1),D.tubeScale=.5*l*_/w),D},e.exports.createTubeMesh=t(\"./lib/tubemesh\")},{\"./lib/tubemesh\":313,\"gl-vec3\":347,\"gl-vec4\":383}],315:[function(t,e,r){var n=t(\"gl-shader\"),a=t(\"glslify\"),i=a([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec4 uv;\\nattribute vec3 f;\\nattribute vec3 normal;\\n\\nuniform vec3 objectOffset;\\nuniform mat4 model, view, projection, inverseModel;\\nuniform vec3 lightPosition, eyePosition;\\nuniform sampler2D colormap;\\n\\nvarying float value, kill;\\nvarying vec3 worldCoordinate;\\nvarying vec2 planeCoordinate;\\nvarying vec3 lightDirection, eyeDirection, surfaceNormal;\\nvarying vec4 vColor;\\n\\nvoid main() {\\n  vec3 localCoordinate = vec3(uv.zw, f.x);\\n  worldCoordinate = objectOffset + localCoordinate;\\n  vec4 worldPosition = model * vec4(worldCoordinate, 1.0);\\n  vec4 clipPosition = projection * view * worldPosition;\\n  gl_Position = clipPosition;\\n  kill = f.y;\\n  value = f.z;\\n  planeCoordinate = uv.xy;\\n\\n  vColor = texture2D(colormap, vec2(value, value));\\n\\n  //Lighting geometry parameters\\n  vec4 cameraCoordinate = view * worldPosition;\\n  cameraCoordinate.xyz /= cameraCoordinate.w;\\n  lightDirection = lightPosition - cameraCoordinate.xyz;\\n  eyeDirection   = eyePosition - cameraCoordinate.xyz;\\n  surfaceNormal  = normalize((vec4(normal,0) * inverseModel).xyz);\\n}\\n\"]),o=a([\"precision highp float;\\n#define GLSLIFY 1\\n\\nfloat beckmannDistribution(float x, float roughness) {\\n  float NdotH = max(x, 0.0001);\\n  float cos2Alpha = NdotH * NdotH;\\n  float tan2Alpha = (cos2Alpha - 1.0) / cos2Alpha;\\n  float roughness2 = roughness * roughness;\\n  float denom = 3.141592653589793 * roughness2 * cos2Alpha * cos2Alpha;\\n  return exp(tan2Alpha / roughness2) / denom;\\n}\\n\\nfloat beckmannSpecular(\\n  vec3 lightDirection,\\n  vec3 viewDirection,\\n  vec3 surfaceNormal,\\n  float roughness) {\\n  return beckmannDistribution(dot(surfaceNormal, normalize(lightDirection + viewDirection)), roughness);\\n}\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 lowerBound, upperBound;\\nuniform float contourTint;\\nuniform vec4 contourColor;\\nuniform sampler2D colormap;\\nuniform vec3 clipBounds[2];\\nuniform float roughness, fresnel, kambient, kdiffuse, kspecular, opacity;\\nuniform float vertexColor;\\n\\nvarying float value, kill;\\nvarying vec3 worldCoordinate;\\nvarying vec3 lightDirection, eyeDirection, surfaceNormal;\\nvarying vec4 vColor;\\n\\nvoid main() {\\n  if ((kill > 0.0) ||\\n      (outOfRange(clipBounds[0], clipBounds[1], worldCoordinate))) discard;\\n\\n  vec3 N = normalize(surfaceNormal);\\n  vec3 V = normalize(eyeDirection);\\n  vec3 L = normalize(lightDirection);\\n\\n  if(gl_FrontFacing) {\\n    N = -N;\\n  }\\n\\n  float specular = max(beckmannSpecular(L, V, N, roughness), 0.);\\n  float diffuse  = min(kambient + kdiffuse * max(dot(N, L), 0.0), 1.0);\\n\\n  //decide how to interpolate color \\u2014 in vertex or in fragment\\n  vec4 surfaceColor =\\n    step(vertexColor, .5) * texture2D(colormap, vec2(value, value)) +\\n    step(.5, vertexColor) * vColor;\\n\\n  vec4 litColor = surfaceColor.a * vec4(diffuse * surfaceColor.rgb + kspecular * vec3(1,1,1) * specular,  1.0);\\n\\n  gl_FragColor = mix(litColor, contourColor, contourTint) * opacity;\\n}\\n\"]),s=a([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec4 uv;\\nattribute float f;\\n\\nuniform vec3 objectOffset;\\nuniform mat3 permutation;\\nuniform mat4 model, view, projection;\\nuniform float height, zOffset;\\nuniform sampler2D colormap;\\n\\nvarying float value, kill;\\nvarying vec3 worldCoordinate;\\nvarying vec2 planeCoordinate;\\nvarying vec3 lightDirection, eyeDirection, surfaceNormal;\\nvarying vec4 vColor;\\n\\nvoid main() {\\n  vec3 dataCoordinate = permutation * vec3(uv.xy, height);\\n  worldCoordinate = objectOffset + dataCoordinate;\\n  vec4 worldPosition = model * vec4(worldCoordinate, 1.0);\\n\\n  vec4 clipPosition = projection * view * worldPosition;\\n  clipPosition.z += zOffset;\\n\\n  gl_Position = clipPosition;\\n  value = f + objectOffset.z;\\n  kill = -1.0;\\n  planeCoordinate = uv.zw;\\n\\n  vColor = texture2D(colormap, vec2(value, value));\\n\\n  //Don't do lighting for contours\\n  surfaceNormal   = vec3(1,0,0);\\n  eyeDirection    = vec3(0,1,0);\\n  lightDirection  = vec3(0,0,1);\\n}\\n\"]),l=a([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec2 shape;\\nuniform vec3 clipBounds[2];\\nuniform float pickId;\\n\\nvarying float value, kill;\\nvarying vec3 worldCoordinate;\\nvarying vec2 planeCoordinate;\\nvarying vec3 surfaceNormal;\\n\\nvec2 splitFloat(float v) {\\n  float vh = 255.0 * v;\\n  float upper = floor(vh);\\n  float lower = fract(vh);\\n  return vec2(upper / 255.0, floor(lower * 16.0) / 16.0);\\n}\\n\\nvoid main() {\\n  if ((kill > 0.0) ||\\n      (outOfRange(clipBounds[0], clipBounds[1], worldCoordinate))) discard;\\n\\n  vec2 ux = splitFloat(planeCoordinate.x / shape.x);\\n  vec2 uy = splitFloat(planeCoordinate.y / shape.y);\\n  gl_FragColor = vec4(pickId, ux.x, uy.x, ux.y + (uy.y/16.0));\\n}\\n\"]);r.createShader=function(t){var e=n(t,i,o,null,[{name:\"uv\",type:\"vec4\"},{name:\"f\",type:\"vec3\"},{name:\"normal\",type:\"vec3\"}]);return e.attributes.uv.location=0,e.attributes.f.location=1,e.attributes.normal.location=2,e},r.createPickShader=function(t){var e=n(t,i,l,null,[{name:\"uv\",type:\"vec4\"},{name:\"f\",type:\"vec3\"},{name:\"normal\",type:\"vec3\"}]);return e.attributes.uv.location=0,e.attributes.f.location=1,e.attributes.normal.location=2,e},r.createContourShader=function(t){var e=n(t,s,o,null,[{name:\"uv\",type:\"vec4\"},{name:\"f\",type:\"float\"}]);return e.attributes.uv.location=0,e.attributes.f.location=1,e},r.createPickContourShader=function(t){var e=n(t,s,l,null,[{name:\"uv\",type:\"vec4\"},{name:\"f\",type:\"float\"}]);return e.attributes.uv.location=0,e.attributes.f.location=1,e}},{\"gl-shader\":302,glslify:410}],316:[function(t,e,r){arguments[4][112][0].apply(r,arguments)},{dup:112}],317:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.gl,r=y(e),n=b(e),s=x(e),l=_(e),c=a(e),u=i(e,[{buffer:c,size:4,stride:w,offset:0},{buffer:c,size:3,stride:w,offset:16},{buffer:c,size:3,stride:w,offset:28}]),h=a(e),f=i(e,[{buffer:h,size:4,stride:20,offset:0},{buffer:h,size:1,stride:20,offset:16}]),p=a(e),d=i(e,[{buffer:p,size:2,type:e.FLOAT}]),g=o(e,1,S,e.RGBA,e.UNSIGNED_BYTE);g.minFilter=e.LINEAR,g.magFilter=e.LINEAR;var v=new E(e,[0,0],[[0,0,0],[0,0,0]],r,n,c,u,g,s,l,h,f,p,d,[0,0,0]),m={levels:[[],[],[]]};for(var k in t)m[k]=t[k];return m.colormap=m.colormap||\"jet\",v.update(m),v};var n=t(\"bit-twiddle\"),a=t(\"gl-buffer\"),i=t(\"gl-vao\"),o=t(\"gl-texture2d\"),s=t(\"typedarray-pool\"),l=t(\"colormap\"),c=t(\"ndarray-ops\"),u=t(\"ndarray-pack\"),h=t(\"ndarray\"),f=t(\"surface-nets\"),p=t(\"gl-mat4/multiply\"),d=t(\"gl-mat4/invert\"),g=t(\"binary-search-bounds\"),v=t(\"ndarray-gradient\"),m=t(\"./lib/shaders\"),y=m.createShader,x=m.createContourShader,b=m.createPickShader,_=m.createPickContourShader,w=40,k=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],T=[[0,0],[0,1],[1,0],[1,1],[1,0],[0,1]],A=[[0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0]];function M(t,e,r,n,a){this.position=t,this.index=e,this.uv=r,this.level=n,this.dataCoordinate=a}!function(){for(var t=0;t<3;++t){var e=A[t],r=(t+2)%3;e[(t+1)%3+0]=1,e[r+3]=1,e[t+6]=1}}();var S=256;function E(t,e,r,n,a,i,o,l,c,u,f,p,d,g,v){this.gl=t,this.shape=e,this.bounds=r,this.objectOffset=v,this.intensityBounds=[],this._shader=n,this._pickShader=a,this._coordinateBuffer=i,this._vao=o,this._colorMap=l,this._contourShader=c,this._contourPickShader=u,this._contourBuffer=f,this._contourVAO=p,this._contourOffsets=[[],[],[]],this._contourCounts=[[],[],[]],this._vertexCount=0,this._pickResult=new M([0,0,0],[0,0],[0,0],[0,0,0],[0,0,0]),this._dynamicBuffer=d,this._dynamicVAO=g,this._dynamicOffsets=[0,0,0],this._dynamicCounts=[0,0,0],this.contourWidth=[1,1,1],this.contourLevels=[[1],[1],[1]],this.contourTint=[0,0,0],this.contourColor=[[.5,.5,.5,1],[.5,.5,.5,1],[.5,.5,.5,1]],this.showContour=!0,this.showSurface=!0,this.enableHighlight=[!0,!0,!0],this.highlightColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.highlightTint=[1,1,1],this.highlightLevel=[-1,-1,-1],this.enableDynamic=[!0,!0,!0],this.dynamicLevel=[NaN,NaN,NaN],this.dynamicColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.dynamicTint=[1,1,1],this.dynamicWidth=[1,1,1],this.axesBounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.surfaceProject=[!1,!1,!1],this.contourProject=[[!1,!1,!1],[!1,!1,!1],[!1,!1,!1]],this.colorBounds=[!1,!1],this._field=[h(s.mallocFloat(1024),[0,0]),h(s.mallocFloat(1024),[0,0]),h(s.mallocFloat(1024),[0,0])],this.pickId=1,this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.snapToData=!1,this.pixelRatio=1,this.opacity=1,this.lightPosition=[10,1e4,0],this.ambientLight=.8,this.diffuseLight=.8,this.specularLight=2,this.roughness=.5,this.fresnel=1.5,this.vertexColor=0,this.dirty=!0}var C=E.prototype;C.isTransparent=function(){return this.opacity<1},C.isOpaque=function(){if(this.opacity>=1)return!0;for(var t=0;t<3;++t)if(this._contourCounts[t].length>0||this._dynamicCounts[t]>0)return!0;return!1},C.pickSlots=1,C.setPickBase=function(t){this.pickId=t};var L=[0,0,0],P={showSurface:!1,showContour:!1,projections:[k.slice(),k.slice(),k.slice()],clipBounds:[[[0,0,0],[0,0,0]],[[0,0,0],[0,0,0]],[[0,0,0],[0,0,0]]]};function O(t,e){var r,n,a,i=e.axes&&e.axes.lastCubeProps.axis||L,o=e.showSurface,s=e.showContour;for(r=0;r<3;++r)for(o=o||e.surfaceProject[r],n=0;n<3;++n)s=s||e.contourProject[r][n];for(r=0;r<3;++r){var l=P.projections[r];for(n=0;n<16;++n)l[n]=0;for(n=0;n<4;++n)l[5*n]=1;l[5*r]=0,l[12+r]=e.axesBounds[+(i[r]>0)][r],p(l,t.model,l);var c=P.clipBounds[r];for(a=0;a<2;++a)for(n=0;n<3;++n)c[a][n]=t.clipBounds[a][n];c[0][r]=-1e8,c[1][r]=1e8}return P.showSurface=o,P.showContour=s,P}var I={model:k,view:k,projection:k,inverseModel:k.slice(),lowerBound:[0,0,0],upperBound:[0,0,0],colorMap:0,clipBounds:[[0,0,0],[0,0,0]],height:0,contourTint:0,contourColor:[0,0,0,1],permutation:[1,0,0,0,1,0,0,0,1],zOffset:-1e-4,objectOffset:[0,0,0],kambient:1,kdiffuse:1,kspecular:1,lightPosition:[1e3,1e3,1e3],eyePosition:[0,0,0],roughness:1,fresnel:1,opacity:1,vertexColor:0},z=k.slice(),D=[1,0,0,0,1,0,0,0,1];function R(t,e){t=t||{};var r=this.gl;r.disable(r.CULL_FACE),this._colorMap.bind(0);var n=I;n.model=t.model||k,n.view=t.view||k,n.projection=t.projection||k,n.lowerBound=[this.bounds[0][0],this.bounds[0][1],this.colorBounds[0]||this.bounds[0][2]],n.upperBound=[this.bounds[1][0],this.bounds[1][1],this.colorBounds[1]||this.bounds[1][2]],n.objectOffset=this.objectOffset,n.contourColor=this.contourColor[0],n.inverseModel=d(n.inverseModel,n.model);for(var a=0;a<2;++a)for(var i=n.clipBounds[a],o=0;o<3;++o)i[o]=Math.min(Math.max(this.clipBounds[a][o],-1e8),1e8);n.kambient=this.ambientLight,n.kdiffuse=this.diffuseLight,n.kspecular=this.specularLight,n.roughness=this.roughness,n.fresnel=this.fresnel,n.opacity=this.opacity,n.height=0,n.permutation=D,n.vertexColor=this.vertexColor;var s=z;for(p(s,n.view,n.model),p(s,n.projection,s),d(s,s),a=0;a<3;++a)n.eyePosition[a]=s[12+a]/s[15];var l=s[15];for(a=0;a<3;++a)l+=this.lightPosition[a]*s[4*a+3];for(a=0;a<3;++a){var c=s[12+a];for(o=0;o<3;++o)c+=s[4*o+a]*this.lightPosition[o];n.lightPosition[a]=c/l}var u=O(n,this);if(u.showSurface&&e===this.opacity<1){for(this._shader.bind(),this._shader.uniforms=n,this._vao.bind(),this.showSurface&&this._vertexCount&&this._vao.draw(r.TRIANGLES,this._vertexCount),a=0;a<3;++a)this.surfaceProject[a]&&this.vertexCount&&(this._shader.uniforms.model=u.projections[a],this._shader.uniforms.clipBounds=u.clipBounds[a],this._vao.draw(r.TRIANGLES,this._vertexCount));this._vao.unbind()}if(u.showContour&&!e){var h=this._contourShader;n.kambient=1,n.kdiffuse=0,n.kspecular=0,n.opacity=1,h.bind(),h.uniforms=n;var f=this._contourVAO;for(f.bind(),a=0;a<3;++a)for(h.uniforms.permutation=A[a],r.lineWidth(this.contourWidth[a]*this.pixelRatio),o=0;o<this.contourLevels[a].length;++o)o===this.highlightLevel[a]?(h.uniforms.contourColor=this.highlightColor[a],h.uniforms.contourTint=this.highlightTint[a]):0!==o&&o-1!==this.highlightLevel[a]||(h.uniforms.contourColor=this.contourColor[a],h.uniforms.contourTint=this.contourTint[a]),this._contourCounts[a][o]&&(h.uniforms.height=this.contourLevels[a][o],f.draw(r.LINES,this._contourCounts[a][o],this._contourOffsets[a][o]));for(a=0;a<3;++a)for(h.uniforms.model=u.projections[a],h.uniforms.clipBounds=u.clipBounds[a],o=0;o<3;++o)if(this.contourProject[a][o]){h.uniforms.permutation=A[o],r.lineWidth(this.contourWidth[o]*this.pixelRatio);for(var g=0;g<this.contourLevels[o].length;++g)g===this.highlightLevel[o]?(h.uniforms.contourColor=this.highlightColor[o],h.uniforms.contourTint=this.highlightTint[o]):0!==g&&g-1!==this.highlightLevel[o]||(h.uniforms.contourColor=this.contourColor[o],h.uniforms.contourTint=this.contourTint[o]),this._contourCounts[o][g]&&(h.uniforms.height=this.contourLevels[o][g],f.draw(r.LINES,this._contourCounts[o][g],this._contourOffsets[o][g]))}for(f.unbind(),(f=this._dynamicVAO).bind(),a=0;a<3;++a)if(0!==this._dynamicCounts[a])for(h.uniforms.model=n.model,h.uniforms.clipBounds=n.clipBounds,h.uniforms.permutation=A[a],r.lineWidth(this.dynamicWidth[a]*this.pixelRatio),h.uniforms.contourColor=this.dynamicColor[a],h.uniforms.contourTint=this.dynamicTint[a],h.uniforms.height=this.dynamicLevel[a],f.draw(r.LINES,this._dynamicCounts[a],this._dynamicOffsets[a]),o=0;o<3;++o)this.contourProject[o][a]&&(h.uniforms.model=u.projections[o],h.uniforms.clipBounds=u.clipBounds[o],f.draw(r.LINES,this._dynamicCounts[a],this._dynamicOffsets[a]));f.unbind()}}C.draw=function(t){return R.call(this,t,!1)},C.drawTransparent=function(t){return R.call(this,t,!0)};var F={model:k,view:k,projection:k,inverseModel:k,clipBounds:[[0,0,0],[0,0,0]],height:0,shape:[0,0],pickId:0,lowerBound:[0,0,0],upperBound:[0,0,0],zOffset:0,objectOffset:[0,0,0],permutation:[1,0,0,0,1,0,0,0,1],lightPosition:[0,0,0],eyePosition:[0,0,0]};function B(t,e){return Array.isArray(t)?[e(t[0]),e(t[1]),e(t[2])]:[e(t),e(t),e(t)]}function N(t){return Array.isArray(t)?3===t.length?[t[0],t[1],t[2],1]:[t[0],t[1],t[2],t[3]]:[0,0,0,1]}function j(t){if(Array.isArray(t)){if(Array.isArray(t))return[N(t[0]),N(t[1]),N(t[2])];var e=N(t);return[e.slice(),e.slice(),e.slice()]}}C.drawPick=function(t){t=t||{};var e=this.gl;e.disable(e.CULL_FACE);var r=F;r.model=t.model||k,r.view=t.view||k,r.projection=t.projection||k,r.shape=this._field[2].shape,r.pickId=this.pickId/255,r.lowerBound=this.bounds[0],r.upperBound=this.bounds[1],r.objectOffset=this.objectOffset,r.permutation=D;for(var n=0;n<2;++n)for(var a=r.clipBounds[n],i=0;i<3;++i)a[i]=Math.min(Math.max(this.clipBounds[n][i],-1e8),1e8);var o=O(r,this);if(o.showSurface){for(this._pickShader.bind(),this._pickShader.uniforms=r,this._vao.bind(),this._vao.draw(e.TRIANGLES,this._vertexCount),n=0;n<3;++n)this.surfaceProject[n]&&(this._pickShader.uniforms.model=o.projections[n],this._pickShader.uniforms.clipBounds=o.clipBounds[n],this._vao.draw(e.TRIANGLES,this._vertexCount));this._vao.unbind()}if(o.showContour){var s=this._contourPickShader;s.bind(),s.uniforms=r;var l=this._contourVAO;for(l.bind(),i=0;i<3;++i)for(e.lineWidth(this.contourWidth[i]*this.pixelRatio),s.uniforms.permutation=A[i],n=0;n<this.contourLevels[i].length;++n)this._contourCounts[i][n]&&(s.uniforms.height=this.contourLevels[i][n],l.draw(e.LINES,this._contourCounts[i][n],this._contourOffsets[i][n]));for(n=0;n<3;++n)for(s.uniforms.model=o.projections[n],s.uniforms.clipBounds=o.clipBounds[n],i=0;i<3;++i)if(this.contourProject[n][i]){s.uniforms.permutation=A[i],e.lineWidth(this.contourWidth[i]*this.pixelRatio);for(var c=0;c<this.contourLevels[i].length;++c)this._contourCounts[i][c]&&(s.uniforms.height=this.contourLevels[i][c],l.draw(e.LINES,this._contourCounts[i][c],this._contourOffsets[i][c]))}l.unbind()}},C.pick=function(t){if(!t)return null;if(t.id!==this.pickId)return null;var e=this._field[2].shape,r=this._pickResult,n=e[0]*(t.value[0]+(t.value[2]>>4)/16)/255,a=Math.floor(n),i=n-a,o=e[1]*(t.value[1]+(15&t.value[2])/16)/255,s=Math.floor(o),l=o-s;a+=1,s+=1;var c=r.position;c[0]=c[1]=c[2]=0;for(var u=0;u<2;++u)for(var h=u?i:1-i,f=0;f<2;++f)for(var p=a+u,d=s+f,v=h*(f?l:1-l),m=0;m<3;++m)c[m]+=this._field[m].get(p,d)*v;for(var y=this._pickResult.level,x=0;x<3;++x)if(y[x]=g.le(this.contourLevels[x],c[x]),y[x]<0)this.contourLevels[x].length>0&&(y[x]=0);else if(y[x]<this.contourLevels[x].length-1){var b=this.contourLevels[x][y[x]],_=this.contourLevels[x][y[x]+1];Math.abs(b-c[x])>Math.abs(_-c[x])&&(y[x]+=1)}for(r.index[0]=i<.5?a:a+1,r.index[1]=l<.5?s:s+1,r.uv[0]=n/e[0],r.uv[1]=o/e[1],m=0;m<3;++m)r.dataCoordinate[m]=this._field[m].get(r.index[0],r.index[1]);return r},C.padField=function(t,e){var r=e.shape.slice(),n=t.shape.slice();c.assign(t.lo(1,1).hi(r[0],r[1]),e),c.assign(t.lo(1).hi(r[0],1),e.hi(r[0],1)),c.assign(t.lo(1,n[1]-1).hi(r[0],1),e.lo(0,r[1]-1).hi(r[0],1)),c.assign(t.lo(0,1).hi(1,r[1]),e.hi(1)),c.assign(t.lo(n[0]-1,1).hi(1,r[1]),e.lo(r[0]-1)),t.set(0,0,e.get(0,0)),t.set(0,n[1]-1,e.get(0,r[1]-1)),t.set(n[0]-1,0,e.get(r[0]-1,0)),t.set(n[0]-1,n[1]-1,e.get(r[0]-1,r[1]-1))},C.update=function(t){t=t||{},this.objectOffset=t.objectOffset||this.objectOffset,this.dirty=!0,\"contourWidth\"in t&&(this.contourWidth=B(t.contourWidth,Number)),\"showContour\"in t&&(this.showContour=B(t.showContour,Boolean)),\"showSurface\"in t&&(this.showSurface=!!t.showSurface),\"contourTint\"in t&&(this.contourTint=B(t.contourTint,Boolean)),\"contourColor\"in t&&(this.contourColor=j(t.contourColor)),\"contourProject\"in t&&(this.contourProject=B(t.contourProject,function(t){return B(t,Boolean)})),\"surfaceProject\"in t&&(this.surfaceProject=t.surfaceProject),\"dynamicColor\"in t&&(this.dynamicColor=j(t.dynamicColor)),\"dynamicTint\"in t&&(this.dynamicTint=B(t.dynamicTint,Number)),\"dynamicWidth\"in t&&(this.dynamicWidth=B(t.dynamicWidth,Number)),\"opacity\"in t&&(this.opacity=t.opacity),\"colorBounds\"in t&&(this.colorBounds=t.colorBounds),\"vertexColor\"in t&&(this.vertexColor=t.vertexColor?1:0);var e=t.field||t.coords&&t.coords[2]||null,r=!1;if(e||(e=this._field[2].shape[0]||this._field[2].shape[2]?this._field[2].lo(1,1).hi(this._field[2].shape[0]-2,this._field[2].shape[1]-2):this._field[2].hi(0,0)),\"field\"in t||\"coords\"in t){var a=(e.shape[0]+2)*(e.shape[1]+2);a>this._field[2].data.length&&(s.freeFloat(this._field[2].data),this._field[2].data=s.mallocFloat(n.nextPow2(a))),this._field[2]=h(this._field[2].data,[e.shape[0]+2,e.shape[1]+2]),this.padField(this._field[2],e),this.shape=e.shape.slice();for(var i=this.shape,o=0;o<2;++o)this._field[2].size>this._field[o].data.length&&(s.freeFloat(this._field[o].data),this._field[o].data=s.mallocFloat(this._field[2].size)),this._field[o]=h(this._field[o].data,[i[0]+2,i[1]+2]);if(t.coords){var p=t.coords;if(!Array.isArray(p)||3!==p.length)throw new Error(\"gl-surface: invalid coordinates for x/y\");for(o=0;o<2;++o){var d=p[o];for(b=0;b<2;++b)if(d.shape[b]!==i[b])throw new Error(\"gl-surface: coords have incorrect shape\");this.padField(this._field[o],d)}}else if(t.ticks){var g=t.ticks;if(!Array.isArray(g)||2!==g.length)throw new Error(\"gl-surface: invalid ticks\");for(o=0;o<2;++o){var m=g[o];if((Array.isArray(m)||m.length)&&(m=h(m)),m.shape[0]!==i[o])throw new Error(\"gl-surface: invalid tick length\");var y=h(m.data,i);y.stride[o]=m.stride[0],y.stride[1^o]=0,this.padField(this._field[o],y)}}else{for(o=0;o<2;++o){var x=[0,0];x[o]=1,this._field[o]=h(this._field[o].data,[i[0]+2,i[1]+2],x,0)}this._field[0].set(0,0,0);for(var b=0;b<i[0];++b)this._field[0].set(b+1,0,b);for(this._field[0].set(i[0]+1,0,i[0]-1),this._field[1].set(0,0,0),b=0;b<i[1];++b)this._field[1].set(0,b+1,b);this._field[1].set(0,i[1]+1,i[1]-1)}var _=this._field,w=h(s.mallocFloat(3*_[2].size*2),[3,i[0]+2,i[1]+2,2]);for(o=0;o<3;++o)v(w.pick(o),_[o],\"mirror\");var k=h(s.mallocFloat(3*_[2].size),[i[0]+2,i[1]+2,3]);for(o=0;o<i[0]+2;++o)for(b=0;b<i[1]+2;++b){var A=w.get(0,o,b,0),M=w.get(0,o,b,1),E=w.get(1,o,b,0),C=w.get(1,o,b,1),L=w.get(2,o,b,0),P=w.get(2,o,b,1),O=E*P-C*L,I=L*M-P*A,z=A*C-M*E,D=Math.sqrt(O*O+I*I+z*z);D<1e-8?(D=Math.max(Math.abs(O),Math.abs(I),Math.abs(z)))<1e-8?(z=1,I=O=0,D=1):D=1/D:D=1/Math.sqrt(D),k.set(o,b,0,O*D),k.set(o,b,1,I*D),k.set(o,b,2,z*D)}s.free(w.data);var R=[1/0,1/0,1/0],F=[-1/0,-1/0,-1/0],N=1/0,V=-1/0,U=(i[0]-1)*(i[1]-1)*6,q=s.mallocFloat(n.nextPow2(10*U)),H=0,G=0;for(o=0;o<i[0]-1;++o)t:for(b=0;b<i[1]-1;++b){for(var Y=0;Y<2;++Y)for(var W=0;W<2;++W)for(var X=0;X<3;++X){var Z=this._field[X].get(1+o+Y,1+b+W);if(isNaN(Z)||!isFinite(Z))continue t}for(X=0;X<6;++X){var J=o+T[X][0],K=b+T[X][1],Q=this._field[0].get(J+1,K+1),$=this._field[1].get(J+1,K+1);Z=this._field[2].get(J+1,K+1),O=k.get(J+1,K+1,0),I=k.get(J+1,K+1,1),z=k.get(J+1,K+1,2),t.intensity&&(tt=t.intensity.get(J,K));var tt=t.intensity?t.intensity.get(J,K):Z+this.objectOffset[2];q[H++]=J,q[H++]=K,q[H++]=Q,q[H++]=$,q[H++]=Z,q[H++]=0,q[H++]=tt,q[H++]=O,q[H++]=I,q[H++]=z,R[0]=Math.min(R[0],Q+this.objectOffset[0]),R[1]=Math.min(R[1],$+this.objectOffset[1]),R[2]=Math.min(R[2],Z+this.objectOffset[2]),N=Math.min(N,tt),F[0]=Math.max(F[0],Q+this.objectOffset[0]),F[1]=Math.max(F[1],$+this.objectOffset[1]),F[2]=Math.max(F[2],Z+this.objectOffset[2]),V=Math.max(V,tt),G+=1}}for(t.intensityBounds&&(N=+t.intensityBounds[0],V=+t.intensityBounds[1]),o=6;o<H;o+=10)q[o]=(q[o]-N)/(V-N);this._vertexCount=G,this._coordinateBuffer.update(q.subarray(0,H)),s.freeFloat(q),s.free(k.data),this.bounds=[R,F],this.intensity=t.intensity||this._field[2],this.intensityBounds[0]===N&&this.intensityBounds[1]===V||(r=!0),this.intensityBounds=[N,V]}if(\"levels\"in t){var et=t.levels;for(et=Array.isArray(et[0])?et.slice():[[],[],et],o=0;o<3;++o)et[o]=et[o].slice(),et[o].sort(function(t,e){return t-e});for(o=0;o<3;++o)for(b=0;b<et[o].length;++b)et[o][b]-=this.objectOffset[o];t:for(o=0;o<3;++o){if(et[o].length!==this.contourLevels[o].length){r=!0;break}for(b=0;b<et[o].length;++b)if(et[o][b]!==this.contourLevels[o][b]){r=!0;break t}}this.contourLevels=et}if(r){_=this._field,i=this.shape;for(var rt=[],nt=0;nt<3;++nt){var at=this.contourLevels[nt],it=[],ot=[],st=[0,0,0];for(o=0;o<at.length;++o){var lt=f(this._field[nt],at[o]);it.push(rt.length/5|0),G=0;t:for(b=0;b<lt.cells.length;++b){var ct=lt.cells[b];for(X=0;X<2;++X){var ut=lt.positions[ct[X]],ht=ut[0],ft=0|Math.floor(ht),pt=ht-ft,dt=ut[1],gt=0|Math.floor(dt),vt=dt-gt,mt=!1;e:for(var yt=0;yt<3;++yt){st[yt]=0;var xt=(nt+yt+1)%3;for(Y=0;Y<2;++Y){var bt=Y?pt:1-pt;for(J=0|Math.min(Math.max(ft+Y,0),i[0]),W=0;W<2;++W){var _t=W?vt:1-vt;if(K=0|Math.min(Math.max(gt+W,0),i[1]),Z=yt<2?this._field[xt].get(J,K):(this.intensity.get(J,K)-this.intensityBounds[0])/(this.intensityBounds[1]-this.intensityBounds[0]),!isFinite(Z)||isNaN(Z)){mt=!0;break e}var wt=bt*_t;st[yt]+=wt*Z}}}if(mt){if(X>0){for(var kt=0;kt<5;++kt)rt.pop();G-=1}continue t}rt.push(st[0],st[1],ut[0],ut[1],st[2]),G+=1}}ot.push(G)}this._contourOffsets[nt]=it,this._contourCounts[nt]=ot}var Tt=s.mallocFloat(rt.length);for(o=0;o<rt.length;++o)Tt[o]=rt[o];this._contourBuffer.update(Tt),s.freeFloat(Tt)}t.colormap&&this._colorMap.setPixels(function(t){var e=u([l({colormap:t,nshades:S,format:\"rgba\"}).map(function(t){return[t[0],t[1],t[2],255*t[3]]})]);return c.divseq(e,255),e}(t.colormap))},C.dispose=function(){this._shader.dispose(),this._vao.dispose(),this._coordinateBuffer.dispose(),this._colorMap.dispose(),this._contourBuffer.dispose(),this._contourVAO.dispose(),this._contourShader.dispose(),this._contourPickShader.dispose(),this._dynamicBuffer.dispose(),this._dynamicVAO.dispose();for(var t=0;t<3;++t)s.freeFloat(this._field[t].data)},C.highlight=function(t){var e,r;if(!t)return this._dynamicCounts=[0,0,0],this.dyanamicLevel=[NaN,NaN,NaN],void(this.highlightLevel=[-1,-1,-1]);for(e=0;e<3;++e)this.enableHighlight[e]?this.highlightLevel[e]=t.level[e]:this.highlightLevel[e]=-1;for(r=this.snapToData?t.dataCoordinate:t.position,e=0;e<3;++e)r[e]-=this.objectOffset[e];if(this.enableDynamic[0]&&r[0]!==this.dynamicLevel[0]||this.enableDynamic[1]&&r[1]!==this.dynamicLevel[1]||this.enableDynamic[2]&&r[2]!==this.dynamicLevel[2]){for(var n=0,a=this.shape,i=s.mallocFloat(12*a[0]*a[1]),o=0;o<3;++o)if(this.enableDynamic[o]){this.dynamicLevel[o]=r[o];var l=(o+1)%3,c=(o+2)%3,u=this._field[o],h=this._field[l],p=this._field[c],d=f(u,r[o]),g=d.cells,v=d.positions;for(this._dynamicOffsets[o]=n,e=0;e<g.length;++e)for(var m=g[e],y=0;y<2;++y){var x=v[m[y]],b=+x[0],_=0|b,w=0|Math.min(_+1,a[0]),k=b-_,T=1-k,A=+x[1],M=0|A,S=0|Math.min(M+1,a[1]),E=A-M,C=1-E,L=T*C,P=T*E,O=k*C,I=k*E,z=L*h.get(_,M)+P*h.get(_,S)+O*h.get(w,M)+I*h.get(w,S),D=L*p.get(_,M)+P*p.get(_,S)+O*p.get(w,M)+I*p.get(w,S);if(isNaN(z)||isNaN(D)){y&&(n-=1);break}i[2*n+0]=z,i[2*n+1]=D,n+=1}this._dynamicCounts[o]=n-this._dynamicOffsets[o]}else this.dynamicLevel[o]=NaN,this._dynamicCounts[o]=0;this._dynamicBuffer.update(i.subarray(0,2*n)),s.freeFloat(i)}}},{\"./lib/shaders\":315,\"binary-search-bounds\":316,\"bit-twiddle\":93,colormap:127,\"gl-buffer\":242,\"gl-mat4/invert\":266,\"gl-mat4/multiply\":268,\"gl-texture2d\":323,\"gl-vao\":328,ndarray:451,\"ndarray-gradient\":442,\"ndarray-ops\":445,\"ndarray-pack\":446,\"surface-nets\":532,\"typedarray-pool\":546}],318:[function(t,e,r){\"use strict\";var n=t(\"css-font\"),a=t(\"pick-by-alias\"),i=t(\"regl\"),o=t(\"gl-util/context\"),s=t(\"es6-weak-map\"),l=t(\"color-normalize\"),c=t(\"font-atlas\"),u=t(\"typedarray-pool\"),h=t(\"parse-rect\"),f=t(\"is-plain-obj\"),p=t(\"parse-unit\"),d=t(\"to-px\"),g=t(\"detect-kerning\"),v=t(\"object-assign\"),m=t(\"font-measure\"),y=t(\"flatten-vertex-data\"),x=t(\"bit-twiddle\").nextPow2,b=new s,_=!1;if(document.body){var w=document.body.appendChild(document.createElement(\"div\"));w.style.font=\"italic small-caps bold condensed 16px/2 cursive\",getComputedStyle(w).fontStretch&&(_=!0),document.body.removeChild(w)}var k=function(t){!function(t){return\"function\"==typeof t&&t._gl&&t.prop&&t.texture&&t.buffer}(t)?this.gl=o(t):(t={regl:t},this.gl=t.regl._gl),this.shader=b.get(this.gl),this.shader?this.regl=this.shader.regl:this.regl=t.regl||i({gl:this.gl}),this.charBuffer=this.regl.buffer({type:\"uint8\",usage:\"stream\"}),this.sizeBuffer=this.regl.buffer({type:\"float\",usage:\"stream\"}),this.shader||(this.shader=this.createShader(),b.set(this.gl,this.shader)),this.batch=[],this.fontSize=[],this.font=[],this.fontAtlas=[],this.draw=this.shader.draw.bind(this),this.render=function(){this.regl._refresh(),this.draw(this.batch)},this.canvas=this.gl.canvas,this.update(f(t)?t:{})};k.prototype.createShader=function(){var t=this.regl,e=t({blend:{enable:!0,color:[0,0,0,1],func:{srcRGB:\"src alpha\",dstRGB:\"one minus src alpha\",srcAlpha:\"one minus dst alpha\",dstAlpha:\"one\"}},stencil:{enable:!1},depth:{enable:!1},count:t.prop(\"count\"),offset:t.prop(\"offset\"),attributes:{charOffset:{offset:4,stride:8,buffer:t.this(\"sizeBuffer\")},width:{offset:0,stride:8,buffer:t.this(\"sizeBuffer\")},char:t.this(\"charBuffer\"),position:t.this(\"position\")},uniforms:{atlasSize:function(t,e){return[e.atlas.width,e.atlas.height]},atlasDim:function(t,e){return[e.atlas.cols,e.atlas.rows]},atlas:function(t,e){return e.atlas.texture},charStep:function(t,e){return e.atlas.step},em:function(t,e){return e.atlas.em},color:t.prop(\"color\"),opacity:t.prop(\"opacity\"),viewport:t.this(\"viewportArray\"),scale:t.this(\"scale\"),align:t.prop(\"align\"),baseline:t.prop(\"baseline\"),translate:t.this(\"translate\"),positionOffset:t.prop(\"positionOffset\")},primitive:\"points\",viewport:t.this(\"viewport\"),vert:\"\\n\\t\\t\\tprecision highp float;\\n\\t\\t\\tattribute float width, charOffset, char;\\n\\t\\t\\tattribute vec2 position;\\n\\t\\t\\tuniform float fontSize, charStep, em, align, baseline;\\n\\t\\t\\tuniform vec4 viewport;\\n\\t\\t\\tuniform vec4 color;\\n\\t\\t\\tuniform vec2 atlasSize, atlasDim, scale, translate, positionOffset;\\n\\t\\t\\tvarying vec2 charCoord, charId;\\n\\t\\t\\tvarying float charWidth;\\n\\t\\t\\tvarying vec4 fontColor;\\n\\t\\t\\tvoid main () {\\n\\t\\t\\t\\t\"+(k.normalViewport?\"\":\"vec2 positionOffset = vec2(positionOffset.x,- positionOffset.y);\")+\"\\n\\n\\t\\t\\t\\tvec2 offset = floor(em * (vec2(align + charOffset, baseline)\\n\\t\\t\\t\\t\\t+ positionOffset))\\n\\t\\t\\t\\t\\t/ (viewport.zw * scale.xy);\\n\\n\\t\\t\\t\\tvec2 position = (position + translate) * scale;\\n\\t\\t\\t\\tposition += offset * scale;\\n\\n\\t\\t\\t\\t\"+(k.normalViewport?\"position.y = 1. - position.y;\":\"\")+\"\\n\\n\\t\\t\\t\\tcharCoord = position * viewport.zw + viewport.xy;\\n\\n\\t\\t\\t\\tgl_Position = vec4(position * 2. - 1., 0, 1);\\n\\n\\t\\t\\t\\tgl_PointSize = charStep;\\n\\n\\t\\t\\t\\tcharId.x = mod(char, atlasDim.x);\\n\\t\\t\\t\\tcharId.y = floor(char / atlasDim.x);\\n\\n\\t\\t\\t\\tcharWidth = width * em;\\n\\n\\t\\t\\t\\tfontColor = color / 255.;\\n\\t\\t\\t}\",frag:\"\\n\\t\\t\\tprecision highp float;\\n\\t\\t\\tuniform sampler2D atlas;\\n\\t\\t\\tuniform float fontSize, charStep, opacity;\\n\\t\\t\\tuniform vec2 atlasSize;\\n\\t\\t\\tuniform vec4 viewport;\\n\\t\\t\\tvarying vec4 fontColor;\\n\\t\\t\\tvarying vec2 charCoord, charId;\\n\\t\\t\\tvarying float charWidth;\\n\\n\\t\\t\\tfloat lightness(vec4 color) {\\n\\t\\t\\t\\treturn color.r * 0.299 + color.g * 0.587 + color.b * 0.114;\\n\\t\\t\\t}\\n\\n\\t\\t\\tvoid main () {\\n\\t\\t\\t\\tvec2 uv = gl_FragCoord.xy - charCoord + charStep * .5;\\n\\t\\t\\t\\tfloat halfCharStep = floor(charStep * .5 + .5);\\n\\n\\t\\t\\t\\t// invert y and shift by 1px (FF expecially needs that)\\n\\t\\t\\t\\tuv.y = charStep - uv.y;\\n\\n\\t\\t\\t\\t// ignore points outside of character bounding box\\n\\t\\t\\t\\tfloat halfCharWidth = ceil(charWidth * .5);\\n\\t\\t\\t\\tif (floor(uv.x) > halfCharStep + halfCharWidth ||\\n\\t\\t\\t\\t\\tfloor(uv.x) < halfCharStep - halfCharWidth) return;\\n\\n\\t\\t\\t\\tuv += charId * charStep;\\n\\t\\t\\t\\tuv = uv / atlasSize;\\n\\n\\t\\t\\t\\tvec4 color = fontColor;\\n\\t\\t\\t\\tvec4 mask = texture2D(atlas, uv);\\n\\n\\t\\t\\t\\tfloat maskY = lightness(mask);\\n\\t\\t\\t\\t// float colorY = lightness(color);\\n\\t\\t\\t\\tcolor.a *= maskY;\\n\\t\\t\\t\\tcolor.a *= opacity;\\n\\n\\t\\t\\t\\t// color.a += .1;\\n\\n\\t\\t\\t\\t// antialiasing, see yiq color space y-channel formula\\n\\t\\t\\t\\t// color.rgb += (1. - color.rgb) * (1. - mask.rgb);\\n\\n\\t\\t\\t\\tgl_FragColor = color;\\n\\t\\t\\t}\"});return{regl:t,draw:e,atlas:{}}},k.prototype.update=function(t){var e=this;if(\"string\"==typeof t)t={text:t};else if(!t)return;null!=(t=a(t,{position:\"position positions coord coords coordinates\",font:\"font fontFace fontface typeface cssFont css-font family fontFamily\",fontSize:\"fontSize fontsize size font-size\",text:\"text texts chars characters value values symbols\",align:\"align alignment textAlign textbaseline\",baseline:\"baseline textBaseline textbaseline\",direction:\"dir direction textDirection\",color:\"color colour fill fill-color fillColor textColor textcolor\",kerning:\"kerning kern\",range:\"range dataBox\",viewport:\"vp viewport viewBox viewbox viewPort\",opacity:\"opacity alpha transparency visible visibility opaque\",offset:\"offset positionOffset padding shift indent indentation\"},!0)).opacity&&(Array.isArray(t.opacity)?this.opacity=t.opacity.map(function(t){return parseFloat(t)}):this.opacity=parseFloat(t.opacity)),null!=t.viewport&&(this.viewport=h(t.viewport),k.normalViewport&&(this.viewport.y=this.canvas.height-this.viewport.y-this.viewport.height),this.viewportArray=[this.viewport.x,this.viewport.y,this.viewport.width,this.viewport.height]),null==this.viewport&&(this.viewport={x:0,y:0,width:this.gl.drawingBufferWidth,height:this.gl.drawingBufferHeight},this.viewportArray=[this.viewport.x,this.viewport.y,this.viewport.width,this.viewport.height]),null!=t.kerning&&(this.kerning=t.kerning),null!=t.offset&&(\"number\"==typeof t.offset&&(t.offset=[t.offset,0]),this.positionOffset=y(t.offset)),t.direction&&(this.direction=t.direction),t.range&&(this.range=t.range,this.scale=[1/(t.range[2]-t.range[0]),1/(t.range[3]-t.range[1])],this.translate=[-t.range[0],-t.range[1]]),t.scale&&(this.scale=t.scale),t.translate&&(this.translate=t.translate),this.scale||(this.scale=[1/this.viewport.width,1/this.viewport.height]),this.translate||(this.translate=[0,0]),this.font.length||t.font||(t.font=k.baseFontSize+\"px sans-serif\");var r,i=!1,o=!1;if(t.font&&(Array.isArray(t.font)?t.font:[t.font]).forEach(function(t,r){if(\"string\"==typeof t)try{t=n.parse(t)}catch(e){t=n.parse(k.baseFontSize+\"px \"+t)}else t=n.parse(n.stringify(t));var a=n.stringify({size:k.baseFontSize,family:t.family,stretch:_?t.stretch:void 0,variant:t.variant,weight:t.weight,style:t.style}),s=p(t.size),l=Math.round(s[0]*d(s[1]));if(l!==e.fontSize[r]&&(o=!0,e.fontSize[r]=l),!(e.font[r]&&a==e.font[r].baseString||(i=!0,e.font[r]=k.fonts[a],e.font[r]))){var c=t.family.join(\", \"),u=[t.style];t.style!=t.variant&&u.push(t.variant),t.variant!=t.weight&&u.push(t.weight),_&&t.weight!=t.stretch&&u.push(t.stretch),e.font[r]={baseString:a,family:c,weight:t.weight,stretch:t.stretch,style:t.style,variant:t.variant,width:{},kerning:{},metrics:m(c,{origin:\"top\",fontSize:k.baseFontSize,fontStyle:u.join(\" \")})},k.fonts[a]=e.font[r]}}),(i||o)&&this.font.forEach(function(r,a){var i=n.stringify({size:e.fontSize[a],family:r.family,stretch:_?r.stretch:void 0,variant:r.variant,weight:r.weight,style:r.style});if(e.fontAtlas[a]=e.shader.atlas[i],!e.fontAtlas[a]){var o=r.metrics;e.shader.atlas[i]=e.fontAtlas[a]={fontString:i,step:2*Math.ceil(e.fontSize[a]*o.bottom*.5),em:e.fontSize[a],cols:0,rows:0,height:0,width:0,chars:[],ids:{},texture:e.regl.texture()}}null==t.text&&(t.text=e.text)}),\"string\"==typeof t.text&&t.position&&t.position.length>2){for(var s=Array(.5*t.position.length),f=0;f<s.length;f++)s[f]=t.text;t.text=s}if(null!=t.text||i){if(this.textOffsets=[0],Array.isArray(t.text)){this.count=t.text[0].length,this.counts=[this.count];for(var b=1;b<t.text.length;b++)this.textOffsets[b]=this.textOffsets[b-1]+t.text[b-1].length,this.count+=t.text[b].length,this.counts.push(t.text[b].length);this.text=t.text.join(\"\")}else this.text=t.text,this.count=this.text.length,this.counts=[this.count];r=[],this.font.forEach(function(t,n){k.atlasContext.font=t.baseString;for(var a=e.fontAtlas[n],i=0;i<e.text.length;i++){var o=e.text.charAt(i);if(null==a.ids[o]&&(a.ids[o]=a.chars.length,a.chars.push(o),r.push(o)),null==t.width[o]&&(t.width[o]=k.atlasContext.measureText(o).width/k.baseFontSize,e.kerning)){var s=[];for(var l in t.width)s.push(l+o,o+l);v(t.kerning,g(t.family,{pairs:s}))}}})}if(t.position)if(t.position.length>2){for(var w=!t.position[0].length,T=u.mallocFloat(2*this.count),A=0,M=0;A<this.counts.length;A++){var S=this.counts[A];if(w)for(var E=0;E<S;E++)T[M++]=t.position[2*A],T[M++]=t.position[2*A+1];else for(var C=0;C<S;C++)T[M++]=t.position[A][0],T[M++]=t.position[A][1]}this.position.call?this.position({type:\"float\",data:T}):this.position=this.regl.buffer({type:\"float\",data:T}),u.freeFloat(T)}else this.position.destroy&&this.position.destroy(),this.position={constant:t.position};if(t.text||i){var L=u.mallocUint8(this.count),P=u.mallocFloat(2*this.count);this.textWidth=[];for(var O=0,I=0;O<this.counts.length;O++){for(var z=this.counts[O],D=this.font[O]||this.font[0],R=this.fontAtlas[O]||this.fontAtlas[0],F=0;F<z;F++){var B=this.text.charAt(I),N=this.text.charAt(I-1);if(L[I]=R.ids[B],P[2*I]=D.width[B],F){var j=P[2*I-2],V=P[2*I],U=P[2*I-1]+.5*j+.5*V;if(this.kerning){var q=D.kerning[N+B];q&&(U+=.001*q)}P[2*I+1]=U}else P[2*I+1]=.5*P[2*I];I++}this.textWidth.push(P.length?.5*P[2*I-2]+P[2*I-1]:0)}t.align||(t.align=this.align),this.charBuffer({data:L,type:\"uint8\",usage:\"stream\"}),this.sizeBuffer({data:P,type:\"float\",usage:\"stream\"}),u.freeUint8(L),u.freeFloat(P),r.length&&this.font.forEach(function(t,r){var n=e.fontAtlas[r],a=n.step,i=Math.floor(k.maxAtlasSize/a),o=Math.min(i,n.chars.length),s=Math.ceil(n.chars.length/o),l=x(o*a),u=x(s*a);n.width=l,n.height=u,n.rows=s,n.cols=o,n.em&&n.texture({data:c({canvas:k.atlasCanvas,font:n.fontString,chars:n.chars,shape:[l,u],step:[a,a]})})})}if(t.align&&(this.align=t.align,this.alignOffset=this.textWidth.map(function(t,r){var n=Array.isArray(e.align)?e.align.length>1?e.align[r]:e.align[0]:e.align;if(\"number\"==typeof n)return n;switch(n){case\"right\":case\"end\":return-t;case\"center\":case\"centre\":case\"middle\":return.5*-t}return 0})),null==this.baseline&&null==t.baseline&&(t.baseline=0),null!=t.baseline&&(this.baseline=t.baseline,Array.isArray(this.baseline)||(this.baseline=[this.baseline]),this.baselineOffset=this.baseline.map(function(t,r){var n=(e.font[r]||e.font[0]).metrics,a=0;return a+=.5*n.bottom,a+=\"number\"==typeof t?t-n.baseline:-n[t],k.normalViewport||(a*=-1),a})),null!=t.color)if(t.color||(t.color=\"transparent\"),\"string\"!=typeof t.color&&isNaN(t.color)){var H;if(\"number\"==typeof t.color[0]&&t.color.length>this.counts.length){var G=t.color.length;H=u.mallocUint8(G);for(var Y=(t.color.subarray||t.color.slice).bind(t.color),W=0;W<G;W+=4)H.set(l(Y(W,W+4),\"uint8\"),W)}else{var X=t.color.length;H=u.mallocUint8(4*X);for(var Z=0;Z<X;Z++)H.set(l(t.color[Z]||0,\"uint8\"),4*Z)}this.color=H}else this.color=l(t.color,\"uint8\");if(t.position||t.text||t.color||t.baseline||t.align||t.font||t.offset||t.opacity)if(this.color.length>4||this.baselineOffset.length>1||this.align&&this.align.length>1||this.fontAtlas.length>1||this.positionOffset.length>2){var J=Math.max(.5*this.position.length||0,.25*this.color.length||0,this.baselineOffset.length||0,this.alignOffset.length||0,this.font.length||0,this.opacity.length||0,.5*this.positionOffset.length||0);this.batch=Array(J);for(var K=0;K<this.batch.length;K++)this.batch[K]={count:this.counts.length>1?this.counts[K]:this.counts[0],offset:this.textOffsets.length>1?this.textOffsets[K]:this.textOffsets[0],color:this.color?this.color.length<=4?this.color:this.color.subarray(4*K,4*K+4):[0,0,0,255],opacity:Array.isArray(this.opacity)?this.opacity[K]:this.opacity,baseline:null!=this.baselineOffset[K]?this.baselineOffset[K]:this.baselineOffset[0],align:this.align?null!=this.alignOffset[K]?this.alignOffset[K]:this.alignOffset[0]:0,atlas:this.fontAtlas[K]||this.fontAtlas[0],positionOffset:this.positionOffset.length>2?this.positionOffset.subarray(2*K,2*K+2):this.positionOffset}}else this.count?this.batch=[{count:this.count,offset:0,color:this.color||[0,0,0,255],opacity:Array.isArray(this.opacity)?this.opacity[0]:this.opacity,baseline:this.baselineOffset[0],align:this.alignOffset?this.alignOffset[0]:0,atlas:this.fontAtlas[0],positionOffset:this.positionOffset}]:this.batch=[]},k.prototype.destroy=function(){},k.prototype.kerning=!0,k.prototype.position={constant:new Float32Array(2)},k.prototype.translate=null,k.prototype.scale=null,k.prototype.font=null,k.prototype.text=\"\",k.prototype.positionOffset=[0,0],k.prototype.opacity=1,k.prototype.color=new Uint8Array([0,0,0,255]),k.prototype.alignOffset=[0,0],k.normalViewport=!1,k.maxAtlasSize=1024,k.atlasCanvas=document.createElement(\"canvas\"),k.atlasContext=k.atlasCanvas.getContext(\"2d\",{alpha:!1}),k.baseFontSize=64,k.fonts={},e.exports=k},{\"bit-twiddle\":93,\"color-normalize\":121,\"css-font\":140,\"detect-kerning\":167,\"es6-weak-map\":319,\"flatten-vertex-data\":228,\"font-atlas\":229,\"font-measure\":230,\"gl-util/context\":324,\"is-plain-obj\":423,\"object-assign\":455,\"parse-rect\":460,\"parse-unit\":462,\"pick-by-alias\":466,regl:503,\"to-px\":540,\"typedarray-pool\":546}],319:[function(t,e,r){\"use strict\";e.exports=t(\"./is-implemented\")()?WeakMap:t(\"./polyfill\")},{\"./is-implemented\":320,\"./polyfill\":322}],320:[function(t,e,r){\"use strict\";e.exports=function(){var t,e;if(\"function\"!=typeof WeakMap)return!1;try{t=new WeakMap([[e={},\"one\"],[{},\"two\"],[{},\"three\"]])}catch(t){return!1}return\"[object WeakMap]\"===String(t)&&(\"function\"==typeof t.set&&(t.set({},1)===t&&(\"function\"==typeof t.delete&&(\"function\"==typeof t.has&&\"one\"===t.get(e)))))}},{}],321:[function(t,e,r){\"use strict\";e.exports=\"function\"==typeof WeakMap&&\"[object WeakMap]\"===Object.prototype.toString.call(new WeakMap)},{}],322:[function(t,e,r){\"use strict\";var n,a=t(\"es5-ext/object/is-value\"),i=t(\"es5-ext/object/set-prototype-of\"),o=t(\"es5-ext/object/valid-object\"),s=t(\"es5-ext/object/valid-value\"),l=t(\"es5-ext/string/random-uniq\"),c=t(\"d\"),u=t(\"es6-iterator/get\"),h=t(\"es6-iterator/for-of\"),f=t(\"es6-symbol\").toStringTag,p=t(\"./is-native-implemented\"),d=Array.isArray,g=Object.defineProperty,v=Object.prototype.hasOwnProperty,m=Object.getPrototypeOf;e.exports=n=function(){var t,e=arguments[0];if(!(this instanceof n))throw new TypeError(\"Constructor requires 'new'\");return t=p&&i&&WeakMap!==n?i(new WeakMap,m(this)):this,a(e)&&(d(e)||(e=u(e))),g(t,\"__weakMapData__\",c(\"c\",\"$weakMap$\"+l())),e?(h(e,function(e){s(e),t.set(e[0],e[1])}),t):t},p&&(i&&i(n,WeakMap),n.prototype=Object.create(WeakMap.prototype,{constructor:c(n)})),Object.defineProperties(n.prototype,{delete:c(function(t){return!!v.call(o(t),this.__weakMapData__)&&(delete t[this.__weakMapData__],!0)}),get:c(function(t){if(v.call(o(t),this.__weakMapData__))return t[this.__weakMapData__]}),has:c(function(t){return v.call(o(t),this.__weakMapData__)}),set:c(function(t,e){return g(o(t),this.__weakMapData__,c(\"c\",e)),this}),toString:c(function(){return\"[object WeakMap]\"})}),g(n.prototype,f,c(\"c\",\"WeakMap\"))},{\"./is-native-implemented\":321,d:152,\"es5-ext/object/is-value\":195,\"es5-ext/object/set-prototype-of\":201,\"es5-ext/object/valid-object\":205,\"es5-ext/object/valid-value\":206,\"es5-ext/string/random-uniq\":211,\"es6-iterator/for-of\":213,\"es6-iterator/get\":214,\"es6-symbol\":220}],323:[function(t,e,r){\"use strict\";var n=t(\"ndarray\"),a=t(\"ndarray-ops\"),i=t(\"typedarray-pool\");e.exports=function(t){if(arguments.length<=1)throw new Error(\"gl-texture2d: Missing arguments for texture2d constructor\");o||function(t){o=[t.LINEAR,t.NEAREST_MIPMAP_LINEAR,t.LINEAR_MIPMAP_NEAREST,t.LINEAR_MIPMAP_NEAREST],s=[t.NEAREST,t.LINEAR,t.NEAREST_MIPMAP_NEAREST,t.NEAREST_MIPMAP_LINEAR,t.LINEAR_MIPMAP_NEAREST,t.LINEAR_MIPMAP_LINEAR],l=[t.REPEAT,t.CLAMP_TO_EDGE,t.MIRRORED_REPEAT]}(t);if(\"number\"==typeof arguments[1])return v(t,arguments[1],arguments[2],arguments[3]||t.RGBA,arguments[4]||t.UNSIGNED_BYTE);if(Array.isArray(arguments[1]))return v(t,0|arguments[1][0],0|arguments[1][1],arguments[2]||t.RGBA,arguments[3]||t.UNSIGNED_BYTE);if(\"object\"==typeof arguments[1]){var e=arguments[1],r=c(e)?e:e.raw;if(r)return function(t,e,r,n,a,i){var o=g(t);return t.texImage2D(t.TEXTURE_2D,0,a,a,i,e),new f(t,o,r,n,a,i)}(t,r,0|e.width,0|e.height,arguments[2]||t.RGBA,arguments[3]||t.UNSIGNED_BYTE);if(e.shape&&e.data&&e.stride)return function(t,e){var r=e.dtype,o=e.shape.slice(),s=t.getParameter(t.MAX_TEXTURE_SIZE);if(o[0]<0||o[0]>s||o[1]<0||o[1]>s)throw new Error(\"gl-texture2d: Invalid texture size\");var l=d(o,e.stride.slice()),c=0;\"float32\"===r?c=t.FLOAT:\"float64\"===r?(c=t.FLOAT,l=!1,r=\"float32\"):\"uint8\"===r?c=t.UNSIGNED_BYTE:(c=t.UNSIGNED_BYTE,l=!1,r=\"uint8\");var h,p,v=0;if(2===o.length)v=t.LUMINANCE,o=[o[0],o[1],1],e=n(e.data,o,[e.stride[0],e.stride[1],1],e.offset);else{if(3!==o.length)throw new Error(\"gl-texture2d: Invalid shape for texture\");if(1===o[2])v=t.ALPHA;else if(2===o[2])v=t.LUMINANCE_ALPHA;else if(3===o[2])v=t.RGB;else{if(4!==o[2])throw new Error(\"gl-texture2d: Invalid shape for pixel coords\");v=t.RGBA}}c!==t.FLOAT||t.getExtension(\"OES_texture_float\")||(c=t.UNSIGNED_BYTE,l=!1);var m=e.size;if(l)h=0===e.offset&&e.data.length===m?e.data:e.data.subarray(e.offset,e.offset+m);else{var y=[o[2],o[2]*o[0],1];p=i.malloc(m,r);var x=n(p,o,y,0);\"float32\"!==r&&\"float64\"!==r||c!==t.UNSIGNED_BYTE?a.assign(x,e):u(x,e),h=p.subarray(0,m)}var b=g(t);t.texImage2D(t.TEXTURE_2D,0,v,o[0],o[1],0,v,c,h),l||i.free(p);return new f(t,b,o[0],o[1],v,c)}(t,e)}throw new Error(\"gl-texture2d: Invalid arguments for texture2d constructor\")};var o=null,s=null,l=null;function c(t){return\"undefined\"!=typeof HTMLCanvasElement&&t instanceof HTMLCanvasElement||\"undefined\"!=typeof HTMLImageElement&&t instanceof HTMLImageElement||\"undefined\"!=typeof HTMLVideoElement&&t instanceof HTMLVideoElement||\"undefined\"!=typeof ImageData&&t instanceof ImageData}var u=function(t,e){a.muls(t,e,255)};function h(t,e,r){var n=t.gl,a=n.getParameter(n.MAX_TEXTURE_SIZE);if(e<0||e>a||r<0||r>a)throw new Error(\"gl-texture2d: Invalid texture size\");return t._shape=[e,r],t.bind(),n.texImage2D(n.TEXTURE_2D,0,t.format,e,r,0,t.format,t.type,null),t._mipLevels=[0],t}function f(t,e,r,n,a,i){this.gl=t,this.handle=e,this.format=a,this.type=i,this._shape=[r,n],this._mipLevels=[0],this._magFilter=t.NEAREST,this._minFilter=t.NEAREST,this._wrapS=t.CLAMP_TO_EDGE,this._wrapT=t.CLAMP_TO_EDGE,this._anisoSamples=1;var o=this,s=[this._wrapS,this._wrapT];Object.defineProperties(s,[{get:function(){return o._wrapS},set:function(t){return o.wrapS=t}},{get:function(){return o._wrapT},set:function(t){return o.wrapT=t}}]),this._wrapVector=s;var l=[this._shape[0],this._shape[1]];Object.defineProperties(l,[{get:function(){return o._shape[0]},set:function(t){return o.width=t}},{get:function(){return o._shape[1]},set:function(t){return o.height=t}}]),this._shapeVector=l}var p=f.prototype;function d(t,e){return 3===t.length?1===e[2]&&e[1]===t[0]*t[2]&&e[0]===t[2]:1===e[0]&&e[1]===t[0]}function g(t){var e=t.createTexture();return t.bindTexture(t.TEXTURE_2D,e),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MIN_FILTER,t.NEAREST),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MAG_FILTER,t.NEAREST),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_S,t.CLAMP_TO_EDGE),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_T,t.CLAMP_TO_EDGE),e}function v(t,e,r,n,a){var i=t.getParameter(t.MAX_TEXTURE_SIZE);if(e<0||e>i||r<0||r>i)throw new Error(\"gl-texture2d: Invalid texture shape\");if(a===t.FLOAT&&!t.getExtension(\"OES_texture_float\"))throw new Error(\"gl-texture2d: Floating point textures not supported on this platform\");var o=g(t);return t.texImage2D(t.TEXTURE_2D,0,n,e,r,0,n,a,null),new f(t,o,e,r,n,a)}Object.defineProperties(p,{minFilter:{get:function(){return this._minFilter},set:function(t){this.bind();var e=this.gl;if(this.type===e.FLOAT&&o.indexOf(t)>=0&&(e.getExtension(\"OES_texture_float_linear\")||(t=e.NEAREST)),s.indexOf(t)<0)throw new Error(\"gl-texture2d: Unknown filter mode \"+t);return e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MIN_FILTER,t),this._minFilter=t}},magFilter:{get:function(){return this._magFilter},set:function(t){this.bind();var e=this.gl;if(this.type===e.FLOAT&&o.indexOf(t)>=0&&(e.getExtension(\"OES_texture_float_linear\")||(t=e.NEAREST)),s.indexOf(t)<0)throw new Error(\"gl-texture2d: Unknown filter mode \"+t);return e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MAG_FILTER,t),this._magFilter=t}},mipSamples:{get:function(){return this._anisoSamples},set:function(t){var e=this._anisoSamples;if(this._anisoSamples=0|Math.max(t,1),e!==this._anisoSamples){var r=this.gl.getExtension(\"EXT_texture_filter_anisotropic\");r&&this.gl.texParameterf(this.gl.TEXTURE_2D,r.TEXTURE_MAX_ANISOTROPY_EXT,this._anisoSamples)}return this._anisoSamples}},wrapS:{get:function(){return this._wrapS},set:function(t){if(this.bind(),l.indexOf(t)<0)throw new Error(\"gl-texture2d: Unknown wrap mode \"+t);return this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_S,t),this._wrapS=t}},wrapT:{get:function(){return this._wrapT},set:function(t){if(this.bind(),l.indexOf(t)<0)throw new Error(\"gl-texture2d: Unknown wrap mode \"+t);return this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_T,t),this._wrapT=t}},wrap:{get:function(){return this._wrapVector},set:function(t){if(Array.isArray(t)||(t=[t,t]),2!==t.length)throw new Error(\"gl-texture2d: Must specify wrap mode for rows and columns\");for(var e=0;e<2;++e)if(l.indexOf(t[e])<0)throw new Error(\"gl-texture2d: Unknown wrap mode \"+t);this._wrapS=t[0],this._wrapT=t[1];var r=this.gl;return this.bind(),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_WRAP_S,this._wrapS),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_WRAP_T,this._wrapT),t}},shape:{get:function(){return this._shapeVector},set:function(t){if(Array.isArray(t)){if(2!==t.length)throw new Error(\"gl-texture2d: Invalid texture shape\")}else t=[0|t,0|t];return h(this,0|t[0],0|t[1]),[0|t[0],0|t[1]]}},width:{get:function(){return this._shape[0]},set:function(t){return h(this,t|=0,this._shape[1]),t}},height:{get:function(){return this._shape[1]},set:function(t){return t|=0,h(this,this._shape[0],t),t}}}),p.bind=function(t){var e=this.gl;return void 0!==t&&e.activeTexture(e.TEXTURE0+(0|t)),e.bindTexture(e.TEXTURE_2D,this.handle),void 0!==t?0|t:e.getParameter(e.ACTIVE_TEXTURE)-e.TEXTURE0},p.dispose=function(){this.gl.deleteTexture(this.handle)},p.generateMipmap=function(){this.bind(),this.gl.generateMipmap(this.gl.TEXTURE_2D);for(var t=Math.min(this._shape[0],this._shape[1]),e=0;t>0;++e,t>>>=1)this._mipLevels.indexOf(e)<0&&this._mipLevels.push(e)},p.setPixels=function(t,e,r,o){var s=this.gl;this.bind(),Array.isArray(e)?(o=r,r=0|e[1],e=0|e[0]):(e=e||0,r=r||0),o=o||0;var l=c(t)?t:t.raw;if(l){this._mipLevels.indexOf(o)<0?(s.texImage2D(s.TEXTURE_2D,0,this.format,this.format,this.type,l),this._mipLevels.push(o)):s.texSubImage2D(s.TEXTURE_2D,o,e,r,this.format,this.type,l)}else{if(!(t.shape&&t.stride&&t.data))throw new Error(\"gl-texture2d: Unsupported data type\");if(t.shape.length<2||e+t.shape[1]>this._shape[1]>>>o||r+t.shape[0]>this._shape[0]>>>o||e<0||r<0)throw new Error(\"gl-texture2d: Texture dimensions are out of bounds\");!function(t,e,r,o,s,l,c,h){var f=h.dtype,p=h.shape.slice();if(p.length<2||p.length>3)throw new Error(\"gl-texture2d: Invalid ndarray, must be 2d or 3d\");var g=0,v=0,m=d(p,h.stride.slice());\"float32\"===f?g=t.FLOAT:\"float64\"===f?(g=t.FLOAT,m=!1,f=\"float32\"):\"uint8\"===f?g=t.UNSIGNED_BYTE:(g=t.UNSIGNED_BYTE,m=!1,f=\"uint8\");if(2===p.length)v=t.LUMINANCE,p=[p[0],p[1],1],h=n(h.data,p,[h.stride[0],h.stride[1],1],h.offset);else{if(3!==p.length)throw new Error(\"gl-texture2d: Invalid shape for texture\");if(1===p[2])v=t.ALPHA;else if(2===p[2])v=t.LUMINANCE_ALPHA;else if(3===p[2])v=t.RGB;else{if(4!==p[2])throw new Error(\"gl-texture2d: Invalid shape for pixel coords\");v=t.RGBA}p[2]}v!==t.LUMINANCE&&v!==t.ALPHA||s!==t.LUMINANCE&&s!==t.ALPHA||(v=s);if(v!==s)throw new Error(\"gl-texture2d: Incompatible texture format for setPixels\");var y=h.size,x=c.indexOf(o)<0;x&&c.push(o);if(g===l&&m)0===h.offset&&h.data.length===y?x?t.texImage2D(t.TEXTURE_2D,o,s,p[0],p[1],0,s,l,h.data):t.texSubImage2D(t.TEXTURE_2D,o,e,r,p[0],p[1],s,l,h.data):x?t.texImage2D(t.TEXTURE_2D,o,s,p[0],p[1],0,s,l,h.data.subarray(h.offset,h.offset+y)):t.texSubImage2D(t.TEXTURE_2D,o,e,r,p[0],p[1],s,l,h.data.subarray(h.offset,h.offset+y));else{var b;b=l===t.FLOAT?i.mallocFloat32(y):i.mallocUint8(y);var _=n(b,p,[p[2],p[2]*p[0],1]);g===t.FLOAT&&l===t.UNSIGNED_BYTE?u(_,h):a.assign(_,h),x?t.texImage2D(t.TEXTURE_2D,o,s,p[0],p[1],0,s,l,b.subarray(0,y)):t.texSubImage2D(t.TEXTURE_2D,o,e,r,p[0],p[1],s,l,b.subarray(0,y)),l===t.FLOAT?i.freeFloat32(b):i.freeUint8(b)}}(s,e,r,o,this.format,this.type,this._mipLevels,t)}}},{ndarray:451,\"ndarray-ops\":445,\"typedarray-pool\":546}],324:[function(t,e,r){(function(r){\"use strict\";var n=t(\"pick-by-alias\");function a(t){if(t.container)if(t.container==document.body)document.body.style.width||(t.canvas.width=t.width||t.pixelRatio*r.innerWidth),document.body.style.height||(t.canvas.height=t.height||t.pixelRatio*r.innerHeight);else{var e=t.container.getBoundingClientRect();t.canvas.width=t.width||e.right-e.left,t.canvas.height=t.height||e.bottom-e.top}}function i(t){return\"function\"==typeof t.getContext&&\"width\"in t&&\"height\"in t}function o(){var t=document.createElement(\"canvas\");return t.style.position=\"absolute\",t.style.top=0,t.style.left=0,t}e.exports=function(t){var e;if(t?\"string\"==typeof t&&(t={container:t}):t={},i(t)?t={container:t}:t=\"string\"==typeof(e=t).nodeName&&\"function\"==typeof e.appendChild&&\"function\"==typeof e.getBoundingClientRect?{container:t}:function(t){return\"function\"==typeof t.drawArrays||\"function\"==typeof t.drawElements}(t)?{gl:t}:n(t,{container:\"container target element el canvas holder parent parentNode wrapper use ref root node\",gl:\"gl context webgl glContext\",attrs:\"attributes attrs contextAttributes\",pixelRatio:\"pixelRatio pxRatio px ratio pxratio pixelratio\",width:\"w width\",height:\"h height\"},!0),t.pixelRatio||(t.pixelRatio=r.pixelRatio||1),t.gl)return t.gl;if(t.canvas&&(t.container=t.canvas.parentNode),t.container){if(\"string\"==typeof t.container){var s=document.querySelector(t.container);if(!s)throw Error(\"Element \"+t.container+\" is not found\");t.container=s}i(t.container)?(t.canvas=t.container,t.container=t.canvas.parentNode):t.canvas||(t.canvas=o(),t.container.appendChild(t.canvas),a(t))}else if(!t.canvas){if(\"undefined\"==typeof document)throw Error(\"Not DOM environment. Use headless-gl.\");t.container=document.body||document.documentElement,t.canvas=o(),t.container.appendChild(t.canvas),a(t)}if(!t.gl)try{t.gl=t.canvas.getContext(\"webgl\",t.attrs)}catch(e){try{t.gl=t.canvas.getContext(\"experimental-webgl\",t.attrs)}catch(e){t.gl=t.canvas.getContext(\"webgl-experimental\",t.attrs)}}return t.gl}}).call(this,\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{\"pick-by-alias\":466}],325:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){e?e.bind():t.bindBuffer(t.ELEMENT_ARRAY_BUFFER,null);var n=0|t.getParameter(t.MAX_VERTEX_ATTRIBS);if(r){if(r.length>n)throw new Error(\"gl-vao: Too many vertex attributes\");for(var a=0;a<r.length;++a){var i=r[a];if(i.buffer){var o=i.buffer,s=i.size||4,l=i.type||t.FLOAT,c=!!i.normalized,u=i.stride||0,h=i.offset||0;o.bind(),t.enableVertexAttribArray(a),t.vertexAttribPointer(a,s,l,c,u,h)}else{if(\"number\"==typeof i)t.vertexAttrib1f(a,i);else if(1===i.length)t.vertexAttrib1f(a,i[0]);else if(2===i.length)t.vertexAttrib2f(a,i[0],i[1]);else if(3===i.length)t.vertexAttrib3f(a,i[0],i[1],i[2]);else{if(4!==i.length)throw new Error(\"gl-vao: Invalid vertex attribute\");t.vertexAttrib4f(a,i[0],i[1],i[2],i[3])}t.disableVertexAttribArray(a)}}for(;a<n;++a)t.disableVertexAttribArray(a)}else for(t.bindBuffer(t.ARRAY_BUFFER,null),a=0;a<n;++a)t.disableVertexAttribArray(a)}},{}],326:[function(t,e,r){\"use strict\";var n=t(\"./do-bind.js\");function a(t){this.gl=t,this._elements=null,this._attributes=null,this._elementsType=t.UNSIGNED_SHORT}a.prototype.bind=function(){n(this.gl,this._elements,this._attributes)},a.prototype.update=function(t,e,r){this._elements=e,this._attributes=t,this._elementsType=r||this.gl.UNSIGNED_SHORT},a.prototype.dispose=function(){},a.prototype.unbind=function(){},a.prototype.draw=function(t,e,r){r=r||0;var n=this.gl;this._elements?n.drawElements(t,e,this._elementsType,r):n.drawArrays(t,r,e)},e.exports=function(t){return new a(t)}},{\"./do-bind.js\":325}],327:[function(t,e,r){\"use strict\";var n=t(\"./do-bind.js\");function a(t,e,r,n,a,i){this.location=t,this.dimension=e,this.a=r,this.b=n,this.c=a,this.d=i}function i(t,e,r){this.gl=t,this._ext=e,this.handle=r,this._attribs=[],this._useElements=!1,this._elementsType=t.UNSIGNED_SHORT}a.prototype.bind=function(t){switch(this.dimension){case 1:t.vertexAttrib1f(this.location,this.a);break;case 2:t.vertexAttrib2f(this.location,this.a,this.b);break;case 3:t.vertexAttrib3f(this.location,this.a,this.b,this.c);break;case 4:t.vertexAttrib4f(this.location,this.a,this.b,this.c,this.d)}},i.prototype.bind=function(){this._ext.bindVertexArrayOES(this.handle);for(var t=0;t<this._attribs.length;++t)this._attribs[t].bind(this.gl)},i.prototype.unbind=function(){this._ext.bindVertexArrayOES(null)},i.prototype.dispose=function(){this._ext.deleteVertexArrayOES(this.handle)},i.prototype.update=function(t,e,r){if(this.bind(),n(this.gl,e,t),this.unbind(),this._attribs.length=0,t)for(var i=0;i<t.length;++i){var o=t[i];\"number\"==typeof o?this._attribs.push(new a(i,1,o)):Array.isArray(o)&&this._attribs.push(new a(i,o.length,o[0],o[1],o[2],o[3]))}this._useElements=!!e,this._elementsType=r||this.gl.UNSIGNED_SHORT},i.prototype.draw=function(t,e,r){r=r||0;var n=this.gl;this._useElements?n.drawElements(t,e,this._elementsType,r):n.drawArrays(t,r,e)},e.exports=function(t,e){return new i(t,e,e.createVertexArrayOES())}},{\"./do-bind.js\":325}],328:[function(t,e,r){\"use strict\";var n=t(\"./lib/vao-native.js\"),a=t(\"./lib/vao-emulated.js\");function i(t){this.bindVertexArrayOES=t.bindVertexArray.bind(t),this.createVertexArrayOES=t.createVertexArray.bind(t),this.deleteVertexArrayOES=t.deleteVertexArray.bind(t)}e.exports=function(t,e,r,o){var s,l=t.createVertexArray?new i(t):t.getExtension(\"OES_vertex_array_object\");return(s=l?n(t,l):a(t)).update(e,r,o),s}},{\"./lib/vao-emulated.js\":326,\"./lib/vao-native.js\":327}],329:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]+r[0],t[1]=e[1]+r[1],t[2]=e[2]+r[2],t}},{}],330:[function(t,e,r){e.exports=function(t,e){var r=n(t[0],t[1],t[2]),o=n(e[0],e[1],e[2]);a(r,r),a(o,o);var s=i(r,o);return s>1?0:Math.acos(s)};var n=t(\"./fromValues\"),a=t(\"./normalize\"),i=t(\"./dot\")},{\"./dot\":340,\"./fromValues\":346,\"./normalize\":357}],331:[function(t,e,r){e.exports=function(t,e){return t[0]=Math.ceil(e[0]),t[1]=Math.ceil(e[1]),t[2]=Math.ceil(e[2]),t}},{}],332:[function(t,e,r){e.exports=function(t){var e=new Float32Array(3);return e[0]=t[0],e[1]=t[1],e[2]=t[2],e}},{}],333:[function(t,e,r){e.exports=function(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t}},{}],334:[function(t,e,r){e.exports=function(){var t=new Float32Array(3);return t[0]=0,t[1]=0,t[2]=0,t}},{}],335:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],a=e[1],i=e[2],o=r[0],s=r[1],l=r[2];return t[0]=a*l-i*s,t[1]=i*o-n*l,t[2]=n*s-a*o,t}},{}],336:[function(t,e,r){e.exports=t(\"./distance\")},{\"./distance\":337}],337:[function(t,e,r){e.exports=function(t,e){var r=e[0]-t[0],n=e[1]-t[1],a=e[2]-t[2];return Math.sqrt(r*r+n*n+a*a)}},{}],338:[function(t,e,r){e.exports=t(\"./divide\")},{\"./divide\":339}],339:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]/r[0],t[1]=e[1]/r[1],t[2]=e[2]/r[2],t}},{}],340:[function(t,e,r){e.exports=function(t,e){return t[0]*e[0]+t[1]*e[1]+t[2]*e[2]}},{}],341:[function(t,e,r){e.exports=1e-6},{}],342:[function(t,e,r){e.exports=function(t,e){var r=t[0],a=t[1],i=t[2],o=e[0],s=e[1],l=e[2];return Math.abs(r-o)<=n*Math.max(1,Math.abs(r),Math.abs(o))&&Math.abs(a-s)<=n*Math.max(1,Math.abs(a),Math.abs(s))&&Math.abs(i-l)<=n*Math.max(1,Math.abs(i),Math.abs(l))};var n=t(\"./epsilon\")},{\"./epsilon\":341}],343:[function(t,e,r){e.exports=function(t,e){return t[0]===e[0]&&t[1]===e[1]&&t[2]===e[2]}},{}],344:[function(t,e,r){e.exports=function(t,e){return t[0]=Math.floor(e[0]),t[1]=Math.floor(e[1]),t[2]=Math.floor(e[2]),t}},{}],345:[function(t,e,r){e.exports=function(t,e,r,a,i,o){var s,l;e||(e=3);r||(r=0);l=a?Math.min(a*e+r,t.length):t.length;for(s=r;s<l;s+=e)n[0]=t[s],n[1]=t[s+1],n[2]=t[s+2],i(n,n,o),t[s]=n[0],t[s+1]=n[1],t[s+2]=n[2];return t};var n=t(\"./create\")()},{\"./create\":334}],346:[function(t,e,r){e.exports=function(t,e,r){var n=new Float32Array(3);return n[0]=t,n[1]=e,n[2]=r,n}},{}],347:[function(t,e,r){e.exports={EPSILON:t(\"./epsilon\"),create:t(\"./create\"),clone:t(\"./clone\"),angle:t(\"./angle\"),fromValues:t(\"./fromValues\"),copy:t(\"./copy\"),set:t(\"./set\"),equals:t(\"./equals\"),exactEquals:t(\"./exactEquals\"),add:t(\"./add\"),subtract:t(\"./subtract\"),sub:t(\"./sub\"),multiply:t(\"./multiply\"),mul:t(\"./mul\"),divide:t(\"./divide\"),div:t(\"./div\"),min:t(\"./min\"),max:t(\"./max\"),floor:t(\"./floor\"),ceil:t(\"./ceil\"),round:t(\"./round\"),scale:t(\"./scale\"),scaleAndAdd:t(\"./scaleAndAdd\"),distance:t(\"./distance\"),dist:t(\"./dist\"),squaredDistance:t(\"./squaredDistance\"),sqrDist:t(\"./sqrDist\"),length:t(\"./length\"),len:t(\"./len\"),squaredLength:t(\"./squaredLength\"),sqrLen:t(\"./sqrLen\"),negate:t(\"./negate\"),inverse:t(\"./inverse\"),normalize:t(\"./normalize\"),dot:t(\"./dot\"),cross:t(\"./cross\"),lerp:t(\"./lerp\"),random:t(\"./random\"),transformMat4:t(\"./transformMat4\"),transformMat3:t(\"./transformMat3\"),transformQuat:t(\"./transformQuat\"),rotateX:t(\"./rotateX\"),rotateY:t(\"./rotateY\"),rotateZ:t(\"./rotateZ\"),forEach:t(\"./forEach\")}},{\"./add\":329,\"./angle\":330,\"./ceil\":331,\"./clone\":332,\"./copy\":333,\"./create\":334,\"./cross\":335,\"./dist\":336,\"./distance\":337,\"./div\":338,\"./divide\":339,\"./dot\":340,\"./epsilon\":341,\"./equals\":342,\"./exactEquals\":343,\"./floor\":344,\"./forEach\":345,\"./fromValues\":346,\"./inverse\":348,\"./len\":349,\"./length\":350,\"./lerp\":351,\"./max\":352,\"./min\":353,\"./mul\":354,\"./multiply\":355,\"./negate\":356,\"./normalize\":357,\"./random\":358,\"./rotateX\":359,\"./rotateY\":360,\"./rotateZ\":361,\"./round\":362,\"./scale\":363,\"./scaleAndAdd\":364,\"./set\":365,\"./sqrDist\":366,\"./sqrLen\":367,\"./squaredDistance\":368,\"./squaredLength\":369,\"./sub\":370,\"./subtract\":371,\"./transformMat3\":372,\"./transformMat4\":373,\"./transformQuat\":374}],348:[function(t,e,r){e.exports=function(t,e){return t[0]=1/e[0],t[1]=1/e[1],t[2]=1/e[2],t}},{}],349:[function(t,e,r){e.exports=t(\"./length\")},{\"./length\":350}],350:[function(t,e,r){e.exports=function(t){var e=t[0],r=t[1],n=t[2];return Math.sqrt(e*e+r*r+n*n)}},{}],351:[function(t,e,r){e.exports=function(t,e,r,n){var a=e[0],i=e[1],o=e[2];return t[0]=a+n*(r[0]-a),t[1]=i+n*(r[1]-i),t[2]=o+n*(r[2]-o),t}},{}],352:[function(t,e,r){e.exports=function(t,e,r){return t[0]=Math.max(e[0],r[0]),t[1]=Math.max(e[1],r[1]),t[2]=Math.max(e[2],r[2]),t}},{}],353:[function(t,e,r){e.exports=function(t,e,r){return t[0]=Math.min(e[0],r[0]),t[1]=Math.min(e[1],r[1]),t[2]=Math.min(e[2],r[2]),t}},{}],354:[function(t,e,r){e.exports=t(\"./multiply\")},{\"./multiply\":355}],355:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]*r[0],t[1]=e[1]*r[1],t[2]=e[2]*r[2],t}},{}],356:[function(t,e,r){e.exports=function(t,e){return t[0]=-e[0],t[1]=-e[1],t[2]=-e[2],t}},{}],357:[function(t,e,r){e.exports=function(t,e){var r=e[0],n=e[1],a=e[2],i=r*r+n*n+a*a;i>0&&(i=1/Math.sqrt(i),t[0]=e[0]*i,t[1]=e[1]*i,t[2]=e[2]*i);return t}},{}],358:[function(t,e,r){e.exports=function(t,e){e=e||1;var r=2*Math.random()*Math.PI,n=2*Math.random()-1,a=Math.sqrt(1-n*n)*e;return t[0]=Math.cos(r)*a,t[1]=Math.sin(r)*a,t[2]=n*e,t}},{}],359:[function(t,e,r){e.exports=function(t,e,r,n){var a=r[1],i=r[2],o=e[1]-a,s=e[2]-i,l=Math.sin(n),c=Math.cos(n);return t[0]=e[0],t[1]=a+o*c-s*l,t[2]=i+o*l+s*c,t}},{}],360:[function(t,e,r){e.exports=function(t,e,r,n){var a=r[0],i=r[2],o=e[0]-a,s=e[2]-i,l=Math.sin(n),c=Math.cos(n);return t[0]=a+s*l+o*c,t[1]=e[1],t[2]=i+s*c-o*l,t}},{}],361:[function(t,e,r){e.exports=function(t,e,r,n){var a=r[0],i=r[1],o=e[0]-a,s=e[1]-i,l=Math.sin(n),c=Math.cos(n);return t[0]=a+o*c-s*l,t[1]=i+o*l+s*c,t[2]=e[2],t}},{}],362:[function(t,e,r){e.exports=function(t,e){return t[0]=Math.round(e[0]),t[1]=Math.round(e[1]),t[2]=Math.round(e[2]),t}},{}],363:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]*r,t[1]=e[1]*r,t[2]=e[2]*r,t}},{}],364:[function(t,e,r){e.exports=function(t,e,r,n){return t[0]=e[0]+r[0]*n,t[1]=e[1]+r[1]*n,t[2]=e[2]+r[2]*n,t}},{}],365:[function(t,e,r){e.exports=function(t,e,r,n){return t[0]=e,t[1]=r,t[2]=n,t}},{}],366:[function(t,e,r){e.exports=t(\"./squaredDistance\")},{\"./squaredDistance\":368}],367:[function(t,e,r){e.exports=t(\"./squaredLength\")},{\"./squaredLength\":369}],368:[function(t,e,r){e.exports=function(t,e){var r=e[0]-t[0],n=e[1]-t[1],a=e[2]-t[2];return r*r+n*n+a*a}},{}],369:[function(t,e,r){e.exports=function(t){var e=t[0],r=t[1],n=t[2];return e*e+r*r+n*n}},{}],370:[function(t,e,r){e.exports=t(\"./subtract\")},{\"./subtract\":371}],371:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]-r[0],t[1]=e[1]-r[1],t[2]=e[2]-r[2],t}},{}],372:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],a=e[1],i=e[2];return t[0]=n*r[0]+a*r[3]+i*r[6],t[1]=n*r[1]+a*r[4]+i*r[7],t[2]=n*r[2]+a*r[5]+i*r[8],t}},{}],373:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],a=e[1],i=e[2],o=r[3]*n+r[7]*a+r[11]*i+r[15];return o=o||1,t[0]=(r[0]*n+r[4]*a+r[8]*i+r[12])/o,t[1]=(r[1]*n+r[5]*a+r[9]*i+r[13])/o,t[2]=(r[2]*n+r[6]*a+r[10]*i+r[14])/o,t}},{}],374:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],a=e[1],i=e[2],o=r[0],s=r[1],l=r[2],c=r[3],u=c*n+s*i-l*a,h=c*a+l*n-o*i,f=c*i+o*a-s*n,p=-o*n-s*a-l*i;return t[0]=u*c+p*-o+h*-l-f*-s,t[1]=h*c+p*-s+f*-o-u*-l,t[2]=f*c+p*-l+u*-s-h*-o,t}},{}],375:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]+r[0],t[1]=e[1]+r[1],t[2]=e[2]+r[2],t[3]=e[3]+r[3],t}},{}],376:[function(t,e,r){e.exports=function(t){var e=new Float32Array(4);return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e}},{}],377:[function(t,e,r){e.exports=function(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t}},{}],378:[function(t,e,r){e.exports=function(){var t=new Float32Array(4);return t[0]=0,t[1]=0,t[2]=0,t[3]=0,t}},{}],379:[function(t,e,r){e.exports=function(t,e){var r=e[0]-t[0],n=e[1]-t[1],a=e[2]-t[2],i=e[3]-t[3];return Math.sqrt(r*r+n*n+a*a+i*i)}},{}],380:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]/r[0],t[1]=e[1]/r[1],t[2]=e[2]/r[2],t[3]=e[3]/r[3],t}},{}],381:[function(t,e,r){e.exports=function(t,e){return t[0]*e[0]+t[1]*e[1]+t[2]*e[2]+t[3]*e[3]}},{}],382:[function(t,e,r){e.exports=function(t,e,r,n){var a=new Float32Array(4);return a[0]=t,a[1]=e,a[2]=r,a[3]=n,a}},{}],383:[function(t,e,r){e.exports={create:t(\"./create\"),clone:t(\"./clone\"),fromValues:t(\"./fromValues\"),copy:t(\"./copy\"),set:t(\"./set\"),add:t(\"./add\"),subtract:t(\"./subtract\"),multiply:t(\"./multiply\"),divide:t(\"./divide\"),min:t(\"./min\"),max:t(\"./max\"),scale:t(\"./scale\"),scaleAndAdd:t(\"./scaleAndAdd\"),distance:t(\"./distance\"),squaredDistance:t(\"./squaredDistance\"),length:t(\"./length\"),squaredLength:t(\"./squaredLength\"),negate:t(\"./negate\"),inverse:t(\"./inverse\"),normalize:t(\"./normalize\"),dot:t(\"./dot\"),lerp:t(\"./lerp\"),random:t(\"./random\"),transformMat4:t(\"./transformMat4\"),transformQuat:t(\"./transformQuat\")}},{\"./add\":375,\"./clone\":376,\"./copy\":377,\"./create\":378,\"./distance\":379,\"./divide\":380,\"./dot\":381,\"./fromValues\":382,\"./inverse\":384,\"./length\":385,\"./lerp\":386,\"./max\":387,\"./min\":388,\"./multiply\":389,\"./negate\":390,\"./normalize\":391,\"./random\":392,\"./scale\":393,\"./scaleAndAdd\":394,\"./set\":395,\"./squaredDistance\":396,\"./squaredLength\":397,\"./subtract\":398,\"./transformMat4\":399,\"./transformQuat\":400}],384:[function(t,e,r){e.exports=function(t,e){return t[0]=1/e[0],t[1]=1/e[1],t[2]=1/e[2],t[3]=1/e[3],t}},{}],385:[function(t,e,r){e.exports=function(t){var e=t[0],r=t[1],n=t[2],a=t[3];return Math.sqrt(e*e+r*r+n*n+a*a)}},{}],386:[function(t,e,r){e.exports=function(t,e,r,n){var a=e[0],i=e[1],o=e[2],s=e[3];return t[0]=a+n*(r[0]-a),t[1]=i+n*(r[1]-i),t[2]=o+n*(r[2]-o),t[3]=s+n*(r[3]-s),t}},{}],387:[function(t,e,r){e.exports=function(t,e,r){return t[0]=Math.max(e[0],r[0]),t[1]=Math.max(e[1],r[1]),t[2]=Math.max(e[2],r[2]),t[3]=Math.max(e[3],r[3]),t}},{}],388:[function(t,e,r){e.exports=function(t,e,r){return t[0]=Math.min(e[0],r[0]),t[1]=Math.min(e[1],r[1]),t[2]=Math.min(e[2],r[2]),t[3]=Math.min(e[3],r[3]),t}},{}],389:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]*r[0],t[1]=e[1]*r[1],t[2]=e[2]*r[2],t[3]=e[3]*r[3],t}},{}],390:[function(t,e,r){e.exports=function(t,e){return t[0]=-e[0],t[1]=-e[1],t[2]=-e[2],t[3]=-e[3],t}},{}],391:[function(t,e,r){e.exports=function(t,e){var r=e[0],n=e[1],a=e[2],i=e[3],o=r*r+n*n+a*a+i*i;o>0&&(o=1/Math.sqrt(o),t[0]=r*o,t[1]=n*o,t[2]=a*o,t[3]=i*o);return t}},{}],392:[function(t,e,r){var n=t(\"./normalize\"),a=t(\"./scale\");e.exports=function(t,e){return e=e||1,t[0]=Math.random(),t[1]=Math.random(),t[2]=Math.random(),t[3]=Math.random(),n(t,t),a(t,t,e),t}},{\"./normalize\":391,\"./scale\":393}],393:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]*r,t[1]=e[1]*r,t[2]=e[2]*r,t[3]=e[3]*r,t}},{}],394:[function(t,e,r){e.exports=function(t,e,r,n){return t[0]=e[0]+r[0]*n,t[1]=e[1]+r[1]*n,t[2]=e[2]+r[2]*n,t[3]=e[3]+r[3]*n,t}},{}],395:[function(t,e,r){e.exports=function(t,e,r,n,a){return t[0]=e,t[1]=r,t[2]=n,t[3]=a,t}},{}],396:[function(t,e,r){e.exports=function(t,e){var r=e[0]-t[0],n=e[1]-t[1],a=e[2]-t[2],i=e[3]-t[3];return r*r+n*n+a*a+i*i}},{}],397:[function(t,e,r){e.exports=function(t){var e=t[0],r=t[1],n=t[2],a=t[3];return e*e+r*r+n*n+a*a}},{}],398:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]-r[0],t[1]=e[1]-r[1],t[2]=e[2]-r[2],t[3]=e[3]-r[3],t}},{}],399:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],a=e[1],i=e[2],o=e[3];return t[0]=r[0]*n+r[4]*a+r[8]*i+r[12]*o,t[1]=r[1]*n+r[5]*a+r[9]*i+r[13]*o,t[2]=r[2]*n+r[6]*a+r[10]*i+r[14]*o,t[3]=r[3]*n+r[7]*a+r[11]*i+r[15]*o,t}},{}],400:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],a=e[1],i=e[2],o=r[0],s=r[1],l=r[2],c=r[3],u=c*n+s*i-l*a,h=c*a+l*n-o*i,f=c*i+o*a-s*n,p=-o*n-s*a-l*i;return t[0]=u*c+p*-o+h*-l-f*-s,t[1]=h*c+p*-s+f*-o-u*-l,t[2]=f*c+p*-l+u*-s-h*-o,t[3]=e[3],t}},{}],401:[function(t,e,r){e.exports=function(t,e,r,i){return n[0]=i,n[1]=r,n[2]=e,n[3]=t,a[0]};var n=new Uint8Array(4),a=new Float32Array(n.buffer)},{}],402:[function(t,e,r){var n=t(\"glsl-tokenizer\"),a=t(\"atob-lite\");e.exports=function(t){for(var e=Array.isArray(t)?t:n(t),r=0;r<e.length;r++){var i=e[r];if(\"preprocessor\"===i.type){var o=i.data.match(/\\#define\\s+SHADER_NAME(_B64)?\\s+(.+)$/);if(o&&o[2]){var s=o[1],l=o[2];return(s?a(l):l).trim()}}}}},{\"atob-lite\":73,\"glsl-tokenizer\":409}],403:[function(t,e,r){e.exports=function(t){var e,r,k,T=0,A=0,M=l,S=[],E=[],C=1,L=0,P=0,O=!1,I=!1,z=\"\",D=i,R=n;\"300 es\"===(t=t||{}).version&&(D=s,R=o);return function(t){return E=[],null!==t?function(t){var r;T=0,k=(z+=t).length;for(;e=z[T],T<k;){switch(r=T,M){case u:T=V();break;case h:case f:T=j();break;case p:T=U();break;case d:T=G();break;case _:T=H();break;case g:T=Y();break;case c:T=W();break;case x:T=N();break;case l:T=B()}if(r!==T)switch(z[r]){case\"\\n\":L=0,++C;break;default:++L}}return A+=T,z=z.slice(T),E}(t.replace?t.replace(/\\r\\n/g,\"\\n\"):t):function(t){S.length&&F(S.join(\"\"));return M=b,F(\"(eof)\"),E}()};function F(t){t.length&&E.push({type:w[M],data:t,position:P,line:C,column:L})}function B(){return S=S.length?[]:S,\"/\"===r&&\"*\"===e?(P=A+T-1,M=u,r=e,T+1):\"/\"===r&&\"/\"===e?(P=A+T-1,M=h,r=e,T+1):\"#\"===e?(M=f,P=A+T,T):/\\s/.test(e)?(M=x,P=A+T,T):(O=/\\d/.test(e),I=/[^\\w_]/.test(e),P=A+T,M=O?d:I?p:c,T)}function N(){return/[^\\s]/g.test(e)?(F(S.join(\"\")),M=l,T):(S.push(e),r=e,T+1)}function j(){return\"\\r\"!==e&&\"\\n\"!==e||\"\\\\\"===r?(S.push(e),r=e,T+1):(F(S.join(\"\")),M=l,T)}function V(){return\"/\"===e&&\"*\"===r?(S.push(e),F(S.join(\"\")),M=l,T+1):(S.push(e),r=e,T+1)}function U(){if(\".\"===r&&/\\d/.test(e))return M=g,T;if(\"/\"===r&&\"*\"===e)return M=u,T;if(\"/\"===r&&\"/\"===e)return M=h,T;if(\".\"===e&&S.length){for(;q(S););return M=g,T}if(\";\"===e||\")\"===e||\"(\"===e){if(S.length)for(;q(S););return F(e),M=l,T+1}var t=2===S.length&&\"=\"!==e;if(/[\\w_\\d\\s]/.test(e)||t){for(;q(S););return M=l,T}return S.push(e),r=e,T+1}function q(t){for(var e,r,n=0;;){if(e=a.indexOf(t.slice(0,t.length+n).join(\"\")),r=a[e],-1===e){if(n--+t.length>0)continue;r=t.slice(0,1).join(\"\")}return F(r),P+=r.length,(S=S.slice(r.length)).length}}function H(){return/[^a-fA-F0-9]/.test(e)?(F(S.join(\"\")),M=l,T):(S.push(e),r=e,T+1)}function G(){return\".\"===e?(S.push(e),M=g,r=e,T+1):/[eE]/.test(e)?(S.push(e),M=g,r=e,T+1):\"x\"===e&&1===S.length&&\"0\"===S[0]?(M=_,S.push(e),r=e,T+1):/[^\\d]/.test(e)?(F(S.join(\"\")),M=l,T):(S.push(e),r=e,T+1)}function Y(){return\"f\"===e&&(S.push(e),r=e,T+=1),/[eE]/.test(e)?(S.push(e),r=e,T+1):\"-\"===e&&/[eE]/.test(r)?(S.push(e),r=e,T+1):/[^\\d]/.test(e)?(F(S.join(\"\")),M=l,T):(S.push(e),r=e,T+1)}function W(){if(/[^\\d\\w_]/.test(e)){var t=S.join(\"\");return M=R.indexOf(t)>-1?y:D.indexOf(t)>-1?m:v,F(S.join(\"\")),M=l,T}return S.push(e),r=e,T+1}};var n=t(\"./lib/literals\"),a=t(\"./lib/operators\"),i=t(\"./lib/builtins\"),o=t(\"./lib/literals-300es\"),s=t(\"./lib/builtins-300es\"),l=999,c=9999,u=0,h=1,f=2,p=3,d=4,g=5,v=6,m=7,y=8,x=9,b=10,_=11,w=[\"block-comment\",\"line-comment\",\"preprocessor\",\"operator\",\"integer\",\"float\",\"ident\",\"builtin\",\"keyword\",\"whitespace\",\"eof\",\"integer\"]},{\"./lib/builtins\":405,\"./lib/builtins-300es\":404,\"./lib/literals\":407,\"./lib/literals-300es\":406,\"./lib/operators\":408}],404:[function(t,e,r){var n=t(\"./builtins\");n=n.slice().filter(function(t){return!/^(gl\\_|texture)/.test(t)}),e.exports=n.concat([\"gl_VertexID\",\"gl_InstanceID\",\"gl_Position\",\"gl_PointSize\",\"gl_FragCoord\",\"gl_FrontFacing\",\"gl_FragDepth\",\"gl_PointCoord\",\"gl_MaxVertexAttribs\",\"gl_MaxVertexUniformVectors\",\"gl_MaxVertexOutputVectors\",\"gl_MaxFragmentInputVectors\",\"gl_MaxVertexTextureImageUnits\",\"gl_MaxCombinedTextureImageUnits\",\"gl_MaxTextureImageUnits\",\"gl_MaxFragmentUniformVectors\",\"gl_MaxDrawBuffers\",\"gl_MinProgramTexelOffset\",\"gl_MaxProgramTexelOffset\",\"gl_DepthRangeParameters\",\"gl_DepthRange\",\"trunc\",\"round\",\"roundEven\",\"isnan\",\"isinf\",\"floatBitsToInt\",\"floatBitsToUint\",\"intBitsToFloat\",\"uintBitsToFloat\",\"packSnorm2x16\",\"unpackSnorm2x16\",\"packUnorm2x16\",\"unpackUnorm2x16\",\"packHalf2x16\",\"unpackHalf2x16\",\"outerProduct\",\"transpose\",\"determinant\",\"inverse\",\"texture\",\"textureSize\",\"textureProj\",\"textureLod\",\"textureOffset\",\"texelFetch\",\"texelFetchOffset\",\"textureProjOffset\",\"textureLodOffset\",\"textureProjLod\",\"textureProjLodOffset\",\"textureGrad\",\"textureGradOffset\",\"textureProjGrad\",\"textureProjGradOffset\"])},{\"./builtins\":405}],405:[function(t,e,r){e.exports=[\"abs\",\"acos\",\"all\",\"any\",\"asin\",\"atan\",\"ceil\",\"clamp\",\"cos\",\"cross\",\"dFdx\",\"dFdy\",\"degrees\",\"distance\",\"dot\",\"equal\",\"exp\",\"exp2\",\"faceforward\",\"floor\",\"fract\",\"gl_BackColor\",\"gl_BackLightModelProduct\",\"gl_BackLightProduct\",\"gl_BackMaterial\",\"gl_BackSecondaryColor\",\"gl_ClipPlane\",\"gl_ClipVertex\",\"gl_Color\",\"gl_DepthRange\",\"gl_DepthRangeParameters\",\"gl_EyePlaneQ\",\"gl_EyePlaneR\",\"gl_EyePlaneS\",\"gl_EyePlaneT\",\"gl_Fog\",\"gl_FogCoord\",\"gl_FogFragCoord\",\"gl_FogParameters\",\"gl_FragColor\",\"gl_FragCoord\",\"gl_FragData\",\"gl_FragDepth\",\"gl_FragDepthEXT\",\"gl_FrontColor\",\"gl_FrontFacing\",\"gl_FrontLightModelProduct\",\"gl_FrontLightProduct\",\"gl_FrontMaterial\",\"gl_FrontSecondaryColor\",\"gl_LightModel\",\"gl_LightModelParameters\",\"gl_LightModelProducts\",\"gl_LightProducts\",\"gl_LightSource\",\"gl_LightSourceParameters\",\"gl_MaterialParameters\",\"gl_MaxClipPlanes\",\"gl_MaxCombinedTextureImageUnits\",\"gl_MaxDrawBuffers\",\"gl_MaxFragmentUniformComponents\",\"gl_MaxLights\",\"gl_MaxTextureCoords\",\"gl_MaxTextureImageUnits\",\"gl_MaxTextureUnits\",\"gl_MaxVaryingFloats\",\"gl_MaxVertexAttribs\",\"gl_MaxVertexTextureImageUnits\",\"gl_MaxVertexUniformComponents\",\"gl_ModelViewMatrix\",\"gl_ModelViewMatrixInverse\",\"gl_ModelViewMatrixInverseTranspose\",\"gl_ModelViewMatrixTranspose\",\"gl_ModelViewProjectionMatrix\",\"gl_ModelViewProjectionMatrixInverse\",\"gl_ModelViewProjectionMatrixInverseTranspose\",\"gl_ModelViewProjectionMatrixTranspose\",\"gl_MultiTexCoord0\",\"gl_MultiTexCoord1\",\"gl_MultiTexCoord2\",\"gl_MultiTexCoord3\",\"gl_MultiTexCoord4\",\"gl_MultiTexCoord5\",\"gl_MultiTexCoord6\",\"gl_MultiTexCoord7\",\"gl_Normal\",\"gl_NormalMatrix\",\"gl_NormalScale\",\"gl_ObjectPlaneQ\",\"gl_ObjectPlaneR\",\"gl_ObjectPlaneS\",\"gl_ObjectPlaneT\",\"gl_Point\",\"gl_PointCoord\",\"gl_PointParameters\",\"gl_PointSize\",\"gl_Position\",\"gl_ProjectionMatrix\",\"gl_ProjectionMatrixInverse\",\"gl_ProjectionMatrixInverseTranspose\",\"gl_ProjectionMatrixTranspose\",\"gl_SecondaryColor\",\"gl_TexCoord\",\"gl_TextureEnvColor\",\"gl_TextureMatrix\",\"gl_TextureMatrixInverse\",\"gl_TextureMatrixInverseTranspose\",\"gl_TextureMatrixTranspose\",\"gl_Vertex\",\"greaterThan\",\"greaterThanEqual\",\"inversesqrt\",\"length\",\"lessThan\",\"lessThanEqual\",\"log\",\"log2\",\"matrixCompMult\",\"max\",\"min\",\"mix\",\"mod\",\"normalize\",\"not\",\"notEqual\",\"pow\",\"radians\",\"reflect\",\"refract\",\"sign\",\"sin\",\"smoothstep\",\"sqrt\",\"step\",\"tan\",\"texture2D\",\"texture2DLod\",\"texture2DProj\",\"texture2DProjLod\",\"textureCube\",\"textureCubeLod\",\"texture2DLodEXT\",\"texture2DProjLodEXT\",\"textureCubeLodEXT\",\"texture2DGradEXT\",\"texture2DProjGradEXT\",\"textureCubeGradEXT\"]},{}],406:[function(t,e,r){var n=t(\"./literals\");e.exports=n.slice().concat([\"layout\",\"centroid\",\"smooth\",\"case\",\"mat2x2\",\"mat2x3\",\"mat2x4\",\"mat3x2\",\"mat3x3\",\"mat3x4\",\"mat4x2\",\"mat4x3\",\"mat4x4\",\"uint\",\"uvec2\",\"uvec3\",\"uvec4\",\"samplerCubeShadow\",\"sampler2DArray\",\"sampler2DArrayShadow\",\"isampler2D\",\"isampler3D\",\"isamplerCube\",\"isampler2DArray\",\"usampler2D\",\"usampler3D\",\"usamplerCube\",\"usampler2DArray\",\"coherent\",\"restrict\",\"readonly\",\"writeonly\",\"resource\",\"atomic_uint\",\"noperspective\",\"patch\",\"sample\",\"subroutine\",\"common\",\"partition\",\"active\",\"filter\",\"image1D\",\"image2D\",\"image3D\",\"imageCube\",\"iimage1D\",\"iimage2D\",\"iimage3D\",\"iimageCube\",\"uimage1D\",\"uimage2D\",\"uimage3D\",\"uimageCube\",\"image1DArray\",\"image2DArray\",\"iimage1DArray\",\"iimage2DArray\",\"uimage1DArray\",\"uimage2DArray\",\"image1DShadow\",\"image2DShadow\",\"image1DArrayShadow\",\"image2DArrayShadow\",\"imageBuffer\",\"iimageBuffer\",\"uimageBuffer\",\"sampler1DArray\",\"sampler1DArrayShadow\",\"isampler1D\",\"isampler1DArray\",\"usampler1D\",\"usampler1DArray\",\"isampler2DRect\",\"usampler2DRect\",\"samplerBuffer\",\"isamplerBuffer\",\"usamplerBuffer\",\"sampler2DMS\",\"isampler2DMS\",\"usampler2DMS\",\"sampler2DMSArray\",\"isampler2DMSArray\",\"usampler2DMSArray\"])},{\"./literals\":407}],407:[function(t,e,r){e.exports=[\"precision\",\"highp\",\"mediump\",\"lowp\",\"attribute\",\"const\",\"uniform\",\"varying\",\"break\",\"continue\",\"do\",\"for\",\"while\",\"if\",\"else\",\"in\",\"out\",\"inout\",\"float\",\"int\",\"void\",\"bool\",\"true\",\"false\",\"discard\",\"return\",\"mat2\",\"mat3\",\"mat4\",\"vec2\",\"vec3\",\"vec4\",\"ivec2\",\"ivec3\",\"ivec4\",\"bvec2\",\"bvec3\",\"bvec4\",\"sampler1D\",\"sampler2D\",\"sampler3D\",\"samplerCube\",\"sampler1DShadow\",\"sampler2DShadow\",\"struct\",\"asm\",\"class\",\"union\",\"enum\",\"typedef\",\"template\",\"this\",\"packed\",\"goto\",\"switch\",\"default\",\"inline\",\"noinline\",\"volatile\",\"public\",\"static\",\"extern\",\"external\",\"interface\",\"long\",\"short\",\"double\",\"half\",\"fixed\",\"unsigned\",\"input\",\"output\",\"hvec2\",\"hvec3\",\"hvec4\",\"dvec2\",\"dvec3\",\"dvec4\",\"fvec2\",\"fvec3\",\"fvec4\",\"sampler2DRect\",\"sampler3DRect\",\"sampler2DRectShadow\",\"sizeof\",\"cast\",\"namespace\",\"using\"]},{}],408:[function(t,e,r){e.exports=[\"<<=\",\">>=\",\"++\",\"--\",\"<<\",\">>\",\"<=\",\">=\",\"==\",\"!=\",\"&&\",\"||\",\"+=\",\"-=\",\"*=\",\"/=\",\"%=\",\"&=\",\"^^\",\"^=\",\"|=\",\"(\",\")\",\"[\",\"]\",\".\",\"!\",\"~\",\"*\",\"/\",\"%\",\"+\",\"-\",\"<\",\">\",\"&\",\"^\",\"|\",\"?\",\":\",\"=\",\",\",\";\",\"{\",\"}\"]},{}],409:[function(t,e,r){var n=t(\"./index\");e.exports=function(t,e){var r=n(e),a=[];return a=(a=a.concat(r(t))).concat(r(null))}},{\"./index\":403}],410:[function(t,e,r){e.exports=function(t){\"string\"==typeof t&&(t=[t]);for(var e=[].slice.call(arguments,1),r=[],n=0;n<t.length-1;n++)r.push(t[n],e[n]||\"\");return r.push(t[n]),r.join(\"\")}},{}],411:[function(t,e,r){(function(r){\"use strict\";var n,a=t(\"is-browser\");n=\"function\"==typeof r.matchMedia?!r.matchMedia(\"(hover: none)\").matches:a,e.exports=n}).call(this,\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{\"is-browser\":418}],412:[function(t,e,r){\"use strict\";var n=t(\"is-browser\");e.exports=n&&function(){var t=!1;try{var e=Object.defineProperty({},\"passive\",{get:function(){t=!0}});window.addEventListener(\"test\",null,e),window.removeEventListener(\"test\",null,e)}catch(e){t=!1}return t}()},{\"is-browser\":418}],413:[function(t,e,r){r.read=function(t,e,r,n,a){var i,o,s=8*a-n-1,l=(1<<s)-1,c=l>>1,u=-7,h=r?a-1:0,f=r?-1:1,p=t[e+h];for(h+=f,i=p&(1<<-u)-1,p>>=-u,u+=s;u>0;i=256*i+t[e+h],h+=f,u-=8);for(o=i&(1<<-u)-1,i>>=-u,u+=n;u>0;o=256*o+t[e+h],h+=f,u-=8);if(0===i)i=1-c;else{if(i===l)return o?NaN:1/0*(p?-1:1);o+=Math.pow(2,n),i-=c}return(p?-1:1)*o*Math.pow(2,i-n)},r.write=function(t,e,r,n,a,i){var o,s,l,c=8*i-a-1,u=(1<<c)-1,h=u>>1,f=23===a?Math.pow(2,-24)-Math.pow(2,-77):0,p=n?0:i-1,d=n?1:-1,g=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(s=isNaN(e)?1:0,o=u):(o=Math.floor(Math.log(e)/Math.LN2),e*(l=Math.pow(2,-o))<1&&(o--,l*=2),(e+=o+h>=1?f/l:f*Math.pow(2,1-h))*l>=2&&(o++,l/=2),o+h>=u?(s=0,o=u):o+h>=1?(s=(e*l-1)*Math.pow(2,a),o+=h):(s=e*Math.pow(2,h-1)*Math.pow(2,a),o=0));a>=8;t[r+p]=255&s,p+=d,s/=256,a-=8);for(o=o<<a|s,c+=a;c>0;t[r+p]=255&o,p+=d,o/=256,c-=8);t[r+p-d]|=128*g}},{}],414:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=t.length;if(0===r)throw new Error(\"Must have at least d+1 points\");var a=t[0].length;if(r<=a)throw new Error(\"Must input at least d+1 points\");var o=t.slice(0,a+1),s=n.apply(void 0,o);if(0===s)throw new Error(\"Input not in general position\");for(var l=new Array(a+1),u=0;u<=a;++u)l[u]=u;s<0&&(l[0]=1,l[1]=0);for(var h=new i(l,new Array(a+1),!1),f=h.adjacent,p=new Array(a+2),u=0;u<=a;++u){for(var d=l.slice(),g=0;g<=a;++g)g===u&&(d[g]=-1);var v=d[0];d[0]=d[1],d[1]=v;var m=new i(d,new Array(a+1),!0);f[u]=m,p[u]=m}p[a+1]=h;for(var u=0;u<=a;++u)for(var d=f[u].vertices,y=f[u].adjacent,g=0;g<=a;++g){var x=d[g];if(x<0)y[g]=h;else for(var b=0;b<=a;++b)f[b].vertices.indexOf(x)<0&&(y[g]=f[b])}for(var _=new c(a,o,p),w=!!e,u=a+1;u<r;++u)_.insert(t[u],w);return _.boundary()};var n=t(\"robust-orientation\"),a=t(\"simplicial-complex\").compareCells;function i(t,e,r){this.vertices=t,this.adjacent=e,this.boundary=r,this.lastVisited=-1}function o(t,e,r){this.vertices=t,this.cell=e,this.index=r}function s(t,e){return a(t.vertices,e.vertices)}i.prototype.flip=function(){var t=this.vertices[0];this.vertices[0]=this.vertices[1],this.vertices[1]=t;var e=this.adjacent[0];this.adjacent[0]=this.adjacent[1],this.adjacent[1]=e};var l=[];function c(t,e,r){this.dimension=t,this.vertices=e,this.simplices=r,this.interior=r.filter(function(t){return!t.boundary}),this.tuple=new Array(t+1);for(var a=0;a<=t;++a)this.tuple[a]=this.vertices[a];var i=l[t];i||(i=l[t]=function(t){for(var e=[\"function orient(){var tuple=this.tuple;return test(\"],r=0;r<=t;++r)r>0&&e.push(\",\"),e.push(\"tuple[\",r,\"]\");e.push(\")}return orient\");var a=new Function(\"test\",e.join(\"\")),i=n[t+1];return i||(i=n),a(i)}(t)),this.orient=i}var u=c.prototype;u.handleBoundaryDegeneracy=function(t,e){var r=this.dimension,n=this.vertices.length-1,a=this.tuple,i=this.vertices,o=[t];for(t.lastVisited=-n;o.length>0;){(t=o.pop()).vertices;for(var s=t.adjacent,l=0;l<=r;++l){var c=s[l];if(c.boundary&&!(c.lastVisited<=-n)){for(var u=c.vertices,h=0;h<=r;++h){var f=u[h];a[h]=f<0?e:i[f]}var p=this.orient();if(p>0)return c;c.lastVisited=-n,0===p&&o.push(c)}}}return null},u.walk=function(t,e){var r=this.vertices.length-1,n=this.dimension,a=this.vertices,i=this.tuple,o=e?this.interior.length*Math.random()|0:this.interior.length-1,s=this.interior[o];t:for(;!s.boundary;){for(var l=s.vertices,c=s.adjacent,u=0;u<=n;++u)i[u]=a[l[u]];s.lastVisited=r;for(u=0;u<=n;++u){var h=c[u];if(!(h.lastVisited>=r)){var f=i[u];i[u]=t;var p=this.orient();if(i[u]=f,p<0){s=h;continue t}h.boundary?h.lastVisited=-r:h.lastVisited=r}}return}return s},u.addPeaks=function(t,e){var r=this.vertices.length-1,n=this.dimension,a=this.vertices,l=this.tuple,c=this.interior,u=this.simplices,h=[e];e.lastVisited=r,e.vertices[e.vertices.indexOf(-1)]=r,e.boundary=!1,c.push(e);for(var f=[];h.length>0;){var p=(e=h.pop()).vertices,d=e.adjacent,g=p.indexOf(r);if(!(g<0))for(var v=0;v<=n;++v)if(v!==g){var m=d[v];if(m.boundary&&!(m.lastVisited>=r)){var y=m.vertices;if(m.lastVisited!==-r){for(var x=0,b=0;b<=n;++b)y[b]<0?(x=b,l[b]=t):l[b]=a[y[b]];if(this.orient()>0){y[x]=r,m.boundary=!1,c.push(m),h.push(m),m.lastVisited=r;continue}m.lastVisited=-r}var _=m.adjacent,w=p.slice(),k=d.slice(),T=new i(w,k,!0);u.push(T);var A=_.indexOf(e);if(!(A<0)){_[A]=T,k[g]=m,w[v]=-1,k[v]=e,d[v]=T,T.flip();for(b=0;b<=n;++b){var M=w[b];if(!(M<0||M===r)){for(var S=new Array(n-1),E=0,C=0;C<=n;++C){var L=w[C];L<0||C===b||(S[E++]=L)}f.push(new o(S,T,b))}}}}}}f.sort(s);for(v=0;v+1<f.length;v+=2){var P=f[v],O=f[v+1],I=P.index,z=O.index;I<0||z<0||(P.cell.adjacent[P.index]=O.cell,O.cell.adjacent[O.index]=P.cell)}},u.insert=function(t,e){var r=this.vertices;r.push(t);var n=this.walk(t,e);if(n){for(var a=this.dimension,i=this.tuple,o=0;o<=a;++o){var s=n.vertices[o];i[o]=s<0?t:r[s]}var l=this.orient(i);l<0||(0!==l||(n=this.handleBoundaryDegeneracy(n,t)))&&this.addPeaks(t,n)}},u.boundary=function(){for(var t=this.dimension,e=[],r=this.simplices,n=r.length,a=0;a<n;++a){var i=r[a];if(i.boundary){for(var o=new Array(t),s=i.vertices,l=0,c=0,u=0;u<=t;++u)s[u]>=0?o[l++]=s[u]:c=1&u;if(c===(1&t)){var h=o[0];o[0]=o[1],o[1]=h}e.push(o)}}return e}},{\"robust-orientation\":511,\"simplicial-complex\":521}],415:[function(t,e,r){\"use strict\";var n=t(\"binary-search-bounds\"),a=0,i=1;function o(t,e,r,n,a){this.mid=t,this.left=e,this.right=r,this.leftPoints=n,this.rightPoints=a,this.count=(e?e.count:0)+(r?r.count:0)+n.length}e.exports=function(t){if(!t||0===t.length)return new x(null);return new x(y(t))};var s=o.prototype;function l(t,e){t.mid=e.mid,t.left=e.left,t.right=e.right,t.leftPoints=e.leftPoints,t.rightPoints=e.rightPoints,t.count=e.count}function c(t,e){var r=y(e);t.mid=r.mid,t.left=r.left,t.right=r.right,t.leftPoints=r.leftPoints,t.rightPoints=r.rightPoints,t.count=r.count}function u(t,e){var r=t.intervals([]);r.push(e),c(t,r)}function h(t,e){var r=t.intervals([]),n=r.indexOf(e);return n<0?a:(r.splice(n,1),c(t,r),i)}function f(t,e,r){for(var n=0;n<t.length&&t[n][0]<=e;++n){var a=r(t[n]);if(a)return a}}function p(t,e,r){for(var n=t.length-1;n>=0&&t[n][1]>=e;--n){var a=r(t[n]);if(a)return a}}function d(t,e){for(var r=0;r<t.length;++r){var n=e(t[r]);if(n)return n}}function g(t,e){return t-e}function v(t,e){var r=t[0]-e[0];return r||t[1]-e[1]}function m(t,e){var r=t[1]-e[1];return r||t[0]-e[0]}function y(t){if(0===t.length)return null;for(var e=[],r=0;r<t.length;++r)e.push(t[r][0],t[r][1]);e.sort(g);var n=e[e.length>>1],a=[],i=[],s=[];for(r=0;r<t.length;++r){var l=t[r];l[1]<n?a.push(l):n<l[0]?i.push(l):s.push(l)}var c=s,u=s.slice();return c.sort(v),u.sort(m),new o(n,y(a),y(i),c,u)}function x(t){this.root=t}s.intervals=function(t){return t.push.apply(t,this.leftPoints),this.left&&this.left.intervals(t),this.right&&this.right.intervals(t),t},s.insert=function(t){var e=this.count-this.leftPoints.length;if(this.count+=1,t[1]<this.mid)this.left?4*(this.left.count+1)>3*(e+1)?u(this,t):this.left.insert(t):this.left=y([t]);else if(t[0]>this.mid)this.right?4*(this.right.count+1)>3*(e+1)?u(this,t):this.right.insert(t):this.right=y([t]);else{var r=n.ge(this.leftPoints,t,v),a=n.ge(this.rightPoints,t,m);this.leftPoints.splice(r,0,t),this.rightPoints.splice(a,0,t)}},s.remove=function(t){var e=this.count-this.leftPoints;if(t[1]<this.mid)return this.left?4*(this.right?this.right.count:0)>3*(e-1)?h(this,t):2===(c=this.left.remove(t))?(this.left=null,this.count-=1,i):(c===i&&(this.count-=1),c):a;if(t[0]>this.mid)return this.right?4*(this.left?this.left.count:0)>3*(e-1)?h(this,t):2===(c=this.right.remove(t))?(this.right=null,this.count-=1,i):(c===i&&(this.count-=1),c):a;if(1===this.count)return this.leftPoints[0]===t?2:a;if(1===this.leftPoints.length&&this.leftPoints[0]===t){if(this.left&&this.right){for(var r=this,o=this.left;o.right;)r=o,o=o.right;if(r===this)o.right=this.right;else{var s=this.left,c=this.right;r.count-=o.count,r.right=o.left,o.left=s,o.right=c}l(this,o),this.count=(this.left?this.left.count:0)+(this.right?this.right.count:0)+this.leftPoints.length}else this.left?l(this,this.left):l(this,this.right);return i}for(s=n.ge(this.leftPoints,t,v);s<this.leftPoints.length&&this.leftPoints[s][0]===t[0];++s)if(this.leftPoints[s]===t){this.count-=1,this.leftPoints.splice(s,1);for(c=n.ge(this.rightPoints,t,m);c<this.rightPoints.length&&this.rightPoints[c][1]===t[1];++c)if(this.rightPoints[c]===t)return this.rightPoints.splice(c,1),i}return a},s.queryPoint=function(t,e){if(t<this.mid){if(this.left)if(r=this.left.queryPoint(t,e))return r;return f(this.leftPoints,t,e)}if(t>this.mid){var r;if(this.right)if(r=this.right.queryPoint(t,e))return r;return p(this.rightPoints,t,e)}return d(this.leftPoints,e)},s.queryInterval=function(t,e,r){var n;if(t<this.mid&&this.left&&(n=this.left.queryInterval(t,e,r)))return n;if(e>this.mid&&this.right&&(n=this.right.queryInterval(t,e,r)))return n;return e<this.mid?f(this.leftPoints,e,r):t>this.mid?p(this.rightPoints,t,r):d(this.leftPoints,r)};var b=x.prototype;b.insert=function(t){this.root?this.root.insert(t):this.root=new o(t[0],null,null,[t],[t])},b.remove=function(t){if(this.root){var e=this.root.remove(t);return 2===e&&(this.root=null),e!==a}return!1},b.queryPoint=function(t,e){if(this.root)return this.root.queryPoint(t,e)},b.queryInterval=function(t,e,r){if(t<=e&&this.root)return this.root.queryInterval(t,e,r)},Object.defineProperty(b,\"count\",{get:function(){return this.root?this.root.count:0}}),Object.defineProperty(b,\"intervals\",{get:function(){return this.root?this.root.intervals([]):[]}})},{\"binary-search-bounds\":92}],416:[function(t,e,r){\"use strict\";e.exports=function(t,e){e=e||new Array(t.length);for(var r=0;r<t.length;++r)e[t[r]]=r;return e}},{}],417:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=new Array(t),r=0;r<t;++r)e[r]=r;return e}},{}],418:[function(t,e,r){e.exports=!0},{}],419:[function(t,e,r){function n(t){return!!t.constructor&&\"function\"==typeof t.constructor.isBuffer&&t.constructor.isBuffer(t)}e.exports=function(t){return null!=t&&(n(t)||function(t){return\"function\"==typeof t.readFloatLE&&\"function\"==typeof t.slice&&n(t.slice(0,0))}(t)||!!t._isBuffer)}},{}],420:[function(t,e,r){\"use strict\";e.exports=\"undefined\"!=typeof navigator&&(/MSIE/.test(navigator.userAgent)||/Trident\\//.test(navigator.appVersion))},{}],421:[function(t,e,r){\"use strict\";e.exports=i,e.exports.isMobile=i,e.exports.default=i;var n=/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series[46]0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i,a=/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series[46]0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino|android|ipad|playbook|silk/i;function i(t){t||(t={});var e=t.ua;return e||\"undefined\"==typeof navigator||(e=navigator.userAgent),e&&e.headers&&\"string\"==typeof e.headers[\"user-agent\"]&&(e=e.headers[\"user-agent\"]),\"string\"==typeof e&&(t.tablet?a.test(e):n.test(e))}},{}],422:[function(t,e,r){\"use strict\";e.exports=function(t){var e=typeof t;return null!==t&&(\"object\"===e||\"function\"===e)}},{}],423:[function(t,e,r){\"use strict\";var n=Object.prototype.toString;e.exports=function(t){var e;return\"[object Object]\"===n.call(t)&&(null===(e=Object.getPrototypeOf(t))||e===Object.getPrototypeOf({}))}},{}],424:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e,r=t.length,n=0;n<r;n++)if(((e=t.charCodeAt(n))<9||e>13)&&32!==e&&133!==e&&160!==e&&5760!==e&&6158!==e&&(e<8192||e>8205)&&8232!==e&&8233!==e&&8239!==e&&8287!==e&&8288!==e&&12288!==e&&65279!==e)return!1;return!0}},{}],425:[function(t,e,r){\"use strict\";e.exports=function(t){return\"string\"==typeof t&&(t=t.trim(),!!(/^[mzlhvcsqta]\\s*[-+.0-9][^mlhvzcsqta]+/i.test(t)&&/[\\dz]$/i.test(t)&&t.length>4))}},{}],426:[function(t,e,r){e.exports=function(t,e,r){return t*(1-r)+e*r}},{}],427:[function(t,e,r){var n,a;n=this,a=function(){\"use strict\";var t,e,r;function n(n,a){if(t)if(e){var i=\"var sharedChunk = {}; (\"+t+\")(sharedChunk); (\"+e+\")(sharedChunk);\",o={};t(o),(r=a(o)).workerUrl=window.URL.createObjectURL(new Blob([i],{type:\"text/javascript\"}))}else e=a;else t=a}return n(0,function(t){function e(t,e){return t(e={exports:{}},e.exports),e.exports}var r=n;function n(t,e,r,n){this.cx=3*t,this.bx=3*(r-t)-this.cx,this.ax=1-this.cx-this.bx,this.cy=3*e,this.by=3*(n-e)-this.cy,this.ay=1-this.cy-this.by,this.p1x=t,this.p1y=n,this.p2x=r,this.p2y=n}n.prototype.sampleCurveX=function(t){return((this.ax*t+this.bx)*t+this.cx)*t},n.prototype.sampleCurveY=function(t){return((this.ay*t+this.by)*t+this.cy)*t},n.prototype.sampleCurveDerivativeX=function(t){return(3*this.ax*t+2*this.bx)*t+this.cx},n.prototype.solveCurveX=function(t,e){var r,n,a,i,o;for(void 0===e&&(e=1e-6),a=t,o=0;o<8;o++){if(i=this.sampleCurveX(a)-t,Math.abs(i)<e)return a;var s=this.sampleCurveDerivativeX(a);if(Math.abs(s)<1e-6)break;a-=i/s}if((a=t)<(r=0))return r;if(a>(n=1))return n;for(;r<n;){if(i=this.sampleCurveX(a),Math.abs(i-t)<e)return a;t>i?r=a:n=a,a=.5*(n-r)+r}return a},n.prototype.solve=function(t,e){return this.sampleCurveY(this.solveCurveX(t,e))};var a=i;function i(t,e){this.x=t,this.y=e}function o(t,e){if(Array.isArray(t)){if(!Array.isArray(e)||t.length!==e.length)return!1;for(var r=0;r<t.length;r++)if(!o(t[r],e[r]))return!1;return!0}if(\"object\"==typeof t&&null!==t&&null!==e){if(\"object\"!=typeof e)return!1;if(Object.keys(t).length!==Object.keys(e).length)return!1;for(var n in t)if(!o(t[n],e[n]))return!1;return!0}return t===e}function s(t,e,n,a){var i=new r(t,e,n,a);return function(t){return i.solve(t)}}i.prototype={clone:function(){return new i(this.x,this.y)},add:function(t){return this.clone()._add(t)},sub:function(t){return this.clone()._sub(t)},multByPoint:function(t){return this.clone()._multByPoint(t)},divByPoint:function(t){return this.clone()._divByPoint(t)},mult:function(t){return this.clone()._mult(t)},div:function(t){return this.clone()._div(t)},rotate:function(t){return this.clone()._rotate(t)},rotateAround:function(t,e){return this.clone()._rotateAround(t,e)},matMult:function(t){return this.clone()._matMult(t)},unit:function(){return this.clone()._unit()},perp:function(){return this.clone()._perp()},round:function(){return this.clone()._round()},mag:function(){return Math.sqrt(this.x*this.x+this.y*this.y)},equals:function(t){return this.x===t.x&&this.y===t.y},dist:function(t){return Math.sqrt(this.distSqr(t))},distSqr:function(t){var e=t.x-this.x,r=t.y-this.y;return e*e+r*r},angle:function(){return Math.atan2(this.y,this.x)},angleTo:function(t){return Math.atan2(this.y-t.y,this.x-t.x)},angleWith:function(t){return this.angleWithSep(t.x,t.y)},angleWithSep:function(t,e){return Math.atan2(this.x*e-this.y*t,this.x*t+this.y*e)},_matMult:function(t){var e=t[0]*this.x+t[1]*this.y,r=t[2]*this.x+t[3]*this.y;return this.x=e,this.y=r,this},_add:function(t){return this.x+=t.x,this.y+=t.y,this},_sub:function(t){return this.x-=t.x,this.y-=t.y,this},_mult:function(t){return this.x*=t,this.y*=t,this},_div:function(t){return this.x/=t,this.y/=t,this},_multByPoint:function(t){return this.x*=t.x,this.y*=t.y,this},_divByPoint:function(t){return this.x/=t.x,this.y/=t.y,this},_unit:function(){return this._div(this.mag()),this},_perp:function(){var t=this.y;return this.y=this.x,this.x=-t,this},_rotate:function(t){var e=Math.cos(t),r=Math.sin(t),n=e*this.x-r*this.y,a=r*this.x+e*this.y;return this.x=n,this.y=a,this},_rotateAround:function(t,e){var r=Math.cos(t),n=Math.sin(t),a=e.x+r*(this.x-e.x)-n*(this.y-e.y),i=e.y+n*(this.x-e.x)+r*(this.y-e.y);return this.x=a,this.y=i,this},_round:function(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this}},i.convert=function(t){return t instanceof i?t:Array.isArray(t)?new i(t[0],t[1]):t};var l=s(.25,.1,.25,1);function c(t,e,r){return Math.min(r,Math.max(e,t))}function u(t,e,r){var n=r-e,a=((t-e)%n+n)%n+e;return a===e?r:a}function h(t){for(var e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];for(var n=0,a=e;n<a.length;n+=1){var i=a[n];for(var o in i)t[o]=i[o]}return t}var f=1;function p(){return f++}function d(){return function t(e){return e?(e^16*Math.random()>>e/4).toString(16):([1e7]+-[1e3]+-4e3+-8e3+-1e11).replace(/[018]/g,t)}()}function g(t){return!!t&&/^[0-9a-f]{8}-[0-9a-f]{4}-[4][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i.test(t)}function v(t,e){t.forEach(function(t){e[t]&&(e[t]=e[t].bind(e))})}function m(t,e){return-1!==t.indexOf(e,t.length-e.length)}function y(t,e,r){var n={};for(var a in t)n[a]=e.call(r||this,t[a],a,t);return n}function x(t,e,r){var n={};for(var a in t)e.call(r||this,t[a],a,t)&&(n[a]=t[a]);return n}function b(t){return Array.isArray(t)?t.map(b):\"object\"==typeof t&&t?y(t,b):t}var _={};function w(t){_[t]||(\"undefined\"!=typeof console&&console.warn(t),_[t]=!0)}function k(t,e,r){return(r.y-t.y)*(e.x-t.x)>(e.y-t.y)*(r.x-t.x)}function T(t){for(var e=0,r=0,n=t.length,a=n-1,i=void 0,o=void 0;r<n;a=r++)i=t[r],e+=((o=t[a]).x-i.x)*(i.y+o.y);return e}function A(t){var e={};if(t.replace(/(?:^|(?:\\s*\\,\\s*))([^\\x00-\\x20\\(\\)<>@\\,;\\:\\\\\"\\/\\[\\]\\?\\=\\{\\}\\x7F]+)(?:\\=(?:([^\\x00-\\x20\\(\\)<>@\\,;\\:\\\\\"\\/\\[\\]\\?\\=\\{\\}\\x7F]+)|(?:\\\"((?:[^\"\\\\]|\\\\.)*)\\\")))?/g,function(t,r,n,a){var i=n||a;return e[r]=!i||i.toLowerCase(),\"\"}),e[\"max-age\"]){var r=parseInt(e[\"max-age\"],10);isNaN(r)?delete e[\"max-age\"]:e[\"max-age\"]=r}return e}function M(t){try{var e=self[t];return e.setItem(\"_mapbox_test_\",1),e.removeItem(\"_mapbox_test_\"),!0}catch(t){return!1}}var S,E,C,L,P=self.performance&&self.performance.now?self.performance.now.bind(self.performance):Date.now.bind(Date),O=self.requestAnimationFrame||self.mozRequestAnimationFrame||self.webkitRequestAnimationFrame||self.msRequestAnimationFrame,I=self.cancelAnimationFrame||self.mozCancelAnimationFrame||self.webkitCancelAnimationFrame||self.msCancelAnimationFrame,z={now:P,frame:function(t){var e=O(t);return{cancel:function(){return I(e)}}},getImageData:function(t){var e=self.document.createElement(\"canvas\"),r=e.getContext(\"2d\");if(!r)throw new Error(\"failed to create canvas 2d context\");return e.width=t.width,e.height=t.height,r.drawImage(t,0,0,t.width,t.height),r.getImageData(0,0,t.width,t.height)},resolveURL:function(t){return S||(S=self.document.createElement(\"a\")),S.href=t,S.href},hardwareConcurrency:self.navigator.hardwareConcurrency||4,get devicePixelRatio(){return self.devicePixelRatio},get prefersReducedMotion(){return!!self.matchMedia&&(null==E&&(E=self.matchMedia(\"(prefers-reduced-motion: reduce)\")),E.matches)}},D={API_URL:\"https://api.mapbox.com\",get EVENTS_URL(){return this.API_URL?0===this.API_URL.indexOf(\"https://api.mapbox.cn\")?\"https://events.mapbox.cn/events/v2\":0===this.API_URL.indexOf(\"https://api.mapbox.com\")?\"https://events.mapbox.com/events/v2\":null:null},FEEDBACK_URL:\"https://apps.mapbox.com/feedback\",REQUIRE_ACCESS_TOKEN:!0,ACCESS_TOKEN:null,MAX_PARALLEL_IMAGE_REQUESTS:16},R={supported:!1,testSupport:function(t){!F&&L&&(B?N(t):C=t)}},F=!1,B=!1;function N(t){var e=t.createTexture();t.bindTexture(t.TEXTURE_2D,e);try{if(t.texImage2D(t.TEXTURE_2D,0,t.RGBA,t.RGBA,t.UNSIGNED_BYTE,L),t.isContextLost())return;R.supported=!0}catch(t){}t.deleteTexture(e),F=!0}self.document&&((L=self.document.createElement(\"img\")).onload=function(){C&&N(C),C=null,B=!0},L.onerror=function(){F=!0,C=null},L.src=\"data:image/webp;base64,UklGRh4AAABXRUJQVlA4TBEAAAAvAQAAAAfQ//73v/+BiOh/AAA=\");var j=\"01\",V=function(t,e){this._transformRequestFn=t,this._customAccessToken=e,this._createSkuToken()};function U(t){return 0===t.indexOf(\"mapbox:\")}V.prototype._createSkuToken=function(){var t=function(){for(var t=\"\",e=0;e<10;e++)t+=\"0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ\"[Math.floor(62*Math.random())];return{token:[\"1\",j,t].join(\"\"),tokenExpiresAt:Date.now()+432e5}}();this._skuToken=t.token,this._skuTokenExpiresAt=t.tokenExpiresAt},V.prototype._isSkuTokenExpired=function(){return Date.now()>this._skuTokenExpiresAt},V.prototype.transformRequest=function(t,e){return this._transformRequestFn&&this._transformRequestFn(t,e)||{url:t}},V.prototype.normalizeStyleURL=function(t,e){if(!U(t))return t;var r=Y(t);return r.path=\"/styles/v1\"+r.path,this._makeAPIURL(r,this._customAccessToken||e)},V.prototype.normalizeGlyphsURL=function(t,e){if(!U(t))return t;var r=Y(t);return r.path=\"/fonts/v1\"+r.path,this._makeAPIURL(r,this._customAccessToken||e)},V.prototype.normalizeSourceURL=function(t,e){if(!U(t))return t;var r=Y(t);return r.path=\"/v4/\"+r.authority+\".json\",r.params.push(\"secure\"),this._makeAPIURL(r,this._customAccessToken||e)},V.prototype.normalizeSpriteURL=function(t,e,r,n){var a=Y(t);return U(t)?(a.path=\"/styles/v1\"+a.path+\"/sprite\"+e+r,this._makeAPIURL(a,this._customAccessToken||n)):(a.path+=\"\"+e+r,W(a))},V.prototype.normalizeTileURL=function(t,e,r){if(this._isSkuTokenExpired()&&this._createSkuToken(),!e||!U(e))return t;var n=Y(t),a=z.devicePixelRatio>=2||512===r?\"@2x\":\"\",i=R.supported?\".webp\":\"$1\";return n.path=n.path.replace(/(\\.(png|jpg)\\d*)(?=$)/,\"\"+a+i),n.path=n.path.replace(/^.+\\/v4\\//,\"/\"),n.path=\"/v4\"+n.path,D.REQUIRE_ACCESS_TOKEN&&(D.ACCESS_TOKEN||this._customAccessToken)&&this._skuToken&&n.params.push(\"sku=\"+this._skuToken),this._makeAPIURL(n,this._customAccessToken)},V.prototype.canonicalizeTileURL=function(t){var e=Y(t);if(!e.path.match(/(^\\/v4\\/)/)||!e.path.match(/\\.[\\w]+$/))return t;var r=\"mapbox://tiles/\";r+=e.path.replace(\"/v4/\",\"\");var n=e.params.filter(function(t){return!t.match(/^access_token=/)});return n.length&&(r+=\"?\"+n.join(\"&\")),r},V.prototype.canonicalizeTileset=function(t,e){if(!U(e))return t.tiles||[];for(var r=[],n=0,a=t.tiles;n<a.length;n+=1){var i=a[n],o=this.canonicalizeTileURL(i);r.push(o)}return r},V.prototype._makeAPIURL=function(t,e){var r=\"See https://www.mapbox.com/api-documentation/#access-tokens-and-token-scopes\",n=Y(D.API_URL);if(t.protocol=n.protocol,t.authority=n.authority,\"/\"!==n.path&&(t.path=\"\"+n.path+t.path),!D.REQUIRE_ACCESS_TOKEN)return W(t);if(!(e=e||D.ACCESS_TOKEN))throw new Error(\"An API access token is required to use Mapbox GL. \"+r);if(\"s\"===e[0])throw new Error(\"Use a public access token (pk.*) with Mapbox GL, not a secret access token (sk.*). \"+r);return t.params=t.params.filter(function(t){return-1===t.indexOf(\"access_token\")}),t.params.push(\"access_token=\"+e),W(t)};var q=/^((https?:)?\\/\\/)?([^\\/]+\\.)?mapbox\\.c(n|om)(\\/|\\?|$)/i;function H(t){return q.test(t)}var G=/^(\\w+):\\/\\/([^\\/?]*)(\\/[^?]+)?\\??(.+)?/;function Y(t){var e=t.match(G);if(!e)throw new Error(\"Unable to parse URL object\");return{protocol:e[1],authority:e[2],path:e[3]||\"/\",params:e[4]?e[4].split(\"&\"):[]}}function W(t){var e=t.params.length?\"?\"+t.params.join(\"&\"):\"\";return t.protocol+\"://\"+t.authority+t.path+e}function X(t){if(!t)return null;var e,r=t.split(\".\");if(!r||3!==r.length)return null;try{return JSON.parse((e=r[1],decodeURIComponent(self.atob(e).split(\"\").map(function(t){return\"%\"+(\"00\"+t.charCodeAt(0).toString(16)).slice(-2)}).join(\"\"))))}catch(t){return null}}var Z=function(t){this.type=t,this.anonId=null,this.eventData={},this.queue=[],this.pendingRequest=null};Z.prototype.getStorageKey=function(t){var e,r=X(D.ACCESS_TOKEN),n=\"\";return r&&r.u?(e=r.u,n=self.btoa(encodeURIComponent(e).replace(/%([0-9A-F]{2})/g,function(t,e){return String.fromCharCode(Number(\"0x\"+e))}))):n=D.ACCESS_TOKEN||\"\",t?\"mapbox.eventData.\"+t+\":\"+n:\"mapbox.eventData:\"+n},Z.prototype.fetchEventData=function(){var t=M(\"localStorage\"),e=this.getStorageKey(),r=this.getStorageKey(\"uuid\");if(t)try{var n=self.localStorage.getItem(e);n&&(this.eventData=JSON.parse(n));var a=self.localStorage.getItem(r);a&&(this.anonId=a)}catch(t){w(\"Unable to read from LocalStorage\")}},Z.prototype.saveEventData=function(){var t=M(\"localStorage\"),e=this.getStorageKey(),r=this.getStorageKey(\"uuid\");if(t)try{self.localStorage.setItem(r,this.anonId),Object.keys(this.eventData).length>=1&&self.localStorage.setItem(e,JSON.stringify(this.eventData))}catch(t){w(\"Unable to write to LocalStorage\")}},Z.prototype.processRequests=function(t){},Z.prototype.postEvent=function(t,e,r,n){var a=this;if(D.EVENTS_URL){var i=Y(D.EVENTS_URL);i.params.push(\"access_token=\"+(n||D.ACCESS_TOKEN||\"\"));var o={event:this.type,created:new Date(t).toISOString(),sdkIdentifier:\"mapbox-gl-js\",sdkVersion:\"1.3.2\",skuId:j,userId:this.anonId},s=e?h(o,e):o,l={url:W(i),headers:{\"Content-Type\":\"text/plain\"},body:JSON.stringify([s])};this.pendingRequest=mt(l,function(t){a.pendingRequest=null,r(t),a.saveEventData(),a.processRequests(n)})}},Z.prototype.queueRequest=function(t,e){this.queue.push(t),this.processRequests(e)};var J,K=function(t){function e(){t.call(this,\"map.load\"),this.success={},this.skuToken=\"\"}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.postMapLoadEvent=function(t,e,r,n){this.skuToken=r,(D.EVENTS_URL&&n||D.ACCESS_TOKEN&&Array.isArray(t)&&t.some(function(t){return U(t)||H(t)}))&&this.queueRequest({id:e,timestamp:Date.now()},n)},e.prototype.processRequests=function(t){var e=this;if(!this.pendingRequest&&0!==this.queue.length){var r=this.queue.shift(),n=r.id,a=r.timestamp;n&&this.success[n]||(this.anonId||this.fetchEventData(),g(this.anonId)||(this.anonId=d()),this.postEvent(a,{skuToken:this.skuToken},function(t){t||n&&(e.success[n]=!0)},t))}},e}(Z),Q=new(function(t){function e(e){t.call(this,\"appUserTurnstile\"),this._customAccessToken=e}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.postTurnstileEvent=function(t,e){D.EVENTS_URL&&D.ACCESS_TOKEN&&Array.isArray(t)&&t.some(function(t){return U(t)||H(t)})&&this.queueRequest(Date.now(),e)},e.prototype.processRequests=function(t){var e=this;if(!this.pendingRequest&&0!==this.queue.length){this.anonId&&this.eventData.lastSuccess&&this.eventData.tokenU||this.fetchEventData();var r=X(D.ACCESS_TOKEN),n=r?r.u:D.ACCESS_TOKEN,a=n!==this.eventData.tokenU;g(this.anonId)||(this.anonId=d(),a=!0);var i=this.queue.shift();if(this.eventData.lastSuccess){var o=new Date(this.eventData.lastSuccess),s=new Date(i),l=(i-this.eventData.lastSuccess)/864e5;a=a||l>=1||l<-1||o.getDate()!==s.getDate()}else a=!0;if(!a)return this.processRequests();this.postEvent(i,{\"enabled.telemetry\":!1},function(t){t||(e.eventData.lastSuccess=i,e.eventData.tokenU=n)},t)}},e}(Z)),$=Q.postTurnstileEvent.bind(Q),tt=new K,et=tt.postMapLoadEvent.bind(tt),rt=\"mapbox-tiles\",nt=500,at=50,it=42e4;function ot(t){var e=t.indexOf(\"?\");return e<0?t:t.slice(0,e)}var st=1/0,lt={Unknown:\"Unknown\",Style:\"Style\",Source:\"Source\",Tile:\"Tile\",Glyphs:\"Glyphs\",SpriteImage:\"SpriteImage\",SpriteJSON:\"SpriteJSON\",Image:\"Image\"};\"function\"==typeof Object.freeze&&Object.freeze(lt);var ct=function(t){function e(e,r,n){401===r&&H(n)&&(e+=\": you may have provided an invalid Mapbox access token. See https://www.mapbox.com/api-documentation/#access-tokens-and-token-scopes\"),t.call(this,e),this.status=r,this.url=n,this.name=this.constructor.name,this.message=e}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.toString=function(){return this.name+\": \"+this.message+\" (\"+this.status+\"): \"+this.url},e}(Error);function ut(){return\"undefined\"!=typeof WorkerGlobalScope&&\"undefined\"!=typeof self&&self instanceof WorkerGlobalScope}var ht=ut()?function(){return self.worker&&self.worker.referrer}:function(){return(\"blob:\"===self.location.protocol?self.parent:self).location.href};function ft(t,e){var r,n=new self.AbortController,a=new self.Request(t.url,{method:t.method||\"GET\",body:t.body,credentials:t.credentials,headers:t.headers,referrer:ht(),signal:n.signal}),i=!1,o=!1,s=(r=a.url).indexOf(\"sku=\")>0&&H(r);\"json\"===t.type&&a.headers.set(\"Accept\",\"application/json\");var l=function(r,n,i){if(!o){if(r&&\"SecurityError\"!==r.message&&w(r),n&&i)return c(n);var l=Date.now();self.fetch(a).then(function(r){if(r.ok){var n=s?r.clone():null;return c(r,n,l)}return e(new ct(r.statusText,r.status,t.url))}).catch(function(t){20!==t.code&&e(new Error(t.message))})}},c=function(r,n,s){(\"arrayBuffer\"===t.type?r.arrayBuffer():\"json\"===t.type?r.json():r.text()).then(function(t){o||(n&&s&&function(t,e,r){if(self.caches){var n={status:e.status,statusText:e.statusText,headers:new self.Headers};e.headers.forEach(function(t,e){return n.headers.set(e,t)});var a=A(e.headers.get(\"Cache-Control\")||\"\");a[\"no-store\"]||(a[\"max-age\"]&&n.headers.set(\"Expires\",new Date(r+1e3*a[\"max-age\"]).toUTCString()),new Date(n.headers.get(\"Expires\")).getTime()-r<it||function(t,e){if(void 0===J)try{new Response(new ReadableStream),J=!0}catch(t){J=!1}J?e(t.body):t.blob().then(e)}(e,function(e){var r=new self.Response(e,n);self.caches.open(rt).then(function(e){return e.put(ot(t.url),r)}).catch(function(t){return w(t.message)})}))}}(a,n,s),i=!0,e(null,t,r.headers.get(\"Cache-Control\"),r.headers.get(\"Expires\")))}).catch(function(t){return e(new Error(t.message))})};return s?function(t,e){if(!self.caches)return e(null);var r=ot(t.url);self.caches.open(rt).then(function(t){t.match(r).then(function(n){var a=function(t){if(!t)return!1;var e=new Date(t.headers.get(\"Expires\")),r=A(t.headers.get(\"Cache-Control\")||\"\");return e>Date.now()&&!r[\"no-cache\"]}(n);t.delete(r),a&&t.put(r,n.clone()),e(null,n,a)}).catch(e)}).catch(e)}(a,l):l(null,null),{cancel:function(){o=!0,i||n.abort()}}}var pt,dt,gt=function(t,e){if(r=t.url,!(/^file:/.test(r)||/^file:/.test(ht())&&!/^\\w+:/.test(r))){if(self.fetch&&self.Request&&self.AbortController&&self.Request.prototype.hasOwnProperty(\"signal\"))return ft(t,e);if(ut()&&self.worker&&self.worker.actor)return self.worker.actor.send(\"getResource\",t,e)}var r;return function(t,e){var r=new self.XMLHttpRequest;for(var n in r.open(t.method||\"GET\",t.url,!0),\"arrayBuffer\"===t.type&&(r.responseType=\"arraybuffer\"),t.headers)r.setRequestHeader(n,t.headers[n]);return\"json\"===t.type&&(r.responseType=\"text\",r.setRequestHeader(\"Accept\",\"application/json\")),r.withCredentials=\"include\"===t.credentials,r.onerror=function(){e(new Error(r.statusText))},r.onload=function(){if((r.status>=200&&r.status<300||0===r.status)&&null!==r.response){var n=r.response;if(\"json\"===t.type)try{n=JSON.parse(r.response)}catch(t){return e(t)}e(null,n,r.getResponseHeader(\"Cache-Control\"),r.getResponseHeader(\"Expires\"))}else e(new ct(r.statusText,r.status,t.url))},r.send(t.body),{cancel:function(){return r.abort()}}}(t,e)},vt=function(t,e){return gt(h(t,{type:\"arrayBuffer\"}),e)},mt=function(t,e){return gt(h(t,{method:\"POST\"}),e)};pt=[],dt=0;var yt=function(t,e){if(dt>=D.MAX_PARALLEL_IMAGE_REQUESTS){var r={requestParameters:t,callback:e,cancelled:!1,cancel:function(){this.cancelled=!0}};return pt.push(r),r}dt++;var n=!1,a=function(){if(!n)for(n=!0,dt--;pt.length&&dt<D.MAX_PARALLEL_IMAGE_REQUESTS;){var t=pt.shift(),e=t.requestParameters,r=t.callback;t.cancelled||(t.cancel=yt(e,r).cancel)}},i=vt(t,function(t,r,n,i){if(a(),t)e(t);else if(r){var o=new self.Image,s=self.URL||self.webkitURL;o.onload=function(){e(null,o),s.revokeObjectURL(o.src)},o.onerror=function(){return e(new Error(\"Could not load image. Please make sure to use a supported image type such as PNG or JPEG. Note that SVGs are not supported.\"))};var l=new self.Blob([new Uint8Array(r)],{type:\"image/png\"});o.cacheControl=n,o.expires=i,o.src=r.byteLength?s.createObjectURL(l):\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAC0lEQVQYV2NgAAIAAAUAAarVyFEAAAAASUVORK5CYII=\"}});return{cancel:function(){i.cancel(),a()}}};function xt(t,e,r){r[t]&&-1!==r[t].indexOf(e)||(r[t]=r[t]||[],r[t].push(e))}function bt(t,e,r){if(r&&r[t]){var n=r[t].indexOf(e);-1!==n&&r[t].splice(n,1)}}var _t=function(t,e){void 0===e&&(e={}),h(this,e),this.type=t},wt=function(t){function e(e,r){void 0===r&&(r={}),t.call(this,\"error\",h({error:e},r))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}(_t),kt=function(){};kt.prototype.on=function(t,e){return this._listeners=this._listeners||{},xt(t,e,this._listeners),this},kt.prototype.off=function(t,e){return bt(t,e,this._listeners),bt(t,e,this._oneTimeListeners),this},kt.prototype.once=function(t,e){return this._oneTimeListeners=this._oneTimeListeners||{},xt(t,e,this._oneTimeListeners),this},kt.prototype.fire=function(t,e){\"string\"==typeof t&&(t=new _t(t,e||{}));var r=t.type;if(this.listens(r)){t.target=this;for(var n=0,a=this._listeners&&this._listeners[r]?this._listeners[r].slice():[];n<a.length;n+=1)a[n].call(this,t);for(var i=0,o=this._oneTimeListeners&&this._oneTimeListeners[r]?this._oneTimeListeners[r].slice():[];i<o.length;i+=1){var s=o[i];bt(r,s,this._oneTimeListeners),s.call(this,t)}var l=this._eventedParent;l&&(h(t,\"function\"==typeof this._eventedParentData?this._eventedParentData():this._eventedParentData),l.fire(t))}else t instanceof wt&&console.error(t.error);return this},kt.prototype.listens=function(t){return this._listeners&&this._listeners[t]&&this._listeners[t].length>0||this._oneTimeListeners&&this._oneTimeListeners[t]&&this._oneTimeListeners[t].length>0||this._eventedParent&&this._eventedParent.listens(t)},kt.prototype.setEventedParent=function(t,e){return this._eventedParent=t,this._eventedParentData=e,this};var Tt={$version:8,$root:{version:{required:!0,type:\"enum\",values:[8]},name:{type:\"string\"},metadata:{type:\"*\"},center:{type:\"array\",value:\"number\"},zoom:{type:\"number\"},bearing:{type:\"number\",default:0,period:360,units:\"degrees\"},pitch:{type:\"number\",default:0,units:\"degrees\"},light:{type:\"light\"},sources:{required:!0,type:\"sources\"},sprite:{type:\"string\"},glyphs:{type:\"string\"},transition:{type:\"transition\"},layers:{required:!0,type:\"array\",value:\"layer\"}},sources:{\"*\":{type:\"source\"}},source:[\"source_vector\",\"source_raster\",\"source_raster_dem\",\"source_geojson\",\"source_video\",\"source_image\"],source_vector:{type:{required:!0,type:\"enum\",values:{vector:{}}},url:{type:\"string\"},tiles:{type:\"array\",value:\"string\"},bounds:{type:\"array\",value:\"number\",length:4,default:[-180,-85.051129,180,85.051129]},scheme:{type:\"enum\",values:{xyz:{},tms:{}},default:\"xyz\"},minzoom:{type:\"number\",default:0},maxzoom:{type:\"number\",default:22},attribution:{type:\"string\"},\"*\":{type:\"*\"}},source_raster:{type:{required:!0,type:\"enum\",values:{raster:{}}},url:{type:\"string\"},tiles:{type:\"array\",value:\"string\"},bounds:{type:\"array\",value:\"number\",length:4,default:[-180,-85.051129,180,85.051129]},minzoom:{type:\"number\",default:0},maxzoom:{type:\"number\",default:22},tileSize:{type:\"number\",default:512,units:\"pixels\"},scheme:{type:\"enum\",values:{xyz:{},tms:{}},default:\"xyz\"},attribution:{type:\"string\"},\"*\":{type:\"*\"}},source_raster_dem:{type:{required:!0,type:\"enum\",values:{\"raster-dem\":{}}},url:{type:\"string\"},tiles:{type:\"array\",value:\"string\"},bounds:{type:\"array\",value:\"number\",length:4,default:[-180,-85.051129,180,85.051129]},minzoom:{type:\"number\",default:0},maxzoom:{type:\"number\",default:22},tileSize:{type:\"number\",default:512,units:\"pixels\"},attribution:{type:\"string\"},encoding:{type:\"enum\",values:{terrarium:{},mapbox:{}},default:\"mapbox\"},\"*\":{type:\"*\"}},source_geojson:{type:{required:!0,type:\"enum\",values:{geojson:{}}},data:{type:\"*\"},maxzoom:{type:\"number\",default:18},attribution:{type:\"string\"},buffer:{type:\"number\",default:128,maximum:512,minimum:0},tolerance:{type:\"number\",default:.375},cluster:{type:\"boolean\",default:!1},clusterRadius:{type:\"number\",default:50,minimum:0},clusterMaxZoom:{type:\"number\"},clusterProperties:{type:\"*\"},lineMetrics:{type:\"boolean\",default:!1},generateId:{type:\"boolean\",default:!1}},source_video:{type:{required:!0,type:\"enum\",values:{video:{}}},urls:{required:!0,type:\"array\",value:\"string\"},coordinates:{required:!0,type:\"array\",length:4,value:{type:\"array\",length:2,value:\"number\"}}},source_image:{type:{required:!0,type:\"enum\",values:{image:{}}},url:{required:!0,type:\"string\"},coordinates:{required:!0,type:\"array\",length:4,value:{type:\"array\",length:2,value:\"number\"}}},layer:{id:{type:\"string\",required:!0},type:{type:\"enum\",values:{fill:{},line:{},symbol:{},circle:{},heatmap:{},\"fill-extrusion\":{},raster:{},hillshade:{},background:{}},required:!0},metadata:{type:\"*\"},source:{type:\"string\"},\"source-layer\":{type:\"string\"},minzoom:{type:\"number\",minimum:0,maximum:24},maxzoom:{type:\"number\",minimum:0,maximum:24},filter:{type:\"filter\"},layout:{type:\"layout\"},paint:{type:\"paint\"}},layout:[\"layout_fill\",\"layout_line\",\"layout_circle\",\"layout_heatmap\",\"layout_fill-extrusion\",\"layout_symbol\",\"layout_raster\",\"layout_hillshade\",\"layout_background\"],layout_background:{visibility:{type:\"enum\",values:{visible:{},none:{}},default:\"visible\",\"property-type\":\"constant\"}},layout_fill:{\"fill-sort-key\":{type:\"number\",expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},visibility:{type:\"enum\",values:{visible:{},none:{}},default:\"visible\",\"property-type\":\"constant\"}},layout_circle:{\"circle-sort-key\":{type:\"number\",expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},visibility:{type:\"enum\",values:{visible:{},none:{}},default:\"visible\",\"property-type\":\"constant\"}},layout_heatmap:{visibility:{type:\"enum\",values:{visible:{},none:{}},default:\"visible\",\"property-type\":\"constant\"}},\"layout_fill-extrusion\":{visibility:{type:\"enum\",values:{visible:{},none:{}},default:\"visible\",\"property-type\":\"constant\"}},layout_line:{\"line-cap\":{type:\"enum\",values:{butt:{},round:{},square:{}},default:\"butt\",expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"line-join\":{type:\"enum\",values:{bevel:{},round:{},miter:{}},default:\"miter\",expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"line-miter-limit\":{type:\"number\",default:2,requires:[{\"line-join\":\"miter\"}],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"line-round-limit\":{type:\"number\",default:1.05,requires:[{\"line-join\":\"round\"}],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"line-sort-key\":{type:\"number\",expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},visibility:{type:\"enum\",values:{visible:{},none:{}},default:\"visible\",\"property-type\":\"constant\"}},layout_symbol:{\"symbol-placement\":{type:\"enum\",values:{point:{},line:{},\"line-center\":{}},default:\"point\",expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"symbol-spacing\":{type:\"number\",default:250,minimum:1,units:\"pixels\",requires:[{\"symbol-placement\":\"line\"}],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"symbol-avoid-edges\":{type:\"boolean\",default:!1,expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"symbol-sort-key\":{type:\"number\",expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"symbol-z-order\":{type:\"enum\",values:{auto:{},\"viewport-y\":{},source:{}},default:\"auto\",expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-allow-overlap\":{type:\"boolean\",default:!1,requires:[\"icon-image\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-ignore-placement\":{type:\"boolean\",default:!1,requires:[\"icon-image\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-optional\":{type:\"boolean\",default:!1,requires:[\"icon-image\",\"text-field\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-rotation-alignment\":{type:\"enum\",values:{map:{},viewport:{},auto:{}},default:\"auto\",requires:[\"icon-image\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-size\":{type:\"number\",default:1,minimum:0,units:\"factor of the original icon size\",requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"icon-text-fit\":{type:\"enum\",values:{none:{},width:{},height:{},both:{}},default:\"none\",requires:[\"icon-image\",\"text-field\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-text-fit-padding\":{type:\"array\",value:\"number\",length:4,default:[0,0,0,0],units:\"pixels\",requires:[\"icon-image\",\"text-field\",{\"icon-text-fit\":[\"both\",\"width\",\"height\"]}],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-image\":{type:\"string\",tokens:!0,expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"icon-rotate\":{type:\"number\",default:0,period:360,units:\"degrees\",requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"icon-padding\":{type:\"number\",default:2,minimum:0,units:\"pixels\",requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-keep-upright\":{type:\"boolean\",default:!1,requires:[\"icon-image\",{\"icon-rotation-alignment\":\"map\"},{\"symbol-placement\":[\"line\",\"line-center\"]}],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-offset\":{type:\"array\",value:\"number\",length:2,default:[0,0],requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"icon-anchor\":{type:\"enum\",values:{center:{},left:{},right:{},top:{},bottom:{},\"top-left\":{},\"top-right\":{},\"bottom-left\":{},\"bottom-right\":{}},default:\"center\",requires:[\"icon-image\"],expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"icon-pitch-alignment\":{type:\"enum\",values:{map:{},viewport:{},auto:{}},default:\"auto\",requires:[\"icon-image\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-pitch-alignment\":{type:\"enum\",values:{map:{},viewport:{},auto:{}},default:\"auto\",requires:[\"text-field\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-rotation-alignment\":{type:\"enum\",values:{map:{},viewport:{},auto:{}},default:\"auto\",requires:[\"text-field\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-field\":{type:\"formatted\",default:\"\",tokens:!0,expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-font\":{type:\"array\",value:\"string\",default:[\"Open Sans Regular\",\"Arial Unicode MS Regular\"],requires:[\"text-field\"],expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-size\":{type:\"number\",default:16,minimum:0,units:\"pixels\",requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-max-width\":{type:\"number\",default:10,minimum:0,units:\"ems\",requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-line-height\":{type:\"number\",default:1.2,units:\"ems\",requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-letter-spacing\":{type:\"number\",default:0,units:\"ems\",requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-justify\":{type:\"enum\",values:{auto:{},left:{},center:{},right:{}},default:\"center\",requires:[\"text-field\"],expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-radial-offset\":{type:\"number\",units:\"ems\",default:0,requires:[\"text-field\"],\"property-type\":\"data-driven\",expression:{interpolated:!0,parameters:[\"zoom\",\"feature\"]}},\"text-variable-anchor\":{type:\"array\",value:\"enum\",values:{center:{},left:{},right:{},top:{},bottom:{},\"top-left\":{},\"top-right\":{},\"bottom-left\":{},\"bottom-right\":{}},requires:[\"text-field\",{\"symbol-placement\":[\"point\"]}],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-anchor\":{type:\"enum\",values:{center:{},left:{},right:{},top:{},bottom:{},\"top-left\":{},\"top-right\":{},\"bottom-left\":{},\"bottom-right\":{}},default:\"center\",requires:[\"text-field\",{\"!\":\"text-variable-anchor\"}],expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-max-angle\":{type:\"number\",default:45,units:\"degrees\",requires:[\"text-field\",{\"symbol-placement\":[\"line\",\"line-center\"]}],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-writing-mode\":{type:\"array\",value:\"enum\",values:{horizontal:{},vertical:{}},requires:[\"text-field\",{\"symbol-placement\":[\"point\"]}],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-rotate\":{type:\"number\",default:0,period:360,units:\"degrees\",requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-padding\":{type:\"number\",default:2,minimum:0,units:\"pixels\",requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-keep-upright\":{type:\"boolean\",default:!0,requires:[\"text-field\",{\"text-rotation-alignment\":\"map\"},{\"symbol-placement\":[\"line\",\"line-center\"]}],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-transform\":{type:\"enum\",values:{none:{},uppercase:{},lowercase:{}},default:\"none\",requires:[\"text-field\"],expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-offset\":{type:\"array\",value:\"number\",units:\"ems\",length:2,default:[0,0],requires:[\"text-field\",{\"!\":\"text-radial-offset\"},{\"!\":\"text-variable-anchor\"}],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-allow-overlap\":{type:\"boolean\",default:!1,requires:[\"text-field\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-ignore-placement\":{type:\"boolean\",default:!1,requires:[\"text-field\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-optional\":{type:\"boolean\",default:!1,requires:[\"text-field\",\"icon-image\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},visibility:{type:\"enum\",values:{visible:{},none:{}},default:\"visible\",\"property-type\":\"constant\"}},layout_raster:{visibility:{type:\"enum\",values:{visible:{},none:{}},default:\"visible\",\"property-type\":\"constant\"}},layout_hillshade:{visibility:{type:\"enum\",values:{visible:{},none:{}},default:\"visible\",\"property-type\":\"constant\"}},filter:{type:\"array\",value:\"*\"},filter_operator:{type:\"enum\",values:{\"==\":{},\"!=\":{},\">\":{},\">=\":{},\"<\":{},\"<=\":{},in:{},\"!in\":{},all:{},any:{},none:{},has:{},\"!has\":{}}},geometry_type:{type:\"enum\",values:{Point:{},LineString:{},Polygon:{}}},function:{expression:{type:\"expression\"},stops:{type:\"array\",value:\"function_stop\"},base:{type:\"number\",default:1,minimum:0},property:{type:\"string\",default:\"$zoom\"},type:{type:\"enum\",values:{identity:{},exponential:{},interval:{},categorical:{}},default:\"exponential\"},colorSpace:{type:\"enum\",values:{rgb:{},lab:{},hcl:{}},default:\"rgb\"},default:{type:\"*\",required:!1}},function_stop:{type:\"array\",minimum:0,maximum:22,value:[\"number\",\"color\"],length:2},expression:{type:\"array\",value:\"*\",minimum:1},expression_name:{type:\"enum\",values:{let:{group:\"Variable binding\"},var:{group:\"Variable binding\"},literal:{group:\"Types\"},array:{group:\"Types\"},at:{group:\"Lookup\"},case:{group:\"Decision\"},match:{group:\"Decision\"},coalesce:{group:\"Decision\"},step:{group:\"Ramps, scales, curves\"},interpolate:{group:\"Ramps, scales, curves\"},\"interpolate-hcl\":{group:\"Ramps, scales, curves\"},\"interpolate-lab\":{group:\"Ramps, scales, curves\"},ln2:{group:\"Math\"},pi:{group:\"Math\"},e:{group:\"Math\"},typeof:{group:\"Types\"},string:{group:\"Types\"},number:{group:\"Types\"},boolean:{group:\"Types\"},object:{group:\"Types\"},collator:{group:\"Types\"},format:{group:\"Types\"},\"number-format\":{group:\"Types\"},\"to-string\":{group:\"Types\"},\"to-number\":{group:\"Types\"},\"to-boolean\":{group:\"Types\"},\"to-rgba\":{group:\"Color\"},\"to-color\":{group:\"Types\"},rgb:{group:\"Color\"},rgba:{group:\"Color\"},get:{group:\"Lookup\"},has:{group:\"Lookup\"},length:{group:\"Lookup\"},properties:{group:\"Feature data\"},\"feature-state\":{group:\"Feature data\"},\"geometry-type\":{group:\"Feature data\"},id:{group:\"Feature data\"},zoom:{group:\"Zoom\"},\"heatmap-density\":{group:\"Heatmap\"},\"line-progress\":{group:\"Feature data\"},accumulated:{group:\"Feature data\"},\"+\":{group:\"Math\"},\"*\":{group:\"Math\"},\"-\":{group:\"Math\"},\"/\":{group:\"Math\"},\"%\":{group:\"Math\"},\"^\":{group:\"Math\"},sqrt:{group:\"Math\"},log10:{group:\"Math\"},ln:{group:\"Math\"},log2:{group:\"Math\"},sin:{group:\"Math\"},cos:{group:\"Math\"},tan:{group:\"Math\"},asin:{group:\"Math\"},acos:{group:\"Math\"},atan:{group:\"Math\"},min:{group:\"Math\"},max:{group:\"Math\"},round:{group:\"Math\"},abs:{group:\"Math\"},ceil:{group:\"Math\"},floor:{group:\"Math\"},\"==\":{group:\"Decision\"},\"!=\":{group:\"Decision\"},\">\":{group:\"Decision\"},\"<\":{group:\"Decision\"},\">=\":{group:\"Decision\"},\"<=\":{group:\"Decision\"},all:{group:\"Decision\"},any:{group:\"Decision\"},\"!\":{group:\"Decision\"},\"is-supported-script\":{group:\"String\"},upcase:{group:\"String\"},downcase:{group:\"String\"},concat:{group:\"String\"},\"resolved-locale\":{group:\"String\"}}},light:{anchor:{type:\"enum\",default:\"viewport\",values:{map:{},viewport:{}},\"property-type\":\"data-constant\",transition:!1,expression:{interpolated:!1,parameters:[\"zoom\"]}},position:{type:\"array\",default:[1.15,210,30],length:3,value:\"number\",\"property-type\":\"data-constant\",transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]}},color:{type:\"color\",\"property-type\":\"data-constant\",default:\"#ffffff\",expression:{interpolated:!0,parameters:[\"zoom\"]},transition:!0},intensity:{type:\"number\",\"property-type\":\"data-constant\",default:.5,minimum:0,maximum:1,expression:{interpolated:!0,parameters:[\"zoom\"]},transition:!0}},paint:[\"paint_fill\",\"paint_line\",\"paint_circle\",\"paint_heatmap\",\"paint_fill-extrusion\",\"paint_symbol\",\"paint_raster\",\"paint_hillshade\",\"paint_background\"],paint_fill:{\"fill-antialias\":{type:\"boolean\",default:!0,expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"fill-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"fill-color\":{type:\"color\",default:\"#000000\",transition:!0,requires:[{\"!\":\"fill-pattern\"}],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"fill-outline-color\":{type:\"color\",transition:!0,requires:[{\"!\":\"fill-pattern\"},{\"fill-antialias\":!0}],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"fill-translate\":{type:\"array\",value:\"number\",length:2,default:[0,0],transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"fill-translate-anchor\":{type:\"enum\",values:{map:{},viewport:{}},default:\"map\",requires:[\"fill-translate\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"fill-pattern\":{type:\"string\",transition:!0,expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"cross-faded-data-driven\"}},\"paint_fill-extrusion\":{\"fill-extrusion-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"fill-extrusion-color\":{type:\"color\",default:\"#000000\",transition:!0,requires:[{\"!\":\"fill-extrusion-pattern\"}],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"fill-extrusion-translate\":{type:\"array\",value:\"number\",length:2,default:[0,0],transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"fill-extrusion-translate-anchor\":{type:\"enum\",values:{map:{},viewport:{}},default:\"map\",requires:[\"fill-extrusion-translate\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"fill-extrusion-pattern\":{type:\"string\",transition:!0,expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"cross-faded-data-driven\"},\"fill-extrusion-height\":{type:\"number\",default:0,minimum:0,units:\"meters\",transition:!0,expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"fill-extrusion-base\":{type:\"number\",default:0,minimum:0,units:\"meters\",transition:!0,requires:[\"fill-extrusion-height\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"fill-extrusion-vertical-gradient\":{type:\"boolean\",default:!0,transition:!1,expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"}},paint_line:{\"line-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"line-color\":{type:\"color\",default:\"#000000\",transition:!0,requires:[{\"!\":\"line-pattern\"}],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"line-translate\":{type:\"array\",value:\"number\",length:2,default:[0,0],transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"line-translate-anchor\":{type:\"enum\",values:{map:{},viewport:{}},default:\"map\",requires:[\"line-translate\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"line-width\":{type:\"number\",default:1,minimum:0,transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"line-gap-width\":{type:\"number\",default:0,minimum:0,transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"line-offset\":{type:\"number\",default:0,transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"line-blur\":{type:\"number\",default:0,minimum:0,transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"line-dasharray\":{type:\"array\",value:\"number\",minimum:0,transition:!0,units:\"line widths\",requires:[{\"!\":\"line-pattern\"}],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"cross-faded\"},\"line-pattern\":{type:\"string\",transition:!0,expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"cross-faded-data-driven\"},\"line-gradient\":{type:\"color\",transition:!1,requires:[{\"!\":\"line-dasharray\"},{\"!\":\"line-pattern\"},{source:\"geojson\",has:{lineMetrics:!0}}],expression:{interpolated:!0,parameters:[\"line-progress\"]},\"property-type\":\"color-ramp\"}},paint_circle:{\"circle-radius\":{type:\"number\",default:5,minimum:0,transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"circle-color\":{type:\"color\",default:\"#000000\",transition:!0,expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"circle-blur\":{type:\"number\",default:0,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"circle-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"circle-translate\":{type:\"array\",value:\"number\",length:2,default:[0,0],transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"circle-translate-anchor\":{type:\"enum\",values:{map:{},viewport:{}},default:\"map\",requires:[\"circle-translate\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"circle-pitch-scale\":{type:\"enum\",values:{map:{},viewport:{}},default:\"map\",expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"circle-pitch-alignment\":{type:\"enum\",values:{map:{},viewport:{}},default:\"viewport\",expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"circle-stroke-width\":{type:\"number\",default:0,minimum:0,transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"circle-stroke-color\":{type:\"color\",default:\"#000000\",transition:!0,expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"circle-stroke-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"}},paint_heatmap:{\"heatmap-radius\":{type:\"number\",default:30,minimum:1,transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"heatmap-weight\":{type:\"number\",default:1,minimum:0,transition:!1,expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"heatmap-intensity\":{type:\"number\",default:1,minimum:0,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"heatmap-color\":{type:\"color\",default:[\"interpolate\",[\"linear\"],[\"heatmap-density\"],0,\"rgba(0, 0, 255, 0)\",.1,\"royalblue\",.3,\"cyan\",.5,\"lime\",.7,\"yellow\",1,\"red\"],transition:!1,expression:{interpolated:!0,parameters:[\"heatmap-density\"]},\"property-type\":\"color-ramp\"},\"heatmap-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"}},paint_symbol:{\"icon-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"icon-color\":{type:\"color\",default:\"#000000\",transition:!0,requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"icon-halo-color\":{type:\"color\",default:\"rgba(0, 0, 0, 0)\",transition:!0,requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"icon-halo-width\":{type:\"number\",default:0,minimum:0,transition:!0,units:\"pixels\",requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"icon-halo-blur\":{type:\"number\",default:0,minimum:0,transition:!0,units:\"pixels\",requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"icon-translate\":{type:\"array\",value:\"number\",length:2,default:[0,0],transition:!0,units:\"pixels\",requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-translate-anchor\":{type:\"enum\",values:{map:{},viewport:{}},default:\"map\",requires:[\"icon-image\",\"icon-translate\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"text-color\":{type:\"color\",default:\"#000000\",transition:!0,overridable:!0,requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"text-halo-color\":{type:\"color\",default:\"rgba(0, 0, 0, 0)\",transition:!0,requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"text-halo-width\":{type:\"number\",default:0,minimum:0,transition:!0,units:\"pixels\",requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"text-halo-blur\":{type:\"number\",default:0,minimum:0,transition:!0,units:\"pixels\",requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"text-translate\":{type:\"array\",value:\"number\",length:2,default:[0,0],transition:!0,units:\"pixels\",requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-translate-anchor\":{type:\"enum\",values:{map:{},viewport:{}},default:\"map\",requires:[\"text-field\",\"text-translate\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"}},paint_raster:{\"raster-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"raster-hue-rotate\":{type:\"number\",default:0,period:360,transition:!0,units:\"degrees\",expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"raster-brightness-min\":{type:\"number\",default:0,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"raster-brightness-max\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"raster-saturation\":{type:\"number\",default:0,minimum:-1,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"raster-contrast\":{type:\"number\",default:0,minimum:-1,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"raster-resampling\":{type:\"enum\",values:{linear:{},nearest:{}},default:\"linear\",expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"raster-fade-duration\":{type:\"number\",default:300,minimum:0,transition:!1,units:\"milliseconds\",expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"}},paint_hillshade:{\"hillshade-illumination-direction\":{type:\"number\",default:335,minimum:0,maximum:359,transition:!1,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"hillshade-illumination-anchor\":{type:\"enum\",values:{map:{},viewport:{}},default:\"viewport\",expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"hillshade-exaggeration\":{type:\"number\",default:.5,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"hillshade-shadow-color\":{type:\"color\",default:\"#000000\",transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"hillshade-highlight-color\":{type:\"color\",default:\"#FFFFFF\",transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"hillshade-accent-color\":{type:\"color\",default:\"#000000\",transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"}},paint_background:{\"background-color\":{type:\"color\",default:\"#000000\",transition:!0,requires:[{\"!\":\"background-pattern\"}],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"background-pattern\":{type:\"string\",transition:!0,expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"cross-faded\"},\"background-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"}},transition:{duration:{type:\"number\",default:300,minimum:0,units:\"milliseconds\"},delay:{type:\"number\",default:0,minimum:0,units:\"milliseconds\"}},\"property-type\":{\"data-driven\":{type:\"property-type\"},\"cross-faded\":{type:\"property-type\"},\"cross-faded-data-driven\":{type:\"property-type\"},\"color-ramp\":{type:\"property-type\"},\"data-constant\":{type:\"property-type\"},constant:{type:\"property-type\"}}},At=function(t,e,r,n){this.message=(t?t+\": \":\"\")+r,n&&(this.identifier=n),null!=e&&e.__line__&&(this.line=e.__line__)};function Mt(t){var e=t.key,r=t.value;return r?[new At(e,r,\"constants have been deprecated as of v8\")]:[]}function St(t){for(var e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];for(var n=0,a=e;n<a.length;n+=1){var i=a[n];for(var o in i)t[o]=i[o]}return t}function Et(t){return t instanceof Number||t instanceof String||t instanceof Boolean}function Ct(t){return Et(t)?t.valueOf():t}function Lt(t){if(Array.isArray(t))return t.map(Lt);if(t instanceof Object&&!Et(t)){var e={};for(var r in t)e[r]=Lt(t[r]);return e}return Ct(t)}var Pt=function(t){function e(e,r){t.call(this,r),this.message=r,this.key=e}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}(Error),Ot=function(t,e){void 0===e&&(e=[]),this.parent=t,this.bindings={};for(var r=0,n=e;r<n.length;r+=1){var a=n[r],i=a[0],o=a[1];this.bindings[i]=o}};Ot.prototype.concat=function(t){return new Ot(this,t)},Ot.prototype.get=function(t){if(this.bindings[t])return this.bindings[t];if(this.parent)return this.parent.get(t);throw new Error(t+\" not found in scope.\")},Ot.prototype.has=function(t){return!!this.bindings[t]||!!this.parent&&this.parent.has(t)};var It={kind:\"null\"},zt={kind:\"number\"},Dt={kind:\"string\"},Rt={kind:\"boolean\"},Ft={kind:\"color\"},Bt={kind:\"object\"},Nt={kind:\"value\"},jt={kind:\"collator\"},Vt={kind:\"formatted\"};function Ut(t,e){return{kind:\"array\",itemType:t,N:e}}function qt(t){if(\"array\"===t.kind){var e=qt(t.itemType);return\"number\"==typeof t.N?\"array<\"+e+\", \"+t.N+\">\":\"value\"===t.itemType.kind?\"array\":\"array<\"+e+\">\"}return t.kind}var Ht=[It,zt,Dt,Rt,Ft,Vt,Bt,Ut(Nt)];function Gt(t,e){if(\"error\"===e.kind)return null;if(\"array\"===t.kind){if(\"array\"===e.kind&&(0===e.N&&\"value\"===e.itemType.kind||!Gt(t.itemType,e.itemType))&&(\"number\"!=typeof t.N||t.N===e.N))return null}else{if(t.kind===e.kind)return null;if(\"value\"===t.kind)for(var r=0,n=Ht;r<n.length;r+=1)if(!Gt(n[r],e))return null}return\"Expected \"+qt(t)+\" but found \"+qt(e)+\" instead.\"}var Yt=e(function(t,e){var r={transparent:[0,0,0,0],aliceblue:[240,248,255,1],antiquewhite:[250,235,215,1],aqua:[0,255,255,1],aquamarine:[127,255,212,1],azure:[240,255,255,1],beige:[245,245,220,1],bisque:[255,228,196,1],black:[0,0,0,1],blanchedalmond:[255,235,205,1],blue:[0,0,255,1],blueviolet:[138,43,226,1],brown:[165,42,42,1],burlywood:[222,184,135,1],cadetblue:[95,158,160,1],chartreuse:[127,255,0,1],chocolate:[210,105,30,1],coral:[255,127,80,1],cornflowerblue:[100,149,237,1],cornsilk:[255,248,220,1],crimson:[220,20,60,1],cyan:[0,255,255,1],darkblue:[0,0,139,1],darkcyan:[0,139,139,1],darkgoldenrod:[184,134,11,1],darkgray:[169,169,169,1],darkgreen:[0,100,0,1],darkgrey:[169,169,169,1],darkkhaki:[189,183,107,1],darkmagenta:[139,0,139,1],darkolivegreen:[85,107,47,1],darkorange:[255,140,0,1],darkorchid:[153,50,204,1],darkred:[139,0,0,1],darksalmon:[233,150,122,1],darkseagreen:[143,188,143,1],darkslateblue:[72,61,139,1],darkslategray:[47,79,79,1],darkslategrey:[47,79,79,1],darkturquoise:[0,206,209,1],darkviolet:[148,0,211,1],deeppink:[255,20,147,1],deepskyblue:[0,191,255,1],dimgray:[105,105,105,1],dimgrey:[105,105,105,1],dodgerblue:[30,144,255,1],firebrick:[178,34,34,1],floralwhite:[255,250,240,1],forestgreen:[34,139,34,1],fuchsia:[255,0,255,1],gainsboro:[220,220,220,1],ghostwhite:[248,248,255,1],gold:[255,215,0,1],goldenrod:[218,165,32,1],gray:[128,128,128,1],green:[0,128,0,1],greenyellow:[173,255,47,1],grey:[128,128,128,1],honeydew:[240,255,240,1],hotpink:[255,105,180,1],indianred:[205,92,92,1],indigo:[75,0,130,1],ivory:[255,255,240,1],khaki:[240,230,140,1],lavender:[230,230,250,1],lavenderblush:[255,240,245,1],lawngreen:[124,252,0,1],lemonchiffon:[255,250,205,1],lightblue:[173,216,230,1],lightcoral:[240,128,128,1],lightcyan:[224,255,255,1],lightgoldenrodyellow:[250,250,210,1],lightgray:[211,211,211,1],lightgreen:[144,238,144,1],lightgrey:[211,211,211,1],lightpink:[255,182,193,1],lightsalmon:[255,160,122,1],lightseagreen:[32,178,170,1],lightskyblue:[135,206,250,1],lightslategray:[119,136,153,1],lightslategrey:[119,136,153,1],lightsteelblue:[176,196,222,1],lightyellow:[255,255,224,1],lime:[0,255,0,1],limegreen:[50,205,50,1],linen:[250,240,230,1],magenta:[255,0,255,1],maroon:[128,0,0,1],mediumaquamarine:[102,205,170,1],mediumblue:[0,0,205,1],mediumorchid:[186,85,211,1],mediumpurple:[147,112,219,1],mediumseagreen:[60,179,113,1],mediumslateblue:[123,104,238,1],mediumspringgreen:[0,250,154,1],mediumturquoise:[72,209,204,1],mediumvioletred:[199,21,133,1],midnightblue:[25,25,112,1],mintcream:[245,255,250,1],mistyrose:[255,228,225,1],moccasin:[255,228,181,1],navajowhite:[255,222,173,1],navy:[0,0,128,1],oldlace:[253,245,230,1],olive:[128,128,0,1],olivedrab:[107,142,35,1],orange:[255,165,0,1],orangered:[255,69,0,1],orchid:[218,112,214,1],palegoldenrod:[238,232,170,1],palegreen:[152,251,152,1],paleturquoise:[175,238,238,1],palevioletred:[219,112,147,1],papayawhip:[255,239,213,1],peachpuff:[255,218,185,1],peru:[205,133,63,1],pink:[255,192,203,1],plum:[221,160,221,1],powderblue:[176,224,230,1],purple:[128,0,128,1],rebeccapurple:[102,51,153,1],red:[255,0,0,1],rosybrown:[188,143,143,1],royalblue:[65,105,225,1],saddlebrown:[139,69,19,1],salmon:[250,128,114,1],sandybrown:[244,164,96,1],seagreen:[46,139,87,1],seashell:[255,245,238,1],sienna:[160,82,45,1],silver:[192,192,192,1],skyblue:[135,206,235,1],slateblue:[106,90,205,1],slategray:[112,128,144,1],slategrey:[112,128,144,1],snow:[255,250,250,1],springgreen:[0,255,127,1],steelblue:[70,130,180,1],tan:[210,180,140,1],teal:[0,128,128,1],thistle:[216,191,216,1],tomato:[255,99,71,1],turquoise:[64,224,208,1],violet:[238,130,238,1],wheat:[245,222,179,1],white:[255,255,255,1],whitesmoke:[245,245,245,1],yellow:[255,255,0,1],yellowgreen:[154,205,50,1]};function n(t){return(t=Math.round(t))<0?0:t>255?255:t}function a(t){return t<0?0:t>1?1:t}function i(t){return\"%\"===t[t.length-1]?n(parseFloat(t)/100*255):n(parseInt(t))}function o(t){return\"%\"===t[t.length-1]?a(parseFloat(t)/100):a(parseFloat(t))}function s(t,e,r){return r<0?r+=1:r>1&&(r-=1),6*r<1?t+(e-t)*r*6:2*r<1?e:3*r<2?t+(e-t)*(2/3-r)*6:t}try{e.parseCSSColor=function(t){var e,a=t.replace(/ /g,\"\").toLowerCase();if(a in r)return r[a].slice();if(\"#\"===a[0])return 4===a.length?(e=parseInt(a.substr(1),16))>=0&&e<=4095?[(3840&e)>>4|(3840&e)>>8,240&e|(240&e)>>4,15&e|(15&e)<<4,1]:null:7===a.length&&(e=parseInt(a.substr(1),16))>=0&&e<=16777215?[(16711680&e)>>16,(65280&e)>>8,255&e,1]:null;var l=a.indexOf(\"(\"),c=a.indexOf(\")\");if(-1!==l&&c+1===a.length){var u=a.substr(0,l),h=a.substr(l+1,c-(l+1)).split(\",\"),f=1;switch(u){case\"rgba\":if(4!==h.length)return null;f=o(h.pop());case\"rgb\":return 3!==h.length?null:[i(h[0]),i(h[1]),i(h[2]),f];case\"hsla\":if(4!==h.length)return null;f=o(h.pop());case\"hsl\":if(3!==h.length)return null;var p=(parseFloat(h[0])%360+360)%360/360,d=o(h[1]),g=o(h[2]),v=g<=.5?g*(d+1):g+d-g*d,m=2*g-v;return[n(255*s(m,v,p+1/3)),n(255*s(m,v,p)),n(255*s(m,v,p-1/3)),f];default:return null}}return null}}catch(t){}}).parseCSSColor,Wt=function(t,e,r,n){void 0===n&&(n=1),this.r=t,this.g=e,this.b=r,this.a=n};Wt.parse=function(t){if(t){if(t instanceof Wt)return t;if(\"string\"==typeof t){var e=Yt(t);if(e)return new Wt(e[0]/255*e[3],e[1]/255*e[3],e[2]/255*e[3],e[3])}}},Wt.prototype.toString=function(){var t=this.toArray(),e=t[0],r=t[1],n=t[2],a=t[3];return\"rgba(\"+Math.round(e)+\",\"+Math.round(r)+\",\"+Math.round(n)+\",\"+a+\")\"},Wt.prototype.toArray=function(){var t=this.r,e=this.g,r=this.b,n=this.a;return 0===n?[0,0,0,0]:[255*t/n,255*e/n,255*r/n,n]},Wt.black=new Wt(0,0,0,1),Wt.white=new Wt(1,1,1,1),Wt.transparent=new Wt(0,0,0,0),Wt.red=new Wt(1,0,0,1);var Xt=function(t,e,r){this.sensitivity=t?e?\"variant\":\"case\":e?\"accent\":\"base\",this.locale=r,this.collator=new Intl.Collator(this.locale?this.locale:[],{sensitivity:this.sensitivity,usage:\"search\"})};Xt.prototype.compare=function(t,e){return this.collator.compare(t,e)},Xt.prototype.resolvedLocale=function(){return new Intl.Collator(this.locale?this.locale:[]).resolvedOptions().locale};var Zt=function(t,e,r,n){this.text=t,this.scale=e,this.fontStack=r,this.textColor=n},Jt=function(t){this.sections=t};function Kt(t,e,r,n){return\"number\"==typeof t&&t>=0&&t<=255&&\"number\"==typeof e&&e>=0&&e<=255&&\"number\"==typeof r&&r>=0&&r<=255?void 0===n||\"number\"==typeof n&&n>=0&&n<=1?null:\"Invalid rgba value [\"+[t,e,r,n].join(\", \")+\"]: 'a' must be between 0 and 1.\":\"Invalid rgba value [\"+(\"number\"==typeof n?[t,e,r,n]:[t,e,r]).join(\", \")+\"]: 'r', 'g', and 'b' must be between 0 and 255.\"}function Qt(t){if(null===t)return It;if(\"string\"==typeof t)return Dt;if(\"boolean\"==typeof t)return Rt;if(\"number\"==typeof t)return zt;if(t instanceof Wt)return Ft;if(t instanceof Xt)return jt;if(t instanceof Jt)return Vt;if(Array.isArray(t)){for(var e,r=t.length,n=0,a=t;n<a.length;n+=1){var i=Qt(a[n]);if(e){if(e===i)continue;e=Nt;break}e=i}return Ut(e||Nt,r)}return Bt}function $t(t){var e=typeof t;return null===t?\"\":\"string\"===e||\"number\"===e||\"boolean\"===e?String(t):t instanceof Wt||t instanceof Jt?t.toString():JSON.stringify(t)}Jt.fromString=function(t){return new Jt([new Zt(t,null,null,null)])},Jt.prototype.toString=function(){return this.sections.map(function(t){return t.text}).join(\"\")},Jt.prototype.serialize=function(){for(var t=[\"format\"],e=0,r=this.sections;e<r.length;e+=1){var n=r[e];t.push(n.text);var a={};n.fontStack&&(a[\"text-font\"]=[\"literal\",n.fontStack.split(\",\")]),n.scale&&(a[\"font-scale\"]=n.scale),n.textColor&&(a[\"text-color\"]=[\"rgba\"].concat(n.textColor.toArray())),t.push(a)}return t};var te=function(t,e){this.type=t,this.value=e};te.parse=function(t,e){if(2!==t.length)return e.error(\"'literal' expression requires exactly one argument, but found \"+(t.length-1)+\" instead.\");if(!function t(e){if(null===e)return!0;if(\"string\"==typeof e)return!0;if(\"boolean\"==typeof e)return!0;if(\"number\"==typeof e)return!0;if(e instanceof Wt)return!0;if(e instanceof Xt)return!0;if(e instanceof Jt)return!0;if(Array.isArray(e)){for(var r=0,n=e;r<n.length;r+=1)if(!t(n[r]))return!1;return!0}if(\"object\"==typeof e){for(var a in e)if(!t(e[a]))return!1;return!0}return!1}(t[1]))return e.error(\"invalid value\");var r=t[1],n=Qt(r),a=e.expectedType;return\"array\"!==n.kind||0!==n.N||!a||\"array\"!==a.kind||\"number\"==typeof a.N&&0!==a.N||(n=a),new te(n,r)},te.prototype.evaluate=function(){return this.value},te.prototype.eachChild=function(){},te.prototype.possibleOutputs=function(){return[this.value]},te.prototype.serialize=function(){return\"array\"===this.type.kind||\"object\"===this.type.kind?[\"literal\",this.value]:this.value instanceof Wt?[\"rgba\"].concat(this.value.toArray()):this.value instanceof Jt?this.value.serialize():this.value};var ee=function(t){this.name=\"ExpressionEvaluationError\",this.message=t};ee.prototype.toJSON=function(){return this.message};var re={string:Dt,number:zt,boolean:Rt,object:Bt},ne=function(t,e){this.type=t,this.args=e};ne.parse=function(t,e){if(t.length<2)return e.error(\"Expected at least one argument.\");var r,n=1,a=t[0];if(\"array\"===a){var i,o;if(t.length>2){var s=t[1];if(\"string\"!=typeof s||!(s in re)||\"object\"===s)return e.error('The item type argument of \"array\" must be one of string, number, boolean',1);i=re[s],n++}else i=Nt;if(t.length>3){if(null!==t[2]&&(\"number\"!=typeof t[2]||t[2]<0||t[2]!==Math.floor(t[2])))return e.error('The length argument to \"array\" must be a positive integer literal',2);o=t[2],n++}r=Ut(i,o)}else r=re[a];for(var l=[];n<t.length;n++){var c=e.parse(t[n],n,Nt);if(!c)return null;l.push(c)}return new ne(r,l)},ne.prototype.evaluate=function(t){for(var e=0;e<this.args.length;e++){var r=this.args[e].evaluate(t);if(!Gt(this.type,Qt(r)))return r;if(e===this.args.length-1)throw new ee(\"Expected value to be of type \"+qt(this.type)+\", but found \"+qt(Qt(r))+\" instead.\")}return null},ne.prototype.eachChild=function(t){this.args.forEach(t)},ne.prototype.possibleOutputs=function(){var t;return(t=[]).concat.apply(t,this.args.map(function(t){return t.possibleOutputs()}))},ne.prototype.serialize=function(){var t=this.type,e=[t.kind];if(\"array\"===t.kind){var r=t.itemType;if(\"string\"===r.kind||\"number\"===r.kind||\"boolean\"===r.kind){e.push(r.kind);var n=t.N;(\"number\"==typeof n||this.args.length>1)&&e.push(n)}}return e.concat(this.args.map(function(t){return t.serialize()}))};var ae=function(t){this.type=Vt,this.sections=t};ae.parse=function(t,e){if(t.length<3)return e.error(\"Expected at least two arguments.\");if((t.length-1)%2!=0)return e.error(\"Expected an even number of arguments.\");for(var r=[],n=1;n<t.length-1;n+=2){var a=e.parse(t[n],1,Nt);if(!a)return null;var i=a.type.kind;if(\"string\"!==i&&\"value\"!==i&&\"null\"!==i)return e.error(\"Formatted text type must be 'string', 'value', or 'null'.\");var o=t[n+1];if(\"object\"!=typeof o||Array.isArray(o))return e.error(\"Format options argument must be an object.\");var s=null;if(o[\"font-scale\"]&&!(s=e.parse(o[\"font-scale\"],1,zt)))return null;var l=null;if(o[\"text-font\"]&&!(l=e.parse(o[\"text-font\"],1,Ut(Dt))))return null;var c=null;if(o[\"text-color\"]&&!(c=e.parse(o[\"text-color\"],1,Ft)))return null;r.push({text:a,scale:s,font:l,textColor:c})}return new ae(r)},ae.prototype.evaluate=function(t){return new Jt(this.sections.map(function(e){return new Zt($t(e.text.evaluate(t)),e.scale?e.scale.evaluate(t):null,e.font?e.font.evaluate(t).join(\",\"):null,e.textColor?e.textColor.evaluate(t):null)}))},ae.prototype.eachChild=function(t){for(var e=0,r=this.sections;e<r.length;e+=1){var n=r[e];t(n.text),n.scale&&t(n.scale),n.font&&t(n.font),n.textColor&&t(n.textColor)}},ae.prototype.possibleOutputs=function(){return[void 0]},ae.prototype.serialize=function(){for(var t=[\"format\"],e=0,r=this.sections;e<r.length;e+=1){var n=r[e];t.push(n.text.serialize());var a={};n.scale&&(a[\"font-scale\"]=n.scale.serialize()),n.font&&(a[\"text-font\"]=n.font.serialize()),n.textColor&&(a[\"text-color\"]=n.textColor.serialize()),t.push(a)}return t};var ie={\"to-boolean\":Rt,\"to-color\":Ft,\"to-number\":zt,\"to-string\":Dt},oe=function(t,e){this.type=t,this.args=e};oe.parse=function(t,e){if(t.length<2)return e.error(\"Expected at least one argument.\");var r=t[0];if((\"to-boolean\"===r||\"to-string\"===r)&&2!==t.length)return e.error(\"Expected one argument.\");for(var n=ie[r],a=[],i=1;i<t.length;i++){var o=e.parse(t[i],i,Nt);if(!o)return null;a.push(o)}return new oe(n,a)},oe.prototype.evaluate=function(t){if(\"boolean\"===this.type.kind)return Boolean(this.args[0].evaluate(t));if(\"color\"===this.type.kind){for(var e,r,n=0,a=this.args;n<a.length;n+=1){if(r=null,(e=a[n].evaluate(t))instanceof Wt)return e;if(\"string\"==typeof e){var i=t.parseColor(e);if(i)return i}else if(Array.isArray(e)&&!(r=e.length<3||e.length>4?\"Invalid rbga value \"+JSON.stringify(e)+\": expected an array containing either three or four numeric values.\":Kt(e[0],e[1],e[2],e[3])))return new Wt(e[0]/255,e[1]/255,e[2]/255,e[3])}throw new ee(r||\"Could not parse color from value '\"+(\"string\"==typeof e?e:String(JSON.stringify(e)))+\"'\")}if(\"number\"===this.type.kind){for(var o=null,s=0,l=this.args;s<l.length;s+=1){if(null===(o=l[s].evaluate(t)))return 0;var c=Number(o);if(!isNaN(c))return c}throw new ee(\"Could not convert \"+JSON.stringify(o)+\" to number.\")}return\"formatted\"===this.type.kind?Jt.fromString($t(this.args[0].evaluate(t))):$t(this.args[0].evaluate(t))},oe.prototype.eachChild=function(t){this.args.forEach(t)},oe.prototype.possibleOutputs=function(){var t;return(t=[]).concat.apply(t,this.args.map(function(t){return t.possibleOutputs()}))},oe.prototype.serialize=function(){if(\"formatted\"===this.type.kind)return new ae([{text:this.args[0],scale:null,font:null,textColor:null}]).serialize();var t=[\"to-\"+this.type.kind];return this.eachChild(function(e){t.push(e.serialize())}),t};var se=[\"Unknown\",\"Point\",\"LineString\",\"Polygon\"],le=function(){this.globals=null,this.feature=null,this.featureState=null,this.formattedSection=null,this._parseColorCache={}};le.prototype.id=function(){return this.feature&&\"id\"in this.feature?this.feature.id:null},le.prototype.geometryType=function(){return this.feature?\"number\"==typeof this.feature.type?se[this.feature.type]:this.feature.type:null},le.prototype.properties=function(){return this.feature&&this.feature.properties||{}},le.prototype.parseColor=function(t){var e=this._parseColorCache[t];return e||(e=this._parseColorCache[t]=Wt.parse(t)),e};var ce=function(t,e,r,n){this.name=t,this.type=e,this._evaluate=r,this.args=n};ce.prototype.evaluate=function(t){return this._evaluate(t,this.args)},ce.prototype.eachChild=function(t){this.args.forEach(t)},ce.prototype.possibleOutputs=function(){return[void 0]},ce.prototype.serialize=function(){return[this.name].concat(this.args.map(function(t){return t.serialize()}))},ce.parse=function(t,e){var r,n=t[0],a=ce.definitions[n];if(!a)return e.error('Unknown expression \"'+n+'\". If you wanted a literal array, use [\"literal\", [...]].',0);for(var i=Array.isArray(a)?a[0]:a.type,o=Array.isArray(a)?[[a[1],a[2]]]:a.overloads,s=o.filter(function(e){var r=e[0];return!Array.isArray(r)||r.length===t.length-1}),l=null,c=0,u=s;c<u.length;c+=1){var h=u[c],f=h[0],p=h[1];l=new ge(e.registry,e.path,null,e.scope);for(var d=[],g=!1,v=1;v<t.length;v++){var m=t[v],y=Array.isArray(f)?f[v-1]:f.type,x=l.parse(m,1+d.length,y);if(!x){g=!0;break}d.push(x)}if(!g)if(Array.isArray(f)&&f.length!==d.length)l.error(\"Expected \"+f.length+\" arguments, but found \"+d.length+\" instead.\");else{for(var b=0;b<d.length;b++){var _=Array.isArray(f)?f[b]:f.type,w=d[b];l.concat(b+1).checkSubtype(_,w.type)}if(0===l.errors.length)return new ce(n,i,p,d)}}if(1===s.length)(r=e.errors).push.apply(r,l.errors);else{for(var k=(s.length?s:o).map(function(t){var e;return e=t[0],Array.isArray(e)?\"(\"+e.map(qt).join(\", \")+\")\":\"(\"+qt(e.type)+\"...)\"}).join(\" | \"),T=[],A=1;A<t.length;A++){var M=e.parse(t[A],1+T.length);if(!M)return null;T.push(qt(M.type))}e.error(\"Expected arguments of type \"+k+\", but found (\"+T.join(\", \")+\") instead.\")}return null},ce.register=function(t,e){for(var r in ce.definitions=e,e)t[r]=ce};var ue=function(t,e,r){this.type=jt,this.locale=r,this.caseSensitive=t,this.diacriticSensitive=e};function he(t){if(t instanceof ce){if(\"get\"===t.name&&1===t.args.length)return!1;if(\"feature-state\"===t.name)return!1;if(\"has\"===t.name&&1===t.args.length)return!1;if(\"properties\"===t.name||\"geometry-type\"===t.name||\"id\"===t.name)return!1;if(/^filter-/.test(t.name))return!1}var e=!0;return t.eachChild(function(t){e&&!he(t)&&(e=!1)}),e}function fe(t){if(t instanceof ce&&\"feature-state\"===t.name)return!1;var e=!0;return t.eachChild(function(t){e&&!fe(t)&&(e=!1)}),e}function pe(t,e){if(t instanceof ce&&e.indexOf(t.name)>=0)return!1;var r=!0;return t.eachChild(function(t){r&&!pe(t,e)&&(r=!1)}),r}ue.parse=function(t,e){if(2!==t.length)return e.error(\"Expected one argument.\");var r=t[1];if(\"object\"!=typeof r||Array.isArray(r))return e.error(\"Collator options argument must be an object.\");var n=e.parse(void 0!==r[\"case-sensitive\"]&&r[\"case-sensitive\"],1,Rt);if(!n)return null;var a=e.parse(void 0!==r[\"diacritic-sensitive\"]&&r[\"diacritic-sensitive\"],1,Rt);if(!a)return null;var i=null;return r.locale&&!(i=e.parse(r.locale,1,Dt))?null:new ue(n,a,i)},ue.prototype.evaluate=function(t){return new Xt(this.caseSensitive.evaluate(t),this.diacriticSensitive.evaluate(t),this.locale?this.locale.evaluate(t):null)},ue.prototype.eachChild=function(t){t(this.caseSensitive),t(this.diacriticSensitive),this.locale&&t(this.locale)},ue.prototype.possibleOutputs=function(){return[void 0]},ue.prototype.serialize=function(){var t={};return t[\"case-sensitive\"]=this.caseSensitive.serialize(),t[\"diacritic-sensitive\"]=this.diacriticSensitive.serialize(),this.locale&&(t.locale=this.locale.serialize()),[\"collator\",t]};var de=function(t,e){this.type=e.type,this.name=t,this.boundExpression=e};de.parse=function(t,e){if(2!==t.length||\"string\"!=typeof t[1])return e.error(\"'var' expression requires exactly one string literal argument.\");var r=t[1];return e.scope.has(r)?new de(r,e.scope.get(r)):e.error('Unknown variable \"'+r+'\". Make sure \"'+r+'\" has been bound in an enclosing \"let\" expression before using it.',1)},de.prototype.evaluate=function(t){return this.boundExpression.evaluate(t)},de.prototype.eachChild=function(){},de.prototype.possibleOutputs=function(){return[void 0]},de.prototype.serialize=function(){return[\"var\",this.name]};var ge=function(t,e,r,n,a){void 0===e&&(e=[]),void 0===n&&(n=new Ot),void 0===a&&(a=[]),this.registry=t,this.path=e,this.key=e.map(function(t){return\"[\"+t+\"]\"}).join(\"\"),this.scope=n,this.errors=a,this.expectedType=r};function ve(t,e){for(var r,n,a=t.length-1,i=0,o=a,s=0;i<=o;)if(r=t[s=Math.floor((i+o)/2)],n=t[s+1],r<=e){if(s===a||e<n)return s;i=s+1}else{if(!(r>e))throw new ee(\"Input is not a number.\");o=s-1}return 0}ge.prototype.parse=function(t,e,r,n,a){return void 0===a&&(a={}),e?this.concat(e,r,n)._parse(t,a):this._parse(t,a)},ge.prototype._parse=function(t,e){function r(t,e,r){return\"assert\"===r?new ne(e,[t]):\"coerce\"===r?new oe(e,[t]):t}if(null!==t&&\"string\"!=typeof t&&\"boolean\"!=typeof t&&\"number\"!=typeof t||(t=[\"literal\",t]),Array.isArray(t)){if(0===t.length)return this.error('Expected an array with at least one element. If you wanted a literal array, use [\"literal\", []].');var n=t[0];if(\"string\"!=typeof n)return this.error(\"Expression name must be a string, but found \"+typeof n+' instead. If you wanted a literal array, use [\"literal\", [...]].',0),null;var a=this.registry[n];if(a){var i=a.parse(t,this);if(!i)return null;if(this.expectedType){var o=this.expectedType,s=i.type;if(\"string\"!==o.kind&&\"number\"!==o.kind&&\"boolean\"!==o.kind&&\"object\"!==o.kind&&\"array\"!==o.kind||\"value\"!==s.kind)if(\"color\"!==o.kind&&\"formatted\"!==o.kind||\"value\"!==s.kind&&\"string\"!==s.kind){if(this.checkSubtype(o,s))return null}else i=r(i,o,e.typeAnnotation||\"coerce\");else i=r(i,o,e.typeAnnotation||\"assert\")}if(!(i instanceof te)&&function t(e){if(e instanceof de)return t(e.boundExpression);if(e instanceof ce&&\"error\"===e.name)return!1;if(e instanceof ue)return!1;var r=e instanceof oe||e instanceof ne,n=!0;return e.eachChild(function(e){n=r?n&&t(e):n&&e instanceof te}),!!n&&(he(e)&&pe(e,[\"zoom\",\"heatmap-density\",\"line-progress\",\"accumulated\",\"is-supported-script\"]))}(i)){var l=new le;try{i=new te(i.type,i.evaluate(l))}catch(t){return this.error(t.message),null}}return i}return this.error('Unknown expression \"'+n+'\". If you wanted a literal array, use [\"literal\", [...]].',0)}return void 0===t?this.error(\"'undefined' value invalid. Use null instead.\"):\"object\"==typeof t?this.error('Bare objects invalid. Use [\"literal\", {...}] instead.'):this.error(\"Expected an array, but found \"+typeof t+\" instead.\")},ge.prototype.concat=function(t,e,r){var n=\"number\"==typeof t?this.path.concat(t):this.path,a=r?this.scope.concat(r):this.scope;return new ge(this.registry,n,e||null,a,this.errors)},ge.prototype.error=function(t){for(var e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];var n=\"\"+this.key+e.map(function(t){return\"[\"+t+\"]\"}).join(\"\");this.errors.push(new Pt(n,t))},ge.prototype.checkSubtype=function(t,e){var r=Gt(t,e);return r&&this.error(r),r};var me=function(t,e,r){this.type=t,this.input=e,this.labels=[],this.outputs=[];for(var n=0,a=r;n<a.length;n+=1){var i=a[n],o=i[0],s=i[1];this.labels.push(o),this.outputs.push(s)}};function ye(t,e,r){return t*(1-r)+e*r}me.parse=function(t,e){if(t.length-1<4)return e.error(\"Expected at least 4 arguments, but found only \"+(t.length-1)+\".\");if((t.length-1)%2!=0)return e.error(\"Expected an even number of arguments.\");var r=e.parse(t[1],1,zt);if(!r)return null;var n=[],a=null;e.expectedType&&\"value\"!==e.expectedType.kind&&(a=e.expectedType);for(var i=1;i<t.length;i+=2){var o=1===i?-1/0:t[i],s=t[i+1],l=i,c=i+1;if(\"number\"!=typeof o)return e.error('Input/output pairs for \"step\" expressions must be defined using literal numeric values (not computed expressions) for the input values.',l);if(n.length&&n[n.length-1][0]>=o)return e.error('Input/output pairs for \"step\" expressions must be arranged with input values in strictly ascending order.',l);var u=e.parse(s,c,a);if(!u)return null;a=a||u.type,n.push([o,u])}return new me(a,r,n)},me.prototype.evaluate=function(t){var e=this.labels,r=this.outputs;if(1===e.length)return r[0].evaluate(t);var n=this.input.evaluate(t);if(n<=e[0])return r[0].evaluate(t);var a=e.length;return n>=e[a-1]?r[a-1].evaluate(t):r[ve(e,n)].evaluate(t)},me.prototype.eachChild=function(t){t(this.input);for(var e=0,r=this.outputs;e<r.length;e+=1)t(r[e])},me.prototype.possibleOutputs=function(){var t;return(t=[]).concat.apply(t,this.outputs.map(function(t){return t.possibleOutputs()}))},me.prototype.serialize=function(){for(var t=[\"step\",this.input.serialize()],e=0;e<this.labels.length;e++)e>0&&t.push(this.labels[e]),t.push(this.outputs[e].serialize());return t};var xe=Object.freeze({number:ye,color:function(t,e,r){return new Wt(ye(t.r,e.r,r),ye(t.g,e.g,r),ye(t.b,e.b,r),ye(t.a,e.a,r))},array:function(t,e,r){return t.map(function(t,n){return ye(t,e[n],r)})}}),be=.95047,_e=1,we=1.08883,ke=4/29,Te=6/29,Ae=3*Te*Te,Me=Te*Te*Te,Se=Math.PI/180,Ee=180/Math.PI;function Ce(t){return t>Me?Math.pow(t,1/3):t/Ae+ke}function Le(t){return t>Te?t*t*t:Ae*(t-ke)}function Pe(t){return 255*(t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055)}function Oe(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function Ie(t){var e=Oe(t.r),r=Oe(t.g),n=Oe(t.b),a=Ce((.4124564*e+.3575761*r+.1804375*n)/be),i=Ce((.2126729*e+.7151522*r+.072175*n)/_e);return{l:116*i-16,a:500*(a-i),b:200*(i-Ce((.0193339*e+.119192*r+.9503041*n)/we)),alpha:t.a}}function ze(t){var e=(t.l+16)/116,r=isNaN(t.a)?e:e+t.a/500,n=isNaN(t.b)?e:e-t.b/200;return e=_e*Le(e),r=be*Le(r),n=we*Le(n),new Wt(Pe(3.2404542*r-1.5371385*e-.4985314*n),Pe(-.969266*r+1.8760108*e+.041556*n),Pe(.0556434*r-.2040259*e+1.0572252*n),t.alpha)}var De={forward:Ie,reverse:ze,interpolate:function(t,e,r){return{l:ye(t.l,e.l,r),a:ye(t.a,e.a,r),b:ye(t.b,e.b,r),alpha:ye(t.alpha,e.alpha,r)}}},Re={forward:function(t){var e=Ie(t),r=e.l,n=e.a,a=e.b,i=Math.atan2(a,n)*Ee;return{h:i<0?i+360:i,c:Math.sqrt(n*n+a*a),l:r,alpha:t.a}},reverse:function(t){var e=t.h*Se,r=t.c;return ze({l:t.l,a:Math.cos(e)*r,b:Math.sin(e)*r,alpha:t.alpha})},interpolate:function(t,e,r){return{h:function(t,e,r){var n=e-t;return t+r*(n>180||n<-180?n-360*Math.round(n/360):n)}(t.h,e.h,r),c:ye(t.c,e.c,r),l:ye(t.l,e.l,r),alpha:ye(t.alpha,e.alpha,r)}}},Fe=Object.freeze({lab:De,hcl:Re}),Be=function(t,e,r,n,a){this.type=t,this.operator=e,this.interpolation=r,this.input=n,this.labels=[],this.outputs=[];for(var i=0,o=a;i<o.length;i+=1){var s=o[i],l=s[0],c=s[1];this.labels.push(l),this.outputs.push(c)}};function Ne(t,e,r,n){var a=n-r,i=t-r;return 0===a?0:1===e?i/a:(Math.pow(e,i)-1)/(Math.pow(e,a)-1)}Be.interpolationFactor=function(t,e,n,a){var i=0;if(\"exponential\"===t.name)i=Ne(e,t.base,n,a);else if(\"linear\"===t.name)i=Ne(e,1,n,a);else if(\"cubic-bezier\"===t.name){var o=t.controlPoints;i=new r(o[0],o[1],o[2],o[3]).solve(Ne(e,1,n,a))}return i},Be.parse=function(t,e){var r=t[0],n=t[1],a=t[2],i=t.slice(3);if(!Array.isArray(n)||0===n.length)return e.error(\"Expected an interpolation type expression.\",1);if(\"linear\"===n[0])n={name:\"linear\"};else if(\"exponential\"===n[0]){var o=n[1];if(\"number\"!=typeof o)return e.error(\"Exponential interpolation requires a numeric base.\",1,1);n={name:\"exponential\",base:o}}else{if(\"cubic-bezier\"!==n[0])return e.error(\"Unknown interpolation type \"+String(n[0]),1,0);var s=n.slice(1);if(4!==s.length||s.some(function(t){return\"number\"!=typeof t||t<0||t>1}))return e.error(\"Cubic bezier interpolation requires four numeric arguments with values between 0 and 1.\",1);n={name:\"cubic-bezier\",controlPoints:s}}if(t.length-1<4)return e.error(\"Expected at least 4 arguments, but found only \"+(t.length-1)+\".\");if((t.length-1)%2!=0)return e.error(\"Expected an even number of arguments.\");if(!(a=e.parse(a,2,zt)))return null;var l=[],c=null;\"interpolate-hcl\"===r||\"interpolate-lab\"===r?c=Ft:e.expectedType&&\"value\"!==e.expectedType.kind&&(c=e.expectedType);for(var u=0;u<i.length;u+=2){var h=i[u],f=i[u+1],p=u+3,d=u+4;if(\"number\"!=typeof h)return e.error('Input/output pairs for \"interpolate\" expressions must be defined using literal numeric values (not computed expressions) for the input values.',p);if(l.length&&l[l.length-1][0]>=h)return e.error('Input/output pairs for \"interpolate\" expressions must be arranged with input values in strictly ascending order.',p);var g=e.parse(f,d,c);if(!g)return null;c=c||g.type,l.push([h,g])}return\"number\"===c.kind||\"color\"===c.kind||\"array\"===c.kind&&\"number\"===c.itemType.kind&&\"number\"==typeof c.N?new Be(c,r,n,a,l):e.error(\"Type \"+qt(c)+\" is not interpolatable.\")},Be.prototype.evaluate=function(t){var e=this.labels,r=this.outputs;if(1===e.length)return r[0].evaluate(t);var n=this.input.evaluate(t);if(n<=e[0])return r[0].evaluate(t);var a=e.length;if(n>=e[a-1])return r[a-1].evaluate(t);var i=ve(e,n),o=e[i],s=e[i+1],l=Be.interpolationFactor(this.interpolation,n,o,s),c=r[i].evaluate(t),u=r[i+1].evaluate(t);return\"interpolate\"===this.operator?xe[this.type.kind.toLowerCase()](c,u,l):\"interpolate-hcl\"===this.operator?Re.reverse(Re.interpolate(Re.forward(c),Re.forward(u),l)):De.reverse(De.interpolate(De.forward(c),De.forward(u),l))},Be.prototype.eachChild=function(t){t(this.input);for(var e=0,r=this.outputs;e<r.length;e+=1)t(r[e])},Be.prototype.possibleOutputs=function(){var t;return(t=[]).concat.apply(t,this.outputs.map(function(t){return t.possibleOutputs()}))},Be.prototype.serialize=function(){var t;t=\"linear\"===this.interpolation.name?[\"linear\"]:\"exponential\"===this.interpolation.name?1===this.interpolation.base?[\"linear\"]:[\"exponential\",this.interpolation.base]:[\"cubic-bezier\"].concat(this.interpolation.controlPoints);for(var e=[this.operator,t,this.input.serialize()],r=0;r<this.labels.length;r++)e.push(this.labels[r],this.outputs[r].serialize());return e};var je=function(t,e){this.type=t,this.args=e};je.parse=function(t,e){if(t.length<2)return e.error(\"Expectected at least one argument.\");var r=null,n=e.expectedType;n&&\"value\"!==n.kind&&(r=n);for(var a=[],i=0,o=t.slice(1);i<o.length;i+=1){var s=o[i],l=e.parse(s,1+a.length,r,void 0,{typeAnnotation:\"omit\"});if(!l)return null;r=r||l.type,a.push(l)}var c=n&&a.some(function(t){return Gt(n,t.type)});return new je(c?Nt:r,a)},je.prototype.evaluate=function(t){for(var e=null,r=0,n=this.args;r<n.length&&null===(e=n[r].evaluate(t));r+=1);return e},je.prototype.eachChild=function(t){this.args.forEach(t)},je.prototype.possibleOutputs=function(){var t;return(t=[]).concat.apply(t,this.args.map(function(t){return t.possibleOutputs()}))},je.prototype.serialize=function(){var t=[\"coalesce\"];return this.eachChild(function(e){t.push(e.serialize())}),t};var Ve=function(t,e){this.type=e.type,this.bindings=[].concat(t),this.result=e};Ve.prototype.evaluate=function(t){return this.result.evaluate(t)},Ve.prototype.eachChild=function(t){for(var e=0,r=this.bindings;e<r.length;e+=1)t(r[e][1]);t(this.result)},Ve.parse=function(t,e){if(t.length<4)return e.error(\"Expected at least 3 arguments, but found \"+(t.length-1)+\" instead.\");for(var r=[],n=1;n<t.length-1;n+=2){var a=t[n];if(\"string\"!=typeof a)return e.error(\"Expected string, but found \"+typeof a+\" instead.\",n);if(/[^a-zA-Z0-9_]/.test(a))return e.error(\"Variable names must contain only alphanumeric characters or '_'.\",n);var i=e.parse(t[n+1],n+1);if(!i)return null;r.push([a,i])}var o=e.parse(t[t.length-1],t.length-1,e.expectedType,r);return o?new Ve(r,o):null},Ve.prototype.possibleOutputs=function(){return this.result.possibleOutputs()},Ve.prototype.serialize=function(){for(var t=[\"let\"],e=0,r=this.bindings;e<r.length;e+=1){var n=r[e],a=n[0],i=n[1];t.push(a,i.serialize())}return t.push(this.result.serialize()),t};var Ue=function(t,e,r){this.type=t,this.index=e,this.input=r};Ue.parse=function(t,e){if(3!==t.length)return e.error(\"Expected 2 arguments, but found \"+(t.length-1)+\" instead.\");var r=e.parse(t[1],1,zt),n=e.parse(t[2],2,Ut(e.expectedType||Nt));if(!r||!n)return null;var a=n.type;return new Ue(a.itemType,r,n)},Ue.prototype.evaluate=function(t){var e=this.index.evaluate(t),r=this.input.evaluate(t);if(e<0)throw new ee(\"Array index out of bounds: \"+e+\" < 0.\");if(e>=r.length)throw new ee(\"Array index out of bounds: \"+e+\" > \"+(r.length-1)+\".\");if(e!==Math.floor(e))throw new ee(\"Array index must be an integer, but found \"+e+\" instead.\");return r[e]},Ue.prototype.eachChild=function(t){t(this.index),t(this.input)},Ue.prototype.possibleOutputs=function(){return[void 0]},Ue.prototype.serialize=function(){return[\"at\",this.index.serialize(),this.input.serialize()]};var qe=function(t,e,r,n,a,i){this.inputType=t,this.type=e,this.input=r,this.cases=n,this.outputs=a,this.otherwise=i};qe.parse=function(t,e){if(t.length<5)return e.error(\"Expected at least 4 arguments, but found only \"+(t.length-1)+\".\");if(t.length%2!=1)return e.error(\"Expected an even number of arguments.\");var r,n;e.expectedType&&\"value\"!==e.expectedType.kind&&(n=e.expectedType);for(var a={},i=[],o=2;o<t.length-1;o+=2){var s=t[o],l=t[o+1];Array.isArray(s)||(s=[s]);var c=e.concat(o);if(0===s.length)return c.error(\"Expected at least one branch label.\");for(var u=0,h=s;u<h.length;u+=1){var f=h[u];if(\"number\"!=typeof f&&\"string\"!=typeof f)return c.error(\"Branch labels must be numbers or strings.\");if(\"number\"==typeof f&&Math.abs(f)>Number.MAX_SAFE_INTEGER)return c.error(\"Branch labels must be integers no larger than \"+Number.MAX_SAFE_INTEGER+\".\");if(\"number\"==typeof f&&Math.floor(f)!==f)return c.error(\"Numeric branch labels must be integer values.\");if(r){if(c.checkSubtype(r,Qt(f)))return null}else r=Qt(f);if(void 0!==a[String(f)])return c.error(\"Branch labels must be unique.\");a[String(f)]=i.length}var p=e.parse(l,o,n);if(!p)return null;n=n||p.type,i.push(p)}var d=e.parse(t[1],1,Nt);if(!d)return null;var g=e.parse(t[t.length-1],t.length-1,n);return g?\"value\"!==d.type.kind&&e.concat(1).checkSubtype(r,d.type)?null:new qe(r,n,d,a,i,g):null},qe.prototype.evaluate=function(t){var e=this.input.evaluate(t);return(Qt(e)===this.inputType&&this.outputs[this.cases[e]]||this.otherwise).evaluate(t)},qe.prototype.eachChild=function(t){t(this.input),this.outputs.forEach(t),t(this.otherwise)},qe.prototype.possibleOutputs=function(){var t;return(t=[]).concat.apply(t,this.outputs.map(function(t){return t.possibleOutputs()})).concat(this.otherwise.possibleOutputs())},qe.prototype.serialize=function(){for(var t=this,e=[\"match\",this.input.serialize()],r=[],n={},a=0,i=Object.keys(this.cases).sort();a<i.length;a+=1){var o=i[a];void 0===(h=n[this.cases[o]])?(n[this.cases[o]]=r.length,r.push([this.cases[o],[o]])):r[h][1].push(o)}for(var s=function(e){return\"number\"===t.inputType.kind?Number(e):e},l=0,c=r;l<c.length;l+=1){var u=c[l],h=u[0],f=u[1];1===f.length?e.push(s(f[0])):e.push(f.map(s)),e.push(this.outputs[outputIndex$1].serialize())}return e.push(this.otherwise.serialize()),e};var He=function(t,e,r){this.type=t,this.branches=e,this.otherwise=r};function Ge(t,e){return\"==\"===t||\"!=\"===t?\"boolean\"===e.kind||\"string\"===e.kind||\"number\"===e.kind||\"null\"===e.kind||\"value\"===e.kind:\"string\"===e.kind||\"number\"===e.kind||\"value\"===e.kind}function Ye(t,e,r,n){return 0===n.compare(e,r)}function We(t,e,r){var n=\"==\"!==t&&\"!=\"!==t;return function(){function a(t,e,r){this.type=Rt,this.lhs=t,this.rhs=e,this.collator=r,this.hasUntypedArgument=\"value\"===t.type.kind||\"value\"===e.type.kind}return a.parse=function(t,e){if(3!==t.length&&4!==t.length)return e.error(\"Expected two or three arguments.\");var r=t[0],i=e.parse(t[1],1,Nt);if(!i)return null;if(!Ge(r,i.type))return e.concat(1).error('\"'+r+\"\\\" comparisons are not supported for type '\"+qt(i.type)+\"'.\");var o=e.parse(t[2],2,Nt);if(!o)return null;if(!Ge(r,o.type))return e.concat(2).error('\"'+r+\"\\\" comparisons are not supported for type '\"+qt(o.type)+\"'.\");if(i.type.kind!==o.type.kind&&\"value\"!==i.type.kind&&\"value\"!==o.type.kind)return e.error(\"Cannot compare types '\"+qt(i.type)+\"' and '\"+qt(o.type)+\"'.\");n&&(\"value\"===i.type.kind&&\"value\"!==o.type.kind?i=new ne(o.type,[i]):\"value\"!==i.type.kind&&\"value\"===o.type.kind&&(o=new ne(i.type,[o])));var s=null;if(4===t.length){if(\"string\"!==i.type.kind&&\"string\"!==o.type.kind&&\"value\"!==i.type.kind&&\"value\"!==o.type.kind)return e.error(\"Cannot use collator to compare non-string types.\");if(!(s=e.parse(t[3],3,jt)))return null}return new a(i,o,s)},a.prototype.evaluate=function(a){var i=this.lhs.evaluate(a),o=this.rhs.evaluate(a);if(n&&this.hasUntypedArgument){var s=Qt(i),l=Qt(o);if(s.kind!==l.kind||\"string\"!==s.kind&&\"number\"!==s.kind)throw new ee('Expected arguments for \"'+t+'\" to be (string, string) or (number, number), but found ('+s.kind+\", \"+l.kind+\") instead.\")}if(this.collator&&!n&&this.hasUntypedArgument){var c=Qt(i),u=Qt(o);if(\"string\"!==c.kind||\"string\"!==u.kind)return e(a,i,o)}return this.collator?r(a,i,o,this.collator.evaluate(a)):e(a,i,o)},a.prototype.eachChild=function(t){t(this.lhs),t(this.rhs),this.collator&&t(this.collator)},a.prototype.possibleOutputs=function(){return[!0,!1]},a.prototype.serialize=function(){var e=[t];return this.eachChild(function(t){e.push(t.serialize())}),e},a}()}He.parse=function(t,e){if(t.length<4)return e.error(\"Expected at least 3 arguments, but found only \"+(t.length-1)+\".\");if(t.length%2!=0)return e.error(\"Expected an odd number of arguments.\");var r;e.expectedType&&\"value\"!==e.expectedType.kind&&(r=e.expectedType);for(var n=[],a=1;a<t.length-1;a+=2){var i=e.parse(t[a],a,Rt);if(!i)return null;var o=e.parse(t[a+1],a+1,r);if(!o)return null;n.push([i,o]),r=r||o.type}var s=e.parse(t[t.length-1],t.length-1,r);return s?new He(r,n,s):null},He.prototype.evaluate=function(t){for(var e=0,r=this.branches;e<r.length;e+=1){var n=r[e],a=n[0],i=n[1];if(a.evaluate(t))return i.evaluate(t)}return this.otherwise.evaluate(t)},He.prototype.eachChild=function(t){for(var e=0,r=this.branches;e<r.length;e+=1){var n=r[e],a=n[0],i=n[1];t(a),t(i)}t(this.otherwise)},He.prototype.possibleOutputs=function(){var t;return(t=[]).concat.apply(t,this.branches.map(function(t){return t[0],t[1].possibleOutputs()})).concat(this.otherwise.possibleOutputs())},He.prototype.serialize=function(){var t=[\"case\"];return this.eachChild(function(e){t.push(e.serialize())}),t};var Xe=We(\"==\",function(t,e,r){return e===r},Ye),Ze=We(\"!=\",function(t,e,r){return e!==r},function(t,e,r,n){return!Ye(0,e,r,n)}),Je=We(\"<\",function(t,e,r){return e<r},function(t,e,r,n){return n.compare(e,r)<0}),Ke=We(\">\",function(t,e,r){return e>r},function(t,e,r,n){return n.compare(e,r)>0}),Qe=We(\"<=\",function(t,e,r){return e<=r},function(t,e,r,n){return n.compare(e,r)<=0}),$e=We(\">=\",function(t,e,r){return e>=r},function(t,e,r,n){return n.compare(e,r)>=0}),tr=function(t,e,r,n,a){this.type=Dt,this.number=t,this.locale=e,this.currency=r,this.minFractionDigits=n,this.maxFractionDigits=a};tr.parse=function(t,e){if(3!==t.length)return e.error(\"Expected two arguments.\");var r=e.parse(t[1],1,zt);if(!r)return null;var n=t[2];if(\"object\"!=typeof n||Array.isArray(n))return e.error(\"NumberFormat options argument must be an object.\");var a=null;if(n.locale&&!(a=e.parse(n.locale,1,Dt)))return null;var i=null;if(n.currency&&!(i=e.parse(n.currency,1,Dt)))return null;var o=null;if(n[\"min-fraction-digits\"]&&!(o=e.parse(n[\"min-fraction-digits\"],1,zt)))return null;var s=null;return n[\"max-fraction-digits\"]&&!(s=e.parse(n[\"max-fraction-digits\"],1,zt))?null:new tr(r,a,i,o,s)},tr.prototype.evaluate=function(t){return new Intl.NumberFormat(this.locale?this.locale.evaluate(t):[],{style:this.currency?\"currency\":\"decimal\",currency:this.currency?this.currency.evaluate(t):void 0,minimumFractionDigits:this.minFractionDigits?this.minFractionDigits.evaluate(t):void 0,maximumFractionDigits:this.maxFractionDigits?this.maxFractionDigits.evaluate(t):void 0}).format(this.number.evaluate(t))},tr.prototype.eachChild=function(t){t(this.number),this.locale&&t(this.locale),this.currency&&t(this.currency),this.minFractionDigits&&t(this.minFractionDigits),this.maxFractionDigits&&t(this.maxFractionDigits)},tr.prototype.possibleOutputs=function(){return[void 0]},tr.prototype.serialize=function(){var t={};return this.locale&&(t.locale=this.locale.serialize()),this.currency&&(t.currency=this.currency.serialize()),this.minFractionDigits&&(t[\"min-fraction-digits\"]=this.minFractionDigits.serialize()),this.maxFractionDigits&&(t[\"max-fraction-digits\"]=this.maxFractionDigits.serialize()),[\"number-format\",this.number.serialize(),t]};var er=function(t){this.type=zt,this.input=t};er.parse=function(t,e){if(2!==t.length)return e.error(\"Expected 1 argument, but found \"+(t.length-1)+\" instead.\");var r=e.parse(t[1],1);return r?\"array\"!==r.type.kind&&\"string\"!==r.type.kind&&\"value\"!==r.type.kind?e.error(\"Expected argument of type string or array, but found \"+qt(r.type)+\" instead.\"):new er(r):null},er.prototype.evaluate=function(t){var e=this.input.evaluate(t);if(\"string\"==typeof e)return e.length;if(Array.isArray(e))return e.length;throw new ee(\"Expected value to be of type string or array, but found \"+qt(Qt(e))+\" instead.\")},er.prototype.eachChild=function(t){t(this.input)},er.prototype.possibleOutputs=function(){return[void 0]},er.prototype.serialize=function(){var t=[\"length\"];return this.eachChild(function(e){t.push(e.serialize())}),t};var rr={\"==\":Xe,\"!=\":Ze,\">\":Ke,\"<\":Je,\">=\":$e,\"<=\":Qe,array:ne,at:Ue,boolean:ne,case:He,coalesce:je,collator:ue,format:ae,interpolate:Be,\"interpolate-hcl\":Be,\"interpolate-lab\":Be,length:er,let:Ve,literal:te,match:qe,number:ne,\"number-format\":tr,object:ne,step:me,string:ne,\"to-boolean\":oe,\"to-color\":oe,\"to-number\":oe,\"to-string\":oe,var:de};function nr(t,e){var r=e[0],n=e[1],a=e[2],i=e[3];r=r.evaluate(t),n=n.evaluate(t),a=a.evaluate(t);var o=i?i.evaluate(t):1,s=Kt(r,n,a,o);if(s)throw new ee(s);return new Wt(r/255*o,n/255*o,a/255*o,o)}function ar(t,e){return t in e}function ir(t,e){var r=e[t];return void 0===r?null:r}function or(t){return{type:t}}function sr(t){return{result:\"success\",value:t}}function lr(t){return{result:\"error\",value:t}}function cr(t){return\"data-driven\"===t[\"property-type\"]||\"cross-faded-data-driven\"===t[\"property-type\"]}function ur(t){return!!t.expression&&t.expression.parameters.indexOf(\"zoom\")>-1}function hr(t){return!!t.expression&&t.expression.interpolated}function fr(t){return t instanceof Number?\"number\":t instanceof String?\"string\":t instanceof Boolean?\"boolean\":Array.isArray(t)?\"array\":null===t?\"null\":typeof t}function pr(t){return\"object\"==typeof t&&null!==t&&!Array.isArray(t)}function dr(t){return t}function gr(t,e,r){return void 0!==t?t:void 0!==e?e:void 0!==r?r:void 0}function vr(t,e,r,n,a){return gr(typeof r===a?n[r]:void 0,t.default,e.default)}function mr(t,e,r){if(\"number\"!==fr(r))return gr(t.default,e.default);var n=t.stops.length;if(1===n)return t.stops[0][1];if(r<=t.stops[0][0])return t.stops[0][1];if(r>=t.stops[n-1][0])return t.stops[n-1][1];var a=ve(t.stops.map(function(t){return t[0]}),r);return t.stops[a][1]}function yr(t,e,r){var n=void 0!==t.base?t.base:1;if(\"number\"!==fr(r))return gr(t.default,e.default);var a=t.stops.length;if(1===a)return t.stops[0][1];if(r<=t.stops[0][0])return t.stops[0][1];if(r>=t.stops[a-1][0])return t.stops[a-1][1];var i=ve(t.stops.map(function(t){return t[0]}),r),o=function(t,e,r,n){var a=n-r,i=t-r;return 0===a?0:1===e?i/a:(Math.pow(e,i)-1)/(Math.pow(e,a)-1)}(r,n,t.stops[i][0],t.stops[i+1][0]),s=t.stops[i][1],l=t.stops[i+1][1],c=xe[e.type]||dr;if(t.colorSpace&&\"rgb\"!==t.colorSpace){var u=Fe[t.colorSpace];c=function(t,e){return u.reverse(u.interpolate(u.forward(t),u.forward(e),o))}}return\"function\"==typeof s.evaluate?{evaluate:function(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];var r=s.evaluate.apply(void 0,t),n=l.evaluate.apply(void 0,t);if(void 0!==r&&void 0!==n)return c(r,n,o)}}:c(s,l,o)}function xr(t,e,r){return\"color\"===e.type?r=Wt.parse(r):\"formatted\"===e.type?r=Jt.fromString(r.toString()):fr(r)===e.type||\"enum\"===e.type&&e.values[r]||(r=void 0),gr(r,t.default,e.default)}ce.register(rr,{error:[{kind:\"error\"},[Dt],function(t,e){var r=e[0];throw new ee(r.evaluate(t))}],typeof:[Dt,[Nt],function(t,e){return qt(Qt(e[0].evaluate(t)))}],\"to-rgba\":[Ut(zt,4),[Ft],function(t,e){return e[0].evaluate(t).toArray()}],rgb:[Ft,[zt,zt,zt],nr],rgba:[Ft,[zt,zt,zt,zt],nr],has:{type:Rt,overloads:[[[Dt],function(t,e){return ar(e[0].evaluate(t),t.properties())}],[[Dt,Bt],function(t,e){var r=e[0],n=e[1];return ar(r.evaluate(t),n.evaluate(t))}]]},get:{type:Nt,overloads:[[[Dt],function(t,e){return ir(e[0].evaluate(t),t.properties())}],[[Dt,Bt],function(t,e){var r=e[0],n=e[1];return ir(r.evaluate(t),n.evaluate(t))}]]},\"feature-state\":[Nt,[Dt],function(t,e){return ir(e[0].evaluate(t),t.featureState||{})}],properties:[Bt,[],function(t){return t.properties()}],\"geometry-type\":[Dt,[],function(t){return t.geometryType()}],id:[Nt,[],function(t){return t.id()}],zoom:[zt,[],function(t){return t.globals.zoom}],\"heatmap-density\":[zt,[],function(t){return t.globals.heatmapDensity||0}],\"line-progress\":[zt,[],function(t){return t.globals.lineProgress||0}],accumulated:[Nt,[],function(t){return void 0===t.globals.accumulated?null:t.globals.accumulated}],\"+\":[zt,or(zt),function(t,e){for(var r=0,n=0,a=e;n<a.length;n+=1)r+=a[n].evaluate(t);return r}],\"*\":[zt,or(zt),function(t,e){for(var r=1,n=0,a=e;n<a.length;n+=1)r*=a[n].evaluate(t);return r}],\"-\":{type:zt,overloads:[[[zt,zt],function(t,e){var r=e[0],n=e[1];return r.evaluate(t)-n.evaluate(t)}],[[zt],function(t,e){return-e[0].evaluate(t)}]]},\"/\":[zt,[zt,zt],function(t,e){var r=e[0],n=e[1];return r.evaluate(t)/n.evaluate(t)}],\"%\":[zt,[zt,zt],function(t,e){var r=e[0],n=e[1];return r.evaluate(t)%n.evaluate(t)}],ln2:[zt,[],function(){return Math.LN2}],pi:[zt,[],function(){return Math.PI}],e:[zt,[],function(){return Math.E}],\"^\":[zt,[zt,zt],function(t,e){var r=e[0],n=e[1];return Math.pow(r.evaluate(t),n.evaluate(t))}],sqrt:[zt,[zt],function(t,e){var r=e[0];return Math.sqrt(r.evaluate(t))}],log10:[zt,[zt],function(t,e){var r=e[0];return Math.log(r.evaluate(t))/Math.LN10}],ln:[zt,[zt],function(t,e){var r=e[0];return Math.log(r.evaluate(t))}],log2:[zt,[zt],function(t,e){var r=e[0];return Math.log(r.evaluate(t))/Math.LN2}],sin:[zt,[zt],function(t,e){var r=e[0];return Math.sin(r.evaluate(t))}],cos:[zt,[zt],function(t,e){var r=e[0];return Math.cos(r.evaluate(t))}],tan:[zt,[zt],function(t,e){var r=e[0];return Math.tan(r.evaluate(t))}],asin:[zt,[zt],function(t,e){var r=e[0];return Math.asin(r.evaluate(t))}],acos:[zt,[zt],function(t,e){var r=e[0];return Math.acos(r.evaluate(t))}],atan:[zt,[zt],function(t,e){var r=e[0];return Math.atan(r.evaluate(t))}],min:[zt,or(zt),function(t,e){return Math.min.apply(Math,e.map(function(e){return e.evaluate(t)}))}],max:[zt,or(zt),function(t,e){return Math.max.apply(Math,e.map(function(e){return e.evaluate(t)}))}],abs:[zt,[zt],function(t,e){var r=e[0];return Math.abs(r.evaluate(t))}],round:[zt,[zt],function(t,e){var r=e[0].evaluate(t);return r<0?-Math.round(-r):Math.round(r)}],floor:[zt,[zt],function(t,e){var r=e[0];return Math.floor(r.evaluate(t))}],ceil:[zt,[zt],function(t,e){var r=e[0];return Math.ceil(r.evaluate(t))}],\"filter-==\":[Rt,[Dt,Nt],function(t,e){var r=e[0],n=e[1];return t.properties()[r.value]===n.value}],\"filter-id-==\":[Rt,[Nt],function(t,e){var r=e[0];return t.id()===r.value}],\"filter-type-==\":[Rt,[Dt],function(t,e){var r=e[0];return t.geometryType()===r.value}],\"filter-<\":[Rt,[Dt,Nt],function(t,e){var r=e[0],n=e[1],a=t.properties()[r.value],i=n.value;return typeof a==typeof i&&a<i}],\"filter-id-<\":[Rt,[Nt],function(t,e){var r=e[0],n=t.id(),a=r.value;return typeof n==typeof a&&n<a}],\"filter->\":[Rt,[Dt,Nt],function(t,e){var r=e[0],n=e[1],a=t.properties()[r.value],i=n.value;return typeof a==typeof i&&a>i}],\"filter-id->\":[Rt,[Nt],function(t,e){var r=e[0],n=t.id(),a=r.value;return typeof n==typeof a&&n>a}],\"filter-<=\":[Rt,[Dt,Nt],function(t,e){var r=e[0],n=e[1],a=t.properties()[r.value],i=n.value;return typeof a==typeof i&&a<=i}],\"filter-id-<=\":[Rt,[Nt],function(t,e){var r=e[0],n=t.id(),a=r.value;return typeof n==typeof a&&n<=a}],\"filter->=\":[Rt,[Dt,Nt],function(t,e){var r=e[0],n=e[1],a=t.properties()[r.value],i=n.value;return typeof a==typeof i&&a>=i}],\"filter-id->=\":[Rt,[Nt],function(t,e){var r=e[0],n=t.id(),a=r.value;return typeof n==typeof a&&n>=a}],\"filter-has\":[Rt,[Nt],function(t,e){return e[0].value in t.properties()}],\"filter-has-id\":[Rt,[],function(t){return null!==t.id()}],\"filter-type-in\":[Rt,[Ut(Dt)],function(t,e){return e[0].value.indexOf(t.geometryType())>=0}],\"filter-id-in\":[Rt,[Ut(Nt)],function(t,e){return e[0].value.indexOf(t.id())>=0}],\"filter-in-small\":[Rt,[Dt,Ut(Nt)],function(t,e){var r=e[0];return e[1].value.indexOf(t.properties()[r.value])>=0}],\"filter-in-large\":[Rt,[Dt,Ut(Nt)],function(t,e){var r=e[0],n=e[1];return function(t,e,r,n){for(;r<=n;){var a=r+n>>1;if(e[a]===t)return!0;e[a]>t?n=a-1:r=a+1}return!1}(t.properties()[r.value],n.value,0,n.value.length-1)}],all:{type:Rt,overloads:[[[Rt,Rt],function(t,e){var r=e[0],n=e[1];return r.evaluate(t)&&n.evaluate(t)}],[or(Rt),function(t,e){for(var r=0,n=e;r<n.length;r+=1)if(!n[r].evaluate(t))return!1;return!0}]]},any:{type:Rt,overloads:[[[Rt,Rt],function(t,e){var r=e[0],n=e[1];return r.evaluate(t)||n.evaluate(t)}],[or(Rt),function(t,e){for(var r=0,n=e;r<n.length;r+=1)if(n[r].evaluate(t))return!0;return!1}]]},\"!\":[Rt,[Rt],function(t,e){return!e[0].evaluate(t)}],\"is-supported-script\":[Rt,[Dt],function(t,e){var r=e[0],n=t.globals&&t.globals.isSupportedScript;return!n||n(r.evaluate(t))}],upcase:[Dt,[Dt],function(t,e){return e[0].evaluate(t).toUpperCase()}],downcase:[Dt,[Dt],function(t,e){return e[0].evaluate(t).toLowerCase()}],concat:[Dt,or(Nt),function(t,e){return e.map(function(e){return $t(e.evaluate(t))}).join(\"\")}],\"resolved-locale\":[Dt,[jt],function(t,e){return e[0].evaluate(t).resolvedLocale()}]});var br=function(t,e){this.expression=t,this._warningHistory={},this._evaluator=new le,this._defaultValue=e?function(t){return\"color\"===t.type&&pr(t.default)?new Wt(0,0,0,0):\"color\"===t.type?Wt.parse(t.default)||null:void 0===t.default?null:t.default}(e):null,this._enumValues=e&&\"enum\"===e.type?e.values:null};function _r(t){return Array.isArray(t)&&t.length>0&&\"string\"==typeof t[0]&&t[0]in rr}function wr(t,e){var r=new ge(rr,[],e?function(t){var e={color:Ft,string:Dt,number:zt,enum:Dt,boolean:Rt,formatted:Vt};return\"array\"===t.type?Ut(e[t.value]||Nt,t.length):e[t.type]}(e):void 0),n=r.parse(t,void 0,void 0,void 0,e&&\"string\"===e.type?{typeAnnotation:\"coerce\"}:void 0);return n?sr(new br(n,e)):lr(r.errors)}br.prototype.evaluateWithoutErrorHandling=function(t,e,r,n){return this._evaluator.globals=t,this._evaluator.feature=e,this._evaluator.featureState=r,this._evaluator.formattedSection=n,this.expression.evaluate(this._evaluator)},br.prototype.evaluate=function(t,e,r,n){this._evaluator.globals=t,this._evaluator.feature=e||null,this._evaluator.featureState=r||null,this._evaluator.formattedSection=n||null;try{var a=this.expression.evaluate(this._evaluator);if(null==a)return this._defaultValue;if(this._enumValues&&!(a in this._enumValues))throw new ee(\"Expected value to be one of \"+Object.keys(this._enumValues).map(function(t){return JSON.stringify(t)}).join(\", \")+\", but found \"+JSON.stringify(a)+\" instead.\");return a}catch(t){return this._warningHistory[t.message]||(this._warningHistory[t.message]=!0,\"undefined\"!=typeof console&&console.warn(t.message)),this._defaultValue}};var kr=function(t,e){this.kind=t,this._styleExpression=e,this.isStateDependent=\"constant\"!==t&&!fe(e.expression)};kr.prototype.evaluateWithoutErrorHandling=function(t,e,r,n){return this._styleExpression.evaluateWithoutErrorHandling(t,e,r,n)},kr.prototype.evaluate=function(t,e,r,n){return this._styleExpression.evaluate(t,e,r,n)};var Tr=function(t,e,r,n){this.kind=t,this.zoomStops=r,this._styleExpression=e,this.isStateDependent=\"camera\"!==t&&!fe(e.expression),this.interpolationType=n};function Ar(t,e){if(\"error\"===(t=wr(t,e)).result)return t;var r=t.value.expression,n=he(r);if(!n&&!cr(e))return lr([new Pt(\"\",\"data expressions not supported\")]);var a=pe(r,[\"zoom\"]);if(!a&&!ur(e))return lr([new Pt(\"\",\"zoom expressions not supported\")]);var i=function t(e){var r=null;if(e instanceof Ve)r=t(e.result);else if(e instanceof je)for(var n=0,a=e.args;n<a.length;n+=1){var i=a[n];if(r=t(i))break}else(e instanceof me||e instanceof Be)&&e.input instanceof ce&&\"zoom\"===e.input.name&&(r=e);return r instanceof Pt?r:(e.eachChild(function(e){var n=t(e);n instanceof Pt?r=n:!r&&n?r=new Pt(\"\",'\"zoom\" expression may only be used as input to a top-level \"step\" or \"interpolate\" expression.'):r&&n&&r!==n&&(r=new Pt(\"\",'Only one zoom-based \"step\" or \"interpolate\" subexpression may be used in an expression.'))}),r)}(r);if(!i&&!a)return lr([new Pt(\"\",'\"zoom\" expression may only be used as input to a top-level \"step\" or \"interpolate\" expression.')]);if(i instanceof Pt)return lr([i]);if(i instanceof Be&&!hr(e))return lr([new Pt(\"\",'\"interpolate\" expressions cannot be used with this property')]);if(!i)return sr(new kr(n?\"constant\":\"source\",t.value));var o=i instanceof Be?i.interpolation:void 0;return sr(new Tr(n?\"camera\":\"composite\",t.value,i.labels,o))}Tr.prototype.evaluateWithoutErrorHandling=function(t,e,r,n){return this._styleExpression.evaluateWithoutErrorHandling(t,e,r,n)},Tr.prototype.evaluate=function(t,e,r,n){return this._styleExpression.evaluate(t,e,r,n)},Tr.prototype.interpolationFactor=function(t,e,r){return this.interpolationType?Be.interpolationFactor(this.interpolationType,t,e,r):0};var Mr=function(t,e){this._parameters=t,this._specification=e,St(this,function t(e,r){var n,a,i,o=\"color\"===r.type,s=e.stops&&\"object\"==typeof e.stops[0][0],l=s||void 0!==e.property,c=s||!l,u=e.type||(hr(r)?\"exponential\":\"interval\");if(o&&((e=St({},e)).stops&&(e.stops=e.stops.map(function(t){return[t[0],Wt.parse(t[1])]})),e.default?e.default=Wt.parse(e.default):e.default=Wt.parse(r.default)),e.colorSpace&&\"rgb\"!==e.colorSpace&&!Fe[e.colorSpace])throw new Error(\"Unknown color space: \"+e.colorSpace);if(\"exponential\"===u)n=yr;else if(\"interval\"===u)n=mr;else if(\"categorical\"===u){n=vr,a=Object.create(null);for(var h=0,f=e.stops;h<f.length;h+=1){var p=f[h];a[p[0]]=p[1]}i=typeof e.stops[0][0]}else{if(\"identity\"!==u)throw new Error('Unknown function type \"'+u+'\"');n=xr}if(s){for(var d={},g=[],v=0;v<e.stops.length;v++){var m=e.stops[v],y=m[0].zoom;void 0===d[y]&&(d[y]={zoom:y,type:e.type,property:e.property,default:e.default,stops:[]},g.push(y)),d[y].stops.push([m[0].value,m[1]])}for(var x=[],b=0,_=g;b<_.length;b+=1){var w=_[b];x.push([d[w].zoom,t(d[w],r)])}var k={name:\"linear\"};return{kind:\"composite\",interpolationType:k,interpolationFactor:Be.interpolationFactor.bind(void 0,k),zoomStops:x.map(function(t){return t[0]}),evaluate:function(t,n){var a=t.zoom;return yr({stops:x,base:e.base},r,a).evaluate(a,n)}}}if(c){var T=\"exponential\"===u?{name:\"exponential\",base:void 0!==e.base?e.base:1}:null;return{kind:\"camera\",interpolationType:T,interpolationFactor:Be.interpolationFactor.bind(void 0,T),zoomStops:e.stops.map(function(t){return t[0]}),evaluate:function(t){var o=t.zoom;return n(e,r,o,a,i)}}}return{kind:\"source\",evaluate:function(t,o){var s=o&&o.properties?o.properties[e.property]:void 0;return void 0===s?gr(e.default,r.default):n(e,r,s,a,i)}}}(this._parameters,this._specification))};function Sr(t){var e=t.key,r=t.value,n=t.valueSpec||{},a=t.objectElementValidators||{},i=t.style,o=t.styleSpec,s=[],l=fr(r);if(\"object\"!==l)return[new At(e,r,\"object expected, \"+l+\" found\")];for(var c in r){var u=c.split(\".\")[0],h=n[u]||n[\"*\"],f=void 0;if(a[u])f=a[u];else if(n[u])f=Kr;else if(a[\"*\"])f=a[\"*\"];else{if(!n[\"*\"]){s.push(new At(e,r[c],'unknown property \"'+c+'\"'));continue}f=Kr}s=s.concat(f({key:(e?e+\".\":e)+c,value:r[c],valueSpec:h,style:i,styleSpec:o,object:r,objectKey:c},r))}for(var p in n)a[p]||n[p].required&&void 0===n[p].default&&void 0===r[p]&&s.push(new At(e,r,'missing required property \"'+p+'\"'));return s}function Er(t){var e=t.value,r=t.valueSpec,n=t.style,a=t.styleSpec,i=t.key,o=t.arrayElementValidator||Kr;if(\"array\"!==fr(e))return[new At(i,e,\"array expected, \"+fr(e)+\" found\")];if(r.length&&e.length!==r.length)return[new At(i,e,\"array length \"+r.length+\" expected, length \"+e.length+\" found\")];if(r[\"min-length\"]&&e.length<r[\"min-length\"])return[new At(i,e,\"array length at least \"+r[\"min-length\"]+\" expected, length \"+e.length+\" found\")];var s={type:r.value,values:r.values};a.$version<7&&(s.function=r.function),\"object\"===fr(r.value)&&(s=r.value);for(var l=[],c=0;c<e.length;c++)l=l.concat(o({array:e,arrayIndex:c,value:e[c],valueSpec:s,style:n,styleSpec:a,key:i+\"[\"+c+\"]\"}));return l}function Cr(t){var e=t.key,r=t.value,n=t.valueSpec,a=fr(r);return\"number\"!==a?[new At(e,r,\"number expected, \"+a+\" found\")]:\"minimum\"in n&&r<n.minimum?[new At(e,r,r+\" is less than the minimum value \"+n.minimum)]:\"maximum\"in n&&r>n.maximum?[new At(e,r,r+\" is greater than the maximum value \"+n.maximum)]:[]}function Lr(t){var e,r,n,a=t.valueSpec,i=Ct(t.value.type),o={},s=\"categorical\"!==i&&void 0===t.value.property,l=!s,c=\"array\"===fr(t.value.stops)&&\"array\"===fr(t.value.stops[0])&&\"object\"===fr(t.value.stops[0][0]),u=Sr({key:t.key,value:t.value,valueSpec:t.styleSpec.function,style:t.style,styleSpec:t.styleSpec,objectElementValidators:{stops:function(t){if(\"identity\"===i)return[new At(t.key,t.value,'identity function may not have a \"stops\" property')];var e=[],r=t.value;return e=e.concat(Er({key:t.key,value:r,valueSpec:t.valueSpec,style:t.style,styleSpec:t.styleSpec,arrayElementValidator:h})),\"array\"===fr(r)&&0===r.length&&e.push(new At(t.key,r,\"array must have at least one stop\")),e},default:function(t){return Kr({key:t.key,value:t.value,valueSpec:a,style:t.style,styleSpec:t.styleSpec})}}});return\"identity\"===i&&s&&u.push(new At(t.key,t.value,'missing required property \"property\"')),\"identity\"===i||t.value.stops||u.push(new At(t.key,t.value,'missing required property \"stops\"')),\"exponential\"===i&&t.valueSpec.expression&&!hr(t.valueSpec)&&u.push(new At(t.key,t.value,\"exponential functions not supported\")),t.styleSpec.$version>=8&&(l&&!cr(t.valueSpec)?u.push(new At(t.key,t.value,\"property functions not supported\")):s&&!ur(t.valueSpec)&&u.push(new At(t.key,t.value,\"zoom functions not supported\"))),\"categorical\"!==i&&!c||void 0!==t.value.property||u.push(new At(t.key,t.value,'\"property\" property is required')),u;function h(t){var e=[],i=t.value,s=t.key;if(\"array\"!==fr(i))return[new At(s,i,\"array expected, \"+fr(i)+\" found\")];if(2!==i.length)return[new At(s,i,\"array length 2 expected, length \"+i.length+\" found\")];if(c){if(\"object\"!==fr(i[0]))return[new At(s,i,\"object expected, \"+fr(i[0])+\" found\")];if(void 0===i[0].zoom)return[new At(s,i,\"object stop key must have zoom\")];if(void 0===i[0].value)return[new At(s,i,\"object stop key must have value\")];if(n&&n>Ct(i[0].zoom))return[new At(s,i[0].zoom,\"stop zoom values must appear in ascending order\")];Ct(i[0].zoom)!==n&&(n=Ct(i[0].zoom),r=void 0,o={}),e=e.concat(Sr({key:s+\"[0]\",value:i[0],valueSpec:{zoom:{}},style:t.style,styleSpec:t.styleSpec,objectElementValidators:{zoom:Cr,value:f}}))}else e=e.concat(f({key:s+\"[0]\",value:i[0],valueSpec:{},style:t.style,styleSpec:t.styleSpec},i));return _r(Lt(i[1]))?e.concat([new At(s+\"[1]\",i[1],\"expressions are not allowed in function stops.\")]):e.concat(Kr({key:s+\"[1]\",value:i[1],valueSpec:a,style:t.style,styleSpec:t.styleSpec}))}function f(t,n){var s=fr(t.value),l=Ct(t.value),c=null!==t.value?t.value:n;if(e){if(s!==e)return[new At(t.key,c,s+\" stop domain type must match previous stop domain type \"+e)]}else e=s;if(\"number\"!==s&&\"string\"!==s&&\"boolean\"!==s)return[new At(t.key,c,\"stop domain value must be a number, string, or boolean\")];if(\"number\"!==s&&\"categorical\"!==i){var u=\"number expected, \"+s+\" found\";return cr(a)&&void 0===i&&(u+='\\nIf you intended to use a categorical function, specify `\"type\": \"categorical\"`.'),[new At(t.key,c,u)]}return\"categorical\"!==i||\"number\"!==s||isFinite(l)&&Math.floor(l)===l?\"categorical\"!==i&&\"number\"===s&&void 0!==r&&l<r?[new At(t.key,c,\"stop domain values must appear in ascending order\")]:(r=l,\"categorical\"===i&&l in o?[new At(t.key,c,\"stop domain values must be unique\")]:(o[l]=!0,[])):[new At(t.key,c,\"integer expected, found \"+l)]}}function Pr(t){var e=(\"property\"===t.expressionContext?Ar:wr)(Lt(t.value),t.valueSpec);if(\"error\"===e.result)return e.value.map(function(e){return new At(\"\"+t.key+e.key,t.value,e.message)});var r=e.value.expression||e.value._styleExpression.expression;if(\"property\"===t.expressionContext&&\"text-font\"===t.propertyKey&&-1!==r.possibleOutputs().indexOf(void 0))return[new At(t.key,t.value,'Invalid data expression for \"'+t.propertyKey+'\". Output values must be contained as literals within the expression.')];if(\"property\"===t.expressionContext&&\"layout\"===t.propertyType&&!fe(r))return[new At(t.key,t.value,'\"feature-state\" data expressions are not supported with layout properties.')];if(\"filter\"===t.expressionContext&&!fe(r))return[new At(t.key,t.value,'\"feature-state\" data expressions are not supported with filters.')];if(t.expressionContext&&0===t.expressionContext.indexOf(\"cluster\")){if(!pe(r,[\"zoom\",\"feature-state\"]))return[new At(t.key,t.value,'\"zoom\" and \"feature-state\" expressions are not supported with cluster properties.')];if(\"cluster-initial\"===t.expressionContext&&!he(r))return[new At(t.key,t.value,\"Feature data expressions are not supported with initial expression part of cluster properties.\")]}return[]}function Or(t){var e=t.key,r=t.value,n=t.valueSpec,a=[];return Array.isArray(n.values)?-1===n.values.indexOf(Ct(r))&&a.push(new At(e,r,\"expected one of [\"+n.values.join(\", \")+\"], \"+JSON.stringify(r)+\" found\")):-1===Object.keys(n.values).indexOf(Ct(r))&&a.push(new At(e,r,\"expected one of [\"+Object.keys(n.values).join(\", \")+\"], \"+JSON.stringify(r)+\" found\")),a}function Ir(t){if(!0===t||!1===t)return!0;if(!Array.isArray(t)||0===t.length)return!1;switch(t[0]){case\"has\":return t.length>=2&&\"$id\"!==t[1]&&\"$type\"!==t[1];case\"in\":case\"!in\":case\"!has\":case\"none\":return!1;case\"==\":case\"!=\":case\">\":case\">=\":case\"<\":case\"<=\":return 3!==t.length||Array.isArray(t[1])||Array.isArray(t[2]);case\"any\":case\"all\":for(var e=0,r=t.slice(1);e<r.length;e+=1){var n=r[e];if(!Ir(n)&&\"boolean\"!=typeof n)return!1}return!0;default:return!0}}Mr.deserialize=function(t){return new Mr(t._parameters,t._specification)},Mr.serialize=function(t){return{_parameters:t._parameters,_specification:t._specification}};var zr={type:\"boolean\",default:!1,transition:!1,\"property-type\":\"data-driven\",expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]}};function Dr(t){if(null==t)return function(){return!0};Ir(t)||(t=Fr(t));var e=wr(t,zr);if(\"error\"===e.result)throw new Error(e.value.map(function(t){return t.key+\": \"+t.message}).join(\", \"));return function(t,r){return e.value.evaluate(t,r)}}function Rr(t,e){return t<e?-1:t>e?1:0}function Fr(t){if(!t)return!0;var e,r=t[0];return t.length<=1?\"any\"!==r:\"==\"===r?Br(t[1],t[2],\"==\"):\"!=\"===r?Vr(Br(t[1],t[2],\"==\")):\"<\"===r||\">\"===r||\"<=\"===r||\">=\"===r?Br(t[1],t[2],r):\"any\"===r?(e=t.slice(1),[\"any\"].concat(e.map(Fr))):\"all\"===r?[\"all\"].concat(t.slice(1).map(Fr)):\"none\"===r?[\"all\"].concat(t.slice(1).map(Fr).map(Vr)):\"in\"===r?Nr(t[1],t.slice(2)):\"!in\"===r?Vr(Nr(t[1],t.slice(2))):\"has\"===r?jr(t[1]):\"!has\"!==r||Vr(jr(t[1]))}function Br(t,e,r){switch(t){case\"$type\":return[\"filter-type-\"+r,e];case\"$id\":return[\"filter-id-\"+r,e];default:return[\"filter-\"+r,t,e]}}function Nr(t,e){if(0===e.length)return!1;switch(t){case\"$type\":return[\"filter-type-in\",[\"literal\",e]];case\"$id\":return[\"filter-id-in\",[\"literal\",e]];default:return e.length>200&&!e.some(function(t){return typeof t!=typeof e[0]})?[\"filter-in-large\",t,[\"literal\",e.sort(Rr)]]:[\"filter-in-small\",t,[\"literal\",e]]}}function jr(t){switch(t){case\"$type\":return!0;case\"$id\":return[\"filter-has-id\"];default:return[\"filter-has\",t]}}function Vr(t){return[\"!\",t]}function Ur(t){return Ir(Lt(t.value))?Pr(St({},t,{expressionContext:\"filter\",valueSpec:{value:\"boolean\"}})):function t(e){var r=e.value,n=e.key;if(\"array\"!==fr(r))return[new At(n,r,\"array expected, \"+fr(r)+\" found\")];var a,i=e.styleSpec,o=[];if(r.length<1)return[new At(n,r,\"filter array must have at least 1 element\")];switch(o=o.concat(Or({key:n+\"[0]\",value:r[0],valueSpec:i.filter_operator,style:e.style,styleSpec:e.styleSpec})),Ct(r[0])){case\"<\":case\"<=\":case\">\":case\">=\":r.length>=2&&\"$type\"===Ct(r[1])&&o.push(new At(n,r,'\"$type\" cannot be use with operator \"'+r[0]+'\"'));case\"==\":case\"!=\":3!==r.length&&o.push(new At(n,r,'filter array for operator \"'+r[0]+'\" must have 3 elements'));case\"in\":case\"!in\":r.length>=2&&\"string\"!==(a=fr(r[1]))&&o.push(new At(n+\"[1]\",r[1],\"string expected, \"+a+\" found\"));for(var s=2;s<r.length;s++)a=fr(r[s]),\"$type\"===Ct(r[1])?o=o.concat(Or({key:n+\"[\"+s+\"]\",value:r[s],valueSpec:i.geometry_type,style:e.style,styleSpec:e.styleSpec})):\"string\"!==a&&\"number\"!==a&&\"boolean\"!==a&&o.push(new At(n+\"[\"+s+\"]\",r[s],\"string, number, or boolean expected, \"+a+\" found\"));break;case\"any\":case\"all\":case\"none\":for(var l=1;l<r.length;l++)o=o.concat(t({key:n+\"[\"+l+\"]\",value:r[l],style:e.style,styleSpec:e.styleSpec}));break;case\"has\":case\"!has\":a=fr(r[1]),2!==r.length?o.push(new At(n,r,'filter array for \"'+r[0]+'\" operator must have 2 elements')):\"string\"!==a&&o.push(new At(n+\"[1]\",r[1],\"string expected, \"+a+\" found\"))}return o}(t)}function qr(t,e){var r=t.key,n=t.style,a=t.styleSpec,i=t.value,o=t.objectKey,s=a[e+\"_\"+t.layerType];if(!s)return[];var l=o.match(/^(.*)-transition$/);if(\"paint\"===e&&l&&s[l[1]]&&s[l[1]].transition)return Kr({key:r,value:i,valueSpec:a.transition,style:n,styleSpec:a});var c,u=t.valueSpec||s[o];if(!u)return[new At(r,i,'unknown property \"'+o+'\"')];if(\"string\"===fr(i)&&cr(u)&&!u.tokens&&(c=/^{([^}]+)}$/.exec(i)))return[new At(r,i,'\"'+o+'\" does not support interpolation syntax\\nUse an identity property function instead: `{ \"type\": \"identity\", \"property\": '+JSON.stringify(c[1])+\" }`.\")];var h=[];return\"symbol\"===t.layerType&&(\"text-field\"===o&&n&&!n.glyphs&&h.push(new At(r,i,'use of \"text-field\" requires a style \"glyphs\" property')),\"text-font\"===o&&pr(Lt(i))&&\"identity\"===Ct(i.type)&&h.push(new At(r,i,'\"text-font\" does not support identity functions'))),h.concat(Kr({key:t.key,value:i,valueSpec:u,style:n,styleSpec:a,expressionContext:\"property\",propertyType:e,propertyKey:o}))}function Hr(t){return qr(t,\"paint\")}function Gr(t){return qr(t,\"layout\")}function Yr(t){var e=[],r=t.value,n=t.key,a=t.style,i=t.styleSpec;r.type||r.ref||e.push(new At(n,r,'either \"type\" or \"ref\" is required'));var o,s=Ct(r.type),l=Ct(r.ref);if(r.id)for(var c=Ct(r.id),u=0;u<t.arrayIndex;u++){var h=a.layers[u];Ct(h.id)===c&&e.push(new At(n,r.id,'duplicate layer id \"'+r.id+'\", previously used at line '+h.id.__line__))}if(\"ref\"in r)[\"type\",\"source\",\"source-layer\",\"filter\",\"layout\"].forEach(function(t){t in r&&e.push(new At(n,r[t],'\"'+t+'\" is prohibited for ref layers'))}),a.layers.forEach(function(t){Ct(t.id)===l&&(o=t)}),o?o.ref?e.push(new At(n,r.ref,\"ref cannot reference another ref layer\")):s=Ct(o.type):e.push(new At(n,r.ref,'ref layer \"'+l+'\" not found'));else if(\"background\"!==s)if(r.source){var f=a.sources&&a.sources[r.source],p=f&&Ct(f.type);f?\"vector\"===p&&\"raster\"===s?e.push(new At(n,r.source,'layer \"'+r.id+'\" requires a raster source')):\"raster\"===p&&\"raster\"!==s?e.push(new At(n,r.source,'layer \"'+r.id+'\" requires a vector source')):\"vector\"!==p||r[\"source-layer\"]?\"raster-dem\"===p&&\"hillshade\"!==s?e.push(new At(n,r.source,\"raster-dem source can only be used with layer type 'hillshade'.\")):\"line\"!==s||!r.paint||!r.paint[\"line-gradient\"]||\"geojson\"===p&&f.lineMetrics||e.push(new At(n,r,'layer \"'+r.id+'\" specifies a line-gradient, which requires a GeoJSON source with `lineMetrics` enabled.')):e.push(new At(n,r,'layer \"'+r.id+'\" must specify a \"source-layer\"')):e.push(new At(n,r.source,'source \"'+r.source+'\" not found'))}else e.push(new At(n,r,'missing required property \"source\"'));return e=e.concat(Sr({key:n,value:r,valueSpec:i.layer,style:t.style,styleSpec:t.styleSpec,objectElementValidators:{\"*\":function(){return[]},type:function(){return Kr({key:n+\".type\",value:r.type,valueSpec:i.layer.type,style:t.style,styleSpec:t.styleSpec,object:r,objectKey:\"type\"})},filter:Ur,layout:function(t){return Sr({layer:r,key:t.key,value:t.value,style:t.style,styleSpec:t.styleSpec,objectElementValidators:{\"*\":function(t){return Gr(St({layerType:s},t))}}})},paint:function(t){return Sr({layer:r,key:t.key,value:t.value,style:t.style,styleSpec:t.styleSpec,objectElementValidators:{\"*\":function(t){return Hr(St({layerType:s},t))}}})}}}))}function Wr(t){var e=t.value,r=t.key,n=t.styleSpec,a=t.style;if(!e.type)return[new At(r,e,'\"type\" is required')];var i,o=Ct(e.type);switch(o){case\"vector\":case\"raster\":case\"raster-dem\":return Sr({key:r,value:e,valueSpec:n[\"source_\"+o.replace(\"-\",\"_\")],style:t.style,styleSpec:n});case\"geojson\":if(i=Sr({key:r,value:e,valueSpec:n.source_geojson,style:a,styleSpec:n}),e.cluster)for(var s in e.clusterProperties){var l=e.clusterProperties[s],c=l[0],u=l[1],h=\"string\"==typeof c?[c,[\"accumulated\"],[\"get\",s]]:c;i.push.apply(i,Pr({key:r+\".\"+s+\".map\",value:u,expressionContext:\"cluster-map\"})),i.push.apply(i,Pr({key:r+\".\"+s+\".reduce\",value:h,expressionContext:\"cluster-reduce\"}))}return i;case\"video\":return Sr({key:r,value:e,valueSpec:n.source_video,style:a,styleSpec:n});case\"image\":return Sr({key:r,value:e,valueSpec:n.source_image,style:a,styleSpec:n});case\"canvas\":return[new At(r,null,\"Please use runtime APIs to add canvas sources, rather than including them in stylesheets.\",\"source.canvas\")];default:return Or({key:r+\".type\",value:e.type,valueSpec:{values:[\"vector\",\"raster\",\"raster-dem\",\"geojson\",\"video\",\"image\"]},style:a,styleSpec:n})}}function Xr(t){var e=t.value,r=t.styleSpec,n=r.light,a=t.style,i=[],o=fr(e);if(void 0===e)return i;if(\"object\"!==o)return i.concat([new At(\"light\",e,\"object expected, \"+o+\" found\")]);for(var s in e){var l=s.match(/^(.*)-transition$/);i=l&&n[l[1]]&&n[l[1]].transition?i.concat(Kr({key:s,value:e[s],valueSpec:r.transition,style:a,styleSpec:r})):n[s]?i.concat(Kr({key:s,value:e[s],valueSpec:n[s],style:a,styleSpec:r})):i.concat([new At(s,e[s],'unknown property \"'+s+'\"')])}return i}function Zr(t){var e=t.value,r=t.key,n=fr(e);return\"string\"!==n?[new At(r,e,\"string expected, \"+n+\" found\")]:[]}var Jr={\"*\":function(){return[]},array:Er,boolean:function(t){var e=t.value,r=t.key,n=fr(e);return\"boolean\"!==n?[new At(r,e,\"boolean expected, \"+n+\" found\")]:[]},number:Cr,color:function(t){var e=t.key,r=t.value,n=fr(r);return\"string\"!==n?[new At(e,r,\"color expected, \"+n+\" found\")]:null===Yt(r)?[new At(e,r,'color expected, \"'+r+'\" found')]:[]},constants:Mt,enum:Or,filter:Ur,function:Lr,layer:Yr,object:Sr,source:Wr,light:Xr,string:Zr,formatted:function(t){return 0===Zr(t).length?[]:Pr(t)}};function Kr(t){var e=t.value,r=t.valueSpec,n=t.styleSpec;return r.expression&&pr(Ct(e))?Lr(t):r.expression&&_r(Lt(e))?Pr(t):r.type&&Jr[r.type]?Jr[r.type](t):Sr(St({},t,{valueSpec:r.type?n[r.type]:r}))}function Qr(t){var e=t.value,r=t.key,n=Zr(t);return n.length?n:(-1===e.indexOf(\"{fontstack}\")&&n.push(new At(r,e,'\"glyphs\" url must include a \"{fontstack}\" token')),-1===e.indexOf(\"{range}\")&&n.push(new At(r,e,'\"glyphs\" url must include a \"{range}\" token')),n)}function $r(t,e){e=e||Tt;var r=[];return r=r.concat(Kr({key:\"\",value:t,valueSpec:e.$root,styleSpec:e,style:t,objectElementValidators:{glyphs:Qr,\"*\":function(){return[]}}})),t.constants&&(r=r.concat(Mt({key:\"constants\",value:t.constants,style:t,styleSpec:e}))),tn(r)}function tn(t){return[].concat(t).sort(function(t,e){return t.line-e.line})}function en(t){return function(){for(var e=[],r=arguments.length;r--;)e[r]=arguments[r];return tn(t.apply(this,e))}}$r.source=en(Wr),$r.light=en(Xr),$r.layer=en(Yr),$r.filter=en(Ur),$r.paintProperty=en(Hr),$r.layoutProperty=en(Gr);var rn=$r,nn=rn.light,an=rn.paintProperty,on=rn.layoutProperty;function sn(t,e){var r=!1;if(e&&e.length)for(var n=0,a=e;n<a.length;n+=1){var i=a[n];t.fire(new wt(new Error(i.message))),r=!0}return r}var ln=un,cn=3;function un(t,e,r){var n=this.cells=[];if(t instanceof ArrayBuffer){this.arrayBuffer=t;var a=new Int32Array(this.arrayBuffer);t=a[0],e=a[1],r=a[2],this.d=e+2*r;for(var i=0;i<this.d*this.d;i++){var o=a[cn+i],s=a[cn+i+1];n.push(o===s?null:a.subarray(o,s))}var l=a[cn+n.length],c=a[cn+n.length+1];this.keys=a.subarray(l,c),this.bboxes=a.subarray(c),this.insert=this._insertReadonly}else{this.d=e+2*r;for(var u=0;u<this.d*this.d;u++)n.push([]);this.keys=[],this.bboxes=[]}this.n=e,this.extent=t,this.padding=r,this.scale=e/t,this.uid=0;var h=r/e*t;this.min=-h,this.max=t+h}un.prototype.insert=function(t,e,r,n,a){this._forEachCell(e,r,n,a,this._insertCell,this.uid++),this.keys.push(t),this.bboxes.push(e),this.bboxes.push(r),this.bboxes.push(n),this.bboxes.push(a)},un.prototype._insertReadonly=function(){throw\"Cannot insert into a GridIndex created from an ArrayBuffer.\"},un.prototype._insertCell=function(t,e,r,n,a,i){this.cells[a].push(i)},un.prototype.query=function(t,e,r,n,a){var i=this.min,o=this.max;if(t<=i&&e<=i&&o<=r&&o<=n&&!a)return Array.prototype.slice.call(this.keys);var s=[];return this._forEachCell(t,e,r,n,this._queryCell,s,{},a),s},un.prototype._queryCell=function(t,e,r,n,a,i,o,s){var l=this.cells[a];if(null!==l)for(var c=this.keys,u=this.bboxes,h=0;h<l.length;h++){var f=l[h];if(void 0===o[f]){var p=4*f;(s?s(u[p+0],u[p+1],u[p+2],u[p+3]):t<=u[p+2]&&e<=u[p+3]&&r>=u[p+0]&&n>=u[p+1])?(o[f]=!0,i.push(c[f])):o[f]=!1}}},un.prototype._forEachCell=function(t,e,r,n,a,i,o,s){for(var l=this._convertToCellCoord(t),c=this._convertToCellCoord(e),u=this._convertToCellCoord(r),h=this._convertToCellCoord(n),f=l;f<=u;f++)for(var p=c;p<=h;p++){var d=this.d*p+f;if((!s||s(this._convertFromCellCoord(f),this._convertFromCellCoord(p),this._convertFromCellCoord(f+1),this._convertFromCellCoord(p+1)))&&a.call(this,t,e,r,n,d,i,o,s))return}},un.prototype._convertFromCellCoord=function(t){return(t-this.padding)/this.scale},un.prototype._convertToCellCoord=function(t){return Math.max(0,Math.min(this.d-1,Math.floor(t*this.scale)+this.padding))},un.prototype.toArrayBuffer=function(){if(this.arrayBuffer)return this.arrayBuffer;for(var t=this.cells,e=cn+this.cells.length+1+1,r=0,n=0;n<this.cells.length;n++)r+=this.cells[n].length;var a=new Int32Array(e+r+this.keys.length+this.bboxes.length);a[0]=this.extent,a[1]=this.n,a[2]=this.padding;for(var i=e,o=0;o<t.length;o++){var s=t[o];a[cn+o]=i,a.set(s,i),i+=s.length}return a[cn+t.length]=i,a.set(this.keys,i),i+=this.keys.length,a[cn+t.length+1]=i,a.set(this.bboxes,i),i+=this.bboxes.length,a.buffer};var hn=self.ImageData,fn={};function pn(t,e,r){void 0===r&&(r={}),Object.defineProperty(e,\"_classRegistryKey\",{value:t,writeable:!1}),fn[t]={klass:e,omit:r.omit||[],shallow:r.shallow||[]}}for(var dn in pn(\"Object\",Object),ln.serialize=function(t,e){var r=t.toArrayBuffer();return e&&e.push(r),{buffer:r}},ln.deserialize=function(t){return new ln(t.buffer)},pn(\"Grid\",ln),pn(\"Color\",Wt),pn(\"Error\",Error),pn(\"StylePropertyFunction\",Mr),pn(\"StyleExpression\",br,{omit:[\"_evaluator\"]}),pn(\"ZoomDependentExpression\",Tr),pn(\"ZoomConstantExpression\",kr),pn(\"CompoundExpression\",ce,{omit:[\"_evaluate\"]}),rr)rr[dn]._classRegistryKey||pn(\"Expression_\"+dn,rr[dn]);function gn(t,e){if(null==t||\"boolean\"==typeof t||\"number\"==typeof t||\"string\"==typeof t||t instanceof Boolean||t instanceof Number||t instanceof String||t instanceof Date||t instanceof RegExp)return t;if(t instanceof ArrayBuffer)return e&&e.push(t),t;if(ArrayBuffer.isView(t)){var r=t;return e&&e.push(r.buffer),r}if(t instanceof hn)return e&&e.push(t.data.buffer),t;if(Array.isArray(t)){for(var n=[],a=0,i=t;a<i.length;a+=1){var o=i[a];n.push(gn(o,e))}return n}if(\"object\"==typeof t){var s=t.constructor,l=s._classRegistryKey;if(!l)throw new Error(\"can't serialize object of unregistered class\");var c=s.serialize?s.serialize(t,e):{};if(!s.serialize){for(var u in t)if(t.hasOwnProperty(u)&&!(fn[l].omit.indexOf(u)>=0)){var h=t[u];c[u]=fn[l].shallow.indexOf(u)>=0?h:gn(h,e)}t instanceof Error&&(c.message=t.message)}if(c.$name)throw new Error(\"$name property is reserved for worker serialization logic.\");return\"Object\"!==l&&(c.$name=l),c}throw new Error(\"can't serialize object of type \"+typeof t)}function vn(t){if(null==t||\"boolean\"==typeof t||\"number\"==typeof t||\"string\"==typeof t||t instanceof Boolean||t instanceof Number||t instanceof String||t instanceof Date||t instanceof RegExp||t instanceof ArrayBuffer||ArrayBuffer.isView(t)||t instanceof hn)return t;if(Array.isArray(t))return t.map(vn);if(\"object\"==typeof t){var e=t.$name||\"Object\",r=fn[e].klass;if(!r)throw new Error(\"can't deserialize unregistered class \"+e);if(r.deserialize)return r.deserialize(t);for(var n=Object.create(r.prototype),a=0,i=Object.keys(t);a<i.length;a+=1){var o=i[a];if(\"$name\"!==o){var s=t[o];n[o]=fn[e].shallow.indexOf(o)>=0?s:vn(s)}}return n}throw new Error(\"can't deserialize object of type \"+typeof t)}var mn=function(){this.first=!0};mn.prototype.update=function(t,e){var r=Math.floor(t);return this.first?(this.first=!1,this.lastIntegerZoom=r,this.lastIntegerZoomTime=0,this.lastZoom=t,this.lastFloorZoom=r,!0):(this.lastFloorZoom>r?(this.lastIntegerZoom=r+1,this.lastIntegerZoomTime=e):this.lastFloorZoom<r&&(this.lastIntegerZoom=r,this.lastIntegerZoomTime=e),t!==this.lastZoom&&(this.lastZoom=t,this.lastFloorZoom=r,!0))};var yn={\"Latin-1 Supplement\":function(t){return t>=128&&t<=255},Arabic:function(t){return t>=1536&&t<=1791},\"Arabic Supplement\":function(t){return t>=1872&&t<=1919},\"Arabic Extended-A\":function(t){return t>=2208&&t<=2303},\"Hangul Jamo\":function(t){return t>=4352&&t<=4607},\"Unified Canadian Aboriginal Syllabics\":function(t){return t>=5120&&t<=5759},Khmer:function(t){return t>=6016&&t<=6143},\"Unified Canadian Aboriginal Syllabics Extended\":function(t){return t>=6320&&t<=6399},\"General Punctuation\":function(t){return t>=8192&&t<=8303},\"Letterlike Symbols\":function(t){return t>=8448&&t<=8527},\"Number Forms\":function(t){return t>=8528&&t<=8591},\"Miscellaneous Technical\":function(t){return t>=8960&&t<=9215},\"Control Pictures\":function(t){return t>=9216&&t<=9279},\"Optical Character Recognition\":function(t){return t>=9280&&t<=9311},\"Enclosed Alphanumerics\":function(t){return t>=9312&&t<=9471},\"Geometric Shapes\":function(t){return t>=9632&&t<=9727},\"Miscellaneous Symbols\":function(t){return t>=9728&&t<=9983},\"Miscellaneous Symbols and Arrows\":function(t){return t>=11008&&t<=11263},\"CJK Radicals Supplement\":function(t){return t>=11904&&t<=12031},\"Kangxi Radicals\":function(t){return t>=12032&&t<=12255},\"Ideographic Description Characters\":function(t){return t>=12272&&t<=12287},\"CJK Symbols and Punctuation\":function(t){return t>=12288&&t<=12351},Hiragana:function(t){return t>=12352&&t<=12447},Katakana:function(t){return t>=12448&&t<=12543},Bopomofo:function(t){return t>=12544&&t<=12591},\"Hangul Compatibility Jamo\":function(t){return t>=12592&&t<=12687},Kanbun:function(t){return t>=12688&&t<=12703},\"Bopomofo Extended\":function(t){return t>=12704&&t<=12735},\"CJK Strokes\":function(t){return t>=12736&&t<=12783},\"Katakana Phonetic Extensions\":function(t){return t>=12784&&t<=12799},\"Enclosed CJK Letters and Months\":function(t){return t>=12800&&t<=13055},\"CJK Compatibility\":function(t){return t>=13056&&t<=13311},\"CJK Unified Ideographs Extension A\":function(t){return t>=13312&&t<=19903},\"Yijing Hexagram Symbols\":function(t){return t>=19904&&t<=19967},\"CJK Unified Ideographs\":function(t){return t>=19968&&t<=40959},\"Yi Syllables\":function(t){return t>=40960&&t<=42127},\"Yi Radicals\":function(t){return t>=42128&&t<=42191},\"Hangul Jamo Extended-A\":function(t){return t>=43360&&t<=43391},\"Hangul Syllables\":function(t){return t>=44032&&t<=55215},\"Hangul Jamo Extended-B\":function(t){return t>=55216&&t<=55295},\"Private Use Area\":function(t){return t>=57344&&t<=63743},\"CJK Compatibility Ideographs\":function(t){return t>=63744&&t<=64255},\"Arabic Presentation Forms-A\":function(t){return t>=64336&&t<=65023},\"Vertical Forms\":function(t){return t>=65040&&t<=65055},\"CJK Compatibility Forms\":function(t){return t>=65072&&t<=65103},\"Small Form Variants\":function(t){return t>=65104&&t<=65135},\"Arabic Presentation Forms-B\":function(t){return t>=65136&&t<=65279},\"Halfwidth and Fullwidth Forms\":function(t){return t>=65280&&t<=65519}};function xn(t){for(var e=0,r=t;e<r.length;e+=1)if(_n(r[e].charCodeAt(0)))return!0;return!1}function bn(t){return!(yn.Arabic(t)||yn[\"Arabic Supplement\"](t)||yn[\"Arabic Extended-A\"](t)||yn[\"Arabic Presentation Forms-A\"](t)||yn[\"Arabic Presentation Forms-B\"](t))}function _n(t){return!!(746===t||747===t||!(t<4352)&&(yn[\"Bopomofo Extended\"](t)||yn.Bopomofo(t)||yn[\"CJK Compatibility Forms\"](t)&&!(t>=65097&&t<=65103)||yn[\"CJK Compatibility Ideographs\"](t)||yn[\"CJK Compatibility\"](t)||yn[\"CJK Radicals Supplement\"](t)||yn[\"CJK Strokes\"](t)||!(!yn[\"CJK Symbols and Punctuation\"](t)||t>=12296&&t<=12305||t>=12308&&t<=12319||12336===t)||yn[\"CJK Unified Ideographs Extension A\"](t)||yn[\"CJK Unified Ideographs\"](t)||yn[\"Enclosed CJK Letters and Months\"](t)||yn[\"Hangul Compatibility Jamo\"](t)||yn[\"Hangul Jamo Extended-A\"](t)||yn[\"Hangul Jamo Extended-B\"](t)||yn[\"Hangul Jamo\"](t)||yn[\"Hangul Syllables\"](t)||yn.Hiragana(t)||yn[\"Ideographic Description Characters\"](t)||yn.Kanbun(t)||yn[\"Kangxi Radicals\"](t)||yn[\"Katakana Phonetic Extensions\"](t)||yn.Katakana(t)&&12540!==t||!(!yn[\"Halfwidth and Fullwidth Forms\"](t)||65288===t||65289===t||65293===t||t>=65306&&t<=65310||65339===t||65341===t||65343===t||t>=65371&&t<=65503||65507===t||t>=65512&&t<=65519)||!(!yn[\"Small Form Variants\"](t)||t>=65112&&t<=65118||t>=65123&&t<=65126)||yn[\"Unified Canadian Aboriginal Syllabics\"](t)||yn[\"Unified Canadian Aboriginal Syllabics Extended\"](t)||yn[\"Vertical Forms\"](t)||yn[\"Yijing Hexagram Symbols\"](t)||yn[\"Yi Syllables\"](t)||yn[\"Yi Radicals\"](t)))}function wn(t){return!(_n(t)||function(t){return!!(yn[\"Latin-1 Supplement\"](t)&&(167===t||169===t||174===t||177===t||188===t||189===t||190===t||215===t||247===t)||yn[\"General Punctuation\"](t)&&(8214===t||8224===t||8225===t||8240===t||8241===t||8251===t||8252===t||8258===t||8263===t||8264===t||8265===t||8273===t)||yn[\"Letterlike Symbols\"](t)||yn[\"Number Forms\"](t)||yn[\"Miscellaneous Technical\"](t)&&(t>=8960&&t<=8967||t>=8972&&t<=8991||t>=8996&&t<=9e3||9003===t||t>=9085&&t<=9114||t>=9150&&t<=9165||9167===t||t>=9169&&t<=9179||t>=9186&&t<=9215)||yn[\"Control Pictures\"](t)&&9251!==t||yn[\"Optical Character Recognition\"](t)||yn[\"Enclosed Alphanumerics\"](t)||yn[\"Geometric Shapes\"](t)||yn[\"Miscellaneous Symbols\"](t)&&!(t>=9754&&t<=9759)||yn[\"Miscellaneous Symbols and Arrows\"](t)&&(t>=11026&&t<=11055||t>=11088&&t<=11097||t>=11192&&t<=11243)||yn[\"CJK Symbols and Punctuation\"](t)||yn.Katakana(t)||yn[\"Private Use Area\"](t)||yn[\"CJK Compatibility Forms\"](t)||yn[\"Small Form Variants\"](t)||yn[\"Halfwidth and Fullwidth Forms\"](t)||8734===t||8756===t||8757===t||t>=9984&&t<=10087||t>=10102&&t<=10131||65532===t||65533===t)}(t))}function kn(t,e){return!(!e&&(t>=1424&&t<=2303||yn[\"Arabic Presentation Forms-A\"](t)||yn[\"Arabic Presentation Forms-B\"](t))||t>=2304&&t<=3583||t>=3840&&t<=4255||yn.Khmer(t))}var Tn,An=!1,Mn=null,Sn=!1,En=new kt,Cn={applyArabicShaping:null,processBidirectionalText:null,processStyledBidirectionalText:null,isLoaded:function(){return Sn||null!=Cn.applyArabicShaping}},Ln=function(t,e){this.zoom=t,e?(this.now=e.now,this.fadeDuration=e.fadeDuration,this.zoomHistory=e.zoomHistory,this.transition=e.transition):(this.now=0,this.fadeDuration=0,this.zoomHistory=new mn,this.transition={})};Ln.prototype.isSupportedScript=function(t){return function(t,e){for(var r=0,n=t;r<n.length;r+=1)if(!kn(n[r].charCodeAt(0),e))return!1;return!0}(t,Cn.isLoaded())},Ln.prototype.crossFadingFactor=function(){return 0===this.fadeDuration?1:Math.min((this.now-this.zoomHistory.lastIntegerZoomTime)/this.fadeDuration,1)},Ln.prototype.getCrossfadeParameters=function(){var t=this.zoom,e=t-Math.floor(t),r=this.crossFadingFactor();return t>this.zoomHistory.lastIntegerZoom?{fromScale:2,toScale:1,t:e+(1-e)*r}:{fromScale:.5,toScale:1,t:1-(1-r)*e}};var Pn=function(t,e){this.property=t,this.value=e,this.expression=function(t,e){if(pr(t))return new Mr(t,e);if(_r(t)){var r=Ar(t,e);if(\"error\"===r.result)throw new Error(r.value.map(function(t){return t.key+\": \"+t.message}).join(\", \"));return r.value}var n=t;return\"string\"==typeof t&&\"color\"===e.type&&(n=Wt.parse(t)),{kind:\"constant\",evaluate:function(){return n}}}(void 0===e?t.specification.default:e,t.specification)};Pn.prototype.isDataDriven=function(){return\"source\"===this.expression.kind||\"composite\"===this.expression.kind},Pn.prototype.possiblyEvaluate=function(t){return this.property.possiblyEvaluate(this,t)};var On=function(t){this.property=t,this.value=new Pn(t,void 0)};On.prototype.transitioned=function(t,e){return new zn(this.property,this.value,e,h({},t.transition,this.transition),t.now)},On.prototype.untransitioned=function(){return new zn(this.property,this.value,null,{},0)};var In=function(t){this._properties=t,this._values=Object.create(t.defaultTransitionablePropertyValues)};In.prototype.getValue=function(t){return b(this._values[t].value.value)},In.prototype.setValue=function(t,e){this._values.hasOwnProperty(t)||(this._values[t]=new On(this._values[t].property)),this._values[t].value=new Pn(this._values[t].property,null===e?void 0:b(e))},In.prototype.getTransition=function(t){return b(this._values[t].transition)},In.prototype.setTransition=function(t,e){this._values.hasOwnProperty(t)||(this._values[t]=new On(this._values[t].property)),this._values[t].transition=b(e)||void 0},In.prototype.serialize=function(){for(var t={},e=0,r=Object.keys(this._values);e<r.length;e+=1){var n=r[e],a=this.getValue(n);void 0!==a&&(t[n]=a);var i=this.getTransition(n);void 0!==i&&(t[n+\"-transition\"]=i)}return t},In.prototype.transitioned=function(t,e){for(var r=new Dn(this._properties),n=0,a=Object.keys(this._values);n<a.length;n+=1){var i=a[n];r._values[i]=this._values[i].transitioned(t,e._values[i])}return r},In.prototype.untransitioned=function(){for(var t=new Dn(this._properties),e=0,r=Object.keys(this._values);e<r.length;e+=1){var n=r[e];t._values[n]=this._values[n].untransitioned()}return t};var zn=function(t,e,r,n,a){this.property=t,this.value=e,this.begin=a+n.delay||0,this.end=this.begin+n.duration||0,t.specification.transition&&(n.delay||n.duration)&&(this.prior=r)};zn.prototype.possiblyEvaluate=function(t){var e=t.now||0,r=this.value.possiblyEvaluate(t),n=this.prior;if(n){if(e>this.end)return this.prior=null,r;if(this.value.isDataDriven())return this.prior=null,r;if(e<this.begin)return n.possiblyEvaluate(t);var a=(e-this.begin)/(this.end-this.begin);return this.property.interpolate(n.possiblyEvaluate(t),r,function(t){if(a<=0)return 0;if(a>=1)return 1;var e=a*a,r=e*a;return 4*(a<.5?r:3*(a-e)+r-.75)}())}return r};var Dn=function(t){this._properties=t,this._values=Object.create(t.defaultTransitioningPropertyValues)};Dn.prototype.possiblyEvaluate=function(t){for(var e=new Bn(this._properties),r=0,n=Object.keys(this._values);r<n.length;r+=1){var a=n[r];e._values[a]=this._values[a].possiblyEvaluate(t)}return e},Dn.prototype.hasTransition=function(){for(var t=0,e=Object.keys(this._values);t<e.length;t+=1){var r=e[t];if(this._values[r].prior)return!0}return!1};var Rn=function(t){this._properties=t,this._values=Object.create(t.defaultPropertyValues)};Rn.prototype.getValue=function(t){return b(this._values[t].value)},Rn.prototype.setValue=function(t,e){this._values[t]=new Pn(this._values[t].property,null===e?void 0:b(e))},Rn.prototype.serialize=function(){for(var t={},e=0,r=Object.keys(this._values);e<r.length;e+=1){var n=r[e],a=this.getValue(n);void 0!==a&&(t[n]=a)}return t},Rn.prototype.possiblyEvaluate=function(t){for(var e=new Bn(this._properties),r=0,n=Object.keys(this._values);r<n.length;r+=1){var a=n[r];e._values[a]=this._values[a].possiblyEvaluate(t)}return e};var Fn=function(t,e,r){this.property=t,this.value=e,this.parameters=r};Fn.prototype.isConstant=function(){return\"constant\"===this.value.kind},Fn.prototype.constantOr=function(t){return\"constant\"===this.value.kind?this.value.value:t},Fn.prototype.evaluate=function(t,e){return this.property.evaluate(this.value,this.parameters,t,e)};var Bn=function(t){this._properties=t,this._values=Object.create(t.defaultPossiblyEvaluatedValues)};Bn.prototype.get=function(t){return this._values[t]};var Nn=function(t){this.specification=t};Nn.prototype.possiblyEvaluate=function(t,e){return t.expression.evaluate(e)},Nn.prototype.interpolate=function(t,e,r){var n=xe[this.specification.type];return n?n(t,e,r):t};var jn=function(t,e){this.specification=t,this.overrides=e};jn.prototype.possiblyEvaluate=function(t,e){return\"constant\"===t.expression.kind||\"camera\"===t.expression.kind?new Fn(this,{kind:\"constant\",value:t.expression.evaluate(e)},e):new Fn(this,t.expression,e)},jn.prototype.interpolate=function(t,e,r){if(\"constant\"!==t.value.kind||\"constant\"!==e.value.kind)return t;if(void 0===t.value.value||void 0===e.value.value)return new Fn(this,{kind:\"constant\",value:void 0},t.parameters);var n=xe[this.specification.type];return n?new Fn(this,{kind:\"constant\",value:n(t.value.value,e.value.value,r)},t.parameters):t},jn.prototype.evaluate=function(t,e,r,n){return\"constant\"===t.kind?t.value:t.evaluate(e,r,n)};var Vn=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.possiblyEvaluate=function(t,e){if(void 0===t.value)return new Fn(this,{kind:\"constant\",value:void 0},e);if(\"constant\"===t.expression.kind){var r=t.expression.evaluate(e),n=this._calculate(r,r,r,e);return new Fn(this,{kind:\"constant\",value:n},e)}if(\"camera\"===t.expression.kind){var a=this._calculate(t.expression.evaluate({zoom:e.zoom-1}),t.expression.evaluate({zoom:e.zoom}),t.expression.evaluate({zoom:e.zoom+1}),e);return new Fn(this,{kind:\"constant\",value:a},e)}return new Fn(this,t.expression,e)},e.prototype.evaluate=function(t,e,r,n){if(\"source\"===t.kind){var a=t.evaluate(e,r,n);return this._calculate(a,a,a,e)}return\"composite\"===t.kind?this._calculate(t.evaluate({zoom:Math.floor(e.zoom)-1},r,n),t.evaluate({zoom:Math.floor(e.zoom)},r,n),t.evaluate({zoom:Math.floor(e.zoom)+1},r,n),e):t.value},e.prototype._calculate=function(t,e,r,n){return n.zoom>n.zoomHistory.lastIntegerZoom?{from:t,to:e}:{from:r,to:e}},e.prototype.interpolate=function(t){return t},e}(jn),Un=function(t){this.specification=t};Un.prototype.possiblyEvaluate=function(t,e){if(void 0!==t.value){if(\"constant\"===t.expression.kind){var r=t.expression.evaluate(e);return this._calculate(r,r,r,e)}return this._calculate(t.expression.evaluate(new Ln(Math.floor(e.zoom-1),e)),t.expression.evaluate(new Ln(Math.floor(e.zoom),e)),t.expression.evaluate(new Ln(Math.floor(e.zoom+1),e)),e)}},Un.prototype._calculate=function(t,e,r,n){return n.zoom>n.zoomHistory.lastIntegerZoom?{from:t,to:e}:{from:r,to:e}},Un.prototype.interpolate=function(t){return t};var qn=function(t){this.specification=t};qn.prototype.possiblyEvaluate=function(t,e){return!!t.expression.evaluate(e)},qn.prototype.interpolate=function(){return!1};var Hn=function(t){for(var e in this.properties=t,this.defaultPropertyValues={},this.defaultTransitionablePropertyValues={},this.defaultTransitioningPropertyValues={},this.defaultPossiblyEvaluatedValues={},this.overridableProperties=[],t){var r=t[e];r.specification.overridable&&this.overridableProperties.push(e);var n=this.defaultPropertyValues[e]=new Pn(r,void 0),a=this.defaultTransitionablePropertyValues[e]=new On(r);this.defaultTransitioningPropertyValues[e]=a.untransitioned(),this.defaultPossiblyEvaluatedValues[e]=n.possiblyEvaluate({})}};pn(\"DataDrivenProperty\",jn),pn(\"DataConstantProperty\",Nn),pn(\"CrossFadedDataDrivenProperty\",Vn),pn(\"CrossFadedProperty\",Un),pn(\"ColorRampProperty\",qn);var Gn=function(t){function e(e,r){if(t.call(this),this.id=e.id,this.type=e.type,this._featureFilter=function(){return!0},\"custom\"!==e.type&&(e=e,this.metadata=e.metadata,this.minzoom=e.minzoom,this.maxzoom=e.maxzoom,\"background\"!==e.type&&(this.source=e.source,this.sourceLayer=e[\"source-layer\"],this.filter=e.filter),r.layout&&(this._unevaluatedLayout=new Rn(r.layout)),r.paint)){for(var n in this._transitionablePaint=new In(r.paint),e.paint)this.setPaintProperty(n,e.paint[n],{validate:!1});for(var a in e.layout)this.setLayoutProperty(a,e.layout[a],{validate:!1});this._transitioningPaint=this._transitionablePaint.untransitioned()}}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getCrossfadeParameters=function(){return this._crossfadeParameters},e.prototype.getLayoutProperty=function(t){return\"visibility\"===t?this.visibility:this._unevaluatedLayout.getValue(t)},e.prototype.setLayoutProperty=function(t,e,r){if(void 0===r&&(r={}),null!=e){var n=\"layers.\"+this.id+\".layout.\"+t;if(this._validate(on,n,t,e,r))return}\"visibility\"!==t?this._unevaluatedLayout.setValue(t,e):this.visibility=e},e.prototype.getPaintProperty=function(t){return m(t,\"-transition\")?this._transitionablePaint.getTransition(t.slice(0,-\"-transition\".length)):this._transitionablePaint.getValue(t)},e.prototype.setPaintProperty=function(t,e,r){if(void 0===r&&(r={}),null!=e){var n=\"layers.\"+this.id+\".paint.\"+t;if(this._validate(an,n,t,e,r))return!1}if(m(t,\"-transition\"))return this._transitionablePaint.setTransition(t.slice(0,-\"-transition\".length),e||void 0),!1;var a=this._transitionablePaint._values[t],i=\"cross-faded-data-driven\"===a.property.specification[\"property-type\"],o=a.value.isDataDriven(),s=a.value;this._transitionablePaint.setValue(t,e),this._handleSpecialPaintPropertyUpdate(t);var l=this._transitionablePaint._values[t].value;return l.isDataDriven()||o||i||this._handleOverridablePaintPropertyUpdate(t,s,l)},e.prototype._handleSpecialPaintPropertyUpdate=function(t){},e.prototype._handleOverridablePaintPropertyUpdate=function(t,e,r){return!1},e.prototype.isHidden=function(t){return!!(this.minzoom&&t<this.minzoom)||!!(this.maxzoom&&t>=this.maxzoom)||\"none\"===this.visibility},e.prototype.updateTransitions=function(t){this._transitioningPaint=this._transitionablePaint.transitioned(t,this._transitioningPaint)},e.prototype.hasTransition=function(){return this._transitioningPaint.hasTransition()},e.prototype.recalculate=function(t){t.getCrossfadeParameters&&(this._crossfadeParameters=t.getCrossfadeParameters()),this._unevaluatedLayout&&(this.layout=this._unevaluatedLayout.possiblyEvaluate(t)),this.paint=this._transitioningPaint.possiblyEvaluate(t)},e.prototype.serialize=function(){var t={id:this.id,type:this.type,source:this.source,\"source-layer\":this.sourceLayer,metadata:this.metadata,minzoom:this.minzoom,maxzoom:this.maxzoom,filter:this.filter,layout:this._unevaluatedLayout&&this._unevaluatedLayout.serialize(),paint:this._transitionablePaint&&this._transitionablePaint.serialize()};return this.visibility&&(t.layout=t.layout||{},t.layout.visibility=this.visibility),x(t,function(t,e){return!(void 0===t||\"layout\"===e&&!Object.keys(t).length||\"paint\"===e&&!Object.keys(t).length)})},e.prototype._validate=function(t,e,r,n,a){return void 0===a&&(a={}),(!a||!1!==a.validate)&&sn(this,t.call(rn,{key:e,layerType:this.type,objectKey:r,value:n,styleSpec:Tt,style:{glyphs:!0,sprite:!0}}))},e.prototype.is3D=function(){return!1},e.prototype.isTileClipped=function(){return!1},e.prototype.hasOffscreenPass=function(){return!1},e.prototype.resize=function(){},e.prototype.isStateDependent=function(){for(var t in this.paint._values){var e=this.paint.get(t);if(e instanceof Fn&&cr(e.property.specification)&&(\"source\"===e.value.kind||\"composite\"===e.value.kind)&&e.value.isStateDependent)return!0}return!1},e}(kt),Yn={Int8:Int8Array,Uint8:Uint8Array,Int16:Int16Array,Uint16:Uint16Array,Int32:Int32Array,Uint32:Uint32Array,Float32:Float32Array},Wn=function(t,e){this._structArray=t,this._pos1=e*this.size,this._pos2=this._pos1/2,this._pos4=this._pos1/4,this._pos8=this._pos1/8},Xn=function(){this.isTransferred=!1,this.capacity=-1,this.resize(0)};function Zn(t,e){void 0===e&&(e=1);var r=0,n=0;return{members:t.map(function(t){var a,i=(a=t.type,Yn[a].BYTES_PER_ELEMENT),o=r=Jn(r,Math.max(e,i)),s=t.components||1;return n=Math.max(n,i),r+=i*s,{name:t.name,type:t.type,components:s,offset:o}}),size:Jn(r,Math.max(n,e)),alignment:e}}function Jn(t,e){return Math.ceil(t/e)*e}Xn.serialize=function(t,e){return t._trim(),e&&(t.isTransferred=!0,e.push(t.arrayBuffer)),{length:t.length,arrayBuffer:t.arrayBuffer}},Xn.deserialize=function(t){var e=Object.create(this.prototype);return e.arrayBuffer=t.arrayBuffer,e.length=t.length,e.capacity=t.arrayBuffer.byteLength/e.bytesPerElement,e._refreshViews(),e},Xn.prototype._trim=function(){this.length!==this.capacity&&(this.capacity=this.length,this.arrayBuffer=this.arrayBuffer.slice(0,this.length*this.bytesPerElement),this._refreshViews())},Xn.prototype.clear=function(){this.length=0},Xn.prototype.resize=function(t){this.reserve(t),this.length=t},Xn.prototype.reserve=function(t){if(t>this.capacity){this.capacity=Math.max(t,Math.floor(5*this.capacity),128),this.arrayBuffer=new ArrayBuffer(this.capacity*this.bytesPerElement);var e=this.uint8;this._refreshViews(),e&&this.uint8.set(e)}},Xn.prototype._refreshViews=function(){throw new Error(\"_refreshViews() must be implemented by each concrete StructArray layout\")};var Kn=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e){var r=this.length;return this.resize(r+1),this.emplace(r,t,e)},e.prototype.emplace=function(t,e,r){var n=2*t;return this.int16[n+0]=e,this.int16[n+1]=r,t},e}(Xn);Kn.prototype.bytesPerElement=4,pn(\"StructArrayLayout2i4\",Kn);var Qn=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n){var a=this.length;return this.resize(a+1),this.emplace(a,t,e,r,n)},e.prototype.emplace=function(t,e,r,n,a){var i=4*t;return this.int16[i+0]=e,this.int16[i+1]=r,this.int16[i+2]=n,this.int16[i+3]=a,t},e}(Xn);Qn.prototype.bytesPerElement=8,pn(\"StructArrayLayout4i8\",Qn);var $n=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,a,i){var o=this.length;return this.resize(o+1),this.emplace(o,t,e,r,n,a,i)},e.prototype.emplace=function(t,e,r,n,a,i,o){var s=6*t;return this.int16[s+0]=e,this.int16[s+1]=r,this.int16[s+2]=n,this.int16[s+3]=a,this.int16[s+4]=i,this.int16[s+5]=o,t},e}(Xn);$n.prototype.bytesPerElement=12,pn(\"StructArrayLayout2i4i12\",$n);var ta=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,a,i){var o=this.length;return this.resize(o+1),this.emplace(o,t,e,r,n,a,i)},e.prototype.emplace=function(t,e,r,n,a,i,o){var s=4*t,l=8*t;return this.int16[s+0]=e,this.int16[s+1]=r,this.uint8[l+4]=n,this.uint8[l+5]=a,this.uint8[l+6]=i,this.uint8[l+7]=o,t},e}(Xn);ta.prototype.bytesPerElement=8,pn(\"StructArrayLayout2i4ub8\",ta);var ea=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,a,i,o,s){var l=this.length;return this.resize(l+1),this.emplace(l,t,e,r,n,a,i,o,s)},e.prototype.emplace=function(t,e,r,n,a,i,o,s,l){var c=8*t;return this.uint16[c+0]=e,this.uint16[c+1]=r,this.uint16[c+2]=n,this.uint16[c+3]=a,this.uint16[c+4]=i,this.uint16[c+5]=o,this.uint16[c+6]=s,this.uint16[c+7]=l,t},e}(Xn);ea.prototype.bytesPerElement=16,pn(\"StructArrayLayout8ui16\",ea);var ra=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,a,i,o,s){var l=this.length;return this.resize(l+1),this.emplace(l,t,e,r,n,a,i,o,s)},e.prototype.emplace=function(t,e,r,n,a,i,o,s,l){var c=8*t;return this.int16[c+0]=e,this.int16[c+1]=r,this.int16[c+2]=n,this.int16[c+3]=a,this.uint16[c+4]=i,this.uint16[c+5]=o,this.uint16[c+6]=s,this.uint16[c+7]=l,t},e}(Xn);ra.prototype.bytesPerElement=16,pn(\"StructArrayLayout4i4ui16\",ra);var na=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r){var n=this.length;return this.resize(n+1),this.emplace(n,t,e,r)},e.prototype.emplace=function(t,e,r,n){var a=3*t;return this.float32[a+0]=e,this.float32[a+1]=r,this.float32[a+2]=n,t},e}(Xn);na.prototype.bytesPerElement=12,pn(\"StructArrayLayout3f12\",na);var aa=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t){var e=this.length;return this.resize(e+1),this.emplace(e,t)},e.prototype.emplace=function(t,e){var r=1*t;return this.uint32[r+0]=e,t},e}(Xn);aa.prototype.bytesPerElement=4,pn(\"StructArrayLayout1ul4\",aa);var ia=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,a,i,o,s,l,c,u){var h=this.length;return this.resize(h+1),this.emplace(h,t,e,r,n,a,i,o,s,l,c,u)},e.prototype.emplace=function(t,e,r,n,a,i,o,s,l,c,u,h){var f=12*t,p=6*t;return this.int16[f+0]=e,this.int16[f+1]=r,this.int16[f+2]=n,this.int16[f+3]=a,this.int16[f+4]=i,this.int16[f+5]=o,this.uint32[p+3]=s,this.uint16[f+8]=l,this.uint16[f+9]=c,this.int16[f+10]=u,this.int16[f+11]=h,t},e}(Xn);ia.prototype.bytesPerElement=24,pn(\"StructArrayLayout6i1ul2ui2i24\",ia);var oa=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,a,i){var o=this.length;return this.resize(o+1),this.emplace(o,t,e,r,n,a,i)},e.prototype.emplace=function(t,e,r,n,a,i,o){var s=6*t;return this.int16[s+0]=e,this.int16[s+1]=r,this.int16[s+2]=n,this.int16[s+3]=a,this.int16[s+4]=i,this.int16[s+5]=o,t},e}(Xn);oa.prototype.bytesPerElement=12,pn(\"StructArrayLayout2i2i2i12\",oa);var sa=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n){var a=this.length;return this.resize(a+1),this.emplace(a,t,e,r,n)},e.prototype.emplace=function(t,e,r,n,a){var i=12*t,o=3*t;return this.uint8[i+0]=e,this.uint8[i+1]=r,this.float32[o+1]=n,this.float32[o+2]=a,t},e}(Xn);sa.prototype.bytesPerElement=12,pn(\"StructArrayLayout2ub2f12\",sa);var la=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,a,i,o,s,l,c,u,h,f,p,d,g){var v=this.length;return this.resize(v+1),this.emplace(v,t,e,r,n,a,i,o,s,l,c,u,h,f,p,d,g)},e.prototype.emplace=function(t,e,r,n,a,i,o,s,l,c,u,h,f,p,d,g,v){var m=22*t,y=11*t,x=44*t;return this.int16[m+0]=e,this.int16[m+1]=r,this.uint16[m+2]=n,this.uint16[m+3]=a,this.uint32[y+2]=i,this.uint32[y+3]=o,this.uint32[y+4]=s,this.uint16[m+10]=l,this.uint16[m+11]=c,this.uint16[m+12]=u,this.float32[y+7]=h,this.float32[y+8]=f,this.uint8[x+36]=p,this.uint8[x+37]=d,this.uint8[x+38]=g,this.uint32[y+10]=v,t},e}(Xn);la.prototype.bytesPerElement=44,pn(\"StructArrayLayout2i2ui3ul3ui2f3ub1ul44\",la);var ca=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,a,i,o,s,l,c,u,h,f,p,d,g,v,m,y,x){var b=this.length;return this.resize(b+1),this.emplace(b,t,e,r,n,a,i,o,s,l,c,u,h,f,p,d,g,v,m,y,x)},e.prototype.emplace=function(t,e,r,n,a,i,o,s,l,c,u,h,f,p,d,g,v,m,y,x,b){var _=24*t,w=12*t;return this.int16[_+0]=e,this.int16[_+1]=r,this.int16[_+2]=n,this.int16[_+3]=a,this.int16[_+4]=i,this.int16[_+5]=o,this.uint16[_+6]=s,this.uint16[_+7]=l,this.uint16[_+8]=c,this.uint16[_+9]=u,this.uint16[_+10]=h,this.uint16[_+11]=f,this.uint16[_+12]=p,this.uint16[_+13]=d,this.uint16[_+14]=g,this.uint16[_+15]=v,this.uint16[_+16]=m,this.uint32[w+9]=y,this.float32[w+10]=x,this.float32[w+11]=b,t},e}(Xn);ca.prototype.bytesPerElement=48,pn(\"StructArrayLayout6i11ui1ul2f48\",ca);var ua=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t){var e=this.length;return this.resize(e+1),this.emplace(e,t)},e.prototype.emplace=function(t,e){var r=1*t;return this.float32[r+0]=e,t},e}(Xn);ua.prototype.bytesPerElement=4,pn(\"StructArrayLayout1f4\",ua);var ha=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r){var n=this.length;return this.resize(n+1),this.emplace(n,t,e,r)},e.prototype.emplace=function(t,e,r,n){var a=3*t;return this.int16[a+0]=e,this.int16[a+1]=r,this.int16[a+2]=n,t},e}(Xn);ha.prototype.bytesPerElement=6,pn(\"StructArrayLayout3i6\",ha);var fa=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r){var n=this.length;return this.resize(n+1),this.emplace(n,t,e,r)},e.prototype.emplace=function(t,e,r,n){var a=2*t,i=4*t;return this.uint32[a+0]=e,this.uint16[i+2]=r,this.uint16[i+3]=n,t},e}(Xn);fa.prototype.bytesPerElement=8,pn(\"StructArrayLayout1ul2ui8\",fa);var pa=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r){var n=this.length;return this.resize(n+1),this.emplace(n,t,e,r)},e.prototype.emplace=function(t,e,r,n){var a=3*t;return this.uint16[a+0]=e,this.uint16[a+1]=r,this.uint16[a+2]=n,t},e}(Xn);pa.prototype.bytesPerElement=6,pn(\"StructArrayLayout3ui6\",pa);var da=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e){var r=this.length;return this.resize(r+1),this.emplace(r,t,e)},e.prototype.emplace=function(t,e,r){var n=2*t;return this.uint16[n+0]=e,this.uint16[n+1]=r,t},e}(Xn);da.prototype.bytesPerElement=4,pn(\"StructArrayLayout2ui4\",da);var ga=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t){var e=this.length;return this.resize(e+1),this.emplace(e,t)},e.prototype.emplace=function(t,e){var r=1*t;return this.uint16[r+0]=e,t},e}(Xn);ga.prototype.bytesPerElement=2,pn(\"StructArrayLayout1ui2\",ga);var va=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e){var r=this.length;return this.resize(r+1),this.emplace(r,t,e)},e.prototype.emplace=function(t,e,r){var n=2*t;return this.float32[n+0]=e,this.float32[n+1]=r,t},e}(Xn);va.prototype.bytesPerElement=8,pn(\"StructArrayLayout2f8\",va);var ma=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n){var a=this.length;return this.resize(a+1),this.emplace(a,t,e,r,n)},e.prototype.emplace=function(t,e,r,n,a){var i=4*t;return this.float32[i+0]=e,this.float32[i+1]=r,this.float32[i+2]=n,this.float32[i+3]=a,t},e}(Xn);ma.prototype.bytesPerElement=16,pn(\"StructArrayLayout4f16\",ma);var ya=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={anchorPointX:{configurable:!0},anchorPointY:{configurable:!0},x1:{configurable:!0},y1:{configurable:!0},x2:{configurable:!0},y2:{configurable:!0},featureIndex:{configurable:!0},sourceLayerIndex:{configurable:!0},bucketIndex:{configurable:!0},radius:{configurable:!0},signedDistanceFromAnchor:{configurable:!0},anchorPoint:{configurable:!0}};return r.anchorPointX.get=function(){return this._structArray.int16[this._pos2+0]},r.anchorPointX.set=function(t){this._structArray.int16[this._pos2+0]=t},r.anchorPointY.get=function(){return this._structArray.int16[this._pos2+1]},r.anchorPointY.set=function(t){this._structArray.int16[this._pos2+1]=t},r.x1.get=function(){return this._structArray.int16[this._pos2+2]},r.x1.set=function(t){this._structArray.int16[this._pos2+2]=t},r.y1.get=function(){return this._structArray.int16[this._pos2+3]},r.y1.set=function(t){this._structArray.int16[this._pos2+3]=t},r.x2.get=function(){return this._structArray.int16[this._pos2+4]},r.x2.set=function(t){this._structArray.int16[this._pos2+4]=t},r.y2.get=function(){return this._structArray.int16[this._pos2+5]},r.y2.set=function(t){this._structArray.int16[this._pos2+5]=t},r.featureIndex.get=function(){return this._structArray.uint32[this._pos4+3]},r.featureIndex.set=function(t){this._structArray.uint32[this._pos4+3]=t},r.sourceLayerIndex.get=function(){return this._structArray.uint16[this._pos2+8]},r.sourceLayerIndex.set=function(t){this._structArray.uint16[this._pos2+8]=t},r.bucketIndex.get=function(){return this._structArray.uint16[this._pos2+9]},r.bucketIndex.set=function(t){this._structArray.uint16[this._pos2+9]=t},r.radius.get=function(){return this._structArray.int16[this._pos2+10]},r.radius.set=function(t){this._structArray.int16[this._pos2+10]=t},r.signedDistanceFromAnchor.get=function(){return this._structArray.int16[this._pos2+11]},r.signedDistanceFromAnchor.set=function(t){this._structArray.int16[this._pos2+11]=t},r.anchorPoint.get=function(){return new a(this.anchorPointX,this.anchorPointY)},Object.defineProperties(e.prototype,r),e}(Wn);ya.prototype.size=24;var xa=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.get=function(t){return new ya(this,t)},e}(ia);pn(\"CollisionBoxArray\",xa);var ba=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={anchorX:{configurable:!0},anchorY:{configurable:!0},glyphStartIndex:{configurable:!0},numGlyphs:{configurable:!0},vertexStartIndex:{configurable:!0},lineStartIndex:{configurable:!0},lineLength:{configurable:!0},segment:{configurable:!0},lowerSize:{configurable:!0},upperSize:{configurable:!0},lineOffsetX:{configurable:!0},lineOffsetY:{configurable:!0},writingMode:{configurable:!0},placedOrientation:{configurable:!0},hidden:{configurable:!0},crossTileID:{configurable:!0}};return r.anchorX.get=function(){return this._structArray.int16[this._pos2+0]},r.anchorX.set=function(t){this._structArray.int16[this._pos2+0]=t},r.anchorY.get=function(){return this._structArray.int16[this._pos2+1]},r.anchorY.set=function(t){this._structArray.int16[this._pos2+1]=t},r.glyphStartIndex.get=function(){return this._structArray.uint16[this._pos2+2]},r.glyphStartIndex.set=function(t){this._structArray.uint16[this._pos2+2]=t},r.numGlyphs.get=function(){return this._structArray.uint16[this._pos2+3]},r.numGlyphs.set=function(t){this._structArray.uint16[this._pos2+3]=t},r.vertexStartIndex.get=function(){return this._structArray.uint32[this._pos4+2]},r.vertexStartIndex.set=function(t){this._structArray.uint32[this._pos4+2]=t},r.lineStartIndex.get=function(){return this._structArray.uint32[this._pos4+3]},r.lineStartIndex.set=function(t){this._structArray.uint32[this._pos4+3]=t},r.lineLength.get=function(){return this._structArray.uint32[this._pos4+4]},r.lineLength.set=function(t){this._structArray.uint32[this._pos4+4]=t},r.segment.get=function(){return this._structArray.uint16[this._pos2+10]},r.segment.set=function(t){this._structArray.uint16[this._pos2+10]=t},r.lowerSize.get=function(){return this._structArray.uint16[this._pos2+11]},r.lowerSize.set=function(t){this._structArray.uint16[this._pos2+11]=t},r.upperSize.get=function(){return this._structArray.uint16[this._pos2+12]},r.upperSize.set=function(t){this._structArray.uint16[this._pos2+12]=t},r.lineOffsetX.get=function(){return this._structArray.float32[this._pos4+7]},r.lineOffsetX.set=function(t){this._structArray.float32[this._pos4+7]=t},r.lineOffsetY.get=function(){return this._structArray.float32[this._pos4+8]},r.lineOffsetY.set=function(t){this._structArray.float32[this._pos4+8]=t},r.writingMode.get=function(){return this._structArray.uint8[this._pos1+36]},r.writingMode.set=function(t){this._structArray.uint8[this._pos1+36]=t},r.placedOrientation.get=function(){return this._structArray.uint8[this._pos1+37]},r.placedOrientation.set=function(t){this._structArray.uint8[this._pos1+37]=t},r.hidden.get=function(){return this._structArray.uint8[this._pos1+38]},r.hidden.set=function(t){this._structArray.uint8[this._pos1+38]=t},r.crossTileID.get=function(){return this._structArray.uint32[this._pos4+10]},r.crossTileID.set=function(t){this._structArray.uint32[this._pos4+10]=t},Object.defineProperties(e.prototype,r),e}(Wn);ba.prototype.size=44;var _a=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.get=function(t){return new ba(this,t)},e}(la);pn(\"PlacedSymbolArray\",_a);var wa=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={anchorX:{configurable:!0},anchorY:{configurable:!0},rightJustifiedTextSymbolIndex:{configurable:!0},centerJustifiedTextSymbolIndex:{configurable:!0},leftJustifiedTextSymbolIndex:{configurable:!0},verticalPlacedTextSymbolIndex:{configurable:!0},key:{configurable:!0},textBoxStartIndex:{configurable:!0},textBoxEndIndex:{configurable:!0},verticalTextBoxStartIndex:{configurable:!0},verticalTextBoxEndIndex:{configurable:!0},iconBoxStartIndex:{configurable:!0},iconBoxEndIndex:{configurable:!0},featureIndex:{configurable:!0},numHorizontalGlyphVertices:{configurable:!0},numVerticalGlyphVertices:{configurable:!0},numIconVertices:{configurable:!0},crossTileID:{configurable:!0},textBoxScale:{configurable:!0},radialTextOffset:{configurable:!0}};return r.anchorX.get=function(){return this._structArray.int16[this._pos2+0]},r.anchorX.set=function(t){this._structArray.int16[this._pos2+0]=t},r.anchorY.get=function(){return this._structArray.int16[this._pos2+1]},r.anchorY.set=function(t){this._structArray.int16[this._pos2+1]=t},r.rightJustifiedTextSymbolIndex.get=function(){return this._structArray.int16[this._pos2+2]},r.rightJustifiedTextSymbolIndex.set=function(t){this._structArray.int16[this._pos2+2]=t},r.centerJustifiedTextSymbolIndex.get=function(){return this._structArray.int16[this._pos2+3]},r.centerJustifiedTextSymbolIndex.set=function(t){this._structArray.int16[this._pos2+3]=t},r.leftJustifiedTextSymbolIndex.get=function(){return this._structArray.int16[this._pos2+4]},r.leftJustifiedTextSymbolIndex.set=function(t){this._structArray.int16[this._pos2+4]=t},r.verticalPlacedTextSymbolIndex.get=function(){return this._structArray.int16[this._pos2+5]},r.verticalPlacedTextSymbolIndex.set=function(t){this._structArray.int16[this._pos2+5]=t},r.key.get=function(){return this._structArray.uint16[this._pos2+6]},r.key.set=function(t){this._structArray.uint16[this._pos2+6]=t},r.textBoxStartIndex.get=function(){return this._structArray.uint16[this._pos2+7]},r.textBoxStartIndex.set=function(t){this._structArray.uint16[this._pos2+7]=t},r.textBoxEndIndex.get=function(){return this._structArray.uint16[this._pos2+8]},r.textBoxEndIndex.set=function(t){this._structArray.uint16[this._pos2+8]=t},r.verticalTextBoxStartIndex.get=function(){return this._structArray.uint16[this._pos2+9]},r.verticalTextBoxStartIndex.set=function(t){this._structArray.uint16[this._pos2+9]=t},r.verticalTextBoxEndIndex.get=function(){return this._structArray.uint16[this._pos2+10]},r.verticalTextBoxEndIndex.set=function(t){this._structArray.uint16[this._pos2+10]=t},r.iconBoxStartIndex.get=function(){return this._structArray.uint16[this._pos2+11]},r.iconBoxStartIndex.set=function(t){this._structArray.uint16[this._pos2+11]=t},r.iconBoxEndIndex.get=function(){return this._structArray.uint16[this._pos2+12]},r.iconBoxEndIndex.set=function(t){this._structArray.uint16[this._pos2+12]=t},r.featureIndex.get=function(){return this._structArray.uint16[this._pos2+13]},r.featureIndex.set=function(t){this._structArray.uint16[this._pos2+13]=t},r.numHorizontalGlyphVertices.get=function(){return this._structArray.uint16[this._pos2+14]},r.numHorizontalGlyphVertices.set=function(t){this._structArray.uint16[this._pos2+14]=t},r.numVerticalGlyphVertices.get=function(){return this._structArray.uint16[this._pos2+15]},r.numVerticalGlyphVertices.set=function(t){this._structArray.uint16[this._pos2+15]=t},r.numIconVertices.get=function(){return this._structArray.uint16[this._pos2+16]},r.numIconVertices.set=function(t){this._structArray.uint16[this._pos2+16]=t},r.crossTileID.get=function(){return this._structArray.uint32[this._pos4+9]},r.crossTileID.set=function(t){this._structArray.uint32[this._pos4+9]=t},r.textBoxScale.get=function(){return this._structArray.float32[this._pos4+10]},r.textBoxScale.set=function(t){this._structArray.float32[this._pos4+10]=t},r.radialTextOffset.get=function(){return this._structArray.float32[this._pos4+11]},r.radialTextOffset.set=function(t){this._structArray.float32[this._pos4+11]=t},Object.defineProperties(e.prototype,r),e}(Wn);wa.prototype.size=48;var ka=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.get=function(t){return new wa(this,t)},e}(ca);pn(\"SymbolInstanceArray\",ka);var Ta=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={offsetX:{configurable:!0}};return r.offsetX.get=function(){return this._structArray.float32[this._pos4+0]},r.offsetX.set=function(t){this._structArray.float32[this._pos4+0]=t},Object.defineProperties(e.prototype,r),e}(Wn);Ta.prototype.size=4;var Aa=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getoffsetX=function(t){return this.float32[1*t+0]},e.prototype.get=function(t){return new Ta(this,t)},e}(ua);pn(\"GlyphOffsetArray\",Aa);var Ma=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={x:{configurable:!0},y:{configurable:!0},tileUnitDistanceFromAnchor:{configurable:!0}};return r.x.get=function(){return this._structArray.int16[this._pos2+0]},r.x.set=function(t){this._structArray.int16[this._pos2+0]=t},r.y.get=function(){return this._structArray.int16[this._pos2+1]},r.y.set=function(t){this._structArray.int16[this._pos2+1]=t},r.tileUnitDistanceFromAnchor.get=function(){return this._structArray.int16[this._pos2+2]},r.tileUnitDistanceFromAnchor.set=function(t){this._structArray.int16[this._pos2+2]=t},Object.defineProperties(e.prototype,r),e}(Wn);Ma.prototype.size=6;var Sa=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getx=function(t){return this.int16[3*t+0]},e.prototype.gety=function(t){return this.int16[3*t+1]},e.prototype.gettileUnitDistanceFromAnchor=function(t){return this.int16[3*t+2]},e.prototype.get=function(t){return new Ma(this,t)},e}(ha);pn(\"SymbolLineVertexArray\",Sa);var Ea=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={featureIndex:{configurable:!0},sourceLayerIndex:{configurable:!0},bucketIndex:{configurable:!0}};return r.featureIndex.get=function(){return this._structArray.uint32[this._pos4+0]},r.featureIndex.set=function(t){this._structArray.uint32[this._pos4+0]=t},r.sourceLayerIndex.get=function(){return this._structArray.uint16[this._pos2+2]},r.sourceLayerIndex.set=function(t){this._structArray.uint16[this._pos2+2]=t},r.bucketIndex.get=function(){return this._structArray.uint16[this._pos2+3]},r.bucketIndex.set=function(t){this._structArray.uint16[this._pos2+3]=t},Object.defineProperties(e.prototype,r),e}(Wn);Ea.prototype.size=8;var Ca=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.get=function(t){return new Ea(this,t)},e}(fa);pn(\"FeatureIndexArray\",Ca);var La=Zn([{name:\"a_pos\",components:2,type:\"Int16\"}],4).members,Pa=function(t){void 0===t&&(t=[]),this.segments=t};function Oa(t,e){return 256*(t=c(Math.floor(t),0,255))+c(Math.floor(e),0,255)}Pa.prototype.prepareSegment=function(t,e,r,n){var a=this.segments[this.segments.length-1];return t>Pa.MAX_VERTEX_ARRAY_LENGTH&&w(\"Max vertices per segment is \"+Pa.MAX_VERTEX_ARRAY_LENGTH+\": bucket requested \"+t),(!a||a.vertexLength+t>Pa.MAX_VERTEX_ARRAY_LENGTH||a.sortKey!==n)&&(a={vertexOffset:e.length,primitiveOffset:r.length,vertexLength:0,primitiveLength:0},void 0!==n&&(a.sortKey=n),this.segments.push(a)),a},Pa.prototype.get=function(){return this.segments},Pa.prototype.destroy=function(){for(var t=0,e=this.segments;t<e.length;t+=1){var r=e[t];for(var n in r.vaos)r.vaos[n].destroy()}},Pa.simpleSegment=function(t,e,r,n){return new Pa([{vertexOffset:t,primitiveOffset:e,vertexLength:r,primitiveLength:n,vaos:{},sortKey:0}])},Pa.MAX_VERTEX_ARRAY_LENGTH=Math.pow(2,16)-1,pn(\"SegmentVector\",Pa);var Ia=function(){this.ids=[],this.positions=[],this.indexed=!1};function za(t,e,r){var n=t[e];t[e]=t[r],t[r]=n}Ia.prototype.add=function(t,e,r,n){this.ids.push(t),this.positions.push(e,r,n)},Ia.prototype.getPositions=function(t){for(var e=0,r=this.ids.length-1;e<r;){var n=e+r>>1;this.ids[n]>=t?r=n:e=n+1}for(var a=[];this.ids[e]===t;){var i=this.positions[3*e],o=this.positions[3*e+1],s=this.positions[3*e+2];a.push({index:i,start:o,end:s}),e++}return a},Ia.serialize=function(t,e){var r=new Float64Array(t.ids),n=new Uint32Array(t.positions);return function t(e,r,n,a){if(!(n>=a)){for(var i=e[n+a>>1],o=n-1,s=a+1;;){do{o++}while(e[o]<i);do{s--}while(e[s]>i);if(o>=s)break;za(e,o,s),za(r,3*o,3*s),za(r,3*o+1,3*s+1),za(r,3*o+2,3*s+2)}t(e,r,n,s),t(e,r,s+1,a)}}(r,n,0,r.length-1),e.push(r.buffer,n.buffer),{ids:r,positions:n}},Ia.deserialize=function(t){var e=new Ia;return e.ids=t.ids,e.positions=t.positions,e.indexed=!0,e},pn(\"FeaturePositionMap\",Ia);var Da=function(t,e){this.gl=t.gl,this.location=e},Ra=function(t){function e(e,r){t.call(this,e,r),this.current=0}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.set=function(t){this.current!==t&&(this.current=t,this.gl.uniform1i(this.location,t))},e}(Da),Fa=function(t){function e(e,r){t.call(this,e,r),this.current=0}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.set=function(t){this.current!==t&&(this.current=t,this.gl.uniform1f(this.location,t))},e}(Da),Ba=function(t){function e(e,r){t.call(this,e,r),this.current=[0,0]}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.set=function(t){t[0]===this.current[0]&&t[1]===this.current[1]||(this.current=t,this.gl.uniform2f(this.location,t[0],t[1]))},e}(Da),Na=function(t){function e(e,r){t.call(this,e,r),this.current=[0,0,0]}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.set=function(t){t[0]===this.current[0]&&t[1]===this.current[1]&&t[2]===this.current[2]||(this.current=t,this.gl.uniform3f(this.location,t[0],t[1],t[2]))},e}(Da),ja=function(t){function e(e,r){t.call(this,e,r),this.current=[0,0,0,0]}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.set=function(t){t[0]===this.current[0]&&t[1]===this.current[1]&&t[2]===this.current[2]&&t[3]===this.current[3]||(this.current=t,this.gl.uniform4f(this.location,t[0],t[1],t[2],t[3]))},e}(Da),Va=function(t){function e(e,r){t.call(this,e,r),this.current=Wt.transparent}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.set=function(t){t.r===this.current.r&&t.g===this.current.g&&t.b===this.current.b&&t.a===this.current.a||(this.current=t,this.gl.uniform4f(this.location,t.r,t.g,t.b,t.a))},e}(Da),Ua=new Float32Array(16),qa=function(t){function e(e,r){t.call(this,e,r),this.current=Ua}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.set=function(t){if(t[12]!==this.current[12]||t[0]!==this.current[0])return this.current=t,void this.gl.uniformMatrix4fv(this.location,!1,t);for(var e=1;e<16;e++)if(t[e]!==this.current[e]){this.current=t,this.gl.uniformMatrix4fv(this.location,!1,t);break}},e}(Da);function Ha(t){return[Oa(255*t.r,255*t.g),Oa(255*t.b,255*t.a)]}var Ga=function(t,e,r){this.value=t,this.names=e,this.uniformNames=this.names.map(function(t){return\"u_\"+t}),this.type=r,this.maxValue=-1/0};Ga.prototype.defines=function(){return this.names.map(function(t){return\"#define HAS_UNIFORM_u_\"+t})},Ga.prototype.setConstantPatternPositions=function(){},Ga.prototype.populatePaintArray=function(){},Ga.prototype.updatePaintArray=function(){},Ga.prototype.upload=function(){},Ga.prototype.destroy=function(){},Ga.prototype.setUniforms=function(t,e,r,n){e.set(n.constantOr(this.value))},Ga.prototype.getBinding=function(t,e){return\"color\"===this.type?new Va(t,e):new Fa(t,e)},Ga.serialize=function(t){var e=t.value,r=t.names,n=t.type;return{value:gn(e),names:r,type:n}},Ga.deserialize=function(t){var e=t.value,r=t.names,n=t.type;return new Ga(vn(e),r,n)};var Ya=function(t,e,r){this.value=t,this.names=e,this.uniformNames=this.names.map(function(t){return\"u_\"+t}),this.type=r,this.maxValue=-1/0,this.patternPositions={patternTo:null,patternFrom:null}};Ya.prototype.defines=function(){return this.names.map(function(t){return\"#define HAS_UNIFORM_u_\"+t})},Ya.prototype.populatePaintArray=function(){},Ya.prototype.updatePaintArray=function(){},Ya.prototype.upload=function(){},Ya.prototype.destroy=function(){},Ya.prototype.setConstantPatternPositions=function(t,e){this.patternPositions.patternTo=t.tlbr,this.patternPositions.patternFrom=e.tlbr},Ya.prototype.setUniforms=function(t,e,r,n,a){var i=this.patternPositions;\"u_pattern_to\"===a&&i.patternTo&&e.set(i.patternTo),\"u_pattern_from\"===a&&i.patternFrom&&e.set(i.patternFrom)},Ya.prototype.getBinding=function(t,e){return new ja(t,e)};var Wa=function(t,e,r,n){this.expression=t,this.names=e,this.type=r,this.uniformNames=this.names.map(function(t){return\"a_\"+t}),this.maxValue=-1/0,this.paintVertexAttributes=e.map(function(t){return{name:\"a_\"+t,type:\"Float32\",components:\"color\"===r?2:1,offset:0}}),this.paintVertexArray=new n};Wa.prototype.defines=function(){return[]},Wa.prototype.setConstantPatternPositions=function(){},Wa.prototype.populatePaintArray=function(t,e,r,n){var a=this.paintVertexArray,i=a.length;a.reserve(t);var o=this.expression.evaluate(new Ln(0),e,{},n);if(\"color\"===this.type)for(var s=Ha(o),l=i;l<t;l++)a.emplaceBack(s[0],s[1]);else{for(var c=i;c<t;c++)a.emplaceBack(o);this.maxValue=Math.max(this.maxValue,o)}},Wa.prototype.updatePaintArray=function(t,e,r,n){var a=this.paintVertexArray,i=this.expression.evaluate({zoom:0},r,n);if(\"color\"===this.type)for(var o=Ha(i),s=t;s<e;s++)a.emplace(s,o[0],o[1]);else{for(var l=t;l<e;l++)a.emplace(l,i);this.maxValue=Math.max(this.maxValue,i)}},Wa.prototype.upload=function(t){this.paintVertexArray&&this.paintVertexArray.arrayBuffer&&(this.paintVertexBuffer&&this.paintVertexBuffer.buffer?this.paintVertexBuffer.updateData(this.paintVertexArray):this.paintVertexBuffer=t.createVertexBuffer(this.paintVertexArray,this.paintVertexAttributes,this.expression.isStateDependent))},Wa.prototype.destroy=function(){this.paintVertexBuffer&&this.paintVertexBuffer.destroy()},Wa.prototype.setUniforms=function(t,e){e.set(0)},Wa.prototype.getBinding=function(t,e){return new Fa(t,e)};var Xa=function(t,e,r,n,a,i){this.expression=t,this.names=e,this.uniformNames=this.names.map(function(t){return\"u_\"+t+\"_t\"}),this.type=r,this.useIntegerZoom=n,this.zoom=a,this.maxValue=-1/0;var o=i;this.paintVertexAttributes=e.map(function(t){return{name:\"a_\"+t,type:\"Float32\",components:\"color\"===r?4:2,offset:0}}),this.paintVertexArray=new o};Xa.prototype.defines=function(){return[]},Xa.prototype.setConstantPatternPositions=function(){},Xa.prototype.populatePaintArray=function(t,e,r,n){var a=this.paintVertexArray,i=a.length;a.reserve(t);var o=this.expression.evaluate(new Ln(this.zoom),e,{},n),s=this.expression.evaluate(new Ln(this.zoom+1),e,{},n);if(\"color\"===this.type)for(var l=Ha(o),c=Ha(s),u=i;u<t;u++)a.emplaceBack(l[0],l[1],c[0],c[1]);else{for(var h=i;h<t;h++)a.emplaceBack(o,s);this.maxValue=Math.max(this.maxValue,o,s)}},Xa.prototype.updatePaintArray=function(t,e,r,n){var a=this.paintVertexArray,i=this.expression.evaluate({zoom:this.zoom},r,n),o=this.expression.evaluate({zoom:this.zoom+1},r,n);if(\"color\"===this.type)for(var s=Ha(i),l=Ha(o),c=t;c<e;c++)a.emplace(c,s[0],s[1],l[0],l[1]);else{for(var u=t;u<e;u++)a.emplace(u,i,o);this.maxValue=Math.max(this.maxValue,i,o)}},Xa.prototype.upload=function(t){this.paintVertexArray&&this.paintVertexArray.arrayBuffer&&(this.paintVertexBuffer&&this.paintVertexBuffer.buffer?this.paintVertexBuffer.updateData(this.paintVertexArray):this.paintVertexBuffer=t.createVertexBuffer(this.paintVertexArray,this.paintVertexAttributes,this.expression.isStateDependent))},Xa.prototype.destroy=function(){this.paintVertexBuffer&&this.paintVertexBuffer.destroy()},Xa.prototype.interpolationFactor=function(t){return this.useIntegerZoom?this.expression.interpolationFactor(Math.floor(t),this.zoom,this.zoom+1):this.expression.interpolationFactor(t,this.zoom,this.zoom+1)},Xa.prototype.setUniforms=function(t,e,r){e.set(this.interpolationFactor(r.zoom))},Xa.prototype.getBinding=function(t,e){return new Fa(t,e)};var Za=function(t,e,r,n,a,i,o){this.expression=t,this.names=e,this.type=r,this.uniformNames=this.names.map(function(t){return\"u_\"+t+\"_t\"}),this.useIntegerZoom=n,this.zoom=a,this.maxValue=-1/0,this.layerId=o,this.paintVertexAttributes=e.map(function(t){return{name:\"a_\"+t,type:\"Uint16\",components:4,offset:0}}),this.zoomInPaintVertexArray=new i,this.zoomOutPaintVertexArray=new i};Za.prototype.defines=function(){return[]},Za.prototype.setConstantPatternPositions=function(){},Za.prototype.populatePaintArray=function(t,e,r){var n=this.zoomInPaintVertexArray,a=this.zoomOutPaintVertexArray,i=this.layerId,o=n.length;if(n.reserve(t),a.reserve(t),r&&e.patterns&&e.patterns[i]){var s=e.patterns[i],l=s.min,c=s.mid,u=s.max,h=r[l],f=r[c],p=r[u];if(!h||!f||!p)return;for(var d=o;d<t;d++)n.emplaceBack(f.tl[0],f.tl[1],f.br[0],f.br[1],h.tl[0],h.tl[1],h.br[0],h.br[1]),a.emplaceBack(f.tl[0],f.tl[1],f.br[0],f.br[1],p.tl[0],p.tl[1],p.br[0],p.br[1])}},Za.prototype.updatePaintArray=function(t,e,r,n,a){var i=this.zoomInPaintVertexArray,o=this.zoomOutPaintVertexArray,s=this.layerId;if(a&&r.patterns&&r.patterns[s]){var l=r.patterns[s],c=l.min,u=l.mid,h=l.max,f=a[c],p=a[u],d=a[h];if(!f||!p||!d)return;for(var g=t;g<e;g++)i.emplace(g,p.tl[0],p.tl[1],p.br[0],p.br[1],f.tl[0],f.tl[1],f.br[0],f.br[1]),o.emplace(g,p.tl[0],p.tl[1],p.br[0],p.br[1],d.tl[0],d.tl[1],d.br[0],d.br[1])}},Za.prototype.upload=function(t){this.zoomInPaintVertexArray&&this.zoomInPaintVertexArray.arrayBuffer&&this.zoomOutPaintVertexArray&&this.zoomOutPaintVertexArray.arrayBuffer&&(this.zoomInPaintVertexBuffer=t.createVertexBuffer(this.zoomInPaintVertexArray,this.paintVertexAttributes,this.expression.isStateDependent),this.zoomOutPaintVertexBuffer=t.createVertexBuffer(this.zoomOutPaintVertexArray,this.paintVertexAttributes,this.expression.isStateDependent))},Za.prototype.destroy=function(){this.zoomOutPaintVertexBuffer&&this.zoomOutPaintVertexBuffer.destroy(),this.zoomInPaintVertexBuffer&&this.zoomInPaintVertexBuffer.destroy()},Za.prototype.setUniforms=function(t,e){e.set(0)},Za.prototype.getBinding=function(t,e){return new Fa(t,e)};var Ja=function(){this.binders={},this.cacheKey=\"\",this._buffers=[],this._featureMap=new Ia,this._bufferOffset=0};Ja.createDynamic=function(t,e,r){var n=new Ja,a=[];for(var i in t.paint._values)if(r(i)){var o=t.paint.get(i);if(o instanceof Fn&&cr(o.property.specification)){var s=Qa(i,t.type),l=o.property.specification.type,c=o.property.useIntegerZoom;if(\"cross-faded\"===o.property.specification[\"property-type\"]||\"cross-faded-data-driven\"===o.property.specification[\"property-type\"])if(\"constant\"===o.value.kind)n.binders[i]=new Ya(o.value.value,s,l),a.push(\"/u_\"+i);else{var u=$a(i,l,\"source\");n.binders[i]=new Za(o.value,s,l,c,e,u,t.id),a.push(\"/a_\"+i)}else if(\"constant\"===o.value.kind)n.binders[i]=new Ga(o.value.value,s,l),a.push(\"/u_\"+i);else if(\"source\"===o.value.kind){var h=$a(i,l,\"source\");n.binders[i]=new Wa(o.value,s,l,h),a.push(\"/a_\"+i)}else{var f=$a(i,l,\"composite\");n.binders[i]=new Xa(o.value,s,l,c,e,f),a.push(\"/z_\"+i)}}}return n.cacheKey=a.sort().join(\"\"),n},Ja.prototype.populatePaintArrays=function(t,e,r,n,a){for(var i in this.binders)this.binders[i].populatePaintArray(t,e,n,a);void 0!==e.id&&this._featureMap.add(+e.id,r,this._bufferOffset,t),this._bufferOffset=t},Ja.prototype.setConstantPatternPositions=function(t,e){for(var r in this.binders)this.binders[r].setConstantPatternPositions(t,e)},Ja.prototype.updatePaintArrays=function(t,e,r,n){var a=!1;for(var i in t)for(var o=0,s=this._featureMap.getPositions(+i);o<s.length;o+=1){var l=s[o],c=e.feature(l.index);for(var u in this.binders){var h=this.binders[u];if(!(h instanceof Ga||h instanceof Ya)&&!0===h.expression.isStateDependent){var f=r.paint.get(u);h.expression=f.value,h.updatePaintArray(l.start,l.end,c,t[i],n),a=!0}}}return a},Ja.prototype.defines=function(){var t=[];for(var e in this.binders)t.push.apply(t,this.binders[e].defines());return t},Ja.prototype.getPaintVertexBuffers=function(){return this._buffers},Ja.prototype.getUniforms=function(t,e){var r=[];for(var n in this.binders)for(var a=this.binders[n],i=0,o=a.uniformNames;i<o.length;i+=1){var s=o[i];if(e[s]){var l=a.getBinding(t,e[s]);r.push({name:s,property:n,binding:l})}}return r},Ja.prototype.setUniforms=function(t,e,r,n){for(var a=0,i=e;a<i.length;a+=1){var o=i[a],s=o.name,l=o.property,c=o.binding;this.binders[l].setUniforms(t,c,n,r.get(l),s)}},Ja.prototype.updatePatternPaintBuffers=function(t){var e=[];for(var r in this.binders){var n=this.binders[r];if(n instanceof Za){var a=2===t.fromScale?n.zoomInPaintVertexBuffer:n.zoomOutPaintVertexBuffer;a&&e.push(a)}else(n instanceof Wa||n instanceof Xa)&&n.paintVertexBuffer&&e.push(n.paintVertexBuffer)}this._buffers=e},Ja.prototype.upload=function(t){for(var e in this.binders)this.binders[e].upload(t);var r=[];for(var n in this.binders){var a=this.binders[n];(a instanceof Wa||a instanceof Xa)&&a.paintVertexBuffer&&r.push(a.paintVertexBuffer)}this._buffers=r},Ja.prototype.destroy=function(){for(var t in this.binders)this.binders[t].destroy()};var Ka=function(t,e,r,n){void 0===n&&(n=function(){return!0}),this.programConfigurations={};for(var a=0,i=e;a<i.length;a+=1){var o=i[a];this.programConfigurations[o.id]=Ja.createDynamic(o,r,n),this.programConfigurations[o.id].layoutAttributes=t}this.needsUpload=!1};function Qa(t,e){return{\"text-opacity\":[\"opacity\"],\"icon-opacity\":[\"opacity\"],\"text-color\":[\"fill_color\"],\"icon-color\":[\"fill_color\"],\"text-halo-color\":[\"halo_color\"],\"icon-halo-color\":[\"halo_color\"],\"text-halo-blur\":[\"halo_blur\"],\"icon-halo-blur\":[\"halo_blur\"],\"text-halo-width\":[\"halo_width\"],\"icon-halo-width\":[\"halo_width\"],\"line-gap-width\":[\"gapwidth\"],\"line-pattern\":[\"pattern_to\",\"pattern_from\"],\"fill-pattern\":[\"pattern_to\",\"pattern_from\"],\"fill-extrusion-pattern\":[\"pattern_to\",\"pattern_from\"]}[t]||[t.replace(e+\"-\",\"\").replace(/-/g,\"_\")]}function $a(t,e,r){var n={color:{source:va,composite:ma},number:{source:ua,composite:va}},a=function(t){return{\"line-pattern\":{source:ea,composite:ea},\"fill-pattern\":{source:ea,composite:ea},\"fill-extrusion-pattern\":{source:ea,composite:ea}}[t]}(t);return a&&a[r]||n[e][r]}Ka.prototype.populatePaintArrays=function(t,e,r,n,a){for(var i in this.programConfigurations)this.programConfigurations[i].populatePaintArrays(t,e,r,n,a);this.needsUpload=!0},Ka.prototype.updatePaintArrays=function(t,e,r,n){for(var a=0,i=r;a<i.length;a+=1){var o=i[a];this.needsUpload=this.programConfigurations[o.id].updatePaintArrays(t,e,o,n)||this.needsUpload}},Ka.prototype.get=function(t){return this.programConfigurations[t]},Ka.prototype.upload=function(t){if(this.needsUpload){for(var e in this.programConfigurations)this.programConfigurations[e].upload(t);this.needsUpload=!1}},Ka.prototype.destroy=function(){for(var t in this.programConfigurations)this.programConfigurations[t].destroy()},pn(\"ConstantBinder\",Ga),pn(\"CrossFadedConstantBinder\",Ya),pn(\"SourceExpressionBinder\",Wa),pn(\"CrossFadedCompositeBinder\",Za),pn(\"CompositeExpressionBinder\",Xa),pn(\"ProgramConfiguration\",Ja,{omit:[\"_buffers\"]}),pn(\"ProgramConfigurationSet\",Ka);var ti=8192,ei=(15,{min:-1*Math.pow(2,14),max:Math.pow(2,14)-1});function ri(t){for(var e=ti/t.extent,r=t.loadGeometry(),n=0;n<r.length;n++)for(var a=r[n],i=0;i<a.length;i++){var o=a[i];o.x=Math.round(o.x*e),o.y=Math.round(o.y*e),(o.x<ei.min||o.x>ei.max||o.y<ei.min||o.y>ei.max)&&(w(\"Geometry exceeds allowed extent, reduce your vector tile buffer size\"),o.x=c(o.x,ei.min,ei.max),o.y=c(o.y,ei.min,ei.max))}return r}function ni(t,e,r,n,a){t.emplaceBack(2*e+(n+1)/2,2*r+(a+1)/2)}var ai=function(t){this.zoom=t.zoom,this.overscaling=t.overscaling,this.layers=t.layers,this.layerIds=this.layers.map(function(t){return t.id}),this.index=t.index,this.hasPattern=!1,this.layoutVertexArray=new Kn,this.indexArray=new pa,this.segments=new Pa,this.programConfigurations=new Ka(La,t.layers,t.zoom),this.stateDependentLayerIds=this.layers.filter(function(t){return t.isStateDependent()}).map(function(t){return t.id})};function ii(t,e){for(var r=0;r<t.length;r++)if(di(e,t[r]))return!0;for(var n=0;n<e.length;n++)if(di(t,e[n]))return!0;return!!ci(t,e)}function oi(t,e,r){return!!di(t,e)||!!hi(e,t,r)}function si(t,e){if(1===t.length)return pi(e,t[0]);for(var r=0;r<e.length;r++)for(var n=e[r],a=0;a<n.length;a++)if(di(t,n[a]))return!0;for(var i=0;i<t.length;i++)if(pi(e,t[i]))return!0;for(var o=0;o<e.length;o++)if(ci(t,e[o]))return!0;return!1}function li(t,e,r){if(t.length>1){if(ci(t,e))return!0;for(var n=0;n<e.length;n++)if(hi(e[n],t,r))return!0}for(var a=0;a<t.length;a++)if(hi(t[a],e,r))return!0;return!1}function ci(t,e){if(0===t.length||0===e.length)return!1;for(var r=0;r<t.length-1;r++)for(var n=t[r],a=t[r+1],i=0;i<e.length-1;i++)if(ui(n,a,e[i],e[i+1]))return!0;return!1}function ui(t,e,r,n){return k(t,r,n)!==k(e,r,n)&&k(t,e,r)!==k(t,e,n)}function hi(t,e,r){var n=r*r;if(1===e.length)return t.distSqr(e[0])<n;for(var a=1;a<e.length;a++)if(fi(t,e[a-1],e[a])<n)return!0;return!1}function fi(t,e,r){var n=e.distSqr(r);if(0===n)return t.distSqr(e);var a=((t.x-e.x)*(r.x-e.x)+(t.y-e.y)*(r.y-e.y))/n;return a<0?t.distSqr(e):a>1?t.distSqr(r):t.distSqr(r.sub(e)._mult(a)._add(e))}function pi(t,e){for(var r,n,a,i=!1,o=0;o<t.length;o++)for(var s=0,l=(r=t[o]).length-1;s<r.length;l=s++)n=r[s],a=r[l],n.y>e.y!=a.y>e.y&&e.x<(a.x-n.x)*(e.y-n.y)/(a.y-n.y)+n.x&&(i=!i);return i}function di(t,e){for(var r=!1,n=0,a=t.length-1;n<t.length;a=n++){var i=t[n],o=t[a];i.y>e.y!=o.y>e.y&&e.x<(o.x-i.x)*(e.y-i.y)/(o.y-i.y)+i.x&&(r=!r)}return r}function gi(t,e,r){var n=r[0],a=r[2];if(t.x<n.x&&e.x<n.x||t.x>a.x&&e.x>a.x||t.y<n.y&&e.y<n.y||t.y>a.y&&e.y>a.y)return!1;var i=k(t,e,r[0]);return i!==k(t,e,r[1])||i!==k(t,e,r[2])||i!==k(t,e,r[3])}function vi(t,e,r){var n=e.paint.get(t).value;return\"constant\"===n.kind?n.value:r.programConfigurations.get(e.id).binders[t].maxValue}function mi(t){return Math.sqrt(t[0]*t[0]+t[1]*t[1])}function yi(t,e,r,n,i){if(!e[0]&&!e[1])return t;var o=a.convert(e)._mult(i);\"viewport\"===r&&o._rotate(-n);for(var s=[],l=0;l<t.length;l++){var c=t[l];s.push(c.sub(o))}return s}ai.prototype.populate=function(t,e){var r=this.layers[0],n=[],a=null;\"circle\"===r.type&&(a=r.layout.get(\"circle-sort-key\"));for(var i=0,o=t;i<o.length;i+=1){var s=o[i],l=s.feature,c=s.index,u=s.sourceLayerIndex;if(this.layers[0]._featureFilter(new Ln(this.zoom),l)){var h=ri(l),f=a?a.evaluate(l,{}):void 0,p={id:l.id,properties:l.properties,type:l.type,sourceLayerIndex:u,index:c,geometry:h,patterns:{},sortKey:f};n.push(p)}}a&&n.sort(function(t,e){return t.sortKey-e.sortKey});for(var d=0,g=n;d<g.length;d+=1){var v=g[d],m=v,y=m.geometry,x=m.index,b=m.sourceLayerIndex,_=t[x].feature;this.addFeature(v,y,x),e.featureIndex.insert(_,y,x,b,this.index)}},ai.prototype.update=function(t,e,r){this.stateDependentLayers.length&&this.programConfigurations.updatePaintArrays(t,e,this.stateDependentLayers,r)},ai.prototype.isEmpty=function(){return 0===this.layoutVertexArray.length},ai.prototype.uploadPending=function(){return!this.uploaded||this.programConfigurations.needsUpload},ai.prototype.upload=function(t){this.uploaded||(this.layoutVertexBuffer=t.createVertexBuffer(this.layoutVertexArray,La),this.indexBuffer=t.createIndexBuffer(this.indexArray)),this.programConfigurations.upload(t),this.uploaded=!0},ai.prototype.destroy=function(){this.layoutVertexBuffer&&(this.layoutVertexBuffer.destroy(),this.indexBuffer.destroy(),this.programConfigurations.destroy(),this.segments.destroy())},ai.prototype.addFeature=function(t,e,r){for(var n=0,a=e;n<a.length;n+=1)for(var i=0,o=a[n];i<o.length;i+=1){var s=o[i],l=s.x,c=s.y;if(!(l<0||l>=ti||c<0||c>=ti)){var u=this.segments.prepareSegment(4,this.layoutVertexArray,this.indexArray,t.sortKey),h=u.vertexLength;ni(this.layoutVertexArray,l,c,-1,-1),ni(this.layoutVertexArray,l,c,1,-1),ni(this.layoutVertexArray,l,c,1,1),ni(this.layoutVertexArray,l,c,-1,1),this.indexArray.emplaceBack(h,h+1,h+2),this.indexArray.emplaceBack(h,h+3,h+2),u.vertexLength+=4,u.primitiveLength+=2}}this.programConfigurations.populatePaintArrays(this.layoutVertexArray.length,t,r,{})},pn(\"CircleBucket\",ai,{omit:[\"layers\"]});var xi,bi=new Hn({\"circle-sort-key\":new jn(Tt.layout_circle[\"circle-sort-key\"])}),_i={paint:new Hn({\"circle-radius\":new jn(Tt.paint_circle[\"circle-radius\"]),\"circle-color\":new jn(Tt.paint_circle[\"circle-color\"]),\"circle-blur\":new jn(Tt.paint_circle[\"circle-blur\"]),\"circle-opacity\":new jn(Tt.paint_circle[\"circle-opacity\"]),\"circle-translate\":new Nn(Tt.paint_circle[\"circle-translate\"]),\"circle-translate-anchor\":new Nn(Tt.paint_circle[\"circle-translate-anchor\"]),\"circle-pitch-scale\":new Nn(Tt.paint_circle[\"circle-pitch-scale\"]),\"circle-pitch-alignment\":new Nn(Tt.paint_circle[\"circle-pitch-alignment\"]),\"circle-stroke-width\":new jn(Tt.paint_circle[\"circle-stroke-width\"]),\"circle-stroke-color\":new jn(Tt.paint_circle[\"circle-stroke-color\"]),\"circle-stroke-opacity\":new jn(Tt.paint_circle[\"circle-stroke-opacity\"])}),layout:bi},wi=\"undefined\"!=typeof Float32Array?Float32Array:Array;function ki(t,e,r){var n=e[0],a=e[1],i=e[2],o=e[3];return t[0]=r[0]*n+r[4]*a+r[8]*i+r[12]*o,t[1]=r[1]*n+r[5]*a+r[9]*i+r[13]*o,t[2]=r[2]*n+r[6]*a+r[10]*i+r[14]*o,t[3]=r[3]*n+r[7]*a+r[11]*i+r[15]*o,t}Math.hypot||(Math.hypot=function(){for(var t=arguments,e=0,r=arguments.length;r--;)e+=t[r]*t[r];return Math.sqrt(e)}),xi=new wi(3),wi!=Float32Array&&(xi[0]=0,xi[1]=0,xi[2]=0),function(){var t=new wi(4);wi!=Float32Array&&(t[0]=0,t[1]=0,t[2]=0,t[3]=0)}();var Ti=function(t){function e(e){t.call(this,e,_i)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createBucket=function(t){return new ai(t)},e.prototype.queryRadius=function(t){var e=t;return vi(\"circle-radius\",this,e)+vi(\"circle-stroke-width\",this,e)+mi(this.paint.get(\"circle-translate\"))},e.prototype.queryIntersectsFeature=function(t,e,r,n,a,i,o,s){for(var l=yi(t,this.paint.get(\"circle-translate\"),this.paint.get(\"circle-translate-anchor\"),i.angle,o),c=this.paint.get(\"circle-radius\").evaluate(e,r)+this.paint.get(\"circle-stroke-width\").evaluate(e,r),u=\"map\"===this.paint.get(\"circle-pitch-alignment\"),h=u?l:function(t,e){return l.map(function(t){return Ai(t,e)})}(0,s),f=u?c*o:c,p=0,d=n;p<d.length;p+=1)for(var g=0,v=d[p];g<v.length;g+=1){var m=v[g],y=u?m:Ai(m,s),x=f,b=ki([],[m.x,m.y,0,1],s);if(\"viewport\"===this.paint.get(\"circle-pitch-scale\")&&\"map\"===this.paint.get(\"circle-pitch-alignment\")?x*=b[3]/i.cameraToCenterDistance:\"map\"===this.paint.get(\"circle-pitch-scale\")&&\"viewport\"===this.paint.get(\"circle-pitch-alignment\")&&(x*=i.cameraToCenterDistance/b[3]),oi(h,y,x))return!0}return!1},e}(Gn);function Ai(t,e){var r=ki([],[t.x,t.y,0,1],e);return new a(r[0]/r[3],r[1]/r[3])}var Mi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}(ai);function Si(t,e,r,n){var a=e.width,i=e.height;if(n){if(n instanceof Uint8ClampedArray)n=new Uint8Array(n.buffer);else if(n.length!==a*i*r)throw new RangeError(\"mismatched image size\")}else n=new Uint8Array(a*i*r);return t.width=a,t.height=i,t.data=n,t}function Ei(t,e,r){var n=e.width,a=e.height;if(n!==t.width||a!==t.height){var i=Si({},{width:n,height:a},r);Ci(t,i,{x:0,y:0},{x:0,y:0},{width:Math.min(t.width,n),height:Math.min(t.height,a)},r),t.width=n,t.height=a,t.data=i.data}}function Ci(t,e,r,n,a,i){if(0===a.width||0===a.height)return e;if(a.width>t.width||a.height>t.height||r.x>t.width-a.width||r.y>t.height-a.height)throw new RangeError(\"out of range source coordinates for image copy\");if(a.width>e.width||a.height>e.height||n.x>e.width-a.width||n.y>e.height-a.height)throw new RangeError(\"out of range destination coordinates for image copy\");for(var o=t.data,s=e.data,l=0;l<a.height;l++)for(var c=((r.y+l)*t.width+r.x)*i,u=((n.y+l)*e.width+n.x)*i,h=0;h<a.width*i;h++)s[u+h]=o[c+h];return e}pn(\"HeatmapBucket\",Mi,{omit:[\"layers\"]});var Li=function(t,e){Si(this,t,1,e)};Li.prototype.resize=function(t){Ei(this,t,1)},Li.prototype.clone=function(){return new Li({width:this.width,height:this.height},new Uint8Array(this.data))},Li.copy=function(t,e,r,n,a){Ci(t,e,r,n,a,1)};var Pi=function(t,e){Si(this,t,4,e)};Pi.prototype.resize=function(t){Ei(this,t,4)},Pi.prototype.replace=function(t,e){e?this.data.set(t):t instanceof Uint8ClampedArray?this.data=new Uint8Array(t.buffer):this.data=t},Pi.prototype.clone=function(){return new Pi({width:this.width,height:this.height},new Uint8Array(this.data))},Pi.copy=function(t,e,r,n,a){Ci(t,e,r,n,a,4)},pn(\"AlphaImage\",Li),pn(\"RGBAImage\",Pi);var Oi={paint:new Hn({\"heatmap-radius\":new jn(Tt.paint_heatmap[\"heatmap-radius\"]),\"heatmap-weight\":new jn(Tt.paint_heatmap[\"heatmap-weight\"]),\"heatmap-intensity\":new Nn(Tt.paint_heatmap[\"heatmap-intensity\"]),\"heatmap-color\":new qn(Tt.paint_heatmap[\"heatmap-color\"]),\"heatmap-opacity\":new Nn(Tt.paint_heatmap[\"heatmap-opacity\"])})};function Ii(t,e){for(var r=new Uint8Array(1024),n={},a=0,i=0;a<256;a++,i+=4){n[e]=a/255;var o=t.evaluate(n);r[i+0]=Math.floor(255*o.r/o.a),r[i+1]=Math.floor(255*o.g/o.a),r[i+2]=Math.floor(255*o.b/o.a),r[i+3]=Math.floor(255*o.a)}return new Pi({width:256,height:1},r)}var zi=function(t){function e(e){t.call(this,e,Oi),this._updateColorRamp()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createBucket=function(t){return new Mi(t)},e.prototype._handleSpecialPaintPropertyUpdate=function(t){\"heatmap-color\"===t&&this._updateColorRamp()},e.prototype._updateColorRamp=function(){var t=this._transitionablePaint._values[\"heatmap-color\"].value.expression;this.colorRamp=Ii(t,\"heatmapDensity\"),this.colorRampTexture=null},e.prototype.resize=function(){this.heatmapFbo&&(this.heatmapFbo.destroy(),this.heatmapFbo=null)},e.prototype.queryRadius=function(){return 0},e.prototype.queryIntersectsFeature=function(){return!1},e.prototype.hasOffscreenPass=function(){return 0!==this.paint.get(\"heatmap-opacity\")&&\"none\"!==this.visibility},e}(Gn),Di={paint:new Hn({\"hillshade-illumination-direction\":new Nn(Tt.paint_hillshade[\"hillshade-illumination-direction\"]),\"hillshade-illumination-anchor\":new Nn(Tt.paint_hillshade[\"hillshade-illumination-anchor\"]),\"hillshade-exaggeration\":new Nn(Tt.paint_hillshade[\"hillshade-exaggeration\"]),\"hillshade-shadow-color\":new Nn(Tt.paint_hillshade[\"hillshade-shadow-color\"]),\"hillshade-highlight-color\":new Nn(Tt.paint_hillshade[\"hillshade-highlight-color\"]),\"hillshade-accent-color\":new Nn(Tt.paint_hillshade[\"hillshade-accent-color\"])})},Ri=function(t){function e(e){t.call(this,e,Di)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.hasOffscreenPass=function(){return 0!==this.paint.get(\"hillshade-exaggeration\")&&\"none\"!==this.visibility},e}(Gn),Fi=Zn([{name:\"a_pos\",components:2,type:\"Int16\"}],4).members,Bi=ji,Ni=ji;function ji(t,e,r){r=r||2;var n,a,i,o,s,l,c,u=e&&e.length,h=u?e[0]*r:t.length,f=Vi(t,0,h,r,!0),p=[];if(!f||f.next===f.prev)return p;if(u&&(f=function(t,e,r,n){var a,i,o,s=[];for(a=0,i=e.length;a<i;a++)(o=Vi(t,e[a]*n,a<i-1?e[a+1]*n:t.length,n,!1))===o.next&&(o.steiner=!0),s.push(Qi(o));for(s.sort(Xi),a=0;a<s.length;a++)Zi(s[a],r),r=Ui(r,r.next);return r}(t,e,f,r)),t.length>80*r){n=i=t[0],a=o=t[1];for(var d=r;d<h;d+=r)(s=t[d])<n&&(n=s),(l=t[d+1])<a&&(a=l),s>i&&(i=s),l>o&&(o=l);c=0!==(c=Math.max(i-n,o-a))?1/c:0}return qi(f,p,r,n,a,c),p}function Vi(t,e,r,n,a){var i,o;if(a===ho(t,e,r,n)>0)for(i=e;i<r;i+=n)o=lo(i,t[i],t[i+1],o);else for(i=r-n;i>=e;i-=n)o=lo(i,t[i],t[i+1],o);return o&&ro(o,o.next)&&(co(o),o=o.next),o}function Ui(t,e){if(!t)return t;e||(e=t);var r,n=t;do{if(r=!1,n.steiner||!ro(n,n.next)&&0!==eo(n.prev,n,n.next))n=n.next;else{if(co(n),(n=e=n.prev)===n.next)break;r=!0}}while(r||n!==e);return e}function qi(t,e,r,n,a,i,o){if(t){!o&&i&&function(t,e,r,n){var a=t;do{null===a.z&&(a.z=Ki(a.x,a.y,e,r,n)),a.prevZ=a.prev,a.nextZ=a.next,a=a.next}while(a!==t);a.prevZ.nextZ=null,a.prevZ=null,function(t){var e,r,n,a,i,o,s,l,c=1;do{for(r=t,t=null,i=null,o=0;r;){for(o++,n=r,s=0,e=0;e<c&&(s++,n=n.nextZ);e++);for(l=c;s>0||l>0&&n;)0!==s&&(0===l||!n||r.z<=n.z)?(a=r,r=r.nextZ,s--):(a=n,n=n.nextZ,l--),i?i.nextZ=a:t=a,a.prevZ=i,i=a;r=n}i.nextZ=null,c*=2}while(o>1)}(a)}(t,n,a,i);for(var s,l,c=t;t.prev!==t.next;)if(s=t.prev,l=t.next,i?Gi(t,n,a,i):Hi(t))e.push(s.i/r),e.push(t.i/r),e.push(l.i/r),co(t),t=l.next,c=l.next;else if((t=l)===c){o?1===o?qi(t=Yi(Ui(t),e,r),e,r,n,a,i,2):2===o&&Wi(t,e,r,n,a,i):qi(Ui(t),e,r,n,a,i,1);break}}}function Hi(t){var e=t.prev,r=t,n=t.next;if(eo(e,r,n)>=0)return!1;for(var a=t.next.next;a!==t.prev;){if($i(e.x,e.y,r.x,r.y,n.x,n.y,a.x,a.y)&&eo(a.prev,a,a.next)>=0)return!1;a=a.next}return!0}function Gi(t,e,r,n){var a=t.prev,i=t,o=t.next;if(eo(a,i,o)>=0)return!1;for(var s=a.x<i.x?a.x<o.x?a.x:o.x:i.x<o.x?i.x:o.x,l=a.y<i.y?a.y<o.y?a.y:o.y:i.y<o.y?i.y:o.y,c=a.x>i.x?a.x>o.x?a.x:o.x:i.x>o.x?i.x:o.x,u=a.y>i.y?a.y>o.y?a.y:o.y:i.y>o.y?i.y:o.y,h=Ki(s,l,e,r,n),f=Ki(c,u,e,r,n),p=t.prevZ,d=t.nextZ;p&&p.z>=h&&d&&d.z<=f;){if(p!==t.prev&&p!==t.next&&$i(a.x,a.y,i.x,i.y,o.x,o.y,p.x,p.y)&&eo(p.prev,p,p.next)>=0)return!1;if(p=p.prevZ,d!==t.prev&&d!==t.next&&$i(a.x,a.y,i.x,i.y,o.x,o.y,d.x,d.y)&&eo(d.prev,d,d.next)>=0)return!1;d=d.nextZ}for(;p&&p.z>=h;){if(p!==t.prev&&p!==t.next&&$i(a.x,a.y,i.x,i.y,o.x,o.y,p.x,p.y)&&eo(p.prev,p,p.next)>=0)return!1;p=p.prevZ}for(;d&&d.z<=f;){if(d!==t.prev&&d!==t.next&&$i(a.x,a.y,i.x,i.y,o.x,o.y,d.x,d.y)&&eo(d.prev,d,d.next)>=0)return!1;d=d.nextZ}return!0}function Yi(t,e,r){var n=t;do{var a=n.prev,i=n.next.next;!ro(a,i)&&no(a,n,n.next,i)&&oo(a,i)&&oo(i,a)&&(e.push(a.i/r),e.push(n.i/r),e.push(i.i/r),co(n),co(n.next),n=t=i),n=n.next}while(n!==t);return Ui(n)}function Wi(t,e,r,n,a,i){var o=t;do{for(var s=o.next.next;s!==o.prev;){if(o.i!==s.i&&to(o,s)){var l=so(o,s);return o=Ui(o,o.next),l=Ui(l,l.next),qi(o,e,r,n,a,i),void qi(l,e,r,n,a,i)}s=s.next}o=o.next}while(o!==t)}function Xi(t,e){return t.x-e.x}function Zi(t,e){if(e=function(t,e){var r,n=e,a=t.x,i=t.y,o=-1/0;do{if(i<=n.y&&i>=n.next.y&&n.next.y!==n.y){var s=n.x+(i-n.y)*(n.next.x-n.x)/(n.next.y-n.y);if(s<=a&&s>o){if(o=s,s===a){if(i===n.y)return n;if(i===n.next.y)return n.next}r=n.x<n.next.x?n:n.next}}n=n.next}while(n!==e);if(!r)return null;if(a===o)return r;var l,c=r,u=r.x,h=r.y,f=1/0;n=r;do{a>=n.x&&n.x>=u&&a!==n.x&&$i(i<h?a:o,i,u,h,i<h?o:a,i,n.x,n.y)&&(l=Math.abs(i-n.y)/(a-n.x),oo(n,t)&&(l<f||l===f&&(n.x>r.x||n.x===r.x&&Ji(r,n)))&&(r=n,f=l)),n=n.next}while(n!==c);return r}(t,e)){var r=so(e,t);Ui(r,r.next)}}function Ji(t,e){return eo(t.prev,t,e.prev)<0&&eo(e.next,t,t.next)<0}function Ki(t,e,r,n,a){return(t=1431655765&((t=858993459&((t=252645135&((t=16711935&((t=32767*(t-r)*a)|t<<8))|t<<4))|t<<2))|t<<1))|(e=1431655765&((e=858993459&((e=252645135&((e=16711935&((e=32767*(e-n)*a)|e<<8))|e<<4))|e<<2))|e<<1))<<1}function Qi(t){var e=t,r=t;do{(e.x<r.x||e.x===r.x&&e.y<r.y)&&(r=e),e=e.next}while(e!==t);return r}function $i(t,e,r,n,a,i,o,s){return(a-o)*(e-s)-(t-o)*(i-s)>=0&&(t-o)*(n-s)-(r-o)*(e-s)>=0&&(r-o)*(i-s)-(a-o)*(n-s)>=0}function to(t,e){return t.next.i!==e.i&&t.prev.i!==e.i&&!function(t,e){var r=t;do{if(r.i!==t.i&&r.next.i!==t.i&&r.i!==e.i&&r.next.i!==e.i&&no(r,r.next,t,e))return!0;r=r.next}while(r!==t);return!1}(t,e)&&(oo(t,e)&&oo(e,t)&&function(t,e){var r=t,n=!1,a=(t.x+e.x)/2,i=(t.y+e.y)/2;do{r.y>i!=r.next.y>i&&r.next.y!==r.y&&a<(r.next.x-r.x)*(i-r.y)/(r.next.y-r.y)+r.x&&(n=!n),r=r.next}while(r!==t);return n}(t,e)&&(eo(t.prev,t,e.prev)||eo(t,e.prev,e))||ro(t,e)&&eo(t.prev,t,t.next)>0&&eo(e.prev,e,e.next)>0)}function eo(t,e,r){return(e.y-t.y)*(r.x-e.x)-(e.x-t.x)*(r.y-e.y)}function ro(t,e){return t.x===e.x&&t.y===e.y}function no(t,e,r,n){var a=io(eo(t,e,r)),i=io(eo(t,e,n)),o=io(eo(r,n,t)),s=io(eo(r,n,e));return a!==i&&o!==s||!(0!==a||!ao(t,r,e))||!(0!==i||!ao(t,n,e))||!(0!==o||!ao(r,t,n))||!(0!==s||!ao(r,e,n))}function ao(t,e,r){return e.x<=Math.max(t.x,r.x)&&e.x>=Math.min(t.x,r.x)&&e.y<=Math.max(t.y,r.y)&&e.y>=Math.min(t.y,r.y)}function io(t){return t>0?1:t<0?-1:0}function oo(t,e){return eo(t.prev,t,t.next)<0?eo(t,e,t.next)>=0&&eo(t,t.prev,e)>=0:eo(t,e,t.prev)<0||eo(t,t.next,e)<0}function so(t,e){var r=new uo(t.i,t.x,t.y),n=new uo(e.i,e.x,e.y),a=t.next,i=e.prev;return t.next=e,e.prev=t,r.next=a,a.prev=r,n.next=r,r.prev=n,i.next=n,n.prev=i,n}function lo(t,e,r,n){var a=new uo(t,e,r);return n?(a.next=n.next,a.prev=n,n.next.prev=a,n.next=a):(a.prev=a,a.next=a),a}function co(t){t.next.prev=t.prev,t.prev.next=t.next,t.prevZ&&(t.prevZ.nextZ=t.nextZ),t.nextZ&&(t.nextZ.prevZ=t.prevZ)}function uo(t,e,r){this.i=t,this.x=e,this.y=r,this.prev=null,this.next=null,this.z=null,this.prevZ=null,this.nextZ=null,this.steiner=!1}function ho(t,e,r,n){for(var a=0,i=e,o=r-n;i<r;i+=n)a+=(t[o]-t[i])*(t[i+1]+t[o+1]),o=i;return a}function fo(t,e,r,n,a){!function t(e,r,n,a,i){for(;a>n;){if(a-n>600){var o=a-n+1,s=r-n+1,l=Math.log(o),c=.5*Math.exp(2*l/3),u=.5*Math.sqrt(l*c*(o-c)/o)*(s-o/2<0?-1:1);t(e,r,Math.max(n,Math.floor(r-s*c/o+u)),Math.min(a,Math.floor(r+(o-s)*c/o+u)),i)}var h=e[r],f=n,p=a;for(po(e,n,r),i(e[a],h)>0&&po(e,n,a);f<p;){for(po(e,f,p),f++,p--;i(e[f],h)<0;)f++;for(;i(e[p],h)>0;)p--}0===i(e[n],h)?po(e,n,p):po(e,++p,a),p<=r&&(n=p+1),r<=p&&(a=p-1)}}(t,e,r||0,n||t.length-1,a||go)}function po(t,e,r){var n=t[e];t[e]=t[r],t[r]=n}function go(t,e){return t<e?-1:t>e?1:0}function vo(t,e){var r=t.length;if(r<=1)return[t];for(var n,a,i=[],o=0;o<r;o++){var s=T(t[o]);0!==s&&(t[o].area=Math.abs(s),void 0===a&&(a=s<0),a===s<0?(n&&i.push(n),n=[t[o]]):n.push(t[o]))}if(n&&i.push(n),e>1)for(var l=0;l<i.length;l++)i[l].length<=e||(fo(i[l],e,1,i[l].length-1,mo),i[l]=i[l].slice(0,e));return i}function mo(t,e){return e.area-t.area}function yo(t,e,r){for(var n=r.patternDependencies,a=!1,i=0,o=e;i<o.length;i+=1){var s=o[i].paint.get(t+\"-pattern\");s.isConstant()||(a=!0);var l=s.constantOr(null);l&&(a=!0,n[l.to]=!0,n[l.from]=!0)}return a}function xo(t,e,r,n,a){for(var i=a.patternDependencies,o=0,s=e;o<s.length;o+=1){var l=s[o],c=l.paint.get(t+\"-pattern\").value;if(\"constant\"!==c.kind){var u=c.evaluate({zoom:n-1},r,{}),h=c.evaluate({zoom:n},r,{}),f=c.evaluate({zoom:n+1},r,{});i[u]=!0,i[h]=!0,i[f]=!0,r.patterns[l.id]={min:u,mid:h,max:f}}}return r}ji.deviation=function(t,e,r,n){var a=e&&e.length,i=a?e[0]*r:t.length,o=Math.abs(ho(t,0,i,r));if(a)for(var s=0,l=e.length;s<l;s++){var c=e[s]*r,u=s<l-1?e[s+1]*r:t.length;o-=Math.abs(ho(t,c,u,r))}var h=0;for(s=0;s<n.length;s+=3){var f=n[s]*r,p=n[s+1]*r,d=n[s+2]*r;h+=Math.abs((t[f]-t[d])*(t[p+1]-t[f+1])-(t[f]-t[p])*(t[d+1]-t[f+1]))}return 0===o&&0===h?0:Math.abs((h-o)/o)},ji.flatten=function(t){for(var e=t[0][0].length,r={vertices:[],holes:[],dimensions:e},n=0,a=0;a<t.length;a++){for(var i=0;i<t[a].length;i++)for(var o=0;o<e;o++)r.vertices.push(t[a][i][o]);a>0&&(n+=t[a-1].length,r.holes.push(n))}return r},Bi.default=Ni;var bo=function(t){this.zoom=t.zoom,this.overscaling=t.overscaling,this.layers=t.layers,this.layerIds=this.layers.map(function(t){return t.id}),this.index=t.index,this.hasPattern=!1,this.patternFeatures=[],this.layoutVertexArray=new Kn,this.indexArray=new pa,this.indexArray2=new da,this.programConfigurations=new Ka(Fi,t.layers,t.zoom),this.segments=new Pa,this.segments2=new Pa,this.stateDependentLayerIds=this.layers.filter(function(t){return t.isStateDependent()}).map(function(t){return t.id})};bo.prototype.populate=function(t,e){this.hasPattern=yo(\"fill\",this.layers,e);for(var r=this.layers[0].layout.get(\"fill-sort-key\"),n=[],a=0,i=t;a<i.length;a+=1){var o=i[a],s=o.feature,l=o.index,c=o.sourceLayerIndex;if(this.layers[0]._featureFilter(new Ln(this.zoom),s)){var u=ri(s),h=r?r.evaluate(s,{}):void 0,f={id:s.id,properties:s.properties,type:s.type,sourceLayerIndex:c,index:l,geometry:u,patterns:{},sortKey:h};n.push(f)}}r&&n.sort(function(t,e){return t.sortKey-e.sortKey});for(var p=0,d=n;p<d.length;p+=1){var g=d[p],v=g,m=v.geometry,y=v.index,x=v.sourceLayerIndex;if(this.hasPattern){var b=xo(\"fill\",this.layers,g,this.zoom,e);this.patternFeatures.push(b)}else this.addFeature(g,m,y,{});var _=t[y].feature;e.featureIndex.insert(_,m,y,x,this.index)}},bo.prototype.update=function(t,e,r){this.stateDependentLayers.length&&this.programConfigurations.updatePaintArrays(t,e,this.stateDependentLayers,r)},bo.prototype.addFeatures=function(t,e){for(var r=0,n=this.patternFeatures;r<n.length;r+=1){var a=n[r];this.addFeature(a,a.geometry,a.index,e)}},bo.prototype.isEmpty=function(){return 0===this.layoutVertexArray.length},bo.prototype.uploadPending=function(){return!this.uploaded||this.programConfigurations.needsUpload},bo.prototype.upload=function(t){this.uploaded||(this.layoutVertexBuffer=t.createVertexBuffer(this.layoutVertexArray,Fi),this.indexBuffer=t.createIndexBuffer(this.indexArray),this.indexBuffer2=t.createIndexBuffer(this.indexArray2)),this.programConfigurations.upload(t),this.uploaded=!0},bo.prototype.destroy=function(){this.layoutVertexBuffer&&(this.layoutVertexBuffer.destroy(),this.indexBuffer.destroy(),this.indexBuffer2.destroy(),this.programConfigurations.destroy(),this.segments.destroy(),this.segments2.destroy())},bo.prototype.addFeature=function(t,e,r,n){for(var a=0,i=vo(e,500);a<i.length;a+=1){for(var o=i[a],s=0,l=0,c=o;l<c.length;l+=1)s+=c[l].length;for(var u=this.segments.prepareSegment(s,this.layoutVertexArray,this.indexArray),h=u.vertexLength,f=[],p=[],d=0,g=o;d<g.length;d+=1){var v=g[d];if(0!==v.length){v!==o[0]&&p.push(f.length/2);var m=this.segments2.prepareSegment(v.length,this.layoutVertexArray,this.indexArray2),y=m.vertexLength;this.layoutVertexArray.emplaceBack(v[0].x,v[0].y),this.indexArray2.emplaceBack(y+v.length-1,y),f.push(v[0].x),f.push(v[0].y);for(var x=1;x<v.length;x++)this.layoutVertexArray.emplaceBack(v[x].x,v[x].y),this.indexArray2.emplaceBack(y+x-1,y+x),f.push(v[x].x),f.push(v[x].y);m.vertexLength+=v.length,m.primitiveLength+=v.length}}for(var b=Bi(f,p),_=0;_<b.length;_+=3)this.indexArray.emplaceBack(h+b[_],h+b[_+1],h+b[_+2]);u.vertexLength+=s,u.primitiveLength+=b.length/3}this.programConfigurations.populatePaintArrays(this.layoutVertexArray.length,t,r,n)},pn(\"FillBucket\",bo,{omit:[\"layers\",\"patternFeatures\"]});var _o=new Hn({\"fill-sort-key\":new jn(Tt.layout_fill[\"fill-sort-key\"])}),wo={paint:new Hn({\"fill-antialias\":new Nn(Tt.paint_fill[\"fill-antialias\"]),\"fill-opacity\":new jn(Tt.paint_fill[\"fill-opacity\"]),\"fill-color\":new jn(Tt.paint_fill[\"fill-color\"]),\"fill-outline-color\":new jn(Tt.paint_fill[\"fill-outline-color\"]),\"fill-translate\":new Nn(Tt.paint_fill[\"fill-translate\"]),\"fill-translate-anchor\":new Nn(Tt.paint_fill[\"fill-translate-anchor\"]),\"fill-pattern\":new Vn(Tt.paint_fill[\"fill-pattern\"])}),layout:_o},ko=function(t){function e(e){t.call(this,e,wo)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.recalculate=function(e){t.prototype.recalculate.call(this,e);var r=this.paint._values[\"fill-outline-color\"];\"constant\"===r.value.kind&&void 0===r.value.value&&(this.paint._values[\"fill-outline-color\"]=this.paint._values[\"fill-color\"])},e.prototype.createBucket=function(t){return new bo(t)},e.prototype.queryRadius=function(){return mi(this.paint.get(\"fill-translate\"))},e.prototype.queryIntersectsFeature=function(t,e,r,n,a,i,o){return si(yi(t,this.paint.get(\"fill-translate\"),this.paint.get(\"fill-translate-anchor\"),i.angle,o),n)},e.prototype.isTileClipped=function(){return!0},e}(Gn),To=Zn([{name:\"a_pos\",components:2,type:\"Int16\"},{name:\"a_normal_ed\",components:4,type:\"Int16\"}],4).members,Ao=Mo;function Mo(t,e,r,n,a){this.properties={},this.extent=r,this.type=0,this._pbf=t,this._geometry=-1,this._keys=n,this._values=a,t.readFields(So,this,e)}function So(t,e,r){1==t?e.id=r.readVarint():2==t?function(t,e){for(var r=t.readVarint()+t.pos;t.pos<r;){var n=e._keys[t.readVarint()],a=e._values[t.readVarint()];e.properties[n]=a}}(r,e):3==t?e.type=r.readVarint():4==t&&(e._geometry=r.pos)}function Eo(t){for(var e,r,n=0,a=0,i=t.length,o=i-1;a<i;o=a++)e=t[a],n+=((r=t[o]).x-e.x)*(e.y+r.y);return n}Mo.types=[\"Unknown\",\"Point\",\"LineString\",\"Polygon\"],Mo.prototype.loadGeometry=function(){var t=this._pbf;t.pos=this._geometry;for(var e,r=t.readVarint()+t.pos,n=1,i=0,o=0,s=0,l=[];t.pos<r;){if(i<=0){var c=t.readVarint();n=7&c,i=c>>3}if(i--,1===n||2===n)o+=t.readSVarint(),s+=t.readSVarint(),1===n&&(e&&l.push(e),e=[]),e.push(new a(o,s));else{if(7!==n)throw new Error(\"unknown command \"+n);e&&e.push(e[0].clone())}}return e&&l.push(e),l},Mo.prototype.bbox=function(){var t=this._pbf;t.pos=this._geometry;for(var e=t.readVarint()+t.pos,r=1,n=0,a=0,i=0,o=1/0,s=-1/0,l=1/0,c=-1/0;t.pos<e;){if(n<=0){var u=t.readVarint();r=7&u,n=u>>3}if(n--,1===r||2===r)(a+=t.readSVarint())<o&&(o=a),a>s&&(s=a),(i+=t.readSVarint())<l&&(l=i),i>c&&(c=i);else if(7!==r)throw new Error(\"unknown command \"+r)}return[o,l,s,c]},Mo.prototype.toGeoJSON=function(t,e,r){var n,a,i=this.extent*Math.pow(2,r),o=this.extent*t,s=this.extent*e,l=this.loadGeometry(),c=Mo.types[this.type];function u(t){for(var e=0;e<t.length;e++){var r=t[e],n=180-360*(r.y+s)/i;t[e]=[360*(r.x+o)/i-180,360/Math.PI*Math.atan(Math.exp(n*Math.PI/180))-90]}}switch(this.type){case 1:var h=[];for(n=0;n<l.length;n++)h[n]=l[n][0];u(l=h);break;case 2:for(n=0;n<l.length;n++)u(l[n]);break;case 3:for(l=function(t){var e=t.length;if(e<=1)return[t];for(var r,n,a=[],i=0;i<e;i++){var o=Eo(t[i]);0!==o&&(void 0===n&&(n=o<0),n===o<0?(r&&a.push(r),r=[t[i]]):r.push(t[i]))}return r&&a.push(r),a}(l),n=0;n<l.length;n++)for(a=0;a<l[n].length;a++)u(l[n][a])}1===l.length?l=l[0]:c=\"Multi\"+c;var f={type:\"Feature\",geometry:{type:c,coordinates:l},properties:this.properties};return\"id\"in this&&(f.id=this.id),f};var Co=Lo;function Lo(t,e){this.version=1,this.name=null,this.extent=4096,this.length=0,this._pbf=t,this._keys=[],this._values=[],this._features=[],t.readFields(Po,this,e),this.length=this._features.length}function Po(t,e,r){15===t?e.version=r.readVarint():1===t?e.name=r.readString():5===t?e.extent=r.readVarint():2===t?e._features.push(r.pos):3===t?e._keys.push(r.readString()):4===t&&e._values.push(function(t){for(var e=null,r=t.readVarint()+t.pos;t.pos<r;){var n=t.readVarint()>>3;e=1===n?t.readString():2===n?t.readFloat():3===n?t.readDouble():4===n?t.readVarint64():5===n?t.readVarint():6===n?t.readSVarint():7===n?t.readBoolean():null}return e}(r))}function Oo(t,e,r){if(3===t){var n=new Co(r,r.readVarint()+r.pos);n.length&&(e[n.name]=n)}}Lo.prototype.feature=function(t){if(t<0||t>=this._features.length)throw new Error(\"feature index out of bounds\");this._pbf.pos=this._features[t];var e=this._pbf.readVarint()+this._pbf.pos;return new Ao(this._pbf,e,this.extent,this._keys,this._values)};var Io={VectorTile:function(t,e){this.layers=t.readFields(Oo,{},e)},VectorTileFeature:Ao,VectorTileLayer:Co},zo=Io.VectorTileFeature.types,Do=Math.pow(2,13);function Ro(t,e,r,n,a,i,o,s){t.emplaceBack(e,r,2*Math.floor(n*Do)+o,a*Do*2,i*Do*2,Math.round(s))}var Fo=function(t){this.zoom=t.zoom,this.overscaling=t.overscaling,this.layers=t.layers,this.layerIds=this.layers.map(function(t){return t.id}),this.index=t.index,this.hasPattern=!1,this.layoutVertexArray=new $n,this.indexArray=new pa,this.programConfigurations=new Ka(To,t.layers,t.zoom),this.segments=new Pa,this.stateDependentLayerIds=this.layers.filter(function(t){return t.isStateDependent()}).map(function(t){return t.id})};function Bo(t,e){return t.x===e.x&&(t.x<0||t.x>ti)||t.y===e.y&&(t.y<0||t.y>ti)}function No(t){return t.every(function(t){return t.x<0})||t.every(function(t){return t.x>ti})||t.every(function(t){return t.y<0})||t.every(function(t){return t.y>ti})}Fo.prototype.populate=function(t,e){this.features=[],this.hasPattern=yo(\"fill-extrusion\",this.layers,e);for(var r=0,n=t;r<n.length;r+=1){var a=n[r],i=a.feature,o=a.index,s=a.sourceLayerIndex;if(this.layers[0]._featureFilter(new Ln(this.zoom),i)){var l=ri(i),c={sourceLayerIndex:s,index:o,geometry:l,properties:i.properties,type:i.type,patterns:{}};void 0!==i.id&&(c.id=i.id),this.hasPattern?this.features.push(xo(\"fill-extrusion\",this.layers,c,this.zoom,e)):this.addFeature(c,l,o,{}),e.featureIndex.insert(i,l,o,s,this.index,!0)}}},Fo.prototype.addFeatures=function(t,e){for(var r=0,n=this.features;r<n.length;r+=1){var a=n[r],i=a.geometry;this.addFeature(a,i,a.index,e)}},Fo.prototype.update=function(t,e,r){this.stateDependentLayers.length&&this.programConfigurations.updatePaintArrays(t,e,this.stateDependentLayers,r)},Fo.prototype.isEmpty=function(){return 0===this.layoutVertexArray.length},Fo.prototype.uploadPending=function(){return!this.uploaded||this.programConfigurations.needsUpload},Fo.prototype.upload=function(t){this.uploaded||(this.layoutVertexBuffer=t.createVertexBuffer(this.layoutVertexArray,To),this.indexBuffer=t.createIndexBuffer(this.indexArray)),this.programConfigurations.upload(t),this.uploaded=!0},Fo.prototype.destroy=function(){this.layoutVertexBuffer&&(this.layoutVertexBuffer.destroy(),this.indexBuffer.destroy(),this.programConfigurations.destroy(),this.segments.destroy())},Fo.prototype.addFeature=function(t,e,r,n){for(var a=0,i=vo(e,500);a<i.length;a+=1){for(var o=i[a],s=0,l=0,c=o;l<c.length;l+=1)s+=c[l].length;for(var u=this.segments.prepareSegment(4,this.layoutVertexArray,this.indexArray),h=0,f=o;h<f.length;h+=1){var p=f[h];if(0!==p.length&&!No(p))for(var d=0,g=0;g<p.length;g++){var v=p[g];if(g>=1){var m=p[g-1];if(!Bo(v,m)){u.vertexLength+4>Pa.MAX_VERTEX_ARRAY_LENGTH&&(u=this.segments.prepareSegment(4,this.layoutVertexArray,this.indexArray));var y=v.sub(m)._perp()._unit(),x=m.dist(v);d+x>32768&&(d=0),Ro(this.layoutVertexArray,v.x,v.y,y.x,y.y,0,0,d),Ro(this.layoutVertexArray,v.x,v.y,y.x,y.y,0,1,d),d+=x,Ro(this.layoutVertexArray,m.x,m.y,y.x,y.y,0,0,d),Ro(this.layoutVertexArray,m.x,m.y,y.x,y.y,0,1,d);var b=u.vertexLength;this.indexArray.emplaceBack(b,b+2,b+1),this.indexArray.emplaceBack(b+1,b+2,b+3),u.vertexLength+=4,u.primitiveLength+=2}}}}if(u.vertexLength+s>Pa.MAX_VERTEX_ARRAY_LENGTH&&(u=this.segments.prepareSegment(s,this.layoutVertexArray,this.indexArray)),\"Polygon\"===zo[t.type]){for(var _=[],w=[],k=u.vertexLength,T=0,A=o;T<A.length;T+=1){var M=A[T];if(0!==M.length){M!==o[0]&&w.push(_.length/2);for(var S=0;S<M.length;S++){var E=M[S];Ro(this.layoutVertexArray,E.x,E.y,0,0,1,1,0),_.push(E.x),_.push(E.y)}}}for(var C=Bi(_,w),L=0;L<C.length;L+=3)this.indexArray.emplaceBack(k+C[L],k+C[L+2],k+C[L+1]);u.primitiveLength+=C.length/3,u.vertexLength+=s}}this.programConfigurations.populatePaintArrays(this.layoutVertexArray.length,t,r,n)},pn(\"FillExtrusionBucket\",Fo,{omit:[\"layers\",\"features\"]});var jo={paint:new Hn({\"fill-extrusion-opacity\":new Nn(Tt[\"paint_fill-extrusion\"][\"fill-extrusion-opacity\"]),\"fill-extrusion-color\":new jn(Tt[\"paint_fill-extrusion\"][\"fill-extrusion-color\"]),\"fill-extrusion-translate\":new Nn(Tt[\"paint_fill-extrusion\"][\"fill-extrusion-translate\"]),\"fill-extrusion-translate-anchor\":new Nn(Tt[\"paint_fill-extrusion\"][\"fill-extrusion-translate-anchor\"]),\"fill-extrusion-pattern\":new Vn(Tt[\"paint_fill-extrusion\"][\"fill-extrusion-pattern\"]),\"fill-extrusion-height\":new jn(Tt[\"paint_fill-extrusion\"][\"fill-extrusion-height\"]),\"fill-extrusion-base\":new jn(Tt[\"paint_fill-extrusion\"][\"fill-extrusion-base\"]),\"fill-extrusion-vertical-gradient\":new Nn(Tt[\"paint_fill-extrusion\"][\"fill-extrusion-vertical-gradient\"])})},Vo=function(t){function e(e){t.call(this,e,jo)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createBucket=function(t){return new Fo(t)},e.prototype.queryRadius=function(){return mi(this.paint.get(\"fill-extrusion-translate\"))},e.prototype.is3D=function(){return!0},e.prototype.queryIntersectsFeature=function(t,e,r,n,i,o,s,l){var c=yi(t,this.paint.get(\"fill-extrusion-translate\"),this.paint.get(\"fill-extrusion-translate-anchor\"),o.angle,s),u=this.paint.get(\"fill-extrusion-height\").evaluate(e,r),h=this.paint.get(\"fill-extrusion-base\").evaluate(e,r),f=function(t,e,r,n){for(var i=[],o=0,s=t;o<s.length;o+=1){var l=s[o],c=[l.x,l.y,0,1];ki(c,c,e),i.push(new a(c[0]/c[3],c[1]/c[3]))}return i}(c,l),p=function(t,e,r,n){for(var i=[],o=[],s=n[8]*e,l=n[9]*e,c=n[10]*e,u=n[11]*e,h=n[8]*r,f=n[9]*r,p=n[10]*r,d=n[11]*r,g=0,v=t;g<v.length;g+=1){for(var m=[],y=[],x=0,b=v[g];x<b.length;x+=1){var _=b[x],w=_.x,k=_.y,T=n[0]*w+n[4]*k+n[12],A=n[1]*w+n[5]*k+n[13],M=n[2]*w+n[6]*k+n[14],S=n[3]*w+n[7]*k+n[15],E=M+c,C=S+u,L=T+h,P=A+f,O=M+p,I=S+d,z=new a((T+s)/C,(A+l)/C);z.z=E/C,m.push(z);var D=new a(L/I,P/I);D.z=O/I,y.push(D)}i.push(m),o.push(y)}return[i,o]}(n,h,u,l);return function(t,e,r){var n=1/0;si(r,e)&&(n=qo(r,e[0]));for(var a=0;a<e.length;a++)for(var i=e[a],o=t[a],s=0;s<i.length-1;s++){var l=i[s],c=i[s+1],u=o[s],h=[l,c,o[s+1],u,l];ii(r,h)&&(n=Math.min(n,qo(r,h)))}return n!==1/0&&n}(p[0],p[1],f)},e}(Gn);function Uo(t,e){return t.x*e.x+t.y*e.y}function qo(t,e){if(1===t.length){var r=e[0],n=e[1],a=e[3],i=t[0],o=n.sub(r),s=a.sub(r),l=i.sub(r),c=Uo(o,o),u=Uo(o,s),h=Uo(s,s),f=Uo(l,o),p=Uo(l,s),d=c*h-u*u,g=(h*f-u*p)/d,v=(c*p-u*f)/d,m=1-g-v;return r.z*m+n.z*g+a.z*v}for(var y=1/0,x=0,b=e;x<b.length;x+=1){var _=b[x];y=Math.min(y,_.z)}return y}var Ho=Zn([{name:\"a_pos_normal\",components:2,type:\"Int16\"},{name:\"a_data\",components:4,type:\"Uint8\"}],4).members,Go=Io.VectorTileFeature.types,Yo=Math.cos(Math.PI/180*37.5),Wo=Math.pow(2,14)/.5,Xo=function(t){this.zoom=t.zoom,this.overscaling=t.overscaling,this.layers=t.layers,this.layerIds=this.layers.map(function(t){return t.id}),this.index=t.index,this.hasPattern=!1,this.patternFeatures=[],this.layoutVertexArray=new ta,this.indexArray=new pa,this.programConfigurations=new Ka(Ho,t.layers,t.zoom),this.segments=new Pa,this.stateDependentLayerIds=this.layers.filter(function(t){return t.isStateDependent()}).map(function(t){return t.id})};Xo.prototype.populate=function(t,e){this.hasPattern=yo(\"line\",this.layers,e);for(var r=this.layers[0].layout.get(\"line-sort-key\"),n=[],a=0,i=t;a<i.length;a+=1){var o=i[a],s=o.feature,l=o.index,c=o.sourceLayerIndex;if(this.layers[0]._featureFilter(new Ln(this.zoom),s)){var u=ri(s),h=r?r.evaluate(s,{}):void 0,f={id:s.id,properties:s.properties,type:s.type,sourceLayerIndex:c,index:l,geometry:u,patterns:{},sortKey:h};n.push(f)}}r&&n.sort(function(t,e){return t.sortKey-e.sortKey});for(var p=0,d=n;p<d.length;p+=1){var g=d[p],v=g,m=v.geometry,y=v.index,x=v.sourceLayerIndex;if(this.hasPattern){var b=xo(\"line\",this.layers,g,this.zoom,e);this.patternFeatures.push(b)}else this.addFeature(g,m,y,{});var _=t[y].feature;e.featureIndex.insert(_,m,y,x,this.index)}},Xo.prototype.update=function(t,e,r){this.stateDependentLayers.length&&this.programConfigurations.updatePaintArrays(t,e,this.stateDependentLayers,r)},Xo.prototype.addFeatures=function(t,e){for(var r=0,n=this.patternFeatures;r<n.length;r+=1){var a=n[r];this.addFeature(a,a.geometry,a.index,e)}},Xo.prototype.isEmpty=function(){return 0===this.layoutVertexArray.length},Xo.prototype.uploadPending=function(){return!this.uploaded||this.programConfigurations.needsUpload},Xo.prototype.upload=function(t){this.uploaded||(this.layoutVertexBuffer=t.createVertexBuffer(this.layoutVertexArray,Ho),this.indexBuffer=t.createIndexBuffer(this.indexArray)),this.programConfigurations.upload(t),this.uploaded=!0},Xo.prototype.destroy=function(){this.layoutVertexBuffer&&(this.layoutVertexBuffer.destroy(),this.indexBuffer.destroy(),this.programConfigurations.destroy(),this.segments.destroy())},Xo.prototype.addFeature=function(t,e,r,n){for(var a=this.layers[0].layout,i=a.get(\"line-join\").evaluate(t,{}),o=a.get(\"line-cap\"),s=a.get(\"line-miter-limit\"),l=a.get(\"line-round-limit\"),c=0,u=e;c<u.length;c+=1){var h=u[c];this.addLine(h,t,i,o,s,l,r,n)}},Xo.prototype.addLine=function(t,e,r,n,a,i,o,s){if(this.distance=0,this.scaledDistance=0,this.totalDistance=0,e.properties&&e.properties.hasOwnProperty(\"mapbox_clip_start\")&&e.properties.hasOwnProperty(\"mapbox_clip_end\")){this.clipStart=+e.properties.mapbox_clip_start,this.clipEnd=+e.properties.mapbox_clip_end;for(var l=0;l<t.length-1;l++)this.totalDistance+=t[l].dist(t[l+1])}for(var c=\"Polygon\"===Go[e.type],u=t.length;u>=2&&t[u-1].equals(t[u-2]);)u--;for(var h=0;h<u-1&&t[h].equals(t[h+1]);)h++;if(!(u<(c?3:2))){\"bevel\"===r&&(a=1.05);var f,p=ti/(512*this.overscaling)*15,d=this.segments.prepareSegment(10*u,this.layoutVertexArray,this.indexArray),g=void 0,v=void 0,m=void 0,y=void 0;this.e1=this.e2=-1,c&&(f=t[u-2],y=t[h].sub(f)._unit()._perp());for(var x=h;x<u;x++)if(!(v=c&&x===u-1?t[h+1]:t[x+1])||!t[x].equals(v)){y&&(m=y),f&&(g=f),f=t[x],y=v?v.sub(f)._unit()._perp():m;var b=(m=m||y).add(y);0===b.x&&0===b.y||b._unit();var _=m.x*y.x+m.y*y.y,w=b.x*y.x+b.y*y.y,k=0!==w?1/w:1/0,T=2*Math.sqrt(2-2*w),A=w<Yo&&g&&v,M=m.x*y.y-m.y*y.x>0;if(A&&x>h){var S=f.dist(g);if(S>2*p){var E=f.sub(f.sub(g)._mult(p/S)._round());this.updateDistance(g,E),this.addCurrentVertex(E,m,0,0,d),g=E}}var C=g&&v,L=C?r:c?\"butt\":n;if(C&&\"round\"===L&&(k<i?L=\"miter\":k<=2&&(L=\"fakeround\")),\"miter\"===L&&k>a&&(L=\"bevel\"),\"bevel\"===L&&(k>2&&(L=\"flipbevel\"),k<a&&(L=\"miter\")),g&&this.updateDistance(g,f),\"miter\"===L)b._mult(k),this.addCurrentVertex(f,b,0,0,d);else if(\"flipbevel\"===L){if(k>100)b=y.mult(-1);else{var P=k*m.add(y).mag()/m.sub(y).mag();b._perp()._mult(P*(M?-1:1))}this.addCurrentVertex(f,b,0,0,d),this.addCurrentVertex(f,b.mult(-1),0,0,d)}else if(\"bevel\"===L||\"fakeround\"===L){var O=-Math.sqrt(k*k-1),I=M?O:0,z=M?0:O;if(g&&this.addCurrentVertex(f,m,I,z,d),\"fakeround\"===L)for(var D=Math.round(180*T/Math.PI/20),R=1;R<D;R++){var F=R/D;if(.5!==F){var B=F-.5;F+=F*B*(F-1)*((1.0904+_*(_*(3.55645-1.43519*_)-3.2452))*B*B+(.848013+_*(.215638*_-1.06021)))}var N=y.sub(m)._mult(F)._add(m)._unit()._mult(M?-1:1);this.addHalfVertex(f,N.x,N.y,!1,M,0,d)}v&&this.addCurrentVertex(f,y,-I,-z,d)}else if(\"butt\"===L)this.addCurrentVertex(f,b,0,0,d);else if(\"square\"===L){var j=g?1:-1;this.addCurrentVertex(f,b,j,j,d)}else\"round\"===L&&(g&&(this.addCurrentVertex(f,m,0,0,d),this.addCurrentVertex(f,m,1,1,d,!0)),v&&(this.addCurrentVertex(f,y,-1,-1,d,!0),this.addCurrentVertex(f,y,0,0,d)));if(A&&x<u-1){var V=f.dist(v);if(V>2*p){var U=f.add(v.sub(f)._mult(p/V)._round());this.updateDistance(f,U),this.addCurrentVertex(U,y,0,0,d),f=U}}}this.programConfigurations.populatePaintArrays(this.layoutVertexArray.length,e,o,s)}},Xo.prototype.addCurrentVertex=function(t,e,r,n,a,i){void 0===i&&(i=!1);var o=e.x+e.y*r,s=e.y-e.x*r,l=-e.x+e.y*n,c=-e.y-e.x*n;this.addHalfVertex(t,o,s,i,!1,r,a),this.addHalfVertex(t,l,c,i,!0,-n,a),this.distance>Wo/2&&0===this.totalDistance&&(this.distance=0,this.addCurrentVertex(t,e,r,n,a,i))},Xo.prototype.addHalfVertex=function(t,e,r,n,a,i,o){var s=t.x,l=t.y,c=.5*this.scaledDistance;this.layoutVertexArray.emplaceBack((s<<1)+(n?1:0),(l<<1)+(a?1:0),Math.round(63*e)+128,Math.round(63*r)+128,1+(0===i?0:i<0?-1:1)|(63&c)<<2,c>>6);var u=o.vertexLength++;this.e1>=0&&this.e2>=0&&(this.indexArray.emplaceBack(this.e1,this.e2,u),o.primitiveLength++),a?this.e2=u:this.e1=u},Xo.prototype.updateDistance=function(t,e){this.distance+=t.dist(e),this.scaledDistance=this.totalDistance>0?(this.clipStart+(this.clipEnd-this.clipStart)*this.distance/this.totalDistance)*(Wo-1):this.distance},pn(\"LineBucket\",Xo,{omit:[\"layers\",\"patternFeatures\"]});var Zo=new Hn({\"line-cap\":new Nn(Tt.layout_line[\"line-cap\"]),\"line-join\":new jn(Tt.layout_line[\"line-join\"]),\"line-miter-limit\":new Nn(Tt.layout_line[\"line-miter-limit\"]),\"line-round-limit\":new Nn(Tt.layout_line[\"line-round-limit\"]),\"line-sort-key\":new jn(Tt.layout_line[\"line-sort-key\"])}),Jo={paint:new Hn({\"line-opacity\":new jn(Tt.paint_line[\"line-opacity\"]),\"line-color\":new jn(Tt.paint_line[\"line-color\"]),\"line-translate\":new Nn(Tt.paint_line[\"line-translate\"]),\"line-translate-anchor\":new Nn(Tt.paint_line[\"line-translate-anchor\"]),\"line-width\":new jn(Tt.paint_line[\"line-width\"]),\"line-gap-width\":new jn(Tt.paint_line[\"line-gap-width\"]),\"line-offset\":new jn(Tt.paint_line[\"line-offset\"]),\"line-blur\":new jn(Tt.paint_line[\"line-blur\"]),\"line-dasharray\":new Un(Tt.paint_line[\"line-dasharray\"]),\"line-pattern\":new Vn(Tt.paint_line[\"line-pattern\"]),\"line-gradient\":new qn(Tt.paint_line[\"line-gradient\"])}),layout:Zo},Ko=new(function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.possiblyEvaluate=function(e,r){return r=new Ln(Math.floor(r.zoom),{now:r.now,fadeDuration:r.fadeDuration,zoomHistory:r.zoomHistory,transition:r.transition}),t.prototype.possiblyEvaluate.call(this,e,r)},e.prototype.evaluate=function(e,r,n,a){return r=h({},r,{zoom:Math.floor(r.zoom)}),t.prototype.evaluate.call(this,e,r,n,a)},e}(jn))(Jo.paint.properties[\"line-width\"].specification);Ko.useIntegerZoom=!0;var Qo=function(t){function e(e){t.call(this,e,Jo)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._handleSpecialPaintPropertyUpdate=function(t){\"line-gradient\"===t&&this._updateGradient()},e.prototype._updateGradient=function(){var t=this._transitionablePaint._values[\"line-gradient\"].value.expression;this.gradient=Ii(t,\"lineProgress\"),this.gradientTexture=null},e.prototype.recalculate=function(e){t.prototype.recalculate.call(this,e),this.paint._values[\"line-floorwidth\"]=Ko.possiblyEvaluate(this._transitioningPaint._values[\"line-width\"].value,e)},e.prototype.createBucket=function(t){return new Xo(t)},e.prototype.queryRadius=function(t){var e=t,r=$o(vi(\"line-width\",this,e),vi(\"line-gap-width\",this,e)),n=vi(\"line-offset\",this,e);return r/2+Math.abs(n)+mi(this.paint.get(\"line-translate\"))},e.prototype.queryIntersectsFeature=function(t,e,r,n,i,o,s){var l=yi(t,this.paint.get(\"line-translate\"),this.paint.get(\"line-translate-anchor\"),o.angle,s),c=s/2*$o(this.paint.get(\"line-width\").evaluate(e,r),this.paint.get(\"line-gap-width\").evaluate(e,r)),u=this.paint.get(\"line-offset\").evaluate(e,r);return u&&(n=function(t,e){for(var r=[],n=new a(0,0),i=0;i<t.length;i++){for(var o=t[i],s=[],l=0;l<o.length;l++){var c=o[l-1],u=o[l],h=o[l+1],f=0===l?n:u.sub(c)._unit()._perp(),p=l===o.length-1?n:h.sub(u)._unit()._perp(),d=f._add(p)._unit(),g=d.x*p.x+d.y*p.y;d._mult(1/g),s.push(d._mult(e)._add(u))}r.push(s)}return r}(n,u*s)),function(t,e,r){for(var n=0;n<e.length;n++){var a=e[n];if(t.length>=3)for(var i=0;i<a.length;i++)if(di(t,a[i]))return!0;if(li(t,a,r))return!0}return!1}(l,n,c)},e.prototype.isTileClipped=function(){return!0},e}(Gn);function $o(t,e){return e>0?e+2*t:t}var ts=Zn([{name:\"a_pos_offset\",components:4,type:\"Int16\"},{name:\"a_data\",components:4,type:\"Uint16\"}]),es=Zn([{name:\"a_projected_pos\",components:3,type:\"Float32\"}],4),rs=(Zn([{name:\"a_fade_opacity\",components:1,type:\"Uint32\"}],4),Zn([{name:\"a_placed\",components:2,type:\"Uint8\"},{name:\"a_shift\",components:2,type:\"Float32\"}])),ns=(Zn([{type:\"Int16\",name:\"anchorPointX\"},{type:\"Int16\",name:\"anchorPointY\"},{type:\"Int16\",name:\"x1\"},{type:\"Int16\",name:\"y1\"},{type:\"Int16\",name:\"x2\"},{type:\"Int16\",name:\"y2\"},{type:\"Uint32\",name:\"featureIndex\"},{type:\"Uint16\",name:\"sourceLayerIndex\"},{type:\"Uint16\",name:\"bucketIndex\"},{type:\"Int16\",name:\"radius\"},{type:\"Int16\",name:\"signedDistanceFromAnchor\"}]),Zn([{name:\"a_pos\",components:2,type:\"Int16\"},{name:\"a_anchor_pos\",components:2,type:\"Int16\"},{name:\"a_extrude\",components:2,type:\"Int16\"}],4)),as=Zn([{name:\"a_pos\",components:2,type:\"Int16\"},{name:\"a_anchor_pos\",components:2,type:\"Int16\"},{name:\"a_extrude\",components:2,type:\"Int16\"}],4);function is(t,e,r){return t.sections.forEach(function(t){t.text=function(t,e,r){var n=e.layout.get(\"text-transform\").evaluate(r,{});return\"uppercase\"===n?t=t.toLocaleUpperCase():\"lowercase\"===n&&(t=t.toLocaleLowerCase()),Cn.applyArabicShaping&&(t=Cn.applyArabicShaping(t)),t}(t.text,e,r)}),t}Zn([{type:\"Int16\",name:\"anchorX\"},{type:\"Int16\",name:\"anchorY\"},{type:\"Uint16\",name:\"glyphStartIndex\"},{type:\"Uint16\",name:\"numGlyphs\"},{type:\"Uint32\",name:\"vertexStartIndex\"},{type:\"Uint32\",name:\"lineStartIndex\"},{type:\"Uint32\",name:\"lineLength\"},{type:\"Uint16\",name:\"segment\"},{type:\"Uint16\",name:\"lowerSize\"},{type:\"Uint16\",name:\"upperSize\"},{type:\"Float32\",name:\"lineOffsetX\"},{type:\"Float32\",name:\"lineOffsetY\"},{type:\"Uint8\",name:\"writingMode\"},{type:\"Uint8\",name:\"placedOrientation\"},{type:\"Uint8\",name:\"hidden\"},{type:\"Uint32\",name:\"crossTileID\"}]),Zn([{type:\"Int16\",name:\"anchorX\"},{type:\"Int16\",name:\"anchorY\"},{type:\"Int16\",name:\"rightJustifiedTextSymbolIndex\"},{type:\"Int16\",name:\"centerJustifiedTextSymbolIndex\"},{type:\"Int16\",name:\"leftJustifiedTextSymbolIndex\"},{type:\"Int16\",name:\"verticalPlacedTextSymbolIndex\"},{type:\"Uint16\",name:\"key\"},{type:\"Uint16\",name:\"textBoxStartIndex\"},{type:\"Uint16\",name:\"textBoxEndIndex\"},{type:\"Uint16\",name:\"verticalTextBoxStartIndex\"},{type:\"Uint16\",name:\"verticalTextBoxEndIndex\"},{type:\"Uint16\",name:\"iconBoxStartIndex\"},{type:\"Uint16\",name:\"iconBoxEndIndex\"},{type:\"Uint16\",name:\"featureIndex\"},{type:\"Uint16\",name:\"numHorizontalGlyphVertices\"},{type:\"Uint16\",name:\"numVerticalGlyphVertices\"},{type:\"Uint16\",name:\"numIconVertices\"},{type:\"Uint32\",name:\"crossTileID\"},{type:\"Float32\",name:\"textBoxScale\"},{type:\"Float32\",name:\"radialTextOffset\"}]),Zn([{type:\"Float32\",name:\"offsetX\"}]),Zn([{type:\"Int16\",name:\"x\"},{type:\"Int16\",name:\"y\"},{type:\"Int16\",name:\"tileUnitDistanceFromAnchor\"}]);var os={\"!\":\"\\ufe15\",\"#\":\"\\uff03\",$:\"\\uff04\",\"%\":\"\\uff05\",\"&\":\"\\uff06\",\"(\":\"\\ufe35\",\")\":\"\\ufe36\",\"*\":\"\\uff0a\",\"+\":\"\\uff0b\",\",\":\"\\ufe10\",\"-\":\"\\ufe32\",\".\":\"\\u30fb\",\"/\":\"\\uff0f\",\":\":\"\\ufe13\",\";\":\"\\ufe14\",\"<\":\"\\ufe3f\",\"=\":\"\\uff1d\",\">\":\"\\ufe40\",\"?\":\"\\ufe16\",\"@\":\"\\uff20\",\"[\":\"\\ufe47\",\"\\\\\":\"\\uff3c\",\"]\":\"\\ufe48\",\"^\":\"\\uff3e\",_:\"\\ufe33\",\"`\":\"\\uff40\",\"{\":\"\\ufe37\",\"|\":\"\\u2015\",\"}\":\"\\ufe38\",\"~\":\"\\uff5e\",\"\\xa2\":\"\\uffe0\",\"\\xa3\":\"\\uffe1\",\"\\xa5\":\"\\uffe5\",\"\\xa6\":\"\\uffe4\",\"\\xac\":\"\\uffe2\",\"\\xaf\":\"\\uffe3\",\"\\u2013\":\"\\ufe32\",\"\\u2014\":\"\\ufe31\",\"\\u2018\":\"\\ufe43\",\"\\u2019\":\"\\ufe44\",\"\\u201c\":\"\\ufe41\",\"\\u201d\":\"\\ufe42\",\"\\u2026\":\"\\ufe19\",\"\\u2027\":\"\\u30fb\",\"\\u20a9\":\"\\uffe6\",\"\\u3001\":\"\\ufe11\",\"\\u3002\":\"\\ufe12\",\"\\u3008\":\"\\ufe3f\",\"\\u3009\":\"\\ufe40\",\"\\u300a\":\"\\ufe3d\",\"\\u300b\":\"\\ufe3e\",\"\\u300c\":\"\\ufe41\",\"\\u300d\":\"\\ufe42\",\"\\u300e\":\"\\ufe43\",\"\\u300f\":\"\\ufe44\",\"\\u3010\":\"\\ufe3b\",\"\\u3011\":\"\\ufe3c\",\"\\u3014\":\"\\ufe39\",\"\\u3015\":\"\\ufe3a\",\"\\u3016\":\"\\ufe17\",\"\\u3017\":\"\\ufe18\",\"\\uff01\":\"\\ufe15\",\"\\uff08\":\"\\ufe35\",\"\\uff09\":\"\\ufe36\",\"\\uff0c\":\"\\ufe10\",\"\\uff0d\":\"\\ufe32\",\"\\uff0e\":\"\\u30fb\",\"\\uff1a\":\"\\ufe13\",\"\\uff1b\":\"\\ufe14\",\"\\uff1c\":\"\\ufe3f\",\"\\uff1e\":\"\\ufe40\",\"\\uff1f\":\"\\ufe16\",\"\\uff3b\":\"\\ufe47\",\"\\uff3d\":\"\\ufe48\",\"\\uff3f\":\"\\ufe33\",\"\\uff5b\":\"\\ufe37\",\"\\uff5c\":\"\\u2015\",\"\\uff5d\":\"\\ufe38\",\"\\uff5f\":\"\\ufe35\",\"\\uff60\":\"\\ufe36\",\"\\uff61\":\"\\ufe12\",\"\\uff62\":\"\\ufe41\",\"\\uff63\":\"\\ufe42\"},ss=24,ls={horizontal:1,vertical:2,horizontalOnly:3},cs=function(){this.text=\"\",this.sectionIndex=[],this.sections=[]};function us(t,e,r,n,a,i,o,s,l,c,u){var h,f=cs.fromFeature(t,r);c===ls.vertical&&f.verticalizePunctuation();var p=Cn.processBidirectionalText,d=Cn.processStyledBidirectionalText;if(p&&1===f.sections.length){h=[];for(var g=0,v=p(f.toString(),vs(f,s,n,e));g<v.length;g+=1){var m=v[g],y=new cs;y.text=m,y.sections=f.sections;for(var x=0;x<m.length;x++)y.sectionIndex.push(0);h.push(y)}}else if(d){h=[];for(var b=0,_=d(f.text,f.sectionIndex,vs(f,s,n,e));b<_.length;b+=1){var w=_[b],k=new cs;k.text=w[0],k.sectionIndex=w[1],k.sections=f.sections,h.push(k)}}else h=function(t,e){for(var r=[],n=t.text,a=0,i=0,o=e;i<o.length;i+=1){var s=o[i];r.push(t.substring(a,s)),a=s}return a<n.length&&r.push(t.substring(a,n.length)),r}(f,vs(f,s,n,e));var T=[],A={positionedGlyphs:T,text:f.toString(),top:l[1],bottom:l[1],left:l[0],right:l[0],writingMode:c,lineCount:h.length,yOffset:-17};return function(t,e,r,n,a,i,o,s,l){for(var c=0,u=t.yOffset,h=0,f=t.positionedGlyphs,p=\"right\"===i?1:\"left\"===i?0:.5,d=0,g=r;d<g.length;d+=1){var v=g[d];v.trim();var m=v.getMaxScale();if(v.length()){for(var y=f.length,x=0;x<v.length();x++){var b=v.getSection(x),_=v.getSectionIndex(x),w=v.getCharCode(x),k=24*(m-b.scale),T=e[b.fontStack],A=T&&T[w];A&&(o===ls.horizontal||!l&&!_n(w)||l&&(hs[w]||(S=w,yn.Arabic(S)||yn[\"Arabic Supplement\"](S)||yn[\"Arabic Extended-A\"](S)||yn[\"Arabic Presentation Forms-A\"](S)||yn[\"Arabic Presentation Forms-B\"](S)))?(f.push({glyph:w,x:c,y:u+k,vertical:!1,scale:b.scale,fontStack:b.fontStack,sectionIndex:_}),c+=A.metrics.advance*b.scale+s):(f.push({glyph:w,x:c,y:u+k,vertical:!0,scale:b.scale,fontStack:b.fontStack,sectionIndex:_}),c+=ss*b.scale+s))}if(f.length!==y){var M=c-s;h=Math.max(M,h),ys(f,e,y,f.length-1,p)}c=0,u+=n*m}else u+=n}var S,E=ms(a),C=E.horizontalAlign,L=E.verticalAlign;!function(t,e,r,n,a,i,o){for(var s=(e-r)*a,l=(-n*o+.5)*i,c=0;c<t.length;c++)t[c].x+=s,t[c].y+=l}(f,p,C,L,h,n,r.length);var P=u-t.yOffset;t.top+=-L*P,t.bottom=t.top+P,t.left+=-C*h,t.right=t.left+h}(A,e,h,a,i,o,c,s,u),!!T.length&&A}cs.fromFeature=function(t,e){for(var r=new cs,n=0;n<t.sections.length;n++){var a=t.sections[n];r.sections.push({scale:a.scale||1,fontStack:a.fontStack||e}),r.text+=a.text;for(var i=0;i<a.text.length;i++)r.sectionIndex.push(n)}return r},cs.prototype.length=function(){return this.text.length},cs.prototype.getSection=function(t){return this.sections[this.sectionIndex[t]]},cs.prototype.getSectionIndex=function(t){return this.sectionIndex[t]},cs.prototype.getCharCode=function(t){return this.text.charCodeAt(t)},cs.prototype.verticalizePunctuation=function(){this.text=function(t){for(var e=\"\",r=0;r<t.length;r++){var n=t.charCodeAt(r+1)||null,a=t.charCodeAt(r-1)||null;n&&wn(n)&&!os[t[r+1]]||a&&wn(a)&&!os[t[r-1]]||!os[t[r]]?e+=t[r]:e+=os[t[r]]}return e}(this.text)},cs.prototype.trim=function(){for(var t=0,e=0;e<this.text.length&&hs[this.text.charCodeAt(e)];e++)t++;for(var r=this.text.length,n=this.text.length-1;n>=0&&n>=t&&hs[this.text.charCodeAt(n)];n--)r--;this.text=this.text.substring(t,r),this.sectionIndex=this.sectionIndex.slice(t,r)},cs.prototype.substring=function(t,e){var r=new cs;return r.text=this.text.substring(t,e),r.sectionIndex=this.sectionIndex.slice(t,e),r.sections=this.sections,r},cs.prototype.toString=function(){return this.text},cs.prototype.getMaxScale=function(){var t=this;return this.sectionIndex.reduce(function(e,r){return Math.max(e,t.sections[r].scale)},0)};var hs={9:!0,10:!0,11:!0,12:!0,13:!0,32:!0},fs={};function ps(t,e,r,n){var a=Math.pow(t-e,2);return n?t<e?a/2:2*a:a+Math.abs(r)*r}function ds(t,e,r){var n=0;return 10===t&&(n-=1e4),r&&(n+=150),40!==t&&65288!==t||(n+=50),41!==e&&65289!==e||(n+=50),n}function gs(t,e,r,n,a,i){for(var o=null,s=ps(e,r,a,i),l=0,c=n;l<c.length;l+=1){var u=c[l],h=ps(e-u.x,r,a,i)+u.badness;h<=s&&(o=u,s=h)}return{index:t,x:e,priorBreak:o,badness:s}}function vs(t,e,r,n){if(!r)return[];if(!t)return[];for(var a,i=[],o=function(t,e,r,n){for(var a=0,i=0;i<t.length();i++){var o=t.getSection(i),s=n[o.fontStack],l=s&&s[t.getCharCode(i)];l&&(a+=l.metrics.advance*o.scale+e)}return a/Math.max(1,Math.ceil(a/r))}(t,e,r,n),s=t.text.indexOf(\"\\u200b\")>=0,l=0,c=0;c<t.length();c++){var u=t.getSection(c),h=t.getCharCode(c),f=n[u.fontStack],p=f&&f[h];if(p&&!hs[h]&&(l+=p.metrics.advance*u.scale+e),c<t.length()-1){var d=!((a=h)<11904||!(yn[\"Bopomofo Extended\"](a)||yn.Bopomofo(a)||yn[\"CJK Compatibility Forms\"](a)||yn[\"CJK Compatibility Ideographs\"](a)||yn[\"CJK Compatibility\"](a)||yn[\"CJK Radicals Supplement\"](a)||yn[\"CJK Strokes\"](a)||yn[\"CJK Symbols and Punctuation\"](a)||yn[\"CJK Unified Ideographs Extension A\"](a)||yn[\"CJK Unified Ideographs\"](a)||yn[\"Enclosed CJK Letters and Months\"](a)||yn[\"Halfwidth and Fullwidth Forms\"](a)||yn.Hiragana(a)||yn[\"Ideographic Description Characters\"](a)||yn[\"Kangxi Radicals\"](a)||yn[\"Katakana Phonetic Extensions\"](a)||yn.Katakana(a)||yn[\"Vertical Forms\"](a)||yn[\"Yi Radicals\"](a)||yn[\"Yi Syllables\"](a)));(fs[h]||d)&&i.push(gs(c+1,l,o,i,ds(h,t.getCharCode(c+1),d&&s),!1))}}return function t(e){return e?t(e.priorBreak).concat(e.index):[]}(gs(t.length(),l,o,i,0,!0))}function ms(t){var e=.5,r=.5;switch(t){case\"right\":case\"top-right\":case\"bottom-right\":e=1;break;case\"left\":case\"top-left\":case\"bottom-left\":e=0}switch(t){case\"bottom\":case\"bottom-right\":case\"bottom-left\":r=1;break;case\"top\":case\"top-right\":case\"top-left\":r=0}return{horizontalAlign:e,verticalAlign:r}}function ys(t,e,r,n,a){if(a){var i=t[n],o=e[i.fontStack],s=o&&o[i.glyph];if(s)for(var l=s.metrics.advance*i.scale,c=(t[n].x+l)*a,u=r;u<=n;u++)t[u].x-=c}}fs[10]=!0,fs[32]=!0,fs[38]=!0,fs[40]=!0,fs[41]=!0,fs[43]=!0,fs[45]=!0,fs[47]=!0,fs[173]=!0,fs[183]=!0,fs[8203]=!0,fs[8208]=!0,fs[8211]=!0,fs[8231]=!0;var xs=function(t){function e(e,r,n,a){t.call(this,e,r),this.angle=n,void 0!==a&&(this.segment=a)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.clone=function(){return new e(this.x,this.y,this.angle,this.segment)},e}(a);pn(\"Anchor\",xs);var bs=256;function _s(t,e){var r=e.expression;if(\"constant\"===r.kind)return{kind:\"constant\",layoutSize:r.evaluate(new Ln(t+1))};if(\"source\"===r.kind)return{kind:\"source\"};for(var n=r.zoomStops,a=r.interpolationType,i=0;i<n.length&&n[i]<=t;)i++;for(var o=i=Math.max(0,i-1);o<n.length&&n[o]<t+1;)o++;o=Math.min(n.length-1,o);var s=n[i],l=n[o];return\"composite\"===r.kind?{kind:\"composite\",minZoom:s,maxZoom:l,interpolationType:a}:{kind:\"camera\",minZoom:s,maxZoom:l,minSize:r.evaluate(new Ln(s)),maxSize:r.evaluate(new Ln(l)),interpolationType:a}}function ws(t,e,r){var n=e.uSize,a=e.uSizeT,i=r.lowerSize,o=r.upperSize;return\"source\"===t.kind?i/bs:\"composite\"===t.kind?ye(i/bs,o/bs,a):n}function ks(t,e){var r=0,n=0;if(\"constant\"===t.kind)n=t.layoutSize;else if(\"source\"!==t.kind){var a=t.interpolationType,i=t.minZoom,o=t.maxZoom,s=a?c(Be.interpolationFactor(a,e,i,o),0,1):0;\"camera\"===t.kind?n=ye(t.minSize,t.maxSize,s):r=s}return{uSizeT:r,uSize:n}}var Ts=Object.freeze({getSizeData:_s,evaluateSizeForFeature:ws,evaluateSizeForZoom:ks,SIZE_PACK_FACTOR:bs}),As=Io.VectorTileFeature.types,Ms=[{name:\"a_fade_opacity\",components:1,type:\"Uint8\",offset:0}];function Ss(t,e,r,n,a,i,o,s){t.emplaceBack(e,r,Math.round(32*n),Math.round(32*a),i,o,s?s[0]:0,s?s[1]:0)}function Es(t,e,r){t.emplaceBack(e.x,e.y,r),t.emplaceBack(e.x,e.y,r),t.emplaceBack(e.x,e.y,r),t.emplaceBack(e.x,e.y,r)}var Cs=function(t){this.layoutVertexArray=new ra,this.indexArray=new pa,this.programConfigurations=t,this.segments=new Pa,this.dynamicLayoutVertexArray=new na,this.opacityVertexArray=new aa,this.placedSymbolArray=new _a};Cs.prototype.upload=function(t,e,r,n){r&&(this.layoutVertexBuffer=t.createVertexBuffer(this.layoutVertexArray,ts.members),this.indexBuffer=t.createIndexBuffer(this.indexArray,e),this.dynamicLayoutVertexBuffer=t.createVertexBuffer(this.dynamicLayoutVertexArray,es.members,!0),this.opacityVertexBuffer=t.createVertexBuffer(this.opacityVertexArray,Ms,!0),this.opacityVertexBuffer.itemSize=1),(r||n)&&this.programConfigurations.upload(t)},Cs.prototype.destroy=function(){this.layoutVertexBuffer&&(this.layoutVertexBuffer.destroy(),this.indexBuffer.destroy(),this.programConfigurations.destroy(),this.segments.destroy(),this.dynamicLayoutVertexBuffer.destroy(),this.opacityVertexBuffer.destroy())},pn(\"SymbolBuffers\",Cs);var Ls=function(t,e,r){this.layoutVertexArray=new t,this.layoutAttributes=e,this.indexArray=new r,this.segments=new Pa,this.collisionVertexArray=new sa};Ls.prototype.upload=function(t){this.layoutVertexBuffer=t.createVertexBuffer(this.layoutVertexArray,this.layoutAttributes),this.indexBuffer=t.createIndexBuffer(this.indexArray),this.collisionVertexBuffer=t.createVertexBuffer(this.collisionVertexArray,rs.members,!0)},Ls.prototype.destroy=function(){this.layoutVertexBuffer&&(this.layoutVertexBuffer.destroy(),this.indexBuffer.destroy(),this.segments.destroy(),this.collisionVertexBuffer.destroy())},pn(\"CollisionBuffers\",Ls);var Ps=function(t){this.collisionBoxArray=t.collisionBoxArray,this.zoom=t.zoom,this.overscaling=t.overscaling,this.layers=t.layers,this.layerIds=this.layers.map(function(t){return t.id}),this.index=t.index,this.pixelRatio=t.pixelRatio,this.sourceLayerIndex=t.sourceLayerIndex,this.hasPattern=!1,this.hasPaintOverrides=!1;var e=this.layers[0]._unevaluatedLayout._values;this.textSizeData=_s(this.zoom,e[\"text-size\"]),this.iconSizeData=_s(this.zoom,e[\"icon-size\"]);var r=this.layers[0].layout,n=r.get(\"symbol-sort-key\"),a=r.get(\"symbol-z-order\");this.sortFeaturesByKey=\"viewport-y\"!==a&&void 0!==n.constantOr(1);var i=\"viewport-y\"===a||\"auto\"===a&&!this.sortFeaturesByKey;this.sortFeaturesByY=i&&(r.get(\"text-allow-overlap\")||r.get(\"icon-allow-overlap\")||r.get(\"text-ignore-placement\")||r.get(\"icon-ignore-placement\")),\"point\"===r.get(\"symbol-placement\")&&(this.writingModes=r.get(\"text-writing-mode\").map(function(t){return ls[t]})),this.stateDependentLayerIds=this.layers.filter(function(t){return t.isStateDependent()}).map(function(t){return t.id}),this.sourceID=t.sourceID};Ps.prototype.createArrays=function(){var t=this.layers[0].layout;this.hasPaintOverrides=Ds.hasPaintOverrides(t),this.text=new Cs(new Ka(ts.members,this.layers,this.zoom,function(t){return/^text/.test(t)})),this.icon=new Cs(new Ka(ts.members,this.layers,this.zoom,function(t){return/^icon/.test(t)})),this.collisionBox=new Ls(oa,ns.members,da),this.collisionCircle=new Ls(oa,as.members,pa),this.glyphOffsetArray=new Aa,this.lineVertexArray=new Sa,this.symbolInstances=new ka},Ps.prototype.calculateGlyphDependencies=function(t,e,r,n,a){for(var i=0;i<t.length;i++)if(e[t.charCodeAt(i)]=!0,(r||n)&&a){var o=os[t.charAt(i)];o&&(e[o.charCodeAt(0)]=!0)}},Ps.prototype.populate=function(t,e){var r=this.layers[0],n=r.layout,a=n.get(\"text-font\"),i=n.get(\"text-field\"),o=n.get(\"icon-image\"),s=(\"constant\"!==i.value.kind||i.value.value.toString().length>0)&&(\"constant\"!==a.value.kind||a.value.value.length>0),l=\"constant\"!==o.value.kind||o.value.value&&o.value.value.length>0,c=n.get(\"symbol-sort-key\");if(this.features=[],s||l){for(var u=e.iconDependencies,h=e.glyphDependencies,f=new Ln(this.zoom),p=0,d=t;p<d.length;p+=1){var g=d[p],v=g.feature,m=g.index,y=g.sourceLayerIndex;if(r._featureFilter(f,v)){var x=void 0;if(s){var b=r.getValueAndResolveTokens(\"text-field\",v);x=is(b instanceof Jt?b:Jt.fromString(b),r,v)}var _=void 0;if(l&&(_=r.getValueAndResolveTokens(\"icon-image\",v)),x||_){var w=this.sortFeaturesByKey?c.evaluate(v,{}):void 0,k={text:x,icon:_,index:m,sourceLayerIndex:y,geometry:ri(v),properties:v.properties,type:As[v.type],sortKey:w};if(void 0!==v.id&&(k.id=v.id),this.features.push(k),_&&(u[_]=!0),x){var T=a.evaluate(v,{}).join(\",\"),A=\"map\"===n.get(\"text-rotation-alignment\")&&\"point\"!==n.get(\"symbol-placement\");this.allowVerticalPlacement=this.writingModes&&this.writingModes.indexOf(ls.vertical)>=0;for(var M=0,S=x.sections;M<S.length;M+=1){var E=S[M],C=xn(x.toString()),L=E.fontStack||T,P=h[L]=h[L]||{};this.calculateGlyphDependencies(E.text,P,A,this.allowVerticalPlacement,C)}}}}}\"line\"===n.get(\"symbol-placement\")&&(this.features=function(t){var e={},r={},n=[],a=0;function i(e){n.push(t[e]),a++}function o(t,e,a){var i=r[t];return delete r[t],r[e]=i,n[i].geometry[0].pop(),n[i].geometry[0]=n[i].geometry[0].concat(a[0]),i}function s(t,r,a){var i=e[r];return delete e[r],e[t]=i,n[i].geometry[0].shift(),n[i].geometry[0]=a[0].concat(n[i].geometry[0]),i}function l(t,e,r){var n=r?e[0][e[0].length-1]:e[0][0];return t+\":\"+n.x+\":\"+n.y}for(var c=0;c<t.length;c++){var u=t[c],h=u.geometry,f=u.text?u.text.toString():null;if(f){var p=l(f,h),d=l(f,h,!0);if(p in r&&d in e&&r[p]!==e[d]){var g=s(p,d,h),v=o(p,d,n[g].geometry);delete e[p],delete r[d],r[l(f,n[v].geometry,!0)]=v,n[g].geometry=null}else p in r?o(p,d,h):d in e?s(p,d,h):(i(c),e[p]=a-1,r[d]=a-1)}else i(c)}return n.filter(function(t){return t.geometry})}(this.features)),this.sortFeaturesByKey&&this.features.sort(function(t,e){return t.sortKey-e.sortKey})}},Ps.prototype.update=function(t,e,r){this.stateDependentLayers.length&&(this.text.programConfigurations.updatePaintArrays(t,e,this.layers,r),this.icon.programConfigurations.updatePaintArrays(t,e,this.layers,r))},Ps.prototype.isEmpty=function(){return 0===this.symbolInstances.length},Ps.prototype.uploadPending=function(){return!this.uploaded||this.text.programConfigurations.needsUpload||this.icon.programConfigurations.needsUpload},Ps.prototype.upload=function(t){this.uploaded||(this.collisionBox.upload(t),this.collisionCircle.upload(t)),this.text.upload(t,this.sortFeaturesByY,!this.uploaded,this.text.programConfigurations.needsUpload),this.icon.upload(t,this.sortFeaturesByY,!this.uploaded,this.icon.programConfigurations.needsUpload),this.uploaded=!0},Ps.prototype.destroy=function(){this.text.destroy(),this.icon.destroy(),this.collisionBox.destroy(),this.collisionCircle.destroy()},Ps.prototype.addToLineVertexArray=function(t,e){var r=this.lineVertexArray.length;if(void 0!==t.segment){for(var n=t.dist(e[t.segment+1]),a=t.dist(e[t.segment]),i={},o=t.segment+1;o<e.length;o++)i[o]={x:e[o].x,y:e[o].y,tileUnitDistanceFromAnchor:n},o<e.length-1&&(n+=e[o+1].dist(e[o]));for(var s=t.segment||0;s>=0;s--)i[s]={x:e[s].x,y:e[s].y,tileUnitDistanceFromAnchor:a},s>0&&(a+=e[s-1].dist(e[s]));for(var l=0;l<e.length;l++){var c=i[l];this.lineVertexArray.emplaceBack(c.x,c.y,c.tileUnitDistanceFromAnchor)}}return{lineStartIndex:r,lineLength:this.lineVertexArray.length-r}},Ps.prototype.addSymbols=function(t,e,r,n,a,i,o,s,l,c){var u=this,h=t.indexArray,f=t.layoutVertexArray,p=t.dynamicLayoutVertexArray,d=t.segments.prepareSegment(4*e.length,t.layoutVertexArray,t.indexArray,i.sortKey),g=this.glyphOffsetArray.length,v=d.vertexLength,m=this.allowVerticalPlacement&&o===ls.vertical?Math.PI/2:0,y=function(t){var e=t.tl,n=t.tr,a=t.bl,i=t.br,o=t.tex,l=d.vertexLength,c=t.glyphOffset[1];Ss(f,s.x,s.y,e.x,c+e.y,o.x,o.y,r),Ss(f,s.x,s.y,n.x,c+n.y,o.x+o.w,o.y,r),Ss(f,s.x,s.y,a.x,c+a.y,o.x,o.y+o.h,r),Ss(f,s.x,s.y,i.x,c+i.y,o.x+o.w,o.y+o.h,r),Es(p,s,m),h.emplaceBack(l,l+1,l+2),h.emplaceBack(l+1,l+2,l+3),d.vertexLength+=4,d.primitiveLength+=2,u.glyphOffsetArray.emplaceBack(t.glyphOffset[0])};if(i.text&&i.text.sections){var x=i.text.sections;if(this.hasPaintOverrides){for(var b,_=function(e,r){void 0===b||b===e&&!r||t.programConfigurations.populatePaintArrays(t.layoutVertexArray.length,i,i.index,{},x[b]),b=e},w=0,k=e;w<k.length;w+=1){var T=k[w];_(T.sectionIndex,!1),y(T)}_(b,!0)}else{for(var A=0,M=e;A<M.length;A+=1)y(M[A]);t.programConfigurations.populatePaintArrays(t.layoutVertexArray.length,i,i.index,{},x[0])}}else{for(var S=0,E=e;S<E.length;S+=1)y(E[S]);t.programConfigurations.populatePaintArrays(t.layoutVertexArray.length,i,i.index,{})}t.placedSymbolArray.emplaceBack(s.x,s.y,g,this.glyphOffsetArray.length-g,v,l,c,s.segment,r?r[0]:0,r?r[1]:0,n[0],n[1],o,0,!1,0)},Ps.prototype._addCollisionDebugVertex=function(t,e,r,n,a,i){return e.emplaceBack(0,0),t.emplaceBack(r.x,r.y,n,a,Math.round(i.x),Math.round(i.y))},Ps.prototype.addCollisionDebugVertices=function(t,e,r,n,i,o,s,l){var c=i.segments.prepareSegment(4,i.layoutVertexArray,i.indexArray),u=c.vertexLength,h=i.layoutVertexArray,f=i.collisionVertexArray,p=s.anchorX,d=s.anchorY;if(this._addCollisionDebugVertex(h,f,o,p,d,new a(t,e)),this._addCollisionDebugVertex(h,f,o,p,d,new a(r,e)),this._addCollisionDebugVertex(h,f,o,p,d,new a(r,n)),this._addCollisionDebugVertex(h,f,o,p,d,new a(t,n)),c.vertexLength+=4,l){var g=i.indexArray;g.emplaceBack(u,u+1,u+2),g.emplaceBack(u,u+2,u+3),c.primitiveLength+=2}else{var v=i.indexArray;v.emplaceBack(u,u+1),v.emplaceBack(u+1,u+2),v.emplaceBack(u+2,u+3),v.emplaceBack(u+3,u),c.primitiveLength+=4}},Ps.prototype.addDebugCollisionBoxes=function(t,e,r){for(var n=t;n<e;n++){var a=this.collisionBoxArray.get(n),i=a.x1,o=a.y1,s=a.x2,l=a.y2,c=a.radius>0;this.addCollisionDebugVertices(i,o,s,l,c?this.collisionCircle:this.collisionBox,a.anchorPoint,r,c)}},Ps.prototype.generateCollisionDebugBuffers=function(){for(var t=0;t<this.symbolInstances.length;t++){var e=this.symbolInstances.get(t);this.addDebugCollisionBoxes(e.textBoxStartIndex,e.textBoxEndIndex,e),this.addDebugCollisionBoxes(e.verticalTextBoxStartIndex,e.verticalTextBoxEndIndex,e),this.addDebugCollisionBoxes(e.iconBoxStartIndex,e.iconBoxEndIndex,e)}},Ps.prototype._deserializeCollisionBoxesForSymbol=function(t,e,r,n,a,i,o){for(var s={},l=e;l<r;l++){var c=t.get(l);if(0===c.radius){s.textBox={x1:c.x1,y1:c.y1,x2:c.x2,y2:c.y2,anchorPointX:c.anchorPointX,anchorPointY:c.anchorPointY},s.textFeatureIndex=c.featureIndex;break}s.textCircles||(s.textCircles=[],s.textFeatureIndex=c.featureIndex),s.textCircles.push(c.anchorPointX,c.anchorPointY,c.radius,c.signedDistanceFromAnchor,1)}for(var u=n;u<a;u++){var h=t.get(u);if(0===h.radius){s.verticalTextBox={x1:h.x1,y1:h.y1,x2:h.x2,y2:h.y2,anchorPointX:h.anchorPointX,anchorPointY:h.anchorPointY},s.verticalTextFeatureIndex=h.featureIndex;break}}for(var f=i;f<o;f++){var p=t.get(f);if(0===p.radius){s.iconBox={x1:p.x1,y1:p.y1,x2:p.x2,y2:p.y2,anchorPointX:p.anchorPointX,anchorPointY:p.anchorPointY},s.iconFeatureIndex=p.featureIndex;break}}return s},Ps.prototype.deserializeCollisionBoxes=function(t){this.collisionArrays=[];for(var e=0;e<this.symbolInstances.length;e++){var r=this.symbolInstances.get(e);this.collisionArrays.push(this._deserializeCollisionBoxesForSymbol(t,r.textBoxStartIndex,r.textBoxEndIndex,r.verticalTextBoxStartIndex,r.verticalTextBoxEndIndex,r.iconBoxStartIndex,r.iconBoxEndIndex))}},Ps.prototype.hasTextData=function(){return this.text.segments.get().length>0},Ps.prototype.hasIconData=function(){return this.icon.segments.get().length>0},Ps.prototype.hasCollisionBoxData=function(){return this.collisionBox.segments.get().length>0},Ps.prototype.hasCollisionCircleData=function(){return this.collisionCircle.segments.get().length>0},Ps.prototype.addIndicesForPlacedTextSymbol=function(t){for(var e=this.text.placedSymbolArray.get(t),r=e.vertexStartIndex+4*e.numGlyphs,n=e.vertexStartIndex;n<r;n+=4)this.text.indexArray.emplaceBack(n,n+1,n+2),this.text.indexArray.emplaceBack(n+1,n+2,n+3)},Ps.prototype.getSortedSymbolIndexes=function(t){if(this.sortedAngle===t&&void 0!==this.symbolInstanceIndexes)return this.symbolInstanceIndexes;for(var e=Math.sin(t),r=Math.cos(t),n=[],a=[],i=[],o=0;o<this.symbolInstances.length;++o){i.push(o);var s=this.symbolInstances.get(o);n.push(0|Math.round(e*s.anchorX+r*s.anchorY)),a.push(s.featureIndex)}return i.sort(function(t,e){return n[t]-n[e]||a[e]-a[t]}),i},Ps.prototype.sortFeatures=function(t){var e=this;if(this.sortFeaturesByY&&this.sortedAngle!==t&&!(this.text.segments.get().length>1||this.icon.segments.get().length>1)){this.symbolInstanceIndexes=this.getSortedSymbolIndexes(t),this.sortedAngle=t,this.text.indexArray.clear(),this.icon.indexArray.clear(),this.featureSortOrder=[];for(var r=0,n=this.symbolInstanceIndexes;r<n.length;r+=1){var a=n[r],i=this.symbolInstances.get(a);this.featureSortOrder.push(i.featureIndex),[i.rightJustifiedTextSymbolIndex,i.centerJustifiedTextSymbolIndex,i.leftJustifiedTextSymbolIndex].forEach(function(t,r,n){t>=0&&n.indexOf(t)===r&&e.addIndicesForPlacedTextSymbol(t)}),i.verticalPlacedTextSymbolIndex>=0&&this.addIndicesForPlacedTextSymbol(i.verticalPlacedTextSymbolIndex);var o=this.icon.placedSymbolArray.get(a);if(o.numGlyphs){var s=o.vertexStartIndex;this.icon.indexArray.emplaceBack(s,s+1,s+2),this.icon.indexArray.emplaceBack(s+1,s+2,s+3)}}this.text.indexBuffer&&this.text.indexBuffer.updateData(this.text.indexArray),this.icon.indexBuffer&&this.icon.indexBuffer.updateData(this.icon.indexArray)}},pn(\"SymbolBucket\",Ps,{omit:[\"layers\",\"collisionBoxArray\",\"features\",\"compareText\"]}),Ps.MAX_GLYPHS=65535,Ps.addDynamicAttributes=Es;var Os=new Hn({\"symbol-placement\":new Nn(Tt.layout_symbol[\"symbol-placement\"]),\"symbol-spacing\":new Nn(Tt.layout_symbol[\"symbol-spacing\"]),\"symbol-avoid-edges\":new Nn(Tt.layout_symbol[\"symbol-avoid-edges\"]),\"symbol-sort-key\":new jn(Tt.layout_symbol[\"symbol-sort-key\"]),\"symbol-z-order\":new Nn(Tt.layout_symbol[\"symbol-z-order\"]),\"icon-allow-overlap\":new Nn(Tt.layout_symbol[\"icon-allow-overlap\"]),\"icon-ignore-placement\":new Nn(Tt.layout_symbol[\"icon-ignore-placement\"]),\"icon-optional\":new Nn(Tt.layout_symbol[\"icon-optional\"]),\"icon-rotation-alignment\":new Nn(Tt.layout_symbol[\"icon-rotation-alignment\"]),\"icon-size\":new jn(Tt.layout_symbol[\"icon-size\"]),\"icon-text-fit\":new Nn(Tt.layout_symbol[\"icon-text-fit\"]),\"icon-text-fit-padding\":new Nn(Tt.layout_symbol[\"icon-text-fit-padding\"]),\"icon-image\":new jn(Tt.layout_symbol[\"icon-image\"]),\"icon-rotate\":new jn(Tt.layout_symbol[\"icon-rotate\"]),\"icon-padding\":new Nn(Tt.layout_symbol[\"icon-padding\"]),\"icon-keep-upright\":new Nn(Tt.layout_symbol[\"icon-keep-upright\"]),\"icon-offset\":new jn(Tt.layout_symbol[\"icon-offset\"]),\"icon-anchor\":new jn(Tt.layout_symbol[\"icon-anchor\"]),\"icon-pitch-alignment\":new Nn(Tt.layout_symbol[\"icon-pitch-alignment\"]),\"text-pitch-alignment\":new Nn(Tt.layout_symbol[\"text-pitch-alignment\"]),\"text-rotation-alignment\":new Nn(Tt.layout_symbol[\"text-rotation-alignment\"]),\"text-field\":new jn(Tt.layout_symbol[\"text-field\"]),\"text-font\":new jn(Tt.layout_symbol[\"text-font\"]),\"text-size\":new jn(Tt.layout_symbol[\"text-size\"]),\"text-max-width\":new jn(Tt.layout_symbol[\"text-max-width\"]),\"text-line-height\":new Nn(Tt.layout_symbol[\"text-line-height\"]),\"text-letter-spacing\":new jn(Tt.layout_symbol[\"text-letter-spacing\"]),\"text-justify\":new jn(Tt.layout_symbol[\"text-justify\"]),\"text-radial-offset\":new jn(Tt.layout_symbol[\"text-radial-offset\"]),\"text-variable-anchor\":new Nn(Tt.layout_symbol[\"text-variable-anchor\"]),\"text-anchor\":new jn(Tt.layout_symbol[\"text-anchor\"]),\"text-max-angle\":new Nn(Tt.layout_symbol[\"text-max-angle\"]),\"text-writing-mode\":new Nn(Tt.layout_symbol[\"text-writing-mode\"]),\"text-rotate\":new jn(Tt.layout_symbol[\"text-rotate\"]),\"text-padding\":new Nn(Tt.layout_symbol[\"text-padding\"]),\"text-keep-upright\":new Nn(Tt.layout_symbol[\"text-keep-upright\"]),\"text-transform\":new jn(Tt.layout_symbol[\"text-transform\"]),\"text-offset\":new jn(Tt.layout_symbol[\"text-offset\"]),\"text-allow-overlap\":new Nn(Tt.layout_symbol[\"text-allow-overlap\"]),\"text-ignore-placement\":new Nn(Tt.layout_symbol[\"text-ignore-placement\"]),\"text-optional\":new Nn(Tt.layout_symbol[\"text-optional\"])}),Is={paint:new Hn({\"icon-opacity\":new jn(Tt.paint_symbol[\"icon-opacity\"]),\"icon-color\":new jn(Tt.paint_symbol[\"icon-color\"]),\"icon-halo-color\":new jn(Tt.paint_symbol[\"icon-halo-color\"]),\"icon-halo-width\":new jn(Tt.paint_symbol[\"icon-halo-width\"]),\"icon-halo-blur\":new jn(Tt.paint_symbol[\"icon-halo-blur\"]),\"icon-translate\":new Nn(Tt.paint_symbol[\"icon-translate\"]),\"icon-translate-anchor\":new Nn(Tt.paint_symbol[\"icon-translate-anchor\"]),\"text-opacity\":new jn(Tt.paint_symbol[\"text-opacity\"]),\"text-color\":new jn(Tt.paint_symbol[\"text-color\"],{runtimeType:Ft,getOverride:function(t){return t.textColor},hasOverride:function(t){return!!t.textColor}}),\"text-halo-color\":new jn(Tt.paint_symbol[\"text-halo-color\"]),\"text-halo-width\":new jn(Tt.paint_symbol[\"text-halo-width\"]),\"text-halo-blur\":new jn(Tt.paint_symbol[\"text-halo-blur\"]),\"text-translate\":new Nn(Tt.paint_symbol[\"text-translate\"]),\"text-translate-anchor\":new Nn(Tt.paint_symbol[\"text-translate-anchor\"])}),layout:Os},zs=function(t){this.type=t.property.overrides?t.property.overrides.runtimeType:It,this.defaultValue=t};zs.prototype.evaluate=function(t){if(t.formattedSection){var e=this.defaultValue.property.overrides;if(e&&e.hasOverride(t.formattedSection))return e.getOverride(t.formattedSection)}return t.feature&&t.featureState?this.defaultValue.evaluate(t.feature,t.featureState):this.defaultValue.property.specification.default},zs.prototype.eachChild=function(t){this.defaultValue.isConstant()||t(this.defaultValue.value._styleExpression.expression)},zs.prototype.possibleOutputs=function(){return[void 0]},zs.prototype.serialize=function(){return null},pn(\"FormatSectionOverride\",zs,{omit:[\"defaultValue\"]});var Ds=function(t){function e(e){t.call(this,e,Is)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.recalculate=function(e){if(t.prototype.recalculate.call(this,e),\"auto\"===this.layout.get(\"icon-rotation-alignment\")&&(\"point\"!==this.layout.get(\"symbol-placement\")?this.layout._values[\"icon-rotation-alignment\"]=\"map\":this.layout._values[\"icon-rotation-alignment\"]=\"viewport\"),\"auto\"===this.layout.get(\"text-rotation-alignment\")&&(\"point\"!==this.layout.get(\"symbol-placement\")?this.layout._values[\"text-rotation-alignment\"]=\"map\":this.layout._values[\"text-rotation-alignment\"]=\"viewport\"),\"auto\"===this.layout.get(\"text-pitch-alignment\")&&(this.layout._values[\"text-pitch-alignment\"]=this.layout.get(\"text-rotation-alignment\")),\"auto\"===this.layout.get(\"icon-pitch-alignment\")&&(this.layout._values[\"icon-pitch-alignment\"]=this.layout.get(\"icon-rotation-alignment\")),\"point\"===this.layout.get(\"symbol-placement\")){var r=this.layout.get(\"text-writing-mode\");if(r){for(var n=[],a=0,i=r;a<i.length;a+=1){var o=i[a];n.indexOf(o)<0&&n.push(o)}this.layout._values[\"text-writing-mode\"]=n}else this.layout._values[\"text-writing-mode\"]=[\"horizontal\"]}this._setPaintOverrides()},e.prototype.getValueAndResolveTokens=function(t,e){var r=this.layout.get(t).evaluate(e,{}),n=this._unevaluatedLayout._values[t];return n.isDataDriven()||_r(n.value)?r:function(t,e){return r.replace(/{([^{}]+)}/g,function(e,r){return r in t?String(t[r]):\"\"})}(e.properties)},e.prototype.createBucket=function(t){return new Ps(t)},e.prototype.queryRadius=function(){return 0},e.prototype.queryIntersectsFeature=function(){return!1},e.prototype._setPaintOverrides=function(){for(var t=0,r=Is.paint.overridableProperties;t<r.length;t+=1){var n=r[t];if(e.hasPaintOverride(this.layout,n)){var a,i=this.paint.get(n),o=new zs(i),s=new br(o,i.property.specification);a=\"constant\"===i.value.kind||\"source\"===i.value.kind?new kr(\"source\",s):new Tr(\"composite\",s,i.value.zoomStops,i.value._interpolationType),this.paint._values[n]=new Fn(i.property,a,i.parameters)}}},e.prototype._handleOverridablePaintPropertyUpdate=function(t,r,n){return!(!this.layout||r.isDataDriven()||n.isDataDriven())&&e.hasPaintOverride(this.layout,t)},e.hasPaintOverride=function(t,e){var r=t.get(\"text-field\"),n=Is.paint.properties[e],a=!1,i=function(t){for(var e=0,r=t;e<r.length;e+=1){var i=r[e];if(n.overrides&&n.overrides.hasOverride(i))return void(a=!0)}};if(\"constant\"===r.value.kind&&r.value.value instanceof Jt)i(r.value.value.sections);else if(\"source\"===r.value.kind){var o=function(t){if(!a)if(t instanceof te&&Qt(t.value)===Vt){var e=t.value;i(e.sections)}else t instanceof ae?i(t.sections):t.eachChild(o)},s=r.value;s._styleExpression&&o(s._styleExpression.expression)}return a},e.hasPaintOverrides=function(t){for(var r=0,n=Is.paint.overridableProperties;r<n.length;r+=1){var a=n[r];if(e.hasPaintOverride(t,a))return!0}return!1},e}(Gn),Rs={paint:new Hn({\"background-color\":new Nn(Tt.paint_background[\"background-color\"]),\"background-pattern\":new Un(Tt.paint_background[\"background-pattern\"]),\"background-opacity\":new Nn(Tt.paint_background[\"background-opacity\"])})},Fs=function(t){function e(e){t.call(this,e,Rs)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}(Gn),Bs={paint:new Hn({\"raster-opacity\":new Nn(Tt.paint_raster[\"raster-opacity\"]),\"raster-hue-rotate\":new Nn(Tt.paint_raster[\"raster-hue-rotate\"]),\"raster-brightness-min\":new Nn(Tt.paint_raster[\"raster-brightness-min\"]),\"raster-brightness-max\":new Nn(Tt.paint_raster[\"raster-brightness-max\"]),\"raster-saturation\":new Nn(Tt.paint_raster[\"raster-saturation\"]),\"raster-contrast\":new Nn(Tt.paint_raster[\"raster-contrast\"]),\"raster-resampling\":new Nn(Tt.paint_raster[\"raster-resampling\"]),\"raster-fade-duration\":new Nn(Tt.paint_raster[\"raster-fade-duration\"])})},Ns=function(t){function e(e){t.call(this,e,Bs)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}(Gn),js=function(t){function e(e){t.call(this,e,{}),this.implementation=e}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.is3D=function(){return\"3d\"===this.implementation.renderingMode},e.prototype.hasOffscreenPass=function(){return void 0!==this.implementation.prerender},e.prototype.recalculate=function(){},e.prototype.updateTransitions=function(){},e.prototype.hasTransition=function(){},e.prototype.serialize=function(){},e.prototype.onAdd=function(t){this.implementation.onAdd&&this.implementation.onAdd(t,t.painter.context.gl)},e.prototype.onRemove=function(t){this.implementation.onRemove&&this.implementation.onRemove(t,t.painter.context.gl)},e}(Gn),Vs={circle:Ti,heatmap:zi,hillshade:Ri,fill:ko,\"fill-extrusion\":Vo,line:Qo,symbol:Ds,background:Fs,raster:Ns};function Us(t){for(var e=0,r=0,n=0,a=t;n<a.length;n+=1){var i=a[n];e+=i.w*i.h,r=Math.max(r,i.w)}t.sort(function(t,e){return e.h-t.h});for(var o=[{x:0,y:0,w:Math.max(Math.ceil(Math.sqrt(e/.95)),r),h:1/0}],s=0,l=0,c=0,u=t;c<u.length;c+=1)for(var h=u[c],f=o.length-1;f>=0;f--){var p=o[f];if(!(h.w>p.w||h.h>p.h)){if(h.x=p.x,h.y=p.y,l=Math.max(l,h.y+h.h),s=Math.max(s,h.x+h.w),h.w===p.w&&h.h===p.h){var d=o.pop();f<o.length&&(o[f]=d)}else h.h===p.h?(p.x+=h.w,p.w-=h.w):h.w===p.w?(p.y+=h.h,p.h-=h.h):(o.push({x:p.x+h.w,y:p.y,w:p.w-h.w,h:h.h}),p.y+=h.h,p.h-=h.h);break}}return{w:s,h:l,fill:e/(s*l)||0}}var qs=function(t,e){var r=e.pixelRatio,n=e.version;this.paddedRect=t,this.pixelRatio=r,this.version=n},Hs={tl:{configurable:!0},br:{configurable:!0},tlbr:{configurable:!0},displaySize:{configurable:!0}};Hs.tl.get=function(){return[this.paddedRect.x+1,this.paddedRect.y+1]},Hs.br.get=function(){return[this.paddedRect.x+this.paddedRect.w-1,this.paddedRect.y+this.paddedRect.h-1]},Hs.tlbr.get=function(){return this.tl.concat(this.br)},Hs.displaySize.get=function(){return[(this.paddedRect.w-2)/this.pixelRatio,(this.paddedRect.h-2)/this.pixelRatio]},Object.defineProperties(qs.prototype,Hs);var Gs=function(t,e){var r={},n={};this.haveRenderCallbacks=[];var a=[];this.addImages(t,r,a),this.addImages(e,n,a);var i=Us(a),o=i.w,s=i.h,l=new Pi({width:o||1,height:s||1});for(var c in t){var u=t[c],h=r[c].paddedRect;Pi.copy(u.data,l,{x:0,y:0},{x:h.x+1,y:h.y+1},u.data)}for(var f in e){var p=e[f],d=n[f].paddedRect,g=d.x+1,v=d.y+1,m=p.data.width,y=p.data.height;Pi.copy(p.data,l,{x:0,y:0},{x:g,y:v},p.data),Pi.copy(p.data,l,{x:0,y:y-1},{x:g,y:v-1},{width:m,height:1}),Pi.copy(p.data,l,{x:0,y:0},{x:g,y:v+y},{width:m,height:1}),Pi.copy(p.data,l,{x:m-1,y:0},{x:g-1,y:v},{width:1,height:y}),Pi.copy(p.data,l,{x:0,y:0},{x:g+m,y:v},{width:1,height:y})}this.image=l,this.iconPositions=r,this.patternPositions=n};Gs.prototype.addImages=function(t,e,r){for(var n in t){var a=t[n],i={x:0,y:0,w:a.data.width+2,h:a.data.height+2};r.push(i),e[n]=new qs(i,a),a.hasRenderCallback&&this.haveRenderCallbacks.push(n)}},Gs.prototype.patchUpdatedImages=function(t,e){for(var r in t.dispatchRenderCallbacks(this.haveRenderCallbacks),t.updatedImages)this.patchUpdatedImage(this.iconPositions[r],t.getImage(r),e),this.patchUpdatedImage(this.patternPositions[r],t.getImage(r),e)},Gs.prototype.patchUpdatedImage=function(t,e,r){if(t&&e&&t.version!==e.version){t.version=e.version;var n=t.tl,a=n[0],i=n[1];r.update(e.data,void 0,{x:a,y:i})}},pn(\"ImagePosition\",qs),pn(\"ImageAtlas\",Gs);var Ys=self.HTMLImageElement,Ws=self.HTMLCanvasElement,Xs=self.HTMLVideoElement,Zs=self.ImageData,Js=function(t,e,r,n){this.context=t,this.format=r,this.texture=t.gl.createTexture(),this.update(e,n)};Js.prototype.update=function(t,e,r){var n=t.width,a=t.height,i=!(this.size&&this.size[0]===n&&this.size[1]===a||r),o=this.context,s=o.gl;if(this.useMipmap=Boolean(e&&e.useMipmap),s.bindTexture(s.TEXTURE_2D,this.texture),o.pixelStoreUnpackFlipY.set(!1),o.pixelStoreUnpack.set(1),o.pixelStoreUnpackPremultiplyAlpha.set(this.format===s.RGBA&&(!e||!1!==e.premultiply)),i)this.size=[n,a],t instanceof Ys||t instanceof Ws||t instanceof Xs||t instanceof Zs?s.texImage2D(s.TEXTURE_2D,0,this.format,this.format,s.UNSIGNED_BYTE,t):s.texImage2D(s.TEXTURE_2D,0,this.format,n,a,0,this.format,s.UNSIGNED_BYTE,t.data);else{var l=r||{x:0,y:0},c=l.x,u=l.y;t instanceof Ys||t instanceof Ws||t instanceof Xs||t instanceof Zs?s.texSubImage2D(s.TEXTURE_2D,0,c,u,s.RGBA,s.UNSIGNED_BYTE,t):s.texSubImage2D(s.TEXTURE_2D,0,c,u,n,a,s.RGBA,s.UNSIGNED_BYTE,t.data)}this.useMipmap&&this.isSizePowerOfTwo()&&s.generateMipmap(s.TEXTURE_2D)},Js.prototype.bind=function(t,e,r){var n=this.context.gl;n.bindTexture(n.TEXTURE_2D,this.texture),r!==n.LINEAR_MIPMAP_NEAREST||this.isSizePowerOfTwo()||(r=n.LINEAR),t!==this.filter&&(n.texParameteri(n.TEXTURE_2D,n.TEXTURE_MAG_FILTER,t),n.texParameteri(n.TEXTURE_2D,n.TEXTURE_MIN_FILTER,r||t),this.filter=t),e!==this.wrap&&(n.texParameteri(n.TEXTURE_2D,n.TEXTURE_WRAP_S,e),n.texParameteri(n.TEXTURE_2D,n.TEXTURE_WRAP_T,e),this.wrap=e)},Js.prototype.isSizePowerOfTwo=function(){return this.size[0]===this.size[1]&&Math.log(this.size[0])/Math.LN2%1==0},Js.prototype.destroy=function(){this.context.gl.deleteTexture(this.texture),this.texture=null};var Ks=function(t,e,r,n,a){var i,o,s=8*a-n-1,l=(1<<s)-1,c=l>>1,u=-7,h=r?a-1:0,f=r?-1:1,p=t[e+h];for(h+=f,i=p&(1<<-u)-1,p>>=-u,u+=s;u>0;i=256*i+t[e+h],h+=f,u-=8);for(o=i&(1<<-u)-1,i>>=-u,u+=n;u>0;o=256*o+t[e+h],h+=f,u-=8);if(0===i)i=1-c;else{if(i===l)return o?NaN:1/0*(p?-1:1);o+=Math.pow(2,n),i-=c}return(p?-1:1)*o*Math.pow(2,i-n)},Qs=function(t,e,r,n,a,i){var o,s,l,c=8*i-a-1,u=(1<<c)-1,h=u>>1,f=23===a?Math.pow(2,-24)-Math.pow(2,-77):0,p=n?0:i-1,d=n?1:-1,g=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(s=isNaN(e)?1:0,o=u):(o=Math.floor(Math.log(e)/Math.LN2),e*(l=Math.pow(2,-o))<1&&(o--,l*=2),(e+=o+h>=1?f/l:f*Math.pow(2,1-h))*l>=2&&(o++,l/=2),o+h>=u?(s=0,o=u):o+h>=1?(s=(e*l-1)*Math.pow(2,a),o+=h):(s=e*Math.pow(2,h-1)*Math.pow(2,a),o=0));a>=8;t[r+p]=255&s,p+=d,s/=256,a-=8);for(o=o<<a|s,c+=a;c>0;t[r+p]=255&o,p+=d,o/=256,c-=8);t[r+p-d]|=128*g},$s=tl;function tl(t){this.buf=ArrayBuffer.isView&&ArrayBuffer.isView(t)?t:new Uint8Array(t||0),this.pos=0,this.type=0,this.length=this.buf.length}function el(t){return t.type===tl.Bytes?t.readVarint()+t.pos:t.pos+1}function rl(t,e,r){return r?4294967296*e+(t>>>0):4294967296*(e>>>0)+(t>>>0)}function nl(t,e,r){var n=e<=16383?1:e<=2097151?2:e<=268435455?3:Math.floor(Math.log(e)/(7*Math.LN2));r.realloc(n);for(var a=r.pos-1;a>=t;a--)r.buf[a+n]=r.buf[a]}function al(t,e){for(var r=0;r<t.length;r++)e.writeVarint(t[r])}function il(t,e){for(var r=0;r<t.length;r++)e.writeSVarint(t[r])}function ol(t,e){for(var r=0;r<t.length;r++)e.writeFloat(t[r])}function sl(t,e){for(var r=0;r<t.length;r++)e.writeDouble(t[r])}function ll(t,e){for(var r=0;r<t.length;r++)e.writeBoolean(t[r])}function cl(t,e){for(var r=0;r<t.length;r++)e.writeFixed32(t[r])}function ul(t,e){for(var r=0;r<t.length;r++)e.writeSFixed32(t[r])}function hl(t,e){for(var r=0;r<t.length;r++)e.writeFixed64(t[r])}function fl(t,e){for(var r=0;r<t.length;r++)e.writeSFixed64(t[r])}function pl(t,e){return(t[e]|t[e+1]<<8|t[e+2]<<16)+16777216*t[e+3]}function dl(t,e,r){t[r]=e,t[r+1]=e>>>8,t[r+2]=e>>>16,t[r+3]=e>>>24}function gl(t,e){return(t[e]|t[e+1]<<8|t[e+2]<<16)+(t[e+3]<<24)}tl.Varint=0,tl.Fixed64=1,tl.Bytes=2,tl.Fixed32=5,tl.prototype={destroy:function(){this.buf=null},readFields:function(t,e,r){for(r=r||this.length;this.pos<r;){var n=this.readVarint(),a=n>>3,i=this.pos;this.type=7&n,t(a,e,this),this.pos===i&&this.skip(n)}return e},readMessage:function(t,e){return this.readFields(t,e,this.readVarint()+this.pos)},readFixed32:function(){var t=pl(this.buf,this.pos);return this.pos+=4,t},readSFixed32:function(){var t=gl(this.buf,this.pos);return this.pos+=4,t},readFixed64:function(){var t=pl(this.buf,this.pos)+4294967296*pl(this.buf,this.pos+4);return this.pos+=8,t},readSFixed64:function(){var t=pl(this.buf,this.pos)+4294967296*gl(this.buf,this.pos+4);return this.pos+=8,t},readFloat:function(){var t=Ks(this.buf,this.pos,!0,23,4);return this.pos+=4,t},readDouble:function(){var t=Ks(this.buf,this.pos,!0,52,8);return this.pos+=8,t},readVarint:function(t){var e,r,n=this.buf;return e=127&(r=n[this.pos++]),r<128?e:(e|=(127&(r=n[this.pos++]))<<7,r<128?e:(e|=(127&(r=n[this.pos++]))<<14,r<128?e:(e|=(127&(r=n[this.pos++]))<<21,r<128?e:function(t,e,r){var n,a,i=r.buf;if(n=(112&(a=i[r.pos++]))>>4,a<128)return rl(t,n,e);if(n|=(127&(a=i[r.pos++]))<<3,a<128)return rl(t,n,e);if(n|=(127&(a=i[r.pos++]))<<10,a<128)return rl(t,n,e);if(n|=(127&(a=i[r.pos++]))<<17,a<128)return rl(t,n,e);if(n|=(127&(a=i[r.pos++]))<<24,a<128)return rl(t,n,e);if(n|=(1&(a=i[r.pos++]))<<31,a<128)return rl(t,n,e);throw new Error(\"Expected varint not more than 10 bytes\")}(e|=(15&(r=n[this.pos]))<<28,t,this))))},readVarint64:function(){return this.readVarint(!0)},readSVarint:function(){var t=this.readVarint();return t%2==1?(t+1)/-2:t/2},readBoolean:function(){return Boolean(this.readVarint())},readString:function(){var t=this.readVarint()+this.pos,e=function(t,e,r){for(var n=\"\",a=e;a<r;){var i,o,s,l=t[a],c=null,u=l>239?4:l>223?3:l>191?2:1;if(a+u>r)break;1===u?l<128&&(c=l):2===u?128==(192&(i=t[a+1]))&&(c=(31&l)<<6|63&i)<=127&&(c=null):3===u?(i=t[a+1],o=t[a+2],128==(192&i)&&128==(192&o)&&((c=(15&l)<<12|(63&i)<<6|63&o)<=2047||c>=55296&&c<=57343)&&(c=null)):4===u&&(i=t[a+1],o=t[a+2],s=t[a+3],128==(192&i)&&128==(192&o)&&128==(192&s)&&((c=(15&l)<<18|(63&i)<<12|(63&o)<<6|63&s)<=65535||c>=1114112)&&(c=null)),null===c?(c=65533,u=1):c>65535&&(c-=65536,n+=String.fromCharCode(c>>>10&1023|55296),c=56320|1023&c),n+=String.fromCharCode(c),a+=u}return n}(this.buf,this.pos,t);return this.pos=t,e},readBytes:function(){var t=this.readVarint()+this.pos,e=this.buf.subarray(this.pos,t);return this.pos=t,e},readPackedVarint:function(t,e){if(this.type!==tl.Bytes)return t.push(this.readVarint(e));var r=el(this);for(t=t||[];this.pos<r;)t.push(this.readVarint(e));return t},readPackedSVarint:function(t){if(this.type!==tl.Bytes)return t.push(this.readSVarint());var e=el(this);for(t=t||[];this.pos<e;)t.push(this.readSVarint());return t},readPackedBoolean:function(t){if(this.type!==tl.Bytes)return t.push(this.readBoolean());var e=el(this);for(t=t||[];this.pos<e;)t.push(this.readBoolean());return t},readPackedFloat:function(t){if(this.type!==tl.Bytes)return t.push(this.readFloat());var e=el(this);for(t=t||[];this.pos<e;)t.push(this.readFloat());return t},readPackedDouble:function(t){if(this.type!==tl.Bytes)return t.push(this.readDouble());var e=el(this);for(t=t||[];this.pos<e;)t.push(this.readDouble());return t},readPackedFixed32:function(t){if(this.type!==tl.Bytes)return t.push(this.readFixed32());var e=el(this);for(t=t||[];this.pos<e;)t.push(this.readFixed32());return t},readPackedSFixed32:function(t){if(this.type!==tl.Bytes)return t.push(this.readSFixed32());var e=el(this);for(t=t||[];this.pos<e;)t.push(this.readSFixed32());return t},readPackedFixed64:function(t){if(this.type!==tl.Bytes)return t.push(this.readFixed64());var e=el(this);for(t=t||[];this.pos<e;)t.push(this.readFixed64());return t},readPackedSFixed64:function(t){if(this.type!==tl.Bytes)return t.push(this.readSFixed64());var e=el(this);for(t=t||[];this.pos<e;)t.push(this.readSFixed64());return t},skip:function(t){var e=7&t;if(e===tl.Varint)for(;this.buf[this.pos++]>127;);else if(e===tl.Bytes)this.pos=this.readVarint()+this.pos;else if(e===tl.Fixed32)this.pos+=4;else{if(e!==tl.Fixed64)throw new Error(\"Unimplemented type: \"+e);this.pos+=8}},writeTag:function(t,e){this.writeVarint(t<<3|e)},realloc:function(t){for(var e=this.length||16;e<this.pos+t;)e*=2;if(e!==this.length){var r=new Uint8Array(e);r.set(this.buf),this.buf=r,this.length=e}},finish:function(){return this.length=this.pos,this.pos=0,this.buf.subarray(0,this.length)},writeFixed32:function(t){this.realloc(4),dl(this.buf,t,this.pos),this.pos+=4},writeSFixed32:function(t){this.realloc(4),dl(this.buf,t,this.pos),this.pos+=4},writeFixed64:function(t){this.realloc(8),dl(this.buf,-1&t,this.pos),dl(this.buf,Math.floor(t*(1/4294967296)),this.pos+4),this.pos+=8},writeSFixed64:function(t){this.realloc(8),dl(this.buf,-1&t,this.pos),dl(this.buf,Math.floor(t*(1/4294967296)),this.pos+4),this.pos+=8},writeVarint:function(t){(t=+t||0)>268435455||t<0?function(t,e){var r,n;if(t>=0?(r=t%4294967296|0,n=t/4294967296|0):(n=~(-t/4294967296),4294967295^(r=~(-t%4294967296))?r=r+1|0:(r=0,n=n+1|0)),t>=0x10000000000000000||t<-0x10000000000000000)throw new Error(\"Given varint doesn't fit into 10 bytes\");e.realloc(10),function(t,e,r){r.buf[r.pos++]=127&t|128,t>>>=7,r.buf[r.pos++]=127&t|128,t>>>=7,r.buf[r.pos++]=127&t|128,t>>>=7,r.buf[r.pos++]=127&t|128,t>>>=7,r.buf[r.pos]=127&t}(r,0,e),function(t,e){var r=(7&t)<<4;e.buf[e.pos++]|=r|((t>>>=3)?128:0),t&&(e.buf[e.pos++]=127&t|((t>>>=7)?128:0),t&&(e.buf[e.pos++]=127&t|((t>>>=7)?128:0),t&&(e.buf[e.pos++]=127&t|((t>>>=7)?128:0),t&&(e.buf[e.pos++]=127&t|((t>>>=7)?128:0),t&&(e.buf[e.pos++]=127&t)))))}(n,e)}(t,this):(this.realloc(4),this.buf[this.pos++]=127&t|(t>127?128:0),t<=127||(this.buf[this.pos++]=127&(t>>>=7)|(t>127?128:0),t<=127||(this.buf[this.pos++]=127&(t>>>=7)|(t>127?128:0),t<=127||(this.buf[this.pos++]=t>>>7&127))))},writeSVarint:function(t){this.writeVarint(t<0?2*-t-1:2*t)},writeBoolean:function(t){this.writeVarint(Boolean(t))},writeString:function(t){t=String(t),this.realloc(4*t.length),this.pos++;var e=this.pos;this.pos=function(t,e,r){for(var n,a,i=0;i<e.length;i++){if((n=e.charCodeAt(i))>55295&&n<57344){if(!a){n>56319||i+1===e.length?(t[r++]=239,t[r++]=191,t[r++]=189):a=n;continue}if(n<56320){t[r++]=239,t[r++]=191,t[r++]=189,a=n;continue}n=a-55296<<10|n-56320|65536,a=null}else a&&(t[r++]=239,t[r++]=191,t[r++]=189,a=null);n<128?t[r++]=n:(n<2048?t[r++]=n>>6|192:(n<65536?t[r++]=n>>12|224:(t[r++]=n>>18|240,t[r++]=n>>12&63|128),t[r++]=n>>6&63|128),t[r++]=63&n|128)}return r}(this.buf,t,this.pos);var r=this.pos-e;r>=128&&nl(e,r,this),this.pos=e-1,this.writeVarint(r),this.pos+=r},writeFloat:function(t){this.realloc(4),Qs(this.buf,t,this.pos,!0,23,4),this.pos+=4},writeDouble:function(t){this.realloc(8),Qs(this.buf,t,this.pos,!0,52,8),this.pos+=8},writeBytes:function(t){var e=t.length;this.writeVarint(e),this.realloc(e);for(var r=0;r<e;r++)this.buf[this.pos++]=t[r]},writeRawMessage:function(t,e){this.pos++;var r=this.pos;t(e,this);var n=this.pos-r;n>=128&&nl(r,n,this),this.pos=r-1,this.writeVarint(n),this.pos+=n},writeMessage:function(t,e,r){this.writeTag(t,tl.Bytes),this.writeRawMessage(e,r)},writePackedVarint:function(t,e){e.length&&this.writeMessage(t,al,e)},writePackedSVarint:function(t,e){e.length&&this.writeMessage(t,il,e)},writePackedBoolean:function(t,e){e.length&&this.writeMessage(t,ll,e)},writePackedFloat:function(t,e){e.length&&this.writeMessage(t,ol,e)},writePackedDouble:function(t,e){e.length&&this.writeMessage(t,sl,e)},writePackedFixed32:function(t,e){e.length&&this.writeMessage(t,cl,e)},writePackedSFixed32:function(t,e){e.length&&this.writeMessage(t,ul,e)},writePackedFixed64:function(t,e){e.length&&this.writeMessage(t,hl,e)},writePackedSFixed64:function(t,e){e.length&&this.writeMessage(t,fl,e)},writeBytesField:function(t,e){this.writeTag(t,tl.Bytes),this.writeBytes(e)},writeFixed32Field:function(t,e){this.writeTag(t,tl.Fixed32),this.writeFixed32(e)},writeSFixed32Field:function(t,e){this.writeTag(t,tl.Fixed32),this.writeSFixed32(e)},writeFixed64Field:function(t,e){this.writeTag(t,tl.Fixed64),this.writeFixed64(e)},writeSFixed64Field:function(t,e){this.writeTag(t,tl.Fixed64),this.writeSFixed64(e)},writeVarintField:function(t,e){this.writeTag(t,tl.Varint),this.writeVarint(e)},writeSVarintField:function(t,e){this.writeTag(t,tl.Varint),this.writeSVarint(e)},writeStringField:function(t,e){this.writeTag(t,tl.Bytes),this.writeString(e)},writeFloatField:function(t,e){this.writeTag(t,tl.Fixed32),this.writeFloat(e)},writeDoubleField:function(t,e){this.writeTag(t,tl.Fixed64),this.writeDouble(e)},writeBooleanField:function(t,e){this.writeVarintField(t,Boolean(e))}};var vl=3;function ml(t,e,r){1===t&&r.readMessage(yl,e)}function yl(t,e,r){if(3===t){var n=r.readMessage(xl,{}),a=n.id,i=n.bitmap,o=n.width,s=n.height,l=n.left,c=n.top,u=n.advance;e.push({id:a,bitmap:new Li({width:o+2*vl,height:s+2*vl},i),metrics:{width:o,height:s,left:l,top:c,advance:u}})}}function xl(t,e,r){1===t?e.id=r.readVarint():2===t?e.bitmap=r.readBytes():3===t?e.width=r.readVarint():4===t?e.height=r.readVarint():5===t?e.left=r.readSVarint():6===t?e.top=r.readSVarint():7===t&&(e.advance=r.readVarint())}var bl=vl,_l=function(t){var e=this;this._callback=t,this._triggered=!1,\"undefined\"!=typeof MessageChannel&&(this._channel=new MessageChannel,this._channel.port2.onmessage=function(){e._triggered=!1,e._callback()})};_l.prototype.trigger=function(){var t=this;this._triggered||(this._triggered=!0,this._channel?this._channel.port1.postMessage(!0):setTimeout(function(){t._triggered=!1,t._callback()},0))};var wl=function(t,e,r){this.target=t,this.parent=e,this.mapId=r,this.callbacks={},this.tasks={},this.taskQueue=[],this.cancelCallbacks={},v([\"receive\",\"process\"],this),this.invoker=new _l(this.process),this.target.addEventListener(\"message\",this.receive,!1)};function kl(t,e,r){var n=2*Math.PI*6378137/256/Math.pow(2,r);return[t*n-2*Math.PI*6378137/2,e*n-2*Math.PI*6378137/2]}wl.prototype.send=function(t,e,r,n){var a=this,i=Math.round(1e18*Math.random()).toString(36).substring(0,10);r&&(this.callbacks[i]=r);var o=[];return this.target.postMessage({id:i,type:t,hasCallback:!!r,targetMapId:n,sourceMapId:this.mapId,data:gn(e,o)},o),{cancel:function(){r&&delete a.callbacks[i],a.target.postMessage({id:i,type:\"<cancel>\",targetMapId:n,sourceMapId:a.mapId})}}},wl.prototype.receive=function(t){var e=t.data,r=e.id;if(r&&(!e.targetMapId||this.mapId===e.targetMapId))if(\"<cancel>\"===e.type){delete this.tasks[r];var n=this.cancelCallbacks[r];delete this.cancelCallbacks[r],n&&n()}else this.tasks[r]=e,this.taskQueue.push(r),this.invoker.trigger()},wl.prototype.process=function(){var t=this;if(this.taskQueue.length){var e=this.taskQueue.shift(),r=this.tasks[e];if(delete this.tasks[e],this.taskQueue.length&&this.invoker.trigger(),r)if(\"<response>\"===r.type){var n=this.callbacks[e];delete this.callbacks[e],n&&(r.error?n(vn(r.error)):n(null,vn(r.data)))}else{var a=!1,i=r.hasCallback?function(r,n){a=!0,delete t.cancelCallbacks[e];var i=[];t.target.postMessage({id:e,type:\"<response>\",sourceMapId:t.mapId,error:r?gn(r):null,data:gn(n,i)},i)}:function(t){a=!0},o=null,s=vn(r.data);if(this.parent[r.type])o=this.parent[r.type](r.sourceMapId,s,i);else if(this.parent.getWorkerSource){var l=r.type.split(\".\");o=this.parent.getWorkerSource(r.sourceMapId,l[0],s.source)[l[1]](s,i)}else i(new Error(\"Could not find function \"+r.type));!a&&o&&o.cancel&&(this.cancelCallbacks[e]=o.cancel)}}},wl.prototype.remove=function(){this.target.removeEventListener(\"message\",this.receive,!1)};var Tl=function(t,e){t&&(e?this.setSouthWest(t).setNorthEast(e):4===t.length?this.setSouthWest([t[0],t[1]]).setNorthEast([t[2],t[3]]):this.setSouthWest(t[0]).setNorthEast(t[1]))};Tl.prototype.setNorthEast=function(t){return this._ne=t instanceof Al?new Al(t.lng,t.lat):Al.convert(t),this},Tl.prototype.setSouthWest=function(t){return this._sw=t instanceof Al?new Al(t.lng,t.lat):Al.convert(t),this},Tl.prototype.extend=function(t){var e,r,n=this._sw,a=this._ne;if(t instanceof Al)e=t,r=t;else{if(!(t instanceof Tl))return Array.isArray(t)?t.every(Array.isArray)?this.extend(Tl.convert(t)):this.extend(Al.convert(t)):this;if(e=t._sw,r=t._ne,!e||!r)return this}return n||a?(n.lng=Math.min(e.lng,n.lng),n.lat=Math.min(e.lat,n.lat),a.lng=Math.max(r.lng,a.lng),a.lat=Math.max(r.lat,a.lat)):(this._sw=new Al(e.lng,e.lat),this._ne=new Al(r.lng,r.lat)),this},Tl.prototype.getCenter=function(){return new Al((this._sw.lng+this._ne.lng)/2,(this._sw.lat+this._ne.lat)/2)},Tl.prototype.getSouthWest=function(){return this._sw},Tl.prototype.getNorthEast=function(){return this._ne},Tl.prototype.getNorthWest=function(){return new Al(this.getWest(),this.getNorth())},Tl.prototype.getSouthEast=function(){return new Al(this.getEast(),this.getSouth())},Tl.prototype.getWest=function(){return this._sw.lng},Tl.prototype.getSouth=function(){return this._sw.lat},Tl.prototype.getEast=function(){return this._ne.lng},Tl.prototype.getNorth=function(){return this._ne.lat},Tl.prototype.toArray=function(){return[this._sw.toArray(),this._ne.toArray()]},Tl.prototype.toString=function(){return\"LngLatBounds(\"+this._sw.toString()+\", \"+this._ne.toString()+\")\"},Tl.prototype.isEmpty=function(){return!(this._sw&&this._ne)},Tl.convert=function(t){return!t||t instanceof Tl?t:new Tl(t)};var Al=function(t,e){if(isNaN(t)||isNaN(e))throw new Error(\"Invalid LngLat object: (\"+t+\", \"+e+\")\");if(this.lng=+t,this.lat=+e,this.lat>90||this.lat<-90)throw new Error(\"Invalid LngLat latitude value: must be between -90 and 90\")};Al.prototype.wrap=function(){return new Al(u(this.lng,-180,180),this.lat)},Al.prototype.toArray=function(){return[this.lng,this.lat]},Al.prototype.toString=function(){return\"LngLat(\"+this.lng+\", \"+this.lat+\")\"},Al.prototype.toBounds=function(t){void 0===t&&(t=0);var e=360*t/40075017,r=e/Math.cos(Math.PI/180*this.lat);return new Tl(new Al(this.lng-r,this.lat-e),new Al(this.lng+r,this.lat+e))},Al.convert=function(t){if(t instanceof Al)return t;if(Array.isArray(t)&&(2===t.length||3===t.length))return new Al(Number(t[0]),Number(t[1]));if(!Array.isArray(t)&&\"object\"==typeof t&&null!==t)return new Al(Number(\"lng\"in t?t.lng:t.lon),Number(t.lat));throw new Error(\"`LngLatLike` argument must be specified as a LngLat instance, an object {lng: <lng>, lat: <lat>}, an object {lon: <lng>, lat: <lat>}, or an array of [<lng>, <lat>]\")};var Ml=2*Math.PI*6378137;function Sl(t){return Ml*Math.cos(t*Math.PI/180)}function El(t){return(180+t)/360}function Cl(t){return(180-180/Math.PI*Math.log(Math.tan(Math.PI/4+t*Math.PI/360)))/360}function Ll(t,e){return t/Sl(e)}function Pl(t){var e=180-360*t;return 360/Math.PI*Math.atan(Math.exp(e*Math.PI/180))-90}var Ol=function(t,e,r){void 0===r&&(r=0),this.x=+t,this.y=+e,this.z=+r};Ol.fromLngLat=function(t,e){void 0===e&&(e=0);var r=Al.convert(t);return new Ol(El(r.lng),Cl(r.lat),Ll(e,r.lat))},Ol.prototype.toLngLat=function(){return new Al(360*this.x-180,Pl(this.y))},Ol.prototype.toAltitude=function(){return this.z*Sl(Pl(this.y))},Ol.prototype.meterInMercatorCoordinateUnits=function(){return 1/Ml*(t=Pl(this.y),1/Math.cos(t*Math.PI/180));var t};var Il=function(t,e,r){this.z=t,this.x=e,this.y=r,this.key=Rl(0,t,e,r)};Il.prototype.equals=function(t){return this.z===t.z&&this.x===t.x&&this.y===t.y},Il.prototype.url=function(t,e){var r,n,a,i,o,s=(r=this.x,n=this.y,a=this.z,i=kl(256*r,256*(n=Math.pow(2,a)-n-1),a),o=kl(256*(r+1),256*(n+1),a),i[0]+\",\"+i[1]+\",\"+o[0]+\",\"+o[1]),l=function(t,e,r){for(var n,a=\"\",i=t;i>0;i--)a+=(e&(n=1<<i-1)?1:0)+(r&n?2:0);return a}(this.z,this.x,this.y);return t[(this.x+this.y)%t.length].replace(\"{prefix}\",(this.x%16).toString(16)+(this.y%16).toString(16)).replace(\"{z}\",String(this.z)).replace(\"{x}\",String(this.x)).replace(\"{y}\",String(\"tms\"===e?Math.pow(2,this.z)-this.y-1:this.y)).replace(\"{quadkey}\",l).replace(\"{bbox-epsg-3857}\",s)},Il.prototype.getTilePoint=function(t){var e=Math.pow(2,this.z);return new a((t.x*e-this.x)*ti,(t.y*e-this.y)*ti)};var zl=function(t,e){this.wrap=t,this.canonical=e,this.key=Rl(t,e.z,e.x,e.y)},Dl=function(t,e,r,n,a){this.overscaledZ=t,this.wrap=e,this.canonical=new Il(r,+n,+a),this.key=Rl(e,t,n,a)};function Rl(t,e,r,n){(t*=2)<0&&(t=-1*t-1);var a=1<<e;return 32*(a*a*t+a*n+r)+e}Dl.prototype.equals=function(t){return this.overscaledZ===t.overscaledZ&&this.wrap===t.wrap&&this.canonical.equals(t.canonical)},Dl.prototype.scaledTo=function(t){var e=this.canonical.z-t;return t>this.canonical.z?new Dl(t,this.wrap,this.canonical.z,this.canonical.x,this.canonical.y):new Dl(t,this.wrap,t,this.canonical.x>>e,this.canonical.y>>e)},Dl.prototype.isChildOf=function(t){if(t.wrap!==this.wrap)return!1;var e=this.canonical.z-t.canonical.z;return 0===t.overscaledZ||t.overscaledZ<this.overscaledZ&&t.canonical.x===this.canonical.x>>e&&t.canonical.y===this.canonical.y>>e},Dl.prototype.children=function(t){if(this.overscaledZ>=t)return[new Dl(this.overscaledZ+1,this.wrap,this.canonical.z,this.canonical.x,this.canonical.y)];var e=this.canonical.z+1,r=2*this.canonical.x,n=2*this.canonical.y;return[new Dl(e,this.wrap,e,r,n),new Dl(e,this.wrap,e,r+1,n),new Dl(e,this.wrap,e,r,n+1),new Dl(e,this.wrap,e,r+1,n+1)]},Dl.prototype.isLessThan=function(t){return this.wrap<t.wrap||!(this.wrap>t.wrap)&&(this.overscaledZ<t.overscaledZ||!(this.overscaledZ>t.overscaledZ)&&(this.canonical.x<t.canonical.x||!(this.canonical.x>t.canonical.x)&&this.canonical.y<t.canonical.y))},Dl.prototype.wrapped=function(){return new Dl(this.overscaledZ,0,this.canonical.z,this.canonical.x,this.canonical.y)},Dl.prototype.unwrapTo=function(t){return new Dl(this.overscaledZ,t,this.canonical.z,this.canonical.x,this.canonical.y)},Dl.prototype.overscaleFactor=function(){return Math.pow(2,this.overscaledZ-this.canonical.z)},Dl.prototype.toUnwrapped=function(){return new zl(this.wrap,this.canonical)},Dl.prototype.toString=function(){return this.overscaledZ+\"/\"+this.canonical.x+\"/\"+this.canonical.y},Dl.prototype.getTilePoint=function(t){return this.canonical.getTilePoint(new Ol(t.x-this.wrap,t.y))},pn(\"CanonicalTileID\",Il),pn(\"OverscaledTileID\",Dl,{omit:[\"posMatrix\"]});var Fl=function(t,e,r){if(this.uid=t,e.height!==e.width)throw new RangeError(\"DEM tiles must be square\");if(r&&\"mapbox\"!==r&&\"terrarium\"!==r)return w('\"'+r+'\" is not a valid encoding type. Valid types include \"mapbox\" and \"terrarium\".');var n=this.dim=e.height;this.stride=this.dim+2,this.data=new Int32Array(this.stride*this.stride);for(var a=e.data,i=\"terrarium\"===r?this._unpackTerrarium:this._unpackMapbox,o=0;o<n;o++)for(var s=0;s<n;s++){var l=4*(o*n+s);this.set(s,o,i(a[l],a[l+1],a[l+2]))}for(var c=0;c<n;c++)this.set(-1,c,this.get(0,c)),this.set(n,c,this.get(n-1,c)),this.set(c,-1,this.get(c,0)),this.set(c,n,this.get(c,n-1));this.set(-1,-1,this.get(0,0)),this.set(n,-1,this.get(n-1,0)),this.set(-1,n,this.get(0,n-1)),this.set(n,n,this.get(n-1,n-1))};Fl.prototype.set=function(t,e,r){this.data[this._idx(t,e)]=r+65536},Fl.prototype.get=function(t,e){return this.data[this._idx(t,e)]-65536},Fl.prototype._idx=function(t,e){if(t<-1||t>=this.dim+1||e<-1||e>=this.dim+1)throw new RangeError(\"out of range source coordinates for DEM data\");return(e+1)*this.stride+(t+1)},Fl.prototype._unpackMapbox=function(t,e,r){return(256*t*256+256*e+r)/10-1e4},Fl.prototype._unpackTerrarium=function(t,e,r){return 256*t+e+r/256-32768},Fl.prototype.getPixels=function(){return new Pi({width:this.stride,height:this.stride},new Uint8Array(this.data.buffer))},Fl.prototype.backfillBorder=function(t,e,r){if(this.dim!==t.dim)throw new Error(\"dem dimension mismatch\");var n=e*this.dim,a=e*this.dim+this.dim,i=r*this.dim,o=r*this.dim+this.dim;switch(e){case-1:n=a-1;break;case 1:a=n+1}switch(r){case-1:i=o-1;break;case 1:o=i+1}for(var s=-e*this.dim,l=-r*this.dim,c=i;c<o;c++)for(var u=n;u<a;u++)this.set(u,c,t.get(u+s,c+l))},pn(\"DEMData\",Fl);var Bl=Zn([{name:\"a_pos\",type:\"Int16\",components:2},{name:\"a_texture_pos\",type:\"Int16\",components:2}]),Nl=function(t){this._stringToNumber={},this._numberToString=[];for(var e=0;e<t.length;e++){var r=t[e];this._stringToNumber[r]=e,this._numberToString[e]=r}};Nl.prototype.encode=function(t){return this._stringToNumber[t]},Nl.prototype.decode=function(t){return this._numberToString[t]};var jl=function(t,e,r,n){this.type=\"Feature\",this._vectorTileFeature=t,t._z=e,t._x=r,t._y=n,this.properties=t.properties,null!=t.id&&(this.id=t.id)},Vl={geometry:{configurable:!0}};Vl.geometry.get=function(){return void 0===this._geometry&&(this._geometry=this._vectorTileFeature.toGeoJSON(this._vectorTileFeature._x,this._vectorTileFeature._y,this._vectorTileFeature._z).geometry),this._geometry},Vl.geometry.set=function(t){this._geometry=t},jl.prototype.toJSON=function(){var t={geometry:this.geometry};for(var e in this)\"_geometry\"!==e&&\"_vectorTileFeature\"!==e&&(t[e]=this[e]);return t},Object.defineProperties(jl.prototype,Vl);var Ul=function(){this.state={},this.stateChanges={},this.deletedStates={}};Ul.prototype.updateState=function(t,e,r){var n=String(e);if(this.stateChanges[t]=this.stateChanges[t]||{},this.stateChanges[t][n]=this.stateChanges[t][n]||{},h(this.stateChanges[t][n],r),null===this.deletedStates[t])for(var a in this.deletedStates[t]={},this.state[t])a!==n&&(this.deletedStates[t][a]=null);else if(this.deletedStates[t]&&null===this.deletedStates[t][n])for(var i in this.deletedStates[t][n]={},this.state[t][n])r[i]||(this.deletedStates[t][n][i]=null);else for(var o in r)this.deletedStates[t]&&this.deletedStates[t][n]&&null===this.deletedStates[t][n][o]&&delete this.deletedStates[t][n][o]},Ul.prototype.removeFeatureState=function(t,e,r){if(null!==this.deletedStates[t]){var n=String(e);if(this.deletedStates[t]=this.deletedStates[t]||{},r&&void 0!==e&&e>=0)null!==this.deletedStates[t][n]&&(this.deletedStates[t][n]=this.deletedStates[t][n]||{},this.deletedStates[t][n][r]=null);else if(void 0!==e&&e>=0)if(this.stateChanges[t]&&this.stateChanges[t][n])for(r in this.deletedStates[t][n]={},this.stateChanges[t][n])this.deletedStates[t][n][r]=null;else this.deletedStates[t][n]=null;else this.deletedStates[t]=null}},Ul.prototype.getState=function(t,e){var r=String(e),n=this.state[t]||{},a=this.stateChanges[t]||{},i=h({},n[r],a[r]);if(null===this.deletedStates[t])return{};if(this.deletedStates[t]){var o=this.deletedStates[t][e];if(null===o)return{};for(var s in o)delete i[s]}return i},Ul.prototype.initializeTileState=function(t,e){t.setFeatureState(this.state,e)},Ul.prototype.coalesceChanges=function(t,e){var r={};for(var n in this.stateChanges){this.state[n]=this.state[n]||{};var a={};for(var i in this.stateChanges[n])this.state[n][i]||(this.state[n][i]={}),h(this.state[n][i],this.stateChanges[n][i]),a[i]=this.state[n][i];r[n]=a}for(var o in this.deletedStates){this.state[o]=this.state[o]||{};var s={};if(null===this.deletedStates[o])for(var l in this.state[o])s[l]={},this.state[o][l]={};else for(var c in this.deletedStates[o]){if(null===this.deletedStates[o][c])this.state[o][c]={};else for(var u=0,f=Object.keys(this.deletedStates[o][c]);u<f.length;u+=1){var p=f[u];delete this.state[o][c][p]}s[c]=this.state[o][c]}r[o]=r[o]||{},h(r[o],s)}if(this.stateChanges={},this.deletedStates={},0!==Object.keys(r).length)for(var d in t)t[d].setFeatureState(r,e)};var ql=function(t,e,r){this.tileID=t,this.x=t.canonical.x,this.y=t.canonical.y,this.z=t.canonical.z,this.grid=e||new ln(ti,16,0),this.grid3D=new ln(ti,16,0),this.featureIndexArray=r||new Ca};function Hl(t){for(var e=1/0,r=1/0,n=-1/0,a=-1/0,i=0,o=t;i<o.length;i+=1){var s=o[i];e=Math.min(e,s.x),r=Math.min(r,s.y),n=Math.max(n,s.x),a=Math.max(a,s.y)}return{minX:e,minY:r,maxX:n,maxY:a}}function Gl(t,e){return e-t}ql.prototype.insert=function(t,e,r,n,a,i){var o=this.featureIndexArray.length;this.featureIndexArray.emplaceBack(r,n,a);for(var s=i?this.grid3D:this.grid,l=0;l<e.length;l++){for(var c=e[l],u=[1/0,1/0,-1/0,-1/0],h=0;h<c.length;h++){var f=c[h];u[0]=Math.min(u[0],f.x),u[1]=Math.min(u[1],f.y),u[2]=Math.max(u[2],f.x),u[3]=Math.max(u[3],f.y)}u[0]<ti&&u[1]<ti&&u[2]>=0&&u[3]>=0&&s.insert(o,u[0],u[1],u[2],u[3])}},ql.prototype.loadVTLayers=function(){return this.vtLayers||(this.vtLayers=new Io.VectorTile(new $s(this.rawTileData)).layers,this.sourceLayerCoder=new Nl(this.vtLayers?Object.keys(this.vtLayers).sort():[\"_geojsonTileLayer\"])),this.vtLayers},ql.prototype.query=function(t,e,r){var n=this;this.loadVTLayers();for(var i=t.params||{},o=ti/t.tileSize/t.scale,s=Dr(i.filter),l=t.queryGeometry,c=t.queryPadding*o,u=Hl(l),h=this.grid.query(u.minX-c,u.minY-c,u.maxX+c,u.maxY+c),f=Hl(t.cameraQueryGeometry),p=0,d=this.grid3D.query(f.minX-c,f.minY-c,f.maxX+c,f.maxY+c,function(e,r,n,i){return function(t,e,r,n,i){for(var o=0,s=t;o<s.length;o+=1){var l=s[o];if(e<=l.x&&r<=l.y&&n>=l.x&&i>=l.y)return!0}var c=[new a(e,r),new a(e,i),new a(n,i),new a(n,r)];if(t.length>2)for(var u=0,h=c;u<h.length;u+=1)if(di(t,h[u]))return!0;for(var f=0;f<t.length-1;f++)if(gi(t[f],t[f+1],c))return!0;return!1}(t.cameraQueryGeometry,e-c,r-c,n+c,i+c)});p<d.length;p+=1){var g=d[p];h.push(g)}h.sort(Gl);for(var v,m={},y=function(a){var c=h[a];if(c!==v){v=c;var u=n.featureIndexArray.get(c),f=null;n.loadMatchingFeature(m,u.bucketIndex,u.sourceLayerIndex,u.featureIndex,s,i.layers,e,function(e,a){f||(f=ri(e));var i={};return e.id&&(i=r.getState(a.sourceLayer||\"_geojsonTileLayer\",e.id)),a.queryIntersectsFeature(l,e,i,f,n.z,t.transform,o,t.pixelPosMatrix)})}},x=0;x<h.length;x++)y(x);return m},ql.prototype.loadMatchingFeature=function(t,e,r,n,a,i,o,s){var l=this.bucketLayerIDs[e];if(!i||function(t,e){for(var r=0;r<t.length;r++)if(e.indexOf(t[r])>=0)return!0;return!1}(i,l)){var c=this.sourceLayerCoder.decode(r),u=this.vtLayers[c].feature(n);if(a(new Ln(this.tileID.overscaledZ),u))for(var h=0;h<l.length;h++){var f=l[h];if(!(i&&i.indexOf(f)<0)){var p=o[f];if(p){var d=!s||s(u,p);if(d){var g=new jl(u,this.z,this.x,this.y);g.layer=p.serialize();var v=t[f];void 0===v&&(v=t[f]=[]),v.push({featureIndex:n,feature:g,intersectionZ:d})}}}}}},ql.prototype.lookupSymbolFeatures=function(t,e,r,n,a,i){var o={};this.loadVTLayers();for(var s=Dr(n),l=0,c=t;l<c.length;l+=1){var u=c[l];this.loadMatchingFeature(o,e,r,u,s,a,i)}return o},ql.prototype.hasLayer=function(t){for(var e=0,r=this.bucketLayerIDs;e<r.length;e+=1)for(var n=0,a=r[e];n<a.length;n+=1)if(t===a[n])return!0;return!1},pn(\"FeatureIndex\",ql,{omit:[\"rawTileData\",\"sourceLayerCoder\"]});var Yl=function(t,e){this.tileID=t,this.uid=p(),this.uses=0,this.tileSize=e,this.buckets={},this.expirationTime=null,this.queryPadding=0,this.hasSymbolBuckets=!1,this.expiredRequestCount=0,this.state=\"loading\"};function Wl(t,e,r,n,a){if(void 0===e.segment)return!0;for(var i=e,o=e.segment+1,s=0;s>-r/2;){if(--o<0)return!1;s-=t[o].dist(i),i=t[o]}s+=t[o].dist(t[o+1]),o++;for(var l=[],c=0;s<r/2;){var u=t[o-1],h=t[o],f=t[o+1];if(!f)return!1;var p=u.angleTo(h)-h.angleTo(f);for(p=Math.abs((p+3*Math.PI)%(2*Math.PI)-Math.PI),l.push({distance:s,angleDelta:p}),c+=p;s-l[0].distance>n;)c-=l.shift().angleDelta;if(c>a)return!1;o++,s+=h.dist(f)}return!0}function Xl(t){for(var e=0,r=0;r<t.length-1;r++)e+=t[r].dist(t[r+1]);return e}function Zl(t,e,r){return t?.6*e*r:0}function Jl(t,e){return Math.max(t?t.right-t.left:0,e?e.right-e.left:0)}function Kl(t,e,r,n,a,i){for(var o=Zl(r,a,i),s=Jl(r,n)*i,l=0,c=Xl(t)/2,u=0;u<t.length-1;u++){var h=t[u],f=t[u+1],p=h.dist(f);if(l+p>c){var d=(c-l)/p,g=ye(h.x,f.x,d),v=ye(h.y,f.y,d),m=new xs(g,v,f.angleTo(h),u);return m._round(),!o||Wl(t,m,s,o,e)?m:void 0}l+=p}}function Ql(t,e,r,n,a,i,o,s,l){var c=Zl(n,i,o),u=Jl(n,a),h=u*o,f=0===t[0].x||t[0].x===l||0===t[0].y||t[0].y===l;return e-h<e/4&&(e=h+e/4),function t(e,r,n,a,i,o,s,l,c){for(var u=o/2,h=Xl(e),f=0,p=r-n,d=[],g=0;g<e.length-1;g++){for(var v=e[g],m=e[g+1],y=v.dist(m),x=m.angleTo(v);p+n<f+y;){var b=((p+=n)-f)/y,_=ye(v.x,m.x,b),w=ye(v.y,m.y,b);if(_>=0&&_<c&&w>=0&&w<c&&p-u>=0&&p+u<=h){var k=new xs(_,w,x,g);k._round(),a&&!Wl(e,k,o,a,i)||d.push(k)}}f+=y}return l||d.length||s||(d=t(e,f/2,n,a,i,o,s,!0,c)),d}(t,f?e/2*s%e:(u/2+2*i)*o*s%e,e,c,r,h,f,!1,l)}Yl.prototype.registerFadeDuration=function(t){var e=t+this.timeAdded;e<z.now()||this.fadeEndTime&&e<this.fadeEndTime||(this.fadeEndTime=e)},Yl.prototype.wasRequested=function(){return\"errored\"===this.state||\"loaded\"===this.state||\"reloading\"===this.state},Yl.prototype.loadVectorData=function(t,e,r){if(this.hasData()&&this.unloadVectorData(),this.state=\"loaded\",t){for(var n in t.featureIndex&&(this.latestFeatureIndex=t.featureIndex,t.rawTileData?(this.latestRawTileData=t.rawTileData,this.latestFeatureIndex.rawTileData=t.rawTileData):this.latestRawTileData&&(this.latestFeatureIndex.rawTileData=this.latestRawTileData)),this.collisionBoxArray=t.collisionBoxArray,this.buckets=function(t,e){var r={};if(!e)return r;for(var n=function(){var t=i[a],n=t.layerIds.map(function(t){return e.getLayer(t)}).filter(Boolean);if(0!==n.length){t.layers=n,t.stateDependentLayerIds&&(t.stateDependentLayers=t.stateDependentLayerIds.map(function(t){return n.filter(function(e){return e.id===t})[0]}));for(var o=0,s=n;o<s.length;o+=1){var l=s[o];r[l.id]=t}}},a=0,i=t;a<i.length;a+=1)n();return r}(t.buckets,e.style),this.hasSymbolBuckets=!1,this.buckets){var a=this.buckets[n];if(a instanceof Ps){if(this.hasSymbolBuckets=!0,!r)break;a.justReloaded=!0}}for(var i in this.queryPadding=0,this.buckets){var o=this.buckets[i];this.queryPadding=Math.max(this.queryPadding,e.style.getLayer(i).queryRadius(o))}t.imageAtlas&&(this.imageAtlas=t.imageAtlas),t.glyphAtlasImage&&(this.glyphAtlasImage=t.glyphAtlasImage)}else this.collisionBoxArray=new xa},Yl.prototype.unloadVectorData=function(){for(var t in this.buckets)this.buckets[t].destroy();this.buckets={},this.imageAtlasTexture&&this.imageAtlasTexture.destroy(),this.imageAtlas&&(this.imageAtlas=null),this.glyphAtlasTexture&&this.glyphAtlasTexture.destroy(),this.latestFeatureIndex=null,this.state=\"unloaded\"},Yl.prototype.unloadDEMData=function(){this.dem=null,this.neighboringTiles=null,this.state=\"unloaded\"},Yl.prototype.getBucket=function(t){return this.buckets[t.id]},Yl.prototype.upload=function(t){for(var e in this.buckets){var r=this.buckets[e];r.uploadPending()&&r.upload(t)}var n=t.gl;this.imageAtlas&&!this.imageAtlas.uploaded&&(this.imageAtlasTexture=new Js(t,this.imageAtlas.image,n.RGBA),this.imageAtlas.uploaded=!0),this.glyphAtlasImage&&(this.glyphAtlasTexture=new Js(t,this.glyphAtlasImage,n.ALPHA),this.glyphAtlasImage=null)},Yl.prototype.prepare=function(t){this.imageAtlas&&this.imageAtlas.patchUpdatedImages(t,this.imageAtlasTexture)},Yl.prototype.queryRenderedFeatures=function(t,e,r,n,a,i,o,s,l){return this.latestFeatureIndex&&this.latestFeatureIndex.rawTileData?this.latestFeatureIndex.query({queryGeometry:r,cameraQueryGeometry:n,scale:a,tileSize:this.tileSize,pixelPosMatrix:l,transform:o,params:i,queryPadding:this.queryPadding*s},t,e):{}},Yl.prototype.querySourceFeatures=function(t,e){if(this.latestFeatureIndex&&this.latestFeatureIndex.rawTileData){var r=this.latestFeatureIndex.loadVTLayers(),n=e?e.sourceLayer:\"\",a=r._geojsonTileLayer||r[n];if(a)for(var i=Dr(e&&e.filter),o=this.tileID.canonical,s=o.z,l=o.x,c=o.y,u={z:s,x:l,y:c},h=0;h<a.length;h++){var f=a.feature(h);if(i(new Ln(this.tileID.overscaledZ),f)){var p=new jl(f,s,l,c);p.tile=u,t.push(p)}}}},Yl.prototype.clearMask=function(){this.segments&&(this.segments.destroy(),delete this.segments),this.maskedBoundsBuffer&&(this.maskedBoundsBuffer.destroy(),delete this.maskedBoundsBuffer),this.maskedIndexBuffer&&(this.maskedIndexBuffer.destroy(),delete this.maskedIndexBuffer)},Yl.prototype.setMask=function(t,e){if(!o(this.mask,t)&&(this.mask=t,this.clearMask(),!o(t,{0:!0}))){var r=new Qn,n=new pa;this.segments=new Pa,this.segments.prepareSegment(0,r,n);for(var i=Object.keys(t),s=0;s<i.length;s++){var l=t[+i[s]],c=ti>>l.z,u=new a(l.x*c,l.y*c),h=new a(u.x+c,u.y+c),f=this.segments.prepareSegment(4,r,n);r.emplaceBack(u.x,u.y,u.x,u.y),r.emplaceBack(h.x,u.y,h.x,u.y),r.emplaceBack(u.x,h.y,u.x,h.y),r.emplaceBack(h.x,h.y,h.x,h.y);var p=f.vertexLength;n.emplaceBack(p,p+1,p+2),n.emplaceBack(p+1,p+2,p+3),f.vertexLength+=4,f.primitiveLength+=2}this.maskedBoundsBuffer=e.createVertexBuffer(r,Bl.members),this.maskedIndexBuffer=e.createIndexBuffer(n)}},Yl.prototype.hasData=function(){return\"loaded\"===this.state||\"reloading\"===this.state||\"expired\"===this.state},Yl.prototype.patternsLoaded=function(){return this.imageAtlas&&!!Object.keys(this.imageAtlas.patternPositions).length},Yl.prototype.setExpiryData=function(t){var e=this.expirationTime;if(t.cacheControl){var r=A(t.cacheControl);r[\"max-age\"]&&(this.expirationTime=Date.now()+1e3*r[\"max-age\"])}else t.expires&&(this.expirationTime=new Date(t.expires).getTime());if(this.expirationTime){var n=Date.now(),a=!1;if(this.expirationTime>n)a=!1;else if(e)if(this.expirationTime<e)a=!0;else{var i=this.expirationTime-e;i?this.expirationTime=n+Math.max(i,3e4):a=!0}else a=!0;a?(this.expiredRequestCount++,this.state=\"expired\"):this.expiredRequestCount=0}},Yl.prototype.getExpiryTimeout=function(){if(this.expirationTime)return this.expiredRequestCount?1e3*(1<<Math.min(this.expiredRequestCount-1,31)):Math.min(this.expirationTime-(new Date).getTime(),Math.pow(2,31)-1)},Yl.prototype.setFeatureState=function(t,e){if(this.latestFeatureIndex&&this.latestFeatureIndex.rawTileData&&0!==Object.keys(t).length){var r=this.latestFeatureIndex.loadVTLayers();for(var n in this.buckets){var a=this.buckets[n],i=a.layers[0].sourceLayer||\"_geojsonTileLayer\",o=r[i],s=t[i];o&&s&&0!==Object.keys(s).length&&(a.update(s,o,this.imageAtlas&&this.imageAtlas.patternPositions||{}),e&&e.style&&(this.queryPadding=Math.max(this.queryPadding,e.style.getLayer(n).queryRadius(a))))}}},Yl.prototype.holdingForFade=function(){return void 0!==this.symbolFadeHoldUntil},Yl.prototype.symbolFadeFinished=function(){return!this.symbolFadeHoldUntil||this.symbolFadeHoldUntil<z.now()},Yl.prototype.clearFadeHold=function(){this.symbolFadeHoldUntil=void 0},Yl.prototype.setHoldDuration=function(t){this.symbolFadeHoldUntil=z.now()+t};var $l=function(t,e,r,n,i,o,s,l,c,u,h,f){var p=s.top*l-c,d=s.bottom*l+c,g=s.left*l-c,v=s.right*l+c;if(this.boxStartIndex=t.length,u){var m=d-p,y=v-g;m>0&&(m=Math.max(10*l,m),this._addLineCollisionCircles(t,e,r,r.segment,y,m,n,i,o,h))}else{if(f){var x=new a(g,p),b=new a(v,p),_=new a(g,d),w=new a(v,d),k=f*Math.PI/180;x._rotate(k),b._rotate(k),_._rotate(k),w._rotate(k),g=Math.min(x.x,b.x,_.x,w.x),v=Math.max(x.x,b.x,_.x,w.x),p=Math.min(x.y,b.y,_.y,w.y),d=Math.max(x.y,b.y,_.y,w.y)}t.emplaceBack(r.x,r.y,g,p,v,d,n,i,o,0,0)}this.boxEndIndex=t.length};$l.prototype._addLineCollisionCircles=function(t,e,r,n,a,i,o,s,l,c){var u=i/2,h=Math.floor(a/u)||1,f=1+.4*Math.log(c)/Math.LN2,p=Math.floor(h*f/2),d=-i/2,g=r,v=n+1,m=d,y=-a/2,x=y-a/4;do{if(--v<0){if(m>y)return;v=0;break}m-=e[v].dist(g),g=e[v]}while(m>x);for(var b=e[v].dist(e[v+1]),_=-p;_<h+p;_++){var w=_*u,k=y+w;if(w<0&&(k+=w),w>a&&(k+=w-a),!(k<m)){for(;m+b<k;){if(m+=b,++v+1>=e.length)return;b=e[v].dist(e[v+1])}var T=k-m,A=e[v],M=e[v+1].sub(A)._unit()._mult(T)._add(A)._round(),S=Math.abs(k-d)<u?0:.8*(k-d);t.emplaceBack(M.x,M.y,-i/2,-i/2,i/2,i/2,o,s,l,i/2,S)}}};var tc=function(t,e){if(void 0===t&&(t=[]),void 0===e&&(e=ec),this.data=t,this.length=this.data.length,this.compare=e,this.length>0)for(var r=(this.length>>1)-1;r>=0;r--)this._down(r)};function ec(t,e){return t<e?-1:t>e?1:0}function rc(t,e,r){void 0===e&&(e=1),void 0===r&&(r=!1);for(var n=1/0,i=1/0,o=-1/0,s=-1/0,l=t[0],c=0;c<l.length;c++){var u=l[c];(!c||u.x<n)&&(n=u.x),(!c||u.y<i)&&(i=u.y),(!c||u.x>o)&&(o=u.x),(!c||u.y>s)&&(s=u.y)}var h=o-n,f=s-i,p=Math.min(h,f),d=p/2,g=new tc([],nc);if(0===p)return new a(n,i);for(var v=n;v<o;v+=p)for(var m=i;m<s;m+=p)g.push(new ac(v+d,m+d,d,t));for(var y=function(t){for(var e=0,r=0,n=0,a=t[0],i=0,o=a.length,s=o-1;i<o;s=i++){var l=a[i],c=a[s],u=l.x*c.y-c.x*l.y;r+=(l.x+c.x)*u,n+=(l.y+c.y)*u,e+=3*u}return new ac(r/e,n/e,0,t)}(t),x=g.length;g.length;){var b=g.pop();(b.d>y.d||!y.d)&&(y=b,r&&console.log(\"found best %d after %d probes\",Math.round(1e4*b.d)/1e4,x)),b.max-y.d<=e||(d=b.h/2,g.push(new ac(b.p.x-d,b.p.y-d,d,t)),g.push(new ac(b.p.x+d,b.p.y-d,d,t)),g.push(new ac(b.p.x-d,b.p.y+d,d,t)),g.push(new ac(b.p.x+d,b.p.y+d,d,t)),x+=4)}return r&&(console.log(\"num probes: \"+x),console.log(\"best distance: \"+y.d)),y.p}function nc(t,e){return e.max-t.max}function ac(t,e,r,n){this.p=new a(t,e),this.h=r,this.d=function(t,e){for(var r=!1,n=1/0,a=0;a<e.length;a++)for(var i=e[a],o=0,s=i.length,l=s-1;o<s;l=o++){var c=i[o],u=i[l];c.y>t.y!=u.y>t.y&&t.x<(u.x-c.x)*(t.y-c.y)/(u.y-c.y)+c.x&&(r=!r),n=Math.min(n,fi(t,c,u))}return(r?1:-1)*Math.sqrt(n)}(this.p,n),this.max=this.d+this.h*Math.SQRT2}tc.prototype.push=function(t){this.data.push(t),this.length++,this._up(this.length-1)},tc.prototype.pop=function(){if(0!==this.length){var t=this.data[0],e=this.data.pop();return this.length--,this.length>0&&(this.data[0]=e,this._down(0)),t}},tc.prototype.peek=function(){return this.data[0]},tc.prototype._up=function(t){for(var e=this.data,r=this.compare,n=e[t];t>0;){var a=t-1>>1,i=e[a];if(r(n,i)>=0)break;e[t]=i,t=a}e[t]=n},tc.prototype._down=function(t){for(var e=this.data,r=this.compare,n=this.length>>1,a=e[t];t<n;){var i=1+(t<<1),o=e[i],s=i+1;if(s<this.length&&r(e[s],o)<0&&(i=s,o=e[s]),r(o,a)>=0)break;e[t]=o,t=i}e[t]=a};var ic=e(function(t){t.exports=function(t,e){var r,n,a,i,o,s,l,c;for(r=3&t.length,n=t.length-r,a=e,o=3432918353,s=461845907,c=0;c<n;)l=255&t.charCodeAt(c)|(255&t.charCodeAt(++c))<<8|(255&t.charCodeAt(++c))<<16|(255&t.charCodeAt(++c))<<24,++c,a=27492+(65535&(i=5*(65535&(a=(a^=l=(65535&(l=(l=(65535&l)*o+(((l>>>16)*o&65535)<<16)&4294967295)<<15|l>>>17))*s+(((l>>>16)*s&65535)<<16)&4294967295)<<13|a>>>19))+((5*(a>>>16)&65535)<<16)&4294967295))+((58964+(i>>>16)&65535)<<16);switch(l=0,r){case 3:l^=(255&t.charCodeAt(c+2))<<16;case 2:l^=(255&t.charCodeAt(c+1))<<8;case 1:a^=l=(65535&(l=(l=(65535&(l^=255&t.charCodeAt(c)))*o+(((l>>>16)*o&65535)<<16)&4294967295)<<15|l>>>17))*s+(((l>>>16)*s&65535)<<16)&4294967295}return a^=t.length,a=2246822507*(65535&(a^=a>>>16))+((2246822507*(a>>>16)&65535)<<16)&4294967295,a=3266489909*(65535&(a^=a>>>13))+((3266489909*(a>>>16)&65535)<<16)&4294967295,(a^=a>>>16)>>>0}}),oc=e(function(t){t.exports=function(t,e){for(var r,n=t.length,a=e^n,i=0;n>=4;)r=1540483477*(65535&(r=255&t.charCodeAt(i)|(255&t.charCodeAt(++i))<<8|(255&t.charCodeAt(++i))<<16|(255&t.charCodeAt(++i))<<24))+((1540483477*(r>>>16)&65535)<<16),a=1540483477*(65535&a)+((1540483477*(a>>>16)&65535)<<16)^(r=1540483477*(65535&(r^=r>>>24))+((1540483477*(r>>>16)&65535)<<16)),n-=4,++i;switch(n){case 3:a^=(255&t.charCodeAt(i+2))<<16;case 2:a^=(255&t.charCodeAt(i+1))<<8;case 1:a=1540483477*(65535&(a^=255&t.charCodeAt(i)))+((1540483477*(a>>>16)&65535)<<16)}return a=1540483477*(65535&(a^=a>>>13))+((1540483477*(a>>>16)&65535)<<16),(a^=a>>>15)>>>0}}),sc=ic,lc=ic,cc=oc;sc.murmur3=lc,sc.murmur2=cc;var uc=7;function hc(t,e){var r=0,n=0,a=e/Math.sqrt(2);switch(t){case\"top-right\":case\"top-left\":n=a-uc;break;case\"bottom-right\":case\"bottom-left\":n=-a+uc;break;case\"bottom\":n=-e+uc;break;case\"top\":n=e-uc}switch(t){case\"top-right\":case\"bottom-right\":r=-a;break;case\"top-left\":case\"bottom-left\":r=a;break;case\"left\":r=e;break;case\"right\":r=-e}return[r,n]}function fc(t){switch(t){case\"right\":case\"top-right\":case\"bottom-right\":return\"right\";case\"left\":case\"top-left\":case\"bottom-left\":return\"left\"}return\"center\"}var pc=65535;function dc(t,e,r,n,i,o,s,l,c,u,h,f,p){var d=function(t,e,r,n,i,o,s,l){for(var c=n.layout.get(\"text-rotate\").evaluate(o,{})*Math.PI/180,u=e.positionedGlyphs,h=[],f=0;f<u.length;f++){var p=u[f],d=s[p.fontStack],g=d&&d[p.glyph];if(g){var v=g.rect;if(v){var m=bl+1,y=g.metrics.advance*p.scale/2,x=i?[p.x+y,p.y]:[0,0],b=i?[0,0]:[p.x+y+r[0],p.y+r[1]],_=(i||l)&&p.vertical,w=[0,0];_&&(w=b,b=[0,0]);var k=(g.metrics.left-m)*p.scale-y+b[0],T=(-g.metrics.top-m)*p.scale+b[1],A=k+v.w*p.scale,M=T+v.h*p.scale,S=new a(k,T),E=new a(A,T),C=new a(k,M),L=new a(A,M);if(_){var P=new a(-y,y-e.yOffset),O=-Math.PI/2,I=ss/2-y,z=new a(5-e.yOffset-I,0),D=new(Function.prototype.bind.apply(a,[null].concat(w)));S._rotateAround(O,P)._add(z)._add(D),E._rotateAround(O,P)._add(z)._add(D),C._rotateAround(O,P)._add(z)._add(D),L._rotateAround(O,P)._add(z)._add(D)}if(c){var R=Math.sin(c),F=Math.cos(c),B=[F,-R,R,F];S._matMult(B),E._matMult(B),C._matMult(B),L._matMult(B)}h.push({tl:S,tr:E,bl:C,br:L,tex:v,writingMode:e.writingMode,glyphOffset:x,sectionIndex:p.sectionIndex})}}}return h}(0,r,s,n,i,o,f,t.allowVerticalPlacement),g=t.textSizeData,v=null;\"source\"===g.kind?(v=[bs*n.layout.get(\"text-size\").evaluate(o,{})])[0]>pc&&w(t.layerIds[0]+': Value for \"text-size\" is >= 256. Reduce your \"text-size\".'):\"composite\"===g.kind&&((v=[bs*p.compositeTextSizes[0].evaluate(o,{}),bs*p.compositeTextSizes[1].evaluate(o,{})])[0]>pc||v[1]>pc)&&w(t.layerIds[0]+': Value for \"text-size\" is >= 256. Reduce your \"text-size\".'),t.addSymbols(t.text,d,v,s,i,o,c,e,l.lineStartIndex,l.lineLength);for(var m=0,y=u;m<y.length;m+=1)h[y[m]]=t.text.placedSymbolArray.length-1;return 4*d.length}function gc(t){for(var e in t)return t[e];return null}function vc(t,e,r,n){var a=t.compareText;if(e in a){for(var i=a[e],o=i.length-1;o>=0;o--)if(n.dist(i[o])<r)return!0}else a[e]=[];return a[e].push(n),!1}t.Actor=wl,t.AlphaImage=Li,t.CanonicalTileID=Il,t.CollisionBoxArray=xa,t.Color=Wt,t.DEMData=Fl,t.DataConstantProperty=Nn,t.DictionaryCoder=Nl,t.EXTENT=ti,t.ErrorEvent=wt,t.EvaluationParameters=Ln,t.Event=_t,t.Evented=kt,t.FeatureIndex=ql,t.FillBucket=bo,t.FillExtrusionBucket=Fo,t.ImageAtlas=Gs,t.ImagePosition=qs,t.LineBucket=Xo,t.LngLat=Al,t.LngLatBounds=Tl,t.MercatorCoordinate=Ol,t.ONE_EM=ss,t.OverscaledTileID=Dl,t.Point=a,t.Point$1=a,t.ProgramConfiguration=Ja,t.Properties=Hn,t.Protobuf=$s,t.RGBAImage=Pi,t.RequestManager=V,t.ResourceType=lt,t.SegmentVector=Pa,t.SourceFeatureState=Ul,t.StructArrayLayout1ui2=ga,t.StructArrayLayout2i4=Kn,t.StructArrayLayout2ui4=da,t.StructArrayLayout3ui6=pa,t.StructArrayLayout4i8=Qn,t.SymbolBucket=Ps,t.Texture=Js,t.Tile=Yl,t.Transitionable=In,t.Uniform1f=Fa,t.Uniform1i=Ra,t.Uniform2f=Ba,t.Uniform3f=Na,t.Uniform4f=ja,t.UniformColor=Va,t.UniformMatrix4f=qa,t.UnwrappedTileID=zl,t.ValidationError=At,t.WritingMode=ls,t.ZoomHistory=mn,t.addDynamicAttributes=Es,t.asyncAll=function(t,e,r){if(!t.length)return r(null,[]);var n=t.length,a=new Array(t.length),i=null;t.forEach(function(t,o){e(t,function(t,e){t&&(i=t),a[o]=e,0==--n&&r(i,a)})})},t.bezier=s,t.bindAll=v,t.browser=z,t.cacheEntryPossiblyAdded=function(t){++st>at&&(t.getActor().send(\"enforceCacheSizeLimit\",nt),st=0)},t.clamp=c,t.clearTileCache=function(t){var e=self.caches.delete(rt);t&&e.catch(t).then(function(){return t()})},t.clone=function(t){var e=new wi(16);return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e[4]=t[4],e[5]=t[5],e[6]=t[6],e[7]=t[7],e[8]=t[8],e[9]=t[9],e[10]=t[10],e[11]=t[11],e[12]=t[12],e[13]=t[13],e[14]=t[14],e[15]=t[15],e},t.clone$1=b,t.config=D,t.create=function(){var t=new wi(16);return wi!=Float32Array&&(t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[11]=0,t[12]=0,t[13]=0,t[14]=0),t[0]=1,t[5]=1,t[10]=1,t[15]=1,t},t.create$1=function(){var t=new wi(9);return wi!=Float32Array&&(t[1]=0,t[2]=0,t[3]=0,t[5]=0,t[6]=0,t[7]=0),t[0]=1,t[4]=1,t[8]=1,t},t.create$2=function(){var t=new wi(4);return wi!=Float32Array&&(t[1]=0,t[2]=0),t[0]=1,t[3]=1,t},t.createCommonjsModule=e,t.createExpression=wr,t.createLayout=Zn,t.createStyleLayer=function(t){return\"custom\"===t.type?new js(t):new Vs[t.type](t)},t.deepEqual=o,t.ease=l,t.emitValidationErrors=sn,t.endsWith=m,t.enforceCacheSizeLimit=function(t){self.caches&&self.caches.open(rt).then(function(e){e.keys().then(function(r){for(var n=0;n<r.length-t;n++)e.delete(r[n])})})},t.evaluateRadialOffset=hc,t.evaluateSizeForFeature=ws,t.evaluateSizeForZoom=ks,t.evented=En,t.extend=h,t.featureFilter=Dr,t.filterObject=x,t.fromRotation=function(t,e){var r=Math.sin(e),n=Math.cos(e);return t[0]=n,t[1]=r,t[2]=0,t[3]=-r,t[4]=n,t[5]=0,t[6]=0,t[7]=0,t[8]=1,t},t.getAnchorAlignment=ms,t.getAnchorJustification=fc,t.getArrayBuffer=vt,t.getImage=yt,t.getJSON=function(t,e){return gt(h(t,{type:\"json\"}),e)},t.getReferrer=ht,t.getVideo=function(t,e){var r,n,a=self.document.createElement(\"video\");a.muted=!0,a.onloadstart=function(){e(null,a)};for(var i=0;i<t.length;i++){var o=self.document.createElement(\"source\");r=t[i],n=void 0,(n=self.document.createElement(\"a\")).href=r,(n.protocol!==self.document.location.protocol||n.host!==self.document.location.host)&&(a.crossOrigin=\"Anonymous\"),o.src=t[i],a.appendChild(o)}return{cancel:function(){}}},t.identity=function(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},t.invert=function(t,e){var r=e[0],n=e[1],a=e[2],i=e[3],o=e[4],s=e[5],l=e[6],c=e[7],u=e[8],h=e[9],f=e[10],p=e[11],d=e[12],g=e[13],v=e[14],m=e[15],y=r*s-n*o,x=r*l-a*o,b=r*c-i*o,_=n*l-a*s,w=n*c-i*s,k=a*c-i*l,T=u*g-h*d,A=u*v-f*d,M=u*m-p*d,S=h*v-f*g,E=h*m-p*g,C=f*m-p*v,L=y*C-x*E+b*S+_*M-w*A+k*T;return L?(L=1/L,t[0]=(s*C-l*E+c*S)*L,t[1]=(a*E-n*C-i*S)*L,t[2]=(g*k-v*w+m*_)*L,t[3]=(f*w-h*k-p*_)*L,t[4]=(l*M-o*C-c*A)*L,t[5]=(r*C-a*M+i*A)*L,t[6]=(v*b-d*k-m*x)*L,t[7]=(u*k-f*b+p*x)*L,t[8]=(o*E-s*M+c*T)*L,t[9]=(n*M-r*E-i*T)*L,t[10]=(d*w-g*b+m*y)*L,t[11]=(h*b-u*w-p*y)*L,t[12]=(s*A-o*S-l*T)*L,t[13]=(r*S-n*A+a*T)*L,t[14]=(g*x-d*_-v*y)*L,t[15]=(u*_-h*x+f*y)*L,t):null},t.isChar=yn,t.isMapboxURL=U,t.keysDifference=function(t,e){var r=[];for(var n in t)n in e||r.push(n);return r},t.makeRequest=gt,t.mapObject=y,t.mercatorXfromLng=El,t.mercatorYfromLat=Cl,t.mercatorZfromAltitude=Ll,t.multiply=function(t,e,r){var n=e[0],a=e[1],i=e[2],o=e[3],s=e[4],l=e[5],c=e[6],u=e[7],h=e[8],f=e[9],p=e[10],d=e[11],g=e[12],v=e[13],m=e[14],y=e[15],x=r[0],b=r[1],_=r[2],w=r[3];return t[0]=x*n+b*s+_*h+w*g,t[1]=x*a+b*l+_*f+w*v,t[2]=x*i+b*c+_*p+w*m,t[3]=x*o+b*u+_*d+w*y,x=r[4],b=r[5],_=r[6],w=r[7],t[4]=x*n+b*s+_*h+w*g,t[5]=x*a+b*l+_*f+w*v,t[6]=x*i+b*c+_*p+w*m,t[7]=x*o+b*u+_*d+w*y,x=r[8],b=r[9],_=r[10],w=r[11],t[8]=x*n+b*s+_*h+w*g,t[9]=x*a+b*l+_*f+w*v,t[10]=x*i+b*c+_*p+w*m,t[11]=x*o+b*u+_*d+w*y,x=r[12],b=r[13],_=r[14],w=r[15],t[12]=x*n+b*s+_*h+w*g,t[13]=x*a+b*l+_*f+w*v,t[14]=x*i+b*c+_*p+w*m,t[15]=x*o+b*u+_*d+w*y,t},t.mvt=Io,t.number=ye,t.ortho=function(t,e,r,n,a,i,o){var s=1/(e-r),l=1/(n-a),c=1/(i-o);return t[0]=-2*s,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=-2*l,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=2*c,t[11]=0,t[12]=(e+r)*s,t[13]=(a+n)*l,t[14]=(o+i)*c,t[15]=1,t},t.parseGlyphPBF=function(t){return new $s(t).readFields(ml,[])},t.pbf=$s,t.performSymbolLayout=function(t,e,r,n,i,o){t.createArrays();var s=512*t.overscaling;t.tilePixelRatio=ti/s,t.compareText={},t.iconsNeedLinear=!1;var l=t.layers[0].layout,c=t.layers[0]._unevaluatedLayout._values,u={};if(\"composite\"===t.textSizeData.kind){var h=t.textSizeData,f=h.minZoom,p=h.maxZoom;u.compositeTextSizes=[c[\"text-size\"].possiblyEvaluate(new Ln(f)),c[\"text-size\"].possiblyEvaluate(new Ln(p))]}if(\"composite\"===t.iconSizeData.kind){var d=t.iconSizeData,g=d.minZoom,v=d.maxZoom;u.compositeIconSizes=[c[\"icon-size\"].possiblyEvaluate(new Ln(g)),c[\"icon-size\"].possiblyEvaluate(new Ln(v))]}u.layoutTextSize=c[\"text-size\"].possiblyEvaluate(new Ln(t.zoom+1)),u.layoutIconSize=c[\"icon-size\"].possiblyEvaluate(new Ln(t.zoom+1)),u.textMaxSize=c[\"text-size\"].possiblyEvaluate(new Ln(18));for(var m=l.get(\"text-line-height\")*ss,y=\"map\"===l.get(\"text-rotation-alignment\")&&\"point\"!==l.get(\"symbol-placement\"),x=l.get(\"text-keep-upright\"),b=function(){var o=k[_],s=l.get(\"text-font\").evaluate(o,{}).join(\",\"),c=r,h={horizontal:{},vertical:void 0},f=o.text,p=[0,0];if(f){var d=f.toString(),g=l.get(\"text-letter-spacing\").evaluate(o,{})*ss,v=function(t){for(var e=0,r=d;e<r.length;e+=1)if(!bn(r[e].charCodeAt(0)))return!1;return!0}()?g:0,b=l.get(\"text-anchor\").evaluate(o,{}),T=l.get(\"text-variable-anchor\"),A=l.get(\"text-radial-offset\").evaluate(o,{});T||(p=A?hc(b,A*ss):l.get(\"text-offset\").evaluate(o,{}).map(function(t){return t*ss}));var M=y?\"center\":l.get(\"text-justify\").evaluate(o,{}),S=\"point\"===l.get(\"symbol-placement\")?l.get(\"text-max-width\").evaluate(o,{})*ss:0,E=function(){t.allowVerticalPlacement&&xn(d)&&(h.vertical=us(f,e,s,S,m,b,\"left\",v,p,ls.vertical,!0))};if(!y&&T){for(var C=\"auto\"===M?T.map(function(t){return fc(t)}):[M],L=!1,P=0;P<C.length;P++){var O=C[P];if(!h.horizontal[O])if(L)h.horizontal[O]=h.horizontal[0];else{var I=us(f,e,s,S,m,\"center\",O,v,p,ls.horizontal,!1);I&&(h.horizontal[O]=I,L=1===I.lineCount)}}E()}else{\"auto\"===M&&(M=fc(b));var z=us(f,e,s,S,m,b,M,v,p,ls.horizontal,!1);z&&(h.horizontal[M]=z),E(),xn(d)&&y&&x&&(h.vertical=us(f,e,s,S,m,b,M,v,p,ls.vertical,!1))}}var D=void 0;if(o.icon){var R=n[o.icon];R&&(D=function(t,e,r){var n=ms(r),a=n.horizontalAlign,i=n.verticalAlign,o=e[0],s=e[1],l=o-t.displaySize[0]*a,c=l+t.displaySize[0],u=s-t.displaySize[1]*i;return{image:t,top:u,bottom:u+t.displaySize[1],left:l,right:c}}(i[o.icon],l.get(\"icon-offset\").evaluate(o,{}),l.get(\"icon-anchor\").evaluate(o,{})),void 0===t.sdfIcons?t.sdfIcons=R.sdf:t.sdfIcons!==R.sdf&&w(\"Style sheet warning: Cannot mix SDF and non-SDF icons in one buffer\"),R.pixelRatio!==t.pixelRatio?t.iconsNeedLinear=!0:0!==l.get(\"icon-rotate\").constantOr(1)&&(t.iconsNeedLinear=!0))}(Object.keys(h.horizontal).length||D)&&function(t,e,r,n,i,o,s){var l=o.layoutTextSize.evaluate(e,{}),c=o.layoutIconSize.evaluate(e,{}),u=o.textMaxSize.evaluate(e,{});void 0===u&&(u=l);var h=t.layers[0].layout,f=h.get(\"icon-offset\").evaluate(e,{}),p=gc(r.horizontal),d=l/24,g=t.tilePixelRatio*d,v=t.tilePixelRatio*u/24,m=t.tilePixelRatio*c,y=t.tilePixelRatio*h.get(\"symbol-spacing\"),x=h.get(\"text-padding\")*t.tilePixelRatio,b=h.get(\"icon-padding\")*t.tilePixelRatio,_=h.get(\"text-max-angle\")/180*Math.PI,k=\"map\"===h.get(\"text-rotation-alignment\")&&\"point\"!==h.get(\"symbol-placement\"),T=\"map\"===h.get(\"icon-rotation-alignment\")&&\"point\"!==h.get(\"symbol-placement\"),A=h.get(\"symbol-placement\"),M=y/2,S=function(l,c){c.x<0||c.x>=ti||c.y<0||c.y>=ti||function(t,e,r,n,i,o,s,l,c,u,h,f,p,d,g,v,m,y,x,b,_){var k,T,A,M=t.addToLineVertexArray(e,r),S=0,E=0,C=0,L={},P=sc(\"\"),O=(o.layout.get(\"text-radial-offset\").evaluate(x,{})||0)*ss;if(t.allowVerticalPlacement&&n.vertical){var I=o.layout.get(\"text-rotate\").evaluate(x,{})+90,z=n.vertical;A=new $l(s,r,e,l,c,u,z,h,f,p,t.overscaling,I)}for(var D in n.horizontal){var R=n.horizontal[D];if(!k){P=sc(R.text);var F=o.layout.get(\"text-rotate\").evaluate(x,{});k=new $l(s,r,e,l,c,u,R,h,f,p,t.overscaling,F)}var B=1===R.lineCount;if(E+=dc(t,e,R,o,p,x,d,M,n.vertical?ls.horizontal:ls.horizontalOnly,B?Object.keys(n.horizontal):[D],L,b,_),B)break}n.vertical&&(C+=dc(t,e,n.vertical,o,p,x,d,M,ls.vertical,[\"vertical\"],L,b,_));var N=k?k.boxStartIndex:t.collisionBoxArray.length,j=k?k.boxEndIndex:t.collisionBoxArray.length,V=A?A.boxStartIndex:t.collisionBoxArray.length,U=A?A.boxEndIndex:t.collisionBoxArray.length;if(i){var q=function(t,e,r,n,i,o){var s,l,c,u,h=e.image,f=r.layout,p=e.top-1/h.pixelRatio,d=e.left-1/h.pixelRatio,g=e.bottom+1/h.pixelRatio,v=e.right+1/h.pixelRatio;if(\"none\"!==f.get(\"icon-text-fit\")&&i){var m=v-d,y=g-p,x=f.get(\"text-size\").evaluate(o,{})/24,b=i.left*x,_=i.right*x,w=i.top*x,k=_-b,T=i.bottom*x-w,A=f.get(\"icon-text-fit-padding\")[0],M=f.get(\"icon-text-fit-padding\")[1],S=f.get(\"icon-text-fit-padding\")[2],E=f.get(\"icon-text-fit-padding\")[3],C=\"width\"===f.get(\"icon-text-fit\")?.5*(T-y):0,L=\"height\"===f.get(\"icon-text-fit\")?.5*(k-m):0,P=\"width\"===f.get(\"icon-text-fit\")||\"both\"===f.get(\"icon-text-fit\")?k:m,O=\"height\"===f.get(\"icon-text-fit\")||\"both\"===f.get(\"icon-text-fit\")?T:y;s=new a(b+L-E,w+C-A),l=new a(b+L+M+P,w+C-A),c=new a(b+L+M+P,w+C+S+O),u=new a(b+L-E,w+C+S+O)}else s=new a(d,p),l=new a(v,p),c=new a(v,g),u=new a(d,g);var I=r.layout.get(\"icon-rotate\").evaluate(o,{})*Math.PI/180;if(I){var z=Math.sin(I),D=Math.cos(I),R=[D,-z,z,D];s._matMult(R),l._matMult(R),u._matMult(R),c._matMult(R)}return[{tl:s,tr:l,bl:u,br:c,tex:h.paddedRect,writingMode:void 0,glyphOffset:[0,0],sectionIndex:0}]}(0,i,o,0,gc(n.horizontal),x),H=o.layout.get(\"icon-rotate\").evaluate(x,{});T=new $l(s,r,e,l,c,u,i,g,v,!1,t.overscaling,H),S=4*q.length;var G=t.iconSizeData,Y=null;\"source\"===G.kind?(Y=[bs*o.layout.get(\"icon-size\").evaluate(x,{})])[0]>pc&&w(t.layerIds[0]+': Value for \"icon-size\" is >= 256. Reduce your \"icon-size\".'):\"composite\"===G.kind&&((Y=[bs*_.compositeIconSizes[0].evaluate(x,{}),bs*_.compositeIconSizes[1].evaluate(x,{})])[0]>pc||Y[1]>pc)&&w(t.layerIds[0]+': Value for \"icon-size\" is >= 256. Reduce your \"icon-size\".'),t.addSymbols(t.icon,q,Y,y,m,x,!1,e,M.lineStartIndex,M.lineLength)}var W=T?T.boxStartIndex:t.collisionBoxArray.length,X=T?T.boxEndIndex:t.collisionBoxArray.length;t.glyphOffsetArray.length>=Ps.MAX_GLYPHS&&w(\"Too many glyphs being rendered in a tile. See https://github.com/mapbox/mapbox-gl-js/issues/2907\"),t.symbolInstances.emplaceBack(e.x,e.y,L.right>=0?L.right:-1,L.center>=0?L.center:-1,L.left>=0?L.left:-1,L.vertical||-1,P,N,j,V,U,W,X,l,E,C,S,0,h,O)}(t,c,l,r,n,t.layers[0],t.collisionBoxArray,e.index,e.sourceLayerIndex,t.index,g,x,k,s,m,b,T,f,e,i,o)};if(\"line\"===A)for(var E=0,C=function(t,e,r,n,i){for(var o=[],s=0;s<t.length;s++)for(var l=t[s],c=void 0,u=0;u<l.length-1;u++){var h=l[u],f=l[u+1];h.x<0&&f.x<0||(h.x<0?h=new a(0,h.y+(f.y-h.y)*((0-h.x)/(f.x-h.x)))._round():f.x<0&&(f=new a(0,h.y+(f.y-h.y)*((0-h.x)/(f.x-h.x)))._round()),h.y<0&&f.y<0||(h.y<0?h=new a(h.x+(f.x-h.x)*((0-h.y)/(f.y-h.y)),0)._round():f.y<0&&(f=new a(h.x+(f.x-h.x)*((0-h.y)/(f.y-h.y)),0)._round()),h.x>=n&&f.x>=n||(h.x>=n?h=new a(n,h.y+(f.y-h.y)*((n-h.x)/(f.x-h.x)))._round():f.x>=n&&(f=new a(n,h.y+(f.y-h.y)*((n-h.x)/(f.x-h.x)))._round()),h.y>=i&&f.y>=i||(h.y>=i?h=new a(h.x+(f.x-h.x)*((i-h.y)/(f.y-h.y)),i)._round():f.y>=i&&(f=new a(h.x+(f.x-h.x)*((i-h.y)/(f.y-h.y)),i)._round()),c&&h.equals(c[c.length-1])||(c=[h],o.push(c)),c.push(f)))))}return o}(e.geometry,0,0,ti,ti);E<C.length;E+=1)for(var L=C[E],P=0,O=Ql(L,y,_,r.vertical||p,n,24,v,t.overscaling,ti);P<O.length;P+=1){var I=O[P];p&&vc(t,p.text,M,I)||S(L,I)}else if(\"line-center\"===A)for(var z=0,D=e.geometry;z<D.length;z+=1){var R=D[z];if(R.length>1){var F=Kl(R,_,r.vertical||p,n,24,v);F&&S(R,F)}}else if(\"Polygon\"===e.type)for(var B=0,N=vo(e.geometry,0);B<N.length;B+=1){var j=N[B],V=rc(j,16);S(j[0],new xs(V.x,V.y,0))}else if(\"LineString\"===e.type)for(var U=0,q=e.geometry;U<q.length;U+=1){var H=q[U];S(H,new xs(H[0].x,H[0].y,0))}else if(\"Point\"===e.type)for(var G=0,Y=e.geometry;G<Y.length;G+=1)for(var W=0,X=Y[G];W<X.length;W+=1){var Z=X[W];S([Z],new xs(Z.x,Z.y,0))}}(t,o,h,D,c,u,p)},_=0,k=t.features;_<k.length;_+=1)b();o&&t.generateCollisionDebugBuffers()},t.perspective=function(t,e,r,n,a){var i,o=1/Math.tan(e/2);return t[0]=o/r,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=o,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[11]=-1,t[12]=0,t[13]=0,t[15]=0,null!=a&&a!==1/0?(i=1/(n-a),t[10]=(a+n)*i,t[14]=2*a*n*i):(t[10]=-1,t[14]=-2*n),t},t.pick=function(t,e){for(var r={},n=0;n<e.length;n++){var a=e[n];a in t&&(r[a]=t[a])}return r},t.plugin=Cn,t.polygonIntersectsPolygon=ii,t.postMapLoadEvent=et,t.postTurnstileEvent=$,t.potpack=Us,t.rasterBoundsAttributes=Bl,t.refProperties=[\"type\",\"source\",\"source-layer\",\"minzoom\",\"maxzoom\",\"filter\",\"layout\"],t.register=pn,t.registerForPluginAvailability=function(t){return Mn?t({pluginURL:Mn,completionCallback:Tn}):En.once(\"pluginAvailable\",t),t},t.rotate=function(t,e,r){var n=e[0],a=e[1],i=e[2],o=e[3],s=Math.sin(r),l=Math.cos(r);return t[0]=n*l+i*s,t[1]=a*l+o*s,t[2]=n*-s+i*l,t[3]=a*-s+o*l,t},t.rotateX=function(t,e,r){var n=Math.sin(r),a=Math.cos(r),i=e[4],o=e[5],s=e[6],l=e[7],c=e[8],u=e[9],h=e[10],f=e[11];return e!==t&&(t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15]),t[4]=i*a+c*n,t[5]=o*a+u*n,t[6]=s*a+h*n,t[7]=l*a+f*n,t[8]=c*a-i*n,t[9]=u*a-o*n,t[10]=h*a-s*n,t[11]=f*a-l*n,t},t.rotateZ=function(t,e,r){var n=Math.sin(r),a=Math.cos(r),i=e[0],o=e[1],s=e[2],l=e[3],c=e[4],u=e[5],h=e[6],f=e[7];return e!==t&&(t[8]=e[8],t[9]=e[9],t[10]=e[10],t[11]=e[11],t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15]),t[0]=i*a+c*n,t[1]=o*a+u*n,t[2]=s*a+h*n,t[3]=l*a+f*n,t[4]=c*a-i*n,t[5]=u*a-o*n,t[6]=h*a-s*n,t[7]=f*a-l*n,t},t.scale=function(t,e,r){var n=r[0],a=r[1],i=r[2];return t[0]=e[0]*n,t[1]=e[1]*n,t[2]=e[2]*n,t[3]=e[3]*n,t[4]=e[4]*a,t[5]=e[5]*a,t[6]=e[6]*a,t[7]=e[7]*a,t[8]=e[8]*i,t[9]=e[9]*i,t[10]=e[10]*i,t[11]=e[11]*i,t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15],t},t.setCacheLimits=function(t,e){nt=t,at=e},t.setRTLTextPlugin=function(t,e){if(An)throw new Error(\"setRTLTextPlugin cannot be called multiple times.\");An=!0,Mn=z.resolveURL(t),Tn=function(t){t?(An=!1,Mn=null,e&&e(t)):Sn=!0},En.fire(new _t(\"pluginAvailable\",{pluginURL:Mn,completionCallback:Tn}))},t.sphericalToCartesian=function(t){var e=t[0],r=t[1],n=t[2];return r+=90,r*=Math.PI/180,n*=Math.PI/180,{x:e*Math.cos(r)*Math.sin(n),y:e*Math.sin(r)*Math.sin(n),z:e*Math.cos(n)}},t.styleSpec=Tt,t.symbolSize=Ts,t.transformMat3=function(t,e,r){var n=e[0],a=e[1],i=e[2];return t[0]=n*r[0]+a*r[3]+i*r[6],t[1]=n*r[1]+a*r[4]+i*r[7],t[2]=n*r[2]+a*r[5]+i*r[8],t},t.transformMat4=ki,t.translate=function(t,e,r){var n,a,i,o,s,l,c,u,h,f,p,d,g=r[0],v=r[1],m=r[2];return e===t?(t[12]=e[0]*g+e[4]*v+e[8]*m+e[12],t[13]=e[1]*g+e[5]*v+e[9]*m+e[13],t[14]=e[2]*g+e[6]*v+e[10]*m+e[14],t[15]=e[3]*g+e[7]*v+e[11]*m+e[15]):(n=e[0],a=e[1],i=e[2],o=e[3],s=e[4],l=e[5],c=e[6],u=e[7],h=e[8],f=e[9],p=e[10],d=e[11],t[0]=n,t[1]=a,t[2]=i,t[3]=o,t[4]=s,t[5]=l,t[6]=c,t[7]=u,t[8]=h,t[9]=f,t[10]=p,t[11]=d,t[12]=n*g+s*v+h*m+e[12],t[13]=a*g+l*v+f*m+e[13],t[14]=i*g+c*v+p*m+e[14],t[15]=o*g+u*v+d*m+e[15]),t},t.uniqueId=p,t.validateCustomStyleLayer=function(t){var e=[],r=t.id;return void 0===r&&e.push({message:\"layers.\"+r+': missing required property \"id\"'}),void 0===t.render&&e.push({message:\"layers.\"+r+': missing required method \"render\"'}),t.renderingMode&&\"2d\"!==t.renderingMode&&\"3d\"!==t.renderingMode&&e.push({message:\"layers.\"+r+': property \"renderingMode\" must be either \"2d\" or \"3d\"'}),e},t.validateLight=nn,t.validateStyle=rn,t.values=function(t){var e=[];for(var r in t)e.push(t[r]);return e},t.vectorTile=Io,t.version=\"1.3.2\",t.warnOnce=w,t.webpSupported=R,t.window=self,t.wrap=u}),n(0,function(t){function e(t){var r=typeof t;if(\"number\"===r||\"boolean\"===r||\"string\"===r||null==t)return JSON.stringify(t);if(Array.isArray(t)){for(var n=\"[\",a=0,i=t;a<i.length;a+=1)n+=e(i[a])+\",\";return n+\"]\"}for(var o=Object.keys(t).sort(),s=\"{\",l=0;l<o.length;l++)s+=JSON.stringify(o[l])+\":\"+e(t[o[l]])+\",\";return s+\"}\"}function r(r){for(var n=\"\",a=0,i=t.refProperties;a<i.length;a+=1)n+=\"/\"+e(r[i[a]]);return n}var n=function(t){this.keyCache={},t&&this.replace(t)};n.prototype.replace=function(t){this._layerConfigs={},this._layers={},this.update(t,[])},n.prototype.update=function(e,n){for(var a=this,i=0,o=e;i<o.length;i+=1){var s=o[i];this._layerConfigs[s.id]=s;var l=this._layers[s.id]=t.createStyleLayer(s);l._featureFilter=t.featureFilter(l.filter),this.keyCache[s.id]&&delete this.keyCache[s.id]}for(var c=0,u=n;c<u.length;c+=1){var h=u[c];delete this.keyCache[h],delete this._layerConfigs[h],delete this._layers[h]}this.familiesBySource={};for(var f=0,p=function(t,e){for(var n={},a=0;a<t.length;a++){var i=e&&e[t[a].id]||r(t[a]);e&&(e[t[a].id]=i);var o=n[i];o||(o=n[i]=[]),o.push(t[a])}var s=[];for(var l in n)s.push(n[l]);return s}(t.values(this._layerConfigs),this.keyCache);f<p.length;f+=1){var d=p[f].map(function(t){return a._layers[t.id]}),g=d[0];if(\"none\"!==g.visibility){var v=g.source||\"\",m=this.familiesBySource[v];m||(m=this.familiesBySource[v]={});var y=g.sourceLayer||\"_geojsonTileLayer\",x=m[y];x||(x=m[y]=[]),x.push(d)}}};var a=function(e){var r={},n=[];for(var a in e){var i=e[a],o=r[a]={};for(var s in i){var l=i[+s];if(l&&0!==l.bitmap.width&&0!==l.bitmap.height){var c={x:0,y:0,w:l.bitmap.width+2,h:l.bitmap.height+2};n.push(c),o[s]={rect:c,metrics:l.metrics}}}}var u=t.potpack(n),h=u.w,f=u.h,p=new t.AlphaImage({width:h||1,height:f||1});for(var d in e){var g=e[d];for(var v in g){var m=g[+v];if(m&&0!==m.bitmap.width&&0!==m.bitmap.height){var y=r[d][v].rect;t.AlphaImage.copy(m.bitmap,p,{x:0,y:0},{x:y.x+1,y:y.y+1},m.bitmap)}}}this.image=p,this.positions=r};t.register(\"GlyphAtlas\",a);var i=function(e){this.tileID=new t.OverscaledTileID(e.tileID.overscaledZ,e.tileID.wrap,e.tileID.canonical.z,e.tileID.canonical.x,e.tileID.canonical.y),this.uid=e.uid,this.zoom=e.zoom,this.pixelRatio=e.pixelRatio,this.tileSize=e.tileSize,this.source=e.source,this.overscaling=this.tileID.overscaleFactor(),this.showCollisionBoxes=e.showCollisionBoxes,this.collectResourceTiming=!!e.collectResourceTiming,this.returnDependencies=!!e.returnDependencies};function o(e,r){for(var n=new t.EvaluationParameters(r),a=0,i=e;a<i.length;a+=1)i[a].recalculate(n)}i.prototype.parse=function(e,r,n,i){var s=this;this.status=\"parsing\",this.data=e,this.collisionBoxArray=new t.CollisionBoxArray;var l=new t.DictionaryCoder(Object.keys(e.layers).sort()),c=new t.FeatureIndex(this.tileID);c.bucketLayerIDs=[];var u,h,f,p,d={},g={featureIndex:c,iconDependencies:{},patternDependencies:{},glyphDependencies:{}},v=r.familiesBySource[this.source];for(var m in v){var y=e.layers[m];if(y){1===y.version&&t.warnOnce('Vector tile source \"'+this.source+'\" layer \"'+m+'\" does not use vector tile spec v2 and therefore may have some rendering errors.');for(var x=l.encode(m),b=[],_=0;_<y.length;_++){var w=y.feature(_);b.push({feature:w,index:_,sourceLayerIndex:x})}for(var k=0,T=v[m];k<T.length;k+=1){var A=T[k],M=A[0];M.minzoom&&this.zoom<Math.floor(M.minzoom)||M.maxzoom&&this.zoom>=M.maxzoom||\"none\"!==M.visibility&&(o(A,this.zoom),(d[M.id]=M.createBucket({index:c.bucketLayerIDs.length,layers:A,zoom:this.zoom,pixelRatio:this.pixelRatio,overscaling:this.overscaling,collisionBoxArray:this.collisionBoxArray,sourceLayerIndex:x,sourceID:this.source})).populate(b,g),c.bucketLayerIDs.push(A.map(function(t){return t.id})))}}}var S=t.mapObject(g.glyphDependencies,function(t){return Object.keys(t).map(Number)});Object.keys(S).length?n.send(\"getGlyphs\",{uid:this.uid,stacks:S},function(t,e){u||(u=t,h=e,L.call(s))}):h={};var E=Object.keys(g.iconDependencies);E.length?n.send(\"getImages\",{icons:E},function(t,e){u||(u=t,f=e,L.call(s))}):f={};var C=Object.keys(g.patternDependencies);function L(){if(u)return i(u);if(h&&f&&p){var e=new a(h),r=new t.ImageAtlas(f,p);for(var n in d){var s=d[n];s instanceof t.SymbolBucket?(o(s.layers,this.zoom),t.performSymbolLayout(s,h,e.positions,f,r.iconPositions,this.showCollisionBoxes)):s.hasPattern&&(s instanceof t.LineBucket||s instanceof t.FillBucket||s instanceof t.FillExtrusionBucket)&&(o(s.layers,this.zoom),s.addFeatures(g,r.patternPositions))}this.status=\"done\",i(null,{buckets:t.values(d).filter(function(t){return!t.isEmpty()}),featureIndex:c,collisionBoxArray:this.collisionBoxArray,glyphAtlasImage:e.image,imageAtlas:r,glyphMap:this.returnDependencies?h:null,iconMap:this.returnDependencies?f:null,glyphPositions:this.returnDependencies?e.positions:null})}}C.length?n.send(\"getImages\",{icons:C},function(t,e){u||(u=t,p=e,L.call(s))}):p={},L.call(this)};var s=\"undefined\"!=typeof performance,l={getEntriesByName:function(t){return!!(s&&performance&&performance.getEntriesByName)&&performance.getEntriesByName(t)},mark:function(t){return!!(s&&performance&&performance.mark)&&performance.mark(t)},measure:function(t,e,r){return!!(s&&performance&&performance.measure)&&performance.measure(t,e,r)},clearMarks:function(t){return!!(s&&performance&&performance.clearMarks)&&performance.clearMarks(t)},clearMeasures:function(t){return!!(s&&performance&&performance.clearMeasures)&&performance.clearMeasures(t)}},c=function(t){this._marks={start:[t.url,\"start\"].join(\"#\"),end:[t.url,\"end\"].join(\"#\"),measure:t.url.toString()},l.mark(this._marks.start)};function u(e,r){var n=t.getArrayBuffer(e.request,function(e,n,a,i){e?r(e):n&&r(null,{vectorTile:new t.vectorTile.VectorTile(new t.pbf(n)),rawData:n,cacheControl:a,expires:i})});return function(){n.cancel(),r()}}c.prototype.finish=function(){l.mark(this._marks.end);var t=l.getEntriesByName(this._marks.measure);return 0===t.length&&(l.measure(this._marks.measure,this._marks.start,this._marks.end),t=l.getEntriesByName(this._marks.measure),l.clearMarks(this._marks.start),l.clearMarks(this._marks.end),l.clearMeasures(this._marks.measure)),t},l.Performance=c;var h=function(t,e,r){this.actor=t,this.layerIndex=e,this.loadVectorData=r||u,this.loading={},this.loaded={}};h.prototype.loadTile=function(e,r){var n=this,a=e.uid;this.loading||(this.loading={});var o=!!(e&&e.request&&e.request.collectResourceTiming)&&new l.Performance(e.request),s=this.loading[a]=new i(e);s.abort=this.loadVectorData(e,function(e,i){if(delete n.loading[a],e||!i)return s.status=\"done\",n.loaded[a]=s,r(e);var l=i.rawData,c={};i.expires&&(c.expires=i.expires),i.cacheControl&&(c.cacheControl=i.cacheControl);var u={};if(o){var h=o.finish();h&&(u.resourceTiming=JSON.parse(JSON.stringify(h)))}s.vectorTile=i.vectorTile,s.parse(i.vectorTile,n.layerIndex,n.actor,function(e,n){if(e||!n)return r(e);r(null,t.extend({rawTileData:l.slice(0)},n,c,u))}),n.loaded=n.loaded||{},n.loaded[a]=s})},h.prototype.reloadTile=function(t,e){var r=this.loaded,n=t.uid,a=this;if(r&&r[n]){var i=r[n];i.showCollisionBoxes=t.showCollisionBoxes;var o=function(t,r){var n=i.reloadCallback;n&&(delete i.reloadCallback,i.parse(i.vectorTile,a.layerIndex,a.actor,n)),e(t,r)};\"parsing\"===i.status?i.reloadCallback=o:\"done\"===i.status&&(i.vectorTile?i.parse(i.vectorTile,this.layerIndex,this.actor,o):o())}},h.prototype.abortTile=function(t,e){var r=this.loading,n=t.uid;r&&r[n]&&r[n].abort&&(r[n].abort(),delete r[n]),e()},h.prototype.removeTile=function(t,e){var r=this.loaded,n=t.uid;r&&r[n]&&delete r[n],e()};var f=function(){this.loaded={}};f.prototype.loadTile=function(e,r){var n=e.uid,a=e.encoding,i=e.rawImageData,o=new t.DEMData(n,i,a);this.loaded=this.loaded||{},this.loaded[n]=o,r(null,o)},f.prototype.removeTile=function(t){var e=this.loaded,r=t.uid;e&&e[r]&&delete e[r]};var p={RADIUS:6378137,FLATTENING:1/298.257223563,POLAR_RADIUS:6356752.3142};function d(t){var e=0;if(t&&t.length>0){e+=Math.abs(g(t[0]));for(var r=1;r<t.length;r++)e-=Math.abs(g(t[r]))}return e}function g(t){var e,r,n,a,i,o,s=0,l=t.length;if(l>2){for(o=0;o<l;o++)o===l-2?(n=l-2,a=l-1,i=0):o===l-1?(n=l-1,a=0,i=1):(n=o,a=o+1,i=o+2),e=t[n],r=t[a],s+=(v(t[i][0])-v(e[0]))*Math.sin(v(r[1]));s=s*p.RADIUS*p.RADIUS/2}return s}function v(t){return t*Math.PI/180}var m={geometry:function t(e){var r,n=0;switch(e.type){case\"Polygon\":return d(e.coordinates);case\"MultiPolygon\":for(r=0;r<e.coordinates.length;r++)n+=d(e.coordinates[r]);return n;case\"Point\":case\"MultiPoint\":case\"LineString\":case\"MultiLineString\":return 0;case\"GeometryCollection\":for(r=0;r<e.geometries.length;r++)n+=t(e.geometries[r]);return n}},ring:g};function y(t,e){return function(r){return t(r,e)}}function x(t,e){e=!!e,t[0]=b(t[0],e);for(var r=1;r<t.length;r++)t[r]=b(t[r],!e);return t}function b(t,e){return function(t){return m.ring(t)>=0}(t)===e?t:t.reverse()}var _=t.vectorTile.VectorTileFeature.prototype.toGeoJSON,w=function(e){this._feature=e,this.extent=t.EXTENT,this.type=e.type,this.properties=e.tags,\"id\"in e&&!isNaN(e.id)&&(this.id=parseInt(e.id,10))};w.prototype.loadGeometry=function(){if(1===this._feature.type){for(var e=[],r=0,n=this._feature.geometry;r<n.length;r+=1){var a=n[r];e.push([new t.Point$1(a[0],a[1])])}return e}for(var i=[],o=0,s=this._feature.geometry;o<s.length;o+=1){for(var l=[],c=0,u=s[o];c<u.length;c+=1){var h=u[c];l.push(new t.Point$1(h[0],h[1]))}i.push(l)}return i},w.prototype.toGeoJSON=function(t,e,r){return _.call(this,t,e,r)};var k=function(e){this.layers={_geojsonTileLayer:this},this.name=\"_geojsonTileLayer\",this.extent=t.EXTENT,this.length=e.length,this._features=e};k.prototype.feature=function(t){return new w(this._features[t])};var T=t.vectorTile.VectorTileFeature,A=M;function M(t,e){this.options=e||{},this.features=t,this.length=t.length}function S(t,e){this.id=\"number\"==typeof t.id?t.id:void 0,this.type=t.type,this.rawGeometry=1===t.type?[t.geometry]:t.geometry,this.properties=t.tags,this.extent=e||4096}M.prototype.feature=function(t){return new S(this.features[t],this.options.extent)},S.prototype.loadGeometry=function(){var e=this.rawGeometry;this.geometry=[];for(var r=0;r<e.length;r++){for(var n=e[r],a=[],i=0;i<n.length;i++)a.push(new t.Point$1(n[i][0],n[i][1]));this.geometry.push(a)}return this.geometry},S.prototype.bbox=function(){this.geometry||this.loadGeometry();for(var t=this.geometry,e=1/0,r=-1/0,n=1/0,a=-1/0,i=0;i<t.length;i++)for(var o=t[i],s=0;s<o.length;s++){var l=o[s];e=Math.min(e,l.x),r=Math.max(r,l.x),n=Math.min(n,l.y),a=Math.max(a,l.y)}return[e,n,r,a]},S.prototype.toGeoJSON=T.prototype.toGeoJSON;var E=P,C=P,L=A;function P(e){var r=new t.pbf;return function(t,e){for(var r in t.layers)e.writeMessage(3,O,t.layers[r])}(e,r),r.finish()}function O(t,e){var r;e.writeVarintField(15,t.version||1),e.writeStringField(1,t.name||\"\"),e.writeVarintField(5,t.extent||4096);var n={keys:[],values:[],keycache:{},valuecache:{}};for(r=0;r<t.length;r++)n.feature=t.feature(r),e.writeMessage(2,I,n);var a=n.keys;for(r=0;r<a.length;r++)e.writeStringField(3,a[r]);var i=n.values;for(r=0;r<i.length;r++)e.writeMessage(4,B,i[r])}function I(t,e){var r=t.feature;void 0!==r.id&&e.writeVarintField(1,r.id),e.writeMessage(2,z,t),e.writeVarintField(3,r.type),e.writeMessage(4,F,r)}function z(t,e){var r=t.feature,n=t.keys,a=t.values,i=t.keycache,o=t.valuecache;for(var s in r.properties){var l=i[s];void 0===l&&(n.push(s),l=n.length-1,i[s]=l),e.writeVarint(l);var c=r.properties[s],u=typeof c;\"string\"!==u&&\"boolean\"!==u&&\"number\"!==u&&(c=JSON.stringify(c));var h=u+\":\"+c,f=o[h];void 0===f&&(a.push(c),f=a.length-1,o[h]=f),e.writeVarint(f)}}function D(t,e){return(e<<3)+(7&t)}function R(t){return t<<1^t>>31}function F(t,e){for(var r=t.loadGeometry(),n=t.type,a=0,i=0,o=r.length,s=0;s<o;s++){var l=r[s],c=1;1===n&&(c=l.length),e.writeVarint(D(1,c));for(var u=3===n?l.length-1:l.length,h=0;h<u;h++){1===h&&1!==n&&e.writeVarint(D(2,u-1));var f=l[h].x-a,p=l[h].y-i;e.writeVarint(R(f)),e.writeVarint(R(p)),a+=f,i+=p}3===n&&e.writeVarint(D(7,1))}}function B(t,e){var r=typeof t;\"string\"===r?e.writeStringField(1,t):\"boolean\"===r?e.writeBooleanField(7,t):\"number\"===r&&(t%1!=0?e.writeDoubleField(3,t):t<0?e.writeSVarintField(6,t):e.writeVarintField(5,t))}function N(t,e,r,n){j(t,r,n),j(e,2*r,2*n),j(e,2*r+1,2*n+1)}function j(t,e,r){var n=t[e];t[e]=t[r],t[r]=n}function V(t,e,r,n){var a=t-r,i=e-n;return a*a+i*i}E.fromVectorTileJs=C,E.fromGeojsonVt=function(t,e){e=e||{};var r={};for(var n in t)r[n]=new A(t[n].features,e),r[n].name=n,r[n].version=e.version,r[n].extent=e.extent;return P({layers:r})},E.GeoJSONWrapper=L;var U=function(t){return t[0]},q=function(t){return t[1]},H=function(t,e,r,n,a){void 0===e&&(e=U),void 0===r&&(r=q),void 0===n&&(n=64),void 0===a&&(a=Float64Array),this.nodeSize=n,this.points=t;for(var i=t.length<65536?Uint16Array:Uint32Array,o=this.ids=new i(t.length),s=this.coords=new a(2*t.length),l=0;l<t.length;l++)o[l]=l,s[2*l]=e(t[l]),s[2*l+1]=r(t[l]);!function t(e,r,n,a,i,o){if(!(i-a<=n)){var s=a+i>>1;!function t(e,r,n,a,i,o){for(;i>a;){if(i-a>600){var s=i-a+1,l=n-a+1,c=Math.log(s),u=.5*Math.exp(2*c/3),h=.5*Math.sqrt(c*u*(s-u)/s)*(l-s/2<0?-1:1);t(e,r,n,Math.max(a,Math.floor(n-l*u/s+h)),Math.min(i,Math.floor(n+(s-l)*u/s+h)),o)}var f=r[2*n+o],p=a,d=i;for(N(e,r,a,n),r[2*i+o]>f&&N(e,r,a,i);p<d;){for(N(e,r,p,d),p++,d--;r[2*p+o]<f;)p++;for(;r[2*d+o]>f;)d--}r[2*a+o]===f?N(e,r,a,d):N(e,r,++d,i),d<=n&&(a=d+1),n<=d&&(i=d-1)}}(e,r,s,a,i,o%2),t(e,r,n,a,s-1,o+1),t(e,r,n,s+1,i,o+1)}}(o,s,n,0,o.length-1,0)};H.prototype.range=function(t,e,r,n){return function(t,e,r,n,a,i,o){for(var s,l,c=[0,t.length-1,0],u=[];c.length;){var h=c.pop(),f=c.pop(),p=c.pop();if(f-p<=o)for(var d=p;d<=f;d++)s=e[2*d],l=e[2*d+1],s>=r&&s<=a&&l>=n&&l<=i&&u.push(t[d]);else{var g=Math.floor((p+f)/2);s=e[2*g],l=e[2*g+1],s>=r&&s<=a&&l>=n&&l<=i&&u.push(t[g]);var v=(h+1)%2;(0===h?r<=s:n<=l)&&(c.push(p),c.push(g-1),c.push(v)),(0===h?a>=s:i>=l)&&(c.push(g+1),c.push(f),c.push(v))}}return u}(this.ids,this.coords,t,e,r,n,this.nodeSize)},H.prototype.within=function(t,e,r){return function(t,e,r,n,a,i){for(var o=[0,t.length-1,0],s=[],l=a*a;o.length;){var c=o.pop(),u=o.pop(),h=o.pop();if(u-h<=i)for(var f=h;f<=u;f++)V(e[2*f],e[2*f+1],r,n)<=l&&s.push(t[f]);else{var p=Math.floor((h+u)/2),d=e[2*p],g=e[2*p+1];V(d,g,r,n)<=l&&s.push(t[p]);var v=(c+1)%2;(0===c?r-a<=d:n-a<=g)&&(o.push(h),o.push(p-1),o.push(v)),(0===c?r+a>=d:n+a>=g)&&(o.push(p+1),o.push(u),o.push(v))}}return s}(this.ids,this.coords,t,e,r,this.nodeSize)};var G={minZoom:0,maxZoom:16,radius:40,extent:512,nodeSize:64,log:!1,reduce:null,map:function(t){return t}},Y=function(t){this.options=$(Object.create(G),t),this.trees=new Array(this.options.maxZoom+1)};function W(t,e,r,n,a){return{x:t,y:e,zoom:1/0,id:r,parentId:-1,numPoints:n,properties:a}}function X(t,e){var r=t.geometry.coordinates,n=r[0],a=r[1];return{x:K(n),y:Q(a),zoom:1/0,index:e,parentId:-1}}function Z(t){return{type:\"Feature\",id:t.id,properties:J(t),geometry:{type:\"Point\",coordinates:[(n=t.x,360*(n-.5)),(e=t.y,r=(180-360*e)*Math.PI/180,360*Math.atan(Math.exp(r))/Math.PI-90)]}};var e,r,n}function J(t){var e=t.numPoints,r=e>=1e4?Math.round(e/1e3)+\"k\":e>=1e3?Math.round(e/100)/10+\"k\":e;return $($({},t.properties),{cluster:!0,cluster_id:t.id,point_count:e,point_count_abbreviated:r})}function K(t){return t/360+.5}function Q(t){var e=Math.sin(t*Math.PI/180),r=.5-.25*Math.log((1+e)/(1-e))/Math.PI;return r<0?0:r>1?1:r}function $(t,e){for(var r in e)t[r]=e[r];return t}function tt(t){return t.x}function et(t){return t.y}function rt(t,e,r,n,a,i){var o=a-r,s=i-n;if(0!==o||0!==s){var l=((t-r)*o+(e-n)*s)/(o*o+s*s);l>1?(r=a,n=i):l>0&&(r+=o*l,n+=s*l)}return(o=t-r)*o+(s=e-n)*s}function nt(t,e,r,n){var a={id:void 0===t?null:t,type:e,geometry:r,tags:n,minX:1/0,minY:1/0,maxX:-1/0,maxY:-1/0};return function(t){var e=t.geometry,r=t.type;if(\"Point\"===r||\"MultiPoint\"===r||\"LineString\"===r)at(t,e);else if(\"Polygon\"===r||\"MultiLineString\"===r)for(var n=0;n<e.length;n++)at(t,e[n]);else if(\"MultiPolygon\"===r)for(n=0;n<e.length;n++)for(var a=0;a<e[n].length;a++)at(t,e[n][a])}(a),a}function at(t,e){for(var r=0;r<e.length;r+=3)t.minX=Math.min(t.minX,e[r]),t.minY=Math.min(t.minY,e[r+1]),t.maxX=Math.max(t.maxX,e[r]),t.maxY=Math.max(t.maxY,e[r+1])}function it(t,e,r,n){if(e.geometry){var a=e.geometry.coordinates,i=e.geometry.type,o=Math.pow(r.tolerance/((1<<r.maxZoom)*r.extent),2),s=[],l=e.id;if(r.promoteId?l=e.properties[r.promoteId]:r.generateId&&(l=n||0),\"Point\"===i)ot(a,s);else if(\"MultiPoint\"===i)for(var c=0;c<a.length;c++)ot(a[c],s);else if(\"LineString\"===i)st(a,s,o,!1);else if(\"MultiLineString\"===i){if(r.lineMetrics){for(c=0;c<a.length;c++)s=[],st(a[c],s,o,!1),t.push(nt(l,\"LineString\",s,e.properties));return}lt(a,s,o,!1)}else if(\"Polygon\"===i)lt(a,s,o,!0);else{if(\"MultiPolygon\"!==i){if(\"GeometryCollection\"===i){for(c=0;c<e.geometry.geometries.length;c++)it(t,{id:l,geometry:e.geometry.geometries[c],properties:e.properties},r,n);return}throw new Error(\"Input data is not a valid GeoJSON object.\")}for(c=0;c<a.length;c++){var u=[];lt(a[c],u,o,!0),s.push(u)}}t.push(nt(l,i,s,e.properties))}}function ot(t,e){e.push(ct(t[0])),e.push(ut(t[1])),e.push(0)}function st(t,e,r,n){for(var a,i,o=0,s=0;s<t.length;s++){var l=ct(t[s][0]),c=ut(t[s][1]);e.push(l),e.push(c),e.push(0),s>0&&(o+=n?(a*c-l*i)/2:Math.sqrt(Math.pow(l-a,2)+Math.pow(c-i,2))),a=l,i=c}var u=e.length-3;e[2]=1,function t(e,r,n,a){for(var i,o=a,s=n-r>>1,l=n-r,c=e[r],u=e[r+1],h=e[n],f=e[n+1],p=r+3;p<n;p+=3){var d=rt(e[p],e[p+1],c,u,h,f);if(d>o)i=p,o=d;else if(d===o){var g=Math.abs(p-s);g<l&&(i=p,l=g)}}o>a&&(i-r>3&&t(e,r,i,a),e[i+2]=o,n-i>3&&t(e,i,n,a))}(e,0,u,r),e[u+2]=1,e.size=Math.abs(o),e.start=0,e.end=e.size}function lt(t,e,r,n){for(var a=0;a<t.length;a++){var i=[];st(t[a],i,r,n),e.push(i)}}function ct(t){return t/360+.5}function ut(t){var e=Math.sin(t*Math.PI/180),r=.5-.25*Math.log((1+e)/(1-e))/Math.PI;return r<0?0:r>1?1:r}function ht(t,e,r,n,a,i,o,s){if(n/=e,i>=(r/=e)&&o<n)return t;if(o<r||i>=n)return null;for(var l=[],c=0;c<t.length;c++){var u=t[c],h=u.geometry,f=u.type,p=0===a?u.minX:u.minY,d=0===a?u.maxX:u.maxY;if(p>=r&&d<n)l.push(u);else if(!(d<r||p>=n)){var g=[];if(\"Point\"===f||\"MultiPoint\"===f)ft(h,g,r,n,a);else if(\"LineString\"===f)pt(h,g,r,n,a,!1,s.lineMetrics);else if(\"MultiLineString\"===f)gt(h,g,r,n,a,!1);else if(\"Polygon\"===f)gt(h,g,r,n,a,!0);else if(\"MultiPolygon\"===f)for(var v=0;v<h.length;v++){var m=[];gt(h[v],m,r,n,a,!0),m.length&&g.push(m)}if(g.length){if(s.lineMetrics&&\"LineString\"===f){for(v=0;v<g.length;v++)l.push(nt(u.id,f,g[v],u.tags));continue}\"LineString\"!==f&&\"MultiLineString\"!==f||(1===g.length?(f=\"LineString\",g=g[0]):f=\"MultiLineString\"),\"Point\"!==f&&\"MultiPoint\"!==f||(f=3===g.length?\"Point\":\"MultiPoint\"),l.push(nt(u.id,f,g,u.tags))}}}return l.length?l:null}function ft(t,e,r,n,a){for(var i=0;i<t.length;i+=3){var o=t[i+a];o>=r&&o<=n&&(e.push(t[i]),e.push(t[i+1]),e.push(t[i+2]))}}function pt(t,e,r,n,a,i,o){for(var s,l,c=dt(t),u=0===a?mt:yt,h=t.start,f=0;f<t.length-3;f+=3){var p=t[f],d=t[f+1],g=t[f+2],v=t[f+3],m=t[f+4],y=0===a?p:d,x=0===a?v:m,b=!1;o&&(s=Math.sqrt(Math.pow(p-v,2)+Math.pow(d-m,2))),y<r?x>r&&(l=u(c,p,d,v,m,r),o&&(c.start=h+s*l)):y>n?x<n&&(l=u(c,p,d,v,m,n),o&&(c.start=h+s*l)):vt(c,p,d,g),x<r&&y>=r&&(l=u(c,p,d,v,m,r),b=!0),x>n&&y<=n&&(l=u(c,p,d,v,m,n),b=!0),!i&&b&&(o&&(c.end=h+s*l),e.push(c),c=dt(t)),o&&(h+=s)}var _=t.length-3;p=t[_],d=t[_+1],g=t[_+2],(y=0===a?p:d)>=r&&y<=n&&vt(c,p,d,g),_=c.length-3,i&&_>=3&&(c[_]!==c[0]||c[_+1]!==c[1])&&vt(c,c[0],c[1],c[2]),c.length&&e.push(c)}function dt(t){var e=[];return e.size=t.size,e.start=t.start,e.end=t.end,e}function gt(t,e,r,n,a,i){for(var o=0;o<t.length;o++)pt(t[o],e,r,n,a,i,!1)}function vt(t,e,r,n){t.push(e),t.push(r),t.push(n)}function mt(t,e,r,n,a,i){var o=(i-e)/(n-e);return t.push(i),t.push(r+(a-r)*o),t.push(1),o}function yt(t,e,r,n,a,i){var o=(i-r)/(a-r);return t.push(e+(n-e)*o),t.push(i),t.push(1),o}function xt(t,e){for(var r=[],n=0;n<t.length;n++){var a,i=t[n],o=i.type;if(\"Point\"===o||\"MultiPoint\"===o||\"LineString\"===o)a=bt(i.geometry,e);else if(\"MultiLineString\"===o||\"Polygon\"===o){a=[];for(var s=0;s<i.geometry.length;s++)a.push(bt(i.geometry[s],e))}else if(\"MultiPolygon\"===o)for(a=[],s=0;s<i.geometry.length;s++){for(var l=[],c=0;c<i.geometry[s].length;c++)l.push(bt(i.geometry[s][c],e));a.push(l)}r.push(nt(i.id,o,a,i.tags))}return r}function bt(t,e){var r=[];r.size=t.size,void 0!==t.start&&(r.start=t.start,r.end=t.end);for(var n=0;n<t.length;n+=3)r.push(t[n]+e,t[n+1],t[n+2]);return r}function _t(t,e){if(t.transformed)return t;var r,n,a,i=1<<t.z,o=t.x,s=t.y;for(r=0;r<t.features.length;r++){var l=t.features[r],c=l.geometry,u=l.type;if(l.geometry=[],1===u)for(n=0;n<c.length;n+=2)l.geometry.push(wt(c[n],c[n+1],e,i,o,s));else for(n=0;n<c.length;n++){var h=[];for(a=0;a<c[n].length;a+=2)h.push(wt(c[n][a],c[n][a+1],e,i,o,s));l.geometry.push(h)}}return t.transformed=!0,t}function wt(t,e,r,n,a,i){return[Math.round(r*(t*n-a)),Math.round(r*(e*n-i))]}function kt(t,e,r,n,a){for(var i=e===a.maxZoom?0:a.tolerance/((1<<e)*a.extent),o={features:[],numPoints:0,numSimplified:0,numFeatures:0,source:null,x:r,y:n,z:e,transformed:!1,minX:2,minY:1,maxX:-1,maxY:0},s=0;s<t.length;s++){o.numFeatures++,Tt(o,t[s],i,a);var l=t[s].minX,c=t[s].minY,u=t[s].maxX,h=t[s].maxY;l<o.minX&&(o.minX=l),c<o.minY&&(o.minY=c),u>o.maxX&&(o.maxX=u),h>o.maxY&&(o.maxY=h)}return o}function Tt(t,e,r,n){var a=e.geometry,i=e.type,o=[];if(\"Point\"===i||\"MultiPoint\"===i)for(var s=0;s<a.length;s+=3)o.push(a[s]),o.push(a[s+1]),t.numPoints++,t.numSimplified++;else if(\"LineString\"===i)At(o,a,t,r,!1,!1);else if(\"MultiLineString\"===i||\"Polygon\"===i)for(s=0;s<a.length;s++)At(o,a[s],t,r,\"Polygon\"===i,0===s);else if(\"MultiPolygon\"===i)for(var l=0;l<a.length;l++){var c=a[l];for(s=0;s<c.length;s++)At(o,c[s],t,r,!0,0===s)}if(o.length){var u=e.tags||null;if(\"LineString\"===i&&n.lineMetrics){for(var h in u={},e.tags)u[h]=e.tags[h];u.mapbox_clip_start=a.start/a.size,u.mapbox_clip_end=a.end/a.size}var f={geometry:o,type:\"Polygon\"===i||\"MultiPolygon\"===i?3:\"LineString\"===i||\"MultiLineString\"===i?2:1,tags:u};null!==e.id&&(f.id=e.id),t.features.push(f)}}function At(t,e,r,n,a,i){var o=n*n;if(n>0&&e.size<(a?o:n))r.numPoints+=e.length/3;else{for(var s=[],l=0;l<e.length;l+=3)(0===n||e[l+2]>o)&&(r.numSimplified++,s.push(e[l]),s.push(e[l+1])),r.numPoints++;a&&function(t,e){for(var r=0,n=0,a=t.length,i=a-2;n<a;i=n,n+=2)r+=(t[n]-t[i])*(t[n+1]+t[i+1]);if(r>0===e)for(n=0,a=t.length;n<a/2;n+=2){var o=t[n],s=t[n+1];t[n]=t[a-2-n],t[n+1]=t[a-1-n],t[a-2-n]=o,t[a-1-n]=s}}(s,i),t.push(s)}}function Mt(t,e){var r=(e=this.options=function(t,e){for(var r in e)t[r]=e[r];return t}(Object.create(this.options),e)).debug;if(r&&console.time(\"preprocess data\"),e.maxZoom<0||e.maxZoom>24)throw new Error(\"maxZoom should be in the 0-24 range\");if(e.promoteId&&e.generateId)throw new Error(\"promoteId and generateId cannot be used together.\");var n=function(t,e){var r=[];if(\"FeatureCollection\"===t.type)for(var n=0;n<t.features.length;n++)it(r,t.features[n],e,n);else\"Feature\"===t.type?it(r,t,e):it(r,{geometry:t},e);return r}(t,e);this.tiles={},this.tileCoords=[],r&&(console.timeEnd(\"preprocess data\"),console.log(\"index: maxZoom: %d, maxPoints: %d\",e.indexMaxZoom,e.indexMaxPoints),console.time(\"generate tiles\"),this.stats={},this.total=0),(n=function(t,e){var r=e.buffer/e.extent,n=t,a=ht(t,1,-1-r,r,0,-1,2,e),i=ht(t,1,1-r,2+r,0,-1,2,e);return(a||i)&&(n=ht(t,1,-r,1+r,0,-1,2,e)||[],a&&(n=xt(a,1).concat(n)),i&&(n=n.concat(xt(i,-1)))),n}(n,e)).length&&this.splitTile(n,0,0,0),r&&(n.length&&console.log(\"features: %d, points: %d\",this.tiles[0].numFeatures,this.tiles[0].numPoints),console.timeEnd(\"generate tiles\"),console.log(\"tiles generated:\",this.total,JSON.stringify(this.stats)))}function St(t,e,r){return 32*((1<<t)*r+e)+t}function Et(t,e){var r=t.tileID.canonical;if(!this._geoJSONIndex)return e(null,null);var n=this._geoJSONIndex.getTile(r.z,r.x,r.y);if(!n)return e(null,null);var a=new k(n.features),i=E(a);0===i.byteOffset&&i.byteLength===i.buffer.byteLength||(i=new Uint8Array(i)),e(null,{vectorTile:a,rawData:i.buffer})}Y.prototype.load=function(t){var e=this.options,r=e.log,n=e.minZoom,a=e.maxZoom,i=e.nodeSize;r&&console.time(\"total time\");var o=\"prepare \"+t.length+\" points\";r&&console.time(o),this.points=t;for(var s=[],l=0;l<t.length;l++)t[l].geometry&&s.push(X(t[l],l));this.trees[a+1]=new H(s,tt,et,i,Float32Array),r&&console.timeEnd(o);for(var c=a;c>=n;c--){var u=+Date.now();s=this._cluster(s,c),this.trees[c]=new H(s,tt,et,i,Float32Array),r&&console.log(\"z%d: %d clusters in %dms\",c,s.length,+Date.now()-u)}return r&&console.timeEnd(\"total time\"),this},Y.prototype.getClusters=function(t,e){var r=((t[0]+180)%360+360)%360-180,n=Math.max(-90,Math.min(90,t[1])),a=180===t[2]?180:((t[2]+180)%360+360)%360-180,i=Math.max(-90,Math.min(90,t[3]));if(t[2]-t[0]>=360)r=-180,a=180;else if(r>a){var o=this.getClusters([r,n,180,i],e),s=this.getClusters([-180,n,a,i],e);return o.concat(s)}for(var l=this.trees[this._limitZoom(e)],c=[],u=0,h=l.range(K(r),Q(i),K(a),Q(n));u<h.length;u+=1){var f=h[u],p=l.points[f];c.push(p.numPoints?Z(p):this.points[p.index])}return c},Y.prototype.getChildren=function(t){var e=t>>5,r=t%32,n=\"No cluster with the specified id.\",a=this.trees[r];if(!a)throw new Error(n);var i=a.points[e];if(!i)throw new Error(n);for(var o=this.options.radius/(this.options.extent*Math.pow(2,r-1)),s=[],l=0,c=a.within(i.x,i.y,o);l<c.length;l+=1){var u=c[l],h=a.points[u];h.parentId===t&&s.push(h.numPoints?Z(h):this.points[h.index])}if(0===s.length)throw new Error(n);return s},Y.prototype.getLeaves=function(t,e,r){e=e||10,r=r||0;var n=[];return this._appendLeaves(n,t,e,r,0),n},Y.prototype.getTile=function(t,e,r){var n=this.trees[this._limitZoom(t)],a=Math.pow(2,t),i=this.options,o=i.extent,s=i.radius/o,l=(r-s)/a,c=(r+1+s)/a,u={features:[]};return this._addTileFeatures(n.range((e-s)/a,l,(e+1+s)/a,c),n.points,e,r,a,u),0===e&&this._addTileFeatures(n.range(1-s/a,l,1,c),n.points,a,r,a,u),e===a-1&&this._addTileFeatures(n.range(0,l,s/a,c),n.points,-1,r,a,u),u.features.length?u:null},Y.prototype.getClusterExpansionZoom=function(t){for(var e=t%32-1;e<=this.options.maxZoom;){var r=this.getChildren(t);if(e++,1!==r.length)break;t=r[0].properties.cluster_id}return e},Y.prototype._appendLeaves=function(t,e,r,n,a){for(var i=0,o=this.getChildren(e);i<o.length;i+=1){var s=o[i],l=s.properties;if(l&&l.cluster?a+l.point_count<=n?a+=l.point_count:a=this._appendLeaves(t,l.cluster_id,r,n,a):a<n?a++:t.push(s),t.length===r)break}return a},Y.prototype._addTileFeatures=function(t,e,r,n,a,i){for(var o=0,s=t;o<s.length;o+=1){var l=e[s[o]],c={type:1,geometry:[[Math.round(this.options.extent*(l.x*a-r)),Math.round(this.options.extent*(l.y*a-n))]],tags:l.numPoints?J(l):this.points[l.index].properties},u=l.numPoints?l.id:this.points[l.index].id;void 0!==u&&(c.id=u),i.features.push(c)}},Y.prototype._limitZoom=function(t){return Math.max(this.options.minZoom,Math.min(t,this.options.maxZoom+1))},Y.prototype._cluster=function(t,e){for(var r=[],n=this.options,a=n.radius,i=n.extent,o=n.reduce,s=a/(i*Math.pow(2,e)),l=0;l<t.length;l++){var c=t[l];if(!(c.zoom<=e)){c.zoom=e;for(var u=this.trees[e+1],h=u.within(c.x,c.y,s),f=c.numPoints||1,p=c.x*f,d=c.y*f,g=o&&f>1?this._map(c,!0):null,v=(l<<5)+(e+1),m=0,y=h;m<y.length;m+=1){var x=y[m],b=u.points[x];if(!(b.zoom<=e)){b.zoom=e;var _=b.numPoints||1;p+=b.x*_,d+=b.y*_,f+=_,b.parentId=v,o&&(g||(g=this._map(c,!0)),o(g,this._map(b)))}}1===f?r.push(c):(c.parentId=v,r.push(W(p/f,d/f,v,f,g)))}}return r},Y.prototype._map=function(t,e){if(t.numPoints)return e?$({},t.properties):t.properties;var r=this.points[t.index].properties,n=this.options.map(r);return e&&n===r?$({},n):n},Mt.prototype.options={maxZoom:14,indexMaxZoom:5,indexMaxPoints:1e5,tolerance:3,extent:4096,buffer:64,lineMetrics:!1,promoteId:null,generateId:!1,debug:0},Mt.prototype.splitTile=function(t,e,r,n,a,i,o){for(var s=[t,e,r,n],l=this.options,c=l.debug;s.length;){n=s.pop(),r=s.pop(),e=s.pop(),t=s.pop();var u=1<<e,h=St(e,r,n),f=this.tiles[h];if(!f&&(c>1&&console.time(\"creation\"),f=this.tiles[h]=kt(t,e,r,n,l),this.tileCoords.push({z:e,x:r,y:n}),c)){c>1&&(console.log(\"tile z%d-%d-%d (features: %d, points: %d, simplified: %d)\",e,r,n,f.numFeatures,f.numPoints,f.numSimplified),console.timeEnd(\"creation\"));var p=\"z\"+e;this.stats[p]=(this.stats[p]||0)+1,this.total++}if(f.source=t,a){if(e===l.maxZoom||e===a)continue;var d=1<<a-e;if(r!==Math.floor(i/d)||n!==Math.floor(o/d))continue}else if(e===l.indexMaxZoom||f.numPoints<=l.indexMaxPoints)continue;if(f.source=null,0!==t.length){c>1&&console.time(\"clipping\");var g,v,m,y,x,b,_=.5*l.buffer/l.extent,w=.5-_,k=.5+_,T=1+_;g=v=m=y=null,x=ht(t,u,r-_,r+k,0,f.minX,f.maxX,l),b=ht(t,u,r+w,r+T,0,f.minX,f.maxX,l),t=null,x&&(g=ht(x,u,n-_,n+k,1,f.minY,f.maxY,l),v=ht(x,u,n+w,n+T,1,f.minY,f.maxY,l),x=null),b&&(m=ht(b,u,n-_,n+k,1,f.minY,f.maxY,l),y=ht(b,u,n+w,n+T,1,f.minY,f.maxY,l),b=null),c>1&&console.timeEnd(\"clipping\"),s.push(g||[],e+1,2*r,2*n),s.push(v||[],e+1,2*r,2*n+1),s.push(m||[],e+1,2*r+1,2*n),s.push(y||[],e+1,2*r+1,2*n+1)}}},Mt.prototype.getTile=function(t,e,r){var n=this.options,a=n.extent,i=n.debug;if(t<0||t>24)return null;var o=1<<t,s=St(t,e=(e%o+o)%o,r);if(this.tiles[s])return _t(this.tiles[s],a);i>1&&console.log(\"drilling down to z%d-%d-%d\",t,e,r);for(var l,c=t,u=e,h=r;!l&&c>0;)c--,u=Math.floor(u/2),h=Math.floor(h/2),l=this.tiles[St(c,u,h)];return l&&l.source?(i>1&&console.log(\"found parent tile z%d-%d-%d\",c,u,h),i>1&&console.time(\"drilling down\"),this.splitTile(l.source,c,u,h,t,e,r),i>1&&console.timeEnd(\"drilling down\"),this.tiles[s]?_t(this.tiles[s],a):null):null};var Ct=function(e){function r(t,r,n){e.call(this,t,r,Et),n&&(this.loadGeoJSON=n)}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.loadData=function(t,e){this._pendingCallback&&this._pendingCallback(null,{abandoned:!0}),this._pendingCallback=e,this._pendingLoadDataParams=t,this._state&&\"Idle\"!==this._state?this._state=\"NeedsLoadData\":(this._state=\"Coalescing\",this._loadData())},r.prototype._loadData=function(){var e=this;if(this._pendingCallback&&this._pendingLoadDataParams){var r=this._pendingCallback,n=this._pendingLoadDataParams;delete this._pendingCallback,delete this._pendingLoadDataParams;var a=!!(n&&n.request&&n.request.collectResourceTiming)&&new l.Performance(n.request);this.loadGeoJSON(n,function(i,o){if(i||!o)return r(i);if(\"object\"!=typeof o)return r(new Error(\"Input data given to '\"+n.source+\"' is not a valid GeoJSON object.\"));!function t(e,r){switch(e&&e.type||null){case\"FeatureCollection\":return e.features=e.features.map(y(t,r)),e;case\"GeometryCollection\":return e.geometries=e.geometries.map(y(t,r)),e;case\"Feature\":return e.geometry=t(e.geometry,r),e;case\"Polygon\":case\"MultiPolygon\":return function(t,e){return\"Polygon\"===t.type?t.coordinates=x(t.coordinates,e):\"MultiPolygon\"===t.type&&(t.coordinates=t.coordinates.map(y(x,e))),t}(e,r);default:return e}}(o,!0);try{e._geoJSONIndex=n.cluster?new Y(function(e){var r=e.superclusterOptions,n=e.clusterProperties;if(!n||!r)return r;for(var a={},i={},o={accumulated:null,zoom:0},s={properties:null},l=Object.keys(n),c=0,u=l;c<u.length;c+=1){var h=u[c],f=n[h],p=f[0],d=f[1],g=t.createExpression(d),v=t.createExpression(\"string\"==typeof p?[p,[\"accumulated\"],[\"get\",h]]:p);a[h]=g.value,i[h]=v.value}return r.map=function(t){s.properties=t;for(var e={},r=0,n=l;r<n.length;r+=1){var i=n[r];e[i]=a[i].evaluate(o,s)}return e},r.reduce=function(t,e){s.properties=e;for(var r=0,n=l;r<n.length;r+=1){var a=n[r];o.accumulated=t[a],t[a]=i[a].evaluate(o,s)}},r}(n)).load(o.features):new Mt(o,n.geojsonVtOptions)}catch(i){return r(i)}e.loaded={};var s={};if(a){var l=a.finish();l&&(s.resourceTiming={},s.resourceTiming[n.source]=JSON.parse(JSON.stringify(l)))}r(null,s)})}},r.prototype.coalesce=function(){\"Coalescing\"===this._state?this._state=\"Idle\":\"NeedsLoadData\"===this._state&&(this._state=\"Coalescing\",this._loadData())},r.prototype.reloadTile=function(t,r){var n=this.loaded,a=t.uid;return n&&n[a]?e.prototype.reloadTile.call(this,t,r):this.loadTile(t,r)},r.prototype.loadGeoJSON=function(e,r){if(e.request)t.getJSON(e.request,r);else{if(\"string\"!=typeof e.data)return r(new Error(\"Input data given to '\"+e.source+\"' is not a valid GeoJSON object.\"));try{return r(null,JSON.parse(e.data))}catch(t){return r(new Error(\"Input data given to '\"+e.source+\"' is not a valid GeoJSON object.\"))}}},r.prototype.removeSource=function(t,e){this._pendingCallback&&this._pendingCallback(null,{abandoned:!0}),e()},r.prototype.getClusterExpansionZoom=function(t,e){e(null,this._geoJSONIndex.getClusterExpansionZoom(t.clusterId))},r.prototype.getClusterChildren=function(t,e){e(null,this._geoJSONIndex.getChildren(t.clusterId))},r.prototype.getClusterLeaves=function(t,e){e(null,this._geoJSONIndex.getLeaves(t.clusterId,t.limit,t.offset))},r}(h),Lt=function(e){var r=this;this.self=e,this.actor=new t.Actor(e,this),this.layerIndexes={},this.workerSourceTypes={vector:h,geojson:Ct},this.workerSources={},this.demWorkerSources={},this.self.registerWorkerSource=function(t,e){if(r.workerSourceTypes[t])throw new Error('Worker source with name \"'+t+'\" already registered.');r.workerSourceTypes[t]=e},this.self.registerRTLTextPlugin=function(e){if(t.plugin.isLoaded())throw new Error(\"RTL text plugin already registered.\");t.plugin.applyArabicShaping=e.applyArabicShaping,t.plugin.processBidirectionalText=e.processBidirectionalText,t.plugin.processStyledBidirectionalText=e.processStyledBidirectionalText}};return Lt.prototype.setReferrer=function(t,e){this.referrer=e},Lt.prototype.setLayers=function(t,e,r){this.getLayerIndex(t).replace(e),r()},Lt.prototype.updateLayers=function(t,e,r){this.getLayerIndex(t).update(e.layers,e.removedIds),r()},Lt.prototype.loadTile=function(t,e,r){this.getWorkerSource(t,e.type,e.source).loadTile(e,r)},Lt.prototype.loadDEMTile=function(t,e,r){this.getDEMWorkerSource(t,e.source).loadTile(e,r)},Lt.prototype.reloadTile=function(t,e,r){this.getWorkerSource(t,e.type,e.source).reloadTile(e,r)},Lt.prototype.abortTile=function(t,e,r){this.getWorkerSource(t,e.type,e.source).abortTile(e,r)},Lt.prototype.removeTile=function(t,e,r){this.getWorkerSource(t,e.type,e.source).removeTile(e,r)},Lt.prototype.removeDEMTile=function(t,e){this.getDEMWorkerSource(t,e.source).removeTile(e)},Lt.prototype.removeSource=function(t,e,r){if(this.workerSources[t]&&this.workerSources[t][e.type]&&this.workerSources[t][e.type][e.source]){var n=this.workerSources[t][e.type][e.source];delete this.workerSources[t][e.type][e.source],void 0!==n.removeSource?n.removeSource(e,r):r()}},Lt.prototype.loadWorkerSource=function(t,e,r){try{this.self.importScripts(e.url),r()}catch(t){r(t.toString())}},Lt.prototype.loadRTLTextPlugin=function(e,r,n){try{t.plugin.isLoaded()||(this.self.importScripts(r),n(t.plugin.isLoaded()?null:new Error(\"RTL Text Plugin failed to import scripts from \"+r)))}catch(t){n(t.toString())}},Lt.prototype.getLayerIndex=function(t){var e=this.layerIndexes[t];return e||(e=this.layerIndexes[t]=new n),e},Lt.prototype.getWorkerSource=function(t,e,r){var n=this;if(this.workerSources[t]||(this.workerSources[t]={}),this.workerSources[t][e]||(this.workerSources[t][e]={}),!this.workerSources[t][e][r]){var a={send:function(e,r,a){n.actor.send(e,r,a,t)}};this.workerSources[t][e][r]=new this.workerSourceTypes[e](a,this.getLayerIndex(t))}return this.workerSources[t][e][r]},Lt.prototype.getDEMWorkerSource=function(t,e){return this.demWorkerSources[t]||(this.demWorkerSources[t]={}),this.demWorkerSources[t][e]||(this.demWorkerSources[t][e]=new f),this.demWorkerSources[t][e]},Lt.prototype.enforceCacheSizeLimit=function(e,r){t.enforceCacheSizeLimit(r)},\"undefined\"!=typeof WorkerGlobalScope&&void 0!==t.window&&t.window instanceof WorkerGlobalScope&&(t.window.worker=new Lt(t.window)),Lt}),n(0,function(t){var e=t.createCommonjsModule(function(t){function e(t){return!!(\"undefined\"!=typeof window&&\"undefined\"!=typeof document&&Array.prototype&&Array.prototype.every&&Array.prototype.filter&&Array.prototype.forEach&&Array.prototype.indexOf&&Array.prototype.lastIndexOf&&Array.prototype.map&&Array.prototype.some&&Array.prototype.reduce&&Array.prototype.reduceRight&&Array.isArray&&Function.prototype&&Function.prototype.bind&&Object.keys&&Object.create&&Object.getPrototypeOf&&Object.getOwnPropertyNames&&Object.isSealed&&Object.isFrozen&&Object.isExtensible&&Object.getOwnPropertyDescriptor&&Object.defineProperty&&Object.defineProperties&&Object.seal&&Object.freeze&&Object.preventExtensions&&\"JSON\"in window&&\"parse\"in JSON&&\"stringify\"in JSON&&function(){if(!(\"Worker\"in window&&\"Blob\"in window&&\"URL\"in window))return!1;var t,e,r=new Blob([\"\"],{type:\"text/javascript\"}),n=URL.createObjectURL(r);try{e=new Worker(n),t=!0}catch(e){t=!1}return e&&e.terminate(),URL.revokeObjectURL(n),t}()&&\"Uint8ClampedArray\"in window&&ArrayBuffer.isView&&function(t){return void 0===r[t]&&(r[t]=function(t){var r=document.createElement(\"canvas\"),n=Object.create(e.webGLContextAttributes);return n.failIfMajorPerformanceCaveat=t,r.probablySupportsContext?r.probablySupportsContext(\"webgl\",n)||r.probablySupportsContext(\"experimental-webgl\",n):r.supportsContext?r.supportsContext(\"webgl\",n)||r.supportsContext(\"experimental-webgl\",n):r.getContext(\"webgl\",n)||r.getContext(\"experimental-webgl\",n)}(t)),r[t]}(t&&t.failIfMajorPerformanceCaveat))}t.exports?t.exports=e:window&&(window.mapboxgl=window.mapboxgl||{},window.mapboxgl.supported=e);var r={};e.webGLContextAttributes={antialias:!1,alpha:!0,stencil:!0,depth:!0}}),r={create:function(e,r,n){var a=t.window.document.createElement(e);return void 0!==r&&(a.className=r),n&&n.appendChild(a),a},createNS:function(e,r){return t.window.document.createElementNS(e,r)}},n=t.window.document.documentElement.style;function a(t){if(!n)return t[0];for(var e=0;e<t.length;e++)if(t[e]in n)return t[e];return t[0]}var i,o=a([\"userSelect\",\"MozUserSelect\",\"WebkitUserSelect\",\"msUserSelect\"]);r.disableDrag=function(){n&&o&&(i=n[o],n[o]=\"none\")},r.enableDrag=function(){n&&o&&(n[o]=i)};var s=a([\"transform\",\"WebkitTransform\"]);r.setTransform=function(t,e){t.style[s]=e};var l=!1;try{var c=Object.defineProperty({},\"passive\",{get:function(){l=!0}});t.window.addEventListener(\"test\",c,c),t.window.removeEventListener(\"test\",c,c)}catch(t){l=!1}r.addEventListener=function(t,e,r,n){void 0===n&&(n={}),\"passive\"in n&&l?t.addEventListener(e,r,n):t.addEventListener(e,r,n.capture)},r.removeEventListener=function(t,e,r,n){void 0===n&&(n={}),\"passive\"in n&&l?t.removeEventListener(e,r,n):t.removeEventListener(e,r,n.capture)};var u=function(e){e.preventDefault(),e.stopPropagation(),t.window.removeEventListener(\"click\",u,!0)};function h(t){var e=t.userImage;return!!(e&&e.render&&e.render())&&(t.data.replace(new Uint8Array(e.data.buffer)),!0)}r.suppressClick=function(){t.window.addEventListener(\"click\",u,!0),t.window.setTimeout(function(){t.window.removeEventListener(\"click\",u,!0)},0)},r.mousePos=function(e,r){var n=e.getBoundingClientRect(),a=t.window.TouchEvent&&r instanceof t.window.TouchEvent?r.touches[0]:r;return new t.Point(a.clientX-n.left-e.clientLeft,a.clientY-n.top-e.clientTop)},r.touchPos=function(e,r){for(var n=e.getBoundingClientRect(),a=[],i=\"touchend\"===r.type?r.changedTouches:r.touches,o=0;o<i.length;o++)a.push(new t.Point(i[o].clientX-n.left-e.clientLeft,i[o].clientY-n.top-e.clientTop));return a},r.mouseButton=function(e){return void 0!==t.window.InstallTrigger&&2===e.button&&e.ctrlKey&&t.window.navigator.platform.toUpperCase().indexOf(\"MAC\")>=0?0:e.button},r.remove=function(t){t.parentNode&&t.parentNode.removeChild(t)};var f=function(e){function r(){e.call(this),this.images={},this.updatedImages={},this.callbackDispatchedThisFrame={},this.loaded=!1,this.requestors=[],this.patterns={},this.atlasImage=new t.RGBAImage({width:1,height:1}),this.dirty=!0}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.isLoaded=function(){return this.loaded},r.prototype.setLoaded=function(t){if(this.loaded!==t&&(this.loaded=t,t)){for(var e=0,r=this.requestors;e<r.length;e+=1){var n=r[e],a=n.ids,i=n.callback;this._notify(a,i)}this.requestors=[]}},r.prototype.getImage=function(t){return this.images[t]},r.prototype.addImage=function(t,e){this.images[t]=e},r.prototype.updateImage=function(t,e){var r=this.images[t];e.version=r.version+1,this.images[t]=e,this.updatedImages[t]=!0},r.prototype.removeImage=function(t){var e=this.images[t];delete this.images[t],delete this.patterns[t],e.userImage&&e.userImage.onRemove&&e.userImage.onRemove()},r.prototype.listImages=function(){return Object.keys(this.images)},r.prototype.getImages=function(t,e){var r=!0;if(!this.isLoaded())for(var n=0,a=t;n<a.length;n+=1){var i=a[n];this.images[i]||(r=!1)}this.isLoaded()||r?this._notify(t,e):this.requestors.push({ids:t,callback:e})},r.prototype._notify=function(e,r){for(var n={},a=0,i=e;a<i.length;a+=1){var o=i[a];this.images[o]||this.fire(new t.Event(\"styleimagemissing\",{id:o}));var s=this.images[o];s?n[o]={data:s.data.clone(),pixelRatio:s.pixelRatio,sdf:s.sdf,version:s.version,hasRenderCallback:Boolean(s.userImage&&s.userImage.render)}:t.warnOnce('Image \"'+o+'\" could not be loaded. Please make sure you have added the image with map.addImage() or a \"sprite\" property in your style. You can provide missing images by listening for the \"styleimagemissing\" map event.')}r(null,n)},r.prototype.getPixelSize=function(){var t=this.atlasImage;return{width:t.width,height:t.height}},r.prototype.getPattern=function(e){var r=this.patterns[e],n=this.getImage(e);if(!n)return null;if(r&&r.position.version===n.version)return r.position;if(r)r.position.version=n.version;else{var a={w:n.data.width+2,h:n.data.height+2,x:0,y:0},i=new t.ImagePosition(a,n);this.patterns[e]={bin:a,position:i}}return this._updatePatternAtlas(),this.patterns[e].position},r.prototype.bind=function(e){var r=e.gl;this.atlasTexture?this.dirty&&(this.atlasTexture.update(this.atlasImage),this.dirty=!1):this.atlasTexture=new t.Texture(e,this.atlasImage,r.RGBA),this.atlasTexture.bind(r.LINEAR,r.CLAMP_TO_EDGE)},r.prototype._updatePatternAtlas=function(){var e=[];for(var r in this.patterns)e.push(this.patterns[r].bin);var n=t.potpack(e),a=n.w,i=n.h,o=this.atlasImage;for(var s in o.resize({width:a||1,height:i||1}),this.patterns){var l=this.patterns[s].bin,c=l.x+1,u=l.y+1,h=this.images[s].data,f=h.width,p=h.height;t.RGBAImage.copy(h,o,{x:0,y:0},{x:c,y:u},{width:f,height:p}),t.RGBAImage.copy(h,o,{x:0,y:p-1},{x:c,y:u-1},{width:f,height:1}),t.RGBAImage.copy(h,o,{x:0,y:0},{x:c,y:u+p},{width:f,height:1}),t.RGBAImage.copy(h,o,{x:f-1,y:0},{x:c-1,y:u},{width:1,height:p}),t.RGBAImage.copy(h,o,{x:0,y:0},{x:c+f,y:u},{width:1,height:p})}this.dirty=!0},r.prototype.beginFrame=function(){this.callbackDispatchedThisFrame={}},r.prototype.dispatchRenderCallbacks=function(t){for(var e=0,r=t;e<r.length;e+=1){var n=r[e];if(!this.callbackDispatchedThisFrame[n]){this.callbackDispatchedThisFrame[n]=!0;var a=this.images[n];h(a)&&this.updateImage(n,a)}}},r}(t.Evented),p=v,d=v,g=1e20;function v(t,e,r,n,a,i){this.fontSize=t||24,this.buffer=void 0===e?3:e,this.cutoff=n||.25,this.fontFamily=a||\"sans-serif\",this.fontWeight=i||\"normal\",this.radius=r||8;var o=this.size=this.fontSize+2*this.buffer;this.canvas=document.createElement(\"canvas\"),this.canvas.width=this.canvas.height=o,this.ctx=this.canvas.getContext(\"2d\"),this.ctx.font=this.fontWeight+\" \"+this.fontSize+\"px \"+this.fontFamily,this.ctx.textBaseline=\"middle\",this.ctx.fillStyle=\"black\",this.gridOuter=new Float64Array(o*o),this.gridInner=new Float64Array(o*o),this.f=new Float64Array(o),this.d=new Float64Array(o),this.z=new Float64Array(o+1),this.v=new Int16Array(o),this.middle=Math.round(o/2*(navigator.userAgent.indexOf(\"Gecko/\")>=0?1.2:1))}function m(t,e,r,n,a,i,o){for(var s=0;s<e;s++){for(var l=0;l<r;l++)n[l]=t[l*e+s];for(y(n,a,i,o,r),l=0;l<r;l++)t[l*e+s]=a[l]}for(l=0;l<r;l++){for(s=0;s<e;s++)n[s]=t[l*e+s];for(y(n,a,i,o,e),s=0;s<e;s++)t[l*e+s]=Math.sqrt(a[s])}}function y(t,e,r,n,a){r[0]=0,n[0]=-g,n[1]=+g;for(var i=1,o=0;i<a;i++){for(var s=(t[i]+i*i-(t[r[o]]+r[o]*r[o]))/(2*i-2*r[o]);s<=n[o];)o--,s=(t[i]+i*i-(t[r[o]]+r[o]*r[o]))/(2*i-2*r[o]);r[++o]=i,n[o]=s,n[o+1]=+g}for(i=0,o=0;i<a;i++){for(;n[o+1]<i;)o++;e[i]=(i-r[o])*(i-r[o])+t[r[o]]}}v.prototype.draw=function(t){this.ctx.clearRect(0,0,this.size,this.size),this.ctx.fillText(t,this.buffer,this.middle);for(var e=this.ctx.getImageData(0,0,this.size,this.size),r=new Uint8ClampedArray(this.size*this.size),n=0;n<this.size*this.size;n++){var a=e.data[4*n+3]/255;this.gridOuter[n]=1===a?0:0===a?g:Math.pow(Math.max(0,.5-a),2),this.gridInner[n]=1===a?g:0===a?0:Math.pow(Math.max(0,a-.5),2)}for(m(this.gridOuter,this.size,this.size,this.f,this.d,this.v,this.z),m(this.gridInner,this.size,this.size,this.f,this.d,this.v,this.z),n=0;n<this.size*this.size;n++){var i=this.gridOuter[n]-this.gridInner[n];r[n]=Math.max(0,Math.min(255,Math.round(255-255*(i/this.radius+this.cutoff))))}return r},p.default=d;var x=function(t,e){this.requestManager=t,this.localIdeographFontFamily=e,this.entries={}};x.prototype.setURL=function(t){this.url=t},x.prototype.getGlyphs=function(e,r){var n=this,a=[];for(var i in e)for(var o=0,s=e[i];o<s.length;o+=1){var l=s[o];a.push({stack:i,id:l})}t.asyncAll(a,function(t,e){var r=t.stack,a=t.id,i=n.entries[r];i||(i=n.entries[r]={glyphs:{},requests:{}});var o=i.glyphs[a];if(void 0===o){if(o=n._tinySDF(i,r,a))return i.glyphs[a]=o,void e(null,{stack:r,id:a,glyph:o});var s=Math.floor(a/256);if(256*s>65535)e(new Error(\"glyphs > 65535 not supported\"));else{var l=i.requests[s];l||(l=i.requests[s]=[],x.loadGlyphRange(r,s,n.url,n.requestManager,function(t,e){if(e)for(var r in e)n._doesCharSupportLocalGlyph(+r)||(i.glyphs[+r]=e[+r]);for(var a=0,o=l;a<o.length;a+=1)(0,o[a])(t,e);delete i.requests[s]})),l.push(function(t,n){t?e(t):n&&e(null,{stack:r,id:a,glyph:n[a]||null})})}}else e(null,{stack:r,id:a,glyph:o})},function(t,e){if(t)r(t);else if(e){for(var n={},a=0,i=e;a<i.length;a+=1){var o=i[a],s=o.stack,l=o.id,c=o.glyph;(n[s]||(n[s]={}))[l]=c&&{id:c.id,bitmap:c.bitmap.clone(),metrics:c.metrics}}r(null,n)}})},x.prototype._doesCharSupportLocalGlyph=function(e){return!!this.localIdeographFontFamily&&(t.isChar[\"CJK Unified Ideographs\"](e)||t.isChar[\"Hangul Syllables\"](e)||t.isChar.Hiragana(e)||t.isChar.Katakana(e))},x.prototype._tinySDF=function(e,r,n){var a=this.localIdeographFontFamily;if(a&&this._doesCharSupportLocalGlyph(n)){var i=e.tinySDF;if(!i){var o=\"400\";/bold/i.test(r)?o=\"900\":/medium/i.test(r)?o=\"500\":/light/i.test(r)&&(o=\"200\"),i=e.tinySDF=new x.TinySDF(24,3,8,.25,a,o)}return{id:n,bitmap:new t.AlphaImage({width:30,height:30},i.draw(String.fromCharCode(n))),metrics:{width:24,height:24,left:0,top:-8,advance:24}}}},x.loadGlyphRange=function(e,r,n,a,i){var o=256*r,s=o+255,l=a.transformRequest(a.normalizeGlyphsURL(n).replace(\"{fontstack}\",e).replace(\"{range}\",o+\"-\"+s),t.ResourceType.Glyphs);t.getArrayBuffer(l,function(e,r){if(e)i(e);else if(r){for(var n={},a=0,o=t.parseGlyphPBF(r);a<o.length;a+=1){var s=o[a];n[s.id]=s}i(null,n)}})},x.TinySDF=p;var b=function(){this.specification=t.styleSpec.light.position};b.prototype.possiblyEvaluate=function(e,r){return t.sphericalToCartesian(e.expression.evaluate(r))},b.prototype.interpolate=function(e,r,n){return{x:t.number(e.x,r.x,n),y:t.number(e.y,r.y,n),z:t.number(e.z,r.z,n)}};var _=new t.Properties({anchor:new t.DataConstantProperty(t.styleSpec.light.anchor),position:new b,color:new t.DataConstantProperty(t.styleSpec.light.color),intensity:new t.DataConstantProperty(t.styleSpec.light.intensity)}),w=function(e){function r(r){e.call(this),this._transitionable=new t.Transitionable(_),this.setLight(r),this._transitioning=this._transitionable.untransitioned()}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.getLight=function(){return this._transitionable.serialize()},r.prototype.setLight=function(e,r){if(void 0===r&&(r={}),!this._validate(t.validateLight,e,r))for(var n in e){var a=e[n];t.endsWith(n,\"-transition\")?this._transitionable.setTransition(n.slice(0,-\"-transition\".length),a):this._transitionable.setValue(n,a)}},r.prototype.updateTransitions=function(t){this._transitioning=this._transitionable.transitioned(t,this._transitioning)},r.prototype.hasTransition=function(){return this._transitioning.hasTransition()},r.prototype.recalculate=function(t){this.properties=this._transitioning.possiblyEvaluate(t)},r.prototype._validate=function(e,r,n){return(!n||!1!==n.validate)&&t.emitValidationErrors(this,e.call(t.validateStyle,t.extend({value:r,style:{glyphs:!0,sprite:!0},styleSpec:t.styleSpec})))},r}(t.Evented),k=function(t,e){this.width=t,this.height=e,this.nextRow=0,this.bytes=4,this.data=new Uint8Array(this.width*this.height*this.bytes),this.positions={}};k.prototype.getDash=function(t,e){var r=t.join(\",\")+String(e);return this.positions[r]||(this.positions[r]=this.addDash(t,e)),this.positions[r]},k.prototype.addDash=function(e,r){var n=r?7:0,a=2*n+1;if(this.nextRow+a>this.height)return t.warnOnce(\"LineAtlas out of space\"),null;for(var i=0,o=0;o<e.length;o++)i+=e[o];for(var s=this.width/i,l=s/2,c=e.length%2==1,u=-n;u<=n;u++)for(var h=this.nextRow+n+u,f=this.width*h,p=c?-e[e.length-1]:0,d=e[0],g=1,v=0;v<this.width;v++){for(;d<v/s;)p=d,d+=e[g],c&&g===e.length-1&&(d+=e[0]),g++;var m=Math.abs(v-p*s),y=Math.abs(v-d*s),x=Math.min(m,y),b=g%2==1,_=void 0;if(r){var w=n?u/n*(l+1):0;if(b){var k=l-Math.abs(w);_=Math.sqrt(x*x+k*k)}else _=l-Math.sqrt(x*x+w*w)}else _=(b?1:-1)*x;this.data[3+4*(f+v)]=Math.max(0,Math.min(255,_+128))}var T={y:(this.nextRow+n+.5)/this.height,height:2*n/this.height,width:i};return this.nextRow+=a,this.dirty=!0,T},k.prototype.bind=function(t){var e=t.gl;this.texture?(e.bindTexture(e.TEXTURE_2D,this.texture),this.dirty&&(this.dirty=!1,e.texSubImage2D(e.TEXTURE_2D,0,0,0,this.width,this.height,e.RGBA,e.UNSIGNED_BYTE,this.data))):(this.texture=e.createTexture(),e.bindTexture(e.TEXTURE_2D,this.texture),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_WRAP_S,e.REPEAT),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_WRAP_T,e.REPEAT),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MIN_FILTER,e.LINEAR),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MAG_FILTER,e.LINEAR),e.texImage2D(e.TEXTURE_2D,0,e.RGBA,this.width,this.height,0,e.RGBA,e.UNSIGNED_BYTE,this.data))};var T=function e(r,n){this.workerPool=r,this.actors=[],this.currentActor=0,this.id=t.uniqueId();for(var a=this.workerPool.acquire(this.id),i=0;i<a.length;i++){var o=a[i],s=new e.Actor(o,n,this.id);s.name=\"Worker \"+i,this.actors.push(s)}};function A(e,r,n){var a=function(a,i){if(a)return n(a);if(i){var o=t.pick(t.extend(i,e),[\"tiles\",\"minzoom\",\"maxzoom\",\"attribution\",\"mapbox_logo\",\"bounds\",\"scheme\",\"tileSize\",\"encoding\"]);i.vector_layers&&(o.vectorLayers=i.vector_layers,o.vectorLayerIds=o.vectorLayers.map(function(t){return t.id})),e.url&&(o.tiles=r.canonicalizeTileset(o,e.url)),n(null,o)}};return e.url?t.getJSON(r.transformRequest(r.normalizeSourceURL(e.url),t.ResourceType.Source),a):t.browser.frame(function(){return a(null,e)})}T.prototype.broadcast=function(e,r,n){n=n||function(){},t.asyncAll(this.actors,function(t,n){t.send(e,r,n)},n)},T.prototype.getActor=function(){return this.currentActor=(this.currentActor+1)%this.actors.length,this.actors[this.currentActor]},T.prototype.remove=function(){this.actors.forEach(function(t){t.remove()}),this.actors=[],this.workerPool.release(this.id)},T.Actor=t.Actor;var M=function(e,r,n){this.bounds=t.LngLatBounds.convert(this.validateBounds(e)),this.minzoom=r||0,this.maxzoom=n||24};M.prototype.validateBounds=function(t){return Array.isArray(t)&&4===t.length?[Math.max(-180,t[0]),Math.max(-90,t[1]),Math.min(180,t[2]),Math.min(90,t[3])]:[-180,-90,180,90]},M.prototype.contains=function(e){var r=Math.pow(2,e.z),n=Math.floor(t.mercatorXfromLng(this.bounds.getWest())*r),a=Math.floor(t.mercatorYfromLat(this.bounds.getNorth())*r),i=Math.ceil(t.mercatorXfromLng(this.bounds.getEast())*r),o=Math.ceil(t.mercatorYfromLat(this.bounds.getSouth())*r);return e.x>=n&&e.x<i&&e.y>=a&&e.y<o};var S=function(e){function r(r,n,a,i){if(e.call(this),this.id=r,this.dispatcher=a,this.type=\"vector\",this.minzoom=0,this.maxzoom=22,this.scheme=\"xyz\",this.tileSize=512,this.reparseOverscaled=!0,this.isTileClipped=!0,this._loaded=!1,t.extend(this,t.pick(n,[\"url\",\"scheme\",\"tileSize\"])),this._options=t.extend({type:\"vector\"},n),this._collectResourceTiming=n.collectResourceTiming,512!==this.tileSize)throw new Error(\"vector tile sources must have a tileSize of 512\");this.setEventedParent(i)}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.load=function(){var e=this;this._loaded=!1,this.fire(new t.Event(\"dataloading\",{dataType:\"source\"})),this._tileJSONRequest=A(this._options,this.map._requestManager,function(r,n){e._tileJSONRequest=null,e._loaded=!0,r?e.fire(new t.ErrorEvent(r)):n&&(t.extend(e,n),n.bounds&&(e.tileBounds=new M(n.bounds,e.minzoom,e.maxzoom)),t.postTurnstileEvent(n.tiles,e.map._requestManager._customAccessToken),t.postMapLoadEvent(n.tiles,e.map._getMapId(),e.map._requestManager._skuToken,e.map._requestManager._customAccessToken),e.fire(new t.Event(\"data\",{dataType:\"source\",sourceDataType:\"metadata\"})),e.fire(new t.Event(\"data\",{dataType:\"source\",sourceDataType:\"content\"})))})},r.prototype.loaded=function(){return this._loaded},r.prototype.hasTile=function(t){return!this.tileBounds||this.tileBounds.contains(t.canonical)},r.prototype.onAdd=function(t){this.map=t,this.load()},r.prototype.onRemove=function(){this._tileJSONRequest&&(this._tileJSONRequest.cancel(),this._tileJSONRequest=null)},r.prototype.serialize=function(){return t.extend({},this._options)},r.prototype.loadTile=function(e,r){var n=this.map._requestManager.normalizeTileURL(e.tileID.canonical.url(this.tiles,this.scheme),this.url,null),a={request:this.map._requestManager.transformRequest(n,t.ResourceType.Tile),uid:e.uid,tileID:e.tileID,zoom:e.tileID.overscaledZ,tileSize:this.tileSize*e.tileID.overscaleFactor(),type:this.type,source:this.id,pixelRatio:t.browser.devicePixelRatio,showCollisionBoxes:this.map.showCollisionBoxes};function i(n,a){return delete e.request,e.aborted?r(null):n&&404!==n.status?r(n):(a&&a.resourceTiming&&(e.resourceTiming=a.resourceTiming),this.map._refreshExpiredTiles&&a&&e.setExpiryData(a),e.loadVectorData(a,this.map.painter),t.cacheEntryPossiblyAdded(this.dispatcher),r(null),void(e.reloadCallback&&(this.loadTile(e,e.reloadCallback),e.reloadCallback=null)))}a.request.collectResourceTiming=this._collectResourceTiming,e.actor&&\"expired\"!==e.state?\"loading\"===e.state?e.reloadCallback=r:e.request=e.actor.send(\"reloadTile\",a,i.bind(this)):(e.actor=this.dispatcher.getActor(),e.request=e.actor.send(\"loadTile\",a,i.bind(this)))},r.prototype.abortTile=function(t){t.request&&(t.request.cancel(),delete t.request),t.actor&&t.actor.send(\"abortTile\",{uid:t.uid,type:this.type,source:this.id},void 0)},r.prototype.unloadTile=function(t){t.unloadVectorData(),t.actor&&t.actor.send(\"removeTile\",{uid:t.uid,type:this.type,source:this.id},void 0)},r.prototype.hasTransition=function(){return!1},r}(t.Evented),E=function(e){function r(r,n,a,i){e.call(this),this.id=r,this.dispatcher=a,this.setEventedParent(i),this.type=\"raster\",this.minzoom=0,this.maxzoom=22,this.roundZoom=!0,this.scheme=\"xyz\",this.tileSize=512,this._loaded=!1,this._options=t.extend({type:\"raster\"},n),t.extend(this,t.pick(n,[\"url\",\"scheme\",\"tileSize\"]))}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.load=function(){var e=this;this._loaded=!1,this.fire(new t.Event(\"dataloading\",{dataType:\"source\"})),this._tileJSONRequest=A(this._options,this.map._requestManager,function(r,n){e._tileJSONRequest=null,e._loaded=!0,r?e.fire(new t.ErrorEvent(r)):n&&(t.extend(e,n),n.bounds&&(e.tileBounds=new M(n.bounds,e.minzoom,e.maxzoom)),t.postTurnstileEvent(n.tiles),t.postMapLoadEvent(n.tiles,e.map._getMapId(),e.map._requestManager._skuToken),e.fire(new t.Event(\"data\",{dataType:\"source\",sourceDataType:\"metadata\"})),e.fire(new t.Event(\"data\",{dataType:\"source\",sourceDataType:\"content\"})))})},r.prototype.loaded=function(){return this._loaded},r.prototype.onAdd=function(t){this.map=t,this.load()},r.prototype.onRemove=function(){this._tileJSONRequest&&(this._tileJSONRequest.cancel(),this._tileJSONRequest=null)},r.prototype.serialize=function(){return t.extend({},this._options)},r.prototype.hasTile=function(t){return!this.tileBounds||this.tileBounds.contains(t.canonical)},r.prototype.loadTile=function(e,r){var n=this,a=this.map._requestManager.normalizeTileURL(e.tileID.canonical.url(this.tiles,this.scheme),this.url,this.tileSize);e.request=t.getImage(this.map._requestManager.transformRequest(a,t.ResourceType.Tile),function(a,i){if(delete e.request,e.aborted)e.state=\"unloaded\",r(null);else if(a)e.state=\"errored\",r(a);else if(i){n.map._refreshExpiredTiles&&e.setExpiryData(i),delete i.cacheControl,delete i.expires;var o=n.map.painter.context,s=o.gl;e.texture=n.map.painter.getTileTexture(i.width),e.texture?e.texture.update(i,{useMipmap:!0}):(e.texture=new t.Texture(o,i,s.RGBA,{useMipmap:!0}),e.texture.bind(s.LINEAR,s.CLAMP_TO_EDGE,s.LINEAR_MIPMAP_NEAREST),o.extTextureFilterAnisotropic&&s.texParameterf(s.TEXTURE_2D,o.extTextureFilterAnisotropic.TEXTURE_MAX_ANISOTROPY_EXT,o.extTextureFilterAnisotropicMax)),e.state=\"loaded\",t.cacheEntryPossiblyAdded(n.dispatcher),r(null)}})},r.prototype.abortTile=function(t,e){t.request&&(t.request.cancel(),delete t.request),e()},r.prototype.unloadTile=function(t,e){t.texture&&this.map.painter.saveTileTexture(t.texture),e()},r.prototype.hasTransition=function(){return!1},r}(t.Evented),C=function(e){function r(r,n,a,i){e.call(this,r,n,a,i),this.type=\"raster-dem\",this.maxzoom=22,this._options=t.extend({type:\"raster-dem\"},n),this.encoding=n.encoding||\"mapbox\"}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.serialize=function(){return{type:\"raster-dem\",url:this.url,tileSize:this.tileSize,tiles:this.tiles,bounds:this.bounds,encoding:this.encoding}},r.prototype.loadTile=function(e,r){var n=this.map._requestManager.normalizeTileURL(e.tileID.canonical.url(this.tiles,this.scheme),this.url,this.tileSize);e.request=t.getImage(this.map._requestManager.transformRequest(n,t.ResourceType.Tile),function(n,a){if(delete e.request,e.aborted)e.state=\"unloaded\",r(null);else if(n)e.state=\"errored\",r(n);else if(a){this.map._refreshExpiredTiles&&e.setExpiryData(a),delete a.cacheControl,delete a.expires;var i=t.browser.getImageData(a),o={uid:e.uid,coord:e.tileID,source:this.id,rawImageData:i,encoding:this.encoding};e.actor&&\"expired\"!==e.state||(e.actor=this.dispatcher.getActor(),e.actor.send(\"loadDEMTile\",o,function(t,n){t&&(e.state=\"errored\",r(t)),n&&(e.dem=n,e.needsHillshadePrepare=!0,e.state=\"loaded\",r(null))}.bind(this)))}}.bind(this)),e.neighboringTiles=this._getNeighboringTiles(e.tileID)},r.prototype._getNeighboringTiles=function(e){var r=e.canonical,n=Math.pow(2,r.z),a=(r.x-1+n)%n,i=0===r.x?e.wrap-1:e.wrap,o=(r.x+1+n)%n,s=r.x+1===n?e.wrap+1:e.wrap,l={};return l[new t.OverscaledTileID(e.overscaledZ,i,r.z,a,r.y).key]={backfilled:!1},l[new t.OverscaledTileID(e.overscaledZ,s,r.z,o,r.y).key]={backfilled:!1},r.y>0&&(l[new t.OverscaledTileID(e.overscaledZ,i,r.z,a,r.y-1).key]={backfilled:!1},l[new t.OverscaledTileID(e.overscaledZ,e.wrap,r.z,r.x,r.y-1).key]={backfilled:!1},l[new t.OverscaledTileID(e.overscaledZ,s,r.z,o,r.y-1).key]={backfilled:!1}),r.y+1<n&&(l[new t.OverscaledTileID(e.overscaledZ,i,r.z,a,r.y+1).key]={backfilled:!1},l[new t.OverscaledTileID(e.overscaledZ,e.wrap,r.z,r.x,r.y+1).key]={backfilled:!1},l[new t.OverscaledTileID(e.overscaledZ,s,r.z,o,r.y+1).key]={backfilled:!1}),l},r.prototype.unloadTile=function(t){t.demTexture&&this.map.painter.saveTileTexture(t.demTexture),t.fbo&&(t.fbo.destroy(),delete t.fbo),t.dem&&delete t.dem,delete t.neighboringTiles,t.state=\"unloaded\",t.actor&&t.actor.send(\"removeDEMTile\",{uid:t.uid,source:this.id})},r}(E),L=function(e){function r(r,n,a,i){e.call(this),this.id=r,this.type=\"geojson\",this.minzoom=0,this.maxzoom=18,this.tileSize=512,this.isTileClipped=!0,this.reparseOverscaled=!0,this._removed=!1,this._loaded=!1,this.actor=a.getActor(),this.setEventedParent(i),this._data=n.data,this._options=t.extend({},n),this._collectResourceTiming=n.collectResourceTiming,this._resourceTiming=[],void 0!==n.maxzoom&&(this.maxzoom=n.maxzoom),n.type&&(this.type=n.type),n.attribution&&(this.attribution=n.attribution);var o=t.EXTENT/this.tileSize;this.workerOptions=t.extend({source:this.id,cluster:n.cluster||!1,geojsonVtOptions:{buffer:(void 0!==n.buffer?n.buffer:128)*o,tolerance:(void 0!==n.tolerance?n.tolerance:.375)*o,extent:t.EXTENT,maxZoom:this.maxzoom,lineMetrics:n.lineMetrics||!1,generateId:n.generateId||!1},superclusterOptions:{maxZoom:void 0!==n.clusterMaxZoom?Math.min(n.clusterMaxZoom,this.maxzoom-1):this.maxzoom-1,extent:t.EXTENT,radius:(n.clusterRadius||50)*o,log:!1},clusterProperties:n.clusterProperties},n.workerOptions)}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.load=function(){var e=this;this.fire(new t.Event(\"dataloading\",{dataType:\"source\"})),this._updateWorkerData(function(r){if(r)e.fire(new t.ErrorEvent(r));else{var n={dataType:\"source\",sourceDataType:\"metadata\"};e._collectResourceTiming&&e._resourceTiming&&e._resourceTiming.length>0&&(n.resourceTiming=e._resourceTiming,e._resourceTiming=[]),e.fire(new t.Event(\"data\",n))}})},r.prototype.onAdd=function(t){this.map=t,this.load()},r.prototype.setData=function(e){var r=this;return this._data=e,this.fire(new t.Event(\"dataloading\",{dataType:\"source\"})),this._updateWorkerData(function(e){if(e)r.fire(new t.ErrorEvent(e));else{var n={dataType:\"source\",sourceDataType:\"content\"};r._collectResourceTiming&&r._resourceTiming&&r._resourceTiming.length>0&&(n.resourceTiming=r._resourceTiming,r._resourceTiming=[]),r.fire(new t.Event(\"data\",n))}}),this},r.prototype.getClusterExpansionZoom=function(t,e){return this.actor.send(\"geojson.getClusterExpansionZoom\",{clusterId:t,source:this.id},e),this},r.prototype.getClusterChildren=function(t,e){return this.actor.send(\"geojson.getClusterChildren\",{clusterId:t,source:this.id},e),this},r.prototype.getClusterLeaves=function(t,e,r,n){return this.actor.send(\"geojson.getClusterLeaves\",{source:this.id,clusterId:t,limit:e,offset:r},n),this},r.prototype._updateWorkerData=function(e){var r=this;this._loaded=!1;var n=t.extend({},this.workerOptions),a=this._data;\"string\"==typeof a?(n.request=this.map._requestManager.transformRequest(t.browser.resolveURL(a),t.ResourceType.Source),n.request.collectResourceTiming=this._collectResourceTiming):n.data=JSON.stringify(a),this.actor.send(this.type+\".loadData\",n,function(t,a){r._removed||a&&a.abandoned||(r._loaded=!0,a&&a.resourceTiming&&a.resourceTiming[r.id]&&(r._resourceTiming=a.resourceTiming[r.id].slice(0)),r.actor.send(r.type+\".coalesce\",{source:n.source},null),e(t))})},r.prototype.loaded=function(){return this._loaded},r.prototype.loadTile=function(e,r){var n=this,a=e.actor?\"reloadTile\":\"loadTile\";e.actor=this.actor;var i={type:this.type,uid:e.uid,tileID:e.tileID,zoom:e.tileID.overscaledZ,maxZoom:this.maxzoom,tileSize:this.tileSize,source:this.id,pixelRatio:t.browser.devicePixelRatio,showCollisionBoxes:this.map.showCollisionBoxes};e.request=this.actor.send(a,i,function(t,i){return delete e.request,e.unloadVectorData(),e.aborted?r(null):t?r(t):(e.loadVectorData(i,n.map.painter,\"reloadTile\"===a),r(null))})},r.prototype.abortTile=function(t){t.request&&(t.request.cancel(),delete t.request),t.aborted=!0},r.prototype.unloadTile=function(t){t.unloadVectorData(),this.actor.send(\"removeTile\",{uid:t.uid,type:this.type,source:this.id})},r.prototype.onRemove=function(){this._removed=!0,this.actor.send(\"removeSource\",{type:this.type,source:this.id})},r.prototype.serialize=function(){return t.extend({},this._options,{type:this.type,data:this._data})},r.prototype.hasTransition=function(){return!1},r}(t.Evented),P=function(e){function r(t,r,n,a){e.call(this),this.id=t,this.dispatcher=n,this.coordinates=r.coordinates,this.type=\"image\",this.minzoom=0,this.maxzoom=22,this.tileSize=512,this.tiles={},this._loaded=!1,this.setEventedParent(a),this.options=r}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.load=function(e,r){var n=this;this._loaded=!1,this.fire(new t.Event(\"dataloading\",{dataType:\"source\"})),this.url=this.options.url,t.getImage(this.map._requestManager.transformRequest(this.url,t.ResourceType.Image),function(a,i){n._loaded=!0,a?n.fire(new t.ErrorEvent(a)):i&&(n.image=i,e&&(n.coordinates=e),r&&r(),n._finishLoading())})},r.prototype.loaded=function(){return this._loaded},r.prototype.updateImage=function(t){var e=this;return this.image&&t.url?(this.options.url=t.url,this.load(t.coordinates,function(){e.texture=null}),this):this},r.prototype._finishLoading=function(){this.map&&(this.setCoordinates(this.coordinates),this.fire(new t.Event(\"data\",{dataType:\"source\",sourceDataType:\"metadata\"})))},r.prototype.onAdd=function(t){this.map=t,this.load()},r.prototype.setCoordinates=function(e){var r=this;this.coordinates=e;var n=e.map(t.MercatorCoordinate.fromLngLat);this.tileID=function(e){for(var r=1/0,n=1/0,a=-1/0,i=-1/0,o=0,s=e;o<s.length;o+=1){var l=s[o];r=Math.min(r,l.x),n=Math.min(n,l.y),a=Math.max(a,l.x),i=Math.max(i,l.y)}var c=a-r,u=i-n,h=Math.max(c,u),f=Math.max(0,Math.floor(-Math.log(h)/Math.LN2)),p=Math.pow(2,f);return new t.CanonicalTileID(f,Math.floor((r+a)/2*p),Math.floor((n+i)/2*p))}(n),this.minzoom=this.maxzoom=this.tileID.z;var a=n.map(function(t){return r.tileID.getTilePoint(t)._round()});return this._boundsArray=new t.StructArrayLayout4i8,this._boundsArray.emplaceBack(a[0].x,a[0].y,0,0),this._boundsArray.emplaceBack(a[1].x,a[1].y,t.EXTENT,0),this._boundsArray.emplaceBack(a[3].x,a[3].y,0,t.EXTENT),this._boundsArray.emplaceBack(a[2].x,a[2].y,t.EXTENT,t.EXTENT),this.boundsBuffer&&(this.boundsBuffer.destroy(),delete this.boundsBuffer),this.fire(new t.Event(\"data\",{dataType:\"source\",sourceDataType:\"content\"})),this},r.prototype.prepare=function(){if(0!==Object.keys(this.tiles).length&&this.image){var e=this.map.painter.context,r=e.gl;for(var n in this.boundsBuffer||(this.boundsBuffer=e.createVertexBuffer(this._boundsArray,t.rasterBoundsAttributes.members)),this.boundsSegments||(this.boundsSegments=t.SegmentVector.simpleSegment(0,0,4,2)),this.texture||(this.texture=new t.Texture(e,this.image,r.RGBA),this.texture.bind(r.LINEAR,r.CLAMP_TO_EDGE)),this.tiles){var a=this.tiles[n];\"loaded\"!==a.state&&(a.state=\"loaded\",a.texture=this.texture)}}},r.prototype.loadTile=function(t,e){this.tileID&&this.tileID.equals(t.tileID.canonical)?(this.tiles[String(t.tileID.wrap)]=t,t.buckets={},e(null)):(t.state=\"errored\",e(null))},r.prototype.serialize=function(){return{type:\"image\",url:this.options.url,coordinates:this.coordinates}},r.prototype.hasTransition=function(){return!1},r}(t.Evented),O=function(e){function r(t,r,n,a){e.call(this,t,r,n,a),this.roundZoom=!0,this.type=\"video\",this.options=r}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.load=function(){var e=this;this._loaded=!1;var r=this.options;this.urls=[];for(var n=0,a=r.urls;n<a.length;n+=1){var i=a[n];this.urls.push(this.map._requestManager.transformRequest(i,t.ResourceType.Source).url)}t.getVideo(this.urls,function(r,n){e._loaded=!0,r?e.fire(new t.ErrorEvent(r)):n&&(e.video=n,e.video.loop=!0,e.video.addEventListener(\"playing\",function(){e.map.triggerRepaint()}),e.map&&e.video.play(),e._finishLoading())})},r.prototype.pause=function(){this.video&&this.video.pause()},r.prototype.play=function(){this.video&&this.video.play()},r.prototype.seek=function(e){if(this.video){var r=this.video.seekable;e<r.start(0)||e>r.end(0)?this.fire(new t.ErrorEvent(new t.ValidationError(\"Playback for this video can be set only between the \"+r.start(0)+\" and \"+r.end(0)+\"-second mark.\"))):this.video.currentTime=e}},r.prototype.getVideo=function(){return this.video},r.prototype.onAdd=function(t){this.map||(this.map=t,this.load(),this.video&&(this.video.play(),this.setCoordinates(this.coordinates)))},r.prototype.prepare=function(){if(!(0===Object.keys(this.tiles).length||this.video.readyState<2)){var e=this.map.painter.context,r=e.gl;for(var n in this.boundsBuffer||(this.boundsBuffer=e.createVertexBuffer(this._boundsArray,t.rasterBoundsAttributes.members)),this.boundsSegments||(this.boundsSegments=t.SegmentVector.simpleSegment(0,0,4,2)),this.texture?this.video.paused||(this.texture.bind(r.LINEAR,r.CLAMP_TO_EDGE),r.texSubImage2D(r.TEXTURE_2D,0,0,0,r.RGBA,r.UNSIGNED_BYTE,this.video)):(this.texture=new t.Texture(e,this.video,r.RGBA),this.texture.bind(r.LINEAR,r.CLAMP_TO_EDGE)),this.tiles){var a=this.tiles[n];\"loaded\"!==a.state&&(a.state=\"loaded\",a.texture=this.texture)}}},r.prototype.serialize=function(){return{type:\"video\",urls:this.urls,coordinates:this.coordinates}},r.prototype.hasTransition=function(){return this.video&&!this.video.paused},r}(P),I=function(e){function r(r,n,a,i){e.call(this,r,n,a,i),n.coordinates?Array.isArray(n.coordinates)&&4===n.coordinates.length&&!n.coordinates.some(function(t){return!Array.isArray(t)||2!==t.length||t.some(function(t){return\"number\"!=typeof t})})||this.fire(new t.ErrorEvent(new t.ValidationError(\"sources.\"+r,null,'\"coordinates\" property must be an array of 4 longitude/latitude array pairs'))):this.fire(new t.ErrorEvent(new t.ValidationError(\"sources.\"+r,null,'missing required property \"coordinates\"'))),n.animate&&\"boolean\"!=typeof n.animate&&this.fire(new t.ErrorEvent(new t.ValidationError(\"sources.\"+r,null,'optional \"animate\" property must be a boolean value'))),n.canvas?\"string\"==typeof n.canvas||n.canvas instanceof t.window.HTMLCanvasElement||this.fire(new t.ErrorEvent(new t.ValidationError(\"sources.\"+r,null,'\"canvas\" must be either a string representing the ID of the canvas element from which to read, or an HTMLCanvasElement instance'))):this.fire(new t.ErrorEvent(new t.ValidationError(\"sources.\"+r,null,'missing required property \"canvas\"'))),this.options=n,this.animate=void 0===n.animate||n.animate}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.load=function(){this._loaded=!0,this.canvas||(this.canvas=this.options.canvas instanceof t.window.HTMLCanvasElement?this.options.canvas:t.window.document.getElementById(this.options.canvas)),this.width=this.canvas.width,this.height=this.canvas.height,this._hasInvalidDimensions()?this.fire(new t.ErrorEvent(new Error(\"Canvas dimensions cannot be less than or equal to zero.\"))):(this.play=function(){this._playing=!0,this.map.triggerRepaint()},this.pause=function(){this._playing&&(this.prepare(),this._playing=!1)},this._finishLoading())},r.prototype.getCanvas=function(){return this.canvas},r.prototype.onAdd=function(t){this.map=t,this.load(),this.canvas&&this.animate&&this.play()},r.prototype.onRemove=function(){this.pause()},r.prototype.prepare=function(){var e=!1;if(this.canvas.width!==this.width&&(this.width=this.canvas.width,e=!0),this.canvas.height!==this.height&&(this.height=this.canvas.height,e=!0),!this._hasInvalidDimensions()&&0!==Object.keys(this.tiles).length){var r=this.map.painter.context,n=r.gl;for(var a in this.boundsBuffer||(this.boundsBuffer=r.createVertexBuffer(this._boundsArray,t.rasterBoundsAttributes.members)),this.boundsSegments||(this.boundsSegments=t.SegmentVector.simpleSegment(0,0,4,2)),this.texture?(e||this._playing)&&this.texture.update(this.canvas,{premultiply:!0}):this.texture=new t.Texture(r,this.canvas,n.RGBA,{premultiply:!0}),this.tiles){var i=this.tiles[a];\"loaded\"!==i.state&&(i.state=\"loaded\",i.texture=this.texture)}}},r.prototype.serialize=function(){return{type:\"canvas\",coordinates:this.coordinates}},r.prototype.hasTransition=function(){return this._playing},r.prototype._hasInvalidDimensions=function(){for(var t=0,e=[this.canvas.width,this.canvas.height];t<e.length;t+=1){var r=e[t];if(isNaN(r)||r<=0)return!0}return!1},r}(P),z={vector:S,raster:E,\"raster-dem\":C,geojson:L,video:O,image:P,canvas:I},D=function(e,r,n,a){var i=new z[r.type](e,r,n,a);if(i.id!==e)throw new Error(\"Expected Source id to be \"+e+\" instead of \"+i.id);return t.bindAll([\"load\",\"abort\",\"unload\",\"serialize\",\"prepare\"],i),i};function R(e,r){var n=t.identity([]);return t.translate(n,n,[1,1,0]),t.scale(n,n,[.5*e.width,.5*e.height,1]),t.multiply(n,n,e.calculatePosMatrix(r.toUnwrapped()))}function F(t,e,r,n,a){var i=function(t,e,r){if(t)for(var n=0,a=t;n<a.length;n+=1){var i=e[a[n]];if(i&&i.source===r&&\"fill-extrusion\"===i.type)return!0}else for(var o in e){var s=e[o];if(s.source===r&&\"fill-extrusion\"===s.type)return!0}return!1}(n&&n.layers,e,t.id),o=a.maxPitchScaleFactor(),s=t.tilesIn(r,o,i);s.sort(B);for(var l=[],c=0,u=s;c<u.length;c+=1){var h=u[c];l.push({wrappedTileID:h.tileID.wrapped().key,queryResults:h.tile.queryRenderedFeatures(e,t._state,h.queryGeometry,h.cameraQueryGeometry,h.scale,n,a,o,R(t.transform,h.tileID))})}var f=function(t){for(var e={},r={},n=0,a=t;n<a.length;n+=1){var i=a[n],o=i.queryResults,s=i.wrappedTileID,l=r[s]=r[s]||{};for(var c in o)for(var u=o[c],h=l[c]=l[c]||{},f=e[c]=e[c]||[],p=0,d=u;p<d.length;p+=1){var g=d[p];h[g.featureIndex]||(h[g.featureIndex]=!0,f.push(g))}}return e}(l);for(var p in f)f[p].forEach(function(e){var r=e.feature,n=t.getFeatureState(r.layer[\"source-layer\"],r.id);r.source=r.layer.source,r.layer[\"source-layer\"]&&(r.sourceLayer=r.layer[\"source-layer\"]),r.state=n});return f}function B(t,e){var r=t.tileID,n=e.tileID;return r.overscaledZ-n.overscaledZ||r.canonical.y-n.canonical.y||r.wrap-n.wrap||r.canonical.x-n.canonical.x}var N=function(t,e){this.max=t,this.onRemove=e,this.reset()};N.prototype.reset=function(){for(var t in this.data)for(var e=0,r=this.data[t];e<r.length;e+=1){var n=r[e];n.timeout&&clearTimeout(n.timeout),this.onRemove(n.value)}return this.data={},this.order=[],this},N.prototype.add=function(t,e,r){var n=this,a=t.wrapped().key;void 0===this.data[a]&&(this.data[a]=[]);var i={value:e,timeout:void 0};if(void 0!==r&&(i.timeout=setTimeout(function(){n.remove(t,i)},r)),this.data[a].push(i),this.order.push(a),this.order.length>this.max){var o=this._getAndRemoveByKey(this.order[0]);o&&this.onRemove(o)}return this},N.prototype.has=function(t){return t.wrapped().key in this.data},N.prototype.getAndRemove=function(t){return this.has(t)?this._getAndRemoveByKey(t.wrapped().key):null},N.prototype._getAndRemoveByKey=function(t){var e=this.data[t].shift();return e.timeout&&clearTimeout(e.timeout),0===this.data[t].length&&delete this.data[t],this.order.splice(this.order.indexOf(t),1),e.value},N.prototype.get=function(t){return this.has(t)?this.data[t.wrapped().key][0].value:null},N.prototype.remove=function(t,e){if(!this.has(t))return this;var r=t.wrapped().key,n=void 0===e?0:this.data[r].indexOf(e),a=this.data[r][n];return this.data[r].splice(n,1),a.timeout&&clearTimeout(a.timeout),0===this.data[r].length&&delete this.data[r],this.onRemove(a.value),this.order.splice(this.order.indexOf(r),1),this},N.prototype.setMaxSize=function(t){for(this.max=t;this.order.length>this.max;){var e=this._getAndRemoveByKey(this.order[0]);e&&this.onRemove(e)}return this};var j=function(t,e,r){this.context=t;var n=t.gl;this.buffer=n.createBuffer(),this.dynamicDraw=Boolean(r),this.context.unbindVAO(),t.bindElementBuffer.set(this.buffer),n.bufferData(n.ELEMENT_ARRAY_BUFFER,e.arrayBuffer,this.dynamicDraw?n.DYNAMIC_DRAW:n.STATIC_DRAW),this.dynamicDraw||delete e.arrayBuffer};j.prototype.bind=function(){this.context.bindElementBuffer.set(this.buffer)},j.prototype.updateData=function(t){var e=this.context.gl;this.context.unbindVAO(),this.bind(),e.bufferSubData(e.ELEMENT_ARRAY_BUFFER,0,t.arrayBuffer)},j.prototype.destroy=function(){var t=this.context.gl;this.buffer&&(t.deleteBuffer(this.buffer),delete this.buffer)};var V={Int8:\"BYTE\",Uint8:\"UNSIGNED_BYTE\",Int16:\"SHORT\",Uint16:\"UNSIGNED_SHORT\",Int32:\"INT\",Uint32:\"UNSIGNED_INT\",Float32:\"FLOAT\"},U=function(t,e,r,n){this.length=e.length,this.attributes=r,this.itemSize=e.bytesPerElement,this.dynamicDraw=n,this.context=t;var a=t.gl;this.buffer=a.createBuffer(),t.bindVertexBuffer.set(this.buffer),a.bufferData(a.ARRAY_BUFFER,e.arrayBuffer,this.dynamicDraw?a.DYNAMIC_DRAW:a.STATIC_DRAW),this.dynamicDraw||delete e.arrayBuffer};U.prototype.bind=function(){this.context.bindVertexBuffer.set(this.buffer)},U.prototype.updateData=function(t){var e=this.context.gl;this.bind(),e.bufferSubData(e.ARRAY_BUFFER,0,t.arrayBuffer)},U.prototype.enableAttributes=function(t,e){for(var r=0;r<this.attributes.length;r++){var n=this.attributes[r],a=e.attributes[n.name];void 0!==a&&t.enableVertexAttribArray(a)}},U.prototype.setVertexAttribPointers=function(t,e,r){for(var n=0;n<this.attributes.length;n++){var a=this.attributes[n],i=e.attributes[a.name];void 0!==i&&t.vertexAttribPointer(i,a.components,t[V[a.type]],!1,this.itemSize,a.offset+this.itemSize*(r||0))}},U.prototype.destroy=function(){var t=this.context.gl;this.buffer&&(t.deleteBuffer(this.buffer),delete this.buffer)};var q=function(t){this.gl=t.gl,this.default=this.getDefault(),this.current=this.default,this.dirty=!1};q.prototype.get=function(){return this.current},q.prototype.set=function(t){},q.prototype.getDefault=function(){return this.default},q.prototype.setDefault=function(){this.set(this.default)};var H=function(e){function r(){e.apply(this,arguments)}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.getDefault=function(){return t.Color.transparent},r.prototype.set=function(t){var e=this.current;(t.r!==e.r||t.g!==e.g||t.b!==e.b||t.a!==e.a||this.dirty)&&(this.gl.clearColor(t.r,t.g,t.b,t.a),this.current=t,this.dirty=!1)},r}(q),G=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return 1},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.clearDepth(t),this.current=t,this.dirty=!1)},e}(q),Y=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return 0},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.clearStencil(t),this.current=t,this.dirty=!1)},e}(q),W=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return[!0,!0,!0,!0]},e.prototype.set=function(t){var e=this.current;(t[0]!==e[0]||t[1]!==e[1]||t[2]!==e[2]||t[3]!==e[3]||this.dirty)&&(this.gl.colorMask(t[0],t[1],t[2],t[3]),this.current=t,this.dirty=!1)},e}(q),X=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return!0},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.depthMask(t),this.current=t,this.dirty=!1)},e}(q),Z=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return 255},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.stencilMask(t),this.current=t,this.dirty=!1)},e}(q),J=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return{func:this.gl.ALWAYS,ref:0,mask:255}},e.prototype.set=function(t){var e=this.current;(t.func!==e.func||t.ref!==e.ref||t.mask!==e.mask||this.dirty)&&(this.gl.stencilFunc(t.func,t.ref,t.mask),this.current=t,this.dirty=!1)},e}(q),K=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){var t=this.gl;return[t.KEEP,t.KEEP,t.KEEP]},e.prototype.set=function(t){var e=this.current;(t[0]!==e[0]||t[1]!==e[1]||t[2]!==e[2]||this.dirty)&&(this.gl.stencilOp(t[0],t[1],t[2]),this.current=t,this.dirty=!1)},e}(q),Q=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return!1},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;t?e.enable(e.STENCIL_TEST):e.disable(e.STENCIL_TEST),this.current=t,this.dirty=!1}},e}(q),$=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return[0,1]},e.prototype.set=function(t){var e=this.current;(t[0]!==e[0]||t[1]!==e[1]||this.dirty)&&(this.gl.depthRange(t[0],t[1]),this.current=t,this.dirty=!1)},e}(q),tt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return!1},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;t?e.enable(e.DEPTH_TEST):e.disable(e.DEPTH_TEST),this.current=t,this.dirty=!1}},e}(q),et=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return this.gl.LESS},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.depthFunc(t),this.current=t,this.dirty=!1)},e}(q),rt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return!1},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;t?e.enable(e.BLEND):e.disable(e.BLEND),this.current=t,this.dirty=!1}},e}(q),nt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){var t=this.gl;return[t.ONE,t.ZERO]},e.prototype.set=function(t){var e=this.current;(t[0]!==e[0]||t[1]!==e[1]||this.dirty)&&(this.gl.blendFunc(t[0],t[1]),this.current=t,this.dirty=!1)},e}(q),at=function(e){function r(){e.apply(this,arguments)}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.getDefault=function(){return t.Color.transparent},r.prototype.set=function(t){var e=this.current;(t.r!==e.r||t.g!==e.g||t.b!==e.b||t.a!==e.a||this.dirty)&&(this.gl.blendColor(t.r,t.g,t.b,t.a),this.current=t,this.dirty=!1)},r}(q),it=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return this.gl.FUNC_ADD},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.blendEquation(t),this.current=t,this.dirty=!1)},e}(q),ot=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return!1},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;t?e.enable(e.CULL_FACE):e.disable(e.CULL_FACE),this.current=t,this.dirty=!1}},e}(q),st=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return this.gl.BACK},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.cullFace(t),this.current=t,this.dirty=!1)},e}(q),lt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return this.gl.CCW},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.frontFace(t),this.current=t,this.dirty=!1)},e}(q),ct=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return null},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.useProgram(t),this.current=t,this.dirty=!1)},e}(q),ut=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return this.gl.TEXTURE0},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.activeTexture(t),this.current=t,this.dirty=!1)},e}(q),ht=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){var t=this.gl;return[0,0,t.drawingBufferWidth,t.drawingBufferHeight]},e.prototype.set=function(t){var e=this.current;(t[0]!==e[0]||t[1]!==e[1]||t[2]!==e[2]||t[3]!==e[3]||this.dirty)&&(this.gl.viewport(t[0],t[1],t[2],t[3]),this.current=t,this.dirty=!1)},e}(q),ft=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return null},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;e.bindFramebuffer(e.FRAMEBUFFER,t),this.current=t,this.dirty=!1}},e}(q),pt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return null},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;e.bindRenderbuffer(e.RENDERBUFFER,t),this.current=t,this.dirty=!1}},e}(q),dt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return null},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;e.bindTexture(e.TEXTURE_2D,t),this.current=t,this.dirty=!1}},e}(q),gt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return null},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;e.bindBuffer(e.ARRAY_BUFFER,t),this.current=t,this.dirty=!1}},e}(q),vt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return null},e.prototype.set=function(t){var e=this.gl;e.bindBuffer(e.ELEMENT_ARRAY_BUFFER,t),this.current=t,this.dirty=!1},e}(q),mt=function(t){function e(e){t.call(this,e),this.vao=e.extVertexArrayObject}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return null},e.prototype.set=function(t){this.vao&&(t!==this.current||this.dirty)&&(this.vao.bindVertexArrayOES(t),this.current=t,this.dirty=!1)},e}(q),yt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return 4},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;e.pixelStorei(e.UNPACK_ALIGNMENT,t),this.current=t,this.dirty=!1}},e}(q),xt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return!1},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;e.pixelStorei(e.UNPACK_PREMULTIPLY_ALPHA_WEBGL,t),this.current=t,this.dirty=!1}},e}(q),bt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return!1},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;e.pixelStorei(e.UNPACK_FLIP_Y_WEBGL,t),this.current=t,this.dirty=!1}},e}(q),_t=function(t){function e(e,r){t.call(this,e),this.context=e,this.parent=r}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDefault=function(){return null},e}(q),wt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setDirty=function(){this.dirty=!0},e.prototype.set=function(t){if(t!==this.current||this.dirty){this.context.bindFramebuffer.set(this.parent);var e=this.gl;e.framebufferTexture2D(e.FRAMEBUFFER,e.COLOR_ATTACHMENT0,e.TEXTURE_2D,t,0),this.current=t,this.dirty=!1}},e}(_t),kt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.set=function(t){if(t!==this.current||this.dirty){this.context.bindFramebuffer.set(this.parent);var e=this.gl;e.framebufferRenderbuffer(e.FRAMEBUFFER,e.DEPTH_ATTACHMENT,e.RENDERBUFFER,t),this.current=t,this.dirty=!1}},e}(_t),Tt=function(t,e,r){this.context=t,this.width=e,this.height=r;var n=t.gl,a=this.framebuffer=n.createFramebuffer();this.colorAttachment=new wt(t,a),this.depthAttachment=new kt(t,a)};Tt.prototype.destroy=function(){var t=this.context.gl,e=this.colorAttachment.get();e&&t.deleteTexture(e);var r=this.depthAttachment.get();r&&t.deleteRenderbuffer(r),t.deleteFramebuffer(this.framebuffer)};var At=function(t,e,r){this.func=t,this.mask=e,this.range=r};At.ReadOnly=!1,At.ReadWrite=!0,At.disabled=new At(519,At.ReadOnly,[0,1]);var Mt=function(t,e,r,n,a,i){this.test=t,this.ref=e,this.mask=r,this.fail=n,this.depthFail=a,this.pass=i};Mt.disabled=new Mt({func:519,mask:0},0,0,7680,7680,7680);var St=function(t,e,r){this.blendFunction=t,this.blendColor=e,this.mask=r};St.disabled=new St(St.Replace=[1,0],t.Color.transparent,[!1,!1,!1,!1]),St.unblended=new St(St.Replace,t.Color.transparent,[!0,!0,!0,!0]),St.alphaBlended=new St([1,771],t.Color.transparent,[!0,!0,!0,!0]);var Et=function(t,e,r){this.enable=t,this.mode=e,this.frontFace=r};Et.disabled=new Et(!1,1029,2305),Et.backCCW=new Et(!0,1029,2305);var Ct=function(t){this.gl=t,this.extVertexArrayObject=this.gl.getExtension(\"OES_vertex_array_object\"),this.clearColor=new H(this),this.clearDepth=new G(this),this.clearStencil=new Y(this),this.colorMask=new W(this),this.depthMask=new X(this),this.stencilMask=new Z(this),this.stencilFunc=new J(this),this.stencilOp=new K(this),this.stencilTest=new Q(this),this.depthRange=new $(this),this.depthTest=new tt(this),this.depthFunc=new et(this),this.blend=new rt(this),this.blendFunc=new nt(this),this.blendColor=new at(this),this.blendEquation=new it(this),this.cullFace=new ot(this),this.cullFaceSide=new st(this),this.frontFace=new lt(this),this.program=new ct(this),this.activeTexture=new ut(this),this.viewport=new ht(this),this.bindFramebuffer=new ft(this),this.bindRenderbuffer=new pt(this),this.bindTexture=new dt(this),this.bindVertexBuffer=new gt(this),this.bindElementBuffer=new vt(this),this.bindVertexArrayOES=this.extVertexArrayObject&&new mt(this),this.pixelStoreUnpack=new yt(this),this.pixelStoreUnpackPremultiplyAlpha=new xt(this),this.pixelStoreUnpackFlipY=new bt(this),this.extTextureFilterAnisotropic=t.getExtension(\"EXT_texture_filter_anisotropic\")||t.getExtension(\"MOZ_EXT_texture_filter_anisotropic\")||t.getExtension(\"WEBKIT_EXT_texture_filter_anisotropic\"),this.extTextureFilterAnisotropic&&(this.extTextureFilterAnisotropicMax=t.getParameter(this.extTextureFilterAnisotropic.MAX_TEXTURE_MAX_ANISOTROPY_EXT)),this.extTextureHalfFloat=t.getExtension(\"OES_texture_half_float\"),this.extTextureHalfFloat&&t.getExtension(\"OES_texture_half_float_linear\")};Ct.prototype.setDefault=function(){this.unbindVAO(),this.clearColor.setDefault(),this.clearDepth.setDefault(),this.clearStencil.setDefault(),this.colorMask.setDefault(),this.depthMask.setDefault(),this.stencilMask.setDefault(),this.stencilFunc.setDefault(),this.stencilOp.setDefault(),this.stencilTest.setDefault(),this.depthRange.setDefault(),this.depthTest.setDefault(),this.depthFunc.setDefault(),this.blend.setDefault(),this.blendFunc.setDefault(),this.blendColor.setDefault(),this.blendEquation.setDefault(),this.cullFace.setDefault(),this.cullFaceSide.setDefault(),this.frontFace.setDefault(),this.program.setDefault(),this.activeTexture.setDefault(),this.bindFramebuffer.setDefault(),this.pixelStoreUnpack.setDefault(),this.pixelStoreUnpackPremultiplyAlpha.setDefault(),this.pixelStoreUnpackFlipY.setDefault()},Ct.prototype.setDirty=function(){this.clearColor.dirty=!0,this.clearDepth.dirty=!0,this.clearStencil.dirty=!0,this.colorMask.dirty=!0,this.depthMask.dirty=!0,this.stencilMask.dirty=!0,this.stencilFunc.dirty=!0,this.stencilOp.dirty=!0,this.stencilTest.dirty=!0,this.depthRange.dirty=!0,this.depthTest.dirty=!0,this.depthFunc.dirty=!0,this.blend.dirty=!0,this.blendFunc.dirty=!0,this.blendColor.dirty=!0,this.blendEquation.dirty=!0,this.cullFace.dirty=!0,this.cullFaceSide.dirty=!0,this.frontFace.dirty=!0,this.program.dirty=!0,this.activeTexture.dirty=!0,this.viewport.dirty=!0,this.bindFramebuffer.dirty=!0,this.bindRenderbuffer.dirty=!0,this.bindTexture.dirty=!0,this.bindVertexBuffer.dirty=!0,this.bindElementBuffer.dirty=!0,this.extVertexArrayObject&&(this.bindVertexArrayOES.dirty=!0),this.pixelStoreUnpack.dirty=!0,this.pixelStoreUnpackPremultiplyAlpha.dirty=!0,this.pixelStoreUnpackFlipY.dirty=!0},Ct.prototype.createIndexBuffer=function(t,e){return new j(this,t,e)},Ct.prototype.createVertexBuffer=function(t,e,r){return new U(this,t,e,r)},Ct.prototype.createRenderbuffer=function(t,e,r){var n=this.gl,a=n.createRenderbuffer();return this.bindRenderbuffer.set(a),n.renderbufferStorage(n.RENDERBUFFER,t,e,r),this.bindRenderbuffer.set(null),a},Ct.prototype.createFramebuffer=function(t,e){return new Tt(this,t,e)},Ct.prototype.clear=function(t){var e=t.color,r=t.depth,n=this.gl,a=0;e&&(a|=n.COLOR_BUFFER_BIT,this.clearColor.set(e),this.colorMask.set([!0,!0,!0,!0])),void 0!==r&&(a|=n.DEPTH_BUFFER_BIT,this.depthRange.set([0,1]),this.clearDepth.set(r),this.depthMask.set(!0)),n.clear(a)},Ct.prototype.setCullFace=function(t){!1===t.enable?this.cullFace.set(!1):(this.cullFace.set(!0),this.cullFaceSide.set(t.mode),this.frontFace.set(t.frontFace))},Ct.prototype.setDepthMode=function(t){t.func!==this.gl.ALWAYS||t.mask?(this.depthTest.set(!0),this.depthFunc.set(t.func),this.depthMask.set(t.mask),this.depthRange.set(t.range)):this.depthTest.set(!1)},Ct.prototype.setStencilMode=function(t){t.test.func!==this.gl.ALWAYS||t.mask?(this.stencilTest.set(!0),this.stencilMask.set(t.mask),this.stencilOp.set([t.fail,t.depthFail,t.pass]),this.stencilFunc.set({func:t.test.func,ref:t.ref,mask:t.test.mask})):this.stencilTest.set(!1)},Ct.prototype.setColorMode=function(e){t.deepEqual(e.blendFunction,St.Replace)?this.blend.set(!1):(this.blend.set(!0),this.blendFunc.set(e.blendFunction),this.blendColor.set(e.blendColor)),this.colorMask.set(e.mask)},Ct.prototype.unbindVAO=function(){this.extVertexArrayObject&&this.bindVertexArrayOES.set(null)};var Lt=function(e){function r(r,n,a){var i=this;e.call(this),this.id=r,this.dispatcher=a,this.on(\"data\",function(t){\"source\"===t.dataType&&\"metadata\"===t.sourceDataType&&(i._sourceLoaded=!0),i._sourceLoaded&&!i._paused&&\"source\"===t.dataType&&\"content\"===t.sourceDataType&&(i.reload(),i.transform&&i.update(i.transform))}),this.on(\"error\",function(){i._sourceErrored=!0}),this._source=D(r,n,a,this),this._tiles={},this._cache=new N(0,this._unloadTile.bind(this)),this._timers={},this._cacheTimers={},this._maxTileCacheSize=null,this._coveredTiles={},this._state=new t.SourceFeatureState}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.onAdd=function(t){this.map=t,this._maxTileCacheSize=t?t._maxTileCacheSize:null,this._source&&this._source.onAdd&&this._source.onAdd(t)},r.prototype.onRemove=function(t){this._source&&this._source.onRemove&&this._source.onRemove(t)},r.prototype.loaded=function(){if(this._sourceErrored)return!0;if(!this._sourceLoaded)return!1;if(!this._source.loaded())return!1;for(var t in this._tiles){var e=this._tiles[t];if(\"loaded\"!==e.state&&\"errored\"!==e.state)return!1}return!0},r.prototype.getSource=function(){return this._source},r.prototype.pause=function(){this._paused=!0},r.prototype.resume=function(){if(this._paused){var t=this._shouldReloadOnResume;this._paused=!1,this._shouldReloadOnResume=!1,t&&this.reload(),this.transform&&this.update(this.transform)}},r.prototype._loadTile=function(t,e){return this._source.loadTile(t,e)},r.prototype._unloadTile=function(t){if(this._source.unloadTile)return this._source.unloadTile(t,function(){})},r.prototype._abortTile=function(t){if(this._source.abortTile)return this._source.abortTile(t,function(){})},r.prototype.serialize=function(){return this._source.serialize()},r.prototype.prepare=function(t){for(var e in this._source.prepare&&this._source.prepare(),this._state.coalesceChanges(this._tiles,this.map?this.map.painter:null),this._tiles){var r=this._tiles[e];r.upload(t),r.prepare(this.map.style.imageManager)}},r.prototype.getIds=function(){return Object.keys(this._tiles).map(Number).sort(Pt)},r.prototype.getRenderableIds=function(e){var r=this,n=[];for(var a in this._tiles)this._isIdRenderable(+a,e)&&n.push(+a);return e?n.sort(function(e,n){var a=r._tiles[e].tileID,i=r._tiles[n].tileID,o=new t.Point(a.canonical.x,a.canonical.y)._rotate(r.transform.angle),s=new t.Point(i.canonical.x,i.canonical.y)._rotate(r.transform.angle);return a.overscaledZ-i.overscaledZ||s.y-o.y||s.x-o.x}):n.sort(Pt)},r.prototype.hasRenderableParent=function(t){var e=this.findLoadedParent(t,0);return!!e&&this._isIdRenderable(e.tileID.key)},r.prototype._isIdRenderable=function(t,e){return this._tiles[t]&&this._tiles[t].hasData()&&!this._coveredTiles[t]&&(e||!this._tiles[t].holdingForFade())},r.prototype.reload=function(){if(this._paused)this._shouldReloadOnResume=!0;else for(var t in this._cache.reset(),this._tiles)\"errored\"!==this._tiles[t].state&&this._reloadTile(t,\"reloading\")},r.prototype._reloadTile=function(t,e){var r=this._tiles[t];r&&(\"loading\"!==r.state&&(r.state=e),this._loadTile(r,this._tileLoaded.bind(this,r,t,e)))},r.prototype._tileLoaded=function(e,r,n,a){if(a)return e.state=\"errored\",void(404!==a.status?this._source.fire(new t.ErrorEvent(a,{tile:e})):this.update(this.transform));e.timeAdded=t.browser.now(),\"expired\"===n&&(e.refreshedUponExpiration=!0),this._setTileReloadTimer(r,e),\"raster-dem\"===this.getSource().type&&e.dem&&this._backfillDEM(e),this._state.initializeTileState(e,this.map?this.map.painter:null),this._source.fire(new t.Event(\"data\",{dataType:\"source\",tile:e,coord:e.tileID}))},r.prototype._backfillDEM=function(t){for(var e=this.getRenderableIds(),r=0;r<e.length;r++){var n=e[r];if(t.neighboringTiles&&t.neighboringTiles[n]){var a=this.getTileByID(n);i(t,a),i(a,t)}}function i(t,e){t.needsHillshadePrepare=!0;var r=e.tileID.canonical.x-t.tileID.canonical.x,n=e.tileID.canonical.y-t.tileID.canonical.y,a=Math.pow(2,t.tileID.canonical.z),i=e.tileID.key;0===r&&0===n||Math.abs(n)>1||(Math.abs(r)>1&&(1===Math.abs(r+a)?r+=a:1===Math.abs(r-a)&&(r-=a)),e.dem&&t.dem&&(t.dem.backfillBorder(e.dem,r,n),t.neighboringTiles&&t.neighboringTiles[i]&&(t.neighboringTiles[i].backfilled=!0)))}},r.prototype.getTile=function(t){return this.getTileByID(t.key)},r.prototype.getTileByID=function(t){return this._tiles[t]},r.prototype.getZoom=function(t){return t.zoom+t.scaleZoom(t.tileSize/this._source.tileSize)},r.prototype._retainLoadedChildren=function(t,e,r,n){for(var a in this._tiles){var i=this._tiles[a];if(!(n[a]||!i.hasData()||i.tileID.overscaledZ<=e||i.tileID.overscaledZ>r)){for(var o=i.tileID;i&&i.tileID.overscaledZ>e+1;){var s=i.tileID.scaledTo(i.tileID.overscaledZ-1);(i=this._tiles[s.key])&&i.hasData()&&(o=s)}for(var l=o;l.overscaledZ>e;)if(t[(l=l.scaledTo(l.overscaledZ-1)).key]){n[o.key]=o;break}}}},r.prototype.findLoadedParent=function(t,e){for(var r=t.overscaledZ-1;r>=e;r--){var n=t.scaledTo(r);if(!n)return;var a=String(n.key),i=this._tiles[a];if(i&&i.hasData())return i;if(this._cache.has(n))return this._cache.get(n)}},r.prototype.updateCacheSize=function(t){var e=(Math.ceil(t.width/this._source.tileSize)+1)*(Math.ceil(t.height/this._source.tileSize)+1),r=Math.floor(5*e),n=\"number\"==typeof this._maxTileCacheSize?Math.min(this._maxTileCacheSize,r):r;this._cache.setMaxSize(n)},r.prototype.handleWrapJump=function(t){var e=(t-(void 0===this._prevLng?t:this._prevLng))/360,r=Math.round(e);if(this._prevLng=t,r){var n={};for(var a in this._tiles){var i=this._tiles[a];i.tileID=i.tileID.unwrapTo(i.tileID.wrap+r),n[i.tileID.key]=i}for(var o in this._tiles=n,this._timers)clearTimeout(this._timers[o]),delete this._timers[o];for(var s in this._tiles){var l=this._tiles[s];this._setTileReloadTimer(s,l)}}},r.prototype.update=function(e){var n=this;if(this.transform=e,this._sourceLoaded&&!this._paused){var a;this.updateCacheSize(e),this.handleWrapJump(this.transform.center.lng),this._coveredTiles={},this.used?this._source.tileID?a=e.getVisibleUnwrappedCoordinates(this._source.tileID).map(function(e){return new t.OverscaledTileID(e.canonical.z,e.wrap,e.canonical.z,e.canonical.x,e.canonical.y)}):(a=e.coveringTiles({tileSize:this._source.tileSize,minzoom:this._source.minzoom,maxzoom:this._source.maxzoom,roundZoom:this._source.roundZoom,reparseOverscaled:this._source.reparseOverscaled}),this._source.hasTile&&(a=a.filter(function(t){return n._source.hasTile(t)}))):a=[];var i=(this._source.roundZoom?Math.round:Math.floor)(this.getZoom(e)),o=Math.max(i-r.maxOverzooming,this._source.minzoom),s=Math.max(i+r.maxUnderzooming,this._source.minzoom),l=this._updateRetainedTiles(a,i);if(Ot(this._source.type)){for(var c={},u={},h=0,f=Object.keys(l);h<f.length;h+=1){var p=f[h],d=l[p],g=this._tiles[p];if(g&&!(g.fadeEndTime&&g.fadeEndTime<=t.browser.now())){var v=this.findLoadedParent(d,o);v&&(this._addTile(v.tileID),c[v.tileID.key]=v.tileID),u[p]=d}}for(var m in this._retainLoadedChildren(u,i,s,l),c)l[m]||(this._coveredTiles[m]=!0,l[m]=c[m])}for(var y in l)this._tiles[y].clearFadeHold();for(var x=0,b=t.keysDifference(this._tiles,l);x<b.length;x+=1){var _=b[x],w=this._tiles[_];w.hasSymbolBuckets&&!w.holdingForFade()?w.setHoldDuration(this.map._fadeDuration):w.hasSymbolBuckets&&!w.symbolFadeFinished()||this._removeTile(_)}}},r.prototype.releaseSymbolFadeTiles=function(){for(var t in this._tiles)this._tiles[t].holdingForFade()&&this._removeTile(t)},r.prototype._updateRetainedTiles=function(t,e){for(var n={},a={},i=Math.max(e-r.maxOverzooming,this._source.minzoom),o=Math.max(e+r.maxUnderzooming,this._source.minzoom),s={},l=0,c=t;l<c.length;l+=1){var u=c[l],h=this._addTile(u);n[u.key]=u,h.hasData()||e<this._source.maxzoom&&(s[u.key]=u)}this._retainLoadedChildren(s,e,o,n);for(var f=0,p=t;f<p.length;f+=1){var d=p[f],g=this._tiles[d.key];if(!g.hasData()){if(e+1>this._source.maxzoom){var v=d.children(this._source.maxzoom)[0],m=this.getTile(v);if(m&&m.hasData()){n[v.key]=v;continue}}else{var y=d.children(this._source.maxzoom);if(n[y[0].key]&&n[y[1].key]&&n[y[2].key]&&n[y[3].key])continue}for(var x=g.wasRequested(),b=d.overscaledZ-1;b>=i;--b){var _=d.scaledTo(b);if(a[_.key])break;if(a[_.key]=!0,!(g=this.getTile(_))&&x&&(g=this._addTile(_)),g&&(n[_.key]=_,x=g.wasRequested(),g.hasData()))break}}}return n},r.prototype._addTile=function(e){var r=this._tiles[e.key];if(r)return r;(r=this._cache.getAndRemove(e))&&(this._setTileReloadTimer(e.key,r),r.tileID=e,this._state.initializeTileState(r,this.map?this.map.painter:null),this._cacheTimers[e.key]&&(clearTimeout(this._cacheTimers[e.key]),delete this._cacheTimers[e.key],this._setTileReloadTimer(e.key,r)));var n=Boolean(r);return n||(r=new t.Tile(e,this._source.tileSize*e.overscaleFactor()),this._loadTile(r,this._tileLoaded.bind(this,r,e.key,r.state))),r?(r.uses++,this._tiles[e.key]=r,n||this._source.fire(new t.Event(\"dataloading\",{tile:r,coord:r.tileID,dataType:\"source\"})),r):null},r.prototype._setTileReloadTimer=function(t,e){var r=this;t in this._timers&&(clearTimeout(this._timers[t]),delete this._timers[t]);var n=e.getExpiryTimeout();n&&(this._timers[t]=setTimeout(function(){r._reloadTile(t,\"expired\"),delete r._timers[t]},n))},r.prototype._removeTile=function(t){var e=this._tiles[t];e&&(e.uses--,delete this._tiles[t],this._timers[t]&&(clearTimeout(this._timers[t]),delete this._timers[t]),e.uses>0||(e.hasData()&&\"reloading\"!==e.state?this._cache.add(e.tileID,e,e.getExpiryTimeout()):(e.aborted=!0,this._abortTile(e),this._unloadTile(e))))},r.prototype.clearTiles=function(){for(var t in this._shouldReloadOnResume=!1,this._paused=!1,this._tiles)this._removeTile(t);this._cache.reset()},r.prototype.tilesIn=function(e,r,n){var a=this,i=[],o=this.transform;if(!o)return i;for(var s=n?o.getCameraQueryGeometry(e):e,l=e.map(function(t){return o.pointCoordinate(t)}),c=s.map(function(t){return o.pointCoordinate(t)}),u=this.getIds(),h=1/0,f=1/0,p=-1/0,d=-1/0,g=0,v=c;g<v.length;g+=1){var m=v[g];h=Math.min(h,m.x),f=Math.min(f,m.y),p=Math.max(p,m.x),d=Math.max(d,m.y)}for(var y=function(e){var n=a._tiles[u[e]];if(!n.holdingForFade()){var s=n.tileID,g=Math.pow(2,o.zoom-n.tileID.overscaledZ),v=r*n.queryPadding*t.EXTENT/n.tileSize/g,m=[s.getTilePoint(new t.MercatorCoordinate(h,f)),s.getTilePoint(new t.MercatorCoordinate(p,d))];if(m[0].x-v<t.EXTENT&&m[0].y-v<t.EXTENT&&m[1].x+v>=0&&m[1].y+v>=0){var y=l.map(function(t){return s.getTilePoint(t)}),x=c.map(function(t){return s.getTilePoint(t)});i.push({tile:n,tileID:s,queryGeometry:y,cameraQueryGeometry:x,scale:g})}}},x=0;x<u.length;x++)y(x);return i},r.prototype.getVisibleCoordinates=function(t){for(var e=this,r=this.getRenderableIds(t).map(function(t){return e._tiles[t].tileID}),n=0,a=r;n<a.length;n+=1){var i=a[n];i.posMatrix=this.transform.calculatePosMatrix(i.toUnwrapped())}return r},r.prototype.hasTransition=function(){if(this._source.hasTransition())return!0;if(Ot(this._source.type))for(var e in this._tiles){var r=this._tiles[e];if(void 0!==r.fadeEndTime&&r.fadeEndTime>=t.browser.now())return!0}return!1},r.prototype.setFeatureState=function(t,e,r){t=t||\"_geojsonTileLayer\",this._state.updateState(t,e,r)},r.prototype.removeFeatureState=function(t,e,r){t=t||\"_geojsonTileLayer\",this._state.removeFeatureState(t,e,r)},r.prototype.getFeatureState=function(t,e){return t=t||\"_geojsonTileLayer\",this._state.getState(t,e)},r}(t.Evented);function Pt(t,e){return t%32-e%32||e-t}function Ot(t){return\"raster\"===t||\"image\"===t||\"video\"===t}function It(){return new t.window.Worker(Qn.workerUrl)}Lt.maxOverzooming=10,Lt.maxUnderzooming=3;var zt=function(){this.active={}};zt.prototype.acquire=function(t){if(!this.workers)for(this.workers=[];this.workers.length<zt.workerCount;)this.workers.push(new It);return this.active[t]=!0,this.workers.slice()},zt.prototype.release=function(t){delete this.active[t],0===Object.keys(this.active).length&&(this.workers.forEach(function(t){t.terminate()}),this.workers=null)};var Dt,Rt=Math.floor(t.browser.hardwareConcurrency/2);function Ft(e,r){var n={};for(var a in e)\"ref\"!==a&&(n[a]=e[a]);return t.refProperties.forEach(function(t){t in r&&(n[t]=r[t])}),n}function Bt(t){t=t.slice();for(var e=Object.create(null),r=0;r<t.length;r++)e[t[r].id]=t[r];for(var n=0;n<t.length;n++)\"ref\"in t[n]&&(t[n]=Ft(t[n],e[t[n].ref]));return t}zt.workerCount=Math.max(Math.min(Rt,6),1);var Nt={setStyle:\"setStyle\",addLayer:\"addLayer\",removeLayer:\"removeLayer\",setPaintProperty:\"setPaintProperty\",setLayoutProperty:\"setLayoutProperty\",setFilter:\"setFilter\",addSource:\"addSource\",removeSource:\"removeSource\",setGeoJSONSourceData:\"setGeoJSONSourceData\",setLayerZoomRange:\"setLayerZoomRange\",setLayerProperty:\"setLayerProperty\",setCenter:\"setCenter\",setZoom:\"setZoom\",setBearing:\"setBearing\",setPitch:\"setPitch\",setSprite:\"setSprite\",setGlyphs:\"setGlyphs\",setTransition:\"setTransition\",setLight:\"setLight\"};function jt(t,e,r){r.push({command:Nt.addSource,args:[t,e[t]]})}function Vt(t,e,r){e.push({command:Nt.removeSource,args:[t]}),r[t]=!0}function Ut(t,e,r,n){Vt(t,r,n),jt(t,e,r)}function qt(e,r,n){var a;for(a in e[n])if(e[n].hasOwnProperty(a)&&\"data\"!==a&&!t.deepEqual(e[n][a],r[n][a]))return!1;for(a in r[n])if(r[n].hasOwnProperty(a)&&\"data\"!==a&&!t.deepEqual(e[n][a],r[n][a]))return!1;return!0}function Ht(e,r,n,a,i,o){var s;for(s in r=r||{},e=e||{})e.hasOwnProperty(s)&&(t.deepEqual(e[s],r[s])||n.push({command:o,args:[a,s,r[s],i]}));for(s in r)r.hasOwnProperty(s)&&!e.hasOwnProperty(s)&&(t.deepEqual(e[s],r[s])||n.push({command:o,args:[a,s,r[s],i]}))}function Gt(t){return t.id}function Yt(t,e){return t[e.id]=e,t}var Wt=function(t,e,r){var n=this.boxCells=[],a=this.circleCells=[];this.xCellCount=Math.ceil(t/r),this.yCellCount=Math.ceil(e/r);for(var i=0;i<this.xCellCount*this.yCellCount;i++)n.push([]),a.push([]);this.circleKeys=[],this.boxKeys=[],this.bboxes=[],this.circles=[],this.width=t,this.height=e,this.xScale=this.xCellCount/t,this.yScale=this.yCellCount/e,this.boxUid=0,this.circleUid=0};function Xt(e,r,n,a,i){var o=t.create();return r?(t.scale(o,o,[1/i,1/i,1]),n||t.rotateZ(o,o,a.angle)):t.multiply(o,a.labelPlaneMatrix,e),o}function Zt(e,r,n,a,i){if(r){var o=t.clone(e);return t.scale(o,o,[i,i,1]),n||t.rotateZ(o,o,-a.angle),o}return a.glCoordMatrix}function Jt(e,r){var n=[e.x,e.y,0,1];oe(n,n,r);var a=n[3];return{point:new t.Point(n[0]/a,n[1]/a),signedDistanceFromCamera:a}}function Kt(t,e){var r=t[0]/t[3],n=t[1]/t[3];return r>=-e[0]&&r<=e[0]&&n>=-e[1]&&n<=e[1]}function Qt(e,r,n,a,i,o,s,l){var c=a?e.textSizeData:e.iconSizeData,u=t.evaluateSizeForZoom(c,n.transform.zoom),h=[256/n.width*2+1,256/n.height*2+1],f=a?e.text.dynamicLayoutVertexArray:e.icon.dynamicLayoutVertexArray;f.clear();for(var p=e.lineVertexArray,d=a?e.text.placedSymbolArray:e.icon.placedSymbolArray,g=n.transform.width/n.transform.height,v=!1,m=0;m<d.length;m++){var y=d.get(m);if(y.hidden||y.writingMode===t.WritingMode.vertical&&!v)ie(y.numGlyphs,f);else{v=!1;var x=[y.anchorX,y.anchorY,0,1];if(t.transformMat4(x,x,r),Kt(x,h)){var b=.5+x[3]/n.transform.cameraToCenterDistance*.5,_=t.evaluateSizeForFeature(c,u,y),w=s?_*b:_/b,k=new t.Point(y.anchorX,y.anchorY),T=Jt(k,i).point,A={},M=ee(y,w,!1,l,r,i,o,e.glyphOffsetArray,p,f,T,k,A,g);v=M.useVertical,(M.notEnoughRoom||v||M.needsFlipping&&ee(y,w,!0,l,r,i,o,e.glyphOffsetArray,p,f,T,k,A,g).notEnoughRoom)&&ie(y.numGlyphs,f)}else ie(y.numGlyphs,f)}}a?e.text.dynamicLayoutVertexBuffer.updateData(f):e.icon.dynamicLayoutVertexBuffer.updateData(f)}function $t(t,e,r,n,a,i,o,s,l,c,u,h){var f=s.glyphStartIndex+s.numGlyphs,p=s.lineStartIndex,d=s.lineStartIndex+s.lineLength,g=e.getoffsetX(s.glyphStartIndex),v=e.getoffsetX(f-1),m=ne(t*g,r,n,a,i,o,s.segment,p,d,l,c,u,h);if(!m)return null;var y=ne(t*v,r,n,a,i,o,s.segment,p,d,l,c,u,h);return y?{first:m,last:y}:null}function te(e,r,n,a){return e===t.WritingMode.horizontal&&Math.abs(n.y-r.y)>Math.abs(n.x-r.x)*a?{useVertical:!0}:(e===t.WritingMode.vertical?r.y<n.y:r.x>n.x)?{needsFlipping:!0}:null}function ee(e,r,n,a,i,o,s,l,c,u,h,f,p,d){var g,v=r/24,m=e.lineOffsetX*v,y=e.lineOffsetY*v;if(e.numGlyphs>1){var x=e.glyphStartIndex+e.numGlyphs,b=e.lineStartIndex,_=e.lineStartIndex+e.lineLength,w=$t(v,l,m,y,n,h,f,e,c,o,p,!1);if(!w)return{notEnoughRoom:!0};var k=Jt(w.first.point,s).point,T=Jt(w.last.point,s).point;if(a&&!n){var A=te(e.writingMode,k,T,d);if(A)return A}g=[w.first];for(var M=e.glyphStartIndex+1;M<x-1;M++)g.push(ne(v*l.getoffsetX(M),m,y,n,h,f,e.segment,b,_,c,o,p,!1));g.push(w.last)}else{if(a&&!n){var S=Jt(f,i).point,E=e.lineStartIndex+e.segment+1,C=new t.Point(c.getx(E),c.gety(E)),L=Jt(C,i),P=L.signedDistanceFromCamera>0?L.point:re(f,C,S,1,i),O=te(e.writingMode,S,P,d);if(O)return O}var I=ne(v*l.getoffsetX(e.glyphStartIndex),m,y,n,h,f,e.segment,e.lineStartIndex,e.lineStartIndex+e.lineLength,c,o,p,!1);if(!I)return{notEnoughRoom:!0};g=[I]}for(var z=0,D=g;z<D.length;z+=1){var R=D[z];t.addDynamicAttributes(u,R.point,R.angle)}return{}}function re(t,e,r,n,a){var i=Jt(t.add(t.sub(e)._unit()),a).point,o=r.sub(i);return r.add(o._mult(n/o.mag()))}function ne(e,r,n,a,i,o,s,l,c,u,h,f,p){var d=a?e-r:e+r,g=d>0?1:-1,v=0;a&&(g*=-1,v=Math.PI),g<0&&(v+=Math.PI);for(var m=g>0?l+s:l+s+1,y=m,x=i,b=i,_=0,w=0,k=Math.abs(d);_+w<=k;){if((m+=g)<l||m>=c)return null;if(b=x,void 0===(x=f[m])){var T=new t.Point(u.getx(m),u.gety(m)),A=Jt(T,h);if(A.signedDistanceFromCamera>0)x=f[m]=A.point;else{var M=m-g;x=re(0===_?o:new t.Point(u.getx(M),u.gety(M)),T,b,k-_+1,h)}}_+=w,w=b.dist(x)}var S=(k-_)/w,E=x.sub(b),C=E.mult(S)._add(b);return C._add(E._unit()._perp()._mult(n*g)),{point:C,angle:v+Math.atan2(x.y-b.y,x.x-b.x),tileDistance:p?{prevTileDistance:m-g===y?0:u.gettileUnitDistanceFromAnchor(m-g),lastSegmentViewportDistance:k-_}:null}}Wt.prototype.keysLength=function(){return this.boxKeys.length+this.circleKeys.length},Wt.prototype.insert=function(t,e,r,n,a){this._forEachCell(e,r,n,a,this._insertBoxCell,this.boxUid++),this.boxKeys.push(t),this.bboxes.push(e),this.bboxes.push(r),this.bboxes.push(n),this.bboxes.push(a)},Wt.prototype.insertCircle=function(t,e,r,n){this._forEachCell(e-n,r-n,e+n,r+n,this._insertCircleCell,this.circleUid++),this.circleKeys.push(t),this.circles.push(e),this.circles.push(r),this.circles.push(n)},Wt.prototype._insertBoxCell=function(t,e,r,n,a,i){this.boxCells[a].push(i)},Wt.prototype._insertCircleCell=function(t,e,r,n,a,i){this.circleCells[a].push(i)},Wt.prototype._query=function(t,e,r,n,a,i){if(r<0||t>this.width||n<0||e>this.height)return!a&&[];var o=[];if(t<=0&&e<=0&&this.width<=r&&this.height<=n){if(a)return!0;for(var s=0;s<this.boxKeys.length;s++)o.push({key:this.boxKeys[s],x1:this.bboxes[4*s],y1:this.bboxes[4*s+1],x2:this.bboxes[4*s+2],y2:this.bboxes[4*s+3]});for(var l=0;l<this.circleKeys.length;l++){var c=this.circles[3*l],u=this.circles[3*l+1],h=this.circles[3*l+2];o.push({key:this.circleKeys[l],x1:c-h,y1:u-h,x2:c+h,y2:u+h})}return i?o.filter(i):o}var f={hitTest:a,seenUids:{box:{},circle:{}}};return this._forEachCell(t,e,r,n,this._queryCell,o,f,i),a?o.length>0:o},Wt.prototype._queryCircle=function(t,e,r,n,a){var i=t-r,o=t+r,s=e-r,l=e+r;if(o<0||i>this.width||l<0||s>this.height)return!n&&[];var c=[],u={hitTest:n,circle:{x:t,y:e,radius:r},seenUids:{box:{},circle:{}}};return this._forEachCell(i,s,o,l,this._queryCellCircle,c,u,a),n?c.length>0:c},Wt.prototype.query=function(t,e,r,n,a){return this._query(t,e,r,n,!1,a)},Wt.prototype.hitTest=function(t,e,r,n,a){return this._query(t,e,r,n,!0,a)},Wt.prototype.hitTestCircle=function(t,e,r,n){return this._queryCircle(t,e,r,!0,n)},Wt.prototype._queryCell=function(t,e,r,n,a,i,o,s){var l=o.seenUids,c=this.boxCells[a];if(null!==c)for(var u=this.bboxes,h=0,f=c;h<f.length;h+=1){var p=f[h];if(!l.box[p]){l.box[p]=!0;var d=4*p;if(t<=u[d+2]&&e<=u[d+3]&&r>=u[d+0]&&n>=u[d+1]&&(!s||s(this.boxKeys[p]))){if(o.hitTest)return i.push(!0),!0;i.push({key:this.boxKeys[p],x1:u[d],y1:u[d+1],x2:u[d+2],y2:u[d+3]})}}}var g=this.circleCells[a];if(null!==g)for(var v=this.circles,m=0,y=g;m<y.length;m+=1){var x=y[m];if(!l.circle[x]){l.circle[x]=!0;var b=3*x;if(this._circleAndRectCollide(v[b],v[b+1],v[b+2],t,e,r,n)&&(!s||s(this.circleKeys[x]))){if(o.hitTest)return i.push(!0),!0;var _=v[b],w=v[b+1],k=v[b+2];i.push({key:this.circleKeys[x],x1:_-k,y1:w-k,x2:_+k,y2:w+k})}}}},Wt.prototype._queryCellCircle=function(t,e,r,n,a,i,o,s){var l=o.circle,c=o.seenUids,u=this.boxCells[a];if(null!==u)for(var h=this.bboxes,f=0,p=u;f<p.length;f+=1){var d=p[f];if(!c.box[d]){c.box[d]=!0;var g=4*d;if(this._circleAndRectCollide(l.x,l.y,l.radius,h[g+0],h[g+1],h[g+2],h[g+3])&&(!s||s(this.boxKeys[d])))return i.push(!0),!0}}var v=this.circleCells[a];if(null!==v)for(var m=this.circles,y=0,x=v;y<x.length;y+=1){var b=x[y];if(!c.circle[b]){c.circle[b]=!0;var _=3*b;if(this._circlesCollide(m[_],m[_+1],m[_+2],l.x,l.y,l.radius)&&(!s||s(this.circleKeys[b])))return i.push(!0),!0}}},Wt.prototype._forEachCell=function(t,e,r,n,a,i,o,s){for(var l=this._convertToXCellCoord(t),c=this._convertToYCellCoord(e),u=this._convertToXCellCoord(r),h=this._convertToYCellCoord(n),f=l;f<=u;f++)for(var p=c;p<=h;p++){var d=this.xCellCount*p+f;if(a.call(this,t,e,r,n,d,i,o,s))return}},Wt.prototype._convertToXCellCoord=function(t){return Math.max(0,Math.min(this.xCellCount-1,Math.floor(t*this.xScale)))},Wt.prototype._convertToYCellCoord=function(t){return Math.max(0,Math.min(this.yCellCount-1,Math.floor(t*this.yScale)))},Wt.prototype._circlesCollide=function(t,e,r,n,a,i){var o=n-t,s=a-e,l=r+i;return l*l>o*o+s*s},Wt.prototype._circleAndRectCollide=function(t,e,r,n,a,i,o){var s=(i-n)/2,l=Math.abs(t-(n+s));if(l>s+r)return!1;var c=(o-a)/2,u=Math.abs(e-(a+c));if(u>c+r)return!1;if(l<=s||u<=c)return!0;var h=l-s,f=u-c;return h*h+f*f<=r*r};var ae=new Float32Array([-1/0,-1/0,0,-1/0,-1/0,0,-1/0,-1/0,0,-1/0,-1/0,0]);function ie(t,e){for(var r=0;r<t;r++){var n=e.length;e.resize(n+4),e.float32.set(ae,3*n)}}function oe(t,e,r){var n=e[0],a=e[1];return t[0]=r[0]*n+r[4]*a+r[12],t[1]=r[1]*n+r[5]*a+r[13],t[3]=r[3]*n+r[7]*a+r[15],t}var se=function(t,e,r){void 0===e&&(e=new Wt(t.width+200,t.height+200,25)),void 0===r&&(r=new Wt(t.width+200,t.height+200,25)),this.transform=t,this.grid=e,this.ignoredGrid=r,this.pitchfactor=Math.cos(t._pitch)*t.cameraToCenterDistance,this.screenRightBoundary=t.width+100,this.screenBottomBoundary=t.height+100,this.gridRightBoundary=t.width+200,this.gridBottomBoundary=t.height+200};function le(t,e,r){t[e+4]=r?1:0}function ce(e,r,n){return r*(t.EXTENT/(e.tileSize*Math.pow(2,n-e.tileID.overscaledZ)))}se.prototype.placeCollisionBox=function(t,e,r,n,a){var i=this.projectAndGetPerspectiveRatio(n,t.anchorPointX,t.anchorPointY),o=r*i.perspectiveRatio,s=t.x1*o+i.point.x,l=t.y1*o+i.point.y,c=t.x2*o+i.point.x,u=t.y2*o+i.point.y;return!this.isInsideGrid(s,l,c,u)||!e&&this.grid.hitTest(s,l,c,u,a)?{box:[],offscreen:!1}:{box:[s,l,c,u],offscreen:this.isOffscreen(s,l,c,u)}},se.prototype.approximateTileDistance=function(t,e,r,n,a){var i=a?1:n/this.pitchfactor,o=t.lastSegmentViewportDistance*r;return t.prevTileDistance+o+(i-1)*o*Math.abs(Math.sin(e))},se.prototype.placeCollisionCircles=function(e,r,n,a,i,o,s,l,c,u,h,f,p){var d=[],g=this.projectAnchor(c,i.anchorX,i.anchorY),v=l/24,m=i.lineOffsetX*l,y=i.lineOffsetY*l,x=new t.Point(i.anchorX,i.anchorY),b=$t(v,s,m,y,!1,Jt(x,u).point,x,i,o,u,{},!0),_=!1,w=!1,k=!0,T=g.perspectiveRatio*a,A=1/(a*n),M=0,S=0;b&&(M=this.approximateTileDistance(b.first.tileDistance,b.first.angle,A,g.cameraDistance,f),S=this.approximateTileDistance(b.last.tileDistance,b.last.angle,A,g.cameraDistance,f));for(var E=0;E<e.length;E+=5){var C=e[E],L=e[E+1],P=e[E+2],O=e[E+3];if(!b||O<-M||O>S)le(e,E,!1);else{var I=this.projectPoint(c,C,L),z=P*T;if(d.length>0){var D=I.x-d[d.length-4],R=I.y-d[d.length-3];if(z*z*2>D*D+R*R&&E+8<e.length){var F=e[E+8];if(F>-M&&F<S){le(e,E,!1);continue}}}var B=E/5;d.push(I.x,I.y,z,B),le(e,E,!0);var N=I.x-z,j=I.y-z,V=I.x+z,U=I.y+z;if(k=k&&this.isOffscreen(N,j,V,U),w=w||this.isInsideGrid(N,j,V,U),!r&&this.grid.hitTestCircle(I.x,I.y,z,p)){if(!h)return{circles:[],offscreen:!1};_=!0}}}return{circles:_||!w?[]:d,offscreen:k}},se.prototype.queryRenderedSymbols=function(e){if(0===e.length||0===this.grid.keysLength()&&0===this.ignoredGrid.keysLength())return{};for(var r=[],n=1/0,a=1/0,i=-1/0,o=-1/0,s=0,l=e;s<l.length;s+=1){var c=l[s],u=new t.Point(c.x+100,c.y+100);n=Math.min(n,u.x),a=Math.min(a,u.y),i=Math.max(i,u.x),o=Math.max(o,u.y),r.push(u)}for(var h={},f={},p=0,d=this.grid.query(n,a,i,o).concat(this.ignoredGrid.query(n,a,i,o));p<d.length;p+=1){var g=d[p],v=g.key;if(void 0===h[v.bucketInstanceId]&&(h[v.bucketInstanceId]={}),!h[v.bucketInstanceId][v.featureIndex]){var m=[new t.Point(g.x1,g.y1),new t.Point(g.x2,g.y1),new t.Point(g.x2,g.y2),new t.Point(g.x1,g.y2)];t.polygonIntersectsPolygon(r,m)&&(h[v.bucketInstanceId][v.featureIndex]=!0,void 0===f[v.bucketInstanceId]&&(f[v.bucketInstanceId]=[]),f[v.bucketInstanceId].push(v.featureIndex))}}return f},se.prototype.insertCollisionBox=function(t,e,r,n,a){var i={bucketInstanceId:r,featureIndex:n,collisionGroupID:a};(e?this.ignoredGrid:this.grid).insert(i,t[0],t[1],t[2],t[3])},se.prototype.insertCollisionCircles=function(t,e,r,n,a){for(var i=e?this.ignoredGrid:this.grid,o={bucketInstanceId:r,featureIndex:n,collisionGroupID:a},s=0;s<t.length;s+=4)i.insertCircle(o,t[s],t[s+1],t[s+2])},se.prototype.projectAnchor=function(t,e,r){var n=[e,r,0,1];return oe(n,n,t),{perspectiveRatio:.5+this.transform.cameraToCenterDistance/n[3]*.5,cameraDistance:n[3]}},se.prototype.projectPoint=function(e,r,n){var a=[r,n,0,1];return oe(a,a,e),new t.Point((a[0]/a[3]+1)/2*this.transform.width+100,(-a[1]/a[3]+1)/2*this.transform.height+100)},se.prototype.projectAndGetPerspectiveRatio=function(e,r,n){var a=[r,n,0,1];return oe(a,a,e),{point:new t.Point((a[0]/a[3]+1)/2*this.transform.width+100,(-a[1]/a[3]+1)/2*this.transform.height+100),perspectiveRatio:.5+this.transform.cameraToCenterDistance/a[3]*.5}},se.prototype.isOffscreen=function(t,e,r,n){return r<100||t>=this.screenRightBoundary||n<100||e>this.screenBottomBoundary},se.prototype.isInsideGrid=function(t,e,r,n){return r>=0&&t<this.gridRightBoundary&&n>=0&&e<this.gridBottomBoundary};var ue=function(t,e,r,n){this.opacity=t?Math.max(0,Math.min(1,t.opacity+(t.placed?e:-e))):n&&r?1:0,this.placed=r};ue.prototype.isHidden=function(){return 0===this.opacity&&!this.placed};var he=function(t,e,r,n,a){this.text=new ue(t?t.text:null,e,r,a),this.icon=new ue(t?t.icon:null,e,n,a)};he.prototype.isHidden=function(){return this.text.isHidden()&&this.icon.isHidden()};var fe=function(t,e,r){this.text=t,this.icon=e,this.skipFade=r},pe=function(t,e,r,n,a){this.bucketInstanceId=t,this.featureIndex=e,this.sourceLayerIndex=r,this.bucketIndex=n,this.tileID=a},de=function(t){this.crossSourceCollisions=t,this.maxGroupID=0,this.collisionGroups={}};function ge(e,r,n,a,i){var o=t.getAnchorAlignment(e),s=-(o.horizontalAlign-.5)*r,l=-(o.verticalAlign-.5)*n,c=t.evaluateRadialOffset(e,a);return new t.Point(s+c[0]*i,l+c[1]*i)}de.prototype.get=function(t){if(this.crossSourceCollisions)return{ID:0,predicate:null};if(!this.collisionGroups[t]){var e=++this.maxGroupID;this.collisionGroups[t]={ID:e,predicate:function(t){return t.collisionGroupID===e}}}return this.collisionGroups[t]};var ve=function(t,e,r,n){this.transform=t.clone(),this.collisionIndex=new se(this.transform),this.placements={},this.opacities={},this.variableOffsets={},this.stale=!1,this.commitTime=0,this.fadeDuration=e,this.retainedQueryData={},this.collisionGroups=new de(r),this.prevPlacement=n,n&&(n.prevPlacement=void 0),this.placedOrientations={}};function me(t,e,r,n,a){t.emplaceBack(e?1:0,r?1:0,n||0,a||0),t.emplaceBack(e?1:0,r?1:0,n||0,a||0),t.emplaceBack(e?1:0,r?1:0,n||0,a||0),t.emplaceBack(e?1:0,r?1:0,n||0,a||0)}ve.prototype.placeLayerTile=function(e,r,n,a){var i=r.getBucket(e),o=r.latestFeatureIndex;if(i&&o&&e.id===i.layerIds[0]){var s=r.collisionBoxArray,l=i.layers[0].layout,c=Math.pow(2,this.transform.zoom-r.tileID.overscaledZ),u=r.tileSize/t.EXTENT,h=this.transform.calculatePosMatrix(r.tileID.toUnwrapped()),f=Xt(h,\"map\"===l.get(\"text-pitch-alignment\"),\"map\"===l.get(\"text-rotation-alignment\"),this.transform,ce(r,1,this.transform.zoom)),p=Xt(h,\"map\"===l.get(\"icon-pitch-alignment\"),\"map\"===l.get(\"icon-rotation-alignment\"),this.transform,ce(r,1,this.transform.zoom));this.retainedQueryData[i.bucketInstanceId]=new pe(i.bucketInstanceId,o,i.sourceLayerIndex,i.index,r.tileID),this.placeLayerBucket(i,h,f,p,c,u,n,r.holdingForFade(),a,s)}},ve.prototype.attemptAnchorPlacement=function(e,r,n,a,i,o,s,l,c,u,h,f,p,d,g){var v,m=ge(e,n,a,i,o),y=this.collisionIndex.placeCollisionBox(function(e,r,n,a,i,o){var s=e.x1,l=e.x2,c=e.y1,u=e.y2,h=e.anchorPointX,f=e.anchorPointY,p=new t.Point(r,n);return a&&p._rotate(i?o:-o),{x1:s+p.x,y1:c+p.y,x2:l+p.x,y2:u+p.y,anchorPointX:h,anchorPointY:f}}(r,m.x,m.y,s,l,this.transform.angle),f,c,u,h.predicate);if(y.box.length>0)return this.prevPlacement&&this.prevPlacement.variableOffsets[p.crossTileID]&&this.prevPlacement.placements[p.crossTileID]&&this.prevPlacement.placements[p.crossTileID].text&&(v=this.prevPlacement.variableOffsets[p.crossTileID].anchor),this.variableOffsets[p.crossTileID]={radialOffset:i,width:n,height:a,anchor:e,textBoxScale:o,prevAnchor:v},this.markUsedJustification(d,e,p,g),d.allowVerticalPlacement&&(this.markUsedOrientation(d,g,p),this.placedOrientations[p.crossTileID]=g),y},ve.prototype.placeLayerBucket=function(e,r,n,a,i,o,s,l,c,u){var h=this,f=e.layers[0].layout,p=t.evaluateSizeForZoom(e.textSizeData,this.transform.zoom),d=f.get(\"text-optional\"),g=f.get(\"icon-optional\"),v=f.get(\"text-allow-overlap\"),m=f.get(\"icon-allow-overlap\"),y=v&&(m||!e.hasIconData()||g),x=m&&(v||!e.hasTextData()||d),b=this.collisionGroups.get(e.sourceID),_=\"map\"===f.get(\"text-rotation-alignment\"),w=\"map\"===f.get(\"text-pitch-alignment\"),k=\"viewport-y\"===f.get(\"symbol-z-order\");!e.collisionArrays&&u&&e.deserializeCollisionBoxes(u);var T=function(a,u){if(!c[a.crossTileID])if(l)h.placements[a.crossTileID]=new fe(!1,!1,!1);else{var m,k=!1,T=!1,A=!0,M={box:null,offscreen:null},S={box:null,offscreen:null},E=null,C=null,L=0,P=0,O=0;u.textFeatureIndex&&(L=u.textFeatureIndex),u.verticalTextFeatureIndex&&(P=u.verticalTextFeatureIndex);var I=u.textBox;if(I){var z=function(r){var n=t.WritingMode.horizontal;if(e.allowVerticalPlacement&&!r&&h.prevPlacement){var i=h.prevPlacement.placedOrientations[a.crossTileID];i&&(h.placedOrientations[a.crossTileID]=i,n=i,h.markUsedOrientation(e,n,a))}return n},D=function(r,n){if(e.allowVerticalPlacement&&a.numVerticalGlyphVertices>0&&u.verticalTextBox)for(var i=0,o=e.writingModes;i<o.length&&(o[i]===t.WritingMode.vertical?(M=n(),S=M):M=r(),!(M&&M.box&&M.box.length));i+=1);else M=r()};if(f.get(\"text-variable-anchor\")){var R=f.get(\"text-variable-anchor\");if(h.prevPlacement&&h.prevPlacement.variableOffsets[a.crossTileID]){var F=h.prevPlacement.variableOffsets[a.crossTileID];R.indexOf(F.anchor)>0&&(R=R.filter(function(t){return t!==F.anchor})).unshift(F.anchor)}var B=function(t,n){for(var i=t.x2-t.x1,s=t.y2-t.y1,l=a.textBoxScale,c={box:[],offscreen:!1},u=v?2*R.length:R.length,f=0;f<u;++f){var p=R[f%R.length],d=f>=R.length;if((c=h.attemptAnchorPlacement(p,t,i,s,a.radialTextOffset,l,_,w,o,r,b,d,a,e,n))&&c.box&&c.box.length){k=!0;break}}return c};D(function(){return B(I,t.WritingMode.horizontal)},function(){var r=u.verticalTextBox,n=M&&M.box&&M.box.length;return e.allowVerticalPlacement&&!n&&a.numVerticalGlyphVertices>0&&r?B(r,t.WritingMode.vertical):{box:null,offscreen:null}}),M&&(k=M.box,A=M.offscreen);var N=z(M&&M.box);if(!k&&h.prevPlacement){var j=h.prevPlacement.variableOffsets[a.crossTileID];j&&(h.variableOffsets[a.crossTileID]=j,h.markUsedJustification(e,j.anchor,a,N))}}else{var V=function(t,n){var i=h.collisionIndex.placeCollisionBox(t,f.get(\"text-allow-overlap\"),o,r,b.predicate);return i&&i.box&&i.box.length&&(h.markUsedOrientation(e,n,a),h.placedOrientations[a.crossTileID]=n),i};D(function(){return V(I,t.WritingMode.horizontal)},function(){var r=u.verticalTextBox;return e.allowVerticalPlacement&&a.numVerticalGlyphVertices>0&&r?V(r,t.WritingMode.vertical):{box:null,offscreen:null}}),z(M&&M.box&&M.box.length)}}k=(m=M)&&m.box&&m.box.length>0,A=m&&m.offscreen;var U=u.textCircles;if(U){var q=e.text.placedSymbolArray.get(a.centerJustifiedTextSymbolIndex),H=t.evaluateSizeForFeature(e.textSizeData,p,q);E=h.collisionIndex.placeCollisionCircles(U,f.get(\"text-allow-overlap\"),i,o,q,e.lineVertexArray,e.glyphOffsetArray,H,r,n,s,w,b.predicate),k=f.get(\"text-allow-overlap\")||E.circles.length>0,A=A&&E.offscreen}u.iconFeatureIndex&&(O=u.iconFeatureIndex),u.iconBox&&(T=(C=h.collisionIndex.placeCollisionBox(u.iconBox,f.get(\"icon-allow-overlap\"),o,r,b.predicate)).box.length>0,A=A&&C.offscreen);var G=d||0===a.numHorizontalGlyphVertices&&0===a.numVerticalGlyphVertices,Y=g||0===a.numIconVertices;G||Y?Y?G||(T=T&&k):k=T&&k:T=k=T&&k,k&&m&&m.box&&(S&&S.box&&P?h.collisionIndex.insertCollisionBox(m.box,f.get(\"text-ignore-placement\"),e.bucketInstanceId,P,b.ID):h.collisionIndex.insertCollisionBox(m.box,f.get(\"text-ignore-placement\"),e.bucketInstanceId,L,b.ID)),T&&C&&h.collisionIndex.insertCollisionBox(C.box,f.get(\"icon-ignore-placement\"),e.bucketInstanceId,O,b.ID),k&&E&&h.collisionIndex.insertCollisionCircles(E.circles,f.get(\"text-ignore-placement\"),e.bucketInstanceId,L,b.ID),h.placements[a.crossTileID]=new fe(k||y,T||x,A||e.justReloaded),c[a.crossTileID]=!0}};if(k)for(var A=e.getSortedSymbolIndexes(this.transform.angle),M=A.length-1;M>=0;--M){var S=A[M];T(e.symbolInstances.get(S),e.collisionArrays[S])}else for(var E=0;E<e.symbolInstances.length;++E)T(e.symbolInstances.get(E),e.collisionArrays[E]);e.justReloaded=!1},ve.prototype.markUsedJustification=function(e,r,n,a){var i,o={left:n.leftJustifiedTextSymbolIndex,center:n.centerJustifiedTextSymbolIndex,right:n.rightJustifiedTextSymbolIndex};i=a===t.WritingMode.vertical?n.verticalPlacedTextSymbolIndex:o[t.getAnchorJustification(r)];for(var s=0,l=[n.leftJustifiedTextSymbolIndex,n.centerJustifiedTextSymbolIndex,n.rightJustifiedTextSymbolIndex,n.verticalPlacedTextSymbolIndex];s<l.length;s+=1){var c=l[s];c>=0&&(e.text.placedSymbolArray.get(c).crossTileID=i>=0&&c!==i?0:n.crossTileID)}},ve.prototype.markUsedOrientation=function(e,r,n){for(var a=r===t.WritingMode.horizontal||r===t.WritingMode.horizontalOnly?r:0,i=r===t.WritingMode.vertical?r:0,o=0,s=[n.leftJustifiedTextSymbolIndex,n.centerJustifiedTextSymbolIndex,n.rightJustifiedTextSymbolIndex];o<s.length;o+=1){var l=s[o];e.text.placedSymbolArray.get(l).placedOrientation=a}n.verticalPlacedTextSymbolIndex&&(e.text.placedSymbolArray.get(n.verticalPlacedTextSymbolIndex).placedOrientation=i)},ve.prototype.commit=function(t){this.commitTime=t;var e=this.prevPlacement,r=!1,n=e&&0!==this.fadeDuration?(this.commitTime-e.commitTime)/this.fadeDuration:1,a=e?e.opacities:{},i=e?e.variableOffsets:{},o=e?e.placedOrientations:{};for(var s in this.placements){var l=this.placements[s],c=a[s];c?(this.opacities[s]=new he(c,n,l.text,l.icon),r=r||l.text!==c.text.placed||l.icon!==c.icon.placed):(this.opacities[s]=new he(null,n,l.text,l.icon,l.skipFade),r=r||l.text||l.icon)}for(var u in a){var h=a[u];if(!this.opacities[u]){var f=new he(h,n,!1,!1);f.isHidden()||(this.opacities[u]=f,r=r||h.text.placed||h.icon.placed)}}for(var p in i)this.variableOffsets[p]||!this.opacities[p]||this.opacities[p].isHidden()||(this.variableOffsets[p]=i[p]);for(var d in o)this.placedOrientations[d]||!this.opacities[d]||this.opacities[d].isHidden()||(this.placedOrientations[d]=o[d]);r?this.lastPlacementChangeTime=t:\"number\"!=typeof this.lastPlacementChangeTime&&(this.lastPlacementChangeTime=e?e.lastPlacementChangeTime:t)},ve.prototype.updateLayerOpacities=function(t,e){for(var r={},n=0,a=e;n<a.length;n+=1){var i=a[n],o=i.getBucket(t);o&&i.latestFeatureIndex&&t.id===o.layerIds[0]&&this.updateBucketOpacities(o,r,i.collisionBoxArray)}},ve.prototype.updateBucketOpacities=function(e,r,n){e.hasTextData()&&e.text.opacityVertexArray.clear(),e.hasIconData()&&e.icon.opacityVertexArray.clear(),e.hasCollisionBoxData()&&e.collisionBox.collisionVertexArray.clear(),e.hasCollisionCircleData()&&e.collisionCircle.collisionVertexArray.clear();var a=e.layers[0].layout,i=new he(null,0,!1,!1,!0),o=a.get(\"text-allow-overlap\"),s=a.get(\"icon-allow-overlap\"),l=a.get(\"text-variable-anchor\"),c=\"map\"===a.get(\"text-rotation-alignment\"),u=\"map\"===a.get(\"text-pitch-alignment\"),h=new he(null,0,o&&(s||!e.hasIconData()||a.get(\"icon-optional\")),s&&(o||!e.hasTextData()||a.get(\"text-optional\")),!0);!e.collisionArrays&&n&&(e.hasCollisionBoxData()||e.hasCollisionCircleData())&&e.deserializeCollisionBoxes(n);for(var f=0;f<e.symbolInstances.length;f++){var p=e.symbolInstances.get(f),d=p.numHorizontalGlyphVertices,g=p.numVerticalGlyphVertices,v=p.crossTileID,m=r[v],y=this.opacities[v];m?y=i:y||(y=h,this.opacities[v]=y),r[v]=!0;var x=d>0||g>0,b=p.numIconVertices>0;if(x){for(var _=Ae(y.text),w=(d+g)/4,k=0;k<w;k++)e.text.opacityVertexArray.emplaceBack(_);var T=y.text.isHidden()?1:0,A=this.placedOrientations[p.crossTileID],M=A===t.WritingMode.horizontal||A===t.WritingMode.horizontalOnly?1:0,S=A===t.WritingMode.vertical?1:0;[p.rightJustifiedTextSymbolIndex,p.centerJustifiedTextSymbolIndex,p.leftJustifiedTextSymbolIndex].forEach(function(t){t>=0&&(e.text.placedSymbolArray.get(t).hidden=T||S)}),p.verticalPlacedTextSymbolIndex>=0&&(e.text.placedSymbolArray.get(p.verticalPlacedTextSymbolIndex).hidden=T||M);var E=this.variableOffsets[p.crossTileID];E&&this.markUsedJustification(e,E.anchor,p,A);var C=this.placedOrientations[p.crossTileID];C&&(this.markUsedJustification(e,\"left\",p,C),this.markUsedOrientation(e,C,p))}if(b){for(var L=Ae(y.icon),P=0;P<p.numIconVertices/4;P++)e.icon.opacityVertexArray.emplaceBack(L);e.icon.placedSymbolArray.get(f).hidden=y.icon.isHidden()}if(e.hasCollisionBoxData()||e.hasCollisionCircleData()){var O=e.collisionArrays[f];if(O){if(O.textBox){var I=new t.Point(0,0),z=!0;if(l){var D=this.variableOffsets[v];D?(I=ge(D.anchor,D.width,D.height,D.radialOffset,D.textBoxScale),c&&I._rotate(u?this.transform.angle:-this.transform.angle)):z=!1}me(e.collisionBox.collisionVertexArray,y.text.placed,!z,I.x,I.y)}O.iconBox&&me(e.collisionBox.collisionVertexArray,y.icon.placed,!1);var R=O.textCircles;if(R&&e.hasCollisionCircleData())for(var F=0;F<R.length;F+=5){var B=m||0===R[F+4];me(e.collisionCircle.collisionVertexArray,y.text.placed,B)}}}}e.sortFeatures(this.transform.angle),this.retainedQueryData[e.bucketInstanceId]&&(this.retainedQueryData[e.bucketInstanceId].featureSortOrder=e.featureSortOrder),e.hasTextData()&&e.text.opacityVertexBuffer&&e.text.opacityVertexBuffer.updateData(e.text.opacityVertexArray),e.hasIconData()&&e.icon.opacityVertexBuffer&&e.icon.opacityVertexBuffer.updateData(e.icon.opacityVertexArray),e.hasCollisionBoxData()&&e.collisionBox.collisionVertexBuffer&&e.collisionBox.collisionVertexBuffer.updateData(e.collisionBox.collisionVertexArray),e.hasCollisionCircleData()&&e.collisionCircle.collisionVertexBuffer&&e.collisionCircle.collisionVertexBuffer.updateData(e.collisionCircle.collisionVertexArray)},ve.prototype.symbolFadeChange=function(t){return 0===this.fadeDuration?1:(t-this.commitTime)/this.fadeDuration},ve.prototype.hasTransitions=function(t){return this.stale||t-this.lastPlacementChangeTime<this.fadeDuration},ve.prototype.stillRecent=function(t){return this.commitTime+this.fadeDuration>t},ve.prototype.setStale=function(){this.stale=!0};var ye=Math.pow(2,25),xe=Math.pow(2,24),be=Math.pow(2,17),_e=Math.pow(2,16),we=Math.pow(2,9),ke=Math.pow(2,8),Te=Math.pow(2,1);function Ae(t){if(0===t.opacity&&!t.placed)return 0;if(1===t.opacity&&t.placed)return 4294967295;var e=t.placed?1:0,r=Math.floor(127*t.opacity);return r*ye+e*xe+r*be+e*_e+r*we+e*ke+r*Te+e}var Me=function(){this._currentTileIndex=0,this._seenCrossTileIDs={}};Me.prototype.continuePlacement=function(t,e,r,n,a){for(;this._currentTileIndex<t.length;){var i=t[this._currentTileIndex];if(e.placeLayerTile(n,i,r,this._seenCrossTileIDs),this._currentTileIndex++,a())return!0}};var Se=function(t,e,r,n,a,i,o){this.placement=new ve(t,a,i,o),this._currentPlacementIndex=e.length-1,this._forceFullPlacement=r,this._showCollisionBoxes=n,this._done=!1};Se.prototype.isDone=function(){return this._done},Se.prototype.continuePlacement=function(e,r,n){for(var a=this,i=t.browser.now(),o=function(){var e=t.browser.now()-i;return!a._forceFullPlacement&&e>2};this._currentPlacementIndex>=0;){var s=r[e[this._currentPlacementIndex]],l=this.placement.collisionIndex.transform.zoom;if(\"symbol\"===s.type&&(!s.minzoom||s.minzoom<=l)&&(!s.maxzoom||s.maxzoom>l)){if(this._inProgressLayer||(this._inProgressLayer=new Me),this._inProgressLayer.continuePlacement(n[s.source],this.placement,this._showCollisionBoxes,s,o))return;delete this._inProgressLayer}this._currentPlacementIndex--}this._done=!0},Se.prototype.commit=function(t){return this.placement.commit(t),this.placement};var Ee=512/t.EXTENT/2,Ce=function(t,e,r){this.tileID=t,this.indexedSymbolInstances={},this.bucketInstanceId=r;for(var n=0;n<e.length;n++){var a=e.get(n),i=a.key;this.indexedSymbolInstances[i]||(this.indexedSymbolInstances[i]=[]),this.indexedSymbolInstances[i].push({crossTileID:a.crossTileID,coord:this.getScaledCoordinates(a,t)})}};Ce.prototype.getScaledCoordinates=function(e,r){var n=r.canonical.z-this.tileID.canonical.z,a=Ee/Math.pow(2,n);return{x:Math.floor((r.canonical.x*t.EXTENT+e.anchorX)*a),y:Math.floor((r.canonical.y*t.EXTENT+e.anchorY)*a)}},Ce.prototype.findMatches=function(t,e,r){for(var n=this.tileID.canonical.z<e.canonical.z?1:Math.pow(2,this.tileID.canonical.z-e.canonical.z),a=0;a<t.length;a++){var i=t.get(a);if(!i.crossTileID){var o=this.indexedSymbolInstances[i.key];if(o)for(var s=this.getScaledCoordinates(i,e),l=0,c=o;l<c.length;l+=1){var u=c[l];if(Math.abs(u.coord.x-s.x)<=n&&Math.abs(u.coord.y-s.y)<=n&&!r[u.crossTileID]){r[u.crossTileID]=!0,i.crossTileID=u.crossTileID;break}}}}};var Le=function(){this.maxCrossTileID=0};Le.prototype.generate=function(){return++this.maxCrossTileID};var Pe=function(){this.indexes={},this.usedCrossTileIDs={},this.lng=0};Pe.prototype.handleWrapJump=function(t){var e=Math.round((t-this.lng)/360);if(0!==e)for(var r in this.indexes){var n=this.indexes[r],a={};for(var i in n){var o=n[i];o.tileID=o.tileID.unwrapTo(o.tileID.wrap+e),a[o.tileID.key]=o}this.indexes[r]=a}this.lng=t},Pe.prototype.addBucket=function(t,e,r){if(this.indexes[t.overscaledZ]&&this.indexes[t.overscaledZ][t.key]){if(this.indexes[t.overscaledZ][t.key].bucketInstanceId===e.bucketInstanceId)return!1;this.removeBucketCrossTileIDs(t.overscaledZ,this.indexes[t.overscaledZ][t.key])}for(var n=0;n<e.symbolInstances.length;n++)e.symbolInstances.get(n).crossTileID=0;this.usedCrossTileIDs[t.overscaledZ]||(this.usedCrossTileIDs[t.overscaledZ]={});var a=this.usedCrossTileIDs[t.overscaledZ];for(var i in this.indexes){var o=this.indexes[i];if(Number(i)>t.overscaledZ)for(var s in o){var l=o[s];l.tileID.isChildOf(t)&&l.findMatches(e.symbolInstances,t,a)}else{var c=o[t.scaledTo(Number(i)).key];c&&c.findMatches(e.symbolInstances,t,a)}}for(var u=0;u<e.symbolInstances.length;u++){var h=e.symbolInstances.get(u);h.crossTileID||(h.crossTileID=r.generate(),a[h.crossTileID]=!0)}return void 0===this.indexes[t.overscaledZ]&&(this.indexes[t.overscaledZ]={}),this.indexes[t.overscaledZ][t.key]=new Ce(t,e.symbolInstances,e.bucketInstanceId),!0},Pe.prototype.removeBucketCrossTileIDs=function(t,e){for(var r in e.indexedSymbolInstances)for(var n=0,a=e.indexedSymbolInstances[r];n<a.length;n+=1){var i=a[n];delete this.usedCrossTileIDs[t][i.crossTileID]}},Pe.prototype.removeStaleBuckets=function(t){var e=!1;for(var r in this.indexes){var n=this.indexes[r];for(var a in n)t[n[a].bucketInstanceId]||(this.removeBucketCrossTileIDs(r,n[a]),delete n[a],e=!0)}return e};var Oe=function(){this.layerIndexes={},this.crossTileIDs=new Le,this.maxBucketInstanceId=0,this.bucketsInCurrentPlacement={}};Oe.prototype.addLayer=function(t,e,r){var n=this.layerIndexes[t.id];void 0===n&&(n=this.layerIndexes[t.id]=new Pe);var a=!1,i={};n.handleWrapJump(r);for(var o=0,s=e;o<s.length;o+=1){var l=s[o],c=l.getBucket(t);c&&t.id===c.layerIds[0]&&(c.bucketInstanceId||(c.bucketInstanceId=++this.maxBucketInstanceId),n.addBucket(l.tileID,c,this.crossTileIDs)&&(a=!0),i[c.bucketInstanceId]=!0)}return n.removeStaleBuckets(i)&&(a=!0),a},Oe.prototype.pruneUnusedLayers=function(t){var e={};for(var r in t.forEach(function(t){e[t]=!0}),this.layerIndexes)e[r]||delete this.layerIndexes[r]};var Ie=function(e,r){return t.emitValidationErrors(e,r&&r.filter(function(t){return\"source.canvas\"!==t.identifier}))},ze=t.pick(Nt,[\"addLayer\",\"removeLayer\",\"setPaintProperty\",\"setLayoutProperty\",\"setFilter\",\"addSource\",\"removeSource\",\"setLayerZoomRange\",\"setLight\",\"setTransition\",\"setGeoJSONSourceData\"]),De=t.pick(Nt,[\"setCenter\",\"setZoom\",\"setBearing\",\"setPitch\"]),Re=function(e){function r(n,a){var i=this;void 0===a&&(a={}),e.call(this),this.map=n,this.dispatcher=new T((Dt||(Dt=new zt),Dt),this),this.imageManager=new f,this.imageManager.setEventedParent(this),this.glyphManager=new x(n._requestManager,a.localIdeographFontFamily),this.lineAtlas=new k(256,512),this.crossTileSymbolIndex=new Oe,this._layers={},this._order=[],this.sourceCaches={},this.zoomHistory=new t.ZoomHistory,this._loaded=!1,this._resetUpdates(),this.dispatcher.broadcast(\"setReferrer\",t.getReferrer());var o=this;this._rtlTextPluginCallback=r.registerForPluginAvailability(function(t){for(var e in o.dispatcher.broadcast(\"loadRTLTextPlugin\",t.pluginURL,t.completionCallback),o.sourceCaches)o.sourceCaches[e].reload()}),this.on(\"data\",function(t){if(\"source\"===t.dataType&&\"metadata\"===t.sourceDataType){var e=i.sourceCaches[t.sourceId];if(e){var r=e.getSource();if(r&&r.vectorLayerIds)for(var n in i._layers){var a=i._layers[n];a.source===r.id&&i._validateLayer(a)}}}})}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.loadURL=function(e,r){var n=this;void 0===r&&(r={}),this.fire(new t.Event(\"dataloading\",{dataType:\"style\"}));var a=\"boolean\"==typeof r.validate?r.validate:!t.isMapboxURL(e);e=this.map._requestManager.normalizeStyleURL(e,r.accessToken);var i=this.map._requestManager.transformRequest(e,t.ResourceType.Style);this._request=t.getJSON(i,function(e,r){n._request=null,e?n.fire(new t.ErrorEvent(e)):r&&n._load(r,a)})},r.prototype.loadJSON=function(e,r){var n=this;void 0===r&&(r={}),this.fire(new t.Event(\"dataloading\",{dataType:\"style\"})),this._request=t.browser.frame(function(){n._request=null,n._load(e,!1!==r.validate)})},r.prototype._load=function(e,r){var n=this;if(!r||!Ie(this,t.validateStyle(e))){for(var a in this._loaded=!0,this.stylesheet=e,e.sources)this.addSource(a,e.sources[a],{validate:!1});e.sprite?this._spriteRequest=function(e,r,n){var a,i,o,s=t.browser.devicePixelRatio>1?\"@2x\":\"\",l=t.getJSON(r.transformRequest(r.normalizeSpriteURL(e,s,\".json\"),t.ResourceType.SpriteJSON),function(t,e){l=null,o||(o=t,a=e,u())}),c=t.getImage(r.transformRequest(r.normalizeSpriteURL(e,s,\".png\"),t.ResourceType.SpriteImage),function(t,e){c=null,o||(o=t,i=e,u())});function u(){if(o)n(o);else if(a&&i){var e=t.browser.getImageData(i),r={};for(var s in a){var l=a[s],c=l.width,u=l.height,h=l.x,f=l.y,p=l.sdf,d=l.pixelRatio,g=new t.RGBAImage({width:c,height:u});t.RGBAImage.copy(e,g,{x:h,y:f},{x:0,y:0},{width:c,height:u}),r[s]={data:g,pixelRatio:d,sdf:p}}n(null,r)}}return{cancel:function(){l&&(l.cancel(),l=null),c&&(c.cancel(),c=null)}}}(e.sprite,this.map._requestManager,function(e,r){if(n._spriteRequest=null,e)n.fire(new t.ErrorEvent(e));else if(r)for(var a in r)n.imageManager.addImage(a,r[a]);n.imageManager.setLoaded(!0),n.fire(new t.Event(\"data\",{dataType:\"style\"}))}):this.imageManager.setLoaded(!0),this.glyphManager.setURL(e.glyphs);var i=Bt(this.stylesheet.layers);this._order=i.map(function(t){return t.id}),this._layers={};for(var o=0,s=i;o<s.length;o+=1){var l=s[o];(l=t.createStyleLayer(l)).setEventedParent(this,{layer:{id:l.id}}),this._layers[l.id]=l}this.dispatcher.broadcast(\"setLayers\",this._serializeLayers(this._order)),this.light=new w(this.stylesheet.light),this.fire(new t.Event(\"data\",{dataType:\"style\"})),this.fire(new t.Event(\"style.load\"))}},r.prototype._validateLayer=function(e){var r=this.sourceCaches[e.source];if(r){var n=e.sourceLayer;if(n){var a=r.getSource();(\"geojson\"===a.type||a.vectorLayerIds&&-1===a.vectorLayerIds.indexOf(n))&&this.fire(new t.ErrorEvent(new Error('Source layer \"'+n+'\" does not exist on source \"'+a.id+'\" as specified by style layer \"'+e.id+'\"')))}}},r.prototype.loaded=function(){if(!this._loaded)return!1;if(Object.keys(this._updatedSources).length)return!1;for(var t in this.sourceCaches)if(!this.sourceCaches[t].loaded())return!1;return!!this.imageManager.isLoaded()},r.prototype._serializeLayers=function(t){for(var e=[],r=0,n=t;r<n.length;r+=1){var a=n[r],i=this._layers[a];\"custom\"!==i.type&&e.push(i.serialize())}return e},r.prototype.hasTransitions=function(){if(this.light&&this.light.hasTransition())return!0;for(var t in this.sourceCaches)if(this.sourceCaches[t].hasTransition())return!0;for(var e in this._layers)if(this._layers[e].hasTransition())return!0;return!1},r.prototype._checkLoaded=function(){if(!this._loaded)throw new Error(\"Style is not done loading\")},r.prototype.update=function(e){if(this._loaded){var r=this._changed;if(this._changed){var n=Object.keys(this._updatedLayers),a=Object.keys(this._removedLayers);for(var i in(n.length||a.length)&&this._updateWorkerLayers(n,a),this._updatedSources){var o=this._updatedSources[i];\"reload\"===o?this._reloadSource(i):\"clear\"===o&&this._clearSource(i)}for(var s in this._updatedPaintProps)this._layers[s].updateTransitions(e);this.light.updateTransitions(e),this._resetUpdates()}for(var l in this.sourceCaches)this.sourceCaches[l].used=!1;for(var c=0,u=this._order;c<u.length;c+=1){var h=u[c],f=this._layers[h];f.recalculate(e),!f.isHidden(e.zoom)&&f.source&&(this.sourceCaches[f.source].used=!0)}this.light.recalculate(e),this.z=e.zoom,r&&this.fire(new t.Event(\"data\",{dataType:\"style\"}))}},r.prototype._updateWorkerLayers=function(t,e){this.dispatcher.broadcast(\"updateLayers\",{layers:this._serializeLayers(t),removedIds:e})},r.prototype._resetUpdates=function(){this._changed=!1,this._updatedLayers={},this._removedLayers={},this._updatedSources={},this._updatedPaintProps={}},r.prototype.setState=function(e){var r=this;if(this._checkLoaded(),Ie(this,t.validateStyle(e)))return!1;(e=t.clone$1(e)).layers=Bt(e.layers);var n=function(e,r){if(!e)return[{command:Nt.setStyle,args:[r]}];var n=[];try{if(!t.deepEqual(e.version,r.version))return[{command:Nt.setStyle,args:[r]}];t.deepEqual(e.center,r.center)||n.push({command:Nt.setCenter,args:[r.center]}),t.deepEqual(e.zoom,r.zoom)||n.push({command:Nt.setZoom,args:[r.zoom]}),t.deepEqual(e.bearing,r.bearing)||n.push({command:Nt.setBearing,args:[r.bearing]}),t.deepEqual(e.pitch,r.pitch)||n.push({command:Nt.setPitch,args:[r.pitch]}),t.deepEqual(e.sprite,r.sprite)||n.push({command:Nt.setSprite,args:[r.sprite]}),t.deepEqual(e.glyphs,r.glyphs)||n.push({command:Nt.setGlyphs,args:[r.glyphs]}),t.deepEqual(e.transition,r.transition)||n.push({command:Nt.setTransition,args:[r.transition]}),t.deepEqual(e.light,r.light)||n.push({command:Nt.setLight,args:[r.light]});var a={},i=[];!function(e,r,n,a){var i;for(i in r=r||{},e=e||{})e.hasOwnProperty(i)&&(r.hasOwnProperty(i)||Vt(i,n,a));for(i in r)r.hasOwnProperty(i)&&(e.hasOwnProperty(i)?t.deepEqual(e[i],r[i])||(\"geojson\"===e[i].type&&\"geojson\"===r[i].type&&qt(e,r,i)?n.push({command:Nt.setGeoJSONSourceData,args:[i,r[i].data]}):Ut(i,r,n,a)):jt(i,r,n))}(e.sources,r.sources,i,a);var o=[];e.layers&&e.layers.forEach(function(t){a[t.source]?n.push({command:Nt.removeLayer,args:[t.id]}):o.push(t)}),n=n.concat(i),function(e,r,n){r=r||[];var a,i,o,s,l,c,u,h=(e=e||[]).map(Gt),f=r.map(Gt),p=e.reduce(Yt,{}),d=r.reduce(Yt,{}),g=h.slice(),v=Object.create(null);for(a=0,i=0;a<h.length;a++)o=h[a],d.hasOwnProperty(o)?i++:(n.push({command:Nt.removeLayer,args:[o]}),g.splice(g.indexOf(o,i),1));for(a=0,i=0;a<f.length;a++)o=f[f.length-1-a],g[g.length-1-a]!==o&&(p.hasOwnProperty(o)?(n.push({command:Nt.removeLayer,args:[o]}),g.splice(g.lastIndexOf(o,g.length-i),1)):i++,c=g[g.length-a],n.push({command:Nt.addLayer,args:[d[o],c]}),g.splice(g.length-a,0,o),v[o]=!0);for(a=0;a<f.length;a++)if(s=p[o=f[a]],l=d[o],!v[o]&&!t.deepEqual(s,l))if(t.deepEqual(s.source,l.source)&&t.deepEqual(s[\"source-layer\"],l[\"source-layer\"])&&t.deepEqual(s.type,l.type)){for(u in Ht(s.layout,l.layout,n,o,null,Nt.setLayoutProperty),Ht(s.paint,l.paint,n,o,null,Nt.setPaintProperty),t.deepEqual(s.filter,l.filter)||n.push({command:Nt.setFilter,args:[o,l.filter]}),t.deepEqual(s.minzoom,l.minzoom)&&t.deepEqual(s.maxzoom,l.maxzoom)||n.push({command:Nt.setLayerZoomRange,args:[o,l.minzoom,l.maxzoom]}),s)s.hasOwnProperty(u)&&\"layout\"!==u&&\"paint\"!==u&&\"filter\"!==u&&\"metadata\"!==u&&\"minzoom\"!==u&&\"maxzoom\"!==u&&(0===u.indexOf(\"paint.\")?Ht(s[u],l[u],n,o,u.slice(6),Nt.setPaintProperty):t.deepEqual(s[u],l[u])||n.push({command:Nt.setLayerProperty,args:[o,u,l[u]]}));for(u in l)l.hasOwnProperty(u)&&!s.hasOwnProperty(u)&&\"layout\"!==u&&\"paint\"!==u&&\"filter\"!==u&&\"metadata\"!==u&&\"minzoom\"!==u&&\"maxzoom\"!==u&&(0===u.indexOf(\"paint.\")?Ht(s[u],l[u],n,o,u.slice(6),Nt.setPaintProperty):t.deepEqual(s[u],l[u])||n.push({command:Nt.setLayerProperty,args:[o,u,l[u]]}))}else n.push({command:Nt.removeLayer,args:[o]}),c=g[g.lastIndexOf(o)+1],n.push({command:Nt.addLayer,args:[l,c]})}(o,r.layers,n)}catch(t){console.warn(\"Unable to compute style diff:\",t),n=[{command:Nt.setStyle,args:[r]}]}return n}(this.serialize(),e).filter(function(t){return!(t.command in De)});if(0===n.length)return!1;var a=n.filter(function(t){return!(t.command in ze)});if(a.length>0)throw new Error(\"Unimplemented: \"+a.map(function(t){return t.command}).join(\", \")+\".\");return n.forEach(function(t){\"setTransition\"!==t.command&&r[t.command].apply(r,t.args)}),this.stylesheet=e,!0},r.prototype.addImage=function(e,r){if(this.getImage(e))return this.fire(new t.ErrorEvent(new Error(\"An image with this name already exists.\")));this.imageManager.addImage(e,r),this.fire(new t.Event(\"data\",{dataType:\"style\"}))},r.prototype.updateImage=function(t,e){this.imageManager.updateImage(t,e)},r.prototype.getImage=function(t){return this.imageManager.getImage(t)},r.prototype.removeImage=function(e){if(!this.getImage(e))return this.fire(new t.ErrorEvent(new Error(\"No image with this name exists.\")));this.imageManager.removeImage(e),this.fire(new t.Event(\"data\",{dataType:\"style\"}))},r.prototype.listImages=function(){return this._checkLoaded(),this.imageManager.listImages()},r.prototype.addSource=function(e,r,n){var a=this;if(void 0===n&&(n={}),this._checkLoaded(),void 0!==this.sourceCaches[e])throw new Error(\"There is already a source with this ID\");if(!r.type)throw new Error(\"The type property must be defined, but the only the following properties were given: \"+Object.keys(r).join(\", \")+\".\");if(!([\"vector\",\"raster\",\"geojson\",\"video\",\"image\"].indexOf(r.type)>=0&&this._validate(t.validateStyle.source,\"sources.\"+e,r,null,n))){this.map&&this.map._collectResourceTiming&&(r.collectResourceTiming=!0);var i=this.sourceCaches[e]=new Lt(e,r,this.dispatcher);i.style=this,i.setEventedParent(this,function(){return{isSourceLoaded:a.loaded(),source:i.serialize(),sourceId:e}}),i.onAdd(this.map),this._changed=!0}},r.prototype.removeSource=function(e){if(this._checkLoaded(),void 0===this.sourceCaches[e])throw new Error(\"There is no source with this ID\");for(var r in this._layers)if(this._layers[r].source===e)return this.fire(new t.ErrorEvent(new Error('Source \"'+e+'\" cannot be removed while layer \"'+r+'\" is using it.')));var n=this.sourceCaches[e];delete this.sourceCaches[e],delete this._updatedSources[e],n.fire(new t.Event(\"data\",{sourceDataType:\"metadata\",dataType:\"source\",sourceId:e})),n.setEventedParent(null),n.clearTiles(),n.onRemove&&n.onRemove(this.map),this._changed=!0},r.prototype.setGeoJSONSourceData=function(t,e){this._checkLoaded(),this.sourceCaches[t].getSource().setData(e),this._changed=!0},r.prototype.getSource=function(t){return this.sourceCaches[t]&&this.sourceCaches[t].getSource()},r.prototype.addLayer=function(e,r,n){void 0===n&&(n={}),this._checkLoaded();var a=e.id;if(this.getLayer(a))this.fire(new t.ErrorEvent(new Error('Layer with id \"'+a+'\" already exists on this map')));else{var i;if(\"custom\"===e.type){if(Ie(this,t.validateCustomStyleLayer(e)))return;i=t.createStyleLayer(e)}else{if(\"object\"==typeof e.source&&(this.addSource(a,e.source),e=t.clone$1(e),e=t.extend(e,{source:a})),this._validate(t.validateStyle.layer,\"layers.\"+a,e,{arrayIndex:-1},n))return;i=t.createStyleLayer(e),this._validateLayer(i),i.setEventedParent(this,{layer:{id:a}})}var o=r?this._order.indexOf(r):this._order.length;if(r&&-1===o)this.fire(new t.ErrorEvent(new Error('Layer with id \"'+r+'\" does not exist on this map.')));else{if(this._order.splice(o,0,a),this._layerOrderChanged=!0,this._layers[a]=i,this._removedLayers[a]&&i.source&&\"custom\"!==i.type){var s=this._removedLayers[a];delete this._removedLayers[a],s.type!==i.type?this._updatedSources[i.source]=\"clear\":(this._updatedSources[i.source]=\"reload\",this.sourceCaches[i.source].pause())}this._updateLayer(i),i.onAdd&&i.onAdd(this.map)}}},r.prototype.moveLayer=function(e,r){if(this._checkLoaded(),this._changed=!0,this._layers[e]){if(e!==r){var n=this._order.indexOf(e);this._order.splice(n,1);var a=r?this._order.indexOf(r):this._order.length;r&&-1===a?this.fire(new t.ErrorEvent(new Error('Layer with id \"'+r+'\" does not exist on this map.'))):(this._order.splice(a,0,e),this._layerOrderChanged=!0)}}else this.fire(new t.ErrorEvent(new Error(\"The layer '\"+e+\"' does not exist in the map's style and cannot be moved.\")))},r.prototype.removeLayer=function(e){this._checkLoaded();var r=this._layers[e];if(r){r.setEventedParent(null);var n=this._order.indexOf(e);this._order.splice(n,1),this._layerOrderChanged=!0,this._changed=!0,this._removedLayers[e]=r,delete this._layers[e],delete this._updatedLayers[e],delete this._updatedPaintProps[e],r.onRemove&&r.onRemove(this.map)}else this.fire(new t.ErrorEvent(new Error(\"The layer '\"+e+\"' does not exist in the map's style and cannot be removed.\")))},r.prototype.getLayer=function(t){return this._layers[t]},r.prototype.setLayerZoomRange=function(e,r,n){this._checkLoaded();var a=this.getLayer(e);a?a.minzoom===r&&a.maxzoom===n||(null!=r&&(a.minzoom=r),null!=n&&(a.maxzoom=n),this._updateLayer(a)):this.fire(new t.ErrorEvent(new Error(\"The layer '\"+e+\"' does not exist in the map's style and cannot have zoom extent.\")))},r.prototype.setFilter=function(e,r,n){void 0===n&&(n={}),this._checkLoaded();var a=this.getLayer(e);if(a){if(!t.deepEqual(a.filter,r))return null==r?(a.filter=void 0,void this._updateLayer(a)):void(this._validate(t.validateStyle.filter,\"layers.\"+a.id+\".filter\",r,null,n)||(a.filter=t.clone$1(r),this._updateLayer(a)))}else this.fire(new t.ErrorEvent(new Error(\"The layer '\"+e+\"' does not exist in the map's style and cannot be filtered.\")))},r.prototype.getFilter=function(e){return t.clone$1(this.getLayer(e).filter)},r.prototype.setLayoutProperty=function(e,r,n,a){void 0===a&&(a={}),this._checkLoaded();var i=this.getLayer(e);i?t.deepEqual(i.getLayoutProperty(r),n)||(i.setLayoutProperty(r,n,a),this._updateLayer(i)):this.fire(new t.ErrorEvent(new Error(\"The layer '\"+e+\"' does not exist in the map's style and cannot be styled.\")))},r.prototype.getLayoutProperty=function(e,r){var n=this.getLayer(e);if(n)return n.getLayoutProperty(r);this.fire(new t.ErrorEvent(new Error(\"The layer '\"+e+\"' does not exist in the map's style.\")))},r.prototype.setPaintProperty=function(e,r,n,a){void 0===a&&(a={}),this._checkLoaded();var i=this.getLayer(e);i?t.deepEqual(i.getPaintProperty(r),n)||(i.setPaintProperty(r,n,a)&&this._updateLayer(i),this._changed=!0,this._updatedPaintProps[e]=!0):this.fire(new t.ErrorEvent(new Error(\"The layer '\"+e+\"' does not exist in the map's style and cannot be styled.\")))},r.prototype.getPaintProperty=function(t,e){return this.getLayer(t).getPaintProperty(e)},r.prototype.setFeatureState=function(e,r){this._checkLoaded();var n=e.source,a=e.sourceLayer,i=this.sourceCaches[n],o=parseInt(e.id,10);if(void 0!==i){var s=i.getSource().type;\"geojson\"===s&&a?this.fire(new t.ErrorEvent(new Error(\"GeoJSON sources cannot have a sourceLayer parameter.\"))):\"vector\"!==s||a?isNaN(o)||o<0?this.fire(new t.ErrorEvent(new Error(\"The feature id parameter must be provided and non-negative.\"))):i.setFeatureState(a,o,r):this.fire(new t.ErrorEvent(new Error(\"The sourceLayer parameter must be provided for vector source types.\")))}else this.fire(new t.ErrorEvent(new Error(\"The source '\"+n+\"' does not exist in the map's style.\")))},r.prototype.removeFeatureState=function(e,r){this._checkLoaded();var n=e.source,a=this.sourceCaches[n];if(void 0!==a){var i=a.getSource().type,o=\"vector\"===i?e.sourceLayer:void 0,s=parseInt(e.id,10);\"vector\"!==i||o?void 0!==e.id&&isNaN(s)||s<0?this.fire(new t.ErrorEvent(new Error(\"The feature id parameter must be non-negative.\"))):r&&\"string\"!=typeof e.id&&\"number\"!=typeof e.id?this.fire(new t.ErrorEvent(new Error(\"A feature id is requred to remove its specific state property.\"))):a.removeFeatureState(o,s,r):this.fire(new t.ErrorEvent(new Error(\"The sourceLayer parameter must be provided for vector source types.\")))}else this.fire(new t.ErrorEvent(new Error(\"The source '\"+n+\"' does not exist in the map's style.\")))},r.prototype.getFeatureState=function(e){this._checkLoaded();var r=e.source,n=e.sourceLayer,a=this.sourceCaches[r],i=parseInt(e.id,10);if(void 0!==a)if(\"vector\"!==a.getSource().type||n){if(!(isNaN(i)||i<0))return a.getFeatureState(n,i);this.fire(new t.ErrorEvent(new Error(\"The feature id parameter must be provided and non-negative.\")))}else this.fire(new t.ErrorEvent(new Error(\"The sourceLayer parameter must be provided for vector source types.\")));else this.fire(new t.ErrorEvent(new Error(\"The source '\"+r+\"' does not exist in the map's style.\")))},r.prototype.getTransition=function(){return t.extend({duration:300,delay:0},this.stylesheet&&this.stylesheet.transition)},r.prototype.serialize=function(){return t.filterObject({version:this.stylesheet.version,name:this.stylesheet.name,metadata:this.stylesheet.metadata,light:this.stylesheet.light,center:this.stylesheet.center,zoom:this.stylesheet.zoom,bearing:this.stylesheet.bearing,pitch:this.stylesheet.pitch,sprite:this.stylesheet.sprite,glyphs:this.stylesheet.glyphs,transition:this.stylesheet.transition,sources:t.mapObject(this.sourceCaches,function(t){return t.serialize()}),layers:this._serializeLayers(this._order)},function(t){return void 0!==t})},r.prototype._updateLayer=function(t){this._updatedLayers[t.id]=!0,t.source&&!this._updatedSources[t.source]&&(this._updatedSources[t.source]=\"reload\",this.sourceCaches[t.source].pause()),this._changed=!0},r.prototype._flattenAndSortRenderedFeatures=function(t){for(var e=this,r=function(t){return\"fill-extrusion\"===e._layers[t].type},n={},a=[],i=this._order.length-1;i>=0;i--){var o=this._order[i];if(r(o)){n[o]=i;for(var s=0,l=t;s<l.length;s+=1){var c=l[s][o];if(c)for(var u=0,h=c;u<h.length;u+=1){var f=h[u];a.push(f)}}}}a.sort(function(t,e){return e.intersectionZ-t.intersectionZ});for(var p=[],d=this._order.length-1;d>=0;d--){var g=this._order[d];if(r(g))for(var v=a.length-1;v>=0;v--){var m=a[v].feature;if(n[m.layer.id]<d)break;p.push(m),a.pop()}else for(var y=0,x=t;y<x.length;y+=1){var b=x[y][g];if(b)for(var _=0,w=b;_<w.length;_+=1){var k=w[_];p.push(k.feature)}}}return p},r.prototype.queryRenderedFeatures=function(e,r,n){r&&r.filter&&this._validate(t.validateStyle.filter,\"queryRenderedFeatures.filter\",r.filter,null,r);var a={};if(r&&r.layers){if(!Array.isArray(r.layers))return this.fire(new t.ErrorEvent(new Error(\"parameters.layers must be an Array.\"))),[];for(var i=0,o=r.layers;i<o.length;i+=1){var s=o[i],l=this._layers[s];if(!l)return this.fire(new t.ErrorEvent(new Error(\"The layer '\"+s+\"' does not exist in the map's style and cannot be queried for features.\"))),[];a[l.source]=!0}}var c=[];for(var u in this.sourceCaches)r.layers&&!a[u]||c.push(F(this.sourceCaches[u],this._layers,e,r,n));return this.placement&&c.push(function(t,e,r,n,a,i){for(var o={},s=a.queryRenderedSymbols(r),l=[],c=0,u=Object.keys(s).map(Number);c<u.length;c+=1){var h=u[c];l.push(i[h])}l.sort(B);for(var f=function(){var e=d[p],r=e.featureIndex.lookupSymbolFeatures(s[e.bucketInstanceId],e.bucketIndex,e.sourceLayerIndex,n.filter,n.layers,t);for(var a in r){var i=o[a]=o[a]||[],l=r[a];l.sort(function(t,r){var n=e.featureSortOrder;if(n){var a=n.indexOf(t.featureIndex);return n.indexOf(r.featureIndex)-a}return r.featureIndex-t.featureIndex});for(var c=0,u=l;c<u.length;c+=1){var h=u[c];i.push(h)}}},p=0,d=l;p<d.length;p+=1)f();var g=function(r){o[r].forEach(function(n){var a=n.feature,i=t[r],o=e[i.source].getFeatureState(a.layer[\"source-layer\"],a.id);a.source=a.layer.source,a.layer[\"source-layer\"]&&(a.sourceLayer=a.layer[\"source-layer\"]),a.state=o})};for(var v in o)g(v);return o}(this._layers,this.sourceCaches,e,r,this.placement.collisionIndex,this.placement.retainedQueryData)),this._flattenAndSortRenderedFeatures(c)},r.prototype.querySourceFeatures=function(e,r){r&&r.filter&&this._validate(t.validateStyle.filter,\"querySourceFeatures.filter\",r.filter,null,r);var n=this.sourceCaches[e];return n?function(t,e){for(var r=t.getRenderableIds().map(function(e){return t.getTileByID(e)}),n=[],a={},i=0;i<r.length;i++){var o=r[i],s=o.tileID.canonical.key;a[s]||(a[s]=!0,o.querySourceFeatures(n,e))}return n}(n,r):[]},r.prototype.addSourceType=function(t,e,n){return r.getSourceType(t)?n(new Error('A source type called \"'+t+'\" already exists.')):(r.setSourceType(t,e),e.workerSourceURL?void this.dispatcher.broadcast(\"loadWorkerSource\",{name:t,url:e.workerSourceURL},n):n(null,null))},r.prototype.getLight=function(){return this.light.getLight()},r.prototype.setLight=function(e,r){void 0===r&&(r={}),this._checkLoaded();var n=this.light.getLight(),a=!1;for(var i in e)if(!t.deepEqual(e[i],n[i])){a=!0;break}if(a){var o={now:t.browser.now(),transition:t.extend({duration:300,delay:0},this.stylesheet.transition)};this.light.setLight(e,r),this.light.updateTransitions(o)}},r.prototype._validate=function(e,r,n,a,i){return void 0===i&&(i={}),(!i||!1!==i.validate)&&Ie(this,e.call(t.validateStyle,t.extend({key:r,style:this.serialize(),value:n,styleSpec:t.styleSpec},a)))},r.prototype._remove=function(){for(var e in this._request&&(this._request.cancel(),this._request=null),this._spriteRequest&&(this._spriteRequest.cancel(),this._spriteRequest=null),t.evented.off(\"pluginAvailable\",this._rtlTextPluginCallback),this.sourceCaches)this.sourceCaches[e].clearTiles();this.dispatcher.remove()},r.prototype._clearSource=function(t){this.sourceCaches[t].clearTiles()},r.prototype._reloadSource=function(t){this.sourceCaches[t].resume(),this.sourceCaches[t].reload()},r.prototype._updateSources=function(t){for(var e in this.sourceCaches)this.sourceCaches[e].update(t)},r.prototype._generateCollisionBoxes=function(){for(var t in this.sourceCaches)this._reloadSource(t)},r.prototype._updatePlacement=function(e,r,n,a){for(var i=!1,o=!1,s={},l=0,c=this._order;l<c.length;l+=1){var u=c[l],h=this._layers[u];if(\"symbol\"===h.type){if(!s[h.source]){var f=this.sourceCaches[h.source];s[h.source]=f.getRenderableIds(!0).map(function(t){return f.getTileByID(t)}).sort(function(t,e){return e.tileID.overscaledZ-t.tileID.overscaledZ||(t.tileID.isLessThan(e.tileID)?-1:1)})}var p=this.crossTileSymbolIndex.addLayer(h,s[h.source],e.center.lng);i=i||p}}this.crossTileSymbolIndex.pruneUnusedLayers(this._order);var d=this._layerOrderChanged||0===n;if((d||!this.pauseablePlacement||this.pauseablePlacement.isDone()&&!this.placement.stillRecent(t.browser.now()))&&(this.pauseablePlacement=new Se(e,this._order,d,r,n,a,this.placement),this._layerOrderChanged=!1),this.pauseablePlacement.isDone()?this.placement.setStale():(this.pauseablePlacement.continuePlacement(this._order,this._layers,s),this.pauseablePlacement.isDone()&&(this.placement=this.pauseablePlacement.commit(t.browser.now()),o=!0),i&&this.pauseablePlacement.placement.setStale()),o||i)for(var g=0,v=this._order;g<v.length;g+=1){var m=v[g],y=this._layers[m];\"symbol\"===y.type&&this.placement.updateLayerOpacities(y,s[y.source])}return!this.pauseablePlacement.isDone()||this.placement.hasTransitions(t.browser.now())},r.prototype._releaseSymbolFadeTiles=function(){for(var t in this.sourceCaches)this.sourceCaches[t].releaseSymbolFadeTiles()},r.prototype.getImages=function(t,e,r){this.imageManager.getImages(e.icons,r)},r.prototype.getGlyphs=function(t,e,r){this.glyphManager.getGlyphs(e.stacks,r)},r.prototype.getResource=function(e,r,n){return t.makeRequest(r,n)},r}(t.Evented);Re.getSourceType=function(t){return z[t]},Re.setSourceType=function(t,e){z[t]=e},Re.registerForPluginAvailability=t.registerForPluginAvailability;var Fe=t.createLayout([{name:\"a_pos\",type:\"Int16\",components:2}]),Be=cr(\"#ifdef GL_ES\\nprecision mediump float;\\n#else\\n#if !defined(lowp)\\n#define lowp\\n#endif\\n#if !defined(mediump)\\n#define mediump\\n#endif\\n#if !defined(highp)\\n#define highp\\n#endif\\n#endif\",\"#ifdef GL_ES\\nprecision highp float;\\n#else\\n#if !defined(lowp)\\n#define lowp\\n#endif\\n#if !defined(mediump)\\n#define mediump\\n#endif\\n#if !defined(highp)\\n#define highp\\n#endif\\n#endif\\nvec2 unpack_float(const float packedValue) {int packedIntValue=int(packedValue);int v0=packedIntValue/256;return vec2(v0,packedIntValue-v0*256);}vec2 unpack_opacity(const float packedOpacity) {int intOpacity=int(packedOpacity)/2;return vec2(float(intOpacity)/127.0,mod(packedOpacity,2.0));}vec4 decode_color(const vec2 encodedColor) {return vec4(unpack_float(encodedColor[0])/255.0,unpack_float(encodedColor[1])/255.0\\n);}float unpack_mix_vec2(const vec2 packedValue,const float t) {return mix(packedValue[0],packedValue[1],t);}vec4 unpack_mix_color(const vec4 packedColors,const float t) {vec4 minColor=decode_color(vec2(packedColors[0],packedColors[1]));vec4 maxColor=decode_color(vec2(packedColors[2],packedColors[3]));return mix(minColor,maxColor,t);}vec2 get_pattern_pos(const vec2 pixel_coord_upper,const vec2 pixel_coord_lower,const vec2 pattern_size,const float tile_units_to_pixels,const vec2 pos) {vec2 offset=mod(mod(mod(pixel_coord_upper,pattern_size)*256.0,pattern_size)*256.0+pixel_coord_lower,pattern_size);return (tile_units_to_pixels*pos+offset)/pattern_size;}\"),Ne=cr(\"uniform vec4 u_color;uniform float u_opacity;void main() {gl_FragColor=u_color*u_opacity;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"attribute vec2 a_pos;uniform mat4 u_matrix;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);}\"),je=cr(\"uniform vec2 u_pattern_tl_a;uniform vec2 u_pattern_br_a;uniform vec2 u_pattern_tl_b;uniform vec2 u_pattern_br_b;uniform vec2 u_texsize;uniform float u_mix;uniform float u_opacity;uniform sampler2D u_image;varying vec2 v_pos_a;varying vec2 v_pos_b;void main() {vec2 imagecoord=mod(v_pos_a,1.0);vec2 pos=mix(u_pattern_tl_a/u_texsize,u_pattern_br_a/u_texsize,imagecoord);vec4 color1=texture2D(u_image,pos);vec2 imagecoord_b=mod(v_pos_b,1.0);vec2 pos2=mix(u_pattern_tl_b/u_texsize,u_pattern_br_b/u_texsize,imagecoord_b);vec4 color2=texture2D(u_image,pos2);gl_FragColor=mix(color1,color2,u_mix)*u_opacity;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform vec2 u_pattern_size_a;uniform vec2 u_pattern_size_b;uniform vec2 u_pixel_coord_upper;uniform vec2 u_pixel_coord_lower;uniform float u_scale_a;uniform float u_scale_b;uniform float u_tile_units_to_pixels;attribute vec2 a_pos;varying vec2 v_pos_a;varying vec2 v_pos_b;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);v_pos_a=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,u_scale_a*u_pattern_size_a,u_tile_units_to_pixels,a_pos);v_pos_b=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,u_scale_b*u_pattern_size_b,u_tile_units_to_pixels,a_pos);}\"),Ve=cr(\"varying vec3 v_data;\\n#pragma mapbox: define highp vec4 color\\n#pragma mapbox: define mediump float radius\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define highp vec4 stroke_color\\n#pragma mapbox: define mediump float stroke_width\\n#pragma mapbox: define lowp float stroke_opacity\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 color\\n#pragma mapbox: initialize mediump float radius\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize highp vec4 stroke_color\\n#pragma mapbox: initialize mediump float stroke_width\\n#pragma mapbox: initialize lowp float stroke_opacity\\nvec2 extrude=v_data.xy;float extrude_length=length(extrude);lowp float antialiasblur=v_data.z;float antialiased_blur=-max(blur,antialiasblur);float opacity_t=smoothstep(0.0,antialiased_blur,extrude_length-1.0);float color_t=stroke_width < 0.01 ? 0.0 : smoothstep(antialiased_blur,0.0,extrude_length-radius/(radius+stroke_width));gl_FragColor=opacity_t*mix(color*opacity,stroke_color*stroke_opacity,color_t);\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform bool u_scale_with_map;uniform bool u_pitch_with_map;uniform vec2 u_extrude_scale;uniform lowp float u_device_pixel_ratio;uniform highp float u_camera_to_center_distance;attribute vec2 a_pos;varying vec3 v_data;\\n#pragma mapbox: define highp vec4 color\\n#pragma mapbox: define mediump float radius\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define highp vec4 stroke_color\\n#pragma mapbox: define mediump float stroke_width\\n#pragma mapbox: define lowp float stroke_opacity\\nvoid main(void) {\\n#pragma mapbox: initialize highp vec4 color\\n#pragma mapbox: initialize mediump float radius\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize highp vec4 stroke_color\\n#pragma mapbox: initialize mediump float stroke_width\\n#pragma mapbox: initialize lowp float stroke_opacity\\nvec2 extrude=vec2(mod(a_pos,2.0)*2.0-1.0);vec2 circle_center=floor(a_pos*0.5);if (u_pitch_with_map) {vec2 corner_position=circle_center;if (u_scale_with_map) {corner_position+=extrude*(radius+stroke_width)*u_extrude_scale;} else {vec4 projected_center=u_matrix*vec4(circle_center,0,1);corner_position+=extrude*(radius+stroke_width)*u_extrude_scale*(projected_center.w/u_camera_to_center_distance);}gl_Position=u_matrix*vec4(corner_position,0,1);} else {gl_Position=u_matrix*vec4(circle_center,0,1);if (u_scale_with_map) {gl_Position.xy+=extrude*(radius+stroke_width)*u_extrude_scale*u_camera_to_center_distance;} else {gl_Position.xy+=extrude*(radius+stroke_width)*u_extrude_scale*gl_Position.w;}}lowp float antialiasblur=1.0/u_device_pixel_ratio/(radius+stroke_width);v_data=vec3(extrude.x,extrude.y,antialiasblur);}\"),Ue=cr(\"void main() {gl_FragColor=vec4(1.0);}\",\"attribute vec2 a_pos;uniform mat4 u_matrix;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);}\"),qe=cr(\"uniform highp float u_intensity;varying vec2 v_extrude;\\n#pragma mapbox: define highp float weight\\n#define GAUSS_COEF 0.3989422804014327\\nvoid main() {\\n#pragma mapbox: initialize highp float weight\\nfloat d=-0.5*3.0*3.0*dot(v_extrude,v_extrude);float val=weight*u_intensity*GAUSS_COEF*exp(d);gl_FragColor=vec4(val,1.0,1.0,1.0);\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform float u_extrude_scale;uniform float u_opacity;uniform float u_intensity;attribute vec2 a_pos;varying vec2 v_extrude;\\n#pragma mapbox: define highp float weight\\n#pragma mapbox: define mediump float radius\\nconst highp float ZERO=1.0/255.0/16.0;\\n#define GAUSS_COEF 0.3989422804014327\\nvoid main(void) {\\n#pragma mapbox: initialize highp float weight\\n#pragma mapbox: initialize mediump float radius\\nvec2 unscaled_extrude=vec2(mod(a_pos,2.0)*2.0-1.0);float S=sqrt(-2.0*log(ZERO/weight/u_intensity/GAUSS_COEF))/3.0;v_extrude=S*unscaled_extrude;vec2 extrude=v_extrude*radius*u_extrude_scale;vec4 pos=vec4(floor(a_pos*0.5)+extrude,0,1);gl_Position=u_matrix*pos;}\"),He=cr(\"uniform sampler2D u_image;uniform sampler2D u_color_ramp;uniform float u_opacity;varying vec2 v_pos;void main() {float t=texture2D(u_image,v_pos).r;vec4 color=texture2D(u_color_ramp,vec2(t,0.5));gl_FragColor=color*u_opacity;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(0.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform vec2 u_world;attribute vec2 a_pos;varying vec2 v_pos;void main() {gl_Position=u_matrix*vec4(a_pos*u_world,0,1);v_pos.x=a_pos.x;v_pos.y=1.0-a_pos.y;}\"),Ge=cr(\"varying float v_placed;varying float v_notUsed;void main() {float alpha=0.5;gl_FragColor=vec4(1.0,0.0,0.0,1.0)*alpha;if (v_placed > 0.5) {gl_FragColor=vec4(0.0,0.0,1.0,0.5)*alpha;}if (v_notUsed > 0.5) {gl_FragColor*=.1;}}\",\"attribute vec2 a_pos;attribute vec2 a_anchor_pos;attribute vec2 a_extrude;attribute vec2 a_placed;attribute vec2 a_shift;uniform mat4 u_matrix;uniform vec2 u_extrude_scale;uniform float u_camera_to_center_distance;varying float v_placed;varying float v_notUsed;void main() {vec4 projectedPoint=u_matrix*vec4(a_anchor_pos,0,1);highp float camera_to_anchor_distance=projectedPoint.w;highp float collision_perspective_ratio=clamp(0.5+0.5*(u_camera_to_center_distance/camera_to_anchor_distance),0.0,4.0);gl_Position=u_matrix*vec4(a_pos,0.0,1.0);gl_Position.xy+=(a_extrude+a_shift)*u_extrude_scale*gl_Position.w*collision_perspective_ratio;v_placed=a_placed.x;v_notUsed=a_placed.y;}\"),Ye=cr(\"uniform float u_overscale_factor;varying float v_placed;varying float v_notUsed;varying float v_radius;varying vec2 v_extrude;varying vec2 v_extrude_scale;void main() {float alpha=0.5;vec4 color=vec4(1.0,0.0,0.0,1.0)*alpha;if (v_placed > 0.5) {color=vec4(0.0,0.0,1.0,0.5)*alpha;}if (v_notUsed > 0.5) {color*=.2;}float extrude_scale_length=length(v_extrude_scale);float extrude_length=length(v_extrude)*extrude_scale_length;float stroke_width=15.0*extrude_scale_length/u_overscale_factor;float radius=v_radius*extrude_scale_length;float distance_to_edge=abs(extrude_length-radius);float opacity_t=smoothstep(-stroke_width,0.0,-distance_to_edge);gl_FragColor=opacity_t*color;}\",\"attribute vec2 a_pos;attribute vec2 a_anchor_pos;attribute vec2 a_extrude;attribute vec2 a_placed;uniform mat4 u_matrix;uniform vec2 u_extrude_scale;uniform float u_camera_to_center_distance;varying float v_placed;varying float v_notUsed;varying float v_radius;varying vec2 v_extrude;varying vec2 v_extrude_scale;void main() {vec4 projectedPoint=u_matrix*vec4(a_anchor_pos,0,1);highp float camera_to_anchor_distance=projectedPoint.w;highp float collision_perspective_ratio=clamp(0.5+0.5*(u_camera_to_center_distance/camera_to_anchor_distance),0.0,4.0);gl_Position=u_matrix*vec4(a_pos,0.0,1.0);highp float padding_factor=1.2;gl_Position.xy+=a_extrude*u_extrude_scale*padding_factor*gl_Position.w*collision_perspective_ratio;v_placed=a_placed.x;v_notUsed=a_placed.y;v_radius=abs(a_extrude.y);v_extrude=a_extrude*padding_factor;v_extrude_scale=u_extrude_scale*u_camera_to_center_distance*collision_perspective_ratio;}\"),We=cr(\"uniform highp vec4 u_color;void main() {gl_FragColor=u_color;}\",\"attribute vec2 a_pos;uniform mat4 u_matrix;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);}\"),Xe=cr(\"#pragma mapbox: define highp vec4 color\\n#pragma mapbox: define lowp float opacity\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 color\\n#pragma mapbox: initialize lowp float opacity\\ngl_FragColor=color*opacity;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"attribute vec2 a_pos;uniform mat4 u_matrix;\\n#pragma mapbox: define highp vec4 color\\n#pragma mapbox: define lowp float opacity\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 color\\n#pragma mapbox: initialize lowp float opacity\\ngl_Position=u_matrix*vec4(a_pos,0,1);}\"),Ze=cr(\"varying vec2 v_pos;\\n#pragma mapbox: define highp vec4 outline_color\\n#pragma mapbox: define lowp float opacity\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 outline_color\\n#pragma mapbox: initialize lowp float opacity\\nfloat dist=length(v_pos-gl_FragCoord.xy);float alpha=1.0-smoothstep(0.0,1.0,dist);gl_FragColor=outline_color*(alpha*opacity);\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"attribute vec2 a_pos;uniform mat4 u_matrix;uniform vec2 u_world;varying vec2 v_pos;\\n#pragma mapbox: define highp vec4 outline_color\\n#pragma mapbox: define lowp float opacity\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 outline_color\\n#pragma mapbox: initialize lowp float opacity\\ngl_Position=u_matrix*vec4(a_pos,0,1);v_pos=(gl_Position.xy/gl_Position.w+1.0)/2.0*u_world;}\"),Je=cr(\"uniform vec2 u_texsize;uniform sampler2D u_image;uniform float u_fade;varying vec2 v_pos_a;varying vec2 v_pos_b;varying vec2 v_pos;\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define lowp vec4 pattern_from\\n#pragma mapbox: define lowp vec4 pattern_to\\nvoid main() {\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize mediump vec4 pattern_from\\n#pragma mapbox: initialize mediump vec4 pattern_to\\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;vec2 imagecoord=mod(v_pos_a,1.0);vec2 pos=mix(pattern_tl_a/u_texsize,pattern_br_a/u_texsize,imagecoord);vec4 color1=texture2D(u_image,pos);vec2 imagecoord_b=mod(v_pos_b,1.0);vec2 pos2=mix(pattern_tl_b/u_texsize,pattern_br_b/u_texsize,imagecoord_b);vec4 color2=texture2D(u_image,pos2);float dist=length(v_pos-gl_FragCoord.xy);float alpha=1.0-smoothstep(0.0,1.0,dist);gl_FragColor=mix(color1,color2,u_fade)*alpha*opacity;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform vec2 u_world;uniform vec2 u_pixel_coord_upper;uniform vec2 u_pixel_coord_lower;uniform vec4 u_scale;attribute vec2 a_pos;varying vec2 v_pos_a;varying vec2 v_pos_b;varying vec2 v_pos;\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define lowp vec4 pattern_from\\n#pragma mapbox: define lowp vec4 pattern_to\\nvoid main() {\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize mediump vec4 pattern_from\\n#pragma mapbox: initialize mediump vec4 pattern_to\\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;float pixelRatio=u_scale.x;float tileRatio=u_scale.y;float fromScale=u_scale.z;float toScale=u_scale.w;gl_Position=u_matrix*vec4(a_pos,0,1);vec2 display_size_a=vec2((pattern_br_a.x-pattern_tl_a.x)/pixelRatio,(pattern_br_a.y-pattern_tl_a.y)/pixelRatio);vec2 display_size_b=vec2((pattern_br_b.x-pattern_tl_b.x)/pixelRatio,(pattern_br_b.y-pattern_tl_b.y)/pixelRatio);v_pos_a=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,fromScale*display_size_a,tileRatio,a_pos);v_pos_b=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,toScale*display_size_b,tileRatio,a_pos);v_pos=(gl_Position.xy/gl_Position.w+1.0)/2.0*u_world;}\"),Ke=cr(\"uniform vec2 u_texsize;uniform float u_fade;uniform sampler2D u_image;varying vec2 v_pos_a;varying vec2 v_pos_b;\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define lowp vec4 pattern_from\\n#pragma mapbox: define lowp vec4 pattern_to\\nvoid main() {\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize mediump vec4 pattern_from\\n#pragma mapbox: initialize mediump vec4 pattern_to\\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;vec2 imagecoord=mod(v_pos_a,1.0);vec2 pos=mix(pattern_tl_a/u_texsize,pattern_br_a/u_texsize,imagecoord);vec4 color1=texture2D(u_image,pos);vec2 imagecoord_b=mod(v_pos_b,1.0);vec2 pos2=mix(pattern_tl_b/u_texsize,pattern_br_b/u_texsize,imagecoord_b);vec4 color2=texture2D(u_image,pos2);gl_FragColor=mix(color1,color2,u_fade)*opacity;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform vec2 u_pixel_coord_upper;uniform vec2 u_pixel_coord_lower;uniform vec4 u_scale;attribute vec2 a_pos;varying vec2 v_pos_a;varying vec2 v_pos_b;\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define lowp vec4 pattern_from\\n#pragma mapbox: define lowp vec4 pattern_to\\nvoid main() {\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize mediump vec4 pattern_from\\n#pragma mapbox: initialize mediump vec4 pattern_to\\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;float pixelRatio=u_scale.x;float tileZoomRatio=u_scale.y;float fromScale=u_scale.z;float toScale=u_scale.w;vec2 display_size_a=vec2((pattern_br_a.x-pattern_tl_a.x)/pixelRatio,(pattern_br_a.y-pattern_tl_a.y)/pixelRatio);vec2 display_size_b=vec2((pattern_br_b.x-pattern_tl_b.x)/pixelRatio,(pattern_br_b.y-pattern_tl_b.y)/pixelRatio);gl_Position=u_matrix*vec4(a_pos,0,1);v_pos_a=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,fromScale*display_size_a,tileZoomRatio,a_pos);v_pos_b=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,toScale*display_size_b,tileZoomRatio,a_pos);}\"),Qe=cr(\"varying vec4 v_color;void main() {gl_FragColor=v_color;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform vec3 u_lightcolor;uniform lowp vec3 u_lightpos;uniform lowp float u_lightintensity;uniform float u_vertical_gradient;uniform lowp float u_opacity;attribute vec2 a_pos;attribute vec4 a_normal_ed;varying vec4 v_color;\\n#pragma mapbox: define highp float base\\n#pragma mapbox: define highp float height\\n#pragma mapbox: define highp vec4 color\\nvoid main() {\\n#pragma mapbox: initialize highp float base\\n#pragma mapbox: initialize highp float height\\n#pragma mapbox: initialize highp vec4 color\\nvec3 normal=a_normal_ed.xyz;base=max(0.0,base);height=max(0.0,height);float t=mod(normal.x,2.0);gl_Position=u_matrix*vec4(a_pos,t > 0.0 ? height : base,1);float colorvalue=color.r*0.2126+color.g*0.7152+color.b*0.0722;v_color=vec4(0.0,0.0,0.0,1.0);vec4 ambientlight=vec4(0.03,0.03,0.03,1.0);color+=ambientlight;float directional=clamp(dot(normal/16384.0,u_lightpos),0.0,1.0);directional=mix((1.0-u_lightintensity),max((1.0-colorvalue+u_lightintensity),1.0),directional);if (normal.y !=0.0) {directional*=((1.0-u_vertical_gradient)+(u_vertical_gradient*clamp((t+base)*pow(height/150.0,0.5),mix(0.7,0.98,1.0-u_lightintensity),1.0)));}v_color.r+=clamp(color.r*directional*u_lightcolor.r,mix(0.0,0.3,1.0-u_lightcolor.r),1.0);v_color.g+=clamp(color.g*directional*u_lightcolor.g,mix(0.0,0.3,1.0-u_lightcolor.g),1.0);v_color.b+=clamp(color.b*directional*u_lightcolor.b,mix(0.0,0.3,1.0-u_lightcolor.b),1.0);v_color*=u_opacity;}\"),$e=cr(\"uniform vec2 u_texsize;uniform float u_fade;uniform sampler2D u_image;varying vec2 v_pos_a;varying vec2 v_pos_b;varying vec4 v_lighting;\\n#pragma mapbox: define lowp float base\\n#pragma mapbox: define lowp float height\\n#pragma mapbox: define lowp vec4 pattern_from\\n#pragma mapbox: define lowp vec4 pattern_to\\nvoid main() {\\n#pragma mapbox: initialize lowp float base\\n#pragma mapbox: initialize lowp float height\\n#pragma mapbox: initialize mediump vec4 pattern_from\\n#pragma mapbox: initialize mediump vec4 pattern_to\\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;vec2 imagecoord=mod(v_pos_a,1.0);vec2 pos=mix(pattern_tl_a/u_texsize,pattern_br_a/u_texsize,imagecoord);vec4 color1=texture2D(u_image,pos);vec2 imagecoord_b=mod(v_pos_b,1.0);vec2 pos2=mix(pattern_tl_b/u_texsize,pattern_br_b/u_texsize,imagecoord_b);vec4 color2=texture2D(u_image,pos2);vec4 mixedColor=mix(color1,color2,u_fade);gl_FragColor=mixedColor*v_lighting;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform vec2 u_pixel_coord_upper;uniform vec2 u_pixel_coord_lower;uniform float u_height_factor;uniform vec4 u_scale;uniform float u_vertical_gradient;uniform lowp float u_opacity;uniform vec3 u_lightcolor;uniform lowp vec3 u_lightpos;uniform lowp float u_lightintensity;attribute vec2 a_pos;attribute vec4 a_normal_ed;varying vec2 v_pos_a;varying vec2 v_pos_b;varying vec4 v_lighting;\\n#pragma mapbox: define lowp float base\\n#pragma mapbox: define lowp float height\\n#pragma mapbox: define lowp vec4 pattern_from\\n#pragma mapbox: define lowp vec4 pattern_to\\nvoid main() {\\n#pragma mapbox: initialize lowp float base\\n#pragma mapbox: initialize lowp float height\\n#pragma mapbox: initialize mediump vec4 pattern_from\\n#pragma mapbox: initialize mediump vec4 pattern_to\\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;float pixelRatio=u_scale.x;float tileRatio=u_scale.y;float fromScale=u_scale.z;float toScale=u_scale.w;vec3 normal=a_normal_ed.xyz;float edgedistance=a_normal_ed.w;vec2 display_size_a=vec2((pattern_br_a.x-pattern_tl_a.x)/pixelRatio,(pattern_br_a.y-pattern_tl_a.y)/pixelRatio);vec2 display_size_b=vec2((pattern_br_b.x-pattern_tl_b.x)/pixelRatio,(pattern_br_b.y-pattern_tl_b.y)/pixelRatio);base=max(0.0,base);height=max(0.0,height);float t=mod(normal.x,2.0);float z=t > 0.0 ? height : base;gl_Position=u_matrix*vec4(a_pos,z,1);vec2 pos=normal.x==1.0 && normal.y==0.0 && normal.z==16384.0\\n? a_pos\\n: vec2(edgedistance,z*u_height_factor);v_pos_a=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,fromScale*display_size_a,tileRatio,pos);v_pos_b=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,toScale*display_size_b,tileRatio,pos);v_lighting=vec4(0.0,0.0,0.0,1.0);float directional=clamp(dot(normal/16383.0,u_lightpos),0.0,1.0);directional=mix((1.0-u_lightintensity),max((0.5+u_lightintensity),1.0),directional);if (normal.y !=0.0) {directional*=((1.0-u_vertical_gradient)+(u_vertical_gradient*clamp((t+base)*pow(height/150.0,0.5),mix(0.7,0.98,1.0-u_lightintensity),1.0)));}v_lighting.rgb+=clamp(directional*u_lightcolor,mix(vec3(0.0),vec3(0.3),1.0-u_lightcolor),vec3(1.0));v_lighting*=u_opacity;}\"),tr=cr(\"#ifdef GL_ES\\nprecision highp float;\\n#endif\\nuniform sampler2D u_image;varying vec2 v_pos;uniform vec2 u_dimension;uniform float u_zoom;uniform float u_maxzoom;float getElevation(vec2 coord,float bias) {vec4 data=texture2D(u_image,coord)*255.0;return (data.r+data.g*256.0+data.b*256.0*256.0)/4.0;}void main() {vec2 epsilon=1.0/u_dimension;float a=getElevation(v_pos+vec2(-epsilon.x,-epsilon.y),0.0);float b=getElevation(v_pos+vec2(0,-epsilon.y),0.0);float c=getElevation(v_pos+vec2(epsilon.x,-epsilon.y),0.0);float d=getElevation(v_pos+vec2(-epsilon.x,0),0.0);float e=getElevation(v_pos,0.0);float f=getElevation(v_pos+vec2(epsilon.x,0),0.0);float g=getElevation(v_pos+vec2(-epsilon.x,epsilon.y),0.0);float h=getElevation(v_pos+vec2(0,epsilon.y),0.0);float i=getElevation(v_pos+vec2(epsilon.x,epsilon.y),0.0);float exaggeration=u_zoom < 2.0 ? 0.4 : u_zoom < 4.5 ? 0.35 : 0.3;vec2 deriv=vec2((c+f+f+i)-(a+d+d+g),(g+h+h+i)-(a+b+b+c))/ pow(2.0,(u_zoom-u_maxzoom)*exaggeration+19.2562-u_zoom);gl_FragColor=clamp(vec4(deriv.x/2.0+0.5,deriv.y/2.0+0.5,1.0,1.0),0.0,1.0);\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform vec2 u_dimension;attribute vec2 a_pos;attribute vec2 a_texture_pos;varying vec2 v_pos;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);highp vec2 epsilon=1.0/u_dimension;float scale=(u_dimension.x-2.0)/u_dimension.x;v_pos=(a_texture_pos/8192.0)*scale+epsilon;}\"),er=cr(\"uniform sampler2D u_image;varying vec2 v_pos;uniform vec2 u_latrange;uniform vec2 u_light;uniform vec4 u_shadow;uniform vec4 u_highlight;uniform vec4 u_accent;\\n#define PI 3.141592653589793\\nvoid main() {vec4 pixel=texture2D(u_image,v_pos);vec2 deriv=((pixel.rg*2.0)-1.0);float scaleFactor=cos(radians((u_latrange[0]-u_latrange[1])*(1.0-v_pos.y)+u_latrange[1]));float slope=atan(1.25*length(deriv)/scaleFactor);float aspect=deriv.x !=0.0 ? atan(deriv.y,-deriv.x) : PI/2.0*(deriv.y > 0.0 ? 1.0 :-1.0);float intensity=u_light.x;float azimuth=u_light.y+PI;float base=1.875-intensity*1.75;float maxValue=0.5*PI;float scaledSlope=intensity !=0.5 ? ((pow(base,slope)-1.0)/(pow(base,maxValue)-1.0))*maxValue : slope;float accent=cos(scaledSlope);vec4 accent_color=(1.0-accent)*u_accent*clamp(intensity*2.0,0.0,1.0);float shade=abs(mod((aspect+azimuth)/PI+0.5,2.0)-1.0);vec4 shade_color=mix(u_shadow,u_highlight,shade)*sin(scaledSlope)*clamp(intensity*2.0,0.0,1.0);gl_FragColor=accent_color*(1.0-shade_color.a)+shade_color;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;attribute vec2 a_pos;attribute vec2 a_texture_pos;varying vec2 v_pos;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);v_pos=a_texture_pos/8192.0;}\"),rr=cr(\"uniform lowp float u_device_pixel_ratio;varying vec2 v_width2;varying vec2 v_normal;varying float v_gamma_scale;\\n#pragma mapbox: define highp vec4 color\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 color\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\nfloat dist=length(v_normal)*v_width2.s;float blur2=(blur+1.0/u_device_pixel_ratio)*v_gamma_scale;float alpha=clamp(min(dist-(v_width2.t-blur2),v_width2.s-dist)/blur2,0.0,1.0);gl_FragColor=color*(alpha*opacity);\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"\\n#define scale 0.015873016\\nattribute vec2 a_pos_normal;attribute vec4 a_data;uniform mat4 u_matrix;uniform mediump float u_ratio;uniform vec2 u_units_to_pixels;uniform lowp float u_device_pixel_ratio;varying vec2 v_normal;varying vec2 v_width2;varying float v_gamma_scale;varying highp float v_linesofar;\\n#pragma mapbox: define highp vec4 color\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define mediump float gapwidth\\n#pragma mapbox: define lowp float offset\\n#pragma mapbox: define mediump float width\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 color\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize mediump float gapwidth\\n#pragma mapbox: initialize lowp float offset\\n#pragma mapbox: initialize mediump float width\\nfloat ANTIALIASING=1.0/u_device_pixel_ratio/2.0;vec2 a_extrude=a_data.xy-128.0;float a_direction=mod(a_data.z,4.0)-1.0;v_linesofar=(floor(a_data.z/4.0)+a_data.w*64.0)*2.0;vec2 pos=floor(a_pos_normal*0.5);mediump vec2 normal=a_pos_normal-2.0*pos;normal.y=normal.y*2.0-1.0;v_normal=normal;gapwidth=gapwidth/2.0;float halfwidth=width/2.0;offset=-1.0*offset;float inset=gapwidth+(gapwidth > 0.0 ? ANTIALIASING : 0.0);float outset=gapwidth+halfwidth*(gapwidth > 0.0 ? 2.0 : 1.0)+(halfwidth==0.0 ? 0.0 : ANTIALIASING);mediump vec2 dist=outset*a_extrude*scale;mediump float u=0.5*a_direction;mediump float t=1.0-abs(u);mediump vec2 offset2=offset*a_extrude*scale*normal.y*mat2(t,-u,u,t);vec4 projected_extrude=u_matrix*vec4(dist/u_ratio,0.0,0.0);gl_Position=u_matrix*vec4(pos+offset2/u_ratio,0.0,1.0)+projected_extrude;float extrude_length_without_perspective=length(dist);float extrude_length_with_perspective=length(projected_extrude.xy/gl_Position.w*u_units_to_pixels);v_gamma_scale=extrude_length_without_perspective/extrude_length_with_perspective;v_width2=vec2(outset,inset);}\"),nr=cr(\"uniform lowp float u_device_pixel_ratio;uniform sampler2D u_image;varying vec2 v_width2;varying vec2 v_normal;varying float v_gamma_scale;varying highp float v_lineprogress;\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\nvoid main() {\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\nfloat dist=length(v_normal)*v_width2.s;float blur2=(blur+1.0/u_device_pixel_ratio)*v_gamma_scale;float alpha=clamp(min(dist-(v_width2.t-blur2),v_width2.s-dist)/blur2,0.0,1.0);vec4 color=texture2D(u_image,vec2(v_lineprogress,0.5));gl_FragColor=color*(alpha*opacity);\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"\\n#define MAX_LINE_DISTANCE 32767.0\\n#define scale 0.015873016\\nattribute vec2 a_pos_normal;attribute vec4 a_data;uniform mat4 u_matrix;uniform mediump float u_ratio;uniform lowp float u_device_pixel_ratio;uniform vec2 u_units_to_pixels;varying vec2 v_normal;varying vec2 v_width2;varying float v_gamma_scale;varying highp float v_lineprogress;\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define mediump float gapwidth\\n#pragma mapbox: define lowp float offset\\n#pragma mapbox: define mediump float width\\nvoid main() {\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize mediump float gapwidth\\n#pragma mapbox: initialize lowp float offset\\n#pragma mapbox: initialize mediump float width\\nfloat ANTIALIASING=1.0/u_device_pixel_ratio/2.0;vec2 a_extrude=a_data.xy-128.0;float a_direction=mod(a_data.z,4.0)-1.0;v_lineprogress=(floor(a_data.z/4.0)+a_data.w*64.0)*2.0/MAX_LINE_DISTANCE;vec2 pos=floor(a_pos_normal*0.5);mediump vec2 normal=a_pos_normal-2.0*pos;normal.y=normal.y*2.0-1.0;v_normal=normal;gapwidth=gapwidth/2.0;float halfwidth=width/2.0;offset=-1.0*offset;float inset=gapwidth+(gapwidth > 0.0 ? ANTIALIASING : 0.0);float outset=gapwidth+halfwidth*(gapwidth > 0.0 ? 2.0 : 1.0)+(halfwidth==0.0 ? 0.0 : ANTIALIASING);mediump vec2 dist=outset*a_extrude*scale;mediump float u=0.5*a_direction;mediump float t=1.0-abs(u);mediump vec2 offset2=offset*a_extrude*scale*normal.y*mat2(t,-u,u,t);vec4 projected_extrude=u_matrix*vec4(dist/u_ratio,0.0,0.0);gl_Position=u_matrix*vec4(pos+offset2/u_ratio,0.0,1.0)+projected_extrude;float extrude_length_without_perspective=length(dist);float extrude_length_with_perspective=length(projected_extrude.xy/gl_Position.w*u_units_to_pixels);v_gamma_scale=extrude_length_without_perspective/extrude_length_with_perspective;v_width2=vec2(outset,inset);}\"),ar=cr(\"uniform lowp float u_device_pixel_ratio;uniform vec2 u_texsize;uniform float u_fade;uniform mediump vec4 u_scale;uniform sampler2D u_image;varying vec2 v_normal;varying vec2 v_width2;varying float v_linesofar;varying float v_gamma_scale;\\n#pragma mapbox: define lowp vec4 pattern_from\\n#pragma mapbox: define lowp vec4 pattern_to\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\nvoid main() {\\n#pragma mapbox: initialize mediump vec4 pattern_from\\n#pragma mapbox: initialize mediump vec4 pattern_to\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;float pixelRatio=u_scale.x;float tileZoomRatio=u_scale.y;float fromScale=u_scale.z;float toScale=u_scale.w;vec2 display_size_a=vec2((pattern_br_a.x-pattern_tl_a.x)/pixelRatio,(pattern_br_a.y-pattern_tl_a.y)/pixelRatio);vec2 display_size_b=vec2((pattern_br_b.x-pattern_tl_b.x)/pixelRatio,(pattern_br_b.y-pattern_tl_b.y)/pixelRatio);vec2 pattern_size_a=vec2(display_size_a.x*fromScale/tileZoomRatio,display_size_a.y);vec2 pattern_size_b=vec2(display_size_b.x*toScale/tileZoomRatio,display_size_b.y);float dist=length(v_normal)*v_width2.s;float blur2=(blur+1.0/u_device_pixel_ratio)*v_gamma_scale;float alpha=clamp(min(dist-(v_width2.t-blur2),v_width2.s-dist)/blur2,0.0,1.0);float x_a=mod(v_linesofar/pattern_size_a.x,1.0);float x_b=mod(v_linesofar/pattern_size_b.x,1.0);float y_a=0.5+(v_normal.y*clamp(v_width2.s,0.0,(pattern_size_a.y+2.0)/2.0)/pattern_size_a.y);float y_b=0.5+(v_normal.y*clamp(v_width2.s,0.0,(pattern_size_b.y+2.0)/2.0)/pattern_size_b.y);vec2 pos_a=mix(pattern_tl_a/u_texsize,pattern_br_a/u_texsize,vec2(x_a,y_a));vec2 pos_b=mix(pattern_tl_b/u_texsize,pattern_br_b/u_texsize,vec2(x_b,y_b));vec4 color=mix(texture2D(u_image,pos_a),texture2D(u_image,pos_b),u_fade);gl_FragColor=color*alpha*opacity;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"\\n#define scale 0.015873016\\n#define LINE_DISTANCE_SCALE 2.0\\nattribute vec2 a_pos_normal;attribute vec4 a_data;uniform mat4 u_matrix;uniform vec2 u_units_to_pixels;uniform mediump float u_ratio;uniform lowp float u_device_pixel_ratio;varying vec2 v_normal;varying vec2 v_width2;varying float v_linesofar;varying float v_gamma_scale;\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define lowp float offset\\n#pragma mapbox: define mediump float gapwidth\\n#pragma mapbox: define mediump float width\\n#pragma mapbox: define lowp vec4 pattern_from\\n#pragma mapbox: define lowp vec4 pattern_to\\nvoid main() {\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize lowp float offset\\n#pragma mapbox: initialize mediump float gapwidth\\n#pragma mapbox: initialize mediump float width\\n#pragma mapbox: initialize mediump vec4 pattern_from\\n#pragma mapbox: initialize mediump vec4 pattern_to\\nfloat ANTIALIASING=1.0/u_device_pixel_ratio/2.0;vec2 a_extrude=a_data.xy-128.0;float a_direction=mod(a_data.z,4.0)-1.0;float a_linesofar=(floor(a_data.z/4.0)+a_data.w*64.0)*LINE_DISTANCE_SCALE;vec2 pos=floor(a_pos_normal*0.5);mediump vec2 normal=a_pos_normal-2.0*pos;normal.y=normal.y*2.0-1.0;v_normal=normal;gapwidth=gapwidth/2.0;float halfwidth=width/2.0;offset=-1.0*offset;float inset=gapwidth+(gapwidth > 0.0 ? ANTIALIASING : 0.0);float outset=gapwidth+halfwidth*(gapwidth > 0.0 ? 2.0 : 1.0)+(halfwidth==0.0 ? 0.0 : ANTIALIASING);mediump vec2 dist=outset*a_extrude*scale;mediump float u=0.5*a_direction;mediump float t=1.0-abs(u);mediump vec2 offset2=offset*a_extrude*scale*normal.y*mat2(t,-u,u,t);vec4 projected_extrude=u_matrix*vec4(dist/u_ratio,0.0,0.0);gl_Position=u_matrix*vec4(pos+offset2/u_ratio,0.0,1.0)+projected_extrude;float extrude_length_without_perspective=length(dist);float extrude_length_with_perspective=length(projected_extrude.xy/gl_Position.w*u_units_to_pixels);v_gamma_scale=extrude_length_without_perspective/extrude_length_with_perspective;v_linesofar=a_linesofar;v_width2=vec2(outset,inset);}\"),ir=cr(\"uniform lowp float u_device_pixel_ratio;uniform sampler2D u_image;uniform float u_sdfgamma;uniform float u_mix;varying vec2 v_normal;varying vec2 v_width2;varying vec2 v_tex_a;varying vec2 v_tex_b;varying float v_gamma_scale;\\n#pragma mapbox: define highp vec4 color\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define mediump float width\\n#pragma mapbox: define lowp float floorwidth\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 color\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize mediump float width\\n#pragma mapbox: initialize lowp float floorwidth\\nfloat dist=length(v_normal)*v_width2.s;float blur2=(blur+1.0/u_device_pixel_ratio)*v_gamma_scale;float alpha=clamp(min(dist-(v_width2.t-blur2),v_width2.s-dist)/blur2,0.0,1.0);float sdfdist_a=texture2D(u_image,v_tex_a).a;float sdfdist_b=texture2D(u_image,v_tex_b).a;float sdfdist=mix(sdfdist_a,sdfdist_b,u_mix);alpha*=smoothstep(0.5-u_sdfgamma/floorwidth,0.5+u_sdfgamma/floorwidth,sdfdist);gl_FragColor=color*(alpha*opacity);\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"\\n#define scale 0.015873016\\n#define LINE_DISTANCE_SCALE 2.0\\nattribute vec2 a_pos_normal;attribute vec4 a_data;uniform mat4 u_matrix;uniform mediump float u_ratio;uniform lowp float u_device_pixel_ratio;uniform vec2 u_patternscale_a;uniform float u_tex_y_a;uniform vec2 u_patternscale_b;uniform float u_tex_y_b;uniform vec2 u_units_to_pixels;varying vec2 v_normal;varying vec2 v_width2;varying vec2 v_tex_a;varying vec2 v_tex_b;varying float v_gamma_scale;\\n#pragma mapbox: define highp vec4 color\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define mediump float gapwidth\\n#pragma mapbox: define lowp float offset\\n#pragma mapbox: define mediump float width\\n#pragma mapbox: define lowp float floorwidth\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 color\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize mediump float gapwidth\\n#pragma mapbox: initialize lowp float offset\\n#pragma mapbox: initialize mediump float width\\n#pragma mapbox: initialize lowp float floorwidth\\nfloat ANTIALIASING=1.0/u_device_pixel_ratio/2.0;vec2 a_extrude=a_data.xy-128.0;float a_direction=mod(a_data.z,4.0)-1.0;float a_linesofar=(floor(a_data.z/4.0)+a_data.w*64.0)*LINE_DISTANCE_SCALE;vec2 pos=floor(a_pos_normal*0.5);mediump vec2 normal=a_pos_normal-2.0*pos;normal.y=normal.y*2.0-1.0;v_normal=normal;gapwidth=gapwidth/2.0;float halfwidth=width/2.0;offset=-1.0*offset;float inset=gapwidth+(gapwidth > 0.0 ? ANTIALIASING : 0.0);float outset=gapwidth+halfwidth*(gapwidth > 0.0 ? 2.0 : 1.0)+(halfwidth==0.0 ? 0.0 : ANTIALIASING);mediump vec2 dist=outset*a_extrude*scale;mediump float u=0.5*a_direction;mediump float t=1.0-abs(u);mediump vec2 offset2=offset*a_extrude*scale*normal.y*mat2(t,-u,u,t);vec4 projected_extrude=u_matrix*vec4(dist/u_ratio,0.0,0.0);gl_Position=u_matrix*vec4(pos+offset2/u_ratio,0.0,1.0)+projected_extrude;float extrude_length_without_perspective=length(dist);float extrude_length_with_perspective=length(projected_extrude.xy/gl_Position.w*u_units_to_pixels);v_gamma_scale=extrude_length_without_perspective/extrude_length_with_perspective;v_tex_a=vec2(a_linesofar*u_patternscale_a.x/floorwidth,normal.y*u_patternscale_a.y+u_tex_y_a);v_tex_b=vec2(a_linesofar*u_patternscale_b.x/floorwidth,normal.y*u_patternscale_b.y+u_tex_y_b);v_width2=vec2(outset,inset);}\"),or=cr(\"uniform float u_fade_t;uniform float u_opacity;uniform sampler2D u_image0;uniform sampler2D u_image1;varying vec2 v_pos0;varying vec2 v_pos1;uniform float u_brightness_low;uniform float u_brightness_high;uniform float u_saturation_factor;uniform float u_contrast_factor;uniform vec3 u_spin_weights;void main() {vec4 color0=texture2D(u_image0,v_pos0);vec4 color1=texture2D(u_image1,v_pos1);if (color0.a > 0.0) {color0.rgb=color0.rgb/color0.a;}if (color1.a > 0.0) {color1.rgb=color1.rgb/color1.a;}vec4 color=mix(color0,color1,u_fade_t);color.a*=u_opacity;vec3 rgb=color.rgb;rgb=vec3(dot(rgb,u_spin_weights.xyz),dot(rgb,u_spin_weights.zxy),dot(rgb,u_spin_weights.yzx));float average=(color.r+color.g+color.b)/3.0;rgb+=(average-rgb)*u_saturation_factor;rgb=(rgb-0.5)*u_contrast_factor+0.5;vec3 u_high_vec=vec3(u_brightness_low,u_brightness_low,u_brightness_low);vec3 u_low_vec=vec3(u_brightness_high,u_brightness_high,u_brightness_high);gl_FragColor=vec4(mix(u_high_vec,u_low_vec,rgb)*color.a,color.a);\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform vec2 u_tl_parent;uniform float u_scale_parent;uniform float u_buffer_scale;attribute vec2 a_pos;attribute vec2 a_texture_pos;varying vec2 v_pos0;varying vec2 v_pos1;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);v_pos0=(((a_texture_pos/8192.0)-0.5)/u_buffer_scale )+0.5;v_pos1=(v_pos0*u_scale_parent)+u_tl_parent;}\"),sr=cr(\"uniform sampler2D u_texture;varying vec2 v_tex;varying float v_fade_opacity;\\n#pragma mapbox: define lowp float opacity\\nvoid main() {\\n#pragma mapbox: initialize lowp float opacity\\nlowp float alpha=opacity*v_fade_opacity;gl_FragColor=texture2D(u_texture,v_tex)*alpha;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"const float PI=3.141592653589793;attribute vec4 a_pos_offset;attribute vec4 a_data;attribute vec3 a_projected_pos;attribute float a_fade_opacity;uniform bool u_is_size_zoom_constant;uniform bool u_is_size_feature_constant;uniform highp float u_size_t;uniform highp float u_size;uniform highp float u_camera_to_center_distance;uniform highp float u_pitch;uniform bool u_rotate_symbol;uniform highp float u_aspect_ratio;uniform float u_fade_change;uniform mat4 u_matrix;uniform mat4 u_label_plane_matrix;uniform mat4 u_coord_matrix;uniform bool u_is_text;uniform bool u_pitch_with_map;uniform vec2 u_texsize;varying vec2 v_tex;varying float v_fade_opacity;\\n#pragma mapbox: define lowp float opacity\\nvoid main() {\\n#pragma mapbox: initialize lowp float opacity\\nvec2 a_pos=a_pos_offset.xy;vec2 a_offset=a_pos_offset.zw;vec2 a_tex=a_data.xy;vec2 a_size=a_data.zw;highp float segment_angle=-a_projected_pos[2];float size;if (!u_is_size_zoom_constant && !u_is_size_feature_constant) {size=mix(a_size[0],a_size[1],u_size_t)/256.0;} else if (u_is_size_zoom_constant && !u_is_size_feature_constant) {size=a_size[0]/256.0;} else if (!u_is_size_zoom_constant && u_is_size_feature_constant) {size=u_size;} else {size=u_size;}vec4 projectedPoint=u_matrix*vec4(a_pos,0,1);highp float camera_to_anchor_distance=projectedPoint.w;highp float distance_ratio=u_pitch_with_map ?\\ncamera_to_anchor_distance/u_camera_to_center_distance :\\nu_camera_to_center_distance/camera_to_anchor_distance;highp float perspective_ratio=clamp(0.5+0.5*distance_ratio,0.0,4.0);size*=perspective_ratio;float fontScale=u_is_text ? size/24.0 : size;highp float symbol_rotation=0.0;if (u_rotate_symbol) {vec4 offsetProjectedPoint=u_matrix*vec4(a_pos+vec2(1,0),0,1);vec2 a=projectedPoint.xy/projectedPoint.w;vec2 b=offsetProjectedPoint.xy/offsetProjectedPoint.w;symbol_rotation=atan((b.y-a.y)/u_aspect_ratio,b.x-a.x);}highp float angle_sin=sin(segment_angle+symbol_rotation);highp float angle_cos=cos(segment_angle+symbol_rotation);mat2 rotation_matrix=mat2(angle_cos,-1.0*angle_sin,angle_sin,angle_cos);vec4 projected_pos=u_label_plane_matrix*vec4(a_projected_pos.xy,0.0,1.0);gl_Position=u_coord_matrix*vec4(projected_pos.xy/projected_pos.w+rotation_matrix*(a_offset/32.0*fontScale),0.0,1.0);v_tex=a_tex/u_texsize;vec2 fade_opacity=unpack_opacity(a_fade_opacity);float fade_change=fade_opacity[1] > 0.5 ? u_fade_change :-u_fade_change;v_fade_opacity=max(0.0,min(1.0,fade_opacity[0]+fade_change));}\"),lr=cr(\"#define SDF_PX 8.0\\nuniform bool u_is_halo;uniform sampler2D u_texture;uniform highp float u_gamma_scale;uniform lowp float u_device_pixel_ratio;uniform bool u_is_text;varying vec2 v_data0;varying vec3 v_data1;\\n#pragma mapbox: define highp vec4 fill_color\\n#pragma mapbox: define highp vec4 halo_color\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define lowp float halo_width\\n#pragma mapbox: define lowp float halo_blur\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 fill_color\\n#pragma mapbox: initialize highp vec4 halo_color\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize lowp float halo_width\\n#pragma mapbox: initialize lowp float halo_blur\\nfloat EDGE_GAMMA=0.105/u_device_pixel_ratio;vec2 tex=v_data0.xy;float gamma_scale=v_data1.x;float size=v_data1.y;float fade_opacity=v_data1[2];float fontScale=u_is_text ? size/24.0 : size;lowp vec4 color=fill_color;highp float gamma=EDGE_GAMMA/(fontScale*u_gamma_scale);lowp float buff=(256.0-64.0)/256.0;if (u_is_halo) {color=halo_color;gamma=(halo_blur*1.19/SDF_PX+EDGE_GAMMA)/(fontScale*u_gamma_scale);buff=(6.0-halo_width/fontScale)/SDF_PX;}lowp float dist=texture2D(u_texture,tex).a;highp float gamma_scaled=gamma*gamma_scale;highp float alpha=smoothstep(buff-gamma_scaled,buff+gamma_scaled,dist);gl_FragColor=color*(alpha*opacity*fade_opacity);\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"const float PI=3.141592653589793;attribute vec4 a_pos_offset;attribute vec4 a_data;attribute vec3 a_projected_pos;attribute float a_fade_opacity;uniform bool u_is_size_zoom_constant;uniform bool u_is_size_feature_constant;uniform highp float u_size_t;uniform highp float u_size;uniform mat4 u_matrix;uniform mat4 u_label_plane_matrix;uniform mat4 u_coord_matrix;uniform bool u_is_text;uniform bool u_pitch_with_map;uniform highp float u_pitch;uniform bool u_rotate_symbol;uniform highp float u_aspect_ratio;uniform highp float u_camera_to_center_distance;uniform float u_fade_change;uniform vec2 u_texsize;varying vec2 v_data0;varying vec3 v_data1;\\n#pragma mapbox: define highp vec4 fill_color\\n#pragma mapbox: define highp vec4 halo_color\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define lowp float halo_width\\n#pragma mapbox: define lowp float halo_blur\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 fill_color\\n#pragma mapbox: initialize highp vec4 halo_color\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize lowp float halo_width\\n#pragma mapbox: initialize lowp float halo_blur\\nvec2 a_pos=a_pos_offset.xy;vec2 a_offset=a_pos_offset.zw;vec2 a_tex=a_data.xy;vec2 a_size=a_data.zw;highp float segment_angle=-a_projected_pos[2];float size;if (!u_is_size_zoom_constant && !u_is_size_feature_constant) {size=mix(a_size[0],a_size[1],u_size_t)/256.0;} else if (u_is_size_zoom_constant && !u_is_size_feature_constant) {size=a_size[0]/256.0;} else if (!u_is_size_zoom_constant && u_is_size_feature_constant) {size=u_size;} else {size=u_size;}vec4 projectedPoint=u_matrix*vec4(a_pos,0,1);highp float camera_to_anchor_distance=projectedPoint.w;highp float distance_ratio=u_pitch_with_map ?\\ncamera_to_anchor_distance/u_camera_to_center_distance :\\nu_camera_to_center_distance/camera_to_anchor_distance;highp float perspective_ratio=clamp(0.5+0.5*distance_ratio,0.0,4.0);size*=perspective_ratio;float fontScale=u_is_text ? size/24.0 : size;highp float symbol_rotation=0.0;if (u_rotate_symbol) {vec4 offsetProjectedPoint=u_matrix*vec4(a_pos+vec2(1,0),0,1);vec2 a=projectedPoint.xy/projectedPoint.w;vec2 b=offsetProjectedPoint.xy/offsetProjectedPoint.w;symbol_rotation=atan((b.y-a.y)/u_aspect_ratio,b.x-a.x);}highp float angle_sin=sin(segment_angle+symbol_rotation);highp float angle_cos=cos(segment_angle+symbol_rotation);mat2 rotation_matrix=mat2(angle_cos,-1.0*angle_sin,angle_sin,angle_cos);vec4 projected_pos=u_label_plane_matrix*vec4(a_projected_pos.xy,0.0,1.0);gl_Position=u_coord_matrix*vec4(projected_pos.xy/projected_pos.w+rotation_matrix*(a_offset/32.0*fontScale),0.0,1.0);float gamma_scale=gl_Position.w;vec2 tex=a_tex/u_texsize;vec2 fade_opacity=unpack_opacity(a_fade_opacity);float fade_change=fade_opacity[1] > 0.5 ? u_fade_change :-u_fade_change;float interpolated_fade_opacity=max(0.0,min(1.0,fade_opacity[0]+fade_change));v_data0=vec2(tex.x,tex.y);v_data1=vec3(gamma_scale,size,interpolated_fade_opacity);}\");function cr(t,e){var r=/#pragma mapbox: ([\\w]+) ([\\w]+) ([\\w]+) ([\\w]+)/g,n={};return{fragmentSource:t=t.replace(r,function(t,e,r,a,i){return n[i]=!0,\"define\"===e?\"\\n#ifndef HAS_UNIFORM_u_\"+i+\"\\nvarying \"+r+\" \"+a+\" \"+i+\";\\n#else\\nuniform \"+r+\" \"+a+\" u_\"+i+\";\\n#endif\\n\":\"\\n#ifdef HAS_UNIFORM_u_\"+i+\"\\n    \"+r+\" \"+a+\" \"+i+\" = u_\"+i+\";\\n#endif\\n\"}),vertexSource:e=e.replace(r,function(t,e,r,a,i){var o=\"float\"===a?\"vec2\":\"vec4\",s=i.match(/color/)?\"color\":o;return n[i]?\"define\"===e?\"\\n#ifndef HAS_UNIFORM_u_\"+i+\"\\nuniform lowp float u_\"+i+\"_t;\\nattribute \"+r+\" \"+o+\" a_\"+i+\";\\nvarying \"+r+\" \"+a+\" \"+i+\";\\n#else\\nuniform \"+r+\" \"+a+\" u_\"+i+\";\\n#endif\\n\":\"vec4\"===s?\"\\n#ifndef HAS_UNIFORM_u_\"+i+\"\\n    \"+i+\" = a_\"+i+\";\\n#else\\n    \"+r+\" \"+a+\" \"+i+\" = u_\"+i+\";\\n#endif\\n\":\"\\n#ifndef HAS_UNIFORM_u_\"+i+\"\\n    \"+i+\" = unpack_mix_\"+s+\"(a_\"+i+\", u_\"+i+\"_t);\\n#else\\n    \"+r+\" \"+a+\" \"+i+\" = u_\"+i+\";\\n#endif\\n\":\"define\"===e?\"\\n#ifndef HAS_UNIFORM_u_\"+i+\"\\nuniform lowp float u_\"+i+\"_t;\\nattribute \"+r+\" \"+o+\" a_\"+i+\";\\n#else\\nuniform \"+r+\" \"+a+\" u_\"+i+\";\\n#endif\\n\":\"vec4\"===s?\"\\n#ifndef HAS_UNIFORM_u_\"+i+\"\\n    \"+r+\" \"+a+\" \"+i+\" = a_\"+i+\";\\n#else\\n    \"+r+\" \"+a+\" \"+i+\" = u_\"+i+\";\\n#endif\\n\":\"\\n#ifndef HAS_UNIFORM_u_\"+i+\"\\n    \"+r+\" \"+a+\" \"+i+\" = unpack_mix_\"+s+\"(a_\"+i+\", u_\"+i+\"_t);\\n#else\\n    \"+r+\" \"+a+\" \"+i+\" = u_\"+i+\";\\n#endif\\n\"})}}var ur=Object.freeze({prelude:Be,background:Ne,backgroundPattern:je,circle:Ve,clippingMask:Ue,heatmap:qe,heatmapTexture:He,collisionBox:Ge,collisionCircle:Ye,debug:We,fill:Xe,fillOutline:Ze,fillOutlinePattern:Je,fillPattern:Ke,fillExtrusion:Qe,fillExtrusionPattern:$e,hillshadePrepare:tr,hillshade:er,line:rr,lineGradient:nr,linePattern:ar,lineSDF:ir,raster:or,symbolIcon:sr,symbolSDF:lr}),hr=function(){this.boundProgram=null,this.boundLayoutVertexBuffer=null,this.boundPaintVertexBuffers=[],this.boundIndexBuffer=null,this.boundVertexOffset=null,this.boundDynamicVertexBuffer=null,this.vao=null};hr.prototype.bind=function(t,e,r,n,a,i,o,s){this.context=t;for(var l=this.boundPaintVertexBuffers.length!==n.length,c=0;!l&&c<n.length;c++)this.boundPaintVertexBuffers[c]!==n[c]&&(l=!0);var u=!this.vao||this.boundProgram!==e||this.boundLayoutVertexBuffer!==r||l||this.boundIndexBuffer!==a||this.boundVertexOffset!==i||this.boundDynamicVertexBuffer!==o||this.boundDynamicVertexBuffer2!==s;!t.extVertexArrayObject||u?this.freshBind(e,r,n,a,i,o,s):(t.bindVertexArrayOES.set(this.vao),o&&o.bind(),a&&a.dynamicDraw&&a.bind(),s&&s.bind())},hr.prototype.freshBind=function(t,e,r,n,a,i,o){var s,l=t.numAttributes,c=this.context,u=c.gl;if(c.extVertexArrayObject)this.vao&&this.destroy(),this.vao=c.extVertexArrayObject.createVertexArrayOES(),c.bindVertexArrayOES.set(this.vao),s=0,this.boundProgram=t,this.boundLayoutVertexBuffer=e,this.boundPaintVertexBuffers=r,this.boundIndexBuffer=n,this.boundVertexOffset=a,this.boundDynamicVertexBuffer=i,this.boundDynamicVertexBuffer2=o;else{s=c.currentNumAttributes||0;for(var h=l;h<s;h++)u.disableVertexAttribArray(h)}e.enableAttributes(u,t);for(var f=0,p=r;f<p.length;f+=1)p[f].enableAttributes(u,t);i&&i.enableAttributes(u,t),o&&o.enableAttributes(u,t),e.bind(),e.setVertexAttribPointers(u,t,a);for(var d=0,g=r;d<g.length;d+=1){var v=g[d];v.bind(),v.setVertexAttribPointers(u,t,a)}i&&(i.bind(),i.setVertexAttribPointers(u,t,a)),n&&n.bind(),o&&(o.bind(),o.setVertexAttribPointers(u,t,a)),c.currentNumAttributes=l},hr.prototype.destroy=function(){this.vao&&(this.context.extVertexArrayObject.deleteVertexArrayOES(this.vao),this.vao=null)};var fr=function(t,e,r,n,a){var i=t.gl;this.program=i.createProgram();var o=r.defines();a&&o.push(\"#define OVERDRAW_INSPECTOR;\");var s=o.concat(Be.fragmentSource,e.fragmentSource).join(\"\\n\"),l=o.concat(Be.vertexSource,e.vertexSource).join(\"\\n\"),c=i.createShader(i.FRAGMENT_SHADER);i.shaderSource(c,s),i.compileShader(c),i.attachShader(this.program,c);var u=i.createShader(i.VERTEX_SHADER);i.shaderSource(u,l),i.compileShader(u),i.attachShader(this.program,u);for(var h=r.layoutAttributes||[],f=0;f<h.length;f++)i.bindAttribLocation(this.program,f,h[f].name);i.linkProgram(this.program),this.numAttributes=i.getProgramParameter(this.program,i.ACTIVE_ATTRIBUTES),this.attributes={};for(var p={},d=0;d<this.numAttributes;d++){var g=i.getActiveAttrib(this.program,d);g&&(this.attributes[g.name]=i.getAttribLocation(this.program,g.name))}for(var v=i.getProgramParameter(this.program,i.ACTIVE_UNIFORMS),m=0;m<v;m++){var y=i.getActiveUniform(this.program,m);y&&(p[y.name]=i.getUniformLocation(this.program,y.name))}this.fixedUniforms=n(t,p),this.binderUniforms=r.getUniforms(t,p)};function pr(e,r,n){var a=1/ce(n,1,r.transform.tileZoom),i=Math.pow(2,n.tileID.overscaledZ),o=n.tileSize*Math.pow(2,r.transform.tileZoom)/i,s=o*(n.tileID.canonical.x+n.tileID.wrap*i),l=o*n.tileID.canonical.y;return{u_image:0,u_texsize:n.imageAtlasTexture.size,u_scale:[t.browser.devicePixelRatio,a,e.fromScale,e.toScale],u_fade:e.t,u_pixel_coord_upper:[s>>16,l>>16],u_pixel_coord_lower:[65535&s,65535&l]}}fr.prototype.draw=function(t,e,r,n,a,i,o,s,l,c,u,h,f,p,d,g){var v,m=t.gl;for(var y in t.program.set(this.program),t.setDepthMode(r),t.setStencilMode(n),t.setColorMode(a),t.setCullFace(i),this.fixedUniforms)this.fixedUniforms[y].set(o[y]);p&&p.setUniforms(t,this.binderUniforms,h,{zoom:f});for(var x=(v={},v[m.LINES]=2,v[m.TRIANGLES]=3,v[m.LINE_STRIP]=1,v)[e],b=0,_=u.get();b<_.length;b+=1){var w=_[b],k=w.vaos||(w.vaos={});(k[s]||(k[s]=new hr)).bind(t,this,l,p?p.getPaintVertexBuffers():[],c,w.vertexOffset,d,g),m.drawElements(e,w.primitiveLength*x,m.UNSIGNED_SHORT,w.primitiveOffset*x*2)}};var dr=function(e,r,n,a){var i=r.style.light,o=i.properties.get(\"position\"),s=[o.x,o.y,o.z],l=t.create$1();\"viewport\"===i.properties.get(\"anchor\")&&t.fromRotation(l,-r.transform.angle),t.transformMat3(s,s,l);var c=i.properties.get(\"color\");return{u_matrix:e,u_lightpos:s,u_lightintensity:i.properties.get(\"intensity\"),u_lightcolor:[c.r,c.g,c.b],u_vertical_gradient:+n,u_opacity:a}},gr=function(e,r,n,a,i,o,s){return t.extend(dr(e,r,n,a),pr(o,r,s),{u_height_factor:-Math.pow(2,i.overscaledZ)/s.tileSize/8})},vr=function(t){return{u_matrix:t}},mr=function(e,r,n,a){return t.extend(vr(e),pr(n,r,a))},yr=function(t,e){return{u_matrix:t,u_world:e}},xr=function(e,r,n,a,i){return t.extend(mr(e,r,n,a),{u_world:i})},br=function(e,r,n,a){var i,o,s=e.transform;if(\"map\"===a.paint.get(\"circle-pitch-alignment\")){var l=ce(n,1,s.zoom);i=!0,o=[l,l]}else i=!1,o=s.pixelsToGLUnits;return{u_camera_to_center_distance:s.cameraToCenterDistance,u_scale_with_map:+(\"map\"===a.paint.get(\"circle-pitch-scale\")),u_matrix:e.translatePosMatrix(r.posMatrix,n,a.paint.get(\"circle-translate\"),a.paint.get(\"circle-translate-anchor\")),u_pitch_with_map:+i,u_device_pixel_ratio:t.browser.devicePixelRatio,u_extrude_scale:o}},_r=function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_camera_to_center_distance:new t.Uniform1f(e,r.u_camera_to_center_distance),u_pixels_to_tile_units:new t.Uniform1f(e,r.u_pixels_to_tile_units),u_extrude_scale:new t.Uniform2f(e,r.u_extrude_scale),u_overscale_factor:new t.Uniform1f(e,r.u_overscale_factor)}},wr=function(t,e,r){var n=ce(r,1,e.zoom),a=Math.pow(2,e.zoom-r.tileID.overscaledZ),i=r.tileID.overscaleFactor();return{u_matrix:t,u_camera_to_center_distance:e.cameraToCenterDistance,u_pixels_to_tile_units:n,u_extrude_scale:[e.pixelsToGLUnits[0]/(n*a),e.pixelsToGLUnits[1]/(n*a)],u_overscale_factor:i}},kr=function(t,e){return{u_matrix:t,u_color:e}},Tr=function(t){return{u_matrix:t}},Ar=function(t,e,r,n){return{u_matrix:t,u_extrude_scale:ce(e,1,r),u_intensity:n}},Mr=function(t,e,r){var n=r.paint.get(\"hillshade-shadow-color\"),a=r.paint.get(\"hillshade-highlight-color\"),i=r.paint.get(\"hillshade-accent-color\"),o=r.paint.get(\"hillshade-illumination-direction\")*(Math.PI/180);\"viewport\"===r.paint.get(\"hillshade-illumination-anchor\")&&(o-=t.transform.angle);var s=!t.options.moving;return{u_matrix:t.transform.calculatePosMatrix(e.tileID.toUnwrapped(),s),u_image:0,u_latrange:Er(t,e.tileID),u_light:[r.paint.get(\"hillshade-exaggeration\"),o],u_shadow:n,u_highlight:a,u_accent:i}},Sr=function(e,r){var n=e.dem.stride,a=t.create();return t.ortho(a,0,t.EXTENT,-t.EXTENT,0,0,1),t.translate(a,a,[0,-t.EXTENT,0]),{u_matrix:a,u_image:1,u_dimension:[n,n],u_zoom:e.tileID.overscaledZ,u_maxzoom:r}};function Er(e,r){var n=Math.pow(2,r.canonical.z),a=r.canonical.y;return[new t.MercatorCoordinate(0,a/n).toLngLat().lat,new t.MercatorCoordinate(0,(a+1)/n).toLngLat().lat]}var Cr=function(e,r,n){var a=e.transform;return{u_matrix:zr(e,r,n),u_ratio:1/ce(r,1,a.zoom),u_device_pixel_ratio:t.browser.devicePixelRatio,u_units_to_pixels:[1/a.pixelsToGLUnits[0],1/a.pixelsToGLUnits[1]]}},Lr=function(e,r,n){return t.extend(Cr(e,r,n),{u_image:0})},Pr=function(e,r,n,a){var i=e.transform,o=Ir(r,i);return{u_matrix:zr(e,r,n),u_texsize:r.imageAtlasTexture.size,u_ratio:1/ce(r,1,i.zoom),u_device_pixel_ratio:t.browser.devicePixelRatio,u_image:0,u_scale:[t.browser.devicePixelRatio,o,a.fromScale,a.toScale],u_fade:a.t,u_units_to_pixels:[1/i.pixelsToGLUnits[0],1/i.pixelsToGLUnits[1]]}},Or=function(e,r,n,a,i){var o=e.transform,s=e.lineAtlas,l=Ir(r,o),c=\"round\"===n.layout.get(\"line-cap\"),u=s.getDash(a.from,c),h=s.getDash(a.to,c),f=u.width*i.fromScale,p=h.width*i.toScale;return t.extend(Cr(e,r,n),{u_patternscale_a:[l/f,-u.height/2],u_patternscale_b:[l/p,-h.height/2],u_sdfgamma:s.width/(256*Math.min(f,p)*t.browser.devicePixelRatio)/2,u_image:0,u_tex_y_a:u.y,u_tex_y_b:h.y,u_mix:i.t})};function Ir(t,e){return 1/ce(t,1,e.tileZoom)}function zr(t,e,r){return t.translatePosMatrix(e.tileID.posMatrix,e,r.paint.get(\"line-translate\"),r.paint.get(\"line-translate-anchor\"))}var Dr=function(t,e,r,n,a){return{u_matrix:t,u_tl_parent:e,u_scale_parent:r,u_buffer_scale:1,u_fade_t:n.mix,u_opacity:n.opacity*a.paint.get(\"raster-opacity\"),u_image0:0,u_image1:1,u_brightness_low:a.paint.get(\"raster-brightness-min\"),u_brightness_high:a.paint.get(\"raster-brightness-max\"),u_saturation_factor:(o=a.paint.get(\"raster-saturation\"),o>0?1-1/(1.001-o):-o),u_contrast_factor:(i=a.paint.get(\"raster-contrast\"),i>0?1/(1-i):1+i),u_spin_weights:function(t){t*=Math.PI/180;var e=Math.sin(t),r=Math.cos(t);return[(2*r+1)/3,(-Math.sqrt(3)*e-r+1)/3,(Math.sqrt(3)*e-r+1)/3]}(a.paint.get(\"raster-hue-rotate\"))};var i,o};var Rr=function(t,e,r,n,a,i,o,s,l,c){var u=a.transform;return{u_is_size_zoom_constant:+(\"constant\"===t||\"source\"===t),u_is_size_feature_constant:+(\"constant\"===t||\"camera\"===t),u_size_t:e?e.uSizeT:0,u_size:e?e.uSize:0,u_camera_to_center_distance:u.cameraToCenterDistance,u_pitch:u.pitch/360*2*Math.PI,u_rotate_symbol:+r,u_aspect_ratio:u.width/u.height,u_fade_change:a.options.fadeDuration?a.symbolFadeChange:1,u_matrix:i,u_label_plane_matrix:o,u_coord_matrix:s,u_is_text:+l,u_pitch_with_map:+n,u_texsize:c,u_texture:0}},Fr=function(e,r,n,a,i,o,s,l,c,u,h){var f=i.transform;return t.extend(Rr(e,r,n,a,i,o,s,l,c,u),{u_gamma_scale:a?Math.cos(f._pitch)*f.cameraToCenterDistance:1,u_device_pixel_ratio:t.browser.devicePixelRatio,u_is_halo:+h})},Br=function(t,e,r){return{u_matrix:t,u_opacity:e,u_color:r}},Nr=function(e,r,n,a,i,o){return t.extend(function(t,e,r,n){var a=r.imageManager.getPattern(t.from),i=r.imageManager.getPattern(t.to),o=r.imageManager.getPixelSize(),s=o.width,l=o.height,c=Math.pow(2,n.tileID.overscaledZ),u=n.tileSize*Math.pow(2,r.transform.tileZoom)/c,h=u*(n.tileID.canonical.x+n.tileID.wrap*c),f=u*n.tileID.canonical.y;return{u_image:0,u_pattern_tl_a:a.tl,u_pattern_br_a:a.br,u_pattern_tl_b:i.tl,u_pattern_br_b:i.br,u_texsize:[s,l],u_mix:e.t,u_pattern_size_a:a.displaySize,u_pattern_size_b:i.displaySize,u_scale_a:e.fromScale,u_scale_b:e.toScale,u_tile_units_to_pixels:1/ce(n,1,r.transform.tileZoom),u_pixel_coord_upper:[h>>16,f>>16],u_pixel_coord_lower:[65535&h,65535&f]}}(a,o,n,i),{u_matrix:e,u_opacity:r})},jr={fillExtrusion:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_lightpos:new t.Uniform3f(e,r.u_lightpos),u_lightintensity:new t.Uniform1f(e,r.u_lightintensity),u_lightcolor:new t.Uniform3f(e,r.u_lightcolor),u_vertical_gradient:new t.Uniform1f(e,r.u_vertical_gradient),u_opacity:new t.Uniform1f(e,r.u_opacity)}},fillExtrusionPattern:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_lightpos:new t.Uniform3f(e,r.u_lightpos),u_lightintensity:new t.Uniform1f(e,r.u_lightintensity),u_lightcolor:new t.Uniform3f(e,r.u_lightcolor),u_vertical_gradient:new t.Uniform1f(e,r.u_vertical_gradient),u_height_factor:new t.Uniform1f(e,r.u_height_factor),u_image:new t.Uniform1i(e,r.u_image),u_texsize:new t.Uniform2f(e,r.u_texsize),u_pixel_coord_upper:new t.Uniform2f(e,r.u_pixel_coord_upper),u_pixel_coord_lower:new t.Uniform2f(e,r.u_pixel_coord_lower),u_scale:new t.Uniform4f(e,r.u_scale),u_fade:new t.Uniform1f(e,r.u_fade),u_opacity:new t.Uniform1f(e,r.u_opacity)}},fill:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix)}},fillPattern:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_image:new t.Uniform1i(e,r.u_image),u_texsize:new t.Uniform2f(e,r.u_texsize),u_pixel_coord_upper:new t.Uniform2f(e,r.u_pixel_coord_upper),u_pixel_coord_lower:new t.Uniform2f(e,r.u_pixel_coord_lower),u_scale:new t.Uniform4f(e,r.u_scale),u_fade:new t.Uniform1f(e,r.u_fade)}},fillOutline:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_world:new t.Uniform2f(e,r.u_world)}},fillOutlinePattern:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_world:new t.Uniform2f(e,r.u_world),u_image:new t.Uniform1i(e,r.u_image),u_texsize:new t.Uniform2f(e,r.u_texsize),u_pixel_coord_upper:new t.Uniform2f(e,r.u_pixel_coord_upper),u_pixel_coord_lower:new t.Uniform2f(e,r.u_pixel_coord_lower),u_scale:new t.Uniform4f(e,r.u_scale),u_fade:new t.Uniform1f(e,r.u_fade)}},circle:function(e,r){return{u_camera_to_center_distance:new t.Uniform1f(e,r.u_camera_to_center_distance),u_scale_with_map:new t.Uniform1i(e,r.u_scale_with_map),u_pitch_with_map:new t.Uniform1i(e,r.u_pitch_with_map),u_extrude_scale:new t.Uniform2f(e,r.u_extrude_scale),u_device_pixel_ratio:new t.Uniform1f(e,r.u_device_pixel_ratio),u_matrix:new t.UniformMatrix4f(e,r.u_matrix)}},collisionBox:_r,collisionCircle:_r,debug:function(e,r){return{u_color:new t.UniformColor(e,r.u_color),u_matrix:new t.UniformMatrix4f(e,r.u_matrix)}},clippingMask:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix)}},heatmap:function(e,r){return{u_extrude_scale:new t.Uniform1f(e,r.u_extrude_scale),u_intensity:new t.Uniform1f(e,r.u_intensity),u_matrix:new t.UniformMatrix4f(e,r.u_matrix)}},heatmapTexture:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_world:new t.Uniform2f(e,r.u_world),u_image:new t.Uniform1i(e,r.u_image),u_color_ramp:new t.Uniform1i(e,r.u_color_ramp),u_opacity:new t.Uniform1f(e,r.u_opacity)}},hillshade:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_image:new t.Uniform1i(e,r.u_image),u_latrange:new t.Uniform2f(e,r.u_latrange),u_light:new t.Uniform2f(e,r.u_light),u_shadow:new t.UniformColor(e,r.u_shadow),u_highlight:new t.UniformColor(e,r.u_highlight),u_accent:new t.UniformColor(e,r.u_accent)}},hillshadePrepare:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_image:new t.Uniform1i(e,r.u_image),u_dimension:new t.Uniform2f(e,r.u_dimension),u_zoom:new t.Uniform1f(e,r.u_zoom),u_maxzoom:new t.Uniform1f(e,r.u_maxzoom)}},line:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_ratio:new t.Uniform1f(e,r.u_ratio),u_device_pixel_ratio:new t.Uniform1f(e,r.u_device_pixel_ratio),u_units_to_pixels:new t.Uniform2f(e,r.u_units_to_pixels)}},lineGradient:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_ratio:new t.Uniform1f(e,r.u_ratio),u_device_pixel_ratio:new t.Uniform1f(e,r.u_device_pixel_ratio),u_units_to_pixels:new t.Uniform2f(e,r.u_units_to_pixels),u_image:new t.Uniform1i(e,r.u_image)}},linePattern:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_texsize:new t.Uniform2f(e,r.u_texsize),u_ratio:new t.Uniform1f(e,r.u_ratio),u_device_pixel_ratio:new t.Uniform1f(e,r.u_device_pixel_ratio),u_image:new t.Uniform1i(e,r.u_image),u_units_to_pixels:new t.Uniform2f(e,r.u_units_to_pixels),u_scale:new t.Uniform4f(e,r.u_scale),u_fade:new t.Uniform1f(e,r.u_fade)}},lineSDF:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_ratio:new t.Uniform1f(e,r.u_ratio),u_device_pixel_ratio:new t.Uniform1f(e,r.u_device_pixel_ratio),u_units_to_pixels:new t.Uniform2f(e,r.u_units_to_pixels),u_patternscale_a:new t.Uniform2f(e,r.u_patternscale_a),u_patternscale_b:new t.Uniform2f(e,r.u_patternscale_b),u_sdfgamma:new t.Uniform1f(e,r.u_sdfgamma),u_image:new t.Uniform1i(e,r.u_image),u_tex_y_a:new t.Uniform1f(e,r.u_tex_y_a),u_tex_y_b:new t.Uniform1f(e,r.u_tex_y_b),u_mix:new t.Uniform1f(e,r.u_mix)}},raster:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_tl_parent:new t.Uniform2f(e,r.u_tl_parent),u_scale_parent:new t.Uniform1f(e,r.u_scale_parent),u_buffer_scale:new t.Uniform1f(e,r.u_buffer_scale),u_fade_t:new t.Uniform1f(e,r.u_fade_t),u_opacity:new t.Uniform1f(e,r.u_opacity),u_image0:new t.Uniform1i(e,r.u_image0),u_image1:new t.Uniform1i(e,r.u_image1),u_brightness_low:new t.Uniform1f(e,r.u_brightness_low),u_brightness_high:new t.Uniform1f(e,r.u_brightness_high),u_saturation_factor:new t.Uniform1f(e,r.u_saturation_factor),u_contrast_factor:new t.Uniform1f(e,r.u_contrast_factor),u_spin_weights:new t.Uniform3f(e,r.u_spin_weights)}},symbolIcon:function(e,r){return{u_is_size_zoom_constant:new t.Uniform1i(e,r.u_is_size_zoom_constant),u_is_size_feature_constant:new t.Uniform1i(e,r.u_is_size_feature_constant),u_size_t:new t.Uniform1f(e,r.u_size_t),u_size:new t.Uniform1f(e,r.u_size),u_camera_to_center_distance:new t.Uniform1f(e,r.u_camera_to_center_distance),u_pitch:new t.Uniform1f(e,r.u_pitch),u_rotate_symbol:new t.Uniform1i(e,r.u_rotate_symbol),u_aspect_ratio:new t.Uniform1f(e,r.u_aspect_ratio),u_fade_change:new t.Uniform1f(e,r.u_fade_change),u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_label_plane_matrix:new t.UniformMatrix4f(e,r.u_label_plane_matrix),u_coord_matrix:new t.UniformMatrix4f(e,r.u_coord_matrix),u_is_text:new t.Uniform1f(e,r.u_is_text),u_pitch_with_map:new t.Uniform1i(e,r.u_pitch_with_map),u_texsize:new t.Uniform2f(e,r.u_texsize),u_texture:new t.Uniform1i(e,r.u_texture)}},symbolSDF:function(e,r){return{u_is_size_zoom_constant:new t.Uniform1i(e,r.u_is_size_zoom_constant),u_is_size_feature_constant:new t.Uniform1i(e,r.u_is_size_feature_constant),u_size_t:new t.Uniform1f(e,r.u_size_t),u_size:new t.Uniform1f(e,r.u_size),u_camera_to_center_distance:new t.Uniform1f(e,r.u_camera_to_center_distance),u_pitch:new t.Uniform1f(e,r.u_pitch),u_rotate_symbol:new t.Uniform1i(e,r.u_rotate_symbol),u_aspect_ratio:new t.Uniform1f(e,r.u_aspect_ratio),u_fade_change:new t.Uniform1f(e,r.u_fade_change),u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_label_plane_matrix:new t.UniformMatrix4f(e,r.u_label_plane_matrix),u_coord_matrix:new t.UniformMatrix4f(e,r.u_coord_matrix),u_is_text:new t.Uniform1f(e,r.u_is_text),u_pitch_with_map:new t.Uniform1i(e,r.u_pitch_with_map),u_texsize:new t.Uniform2f(e,r.u_texsize),u_texture:new t.Uniform1i(e,r.u_texture),u_gamma_scale:new t.Uniform1f(e,r.u_gamma_scale),u_device_pixel_ratio:new t.Uniform1f(e,r.u_device_pixel_ratio),u_is_halo:new t.Uniform1f(e,r.u_is_halo)}},background:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_opacity:new t.Uniform1f(e,r.u_opacity),u_color:new t.UniformColor(e,r.u_color)}},backgroundPattern:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_opacity:new t.Uniform1f(e,r.u_opacity),u_image:new t.Uniform1i(e,r.u_image),u_pattern_tl_a:new t.Uniform2f(e,r.u_pattern_tl_a),u_pattern_br_a:new t.Uniform2f(e,r.u_pattern_br_a),u_pattern_tl_b:new t.Uniform2f(e,r.u_pattern_tl_b),u_pattern_br_b:new t.Uniform2f(e,r.u_pattern_br_b),u_texsize:new t.Uniform2f(e,r.u_texsize),u_mix:new t.Uniform1f(e,r.u_mix),u_pattern_size_a:new t.Uniform2f(e,r.u_pattern_size_a),u_pattern_size_b:new t.Uniform2f(e,r.u_pattern_size_b),u_scale_a:new t.Uniform1f(e,r.u_scale_a),u_scale_b:new t.Uniform1f(e,r.u_scale_b),u_pixel_coord_upper:new t.Uniform2f(e,r.u_pixel_coord_upper),u_pixel_coord_lower:new t.Uniform2f(e,r.u_pixel_coord_lower),u_tile_units_to_pixels:new t.Uniform1f(e,r.u_tile_units_to_pixels)}}};function Vr(e,r){for(var n=e.sort(function(t,e){return t.tileID.isLessThan(e.tileID)?-1:e.tileID.isLessThan(t.tileID)?1:0}),a=0;a<n.length;a++){var i={},o=n[a],s=n.slice(a+1);Ur(o.tileID.wrapped(),o.tileID,s,new t.OverscaledTileID(0,o.tileID.wrap+1,0,0,0),i),o.setMask(i,r)}}function Ur(e,r,n,a,i){for(var o=0;o<n.length;o++){var s=n[o];if(a.isLessThan(s.tileID))break;if(r.key===s.tileID.key)return;if(s.tileID.isChildOf(r)){for(var l=r.children(1/0),c=0;c<l.length;c++)Ur(e,l[c],n.slice(o),a,i);return}}var u=r.overscaledZ-e.overscaledZ,h=new t.CanonicalTileID(u,r.canonical.x-(e.canonical.x<<u),r.canonical.y-(e.canonical.y<<u));i[h.key]=i[h.key]||h}function qr(t,e,r,n,a){for(var i=t.context,o=i.gl,s=a?t.useProgram(\"collisionCircle\"):t.useProgram(\"collisionBox\"),l=0;l<n.length;l++){var c=n[l],u=e.getTile(c),h=u.getBucket(r);if(h){var f=a?h.collisionCircle:h.collisionBox;f&&s.draw(i,a?o.TRIANGLES:o.LINES,At.disabled,Mt.disabled,t.colorModeForRenderPass(),Et.disabled,wr(c.posMatrix,t.transform,u),r.id,f.layoutVertexBuffer,f.indexBuffer,f.segments,null,t.transform.zoom,null,null,f.collisionVertexBuffer)}}}var Hr=t.identity(new Float32Array(16));function Gr(e,r,n,a,i,o){var s=t.getAnchorAlignment(e),l=-(s.horizontalAlign-.5)*r,c=-(s.verticalAlign-.5)*n,u=t.evaluateRadialOffset(e,a);return new t.Point((l/i+u[0])*o,(c/i+u[1])*o)}function Yr(e,r,n,a,i,o,s,l,c,u){var h=e.text.placedSymbolArray,f=e.text.dynamicLayoutVertexArray;f.clear();for(var p=0;p<h.length;p++){var d=h.get(p),g=e.allowVerticalPlacement&&!d.placedOrientation,v=d.hidden||!d.crossTileID||g?null:a[d.crossTileID];if(v){var m=new t.Point(d.anchorX,d.anchorY),y=Jt(m,n?l:s),x=.5+o.cameraToCenterDistance/y.signedDistanceFromCamera*.5,b=i.evaluateSizeForFeature(e.textSizeData,u,d)*x/t.ONE_EM;n&&(b*=e.tilePixelRatio/c);for(var _=v.width,w=v.height,k=v.radialOffset,T=v.textBoxScale,A=Gr(v.anchor,_,w,k,T,b),M=n?Jt(m.add(A),s).point:y.point.add(r?A.rotate(-o.angle):A),S=e.allowVerticalPlacement&&d.placedOrientation===t.WritingMode.vertical?Math.PI/2:0,E=0;E<d.numGlyphs;E++)t.addDynamicAttributes(f,M,S)}else ie(d.numGlyphs,f)}e.text.dynamicLayoutVertexBuffer.updateData(f)}function Wr(e){var r=e.text.placedSymbolArray,n=e.text.dynamicLayoutVertexArray;n.clear();for(var a=0;a<r.length;a++){var i=r.get(a);if(i.hidden||!i.placedOrientation)ie(i.numGlyphs,n);else for(var o=new t.Point(i.anchorX,i.anchorY),s=e.allowVerticalPlacement&&i.placedOrientation===t.WritingMode.vertical?Math.PI/2:0,l=0;l<i.numGlyphs;l++)t.addDynamicAttributes(n,o,s)}e.text.dynamicLayoutVertexBuffer.updateData(n)}function Xr(e,r,n,a,i,o,s,l,c,u,h,f,p){for(var d,g,v=e.context,m=v.gl,y=e.transform,x=\"map\"===l,b=\"map\"===c,_=x&&\"point\"!==n.layout.get(\"symbol-placement\"),w=x&&!b&&!_,k=void 0!==n.layout.get(\"symbol-sort-key\").constantOr(1),T=e.depthModeForSublayer(0,At.ReadOnly),A=n.layout.get(\"text-variable-anchor\"),M=[],S=0,E=a;S<E.length;S+=1){var C=E[S],L=r.getTile(C),P=L.getBucket(n);if(P){var O=i?P.text:P.icon;if(O&&O.segments.get().length){var I=O.programConfigurations.get(n.id),z=i||P.sdfIcons,D=i?P.textSizeData:P.iconSizeData;d||(d=e.useProgram(z?\"symbolSDF\":\"symbolIcon\",I),g=t.evaluateSizeForZoom(D,y.zoom)),v.activeTexture.set(m.TEXTURE0);var R=void 0,F=void 0,B=void 0;if(i)F=L.glyphAtlasTexture,B=m.LINEAR,R=L.glyphAtlasTexture.size;else{var N=1!==n.layout.get(\"icon-size\").constantOr(0)||P.iconsNeedLinear,j=b||0!==y.pitch;F=L.imageAtlasTexture,B=z||e.options.rotating||e.options.zooming||N||j?m.LINEAR:m.NEAREST,R=L.imageAtlasTexture.size}var V=ce(L,1,e.transform.zoom),U=Xt(C.posMatrix,b,x,e.transform,V),q=Zt(C.posMatrix,b,x,e.transform,V);if(_)Qt(P,C.posMatrix,e,i,U,q,b,u);else if(i&&g&&A){var H=Math.pow(2,y.zoom-L.tileID.overscaledZ);Yr(P,x,b,p,t.symbolSize,y,U,C.posMatrix,H,g)}else i&&g&&P.allowVerticalPlacement&&Wr(P);var G=e.translatePosMatrix(C.posMatrix,L,o,s),Y=_||i&&A?Hr:U,W=e.translatePosMatrix(q,L,o,s,!0),X=z&&0!==n.paint.get(i?\"text-halo-width\":\"icon-halo-width\").constantOr(1),Z={program:d,buffers:O,uniformValues:z?Fr(D.kind,g,w,b,e,G,Y,W,i,R,!0):Rr(D.kind,g,w,b,e,G,Y,W,i,R),atlasTexture:F,atlasInterpolation:B,isSDF:z,hasHalo:X};if(k)for(var J=0,K=O.segments.get();J<K.length;J+=1){var Q=K[J];M.push({segments:new t.SegmentVector([Q]),sortKey:Q.sortKey,state:Z})}else M.push({segments:O.segments,sortKey:0,state:Z})}}}k&&M.sort(function(t,e){return t.sortKey-e.sortKey});for(var $=0,tt=M;$<tt.length;$+=1){var et=tt[$],rt=et.state;if(rt.atlasTexture.bind(rt.atlasInterpolation,m.CLAMP_TO_EDGE),rt.isSDF){var nt=rt.uniformValues;rt.hasHalo&&(nt.u_is_halo=1,Zr(rt.buffers,et.segments,n,e,rt.program,T,h,f,nt)),nt.u_is_halo=0}Zr(rt.buffers,et.segments,n,e,rt.program,T,h,f,rt.uniformValues)}}function Zr(t,e,r,n,a,i,o,s,l){var c=n.context,u=c.gl;a.draw(c,u.TRIANGLES,i,o,s,Et.disabled,l,r.id,t.layoutVertexBuffer,t.indexBuffer,e,r.paint,n.transform.zoom,t.programConfigurations.get(r.id),t.dynamicLayoutVertexBuffer,t.opacityVertexBuffer)}function Jr(t,e,r,n,a,i,o){var s,l,c,u,h,f=t.context.gl,p=r.paint.get(\"fill-pattern\"),d=p&&p.constantOr(1),g=r.getCrossfadeParameters();o?(l=d&&!r.getPaintProperty(\"fill-outline-color\")?\"fillOutlinePattern\":\"fillOutline\",s=f.LINES):(l=d?\"fillPattern\":\"fill\",s=f.TRIANGLES);for(var v=0,m=n;v<m.length;v+=1){var y=m[v],x=e.getTile(y);if(!d||x.patternsLoaded()){var b=x.getBucket(r);if(b){var _=b.programConfigurations.get(r.id),w=t.useProgram(l,_);d&&(t.context.activeTexture.set(f.TEXTURE0),x.imageAtlasTexture.bind(f.LINEAR,f.CLAMP_TO_EDGE),_.updatePatternPaintBuffers(g));var k=p.constantOr(null);if(k&&x.imageAtlas){var T=x.imageAtlas.patternPositions[k.to],A=x.imageAtlas.patternPositions[k.from];T&&A&&_.setConstantPatternPositions(T,A)}var M=t.translatePosMatrix(y.posMatrix,x,r.paint.get(\"fill-translate\"),r.paint.get(\"fill-translate-anchor\"));if(o){u=b.indexBuffer2,h=b.segments2;var S=[f.drawingBufferWidth,f.drawingBufferHeight];c=\"fillOutlinePattern\"===l&&d?xr(M,t,g,x,S):yr(M,S)}else u=b.indexBuffer,h=b.segments,c=d?mr(M,t,g,x):vr(M);w.draw(t.context,s,a,t.stencilModeForClipping(y),i,Et.disabled,c,r.id,b.layoutVertexBuffer,u,h,r.paint,t.transform.zoom,_)}}}}function Kr(t,e,r,n,a,i,o){for(var s=t.context,l=s.gl,c=r.paint.get(\"fill-extrusion-pattern\"),u=c.constantOr(1),h=r.getCrossfadeParameters(),f=r.paint.get(\"fill-extrusion-opacity\"),p=0,d=n;p<d.length;p+=1){var g=d[p],v=e.getTile(g),m=v.getBucket(r);if(m){var y=m.programConfigurations.get(r.id),x=t.useProgram(u?\"fillExtrusionPattern\":\"fillExtrusion\",y);u&&(t.context.activeTexture.set(l.TEXTURE0),v.imageAtlasTexture.bind(l.LINEAR,l.CLAMP_TO_EDGE),y.updatePatternPaintBuffers(h));var b=c.constantOr(null);if(b&&v.imageAtlas){var _=v.imageAtlas.patternPositions[b.to],w=v.imageAtlas.patternPositions[b.from];_&&w&&y.setConstantPatternPositions(_,w)}var k=t.translatePosMatrix(g.posMatrix,v,r.paint.get(\"fill-extrusion-translate\"),r.paint.get(\"fill-extrusion-translate-anchor\")),T=r.paint.get(\"fill-extrusion-vertical-gradient\"),A=u?gr(k,t,T,f,g,h,v):dr(k,t,T,f);x.draw(s,s.gl.TRIANGLES,a,i,o,Et.backCCW,A,r.id,m.layoutVertexBuffer,m.indexBuffer,m.segments,r.paint,t.transform.zoom,y)}}}function Qr(t,e,r,n,a,i){var o=t.context,s=o.gl,l=e.fbo;if(l){var c=t.useProgram(\"hillshade\");o.activeTexture.set(s.TEXTURE0),s.bindTexture(s.TEXTURE_2D,l.colorAttachment.get());var u=Mr(t,e,r);e.maskedBoundsBuffer&&e.maskedIndexBuffer&&e.segments?c.draw(o,s.TRIANGLES,n,a,i,Et.disabled,u,r.id,e.maskedBoundsBuffer,e.maskedIndexBuffer,e.segments):c.draw(o,s.TRIANGLES,n,a,i,Et.disabled,u,r.id,t.rasterBoundsBuffer,t.quadTriangleIndexBuffer,t.rasterBoundsSegments)}}function $r(e,r,n,a,i,o,s){var l=e.context,c=l.gl;if(r.dem&&r.dem.data){var u=r.dem.dim,h=r.dem.stride,f=r.dem.getPixels();if(l.activeTexture.set(c.TEXTURE1),l.pixelStoreUnpackPremultiplyAlpha.set(!1),r.demTexture=r.demTexture||e.getTileTexture(h),r.demTexture){var p=r.demTexture;p.update(f,{premultiply:!1}),p.bind(c.NEAREST,c.CLAMP_TO_EDGE)}else r.demTexture=new t.Texture(l,f,c.RGBA,{premultiply:!1}),r.demTexture.bind(c.NEAREST,c.CLAMP_TO_EDGE);l.activeTexture.set(c.TEXTURE0);var d=r.fbo;if(!d){var g=new t.Texture(l,{width:u,height:u,data:null},c.RGBA);g.bind(c.LINEAR,c.CLAMP_TO_EDGE),(d=r.fbo=l.createFramebuffer(u,u)).colorAttachment.set(g.texture)}l.bindFramebuffer.set(d.framebuffer),l.viewport.set([0,0,u,u]),e.useProgram(\"hillshadePrepare\").draw(l,c.TRIANGLES,i,o,s,Et.disabled,Sr(r,a),n.id,e.rasterBoundsBuffer,e.quadTriangleIndexBuffer,e.rasterBoundsSegments),r.needsHillshadePrepare=!1}}function tn(e,r,n,a,i){var o=a.paint.get(\"raster-fade-duration\");if(o>0){var s=t.browser.now(),l=(s-e.timeAdded)/o,c=r?(s-r.timeAdded)/o:-1,u=n.getSource(),h=i.coveringZoomLevel({tileSize:u.tileSize,roundZoom:u.roundZoom}),f=!r||Math.abs(r.tileID.overscaledZ-h)>Math.abs(e.tileID.overscaledZ-h),p=f&&e.refreshedUponExpiration?1:t.clamp(f?l:1-c,0,1);return e.refreshedUponExpiration&&l>=1&&(e.refreshedUponExpiration=!1),r?{opacity:1,mix:1-p}:{opacity:p,mix:0}}return{opacity:1,mix:0}}function en(e,r,n){var a=e.context,i=a.gl,o=n.posMatrix,s=e.useProgram(\"debug\"),l=At.disabled,c=Mt.disabled,u=e.colorModeForRenderPass(),h=\"$debug\";s.draw(a,i.LINE_STRIP,l,c,u,Et.disabled,kr(o,t.Color.red),h,e.debugBuffer,e.tileBorderIndexBuffer,e.debugSegments);for(var f=r.getTileByID(n.key).latestRawTileData,p=f&&f.byteLength||0,d=Math.floor(p/1024),g=r.getTile(n).tileSize,v=512/Math.min(g,512),m=function(t,e,r,n){n=n||1;var a,i,o,s,l,c,u,h,f=[];for(a=0,i=t.length;a<i;a++)if(l=rn[t[a]]){for(h=null,o=0,s=l[1].length;o<s;o+=2)-1===l[1][o]&&-1===l[1][o+1]?h=null:(c=e+l[1][o]*n,u=r-l[1][o+1]*n,h&&f.push(h.x,h.y,c,u),h={x:c,y:u});e+=l[0]*n}return f}(n.toString()+\" \"+d+\"kb\",50,200*v,5*v),y=new t.StructArrayLayout2i4,x=new t.StructArrayLayout2ui4,b=0;b<m.length;b+=2)y.emplaceBack(m[b],m[b+1]),x.emplaceBack(b,b+1);for(var _=a.createVertexBuffer(y,Fe.members),w=a.createIndexBuffer(x),k=t.SegmentVector.simpleSegment(0,0,y.length/2,y.length/2),T=t.EXTENT/(Math.pow(2,e.transform.zoom-n.overscaledZ)*g*v),A=[],M=-1;M<=1;M++)for(var S=-1;S<=1&&(0!==M||0!==S);S++)A.push([M,S]);for(var E=0;E<A.length;E++){var C=A[E];s.draw(a,i.LINES,l,c,u,Et.disabled,kr(t.translate([],o,[T*C[0],T*C[1],0]),t.Color.white),h,_,w,k)}s.draw(a,i.LINES,l,c,u,Et.disabled,kr(o,t.Color.black),h,_,w,k)}var rn={\" \":[16,[]],\"!\":[10,[5,21,5,7,-1,-1,5,2,4,1,5,0,6,1,5,2]],'\"':[16,[4,21,4,14,-1,-1,12,21,12,14]],\"#\":[21,[11,25,4,-7,-1,-1,17,25,10,-7,-1,-1,4,12,18,12,-1,-1,3,6,17,6]],$:[20,[8,25,8,-4,-1,-1,12,25,12,-4,-1,-1,17,18,15,20,12,21,8,21,5,20,3,18,3,16,4,14,5,13,7,12,13,10,15,9,16,8,17,6,17,3,15,1,12,0,8,0,5,1,3,3]],\"%\":[24,[21,21,3,0,-1,-1,8,21,10,19,10,17,9,15,7,14,5,14,3,16,3,18,4,20,6,21,8,21,10,20,13,19,16,19,19,20,21,21,-1,-1,17,7,15,6,14,4,14,2,16,0,18,0,20,1,21,3,21,5,19,7,17,7]],\"&\":[26,[23,12,23,13,22,14,21,14,20,13,19,11,17,6,15,3,13,1,11,0,7,0,5,1,4,2,3,4,3,6,4,8,5,9,12,13,13,14,14,16,14,18,13,20,11,21,9,20,8,18,8,16,9,13,11,10,16,3,18,1,20,0,22,0,23,1,23,2]],\"'\":[10,[5,19,4,20,5,21,6,20,6,18,5,16,4,15]],\"(\":[14,[11,25,9,23,7,20,5,16,4,11,4,7,5,2,7,-2,9,-5,11,-7]],\")\":[14,[3,25,5,23,7,20,9,16,10,11,10,7,9,2,7,-2,5,-5,3,-7]],\"*\":[16,[8,21,8,9,-1,-1,3,18,13,12,-1,-1,13,18,3,12]],\"+\":[26,[13,18,13,0,-1,-1,4,9,22,9]],\",\":[10,[6,1,5,0,4,1,5,2,6,1,6,-1,5,-3,4,-4]],\"-\":[26,[4,9,22,9]],\".\":[10,[5,2,4,1,5,0,6,1,5,2]],\"/\":[22,[20,25,2,-7]],0:[20,[9,21,6,20,4,17,3,12,3,9,4,4,6,1,9,0,11,0,14,1,16,4,17,9,17,12,16,17,14,20,11,21,9,21]],1:[20,[6,17,8,18,11,21,11,0]],2:[20,[4,16,4,17,5,19,6,20,8,21,12,21,14,20,15,19,16,17,16,15,15,13,13,10,3,0,17,0]],3:[20,[5,21,16,21,10,13,13,13,15,12,16,11,17,8,17,6,16,3,14,1,11,0,8,0,5,1,4,2,3,4]],4:[20,[13,21,3,7,18,7,-1,-1,13,21,13,0]],5:[20,[15,21,5,21,4,12,5,13,8,14,11,14,14,13,16,11,17,8,17,6,16,3,14,1,11,0,8,0,5,1,4,2,3,4]],6:[20,[16,18,15,20,12,21,10,21,7,20,5,17,4,12,4,7,5,3,7,1,10,0,11,0,14,1,16,3,17,6,17,7,16,10,14,12,11,13,10,13,7,12,5,10,4,7]],7:[20,[17,21,7,0,-1,-1,3,21,17,21]],8:[20,[8,21,5,20,4,18,4,16,5,14,7,13,11,12,14,11,16,9,17,7,17,4,16,2,15,1,12,0,8,0,5,1,4,2,3,4,3,7,4,9,6,11,9,12,13,13,15,14,16,16,16,18,15,20,12,21,8,21]],9:[20,[16,14,15,11,13,9,10,8,9,8,6,9,4,11,3,14,3,15,4,18,6,20,9,21,10,21,13,20,15,18,16,14,16,9,15,4,13,1,10,0,8,0,5,1,4,3]],\":\":[10,[5,14,4,13,5,12,6,13,5,14,-1,-1,5,2,4,1,5,0,6,1,5,2]],\";\":[10,[5,14,4,13,5,12,6,13,5,14,-1,-1,6,1,5,0,4,1,5,2,6,1,6,-1,5,-3,4,-4]],\"<\":[24,[20,18,4,9,20,0]],\"=\":[26,[4,12,22,12,-1,-1,4,6,22,6]],\">\":[24,[4,18,20,9,4,0]],\"?\":[18,[3,16,3,17,4,19,5,20,7,21,11,21,13,20,14,19,15,17,15,15,14,13,13,12,9,10,9,7,-1,-1,9,2,8,1,9,0,10,1,9,2]],\"@\":[27,[18,13,17,15,15,16,12,16,10,15,9,14,8,11,8,8,9,6,11,5,14,5,16,6,17,8,-1,-1,12,16,10,14,9,11,9,8,10,6,11,5,-1,-1,18,16,17,8,17,6,19,5,21,5,23,7,24,10,24,12,23,15,22,17,20,19,18,20,15,21,12,21,9,20,7,19,5,17,4,15,3,12,3,9,4,6,5,4,7,2,9,1,12,0,15,0,18,1,20,2,21,3,-1,-1,19,16,18,8,18,6,19,5]],A:[18,[9,21,1,0,-1,-1,9,21,17,0,-1,-1,4,7,14,7]],B:[21,[4,21,4,0,-1,-1,4,21,13,21,16,20,17,19,18,17,18,15,17,13,16,12,13,11,-1,-1,4,11,13,11,16,10,17,9,18,7,18,4,17,2,16,1,13,0,4,0]],C:[21,[18,16,17,18,15,20,13,21,9,21,7,20,5,18,4,16,3,13,3,8,4,5,5,3,7,1,9,0,13,0,15,1,17,3,18,5]],D:[21,[4,21,4,0,-1,-1,4,21,11,21,14,20,16,18,17,16,18,13,18,8,17,5,16,3,14,1,11,0,4,0]],E:[19,[4,21,4,0,-1,-1,4,21,17,21,-1,-1,4,11,12,11,-1,-1,4,0,17,0]],F:[18,[4,21,4,0,-1,-1,4,21,17,21,-1,-1,4,11,12,11]],G:[21,[18,16,17,18,15,20,13,21,9,21,7,20,5,18,4,16,3,13,3,8,4,5,5,3,7,1,9,0,13,0,15,1,17,3,18,5,18,8,-1,-1,13,8,18,8]],H:[22,[4,21,4,0,-1,-1,18,21,18,0,-1,-1,4,11,18,11]],I:[8,[4,21,4,0]],J:[16,[12,21,12,5,11,2,10,1,8,0,6,0,4,1,3,2,2,5,2,7]],K:[21,[4,21,4,0,-1,-1,18,21,4,7,-1,-1,9,12,18,0]],L:[17,[4,21,4,0,-1,-1,4,0,16,0]],M:[24,[4,21,4,0,-1,-1,4,21,12,0,-1,-1,20,21,12,0,-1,-1,20,21,20,0]],N:[22,[4,21,4,0,-1,-1,4,21,18,0,-1,-1,18,21,18,0]],O:[22,[9,21,7,20,5,18,4,16,3,13,3,8,4,5,5,3,7,1,9,0,13,0,15,1,17,3,18,5,19,8,19,13,18,16,17,18,15,20,13,21,9,21]],P:[21,[4,21,4,0,-1,-1,4,21,13,21,16,20,17,19,18,17,18,14,17,12,16,11,13,10,4,10]],Q:[22,[9,21,7,20,5,18,4,16,3,13,3,8,4,5,5,3,7,1,9,0,13,0,15,1,17,3,18,5,19,8,19,13,18,16,17,18,15,20,13,21,9,21,-1,-1,12,4,18,-2]],R:[21,[4,21,4,0,-1,-1,4,21,13,21,16,20,17,19,18,17,18,15,17,13,16,12,13,11,4,11,-1,-1,11,11,18,0]],S:[20,[17,18,15,20,12,21,8,21,5,20,3,18,3,16,4,14,5,13,7,12,13,10,15,9,16,8,17,6,17,3,15,1,12,0,8,0,5,1,3,3]],T:[16,[8,21,8,0,-1,-1,1,21,15,21]],U:[22,[4,21,4,6,5,3,7,1,10,0,12,0,15,1,17,3,18,6,18,21]],V:[18,[1,21,9,0,-1,-1,17,21,9,0]],W:[24,[2,21,7,0,-1,-1,12,21,7,0,-1,-1,12,21,17,0,-1,-1,22,21,17,0]],X:[20,[3,21,17,0,-1,-1,17,21,3,0]],Y:[18,[1,21,9,11,9,0,-1,-1,17,21,9,11]],Z:[20,[17,21,3,0,-1,-1,3,21,17,21,-1,-1,3,0,17,0]],\"[\":[14,[4,25,4,-7,-1,-1,5,25,5,-7,-1,-1,4,25,11,25,-1,-1,4,-7,11,-7]],\"\\\\\":[14,[0,21,14,-3]],\"]\":[14,[9,25,9,-7,-1,-1,10,25,10,-7,-1,-1,3,25,10,25,-1,-1,3,-7,10,-7]],\"^\":[16,[6,15,8,18,10,15,-1,-1,3,12,8,17,13,12,-1,-1,8,17,8,0]],_:[16,[0,-2,16,-2]],\"`\":[10,[6,21,5,20,4,18,4,16,5,15,6,16,5,17]],a:[19,[15,14,15,0,-1,-1,15,11,13,13,11,14,8,14,6,13,4,11,3,8,3,6,4,3,6,1,8,0,11,0,13,1,15,3]],b:[19,[4,21,4,0,-1,-1,4,11,6,13,8,14,11,14,13,13,15,11,16,8,16,6,15,3,13,1,11,0,8,0,6,1,4,3]],c:[18,[15,11,13,13,11,14,8,14,6,13,4,11,3,8,3,6,4,3,6,1,8,0,11,0,13,1,15,3]],d:[19,[15,21,15,0,-1,-1,15,11,13,13,11,14,8,14,6,13,4,11,3,8,3,6,4,3,6,1,8,0,11,0,13,1,15,3]],e:[18,[3,8,15,8,15,10,14,12,13,13,11,14,8,14,6,13,4,11,3,8,3,6,4,3,6,1,8,0,11,0,13,1,15,3]],f:[12,[10,21,8,21,6,20,5,17,5,0,-1,-1,2,14,9,14]],g:[19,[15,14,15,-2,14,-5,13,-6,11,-7,8,-7,6,-6,-1,-1,15,11,13,13,11,14,8,14,6,13,4,11,3,8,3,6,4,3,6,1,8,0,11,0,13,1,15,3]],h:[19,[4,21,4,0,-1,-1,4,10,7,13,9,14,12,14,14,13,15,10,15,0]],i:[8,[3,21,4,20,5,21,4,22,3,21,-1,-1,4,14,4,0]],j:[10,[5,21,6,20,7,21,6,22,5,21,-1,-1,6,14,6,-3,5,-6,3,-7,1,-7]],k:[17,[4,21,4,0,-1,-1,14,14,4,4,-1,-1,8,8,15,0]],l:[8,[4,21,4,0]],m:[30,[4,14,4,0,-1,-1,4,10,7,13,9,14,12,14,14,13,15,10,15,0,-1,-1,15,10,18,13,20,14,23,14,25,13,26,10,26,0]],n:[19,[4,14,4,0,-1,-1,4,10,7,13,9,14,12,14,14,13,15,10,15,0]],o:[19,[8,14,6,13,4,11,3,8,3,6,4,3,6,1,8,0,11,0,13,1,15,3,16,6,16,8,15,11,13,13,11,14,8,14]],p:[19,[4,14,4,-7,-1,-1,4,11,6,13,8,14,11,14,13,13,15,11,16,8,16,6,15,3,13,1,11,0,8,0,6,1,4,3]],q:[19,[15,14,15,-7,-1,-1,15,11,13,13,11,14,8,14,6,13,4,11,3,8,3,6,4,3,6,1,8,0,11,0,13,1,15,3]],r:[13,[4,14,4,0,-1,-1,4,8,5,11,7,13,9,14,12,14]],s:[17,[14,11,13,13,10,14,7,14,4,13,3,11,4,9,6,8,11,7,13,6,14,4,14,3,13,1,10,0,7,0,4,1,3,3]],t:[12,[5,21,5,4,6,1,8,0,10,0,-1,-1,2,14,9,14]],u:[19,[4,14,4,4,5,1,7,0,10,0,12,1,15,4,-1,-1,15,14,15,0]],v:[16,[2,14,8,0,-1,-1,14,14,8,0]],w:[22,[3,14,7,0,-1,-1,11,14,7,0,-1,-1,11,14,15,0,-1,-1,19,14,15,0]],x:[17,[3,14,14,0,-1,-1,14,14,3,0]],y:[16,[2,14,8,0,-1,-1,14,14,8,0,6,-4,4,-6,2,-7,1,-7]],z:[17,[14,14,3,0,-1,-1,3,14,14,14,-1,-1,3,0,14,0]],\"{\":[14,[9,25,7,24,6,23,5,21,5,19,6,17,7,16,8,14,8,12,6,10,-1,-1,7,24,6,22,6,20,7,18,8,17,9,15,9,13,8,11,4,9,8,7,9,5,9,3,8,1,7,0,6,-2,6,-4,7,-6,-1,-1,6,8,8,6,8,4,7,2,6,1,5,-1,5,-3,6,-5,7,-6,9,-7]],\"|\":[8,[4,25,4,-7]],\"}\":[14,[5,25,7,24,8,23,9,21,9,19,8,17,7,16,6,14,6,12,8,10,-1,-1,7,24,8,22,8,20,7,18,6,17,5,15,5,13,6,11,10,9,6,7,5,5,5,3,6,1,7,0,8,-2,8,-4,7,-6,-1,-1,8,8,6,6,6,4,7,2,8,1,9,-1,9,-3,8,-5,7,-6,5,-7]],\"~\":[24,[3,6,3,8,4,11,6,12,8,12,10,11,14,8,16,7,18,7,20,8,21,10,-1,-1,3,8,4,10,6,11,8,11,10,10,14,7,16,6,18,6,20,7,21,10,21,12]]},nn={symbol:function(t,e,r,n,a){if(\"translucent\"===t.renderPass){var i=Mt.disabled,o=t.colorModeForRenderPass();0!==r.paint.get(\"icon-opacity\").constantOr(1)&&Xr(t,e,r,n,!1,r.paint.get(\"icon-translate\"),r.paint.get(\"icon-translate-anchor\"),r.layout.get(\"icon-rotation-alignment\"),r.layout.get(\"icon-pitch-alignment\"),r.layout.get(\"icon-keep-upright\"),i,o,a),0!==r.paint.get(\"text-opacity\").constantOr(1)&&Xr(t,e,r,n,!0,r.paint.get(\"text-translate\"),r.paint.get(\"text-translate-anchor\"),r.layout.get(\"text-rotation-alignment\"),r.layout.get(\"text-pitch-alignment\"),r.layout.get(\"text-keep-upright\"),i,o,a),e.map.showCollisionBoxes&&function(t,e,r,n){qr(t,e,r,n,!1),qr(t,e,r,n,!0)}(t,e,r,n)}},circle:function(e,r,n,a){if(\"translucent\"===e.renderPass){var i=n.paint.get(\"circle-opacity\"),o=n.paint.get(\"circle-stroke-width\"),s=n.paint.get(\"circle-stroke-opacity\"),l=void 0!==n.layout.get(\"circle-sort-key\").constantOr(1);if(0!==i.constantOr(1)||0!==o.constantOr(1)&&0!==s.constantOr(1)){for(var c=e.context,u=c.gl,h=e.depthModeForSublayer(0,At.ReadOnly),f=Mt.disabled,p=e.colorModeForRenderPass(),d=[],g=0;g<a.length;g++){var v=a[g],m=r.getTile(v),y=m.getBucket(n);if(y){var x=y.programConfigurations.get(n.id),b={programConfiguration:x,program:e.useProgram(\"circle\",x),layoutVertexBuffer:y.layoutVertexBuffer,indexBuffer:y.indexBuffer,uniformValues:br(e,v,m,n)};if(l)for(var _=0,w=y.segments.get();_<w.length;_+=1){var k=w[_];d.push({segments:new t.SegmentVector([k]),sortKey:k.sortKey,state:b})}else d.push({segments:y.segments,sortKey:0,state:b})}}l&&d.sort(function(t,e){return t.sortKey-e.sortKey});for(var T=0,A=d;T<A.length;T+=1){var M=A[T],S=M.state,E=S.programConfiguration,C=S.program,L=S.layoutVertexBuffer,P=S.indexBuffer,O=S.uniformValues,I=M.segments;C.draw(c,u.TRIANGLES,h,f,p,Et.disabled,O,n.id,L,P,I,n.paint,e.transform.zoom,E)}}}},heatmap:function(e,r,n,a){if(0!==n.paint.get(\"heatmap-opacity\"))if(\"offscreen\"===e.renderPass){var i=e.context,o=i.gl,s=e.depthModeForSublayer(0,At.ReadOnly),l=Mt.disabled,c=new St([o.ONE,o.ONE],t.Color.transparent,[!0,!0,!0,!0]);!function(t,e,r){var n=t.gl;t.activeTexture.set(n.TEXTURE1),t.viewport.set([0,0,e.width/4,e.height/4]);var a=r.heatmapFbo;if(a)n.bindTexture(n.TEXTURE_2D,a.colorAttachment.get()),t.bindFramebuffer.set(a.framebuffer);else{var i=n.createTexture();n.bindTexture(n.TEXTURE_2D,i),n.texParameteri(n.TEXTURE_2D,n.TEXTURE_WRAP_S,n.CLAMP_TO_EDGE),n.texParameteri(n.TEXTURE_2D,n.TEXTURE_WRAP_T,n.CLAMP_TO_EDGE),n.texParameteri(n.TEXTURE_2D,n.TEXTURE_MIN_FILTER,n.LINEAR),n.texParameteri(n.TEXTURE_2D,n.TEXTURE_MAG_FILTER,n.LINEAR),a=r.heatmapFbo=t.createFramebuffer(e.width/4,e.height/4),function t(e,r,n,a){var i=e.gl;i.texImage2D(i.TEXTURE_2D,0,i.RGBA,r.width/4,r.height/4,0,i.RGBA,e.extTextureHalfFloat?e.extTextureHalfFloat.HALF_FLOAT_OES:i.UNSIGNED_BYTE,null),a.colorAttachment.set(n),e.extTextureHalfFloat&&i.checkFramebufferStatus(i.FRAMEBUFFER)!==i.FRAMEBUFFER_COMPLETE&&(e.extTextureHalfFloat=null,a.colorAttachment.setDirty(),t(e,r,n,a))}(t,e,i,a)}}(i,e,n),i.clear({color:t.Color.transparent});for(var u=0;u<a.length;u++){var h=a[u];if(!r.hasRenderableParent(h)){var f=r.getTile(h),p=f.getBucket(n);if(p){var d=p.programConfigurations.get(n.id),g=e.useProgram(\"heatmap\",d),v=e.transform.zoom;g.draw(i,o.TRIANGLES,s,l,c,Et.disabled,Ar(h.posMatrix,f,v,n.paint.get(\"heatmap-intensity\")),n.id,p.layoutVertexBuffer,p.indexBuffer,p.segments,n.paint,e.transform.zoom,d)}}}i.viewport.set([0,0,e.width,e.height])}else\"translucent\"===e.renderPass&&(e.context.setColorMode(e.colorModeForRenderPass()),function(e,r){var n=e.context,a=n.gl,i=r.heatmapFbo;if(i){n.activeTexture.set(a.TEXTURE0),a.bindTexture(a.TEXTURE_2D,i.colorAttachment.get()),n.activeTexture.set(a.TEXTURE1);var o=r.colorRampTexture;o||(o=r.colorRampTexture=new t.Texture(n,r.colorRamp,a.RGBA)),o.bind(a.LINEAR,a.CLAMP_TO_EDGE),e.useProgram(\"heatmapTexture\").draw(n,a.TRIANGLES,At.disabled,Mt.disabled,e.colorModeForRenderPass(),Et.disabled,function(e,r,n,a){var i=t.create();t.ortho(i,0,e.width,e.height,0,0,1);var o=e.context.gl;return{u_matrix:i,u_world:[o.drawingBufferWidth,o.drawingBufferHeight],u_image:n,u_color_ramp:a,u_opacity:r.paint.get(\"heatmap-opacity\")}}(e,r,0,1),r.id,e.viewportBuffer,e.quadTriangleIndexBuffer,e.viewportSegments,r.paint,e.transform.zoom)}}(e,n))},line:function(e,r,n,a){if(\"translucent\"===e.renderPass){var i=n.paint.get(\"line-opacity\"),o=n.paint.get(\"line-width\");if(0!==i.constantOr(1)&&0!==o.constantOr(1)){var s=e.depthModeForSublayer(0,At.ReadOnly),l=e.colorModeForRenderPass(),c=n.paint.get(\"line-dasharray\"),u=n.paint.get(\"line-pattern\"),h=u.constantOr(1),f=n.paint.get(\"line-gradient\"),p=n.getCrossfadeParameters(),d=c?\"lineSDF\":h?\"linePattern\":f?\"lineGradient\":\"line\",g=e.context,v=g.gl,m=!0;if(f){g.activeTexture.set(v.TEXTURE0);var y=n.gradientTexture;if(!n.gradient)return;y||(y=n.gradientTexture=new t.Texture(g,n.gradient,v.RGBA)),y.bind(v.LINEAR,v.CLAMP_TO_EDGE)}for(var x=0,b=a;x<b.length;x+=1){var _=b[x],w=r.getTile(_);if(!h||w.patternsLoaded()){var k=w.getBucket(n);if(k){var T=k.programConfigurations.get(n.id),A=e.context.program.get(),M=e.useProgram(d,T),S=m||M.program!==A,E=u.constantOr(null);if(E&&w.imageAtlas){var C=w.imageAtlas.patternPositions[E.to],L=w.imageAtlas.patternPositions[E.from];C&&L&&T.setConstantPatternPositions(C,L)}var P=c?Or(e,w,n,c,p):h?Pr(e,w,n,p):f?Lr(e,w,n):Cr(e,w,n);c&&(S||e.lineAtlas.dirty)?(g.activeTexture.set(v.TEXTURE0),e.lineAtlas.bind(g)):h&&(g.activeTexture.set(v.TEXTURE0),w.imageAtlasTexture.bind(v.LINEAR,v.CLAMP_TO_EDGE),T.updatePatternPaintBuffers(p)),M.draw(g,v.TRIANGLES,s,e.stencilModeForClipping(_),l,Et.disabled,P,n.id,k.layoutVertexBuffer,k.indexBuffer,k.segments,n.paint,e.transform.zoom,T),m=!1}}}}}},fill:function(e,r,n,a){var i=n.paint.get(\"fill-color\"),o=n.paint.get(\"fill-opacity\");if(0!==o.constantOr(1)){var s=e.colorModeForRenderPass(),l=n.paint.get(\"fill-pattern\"),c=e.opaquePassEnabledForLayer()&&!l.constantOr(1)&&1===i.constantOr(t.Color.transparent).a&&1===o.constantOr(0)?\"opaque\":\"translucent\";if(e.renderPass===c){var u=e.depthModeForSublayer(1,\"opaque\"===e.renderPass?At.ReadWrite:At.ReadOnly);Jr(e,r,n,a,u,s,!1)}if(\"translucent\"===e.renderPass&&n.paint.get(\"fill-antialias\")){var h=e.depthModeForSublayer(n.getPaintProperty(\"fill-outline-color\")?2:0,At.ReadOnly);Jr(e,r,n,a,h,s,!0)}}},\"fill-extrusion\":function(t,e,r,n){var a=r.paint.get(\"fill-extrusion-opacity\");if(0!==a&&\"translucent\"===t.renderPass){var i=new At(t.context.gl.LEQUAL,At.ReadWrite,t.depthRangeFor3D);if(1!==a||r.paint.get(\"fill-extrusion-pattern\").constantOr(1))Kr(t,e,r,n,i,Mt.disabled,St.disabled),Kr(t,e,r,n,i,t.stencilModeFor3D(),t.colorModeForRenderPass());else{var o=t.colorModeForRenderPass();Kr(t,e,r,n,i,Mt.disabled,o)}}},hillshade:function(t,e,r,n){if(\"offscreen\"===t.renderPass||\"translucent\"===t.renderPass){for(var a=t.context,i=e.getSource().maxzoom,o=t.depthModeForSublayer(0,At.ReadOnly),s=Mt.disabled,l=t.colorModeForRenderPass(),c=0,u=n;c<u.length;c+=1){var h=u[c],f=e.getTile(h);f.needsHillshadePrepare&&\"offscreen\"===t.renderPass?$r(t,f,r,i,o,s,l):\"translucent\"===t.renderPass&&Qr(t,f,r,o,s,l)}a.viewport.set([0,0,t.width,t.height])}},raster:function(t,e,r,n){if(\"translucent\"===t.renderPass&&0!==r.paint.get(\"raster-opacity\"))for(var a=t.context,i=a.gl,o=e.getSource(),s=t.useProgram(\"raster\"),l=Mt.disabled,c=t.colorModeForRenderPass(),u=n.length&&n[0].overscaledZ,h=!t.options.moving,f=0,p=n;f<p.length;f+=1){var d=p[f],g=t.depthModeForSublayer(d.overscaledZ-u,1===r.paint.get(\"raster-opacity\")?At.ReadWrite:At.ReadOnly,i.LESS),v=e.getTile(d),m=t.transform.calculatePosMatrix(d.toUnwrapped(),h);v.registerFadeDuration(r.paint.get(\"raster-fade-duration\"));var y=e.findLoadedParent(d,0),x=tn(v,y,e,r,t.transform),b=void 0,_=void 0,w=\"nearest\"===r.paint.get(\"raster-resampling\")?i.NEAREST:i.LINEAR;a.activeTexture.set(i.TEXTURE0),v.texture.bind(w,i.CLAMP_TO_EDGE,i.LINEAR_MIPMAP_NEAREST),a.activeTexture.set(i.TEXTURE1),y?(y.texture.bind(w,i.CLAMP_TO_EDGE,i.LINEAR_MIPMAP_NEAREST),b=Math.pow(2,y.tileID.overscaledZ-v.tileID.overscaledZ),_=[v.tileID.canonical.x*b%1,v.tileID.canonical.y*b%1]):v.texture.bind(w,i.CLAMP_TO_EDGE,i.LINEAR_MIPMAP_NEAREST);var k=Dr(m,_||[0,0],b||1,x,r);o instanceof P?s.draw(a,i.TRIANGLES,g,l,c,Et.disabled,k,r.id,o.boundsBuffer,t.quadTriangleIndexBuffer,o.boundsSegments):v.maskedBoundsBuffer&&v.maskedIndexBuffer&&v.segments?s.draw(a,i.TRIANGLES,g,l,c,Et.disabled,k,r.id,v.maskedBoundsBuffer,v.maskedIndexBuffer,v.segments,r.paint,t.transform.zoom):s.draw(a,i.TRIANGLES,g,l,c,Et.disabled,k,r.id,t.rasterBoundsBuffer,t.quadTriangleIndexBuffer,t.rasterBoundsSegments)}},background:function(t,e,r){var n=r.paint.get(\"background-color\"),a=r.paint.get(\"background-opacity\");if(0!==a){var i=t.context,o=i.gl,s=t.transform,l=s.tileSize,c=r.paint.get(\"background-pattern\");if(!t.isPatternMissing(c)){var u=!c&&1===n.a&&1===a&&t.opaquePassEnabledForLayer()?\"opaque\":\"translucent\";if(t.renderPass===u){var h=Mt.disabled,f=t.depthModeForSublayer(0,\"opaque\"===u?At.ReadWrite:At.ReadOnly),p=t.colorModeForRenderPass(),d=t.useProgram(c?\"backgroundPattern\":\"background\"),g=s.coveringTiles({tileSize:l});c&&(i.activeTexture.set(o.TEXTURE0),t.imageManager.bind(t.context));for(var v=r.getCrossfadeParameters(),m=0,y=g;m<y.length;m+=1){var x=y[m],b=t.transform.calculatePosMatrix(x.toUnwrapped()),_=c?Nr(b,a,t,c,{tileID:x,tileSize:l},v):Br(b,a,n);d.draw(i,o.TRIANGLES,f,h,p,Et.disabled,_,r.id,t.tileExtentBuffer,t.quadTriangleIndexBuffer,t.tileExtentSegments)}}}}},debug:function(t,e,r){for(var n=0;n<r.length;n++)en(t,e,r[n])},custom:function(t,e,r){var n=t.context,a=r.implementation;if(\"offscreen\"===t.renderPass){var i=a.prerender;i&&(t.setCustomLayerDefaults(),n.setColorMode(t.colorModeForRenderPass()),i.call(a,n.gl,t.transform.customLayerMatrix()),n.setDirty(),t.setBaseState())}else if(\"translucent\"===t.renderPass){t.setCustomLayerDefaults(),n.setColorMode(t.colorModeForRenderPass()),n.setStencilMode(Mt.disabled);var o=\"3d\"===a.renderingMode?new At(t.context.gl.LEQUAL,At.ReadWrite,t.depthRangeFor3D):t.depthModeForSublayer(0,At.ReadOnly);n.setDepthMode(o),a.render(n.gl,t.transform.customLayerMatrix()),n.setDirty(),t.setBaseState(),n.bindFramebuffer.set(null)}}},an=function(e,r){this.context=new Ct(e),this.transform=r,this._tileTextures={},this.setup(),this.numSublayers=Lt.maxUnderzooming+Lt.maxOverzooming+1,this.depthEpsilon=1/Math.pow(2,16),this.depthRboNeedsClear=!0,this.emptyProgramConfiguration=new t.ProgramConfiguration,this.crossTileSymbolIndex=new Oe};function on(t,e){if(t.y>e.y){var r=t;t=e,e=r}return{x0:t.x,y0:t.y,x1:e.x,y1:e.y,dx:e.x-t.x,dy:e.y-t.y}}function sn(t,e,r,n,a){var i=Math.max(r,Math.floor(e.y0)),o=Math.min(n,Math.ceil(e.y1));if(t.x0===e.x0&&t.y0===e.y0?t.x0+e.dy/t.dy*t.dx<e.x1:t.x1-e.dy/t.dy*t.dx<e.x0){var s=t;t=e,e=s}for(var l=t.dx/t.dy,c=e.dx/e.dy,u=t.dx>0,h=e.dx<0,f=i;f<o;f++){var p=l*Math.max(0,Math.min(t.dy,f+u-t.y0))+t.x0,d=c*Math.max(0,Math.min(e.dy,f+h-e.y0))+e.x0;a(Math.floor(d),Math.ceil(p),f)}}function ln(t,e,r,n,a,i){var o,s=on(t,e),l=on(e,r),c=on(r,t);s.dy>l.dy&&(o=s,s=l,l=o),s.dy>c.dy&&(o=s,s=c,c=o),l.dy>c.dy&&(o=l,l=c,c=o),s.dy&&sn(c,s,n,a,i),l.dy&&sn(c,l,n,a,i)}an.prototype.resize=function(e,r){var n=this.context.gl;if(this.width=e*t.browser.devicePixelRatio,this.height=r*t.browser.devicePixelRatio,this.context.viewport.set([0,0,this.width,this.height]),this.style)for(var a=0,i=this.style._order;a<i.length;a+=1){var o=i[a];this.style._layers[o].resize()}this.depthRbo&&(n.deleteRenderbuffer(this.depthRbo),this.depthRbo=null)},an.prototype.setup=function(){var e=this.context,r=new t.StructArrayLayout2i4;r.emplaceBack(0,0),r.emplaceBack(t.EXTENT,0),r.emplaceBack(0,t.EXTENT),r.emplaceBack(t.EXTENT,t.EXTENT),this.tileExtentBuffer=e.createVertexBuffer(r,Fe.members),this.tileExtentSegments=t.SegmentVector.simpleSegment(0,0,4,2);var n=new t.StructArrayLayout2i4;n.emplaceBack(0,0),n.emplaceBack(t.EXTENT,0),n.emplaceBack(0,t.EXTENT),n.emplaceBack(t.EXTENT,t.EXTENT),this.debugBuffer=e.createVertexBuffer(n,Fe.members),this.debugSegments=t.SegmentVector.simpleSegment(0,0,4,5);var a=new t.StructArrayLayout4i8;a.emplaceBack(0,0,0,0),a.emplaceBack(t.EXTENT,0,t.EXTENT,0),a.emplaceBack(0,t.EXTENT,0,t.EXTENT),a.emplaceBack(t.EXTENT,t.EXTENT,t.EXTENT,t.EXTENT),this.rasterBoundsBuffer=e.createVertexBuffer(a,t.rasterBoundsAttributes.members),this.rasterBoundsSegments=t.SegmentVector.simpleSegment(0,0,4,2);var i=new t.StructArrayLayout2i4;i.emplaceBack(0,0),i.emplaceBack(1,0),i.emplaceBack(0,1),i.emplaceBack(1,1),this.viewportBuffer=e.createVertexBuffer(i,Fe.members),this.viewportSegments=t.SegmentVector.simpleSegment(0,0,4,2);var o=new t.StructArrayLayout1ui2;o.emplaceBack(0),o.emplaceBack(1),o.emplaceBack(3),o.emplaceBack(2),o.emplaceBack(0),this.tileBorderIndexBuffer=e.createIndexBuffer(o);var s=new t.StructArrayLayout3ui6;s.emplaceBack(0,1,2),s.emplaceBack(2,1,3),this.quadTriangleIndexBuffer=e.createIndexBuffer(s);var l=this.context.gl;this.stencilClearMode=new Mt({func:l.ALWAYS,mask:0},0,255,l.ZERO,l.ZERO,l.ZERO)},an.prototype.clearStencil=function(){var e=this.context,r=e.gl;this.nextStencilID=1,this.currentStencilSource=void 0;var n=t.create();t.ortho(n,0,this.width,this.height,0,0,1),t.scale(n,n,[r.drawingBufferWidth,r.drawingBufferHeight,0]),this.useProgram(\"clippingMask\").draw(e,r.TRIANGLES,At.disabled,this.stencilClearMode,St.disabled,Et.disabled,Tr(n),\"$clipping\",this.viewportBuffer,this.quadTriangleIndexBuffer,this.viewportSegments)},an.prototype._renderTileClippingMasks=function(t,e){if(this.currentStencilSource!==t.source&&t.isTileClipped()&&e&&e.length){this.currentStencilSource=t.source;var r=this.context,n=r.gl;this.nextStencilID+e.length>256&&this.clearStencil(),r.setColorMode(St.disabled),r.setDepthMode(At.disabled);var a=this.useProgram(\"clippingMask\");this._tileClippingMaskIDs={};for(var i=0,o=e;i<o.length;i+=1){var s=o[i],l=this._tileClippingMaskIDs[s.key]=this.nextStencilID++;a.draw(r,n.TRIANGLES,At.disabled,new Mt({func:n.ALWAYS,mask:0},l,255,n.KEEP,n.KEEP,n.REPLACE),St.disabled,Et.disabled,Tr(s.posMatrix),\"$clipping\",this.tileExtentBuffer,this.quadTriangleIndexBuffer,this.tileExtentSegments)}}},an.prototype.stencilModeFor3D=function(){this.currentStencilSource=void 0,this.nextStencilID+1>256&&this.clearStencil();var t=this.nextStencilID++,e=this.context.gl;return new Mt({func:e.NOTEQUAL,mask:255},t,255,e.KEEP,e.KEEP,e.REPLACE)},an.prototype.stencilModeForClipping=function(t){var e=this.context.gl;return new Mt({func:e.EQUAL,mask:255},this._tileClippingMaskIDs[t.key],0,e.KEEP,e.KEEP,e.REPLACE)},an.prototype.colorModeForRenderPass=function(){var e=this.context.gl;return this._showOverdrawInspector?new St([e.CONSTANT_COLOR,e.ONE],new t.Color(1/8,1/8,1/8,0),[!0,!0,!0,!0]):\"opaque\"===this.renderPass?St.unblended:St.alphaBlended},an.prototype.depthModeForSublayer=function(t,e,r){if(!this.opaquePassEnabledForLayer())return At.disabled;var n=1-((1+this.currentLayer)*this.numSublayers+t)*this.depthEpsilon;return new At(r||this.context.gl.LEQUAL,e,[n,n])},an.prototype.opaquePassEnabledForLayer=function(){return this.currentLayer<this.opaquePassCutoff},an.prototype.render=function(e,r){this.style=e,this.options=r,this.lineAtlas=e.lineAtlas,this.imageManager=e.imageManager,this.glyphManager=e.glyphManager,this.symbolFadeChange=e.placement.symbolFadeChange(t.browser.now()),this.imageManager.beginFrame();var n=this.style._order,a=this.style.sourceCaches;for(var i in a){var o=a[i];o.used&&o.prepare(this.context)}var s={},l={},c={};for(var u in a){var h=a[u];s[u]=h.getVisibleCoordinates(),l[u]=s[u].slice().reverse(),c[u]=h.getVisibleCoordinates(!0).reverse()}for(var f in a){var p=a[f],d=p.getSource();if(\"raster\"===d.type||\"raster-dem\"===d.type){for(var g=[],v=0,m=s[f];v<m.length;v+=1){var y=m[v];g.push(p.getTile(y))}Vr(g,this.context)}}this.opaquePassCutoff=1/0;for(var x=0;x<n.length;x++){var b=n[x];if(this.style._layers[b].is3D()){this.opaquePassCutoff=x;break}}this.renderPass=\"offscreen\",this.depthRboNeedsClear=!0;for(var _=0,w=n;_<w.length;_+=1){var k=w[_],T=this.style._layers[k];if(T.hasOffscreenPass()&&!T.isHidden(this.transform.zoom)){var A=l[T.source];(\"custom\"===T.type||A.length)&&this.renderLayer(this,a[T.source],T,A)}}for(this.context.bindFramebuffer.set(null),this.context.clear({color:r.showOverdrawInspector?t.Color.black:t.Color.transparent,depth:1}),this.clearStencil(),this._showOverdrawInspector=r.showOverdrawInspector,this.depthRangeFor3D=[0,1-(e._order.length+2)*this.numSublayers*this.depthEpsilon],this.renderPass=\"opaque\",this.currentLayer=n.length-1;this.currentLayer>=0;this.currentLayer--){var M=this.style._layers[n[this.currentLayer]],S=a[M.source],E=s[M.source];this._renderTileClippingMasks(M,E),this.renderLayer(this,S,M,E)}for(this.renderPass=\"translucent\",this.currentLayer=0;this.currentLayer<n.length;this.currentLayer++){var C=this.style._layers[n[this.currentLayer]],L=a[C.source],P=(\"symbol\"===C.type?c:l)[C.source];this._renderTileClippingMasks(C,s[C.source]),this.renderLayer(this,L,C,P)}if(this.options.showTileBoundaries)for(var O in a){nn.debug(this,a[O],s[O]);break}this.context.setDefault()},an.prototype.setupOffscreenDepthRenderbuffer=function(){var t=this.context;this.depthRbo||(this.depthRbo=t.createRenderbuffer(t.gl.DEPTH_COMPONENT16,this.width,this.height))},an.prototype.renderLayer=function(t,e,r,n){r.isHidden(this.transform.zoom)||(\"background\"===r.type||\"custom\"===r.type||n.length)&&(this.id=r.id,nn[r.type](t,e,r,n,this.style.placement.variableOffsets))},an.prototype.translatePosMatrix=function(e,r,n,a,i){if(!n[0]&&!n[1])return e;var o=i?\"map\"===a?this.transform.angle:0:\"viewport\"===a?-this.transform.angle:0;if(o){var s=Math.sin(o),l=Math.cos(o);n=[n[0]*l-n[1]*s,n[0]*s+n[1]*l]}var c=[i?n[0]:ce(r,n[0],this.transform.zoom),i?n[1]:ce(r,n[1],this.transform.zoom),0],u=new Float32Array(16);return t.translate(u,e,c),u},an.prototype.saveTileTexture=function(t){var e=this._tileTextures[t.size[0]];e?e.push(t):this._tileTextures[t.size[0]]=[t]},an.prototype.getTileTexture=function(t){var e=this._tileTextures[t];return e&&e.length>0?e.pop():null},an.prototype.isPatternMissing=function(t){if(!t)return!1;var e=this.imageManager.getPattern(t.from),r=this.imageManager.getPattern(t.to);return!e||!r},an.prototype.useProgram=function(t,e){void 0===e&&(e=this.emptyProgramConfiguration),this.cache=this.cache||{};var r=\"\"+t+(e.cacheKey||\"\")+(this._showOverdrawInspector?\"/overdraw\":\"\");return this.cache[r]||(this.cache[r]=new fr(this.context,ur[t],e,jr[t],this._showOverdrawInspector)),this.cache[r]},an.prototype.setCustomLayerDefaults=function(){this.context.unbindVAO(),this.context.cullFace.setDefault(),this.context.activeTexture.setDefault(),this.context.pixelStoreUnpack.setDefault(),this.context.pixelStoreUnpackPremultiplyAlpha.setDefault(),this.context.pixelStoreUnpackFlipY.setDefault()},an.prototype.setBaseState=function(){var t=this.context.gl;this.context.cullFace.set(!1),this.context.viewport.set([0,0,this.width,this.height]),this.context.blendEquation.set(t.FUNC_ADD)};var cn=function(e,r,n){this.tileSize=512,this.maxValidLatitude=85.051129,this._renderWorldCopies=void 0===n||n,this._minZoom=e||0,this._maxZoom=r||22,this.setMaxBounds(),this.width=0,this.height=0,this._center=new t.LngLat(0,0),this.zoom=0,this.angle=0,this._fov=.6435011087932844,this._pitch=0,this._unmodified=!0,this._posMatrixCache={},this._alignedPosMatrixCache={}},un={minZoom:{configurable:!0},maxZoom:{configurable:!0},renderWorldCopies:{configurable:!0},worldSize:{configurable:!0},centerPoint:{configurable:!0},size:{configurable:!0},bearing:{configurable:!0},pitch:{configurable:!0},fov:{configurable:!0},zoom:{configurable:!0},center:{configurable:!0},unmodified:{configurable:!0},point:{configurable:!0}};cn.prototype.clone=function(){var t=new cn(this._minZoom,this._maxZoom,this._renderWorldCopies);return t.tileSize=this.tileSize,t.latRange=this.latRange,t.width=this.width,t.height=this.height,t._center=this._center,t.zoom=this.zoom,t.angle=this.angle,t._fov=this._fov,t._pitch=this._pitch,t._unmodified=this._unmodified,t._calcMatrices(),t},un.minZoom.get=function(){return this._minZoom},un.minZoom.set=function(t){this._minZoom!==t&&(this._minZoom=t,this.zoom=Math.max(this.zoom,t))},un.maxZoom.get=function(){return this._maxZoom},un.maxZoom.set=function(t){this._maxZoom!==t&&(this._maxZoom=t,this.zoom=Math.min(this.zoom,t))},un.renderWorldCopies.get=function(){return this._renderWorldCopies},un.renderWorldCopies.set=function(t){void 0===t?t=!0:null===t&&(t=!1),this._renderWorldCopies=t},un.worldSize.get=function(){return this.tileSize*this.scale},un.centerPoint.get=function(){return this.size._div(2)},un.size.get=function(){return new t.Point(this.width,this.height)},un.bearing.get=function(){return-this.angle/Math.PI*180},un.bearing.set=function(e){var r=-t.wrap(e,-180,180)*Math.PI/180;this.angle!==r&&(this._unmodified=!1,this.angle=r,this._calcMatrices(),this.rotationMatrix=t.create$2(),t.rotate(this.rotationMatrix,this.rotationMatrix,this.angle))},un.pitch.get=function(){return this._pitch/Math.PI*180},un.pitch.set=function(e){var r=t.clamp(e,0,60)/180*Math.PI;this._pitch!==r&&(this._unmodified=!1,this._pitch=r,this._calcMatrices())},un.fov.get=function(){return this._fov/Math.PI*180},un.fov.set=function(t){t=Math.max(.01,Math.min(60,t)),this._fov!==t&&(this._unmodified=!1,this._fov=t/180*Math.PI,this._calcMatrices())},un.zoom.get=function(){return this._zoom},un.zoom.set=function(t){var e=Math.min(Math.max(t,this.minZoom),this.maxZoom);this._zoom!==e&&(this._unmodified=!1,this._zoom=e,this.scale=this.zoomScale(e),this.tileZoom=Math.floor(e),this.zoomFraction=e-this.tileZoom,this._constrain(),this._calcMatrices())},un.center.get=function(){return this._center},un.center.set=function(t){t.lat===this._center.lat&&t.lng===this._center.lng||(this._unmodified=!1,this._center=t,this._constrain(),this._calcMatrices())},cn.prototype.coveringZoomLevel=function(t){return(t.roundZoom?Math.round:Math.floor)(this.zoom+this.scaleZoom(this.tileSize/t.tileSize))},cn.prototype.getVisibleUnwrappedCoordinates=function(e){var r=[new t.UnwrappedTileID(0,e)];if(this._renderWorldCopies)for(var n=this.pointCoordinate(new t.Point(0,0)),a=this.pointCoordinate(new t.Point(this.width,0)),i=this.pointCoordinate(new t.Point(this.width,this.height)),o=this.pointCoordinate(new t.Point(0,this.height)),s=Math.floor(Math.min(n.x,a.x,i.x,o.x)),l=Math.floor(Math.max(n.x,a.x,i.x,o.x)),c=s-1;c<=l+1;c++)0!==c&&r.push(new t.UnwrappedTileID(c,e));return r},cn.prototype.coveringTiles=function(e){var r=this.coveringZoomLevel(e),n=r;if(void 0!==e.minzoom&&r<e.minzoom)return[];void 0!==e.maxzoom&&r>e.maxzoom&&(r=e.maxzoom);var a=t.MercatorCoordinate.fromLngLat(this.center),i=Math.pow(2,r),o=new t.Point(i*a.x-.5,i*a.y-.5);return function(e,r,n,a){void 0===a&&(a=!0);var i=1<<e,o={};function s(r,s,l){var c,u,h,f;if(l>=0&&l<=i)for(c=r;c<s;c++)u=Math.floor(c/i),h=(c%i+i)%i,0!==u&&!0!==a||(f=new t.OverscaledTileID(n,u,e,h,l),o[f.key]=f)}var l=r.map(function(e){return new t.Point(e.x,e.y)._mult(i)});return ln(l[0],l[1],l[2],0,i,s),ln(l[2],l[3],l[0],0,i,s),Object.keys(o).map(function(t){return o[t]})}(r,[this.pointCoordinate(new t.Point(0,0)),this.pointCoordinate(new t.Point(this.width,0)),this.pointCoordinate(new t.Point(this.width,this.height)),this.pointCoordinate(new t.Point(0,this.height))],e.reparseOverscaled?n:r,this._renderWorldCopies).sort(function(t,e){return o.dist(t.canonical)-o.dist(e.canonical)})},cn.prototype.resize=function(t,e){this.width=t,this.height=e,this.pixelsToGLUnits=[2/t,-2/e],this._constrain(),this._calcMatrices()},un.unmodified.get=function(){return this._unmodified},cn.prototype.zoomScale=function(t){return Math.pow(2,t)},cn.prototype.scaleZoom=function(t){return Math.log(t)/Math.LN2},cn.prototype.project=function(e){var r=t.clamp(e.lat,-this.maxValidLatitude,this.maxValidLatitude);return new t.Point(t.mercatorXfromLng(e.lng)*this.worldSize,t.mercatorYfromLat(r)*this.worldSize)},cn.prototype.unproject=function(e){return new t.MercatorCoordinate(e.x/this.worldSize,e.y/this.worldSize).toLngLat()},un.point.get=function(){return this.project(this.center)},cn.prototype.setLocationAtPoint=function(e,r){var n=this.pointCoordinate(r),a=this.pointCoordinate(this.centerPoint),i=this.locationCoordinate(e),o=new t.MercatorCoordinate(i.x-(n.x-a.x),i.y-(n.y-a.y));this.center=this.coordinateLocation(o),this._renderWorldCopies&&(this.center=this.center.wrap())},cn.prototype.locationPoint=function(t){return this.coordinatePoint(this.locationCoordinate(t))},cn.prototype.pointLocation=function(t){return this.coordinateLocation(this.pointCoordinate(t))},cn.prototype.locationCoordinate=function(e){return t.MercatorCoordinate.fromLngLat(e)},cn.prototype.coordinateLocation=function(t){return t.toLngLat()},cn.prototype.pointCoordinate=function(e){var r=[e.x,e.y,0,1],n=[e.x,e.y,1,1];t.transformMat4(r,r,this.pixelMatrixInverse),t.transformMat4(n,n,this.pixelMatrixInverse);var a=r[3],i=n[3],o=r[0]/a,s=n[0]/i,l=r[1]/a,c=n[1]/i,u=r[2]/a,h=n[2]/i,f=u===h?0:(0-u)/(h-u);return new t.MercatorCoordinate(t.number(o,s,f)/this.worldSize,t.number(l,c,f)/this.worldSize)},cn.prototype.coordinatePoint=function(e){var r=[e.x*this.worldSize,e.y*this.worldSize,0,1];return t.transformMat4(r,r,this.pixelMatrix),new t.Point(r[0]/r[3],r[1]/r[3])},cn.prototype.getBounds=function(){return(new t.LngLatBounds).extend(this.pointLocation(new t.Point(0,0))).extend(this.pointLocation(new t.Point(this.width,0))).extend(this.pointLocation(new t.Point(this.width,this.height))).extend(this.pointLocation(new t.Point(0,this.height)))},cn.prototype.getMaxBounds=function(){return this.latRange&&2===this.latRange.length&&this.lngRange&&2===this.lngRange.length?new t.LngLatBounds([this.lngRange[0],this.latRange[0]],[this.lngRange[1],this.latRange[1]]):null},cn.prototype.setMaxBounds=function(t){t?(this.lngRange=[t.getWest(),t.getEast()],this.latRange=[t.getSouth(),t.getNorth()],this._constrain()):(this.lngRange=null,this.latRange=[-this.maxValidLatitude,this.maxValidLatitude])},cn.prototype.calculatePosMatrix=function(e,r){void 0===r&&(r=!1);var n=e.key,a=r?this._alignedPosMatrixCache:this._posMatrixCache;if(a[n])return a[n];var i=e.canonical,o=this.worldSize/this.zoomScale(i.z),s=i.x+Math.pow(2,i.z)*e.wrap,l=t.identity(new Float64Array(16));return t.translate(l,l,[s*o,i.y*o,0]),t.scale(l,l,[o/t.EXTENT,o/t.EXTENT,1]),t.multiply(l,r?this.alignedProjMatrix:this.projMatrix,l),a[n]=new Float32Array(l),a[n]},cn.prototype.customLayerMatrix=function(){return this.mercatorMatrix.slice()},cn.prototype._constrain=function(){if(this.center&&this.width&&this.height&&!this._constraining){this._constraining=!0;var e,r,n,a,i=-90,o=90,s=-180,l=180,c=this.size,u=this._unmodified;if(this.latRange){var h=this.latRange;i=t.mercatorYfromLat(h[1])*this.worldSize,e=(o=t.mercatorYfromLat(h[0])*this.worldSize)-i<c.y?c.y/(o-i):0}if(this.lngRange){var f=this.lngRange;s=t.mercatorXfromLng(f[0])*this.worldSize,r=(l=t.mercatorXfromLng(f[1])*this.worldSize)-s<c.x?c.x/(l-s):0}var p=this.point,d=Math.max(r||0,e||0);if(d)return this.center=this.unproject(new t.Point(r?(l+s)/2:p.x,e?(o+i)/2:p.y)),this.zoom+=this.scaleZoom(d),this._unmodified=u,void(this._constraining=!1);if(this.latRange){var g=p.y,v=c.y/2;g-v<i&&(a=i+v),g+v>o&&(a=o-v)}if(this.lngRange){var m=p.x,y=c.x/2;m-y<s&&(n=s+y),m+y>l&&(n=l-y)}void 0===n&&void 0===a||(this.center=this.unproject(new t.Point(void 0!==n?n:p.x,void 0!==a?a:p.y))),this._unmodified=u,this._constraining=!1}},cn.prototype._calcMatrices=function(){if(this.height){this.cameraToCenterDistance=.5/Math.tan(this._fov/2)*this.height;var e=this._fov/2,r=Math.PI/2+this._pitch,n=Math.sin(e)*this.cameraToCenterDistance/Math.sin(Math.PI-r-e),a=this.point,i=a.x,o=a.y,s=1.01*(Math.cos(Math.PI/2-this._pitch)*n+this.cameraToCenterDistance),l=this.height/50,c=new Float64Array(16);t.perspective(c,this._fov,this.width/this.height,l,s),t.scale(c,c,[1,-1,1]),t.translate(c,c,[0,0,-this.cameraToCenterDistance]),t.rotateX(c,c,this._pitch),t.rotateZ(c,c,this.angle),t.translate(c,c,[-i,-o,0]),this.mercatorMatrix=t.scale([],c,[this.worldSize,this.worldSize,this.worldSize]),t.scale(c,c,[1,1,t.mercatorZfromAltitude(1,this.center.lat)*this.worldSize,1]),this.projMatrix=c;var u=this.width%2/2,h=this.height%2/2,f=Math.cos(this.angle),p=Math.sin(this.angle),d=i-Math.round(i)+f*u+p*h,g=o-Math.round(o)+f*h+p*u,v=new Float64Array(c);if(t.translate(v,v,[d>.5?d-1:d,g>.5?g-1:g,0]),this.alignedProjMatrix=v,c=t.create(),t.scale(c,c,[this.width/2,-this.height/2,1]),t.translate(c,c,[1,-1,0]),this.labelPlaneMatrix=c,c=t.create(),t.scale(c,c,[1,-1,1]),t.translate(c,c,[-1,-1,0]),t.scale(c,c,[2/this.width,2/this.height,1]),this.glCoordMatrix=c,this.pixelMatrix=t.multiply(new Float64Array(16),this.labelPlaneMatrix,this.projMatrix),!(c=t.invert(new Float64Array(16),this.pixelMatrix)))throw new Error(\"failed to invert matrix\");this.pixelMatrixInverse=c,this._posMatrixCache={},this._alignedPosMatrixCache={}}},cn.prototype.maxPitchScaleFactor=function(){if(!this.pixelMatrixInverse)return 1;var e=this.pointCoordinate(new t.Point(0,0)),r=[e.x*this.worldSize,e.y*this.worldSize,0,1];return t.transformMat4(r,r,this.pixelMatrix)[3]/this.cameraToCenterDistance},cn.prototype.getCameraPoint=function(){var e=this._pitch,r=Math.tan(e)*(this.cameraToCenterDistance||1);return this.centerPoint.add(new t.Point(0,r))},cn.prototype.getCameraQueryGeometry=function(e){var r=this.getCameraPoint();if(1===e.length)return[e[0],r];for(var n=r.x,a=r.y,i=r.x,o=r.y,s=0,l=e;s<l.length;s+=1){var c=l[s];n=Math.min(n,c.x),a=Math.min(a,c.y),i=Math.max(i,c.x),o=Math.max(o,c.y)}return[new t.Point(n,a),new t.Point(i,a),new t.Point(i,o),new t.Point(n,o),new t.Point(n,a)]},Object.defineProperties(cn.prototype,un);var hn=function(){var e,r,n,a;t.bindAll([\"_onHashChange\",\"_updateHash\"],this),this._updateHash=(e=this._updateHashUnthrottled.bind(this),300,r=!1,n=null,a=function(){n=null,r&&(e(),n=setTimeout(a,300),r=!1)},function(){return r=!0,n||a(),n})};hn.prototype.addTo=function(e){return this._map=e,t.window.addEventListener(\"hashchange\",this._onHashChange,!1),this._map.on(\"moveend\",this._updateHash),this},hn.prototype.remove=function(){return t.window.removeEventListener(\"hashchange\",this._onHashChange,!1),this._map.off(\"moveend\",this._updateHash),clearTimeout(this._updateHash()),delete this._map,this},hn.prototype.getHashString=function(t){var e=this._map.getCenter(),r=Math.round(100*this._map.getZoom())/100,n=Math.ceil((r*Math.LN2+Math.log(512/360/.5))/Math.LN10),a=Math.pow(10,n),i=Math.round(e.lng*a)/a,o=Math.round(e.lat*a)/a,s=this._map.getBearing(),l=this._map.getPitch(),c=\"\";return c+=t?\"#/\"+i+\"/\"+o+\"/\"+r:\"#\"+r+\"/\"+o+\"/\"+i,(s||l)&&(c+=\"/\"+Math.round(10*s)/10),l&&(c+=\"/\"+Math.round(l)),c},hn.prototype._onHashChange=function(){var e=t.window.location.hash.replace(\"#\",\"\").split(\"/\");return e.length>=3&&(this._map.jumpTo({center:[+e[2],+e[1]],zoom:+e[0],bearing:+(e[3]||0),pitch:+(e[4]||0)}),!0)},hn.prototype._updateHashUnthrottled=function(){var e=this.getHashString();try{t.window.history.replaceState(t.window.history.state,\"\",e)}catch(t){}};var fn=function(e){function n(n,a,i,o){void 0===o&&(o={});var s=r.mousePos(a.getCanvasContainer(),i),l=a.unproject(s);e.call(this,n,t.extend({point:s,lngLat:l,originalEvent:i},o)),this._defaultPrevented=!1,this.target=a}e&&(n.__proto__=e),n.prototype=Object.create(e&&e.prototype),n.prototype.constructor=n;var a={defaultPrevented:{configurable:!0}};return n.prototype.preventDefault=function(){this._defaultPrevented=!0},a.defaultPrevented.get=function(){return this._defaultPrevented},Object.defineProperties(n.prototype,a),n}(t.Event),pn=function(e){function n(n,a,i){var o=r.touchPos(a.getCanvasContainer(),i),s=o.map(function(t){return a.unproject(t)}),l=o.reduce(function(t,e,r,n){return t.add(e.div(n.length))},new t.Point(0,0)),c=a.unproject(l);e.call(this,n,{points:o,point:l,lngLats:s,lngLat:c,originalEvent:i}),this._defaultPrevented=!1}e&&(n.__proto__=e),n.prototype=Object.create(e&&e.prototype),n.prototype.constructor=n;var a={defaultPrevented:{configurable:!0}};return n.prototype.preventDefault=function(){this._defaultPrevented=!0},a.defaultPrevented.get=function(){return this._defaultPrevented},Object.defineProperties(n.prototype,a),n}(t.Event),dn=function(t){function e(e,r,n){t.call(this,e,{originalEvent:n}),this._defaultPrevented=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={defaultPrevented:{configurable:!0}};return e.prototype.preventDefault=function(){this._defaultPrevented=!0},r.defaultPrevented.get=function(){return this._defaultPrevented},Object.defineProperties(e.prototype,r),e}(t.Event),gn=function(e){this._map=e,this._el=e.getCanvasContainer(),this._delta=0,this._defaultZoomRate=.01,this._wheelZoomRate=1/450,t.bindAll([\"_onWheel\",\"_onTimeout\",\"_onScrollFrame\",\"_onScrollFinished\"],this)};gn.prototype.setZoomRate=function(t){this._defaultZoomRate=t},gn.prototype.setWheelZoomRate=function(t){this._wheelZoomRate=t},gn.prototype.isEnabled=function(){return!!this._enabled},gn.prototype.isActive=function(){return!!this._active},gn.prototype.isZooming=function(){return!!this._zooming},gn.prototype.enable=function(t){this.isEnabled()||(this._enabled=!0,this._aroundCenter=t&&\"center\"===t.around)},gn.prototype.disable=function(){this.isEnabled()&&(this._enabled=!1)},gn.prototype.onWheel=function(e){if(this.isEnabled()){var r=e.deltaMode===t.window.WheelEvent.DOM_DELTA_LINE?40*e.deltaY:e.deltaY,n=t.browser.now(),a=n-(this._lastWheelEventTime||0);this._lastWheelEventTime=n,0!==r&&r%4.000244140625==0?this._type=\"wheel\":0!==r&&Math.abs(r)<4?this._type=\"trackpad\":a>400?(this._type=null,this._lastValue=r,this._timeout=setTimeout(this._onTimeout,40,e)):this._type||(this._type=Math.abs(a*r)<200?\"trackpad\":\"wheel\",this._timeout&&(clearTimeout(this._timeout),this._timeout=null,r+=this._lastValue)),e.shiftKey&&r&&(r/=4),this._type&&(this._lastWheelEvent=e,this._delta-=r,this.isActive()||this._start(e)),e.preventDefault()}},gn.prototype._onTimeout=function(t){this._type=\"wheel\",this._delta-=this._lastValue,this.isActive()||this._start(t)},gn.prototype._start=function(e){if(this._delta){this._frameId&&(this._map._cancelRenderFrame(this._frameId),this._frameId=null),this._active=!0,this.isZooming()||(this._zooming=!0,this._map.fire(new t.Event(\"movestart\",{originalEvent:e})),this._map.fire(new t.Event(\"zoomstart\",{originalEvent:e}))),this._finishTimeout&&clearTimeout(this._finishTimeout);var n=r.mousePos(this._el,e);this._around=t.LngLat.convert(this._aroundCenter?this._map.getCenter():this._map.unproject(n)),this._aroundPoint=this._map.transform.locationPoint(this._around),this._frameId||(this._frameId=this._map._requestRenderFrame(this._onScrollFrame))}},gn.prototype._onScrollFrame=function(){var e=this;if(this._frameId=null,this.isActive()){var r=this._map.transform;if(0!==this._delta){var n=\"wheel\"===this._type&&Math.abs(this._delta)>4.000244140625?this._wheelZoomRate:this._defaultZoomRate,a=2/(1+Math.exp(-Math.abs(this._delta*n)));this._delta<0&&0!==a&&(a=1/a);var i=\"number\"==typeof this._targetZoom?r.zoomScale(this._targetZoom):r.scale;this._targetZoom=Math.min(r.maxZoom,Math.max(r.minZoom,r.scaleZoom(i*a))),\"wheel\"===this._type&&(this._startZoom=r.zoom,this._easing=this._smoothOutEasing(200)),this._delta=0}var o=\"number\"==typeof this._targetZoom?this._targetZoom:r.zoom,s=this._startZoom,l=this._easing,c=!1;if(\"wheel\"===this._type&&s&&l){var u=Math.min((t.browser.now()-this._lastWheelEventTime)/200,1),h=l(u);r.zoom=t.number(s,o,h),u<1?this._frameId||(this._frameId=this._map._requestRenderFrame(this._onScrollFrame)):c=!0}else r.zoom=o,c=!0;r.setLocationAtPoint(this._around,this._aroundPoint),this._map.fire(new t.Event(\"move\",{originalEvent:this._lastWheelEvent})),this._map.fire(new t.Event(\"zoom\",{originalEvent:this._lastWheelEvent})),c&&(this._active=!1,this._finishTimeout=setTimeout(function(){e._zooming=!1,e._map.fire(new t.Event(\"zoomend\",{originalEvent:e._lastWheelEvent})),e._map.fire(new t.Event(\"moveend\",{originalEvent:e._lastWheelEvent})),delete e._targetZoom},200))}},gn.prototype._smoothOutEasing=function(e){var r=t.ease;if(this._prevEase){var n=this._prevEase,a=(t.browser.now()-n.start)/n.duration,i=n.easing(a+.01)-n.easing(a),o=.27/Math.sqrt(i*i+1e-4)*.01,s=Math.sqrt(.0729-o*o);r=t.bezier(o,s,.25,1)}return this._prevEase={start:t.browser.now(),duration:e,easing:r},r};var vn=function(e,r){this._map=e,this._el=e.getCanvasContainer(),this._container=e.getContainer(),this._clickTolerance=r.clickTolerance||1,t.bindAll([\"_onMouseMove\",\"_onMouseUp\",\"_onKeyDown\"],this)};vn.prototype.isEnabled=function(){return!!this._enabled},vn.prototype.isActive=function(){return!!this._active},vn.prototype.enable=function(){this.isEnabled()||(this._enabled=!0)},vn.prototype.disable=function(){this.isEnabled()&&(this._enabled=!1)},vn.prototype.onMouseDown=function(e){this.isEnabled()&&e.shiftKey&&0===e.button&&(t.window.document.addEventListener(\"mousemove\",this._onMouseMove,!1),t.window.document.addEventListener(\"keydown\",this._onKeyDown,!1),t.window.document.addEventListener(\"mouseup\",this._onMouseUp,!1),r.disableDrag(),this._startPos=this._lastPos=r.mousePos(this._el,e),this._active=!0)},vn.prototype._onMouseMove=function(t){var e=r.mousePos(this._el,t);if(!(this._lastPos.equals(e)||!this._box&&e.dist(this._startPos)<this._clickTolerance)){var n=this._startPos;this._lastPos=e,this._box||(this._box=r.create(\"div\",\"mapboxgl-boxzoom\",this._container),this._container.classList.add(\"mapboxgl-crosshair\"),this._fireEvent(\"boxzoomstart\",t));var a=Math.min(n.x,e.x),i=Math.max(n.x,e.x),o=Math.min(n.y,e.y),s=Math.max(n.y,e.y);r.setTransform(this._box,\"translate(\"+a+\"px,\"+o+\"px)\"),this._box.style.width=i-a+\"px\",this._box.style.height=s-o+\"px\"}},vn.prototype._onMouseUp=function(e){if(0===e.button){var n=this._startPos,a=r.mousePos(this._el,e);this._finish(),r.suppressClick(),n.x===a.x&&n.y===a.y?this._fireEvent(\"boxzoomcancel\",e):this._map.fitScreenCoordinates(n,a,this._map.getBearing(),{linear:!0}).fire(new t.Event(\"boxzoomend\",{originalEvent:e}))}},vn.prototype._onKeyDown=function(t){27===t.keyCode&&(this._finish(),this._fireEvent(\"boxzoomcancel\",t))},vn.prototype._finish=function(){this._active=!1,t.window.document.removeEventListener(\"mousemove\",this._onMouseMove,!1),t.window.document.removeEventListener(\"keydown\",this._onKeyDown,!1),t.window.document.removeEventListener(\"mouseup\",this._onMouseUp,!1),this._container.classList.remove(\"mapboxgl-crosshair\"),this._box&&(r.remove(this._box),this._box=null),r.enableDrag(),delete this._startPos,delete this._lastPos},vn.prototype._fireEvent=function(e,r){return this._map.fire(new t.Event(e,{originalEvent:r}))};var mn=t.bezier(0,0,.25,1),yn=function(e,r){this._map=e,this._el=r.element||e.getCanvasContainer(),this._state=\"disabled\",this._button=r.button||\"right\",this._bearingSnap=r.bearingSnap||0,this._pitchWithRotate=!1!==r.pitchWithRotate,t.bindAll([\"onMouseDown\",\"_onMouseMove\",\"_onMouseUp\",\"_onBlur\",\"_onDragFrame\"],this)};yn.prototype.isEnabled=function(){return\"disabled\"!==this._state},yn.prototype.isActive=function(){return\"active\"===this._state},yn.prototype.enable=function(){this.isEnabled()||(this._state=\"enabled\")},yn.prototype.disable=function(){if(this.isEnabled())switch(this._state){case\"active\":this._state=\"disabled\",this._unbind(),this._deactivate(),this._fireEvent(\"rotateend\"),this._pitchWithRotate&&this._fireEvent(\"pitchend\"),this._fireEvent(\"moveend\");break;case\"pending\":this._state=\"disabled\",this._unbind();break;default:this._state=\"disabled\"}},yn.prototype.onMouseDown=function(e){if(\"enabled\"===this._state){var n=\"touchstart\"===e.type;if(n)this._startTime=Date.now();else if(\"right\"===this._button){if(this._eventButton=r.mouseButton(e),this._eventButton!==(e.ctrlKey?0:2))return}else{if(e.ctrlKey||0!==r.mouseButton(e))return;this._eventButton=0}r.disableDrag(),n?(t.window.document.addEventListener(\"touchmove\",this._onMouseMove,{capture:!0}),t.window.document.addEventListener(\"touchend\",this._onMouseUp)):(t.window.document.addEventListener(\"mousemove\",this._onMouseMove,{capture:!0}),t.window.document.addEventListener(\"mouseup\",this._onMouseUp)),t.window.addEventListener(\"blur\",this._onBlur),this._state=\"pending\",this._inertia=[[t.browser.now(),this._map.getBearing()]],this._startPos=this._prevPos=this._lastPos=r.mousePos(this._el,e),this._center=this._map.transform.centerPoint,e.preventDefault()}},yn.prototype._onMouseMove=function(t){var e=r.mousePos(this._el,t);this._lastPos.equals(e)||(this._lastMoveEvent=t,this._lastPos=e,\"pending\"===this._state&&(this._state=\"active\",this._fireEvent(\"rotatestart\",t),this._fireEvent(\"movestart\",t),this._pitchWithRotate&&this._fireEvent(\"pitchstart\",t)),this._frameId||(this._frameId=this._map._requestRenderFrame(this._onDragFrame)))},yn.prototype._onDragFrame=function(){this._frameId=null;var e=this._lastMoveEvent;if(e){var r=this._map.transform,n=this._prevPos,a=this._lastPos,i=.8*(n.x-a.x),o=-.5*(n.y-a.y),s=r.bearing-i,l=r.pitch-o,c=this._inertia,u=c[c.length-1];this._drainInertiaBuffer(),c.push([t.browser.now(),this._map._normalizeBearing(s,u[1])]),r.bearing=s,this._pitchWithRotate&&(this._fireEvent(\"pitch\",e),r.pitch=l),this._fireEvent(\"rotate\",e),this._fireEvent(\"move\",e),delete this._lastMoveEvent,this._prevPos=this._lastPos}},yn.prototype._onMouseUp=function(t){if(\"touchend\"===t.type&&this._startPos===this._lastPos&&Date.now()-this._startTime<300&&this._el.click(),r.mouseButton(t)===this._eventButton)switch(this._state){case\"active\":this._state=\"enabled\",r.suppressClick(),this._unbind(),this._deactivate(),this._inertialRotate(t);break;case\"pending\":this._state=\"enabled\",this._unbind()}},yn.prototype._onBlur=function(t){switch(this._state){case\"active\":this._state=\"enabled\",this._unbind(),this._deactivate(),this._fireEvent(\"rotateend\",t),this._pitchWithRotate&&this._fireEvent(\"pitchend\",t),this._fireEvent(\"moveend\",t);break;case\"pending\":this._state=\"enabled\",this._unbind()}},yn.prototype._unbind=function(){t.window.document.removeEventListener(\"mousemove\",this._onMouseMove,{capture:!0}),t.window.document.removeEventListener(\"mouseup\",this._onMouseUp),t.window.document.removeEventListener(\"touchmove\",this._onMouseMove,{capture:!0}),t.window.document.removeEventListener(\"touchend\",this._onMouseUp),t.window.removeEventListener(\"blur\",this._onBlur),r.enableDrag()},yn.prototype._deactivate=function(){this._frameId&&(this._map._cancelRenderFrame(this._frameId),this._frameId=null),delete this._lastMoveEvent,delete this._startPos,delete this._prevPos,delete this._lastPos},yn.prototype._inertialRotate=function(t){var e=this;this._fireEvent(\"rotateend\",t),this._drainInertiaBuffer();var r=this._map,n=r.getBearing(),a=this._inertia,i=function(){Math.abs(n)<e._bearingSnap?r.resetNorth({noMoveStart:!0},{originalEvent:t}):e._fireEvent(\"moveend\",t),e._pitchWithRotate&&e._fireEvent(\"pitchend\",t)};if(a.length<2)i();else{var o=a[0],s=a[a.length-1],l=a[a.length-2],c=r._normalizeBearing(n,l[1]),u=s[1]-o[1],h=u<0?-1:1,f=(s[0]-o[0])/1e3;if(0!==u&&0!==f){var p=Math.abs(u*(.25/f));p>180&&(p=180);var d=p/180;c+=h*p*(d/2),Math.abs(r._normalizeBearing(c,0))<this._bearingSnap&&(c=r._normalizeBearing(0,c)),r.rotateTo(c,{duration:1e3*d,easing:mn,noMoveStart:!0},{originalEvent:t})}else i()}},yn.prototype._fireEvent=function(e,r){return this._map.fire(new t.Event(e,r?{originalEvent:r}:{}))},yn.prototype._drainInertiaBuffer=function(){for(var e=this._inertia,r=t.browser.now();e.length>0&&r-e[0][0]>160;)e.shift()};var xn=t.bezier(0,0,.3,1),bn=function(e,r){this._map=e,this._el=e.getCanvasContainer(),this._state=\"disabled\",this._clickTolerance=r.clickTolerance||1,t.bindAll([\"_onMove\",\"_onMouseUp\",\"_onTouchEnd\",\"_onBlur\",\"_onDragFrame\"],this)};bn.prototype.isEnabled=function(){return\"disabled\"!==this._state},bn.prototype.isActive=function(){return\"active\"===this._state},bn.prototype.enable=function(){this.isEnabled()||(this._el.classList.add(\"mapboxgl-touch-drag-pan\"),this._state=\"enabled\")},bn.prototype.disable=function(){if(this.isEnabled())switch(this._el.classList.remove(\"mapboxgl-touch-drag-pan\"),this._state){case\"active\":this._state=\"disabled\",this._unbind(),this._deactivate(),this._fireEvent(\"dragend\"),this._fireEvent(\"moveend\");break;case\"pending\":this._state=\"disabled\",this._unbind();break;default:this._state=\"disabled\"}},bn.prototype.onMouseDown=function(e){\"enabled\"===this._state&&(e.ctrlKey||0!==r.mouseButton(e)||(r.addEventListener(t.window.document,\"mousemove\",this._onMove,{capture:!0}),r.addEventListener(t.window.document,\"mouseup\",this._onMouseUp),this._start(e)))},bn.prototype.onTouchStart=function(e){\"enabled\"===this._state&&(e.touches.length>1||(r.addEventListener(t.window.document,\"touchmove\",this._onMove,{capture:!0,passive:!1}),r.addEventListener(t.window.document,\"touchend\",this._onTouchEnd),this._start(e)))},bn.prototype._start=function(e){t.window.addEventListener(\"blur\",this._onBlur),this._state=\"pending\",this._startPos=this._mouseDownPos=this._prevPos=this._lastPos=r.mousePos(this._el,e),this._inertia=[[t.browser.now(),this._startPos]]},bn.prototype._onMove=function(e){e.preventDefault();var n=r.mousePos(this._el,e);this._lastPos.equals(n)||\"pending\"===this._state&&n.dist(this._mouseDownPos)<this._clickTolerance||(this._lastMoveEvent=e,this._lastPos=n,this._drainInertiaBuffer(),this._inertia.push([t.browser.now(),this._lastPos]),\"pending\"===this._state&&(this._state=\"active\",this._fireEvent(\"dragstart\",e),this._fireEvent(\"movestart\",e)),this._frameId||(this._frameId=this._map._requestRenderFrame(this._onDragFrame)))},bn.prototype._onDragFrame=function(){this._frameId=null;var t=this._lastMoveEvent;if(t){var e=this._map.transform;e.setLocationAtPoint(e.pointLocation(this._prevPos),this._lastPos),this._fireEvent(\"drag\",t),this._fireEvent(\"move\",t),this._prevPos=this._lastPos,delete this._lastMoveEvent}},bn.prototype._onMouseUp=function(t){if(0===r.mouseButton(t))switch(this._state){case\"active\":this._state=\"enabled\",r.suppressClick(),this._unbind(),this._deactivate(),this._inertialPan(t);break;case\"pending\":this._state=\"enabled\",this._unbind()}},bn.prototype._onTouchEnd=function(t){switch(this._state){case\"active\":this._state=\"enabled\",this._unbind(),this._deactivate(),this._inertialPan(t);break;case\"pending\":this._state=\"enabled\",this._unbind()}},bn.prototype._onBlur=function(t){switch(this._state){case\"active\":this._state=\"enabled\",this._unbind(),this._deactivate(),this._fireEvent(\"dragend\",t),this._fireEvent(\"moveend\",t);break;case\"pending\":this._state=\"enabled\",this._unbind()}},bn.prototype._unbind=function(){r.removeEventListener(t.window.document,\"touchmove\",this._onMove,{capture:!0,passive:!1}),r.removeEventListener(t.window.document,\"touchend\",this._onTouchEnd),r.removeEventListener(t.window.document,\"mousemove\",this._onMove,{capture:!0}),r.removeEventListener(t.window.document,\"mouseup\",this._onMouseUp),r.removeEventListener(t.window,\"blur\",this._onBlur)},bn.prototype._deactivate=function(){this._frameId&&(this._map._cancelRenderFrame(this._frameId),this._frameId=null),delete this._lastMoveEvent,delete this._startPos,delete this._prevPos,delete this._mouseDownPos,delete this._lastPos},bn.prototype._inertialPan=function(t){this._fireEvent(\"dragend\",t),this._drainInertiaBuffer();var e=this._inertia;if(e.length<2)this._fireEvent(\"moveend\",t);else{var r=e[e.length-1],n=e[0],a=r[1].sub(n[1]),i=(r[0]-n[0])/1e3;if(0===i||r[1].equals(n[1]))this._fireEvent(\"moveend\",t);else{var o=a.mult(.3/i),s=o.mag();s>1400&&(s=1400,o._unit()._mult(s));var l=s/750,c=o.mult(-l/2);this._map.panBy(c,{duration:1e3*l,easing:xn,noMoveStart:!0},{originalEvent:t})}}},bn.prototype._fireEvent=function(e,r){return this._map.fire(new t.Event(e,r?{originalEvent:r}:{}))},bn.prototype._drainInertiaBuffer=function(){for(var e=this._inertia,r=t.browser.now();e.length>0&&r-e[0][0]>160;)e.shift()};var _n=function(e){this._map=e,this._el=e.getCanvasContainer(),t.bindAll([\"_onKeyDown\"],this)};function wn(t){return t*(2-t)}_n.prototype.isEnabled=function(){return!!this._enabled},_n.prototype.enable=function(){this.isEnabled()||(this._el.addEventListener(\"keydown\",this._onKeyDown,!1),this._enabled=!0)},_n.prototype.disable=function(){this.isEnabled()&&(this._el.removeEventListener(\"keydown\",this._onKeyDown),this._enabled=!1)},_n.prototype._onKeyDown=function(t){if(!(t.altKey||t.ctrlKey||t.metaKey)){var e=0,r=0,n=0,a=0,i=0;switch(t.keyCode){case 61:case 107:case 171:case 187:e=1;break;case 189:case 109:case 173:e=-1;break;case 37:t.shiftKey?r=-1:(t.preventDefault(),a=-1);break;case 39:t.shiftKey?r=1:(t.preventDefault(),a=1);break;case 38:t.shiftKey?n=1:(t.preventDefault(),i=-1);break;case 40:t.shiftKey?n=-1:(i=1,t.preventDefault());break;default:return}var o=this._map,s=o.getZoom(),l={duration:300,delayEndEvents:500,easing:wn,zoom:e?Math.round(s)+e*(t.shiftKey?2:1):s,bearing:o.getBearing()+15*r,pitch:o.getPitch()+10*n,offset:[100*-a,100*-i],center:o.getCenter()};o.easeTo(l,{originalEvent:t})}};var kn=function(e){this._map=e,t.bindAll([\"_onDblClick\",\"_onZoomEnd\"],this)};kn.prototype.isEnabled=function(){return!!this._enabled},kn.prototype.isActive=function(){return!!this._active},kn.prototype.enable=function(){this.isEnabled()||(this._enabled=!0)},kn.prototype.disable=function(){this.isEnabled()&&(this._enabled=!1)},kn.prototype.onTouchStart=function(t){var e=this;if(this.isEnabled()&&!(t.points.length>1))if(this._tapped){var r=t.points[0],n=this._tappedPoint;if(n&&n.dist(r)<=30){t.originalEvent.preventDefault();var a=function(){e._tapped&&e._zoom(t),e._map.off(\"touchcancel\",i),e._resetTapped()},i=function(){e._map.off(\"touchend\",a),e._resetTapped()};this._map.once(\"touchend\",a),this._map.once(\"touchcancel\",i)}else this._resetTapped()}else this._tappedPoint=t.points[0],this._tapped=setTimeout(function(){e._tapped=null,e._tappedPoint=null},300)},kn.prototype._resetTapped=function(){clearTimeout(this._tapped),this._tapped=null,this._tappedPoint=null},kn.prototype.onDblClick=function(t){this.isEnabled()&&(t.originalEvent.preventDefault(),this._zoom(t))},kn.prototype._zoom=function(t){this._active=!0,this._map.on(\"zoomend\",this._onZoomEnd),this._map.zoomTo(this._map.getZoom()+(t.originalEvent.shiftKey?-1:1),{around:t.lngLat},t)},kn.prototype._onZoomEnd=function(){this._active=!1,this._map.off(\"zoomend\",this._onZoomEnd)};var Tn=t.bezier(0,0,.15,1),An=function(e){this._map=e,this._el=e.getCanvasContainer(),t.bindAll([\"_onMove\",\"_onEnd\",\"_onTouchFrame\"],this)};An.prototype.isEnabled=function(){return!!this._enabled},An.prototype.enable=function(t){this.isEnabled()||(this._el.classList.add(\"mapboxgl-touch-zoom-rotate\"),this._enabled=!0,this._aroundCenter=!!t&&\"center\"===t.around)},An.prototype.disable=function(){this.isEnabled()&&(this._el.classList.remove(\"mapboxgl-touch-zoom-rotate\"),this._enabled=!1)},An.prototype.disableRotation=function(){this._rotationDisabled=!0},An.prototype.enableRotation=function(){this._rotationDisabled=!1},An.prototype.onStart=function(e){if(this.isEnabled()&&2===e.touches.length){var n=r.mousePos(this._el,e.touches[0]),a=r.mousePos(this._el,e.touches[1]),i=n.add(a).div(2);this._startVec=n.sub(a),this._startAround=this._map.transform.pointLocation(i),this._gestureIntent=void 0,this._inertia=[],r.addEventListener(t.window.document,\"touchmove\",this._onMove,{passive:!1}),r.addEventListener(t.window.document,\"touchend\",this._onEnd)}},An.prototype._getTouchEventData=function(t){var e=r.mousePos(this._el,t.touches[0]),n=r.mousePos(this._el,t.touches[1]),a=e.sub(n);return{vec:a,center:e.add(n).div(2),scale:a.mag()/this._startVec.mag(),bearing:this._rotationDisabled?0:180*a.angleWith(this._startVec)/Math.PI}},An.prototype._onMove=function(e){if(2===e.touches.length){var r=this._getTouchEventData(e),n=r.vec,a=r.scale,i=r.bearing;if(!this._gestureIntent){var o=this._rotationDisabled&&1!==a||Math.abs(1-a)>.15;Math.abs(i)>10?this._gestureIntent=\"rotate\":o&&(this._gestureIntent=\"zoom\"),this._gestureIntent&&(this._map.fire(new t.Event(this._gestureIntent+\"start\",{originalEvent:e})),this._map.fire(new t.Event(\"movestart\",{originalEvent:e})),this._startVec=n)}this._lastTouchEvent=e,this._frameId||(this._frameId=this._map._requestRenderFrame(this._onTouchFrame)),e.preventDefault()}},An.prototype._onTouchFrame=function(){this._frameId=null;var e=this._gestureIntent;if(e){var r=this._map.transform;this._startScale||(this._startScale=r.scale,this._startBearing=r.bearing);var n=this._getTouchEventData(this._lastTouchEvent),a=n.center,i=n.bearing,o=n.scale,s=r.pointLocation(a),l=r.locationPoint(s);\"rotate\"===e&&(r.bearing=this._startBearing+i),r.zoom=r.scaleZoom(this._startScale*o),r.setLocationAtPoint(this._startAround,l),this._map.fire(new t.Event(e,{originalEvent:this._lastTouchEvent})),this._map.fire(new t.Event(\"move\",{originalEvent:this._lastTouchEvent})),this._drainInertiaBuffer(),this._inertia.push([t.browser.now(),o,a])}},An.prototype._onEnd=function(e){r.removeEventListener(t.window.document,\"touchmove\",this._onMove,{passive:!1}),r.removeEventListener(t.window.document,\"touchend\",this._onEnd);var n=this._gestureIntent,a=this._startScale;if(this._frameId&&(this._map._cancelRenderFrame(this._frameId),this._frameId=null),delete this._gestureIntent,delete this._startScale,delete this._startBearing,delete this._lastTouchEvent,n){this._map.fire(new t.Event(n+\"end\",{originalEvent:e})),this._drainInertiaBuffer();var i=this._inertia,o=this._map;if(i.length<2)o.snapToNorth({},{originalEvent:e});else{var s=i[i.length-1],l=i[0],c=o.transform.scaleZoom(a*s[1]),u=o.transform.scaleZoom(a*l[1]),h=c-u,f=(s[0]-l[0])/1e3,p=s[2];if(0!==f&&c!==u){var d=.15*h/f;Math.abs(d)>2.5&&(d=d>0?2.5:-2.5);var g=1e3*Math.abs(d/(12*.15)),v=c+d*g/2e3;v<0&&(v=0),o.easeTo({zoom:v,duration:g,easing:Tn,around:this._aroundCenter?o.getCenter():o.unproject(p),noMoveStart:!0},{originalEvent:e})}else o.snapToNorth({},{originalEvent:e})}}},An.prototype._drainInertiaBuffer=function(){for(var e=this._inertia,r=t.browser.now();e.length>2&&r-e[0][0]>160;)e.shift()};var Mn={scrollZoom:gn,boxZoom:vn,dragRotate:yn,dragPan:bn,keyboard:_n,doubleClickZoom:kn,touchZoomRotate:An},Sn=function(e){function r(r,n){e.call(this),this._moving=!1,this._zooming=!1,this.transform=r,this._bearingSnap=n.bearingSnap,t.bindAll([\"_renderFrameCallback\"],this)}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.getCenter=function(){return new t.LngLat(this.transform.center.lng,this.transform.center.lat)},r.prototype.setCenter=function(t,e){return this.jumpTo({center:t},e)},r.prototype.panBy=function(e,r,n){return e=t.Point.convert(e).mult(-1),this.panTo(this.transform.center,t.extend({offset:e},r),n)},r.prototype.panTo=function(e,r,n){return this.easeTo(t.extend({center:e},r),n)},r.prototype.getZoom=function(){return this.transform.zoom},r.prototype.setZoom=function(t,e){return this.jumpTo({zoom:t},e),this},r.prototype.zoomTo=function(e,r,n){return this.easeTo(t.extend({zoom:e},r),n)},r.prototype.zoomIn=function(t,e){return this.zoomTo(this.getZoom()+1,t,e),this},r.prototype.zoomOut=function(t,e){return this.zoomTo(this.getZoom()-1,t,e),this},r.prototype.getBearing=function(){return this.transform.bearing},r.prototype.setBearing=function(t,e){return this.jumpTo({bearing:t},e),this},r.prototype.rotateTo=function(e,r,n){return this.easeTo(t.extend({bearing:e},r),n)},r.prototype.resetNorth=function(e,r){return this.rotateTo(0,t.extend({duration:1e3},e),r),this},r.prototype.resetNorthPitch=function(e,r){return this.easeTo(t.extend({bearing:0,pitch:0,duration:1e3},e),r),this},r.prototype.snapToNorth=function(t,e){return Math.abs(this.getBearing())<this._bearingSnap?this.resetNorth(t,e):this},r.prototype.getPitch=function(){return this.transform.pitch},r.prototype.setPitch=function(t,e){return this.jumpTo({pitch:t},e),this},r.prototype.cameraForBounds=function(e,r){return e=t.LngLatBounds.convert(e),this._cameraForBoxAndBearing(e.getNorthWest(),e.getSouthEast(),0,r)},r.prototype._cameraForBoxAndBearing=function(e,r,n,a){if(\"number\"==typeof(a=t.extend({padding:{top:0,bottom:0,right:0,left:0},offset:[0,0],maxZoom:this.transform.maxZoom},a)).padding){var i=a.padding;a.padding={top:i,bottom:i,right:i,left:i}}if(t.deepEqual(Object.keys(a.padding).sort(function(t,e){return t<e?-1:t>e?1:0}),[\"bottom\",\"left\",\"right\",\"top\"])){var o=this.transform,s=o.project(t.LngLat.convert(e)),l=o.project(t.LngLat.convert(r)),c=s.rotate(-n*Math.PI/180),u=l.rotate(-n*Math.PI/180),h=new t.Point(Math.max(c.x,u.x),Math.max(c.y,u.y)),f=new t.Point(Math.min(c.x,u.x),Math.min(c.y,u.y)),p=h.sub(f),d=(o.width-a.padding.left-a.padding.right)/p.x,g=(o.height-a.padding.top-a.padding.bottom)/p.y;if(!(g<0||d<0)){var v=Math.min(o.scaleZoom(o.scale*Math.min(d,g)),a.maxZoom),m=t.Point.convert(a.offset),y=(a.padding.left-a.padding.right)/2,x=(a.padding.top-a.padding.bottom)/2,b=new t.Point(m.x+y,m.y+x).mult(o.scale/o.zoomScale(v));return{center:o.unproject(s.add(l).div(2).sub(b)),zoom:v,bearing:n}}t.warnOnce(\"Map cannot fit within canvas with the given bounds, padding, and/or offset.\")}else t.warnOnce(\"options.padding must be a positive number, or an Object with keys 'bottom', 'left', 'right', 'top'\")},r.prototype.fitBounds=function(t,e,r){return this._fitInternal(this.cameraForBounds(t,e),e,r)},r.prototype.fitScreenCoordinates=function(e,r,n,a,i){return this._fitInternal(this._cameraForBoxAndBearing(this.transform.pointLocation(t.Point.convert(e)),this.transform.pointLocation(t.Point.convert(r)),n,a),a,i)},r.prototype._fitInternal=function(e,r,n){return e?(r=t.extend(e,r)).linear?this.easeTo(r,n):this.flyTo(r,n):this},r.prototype.jumpTo=function(e,r){this.stop();var n=this.transform,a=!1,i=!1,o=!1;return\"zoom\"in e&&n.zoom!==+e.zoom&&(a=!0,n.zoom=+e.zoom),void 0!==e.center&&(n.center=t.LngLat.convert(e.center)),\"bearing\"in e&&n.bearing!==+e.bearing&&(i=!0,n.bearing=+e.bearing),\"pitch\"in e&&n.pitch!==+e.pitch&&(o=!0,n.pitch=+e.pitch),this.fire(new t.Event(\"movestart\",r)).fire(new t.Event(\"move\",r)),a&&this.fire(new t.Event(\"zoomstart\",r)).fire(new t.Event(\"zoom\",r)).fire(new t.Event(\"zoomend\",r)),i&&this.fire(new t.Event(\"rotatestart\",r)).fire(new t.Event(\"rotate\",r)).fire(new t.Event(\"rotateend\",r)),o&&this.fire(new t.Event(\"pitchstart\",r)).fire(new t.Event(\"pitch\",r)).fire(new t.Event(\"pitchend\",r)),this.fire(new t.Event(\"moveend\",r))},r.prototype.easeTo=function(e,r){var n=this;this.stop(),(!1===(e=t.extend({offset:[0,0],duration:500,easing:t.ease},e)).animate||t.browser.prefersReducedMotion)&&(e.duration=0);var a=this.transform,i=this.getZoom(),o=this.getBearing(),s=this.getPitch(),l=\"zoom\"in e?+e.zoom:i,c=\"bearing\"in e?this._normalizeBearing(e.bearing,o):o,u=\"pitch\"in e?+e.pitch:s,h=a.centerPoint.add(t.Point.convert(e.offset)),f=a.pointLocation(h),p=t.LngLat.convert(e.center||f);this._normalizeCenter(p);var d,g,v=a.project(f),m=a.project(p).sub(v),y=a.zoomScale(l-i);return e.around&&(d=t.LngLat.convert(e.around),g=a.locationPoint(d)),this._zooming=l!==i,this._rotating=o!==c,this._pitching=u!==s,this._prepareEase(r,e.noMoveStart),clearTimeout(this._easeEndTimeoutID),this._ease(function(e){if(n._zooming&&(a.zoom=t.number(i,l,e)),n._rotating&&(a.bearing=t.number(o,c,e)),n._pitching&&(a.pitch=t.number(s,u,e)),d)a.setLocationAtPoint(d,g);else{var f=a.zoomScale(a.zoom-i),p=l>i?Math.min(2,y):Math.max(.5,y),x=Math.pow(p,1-e),b=a.unproject(v.add(m.mult(e*x)).mult(f));a.setLocationAtPoint(a.renderWorldCopies?b.wrap():b,h)}n._fireMoveEvents(r)},function(){e.delayEndEvents?n._easeEndTimeoutID=setTimeout(function(){return n._afterEase(r)},e.delayEndEvents):n._afterEase(r)},e),this},r.prototype._prepareEase=function(e,r){this._moving=!0,r||this.fire(new t.Event(\"movestart\",e)),this._zooming&&this.fire(new t.Event(\"zoomstart\",e)),this._rotating&&this.fire(new t.Event(\"rotatestart\",e)),this._pitching&&this.fire(new t.Event(\"pitchstart\",e))},r.prototype._fireMoveEvents=function(e){this.fire(new t.Event(\"move\",e)),this._zooming&&this.fire(new t.Event(\"zoom\",e)),this._rotating&&this.fire(new t.Event(\"rotate\",e)),this._pitching&&this.fire(new t.Event(\"pitch\",e))},r.prototype._afterEase=function(e){var r=this._zooming,n=this._rotating,a=this._pitching;this._moving=!1,this._zooming=!1,this._rotating=!1,this._pitching=!1,r&&this.fire(new t.Event(\"zoomend\",e)),n&&this.fire(new t.Event(\"rotateend\",e)),a&&this.fire(new t.Event(\"pitchend\",e)),this.fire(new t.Event(\"moveend\",e))},r.prototype.flyTo=function(e,r){var n=this;if(t.browser.prefersReducedMotion){var a=t.pick(e,[\"center\",\"zoom\",\"bearing\",\"pitch\",\"around\"]);return this.jumpTo(a,r)}this.stop(),e=t.extend({offset:[0,0],speed:1.2,curve:1.42,easing:t.ease},e);var i=this.transform,o=this.getZoom(),s=this.getBearing(),l=this.getPitch(),c=\"zoom\"in e?t.clamp(+e.zoom,i.minZoom,i.maxZoom):o,u=\"bearing\"in e?this._normalizeBearing(e.bearing,s):s,h=\"pitch\"in e?+e.pitch:l,f=i.zoomScale(c-o),p=i.centerPoint.add(t.Point.convert(e.offset)),d=i.pointLocation(p),g=t.LngLat.convert(e.center||d);this._normalizeCenter(g);var v=i.project(d),m=i.project(g).sub(v),y=e.curve,x=Math.max(i.width,i.height),b=x/f,_=m.mag();if(\"minZoom\"in e){var w=t.clamp(Math.min(e.minZoom,o,c),i.minZoom,i.maxZoom),k=x/i.zoomScale(w-o);y=Math.sqrt(k/_*2)}var T=y*y;function A(t){var e=(b*b-x*x+(t?-1:1)*T*T*_*_)/(2*(t?b:x)*T*_);return Math.log(Math.sqrt(e*e+1)-e)}function M(t){return(Math.exp(t)-Math.exp(-t))/2}function S(t){return(Math.exp(t)+Math.exp(-t))/2}var E=A(0),C=function(t){return S(E)/S(E+y*t)},L=function(t){return x*((S(E)*(M(e=E+y*t)/S(e))-M(E))/T)/_;var e},P=(A(1)-E)/y;if(Math.abs(_)<1e-6||!isFinite(P)){if(Math.abs(x-b)<1e-6)return this.easeTo(e,r);var O=b<x?-1:1;P=Math.abs(Math.log(b/x))/y,L=function(){return 0},C=function(t){return Math.exp(O*y*t)}}if(\"duration\"in e)e.duration=+e.duration;else{var I=\"screenSpeed\"in e?+e.screenSpeed/y:+e.speed;e.duration=1e3*P/I}return e.maxDuration&&e.duration>e.maxDuration&&(e.duration=0),this._zooming=!0,this._rotating=s!==u,this._pitching=h!==l,this._prepareEase(r,!1),this._ease(function(e){var a=e*P,f=1/C(a);i.zoom=1===e?c:o+i.scaleZoom(f),n._rotating&&(i.bearing=t.number(s,u,e)),n._pitching&&(i.pitch=t.number(l,h,e));var d=1===e?g:i.unproject(v.add(m.mult(L(a))).mult(f));i.setLocationAtPoint(i.renderWorldCopies?d.wrap():d,p),n._fireMoveEvents(r)},function(){return n._afterEase(r)},e),this},r.prototype.isEasing=function(){return!!this._easeFrameId},r.prototype.stop=function(){if(this._easeFrameId&&(this._cancelRenderFrame(this._easeFrameId),delete this._easeFrameId,delete this._onEaseFrame),this._onEaseEnd){var t=this._onEaseEnd;delete this._onEaseEnd,t.call(this)}return this},r.prototype._ease=function(e,r,n){!1===n.animate||0===n.duration?(e(1),r()):(this._easeStart=t.browser.now(),this._easeOptions=n,this._onEaseFrame=e,this._onEaseEnd=r,this._easeFrameId=this._requestRenderFrame(this._renderFrameCallback))},r.prototype._renderFrameCallback=function(){var e=Math.min((t.browser.now()-this._easeStart)/this._easeOptions.duration,1);this._onEaseFrame(this._easeOptions.easing(e)),e<1?this._easeFrameId=this._requestRenderFrame(this._renderFrameCallback):this.stop()},r.prototype._normalizeBearing=function(e,r){e=t.wrap(e,-180,180);var n=Math.abs(e-r);return Math.abs(e-360-r)<n&&(e-=360),Math.abs(e+360-r)<n&&(e+=360),e},r.prototype._normalizeCenter=function(t){var e=this.transform;if(e.renderWorldCopies&&!e.lngRange){var r=t.lng-e.center.lng;t.lng+=r>180?-360:r<-180?360:0}},r}(t.Evented),En=function(e){void 0===e&&(e={}),this.options=e,t.bindAll([\"_updateEditLink\",\"_updateData\",\"_updateCompact\"],this)};En.prototype.getDefaultPosition=function(){return\"bottom-right\"},En.prototype.onAdd=function(t){var e=this.options&&this.options.compact;return this._map=t,this._container=r.create(\"div\",\"mapboxgl-ctrl mapboxgl-ctrl-attrib\"),this._innerContainer=r.create(\"div\",\"mapboxgl-ctrl-attrib-inner\",this._container),e&&this._container.classList.add(\"mapboxgl-compact\"),this._updateAttributions(),this._updateEditLink(),this._map.on(\"styledata\",this._updateData),this._map.on(\"sourcedata\",this._updateData),this._map.on(\"moveend\",this._updateEditLink),void 0===e&&(this._map.on(\"resize\",this._updateCompact),this._updateCompact()),this._container},En.prototype.onRemove=function(){r.remove(this._container),this._map.off(\"styledata\",this._updateData),this._map.off(\"sourcedata\",this._updateData),this._map.off(\"moveend\",this._updateEditLink),this._map.off(\"resize\",this._updateCompact),this._map=void 0},En.prototype._updateEditLink=function(){var e=this._editLink;e||(e=this._editLink=this._container.querySelector(\".mapbox-improve-map\"));var r=[{key:\"owner\",value:this.styleOwner},{key:\"id\",value:this.styleId},{key:\"access_token\",value:this._map._requestManager._customAccessToken||t.config.ACCESS_TOKEN}];if(e){var n=r.reduce(function(t,e,n){return e.value&&(t+=e.key+\"=\"+e.value+(n<r.length-1?\"&\":\"\")),t},\"?\");e.href=t.config.FEEDBACK_URL+\"/\"+n+(this._map._hash?this._map._hash.getHashString(!0):\"\"),e.rel=\"noopener nofollow\"}},En.prototype._updateData=function(t){!t||\"metadata\"!==t.sourceDataType&&\"style\"!==t.dataType||(this._updateAttributions(),this._updateEditLink())},En.prototype._updateAttributions=function(){if(this._map.style){var t=[];if(this.options.customAttribution&&(Array.isArray(this.options.customAttribution)?t=t.concat(this.options.customAttribution.map(function(t){return\"string\"!=typeof t?\"\":t})):\"string\"==typeof this.options.customAttribution&&t.push(this.options.customAttribution)),this._map.style.stylesheet){var e=this._map.style.stylesheet;this.styleOwner=e.owner,this.styleId=e.id}var r=this._map.style.sourceCaches;for(var n in r){var a=r[n];if(a.used){var i=a.getSource();i.attribution&&t.indexOf(i.attribution)<0&&t.push(i.attribution)}}t.sort(function(t,e){return t.length-e.length});var o=(t=t.filter(function(e,r){for(var n=r+1;n<t.length;n++)if(t[n].indexOf(e)>=0)return!1;return!0})).join(\" | \");o!==this._attribHTML&&(this._attribHTML=o,t.length?(this._innerContainer.innerHTML=o,this._container.classList.remove(\"mapboxgl-attrib-empty\")):this._container.classList.add(\"mapboxgl-attrib-empty\"),this._editLink=null)}},En.prototype._updateCompact=function(){this._map.getCanvasContainer().offsetWidth<=640?this._container.classList.add(\"mapboxgl-compact\"):this._container.classList.remove(\"mapboxgl-compact\")};var Cn=function(){t.bindAll([\"_updateLogo\"],this),t.bindAll([\"_updateCompact\"],this)};Cn.prototype.onAdd=function(t){this._map=t,this._container=r.create(\"div\",\"mapboxgl-ctrl\");var e=r.create(\"a\",\"mapboxgl-ctrl-logo\");return e.target=\"_blank\",e.rel=\"noopener nofollow\",e.href=\"https://www.mapbox.com/\",e.setAttribute(\"aria-label\",\"Mapbox logo\"),e.setAttribute(\"rel\",\"noopener nofollow\"),this._container.appendChild(e),this._container.style.display=\"none\",this._map.on(\"sourcedata\",this._updateLogo),this._updateLogo(),this._map.on(\"resize\",this._updateCompact),this._updateCompact(),this._container},Cn.prototype.onRemove=function(){r.remove(this._container),this._map.off(\"sourcedata\",this._updateLogo),this._map.off(\"resize\",this._updateCompact)},Cn.prototype.getDefaultPosition=function(){return\"bottom-left\"},Cn.prototype._updateLogo=function(t){t&&\"metadata\"!==t.sourceDataType||(this._container.style.display=this._logoRequired()?\"block\":\"none\")},Cn.prototype._logoRequired=function(){if(this._map.style){var t=this._map.style.sourceCaches;for(var e in t)if(t[e].getSource().mapbox_logo)return!0;return!1}},Cn.prototype._updateCompact=function(){var t=this._container.children;if(t.length){var e=t[0];this._map.getCanvasContainer().offsetWidth<250?e.classList.add(\"mapboxgl-compact\"):e.classList.remove(\"mapboxgl-compact\")}};var Ln=function(){this._queue=[],this._id=0,this._cleared=!1,this._currentlyRunning=!1};Ln.prototype.add=function(t){var e=++this._id;return this._queue.push({callback:t,id:e,cancelled:!1}),e},Ln.prototype.remove=function(t){for(var e=this._currentlyRunning,r=0,n=e?this._queue.concat(e):this._queue;r<n.length;r+=1){var a=n[r];if(a.id===t)return void(a.cancelled=!0)}},Ln.prototype.run=function(){var t=this._currentlyRunning=this._queue;this._queue=[];for(var e=0,r=t;e<r.length;e+=1){var n=r[e];if(!n.cancelled&&(n.callback(),this._cleared))break}this._cleared=!1,this._currentlyRunning=!1},Ln.prototype.clear=function(){this._currentlyRunning&&(this._cleared=!0),this._queue=[]};var Pn=t.window.HTMLImageElement,On=t.window.HTMLElement,In={center:[0,0],zoom:0,bearing:0,pitch:0,minZoom:0,maxZoom:22,interactive:!0,scrollZoom:!0,boxZoom:!0,dragRotate:!0,dragPan:!0,keyboard:!0,doubleClickZoom:!0,touchZoomRotate:!0,bearingSnap:7,clickTolerance:3,hash:!1,attributionControl:!0,failIfMajorPerformanceCaveat:!1,preserveDrawingBuffer:!1,trackResize:!0,renderWorldCopies:!0,refreshExpiredTiles:!0,maxTileCacheSize:null,localIdeographFontFamily:\"sans-serif\",transformRequest:null,accessToken:null,fadeDuration:300,crossSourceCollisions:!0},zn=function(n){function a(e){var a=this;if(null!=(e=t.extend({},In,e)).minZoom&&null!=e.maxZoom&&e.minZoom>e.maxZoom)throw new Error(\"maxZoom must be greater than minZoom\");var i=new cn(e.minZoom,e.maxZoom,e.renderWorldCopies);if(n.call(this,i,e),this._interactive=e.interactive,this._maxTileCacheSize=e.maxTileCacheSize,this._failIfMajorPerformanceCaveat=e.failIfMajorPerformanceCaveat,this._preserveDrawingBuffer=e.preserveDrawingBuffer,this._antialias=e.antialias,this._trackResize=e.trackResize,this._bearingSnap=e.bearingSnap,this._refreshExpiredTiles=e.refreshExpiredTiles,this._fadeDuration=e.fadeDuration,this._crossSourceCollisions=e.crossSourceCollisions,this._crossFadingFactor=1,this._collectResourceTiming=e.collectResourceTiming,this._renderTaskQueue=new Ln,this._controls=[],this._mapId=t.uniqueId(),this._requestManager=new t.RequestManager(e.transformRequest,e.accessToken),\"string\"==typeof e.container){if(this._container=t.window.document.getElementById(e.container),!this._container)throw new Error(\"Container '\"+e.container+\"' not found.\")}else{if(!(e.container instanceof On))throw new Error(\"Invalid type: 'container' must be a String or HTMLElement.\");this._container=e.container}if(e.maxBounds&&this.setMaxBounds(e.maxBounds),t.bindAll([\"_onWindowOnline\",\"_onWindowResize\",\"_contextLost\",\"_contextRestored\"],this),this._setupContainer(),this._setupPainter(),void 0===this.painter)throw new Error(\"Failed to initialize WebGL.\");this.on(\"move\",function(){return a._update(!1)}),this.on(\"moveend\",function(){return a._update(!1)}),this.on(\"zoom\",function(){return a._update(!0)}),void 0!==t.window&&(t.window.addEventListener(\"online\",this._onWindowOnline,!1),t.window.addEventListener(\"resize\",this._onWindowResize,!1)),function(t,e){var n=t.getCanvasContainer(),a=null,i=!1,o=null;for(var s in Mn)t[s]=new Mn[s](t,e),e.interactive&&e[s]&&t[s].enable(e[s]);r.addEventListener(n,\"mouseout\",function(e){t.fire(new fn(\"mouseout\",t,e))}),r.addEventListener(n,\"mousedown\",function(a){i=!0,o=r.mousePos(n,a);var s=new fn(\"mousedown\",t,a);t.fire(s),s.defaultPrevented||(e.interactive&&!t.doubleClickZoom.isActive()&&t.stop(),t.boxZoom.onMouseDown(a),t.boxZoom.isActive()||t.dragPan.isActive()||t.dragRotate.onMouseDown(a),t.boxZoom.isActive()||t.dragRotate.isActive()||t.dragPan.onMouseDown(a))}),r.addEventListener(n,\"mouseup\",function(e){var r=t.dragRotate.isActive();a&&!r&&t.fire(new fn(\"contextmenu\",t,a)),a=null,i=!1,t.fire(new fn(\"mouseup\",t,e))}),r.addEventListener(n,\"mousemove\",function(e){if(!t.dragPan.isActive()&&!t.dragRotate.isActive()){for(var r=e.target;r&&r!==n;)r=r.parentNode;r===n&&t.fire(new fn(\"mousemove\",t,e))}}),r.addEventListener(n,\"mouseover\",function(e){for(var r=e.target;r&&r!==n;)r=r.parentNode;r===n&&t.fire(new fn(\"mouseover\",t,e))}),r.addEventListener(n,\"touchstart\",function(r){var n=new pn(\"touchstart\",t,r);t.fire(n),n.defaultPrevented||(e.interactive&&t.stop(),t.boxZoom.isActive()||t.dragRotate.isActive()||t.dragPan.onTouchStart(r),t.touchZoomRotate.onStart(r),t.doubleClickZoom.onTouchStart(n))},{passive:!1}),r.addEventListener(n,\"touchmove\",function(e){t.fire(new pn(\"touchmove\",t,e))},{passive:!1}),r.addEventListener(n,\"touchend\",function(e){t.fire(new pn(\"touchend\",t,e))}),r.addEventListener(n,\"touchcancel\",function(e){t.fire(new pn(\"touchcancel\",t,e))}),r.addEventListener(n,\"click\",function(a){var i=r.mousePos(n,a);(!o||i.equals(o)||i.dist(o)<e.clickTolerance)&&t.fire(new fn(\"click\",t,a))}),r.addEventListener(n,\"dblclick\",function(e){var r=new fn(\"dblclick\",t,e);t.fire(r),r.defaultPrevented||t.doubleClickZoom.onDblClick(r)}),r.addEventListener(n,\"contextmenu\",function(e){var r=t.dragRotate.isActive();i||r?i&&(a=e):t.fire(new fn(\"contextmenu\",t,e)),(t.dragRotate.isEnabled()||t.listens(\"contextmenu\"))&&e.preventDefault()}),r.addEventListener(n,\"wheel\",function(r){e.interactive&&t.stop();var n=new dn(\"wheel\",t,r);t.fire(n),n.defaultPrevented||t.scrollZoom.onWheel(r)},{passive:!1})}(this,e),this._hash=e.hash&&(new hn).addTo(this),this._hash&&this._hash._onHashChange()||(this.jumpTo({center:e.center,zoom:e.zoom,bearing:e.bearing,pitch:e.pitch}),e.bounds&&(this.resize(),this.fitBounds(e.bounds,t.extend({},e.fitBoundsOptions,{duration:0})))),this.resize(),this._localIdeographFontFamily=e.localIdeographFontFamily,e.style&&this.setStyle(e.style,{localIdeographFontFamily:e.localIdeographFontFamily}),e.attributionControl&&this.addControl(new En({customAttribution:e.customAttribution})),this.addControl(new Cn,e.logoPosition),this.on(\"style.load\",function(){a.transform.unmodified&&a.jumpTo(a.style.stylesheet)}),this.on(\"data\",function(e){a._update(\"style\"===e.dataType),a.fire(new t.Event(e.dataType+\"data\",e))}),this.on(\"dataloading\",function(e){a.fire(new t.Event(e.dataType+\"dataloading\",e))})}n&&(a.__proto__=n),a.prototype=Object.create(n&&n.prototype),a.prototype.constructor=a;var i={showTileBoundaries:{configurable:!0},showCollisionBoxes:{configurable:!0},showOverdrawInspector:{configurable:!0},repaint:{configurable:!0},vertices:{configurable:!0},version:{configurable:!0}};return a.prototype._getMapId=function(){return this._mapId},a.prototype.addControl=function(e,r){if(void 0===r&&e.getDefaultPosition&&(r=e.getDefaultPosition()),void 0===r&&(r=\"top-right\"),!e||!e.onAdd)return this.fire(new t.ErrorEvent(new Error(\"Invalid argument to map.addControl(). Argument must be a control with onAdd and onRemove methods.\")));var n=e.onAdd(this);this._controls.push(e);var a=this._controlPositions[r];return-1!==r.indexOf(\"bottom\")?a.insertBefore(n,a.firstChild):a.appendChild(n),this},a.prototype.removeControl=function(e){if(!e||!e.onRemove)return this.fire(new t.ErrorEvent(new Error(\"Invalid argument to map.removeControl(). Argument must be a control with onAdd and onRemove methods.\")));var r=this._controls.indexOf(e);return r>-1&&this._controls.splice(r,1),e.onRemove(this),this},a.prototype.resize=function(e){var r=this._containerDimensions(),n=r[0],a=r[1];return this._resizeCanvas(n,a),this.transform.resize(n,a),this.painter.resize(n,a),this.fire(new t.Event(\"movestart\",e)).fire(new t.Event(\"move\",e)).fire(new t.Event(\"resize\",e)).fire(new t.Event(\"moveend\",e)),this},a.prototype.getBounds=function(){return this.transform.getBounds()},a.prototype.getMaxBounds=function(){return this.transform.getMaxBounds()},a.prototype.setMaxBounds=function(e){return this.transform.setMaxBounds(t.LngLatBounds.convert(e)),this._update()},a.prototype.setMinZoom=function(t){if((t=null==t?0:t)>=0&&t<=this.transform.maxZoom)return this.transform.minZoom=t,this._update(),this.getZoom()<t&&this.setZoom(t),this;throw new Error(\"minZoom must be between 0 and the current maxZoom, inclusive\")},a.prototype.getMinZoom=function(){return this.transform.minZoom},a.prototype.setMaxZoom=function(t){if((t=null==t?22:t)>=this.transform.minZoom)return this.transform.maxZoom=t,this._update(),this.getZoom()>t&&this.setZoom(t),this;throw new Error(\"maxZoom must be greater than the current minZoom\")},a.prototype.getRenderWorldCopies=function(){return this.transform.renderWorldCopies},a.prototype.setRenderWorldCopies=function(t){return this.transform.renderWorldCopies=t,this._update()},a.prototype.getMaxZoom=function(){return this.transform.maxZoom},a.prototype.project=function(e){return this.transform.locationPoint(t.LngLat.convert(e))},a.prototype.unproject=function(e){return this.transform.pointLocation(t.Point.convert(e))},a.prototype.isMoving=function(){return this._moving||this.dragPan.isActive()||this.dragRotate.isActive()||this.scrollZoom.isActive()},a.prototype.isZooming=function(){return this._zooming||this.scrollZoom.isZooming()},a.prototype.isRotating=function(){return this._rotating||this.dragRotate.isActive()},a.prototype.on=function(t,e,r){var a=this;if(void 0===r)return n.prototype.on.call(this,t,e);var i=function(){var n;if(\"mouseenter\"===t||\"mouseover\"===t){var i=!1;return{layer:e,listener:r,delegates:{mousemove:function(n){var o=a.getLayer(e)?a.queryRenderedFeatures(n.point,{layers:[e]}):[];o.length?i||(i=!0,r.call(a,new fn(t,a,n.originalEvent,{features:o}))):i=!1},mouseout:function(){i=!1}}}}if(\"mouseleave\"===t||\"mouseout\"===t){var o=!1;return{layer:e,listener:r,delegates:{mousemove:function(n){(a.getLayer(e)?a.queryRenderedFeatures(n.point,{layers:[e]}):[]).length?o=!0:o&&(o=!1,r.call(a,new fn(t,a,n.originalEvent)))},mouseout:function(e){o&&(o=!1,r.call(a,new fn(t,a,e.originalEvent)))}}}}return{layer:e,listener:r,delegates:(n={},n[t]=function(t){var n=a.getLayer(e)?a.queryRenderedFeatures(t.point,{layers:[e]}):[];n.length&&(t.features=n,r.call(a,t),delete t.features)},n)}}();for(var o in this._delegatedListeners=this._delegatedListeners||{},this._delegatedListeners[t]=this._delegatedListeners[t]||[],this._delegatedListeners[t].push(i),i.delegates)this.on(o,i.delegates[o]);return this},a.prototype.off=function(t,e,r){if(void 0===r)return n.prototype.off.call(this,t,e);if(this._delegatedListeners&&this._delegatedListeners[t])for(var a=this._delegatedListeners[t],i=0;i<a.length;i++){var o=a[i];if(o.layer===e&&o.listener===r){for(var s in o.delegates)this.off(s,o.delegates[s]);return a.splice(i,1),this}}return this},a.prototype.queryRenderedFeatures=function(e,r){if(!this.style)return[];var n;if(void 0!==r||void 0===e||e instanceof t.Point||Array.isArray(e)||(r=e,e=void 0),r=r||{},(e=e||[[0,0],[this.transform.width,this.transform.height]])instanceof t.Point||\"number\"==typeof e[0])n=[t.Point.convert(e)];else{var a=t.Point.convert(e[0]),i=t.Point.convert(e[1]);n=[a,new t.Point(i.x,a.y),i,new t.Point(a.x,i.y),a]}return this.style.queryRenderedFeatures(n,r,this.transform)},a.prototype.querySourceFeatures=function(t,e){return this.style.querySourceFeatures(t,e)},a.prototype.setStyle=function(e,r){return!1!==(r=t.extend({},{localIdeographFontFamily:this._localIdeographFontFamily},r)).diff&&r.localIdeographFontFamily===this._localIdeographFontFamily&&this.style&&e?(this._diffStyle(e,r),this):(this._localIdeographFontFamily=r.localIdeographFontFamily,this._updateStyle(e,r))},a.prototype._updateStyle=function(t,e){return this.style&&(this.style.setEventedParent(null),this.style._remove()),t?(this.style=new Re(this,e||{}),this.style.setEventedParent(this,{style:this.style}),\"string\"==typeof t?this.style.loadURL(t):this.style.loadJSON(t),this):(delete this.style,this)},a.prototype._diffStyle=function(e,r){var n=this;if(\"string\"==typeof e){var a=this._requestManager.normalizeStyleURL(e),i=this._requestManager.transformRequest(a,t.ResourceType.Style);t.getJSON(i,function(e,a){e?n.fire(new t.ErrorEvent(e)):a&&n._updateDiff(a,r)})}else\"object\"==typeof e&&this._updateDiff(e,r)},a.prototype._updateDiff=function(e,r){try{this.style.setState(e)&&this._update(!0)}catch(n){t.warnOnce(\"Unable to perform style diff: \"+(n.message||n.error||n)+\".  Rebuilding the style from scratch.\"),this._updateStyle(e,r)}},a.prototype.getStyle=function(){if(this.style)return this.style.serialize()},a.prototype.isStyleLoaded=function(){return this.style?this.style.loaded():t.warnOnce(\"There is no style added to the map.\")},a.prototype.addSource=function(t,e){return this.style.addSource(t,e),this._update(!0)},a.prototype.isSourceLoaded=function(e){var r=this.style&&this.style.sourceCaches[e];if(void 0!==r)return r.loaded();this.fire(new t.ErrorEvent(new Error(\"There is no source with ID '\"+e+\"'\")))},a.prototype.areTilesLoaded=function(){var t=this.style&&this.style.sourceCaches;for(var e in t){var r=t[e]._tiles;for(var n in r){var a=r[n];if(\"loaded\"!==a.state&&\"errored\"!==a.state)return!1}}return!0},a.prototype.addSourceType=function(t,e,r){return this.style.addSourceType(t,e,r)},a.prototype.removeSource=function(t){return this.style.removeSource(t),this._update(!0)},a.prototype.getSource=function(t){return this.style.getSource(t)},a.prototype.addImage=function(e,r,n){void 0===n&&(n={});var a=n.pixelRatio;void 0===a&&(a=1);var i=n.sdf;if(void 0===i&&(i=!1),r instanceof Pn){var o=t.browser.getImageData(r),s=o.width,l=o.height,c=o.data;this.style.addImage(e,{data:new t.RGBAImage({width:s,height:l},c),pixelRatio:a,sdf:i,version:0})}else{if(void 0===r.width||void 0===r.height)return this.fire(new t.ErrorEvent(new Error(\"Invalid arguments to map.addImage(). The second argument must be an `HTMLImageElement`, `ImageData`, or object with `width`, `height`, and `data` properties with the same format as `ImageData`\")));var u=r.width,h=r.height,f=r.data,p=r;this.style.addImage(e,{data:new t.RGBAImage({width:u,height:h},new Uint8Array(f)),pixelRatio:a,sdf:i,version:0,userImage:p}),p.onAdd&&p.onAdd(this,e)}},a.prototype.updateImage=function(e,r){var n=this.style.getImage(e);if(!n)return this.fire(new t.ErrorEvent(new Error(\"The map has no image with that id. If you are adding a new image use `map.addImage(...)` instead.\")));var a=r instanceof Pn?t.browser.getImageData(r):r,i=a.width,o=a.height,s=a.data;if(void 0===i||void 0===o)return this.fire(new t.ErrorEvent(new Error(\"Invalid arguments to map.updateImage(). The second argument must be an `HTMLImageElement`, `ImageData`, or object with `width`, `height`, and `data` properties with the same format as `ImageData`\")));if(i!==n.data.width||o!==n.data.height)return this.fire(new t.ErrorEvent(new Error(\"The width and height of the updated image must be that same as the previous version of the image\")));var l=!(r instanceof Pn);n.data.replace(s,l),this.style.updateImage(e,n)},a.prototype.hasImage=function(e){return e?!!this.style.getImage(e):(this.fire(new t.ErrorEvent(new Error(\"Missing required image id\"))),!1)},a.prototype.removeImage=function(t){this.style.removeImage(t)},a.prototype.loadImage=function(e,r){t.getImage(this._requestManager.transformRequest(e,t.ResourceType.Image),r)},a.prototype.listImages=function(){return this.style.listImages()},a.prototype.addLayer=function(t,e){return this.style.addLayer(t,e),this._update(!0)},a.prototype.moveLayer=function(t,e){return this.style.moveLayer(t,e),this._update(!0)},a.prototype.removeLayer=function(t){return this.style.removeLayer(t),this._update(!0)},a.prototype.getLayer=function(t){return this.style.getLayer(t)},a.prototype.setFilter=function(t,e,r){return void 0===r&&(r={}),this.style.setFilter(t,e,r),this._update(!0)},a.prototype.setLayerZoomRange=function(t,e,r){return this.style.setLayerZoomRange(t,e,r),this._update(!0)},a.prototype.getFilter=function(t){return this.style.getFilter(t)},a.prototype.setPaintProperty=function(t,e,r,n){return void 0===n&&(n={}),this.style.setPaintProperty(t,e,r,n),this._update(!0)},a.prototype.getPaintProperty=function(t,e){return this.style.getPaintProperty(t,e)},a.prototype.setLayoutProperty=function(t,e,r,n){return void 0===n&&(n={}),this.style.setLayoutProperty(t,e,r,n),this._update(!0)},a.prototype.getLayoutProperty=function(t,e){return this.style.getLayoutProperty(t,e)},a.prototype.setLight=function(t,e){return void 0===e&&(e={}),this.style.setLight(t,e),this._update(!0)},a.prototype.getLight=function(){return this.style.getLight()},a.prototype.setFeatureState=function(t,e){return this.style.setFeatureState(t,e),this._update()},a.prototype.removeFeatureState=function(t,e){return this.style.removeFeatureState(t,e),this._update()},a.prototype.getFeatureState=function(t){return this.style.getFeatureState(t)},a.prototype.getContainer=function(){return this._container},a.prototype.getCanvasContainer=function(){return this._canvasContainer},a.prototype.getCanvas=function(){return this._canvas},a.prototype._containerDimensions=function(){var t=0,e=0;return this._container&&(t=this._container.clientWidth||400,e=this._container.clientHeight||300),[t,e]},a.prototype._detectMissingCSS=function(){\"rgb(250, 128, 114)\"!==t.window.getComputedStyle(this._missingCSSCanary).getPropertyValue(\"background-color\")&&t.warnOnce(\"This page appears to be missing CSS declarations for Mapbox GL JS, which may cause the map to display incorrectly. Please ensure your page includes mapbox-gl.css, as described in https://www.mapbox.com/mapbox-gl-js/api/.\")},a.prototype._setupContainer=function(){var t=this._container;t.classList.add(\"mapboxgl-map\"),(this._missingCSSCanary=r.create(\"div\",\"mapboxgl-canary\",t)).style.visibility=\"hidden\",this._detectMissingCSS();var e=this._canvasContainer=r.create(\"div\",\"mapboxgl-canvas-container\",t);this._interactive&&e.classList.add(\"mapboxgl-interactive\"),this._canvas=r.create(\"canvas\",\"mapboxgl-canvas\",e),this._canvas.style.position=\"absolute\",this._canvas.addEventListener(\"webglcontextlost\",this._contextLost,!1),this._canvas.addEventListener(\"webglcontextrestored\",this._contextRestored,!1),this._canvas.setAttribute(\"tabindex\",\"0\"),this._canvas.setAttribute(\"aria-label\",\"Map\");var n=this._containerDimensions();this._resizeCanvas(n[0],n[1]);var a=this._controlContainer=r.create(\"div\",\"mapboxgl-control-container\",t),i=this._controlPositions={};[\"top-left\",\"top-right\",\"bottom-left\",\"bottom-right\"].forEach(function(t){i[t]=r.create(\"div\",\"mapboxgl-ctrl-\"+t,a)})},a.prototype._resizeCanvas=function(e,r){var n=t.window.devicePixelRatio||1;this._canvas.width=n*e,this._canvas.height=n*r,this._canvas.style.width=e+\"px\",this._canvas.style.height=r+\"px\"},a.prototype._setupPainter=function(){var r=t.extend({},e.webGLContextAttributes,{failIfMajorPerformanceCaveat:this._failIfMajorPerformanceCaveat,preserveDrawingBuffer:this._preserveDrawingBuffer,antialias:this._antialias||!1}),n=this._canvas.getContext(\"webgl\",r)||this._canvas.getContext(\"experimental-webgl\",r);n?(this.painter=new an(n,this.transform),t.webpSupported.testSupport(n)):this.fire(new t.ErrorEvent(new Error(\"Failed to initialize WebGL\")))},a.prototype._contextLost=function(e){e.preventDefault(),this._frame&&(this._frame.cancel(),this._frame=null),this.fire(new t.Event(\"webglcontextlost\",{originalEvent:e}))},a.prototype._contextRestored=function(e){this._setupPainter(),this.resize(),this._update(),this.fire(new t.Event(\"webglcontextrestored\",{originalEvent:e}))},a.prototype.loaded=function(){return!this._styleDirty&&!this._sourcesDirty&&!!this.style&&this.style.loaded()},a.prototype._update=function(t){return this.style?(this._styleDirty=this._styleDirty||t,this._sourcesDirty=!0,this.triggerRepaint(),this):this},a.prototype._requestRenderFrame=function(t){return this._update(),this._renderTaskQueue.add(t)},a.prototype._cancelRenderFrame=function(t){this._renderTaskQueue.remove(t)},a.prototype._render=function(){this.painter.context.setDirty(),this.painter.setBaseState(),this._renderTaskQueue.run();var e=!1;if(this.style&&this._styleDirty){this._styleDirty=!1;var r=this.transform.zoom,n=t.browser.now();this.style.zoomHistory.update(r,n);var a=new t.EvaluationParameters(r,{now:n,fadeDuration:this._fadeDuration,zoomHistory:this.style.zoomHistory,transition:this.style.getTransition()}),i=a.crossFadingFactor();1===i&&i===this._crossFadingFactor||(e=!0,this._crossFadingFactor=i),this.style.update(a)}return this.style&&this._sourcesDirty&&(this._sourcesDirty=!1,this.style._updateSources(this.transform)),this._placementDirty=this.style&&this.style._updatePlacement(this.painter.transform,this.showCollisionBoxes,this._fadeDuration,this._crossSourceCollisions),this.painter.render(this.style,{showTileBoundaries:this.showTileBoundaries,showOverdrawInspector:this._showOverdrawInspector,rotating:this.isRotating(),zooming:this.isZooming(),moving:this.isMoving(),fadeDuration:this._fadeDuration}),this.fire(new t.Event(\"render\")),this.loaded()&&!this._loaded&&(this._loaded=!0,this.fire(new t.Event(\"load\"))),this.style&&(this.style.hasTransitions()||e)&&(this._styleDirty=!0),this.style&&!this._placementDirty&&this.style._releaseSymbolFadeTiles(),this._sourcesDirty||this._repaint||this._styleDirty||this._placementDirty?this.triggerRepaint():!this.isMoving()&&this.loaded()&&this.fire(new t.Event(\"idle\")),this},a.prototype.remove=function(){this._hash&&this._hash.remove();for(var e=0,r=this._controls;e<r.length;e+=1)r[e].onRemove(this);this._controls=[],this._frame&&(this._frame.cancel(),this._frame=null),this._renderTaskQueue.clear(),this.setStyle(null),void 0!==t.window&&(t.window.removeEventListener(\"resize\",this._onWindowResize,!1),t.window.removeEventListener(\"online\",this._onWindowOnline,!1));var n=this.painter.context.gl.getExtension(\"WEBGL_lose_context\");n&&n.loseContext(),Dn(this._canvasContainer),Dn(this._controlContainer),Dn(this._missingCSSCanary),this._container.classList.remove(\"mapboxgl-map\"),this.fire(new t.Event(\"remove\"))},a.prototype.triggerRepaint=function(){var e=this;this.style&&!this._frame&&(this._frame=t.browser.frame(function(){e._frame=null,e._render()}))},a.prototype._onWindowOnline=function(){this._update()},a.prototype._onWindowResize=function(){this._trackResize&&this.resize()._update()},i.showTileBoundaries.get=function(){return!!this._showTileBoundaries},i.showTileBoundaries.set=function(t){this._showTileBoundaries!==t&&(this._showTileBoundaries=t,this._update())},i.showCollisionBoxes.get=function(){return!!this._showCollisionBoxes},i.showCollisionBoxes.set=function(t){this._showCollisionBoxes!==t&&(this._showCollisionBoxes=t,t?this.style._generateCollisionBoxes():this._update())},i.showOverdrawInspector.get=function(){return!!this._showOverdrawInspector},i.showOverdrawInspector.set=function(t){this._showOverdrawInspector!==t&&(this._showOverdrawInspector=t,this._update())},i.repaint.get=function(){return!!this._repaint},i.repaint.set=function(t){this._repaint!==t&&(this._repaint=t,this.triggerRepaint())},i.vertices.get=function(){return!!this._vertices},i.vertices.set=function(t){this._vertices=t,this._update()},a.prototype._setCacheLimits=function(e,r){t.setCacheLimits(e,r)},i.version.get=function(){return t.version},Object.defineProperties(a.prototype,i),a}(Sn);function Dn(t){t.parentNode&&t.parentNode.removeChild(t)}var Rn={showCompass:!0,showZoom:!0,visualizePitch:!1},Fn=function(e){var n=this;this.options=t.extend({},Rn,e),this._container=r.create(\"div\",\"mapboxgl-ctrl mapboxgl-ctrl-group\"),this._container.addEventListener(\"contextmenu\",function(t){return t.preventDefault()}),this.options.showZoom&&(t.bindAll([\"_updateZoomButtons\"],this),this._zoomInButton=this._createButton(\"mapboxgl-ctrl-icon mapboxgl-ctrl-zoom-in\",\"Zoom in\",function(){return n._map.zoomIn()}),this._zoomOutButton=this._createButton(\"mapboxgl-ctrl-icon mapboxgl-ctrl-zoom-out\",\"Zoom out\",function(){return n._map.zoomOut()})),this.options.showCompass&&(t.bindAll([\"_rotateCompassArrow\"],this),this._compass=this._createButton(\"mapboxgl-ctrl-icon mapboxgl-ctrl-compass\",\"Reset bearing to north\",function(){n.options.visualizePitch?n._map.resetNorthPitch():n._map.resetNorth()}),this._compassArrow=r.create(\"span\",\"mapboxgl-ctrl-compass-arrow\",this._compass))};function Bn(e,r,n){if(e=new t.LngLat(e.lng,e.lat),r){var a=new t.LngLat(e.lng-360,e.lat),i=new t.LngLat(e.lng+360,e.lat),o=n.locationPoint(e).distSqr(r);n.locationPoint(a).distSqr(r)<o?e=a:n.locationPoint(i).distSqr(r)<o&&(e=i)}for(;Math.abs(e.lng-n.center.lng)>180;){var s=n.locationPoint(e);if(s.x>=0&&s.y>=0&&s.x<=n.width&&s.y<=n.height)break;e.lng>n.center.lng?e.lng-=360:e.lng+=360}return e}Fn.prototype._updateZoomButtons=function(){var t=this._map.getZoom();t===this._map.getMaxZoom()?this._zoomInButton.classList.add(\"mapboxgl-ctrl-icon-disabled\"):this._zoomInButton.classList.remove(\"mapboxgl-ctrl-icon-disabled\"),t===this._map.getMinZoom()?this._zoomOutButton.classList.add(\"mapboxgl-ctrl-icon-disabled\"):this._zoomOutButton.classList.remove(\"mapboxgl-ctrl-icon-disabled\")},Fn.prototype._rotateCompassArrow=function(){var t=this.options.visualizePitch?\"scale(\"+1/Math.pow(Math.cos(this._map.transform.pitch*(Math.PI/180)),.5)+\") rotateX(\"+this._map.transform.pitch+\"deg) rotateZ(\"+this._map.transform.angle*(180/Math.PI)+\"deg)\":\"rotate(\"+this._map.transform.angle*(180/Math.PI)+\"deg)\";this._compassArrow.style.transform=t},Fn.prototype.onAdd=function(t){return this._map=t,this.options.showZoom&&(this._map.on(\"zoom\",this._updateZoomButtons),this._updateZoomButtons()),this.options.showCompass&&(this.options.visualizePitch&&this._map.on(\"pitch\",this._rotateCompassArrow),this._map.on(\"rotate\",this._rotateCompassArrow),this._rotateCompassArrow(),this._handler=new yn(t,{button:\"left\",element:this._compass}),r.addEventListener(this._compass,\"mousedown\",this._handler.onMouseDown),r.addEventListener(this._compass,\"touchstart\",this._handler.onMouseDown,{passive:!1}),this._handler.enable()),this._container},Fn.prototype.onRemove=function(){r.remove(this._container),this.options.showZoom&&this._map.off(\"zoom\",this._updateZoomButtons),this.options.showCompass&&(this.options.visualizePitch&&this._map.off(\"pitch\",this._rotateCompassArrow),this._map.off(\"rotate\",this._rotateCompassArrow),r.removeEventListener(this._compass,\"mousedown\",this._handler.onMouseDown),r.removeEventListener(this._compass,\"touchstart\",this._handler.onMouseDown,{passive:!1}),this._handler.disable(),delete this._handler),delete this._map},Fn.prototype._createButton=function(t,e,n){var a=r.create(\"button\",t,this._container);return a.type=\"button\",a.title=e,a.setAttribute(\"aria-label\",e),a.addEventListener(\"click\",n),a};var Nn={center:\"translate(-50%,-50%)\",top:\"translate(-50%,0)\",\"top-left\":\"translate(0,0)\",\"top-right\":\"translate(-100%,0)\",bottom:\"translate(-50%,-100%)\",\"bottom-left\":\"translate(0,-100%)\",\"bottom-right\":\"translate(-100%,-100%)\",left:\"translate(0,-50%)\",right:\"translate(-100%,-50%)\"};function jn(t,e,r){var n=t.classList;for(var a in Nn)n.remove(\"mapboxgl-\"+r+\"-anchor-\"+a);n.add(\"mapboxgl-\"+r+\"-anchor-\"+e)}var Vn,Un=function(e){function n(n,a){if(e.call(this),(n instanceof t.window.HTMLElement||a)&&(n=t.extend({element:n},a)),t.bindAll([\"_update\",\"_onMove\",\"_onUp\",\"_addDragHandler\",\"_onMapClick\"],this),this._anchor=n&&n.anchor||\"center\",this._color=n&&n.color||\"#3FB1CE\",this._draggable=n&&n.draggable||!1,this._state=\"inactive\",n&&n.element)this._element=n.element,this._offset=t.Point.convert(n&&n.offset||[0,0]);else{this._defaultMarker=!0,this._element=r.create(\"div\");var i=r.createNS(\"http://www.w3.org/2000/svg\",\"svg\");i.setAttributeNS(null,\"display\",\"block\"),i.setAttributeNS(null,\"height\",\"41px\"),i.setAttributeNS(null,\"width\",\"27px\"),i.setAttributeNS(null,\"viewBox\",\"0 0 27 41\");var o=r.createNS(\"http://www.w3.org/2000/svg\",\"g\");o.setAttributeNS(null,\"stroke\",\"none\"),o.setAttributeNS(null,\"stroke-width\",\"1\"),o.setAttributeNS(null,\"fill\",\"none\"),o.setAttributeNS(null,\"fill-rule\",\"evenodd\");var s=r.createNS(\"http://www.w3.org/2000/svg\",\"g\");s.setAttributeNS(null,\"fill-rule\",\"nonzero\");var l=r.createNS(\"http://www.w3.org/2000/svg\",\"g\");l.setAttributeNS(null,\"transform\",\"translate(3.0, 29.0)\"),l.setAttributeNS(null,\"fill\",\"#000000\");for(var c=0,u=[{rx:\"10.5\",ry:\"5.25002273\"},{rx:\"10.5\",ry:\"5.25002273\"},{rx:\"9.5\",ry:\"4.77275007\"},{rx:\"8.5\",ry:\"4.29549936\"},{rx:\"7.5\",ry:\"3.81822308\"},{rx:\"6.5\",ry:\"3.34094679\"},{rx:\"5.5\",ry:\"2.86367051\"},{rx:\"4.5\",ry:\"2.38636864\"}];c<u.length;c+=1){var h=u[c],f=r.createNS(\"http://www.w3.org/2000/svg\",\"ellipse\");f.setAttributeNS(null,\"opacity\",\"0.04\"),f.setAttributeNS(null,\"cx\",\"10.5\"),f.setAttributeNS(null,\"cy\",\"5.80029008\"),f.setAttributeNS(null,\"rx\",h.rx),f.setAttributeNS(null,\"ry\",h.ry),l.appendChild(f)}var p=r.createNS(\"http://www.w3.org/2000/svg\",\"g\");p.setAttributeNS(null,\"fill\",this._color);var d=r.createNS(\"http://www.w3.org/2000/svg\",\"path\");d.setAttributeNS(null,\"d\",\"M27,13.5 C27,19.074644 20.250001,27.000002 14.75,34.500002 C14.016665,35.500004 12.983335,35.500004 12.25,34.500002 C6.7499993,27.000002 0,19.222562 0,13.5 C0,6.0441559 6.0441559,0 13.5,0 C20.955844,0 27,6.0441559 27,13.5 Z\"),p.appendChild(d);var g=r.createNS(\"http://www.w3.org/2000/svg\",\"g\");g.setAttributeNS(null,\"opacity\",\"0.25\"),g.setAttributeNS(null,\"fill\",\"#000000\");var v=r.createNS(\"http://www.w3.org/2000/svg\",\"path\");v.setAttributeNS(null,\"d\",\"M13.5,0 C6.0441559,0 0,6.0441559 0,13.5 C0,19.222562 6.7499993,27 12.25,34.5 C13,35.522727 14.016664,35.500004 14.75,34.5 C20.250001,27 27,19.074644 27,13.5 C27,6.0441559 20.955844,0 13.5,0 Z M13.5,1 C20.415404,1 26,6.584596 26,13.5 C26,15.898657 24.495584,19.181431 22.220703,22.738281 C19.945823,26.295132 16.705119,30.142167 13.943359,33.908203 C13.743445,34.180814 13.612715,34.322738 13.5,34.441406 C13.387285,34.322738 13.256555,34.180814 13.056641,33.908203 C10.284481,30.127985 7.4148684,26.314159 5.015625,22.773438 C2.6163816,19.232715 1,15.953538 1,13.5 C1,6.584596 6.584596,1 13.5,1 Z\"),g.appendChild(v);var m=r.createNS(\"http://www.w3.org/2000/svg\",\"g\");m.setAttributeNS(null,\"transform\",\"translate(6.0, 7.0)\"),m.setAttributeNS(null,\"fill\",\"#FFFFFF\");var y=r.createNS(\"http://www.w3.org/2000/svg\",\"g\");y.setAttributeNS(null,\"transform\",\"translate(8.0, 8.0)\");var x=r.createNS(\"http://www.w3.org/2000/svg\",\"circle\");x.setAttributeNS(null,\"fill\",\"#000000\"),x.setAttributeNS(null,\"opacity\",\"0.25\"),x.setAttributeNS(null,\"cx\",\"5.5\"),x.setAttributeNS(null,\"cy\",\"5.5\"),x.setAttributeNS(null,\"r\",\"5.4999962\");var b=r.createNS(\"http://www.w3.org/2000/svg\",\"circle\");b.setAttributeNS(null,\"fill\",\"#FFFFFF\"),b.setAttributeNS(null,\"cx\",\"5.5\"),b.setAttributeNS(null,\"cy\",\"5.5\"),b.setAttributeNS(null,\"r\",\"5.4999962\"),y.appendChild(x),y.appendChild(b),s.appendChild(l),s.appendChild(p),s.appendChild(g),s.appendChild(m),s.appendChild(y),i.appendChild(s),this._element.appendChild(i),this._offset=t.Point.convert(n&&n.offset||[0,-14])}this._element.classList.add(\"mapboxgl-marker\"),this._element.addEventListener(\"dragstart\",function(t){t.preventDefault()}),jn(this._element,this._anchor,\"marker\"),this._popup=null}return e&&(n.__proto__=e),n.prototype=Object.create(e&&e.prototype),n.prototype.constructor=n,n.prototype.addTo=function(t){return this.remove(),this._map=t,t.getCanvasContainer().appendChild(this._element),t.on(\"move\",this._update),t.on(\"moveend\",this._update),this.setDraggable(this._draggable),this._update(),this._map.on(\"click\",this._onMapClick),this},n.prototype.remove=function(){return this._map&&(this._map.off(\"click\",this._onMapClick),this._map.off(\"move\",this._update),this._map.off(\"moveend\",this._update),this._map.off(\"mousedown\",this._addDragHandler),this._map.off(\"touchstart\",this._addDragHandler),this._map.off(\"mouseup\",this._onUp),this._map.off(\"touchend\",this._onUp),this._map.off(\"mousemove\",this._onMove),this._map.off(\"touchmove\",this._onMove),delete this._map),r.remove(this._element),this._popup&&this._popup.remove(),this},n.prototype.getLngLat=function(){return this._lngLat},n.prototype.setLngLat=function(e){return this._lngLat=t.LngLat.convert(e),this._pos=null,this._popup&&this._popup.setLngLat(this._lngLat),this._update(),this},n.prototype.getElement=function(){return this._element},n.prototype.setPopup=function(t){if(this._popup&&(this._popup.remove(),this._popup=null),t){if(!(\"offset\"in t.options)){var e=Math.sqrt(Math.pow(13.5,2)/2);t.options.offset=this._defaultMarker?{top:[0,0],\"top-left\":[0,0],\"top-right\":[0,0],bottom:[0,-38.1],\"bottom-left\":[e,-1*(24.6+e)],\"bottom-right\":[-e,-1*(24.6+e)],left:[13.5,-24.6],right:[-13.5,-24.6]}:this._offset}this._popup=t,this._lngLat&&this._popup.setLngLat(this._lngLat)}return this},n.prototype._onMapClick=function(t){var e=t.originalEvent.target,r=this._element;this._popup&&(e===r||r.contains(e))&&this.togglePopup()},n.prototype.getPopup=function(){return this._popup},n.prototype.togglePopup=function(){var t=this._popup;return t?(t.isOpen()?t.remove():t.addTo(this._map),this):this},n.prototype._update=function(t){this._map&&(this._map.transform.renderWorldCopies&&(this._lngLat=Bn(this._lngLat,this._pos,this._map.transform)),this._pos=this._map.project(this._lngLat)._add(this._offset),t&&\"moveend\"!==t.type||(this._pos=this._pos.round()),r.setTransform(this._element,Nn[this._anchor]+\" translate(\"+this._pos.x+\"px, \"+this._pos.y+\"px)\"))},n.prototype.getOffset=function(){return this._offset},n.prototype.setOffset=function(e){return this._offset=t.Point.convert(e),this._update(),this},n.prototype._onMove=function(e){this._pos=e.point.sub(this._positionDelta),this._lngLat=this._map.unproject(this._pos),this.setLngLat(this._lngLat),this._element.style.pointerEvents=\"none\",\"pending\"===this._state&&(this._state=\"active\",this.fire(new t.Event(\"dragstart\"))),this.fire(new t.Event(\"drag\"))},n.prototype._onUp=function(){this._element.style.pointerEvents=\"auto\",this._positionDelta=null,this._map.off(\"mousemove\",this._onMove),this._map.off(\"touchmove\",this._onMove),\"active\"===this._state&&this.fire(new t.Event(\"dragend\")),this._state=\"inactive\"},n.prototype._addDragHandler=function(t){this._element.contains(t.originalEvent.target)&&(t.preventDefault(),this._positionDelta=t.point.sub(this._pos).add(this._offset),this._state=\"pending\",this._map.on(\"mousemove\",this._onMove),this._map.on(\"touchmove\",this._onMove),this._map.once(\"mouseup\",this._onUp),this._map.once(\"touchend\",this._onUp))},n.prototype.setDraggable=function(t){return this._draggable=!!t,this._map&&(t?(this._map.on(\"mousedown\",this._addDragHandler),this._map.on(\"touchstart\",this._addDragHandler)):(this._map.off(\"mousedown\",this._addDragHandler),this._map.off(\"touchstart\",this._addDragHandler))),this},n.prototype.isDraggable=function(){return this._draggable},n}(t.Evented),qn={positionOptions:{enableHighAccuracy:!1,maximumAge:0,timeout:6e3},fitBoundsOptions:{maxZoom:15},trackUserLocation:!1,showUserLocation:!0},Hn=function(e){function n(r){e.call(this),this.options=t.extend({},qn,r),t.bindAll([\"_onSuccess\",\"_onError\",\"_finish\",\"_setupUI\",\"_updateCamera\",\"_updateMarker\"],this)}return e&&(n.__proto__=e),n.prototype=Object.create(e&&e.prototype),n.prototype.constructor=n,n.prototype.onAdd=function(e){var n;return this._map=e,this._container=r.create(\"div\",\"mapboxgl-ctrl mapboxgl-ctrl-group\"),n=this._setupUI,void 0!==Vn?n(Vn):void 0!==t.window.navigator.permissions?t.window.navigator.permissions.query({name:\"geolocation\"}).then(function(t){Vn=\"denied\"!==t.state,n(Vn)}):(Vn=!!t.window.navigator.geolocation,n(Vn)),this._container},n.prototype.onRemove=function(){void 0!==this._geolocationWatchID&&(t.window.navigator.geolocation.clearWatch(this._geolocationWatchID),this._geolocationWatchID=void 0),this.options.showUserLocation&&this._userLocationDotMarker&&this._userLocationDotMarker.remove(),r.remove(this._container),this._map=void 0},n.prototype._onSuccess=function(e){if(this.options.trackUserLocation)switch(this._lastKnownPosition=e,this._watchState){case\"WAITING_ACTIVE\":case\"ACTIVE_LOCK\":case\"ACTIVE_ERROR\":this._watchState=\"ACTIVE_LOCK\",this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-waiting\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-active-error\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-active\");break;case\"BACKGROUND\":case\"BACKGROUND_ERROR\":this._watchState=\"BACKGROUND\",this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-waiting\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-background-error\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-background\")}this.options.showUserLocation&&\"OFF\"!==this._watchState&&this._updateMarker(e),this.options.trackUserLocation&&\"ACTIVE_LOCK\"!==this._watchState||this._updateCamera(e),this.options.showUserLocation&&this._dotElement.classList.remove(\"mapboxgl-user-location-dot-stale\"),this.fire(new t.Event(\"geolocate\",e)),this._finish()},n.prototype._updateCamera=function(e){var r=new t.LngLat(e.coords.longitude,e.coords.latitude),n=e.coords.accuracy,a=this._map.getBearing(),i=t.extend({bearing:a},this.options.fitBoundsOptions);this._map.fitBounds(r.toBounds(n),i,{geolocateSource:!0})},n.prototype._updateMarker=function(t){t?this._userLocationDotMarker.setLngLat([t.coords.longitude,t.coords.latitude]).addTo(this._map):this._userLocationDotMarker.remove()},n.prototype._onError=function(e){if(this.options.trackUserLocation)if(1===e.code)this._watchState=\"OFF\",this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-waiting\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-active\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-active-error\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-background\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-background-error\"),void 0!==this._geolocationWatchID&&this._clearWatch();else switch(this._watchState){case\"WAITING_ACTIVE\":this._watchState=\"ACTIVE_ERROR\",this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-active\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-active-error\");break;case\"ACTIVE_LOCK\":this._watchState=\"ACTIVE_ERROR\",this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-active\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-active-error\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-waiting\");break;case\"BACKGROUND\":this._watchState=\"BACKGROUND_ERROR\",this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-background\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-background-error\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-waiting\")}\"OFF\"!==this._watchState&&this.options.showUserLocation&&this._dotElement.classList.add(\"mapboxgl-user-location-dot-stale\"),this.fire(new t.Event(\"error\",e)),this._finish()},n.prototype._finish=function(){this._timeoutId&&clearTimeout(this._timeoutId),this._timeoutId=void 0},n.prototype._setupUI=function(e){var n=this;!1!==e?(this._container.addEventListener(\"contextmenu\",function(t){return t.preventDefault()}),this._geolocateButton=r.create(\"button\",\"mapboxgl-ctrl-icon mapboxgl-ctrl-geolocate\",this._container),this._geolocateButton.type=\"button\",this._geolocateButton.setAttribute(\"aria-label\",\"Geolocate\"),this.options.trackUserLocation&&(this._geolocateButton.setAttribute(\"aria-pressed\",\"false\"),this._watchState=\"OFF\"),this.options.showUserLocation&&(this._dotElement=r.create(\"div\",\"mapboxgl-user-location-dot\"),this._userLocationDotMarker=new Un(this._dotElement),this.options.trackUserLocation&&(this._watchState=\"OFF\")),this._geolocateButton.addEventListener(\"click\",this.trigger.bind(this)),this._setup=!0,this.options.trackUserLocation&&this._map.on(\"movestart\",function(e){e.geolocateSource||\"ACTIVE_LOCK\"!==n._watchState||(n._watchState=\"BACKGROUND\",n._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-background\"),n._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-active\"),n.fire(new t.Event(\"trackuserlocationend\")))})):t.warnOnce(\"Geolocation support is not available, the GeolocateControl will not be visible.\")},n.prototype.trigger=function(){if(!this._setup)return t.warnOnce(\"Geolocate control triggered before added to a map\"),!1;if(this.options.trackUserLocation){switch(this._watchState){case\"OFF\":this._watchState=\"WAITING_ACTIVE\",this.fire(new t.Event(\"trackuserlocationstart\"));break;case\"WAITING_ACTIVE\":case\"ACTIVE_LOCK\":case\"ACTIVE_ERROR\":case\"BACKGROUND_ERROR\":this._watchState=\"OFF\",this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-waiting\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-active\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-active-error\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-background\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-background-error\"),this.fire(new t.Event(\"trackuserlocationend\"));break;case\"BACKGROUND\":this._watchState=\"ACTIVE_LOCK\",this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-background\"),this._lastKnownPosition&&this._updateCamera(this._lastKnownPosition),this.fire(new t.Event(\"trackuserlocationstart\"))}switch(this._watchState){case\"WAITING_ACTIVE\":this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-waiting\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-active\");break;case\"ACTIVE_LOCK\":this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-active\");break;case\"ACTIVE_ERROR\":this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-waiting\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-active-error\");break;case\"BACKGROUND\":this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-background\");break;case\"BACKGROUND_ERROR\":this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-waiting\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-background-error\")}\"OFF\"===this._watchState&&void 0!==this._geolocationWatchID?this._clearWatch():void 0===this._geolocationWatchID&&(this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-waiting\"),this._geolocateButton.setAttribute(\"aria-pressed\",\"true\"),this._geolocationWatchID=t.window.navigator.geolocation.watchPosition(this._onSuccess,this._onError,this.options.positionOptions))}else t.window.navigator.geolocation.getCurrentPosition(this._onSuccess,this._onError,this.options.positionOptions),this._timeoutId=setTimeout(this._finish,1e4);return!0},n.prototype._clearWatch=function(){t.window.navigator.geolocation.clearWatch(this._geolocationWatchID),this._geolocationWatchID=void 0,this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-waiting\"),this._geolocateButton.setAttribute(\"aria-pressed\",\"false\"),this.options.showUserLocation&&this._updateMarker(null)},n}(t.Evented),Gn={maxWidth:100,unit:\"metric\"},Yn=function(e){this.options=t.extend({},Gn,e),t.bindAll([\"_onMove\",\"setUnit\"],this)};function Wn(t,e,r){var n,a,i,o,s,l,c=r&&r.maxWidth||100,u=t._container.clientHeight/2,h=(n=t.unproject([0,u]),a=t.unproject([c,u]),i=Math.PI/180,o=n.lat*i,s=a.lat*i,l=Math.sin(o)*Math.sin(s)+Math.cos(o)*Math.cos(s)*Math.cos((a.lng-n.lng)*i),6371e3*Math.acos(Math.min(l,1)));if(r&&\"imperial\"===r.unit){var f=3.2808*h;f>5280?Xn(e,c,f/5280,\"mi\"):Xn(e,c,f,\"ft\")}else r&&\"nautical\"===r.unit?Xn(e,c,h/1852,\"nm\"):Xn(e,c,h,\"m\")}function Xn(t,e,r,n){var a,i,o,s=(a=r,(i=Math.pow(10,(\"\"+Math.floor(a)).length-1))*(o=(o=a/i)>=10?10:o>=5?5:o>=3?3:o>=2?2:o>=1?1:function(t){var e=Math.pow(10,Math.ceil(-Math.log(t)/Math.LN10));return Math.round(t*e)/e}(o))),l=s/r;\"m\"===n&&s>=1e3&&(s/=1e3,n=\"km\"),t.style.width=e*l+\"px\",t.innerHTML=s+n}Yn.prototype.getDefaultPosition=function(){return\"bottom-left\"},Yn.prototype._onMove=function(){Wn(this._map,this._container,this.options)},Yn.prototype.onAdd=function(t){return this._map=t,this._container=r.create(\"div\",\"mapboxgl-ctrl mapboxgl-ctrl-scale\",t.getContainer()),this._map.on(\"move\",this._onMove),this._onMove(),this._container},Yn.prototype.onRemove=function(){r.remove(this._container),this._map.off(\"move\",this._onMove),this._map=void 0},Yn.prototype.setUnit=function(t){this.options.unit=t,Wn(this._map,this._container,this.options)};var Zn=function(e){this._fullscreen=!1,e&&e.container&&(e.container instanceof t.window.HTMLElement?this._container=e.container:t.warnOnce(\"Full screen control 'container' must be a DOM element.\")),t.bindAll([\"_onClickFullscreen\",\"_changeIcon\"],this),\"onfullscreenchange\"in t.window.document?this._fullscreenchange=\"fullscreenchange\":\"onmozfullscreenchange\"in t.window.document?this._fullscreenchange=\"mozfullscreenchange\":\"onwebkitfullscreenchange\"in t.window.document?this._fullscreenchange=\"webkitfullscreenchange\":\"onmsfullscreenchange\"in t.window.document&&(this._fullscreenchange=\"MSFullscreenChange\"),this._className=\"mapboxgl-ctrl\"};Zn.prototype.onAdd=function(e){return this._map=e,this._container||(this._container=this._map.getContainer()),this._controlContainer=r.create(\"div\",this._className+\" mapboxgl-ctrl-group\"),this._checkFullscreenSupport()?this._setupUI():(this._controlContainer.style.display=\"none\",t.warnOnce(\"This device does not support fullscreen mode.\")),this._controlContainer},Zn.prototype.onRemove=function(){r.remove(this._controlContainer),this._map=null,t.window.document.removeEventListener(this._fullscreenchange,this._changeIcon)},Zn.prototype._checkFullscreenSupport=function(){return!!(t.window.document.fullscreenEnabled||t.window.document.mozFullScreenEnabled||t.window.document.msFullscreenEnabled||t.window.document.webkitFullscreenEnabled)},Zn.prototype._setupUI=function(){(this._fullscreenButton=r.create(\"button\",this._className+\"-icon \"+this._className+\"-fullscreen\",this._controlContainer)).type=\"button\",this._updateTitle(),this._fullscreenButton.addEventListener(\"click\",this._onClickFullscreen),t.window.document.addEventListener(this._fullscreenchange,this._changeIcon)},Zn.prototype._updateTitle=function(){var t=this._isFullscreen()?\"Exit fullscreen\":\"Enter fullscreen\";this._fullscreenButton.setAttribute(\"aria-label\",t),this._fullscreenButton.title=t},Zn.prototype._isFullscreen=function(){return this._fullscreen},Zn.prototype._changeIcon=function(){(t.window.document.fullscreenElement||t.window.document.mozFullScreenElement||t.window.document.webkitFullscreenElement||t.window.document.msFullscreenElement)===this._container!==this._fullscreen&&(this._fullscreen=!this._fullscreen,this._fullscreenButton.classList.toggle(this._className+\"-shrink\"),this._fullscreenButton.classList.toggle(this._className+\"-fullscreen\"),this._updateTitle())},Zn.prototype._onClickFullscreen=function(){this._isFullscreen()?t.window.document.exitFullscreen?t.window.document.exitFullscreen():t.window.document.mozCancelFullScreen?t.window.document.mozCancelFullScreen():t.window.document.msExitFullscreen?t.window.document.msExitFullscreen():t.window.document.webkitCancelFullScreen&&t.window.document.webkitCancelFullScreen():this._container.requestFullscreen?this._container.requestFullscreen():this._container.mozRequestFullScreen?this._container.mozRequestFullScreen():this._container.msRequestFullscreen?this._container.msRequestFullscreen():this._container.webkitRequestFullscreen&&this._container.webkitRequestFullscreen()};var Jn={closeButton:!0,closeOnClick:!0,className:\"\",maxWidth:\"240px\"},Kn=function(e){function n(r){e.call(this),this.options=t.extend(Object.create(Jn),r),t.bindAll([\"_update\",\"_onClickClose\",\"remove\"],this)}return e&&(n.__proto__=e),n.prototype=Object.create(e&&e.prototype),n.prototype.constructor=n,n.prototype.addTo=function(e){var r=this;return this._map=e,this.options.closeOnClick&&this._map.on(\"click\",this._onClickClose),this._map.on(\"remove\",this.remove),this._update(),this._trackPointer?(this._map.on(\"mousemove\",function(t){r._update(t.point)}),this._map.on(\"mouseup\",function(t){r._update(t.point)}),this._container.classList.add(\"mapboxgl-popup-track-pointer\"),this._map._canvasContainer.classList.add(\"mapboxgl-track-pointer\")):this._map.on(\"move\",this._update),this.fire(new t.Event(\"open\")),this},n.prototype.isOpen=function(){return!!this._map},n.prototype.remove=function(){return this._content&&r.remove(this._content),this._container&&(r.remove(this._container),delete this._container),this._map&&(this._map.off(\"move\",this._update),this._map.off(\"click\",this._onClickClose),this._map.off(\"remove\",this.remove),this._map.off(\"mousemove\"),delete this._map),this.fire(new t.Event(\"close\")),this},n.prototype.getLngLat=function(){return this._lngLat},n.prototype.setLngLat=function(e){return this._lngLat=t.LngLat.convert(e),this._pos=null,this._trackPointer=!1,this._update(),this._map&&(this._map.on(\"move\",this._update),this._map.off(\"mousemove\"),this._container.classList.remove(\"mapboxgl-popup-track-pointer\"),this._map._canvasContainer.classList.remove(\"mapboxgl-track-pointer\")),this},n.prototype.trackPointer=function(){var t=this;return this._trackPointer=!0,this._pos=null,this._map&&(this._map.off(\"move\",this._update),this._map.on(\"mousemove\",function(e){t._update(e.point)}),this._map.on(\"drag\",function(e){t._update(e.point)}),this._container.classList.add(\"mapboxgl-popup-track-pointer\"),this._map._canvasContainer.classList.add(\"mapboxgl-track-pointer\")),this},n.prototype.getElement=function(){return this._container},n.prototype.setText=function(e){return this.setDOMContent(t.window.document.createTextNode(e))},n.prototype.setHTML=function(e){var r,n=t.window.document.createDocumentFragment(),a=t.window.document.createElement(\"body\");for(a.innerHTML=e;r=a.firstChild;)n.appendChild(r);return this.setDOMContent(n)},n.prototype.getMaxWidth=function(){return this._container.style.maxWidth},n.prototype.setMaxWidth=function(t){return this.options.maxWidth=t,this._update(),this},n.prototype.setDOMContent=function(t){return this._createContent(),this._content.appendChild(t),this._update(),this},n.prototype._createContent=function(){this._content&&r.remove(this._content),this._content=r.create(\"div\",\"mapboxgl-popup-content\",this._container),this.options.closeButton&&(this._closeButton=r.create(\"button\",\"mapboxgl-popup-close-button\",this._content),this._closeButton.type=\"button\",this._closeButton.setAttribute(\"aria-label\",\"Close popup\"),this._closeButton.innerHTML=\"&#215;\",this._closeButton.addEventListener(\"click\",this._onClickClose))},n.prototype._update=function(e){var n=this,a=this._lngLat||this._trackPointer;if(this._map&&a&&this._content&&(this._container||(this._container=r.create(\"div\",\"mapboxgl-popup\",this._map.getContainer()),this._tip=r.create(\"div\",\"mapboxgl-popup-tip\",this._container),this._container.appendChild(this._content),this.options.className&&this.options.className.split(\" \").forEach(function(t){return n._container.classList.add(t)})),this.options.maxWidth&&this._container.style.maxWidth!==this.options.maxWidth&&(this._container.style.maxWidth=this.options.maxWidth),this._map.transform.renderWorldCopies&&!this._trackPointer&&(this._lngLat=Bn(this._lngLat,this._pos,this._map.transform)),!this._trackPointer||e)){var i=this._pos=this._trackPointer&&e?e:this._map.project(this._lngLat),o=this.options.anchor,s=function e(r){if(r){if(\"number\"==typeof r){var n=Math.round(Math.sqrt(.5*Math.pow(r,2)));return{center:new t.Point(0,0),top:new t.Point(0,r),\"top-left\":new t.Point(n,n),\"top-right\":new t.Point(-n,n),bottom:new t.Point(0,-r),\"bottom-left\":new t.Point(n,-n),\"bottom-right\":new t.Point(-n,-n),left:new t.Point(r,0),right:new t.Point(-r,0)}}if(r instanceof t.Point||Array.isArray(r)){var a=t.Point.convert(r);return{center:a,top:a,\"top-left\":a,\"top-right\":a,bottom:a,\"bottom-left\":a,\"bottom-right\":a,left:a,right:a}}return{center:t.Point.convert(r.center||[0,0]),top:t.Point.convert(r.top||[0,0]),\"top-left\":t.Point.convert(r[\"top-left\"]||[0,0]),\"top-right\":t.Point.convert(r[\"top-right\"]||[0,0]),bottom:t.Point.convert(r.bottom||[0,0]),\"bottom-left\":t.Point.convert(r[\"bottom-left\"]||[0,0]),\"bottom-right\":t.Point.convert(r[\"bottom-right\"]||[0,0]),left:t.Point.convert(r.left||[0,0]),right:t.Point.convert(r.right||[0,0])}}return e(new t.Point(0,0))}(this.options.offset);if(!o){var l,c=this._container.offsetWidth,u=this._container.offsetHeight;l=i.y+s.bottom.y<u?[\"top\"]:i.y>this._map.transform.height-u?[\"bottom\"]:[],i.x<c/2?l.push(\"left\"):i.x>this._map.transform.width-c/2&&l.push(\"right\"),o=0===l.length?\"bottom\":l.join(\"-\")}var h=i.add(s[o]).round();r.setTransform(this._container,Nn[o]+\" translate(\"+h.x+\"px,\"+h.y+\"px)\"),jn(this._container,o,\"popup\")}},n.prototype._onClickClose=function(){this.remove()},n}(t.Evented),Qn={version:t.version,supported:e,setRTLTextPlugin:t.setRTLTextPlugin,Map:zn,NavigationControl:Fn,GeolocateControl:Hn,AttributionControl:En,ScaleControl:Yn,FullscreenControl:Zn,Popup:Kn,Marker:Un,Style:Re,LngLat:t.LngLat,LngLatBounds:t.LngLatBounds,Point:t.Point,MercatorCoordinate:t.MercatorCoordinate,Evented:t.Evented,config:t.config,get accessToken(){return t.config.ACCESS_TOKEN},set accessToken(e){t.config.ACCESS_TOKEN=e},get baseApiUrl(){return t.config.API_URL},set baseApiUrl(e){t.config.API_URL=e},get workerCount(){return zt.workerCount},set workerCount(t){zt.workerCount=t},get maxParallelImageRequests(){return t.config.MAX_PARALLEL_IMAGE_REQUESTS},set maxParallelImageRequests(e){t.config.MAX_PARALLEL_IMAGE_REQUESTS=e},clearStorage:function(e){t.clearTileCache(e)},workerUrl:\"\"};return Qn}),r},\"object\"==typeof r&&\"undefined\"!=typeof e?e.exports=a():(n=n||self).mapboxgl=a()},{}],428:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=1<<t+1,r=new Array(e),n=0;n<e;++n)r[n]=i(t,n);return r};var n=t(\"convex-hull\");function a(t,e,r){for(var n=new Array(t),a=0;a<t;++a)n[a]=0,a===e&&(n[a]+=.5),a===r&&(n[a]+=.5);return n}function i(t,e){if(0===e||e===(1<<t+1)-1)return[];for(var r=[],i=[],o=0;o<=t;++o)if(e&1<<o){r.push(a(t,o-1,o-1)),i.push(null);for(var s=0;s<=t;++s)~e&1<<s&&(r.push(a(t,o-1,s-1)),i.push([o,s]))}var l=n(r),c=[];t:for(o=0;o<l.length;++o){var u=l[o],h=[];for(s=0;s<u.length;++s){if(!i[u[s]])continue t;h.push(i[u[s]].slice())}c.push(h)}return c}},{\"convex-hull\":131}],429:[function(t,e,r){var n=t(\"./normalize\"),a=t(\"gl-mat4/create\"),i=t(\"gl-mat4/clone\"),o=t(\"gl-mat4/determinant\"),s=t(\"gl-mat4/invert\"),l=t(\"gl-mat4/transpose\"),c={length:t(\"gl-vec3/length\"),normalize:t(\"gl-vec3/normalize\"),dot:t(\"gl-vec3/dot\"),cross:t(\"gl-vec3/cross\")},u=a(),h=a(),f=[0,0,0,0],p=[[0,0,0],[0,0,0],[0,0,0]],d=[0,0,0];function g(t,e,r,n,a){t[0]=e[0]*n+r[0]*a,t[1]=e[1]*n+r[1]*a,t[2]=e[2]*n+r[2]*a}e.exports=function(t,e,r,a,v,m){if(e||(e=[0,0,0]),r||(r=[0,0,0]),a||(a=[0,0,0]),v||(v=[0,0,0,1]),m||(m=[0,0,0,1]),!n(u,t))return!1;if(i(h,u),h[3]=0,h[7]=0,h[11]=0,h[15]=1,Math.abs(o(h)<1e-8))return!1;var y,x,b,_,w,k,T,A=u[3],M=u[7],S=u[11],E=u[12],C=u[13],L=u[14],P=u[15];if(0!==A||0!==M||0!==S){if(f[0]=A,f[1]=M,f[2]=S,f[3]=P,!s(h,h))return!1;l(h,h),y=v,b=h,_=(x=f)[0],w=x[1],k=x[2],T=x[3],y[0]=b[0]*_+b[4]*w+b[8]*k+b[12]*T,y[1]=b[1]*_+b[5]*w+b[9]*k+b[13]*T,y[2]=b[2]*_+b[6]*w+b[10]*k+b[14]*T,y[3]=b[3]*_+b[7]*w+b[11]*k+b[15]*T}else v[0]=v[1]=v[2]=0,v[3]=1;if(e[0]=E,e[1]=C,e[2]=L,function(t,e){t[0][0]=e[0],t[0][1]=e[1],t[0][2]=e[2],t[1][0]=e[4],t[1][1]=e[5],t[1][2]=e[6],t[2][0]=e[8],t[2][1]=e[9],t[2][2]=e[10]}(p,u),r[0]=c.length(p[0]),c.normalize(p[0],p[0]),a[0]=c.dot(p[0],p[1]),g(p[1],p[1],p[0],1,-a[0]),r[1]=c.length(p[1]),c.normalize(p[1],p[1]),a[0]/=r[1],a[1]=c.dot(p[0],p[2]),g(p[2],p[2],p[0],1,-a[1]),a[2]=c.dot(p[1],p[2]),g(p[2],p[2],p[1],1,-a[2]),r[2]=c.length(p[2]),c.normalize(p[2],p[2]),a[1]/=r[2],a[2]/=r[2],c.cross(d,p[1],p[2]),c.dot(p[0],d)<0)for(var O=0;O<3;O++)r[O]*=-1,p[O][0]*=-1,p[O][1]*=-1,p[O][2]*=-1;return m[0]=.5*Math.sqrt(Math.max(1+p[0][0]-p[1][1]-p[2][2],0)),m[1]=.5*Math.sqrt(Math.max(1-p[0][0]+p[1][1]-p[2][2],0)),m[2]=.5*Math.sqrt(Math.max(1-p[0][0]-p[1][1]+p[2][2],0)),m[3]=.5*Math.sqrt(Math.max(1+p[0][0]+p[1][1]+p[2][2],0)),p[2][1]>p[1][2]&&(m[0]=-m[0]),p[0][2]>p[2][0]&&(m[1]=-m[1]),p[1][0]>p[0][1]&&(m[2]=-m[2]),!0}},{\"./normalize\":430,\"gl-mat4/clone\":260,\"gl-mat4/create\":261,\"gl-mat4/determinant\":262,\"gl-mat4/invert\":266,\"gl-mat4/transpose\":277,\"gl-vec3/cross\":335,\"gl-vec3/dot\":340,\"gl-vec3/length\":350,\"gl-vec3/normalize\":357}],430:[function(t,e,r){e.exports=function(t,e){var r=e[15];if(0===r)return!1;for(var n=1/r,a=0;a<16;a++)t[a]=e[a]*n;return!0}},{}],431:[function(t,e,r){var n=t(\"gl-vec3/lerp\"),a=t(\"mat4-recompose\"),i=t(\"mat4-decompose\"),o=t(\"gl-mat4/determinant\"),s=t(\"quat-slerp\"),l=h(),c=h(),u=h();function h(){return{translate:f(),scale:f(1),skew:f(),perspective:[0,0,0,1],quaternion:[0,0,0,1]}}function f(t){return[t||0,t||0,t||0]}e.exports=function(t,e,r,h){if(0===o(e)||0===o(r))return!1;var f=i(e,l.translate,l.scale,l.skew,l.perspective,l.quaternion),p=i(r,c.translate,c.scale,c.skew,c.perspective,c.quaternion);return!(!f||!p||(n(u.translate,l.translate,c.translate,h),n(u.skew,l.skew,c.skew,h),n(u.scale,l.scale,c.scale,h),n(u.perspective,l.perspective,c.perspective,h),s(u.quaternion,l.quaternion,c.quaternion,h),a(t,u.translate,u.scale,u.skew,u.perspective,u.quaternion),0))}},{\"gl-mat4/determinant\":262,\"gl-vec3/lerp\":351,\"mat4-decompose\":429,\"mat4-recompose\":432,\"quat-slerp\":484}],432:[function(t,e,r){var n={identity:t(\"gl-mat4/identity\"),translate:t(\"gl-mat4/translate\"),multiply:t(\"gl-mat4/multiply\"),create:t(\"gl-mat4/create\"),scale:t(\"gl-mat4/scale\"),fromRotationTranslation:t(\"gl-mat4/fromRotationTranslation\")},a=(n.create(),n.create());e.exports=function(t,e,r,i,o,s){return n.identity(t),n.fromRotationTranslation(t,s,e),t[3]=o[0],t[7]=o[1],t[11]=o[2],t[15]=o[3],n.identity(a),0!==i[2]&&(a[9]=i[2],n.multiply(t,t,a)),0!==i[1]&&(a[9]=0,a[8]=i[1],n.multiply(t,t,a)),0!==i[0]&&(a[8]=0,a[4]=i[0],n.multiply(t,t,a)),n.scale(t,t,r),t}},{\"gl-mat4/create\":261,\"gl-mat4/fromRotationTranslation\":264,\"gl-mat4/identity\":265,\"gl-mat4/multiply\":268,\"gl-mat4/scale\":275,\"gl-mat4/translate\":276}],433:[function(t,e,r){\"use strict\";e.exports=Math.log2||function(t){return Math.log(t)*Math.LOG2E}},{}],434:[function(t,e,r){\"use strict\";var n=t(\"binary-search-bounds\"),a=t(\"mat4-interpolate\"),i=t(\"gl-mat4/invert\"),o=t(\"gl-mat4/rotateX\"),s=t(\"gl-mat4/rotateY\"),l=t(\"gl-mat4/rotateZ\"),c=t(\"gl-mat4/lookAt\"),u=t(\"gl-mat4/translate\"),h=(t(\"gl-mat4/scale\"),t(\"gl-vec3/normalize\")),f=[0,0,0];function p(t){this._components=t.slice(),this._time=[0],this.prevMatrix=t.slice(),this.nextMatrix=t.slice(),this.computedMatrix=t.slice(),this.computedInverse=t.slice(),this.computedEye=[0,0,0],this.computedUp=[0,0,0],this.computedCenter=[0,0,0],this.computedRadius=[0],this._limits=[-1/0,1/0]}e.exports=function(t){return new p((t=t||{}).matrix||[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1])};var d=p.prototype;d.recalcMatrix=function(t){var e=this._time,r=n.le(e,t),o=this.computedMatrix;if(!(r<0)){var s=this._components;if(r===e.length-1)for(var l=16*r,c=0;c<16;++c)o[c]=s[l++];else{var u=e[r+1]-e[r],f=(l=16*r,this.prevMatrix),p=!0;for(c=0;c<16;++c)f[c]=s[l++];var d=this.nextMatrix;for(c=0;c<16;++c)d[c]=s[l++],p=p&&f[c]===d[c];if(u<1e-6||p)for(c=0;c<16;++c)o[c]=f[c];else a(o,f,d,(t-e[r])/u)}var g=this.computedUp;g[0]=o[1],g[1]=o[5],g[2]=o[9],h(g,g);var v=this.computedInverse;i(v,o);var m=this.computedEye,y=v[15];m[0]=v[12]/y,m[1]=v[13]/y,m[2]=v[14]/y;var x=this.computedCenter,b=Math.exp(this.computedRadius[0]);for(c=0;c<3;++c)x[c]=m[c]-o[2+4*c]*b}},d.idle=function(t){if(!(t<this.lastT())){for(var e=this._components,r=e.length-16,n=0;n<16;++n)e.push(e[r++]);this._time.push(t)}},d.flush=function(t){var e=n.gt(this._time,t)-2;e<0||(this._time.splice(0,e),this._components.splice(0,16*e))},d.lastT=function(){return this._time[this._time.length-1]},d.lookAt=function(t,e,r,n){this.recalcMatrix(t),e=e||this.computedEye,r=r||f,n=n||this.computedUp,this.setMatrix(t,c(this.computedMatrix,e,r,n));for(var a=0,i=0;i<3;++i)a+=Math.pow(r[i]-e[i],2);a=Math.log(Math.sqrt(a)),this.computedRadius[0]=a},d.rotate=function(t,e,r,n){this.recalcMatrix(t);var a=this.computedInverse;e&&s(a,a,e),r&&o(a,a,r),n&&l(a,a,n),this.setMatrix(t,i(this.computedMatrix,a))};var g=[0,0,0];d.pan=function(t,e,r,n){g[0]=-(e||0),g[1]=-(r||0),g[2]=-(n||0),this.recalcMatrix(t);var a=this.computedInverse;u(a,a,g),this.setMatrix(t,i(a,a))},d.translate=function(t,e,r,n){g[0]=e||0,g[1]=r||0,g[2]=n||0,this.recalcMatrix(t);var a=this.computedMatrix;u(a,a,g),this.setMatrix(t,a)},d.setMatrix=function(t,e){if(!(t<this.lastT())){this._time.push(t);for(var r=0;r<16;++r)this._components.push(e[r])}},d.setDistance=function(t,e){this.computedRadius[0]=e},d.setDistanceLimits=function(t,e){var r=this._limits;r[0]=t,r[1]=e},d.getDistanceLimits=function(t){var e=this._limits;return t?(t[0]=e[0],t[1]=e[1],t):e}},{\"binary-search-bounds\":92,\"gl-mat4/invert\":266,\"gl-mat4/lookAt\":267,\"gl-mat4/rotateX\":272,\"gl-mat4/rotateY\":273,\"gl-mat4/rotateZ\":274,\"gl-mat4/scale\":275,\"gl-mat4/translate\":276,\"gl-vec3/normalize\":357,\"mat4-interpolate\":431}],435:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.length;if(e<3){for(var r=new Array(e),a=0;a<e;++a)r[a]=a;return 2===e&&t[0][0]===t[1][0]&&t[0][1]===t[1][1]?[0]:r}for(var i=new Array(e),a=0;a<e;++a)i[a]=a;i.sort(function(e,r){var n=t[e][0]-t[r][0];return n||t[e][1]-t[r][1]});for(var o=[i[0],i[1]],s=[i[0],i[1]],a=2;a<e;++a){for(var l=i[a],c=t[l],u=o.length;u>1&&n(t[o[u-2]],t[o[u-1]],c)<=0;)u-=1,o.pop();for(o.push(l),u=s.length;u>1&&n(t[s[u-2]],t[s[u-1]],c)>=0;)u-=1,s.pop();s.push(l)}for(var r=new Array(s.length+o.length-2),h=0,a=0,f=o.length;a<f;++a)r[h++]=o[a];for(var p=s.length-2;p>0;--p)r[h++]=s[p];return r};var n=t(\"robust-orientation\")[3]},{\"robust-orientation\":511}],436:[function(t,e,r){\"use strict\";e.exports=function(t,e){e||(e=t,t=window);var r=0,a=0,i=0,o={shift:!1,alt:!1,control:!1,meta:!1},s=!1;function l(t){var e=!1;return\"altKey\"in t&&(e=e||t.altKey!==o.alt,o.alt=!!t.altKey),\"shiftKey\"in t&&(e=e||t.shiftKey!==o.shift,o.shift=!!t.shiftKey),\"ctrlKey\"in t&&(e=e||t.ctrlKey!==o.control,o.control=!!t.ctrlKey),\"metaKey\"in t&&(e=e||t.metaKey!==o.meta,o.meta=!!t.metaKey),e}function c(t,s){var c=n.x(s),u=n.y(s);\"buttons\"in s&&(t=0|s.buttons),(t!==r||c!==a||u!==i||l(s))&&(r=0|t,a=c||0,i=u||0,e&&e(r,a,i,o))}function u(t){c(0,t)}function h(){(r||a||i||o.shift||o.alt||o.meta||o.control)&&(a=i=0,r=0,o.shift=o.alt=o.control=o.meta=!1,e&&e(0,0,0,o))}function f(t){l(t)&&e&&e(r,a,i,o)}function p(t){0===n.buttons(t)?c(0,t):c(r,t)}function d(t){c(r|n.buttons(t),t)}function g(t){c(r&~n.buttons(t),t)}function v(){s||(s=!0,t.addEventListener(\"mousemove\",p),t.addEventListener(\"mousedown\",d),t.addEventListener(\"mouseup\",g),t.addEventListener(\"mouseleave\",u),t.addEventListener(\"mouseenter\",u),t.addEventListener(\"mouseout\",u),t.addEventListener(\"mouseover\",u),t.addEventListener(\"blur\",h),t.addEventListener(\"keyup\",f),t.addEventListener(\"keydown\",f),t.addEventListener(\"keypress\",f),t!==window&&(window.addEventListener(\"blur\",h),window.addEventListener(\"keyup\",f),window.addEventListener(\"keydown\",f),window.addEventListener(\"keypress\",f)))}v();var m={element:t};return Object.defineProperties(m,{enabled:{get:function(){return s},set:function(e){e?v():s&&(s=!1,t.removeEventListener(\"mousemove\",p),t.removeEventListener(\"mousedown\",d),t.removeEventListener(\"mouseup\",g),t.removeEventListener(\"mouseleave\",u),t.removeEventListener(\"mouseenter\",u),t.removeEventListener(\"mouseout\",u),t.removeEventListener(\"mouseover\",u),t.removeEventListener(\"blur\",h),t.removeEventListener(\"keyup\",f),t.removeEventListener(\"keydown\",f),t.removeEventListener(\"keypress\",f),t!==window&&(window.removeEventListener(\"blur\",h),window.removeEventListener(\"keyup\",f),window.removeEventListener(\"keydown\",f),window.removeEventListener(\"keypress\",f)))},enumerable:!0},buttons:{get:function(){return r},enumerable:!0},x:{get:function(){return a},enumerable:!0},y:{get:function(){return i},enumerable:!0},mods:{get:function(){return o},enumerable:!0}}),m};var n=t(\"mouse-event\")},{\"mouse-event\":438}],437:[function(t,e,r){var n={left:0,top:0};e.exports=function(t,e,r){e=e||t.currentTarget||t.srcElement,Array.isArray(r)||(r=[0,0]);var a=t.clientX||0,i=t.clientY||0,o=(s=e,s===window||s===document||s===document.body?n:s.getBoundingClientRect());var s;return r[0]=a-o.left,r[1]=i-o.top,r}},{}],438:[function(t,e,r){\"use strict\";function n(t){return t.target||t.srcElement||window}r.buttons=function(t){if(\"object\"==typeof t){if(\"buttons\"in t)return t.buttons;if(\"which\"in t){if(2===(e=t.which))return 4;if(3===e)return 2;if(e>0)return 1<<e-1}else if(\"button\"in t){var e;if(1===(e=t.button))return 4;if(2===e)return 2;if(e>=0)return 1<<e}}return 0},r.element=n,r.x=function(t){if(\"object\"==typeof t){if(\"offsetX\"in t)return t.offsetX;var e=n(t).getBoundingClientRect();return t.clientX-e.left}return 0},r.y=function(t){if(\"object\"==typeof t){if(\"offsetY\"in t)return t.offsetY;var e=n(t).getBoundingClientRect();return t.clientY-e.top}return 0}},{}],439:[function(t,e,r){\"use strict\";var n=t(\"to-px\");e.exports=function(t,e,r){\"function\"==typeof t&&(r=!!e,e=t,t=window);var a=n(\"ex\",t),i=function(t){r&&t.preventDefault();var n=t.deltaX||0,i=t.deltaY||0,o=t.deltaZ||0,s=t.deltaMode,l=1;switch(s){case 1:l=a;break;case 2:l=window.innerHeight}if(i*=l,o*=l,(n*=l)||i||o)return e(n,i,o,t)};return t.addEventListener(\"wheel\",i),i}},{\"to-px\":540}],440:[function(t,e,r){\"use strict\";var n=t(\"typedarray-pool\");function a(t){return\"a\"+t}function i(t){return\"d\"+t}function o(t,e){return\"c\"+t+\"_\"+e}function s(t){return\"s\"+t}function l(t,e){return\"t\"+t+\"_\"+e}function c(t){return\"o\"+t}function u(t){return\"x\"+t}function h(t){return\"p\"+t}function f(t,e){return\"d\"+t+\"_\"+e}function p(t){return\"i\"+t}function d(t,e){return\"u\"+t+\"_\"+e}function g(t){return\"b\"+t}function v(t){return\"y\"+t}function m(t){return\"e\"+t}function y(t){return\"v\"+t}e.exports=function(t){function e(t){throw new Error(\"ndarray-extract-contour: \"+t)}\"object\"!=typeof t&&e(\"Must specify arguments\");var r=t.order;Array.isArray(r)||e(\"Must specify order\");var M=t.arrayArguments||1;M<1&&e(\"Must have at least one array argument\");var S=t.scalarArguments||0;S<0&&e(\"Scalar arg count must be > 0\");\"function\"!=typeof t.vertex&&e(\"Must specify vertex creation function\");\"function\"!=typeof t.cell&&e(\"Must specify cell creation function\");\"function\"!=typeof t.phase&&e(\"Must specify phase function\");for(var E=t.getters||[],C=new Array(M),L=0;L<M;++L)E.indexOf(L)>=0?C[L]=!0:C[L]=!1;return function(t,e,r,M,S,E){var C=E.length,L=S.length;if(L<2)throw new Error(\"ndarray-extract-contour: Dimension must be at least 2\");for(var P=\"extractContour\"+S.join(\"_\"),O=[],I=[],z=[],D=0;D<C;++D)z.push(a(D));for(var D=0;D<M;++D)z.push(u(D));for(var D=0;D<L;++D)I.push(s(D)+\"=\"+a(0)+\".shape[\"+D+\"]|0\");for(var D=0;D<C;++D){I.push(i(D)+\"=\"+a(D)+\".data\",c(D)+\"=\"+a(D)+\".offset|0\");for(var R=0;R<L;++R)I.push(l(D,R)+\"=\"+a(D)+\".stride[\"+R+\"]|0\")}for(var D=0;D<C;++D){I.push(h(D)+\"=\"+c(D)),I.push(o(D,0));for(var R=1;R<1<<L;++R){for(var F=[],B=0;B<L;++B)R&1<<B&&F.push(\"-\"+l(D,B));I.push(f(D,R)+\"=(\"+F.join(\"\")+\")|0\"),I.push(o(D,R)+\"=0\")}}for(var D=0;D<C;++D)for(var R=0;R<L;++R){var N=[l(D,S[R])];R>0&&N.push(l(D,S[R-1])+\"*\"+s(S[R-1])),I.push(d(D,S[R])+\"=(\"+N.join(\"-\")+\")|0\")}for(var D=0;D<L;++D)I.push(p(D)+\"=0\");I.push(_+\"=0\");for(var j=[\"2\"],D=L-2;D>=0;--D)j.push(s(S[D]));I.push(w+\"=(\"+j.join(\"*\")+\")|0\",b+\"=mallocUint32(\"+w+\")\",x+\"=mallocUint32(\"+w+\")\",k+\"=0\"),I.push(g(0)+\"=0\");for(var R=1;R<1<<L;++R){for(var V=[],U=[],B=0;B<L;++B)R&1<<B&&(0===U.length?V.push(\"1\"):V.unshift(U.join(\"*\"))),U.push(s(S[B]));var q=\"\";V[0].indexOf(s(S[L-2]))<0&&(q=\"-\");var H=A(L,R,S);I.push(m(H)+\"=(-\"+V.join(\"-\")+\")|0\",v(H)+\"=(\"+q+V.join(\"-\")+\")|0\",g(H)+\"=0\")}function G(t,e){O.push(\"for(\",p(S[t]),\"=\",e,\";\",p(S[t]),\"<\",s(S[t]),\";\",\"++\",p(S[t]),\"){\")}function Y(t){for(var e=0;e<C;++e)O.push(h(e),\"+=\",d(e,S[t]),\";\");O.push(\"}\")}function W(){for(var t=1;t<1<<L;++t)O.push(T,\"=\",m(t),\";\",m(t),\"=\",v(t),\";\",v(t),\"=\",T,\";\")}I.push(y(0)+\"=0\",T+\"=0\"),function t(e,r){if(e<0)return void function(t){for(var e=0;e<C;++e)E[e]?O.push(o(e,0),\"=\",i(e),\".get(\",h(e),\");\"):O.push(o(e,0),\"=\",i(e),\"[\",h(e),\"];\");for(var r=[],e=0;e<C;++e)r.push(o(e,0));for(var e=0;e<M;++e)r.push(u(e));O.push(g(0),\"=\",b,\"[\",k,\"]=phase(\",r.join(),\");\");for(var n=1;n<1<<L;++n)O.push(g(n),\"=\",b,\"[\",k,\"+\",m(n),\"];\");for(var a=[],n=1;n<1<<L;++n)a.push(\"(\"+g(0)+\"!==\"+g(n)+\")\");O.push(\"if(\",a.join(\"||\"),\"){\");for(var s=[],e=0;e<L;++e)s.push(p(e));for(var e=0;e<C;++e){s.push(o(e,0));for(var n=1;n<1<<L;++n)E[e]?O.push(o(e,n),\"=\",i(e),\".get(\",h(e),\"+\",f(e,n),\");\"):O.push(o(e,n),\"=\",i(e),\"[\",h(e),\"+\",f(e,n),\"];\"),s.push(o(e,n))}for(var e=0;e<1<<L;++e)s.push(g(e));for(var e=0;e<M;++e)s.push(u(e));O.push(\"vertex(\",s.join(),\");\",y(0),\"=\",x,\"[\",k,\"]=\",_,\"++;\");for(var l=(1<<L)-1,c=g(l),n=0;n<L;++n)if(0==(t&~(1<<n))){for(var d=l^1<<n,v=g(d),w=[],T=d;T>0;T=T-1&d)w.push(x+\"[\"+k+\"+\"+m(T)+\"]\");w.push(y(0));for(var T=0;T<C;++T)1&n?w.push(o(T,l),o(T,d)):w.push(o(T,d),o(T,l));1&n?w.push(c,v):w.push(v,c);for(var T=0;T<M;++T)w.push(u(T));O.push(\"if(\",c,\"!==\",v,\"){\",\"face(\",w.join(),\")}\")}O.push(\"}\",k,\"+=1;\")}(r);!function(t){for(var e=t-1;e>=0;--e)G(e,0);for(var r=[],e=0;e<C;++e)E[e]?r.push(i(e)+\".get(\"+h(e)+\")\"):r.push(i(e)+\"[\"+h(e)+\"]\");for(var e=0;e<M;++e)r.push(u(e));O.push(b,\"[\",k,\"++]=phase(\",r.join(),\");\");for(var e=0;e<t;++e)Y(e);for(var n=0;n<C;++n)O.push(h(n),\"+=\",d(n,S[t]),\";\")}(e);O.push(\"if(\",s(S[e]),\">0){\",p(S[e]),\"=1;\");t(e-1,r|1<<S[e]);for(var n=0;n<C;++n)O.push(h(n),\"+=\",d(n,S[e]),\";\");e===L-1&&(O.push(k,\"=0;\"),W());G(e,2);t(e-1,r);e===L-1&&(O.push(\"if(\",p(S[L-1]),\"&1){\",k,\"=0;}\"),W());Y(e);O.push(\"}\")}(L-1,0),O.push(\"freeUint32(\",x,\");freeUint32(\",b,\");\");var X=[\"'use strict';\",\"function \",P,\"(\",z.join(),\"){\",\"var \",I.join(),\";\",O.join(\"\"),\"}\",\"return \",P].join(\"\");return new Function(\"vertex\",\"face\",\"phase\",\"mallocUint32\",\"freeUint32\",X)(t,e,r,n.mallocUint32,n.freeUint32)}(t.vertex,t.cell,t.phase,S,r,C)};var x=\"V\",b=\"P\",_=\"N\",w=\"Q\",k=\"X\",T=\"T\";function A(t,e,r){for(var n=0,a=0;a<t;++a)e&1<<a&&(n|=1<<r[a]);return n}},{\"typedarray-pool\":546}],441:[function(t,e,r){\"use strict\";var n=t(\"cwise/lib/wrapper\")({args:[\"index\",\"array\",\"scalar\"],pre:{body:\"{}\",args:[],thisVars:[],localVars:[]},body:{body:\"{_inline_1_arg1_=_inline_1_arg2_.apply(void 0,_inline_1_arg0_)}\",args:[{name:\"_inline_1_arg0_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_1_arg1_\",lvalue:!0,rvalue:!1,count:1},{name:\"_inline_1_arg2_\",lvalue:!1,rvalue:!0,count:1}],thisVars:[],localVars:[]},post:{body:\"{}\",args:[],thisVars:[],localVars:[]},debug:!1,funcName:\"cwise\",blockSize:64});e.exports=function(t,e){return n(t,e),t}},{\"cwise/lib/wrapper\":150}],442:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){if(Array.isArray(r)){if(r.length!==e.dimension)throw new Error(\"ndarray-gradient: invalid boundary conditions\")}else r=n(e.dimension,\"string\"==typeof r?r:\"clamp\");if(t.dimension!==e.dimension+1)throw new Error(\"ndarray-gradient: output dimension must be +1 input dimension\");if(t.shape[e.dimension]!==e.dimension)throw new Error(\"ndarray-gradient: output shape must match input shape\");for(var a=0;a<e.dimension;++a)if(t.shape[a]!==e.shape[a])throw new Error(\"ndarray-gradient: shape mismatch\");if(0===e.size)return t;if(e.dimension<=0)return t.set(0),t;return function(t){var e=t.join();if(m=o[e])return m;var r=t.length,n=[\"function gradient(dst,src){var s=src.shape.slice();\"];function a(e){for(var a=r-e.length,i=[],o=[],s=[],l=0;l<r;++l)e.indexOf(l+1)>=0?s.push(\"0\"):e.indexOf(-(l+1))>=0?s.push(\"s[\"+l+\"]-1\"):(s.push(\"-1\"),i.push(\"1\"),o.push(\"s[\"+l+\"]-2\"));var c=\".lo(\"+i.join()+\").hi(\"+o.join()+\")\";if(0===i.length&&(c=\"\"),a>0){n.push(\"if(1\");for(var l=0;l<r;++l)e.indexOf(l+1)>=0||e.indexOf(-(l+1))>=0||n.push(\"&&s[\",l,\"]>2\");n.push(\"){grad\",a,\"(src.pick(\",s.join(),\")\",c);for(var l=0;l<r;++l)e.indexOf(l+1)>=0||e.indexOf(-(l+1))>=0||n.push(\",dst.pick(\",s.join(),\",\",l,\")\",c);n.push(\");\")}for(var l=0;l<e.length;++l){var u=Math.abs(e[l])-1,h=\"dst.pick(\"+s.join()+\",\"+u+\")\"+c;switch(t[u]){case\"clamp\":var f=s.slice(),p=s.slice();e[l]<0?f[u]=\"s[\"+u+\"]-2\":p[u]=\"1\",0===a?n.push(\"if(s[\",u,\"]>1){dst.set(\",s.join(),\",\",u,\",0.5*(src.get(\",f.join(),\")-src.get(\",p.join(),\")))}else{dst.set(\",s.join(),\",\",u,\",0)};\"):n.push(\"if(s[\",u,\"]>1){diff(\",h,\",src.pick(\",f.join(),\")\",c,\",src.pick(\",p.join(),\")\",c,\");}else{zero(\",h,\");};\");break;case\"mirror\":0===a?n.push(\"dst.set(\",s.join(),\",\",u,\",0);\"):n.push(\"zero(\",h,\");\");break;case\"wrap\":var d=s.slice(),g=s.slice();e[l]<0?(d[u]=\"s[\"+u+\"]-2\",g[u]=\"0\"):(d[u]=\"s[\"+u+\"]-1\",g[u]=\"1\"),0===a?n.push(\"if(s[\",u,\"]>2){dst.set(\",s.join(),\",\",u,\",0.5*(src.get(\",d.join(),\")-src.get(\",g.join(),\")))}else{dst.set(\",s.join(),\",\",u,\",0)};\"):n.push(\"if(s[\",u,\"]>2){diff(\",h,\",src.pick(\",d.join(),\")\",c,\",src.pick(\",g.join(),\")\",c,\");}else{zero(\",h,\");};\");break;default:throw new Error(\"ndarray-gradient: Invalid boundary condition\")}}a>0&&n.push(\"};\")}for(var s=0;s<1<<r;++s){for(var h=[],f=0;f<r;++f)s&1<<f&&h.push(f+1);for(var p=0;p<1<<h.length;++p){for(var d=h.slice(),f=0;f<h.length;++f)p&1<<f&&(d[f]=-d[f]);a(d)}}n.push(\"return dst;};return gradient\");for(var g=[\"diff\",\"zero\"],v=[l,c],s=1;s<=r;++s)g.push(\"grad\"+s),v.push(u(s));g.push(n.join(\"\"));var m=Function.apply(void 0,g).apply(void 0,v);return i[e]=m,m}(r)(t,e)};var n=t(\"dup\"),a=t(\"cwise-compiler\"),i={},o={},s={body:\"\",args:[],thisVars:[],localVars:[]},l=a({args:[\"array\",\"array\",\"array\"],pre:s,post:s,body:{args:[{name:\"out\",lvalue:!0,rvalue:!1,count:1},{name:\"left\",lvalue:!1,rvalue:!0,count:1},{name:\"right\",lvalue:!1,rvalue:!0,count:1}],body:\"out=0.5*(left-right)\",thisVars:[],localVars:[]},funcName:\"cdiff\"}),c=a({args:[\"array\"],pre:s,post:s,body:{args:[{name:\"out\",lvalue:!0,rvalue:!1,count:1}],body:\"out=0\",thisVars:[],localVars:[]},funcName:\"zero\"});function u(t){if(t in i)return i[t];for(var e=[],r=0;r<t;++r)e.push(\"out\",r,\"s=0.5*(inp\",r,\"l-inp\",r,\"r);\");var o=[\"array\"],l=[\"junk\"];for(r=0;r<t;++r){o.push(\"array\"),l.push(\"out\"+r+\"s\");var c=n(t);c[r]=-1,o.push({array:0,offset:c.slice()}),c[r]=1,o.push({array:0,offset:c.slice()}),l.push(\"inp\"+r+\"l\",\"inp\"+r+\"r\")}return i[t]=a({args:o,pre:s,post:s,body:{body:e.join(\"\"),args:l.map(function(t){return{name:t,lvalue:0===t.indexOf(\"out\"),rvalue:0===t.indexOf(\"inp\"),count:\"junk\"!==t|0}}),thisVars:[],localVars:[]},funcName:\"fdTemplate\"+t})}},{\"cwise-compiler\":147,dup:171}],443:[function(t,e,r){\"use strict\";var n=t(\"ndarray-warp\"),a=t(\"gl-matrix-invert\");e.exports=function(t,e,r){var i=e.dimension,o=a([],r);return n(t,e,function(t,e){for(var r=0;r<i;++r){t[r]=o[(i+1)*i+r];for(var n=0;n<i;++n)t[r]+=o[(i+1)*n+r]*e[n]}var a=o[(i+1)*(i+1)-1];for(n=0;n<i;++n)a+=o[(i+1)*n+i]*e[n];var s=1/a;for(r=0;r<i;++r)t[r]*=s;return t}),t}},{\"gl-matrix-invert\":278,\"ndarray-warp\":450}],444:[function(t,e,r){\"use strict\";function n(t,e){var r=Math.floor(e),n=e-r,a=0<=r&&r<t.shape[0],i=0<=r+1&&r+1<t.shape[0];return(1-n)*(a?+t.get(r):0)+n*(i?+t.get(r+1):0)}function a(t,e,r){var n=Math.floor(e),a=e-n,i=0<=n&&n<t.shape[0],o=0<=n+1&&n+1<t.shape[0],s=Math.floor(r),l=r-s,c=0<=s&&s<t.shape[1],u=0<=s+1&&s+1<t.shape[1],h=i&&c?t.get(n,s):0,f=i&&u?t.get(n,s+1):0;return(1-l)*((1-a)*h+a*(o&&c?t.get(n+1,s):0))+l*((1-a)*f+a*(o&&u?t.get(n+1,s+1):0))}function i(t,e,r,n){var a=Math.floor(e),i=e-a,o=0<=a&&a<t.shape[0],s=0<=a+1&&a+1<t.shape[0],l=Math.floor(r),c=r-l,u=0<=l&&l<t.shape[1],h=0<=l+1&&l+1<t.shape[1],f=Math.floor(n),p=n-f,d=0<=f&&f<t.shape[2],g=0<=f+1&&f+1<t.shape[2],v=o&&u&&d?t.get(a,l,f):0,m=o&&h&&d?t.get(a,l+1,f):0,y=s&&u&&d?t.get(a+1,l,f):0,x=s&&h&&d?t.get(a+1,l+1,f):0,b=o&&u&&g?t.get(a,l,f+1):0,_=o&&h&&g?t.get(a,l+1,f+1):0;return(1-p)*((1-c)*((1-i)*v+i*y)+c*((1-i)*m+i*x))+p*((1-c)*((1-i)*b+i*(s&&u&&g?t.get(a+1,l,f+1):0))+c*((1-i)*_+i*(s&&h&&g?t.get(a+1,l+1,f+1):0)))}e.exports=function(t,e,r,o){switch(t.shape.length){case 0:return 0;case 1:return n(t,e);case 2:return a(t,e,r);case 3:return i(t,e,r,o);default:return function(t){var e,r,n=0|t.shape.length,a=new Array(n),i=new Array(n),o=new Array(n),s=new Array(n);for(e=0;e<n;++e)r=+arguments[e+1],a[e]=Math.floor(r),i[e]=r-a[e],o[e]=0<=a[e]&&a[e]<t.shape[e],s[e]=0<=a[e]+1&&a[e]+1<t.shape[e];var l,c,u,h=0;t:for(e=0;e<1<<n;++e){for(c=1,u=t.offset,l=0;l<n;++l)if(e&1<<l){if(!s[l])continue t;c*=i[l],u+=t.stride[l]*(a[l]+1)}else{if(!o[l])continue t;c*=1-i[l],u+=t.stride[l]*a[l]}h+=c*t.data[u]}return h}.apply(void 0,arguments)}},e.exports.d1=n,e.exports.d2=a,e.exports.d3=i},{}],445:[function(t,e,r){\"use strict\";var n=t(\"cwise-compiler\"),a={body:\"\",args:[],thisVars:[],localVars:[]};function i(t){if(!t)return a;for(var e=0;e<t.args.length;++e){var r=t.args[e];t.args[e]=0===e?{name:r,lvalue:!0,rvalue:!!t.rvalue,count:t.count||1}:{name:r,lvalue:!1,rvalue:!0,count:1}}return t.thisVars||(t.thisVars=[]),t.localVars||(t.localVars=[]),t}function o(t){for(var e=[],r=0;r<t.args.length;++r)e.push(\"a\"+r);return new Function(\"P\",[\"return function \",t.funcName,\"_ndarrayops(\",e.join(\",\"),\") {P(\",e.join(\",\"),\");return a0}\"].join(\"\"))(function(t){return n({args:t.args,pre:i(t.pre),body:i(t.body),post:i(t.proc),funcName:t.funcName})}(t))}var s={add:\"+\",sub:\"-\",mul:\"*\",div:\"/\",mod:\"%\",band:\"&\",bor:\"|\",bxor:\"^\",lshift:\"<<\",rshift:\">>\",rrshift:\">>>\"};!function(){for(var t in s){var e=s[t];r[t]=o({args:[\"array\",\"array\",\"array\"],body:{args:[\"a\",\"b\",\"c\"],body:\"a=b\"+e+\"c\"},funcName:t}),r[t+\"eq\"]=o({args:[\"array\",\"array\"],body:{args:[\"a\",\"b\"],body:\"a\"+e+\"=b\"},rvalue:!0,funcName:t+\"eq\"}),r[t+\"s\"]=o({args:[\"array\",\"array\",\"scalar\"],body:{args:[\"a\",\"b\",\"s\"],body:\"a=b\"+e+\"s\"},funcName:t+\"s\"}),r[t+\"seq\"]=o({args:[\"array\",\"scalar\"],body:{args:[\"a\",\"s\"],body:\"a\"+e+\"=s\"},rvalue:!0,funcName:t+\"seq\"})}}();var l={not:\"!\",bnot:\"~\",neg:\"-\",recip:\"1.0/\"};!function(){for(var t in l){var e=l[t];r[t]=o({args:[\"array\",\"array\"],body:{args:[\"a\",\"b\"],body:\"a=\"+e+\"b\"},funcName:t}),r[t+\"eq\"]=o({args:[\"array\"],body:{args:[\"a\"],body:\"a=\"+e+\"a\"},rvalue:!0,count:2,funcName:t+\"eq\"})}}();var c={and:\"&&\",or:\"||\",eq:\"===\",neq:\"!==\",lt:\"<\",gt:\">\",leq:\"<=\",geq:\">=\"};!function(){for(var t in c){var e=c[t];r[t]=o({args:[\"array\",\"array\",\"array\"],body:{args:[\"a\",\"b\",\"c\"],body:\"a=b\"+e+\"c\"},funcName:t}),r[t+\"s\"]=o({args:[\"array\",\"array\",\"scalar\"],body:{args:[\"a\",\"b\",\"s\"],body:\"a=b\"+e+\"s\"},funcName:t+\"s\"}),r[t+\"eq\"]=o({args:[\"array\",\"array\"],body:{args:[\"a\",\"b\"],body:\"a=a\"+e+\"b\"},rvalue:!0,count:2,funcName:t+\"eq\"}),r[t+\"seq\"]=o({args:[\"array\",\"scalar\"],body:{args:[\"a\",\"s\"],body:\"a=a\"+e+\"s\"},rvalue:!0,count:2,funcName:t+\"seq\"})}}();var u=[\"abs\",\"acos\",\"asin\",\"atan\",\"ceil\",\"cos\",\"exp\",\"floor\",\"log\",\"round\",\"sin\",\"sqrt\",\"tan\"];!function(){for(var t=0;t<u.length;++t){var e=u[t];r[e]=o({args:[\"array\",\"array\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\",\"b\"],body:\"a=this_f(b)\",thisVars:[\"this_f\"]},funcName:e}),r[e+\"eq\"]=o({args:[\"array\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\"],body:\"a=this_f(a)\",thisVars:[\"this_f\"]},rvalue:!0,count:2,funcName:e+\"eq\"})}}();var h=[\"max\",\"min\",\"atan2\",\"pow\"];!function(){for(var t=0;t<h.length;++t){var e=h[t];r[e]=o({args:[\"array\",\"array\",\"array\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\",\"b\",\"c\"],body:\"a=this_f(b,c)\",thisVars:[\"this_f\"]},funcName:e}),r[e+\"s\"]=o({args:[\"array\",\"array\",\"scalar\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\",\"b\",\"c\"],body:\"a=this_f(b,c)\",thisVars:[\"this_f\"]},funcName:e+\"s\"}),r[e+\"eq\"]=o({args:[\"array\",\"array\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\",\"b\"],body:\"a=this_f(a,b)\",thisVars:[\"this_f\"]},rvalue:!0,count:2,funcName:e+\"eq\"}),r[e+\"seq\"]=o({args:[\"array\",\"scalar\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\",\"b\"],body:\"a=this_f(a,b)\",thisVars:[\"this_f\"]},rvalue:!0,count:2,funcName:e+\"seq\"})}}();var f=[\"atan2\",\"pow\"];!function(){for(var t=0;t<f.length;++t){var e=f[t];r[e+\"op\"]=o({args:[\"array\",\"array\",\"array\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\",\"b\",\"c\"],body:\"a=this_f(c,b)\",thisVars:[\"this_f\"]},funcName:e+\"op\"}),r[e+\"ops\"]=o({args:[\"array\",\"array\",\"scalar\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\",\"b\",\"c\"],body:\"a=this_f(c,b)\",thisVars:[\"this_f\"]},funcName:e+\"ops\"}),r[e+\"opeq\"]=o({args:[\"array\",\"array\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\",\"b\"],body:\"a=this_f(b,a)\",thisVars:[\"this_f\"]},rvalue:!0,count:2,funcName:e+\"opeq\"}),r[e+\"opseq\"]=o({args:[\"array\",\"scalar\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\",\"b\"],body:\"a=this_f(b,a)\",thisVars:[\"this_f\"]},rvalue:!0,count:2,funcName:e+\"opseq\"})}}(),r.any=n({args:[\"array\"],pre:a,body:{args:[{name:\"a\",lvalue:!1,rvalue:!0,count:1}],body:\"if(a){return true}\",localVars:[],thisVars:[]},post:{args:[],localVars:[],thisVars:[],body:\"return false\"},funcName:\"any\"}),r.all=n({args:[\"array\"],pre:a,body:{args:[{name:\"x\",lvalue:!1,rvalue:!0,count:1}],body:\"if(!x){return false}\",localVars:[],thisVars:[]},post:{args:[],localVars:[],thisVars:[],body:\"return true\"},funcName:\"all\"}),r.sum=n({args:[\"array\"],pre:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"this_s=0\"},body:{args:[{name:\"a\",lvalue:!1,rvalue:!0,count:1}],body:\"this_s+=a\",localVars:[],thisVars:[\"this_s\"]},post:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"return this_s\"},funcName:\"sum\"}),r.prod=n({args:[\"array\"],pre:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"this_s=1\"},body:{args:[{name:\"a\",lvalue:!1,rvalue:!0,count:1}],body:\"this_s*=a\",localVars:[],thisVars:[\"this_s\"]},post:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"return this_s\"},funcName:\"prod\"}),r.norm2squared=n({args:[\"array\"],pre:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"this_s=0\"},body:{args:[{name:\"a\",lvalue:!1,rvalue:!0,count:2}],body:\"this_s+=a*a\",localVars:[],thisVars:[\"this_s\"]},post:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"return this_s\"},funcName:\"norm2squared\"}),r.norm2=n({args:[\"array\"],pre:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"this_s=0\"},body:{args:[{name:\"a\",lvalue:!1,rvalue:!0,count:2}],body:\"this_s+=a*a\",localVars:[],thisVars:[\"this_s\"]},post:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"return Math.sqrt(this_s)\"},funcName:\"norm2\"}),r.norminf=n({args:[\"array\"],pre:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"this_s=0\"},body:{args:[{name:\"a\",lvalue:!1,rvalue:!0,count:4}],body:\"if(-a>this_s){this_s=-a}else if(a>this_s){this_s=a}\",localVars:[],thisVars:[\"this_s\"]},post:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"return this_s\"},funcName:\"norminf\"}),r.norm1=n({args:[\"array\"],pre:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"this_s=0\"},body:{args:[{name:\"a\",lvalue:!1,rvalue:!0,count:3}],body:\"this_s+=a<0?-a:a\",localVars:[],thisVars:[\"this_s\"]},post:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"return this_s\"},funcName:\"norm1\"}),r.sup=n({args:[\"array\"],pre:{body:\"this_h=-Infinity\",args:[],thisVars:[\"this_h\"],localVars:[]},body:{body:\"if(_inline_1_arg0_>this_h)this_h=_inline_1_arg0_\",args:[{name:\"_inline_1_arg0_\",lvalue:!1,rvalue:!0,count:2}],thisVars:[\"this_h\"],localVars:[]},post:{body:\"return this_h\",args:[],thisVars:[\"this_h\"],localVars:[]}}),r.inf=n({args:[\"array\"],pre:{body:\"this_h=Infinity\",args:[],thisVars:[\"this_h\"],localVars:[]},body:{body:\"if(_inline_1_arg0_<this_h)this_h=_inline_1_arg0_\",args:[{name:\"_inline_1_arg0_\",lvalue:!1,rvalue:!0,count:2}],thisVars:[\"this_h\"],localVars:[]},post:{body:\"return this_h\",args:[],thisVars:[\"this_h\"],localVars:[]}}),r.argmin=n({args:[\"index\",\"array\",\"shape\"],pre:{body:\"{this_v=Infinity;this_i=_inline_0_arg2_.slice(0)}\",args:[{name:\"_inline_0_arg0_\",lvalue:!1,rvalue:!1,count:0},{name:\"_inline_0_arg1_\",lvalue:!1,rvalue:!1,count:0},{name:\"_inline_0_arg2_\",lvalue:!1,rvalue:!0,count:1}],thisVars:[\"this_i\",\"this_v\"],localVars:[]},body:{body:\"{if(_inline_1_arg1_<this_v){this_v=_inline_1_arg1_;for(var _inline_1_k=0;_inline_1_k<_inline_1_arg0_.length;++_inline_1_k){this_i[_inline_1_k]=_inline_1_arg0_[_inline_1_k]}}}\",args:[{name:\"_inline_1_arg0_\",lvalue:!1,rvalue:!0,count:2},{name:\"_inline_1_arg1_\",lvalue:!1,rvalue:!0,count:2}],thisVars:[\"this_i\",\"this_v\"],localVars:[\"_inline_1_k\"]},post:{body:\"{return this_i}\",args:[],thisVars:[\"this_i\"],localVars:[]}}),r.argmax=n({args:[\"index\",\"array\",\"shape\"],pre:{body:\"{this_v=-Infinity;this_i=_inline_0_arg2_.slice(0)}\",args:[{name:\"_inline_0_arg0_\",lvalue:!1,rvalue:!1,count:0},{name:\"_inline_0_arg1_\",lvalue:!1,rvalue:!1,count:0},{name:\"_inline_0_arg2_\",lvalue:!1,rvalue:!0,count:1}],thisVars:[\"this_i\",\"this_v\"],localVars:[]},body:{body:\"{if(_inline_1_arg1_>this_v){this_v=_inline_1_arg1_;for(var _inline_1_k=0;_inline_1_k<_inline_1_arg0_.length;++_inline_1_k){this_i[_inline_1_k]=_inline_1_arg0_[_inline_1_k]}}}\",args:[{name:\"_inline_1_arg0_\",lvalue:!1,rvalue:!0,count:2},{name:\"_inline_1_arg1_\",lvalue:!1,rvalue:!0,count:2}],thisVars:[\"this_i\",\"this_v\"],localVars:[\"_inline_1_k\"]},post:{body:\"{return this_i}\",args:[],thisVars:[\"this_i\"],localVars:[]}}),r.random=o({args:[\"array\"],pre:{args:[],body:\"this_f=Math.random\",thisVars:[\"this_f\"]},body:{args:[\"a\"],body:\"a=this_f()\",thisVars:[\"this_f\"]},funcName:\"random\"}),r.assign=o({args:[\"array\",\"array\"],body:{args:[\"a\",\"b\"],body:\"a=b\"},funcName:\"assign\"}),r.assigns=o({args:[\"array\",\"scalar\"],body:{args:[\"a\",\"b\"],body:\"a=b\"},funcName:\"assigns\"}),r.equals=n({args:[\"array\",\"array\"],pre:a,body:{args:[{name:\"x\",lvalue:!1,rvalue:!0,count:1},{name:\"y\",lvalue:!1,rvalue:!0,count:1}],body:\"if(x!==y){return false}\",localVars:[],thisVars:[]},post:{args:[],localVars:[],thisVars:[],body:\"return true\"},funcName:\"equals\"})},{\"cwise-compiler\":147}],446:[function(t,e,r){\"use strict\";var n=t(\"ndarray\"),a=t(\"./doConvert.js\");e.exports=function(t,e){for(var r=[],i=t,o=1;Array.isArray(i);)r.push(i.length),o*=i.length,i=i[0];return 0===r.length?n():(e||(e=n(new Float64Array(o),r)),a(e,t),e)}},{\"./doConvert.js\":447,ndarray:451}],447:[function(t,e,r){e.exports=t(\"cwise-compiler\")({args:[\"array\",\"scalar\",\"index\"],pre:{body:\"{}\",args:[],thisVars:[],localVars:[]},body:{body:\"{\\nvar _inline_1_v=_inline_1_arg1_,_inline_1_i\\nfor(_inline_1_i=0;_inline_1_i<_inline_1_arg2_.length-1;++_inline_1_i) {\\n_inline_1_v=_inline_1_v[_inline_1_arg2_[_inline_1_i]]\\n}\\n_inline_1_arg0_=_inline_1_v[_inline_1_arg2_[_inline_1_arg2_.length-1]]\\n}\",args:[{name:\"_inline_1_arg0_\",lvalue:!0,rvalue:!1,count:1},{name:\"_inline_1_arg1_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_1_arg2_\",lvalue:!1,rvalue:!0,count:4}],thisVars:[],localVars:[\"_inline_1_i\",\"_inline_1_v\"]},post:{body:\"{}\",args:[],thisVars:[],localVars:[]},funcName:\"convert\",blockSize:64})},{\"cwise-compiler\":147}],448:[function(t,e,r){\"use strict\";var n=t(\"typedarray-pool\"),a=32;function i(t){switch(t){case\"uint8\":return[n.mallocUint8,n.freeUint8];case\"uint16\":return[n.mallocUint16,n.freeUint16];case\"uint32\":return[n.mallocUint32,n.freeUint32];case\"int8\":return[n.mallocInt8,n.freeInt8];case\"int16\":return[n.mallocInt16,n.freeInt16];case\"int32\":return[n.mallocInt32,n.freeInt32];case\"float32\":return[n.mallocFloat,n.freeFloat];case\"float64\":return[n.mallocDouble,n.freeDouble];default:return null}}function o(t){for(var e=[],r=0;r<t;++r)e.push(\"s\"+r);for(r=0;r<t;++r)e.push(\"n\"+r);for(r=1;r<t;++r)e.push(\"d\"+r);for(r=1;r<t;++r)e.push(\"e\"+r);for(r=1;r<t;++r)e.push(\"f\"+r);return e}e.exports=function(t,e){var r=[\"'use strict'\"],n=[\"ndarraySortWrapper\",t.join(\"d\"),e].join(\"\");r.push([\"function \",n,\"(\",[\"array\"].join(\",\"),\"){\"].join(\"\"));for(var s=[\"data=array.data,offset=array.offset|0,shape=array.shape,stride=array.stride\"],l=0;l<t.length;++l)s.push([\"s\",l,\"=stride[\",l,\"]|0,n\",l,\"=shape[\",l,\"]|0\"].join(\"\"));var c=new Array(t.length),u=[];for(l=0;l<t.length;++l)0!==(p=t[l])&&(0===u.length?c[p]=\"1\":c[p]=u.join(\"*\"),u.push(\"n\"+p));var h=-1,f=-1;for(l=0;l<t.length;++l){var p,d=t[l];0!==d&&(h>0?s.push([\"d\",d,\"=s\",d,\"-d\",h,\"*n\",h].join(\"\")):s.push([\"d\",d,\"=s\",d].join(\"\")),h=d),0!=(p=t.length-1-l)&&(f>0?s.push([\"e\",p,\"=s\",p,\"-e\",f,\"*n\",f,\",f\",p,\"=\",c[p],\"-f\",f,\"*n\",f].join(\"\")):s.push([\"e\",p,\"=s\",p,\",f\",p,\"=\",c[p]].join(\"\")),f=p)}r.push(\"var \"+s.join(\",\"));var g=[\"0\",\"n0-1\",\"data\",\"offset\"].concat(o(t.length));r.push([\"if(n0<=\",a,\"){\",\"insertionSort(\",g.join(\",\"),\")}else{\",\"quickSort(\",g.join(\",\"),\")}\"].join(\"\")),r.push(\"}return \"+n);var v=new Function(\"insertionSort\",\"quickSort\",r.join(\"\\n\")),m=function(t,e){var r=[\"'use strict'\"],n=[\"ndarrayInsertionSort\",t.join(\"d\"),e].join(\"\"),a=[\"left\",\"right\",\"data\",\"offset\"].concat(o(t.length)),s=i(e),l=[\"i,j,cptr,ptr=left*s0+offset\"];if(t.length>1){for(var c=[],u=1;u<t.length;++u)l.push(\"i\"+u),c.push(\"n\"+u);s?l.push(\"scratch=malloc(\"+c.join(\"*\")+\")\"):l.push(\"scratch=new Array(\"+c.join(\"*\")+\")\"),l.push(\"dptr\",\"sptr\",\"a\",\"b\")}else l.push(\"scratch\");function h(t){return\"generic\"===e?[\"data.get(\",t,\")\"].join(\"\"):[\"data[\",t,\"]\"].join(\"\")}function f(t,r){return\"generic\"===e?[\"data.set(\",t,\",\",r,\")\"].join(\"\"):[\"data[\",t,\"]=\",r].join(\"\")}if(r.push([\"function \",n,\"(\",a.join(\",\"),\"){var \",l.join(\",\")].join(\"\"),\"for(i=left+1;i<=right;++i){\",\"j=i;ptr+=s0\",\"cptr=ptr\"),t.length>1){for(r.push(\"dptr=0;sptr=ptr\"),u=t.length-1;u>=0;--u)0!==(p=t[u])&&r.push([\"for(i\",p,\"=0;i\",p,\"<n\",p,\";++i\",p,\"){\"].join(\"\"));for(r.push(\"scratch[dptr++]=\",h(\"sptr\")),u=0;u<t.length;++u)0!==(p=t[u])&&r.push(\"sptr+=d\"+p,\"}\");for(r.push(\"__g:while(j--\\x3eleft){\",\"dptr=0\",\"sptr=cptr-s0\"),u=1;u<t.length;++u)1===u&&r.push(\"__l:\"),r.push([\"for(i\",u,\"=0;i\",u,\"<n\",u,\";++i\",u,\"){\"].join(\"\"));for(r.push([\"a=\",h(\"sptr\"),\"\\nb=scratch[dptr]\\nif(a<b){break __g}\\nif(a>b){break __l}\"].join(\"\")),u=t.length-1;u>=1;--u)r.push(\"sptr+=e\"+u,\"dptr+=f\"+u,\"}\");for(r.push(\"dptr=cptr;sptr=cptr-s0\"),u=t.length-1;u>=0;--u)0!==(p=t[u])&&r.push([\"for(i\",p,\"=0;i\",p,\"<n\",p,\";++i\",p,\"){\"].join(\"\"));for(r.push(f(\"dptr\",h(\"sptr\"))),u=0;u<t.length;++u)0!==(p=t[u])&&r.push([\"dptr+=d\",p,\";sptr+=d\",p].join(\"\"),\"}\");for(r.push(\"cptr-=s0\\n}\"),r.push(\"dptr=cptr;sptr=0\"),u=t.length-1;u>=0;--u)0!==(p=t[u])&&r.push([\"for(i\",p,\"=0;i\",p,\"<n\",p,\";++i\",p,\"){\"].join(\"\"));for(r.push(f(\"dptr\",\"scratch[sptr++]\")),u=0;u<t.length;++u){var p;0!==(p=t[u])&&r.push(\"dptr+=d\"+p,\"}\")}}else r.push(\"scratch=\"+h(\"ptr\"),\"while((j--\\x3eleft)&&(\"+h(\"cptr-s0\")+\">scratch)){\",f(\"cptr\",h(\"cptr-s0\")),\"cptr-=s0\",\"}\",f(\"cptr\",\"scratch\"));return r.push(\"}\"),t.length>1&&s&&r.push(\"free(scratch)\"),r.push(\"} return \"+n),s?new Function(\"malloc\",\"free\",r.join(\"\\n\"))(s[0],s[1]):new Function(r.join(\"\\n\"))()}(t,e),y=function(t,e,r){var n=[\"'use strict'\"],s=[\"ndarrayQuickSort\",t.join(\"d\"),e].join(\"\"),l=[\"left\",\"right\",\"data\",\"offset\"].concat(o(t.length)),c=i(e),u=0;n.push([\"function \",s,\"(\",l.join(\",\"),\"){\"].join(\"\"));var h=[\"sixth=((right-left+1)/6)|0\",\"index1=left+sixth\",\"index5=right-sixth\",\"index3=(left+right)>>1\",\"index2=index3-sixth\",\"index4=index3+sixth\",\"el1=index1\",\"el2=index2\",\"el3=index3\",\"el4=index4\",\"el5=index5\",\"less=left+1\",\"great=right-1\",\"pivots_are_equal=true\",\"tmp\",\"tmp0\",\"x\",\"y\",\"z\",\"k\",\"ptr0\",\"ptr1\",\"ptr2\",\"comp_pivot1=0\",\"comp_pivot2=0\",\"comp=0\"];if(t.length>1){for(var f=[],p=1;p<t.length;++p)f.push(\"n\"+p),h.push(\"i\"+p);for(p=0;p<8;++p)h.push(\"b_ptr\"+p);h.push(\"ptr3\",\"ptr4\",\"ptr5\",\"ptr6\",\"ptr7\",\"pivot_ptr\",\"ptr_shift\",\"elementSize=\"+f.join(\"*\")),c?h.push(\"pivot1=malloc(elementSize)\",\"pivot2=malloc(elementSize)\"):h.push(\"pivot1=new Array(elementSize),pivot2=new Array(elementSize)\")}else h.push(\"pivot1\",\"pivot2\");function d(t){return[\"(offset+\",t,\"*s0)\"].join(\"\")}function g(t){return\"generic\"===e?[\"data.get(\",t,\")\"].join(\"\"):[\"data[\",t,\"]\"].join(\"\")}function v(t,r){return\"generic\"===e?[\"data.set(\",t,\",\",r,\")\"].join(\"\"):[\"data[\",t,\"]=\",r].join(\"\")}function m(e,r,a){if(1===e.length)n.push(\"ptr0=\"+d(e[0]));else for(var i=0;i<e.length;++i)n.push([\"b_ptr\",i,\"=s0*\",e[i]].join(\"\"));for(r&&n.push(\"pivot_ptr=0\"),n.push(\"ptr_shift=offset\"),i=t.length-1;i>=0;--i)0!==(o=t[i])&&n.push([\"for(i\",o,\"=0;i\",o,\"<n\",o,\";++i\",o,\"){\"].join(\"\"));if(e.length>1)for(i=0;i<e.length;++i)n.push([\"ptr\",i,\"=b_ptr\",i,\"+ptr_shift\"].join(\"\"));for(n.push(a),r&&n.push(\"++pivot_ptr\"),i=0;i<t.length;++i){var o;0!==(o=t[i])&&(e.length>1?n.push(\"ptr_shift+=d\"+o):n.push(\"ptr0+=d\"+o),n.push(\"}\"))}}function y(e,r,a,i){if(1===r.length)n.push(\"ptr0=\"+d(r[0]));else{for(var o=0;o<r.length;++o)n.push([\"b_ptr\",o,\"=s0*\",r[o]].join(\"\"));n.push(\"ptr_shift=offset\")}for(a&&n.push(\"pivot_ptr=0\"),e&&n.push(e+\":\"),o=1;o<t.length;++o)n.push([\"for(i\",o,\"=0;i\",o,\"<n\",o,\";++i\",o,\"){\"].join(\"\"));if(r.length>1)for(o=0;o<r.length;++o)n.push([\"ptr\",o,\"=b_ptr\",o,\"+ptr_shift\"].join(\"\"));for(n.push(i),o=t.length-1;o>=1;--o)a&&n.push(\"pivot_ptr+=f\"+o),r.length>1?n.push(\"ptr_shift+=e\"+o):n.push(\"ptr0+=e\"+o),n.push(\"}\")}function x(){t.length>1&&c&&n.push(\"free(pivot1)\",\"free(pivot2)\")}function b(e,r){var a=\"el\"+e,i=\"el\"+r;if(t.length>1){var o=\"__l\"+ ++u;y(o,[a,i],!1,[\"comp=\",g(\"ptr0\"),\"-\",g(\"ptr1\"),\"\\n\",\"if(comp>0){tmp0=\",a,\";\",a,\"=\",i,\";\",i,\"=tmp0;break \",o,\"}\\n\",\"if(comp<0){break \",o,\"}\"].join(\"\"))}else n.push([\"if(\",g(d(a)),\">\",g(d(i)),\"){tmp0=\",a,\";\",a,\"=\",i,\";\",i,\"=tmp0}\"].join(\"\"))}function _(e,r){t.length>1?m([e,r],!1,v(\"ptr0\",g(\"ptr1\"))):n.push(v(d(e),g(d(r))))}function w(e,r,a){if(t.length>1){var i=\"__l\"+ ++u;y(i,[r],!0,[e,\"=\",g(\"ptr0\"),\"-pivot\",a,\"[pivot_ptr]\\n\",\"if(\",e,\"!==0){break \",i,\"}\"].join(\"\"))}else n.push([e,\"=\",g(d(r)),\"-pivot\",a].join(\"\"))}function k(e,r){t.length>1?m([e,r],!1,[\"tmp=\",g(\"ptr0\"),\"\\n\",v(\"ptr0\",g(\"ptr1\")),\"\\n\",v(\"ptr1\",\"tmp\")].join(\"\")):n.push([\"ptr0=\",d(e),\"\\n\",\"ptr1=\",d(r),\"\\n\",\"tmp=\",g(\"ptr0\"),\"\\n\",v(\"ptr0\",g(\"ptr1\")),\"\\n\",v(\"ptr1\",\"tmp\")].join(\"\"))}function T(e,r,a){t.length>1?(m([e,r,a],!1,[\"tmp=\",g(\"ptr0\"),\"\\n\",v(\"ptr0\",g(\"ptr1\")),\"\\n\",v(\"ptr1\",g(\"ptr2\")),\"\\n\",v(\"ptr2\",\"tmp\")].join(\"\")),n.push(\"++\"+r,\"--\"+a)):n.push([\"ptr0=\",d(e),\"\\n\",\"ptr1=\",d(r),\"\\n\",\"ptr2=\",d(a),\"\\n\",\"++\",r,\"\\n\",\"--\",a,\"\\n\",\"tmp=\",g(\"ptr0\"),\"\\n\",v(\"ptr0\",g(\"ptr1\")),\"\\n\",v(\"ptr1\",g(\"ptr2\")),\"\\n\",v(\"ptr2\",\"tmp\")].join(\"\"))}function A(t,e){k(t,e),n.push(\"--\"+e)}function M(e,r,a){t.length>1?m([e,r],!0,[v(\"ptr0\",g(\"ptr1\")),\"\\n\",v(\"ptr1\",[\"pivot\",a,\"[pivot_ptr]\"].join(\"\"))].join(\"\")):n.push(v(d(e),g(d(r))),v(d(r),\"pivot\"+a))}function S(e,r){n.push([\"if((\",r,\"-\",e,\")<=\",a,\"){\\n\",\"insertionSort(\",e,\",\",r,\",data,offset,\",o(t.length).join(\",\"),\")\\n\",\"}else{\\n\",s,\"(\",e,\",\",r,\",data,offset,\",o(t.length).join(\",\"),\")\\n\",\"}\"].join(\"\"))}function E(e,r,a){t.length>1?(n.push([\"__l\",++u,\":while(true){\"].join(\"\")),m([e],!0,[\"if(\",g(\"ptr0\"),\"!==pivot\",r,\"[pivot_ptr]){break __l\",u,\"}\"].join(\"\")),n.push(a,\"}\")):n.push([\"while(\",g(d(e)),\"===pivot\",r,\"){\",a,\"}\"].join(\"\"))}return n.push(\"var \"+h.join(\",\")),b(1,2),b(4,5),b(1,3),b(2,3),b(1,4),b(3,4),b(2,5),b(2,3),b(4,5),t.length>1?m([\"el1\",\"el2\",\"el3\",\"el4\",\"el5\",\"index1\",\"index3\",\"index5\"],!0,[\"pivot1[pivot_ptr]=\",g(\"ptr1\"),\"\\n\",\"pivot2[pivot_ptr]=\",g(\"ptr3\"),\"\\n\",\"pivots_are_equal=pivots_are_equal&&(pivot1[pivot_ptr]===pivot2[pivot_ptr])\\n\",\"x=\",g(\"ptr0\"),\"\\n\",\"y=\",g(\"ptr2\"),\"\\n\",\"z=\",g(\"ptr4\"),\"\\n\",v(\"ptr5\",\"x\"),\"\\n\",v(\"ptr6\",\"y\"),\"\\n\",v(\"ptr7\",\"z\")].join(\"\")):n.push([\"pivot1=\",g(d(\"el2\")),\"\\n\",\"pivot2=\",g(d(\"el4\")),\"\\n\",\"pivots_are_equal=pivot1===pivot2\\n\",\"x=\",g(d(\"el1\")),\"\\n\",\"y=\",g(d(\"el3\")),\"\\n\",\"z=\",g(d(\"el5\")),\"\\n\",v(d(\"index1\"),\"x\"),\"\\n\",v(d(\"index3\"),\"y\"),\"\\n\",v(d(\"index5\"),\"z\")].join(\"\")),_(\"index2\",\"left\"),_(\"index4\",\"right\"),n.push(\"if(pivots_are_equal){\"),n.push(\"for(k=less;k<=great;++k){\"),w(\"comp\",\"k\",1),n.push(\"if(comp===0){continue}\"),n.push(\"if(comp<0){\"),n.push(\"if(k!==less){\"),k(\"k\",\"less\"),n.push(\"}\"),n.push(\"++less\"),n.push(\"}else{\"),n.push(\"while(true){\"),w(\"comp\",\"great\",1),n.push(\"if(comp>0){\"),n.push(\"great--\"),n.push(\"}else if(comp<0){\"),T(\"k\",\"less\",\"great\"),n.push(\"break\"),n.push(\"}else{\"),A(\"k\",\"great\"),n.push(\"break\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}else{\"),n.push(\"for(k=less;k<=great;++k){\"),w(\"comp_pivot1\",\"k\",1),n.push(\"if(comp_pivot1<0){\"),n.push(\"if(k!==less){\"),k(\"k\",\"less\"),n.push(\"}\"),n.push(\"++less\"),n.push(\"}else{\"),w(\"comp_pivot2\",\"k\",2),n.push(\"if(comp_pivot2>0){\"),n.push(\"while(true){\"),w(\"comp\",\"great\",2),n.push(\"if(comp>0){\"),n.push(\"if(--great<k){break}\"),n.push(\"continue\"),n.push(\"}else{\"),w(\"comp\",\"great\",1),n.push(\"if(comp<0){\"),T(\"k\",\"less\",\"great\"),n.push(\"}else{\"),A(\"k\",\"great\"),n.push(\"}\"),n.push(\"break\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),M(\"left\",\"(less-1)\",1),M(\"right\",\"(great+1)\",2),S(\"left\",\"(less-2)\"),S(\"(great+2)\",\"right\"),n.push(\"if(pivots_are_equal){\"),x(),n.push(\"return\"),n.push(\"}\"),n.push(\"if(less<index1&&great>index5){\"),E(\"less\",1,\"++less\"),E(\"great\",2,\"--great\"),n.push(\"for(k=less;k<=great;++k){\"),w(\"comp_pivot1\",\"k\",1),n.push(\"if(comp_pivot1===0){\"),n.push(\"if(k!==less){\"),k(\"k\",\"less\"),n.push(\"}\"),n.push(\"++less\"),n.push(\"}else{\"),w(\"comp_pivot2\",\"k\",2),n.push(\"if(comp_pivot2===0){\"),n.push(\"while(true){\"),w(\"comp\",\"great\",2),n.push(\"if(comp===0){\"),n.push(\"if(--great<k){break}\"),n.push(\"continue\"),n.push(\"}else{\"),w(\"comp\",\"great\",1),n.push(\"if(comp<0){\"),T(\"k\",\"less\",\"great\"),n.push(\"}else{\"),A(\"k\",\"great\"),n.push(\"}\"),n.push(\"break\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),x(),S(\"less\",\"great\"),n.push(\"}return \"+s),t.length>1&&c?new Function(\"insertionSort\",\"malloc\",\"free\",n.join(\"\\n\"))(r,c[0],c[1]):new Function(\"insertionSort\",n.join(\"\\n\"))(r)}(t,e,m);return v(m,y)}},{\"typedarray-pool\":546}],449:[function(t,e,r){\"use strict\";var n=t(\"./lib/compile_sort.js\"),a={};e.exports=function(t){var e=t.order,r=t.dtype,i=[e,r].join(\":\"),o=a[i];return o||(a[i]=o=n(e,r)),o(t),t}},{\"./lib/compile_sort.js\":448}],450:[function(t,e,r){\"use strict\";var n=t(\"ndarray-linear-interpolate\"),a=t(\"cwise/lib/wrapper\")({args:[\"index\",\"array\",\"scalar\",\"scalar\",\"scalar\"],pre:{body:\"{this_warped=new Array(_inline_3_arg4_)}\",args:[{name:\"_inline_3_arg0_\",lvalue:!1,rvalue:!1,count:0},{name:\"_inline_3_arg1_\",lvalue:!1,rvalue:!1,count:0},{name:\"_inline_3_arg2_\",lvalue:!1,rvalue:!1,count:0},{name:\"_inline_3_arg3_\",lvalue:!1,rvalue:!1,count:0},{name:\"_inline_3_arg4_\",lvalue:!1,rvalue:!0,count:1}],thisVars:[\"this_warped\"],localVars:[]},body:{body:\"{_inline_4_arg2_(this_warped,_inline_4_arg0_),_inline_4_arg1_=_inline_4_arg3_.apply(void 0,this_warped)}\",args:[{name:\"_inline_4_arg0_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_4_arg1_\",lvalue:!0,rvalue:!1,count:1},{name:\"_inline_4_arg2_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_4_arg3_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_4_arg4_\",lvalue:!1,rvalue:!1,count:0}],thisVars:[\"this_warped\"],localVars:[]},post:{body:\"{}\",args:[],thisVars:[],localVars:[]},debug:!1,funcName:\"warpND\",blockSize:64}),i=t(\"cwise/lib/wrapper\")({args:[\"index\",\"array\",\"scalar\",\"scalar\",\"scalar\"],pre:{body:\"{this_warped=[0]}\",args:[],thisVars:[\"this_warped\"],localVars:[]},body:{body:\"{_inline_7_arg2_(this_warped,_inline_7_arg0_),_inline_7_arg1_=_inline_7_arg3_(_inline_7_arg4_,this_warped[0])}\",args:[{name:\"_inline_7_arg0_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_7_arg1_\",lvalue:!0,rvalue:!1,count:1},{name:\"_inline_7_arg2_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_7_arg3_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_7_arg4_\",lvalue:!1,rvalue:!0,count:1}],thisVars:[\"this_warped\"],localVars:[]},post:{body:\"{}\",args:[],thisVars:[],localVars:[]},debug:!1,funcName:\"warp1D\",blockSize:64}),o=t(\"cwise/lib/wrapper\")({args:[\"index\",\"array\",\"scalar\",\"scalar\",\"scalar\"],pre:{body:\"{this_warped=[0,0]}\",args:[],thisVars:[\"this_warped\"],localVars:[]},body:{body:\"{_inline_10_arg2_(this_warped,_inline_10_arg0_),_inline_10_arg1_=_inline_10_arg3_(_inline_10_arg4_,this_warped[0],this_warped[1])}\",args:[{name:\"_inline_10_arg0_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_10_arg1_\",lvalue:!0,rvalue:!1,count:1},{name:\"_inline_10_arg2_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_10_arg3_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_10_arg4_\",lvalue:!1,rvalue:!0,count:1}],thisVars:[\"this_warped\"],localVars:[]},post:{body:\"{}\",args:[],thisVars:[],localVars:[]},debug:!1,funcName:\"warp2D\",blockSize:64}),s=t(\"cwise/lib/wrapper\")({args:[\"index\",\"array\",\"scalar\",\"scalar\",\"scalar\"],pre:{body:\"{this_warped=[0,0,0]}\",args:[],thisVars:[\"this_warped\"],localVars:[]},body:{body:\"{_inline_13_arg2_(this_warped,_inline_13_arg0_),_inline_13_arg1_=_inline_13_arg3_(_inline_13_arg4_,this_warped[0],this_warped[1],this_warped[2])}\",args:[{name:\"_inline_13_arg0_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_13_arg1_\",lvalue:!0,rvalue:!1,count:1},{name:\"_inline_13_arg2_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_13_arg3_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_13_arg4_\",lvalue:!1,rvalue:!0,count:1}],thisVars:[\"this_warped\"],localVars:[]},post:{body:\"{}\",args:[],thisVars:[],localVars:[]},debug:!1,funcName:\"warp3D\",blockSize:64});e.exports=function(t,e,r){switch(e.shape.length){case 1:i(t,r,n.d1,e);break;case 2:o(t,r,n.d2,e);break;case 3:s(t,r,n.d3,e);break;default:a(t,r,n.bind(void 0,e),e.shape.length)}return t}},{\"cwise/lib/wrapper\":150,\"ndarray-linear-interpolate\":444}],451:[function(t,e,r){var n=t(\"iota-array\"),a=t(\"is-buffer\"),i=\"undefined\"!=typeof Float64Array;function o(t,e){return t[0]-e[0]}function s(){var t,e=this.stride,r=new Array(e.length);for(t=0;t<r.length;++t)r[t]=[Math.abs(e[t]),t];r.sort(o);var n=new Array(r.length);for(t=0;t<n.length;++t)n[t]=r[t][1];return n}function l(t,e){var r=[\"View\",e,\"d\",t].join(\"\");e<0&&(r=\"View_Nil\"+t);var a=\"generic\"===t;if(-1===e){var i=\"function \"+r+\"(a){this.data=a;};var proto=\"+r+\".prototype;proto.dtype='\"+t+\"';proto.index=function(){return -1};proto.size=0;proto.dimension=-1;proto.shape=proto.stride=proto.order=[];proto.lo=proto.hi=proto.transpose=proto.step=function(){return new \"+r+\"(this.data);};proto.get=proto.set=function(){};proto.pick=function(){return null};return function construct_\"+r+\"(a){return new \"+r+\"(a);}\";return new Function(i)()}if(0===e){i=\"function \"+r+\"(a,d) {this.data = a;this.offset = d};var proto=\"+r+\".prototype;proto.dtype='\"+t+\"';proto.index=function(){return this.offset};proto.dimension=0;proto.size=1;proto.shape=proto.stride=proto.order=[];proto.lo=proto.hi=proto.transpose=proto.step=function \"+r+\"_copy() {return new \"+r+\"(this.data,this.offset)};proto.pick=function \"+r+\"_pick(){return TrivialArray(this.data);};proto.valueOf=proto.get=function \"+r+\"_get(){return \"+(a?\"this.data.get(this.offset)\":\"this.data[this.offset]\")+\"};proto.set=function \"+r+\"_set(v){return \"+(a?\"this.data.set(this.offset,v)\":\"this.data[this.offset]=v\")+\"};return function construct_\"+r+\"(a,b,c,d){return new \"+r+\"(a,d)}\";return new Function(\"TrivialArray\",i)(c[t][0])}i=[\"'use strict'\"];var o=n(e),l=o.map(function(t){return\"i\"+t}),u=\"this.offset+\"+o.map(function(t){return\"this.stride[\"+t+\"]*i\"+t}).join(\"+\"),h=o.map(function(t){return\"b\"+t}).join(\",\"),f=o.map(function(t){return\"c\"+t}).join(\",\");i.push(\"function \"+r+\"(a,\"+h+\",\"+f+\",d){this.data=a\",\"this.shape=[\"+h+\"]\",\"this.stride=[\"+f+\"]\",\"this.offset=d|0}\",\"var proto=\"+r+\".prototype\",\"proto.dtype='\"+t+\"'\",\"proto.dimension=\"+e),i.push(\"Object.defineProperty(proto,'size',{get:function \"+r+\"_size(){return \"+o.map(function(t){return\"this.shape[\"+t+\"]\"}).join(\"*\"),\"}})\"),1===e?i.push(\"proto.order=[0]\"):(i.push(\"Object.defineProperty(proto,'order',{get:\"),e<4?(i.push(\"function \"+r+\"_order(){\"),2===e?i.push(\"return (Math.abs(this.stride[0])>Math.abs(this.stride[1]))?[1,0]:[0,1]}})\"):3===e&&i.push(\"var s0=Math.abs(this.stride[0]),s1=Math.abs(this.stride[1]),s2=Math.abs(this.stride[2]);if(s0>s1){if(s1>s2){return [2,1,0];}else if(s0>s2){return [1,2,0];}else{return [1,0,2];}}else if(s0>s2){return [2,0,1];}else if(s2>s1){return [0,1,2];}else{return [0,2,1];}}})\")):i.push(\"ORDER})\")),i.push(\"proto.set=function \"+r+\"_set(\"+l.join(\",\")+\",v){\"),a?i.push(\"return this.data.set(\"+u+\",v)}\"):i.push(\"return this.data[\"+u+\"]=v}\"),i.push(\"proto.get=function \"+r+\"_get(\"+l.join(\",\")+\"){\"),a?i.push(\"return this.data.get(\"+u+\")}\"):i.push(\"return this.data[\"+u+\"]}\"),i.push(\"proto.index=function \"+r+\"_index(\",l.join(),\"){return \"+u+\"}\"),i.push(\"proto.hi=function \"+r+\"_hi(\"+l.join(\",\")+\"){return new \"+r+\"(this.data,\"+o.map(function(t){return[\"(typeof i\",t,\"!=='number'||i\",t,\"<0)?this.shape[\",t,\"]:i\",t,\"|0\"].join(\"\")}).join(\",\")+\",\"+o.map(function(t){return\"this.stride[\"+t+\"]\"}).join(\",\")+\",this.offset)}\");var p=o.map(function(t){return\"a\"+t+\"=this.shape[\"+t+\"]\"}),d=o.map(function(t){return\"c\"+t+\"=this.stride[\"+t+\"]\"});i.push(\"proto.lo=function \"+r+\"_lo(\"+l.join(\",\")+\"){var b=this.offset,d=0,\"+p.join(\",\")+\",\"+d.join(\",\"));for(var g=0;g<e;++g)i.push(\"if(typeof i\"+g+\"==='number'&&i\"+g+\">=0){d=i\"+g+\"|0;b+=c\"+g+\"*d;a\"+g+\"-=d}\");i.push(\"return new \"+r+\"(this.data,\"+o.map(function(t){return\"a\"+t}).join(\",\")+\",\"+o.map(function(t){return\"c\"+t}).join(\",\")+\",b)}\"),i.push(\"proto.step=function \"+r+\"_step(\"+l.join(\",\")+\"){var \"+o.map(function(t){return\"a\"+t+\"=this.shape[\"+t+\"]\"}).join(\",\")+\",\"+o.map(function(t){return\"b\"+t+\"=this.stride[\"+t+\"]\"}).join(\",\")+\",c=this.offset,d=0,ceil=Math.ceil\");for(g=0;g<e;++g)i.push(\"if(typeof i\"+g+\"==='number'){d=i\"+g+\"|0;if(d<0){c+=b\"+g+\"*(a\"+g+\"-1);a\"+g+\"=ceil(-a\"+g+\"/d)}else{a\"+g+\"=ceil(a\"+g+\"/d)}b\"+g+\"*=d}\");i.push(\"return new \"+r+\"(this.data,\"+o.map(function(t){return\"a\"+t}).join(\",\")+\",\"+o.map(function(t){return\"b\"+t}).join(\",\")+\",c)}\");var v=new Array(e),m=new Array(e);for(g=0;g<e;++g)v[g]=\"a[i\"+g+\"]\",m[g]=\"b[i\"+g+\"]\";i.push(\"proto.transpose=function \"+r+\"_transpose(\"+l+\"){\"+l.map(function(t,e){return t+\"=(\"+t+\"===undefined?\"+e+\":\"+t+\"|0)\"}).join(\";\"),\"var a=this.shape,b=this.stride;return new \"+r+\"(this.data,\"+v.join(\",\")+\",\"+m.join(\",\")+\",this.offset)}\"),i.push(\"proto.pick=function \"+r+\"_pick(\"+l+\"){var a=[],b=[],c=this.offset\");for(g=0;g<e;++g)i.push(\"if(typeof i\"+g+\"==='number'&&i\"+g+\">=0){c=(c+this.stride[\"+g+\"]*i\"+g+\")|0}else{a.push(this.shape[\"+g+\"]);b.push(this.stride[\"+g+\"])}\");return i.push(\"var ctor=CTOR_LIST[a.length+1];return ctor(this.data,a,b,c)}\"),i.push(\"return function construct_\"+r+\"(data,shape,stride,offset){return new \"+r+\"(data,\"+o.map(function(t){return\"shape[\"+t+\"]\"}).join(\",\")+\",\"+o.map(function(t){return\"stride[\"+t+\"]\"}).join(\",\")+\",offset)}\"),new Function(\"CTOR_LIST\",\"ORDER\",i.join(\"\\n\"))(c[t],s)}var c={float32:[],float64:[],int8:[],int16:[],int32:[],uint8:[],uint16:[],uint32:[],array:[],uint8_clamped:[],buffer:[],generic:[]};e.exports=function(t,e,r,n){if(void 0===t)return(0,c.array[0])([]);\"number\"==typeof t&&(t=[t]),void 0===e&&(e=[t.length]);var o=e.length;if(void 0===r){r=new Array(o);for(var s=o-1,u=1;s>=0;--s)r[s]=u,u*=e[s]}if(void 0===n)for(n=0,s=0;s<o;++s)r[s]<0&&(n-=(e[s]-1)*r[s]);for(var h=function(t){if(a(t))return\"buffer\";if(i)switch(Object.prototype.toString.call(t)){case\"[object Float64Array]\":return\"float64\";case\"[object Float32Array]\":return\"float32\";case\"[object Int8Array]\":return\"int8\";case\"[object Int16Array]\":return\"int16\";case\"[object Int32Array]\":return\"int32\";case\"[object Uint8Array]\":return\"uint8\";case\"[object Uint16Array]\":return\"uint16\";case\"[object Uint32Array]\":return\"uint32\";case\"[object Uint8ClampedArray]\":return\"uint8_clamped\"}return Array.isArray(t)?\"array\":\"generic\"}(t),f=c[h];f.length<=o+1;)f.push(l(h,f.length-1));return(0,f[o+1])(t,e,r,n)}},{\"iota-array\":417,\"is-buffer\":419}],452:[function(t,e,r){\"use strict\";var n=t(\"double-bits\"),a=Math.pow(2,-1074),i=-1>>>0;e.exports=function(t,e){if(isNaN(t)||isNaN(e))return NaN;if(t===e)return t;if(0===t)return e<0?-a:a;var r=n.hi(t),o=n.lo(t);e>t==t>0?o===i?(r+=1,o=0):o+=1:0===o?(o=i,r-=1):o-=1;return n.pack(o,r)}},{\"double-bits\":168}],453:[function(t,e,r){var n=Math.PI,a=c(120);function i(t,e,r,n){return[\"C\",t,e,r,n,r,n]}function o(t,e,r,n,a,i){return[\"C\",t/3+2/3*r,e/3+2/3*n,a/3+2/3*r,i/3+2/3*n,a,i]}function s(t,e,r,i,o,c,u,h,f,p){if(p)k=p[0],T=p[1],_=p[2],w=p[3];else{var d=l(t,e,-o);t=d.x,e=d.y;var g=(t-(h=(d=l(h,f,-o)).x))/2,v=(e-(f=d.y))/2,m=g*g/(r*r)+v*v/(i*i);m>1&&(r*=m=Math.sqrt(m),i*=m);var y=r*r,x=i*i,b=(c==u?-1:1)*Math.sqrt(Math.abs((y*x-y*v*v-x*g*g)/(y*v*v+x*g*g)));b==1/0&&(b=1);var _=b*r*v/i+(t+h)/2,w=b*-i*g/r+(e+f)/2,k=Math.asin(((e-w)/i).toFixed(9)),T=Math.asin(((f-w)/i).toFixed(9));(k=t<_?n-k:k)<0&&(k=2*n+k),(T=h<_?n-T:T)<0&&(T=2*n+T),u&&k>T&&(k-=2*n),!u&&T>k&&(T-=2*n)}if(Math.abs(T-k)>a){var A=T,M=h,S=f;T=k+a*(u&&T>k?1:-1);var E=s(h=_+r*Math.cos(T),f=w+i*Math.sin(T),r,i,o,0,u,M,S,[T,A,_,w])}var C=Math.tan((T-k)/4),L=4/3*r*C,P=4/3*i*C,O=[2*t-(t+L*Math.sin(k)),2*e-(e-P*Math.cos(k)),h+L*Math.sin(T),f-P*Math.cos(T),h,f];if(p)return O;E&&(O=O.concat(E));for(var I=0;I<O.length;){var z=l(O[I],O[I+1],o);O[I++]=z.x,O[I++]=z.y}return O}function l(t,e,r){return{x:t*Math.cos(r)-e*Math.sin(r),y:t*Math.sin(r)+e*Math.cos(r)}}function c(t){return t*(n/180)}e.exports=function(t){for(var e,r=[],n=0,a=0,l=0,u=0,h=null,f=null,p=0,d=0,g=0,v=t.length;g<v;g++){var m=t[g],y=m[0];switch(y){case\"M\":l=m[1],u=m[2];break;case\"A\":(m=s(p,d,m[1],m[2],c(m[3]),m[4],m[5],m[6],m[7])).unshift(\"C\"),m.length>7&&(r.push(m.splice(0,7)),m.unshift(\"C\"));break;case\"S\":var x=p,b=d;\"C\"!=e&&\"S\"!=e||(x+=x-n,b+=b-a),m=[\"C\",x,b,m[1],m[2],m[3],m[4]];break;case\"T\":\"Q\"==e||\"T\"==e?(h=2*p-h,f=2*d-f):(h=p,f=d),m=o(p,d,h,f,m[1],m[2]);break;case\"Q\":h=m[1],f=m[2],m=o(p,d,m[1],m[2],m[3],m[4]);break;case\"L\":m=i(p,d,m[1],m[2]);break;case\"H\":m=i(p,d,m[1],d);break;case\"V\":m=i(p,d,p,m[1]);break;case\"Z\":m=i(p,d,l,u)}e=y,p=m[m.length-2],d=m[m.length-1],m.length>4?(n=m[m.length-4],a=m[m.length-3]):(n=p,a=d),r.push(m)}return r}},{}],454:[function(t,e,r){r.vertexNormals=function(t,e,r){for(var n=e.length,a=new Array(n),i=void 0===r?1e-6:r,o=0;o<n;++o)a[o]=[0,0,0];for(o=0;o<t.length;++o)for(var s=t[o],l=0,c=s[s.length-1],u=s[0],h=0;h<s.length;++h){l=c,c=u,u=s[(h+1)%s.length];for(var f=e[l],p=e[c],d=e[u],g=new Array(3),v=0,m=new Array(3),y=0,x=0;x<3;++x)g[x]=f[x]-p[x],v+=g[x]*g[x],m[x]=d[x]-p[x],y+=m[x]*m[x];if(v*y>i){var b=a[c],_=1/Math.sqrt(v*y);for(x=0;x<3;++x){var w=(x+1)%3,k=(x+2)%3;b[x]+=_*(m[w]*g[k]-m[k]*g[w])}}}for(o=0;o<n;++o){b=a[o];var T=0;for(x=0;x<3;++x)T+=b[x]*b[x];if(T>i)for(_=1/Math.sqrt(T),x=0;x<3;++x)b[x]*=_;else for(x=0;x<3;++x)b[x]=0}return a},r.faceNormals=function(t,e,r){for(var n=t.length,a=new Array(n),i=void 0===r?1e-6:r,o=0;o<n;++o){for(var s=t[o],l=new Array(3),c=0;c<3;++c)l[c]=e[s[c]];var u=new Array(3),h=new Array(3);for(c=0;c<3;++c)u[c]=l[1][c]-l[0][c],h[c]=l[2][c]-l[0][c];var f=new Array(3),p=0;for(c=0;c<3;++c){var d=(c+1)%3,g=(c+2)%3;f[c]=u[d]*h[g]-u[g]*h[d],p+=f[c]*f[c]}p=p>i?1/Math.sqrt(p):0;for(c=0;c<3;++c)f[c]*=p;a[o]=f}return a}},{}],455:[function(t,e,r){\"use strict\";var n=Object.getOwnPropertySymbols,a=Object.prototype.hasOwnProperty,i=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var t=new String(\"abc\");if(t[5]=\"de\",\"5\"===Object.getOwnPropertyNames(t)[0])return!1;for(var e={},r=0;r<10;r++)e[\"_\"+String.fromCharCode(r)]=r;if(\"0123456789\"!==Object.getOwnPropertyNames(e).map(function(t){return e[t]}).join(\"\"))return!1;var n={};return\"abcdefghijklmnopqrst\".split(\"\").forEach(function(t){n[t]=t}),\"abcdefghijklmnopqrst\"===Object.keys(Object.assign({},n)).join(\"\")}catch(t){return!1}}()?Object.assign:function(t,e){for(var r,o,s=function(t){if(null==t)throw new TypeError(\"Object.assign cannot be called with null or undefined\");return Object(t)}(t),l=1;l<arguments.length;l++){for(var c in r=Object(arguments[l]))a.call(r,c)&&(s[c]=r[c]);if(n){o=n(r);for(var u=0;u<o.length;u++)i.call(r,o[u])&&(s[o[u]]=r[o[u]])}}return s}},{}],456:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,a,i,o,s,l,c){var u=e+i+c;if(h>0){var h=Math.sqrt(u+1);t[0]=.5*(o-l)/h,t[1]=.5*(s-n)/h,t[2]=.5*(r-i)/h,t[3]=.5*h}else{var f=Math.max(e,i,c),h=Math.sqrt(2*f-u+1);e>=f?(t[0]=.5*h,t[1]=.5*(a+r)/h,t[2]=.5*(s+n)/h,t[3]=.5*(o-l)/h):i>=f?(t[0]=.5*(r+a)/h,t[1]=.5*h,t[2]=.5*(l+o)/h,t[3]=.5*(s-n)/h):(t[0]=.5*(n+s)/h,t[1]=.5*(o+l)/h,t[2]=.5*h,t[3]=.5*(r-a)/h)}return t}},{}],457:[function(t,e,r){\"use strict\";e.exports=function(t){var e=(t=t||{}).center||[0,0,0],r=t.rotation||[0,0,0,1],n=t.radius||1;e=[].slice.call(e,0,3),u(r=[].slice.call(r,0,4),r);var a=new h(r,e,Math.log(n));a.setDistanceLimits(t.zoomMin,t.zoomMax),(\"eye\"in t||\"up\"in t)&&a.lookAt(0,t.eye,t.center,t.up);return a};var n=t(\"filtered-vector\"),a=t(\"gl-mat4/lookAt\"),i=t(\"gl-mat4/fromQuat\"),o=t(\"gl-mat4/invert\"),s=t(\"./lib/quatFromFrame\");function l(t,e,r){return Math.sqrt(Math.pow(t,2)+Math.pow(e,2)+Math.pow(r,2))}function c(t,e,r,n){return Math.sqrt(Math.pow(t,2)+Math.pow(e,2)+Math.pow(r,2)+Math.pow(n,2))}function u(t,e){var r=e[0],n=e[1],a=e[2],i=e[3],o=c(r,n,a,i);o>1e-6?(t[0]=r/o,t[1]=n/o,t[2]=a/o,t[3]=i/o):(t[0]=t[1]=t[2]=0,t[3]=1)}function h(t,e,r){this.radius=n([r]),this.center=n(e),this.rotation=n(t),this.computedRadius=this.radius.curve(0),this.computedCenter=this.center.curve(0),this.computedRotation=this.rotation.curve(0),this.computedUp=[.1,0,0],this.computedEye=[.1,0,0],this.computedMatrix=[.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],this.recalcMatrix(0)}var f=h.prototype;f.lastT=function(){return Math.max(this.radius.lastT(),this.center.lastT(),this.rotation.lastT())},f.recalcMatrix=function(t){this.radius.curve(t),this.center.curve(t),this.rotation.curve(t);var e=this.computedRotation;u(e,e);var r=this.computedMatrix;i(r,e);var n=this.computedCenter,a=this.computedEye,o=this.computedUp,s=Math.exp(this.computedRadius[0]);a[0]=n[0]+s*r[2],a[1]=n[1]+s*r[6],a[2]=n[2]+s*r[10],o[0]=r[1],o[1]=r[5],o[2]=r[9];for(var l=0;l<3;++l){for(var c=0,h=0;h<3;++h)c+=r[l+4*h]*a[h];r[12+l]=-c}},f.getMatrix=function(t,e){this.recalcMatrix(t);var r=this.computedMatrix;if(e){for(var n=0;n<16;++n)e[n]=r[n];return e}return r},f.idle=function(t){this.center.idle(t),this.radius.idle(t),this.rotation.idle(t)},f.flush=function(t){this.center.flush(t),this.radius.flush(t),this.rotation.flush(t)},f.pan=function(t,e,r,n){e=e||0,r=r||0,n=n||0,this.recalcMatrix(t);var a=this.computedMatrix,i=a[1],o=a[5],s=a[9],c=l(i,o,s);i/=c,o/=c,s/=c;var u=a[0],h=a[4],f=a[8],p=u*i+h*o+f*s,d=l(u-=i*p,h-=o*p,f-=s*p);u/=d,h/=d,f/=d;var g=a[2],v=a[6],m=a[10],y=g*i+v*o+m*s,x=g*u+v*h+m*f,b=l(g-=y*i+x*u,v-=y*o+x*h,m-=y*s+x*f);g/=b,v/=b,m/=b;var _=u*e+i*r,w=h*e+o*r,k=f*e+s*r;this.center.move(t,_,w,k);var T=Math.exp(this.computedRadius[0]);T=Math.max(1e-4,T+n),this.radius.set(t,Math.log(T))},f.rotate=function(t,e,r,n){this.recalcMatrix(t),e=e||0,r=r||0;var a=this.computedMatrix,i=a[0],o=a[4],s=a[8],u=a[1],h=a[5],f=a[9],p=a[2],d=a[6],g=a[10],v=e*i+r*u,m=e*o+r*h,y=e*s+r*f,x=-(d*y-g*m),b=-(g*v-p*y),_=-(p*m-d*v),w=Math.sqrt(Math.max(0,1-Math.pow(x,2)-Math.pow(b,2)-Math.pow(_,2))),k=c(x,b,_,w);k>1e-6?(x/=k,b/=k,_/=k,w/=k):(x=b=_=0,w=1);var T=this.computedRotation,A=T[0],M=T[1],S=T[2],E=T[3],C=A*w+E*x+M*_-S*b,L=M*w+E*b+S*x-A*_,P=S*w+E*_+A*b-M*x,O=E*w-A*x-M*b-S*_;if(n){x=p,b=d,_=g;var I=Math.sin(n)/l(x,b,_);x*=I,b*=I,_*=I,O=O*(w=Math.cos(e))-(C=C*w+O*x+L*_-P*b)*x-(L=L*w+O*b+P*x-C*_)*b-(P=P*w+O*_+C*b-L*x)*_}var z=c(C,L,P,O);z>1e-6?(C/=z,L/=z,P/=z,O/=z):(C=L=P=0,O=1),this.rotation.set(t,C,L,P,O)},f.lookAt=function(t,e,r,n){this.recalcMatrix(t),r=r||this.computedCenter,e=e||this.computedEye,n=n||this.computedUp;var i=this.computedMatrix;a(i,e,r,n);var o=this.computedRotation;s(o,i[0],i[1],i[2],i[4],i[5],i[6],i[8],i[9],i[10]),u(o,o),this.rotation.set(t,o[0],o[1],o[2],o[3]);for(var l=0,c=0;c<3;++c)l+=Math.pow(r[c]-e[c],2);this.radius.set(t,.5*Math.log(Math.max(l,1e-6))),this.center.set(t,r[0],r[1],r[2])},f.translate=function(t,e,r,n){this.center.move(t,e||0,r||0,n||0)},f.setMatrix=function(t,e){var r=this.computedRotation;s(r,e[0],e[1],e[2],e[4],e[5],e[6],e[8],e[9],e[10]),u(r,r),this.rotation.set(t,r[0],r[1],r[2],r[3]);var n=this.computedMatrix;o(n,e);var a=n[15];if(Math.abs(a)>1e-6){var i=n[12]/a,l=n[13]/a,c=n[14]/a;this.recalcMatrix(t);var h=Math.exp(this.computedRadius[0]);this.center.set(t,i-n[2]*h,l-n[6]*h,c-n[10]*h),this.radius.idle(t)}else this.center.idle(t),this.radius.idle(t)},f.setDistance=function(t,e){e>0&&this.radius.set(t,Math.log(e))},f.setDistanceLimits=function(t,e){t=t>0?Math.log(t):-1/0,e=e>0?Math.log(e):1/0,e=Math.max(e,t),this.radius.bounds[0][0]=t,this.radius.bounds[1][0]=e},f.getDistanceLimits=function(t){var e=this.radius.bounds;return t?(t[0]=Math.exp(e[0][0]),t[1]=Math.exp(e[1][0]),t):[Math.exp(e[0][0]),Math.exp(e[1][0])]},f.toJSON=function(){return this.recalcMatrix(this.lastT()),{center:this.computedCenter.slice(),rotation:this.computedRotation.slice(),distance:Math.log(this.computedRadius[0]),zoomMin:this.radius.bounds[0][0],zoomMax:this.radius.bounds[1][0]}},f.fromJSON=function(t){var e=this.lastT(),r=t.center;r&&this.center.set(e,r[0],r[1],r[2]);var n=t.rotation;n&&this.rotation.set(e,n[0],n[1],n[2],n[3]);var a=t.distance;a&&a>0&&this.radius.set(e,Math.log(a)),this.setDistanceLimits(t.zoomMin,t.zoomMax)}},{\"./lib/quatFromFrame\":456,\"filtered-vector\":227,\"gl-mat4/fromQuat\":263,\"gl-mat4/invert\":266,\"gl-mat4/lookAt\":267}],458:[function(t,e,r){\"use strict\";var n=t(\"repeat-string\");e.exports=function(t,e,r){return n(r=\"undefined\"!=typeof r?r+\"\":\" \",e)+t}},{\"repeat-string\":504}],459:[function(t,e,r){\"use strict\";function n(t,e){if(\"string\"!=typeof t)return[t];var r=[t];\"string\"==typeof e||Array.isArray(e)?e={brackets:e}:e||(e={});var n=e.brackets?Array.isArray(e.brackets)?e.brackets:[e.brackets]:[\"{}\",\"[]\",\"()\"],a=e.escape||\"___\",i=!!e.flat;n.forEach(function(t){var e=new RegExp([\"\\\\\",t[0],\"[^\\\\\",t[0],\"\\\\\",t[1],\"]*\\\\\",t[1]].join(\"\")),n=[];function i(e,i,o){var s=r.push(e.slice(t[0].length,-t[1].length))-1;return n.push(s),a+s+a}r.forEach(function(t,n){for(var a,o=0;t!=a;)if(a=t,t=t.replace(e,i),o++>1e4)throw Error(\"References have circular dependency. Please, check them.\");r[n]=t}),n=n.reverse(),r=r.map(function(e){return n.forEach(function(r){e=e.replace(new RegExp(\"(\\\\\"+a+r+\"\\\\\"+a+\")\",\"g\"),t[0]+\"$1\"+t[1])}),e})});var o=new RegExp(\"\\\\\"+a+\"([0-9]+)\\\\\"+a);return i?r:function t(e,r,n){for(var a,i=[],s=0;a=o.exec(e);){if(s++>1e4)throw Error(\"Circular references in parenthesis\");i.push(e.slice(0,a.index)),i.push(t(r[a[1]],r)),e=e.slice(a.index+a[0].length)}return i.push(e),i}(r[0],r)}function a(t,e){if(e&&e.flat){var r,n=e&&e.escape||\"___\",a=t[0];if(!a)return\"\";for(var i=new RegExp(\"\\\\\"+n+\"([0-9]+)\\\\\"+n),o=0;a!=r;){if(o++>1e4)throw Error(\"Circular references in \"+t);r=a,a=a.replace(i,s)}return a}return t.reduce(function t(e,r){return Array.isArray(r)&&(r=r.reduce(t,\"\")),e+r},\"\");function s(e,r){if(null==t[r])throw Error(\"Reference \"+r+\"is undefined\");return t[r]}}function i(t,e){return Array.isArray(t)?a(t,e):n(t,e)}i.parse=n,i.stringify=a,e.exports=i},{}],460:[function(t,e,r){\"use strict\";var n=t(\"pick-by-alias\");e.exports=function(t){var e;arguments.length>1&&(t=arguments);\"string\"==typeof t?t=t.split(/\\s/).map(parseFloat):\"number\"==typeof t&&(t=[t]);t.length&&\"number\"==typeof t[0]?e=1===t.length?{width:t[0],height:t[0],x:0,y:0}:2===t.length?{width:t[0],height:t[1],x:0,y:0}:{x:t[0],y:t[1],width:t[2]-t[0]||0,height:t[3]-t[1]||0}:t&&(t=n(t,{left:\"x l left Left\",top:\"y t top Top\",width:\"w width W Width\",height:\"h height W Width\",bottom:\"b bottom Bottom\",right:\"r right Right\"}),e={x:t.left||0,y:t.top||0},null==t.width?t.right?e.width=t.right-e.x:e.width=0:e.width=t.width,null==t.height?t.bottom?e.height=t.bottom-e.y:e.height=0:e.height=t.height);return e}},{\"pick-by-alias\":466}],461:[function(t,e,r){e.exports=function(t){var e=[];return t.replace(a,function(t,r,a){var o=r.toLowerCase();for(a=function(t){var e=t.match(i);return e?e.map(Number):[]}(a),\"m\"==o&&a.length>2&&(e.push([r].concat(a.splice(0,2))),o=\"l\",r=\"m\"==r?\"l\":\"L\");;){if(a.length==n[o])return a.unshift(r),e.push(a);if(a.length<n[o])throw new Error(\"malformed path data\");e.push([r].concat(a.splice(0,n[o])))}}),e};var n={a:7,c:6,h:1,l:2,m:2,q:4,s:4,t:2,v:1,z:0},a=/([astvzqmhlc])([^astvzqmhlc]*)/gi;var i=/-?[0-9]*\\.?[0-9]+(?:e[-+]?\\d+)?/gi},{}],462:[function(t,e,r){e.exports=function(t,e){e||(e=[0,\"\"]),t=String(t);var r=parseFloat(t,10);return e[0]=r,e[1]=t.match(/[\\d.\\-\\+]*\\s*(.*)/)[1]||\"\",e}},{}],463:[function(t,e,r){(function(t){(function(){var r,n,a,i,o,s;\"undefined\"!=typeof performance&&null!==performance&&performance.now?e.exports=function(){return performance.now()}:\"undefined\"!=typeof t&&null!==t&&t.hrtime?(e.exports=function(){return(r()-o)/1e6},n=t.hrtime,i=(r=function(){var t;return 1e9*(t=n())[0]+t[1]})(),s=1e9*t.uptime(),o=i-s):Date.now?(e.exports=function(){return Date.now()-a},a=Date.now()):(e.exports=function(){return(new Date).getTime()-a},a=(new Date).getTime())}).call(this)}).call(this,t(\"_process\"))},{_process:483}],464:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.length;if(e<n){for(var r=1,i=0;i<e;++i)for(var o=0;o<i;++o)if(t[i]<t[o])r=-r;else if(t[i]===t[o])return 0;return r}for(var s=a.mallocUint8(e),i=0;i<e;++i)s[i]=0;for(var r=1,i=0;i<e;++i)if(!s[i]){var l=1;s[i]=1;for(var o=t[i];o!==i;o=t[o]){if(s[o])return a.freeUint8(s),0;l+=1,s[o]=1}1&l||(r=-r)}return a.freeUint8(s),r};var n=32,a=t(\"typedarray-pool\")},{\"typedarray-pool\":546}],465:[function(t,e,r){\"use strict\";var n=t(\"typedarray-pool\"),a=t(\"invert-permutation\");r.rank=function(t){var e=t.length;switch(e){case 0:case 1:return 0;case 2:return t[1]}var r,i,o,s=n.mallocUint32(e),l=n.mallocUint32(e),c=0;for(a(t,l),o=0;o<e;++o)s[o]=t[o];for(o=e-1;o>0;--o)i=l[o],r=s[o],s[o]=s[i],s[i]=r,l[o]=l[r],l[r]=i,c=(c+r)*o;return n.freeUint32(l),n.freeUint32(s),c},r.unrank=function(t,e,r){switch(t){case 0:return r||[];case 1:return r?(r[0]=0,r):[0];case 2:return r?(e?(r[0]=0,r[1]=1):(r[0]=1,r[1]=0),r):e?[0,1]:[1,0]}var n,a,i,o=1;for((r=r||new Array(t))[0]=0,i=1;i<t;++i)r[i]=i,o=o*i|0;for(i=t-1;i>0;--i)e=e-(n=e/o|0)*o|0,o=o/i|0,a=0|r[i],r[i]=0|r[n],r[n]=0|a;return r}},{\"invert-permutation\":416,\"typedarray-pool\":546}],466:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){var n,i,o={};if(\"string\"==typeof e&&(e=a(e)),Array.isArray(e)){var s={};for(i=0;i<e.length;i++)s[e[i]]=!0;e=s}for(n in e)e[n]=a(e[n]);var l={};for(n in e){var c=e[n];if(Array.isArray(c))for(i=0;i<c.length;i++){var u=c[i];if(r&&(l[u]=!0),u in t){if(o[n]=t[u],r)for(var h=i;h<c.length;h++)l[c[h]]=!0;break}}else n in t&&(e[n]&&(o[n]=t[n]),r&&(l[n]=!0))}if(r)for(n in t)l[n]||(o[n]=t[n]);return o};var n={};function a(t){return n[t]?n[t]:(\"string\"==typeof t&&(t=n[t]=t.split(/\\s*,\\s*|\\s+/)),t)}},{}],467:[function(t,e,r){\"use strict\";e.exports=function(t,e){for(var r=0|e.length,a=t.length,i=[new Array(r),new Array(r)],o=0;o<r;++o)i[0][o]=[],i[1][o]=[];for(var o=0;o<a;++o){var s=t[o];i[0][s[0]].push(s),i[1][s[1]].push(s)}for(var l=[],o=0;o<r;++o)i[0][o].length+i[1][o].length===0&&l.push([o]);function c(t,e){var r=i[e][t[e]];r.splice(r.indexOf(t),1)}function u(t,r,a){for(var o,s,l,u=0;u<2;++u)if(i[u][r].length>0){o=i[u][r][0],l=u;break}s=o[1^l];for(var h=0;h<2;++h)for(var f=i[h][r],p=0;p<f.length;++p){var d=f[p],g=d[1^h],v=n(e[t],e[r],e[s],e[g]);v>0&&(o=d,s=g,l=h)}return a?s:(o&&c(o,l),s)}function h(t,r){var a=i[r][t][0],o=[t];c(a,r);for(var s=a[1^r];;){for(;s!==t;)o.push(s),s=u(o[o.length-2],s,!1);if(i[0][t].length+i[1][t].length===0)break;var l=o[o.length-1],h=t,f=o[1],p=u(l,h,!0);if(n(e[l],e[h],e[f],e[p])<0)break;o.push(t),s=u(l,h)}return o}function f(t,e){return e[1]===e[e.length-1]}for(var o=0;o<r;++o)for(var p=0;p<2;++p){for(var d=[];i[p][o].length>0;){i[0][o].length;var g=h(o,p);f(d,g)?d.push.apply(d,g):(d.length>0&&l.push(d),d=g)}d.length>0&&l.push(d)}return l};var n=t(\"compare-angle\")},{\"compare-angle\":128}],468:[function(t,e,r){\"use strict\";e.exports=function(t,e){for(var r=n(t,e.length),a=new Array(e.length),i=new Array(e.length),o=[],s=0;s<e.length;++s){var l=r[s].length;i[s]=l,a[s]=!0,l<=1&&o.push(s)}for(;o.length>0;){var c=o.pop();a[c]=!1;for(var u=r[c],s=0;s<u.length;++s){var h=u[s];0==--i[h]&&o.push(h)}}for(var f=new Array(e.length),p=[],s=0;s<e.length;++s)if(a[s]){var c=p.length;f[s]=c,p.push(e[s])}else f[s]=-1;for(var d=[],s=0;s<t.length;++s){var g=t[s];a[g[0]]&&a[g[1]]&&d.push([f[g[0]],f[g[1]]])}return[d,p]};var n=t(\"edges-to-adjacency-list\")},{\"edges-to-adjacency-list\":172}],469:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=c(t,e);t=r[0];for(var h=(e=r[1]).length,f=(t.length,n(t,e.length)),p=0;p<h;++p)if(f[p].length%2==1)throw new Error(\"planar-graph-to-polyline: graph must be manifold\");var d=a(t,e);for(var g=(d=d.filter(function(t){for(var r=t.length,n=[0],a=0;a<r;++a){var i=e[t[a]],l=e[t[(a+1)%r]],c=o(-i[0],i[1]),u=o(-i[0],l[1]),h=o(l[0],i[1]),f=o(l[0],l[1]);n=s(n,s(s(c,u),s(h,f)))}return n[n.length-1]>0})).length,v=new Array(g),m=new Array(g),p=0;p<g;++p){v[p]=p;var y=new Array(g),x=d[p].map(function(t){return e[t]}),b=i([x]),_=0;t:for(var w=0;w<g;++w)if(y[w]=0,p!==w){for(var k=d[w],T=k.length,A=0;A<T;++A){var M=b(e[k[A]]);if(0!==M){M<0&&(y[w]=1,_+=1);continue t}}y[w]=1,_+=1}m[p]=[_,p,y]}m.sort(function(t,e){return e[0]-t[0]});for(var p=0;p<g;++p)for(var y=m[p],S=y[1],E=y[2],w=0;w<g;++w)E[w]&&(v[w]=S);for(var C=function(t){for(var e=new Array(t),r=0;r<t;++r)e[r]=[];return e}(g),p=0;p<g;++p)C[p].push(v[p]),C[v[p]].push(p);for(var L={},P=u(h,!1),p=0;p<g;++p)for(var k=d[p],T=k.length,w=0;w<T;++w){var O=k[w],I=k[(w+1)%T],z=Math.min(O,I)+\":\"+Math.max(O,I);if(z in L){var D=L[z];C[D].push(p),C[p].push(D),P[O]=P[I]=!0}else L[z]=p}function R(t){for(var e=t.length,r=0;r<e;++r)if(!P[t[r]])return!1;return!0}for(var F=[],B=u(g,-1),p=0;p<g;++p)v[p]!==p||R(d[p])?B[p]=-1:(F.push(p),B[p]=0);var r=[];for(;F.length>0;){var N=F.pop(),j=C[N];l(j,function(t,e){return t-e});var V,U=j.length,q=B[N];if(0===q){var k=d[N];V=[k]}for(var p=0;p<U;++p){var H=j[p];if(!(B[H]>=0)&&(B[H]=1^q,F.push(H),0===q)){var k=d[H];R(k)||(k.reverse(),V.push(k))}}0===q&&r.push(V)}return r};var n=t(\"edges-to-adjacency-list\"),a=t(\"planar-dual\"),i=t(\"point-in-big-polygon\"),o=t(\"two-product\"),s=t(\"robust-sum\"),l=t(\"uniq\"),c=t(\"./lib/trim-leaves\");function u(t,e){for(var r=new Array(t),n=0;n<t;++n)r[n]=e;return r}},{\"./lib/trim-leaves\":468,\"edges-to-adjacency-list\":172,\"planar-dual\":467,\"point-in-big-polygon\":473,\"robust-sum\":516,\"two-product\":544,uniq:548}],470:[function(t,e,r){\"use strict\";e.exports=t(\"./quad\")},{\"./quad\":472}],471:[function(t,e,r){arguments[4][112][0].apply(r,arguments)},{dup:112}],472:[function(t,e,r){\"use strict\";var n=t(\"binary-search-bounds\"),a=t(\"clamp\"),i=t(\"parse-rect\"),o=t(\"array-bounds\"),s=t(\"pick-by-alias\"),l=t(\"defined\"),c=t(\"flatten-vertex-data\"),u=t(\"is-obj\"),h=t(\"dtype\"),f=t(\"math-log2\");function p(t,e){for(var r=e[0],n=e[1],i=1/(e[2]-r),o=1/(e[3]-n),s=new Array(t.length),l=0,c=t.length/2;l<c;l++)s[2*l]=a((t[2*l]-r)*i,0,1),s[2*l+1]=a((t[2*l+1]-n)*o,0,1);return s}e.exports=function(t,e){e||(e={}),t=c(t,\"float64\"),e=s(e,{bounds:\"range bounds dataBox databox\",maxDepth:\"depth maxDepth maxdepth level maxLevel maxlevel levels\",dtype:\"type dtype format out dst output destination\"});var r=l(e.maxDepth,255),a=l(e.bounds,o(t,2));a[0]===a[2]&&a[2]++,a[1]===a[3]&&a[3]++;var d,g=p(t,a),v=t.length>>>1;e.dtype||(e.dtype=\"array\"),\"string\"==typeof e.dtype?d=new(h(e.dtype))(v):e.dtype&&(d=e.dtype,Array.isArray(d)&&(d.length=v));for(var m=0;m<v;++m)d[m]=m;var y=[],x=[],b=[],_=[];!function t(e,n,a,i,o,s){if(!i.length)return null;var l=y[o]||(y[o]=[]);var c=b[o]||(b[o]=[]);var u=x[o]||(x[o]=[]);var h=l.length;o++;if(o>r){for(var f=0;f<i.length;f++)l.push(i[f]),c.push(s),u.push(null,null,null,null);return h}l.push(i[0]);c.push(s);if(i.length<=1)return u.push(null,null,null,null),h;var p=.5*a;var d=e+p,v=n+p;var m=[],_=[],w=[],k=[];for(var T=1,A=i.length;T<A;T++){var M=i[T],S=g[2*M],E=g[2*M+1];S<d?E<v?m.push(M):_.push(M):E<v?w.push(M):k.push(M)}s<<=2;u.push(t(e,n,p,m,o,s),t(e,v,p,_,o,s+1),t(d,n,p,w,o,s+2),t(d,v,p,k,o,s+3));return h}(0,0,1,d,0,1);for(var w=0,k=0;k<y.length;k++){var T=y[k];if(d.set)d.set(T,w);else for(var A=0,M=T.length;A<M;A++)d[A+w]=T[A];var S=w+y[k].length;_[k]=[w,S],w=S}return d.range=function(){var e,r=[],o=arguments.length;for(;o--;)r[o]=arguments[o];if(u(r[r.length-1])){var c=r.pop();r.length||null==c.x&&null==c.l&&null==c.left||(r=[c],e={}),e=s(c,{level:\"level maxLevel\",d:\"d diam diameter r radius px pxSize pixel pixelSize maxD size minSize\",lod:\"lod details ranges offsets\"})}else e={};r.length||(r=a);var h=i.apply(void 0,r),d=[Math.min(h.x,h.x+h.width),Math.min(h.y,h.y+h.height),Math.max(h.x,h.x+h.width),Math.max(h.y,h.y+h.height)],g=d[0],v=d[1],m=d[2],w=d[3],k=p([g,v,m,w],a),T=k[0],A=k[1],M=k[2],S=k[3],C=l(e.level,y.length);if(null!=e.d){var L;\"number\"==typeof e.d?L=[e.d,e.d]:e.d.length&&(L=e.d),C=Math.min(Math.max(Math.ceil(-f(Math.abs(L[0])/(a[2]-a[0]))),Math.ceil(-f(Math.abs(L[1])/(a[3]-a[1])))),C)}if(C=Math.min(C,y.length),e.lod)return function(t,e,r,a,i){for(var o=[],s=0;s<i;s++){var l=b[s],c=_[s][0],u=E(t,e,s),h=E(r,a,s),f=n.ge(l,u),p=n.gt(l,h,f,l.length-1);o[s]=[f+c,p+c]}return o}(T,A,M,S,C);var P=[];return function e(r,n,a,i,o,s){if(null!==o&&null!==s){var l=r+a,c=n+a;if(!(T>l||A>c||M<r||S<n||i>=C||o===s)){var u=y[i];void 0===s&&(s=u.length);for(var h=o;h<s;h++){var f=u[h],p=t[2*f],d=t[2*f+1];p>=g&&p<=m&&d>=v&&d<=w&&P.push(f)}var b=x[i],_=b[4*o+0],k=b[4*o+1],E=b[4*o+2],L=b[4*o+3],O=function(t,e){for(var r=null,n=0;null===r;)if(r=t[4*e+n],++n>t.length)return null;return r}(b,o+1),I=.5*a,z=i+1;e(r,n,I,z,_,k||E||L||O),e(r,n+I,I,z,k,E||L||O),e(r+I,n,I,z,E,L||O),e(r+I,n+I,I,z,L,O)}}}(0,0,1,0,0,1),P},d;function E(t,e,r){for(var n=1,a=.5,i=.5,o=.5,s=0;s<r;s++)n<<=2,n+=t<a?e<i?0:1:e<i?2:3,o*=.5,a+=t<a?-o:o,i+=e<i?-o:o;return n}}},{\"array-bounds\":66,\"binary-search-bounds\":471,clamp:116,defined:165,dtype:170,\"flatten-vertex-data\":228,\"is-obj\":422,\"math-log2\":433,\"parse-rect\":460,\"pick-by-alias\":466}],473:[function(t,e,r){e.exports=function(t){for(var e=t.length,r=[],i=[],s=0;s<e;++s)for(var u=t[s],h=u.length,f=h-1,p=0;p<h;f=p++){var d=u[f],g=u[p];d[0]===g[0]?i.push([d,g]):r.push([d,g])}if(0===r.length)return 0===i.length?c:(v=l(i),function(t){return v(t[0],t[1])?0:1});var v;var m=a(r),y=function(t,e){return function(r){var a=o.le(e,r[0]);if(a<0)return 1;var i=t[a];if(!i){if(!(a>0&&e[a]===r[0]))return 1;i=t[a-1]}for(var s=1;i;){var l=i.key,c=n(r,l[0],l[1]);if(l[0][0]<l[1][0])if(c<0)i=i.left;else{if(!(c>0))return 0;s=-1,i=i.right}else if(c>0)i=i.left;else{if(!(c<0))return 0;s=1,i=i.right}}return s}}(m.slabs,m.coordinates);return 0===i.length?y:function(t,e){return function(r){return t(r[0],r[1])?0:e(r)}}(l(i),y)};var n=t(\"robust-orientation\")[3],a=t(\"slab-decomposition\"),i=t(\"interval-tree-1d\"),o=t(\"binary-search-bounds\");function s(){return!0}function l(t){for(var e={},r=0;r<t.length;++r){var n=t[r],a=n[0][0],o=n[0][1],l=n[1][1],c=[Math.min(o,l),Math.max(o,l)];a in e?e[a].push(c):e[a]=[c]}var u={},h=Object.keys(e);for(r=0;r<h.length;++r){var f=e[h[r]];u[h[r]]=i(f)}return function(t){return function(e,r){var n=t[e];return!!n&&!!n.queryPoint(r,s)}}(u)}function c(t){return 1}},{\"binary-search-bounds\":92,\"interval-tree-1d\":415,\"robust-orientation\":511,\"slab-decomposition\":527}],474:[function(t,e,r){var n,a=t(\"./lib/build-log\"),i=t(\"./lib/epsilon\"),o=t(\"./lib/intersecter\"),s=t(\"./lib/segment-chainer\"),l=t(\"./lib/segment-selector\"),c=t(\"./lib/geojson\"),u=!1,h=i();function f(t,e,r){var a=n.segments(t),i=n.segments(e),o=r(n.combine(a,i));return n.polygon(o)}n={buildLog:function(t){return!0===t?u=a():!1===t&&(u=!1),!1!==u&&u.list},epsilon:function(t){return h.epsilon(t)},segments:function(t){var e=o(!0,h,u);return t.regions.forEach(e.addRegion),{segments:e.calculate(t.inverted),inverted:t.inverted}},combine:function(t,e){return{combined:o(!1,h,u).calculate(t.segments,t.inverted,e.segments,e.inverted),inverted1:t.inverted,inverted2:e.inverted}},selectUnion:function(t){return{segments:l.union(t.combined,u),inverted:t.inverted1||t.inverted2}},selectIntersect:function(t){return{segments:l.intersect(t.combined,u),inverted:t.inverted1&&t.inverted2}},selectDifference:function(t){return{segments:l.difference(t.combined,u),inverted:t.inverted1&&!t.inverted2}},selectDifferenceRev:function(t){return{segments:l.differenceRev(t.combined,u),inverted:!t.inverted1&&t.inverted2}},selectXor:function(t){return{segments:l.xor(t.combined,u),inverted:t.inverted1!==t.inverted2}},polygon:function(t){return{regions:s(t.segments,h,u),inverted:t.inverted}},polygonFromGeoJSON:function(t){return c.toPolygon(n,t)},polygonToGeoJSON:function(t){return c.fromPolygon(n,h,t)},union:function(t,e){return f(t,e,n.selectUnion)},intersect:function(t,e){return f(t,e,n.selectIntersect)},difference:function(t,e){return f(t,e,n.selectDifference)},differenceRev:function(t,e){return f(t,e,n.selectDifferenceRev)},xor:function(t,e){return f(t,e,n.selectXor)}},\"object\"==typeof window&&(window.PolyBool=n),e.exports=n},{\"./lib/build-log\":475,\"./lib/epsilon\":476,\"./lib/geojson\":477,\"./lib/intersecter\":478,\"./lib/segment-chainer\":480,\"./lib/segment-selector\":481}],475:[function(t,e,r){e.exports=function(){var t,e=0,r=!1;function n(e,r){return t.list.push({type:e,data:r?JSON.parse(JSON.stringify(r)):void 0}),t}return t={list:[],segmentId:function(){return e++},checkIntersection:function(t,e){return n(\"check\",{seg1:t,seg2:e})},segmentChop:function(t,e){return n(\"div_seg\",{seg:t,pt:e}),n(\"chop\",{seg:t,pt:e})},statusRemove:function(t){return n(\"pop_seg\",{seg:t})},segmentUpdate:function(t){return n(\"seg_update\",{seg:t})},segmentNew:function(t,e){return n(\"new_seg\",{seg:t,primary:e})},segmentRemove:function(t){return n(\"rem_seg\",{seg:t})},tempStatus:function(t,e,r){return n(\"temp_status\",{seg:t,above:e,below:r})},rewind:function(t){return n(\"rewind\",{seg:t})},status:function(t,e,r){return n(\"status\",{seg:t,above:e,below:r})},vert:function(e){return e===r?t:(r=e,n(\"vert\",{x:e}))},log:function(t){return\"string\"!=typeof t&&(t=JSON.stringify(t,!1,\"  \")),n(\"log\",{txt:t})},reset:function(){return n(\"reset\")},selected:function(t){return n(\"selected\",{segs:t})},chainStart:function(t){return n(\"chain_start\",{seg:t})},chainRemoveHead:function(t,e){return n(\"chain_rem_head\",{index:t,pt:e})},chainRemoveTail:function(t,e){return n(\"chain_rem_tail\",{index:t,pt:e})},chainNew:function(t,e){return n(\"chain_new\",{pt1:t,pt2:e})},chainMatch:function(t){return n(\"chain_match\",{index:t})},chainClose:function(t){return n(\"chain_close\",{index:t})},chainAddHead:function(t,e){return n(\"chain_add_head\",{index:t,pt:e})},chainAddTail:function(t,e){return n(\"chain_add_tail\",{index:t,pt:e})},chainConnect:function(t,e){return n(\"chain_con\",{index1:t,index2:e})},chainReverse:function(t){return n(\"chain_rev\",{index:t})},chainJoin:function(t,e){return n(\"chain_join\",{index1:t,index2:e})},done:function(){return n(\"done\")}}}},{}],476:[function(t,e,r){e.exports=function(t){\"number\"!=typeof t&&(t=1e-10);var e={epsilon:function(e){return\"number\"==typeof e&&(t=e),t},pointAboveOrOnLine:function(e,r,n){var a=r[0],i=r[1],o=n[0],s=n[1],l=e[0];return(o-a)*(e[1]-i)-(s-i)*(l-a)>=-t},pointBetween:function(e,r,n){var a=e[1]-r[1],i=n[0]-r[0],o=e[0]-r[0],s=n[1]-r[1],l=o*i+a*s;return!(l<t||l-(i*i+s*s)>-t)},pointsSameX:function(e,r){return Math.abs(e[0]-r[0])<t},pointsSameY:function(e,r){return Math.abs(e[1]-r[1])<t},pointsSame:function(t,r){return e.pointsSameX(t,r)&&e.pointsSameY(t,r)},pointsCompare:function(t,r){return e.pointsSameX(t,r)?e.pointsSameY(t,r)?0:t[1]<r[1]?-1:1:t[0]<r[0]?-1:1},pointsCollinear:function(e,r,n){var a=e[0]-r[0],i=e[1]-r[1],o=r[0]-n[0],s=r[1]-n[1];return Math.abs(a*s-o*i)<t},linesIntersect:function(e,r,n,a){var i=r[0]-e[0],o=r[1]-e[1],s=a[0]-n[0],l=a[1]-n[1],c=i*l-o*s;if(Math.abs(c)<t)return!1;var u=e[0]-n[0],h=e[1]-n[1],f=(s*h-l*u)/c,p=(i*h-o*u)/c,d={alongA:0,alongB:0,pt:[e[0]+f*i,e[1]+f*o]};return d.alongA=f<=-t?-2:f<t?-1:f-1<=-t?0:f-1<t?1:2,d.alongB=p<=-t?-2:p<t?-1:p-1<=-t?0:p-1<t?1:2,d},pointInsideRegion:function(e,r){for(var n=e[0],a=e[1],i=r[r.length-1][0],o=r[r.length-1][1],s=!1,l=0;l<r.length;l++){var c=r[l][0],u=r[l][1];u-a>t!=o-a>t&&(i-c)*(a-u)/(o-u)+c-n>t&&(s=!s),i=c,o=u}return s}};return e}},{}],477:[function(t,e,r){var n={toPolygon:function(t,e){function r(e){if(e.length<=0)return t.segments({inverted:!1,regions:[]});function r(e){var r=e.slice(0,e.length-1);return t.segments({inverted:!1,regions:[r]})}for(var n=r(e[0]),a=1;a<e.length;a++)n=t.selectDifference(t.combine(n,r(e[a])));return n}if(\"Polygon\"===e.type)return t.polygon(r(e.coordinates));if(\"MultiPolygon\"===e.type){for(var n=t.segments({inverted:!1,regions:[]}),a=0;a<e.coordinates.length;a++)n=t.selectUnion(t.combine(n,r(e.coordinates[a])));return t.polygon(n)}throw new Error(\"PolyBool: Cannot convert GeoJSON object to PolyBool polygon\")},fromPolygon:function(t,e,r){function n(t,r){return e.pointInsideRegion([.5*(t[0][0]+t[1][0]),.5*(t[0][1]+t[1][1])],r)}function a(t){return{region:t,children:[]}}r=t.polygon(t.segments(r));var i=a(null);function o(t,e){for(var r=0;r<t.children.length;r++){if(n(e,(s=t.children[r]).region))return void o(s,e)}var i=a(e);for(r=0;r<t.children.length;r++){var s;n((s=t.children[r]).region,e)&&(i.children.push(s),t.children.splice(r,1),r--)}t.children.push(i)}for(var s=0;s<r.regions.length;s++){var l=r.regions[s];l.length<3||o(i,l)}function c(t,e){for(var r=0,n=t[t.length-1][0],a=t[t.length-1][1],i=[],o=0;o<t.length;o++){var s=t[o][0],l=t[o][1];i.push([s,l]),r+=l*n-s*a,n=s,a=l}return r<0!==e&&i.reverse(),i.push([i[0][0],i[0][1]]),i}var u=[];function h(t){var e=[c(t.region,!1)];u.push(e);for(var r=0;r<t.children.length;r++)e.push(f(t.children[r]))}function f(t){for(var e=0;e<t.children.length;e++)h(t.children[e]);return c(t.region,!0)}for(s=0;s<i.children.length;s++)h(i.children[s]);return u.length<=0?{type:\"Polygon\",coordinates:[]}:1==u.length?{type:\"Polygon\",coordinates:u[0]}:{type:\"MultiPolygon\",coordinates:u}}};e.exports=n},{}],478:[function(t,e,r){var n=t(\"./linked-list\");e.exports=function(t,e,r){function a(t,e,n){return{id:r?r.segmentId():-1,start:t,end:e,myFill:{above:n.myFill.above,below:n.myFill.below},otherFill:null}}var i=n.create();function o(t,r){i.insertBefore(t,function(n){return function(t,r,n,a,i,o){var s=e.pointsCompare(r,i);return 0!==s?s:e.pointsSame(n,o)?0:t!==a?t?1:-1:e.pointAboveOrOnLine(n,a?i:o,a?o:i)?1:-1}(t.isStart,t.pt,r,n.isStart,n.pt,n.other.pt)<0})}function s(t,e){var r=function(t,e){var r=n.node({isStart:!0,pt:t.start,seg:t,primary:e,other:null,status:null});return o(r,t.end),r}(t,e);return function(t,e,r){var a=n.node({isStart:!1,pt:e.end,seg:e,primary:r,other:t,status:null});t.other=a,o(a,t.pt)}(r,t,e),r}function l(t,e){var n=a(e,t.seg.end,t.seg);return function(t,e){r&&r.segmentChop(t.seg,e),t.other.remove(),t.seg.end=e,t.other.pt=e,o(t.other,t.pt)}(t,e),s(n,t.primary)}function c(a,o){var s=n.create();function c(t){return s.findTransition(function(r){var n,a,i,o,s,l;return n=t,a=r.ev,i=n.seg.start,o=n.seg.end,s=a.seg.start,l=a.seg.end,(e.pointsCollinear(i,s,l)?e.pointsCollinear(o,s,l)?1:e.pointAboveOrOnLine(o,s,l)?1:-1:e.pointAboveOrOnLine(i,s,l)?1:-1)>0})}function u(t,n){var a=t.seg,i=n.seg,o=a.start,s=a.end,c=i.start,u=i.end;r&&r.checkIntersection(a,i);var h=e.linesIntersect(o,s,c,u);if(!1===h){if(!e.pointsCollinear(o,s,c))return!1;if(e.pointsSame(o,u)||e.pointsSame(s,c))return!1;var f=e.pointsSame(o,c),p=e.pointsSame(s,u);if(f&&p)return n;var d=!f&&e.pointBetween(o,c,u),g=!p&&e.pointBetween(s,c,u);if(f)return g?l(n,s):l(t,u),n;d&&(p||(g?l(n,s):l(t,u)),l(n,o))}else 0===h.alongA&&(-1===h.alongB?l(t,c):0===h.alongB?l(t,h.pt):1===h.alongB&&l(t,u)),0===h.alongB&&(-1===h.alongA?l(n,o):0===h.alongA?l(n,h.pt):1===h.alongA&&l(n,s));return!1}for(var h=[];!i.isEmpty();){var f=i.getHead();if(r&&r.vert(f.pt[0]),f.isStart){r&&r.segmentNew(f.seg,f.primary);var p=c(f),d=p.before?p.before.ev:null,g=p.after?p.after.ev:null;function v(){if(d){var t=u(f,d);if(t)return t}return!!g&&u(f,g)}r&&r.tempStatus(f.seg,!!d&&d.seg,!!g&&g.seg);var m,y,x=v();if(x)t?(y=null===f.seg.myFill.below||f.seg.myFill.above!==f.seg.myFill.below)&&(x.seg.myFill.above=!x.seg.myFill.above):x.seg.otherFill=f.seg.myFill,r&&r.segmentUpdate(x.seg),f.other.remove(),f.remove();if(i.getHead()!==f){r&&r.rewind(f.seg);continue}t?(y=null===f.seg.myFill.below||f.seg.myFill.above!==f.seg.myFill.below,f.seg.myFill.below=g?g.seg.myFill.above:a,f.seg.myFill.above=y?!f.seg.myFill.below:f.seg.myFill.below):null===f.seg.otherFill&&(m=g?f.primary===g.primary?g.seg.otherFill.above:g.seg.myFill.above:f.primary?o:a,f.seg.otherFill={above:m,below:m}),r&&r.status(f.seg,!!d&&d.seg,!!g&&g.seg),f.other.status=p.insert(n.node({ev:f}))}else{var b=f.status;if(null===b)throw new Error(\"PolyBool: Zero-length segment detected; your epsilon is probably too small or too large\");if(s.exists(b.prev)&&s.exists(b.next)&&u(b.prev.ev,b.next.ev),r&&r.statusRemove(b.ev.seg),b.remove(),!f.primary){var _=f.seg.myFill;f.seg.myFill=f.seg.otherFill,f.seg.otherFill=_}h.push(f.seg)}i.getHead().remove()}return r&&r.done(),h}return t?{addRegion:function(t){for(var n,a,i,o=t[t.length-1],l=0;l<t.length;l++){n=o,o=t[l];var c=e.pointsCompare(n,o);0!==c&&s((a=c<0?n:o,i=c<0?o:n,{id:r?r.segmentId():-1,start:a,end:i,myFill:{above:null,below:null},otherFill:null}),!0)}},calculate:function(t){return c(t,!1)}}:{calculate:function(t,e,r,n){return t.forEach(function(t){s(a(t.start,t.end,t),!0)}),r.forEach(function(t){s(a(t.start,t.end,t),!1)}),c(e,n)}}}},{\"./linked-list\":479}],479:[function(t,e,r){e.exports={create:function(){var t={root:{root:!0,next:null},exists:function(e){return null!==e&&e!==t.root},isEmpty:function(){return null===t.root.next},getHead:function(){return t.root.next},insertBefore:function(e,r){for(var n=t.root,a=t.root.next;null!==a;){if(r(a))return e.prev=a.prev,e.next=a,a.prev.next=e,void(a.prev=e);n=a,a=a.next}n.next=e,e.prev=n,e.next=null},findTransition:function(e){for(var r=t.root,n=t.root.next;null!==n&&!e(n);)r=n,n=n.next;return{before:r===t.root?null:r,after:n,insert:function(t){return t.prev=r,t.next=n,r.next=t,null!==n&&(n.prev=t),t}}}};return t},node:function(t){return t.prev=null,t.next=null,t.remove=function(){t.prev.next=t.next,t.next&&(t.next.prev=t.prev),t.prev=null,t.next=null},t}}},{}],480:[function(t,e,r){e.exports=function(t,e,r){var n=[],a=[];return t.forEach(function(t){var i=t.start,o=t.end;if(e.pointsSame(i,o))console.warn(\"PolyBool: Warning: Zero-length segment detected; your epsilon is probably too small or too large\");else{r&&r.chainStart(t);for(var s={index:0,matches_head:!1,matches_pt1:!1},l={index:0,matches_head:!1,matches_pt1:!1},c=s,u=0;u<n.length;u++){var h=(v=n[u])[0],f=(v[1],v[v.length-1]);if(v[v.length-2],e.pointsSame(h,i)){if(T(u,!0,!0))break}else if(e.pointsSame(h,o)){if(T(u,!0,!1))break}else if(e.pointsSame(f,i)){if(T(u,!1,!0))break}else if(e.pointsSame(f,o)&&T(u,!1,!1))break}if(c===s)return n.push([i,o]),void(r&&r.chainNew(i,o));if(c===l){r&&r.chainMatch(s.index);var p=s.index,d=s.matches_pt1?o:i,g=s.matches_head,v=n[p],m=g?v[0]:v[v.length-1],y=g?v[1]:v[v.length-2],x=g?v[v.length-1]:v[0],b=g?v[v.length-2]:v[1];return e.pointsCollinear(y,m,d)&&(g?(r&&r.chainRemoveHead(s.index,d),v.shift()):(r&&r.chainRemoveTail(s.index,d),v.pop()),m=y),e.pointsSame(x,d)?(n.splice(p,1),e.pointsCollinear(b,x,m)&&(g?(r&&r.chainRemoveTail(s.index,m),v.pop()):(r&&r.chainRemoveHead(s.index,m),v.shift())),r&&r.chainClose(s.index),void a.push(v)):void(g?(r&&r.chainAddHead(s.index,d),v.unshift(d)):(r&&r.chainAddTail(s.index,d),v.push(d)))}var _=s.index,w=l.index;r&&r.chainConnect(_,w);var k=n[_].length<n[w].length;s.matches_head?l.matches_head?k?(A(_),M(_,w)):(A(w),M(w,_)):M(w,_):l.matches_head?M(_,w):k?(A(_),M(w,_)):(A(w),M(_,w))}function T(t,e,r){return c.index=t,c.matches_head=e,c.matches_pt1=r,c===s?(c=l,!1):(c=null,!0)}function A(t){r&&r.chainReverse(t),n[t].reverse()}function M(t,a){var i=n[t],o=n[a],s=i[i.length-1],l=i[i.length-2],c=o[0],u=o[1];e.pointsCollinear(l,s,c)&&(r&&r.chainRemoveTail(t,s),i.pop(),s=l),e.pointsCollinear(s,c,u)&&(r&&r.chainRemoveHead(a,c),o.shift()),r&&r.chainJoin(t,a),n[t]=i.concat(o),n.splice(a,1)}}),a}},{}],481:[function(t,e,r){function n(t,e,r){var n=[];return t.forEach(function(t){var a=(t.myFill.above?8:0)+(t.myFill.below?4:0)+(t.otherFill&&t.otherFill.above?2:0)+(t.otherFill&&t.otherFill.below?1:0);0!==e[a]&&n.push({id:r?r.segmentId():-1,start:t.start,end:t.end,myFill:{above:1===e[a],below:2===e[a]},otherFill:null})}),r&&r.selected(n),n}var a={union:function(t,e){return n(t,[0,2,1,0,2,2,0,0,1,0,1,0,0,0,0,0],e)},intersect:function(t,e){return n(t,[0,0,0,0,0,2,0,2,0,0,1,1,0,2,1,0],e)},difference:function(t,e){return n(t,[0,0,0,0,2,0,2,0,1,1,0,0,0,1,2,0],e)},differenceRev:function(t,e){return n(t,[0,2,1,0,0,0,1,1,0,2,0,2,0,0,0,0],e)},xor:function(t,e){return n(t,[0,2,1,0,2,0,0,1,1,0,0,2,0,1,2,0],e)}};e.exports=a},{}],482:[function(t,e,r){\"use strict\";var n=new Float64Array(4),a=new Float64Array(4),i=new Float64Array(4);e.exports=function(t,e,r,o,s){n.length<o.length&&(n=new Float64Array(o.length),a=new Float64Array(o.length),i=new Float64Array(o.length));for(var l=0;l<o.length;++l)n[l]=t[l]-o[l],a[l]=e[l]-t[l],i[l]=r[l]-t[l];var c=0,u=0,h=0,f=0,p=0,d=0;for(l=0;l<o.length;++l){var g=a[l],v=i[l],m=n[l];c+=g*g,u+=g*v,h+=v*v,f+=m*g,p+=m*v,d+=m*m}var y,x,b,_,w,k=Math.abs(c*h-u*u),T=u*p-h*f,A=u*f-c*p;if(T+A<=k)if(T<0)A<0&&f<0?(A=0,-f>=c?(T=1,y=c+2*f+d):y=f*(T=-f/c)+d):(T=0,p>=0?(A=0,y=d):-p>=h?(A=1,y=h+2*p+d):y=p*(A=-p/h)+d);else if(A<0)A=0,f>=0?(T=0,y=d):-f>=c?(T=1,y=c+2*f+d):y=f*(T=-f/c)+d;else{var M=1/k;y=(T*=M)*(c*T+u*(A*=M)+2*f)+A*(u*T+h*A+2*p)+d}else T<0?(b=h+p)>(x=u+f)?(_=b-x)>=(w=c-2*u+h)?(T=1,A=0,y=c+2*f+d):y=(T=_/w)*(c*T+u*(A=1-T)+2*f)+A*(u*T+h*A+2*p)+d:(T=0,b<=0?(A=1,y=h+2*p+d):p>=0?(A=0,y=d):y=p*(A=-p/h)+d):A<0?(b=c+f)>(x=u+p)?(_=b-x)>=(w=c-2*u+h)?(A=1,T=0,y=h+2*p+d):y=(T=1-(A=_/w))*(c*T+u*A+2*f)+A*(u*T+h*A+2*p)+d:(A=0,b<=0?(T=1,y=c+2*f+d):f>=0?(T=0,y=d):y=f*(T=-f/c)+d):(_=h+p-u-f)<=0?(T=0,A=1,y=h+2*p+d):_>=(w=c-2*u+h)?(T=1,A=0,y=c+2*f+d):y=(T=_/w)*(c*T+u*(A=1-T)+2*f)+A*(u*T+h*A+2*p)+d;var S=1-T-A;for(l=0;l<o.length;++l)s[l]=S*t[l]+T*e[l]+A*r[l];return y<0?0:y}},{}],483:[function(t,e,r){var n,a,i=e.exports={};function o(){throw new Error(\"setTimeout has not been defined\")}function s(){throw new Error(\"clearTimeout has not been defined\")}function l(t){if(n===setTimeout)return setTimeout(t,0);if((n===o||!n)&&setTimeout)return n=setTimeout,setTimeout(t,0);try{return n(t,0)}catch(e){try{return n.call(null,t,0)}catch(e){return n.call(this,t,0)}}}!function(){try{n=\"function\"==typeof setTimeout?setTimeout:o}catch(t){n=o}try{a=\"function\"==typeof clearTimeout?clearTimeout:s}catch(t){a=s}}();var c,u=[],h=!1,f=-1;function p(){h&&c&&(h=!1,c.length?u=c.concat(u):f=-1,u.length&&d())}function d(){if(!h){var t=l(p);h=!0;for(var e=u.length;e;){for(c=u,u=[];++f<e;)c&&c[f].run();f=-1,e=u.length}c=null,h=!1,function(t){if(a===clearTimeout)return clearTimeout(t);if((a===s||!a)&&clearTimeout)return a=clearTimeout,clearTimeout(t);try{a(t)}catch(e){try{return a.call(null,t)}catch(e){return a.call(this,t)}}}(t)}}function g(t,e){this.fun=t,this.array=e}function v(){}i.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var r=1;r<arguments.length;r++)e[r-1]=arguments[r];u.push(new g(t,e)),1!==u.length||h||l(d)},g.prototype.run=function(){this.fun.apply(null,this.array)},i.title=\"browser\",i.browser=!0,i.env={},i.argv=[],i.version=\"\",i.versions={},i.on=v,i.addListener=v,i.once=v,i.off=v,i.removeListener=v,i.removeAllListeners=v,i.emit=v,i.prependListener=v,i.prependOnceListener=v,i.listeners=function(t){return[]},i.binding=function(t){throw new Error(\"process.binding is not supported\")},i.cwd=function(){return\"/\"},i.chdir=function(t){throw new Error(\"process.chdir is not supported\")},i.umask=function(){return 0}},{}],484:[function(t,e,r){e.exports=t(\"gl-quat/slerp\")},{\"gl-quat/slerp\":294}],485:[function(t,e,r){(function(r){for(var n=t(\"performance-now\"),a=\"undefined\"==typeof window?r:window,i=[\"moz\",\"webkit\"],o=\"AnimationFrame\",s=a[\"request\"+o],l=a[\"cancel\"+o]||a[\"cancelRequest\"+o],c=0;!s&&c<i.length;c++)s=a[i[c]+\"Request\"+o],l=a[i[c]+\"Cancel\"+o]||a[i[c]+\"CancelRequest\"+o];if(!s||!l){var u=0,h=0,f=[];s=function(t){if(0===f.length){var e=n(),r=Math.max(0,1e3/60-(e-u));u=r+e,setTimeout(function(){var t=f.slice(0);f.length=0;for(var e=0;e<t.length;e++)if(!t[e].cancelled)try{t[e].callback(u)}catch(t){setTimeout(function(){throw t},0)}},Math.round(r))}return f.push({handle:++h,callback:t,cancelled:!1}),h},l=function(t){for(var e=0;e<f.length;e++)f[e].handle===t&&(f[e].cancelled=!0)}}e.exports=function(t){return s.call(a,t)},e.exports.cancel=function(){l.apply(a,arguments)},e.exports.polyfill=function(t){t||(t=a),t.requestAnimationFrame=s,t.cancelAnimationFrame=l}}).call(this,\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{\"performance-now\":463}],486:[function(t,e,r){\"use strict\";var n=t(\"big-rat/add\");e.exports=function(t,e){for(var r=t.length,a=new Array(r),i=0;i<r;++i)a[i]=n(t[i],e[i]);return a}},{\"big-rat/add\":76}],487:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=new Array(t.length),r=0;r<t.length;++r)e[r]=n(t[r]);return e};var n=t(\"big-rat\")},{\"big-rat\":79}],488:[function(t,e,r){\"use strict\";var n=t(\"big-rat\"),a=t(\"big-rat/mul\");e.exports=function(t,e){for(var r=n(e),i=t.length,o=new Array(i),s=0;s<i;++s)o[s]=a(t[s],r);return o}},{\"big-rat\":79,\"big-rat/mul\":88}],489:[function(t,e,r){\"use strict\";var n=t(\"big-rat/sub\");e.exports=function(t,e){for(var r=t.length,a=new Array(r),i=0;i<r;++i)a[i]=n(t[i],e[i]);return a}},{\"big-rat/sub\":90}],490:[function(t,e,r){\"use strict\";var n=t(\"compare-cell\"),a=t(\"compare-oriented-cell\"),i=t(\"cell-orientation\");e.exports=function(t){t.sort(a);for(var e=t.length,r=0,o=0;o<e;++o){var s=t[o],l=i(s);if(0!==l){if(r>0){var c=t[r-1];if(0===n(s,c)&&i(c)!==l){r-=1;continue}}t[r++]=s}}return t.length=r,t}},{\"cell-orientation\":113,\"compare-cell\":129,\"compare-oriented-cell\":130}],491:[function(t,e,r){\"use strict\";var n=t(\"array-bounds\"),a=t(\"color-normalize\"),i=t(\"update-diff\"),o=t(\"pick-by-alias\"),s=t(\"object-assign\"),l=t(\"flatten-vertex-data\"),c=t(\"to-float32\"),u=c.float32,h=c.fract32;e.exports=function(t,e){\"function\"==typeof t?(e||(e={}),e.regl=t):e=t;e.length&&(e.positions=e);if(!(t=e.regl).hasExtension(\"ANGLE_instanced_arrays\"))throw Error(\"regl-error2d: `ANGLE_instanced_arrays` extension should be enabled\");var r,c,p,d,g,v,m=t._gl,y={color:\"black\",capSize:5,lineWidth:1,opacity:1,viewport:null,range:null,offset:0,count:0,bounds:null,positions:[],errors:[]},x=[];return d=t.buffer({usage:\"dynamic\",type:\"uint8\",data:new Uint8Array(0)}),c=t.buffer({usage:\"dynamic\",type:\"float\",data:new Uint8Array(0)}),p=t.buffer({usage:\"dynamic\",type:\"float\",data:new Uint8Array(0)}),g=t.buffer({usage:\"dynamic\",type:\"float\",data:new Uint8Array(0)}),v=t.buffer({usage:\"static\",type:\"float\",data:f}),k(e),r=t({vert:\"\\n\\t\\tprecision highp float;\\n\\n\\t\\tattribute vec2 position, positionFract;\\n\\t\\tattribute vec4 error;\\n\\t\\tattribute vec4 color;\\n\\n\\t\\tattribute vec2 direction, lineOffset, capOffset;\\n\\n\\t\\tuniform vec4 viewport;\\n\\t\\tuniform float lineWidth, capSize;\\n\\t\\tuniform vec2 scale, scaleFract, translate, translateFract;\\n\\n\\t\\tvarying vec4 fragColor;\\n\\n\\t\\tvoid main() {\\n\\t\\t\\tfragColor = color / 255.;\\n\\n\\t\\t\\tvec2 pixelOffset = lineWidth * lineOffset + (capSize + lineWidth) * capOffset;\\n\\n\\t\\t\\tvec2 dxy = -step(.5, direction.xy) * error.xz + step(direction.xy, vec2(-.5)) * error.yw;\\n\\n\\t\\t\\tvec2 position = position + dxy;\\n\\n\\t\\t\\tvec2 pos = (position + translate) * scale\\n\\t\\t\\t\\t+ (positionFract + translateFract) * scale\\n\\t\\t\\t\\t+ (position + translate) * scaleFract\\n\\t\\t\\t\\t+ (positionFract + translateFract) * scaleFract;\\n\\n\\t\\t\\tpos += pixelOffset / viewport.zw;\\n\\n\\t\\t\\tgl_Position = vec4(pos * 2. - 1., 0, 1);\\n\\t\\t}\\n\\t\\t\",frag:\"\\n\\t\\tprecision highp float;\\n\\n\\t\\tvarying vec4 fragColor;\\n\\n\\t\\tuniform float opacity;\\n\\n\\t\\tvoid main() {\\n\\t\\t\\tgl_FragColor = fragColor;\\n\\t\\t\\tgl_FragColor.a *= opacity;\\n\\t\\t}\\n\\t\\t\",uniforms:{range:t.prop(\"range\"),lineWidth:t.prop(\"lineWidth\"),capSize:t.prop(\"capSize\"),opacity:t.prop(\"opacity\"),scale:t.prop(\"scale\"),translate:t.prop(\"translate\"),scaleFract:t.prop(\"scaleFract\"),translateFract:t.prop(\"translateFract\"),viewport:function(t,e){return[e.viewport.x,e.viewport.y,t.viewportWidth,t.viewportHeight]}},attributes:{color:{buffer:d,offset:function(t,e){return 4*e.offset},divisor:1},position:{buffer:c,offset:function(t,e){return 8*e.offset},divisor:1},positionFract:{buffer:p,offset:function(t,e){return 8*e.offset},divisor:1},error:{buffer:g,offset:function(t,e){return 16*e.offset},divisor:1},direction:{buffer:v,stride:24,offset:0},lineOffset:{buffer:v,stride:24,offset:8},capOffset:{buffer:v,stride:24,offset:16}},primitive:\"triangles\",blend:{enable:!0,color:[0,0,0,0],equation:{rgb:\"add\",alpha:\"add\"},func:{srcRGB:\"src alpha\",dstRGB:\"one minus src alpha\",srcAlpha:\"one minus dst alpha\",dstAlpha:\"one\"}},depth:{enable:!1},scissor:{enable:!0,box:t.prop(\"viewport\")},viewport:t.prop(\"viewport\"),stencil:!1,instances:t.prop(\"count\"),count:f.length}),s(b,{update:k,draw:_,destroy:T,regl:t,gl:m,canvas:m.canvas,groups:x}),b;function b(t){t?k(t):null===t&&T(),_()}function _(e){if(\"number\"==typeof e)return w(e);e&&!Array.isArray(e)&&(e=[e]),t._refresh(),x.forEach(function(t,r){t&&(e&&(e[r]?t.draw=!0:t.draw=!1),t.draw?w(r):t.draw=!0)})}function w(t){\"number\"==typeof t&&(t=x[t]),null!=t&&t&&t.count&&t.color&&t.opacity&&t.positions&&t.positions.length>1&&(t.scaleRatio=[t.scale[0]*t.viewport.width,t.scale[1]*t.viewport.height],r(t),t.after&&t.after(t))}function k(t){if(t){null!=t.length?\"number\"==typeof t[0]&&(t=[{positions:t}]):Array.isArray(t)||(t=[t]);var e=0,r=0;if(b.groups=x=t.map(function(t,c){var u=x[c];return t?(\"function\"==typeof t?t={after:t}:\"number\"==typeof t[0]&&(t={positions:t}),t=o(t,{color:\"color colors fill\",capSize:\"capSize cap capsize cap-size\",lineWidth:\"lineWidth line-width width line thickness\",opacity:\"opacity alpha\",range:\"range dataBox\",viewport:\"viewport viewBox\",errors:\"errors error\",positions:\"positions position data points\"}),u||(x[c]=u={id:c,scale:null,translate:null,scaleFract:null,translateFract:null,draw:!0},t=s({},y,t)),i(u,t,[{lineWidth:function(t){return.5*+t},capSize:function(t){return.5*+t},opacity:parseFloat,errors:function(t){return t=l(t),r+=t.length,t},positions:function(t,r){return t=l(t,\"float64\"),r.count=Math.floor(t.length/2),r.bounds=n(t,2),r.offset=e,e+=r.count,t}},{color:function(t,e){var r=e.count;if(t||(t=\"transparent\"),!Array.isArray(t)||\"number\"==typeof t[0]){var n=t;t=Array(r);for(var i=0;i<r;i++)t[i]=n}if(t.length<r)throw Error(\"Not enough colors\");for(var o=new Uint8Array(4*r),s=0;s<r;s++){var l=a(t[s],\"uint8\");o.set(l,4*s)}return o},range:function(t,e,r){var n=e.bounds;return t||(t=n),e.scale=[1/(t[2]-t[0]),1/(t[3]-t[1])],e.translate=[-t[0],-t[1]],e.scaleFract=h(e.scale),e.translateFract=h(e.translate),t},viewport:function(t){var e;return Array.isArray(t)?e={x:t[0],y:t[1],width:t[2]-t[0],height:t[3]-t[1]}:t?(e={x:t.x||t.left||0,y:t.y||t.top||0},t.right?e.width=t.right-e.x:e.width=t.w||t.width||0,t.bottom?e.height=t.bottom-e.y:e.height=t.h||t.height||0):e={x:0,y:0,width:m.drawingBufferWidth,height:m.drawingBufferHeight},e}}]),u):u}),e||r){var f=x.reduce(function(t,e,r){return t+(e?e.count:0)},0),v=new Float64Array(2*f),_=new Uint8Array(4*f),w=new Float32Array(4*f);x.forEach(function(t,e){if(t){var r=t.positions,n=t.count,a=t.offset,i=t.color,o=t.errors;n&&(_.set(i,4*a),w.set(o,4*a),v.set(r,2*a))}}),c(u(v)),p(h(v)),d(_),g(w)}}}function T(){c.destroy(),p.destroy(),d.destroy(),g.destroy(),v.destroy()}};var f=[[1,0,0,1,0,0],[1,0,0,-1,0,0],[-1,0,0,-1,0,0],[-1,0,0,-1,0,0],[-1,0,0,1,0,0],[1,0,0,1,0,0],[1,0,-1,0,0,1],[1,0,-1,0,0,-1],[1,0,1,0,0,-1],[1,0,1,0,0,-1],[1,0,1,0,0,1],[1,0,-1,0,0,1],[-1,0,-1,0,0,1],[-1,0,-1,0,0,-1],[-1,0,1,0,0,-1],[-1,0,1,0,0,-1],[-1,0,1,0,0,1],[-1,0,-1,0,0,1],[0,1,1,0,0,0],[0,1,-1,0,0,0],[0,-1,-1,0,0,0],[0,-1,-1,0,0,0],[0,1,1,0,0,0],[0,-1,1,0,0,0],[0,1,0,-1,1,0],[0,1,0,-1,-1,0],[0,1,0,1,-1,0],[0,1,0,1,1,0],[0,1,0,-1,1,0],[0,1,0,1,-1,0],[0,-1,0,-1,1,0],[0,-1,0,-1,-1,0],[0,-1,0,1,-1,0],[0,-1,0,1,1,0],[0,-1,0,-1,1,0],[0,-1,0,1,-1,0]]},{\"array-bounds\":66,\"color-normalize\":121,\"flatten-vertex-data\":228,\"object-assign\":455,\"pick-by-alias\":466,\"to-float32\":539,\"update-diff\":550}],492:[function(t,e,r){\"use strict\";var n=t(\"color-normalize\"),a=t(\"array-bounds\"),i=t(\"object-assign\"),o=t(\"glslify\"),s=t(\"pick-by-alias\"),l=t(\"flatten-vertex-data\"),c=t(\"earcut\"),u=t(\"array-normalize\"),h=t(\"to-float32\"),f=h.float32,p=h.fract32,d=t(\"es6-weak-map\"),g=t(\"parse-rect\");function v(t,e){if(!(this instanceof v))return new v(t,e);if(\"function\"==typeof t?(e||(e={}),e.regl=t):e=t,e.length&&(e.positions=e),!(t=e.regl).hasExtension(\"ANGLE_instanced_arrays\"))throw Error(\"regl-error2d: `ANGLE_instanced_arrays` extension should be enabled\");this.gl=t._gl,this.regl=t,this.passes=[],this.shaders=v.shaders.has(t)?v.shaders.get(t):v.shaders.set(t,v.createShaders(t)).get(t),this.update(e)}e.exports=v,v.dashMult=2,v.maxPatternLength=256,v.precisionThreshold=3e6,v.maxPoints=1e4,v.maxLines=2048,v.shaders=new d,v.createShaders=function(t){var e,r=t.buffer({usage:\"static\",type:\"float\",data:[0,1,0,0,1,1,1,0]}),n={primitive:\"triangle strip\",instances:t.prop(\"count\"),count:4,offset:0,uniforms:{miterMode:function(t,e){return\"round\"===e.join?2:1},miterLimit:t.prop(\"miterLimit\"),scale:t.prop(\"scale\"),scaleFract:t.prop(\"scaleFract\"),translateFract:t.prop(\"translateFract\"),translate:t.prop(\"translate\"),thickness:t.prop(\"thickness\"),dashPattern:t.prop(\"dashTexture\"),opacity:t.prop(\"opacity\"),pixelRatio:t.context(\"pixelRatio\"),id:t.prop(\"id\"),dashSize:t.prop(\"dashLength\"),viewport:function(t,e){return[e.viewport.x,e.viewport.y,t.viewportWidth,t.viewportHeight]},depth:t.prop(\"depth\")},blend:{enable:!0,color:[0,0,0,0],equation:{rgb:\"add\",alpha:\"add\"},func:{srcRGB:\"src alpha\",dstRGB:\"one minus src alpha\",srcAlpha:\"one minus dst alpha\",dstAlpha:\"one\"}},depth:{enable:function(t,e){return!e.overlay}},stencil:{enable:!1},scissor:{enable:!0,box:t.prop(\"viewport\")},viewport:t.prop(\"viewport\")},a=t(i({vert:o([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec2 aCoord, bCoord, aCoordFract, bCoordFract;\\nattribute vec4 color;\\nattribute float lineEnd, lineTop;\\n\\nuniform vec2 scale, scaleFract, translate, translateFract;\\nuniform float thickness, pixelRatio, id, depth;\\nuniform vec4 viewport;\\n\\nvarying vec4 fragColor;\\nvarying vec2 tangent;\\n\\nvec2 project(vec2 position, vec2 positionFract, vec2 scale, vec2 scaleFract, vec2 translate, vec2 translateFract) {\\n\\t// the order is important\\n\\treturn position * scale + translate\\n       + positionFract * scale + translateFract\\n       + position * scaleFract\\n       + positionFract * scaleFract;\\n}\\n\\nvoid main() {\\n\\tfloat lineStart = 1. - lineEnd;\\n\\tfloat lineOffset = lineTop * 2. - 1.;\\n\\n\\tvec2 diff = (bCoord + bCoordFract - aCoord - aCoordFract);\\n\\ttangent = normalize(diff * scale * viewport.zw);\\n\\tvec2 normal = vec2(-tangent.y, tangent.x);\\n\\n\\tvec2 position = project(aCoord, aCoordFract, scale, scaleFract, translate, translateFract) * lineStart\\n\\t\\t+ project(bCoord, bCoordFract, scale, scaleFract, translate, translateFract) * lineEnd\\n\\n\\t\\t+ thickness * normal * .5 * lineOffset / viewport.zw;\\n\\n\\tgl_Position = vec4(position * 2.0 - 1.0, depth, 1);\\n\\n\\tfragColor = color / 255.;\\n}\\n\"]),frag:o([\"precision highp float;\\n#define GLSLIFY 1\\n\\nuniform sampler2D dashPattern;\\n\\nuniform float dashSize, pixelRatio, thickness, opacity, id;\\n\\nvarying vec4 fragColor;\\nvarying vec2 tangent;\\n\\nvoid main() {\\n\\tfloat alpha = 1.;\\n\\n\\tfloat t = fract(dot(tangent, gl_FragCoord.xy) / dashSize) * .5 + .25;\\n\\tfloat dash = texture2D(dashPattern, vec2(t, .5)).r;\\n\\n\\tgl_FragColor = fragColor;\\n\\tgl_FragColor.a *= alpha * opacity * dash;\\n}\\n\"]),attributes:{lineEnd:{buffer:r,divisor:0,stride:8,offset:0},lineTop:{buffer:r,divisor:0,stride:8,offset:4},aCoord:{buffer:t.prop(\"positionBuffer\"),stride:8,offset:8,divisor:1},bCoord:{buffer:t.prop(\"positionBuffer\"),stride:8,offset:16,divisor:1},aCoordFract:{buffer:t.prop(\"positionFractBuffer\"),stride:8,offset:8,divisor:1},bCoordFract:{buffer:t.prop(\"positionFractBuffer\"),stride:8,offset:16,divisor:1},color:{buffer:t.prop(\"colorBuffer\"),stride:4,offset:0,divisor:1}}},n));try{e=t(i({cull:{enable:!0,face:\"back\"},vert:o([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec2 aCoord, bCoord, nextCoord, prevCoord;\\nattribute vec4 aColor, bColor;\\nattribute float lineEnd, lineTop;\\n\\nuniform vec2 scale, translate;\\nuniform float thickness, pixelRatio, id, depth;\\nuniform vec4 viewport;\\nuniform float miterLimit, miterMode;\\n\\nvarying vec4 fragColor;\\nvarying vec4 startCutoff, endCutoff;\\nvarying vec2 tangent;\\nvarying vec2 startCoord, endCoord;\\nvarying float enableStartMiter, enableEndMiter;\\n\\nconst float REVERSE_THRESHOLD = -.875;\\nconst float MIN_DIFF = 1e-6;\\n\\n// TODO: possible optimizations: avoid overcalculating all for vertices and calc just one instead\\n// TODO: precalculate dot products, normalize things beforehead etc.\\n// TODO: refactor to rectangular algorithm\\n\\nfloat distToLine(vec2 p, vec2 a, vec2 b) {\\n\\tvec2 diff = b - a;\\n\\tvec2 perp = normalize(vec2(-diff.y, diff.x));\\n\\treturn dot(p - a, perp);\\n}\\n\\nbool isNaN( float val ){\\n  return ( val < 0.0 || 0.0 < val || val == 0.0 ) ? false : true;\\n}\\n\\nvoid main() {\\n\\tvec2 aCoord = aCoord, bCoord = bCoord, prevCoord = prevCoord, nextCoord = nextCoord;\\n\\n  vec2 adjustedScale;\\n  adjustedScale.x = (abs(scale.x) < MIN_DIFF) ? MIN_DIFF : scale.x;\\n  adjustedScale.y = (abs(scale.y) < MIN_DIFF) ? MIN_DIFF : scale.y;\\n\\n  vec2 scaleRatio = adjustedScale * viewport.zw;\\n\\tvec2 normalWidth = thickness / scaleRatio;\\n\\n\\tfloat lineStart = 1. - lineEnd;\\n\\tfloat lineBot = 1. - lineTop;\\n\\n\\tfragColor = (lineStart * aColor + lineEnd * bColor) / 255.;\\n\\n\\tif (isNaN(aCoord.x) || isNaN(aCoord.y) || isNaN(bCoord.x) || isNaN(bCoord.y)) return;\\n\\n\\tif (aCoord == prevCoord) prevCoord = aCoord + normalize(bCoord - aCoord);\\n\\tif (bCoord == nextCoord) nextCoord = bCoord - normalize(bCoord - aCoord);\\n\\n\\tvec2 prevDiff = aCoord - prevCoord;\\n\\tvec2 currDiff = bCoord - aCoord;\\n\\tvec2 nextDiff = nextCoord - bCoord;\\n\\n\\tvec2 prevTangent = normalize(prevDiff * scaleRatio);\\n\\tvec2 currTangent = normalize(currDiff * scaleRatio);\\n\\tvec2 nextTangent = normalize(nextDiff * scaleRatio);\\n\\n\\tvec2 prevNormal = vec2(-prevTangent.y, prevTangent.x);\\n\\tvec2 currNormal = vec2(-currTangent.y, currTangent.x);\\n\\tvec2 nextNormal = vec2(-nextTangent.y, nextTangent.x);\\n\\n\\tvec2 startJoinDirection = normalize(prevTangent - currTangent);\\n\\tvec2 endJoinDirection = normalize(currTangent - nextTangent);\\n\\n\\t// collapsed/unidirectional segment cases\\n\\t// FIXME: there should be more elegant solution\\n\\tvec2 prevTanDiff = abs(prevTangent - currTangent);\\n\\tvec2 nextTanDiff = abs(nextTangent - currTangent);\\n\\tif (max(prevTanDiff.x, prevTanDiff.y) < MIN_DIFF) {\\n\\t\\tstartJoinDirection = currNormal;\\n\\t}\\n\\tif (max(nextTanDiff.x, nextTanDiff.y) < MIN_DIFF) {\\n\\t\\tendJoinDirection = currNormal;\\n\\t}\\n\\tif (aCoord == bCoord) {\\n\\t\\tendJoinDirection = startJoinDirection;\\n\\t\\tcurrNormal = prevNormal;\\n\\t\\tcurrTangent = prevTangent;\\n\\t}\\n\\n\\ttangent = currTangent;\\n\\n\\t//calculate join shifts relative to normals\\n\\tfloat startJoinShift = dot(currNormal, startJoinDirection);\\n\\tfloat endJoinShift = dot(currNormal, endJoinDirection);\\n\\n\\tfloat startMiterRatio = abs(1. / startJoinShift);\\n\\tfloat endMiterRatio = abs(1. / endJoinShift);\\n\\n\\tvec2 startJoin = startJoinDirection * startMiterRatio;\\n\\tvec2 endJoin = endJoinDirection * endMiterRatio;\\n\\n\\tvec2 startTopJoin, startBotJoin, endTopJoin, endBotJoin;\\n\\tstartTopJoin = sign(startJoinShift) * startJoin * .5;\\n\\tstartBotJoin = -startTopJoin;\\n\\n\\tendTopJoin = sign(endJoinShift) * endJoin * .5;\\n\\tendBotJoin = -endTopJoin;\\n\\n\\tvec2 aTopCoord = aCoord + normalWidth * startTopJoin;\\n\\tvec2 bTopCoord = bCoord + normalWidth * endTopJoin;\\n\\tvec2 aBotCoord = aCoord + normalWidth * startBotJoin;\\n\\tvec2 bBotCoord = bCoord + normalWidth * endBotJoin;\\n\\n\\t//miter anti-clipping\\n\\tfloat baClipping = distToLine(bCoord, aCoord, aBotCoord) / dot(normalize(normalWidth * endBotJoin), normalize(normalWidth.yx * vec2(-startBotJoin.y, startBotJoin.x)));\\n\\tfloat abClipping = distToLine(aCoord, bCoord, bTopCoord) / dot(normalize(normalWidth * startBotJoin), normalize(normalWidth.yx * vec2(-endBotJoin.y, endBotJoin.x)));\\n\\n\\t//prevent close to reverse direction switch\\n\\tbool prevReverse = dot(currTangent, prevTangent) <= REVERSE_THRESHOLD && abs(dot(currTangent, prevNormal)) * min(length(prevDiff), length(currDiff)) <  length(normalWidth * currNormal);\\n\\tbool nextReverse = dot(currTangent, nextTangent) <= REVERSE_THRESHOLD && abs(dot(currTangent, nextNormal)) * min(length(nextDiff), length(currDiff)) <  length(normalWidth * currNormal);\\n\\n\\tif (prevReverse) {\\n\\t\\t//make join rectangular\\n\\t\\tvec2 miterShift = normalWidth * startJoinDirection * miterLimit * .5;\\n\\t\\tfloat normalAdjust = 1. - min(miterLimit / startMiterRatio, 1.);\\n\\t\\taBotCoord = aCoord + miterShift - normalAdjust * normalWidth * currNormal * .5;\\n\\t\\taTopCoord = aCoord + miterShift + normalAdjust * normalWidth * currNormal * .5;\\n\\t}\\n\\telse if (!nextReverse && baClipping > 0. && baClipping < length(normalWidth * endBotJoin)) {\\n\\t\\t//handle miter clipping\\n\\t\\tbTopCoord -= normalWidth * endTopJoin;\\n\\t\\tbTopCoord += normalize(endTopJoin * normalWidth) * baClipping;\\n\\t}\\n\\n\\tif (nextReverse) {\\n\\t\\t//make join rectangular\\n\\t\\tvec2 miterShift = normalWidth * endJoinDirection * miterLimit * .5;\\n\\t\\tfloat normalAdjust = 1. - min(miterLimit / endMiterRatio, 1.);\\n\\t\\tbBotCoord = bCoord + miterShift - normalAdjust * normalWidth * currNormal * .5;\\n\\t\\tbTopCoord = bCoord + miterShift + normalAdjust * normalWidth * currNormal * .5;\\n\\t}\\n\\telse if (!prevReverse && abClipping > 0. && abClipping < length(normalWidth * startBotJoin)) {\\n\\t\\t//handle miter clipping\\n\\t\\taBotCoord -= normalWidth * startBotJoin;\\n\\t\\taBotCoord += normalize(startBotJoin * normalWidth) * abClipping;\\n\\t}\\n\\n\\tvec2 aTopPosition = (aTopCoord) * adjustedScale + translate;\\n\\tvec2 aBotPosition = (aBotCoord) * adjustedScale + translate;\\n\\n\\tvec2 bTopPosition = (bTopCoord) * adjustedScale + translate;\\n\\tvec2 bBotPosition = (bBotCoord) * adjustedScale + translate;\\n\\n\\t//position is normalized 0..1 coord on the screen\\n\\tvec2 position = (aTopPosition * lineTop + aBotPosition * lineBot) * lineStart + (bTopPosition * lineTop + bBotPosition * lineBot) * lineEnd;\\n\\n\\tstartCoord = aCoord * scaleRatio + translate * viewport.zw + viewport.xy;\\n\\tendCoord = bCoord * scaleRatio + translate * viewport.zw + viewport.xy;\\n\\n\\tgl_Position = vec4(position  * 2.0 - 1.0, depth, 1);\\n\\n\\tenableStartMiter = step(dot(currTangent, prevTangent), .5);\\n\\tenableEndMiter = step(dot(currTangent, nextTangent), .5);\\n\\n\\t//bevel miter cutoffs\\n\\tif (miterMode == 1.) {\\n\\t\\tif (enableStartMiter == 1.) {\\n\\t\\t\\tvec2 startMiterWidth = vec2(startJoinDirection) * thickness * miterLimit * .5;\\n\\t\\t\\tstartCutoff = vec4(aCoord, aCoord);\\n\\t\\t\\tstartCutoff.zw += vec2(-startJoinDirection.y, startJoinDirection.x) / scaleRatio;\\n\\t\\t\\tstartCutoff = startCutoff * scaleRatio.xyxy + translate.xyxy * viewport.zwzw;\\n\\t\\t\\tstartCutoff += viewport.xyxy;\\n\\t\\t\\tstartCutoff += startMiterWidth.xyxy;\\n\\t\\t}\\n\\n\\t\\tif (enableEndMiter == 1.) {\\n\\t\\t\\tvec2 endMiterWidth = vec2(endJoinDirection) * thickness * miterLimit * .5;\\n\\t\\t\\tendCutoff = vec4(bCoord, bCoord);\\n\\t\\t\\tendCutoff.zw += vec2(-endJoinDirection.y, endJoinDirection.x)  / scaleRatio;\\n\\t\\t\\tendCutoff = endCutoff * scaleRatio.xyxy + translate.xyxy * viewport.zwzw;\\n\\t\\t\\tendCutoff += viewport.xyxy;\\n\\t\\t\\tendCutoff += endMiterWidth.xyxy;\\n\\t\\t}\\n\\t}\\n\\n\\t//round miter cutoffs\\n\\telse if (miterMode == 2.) {\\n\\t\\tif (enableStartMiter == 1.) {\\n\\t\\t\\tvec2 startMiterWidth = vec2(startJoinDirection) * thickness * abs(dot(startJoinDirection, currNormal)) * .5;\\n\\t\\t\\tstartCutoff = vec4(aCoord, aCoord);\\n\\t\\t\\tstartCutoff.zw += vec2(-startJoinDirection.y, startJoinDirection.x) / scaleRatio;\\n\\t\\t\\tstartCutoff = startCutoff * scaleRatio.xyxy + translate.xyxy * viewport.zwzw;\\n\\t\\t\\tstartCutoff += viewport.xyxy;\\n\\t\\t\\tstartCutoff += startMiterWidth.xyxy;\\n\\t\\t}\\n\\n\\t\\tif (enableEndMiter == 1.) {\\n\\t\\t\\tvec2 endMiterWidth = vec2(endJoinDirection) * thickness * abs(dot(endJoinDirection, currNormal)) * .5;\\n\\t\\t\\tendCutoff = vec4(bCoord, bCoord);\\n\\t\\t\\tendCutoff.zw += vec2(-endJoinDirection.y, endJoinDirection.x)  / scaleRatio;\\n\\t\\t\\tendCutoff = endCutoff * scaleRatio.xyxy + translate.xyxy * viewport.zwzw;\\n\\t\\t\\tendCutoff += viewport.xyxy;\\n\\t\\t\\tendCutoff += endMiterWidth.xyxy;\\n\\t\\t}\\n\\t}\\n}\\n\"]),frag:o([\"precision highp float;\\n#define GLSLIFY 1\\n\\nuniform sampler2D dashPattern;\\nuniform float dashSize, pixelRatio, thickness, opacity, id, miterMode;\\n\\nvarying vec4 fragColor;\\nvarying vec2 tangent;\\nvarying vec4 startCutoff, endCutoff;\\nvarying vec2 startCoord, endCoord;\\nvarying float enableStartMiter, enableEndMiter;\\n\\nfloat distToLine(vec2 p, vec2 a, vec2 b) {\\n\\tvec2 diff = b - a;\\n\\tvec2 perp = normalize(vec2(-diff.y, diff.x));\\n\\treturn dot(p - a, perp);\\n}\\n\\nvoid main() {\\n\\tfloat alpha = 1., distToStart, distToEnd;\\n\\tfloat cutoff = thickness * .5;\\n\\n\\t//bevel miter\\n\\tif (miterMode == 1.) {\\n\\t\\tif (enableStartMiter == 1.) {\\n\\t\\t\\tdistToStart = distToLine(gl_FragCoord.xy, startCutoff.xy, startCutoff.zw);\\n\\t\\t\\tif (distToStart < -1.) {\\n\\t\\t\\t\\tdiscard;\\n\\t\\t\\t\\treturn;\\n\\t\\t\\t}\\n\\t\\t\\talpha *= min(max(distToStart + 1., 0.), 1.);\\n\\t\\t}\\n\\n\\t\\tif (enableEndMiter == 1.) {\\n\\t\\t\\tdistToEnd = distToLine(gl_FragCoord.xy, endCutoff.xy, endCutoff.zw);\\n\\t\\t\\tif (distToEnd < -1.) {\\n\\t\\t\\t\\tdiscard;\\n\\t\\t\\t\\treturn;\\n\\t\\t\\t}\\n\\t\\t\\talpha *= min(max(distToEnd + 1., 0.), 1.);\\n\\t\\t}\\n\\t}\\n\\n\\t// round miter\\n\\telse if (miterMode == 2.) {\\n\\t\\tif (enableStartMiter == 1.) {\\n\\t\\t\\tdistToStart = distToLine(gl_FragCoord.xy, startCutoff.xy, startCutoff.zw);\\n\\t\\t\\tif (distToStart < 0.) {\\n\\t\\t\\t\\tfloat radius = length(gl_FragCoord.xy - startCoord);\\n\\n\\t\\t\\t\\tif(radius > cutoff + .5) {\\n\\t\\t\\t\\t\\tdiscard;\\n\\t\\t\\t\\t\\treturn;\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\talpha -= smoothstep(cutoff - .5, cutoff + .5, radius);\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\tif (enableEndMiter == 1.) {\\n\\t\\t\\tdistToEnd = distToLine(gl_FragCoord.xy, endCutoff.xy, endCutoff.zw);\\n\\t\\t\\tif (distToEnd < 0.) {\\n\\t\\t\\t\\tfloat radius = length(gl_FragCoord.xy - endCoord);\\n\\n\\t\\t\\t\\tif(radius > cutoff + .5) {\\n\\t\\t\\t\\t\\tdiscard;\\n\\t\\t\\t\\t\\treturn;\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\talpha -= smoothstep(cutoff - .5, cutoff + .5, radius);\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\tfloat t = fract(dot(tangent, gl_FragCoord.xy) / dashSize) * .5 + .25;\\n\\tfloat dash = texture2D(dashPattern, vec2(t, .5)).r;\\n\\n\\tgl_FragColor = fragColor;\\n\\tgl_FragColor.a *= alpha * opacity * dash;\\n}\\n\"]),attributes:{lineEnd:{buffer:r,divisor:0,stride:8,offset:0},lineTop:{buffer:r,divisor:0,stride:8,offset:4},aColor:{buffer:t.prop(\"colorBuffer\"),stride:4,offset:0,divisor:1},bColor:{buffer:t.prop(\"colorBuffer\"),stride:4,offset:4,divisor:1},prevCoord:{buffer:t.prop(\"positionBuffer\"),stride:8,offset:0,divisor:1},aCoord:{buffer:t.prop(\"positionBuffer\"),stride:8,offset:8,divisor:1},bCoord:{buffer:t.prop(\"positionBuffer\"),stride:8,offset:16,divisor:1},nextCoord:{buffer:t.prop(\"positionBuffer\"),stride:8,offset:24,divisor:1}}},n))}catch(t){e=a}return{fill:t({primitive:\"triangle\",elements:function(t,e){return e.triangles},offset:0,vert:o([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec2 position, positionFract;\\n\\nuniform vec4 color;\\nuniform vec2 scale, scaleFract, translate, translateFract;\\nuniform float pixelRatio, id;\\nuniform vec4 viewport;\\nuniform float opacity;\\n\\nvarying vec4 fragColor;\\n\\nconst float MAX_LINES = 256.;\\n\\nvoid main() {\\n\\tfloat depth = (MAX_LINES - 4. - id) / (MAX_LINES);\\n\\n\\tvec2 position = position * scale + translate\\n       + positionFract * scale + translateFract\\n       + position * scaleFract\\n       + positionFract * scaleFract;\\n\\n\\tgl_Position = vec4(position * 2.0 - 1.0, depth, 1);\\n\\n\\tfragColor = color / 255.;\\n\\tfragColor.a *= opacity;\\n}\\n\"]),frag:o([\"precision highp float;\\n#define GLSLIFY 1\\n\\nvarying vec4 fragColor;\\n\\nvoid main() {\\n\\tgl_FragColor = fragColor;\\n}\\n\"]),uniforms:{scale:t.prop(\"scale\"),color:t.prop(\"fill\"),scaleFract:t.prop(\"scaleFract\"),translateFract:t.prop(\"translateFract\"),translate:t.prop(\"translate\"),opacity:t.prop(\"opacity\"),pixelRatio:t.context(\"pixelRatio\"),id:t.prop(\"id\"),viewport:function(t,e){return[e.viewport.x,e.viewport.y,t.viewportWidth,t.viewportHeight]}},attributes:{position:{buffer:t.prop(\"positionBuffer\"),stride:8,offset:8},positionFract:{buffer:t.prop(\"positionFractBuffer\"),stride:8,offset:8}},blend:n.blend,depth:{enable:!1},scissor:n.scissor,stencil:n.stencil,viewport:n.viewport}),rect:a,miter:e}},v.defaults={dashes:null,join:\"miter\",miterLimit:1,thickness:10,cap:\"square\",color:\"black\",opacity:1,overlay:!1,viewport:null,range:null,close:!1,fill:null},v.prototype.render=function(){for(var t,e=[],r=arguments.length;r--;)e[r]=arguments[r];e.length&&(t=this).update.apply(t,e),this.draw()},v.prototype.draw=function(){for(var t=this,e=[],r=arguments.length;r--;)e[r]=arguments[r];return(e.length?e:this.passes).forEach(function(e,r){var n;if(e&&Array.isArray(e))return(n=t).draw.apply(n,e);\"number\"==typeof e&&(e=t.passes[e]),e&&e.count>1&&e.opacity&&(t.regl._refresh(),e.fill&&e.triangles&&e.triangles.length>2&&t.shaders.fill(e),e.thickness&&(e.scale[0]*e.viewport.width>v.precisionThreshold||e.scale[1]*e.viewport.height>v.precisionThreshold?t.shaders.rect(e):\"rect\"===e.join||!e.join&&(e.thickness<=2||e.count>=v.maxPoints)?t.shaders.rect(e):t.shaders.miter(e)))}),this},v.prototype.update=function(t){var e=this;if(t){null!=t.length?\"number\"==typeof t[0]&&(t=[{positions:t}]):Array.isArray(t)||(t=[t]);var r=this.regl,o=this.gl;if(t.forEach(function(t,h){var d=e.passes[h];if(void 0!==t)if(null!==t){if(\"number\"==typeof t[0]&&(t={positions:t}),t=s(t,{positions:\"positions points data coords\",thickness:\"thickness lineWidth lineWidths line-width linewidth width stroke-width strokewidth strokeWidth\",join:\"lineJoin linejoin join type mode\",miterLimit:\"miterlimit miterLimit\",dashes:\"dash dashes dasharray dash-array dashArray\",color:\"color colour stroke colors colours stroke-color strokeColor\",fill:\"fill fill-color fillColor\",opacity:\"alpha opacity\",overlay:\"overlay crease overlap intersect\",close:\"closed close closed-path closePath\",range:\"range dataBox\",viewport:\"viewport viewBox\",hole:\"holes hole hollow\"}),d||(e.passes[h]=d={id:h,scale:null,scaleFract:null,translate:null,translateFract:null,count:0,hole:[],depth:0,dashLength:1,dashTexture:r.texture({channels:1,data:new Uint8Array([255]),width:1,height:1,mag:\"linear\",min:\"linear\"}),colorBuffer:r.buffer({usage:\"dynamic\",type:\"uint8\",data:new Uint8Array}),positionBuffer:r.buffer({usage:\"dynamic\",type:\"float\",data:new Uint8Array}),positionFractBuffer:r.buffer({usage:\"dynamic\",type:\"float\",data:new Uint8Array})},t=i({},v.defaults,t)),null!=t.thickness&&(d.thickness=parseFloat(t.thickness)),null!=t.opacity&&(d.opacity=parseFloat(t.opacity)),null!=t.miterLimit&&(d.miterLimit=parseFloat(t.miterLimit)),null!=t.overlay&&(d.overlay=!!t.overlay,h<v.maxLines&&(d.depth=2*(v.maxLines-1-h%v.maxLines)/v.maxLines-1)),null!=t.join&&(d.join=t.join),null!=t.hole&&(d.hole=t.hole),null!=t.fill&&(d.fill=t.fill?n(t.fill,\"uint8\"):null),null!=t.viewport&&(d.viewport=g(t.viewport)),d.viewport||(d.viewport=g([o.drawingBufferWidth,o.drawingBufferHeight])),null!=t.close&&(d.close=t.close),null===t.positions&&(t.positions=[]),t.positions){var m,y;if(t.positions.x&&t.positions.y){var x=t.positions.x,b=t.positions.y;y=d.count=Math.max(x.length,b.length),m=new Float64Array(2*y);for(var _=0;_<y;_++)m[2*_]=x[_],m[2*_+1]=b[_]}else m=l(t.positions,\"float64\"),y=d.count=Math.floor(m.length/2);var w=d.bounds=a(m,2);if(d.fill){for(var k=[],T={},A=0,M=0,S=0,E=d.count;M<E;M++){var C=m[2*M],L=m[2*M+1];isNaN(C)||isNaN(L)||null==C||null==L?(C=m[2*A],L=m[2*A+1],T[M]=A):A=M,k[S++]=C,k[S++]=L}for(var P=c(k,d.hole||[]),O=0,I=P.length;O<I;O++)null!=T[P[O]]&&(P[O]=T[P[O]]);d.triangles=P}var z=new Float64Array(m);u(z,2,w);var D=new Float64Array(2*y+6);d.close?m[0]===m[2*y-2]&&m[1]===m[2*y-1]?(D[0]=z[2*y-4],D[1]=z[2*y-3]):(D[0]=z[2*y-2],D[1]=z[2*y-1]):(D[0]=z[0],D[1]=z[1]),D.set(z,2),d.close?m[0]===m[2*y-2]&&m[1]===m[2*y-1]?(D[2*y+2]=z[2],D[2*y+3]=z[3],d.count-=1):(D[2*y+2]=z[0],D[2*y+3]=z[1],D[2*y+4]=z[2],D[2*y+5]=z[3]):(D[2*y+2]=z[2*y-2],D[2*y+3]=z[2*y-1],D[2*y+4]=z[2*y-2],D[2*y+5]=z[2*y-1]),d.positionBuffer(f(D)),d.positionFractBuffer(p(D))}if(t.range?d.range=t.range:d.range||(d.range=d.bounds),(t.range||t.positions)&&d.count){var R=d.bounds,F=R[2]-R[0],B=R[3]-R[1],N=d.range[2]-d.range[0],j=d.range[3]-d.range[1];d.scale=[F/N,B/j],d.translate=[-d.range[0]/N+R[0]/N||0,-d.range[1]/j+R[1]/j||0],d.scaleFract=p(d.scale),d.translateFract=p(d.translate)}if(t.dashes){var V,U=0;if(!t.dashes||t.dashes.length<2)U=1,V=new Uint8Array([255,255,255,255,255,255,255,255]);else{U=0;for(var q=0;q<t.dashes.length;++q)U+=t.dashes[q];V=new Uint8Array(U*v.dashMult);for(var H=0,G=255,Y=0;Y<2;Y++)for(var W=0;W<t.dashes.length;++W){for(var X=0,Z=t.dashes[W]*v.dashMult*.5;X<Z;++X)V[H++]=G;G^=255}}d.dashLength=U,d.dashTexture({channels:1,data:V,width:V.length,height:1,mag:\"linear\",min:\"linear\"},0,0)}if(t.color){var J=d.count,K=t.color;K||(K=\"transparent\");var Q=new Uint8Array(4*J+4);if(Array.isArray(K)&&\"number\"!=typeof K[0]){for(var $=0;$<J;$++){var tt=n(K[$],\"uint8\");Q.set(tt,4*$)}Q.set(n(K[0],\"uint8\"),4*J)}else for(var et=n(K,\"uint8\"),rt=0;rt<J+1;rt++)Q.set(et,4*rt);d.colorBuffer({usage:\"dynamic\",type:\"uint8\",data:Q})}}else e.passes[h]=null}),t.length<this.passes.length){for(var h=t.length;h<this.passes.length;h++){var d=e.passes[h];d&&(d.colorBuffer.destroy(),d.positionBuffer.destroy(),d.dashTexture.destroy())}this.passes.length=t.length}for(var m=[],y=0;y<this.passes.length;y++)null!==e.passes[y]&&m.push(e.passes[y]);return this.passes=m,this}},v.prototype.destroy=function(){return this.passes.forEach(function(t){t.colorBuffer.destroy(),t.positionBuffer.destroy(),t.dashTexture.destroy()}),this.passes.length=0,this}},{\"array-bounds\":66,\"array-normalize\":67,\"color-normalize\":121,earcut:493,\"es6-weak-map\":494,\"flatten-vertex-data\":228,glslify:410,\"object-assign\":455,\"parse-rect\":460,\"pick-by-alias\":466,\"to-float32\":539}],493:[function(t,e,r){\"use strict\";function n(t,e,r){r=r||2;var n,s,l,c,u,p,g,v=e&&e.length,m=v?e[0]*r:t.length,y=a(t,0,m,r,!0),x=[];if(!y||y.next===y.prev)return x;if(v&&(y=function(t,e,r,n){var o,s,l,c,u,p=[];for(o=0,s=e.length;o<s;o++)l=e[o]*n,c=o<s-1?e[o+1]*n:t.length,(u=a(t,l,c,n,!1))===u.next&&(u.steiner=!0),p.push(d(u));for(p.sort(h),o=0;o<p.length;o++)f(p[o],r),r=i(r,r.next);return r}(t,e,y,r)),t.length>80*r){n=l=t[0],s=c=t[1];for(var b=r;b<m;b+=r)(u=t[b])<n&&(n=u),(p=t[b+1])<s&&(s=p),u>l&&(l=u),p>c&&(c=p);g=0!==(g=Math.max(l-n,c-s))?1/g:0}return o(y,x,r,n,s,g),x}function a(t,e,r,n,a){var i,o;if(a===A(t,e,r,n)>0)for(i=e;i<r;i+=n)o=w(i,t[i],t[i+1],o);else for(i=r-n;i>=e;i-=n)o=w(i,t[i],t[i+1],o);return o&&y(o,o.next)&&(k(o),o=o.next),o}function i(t,e){if(!t)return t;e||(e=t);var r,n=t;do{if(r=!1,n.steiner||!y(n,n.next)&&0!==m(n.prev,n,n.next))n=n.next;else{if(k(n),(n=e=n.prev)===n.next)break;r=!0}}while(r||n!==e);return e}function o(t,e,r,n,a,h,f){if(t){!f&&h&&function(t,e,r,n){var a=t;do{null===a.z&&(a.z=p(a.x,a.y,e,r,n)),a.prevZ=a.prev,a.nextZ=a.next,a=a.next}while(a!==t);a.prevZ.nextZ=null,a.prevZ=null,function(t){var e,r,n,a,i,o,s,l,c=1;do{for(r=t,t=null,i=null,o=0;r;){for(o++,n=r,s=0,e=0;e<c&&(s++,n=n.nextZ);e++);for(l=c;s>0||l>0&&n;)0!==s&&(0===l||!n||r.z<=n.z)?(a=r,r=r.nextZ,s--):(a=n,n=n.nextZ,l--),i?i.nextZ=a:t=a,a.prevZ=i,i=a;r=n}i.nextZ=null,c*=2}while(o>1)}(a)}(t,n,a,h);for(var d,g,v=t;t.prev!==t.next;)if(d=t.prev,g=t.next,h?l(t,n,a,h):s(t))e.push(d.i/r),e.push(t.i/r),e.push(g.i/r),k(t),t=g.next,v=g.next;else if((t=g)===v){f?1===f?o(t=c(t,e,r),e,r,n,a,h,2):2===f&&u(t,e,r,n,a,h):o(i(t),e,r,n,a,h,1);break}}}function s(t){var e=t.prev,r=t,n=t.next;if(m(e,r,n)>=0)return!1;for(var a=t.next.next;a!==t.prev;){if(g(e.x,e.y,r.x,r.y,n.x,n.y,a.x,a.y)&&m(a.prev,a,a.next)>=0)return!1;a=a.next}return!0}function l(t,e,r,n){var a=t.prev,i=t,o=t.next;if(m(a,i,o)>=0)return!1;for(var s=a.x<i.x?a.x<o.x?a.x:o.x:i.x<o.x?i.x:o.x,l=a.y<i.y?a.y<o.y?a.y:o.y:i.y<o.y?i.y:o.y,c=a.x>i.x?a.x>o.x?a.x:o.x:i.x>o.x?i.x:o.x,u=a.y>i.y?a.y>o.y?a.y:o.y:i.y>o.y?i.y:o.y,h=p(s,l,e,r,n),f=p(c,u,e,r,n),d=t.prevZ,v=t.nextZ;d&&d.z>=h&&v&&v.z<=f;){if(d!==t.prev&&d!==t.next&&g(a.x,a.y,i.x,i.y,o.x,o.y,d.x,d.y)&&m(d.prev,d,d.next)>=0)return!1;if(d=d.prevZ,v!==t.prev&&v!==t.next&&g(a.x,a.y,i.x,i.y,o.x,o.y,v.x,v.y)&&m(v.prev,v,v.next)>=0)return!1;v=v.nextZ}for(;d&&d.z>=h;){if(d!==t.prev&&d!==t.next&&g(a.x,a.y,i.x,i.y,o.x,o.y,d.x,d.y)&&m(d.prev,d,d.next)>=0)return!1;d=d.prevZ}for(;v&&v.z<=f;){if(v!==t.prev&&v!==t.next&&g(a.x,a.y,i.x,i.y,o.x,o.y,v.x,v.y)&&m(v.prev,v,v.next)>=0)return!1;v=v.nextZ}return!0}function c(t,e,r){var n=t;do{var a=n.prev,i=n.next.next;!y(a,i)&&x(a,n,n.next,i)&&b(a,i)&&b(i,a)&&(e.push(a.i/r),e.push(n.i/r),e.push(i.i/r),k(n),k(n.next),n=t=i),n=n.next}while(n!==t);return n}function u(t,e,r,n,a,s){var l=t;do{for(var c=l.next.next;c!==l.prev;){if(l.i!==c.i&&v(l,c)){var u=_(l,c);return l=i(l,l.next),u=i(u,u.next),o(l,e,r,n,a,s),void o(u,e,r,n,a,s)}c=c.next}l=l.next}while(l!==t)}function h(t,e){return t.x-e.x}function f(t,e){if(e=function(t,e){var r,n=e,a=t.x,i=t.y,o=-1/0;do{if(i<=n.y&&i>=n.next.y&&n.next.y!==n.y){var s=n.x+(i-n.y)*(n.next.x-n.x)/(n.next.y-n.y);if(s<=a&&s>o){if(o=s,s===a){if(i===n.y)return n;if(i===n.next.y)return n.next}r=n.x<n.next.x?n:n.next}}n=n.next}while(n!==e);if(!r)return null;if(a===o)return r.prev;var l,c=r,u=r.x,h=r.y,f=1/0;n=r.next;for(;n!==c;)a>=n.x&&n.x>=u&&a!==n.x&&g(i<h?a:o,i,u,h,i<h?o:a,i,n.x,n.y)&&((l=Math.abs(i-n.y)/(a-n.x))<f||l===f&&n.x>r.x)&&b(n,t)&&(r=n,f=l),n=n.next;return r}(t,e)){var r=_(e,t);i(r,r.next)}}function p(t,e,r,n,a){return(t=1431655765&((t=858993459&((t=252645135&((t=16711935&((t=32767*(t-r)*a)|t<<8))|t<<4))|t<<2))|t<<1))|(e=1431655765&((e=858993459&((e=252645135&((e=16711935&((e=32767*(e-n)*a)|e<<8))|e<<4))|e<<2))|e<<1))<<1}function d(t){var e=t,r=t;do{(e.x<r.x||e.x===r.x&&e.y<r.y)&&(r=e),e=e.next}while(e!==t);return r}function g(t,e,r,n,a,i,o,s){return(a-o)*(e-s)-(t-o)*(i-s)>=0&&(t-o)*(n-s)-(r-o)*(e-s)>=0&&(r-o)*(i-s)-(a-o)*(n-s)>=0}function v(t,e){return t.next.i!==e.i&&t.prev.i!==e.i&&!function(t,e){var r=t;do{if(r.i!==t.i&&r.next.i!==t.i&&r.i!==e.i&&r.next.i!==e.i&&x(r,r.next,t,e))return!0;r=r.next}while(r!==t);return!1}(t,e)&&b(t,e)&&b(e,t)&&function(t,e){var r=t,n=!1,a=(t.x+e.x)/2,i=(t.y+e.y)/2;do{r.y>i!=r.next.y>i&&r.next.y!==r.y&&a<(r.next.x-r.x)*(i-r.y)/(r.next.y-r.y)+r.x&&(n=!n),r=r.next}while(r!==t);return n}(t,e)}function m(t,e,r){return(e.y-t.y)*(r.x-e.x)-(e.x-t.x)*(r.y-e.y)}function y(t,e){return t.x===e.x&&t.y===e.y}function x(t,e,r,n){return!!(y(t,e)&&y(r,n)||y(t,n)&&y(r,e))||m(t,e,r)>0!=m(t,e,n)>0&&m(r,n,t)>0!=m(r,n,e)>0}function b(t,e){return m(t.prev,t,t.next)<0?m(t,e,t.next)>=0&&m(t,t.prev,e)>=0:m(t,e,t.prev)<0||m(t,t.next,e)<0}function _(t,e){var r=new T(t.i,t.x,t.y),n=new T(e.i,e.x,e.y),a=t.next,i=e.prev;return t.next=e,e.prev=t,r.next=a,a.prev=r,n.next=r,r.prev=n,i.next=n,n.prev=i,n}function w(t,e,r,n){var a=new T(t,e,r);return n?(a.next=n.next,a.prev=n,n.next.prev=a,n.next=a):(a.prev=a,a.next=a),a}function k(t){t.next.prev=t.prev,t.prev.next=t.next,t.prevZ&&(t.prevZ.nextZ=t.nextZ),t.nextZ&&(t.nextZ.prevZ=t.prevZ)}function T(t,e,r){this.i=t,this.x=e,this.y=r,this.prev=null,this.next=null,this.z=null,this.prevZ=null,this.nextZ=null,this.steiner=!1}function A(t,e,r,n){for(var a=0,i=e,o=r-n;i<r;i+=n)a+=(t[o]-t[i])*(t[i+1]+t[o+1]),o=i;return a}e.exports=n,e.exports.default=n,n.deviation=function(t,e,r,n){var a=e&&e.length,i=a?e[0]*r:t.length,o=Math.abs(A(t,0,i,r));if(a)for(var s=0,l=e.length;s<l;s++){var c=e[s]*r,u=s<l-1?e[s+1]*r:t.length;o-=Math.abs(A(t,c,u,r))}var h=0;for(s=0;s<n.length;s+=3){var f=n[s]*r,p=n[s+1]*r,d=n[s+2]*r;h+=Math.abs((t[f]-t[d])*(t[p+1]-t[f+1])-(t[f]-t[p])*(t[d+1]-t[f+1]))}return 0===o&&0===h?0:Math.abs((h-o)/o)},n.flatten=function(t){for(var e=t[0][0].length,r={vertices:[],holes:[],dimensions:e},n=0,a=0;a<t.length;a++){for(var i=0;i<t[a].length;i++)for(var o=0;o<e;o++)r.vertices.push(t[a][i][o]);a>0&&(n+=t[a-1].length,r.holes.push(n))}return r}},{}],494:[function(t,e,r){arguments[4][319][0].apply(r,arguments)},{\"./is-implemented\":495,\"./polyfill\":497,dup:319}],495:[function(t,e,r){arguments[4][320][0].apply(r,arguments)},{dup:320}],496:[function(t,e,r){arguments[4][321][0].apply(r,arguments)},{dup:321}],497:[function(t,e,r){arguments[4][322][0].apply(r,arguments)},{\"./is-native-implemented\":496,d:152,dup:322,\"es5-ext/object/is-value\":195,\"es5-ext/object/set-prototype-of\":201,\"es5-ext/object/valid-object\":205,\"es5-ext/object/valid-value\":206,\"es5-ext/string/random-uniq\":211,\"es6-iterator/for-of\":213,\"es6-iterator/get\":214,\"es6-symbol\":220}],498:[function(t,e,r){\"use strict\";function n(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var r=[],n=!0,a=!1,i=void 0;try{for(var o,s=t[Symbol.iterator]();!(n=(o=s.next()).done)&&(r.push(o.value),!e||r.length!==e);n=!0);}catch(t){a=!0,i=t}finally{try{n||null==s.return||s.return()}finally{if(a)throw i}}return r}(t,e)||function(){throw new TypeError(\"Invalid attempt to destructure non-iterable instance\")}()}function a(t){return function(t){if(Array.isArray(t)){for(var e=0,r=new Array(t.length);e<t.length;e++)r[e]=t[e];return r}}(t)||function(t){if(Symbol.iterator in Object(t)||\"[object Arguments]\"===Object.prototype.toString.call(t))return Array.from(t)}(t)||function(){throw new TypeError(\"Invalid attempt to spread non-iterable instance\")}()}var i=t(\"color-normalize\"),o=t(\"array-bounds\"),s=t(\"color-id\"),l=t(\"point-cluster\"),c=t(\"object-assign\"),u=t(\"glslify\"),h=t(\"pick-by-alias\"),f=t(\"update-diff\"),p=t(\"flatten-vertex-data\"),d=t(\"is-iexplorer\"),g=t(\"to-float32\"),v=t(\"parse-rect\"),m=y;function y(t,e){var r=this;if(!(this instanceof y))return new y(t,e);\"function\"==typeof t?(e||(e={}),e.regl=t):(e=t,t=null),e&&e.length&&(e.positions=e);var n,a=(t=e.regl)._gl,i=[];this.tooManyColors=d,n=t.texture({data:new Uint8Array(1020),width:255,height:1,type:\"uint8\",format:\"rgba\",wrapS:\"clamp\",wrapT:\"clamp\",mag:\"nearest\",min:\"nearest\"}),c(this,{regl:t,gl:a,groups:[],markerCache:[null],markerTextures:[null],palette:i,paletteIds:{},paletteTexture:n,maxColors:255,maxSize:100,canvas:a.canvas}),this.update(e);var o={uniforms:{pixelRatio:t.context(\"pixelRatio\"),palette:n,paletteSize:function(t,e){return[r.tooManyColors?0:255,n.height]},scale:t.prop(\"scale\"),scaleFract:t.prop(\"scaleFract\"),translate:t.prop(\"translate\"),translateFract:t.prop(\"translateFract\"),opacity:t.prop(\"opacity\"),marker:t.prop(\"markerTexture\")},attributes:{x:function(t,e){return e.xAttr||{buffer:e.positionBuffer,stride:8,offset:0}},y:function(t,e){return e.yAttr||{buffer:e.positionBuffer,stride:8,offset:4}},xFract:function(t,e){return e.xAttr?{constant:[0,0]}:{buffer:e.positionFractBuffer,stride:8,offset:0}},yFract:function(t,e){return e.yAttr?{constant:[0,0]}:{buffer:e.positionFractBuffer,stride:8,offset:4}},size:function(t,e){return e.size.length?{buffer:e.sizeBuffer,stride:2,offset:0}:{constant:[Math.round(255*e.size/r.maxSize)]}},borderSize:function(t,e){return e.borderSize.length?{buffer:e.sizeBuffer,stride:2,offset:1}:{constant:[Math.round(255*e.borderSize/r.maxSize)]}},colorId:function(t,e){return e.color.length?{buffer:e.colorBuffer,stride:r.tooManyColors?8:4,offset:0}:{constant:r.tooManyColors?i.slice(4*e.color,4*e.color+4):[e.color]}},borderColorId:function(t,e){return e.borderColor.length?{buffer:e.colorBuffer,stride:r.tooManyColors?8:4,offset:r.tooManyColors?4:2}:{constant:r.tooManyColors?i.slice(4*e.borderColor,4*e.borderColor+4):[e.borderColor]}},isActive:function(t,e){return!0===e.activation?{constant:[1]}:e.activation?e.activation:{constant:[0]}}},blend:{enable:!0,color:[0,0,0,1],func:{srcRGB:\"src alpha\",dstRGB:\"one minus src alpha\",srcAlpha:\"one minus dst alpha\",dstAlpha:\"one\"}},scissor:{enable:!0,box:t.prop(\"viewport\")},viewport:t.prop(\"viewport\"),stencil:{enable:!1},depth:{enable:!1},elements:t.prop(\"elements\"),count:t.prop(\"count\"),offset:t.prop(\"offset\"),primitive:\"points\"},s=c({},o);s.frag=u([\"precision highp float;\\n#define GLSLIFY 1\\n\\nvarying vec4 fragColor, fragBorderColor;\\nvarying float fragWidth, fragBorderColorLevel, fragColorLevel;\\n\\nuniform sampler2D marker;\\nuniform float pixelRatio, opacity;\\n\\nfloat smoothStep(float x, float y) {\\n  return 1.0 / (1.0 + exp(50.0*(x - y)));\\n}\\n\\nvoid main() {\\n  float dist = texture2D(marker, gl_PointCoord).r, delta = fragWidth;\\n\\n  // max-distance alpha\\n  if (dist < 0.003) discard;\\n\\n  // null-border case\\n  if (fragBorderColorLevel == fragColorLevel || fragBorderColor.a == 0.) {\\n    float colorAmt = smoothstep(.5 - delta, .5 + delta, dist);\\n    gl_FragColor = vec4(fragColor.rgb, colorAmt * fragColor.a * opacity);\\n  }\\n  else {\\n    float borderColorAmt = smoothstep(fragBorderColorLevel - delta, fragBorderColorLevel + delta, dist);\\n    float colorAmt = smoothstep(fragColorLevel - delta, fragColorLevel + delta, dist);\\n\\n    vec4 color = fragBorderColor;\\n    color.a *= borderColorAmt;\\n    color = mix(color, fragColor, colorAmt);\\n    color.a *= opacity;\\n\\n    gl_FragColor = color;\\n  }\\n\\n}\\n\"]),s.vert=u([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute float x, y, xFract, yFract;\\nattribute float size, borderSize;\\nattribute vec4 colorId, borderColorId;\\nattribute float isActive;\\n\\nuniform vec2 scale, scaleFract, translate, translateFract, paletteSize;\\nuniform float pixelRatio;\\nuniform sampler2D palette;\\n\\nconst float maxSize = 100.;\\nconst float borderLevel = .5;\\n\\nvarying vec4 fragColor, fragBorderColor;\\nvarying float fragPointSize, fragBorderRadius, fragWidth, fragBorderColorLevel, fragColorLevel;\\n\\nbool isDirect = (paletteSize.x < 1.);\\n\\nvec4 getColor(vec4 id) {\\n  return isDirect ? id / 255. : texture2D(palette,\\n    vec2(\\n      (id.x + .5) / paletteSize.x,\\n      (id.y + .5) / paletteSize.y\\n    )\\n  );\\n}\\n\\nvoid main() {\\n  if (isActive == 0.) return;\\n\\n  vec2 position = vec2(x, y);\\n  vec2 positionFract = vec2(xFract, yFract);\\n\\n  vec4 color = getColor(colorId);\\n  vec4 borderColor = getColor(borderColorId);\\n\\n  float size = size * maxSize / 255.;\\n  float borderSize = borderSize * maxSize / 255.;\\n\\n  gl_PointSize = 2. * size * pixelRatio;\\n  fragPointSize = size * pixelRatio;\\n\\n  vec2 pos = (position + translate) * scale\\n      + (positionFract + translateFract) * scale\\n      + (position + translate) * scaleFract\\n      + (positionFract + translateFract) * scaleFract;\\n\\n  gl_Position = vec4(pos * 2. - 1., 0, 1);\\n\\n  fragColor = color;\\n  fragBorderColor = borderColor;\\n  fragWidth = 1. / gl_PointSize;\\n\\n  fragBorderColorLevel = clamp(borderLevel - borderLevel * borderSize / size, 0., 1.);\\n  fragColorLevel = clamp(borderLevel + (1. - borderLevel) * borderSize / size, 0., 1.);\\n}\"]),this.drawMarker=t(s);var l=c({},o);l.frag=u([\"precision highp float;\\n#define GLSLIFY 1\\n\\nvarying vec4 fragColor, fragBorderColor;\\n\\nuniform float opacity;\\nvarying float fragBorderRadius, fragWidth;\\n\\nfloat smoothStep(float edge0, float edge1, float x) {\\n\\tfloat t;\\n\\tt = clamp((x - edge0) / (edge1 - edge0), 0.0, 1.0);\\n\\treturn t * t * (3.0 - 2.0 * t);\\n}\\n\\nvoid main() {\\n\\tfloat radius, alpha = 1.0, delta = fragWidth;\\n\\n\\tradius = length(2.0 * gl_PointCoord.xy - 1.0);\\n\\n\\tif (radius > 1.0 + delta) {\\n\\t\\tdiscard;\\n\\t}\\n\\n\\talpha -= smoothstep(1.0 - delta, 1.0 + delta, radius);\\n\\n\\tfloat borderRadius = fragBorderRadius;\\n\\tfloat ratio = smoothstep(borderRadius - delta, borderRadius + delta, radius);\\n\\tvec4 color = mix(fragColor, fragBorderColor, ratio);\\n\\tcolor.a *= alpha * opacity;\\n\\tgl_FragColor = color;\\n}\\n\"]),l.vert=u([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute float x, y, xFract, yFract;\\nattribute float size, borderSize;\\nattribute vec4 colorId, borderColorId;\\nattribute float isActive;\\n\\nuniform vec2 scale, scaleFract, translate, translateFract;\\nuniform float pixelRatio;\\nuniform sampler2D palette;\\nuniform vec2 paletteSize;\\n\\nconst float maxSize = 100.;\\n\\nvarying vec4 fragColor, fragBorderColor;\\nvarying float fragBorderRadius, fragWidth;\\n\\nbool isDirect = (paletteSize.x < 1.);\\n\\nvec4 getColor(vec4 id) {\\n  return isDirect ? id / 255. : texture2D(palette,\\n    vec2(\\n      (id.x + .5) / paletteSize.x,\\n      (id.y + .5) / paletteSize.y\\n    )\\n  );\\n}\\n\\nvoid main() {\\n  // ignore inactive points\\n  if (isActive == 0.) return;\\n\\n  vec2 position = vec2(x, y);\\n  vec2 positionFract = vec2(xFract, yFract);\\n\\n  vec4 color = getColor(colorId);\\n  vec4 borderColor = getColor(borderColorId);\\n\\n  float size = size * maxSize / 255.;\\n  float borderSize = borderSize * maxSize / 255.;\\n\\n  gl_PointSize = (size + borderSize) * pixelRatio;\\n\\n  vec2 pos = (position + translate) * scale\\n      + (positionFract + translateFract) * scale\\n      + (position + translate) * scaleFract\\n      + (positionFract + translateFract) * scaleFract;\\n\\n  gl_Position = vec4(pos * 2. - 1., 0, 1);\\n\\n  fragBorderRadius = 1. - 2. * borderSize / (size + borderSize);\\n  fragColor = color;\\n  fragBorderColor = borderColor.a == 0. || borderSize == 0. ? vec4(color.rgb, 0.) : borderColor;\\n  fragWidth = 1. / gl_PointSize;\\n}\\n\"]),d&&(l.frag=l.frag.replace(\"smoothstep\",\"smoothStep\"),s.frag=s.frag.replace(\"smoothstep\",\"smoothStep\")),this.drawCircle=t(l)}y.defaults={color:\"black\",borderColor:\"transparent\",borderSize:0,size:12,opacity:1,marker:void 0,viewport:null,range:null,pixelSize:null,count:0,offset:0,bounds:null,positions:[],snap:1e4},y.prototype.render=function(){return arguments.length&&this.update.apply(this,arguments),this.draw(),this},y.prototype.draw=function(){for(var t=this,e=arguments.length,r=new Array(e),n=0;n<e;n++)r[n]=arguments[n];var a=this.groups;if(1===r.length&&Array.isArray(r[0])&&(null===r[0][0]||Array.isArray(r[0][0]))&&(r=r[0]),this.regl._refresh(),r.length)for(var i=0;i<r.length;i++)this.drawItem(i,r[i]);else a.forEach(function(e,r){t.drawItem(r)});return this},y.prototype.drawItem=function(t,e){var r=this.groups,n=r[t];if(\"number\"==typeof e&&(t=e,n=r[e],e=null),n&&n.count&&n.opacity){n.activation[0]&&this.drawCircle(this.getMarkerDrawOptions(0,n,e));for(var i=[],o=1;o<n.activation.length;o++)n.activation[o]&&(!0===n.activation[o]||n.activation[o].data.length)&&i.push.apply(i,a(this.getMarkerDrawOptions(o,n,e)));i.length&&this.drawMarker(i)}},y.prototype.getMarkerDrawOptions=function(t,e,r){var a=e.range,i=e.tree,o=e.viewport,s=e.activation,l=e.selectionBuffer,u=e.count;this.regl;if(!i)return r?[c({},e,{markerTexture:this.markerTextures[t],activation:s[t],count:r.length,elements:r,offset:0})]:[c({},e,{markerTexture:this.markerTextures[t],activation:s[t],offset:0})];var h=[],f=i.range(a,{lod:!0,px:[(a[2]-a[0])/o.width,(a[3]-a[1])/o.height]});if(r){for(var p=s[t].data,d=new Uint8Array(u),g=0;g<r.length;g++){var v=r[g];d[v]=p?p[v]:1}l.subdata(d)}for(var m=f.length;m--;){var y=n(f[m],2),x=y[0],b=y[1];h.push(c({},e,{markerTexture:this.markerTextures[t],activation:r?l:s[t],offset:x,count:b-x}))}return h},y.prototype.update=function(){for(var t=this,e=arguments.length,r=new Array(e),n=0;n<e;n++)r[n]=arguments[n];if(r.length){1===r.length&&Array.isArray(r[0])&&(r=r[0]);var a=this.groups,i=this.gl,s=this.regl,u=this.maxSize,d=this.maxColors,m=this.palette;this.groups=a=r.map(function(e,r){var n=a[r];if(void 0===e)return n;null===e?e={positions:null}:\"function\"==typeof e?e={ondraw:e}:\"number\"==typeof e[0]&&(e={positions:e}),null===(e=h(e,{positions:\"positions data points\",snap:\"snap cluster lod tree\",size:\"sizes size radius\",borderSize:\"borderSizes borderSize border-size bordersize borderWidth borderWidths border-width borderwidth stroke-width strokeWidth strokewidth outline\",color:\"colors color fill fill-color fillColor\",borderColor:\"borderColors borderColor stroke stroke-color strokeColor\",marker:\"markers marker shape\",range:\"range dataBox databox\",viewport:\"viewport viewPort viewBox viewbox\",opacity:\"opacity alpha transparency\",bounds:\"bound bounds boundaries limits\",tooManyColors:\"tooManyColors palette paletteMode optimizePalette enablePalette\"})).positions&&(e.positions=[]),null!=e.tooManyColors&&(t.tooManyColors=e.tooManyColors),n||(a[r]=n={id:r,scale:null,translate:null,scaleFract:null,translateFract:null,activation:[],selectionBuffer:s.buffer({data:new Uint8Array(0),usage:\"stream\",type:\"uint8\"}),sizeBuffer:s.buffer({data:new Uint8Array(0),usage:\"dynamic\",type:\"uint8\"}),colorBuffer:s.buffer({data:new Uint8Array(0),usage:\"dynamic\",type:\"uint8\"}),positionBuffer:s.buffer({data:new Uint8Array(0),usage:\"dynamic\",type:\"float\"}),positionFractBuffer:s.buffer({data:new Uint8Array(0),usage:\"dynamic\",type:\"float\"})},e=c({},y.defaults,e)),!e.positions||\"marker\"in e||(e.marker=n.marker,delete n.marker),!e.marker||\"positions\"in e||(e.positions=n.positions,delete n.positions);var x=0,b=0;if(f(n,e,[{snap:!0,size:function(t,e){return null==t&&(t=y.defaults.size),x+=t&&t.length?1:0,t},borderSize:function(t,e){return null==t&&(t=y.defaults.borderSize),x+=t&&t.length?1:0,t},opacity:parseFloat,color:function(e,r){return null==e&&(e=y.defaults.color),e=t.updateColor(e),b++,e},borderColor:function(e,r){return null==e&&(e=y.defaults.borderColor),e=t.updateColor(e),b++,e},bounds:function(t,e,r){return\"range\"in r||(r.range=null),t},positions:function(t,e,r){var n=e.snap,a=e.positionBuffer,i=e.positionFractBuffer,c=e.selectionBuffer;if(t.x||t.y)return t.x.length?e.xAttr={buffer:s.buffer(t.x),offset:0,stride:4,count:t.x.length}:e.xAttr={buffer:t.x.buffer,offset:4*t.x.offset||0,stride:4*(t.x.stride||1),count:t.x.count},t.y.length?e.yAttr={buffer:s.buffer(t.y),offset:0,stride:4,count:t.y.length}:e.yAttr={buffer:t.y.buffer,offset:4*t.y.offset||0,stride:4*(t.y.stride||1),count:t.y.count},e.count=Math.max(e.xAttr.count,e.yAttr.count),t;t=p(t,\"float64\");var u=e.count=Math.floor(t.length/2),h=e.bounds=u?o(t,2):null;if(r.range||e.range||(delete e.range,r.range=h),r.marker||e.marker||(delete e.marker,r.marker=null),n&&(!0===n||u>n)?e.tree=l(t,{bounds:h}):n&&n.length&&(e.tree=n),e.tree){var f={primitive:\"points\",usage:\"static\",data:e.tree,type:\"uint32\"};e.elements?e.elements(f):e.elements=s.elements(f)}return a({data:g.float(t),usage:\"dynamic\"}),i({data:g.fract(t),usage:\"dynamic\"}),c({data:new Uint8Array(u),type:\"uint8\",usage:\"stream\"}),t}},{marker:function(e,r,n){var a=r.activation;if(a.forEach(function(t){return t&&t.destroy&&t.destroy()}),a.length=0,e&&\"number\"!=typeof e[0]){for(var i=[],o=0,l=Math.min(e.length,r.count);o<l;o++){var c=t.addMarker(e[o]);i[c]||(i[c]=new Uint8Array(r.count)),i[c][o]=1}for(var u=0;u<i.length;u++)if(i[u]){var h={data:i[u],type:\"uint8\",usage:\"static\"};a[u]?a[u](h):a[u]=s.buffer(h),a[u].data=i[u]}}else{a[t.addMarker(e)]=!0}return e},range:function(t,e,r){var n=e.bounds;if(n)return t||(t=n),e.scale=[1/(t[2]-t[0]),1/(t[3]-t[1])],e.translate=[-t[0],-t[1]],e.scaleFract=g.fract(e.scale),e.translateFract=g.fract(e.translate),t},viewport:function(t){return v(t||[i.drawingBufferWidth,i.drawingBufferHeight])}}]),x){var _=n,w=_.count,k=_.size,T=_.borderSize,A=_.sizeBuffer,M=new Uint8Array(2*w);if(k.length||T.length)for(var S=0;S<w;S++)M[2*S]=Math.round(255*(null==k[S]?k:k[S])/u),M[2*S+1]=Math.round(255*(null==T[S]?T:T[S])/u);A({data:M,usage:\"dynamic\"})}if(b){var E,C=n,L=C.count,P=C.color,O=C.borderColor,I=C.colorBuffer;if(t.tooManyColors){if(P.length||O.length){E=new Uint8Array(8*L);for(var z=0;z<L;z++){var D=P[z];E[8*z]=m[4*D],E[8*z+1]=m[4*D+1],E[8*z+2]=m[4*D+2],E[8*z+3]=m[4*D+3];var R=O[z];E[8*z+4]=m[4*R],E[8*z+5]=m[4*R+1],E[8*z+6]=m[4*R+2],E[8*z+7]=m[4*R+3]}}}else if(P.length||O.length){E=new Uint8Array(4*L+2);for(var F=0;F<L;F++)null!=P[F]&&(E[4*F]=P[F]%d,E[4*F+1]=Math.floor(P[F]/d)),null!=O[F]&&(E[4*F+2]=O[F]%d,E[4*F+3]=Math.floor(O[F]/d))}I({data:E||new Uint8Array(0),type:\"uint8\",usage:\"dynamic\"})}return n})}},y.prototype.addMarker=function(t){var e,r=this.markerTextures,n=this.regl,a=this.markerCache,i=null==t?0:a.indexOf(t);if(i>=0)return i;if(t instanceof Uint8Array||t instanceof Uint8ClampedArray)e=t;else{e=new Uint8Array(t.length);for(var o=0,s=t.length;o<s;o++)e[o]=255*t[o]}var l=Math.floor(Math.sqrt(e.length));return i=r.length,a.push(t),r.push(n.texture({channels:1,data:e,radius:l,mag:\"linear\",min:\"linear\"})),i},y.prototype.updateColor=function(t){var e=this.paletteIds,r=this.palette,n=this.maxColors;Array.isArray(t)||(t=[t]);var a=[];if(\"number\"==typeof t[0]){var o=[];if(Array.isArray(t))for(var l=0;l<t.length;l+=4)o.push(t.slice(l,l+4));else for(var c=0;c<t.length;c+=4)o.push(t.subarray(c,c+4));t=o}for(var u=0;u<t.length;u++){var h=t[u];h=i(h,\"uint8\");var f=s(h,!1);if(null==e[f]){var p=r.length;e[f]=Math.floor(p/4),r[p]=h[0],r[p+1]=h[1],r[p+2]=h[2],r[p+3]=h[3]}a[u]=e[f]}return!this.tooManyColors&&r.length>4*n&&(this.tooManyColors=!0),this.updatePalette(r),1===a.length?a[0]:a},y.prototype.updatePalette=function(t){if(!this.tooManyColors){var e=this.maxColors,r=this.paletteTexture,n=Math.ceil(.25*t.length/e);if(n>1)for(var a=.25*(t=t.slice()).length%e;a<n*e;a++)t.push(0,0,0,0);r.height<n&&r.resize(e,n),r.subimage({width:Math.min(.25*t.length,e),height:n,data:t},0,0)}},y.prototype.destroy=function(){return this.groups.forEach(function(t){t.sizeBuffer.destroy(),t.positionBuffer.destroy(),t.positionFractBuffer.destroy(),t.colorBuffer.destroy(),t.activation.forEach(function(t){return t&&t.destroy&&t.destroy()}),t.selectionBuffer.destroy(),t.elements&&t.elements.destroy()}),this.groups.length=0,this.paletteTexture.destroy(),this.markerTextures.forEach(function(t){return t&&t.destroy&&t.destroy()}),this};var x=t(\"object-assign\");e.exports=function(t,e){var r=new m(t,e),n=r.render.bind(r);return x(n,{render:n,update:r.update.bind(r),draw:r.draw.bind(r),destroy:r.destroy.bind(r),regl:r.regl,gl:r.gl,canvas:r.gl.canvas,groups:r.groups,markers:r.markerCache,palette:r.palette}),n}},{\"array-bounds\":66,\"color-id\":119,\"color-normalize\":121,\"flatten-vertex-data\":228,glslify:410,\"is-iexplorer\":420,\"object-assign\":455,\"parse-rect\":460,\"pick-by-alias\":466,\"point-cluster\":500,\"to-float32\":539,\"update-diff\":550}],499:[function(t,e,r){arguments[4][112][0].apply(r,arguments)},{dup:112}],500:[function(t,e,r){\"use strict\";e.exports=t(\"./quad\")},{\"./quad\":501}],501:[function(t,e,r){\"use strict\";var n=t(\"binary-search-bounds\"),a=t(\"clamp\"),i=t(\"parse-rect\"),o=t(\"array-bounds\"),s=t(\"pick-by-alias\"),l=t(\"defined\"),c=t(\"flatten-vertex-data\"),u=t(\"is-obj\"),h=t(\"dtype\"),f=t(\"math-log2\"),p=1073741824;function d(t,e){for(var r=e[0],n=e[1],i=1/(e[2]-r),o=1/(e[3]-n),s=new Array(t.length),l=0,c=t.length/2;l<c;l++)s[2*l]=a((t[2*l]-r)*i,0,1),s[2*l+1]=a((t[2*l+1]-n)*o,0,1);return s}e.exports=function(t,e){e||(e={}),t=c(t,\"float64\"),e=s(e,{bounds:\"range bounds dataBox databox\",maxDepth:\"depth maxDepth maxdepth level maxLevel maxlevel levels\",dtype:\"type dtype format out dst output destination\"});var r=l(e.maxDepth,255),a=l(e.bounds,o(t,2));a[0]===a[2]&&a[2]++,a[1]===a[3]&&a[3]++;var g,v=d(t,a),m=t.length>>>1;e.dtype||(e.dtype=\"array\"),\"string\"==typeof e.dtype?g=new(h(e.dtype))(m):e.dtype&&(g=e.dtype,Array.isArray(g)&&(g.length=m));for(var y=0;y<m;++y)g[y]=y;var x=[],b=[],_=[],w=[];!function t(e,n,a,i,o,s){if(!i.length)return null;var l=x[o]||(x[o]=[]);var c=_[o]||(_[o]=[]);var u=b[o]||(b[o]=[]);var h=l.length;o++;if(o>r||s>p){for(var f=0;f<i.length;f++)l.push(i[f]),c.push(s),u.push(null,null,null,null);return h}l.push(i[0]);c.push(s);if(i.length<=1)return u.push(null,null,null,null),h;var d=.5*a;var g=e+d,m=n+d;var y=[],w=[],k=[],T=[];for(var A=1,M=i.length;A<M;A++){var S=i[A],E=v[2*S],C=v[2*S+1];E<g?C<m?y.push(S):w.push(S):C<m?k.push(S):T.push(S)}s<<=2;u.push(t(e,n,d,y,o,s),t(e,m,d,w,o,s+1),t(g,n,d,k,o,s+2),t(g,m,d,T,o,s+3));return h}(0,0,1,g,0,1);for(var k=0,T=0;T<x.length;T++){var A=x[T];if(g.set)g.set(A,k);else for(var M=0,S=A.length;M<S;M++)g[M+k]=A[M];var E=k+x[T].length;w[T]=[k,E],k=E}return g.range=function(){var e,r=[],o=arguments.length;for(;o--;)r[o]=arguments[o];if(u(r[r.length-1])){var c=r.pop();r.length||null==c.x&&null==c.l&&null==c.left||(r=[c],e={}),e=s(c,{level:\"level maxLevel\",d:\"d diam diameter r radius px pxSize pixel pixelSize maxD size minSize\",lod:\"lod details ranges offsets\"})}else e={};r.length||(r=a);var h=i.apply(void 0,r),p=[Math.min(h.x,h.x+h.width),Math.min(h.y,h.y+h.height),Math.max(h.x,h.x+h.width),Math.max(h.y,h.y+h.height)],g=p[0],v=p[1],m=p[2],y=p[3],k=d([g,v,m,y],a),T=k[0],A=k[1],M=k[2],S=k[3],E=l(e.level,x.length);if(null!=e.d){var L;\"number\"==typeof e.d?L=[e.d,e.d]:e.d.length&&(L=e.d),E=Math.min(Math.max(Math.ceil(-f(Math.abs(L[0])/(a[2]-a[0]))),Math.ceil(-f(Math.abs(L[1])/(a[3]-a[1])))),E)}if(E=Math.min(E,x.length),e.lod)return function(t,e,r,a,i){for(var o=[],s=0;s<i;s++){var l=_[s],c=w[s][0],u=C(t,e,s),h=C(r,a,s),f=n.ge(l,u),p=n.gt(l,h,f,l.length-1);o[s]=[f+c,p+c]}return o}(T,A,M,S,E);var P=[];return function e(r,n,a,i,o,s){if(null!==o&&null!==s){var l=r+a,c=n+a;if(!(T>l||A>c||M<r||S<n||i>=E||o===s)){var u=x[i];void 0===s&&(s=u.length);for(var h=o;h<s;h++){var f=u[h],p=t[2*f],d=t[2*f+1];p>=g&&p<=m&&d>=v&&d<=y&&P.push(f)}var _=b[i],w=_[4*o+0],k=_[4*o+1],C=_[4*o+2],L=_[4*o+3],O=function(t,e){for(var r=null,n=0;null===r;)if(r=t[4*e+n],++n>t.length)return null;return r}(_,o+1),I=.5*a,z=i+1;e(r,n,I,z,w,k||C||L||O),e(r,n+I,I,z,k,C||L||O),e(r+I,n,I,z,C,L||O),e(r+I,n+I,I,z,L,O)}}}(0,0,1,0,0,1),P},g;function C(t,e,r){for(var n=1,a=.5,i=.5,o=.5,s=0;s<r;s++)n<<=2,n+=t<a?e<i?0:1:e<i?2:3,o*=.5,a+=t<a?-o:o,i+=e<i?-o:o;return n}}},{\"array-bounds\":66,\"binary-search-bounds\":499,clamp:116,defined:165,dtype:170,\"flatten-vertex-data\":228,\"is-obj\":422,\"math-log2\":433,\"parse-rect\":460,\"pick-by-alias\":466}],502:[function(t,e,r){\"use strict\";var n=t(\"regl-scatter2d\"),a=t(\"pick-by-alias\"),i=t(\"array-bounds\"),o=t(\"raf\"),s=t(\"array-range\"),l=t(\"parse-rect\"),c=t(\"flatten-vertex-data\");function u(t,e){if(!(this instanceof u))return new u(t,e);this.traces=[],this.passes={},this.regl=t,this.scatter=n(t),this.canvas=this.scatter.canvas}function h(t,e,r){return(null!=t.id?t.id:t)<<16|(255&e)<<8|255&r}function f(t,e,r){var n,a,i,o,s=t[e],l=t[r];return s.length>2?(s[0],s[2],n=s[1],a=s[3]):s.length?(n=s[0],a=s[1]):(s.x,n=s.y,s.x+s.width,a=s.y+s.height),l.length>2?(i=l[0],o=l[2],l[1],l[3]):l.length?(i=l[0],o=l[1]):(i=l.x,l.y,o=l.x+l.width,l.y+l.height),[i,n,o,a]}function p(t){if(\"number\"==typeof t)return[t,t,t,t];if(2===t.length)return[t[0],t[1],t[0],t[1]];var e=l(t);return[e.x,e.y,e.x+e.width,e.y+e.height]}e.exports=u,u.prototype.render=function(){for(var t,e=this,r=[],n=arguments.length;n--;)r[n]=arguments[n];return r.length&&(t=this).update.apply(t,r),this.regl.attributes.preserveDrawingBuffer?this.draw():(this.dirty?null==this.planned&&(this.planned=o(function(){e.draw(),e.dirty=!0,e.planned=null})):(this.draw(),this.dirty=!0,o(function(){e.dirty=!1})),this)},u.prototype.update=function(){for(var t,e=[],r=arguments.length;r--;)e[r]=arguments[r];if(e.length){for(var n=0;n<e.length;n++)this.updateItem(n,e[n]);this.traces=this.traces.filter(Boolean);for(var a=[],i=0,o=0;o<this.traces.length;o++){for(var s=this.traces[o],l=this.traces[o].passes,c=0;c<l.length;c++)a.push(this.passes[l[c]]);s.passOffset=i,i+=s.passes.length}return(t=this.scatter).update.apply(t,a),this}},u.prototype.updateItem=function(t,e){var r=this.regl;if(null===e)return this.traces[t]=null,this;if(!e)return this;var n,o=a(e,{data:\"data items columns rows values dimensions samples x\",snap:\"snap cluster\",size:\"sizes size radius\",color:\"colors color fill fill-color fillColor\",opacity:\"opacity alpha transparency opaque\",borderSize:\"borderSizes borderSize border-size bordersize borderWidth borderWidths border-width borderwidth stroke-width strokeWidth strokewidth outline\",borderColor:\"borderColors borderColor bordercolor stroke stroke-color strokeColor\",marker:\"markers marker shape\",range:\"range ranges databox dataBox\",viewport:\"viewport viewBox viewbox\",domain:\"domain domains area areas\",padding:\"pad padding paddings pads margin margins\",transpose:\"transpose transposed\",diagonal:\"diagonal diag showDiagonal\",upper:\"upper up top upperhalf upperHalf showupperhalf showUpper showUpperHalf\",lower:\"lower low bottom lowerhalf lowerHalf showlowerhalf showLowerHalf showLower\"}),s=this.traces[t]||(this.traces[t]={id:t,buffer:r.buffer({usage:\"dynamic\",type:\"float\",data:new Uint8Array}),color:\"black\",marker:null,size:12,borderColor:\"transparent\",borderSize:1,viewport:l([r._gl.drawingBufferWidth,r._gl.drawingBufferHeight]),padding:[0,0,0,0],opacity:1,diagonal:!0,upper:!0,lower:!0});if(null!=o.color&&(s.color=o.color),null!=o.size&&(s.size=o.size),null!=o.marker&&(s.marker=o.marker),null!=o.borderColor&&(s.borderColor=o.borderColor),null!=o.borderSize&&(s.borderSize=o.borderSize),null!=o.opacity&&(s.opacity=o.opacity),o.viewport&&(s.viewport=l(o.viewport)),null!=o.diagonal&&(s.diagonal=o.diagonal),null!=o.upper&&(s.upper=o.upper),null!=o.lower&&(s.lower=o.lower),o.data){s.buffer(c(o.data)),s.columns=o.data.length,s.count=o.data[0].length,s.bounds=[];for(var u=0;u<s.columns;u++)s.bounds[u]=i(o.data[u],1)}o.range&&(s.range=o.range,n=s.range&&\"number\"!=typeof s.range[0]),o.domain&&(s.domain=o.domain);var d=!1;null!=o.padding&&(Array.isArray(o.padding)&&o.padding.length===s.columns&&\"number\"==typeof o.padding[o.padding.length-1]?(s.padding=o.padding.map(p),d=!0):s.padding=p(o.padding));var g=s.columns,v=s.count,m=s.viewport.width,y=s.viewport.height,x=s.viewport.x,b=s.viewport.y,_=m/g,w=y/g;s.passes=[];for(var k=0;k<g;k++)for(var T=0;T<g;T++)if((s.diagonal||T!==k)&&(s.upper||!(k>T))&&(s.lower||!(k<T))){var A=h(s.id,k,T),M=this.passes[A]||(this.passes[A]={});if(o.data&&(o.transpose?M.positions={x:{buffer:s.buffer,offset:T,count:v,stride:g},y:{buffer:s.buffer,offset:k,count:v,stride:g}}:M.positions={x:{buffer:s.buffer,offset:T*v,count:v},y:{buffer:s.buffer,offset:k*v,count:v}},M.bounds=f(s.bounds,k,T)),o.domain||o.viewport||o.data){var S=d?f(s.padding,k,T):s.padding;if(s.domain){var E=f(s.domain,k,T),C=E[0],L=E[1],P=E[2],O=E[3];M.viewport=[x+C*m+S[0],b+L*y+S[1],x+P*m-S[2],b+O*y-S[3]]}else M.viewport=[x+T*_+_*S[0],b+k*w+w*S[1],x+(T+1)*_-_*S[2],b+(k+1)*w-w*S[3]]}o.color&&(M.color=s.color),o.size&&(M.size=s.size),o.marker&&(M.marker=s.marker),o.borderSize&&(M.borderSize=s.borderSize),o.borderColor&&(M.borderColor=s.borderColor),o.opacity&&(M.opacity=s.opacity),o.range&&(M.range=n?f(s.range,k,T):s.range||M.bounds),s.passes.push(A)}return this},u.prototype.draw=function(){for(var t,e=[],r=arguments.length;r--;)e[r]=arguments[r];if(e.length){for(var n=[],a=0;a<e.length;a++)if(\"number\"==typeof e[a]){var i=this.traces[e[a]],o=i.passes,l=i.passOffset;n.push.apply(n,s(l,l+o.length))}else if(e[a].length){var c=e[a],u=this.traces[a],h=u.passes,f=u.passOffset;h=h.map(function(t,e){n[f+e]=c})}(t=this.scatter).draw.apply(t,n)}else this.scatter.draw();return this},u.prototype.destroy=function(){return this.traces.forEach(function(t){t.buffer&&t.buffer.destroy&&t.buffer.destroy()}),this.traces=null,this.passes=null,this.scatter.destroy(),this}},{\"array-bounds\":66,\"array-range\":68,\"flatten-vertex-data\":228,\"parse-rect\":460,\"pick-by-alias\":466,raf:485,\"regl-scatter2d\":498}],503:[function(t,e,r){var n,a;n=this,a=function(){function t(t,e){this.id=V++,this.type=t,this.data=e}function e(t){return\"[\"+function t(e){if(0===e.length)return[];var r=e.charAt(0),n=e.charAt(e.length-1);if(1<e.length&&r===n&&('\"'===r||\"'\"===r))return['\"'+e.substr(1,e.length-2).replace(/\\\\/g,\"\\\\\\\\\").replace(/\"/g,'\\\\\"')+'\"'];if(r=/\\[(false|true|null|\\d+|'[^']*'|\"[^\"]*\")\\]/.exec(e))return t(e.substr(0,r.index)).concat(t(r[1])).concat(t(e.substr(r.index+r[0].length)));if(1===(r=e.split(\".\")).length)return['\"'+e.replace(/\\\\/g,\"\\\\\\\\\").replace(/\"/g,'\\\\\"')+'\"'];for(e=[],n=0;n<r.length;++n)e=e.concat(t(r[n]));return e}(t).join(\"][\")+\"]\"}function r(t){return\"string\"==typeof t?t.split():t}function n(t){return\"string\"==typeof t?document.querySelector(t):t}function a(t){var e,a,i,o,s=t||{};t={};var l=[],c=[],u=\"undefined\"==typeof window?1:window.devicePixelRatio,h=!1,f=function(t){},p=function(){};if(\"string\"==typeof s?e=document.querySelector(s):\"object\"==typeof s&&(\"string\"==typeof s.nodeName&&\"function\"==typeof s.appendChild&&\"function\"==typeof s.getBoundingClientRect?e=s:\"function\"==typeof s.drawArrays||\"function\"==typeof s.drawElements?i=(o=s).canvas:(\"gl\"in s?o=s.gl:\"canvas\"in s?i=n(s.canvas):\"container\"in s&&(a=n(s.container)),\"attributes\"in s&&(t=s.attributes),\"extensions\"in s&&(l=r(s.extensions)),\"optionalExtensions\"in s&&(c=r(s.optionalExtensions)),\"onDone\"in s&&(f=s.onDone),\"profile\"in s&&(h=!!s.profile),\"pixelRatio\"in s&&(u=+s.pixelRatio))),e&&(\"canvas\"===e.nodeName.toLowerCase()?i=e:a=e),!o){if(!i){if(!(e=function(t,e,r){function n(){var e=window.innerWidth,n=window.innerHeight;t!==document.body&&(e=(n=t.getBoundingClientRect()).right-n.left,n=n.bottom-n.top),a.width=r*e,a.height=r*n,j(a.style,{width:e+\"px\",height:n+\"px\"})}var a=document.createElement(\"canvas\");return j(a.style,{border:0,margin:0,padding:0,top:0,left:0}),t.appendChild(a),t===document.body&&(a.style.position=\"absolute\",j(t.style,{margin:0,padding:0})),window.addEventListener(\"resize\",n,!1),n(),{canvas:a,onDestroy:function(){window.removeEventListener(\"resize\",n),t.removeChild(a)}}}(a||document.body,0,u)))return null;i=e.canvas,p=e.onDestroy}o=function(t,e){function r(r){try{return t.getContext(r,e)}catch(t){return null}}return r(\"webgl\")||r(\"experimental-webgl\")||r(\"webgl-experimental\")}(i,t)}return o?{gl:o,canvas:i,container:a,extensions:l,optionalExtensions:c,pixelRatio:u,profile:h,onDone:f,onDestroy:p}:(p(),f(\"webgl not supported, try upgrading your browser or graphics drivers http://get.webgl.org\"),null)}function i(t,e){for(var r=Array(t),n=0;n<t;++n)r[n]=e(n);return r}function o(t){var e,r;return e=(65535<t)<<4,e|=r=(255<(t>>>=e))<<3,(e|=r=(15<(t>>>=r))<<2)|(r=(3<(t>>>=r))<<1)|t>>>r>>1}function s(){function t(t){t:{for(var e=16;268435456>=e;e*=16)if(t<=e){t=e;break t}t=0}return 0<(e=r[o(t)>>2]).length?e.pop():new ArrayBuffer(t)}function e(t){r[o(t.byteLength)>>2].push(t)}var r=i(8,function(){return[]});return{alloc:t,free:e,allocType:function(e,r){var n=null;switch(e){case 5120:n=new Int8Array(t(r),0,r);break;case 5121:n=new Uint8Array(t(r),0,r);break;case 5122:n=new Int16Array(t(2*r),0,r);break;case 5123:n=new Uint16Array(t(2*r),0,r);break;case 5124:n=new Int32Array(t(4*r),0,r);break;case 5125:n=new Uint32Array(t(4*r),0,r);break;case 5126:n=new Float32Array(t(4*r),0,r);break;default:return null}return n.length!==r?n.subarray(0,r):n},freeType:function(t){e(t.buffer)}}}function l(t){return!!t&&\"object\"==typeof t&&Array.isArray(t.shape)&&Array.isArray(t.stride)&&\"number\"==typeof t.offset&&t.shape.length===t.stride.length&&(Array.isArray(t.data)||W(t.data))}function c(t,e,r,n,a,i){for(var o=0;o<e;++o)for(var s=t[o],l=0;l<r;++l)for(var c=s[l],u=0;u<n;++u)a[i++]=c[u]}function u(t){return 0|J[Object.prototype.toString.call(t)]}function h(t,e){for(var r=0;r<e.length;++r)t[r]=e[r]}function f(t,e,r,n,a,i,o){for(var s=0,l=0;l<r;++l)for(var c=0;c<n;++c)t[s++]=e[a*l+i*c+o]}function p(t,e,r,n){function a(e){this.id=c++,this.buffer=t.createBuffer(),this.type=e,this.usage=35044,this.byteLength=0,this.dimension=1,this.dtype=5121,this.persistentData=null,r.profile&&(this.stats={size:0})}function i(e,r,n){e.byteLength=r.byteLength,t.bufferData(e.type,r,n)}function o(t,e,r,n,a,o){if(t.usage=r,Array.isArray(e)){if(t.dtype=n||5126,0<e.length)if(Array.isArray(e[0])){a=tt(e);for(var s=n=1;s<a.length;++s)n*=a[s];t.dimension=n,i(t,e=$(e,a,t.dtype),r),o?t.persistentData=e:G.freeType(e)}else\"number\"==typeof e[0]?(t.dimension=a,h(a=G.allocType(t.dtype,e.length),e),i(t,a,r),o?t.persistentData=a:G.freeType(a)):W(e[0])&&(t.dimension=e[0].length,t.dtype=n||u(e[0])||5126,i(t,e=$(e,[e.length,e[0].length],t.dtype),r),o?t.persistentData=e:G.freeType(e))}else if(W(e))t.dtype=n||u(e),t.dimension=a,i(t,e,r),o&&(t.persistentData=new Uint8Array(new Uint8Array(e.buffer)));else if(l(e)){a=e.shape;var c=e.stride,p=(s=e.offset,0),d=0,g=0,v=0;1===a.length?(p=a[0],d=1,g=c[0],v=0):2===a.length&&(p=a[0],d=a[1],g=c[0],v=c[1]),t.dtype=n||u(e.data)||5126,t.dimension=d,f(a=G.allocType(t.dtype,p*d),e.data,p,d,g,v,s),i(t,a,r),o?t.persistentData=a:G.freeType(a)}}function s(r){e.bufferCount--;for(var a=0;a<n.state.length;++a){var i=n.state[a];i.buffer===r&&(t.disableVertexAttribArray(a),i.buffer=null)}t.deleteBuffer(r.buffer),r.buffer=null,delete p[r.id]}var c=0,p={};a.prototype.bind=function(){t.bindBuffer(this.type,this.buffer)},a.prototype.destroy=function(){s(this)};var d=[];return r.profile&&(e.getTotalBufferSize=function(){var t=0;return Object.keys(p).forEach(function(e){t+=p[e].stats.size}),t}),{create:function(n,i,c,d){function g(e){var n=35044,a=null,i=0,s=0,c=1;return Array.isArray(e)||W(e)||l(e)?a=e:\"number\"==typeof e?i=0|e:e&&(\"data\"in e&&(a=e.data),\"usage\"in e&&(n=Q[e.usage]),\"type\"in e&&(s=K[e.type]),\"dimension\"in e&&(c=0|e.dimension),\"length\"in e&&(i=0|e.length)),v.bind(),a?o(v,a,n,s,c,d):(i&&t.bufferData(v.type,i,n),v.dtype=s||5121,v.usage=n,v.dimension=c,v.byteLength=i),r.profile&&(v.stats.size=v.byteLength*et[v.dtype]),g}e.bufferCount++;var v=new a(i);return p[v.id]=v,c||g(n),g._reglType=\"buffer\",g._buffer=v,g.subdata=function(e,r){var n,a=0|(r||0);if(v.bind(),W(e))t.bufferSubData(v.type,a,e);else if(Array.isArray(e)){if(0<e.length)if(\"number\"==typeof e[0]){var i=G.allocType(v.dtype,e.length);h(i,e),t.bufferSubData(v.type,a,i),G.freeType(i)}else(Array.isArray(e[0])||W(e[0]))&&(n=tt(e),i=$(e,n,v.dtype),t.bufferSubData(v.type,a,i),G.freeType(i))}else if(l(e)){n=e.shape;var o=e.stride,s=i=0,c=0,p=0;1===n.length?(i=n[0],s=1,c=o[0],p=0):2===n.length&&(i=n[0],s=n[1],c=o[0],p=o[1]),n=Array.isArray(e.data)?v.dtype:u(e.data),f(n=G.allocType(n,i*s),e.data,i,s,c,p,e.offset),t.bufferSubData(v.type,a,n),G.freeType(n)}return g},r.profile&&(g.stats=v.stats),g.destroy=function(){s(v)},g},createStream:function(t,e){var r=d.pop();return r||(r=new a(t)),r.bind(),o(r,e,35040,0,1,!1),r},destroyStream:function(t){d.push(t)},clear:function(){X(p).forEach(s),d.forEach(s)},getBuffer:function(t){return t&&t._buffer instanceof a?t._buffer:null},restore:function(){X(p).forEach(function(e){e.buffer=t.createBuffer(),t.bindBuffer(e.type,e.buffer),t.bufferData(e.type,e.persistentData||e.byteLength,e.usage)})},_initBuffer:o}}function d(t,e,r,n){function a(t){this.id=c++,s[this.id]=this,this.buffer=t,this.primType=4,this.type=this.vertCount=0}function i(n,a,i,o,s,c,u){if(n.buffer.bind(),a){var h=u;u||W(a)&&(!l(a)||W(a.data))||(h=e.oes_element_index_uint?5125:5123),r._initBuffer(n.buffer,a,i,h,3)}else t.bufferData(34963,c,i),n.buffer.dtype=h||5121,n.buffer.usage=i,n.buffer.dimension=3,n.buffer.byteLength=c;if(h=u,!u){switch(n.buffer.dtype){case 5121:case 5120:h=5121;break;case 5123:case 5122:h=5123;break;case 5125:case 5124:h=5125}n.buffer.dtype=h}n.type=h,0>(a=s)&&(a=n.buffer.byteLength,5123===h?a>>=1:5125===h&&(a>>=2)),n.vertCount=a,a=o,0>o&&(a=4,1===(o=n.buffer.dimension)&&(a=0),2===o&&(a=1),3===o&&(a=4)),n.primType=a}function o(t){n.elementsCount--,delete s[t.id],t.buffer.destroy(),t.buffer=null}var s={},c=0,u={uint8:5121,uint16:5123};e.oes_element_index_uint&&(u.uint32=5125),a.prototype.bind=function(){this.buffer.bind()};var h=[];return{create:function(t,e){function s(t){if(t)if(\"number\"==typeof t)c(t),h.primType=4,h.vertCount=0|t,h.type=5121;else{var e=null,r=35044,n=-1,a=-1,o=0,f=0;Array.isArray(t)||W(t)||l(t)?e=t:(\"data\"in t&&(e=t.data),\"usage\"in t&&(r=Q[t.usage]),\"primitive\"in t&&(n=rt[t.primitive]),\"count\"in t&&(a=0|t.count),\"type\"in t&&(f=u[t.type]),\"length\"in t?o=0|t.length:(o=a,5123===f||5122===f?o*=2:5125!==f&&5124!==f||(o*=4))),i(h,e,r,n,a,o,f)}else c(),h.primType=4,h.vertCount=0,h.type=5121;return s}var c=r.create(null,34963,!0),h=new a(c._buffer);return n.elementsCount++,s(t),s._reglType=\"elements\",s._elements=h,s.subdata=function(t,e){return c.subdata(t,e),s},s.destroy=function(){o(h)},s},createStream:function(t){var e=h.pop();return e||(e=new a(r.create(null,34963,!0,!1)._buffer)),i(e,t,35040,-1,-1,0,0),e},destroyStream:function(t){h.push(t)},getElements:function(t){return\"function\"==typeof t&&t._elements instanceof a?t._elements:null},clear:function(){X(s).forEach(o)}}}function g(t){for(var e=G.allocType(5123,t.length),r=0;r<t.length;++r)if(isNaN(t[r]))e[r]=65535;else if(1/0===t[r])e[r]=31744;else if(-1/0===t[r])e[r]=64512;else{nt[0]=t[r];var n=(i=at[0])>>>31<<15,a=(i<<1>>>24)-127,i=i>>13&1023;e[r]=-24>a?n:-14>a?n+(i+1024>>-14-a):15<a?n+31744:n+(a+15<<10)+i}return e}function v(t){return Array.isArray(t)||W(t)}function m(t){return\"[object \"+t+\"]\"}function y(t){return Array.isArray(t)&&(0===t.length||\"number\"==typeof t[0])}function x(t){return!(!Array.isArray(t)||0===t.length||!v(t[0]))}function b(t){return Object.prototype.toString.call(t)}function _(t){if(!t)return!1;var e=b(t);return 0<=pt.indexOf(e)||(y(t)||x(t)||l(t))}function w(t,e){36193===t.type?(t.data=g(e),G.freeType(e)):t.data=e}function k(t,e,r,n,a,i){if(t=\"undefined\"!=typeof gt[t]?gt[t]:st[t]*dt[e],i&&(t*=6),a){for(n=0;1<=r;)n+=t*r*r,r/=2;return n}return t*r*n}function T(t,e,r,n,a,i,o){function s(){this.format=this.internalformat=6408,this.type=5121,this.flipY=this.premultiplyAlpha=this.compressed=!1,this.unpackAlignment=1,this.colorSpace=37444,this.channels=this.height=this.width=0}function c(t,e){t.internalformat=e.internalformat,t.format=e.format,t.type=e.type,t.compressed=e.compressed,t.premultiplyAlpha=e.premultiplyAlpha,t.flipY=e.flipY,t.unpackAlignment=e.unpackAlignment,t.colorSpace=e.colorSpace,t.width=e.width,t.height=e.height,t.channels=e.channels}function u(t,e){if(\"object\"==typeof e&&e){\"premultiplyAlpha\"in e&&(t.premultiplyAlpha=e.premultiplyAlpha),\"flipY\"in e&&(t.flipY=e.flipY),\"alignment\"in e&&(t.unpackAlignment=e.alignment),\"colorSpace\"in e&&(t.colorSpace=q[e.colorSpace]),\"type\"in e&&(t.type=H[e.type]);var r=t.width,n=t.height,a=t.channels,i=!1;\"shape\"in e?(r=e.shape[0],n=e.shape[1],3===e.shape.length&&(a=e.shape[2],i=!0)):(\"radius\"in e&&(r=n=e.radius),\"width\"in e&&(r=e.width),\"height\"in e&&(n=e.height),\"channels\"in e&&(a=e.channels,i=!0)),t.width=0|r,t.height=0|n,t.channels=0|a,r=!1,\"format\"in e&&(r=e.format,n=t.internalformat=Y[r],t.format=pt[n],r in H&&!(\"type\"in e)&&(t.type=H[r]),r in K&&(t.compressed=!0),r=!0),!i&&r?t.channels=st[t.format]:i&&!r&&t.channels!==ot[t.format]&&(t.format=t.internalformat=ot[t.channels])}}function h(e){t.pixelStorei(37440,e.flipY),t.pixelStorei(37441,e.premultiplyAlpha),t.pixelStorei(37443,e.colorSpace),t.pixelStorei(3317,e.unpackAlignment)}function f(){s.call(this),this.yOffset=this.xOffset=0,this.data=null,this.needsFree=!1,this.element=null,this.needsCopy=!1}function p(t,e){var r=null;if(_(e)?r=e:e&&(u(t,e),\"x\"in e&&(t.xOffset=0|e.x),\"y\"in e&&(t.yOffset=0|e.y),_(e.data)&&(r=e.data)),e.copy){var n=a.viewportWidth,i=a.viewportHeight;t.width=t.width||n-t.xOffset,t.height=t.height||i-t.yOffset,t.needsCopy=!0}else if(r){if(W(r))t.channels=t.channels||4,t.data=r,\"type\"in e||5121!==t.type||(t.type=0|J[Object.prototype.toString.call(r)]);else if(y(r)){switch(t.channels=t.channels||4,i=(n=r).length,t.type){case 5121:case 5123:case 5125:case 5126:(i=G.allocType(t.type,i)).set(n),t.data=i;break;case 36193:t.data=g(n)}t.alignment=1,t.needsFree=!0}else if(l(r)){n=r.data,Array.isArray(n)||5121!==t.type||(t.type=0|J[Object.prototype.toString.call(n)]);i=r.shape;var o,s,c,h,f=r.stride;3===i.length?(c=i[2],h=f[2]):h=c=1,o=i[0],s=i[1],i=f[0],f=f[1],t.alignment=1,t.width=o,t.height=s,t.channels=c,t.format=t.internalformat=ot[c],t.needsFree=!0,o=h,r=r.offset,c=t.width,h=t.height,s=t.channels;for(var p=G.allocType(36193===t.type?5126:t.type,c*h*s),d=0,m=0;m<h;++m)for(var k=0;k<c;++k)for(var T=0;T<s;++T)p[d++]=n[i*k+f*m+o*T+r];w(t,p)}else if(b(r)===lt||b(r)===ct)b(r)===lt?t.element=r:t.element=r.canvas,t.width=t.element.width,t.height=t.element.height,t.channels=4;else if(b(r)===ut)t.element=r,t.width=r.width,t.height=r.height,t.channels=4;else if(b(r)===ht)t.element=r,t.width=r.naturalWidth,t.height=r.naturalHeight,t.channels=4;else if(b(r)===ft)t.element=r,t.width=r.videoWidth,t.height=r.videoHeight,t.channels=4;else if(x(r)){for(n=t.width||r[0].length,i=t.height||r.length,f=t.channels,f=v(r[0][0])?f||r[0][0].length:f||1,o=Z.shape(r),c=1,h=0;h<o.length;++h)c*=o[h];c=G.allocType(36193===t.type?5126:t.type,c),Z.flatten(r,o,\"\",c),w(t,c),t.alignment=1,t.width=n,t.height=i,t.channels=f,t.format=t.internalformat=ot[f],t.needsFree=!0}}else t.width=t.width||1,t.height=t.height||1,t.channels=t.channels||4}function d(e,r,a,i,o){var s=e.element,l=e.data,c=e.internalformat,u=e.format,f=e.type,p=e.width,d=e.height;h(e),s?t.texSubImage2D(r,o,a,i,u,f,s):e.compressed?t.compressedTexSubImage2D(r,o,a,i,c,p,d,l):e.needsCopy?(n(),t.copyTexSubImage2D(r,o,a,i,e.xOffset,e.yOffset,p,d)):t.texSubImage2D(r,o,a,i,p,d,u,f,l)}function m(){return dt.pop()||new f}function T(t){t.needsFree&&G.freeType(t.data),f.call(t),dt.push(t)}function A(){s.call(this),this.genMipmaps=!1,this.mipmapHint=4352,this.mipmask=0,this.images=Array(16)}function M(t,e,r){var n=t.images[0]=m();t.mipmask=1,n.width=t.width=e,n.height=t.height=r,n.channels=t.channels=4}function S(t,e){var r=null;if(_(e))c(r=t.images[0]=m(),t),p(r,e),t.mipmask=1;else if(u(t,e),Array.isArray(e.mipmap))for(var n=e.mipmap,a=0;a<n.length;++a)c(r=t.images[a]=m(),t),r.width>>=a,r.height>>=a,p(r,n[a]),t.mipmask|=1<<a;else c(r=t.images[0]=m(),t),p(r,e),t.mipmask=1;c(t,t.images[0])}function E(e,r){for(var a=e.images,i=0;i<a.length&&a[i];++i){var o=a[i],s=r,l=i,c=o.element,u=o.data,f=o.internalformat,p=o.format,d=o.type,g=o.width,v=o.height,m=o.channels;h(o),c?t.texImage2D(s,l,p,p,d,c):o.compressed?t.compressedTexImage2D(s,l,f,g,v,0,u):o.needsCopy?(n(),t.copyTexImage2D(s,l,p,o.xOffset,o.yOffset,g,v,0)):((o=!u)&&(u=G.zero.allocType(d,g*v*m)),t.texImage2D(s,l,p,g,v,0,p,d,u),o&&u&&G.zero.freeType(u))}}function C(){var t=gt.pop()||new A;s.call(t);for(var e=t.mipmask=0;16>e;++e)t.images[e]=null;return t}function L(t){for(var e=t.images,r=0;r<e.length;++r)e[r]&&T(e[r]),e[r]=null;gt.push(t)}function P(){this.magFilter=this.minFilter=9728,this.wrapT=this.wrapS=33071,this.anisotropic=1,this.genMipmaps=!1,this.mipmapHint=4352}function O(t,e){\"min\"in e&&(t.minFilter=U[e.min],0<=it.indexOf(t.minFilter)&&!(\"faces\"in e)&&(t.genMipmaps=!0)),\"mag\"in e&&(t.magFilter=V[e.mag]);var r=t.wrapS,n=t.wrapT;if(\"wrap\"in e){var a=e.wrap;\"string\"==typeof a?r=n=N[a]:Array.isArray(a)&&(r=N[a[0]],n=N[a[1]])}else\"wrapS\"in e&&(r=N[e.wrapS]),\"wrapT\"in e&&(n=N[e.wrapT]);if(t.wrapS=r,t.wrapT=n,\"anisotropic\"in e&&(t.anisotropic=e.anisotropic),\"mipmap\"in e){switch(r=!1,typeof e.mipmap){case\"string\":t.mipmapHint=B[e.mipmap],r=t.genMipmaps=!0;break;case\"boolean\":r=t.genMipmaps=e.mipmap;break;case\"object\":t.genMipmaps=!1,r=!0}!r||\"min\"in e||(t.minFilter=9984)}}function I(r,n){t.texParameteri(n,10241,r.minFilter),t.texParameteri(n,10240,r.magFilter),t.texParameteri(n,10242,r.wrapS),t.texParameteri(n,10243,r.wrapT),e.ext_texture_filter_anisotropic&&t.texParameteri(n,34046,r.anisotropic),r.genMipmaps&&(t.hint(33170,r.mipmapHint),t.generateMipmap(n))}function z(e){s.call(this),this.mipmask=0,this.internalformat=6408,this.id=vt++,this.refCount=1,this.target=e,this.texture=t.createTexture(),this.unit=-1,this.bindCount=0,this.texInfo=new P,o.profile&&(this.stats={size:0})}function D(e){t.activeTexture(33984),t.bindTexture(e.target,e.texture)}function R(){var e=xt[0];e?t.bindTexture(e.target,e.texture):t.bindTexture(3553,null)}function F(e){var r=e.texture,n=e.unit,a=e.target;0<=n&&(t.activeTexture(33984+n),t.bindTexture(a,null),xt[n]=null),t.deleteTexture(r),e.texture=null,e.params=null,e.pixels=null,e.refCount=0,delete mt[e.id],i.textureCount--}var B={\"don't care\":4352,\"dont care\":4352,nice:4354,fast:4353},N={repeat:10497,clamp:33071,mirror:33648},V={nearest:9728,linear:9729},U=j({mipmap:9987,\"nearest mipmap nearest\":9984,\"linear mipmap nearest\":9985,\"nearest mipmap linear\":9986,\"linear mipmap linear\":9987},V),q={none:0,browser:37444},H={uint8:5121,rgba4:32819,rgb565:33635,\"rgb5 a1\":32820},Y={alpha:6406,luminance:6409,\"luminance alpha\":6410,rgb:6407,rgba:6408,rgba4:32854,\"rgb5 a1\":32855,rgb565:36194},K={};e.ext_srgb&&(Y.srgb=35904,Y.srgba=35906),e.oes_texture_float&&(H.float32=H.float=5126),e.oes_texture_half_float&&(H.float16=H[\"half float\"]=36193),e.webgl_depth_texture&&(j(Y,{depth:6402,\"depth stencil\":34041}),j(H,{uint16:5123,uint32:5125,\"depth stencil\":34042})),e.webgl_compressed_texture_s3tc&&j(K,{\"rgb s3tc dxt1\":33776,\"rgba s3tc dxt1\":33777,\"rgba s3tc dxt3\":33778,\"rgba s3tc dxt5\":33779}),e.webgl_compressed_texture_atc&&j(K,{\"rgb atc\":35986,\"rgba atc explicit alpha\":35987,\"rgba atc interpolated alpha\":34798}),e.webgl_compressed_texture_pvrtc&&j(K,{\"rgb pvrtc 4bppv1\":35840,\"rgb pvrtc 2bppv1\":35841,\"rgba pvrtc 4bppv1\":35842,\"rgba pvrtc 2bppv1\":35843}),e.webgl_compressed_texture_etc1&&(K[\"rgb etc1\"]=36196);var Q=Array.prototype.slice.call(t.getParameter(34467));Object.keys(K).forEach(function(t){var e=K[t];0<=Q.indexOf(e)&&(Y[t]=e)});var $=Object.keys(Y);r.textureFormats=$;var tt=[];Object.keys(Y).forEach(function(t){tt[Y[t]]=t});var et=[];Object.keys(H).forEach(function(t){et[H[t]]=t});var rt=[];Object.keys(V).forEach(function(t){rt[V[t]]=t});var nt=[];Object.keys(U).forEach(function(t){nt[U[t]]=t});var at=[];Object.keys(N).forEach(function(t){at[N[t]]=t});var pt=$.reduce(function(t,e){var r=Y[e];return 6409===r||6406===r||6409===r||6410===r||6402===r||34041===r?t[r]=r:32855===r||0<=e.indexOf(\"rgba\")?t[r]=6408:t[r]=6407,t},{}),dt=[],gt=[],vt=0,mt={},yt=r.maxTextureUnits,xt=Array(yt).map(function(){return null});return j(z.prototype,{bind:function(){this.bindCount+=1;var e=this.unit;if(0>e){for(var r=0;r<yt;++r){var n=xt[r];if(n){if(0<n.bindCount)continue;n.unit=-1}xt[r]=this,e=r;break}o.profile&&i.maxTextureUnits<e+1&&(i.maxTextureUnits=e+1),this.unit=e,t.activeTexture(33984+e),t.bindTexture(this.target,this.texture)}return e},unbind:function(){--this.bindCount},decRef:function(){0>=--this.refCount&&F(this)}}),o.profile&&(i.getTotalTextureSize=function(){var t=0;return Object.keys(mt).forEach(function(e){t+=mt[e].stats.size}),t}),{create2D:function(e,r){function n(t,e){var r=a.texInfo;P.call(r);var i=C();return\"number\"==typeof t?M(i,0|t,\"number\"==typeof e?0|e:0|t):t?(O(r,t),S(i,t)):M(i,1,1),r.genMipmaps&&(i.mipmask=(i.width<<1)-1),a.mipmask=i.mipmask,c(a,i),a.internalformat=i.internalformat,n.width=i.width,n.height=i.height,D(a),E(i,3553),I(r,3553),R(),L(i),o.profile&&(a.stats.size=k(a.internalformat,a.type,i.width,i.height,r.genMipmaps,!1)),n.format=tt[a.internalformat],n.type=et[a.type],n.mag=rt[r.magFilter],n.min=nt[r.minFilter],n.wrapS=at[r.wrapS],n.wrapT=at[r.wrapT],n}var a=new z(3553);return mt[a.id]=a,i.textureCount++,n(e,r),n.subimage=function(t,e,r,i){e|=0,r|=0,i|=0;var o=m();return c(o,a),o.width=0,o.height=0,p(o,t),o.width=o.width||(a.width>>i)-e,o.height=o.height||(a.height>>i)-r,D(a),d(o,3553,e,r,i),R(),T(o),n},n.resize=function(e,r){var i=0|e,s=0|r||i;if(i===a.width&&s===a.height)return n;n.width=a.width=i,n.height=a.height=s,D(a);for(var l,c=a.channels,u=a.type,h=0;a.mipmask>>h;++h){var f=i>>h,p=s>>h;if(!f||!p)break;l=G.zero.allocType(u,f*p*c),t.texImage2D(3553,h,a.format,f,p,0,a.format,a.type,l),l&&G.zero.freeType(l)}return R(),o.profile&&(a.stats.size=k(a.internalformat,a.type,i,s,!1,!1)),n},n._reglType=\"texture2d\",n._texture=a,o.profile&&(n.stats=a.stats),n.destroy=function(){a.decRef()},n},createCube:function(e,r,n,a,s,l){function h(t,e,r,n,a,i){var s,l=f.texInfo;for(P.call(l),s=0;6>s;++s)g[s]=C();if(\"number\"!=typeof t&&t){if(\"object\"==typeof t)if(e)S(g[0],t),S(g[1],e),S(g[2],r),S(g[3],n),S(g[4],a),S(g[5],i);else if(O(l,t),u(f,t),\"faces\"in t)for(t=t.faces,s=0;6>s;++s)c(g[s],f),S(g[s],t[s]);else for(s=0;6>s;++s)S(g[s],t)}else for(t=0|t||1,s=0;6>s;++s)M(g[s],t,t);for(c(f,g[0]),f.mipmask=l.genMipmaps?(g[0].width<<1)-1:g[0].mipmask,f.internalformat=g[0].internalformat,h.width=g[0].width,h.height=g[0].height,D(f),s=0;6>s;++s)E(g[s],34069+s);for(I(l,34067),R(),o.profile&&(f.stats.size=k(f.internalformat,f.type,h.width,h.height,l.genMipmaps,!0)),h.format=tt[f.internalformat],h.type=et[f.type],h.mag=rt[l.magFilter],h.min=nt[l.minFilter],h.wrapS=at[l.wrapS],h.wrapT=at[l.wrapT],s=0;6>s;++s)L(g[s]);return h}var f=new z(34067);mt[f.id]=f,i.cubeCount++;var g=Array(6);return h(e,r,n,a,s,l),h.subimage=function(t,e,r,n,a){r|=0,n|=0,a|=0;var i=m();return c(i,f),i.width=0,i.height=0,p(i,e),i.width=i.width||(f.width>>a)-r,i.height=i.height||(f.height>>a)-n,D(f),d(i,34069+t,r,n,a),R(),T(i),h},h.resize=function(e){if((e|=0)!==f.width){h.width=f.width=e,h.height=f.height=e,D(f);for(var r=0;6>r;++r)for(var n=0;f.mipmask>>n;++n)t.texImage2D(34069+r,n,f.format,e>>n,e>>n,0,f.format,f.type,null);return R(),o.profile&&(f.stats.size=k(f.internalformat,f.type,h.width,h.height,!1,!0)),h}},h._reglType=\"textureCube\",h._texture=f,o.profile&&(h.stats=f.stats),h.destroy=function(){f.decRef()},h},clear:function(){for(var e=0;e<yt;++e)t.activeTexture(33984+e),t.bindTexture(3553,null),xt[e]=null;X(mt).forEach(F),i.cubeCount=0,i.textureCount=0},getTexture:function(t){return null},restore:function(){for(var e=0;e<yt;++e){var r=xt[e];r&&(r.bindCount=0,r.unit=-1,xt[e]=null)}X(mt).forEach(function(e){e.texture=t.createTexture(),t.bindTexture(e.target,e.texture);for(var r=0;32>r;++r)if(0!=(e.mipmask&1<<r))if(3553===e.target)t.texImage2D(3553,r,e.internalformat,e.width>>r,e.height>>r,0,e.internalformat,e.type,null);else for(var n=0;6>n;++n)t.texImage2D(34069+n,r,e.internalformat,e.width>>r,e.height>>r,0,e.internalformat,e.type,null);I(e.texInfo,e.target)})}}}function A(t,e,r,n,a,i){function o(t,e,r){this.target=t,this.texture=e,this.renderbuffer=r;var n=t=0;e?(t=e.width,n=e.height):r&&(t=r.width,n=r.height),this.width=t,this.height=n}function s(t){t&&(t.texture&&t.texture._texture.decRef(),t.renderbuffer&&t.renderbuffer._renderbuffer.decRef())}function l(t,e,r){t&&(t.texture?t.texture._texture.refCount+=1:t.renderbuffer._renderbuffer.refCount+=1)}function c(e,r){r&&(r.texture?t.framebufferTexture2D(36160,e,r.target,r.texture._texture.texture,0):t.framebufferRenderbuffer(36160,e,36161,r.renderbuffer._renderbuffer.renderbuffer))}function u(t){var e=3553,r=null,n=null,a=t;return\"object\"==typeof t&&(a=t.data,\"target\"in t&&(e=0|t.target)),\"texture2d\"===(t=a._reglType)?r=a:\"textureCube\"===t?r=a:\"renderbuffer\"===t&&(n=a,e=36161),new o(e,r,n)}function h(t,e,r,i,s){return r?((t=n.create2D({width:t,height:e,format:i,type:s}))._texture.refCount=0,new o(3553,t,null)):((t=a.create({width:t,height:e,format:i}))._renderbuffer.refCount=0,new o(36161,null,t))}function f(t){return t&&(t.texture||t.renderbuffer)}function p(t,e,r){t&&(t.texture?t.texture.resize(e,r):t.renderbuffer&&t.renderbuffer.resize(e,r),t.width=e,t.height=r)}function d(){this.id=k++,T[this.id]=this,this.framebuffer=t.createFramebuffer(),this.height=this.width=0,this.colorAttachments=[],this.depthStencilAttachment=this.stencilAttachment=this.depthAttachment=null}function g(t){t.colorAttachments.forEach(s),s(t.depthAttachment),s(t.stencilAttachment),s(t.depthStencilAttachment)}function v(e){t.deleteFramebuffer(e.framebuffer),e.framebuffer=null,i.framebufferCount--,delete T[e.id]}function m(e){var n;t.bindFramebuffer(36160,e.framebuffer);var a=e.colorAttachments;for(n=0;n<a.length;++n)c(36064+n,a[n]);for(n=a.length;n<r.maxColorAttachments;++n)t.framebufferTexture2D(36160,36064+n,3553,null,0);t.framebufferTexture2D(36160,33306,3553,null,0),t.framebufferTexture2D(36160,36096,3553,null,0),t.framebufferTexture2D(36160,36128,3553,null,0),c(36096,e.depthAttachment),c(36128,e.stencilAttachment),c(33306,e.depthStencilAttachment),t.checkFramebufferStatus(36160),t.isContextLost(),t.bindFramebuffer(36160,x.next?x.next.framebuffer:null),x.cur=x.next,t.getError()}function y(t,e){function r(t,e){var a,i=0,o=0,s=!0,c=!0;a=null;var p=!0,d=\"rgba\",v=\"uint8\",y=1,x=null,w=null,k=null,T=!1;\"number\"==typeof t?(i=0|t,o=0|e||i):t?(\"shape\"in t?(i=(o=t.shape)[0],o=o[1]):(\"radius\"in t&&(i=o=t.radius),\"width\"in t&&(i=t.width),\"height\"in t&&(o=t.height)),(\"color\"in t||\"colors\"in t)&&(a=t.color||t.colors,Array.isArray(a)),a||(\"colorCount\"in t&&(y=0|t.colorCount),\"colorTexture\"in t&&(p=!!t.colorTexture,d=\"rgba4\"),\"colorType\"in t&&(v=t.colorType,!p)&&(\"half float\"===v||\"float16\"===v?d=\"rgba16f\":\"float\"!==v&&\"float32\"!==v||(d=\"rgba32f\")),\"colorFormat\"in t&&(d=t.colorFormat,0<=b.indexOf(d)?p=!0:0<=_.indexOf(d)&&(p=!1))),(\"depthTexture\"in t||\"depthStencilTexture\"in t)&&(T=!(!t.depthTexture&&!t.depthStencilTexture)),\"depth\"in t&&(\"boolean\"==typeof t.depth?s=t.depth:(x=t.depth,c=!1)),\"stencil\"in t&&(\"boolean\"==typeof t.stencil?c=t.stencil:(w=t.stencil,s=!1)),\"depthStencil\"in t&&(\"boolean\"==typeof t.depthStencil?s=c=t.depthStencil:(k=t.depthStencil,c=s=!1))):i=o=1;var A=null,M=null,S=null,E=null;if(Array.isArray(a))A=a.map(u);else if(a)A=[u(a)];else for(A=Array(y),a=0;a<y;++a)A[a]=h(i,o,p,d,v);for(i=i||A[0].width,o=o||A[0].height,x?M=u(x):s&&!c&&(M=h(i,o,T,\"depth\",\"uint32\")),w?S=u(w):c&&!s&&(S=h(i,o,!1,\"stencil\",\"uint8\")),k?E=u(k):!x&&!w&&c&&s&&(E=h(i,o,T,\"depth stencil\",\"depth stencil\")),s=null,a=0;a<A.length;++a)l(A[a]),A[a]&&A[a].texture&&(c=yt[A[a].texture._texture.format]*xt[A[a].texture._texture.type],null===s&&(s=c));return l(M),l(S),l(E),g(n),n.width=i,n.height=o,n.colorAttachments=A,n.depthAttachment=M,n.stencilAttachment=S,n.depthStencilAttachment=E,r.color=A.map(f),r.depth=f(M),r.stencil=f(S),r.depthStencil=f(E),r.width=n.width,r.height=n.height,m(n),r}var n=new d;return i.framebufferCount++,r(t,e),j(r,{resize:function(t,e){var a=Math.max(0|t,1),i=Math.max(0|e||a,1);if(a===n.width&&i===n.height)return r;for(var o=n.colorAttachments,s=0;s<o.length;++s)p(o[s],a,i);return p(n.depthAttachment,a,i),p(n.stencilAttachment,a,i),p(n.depthStencilAttachment,a,i),n.width=r.width=a,n.height=r.height=i,m(n),r},_reglType:\"framebuffer\",_framebuffer:n,destroy:function(){v(n),g(n)},use:function(t){x.setFBO({framebuffer:r},t)}})}var x={cur:null,next:null,dirty:!1,setFBO:null},b=[\"rgba\"],_=[\"rgba4\",\"rgb565\",\"rgb5 a1\"];e.ext_srgb&&_.push(\"srgba\"),e.ext_color_buffer_half_float&&_.push(\"rgba16f\",\"rgb16f\"),e.webgl_color_buffer_float&&_.push(\"rgba32f\");var w=[\"uint8\"];e.oes_texture_half_float&&w.push(\"half float\",\"float16\"),e.oes_texture_float&&w.push(\"float\",\"float32\");var k=0,T={};return j(x,{getFramebuffer:function(t){return\"function\"==typeof t&&\"framebuffer\"===t._reglType&&(t=t._framebuffer)instanceof d?t:null},create:y,createCube:function(t){function e(t){var a,i={color:null},o=0,s=null;a=\"rgba\";var l=\"uint8\",c=1;if(\"number\"==typeof t?o=0|t:t?(\"shape\"in t?o=t.shape[0]:(\"radius\"in t&&(o=0|t.radius),\"width\"in t?o=0|t.width:\"height\"in t&&(o=0|t.height)),(\"color\"in t||\"colors\"in t)&&(s=t.color||t.colors,Array.isArray(s)),s||(\"colorCount\"in t&&(c=0|t.colorCount),\"colorType\"in t&&(l=t.colorType),\"colorFormat\"in t&&(a=t.colorFormat)),\"depth\"in t&&(i.depth=t.depth),\"stencil\"in t&&(i.stencil=t.stencil),\"depthStencil\"in t&&(i.depthStencil=t.depthStencil)):o=1,s)if(Array.isArray(s))for(t=[],a=0;a<s.length;++a)t[a]=s[a];else t=[s];else for(t=Array(c),s={radius:o,format:a,type:l},a=0;a<c;++a)t[a]=n.createCube(s);for(i.color=Array(t.length),a=0;a<t.length;++a)c=t[a],o=o||c.width,i.color[a]={target:34069,data:t[a]};for(a=0;6>a;++a){for(c=0;c<t.length;++c)i.color[c].target=34069+a;0<a&&(i.depth=r[0].depth,i.stencil=r[0].stencil,i.depthStencil=r[0].depthStencil),r[a]?r[a](i):r[a]=y(i)}return j(e,{width:o,height:o,color:t})}var r=Array(6);return e(t),j(e,{faces:r,resize:function(t){var n=0|t;if(n===e.width)return e;var a=e.color;for(t=0;t<a.length;++t)a[t].resize(n);for(t=0;6>t;++t)r[t].resize(n);return e.width=e.height=n,e},_reglType:\"framebufferCube\",destroy:function(){r.forEach(function(t){t.destroy()})}})},clear:function(){X(T).forEach(v)},restore:function(){x.cur=null,x.next=null,x.dirty=!0,X(T).forEach(function(e){e.framebuffer=t.createFramebuffer(),m(e)})}})}function M(){this.w=this.z=this.y=this.x=this.state=0,this.buffer=null,this.size=0,this.normalized=!1,this.type=5126,this.divisor=this.stride=this.offset=0}function S(t,e,r,n){function a(t,e,r,n){this.name=t,this.id=e,this.location=r,this.info=n}function i(t,e){for(var r=0;r<t.length;++r)if(t[r].id===e.id)return void(t[r].location=e.location);t.push(e)}function o(r,n,a){if(!(o=(a=35632===r?c:u)[n])){var i=e.str(n),o=t.createShader(r);t.shaderSource(o,i),t.compileShader(o),a[n]=o}return o}function s(t,e){this.id=p++,this.fragId=t,this.vertId=e,this.program=null,this.uniforms=[],this.attributes=[],n.profile&&(this.stats={uniformsCount:0,attributesCount:0})}function l(r,s){var l,c;l=o(35632,r.fragId),c=o(35633,r.vertId);var u=r.program=t.createProgram();t.attachShader(u,l),t.attachShader(u,c),t.linkProgram(u);var h=t.getProgramParameter(u,35718);n.profile&&(r.stats.uniformsCount=h);var f=r.uniforms;for(l=0;l<h;++l)if(c=t.getActiveUniform(u,l))if(1<c.size)for(var p=0;p<c.size;++p){var d=c.name.replace(\"[0]\",\"[\"+p+\"]\");i(f,new a(d,e.id(d),t.getUniformLocation(u,d),c))}else i(f,new a(c.name,e.id(c.name),t.getUniformLocation(u,c.name),c));for(h=t.getProgramParameter(u,35721),n.profile&&(r.stats.attributesCount=h),f=r.attributes,l=0;l<h;++l)(c=t.getActiveAttrib(u,l))&&i(f,new a(c.name,e.id(c.name),t.getAttribLocation(u,c.name),c))}var c={},u={},h={},f=[],p=0;return n.profile&&(r.getMaxUniformsCount=function(){var t=0;return f.forEach(function(e){e.stats.uniformsCount>t&&(t=e.stats.uniformsCount)}),t},r.getMaxAttributesCount=function(){var t=0;return f.forEach(function(e){e.stats.attributesCount>t&&(t=e.stats.attributesCount)}),t}),{clear:function(){var e=t.deleteShader.bind(t);X(c).forEach(e),c={},X(u).forEach(e),u={},f.forEach(function(e){t.deleteProgram(e.program)}),f.length=0,h={},r.shaderCount=0},program:function(t,e,n){var a=h[e];a||(a=h[e]={});var i=a[t];return i||(i=new s(e,t),r.shaderCount++,l(i),a[t]=i,f.push(i)),i},restore:function(){c={},u={};for(var t=0;t<f.length;++t)l(f[t])},shader:o,frag:-1,vert:-1}}function E(t,e,r,n,a,i,o){function s(a){var i;i=null===e.next?5121:e.next.colorAttachments[0].texture._texture.type;var o=0,s=0,l=n.framebufferWidth,c=n.framebufferHeight,u=null;return W(a)?u=a:a&&(o=0|a.x,s=0|a.y,l=0|(a.width||n.framebufferWidth-o),c=0|(a.height||n.framebufferHeight-s),u=a.data||null),r(),a=l*c*4,u||(5121===i?u=new Uint8Array(a):5126===i&&(u=u||new Float32Array(a))),t.pixelStorei(3333,4),t.readPixels(o,s,l,c,6408,i,u),u}return function(t){return t&&\"framebuffer\"in t?function(t){var r;return e.setFBO({framebuffer:t.framebuffer},function(){r=s(t)}),r}(t):s(t)}}function C(t){return Array.prototype.slice.call(t)}function L(t){return C(t).join(\"\")}function P(){function t(){var t=[],e=[];return j(function(){t.push.apply(t,C(arguments))},{def:function(){var n=\"v\"+r++;return e.push(n),0<arguments.length&&(t.push(n,\"=\"),t.push.apply(t,C(arguments)),t.push(\";\")),n},toString:function(){return L([0<e.length?\"var \"+e+\";\":\"\",L(t)])}})}function e(){function e(t,e){n(t,e,\"=\",r.def(t,e),\";\")}var r=t(),n=t(),a=r.toString,i=n.toString;return j(function(){r.apply(r,C(arguments))},{def:r.def,entry:r,exit:n,save:e,set:function(t,n,a){e(t,n),r(t,n,\"=\",a,\";\")},toString:function(){return a()+i()}})}var r=0,n=[],a=[],i=t(),o={};return{global:i,link:function(t){for(var e=0;e<a.length;++e)if(a[e]===t)return n[e];return e=\"g\"+r++,n.push(e),a.push(t),e},block:t,proc:function(t,r){function n(){var t=\"a\"+a.length;return a.push(t),t}var a=[];r=r||0;for(var i=0;i<r;++i)n();var s=(i=e()).toString;return o[t]=j(i,{arg:n,toString:function(){return L([\"function(\",a.join(),\"){\",s(),\"}\"])}})},scope:e,cond:function(){var t=L(arguments),r=e(),n=e(),a=r.toString,i=n.toString;return j(r,{then:function(){return r.apply(r,C(arguments)),this},else:function(){return n.apply(n,C(arguments)),this},toString:function(){var e=i();return e&&(e=\"else{\"+e+\"}\"),L([\"if(\",t,\"){\",a(),\"}\",e])}})},compile:function(){var t=['\"use strict\";',i,\"return {\"];Object.keys(o).forEach(function(e){t.push('\"',e,'\":',o[e].toString(),\",\")}),t.push(\"}\");var e=L(t).replace(/;/g,\";\\n\").replace(/}/g,\"}\\n\").replace(/{/g,\"{\\n\");return Function.apply(null,n.concat(e)).apply(null,a)}}}function O(t){return Array.isArray(t)||W(t)||l(t)}function I(t){return t.sort(function(t,e){return\"viewport\"===t?-1:\"viewport\"===e?1:t<e?-1:1})}function z(t,e,r,n){this.thisDep=t,this.contextDep=e,this.propDep=r,this.append=n}function D(t){return t&&!(t.thisDep||t.contextDep||t.propDep)}function R(t){return new z(!1,!1,!1,t)}function F(t,e){var r=t.type;return 0===r?new z(!0,1<=(r=t.data.length),2<=r,e):4===r?new z((r=t.data).thisDep,r.contextDep,r.propDep,e):new z(3===r,2===r,1===r,e)}function B(t,e,r,n,a,o,s,l,c,u,h,f,p,d,g){function m(t){return t.replace(\".\",\"_\")}function y(t,e,r){var n=m(t);nt.push(t),et[n]=tt[n]=!!r,at[n]=e}function x(t,e,r){var n=m(t);nt.push(t),Array.isArray(r)?(tt[n]=r.slice(),et[n]=r.slice()):tt[n]=et[n]=r,it[n]=e}function b(){var t=P(),r=t.link,n=t.global;t.id=lt++,t.batchId=\"0\";var a=r(ot),i=t.shared={props:\"a0\"};Object.keys(ot).forEach(function(t){i[t]=n.def(a,\".\",t)});var o=t.next={},s=t.current={};Object.keys(it).forEach(function(t){Array.isArray(tt[t])&&(o[t]=n.def(i.next,\".\",t),s[t]=n.def(i.current,\".\",t))});var l=t.constants={};Object.keys(st).forEach(function(t){l[t]=n.def(JSON.stringify(st[t]))}),t.invoke=function(e,n){switch(n.type){case 0:var a=[\"this\",i.context,i.props,t.batchId];return e.def(r(n.data),\".call(\",a.slice(0,Math.max(n.data.length+1,4)),\")\");case 1:return e.def(i.props,n.data);case 2:return e.def(i.context,n.data);case 3:return e.def(\"this\",n.data);case 4:return n.data.append(t,e),n.data.ref}},t.attribCache={};var c={};return t.scopeAttrib=function(t){if((t=e.id(t))in c)return c[t];var n=u.scope[t];return n||(n=u.scope[t]=new Z),c[t]=r(n)},t}function _(t,e){var r=t.static,n=t.dynamic;if(\"framebuffer\"in r){var a=r.framebuffer;return a?(a=l.getFramebuffer(a),R(function(t,e){var r=t.link(a),n=t.shared;return e.set(n.framebuffer,\".next\",r),n=n.context,e.set(n,\".framebufferWidth\",r+\".width\"),e.set(n,\".framebufferHeight\",r+\".height\"),r})):R(function(t,e){var r=t.shared;return e.set(r.framebuffer,\".next\",\"null\"),r=r.context,e.set(r,\".framebufferWidth\",r+\".drawingBufferWidth\"),e.set(r,\".framebufferHeight\",r+\".drawingBufferHeight\"),\"null\"})}if(\"framebuffer\"in n){var i=n.framebuffer;return F(i,function(t,e){var r=t.invoke(e,i),n=t.shared,a=n.framebuffer;r=e.def(a,\".getFramebuffer(\",r,\")\");return e.set(a,\".next\",r),n=n.context,e.set(n,\".framebufferWidth\",r+\"?\"+r+\".width:\"+n+\".drawingBufferWidth\"),e.set(n,\".framebufferHeight\",r+\"?\"+r+\".height:\"+n+\".drawingBufferHeight\"),r})}return null}function w(t){function r(t){if(t in n){var r=e.id(n[t]);return(t=R(function(){return r})).id=r,t}if(t in a){var i=a[t];return F(i,function(t,e){var r=t.invoke(e,i);return e.def(t.shared.strings,\".id(\",r,\")\")})}return null}var n=t.static,a=t.dynamic,i=r(\"frag\"),o=r(\"vert\"),s=null;return D(i)&&D(o)?(s=h.program(o.id,i.id),t=R(function(t,e){return t.link(s)})):t=new z(i&&i.thisDep||o&&o.thisDep,i&&i.contextDep||o&&o.contextDep,i&&i.propDep||o&&o.propDep,function(t,e){var r,n,a=t.shared.shader;return r=i?i.append(t,e):e.def(a,\".\",\"frag\"),n=o?o.append(t,e):e.def(a,\".\",\"vert\"),e.def(a+\".program(\"+n+\",\"+r+\")\")}),{frag:i,vert:o,progVar:t,program:s}}function k(t,e){function r(t,e){if(t in n){var r=0|n[t];return R(function(t,n){return e&&(t.OFFSET=r),r})}if(t in a){var o=a[t];return F(o,function(t,r){var n=t.invoke(r,o);return e&&(t.OFFSET=n),n})}return e&&i?R(function(t,e){return t.OFFSET=\"0\",0}):null}var n=t.static,a=t.dynamic,i=function(){if(\"elements\"in n){var t=n.elements;O(t)?t=o.getElements(o.create(t,!0)):t&&(t=o.getElements(t));var e=R(function(e,r){if(t){var n=e.link(t);return e.ELEMENTS=n}return e.ELEMENTS=null});return e.value=t,e}if(\"elements\"in a){var r=a.elements;return F(r,function(t,e){var n=(a=t.shared).isBufferArgs,a=a.elements,i=t.invoke(e,r),o=e.def(\"null\");n=e.def(n,\"(\",i,\")\"),i=t.cond(n).then(o,\"=\",a,\".createStream(\",i,\");\").else(o,\"=\",a,\".getElements(\",i,\");\");return e.entry(i),e.exit(t.cond(n).then(a,\".destroyStream(\",o,\");\")),t.ELEMENTS=o})}return null}(),s=r(\"offset\",!0);return{elements:i,primitive:function(){if(\"primitive\"in n){var t=n.primitive;return R(function(e,r){return rt[t]})}if(\"primitive\"in a){var e=a.primitive;return F(e,function(t,r){var n=t.constants.primTypes,a=t.invoke(r,e);return r.def(n,\"[\",a,\"]\")})}return i?D(i)?i.value?R(function(t,e){return e.def(t.ELEMENTS,\".primType\")}):R(function(){return 4}):new z(i.thisDep,i.contextDep,i.propDep,function(t,e){var r=t.ELEMENTS;return e.def(r,\"?\",r,\".primType:\",4)}):null}(),count:function(){if(\"count\"in n){var t=0|n.count;return R(function(){return t})}if(\"count\"in a){var e=a.count;return F(e,function(t,r){return t.invoke(r,e)})}return i?D(i)?i?s?new z(s.thisDep,s.contextDep,s.propDep,function(t,e){return e.def(t.ELEMENTS,\".vertCount-\",t.OFFSET)}):R(function(t,e){return e.def(t.ELEMENTS,\".vertCount\")}):R(function(){return-1}):new z(i.thisDep||s.thisDep,i.contextDep||s.contextDep,i.propDep||s.propDep,function(t,e){var r=t.ELEMENTS;return t.OFFSET?e.def(r,\"?\",r,\".vertCount-\",t.OFFSET,\":-1\"):e.def(r,\"?\",r,\".vertCount:-1\")}):null}(),instances:r(\"instances\",!1),offset:s}}function T(t,r){var n=t.static,i=t.dynamic,o={};return Object.keys(n).forEach(function(t){var r=n[t],i=e.id(t),s=new Z;if(O(r))s.state=1,s.buffer=a.getBuffer(a.create(r,34962,!1,!0)),s.type=0;else if(c=a.getBuffer(r))s.state=1,s.buffer=c,s.type=0;else if(\"constant\"in r){var l=r.constant;s.buffer=\"null\",s.state=2,\"number\"==typeof l?s.x=l:bt.forEach(function(t,e){e<l.length&&(s[t]=l[e])})}else{var c=O(r.buffer)?a.getBuffer(a.create(r.buffer,34962,!1,!0)):a.getBuffer(r.buffer),u=0|r.offset,h=0|r.stride,f=0|r.size,p=!!r.normalized,d=0;\"type\"in r&&(d=K[r.type]),r=0|r.divisor,s.buffer=c,s.state=1,s.size=f,s.normalized=p,s.type=d||c.dtype,s.offset=u,s.stride=h,s.divisor=r}o[t]=R(function(t,e){var r=t.attribCache;if(i in r)return r[i];var n={isStream:!1};return Object.keys(s).forEach(function(t){n[t]=s[t]}),s.buffer&&(n.buffer=t.link(s.buffer),n.type=n.type||n.buffer+\".dtype\"),r[i]=n})}),Object.keys(i).forEach(function(t){var e=i[t];o[t]=F(e,function(t,r){function n(t){r(l[t],\"=\",a,\".\",t,\"|0;\")}var a=t.invoke(r,e),i=t.shared,o=i.isBufferArgs,s=i.buffer,l={isStream:r.def(!1)},c=new Z;c.state=1,Object.keys(c).forEach(function(t){l[t]=r.def(\"\"+c[t])});var u=l.buffer,h=l.type;return r(\"if(\",o,\"(\",a,\")){\",l.isStream,\"=true;\",u,\"=\",s,\".createStream(\",34962,\",\",a,\");\",h,\"=\",u,\".dtype;\",\"}else{\",u,\"=\",s,\".getBuffer(\",a,\");\",\"if(\",u,\"){\",h,\"=\",u,\".dtype;\",'}else if(\"constant\" in ',a,\"){\",l.state,\"=\",2,\";\",\"if(typeof \"+a+'.constant === \"number\"){',l[bt[0]],\"=\",a,\".constant;\",bt.slice(1).map(function(t){return l[t]}).join(\"=\"),\"=0;\",\"}else{\",bt.map(function(t,e){return l[t]+\"=\"+a+\".constant.length>\"+e+\"?\"+a+\".constant[\"+e+\"]:0;\"}).join(\"\"),\"}}else{\",\"if(\",o,\"(\",a,\".buffer)){\",u,\"=\",s,\".createStream(\",34962,\",\",a,\".buffer);\",\"}else{\",u,\"=\",s,\".getBuffer(\",a,\".buffer);\",\"}\",h,'=\"type\" in ',a,\"?\",i.glTypes,\"[\",a,\".type]:\",u,\".dtype;\",l.normalized,\"=!!\",a,\".normalized;\"),n(\"size\"),n(\"offset\"),n(\"stride\"),n(\"divisor\"),r(\"}}\"),r.exit(\"if(\",l.isStream,\"){\",s,\".destroyStream(\",u,\");\",\"}\"),l})}),o}function A(t,e,r,n,a){var o=_(t),s=function(t,e,r){function n(t){if(t in a){var r=a[t];t=!0;var n,o,s=0|r.x,l=0|r.y;return\"width\"in r?n=0|r.width:t=!1,\"height\"in r?o=0|r.height:t=!1,new z(!t&&e&&e.thisDep,!t&&e&&e.contextDep,!t&&e&&e.propDep,function(t,e){var a=t.shared.context,i=n;\"width\"in r||(i=e.def(a,\".\",\"framebufferWidth\",\"-\",s));var c=o;return\"height\"in r||(c=e.def(a,\".\",\"framebufferHeight\",\"-\",l)),[s,l,i,c]})}if(t in i){var c=i[t];return t=F(c,function(t,e){var r=t.invoke(e,c),n=t.shared.context,a=e.def(r,\".x|0\"),i=e.def(r,\".y|0\");return[a,i,e.def('\"width\" in ',r,\"?\",r,\".width|0:\",\"(\",n,\".\",\"framebufferWidth\",\"-\",a,\")\"),r=e.def('\"height\" in ',r,\"?\",r,\".height|0:\",\"(\",n,\".\",\"framebufferHeight\",\"-\",i,\")\")]}),e&&(t.thisDep=t.thisDep||e.thisDep,t.contextDep=t.contextDep||e.contextDep,t.propDep=t.propDep||e.propDep),t}return e?new z(e.thisDep,e.contextDep,e.propDep,function(t,e){var r=t.shared.context;return[0,0,e.def(r,\".\",\"framebufferWidth\"),e.def(r,\".\",\"framebufferHeight\")]}):null}var a=t.static,i=t.dynamic;if(t=n(\"viewport\")){var o=t;t=new z(t.thisDep,t.contextDep,t.propDep,function(t,e){var r=o.append(t,e),n=t.shared.context;return e.set(n,\".viewportWidth\",r[2]),e.set(n,\".viewportHeight\",r[3]),r})}return{viewport:t,scissor_box:n(\"scissor.box\")}}(t,o),l=k(t),c=function(t,e){var r=t.static,n=t.dynamic,a={};return nt.forEach(function(t){function e(e,i){if(t in r){var s=e(r[t]);a[o]=R(function(){return s})}else if(t in n){var l=n[t];a[o]=F(l,function(t,e){return i(t,e,t.invoke(e,l))})}}var o=m(t);switch(t){case\"cull.enable\":case\"blend.enable\":case\"dither\":case\"stencil.enable\":case\"depth.enable\":case\"scissor.enable\":case\"polygonOffset.enable\":case\"sample.alpha\":case\"sample.enable\":case\"depth.mask\":return e(function(t){return t},function(t,e,r){return r});case\"depth.func\":return e(function(t){return kt[t]},function(t,e,r){return e.def(t.constants.compareFuncs,\"[\",r,\"]\")});case\"depth.range\":return e(function(t){return t},function(t,e,r){return[e.def(\"+\",r,\"[0]\"),e=e.def(\"+\",r,\"[1]\")]});case\"blend.func\":return e(function(t){return[wt[\"srcRGB\"in t?t.srcRGB:t.src],wt[\"dstRGB\"in t?t.dstRGB:t.dst],wt[\"srcAlpha\"in t?t.srcAlpha:t.src],wt[\"dstAlpha\"in t?t.dstAlpha:t.dst]]},function(t,e,r){function n(t,n){return e.def('\"',t,n,'\" in ',r,\"?\",r,\".\",t,n,\":\",r,\".\",t)}t=t.constants.blendFuncs;var a=n(\"src\",\"RGB\"),i=n(\"dst\",\"RGB\"),o=(a=e.def(t,\"[\",a,\"]\"),e.def(t,\"[\",n(\"src\",\"Alpha\"),\"]\"));return[a,i=e.def(t,\"[\",i,\"]\"),o,t=e.def(t,\"[\",n(\"dst\",\"Alpha\"),\"]\")]});case\"blend.equation\":return e(function(t){return\"string\"==typeof t?[J[t],J[t]]:\"object\"==typeof t?[J[t.rgb],J[t.alpha]]:void 0},function(t,e,r){var n=t.constants.blendEquations,a=e.def(),i=e.def();return(t=t.cond(\"typeof \",r,'===\"string\"')).then(a,\"=\",i,\"=\",n,\"[\",r,\"];\"),t.else(a,\"=\",n,\"[\",r,\".rgb];\",i,\"=\",n,\"[\",r,\".alpha];\"),e(t),[a,i]});case\"blend.color\":return e(function(t){return i(4,function(e){return+t[e]})},function(t,e,r){return i(4,function(t){return e.def(\"+\",r,\"[\",t,\"]\")})});case\"stencil.mask\":return e(function(t){return 0|t},function(t,e,r){return e.def(r,\"|0\")});case\"stencil.func\":return e(function(t){return[kt[t.cmp||\"keep\"],t.ref||0,\"mask\"in t?t.mask:-1]},function(t,e,r){return[t=e.def('\"cmp\" in ',r,\"?\",t.constants.compareFuncs,\"[\",r,\".cmp]\",\":\",7680),e.def(r,\".ref|0\"),e=e.def('\"mask\" in ',r,\"?\",r,\".mask|0:-1\")]});case\"stencil.opFront\":case\"stencil.opBack\":return e(function(e){return[\"stencil.opBack\"===t?1029:1028,Tt[e.fail||\"keep\"],Tt[e.zfail||\"keep\"],Tt[e.zpass||\"keep\"]]},function(e,r,n){function a(t){return r.def('\"',t,'\" in ',n,\"?\",i,\"[\",n,\".\",t,\"]:\",7680)}var i=e.constants.stencilOps;return[\"stencil.opBack\"===t?1029:1028,a(\"fail\"),a(\"zfail\"),a(\"zpass\")]});case\"polygonOffset.offset\":return e(function(t){return[0|t.factor,0|t.units]},function(t,e,r){return[e.def(r,\".factor|0\"),e=e.def(r,\".units|0\")]});case\"cull.face\":return e(function(t){var e=0;return\"front\"===t?e=1028:\"back\"===t&&(e=1029),e},function(t,e,r){return e.def(r,'===\"front\"?',1028,\":\",1029)});case\"lineWidth\":return e(function(t){return t},function(t,e,r){return r});case\"frontFace\":return e(function(t){return At[t]},function(t,e,r){return e.def(r+'===\"cw\"?2304:2305')});case\"colorMask\":return e(function(t){return t.map(function(t){return!!t})},function(t,e,r){return i(4,function(t){return\"!!\"+r+\"[\"+t+\"]\"})});case\"sample.coverage\":return e(function(t){return[\"value\"in t?t.value:1,!!t.invert]},function(t,e,r){return[e.def('\"value\" in ',r,\"?+\",r,\".value:1\"),e=e.def(\"!!\",r,\".invert\")]})}}),a}(t),u=w(t),h=s.viewport;return h&&(c.viewport=h),(s=s[h=m(\"scissor.box\")])&&(c[h]=s),(o={framebuffer:o,draw:l,shader:u,state:c,dirty:s=0<Object.keys(c).length}).profile=function(t){var e,r=t.static;if(t=t.dynamic,\"profile\"in r){var n=!!r.profile;(e=R(function(t,e){return n})).enable=n}else if(\"profile\"in t){var a=t.profile;e=F(a,function(t,e){return t.invoke(e,a)})}return e}(t),o.uniforms=function(t,e){var r=t.static,n=t.dynamic,a={};return Object.keys(r).forEach(function(t){var e,n=r[t];if(\"number\"==typeof n||\"boolean\"==typeof n)e=R(function(){return n});else if(\"function\"==typeof n){var o=n._reglType;\"texture2d\"===o||\"textureCube\"===o?e=R(function(t){return t.link(n)}):\"framebuffer\"!==o&&\"framebufferCube\"!==o||(e=R(function(t){return t.link(n.color[0])}))}else v(n)&&(e=R(function(t){return t.global.def(\"[\",i(n.length,function(t){return n[t]}),\"]\")}));e.value=n,a[t]=e}),Object.keys(n).forEach(function(t){var e=n[t];a[t]=F(e,function(t,r){return t.invoke(r,e)})}),a}(r),o.attributes=T(e),o.context=function(t){var e=t.static,r=t.dynamic,n={};return Object.keys(e).forEach(function(t){var r=e[t];n[t]=R(function(t,e){return\"number\"==typeof r||\"boolean\"==typeof r?\"\"+r:t.link(r)})}),Object.keys(r).forEach(function(t){var e=r[t];n[t]=F(e,function(t,r){return t.invoke(r,e)})}),n}(n),o}function M(t,e,r){var n=t.shared.context,a=t.scope();Object.keys(r).forEach(function(i){e.save(n,\".\"+i),a(n,\".\",i,\"=\",r[i].append(t,e),\";\")}),e(a)}function S(t,e,r,n){var a,i=(s=t.shared).gl,o=s.framebuffer;$&&(a=e.def(s.extensions,\".webgl_draw_buffers\"));var s=(l=t.constants).drawBuffer,l=l.backBuffer;t=r?r.append(t,e):e.def(o,\".next\"),n||e(\"if(\",t,\"!==\",o,\".cur){\"),e(\"if(\",t,\"){\",i,\".bindFramebuffer(\",36160,\",\",t,\".framebuffer);\"),$&&e(a,\".drawBuffersWEBGL(\",s,\"[\",t,\".colorAttachments.length]);\"),e(\"}else{\",i,\".bindFramebuffer(\",36160,\",null);\"),$&&e(a,\".drawBuffersWEBGL(\",l,\");\"),e(\"}\",o,\".cur=\",t,\";\"),n||e(\"}\")}function E(t,e,r){var n=t.shared,a=n.gl,o=t.current,s=t.next,l=n.current,c=n.next,u=t.cond(l,\".dirty\");nt.forEach(function(e){var n,h;if(!((e=m(e))in r.state))if(e in s){n=s[e],h=o[e];var f=i(tt[e].length,function(t){return u.def(n,\"[\",t,\"]\")});u(t.cond(f.map(function(t,e){return t+\"!==\"+h+\"[\"+e+\"]\"}).join(\"||\")).then(a,\".\",it[e],\"(\",f,\");\",f.map(function(t,e){return h+\"[\"+e+\"]=\"+t}).join(\";\"),\";\"))}else n=u.def(c,\".\",e),f=t.cond(n,\"!==\",l,\".\",e),u(f),e in at?f(t.cond(n).then(a,\".enable(\",at[e],\");\").else(a,\".disable(\",at[e],\");\"),l,\".\",e,\"=\",n,\";\"):f(a,\".\",it[e],\"(\",n,\");\",l,\".\",e,\"=\",n,\";\")}),0===Object.keys(r.state).length&&u(l,\".dirty=false;\"),e(u)}function C(t,e,r,n){var a=t.shared,i=t.current,o=a.current,s=a.gl;I(Object.keys(r)).forEach(function(a){var l=r[a];if(!n||n(l)){var c=l.append(t,e);if(at[a]){var u=at[a];D(l)?e(s,c?\".enable(\":\".disable(\",u,\");\"):e(t.cond(c).then(s,\".enable(\",u,\");\").else(s,\".disable(\",u,\");\")),e(o,\".\",a,\"=\",c,\";\")}else if(v(c)){var h=i[a];e(s,\".\",it[a],\"(\",c,\");\",c.map(function(t,e){return h+\"[\"+e+\"]=\"+t}).join(\";\"),\";\")}else e(s,\".\",it[a],\"(\",c,\");\",o,\".\",a,\"=\",c,\";\")}})}function L(t,e){Q&&(t.instancing=e.def(t.shared.extensions,\".angle_instanced_arrays\"))}function B(t,e,r,n,a){function i(){return\"undefined\"==typeof performance?\"Date.now()\":\"performance.now()\"}function o(t){t(c=e.def(),\"=\",i(),\";\"),\"string\"==typeof a?t(f,\".count+=\",a,\";\"):t(f,\".count++;\"),d&&(n?t(u=e.def(),\"=\",g,\".getNumPendingQueries();\"):t(g,\".beginQuery(\",f,\");\"))}function s(t){t(f,\".cpuTime+=\",i(),\"-\",c,\";\"),d&&(n?t(g,\".pushScopeStats(\",u,\",\",g,\".getNumPendingQueries(),\",f,\");\"):t(g,\".endQuery();\"))}function l(t){var r=e.def(p,\".profile\");e(p,\".profile=\",t,\";\"),e.exit(p,\".profile=\",r,\";\")}var c,u,h=t.shared,f=t.stats,p=h.current,g=h.timer;if(r=r.profile){if(D(r))return void(r.enable?(o(e),s(e.exit),l(\"true\")):l(\"false\"));l(r=r.append(t,e))}else r=e.def(p,\".profile\");o(h=t.block()),e(\"if(\",r,\"){\",h,\"}\"),s(t=t.block()),e.exit(\"if(\",r,\"){\",t,\"}\")}function N(t,e,r,n,a){function i(r,n,a){function i(){e(\"if(!\",u,\".buffer){\",l,\".enableVertexAttribArray(\",c,\");}\");var r,i=a.type;r=a.size?e.def(a.size,\"||\",n):n,e(\"if(\",u,\".type!==\",i,\"||\",u,\".size!==\",r,\"||\",p.map(function(t){return u+\".\"+t+\"!==\"+a[t]}).join(\"||\"),\"){\",l,\".bindBuffer(\",34962,\",\",h,\".buffer);\",l,\".vertexAttribPointer(\",[c,r,i,a.normalized,a.stride,a.offset],\");\",u,\".type=\",i,\";\",u,\".size=\",r,\";\",p.map(function(t){return u+\".\"+t+\"=\"+a[t]+\";\"}).join(\"\"),\"}\"),Q&&(i=a.divisor,e(\"if(\",u,\".divisor!==\",i,\"){\",t.instancing,\".vertexAttribDivisorANGLE(\",[c,i],\");\",u,\".divisor=\",i,\";}\"))}function s(){e(\"if(\",u,\".buffer){\",l,\".disableVertexAttribArray(\",c,\");\",\"}if(\",bt.map(function(t,e){return u+\".\"+t+\"!==\"+f[e]}).join(\"||\"),\"){\",l,\".vertexAttrib4f(\",c,\",\",f,\");\",bt.map(function(t,e){return u+\".\"+t+\"=\"+f[e]+\";\"}).join(\"\"),\"}\")}var l=o.gl,c=e.def(r,\".location\"),u=e.def(o.attributes,\"[\",c,\"]\");r=a.state;var h=a.buffer,f=[a.x,a.y,a.z,a.w],p=[\"buffer\",\"normalized\",\"offset\",\"stride\"];1===r?i():2===r?s():(e(\"if(\",r,\"===\",1,\"){\"),i(),e(\"}else{\"),s(),e(\"}\"))}var o=t.shared;n.forEach(function(n){var o,s=n.name,l=r.attributes[s];if(l){if(!a(l))return;o=l.append(t,e)}else{if(!a(Mt))return;var c=t.scopeAttrib(s);o={},Object.keys(new Z).forEach(function(t){o[t]=e.def(c,\".\",t)})}i(t.link(n),function(t){switch(t){case 35664:case 35667:case 35671:return 2;case 35665:case 35668:case 35672:return 3;case 35666:case 35669:case 35673:return 4;default:return 1}}(n.info.type),o)})}function j(t,r,n,a,o){for(var s,l=t.shared,c=l.gl,u=0;u<a.length;++u){var h,f=(g=a[u]).name,p=g.info.type,d=n.uniforms[f],g=t.link(g)+\".location\";if(d){if(!o(d))continue;if(D(d)){if(f=d.value,35678===p||35680===p)r(c,\".uniform1i(\",g,\",\",(p=t.link(f._texture||f.color[0]._texture))+\".bind());\"),r.exit(p,\".unbind();\");else if(35674===p||35675===p||35676===p)d=2,35675===p?d=3:35676===p&&(d=4),r(c,\".uniformMatrix\",d,\"fv(\",g,\",false,\",f=t.global.def(\"new Float32Array([\"+Array.prototype.slice.call(f)+\"])\"),\");\");else{switch(p){case 5126:s=\"1f\";break;case 35664:s=\"2f\";break;case 35665:s=\"3f\";break;case 35666:s=\"4f\";break;case 35670:case 5124:s=\"1i\";break;case 35671:case 35667:s=\"2i\";break;case 35672:case 35668:s=\"3i\";break;case 35673:s=\"4i\";break;case 35669:s=\"4i\"}r(c,\".uniform\",s,\"(\",g,\",\",v(f)?Array.prototype.slice.call(f):f,\");\")}continue}h=d.append(t,r)}else{if(!o(Mt))continue;h=r.def(l.uniforms,\"[\",e.id(f),\"]\")}switch(35678===p?r(\"if(\",h,\"&&\",h,'._reglType===\"framebuffer\"){',h,\"=\",h,\".color[0];\",\"}\"):35680===p&&r(\"if(\",h,\"&&\",h,'._reglType===\"framebufferCube\"){',h,\"=\",h,\".color[0];\",\"}\"),f=1,p){case 35678:case 35680:p=r.def(h,\"._texture\"),r(c,\".uniform1i(\",g,\",\",p,\".bind());\"),r.exit(p,\".unbind();\");continue;case 5124:case 35670:s=\"1i\";break;case 35667:case 35671:s=\"2i\",f=2;break;case 35668:case 35672:s=\"3i\",f=3;break;case 35669:case 35673:s=\"4i\",f=4;break;case 5126:s=\"1f\";break;case 35664:s=\"2f\",f=2;break;case 35665:s=\"3f\",f=3;break;case 35666:s=\"4f\",f=4;break;case 35674:s=\"Matrix2fv\";break;case 35675:s=\"Matrix3fv\";break;case 35676:s=\"Matrix4fv\"}if(r(c,\".uniform\",s,\"(\",g,\",\"),\"M\"===s.charAt(0)){g=Math.pow(p-35674+2,2);var m=t.global.def(\"new Float32Array(\",g,\")\");r(\"false,(Array.isArray(\",h,\")||\",h,\" instanceof Float32Array)?\",h,\":(\",i(g,function(t){return m+\"[\"+t+\"]=\"+h+\"[\"+t+\"]\"}),\",\",m,\")\")}else r(1<f?i(f,function(t){return h+\"[\"+t+\"]\"}):h);r(\");\")}}function V(t,e,r,n){function a(a){var i=f[a];return i?i.contextDep&&n.contextDynamic||i.propDep?i.append(t,r):i.append(t,e):e.def(h,\".\",a)}function i(){function t(){r(l,\".drawElementsInstancedANGLE(\",[d,v,m,g+\"<<((\"+m+\"-5121)>>1)\",s],\");\")}function e(){r(l,\".drawArraysInstancedANGLE(\",[d,g,v,s],\");\")}p?y?t():(r(\"if(\",p,\"){\"),t(),r(\"}else{\"),e(),r(\"}\")):e()}function o(){function t(){r(u+\".drawElements(\"+[d,v,m,g+\"<<((\"+m+\"-5121)>>1)\"]+\");\")}function e(){r(u+\".drawArrays(\"+[d,g,v]+\");\")}p?y?t():(r(\"if(\",p,\"){\"),t(),r(\"}else{\"),e(),r(\"}\")):e()}var s,l,c=t.shared,u=c.gl,h=c.draw,f=n.draw,p=function(){var a=f.elements,i=e;return a?((a.contextDep&&n.contextDynamic||a.propDep)&&(i=r),a=a.append(t,i)):a=i.def(h,\".\",\"elements\"),a&&i(\"if(\"+a+\")\"+u+\".bindBuffer(34963,\"+a+\".buffer.buffer);\"),a}(),d=a(\"primitive\"),g=a(\"offset\"),v=function(){var a=f.count,i=e;return a?((a.contextDep&&n.contextDynamic||a.propDep)&&(i=r),a=a.append(t,i)):a=i.def(h,\".\",\"count\"),a}();if(\"number\"==typeof v){if(0===v)return}else r(\"if(\",v,\"){\"),r.exit(\"}\");Q&&(s=a(\"instances\"),l=t.instancing);var m=p+\".type\",y=f.elements&&D(f.elements);Q&&(\"number\"!=typeof s||0<=s)?\"string\"==typeof s?(r(\"if(\",s,\">0){\"),i(),r(\"}else if(\",s,\"<0){\"),o(),r(\"}\")):i():o()}function q(t,e,r,n,a){return a=(e=b()).proc(\"body\",a),Q&&(e.instancing=a.def(e.shared.extensions,\".angle_instanced_arrays\")),t(e,a,r,n),e.compile().body}function H(t,e,r,n){L(t,e),N(t,e,r,n.attributes,function(){return!0}),j(t,e,r,n.uniforms,function(){return!0}),V(t,e,e,r)}function G(t,e,r,n){function a(){return!0}t.batchId=\"a1\",L(t,e),N(t,e,r,n.attributes,a),j(t,e,r,n.uniforms,a),V(t,e,e,r)}function Y(t,e,r,n){function a(t){return t.contextDep&&o||t.propDep}function i(t){return!a(t)}L(t,e);var o=r.contextDep,s=e.def(),l=e.def();t.shared.props=l,t.batchId=s;var c=t.scope(),u=t.scope();e(c.entry,\"for(\",s,\"=0;\",s,\"<\",\"a1\",\";++\",s,\"){\",l,\"=\",\"a0\",\"[\",s,\"];\",u,\"}\",c.exit),r.needsContext&&M(t,u,r.context),r.needsFramebuffer&&S(t,u,r.framebuffer),C(t,u,r.state,a),r.profile&&a(r.profile)&&B(t,u,r,!1,!0),n?(N(t,c,r,n.attributes,i),N(t,u,r,n.attributes,a),j(t,c,r,n.uniforms,i),j(t,u,r,n.uniforms,a),V(t,c,u,r)):(e=t.global.def(\"{}\"),n=r.shader.progVar.append(t,u),l=u.def(n,\".id\"),c=u.def(e,\"[\",l,\"]\"),u(t.shared.gl,\".useProgram(\",n,\".program);\",\"if(!\",c,\"){\",c,\"=\",e,\"[\",l,\"]=\",t.link(function(e){return q(G,t,r,e,2)}),\"(\",n,\");}\",c,\".call(this,a0[\",s,\"],\",s,\");\"))}function W(t,r){function n(e){var n=r.shader[e];n&&a.set(i.shader,\".\"+e,n.append(t,a))}var a=t.proc(\"scope\",3);t.batchId=\"a2\";var i=t.shared,o=i.current;M(t,a,r.context),r.framebuffer&&r.framebuffer.append(t,a),I(Object.keys(r.state)).forEach(function(e){var n=r.state[e].append(t,a);v(n)?n.forEach(function(r,n){a.set(t.next[e],\"[\"+n+\"]\",r)}):a.set(i.next,\".\"+e,n)}),B(t,a,r,!0,!0),[\"elements\",\"offset\",\"count\",\"instances\",\"primitive\"].forEach(function(e){var n=r.draw[e];n&&a.set(i.draw,\".\"+e,\"\"+n.append(t,a))}),Object.keys(r.uniforms).forEach(function(n){a.set(i.uniforms,\"[\"+e.id(n)+\"]\",r.uniforms[n].append(t,a))}),Object.keys(r.attributes).forEach(function(e){var n=r.attributes[e].append(t,a),i=t.scopeAttrib(e);Object.keys(new Z).forEach(function(t){a.set(i,\".\"+t,n[t])})}),n(\"vert\"),n(\"frag\"),0<Object.keys(r.state).length&&(a(o,\".dirty=true;\"),a.exit(o,\".dirty=true;\")),a(\"a1(\",t.shared.context,\",a0,\",t.batchId,\");\")}function X(t,e,r){var n=e.static[r];if(n&&function(t){if(\"object\"==typeof t&&!v(t)){for(var e=Object.keys(t),r=0;r<e.length;++r)if(U.isDynamic(t[e[r]]))return!0;return!1}}(n)){var a=t.global,i=Object.keys(n),o=!1,s=!1,l=!1,c=t.global.def(\"{}\");i.forEach(function(e){var r=n[e];if(U.isDynamic(r))\"function\"==typeof r&&(r=n[e]=U.unbox(r)),e=F(r,null),o=o||e.thisDep,l=l||e.propDep,s=s||e.contextDep;else{switch(a(c,\".\",e,\"=\"),typeof r){case\"number\":a(r);break;case\"string\":a('\"',r,'\"');break;case\"object\":Array.isArray(r)&&a(\"[\",r.join(),\"]\");break;default:a(t.link(r))}a(\";\")}}),e.dynamic[r]=new U.DynamicVariable(4,{thisDep:o,contextDep:s,propDep:l,ref:c,append:function(t,e){i.forEach(function(r){var a=n[r];U.isDynamic(a)&&(a=t.invoke(e,a),e(c,\".\",r,\"=\",a,\";\"))})}}),delete e.static[r]}}var Z=u.Record,J={add:32774,subtract:32778,\"reverse subtract\":32779};r.ext_blend_minmax&&(J.min=32775,J.max=32776);var Q=r.angle_instanced_arrays,$=r.webgl_draw_buffers,tt={dirty:!0,profile:g.profile},et={},nt=[],at={},it={};y(\"dither\",3024),y(\"blend.enable\",3042),x(\"blend.color\",\"blendColor\",[0,0,0,0]),x(\"blend.equation\",\"blendEquationSeparate\",[32774,32774]),x(\"blend.func\",\"blendFuncSeparate\",[1,0,1,0]),y(\"depth.enable\",2929,!0),x(\"depth.func\",\"depthFunc\",513),x(\"depth.range\",\"depthRange\",[0,1]),x(\"depth.mask\",\"depthMask\",!0),x(\"colorMask\",\"colorMask\",[!0,!0,!0,!0]),y(\"cull.enable\",2884),x(\"cull.face\",\"cullFace\",1029),x(\"frontFace\",\"frontFace\",2305),x(\"lineWidth\",\"lineWidth\",1),y(\"polygonOffset.enable\",32823),x(\"polygonOffset.offset\",\"polygonOffset\",[0,0]),y(\"sample.alpha\",32926),y(\"sample.enable\",32928),x(\"sample.coverage\",\"sampleCoverage\",[1,!1]),y(\"stencil.enable\",2960),x(\"stencil.mask\",\"stencilMask\",-1),x(\"stencil.func\",\"stencilFunc\",[519,0,-1]),x(\"stencil.opFront\",\"stencilOpSeparate\",[1028,7680,7680,7680]),x(\"stencil.opBack\",\"stencilOpSeparate\",[1029,7680,7680,7680]),y(\"scissor.enable\",3089),x(\"scissor.box\",\"scissor\",[0,0,t.drawingBufferWidth,t.drawingBufferHeight]),x(\"viewport\",\"viewport\",[0,0,t.drawingBufferWidth,t.drawingBufferHeight]);var ot={gl:t,context:p,strings:e,next:et,current:tt,draw:f,elements:o,buffer:a,shader:h,attributes:u.state,uniforms:c,framebuffer:l,extensions:r,timer:d,isBufferArgs:O},st={primTypes:rt,compareFuncs:kt,blendFuncs:wt,blendEquations:J,stencilOps:Tt,glTypes:K,orientationType:At};$&&(st.backBuffer=[1029],st.drawBuffer=i(n.maxDrawbuffers,function(t){return 0===t?[0]:i(t,function(t){return 36064+t})}));var lt=0;return{next:et,current:tt,procs:function(){var t=b(),e=t.proc(\"poll\"),r=t.proc(\"refresh\"),a=t.block();e(a),r(a);var o,s=t.shared,l=s.gl,c=s.next,u=s.current;a(u,\".dirty=false;\"),S(t,e),S(t,r,null,!0),Q&&(o=t.link(Q));for(var h=0;h<n.maxAttributes;++h){var f=r.def(s.attributes,\"[\",h,\"]\"),p=t.cond(f,\".buffer\");p.then(l,\".enableVertexAttribArray(\",h,\");\",l,\".bindBuffer(\",34962,\",\",f,\".buffer.buffer);\",l,\".vertexAttribPointer(\",h,\",\",f,\".size,\",f,\".type,\",f,\".normalized,\",f,\".stride,\",f,\".offset);\").else(l,\".disableVertexAttribArray(\",h,\");\",l,\".vertexAttrib4f(\",h,\",\",f,\".x,\",f,\".y,\",f,\".z,\",f,\".w);\",f,\".buffer=null;\"),r(p),Q&&r(o,\".vertexAttribDivisorANGLE(\",h,\",\",f,\".divisor);\")}return Object.keys(at).forEach(function(n){var i=at[n],o=a.def(c,\".\",n),s=t.block();s(\"if(\",o,\"){\",l,\".enable(\",i,\")}else{\",l,\".disable(\",i,\")}\",u,\".\",n,\"=\",o,\";\"),r(s),e(\"if(\",o,\"!==\",u,\".\",n,\"){\",s,\"}\")}),Object.keys(it).forEach(function(n){var o,s,h=it[n],f=tt[n],p=t.block();p(l,\".\",h,\"(\"),v(f)?(h=f.length,o=t.global.def(c,\".\",n),s=t.global.def(u,\".\",n),p(i(h,function(t){return o+\"[\"+t+\"]\"}),\");\",i(h,function(t){return s+\"[\"+t+\"]=\"+o+\"[\"+t+\"];\"}).join(\"\")),e(\"if(\",i(h,function(t){return o+\"[\"+t+\"]!==\"+s+\"[\"+t+\"]\"}).join(\"||\"),\"){\",p,\"}\")):(o=a.def(c,\".\",n),s=a.def(u,\".\",n),p(o,\");\",u,\".\",n,\"=\",o,\";\"),e(\"if(\",o,\"!==\",s,\"){\",p,\"}\")),r(p)}),t.compile()}(),compile:function(t,e,r,n,a){var i=b();return i.stats=i.link(a),Object.keys(e.static).forEach(function(t){X(i,e,t)}),_t.forEach(function(e){X(i,t,e)}),r=A(t,e,r,n),function(t,e){var r=t.proc(\"draw\",1);L(t,r),M(t,r,e.context),S(t,r,e.framebuffer),E(t,r,e),C(t,r,e.state),B(t,r,e,!1,!0);var n=e.shader.progVar.append(t,r);if(r(t.shared.gl,\".useProgram(\",n,\".program);\"),e.shader.program)H(t,r,e,e.shader.program);else{var a=t.global.def(\"{}\"),i=r.def(n,\".id\"),o=r.def(a,\"[\",i,\"]\");r(t.cond(o).then(o,\".call(this,a0);\").else(o,\"=\",a,\"[\",i,\"]=\",t.link(function(r){return q(H,t,e,r,1)}),\"(\",n,\");\",o,\".call(this,a0);\"))}0<Object.keys(e.state).length&&r(t.shared.current,\".dirty=true;\")}(i,r),W(i,r),function(t,e){function r(t){return t.contextDep&&a||t.propDep}var n=t.proc(\"batch\",2);t.batchId=\"0\",L(t,n);var a=!1,i=!0;Object.keys(e.context).forEach(function(t){a=a||e.context[t].propDep}),a||(M(t,n,e.context),i=!1);var o=!1;if((s=e.framebuffer)?(s.propDep?a=o=!0:s.contextDep&&a&&(o=!0),o||S(t,n,s)):S(t,n,null),e.state.viewport&&e.state.viewport.propDep&&(a=!0),E(t,n,e),C(t,n,e.state,function(t){return!r(t)}),e.profile&&r(e.profile)||B(t,n,e,!1,\"a1\"),e.contextDep=a,e.needsContext=i,e.needsFramebuffer=o,(i=e.shader.progVar).contextDep&&a||i.propDep)Y(t,n,e,null);else if(i=i.append(t,n),n(t.shared.gl,\".useProgram(\",i,\".program);\"),e.shader.program)Y(t,n,e,e.shader.program);else{var s=t.global.def(\"{}\"),l=(o=n.def(i,\".id\"),n.def(s,\"[\",o,\"]\"));n(t.cond(l).then(l,\".call(this,a0,a1);\").else(l,\"=\",s,\"[\",o,\"]=\",t.link(function(r){return q(Y,t,e,r,2)}),\"(\",i,\");\",l,\".call(this,a0,a1);\"))}0<Object.keys(e.state).length&&n(t.shared.current,\".dirty=true;\")}(i,r),i.compile()}}}function N(t,e){for(var r=0;r<t.length;++r)if(t[r]===e)return r;return-1}var j=function(t,e){for(var r=Object.keys(e),n=0;n<r.length;++n)t[r[n]]=e[r[n]];return t},V=0,U={DynamicVariable:t,define:function(r,n){return new t(r,e(n+\"\"))},isDynamic:function(e){return\"function\"==typeof e&&!e._reglType||e instanceof t},unbox:function(e,r){return\"function\"==typeof e?new t(0,e):e},accessor:e},q={next:\"function\"==typeof requestAnimationFrame?function(t){return requestAnimationFrame(t)}:function(t){return setTimeout(t,16)},cancel:\"function\"==typeof cancelAnimationFrame?function(t){return cancelAnimationFrame(t)}:clearTimeout},H=\"undefined\"!=typeof performance&&performance.now?function(){return performance.now()}:function(){return+new Date},G=s();G.zero=s();var Y=function(t,e){var r=1;e.ext_texture_filter_anisotropic&&(r=t.getParameter(34047));var n=1,a=1;e.webgl_draw_buffers&&(n=t.getParameter(34852),a=t.getParameter(36063));var i=!!e.oes_texture_float;if(i){i=t.createTexture(),t.bindTexture(3553,i),t.texImage2D(3553,0,6408,1,1,0,6408,5126,null);var o=t.createFramebuffer();if(t.bindFramebuffer(36160,o),t.framebufferTexture2D(36160,36064,3553,i,0),t.bindTexture(3553,null),36053!==t.checkFramebufferStatus(36160))i=!1;else{t.viewport(0,0,1,1),t.clearColor(1,0,0,1),t.clear(16384);var s=G.allocType(5126,4);t.readPixels(0,0,1,1,6408,5126,s),t.getError()?i=!1:(t.deleteFramebuffer(o),t.deleteTexture(i),i=1===s[0]),G.freeType(s)}}return s=!0,\"undefined\"!=typeof navigator&&(/MSIE/.test(navigator.userAgent)||/Trident\\//.test(navigator.appVersion)||/Edge/.test(navigator.userAgent))||(s=t.createTexture(),o=G.allocType(5121,36),t.activeTexture(33984),t.bindTexture(34067,s),t.texImage2D(34069,0,6408,3,3,0,6408,5121,o),G.freeType(o),t.bindTexture(34067,null),t.deleteTexture(s),s=!t.getError()),{colorBits:[t.getParameter(3410),t.getParameter(3411),t.getParameter(3412),t.getParameter(3413)],depthBits:t.getParameter(3414),stencilBits:t.getParameter(3415),subpixelBits:t.getParameter(3408),extensions:Object.keys(e).filter(function(t){return!!e[t]}),maxAnisotropic:r,maxDrawbuffers:n,maxColorAttachments:a,pointSizeDims:t.getParameter(33901),lineWidthDims:t.getParameter(33902),maxViewportDims:t.getParameter(3386),maxCombinedTextureUnits:t.getParameter(35661),maxCubeMapSize:t.getParameter(34076),maxRenderbufferSize:t.getParameter(34024),maxTextureUnits:t.getParameter(34930),maxTextureSize:t.getParameter(3379),maxAttributes:t.getParameter(34921),maxVertexUniforms:t.getParameter(36347),maxVertexTextureUnits:t.getParameter(35660),maxVaryingVectors:t.getParameter(36348),maxFragmentUniforms:t.getParameter(36349),glsl:t.getParameter(35724),renderer:t.getParameter(7937),vendor:t.getParameter(7936),version:t.getParameter(7938),readFloat:i,npotTextureCube:s}},W=function(t){return t instanceof Uint8Array||t instanceof Uint16Array||t instanceof Uint32Array||t instanceof Int8Array||t instanceof Int16Array||t instanceof Int32Array||t instanceof Float32Array||t instanceof Float64Array||t instanceof Uint8ClampedArray},X=function(t){return Object.keys(t).map(function(e){return t[e]})},Z={shape:function(t){for(var e=[];t.length;t=t[0])e.push(t.length);return e},flatten:function(t,e,r,n){var a=1;if(e.length)for(var i=0;i<e.length;++i)a*=e[i];else a=0;switch(r=n||G.allocType(r,a),e.length){case 0:break;case 1:for(n=e[0],e=0;e<n;++e)r[e]=t[e];break;case 2:for(n=e[0],e=e[1],i=a=0;i<n;++i)for(var o=t[i],s=0;s<e;++s)r[a++]=o[s];break;case 3:c(t,e[0],e[1],e[2],r,0);break;default:!function t(e,r,n,a,i){for(var o=1,s=n+1;s<r.length;++s)o*=r[s];var l=r[n];if(4==r.length-n){var u=r[n+1],h=r[n+2];for(r=r[n+3],s=0;s<l;++s)c(e[s],u,h,r,a,i),i+=o}else for(s=0;s<l;++s)t(e[s],r,n+1,a,i),i+=o}(t,e,0,r,0)}return r}},J={\"[object Int8Array]\":5120,\"[object Int16Array]\":5122,\"[object Int32Array]\":5124,\"[object Uint8Array]\":5121,\"[object Uint8ClampedArray]\":5121,\"[object Uint16Array]\":5123,\"[object Uint32Array]\":5125,\"[object Float32Array]\":5126,\"[object Float64Array]\":5121,\"[object ArrayBuffer]\":5121},K={int8:5120,int16:5122,int32:5124,uint8:5121,uint16:5123,uint32:5125,float:5126,float32:5126},Q={dynamic:35048,stream:35040,static:35044},$=Z.flatten,tt=Z.shape,et=[];et[5120]=1,et[5122]=2,et[5124]=4,et[5121]=1,et[5123]=2,et[5125]=4,et[5126]=4;var rt={points:0,point:0,lines:1,line:1,triangles:4,triangle:4,\"line loop\":2,\"line strip\":3,\"triangle strip\":5,\"triangle fan\":6},nt=new Float32Array(1),at=new Uint32Array(nt.buffer),it=[9984,9986,9985,9987],ot=[0,6409,6410,6407,6408],st={};st[6409]=st[6406]=st[6402]=1,st[34041]=st[6410]=2,st[6407]=st[35904]=3,st[6408]=st[35906]=4;var lt=m(\"HTMLCanvasElement\"),ct=m(\"CanvasRenderingContext2D\"),ut=m(\"ImageBitmap\"),ht=m(\"HTMLImageElement\"),ft=m(\"HTMLVideoElement\"),pt=Object.keys(J).concat([lt,ct,ut,ht,ft]),dt=[];dt[5121]=1,dt[5126]=4,dt[36193]=2,dt[5123]=2,dt[5125]=4;var gt=[];gt[32854]=2,gt[32855]=2,gt[36194]=2,gt[34041]=4,gt[33776]=.5,gt[33777]=.5,gt[33778]=1,gt[33779]=1,gt[35986]=.5,gt[35987]=1,gt[34798]=1,gt[35840]=.5,gt[35841]=.25,gt[35842]=.5,gt[35843]=.25,gt[36196]=.5;var vt=[];vt[32854]=2,vt[32855]=2,vt[36194]=2,vt[33189]=2,vt[36168]=1,vt[34041]=4,vt[35907]=4,vt[34836]=16,vt[34842]=8,vt[34843]=6;var mt=function(t,e,r,n,a){function i(t){this.id=c++,this.refCount=1,this.renderbuffer=t,this.format=32854,this.height=this.width=0,a.profile&&(this.stats={size:0})}function o(e){var r=e.renderbuffer;t.bindRenderbuffer(36161,null),t.deleteRenderbuffer(r),e.renderbuffer=null,e.refCount=0,delete u[e.id],n.renderbufferCount--}var s={rgba4:32854,rgb565:36194,\"rgb5 a1\":32855,depth:33189,stencil:36168,\"depth stencil\":34041};e.ext_srgb&&(s.srgba=35907),e.ext_color_buffer_half_float&&(s.rgba16f=34842,s.rgb16f=34843),e.webgl_color_buffer_float&&(s.rgba32f=34836);var l=[];Object.keys(s).forEach(function(t){l[s[t]]=t});var c=0,u={};return i.prototype.decRef=function(){0>=--this.refCount&&o(this)},a.profile&&(n.getTotalRenderbufferSize=function(){var t=0;return Object.keys(u).forEach(function(e){t+=u[e].stats.size}),t}),{create:function(e,r){function o(e,r){var n=0,i=0,u=32854;if(\"object\"==typeof e&&e?(\"shape\"in e?(n=0|(i=e.shape)[0],i=0|i[1]):(\"radius\"in e&&(n=i=0|e.radius),\"width\"in e&&(n=0|e.width),\"height\"in e&&(i=0|e.height)),\"format\"in e&&(u=s[e.format])):\"number\"==typeof e?(n=0|e,i=\"number\"==typeof r?0|r:n):e||(n=i=1),n!==c.width||i!==c.height||u!==c.format)return o.width=c.width=n,o.height=c.height=i,c.format=u,t.bindRenderbuffer(36161,c.renderbuffer),t.renderbufferStorage(36161,u,n,i),a.profile&&(c.stats.size=vt[c.format]*c.width*c.height),o.format=l[c.format],o}var c=new i(t.createRenderbuffer());return u[c.id]=c,n.renderbufferCount++,o(e,r),o.resize=function(e,r){var n=0|e,i=0|r||n;return n===c.width&&i===c.height?o:(o.width=c.width=n,o.height=c.height=i,t.bindRenderbuffer(36161,c.renderbuffer),t.renderbufferStorage(36161,c.format,n,i),a.profile&&(c.stats.size=vt[c.format]*c.width*c.height),o)},o._reglType=\"renderbuffer\",o._renderbuffer=c,a.profile&&(o.stats=c.stats),o.destroy=function(){c.decRef()},o},clear:function(){X(u).forEach(o)},restore:function(){X(u).forEach(function(e){e.renderbuffer=t.createRenderbuffer(),t.bindRenderbuffer(36161,e.renderbuffer),t.renderbufferStorage(36161,e.format,e.width,e.height)}),t.bindRenderbuffer(36161,null)}}},yt=[];yt[6408]=4,yt[6407]=3;var xt=[];xt[5121]=1,xt[5126]=4,xt[36193]=2;var bt=[\"x\",\"y\",\"z\",\"w\"],_t=\"blend.func blend.equation stencil.func stencil.opFront stencil.opBack sample.coverage viewport scissor.box polygonOffset.offset\".split(\" \"),wt={0:0,1:1,zero:0,one:1,\"src color\":768,\"one minus src color\":769,\"src alpha\":770,\"one minus src alpha\":771,\"dst color\":774,\"one minus dst color\":775,\"dst alpha\":772,\"one minus dst alpha\":773,\"constant color\":32769,\"one minus constant color\":32770,\"constant alpha\":32771,\"one minus constant alpha\":32772,\"src alpha saturate\":776},kt={never:512,less:513,\"<\":513,equal:514,\"=\":514,\"==\":514,\"===\":514,lequal:515,\"<=\":515,greater:516,\">\":516,notequal:517,\"!=\":517,\"!==\":517,gequal:518,\">=\":518,always:519},Tt={0:0,zero:0,keep:7680,replace:7681,increment:7682,decrement:7683,\"increment wrap\":34055,\"decrement wrap\":34056,invert:5386},At={cw:2304,ccw:2305},Mt=new z(!1,!1,!1,function(){});return function(t){function e(){if(0===Z.length)w&&w.update(),$=null;else{$=q.next(e),h();for(var t=Z.length-1;0<=t;--t){var r=Z[t];r&&r(P,null,0)}v.flush(),w&&w.update()}}function r(){!$&&0<Z.length&&($=q.next(e))}function n(){$&&(q.cancel(e),$=null)}function i(t){t.preventDefault(),n(),J.forEach(function(t){t()})}function o(t){v.getError(),y.restore(),D.restore(),I.restore(),R.restore(),F.restore(),V.restore(),w&&w.restore(),G.procs.refresh(),r(),K.forEach(function(t){t()})}function s(t){function e(t){var e={},r={};return Object.keys(t).forEach(function(n){var a=t[n];U.isDynamic(a)?r[n]=U.unbox(a,n):e[n]=a}),{dynamic:r,static:e}}var r=e(t.context||{}),n=e(t.uniforms||{}),a=e(t.attributes||{}),i=e(function(t){function e(t){if(t in r){var e=r[t];delete r[t],Object.keys(e).forEach(function(n){r[t+\".\"+n]=e[n]})}}var r=j({},t);return delete r.uniforms,delete r.attributes,delete r.context,\"stencil\"in r&&r.stencil.op&&(r.stencil.opBack=r.stencil.opFront=r.stencil.op,delete r.stencil.op),e(\"blend\"),e(\"depth\"),e(\"cull\"),e(\"stencil\"),e(\"polygonOffset\"),e(\"scissor\"),e(\"sample\"),r}(t));t={gpuTime:0,cpuTime:0,count:0};var o=(r=G.compile(i,a,n,r,t)).draw,s=r.batch,l=r.scope,c=[];return j(function(t,e){var r;if(\"function\"==typeof t)return l.call(this,null,t,0);if(\"function\"==typeof e)if(\"number\"==typeof t)for(r=0;r<t;++r)l.call(this,null,e,r);else{if(!Array.isArray(t))return l.call(this,t,e,0);for(r=0;r<t.length;++r)l.call(this,t[r],e,r)}else if(\"number\"==typeof t){if(0<t)return s.call(this,function(t){for(;c.length<t;)c.push(null);return c}(0|t),0|t)}else{if(!Array.isArray(t))return o.call(this,t);if(t.length)return s.call(this,t,t.length)}},{stats:t})}function l(t,e){var r=0;G.procs.poll();var n=e.color;n&&(v.clearColor(+n[0]||0,+n[1]||0,+n[2]||0,+n[3]||0),r|=16384),\"depth\"in e&&(v.clearDepth(+e.depth),r|=256),\"stencil\"in e&&(v.clearStencil(0|e.stencil),r|=1024),v.clear(r)}function c(t){return Z.push(t),r(),{cancel:function(){var e=N(Z,t);Z[e]=function t(){var e=N(Z,t);Z[e]=Z[Z.length-1],--Z.length,0>=Z.length&&n()}}}}function u(){var t=W.viewport,e=W.scissor_box;t[0]=t[1]=e[0]=e[1]=0,P.viewportWidth=P.framebufferWidth=P.drawingBufferWidth=t[2]=e[2]=v.drawingBufferWidth,P.viewportHeight=P.framebufferHeight=P.drawingBufferHeight=t[3]=e[3]=v.drawingBufferHeight}function h(){P.tick+=1,P.time=g(),u(),G.procs.poll()}function f(){u(),G.procs.refresh(),w&&w.update()}function g(){return(H()-k)/1e3}if(!(t=a(t)))return null;var v=t.gl,m=v.getContextAttributes();v.isContextLost();var y=function(t,e){function r(e){var r;e=e.toLowerCase();try{r=n[e]=t.getExtension(e)}catch(t){}return!!r}for(var n={},a=0;a<e.extensions.length;++a){var i=e.extensions[a];if(!r(i))return e.onDestroy(),e.onDone('\"'+i+'\" extension is not supported by the current WebGL context, try upgrading your system or a different browser'),null}return e.optionalExtensions.forEach(r),{extensions:n,restore:function(){Object.keys(n).forEach(function(t){if(n[t]&&!r(t))throw Error(\"(regl): error restoring extension \"+t)})}}}(v,t);if(!y)return null;var x=function(){var t={\"\":0},e=[\"\"];return{id:function(r){var n=t[r];return n||(n=t[r]=e.length,e.push(r),n)},str:function(t){return e[t]}}}(),b={bufferCount:0,elementsCount:0,framebufferCount:0,shaderCount:0,textureCount:0,cubeCount:0,renderbufferCount:0,maxTextureUnits:0},_=y.extensions,w=function(t,e){function r(){this.endQueryIndex=this.startQueryIndex=-1,this.sum=0,this.stats=null}function n(t,e,n){var a=o.pop()||new r;a.startQueryIndex=t,a.endQueryIndex=e,a.sum=0,a.stats=n,s.push(a)}if(!e.ext_disjoint_timer_query)return null;var a=[],i=[],o=[],s=[],l=[],c=[];return{beginQuery:function(t){var r=a.pop()||e.ext_disjoint_timer_query.createQueryEXT();e.ext_disjoint_timer_query.beginQueryEXT(35007,r),i.push(r),n(i.length-1,i.length,t)},endQuery:function(){e.ext_disjoint_timer_query.endQueryEXT(35007)},pushScopeStats:n,update:function(){var t,r;if(0!==(t=i.length)){c.length=Math.max(c.length,t+1),l.length=Math.max(l.length,t+1),l[0]=0;var n=c[0]=0;for(r=t=0;r<i.length;++r){var u=i[r];e.ext_disjoint_timer_query.getQueryObjectEXT(u,34919)?(n+=e.ext_disjoint_timer_query.getQueryObjectEXT(u,34918),a.push(u)):i[t++]=u,l[r+1]=n,c[r+1]=t}for(i.length=t,r=t=0;r<s.length;++r){var h=(n=s[r]).startQueryIndex;u=n.endQueryIndex,n.sum+=l[u]-l[h],h=c[h],(u=c[u])===h?(n.stats.gpuTime+=n.sum/1e6,o.push(n)):(n.startQueryIndex=h,n.endQueryIndex=u,s[t++]=n)}s.length=t}},getNumPendingQueries:function(){return i.length},clear:function(){a.push.apply(a,i);for(var t=0;t<a.length;t++)e.ext_disjoint_timer_query.deleteQueryEXT(a[t]);i.length=0,a.length=0},restore:function(){i.length=0,a.length=0}}}(0,_),k=H(),C=v.drawingBufferWidth,L=v.drawingBufferHeight,P={tick:0,time:0,viewportWidth:C,viewportHeight:L,framebufferWidth:C,framebufferHeight:L,drawingBufferWidth:C,drawingBufferHeight:L,pixelRatio:t.pixelRatio},O=Y(v,_),I=(C=function(t,e,r,n){for(t=r.maxAttributes,e=Array(t),r=0;r<t;++r)e[r]=new M;return{Record:M,scope:{},state:e}}(v,_,O),p(v,b,t,C)),z=d(v,_,I,b),D=S(v,x,b,t),R=T(v,_,O,function(){G.procs.poll()},P,b,t),F=mt(v,_,0,b,t),V=A(v,_,O,R,F,b),G=B(v,x,_,O,I,z,0,V,{},C,D,{elements:null,primitive:4,count:-1,offset:0,instances:-1},P,w,t),W=(x=E(v,V,G.procs.poll,P),G.next),X=v.canvas,Z=[],J=[],K=[],Q=[t.onDestroy],$=null;X&&(X.addEventListener(\"webglcontextlost\",i,!1),X.addEventListener(\"webglcontextrestored\",o,!1));var tt=V.setFBO=s({framebuffer:U.define.call(null,1,\"framebuffer\")});return f(),m=j(s,{clear:function(t){if(\"framebuffer\"in t)if(t.framebuffer&&\"framebufferCube\"===t.framebuffer_reglType)for(var e=0;6>e;++e)tt(j({framebuffer:t.framebuffer.faces[e]},t),l);else tt(t,l);else l(0,t)},prop:U.define.bind(null,1),context:U.define.bind(null,2),this:U.define.bind(null,3),draw:s({}),buffer:function(t){return I.create(t,34962,!1,!1)},elements:function(t){return z.create(t,!1)},texture:R.create2D,cube:R.createCube,renderbuffer:F.create,framebuffer:V.create,framebufferCube:V.createCube,attributes:m,frame:c,on:function(t,e){var r;switch(t){case\"frame\":return c(e);case\"lost\":r=J;break;case\"restore\":r=K;break;case\"destroy\":r=Q}return r.push(e),{cancel:function(){for(var t=0;t<r.length;++t)if(r[t]===e){r[t]=r[r.length-1],r.pop();break}}}},limits:O,hasExtension:function(t){return 0<=O.extensions.indexOf(t.toLowerCase())},read:x,destroy:function(){Z.length=0,n(),X&&(X.removeEventListener(\"webglcontextlost\",i),X.removeEventListener(\"webglcontextrestored\",o)),D.clear(),V.clear(),F.clear(),R.clear(),z.clear(),I.clear(),w&&w.clear(),Q.forEach(function(t){t()})},_gl:v,_refresh:f,poll:function(){h(),w&&w.update()},now:g,stats:b}),t.onDone(null,m),m}},\"object\"==typeof r&&\"undefined\"!=typeof e?e.exports=a():n.createREGL=a()},{}],504:[function(t,e,r){\"use strict\";var n,a=\"\";e.exports=function(t,e){if(\"string\"!=typeof t)throw new TypeError(\"expected a string\");if(1===e)return t;if(2===e)return t+t;var r=t.length*e;if(n!==t||\"undefined\"==typeof n)n=t,a=\"\";else if(a.length>=r)return a.substr(0,r);for(;r>a.length&&e>1;)1&e&&(a+=t),e>>=1,t+=t;return a=(a+=t).substr(0,r)}},{}],505:[function(t,e,r){(function(t){e.exports=t.performance&&t.performance.now?function(){return performance.now()}:Date.now||function(){return+new Date}}).call(this,\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{}],506:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=t.length,r=t[t.length-1],n=e,a=e-2;a>=0;--a){var i=r,o=t[a],s=(r=i+o)-i,l=o-s;l&&(t[--n]=r,r=l)}for(var c=0,a=n;a<e;++a){var i=t[a],o=r,s=(r=i+o)-i,l=o-s;l&&(t[c++]=l)}return t[c++]=r,t.length=c,t}},{}],507:[function(t,e,r){\"use strict\";var n=t(\"two-product\"),a=t(\"robust-sum\"),i=t(\"robust-scale\"),o=t(\"robust-compress\"),s=6;function l(t,e){for(var r=new Array(t.length-1),n=1;n<t.length;++n)for(var a=r[n-1]=new Array(t.length-1),i=0,o=0;i<t.length;++i)i!==e&&(a[o++]=t[n][i]);return r}function c(t){if(2===t.length)return[\"sum(prod(\",t[0][0],\",\",t[1][1],\"),prod(-\",t[0][1],\",\",t[1][0],\"))\"].join(\"\");for(var e=[],r=0;r<t.length;++r)e.push([\"scale(\",c(l(t,r)),\",\",(n=r,1&n?\"-\":\"\"),t[0][r],\")\"].join(\"\"));return function t(e){if(1===e.length)return e[0];if(2===e.length)return[\"sum(\",e[0],\",\",e[1],\")\"].join(\"\");var r=e.length>>1;return[\"sum(\",t(e.slice(0,r)),\",\",t(e.slice(r)),\")\"].join(\"\")}(e);var n}function u(t){return new Function(\"sum\",\"scale\",\"prod\",\"compress\",[\"function robustDeterminant\",t,\"(m){return compress(\",c(function(t){for(var e=new Array(t),r=0;r<t;++r){e[r]=new Array(t);for(var n=0;n<t;++n)e[r][n]=[\"m[\",r,\"][\",n,\"]\"].join(\"\")}return e}(t)),\")};return robustDeterminant\",t].join(\"\"))(a,i,n,o)}var h=[function(){return[0]},function(t){return[t[0][0]]}];!function(){for(;h.length<s;)h.push(u(h.length));for(var t=[],r=[\"function robustDeterminant(m){switch(m.length){\"],n=0;n<s;++n)t.push(\"det\"+n),r.push(\"case \",n,\":return det\",n,\"(m);\");r.push(\"}var det=CACHE[m.length];if(!det)det=CACHE[m.length]=gen(m.length);return det(m);}return robustDeterminant\"),t.push(\"CACHE\",\"gen\",r.join(\"\"));var a=Function.apply(void 0,t);for(e.exports=a.apply(void 0,h.concat([h,u])),n=0;n<h.length;++n)e.exports[n]=h[n]}()},{\"robust-compress\":506,\"robust-scale\":513,\"robust-sum\":516,\"two-product\":544}],508:[function(t,e,r){\"use strict\";var n=t(\"two-product\"),a=t(\"robust-sum\");e.exports=function(t,e){for(var r=n(t[0],e[0]),i=1;i<t.length;++i)r=a(r,n(t[i],e[i]));return r}},{\"robust-sum\":516,\"two-product\":544}],509:[function(t,e,r){\"use strict\";var n=t(\"two-product\"),a=t(\"robust-sum\"),i=t(\"robust-subtract\"),o=t(\"robust-scale\"),s=6;function l(t,e){for(var r=new Array(t.length-1),n=1;n<t.length;++n)for(var a=r[n-1]=new Array(t.length-1),i=0,o=0;i<t.length;++i)i!==e&&(a[o++]=t[n][i]);return r}function c(t){if(1===t.length)return t[0];if(2===t.length)return[\"sum(\",t[0],\",\",t[1],\")\"].join(\"\");var e=t.length>>1;return[\"sum(\",c(t.slice(0,e)),\",\",c(t.slice(e)),\")\"].join(\"\")}function u(t,e){if(\"m\"===t.charAt(0)){if(\"w\"===e.charAt(0)){var r=t.split(\"[\");return[\"w\",e.substr(1),\"m\",r[0].substr(1)].join(\"\")}return[\"prod(\",t,\",\",e,\")\"].join(\"\")}return u(e,t)}function h(t){if(2===t.length)return[[\"diff(\",u(t[0][0],t[1][1]),\",\",u(t[1][0],t[0][1]),\")\"].join(\"\")];for(var e=[],r=0;r<t.length;++r)e.push([\"scale(\",c(h(l(t,r))),\",\",(n=r,!0&n?\"-\":\"\"),t[0][r],\")\"].join(\"\"));return e;var n}function f(t,e){for(var r=[],n=0;n<e-2;++n)r.push([\"prod(m\",t,\"[\",n,\"],m\",t,\"[\",n,\"])\"].join(\"\"));return c(r)}function p(t){for(var e=[],r=[],s=function(t){for(var e=new Array(t),r=0;r<t;++r){e[r]=new Array(t);for(var n=0;n<t;++n)e[r][n]=[\"m\",n,\"[\",t-r-2,\"]\"].join(\"\")}return e}(t),u=0;u<t;++u)s[0][u]=\"1\",s[t-1][u]=\"w\"+u;for(u=0;u<t;++u)0==(1&u)?e.push.apply(e,h(l(s,u))):r.push.apply(r,h(l(s,u)));var p=c(e),d=c(r),g=\"exactInSphere\"+t,v=[];for(u=0;u<t;++u)v.push(\"m\"+u);var m=[\"function \",g,\"(\",v.join(),\"){\"];for(u=0;u<t;++u){m.push(\"var w\",u,\"=\",f(u,t),\";\");for(var y=0;y<t;++y)y!==u&&m.push(\"var w\",u,\"m\",y,\"=scale(w\",u,\",m\",y,\"[0]);\")}return m.push(\"var p=\",p,\",n=\",d,\",d=diff(p,n);return d[d.length-1];}return \",g),new Function(\"sum\",\"diff\",\"prod\",\"scale\",m.join(\"\"))(a,i,n,o)}var d=[function(){return 0},function(){return 0},function(){return 0}];!function(){for(;d.length<=s;)d.push(p(d.length));for(var t=[],r=[\"slow\"],n=0;n<=s;++n)t.push(\"a\"+n),r.push(\"o\"+n);var a=[\"function testInSphere(\",t.join(),\"){switch(arguments.length){case 0:case 1:return 0;\"];for(n=2;n<=s;++n)a.push(\"case \",n,\":return o\",n,\"(\",t.slice(0,n).join(),\");\");a.push(\"}var s=new Array(arguments.length);for(var i=0;i<arguments.length;++i){s[i]=arguments[i]};return slow(s);}return testInSphere\"),r.push(a.join(\"\"));var i=Function.apply(void 0,r);for(e.exports=i.apply(void 0,[function(t){var e=d[t.length];return e||(e=d[t.length]=p(t.length)),e.apply(void 0,t)}].concat(d)),n=0;n<=s;++n)e.exports[n]=d[n]}()},{\"robust-scale\":513,\"robust-subtract\":515,\"robust-sum\":516,\"two-product\":544}],510:[function(t,e,r){\"use strict\";var n=t(\"robust-determinant\"),a=6;function i(t){for(var e=\"robustLinearSolve\"+t+\"d\",r=[\"function \",e,\"(A,b){return [\"],a=0;a<t;++a){r.push(\"det([\");for(var i=0;i<t;++i){i>0&&r.push(\",\"),r.push(\"[\");for(var o=0;o<t;++o)o>0&&r.push(\",\"),o===a?r.push(\"+b[\",i,\"]\"):r.push(\"+A[\",i,\"][\",o,\"]\");r.push(\"]\")}r.push(\"]),\")}r.push(\"det(A)]}return \",e);var s=new Function(\"det\",r.join(\"\"));return s(t<6?n[t]:n)}var o=[function(){return[0]},function(t,e){return[[e[0]],[t[0][0]]]}];!function(){for(;o.length<a;)o.push(i(o.length));for(var t=[],r=[\"function dispatchLinearSolve(A,b){switch(A.length){\"],n=0;n<a;++n)t.push(\"s\"+n),r.push(\"case \",n,\":return s\",n,\"(A,b);\");r.push(\"}var s=CACHE[A.length];if(!s)s=CACHE[A.length]=g(A.length);return s(A,b)}return dispatchLinearSolve\"),t.push(\"CACHE\",\"g\",r.join(\"\"));var s=Function.apply(void 0,t);for(e.exports=s.apply(void 0,o.concat([o,i])),n=0;n<a;++n)e.exports[n]=o[n]}()},{\"robust-determinant\":507}],511:[function(t,e,r){\"use strict\";var n=t(\"two-product\"),a=t(\"robust-sum\"),i=t(\"robust-scale\"),o=t(\"robust-subtract\"),s=5;function l(t,e){for(var r=new Array(t.length-1),n=1;n<t.length;++n)for(var a=r[n-1]=new Array(t.length-1),i=0,o=0;i<t.length;++i)i!==e&&(a[o++]=t[n][i]);return r}function c(t){if(1===t.length)return t[0];if(2===t.length)return[\"sum(\",t[0],\",\",t[1],\")\"].join(\"\");var e=t.length>>1;return[\"sum(\",c(t.slice(0,e)),\",\",c(t.slice(e)),\")\"].join(\"\")}function u(t){if(2===t.length)return[[\"sum(prod(\",t[0][0],\",\",t[1][1],\"),prod(-\",t[0][1],\",\",t[1][0],\"))\"].join(\"\")];for(var e=[],r=0;r<t.length;++r)e.push([\"scale(\",c(u(l(t,r))),\",\",(n=r,1&n?\"-\":\"\"),t[0][r],\")\"].join(\"\"));return e;var n}function h(t){for(var e=[],r=[],s=function(t){for(var e=new Array(t),r=0;r<t;++r){e[r]=new Array(t);for(var n=0;n<t;++n)e[r][n]=[\"m\",n,\"[\",t-r-1,\"]\"].join(\"\")}return e}(t),h=[],f=0;f<t;++f)0==(1&f)?e.push.apply(e,u(l(s,f))):r.push.apply(r,u(l(s,f))),h.push(\"m\"+f);var p=c(e),d=c(r),g=\"orientation\"+t+\"Exact\",v=[\"function \",g,\"(\",h.join(),\"){var p=\",p,\",n=\",d,\",d=sub(p,n);return d[d.length-1];};return \",g].join(\"\");return new Function(\"sum\",\"prod\",\"scale\",\"sub\",v)(a,n,i,o)}var f=h(3),p=h(4),d=[function(){return 0},function(){return 0},function(t,e){return e[0]-t[0]},function(t,e,r){var n,a=(t[1]-r[1])*(e[0]-r[0]),i=(t[0]-r[0])*(e[1]-r[1]),o=a-i;if(a>0){if(i<=0)return o;n=a+i}else{if(!(a<0))return o;if(i>=0)return o;n=-(a+i)}var s=3.3306690738754716e-16*n;return o>=s||o<=-s?o:f(t,e,r)},function(t,e,r,n){var a=t[0]-n[0],i=e[0]-n[0],o=r[0]-n[0],s=t[1]-n[1],l=e[1]-n[1],c=r[1]-n[1],u=t[2]-n[2],h=e[2]-n[2],f=r[2]-n[2],d=i*c,g=o*l,v=o*s,m=a*c,y=a*l,x=i*s,b=u*(d-g)+h*(v-m)+f*(y-x),_=7.771561172376103e-16*((Math.abs(d)+Math.abs(g))*Math.abs(u)+(Math.abs(v)+Math.abs(m))*Math.abs(h)+(Math.abs(y)+Math.abs(x))*Math.abs(f));return b>_||-b>_?b:p(t,e,r,n)}];!function(){for(;d.length<=s;)d.push(h(d.length));for(var t=[],r=[\"slow\"],n=0;n<=s;++n)t.push(\"a\"+n),r.push(\"o\"+n);var a=[\"function getOrientation(\",t.join(),\"){switch(arguments.length){case 0:case 1:return 0;\"];for(n=2;n<=s;++n)a.push(\"case \",n,\":return o\",n,\"(\",t.slice(0,n).join(),\");\");a.push(\"}var s=new Array(arguments.length);for(var i=0;i<arguments.length;++i){s[i]=arguments[i]};return slow(s);}return getOrientation\"),r.push(a.join(\"\"));var i=Function.apply(void 0,r);for(e.exports=i.apply(void 0,[function(t){var e=d[t.length];return e||(e=d[t.length]=h(t.length)),e.apply(void 0,t)}].concat(d)),n=0;n<=s;++n)e.exports[n]=d[n]}()},{\"robust-scale\":513,\"robust-subtract\":515,\"robust-sum\":516,\"two-product\":544}],512:[function(t,e,r){\"use strict\";var n=t(\"robust-sum\"),a=t(\"robust-scale\");e.exports=function(t,e){if(1===t.length)return a(e,t[0]);if(1===e.length)return a(t,e[0]);if(0===t.length||0===e.length)return[0];var r=[0];if(t.length<e.length)for(var i=0;i<t.length;++i)r=n(r,a(e,t[i]));else for(var i=0;i<e.length;++i)r=n(r,a(t,e[i]));return r}},{\"robust-scale\":513,\"robust-sum\":516}],513:[function(t,e,r){\"use strict\";var n=t(\"two-product\"),a=t(\"two-sum\");e.exports=function(t,e){var r=t.length;if(1===r){var i=n(t[0],e);return i[0]?i:[i[1]]}var o=new Array(2*r),s=[.1,.1],l=[.1,.1],c=0;n(t[0],e,s),s[0]&&(o[c++]=s[0]);for(var u=1;u<r;++u){n(t[u],e,l);var h=s[1];a(h,l[0],s),s[0]&&(o[c++]=s[0]);var f=l[1],p=s[1],d=f+p,g=d-f,v=p-g;s[1]=d,v&&(o[c++]=v)}s[1]&&(o[c++]=s[1]);0===c&&(o[c++]=0);return o.length=c,o}},{\"two-product\":544,\"two-sum\":545}],514:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,a){var i=n(t,r,a),o=n(e,r,a);if(i>0&&o>0||i<0&&o<0)return!1;var s=n(r,t,e),l=n(a,t,e);if(s>0&&l>0||s<0&&l<0)return!1;if(0===i&&0===o&&0===s&&0===l)return function(t,e,r,n){for(var a=0;a<2;++a){var i=t[a],o=e[a],s=Math.min(i,o),l=Math.max(i,o),c=r[a],u=n[a],h=Math.min(c,u),f=Math.max(c,u);if(f<s||l<h)return!1}return!0}(t,e,r,a);return!0};var n=t(\"robust-orientation\")[3]},{\"robust-orientation\":511}],515:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=0|t.length,n=0|e.length;if(1===r&&1===n)return function(t,e){var r=t+e,n=r-t,a=t-(r-n)+(e-n);if(a)return[a,r];return[r]}(t[0],-e[0]);var a,i,o=new Array(r+n),s=0,l=0,c=0,u=Math.abs,h=t[l],f=u(h),p=-e[c],d=u(p);f<d?(i=h,(l+=1)<r&&(h=t[l],f=u(h))):(i=p,(c+=1)<n&&(p=-e[c],d=u(p)));l<r&&f<d||c>=n?(a=h,(l+=1)<r&&(h=t[l],f=u(h))):(a=p,(c+=1)<n&&(p=-e[c],d=u(p)));var g,v,m=a+i,y=m-a,x=i-y,b=x,_=m;for(;l<r&&c<n;)f<d?(a=h,(l+=1)<r&&(h=t[l],f=u(h))):(a=p,(c+=1)<n&&(p=-e[c],d=u(p))),(x=(i=b)-(y=(m=a+i)-a))&&(o[s++]=x),b=_-((g=_+m)-(v=g-_))+(m-v),_=g;for(;l<r;)(x=(i=b)-(y=(m=(a=h)+i)-a))&&(o[s++]=x),b=_-((g=_+m)-(v=g-_))+(m-v),_=g,(l+=1)<r&&(h=t[l]);for(;c<n;)(x=(i=b)-(y=(m=(a=p)+i)-a))&&(o[s++]=x),b=_-((g=_+m)-(v=g-_))+(m-v),_=g,(c+=1)<n&&(p=-e[c]);b&&(o[s++]=b);_&&(o[s++]=_);s||(o[s++]=0);return o.length=s,o}},{}],516:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=0|t.length,n=0|e.length;if(1===r&&1===n)return function(t,e){var r=t+e,n=r-t,a=t-(r-n)+(e-n);if(a)return[a,r];return[r]}(t[0],e[0]);var a,i,o=new Array(r+n),s=0,l=0,c=0,u=Math.abs,h=t[l],f=u(h),p=e[c],d=u(p);f<d?(i=h,(l+=1)<r&&(h=t[l],f=u(h))):(i=p,(c+=1)<n&&(p=e[c],d=u(p)));l<r&&f<d||c>=n?(a=h,(l+=1)<r&&(h=t[l],f=u(h))):(a=p,(c+=1)<n&&(p=e[c],d=u(p)));var g,v,m=a+i,y=m-a,x=i-y,b=x,_=m;for(;l<r&&c<n;)f<d?(a=h,(l+=1)<r&&(h=t[l],f=u(h))):(a=p,(c+=1)<n&&(p=e[c],d=u(p))),(x=(i=b)-(y=(m=a+i)-a))&&(o[s++]=x),b=_-((g=_+m)-(v=g-_))+(m-v),_=g;for(;l<r;)(x=(i=b)-(y=(m=(a=h)+i)-a))&&(o[s++]=x),b=_-((g=_+m)-(v=g-_))+(m-v),_=g,(l+=1)<r&&(h=t[l]);for(;c<n;)(x=(i=b)-(y=(m=(a=p)+i)-a))&&(o[s++]=x),b=_-((g=_+m)-(v=g-_))+(m-v),_=g,(c+=1)<n&&(p=e[c]);b&&(o[s++]=b);_&&(o[s++]=_);s||(o[s++]=0);return o.length=s,o}},{}],517:[function(t,e,r){\"use strict\";e.exports=function(t){return t<0?-1:t>0?1:0}},{}],518:[function(t,e,r){\"use strict\";e.exports=function(t){return a(n(t))};var n=t(\"boundary-cells\"),a=t(\"reduce-simplicial-complex\")},{\"boundary-cells\":96,\"reduce-simplicial-complex\":490}],519:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,s){r=r||0,\"undefined\"==typeof s&&(s=function(t){for(var e=t.length,r=0,n=0;n<e;++n)r=0|Math.max(r,t[n].length);return r-1}(t));if(0===t.length||s<1)return{cells:[],vertexIds:[],vertexWeights:[]};var l=function(t,e){for(var r=t.length,n=a.mallocUint8(r),i=0;i<r;++i)n[i]=t[i]<e|0;return n}(e,+r),c=function(t,e){for(var r=t.length,o=e*(e+1)/2*r|0,s=a.mallocUint32(2*o),l=0,c=0;c<r;++c)for(var u=t[c],e=u.length,h=0;h<e;++h)for(var f=0;f<h;++f){var p=u[f],d=u[h];s[l++]=0|Math.min(p,d),s[l++]=0|Math.max(p,d)}i(n(s,[l/2|0,2]));for(var g=2,c=2;c<l;c+=2)s[c-2]===s[c]&&s[c-1]===s[c+1]||(s[g++]=s[c],s[g++]=s[c+1]);return n(s,[g/2|0,2])}(t,s),u=function(t,e,r,i){for(var o=t.data,s=t.shape[0],l=a.mallocDouble(s),c=0,u=0;u<s;++u){var h=o[2*u],f=o[2*u+1];if(r[h]!==r[f]){var p=e[h],d=e[f];o[2*c]=h,o[2*c+1]=f,l[c++]=(d-i)/(d-p)}}return t.shape[0]=c,n(l,[c])}(c,e,l,+r),h=function(t,e){var r=a.mallocInt32(2*e),n=t.shape[0],i=t.data;r[0]=0;for(var o=0,s=0;s<n;++s){var l=i[2*s];if(l!==o){for(r[2*o+1]=s;++o<l;)r[2*o]=s,r[2*o+1]=s;r[2*o]=s}}r[2*o+1]=n;for(;++o<e;)r[2*o]=r[2*o+1]=n;return r}(c,0|e.length),f=o(s)(t,c.data,h,l),p=function(t){for(var e=0|t.shape[0],r=t.data,n=new Array(e),a=0;a<e;++a)n[a]=[r[2*a],r[2*a+1]];return n}(c),d=[].slice.call(u.data,0,u.shape[0]);return a.free(l),a.free(c.data),a.free(u.data),a.free(h),{cells:f,vertexIds:p,vertexWeights:d}};var n=t(\"ndarray\"),a=t(\"typedarray-pool\"),i=t(\"ndarray-sort\"),o=t(\"./lib/codegen\")},{\"./lib/codegen\":520,ndarray:451,\"ndarray-sort\":449,\"typedarray-pool\":546}],520:[function(t,e,r){\"use strict\";e.exports=function(t){var e=i[t];e||(e=i[t]=function(t){var e=0,r=new Array(t+1);r[0]=[[]];for(var i=1;i<=t;++i)for(var o=r[i]=a(i),s=0;s<o.length;++s)e=Math.max(e,o[i].length);var l=[\"function B(C,E,i,j){\",\"var a=Math.min(i,j)|0,b=Math.max(i,j)|0,l=C[2*a],h=C[2*a+1];\",\"while(l<h){\",\"var m=(l+h)>>1,v=E[2*m+1];\",\"if(v===b){return m}\",\"if(b<v){h=m}else{l=m+1}\",\"}\",\"return l;\",\"};\",\"function getContour\",t,\"d(F,E,C,S){\",\"var n=F.length,R=[];\",\"for(var i=0;i<n;++i){var c=F[i],l=c.length;\"];function c(t){if(!(t.length<=0)){l.push(\"R.push(\");for(var e=0;e<t.length;++e){var r=t[e];e>0&&l.push(\",\"),l.push(\"[\");for(var n=0;n<r.length;++n){var a=r[n];n>0&&l.push(\",\"),l.push(\"B(C,E,c[\",a[0],\"],c[\",a[1],\"])\")}l.push(\"]\")}l.push(\");\")}}for(var i=t+1;i>1;--i){i<t+1&&l.push(\"else \"),l.push(\"if(l===\",i,\"){\");for(var u=[],s=0;s<i;++s)u.push(\"(S[c[\"+s+\"]]<<\"+s+\")\");l.push(\"var M=\",u.join(\"+\"),\";if(M===0||M===\",(1<<i)-1,\"){continue}switch(M){\");for(var o=r[i-1],s=0;s<o.length;++s)l.push(\"case \",s,\":\"),c(o[s]),l.push(\"break;\");l.push(\"}}\")}return l.push(\"}return R;};return getContour\",t,\"d\"),new Function(\"pool\",l.join(\"\"))(n)}(t));return e};var n=t(\"typedarray-pool\"),a=t(\"marching-simplex-table\"),i={}},{\"marching-simplex-table\":428,\"typedarray-pool\":546}],521:[function(t,e,r){\"use strict\";var n=t(\"bit-twiddle\"),a=t(\"union-find\");function i(t,e){var r=t.length,n=t.length-e.length,a=Math.min;if(n)return n;switch(r){case 0:return 0;case 1:return t[0]-e[0];case 2:return(s=t[0]+t[1]-e[0]-e[1])||a(t[0],t[1])-a(e[0],e[1]);case 3:var i=t[0]+t[1],o=e[0]+e[1];if(s=i+t[2]-(o+e[2]))return s;var s,l=a(t[0],t[1]),c=a(e[0],e[1]);return(s=a(l,t[2])-a(c,e[2]))||a(l+t[2],i)-a(c+e[2],o);default:var u=t.slice(0);u.sort();var h=e.slice(0);h.sort();for(var f=0;f<r;++f)if(n=u[f]-h[f])return n;return 0}}function o(t,e){return i(t[0],e[0])}function s(t,e){if(e){for(var r=t.length,n=new Array(r),a=0;a<r;++a)n[a]=[t[a],e[a]];n.sort(o);for(a=0;a<r;++a)t[a]=n[a][0],e[a]=n[a][1];return t}return t.sort(i),t}function l(t){if(0===t.length)return[];for(var e=1,r=t.length,n=1;n<r;++n){var a=t[n];if(i(a,t[n-1])){if(n===e){e++;continue}t[e++]=a}}return t.length=e,t}function c(t,e){for(var r=0,n=t.length-1,a=-1;r<=n;){var o=r+n>>1,s=i(t[o],e);s<=0?(0===s&&(a=o),r=o+1):s>0&&(n=o-1)}return a}function u(t,e){for(var r=new Array(t.length),a=0,o=r.length;a<o;++a)r[a]=[];for(var s=[],l=(a=0,e.length);a<l;++a)for(var u=e[a],h=u.length,f=1,p=1<<h;f<p;++f){s.length=n.popCount(f);for(var d=0,g=0;g<h;++g)f&1<<g&&(s[d++]=u[g]);var v=c(t,s);if(!(v<0))for(;r[v++].push(a),!(v>=t.length||0!==i(t[v],s)););}return r}function h(t,e){if(e<0)return[];for(var r=[],a=(1<<e+1)-1,i=0;i<t.length;++i)for(var o=t[i],l=a;l<1<<o.length;l=n.nextCombination(l)){for(var c=new Array(e+1),u=0,h=0;h<o.length;++h)l&1<<h&&(c[u++]=o[h]);r.push(c)}return s(r)}r.dimension=function(t){for(var e=0,r=Math.max,n=0,a=t.length;n<a;++n)e=r(e,t[n].length);return e-1},r.countVertices=function(t){for(var e=-1,r=Math.max,n=0,a=t.length;n<a;++n)for(var i=t[n],o=0,s=i.length;o<s;++o)e=r(e,i[o]);return e+1},r.cloneCells=function(t){for(var e=new Array(t.length),r=0,n=t.length;r<n;++r)e[r]=t[r].slice(0);return e},r.compareCells=i,r.normalize=s,r.unique=l,r.findCell=c,r.incidence=u,r.dual=function(t,e){if(!e)return u(l(h(t,0)),t);for(var r=new Array(e),n=0;n<e;++n)r[n]=[];n=0;for(var a=t.length;n<a;++n)for(var i=t[n],o=0,s=i.length;o<s;++o)r[i[o]].push(n);return r},r.explode=function(t){for(var e=[],r=0,n=t.length;r<n;++r)for(var a=t[r],i=0|a.length,o=1,l=1<<i;o<l;++o){for(var c=[],u=0;u<i;++u)o>>>u&1&&c.push(a[u]);e.push(c)}return s(e)},r.skeleton=h,r.boundary=function(t){for(var e=[],r=0,n=t.length;r<n;++r)for(var a=t[r],i=0,o=a.length;i<o;++i){for(var l=new Array(a.length-1),c=0,u=0;c<o;++c)c!==i&&(l[u++]=a[c]);e.push(l)}return s(e)},r.connectedComponents=function(t,e){return e?function(t,e){for(var r=new a(e),n=0;n<t.length;++n)for(var i=t[n],o=0;o<i.length;++o)for(var s=o+1;s<i.length;++s)r.link(i[o],i[s]);var l=[],c=r.ranks;for(n=0;n<c.length;++n)c[n]=-1;for(n=0;n<t.length;++n){var u=r.find(t[n][0]);c[u]<0?(c[u]=l.length,l.push([t[n].slice(0)])):l[c[u]].push(t[n].slice(0))}return l}(t,e):function(t){for(var e=l(s(h(t,0))),r=new a(e.length),n=0;n<t.length;++n)for(var i=t[n],o=0;o<i.length;++o)for(var u=c(e,[i[o]]),f=o+1;f<i.length;++f)r.link(u,c(e,[i[f]]));var p=[],d=r.ranks;for(n=0;n<d.length;++n)d[n]=-1;for(n=0;n<t.length;++n){var g=r.find(c(e,[t[n][0]]));d[g]<0?(d[g]=p.length,p.push([t[n].slice(0)])):p[d[g]].push(t[n].slice(0))}return p}(t)}},{\"bit-twiddle\":93,\"union-find\":547}],522:[function(t,e,r){arguments[4][93][0].apply(r,arguments)},{dup:93}],523:[function(t,e,r){arguments[4][521][0].apply(r,arguments)},{\"bit-twiddle\":522,dup:521,\"union-find\":524}],524:[function(t,e,r){\"use strict\";function n(t){this.roots=new Array(t),this.ranks=new Array(t);for(var e=0;e<t;++e)this.roots[e]=e,this.ranks[e]=0}e.exports=n,n.prototype.length=function(){return this.roots.length},n.prototype.makeSet=function(){var t=this.roots.length;return this.roots.push(t),this.ranks.push(0),t},n.prototype.find=function(t){for(var e=this.roots;e[t]!==t;){var r=e[t];e[t]=e[r],t=r}return t},n.prototype.link=function(t,e){var r=this.find(t),n=this.find(e);if(r!==n){var a=this.ranks,i=this.roots,o=a[r],s=a[n];o<s?i[r]=n:s<o?i[n]=r:(i[n]=r,++a[r])}}},{}],525:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){for(var i=e.length,o=t.length,s=new Array(i),l=new Array(i),c=new Array(i),u=new Array(i),h=0;h<i;++h)s[h]=l[h]=-1,c[h]=1/0,u[h]=!1;for(var h=0;h<o;++h){var f=t[h];if(2!==f.length)throw new Error(\"Input must be a graph\");var p=f[1],d=f[0];-1!==l[d]?l[d]=-2:l[d]=p,-1!==s[p]?s[p]=-2:s[p]=d}function g(t){if(u[t])return 1/0;var r,a,i,o,c,h=s[t],f=l[t];return h<0||f<0?1/0:(r=e[t],a=e[h],i=e[f],o=Math.abs(n(r,a,i)),c=Math.sqrt(Math.pow(a[0]-i[0],2)+Math.pow(a[1]-i[1],2)),o/c)}function v(t,e){var r=T[t],n=T[e];T[t]=n,T[e]=r,A[r]=e,A[n]=t}function m(t){return c[T[t]]}function y(t){return 1&t?t-1>>1:(t>>1)-1}function x(t){for(var e=m(t);;){var r=e,n=2*t+1,a=2*(t+1),i=t;if(n<S){var o=m(n);o<r&&(i=n,r=o)}if(a<S){var s=m(a);s<r&&(i=a)}if(i===t)return t;v(t,i),t=i}}function b(t){for(var e=m(t);t>0;){var r=y(t);if(r>=0){var n=m(r);if(e<n){v(t,r),t=r;continue}}return t}}function _(){if(S>0){var t=T[0];return v(0,S-1),S-=1,x(0),t}return-1}function w(t,e){var r=T[t];return c[r]===e?t:(c[r]=-1/0,b(t),_(),c[r]=e,b((S+=1)-1))}function k(t){if(!u[t]){u[t]=!0;var e=s[t],r=l[t];s[r]>=0&&(s[r]=e),l[e]>=0&&(l[e]=r),A[e]>=0&&w(A[e],g(e)),A[r]>=0&&w(A[r],g(r))}}for(var T=[],A=new Array(i),h=0;h<i;++h){var M=c[h]=g(h);M<1/0?(A[h]=T.length,T.push(h)):A[h]=-1}for(var S=T.length,h=S>>1;h>=0;--h)x(h);for(;;){var E=_();if(E<0||c[E]>r)break;k(E)}for(var C=[],h=0;h<i;++h)u[h]||(A[h]=C.length,C.push(e[h].slice()));C.length;function L(t,e){if(t[e]<0)return e;var r=e,n=e;do{var a=t[n];if(!u[n]||a<0||a===n)break;if(a=t[n=a],!u[n]||a<0||a===n)break;n=a,r=t[r]}while(r!==n);for(var i=e;i!==n;i=t[i])t[i]=n;return n}var P=[];return t.forEach(function(t){var e=L(s,t[0]),r=L(l,t[1]);if(e>=0&&r>=0&&e!==r){var n=A[e],a=A[r];n!==a&&P.push([n,a])}}),a.unique(a.normalize(P)),{positions:C,edges:P}};var n=t(\"robust-orientation\"),a=t(\"simplicial-complex\")},{\"robust-orientation\":511,\"simplicial-complex\":523}],526:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r,i,o,s;if(e[0][0]<e[1][0])r=e[0],i=e[1];else{if(!(e[0][0]>e[1][0]))return a(e,t);r=e[1],i=e[0]}if(t[0][0]<t[1][0])o=t[0],s=t[1];else{if(!(t[0][0]>t[1][0]))return-a(t,e);o=t[1],s=t[0]}var l=n(r,i,s),c=n(r,i,o);if(l<0){if(c<=0)return l}else if(l>0){if(c>=0)return l}else if(c)return c;if(l=n(s,o,i),c=n(s,o,r),l<0){if(c<=0)return l}else if(l>0){if(c>=0)return l}else if(c)return c;return i[0]-s[0]};var n=t(\"robust-orientation\");function a(t,e){var r,a,i,o;if(e[0][0]<e[1][0])r=e[0],a=e[1];else{if(!(e[0][0]>e[1][0])){var s=Math.min(t[0][1],t[1][1]),l=Math.max(t[0][1],t[1][1]),c=Math.min(e[0][1],e[1][1]),u=Math.max(e[0][1],e[1][1]);return l<c?l-c:s>u?s-u:l-u}r=e[1],a=e[0]}t[0][1]<t[1][1]?(i=t[0],o=t[1]):(i=t[1],o=t[0]);var h=n(a,r,i);return h||((h=n(a,r,o))||o-a)}},{\"robust-orientation\":511}],527:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=t.length,r=2*e,n=new Array(r),i=0;i<e;++i){var l=t[i],c=l[0][0]<l[1][0];n[2*i]=new h(l[0][0],l,c,i),n[2*i+1]=new h(l[1][0],l,!c,i)}n.sort(function(t,e){var r=t.x-e.x;return r||((r=t.create-e.create)||Math.min(t.segment[0][1],t.segment[1][1])-Math.min(e.segment[0][1],e.segment[1][1]))});for(var f=a(o),p=[],d=[],g=[],i=0;i<r;){for(var v=n[i].x,m=[];i<r;){var y=n[i];if(y.x!==v)break;i+=1,y.segment[0][0]===y.x&&y.segment[1][0]===y.x?y.create&&(y.segment[0][1]<y.segment[1][1]?(m.push(new u(y.segment[0][1],y.index,!0,!0)),m.push(new u(y.segment[1][1],y.index,!1,!1))):(m.push(new u(y.segment[1][1],y.index,!0,!1)),m.push(new u(y.segment[0][1],y.index,!1,!0)))):f=y.create?f.insert(y.segment,y.index):f.remove(y.segment)}p.push(f.root),d.push(v),g.push(m)}return new s(p,d,g)};var n=t(\"binary-search-bounds\"),a=t(\"functional-red-black-tree\"),i=t(\"robust-orientation\"),o=t(\"./lib/order-segments\");function s(t,e,r){this.slabs=t,this.coordinates=e,this.horizontal=r}function l(t,e){return t.y-e}function c(t,e){for(var r=null;t;){var n,a,o=t.key;o[0][0]<o[1][0]?(n=o[0],a=o[1]):(n=o[1],a=o[0]);var s=i(n,a,e);if(s<0)t=t.left;else if(s>0)if(e[0]!==o[1][0])r=t,t=t.right;else{if(l=c(t.right,e))return l;t=t.left}else{if(e[0]!==o[1][0])return t;var l;if(l=c(t.right,e))return l;t=t.left}}return r}function u(t,e,r,n){this.y=t,this.index=e,this.start=r,this.closed=n}function h(t,e,r,n){this.x=t,this.segment=e,this.create=r,this.index=n}s.prototype.castUp=function(t){var e=n.le(this.coordinates,t[0]);if(e<0)return-1;this.slabs[e];var r=c(this.slabs[e],t),a=-1;if(r&&(a=r.value),this.coordinates[e]===t[0]){var s=null;if(r&&(s=r.key),e>0){var u=c(this.slabs[e-1],t);u&&(s?o(u.key,s)>0&&(s=u.key,a=u.value):(a=u.value,s=u.key))}var h=this.horizontal[e];if(h.length>0){var f=n.ge(h,t[1],l);if(f<h.length){var p=h[f];if(t[1]===p.y){if(p.closed)return p.index;for(;f<h.length-1&&h[f+1].y===t[1];)if((p=h[f+=1]).closed)return p.index;if(p.y===t[1]&&!p.start){if((f+=1)>=h.length)return a;p=h[f]}}if(p.start)if(s){var d=i(s[0],s[1],[t[0],p.y]);s[0][0]>s[1][0]&&(d=-d),d>0&&(a=p.index)}else a=p.index;else p.y!==t[1]&&(a=p.index)}}}return a}},{\"./lib/order-segments\":526,\"binary-search-bounds\":92,\"functional-red-black-tree\":231,\"robust-orientation\":511}],528:[function(t,e,r){\"use strict\";var n=t(\"robust-dot-product\"),a=t(\"robust-sum\");function i(t,e){var r=a(n(t,e),[e[e.length-1]]);return r[r.length-1]}function o(t,e,r,n){var a=-e/(n-e);a<0?a=0:a>1&&(a=1);for(var i=1-a,o=t.length,s=new Array(o),l=0;l<o;++l)s[l]=a*t[l]+i*r[l];return s}e.exports=function(t,e){for(var r=[],n=[],a=i(t[t.length-1],e),s=t[t.length-1],l=t[0],c=0;c<t.length;++c,s=l){var u=i(l=t[c],e);if(a<0&&u>0||a>0&&u<0){var h=o(s,u,l,a);r.push(h),n.push(h.slice())}u<0?n.push(l.slice()):u>0?r.push(l.slice()):(r.push(l.slice()),n.push(l.slice())),a=u}return{positive:r,negative:n}},e.exports.positive=function(t,e){for(var r=[],n=i(t[t.length-1],e),a=t[t.length-1],s=t[0],l=0;l<t.length;++l,a=s){var c=i(s=t[l],e);(n<0&&c>0||n>0&&c<0)&&r.push(o(a,c,s,n)),c>=0&&r.push(s.slice()),n=c}return r},e.exports.negative=function(t,e){for(var r=[],n=i(t[t.length-1],e),a=t[t.length-1],s=t[0],l=0;l<t.length;++l,a=s){var c=i(s=t[l],e);(n<0&&c>0||n>0&&c<0)&&r.push(o(a,c,s,n)),c<=0&&r.push(s.slice()),n=c}return r}},{\"robust-dot-product\":508,\"robust-sum\":516}],529:[function(t,e,r){!function(){\"use strict\";var t={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\\x25]+/,modulo:/^\\x25{2}/,placeholder:/^\\x25(?:([1-9]\\d*)\\$|\\(([^)]+)\\))?(\\+)?(0|'[^$])?(-)?(\\d+)?(?:\\.(\\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\\d]*)/i,key_access:/^\\.([a-z_][a-z_\\d]*)/i,index_access:/^\\[(\\d+)\\]/,sign:/^[+-]/};function e(r){return function(r,n){var a,i,o,s,l,c,u,h,f,p=1,d=r.length,g=\"\";for(i=0;i<d;i++)if(\"string\"==typeof r[i])g+=r[i];else if(\"object\"==typeof r[i]){if((s=r[i]).keys)for(a=n[p],o=0;o<s.keys.length;o++){if(null==a)throw new Error(e('[sprintf] Cannot access property \"%s\" of undefined value \"%s\"',s.keys[o],s.keys[o-1]));a=a[s.keys[o]]}else a=s.param_no?n[s.param_no]:n[p++];if(t.not_type.test(s.type)&&t.not_primitive.test(s.type)&&a instanceof Function&&(a=a()),t.numeric_arg.test(s.type)&&\"number\"!=typeof a&&isNaN(a))throw new TypeError(e(\"[sprintf] expecting number but found %T\",a));switch(t.number.test(s.type)&&(h=a>=0),s.type){case\"b\":a=parseInt(a,10).toString(2);break;case\"c\":a=String.fromCharCode(parseInt(a,10));break;case\"d\":case\"i\":a=parseInt(a,10);break;case\"j\":a=JSON.stringify(a,null,s.width?parseInt(s.width):0);break;case\"e\":a=s.precision?parseFloat(a).toExponential(s.precision):parseFloat(a).toExponential();break;case\"f\":a=s.precision?parseFloat(a).toFixed(s.precision):parseFloat(a);break;case\"g\":a=s.precision?String(Number(a.toPrecision(s.precision))):parseFloat(a);break;case\"o\":a=(parseInt(a,10)>>>0).toString(8);break;case\"s\":a=String(a),a=s.precision?a.substring(0,s.precision):a;break;case\"t\":a=String(!!a),a=s.precision?a.substring(0,s.precision):a;break;case\"T\":a=Object.prototype.toString.call(a).slice(8,-1).toLowerCase(),a=s.precision?a.substring(0,s.precision):a;break;case\"u\":a=parseInt(a,10)>>>0;break;case\"v\":a=a.valueOf(),a=s.precision?a.substring(0,s.precision):a;break;case\"x\":a=(parseInt(a,10)>>>0).toString(16);break;case\"X\":a=(parseInt(a,10)>>>0).toString(16).toUpperCase()}t.json.test(s.type)?g+=a:(!t.number.test(s.type)||h&&!s.sign?f=\"\":(f=h?\"+\":\"-\",a=a.toString().replace(t.sign,\"\")),c=s.pad_char?\"0\"===s.pad_char?\"0\":s.pad_char.charAt(1):\" \",u=s.width-(f+a).length,l=s.width&&u>0?c.repeat(u):\"\",g+=s.align?f+a+l:\"0\"===c?f+l+a:l+f+a)}return g}(function(e){if(a[e])return a[e];var r,n=e,i=[],o=0;for(;n;){if(null!==(r=t.text.exec(n)))i.push(r[0]);else if(null!==(r=t.modulo.exec(n)))i.push(\"%\");else{if(null===(r=t.placeholder.exec(n)))throw new SyntaxError(\"[sprintf] unexpected placeholder\");if(r[2]){o|=1;var s=[],l=r[2],c=[];if(null===(c=t.key.exec(l)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");for(s.push(c[1]);\"\"!==(l=l.substring(c[0].length));)if(null!==(c=t.key_access.exec(l)))s.push(c[1]);else{if(null===(c=t.index_access.exec(l)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");s.push(c[1])}r[2]=s}else o|=2;if(3===o)throw new Error(\"[sprintf] mixing positional and named placeholders is not (yet) supported\");i.push({placeholder:r[0],param_no:r[1],keys:r[2],sign:r[3],pad_char:r[4],align:r[5],width:r[6],precision:r[7],type:r[8]})}n=n.substring(r[0].length)}return a[e]=i}(r),arguments)}function n(t,r){return e.apply(null,[t].concat(r||[]))}var a=Object.create(null);\"undefined\"!=typeof r&&(r.sprintf=e,r.vsprintf=n),\"undefined\"!=typeof window&&(window.sprintf=e,window.vsprintf=n)}()},{}],530:[function(t,e,r){\"use strict\";var n=t(\"parenthesis\");e.exports=function(t,e,r){if(null==t)throw Error(\"First argument should be a string\");if(null==e)throw Error(\"Separator should be a string or a RegExp\");r?(\"string\"==typeof r||Array.isArray(r))&&(r={ignore:r}):r={},null==r.escape&&(r.escape=!0),null==r.ignore?r.ignore=[\"[]\",\"()\",\"{}\",\"<>\",'\"\"',\"''\",\"``\",\"\\u201c\\u201d\",\"\\xab\\xbb\"]:(\"string\"==typeof r.ignore&&(r.ignore=[r.ignore]),r.ignore=r.ignore.map(function(t){return 1===t.length&&(t+=t),t}));var a=n.parse(t,{flat:!0,brackets:r.ignore}),i=a[0].split(e);if(r.escape){for(var o=[],s=0;s<i.length;s++){var l=i[s],c=i[s+1];\"\\\\\"===l[l.length-1]&&\"\\\\\"!==l[l.length-2]?(o.push(l+e+c),s++):o.push(l)}i=o}for(s=0;s<i.length;s++)a[0]=i[s],i[s]=n.stringify(a,{flat:!0});return i}},{parenthesis:459}],531:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=t.length,r=new Array(e),n=new Array(e),a=new Array(e),i=new Array(e),o=new Array(e),s=new Array(e),l=0;l<e;++l)r[l]=-1,n[l]=0,a[l]=!1,i[l]=0,o[l]=-1,s[l]=[];var c,u=0,h=[],f=[];function p(e){var l=[e],c=[e];for(r[e]=n[e]=u,a[e]=!0,u+=1;c.length>0;){e=c[c.length-1];var p=t[e];if(i[e]<p.length){for(var d=i[e];d<p.length;++d){var g=p[d];if(r[g]<0){r[g]=n[g]=u,a[g]=!0,u+=1,l.push(g),c.push(g);break}a[g]&&(n[e]=0|Math.min(n[e],n[g])),o[g]>=0&&s[e].push(o[g])}i[e]=d}else{if(n[e]===r[e]){for(var v=[],m=[],y=0,d=l.length-1;d>=0;--d){var x=l[d];if(a[x]=!1,v.push(x),m.push(s[x]),y+=s[x].length,o[x]=h.length,x===e){l.length=d;break}}h.push(v);for(var b=new Array(y),d=0;d<m.length;d++)for(var _=0;_<m[d].length;_++)b[--y]=m[d][_];f.push(b)}c.pop()}}}for(var l=0;l<e;++l)r[l]<0&&p(l);for(var l=0;l<f.length;l++){var d=f[l];if(0!==d.length){d.sort(function(t,e){return t-e}),c=[d[0]];for(var g=1;g<d.length;g++)d[g]!==d[g-1]&&c.push(d[g]);f[l]=c}}return{components:h,adjacencyList:f}}},{}],532:[function(t,e,r){\"use strict\";e.exports=function(t,e){if(t.dimension<=0)return{positions:[],cells:[]};if(1===t.dimension)return function(t,e){for(var r=i(t,e),n=r.length,a=new Array(n),o=new Array(n),s=0;s<n;++s)a[s]=[r[s]],o[s]=[s];return{positions:a,cells:o}}(t,e);var r=t.order.join()+\"-\"+t.dtype,s=o[r],e=+e||0;s||(s=o[r]=function(t,e){var r=t.length,i=[\"'use strict';\"],o=\"surfaceNets\"+t.join(\"_\")+\"d\"+e;i.push(\"var contour=genContour({\",\"order:[\",t.join(),\"],\",\"scalarArguments: 3,\",\"phase:function phaseFunc(p,a,b,c) { return (p > c)|0 },\"),\"generic\"===e&&i.push(\"getters:[0],\");for(var s=[],l=[],c=0;c<r;++c)s.push(\"d\"+c),l.push(\"d\"+c);for(var c=0;c<1<<r;++c)s.push(\"v\"+c),l.push(\"v\"+c);for(var c=0;c<1<<r;++c)s.push(\"p\"+c),l.push(\"p\"+c);s.push(\"a\",\"b\",\"c\"),l.push(\"a\",\"c\"),i.push(\"vertex:function vertexFunc(\",s.join(),\"){\");for(var u=[],c=0;c<1<<r;++c)u.push(\"(p\"+c+\"<<\"+c+\")\");i.push(\"var m=(\",u.join(\"+\"),\")|0;if(m===0||m===\",(1<<(1<<r))-1,\"){return}\");var h=[],f=[];1<<(1<<r)<=128?(i.push(\"switch(m){\"),f=i):i.push(\"switch(m>>>7){\");for(var c=0;c<1<<(1<<r);++c){if(1<<(1<<r)>128&&c%128==0){h.length>0&&f.push(\"}}\");var p=\"vExtra\"+h.length;i.push(\"case \",c>>>7,\":\",p,\"(m&0x7f,\",l.join(),\");break;\"),f=[\"function \",p,\"(m,\",l.join(),\"){switch(m){\"],h.push(f)}f.push(\"case \",127&c,\":\");for(var d=new Array(r),g=new Array(r),v=new Array(r),m=new Array(r),y=0,x=0;x<r;++x)d[x]=[],g[x]=[],v[x]=0,m[x]=0;for(var x=0;x<1<<r;++x)for(var b=0;b<r;++b){var _=x^1<<b;if(!(_>x)&&!(c&1<<_)!=!(c&1<<x)){var w=1;c&1<<_?g[b].push(\"v\"+_+\"-v\"+x):(g[b].push(\"v\"+x+\"-v\"+_),w=-w),w<0?(d[b].push(\"-v\"+x+\"-v\"+_),v[b]+=2):(d[b].push(\"v\"+x+\"+v\"+_),v[b]-=2),y+=1;for(var k=0;k<r;++k)k!==b&&(_&1<<k?m[k]+=1:m[k]-=1)}}for(var T=[],b=0;b<r;++b)if(0===d[b].length)T.push(\"d\"+b+\"-0.5\");else{var A=\"\";v[b]<0?A=v[b]+\"*c\":v[b]>0&&(A=\"+\"+v[b]+\"*c\");var M=d[b].length/y*.5,S=.5+m[b]/y*.5;T.push(\"d\"+b+\"-\"+S+\"-\"+M+\"*(\"+d[b].join(\"+\")+A+\")/(\"+g[b].join(\"+\")+\")\")}f.push(\"a.push([\",T.join(),\"]);\",\"break;\")}i.push(\"}},\"),h.length>0&&f.push(\"}}\");for(var E=[],c=0;c<1<<r-1;++c)E.push(\"v\"+c);E.push(\"c0\",\"c1\",\"p0\",\"p1\",\"a\",\"b\",\"c\"),i.push(\"cell:function cellFunc(\",E.join(),\"){\");var C=a(r-1);i.push(\"if(p0){b.push(\",C.map(function(t){return\"[\"+t.map(function(t){return\"v\"+t})+\"]\"}).join(),\")}else{b.push(\",C.map(function(t){var e=t.slice();return e.reverse(),\"[\"+e.map(function(t){return\"v\"+t})+\"]\"}).join(),\")}}});function \",o,\"(array,level){var verts=[],cells=[];contour(array,verts,cells,level);return {positions:verts,cells:cells};} return \",o,\";\");for(var c=0;c<h.length;++c)i.push(h[c].join(\"\"));return new Function(\"genContour\",i.join(\"\"))(n)}(t.order,t.dtype));return s(t,e)};var n=t(\"ndarray-extract-contour\"),a=t(\"triangulate-hypercube\"),i=t(\"zero-crossings\");var o={}},{\"ndarray-extract-contour\":440,\"triangulate-hypercube\":542,\"zero-crossings\":575}],533:[function(t,e,r){\"use strict\";Object.defineProperty(r,\"__esModule\",{value:!0});var n=function(){return function(t,e){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return function(t,e){var r=[],n=!0,a=!1,i=void 0;try{for(var o,s=t[Symbol.iterator]();!(n=(o=s.next()).done)&&(r.push(o.value),!e||r.length!==e);n=!0);}catch(t){a=!0,i=t}finally{try{!n&&s.return&&s.return()}finally{if(a)throw i}}return r}(t,e);throw new TypeError(\"Invalid attempt to destructure non-iterable instance\")}}(),a=2*Math.PI,i=function(t,e,r,n,a,i,o){var s=t.x,l=t.y;return{x:n*(s*=e)-a*(l*=r)+i,y:a*s+n*l+o}},o=function(t,e){var r=.551915024494*(e<0?-1:1),n=Math.cos(t),a=Math.sin(t),i=Math.cos(t+e),o=Math.sin(t+e);return[{x:n-a*r,y:a+n*r},{x:i+o*r,y:o-i*r},{x:i,y:o}]},s=function(t,e,r,n){var a=t*n-e*r<0?-1:1,i=(t*r+e*n)/(Math.sqrt(t*t+e*e)*Math.sqrt(t*t+e*e));return i>1&&(i=1),i<-1&&(i=-1),a*Math.acos(i)};r.default=function(t){var e=t.px,r=t.py,l=t.cx,c=t.cy,u=t.rx,h=t.ry,f=t.xAxisRotation,p=void 0===f?0:f,d=t.largeArcFlag,g=void 0===d?0:d,v=t.sweepFlag,m=void 0===v?0:v,y=[];if(0===u||0===h)return[];var x=Math.sin(p*a/360),b=Math.cos(p*a/360),_=b*(e-l)/2+x*(r-c)/2,w=-x*(e-l)/2+b*(r-c)/2;if(0===_&&0===w)return[];u=Math.abs(u),h=Math.abs(h);var k=Math.pow(_,2)/Math.pow(u,2)+Math.pow(w,2)/Math.pow(h,2);k>1&&(u*=Math.sqrt(k),h*=Math.sqrt(k));var T=function(t,e,r,n,i,o,l,c,u,h,f,p){var d=Math.pow(i,2),g=Math.pow(o,2),v=Math.pow(f,2),m=Math.pow(p,2),y=d*g-d*m-g*v;y<0&&(y=0),y/=d*m+g*v;var x=(y=Math.sqrt(y)*(l===c?-1:1))*i/o*p,b=y*-o/i*f,_=h*x-u*b+(t+r)/2,w=u*x+h*b+(e+n)/2,k=(f-x)/i,T=(p-b)/o,A=(-f-x)/i,M=(-p-b)/o,S=s(1,0,k,T),E=s(k,T,A,M);return 0===c&&E>0&&(E-=a),1===c&&E<0&&(E+=a),[_,w,S,E]}(e,r,l,c,u,h,g,m,x,b,_,w),A=n(T,4),M=A[0],S=A[1],E=A[2],C=A[3],L=Math.abs(C)/(a/4);Math.abs(1-L)<1e-7&&(L=1);var P=Math.max(Math.ceil(L),1);C/=P;for(var O=0;O<P;O++)y.push(o(E,C)),E+=C;return y.map(function(t){var e=i(t[0],u,h,b,x,M,S),r=e.x,n=e.y,a=i(t[1],u,h,b,x,M,S),o=a.x,s=a.y,l=i(t[2],u,h,b,x,M,S);return{x1:r,y1:n,x2:o,y2:s,x:l.x,y:l.y}})},e.exports=r.default},{}],534:[function(t,e,r){\"use strict\";var n=t(\"parse-svg-path\"),a=t(\"abs-svg-path\"),i=t(\"normalize-svg-path\"),o=t(\"is-svg-path\"),s=t(\"assert\");e.exports=function(t){Array.isArray(t)&&1===t.length&&\"string\"==typeof t[0]&&(t=t[0]);\"string\"==typeof t&&(s(o(t),\"String is not an SVG path.\"),t=n(t));if(s(Array.isArray(t),\"Argument should be a string or an array of path segments.\"),t=a(t),!(t=i(t)).length)return[0,0,0,0];for(var e=[1/0,1/0,-1/0,-1/0],r=0,l=t.length;r<l;r++)for(var c=t[r].slice(1),u=0;u<c.length;u+=2)c[u+0]<e[0]&&(e[0]=c[u+0]),c[u+1]<e[1]&&(e[1]=c[u+1]),c[u+0]>e[2]&&(e[2]=c[u+0]),c[u+1]>e[3]&&(e[3]=c[u+1]);return e}},{\"abs-svg-path\":61,assert:69,\"is-svg-path\":425,\"normalize-svg-path\":535,\"parse-svg-path\":461}],535:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e,r=[],o=0,s=0,l=0,c=0,u=null,h=null,f=0,p=0,d=0,g=t.length;d<g;d++){var v=t[d],m=v[0];switch(m){case\"M\":l=v[1],c=v[2];break;case\"A\":var y=n({px:f,py:p,cx:v[6],cy:v[7],rx:v[1],ry:v[2],xAxisRotation:v[3],largeArcFlag:v[4],sweepFlag:v[5]});if(!y.length)continue;for(var x,b=0;b<y.length;b++)x=y[b],v=[\"C\",x.x1,x.y1,x.x2,x.y2,x.x,x.y],b<y.length-1&&r.push(v);break;case\"S\":var _=f,w=p;\"C\"!=e&&\"S\"!=e||(_+=_-o,w+=w-s),v=[\"C\",_,w,v[1],v[2],v[3],v[4]];break;case\"T\":\"Q\"==e||\"T\"==e?(u=2*f-u,h=2*p-h):(u=f,h=p),v=i(f,p,u,h,v[1],v[2]);break;case\"Q\":u=v[1],h=v[2],v=i(f,p,v[1],v[2],v[3],v[4]);break;case\"L\":v=a(f,p,v[1],v[2]);break;case\"H\":v=a(f,p,v[1],p);break;case\"V\":v=a(f,p,f,v[1]);break;case\"Z\":v=a(f,p,l,c)}e=m,f=v[v.length-2],p=v[v.length-1],v.length>4?(o=v[v.length-4],s=v[v.length-3]):(o=f,s=p),r.push(v)}return r};var n=t(\"svg-arc-to-cubic-bezier\");function a(t,e,r,n){return[\"C\",t,e,r,n,r,n]}function i(t,e,r,n,a,i){return[\"C\",t/3+2/3*r,e/3+2/3*n,a/3+2/3*r,i/3+2/3*n,a,i]}},{\"svg-arc-to-cubic-bezier\":533}],536:[function(t,e,r){\"use strict\";var n,a=t(\"svg-path-bounds\"),i=t(\"parse-svg-path\"),o=t(\"draw-svg-path\"),s=t(\"is-svg-path\"),l=t(\"bitmap-sdf\"),c=document.createElement(\"canvas\"),u=c.getContext(\"2d\");e.exports=function(t,e){if(!s(t))throw Error(\"Argument should be valid svg path string\");e||(e={});var r,h;e.shape?(r=e.shape[0],h=e.shape[1]):(r=c.width=e.w||e.width||200,h=c.height=e.h||e.height||200);var f=Math.min(r,h),p=e.stroke||0,d=e.viewbox||e.viewBox||a(t),g=[r/(d[2]-d[0]),h/(d[3]-d[1])],v=Math.min(g[0]||0,g[1]||0)/2;u.fillStyle=\"black\",u.fillRect(0,0,r,h),u.fillStyle=\"white\",p&&(\"number\"!=typeof p&&(p=1),u.strokeStyle=p>0?\"white\":\"black\",u.lineWidth=Math.abs(p));if(u.translate(.5*r,.5*h),u.scale(v,v),function(){if(null!=n)return n;var t=document.createElement(\"canvas\").getContext(\"2d\");if(t.canvas.width=t.canvas.height=1,!window.Path2D)return n=!1;var e=new Path2D(\"M0,0h1v1h-1v-1Z\");t.fillStyle=\"black\",t.fill(e);var r=t.getImageData(0,0,1,1);return n=r&&r.data&&255===r.data[3]}()){var m=new Path2D(t);u.fill(m),p&&u.stroke(m)}else{var y=i(t);o(u,y),u.fill(),p&&u.stroke()}return u.setTransform(1,0,0,1,0,0),l(u,{cutoff:null!=e.cutoff?e.cutoff:.5,radius:null!=e.radius?e.radius:.5*f})}},{\"bitmap-sdf\":94,\"draw-svg-path\":169,\"is-svg-path\":425,\"parse-svg-path\":461,\"svg-path-bounds\":534}],537:[function(t,e,r){(function(r){\"use strict\";e.exports=function t(e,r,a){var a=a||{};var o=i[e];o||(o=i[e]={\" \":{data:new Float32Array(0),shape:.2}});var s=o[r];if(!s)if(r.length<=1||!/\\d/.test(r))s=o[r]=function(t){for(var e=t.cells,r=t.positions,n=new Float32Array(6*e.length),a=0,i=0,o=0;o<e.length;++o)for(var s=e[o],l=0;l<3;++l){var c=r[s[l]];n[a++]=c[0],n[a++]=c[1]+1.4,i=Math.max(c[0],i)}return{data:n,shape:i}}(n(r,{triangles:!0,font:e,textAlign:a.textAlign||\"left\",textBaseline:\"alphabetic\",styletags:{breaklines:!0,bolds:!0,italics:!0,subscripts:!0,superscripts:!0}}));else{for(var l=r.split(/(\\d|\\s)/),c=new Array(l.length),u=0,h=0,f=0;f<l.length;++f)c[f]=t(e,l[f]),u+=c[f].data.length,h+=c[f].shape,f>0&&(h+=.02);for(var p=new Float32Array(u),d=0,g=-.5*h,f=0;f<c.length;++f){for(var v=c[f].data,m=0;m<v.length;m+=2)p[d++]=v[m]+g,p[d++]=v[m+1];g+=c[f].shape+.02}s=o[r]={data:p,shape:h}}return s};var n=t(\"vectorize-text\"),a=window||r.global||{},i=a.__TEXT_CACHE||{};a.__TEXT_CACHE={}}).call(this,t(\"_process\"))},{_process:483,\"vectorize-text\":551}],538:[function(t,e,r){!function(t){var r=/^\\s+/,n=/\\s+$/,a=0,i=t.round,o=t.min,s=t.max,l=t.random;function c(e,l){if(l=l||{},(e=e||\"\")instanceof c)return e;if(!(this instanceof c))return new c(e,l);var u=function(e){var a={r:0,g:0,b:0},i=1,l=null,c=null,u=null,h=!1,f=!1;\"string\"==typeof e&&(e=function(t){t=t.replace(r,\"\").replace(n,\"\").toLowerCase();var e,a=!1;if(S[t])t=S[t],a=!0;else if(\"transparent\"==t)return{r:0,g:0,b:0,a:0,format:\"name\"};if(e=j.rgb.exec(t))return{r:e[1],g:e[2],b:e[3]};if(e=j.rgba.exec(t))return{r:e[1],g:e[2],b:e[3],a:e[4]};if(e=j.hsl.exec(t))return{h:e[1],s:e[2],l:e[3]};if(e=j.hsla.exec(t))return{h:e[1],s:e[2],l:e[3],a:e[4]};if(e=j.hsv.exec(t))return{h:e[1],s:e[2],v:e[3]};if(e=j.hsva.exec(t))return{h:e[1],s:e[2],v:e[3],a:e[4]};if(e=j.hex8.exec(t))return{r:O(e[1]),g:O(e[2]),b:O(e[3]),a:R(e[4]),format:a?\"name\":\"hex8\"};if(e=j.hex6.exec(t))return{r:O(e[1]),g:O(e[2]),b:O(e[3]),format:a?\"name\":\"hex\"};if(e=j.hex4.exec(t))return{r:O(e[1]+\"\"+e[1]),g:O(e[2]+\"\"+e[2]),b:O(e[3]+\"\"+e[3]),a:R(e[4]+\"\"+e[4]),format:a?\"name\":\"hex8\"};if(e=j.hex3.exec(t))return{r:O(e[1]+\"\"+e[1]),g:O(e[2]+\"\"+e[2]),b:O(e[3]+\"\"+e[3]),format:a?\"name\":\"hex\"};return!1}(e));\"object\"==typeof e&&(V(e.r)&&V(e.g)&&V(e.b)?(p=e.r,d=e.g,g=e.b,a={r:255*L(p,255),g:255*L(d,255),b:255*L(g,255)},h=!0,f=\"%\"===String(e.r).substr(-1)?\"prgb\":\"rgb\"):V(e.h)&&V(e.s)&&V(e.v)?(l=z(e.s),c=z(e.v),a=function(e,r,n){e=6*L(e,360),r=L(r,100),n=L(n,100);var a=t.floor(e),i=e-a,o=n*(1-r),s=n*(1-i*r),l=n*(1-(1-i)*r),c=a%6;return{r:255*[n,s,o,o,l,n][c],g:255*[l,n,n,s,o,o][c],b:255*[o,o,l,n,n,s][c]}}(e.h,l,c),h=!0,f=\"hsv\"):V(e.h)&&V(e.s)&&V(e.l)&&(l=z(e.s),u=z(e.l),a=function(t,e,r){var n,a,i;function o(t,e,r){return r<0&&(r+=1),r>1&&(r-=1),r<1/6?t+6*(e-t)*r:r<.5?e:r<2/3?t+(e-t)*(2/3-r)*6:t}if(t=L(t,360),e=L(e,100),r=L(r,100),0===e)n=a=i=r;else{var s=r<.5?r*(1+e):r+e-r*e,l=2*r-s;n=o(l,s,t+1/3),a=o(l,s,t),i=o(l,s,t-1/3)}return{r:255*n,g:255*a,b:255*i}}(e.h,l,u),h=!0,f=\"hsl\"),e.hasOwnProperty(\"a\")&&(i=e.a));var p,d,g;return i=C(i),{ok:h,format:e.format||f,r:o(255,s(a.r,0)),g:o(255,s(a.g,0)),b:o(255,s(a.b,0)),a:i}}(e);this._originalInput=e,this._r=u.r,this._g=u.g,this._b=u.b,this._a=u.a,this._roundA=i(100*this._a)/100,this._format=l.format||u.format,this._gradientType=l.gradientType,this._r<1&&(this._r=i(this._r)),this._g<1&&(this._g=i(this._g)),this._b<1&&(this._b=i(this._b)),this._ok=u.ok,this._tc_id=a++}function u(t,e,r){t=L(t,255),e=L(e,255),r=L(r,255);var n,a,i=s(t,e,r),l=o(t,e,r),c=(i+l)/2;if(i==l)n=a=0;else{var u=i-l;switch(a=c>.5?u/(2-i-l):u/(i+l),i){case t:n=(e-r)/u+(e<r?6:0);break;case e:n=(r-t)/u+2;break;case r:n=(t-e)/u+4}n/=6}return{h:n,s:a,l:c}}function h(t,e,r){t=L(t,255),e=L(e,255),r=L(r,255);var n,a,i=s(t,e,r),l=o(t,e,r),c=i,u=i-l;if(a=0===i?0:u/i,i==l)n=0;else{switch(i){case t:n=(e-r)/u+(e<r?6:0);break;case e:n=(r-t)/u+2;break;case r:n=(t-e)/u+4}n/=6}return{h:n,s:a,v:c}}function f(t,e,r,n){var a=[I(i(t).toString(16)),I(i(e).toString(16)),I(i(r).toString(16))];return n&&a[0].charAt(0)==a[0].charAt(1)&&a[1].charAt(0)==a[1].charAt(1)&&a[2].charAt(0)==a[2].charAt(1)?a[0].charAt(0)+a[1].charAt(0)+a[2].charAt(0):a.join(\"\")}function p(t,e,r,n){return[I(D(n)),I(i(t).toString(16)),I(i(e).toString(16)),I(i(r).toString(16))].join(\"\")}function d(t,e){e=0===e?0:e||10;var r=c(t).toHsl();return r.s-=e/100,r.s=P(r.s),c(r)}function g(t,e){e=0===e?0:e||10;var r=c(t).toHsl();return r.s+=e/100,r.s=P(r.s),c(r)}function v(t){return c(t).desaturate(100)}function m(t,e){e=0===e?0:e||10;var r=c(t).toHsl();return r.l+=e/100,r.l=P(r.l),c(r)}function y(t,e){e=0===e?0:e||10;var r=c(t).toRgb();return r.r=s(0,o(255,r.r-i(-e/100*255))),r.g=s(0,o(255,r.g-i(-e/100*255))),r.b=s(0,o(255,r.b-i(-e/100*255))),c(r)}function x(t,e){e=0===e?0:e||10;var r=c(t).toHsl();return r.l-=e/100,r.l=P(r.l),c(r)}function b(t,e){var r=c(t).toHsl(),n=(r.h+e)%360;return r.h=n<0?360+n:n,c(r)}function _(t){var e=c(t).toHsl();return e.h=(e.h+180)%360,c(e)}function w(t){var e=c(t).toHsl(),r=e.h;return[c(t),c({h:(r+120)%360,s:e.s,l:e.l}),c({h:(r+240)%360,s:e.s,l:e.l})]}function k(t){var e=c(t).toHsl(),r=e.h;return[c(t),c({h:(r+90)%360,s:e.s,l:e.l}),c({h:(r+180)%360,s:e.s,l:e.l}),c({h:(r+270)%360,s:e.s,l:e.l})]}function T(t){var e=c(t).toHsl(),r=e.h;return[c(t),c({h:(r+72)%360,s:e.s,l:e.l}),c({h:(r+216)%360,s:e.s,l:e.l})]}function A(t,e,r){e=e||6,r=r||30;var n=c(t).toHsl(),a=360/r,i=[c(t)];for(n.h=(n.h-(a*e>>1)+720)%360;--e;)n.h=(n.h+a)%360,i.push(c(n));return i}function M(t,e){e=e||6;for(var r=c(t).toHsv(),n=r.h,a=r.s,i=r.v,o=[],s=1/e;e--;)o.push(c({h:n,s:a,v:i})),i=(i+s)%1;return o}c.prototype={isDark:function(){return this.getBrightness()<128},isLight:function(){return!this.isDark()},isValid:function(){return this._ok},getOriginalInput:function(){return this._originalInput},getFormat:function(){return this._format},getAlpha:function(){return this._a},getBrightness:function(){var t=this.toRgb();return(299*t.r+587*t.g+114*t.b)/1e3},getLuminance:function(){var e,r,n,a=this.toRgb();return e=a.r/255,r=a.g/255,n=a.b/255,.2126*(e<=.03928?e/12.92:t.pow((e+.055)/1.055,2.4))+.7152*(r<=.03928?r/12.92:t.pow((r+.055)/1.055,2.4))+.0722*(n<=.03928?n/12.92:t.pow((n+.055)/1.055,2.4))},setAlpha:function(t){return this._a=C(t),this._roundA=i(100*this._a)/100,this},toHsv:function(){var t=h(this._r,this._g,this._b);return{h:360*t.h,s:t.s,v:t.v,a:this._a}},toHsvString:function(){var t=h(this._r,this._g,this._b),e=i(360*t.h),r=i(100*t.s),n=i(100*t.v);return 1==this._a?\"hsv(\"+e+\", \"+r+\"%, \"+n+\"%)\":\"hsva(\"+e+\", \"+r+\"%, \"+n+\"%, \"+this._roundA+\")\"},toHsl:function(){var t=u(this._r,this._g,this._b);return{h:360*t.h,s:t.s,l:t.l,a:this._a}},toHslString:function(){var t=u(this._r,this._g,this._b),e=i(360*t.h),r=i(100*t.s),n=i(100*t.l);return 1==this._a?\"hsl(\"+e+\", \"+r+\"%, \"+n+\"%)\":\"hsla(\"+e+\", \"+r+\"%, \"+n+\"%, \"+this._roundA+\")\"},toHex:function(t){return f(this._r,this._g,this._b,t)},toHexString:function(t){return\"#\"+this.toHex(t)},toHex8:function(t){return function(t,e,r,n,a){var o=[I(i(t).toString(16)),I(i(e).toString(16)),I(i(r).toString(16)),I(D(n))];if(a&&o[0].charAt(0)==o[0].charAt(1)&&o[1].charAt(0)==o[1].charAt(1)&&o[2].charAt(0)==o[2].charAt(1)&&o[3].charAt(0)==o[3].charAt(1))return o[0].charAt(0)+o[1].charAt(0)+o[2].charAt(0)+o[3].charAt(0);return o.join(\"\")}(this._r,this._g,this._b,this._a,t)},toHex8String:function(t){return\"#\"+this.toHex8(t)},toRgb:function(){return{r:i(this._r),g:i(this._g),b:i(this._b),a:this._a}},toRgbString:function(){return 1==this._a?\"rgb(\"+i(this._r)+\", \"+i(this._g)+\", \"+i(this._b)+\")\":\"rgba(\"+i(this._r)+\", \"+i(this._g)+\", \"+i(this._b)+\", \"+this._roundA+\")\"},toPercentageRgb:function(){return{r:i(100*L(this._r,255))+\"%\",g:i(100*L(this._g,255))+\"%\",b:i(100*L(this._b,255))+\"%\",a:this._a}},toPercentageRgbString:function(){return 1==this._a?\"rgb(\"+i(100*L(this._r,255))+\"%, \"+i(100*L(this._g,255))+\"%, \"+i(100*L(this._b,255))+\"%)\":\"rgba(\"+i(100*L(this._r,255))+\"%, \"+i(100*L(this._g,255))+\"%, \"+i(100*L(this._b,255))+\"%, \"+this._roundA+\")\"},toName:function(){return 0===this._a?\"transparent\":!(this._a<1)&&(E[f(this._r,this._g,this._b,!0)]||!1)},toFilter:function(t){var e=\"#\"+p(this._r,this._g,this._b,this._a),r=e,n=this._gradientType?\"GradientType = 1, \":\"\";if(t){var a=c(t);r=\"#\"+p(a._r,a._g,a._b,a._a)}return\"progid:DXImageTransform.Microsoft.gradient(\"+n+\"startColorstr=\"+e+\",endColorstr=\"+r+\")\"},toString:function(t){var e=!!t;t=t||this._format;var r=!1,n=this._a<1&&this._a>=0;return e||!n||\"hex\"!==t&&\"hex6\"!==t&&\"hex3\"!==t&&\"hex4\"!==t&&\"hex8\"!==t&&\"name\"!==t?(\"rgb\"===t&&(r=this.toRgbString()),\"prgb\"===t&&(r=this.toPercentageRgbString()),\"hex\"!==t&&\"hex6\"!==t||(r=this.toHexString()),\"hex3\"===t&&(r=this.toHexString(!0)),\"hex4\"===t&&(r=this.toHex8String(!0)),\"hex8\"===t&&(r=this.toHex8String()),\"name\"===t&&(r=this.toName()),\"hsl\"===t&&(r=this.toHslString()),\"hsv\"===t&&(r=this.toHsvString()),r||this.toHexString()):\"name\"===t&&0===this._a?this.toName():this.toRgbString()},clone:function(){return c(this.toString())},_applyModification:function(t,e){var r=t.apply(null,[this].concat([].slice.call(e)));return this._r=r._r,this._g=r._g,this._b=r._b,this.setAlpha(r._a),this},lighten:function(){return this._applyModification(m,arguments)},brighten:function(){return this._applyModification(y,arguments)},darken:function(){return this._applyModification(x,arguments)},desaturate:function(){return this._applyModification(d,arguments)},saturate:function(){return this._applyModification(g,arguments)},greyscale:function(){return this._applyModification(v,arguments)},spin:function(){return this._applyModification(b,arguments)},_applyCombination:function(t,e){return t.apply(null,[this].concat([].slice.call(e)))},analogous:function(){return this._applyCombination(A,arguments)},complement:function(){return this._applyCombination(_,arguments)},monochromatic:function(){return this._applyCombination(M,arguments)},splitcomplement:function(){return this._applyCombination(T,arguments)},triad:function(){return this._applyCombination(w,arguments)},tetrad:function(){return this._applyCombination(k,arguments)}},c.fromRatio=function(t,e){if(\"object\"==typeof t){var r={};for(var n in t)t.hasOwnProperty(n)&&(r[n]=\"a\"===n?t[n]:z(t[n]));t=r}return c(t,e)},c.equals=function(t,e){return!(!t||!e)&&c(t).toRgbString()==c(e).toRgbString()},c.random=function(){return c.fromRatio({r:l(),g:l(),b:l()})},c.mix=function(t,e,r){r=0===r?0:r||50;var n=c(t).toRgb(),a=c(e).toRgb(),i=r/100;return c({r:(a.r-n.r)*i+n.r,g:(a.g-n.g)*i+n.g,b:(a.b-n.b)*i+n.b,a:(a.a-n.a)*i+n.a})},c.readability=function(e,r){var n=c(e),a=c(r);return(t.max(n.getLuminance(),a.getLuminance())+.05)/(t.min(n.getLuminance(),a.getLuminance())+.05)},c.isReadable=function(t,e,r){var n,a,i=c.readability(t,e);switch(a=!1,(n=function(t){var e,r;e=((t=t||{level:\"AA\",size:\"small\"}).level||\"AA\").toUpperCase(),r=(t.size||\"small\").toLowerCase(),\"AA\"!==e&&\"AAA\"!==e&&(e=\"AA\");\"small\"!==r&&\"large\"!==r&&(r=\"small\");return{level:e,size:r}}(r)).level+n.size){case\"AAsmall\":case\"AAAlarge\":a=i>=4.5;break;case\"AAlarge\":a=i>=3;break;case\"AAAsmall\":a=i>=7}return a},c.mostReadable=function(t,e,r){var n,a,i,o,s=null,l=0;a=(r=r||{}).includeFallbackColors,i=r.level,o=r.size;for(var u=0;u<e.length;u++)(n=c.readability(t,e[u]))>l&&(l=n,s=c(e[u]));return c.isReadable(t,s,{level:i,size:o})||!a?s:(r.includeFallbackColors=!1,c.mostReadable(t,[\"#fff\",\"#000\"],r))};var S=c.names={aliceblue:\"f0f8ff\",antiquewhite:\"faebd7\",aqua:\"0ff\",aquamarine:\"7fffd4\",azure:\"f0ffff\",beige:\"f5f5dc\",bisque:\"ffe4c4\",black:\"000\",blanchedalmond:\"ffebcd\",blue:\"00f\",blueviolet:\"8a2be2\",brown:\"a52a2a\",burlywood:\"deb887\",burntsienna:\"ea7e5d\",cadetblue:\"5f9ea0\",chartreuse:\"7fff00\",chocolate:\"d2691e\",coral:\"ff7f50\",cornflowerblue:\"6495ed\",cornsilk:\"fff8dc\",crimson:\"dc143c\",cyan:\"0ff\",darkblue:\"00008b\",darkcyan:\"008b8b\",darkgoldenrod:\"b8860b\",darkgray:\"a9a9a9\",darkgreen:\"006400\",darkgrey:\"a9a9a9\",darkkhaki:\"bdb76b\",darkmagenta:\"8b008b\",darkolivegreen:\"556b2f\",darkorange:\"ff8c00\",darkorchid:\"9932cc\",darkred:\"8b0000\",darksalmon:\"e9967a\",darkseagreen:\"8fbc8f\",darkslateblue:\"483d8b\",darkslategray:\"2f4f4f\",darkslategrey:\"2f4f4f\",darkturquoise:\"00ced1\",darkviolet:\"9400d3\",deeppink:\"ff1493\",deepskyblue:\"00bfff\",dimgray:\"696969\",dimgrey:\"696969\",dodgerblue:\"1e90ff\",firebrick:\"b22222\",floralwhite:\"fffaf0\",forestgreen:\"228b22\",fuchsia:\"f0f\",gainsboro:\"dcdcdc\",ghostwhite:\"f8f8ff\",gold:\"ffd700\",goldenrod:\"daa520\",gray:\"808080\",green:\"008000\",greenyellow:\"adff2f\",grey:\"808080\",honeydew:\"f0fff0\",hotpink:\"ff69b4\",indianred:\"cd5c5c\",indigo:\"4b0082\",ivory:\"fffff0\",khaki:\"f0e68c\",lavender:\"e6e6fa\",lavenderblush:\"fff0f5\",lawngreen:\"7cfc00\",lemonchiffon:\"fffacd\",lightblue:\"add8e6\",lightcoral:\"f08080\",lightcyan:\"e0ffff\",lightgoldenrodyellow:\"fafad2\",lightgray:\"d3d3d3\",lightgreen:\"90ee90\",lightgrey:\"d3d3d3\",lightpink:\"ffb6c1\",lightsalmon:\"ffa07a\",lightseagreen:\"20b2aa\",lightskyblue:\"87cefa\",lightslategray:\"789\",lightslategrey:\"789\",lightsteelblue:\"b0c4de\",lightyellow:\"ffffe0\",lime:\"0f0\",limegreen:\"32cd32\",linen:\"faf0e6\",magenta:\"f0f\",maroon:\"800000\",mediumaquamarine:\"66cdaa\",mediumblue:\"0000cd\",mediumorchid:\"ba55d3\",mediumpurple:\"9370db\",mediumseagreen:\"3cb371\",mediumslateblue:\"7b68ee\",mediumspringgreen:\"00fa9a\",mediumturquoise:\"48d1cc\",mediumvioletred:\"c71585\",midnightblue:\"191970\",mintcream:\"f5fffa\",mistyrose:\"ffe4e1\",moccasin:\"ffe4b5\",navajowhite:\"ffdead\",navy:\"000080\",oldlace:\"fdf5e6\",olive:\"808000\",olivedrab:\"6b8e23\",orange:\"ffa500\",orangered:\"ff4500\",orchid:\"da70d6\",palegoldenrod:\"eee8aa\",palegreen:\"98fb98\",paleturquoise:\"afeeee\",palevioletred:\"db7093\",papayawhip:\"ffefd5\",peachpuff:\"ffdab9\",peru:\"cd853f\",pink:\"ffc0cb\",plum:\"dda0dd\",powderblue:\"b0e0e6\",purple:\"800080\",rebeccapurple:\"663399\",red:\"f00\",rosybrown:\"bc8f8f\",royalblue:\"4169e1\",saddlebrown:\"8b4513\",salmon:\"fa8072\",sandybrown:\"f4a460\",seagreen:\"2e8b57\",seashell:\"fff5ee\",sienna:\"a0522d\",silver:\"c0c0c0\",skyblue:\"87ceeb\",slateblue:\"6a5acd\",slategray:\"708090\",slategrey:\"708090\",snow:\"fffafa\",springgreen:\"00ff7f\",steelblue:\"4682b4\",tan:\"d2b48c\",teal:\"008080\",thistle:\"d8bfd8\",tomato:\"ff6347\",turquoise:\"40e0d0\",violet:\"ee82ee\",wheat:\"f5deb3\",white:\"fff\",whitesmoke:\"f5f5f5\",yellow:\"ff0\",yellowgreen:\"9acd32\"},E=c.hexNames=function(t){var e={};for(var r in t)t.hasOwnProperty(r)&&(e[t[r]]=r);return e}(S);function C(t){return t=parseFloat(t),(isNaN(t)||t<0||t>1)&&(t=1),t}function L(e,r){(function(t){return\"string\"==typeof t&&-1!=t.indexOf(\".\")&&1===parseFloat(t)})(e)&&(e=\"100%\");var n=function(t){return\"string\"==typeof t&&-1!=t.indexOf(\"%\")}(e);return e=o(r,s(0,parseFloat(e))),n&&(e=parseInt(e*r,10)/100),t.abs(e-r)<1e-6?1:e%r/parseFloat(r)}function P(t){return o(1,s(0,t))}function O(t){return parseInt(t,16)}function I(t){return 1==t.length?\"0\"+t:\"\"+t}function z(t){return t<=1&&(t=100*t+\"%\"),t}function D(e){return t.round(255*parseFloat(e)).toString(16)}function R(t){return O(t)/255}var F,B,N,j=(B=\"[\\\\s|\\\\(]+(\"+(F=\"(?:[-\\\\+]?\\\\d*\\\\.\\\\d+%?)|(?:[-\\\\+]?\\\\d+%?)\")+\")[,|\\\\s]+(\"+F+\")[,|\\\\s]+(\"+F+\")\\\\s*\\\\)?\",N=\"[\\\\s|\\\\(]+(\"+F+\")[,|\\\\s]+(\"+F+\")[,|\\\\s]+(\"+F+\")[,|\\\\s]+(\"+F+\")\\\\s*\\\\)?\",{CSS_UNIT:new RegExp(F),rgb:new RegExp(\"rgb\"+B),rgba:new RegExp(\"rgba\"+N),hsl:new RegExp(\"hsl\"+B),hsla:new RegExp(\"hsla\"+N),hsv:new RegExp(\"hsv\"+B),hsva:new RegExp(\"hsva\"+N),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/});function V(t){return!!j.CSS_UNIT.exec(t)}\"undefined\"!=typeof e&&e.exports?e.exports=c:window.tinycolor=c}(Math)},{}],539:[function(t,e,r){\"use strict\";e.exports=a,e.exports.float32=e.exports.float=a,e.exports.fract32=e.exports.fract=function(t){if(t.length){for(var e=a(t),r=0,n=e.length;r<n;r++)e[r]=t[r]-e[r];return e}return a(t-a(t))};var n=new Float32Array(1);function a(t){if(t.length){if(t instanceof Float32Array)return t;var e=new Float32Array(t);return e.set(t),e}return n[0]=t,n[0]}},{}],540:[function(t,e,r){\"use strict\";var n=t(\"parse-unit\");e.exports=o;var a=96;function i(t,e){var r=n(getComputedStyle(t).getPropertyValue(e));return r[0]*o(r[1],t)}function o(t,e){switch(e=e||document.body,t=(t||\"px\").trim().toLowerCase(),e!==window&&e!==document||(e=document.body),t){case\"%\":return e.clientHeight/100;case\"ch\":case\"ex\":return function(t,e){var r=document.createElement(\"div\");r.style[\"font-size\"]=\"128\"+t,e.appendChild(r);var n=i(r,\"font-size\")/128;return e.removeChild(r),n}(t,e);case\"em\":return i(e,\"font-size\");case\"rem\":return i(document.body,\"font-size\");case\"vw\":return window.innerWidth/100;case\"vh\":return window.innerHeight/100;case\"vmin\":return Math.min(window.innerWidth,window.innerHeight)/100;case\"vmax\":return Math.max(window.innerWidth,window.innerHeight)/100;case\"in\":return a;case\"cm\":return a/2.54;case\"mm\":return a/25.4;case\"pt\":return a/72;case\"pc\":return a/6}return 1}},{\"parse-unit\":462}],541:[function(t,e,r){var n;n=this,function(t){\"use strict\";var e=function(t){return t},r=function(t){if(null==(r=t.transform))return e;var r,n,a,i=r.scale[0],o=r.scale[1],s=r.translate[0],l=r.translate[1];return function(t,e){return e||(n=a=0),t[0]=(n+=t[0])*i+s,t[1]=(a+=t[1])*o+l,t}},n=function(t){var e=t.bbox;function n(t){l[0]=t[0],l[1]=t[1],s(l),l[0]<c&&(c=l[0]),l[0]>h&&(h=l[0]),l[1]<u&&(u=l[1]),l[1]>f&&(f=l[1])}function a(t){switch(t.type){case\"GeometryCollection\":t.geometries.forEach(a);break;case\"Point\":n(t.coordinates);break;case\"MultiPoint\":t.coordinates.forEach(n)}}if(!e){var i,o,s=r(t),l=new Array(2),c=1/0,u=c,h=-c,f=-c;for(o in t.arcs.forEach(function(t){for(var e=-1,r=t.length;++e<r;)i=t[e],l[0]=i[0],l[1]=i[1],s(l,e),l[0]<c&&(c=l[0]),l[0]>h&&(h=l[0]),l[1]<u&&(u=l[1]),l[1]>f&&(f=l[1])}),t.objects)a(t.objects[o]);e=t.bbox=[c,u,h,f]}return e},a=function(t,e){for(var r,n=t.length,a=n-e;a<--n;)r=t[a],t[a++]=t[n],t[n]=r};function i(t,e){var r=e.id,n=e.bbox,a=null==e.properties?{}:e.properties,i=o(t,e);return null==r&&null==n?{type:\"Feature\",properties:a,geometry:i}:null==n?{type:\"Feature\",id:r,properties:a,geometry:i}:{type:\"Feature\",id:r,bbox:n,properties:a,geometry:i}}function o(t,e){var n=r(t),i=t.arcs;function o(t,e){e.length&&e.pop();for(var r=i[t<0?~t:t],o=0,s=r.length;o<s;++o)e.push(n(r[o].slice(),o));t<0&&a(e,s)}function s(t){return n(t.slice())}function l(t){for(var e=[],r=0,n=t.length;r<n;++r)o(t[r],e);return e.length<2&&e.push(e[0].slice()),e}function c(t){for(var e=l(t);e.length<4;)e.push(e[0].slice());return e}function u(t){return t.map(c)}return function t(e){var r,n=e.type;switch(n){case\"GeometryCollection\":return{type:n,geometries:e.geometries.map(t)};case\"Point\":r=s(e.coordinates);break;case\"MultiPoint\":r=e.coordinates.map(s);break;case\"LineString\":r=l(e.arcs);break;case\"MultiLineString\":r=e.arcs.map(l);break;case\"Polygon\":r=u(e.arcs);break;case\"MultiPolygon\":r=e.arcs.map(u);break;default:return null}return{type:n,coordinates:r}}(e)}var s=function(t,e){var r={},n={},a={},i=[],o=-1;function s(t,e){for(var n in t){var a=t[n];delete e[a.start],delete a.start,delete a.end,a.forEach(function(t){r[t<0?~t:t]=1}),i.push(a)}}return e.forEach(function(r,n){var a,i=t.arcs[r<0?~r:r];i.length<3&&!i[1][0]&&!i[1][1]&&(a=e[++o],e[o]=r,e[n]=a)}),e.forEach(function(e){var r,i,o=function(e){var r,n=t.arcs[e<0?~e:e],a=n[0];t.transform?(r=[0,0],n.forEach(function(t){r[0]+=t[0],r[1]+=t[1]})):r=n[n.length-1];return e<0?[r,a]:[a,r]}(e),s=o[0],l=o[1];if(r=a[s])if(delete a[r.end],r.push(e),r.end=l,i=n[l]){delete n[i.start];var c=i===r?r:r.concat(i);n[c.start=r.start]=a[c.end=i.end]=c}else n[r.start]=a[r.end]=r;else if(r=n[l])if(delete n[r.start],r.unshift(e),r.start=s,i=a[s]){delete a[i.end];var u=i===r?r:i.concat(r);n[u.start=i.start]=a[u.end=r.end]=u}else n[r.start]=a[r.end]=r;else n[(r=[e]).start=s]=a[r.end=l]=r}),s(a,n),s(n,a),e.forEach(function(t){r[t<0?~t:t]||i.push([t])}),i};function l(t,e,r){var n,a,i;if(arguments.length>1)n=function(t,e,r){var n,a=[],i=[];function o(t){var e=t<0?~t:t;(i[e]||(i[e]=[])).push({i:t,g:n})}function s(t){t.forEach(o)}function l(t){t.forEach(s)}return function t(e){switch(n=e,e.type){case\"GeometryCollection\":e.geometries.forEach(t);break;case\"LineString\":s(e.arcs);break;case\"MultiLineString\":case\"Polygon\":l(e.arcs);break;case\"MultiPolygon\":e.arcs.forEach(l)}}(e),i.forEach(null==r?function(t){a.push(t[0].i)}:function(t){r(t[0].g,t[t.length-1].g)&&a.push(t[0].i)}),a}(0,e,r);else for(a=0,n=new Array(i=t.arcs.length);a<i;++a)n[a]=a;return{type:\"MultiLineString\",arcs:s(t,n)}}function c(t,e){var r={},n=[],a=[];function i(t){t.forEach(function(e){e.forEach(function(e){(r[e=e<0?~e:e]||(r[e]=[])).push(t)})}),n.push(t)}function l(e){return function(t){for(var e,r=-1,n=t.length,a=t[n-1],i=0;++r<n;)e=a,a=t[r],i+=e[0]*a[1]-e[1]*a[0];return Math.abs(i)}(o(t,{type:\"Polygon\",arcs:[e]}).coordinates[0])}return e.forEach(function t(e){switch(e.type){case\"GeometryCollection\":e.geometries.forEach(t);break;case\"Polygon\":i(e.arcs);break;case\"MultiPolygon\":e.arcs.forEach(i)}}),n.forEach(function(t){if(!t._){var e=[],n=[t];for(t._=1,a.push(e);t=n.pop();)e.push(t),t.forEach(function(t){t.forEach(function(t){r[t<0?~t:t].forEach(function(t){t._||(t._=1,n.push(t))})})})}}),n.forEach(function(t){delete t._}),{type:\"MultiPolygon\",arcs:a.map(function(e){var n,a=[];if(e.forEach(function(t){t.forEach(function(t){t.forEach(function(t){r[t<0?~t:t].length<2&&a.push(t)})})}),(n=(a=s(t,a)).length)>1)for(var i,o,c=1,u=l(a[0]);c<n;++c)(i=l(a[c]))>u&&(o=a[0],a[0]=a[c],a[c]=o,u=i);return a})}}var u=function(t,e){for(var r=0,n=t.length;r<n;){var a=r+n>>>1;t[a]<e?r=a+1:n=a}return r};t.bbox=n,t.feature=function(t,e){return\"GeometryCollection\"===e.type?{type:\"FeatureCollection\",features:e.geometries.map(function(e){return i(t,e)})}:i(t,e)},t.mesh=function(t){return o(t,l.apply(this,arguments))},t.meshArcs=l,t.merge=function(t){return o(t,c.apply(this,arguments))},t.mergeArcs=c,t.neighbors=function(t){var e={},r=t.map(function(){return[]});function n(t,r){t.forEach(function(t){t<0&&(t=~t);var n=e[t];n?n.push(r):e[t]=[r]})}function a(t,e){t.forEach(function(t){n(t,e)})}var i={LineString:n,MultiLineString:a,Polygon:a,MultiPolygon:function(t,e){t.forEach(function(t){a(t,e)})}};for(var o in t.forEach(function t(e,r){\"GeometryCollection\"===e.type?e.geometries.forEach(function(e){t(e,r)}):e.type in i&&i[e.type](e.arcs,r)}),e)for(var s=e[o],l=s.length,c=0;c<l;++c)for(var h=c+1;h<l;++h){var f,p=s[c],d=s[h];(f=r[p])[o=u(f,d)]!==d&&f.splice(o,0,d),(f=r[d])[o=u(f,p)]!==p&&f.splice(o,0,p)}return r},t.quantize=function(t,e){if(!((e=Math.floor(e))>=2))throw new Error(\"n must be \\u22652\");if(t.transform)throw new Error(\"already quantized\");var r,a=n(t),i=a[0],o=(a[2]-i)/(e-1)||1,s=a[1],l=(a[3]-s)/(e-1)||1;function c(t){t[0]=Math.round((t[0]-i)/o),t[1]=Math.round((t[1]-s)/l)}function u(t){switch(t.type){case\"GeometryCollection\":t.geometries.forEach(u);break;case\"Point\":c(t.coordinates);break;case\"MultiPoint\":t.coordinates.forEach(c)}}for(r in t.arcs.forEach(function(t){for(var e,r,n,a=1,c=1,u=t.length,h=t[0],f=h[0]=Math.round((h[0]-i)/o),p=h[1]=Math.round((h[1]-s)/l);a<u;++a)h=t[a],r=Math.round((h[0]-i)/o),n=Math.round((h[1]-s)/l),r===f&&n===p||((e=t[c++])[0]=r-f,f=r,e[1]=n-p,p=n);c<2&&((e=t[c++])[0]=0,e[1]=0),t.length=c}),t.objects)u(t.objects[r]);return t.transform={scale:[o,l],translate:[i,s]},t},t.transform=r,t.untransform=function(t){if(null==(r=t.transform))return e;var r,n,a,i=r.scale[0],o=r.scale[1],s=r.translate[0],l=r.translate[1];return function(t,e){e||(n=a=0);var r=Math.round((t[0]-s)/i),c=Math.round((t[1]-l)/o);return t[0]=r-n,n=r,t[1]=c-a,a=c,t}},Object.defineProperty(t,\"__esModule\",{value:!0})}(\"object\"==typeof r&&\"undefined\"!=typeof e?r:n.topojson=n.topojson||{})},{}],542:[function(t,e,r){\"use strict\";e.exports=function(t){if(t<0)return[];if(0===t)return[[0]];for(var e=0|Math.round(i(t+1)),r=[],o=0;o<e;++o){for(var s=n.unrank(t,o),l=[0],c=0,u=0;u<s.length;++u)c+=1<<s[u],l.push(c);a(s)<1&&(l[0]=c,l[t]=0),r.push(l)}return r};var n=t(\"permutation-rank\"),a=t(\"permutation-parity\"),i=t(\"gamma\")},{gamma:232,\"permutation-parity\":464,\"permutation-rank\":465}],543:[function(t,e,r){\"use strict\";e.exports=function(t){var e=(t=t||{}).center||[0,0,0],r=t.up||[0,1,0],n=t.right||h(r),a=t.radius||1,i=t.theta||0,u=t.phi||0;if(e=[].slice.call(e,0,3),r=[].slice.call(r,0,3),s(r,r),n=[].slice.call(n,0,3),s(n,n),\"eye\"in t){var p=t.eye,d=[p[0]-e[0],p[1]-e[1],p[2]-e[2]];o(n,d,r),c(n[0],n[1],n[2])<1e-6?n=h(r):s(n,n),a=c(d[0],d[1],d[2]);var g=l(r,d)/a,v=l(n,d)/a;u=Math.acos(g),i=Math.acos(v)}return a=Math.log(a),new f(t.zoomMin,t.zoomMax,e,r,n,a,i,u)};var n=t(\"filtered-vector\"),a=t(\"gl-mat4/invert\"),i=t(\"gl-mat4/rotate\"),o=t(\"gl-vec3/cross\"),s=t(\"gl-vec3/normalize\"),l=t(\"gl-vec3/dot\");function c(t,e,r){return Math.sqrt(Math.pow(t,2)+Math.pow(e,2)+Math.pow(r,2))}function u(t){return Math.min(1,Math.max(-1,t))}function h(t){var e=Math.abs(t[0]),r=Math.abs(t[1]),n=Math.abs(t[2]),a=[0,0,0];e>Math.max(r,n)?a[2]=1:r>Math.max(e,n)?a[0]=1:a[1]=1;for(var i=0,o=0,l=0;l<3;++l)i+=t[l]*t[l],o+=a[l]*t[l];for(l=0;l<3;++l)a[l]-=o/i*t[l];return s(a,a),a}function f(t,e,r,a,i,o,s,l){this.center=n(r),this.up=n(a),this.right=n(i),this.radius=n([o]),this.angle=n([s,l]),this.angle.bounds=[[-1/0,-Math.PI/2],[1/0,Math.PI/2]],this.setDistanceLimits(t,e),this.computedCenter=this.center.curve(0),this.computedUp=this.up.curve(0),this.computedRight=this.right.curve(0),this.computedRadius=this.radius.curve(0),this.computedAngle=this.angle.curve(0),this.computedToward=[0,0,0],this.computedEye=[0,0,0],this.computedMatrix=new Array(16);for(var c=0;c<16;++c)this.computedMatrix[c]=.5;this.recalcMatrix(0)}var p=f.prototype;p.setDistanceLimits=function(t,e){t=t>0?Math.log(t):-1/0,e=e>0?Math.log(e):1/0,e=Math.max(e,t),this.radius.bounds[0][0]=t,this.radius.bounds[1][0]=e},p.getDistanceLimits=function(t){var e=this.radius.bounds[0];return t?(t[0]=Math.exp(e[0][0]),t[1]=Math.exp(e[1][0]),t):[Math.exp(e[0][0]),Math.exp(e[1][0])]},p.recalcMatrix=function(t){this.center.curve(t),this.up.curve(t),this.right.curve(t),this.radius.curve(t),this.angle.curve(t);for(var e=this.computedUp,r=this.computedRight,n=0,a=0,i=0;i<3;++i)a+=e[i]*r[i],n+=e[i]*e[i];var l=Math.sqrt(n),u=0;for(i=0;i<3;++i)r[i]-=e[i]*a/n,u+=r[i]*r[i],e[i]/=l;var h=Math.sqrt(u);for(i=0;i<3;++i)r[i]/=h;var f=this.computedToward;o(f,e,r),s(f,f);var p=Math.exp(this.computedRadius[0]),d=this.computedAngle[0],g=this.computedAngle[1],v=Math.cos(d),m=Math.sin(d),y=Math.cos(g),x=Math.sin(g),b=this.computedCenter,_=v*y,w=m*y,k=x,T=-v*x,A=-m*x,M=y,S=this.computedEye,E=this.computedMatrix;for(i=0;i<3;++i){var C=_*r[i]+w*f[i]+k*e[i];E[4*i+1]=T*r[i]+A*f[i]+M*e[i],E[4*i+2]=C,E[4*i+3]=0}var L=E[1],P=E[5],O=E[9],I=E[2],z=E[6],D=E[10],R=P*D-O*z,F=O*I-L*D,B=L*z-P*I,N=c(R,F,B);R/=N,F/=N,B/=N,E[0]=R,E[4]=F,E[8]=B;for(i=0;i<3;++i)S[i]=b[i]+E[2+4*i]*p;for(i=0;i<3;++i){u=0;for(var j=0;j<3;++j)u+=E[i+4*j]*S[j];E[12+i]=-u}E[15]=1},p.getMatrix=function(t,e){this.recalcMatrix(t);var r=this.computedMatrix;if(e){for(var n=0;n<16;++n)e[n]=r[n];return e}return r};var d=[0,0,0];p.rotate=function(t,e,r,n){if(this.angle.move(t,e,r),n){this.recalcMatrix(t);var a=this.computedMatrix;d[0]=a[2],d[1]=a[6],d[2]=a[10];for(var o=this.computedUp,s=this.computedRight,l=this.computedToward,c=0;c<3;++c)a[4*c]=o[c],a[4*c+1]=s[c],a[4*c+2]=l[c];i(a,a,n,d);for(c=0;c<3;++c)o[c]=a[4*c],s[c]=a[4*c+1];this.up.set(t,o[0],o[1],o[2]),this.right.set(t,s[0],s[1],s[2])}},p.pan=function(t,e,r,n){e=e||0,r=r||0,n=n||0,this.recalcMatrix(t);var a=this.computedMatrix,i=(Math.exp(this.computedRadius[0]),a[1]),o=a[5],s=a[9],l=c(i,o,s);i/=l,o/=l,s/=l;var u=a[0],h=a[4],f=a[8],p=u*i+h*o+f*s,d=c(u-=i*p,h-=o*p,f-=s*p),g=(u/=d)*e+i*r,v=(h/=d)*e+o*r,m=(f/=d)*e+s*r;this.center.move(t,g,v,m);var y=Math.exp(this.computedRadius[0]);y=Math.max(1e-4,y+n),this.radius.set(t,Math.log(y))},p.translate=function(t,e,r,n){this.center.move(t,e||0,r||0,n||0)},p.setMatrix=function(t,e,r,n){var i=1;\"number\"==typeof r&&(i=0|r),(i<0||i>3)&&(i=1);var o=(i+2)%3;e||(this.recalcMatrix(t),e=this.computedMatrix);var s=e[i],l=e[i+4],h=e[i+8];if(n){var f=Math.abs(s),p=Math.abs(l),d=Math.abs(h),g=Math.max(f,p,d);f===g?(s=s<0?-1:1,l=h=0):d===g?(h=h<0?-1:1,s=l=0):(l=l<0?-1:1,s=h=0)}else{var v=c(s,l,h);s/=v,l/=v,h/=v}var m,y,x=e[o],b=e[o+4],_=e[o+8],w=x*s+b*l+_*h,k=c(x-=s*w,b-=l*w,_-=h*w),T=l*(_/=k)-h*(b/=k),A=h*(x/=k)-s*_,M=s*b-l*x,S=c(T,A,M);if(T/=S,A/=S,M/=S,this.center.jump(t,H,G,Y),this.radius.idle(t),this.up.jump(t,s,l,h),this.right.jump(t,x,b,_),2===i){var E=e[1],C=e[5],L=e[9],P=E*x+C*b+L*_,O=E*T+C*A+L*M;m=R<0?-Math.PI/2:Math.PI/2,y=Math.atan2(O,P)}else{var I=e[2],z=e[6],D=e[10],R=I*s+z*l+D*h,F=I*x+z*b+D*_,B=I*T+z*A+D*M;m=Math.asin(u(R)),y=Math.atan2(B,F)}this.angle.jump(t,y,m),this.recalcMatrix(t);var N=e[2],j=e[6],V=e[10],U=this.computedMatrix;a(U,e);var q=U[15],H=U[12]/q,G=U[13]/q,Y=U[14]/q,W=Math.exp(this.computedRadius[0]);this.center.jump(t,H-N*W,G-j*W,Y-V*W)},p.lastT=function(){return Math.max(this.center.lastT(),this.up.lastT(),this.right.lastT(),this.radius.lastT(),this.angle.lastT())},p.idle=function(t){this.center.idle(t),this.up.idle(t),this.right.idle(t),this.radius.idle(t),this.angle.idle(t)},p.flush=function(t){this.center.flush(t),this.up.flush(t),this.right.flush(t),this.radius.flush(t),this.angle.flush(t)},p.setDistance=function(t,e){e>0&&this.radius.set(t,Math.log(e))},p.lookAt=function(t,e,r,n){this.recalcMatrix(t),e=e||this.computedEye,r=r||this.computedCenter;var a=(n=n||this.computedUp)[0],i=n[1],o=n[2],s=c(a,i,o);if(!(s<1e-6)){a/=s,i/=s,o/=s;var l=e[0]-r[0],h=e[1]-r[1],f=e[2]-r[2],p=c(l,h,f);if(!(p<1e-6)){l/=p,h/=p,f/=p;var d=this.computedRight,g=d[0],v=d[1],m=d[2],y=a*g+i*v+o*m,x=c(g-=y*a,v-=y*i,m-=y*o);if(!(x<.01&&(x=c(g=i*f-o*h,v=o*l-a*f,m=a*h-i*l))<1e-6)){g/=x,v/=x,m/=x,this.up.set(t,a,i,o),this.right.set(t,g,v,m),this.center.set(t,r[0],r[1],r[2]),this.radius.set(t,Math.log(p));var b=i*m-o*v,_=o*g-a*m,w=a*v-i*g,k=c(b,_,w),T=a*l+i*h+o*f,A=g*l+v*h+m*f,M=(b/=k)*l+(_/=k)*h+(w/=k)*f,S=Math.asin(u(T)),E=Math.atan2(M,A),C=this.angle._state,L=C[C.length-1],P=C[C.length-2];L%=2*Math.PI;var O=Math.abs(L+2*Math.PI-E),I=Math.abs(L-E),z=Math.abs(L-2*Math.PI-E);O<I&&(L+=2*Math.PI),z<I&&(L-=2*Math.PI),this.angle.jump(this.angle.lastT(),L,P),this.angle.set(t,E,S)}}}}},{\"filtered-vector\":227,\"gl-mat4/invert\":266,\"gl-mat4/rotate\":271,\"gl-vec3/cross\":335,\"gl-vec3/dot\":340,\"gl-vec3/normalize\":357}],544:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){var a=t*e,i=n*t,o=i-(i-t),s=t-o,l=n*e,c=l-(l-e),u=e-c,h=s*u-(a-o*c-s*c-o*u);if(r)return r[0]=h,r[1]=a,r;return[h,a]};var n=+(Math.pow(2,27)+1)},{}],545:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){var n=t+e,a=n-t,i=e-a,o=t-(n-a);if(r)return r[0]=o+i,r[1]=n,r;return[o+i,n]}},{}],546:[function(t,e,r){(function(e,n){\"use strict\";var a=t(\"bit-twiddle\"),i=t(\"dup\");e.__TYPEDARRAY_POOL||(e.__TYPEDARRAY_POOL={UINT8:i([32,0]),UINT16:i([32,0]),UINT32:i([32,0]),INT8:i([32,0]),INT16:i([32,0]),INT32:i([32,0]),FLOAT:i([32,0]),DOUBLE:i([32,0]),DATA:i([32,0]),UINT8C:i([32,0]),BUFFER:i([32,0])});var o=\"undefined\"!=typeof Uint8ClampedArray,s=e.__TYPEDARRAY_POOL;s.UINT8C||(s.UINT8C=i([32,0])),s.BUFFER||(s.BUFFER=i([32,0]));var l=s.DATA,c=s.BUFFER;function u(t){if(t){var e=t.length||t.byteLength,r=a.log2(e);l[r].push(t)}}function h(t){t=a.nextPow2(t);var e=a.log2(t),r=l[e];return r.length>0?r.pop():new ArrayBuffer(t)}function f(t){return new Uint8Array(h(t),0,t)}function p(t){return new Uint16Array(h(2*t),0,t)}function d(t){return new Uint32Array(h(4*t),0,t)}function g(t){return new Int8Array(h(t),0,t)}function v(t){return new Int16Array(h(2*t),0,t)}function m(t){return new Int32Array(h(4*t),0,t)}function y(t){return new Float32Array(h(4*t),0,t)}function x(t){return new Float64Array(h(8*t),0,t)}function b(t){return o?new Uint8ClampedArray(h(t),0,t):f(t)}function _(t){return new DataView(h(t),0,t)}function w(t){t=a.nextPow2(t);var e=a.log2(t),r=c[e];return r.length>0?r.pop():new n(t)}r.free=function(t){if(n.isBuffer(t))c[a.log2(t.length)].push(t);else{if(\"[object ArrayBuffer]\"!==Object.prototype.toString.call(t)&&(t=t.buffer),!t)return;var e=t.length||t.byteLength,r=0|a.log2(e);l[r].push(t)}},r.freeUint8=r.freeUint16=r.freeUint32=r.freeInt8=r.freeInt16=r.freeInt32=r.freeFloat32=r.freeFloat=r.freeFloat64=r.freeDouble=r.freeUint8Clamped=r.freeDataView=function(t){u(t.buffer)},r.freeArrayBuffer=u,r.freeBuffer=function(t){c[a.log2(t.length)].push(t)},r.malloc=function(t,e){if(void 0===e||\"arraybuffer\"===e)return h(t);switch(e){case\"uint8\":return f(t);case\"uint16\":return p(t);case\"uint32\":return d(t);case\"int8\":return g(t);case\"int16\":return v(t);case\"int32\":return m(t);case\"float\":case\"float32\":return y(t);case\"double\":case\"float64\":return x(t);case\"uint8_clamped\":return b(t);case\"buffer\":return w(t);case\"data\":case\"dataview\":return _(t);default:return null}return null},r.mallocArrayBuffer=h,r.mallocUint8=f,r.mallocUint16=p,r.mallocUint32=d,r.mallocInt8=g,r.mallocInt16=v,r.mallocInt32=m,r.mallocFloat32=r.mallocFloat=y,r.mallocFloat64=r.mallocDouble=x,r.mallocUint8Clamped=b,r.mallocDataView=_,r.mallocBuffer=w,r.clearCache=function(){for(var t=0;t<32;++t)s.UINT8[t].length=0,s.UINT16[t].length=0,s.UINT32[t].length=0,s.INT8[t].length=0,s.INT16[t].length=0,s.INT32[t].length=0,s.FLOAT[t].length=0,s.DOUBLE[t].length=0,s.UINT8C[t].length=0,l[t].length=0,c[t].length=0}}).call(this,\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{},t(\"buffer\").Buffer)},{\"bit-twiddle\":93,buffer:106,dup:171}],547:[function(t,e,r){\"use strict\";function n(t){this.roots=new Array(t),this.ranks=new Array(t);for(var e=0;e<t;++e)this.roots[e]=e,this.ranks[e]=0}e.exports=n;var a=n.prototype;Object.defineProperty(a,\"length\",{get:function(){return this.roots.length}}),a.makeSet=function(){var t=this.roots.length;return this.roots.push(t),this.ranks.push(0),t},a.find=function(t){for(var e=t,r=this.roots;r[t]!==t;)t=r[t];for(;r[e]!==t;){var n=r[e];r[e]=t,e=n}return t},a.link=function(t,e){var r=this.find(t),n=this.find(e);if(r!==n){var a=this.ranks,i=this.roots,o=a[r],s=a[n];o<s?i[r]=n:s<o?i[n]=r:(i[n]=r,++a[r])}}},{}],548:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){return 0===t.length?t:e?(r||t.sort(e),function(t,e){for(var r=1,n=t.length,a=t[0],i=t[0],o=1;o<n;++o)if(i=a,e(a=t[o],i)){if(o===r){r++;continue}t[r++]=a}return t.length=r,t}(t,e)):(r||t.sort(),function(t){for(var e=1,r=t.length,n=t[0],a=t[0],i=1;i<r;++i,a=n)if(a=n,(n=t[i])!==a){if(i===e){e++;continue}t[e++]=n}return t.length=e,t}(t))}},{}],549:[function(t,e,r){var n=/[\\'\\\"]/;e.exports=function(t){return t?(n.test(t.charAt(0))&&(t=t.substr(1)),n.test(t.charAt(t.length-1))&&(t=t.substr(0,t.length-1)),t):\"\"}},{}],550:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){Array.isArray(r)||(r=[].slice.call(arguments,2));for(var n=0,a=r.length;n<a;n++){var i=r[n];for(var o in i)if((void 0===e[o]||Array.isArray(e[o])||t[o]!==e[o])&&o in e){var s;if(!0===i[o])s=e[o];else{if(!1===i[o])continue;if(\"function\"==typeof i[o]&&void 0===(s=i[o](e[o],t,e)))continue}t[o]=s}}return t}},{}],551:[function(t,e,r){\"use strict\";e.exports=function(t,e){\"object\"==typeof e&&null!==e||(e={});return n(t,e.canvas||a,e.context||i,e)};var n=t(\"./lib/vtext\"),a=null,i=null;\"undefined\"!=typeof document&&((a=document.createElement(\"canvas\")).width=8192,a.height=1024,i=a.getContext(\"2d\"))},{\"./lib/vtext\":552}],552:[function(t,e,r){e.exports=function(t,e,r,n){var i=64,o=1.25,s={breaklines:!1,bolds:!1,italics:!1,subscripts:!1,superscripts:!1};n&&(n.size&&n.size>0&&(i=n.size),n.lineSpacing&&n.lineSpacing>0&&(o=n.lineSpacing),n.styletags&&n.styletags.breaklines&&(s.breaklines=!!n.styletags.breaklines),n.styletags&&n.styletags.bolds&&(s.bolds=!!n.styletags.bolds),n.styletags&&n.styletags.italics&&(s.italics=!!n.styletags.italics),n.styletags&&n.styletags.subscripts&&(s.subscripts=!!n.styletags.subscripts),n.styletags&&n.styletags.superscripts&&(s.superscripts=!!n.styletags.superscripts));return r.font=[n.fontStyle,n.fontVariant,n.fontWeight,i+\"px\",n.font].filter(function(t){return t}).join(\" \"),r.textAlign=\"start\",r.textBaseline=\"alphabetic\",r.direction=\"ltr\",w(function(t,e,r,n,i,o){r=r.replace(/\\n/g,\"\"),r=!0===o.breaklines?r.replace(/\\<br\\>/g,\"\\n\"):r.replace(/\\<br\\>/g,\" \");var s=\"\",l=[];for(k=0;k<r.length;++k)l[k]=s;!0===o.bolds&&(l=x(c,u,r,l)),!0===o.italics&&(l=x(h,f,r,l)),!0===o.superscripts&&(l=x(p,g,r,l)),!0===o.subscripts&&(l=x(v,y,r,l));var b=[],_=\"\";for(k=0;k<r.length;++k)null!==l[k]&&(_+=r[k],b.push(l[k]));var w,k,T,A,M,S=_.split(\"\\n\"),E=S.length,C=Math.round(i*n),L=n,P=2*n,O=0,I=E*C+P;t.height<I&&(t.height=I),e.fillStyle=\"#000\",e.fillRect(0,0,t.width,t.height),e.fillStyle=\"#fff\";var z=0,D=\"\";function R(){if(\"\"!==D){var t=e.measureText(D).width;e.fillText(D,L+T,P+A),T+=t}}function F(){return Math.round(M)+\"px \"}function B(t,r){var n=\"\"+e.font;if(!0===o.subscripts){var a=t.indexOf(m),i=r.indexOf(m),s=a>-1?parseInt(t[1+a]):0,l=i>-1?parseInt(r[1+i]):0;s!==l&&(n=n.replace(F(),\"?px \"),M*=Math.pow(.75,l-s),n=n.replace(\"?px \",F())),A+=.25*C*(l-s)}if(!0===o.superscripts){var c=t.indexOf(d),h=r.indexOf(d),p=c>-1?parseInt(t[1+c]):0,g=h>-1?parseInt(r[1+h]):0;p!==g&&(n=n.replace(F(),\"?px \"),M*=Math.pow(.75,g-p),n=n.replace(\"?px \",F())),A-=.25*C*(g-p)}if(!0===o.bolds){var v=t.indexOf(u)>-1,y=r.indexOf(u)>-1;!v&&y&&(n=x?n.replace(\"italic \",\"italic bold \"):\"bold \"+n),v&&!y&&(n=n.replace(\"bold \",\"\"))}if(!0===o.italics){var x=t.indexOf(f)>-1,b=r.indexOf(f)>-1;!x&&b&&(n=\"italic \"+n),x&&!b&&(n=n.replace(\"italic \",\"\"))}e.font=n}for(w=0;w<E;++w){var N=S[w]+\"\\n\";for(T=0,A=w*C,M=n,D=\"\",k=0;k<N.length;++k){var j=k+z<b.length?b[k+z]:b[b.length-1];s===j?D+=N[k]:(R(),D=N[k],void 0!==j&&(B(s,j),s=j))}R(),z+=N.length;var V=0|Math.round(T+2*L);O<V&&(O=V)}var U=O,q=P+C*E;return a(e.getImageData(0,0,U,q).data,[q,U,4]).pick(-1,-1,0).transpose(1,0)}(e,r,t,i,o,s),n,i)},e.exports.processPixels=w;var n=t(\"surface-nets\"),a=t(\"ndarray\"),i=t(\"simplify-planar-graph\"),o=t(\"clean-pslg\"),s=t(\"cdt2d\"),l=t(\"planar-graph-to-polyline\"),c=\"b\",u=\"b|\",h=\"i\",f=\"i|\",p=\"sup\",d=\"+\",g=\"+1\",v=\"sub\",m=\"-\",y=\"-1\";function x(t,e,r,n){for(var a=\"<\"+t+\">\",i=\"</\"+t+\">\",o=a.length,s=i.length,l=e[0]===d||e[0]===m,c=0,u=-s;c>-1&&-1!==(c=r.indexOf(a,c))&&-1!==(u=r.indexOf(i,c+o))&&!(u<=c);){for(var h=c;h<u+s;++h)if(h<c+o||h>=u)n[h]=null,r=r.substr(0,h)+\" \"+r.substr(h+1);else if(null!==n[h]){var f=n[h].indexOf(e[0]);-1===f?n[h]+=e:l&&(n[h]=n[h].substr(0,f+1)+(1+parseInt(n[h][f+1]))+n[h].substr(f+2))}var p=c+o,g=r.substr(p,u-p).indexOf(a);c=-1!==g?g:u+s}return n}function b(t,e){var r=n(t,128);return e?i(r.cells,r.positions,.25):{edges:r.cells,positions:r.positions}}function _(t,e,r,n){var a=b(t,n),i=function(t,e,r){for(var n=e.textAlign||\"start\",a=e.textBaseline||\"alphabetic\",i=[1<<30,1<<30],o=[0,0],s=t.length,l=0;l<s;++l)for(var c=t[l],u=0;u<2;++u)i[u]=0|Math.min(i[u],c[u]),o[u]=0|Math.max(o[u],c[u]);var h=0;switch(n){case\"center\":h=-.5*(i[0]+o[0]);break;case\"right\":case\"end\":h=-o[0];break;case\"left\":case\"start\":h=-i[0];break;default:throw new Error(\"vectorize-text: Unrecognized textAlign: '\"+n+\"'\")}var f=0;switch(a){case\"hanging\":case\"top\":f=-i[1];break;case\"middle\":f=-.5*(i[1]+o[1]);break;case\"alphabetic\":case\"ideographic\":f=-3*r;break;case\"bottom\":f=-o[1];break;default:throw new Error(\"vectorize-text: Unrecoginized textBaseline: '\"+a+\"'\")}var p=1/r;return\"lineHeight\"in e?p*=+e.lineHeight:\"width\"in e?p=e.width/(o[0]-i[0]):\"height\"in e&&(p=e.height/(o[1]-i[1])),t.map(function(t){return[p*(t[0]+h),p*(t[1]+f)]})}(a.positions,e,r),c=a.edges,u=\"ccw\"===e.orientation;if(o(i,c),e.polygons||e.polygon||e.polyline){for(var h=l(c,i),f=new Array(h.length),p=0;p<h.length;++p){for(var d=h[p],g=new Array(d.length),v=0;v<d.length;++v){for(var m=d[v],y=new Array(m.length),x=0;x<m.length;++x)y[x]=i[m[x]].slice();u&&y.reverse(),g[v]=y}f[p]=g}return f}return e.triangles||e.triangulate||e.triangle?{cells:s(i,c,{delaunay:!1,exterior:!1,interior:!0}),positions:i}:{edges:c,positions:i}}function w(t,e,r){try{return _(t,e,r,!0)}catch(t){}try{return _(t,e,r,!1)}catch(t){}return e.polygons||e.polyline||e.polygon?[]:e.triangles||e.triangulate||e.triangle?{cells:[],positions:[]}:{edges:[],positions:[]}}},{cdt2d:107,\"clean-pslg\":117,ndarray:451,\"planar-graph-to-polyline\":469,\"simplify-planar-graph\":525,\"surface-nets\":532}],553:[function(t,e,r){!function(){\"use strict\";if(\"undefined\"==typeof ses||!ses.ok||ses.ok()){\"undefined\"!=typeof ses&&(ses.weakMapPermitHostObjects=v);var t=!1;if(\"function\"==typeof WeakMap){var r=WeakMap;if(\"undefined\"!=typeof navigator&&/Firefox/.test(navigator.userAgent));else{var n=new r,a=Object.freeze({});if(n.set(a,1),1===n.get(a))return void(e.exports=WeakMap);t=!0}}Object.prototype.hasOwnProperty;var i=Object.getOwnPropertyNames,o=Object.defineProperty,s=Object.isExtensible,l=\"weakmap:\",c=l+\"ident:\"+Math.random()+\"___\";if(\"undefined\"!=typeof crypto&&\"function\"==typeof crypto.getRandomValues&&\"function\"==typeof ArrayBuffer&&\"function\"==typeof Uint8Array){var u=new ArrayBuffer(25),h=new Uint8Array(u);crypto.getRandomValues(h),c=l+\"rand:\"+Array.prototype.map.call(h,function(t){return(t%36).toString(36)}).join(\"\")+\"___\"}if(o(Object,\"getOwnPropertyNames\",{value:function(t){return i(t).filter(m)}}),\"getPropertyNames\"in Object){var f=Object.getPropertyNames;o(Object,\"getPropertyNames\",{value:function(t){return f(t).filter(m)}})}!function(){var t=Object.freeze;o(Object,\"freeze\",{value:function(e){return y(e),t(e)}});var e=Object.seal;o(Object,\"seal\",{value:function(t){return y(t),e(t)}});var r=Object.preventExtensions;o(Object,\"preventExtensions\",{value:function(t){return y(t),r(t)}})}();var p=!1,d=0,g=function(){this instanceof g||b();var t=[],e=[],r=d++;return Object.create(g.prototype,{get___:{value:x(function(n,a){var i,o=y(n);return o?r in o?o[r]:a:(i=t.indexOf(n))>=0?e[i]:a})},has___:{value:x(function(e){var n=y(e);return n?r in n:t.indexOf(e)>=0})},set___:{value:x(function(n,a){var i,o=y(n);return o?o[r]=a:(i=t.indexOf(n))>=0?e[i]=a:(i=t.length,e[i]=a,t[i]=n),this})},delete___:{value:x(function(n){var a,i,o=y(n);return o?r in o&&delete o[r]:!((a=t.indexOf(n))<0||(i=t.length-1,t[a]=void 0,e[a]=e[i],t[a]=t[i],t.length=i,e.length=i,0))})}})};g.prototype=Object.create(Object.prototype,{get:{value:function(t,e){return this.get___(t,e)},writable:!0,configurable:!0},has:{value:function(t){return this.has___(t)},writable:!0,configurable:!0},set:{value:function(t,e){return this.set___(t,e)},writable:!0,configurable:!0},delete:{value:function(t){return this.delete___(t)},writable:!0,configurable:!0}}),\"function\"==typeof r?function(){function n(){this instanceof g||b();var e,n=new r,a=void 0,i=!1;return e=t?function(t,e){return n.set(t,e),n.has(t)||(a||(a=new g),a.set(t,e)),this}:function(t,e){if(i)try{n.set(t,e)}catch(r){a||(a=new g),a.set___(t,e)}else n.set(t,e);return this},Object.create(g.prototype,{get___:{value:x(function(t,e){return a?n.has(t)?n.get(t):a.get___(t,e):n.get(t,e)})},has___:{value:x(function(t){return n.has(t)||!!a&&a.has___(t)})},set___:{value:x(e)},delete___:{value:x(function(t){var e=!!n.delete(t);return a&&a.delete___(t)||e})},permitHostObjects___:{value:x(function(t){if(t!==v)throw new Error(\"bogus call to permitHostObjects___\");i=!0})}})}t&&\"undefined\"!=typeof Proxy&&(Proxy=void 0),n.prototype=g.prototype,e.exports=n,Object.defineProperty(WeakMap.prototype,\"constructor\",{value:WeakMap,enumerable:!1,configurable:!0,writable:!0})}():(\"undefined\"!=typeof Proxy&&(Proxy=void 0),e.exports=g)}function v(t){t.permitHostObjects___&&t.permitHostObjects___(v)}function m(t){return!(t.substr(0,l.length)==l&&\"___\"===t.substr(t.length-3))}function y(t){if(t!==Object(t))throw new TypeError(\"Not an object: \"+t);var e=t[c];if(e&&e.key===t)return e;if(s(t)){e={key:t};try{return o(t,c,{value:e,writable:!1,enumerable:!1,configurable:!1}),e}catch(t){return}}}function x(t){return t.prototype=null,Object.freeze(t)}function b(){p||\"undefined\"==typeof console||(p=!0,console.warn(\"WeakMap should be invoked as new WeakMap(), not WeakMap(). This will be an error in the future.\"))}}()},{}],554:[function(t,e,r){var n=t(\"./hidden-store.js\");e.exports=function(){var t={};return function(e){if((\"object\"!=typeof e||null===e)&&\"function\"!=typeof e)throw new Error(\"Weakmap-shim: Key must be object\");var r=e.valueOf(t);return r&&r.identity===t?r:n(e,t)}}},{\"./hidden-store.js\":555}],555:[function(t,e,r){e.exports=function(t,e){var r={identity:e},n=t.valueOf;return Object.defineProperty(t,\"valueOf\",{value:function(t){return t!==e?n.apply(this,arguments):r},writable:!0}),r}},{}],556:[function(t,e,r){var n=t(\"./create-store.js\");e.exports=function(){var t=n();return{get:function(e,r){var n=t(e);return n.hasOwnProperty(\"value\")?n.value:r},set:function(e,r){return t(e).value=r,this},has:function(e){return\"value\"in t(e)},delete:function(e){return delete t(e).value}}}},{\"./create-store.js\":554}],557:[function(t,e,r){var n=t(\"get-canvas-context\");e.exports=function(t){return n(\"webgl\",t)}},{\"get-canvas-context\":233}],558:[function(t,e,r){var n=t(\"../main\"),a=t(\"object-assign\"),i=n.instance();function o(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}o.prototype=new n.baseCalendar,a(o.prototype,{name:\"Chinese\",jdEpoch:1721425.5,hasYearZero:!1,minMonth:0,firstMonth:0,minDay:1,regionalOptions:{\"\":{name:\"Chinese\",epochs:[\"BEC\",\"EC\"],monthNumbers:function(t,e){if(\"string\"==typeof t){var r=t.match(l);return r?r[0]:\"\"}var n=this._validateYear(t),a=t.month(),i=\"\"+this.toChineseMonth(n,a);return e&&i.length<2&&(i=\"0\"+i),this.isIntercalaryMonth(n,a)&&(i+=\"i\"),i},monthNames:function(t){if(\"string\"==typeof t){var e=t.match(c);return e?e[0]:\"\"}var r=this._validateYear(t),n=t.month(),a=[\"\\u4e00\\u6708\",\"\\u4e8c\\u6708\",\"\\u4e09\\u6708\",\"\\u56db\\u6708\",\"\\u4e94\\u6708\",\"\\u516d\\u6708\",\"\\u4e03\\u6708\",\"\\u516b\\u6708\",\"\\u4e5d\\u6708\",\"\\u5341\\u6708\",\"\\u5341\\u4e00\\u6708\",\"\\u5341\\u4e8c\\u6708\"][this.toChineseMonth(r,n)-1];return this.isIntercalaryMonth(r,n)&&(a=\"\\u95f0\"+a),a},monthNamesShort:function(t){if(\"string\"==typeof t){var e=t.match(u);return e?e[0]:\"\"}var r=this._validateYear(t),n=t.month(),a=[\"\\u4e00\",\"\\u4e8c\",\"\\u4e09\",\"\\u56db\",\"\\u4e94\",\"\\u516d\",\"\\u4e03\",\"\\u516b\",\"\\u4e5d\",\"\\u5341\",\"\\u5341\\u4e00\",\"\\u5341\\u4e8c\"][this.toChineseMonth(r,n)-1];return this.isIntercalaryMonth(r,n)&&(a=\"\\u95f0\"+a),a},parseMonth:function(t,e){t=this._validateYear(t);var r,n=parseInt(e);if(isNaN(n))\"\\u95f0\"===e[0]&&(r=!0,e=e.substring(1)),\"\\u6708\"===e[e.length-1]&&(e=e.substring(0,e.length-1)),n=1+[\"\\u4e00\",\"\\u4e8c\",\"\\u4e09\",\"\\u56db\",\"\\u4e94\",\"\\u516d\",\"\\u4e03\",\"\\u516b\",\"\\u4e5d\",\"\\u5341\",\"\\u5341\\u4e00\",\"\\u5341\\u4e8c\"].indexOf(e);else{var a=e[e.length-1];r=\"i\"===a||\"I\"===a}return this.toMonthIndex(t,n,r)},dayNames:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],dayNamesShort:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],dayNamesMin:[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"],digits:null,dateFormat:\"yyyy/mm/dd\",firstDay:1,isRTL:!1}},_validateYear:function(t,e){if(t.year&&(t=t.year()),\"number\"!=typeof t||t<1888||t>2111)throw e.replace(/\\{0\\}/,this.local.name);return t},toMonthIndex:function(t,e,r){var a=this.intercalaryMonth(t);if(r&&e!==a||e<1||e>12)throw n.local.invalidMonth.replace(/\\{0\\}/,this.local.name);return a?!r&&e<=a?e-1:e:e-1},toChineseMonth:function(t,e){t.year&&(e=(t=t.year()).month());var r=this.intercalaryMonth(t);if(e<0||e>(r?12:11))throw n.local.invalidMonth.replace(/\\{0\\}/,this.local.name);return r?e<r?e+1:e:e+1},intercalaryMonth:function(t){return t=this._validateYear(t),h[t-h[0]]>>13},isIntercalaryMonth:function(t,e){t.year&&(e=(t=t.year()).month());var r=this.intercalaryMonth(t);return!!r&&r===e},leapYear:function(t){return 0!==this.intercalaryMonth(t)},weekOfYear:function(t,e,r){var a,o=this._validateYear(t,n.local.invalidyear),s=f[o-f[0]],l=s>>9&4095,c=s>>5&15,u=31&s;(a=i.newDate(l,c,u)).add(4-(a.dayOfWeek()||7),\"d\");var h=this.toJD(t,e,r)-a.toJD();return 1+Math.floor(h/7)},monthsInYear:function(t){return this.leapYear(t)?13:12},daysInMonth:function(t,e){t.year&&(e=t.month(),t=t.year()),t=this._validateYear(t);var r=h[t-h[0]];if(e>(r>>13?12:11))throw n.local.invalidMonth.replace(/\\{0\\}/,this.local.name);return r&1<<12-e?30:29},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var a=this._validate(t,s,r,n.local.invalidDate);t=this._validateYear(a.year()),e=a.month(),r=a.day();var o=this.isIntercalaryMonth(t,e),s=this.toChineseMonth(t,e),l=function(t,e,r,n,a){var i,o,s;if(\"object\"==typeof t)o=t,i=e||{};else{var l=\"number\"==typeof t&&t>=1888&&t<=2111;if(!l)throw new Error(\"Lunar year outside range 1888-2111\");var c=\"number\"==typeof e&&e>=1&&e<=12;if(!c)throw new Error(\"Lunar month outside range 1 - 12\");var u,p=\"number\"==typeof r&&r>=1&&r<=30;if(!p)throw new Error(\"Lunar day outside range 1 - 30\");\"object\"==typeof n?(u=!1,i=n):(u=!!n,i=a||{}),o={year:t,month:e,day:r,isIntercalary:u}}s=o.day-1;var d,g=h[o.year-h[0]],v=g>>13;d=v?o.month>v?o.month:o.isIntercalary?o.month:o.month-1:o.month-1;for(var m=0;m<d;m++){var y=g&1<<12-m?30:29;s+=y}var x=f[o.year-f[0]],b=new Date(x>>9&4095,(x>>5&15)-1,(31&x)+s);return i.year=b.getFullYear(),i.month=1+b.getMonth(),i.day=b.getDate(),i}(t,s,r,o);return i.toJD(l.year,l.month,l.day)},fromJD:function(t){var e=i.fromJD(t),r=function(t,e,r,n){var a,i;if(\"object\"==typeof t)a=t,i=e||{};else{var o=\"number\"==typeof t&&t>=1888&&t<=2111;if(!o)throw new Error(\"Solar year outside range 1888-2111\");var s=\"number\"==typeof e&&e>=1&&e<=12;if(!s)throw new Error(\"Solar month outside range 1 - 12\");var l=\"number\"==typeof r&&r>=1&&r<=31;if(!l)throw new Error(\"Solar day outside range 1 - 31\");a={year:t,month:e,day:r},i=n||{}}var c=f[a.year-f[0]],u=a.year<<9|a.month<<5|a.day;i.year=u>=c?a.year:a.year-1,c=f[i.year-f[0]];var p,d=new Date(c>>9&4095,(c>>5&15)-1,31&c),g=new Date(a.year,a.month-1,a.day);p=Math.round((g-d)/864e5);var v,m=h[i.year-h[0]];for(v=0;v<13;v++){var y=m&1<<12-v?30:29;if(p<y)break;p-=y}var x=m>>13;!x||v<x?(i.isIntercalary=!1,i.month=1+v):v===x?(i.isIntercalary=!0,i.month=v):(i.isIntercalary=!1,i.month=v);return i.day=1+p,i}(e.year(),e.month(),e.day()),n=this.toMonthIndex(r.year,r.month,r.isIntercalary);return this.newDate(r.year,n,r.day)},fromString:function(t){var e=t.match(s),r=this._validateYear(+e[1]),n=+e[2],a=!!e[3],i=this.toMonthIndex(r,n,a),o=+e[4];return this.newDate(r,i,o)},add:function(t,e,r){var n=t.year(),a=t.month(),i=this.isIntercalaryMonth(n,a),s=this.toChineseMonth(n,a),l=Object.getPrototypeOf(o.prototype).add.call(this,t,e,r);if(\"y\"===r){var c=l.year(),u=l.month(),h=this.isIntercalaryMonth(c,s),f=i&&h?this.toMonthIndex(c,s,!0):this.toMonthIndex(c,s,!1);f!==u&&l.month(f)}return l}});var s=/^\\s*(-?\\d\\d\\d\\d|\\d\\d)[-\\/](\\d?\\d)([iI]?)[-\\/](\\d?\\d)/m,l=/^\\d?\\d[iI]?/m,c=/^\\u95f0?\\u5341?[\\u4e00\\u4e8c\\u4e09\\u56db\\u4e94\\u516d\\u4e03\\u516b\\u4e5d]?\\u6708/m,u=/^\\u95f0?\\u5341?[\\u4e00\\u4e8c\\u4e09\\u56db\\u4e94\\u516d\\u4e03\\u516b\\u4e5d]?/m;n.calendars.chinese=o;var h=[1887,5780,5802,19157,2742,50359,1198,2646,46378,7466,3412,30122,5482,67949,2396,5294,43597,6732,6954,36181,2772,4954,18781,2396,54427,5274,6730,47781,5800,6868,21210,4790,59703,2350,5270,46667,3402,3496,38325,1388,4782,18735,2350,52374,6804,7498,44457,2906,1388,29294,4700,63789,6442,6804,56138,5802,2772,38235,1210,4698,22827,5418,63125,3476,5802,43701,2484,5302,27223,2646,70954,7466,3412,54698,5482,2412,38062,5294,2636,32038,6954,60245,2772,4826,43357,2394,5274,39501,6730,72357,5800,5844,53978,4790,2358,38039,5270,87627,3402,3496,54708,5484,4782,43311,2350,3222,27978,7498,68965,2904,5484,45677,4700,6444,39573,6804,6986,19285,2772,62811,1210,4698,47403,5418,5780,38570,5546,76469,2420,5302,51799,2646,5414,36501,3412,5546,18869,2412,54446,5276,6732,48422,6822,2900,28010,4826,92509,2394,5274,55883,6730,6820,47956,5812,2778,18779,2358,62615,5270,5450,46757,3492,5556,27318,4718,67887,2350,3222,52554,7498,3428,38252,5468,4700,31022,6444,64149,6804,6986,43861,2772,5338,35421,2650,70955,5418,5780,54954,5546,2740,38074,5302,2646,29991,3366,61011,3412,5546,43445,2412,5294,35406,6732,72998,6820,6996,52586,2778,2396,38045,5274,6698,23333,6820,64338,5812,2746,43355,2358,5270,39499,5450,79525,3492,5548],f=[1887,966732,967231,967733,968265,968766,969297,969798,970298,970829,971330,971830,972362,972863,973395,973896,974397,974928,975428,975929,976461,976962,977462,977994,978494,979026,979526,980026,980558,981059,981559,982091,982593,983124,983624,984124,984656,985157,985656,986189,986690,987191,987722,988222,988753,989254,989754,990286,990788,991288,991819,992319,992851,993352,993851,994383,994885,995385,995917,996418,996918,997450,997949,998481,998982,999483,1000014,1000515,1001016,1001548,1002047,1002578,1003080,1003580,1004111,1004613,1005113,1005645,1006146,1006645,1007177,1007678,1008209,1008710,1009211,1009743,1010243,1010743,1011275,1011775,1012306,1012807,1013308,1013840,1014341,1014841,1015373,1015874,1016404,1016905,1017405,1017937,1018438,1018939,1019471,1019972,1020471,1021002,1021503,1022035,1022535,1023036,1023568,1024069,1024568,1025100,1025601,1026102,1026633,1027133,1027666,1028167,1028666,1029198,1029699,1030199,1030730,1031231,1031763,1032264,1032764,1033296,1033797,1034297,1034828,1035329,1035830,1036362,1036861,1037393,1037894,1038394,1038925,1039427,1039927,1040459,1040959,1041491,1041992,1042492,1043023,1043524,1044024,1044556,1045057,1045558,1046090,1046590,1047121,1047622,1048122,1048654,1049154,1049655,1050187,1050689,1051219,1051720,1052220,1052751,1053252,1053752,1054284,1054786,1055285,1055817,1056317,1056849,1057349,1057850,1058382,1058883,1059383,1059915,1060415,1060947,1061447,1061947,1062479,1062981,1063480,1064012,1064514,1065014,1065545,1066045,1066577,1067078,1067578,1068110,1068611,1069112,1069642,1070142,1070674,1071175,1071675,1072207,1072709,1073209,1073740,1074241,1074741,1075273,1075773,1076305,1076807,1077308,1077839,1078340,1078840,1079372,1079871,1080403,1080904]},{\"../main\":572,\"object-assign\":455}],559:[function(t,e,r){var n=t(\"../main\"),a=t(\"object-assign\");function i(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}i.prototype=new n.baseCalendar,a(i.prototype,{name:\"Coptic\",jdEpoch:1825029.5,daysPerMonth:[30,30,30,30,30,30,30,30,30,30,30,30,5],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Coptic\",epochs:[\"BAM\",\"AM\"],monthNames:[\"Thout\",\"Paopi\",\"Hathor\",\"Koiak\",\"Tobi\",\"Meshir\",\"Paremhat\",\"Paremoude\",\"Pashons\",\"Paoni\",\"Epip\",\"Mesori\",\"Pi Kogi Enavot\"],monthNamesShort:[\"Tho\",\"Pao\",\"Hath\",\"Koi\",\"Tob\",\"Mesh\",\"Pat\",\"Pad\",\"Pash\",\"Pao\",\"Epi\",\"Meso\",\"PiK\"],dayNames:[\"Tkyriaka\",\"Pesnau\",\"Pshoment\",\"Peftoou\",\"Ptiou\",\"Psoou\",\"Psabbaton\"],dayNamesShort:[\"Tky\",\"Pes\",\"Psh\",\"Pef\",\"Pti\",\"Pso\",\"Psa\"],dayNamesMin:[\"Tk\",\"Pes\",\"Psh\",\"Pef\",\"Pt\",\"Pso\",\"Psa\"],digits:null,dateFormat:\"dd/mm/yyyy\",firstDay:0,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);return(t=e.year()+(e.year()<0?1:0))%4==3||t%4==-1},monthsInYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear||n.regionalOptions[\"\"].invalidYear),13},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-n.dayOfWeek(),\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(13===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate);return(t=a.year())<0&&t++,a.day()+30*(a.month()-1)+365*(t-1)+Math.floor(t/4)+this.jdEpoch-1},fromJD:function(t){var e=Math.floor(t)+.5-this.jdEpoch,r=Math.floor((e-Math.floor((e+366)/1461))/365)+1;r<=0&&r--,e=Math.floor(t)+.5-this.newDate(r,1,1).toJD();var n=Math.floor(e/30)+1,a=e-30*(n-1)+1;return this.newDate(r,n,a)}}),n.calendars.coptic=i},{\"../main\":572,\"object-assign\":455}],560:[function(t,e,r){var n=t(\"../main\"),a=t(\"object-assign\");function i(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}i.prototype=new n.baseCalendar,a(i.prototype,{name:\"Discworld\",jdEpoch:1721425.5,daysPerMonth:[16,32,32,32,32,32,32,32,32,32,32,32,32],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Discworld\",epochs:[\"BUC\",\"UC\"],monthNames:[\"Ick\",\"Offle\",\"February\",\"March\",\"April\",\"May\",\"June\",\"Grune\",\"August\",\"Spune\",\"Sektober\",\"Ember\",\"December\"],monthNamesShort:[\"Ick\",\"Off\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Gru\",\"Aug\",\"Spu\",\"Sek\",\"Emb\",\"Dec\"],dayNames:[\"Sunday\",\"Octeday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],dayNamesShort:[\"Sun\",\"Oct\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],dayNamesMin:[\"Su\",\"Oc\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"],digits:null,dateFormat:\"yyyy/mm/dd\",firstDay:2,isRTL:!1}},leapYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear),!1},monthsInYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear),13},daysInYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear),400},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-n.dayOfWeek(),\"d\"),Math.floor((n.dayOfYear()-1)/8)+1},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]},daysInWeek:function(){return 8},dayOfWeek:function(t,e,r){return(this._validate(t,e,r,n.local.invalidDate).day()+1)%8},weekDay:function(t,e,r){var n=this.dayOfWeek(t,e,r);return n>=2&&n<=6},extraInfo:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate);return{century:o[Math.floor((a.year()-1)/100)+1]||\"\"}},toJD:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate);return t=a.year()+(a.year()<0?1:0),e=a.month(),(r=a.day())+(e>1?16:0)+(e>2?32*(e-2):0)+400*(t-1)+this.jdEpoch-1},fromJD:function(t){t=Math.floor(t+.5)-Math.floor(this.jdEpoch)-1;var e=Math.floor(t/400)+1;t-=400*(e-1),t+=t>15?16:0;var r=Math.floor(t/32)+1,n=t-32*(r-1)+1;return this.newDate(e<=0?e-1:e,r,n)}});var o={20:\"Fruitbat\",21:\"Anchovy\"};n.calendars.discworld=i},{\"../main\":572,\"object-assign\":455}],561:[function(t,e,r){var n=t(\"../main\"),a=t(\"object-assign\");function i(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}i.prototype=new n.baseCalendar,a(i.prototype,{name:\"Ethiopian\",jdEpoch:1724220.5,daysPerMonth:[30,30,30,30,30,30,30,30,30,30,30,30,5],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Ethiopian\",epochs:[\"BEE\",\"EE\"],monthNames:[\"Meskerem\",\"Tikemet\",\"Hidar\",\"Tahesas\",\"Tir\",\"Yekatit\",\"Megabit\",\"Miazia\",\"Genbot\",\"Sene\",\"Hamle\",\"Nehase\",\"Pagume\"],monthNamesShort:[\"Mes\",\"Tik\",\"Hid\",\"Tah\",\"Tir\",\"Yek\",\"Meg\",\"Mia\",\"Gen\",\"Sen\",\"Ham\",\"Neh\",\"Pag\"],dayNames:[\"Ehud\",\"Segno\",\"Maksegno\",\"Irob\",\"Hamus\",\"Arb\",\"Kidame\"],dayNamesShort:[\"Ehu\",\"Seg\",\"Mak\",\"Iro\",\"Ham\",\"Arb\",\"Kid\"],dayNamesMin:[\"Eh\",\"Se\",\"Ma\",\"Ir\",\"Ha\",\"Ar\",\"Ki\"],digits:null,dateFormat:\"dd/mm/yyyy\",firstDay:0,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);return(t=e.year()+(e.year()<0?1:0))%4==3||t%4==-1},monthsInYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear||n.regionalOptions[\"\"].invalidYear),13},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-n.dayOfWeek(),\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(13===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate);return(t=a.year())<0&&t++,a.day()+30*(a.month()-1)+365*(t-1)+Math.floor(t/4)+this.jdEpoch-1},fromJD:function(t){var e=Math.floor(t)+.5-this.jdEpoch,r=Math.floor((e-Math.floor((e+366)/1461))/365)+1;r<=0&&r--,e=Math.floor(t)+.5-this.newDate(r,1,1).toJD();var n=Math.floor(e/30)+1,a=e-30*(n-1)+1;return this.newDate(r,n,a)}}),n.calendars.ethiopian=i},{\"../main\":572,\"object-assign\":455}],562:[function(t,e,r){var n=t(\"../main\"),a=t(\"object-assign\");function i(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}function o(t,e){return t-e*Math.floor(t/e)}i.prototype=new n.baseCalendar,a(i.prototype,{name:\"Hebrew\",jdEpoch:347995.5,daysPerMonth:[30,29,30,29,30,29,30,29,30,29,30,29,29],hasYearZero:!1,minMonth:1,firstMonth:7,minDay:1,regionalOptions:{\"\":{name:\"Hebrew\",epochs:[\"BAM\",\"AM\"],monthNames:[\"Nisan\",\"Iyar\",\"Sivan\",\"Tammuz\",\"Av\",\"Elul\",\"Tishrei\",\"Cheshvan\",\"Kislev\",\"Tevet\",\"Shevat\",\"Adar\",\"Adar II\"],monthNamesShort:[\"Nis\",\"Iya\",\"Siv\",\"Tam\",\"Av\",\"Elu\",\"Tis\",\"Che\",\"Kis\",\"Tev\",\"She\",\"Ada\",\"Ad2\"],dayNames:[\"Yom Rishon\",\"Yom Sheni\",\"Yom Shlishi\",\"Yom Revi'i\",\"Yom Chamishi\",\"Yom Shishi\",\"Yom Shabbat\"],dayNamesShort:[\"Ris\",\"She\",\"Shl\",\"Rev\",\"Cha\",\"Shi\",\"Sha\"],dayNamesMin:[\"Ri\",\"She\",\"Shl\",\"Re\",\"Ch\",\"Shi\",\"Sha\"],digits:null,dateFormat:\"dd/mm/yyyy\",firstDay:0,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);return this._leapYear(e.year())},_leapYear:function(t){return o(7*(t=t<0?t+1:t)+1,19)<7},monthsInYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear),this._leapYear(t.year?t.year():t)?13:12},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-n.dayOfWeek(),\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInYear:function(t){return t=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear).year(),this.toJD(-1===t?1:t+1,7,1)-this.toJD(t,7,1)},daysInMonth:function(t,e){return t.year&&(e=t.month(),t=t.year()),this._validate(t,e,this.minDay,n.local.invalidMonth),12===e&&this.leapYear(t)?30:8===e&&5===o(this.daysInYear(t),10)?30:9===e&&3===o(this.daysInYear(t),10)?29:this.daysPerMonth[e-1]},weekDay:function(t,e,r){return 6!==this.dayOfWeek(t,e,r)},extraInfo:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate);return{yearType:(this.leapYear(a)?\"embolismic\":\"common\")+\" \"+[\"deficient\",\"regular\",\"complete\"][this.daysInYear(a)%10-3]}},toJD:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate);t=a.year(),e=a.month(),r=a.day();var i=t<=0?t+1:t,o=this.jdEpoch+this._delay1(i)+this._delay2(i)+r+1;if(e<7){for(var s=7;s<=this.monthsInYear(t);s++)o+=this.daysInMonth(t,s);for(s=1;s<e;s++)o+=this.daysInMonth(t,s)}else for(s=7;s<e;s++)o+=this.daysInMonth(t,s);return o},_delay1:function(t){var e=Math.floor((235*t-234)/19),r=12084+13753*e,n=29*e+Math.floor(r/25920);return o(3*(n+1),7)<3&&n++,n},_delay2:function(t){var e=this._delay1(t-1),r=this._delay1(t);return this._delay1(t+1)-r==356?2:r-e==382?1:0},fromJD:function(t){t=Math.floor(t)+.5;for(var e=Math.floor(98496*(t-this.jdEpoch)/35975351)-1;t>=this.toJD(-1===e?1:e+1,7,1);)e++;for(var r=t<this.toJD(e,1,1)?7:1;t>this.toJD(e,r,this.daysInMonth(e,r));)r++;var n=t-this.toJD(e,r,1)+1;return this.newDate(e,r,n)}}),n.calendars.hebrew=i},{\"../main\":572,\"object-assign\":455}],563:[function(t,e,r){var n=t(\"../main\"),a=t(\"object-assign\");function i(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}i.prototype=new n.baseCalendar,a(i.prototype,{name:\"Islamic\",jdEpoch:1948439.5,daysPerMonth:[30,29,30,29,30,29,30,29,30,29,30,29],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Islamic\",epochs:[\"BH\",\"AH\"],monthNames:[\"Muharram\",\"Safar\",\"Rabi' al-awwal\",\"Rabi' al-thani\",\"Jumada al-awwal\",\"Jumada al-thani\",\"Rajab\",\"Sha'aban\",\"Ramadan\",\"Shawwal\",\"Dhu al-Qi'dah\",\"Dhu al-Hijjah\"],monthNamesShort:[\"Muh\",\"Saf\",\"Rab1\",\"Rab2\",\"Jum1\",\"Jum2\",\"Raj\",\"Sha'\",\"Ram\",\"Shaw\",\"DhuQ\",\"DhuH\"],dayNames:[\"Yawm al-ahad\",\"Yawm al-ithnayn\",\"Yawm ath-thulaathaa'\",\"Yawm al-arbi'aa'\",\"Yawm al-kham\\u012bs\",\"Yawm al-jum'a\",\"Yawm as-sabt\"],dayNamesShort:[\"Aha\",\"Ith\",\"Thu\",\"Arb\",\"Kha\",\"Jum\",\"Sab\"],dayNamesMin:[\"Ah\",\"It\",\"Th\",\"Ar\",\"Kh\",\"Ju\",\"Sa\"],digits:null,dateFormat:\"yyyy/mm/dd\",firstDay:6,isRTL:!1}},leapYear:function(t){return(11*this._validate(t,this.minMonth,this.minDay,n.local.invalidYear).year()+14)%30<11},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-n.dayOfWeek(),\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInYear:function(t){return this.leapYear(t)?355:354},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(12===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return 5!==this.dayOfWeek(t,e,r)},toJD:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate);return t=a.year(),e=a.month(),t=t<=0?t+1:t,(r=a.day())+Math.ceil(29.5*(e-1))+354*(t-1)+Math.floor((3+11*t)/30)+this.jdEpoch-1},fromJD:function(t){t=Math.floor(t)+.5;var e=Math.floor((30*(t-this.jdEpoch)+10646)/10631);e=e<=0?e-1:e;var r=Math.min(12,Math.ceil((t-29-this.toJD(e,1,1))/29.5)+1),n=t-this.toJD(e,r,1)+1;return this.newDate(e,r,n)}}),n.calendars.islamic=i},{\"../main\":572,\"object-assign\":455}],564:[function(t,e,r){var n=t(\"../main\"),a=t(\"object-assign\");function i(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}i.prototype=new n.baseCalendar,a(i.prototype,{name:\"Julian\",jdEpoch:1721423.5,daysPerMonth:[31,28,31,30,31,30,31,31,30,31,30,31],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Julian\",epochs:[\"BC\",\"AD\"],monthNames:[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],monthNamesShort:[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],dayNames:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],dayNamesShort:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],dayNamesMin:[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"],digits:null,dateFormat:\"mm/dd/yyyy\",firstDay:0,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);return(t=e.year()<0?e.year()+1:e.year())%4==0},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(4-(n.dayOfWeek()||7),\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(2===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate);return t=a.year(),e=a.month(),r=a.day(),t<0&&t++,e<=2&&(t--,e+=12),Math.floor(365.25*(t+4716))+Math.floor(30.6001*(e+1))+r-1524.5},fromJD:function(t){var e=Math.floor(t+.5)+1524,r=Math.floor((e-122.1)/365.25),n=Math.floor(365.25*r),a=Math.floor((e-n)/30.6001),i=a-Math.floor(a<14?1:13),o=r-Math.floor(i>2?4716:4715),s=e-n-Math.floor(30.6001*a);return o<=0&&o--,this.newDate(o,i,s)}}),n.calendars.julian=i},{\"../main\":572,\"object-assign\":455}],565:[function(t,e,r){var n=t(\"../main\"),a=t(\"object-assign\");function i(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}function o(t,e){return t-e*Math.floor(t/e)}function s(t,e){return o(t-1,e)+1}i.prototype=new n.baseCalendar,a(i.prototype,{name:\"Mayan\",jdEpoch:584282.5,hasYearZero:!0,minMonth:0,firstMonth:0,minDay:0,regionalOptions:{\"\":{name:\"Mayan\",epochs:[\"\",\"\"],monthNames:[\"0\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"13\",\"14\",\"15\",\"16\",\"17\"],monthNamesShort:[\"0\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"13\",\"14\",\"15\",\"16\",\"17\"],dayNames:[\"0\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"13\",\"14\",\"15\",\"16\",\"17\",\"18\",\"19\"],dayNamesShort:[\"0\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"13\",\"14\",\"15\",\"16\",\"17\",\"18\",\"19\"],dayNamesMin:[\"0\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"13\",\"14\",\"15\",\"16\",\"17\",\"18\",\"19\"],digits:null,dateFormat:\"YYYY.m.d\",firstDay:0,isRTL:!1,haabMonths:[\"Pop\",\"Uo\",\"Zip\",\"Zotz\",\"Tzec\",\"Xul\",\"Yaxkin\",\"Mol\",\"Chen\",\"Yax\",\"Zac\",\"Ceh\",\"Mac\",\"Kankin\",\"Muan\",\"Pax\",\"Kayab\",\"Cumku\",\"Uayeb\"],tzolkinMonths:[\"Imix\",\"Ik\",\"Akbal\",\"Kan\",\"Chicchan\",\"Cimi\",\"Manik\",\"Lamat\",\"Muluc\",\"Oc\",\"Chuen\",\"Eb\",\"Ben\",\"Ix\",\"Men\",\"Cib\",\"Caban\",\"Etznab\",\"Cauac\",\"Ahau\"]}},leapYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear),!1},formatYear:function(t){t=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear).year();var e=Math.floor(t/400);return t%=400,t+=t<0?400:0,e+\".\"+Math.floor(t/20)+\".\"+t%20},forYear:function(t){if((t=t.split(\".\")).length<3)throw\"Invalid Mayan year\";for(var e=0,r=0;r<t.length;r++){var n=parseInt(t[r],10);if(Math.abs(n)>19||r>0&&n<0)throw\"Invalid Mayan year\";e=20*e+n}return e},monthsInYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear),18},weekOfYear:function(t,e,r){return this._validate(t,e,r,n.local.invalidDate),0},daysInYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear),360},daysInMonth:function(t,e){return this._validate(t,e,this.minDay,n.local.invalidMonth),20},daysInWeek:function(){return 5},dayOfWeek:function(t,e,r){return this._validate(t,e,r,n.local.invalidDate).day()},weekDay:function(t,e,r){return this._validate(t,e,r,n.local.invalidDate),!0},extraInfo:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate).toJD(),i=this._toHaab(a),o=this._toTzolkin(a);return{haabMonthName:this.local.haabMonths[i[0]-1],haabMonth:i[0],haabDay:i[1],tzolkinDayName:this.local.tzolkinMonths[o[0]-1],tzolkinDay:o[0],tzolkinTrecena:o[1]}},_toHaab:function(t){var e=o((t-=this.jdEpoch)+8+340,365);return[Math.floor(e/20)+1,o(e,20)]},_toTzolkin:function(t){return[s((t-=this.jdEpoch)+20,20),s(t+4,13)]},toJD:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate);return a.day()+20*a.month()+360*a.year()+this.jdEpoch},fromJD:function(t){t=Math.floor(t)+.5-this.jdEpoch;var e=Math.floor(t/360);t%=360,t+=t<0?360:0;var r=Math.floor(t/20),n=t%20;return this.newDate(e,r,n)}}),n.calendars.mayan=i},{\"../main\":572,\"object-assign\":455}],566:[function(t,e,r){var n=t(\"../main\"),a=t(\"object-assign\");function i(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}i.prototype=new n.baseCalendar;var o=n.instance(\"gregorian\");a(i.prototype,{name:\"Nanakshahi\",jdEpoch:2257673.5,daysPerMonth:[31,31,31,31,31,30,30,30,30,30,30,30],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Nanakshahi\",epochs:[\"BN\",\"AN\"],monthNames:[\"Chet\",\"Vaisakh\",\"Jeth\",\"Harh\",\"Sawan\",\"Bhadon\",\"Assu\",\"Katak\",\"Maghar\",\"Poh\",\"Magh\",\"Phagun\"],monthNamesShort:[\"Che\",\"Vai\",\"Jet\",\"Har\",\"Saw\",\"Bha\",\"Ass\",\"Kat\",\"Mgr\",\"Poh\",\"Mgh\",\"Pha\"],dayNames:[\"Somvaar\",\"Mangalvar\",\"Budhvaar\",\"Veervaar\",\"Shukarvaar\",\"Sanicharvaar\",\"Etvaar\"],dayNamesShort:[\"Som\",\"Mangal\",\"Budh\",\"Veer\",\"Shukar\",\"Sanichar\",\"Et\"],dayNamesMin:[\"So\",\"Ma\",\"Bu\",\"Ve\",\"Sh\",\"Sa\",\"Et\"],digits:null,dateFormat:\"dd-mm-yyyy\",firstDay:0,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear||n.regionalOptions[\"\"].invalidYear);return o.leapYear(e.year()+(e.year()<1?1:0)+1469)},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(1-(n.dayOfWeek()||7),\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(12===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidMonth);(t=a.year())<0&&t++;for(var i=a.day(),s=1;s<a.month();s++)i+=this.daysPerMonth[s-1];return i+o.toJD(t+1468,3,13)},fromJD:function(t){t=Math.floor(t+.5);for(var e=Math.floor((t-(this.jdEpoch-1))/366);t>=this.toJD(e+1,1,1);)e++;for(var r=t-Math.floor(this.toJD(e,1,1)+.5)+1,n=1;r>this.daysInMonth(e,n);)r-=this.daysInMonth(e,n),n++;return this.newDate(e,n,r)}}),n.calendars.nanakshahi=i},{\"../main\":572,\"object-assign\":455}],567:[function(t,e,r){var n=t(\"../main\"),a=t(\"object-assign\");function i(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}i.prototype=new n.baseCalendar,a(i.prototype,{name:\"Nepali\",jdEpoch:1700709.5,daysPerMonth:[31,31,32,32,31,30,30,29,30,29,30,30],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,daysPerYear:365,regionalOptions:{\"\":{name:\"Nepali\",epochs:[\"BBS\",\"ABS\"],monthNames:[\"Baisakh\",\"Jestha\",\"Ashadh\",\"Shrawan\",\"Bhadra\",\"Ashwin\",\"Kartik\",\"Mangsir\",\"Paush\",\"Mangh\",\"Falgun\",\"Chaitra\"],monthNamesShort:[\"Bai\",\"Je\",\"As\",\"Shra\",\"Bha\",\"Ash\",\"Kar\",\"Mang\",\"Pau\",\"Ma\",\"Fal\",\"Chai\"],dayNames:[\"Aaitabaar\",\"Sombaar\",\"Manglbaar\",\"Budhabaar\",\"Bihibaar\",\"Shukrabaar\",\"Shanibaar\"],dayNamesShort:[\"Aaita\",\"Som\",\"Mangl\",\"Budha\",\"Bihi\",\"Shukra\",\"Shani\"],dayNamesMin:[\"Aai\",\"So\",\"Man\",\"Bu\",\"Bi\",\"Shu\",\"Sha\"],digits:null,dateFormat:\"dd/mm/yyyy\",firstDay:1,isRTL:!1}},leapYear:function(t){return this.daysInYear(t)!==this.daysPerYear},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-n.dayOfWeek(),\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInYear:function(t){if(t=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear).year(),\"undefined\"==typeof this.NEPALI_CALENDAR_DATA[t])return this.daysPerYear;for(var e=0,r=this.minMonth;r<=12;r++)e+=this.NEPALI_CALENDAR_DATA[t][r];return e},daysInMonth:function(t,e){return t.year&&(e=t.month(),t=t.year()),this._validate(t,e,this.minDay,n.local.invalidMonth),\"undefined\"==typeof this.NEPALI_CALENDAR_DATA[t]?this.daysPerMonth[e-1]:this.NEPALI_CALENDAR_DATA[t][e]},weekDay:function(t,e,r){return 6!==this.dayOfWeek(t,e,r)},toJD:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate);t=a.year(),e=a.month(),r=a.day();var i=n.instance(),o=0,s=e,l=t;this._createMissingCalendarData(t);var c=t-(s>9||9===s&&r>=this.NEPALI_CALENDAR_DATA[l][0]?56:57);for(9!==e&&(o=r,s--);9!==s;)s<=0&&(s=12,l--),o+=this.NEPALI_CALENDAR_DATA[l][s],s--;return 9===e?(o+=r-this.NEPALI_CALENDAR_DATA[l][0])<0&&(o+=i.daysInYear(c)):o+=this.NEPALI_CALENDAR_DATA[l][9]-this.NEPALI_CALENDAR_DATA[l][0],i.newDate(c,1,1).add(o,\"d\").toJD()},fromJD:function(t){var e=n.instance().fromJD(t),r=e.year(),a=e.dayOfYear(),i=r+56;this._createMissingCalendarData(i);for(var o=9,s=this.NEPALI_CALENDAR_DATA[i][0],l=this.NEPALI_CALENDAR_DATA[i][o]-s+1;a>l;)++o>12&&(o=1,i++),l+=this.NEPALI_CALENDAR_DATA[i][o];var c=this.NEPALI_CALENDAR_DATA[i][o]-(l-a);return this.newDate(i,o,c)},_createMissingCalendarData:function(t){var e=this.daysPerMonth.slice(0);e.unshift(17);for(var r=t-1;r<t+2;r++)\"undefined\"==typeof this.NEPALI_CALENDAR_DATA[r]&&(this.NEPALI_CALENDAR_DATA[r]=e)},NEPALI_CALENDAR_DATA:{1970:[18,31,31,32,31,31,31,30,29,30,29,30,30],1971:[18,31,31,32,31,32,30,30,29,30,29,30,30],1972:[17,31,32,31,32,31,30,30,30,29,29,30,30],1973:[19,30,32,31,32,31,30,30,30,29,30,29,31],1974:[19,31,31,32,30,31,31,30,29,30,29,30,30],1975:[18,31,31,32,32,30,31,30,29,30,29,30,30],1976:[17,31,32,31,32,31,30,30,30,29,29,30,31],1977:[18,31,32,31,32,31,31,29,30,29,30,29,31],1978:[18,31,31,32,31,31,31,30,29,30,29,30,30],1979:[18,31,31,32,32,31,30,30,29,30,29,30,30],1980:[17,31,32,31,32,31,30,30,30,29,29,30,31],1981:[18,31,31,31,32,31,31,29,30,30,29,30,30],1982:[18,31,31,32,31,31,31,30,29,30,29,30,30],1983:[18,31,31,32,32,31,30,30,29,30,29,30,30],1984:[17,31,32,31,32,31,30,30,30,29,29,30,31],1985:[18,31,31,31,32,31,31,29,30,30,29,30,30],1986:[18,31,31,32,31,31,31,30,29,30,29,30,30],1987:[18,31,32,31,32,31,30,30,29,30,29,30,30],1988:[17,31,32,31,32,31,30,30,30,29,29,30,31],1989:[18,31,31,31,32,31,31,30,29,30,29,30,30],1990:[18,31,31,32,31,31,31,30,29,30,29,30,30],1991:[18,31,32,31,32,31,30,30,29,30,29,30,30],1992:[17,31,32,31,32,31,30,30,30,29,30,29,31],1993:[18,31,31,31,32,31,31,30,29,30,29,30,30],1994:[18,31,31,32,31,31,31,30,29,30,29,30,30],1995:[17,31,32,31,32,31,30,30,30,29,29,30,30],1996:[17,31,32,31,32,31,30,30,30,29,30,29,31],1997:[18,31,31,32,31,31,31,30,29,30,29,30,30],1998:[18,31,31,32,31,31,31,30,29,30,29,30,30],1999:[17,31,32,31,32,31,30,30,30,29,29,30,31],2000:[17,30,32,31,32,31,30,30,30,29,30,29,31],2001:[18,31,31,32,31,31,31,30,29,30,29,30,30],2002:[18,31,31,32,32,31,30,30,29,30,29,30,30],2003:[17,31,32,31,32,31,30,30,30,29,29,30,31],2004:[17,30,32,31,32,31,30,30,30,29,30,29,31],2005:[18,31,31,32,31,31,31,30,29,30,29,30,30],2006:[18,31,31,32,32,31,30,30,29,30,29,30,30],2007:[17,31,32,31,32,31,30,30,30,29,29,30,31],2008:[17,31,31,31,32,31,31,29,30,30,29,29,31],2009:[18,31,31,32,31,31,31,30,29,30,29,30,30],2010:[18,31,31,32,32,31,30,30,29,30,29,30,30],2011:[17,31,32,31,32,31,30,30,30,29,29,30,31],2012:[17,31,31,31,32,31,31,29,30,30,29,30,30],2013:[18,31,31,32,31,31,31,30,29,30,29,30,30],2014:[18,31,31,32,32,31,30,30,29,30,29,30,30],2015:[17,31,32,31,32,31,30,30,30,29,29,30,31],2016:[17,31,31,31,32,31,31,29,30,30,29,30,30],2017:[18,31,31,32,31,31,31,30,29,30,29,30,30],2018:[18,31,32,31,32,31,30,30,29,30,29,30,30],2019:[17,31,32,31,32,31,30,30,30,29,30,29,31],2020:[17,31,31,31,32,31,31,30,29,30,29,30,30],2021:[18,31,31,32,31,31,31,30,29,30,29,30,30],2022:[17,31,32,31,32,31,30,30,30,29,29,30,30],2023:[17,31,32,31,32,31,30,30,30,29,30,29,31],2024:[17,31,31,31,32,31,31,30,29,30,29,30,30],2025:[18,31,31,32,31,31,31,30,29,30,29,30,30],2026:[17,31,32,31,32,31,30,30,30,29,29,30,31],2027:[17,30,32,31,32,31,30,30,30,29,30,29,31],2028:[17,31,31,32,31,31,31,30,29,30,29,30,30],2029:[18,31,31,32,31,32,30,30,29,30,29,30,30],2030:[17,31,32,31,32,31,30,30,30,30,30,30,31],2031:[17,31,32,31,32,31,31,31,31,31,31,31,31],2032:[17,32,32,32,32,32,32,32,32,32,32,32,32],2033:[18,31,31,32,32,31,30,30,29,30,29,30,30],2034:[17,31,32,31,32,31,30,30,30,29,29,30,31],2035:[17,30,32,31,32,31,31,29,30,30,29,29,31],2036:[17,31,31,32,31,31,31,30,29,30,29,30,30],2037:[18,31,31,32,32,31,30,30,29,30,29,30,30],2038:[17,31,32,31,32,31,30,30,30,29,29,30,31],2039:[17,31,31,31,32,31,31,29,30,30,29,30,30],2040:[17,31,31,32,31,31,31,30,29,30,29,30,30],2041:[18,31,31,32,32,31,30,30,29,30,29,30,30],2042:[17,31,32,31,32,31,30,30,30,29,29,30,31],2043:[17,31,31,31,32,31,31,29,30,30,29,30,30],2044:[17,31,31,32,31,31,31,30,29,30,29,30,30],2045:[18,31,32,31,32,31,30,30,29,30,29,30,30],2046:[17,31,32,31,32,31,30,30,30,29,29,30,31],2047:[17,31,31,31,32,31,31,30,29,30,29,30,30],2048:[17,31,31,32,31,31,31,30,29,30,29,30,30],2049:[17,31,32,31,32,31,30,30,30,29,29,30,30],2050:[17,31,32,31,32,31,30,30,30,29,30,29,31],2051:[17,31,31,31,32,31,31,30,29,30,29,30,30],2052:[17,31,31,32,31,31,31,30,29,30,29,30,30],2053:[17,31,32,31,32,31,30,30,30,29,29,30,30],2054:[17,31,32,31,32,31,30,30,30,29,30,29,31],2055:[17,31,31,32,31,31,31,30,29,30,30,29,30],2056:[17,31,31,32,31,32,30,30,29,30,29,30,30],2057:[17,31,32,31,32,31,30,30,30,29,29,30,31],2058:[17,30,32,31,32,31,30,30,30,29,30,29,31],2059:[17,31,31,32,31,31,31,30,29,30,29,30,30],2060:[17,31,31,32,32,31,30,30,29,30,29,30,30],2061:[17,31,32,31,32,31,30,30,30,29,29,30,31],2062:[17,30,32,31,32,31,31,29,30,29,30,29,31],2063:[17,31,31,32,31,31,31,30,29,30,29,30,30],2064:[17,31,31,32,32,31,30,30,29,30,29,30,30],2065:[17,31,32,31,32,31,30,30,30,29,29,30,31],2066:[17,31,31,31,32,31,31,29,30,30,29,29,31],2067:[17,31,31,32,31,31,31,30,29,30,29,30,30],2068:[17,31,31,32,32,31,30,30,29,30,29,30,30],2069:[17,31,32,31,32,31,30,30,30,29,29,30,31],2070:[17,31,31,31,32,31,31,29,30,30,29,30,30],2071:[17,31,31,32,31,31,31,30,29,30,29,30,30],2072:[17,31,32,31,32,31,30,30,29,30,29,30,30],2073:[17,31,32,31,32,31,30,30,30,29,29,30,31],2074:[17,31,31,31,32,31,31,30,29,30,29,30,30],2075:[17,31,31,32,31,31,31,30,29,30,29,30,30],2076:[16,31,32,31,32,31,30,30,30,29,29,30,30],2077:[17,31,32,31,32,31,30,30,30,29,30,29,31],2078:[17,31,31,31,32,31,31,30,29,30,29,30,30],2079:[17,31,31,32,31,31,31,30,29,30,29,30,30],2080:[16,31,32,31,32,31,30,30,30,29,29,30,30],2081:[17,31,31,32,32,31,30,30,30,29,30,30,30],2082:[17,31,32,31,32,31,30,30,30,29,30,30,30],2083:[17,31,31,32,31,31,30,30,30,29,30,30,30],2084:[17,31,31,32,31,31,30,30,30,29,30,30,30],2085:[17,31,32,31,32,31,31,30,30,29,30,30,30],2086:[17,31,32,31,32,31,30,30,30,29,30,30,30],2087:[16,31,31,32,31,31,31,30,30,29,30,30,30],2088:[16,30,31,32,32,30,31,30,30,29,30,30,30],2089:[17,31,32,31,32,31,30,30,30,29,30,30,30],2090:[17,31,32,31,32,31,30,30,30,29,30,30,30],2091:[16,31,31,32,31,31,31,30,30,29,30,30,30],2092:[16,31,31,32,32,31,30,30,30,29,30,30,30],2093:[17,31,32,31,32,31,30,30,30,29,30,30,30],2094:[17,31,31,32,31,31,30,30,30,29,30,30,30],2095:[17,31,31,32,31,31,31,30,29,30,30,30,30],2096:[17,30,31,32,32,31,30,30,29,30,29,30,30],2097:[17,31,32,31,32,31,30,30,30,29,30,30,30],2098:[17,31,31,32,31,31,31,29,30,29,30,30,31],2099:[17,31,31,32,31,31,31,30,29,29,30,30,30],2100:[17,31,32,31,32,30,31,30,29,30,29,30,30]}}),n.calendars.nepali=i},{\"../main\":572,\"object-assign\":455}],568:[function(t,e,r){var n=t(\"../main\"),a=t(\"object-assign\");function i(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}function o(t,e){return t-e*Math.floor(t/e)}i.prototype=new n.baseCalendar,a(i.prototype,{name:\"Persian\",jdEpoch:1948320.5,daysPerMonth:[31,31,31,31,31,31,30,30,30,30,30,29],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Persian\",epochs:[\"BP\",\"AP\"],monthNames:[\"Farvardin\",\"Ordibehesht\",\"Khordad\",\"Tir\",\"Mordad\",\"Shahrivar\",\"Mehr\",\"Aban\",\"Azar\",\"Day\",\"Bahman\",\"Esfand\"],monthNamesShort:[\"Far\",\"Ord\",\"Kho\",\"Tir\",\"Mor\",\"Sha\",\"Meh\",\"Aba\",\"Aza\",\"Day\",\"Bah\",\"Esf\"],dayNames:[\"Yekshambe\",\"Doshambe\",\"Seshambe\",\"Ch\\xe6harshambe\",\"Panjshambe\",\"Jom'e\",\"Shambe\"],dayNamesShort:[\"Yek\",\"Do\",\"Se\",\"Ch\\xe6\",\"Panj\",\"Jom\",\"Sha\"],dayNamesMin:[\"Ye\",\"Do\",\"Se\",\"Ch\",\"Pa\",\"Jo\",\"Sh\"],digits:null,dateFormat:\"yyyy/mm/dd\",firstDay:6,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);return 682*((e.year()-(e.year()>0?474:473))%2820+474+38)%2816<682},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-(n.dayOfWeek()+1)%7,\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(12===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return 5!==this.dayOfWeek(t,e,r)},toJD:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate);t=a.year(),e=a.month(),r=a.day();var i=t-(t>=0?474:473),s=474+o(i,2820);return r+(e<=7?31*(e-1):30*(e-1)+6)+Math.floor((682*s-110)/2816)+365*(s-1)+1029983*Math.floor(i/2820)+this.jdEpoch-1},fromJD:function(t){var e=(t=Math.floor(t)+.5)-this.toJD(475,1,1),r=Math.floor(e/1029983),n=o(e,1029983),a=2820;if(1029982!==n){var i=Math.floor(n/366),s=o(n,366);a=Math.floor((2134*i+2816*s+2815)/1028522)+i+1}var l=a+2820*r+474;l=l<=0?l-1:l;var c=t-this.toJD(l,1,1)+1,u=c<=186?Math.ceil(c/31):Math.ceil((c-6)/30),h=t-this.toJD(l,u,1)+1;return this.newDate(l,u,h)}}),n.calendars.persian=i,n.calendars.jalali=i},{\"../main\":572,\"object-assign\":455}],569:[function(t,e,r){var n=t(\"../main\"),a=t(\"object-assign\"),i=n.instance();function o(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}o.prototype=new n.baseCalendar,a(o.prototype,{name:\"Taiwan\",jdEpoch:2419402.5,yearsOffset:1911,daysPerMonth:[31,28,31,30,31,30,31,31,30,31,30,31],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Taiwan\",epochs:[\"BROC\",\"ROC\"],monthNames:[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],monthNamesShort:[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],dayNames:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],dayNamesShort:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],dayNamesMin:[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"],digits:null,dateFormat:\"yyyy/mm/dd\",firstDay:1,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);t=this._t2gYear(e.year());return i.leapYear(t)},weekOfYear:function(t,e,r){var a=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);t=this._t2gYear(a.year());return i.weekOfYear(t,a.month(),a.day())},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(2===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate);t=this._t2gYear(a.year());return i.toJD(t,a.month(),a.day())},fromJD:function(t){var e=i.fromJD(t),r=this._g2tYear(e.year());return this.newDate(r,e.month(),e.day())},_t2gYear:function(t){return t+this.yearsOffset+(t>=-this.yearsOffset&&t<=-1?1:0)},_g2tYear:function(t){return t-this.yearsOffset-(t>=1&&t<=this.yearsOffset?1:0)}}),n.calendars.taiwan=o},{\"../main\":572,\"object-assign\":455}],570:[function(t,e,r){var n=t(\"../main\"),a=t(\"object-assign\"),i=n.instance();function o(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}o.prototype=new n.baseCalendar,a(o.prototype,{name:\"Thai\",jdEpoch:1523098.5,yearsOffset:543,daysPerMonth:[31,28,31,30,31,30,31,31,30,31,30,31],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Thai\",epochs:[\"BBE\",\"BE\"],monthNames:[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],monthNamesShort:[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],dayNames:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],dayNamesShort:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],dayNamesMin:[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"],digits:null,dateFormat:\"dd/mm/yyyy\",firstDay:0,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);t=this._t2gYear(e.year());return i.leapYear(t)},weekOfYear:function(t,e,r){var a=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);t=this._t2gYear(a.year());return i.weekOfYear(t,a.month(),a.day())},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(2===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate);t=this._t2gYear(a.year());return i.toJD(t,a.month(),a.day())},fromJD:function(t){var e=i.fromJD(t),r=this._g2tYear(e.year());return this.newDate(r,e.month(),e.day())},_t2gYear:function(t){return t-this.yearsOffset-(t>=1&&t<=this.yearsOffset?1:0)},_g2tYear:function(t){return t+this.yearsOffset+(t>=-this.yearsOffset&&t<=-1?1:0)}}),n.calendars.thai=o},{\"../main\":572,\"object-assign\":455}],571:[function(t,e,r){var n=t(\"../main\"),a=t(\"object-assign\");function i(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}i.prototype=new n.baseCalendar,a(i.prototype,{name:\"UmmAlQura\",hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Umm al-Qura\",epochs:[\"BH\",\"AH\"],monthNames:[\"Al-Muharram\",\"Safar\",\"Rabi' al-awwal\",\"Rabi' Al-Thani\",\"Jumada Al-Awwal\",\"Jumada Al-Thani\",\"Rajab\",\"Sha'aban\",\"Ramadan\",\"Shawwal\",\"Dhu al-Qi'dah\",\"Dhu al-Hijjah\"],monthNamesShort:[\"Muh\",\"Saf\",\"Rab1\",\"Rab2\",\"Jum1\",\"Jum2\",\"Raj\",\"Sha'\",\"Ram\",\"Shaw\",\"DhuQ\",\"DhuH\"],dayNames:[\"Yawm al-Ahad\",\"Yawm al-Ithnain\",\"Yawm al-Thal\\u0101th\\u0101\\u2019\",\"Yawm al-Arba\\u2018\\u0101\\u2019\",\"Yawm al-Kham\\u012bs\",\"Yawm al-Jum\\u2018a\",\"Yawm al-Sabt\"],dayNamesMin:[\"Ah\",\"Ith\",\"Th\",\"Ar\",\"Kh\",\"Ju\",\"Sa\"],digits:null,dateFormat:\"yyyy/mm/dd\",firstDay:6,isRTL:!0}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);return 355===this.daysInYear(e.year())},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-n.dayOfWeek(),\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInYear:function(t){for(var e=0,r=1;r<=12;r++)e+=this.daysInMonth(t,r);return e},daysInMonth:function(t,e){for(var r=this._validate(t,e,this.minDay,n.local.invalidMonth).toJD()-24e5+.5,a=0,i=0;i<o.length;i++){if(o[i]>r)return o[a]-o[a-1];a++}return 30},weekDay:function(t,e,r){return 5!==this.dayOfWeek(t,e,r)},toJD:function(t,e,r){var a=this._validate(t,e,r,n.local.invalidDate),i=12*(a.year()-1)+a.month()-15292;return a.day()+o[i-1]-1+24e5-.5},fromJD:function(t){for(var e=t-24e5+.5,r=0,n=0;n<o.length&&!(o[n]>e);n++)r++;var a=r+15292,i=Math.floor((a-1)/12),s=i+1,l=a-12*i,c=e-o[r-1]+1;return this.newDate(s,l,c)},isValid:function(t,e,r){var a=n.baseCalendar.prototype.isValid.apply(this,arguments);return a&&(a=(t=null!=t.year?t.year:t)>=1276&&t<=1500),a},_validate:function(t,e,r,a){var i=n.baseCalendar.prototype._validate.apply(this,arguments);if(i.year<1276||i.year>1500)throw a.replace(/\\{0\\}/,this.local.name);return i}}),n.calendars.ummalqura=i;var o=[20,50,79,109,138,168,197,227,256,286,315,345,374,404,433,463,492,522,551,581,611,641,670,700,729,759,788,818,847,877,906,936,965,995,1024,1054,1083,1113,1142,1172,1201,1231,1260,1290,1320,1350,1379,1409,1438,1468,1497,1527,1556,1586,1615,1645,1674,1704,1733,1763,1792,1822,1851,1881,1910,1940,1969,1999,2028,2058,2087,2117,2146,2176,2205,2235,2264,2294,2323,2353,2383,2413,2442,2472,2501,2531,2560,2590,2619,2649,2678,2708,2737,2767,2796,2826,2855,2885,2914,2944,2973,3003,3032,3062,3091,3121,3150,3180,3209,3239,3268,3298,3327,3357,3386,3416,3446,3476,3505,3535,3564,3594,3623,3653,3682,3712,3741,3771,3800,3830,3859,3889,3918,3948,3977,4007,4036,4066,4095,4125,4155,4185,4214,4244,4273,4303,4332,4362,4391,4421,4450,4480,4509,4539,4568,4598,4627,4657,4686,4716,4745,4775,4804,4834,4863,4893,4922,4952,4981,5011,5040,5070,5099,5129,5158,5188,5218,5248,5277,5307,5336,5366,5395,5425,5454,5484,5513,5543,5572,5602,5631,5661,5690,5720,5749,5779,5808,5838,5867,5897,5926,5956,5985,6015,6044,6074,6103,6133,6162,6192,6221,6251,6281,6311,6340,6370,6399,6429,6458,6488,6517,6547,6576,6606,6635,6665,6694,6724,6753,6783,6812,6842,6871,6901,6930,6960,6989,7019,7048,7078,7107,7137,7166,7196,7225,7255,7284,7314,7344,7374,7403,7433,7462,7492,7521,7551,7580,7610,7639,7669,7698,7728,7757,7787,7816,7846,7875,7905,7934,7964,7993,8023,8053,8083,8112,8142,8171,8201,8230,8260,8289,8319,8348,8378,8407,8437,8466,8496,8525,8555,8584,8614,8643,8673,8702,8732,8761,8791,8821,8850,8880,8909,8938,8968,8997,9027,9056,9086,9115,9145,9175,9205,9234,9264,9293,9322,9352,9381,9410,9440,9470,9499,9529,9559,9589,9618,9648,9677,9706,9736,9765,9794,9824,9853,9883,9913,9943,9972,10002,10032,10061,10090,10120,10149,10178,10208,10237,10267,10297,10326,10356,10386,10415,10445,10474,10504,10533,10562,10592,10621,10651,10680,10710,10740,10770,10799,10829,10858,10888,10917,10947,10976,11005,11035,11064,11094,11124,11153,11183,11213,11242,11272,11301,11331,11360,11389,11419,11448,11478,11507,11537,11567,11596,11626,11655,11685,11715,11744,11774,11803,11832,11862,11891,11921,11950,11980,12010,12039,12069,12099,12128,12158,12187,12216,12246,12275,12304,12334,12364,12393,12423,12453,12483,12512,12542,12571,12600,12630,12659,12688,12718,12747,12777,12807,12837,12866,12896,12926,12955,12984,13014,13043,13072,13102,13131,13161,13191,13220,13250,13280,13310,13339,13368,13398,13427,13456,13486,13515,13545,13574,13604,13634,13664,13693,13723,13752,13782,13811,13840,13870,13899,13929,13958,13988,14018,14047,14077,14107,14136,14166,14195,14224,14254,14283,14313,14342,14372,14401,14431,14461,14490,14520,14550,14579,14609,14638,14667,14697,14726,14756,14785,14815,14844,14874,14904,14933,14963,14993,15021,15051,15081,15110,15140,15169,15199,15228,15258,15287,15317,15347,15377,15406,15436,15465,15494,15524,15553,15582,15612,15641,15671,15701,15731,15760,15790,15820,15849,15878,15908,15937,15966,15996,16025,16055,16085,16114,16144,16174,16204,16233,16262,16292,16321,16350,16380,16409,16439,16468,16498,16528,16558,16587,16617,16646,16676,16705,16734,16764,16793,16823,16852,16882,16912,16941,16971,17001,17030,17060,17089,17118,17148,17177,17207,17236,17266,17295,17325,17355,17384,17414,17444,17473,17502,17532,17561,17591,17620,17650,17679,17709,17738,17768,17798,17827,17857,17886,17916,17945,17975,18004,18034,18063,18093,18122,18152,18181,18211,18241,18270,18300,18330,18359,18388,18418,18447,18476,18506,18535,18565,18595,18625,18654,18684,18714,18743,18772,18802,18831,18860,18890,18919,18949,18979,19008,19038,19068,19098,19127,19156,19186,19215,19244,19274,19303,19333,19362,19392,19422,19452,19481,19511,19540,19570,19599,19628,19658,19687,19717,19746,19776,19806,19836,19865,19895,19924,19954,19983,20012,20042,20071,20101,20130,20160,20190,20219,20249,20279,20308,20338,20367,20396,20426,20455,20485,20514,20544,20573,20603,20633,20662,20692,20721,20751,20780,20810,20839,20869,20898,20928,20957,20987,21016,21046,21076,21105,21135,21164,21194,21223,21253,21282,21312,21341,21371,21400,21430,21459,21489,21519,21548,21578,21607,21637,21666,21696,21725,21754,21784,21813,21843,21873,21902,21932,21962,21991,22021,22050,22080,22109,22138,22168,22197,22227,22256,22286,22316,22346,22375,22405,22434,22464,22493,22522,22552,22581,22611,22640,22670,22700,22730,22759,22789,22818,22848,22877,22906,22936,22965,22994,23024,23054,23083,23113,23143,23173,23202,23232,23261,23290,23320,23349,23379,23408,23438,23467,23497,23527,23556,23586,23616,23645,23674,23704,23733,23763,23792,23822,23851,23881,23910,23940,23970,23999,24029,24058,24088,24117,24147,24176,24206,24235,24265,24294,24324,24353,24383,24413,24442,24472,24501,24531,24560,24590,24619,24648,24678,24707,24737,24767,24796,24826,24856,24885,24915,24944,24974,25003,25032,25062,25091,25121,25150,25180,25210,25240,25269,25299,25328,25358,25387,25416,25446,25475,25505,25534,25564,25594,25624,25653,25683,25712,25742,25771,25800,25830,25859,25888,25918,25948,25977,26007,26037,26067,26096,26126,26155,26184,26214,26243,26272,26302,26332,26361,26391,26421,26451,26480,26510,26539,26568,26598,26627,26656,26686,26715,26745,26775,26805,26834,26864,26893,26923,26952,26982,27011,27041,27070,27099,27129,27159,27188,27218,27248,27277,27307,27336,27366,27395,27425,27454,27484,27513,27542,27572,27602,27631,27661,27691,27720,27750,27779,27809,27838,27868,27897,27926,27956,27985,28015,28045,28074,28104,28134,28163,28193,28222,28252,28281,28310,28340,28369,28399,28428,28458,28488,28517,28547,28577,28607,28636,28665,28695,28724,28754,28783,28813,28843,28872,28901,28931,28960,28990,29019,29049,29078,29108,29137,29167,29196,29226,29255,29285,29315,29345,29375,29404,29434,29463,29492,29522,29551,29580,29610,29640,29669,29699,29729,29759,29788,29818,29847,29876,29906,29935,29964,29994,30023,30053,30082,30112,30141,30171,30200,30230,30259,30289,30318,30348,30378,30408,30437,30467,30496,30526,30555,30585,30614,30644,30673,30703,30732,30762,30791,30821,30850,30880,30909,30939,30968,30998,31027,31057,31086,31116,31145,31175,31204,31234,31263,31293,31322,31352,31381,31411,31441,31471,31500,31530,31559,31589,31618,31648,31676,31706,31736,31766,31795,31825,31854,31884,31913,31943,31972,32002,32031,32061,32090,32120,32150,32180,32209,32239,32268,32298,32327,32357,32386,32416,32445,32475,32504,32534,32563,32593,32622,32652,32681,32711,32740,32770,32799,32829,32858,32888,32917,32947,32976,33006,33035,33065,33094,33124,33153,33183,33213,33243,33272,33302,33331,33361,33390,33420,33450,33479,33509,33539,33568,33598,33627,33657,33686,33716,33745,33775,33804,33834,33863,33893,33922,33952,33981,34011,34040,34069,34099,34128,34158,34187,34217,34247,34277,34306,34336,34365,34395,34424,34454,34483,34512,34542,34571,34601,34631,34660,34690,34719,34749,34778,34808,34837,34867,34896,34926,34955,34985,35015,35044,35074,35103,35133,35162,35192,35222,35251,35280,35310,35340,35370,35399,35429,35458,35488,35517,35547,35576,35605,35635,35665,35694,35723,35753,35782,35811,35841,35871,35901,35930,35960,35989,36019,36048,36078,36107,36136,36166,36195,36225,36254,36284,36314,36343,36373,36403,36433,36462,36492,36521,36551,36580,36610,36639,36669,36698,36728,36757,36786,36816,36845,36875,36904,36934,36963,36993,37022,37052,37081,37111,37141,37170,37200,37229,37259,37288,37318,37347,37377,37406,37436,37465,37495,37524,37554,37584,37613,37643,37672,37701,37731,37760,37790,37819,37849,37878,37908,37938,37967,37997,38027,38056,38085,38115,38144,38174,38203,38233,38262,38292,38322,38351,38381,38410,38440,38469,38499,38528,38558,38587,38617,38646,38676,38705,38735,38764,38794,38823,38853,38882,38912,38941,38971,39001,39030,39059,39089,39118,39148,39178,39208,39237,39267,39297,39326,39355,39385,39414,39444,39473,39503,39532,39562,39592,39621,39650,39680,39709,39739,39768,39798,39827,39857,39886,39916,39946,39975,40005,40035,40064,40094,40123,40153,40182,40212,40241,40271,40300,40330,40359,40389,40418,40448,40477,40507,40536,40566,40595,40625,40655,40685,40714,40744,40773,40803,40832,40862,40892,40921,40951,40980,41009,41039,41068,41098,41127,41157,41186,41216,41245,41275,41304,41334,41364,41393,41422,41452,41481,41511,41540,41570,41599,41629,41658,41688,41718,41748,41777,41807,41836,41865,41894,41924,41953,41983,42012,42042,42072,42102,42131,42161,42190,42220,42249,42279,42308,42337,42367,42397,42426,42456,42485,42515,42545,42574,42604,42633,42662,42692,42721,42751,42780,42810,42839,42869,42899,42929,42958,42988,43017,43046,43076,43105,43135,43164,43194,43223,43253,43283,43312,43342,43371,43401,43430,43460,43489,43519,43548,43578,43607,43637,43666,43696,43726,43755,43785,43814,43844,43873,43903,43932,43962,43991,44021,44050,44080,44109,44139,44169,44198,44228,44258,44287,44317,44346,44375,44405,44434,44464,44493,44523,44553,44582,44612,44641,44671,44700,44730,44759,44788,44818,44847,44877,44906,44936,44966,44996,45025,45055,45084,45114,45143,45172,45202,45231,45261,45290,45320,45350,45380,45409,45439,45468,45498,45527,45556,45586,45615,45644,45674,45704,45733,45763,45793,45823,45852,45882,45911,45940,45970,45999,46028,46058,46088,46117,46147,46177,46206,46236,46265,46295,46324,46354,46383,46413,46442,46472,46501,46531,46560,46590,46620,46649,46679,46708,46738,46767,46797,46826,46856,46885,46915,46944,46974,47003,47033,47063,47092,47122,47151,47181,47210,47240,47269,47298,47328,47357,47387,47417,47446,47476,47506,47535,47565,47594,47624,47653,47682,47712,47741,47771,47800,47830,47860,47890,47919,47949,47978,48008,48037,48066,48096,48125,48155,48184,48214,48244,48273,48303,48333,48362,48392,48421,48450,48480,48509,48538,48568,48598,48627,48657,48687,48717,48746,48776,48805,48834,48864,48893,48922,48952,48982,49011,49041,49071,49100,49130,49160,49189,49218,49248,49277,49306,49336,49365,49395,49425,49455,49484,49514,49543,49573,49602,49632,49661,49690,49720,49749,49779,49809,49838,49868,49898,49927,49957,49986,50016,50045,50075,50104,50133,50163,50192,50222,50252,50281,50311,50340,50370,50400,50429,50459,50488,50518,50547,50576,50606,50635,50665,50694,50724,50754,50784,50813,50843,50872,50902,50931,50960,50990,51019,51049,51078,51108,51138,51167,51197,51227,51256,51286,51315,51345,51374,51403,51433,51462,51492,51522,51552,51582,51611,51641,51670,51699,51729,51758,51787,51816,51846,51876,51906,51936,51965,51995,52025,52054,52083,52113,52142,52171,52200,52230,52260,52290,52319,52349,52379,52408,52438,52467,52497,52526,52555,52585,52614,52644,52673,52703,52733,52762,52792,52822,52851,52881,52910,52939,52969,52998,53028,53057,53087,53116,53146,53176,53205,53235,53264,53294,53324,53353,53383,53412,53441,53471,53500,53530,53559,53589,53619,53648,53678,53708,53737,53767,53796,53825,53855,53884,53913,53943,53973,54003,54032,54062,54092,54121,54151,54180,54209,54239,54268,54297,54327,54357,54387,54416,54446,54476,54505,54535,54564,54593,54623,54652,54681,54711,54741,54770,54800,54830,54859,54889,54919,54948,54977,55007,55036,55066,55095,55125,55154,55184,55213,55243,55273,55302,55332,55361,55391,55420,55450,55479,55508,55538,55567,55597,55627,55657,55686,55716,55745,55775,55804,55834,55863,55892,55922,55951,55981,56011,56040,56070,56100,56129,56159,56188,56218,56247,56276,56306,56335,56365,56394,56424,56454,56483,56513,56543,56572,56601,56631,56660,56690,56719,56749,56778,56808,56837,56867,56897,56926,56956,56985,57015,57044,57074,57103,57133,57162,57192,57221,57251,57280,57310,57340,57369,57399,57429,57458,57487,57517,57546,57576,57605,57634,57664,57694,57723,57753,57783,57813,57842,57871,57901,57930,57959,57989,58018,58048,58077,58107,58137,58167,58196,58226,58255,58285,58314,58343,58373,58402,58432,58461,58491,58521,58551,58580,58610,58639,58669,58698,58727,58757,58786,58816,58845,58875,58905,58934,58964,58994,59023,59053,59082,59111,59141,59170,59200,59229,59259,59288,59318,59348,59377,59407,59436,59466,59495,59525,59554,59584,59613,59643,59672,59702,59731,59761,59791,59820,59850,59879,59909,59939,59968,59997,60027,60056,60086,60115,60145,60174,60204,60234,60264,60293,60323,60352,60381,60411,60440,60469,60499,60528,60558,60588,60618,60648,60677,60707,60736,60765,60795,60824,60853,60883,60912,60942,60972,61002,61031,61061,61090,61120,61149,61179,61208,61237,61267,61296,61326,61356,61385,61415,61445,61474,61504,61533,61563,61592,61621,61651,61680,61710,61739,61769,61799,61828,61858,61888,61917,61947,61976,62006,62035,62064,62094,62123,62153,62182,62212,62242,62271,62301,62331,62360,62390,62419,62448,62478,62507,62537,62566,62596,62625,62655,62685,62715,62744,62774,62803,62832,62862,62891,62921,62950,62980,63009,63039,63069,63099,63128,63157,63187,63216,63246,63275,63305,63334,63363,63393,63423,63453,63482,63512,63541,63571,63600,63630,63659,63689,63718,63747,63777,63807,63836,63866,63895,63925,63955,63984,64014,64043,64073,64102,64131,64161,64190,64220,64249,64279,64309,64339,64368,64398,64427,64457,64486,64515,64545,64574,64603,64633,64663,64692,64722,64752,64782,64811,64841,64870,64899,64929,64958,64987,65017,65047,65076,65106,65136,65166,65195,65225,65254,65283,65313,65342,65371,65401,65431,65460,65490,65520,65549,65579,65608,65638,65667,65697,65726,65755,65785,65815,65844,65874,65903,65933,65963,65992,66022,66051,66081,66110,66140,66169,66199,66228,66258,66287,66317,66346,66376,66405,66435,66465,66494,66524,66553,66583,66612,66641,66671,66700,66730,66760,66789,66819,66849,66878,66908,66937,66967,66996,67025,67055,67084,67114,67143,67173,67203,67233,67262,67292,67321,67351,67380,67409,67439,67468,67497,67527,67557,67587,67617,67646,67676,67705,67735,67764,67793,67823,67852,67882,67911,67941,67971,68e3,68030,68060,68089,68119,68148,68177,68207,68236,68266,68295,68325,68354,68384,68414,68443,68473,68502,68532,68561,68591,68620,68650,68679,68708,68738,68768,68797,68827,68857,68886,68916,68946,68975,69004,69034,69063,69092,69122,69152,69181,69211,69240,69270,69300,69330,69359,69388,69418,69447,69476,69506,69535,69565,69595,69624,69654,69684,69713,69743,69772,69802,69831,69861,69890,69919,69949,69978,70008,70038,70067,70097,70126,70156,70186,70215,70245,70274,70303,70333,70362,70392,70421,70451,70481,70510,70540,70570,70599,70629,70658,70687,70717,70746,70776,70805,70835,70864,70894,70924,70954,70983,71013,71042,71071,71101,71130,71159,71189,71218,71248,71278,71308,71337,71367,71397,71426,71455,71485,71514,71543,71573,71602,71632,71662,71691,71721,71751,71781,71810,71839,71869,71898,71927,71957,71986,72016,72046,72075,72105,72135,72164,72194,72223,72253,72282,72311,72341,72370,72400,72429,72459,72489,72518,72548,72577,72607,72637,72666,72695,72725,72754,72784,72813,72843,72872,72902,72931,72961,72991,73020,73050,73080,73109,73139,73168,73197,73227,73256,73286,73315,73345,73375,73404,73434,73464,73493,73523,73552,73581,73611,73640,73669,73699,73729,73758,73788,73818,73848,73877,73907,73936,73965,73995,74024,74053,74083,74113,74142,74172,74202,74231,74261,74291,74320,74349,74379,74408,74437,74467,74497,74526,74556,74586,74615,74645,74675,74704,74733,74763,74792,74822,74851,74881,74910,74940,74969,74999,75029,75058,75088,75117,75147,75176,75206,75235,75264,75294,75323,75353,75383,75412,75442,75472,75501,75531,75560,75590,75619,75648,75678,75707,75737,75766,75796,75826,75856,75885,75915,75944,75974,76003,76032,76062,76091,76121,76150,76180,76210,76239,76269,76299,76328,76358,76387,76416,76446,76475,76505,76534,76564,76593,76623,76653,76682,76712,76741,76771,76801,76830,76859,76889,76918,76948,76977,77007,77036,77066,77096,77125,77155,77185,77214,77243,77273,77302,77332,77361,77390,77420,77450,77479,77509,77539,77569,77598,77627,77657,77686,77715,77745,77774,77804,77833,77863,77893,77923,77952,77982,78011,78041,78070,78099,78129,78158,78188,78217,78247,78277,78307,78336,78366,78395,78425,78454,78483,78513,78542,78572,78601,78631,78661,78690,78720,78750,78779,78808,78838,78867,78897,78926,78956,78985,79015,79044,79074,79104,79133,79163,79192,79222,79251,79281,79310,79340,79369,79399,79428,79458,79487,79517,79546,79576,79606,79635,79665,79695,79724,79753,79783,79812,79841,79871,79900,79930,79960,79990]},{\"../main\":572,\"object-assign\":455}],572:[function(t,e,r){var n=t(\"object-assign\");function a(){this.regionalOptions=[],this.regionalOptions[\"\"]={invalidCalendar:\"Calendar {0} not found\",invalidDate:\"Invalid {0} date\",invalidMonth:\"Invalid {0} month\",invalidYear:\"Invalid {0} year\",differentCalendars:\"Cannot mix {0} and {1} dates\"},this.local=this.regionalOptions[\"\"],this.calendars={},this._localCals={}}function i(t,e,r,n){if(this._calendar=t,this._year=e,this._month=r,this._day=n,0===this._calendar._validateLevel&&!this._calendar.isValid(this._year,this._month,this._day))throw(c.local.invalidDate||c.regionalOptions[\"\"].invalidDate).replace(/\\{0\\}/,this._calendar.local.name)}function o(t,e){return\"000000\".substring(0,e-(t=\"\"+t).length)+t}function s(){this.shortYearCutoff=\"+10\"}function l(t){this.local=this.regionalOptions[t]||this.regionalOptions[\"\"]}n(a.prototype,{instance:function(t,e){t=(t||\"gregorian\").toLowerCase(),e=e||\"\";var r=this._localCals[t+\"-\"+e];if(!r&&this.calendars[t]&&(r=new this.calendars[t](e),this._localCals[t+\"-\"+e]=r),!r)throw(this.local.invalidCalendar||this.regionalOptions[\"\"].invalidCalendar).replace(/\\{0\\}/,t);return r},newDate:function(t,e,r,n,a){return(n=(null!=t&&t.year?t.calendar():\"string\"==typeof n?this.instance(n,a):n)||this.instance()).newDate(t,e,r)},substituteDigits:function(t){return function(e){return(e+\"\").replace(/[0-9]/g,function(e){return t[e]})}},substituteChineseDigits:function(t,e){return function(r){for(var n=\"\",a=0;r>0;){var i=r%10;n=(0===i?\"\":t[i]+e[a])+n,a++,r=Math.floor(r/10)}return 0===n.indexOf(t[1]+e[1])&&(n=n.substr(1)),n||t[0]}}}),n(i.prototype,{newDate:function(t,e,r){return this._calendar.newDate(null==t?this:t,e,r)},year:function(t){return 0===arguments.length?this._year:this.set(t,\"y\")},month:function(t){return 0===arguments.length?this._month:this.set(t,\"m\")},day:function(t){return 0===arguments.length?this._day:this.set(t,\"d\")},date:function(t,e,r){if(!this._calendar.isValid(t,e,r))throw(c.local.invalidDate||c.regionalOptions[\"\"].invalidDate).replace(/\\{0\\}/,this._calendar.local.name);return this._year=t,this._month=e,this._day=r,this},leapYear:function(){return this._calendar.leapYear(this)},epoch:function(){return this._calendar.epoch(this)},formatYear:function(){return this._calendar.formatYear(this)},monthOfYear:function(){return this._calendar.monthOfYear(this)},weekOfYear:function(){return this._calendar.weekOfYear(this)},daysInYear:function(){return this._calendar.daysInYear(this)},dayOfYear:function(){return this._calendar.dayOfYear(this)},daysInMonth:function(){return this._calendar.daysInMonth(this)},dayOfWeek:function(){return this._calendar.dayOfWeek(this)},weekDay:function(){return this._calendar.weekDay(this)},extraInfo:function(){return this._calendar.extraInfo(this)},add:function(t,e){return this._calendar.add(this,t,e)},set:function(t,e){return this._calendar.set(this,t,e)},compareTo:function(t){if(this._calendar.name!==t._calendar.name)throw(c.local.differentCalendars||c.regionalOptions[\"\"].differentCalendars).replace(/\\{0\\}/,this._calendar.local.name).replace(/\\{1\\}/,t._calendar.local.name);var e=this._year!==t._year?this._year-t._year:this._month!==t._month?this.monthOfYear()-t.monthOfYear():this._day-t._day;return 0===e?0:e<0?-1:1},calendar:function(){return this._calendar},toJD:function(){return this._calendar.toJD(this)},fromJD:function(t){return this._calendar.fromJD(t)},toJSDate:function(){return this._calendar.toJSDate(this)},fromJSDate:function(t){return this._calendar.fromJSDate(t)},toString:function(){return(this.year()<0?\"-\":\"\")+o(Math.abs(this.year()),4)+\"-\"+o(this.month(),2)+\"-\"+o(this.day(),2)}}),n(s.prototype,{_validateLevel:0,newDate:function(t,e,r){return null==t?this.today():(t.year&&(this._validate(t,e,r,c.local.invalidDate||c.regionalOptions[\"\"].invalidDate),r=t.day(),e=t.month(),t=t.year()),new i(this,t,e,r))},today:function(){return this.fromJSDate(new Date)},epoch:function(t){return this._validate(t,this.minMonth,this.minDay,c.local.invalidYear||c.regionalOptions[\"\"].invalidYear).year()<0?this.local.epochs[0]:this.local.epochs[1]},formatYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,c.local.invalidYear||c.regionalOptions[\"\"].invalidYear);return(e.year()<0?\"-\":\"\")+o(Math.abs(e.year()),4)},monthsInYear:function(t){return this._validate(t,this.minMonth,this.minDay,c.local.invalidYear||c.regionalOptions[\"\"].invalidYear),12},monthOfYear:function(t,e){var r=this._validate(t,e,this.minDay,c.local.invalidMonth||c.regionalOptions[\"\"].invalidMonth);return(r.month()+this.monthsInYear(r)-this.firstMonth)%this.monthsInYear(r)+this.minMonth},fromMonthOfYear:function(t,e){var r=(e+this.firstMonth-2*this.minMonth)%this.monthsInYear(t)+this.minMonth;return this._validate(t,r,this.minDay,c.local.invalidMonth||c.regionalOptions[\"\"].invalidMonth),r},daysInYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,c.local.invalidYear||c.regionalOptions[\"\"].invalidYear);return this.leapYear(e)?366:365},dayOfYear:function(t,e,r){var n=this._validate(t,e,r,c.local.invalidDate||c.regionalOptions[\"\"].invalidDate);return n.toJD()-this.newDate(n.year(),this.fromMonthOfYear(n.year(),this.minMonth),this.minDay).toJD()+1},daysInWeek:function(){return 7},dayOfWeek:function(t,e,r){var n=this._validate(t,e,r,c.local.invalidDate||c.regionalOptions[\"\"].invalidDate);return(Math.floor(this.toJD(n))+2)%this.daysInWeek()},extraInfo:function(t,e,r){return this._validate(t,e,r,c.local.invalidDate||c.regionalOptions[\"\"].invalidDate),{}},add:function(t,e,r){return this._validate(t,this.minMonth,this.minDay,c.local.invalidDate||c.regionalOptions[\"\"].invalidDate),this._correctAdd(t,this._add(t,e,r),e,r)},_add:function(t,e,r){if(this._validateLevel++,\"d\"===r||\"w\"===r){var n=t.toJD()+e*(\"w\"===r?this.daysInWeek():1),a=t.calendar().fromJD(n);return this._validateLevel--,[a.year(),a.month(),a.day()]}try{var i=t.year()+(\"y\"===r?e:0),o=t.monthOfYear()+(\"m\"===r?e:0);a=t.day();\"y\"===r?(t.month()!==this.fromMonthOfYear(i,o)&&(o=this.newDate(i,t.month(),this.minDay).monthOfYear()),o=Math.min(o,this.monthsInYear(i)),a=Math.min(a,this.daysInMonth(i,this.fromMonthOfYear(i,o)))):\"m\"===r&&(!function(t){for(;o<t.minMonth;)i--,o+=t.monthsInYear(i);for(var e=t.monthsInYear(i);o>e-1+t.minMonth;)i++,o-=e,e=t.monthsInYear(i)}(this),a=Math.min(a,this.daysInMonth(i,this.fromMonthOfYear(i,o))));var s=[i,this.fromMonthOfYear(i,o),a];return this._validateLevel--,s}catch(t){throw this._validateLevel--,t}},_correctAdd:function(t,e,r,n){if(!(this.hasYearZero||\"y\"!==n&&\"m\"!==n||0!==e[0]&&t.year()>0==e[0]>0)){var a={y:[1,1,\"y\"],m:[1,this.monthsInYear(-1),\"m\"],w:[this.daysInWeek(),this.daysInYear(-1),\"d\"],d:[1,this.daysInYear(-1),\"d\"]}[n],i=r<0?-1:1;e=this._add(t,r*a[0]+i*a[1],a[2])}return t.date(e[0],e[1],e[2])},set:function(t,e,r){this._validate(t,this.minMonth,this.minDay,c.local.invalidDate||c.regionalOptions[\"\"].invalidDate);var n=\"y\"===r?e:t.year(),a=\"m\"===r?e:t.month(),i=\"d\"===r?e:t.day();return\"y\"!==r&&\"m\"!==r||(i=Math.min(i,this.daysInMonth(n,a))),t.date(n,a,i)},isValid:function(t,e,r){this._validateLevel++;var n=this.hasYearZero||0!==t;if(n){var a=this.newDate(t,e,this.minDay);n=e>=this.minMonth&&e-this.minMonth<this.monthsInYear(a)&&r>=this.minDay&&r-this.minDay<this.daysInMonth(a)}return this._validateLevel--,n},toJSDate:function(t,e,r){var n=this._validate(t,e,r,c.local.invalidDate||c.regionalOptions[\"\"].invalidDate);return c.instance().fromJD(this.toJD(n)).toJSDate()},fromJSDate:function(t){return this.fromJD(c.instance().fromJSDate(t).toJD())},_validate:function(t,e,r,n){if(t.year){if(0===this._validateLevel&&this.name!==t.calendar().name)throw(c.local.differentCalendars||c.regionalOptions[\"\"].differentCalendars).replace(/\\{0\\}/,this.local.name).replace(/\\{1\\}/,t.calendar().local.name);return t}try{if(this._validateLevel++,1===this._validateLevel&&!this.isValid(t,e,r))throw n.replace(/\\{0\\}/,this.local.name);var a=this.newDate(t,e,r);return this._validateLevel--,a}catch(t){throw this._validateLevel--,t}}}),l.prototype=new s,n(l.prototype,{name:\"Gregorian\",jdEpoch:1721425.5,daysPerMonth:[31,28,31,30,31,30,31,31,30,31,30,31],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Gregorian\",epochs:[\"BCE\",\"CE\"],monthNames:[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],monthNamesShort:[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],dayNames:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],dayNamesShort:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],dayNamesMin:[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"],digits:null,dateFormat:\"mm/dd/yyyy\",firstDay:0,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,c.local.invalidYear||c.regionalOptions[\"\"].invalidYear);return(t=e.year()+(e.year()<0?1:0))%4==0&&(t%100!=0||t%400==0)},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(4-(n.dayOfWeek()||7),\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,c.local.invalidMonth||c.regionalOptions[\"\"].invalidMonth);return this.daysPerMonth[r.month()-1]+(2===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var n=this._validate(t,e,r,c.local.invalidDate||c.regionalOptions[\"\"].invalidDate);t=n.year(),e=n.month(),r=n.day(),t<0&&t++,e<3&&(e+=12,t--);var a=Math.floor(t/100),i=2-a+Math.floor(a/4);return Math.floor(365.25*(t+4716))+Math.floor(30.6001*(e+1))+r+i-1524.5},fromJD:function(t){var e=Math.floor(t+.5),r=Math.floor((e-1867216.25)/36524.25),n=(r=e+1+r-Math.floor(r/4))+1524,a=Math.floor((n-122.1)/365.25),i=Math.floor(365.25*a),o=Math.floor((n-i)/30.6001),s=n-i-Math.floor(30.6001*o),l=o-(o>13.5?13:1),c=a-(l>2.5?4716:4715);return c<=0&&c--,this.newDate(c,l,s)},toJSDate:function(t,e,r){var n=this._validate(t,e,r,c.local.invalidDate||c.regionalOptions[\"\"].invalidDate),a=new Date(n.year(),n.month()-1,n.day());return a.setHours(0),a.setMinutes(0),a.setSeconds(0),a.setMilliseconds(0),a.setHours(a.getHours()>12?a.getHours()+2:0),a},fromJSDate:function(t){return this.newDate(t.getFullYear(),t.getMonth()+1,t.getDate())}});var c=e.exports=new a;c.cdate=i,c.baseCalendar=s,c.calendars.gregorian=l},{\"object-assign\":455}],573:[function(t,e,r){var n=t(\"object-assign\"),a=t(\"./main\");n(a.regionalOptions[\"\"],{invalidArguments:\"Invalid arguments\",invalidFormat:\"Cannot format a date from another calendar\",missingNumberAt:\"Missing number at position {0}\",unknownNameAt:\"Unknown name at position {0}\",unexpectedLiteralAt:\"Unexpected literal at position {0}\",unexpectedText:\"Additional text found at end\"}),a.local=a.regionalOptions[\"\"],n(a.cdate.prototype,{formatDate:function(t,e){return\"string\"!=typeof t&&(e=t,t=\"\"),this._calendar.formatDate(t||\"\",this,e)}}),n(a.baseCalendar.prototype,{UNIX_EPOCH:a.instance().newDate(1970,1,1).toJD(),SECS_PER_DAY:86400,TICKS_EPOCH:a.instance().jdEpoch,TICKS_PER_DAY:864e9,ATOM:\"yyyy-mm-dd\",COOKIE:\"D, dd M yyyy\",FULL:\"DD, MM d, yyyy\",ISO_8601:\"yyyy-mm-dd\",JULIAN:\"J\",RFC_822:\"D, d M yy\",RFC_850:\"DD, dd-M-yy\",RFC_1036:\"D, d M yy\",RFC_1123:\"D, d M yyyy\",RFC_2822:\"D, d M yyyy\",RSS:\"D, d M yy\",TICKS:\"!\",TIMESTAMP:\"@\",W3C:\"yyyy-mm-dd\",formatDate:function(t,e,r){if(\"string\"!=typeof t&&(r=e,e=t,t=\"\"),!e)return\"\";if(e.calendar()!==this)throw a.local.invalidFormat||a.regionalOptions[\"\"].invalidFormat;t=t||this.local.dateFormat;for(var n,i,o,s,l=(r=r||{}).dayNamesShort||this.local.dayNamesShort,c=r.dayNames||this.local.dayNames,u=r.monthNumbers||this.local.monthNumbers,h=r.monthNamesShort||this.local.monthNamesShort,f=r.monthNames||this.local.monthNames,p=(r.calculateWeek||this.local.calculateWeek,function(e,r){for(var n=1;w+n<t.length&&t.charAt(w+n)===e;)n++;return w+=n-1,Math.floor(n/(r||1))>1}),d=function(t,e,r,n){var a=\"\"+e;if(p(t,n))for(;a.length<r;)a=\"0\"+a;return a},g=this,v=function(t){return\"function\"==typeof u?u.call(g,t,p(\"m\")):x(d(\"m\",t.month(),2))},m=function(t,e){return e?\"function\"==typeof f?f.call(g,t):f[t.month()-g.minMonth]:\"function\"==typeof h?h.call(g,t):h[t.month()-g.minMonth]},y=this.local.digits,x=function(t){return r.localNumbers&&y?y(t):t},b=\"\",_=!1,w=0;w<t.length;w++)if(_)\"'\"!==t.charAt(w)||p(\"'\")?b+=t.charAt(w):_=!1;else switch(t.charAt(w)){case\"d\":b+=x(d(\"d\",e.day(),2));break;case\"D\":b+=(n=\"D\",i=e.dayOfWeek(),o=l,s=c,p(n)?s[i]:o[i]);break;case\"o\":b+=d(\"o\",e.dayOfYear(),3);break;case\"w\":b+=d(\"w\",e.weekOfYear(),2);break;case\"m\":b+=v(e);break;case\"M\":b+=m(e,p(\"M\"));break;case\"y\":b+=p(\"y\",2)?e.year():(e.year()%100<10?\"0\":\"\")+e.year()%100;break;case\"Y\":p(\"Y\",2),b+=e.formatYear();break;case\"J\":b+=e.toJD();break;case\"@\":b+=(e.toJD()-this.UNIX_EPOCH)*this.SECS_PER_DAY;break;case\"!\":b+=(e.toJD()-this.TICKS_EPOCH)*this.TICKS_PER_DAY;break;case\"'\":p(\"'\")?b+=\"'\":_=!0;break;default:b+=t.charAt(w)}return b},parseDate:function(t,e,r){if(null==e)throw a.local.invalidArguments||a.regionalOptions[\"\"].invalidArguments;if(\"\"===(e=\"object\"==typeof e?e.toString():e+\"\"))return null;t=t||this.local.dateFormat;var n=(r=r||{}).shortYearCutoff||this.shortYearCutoff;n=\"string\"!=typeof n?n:this.today().year()%100+parseInt(n,10);for(var i=r.dayNamesShort||this.local.dayNamesShort,o=r.dayNames||this.local.dayNames,s=r.parseMonth||this.local.parseMonth,l=r.monthNumbers||this.local.monthNumbers,c=r.monthNamesShort||this.local.monthNamesShort,u=r.monthNames||this.local.monthNames,h=-1,f=-1,p=-1,d=-1,g=-1,v=!1,m=!1,y=function(e,r){for(var n=1;M+n<t.length&&t.charAt(M+n)===e;)n++;return M+=n-1,Math.floor(n/(r||1))>1},x=function(t,r){var n=y(t,r),i=[2,3,n?4:2,n?4:2,10,11,20][\"oyYJ@!\".indexOf(t)+1],o=new RegExp(\"^-?\\\\d{1,\"+i+\"}\"),s=e.substring(A).match(o);if(!s)throw(a.local.missingNumberAt||a.regionalOptions[\"\"].missingNumberAt).replace(/\\{0\\}/,A);return A+=s[0].length,parseInt(s[0],10)},b=this,_=function(){if(\"function\"==typeof l){y(\"m\");var t=l.call(b,e.substring(A));return A+=t.length,t}return x(\"m\")},w=function(t,r,n,i){for(var o=y(t,i)?n:r,s=0;s<o.length;s++)if(e.substr(A,o[s].length).toLowerCase()===o[s].toLowerCase())return A+=o[s].length,s+b.minMonth;throw(a.local.unknownNameAt||a.regionalOptions[\"\"].unknownNameAt).replace(/\\{0\\}/,A)},k=function(){if(\"function\"==typeof u){var t=y(\"M\")?u.call(b,e.substring(A)):c.call(b,e.substring(A));return A+=t.length,t}return w(\"M\",c,u)},T=function(){if(e.charAt(A)!==t.charAt(M))throw(a.local.unexpectedLiteralAt||a.regionalOptions[\"\"].unexpectedLiteralAt).replace(/\\{0\\}/,A);A++},A=0,M=0;M<t.length;M++)if(m)\"'\"!==t.charAt(M)||y(\"'\")?T():m=!1;else switch(t.charAt(M)){case\"d\":d=x(\"d\");break;case\"D\":w(\"D\",i,o);break;case\"o\":g=x(\"o\");break;case\"w\":x(\"w\");break;case\"m\":p=_();break;case\"M\":p=k();break;case\"y\":var S=M;v=!y(\"y\",2),M=S,f=x(\"y\",2);break;case\"Y\":f=x(\"Y\",2);break;case\"J\":h=x(\"J\")+.5,\".\"===e.charAt(A)&&(A++,x(\"J\"));break;case\"@\":h=x(\"@\")/this.SECS_PER_DAY+this.UNIX_EPOCH;break;case\"!\":h=x(\"!\")/this.TICKS_PER_DAY+this.TICKS_EPOCH;break;case\"*\":A=e.length;break;case\"'\":y(\"'\")?T():m=!0;break;default:T()}if(A<e.length)throw a.local.unexpectedText||a.regionalOptions[\"\"].unexpectedText;if(-1===f?f=this.today().year():f<100&&v&&(f+=-1===n?1900:this.today().year()-this.today().year()%100-(f<=n?0:100)),\"string\"==typeof p&&(p=s.call(this,f,p)),g>-1){p=1,d=g;for(var E=this.daysInMonth(f,p);d>E;E=this.daysInMonth(f,p))p++,d-=E}return h>-1?this.fromJD(h):this.newDate(f,p,d)},determineDate:function(t,e,r,n,a){r&&\"object\"!=typeof r&&(a=n,n=r,r=null),\"string\"!=typeof n&&(a=n,n=\"\");var i=this;return e=e?e.newDate():null,t=null==t?e:\"string\"==typeof t?function(t){try{return i.parseDate(n,t,a)}catch(t){}for(var e=((t=t.toLowerCase()).match(/^c/)&&r?r.newDate():null)||i.today(),o=/([+-]?[0-9]+)\\s*(d|w|m|y)?/g,s=o.exec(t);s;)e.add(parseInt(s[1],10),s[2]||\"d\"),s=o.exec(t);return e}(t):\"number\"==typeof t?isNaN(t)||t===1/0||t===-1/0?e:i.today().add(t,\"d\"):i.newDate(t)}})},{\"./main\":572,\"object-assign\":455}],574:[function(t,e,r){e.exports=t(\"cwise-compiler\")({args:[\"array\",{offset:[1],array:0},\"scalar\",\"scalar\",\"index\"],pre:{body:\"{}\",args:[],thisVars:[],localVars:[]},post:{body:\"{}\",args:[],thisVars:[],localVars:[]},body:{body:\"{\\n        var _inline_1_da = _inline_1_arg0_ - _inline_1_arg3_\\n        var _inline_1_db = _inline_1_arg1_ - _inline_1_arg3_\\n        if((_inline_1_da >= 0) !== (_inline_1_db >= 0)) {\\n          _inline_1_arg2_.push(_inline_1_arg4_[0] + 0.5 + 0.5 * (_inline_1_da + _inline_1_db) / (_inline_1_da - _inline_1_db))\\n        }\\n      }\",args:[{name:\"_inline_1_arg0_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_1_arg1_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_1_arg2_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_1_arg3_\",lvalue:!1,rvalue:!0,count:2},{name:\"_inline_1_arg4_\",lvalue:!1,rvalue:!0,count:1}],thisVars:[],localVars:[\"_inline_1_da\",\"_inline_1_db\"]},funcName:\"zeroCrossings\"})},{\"cwise-compiler\":147}],575:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=[];return e=+e||0,n(t.hi(t.shape[0]-1),r,e),r};var n=t(\"./lib/zc-core\")},{\"./lib/zc-core\":574}],576:[function(t,e,r){\"use strict\";e.exports=[{path:\"\",backoff:0},{path:\"M-2.4,-3V3L0.6,0Z\",backoff:.6},{path:\"M-3.7,-2.5V2.5L1.3,0Z\",backoff:1.3},{path:\"M-4.45,-3L-1.65,-0.2V0.2L-4.45,3L1.55,0Z\",backoff:1.55},{path:\"M-2.2,-2.2L-0.2,-0.2V0.2L-2.2,2.2L-1.4,3L1.6,0L-1.4,-3Z\",backoff:1.6},{path:\"M-4.4,-2.1L-0.6,-0.2V0.2L-4.4,2.1L-4,3L2,0L-4,-3Z\",backoff:2},{path:\"M2,0A2,2 0 1,1 0,-2A2,2 0 0,1 2,0Z\",backoff:0,noRotate:!0},{path:\"M2,2V-2H-2V2Z\",backoff:0,noRotate:!0}]},{}],577:[function(t,e,r){\"use strict\";var n=t(\"./arrow_paths\"),a=t(\"../../plots/font_attributes\"),i=t(\"../../plots/cartesian/constants\"),o=t(\"../../plot_api/plot_template\").templatedArray;e.exports=o(\"annotation\",{visible:{valType:\"boolean\",dflt:!0,editType:\"calc+arraydraw\"},text:{valType:\"string\",editType:\"calc+arraydraw\"},textangle:{valType:\"angle\",dflt:0,editType:\"calc+arraydraw\"},font:a({editType:\"calc+arraydraw\",colorEditType:\"arraydraw\"}),width:{valType:\"number\",min:1,dflt:null,editType:\"calc+arraydraw\"},height:{valType:\"number\",min:1,dflt:null,editType:\"calc+arraydraw\"},opacity:{valType:\"number\",min:0,max:1,dflt:1,editType:\"arraydraw\"},align:{valType:\"enumerated\",values:[\"left\",\"center\",\"right\"],dflt:\"center\",editType:\"arraydraw\"},valign:{valType:\"enumerated\",values:[\"top\",\"middle\",\"bottom\"],dflt:\"middle\",editType:\"arraydraw\"},bgcolor:{valType:\"color\",dflt:\"rgba(0,0,0,0)\",editType:\"arraydraw\"},bordercolor:{valType:\"color\",dflt:\"rgba(0,0,0,0)\",editType:\"arraydraw\"},borderpad:{valType:\"number\",min:0,dflt:1,editType:\"calc+arraydraw\"},borderwidth:{valType:\"number\",min:0,dflt:1,editType:\"calc+arraydraw\"},showarrow:{valType:\"boolean\",dflt:!0,editType:\"calc+arraydraw\"},arrowcolor:{valType:\"color\",editType:\"arraydraw\"},arrowhead:{valType:\"integer\",min:0,max:n.length,dflt:1,editType:\"arraydraw\"},startarrowhead:{valType:\"integer\",min:0,max:n.length,dflt:1,editType:\"arraydraw\"},arrowside:{valType:\"flaglist\",flags:[\"end\",\"start\"],extras:[\"none\"],dflt:\"end\",editType:\"arraydraw\"},arrowsize:{valType:\"number\",min:.3,dflt:1,editType:\"calc+arraydraw\"},startarrowsize:{valType:\"number\",min:.3,dflt:1,editType:\"calc+arraydraw\"},arrowwidth:{valType:\"number\",min:.1,editType:\"calc+arraydraw\"},standoff:{valType:\"number\",min:0,dflt:0,editType:\"calc+arraydraw\"},startstandoff:{valType:\"number\",min:0,dflt:0,editType:\"calc+arraydraw\"},ax:{valType:\"any\",editType:\"calc+arraydraw\"},ay:{valType:\"any\",editType:\"calc+arraydraw\"},axref:{valType:\"enumerated\",dflt:\"pixel\",values:[\"pixel\",i.idRegex.x.toString()],editType:\"calc\"},ayref:{valType:\"enumerated\",dflt:\"pixel\",values:[\"pixel\",i.idRegex.y.toString()],editType:\"calc\"},xref:{valType:\"enumerated\",values:[\"paper\",i.idRegex.x.toString()],editType:\"calc\"},x:{valType:\"any\",editType:\"calc+arraydraw\"},xanchor:{valType:\"enumerated\",values:[\"auto\",\"left\",\"center\",\"right\"],dflt:\"auto\",editType:\"calc+arraydraw\"},xshift:{valType:\"number\",dflt:0,editType:\"calc+arraydraw\"},yref:{valType:\"enumerated\",values:[\"paper\",i.idRegex.y.toString()],editType:\"calc\"},y:{valType:\"any\",editType:\"calc+arraydraw\"},yanchor:{valType:\"enumerated\",values:[\"auto\",\"top\",\"middle\",\"bottom\"],dflt:\"auto\",editType:\"calc+arraydraw\"},yshift:{valType:\"number\",dflt:0,editType:\"calc+arraydraw\"},clicktoshow:{valType:\"enumerated\",values:[!1,\"onoff\",\"onout\"],dflt:!1,editType:\"arraydraw\"},xclick:{valType:\"any\",editType:\"arraydraw\"},yclick:{valType:\"any\",editType:\"arraydraw\"},hovertext:{valType:\"string\",editType:\"arraydraw\"},hoverlabel:{bgcolor:{valType:\"color\",editType:\"arraydraw\"},bordercolor:{valType:\"color\",editType:\"arraydraw\"},font:a({editType:\"arraydraw\"}),editType:\"arraydraw\"},captureevents:{valType:\"boolean\",editType:\"arraydraw\"},editType:\"calc\",_deprecated:{ref:{valType:\"string\",editType:\"calc\"}}})},{\"../../plot_api/plot_template\":757,\"../../plots/cartesian/constants\":773,\"../../plots/font_attributes\":793,\"./arrow_paths\":576}],578:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"./draw\").draw;function o(t){var e=t._fullLayout;n.filterVisible(e.annotations).forEach(function(e){var r=a.getFromId(t,e.xref),n=a.getFromId(t,e.yref);e._extremes={},r&&s(e,r),n&&s(e,n)})}function s(t,e){var r,n=e._id,i=n.charAt(0),o=t[i],s=t[\"a\"+i],l=t[i+\"ref\"],c=t[\"a\"+i+\"ref\"],u=t[\"_\"+i+\"padplus\"],h=t[\"_\"+i+\"padminus\"],f={x:1,y:-1}[i]*t[i+\"shift\"],p=3*t.arrowsize*t.arrowwidth||0,d=p+f,g=p-f,v=3*t.startarrowsize*t.arrowwidth||0,m=v+f,y=v-f;if(c===l){var x=a.findExtremes(e,[e.r2c(o)],{ppadplus:d,ppadminus:g}),b=a.findExtremes(e,[e.r2c(s)],{ppadplus:Math.max(u,m),ppadminus:Math.max(h,y)});r={min:[x.min[0],b.min[0]],max:[x.max[0],b.max[0]]}}else m=s?m+s:m,y=s?y-s:y,r=a.findExtremes(e,[e.r2c(o)],{ppadplus:Math.max(u,d,m),ppadminus:Math.max(h,g,y)});t._extremes[n]=r}e.exports=function(t){var e=t._fullLayout;if(n.filterVisible(e.annotations).length&&t._fullData.length)return n.syncOrAsync([i,o],t)}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"./draw\":583}],579:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../registry\"),i=t(\"../../plot_api/plot_template\").arrayEditor;function o(t,e){var r,n,a,i,o,l,c,u=t._fullLayout.annotations,h=[],f=[],p=[],d=(e||[]).length;for(r=0;r<u.length;r++)if(i=(a=u[r]).clicktoshow){for(n=0;n<d;n++)if(l=(o=e[n]).xaxis,c=o.yaxis,l._id===a.xref&&c._id===a.yref&&l.d2r(o.x)===s(a._xclick,l)&&c.d2r(o.y)===s(a._yclick,c)){(a.visible?\"onout\"===i?f:p:h).push(r);break}n===d&&a.visible&&\"onout\"===i&&f.push(r)}return{on:h,off:f,explicitOff:p}}function s(t,e){return\"log\"===e.type?e.l2r(t):e.d2r(t)}e.exports={hasClickToShow:function(t,e){var r=o(t,e);return r.on.length>0||r.explicitOff.length>0},onClick:function(t,e){var r,s,l=o(t,e),c=l.on,u=l.off.concat(l.explicitOff),h={},f=t._fullLayout.annotations;if(!c.length&&!u.length)return;for(r=0;r<c.length;r++)(s=i(t.layout,\"annotations\",f[c[r]])).modifyItem(\"visible\",!0),n.extendFlat(h,s.getUpdateObj());for(r=0;r<u.length;r++)(s=i(t.layout,\"annotations\",f[u[r]])).modifyItem(\"visible\",!1),n.extendFlat(h,s.getUpdateObj());return a.call(\"update\",t,{},h)}}},{\"../../lib\":719,\"../../plot_api/plot_template\":757,\"../../registry\":848}],580:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../color\");e.exports=function(t,e,r,i){i(\"opacity\");var o=i(\"bgcolor\"),s=i(\"bordercolor\"),l=a.opacity(s);i(\"borderpad\");var c=i(\"borderwidth\"),u=i(\"showarrow\");if(i(\"text\",u?\" \":r._dfltTitle.annotation),i(\"textangle\"),n.coerceFont(i,\"font\",r.font),i(\"width\"),i(\"align\"),i(\"height\")&&i(\"valign\"),u){var h,f,p=i(\"arrowside\");-1!==p.indexOf(\"end\")&&(h=i(\"arrowhead\"),f=i(\"arrowsize\")),-1!==p.indexOf(\"start\")&&(i(\"startarrowhead\",h),i(\"startarrowsize\",f)),i(\"arrowcolor\",l?e.bordercolor:a.defaultLine),i(\"arrowwidth\",2*(l&&c||1)),i(\"standoff\"),i(\"startstandoff\")}var d=i(\"hovertext\"),g=r.hoverlabel||{};if(d){var v=i(\"hoverlabel.bgcolor\",g.bgcolor||(a.opacity(o)?a.rgb(o):a.defaultLine)),m=i(\"hoverlabel.bordercolor\",g.bordercolor||a.contrast(v));n.coerceFont(i,\"hoverlabel.font\",{family:g.font.family,size:g.font.size,color:g.font.color||m})}i(\"captureevents\",!!d)}},{\"../../lib\":719,\"../color\":594}],581:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib/to_log_range\");e.exports=function(t,e,r,i){e=e||{};var o=\"log\"===r&&\"linear\"===e.type,s=\"linear\"===r&&\"log\"===e.type;if(o||s)for(var l,c,u=t._fullLayout.annotations,h=e._id.charAt(0),f=0;f<u.length;f++)l=u[f],c=\"annotations[\"+f+\"].\",l[h+\"ref\"]===e._id&&p(h),l[\"a\"+h+\"ref\"]===e._id&&p(\"a\"+h);function p(t){var r=l[t],s=null;s=o?a(r,e.range):Math.pow(10,r),n(s)||(s=null),i(c+t,s)}}},{\"../../lib/to_log_range\":745,\"fast-isnumeric\":226}],582:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"../../plots/array_container_defaults\"),o=t(\"./common_defaults\"),s=t(\"./attributes\");function l(t,e,r){function i(r,a){return n.coerce(t,e,s,r,a)}var l=i(\"visible\"),c=i(\"clicktoshow\");if(l||c){o(t,e,r,i);for(var u=e.showarrow,h=[\"x\",\"y\"],f=[-10,-30],p={_fullLayout:r},d=0;d<2;d++){var g=h[d],v=a.coerceRef(t,e,p,g,\"\",\"paper\");if(\"paper\"!==v)a.getFromId(p,v)._annIndices.push(e._index);if(a.coercePosition(e,p,i,v,g,.5),u){var m=\"a\"+g,y=a.coerceRef(t,e,p,m,\"pixel\");\"pixel\"!==y&&y!==v&&(y=e[m]=\"pixel\");var x=\"pixel\"===y?f[d]:.4;a.coercePosition(e,p,i,y,m,x)}i(g+\"anchor\"),i(g+\"shift\")}if(n.noneOrAll(t,e,[\"x\",\"y\"]),u&&n.noneOrAll(t,e,[\"ax\",\"ay\"]),c){var b=i(\"xclick\"),_=i(\"yclick\");e._xclick=void 0===b?e.x:a.cleanPosition(b,p,e.xref),e._yclick=void 0===_?e.y:a.cleanPosition(_,p,e.yref)}}}e.exports=function(t,e){i(t,e,{name:\"annotations\",handleItemDefaults:l})}},{\"../../lib\":719,\"../../plots/array_container_defaults\":763,\"../../plots/cartesian/axes\":767,\"./attributes\":577,\"./common_defaults\":580}],583:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../registry\"),i=t(\"../../plots/plots\"),o=t(\"../../lib\"),s=t(\"../../plots/cartesian/axes\"),l=t(\"../color\"),c=t(\"../drawing\"),u=t(\"../fx\"),h=t(\"../../lib/svg_text_utils\"),f=t(\"../../lib/setcursor\"),p=t(\"../dragelement\"),d=t(\"../../plot_api/plot_template\").arrayEditor,g=t(\"./draw_arrow_head\");function v(t,e){var r=t._fullLayout.annotations[e]||{},n=s.getFromId(t,r.xref),a=s.getFromId(t,r.yref);n&&n.setScale(),a&&a.setScale(),m(t,r,e,!1,n,a)}function m(t,e,r,i,s,v){var m,y,x=t._fullLayout,b=t._fullLayout._size,_=t._context.edits;i?(m=\"annotation-\"+i,y=i+\".annotations\"):(m=\"annotation\",y=\"annotations\");var w=d(t.layout,y,e),k=w.modifyBase,T=w.modifyItem,A=w.getUpdateObj;x._infolayer.selectAll(\".\"+m+'[data-index=\"'+r+'\"]').remove();var M=\"clip\"+x._uid+\"_ann\"+r;if(e._input&&!1!==e.visible){var S={x:{},y:{}},E=+e.textangle||0,C=x._infolayer.append(\"g\").classed(m,!0).attr(\"data-index\",String(r)).style(\"opacity\",e.opacity),L=C.append(\"g\").classed(\"annotation-text-g\",!0),P=_[e.showarrow?\"annotationTail\":\"annotationPosition\"],O=e.captureevents||_.annotationText||P,I=L.append(\"g\").style(\"pointer-events\",O?\"all\":null).call(f,\"pointer\").on(\"click\",function(){t._dragging=!1,t.emit(\"plotly_clickannotation\",q(n.event))});e.hovertext&&I.on(\"mouseover\",function(){var r=e.hoverlabel,n=r.font,a=this.getBoundingClientRect(),i=t.getBoundingClientRect();u.loneHover({x0:a.left-i.left,x1:a.right-i.left,y:(a.top+a.bottom)/2-i.top,text:e.hovertext,color:r.bgcolor,borderColor:r.bordercolor,fontFamily:n.family,fontSize:n.size,fontColor:n.color},{container:x._hoverlayer.node(),outerContainer:x._paper.node(),gd:t})}).on(\"mouseout\",function(){u.loneUnhover(x._hoverlayer.node())});var z=e.borderwidth,D=e.borderpad,R=z+D,F=I.append(\"rect\").attr(\"class\",\"bg\").style(\"stroke-width\",z+\"px\").call(l.stroke,e.bordercolor).call(l.fill,e.bgcolor),B=e.width||e.height,N=x._topclips.selectAll(\"#\"+M).data(B?[0]:[]);N.enter().append(\"clipPath\").classed(\"annclip\",!0).attr(\"id\",M).append(\"rect\"),N.exit().remove();var j=e.font,V=x._meta?o.templateString(e.text,x._meta):e.text,U=I.append(\"text\").classed(\"annotation-text\",!0).text(V);_.annotationText?U.call(h.makeEditable,{delegate:I,gd:t}).call(H).on(\"edit\",function(r){e.text=r,this.call(H),T(\"text\",r),s&&s.autorange&&k(s._name+\".autorange\",!0),v&&v.autorange&&k(v._name+\".autorange\",!0),a.call(\"_guiRelayout\",t,A())}):U.call(H)}else n.selectAll(\"#\"+M).remove();function q(t){var n={index:r,annotation:e._input,fullAnnotation:e,event:t};return i&&(n.subplotId=i),n}function H(r){return r.call(c.font,j).attr({\"text-anchor\":{left:\"start\",right:\"end\"}[e.align]||\"middle\"}),h.convertToTspans(r,t,G),r}function G(){var r=U.selectAll(\"a\");1===r.size()&&r.text()===U.text()&&I.insert(\"a\",\":first-child\").attr({\"xlink:xlink:href\":r.attr(\"xlink:href\"),\"xlink:xlink:show\":r.attr(\"xlink:show\")}).style({cursor:\"pointer\"}).node().appendChild(F.node());var n=I.select(\".annotation-text-math-group\"),u=!n.empty(),d=c.bBox((u?n:U).node()),m=d.width,y=d.height,w=e.width||m,O=e.height||y,D=Math.round(w+2*R),j=Math.round(O+2*R);function V(t,e){return\"auto\"===e&&(e=t<1/3?\"left\":t>2/3?\"right\":\"center\"),{center:0,middle:0,left:.5,bottom:-.5,right:-.5,top:.5}[e]}for(var H=!1,G=[\"x\",\"y\"],Y=0;Y<G.length;Y++){var W,X,Z,J,K,Q=G[Y],$=e[Q+\"ref\"]||Q,tt=e[\"a\"+Q+\"ref\"],et={x:s,y:v}[Q],rt=(E+(\"x\"===Q?0:-90))*Math.PI/180,nt=D*Math.cos(rt),at=j*Math.sin(rt),it=Math.abs(nt)+Math.abs(at),ot=e[Q+\"anchor\"],st=e[Q+\"shift\"]*(\"x\"===Q?1:-1),lt=S[Q];if(et){var ct=et.r2fraction(e[Q]);(ct<0||ct>1)&&(tt===$?((ct=et.r2fraction(e[\"a\"+Q]))<0||ct>1)&&(H=!0):H=!0),W=et._offset+et.r2p(e[Q]),J=.5}else\"x\"===Q?(Z=e[Q],W=b.l+b.w*Z):(Z=1-e[Q],W=b.t+b.h*Z),J=e.showarrow?.5:Z;if(e.showarrow){lt.head=W;var ut=e[\"a\"+Q];K=nt*V(.5,e.xanchor)-at*V(.5,e.yanchor),tt===$?(lt.tail=et._offset+et.r2p(ut),X=K):(lt.tail=W+ut,X=K+ut),lt.text=lt.tail+K;var ht=x[\"x\"===Q?\"width\":\"height\"];if(\"paper\"===$&&(lt.head=o.constrain(lt.head,1,ht-1)),\"pixel\"===tt){var ft=-Math.max(lt.tail-3,lt.text),pt=Math.min(lt.tail+3,lt.text)-ht;ft>0?(lt.tail+=ft,lt.text+=ft):pt>0&&(lt.tail-=pt,lt.text-=pt)}lt.tail+=st,lt.head+=st}else X=K=it*V(J,ot),lt.text=W+K;lt.text+=st,K+=st,X+=st,e[\"_\"+Q+\"padplus\"]=it/2+X,e[\"_\"+Q+\"padminus\"]=it/2-X,e[\"_\"+Q+\"size\"]=it,e[\"_\"+Q+\"shift\"]=K}if(H)I.remove();else{var dt=0,gt=0;if(\"left\"!==e.align&&(dt=(w-m)*(\"center\"===e.align?.5:1)),\"top\"!==e.valign&&(gt=(O-y)*(\"middle\"===e.valign?.5:1)),u)n.select(\"svg\").attr({x:R+dt-1,y:R+gt}).call(c.setClipUrl,B?M:null,t);else{var vt=R+gt-d.top,mt=R+dt-d.left;U.call(h.positionText,mt,vt).call(c.setClipUrl,B?M:null,t)}N.select(\"rect\").call(c.setRect,R,R,w,O),F.call(c.setRect,z/2,z/2,D-z,j-z),I.call(c.setTranslate,Math.round(S.x.text-D/2),Math.round(S.y.text-j/2)),L.attr({transform:\"rotate(\"+E+\",\"+S.x.text+\",\"+S.y.text+\")\"});var yt,xt=function(r,n){C.selectAll(\".annotation-arrow-g\").remove();var u=S.x.head,h=S.y.head,f=S.x.tail+r,d=S.y.tail+n,m=S.x.text+r,y=S.y.text+n,x=o.rotationXYMatrix(E,m,y),w=o.apply2DTransform(x),M=o.apply2DTransform2(x),P=+F.attr(\"width\"),O=+F.attr(\"height\"),z=m-.5*P,D=z+P,R=y-.5*O,B=R+O,N=[[z,R,z,B],[z,B,D,B],[D,B,D,R],[D,R,z,R]].map(M);if(!N.reduce(function(t,e){return t^!!o.segmentsIntersect(u,h,u+1e6,h+1e6,e[0],e[1],e[2],e[3])},!1)){N.forEach(function(t){var e=o.segmentsIntersect(f,d,u,h,t[0],t[1],t[2],t[3]);e&&(f=e.x,d=e.y)});var j=e.arrowwidth,V=e.arrowcolor,U=e.arrowside,q=C.append(\"g\").style({opacity:l.opacity(V)}).classed(\"annotation-arrow-g\",!0),H=q.append(\"path\").attr(\"d\",\"M\"+f+\",\"+d+\"L\"+u+\",\"+h).style(\"stroke-width\",j+\"px\").call(l.stroke,l.rgb(V));if(g(H,U,e),_.annotationPosition&&H.node().parentNode&&!i){var G=u,Y=h;if(e.standoff){var W=Math.sqrt(Math.pow(u-f,2)+Math.pow(h-d,2));G+=e.standoff*(f-u)/W,Y+=e.standoff*(d-h)/W}var X,Z,J=q.append(\"path\").classed(\"annotation-arrow\",!0).classed(\"anndrag\",!0).classed(\"cursor-move\",!0).attr({d:\"M3,3H-3V-3H3ZM0,0L\"+(f-G)+\",\"+(d-Y),transform:\"translate(\"+G+\",\"+Y+\")\"}).style(\"stroke-width\",j+6+\"px\").call(l.stroke,\"rgba(0,0,0,0)\").call(l.fill,\"rgba(0,0,0,0)\");p.init({element:J.node(),gd:t,prepFn:function(){var t=c.getTranslate(I);X=t.x,Z=t.y,s&&s.autorange&&k(s._name+\".autorange\",!0),v&&v.autorange&&k(v._name+\".autorange\",!0)},moveFn:function(t,r){var n=w(X,Z),a=n[0]+t,i=n[1]+r;I.call(c.setTranslate,a,i),T(\"x\",s?s.p2r(s.r2p(e.x)+t):e.x+t/b.w),T(\"y\",v?v.p2r(v.r2p(e.y)+r):e.y-r/b.h),e.axref===e.xref&&T(\"ax\",s.p2r(s.r2p(e.ax)+t)),e.ayref===e.yref&&T(\"ay\",v.p2r(v.r2p(e.ay)+r)),q.attr(\"transform\",\"translate(\"+t+\",\"+r+\")\"),L.attr({transform:\"rotate(\"+E+\",\"+a+\",\"+i+\")\"})},doneFn:function(){a.call(\"_guiRelayout\",t,A());var e=document.querySelector(\".js-notes-box-panel\");e&&e.redraw(e.selectedObj)}})}}};if(e.showarrow&&xt(0,0),P)p.init({element:I.node(),gd:t,prepFn:function(){yt=L.attr(\"transform\")},moveFn:function(t,r){var n=\"pointer\";if(e.showarrow)e.axref===e.xref?T(\"ax\",s.p2r(s.r2p(e.ax)+t)):T(\"ax\",e.ax+t),e.ayref===e.yref?T(\"ay\",v.p2r(v.r2p(e.ay)+r)):T(\"ay\",e.ay+r),xt(t,r);else{if(i)return;var a,o;if(s)a=s.p2r(s.r2p(e.x)+t);else{var l=e._xsize/b.w,c=e.x+(e._xshift-e.xshift)/b.w-l/2;a=p.align(c+t/b.w,l,0,1,e.xanchor)}if(v)o=v.p2r(v.r2p(e.y)+r);else{var u=e._ysize/b.h,h=e.y-(e._yshift+e.yshift)/b.h-u/2;o=p.align(h-r/b.h,u,0,1,e.yanchor)}T(\"x\",a),T(\"y\",o),s&&v||(n=p.getCursor(s?.5:a,v?.5:o,e.xanchor,e.yanchor))}L.attr({transform:\"translate(\"+t+\",\"+r+\")\"+yt}),f(I,n)},clickFn:function(r,n){e.captureevents&&t.emit(\"plotly_clickannotation\",q(n))},doneFn:function(){f(I),a.call(\"_guiRelayout\",t,A());var e=document.querySelector(\".js-notes-box-panel\");e&&e.redraw(e.selectedObj)}})}}}e.exports={draw:function(t){var e=t._fullLayout;e._infolayer.selectAll(\".annotation\").remove();for(var r=0;r<e.annotations.length;r++)e.annotations[r].visible&&v(t,r);return i.previousPromises(t)},drawOne:v,drawRaw:m}},{\"../../lib\":719,\"../../lib/setcursor\":739,\"../../lib/svg_text_utils\":743,\"../../plot_api/plot_template\":757,\"../../plots/cartesian/axes\":767,\"../../plots/plots\":828,\"../../registry\":848,\"../color\":594,\"../dragelement\":612,\"../drawing\":615,\"../fx\":632,\"./draw_arrow_head\":584,d3:164}],584:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../color\"),i=t(\"./arrow_paths\");e.exports=function(t,e,r){var o,s,l,c,u=t.node(),h=i[r.arrowhead||0],f=i[r.startarrowhead||0],p=(r.arrowwidth||1)*(r.arrowsize||1),d=(r.arrowwidth||1)*(r.startarrowsize||1),g=e.indexOf(\"start\")>=0,v=e.indexOf(\"end\")>=0,m=h.backoff*p+r.standoff,y=f.backoff*d+r.startstandoff;if(\"line\"===u.nodeName){o={x:+t.attr(\"x1\"),y:+t.attr(\"y1\")},s={x:+t.attr(\"x2\"),y:+t.attr(\"y2\")};var x=o.x-s.x,b=o.y-s.y;if(c=(l=Math.atan2(b,x))+Math.PI,m&&y&&m+y>Math.sqrt(x*x+b*b))return void P();if(m){if(m*m>x*x+b*b)return void P();var _=m*Math.cos(l),w=m*Math.sin(l);s.x+=_,s.y+=w,t.attr({x2:s.x,y2:s.y})}if(y){if(y*y>x*x+b*b)return void P();var k=y*Math.cos(l),T=y*Math.sin(l);o.x-=k,o.y-=T,t.attr({x1:o.x,y1:o.y})}}else if(\"path\"===u.nodeName){var A=u.getTotalLength(),M=\"\";if(A<m+y)return void P();var S=u.getPointAtLength(0),E=u.getPointAtLength(.1);l=Math.atan2(S.y-E.y,S.x-E.x),o=u.getPointAtLength(Math.min(y,A)),M=\"0px,\"+y+\"px,\";var C=u.getPointAtLength(A),L=u.getPointAtLength(A-.1);c=Math.atan2(C.y-L.y,C.x-L.x),s=u.getPointAtLength(Math.max(0,A-m)),M+=A-(M?y+m:m)+\"px,\"+A+\"px\",t.style(\"stroke-dasharray\",M)}function P(){t.style(\"stroke-dasharray\",\"0px,100px\")}function O(e,i,o,s){e.path&&(e.noRotate&&(o=0),n.select(u.parentNode).append(\"path\").attr({class:t.attr(\"class\"),d:e.path,transform:\"translate(\"+i.x+\",\"+i.y+\")\"+(o?\"rotate(\"+180*o/Math.PI+\")\":\"\")+\"scale(\"+s+\")\"}).style({fill:a.rgb(r.arrowcolor),\"stroke-width\":0}))}g&&O(f,o,l,d),v&&O(h,s,c,p)}},{\"../color\":594,\"./arrow_paths\":576,d3:164}],585:[function(t,e,r){\"use strict\";var n=t(\"./draw\"),a=t(\"./click\");e.exports={moduleType:\"component\",name:\"annotations\",layoutAttributes:t(\"./attributes\"),supplyLayoutDefaults:t(\"./defaults\"),includeBasePlot:t(\"../../plots/cartesian/include_components\")(\"annotations\"),calcAutorange:t(\"./calc_autorange\"),draw:n.draw,drawOne:n.drawOne,drawRaw:n.drawRaw,hasClickToShow:a.hasClickToShow,onClick:a.onClick,convertCoords:t(\"./convert_coords\")}},{\"../../plots/cartesian/include_components\":777,\"./attributes\":577,\"./calc_autorange\":578,\"./click\":579,\"./convert_coords\":581,\"./defaults\":582,\"./draw\":583}],586:[function(t,e,r){\"use strict\";var n=t(\"../annotations/attributes\"),a=t(\"../../plot_api/edit_types\").overrideAll,i=t(\"../../plot_api/plot_template\").templatedArray;e.exports=a(i(\"annotation\",{visible:n.visible,x:{valType:\"any\"},y:{valType:\"any\"},z:{valType:\"any\"},ax:{valType:\"number\"},ay:{valType:\"number\"},xanchor:n.xanchor,xshift:n.xshift,yanchor:n.yanchor,yshift:n.yshift,text:n.text,textangle:n.textangle,font:n.font,width:n.width,height:n.height,opacity:n.opacity,align:n.align,valign:n.valign,bgcolor:n.bgcolor,bordercolor:n.bordercolor,borderpad:n.borderpad,borderwidth:n.borderwidth,showarrow:n.showarrow,arrowcolor:n.arrowcolor,arrowhead:n.arrowhead,startarrowhead:n.startarrowhead,arrowside:n.arrowside,arrowsize:n.arrowsize,startarrowsize:n.startarrowsize,arrowwidth:n.arrowwidth,standoff:n.standoff,startstandoff:n.startstandoff,hovertext:n.hovertext,hoverlabel:n.hoverlabel,captureevents:n.captureevents}),\"calc\",\"from-root\")},{\"../../plot_api/edit_types\":750,\"../../plot_api/plot_template\":757,\"../annotations/attributes\":577}],587:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\");function i(t,e){var r=e.fullSceneLayout.domain,i=e.fullLayout._size,o={pdata:null,type:\"linear\",autorange:!1,range:[-1/0,1/0]};t._xa={},n.extendFlat(t._xa,o),a.setConvert(t._xa),t._xa._offset=i.l+r.x[0]*i.w,t._xa.l2p=function(){return.5*(1+t._pdata[0]/t._pdata[3])*i.w*(r.x[1]-r.x[0])},t._ya={},n.extendFlat(t._ya,o),a.setConvert(t._ya),t._ya._offset=i.t+(1-r.y[1])*i.h,t._ya.l2p=function(){return.5*(1-t._pdata[1]/t._pdata[3])*i.h*(r.y[1]-r.y[0])}}e.exports=function(t){for(var e=t.fullSceneLayout.annotations,r=0;r<e.length;r++)i(e[r],t);t.fullLayout._infolayer.selectAll(\".annotation-\"+t.id).remove()}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767}],588:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"../../plots/array_container_defaults\"),o=t(\"../annotations/common_defaults\"),s=t(\"./attributes\");function l(t,e,r,i){function l(r,a){return n.coerce(t,e,s,r,a)}function c(t){var n=t+\"axis\",i={_fullLayout:{}};return i._fullLayout[n]=r[n],a.coercePosition(e,i,l,t,t,.5)}l(\"visible\")&&(o(t,e,i.fullLayout,l),c(\"x\"),c(\"y\"),c(\"z\"),n.noneOrAll(t,e,[\"x\",\"y\",\"z\"]),e.xref=\"x\",e.yref=\"y\",e.zref=\"z\",l(\"xanchor\"),l(\"yanchor\"),l(\"xshift\"),l(\"yshift\"),e.showarrow&&(e.axref=\"pixel\",e.ayref=\"pixel\",l(\"ax\",-10),l(\"ay\",-30),n.noneOrAll(t,e,[\"ax\",\"ay\"])))}e.exports=function(t,e,r){i(t,e,{name:\"annotations\",handleItemDefaults:l,fullLayout:r.fullLayout})}},{\"../../lib\":719,\"../../plots/array_container_defaults\":763,\"../../plots/cartesian/axes\":767,\"../annotations/common_defaults\":580,\"./attributes\":586}],589:[function(t,e,r){\"use strict\";var n=t(\"../annotations/draw\").drawRaw,a=t(\"../../plots/gl3d/project\"),i=[\"x\",\"y\",\"z\"];e.exports=function(t){for(var e=t.fullSceneLayout,r=t.dataScale,o=e.annotations,s=0;s<o.length;s++){for(var l=o[s],c=!1,u=0;u<3;u++){var h=i[u],f=l[h],p=e[h+\"axis\"].r2fraction(f);if(p<0||p>1){c=!0;break}}c?t.fullLayout._infolayer.select(\".annotation-\"+t.id+'[data-index=\"'+s+'\"]').remove():(l._pdata=a(t.glplot.cameraParams,[e.xaxis.r2l(l.x)*r[0],e.yaxis.r2l(l.y)*r[1],e.zaxis.r2l(l.z)*r[2]]),n(t.graphDiv,l,s,t.id,l._xa,l._ya))}}},{\"../../plots/gl3d/project\":816,\"../annotations/draw\":583}],590:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\");e.exports={moduleType:\"component\",name:\"annotations3d\",schema:{subplots:{scene:{annotations:t(\"./attributes\")}}},layoutAttributes:t(\"./attributes\"),handleDefaults:t(\"./defaults\"),includeBasePlot:function(t,e){var r=n.subplotsRegistry.gl3d;if(!r)return;for(var i=r.attrRegex,o=Object.keys(t),s=0;s<o.length;s++){var l=o[s];i.test(l)&&(t[l].annotations||[]).length&&(a.pushUnique(e._basePlotModules,r),a.pushUnique(e._subplots.gl3d,l))}},convert:t(\"./convert\"),draw:t(\"./draw\")}},{\"../../lib\":719,\"../../registry\":848,\"./attributes\":586,\"./convert\":587,\"./defaults\":588,\"./draw\":589}],591:[function(t,e,r){\"use strict\";e.exports=t(\"world-calendars/dist/main\"),t(\"world-calendars/dist/plus\"),t(\"world-calendars/dist/calendars/chinese\"),t(\"world-calendars/dist/calendars/coptic\"),t(\"world-calendars/dist/calendars/discworld\"),t(\"world-calendars/dist/calendars/ethiopian\"),t(\"world-calendars/dist/calendars/hebrew\"),t(\"world-calendars/dist/calendars/islamic\"),t(\"world-calendars/dist/calendars/julian\"),t(\"world-calendars/dist/calendars/mayan\"),t(\"world-calendars/dist/calendars/nanakshahi\"),t(\"world-calendars/dist/calendars/nepali\"),t(\"world-calendars/dist/calendars/persian\"),t(\"world-calendars/dist/calendars/taiwan\"),t(\"world-calendars/dist/calendars/thai\"),t(\"world-calendars/dist/calendars/ummalqura\")},{\"world-calendars/dist/calendars/chinese\":558,\"world-calendars/dist/calendars/coptic\":559,\"world-calendars/dist/calendars/discworld\":560,\"world-calendars/dist/calendars/ethiopian\":561,\"world-calendars/dist/calendars/hebrew\":562,\"world-calendars/dist/calendars/islamic\":563,\"world-calendars/dist/calendars/julian\":564,\"world-calendars/dist/calendars/mayan\":565,\"world-calendars/dist/calendars/nanakshahi\":566,\"world-calendars/dist/calendars/nepali\":567,\"world-calendars/dist/calendars/persian\":568,\"world-calendars/dist/calendars/taiwan\":569,\"world-calendars/dist/calendars/thai\":570,\"world-calendars/dist/calendars/ummalqura\":571,\"world-calendars/dist/main\":572,\"world-calendars/dist/plus\":573}],592:[function(t,e,r){\"use strict\";var n=t(\"./calendars\"),a=t(\"../../lib\"),i=t(\"../../constants/numerical\"),o=i.EPOCHJD,s=i.ONEDAY,l={valType:\"enumerated\",values:Object.keys(n.calendars),editType:\"calc\",dflt:\"gregorian\"},c=function(t,e,r,n){var i={};return i[r]=l,a.coerce(t,e,i,r,n)},u=\"##\",h={d:{0:\"dd\",\"-\":\"d\"},e:{0:\"d\",\"-\":\"d\"},a:{0:\"D\",\"-\":\"D\"},A:{0:\"DD\",\"-\":\"DD\"},j:{0:\"oo\",\"-\":\"o\"},W:{0:\"ww\",\"-\":\"w\"},m:{0:\"mm\",\"-\":\"m\"},b:{0:\"M\",\"-\":\"M\"},B:{0:\"MM\",\"-\":\"MM\"},y:{0:\"yy\",\"-\":\"yy\"},Y:{0:\"yyyy\",\"-\":\"yyyy\"},U:u,w:u,c:{0:\"D M d %X yyyy\",\"-\":\"D M d %X yyyy\"},x:{0:\"mm/dd/yyyy\",\"-\":\"mm/dd/yyyy\"}};var f={};function p(t){var e=f[t];return e||(e=f[t]=n.instance(t))}function d(t){return a.extendFlat({},l,{description:t})}function g(t){return\"Sets the calendar system to use with `\"+t+\"` date data.\"}var v={xcalendar:d(g(\"x\"))},m=a.extendFlat({},v,{ycalendar:d(g(\"y\"))}),y=a.extendFlat({},m,{zcalendar:d(g(\"z\"))}),x=d([\"Sets the calendar system to use for `range` and `tick0`\",\"if this is a date axis. This does not set the calendar for\",\"interpreting data on this axis, that's specified in the trace\",\"or via the global `layout.calendar`\"].join(\" \"));e.exports={moduleType:\"component\",name:\"calendars\",schema:{traces:{scatter:m,bar:m,box:m,heatmap:m,contour:m,histogram:m,histogram2d:m,histogram2dcontour:m,scatter3d:y,surface:y,mesh3d:y,scattergl:m,ohlc:v,candlestick:v},layout:{calendar:d([\"Sets the default calendar system to use for interpreting and\",\"displaying dates throughout the plot.\"].join(\" \"))},subplots:{xaxis:{calendar:x},yaxis:{calendar:x},scene:{xaxis:{calendar:x},yaxis:{calendar:x},zaxis:{calendar:x}},polar:{radialaxis:{calendar:x}}},transforms:{filter:{valuecalendar:d([\"Sets the calendar system to use for `value`, if it is a date.\"].join(\" \")),targetcalendar:d([\"Sets the calendar system to use for `target`, if it is an\",\"array of dates. If `target` is a string (eg *x*) we use the\",\"corresponding trace attribute (eg `xcalendar`) if it exists,\",\"even if `targetcalendar` is provided.\"].join(\" \"))}}},layoutAttributes:l,handleDefaults:c,handleTraceDefaults:function(t,e,r,n){for(var a=0;a<r.length;a++)c(t,e,r[a]+\"calendar\",n.calendar)},CANONICAL_SUNDAY:{chinese:\"2000-01-02\",coptic:\"2000-01-03\",discworld:\"2000-01-03\",ethiopian:\"2000-01-05\",hebrew:\"5000-01-01\",islamic:\"1000-01-02\",julian:\"2000-01-03\",mayan:\"5000-01-01\",nanakshahi:\"1000-01-05\",nepali:\"2000-01-05\",persian:\"1000-01-01\",jalali:\"1000-01-01\",taiwan:\"1000-01-04\",thai:\"2000-01-04\",ummalqura:\"1400-01-06\"},CANONICAL_TICK:{chinese:\"2000-01-01\",coptic:\"2000-01-01\",discworld:\"2000-01-01\",ethiopian:\"2000-01-01\",hebrew:\"5000-01-01\",islamic:\"1000-01-01\",julian:\"2000-01-01\",mayan:\"5000-01-01\",nanakshahi:\"1000-01-01\",nepali:\"2000-01-01\",persian:\"1000-01-01\",jalali:\"1000-01-01\",taiwan:\"1000-01-01\",thai:\"2000-01-01\",ummalqura:\"1400-01-01\"},DFLTRANGE:{chinese:[\"2000-01-01\",\"2001-01-01\"],coptic:[\"1700-01-01\",\"1701-01-01\"],discworld:[\"1800-01-01\",\"1801-01-01\"],ethiopian:[\"2000-01-01\",\"2001-01-01\"],hebrew:[\"5700-01-01\",\"5701-01-01\"],islamic:[\"1400-01-01\",\"1401-01-01\"],julian:[\"2000-01-01\",\"2001-01-01\"],mayan:[\"5200-01-01\",\"5201-01-01\"],nanakshahi:[\"0500-01-01\",\"0501-01-01\"],nepali:[\"2000-01-01\",\"2001-01-01\"],persian:[\"1400-01-01\",\"1401-01-01\"],jalali:[\"1400-01-01\",\"1401-01-01\"],taiwan:[\"0100-01-01\",\"0101-01-01\"],thai:[\"2500-01-01\",\"2501-01-01\"],ummalqura:[\"1400-01-01\",\"1401-01-01\"]},getCal:p,worldCalFmt:function(t,e,r){for(var n,a,i,l,c,f=Math.floor((e+.05)/s)+o,d=p(r).fromJD(f),g=0;-1!==(g=t.indexOf(\"%\",g));)\"0\"===(n=t.charAt(g+1))||\"-\"===n||\"_\"===n?(i=3,a=t.charAt(g+2),\"_\"===n&&(n=\"-\")):(a=n,n=\"0\",i=2),(l=h[a])?(c=l===u?u:d.formatDate(l[n]),t=t.substr(0,g)+c+t.substr(g+i),g+=c.length):g+=i;return t}}},{\"../../constants/numerical\":695,\"../../lib\":719,\"./calendars\":591}],593:[function(t,e,r){\"use strict\";r.defaults=[\"#1f77b4\",\"#ff7f0e\",\"#2ca02c\",\"#d62728\",\"#9467bd\",\"#8c564b\",\"#e377c2\",\"#7f7f7f\",\"#bcbd22\",\"#17becf\"],r.defaultLine=\"#444\",r.lightLine=\"#eee\",r.background=\"#fff\",r.borderLine=\"#BEC8D9\",r.lightFraction=1e3/11},{}],594:[function(t,e,r){\"use strict\";var n=t(\"tinycolor2\"),a=t(\"fast-isnumeric\"),i=e.exports={},o=t(\"./attributes\");i.defaults=o.defaults;var s=i.defaultLine=o.defaultLine;i.lightLine=o.lightLine;var l=i.background=o.background;function c(t){if(a(t)||\"string\"!=typeof t)return t;var e=t.trim();if(\"rgb\"!==e.substr(0,3))return t;var r=e.match(/^rgba?\\s*\\(([^()]*)\\)$/);if(!r)return t;var n=r[1].trim().split(/\\s*[\\s,]\\s*/),i=\"a\"===e.charAt(3)&&4===n.length;if(!i&&3!==n.length)return t;for(var o=0;o<n.length;o++){if(!n[o].length)return t;if(n[o]=Number(n[o]),!(n[o]>=0))return t;if(3===o)n[o]>1&&(n[o]=1);else if(n[o]>=1)return t}var s=Math.round(255*n[0])+\", \"+Math.round(255*n[1])+\", \"+Math.round(255*n[2]);return i?\"rgba(\"+s+\", \"+n[3]+\")\":\"rgb(\"+s+\")\"}i.tinyRGB=function(t){var e=t.toRgb();return\"rgb(\"+Math.round(e.r)+\", \"+Math.round(e.g)+\", \"+Math.round(e.b)+\")\"},i.rgb=function(t){return i.tinyRGB(n(t))},i.opacity=function(t){return t?n(t).getAlpha():0},i.addOpacity=function(t,e){var r=n(t).toRgb();return\"rgba(\"+Math.round(r.r)+\", \"+Math.round(r.g)+\", \"+Math.round(r.b)+\", \"+e+\")\"},i.combine=function(t,e){var r=n(t).toRgb();if(1===r.a)return n(t).toRgbString();var a=n(e||l).toRgb(),i=1===a.a?a:{r:255*(1-a.a)+a.r*a.a,g:255*(1-a.a)+a.g*a.a,b:255*(1-a.a)+a.b*a.a},o={r:i.r*(1-r.a)+r.r*r.a,g:i.g*(1-r.a)+r.g*r.a,b:i.b*(1-r.a)+r.b*r.a};return n(o).toRgbString()},i.contrast=function(t,e,r){var a=n(t);return 1!==a.getAlpha()&&(a=n(i.combine(t,l))),(a.isDark()?e?a.lighten(e):l:r?a.darken(r):s).toString()},i.stroke=function(t,e){var r=n(e);t.style({stroke:i.tinyRGB(r),\"stroke-opacity\":r.getAlpha()})},i.fill=function(t,e){var r=n(e);t.style({fill:i.tinyRGB(r),\"fill-opacity\":r.getAlpha()})},i.clean=function(t){if(t&&\"object\"==typeof t){var e,r,n,a,o=Object.keys(t);for(e=0;e<o.length;e++)if(a=t[n=o[e]],\"color\"===n.substr(n.length-5))if(Array.isArray(a))for(r=0;r<a.length;r++)a[r]=c(a[r]);else t[n]=c(a);else if(\"colorscale\"===n.substr(n.length-10)&&Array.isArray(a))for(r=0;r<a.length;r++)Array.isArray(a[r])&&(a[r][1]=c(a[r][1]));else if(Array.isArray(a)){var s=a[0];if(!Array.isArray(s)&&s&&\"object\"==typeof s)for(r=0;r<a.length;r++)i.clean(a[r])}else a&&\"object\"==typeof a&&i.clean(a)}}},{\"./attributes\":593,\"fast-isnumeric\":226,tinycolor2:538}],595:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/layout_attributes\"),a=t(\"../../plots/font_attributes\"),i=t(\"../../lib/extend\").extendFlat,o=t(\"../../plot_api/edit_types\").overrideAll;e.exports=o({thicknessmode:{valType:\"enumerated\",values:[\"fraction\",\"pixels\"],dflt:\"pixels\"},thickness:{valType:\"number\",min:0,dflt:30},lenmode:{valType:\"enumerated\",values:[\"fraction\",\"pixels\"],dflt:\"fraction\"},len:{valType:\"number\",min:0,dflt:1},x:{valType:\"number\",dflt:1.02,min:-2,max:3},xanchor:{valType:\"enumerated\",values:[\"left\",\"center\",\"right\"],dflt:\"left\"},xpad:{valType:\"number\",min:0,dflt:10},y:{valType:\"number\",dflt:.5,min:-2,max:3},yanchor:{valType:\"enumerated\",values:[\"top\",\"middle\",\"bottom\"],dflt:\"middle\"},ypad:{valType:\"number\",min:0,dflt:10},outlinecolor:n.linecolor,outlinewidth:n.linewidth,bordercolor:n.linecolor,borderwidth:{valType:\"number\",min:0,dflt:0},bgcolor:{valType:\"color\",dflt:\"rgba(0,0,0,0)\"},tickmode:n.tickmode,nticks:n.nticks,tick0:n.tick0,dtick:n.dtick,tickvals:n.tickvals,ticktext:n.ticktext,ticks:i({},n.ticks,{dflt:\"\"}),ticklen:n.ticklen,tickwidth:n.tickwidth,tickcolor:n.tickcolor,showticklabels:n.showticklabels,tickfont:a({}),tickangle:n.tickangle,tickformat:n.tickformat,tickformatstops:n.tickformatstops,tickprefix:n.tickprefix,showtickprefix:n.showtickprefix,ticksuffix:n.ticksuffix,showticksuffix:n.showticksuffix,separatethousands:n.separatethousands,exponentformat:n.exponentformat,showexponent:n.showexponent,title:{text:{valType:\"string\"},font:a({}),side:{valType:\"enumerated\",values:[\"right\",\"top\",\"bottom\"],dflt:\"top\"}},_deprecated:{title:{valType:\"string\"},titlefont:a({}),titleside:{valType:\"enumerated\",values:[\"right\",\"top\",\"bottom\"],dflt:\"top\"}}},\"colorbars\",\"from-root\")},{\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../../plots/cartesian/layout_attributes\":779,\"../../plots/font_attributes\":793}],596:[function(t,e,r){\"use strict\";e.exports={cn:{colorbar:\"colorbar\",cbbg:\"cbbg\",cbfill:\"cbfill\",cbfills:\"cbfills\",cbline:\"cbline\",cblines:\"cblines\",cbaxis:\"cbaxis\",cbtitleunshift:\"cbtitleunshift\",cbtitle:\"cbtitle\",cboutline:\"cboutline\",crisp:\"crisp\",jsPlaceholder:\"js-placeholder\"}}},{}],597:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plot_api/plot_template\"),i=t(\"../../plots/cartesian/tick_value_defaults\"),o=t(\"../../plots/cartesian/tick_mark_defaults\"),s=t(\"../../plots/cartesian/tick_label_defaults\"),l=t(\"./attributes\");e.exports=function(t,e,r){var c=a.newContainer(e,\"colorbar\"),u=t.colorbar||{};function h(t,e){return n.coerce(u,c,l,t,e)}var f=h(\"thicknessmode\");h(\"thickness\",\"fraction\"===f?30/(r.width-r.margin.l-r.margin.r):30);var p=h(\"lenmode\");h(\"len\",\"fraction\"===p?1:r.height-r.margin.t-r.margin.b),h(\"x\"),h(\"xanchor\"),h(\"xpad\"),h(\"y\"),h(\"yanchor\"),h(\"ypad\"),n.noneOrAll(u,c,[\"x\",\"y\"]),h(\"outlinecolor\"),h(\"outlinewidth\"),h(\"bordercolor\"),h(\"borderwidth\"),h(\"bgcolor\"),i(u,c,h,\"linear\");var d={outerTicks:!1,font:r.font};s(u,c,h,\"linear\",d),o(u,c,h,\"linear\",d),h(\"title.text\",r._dfltTitle.colorbar),n.coerceFont(h,\"title.font\",r.font),h(\"title.side\")}},{\"../../lib\":719,\"../../plot_api/plot_template\":757,\"../../plots/cartesian/tick_label_defaults\":786,\"../../plots/cartesian/tick_mark_defaults\":787,\"../../plots/cartesian/tick_value_defaults\":788,\"./attributes\":595}],598:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"tinycolor2\"),i=t(\"../../plots/plots\"),o=t(\"../../registry\"),s=t(\"../../plots/cartesian/axes\"),l=t(\"../dragelement\"),c=t(\"../../lib\"),u=t(\"../../lib/extend\").extendFlat,h=t(\"../../lib/setcursor\"),f=t(\"../drawing\"),p=t(\"../color\"),d=t(\"../titles\"),g=t(\"../../lib/svg_text_utils\"),v=t(\"../colorscale/helpers\").flipScale,m=t(\"../../plots/cartesian/axis_defaults\"),y=t(\"../../plots/cartesian/position_defaults\"),x=t(\"../../plots/cartesian/layout_attributes\"),b=t(\"../../constants/alignment\"),_=b.LINE_SPACING,w=b.FROM_TL,k=b.FROM_BR,T=t(\"./constants\").cn;e.exports={draw:function(t){var e=t._fullLayout._infolayer.selectAll(\"g.\"+T.colorbar).data(function(t){var e,r,n,a,i=t._fullLayout,o=t.calcdata,s=[];function l(t){return u(t,{_fillcolor:null,_line:{color:null,width:null,dash:null},_levels:{start:null,end:null,size:null},_filllevels:null,_fillgradient:null,_zrange:null})}function c(){\"function\"==typeof a.calc?a.calc(t,n,e):(e._fillgradient=r.reversescale?v(r.colorscale):r.colorscale,e._zrange=[r[a.min],r[a.max]])}for(var h=0;h<o.length;h++){var f=o[h],p=(n=f[0].trace)._module.colorbar;if(!0===n.visible&&p)for(var d=Array.isArray(p),g=d?p:[p],m=0;m<g.length;m++){var y=(a=g[m]).container;(r=y?n[y]:n)&&r.showscale&&((e=l(r.colorbar))._id=\"cb\"+n.uid+(d&&y?\"-\"+y:\"\"),e._traceIndex=n.index,e._propPrefix=(y?y+\".\":\"\")+\"colorbar.\",e._meta=n._meta,c(),s.push(e))}}for(var x in i._colorAxes)if((r=i[x]).showscale){var b=i._colorAxes[x];(e=l(r.colorbar))._id=\"cb\"+x,e._propPrefix=x+\".colorbar.\",e._meta=i._meta,a={min:\"cmin\",max:\"cmax\"},\"heatmap\"!==b[0]&&(n=b[1],a.calc=n._module.colorbar.calc),c(),s.push(e)}return s}(t),function(t){return t._id});e.enter().append(\"g\").attr(\"class\",function(t){return t._id}).classed(T.colorbar,!0),e.each(function(e){var r=n.select(this);c.ensureSingle(r,\"rect\",T.cbbg),c.ensureSingle(r,\"g\",T.cbfills),c.ensureSingle(r,\"g\",T.cblines),c.ensureSingle(r,\"g\",T.cbaxis,function(t){t.classed(T.crisp,!0)}),c.ensureSingle(r,\"g\",T.cbtitleunshift,function(t){t.append(\"g\").classed(T.cbtitle,!0)}),c.ensureSingle(r,\"rect\",T.cboutline);var v=function(t,e,r){var o=r._fullLayout,l=o._size,h=e._fillcolor,v=e._line,b=e.title,A=b.side,M=e._zrange||n.extent((\"function\"==typeof h?h:v.color).domain()),S=\"function\"==typeof v.color?v.color:function(){return v.color},E=\"function\"==typeof h?h:function(){return h},C=e._levels,L=function(t,e,r){var n,a,i=e._levels,o=[],s=[],l=i.end+i.size/100,c=i.size,u=1.001*r[0]-.001*r[1],h=1.001*r[1]-.001*r[0];for(a=0;a<1e5&&(n=i.start+a*c,!(c>0?n>=l:n<=l));a++)n>u&&n<h&&o.push(n);if(e._fillgradient)s=[0];else if(\"function\"==typeof e._fillcolor){var f=e._filllevels;if(f)for(l=f.end+f.size/100,c=f.size,a=0;a<1e5&&(n=f.start+a*c,!(c>0?n>=l:n<=l));a++)n>r[0]&&n<r[1]&&s.push(n);else(s=o.map(function(t){return t-i.size/2})).push(s[s.length-1]+i.size)}else e._fillcolor&&\"string\"==typeof e._fillcolor&&(s=[0]);return i.size<0&&(o.reverse(),s.reverse()),{line:o,fill:s}}(0,e,M),P=L.fill,O=L.line,I=Math.round(e.thickness*(\"fraction\"===e.thicknessmode?l.w:1)),z=I/l.w,D=Math.round(e.len*(\"fraction\"===e.lenmode?l.h:1)),R=D/l.h,F=e.xpad/l.w,B=(e.borderwidth+e.outlinewidth)/2,N=e.ypad/l.h,j=Math.round(e.x*l.w+e.xpad),V=e.x-z*({middle:.5,right:1}[e.xanchor]||0),U=e.y+R*(({top:-.5,bottom:.5}[e.yanchor]||0)-.5),q=Math.round(l.h*(1-U)),H=q-D;e._lenFrac=R,e._thickFrac=z,e._xLeftFrac=V,e._yBottomFrac=U;var G=e._axis=function(t,e,r){var n=t._fullLayout,a={type:\"linear\",range:r,tickmode:e.tickmode,nticks:e.nticks,tick0:e.tick0,dtick:e.dtick,tickvals:e.tickvals,ticktext:e.ticktext,ticks:e.ticks,ticklen:e.ticklen,tickwidth:e.tickwidth,tickcolor:e.tickcolor,showticklabels:e.showticklabels,tickfont:e.tickfont,tickangle:e.tickangle,tickformat:e.tickformat,exponentformat:e.exponentformat,separatethousands:e.separatethousands,showexponent:e.showexponent,showtickprefix:e.showtickprefix,tickprefix:e.tickprefix,showticksuffix:e.showticksuffix,ticksuffix:e.ticksuffix,title:e.title,showline:!0,anchor:\"free\",side:\"right\",position:1},i={type:\"linear\",_id:\"y\"+e._id},o={letter:\"y\",font:n.font,noHover:!0,noTickson:!0,calendar:n.calendar};function s(t,e){return c.coerce(a,i,x,t,e)}return m(a,i,s,o,n),y(a,i,s,o),i}(r,e,M);if(G.position=e.x+F+z,-1!==[\"top\",\"bottom\"].indexOf(A)&&(G.title.side=A,G.titlex=e.x+F,G.titley=U+(\"top\"===b.side?R-N:N)),v.color&&\"auto\"===e.tickmode){G.tickmode=\"linear\",G.tick0=C.start;var Y=C.size,W=c.constrain((q-H)/50,4,15)+1,X=(M[1]-M[0])/((e.nticks||W)*Y);if(X>1){var Z=Math.pow(10,Math.floor(Math.log(X)/Math.LN10));Y*=Z*c.roundUp(X/Z,[2,5,10]),(Math.abs(C.start)/C.size+1e-6)%1<2e-6&&(G.tick0=0)}G.dtick=Y}G.domain=[U+N,U+R-N],G.setScale(),t.attr(\"transform\",\"translate(\"+Math.round(l.l)+\",\"+Math.round(l.t)+\")\");var J,K=t.select(\".\"+T.cbtitleunshift).attr(\"transform\",\"translate(-\"+Math.round(l.l)+\",-\"+Math.round(l.t)+\")\"),Q=t.select(\".\"+T.cbaxis),$=0;function tt(n,a){var i={propContainer:G,propName:e._propPrefix+\"title\",traceIndex:e._traceIndex,_meta:e._meta,placeholder:o._dfltTitle.colorbar,containerGroup:t.select(\".\"+T.cbtitle)},s=\"h\"===n.charAt(0)?n.substr(1):\"h\"+n;t.selectAll(\".\"+s+\",.\"+s+\"-math-group\").remove(),d.draw(r,n,u(i,a||{}))}return c.syncOrAsync([i.previousPromises,function(){if(-1!==[\"top\",\"bottom\"].indexOf(A)){var t,r=l.l+(e.x+F)*l.w,n=G.title.font.size;t=\"top\"===A?(1-(U+R-N))*l.h+l.t+3+.75*n:(1-(U+N))*l.h+l.t-3-.25*n,tt(G._id+\"title\",{attributes:{x:r,y:t,\"text-anchor\":\"start\"}})}},function(){if(-1!==[\"top\",\"bottom\"].indexOf(A)){var i=t.select(\".\"+T.cbtitle),o=i.select(\"text\"),u=[-e.outlinewidth/2,e.outlinewidth/2],h=i.select(\".h\"+G._id+\"title-math-group\").node(),p=15.6;if(o.node()&&(p=parseInt(o.node().style.fontSize,10)*_),h?($=f.bBox(h).height)>p&&(u[1]-=($-p)/2):o.node()&&!o.classed(T.jsPlaceholder)&&($=f.bBox(o.node()).height),$){if($+=5,\"top\"===A)G.domain[1]-=$/l.h,u[1]*=-1;else{G.domain[0]+=$/l.h;var d=g.lineCount(o);u[1]+=(1-d)*p}i.attr(\"transform\",\"translate(\"+u+\")\"),G.setScale()}}t.selectAll(\".\"+T.cbfills+\",.\"+T.cblines).attr(\"transform\",\"translate(0,\"+Math.round(l.h*(1-G.domain[1]))+\")\"),Q.attr(\"transform\",\"translate(0,\"+Math.round(-l.t)+\")\");var m=t.select(\".\"+T.cbfills).selectAll(\"rect.\"+T.cbfill).data(P);m.enter().append(\"rect\").classed(T.cbfill,!0).style(\"stroke\",\"none\"),m.exit().remove();var y=M.map(G.c2p).map(Math.round).sort(function(t,e){return t-e});m.each(function(t,i){var o=[0===i?M[0]:(P[i]+P[i-1])/2,i===P.length-1?M[1]:(P[i]+P[i+1])/2].map(G.c2p).map(Math.round);o[1]=c.constrain(o[1]+(o[1]>o[0])?1:-1,y[0],y[1]);var s=n.select(this).attr({x:j,width:Math.max(I,2),y:n.min(o),height:Math.max(n.max(o)-n.min(o),2)});if(e._fillgradient)f.gradient(s,r,e._id,\"vertical\",e._fillgradient,\"fill\");else{var l=E(t).replace(\"e-\",\"\");s.attr(\"fill\",a(l).toHexString())}});var x=t.select(\".\"+T.cblines).selectAll(\"path.\"+T.cbline).data(v.color&&v.width?O:[]);x.enter().append(\"path\").classed(T.cbline,!0),x.exit().remove(),x.each(function(t){n.select(this).attr(\"d\",\"M\"+j+\",\"+(Math.round(G.c2p(t))+v.width/2%1)+\"h\"+I).call(f.lineGroupStyle,v.width,S(t),v.dash)}),Q.selectAll(\"g.\"+G._id+\"tick,path\").remove();var b=j+I+(e.outlinewidth||0)/2-(\"outside\"===e.ticks?1:0),w=s.calcTicks(G),k=s.makeTransFn(G),C=s.getTickSigns(G)[2];return s.drawTicks(r,G,{vals:\"inside\"===G.ticks?s.clipEnds(G,w):w,layer:Q,path:s.makeTickPath(G,b,C),transFn:k}),s.drawLabels(r,G,{vals:w,layer:Q,transFn:k,labelFns:s.makeLabelFns(G,b)})},function(){if(-1===[\"top\",\"bottom\"].indexOf(A)){var t=G.title.font.size,e=G._offset+G._length/2,a=l.l+(G.position||0)*l.w+(\"right\"===G.side?10+t*(G.showticklabels?1:.5):-10-t*(G.showticklabels?.5:0));tt(\"h\"+G._id+\"title\",{avoid:{selection:n.select(r).selectAll(\"g.\"+G._id+\"tick\"),side:A,offsetLeft:l.l,offsetTop:0,maxShift:o.width},attributes:{x:a,y:e,\"text-anchor\":\"middle\"},transform:{rotate:\"-90\",offset:0}})}},i.previousPromises,function(){var n=I+e.outlinewidth/2+f.bBox(Q.node()).width;if((J=K.select(\"text\")).node()&&!J.classed(T.jsPlaceholder)){var a,o=K.select(\".h\"+G._id+\"title-math-group\").node();a=o&&-1!==[\"top\",\"bottom\"].indexOf(A)?f.bBox(o).width:f.bBox(K.node()).right-j-l.l,n=Math.max(n,a)}var s=2*e.xpad+n+e.borderwidth+e.outlinewidth/2,c=q-H;t.select(\".\"+T.cbbg).attr({x:j-e.xpad-(e.borderwidth+e.outlinewidth)/2,y:H-B,width:Math.max(s,2),height:Math.max(c+2*B,2)}).call(p.fill,e.bgcolor).call(p.stroke,e.bordercolor).style(\"stroke-width\",e.borderwidth),t.selectAll(\".\"+T.cboutline).attr({x:j,y:H+e.ypad+(\"top\"===A?$:0),width:Math.max(I,2),height:Math.max(c-2*e.ypad-$,2)}).call(p.stroke,e.outlinecolor).style({fill:\"none\",\"stroke-width\":e.outlinewidth});var u=({center:.5,right:1}[e.xanchor]||0)*s;t.attr(\"transform\",\"translate(\"+(l.l-u)+\",\"+l.t+\")\");var h={},d=w[e.yanchor],g=k[e.yanchor];\"pixels\"===e.lenmode?(h.y=e.y,h.t=c*d,h.b=c*g):(h.t=h.b=0,h.yt=e.y+e.len*d,h.yb=e.y-e.len*g);var v=w[e.xanchor],m=k[e.xanchor];if(\"pixels\"===e.thicknessmode)h.x=e.x,h.l=s*v,h.r=s*m;else{var y=s-I;h.l=y*v,h.r=y*m,h.xl=e.x-e.thickness*v,h.xr=e.x+e.thickness*m}i.autoMargin(r,e._id,h)}],r)}(r,e,t);v&&v.then&&(t._promises||[]).push(v),t._context.edits.colorbarPosition&&function(t,e,r){var n,a,i,s=r._fullLayout._size;l.init({element:t.node(),gd:r,prepFn:function(){n=t.attr(\"transform\"),h(t)},moveFn:function(r,o){t.attr(\"transform\",n+\" translate(\"+r+\",\"+o+\")\"),a=l.align(e._xLeftFrac+r/s.w,e._thickFrac,0,1,e.xanchor),i=l.align(e._yBottomFrac-o/s.h,e._lenFrac,0,1,e.yanchor);var c=l.getCursor(a,i,e.xanchor,e.yanchor);h(t,c)},doneFn:function(){if(h(t),void 0!==a&&void 0!==i){var n={};n[e._propPrefix+\"x\"]=a,n[e._propPrefix+\"y\"]=i,void 0!==e._traceIndex?o.call(\"_guiRestyle\",r,n,e._traceIndex):o.call(\"_guiRelayout\",r,n)}}})}(r,e,t)}),e.exit().each(function(e){i.autoMargin(t,e._id)}).remove(),e.order()}}},{\"../../constants/alignment\":688,\"../../lib\":719,\"../../lib/extend\":710,\"../../lib/setcursor\":739,\"../../lib/svg_text_utils\":743,\"../../plots/cartesian/axes\":767,\"../../plots/cartesian/axis_defaults\":769,\"../../plots/cartesian/layout_attributes\":779,\"../../plots/cartesian/position_defaults\":782,\"../../plots/plots\":828,\"../../registry\":848,\"../color\":594,\"../colorscale/helpers\":605,\"../dragelement\":612,\"../drawing\":615,\"../titles\":681,\"./constants\":596,d3:164,tinycolor2:538}],599:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t){return n.isPlainObject(t.colorbar)}},{\"../../lib\":719}],600:[function(t,e,r){\"use strict\";e.exports={moduleType:\"component\",name:\"colorbar\",attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),draw:t(\"./draw\").draw,hasColorbar:t(\"./has_colorbar\")}},{\"./attributes\":595,\"./defaults\":597,\"./draw\":598,\"./has_colorbar\":599}],601:[function(t,e,r){\"use strict\";var n=t(\"../colorbar/attributes\"),a=t(\"../../lib/regex\").counter,i=t(\"./scales.js\").scales;Object.keys(i);function o(t){return\"`\"+t+\"`\"}e.exports=function(t,e){t=t||\"\";var r,s=(e=e||{}).cLetter||\"c\",l=(\"onlyIfNumerical\"in e?e.onlyIfNumerical:Boolean(t),\"noScale\"in e?e.noScale:\"marker.line\"===t),c=\"showScaleDflt\"in e?e.showScaleDflt:\"z\"===s,u=\"string\"==typeof e.colorscaleDflt?i[e.colorscaleDflt]:null,h=e.editTypeOverride||\"\",f=t?t+\".\":\"\";\"colorAttr\"in e?(r=e.colorAttr,e.colorAttr):o(f+(r={z:\"z\",c:\"color\"}[s]));var p=s+\"auto\",d=s+\"min\",g=s+\"max\",v=s+\"mid\",m=(o(f+p),o(f+d),o(f+g),{});m[d]=m[g]=void 0;var y={};y[p]=!1;var x={};return\"color\"===r&&(x.color={valType:\"color\",arrayOk:!0,editType:h||\"style\"},e.anim&&(x.color.anim=!0)),x[p]={valType:\"boolean\",dflt:!0,editType:\"calc\",impliedEdits:m},x[d]={valType:\"number\",dflt:null,editType:h||\"plot\",impliedEdits:y},x[g]={valType:\"number\",dflt:null,editType:h||\"plot\",impliedEdits:y},x[v]={valType:\"number\",dflt:null,editType:\"calc\",impliedEdits:m},x.colorscale={valType:\"colorscale\",editType:\"calc\",dflt:u,impliedEdits:{autocolorscale:!1}},x.autocolorscale={valType:\"boolean\",dflt:!1!==e.autoColorDflt,editType:\"calc\",impliedEdits:{colorscale:void 0}},x.reversescale={valType:\"boolean\",dflt:!1,editType:\"plot\"},l||(x.showscale={valType:\"boolean\",dflt:c,editType:\"calc\"},x.colorbar=n),e.noColorAxis||(x.coloraxis={valType:\"subplotid\",regex:a(\"coloraxis\"),dflt:null,editType:\"calc\"}),x}},{\"../../lib/regex\":735,\"../colorbar/attributes\":595,\"./scales.js\":609}],602:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\"),i=t(\"./helpers\").extractOpts;e.exports=function(t,e,r){var o,s=t._fullLayout,l=r.vals,c=r.containerStr,u=c?a.nestedProperty(e,c).get():e,h=i(u),f=!1!==h.auto,p=h.min,d=h.max,g=h.mid,v=function(){return a.aggNums(Math.min,null,l)},m=function(){return a.aggNums(Math.max,null,l)};(void 0===p?p=v():f&&(p=u._colorAx&&n(p)?Math.min(p,v()):v()),void 0===d?d=m():f&&(d=u._colorAx&&n(d)?Math.max(d,m()):m()),f&&void 0!==g&&(d-g>g-p?p=g-(d-g):d-g<g-p&&(d=g+(g-p))),p===d&&(p-=.5,d+=.5),h._sync(\"min\",p),h._sync(\"max\",d),h.autocolorscale)&&(o=p*d<0?s.colorscale.diverging:p>=0?s.colorscale.sequential:s.colorscale.sequentialminus,h._sync(\"colorscale\",o))}},{\"../../lib\":719,\"./helpers\":605,\"fast-isnumeric\":226}],603:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./helpers\").hasColorscale,i=t(\"./helpers\").extractOpts;e.exports=function(t,e){function r(t,e){var r=t[\"_\"+e];void 0!==r&&(t[e]=r)}function o(t,a){var o=a.container?n.nestedProperty(t,a.container).get():t;if(o)if(o.coloraxis)o._colorAx=e[o.coloraxis];else{var s=i(o),l=s.auto;(l||void 0===s.min)&&r(o,a.min),(l||void 0===s.max)&&r(o,a.max),s.autocolorscale&&r(o,\"colorscale\")}}for(var s=0;s<t.length;s++){var l=t[s],c=l._module.colorbar;if(c)if(Array.isArray(c))for(var u=0;u<c.length;u++)o(l,c[u]);else o(l,c);a(l,\"marker.line\")&&o(l,{container:\"marker.line\",min:\"cmin\",max:\"cmax\"})}for(var h in e._colorAxes)o(e[h],{min:\"cmin\",max:\"cmax\"})}},{\"../../lib\":719,\"./helpers\":605}],604:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\"),i=t(\"../colorbar/has_colorbar\"),o=t(\"../colorbar/defaults\"),s=t(\"./scales\").isValid,l=t(\"../../registry\").traceIs;function c(t,e){var r=e.slice(0,e.length-1);return e?a.nestedProperty(t,r).get()||{}:t}e.exports=function t(e,r,u,h,f){var p=f.prefix,d=f.cLetter,g=\"_module\"in r,v=c(e,p),m=c(r,p),y=c(r._template||{},p)||{},x=function(){return delete e.coloraxis,delete r.coloraxis,t(e,r,u,h,f)};if(g){var b=u._colorAxes||{},_=h(p+\"coloraxis\");if(_){var w=l(r,\"contour\")&&a.nestedProperty(r,\"contours.coloring\").get()||\"heatmap\",k=b[_];return void(k?(k[2].push(x),k[0]!==w&&(k[0]=!1,a.warn([\"Ignoring coloraxis:\",_,\"setting\",\"as it is linked to incompatible colorscales.\"].join(\" \")))):b[_]=[w,r,[x]])}}var T=v[d+\"min\"],A=v[d+\"max\"],M=n(T)&&n(A)&&T<A;h(p+d+\"auto\",!M)?h(p+d+\"mid\"):(h(p+d+\"min\"),h(p+d+\"max\"));var S,E,C=v.colorscale,L=y.colorscale;(void 0!==C&&(S=!s(C)),void 0!==L&&(S=!s(L)),h(p+\"autocolorscale\",S),h(p+\"colorscale\"),h(p+\"reversescale\"),\"marker.line.\"!==p)&&(p&&g&&(E=i(v)),h(p+\"showscale\",E)&&o(v,m,u))}},{\"../../lib\":719,\"../../registry\":848,\"../colorbar/defaults\":597,\"../colorbar/has_colorbar\":599,\"./scales\":609,\"fast-isnumeric\":226}],605:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"tinycolor2\"),i=t(\"fast-isnumeric\"),o=t(\"../../lib\"),s=t(\"../color\"),l=t(\"./scales\").isValid;var c=[\"showscale\",\"autocolorscale\",\"colorscale\",\"reversescale\",\"colorbar\"],u=[\"min\",\"max\",\"mid\",\"auto\"];function h(t){var e,r,n,a=t._colorAx,i=a||t,o={};for(r=0;r<c.length;r++)o[n=c[r]]=i[n];if(a)for(e=\"c\",r=0;r<u.length;r++)o[n=u[r]]=i[\"c\"+n];else{var s;for(r=0;r<u.length;r++)(s=\"c\"+(n=u[r]))in i?o[n]=i[s]:(s=\"z\"+n)in i&&(o[n]=i[s]);e=s.charAt(0)}return o._sync=function(t,r){var n=-1!==u.indexOf(t)?e+t:t;i[n]=i[\"_\"+n]=r},o}function f(t){for(var e=h(t),r=e.min,n=e.max,a=e.reversescale?p(e.colorscale):e.colorscale,i=a.length,o=new Array(i),s=new Array(i),l=0;l<i;l++){var c=a[l];o[l]=r+c[0]*(n-r),s[l]=c[1]}return{domain:o,range:s}}function p(t){for(var e=t.length,r=new Array(e),n=e-1,a=0;n>=0;n--,a++){var i=t[n];r[a]=[1-i[0],i[1]]}return r}function d(t,e){e=e||{};for(var r=t.domain,o=t.range,l=o.length,c=new Array(l),u=0;u<l;u++){var h=a(o[u]).toRgb();c[u]=[h.r,h.g,h.b,h.a]}var f,p=n.scale.linear().domain(r).range(c).clamp(!0),d=e.noNumericCheck,v=e.returnArray;return(f=d&&v?p:d?function(t){return g(p(t))}:v?function(t){return i(t)?p(t):a(t).isValid()?t:s.defaultLine}:function(t){return i(t)?g(p(t)):a(t).isValid()?t:s.defaultLine}).domain=p.domain,f.range=function(){return o},f}function g(t){var e={r:t[0],g:t[1],b:t[2],a:t[3]};return a(e).toRgbString()}e.exports={hasColorscale:function(t,e,r){var n=e?o.nestedProperty(t,e).get()||{}:t,a=n[r||\"color\"],s=!1;if(o.isArrayOrTypedArray(a))for(var c=0;c<a.length;c++)if(i(a[c])){s=!0;break}return o.isPlainObject(n)&&(s||!0===n.showscale||i(n.cmin)&&i(n.cmax)||l(n.colorscale)||o.isPlainObject(n.colorbar))},extractOpts:h,extractScale:f,flipScale:p,makeColorScaleFunc:d,makeColorScaleFuncFromTrace:function(t,e){return d(f(t),e)}}},{\"../../lib\":719,\"../color\":594,\"./scales\":609,d3:164,\"fast-isnumeric\":226,tinycolor2:538}],606:[function(t,e,r){\"use strict\";var n=t(\"./scales\"),a=t(\"./helpers\");e.exports={moduleType:\"component\",name:\"colorscale\",attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyLayoutDefaults:t(\"./layout_defaults\"),handleDefaults:t(\"./defaults\"),crossTraceDefaults:t(\"./cross_trace_defaults\"),calc:t(\"./calc\"),scales:n.scales,defaultScale:n.defaultScale,getScale:n.get,isValidScale:n.isValid,hasColorscale:a.hasColorscale,extractOpts:a.extractOpts,extractScale:a.extractScale,flipScale:a.flipScale,makeColorScaleFunc:a.makeColorScaleFunc,makeColorScaleFuncFromTrace:a.makeColorScaleFuncFromTrace}},{\"./attributes\":601,\"./calc\":602,\"./cross_trace_defaults\":603,\"./defaults\":604,\"./helpers\":605,\"./layout_attributes\":607,\"./layout_defaults\":608,\"./scales\":609}],607:[function(t,e,r){\"use strict\";var n=t(\"../../lib/extend\").extendFlat,a=t(\"./attributes\"),i=t(\"./scales\").scales;e.exports={editType:\"calc\",colorscale:{editType:\"calc\",sequential:{valType:\"colorscale\",dflt:i.Reds,editType:\"calc\"},sequentialminus:{valType:\"colorscale\",dflt:i.Blues,editType:\"calc\"},diverging:{valType:\"colorscale\",dflt:i.RdBu,editType:\"calc\"}},coloraxis:n({_isSubplotObj:!0,editType:\"calc\"},a(\"\",{colorAttr:\"corresponding trace color array(s)\",noColorAxis:!0,showScaleDflt:!0}))}},{\"../../lib/extend\":710,\"./attributes\":601,\"./scales\":609}],608:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plot_api/plot_template\"),i=t(\"./layout_attributes\"),o=t(\"./defaults\");e.exports=function(t,e){function r(r,a){return n.coerce(t,e,i,r,a)}r(\"colorscale.sequential\"),r(\"colorscale.sequentialminus\"),r(\"colorscale.diverging\");var s,l,c=e._colorAxes;function u(t,e){return n.coerce(s,l,i.coloraxis,t,e)}for(var h in c){var f=c[h];if(f[0])s=t[h]||{},(l=a.newContainer(e,h,\"coloraxis\"))._name=h,o(s,l,e,u,{prefix:\"\",cLetter:\"c\"});else{for(var p=0;p<f[2].length;p++)f[2][p]();delete e._colorAxes[h]}}}},{\"../../lib\":719,\"../../plot_api/plot_template\":757,\"./defaults\":604,\"./layout_attributes\":607}],609:[function(t,e,r){\"use strict\";var n=t(\"tinycolor2\"),a={Greys:[[0,\"rgb(0,0,0)\"],[1,\"rgb(255,255,255)\"]],YlGnBu:[[0,\"rgb(8,29,88)\"],[.125,\"rgb(37,52,148)\"],[.25,\"rgb(34,94,168)\"],[.375,\"rgb(29,145,192)\"],[.5,\"rgb(65,182,196)\"],[.625,\"rgb(127,205,187)\"],[.75,\"rgb(199,233,180)\"],[.875,\"rgb(237,248,217)\"],[1,\"rgb(255,255,217)\"]],Greens:[[0,\"rgb(0,68,27)\"],[.125,\"rgb(0,109,44)\"],[.25,\"rgb(35,139,69)\"],[.375,\"rgb(65,171,93)\"],[.5,\"rgb(116,196,118)\"],[.625,\"rgb(161,217,155)\"],[.75,\"rgb(199,233,192)\"],[.875,\"rgb(229,245,224)\"],[1,\"rgb(247,252,245)\"]],YlOrRd:[[0,\"rgb(128,0,38)\"],[.125,\"rgb(189,0,38)\"],[.25,\"rgb(227,26,28)\"],[.375,\"rgb(252,78,42)\"],[.5,\"rgb(253,141,60)\"],[.625,\"rgb(254,178,76)\"],[.75,\"rgb(254,217,118)\"],[.875,\"rgb(255,237,160)\"],[1,\"rgb(255,255,204)\"]],Bluered:[[0,\"rgb(0,0,255)\"],[1,\"rgb(255,0,0)\"]],RdBu:[[0,\"rgb(5,10,172)\"],[.35,\"rgb(106,137,247)\"],[.5,\"rgb(190,190,190)\"],[.6,\"rgb(220,170,132)\"],[.7,\"rgb(230,145,90)\"],[1,\"rgb(178,10,28)\"]],Reds:[[0,\"rgb(220,220,220)\"],[.2,\"rgb(245,195,157)\"],[.4,\"rgb(245,160,105)\"],[1,\"rgb(178,10,28)\"]],Blues:[[0,\"rgb(5,10,172)\"],[.35,\"rgb(40,60,190)\"],[.5,\"rgb(70,100,245)\"],[.6,\"rgb(90,120,245)\"],[.7,\"rgb(106,137,247)\"],[1,\"rgb(220,220,220)\"]],Picnic:[[0,\"rgb(0,0,255)\"],[.1,\"rgb(51,153,255)\"],[.2,\"rgb(102,204,255)\"],[.3,\"rgb(153,204,255)\"],[.4,\"rgb(204,204,255)\"],[.5,\"rgb(255,255,255)\"],[.6,\"rgb(255,204,255)\"],[.7,\"rgb(255,153,255)\"],[.8,\"rgb(255,102,204)\"],[.9,\"rgb(255,102,102)\"],[1,\"rgb(255,0,0)\"]],Rainbow:[[0,\"rgb(150,0,90)\"],[.125,\"rgb(0,0,200)\"],[.25,\"rgb(0,25,255)\"],[.375,\"rgb(0,152,255)\"],[.5,\"rgb(44,255,150)\"],[.625,\"rgb(151,255,0)\"],[.75,\"rgb(255,234,0)\"],[.875,\"rgb(255,111,0)\"],[1,\"rgb(255,0,0)\"]],Portland:[[0,\"rgb(12,51,131)\"],[.25,\"rgb(10,136,186)\"],[.5,\"rgb(242,211,56)\"],[.75,\"rgb(242,143,56)\"],[1,\"rgb(217,30,30)\"]],Jet:[[0,\"rgb(0,0,131)\"],[.125,\"rgb(0,60,170)\"],[.375,\"rgb(5,255,255)\"],[.625,\"rgb(255,255,0)\"],[.875,\"rgb(250,0,0)\"],[1,\"rgb(128,0,0)\"]],Hot:[[0,\"rgb(0,0,0)\"],[.3,\"rgb(230,0,0)\"],[.6,\"rgb(255,210,0)\"],[1,\"rgb(255,255,255)\"]],Blackbody:[[0,\"rgb(0,0,0)\"],[.2,\"rgb(230,0,0)\"],[.4,\"rgb(230,210,0)\"],[.7,\"rgb(255,255,255)\"],[1,\"rgb(160,200,255)\"]],Earth:[[0,\"rgb(0,0,130)\"],[.1,\"rgb(0,180,180)\"],[.2,\"rgb(40,210,40)\"],[.4,\"rgb(230,230,50)\"],[.6,\"rgb(120,70,20)\"],[1,\"rgb(255,255,255)\"]],Electric:[[0,\"rgb(0,0,0)\"],[.15,\"rgb(30,0,100)\"],[.4,\"rgb(120,0,100)\"],[.6,\"rgb(160,90,0)\"],[.8,\"rgb(230,200,0)\"],[1,\"rgb(255,250,220)\"]],Viridis:[[0,\"#440154\"],[.06274509803921569,\"#48186a\"],[.12549019607843137,\"#472d7b\"],[.18823529411764706,\"#424086\"],[.25098039215686274,\"#3b528b\"],[.3137254901960784,\"#33638d\"],[.3764705882352941,\"#2c728e\"],[.4392156862745098,\"#26828e\"],[.5019607843137255,\"#21918c\"],[.5647058823529412,\"#1fa088\"],[.6274509803921569,\"#28ae80\"],[.6901960784313725,\"#3fbc73\"],[.7529411764705882,\"#5ec962\"],[.8156862745098039,\"#84d44b\"],[.8784313725490196,\"#addc30\"],[.9411764705882353,\"#d8e219\"],[1,\"#fde725\"]],Cividis:[[0,\"rgb(0,32,76)\"],[.058824,\"rgb(0,42,102)\"],[.117647,\"rgb(0,52,110)\"],[.176471,\"rgb(39,63,108)\"],[.235294,\"rgb(60,74,107)\"],[.294118,\"rgb(76,85,107)\"],[.352941,\"rgb(91,95,109)\"],[.411765,\"rgb(104,106,112)\"],[.470588,\"rgb(117,117,117)\"],[.529412,\"rgb(131,129,120)\"],[.588235,\"rgb(146,140,120)\"],[.647059,\"rgb(161,152,118)\"],[.705882,\"rgb(176,165,114)\"],[.764706,\"rgb(192,177,109)\"],[.823529,\"rgb(209,191,102)\"],[.882353,\"rgb(225,204,92)\"],[.941176,\"rgb(243,219,79)\"],[1,\"rgb(255,233,69)\"]]},i=a.RdBu;function o(t){var e=0;if(!Array.isArray(t)||t.length<2)return!1;if(!t[0]||!t[t.length-1])return!1;if(0!=+t[0][0]||1!=+t[t.length-1][0])return!1;for(var r=0;r<t.length;r++){var a=t[r];if(2!==a.length||+a[0]<e||!n(a[1]).isValid())return!1;e=+a[0]}return!0}e.exports={scales:a,defaultScale:i,get:function(t,e){if(e||(e=i),!t)return e;function r(){try{t=a[t]||JSON.parse(t)}catch(r){t=e}}return\"string\"==typeof t&&(r(),\"string\"==typeof t&&r()),o(t)?t:e},isValid:function(t){return void 0!==a[t]||o(t)}}},{tinycolor2:538}],610:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,a){var i=(t-r)/(n-r),o=i+e/(n-r),s=(i+o)/2;return\"left\"===a||\"bottom\"===a?i:\"center\"===a||\"middle\"===a?s:\"right\"===a||\"top\"===a?o:i<2/3-s?i:o>4/3-s?o:s}},{}],611:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=[[\"sw-resize\",\"s-resize\",\"se-resize\"],[\"w-resize\",\"move\",\"e-resize\"],[\"nw-resize\",\"n-resize\",\"ne-resize\"]];e.exports=function(t,e,r,i){return t=\"left\"===r?0:\"center\"===r?1:\"right\"===r?2:n.constrain(Math.floor(3*t),0,2),e=\"bottom\"===i?0:\"middle\"===i?1:\"top\"===i?2:n.constrain(Math.floor(3*e),0,2),a[e][t]}},{\"../../lib\":719}],612:[function(t,e,r){\"use strict\";var n=t(\"mouse-event-offset\"),a=t(\"has-hover\"),i=t(\"has-passive-events\"),o=t(\"../../lib\").removeElement,s=t(\"../../plots/cartesian/constants\"),l=e.exports={};l.align=t(\"./align\"),l.getCursor=t(\"./cursor\");var c=t(\"./unhover\");function u(){var t=document.createElement(\"div\");t.className=\"dragcover\";var e=t.style;return e.position=\"fixed\",e.left=0,e.right=0,e.top=0,e.bottom=0,e.zIndex=999999999,e.background=\"none\",document.body.appendChild(t),t}function h(t){return n(t.changedTouches?t.changedTouches[0]:t,document.body)}l.unhover=c.wrapped,l.unhoverRaw=c.raw,l.init=function(t){var e,r,n,c,f,p,d,g,v=t.gd,m=1,y=v._context.doubleClickDelay,x=t.element;v._mouseDownTime||(v._mouseDownTime=0),x.style.pointerEvents=\"all\",x.onmousedown=_,i?(x._ontouchstart&&x.removeEventListener(\"touchstart\",x._ontouchstart),x._ontouchstart=_,x.addEventListener(\"touchstart\",_,{passive:!1})):x.ontouchstart=_;var b=t.clampFn||function(t,e,r){return Math.abs(t)<r&&(t=0),Math.abs(e)<r&&(e=0),[t,e]};function _(i){v._dragged=!1,v._dragging=!0;var o=h(i);e=o[0],r=o[1],d=i.target,p=i,g=2===i.buttons||i.ctrlKey,\"undefined\"==typeof i.clientX&&\"undefined\"==typeof i.clientY&&(i.clientX=e,i.clientY=r),(n=(new Date).getTime())-v._mouseDownTime<y?m+=1:(m=1,v._mouseDownTime=n),t.prepFn&&t.prepFn(i,e,r),a&&!g?(f=u()).style.cursor=window.getComputedStyle(x).cursor:a||(f=document,c=window.getComputedStyle(document.documentElement).cursor,document.documentElement.style.cursor=window.getComputedStyle(x).cursor),document.addEventListener(\"mouseup\",k),document.addEventListener(\"touchend\",k),!1!==t.dragmode&&(i.preventDefault(),document.addEventListener(\"mousemove\",w),document.addEventListener(\"touchmove\",w,{passive:!1}))}function w(n){n.preventDefault();var a=h(n),i=t.minDrag||s.MINDRAG,o=b(a[0]-e,a[1]-r,i),c=o[0],u=o[1];(c||u)&&(v._dragged=!0,l.unhover(v)),v._dragged&&t.moveFn&&!g&&(v._dragdata={element:x,dx:c,dy:u},t.moveFn(c,u))}function k(e){if(delete v._dragdata,!1!==t.dragmode&&(e.preventDefault(),document.removeEventListener(\"mousemove\",w),document.removeEventListener(\"touchmove\",w)),document.removeEventListener(\"mouseup\",k),document.removeEventListener(\"touchend\",k),a?o(f):c&&(f.documentElement.style.cursor=c,c=null),v._dragging){if(v._dragging=!1,(new Date).getTime()-v._mouseDownTime>y&&(m=Math.max(m-1,1)),v._dragged)t.doneFn&&t.doneFn();else if(t.clickFn&&t.clickFn(m,p),!g){var r;try{r=new MouseEvent(\"click\",e)}catch(t){var n=h(e);(r=document.createEvent(\"MouseEvents\")).initMouseEvent(\"click\",e.bubbles,e.cancelable,e.view,e.detail,e.screenX,e.screenY,n[0],n[1],e.ctrlKey,e.altKey,e.shiftKey,e.metaKey,e.button,e.relatedTarget)}d.dispatchEvent(r)}v._dragging=!1,v._dragged=!1}else v._dragged=!1}},l.coverSlip=u},{\"../../lib\":719,\"../../plots/cartesian/constants\":773,\"./align\":610,\"./cursor\":611,\"./unhover\":613,\"has-hover\":411,\"has-passive-events\":412,\"mouse-event-offset\":437}],613:[function(t,e,r){\"use strict\";var n=t(\"../../lib/events\"),a=t(\"../../lib/throttle\"),i=t(\"../../lib/dom\").getGraphDiv,o=t(\"../fx/constants\"),s=e.exports={};s.wrapped=function(t,e,r){(t=i(t))._fullLayout&&a.clear(t._fullLayout._uid+o.HOVERID),s.raw(t,e,r)},s.raw=function(t,e){var r=t._fullLayout,a=t._hoverdata;e||(e={}),e.target&&!1===n.triggerHandler(t,\"plotly_beforehover\",e)||(r._hoverlayer.selectAll(\"g\").remove(),r._hoverlayer.selectAll(\"line\").remove(),r._hoverlayer.selectAll(\"circle\").remove(),t._hoverdata=void 0,e.target&&a&&t.emit(\"plotly_unhover\",{event:e,points:a}))}},{\"../../lib/dom\":708,\"../../lib/events\":709,\"../../lib/throttle\":744,\"../fx/constants\":627}],614:[function(t,e,r){\"use strict\";r.dash={valType:\"string\",values:[\"solid\",\"dot\",\"dash\",\"longdash\",\"dashdot\",\"longdashdot\"],dflt:\"solid\",editType:\"style\"}},{}],615:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"fast-isnumeric\"),i=t(\"tinycolor2\"),o=t(\"../../registry\"),s=t(\"../color\"),l=t(\"../colorscale\"),c=t(\"../../lib\"),u=t(\"../../lib/svg_text_utils\"),h=t(\"../../constants/xmlns_namespaces\"),f=t(\"../../constants/alignment\").LINE_SPACING,p=t(\"../../constants/interactions\").DESELECTDIM,d=t(\"../../traces/scatter/subtypes\"),g=t(\"../../traces/scatter/make_bubble_size_func\"),v=e.exports={},m=t(\"../fx/helpers\").appendArrayPointValue;v.font=function(t,e,r,n){c.isPlainObject(e)&&(n=e.color,r=e.size,e=e.family),e&&t.style(\"font-family\",e),r+1&&t.style(\"font-size\",r+\"px\"),n&&t.call(s.fill,n)},v.setPosition=function(t,e,r){t.attr(\"x\",e).attr(\"y\",r)},v.setSize=function(t,e,r){t.attr(\"width\",e).attr(\"height\",r)},v.setRect=function(t,e,r,n,a){t.call(v.setPosition,e,r).call(v.setSize,n,a)},v.translatePoint=function(t,e,r,n){var i=r.c2p(t.x),o=n.c2p(t.y);return!!(a(i)&&a(o)&&e.node())&&(\"text\"===e.node().nodeName?e.attr(\"x\",i).attr(\"y\",o):e.attr(\"transform\",\"translate(\"+i+\",\"+o+\")\"),!0)},v.translatePoints=function(t,e,r){t.each(function(t){var a=n.select(this);v.translatePoint(t,a,e,r)})},v.hideOutsideRangePoint=function(t,e,r,n,a,i){e.attr(\"display\",r.isPtWithinRange(t,a)&&n.isPtWithinRange(t,i)?null:\"none\")},v.hideOutsideRangePoints=function(t,e){if(e._hasClipOnAxisFalse){var r=e.xaxis,a=e.yaxis;t.each(function(e){var i=e[0].trace,s=i.xcalendar,l=i.ycalendar,c=o.traceIs(i,\"bar-like\")?\".bartext\":\".point,.textpoint\";t.selectAll(c).each(function(t){v.hideOutsideRangePoint(t,n.select(this),r,a,s,l)})})}},v.crispRound=function(t,e,r){return e&&a(e)?t._context.staticPlot?e:e<1?1:Math.round(e):r||0},v.singleLineStyle=function(t,e,r,n,a){e.style(\"fill\",\"none\");var i=(((t||[])[0]||{}).trace||{}).line||{},o=r||i.width||0,l=a||i.dash||\"\";s.stroke(e,n||i.color),v.dashLine(e,l,o)},v.lineGroupStyle=function(t,e,r,a){t.style(\"fill\",\"none\").each(function(t){var i=(((t||[])[0]||{}).trace||{}).line||{},o=e||i.width||0,l=a||i.dash||\"\";n.select(this).call(s.stroke,r||i.color).call(v.dashLine,l,o)})},v.dashLine=function(t,e,r){r=+r||0,e=v.dashStyle(e,r),t.style({\"stroke-dasharray\":e,\"stroke-width\":r+\"px\"})},v.dashStyle=function(t,e){e=+e||1;var r=Math.max(e,3);return\"solid\"===t?t=\"\":\"dot\"===t?t=r+\"px,\"+r+\"px\":\"dash\"===t?t=3*r+\"px,\"+3*r+\"px\":\"longdash\"===t?t=5*r+\"px,\"+5*r+\"px\":\"dashdot\"===t?t=3*r+\"px,\"+r+\"px,\"+r+\"px,\"+r+\"px\":\"longdashdot\"===t&&(t=5*r+\"px,\"+2*r+\"px,\"+r+\"px,\"+2*r+\"px\"),t},v.singleFillStyle=function(t){var e=(((n.select(t.node()).data()[0]||[])[0]||{}).trace||{}).fillcolor;e&&t.call(s.fill,e)},v.fillGroupStyle=function(t){t.style(\"stroke-width\",0).each(function(t){var e=n.select(this);t[0].trace&&e.call(s.fill,t[0].trace.fillcolor)})};var y=t(\"./symbol_defs\");v.symbolNames=[],v.symbolFuncs=[],v.symbolNeedLines={},v.symbolNoDot={},v.symbolNoFill={},v.symbolList=[],Object.keys(y).forEach(function(t){var e=y[t];v.symbolList=v.symbolList.concat([e.n,t,e.n+100,t+\"-open\"]),v.symbolNames[e.n]=t,v.symbolFuncs[e.n]=e.f,e.needLine&&(v.symbolNeedLines[e.n]=!0),e.noDot?v.symbolNoDot[e.n]=!0:v.symbolList=v.symbolList.concat([e.n+200,t+\"-dot\",e.n+300,t+\"-open-dot\"]),e.noFill&&(v.symbolNoFill[e.n]=!0)});var x=v.symbolNames.length,b=\"M0,0.5L0.5,0L0,-0.5L-0.5,0Z\";function _(t,e){var r=t%100;return v.symbolFuncs[r](e)+(t>=200?b:\"\")}v.symbolNumber=function(t){if(\"string\"==typeof t){var e=0;t.indexOf(\"-open\")>0&&(e=100,t=t.replace(\"-open\",\"\")),t.indexOf(\"-dot\")>0&&(e+=200,t=t.replace(\"-dot\",\"\")),(t=v.symbolNames.indexOf(t))>=0&&(t+=e)}return t%100>=x||t>=400?0:Math.floor(Math.max(t,0))};var w={x1:1,x2:0,y1:0,y2:0},k={x1:0,x2:0,y1:1,y2:0},T=n.format(\"~.1f\"),A={radial:{node:\"radialGradient\"},radialreversed:{node:\"radialGradient\",reversed:!0},horizontal:{node:\"linearGradient\",attrs:w},horizontalreversed:{node:\"linearGradient\",attrs:w,reversed:!0},vertical:{node:\"linearGradient\",attrs:k},verticalreversed:{node:\"linearGradient\",attrs:k,reversed:!0}};v.gradient=function(t,e,r,a,o,l){for(var u=o.length,h=A[a],f=new Array(u),p=0;p<u;p++)h.reversed?f[u-1-p]=[T(100*(1-o[p][0])),o[p][1]]:f[p]=[T(100*o[p][0]),o[p][1]];var d=\"g\"+e._fullLayout._uid+\"-\"+r,g=e._fullLayout._defs.select(\".gradients\").selectAll(\"#\"+d).data([a+f.join(\";\")],c.identity);g.exit().remove(),g.enter().append(h.node).each(function(){var t=n.select(this);h.attrs&&t.attr(h.attrs),t.attr(\"id\",d);var e=t.selectAll(\"stop\").data(f);e.exit().remove(),e.enter().append(\"stop\"),e.each(function(t){var e=i(t[1]);n.select(this).attr({offset:t[0]+\"%\",\"stop-color\":s.tinyRGB(e),\"stop-opacity\":e.getAlpha()})})}),t.style(l,D(d,e)).style(l+\"-opacity\",null)},v.initGradients=function(t){c.ensureSingle(t._fullLayout._defs,\"g\",\"gradients\").selectAll(\"linearGradient,radialGradient\").remove()},v.pointStyle=function(t,e,r){if(t.size()){var a=v.makePointStyleFns(e);t.each(function(t){v.singlePointStyle(t,n.select(this),e,a,r)})}},v.singlePointStyle=function(t,e,r,n,a){var i=r.marker,o=i.line;if(e.style(\"opacity\",n.selectedOpacityFn?n.selectedOpacityFn(t):void 0===t.mo?i.opacity:t.mo),n.ms2mrc){var l;l=\"various\"===t.ms||\"various\"===i.size?3:n.ms2mrc(t.ms),t.mrc=l,n.selectedSizeFn&&(l=t.mrc=n.selectedSizeFn(t));var u=v.symbolNumber(t.mx||i.symbol)||0;t.om=u%200>=100,e.attr(\"d\",_(u,l))}var h,f,p,d=!1;if(t.so)p=o.outlierwidth,f=o.outliercolor,h=i.outliercolor;else{var g=(o||{}).width;p=(t.mlw+1||g+1||(t.trace?(t.trace.marker.line||{}).width:0)+1)-1||0,f=\"mlc\"in t?t.mlcc=n.lineScale(t.mlc):c.isArrayOrTypedArray(o.color)?s.defaultLine:o.color,c.isArrayOrTypedArray(i.color)&&(h=s.defaultLine,d=!0),h=\"mc\"in t?t.mcc=n.markerScale(t.mc):i.color||\"rgba(0,0,0,0)\",n.selectedColorFn&&(h=n.selectedColorFn(t))}if(t.om)e.call(s.stroke,h).style({\"stroke-width\":(p||1)+\"px\",fill:\"none\"});else{e.style(\"stroke-width\",(t.isBlank?0:p)+\"px\");var m=i.gradient,y=t.mgt;if(y?d=!0:y=m&&m.type,Array.isArray(y)&&(y=y[0],A[y]||(y=0)),y&&\"none\"!==y){var x=t.mgc;x?d=!0:x=m.color;var b=r.uid;d&&(b+=\"-\"+t.i),v.gradient(e,a,b,y,[[0,x],[1,h]],\"fill\")}else s.fill(e,h);p&&s.stroke(e,f)}},v.makePointStyleFns=function(t){var e={},r=t.marker;return e.markerScale=v.tryColorscale(r,\"\"),e.lineScale=v.tryColorscale(r,\"line\"),o.traceIs(t,\"symbols\")&&(e.ms2mrc=d.isBubble(t)?g(t):function(){return(r.size||6)/2}),t.selectedpoints&&c.extendFlat(e,v.makeSelectedPointStyleFns(t)),e},v.makeSelectedPointStyleFns=function(t){var e={},r=t.selected||{},n=t.unselected||{},a=t.marker||{},i=r.marker||{},s=n.marker||{},l=a.opacity,u=i.opacity,h=s.opacity,f=void 0!==u,d=void 0!==h;(c.isArrayOrTypedArray(l)||f||d)&&(e.selectedOpacityFn=function(t){var e=void 0===t.mo?a.opacity:t.mo;return t.selected?f?u:e:d?h:p*e});var g=a.color,v=i.color,m=s.color;(v||m)&&(e.selectedColorFn=function(t){var e=t.mcc||g;return t.selected?v||e:m||e});var y=a.size,x=i.size,b=s.size,_=void 0!==x,w=void 0!==b;return o.traceIs(t,\"symbols\")&&(_||w)&&(e.selectedSizeFn=function(t){var e=t.mrc||y/2;return t.selected?_?x/2:e:w?b/2:e}),e},v.makeSelectedTextStyleFns=function(t){var e={},r=t.selected||{},n=t.unselected||{},a=t.textfont||{},i=r.textfont||{},o=n.textfont||{},l=a.color,c=i.color,u=o.color;return e.selectedTextColorFn=function(t){var e=t.tc||l;return t.selected?c||e:u||(c?e:s.addOpacity(e,p))},e},v.selectedPointStyle=function(t,e){if(t.size()&&e.selectedpoints){var r=v.makeSelectedPointStyleFns(e),a=e.marker||{},i=[];r.selectedOpacityFn&&i.push(function(t,e){t.style(\"opacity\",r.selectedOpacityFn(e))}),r.selectedColorFn&&i.push(function(t,e){s.fill(t,r.selectedColorFn(e))}),r.selectedSizeFn&&i.push(function(t,e){var n=e.mx||a.symbol||0,i=r.selectedSizeFn(e);t.attr(\"d\",_(v.symbolNumber(n),i)),e.mrc2=i}),i.length&&t.each(function(t){for(var e=n.select(this),r=0;r<i.length;r++)i[r](e,t)})}},v.tryColorscale=function(t,e){var r=e?c.nestedProperty(t,e).get():t;if(r){var n=r.color;if((r.colorscale||r._colorAx)&&c.isArrayOrTypedArray(n))return l.makeColorScaleFuncFromTrace(r)}return c.identity};var M={start:1,end:-1,middle:0,bottom:1,top:-1};function S(t,e,r,a){var i=n.select(t.node().parentNode),o=-1!==e.indexOf(\"top\")?\"top\":-1!==e.indexOf(\"bottom\")?\"bottom\":\"middle\",s=-1!==e.indexOf(\"left\")?\"end\":-1!==e.indexOf(\"right\")?\"start\":\"middle\",l=a?a/.8+1:0,c=(u.lineCount(t)-1)*f+1,h=M[s]*l,p=.75*r+M[o]*l+(M[o]-1)*c*r/2;t.attr(\"text-anchor\",s),i.attr(\"transform\",\"translate(\"+h+\",\"+p+\")\")}function E(t,e){var r=t.ts||e.textfont.size;return a(r)&&r>0?r:0}v.textPointStyle=function(t,e,r,a){if(t.size()){var i;if(e.selectedpoints){var o=v.makeSelectedTextStyleFns(e);i=o.selectedTextColorFn}var s=e.texttemplate;a&&(s=!1),t.each(function(t){var a=n.select(this),o=c.extractOption(t,e,s?\"txt\":\"tx\",s?\"texttemplate\":\"text\");if(o||0===o){if(s){var l={};m(l,e,t.i),o=c.texttemplateString(o,{},r._fullLayout._d3locale,l,t,e._meta||{})}var h=t.tp||e.textposition,f=E(t,e),p=i?i(t):t.tc||e.textfont.color;a.call(v.font,t.tf||e.textfont.family,f,p).text(o).call(u.convertToTspans,r).call(S,h,f,t.mrc)}else a.remove()})}},v.selectedTextStyle=function(t,e){if(t.size()&&e.selectedpoints){var r=v.makeSelectedTextStyleFns(e);t.each(function(t){var a=n.select(this),i=r.selectedTextColorFn(t),o=t.tp||e.textposition,l=E(t,e);s.fill(a,i),S(a,o,l,t.mrc2||t.mrc)})}};var C=.5;function L(t,e,r,a){var i=t[0]-e[0],o=t[1]-e[1],s=r[0]-e[0],l=r[1]-e[1],c=Math.pow(i*i+o*o,C/2),u=Math.pow(s*s+l*l,C/2),h=(u*u*i-c*c*s)*a,f=(u*u*o-c*c*l)*a,p=3*u*(c+u),d=3*c*(c+u);return[[n.round(e[0]+(p&&h/p),2),n.round(e[1]+(p&&f/p),2)],[n.round(e[0]-(d&&h/d),2),n.round(e[1]-(d&&f/d),2)]]}v.smoothopen=function(t,e){if(t.length<3)return\"M\"+t.join(\"L\");var r,n=\"M\"+t[0],a=[];for(r=1;r<t.length-1;r++)a.push(L(t[r-1],t[r],t[r+1],e));for(n+=\"Q\"+a[0][0]+\" \"+t[1],r=2;r<t.length-1;r++)n+=\"C\"+a[r-2][1]+\" \"+a[r-1][0]+\" \"+t[r];return n+=\"Q\"+a[t.length-3][1]+\" \"+t[t.length-1]},v.smoothclosed=function(t,e){if(t.length<3)return\"M\"+t.join(\"L\")+\"Z\";var r,n=\"M\"+t[0],a=t.length-1,i=[L(t[a],t[0],t[1],e)];for(r=1;r<a;r++)i.push(L(t[r-1],t[r],t[r+1],e));for(i.push(L(t[a-1],t[a],t[0],e)),r=1;r<=a;r++)n+=\"C\"+i[r-1][1]+\" \"+i[r][0]+\" \"+t[r];return n+=\"C\"+i[a][1]+\" \"+i[0][0]+\" \"+t[0]+\"Z\"};var P={hv:function(t,e){return\"H\"+n.round(e[0],2)+\"V\"+n.round(e[1],2)},vh:function(t,e){return\"V\"+n.round(e[1],2)+\"H\"+n.round(e[0],2)},hvh:function(t,e){return\"H\"+n.round((t[0]+e[0])/2,2)+\"V\"+n.round(e[1],2)+\"H\"+n.round(e[0],2)},vhv:function(t,e){return\"V\"+n.round((t[1]+e[1])/2,2)+\"H\"+n.round(e[0],2)+\"V\"+n.round(e[1],2)}},O=function(t,e){return\"L\"+n.round(e[0],2)+\",\"+n.round(e[1],2)};v.steps=function(t){var e=P[t]||O;return function(t){for(var r=\"M\"+n.round(t[0][0],2)+\",\"+n.round(t[0][1],2),a=1;a<t.length;a++)r+=e(t[a-1],t[a]);return r}},v.makeTester=function(){var t=c.ensureSingleById(n.select(\"body\"),\"svg\",\"js-plotly-tester\",function(t){t.attr(h.svgAttrs).style({position:\"absolute\",left:\"-10000px\",top:\"-10000px\",width:\"9000px\",height:\"9000px\",\"z-index\":\"1\"})}),e=c.ensureSingle(t,\"path\",\"js-reference-point\",function(t){t.attr(\"d\",\"M0,0H1V1H0Z\").style({\"stroke-width\":0,fill:\"black\"})});v.tester=t,v.testref=e},v.savedBBoxes={};var I=0;function z(t){var e=t.getAttribute(\"data-unformatted\");if(null!==e)return e+t.getAttribute(\"data-math\")+t.getAttribute(\"text-anchor\")+t.getAttribute(\"style\")}function D(t,e){if(!t)return null;var r=e._context;return\"url('\"+(r._exportedPlot?\"\":r._baseUrl||\"\")+\"#\"+t+\"')\"}v.bBox=function(t,e,r){var a,i,o;if(r||(r=z(t)),r){if(a=v.savedBBoxes[r])return c.extendFlat({},a)}else if(1===t.childNodes.length){var s=t.childNodes[0];if(r=z(s)){var l=+s.getAttribute(\"x\")||0,h=+s.getAttribute(\"y\")||0,f=s.getAttribute(\"transform\");if(!f){var p=v.bBox(s,!1,r);return l&&(p.left+=l,p.right+=l),h&&(p.top+=h,p.bottom+=h),p}if(r+=\"~\"+l+\"~\"+h+\"~\"+f,a=v.savedBBoxes[r])return c.extendFlat({},a)}}e?i=t:(o=v.tester.node(),i=t.cloneNode(!0),o.appendChild(i)),n.select(i).attr(\"transform\",null).call(u.positionText,0,0);var d=i.getBoundingClientRect(),g=v.testref.node().getBoundingClientRect();e||o.removeChild(i);var m={height:d.height,width:d.width,left:d.left-g.left,top:d.top-g.top,right:d.right-g.left,bottom:d.bottom-g.top};return I>=1e4&&(v.savedBBoxes={},I=0),r&&(v.savedBBoxes[r]=m),I++,c.extendFlat({},m)},v.setClipUrl=function(t,e,r){t.attr(\"clip-path\",D(e,r))},v.getTranslate=function(t){var e=(t[t.attr?\"attr\":\"getAttribute\"](\"transform\")||\"\").replace(/.*\\btranslate\\((-?\\d*\\.?\\d*)[^-\\d]*(-?\\d*\\.?\\d*)[^\\d].*/,function(t,e,r){return[e,r].join(\" \")}).split(\" \");return{x:+e[0]||0,y:+e[1]||0}},v.setTranslate=function(t,e,r){var n=t.attr?\"attr\":\"getAttribute\",a=t.attr?\"attr\":\"setAttribute\",i=t[n](\"transform\")||\"\";return e=e||0,r=r||0,i=i.replace(/(\\btranslate\\(.*?\\);?)/,\"\").trim(),i=(i+=\" translate(\"+e+\", \"+r+\")\").trim(),t[a](\"transform\",i),i},v.getScale=function(t){var e=(t[t.attr?\"attr\":\"getAttribute\"](\"transform\")||\"\").replace(/.*\\bscale\\((\\d*\\.?\\d*)[^\\d]*(\\d*\\.?\\d*)[^\\d].*/,function(t,e,r){return[e,r].join(\" \")}).split(\" \");return{x:+e[0]||1,y:+e[1]||1}},v.setScale=function(t,e,r){var n=t.attr?\"attr\":\"getAttribute\",a=t.attr?\"attr\":\"setAttribute\",i=t[n](\"transform\")||\"\";return e=e||1,r=r||1,i=i.replace(/(\\bscale\\(.*?\\);?)/,\"\").trim(),i=(i+=\" scale(\"+e+\", \"+r+\")\").trim(),t[a](\"transform\",i),i};var R=/\\s*sc.*/;v.setPointGroupScale=function(t,e,r){if(e=e||1,r=r||1,t){var n=1===e&&1===r?\"\":\" scale(\"+e+\",\"+r+\")\";t.each(function(){var t=(this.getAttribute(\"transform\")||\"\").replace(R,\"\");t=(t+=n).trim(),this.setAttribute(\"transform\",t)})}};var F=/translate\\([^)]*\\)\\s*$/;v.setTextPointsScale=function(t,e,r){t&&t.each(function(){var t,a=n.select(this),i=a.select(\"text\");if(i.node()){var o=parseFloat(i.attr(\"x\")||0),s=parseFloat(i.attr(\"y\")||0),l=(a.attr(\"transform\")||\"\").match(F);t=1===e&&1===r?[]:[\"translate(\"+o+\",\"+s+\")\",\"scale(\"+e+\",\"+r+\")\",\"translate(\"+-o+\",\"+-s+\")\"],l&&t.push(l),a.attr(\"transform\",t.join(\" \"))}})}},{\"../../constants/alignment\":688,\"../../constants/interactions\":694,\"../../constants/xmlns_namespaces\":696,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../../registry\":848,\"../../traces/scatter/make_bubble_size_func\":1127,\"../../traces/scatter/subtypes\":1134,\"../color\":594,\"../colorscale\":606,\"../fx/helpers\":629,\"./symbol_defs\":616,d3:164,\"fast-isnumeric\":226,tinycolor2:538}],616:[function(t,e,r){\"use strict\";var n=t(\"d3\");e.exports={circle:{n:0,f:function(t){var e=n.round(t,2);return\"M\"+e+\",0A\"+e+\",\"+e+\" 0 1,1 0,-\"+e+\"A\"+e+\",\"+e+\" 0 0,1 \"+e+\",0Z\"}},square:{n:1,f:function(t){var e=n.round(t,2);return\"M\"+e+\",\"+e+\"H-\"+e+\"V-\"+e+\"H\"+e+\"Z\"}},diamond:{n:2,f:function(t){var e=n.round(1.3*t,2);return\"M\"+e+\",0L0,\"+e+\"L-\"+e+\",0L0,-\"+e+\"Z\"}},cross:{n:3,f:function(t){var e=n.round(.4*t,2),r=n.round(1.2*t,2);return\"M\"+r+\",\"+e+\"H\"+e+\"V\"+r+\"H-\"+e+\"V\"+e+\"H-\"+r+\"V-\"+e+\"H-\"+e+\"V-\"+r+\"H\"+e+\"V-\"+e+\"H\"+r+\"Z\"}},x:{n:4,f:function(t){var e=n.round(.8*t/Math.sqrt(2),2),r=\"l\"+e+\",\"+e,a=\"l\"+e+\",-\"+e,i=\"l-\"+e+\",-\"+e,o=\"l-\"+e+\",\"+e;return\"M0,\"+e+r+a+i+a+i+o+i+o+r+o+r+\"Z\"}},\"triangle-up\":{n:5,f:function(t){var e=n.round(2*t/Math.sqrt(3),2);return\"M-\"+e+\",\"+n.round(t/2,2)+\"H\"+e+\"L0,-\"+n.round(t,2)+\"Z\"}},\"triangle-down\":{n:6,f:function(t){var e=n.round(2*t/Math.sqrt(3),2);return\"M-\"+e+\",-\"+n.round(t/2,2)+\"H\"+e+\"L0,\"+n.round(t,2)+\"Z\"}},\"triangle-left\":{n:7,f:function(t){var e=n.round(2*t/Math.sqrt(3),2);return\"M\"+n.round(t/2,2)+\",-\"+e+\"V\"+e+\"L-\"+n.round(t,2)+\",0Z\"}},\"triangle-right\":{n:8,f:function(t){var e=n.round(2*t/Math.sqrt(3),2);return\"M-\"+n.round(t/2,2)+\",-\"+e+\"V\"+e+\"L\"+n.round(t,2)+\",0Z\"}},\"triangle-ne\":{n:9,f:function(t){var e=n.round(.6*t,2),r=n.round(1.2*t,2);return\"M-\"+r+\",-\"+e+\"H\"+e+\"V\"+r+\"Z\"}},\"triangle-se\":{n:10,f:function(t){var e=n.round(.6*t,2),r=n.round(1.2*t,2);return\"M\"+e+\",-\"+r+\"V\"+e+\"H-\"+r+\"Z\"}},\"triangle-sw\":{n:11,f:function(t){var e=n.round(.6*t,2),r=n.round(1.2*t,2);return\"M\"+r+\",\"+e+\"H-\"+e+\"V-\"+r+\"Z\"}},\"triangle-nw\":{n:12,f:function(t){var e=n.round(.6*t,2),r=n.round(1.2*t,2);return\"M-\"+e+\",\"+r+\"V-\"+e+\"H\"+r+\"Z\"}},pentagon:{n:13,f:function(t){var e=n.round(.951*t,2),r=n.round(.588*t,2),a=n.round(-t,2),i=n.round(-.309*t,2);return\"M\"+e+\",\"+i+\"L\"+r+\",\"+n.round(.809*t,2)+\"H-\"+r+\"L-\"+e+\",\"+i+\"L0,\"+a+\"Z\"}},hexagon:{n:14,f:function(t){var e=n.round(t,2),r=n.round(t/2,2),a=n.round(t*Math.sqrt(3)/2,2);return\"M\"+a+\",-\"+r+\"V\"+r+\"L0,\"+e+\"L-\"+a+\",\"+r+\"V-\"+r+\"L0,-\"+e+\"Z\"}},hexagon2:{n:15,f:function(t){var e=n.round(t,2),r=n.round(t/2,2),a=n.round(t*Math.sqrt(3)/2,2);return\"M-\"+r+\",\"+a+\"H\"+r+\"L\"+e+\",0L\"+r+\",-\"+a+\"H-\"+r+\"L-\"+e+\",0Z\"}},octagon:{n:16,f:function(t){var e=n.round(.924*t,2),r=n.round(.383*t,2);return\"M-\"+r+\",-\"+e+\"H\"+r+\"L\"+e+\",-\"+r+\"V\"+r+\"L\"+r+\",\"+e+\"H-\"+r+\"L-\"+e+\",\"+r+\"V-\"+r+\"Z\"}},star:{n:17,f:function(t){var e=1.4*t,r=n.round(.225*e,2),a=n.round(.951*e,2),i=n.round(.363*e,2),o=n.round(.588*e,2),s=n.round(-e,2),l=n.round(-.309*e,2),c=n.round(.118*e,2),u=n.round(.809*e,2);return\"M\"+r+\",\"+l+\"H\"+a+\"L\"+i+\",\"+c+\"L\"+o+\",\"+u+\"L0,\"+n.round(.382*e,2)+\"L-\"+o+\",\"+u+\"L-\"+i+\",\"+c+\"L-\"+a+\",\"+l+\"H-\"+r+\"L0,\"+s+\"Z\"}},hexagram:{n:18,f:function(t){var e=n.round(.66*t,2),r=n.round(.38*t,2),a=n.round(.76*t,2);return\"M-\"+a+\",0l-\"+r+\",-\"+e+\"h\"+a+\"l\"+r+\",-\"+e+\"l\"+r+\",\"+e+\"h\"+a+\"l-\"+r+\",\"+e+\"l\"+r+\",\"+e+\"h-\"+a+\"l-\"+r+\",\"+e+\"l-\"+r+\",-\"+e+\"h-\"+a+\"Z\"}},\"star-triangle-up\":{n:19,f:function(t){var e=n.round(t*Math.sqrt(3)*.8,2),r=n.round(.8*t,2),a=n.round(1.6*t,2),i=n.round(4*t,2),o=\"A \"+i+\",\"+i+\" 0 0 1 \";return\"M-\"+e+\",\"+r+o+e+\",\"+r+o+\"0,-\"+a+o+\"-\"+e+\",\"+r+\"Z\"}},\"star-triangle-down\":{n:20,f:function(t){var e=n.round(t*Math.sqrt(3)*.8,2),r=n.round(.8*t,2),a=n.round(1.6*t,2),i=n.round(4*t,2),o=\"A \"+i+\",\"+i+\" 0 0 1 \";return\"M\"+e+\",-\"+r+o+\"-\"+e+\",-\"+r+o+\"0,\"+a+o+e+\",-\"+r+\"Z\"}},\"star-square\":{n:21,f:function(t){var e=n.round(1.1*t,2),r=n.round(2*t,2),a=\"A \"+r+\",\"+r+\" 0 0 1 \";return\"M-\"+e+\",-\"+e+a+\"-\"+e+\",\"+e+a+e+\",\"+e+a+e+\",-\"+e+a+\"-\"+e+\",-\"+e+\"Z\"}},\"star-diamond\":{n:22,f:function(t){var e=n.round(1.4*t,2),r=n.round(1.9*t,2),a=\"A \"+r+\",\"+r+\" 0 0 1 \";return\"M-\"+e+\",0\"+a+\"0,\"+e+a+e+\",0\"+a+\"0,-\"+e+a+\"-\"+e+\",0Z\"}},\"diamond-tall\":{n:23,f:function(t){var e=n.round(.7*t,2),r=n.round(1.4*t,2);return\"M0,\"+r+\"L\"+e+\",0L0,-\"+r+\"L-\"+e+\",0Z\"}},\"diamond-wide\":{n:24,f:function(t){var e=n.round(1.4*t,2),r=n.round(.7*t,2);return\"M0,\"+r+\"L\"+e+\",0L0,-\"+r+\"L-\"+e+\",0Z\"}},hourglass:{n:25,f:function(t){var e=n.round(t,2);return\"M\"+e+\",\"+e+\"H-\"+e+\"L\"+e+\",-\"+e+\"H-\"+e+\"Z\"},noDot:!0},bowtie:{n:26,f:function(t){var e=n.round(t,2);return\"M\"+e+\",\"+e+\"V-\"+e+\"L-\"+e+\",\"+e+\"V-\"+e+\"Z\"},noDot:!0},\"circle-cross\":{n:27,f:function(t){var e=n.round(t,2);return\"M0,\"+e+\"V-\"+e+\"M\"+e+\",0H-\"+e+\"M\"+e+\",0A\"+e+\",\"+e+\" 0 1,1 0,-\"+e+\"A\"+e+\",\"+e+\" 0 0,1 \"+e+\",0Z\"},needLine:!0,noDot:!0},\"circle-x\":{n:28,f:function(t){var e=n.round(t,2),r=n.round(t/Math.sqrt(2),2);return\"M\"+r+\",\"+r+\"L-\"+r+\",-\"+r+\"M\"+r+\",-\"+r+\"L-\"+r+\",\"+r+\"M\"+e+\",0A\"+e+\",\"+e+\" 0 1,1 0,-\"+e+\"A\"+e+\",\"+e+\" 0 0,1 \"+e+\",0Z\"},needLine:!0,noDot:!0},\"square-cross\":{n:29,f:function(t){var e=n.round(t,2);return\"M0,\"+e+\"V-\"+e+\"M\"+e+\",0H-\"+e+\"M\"+e+\",\"+e+\"H-\"+e+\"V-\"+e+\"H\"+e+\"Z\"},needLine:!0,noDot:!0},\"square-x\":{n:30,f:function(t){var e=n.round(t,2);return\"M\"+e+\",\"+e+\"L-\"+e+\",-\"+e+\"M\"+e+\",-\"+e+\"L-\"+e+\",\"+e+\"M\"+e+\",\"+e+\"H-\"+e+\"V-\"+e+\"H\"+e+\"Z\"},needLine:!0,noDot:!0},\"diamond-cross\":{n:31,f:function(t){var e=n.round(1.3*t,2);return\"M\"+e+\",0L0,\"+e+\"L-\"+e+\",0L0,-\"+e+\"ZM0,-\"+e+\"V\"+e+\"M-\"+e+\",0H\"+e},needLine:!0,noDot:!0},\"diamond-x\":{n:32,f:function(t){var e=n.round(1.3*t,2),r=n.round(.65*t,2);return\"M\"+e+\",0L0,\"+e+\"L-\"+e+\",0L0,-\"+e+\"ZM-\"+r+\",-\"+r+\"L\"+r+\",\"+r+\"M-\"+r+\",\"+r+\"L\"+r+\",-\"+r},needLine:!0,noDot:!0},\"cross-thin\":{n:33,f:function(t){var e=n.round(1.4*t,2);return\"M0,\"+e+\"V-\"+e+\"M\"+e+\",0H-\"+e},needLine:!0,noDot:!0,noFill:!0},\"x-thin\":{n:34,f:function(t){var e=n.round(t,2);return\"M\"+e+\",\"+e+\"L-\"+e+\",-\"+e+\"M\"+e+\",-\"+e+\"L-\"+e+\",\"+e},needLine:!0,noDot:!0,noFill:!0},asterisk:{n:35,f:function(t){var e=n.round(1.2*t,2),r=n.round(.85*t,2);return\"M0,\"+e+\"V-\"+e+\"M\"+e+\",0H-\"+e+\"M\"+r+\",\"+r+\"L-\"+r+\",-\"+r+\"M\"+r+\",-\"+r+\"L-\"+r+\",\"+r},needLine:!0,noDot:!0,noFill:!0},hash:{n:36,f:function(t){var e=n.round(t/2,2),r=n.round(t,2);return\"M\"+e+\",\"+r+\"V-\"+r+\"m-\"+r+\",0V\"+r+\"M\"+r+\",\"+e+\"H-\"+r+\"m0,-\"+r+\"H\"+r},needLine:!0,noFill:!0},\"y-up\":{n:37,f:function(t){var e=n.round(1.2*t,2),r=n.round(1.6*t,2),a=n.round(.8*t,2);return\"M-\"+e+\",\"+a+\"L0,0M\"+e+\",\"+a+\"L0,0M0,-\"+r+\"L0,0\"},needLine:!0,noDot:!0,noFill:!0},\"y-down\":{n:38,f:function(t){var e=n.round(1.2*t,2),r=n.round(1.6*t,2),a=n.round(.8*t,2);return\"M-\"+e+\",-\"+a+\"L0,0M\"+e+\",-\"+a+\"L0,0M0,\"+r+\"L0,0\"},needLine:!0,noDot:!0,noFill:!0},\"y-left\":{n:39,f:function(t){var e=n.round(1.2*t,2),r=n.round(1.6*t,2),a=n.round(.8*t,2);return\"M\"+a+\",\"+e+\"L0,0M\"+a+\",-\"+e+\"L0,0M-\"+r+\",0L0,0\"},needLine:!0,noDot:!0,noFill:!0},\"y-right\":{n:40,f:function(t){var e=n.round(1.2*t,2),r=n.round(1.6*t,2),a=n.round(.8*t,2);return\"M-\"+a+\",\"+e+\"L0,0M-\"+a+\",-\"+e+\"L0,0M\"+r+\",0L0,0\"},needLine:!0,noDot:!0,noFill:!0},\"line-ew\":{n:41,f:function(t){var e=n.round(1.4*t,2);return\"M\"+e+\",0H-\"+e},needLine:!0,noDot:!0,noFill:!0},\"line-ns\":{n:42,f:function(t){var e=n.round(1.4*t,2);return\"M0,\"+e+\"V-\"+e},needLine:!0,noDot:!0,noFill:!0},\"line-ne\":{n:43,f:function(t){var e=n.round(t,2);return\"M\"+e+\",-\"+e+\"L-\"+e+\",\"+e},needLine:!0,noDot:!0,noFill:!0},\"line-nw\":{n:44,f:function(t){var e=n.round(t,2);return\"M\"+e+\",\"+e+\"L-\"+e+\",-\"+e},needLine:!0,noDot:!0,noFill:!0}}},{d3:164}],617:[function(t,e,r){\"use strict\";e.exports={visible:{valType:\"boolean\",editType:\"calc\"},type:{valType:\"enumerated\",values:[\"percent\",\"constant\",\"sqrt\",\"data\"],editType:\"calc\"},symmetric:{valType:\"boolean\",editType:\"calc\"},array:{valType:\"data_array\",editType:\"calc\"},arrayminus:{valType:\"data_array\",editType:\"calc\"},value:{valType:\"number\",min:0,dflt:10,editType:\"calc\"},valueminus:{valType:\"number\",min:0,dflt:10,editType:\"calc\"},traceref:{valType:\"integer\",min:0,dflt:0,editType:\"style\"},tracerefminus:{valType:\"integer\",min:0,dflt:0,editType:\"style\"},copy_ystyle:{valType:\"boolean\",editType:\"plot\"},copy_zstyle:{valType:\"boolean\",editType:\"style\"},color:{valType:\"color\",editType:\"style\"},thickness:{valType:\"number\",min:0,dflt:2,editType:\"style\"},width:{valType:\"number\",min:0,editType:\"plot\"},editType:\"calc\",_deprecated:{opacity:{valType:\"number\",editType:\"style\"}}}},{}],618:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../registry\"),i=t(\"../../plots/cartesian/axes\"),o=t(\"../../lib\"),s=t(\"./compute_error\");function l(t,e,r,a){var l=e[\"error_\"+a]||{},c=[];if(l.visible&&-1!==[\"linear\",\"log\"].indexOf(r.type)){for(var u=s(l),h=0;h<t.length;h++){var f=t[h],p=f.i;if(void 0===p)p=h;else if(null===p)continue;var d=f[a];if(n(r.c2l(d))){var g=u(d,p);if(n(g[0])&&n(g[1])){var v=f[a+\"s\"]=d-g[0],m=f[a+\"h\"]=d+g[1];c.push(v,m)}}}var y=r._id,x=e._extremes[y],b=i.findExtremes(r,c,o.extendFlat({tozero:x.opts.tozero},{padded:!0}));x.min=x.min.concat(b.min),x.max=x.max.concat(b.max)}}e.exports=function(t){for(var e=t.calcdata,r=0;r<e.length;r++){var n=e[r],o=n[0].trace;if(!0===o.visible&&a.traceIs(o,\"errorBarsOK\")){var s=i.getFromId(t,o.xaxis),c=i.getFromId(t,o.yaxis);l(n,o,s,\"x\"),l(n,o,c,\"y\")}}}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../../registry\":848,\"./compute_error\":619,\"fast-isnumeric\":226}],619:[function(t,e,r){\"use strict\";function n(t,e){return\"percent\"===t?function(t){return Math.abs(t*e/100)}:\"constant\"===t?function(){return Math.abs(e)}:\"sqrt\"===t?function(t){return Math.sqrt(Math.abs(t))}:void 0}e.exports=function(t){var e=t.type,r=t.symmetric;if(\"data\"===e){var a=t.array||[];if(r)return function(t,e){var r=+a[e];return[r,r]};var i=t.arrayminus||[];return function(t,e){var r=+a[e],n=+i[e];return isNaN(r)&&isNaN(n)?[NaN,NaN]:[n||0,r||0]}}var o=n(e,t.value),s=n(e,t.valueminus);return r||void 0===t.valueminus?function(t){var e=o(t);return[e,e]}:function(t){return[s(t),o(t)]}}},{}],620:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../registry\"),i=t(\"../../lib\"),o=t(\"../../plot_api/plot_template\"),s=t(\"./attributes\");e.exports=function(t,e,r,l){var c=\"error_\"+l.axis,u=o.newContainer(e,c),h=t[c]||{};function f(t,e){return i.coerce(h,u,s,t,e)}if(!1!==f(\"visible\",void 0!==h.array||void 0!==h.value||\"sqrt\"===h.type)){var p=f(\"type\",\"array\"in h?\"data\":\"percent\"),d=!0;\"sqrt\"!==p&&(d=f(\"symmetric\",!((\"data\"===p?\"arrayminus\":\"valueminus\")in h))),\"data\"===p?(f(\"array\"),f(\"traceref\"),d||(f(\"arrayminus\"),f(\"tracerefminus\"))):\"percent\"!==p&&\"constant\"!==p||(f(\"value\"),d||f(\"valueminus\"));var g=\"copy_\"+l.inherit+\"style\";if(l.inherit)(e[\"error_\"+l.inherit]||{}).visible&&f(g,!(h.color||n(h.thickness)||n(h.width)));l.inherit&&u[g]||(f(\"color\",r),f(\"thickness\"),f(\"width\",a.traceIs(e,\"gl3d\")?0:4))}}},{\"../../lib\":719,\"../../plot_api/plot_template\":757,\"../../registry\":848,\"./attributes\":617,\"fast-isnumeric\":226}],621:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plot_api/edit_types\").overrideAll,i=t(\"./attributes\"),o={error_x:n.extendFlat({},i),error_y:n.extendFlat({},i)};delete o.error_x.copy_zstyle,delete o.error_y.copy_zstyle,delete o.error_y.copy_ystyle;var s={error_x:n.extendFlat({},i),error_y:n.extendFlat({},i),error_z:n.extendFlat({},i)};delete s.error_x.copy_ystyle,delete s.error_y.copy_ystyle,delete s.error_z.copy_ystyle,delete s.error_z.copy_zstyle,e.exports={moduleType:\"component\",name:\"errorbars\",schema:{traces:{scatter:o,bar:o,histogram:o,scatter3d:a(s,\"calc\",\"nested\"),scattergl:a(o,\"calc\",\"nested\")}},supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),makeComputeError:t(\"./compute_error\"),plot:t(\"./plot\"),style:t(\"./style\"),hoverInfo:function(t,e,r){(e.error_y||{}).visible&&(r.yerr=t.yh-t.y,e.error_y.symmetric||(r.yerrneg=t.y-t.ys));(e.error_x||{}).visible&&(r.xerr=t.xh-t.x,e.error_x.symmetric||(r.xerrneg=t.x-t.xs))}}},{\"../../lib\":719,\"../../plot_api/edit_types\":750,\"./attributes\":617,\"./calc\":618,\"./compute_error\":619,\"./defaults\":620,\"./plot\":622,\"./style\":623}],622:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"fast-isnumeric\"),i=t(\"../drawing\"),o=t(\"../../traces/scatter/subtypes\");e.exports=function(t,e,r,s){var l=r.xaxis,c=r.yaxis,u=s&&s.duration>0;e.each(function(e){var h,f=e[0].trace,p=f.error_x||{},d=f.error_y||{};f.ids&&(h=function(t){return t.id});var g=o.hasMarkers(f)&&f.marker.maxdisplayed>0;d.visible||p.visible||(e=[]);var v=n.select(this).selectAll(\"g.errorbar\").data(e,h);if(v.exit().remove(),e.length){p.visible||v.selectAll(\"path.xerror\").remove(),d.visible||v.selectAll(\"path.yerror\").remove(),v.style(\"opacity\",1);var m=v.enter().append(\"g\").classed(\"errorbar\",!0);u&&m.style(\"opacity\",0).transition().duration(s.duration).style(\"opacity\",1),i.setClipUrl(v,r.layerClipId,t),v.each(function(t){var e=n.select(this),r=function(t,e,r){var n={x:e.c2p(t.x),y:r.c2p(t.y)};void 0!==t.yh&&(n.yh=r.c2p(t.yh),n.ys=r.c2p(t.ys),a(n.ys)||(n.noYS=!0,n.ys=r.c2p(t.ys,!0)));void 0!==t.xh&&(n.xh=e.c2p(t.xh),n.xs=e.c2p(t.xs),a(n.xs)||(n.noXS=!0,n.xs=e.c2p(t.xs,!0)));return n}(t,l,c);if(!g||t.vis){var i,o=e.select(\"path.yerror\");if(d.visible&&a(r.x)&&a(r.yh)&&a(r.ys)){var h=d.width;i=\"M\"+(r.x-h)+\",\"+r.yh+\"h\"+2*h+\"m-\"+h+\",0V\"+r.ys,r.noYS||(i+=\"m-\"+h+\",0h\"+2*h),!o.size()?o=e.append(\"path\").style(\"vector-effect\",\"non-scaling-stroke\").classed(\"yerror\",!0):u&&(o=o.transition().duration(s.duration).ease(s.easing)),o.attr(\"d\",i)}else o.remove();var f=e.select(\"path.xerror\");if(p.visible&&a(r.y)&&a(r.xh)&&a(r.xs)){var v=(p.copy_ystyle?d:p).width;i=\"M\"+r.xh+\",\"+(r.y-v)+\"v\"+2*v+\"m0,-\"+v+\"H\"+r.xs,r.noXS||(i+=\"m0,-\"+v+\"v\"+2*v),!f.size()?f=e.append(\"path\").style(\"vector-effect\",\"non-scaling-stroke\").classed(\"xerror\",!0):u&&(f=f.transition().duration(s.duration).ease(s.easing)),f.attr(\"d\",i)}else f.remove()}})}})}},{\"../../traces/scatter/subtypes\":1134,\"../drawing\":615,d3:164,\"fast-isnumeric\":226}],623:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../color\");e.exports=function(t){t.each(function(t){var e=t[0].trace,r=e.error_y||{},i=e.error_x||{},o=n.select(this);o.selectAll(\"path.yerror\").style(\"stroke-width\",r.thickness+\"px\").call(a.stroke,r.color),i.copy_ystyle&&(i=r),o.selectAll(\"path.xerror\").style(\"stroke-width\",i.thickness+\"px\").call(a.stroke,i.color)})}},{\"../color\":594,d3:164}],624:[function(t,e,r){\"use strict\";var n=t(\"../../plots/font_attributes\"),a=t(\"./layout_attributes\").hoverlabel,i=t(\"../../lib/extend\").extendFlat;e.exports={hoverlabel:{bgcolor:i({},a.bgcolor,{arrayOk:!0}),bordercolor:i({},a.bordercolor,{arrayOk:!0}),font:n({arrayOk:!0,editType:\"none\"}),align:i({},a.align,{arrayOk:!0}),namelength:i({},a.namelength,{arrayOk:!0}),editType:\"none\"}}},{\"../../lib/extend\":710,\"../../plots/font_attributes\":793,\"./layout_attributes\":633}],625:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../registry\");function i(t,e,r,a){a=a||n.identity,Array.isArray(t)&&(e[0][r]=a(t))}e.exports=function(t){var e=t.calcdata,r=t._fullLayout;function o(t){return function(e){return n.coerceHoverinfo({hoverinfo:e},{_module:t._module},r)}}for(var s=0;s<e.length;s++){var l=e[s],c=l[0].trace;if(!a.traceIs(c,\"pie-like\")){var u=a.traceIs(c,\"2dMap\")?i:n.fillArray;u(c.hoverinfo,l,\"hi\",o(c)),c.hovertemplate&&u(c.hovertemplate,l,\"ht\"),c.hoverlabel&&(u(c.hoverlabel.bgcolor,l,\"hbg\"),u(c.hoverlabel.bordercolor,l,\"hbc\"),u(c.hoverlabel.font.size,l,\"hts\"),u(c.hoverlabel.font.color,l,\"htc\"),u(c.hoverlabel.font.family,l,\"htf\"),u(c.hoverlabel.namelength,l,\"hnl\"),u(c.hoverlabel.align,l,\"hta\"))}}}},{\"../../lib\":719,\"../../registry\":848}],626:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"./hover\").hover;e.exports=function(t,e,r){var i=n.getComponentMethod(\"annotations\",\"onClick\")(t,t._hoverdata);function o(){t.emit(\"plotly_click\",{points:t._hoverdata,event:e})}void 0!==r&&a(t,e,r,!0),t._hoverdata&&e&&e.target&&(i&&i.then?i.then(o):o(),e.stopImmediatePropagation&&e.stopImmediatePropagation())}},{\"../../registry\":848,\"./hover\":630}],627:[function(t,e,r){\"use strict\";e.exports={YANGLE:60,HOVERARROWSIZE:6,HOVERTEXTPAD:3,HOVERFONTSIZE:13,HOVERFONT:\"Arial, sans-serif\",HOVERMINTIME:50,HOVERID:\"-hover\"}},{}],628:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./attributes\"),i=t(\"./hoverlabel_defaults\");e.exports=function(t,e,r,o){var s=n.extendFlat({},o.hoverlabel);e.hovertemplate&&(s.namelength=-1),i(t,e,function(r,i){return n.coerce(t,e,a,r,i)},s)}},{\"../../lib\":719,\"./attributes\":624,\"./hoverlabel_defaults\":631}],629:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");r.getSubplot=function(t){return t.subplot||t.xaxis+t.yaxis||t.geo},r.isTraceInSubplots=function(t,e){if(\"splom\"===t.type){for(var n=t.xaxes||[],a=t.yaxes||[],i=0;i<n.length;i++)for(var o=0;o<a.length;o++)if(-1!==e.indexOf(n[i]+a[o]))return!0;return!1}return-1!==e.indexOf(r.getSubplot(t))},r.flat=function(t,e){for(var r=new Array(t.length),n=0;n<t.length;n++)r[n]=e;return r},r.p2c=function(t,e){for(var r=new Array(t.length),n=0;n<t.length;n++)r[n]=t[n].p2c(e);return r},r.getDistanceFunction=function(t,e,n,a){return\"closest\"===t?a||r.quadrature(e,n):\"x\"===t?e:n},r.getClosest=function(t,e,r){if(!1!==r.index)r.index>=0&&r.index<t.length?r.distance=0:r.index=!1;else for(var n=0;n<t.length;n++){var a=e(t[n]);a<=r.distance&&(r.index=n,r.distance=a)}return r},r.inbox=function(t,e,r){return t*e<0||0===t?r:1/0},r.quadrature=function(t,e){return function(r){var n=t(r),a=e(r);return Math.sqrt(n*n+a*a)}},r.makeEventData=function(t,e,n){var a=\"index\"in t?t.index:t.pointNumber,i={data:e._input,fullData:e,curveNumber:e.index,pointNumber:a};if(e._indexToPoints){var o=e._indexToPoints[a];1===o.length?i.pointIndex=o[0]:i.pointIndices=o}else i.pointIndex=a;return e._module.eventData?i=e._module.eventData(i,t,e,n,a):(\"xVal\"in t?i.x=t.xVal:\"x\"in t&&(i.x=t.x),\"yVal\"in t?i.y=t.yVal:\"y\"in t&&(i.y=t.y),t.xa&&(i.xaxis=t.xa),t.ya&&(i.yaxis=t.ya),void 0!==t.zLabelVal&&(i.z=t.zLabelVal)),r.appendArrayPointValue(i,e,a),i},r.appendArrayPointValue=function(t,e,r){var a=e._arrayAttrs;if(a)for(var s=0;s<a.length;s++){var l=a[s],c=i(l);if(void 0===t[c]){var u=o(n.nestedProperty(e,l).get(),r);void 0!==u&&(t[c]=u)}}},r.appendArrayMultiPointValues=function(t,e,r){var a=e._arrayAttrs;if(a)for(var s=0;s<a.length;s++){var l=a[s],c=i(l);if(void 0===t[c]){for(var u=n.nestedProperty(e,l).get(),h=new Array(r.length),f=0;f<r.length;f++)h[f]=o(u,r[f]);t[c]=h}}};var a={ids:\"id\",locations:\"location\",labels:\"label\",values:\"value\",\"marker.colors\":\"color\",parents:\"parent\"};function i(t){return a[t]||t}function o(t,e){return Array.isArray(e)?Array.isArray(t)&&Array.isArray(t[e[0]])?t[e[0]][e[1]]:void 0:t[e]}},{\"../../lib\":719}],630:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"fast-isnumeric\"),i=t(\"tinycolor2\"),o=t(\"../../lib\"),s=t(\"../../lib/events\"),l=t(\"../../lib/svg_text_utils\"),c=t(\"../../lib/override_cursor\"),u=t(\"../drawing\"),h=t(\"../color\"),f=t(\"../dragelement\"),p=t(\"../../plots/cartesian/axes\"),d=t(\"../../registry\"),g=t(\"./helpers\"),v=t(\"./constants\"),m=v.YANGLE,y=Math.PI*m/180,x=1/Math.sin(y),b=Math.cos(y),_=Math.sin(y),w=v.HOVERARROWSIZE,k=v.HOVERTEXTPAD;r.hover=function(t,e,r,i){t=o.getGraphDiv(t),o.throttle(t._fullLayout._uid+v.HOVERID,v.HOVERMINTIME,function(){!function(t,e,r,i){r||(r=\"xy\");var l=Array.isArray(r)?r:[r],u=t._fullLayout,p=u._plots||[],v=p[r],m=u._has(\"cartesian\");if(v){var y=v.overlays.map(function(t){return t.id});l=l.concat(y)}for(var b=l.length,_=new Array(b),w=new Array(b),k=!1,T=0;T<b;T++){var L=l[T];if(p[L])k=!0,_[T]=p[L].xaxis,w[T]=p[L].yaxis;else{if(!u[L]||!u[L]._subplot)return void o.warn(\"Unrecognized subplot: \"+L);var P=u[L]._subplot;_[T]=P.xaxis,w[T]=P.yaxis}}var O=e.hovermode||u.hovermode;O&&!k&&(O=\"closest\");if(-1===[\"x\",\"y\",\"closest\"].indexOf(O)||!t.calcdata||t.querySelector(\".zoombox\")||t._dragging)return f.unhoverRaw(t,e);var I,z,D,R,F,B,N,j,V,U,q,H,G,Y=-1===u.hoverdistance?1/0:u.hoverdistance,W=-1===u.spikedistance?1/0:u.spikedistance,X=[],Z=[],J={hLinePoint:null,vLinePoint:null},K=!1;if(Array.isArray(e))for(O=\"array\",D=0;D<e.length;D++)(F=t.calcdata[e[D].curveNumber||0])&&(B=F[0].trace,\"skip\"!==F[0].trace.hoverinfo&&(Z.push(F),\"h\"===B.orientation&&(K=!0)));else{for(R=0;R<t.calcdata.length;R++)F=t.calcdata[R],\"skip\"!==(B=F[0].trace).hoverinfo&&g.isTraceInSubplots(B,l)&&(Z.push(F),\"h\"===B.orientation&&(K=!0));var Q,$,tt=!e.target;if(tt)Q=\"xpx\"in e?e.xpx:_[0]._length/2,$=\"ypx\"in e?e.ypx:w[0]._length/2;else{if(!1===s.triggerHandler(t,\"plotly_beforehover\",e))return;var et=e.target.getBoundingClientRect();if(Q=e.clientX-et.left,$=e.clientY-et.top,Q<0||Q>_[0]._length||$<0||$>w[0]._length)return f.unhoverRaw(t,e)}if(e.pointerX=Q+_[0]._offset,e.pointerY=$+w[0]._offset,I=\"xval\"in e?g.flat(l,e.xval):g.p2c(_,Q),z=\"yval\"in e?g.flat(l,e.yval):g.p2c(w,$),!a(I[0])||!a(z[0]))return o.warn(\"Fx.hover failed\",e,t),f.unhoverRaw(t,e)}var rt=1/0;for(R=0;R<Z.length;R++)if((F=Z[R])&&F[0]&&F[0].trace&&!0===(B=F[0].trace).visible&&0!==B._length&&-1===[\"carpet\",\"contourcarpet\"].indexOf(B._module.name)){if(\"splom\"===B.type?N=l[j=0]:(N=g.getSubplot(B),j=l.indexOf(N)),V=O,H={cd:F,trace:B,xa:_[j],ya:w[j],maxHoverDistance:Y,maxSpikeDistance:W,index:!1,distance:Math.min(rt,Y),spikeDistance:1/0,xSpike:void 0,ySpike:void 0,color:h.defaultLine,name:B.name,x0:void 0,x1:void 0,y0:void 0,y1:void 0,xLabelVal:void 0,yLabelVal:void 0,zLabelVal:void 0,text:void 0},u[N]&&(H.subplot=u[N]._subplot),u._splomScenes&&u._splomScenes[B.uid]&&(H.scene=u._splomScenes[B.uid]),G=X.length,\"array\"===V){var nt=e[R];\"pointNumber\"in nt?(H.index=nt.pointNumber,V=\"closest\"):(V=\"\",\"xval\"in nt&&(U=nt.xval,V=\"x\"),\"yval\"in nt&&(q=nt.yval,V=V?\"closest\":\"y\"))}else U=I[j],q=z[j];if(0!==Y)if(B._module&&B._module.hoverPoints){var at=B._module.hoverPoints(H,U,q,V,u._hoverlayer);if(at)for(var it,ot=0;ot<at.length;ot++)it=at[ot],a(it.x0)&&a(it.y0)&&X.push(S(it,O))}else o.log(\"Unrecognized trace type in hover:\",B);if(\"closest\"===O&&X.length>G&&(X.splice(0,G),rt=X[0].distance),m&&0!==W&&0===X.length){H.distance=W,H.index=!1;var st=B._module.hoverPoints(H,U,q,\"closest\",u._hoverlayer);if(st&&(st=st.filter(function(t){return t.spikeDistance<=W})),st&&st.length){var lt,ct=st.filter(function(t){return t.xa.showspikes});if(ct.length){var ut=ct[0];a(ut.x0)&&a(ut.y0)&&(lt=dt(ut),(!J.vLinePoint||J.vLinePoint.spikeDistance>lt.spikeDistance)&&(J.vLinePoint=lt))}var ht=st.filter(function(t){return t.ya.showspikes});if(ht.length){var ft=ht[0];a(ft.x0)&&a(ft.y0)&&(lt=dt(ft),(!J.hLinePoint||J.hLinePoint.spikeDistance>lt.spikeDistance)&&(J.hLinePoint=lt))}}}}function pt(t,e){for(var r,n=null,a=1/0,i=0;i<t.length;i++)(r=t[i].spikeDistance)<a&&r<=e&&(n=t[i],a=r);return n}function dt(t){return t?{xa:t.xa,ya:t.ya,x:void 0!==t.xSpike?t.xSpike:(t.x0+t.x1)/2,y:void 0!==t.ySpike?t.ySpike:(t.y0+t.y1)/2,distance:t.distance,spikeDistance:t.spikeDistance,curveNumber:t.trace.index,color:t.color,pointNumber:t.index}:null}var gt={fullLayout:u,container:u._hoverlayer,outerContainer:u._paperdiv,event:e},vt=t._spikepoints,mt={vLinePoint:J.vLinePoint,hLinePoint:J.hLinePoint};if(t._spikepoints=mt,m&&0!==W&&0!==X.length){var yt=X.filter(function(t){return t.ya.showspikes}),xt=pt(yt,W);J.hLinePoint=dt(xt);var bt=X.filter(function(t){return t.xa.showspikes}),_t=pt(bt,W);J.vLinePoint=dt(_t)}if(0===X.length){var wt=f.unhoverRaw(t,e);return!m||null===J.hLinePoint&&null===J.vLinePoint||C(vt)&&E(t,J,gt),wt}m&&C(vt)&&E(t,J,gt);X.sort(function(t,e){return t.distance-e.distance});var kt=t._hoverdata,Tt=[];for(D=0;D<X.length;D++){var At=X[D],Mt=g.makeEventData(At,At.trace,At.cd);if(!1!==At.hovertemplate){var St=!1;At.cd[At.index]&&At.cd[At.index].ht&&(St=At.cd[At.index].ht),At.hovertemplate=St||At.trace.hovertemplate||!1}At.eventData=[Mt],Tt.push(Mt)}t._hoverdata=Tt;var Et=\"y\"===O&&(Z.length>1||X.length>1)||\"closest\"===O&&K&&X.length>1,Ct=h.combine(u.plot_bgcolor||h.background,u.paper_bgcolor),Lt={hovermode:O,rotateLabels:Et,bgColor:Ct,container:u._hoverlayer,outerContainer:u._paperdiv,commonLabelOpts:u.hoverlabel,hoverdistance:u.hoverdistance},Pt=A(X,Lt,t);if(function(t,e,r){var n,a,i,o,s,l,c,u=0,h=1,f=t.size(),p=new Array(f),d=0;function g(t){var e=t[0],r=t[t.length-1];if(a=e.pmin-e.pos-e.dp+e.size,i=r.pos+r.dp+r.size-e.pmax,a>.01){for(s=t.length-1;s>=0;s--)t[s].dp+=a;n=!1}if(!(i<.01)){if(a<-.01){for(s=t.length-1;s>=0;s--)t[s].dp-=i;n=!1}if(n){var c=0;for(o=0;o<t.length;o++)(l=t[o]).pos+l.dp+l.size>e.pmax&&c++;for(o=t.length-1;o>=0&&!(c<=0);o--)(l=t[o]).pos>e.pmax-1&&(l.del=!0,c--);for(o=0;o<t.length&&!(c<=0);o++)if((l=t[o]).pos<e.pmin+1)for(l.del=!0,c--,i=2*l.size,s=t.length-1;s>=0;s--)t[s].dp-=i;for(o=t.length-1;o>=0&&!(c<=0);o--)(l=t[o]).pos+l.dp+l.size>e.pmax&&(l.del=!0,c--)}}}for(t.each(function(t){var n=t[e],a=\"x\"===n._id.charAt(0),i=n.range;0===d&&i&&i[0]>i[1]!==a&&(h=-1),p[d++]=[{datum:t,traceIndex:t.trace.index,dp:0,pos:t.pos,posref:t.posref,size:t.by*(a?x:1)/2,pmin:0,pmax:a?r.width:r.height}]}),p.sort(function(t,e){return t[0].posref-e[0].posref||h*(e[0].traceIndex-t[0].traceIndex)});!n&&u<=f;){for(u++,n=!0,o=0;o<p.length-1;){var v=p[o],m=p[o+1],y=v[v.length-1],b=m[0];if((a=y.pos+y.dp+y.size-b.pos-b.dp+b.size)>.01&&y.pmin===b.pmin&&y.pmax===b.pmax){for(s=m.length-1;s>=0;s--)m[s].dp+=a;for(v.push.apply(v,m),p.splice(o+1,1),c=0,s=v.length-1;s>=0;s--)c+=v[s].dp;for(i=c/v.length,s=v.length-1;s>=0;s--)v[s].dp-=i;n=!1}else o++}p.forEach(g)}for(o=p.length-1;o>=0;o--){var _=p[o];for(s=_.length-1;s>=0;s--){var w=_[s],k=w.datum;k.offset=w.dp,k.del=w.del}}}(Pt,Et?\"xa\":\"ya\",u),M(Pt,Et),e.target&&e.target.tagName){var Ot=d.getComponentMethod(\"annotations\",\"hasClickToShow\")(t,Tt);c(n.select(e.target),Ot?\"pointer\":\"\")}if(!e.target||i||!function(t,e,r){if(!r||r.length!==t._hoverdata.length)return!0;for(var n=r.length-1;n>=0;n--){var a=r[n],i=t._hoverdata[n];if(a.curveNumber!==i.curveNumber||String(a.pointNumber)!==String(i.pointNumber)||String(a.pointNumbers)!==String(i.pointNumbers))return!0}return!1}(t,0,kt))return;kt&&t.emit(\"plotly_unhover\",{event:e,points:kt});t.emit(\"plotly_hover\",{event:e,points:t._hoverdata,xaxes:_,yaxes:w,xvals:I,yvals:z})}(t,e,r,i)})},r.loneHover=function(t,e){var r=!0;Array.isArray(t)||(r=!1,t=[t]);var a=t.map(function(t){return{color:t.color||h.defaultLine,x0:t.x0||t.x||0,x1:t.x1||t.x||0,y0:t.y0||t.y||0,y1:t.y1||t.y||0,xLabel:t.xLabel,yLabel:t.yLabel,zLabel:t.zLabel,text:t.text,name:t.name,idealAlign:t.idealAlign,borderColor:t.borderColor,fontFamily:t.fontFamily,fontSize:t.fontSize,fontColor:t.fontColor,nameLength:t.nameLength,textAlign:t.textAlign,trace:t.trace||{index:0,hoverinfo:\"\"},xa:{_offset:0},ya:{_offset:0},index:0,hovertemplate:t.hovertemplate||!1,eventData:t.eventData||!1,hovertemplateLabels:t.hovertemplateLabels||!1}}),i=n.select(e.container),o=e.outerContainer?n.select(e.outerContainer):i,s={hovermode:\"closest\",rotateLabels:!1,bgColor:e.bgColor||h.background,container:i,outerContainer:o},l=A(a,s,e.gd),c=0,u=0;return l.sort(function(t,e){return t.y0-e.y0}).each(function(t,r){var n=t.y0-t.by/2;t.offset=n-5<c?c-n+5:0,c=n+t.by+t.offset,r===e.anchorIndex&&(u=t.offset)}).each(function(t){t.offset-=u}),M(l,s.rotateLabels),r?l:l.node()};var T=/<extra>([\\s\\S]*)<\\/extra>/;function A(t,e,r){var a=r._fullLayout,i=e.hovermode,s=e.rotateLabels,c=e.bgColor,f=e.container,p=e.outerContainer,d=e.commonLabelOpts||{},g=e.fontFamily||v.HOVERFONT,y=e.fontSize||v.HOVERFONTSIZE,x=t[0],b=x.xa,_=x.ya,A=\"y\"===i?\"yLabel\":\"xLabel\",M=x[A],S=(String(M)||\"\").split(\" \")[0],E=p.node().getBoundingClientRect(),C=E.top,P=E.width,O=E.height,I=void 0!==M&&x.distance<=e.hoverdistance&&(\"x\"===i||\"y\"===i);if(I){var z,D,R=!0;for(z=0;z<t.length;z++)if(R&&void 0===t[z].zLabel&&(R=!1),D=t[z].hoverinfo||t[z].trace.hoverinfo){var F=Array.isArray(D)?D:D.split(\"+\");if(-1===F.indexOf(\"all\")&&-1===F.indexOf(i)){I=!1;break}}R&&(I=!1)}var B=f.selectAll(\"g.axistext\").data(I?[0]:[]);B.enter().append(\"g\").classed(\"axistext\",!0),B.exit().remove(),B.each(function(){var e=n.select(this),a=o.ensureSingle(e,\"path\",\"\",function(t){t.style({\"stroke-width\":\"1px\"})}),s=o.ensureSingle(e,\"text\",\"\",function(t){t.attr(\"data-notex\",1)}),c=d.bgcolor||h.defaultLine,f=d.bordercolor||h.contrast(c),p=h.contrast(c);a.style({fill:c,stroke:f}),s.text(M).call(u.font,d.font.family||g,d.font.size||y,d.font.color||p).call(l.positionText,0,0).call(l.convertToTspans,r),e.attr(\"transform\",\"\");var v=s.node().getBoundingClientRect();if(\"x\"===i){s.attr(\"text-anchor\",\"middle\").call(l.positionText,0,\"top\"===b.side?C-v.bottom-w-k:C-v.top+w+k);var m=\"top\"===b.side?\"-\":\"\";a.attr(\"d\",\"M0,0L\"+w+\",\"+m+w+\"H\"+(k+v.width/2)+\"v\"+m+(2*k+v.height)+\"H-\"+(k+v.width/2)+\"V\"+m+w+\"H-\"+w+\"Z\"),e.attr(\"transform\",\"translate(\"+(b._offset+(x.x0+x.x1)/2)+\",\"+(_._offset+(\"top\"===b.side?0:_._length))+\")\")}else{s.attr(\"text-anchor\",\"right\"===_.side?\"start\":\"end\").call(l.positionText,(\"right\"===_.side?1:-1)*(k+w),C-v.top-v.height/2);var T=\"right\"===_.side?\"\":\"-\";a.attr(\"d\",\"M0,0L\"+T+w+\",\"+w+\"V\"+(k+v.height/2)+\"h\"+T+(2*k+v.width)+\"V-\"+(k+v.height/2)+\"H\"+T+w+\"V-\"+w+\"Z\"),e.attr(\"transform\",\"translate(\"+(b._offset+(\"right\"===_.side?b._length:0))+\",\"+(_._offset+(x.y0+x.y1)/2)+\")\")}t=t.filter(function(t){return void 0!==t.zLabelVal||(t[A]||\"\").split(\" \")[0]===S})});var N=f.selectAll(\"g.hovertext\").data(t,function(t){return[t.trace.index,t.index,t.x0,t.y0,t.name,t.attr,t.xa,t.ya||\"\"].join(\",\")});return N.enter().append(\"g\").classed(\"hovertext\",!0).each(function(){var t=n.select(this);t.append(\"rect\").call(h.fill,h.addOpacity(c,.8)),t.append(\"text\").classed(\"name\",!0),t.append(\"path\").style(\"stroke-width\",\"1px\"),t.append(\"text\").classed(\"nums\",!0).call(u.font,g,y)}),N.exit().remove(),N.each(function(t){var e=n.select(this).attr(\"transform\",\"\"),f=\"\",p=\"\",d=t.bgcolor||t.color,v=h.combine(h.opacity(d)?d:h.defaultLine,c),x=h.combine(h.opacity(t.color)?t.color:h.defaultLine,c),b=t.borderColor||h.contrast(v);void 0!==t.nameOverride&&(t.name=t.nameOverride),t.name&&(t.trace._meta&&(t.name=o.templateString(t.name,t.trace._meta)),f=L(t.name,t.nameLength)),void 0!==t.zLabel?(void 0!==t.xLabel&&(p+=\"x: \"+t.xLabel+\"<br>\"),void 0!==t.yLabel&&(p+=\"y: \"+t.yLabel+\"<br>\"),\"choropleth\"!==t.trace.type&&\"choroplethmapbox\"!==t.trace.type&&(p+=(p?\"z: \":\"\")+t.zLabel)):I&&t[i+\"Label\"]===M?p=t[(\"x\"===i?\"y\":\"x\")+\"Label\"]||\"\":void 0===t.xLabel?void 0!==t.yLabel&&\"scattercarpet\"!==t.trace.type&&(p=t.yLabel):p=void 0===t.yLabel?t.xLabel:\"(\"+t.xLabel+\", \"+t.yLabel+\")\",!t.text&&0!==t.text||Array.isArray(t.text)||(p+=(p?\"<br>\":\"\")+t.text),void 0!==t.extraText&&(p+=(p?\"<br>\":\"\")+t.extraText),\"\"!==p||t.hovertemplate||(\"\"===f&&e.remove(),p=f);var _=a._d3locale,A=t.hovertemplate||!1,S=t.hovertemplateLabels||t,E=t.eventData[0]||{};A&&(p=(p=o.hovertemplateString(A,S,_,E,t.trace._meta)).replace(T,function(e,r){return f=L(r,t.nameLength),\"\"}));var z=e.select(\"text.nums\").call(u.font,t.fontFamily||g,t.fontSize||y,t.fontColor||b).text(p).attr(\"data-notex\",1).call(l.positionText,0,0).call(l.convertToTspans,r),D=e.select(\"text.name\"),R=0,F=0;if(f&&f!==p){D.call(u.font,t.fontFamily||g,t.fontSize||y,x).text(f).attr(\"data-notex\",1).call(l.positionText,0,0).call(l.convertToTspans,r);var B=D.node().getBoundingClientRect();R=B.width+2*k,F=B.height+2*k}else D.remove(),e.select(\"rect\").remove();e.select(\"path\").style({fill:v,stroke:b});var N,j,V=z.node().getBoundingClientRect(),U=t.xa._offset+(t.x0+t.x1)/2,q=t.ya._offset+(t.y0+t.y1)/2,H=Math.abs(t.x1-t.x0),G=Math.abs(t.y1-t.y0),Y=V.width+w+k+R;if(t.ty0=C-V.top,t.bx=V.width+2*k,t.by=Math.max(V.height+2*k,F),t.anchor=\"start\",t.txwidth=V.width,t.tx2width=R,t.offset=0,s)t.pos=U,N=q+G/2+Y<=O,j=q-G/2-Y>=0,\"top\"!==t.idealAlign&&N||!j?N?(q+=G/2,t.anchor=\"start\"):t.anchor=\"middle\":(q-=G/2,t.anchor=\"end\");else if(t.pos=q,N=U+H/2+Y<=P,j=U-H/2-Y>=0,\"left\"!==t.idealAlign&&N||!j)if(N)U+=H/2,t.anchor=\"start\";else{t.anchor=\"middle\";var W=Y/2,X=U+W-P,Z=U-W;X>0&&(U-=X),Z<0&&(U+=-Z)}else U-=H/2,t.anchor=\"end\";z.attr(\"text-anchor\",t.anchor),R&&D.attr(\"text-anchor\",t.anchor),e.attr(\"transform\",\"translate(\"+U+\",\"+q+\")\"+(s?\"rotate(\"+m+\")\":\"\"))}),N}function M(t,e){t.each(function(t){var r=n.select(this);if(t.del)return r.remove();var a=r.select(\"text.nums\"),i=t.anchor,o=\"end\"===i?-1:1,s={start:1,end:-1,middle:0}[i],c=s*(w+k),h=c+s*(t.txwidth+k),f=0,p=t.offset;\"middle\"===i&&(c-=t.tx2width/2,h+=t.txwidth/2+k),e&&(p*=-_,f=t.offset*b),r.select(\"path\").attr(\"d\",\"middle\"===i?\"M-\"+(t.bx/2+t.tx2width/2)+\",\"+(p-t.by/2)+\"h\"+t.bx+\"v\"+t.by+\"h-\"+t.bx+\"Z\":\"M0,0L\"+(o*w+f)+\",\"+(w+p)+\"v\"+(t.by/2-w)+\"h\"+o*t.bx+\"v-\"+t.by+\"H\"+(o*w+f)+\"V\"+(p-w)+\"Z\");var d=c+f,g=p+t.ty0-t.by/2+k,v=t.textAlign||\"auto\";\"auto\"!==v&&(\"left\"===v&&\"start\"!==i?(a.attr(\"text-anchor\",\"start\"),d=\"middle\"===i?-t.bx/2-t.tx2width/2+k:-t.bx-k):\"right\"===v&&\"end\"!==i&&(a.attr(\"text-anchor\",\"end\"),d=\"middle\"===i?t.bx/2-t.tx2width/2-k:t.bx+k)),a.call(l.positionText,d,g),t.tx2width&&(r.select(\"text.name\").call(l.positionText,h+s*k+f,p+t.ty0-t.by/2+k),r.select(\"rect\").call(u.setRect,h+(s-1)*t.tx2width/2+f,p-t.by/2-1,t.tx2width,t.by+2))})}function S(t,e){var r=t.index,n=t.trace||{},i=t.cd[0],s=t.cd[r]||{};function l(t){return t||a(t)&&0===t}var c=Array.isArray(r)?function(t,e){var a=o.castOption(i,r,t);return l(a)?a:o.extractOption({},n,\"\",e)}:function(t,e){return o.extractOption(s,n,t,e)};function u(e,r,n){var a=c(r,n);l(a)&&(t[e]=a)}if(u(\"hoverinfo\",\"hi\",\"hoverinfo\"),u(\"bgcolor\",\"hbg\",\"hoverlabel.bgcolor\"),u(\"borderColor\",\"hbc\",\"hoverlabel.bordercolor\"),u(\"fontFamily\",\"htf\",\"hoverlabel.font.family\"),u(\"fontSize\",\"hts\",\"hoverlabel.font.size\"),u(\"fontColor\",\"htc\",\"hoverlabel.font.color\"),u(\"nameLength\",\"hnl\",\"hoverlabel.namelength\"),u(\"textAlign\",\"hta\",\"hoverlabel.align\"),t.posref=\"y\"===e||\"closest\"===e&&\"h\"===n.orientation?t.xa._offset+(t.x0+t.x1)/2:t.ya._offset+(t.y0+t.y1)/2,t.x0=o.constrain(t.x0,0,t.xa._length),t.x1=o.constrain(t.x1,0,t.xa._length),t.y0=o.constrain(t.y0,0,t.ya._length),t.y1=o.constrain(t.y1,0,t.ya._length),void 0!==t.xLabelVal&&(t.xLabel=\"xLabel\"in t?t.xLabel:p.hoverLabelText(t.xa,t.xLabelVal),t.xVal=t.xa.c2d(t.xLabelVal)),void 0!==t.yLabelVal&&(t.yLabel=\"yLabel\"in t?t.yLabel:p.hoverLabelText(t.ya,t.yLabelVal),t.yVal=t.ya.c2d(t.yLabelVal)),void 0!==t.zLabelVal&&void 0===t.zLabel&&(t.zLabel=String(t.zLabelVal)),!(isNaN(t.xerr)||\"log\"===t.xa.type&&t.xerr<=0)){var h=p.tickText(t.xa,t.xa.c2l(t.xerr),\"hover\").text;void 0!==t.xerrneg?t.xLabel+=\" +\"+h+\" / -\"+p.tickText(t.xa,t.xa.c2l(t.xerrneg),\"hover\").text:t.xLabel+=\" \\xb1 \"+h,\"x\"===e&&(t.distance+=1)}if(!(isNaN(t.yerr)||\"log\"===t.ya.type&&t.yerr<=0)){var f=p.tickText(t.ya,t.ya.c2l(t.yerr),\"hover\").text;void 0!==t.yerrneg?t.yLabel+=\" +\"+f+\" / -\"+p.tickText(t.ya,t.ya.c2l(t.yerrneg),\"hover\").text:t.yLabel+=\" \\xb1 \"+f,\"y\"===e&&(t.distance+=1)}var d=t.hoverinfo||t.trace.hoverinfo;return d&&\"all\"!==d&&(-1===(d=Array.isArray(d)?d:d.split(\"+\")).indexOf(\"x\")&&(t.xLabel=void 0),-1===d.indexOf(\"y\")&&(t.yLabel=void 0),-1===d.indexOf(\"z\")&&(t.zLabel=void 0),-1===d.indexOf(\"text\")&&(t.text=void 0),-1===d.indexOf(\"name\")&&(t.name=void 0)),t}function E(t,e,r){var n,a,o=r.container,s=r.fullLayout,l=s._size,c=r.event,f=!!e.hLinePoint,d=!!e.vLinePoint;if(o.selectAll(\".spikeline\").remove(),d||f){var g=h.combine(s.plot_bgcolor,s.paper_bgcolor);if(f){var v,m,y=e.hLinePoint;n=y&&y.xa,\"cursor\"===(a=y&&y.ya).spikesnap?(v=c.pointerX,m=c.pointerY):(v=n._offset+y.x,m=a._offset+y.y);var x,b,_=i.readability(y.color,g)<1.5?h.contrast(g):y.color,w=a.spikemode,k=a.spikethickness,T=a.spikecolor||_,A=p.getPxPosition(t,a);if(-1!==w.indexOf(\"toaxis\")||-1!==w.indexOf(\"across\")){if(-1!==w.indexOf(\"toaxis\")&&(x=A,b=v),-1!==w.indexOf(\"across\")){var M=a._counterDomainMin,S=a._counterDomainMax;\"free\"===a.anchor&&(M=Math.min(M,a.position),S=Math.max(S,a.position)),x=l.l+M*l.w,b=l.l+S*l.w}o.insert(\"line\",\":first-child\").attr({x1:x,x2:b,y1:m,y2:m,\"stroke-width\":k,stroke:T,\"stroke-dasharray\":u.dashStyle(a.spikedash,k)}).classed(\"spikeline\",!0).classed(\"crisp\",!0),o.insert(\"line\",\":first-child\").attr({x1:x,x2:b,y1:m,y2:m,\"stroke-width\":k+2,stroke:g}).classed(\"spikeline\",!0).classed(\"crisp\",!0)}-1!==w.indexOf(\"marker\")&&o.insert(\"circle\",\":first-child\").attr({cx:A+(\"right\"!==a.side?k:-k),cy:m,r:k,fill:T}).classed(\"spikeline\",!0)}if(d){var E,C,L=e.vLinePoint;n=L&&L.xa,a=L&&L.ya,\"cursor\"===n.spikesnap?(E=c.pointerX,C=c.pointerY):(E=n._offset+L.x,C=a._offset+L.y);var P,O,I=i.readability(L.color,g)<1.5?h.contrast(g):L.color,z=n.spikemode,D=n.spikethickness,R=n.spikecolor||I,F=p.getPxPosition(t,n);if(-1!==z.indexOf(\"toaxis\")||-1!==z.indexOf(\"across\")){if(-1!==z.indexOf(\"toaxis\")&&(P=F,O=C),-1!==z.indexOf(\"across\")){var B=n._counterDomainMin,N=n._counterDomainMax;\"free\"===n.anchor&&(B=Math.min(B,n.position),N=Math.max(N,n.position)),P=l.t+(1-N)*l.h,O=l.t+(1-B)*l.h}o.insert(\"line\",\":first-child\").attr({x1:E,x2:E,y1:P,y2:O,\"stroke-width\":D,stroke:R,\"stroke-dasharray\":u.dashStyle(n.spikedash,D)}).classed(\"spikeline\",!0).classed(\"crisp\",!0),o.insert(\"line\",\":first-child\").attr({x1:E,x2:E,y1:P,y2:O,\"stroke-width\":D+2,stroke:g}).classed(\"spikeline\",!0).classed(\"crisp\",!0)}-1!==z.indexOf(\"marker\")&&o.insert(\"circle\",\":first-child\").attr({cx:E,cy:F-(\"top\"!==n.side?D:-D),r:D,fill:R}).classed(\"spikeline\",!0)}}}function C(t,e){return!e||(e.vLinePoint!==t._spikepoints.vLinePoint||e.hLinePoint!==t._spikepoints.hLinePoint)}function L(t,e){return l.plainText(t||\"\",{len:e,allowedTags:[\"br\",\"sub\",\"sup\",\"b\",\"i\",\"em\"]})}},{\"../../lib\":719,\"../../lib/events\":709,\"../../lib/override_cursor\":730,\"../../lib/svg_text_utils\":743,\"../../plots/cartesian/axes\":767,\"../../registry\":848,\"../color\":594,\"../dragelement\":612,\"../drawing\":615,\"./constants\":627,\"./helpers\":629,d3:164,\"fast-isnumeric\":226,tinycolor2:538}],631:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e,r,a){r(\"hoverlabel.bgcolor\",(a=a||{}).bgcolor),r(\"hoverlabel.bordercolor\",a.bordercolor),r(\"hoverlabel.namelength\",a.namelength),n.coerceFont(r,\"hoverlabel.font\",a.font),r(\"hoverlabel.align\",a.align)}},{\"../../lib\":719}],632:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../lib\"),i=t(\"../dragelement\"),o=t(\"./helpers\"),s=t(\"./layout_attributes\"),l=t(\"./hover\");e.exports={moduleType:\"component\",name:\"fx\",constants:t(\"./constants\"),schema:{layout:s},attributes:t(\"./attributes\"),layoutAttributes:s,supplyLayoutGlobalDefaults:t(\"./layout_global_defaults\"),supplyDefaults:t(\"./defaults\"),supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\"),getDistanceFunction:o.getDistanceFunction,getClosest:o.getClosest,inbox:o.inbox,quadrature:o.quadrature,appendArrayPointValue:o.appendArrayPointValue,castHoverOption:function(t,e,r){return a.castOption(t,e,\"hoverlabel.\"+r)},castHoverinfo:function(t,e,r){return a.castOption(t,r,\"hoverinfo\",function(r){return a.coerceHoverinfo({hoverinfo:r},{_module:t._module},e)})},hover:l.hover,unhover:i.unhover,loneHover:l.loneHover,loneUnhover:function(t){var e=a.isD3Selection(t)?t:n.select(t);e.selectAll(\"g.hovertext\").remove(),e.selectAll(\".spikeline\").remove()},click:t(\"./click\")}},{\"../../lib\":719,\"../dragelement\":612,\"./attributes\":624,\"./calc\":625,\"./click\":626,\"./constants\":627,\"./defaults\":628,\"./helpers\":629,\"./hover\":630,\"./layout_attributes\":633,\"./layout_defaults\":634,\"./layout_global_defaults\":635,d3:164}],633:[function(t,e,r){\"use strict\";var n=t(\"./constants\"),a=t(\"../../plots/font_attributes\")({editType:\"none\"});a.family.dflt=n.HOVERFONT,a.size.dflt=n.HOVERFONTSIZE,e.exports={clickmode:{valType:\"flaglist\",flags:[\"event\",\"select\"],dflt:\"event\",editType:\"plot\",extras:[\"none\"]},dragmode:{valType:\"enumerated\",values:[\"zoom\",\"pan\",\"select\",\"lasso\",\"orbit\",\"turntable\",!1],dflt:\"zoom\",editType:\"modebar\"},hovermode:{valType:\"enumerated\",values:[\"x\",\"y\",\"closest\",!1],editType:\"modebar\"},hoverdistance:{valType:\"integer\",min:-1,dflt:20,editType:\"none\"},spikedistance:{valType:\"integer\",min:-1,dflt:20,editType:\"none\"},hoverlabel:{bgcolor:{valType:\"color\",editType:\"none\"},bordercolor:{valType:\"color\",editType:\"none\"},font:a,align:{valType:\"enumerated\",values:[\"left\",\"right\",\"auto\"],dflt:\"auto\",editType:\"none\"},namelength:{valType:\"integer\",min:-1,dflt:15,editType:\"none\"},editType:\"none\"},selectdirection:{valType:\"enumerated\",values:[\"h\",\"v\",\"d\",\"any\"],dflt:\"any\",editType:\"none\"}}},{\"../../plots/font_attributes\":793,\"./constants\":627}],634:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./layout_attributes\");e.exports=function(t,e,r){function i(r,i){return n.coerce(t,e,a,r,i)}var o,s=i(\"clickmode\");\"select\"===i(\"dragmode\")&&i(\"selectdirection\"),e._has(\"cartesian\")?s.indexOf(\"select\")>-1?o=\"closest\":(e._isHoriz=function(t,e){for(var r=e._scatterStackOpts||{},n=0;n<t.length;n++){var a=t[n],i=a.xaxis+a.yaxis,o=r[i]||{},s=o[a.stackgroup]||{};if(\"h\"!==a.orientation&&\"h\"!==s.orientation)return!1}return!0}(r,e),o=e._isHoriz?\"y\":\"x\"):o=\"closest\",i(\"hovermode\",o)&&(i(\"hoverdistance\"),i(\"spikedistance\"));var l=e._has(\"mapbox\"),c=e._has(\"geo\"),u=e._basePlotModules.length;\"zoom\"===e.dragmode&&((l||c)&&1===u||l&&c&&2===u)&&(e.dragmode=\"pan\")}},{\"../../lib\":719,\"./layout_attributes\":633}],635:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./hoverlabel_defaults\"),i=t(\"./layout_attributes\");e.exports=function(t,e){a(t,e,function(r,a){return n.coerce(t,e,i,r,a)})}},{\"../../lib\":719,\"./hoverlabel_defaults\":631,\"./layout_attributes\":633}],636:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../lib/regex\").counter,i=t(\"../../plots/domain\").attributes,o=t(\"../../plots/cartesian/constants\").idRegex,s=t(\"../../plot_api/plot_template\"),l={rows:{valType:\"integer\",min:1,editType:\"plot\"},roworder:{valType:\"enumerated\",values:[\"top to bottom\",\"bottom to top\"],dflt:\"top to bottom\",editType:\"plot\"},columns:{valType:\"integer\",min:1,editType:\"plot\"},subplots:{valType:\"info_array\",freeLength:!0,dimensions:2,items:{valType:\"enumerated\",values:[a(\"xy\").toString(),\"\"],editType:\"plot\"},editType:\"plot\"},xaxes:{valType:\"info_array\",freeLength:!0,items:{valType:\"enumerated\",values:[o.x.toString(),\"\"],editType:\"plot\"},editType:\"plot\"},yaxes:{valType:\"info_array\",freeLength:!0,items:{valType:\"enumerated\",values:[o.y.toString(),\"\"],editType:\"plot\"},editType:\"plot\"},pattern:{valType:\"enumerated\",values:[\"independent\",\"coupled\"],dflt:\"coupled\",editType:\"plot\"},xgap:{valType:\"number\",min:0,max:1,editType:\"plot\"},ygap:{valType:\"number\",min:0,max:1,editType:\"plot\"},domain:i({name:\"grid\",editType:\"plot\",noGridCell:!0},{}),xside:{valType:\"enumerated\",values:[\"bottom\",\"bottom plot\",\"top plot\",\"top\"],dflt:\"bottom plot\",editType:\"plot\"},yside:{valType:\"enumerated\",values:[\"left\",\"left plot\",\"right plot\",\"right\"],dflt:\"left plot\",editType:\"plot\"},editType:\"plot\"};function c(t,e,r){var n=e[r+\"axes\"],a=Object.keys((t._splomAxes||{})[r]||{});return Array.isArray(n)?n:a.length?a:void 0}function u(t,e,r,n,a,i){var o=e(t+\"gap\",r),s=e(\"domain.\"+t);e(t+\"side\",n);for(var l=new Array(a),c=s[0],u=(s[1]-c)/(a-o),h=u*(1-o),f=0;f<a;f++){var p=c+u*f;l[i?a-1-f:f]=[p,p+h]}return l}function h(t,e,r,n,a){var i,o=new Array(r);function s(t,r){-1!==e.indexOf(r)&&void 0===n[r]?(o[t]=r,n[r]=t):o[t]=\"\"}if(Array.isArray(t))for(i=0;i<r;i++)s(i,t[i]);else for(s(0,a),i=1;i<r;i++)s(i,a+(i+1));return o}e.exports={moduleType:\"component\",name:\"grid\",schema:{layout:{grid:l}},layoutAttributes:l,sizeDefaults:function(t,e){var r=t.grid||{},a=c(e,r,\"x\"),i=c(e,r,\"y\");if(t.grid||a||i){var o,h,f=Array.isArray(r.subplots)&&Array.isArray(r.subplots[0]),p=Array.isArray(a),d=Array.isArray(i),g=p&&a!==r.xaxes&&d&&i!==r.yaxes;f?(o=r.subplots.length,h=r.subplots[0].length):(d&&(o=i.length),p&&(h=a.length));var v=s.newContainer(e,\"grid\"),m=T(\"rows\",o),y=T(\"columns\",h);if(m*y>1){f||p||d||\"independent\"===T(\"pattern\")&&(f=!0),v._hasSubplotGrid=f;var x,b,_=\"top to bottom\"===T(\"roworder\"),w=f?.2:.1,k=f?.3:.1;g&&e._splomGridDflt&&(x=e._splomGridDflt.xside,b=e._splomGridDflt.yside),v._domains={x:u(\"x\",T,w,x,y),y:u(\"y\",T,k,b,m,_)}}else delete e.grid}function T(t,e){return n.coerce(r,v,l,t,e)}},contentDefaults:function(t,e){var r=e.grid;if(r&&r._domains){var n,a,i,o,s,l,u,f=t.grid||{},p=e._subplots,d=r._hasSubplotGrid,g=r.rows,v=r.columns,m=\"independent\"===r.pattern,y=r._axisMap={};if(d){var x=f.subplots||[];l=r.subplots=new Array(g);var b=1;for(n=0;n<g;n++){var _=l[n]=new Array(v),w=x[n]||[];for(a=0;a<v;a++)if(m?(s=1===b?\"xy\":\"x\"+b+\"y\"+b,b++):s=w[a],_[a]=\"\",-1!==p.cartesian.indexOf(s)){if(u=s.indexOf(\"y\"),i=s.slice(0,u),o=s.slice(u),void 0!==y[i]&&y[i]!==a||void 0!==y[o]&&y[o]!==n)continue;_[a]=s,y[i]=a,y[o]=n}}}else{var k=c(e,f,\"x\"),T=c(e,f,\"y\");r.xaxes=h(k,p.xaxis,v,y,\"x\"),r.yaxes=h(T,p.yaxis,g,y,\"y\")}var A=r._anchors={},M=\"top to bottom\"===r.roworder;for(var S in y){var E,C,L,P=S.charAt(0),O=r[P+\"side\"];if(O.length<8)A[S]=\"free\";else if(\"x\"===P){if(\"t\"===O.charAt(0)===M?(E=0,C=1,L=g):(E=g-1,C=-1,L=-1),d){var I=y[S];for(n=E;n!==L;n+=C)if((s=l[n][I])&&(u=s.indexOf(\"y\"),s.slice(0,u)===S)){A[S]=s.slice(u);break}}else for(n=E;n!==L;n+=C)if(o=r.yaxes[n],-1!==p.cartesian.indexOf(S+o)){A[S]=o;break}}else if(\"l\"===O.charAt(0)?(E=0,C=1,L=v):(E=v-1,C=-1,L=-1),d){var z=y[S];for(n=E;n!==L;n+=C)if((s=l[z][n])&&(u=s.indexOf(\"y\"),s.slice(u)===S)){A[S]=s.slice(0,u);break}}else for(n=E;n!==L;n+=C)if(i=r.xaxes[n],-1!==p.cartesian.indexOf(i+S)){A[S]=i;break}}}}}},{\"../../lib\":719,\"../../lib/regex\":735,\"../../plot_api/plot_template\":757,\"../../plots/cartesian/constants\":773,\"../../plots/domain\":792}],637:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/constants\"),a=t(\"../../plot_api/plot_template\").templatedArray;e.exports=a(\"image\",{visible:{valType:\"boolean\",dflt:!0,editType:\"arraydraw\"},source:{valType:\"string\",editType:\"arraydraw\"},layer:{valType:\"enumerated\",values:[\"below\",\"above\"],dflt:\"above\",editType:\"arraydraw\"},sizex:{valType:\"number\",dflt:0,editType:\"arraydraw\"},sizey:{valType:\"number\",dflt:0,editType:\"arraydraw\"},sizing:{valType:\"enumerated\",values:[\"fill\",\"contain\",\"stretch\"],dflt:\"contain\",editType:\"arraydraw\"},opacity:{valType:\"number\",min:0,max:1,dflt:1,editType:\"arraydraw\"},x:{valType:\"any\",dflt:0,editType:\"arraydraw\"},y:{valType:\"any\",dflt:0,editType:\"arraydraw\"},xanchor:{valType:\"enumerated\",values:[\"left\",\"center\",\"right\"],dflt:\"left\",editType:\"arraydraw\"},yanchor:{valType:\"enumerated\",values:[\"top\",\"middle\",\"bottom\"],dflt:\"top\",editType:\"arraydraw\"},xref:{valType:\"enumerated\",values:[\"paper\",n.idRegex.x.toString()],dflt:\"paper\",editType:\"arraydraw\"},yref:{valType:\"enumerated\",values:[\"paper\",n.idRegex.y.toString()],dflt:\"paper\",editType:\"arraydraw\"},editType:\"arraydraw\"})},{\"../../plot_api/plot_template\":757,\"../../plots/cartesian/constants\":773}],638:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib/to_log_range\");e.exports=function(t,e,r,i){e=e||{};var o=\"log\"===r&&\"linear\"===e.type,s=\"linear\"===r&&\"log\"===e.type;if(o||s)for(var l,c,u=t._fullLayout.images,h=e._id.charAt(0),f=0;f<u.length;f++)if(c=\"images[\"+f+\"].\",(l=u[f])[h+\"ref\"]===e._id){var p=l[h],d=l[\"size\"+h],g=null,v=null;if(o){g=a(p,e.range);var m=d/Math.pow(10,g)/2;v=2*Math.log(m+Math.sqrt(1+m*m))/Math.LN10}else v=(g=Math.pow(10,p))*(Math.pow(10,d/2)-Math.pow(10,-d/2));n(g)?n(v)||(v=null):(g=null,v=null),i(c+h,g),i(c+\"size\"+h,v)}}},{\"../../lib/to_log_range\":745,\"fast-isnumeric\":226}],639:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"../../plots/array_container_defaults\"),o=t(\"./attributes\");function s(t,e,r){function i(r,a){return n.coerce(t,e,o,r,a)}var s=i(\"source\");if(!i(\"visible\",!!s))return e;i(\"layer\"),i(\"xanchor\"),i(\"yanchor\"),i(\"sizex\"),i(\"sizey\"),i(\"sizing\"),i(\"opacity\");for(var l={_fullLayout:r},c=[\"x\",\"y\"],u=0;u<2;u++){var h=c[u],f=a.coerceRef(t,e,l,h,\"paper\");if(\"paper\"!==f)a.getFromId(l,f)._imgIndices.push(e._index);a.coercePosition(e,l,i,f,h,0)}return e}e.exports=function(t,e){i(t,e,{name:\"images\",handleItemDefaults:s})}},{\"../../lib\":719,\"../../plots/array_container_defaults\":763,\"../../plots/cartesian/axes\":767,\"./attributes\":637}],640:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../drawing\"),i=t(\"../../plots/cartesian/axes\"),o=t(\"../../constants/xmlns_namespaces\");e.exports=function(t){var e,r,s=t._fullLayout,l=[],c={},u=[];for(r=0;r<s.images.length;r++){var h=s.images[r];if(h.visible)if(\"below\"===h.layer&&\"paper\"!==h.xref&&\"paper\"!==h.yref){e=h.xref+h.yref;var f=s._plots[e];if(!f){u.push(h);continue}f.mainplot&&(e=f.mainplot.id),c[e]||(c[e]=[]),c[e].push(h)}else\"above\"===h.layer?l.push(h):u.push(h)}var p={x:{left:{sizing:\"xMin\",offset:0},center:{sizing:\"xMid\",offset:-.5},right:{sizing:\"xMax\",offset:-1}},y:{top:{sizing:\"YMin\",offset:0},middle:{sizing:\"YMid\",offset:-.5},bottom:{sizing:\"YMax\",offset:-1}}};function d(e){var r=n.select(this);if(this._imgSrc!==e.source)if(r.attr(\"xmlns\",o.svg),e.source&&\"data:\"===e.source.slice(0,5))r.attr(\"xlink:href\",e.source),this._imgSrc=e.source;else{var a=new Promise(function(t){var n=new Image;function a(){r.remove(),t()}this.img=n,n.setAttribute(\"crossOrigin\",\"anonymous\"),n.onerror=a,n.onload=function(){var e=document.createElement(\"canvas\");e.width=this.width,e.height=this.height,e.getContext(\"2d\").drawImage(this,0,0);var n=e.toDataURL(\"image/png\");r.attr(\"xlink:href\",n),t()},r.on(\"error\",a),n.src=e.source,this._imgSrc=e.source}.bind(this));t._promises.push(a)}}function g(e){var r=n.select(this),o=i.getFromId(t,e.xref),l=i.getFromId(t,e.yref),c=s._size,u=o?Math.abs(o.l2p(e.sizex)-o.l2p(0)):e.sizex*c.w,h=l?Math.abs(l.l2p(e.sizey)-l.l2p(0)):e.sizey*c.h,f=u*p.x[e.xanchor].offset,d=h*p.y[e.yanchor].offset,g=p.x[e.xanchor].sizing+p.y[e.yanchor].sizing,v=(o?o.r2p(e.x)+o._offset:e.x*c.w+c.l)+f,m=(l?l.r2p(e.y)+l._offset:c.h-e.y*c.h+c.t)+d;switch(e.sizing){case\"fill\":g+=\" slice\";break;case\"stretch\":g=\"none\"}r.attr({x:v,y:m,width:u,height:h,preserveAspectRatio:g,opacity:e.opacity});var y=(o?o._id:\"\")+(l?l._id:\"\");a.setClipUrl(r,y?\"clip\"+s._uid+y:null,t)}var v=s._imageLowerLayer.selectAll(\"image\").data(u),m=s._imageUpperLayer.selectAll(\"image\").data(l);v.enter().append(\"image\"),m.enter().append(\"image\"),v.exit().remove(),m.exit().remove(),v.each(function(t){d.bind(this)(t),g.bind(this)(t)}),m.each(function(t){d.bind(this)(t),g.bind(this)(t)});var y=Object.keys(s._plots);for(r=0;r<y.length;r++){e=y[r];var x=s._plots[e];if(x.imagelayer){var b=x.imagelayer.selectAll(\"image\").data(c[e]||[]);b.enter().append(\"image\"),b.exit().remove(),b.each(function(t){d.bind(this)(t),g.bind(this)(t)})}}}},{\"../../constants/xmlns_namespaces\":696,\"../../plots/cartesian/axes\":767,\"../drawing\":615,d3:164}],641:[function(t,e,r){\"use strict\";e.exports={moduleType:\"component\",name:\"images\",layoutAttributes:t(\"./attributes\"),supplyLayoutDefaults:t(\"./defaults\"),includeBasePlot:t(\"../../plots/cartesian/include_components\")(\"images\"),draw:t(\"./draw\"),convertCoords:t(\"./convert_coords\")}},{\"../../plots/cartesian/include_components\":777,\"./attributes\":637,\"./convert_coords\":638,\"./defaults\":639,\"./draw\":640}],642:[function(t,e,r){\"use strict\";var n=t(\"../../plots/font_attributes\"),a=t(\"../color/attributes\");e.exports={bgcolor:{valType:\"color\",editType:\"legend\"},bordercolor:{valType:\"color\",dflt:a.defaultLine,editType:\"legend\"},borderwidth:{valType:\"number\",min:0,dflt:0,editType:\"legend\"},font:n({editType:\"legend\"}),orientation:{valType:\"enumerated\",values:[\"v\",\"h\"],dflt:\"v\",editType:\"legend\"},traceorder:{valType:\"flaglist\",flags:[\"reversed\",\"grouped\"],extras:[\"normal\"],editType:\"legend\"},tracegroupgap:{valType:\"number\",min:0,dflt:10,editType:\"legend\"},itemsizing:{valType:\"enumerated\",values:[\"trace\",\"constant\"],dflt:\"trace\",editType:\"legend\"},itemclick:{valType:\"enumerated\",values:[\"toggle\",\"toggleothers\",!1],dflt:\"toggle\",editType:\"legend\"},itemdoubleclick:{valType:\"enumerated\",values:[\"toggle\",\"toggleothers\",!1],dflt:\"toggleothers\",editType:\"legend\"},x:{valType:\"number\",min:-2,max:3,editType:\"legend\"},xanchor:{valType:\"enumerated\",values:[\"auto\",\"left\",\"center\",\"right\"],dflt:\"left\",editType:\"legend\"},y:{valType:\"number\",min:-2,max:3,editType:\"legend\"},yanchor:{valType:\"enumerated\",values:[\"auto\",\"top\",\"middle\",\"bottom\"],editType:\"legend\"},uirevision:{valType:\"any\",editType:\"none\"},valign:{valType:\"enumerated\",values:[\"top\",\"middle\",\"bottom\"],dflt:\"middle\",editType:\"legend\"},editType:\"legend\"}},{\"../../plots/font_attributes\":793,\"../color/attributes\":593}],643:[function(t,e,r){\"use strict\";e.exports={scrollBarWidth:6,scrollBarMinHeight:20,scrollBarColor:\"#808BA4\",scrollBarMargin:4,scrollBarEnterAttrs:{rx:20,ry:3,width:0,height:0},textGap:40,itemGap:5}},{}],644:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\"),i=t(\"../../plot_api/plot_template\"),o=t(\"./attributes\"),s=t(\"../../plots/layout_attributes\"),l=t(\"./helpers\");e.exports=function(t,e,r){for(var c=t.legend||{},u=0,h=!1,f=\"normal\",p=0;p<r.length;p++){var d=r[p];d.visible&&((d.showlegend||d._dfltShowLegend)&&(u++,d.showlegend&&(h=!0,(n.traceIs(d,\"pie-like\")||!0===d._input.showlegend)&&u++)),(n.traceIs(d,\"bar\")&&\"stack\"===e.barmode||-1!==[\"tonextx\",\"tonexty\"].indexOf(d.fill))&&(f=l.isGrouped({traceorder:f})?\"grouped+reversed\":\"reversed\"),void 0!==d.legendgroup&&\"\"!==d.legendgroup&&(f=l.isReversed({traceorder:f})?\"reversed+grouped\":\"grouped\"))}var g=a.coerce(t,e,s,\"showlegend\",h&&u>1);if(!1!==g||c.uirevision){var v,m,y,x=i.newContainer(e,\"legend\");if(b(\"uirevision\",e.uirevision),!1!==g)b(\"bgcolor\",e.paper_bgcolor),b(\"bordercolor\"),b(\"borderwidth\"),a.coerceFont(b,\"font\",e.font),\"h\"===b(\"orientation\")?(v=0,n.getComponentMethod(\"rangeslider\",\"isVisible\")(t.xaxis)?(m=1.1,y=\"bottom\"):(m=-.1,y=\"top\")):(v=1.02,m=1,y=\"auto\"),b(\"traceorder\",f),l.isGrouped(e.legend)&&b(\"tracegroupgap\"),b(\"itemsizing\"),b(\"itemclick\"),b(\"itemdoubleclick\"),b(\"x\",v),b(\"xanchor\"),b(\"y\",m),b(\"yanchor\",y),b(\"valign\"),a.noneOrAll(c,x,[\"x\",\"y\"])}function b(t,e){return a.coerce(c,x,o,t,e)}}},{\"../../lib\":719,\"../../plot_api/plot_template\":757,\"../../plots/layout_attributes\":819,\"../../registry\":848,\"./attributes\":642,\"./helpers\":648}],645:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../lib\"),i=t(\"../../plots/plots\"),o=t(\"../../registry\"),s=t(\"../../lib/events\"),l=t(\"../dragelement\"),c=t(\"../drawing\"),u=t(\"../color\"),h=t(\"../../lib/svg_text_utils\"),f=t(\"./handle_click\"),p=t(\"./constants\"),d=t(\"../../constants/alignment\"),g=d.LINE_SPACING,v=d.FROM_TL,m=d.FROM_BR,y=t(\"./get_legend_data\"),x=t(\"./style\"),b=t(\"./helpers\");function _(t,e,r,n,a){var i=r.data()[0][0].trace,l={event:a,node:r.node(),curveNumber:i.index,expandedIndex:i._expandedIndex,data:t.data,layout:t.layout,frames:t._transitionData._frames,config:t._context,fullData:t._fullData,fullLayout:t._fullLayout};if(i._group&&(l.group=i._group),o.traceIs(i,\"pie-like\")&&(l.label=r.datum()[0].label),!1!==s.triggerHandler(t,\"plotly_legendclick\",l))if(1===n)e._clickTimeout=setTimeout(function(){f(r,t,n)},t._context.doubleClickDelay);else if(2===n){e._clickTimeout&&clearTimeout(e._clickTimeout),t._legendMouseDownTime=0,!1!==s.triggerHandler(t,\"plotly_legenddoubleclick\",l)&&f(r,t,n)}}function w(t,e){var r=t.data()[0][0],n=e._fullLayout,i=n.legend,s=r.trace,l=o.traceIs(s,\"pie-like\"),u=s.index,f=e._context.edits.legendText&&!l,d=i._maxNameLength,v=l?r.label:s.name;s._meta&&(v=a.templateString(v,s._meta));var m=a.ensureSingle(t,\"text\",\"legendtext\");function y(r){h.convertToTspans(r,e,function(){!function(t,e){var r=t.data()[0][0];if(!r.trace.showlegend)return void t.remove();var n,a,i=t.select(\"g[class*=math-group]\"),o=i.node(),s=e._fullLayout.legend.font.size*g;if(o){var l=c.bBox(o);n=l.height,a=l.width,c.setTranslate(i,0,n/4)}else{var u=t.select(\".legendtext\"),f=h.lineCount(u),d=u.node();n=s*f,a=d?c.bBox(d).width:0;var v=s*(.3+(1-f)/2);h.positionText(u,p.textGap,v)}r.lineHeight=s,r.height=Math.max(n,16)+3,r.width=a}(t,e)})}m.attr(\"text-anchor\",\"start\").classed(\"user-select-none\",!0).call(c.font,n.legend.font).text(f?k(v,d):v),h.positionText(m,p.textGap,0),f?m.call(h.makeEditable,{gd:e,text:v}).call(y).on(\"edit\",function(t){this.text(k(t,d)).call(y);var n=r.trace._fullInput||{},i={};if(o.hasTransform(n,\"groupby\")){var s=o.getTransformIndices(n,\"groupby\"),l=s[s.length-1],c=a.keyedContainer(n,\"transforms[\"+l+\"].styles\",\"target\",\"value.name\");c.set(r.trace._group,t),i=c.constructUpdate()}else i.name=t;return o.call(\"_guiRestyle\",e,i,u)}):y(m)}function k(t,e){var r=Math.max(4,e);if(t&&t.trim().length>=r/2)return t;for(var n=r-(t=t||\"\").length;n>0;n--)t+=\" \";return t}function T(t,e){var r,i=e._context.doubleClickDelay,o=1,s=a.ensureSingle(t,\"rect\",\"legendtoggle\",function(t){t.style(\"cursor\",\"pointer\").attr(\"pointer-events\",\"all\").call(u.fill,\"rgba(0,0,0,0)\")});s.on(\"mousedown\",function(){(r=(new Date).getTime())-e._legendMouseDownTime<i?o+=1:(o=1,e._legendMouseDownTime=r)}),s.on(\"mouseup\",function(){if(!e._dragged&&!e._editing){var r=e._fullLayout.legend;(new Date).getTime()-e._legendMouseDownTime>i&&(o=Math.max(o-1,1)),_(e,r,t,o,n.event)}})}function A(t){return a.isRightAnchor(t)?\"right\":a.isCenterAnchor(t)?\"center\":\"left\"}function M(t){return a.isBottomAnchor(t)?\"bottom\":a.isMiddleAnchor(t)?\"middle\":\"top\"}e.exports=function(t){var e=t._fullLayout,r=\"legend\"+e._uid;if(e._infolayer&&t.calcdata){t._legendMouseDownTime||(t._legendMouseDownTime=0);var s=e.legend,h=e.showlegend&&y(t.calcdata,s),f=e.hiddenlabels||[];if(!e.showlegend||!h.length)return e._infolayer.selectAll(\".legend\").remove(),e._topdefs.select(\"#\"+r).remove(),i.autoMargin(t,\"legend\");var d=a.ensureSingle(e._infolayer,\"g\",\"legend\",function(t){t.attr(\"pointer-events\",\"all\")}),g=a.ensureSingleById(e._topdefs,\"clipPath\",r,function(t){t.append(\"rect\")}),k=a.ensureSingle(d,\"rect\",\"bg\",function(t){t.attr(\"shape-rendering\",\"crispEdges\")});k.call(u.stroke,s.bordercolor).call(u.fill,s.bgcolor).style(\"stroke-width\",s.borderwidth+\"px\");var S=a.ensureSingle(d,\"g\",\"scrollbox\"),E=a.ensureSingle(d,\"rect\",\"scrollbar\",function(t){t.attr(p.scrollBarEnterAttrs).call(u.fill,p.scrollBarColor)}),C=S.selectAll(\"g.groups\").data(h);C.enter().append(\"g\").attr(\"class\",\"groups\"),C.exit().remove();var L=C.selectAll(\"g.traces\").data(a.identity);L.enter().append(\"g\").attr(\"class\",\"traces\"),L.exit().remove(),L.style(\"opacity\",function(t){var e=t[0].trace;return o.traceIs(e,\"pie-like\")?-1!==f.indexOf(t[0].label)?.5:1:\"legendonly\"===e.visible?.5:1}).each(function(){n.select(this).call(w,t)}).call(x,t).each(function(){n.select(this).call(T,t)}),a.syncOrAsync([i.previousPromises,function(){return function(t,e,r){var a=t._fullLayout,i=a.legend,o=a._size,s=b.isVertical(i),l=b.isGrouped(i),u=i.borderwidth,h=2*u,f=p.textGap,d=p.itemGap,g=2*(u+d),v=M(i),m=i.y<0||0===i.y&&\"top\"===v,y=i.y>1||1===i.y&&\"bottom\"===v;i._maxHeight=Math.max(m||y?a.height/2:o.h,30);var x=0;if(i._width=0,i._height=0,s)r.each(function(t){var e=t[0].height;c.setTranslate(this,u,d+u+i._height+e/2),i._height+=e,i._width=Math.max(i._width,t[0].width)}),x=f+i._width,i._width+=d+f+h,i._height+=g,l&&(e.each(function(t,e){c.setTranslate(this,0,e*i.tracegroupgap)}),i._height+=(i._lgroupsLength-1)*i.tracegroupgap);else{var _=A(i),w=i.x<0||0===i.x&&\"right\"===_,k=i.x>1||1===i.x&&\"left\"===_,T=y||m,S=a.width/2;i._maxWidth=Math.max(w?T&&\"left\"===_?o.l+o.w:S:k?T&&\"right\"===_?o.r+o.w:S:o.w,2*f);var E=0,C=0;r.each(function(t){var e=t[0].width+f;E=Math.max(E,e),C+=e}),x=null;var L=0;if(l){var P=0,O=0,I=0;e.each(function(){var t=0,e=0;n.select(this).selectAll(\"g.traces\").each(function(r){var n=r[0].height;c.setTranslate(this,0,d+u+n/2+e),e+=n,t=Math.max(t,f+r[0].width)}),P=Math.max(P,e);var r=t+d;r+u+O>i._maxWidth&&(L=Math.max(L,O),O=0,I+=P+i.tracegroupgap,P=e),c.setTranslate(this,O,I),O+=r}),i._width=Math.max(L,O)+u,i._height=I+P+g}else{var z=r.size(),D=C+h+(z-1)*d<i._maxWidth,R=0,F=0,B=0,N=0;r.each(function(t){var e=t[0].height,r=f+t[0].width,n=(D?r:E)+d;n+u+F>i._maxWidth&&(L=Math.max(L,N),F=0,B+=R,i._height+=R,R=0),c.setTranslate(this,u+F,d+u+e/2+B),N=F+r+d,F+=n,R=Math.max(R,e)}),D?(i._width=F+h,i._height=R+g):(i._width=Math.max(L,N)+h,i._height+=R+g)}}i._width=Math.ceil(i._width),i._height=Math.ceil(i._height),i._effHeight=Math.min(i._height,i._maxHeight);var j=t._context.edits,V=j.legendText||j.legendPosition;r.each(function(t){var e=n.select(this).select(\".legendtoggle\"),r=t[0].height,a=V?f:x||f+t[0].width;s||(a+=d/2),c.setRect(e,0,-r/2,a,r)})}(t,C,L)},function(){if(!function(t){var e=t._fullLayout.legend,r=A(e),n=M(e);return i.autoMargin(t,\"legend\",{x:e.x,y:e.y,l:e._width*v[r],r:e._width*m[r],b:e._effHeight*m[n],t:e._effHeight*v[n]})}(t)){var u,h,f,y,x=e._size,b=s.borderwidth,w=x.l+x.w*s.x-v[A(s)]*s._width,T=x.t+x.h*(1-s.y)-v[M(s)]*s._effHeight;if(e.margin.autoexpand){var C=w,L=T;w=a.constrain(w,0,e.width-s._width),T=a.constrain(T,0,e.height-s._effHeight),w!==C&&a.log(\"Constrain legend.x to make legend fit inside graph\"),T!==L&&a.log(\"Constrain legend.y to make legend fit inside graph\")}if(c.setTranslate(d,w,T),E.on(\".drag\",null),d.on(\"wheel\",null),s._height<=s._maxHeight||t._context.staticPlot)k.attr({width:s._width-b,height:s._effHeight-b,x:b/2,y:b/2}),c.setTranslate(S,0,0),g.select(\"rect\").attr({width:s._width-2*b,height:s._effHeight-2*b,x:b,y:b}),c.setClipUrl(S,r,t),c.setRect(E,0,0,0,0),delete s._scrollY;else{var P,O,I,z=Math.max(p.scrollBarMinHeight,s._effHeight*s._effHeight/s._height),D=s._effHeight-z-2*p.scrollBarMargin,R=s._height-s._effHeight,F=D/R,B=Math.min(s._scrollY||0,R);k.attr({width:s._width-2*b+p.scrollBarWidth+p.scrollBarMargin,height:s._effHeight-b,x:b/2,y:b/2}),g.select(\"rect\").attr({width:s._width-2*b+p.scrollBarWidth+p.scrollBarMargin,height:s._effHeight-2*b,x:b,y:b+B}),c.setClipUrl(S,r,t),V(B,z,F),d.on(\"wheel\",function(){V(B=a.constrain(s._scrollY+n.event.deltaY/D*R,0,R),z,F),0!==B&&B!==R&&n.event.preventDefault()});var N=n.behavior.drag().on(\"dragstart\",function(){var t=n.event.sourceEvent;P=\"touchstart\"===t.type?t.changedTouches[0].clientY:t.clientY,I=B}).on(\"drag\",function(){var t=n.event.sourceEvent;2===t.buttons||t.ctrlKey||(O=\"touchmove\"===t.type?t.changedTouches[0].clientY:t.clientY,V(B=function(t,e,r){var n=(r-e)/F+t;return a.constrain(n,0,R)}(I,P,O),z,F))});E.call(N);var j=n.behavior.drag().on(\"dragstart\",function(){var t=n.event.sourceEvent;\"touchstart\"===t.type&&(P=t.changedTouches[0].clientY,I=B)}).on(\"drag\",function(){var t=n.event.sourceEvent;\"touchmove\"===t.type&&(O=t.changedTouches[0].clientY,V(B=function(t,e,r){var n=(e-r)/F+t;return a.constrain(n,0,R)}(I,P,O),z,F))});S.call(j)}if(t._context.edits.legendPosition)d.classed(\"cursor-move\",!0),l.init({element:d.node(),gd:t,prepFn:function(){var t=c.getTranslate(d);f=t.x,y=t.y},moveFn:function(t,e){var r=f+t,n=y+e;c.setTranslate(d,r,n),u=l.align(r,0,x.l,x.l+x.w,s.xanchor),h=l.align(n,0,x.t+x.h,x.t,s.yanchor)},doneFn:function(){void 0!==u&&void 0!==h&&o.call(\"_guiRelayout\",t,{\"legend.x\":u,\"legend.y\":h})},clickFn:function(r,n){var a=e._infolayer.selectAll(\"g.traces\").filter(function(){var t=this.getBoundingClientRect();return n.clientX>=t.left&&n.clientX<=t.right&&n.clientY>=t.top&&n.clientY<=t.bottom});a.size()>0&&_(t,d,a,r,n)}})}function V(e,r,n){s._scrollY=t._fullLayout.legend._scrollY=e,c.setTranslate(S,0,-e),c.setRect(E,s._width,p.scrollBarMargin+e*n,p.scrollBarWidth,r),g.select(\"rect\").attr(\"y\",b+e)}}],t)}}},{\"../../constants/alignment\":688,\"../../lib\":719,\"../../lib/events\":709,\"../../lib/svg_text_utils\":743,\"../../plots/plots\":828,\"../../registry\":848,\"../color\":594,\"../dragelement\":612,\"../drawing\":615,\"./constants\":643,\"./get_legend_data\":646,\"./handle_click\":647,\"./helpers\":648,\"./style\":650,d3:164}],646:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"./helpers\");e.exports=function(t,e){var r,i,o={},s=[],l=!1,c={},u=0,h=0;function f(t,r){if(\"\"!==t&&a.isGrouped(e))-1===s.indexOf(t)?(s.push(t),l=!0,o[t]=[[r]]):o[t].push([r]);else{var n=\"~~i\"+u;s.push(n),o[n]=[[r]],u++}}for(r=0;r<t.length;r++){var p=t[r],d=p[0],g=d.trace,v=g.legendgroup;if(g.visible&&g.showlegend)if(n.traceIs(g,\"pie-like\"))for(c[v]||(c[v]={}),i=0;i<p.length;i++){var m=p[i].label;c[v][m]||(f(v,{label:m,color:p[i].color,i:p[i].i,trace:g,pts:p[i].pts}),c[v][m]=!0,h=Math.max(h,(m||\"\").length))}else f(v,d),h=Math.max(h,(g.name||\"\").length)}if(!s.length)return[];var y,x,b=s.length;if(l&&a.isGrouped(e))for(x=new Array(b),r=0;r<b;r++)y=o[s[r]],x[r]=a.isReversed(e)?y.reverse():y;else{for(x=[new Array(b)],r=0;r<b;r++)y=o[s[r]][0],x[0][a.isReversed(e)?b-r-1:r]=y;b=1}return e._lgroupsLength=b,e._maxNameLength=h,x}},{\"../../registry\":848,\"./helpers\":648}],647:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../registry\"),i=!0;e.exports=function(t,e,r){var o=e._fullLayout;if(!e._dragged&&!e._editing){var s,l=o.legend.itemclick,c=o.legend.itemdoubleclick;if(1===r&&\"toggle\"===l&&\"toggleothers\"===c&&i&&e.data&&e._context.showTips?(n.notifier(n._(e,\"Double-click on legend to isolate one trace\"),\"long\"),i=!1):i=!1,1===r?s=l:2===r&&(s=c),s){var u,h,f,p,d,g=o.hiddenlabels?o.hiddenlabels.slice():[],v=t.data()[0][0],m=e._fullData,y=v.trace,x=y.legendgroup,b={},_=[],w=[],k=[];if(a.traceIs(y,\"pie-like\")){var T=v.label,A=g.indexOf(T);\"toggle\"===s?-1===A?g.push(T):g.splice(A,1):\"toggleothers\"===s&&(g=[],e.calcdata[0].forEach(function(t){T!==t.label&&g.push(t.label)}),e._fullLayout.hiddenlabels&&e._fullLayout.hiddenlabels.length===g.length&&-1===A&&(g=[])),a.call(\"_guiRelayout\",e,\"hiddenlabels\",g)}else{var M,S=x&&x.length,E=[];if(S)for(u=0;u<m.length;u++)(M=m[u]).visible&&M.legendgroup===x&&E.push(u);if(\"toggle\"===s){var C;switch(y.visible){case!0:C=\"legendonly\";break;case!1:C=!1;break;case\"legendonly\":C=!0}if(S)for(u=0;u<m.length;u++)!1!==m[u].visible&&m[u].legendgroup===x&&R(m[u],C);else R(y,C)}else if(\"toggleothers\"===s){var L,P,O=!0;for(u=0;u<m.length;u++)if(!(m[u]===y)&&!(L=S&&m[u].legendgroup===x)&&!0===m[u].visible&&!a.traceIs(m[u],\"notLegendIsolatable\")){O=!1;break}for(u=0;u<m.length;u++)if(!1!==m[u].visible&&!a.traceIs(m[u],\"notLegendIsolatable\"))switch(y.visible){case\"legendonly\":R(m[u],!0);break;case!0:P=!!O||\"legendonly\",L=m[u]===y||S&&m[u].legendgroup===x,R(m[u],!!L||P)}}for(u=0;u<w.length;u++)if(f=w[u]){var I=f.constructUpdate(),z=Object.keys(I);for(h=0;h<z.length;h++)p=z[h],(b[p]=b[p]||[])[k[u]]=I[p]}for(d=Object.keys(b),u=0;u<d.length;u++)for(p=d[u],h=0;h<_.length;h++)b[p].hasOwnProperty(h)||(b[p][h]=void 0);a.call(\"_guiRestyle\",e,b,_)}}}function D(t,e,r){var n=_.indexOf(t),a=b[e];return a||(a=b[e]=[]),-1===_.indexOf(t)&&(_.push(t),n=_.length-1),a[n]=r,n}function R(t,e){var r=t._fullInput;if(a.hasTransform(r,\"groupby\")){var i=w[r.index];if(!i){var o=a.getTransformIndices(r,\"groupby\"),s=o[o.length-1];i=n.keyedContainer(r,\"transforms[\"+s+\"].styles\",\"target\",\"value.visible\"),w[r.index]=i}var l=i.get(t._group);void 0===l&&(l=!0),!1!==l&&i.set(t._group,e),k[r.index]=D(r.index,\"visible\",!1!==r.visible)}else{var c=!1!==r.visible&&e;D(r.index,\"visible\",c)}}}},{\"../../lib\":719,\"../../registry\":848}],648:[function(t,e,r){\"use strict\";r.isGrouped=function(t){return-1!==(t.traceorder||\"\").indexOf(\"grouped\")},r.isVertical=function(t){return\"h\"!==t.orientation},r.isReversed=function(t){return-1!==(t.traceorder||\"\").indexOf(\"reversed\")}},{}],649:[function(t,e,r){\"use strict\";e.exports={moduleType:\"component\",name:\"legend\",layoutAttributes:t(\"./attributes\"),supplyLayoutDefaults:t(\"./defaults\"),draw:t(\"./draw\"),style:t(\"./style\")}},{\"./attributes\":642,\"./defaults\":644,\"./draw\":645,\"./style\":650}],650:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../registry\"),i=t(\"../../lib\"),o=t(\"../drawing\"),s=t(\"../color\"),l=t(\"../../traces/scatter/subtypes\"),c=t(\"../../traces/pie/style_one\"),u=t(\"../../traces/pie/helpers\").castOption,h=12,f=5,p=2,d=10,g=5;e.exports=function(t,e){var r=e._fullLayout.legend,v=\"constant\"===r.itemsizing;function m(t,e,r,n){var a;if(t+1)a=t;else{if(!(e&&e.width>0))return 0;a=e.width}return v?n:Math.min(a,r)}function y(t,e,r){var i=t[0].trace,o=i.marker||{},l=o.line||{},c=r?i.type===r&&i.visible:a.traceIs(i,\"bar\"),u=n.select(e).select(\"g.legendpoints\").selectAll(\"path.legend\"+r).data(c?[t]:[]);u.enter().append(\"path\").classed(\"legend\"+r,!0).attr(\"d\",\"M6,6H-6V-6H6Z\").attr(\"transform\",\"translate(20,0)\"),u.exit().remove(),u.each(function(t){var e=n.select(this),r=t[0],a=m(r.mlw,o.line,g,p);e.style(\"stroke-width\",a+\"px\").call(s.fill,r.mc||o.color),a&&s.stroke(e,r.mlc||l.color)})}function x(t,e,r){var o=t[0],s=o.trace,l=r?s.type===r&&s.visible:a.traceIs(s,r),h=n.select(e).select(\"g.legendpoints\").selectAll(\"path.legend\"+r).data(l?[t]:[]);if(h.enter().append(\"path\").classed(\"legend\"+r,!0).attr(\"d\",\"M6,6H-6V-6H6Z\").attr(\"transform\",\"translate(20,0)\"),h.exit().remove(),h.size()){var f=(s.marker||{}).line,d=m(u(f.width,o.pts),f,g,p),v=i.minExtend(s,{marker:{line:{width:d}}});v.marker.line.color=f.color;var y=i.minExtend(o,{trace:v});c(h,y,v)}}t.each(function(t){var e=n.select(this),a=i.ensureSingle(e,\"g\",\"layers\");a.style(\"opacity\",t[0].trace.opacity);var o=r.valign,s=t[0].lineHeight,l=t[0].height;if(\"middle\"!==o&&s&&l){var c={top:1,bottom:-1}[o]*(.5*(s-l+3));a.attr(\"transform\",\"translate(0,\"+c+\")\")}else a.attr(\"transform\",null);a.selectAll(\"g.legendfill\").data([t]).enter().append(\"g\").classed(\"legendfill\",!0),a.selectAll(\"g.legendlines\").data([t]).enter().append(\"g\").classed(\"legendlines\",!0);var u=a.selectAll(\"g.legendsymbols\").data([t]);u.enter().append(\"g\").classed(\"legendsymbols\",!0),u.selectAll(\"g.legendpoints\").data([t]).enter().append(\"g\").classed(\"legendpoints\",!0)}).each(function(t){var e=t[0].trace,r=[];\"waterfall\"===e.type&&e.visible&&(r=t[0].hasTotals?[[\"increasing\",\"M-6,-6V6H0Z\"],[\"totals\",\"M6,6H0L-6,-6H-0Z\"],[\"decreasing\",\"M6,6V-6H0Z\"]]:[[\"increasing\",\"M-6,-6V6H6Z\"],[\"decreasing\",\"M6,6V-6H-6Z\"]]);var a=n.select(this).select(\"g.legendpoints\").selectAll(\"path.legendwaterfall\").data(r);a.enter().append(\"path\").classed(\"legendwaterfall\",!0).attr(\"transform\",\"translate(20,0)\").style(\"stroke-miterlimit\",1),a.exit().remove(),a.each(function(t){var r=n.select(this),a=e[t[0]].marker,i=m(void 0,a.line,g,p);r.attr(\"d\",t[1]).style(\"stroke-width\",i+\"px\").call(s.fill,a.color),i&&r.call(s.stroke,a.line.color)})}).each(function(t){y(t,this,\"funnel\")}).each(function(t){y(t,this)}).each(function(t){var r=t[0].trace,l=n.select(this).select(\"g.legendpoints\").selectAll(\"path.legendbox\").data(a.traceIs(r,\"box-violin\")&&r.visible?[t]:[]);l.enter().append(\"path\").classed(\"legendbox\",!0).attr(\"d\",\"M6,6H-6V-6H6Z\").attr(\"transform\",\"translate(20,0)\"),l.exit().remove(),l.each(function(){var t=n.select(this);if(\"all\"!==r.boxpoints&&\"all\"!==r.points||0!==s.opacity(r.fillcolor)||0!==s.opacity((r.line||{}).color)){var a=m(void 0,r.line,g,p);t.style(\"stroke-width\",a+\"px\").call(s.fill,r.fillcolor),a&&s.stroke(t,r.line.color)}else{var c=i.minExtend(r,{marker:{size:v?h:i.constrain(r.marker.size,2,16),sizeref:1,sizemin:1,sizemode:\"diameter\"}});l.call(o.pointStyle,c,e)}})}).each(function(t){x(t,this,\"funnelarea\")}).each(function(t){x(t,this,\"pie\")}).each(function(t){var r,a,s=t[0],c=s.trace,u=c.visible&&c.fill&&\"none\"!==c.fill,h=l.hasLines(c),p=c.contours,g=!1,v=!1;if(p){var y=p.coloring;\"lines\"===y?g=!0:h=\"none\"===y||\"heatmap\"===y||p.showlines,\"constraint\"===p.type?u=\"=\"!==p._operation:\"fill\"!==y&&\"heatmap\"!==y||(v=!0)}var x=l.hasMarkers(c)||l.hasText(c),b=u||v,_=h||g,w=x||!b?\"M5,0\":_?\"M5,-2\":\"M5,-3\",k=n.select(this),T=k.select(\".legendfill\").selectAll(\"path\").data(u||v?[t]:[]);if(T.enter().append(\"path\").classed(\"js-fill\",!0),T.exit().remove(),T.attr(\"d\",w+\"h30v6h-30z\").call(u?o.fillGroupStyle:function(t){if(t.size()){var r=\"legendfill-\"+c.uid;o.gradient(t,e,r,\"horizontalreversed\",c.colorscale,\"fill\")}}),h||g){var A=m(void 0,c.line,d,f);a=i.minExtend(c,{line:{width:A}}),r=[i.minExtend(s,{trace:a})]}var M=k.select(\".legendlines\").selectAll(\"path\").data(h||g?[r]:[]);M.enter().append(\"path\").classed(\"js-line\",!0),M.exit().remove(),M.attr(\"d\",w+(g?\"l30,0.0001\":\"h30\")).call(h?o.lineGroupStyle:function(t){if(t.size()){var r=\"legendline-\"+c.uid;o.lineGroupStyle(t),o.gradient(t,e,r,\"horizontalreversed\",c.colorscale,\"stroke\")}})}).each(function(t){var r,a,s=t[0],c=s.trace,u=l.hasMarkers(c),d=l.hasText(c),g=l.hasLines(c);function m(t,e,r,n){var a=i.nestedProperty(c,t).get(),o=i.isArrayOrTypedArray(a)&&e?e(a):a;if(v&&o&&void 0!==n&&(o=n),r){if(o<r[0])return r[0];if(o>r[1])return r[1]}return o}function y(t){return t[0]}if(u||d||g){var x={},b={};if(u){x.mc=m(\"marker.color\",y),x.mx=m(\"marker.symbol\",y),x.mo=m(\"marker.opacity\",i.mean,[.2,1]),x.mlc=m(\"marker.line.color\",y),x.mlw=m(\"marker.line.width\",i.mean,[0,5],p),b.marker={sizeref:1,sizemin:1,sizemode:\"diameter\"};var _=m(\"marker.size\",i.mean,[2,16],h);x.ms=_,b.marker.size=_}g&&(b.line={width:m(\"line.width\",y,[0,10],f)}),d&&(x.tx=\"Aa\",x.tp=m(\"textposition\",y),x.ts=10,x.tc=m(\"textfont.color\",y),x.tf=m(\"textfont.family\",y)),r=[i.minExtend(s,x)],(a=i.minExtend(c,b)).selectedpoints=null}var w=n.select(this).select(\"g.legendpoints\"),k=w.selectAll(\"path.scatterpts\").data(u?r:[]);k.enter().insert(\"path\",\":first-child\").classed(\"scatterpts\",!0).attr(\"transform\",\"translate(20,0)\"),k.exit().remove(),k.call(o.pointStyle,a,e),u&&(r[0].mrc=3);var T=w.selectAll(\"g.pointtext\").data(d?r:[]);T.enter().append(\"g\").classed(\"pointtext\",!0).append(\"text\").attr(\"transform\",\"translate(20,0)\"),T.exit().remove(),T.selectAll(\"text\").call(o.textPointStyle,a,e,!0)}).each(function(t){var e=t[0].trace,r=n.select(this).select(\"g.legendpoints\").selectAll(\"path.legendcandle\").data(\"candlestick\"===e.type&&e.visible?[t,t]:[]);r.enter().append(\"path\").classed(\"legendcandle\",!0).attr(\"d\",function(t,e){return e?\"M-15,0H-8M-8,6V-6H8Z\":\"M15,0H8M8,-6V6H-8Z\"}).attr(\"transform\",\"translate(20,0)\").style(\"stroke-miterlimit\",1),r.exit().remove(),r.each(function(t,r){var a=n.select(this),i=e[r?\"increasing\":\"decreasing\"],o=m(void 0,i.line,g,p);a.style(\"stroke-width\",o+\"px\").call(s.fill,i.fillcolor),o&&s.stroke(a,i.line.color)})}).each(function(t){var e=t[0].trace,r=n.select(this).select(\"g.legendpoints\").selectAll(\"path.legendohlc\").data(\"ohlc\"===e.type&&e.visible?[t,t]:[]);r.enter().append(\"path\").classed(\"legendohlc\",!0).attr(\"d\",function(t,e){return e?\"M-15,0H0M-8,-6V0\":\"M15,0H0M8,6V0\"}).attr(\"transform\",\"translate(20,0)\").style(\"stroke-miterlimit\",1),r.exit().remove(),r.each(function(t,r){var a=n.select(this),i=e[r?\"increasing\":\"decreasing\"],l=m(void 0,i.line,g,p);a.style(\"fill\",\"none\").call(o.dashLine,i.line.dash,l),l&&s.stroke(a,i.line.color)})})}},{\"../../lib\":719,\"../../registry\":848,\"../../traces/pie/helpers\":1090,\"../../traces/pie/style_one\":1096,\"../../traces/scatter/subtypes\":1134,\"../color\":594,\"../drawing\":615,d3:164}],651:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../plots/plots\"),i=t(\"../../plots/cartesian/axis_ids\"),o=t(\"../../lib\"),s=t(\"../../fonts/ploticon\"),l=o._,c=e.exports={};function u(t,e){var r,a,o=e.currentTarget,s=o.getAttribute(\"data-attr\"),l=o.getAttribute(\"data-val\")||!0,c=t._fullLayout,u={},h=i.list(t,null,!0),f=c._cartesianSpikesEnabled;if(\"zoom\"===s){var p,d=\"in\"===l?.5:2,g=(1+d)/2,v=(1-d)/2;for(a=0;a<h.length;a++)if(!(r=h[a]).fixedrange)if(p=r._name,\"auto\"===l)u[p+\".autorange\"]=!0;else if(\"reset\"===l){if(void 0===r._rangeInitial)u[p+\".autorange\"]=!0;else{var m=r._rangeInitial.slice();u[p+\".range[0]\"]=m[0],u[p+\".range[1]\"]=m[1]}void 0!==r._showSpikeInitial&&(u[p+\".showspikes\"]=r._showSpikeInitial,\"on\"!==f||r._showSpikeInitial||(f=\"off\"))}else{var y=[r.r2l(r.range[0]),r.r2l(r.range[1])],x=[g*y[0]+v*y[1],g*y[1]+v*y[0]];u[p+\".range[0]\"]=r.l2r(x[0]),u[p+\".range[1]\"]=r.l2r(x[1])}}else\"hovermode\"!==s||\"x\"!==l&&\"y\"!==l||(l=c._isHoriz?\"y\":\"x\",o.setAttribute(\"data-val\",l)),u[s]=l;c._cartesianSpikesEnabled=f,n.call(\"_guiRelayout\",t,u)}function h(t,e){for(var r=e.currentTarget,a=r.getAttribute(\"data-attr\"),i=r.getAttribute(\"data-val\")||!0,o=t._fullLayout._subplots.gl3d,s={},l=a.split(\".\"),c=0;c<o.length;c++)s[o[c]+\".\"+l[1]]=i;var u=\"pan\"===i?i:\"zoom\";s.dragmode=u,n.call(\"_guiRelayout\",t,s)}function f(t,e){for(var r=e.currentTarget.getAttribute(\"data-attr\"),a=t._fullLayout,i=a._subplots.gl3d||[],o={},s=0;s<i.length;s++){var l=i[s],c=l+\".camera\",u=a[l]._scene;\"resetLastSave\"===r?(o[c+\".up\"]=u.viewInitial.up,o[c+\".eye\"]=u.viewInitial.eye,o[c+\".center\"]=u.viewInitial.center):\"resetDefault\"===r&&(o[c+\".up\"]=null,o[c+\".eye\"]=null,o[c+\".center\"]=null)}n.call(\"_guiRelayout\",t,o)}function p(t,e){var r=e.currentTarget,n=r._previousVal,a=t._fullLayout,i=a._subplots.gl3d||[],o=[\"xaxis\",\"yaxis\",\"zaxis\"],s={},l={};if(n)l=n,r._previousVal=null;else{for(var c=0;c<i.length;c++){var u=i[c],h=a[u],f=u+\".hovermode\";s[f]=h.hovermode,l[f]=!1;for(var p=0;p<3;p++){var d=o[p],g=u+\".\"+d+\".showspikes\";l[g]=!1,s[g]=h[d].showspikes}}r._previousVal=s}return l}function d(t,e){for(var r=e.currentTarget,a=r.getAttribute(\"data-attr\"),i=r.getAttribute(\"data-val\")||!0,o=t._fullLayout,s=o._subplots.geo,l=0;l<s.length;l++){var c=s[l],u=o[c];if(\"zoom\"===a){var h=u.projection.scale,f=\"in\"===i?2*h:.5*h;n.call(\"_guiRelayout\",t,c+\".projection.scale\",f)}else\"reset\"===a&&m(t,\"geo\")}}function g(t){var e=t._fullLayout;return!e.hovermode&&(e._has(\"cartesian\")?e._isHoriz?\"y\":\"x\":\"closest\")}function v(t){var e=g(t);n.call(\"_guiRelayout\",t,\"hovermode\",e)}function m(t,e){for(var r=t._fullLayout,a=r._subplots[e]||[],i={},o=0;o<a.length;o++)for(var s=a[o],l=r[s]._subplot.viewInitial,c=Object.keys(l),u=0;u<c.length;u++){var h=c[u];i[s+\".\"+h]=l[h]}n.call(\"_guiRelayout\",t,i)}c.toImage={name:\"toImage\",title:function(t){var e=(t._context.toImageButtonOptions||{}).format||\"png\";return l(t,\"png\"===e?\"Download plot as a png\":\"Download plot\")},icon:s.camera,click:function(t){var e=t._context.toImageButtonOptions,r={format:e.format||\"png\"};o.notifier(l(t,\"Taking snapshot - this may take a few seconds\"),\"long\"),\"svg\"!==r.format&&o.isIE()&&(o.notifier(l(t,\"IE only supports svg.  Changing format to svg.\"),\"long\"),r.format=\"svg\"),[\"filename\",\"width\",\"height\",\"scale\"].forEach(function(t){t in e&&(r[t]=e[t])}),n.call(\"downloadImage\",t,r).then(function(e){o.notifier(l(t,\"Snapshot succeeded\")+\" - \"+e,\"long\")}).catch(function(){o.notifier(l(t,\"Sorry, there was a problem downloading your snapshot!\"),\"long\")})}},c.sendDataToCloud={name:\"sendDataToCloud\",title:function(t){return l(t,\"Edit in Chart Studio\")},icon:s.disk,click:function(t){a.sendDataToCloud(t)}},c.editInChartStudio={name:\"editInChartStudio\",title:function(t){return l(t,\"Edit in Chart Studio\")},icon:s.pencil,click:function(t){a.sendDataToCloud(t)}},c.zoom2d={name:\"zoom2d\",title:function(t){return l(t,\"Zoom\")},attr:\"dragmode\",val:\"zoom\",icon:s.zoombox,click:u},c.pan2d={name:\"pan2d\",title:function(t){return l(t,\"Pan\")},attr:\"dragmode\",val:\"pan\",icon:s.pan,click:u},c.select2d={name:\"select2d\",title:function(t){return l(t,\"Box Select\")},attr:\"dragmode\",val:\"select\",icon:s.selectbox,click:u},c.lasso2d={name:\"lasso2d\",title:function(t){return l(t,\"Lasso Select\")},attr:\"dragmode\",val:\"lasso\",icon:s.lasso,click:u},c.zoomIn2d={name:\"zoomIn2d\",title:function(t){return l(t,\"Zoom in\")},attr:\"zoom\",val:\"in\",icon:s.zoom_plus,click:u},c.zoomOut2d={name:\"zoomOut2d\",title:function(t){return l(t,\"Zoom out\")},attr:\"zoom\",val:\"out\",icon:s.zoom_minus,click:u},c.autoScale2d={name:\"autoScale2d\",title:function(t){return l(t,\"Autoscale\")},attr:\"zoom\",val:\"auto\",icon:s.autoscale,click:u},c.resetScale2d={name:\"resetScale2d\",title:function(t){return l(t,\"Reset axes\")},attr:\"zoom\",val:\"reset\",icon:s.home,click:u},c.hoverClosestCartesian={name:\"hoverClosestCartesian\",title:function(t){return l(t,\"Show closest data on hover\")},attr:\"hovermode\",val:\"closest\",icon:s.tooltip_basic,gravity:\"ne\",click:u},c.hoverCompareCartesian={name:\"hoverCompareCartesian\",title:function(t){return l(t,\"Compare data on hover\")},attr:\"hovermode\",val:function(t){return t._fullLayout._isHoriz?\"y\":\"x\"},icon:s.tooltip_compare,gravity:\"ne\",click:u},c.zoom3d={name:\"zoom3d\",title:function(t){return l(t,\"Zoom\")},attr:\"scene.dragmode\",val:\"zoom\",icon:s.zoombox,click:h},c.pan3d={name:\"pan3d\",title:function(t){return l(t,\"Pan\")},attr:\"scene.dragmode\",val:\"pan\",icon:s.pan,click:h},c.orbitRotation={name:\"orbitRotation\",title:function(t){return l(t,\"Orbital rotation\")},attr:\"scene.dragmode\",val:\"orbit\",icon:s[\"3d_rotate\"],click:h},c.tableRotation={name:\"tableRotation\",title:function(t){return l(t,\"Turntable rotation\")},attr:\"scene.dragmode\",val:\"turntable\",icon:s[\"z-axis\"],click:h},c.resetCameraDefault3d={name:\"resetCameraDefault3d\",title:function(t){return l(t,\"Reset camera to default\")},attr:\"resetDefault\",icon:s.home,click:f},c.resetCameraLastSave3d={name:\"resetCameraLastSave3d\",title:function(t){return l(t,\"Reset camera to last save\")},attr:\"resetLastSave\",icon:s.movie,click:f},c.hoverClosest3d={name:\"hoverClosest3d\",title:function(t){return l(t,\"Toggle show closest data on hover\")},attr:\"hovermode\",val:null,toggle:!0,icon:s.tooltip_basic,gravity:\"ne\",click:function(t,e){var r=p(t,e);n.call(\"_guiRelayout\",t,r)}},c.zoomInGeo={name:\"zoomInGeo\",title:function(t){return l(t,\"Zoom in\")},attr:\"zoom\",val:\"in\",icon:s.zoom_plus,click:d},c.zoomOutGeo={name:\"zoomOutGeo\",title:function(t){return l(t,\"Zoom out\")},attr:\"zoom\",val:\"out\",icon:s.zoom_minus,click:d},c.resetGeo={name:\"resetGeo\",title:function(t){return l(t,\"Reset\")},attr:\"reset\",val:null,icon:s.autoscale,click:d},c.hoverClosestGeo={name:\"hoverClosestGeo\",title:function(t){return l(t,\"Toggle show closest data on hover\")},attr:\"hovermode\",val:null,toggle:!0,icon:s.tooltip_basic,gravity:\"ne\",click:v},c.hoverClosestGl2d={name:\"hoverClosestGl2d\",title:function(t){return l(t,\"Toggle show closest data on hover\")},attr:\"hovermode\",val:null,toggle:!0,icon:s.tooltip_basic,gravity:\"ne\",click:v},c.hoverClosestPie={name:\"hoverClosestPie\",title:function(t){return l(t,\"Toggle show closest data on hover\")},attr:\"hovermode\",val:\"closest\",icon:s.tooltip_basic,gravity:\"ne\",click:v},c.resetViewSankey={name:\"resetSankeyGroup\",title:function(t){return l(t,\"Reset view\")},icon:s.home,click:function(t){for(var e={\"node.groups\":[],\"node.x\":[],\"node.y\":[]},r=0;r<t._fullData.length;r++){var a=t._fullData[r]._viewInitial;e[\"node.groups\"].push(a.node.groups.slice()),e[\"node.x\"].push(a.node.x.slice()),e[\"node.y\"].push(a.node.y.slice())}n.call(\"restyle\",t,e)}},c.toggleHover={name:\"toggleHover\",title:function(t){return l(t,\"Toggle show closest data on hover\")},attr:\"hovermode\",val:null,toggle:!0,icon:s.tooltip_basic,gravity:\"ne\",click:function(t,e){var r=p(t,e);r.hovermode=g(t),n.call(\"_guiRelayout\",t,r)}},c.resetViews={name:\"resetViews\",title:function(t){return l(t,\"Reset views\")},icon:s.home,click:function(t,e){var r=e.currentTarget;r.setAttribute(\"data-attr\",\"zoom\"),r.setAttribute(\"data-val\",\"reset\"),u(t,e),r.setAttribute(\"data-attr\",\"resetLastSave\"),f(t,e),m(t,\"geo\"),m(t,\"mapbox\")}},c.toggleSpikelines={name:\"toggleSpikelines\",title:function(t){return l(t,\"Toggle Spike Lines\")},icon:s.spikeline,attr:\"_cartesianSpikesEnabled\",val:\"on\",click:function(t){var e=t._fullLayout,r=e._cartesianSpikesEnabled;e._cartesianSpikesEnabled=\"on\"===r?\"off\":\"on\",n.call(\"_guiRelayout\",t,function(t){for(var e=\"on\"===t._fullLayout._cartesianSpikesEnabled,r=i.list(t,null,!0),n={},a=0;a<r.length;a++){var o=r[a];n[o._name+\".showspikes\"]=!!e||o._showSpikeInitial}return n}(t))}},c.resetViewMapbox={name:\"resetViewMapbox\",title:function(t){return l(t,\"Reset view\")},attr:\"reset\",icon:s.home,click:function(t){m(t,\"mapbox\")}}},{\"../../fonts/ploticon\":699,\"../../lib\":719,\"../../plots/cartesian/axis_ids\":770,\"../../plots/plots\":828,\"../../registry\":848}],652:[function(t,e,r){\"use strict\";r.manage=t(\"./manage\")},{\"./manage\":653}],653:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axis_ids\"),a=t(\"../../traces/scatter/subtypes\"),i=t(\"../../registry\"),o=t(\"./modebar\"),s=t(\"./buttons\");e.exports=function(t){var e=t._fullLayout,r=t._context,l=e._modeBar;if(r.displayModeBar||r.watermark){if(!Array.isArray(r.modeBarButtonsToRemove))throw new Error([\"*modeBarButtonsToRemove* configuration options\",\"must be an array.\"].join(\" \"));if(!Array.isArray(r.modeBarButtonsToAdd))throw new Error([\"*modeBarButtonsToAdd* configuration options\",\"must be an array.\"].join(\" \"));var c,u=r.modeBarButtons;c=Array.isArray(u)&&u.length?function(t){for(var e=0;e<t.length;e++)for(var r=t[e],n=0;n<r.length;n++){var a=r[n];if(\"string\"==typeof a){if(void 0===s[a])throw new Error([\"*modeBarButtons* configuration options\",\"invalid button name\"].join(\" \"));t[e][n]=s[a]}}return t}(u):!r.displayModeBar&&r.watermark?[]:function(t){var e=t._fullLayout,r=t._fullData,o=t._context,l=o.modeBarButtonsToRemove,c=o.modeBarButtonsToAdd,u=e._has(\"cartesian\"),h=e._has(\"gl3d\"),f=e._has(\"geo\"),p=e._has(\"pie\"),d=e._has(\"funnelarea\"),g=e._has(\"gl2d\"),v=e._has(\"ternary\"),m=e._has(\"mapbox\"),y=e._has(\"polar\"),x=e._has(\"sankey\"),b=function(t){for(var e=n.list({_fullLayout:t},null,!0),r=0;r<e.length;r++)if(!e[r].fixedrange)return!1;return!0}(e),_=[];function w(t){if(t.length){for(var e=[],r=0;r<t.length;r++){var n=t[r];-1===l.indexOf(n)&&e.push(s[n])}_.push(e)}}var k=[\"toImage\"];o.showEditInChartStudio?k.push(\"editInChartStudio\"):o.showSendToCloud&&k.push(\"sendDataToCloud\");w(k);var T=[],A=[],M=[],S=[];(u||g||p||d||v)+f+h+m+y>1?(A=[\"toggleHover\"],M=[\"resetViews\"]):f?(T=[\"zoomInGeo\",\"zoomOutGeo\"],A=[\"hoverClosestGeo\"],M=[\"resetGeo\"]):h?(A=[\"hoverClosest3d\"],M=[\"resetCameraDefault3d\",\"resetCameraLastSave3d\"]):m?(A=[\"toggleHover\"],M=[\"resetViewMapbox\"]):g?A=[\"hoverClosestGl2d\"]:p?A=[\"hoverClosestPie\"]:x?(A=[\"hoverClosestCartesian\",\"hoverCompareCartesian\"],M=[\"resetViewSankey\"]):A=[\"toggleHover\"];u&&(A=[\"toggleSpikelines\",\"hoverClosestCartesian\",\"hoverCompareCartesian\"]);(function(t){for(var e=0;e<t.length;e++)if(!i.traceIs(t[e],\"noHover\"))return!1;return!0})(r)&&(A=[]);!u&&!g||b||(T=[\"zoomIn2d\",\"zoomOut2d\",\"autoScale2d\"],\"resetViews\"!==M[0]&&(M=[\"resetScale2d\"]));h?S=[\"zoom3d\",\"pan3d\",\"orbitRotation\",\"tableRotation\"]:(u||g)&&!b||v?S=[\"zoom2d\",\"pan2d\"]:m||f?S=[\"pan2d\"]:y&&(S=[\"zoom2d\"]);(function(t){for(var e=!1,r=0;r<t.length&&!e;r++){var n=t[r];n._module&&n._module.selectPoints&&(i.traceIs(n,\"scatter-like\")?(a.hasMarkers(n)||a.hasText(n))&&(e=!0):i.traceIs(n,\"box-violin\")&&\"all\"!==n.boxpoints&&\"all\"!==n.points||(e=!0))}return e})(r)&&S.push(\"select2d\",\"lasso2d\");return w(S),w(T.concat(M)),w(A),function(t,e){if(e.length)if(Array.isArray(e[0]))for(var r=0;r<e.length;r++)t.push(e[r]);else t.push(e);return t}(_,c)}(t),l?l.update(t,c):e._modeBar=o(t,c)}else l&&(l.destroy(),delete e._modeBar)}},{\"../../plots/cartesian/axis_ids\":770,\"../../registry\":848,\"../../traces/scatter/subtypes\":1134,\"./buttons\":651,\"./modebar\":654}],654:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"fast-isnumeric\"),i=t(\"../../lib\"),o=t(\"../../fonts/ploticon\"),s=new DOMParser;function l(t){this.container=t.container,this.element=document.createElement(\"div\"),this.update(t.graphInfo,t.buttons),this.container.appendChild(this.element)}var c=l.prototype;c.update=function(t,e){this.graphInfo=t;var r=this.graphInfo._context,n=this.graphInfo._fullLayout,a=\"modebar-\"+n._uid;this.element.setAttribute(\"id\",a),this._uid=a,this.element.className=\"modebar\",\"hover\"===r.displayModeBar&&(this.element.className+=\" modebar--hover ease-bg\"),\"v\"===n.modebar.orientation&&(this.element.className+=\" vertical\",e=e.reverse());var o=n.modebar,s=\"hover\"===r.displayModeBar?\".js-plotly-plot .plotly:hover \":\"\";i.deleteRelatedStyleRule(a),i.addRelatedStyleRule(a,s+\"#\"+a+\" .modebar-group\",\"background-color: \"+o.bgcolor),i.addRelatedStyleRule(a,\"#\"+a+\" .modebar-btn .icon path\",\"fill: \"+o.color),i.addRelatedStyleRule(a,\"#\"+a+\" .modebar-btn:hover .icon path\",\"fill: \"+o.activecolor),i.addRelatedStyleRule(a,\"#\"+a+\" .modebar-btn.active .icon path\",\"fill: \"+o.activecolor);var l=!this.hasButtons(e),c=this.hasLogo!==r.displaylogo,u=this.locale!==r.locale;if(this.locale=r.locale,(l||c||u)&&(this.removeAllButtons(),this.updateButtons(e),r.watermark||r.displaylogo)){var h=this.getLogo();r.watermark&&(h.className=h.className+\" watermark\"),\"v\"===n.modebar.orientation?this.element.insertBefore(h,this.element.childNodes[0]):this.element.appendChild(h),this.hasLogo=!0}this.updateActiveButton()},c.updateButtons=function(t){var e=this;this.buttons=t,this.buttonElements=[],this.buttonsNames=[],this.buttons.forEach(function(t){var r=e.createGroup();t.forEach(function(t){var n=t.name;if(!n)throw new Error(\"must provide button 'name' in button config\");if(-1!==e.buttonsNames.indexOf(n))throw new Error(\"button name '\"+n+\"' is taken\");e.buttonsNames.push(n);var a=e.createButton(t);e.buttonElements.push(a),r.appendChild(a)}),e.element.appendChild(r)})},c.createGroup=function(){var t=document.createElement(\"div\");return t.className=\"modebar-group\",t},c.createButton=function(t){var e=this,r=document.createElement(\"a\");r.setAttribute(\"rel\",\"tooltip\"),r.className=\"modebar-btn\";var a=t.title;void 0===a?a=t.name:\"function\"==typeof a&&(a=a(this.graphInfo)),(a||0===a)&&r.setAttribute(\"data-title\",a),void 0!==t.attr&&r.setAttribute(\"data-attr\",t.attr);var i=t.val;if(void 0!==i&&(\"function\"==typeof i&&(i=i(this.graphInfo)),r.setAttribute(\"data-val\",i)),\"function\"!=typeof t.click)throw new Error(\"must provide button 'click' function in button config\");r.addEventListener(\"click\",function(r){t.click(e.graphInfo,r),e.updateActiveButton(r.currentTarget)}),r.setAttribute(\"data-toggle\",t.toggle||!1),t.toggle&&n.select(r).classed(\"active\",!0);var s=t.icon;return\"function\"==typeof s?r.appendChild(s()):r.appendChild(this.createIcon(s||o.question)),r.setAttribute(\"data-gravity\",t.gravity||\"n\"),r},c.createIcon=function(t){var e,r=a(t.height)?Number(t.height):t.ascent-t.descent,n=\"http://www.w3.org/2000/svg\";if(t.path){(e=document.createElementNS(n,\"svg\")).setAttribute(\"viewBox\",[0,0,t.width,r].join(\" \")),e.setAttribute(\"class\",\"icon\");var i=document.createElementNS(n,\"path\");i.setAttribute(\"d\",t.path),t.transform?i.setAttribute(\"transform\",t.transform):void 0!==t.ascent&&i.setAttribute(\"transform\",\"matrix(1 0 0 -1 0 \"+t.ascent+\")\"),e.appendChild(i)}t.svg&&(e=s.parseFromString(t.svg,\"application/xml\").childNodes[0]);return e.setAttribute(\"height\",\"1em\"),e.setAttribute(\"width\",\"1em\"),e},c.updateActiveButton=function(t){var e=this.graphInfo._fullLayout,r=void 0!==t?t.getAttribute(\"data-attr\"):null;this.buttonElements.forEach(function(t){var a=t.getAttribute(\"data-val\")||!0,o=t.getAttribute(\"data-attr\"),s=\"true\"===t.getAttribute(\"data-toggle\"),l=n.select(t);if(s)o===r&&l.classed(\"active\",!l.classed(\"active\"));else{var c=null===o?o:i.nestedProperty(e,o).get();l.classed(\"active\",c===a)}})},c.hasButtons=function(t){var e=this.buttons;if(!e)return!1;if(t.length!==e.length)return!1;for(var r=0;r<t.length;++r){if(t[r].length!==e[r].length)return!1;for(var n=0;n<t[r].length;n++)if(t[r][n].name!==e[r][n].name)return!1}return!0},c.getLogo=function(){var t=this.createGroup(),e=document.createElement(\"a\");return e.href=\"https://plot.ly/\",e.target=\"_blank\",e.setAttribute(\"data-title\",i._(this.graphInfo,\"Produced with Plotly\")),e.className=\"modebar-btn plotlyjsicon modebar-btn--logo\",e.appendChild(this.createIcon(o.newplotlylogo)),t.appendChild(e),t},c.removeAllButtons=function(){for(;this.element.firstChild;)this.element.removeChild(this.element.firstChild);this.hasLogo=!1},c.destroy=function(){i.removeElement(this.container.querySelector(\".modebar\")),i.deleteRelatedStyleRule(this._uid)},e.exports=function(t,e){var r=t._fullLayout,a=new l({graphInfo:t,container:r._modebardiv.node(),buttons:e});return r._privateplot&&n.select(a.element).append(\"span\").classed(\"badge-private float--left\",!0).text(\"PRIVATE\"),a}},{\"../../fonts/ploticon\":699,\"../../lib\":719,d3:164,\"fast-isnumeric\":226}],655:[function(t,e,r){\"use strict\";var n=t(\"../../plots/font_attributes\"),a=t(\"../color/attributes\"),i=(0,t(\"../../plot_api/plot_template\").templatedArray)(\"button\",{visible:{valType:\"boolean\",dflt:!0,editType:\"plot\"},step:{valType:\"enumerated\",values:[\"month\",\"year\",\"day\",\"hour\",\"minute\",\"second\",\"all\"],dflt:\"month\",editType:\"plot\"},stepmode:{valType:\"enumerated\",values:[\"backward\",\"todate\"],dflt:\"backward\",editType:\"plot\"},count:{valType:\"number\",min:0,dflt:1,editType:\"plot\"},label:{valType:\"string\",editType:\"plot\"},editType:\"plot\"});e.exports={visible:{valType:\"boolean\",editType:\"plot\"},buttons:i,x:{valType:\"number\",min:-2,max:3,editType:\"plot\"},xanchor:{valType:\"enumerated\",values:[\"auto\",\"left\",\"center\",\"right\"],dflt:\"left\",editType:\"plot\"},y:{valType:\"number\",min:-2,max:3,editType:\"plot\"},yanchor:{valType:\"enumerated\",values:[\"auto\",\"top\",\"middle\",\"bottom\"],dflt:\"bottom\",editType:\"plot\"},font:n({editType:\"plot\"}),bgcolor:{valType:\"color\",dflt:a.lightLine,editType:\"plot\"},activecolor:{valType:\"color\",editType:\"plot\"},bordercolor:{valType:\"color\",dflt:a.defaultLine,editType:\"plot\"},borderwidth:{valType:\"number\",min:0,dflt:0,editType:\"plot\"},editType:\"plot\"}},{\"../../plot_api/plot_template\":757,\"../../plots/font_attributes\":793,\"../color/attributes\":593}],656:[function(t,e,r){\"use strict\";e.exports={yPad:.02,minButtonWidth:30,rx:3,ry:3,lightAmount:25,darkAmount:10}},{}],657:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../color\"),i=t(\"../../plot_api/plot_template\"),o=t(\"../../plots/array_container_defaults\"),s=t(\"./attributes\"),l=t(\"./constants\");function c(t,e,r,a){var i=a.calendar;function o(r,a){return n.coerce(t,e,s.buttons,r,a)}if(o(\"visible\")){var l=o(\"step\");\"all\"!==l&&(!i||\"gregorian\"===i||\"month\"!==l&&\"year\"!==l?o(\"stepmode\"):e.stepmode=\"backward\",o(\"count\")),o(\"label\")}}e.exports=function(t,e,r,u,h){var f=t.rangeselector||{},p=i.newContainer(e,\"rangeselector\");function d(t,e){return n.coerce(f,p,s,t,e)}if(d(\"visible\",o(f,p,{name:\"buttons\",handleItemDefaults:c,calendar:h}).length>0)){var g=function(t,e,r){for(var n=r.filter(function(r){return e[r].anchor===t._id}),a=0,i=0;i<n.length;i++){var o=e[n[i]].domain;o&&(a=Math.max(o[1],a))}return[t.domain[0],a+l.yPad]}(e,r,u);d(\"x\",g[0]),d(\"y\",g[1]),n.noneOrAll(t,e,[\"x\",\"y\"]),d(\"xanchor\"),d(\"yanchor\"),n.coerceFont(d,\"font\",r.font);var v=d(\"bgcolor\");d(\"activecolor\",a.contrast(v,l.lightAmount,l.darkAmount)),d(\"bordercolor\"),d(\"borderwidth\")}}},{\"../../lib\":719,\"../../plot_api/plot_template\":757,\"../../plots/array_container_defaults\":763,\"../color\":594,\"./attributes\":655,\"./constants\":656}],658:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../registry\"),i=t(\"../../plots/plots\"),o=t(\"../color\"),s=t(\"../drawing\"),l=t(\"../../lib\"),c=t(\"../../lib/svg_text_utils\"),u=t(\"../../plots/cartesian/axis_ids\"),h=t(\"../../constants/alignment\"),f=h.LINE_SPACING,p=h.FROM_TL,d=h.FROM_BR,g=t(\"./constants\"),v=t(\"./get_update_object\");function m(t){return t._id}function y(t,e,r){var n=l.ensureSingle(t,\"rect\",\"selector-rect\",function(t){t.attr(\"shape-rendering\",\"crispEdges\")});n.attr({rx:g.rx,ry:g.ry}),n.call(o.stroke,e.bordercolor).call(o.fill,function(t,e){return e._isActive||e._isHovered?t.activecolor:t.bgcolor}(e,r)).style(\"stroke-width\",e.borderwidth+\"px\")}function x(t,e,r,n){l.ensureSingle(t,\"text\",\"selector-text\",function(t){t.classed(\"user-select-none\",!0).attr(\"text-anchor\",\"middle\")}).call(s.font,e.font).text(function(t,e){if(t.label)return e?l.templateString(t.label,e):t.label;return\"all\"===t.step?\"all\":t.count+t.step.charAt(0)}(r,n._fullLayout._meta)).call(function(t){c.convertToTspans(t,n)})}e.exports=function(t){var e=t._fullLayout._infolayer.selectAll(\".rangeselector\").data(function(t){for(var e=u.list(t,\"x\",!0),r=[],n=0;n<e.length;n++){var a=e[n];a.rangeselector&&a.rangeselector.visible&&r.push(a)}return r}(t),m);e.enter().append(\"g\").classed(\"rangeselector\",!0),e.exit().remove(),e.style({cursor:\"pointer\",\"pointer-events\":\"all\"}),e.each(function(e){var r=n.select(this),o=e,u=o.rangeselector,h=r.selectAll(\"g.button\").data(l.filterVisible(u.buttons));h.enter().append(\"g\").classed(\"button\",!0),h.exit().remove(),h.each(function(e){var r=n.select(this),i=v(o,e);e._isActive=function(t,e,r){if(\"all\"===e.step)return!0===t.autorange;var n=Object.keys(r);return t.range[0]===r[n[0]]&&t.range[1]===r[n[1]]}(o,e,i),r.call(y,u,e),r.call(x,u,e,t),r.on(\"click\",function(){t._dragged||a.call(\"_guiRelayout\",t,i)}),r.on(\"mouseover\",function(){e._isHovered=!0,r.call(y,u,e)}),r.on(\"mouseout\",function(){e._isHovered=!1,r.call(y,u,e)})}),function(t,e,r,a,o){var u=0,h=0,v=r.borderwidth;e.each(function(){var t=n.select(this),e=t.select(\".selector-text\"),a=r.font.size*f,i=Math.max(a*c.lineCount(e),16)+3;h=Math.max(h,i)}),e.each(function(){var t=n.select(this),e=t.select(\".selector-rect\"),a=t.select(\".selector-text\"),i=a.node()&&s.bBox(a.node()).width,o=r.font.size*f,l=c.lineCount(a),p=Math.max(i+10,g.minButtonWidth);t.attr(\"transform\",\"translate(\"+(v+u)+\",\"+v+\")\"),e.attr({x:0,y:0,width:p,height:h}),c.positionText(a,p/2,h/2-(l-1)*o/2+3),u+=p+5});var m=t._fullLayout._size,y=m.l+m.w*r.x,x=m.t+m.h*(1-r.y),b=\"left\";l.isRightAnchor(r)&&(y-=u,b=\"right\");l.isCenterAnchor(r)&&(y-=u/2,b=\"center\");var _=\"top\";l.isBottomAnchor(r)&&(x-=h,_=\"bottom\");l.isMiddleAnchor(r)&&(x-=h/2,_=\"middle\");u=Math.ceil(u),h=Math.ceil(h),y=Math.round(y),x=Math.round(x),i.autoMargin(t,a+\"-range-selector\",{x:r.x,y:r.y,l:u*p[b],r:u*d[b],b:h*d[_],t:h*p[_]}),o.attr(\"transform\",\"translate(\"+y+\",\"+x+\")\")}(t,h,u,o._name,r)})}},{\"../../constants/alignment\":688,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../../plots/cartesian/axis_ids\":770,\"../../plots/plots\":828,\"../../registry\":848,\"../color\":594,\"../drawing\":615,\"./constants\":656,\"./get_update_object\":659,d3:164}],659:[function(t,e,r){\"use strict\";var n=t(\"d3\");e.exports=function(t,e){var r=t._name,a={};if(\"all\"===e.step)a[r+\".autorange\"]=!0;else{var i=function(t,e){var r,a=t.range,i=new Date(t.r2l(a[1])),o=e.step,s=e.count;switch(e.stepmode){case\"backward\":r=t.l2r(+n.time[o].utc.offset(i,-s));break;case\"todate\":var l=n.time[o].utc.offset(i,-s);r=t.l2r(+n.time[o].utc.ceil(l))}var c=a[1];return[r,c]}(t,e);a[r+\".range[0]\"]=i[0],a[r+\".range[1]\"]=i[1]}return a}},{d3:164}],660:[function(t,e,r){\"use strict\";e.exports={moduleType:\"component\",name:\"rangeselector\",schema:{subplots:{xaxis:{rangeselector:t(\"./attributes\")}}},layoutAttributes:t(\"./attributes\"),handleDefaults:t(\"./defaults\"),draw:t(\"./draw\")}},{\"./attributes\":655,\"./defaults\":657,\"./draw\":658}],661:[function(t,e,r){\"use strict\";var n=t(\"../color/attributes\");e.exports={bgcolor:{valType:\"color\",dflt:n.background,editType:\"plot\"},bordercolor:{valType:\"color\",dflt:n.defaultLine,editType:\"plot\"},borderwidth:{valType:\"integer\",dflt:0,min:0,editType:\"plot\"},autorange:{valType:\"boolean\",dflt:!0,editType:\"calc\",impliedEdits:{\"range[0]\":void 0,\"range[1]\":void 0}},range:{valType:\"info_array\",items:[{valType:\"any\",editType:\"calc\",impliedEdits:{\"^autorange\":!1}},{valType:\"any\",editType:\"calc\",impliedEdits:{\"^autorange\":!1}}],editType:\"calc\",impliedEdits:{autorange:!1}},thickness:{valType:\"number\",dflt:.15,min:0,max:1,editType:\"plot\"},visible:{valType:\"boolean\",dflt:!0,editType:\"calc\"},editType:\"calc\"}},{\"../color/attributes\":593}],662:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axis_ids\").list,a=t(\"../../plots/cartesian/autorange\").getAutoRange,i=t(\"./constants\");e.exports=function(t){for(var e=n(t,\"x\",!0),r=0;r<e.length;r++){var o=e[r],s=o[i.name];s&&s.visible&&s.autorange&&(s._input.autorange=!0,s._input.range=s.range=a(t,o))}}},{\"../../plots/cartesian/autorange\":766,\"../../plots/cartesian/axis_ids\":770,\"./constants\":663}],663:[function(t,e,r){\"use strict\";e.exports={name:\"rangeslider\",containerClassName:\"rangeslider-container\",bgClassName:\"rangeslider-bg\",rangePlotClassName:\"rangeslider-rangeplot\",maskMinClassName:\"rangeslider-mask-min\",maskMaxClassName:\"rangeslider-mask-max\",slideBoxClassName:\"rangeslider-slidebox\",grabberMinClassName:\"rangeslider-grabber-min\",grabAreaMinClassName:\"rangeslider-grabarea-min\",handleMinClassName:\"rangeslider-handle-min\",grabberMaxClassName:\"rangeslider-grabber-max\",grabAreaMaxClassName:\"rangeslider-grabarea-max\",handleMaxClassName:\"rangeslider-handle-max\",maskMinOppAxisClassName:\"rangeslider-mask-min-opp-axis\",maskMaxOppAxisClassName:\"rangeslider-mask-max-opp-axis\",maskColor:\"rgba(0,0,0,0.4)\",maskOppAxisColor:\"rgba(0,0,0,0.2)\",slideBoxFill:\"transparent\",slideBoxCursor:\"ew-resize\",grabAreaFill:\"transparent\",grabAreaCursor:\"col-resize\",grabAreaWidth:10,handleWidth:4,handleRadius:1,handleStrokeWidth:1,extraPad:15}},{}],664:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plot_api/plot_template\"),i=t(\"../../plots/cartesian/axis_ids\"),o=t(\"./attributes\"),s=t(\"./oppaxis_attributes\");e.exports=function(t,e,r){var l=t[r],c=e[r];if(l.rangeslider||e._requestRangeslider[c._id]){n.isPlainObject(l.rangeslider)||(l.rangeslider={});var u,h,f=l.rangeslider,p=a.newContainer(c,\"rangeslider\");if(_(\"visible\")){_(\"bgcolor\",e.plot_bgcolor),_(\"bordercolor\"),_(\"borderwidth\"),_(\"thickness\"),_(\"autorange\",!c.isValidRange(f.range)),_(\"range\");var d=e._subplots;if(d)for(var g=d.cartesian.filter(function(t){return t.substr(0,t.indexOf(\"y\"))===i.name2id(r)}).map(function(t){return t.substr(t.indexOf(\"y\"),t.length)}),v=n.simpleMap(g,i.id2name),m=0;m<v.length;m++){var y=v[m];u=f[y]||{},h=a.newContainer(p,y,\"yaxis\");var x,b=e[y];u.range&&b.isValidRange(u.range)&&(x=\"fixed\"),\"match\"!==w(\"rangemode\",x)&&w(\"range\",b.range.slice())}p._input=f}}function _(t,e){return n.coerce(f,p,o,t,e)}function w(t,e){return n.coerce(u,h,s,t,e)}}},{\"../../lib\":719,\"../../plot_api/plot_template\":757,\"../../plots/cartesian/axis_ids\":770,\"./attributes\":661,\"./oppaxis_attributes\":668}],665:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../registry\"),i=t(\"../../plots/plots\"),o=t(\"../../lib\"),s=t(\"../drawing\"),l=t(\"../color\"),c=t(\"../titles\"),u=t(\"../../plots/cartesian\"),h=t(\"../../plots/cartesian/axis_ids\"),f=t(\"../dragelement\"),p=t(\"../../lib/setcursor\"),d=t(\"./constants\");function g(t,e,r,n){var a=o.ensureSingle(t,\"rect\",d.bgClassName,function(t){t.attr({x:0,y:0,\"shape-rendering\":\"crispEdges\"})}),i=n.borderwidth%2==0?n.borderwidth:n.borderwidth-1,l=-n._offsetShift,c=s.crispRound(e,n.borderwidth);a.attr({width:n._width+i,height:n._height+i,transform:\"translate(\"+l+\",\"+l+\")\",fill:n.bgcolor,stroke:n.bordercolor,\"stroke-width\":c})}function v(t,e,r,n){var a=e._fullLayout;o.ensureSingleById(a._topdefs,\"clipPath\",n._clipId,function(t){t.append(\"rect\").attr({x:0,y:0})}).select(\"rect\").attr({width:n._width,height:n._height})}function m(t,e,r,a){var l,c=e.calcdata,f=t.selectAll(\"g.\"+d.rangePlotClassName).data(r._subplotsWith,o.identity);f.enter().append(\"g\").attr(\"class\",function(t){return d.rangePlotClassName+\" \"+t}).call(s.setClipUrl,a._clipId,e),f.order(),f.exit().remove(),f.each(function(t,o){var s=n.select(this),f=0===o,p=h.getFromId(e,t,\"y\"),d=p._name,g=a[d],v={data:[],layout:{xaxis:{type:r.type,domain:[0,1],range:a.range.slice(),calendar:r.calendar},width:a._width,height:a._height,margin:{t:0,b:0,l:0,r:0}},_context:e._context};v.layout[d]={type:p.type,domain:[0,1],range:\"match\"!==g.rangemode?g.range.slice():p.range.slice(),calendar:p.calendar},i.supplyDefaults(v);var m=v._fullLayout.xaxis,y=v._fullLayout[d];m.clearCalc(),m.setScale(),y.clearCalc(),y.setScale();var x={id:t,plotgroup:s,xaxis:m,yaxis:y,isRangePlot:!0};f?l=x:(x.mainplot=\"xy\",x.mainplotinfo=l),u.rangePlot(e,x,function(t,e){for(var r=[],n=0;n<t.length;n++){var a=t[n],i=a[0].trace;i.xaxis+i.yaxis===e&&r.push(a)}return r}(c,t))})}function y(t,e,r,n,a){(o.ensureSingle(t,\"rect\",d.maskMinClassName,function(t){t.attr({x:0,y:0,\"shape-rendering\":\"crispEdges\"})}).attr(\"height\",n._height).call(l.fill,d.maskColor),o.ensureSingle(t,\"rect\",d.maskMaxClassName,function(t){t.attr({y:0,\"shape-rendering\":\"crispEdges\"})}).attr(\"height\",n._height).call(l.fill,d.maskColor),\"match\"!==a.rangemode)&&(o.ensureSingle(t,\"rect\",d.maskMinOppAxisClassName,function(t){t.attr({y:0,\"shape-rendering\":\"crispEdges\"})}).attr(\"width\",n._width).call(l.fill,d.maskOppAxisColor),o.ensureSingle(t,\"rect\",d.maskMaxOppAxisClassName,function(t){t.attr({y:0,\"shape-rendering\":\"crispEdges\"})}).attr(\"width\",n._width).style(\"border-top\",d.maskOppBorder).call(l.fill,d.maskOppAxisColor))}function x(t,e,r,n){e._context.staticPlot||o.ensureSingle(t,\"rect\",d.slideBoxClassName,function(t){t.attr({y:0,cursor:d.slideBoxCursor,\"shape-rendering\":\"crispEdges\"})}).attr({height:n._height,fill:d.slideBoxFill})}function b(t,e,r,n){var a=o.ensureSingle(t,\"g\",d.grabberMinClassName),i=o.ensureSingle(t,\"g\",d.grabberMaxClassName),s={x:0,width:d.handleWidth,rx:d.handleRadius,fill:l.background,stroke:l.defaultLine,\"stroke-width\":d.handleStrokeWidth,\"shape-rendering\":\"crispEdges\"},c={y:Math.round(n._height/4),height:Math.round(n._height/2)};if(o.ensureSingle(a,\"rect\",d.handleMinClassName,function(t){t.attr(s)}).attr(c),o.ensureSingle(i,\"rect\",d.handleMaxClassName,function(t){t.attr(s)}).attr(c),!e._context.staticPlot){var u={width:d.grabAreaWidth,x:0,y:0,fill:d.grabAreaFill,cursor:d.grabAreaCursor};o.ensureSingle(a,\"rect\",d.grabAreaMinClassName,function(t){t.attr(u)}).attr(\"height\",n._height),o.ensureSingle(i,\"rect\",d.grabAreaMaxClassName,function(t){t.attr(u)}).attr(\"height\",n._height)}}e.exports=function(t){for(var e=t._fullLayout,r=e._rangeSliderData,i=0;i<r.length;i++){var s=r[i][d.name];s._clipId=s._id+\"-\"+e._uid}var l=e._infolayer.selectAll(\"g.\"+d.containerClassName).data(r,function(t){return t._name});l.exit().each(function(t){var r=t[d.name];e._topdefs.select(\"#\"+r._clipId).remove()}).remove(),0!==r.length&&(l.enter().append(\"g\").classed(d.containerClassName,!0).attr(\"pointer-events\",\"all\"),l.each(function(r){var i=n.select(this),s=r[d.name],l=e[h.id2name(r.anchor)],u=s[h.id2name(r.anchor)];if(s.range){var _,w=o.simpleMap(s.range,r.r2l),k=o.simpleMap(r.range,r.r2l);_=k[0]<k[1]?[Math.min(w[0],k[0]),Math.max(w[1],k[1])]:[Math.max(w[0],k[0]),Math.min(w[1],k[1])],s.range=s._input.range=o.simpleMap(_,r.l2r)}r.cleanRange(\"rangeslider.range\");var T=e._size,A=r.domain;s._width=T.w*(A[1]-A[0]);var M=Math.round(T.l+T.w*A[0]),S=Math.round(T.t+T.h*(1-r._counterDomainMin)+(\"bottom\"===r.side?r._depth:0)+s._offsetShift+d.extraPad);i.attr(\"transform\",\"translate(\"+M+\",\"+S+\")\");var E=r.r2l(s.range[0]),C=r.r2l(s.range[1]),L=C-E;if(s.p2d=function(t){return t/s._width*L+E},s.d2p=function(t){return(t-E)/L*s._width},s._rl=[E,C],\"match\"!==u.rangemode){var P=l.r2l(u.range[0]),O=l.r2l(u.range[1])-P;s.d2pOppAxis=function(t){return(t-P)/O*s._height}}i.call(g,t,r,s).call(v,t,r,s).call(m,t,r,s).call(y,t,r,s,u).call(x,t,r,s).call(b,t,r,s),function(t,e,r,i){var s=t.select(\"rect.\"+d.slideBoxClassName).node(),l=t.select(\"rect.\"+d.grabAreaMinClassName).node(),c=t.select(\"rect.\"+d.grabAreaMaxClassName).node();t.on(\"mousedown\",function(){var u=n.event,h=u.target,d=u.clientX,g=d-t.node().getBoundingClientRect().left,v=i.d2p(r._rl[0]),m=i.d2p(r._rl[1]),y=f.coverSlip();function x(t){var u,f,x,b=+t.clientX-d;switch(h){case s:x=\"ew-resize\",u=v+b,f=m+b;break;case l:x=\"col-resize\",u=v+b,f=m;break;case c:x=\"col-resize\",u=v,f=m+b;break;default:x=\"ew-resize\",u=g,f=g+b}if(f<u){var _=f;f=u,u=_}i._pixelMin=u,i._pixelMax=f,p(n.select(y),x),function(t,e,r,n){function i(t){return r.l2r(o.constrain(t,n._rl[0],n._rl[1]))}var s=i(n.p2d(n._pixelMin)),l=i(n.p2d(n._pixelMax));window.requestAnimationFrame(function(){a.call(\"_guiRelayout\",e,r._name+\".range\",[s,l])})}(0,e,r,i)}y.addEventListener(\"mousemove\",x),y.addEventListener(\"mouseup\",function t(){y.removeEventListener(\"mousemove\",x);y.removeEventListener(\"mouseup\",t);o.removeElement(y)})})}(i,t,r,s),function(t,e,r,n,a,i){var s=d.handleWidth/2;function l(t){return o.constrain(t,0,n._width)}function c(t){return o.constrain(t,0,n._height)}function u(t){return o.constrain(t,-s,n._width+s)}var h=l(n.d2p(r._rl[0])),f=l(n.d2p(r._rl[1]));if(t.select(\"rect.\"+d.slideBoxClassName).attr(\"x\",h).attr(\"width\",f-h),t.select(\"rect.\"+d.maskMinClassName).attr(\"width\",h),t.select(\"rect.\"+d.maskMaxClassName).attr(\"x\",f).attr(\"width\",n._width-f),\"match\"!==i.rangemode){var p=n._height-c(n.d2pOppAxis(a._rl[1])),g=n._height-c(n.d2pOppAxis(a._rl[0]));t.select(\"rect.\"+d.maskMinOppAxisClassName).attr(\"x\",h).attr(\"height\",p).attr(\"width\",f-h),t.select(\"rect.\"+d.maskMaxOppAxisClassName).attr(\"x\",h).attr(\"y\",g).attr(\"height\",n._height-g).attr(\"width\",f-h),t.select(\"rect.\"+d.slideBoxClassName).attr(\"y\",p).attr(\"height\",g-p)}var v=Math.round(u(h-s))-.5,m=Math.round(u(f-s))+.5;t.select(\"g.\"+d.grabberMinClassName).attr(\"transform\",\"translate(\"+v+\",0.5)\"),t.select(\"g.\"+d.grabberMaxClassName).attr(\"transform\",\"translate(\"+m+\",0.5)\")}(i,0,r,s,l,u),\"bottom\"===r.side&&c.draw(t,r._id+\"title\",{propContainer:r,propName:r._name+\".title\",placeholder:e._dfltTitle.x,attributes:{x:r._offset+r._length/2,y:S+s._height+s._offsetShift+10+1.5*r.title.font.size,\"text-anchor\":\"middle\"}})}))}},{\"../../lib\":719,\"../../lib/setcursor\":739,\"../../plots/cartesian\":778,\"../../plots/cartesian/axis_ids\":770,\"../../plots/plots\":828,\"../../registry\":848,\"../color\":594,\"../dragelement\":612,\"../drawing\":615,\"../titles\":681,\"./constants\":663,d3:164}],666:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axis_ids\"),a=t(\"../../lib/svg_text_utils\"),i=t(\"./constants\"),o=t(\"../../constants/alignment\").LINE_SPACING,s=i.name;function l(t){var e=t&&t[s];return e&&e.visible}r.isVisible=l,r.makeData=function(t){var e=n.list({_fullLayout:t},\"x\",!0),r=t.margin,a=[];if(!t._has(\"gl2d\"))for(var i=0;i<e.length;i++){var o=e[i];if(l(o)){a.push(o);var c=o[s];c._id=s+o._id,c._height=(t.height-r.b-r.t)*c.thickness,c._offsetShift=Math.floor(c.borderwidth/2)}}t._rangeSliderData=a},r.autoMarginOpts=function(t,e){var r=t._fullLayout,n=e[s],l=e._id.charAt(0),c=0,u=0;\"bottom\"===e.side&&(c=e._depth,e.title.text!==r._dfltTitle[l]&&(u=1.5*e.title.font.size+10+n._offsetShift,u+=(e.title.text.match(a.BR_TAG_ALL)||[]).length*e.title.font.size*o));return{x:0,y:e._counterDomainMin,l:0,r:0,t:0,b:n._height+c+Math.max(r.margin.b,u),pad:i.extraPad+2*n._offsetShift}}},{\"../../constants/alignment\":688,\"../../lib/svg_text_utils\":743,\"../../plots/cartesian/axis_ids\":770,\"./constants\":663}],667:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./attributes\"),i=t(\"./oppaxis_attributes\"),o=t(\"./helpers\");e.exports={moduleType:\"component\",name:\"rangeslider\",schema:{subplots:{xaxis:{rangeslider:n.extendFlat({},a,{yaxis:i})}}},layoutAttributes:t(\"./attributes\"),handleDefaults:t(\"./defaults\"),calcAutorange:t(\"./calc_autorange\"),draw:t(\"./draw\"),isVisible:o.isVisible,makeData:o.makeData,autoMarginOpts:o.autoMarginOpts}},{\"../../lib\":719,\"./attributes\":661,\"./calc_autorange\":662,\"./defaults\":664,\"./draw\":665,\"./helpers\":666,\"./oppaxis_attributes\":668}],668:[function(t,e,r){\"use strict\";e.exports={_isSubplotObj:!0,rangemode:{valType:\"enumerated\",values:[\"auto\",\"fixed\",\"match\"],dflt:\"match\",editType:\"calc\"},range:{valType:\"info_array\",items:[{valType:\"any\",editType:\"plot\"},{valType:\"any\",editType:\"plot\"}],editType:\"plot\"},editType:\"calc\"}},{}],669:[function(t,e,r){\"use strict\";var n=t(\"../annotations/attributes\"),a=t(\"../../traces/scatter/attributes\").line,i=t(\"../drawing/attributes\").dash,o=t(\"../../lib/extend\").extendFlat,s=t(\"../../plot_api/plot_template\").templatedArray;e.exports=s(\"shape\",{visible:{valType:\"boolean\",dflt:!0,editType:\"calc+arraydraw\"},type:{valType:\"enumerated\",values:[\"circle\",\"rect\",\"path\",\"line\"],editType:\"calc+arraydraw\"},layer:{valType:\"enumerated\",values:[\"below\",\"above\"],dflt:\"above\",editType:\"arraydraw\"},xref:o({},n.xref,{}),xsizemode:{valType:\"enumerated\",values:[\"scaled\",\"pixel\"],dflt:\"scaled\",editType:\"calc+arraydraw\"},xanchor:{valType:\"any\",editType:\"calc+arraydraw\"},x0:{valType:\"any\",editType:\"calc+arraydraw\"},x1:{valType:\"any\",editType:\"calc+arraydraw\"},yref:o({},n.yref,{}),ysizemode:{valType:\"enumerated\",values:[\"scaled\",\"pixel\"],dflt:\"scaled\",editType:\"calc+arraydraw\"},yanchor:{valType:\"any\",editType:\"calc+arraydraw\"},y0:{valType:\"any\",editType:\"calc+arraydraw\"},y1:{valType:\"any\",editType:\"calc+arraydraw\"},path:{valType:\"string\",editType:\"calc+arraydraw\"},opacity:{valType:\"number\",min:0,max:1,dflt:1,editType:\"arraydraw\"},line:{color:o({},a.color,{editType:\"arraydraw\"}),width:o({},a.width,{editType:\"calc+arraydraw\"}),dash:o({},i,{editType:\"arraydraw\"}),editType:\"calc+arraydraw\"},fillcolor:{valType:\"color\",dflt:\"rgba(0,0,0,0)\",editType:\"arraydraw\"},editType:\"arraydraw\"})},{\"../../lib/extend\":710,\"../../plot_api/plot_template\":757,\"../../traces/scatter/attributes\":1111,\"../annotations/attributes\":577,\"../drawing/attributes\":614}],670:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"./constants\"),o=t(\"./helpers\");function s(t){return c(t.line.width,t.xsizemode,t.x0,t.x1,t.path,!1)}function l(t){return c(t.line.width,t.ysizemode,t.y0,t.y1,t.path,!0)}function c(t,e,r,a,s,l){var c=t/2,u=l;if(\"pixel\"===e){var h=s?o.extractPathCoords(s,l?i.paramIsY:i.paramIsX):[r,a],f=n.aggNums(Math.max,null,h),p=n.aggNums(Math.min,null,h),d=p<0?Math.abs(p)+c:c,g=f>0?f+c:c;return{ppad:c,ppadplus:u?d:g,ppadminus:u?g:d}}return{ppad:c}}function u(t,e,r,n,a){var s=\"category\"===t.type||\"multicategory\"===t.type?t.r2c:t.d2c;if(void 0!==e)return[s(e),s(r)];if(n){var l,c,u,h,f=1/0,p=-1/0,d=n.match(i.segmentRE);for(\"date\"===t.type&&(s=o.decodeDate(s)),l=0;l<d.length;l++)void 0!==(c=a[d[l].charAt(0)].drawn)&&(!(u=d[l].substr(1).match(i.paramRE))||u.length<c||((h=s(u[c]))<f&&(f=h),h>p&&(p=h)));return p>=f?[f,p]:void 0}}e.exports=function(t){var e=t._fullLayout,r=n.filterVisible(e.shapes);if(r.length&&t._fullData.length)for(var o=0;o<r.length;o++){var c,h,f=r[o];if(f._extremes={},\"paper\"!==f.xref){var p=\"pixel\"===f.xsizemode?f.xanchor:f.x0,d=\"pixel\"===f.xsizemode?f.xanchor:f.x1;(h=u(c=a.getFromId(t,f.xref),p,d,f.path,i.paramIsX))&&(f._extremes[c._id]=a.findExtremes(c,h,s(f)))}if(\"paper\"!==f.yref){var g=\"pixel\"===f.ysizemode?f.yanchor:f.y0,v=\"pixel\"===f.ysizemode?f.yanchor:f.y1;(h=u(c=a.getFromId(t,f.yref),g,v,f.path,i.paramIsY))&&(f._extremes[c._id]=a.findExtremes(c,h,l(f)))}}}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"./constants\":671,\"./helpers\":674}],671:[function(t,e,r){\"use strict\";e.exports={segmentRE:/[MLHVQCTSZ][^MLHVQCTSZ]*/g,paramRE:/[^\\s,]+/g,paramIsX:{M:{0:!0,drawn:0},L:{0:!0,drawn:0},H:{0:!0,drawn:0},V:{},Q:{0:!0,2:!0,drawn:2},C:{0:!0,2:!0,4:!0,drawn:4},T:{0:!0,drawn:0},S:{0:!0,2:!0,drawn:2},Z:{}},paramIsY:{M:{1:!0,drawn:1},L:{1:!0,drawn:1},H:{},V:{0:!0,drawn:0},Q:{1:!0,3:!0,drawn:3},C:{1:!0,3:!0,5:!0,drawn:5},T:{1:!0,drawn:1},S:{1:!0,3:!0,drawn:5},Z:{}},numParams:{M:2,L:2,H:1,V:1,Q:4,C:6,T:2,S:4,Z:0}}},{}],672:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"../../plots/array_container_defaults\"),o=t(\"./attributes\"),s=t(\"./helpers\");function l(t,e,r){function i(r,a){return n.coerce(t,e,o,r,a)}if(i(\"visible\")){i(\"layer\"),i(\"opacity\"),i(\"fillcolor\"),i(\"line.color\"),i(\"line.width\"),i(\"line.dash\");for(var l=i(\"type\",t.path?\"path\":\"rect\"),c=i(\"xsizemode\"),u=i(\"ysizemode\"),h=[\"x\",\"y\"],f=0;f<2;f++){var p,d,g,v=h[f],m=v+\"anchor\",y=\"x\"===v?c:u,x={_fullLayout:r},b=a.coerceRef(t,e,x,v,\"\",\"paper\");if(\"paper\"!==b?((p=a.getFromId(x,b))._shapeIndices.push(e._index),g=s.rangeToShapePosition(p),d=s.shapePositionToRange(p)):d=g=n.identity,\"path\"!==l){var _=v+\"0\",w=v+\"1\",k=t[_],T=t[w];t[_]=d(t[_],!0),t[w]=d(t[w],!0),\"pixel\"===y?(i(_,0),i(w,10)):(a.coercePosition(e,x,i,b,_,.25),a.coercePosition(e,x,i,b,w,.75)),e[_]=g(e[_]),e[w]=g(e[w]),t[_]=k,t[w]=T}if(\"pixel\"===y){var A=t[m];t[m]=d(t[m],!0),a.coercePosition(e,x,i,b,m,.25),e[m]=g(e[m]),t[m]=A}}\"path\"===l?i(\"path\"):n.noneOrAll(t,e,[\"x0\",\"x1\",\"y0\",\"y1\"])}}e.exports=function(t,e){i(t,e,{name:\"shapes\",handleItemDefaults:l})}},{\"../../lib\":719,\"../../plots/array_container_defaults\":763,\"../../plots/cartesian/axes\":767,\"./attributes\":669,\"./helpers\":674}],673:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\"),i=t(\"../../plots/cartesian/axes\"),o=t(\"../color\"),s=t(\"../drawing\"),l=t(\"../../plot_api/plot_template\").arrayEditor,c=t(\"../dragelement\"),u=t(\"../../lib/setcursor\"),h=t(\"./constants\"),f=t(\"./helpers\");function p(t,e){t._fullLayout._paperdiv.selectAll('.shapelayer [data-index=\"'+e+'\"]').remove();var r=t._fullLayout.shapes[e]||{};if(r._input&&!1!==r.visible)if(\"below\"!==r.layer)m(t._fullLayout._shapeUpperLayer);else if(\"paper\"===r.xref||\"paper\"===r.yref)m(t._fullLayout._shapeLowerLayer);else{var p=t._fullLayout._plots[r.xref+r.yref];if(p)m((p.mainplotinfo||p).shapelayer);else m(t._fullLayout._shapeLowerLayer)}function m(p){var m={\"data-index\":e,\"fill-rule\":\"evenodd\",d:g(t,r)},y=r.line.width?r.line.color:\"rgba(0,0,0,0)\",x=p.append(\"path\").attr(m).style(\"opacity\",r.opacity).call(o.stroke,y).call(o.fill,r.fillcolor).call(s.dashLine,r.line.dash,r.line.width);d(x,t,r),t._context.edits.shapePosition&&function(t,e,r,o,p){var m,y,x,b,_,w,k,T,A,M,S,E,C,L,P,O,I=10,z=10,D=\"pixel\"===r.xsizemode,R=\"pixel\"===r.ysizemode,F=\"line\"===r.type,B=\"path\"===r.type,N=l(t.layout,\"shapes\",r),j=N.modifyItem,V=i.getFromId(t,r.xref),U=i.getFromId(t,r.yref),q=f.getDataToPixel(t,V),H=f.getDataToPixel(t,U,!0),G=f.getPixelToData(t,V),Y=f.getPixelToData(t,U,!0),W=F?function(){var t=Math.max(r.line.width,10),n=p.append(\"g\").attr(\"data-index\",o);n.append(\"path\").attr(\"d\",e.attr(\"d\")).style({cursor:\"move\",\"stroke-width\":t,\"stroke-opacity\":\"0\"});var a={\"fill-opacity\":\"0\"},i=t/2>10?t/2:10;return n.append(\"circle\").attr({\"data-line-point\":\"start-point\",cx:D?q(r.xanchor)+r.x0:q(r.x0),cy:R?H(r.yanchor)-r.y0:H(r.y0),r:i}).style(a).classed(\"cursor-grab\",!0),n.append(\"circle\").attr({\"data-line-point\":\"end-point\",cx:D?q(r.xanchor)+r.x1:q(r.x1),cy:R?H(r.yanchor)-r.y1:H(r.y1),r:i}).style(a).classed(\"cursor-grab\",!0),n}():e,X={element:W.node(),gd:t,prepFn:function(n){D&&(_=q(r.xanchor));R&&(w=H(r.yanchor));\"path\"===r.type?P=r.path:(m=D?r.x0:q(r.x0),y=R?r.y0:H(r.y0),x=D?r.x1:q(r.x1),b=R?r.y1:H(r.y1));m<x?(A=m,C=\"x0\",M=x,L=\"x1\"):(A=x,C=\"x1\",M=m,L=\"x0\");!R&&y<b||R&&y>b?(k=y,S=\"y0\",T=b,E=\"y1\"):(k=b,S=\"y1\",T=y,E=\"y0\");Z(n),Q(p,r),function(t,e,r){var n=e.xref,a=e.yref,o=i.getFromId(r,n),l=i.getFromId(r,a),c=\"\";\"paper\"===n||o.autorange||(c+=n);\"paper\"===a||l.autorange||(c+=a);s.setClipUrl(t,c?\"clip\"+r._fullLayout._uid+c:null,r)}(e,r,t),X.moveFn=\"move\"===O?J:K},doneFn:function(){u(e),$(p),d(e,t,r),n.call(\"_guiRelayout\",t,N.getUpdateObj())},clickFn:function(){$(p)}};function Z(t){if(F)O=\"path\"===t.target.tagName?\"move\":\"start-point\"===t.target.attributes[\"data-line-point\"].value?\"resize-over-start-point\":\"resize-over-end-point\";else{var r=X.element.getBoundingClientRect(),n=r.right-r.left,a=r.bottom-r.top,i=t.clientX-r.left,o=t.clientY-r.top,s=!B&&n>I&&a>z&&!t.shiftKey?c.getCursor(i/n,1-o/a):\"move\";u(e,s),O=s.split(\"-\")[0]}}function J(n,a){if(\"path\"===r.type){var i=function(t){return t},o=i,s=i;D?j(\"xanchor\",r.xanchor=G(_+n)):(o=function(t){return G(q(t)+n)},V&&\"date\"===V.type&&(o=f.encodeDate(o))),R?j(\"yanchor\",r.yanchor=Y(w+a)):(s=function(t){return Y(H(t)+a)},U&&\"date\"===U.type&&(s=f.encodeDate(s))),j(\"path\",r.path=v(P,o,s))}else D?j(\"xanchor\",r.xanchor=G(_+n)):(j(\"x0\",r.x0=G(m+n)),j(\"x1\",r.x1=G(x+n))),R?j(\"yanchor\",r.yanchor=Y(w+a)):(j(\"y0\",r.y0=Y(y+a)),j(\"y1\",r.y1=Y(b+a)));e.attr(\"d\",g(t,r)),Q(p,r)}function K(n,a){if(B){var i=function(t){return t},o=i,s=i;D?j(\"xanchor\",r.xanchor=G(_+n)):(o=function(t){return G(q(t)+n)},V&&\"date\"===V.type&&(o=f.encodeDate(o))),R?j(\"yanchor\",r.yanchor=Y(w+a)):(s=function(t){return Y(H(t)+a)},U&&\"date\"===U.type&&(s=f.encodeDate(s))),j(\"path\",r.path=v(P,o,s))}else if(F){if(\"resize-over-start-point\"===O){var l=m+n,c=R?y-a:y+a;j(\"x0\",r.x0=D?l:G(l)),j(\"y0\",r.y0=R?c:Y(c))}else if(\"resize-over-end-point\"===O){var u=x+n,h=R?b-a:b+a;j(\"x1\",r.x1=D?u:G(u)),j(\"y1\",r.y1=R?h:Y(h))}}else{var d=~O.indexOf(\"n\")?k+a:k,N=~O.indexOf(\"s\")?T+a:T,W=~O.indexOf(\"w\")?A+n:A,X=~O.indexOf(\"e\")?M+n:M;~O.indexOf(\"n\")&&R&&(d=k-a),~O.indexOf(\"s\")&&R&&(N=T-a),(!R&&N-d>z||R&&d-N>z)&&(j(S,r[S]=R?d:Y(d)),j(E,r[E]=R?N:Y(N))),X-W>I&&(j(C,r[C]=D?W:G(W)),j(L,r[L]=D?X:G(X)))}e.attr(\"d\",g(t,r)),Q(p,r)}function Q(t,e){(D||R)&&function(){var r=\"path\"!==e.type,n=t.selectAll(\".visual-cue\").data([0]);n.enter().append(\"path\").attr({fill:\"#fff\",\"fill-rule\":\"evenodd\",stroke:\"#000\",\"stroke-width\":1}).classed(\"visual-cue\",!0);var i=q(D?e.xanchor:a.midRange(r?[e.x0,e.x1]:f.extractPathCoords(e.path,h.paramIsX))),o=H(R?e.yanchor:a.midRange(r?[e.y0,e.y1]:f.extractPathCoords(e.path,h.paramIsY)));if(i=f.roundPositionForSharpStrokeRendering(i,1),o=f.roundPositionForSharpStrokeRendering(o,1),D&&R){var s=\"M\"+(i-1-1)+\",\"+(o-1-1)+\"h-8v2h8 v8h2v-8 h8v-2h-8 v-8h-2 Z\";n.attr(\"d\",s)}else if(D){var l=\"M\"+(i-1-1)+\",\"+(o-9-1)+\"v18 h2 v-18 Z\";n.attr(\"d\",l)}else{var c=\"M\"+(i-9-1)+\",\"+(o-1-1)+\"h18 v2 h-18 Z\";n.attr(\"d\",c)}}()}function $(t){t.selectAll(\".visual-cue\").remove()}c.init(X),W.node().onmousemove=Z}(t,x,r,e,p)}}function d(t,e,r){var n=(r.xref+r.yref).replace(/paper/g,\"\");s.setClipUrl(t,n?\"clip\"+e._fullLayout._uid+n:null,e)}function g(t,e){var r,n,o,s,l,c,u,p,d=e.type,g=i.getFromId(t,e.xref),v=i.getFromId(t,e.yref),m=t._fullLayout._size;if(g?(r=f.shapePositionToRange(g),n=function(t){return g._offset+g.r2p(r(t,!0))}):n=function(t){return m.l+m.w*t},v?(o=f.shapePositionToRange(v),s=function(t){return v._offset+v.r2p(o(t,!0))}):s=function(t){return m.t+m.h*(1-t)},\"path\"===d)return g&&\"date\"===g.type&&(n=f.decodeDate(n)),v&&\"date\"===v.type&&(s=f.decodeDate(s)),function(t,e,r){var n=t.path,i=t.xsizemode,o=t.ysizemode,s=t.xanchor,l=t.yanchor;return n.replace(h.segmentRE,function(t){var n=0,c=t.charAt(0),u=h.paramIsX[c],f=h.paramIsY[c],p=h.numParams[c],d=t.substr(1).replace(h.paramRE,function(t){return u[n]?t=\"pixel\"===i?e(s)+Number(t):e(t):f[n]&&(t=\"pixel\"===o?r(l)-Number(t):r(t)),++n>p&&(t=\"X\"),t});return n>p&&(d=d.replace(/[\\s,]*X.*/,\"\"),a.log(\"Ignoring extra params in segment \"+t)),c+d})}(e,n,s);if(\"pixel\"===e.xsizemode){var y=n(e.xanchor);l=y+e.x0,c=y+e.x1}else l=n(e.x0),c=n(e.x1);if(\"pixel\"===e.ysizemode){var x=s(e.yanchor);u=x-e.y0,p=x-e.y1}else u=s(e.y0),p=s(e.y1);if(\"line\"===d)return\"M\"+l+\",\"+u+\"L\"+c+\",\"+p;if(\"rect\"===d)return\"M\"+l+\",\"+u+\"H\"+c+\"V\"+p+\"H\"+l+\"Z\";var b=(l+c)/2,_=(u+p)/2,w=Math.abs(b-l),k=Math.abs(_-u),T=\"A\"+w+\",\"+k,A=b+w+\",\"+_;return\"M\"+A+T+\" 0 1,1 \"+(b+\",\"+(_-k))+T+\" 0 0,1 \"+A+\"Z\"}function v(t,e,r){return t.replace(h.segmentRE,function(t){var n=0,a=t.charAt(0),i=h.paramIsX[a],o=h.paramIsY[a],s=h.numParams[a];return a+t.substr(1).replace(h.paramRE,function(t){return n>=s?t:(i[n]?t=e(t):o[n]&&(t=r(t)),n++,t)})})}e.exports={draw:function(t){var e=t._fullLayout;for(var r in e._shapeUpperLayer.selectAll(\"path\").remove(),e._shapeLowerLayer.selectAll(\"path\").remove(),e._plots){var n=e._plots[r].shapelayer;n&&n.selectAll(\"path\").remove()}for(var a=0;a<e.shapes.length;a++)e.shapes[a].visible&&p(t,a)},drawOne:p}},{\"../../lib\":719,\"../../lib/setcursor\":739,\"../../plot_api/plot_template\":757,\"../../plots/cartesian/axes\":767,\"../../registry\":848,\"../color\":594,\"../dragelement\":612,\"../drawing\":615,\"./constants\":671,\"./helpers\":674}],674:[function(t,e,r){\"use strict\";var n=t(\"./constants\"),a=t(\"../../lib\");r.rangeToShapePosition=function(t){return\"log\"===t.type?t.r2d:function(t){return t}},r.shapePositionToRange=function(t){return\"log\"===t.type?t.d2r:function(t){return t}},r.decodeDate=function(t){return function(e){return e.replace&&(e=e.replace(\"_\",\" \")),t(e)}},r.encodeDate=function(t){return function(e){return t(e).replace(\" \",\"_\")}},r.extractPathCoords=function(t,e){var r=[];return t.match(n.segmentRE).forEach(function(t){var i=e[t.charAt(0)].drawn;if(void 0!==i){var o=t.substr(1).match(n.paramRE);!o||o.length<i||r.push(a.cleanNumber(o[i]))}}),r},r.getDataToPixel=function(t,e,n){var a,i=t._fullLayout._size;if(e){var o=r.shapePositionToRange(e);a=function(t){return e._offset+e.r2p(o(t,!0))},\"date\"===e.type&&(a=r.decodeDate(a))}else a=n?function(t){return i.t+i.h*(1-t)}:function(t){return i.l+i.w*t};return a},r.getPixelToData=function(t,e,n){var a,i=t._fullLayout._size;if(e){var o=r.rangeToShapePosition(e);a=function(t){return o(e.p2r(t-e._offset))}}else a=n?function(t){return 1-(t-i.t)/i.h}:function(t){return(t-i.l)/i.w};return a},r.roundPositionForSharpStrokeRendering=function(t,e){var r=1===Math.round(e%2),n=Math.round(t);return r?n+.5:n}},{\"../../lib\":719,\"./constants\":671}],675:[function(t,e,r){\"use strict\";var n=t(\"./draw\");e.exports={moduleType:\"component\",name:\"shapes\",layoutAttributes:t(\"./attributes\"),supplyLayoutDefaults:t(\"./defaults\"),includeBasePlot:t(\"../../plots/cartesian/include_components\")(\"shapes\"),calcAutorange:t(\"./calc_autorange\"),draw:n.draw,drawOne:n.drawOne}},{\"../../plots/cartesian/include_components\":777,\"./attributes\":669,\"./calc_autorange\":670,\"./defaults\":672,\"./draw\":673}],676:[function(t,e,r){\"use strict\";var n=t(\"../../plots/font_attributes\"),a=t(\"../../plots/pad_attributes\"),i=t(\"../../lib/extend\").extendDeepAll,o=t(\"../../plot_api/edit_types\").overrideAll,s=t(\"../../plots/animation_attributes\"),l=t(\"../../plot_api/plot_template\").templatedArray,c=t(\"./constants\"),u=l(\"step\",{visible:{valType:\"boolean\",dflt:!0},method:{valType:\"enumerated\",values:[\"restyle\",\"relayout\",\"animate\",\"update\",\"skip\"],dflt:\"restyle\"},args:{valType:\"info_array\",freeLength:!0,items:[{valType:\"any\"},{valType:\"any\"},{valType:\"any\"}]},label:{valType:\"string\"},value:{valType:\"string\"},execute:{valType:\"boolean\",dflt:!0}});e.exports=o(l(\"slider\",{visible:{valType:\"boolean\",dflt:!0},active:{valType:\"number\",min:0,dflt:0},steps:u,lenmode:{valType:\"enumerated\",values:[\"fraction\",\"pixels\"],dflt:\"fraction\"},len:{valType:\"number\",min:0,dflt:1},x:{valType:\"number\",min:-2,max:3,dflt:0},pad:i(a({editType:\"arraydraw\"}),{},{t:{dflt:20}}),xanchor:{valType:\"enumerated\",values:[\"auto\",\"left\",\"center\",\"right\"],dflt:\"left\"},y:{valType:\"number\",min:-2,max:3,dflt:0},yanchor:{valType:\"enumerated\",values:[\"auto\",\"top\",\"middle\",\"bottom\"],dflt:\"top\"},transition:{duration:{valType:\"number\",min:0,dflt:150},easing:{valType:\"enumerated\",values:s.transition.easing.values,dflt:\"cubic-in-out\"}},currentvalue:{visible:{valType:\"boolean\",dflt:!0},xanchor:{valType:\"enumerated\",values:[\"left\",\"center\",\"right\"],dflt:\"left\"},offset:{valType:\"number\",dflt:10},prefix:{valType:\"string\"},suffix:{valType:\"string\"},font:n({})},font:n({}),activebgcolor:{valType:\"color\",dflt:c.gripBgActiveColor},bgcolor:{valType:\"color\",dflt:c.railBgColor},bordercolor:{valType:\"color\",dflt:c.railBorderColor},borderwidth:{valType:\"number\",min:0,dflt:c.railBorderWidth},ticklen:{valType:\"number\",min:0,dflt:c.tickLength},tickcolor:{valType:\"color\",dflt:c.tickColor},tickwidth:{valType:\"number\",min:0,dflt:1},minorticklen:{valType:\"number\",min:0,dflt:c.minorTickLength}}),\"arraydraw\",\"from-root\")},{\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../../plot_api/plot_template\":757,\"../../plots/animation_attributes\":762,\"../../plots/font_attributes\":793,\"../../plots/pad_attributes\":827,\"./constants\":677}],677:[function(t,e,r){\"use strict\";e.exports={name:\"sliders\",containerClassName:\"slider-container\",groupClassName:\"slider-group\",inputAreaClass:\"slider-input-area\",railRectClass:\"slider-rail-rect\",railTouchRectClass:\"slider-rail-touch-rect\",gripRectClass:\"slider-grip-rect\",tickRectClass:\"slider-tick-rect\",inputProxyClass:\"slider-input-proxy\",labelsClass:\"slider-labels\",labelGroupClass:\"slider-label-group\",labelClass:\"slider-label\",currentValueClass:\"slider-current-value\",railHeight:5,menuIndexAttrName:\"slider-active-index\",autoMarginIdRoot:\"slider-\",minWidth:30,minHeight:30,textPadX:40,arrowOffsetX:4,railRadius:2,railWidth:5,railBorder:4,railBorderWidth:1,railBorderColor:\"#bec8d9\",railBgColor:\"#f8fafc\",railInset:8,stepInset:10,gripRadius:10,gripWidth:20,gripHeight:20,gripBorder:20,gripBorderWidth:1,gripBorderColor:\"#bec8d9\",gripBgColor:\"#f6f8fa\",gripBgActiveColor:\"#dbdde0\",labelPadding:8,labelOffset:0,tickWidth:1,tickColor:\"#333\",tickOffset:25,tickLength:7,minorTickOffset:25,minorTickColor:\"#333\",minorTickLength:4,currentValuePadding:8,currentValueInset:0}},{}],678:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/array_container_defaults\"),i=t(\"./attributes\"),o=t(\"./constants\").name,s=i.steps;function l(t,e,r){function o(r,a){return n.coerce(t,e,i,r,a)}for(var s=a(t,e,{name:\"steps\",handleItemDefaults:c}),l=0,u=0;u<s.length;u++)s[u].visible&&l++;if(l<2?e.visible=!1:o(\"visible\")){e._stepCount=l;var h=e._visibleSteps=n.filterVisible(s);(s[o(\"active\")]||{}).visible||(e.active=h[0]._index),o(\"x\"),o(\"y\"),n.noneOrAll(t,e,[\"x\",\"y\"]),o(\"xanchor\"),o(\"yanchor\"),o(\"len\"),o(\"lenmode\"),o(\"pad.t\"),o(\"pad.r\"),o(\"pad.b\"),o(\"pad.l\"),n.coerceFont(o,\"font\",r.font),o(\"currentvalue.visible\")&&(o(\"currentvalue.xanchor\"),o(\"currentvalue.prefix\"),o(\"currentvalue.suffix\"),o(\"currentvalue.offset\"),n.coerceFont(o,\"currentvalue.font\",e.font)),o(\"transition.duration\"),o(\"transition.easing\"),o(\"bgcolor\"),o(\"activebgcolor\"),o(\"bordercolor\"),o(\"borderwidth\"),o(\"ticklen\"),o(\"tickwidth\"),o(\"tickcolor\"),o(\"minorticklen\")}}function c(t,e){function r(r,a){return n.coerce(t,e,s,r,a)}if(\"skip\"===t.method||Array.isArray(t.args)?r(\"visible\"):e.visible=!1){r(\"method\"),r(\"args\");var a=r(\"label\",\"step-\"+e._index);r(\"value\",a),r(\"execute\")}}e.exports=function(t,e){a(t,e,{name:o,handleItemDefaults:l})}},{\"../../lib\":719,\"../../plots/array_container_defaults\":763,\"./attributes\":676,\"./constants\":677}],679:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../plots/plots\"),i=t(\"../color\"),o=t(\"../drawing\"),s=t(\"../../lib\"),l=t(\"../../lib/svg_text_utils\"),c=t(\"../../plot_api/plot_template\").arrayEditor,u=t(\"./constants\"),h=t(\"../../constants/alignment\"),f=h.LINE_SPACING,p=h.FROM_TL,d=h.FROM_BR;function g(t){return u.autoMarginIdRoot+t._index}function v(t){return t._index}function m(t,e){var r=o.tester.selectAll(\"g.\"+u.labelGroupClass).data(e._visibleSteps);r.enter().append(\"g\").classed(u.labelGroupClass,!0);var i=0,c=0;r.each(function(t){var r=b(n.select(this),{step:t},e).node();if(r){var a=o.bBox(r);c=Math.max(c,a.height),i=Math.max(i,a.width)}}),r.remove();var h=e._dims={};h.inputAreaWidth=Math.max(u.railWidth,u.gripHeight);var f=t._fullLayout._size;h.lx=f.l+f.w*e.x,h.ly=f.t+f.h*(1-e.y),\"fraction\"===e.lenmode?h.outerLength=Math.round(f.w*e.len):h.outerLength=e.len,h.inputAreaStart=0,h.inputAreaLength=Math.round(h.outerLength-e.pad.l-e.pad.r);var v=(h.inputAreaLength-2*u.stepInset)/(e._stepCount-1),m=i+u.labelPadding;if(h.labelStride=Math.max(1,Math.ceil(m/v)),h.labelHeight=c,h.currentValueMaxWidth=0,h.currentValueHeight=0,h.currentValueTotalHeight=0,h.currentValueMaxLines=1,e.currentvalue.visible){var x=o.tester.append(\"g\");r.each(function(t){var r=y(x,e,t.label),n=r.node()&&o.bBox(r.node())||{width:0,height:0},a=l.lineCount(r);h.currentValueMaxWidth=Math.max(h.currentValueMaxWidth,Math.ceil(n.width)),h.currentValueHeight=Math.max(h.currentValueHeight,Math.ceil(n.height)),h.currentValueMaxLines=Math.max(h.currentValueMaxLines,a)}),h.currentValueTotalHeight=h.currentValueHeight+e.currentvalue.offset,x.remove()}h.height=h.currentValueTotalHeight+u.tickOffset+e.ticklen+u.labelOffset+h.labelHeight+e.pad.t+e.pad.b;var _=\"left\";s.isRightAnchor(e)&&(h.lx-=h.outerLength,_=\"right\"),s.isCenterAnchor(e)&&(h.lx-=h.outerLength/2,_=\"center\");var w=\"top\";s.isBottomAnchor(e)&&(h.ly-=h.height,w=\"bottom\"),s.isMiddleAnchor(e)&&(h.ly-=h.height/2,w=\"middle\"),h.outerLength=Math.ceil(h.outerLength),h.height=Math.ceil(h.height),h.lx=Math.round(h.lx),h.ly=Math.round(h.ly);var k={y:e.y,b:h.height*d[w],t:h.height*p[w]};\"fraction\"===e.lenmode?(k.l=0,k.xl=e.x-e.len*p[_],k.r=0,k.xr=e.x+e.len*d[_]):(k.x=e.x,k.l=h.outerLength*p[_],k.r=h.outerLength*d[_]),a.autoMargin(t,g(e),k)}function y(t,e,r){if(e.currentvalue.visible){var n,a,i=e._dims;switch(e.currentvalue.xanchor){case\"right\":n=i.inputAreaLength-u.currentValueInset-i.currentValueMaxWidth,a=\"left\";break;case\"center\":n=.5*i.inputAreaLength,a=\"middle\";break;default:n=u.currentValueInset,a=\"left\"}var c=s.ensureSingle(t,\"text\",u.labelClass,function(t){t.classed(\"user-select-none\",!0).attr({\"text-anchor\":a,\"data-notex\":1})}),h=e.currentvalue.prefix?e.currentvalue.prefix:\"\";if(\"string\"==typeof r)h+=r;else{var p=e.steps[e.active].label,d=e._gd._fullLayout._meta;d&&(p=s.templateString(p,d)),h+=p}e.currentvalue.suffix&&(h+=e.currentvalue.suffix),c.call(o.font,e.currentvalue.font).text(h).call(l.convertToTspans,e._gd);var g=l.lineCount(c),v=(i.currentValueMaxLines+1-g)*e.currentvalue.font.size*f;return l.positionText(c,n,v),c}}function x(t,e,r){s.ensureSingle(t,\"rect\",u.gripRectClass,function(n){n.call(T,e,t,r).style(\"pointer-events\",\"all\")}).attr({width:u.gripWidth,height:u.gripHeight,rx:u.gripRadius,ry:u.gripRadius}).call(i.stroke,r.bordercolor).call(i.fill,r.bgcolor).style(\"stroke-width\",r.borderwidth+\"px\")}function b(t,e,r){var n=s.ensureSingle(t,\"text\",u.labelClass,function(t){t.classed(\"user-select-none\",!0).attr({\"text-anchor\":\"middle\",\"data-notex\":1})}),a=e.step.label,i=r._gd._fullLayout._meta;return i&&(a=s.templateString(a,i)),n.call(o.font,r.font).text(a).call(l.convertToTspans,r._gd),n}function _(t,e){var r=s.ensureSingle(t,\"g\",u.labelsClass),a=e._dims,i=r.selectAll(\"g.\"+u.labelGroupClass).data(a.labelSteps);i.enter().append(\"g\").classed(u.labelGroupClass,!0),i.exit().remove(),i.each(function(t){var r=n.select(this);r.call(b,t,e),o.setTranslate(r,S(e,t.fraction),u.tickOffset+e.ticklen+e.font.size*f+u.labelOffset+a.currentValueTotalHeight)})}function w(t,e,r,n,a){var i=Math.round(n*(r._stepCount-1)),o=r._visibleSteps[i]._index;o!==r.active&&k(t,e,r,o,!0,a)}function k(t,e,r,n,i,o){var s=r.active;r.active=n,c(t.layout,u.name,r).applyUpdate(\"active\",n);var l=r.steps[r.active];e.call(M,r,o),e.call(y,r),t.emit(\"plotly_sliderchange\",{slider:r,step:r.steps[r.active],interaction:i,previousActive:s}),l&&l.method&&i&&(e._nextMethod?(e._nextMethod.step=l,e._nextMethod.doCallback=i,e._nextMethod.doTransition=o):(e._nextMethod={step:l,doCallback:i,doTransition:o},e._nextMethodRaf=window.requestAnimationFrame(function(){var r=e._nextMethod.step;r.method&&(r.execute&&a.executeAPICommand(t,r.method,r.args),e._nextMethod=null,e._nextMethodRaf=null)})))}function T(t,e,r){var a=r.node(),o=n.select(e);function s(){return r.data()[0]}t.on(\"mousedown\",function(){var t=s();e.emit(\"plotly_sliderstart\",{slider:t});var l=r.select(\".\"+u.gripRectClass);n.event.stopPropagation(),n.event.preventDefault(),l.call(i.fill,t.activebgcolor);var c=E(t,n.mouse(a)[0]);w(e,r,t,c,!0),t._dragging=!0,o.on(\"mousemove\",function(){var t=s(),i=E(t,n.mouse(a)[0]);w(e,r,t,i,!1)}),o.on(\"mouseup\",function(){var t=s();t._dragging=!1,l.call(i.fill,t.bgcolor),o.on(\"mouseup\",null),o.on(\"mousemove\",null),e.emit(\"plotly_sliderend\",{slider:t,step:t.steps[t.active]})})})}function A(t,e){var r=t.selectAll(\"rect.\"+u.tickRectClass).data(e._visibleSteps),a=e._dims;r.enter().append(\"rect\").classed(u.tickRectClass,!0),r.exit().remove(),r.attr({width:e.tickwidth+\"px\",\"shape-rendering\":\"crispEdges\"}),r.each(function(t,r){var s=r%a.labelStride==0,l=n.select(this);l.attr({height:s?e.ticklen:e.minorticklen}).call(i.fill,e.tickcolor),o.setTranslate(l,S(e,r/(e._stepCount-1))-.5*e.tickwidth,(s?u.tickOffset:u.minorTickOffset)+a.currentValueTotalHeight)})}function M(t,e,r){for(var n=t.select(\"rect.\"+u.gripRectClass),a=0,i=0;i<e._stepCount;i++)if(e._visibleSteps[i]._index===e.active){a=i;break}var o=S(e,a/(e._stepCount-1));if(!e._invokingCommand){var s=n;r&&e.transition.duration>0&&(s=s.transition().duration(e.transition.duration).ease(e.transition.easing)),s.attr(\"transform\",\"translate(\"+(o-.5*u.gripWidth)+\",\"+e._dims.currentValueTotalHeight+\")\")}}function S(t,e){var r=t._dims;return r.inputAreaStart+u.stepInset+(r.inputAreaLength-2*u.stepInset)*Math.min(1,Math.max(0,e))}function E(t,e){var r=t._dims;return Math.min(1,Math.max(0,(e-u.stepInset-r.inputAreaStart)/(r.inputAreaLength-2*u.stepInset-2*r.inputAreaStart)))}function C(t,e,r){var n=r._dims,a=s.ensureSingle(t,\"rect\",u.railTouchRectClass,function(n){n.call(T,e,t,r).style(\"pointer-events\",\"all\")});a.attr({width:n.inputAreaLength,height:Math.max(n.inputAreaWidth,u.tickOffset+r.ticklen+n.labelHeight)}).call(i.fill,r.bgcolor).attr(\"opacity\",0),o.setTranslate(a,0,n.currentValueTotalHeight)}function L(t,e){var r=e._dims,n=r.inputAreaLength-2*u.railInset,a=s.ensureSingle(t,\"rect\",u.railRectClass);a.attr({width:n,height:u.railWidth,rx:u.railRadius,ry:u.railRadius,\"shape-rendering\":\"crispEdges\"}).call(i.stroke,e.bordercolor).call(i.fill,e.bgcolor).style(\"stroke-width\",e.borderwidth+\"px\"),o.setTranslate(a,u.railInset,.5*(r.inputAreaWidth-u.railWidth)+r.currentValueTotalHeight)}e.exports=function(t){var e=t._fullLayout,r=function(t,e){for(var r=t[u.name],n=[],a=0;a<r.length;a++){var i=r[a];i.visible&&(i._gd=e,n.push(i))}return n}(e,t),i=e._infolayer.selectAll(\"g.\"+u.containerClassName).data(r.length>0?[0]:[]);function s(e){e._commandObserver&&(e._commandObserver.remove(),delete e._commandObserver),a.autoMargin(t,g(e))}if(i.enter().append(\"g\").classed(u.containerClassName,!0).style(\"cursor\",\"ew-resize\"),i.exit().each(function(){n.select(this).selectAll(\"g.\"+u.groupClassName).each(s)}).remove(),0!==r.length){var l=i.selectAll(\"g.\"+u.groupClassName).data(r,v);l.enter().append(\"g\").classed(u.groupClassName,!0),l.exit().each(s).remove();for(var c=0;c<r.length;c++){var h=r[c];m(t,h)}l.each(function(e){var r=n.select(this);!function(t){var e=t._dims;e.labelSteps=[];for(var r=t._stepCount,n=0;n<r;n+=e.labelStride)e.labelSteps.push({fraction:n/(r-1),step:t._visibleSteps[n]})}(e),a.manageCommandObserver(t,e,e._visibleSteps,function(e){var n=r.data()[0];n.active!==e.index&&(n._dragging||k(t,r,n,e.index,!1,!0))}),function(t,e,r){(r.steps[r.active]||{}).visible||(r.active=r._visibleSteps[0]._index);e.call(y,r).call(L,r).call(_,r).call(A,r).call(C,t,r).call(x,t,r);var n=r._dims;o.setTranslate(e,n.lx+r.pad.l,n.ly+r.pad.t),e.call(M,r,!1),e.call(y,r)}(t,n.select(this),e)})}}},{\"../../constants/alignment\":688,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../../plot_api/plot_template\":757,\"../../plots/plots\":828,\"../color\":594,\"../drawing\":615,\"./constants\":677,d3:164}],680:[function(t,e,r){\"use strict\";var n=t(\"./constants\");e.exports={moduleType:\"component\",name:n.name,layoutAttributes:t(\"./attributes\"),supplyLayoutDefaults:t(\"./defaults\"),draw:t(\"./draw\")}},{\"./attributes\":676,\"./constants\":677,\"./defaults\":678,\"./draw\":679}],681:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"fast-isnumeric\"),i=t(\"../../plots/plots\"),o=t(\"../../registry\"),s=t(\"../../lib\"),l=t(\"../drawing\"),c=t(\"../color\"),u=t(\"../../lib/svg_text_utils\"),h=t(\"../../constants/interactions\");e.exports={draw:function(t,e,r){var p,d=r.propContainer,g=r.propName,v=r.placeholder,m=r.traceIndex,y=r.avoid||{},x=r.attributes,b=r.transform,_=r.containerGroup,w=t._fullLayout,k=1,T=!1,A=d.title,M=(A&&A.text?A.text:\"\").trim(),S=A&&A.font?A.font:{},E=S.family,C=S.size,L=S.color;\"title.text\"===g?p=\"titleText\":-1!==g.indexOf(\"axis\")?p=\"axisTitleText\":g.indexOf(!0)&&(p=\"colorbarTitleText\");var P=t._context.edits[p];\"\"===M?k=0:M.replace(f,\" % \")===v.replace(f,\" % \")&&(k=.2,T=!0,P||(M=\"\"));r._meta?M=s.templateString(M,r._meta):w._meta&&(M=s.templateString(M,w._meta));var O=M||P;_||(_=s.ensureSingle(w._infolayer,\"g\",\"g-\"+e));var I=_.selectAll(\"text\").data(O?[0]:[]);if(I.enter().append(\"text\"),I.text(M).attr(\"class\",e),I.exit().remove(),!O)return _;function z(t){s.syncOrAsync([D,R],t)}function D(e){var r;return b?(r=\"\",b.rotate&&(r+=\"rotate(\"+[b.rotate,x.x,x.y]+\")\"),b.offset&&(r+=\"translate(0, \"+b.offset+\")\")):r=null,e.attr(\"transform\",r),e.style({\"font-family\":E,\"font-size\":n.round(C,2)+\"px\",fill:c.rgb(L),opacity:k*c.opacity(L),\"font-weight\":i.fontWeight}).attr(x).call(u.convertToTspans,t),i.previousPromises(t)}function R(t){var e=n.select(t.node().parentNode);if(y&&y.selection&&y.side&&M){e.attr(\"transform\",null);var r=0,i={left:\"right\",right:\"left\",top:\"bottom\",bottom:\"top\"}[y.side],o=-1!==[\"left\",\"top\"].indexOf(y.side)?-1:1,c=a(y.pad)?y.pad:2,u=l.bBox(e.node()),h={left:0,top:0,right:w.width,bottom:w.height},f=y.maxShift||(h[y.side]-u[y.side])*(\"left\"===y.side||\"top\"===y.side?-1:1);if(f<0)r=f;else{var p=y.offsetLeft||0,d=y.offsetTop||0;u.left-=p,u.right-=p,u.top-=d,u.bottom-=d,y.selection.each(function(){var t=l.bBox(this);s.bBoxIntersect(u,t,c)&&(r=Math.max(r,o*(t[y.side]-u[i])+c))}),r=Math.min(f,r)}if(r>0||f<0){var g={left:[-r,0],right:[r,0],top:[0,-r],bottom:[0,r]}[y.side];e.attr(\"transform\",\"translate(\"+g+\")\")}}}I.call(z),P&&(M?I.on(\".opacity\",null):(k=0,T=!0,I.text(v).on(\"mouseover.opacity\",function(){n.select(this).transition().duration(h.SHOW_PLACEHOLDER).style(\"opacity\",1)}).on(\"mouseout.opacity\",function(){n.select(this).transition().duration(h.HIDE_PLACEHOLDER).style(\"opacity\",0)})),I.call(u.makeEditable,{gd:t}).on(\"edit\",function(e){void 0!==m?o.call(\"_guiRestyle\",t,g,e,m):o.call(\"_guiRelayout\",t,g,e)}).on(\"cancel\",function(){this.text(this.attr(\"data-unformatted\")).call(z)}).on(\"input\",function(t){this.text(t||\" \").call(u.positionText,x.x,x.y)}));return I.classed(\"js-placeholder\",T),_}};var f=/ [XY][0-9]* /},{\"../../constants/interactions\":694,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../../plots/plots\":828,\"../../registry\":848,\"../color\":594,\"../drawing\":615,d3:164,\"fast-isnumeric\":226}],682:[function(t,e,r){\"use strict\";var n=t(\"../../plots/font_attributes\"),a=t(\"../color/attributes\"),i=t(\"../../lib/extend\").extendFlat,o=t(\"../../plot_api/edit_types\").overrideAll,s=t(\"../../plots/pad_attributes\"),l=t(\"../../plot_api/plot_template\").templatedArray,c=l(\"button\",{visible:{valType:\"boolean\"},method:{valType:\"enumerated\",values:[\"restyle\",\"relayout\",\"animate\",\"update\",\"skip\"],dflt:\"restyle\"},args:{valType:\"info_array\",freeLength:!0,items:[{valType:\"any\"},{valType:\"any\"},{valType:\"any\"}]},label:{valType:\"string\",dflt:\"\"},execute:{valType:\"boolean\",dflt:!0}});e.exports=o(l(\"updatemenu\",{_arrayAttrRegexps:[/^updatemenus\\[(0|[1-9][0-9]+)\\]\\.buttons/],visible:{valType:\"boolean\"},type:{valType:\"enumerated\",values:[\"dropdown\",\"buttons\"],dflt:\"dropdown\"},direction:{valType:\"enumerated\",values:[\"left\",\"right\",\"up\",\"down\"],dflt:\"down\"},active:{valType:\"integer\",min:-1,dflt:0},showactive:{valType:\"boolean\",dflt:!0},buttons:c,x:{valType:\"number\",min:-2,max:3,dflt:-.05},xanchor:{valType:\"enumerated\",values:[\"auto\",\"left\",\"center\",\"right\"],dflt:\"right\"},y:{valType:\"number\",min:-2,max:3,dflt:1},yanchor:{valType:\"enumerated\",values:[\"auto\",\"top\",\"middle\",\"bottom\"],dflt:\"top\"},pad:i(s({editType:\"arraydraw\"}),{}),font:n({}),bgcolor:{valType:\"color\"},bordercolor:{valType:\"color\",dflt:a.borderLine},borderwidth:{valType:\"number\",min:0,dflt:1,editType:\"arraydraw\"}}),\"arraydraw\",\"from-root\")},{\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../../plot_api/plot_template\":757,\"../../plots/font_attributes\":793,\"../../plots/pad_attributes\":827,\"../color/attributes\":593}],683:[function(t,e,r){\"use strict\";e.exports={name:\"updatemenus\",containerClassName:\"updatemenu-container\",headerGroupClassName:\"updatemenu-header-group\",headerClassName:\"updatemenu-header\",headerArrowClassName:\"updatemenu-header-arrow\",dropdownButtonGroupClassName:\"updatemenu-dropdown-button-group\",dropdownButtonClassName:\"updatemenu-dropdown-button\",buttonClassName:\"updatemenu-button\",itemRectClassName:\"updatemenu-item-rect\",itemTextClassName:\"updatemenu-item-text\",menuIndexAttrName:\"updatemenu-active-index\",autoMarginIdRoot:\"updatemenu-\",blankHeaderOpts:{label:\"  \"},minWidth:30,minHeight:30,textPadX:24,arrowPadX:16,rx:2,ry:2,textOffsetX:12,textOffsetY:3,arrowOffsetX:4,gapButtonHeader:5,gapButton:2,activeColor:\"#F4FAFF\",hoverColor:\"#F4FAFF\",arrowSymbol:{left:\"\\u25c4\",right:\"\\u25ba\",up:\"\\u25b2\",down:\"\\u25bc\"}}},{}],684:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/array_container_defaults\"),i=t(\"./attributes\"),o=t(\"./constants\").name,s=i.buttons;function l(t,e,r){function o(r,a){return n.coerce(t,e,i,r,a)}o(\"visible\",a(t,e,{name:\"buttons\",handleItemDefaults:c}).length>0)&&(o(\"active\"),o(\"direction\"),o(\"type\"),o(\"showactive\"),o(\"x\"),o(\"y\"),n.noneOrAll(t,e,[\"x\",\"y\"]),o(\"xanchor\"),o(\"yanchor\"),o(\"pad.t\"),o(\"pad.r\"),o(\"pad.b\"),o(\"pad.l\"),n.coerceFont(o,\"font\",r.font),o(\"bgcolor\",r.paper_bgcolor),o(\"bordercolor\"),o(\"borderwidth\"))}function c(t,e){function r(r,a){return n.coerce(t,e,s,r,a)}r(\"visible\",\"skip\"===t.method||Array.isArray(t.args))&&(r(\"method\"),r(\"args\"),r(\"label\"),r(\"execute\"))}e.exports=function(t,e){a(t,e,{name:o,handleItemDefaults:l})}},{\"../../lib\":719,\"../../plots/array_container_defaults\":763,\"./attributes\":682,\"./constants\":683}],685:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../plots/plots\"),i=t(\"../color\"),o=t(\"../drawing\"),s=t(\"../../lib\"),l=t(\"../../lib/svg_text_utils\"),c=t(\"../../plot_api/plot_template\").arrayEditor,u=t(\"../../constants/alignment\").LINE_SPACING,h=t(\"./constants\"),f=t(\"./scrollbox\");function p(t){return t._index}function d(t,e){return+t.attr(h.menuIndexAttrName)===e._index}function g(t,e,r,n,a,i,o,s){e.active=o,c(t.layout,h.name,e).applyUpdate(\"active\",o),\"buttons\"===e.type?m(t,n,null,null,e):\"dropdown\"===e.type&&(a.attr(h.menuIndexAttrName,\"-1\"),v(t,n,a,i,e),s||m(t,n,a,i,e))}function v(t,e,r,n,a){var i=s.ensureSingle(e,\"g\",h.headerClassName,function(t){t.style(\"pointer-events\",\"all\")}),l=a._dims,c=a.active,u=a.buttons[c]||h.blankHeaderOpts,f={y:a.pad.t,yPad:0,x:a.pad.l,xPad:0,index:0},p={width:l.headerWidth,height:l.headerHeight};i.call(y,a,u,t).call(M,a,f,p),s.ensureSingle(e,\"text\",h.headerArrowClassName,function(t){t.classed(\"user-select-none\",!0).attr(\"text-anchor\",\"end\").call(o.font,a.font).text(h.arrowSymbol[a.direction])}).attr({x:l.headerWidth-h.arrowOffsetX+a.pad.l,y:l.headerHeight/2+h.textOffsetY+a.pad.t}),i.on(\"click\",function(){r.call(S,String(d(r,a)?-1:a._index)),m(t,e,r,n,a)}),i.on(\"mouseover\",function(){i.call(w)}),i.on(\"mouseout\",function(){i.call(k,a)}),o.setTranslate(e,l.lx,l.ly)}function m(t,e,r,i,o){r||(r=e).attr(\"pointer-events\",\"all\");var l=function(t){return-1==+t.attr(h.menuIndexAttrName)}(r)&&\"buttons\"!==o.type?[]:o.buttons,c=\"dropdown\"===o.type?h.dropdownButtonClassName:h.buttonClassName,u=r.selectAll(\"g.\"+c).data(s.filterVisible(l)),f=u.enter().append(\"g\").classed(c,!0),p=u.exit();\"dropdown\"===o.type?(f.attr(\"opacity\",\"0\").transition().attr(\"opacity\",\"1\"),p.transition().attr(\"opacity\",\"0\").remove()):p.remove();var d=0,v=0,m=o._dims,x=-1!==[\"up\",\"down\"].indexOf(o.direction);\"dropdown\"===o.type&&(x?v=m.headerHeight+h.gapButtonHeader:d=m.headerWidth+h.gapButtonHeader),\"dropdown\"===o.type&&\"up\"===o.direction&&(v=-h.gapButtonHeader+h.gapButton-m.openHeight),\"dropdown\"===o.type&&\"left\"===o.direction&&(d=-h.gapButtonHeader+h.gapButton-m.openWidth);var b={x:m.lx+d+o.pad.l,y:m.ly+v+o.pad.t,yPad:h.gapButton,xPad:h.gapButton,index:0},T={l:b.x+o.borderwidth,t:b.y+o.borderwidth};u.each(function(s,l){var c=n.select(this);c.call(y,o,s,t).call(M,o,b),c.on(\"click\",function(){n.event.defaultPrevented||(g(t,o,0,e,r,i,l),s.execute&&a.executeAPICommand(t,s.method,s.args),t.emit(\"plotly_buttonclicked\",{menu:o,button:s,active:o.active}))}),c.on(\"mouseover\",function(){c.call(w)}),c.on(\"mouseout\",function(){c.call(k,o),u.call(_,o)})}),u.call(_,o),x?(T.w=Math.max(m.openWidth,m.headerWidth),T.h=b.y-T.t):(T.w=b.x-T.l,T.h=Math.max(m.openHeight,m.headerHeight)),T.direction=o.direction,i&&(u.size()?function(t,e,r,n,a,i){var o,s,l,c=a.direction,u=\"up\"===c||\"down\"===c,f=a._dims,p=a.active;if(u)for(s=0,l=0;l<p;l++)s+=f.heights[l]+h.gapButton;else for(o=0,l=0;l<p;l++)o+=f.widths[l]+h.gapButton;n.enable(i,o,s),n.hbar&&n.hbar.attr(\"opacity\",\"0\").transition().attr(\"opacity\",\"1\");n.vbar&&n.vbar.attr(\"opacity\",\"0\").transition().attr(\"opacity\",\"1\")}(0,0,0,i,o,T):function(t){var e=!!t.hbar,r=!!t.vbar;e&&t.hbar.transition().attr(\"opacity\",\"0\").each(\"end\",function(){e=!1,r||t.disable()});r&&t.vbar.transition().attr(\"opacity\",\"0\").each(\"end\",function(){r=!1,e||t.disable()})}(i))}function y(t,e,r,n){t.call(x,e).call(b,e,r,n)}function x(t,e){s.ensureSingle(t,\"rect\",h.itemRectClassName,function(t){t.attr({rx:h.rx,ry:h.ry,\"shape-rendering\":\"crispEdges\"})}).call(i.stroke,e.bordercolor).call(i.fill,e.bgcolor).style(\"stroke-width\",e.borderwidth+\"px\")}function b(t,e,r,n){var a=s.ensureSingle(t,\"text\",h.itemTextClassName,function(t){t.classed(\"user-select-none\",!0).attr({\"text-anchor\":\"start\",\"data-notex\":1})}),i=r.label,c=n._fullLayout._meta;c&&(i=s.templateString(i,c)),a.call(o.font,e.font).text(i).call(l.convertToTspans,n)}function _(t,e){var r=e.active;t.each(function(t,a){var o=n.select(this);a===r&&e.showactive&&o.select(\"rect.\"+h.itemRectClassName).call(i.fill,h.activeColor)})}function w(t){t.select(\"rect.\"+h.itemRectClassName).call(i.fill,h.hoverColor)}function k(t,e){t.select(\"rect.\"+h.itemRectClassName).call(i.fill,e.bgcolor)}function T(t,e){var r=e._dims={width1:0,height1:0,heights:[],widths:[],totalWidth:0,totalHeight:0,openWidth:0,openHeight:0,lx:0,ly:0},i=o.tester.selectAll(\"g.\"+h.dropdownButtonClassName).data(s.filterVisible(e.buttons));i.enter().append(\"g\").classed(h.dropdownButtonClassName,!0);var c=-1!==[\"up\",\"down\"].indexOf(e.direction);i.each(function(a,i){var s=n.select(this);s.call(y,e,a,t);var f=s.select(\".\"+h.itemTextClassName),p=f.node()&&o.bBox(f.node()).width,d=Math.max(p+h.textPadX,h.minWidth),g=e.font.size*u,v=l.lineCount(f),m=Math.max(g*v,h.minHeight)+h.textOffsetY;m=Math.ceil(m),d=Math.ceil(d),r.widths[i]=d,r.heights[i]=m,r.height1=Math.max(r.height1,m),r.width1=Math.max(r.width1,d),c?(r.totalWidth=Math.max(r.totalWidth,d),r.openWidth=r.totalWidth,r.totalHeight+=m+h.gapButton,r.openHeight+=m+h.gapButton):(r.totalWidth+=d+h.gapButton,r.openWidth+=d+h.gapButton,r.totalHeight=Math.max(r.totalHeight,m),r.openHeight=r.totalHeight)}),c?r.totalHeight-=h.gapButton:r.totalWidth-=h.gapButton,r.headerWidth=r.width1+h.arrowPadX,r.headerHeight=r.height1,\"dropdown\"===e.type&&(c?(r.width1+=h.arrowPadX,r.totalHeight=r.height1):r.totalWidth=r.width1,r.totalWidth+=h.arrowPadX),i.remove();var f=r.totalWidth+e.pad.l+e.pad.r,p=r.totalHeight+e.pad.t+e.pad.b,d=t._fullLayout._size;r.lx=d.l+d.w*e.x,r.ly=d.t+d.h*(1-e.y);var g=\"left\";s.isRightAnchor(e)&&(r.lx-=f,g=\"right\"),s.isCenterAnchor(e)&&(r.lx-=f/2,g=\"center\");var v=\"top\";s.isBottomAnchor(e)&&(r.ly-=p,v=\"bottom\"),s.isMiddleAnchor(e)&&(r.ly-=p/2,v=\"middle\"),r.totalWidth=Math.ceil(r.totalWidth),r.totalHeight=Math.ceil(r.totalHeight),r.lx=Math.round(r.lx),r.ly=Math.round(r.ly),a.autoMargin(t,A(e),{x:e.x,y:e.y,l:f*({right:1,center:.5}[g]||0),r:f*({left:1,center:.5}[g]||0),b:p*({top:1,middle:.5}[v]||0),t:p*({bottom:1,middle:.5}[v]||0)})}function A(t){return h.autoMarginIdRoot+t._index}function M(t,e,r,n){n=n||{};var a=t.select(\".\"+h.itemRectClassName),i=t.select(\".\"+h.itemTextClassName),s=e.borderwidth,c=r.index,f=e._dims;o.setTranslate(t,s+r.x,s+r.y);var p=-1!==[\"up\",\"down\"].indexOf(e.direction),d=n.height||(p?f.heights[c]:f.height1);a.attr({x:0,y:0,width:n.width||(p?f.width1:f.widths[c]),height:d});var g=e.font.size*u,v=(l.lineCount(i)-1)*g/2;l.positionText(i,h.textOffsetX,d/2-v+h.textOffsetY),p?r.y+=f.heights[c]+r.yPad:r.x+=f.widths[c]+r.xPad,r.index++}function S(t,e){t.attr(h.menuIndexAttrName,e||\"-1\").selectAll(\"g.\"+h.dropdownButtonClassName).remove()}e.exports=function(t){var e=t._fullLayout,r=s.filterVisible(e[h.name]);function i(e){a.autoMargin(t,A(e))}var o=e._menulayer.selectAll(\"g.\"+h.containerClassName).data(r.length>0?[0]:[]);if(o.enter().append(\"g\").classed(h.containerClassName,!0).style(\"cursor\",\"pointer\"),o.exit().each(function(){n.select(this).selectAll(\"g.\"+h.headerGroupClassName).each(i)}).remove(),0!==r.length){var l=o.selectAll(\"g.\"+h.headerGroupClassName).data(r,p);l.enter().append(\"g\").classed(h.headerGroupClassName,!0);for(var c=s.ensureSingle(o,\"g\",h.dropdownButtonGroupClassName,function(t){t.style(\"pointer-events\",\"all\")}),u=0;u<r.length;u++){var y=r[u];T(t,y)}var x=\"updatemenus\"+e._uid,b=new f(t,c,x);l.enter().size()&&(c.node().parentNode.appendChild(c.node()),c.call(S)),l.exit().each(function(t){c.call(S),i(t)}).remove(),l.each(function(e){var r=n.select(this),i=\"dropdown\"===e.type?c:null;a.manageCommandObserver(t,e,e.buttons,function(n){g(t,e,e.buttons[n.index],r,i,b,n.index,!0)}),\"dropdown\"===e.type?(v(t,r,c,b,e),d(c,e)&&m(t,r,c,b,e)):m(t,r,null,null,e)})}}},{\"../../constants/alignment\":688,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../../plot_api/plot_template\":757,\"../../plots/plots\":828,\"../color\":594,\"../drawing\":615,\"./constants\":683,\"./scrollbox\":687,d3:164}],686:[function(t,e,r){arguments[4][680][0].apply(r,arguments)},{\"./attributes\":682,\"./constants\":683,\"./defaults\":684,\"./draw\":685,dup:680}],687:[function(t,e,r){\"use strict\";e.exports=s;var n=t(\"d3\"),a=t(\"../color\"),i=t(\"../drawing\"),o=t(\"../../lib\");function s(t,e,r){this.gd=t,this.container=e,this.id=r,this.position=null,this.translateX=null,this.translateY=null,this.hbar=null,this.vbar=null,this.bg=this.container.selectAll(\"rect.scrollbox-bg\").data([0]),this.bg.exit().on(\".drag\",null).on(\"wheel\",null).remove(),this.bg.enter().append(\"rect\").classed(\"scrollbox-bg\",!0).style(\"pointer-events\",\"all\").attr({opacity:0,x:0,y:0,width:0,height:0})}s.barWidth=2,s.barLength=20,s.barRadius=2,s.barPad=1,s.barColor=\"#808BA4\",s.prototype.enable=function(t,e,r){var o=this.gd._fullLayout,l=o.width,c=o.height;this.position=t;var u,h,f,p,d=this.position.l,g=this.position.w,v=this.position.t,m=this.position.h,y=this.position.direction,x=\"down\"===y,b=\"left\"===y,_=\"up\"===y,w=g,k=m;x||b||\"right\"===y||_||(this.position.direction=\"down\",x=!0),x||_?(h=(u=d)+w,x?(f=v,k=(p=Math.min(f+k,c))-f):k=(p=v+k)-(f=Math.max(p-k,0))):(p=(f=v)+k,b?w=(h=d+w)-(u=Math.max(h-w,0)):(u=d,w=(h=Math.min(u+w,l))-u)),this._box={l:u,t:f,w:w,h:k};var T=g>w,A=s.barLength+2*s.barPad,M=s.barWidth+2*s.barPad,S=d,E=v+m;E+M>c&&(E=c-M);var C=this.container.selectAll(\"rect.scrollbar-horizontal\").data(T?[0]:[]);C.exit().on(\".drag\",null).remove(),C.enter().append(\"rect\").classed(\"scrollbar-horizontal\",!0).call(a.fill,s.barColor),T?(this.hbar=C.attr({rx:s.barRadius,ry:s.barRadius,x:S,y:E,width:A,height:M}),this._hbarXMin=S+A/2,this._hbarTranslateMax=w-A):(delete this.hbar,delete this._hbarXMin,delete this._hbarTranslateMax);var L=m>k,P=s.barWidth+2*s.barPad,O=s.barLength+2*s.barPad,I=d+g,z=v;I+P>l&&(I=l-P);var D=this.container.selectAll(\"rect.scrollbar-vertical\").data(L?[0]:[]);D.exit().on(\".drag\",null).remove(),D.enter().append(\"rect\").classed(\"scrollbar-vertical\",!0).call(a.fill,s.barColor),L?(this.vbar=D.attr({rx:s.barRadius,ry:s.barRadius,x:I,y:z,width:P,height:O}),this._vbarYMin=z+O/2,this._vbarTranslateMax=k-O):(delete this.vbar,delete this._vbarYMin,delete this._vbarTranslateMax);var R=this.id,F=u-.5,B=L?h+P+.5:h+.5,N=f-.5,j=T?p+M+.5:p+.5,V=o._topdefs.selectAll(\"#\"+R).data(T||L?[0]:[]);if(V.exit().remove(),V.enter().append(\"clipPath\").attr(\"id\",R).append(\"rect\"),T||L?(this._clipRect=V.select(\"rect\").attr({x:Math.floor(F),y:Math.floor(N),width:Math.ceil(B)-Math.floor(F),height:Math.ceil(j)-Math.floor(N)}),this.container.call(i.setClipUrl,R,this.gd),this.bg.attr({x:d,y:v,width:g,height:m})):(this.bg.attr({width:0,height:0}),this.container.on(\"wheel\",null).on(\".drag\",null).call(i.setClipUrl,null),delete this._clipRect),T||L){var U=n.behavior.drag().on(\"dragstart\",function(){n.event.sourceEvent.preventDefault()}).on(\"drag\",this._onBoxDrag.bind(this));this.container.on(\"wheel\",null).on(\"wheel\",this._onBoxWheel.bind(this)).on(\".drag\",null).call(U);var q=n.behavior.drag().on(\"dragstart\",function(){n.event.sourceEvent.preventDefault(),n.event.sourceEvent.stopPropagation()}).on(\"drag\",this._onBarDrag.bind(this));T&&this.hbar.on(\".drag\",null).call(q),L&&this.vbar.on(\".drag\",null).call(q)}this.setTranslate(e,r)},s.prototype.disable=function(){(this.hbar||this.vbar)&&(this.bg.attr({width:0,height:0}),this.container.on(\"wheel\",null).on(\".drag\",null).call(i.setClipUrl,null),delete this._clipRect),this.hbar&&(this.hbar.on(\".drag\",null),this.hbar.remove(),delete this.hbar,delete this._hbarXMin,delete this._hbarTranslateMax),this.vbar&&(this.vbar.on(\".drag\",null),this.vbar.remove(),delete this.vbar,delete this._vbarYMin,delete this._vbarTranslateMax)},s.prototype._onBoxDrag=function(){var t=this.translateX,e=this.translateY;this.hbar&&(t-=n.event.dx),this.vbar&&(e-=n.event.dy),this.setTranslate(t,e)},s.prototype._onBoxWheel=function(){var t=this.translateX,e=this.translateY;this.hbar&&(t+=n.event.deltaY),this.vbar&&(e+=n.event.deltaY),this.setTranslate(t,e)},s.prototype._onBarDrag=function(){var t=this.translateX,e=this.translateY;if(this.hbar){var r=t+this._hbarXMin,a=r+this._hbarTranslateMax;t=(o.constrain(n.event.x,r,a)-r)/(a-r)*(this.position.w-this._box.w)}if(this.vbar){var i=e+this._vbarYMin,s=i+this._vbarTranslateMax;e=(o.constrain(n.event.y,i,s)-i)/(s-i)*(this.position.h-this._box.h)}this.setTranslate(t,e)},s.prototype.setTranslate=function(t,e){var r=this.position.w-this._box.w,n=this.position.h-this._box.h;if(t=o.constrain(t||0,0,r),e=o.constrain(e||0,0,n),this.translateX=t,this.translateY=e,this.container.call(i.setTranslate,this._box.l-this.position.l-t,this._box.t-this.position.t-e),this._clipRect&&this._clipRect.attr({x:Math.floor(this.position.l+t-.5),y:Math.floor(this.position.t+e-.5)}),this.hbar){var a=t/r;this.hbar.call(i.setTranslate,t+a*this._hbarTranslateMax,e)}if(this.vbar){var s=e/n;this.vbar.call(i.setTranslate,t,e+s*this._vbarTranslateMax)}}},{\"../../lib\":719,\"../color\":594,\"../drawing\":615,d3:164}],688:[function(t,e,r){\"use strict\";e.exports={FROM_BL:{left:0,center:.5,right:1,bottom:0,middle:.5,top:1},FROM_TL:{left:0,center:.5,right:1,bottom:1,middle:.5,top:0},FROM_BR:{left:1,center:.5,right:0,bottom:0,middle:.5,top:1},LINE_SPACING:1.3,CAP_SHIFT:.7,MID_SHIFT:.35,OPPOSITE_SIDE:{left:\"right\",right:\"left\",top:\"bottom\",bottom:\"top\"}}},{}],689:[function(t,e,r){\"use strict\";e.exports={INCREASING:{COLOR:\"#3D9970\",SYMBOL:\"\\u25b2\"},DECREASING:{COLOR:\"#FF4136\",SYMBOL:\"\\u25bc\"}}},{}],690:[function(t,e,r){\"use strict\";e.exports={FORMAT_LINK:\"https://github.com/d3/d3-3.x-api-reference/blob/master/Formatting.md#d3_format\",DATE_FORMAT_LINK:\"https://github.com/d3/d3-3.x-api-reference/blob/master/Time-Formatting.md#format\"}},{}],691:[function(t,e,r){\"use strict\";e.exports={COMPARISON_OPS:[\"=\",\"!=\",\"<\",\">=\",\">\",\"<=\"],COMPARISON_OPS2:[\"=\",\"<\",\">=\",\">\",\"<=\"],INTERVAL_OPS:[\"[]\",\"()\",\"[)\",\"(]\",\"][\",\")(\",\"](\",\")[\"],SET_OPS:[\"{}\",\"}{\"],CONSTRAINT_REDUCTION:{\"=\":\"=\",\"<\":\"<\",\"<=\":\"<\",\">\":\">\",\">=\":\">\",\"[]\":\"[]\",\"()\":\"[]\",\"[)\":\"[]\",\"(]\":\"[]\",\"][\":\"][\",\")(\":\"][\",\"](\":\"][\",\")[\":\"][\"}}},{}],692:[function(t,e,r){\"use strict\";e.exports={solid:[[],0],dot:[[.5,1],200],dash:[[.5,1],50],longdash:[[.5,1],10],dashdot:[[.5,.625,.875,1],50],longdashdot:[[.5,.7,.8,1],10]}},{}],693:[function(t,e,r){\"use strict\";e.exports={circle:\"\\u25cf\",\"circle-open\":\"\\u25cb\",square:\"\\u25a0\",\"square-open\":\"\\u25a1\",diamond:\"\\u25c6\",\"diamond-open\":\"\\u25c7\",cross:\"+\",x:\"\\u274c\"}},{}],694:[function(t,e,r){\"use strict\";e.exports={SHOW_PLACEHOLDER:100,HIDE_PLACEHOLDER:1e3,DESELECTDIM:.2}},{}],695:[function(t,e,r){\"use strict\";e.exports={BADNUM:void 0,FP_SAFE:Number.MAX_VALUE/1e4,ONEAVGYEAR:315576e5,ONEAVGMONTH:26298e5,ONEDAY:864e5,ONEHOUR:36e5,ONEMIN:6e4,ONESEC:1e3,EPOCHJD:2440587.5,ALMOST_EQUAL:1-1e-6,LOG_CLIP:10,MINUS_SIGN:\"\\u2212\"}},{}],696:[function(t,e,r){\"use strict\";r.xmlns=\"http://www.w3.org/2000/xmlns/\",r.svg=\"http://www.w3.org/2000/svg\",r.xlink=\"http://www.w3.org/1999/xlink\",r.svgAttrs={xmlns:r.svg,\"xmlns:xlink\":r.xlink}},{}],697:[function(t,e,r){\"use strict\";r.version=\"1.50.1\",t(\"es6-promise\").polyfill(),t(\"../build/plotcss\"),t(\"./fonts/mathjax_config\")();for(var n=t(\"./registry\"),a=r.register=n.register,i=t(\"./plot_api\"),o=Object.keys(i),s=0;s<o.length;s++){var l=o[s];\"_\"!==l.charAt(0)&&(r[l]=i[l]),a({moduleType:\"apiMethod\",name:l,fn:i[l]})}a(t(\"./traces/scatter\")),a([t(\"./components/fx\"),t(\"./components/legend\"),t(\"./components/annotations\"),t(\"./components/annotations3d\"),t(\"./components/shapes\"),t(\"./components/images\"),t(\"./components/updatemenus\"),t(\"./components/sliders\"),t(\"./components/rangeslider\"),t(\"./components/rangeselector\"),t(\"./components/grid\"),t(\"./components/errorbars\"),t(\"./components/colorscale\"),t(\"./components/colorbar\")]),a([t(\"./locale-en\"),t(\"./locale-en-us\")]),r.Icons=t(\"./fonts/ploticon\"),r.Plots=t(\"./plots/plots\"),r.Fx=t(\"./components/fx\"),r.Snapshot=t(\"./snapshot\"),r.PlotSchema=t(\"./plot_api/plot_schema\"),r.Queue=t(\"./lib/queue\"),r.d3=t(\"d3\")},{\"../build/plotcss\":1,\"./components/annotations\":585,\"./components/annotations3d\":590,\"./components/colorbar\":600,\"./components/colorscale\":606,\"./components/errorbars\":621,\"./components/fx\":632,\"./components/grid\":636,\"./components/images\":641,\"./components/legend\":649,\"./components/rangeselector\":660,\"./components/rangeslider\":667,\"./components/shapes\":675,\"./components/sliders\":680,\"./components/updatemenus\":686,\"./fonts/mathjax_config\":698,\"./fonts/ploticon\":699,\"./lib/queue\":734,\"./locale-en\":748,\"./locale-en-us\":747,\"./plot_api\":752,\"./plot_api/plot_schema\":756,\"./plots/plots\":828,\"./registry\":848,\"./snapshot\":853,\"./traces/scatter\":1122,d3:164,\"es6-promise\":219}],698:[function(t,e,r){\"use strict\";e.exports=function(){\"undefined\"!=typeof MathJax&&(\"local\"!==(window.PlotlyConfig||{}).MathJaxConfig&&(MathJax.Hub.Config({messageStyle:\"none\",skipStartupTypeset:!0,displayAlign:\"left\",tex2jax:{inlineMath:[[\"$\",\"$\"],[\"\\\\(\",\"\\\\)\"]]}}),MathJax.Hub.Configured()))}},{}],699:[function(t,e,r){\"use strict\";e.exports={undo:{width:857.1,height:1e3,path:\"m857 350q0-87-34-166t-91-137-137-92-166-34q-96 0-183 41t-147 114q-4 6-4 13t5 11l76 77q6 5 14 5 9-1 13-7 41-53 100-82t126-29q58 0 110 23t92 61 61 91 22 111-22 111-61 91-92 61-110 23q-55 0-105-20t-90-57l77-77q17-16 8-38-10-23-33-23h-250q-15 0-25 11t-11 25v250q0 24 22 33 22 10 39-8l72-72q60 57 137 88t159 31q87 0 166-34t137-92 91-137 34-166z\",transform:\"matrix(1 0 0 -1 0 850)\"},home:{width:928.6,height:1e3,path:\"m786 296v-267q0-15-11-26t-25-10h-214v214h-143v-214h-214q-15 0-25 10t-11 26v267q0 1 0 2t0 2l321 264 321-264q1-1 1-4z m124 39l-34-41q-5-5-12-6h-2q-7 0-12 3l-386 322-386-322q-7-4-13-4-7 2-12 7l-35 41q-4 5-3 13t6 12l401 334q18 15 42 15t43-15l136-114v109q0 8 5 13t13 5h107q8 0 13-5t5-13v-227l122-102q5-5 6-12t-4-13z\",transform:\"matrix(1 0 0 -1 0 850)\"},\"camera-retro\":{width:1e3,height:1e3,path:\"m518 386q0 8-5 13t-13 5q-37 0-63-27t-26-63q0-8 5-13t13-5 12 5 5 13q0 23 16 38t38 16q8 0 13 5t5 13z m125-73q0-59-42-101t-101-42-101 42-42 101 42 101 101 42 101-42 42-101z m-572-320h858v71h-858v-71z m643 320q0 89-62 152t-152 62-151-62-63-152 63-151 151-63 152 63 62 151z m-571 358h214v72h-214v-72z m-72-107h858v143h-462l-36-71h-360v-72z m929 143v-714q0-30-21-51t-50-21h-858q-29 0-50 21t-21 51v714q0 30 21 51t50 21h858q29 0 50-21t21-51z\",transform:\"matrix(1 0 0 -1 0 850)\"},zoombox:{width:1e3,height:1e3,path:\"m1000-25l-250 251c40 63 63 138 63 218 0 224-182 406-407 406-224 0-406-182-406-406s183-406 407-406c80 0 155 22 218 62l250-250 125 125z m-812 250l0 438 437 0 0-438-437 0z m62 375l313 0 0-312-313 0 0 312z\",transform:\"matrix(1 0 0 -1 0 850)\"},pan:{width:1e3,height:1e3,path:\"m1000 350l-187 188 0-125-250 0 0 250 125 0-188 187-187-187 125 0 0-250-250 0 0 125-188-188 186-187 0 125 252 0 0-250-125 0 187-188 188 188-125 0 0 250 250 0 0-126 187 188z\",transform:\"matrix(1 0 0 -1 0 850)\"},zoom_plus:{width:875,height:1e3,path:\"m1 787l0-875 875 0 0 875-875 0z m687-500l-187 0 0-187-125 0 0 187-188 0 0 125 188 0 0 187 125 0 0-187 187 0 0-125z\",transform:\"matrix(1 0 0 -1 0 850)\"},zoom_minus:{width:875,height:1e3,path:\"m0 788l0-876 875 0 0 876-875 0z m688-500l-500 0 0 125 500 0 0-125z\",transform:\"matrix(1 0 0 -1 0 850)\"},autoscale:{width:1e3,height:1e3,path:\"m250 850l-187 0-63 0 0-62 0-188 63 0 0 188 187 0 0 62z m688 0l-188 0 0-62 188 0 0-188 62 0 0 188 0 62-62 0z m-875-938l0 188-63 0 0-188 0-62 63 0 187 0 0 62-187 0z m875 188l0-188-188 0 0-62 188 0 62 0 0 62 0 188-62 0z m-125 188l-1 0-93-94-156 156 156 156 92-93 2 0 0 250-250 0 0-2 93-92-156-156-156 156 94 92 0 2-250 0 0-250 0 0 93 93 157-156-157-156-93 94 0 0 0-250 250 0 0 0-94 93 156 157 156-157-93-93 0 0 250 0 0 250z\",transform:\"matrix(1 0 0 -1 0 850)\"},tooltip_basic:{width:1500,height:1e3,path:\"m375 725l0 0-375-375 375-374 0-1 1125 0 0 750-1125 0z\",transform:\"matrix(1 0 0 -1 0 850)\"},tooltip_compare:{width:1125,height:1e3,path:\"m187 786l0 2-187-188 188-187 0 0 937 0 0 373-938 0z m0-499l0 1-187-188 188-188 0 0 937 0 0 376-938-1z\",transform:\"matrix(1 0 0 -1 0 850)\"},plotlylogo:{width:1542,height:1e3,path:\"m0-10h182v-140h-182v140z m228 146h183v-286h-183v286z m225 714h182v-1000h-182v1000z m225-285h182v-715h-182v715z m225 142h183v-857h-183v857z m231-428h182v-429h-182v429z m225-291h183v-138h-183v138z\",transform:\"matrix(1 0 0 -1 0 850)\"},\"z-axis\":{width:1e3,height:1e3,path:\"m833 5l-17 108v41l-130-65 130-66c0 0 0 38 0 39 0-1 36-14 39-25 4-15-6-22-16-30-15-12-39-16-56-20-90-22-187-23-279-23-261 0-341 34-353 59 3 60 228 110 228 110-140-8-351-35-351-116 0-120 293-142 474-142 155 0 477 22 477 142 0 50-74 79-163 96z m-374 94c-58-5-99-21-99-40 0-24 65-43 144-43 79 0 143 19 143 43 0 19-42 34-98 40v216h87l-132 135-133-135h88v-216z m167 515h-136v1c16 16 31 34 46 52l84 109v54h-230v-71h124v-1c-16-17-28-32-44-51l-89-114v-51h245v72z\",transform:\"matrix(1 0 0 -1 0 850)\"},\"3d_rotate\":{width:1e3,height:1e3,path:\"m922 660c-5 4-9 7-14 11-359 263-580-31-580-31l-102 28 58-400c0 1 1 1 2 2 118 108 351 249 351 249s-62 27-100 42c88 83 222 183 347 122 16-8 30-17 44-27-2 1-4 2-6 4z m36-329c0 0 64 229-88 296-62 27-124 14-175-11 157-78 225-208 249-266 8-19 11-31 11-31 2 5 6 15 11 32-5-13-8-20-8-20z m-775-239c70-31 117-50 198-32-121 80-199 346-199 346l-96-15-58-12c0 0 55-226 155-287z m603 133l-317-139c0 0 4-4 19-14 7-5 24-15 24-15s-177-147-389 4c235-287 536-112 536-112l31-22 100 299-4-1z m-298-153c6-4 14-9 24-15 0 0-17 10-24 15z\",transform:\"matrix(1 0 0 -1 0 850)\"},camera:{width:1e3,height:1e3,path:\"m500 450c-83 0-150-67-150-150 0-83 67-150 150-150 83 0 150 67 150 150 0 83-67 150-150 150z m400 150h-120c-16 0-34 13-39 29l-31 93c-6 15-23 28-40 28h-340c-16 0-34-13-39-28l-31-94c-6-15-23-28-40-28h-120c-55 0-100-45-100-100v-450c0-55 45-100 100-100h800c55 0 100 45 100 100v450c0 55-45 100-100 100z m-400-550c-138 0-250 112-250 250 0 138 112 250 250 250 138 0 250-112 250-250 0-138-112-250-250-250z m365 380c-19 0-35 16-35 35 0 19 16 35 35 35 19 0 35-16 35-35 0-19-16-35-35-35z\",transform:\"matrix(1 0 0 -1 0 850)\"},movie:{width:1e3,height:1e3,path:\"m938 413l-188-125c0 37-17 71-44 94 64 38 107 107 107 187 0 121-98 219-219 219-121 0-219-98-219-219 0-61 25-117 66-156h-115c30 33 49 76 49 125 0 103-84 187-187 187s-188-84-188-187c0-57 26-107 65-141-38-22-65-62-65-109v-250c0-70 56-126 125-126h500c69 0 125 56 125 126l188-126c34 0 62 28 62 63v375c0 35-28 63-62 63z m-750 0c-69 0-125 56-125 125s56 125 125 125 125-56 125-125-56-125-125-125z m406-1c-87 0-157 70-157 157 0 86 70 156 157 156s156-70 156-156-70-157-156-157z\",transform:\"matrix(1 0 0 -1 0 850)\"},question:{width:857.1,height:1e3,path:\"m500 82v107q0 8-5 13t-13 5h-107q-8 0-13-5t-5-13v-107q0-8 5-13t13-5h107q8 0 13 5t5 13z m143 375q0 49-31 91t-77 65-95 23q-136 0-207-119-9-14 4-24l74-55q4-4 10-4 9 0 14 7 30 38 48 51 19 14 48 14 27 0 48-15t21-33q0-21-11-34t-38-25q-35-16-65-48t-29-70v-20q0-8 5-13t13-5h107q8 0 13 5t5 13q0 10 12 27t30 28q18 10 28 16t25 19 25 27 16 34 7 45z m214-107q0-117-57-215t-156-156-215-58-216 58-155 156-58 215 58 215 155 156 216 58 215-58 156-156 57-215z\",transform:\"matrix(1 0 0 -1 0 850)\"},disk:{width:857.1,height:1e3,path:\"m214-7h429v214h-429v-214z m500 0h72v500q0 8-6 21t-11 20l-157 156q-5 6-19 12t-22 5v-232q0-22-15-38t-38-16h-322q-22 0-37 16t-16 38v232h-72v-714h72v232q0 22 16 38t37 16h465q22 0 38-16t15-38v-232z m-214 518v178q0 8-5 13t-13 5h-107q-7 0-13-5t-5-13v-178q0-8 5-13t13-5h107q7 0 13 5t5 13z m357-18v-518q0-22-15-38t-38-16h-750q-23 0-38 16t-16 38v750q0 22 16 38t38 16h517q23 0 50-12t42-26l156-157q16-15 27-42t11-49z\",transform:\"matrix(1 0 0 -1 0 850)\"},lasso:{width:1031,height:1e3,path:\"m1018 538c-36 207-290 336-568 286-277-48-473-256-436-463 10-57 36-108 76-151-13-66 11-137 68-183 34-28 75-41 114-42l-55-70 0 0c-2-1-3-2-4-3-10-14-8-34 5-45 14-11 34-8 45 4 1 1 2 3 2 5l0 0 113 140c16 11 31 24 45 40 4 3 6 7 8 11 48-3 100 0 151 9 278 48 473 255 436 462z m-624-379c-80 14-149 48-197 96 42 42 109 47 156 9 33-26 47-66 41-105z m-187-74c-19 16-33 37-39 60 50-32 109-55 174-68-42-25-95-24-135 8z m360 75c-34-7-69-9-102-8 8 62-16 128-68 170-73 59-175 54-244-5-9 20-16 40-20 61-28 159 121 317 333 354s407-60 434-217c28-159-121-318-333-355z\",transform:\"matrix(1 0 0 -1 0 850)\"},selectbox:{width:1e3,height:1e3,path:\"m0 850l0-143 143 0 0 143-143 0z m286 0l0-143 143 0 0 143-143 0z m285 0l0-143 143 0 0 143-143 0z m286 0l0-143 143 0 0 143-143 0z m-857-286l0-143 143 0 0 143-143 0z m857 0l0-143 143 0 0 143-143 0z m-857-285l0-143 143 0 0 143-143 0z m857 0l0-143 143 0 0 143-143 0z m-857-286l0-143 143 0 0 143-143 0z m286 0l0-143 143 0 0 143-143 0z m285 0l0-143 143 0 0 143-143 0z m286 0l0-143 143 0 0 143-143 0z\",transform:\"matrix(1 0 0 -1 0 850)\"},spikeline:{width:1e3,height:1e3,path:\"M512 409c0-57-46-104-103-104-57 0-104 47-104 104 0 57 47 103 104 103 57 0 103-46 103-103z m-327-39l92 0 0 92-92 0z m-185 0l92 0 0 92-92 0z m370-186l92 0 0 93-92 0z m0-184l92 0 0 92-92 0z\",transform:\"matrix(1.5 0 0 -1.5 0 850)\"},pencil:{width:1792,height:1792,path:\"M491 1536l91-91-235-235-91 91v107h128v128h107zm523-928q0-22-22-22-10 0-17 7l-542 542q-7 7-7 17 0 22 22 22 10 0 17-7l542-542q7-7 7-17zm-54-192l416 416-832 832h-416v-416zm683 96q0 53-37 90l-166 166-416-416 166-165q36-38 90-38 53 0 91 38l235 234q37 39 37 91z\",transform:\"matrix(1 0 0 1 0 1)\"},newplotlylogo:{name:\"newplotlylogo\",svg:\"<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 132 132'><defs><style>.cls-1 {fill: #119dff;} .cls-2 {fill: #25fefd;} .cls-3 {fill: #fff;}</style></defs><title>plotly-logomark</title><g id='symbol'><rect class='cls-1' width='132' height='132' rx='6' ry='6'/><circle class='cls-2' cx='78' cy='54' r='6'/><circle class='cls-2' cx='102' cy='30' r='6'/><circle class='cls-2' cx='78' cy='30' r='6'/><circle class='cls-2' cx='54' cy='30' r='6'/><circle class='cls-2' cx='30' cy='30' r='6'/><circle class='cls-2' cx='30' cy='54' r='6'/><path class='cls-3' d='M30,72a6,6,0,0,0-6,6v24a6,6,0,0,0,12,0V78A6,6,0,0,0,30,72Z'/><path class='cls-3' d='M78,72a6,6,0,0,0-6,6v24a6,6,0,0,0,12,0V78A6,6,0,0,0,78,72Z'/><path class='cls-3' d='M54,48a6,6,0,0,0-6,6v48a6,6,0,0,0,12,0V54A6,6,0,0,0,54,48Z'/><path class='cls-3' d='M102,48a6,6,0,0,0-6,6v48a6,6,0,0,0,12,0V54A6,6,0,0,0,102,48Z'/></g></svg>\"}}},{}],700:[function(t,e,r){\"use strict\";r.isLeftAnchor=function(t){return\"left\"===t.xanchor||\"auto\"===t.xanchor&&t.x<=1/3},r.isCenterAnchor=function(t){return\"center\"===t.xanchor||\"auto\"===t.xanchor&&t.x>1/3&&t.x<2/3},r.isRightAnchor=function(t){return\"right\"===t.xanchor||\"auto\"===t.xanchor&&t.x>=2/3},r.isTopAnchor=function(t){return\"top\"===t.yanchor||\"auto\"===t.yanchor&&t.y>=2/3},r.isMiddleAnchor=function(t){return\"middle\"===t.yanchor||\"auto\"===t.yanchor&&t.y>1/3&&t.y<2/3},r.isBottomAnchor=function(t){return\"bottom\"===t.yanchor||\"auto\"===t.yanchor&&t.y<=1/3}},{}],701:[function(t,e,r){\"use strict\";var n=t(\"./mod\"),a=n.mod,i=n.modHalf,o=Math.PI,s=2*o;function l(t){return Math.abs(t[1]-t[0])>s-1e-14}function c(t,e){return i(e-t,s)}function u(t,e){if(l(e))return!0;var r,n;e[0]<e[1]?(r=e[0],n=e[1]):(r=e[1],n=e[0]),(r=a(r,s))>(n=a(n,s))&&(n+=s);var i=a(t,s),o=i+s;return i>=r&&i<=n||o>=r&&o<=n}function h(t,e,r,n,a,i,c){a=a||0,i=i||0;var u,h,f,p,d,g=l([r,n]);function v(t,e){return[t*Math.cos(e)+a,i-t*Math.sin(e)]}g?(u=0,h=o,f=s):r<n?(u=r,f=n):(u=n,f=r),t<e?(p=t,d=e):(p=e,d=t);var m,y=Math.abs(f-u)<=o?0:1;function x(t,e,r){return\"A\"+[t,t]+\" \"+[0,y,r]+\" \"+v(t,e)}return g?m=null===p?\"M\"+v(d,u)+x(d,h,0)+x(d,f,0)+\"Z\":\"M\"+v(p,u)+x(p,h,0)+x(p,f,0)+\"ZM\"+v(d,u)+x(d,h,1)+x(d,f,1)+\"Z\":null===p?(m=\"M\"+v(d,u)+x(d,f,0),c&&(m+=\"L0,0Z\")):m=\"M\"+v(p,u)+\"L\"+v(d,u)+x(d,f,0)+\"L\"+v(p,f)+x(p,u,1)+\"Z\",m}e.exports={deg2rad:function(t){return t/180*o},rad2deg:function(t){return t/o*180},angleDelta:c,angleDist:function(t,e){return Math.abs(c(t,e))},isFullCircle:l,isAngleInsideSector:u,isPtInsideSector:function(t,e,r,n){return!!u(e,n)&&(r[0]<r[1]?(a=r[0],i=r[1]):(a=r[1],i=r[0]),t>=a&&t<=i);var a,i},pathArc:function(t,e,r,n,a){return h(null,t,e,r,n,a,0)},pathSector:function(t,e,r,n,a){return h(null,t,e,r,n,a,1)},pathAnnulus:function(t,e,r,n,a,i){return h(t,e,r,n,a,i,1)}}},{\"./mod\":726}],702:[function(t,e,r){\"use strict\";var n=Array.isArray,a=\"undefined\"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer:{isView:function(){return!1}},i=\"undefined\"==typeof DataView?function(){}:DataView;function o(t){return a.isView(t)&&!(t instanceof i)}function s(t){return n(t)||o(t)}function l(t,e,r){if(s(t)){if(s(t[0])){for(var n=r,a=0;a<t.length;a++)n=e(n,t[a].length);return n}return t.length}return 0}r.isTypedArray=o,r.isArrayOrTypedArray=s,r.isArray1D=function(t){return!s(t[0])},r.ensureArray=function(t,e){return n(t)||(t=[]),t.length=e,t},r.concat=function(){var t,e,r,a,i,o,s,l,c=[],u=!0,h=0;for(r=0;r<arguments.length;r++)(o=(a=arguments[r]).length)&&(e?c.push(a):(e=a,i=o),n(a)?t=!1:(u=!1,h?t!==a.constructor&&(t=!1):t=a.constructor),h+=o);if(!h)return[];if(!c.length)return e;if(u)return e.concat.apply(e,c);if(t){for((s=new t(h)).set(e),r=0;r<c.length;r++)a=c[r],s.set(a,i),i+=a.length;return s}for(s=new Array(h),l=0;l<e.length;l++)s[l]=e[l];for(r=0;r<c.length;r++){for(a=c[r],l=0;l<a.length;l++)s[i+l]=a[l];i+=l}return s},r.maxRowLength=function(t){return l(t,Math.max,0)},r.minRowLength=function(t){return l(t,Math.min,1/0)}},{}],703:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../constants/numerical\").BADNUM,i=/^['\"%,$#\\s']+|[, ]|['\"%,$#\\s']+$/g;e.exports=function(t){return\"string\"==typeof t&&(t=t.replace(i,\"\")),n(t)?Number(t):a}},{\"../constants/numerical\":695,\"fast-isnumeric\":226}],704:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t._fullLayout;e._glcanvas&&e._glcanvas.size()&&e._glcanvas.each(function(t){t.regl&&t.regl.clear({color:!0,depth:!0})})}},{}],705:[function(t,e,r){\"use strict\";e.exports=function(t){t._responsiveChartHandler&&(window.removeEventListener(\"resize\",t._responsiveChartHandler),delete t._responsiveChartHandler)}},{}],706:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"tinycolor2\"),i=t(\"../plots/attributes\"),o=t(\"../components/colorscale/scales\"),s=t(\"../constants/interactions\").DESELECTDIM,l=t(\"./nested_property\"),c=t(\"./regex\").counter,u=t(\"./mod\").modHalf,h=t(\"./array\").isArrayOrTypedArray;function f(t,e){var n=r.valObjectMeta[e.valType];if(e.arrayOk&&h(t))return!0;if(n.validateFunction)return n.validateFunction(t,e);var a={},i=a,o={set:function(t){i=t}};return n.coerceFunction(t,o,a,e),i!==a}r.valObjectMeta={data_array:{coerceFunction:function(t,e,r){h(t)?e.set(t):void 0!==r&&e.set(r)}},enumerated:{coerceFunction:function(t,e,r,n){n.coerceNumber&&(t=+t),-1===n.values.indexOf(t)?e.set(r):e.set(t)},validateFunction:function(t,e){e.coerceNumber&&(t=+t);for(var r=e.values,n=0;n<r.length;n++){var a=String(r[n]);if(\"/\"===a.charAt(0)&&\"/\"===a.charAt(a.length-1)){if(new RegExp(a.substr(1,a.length-2)).test(t))return!0}else if(t===r[n])return!0}return!1}},boolean:{coerceFunction:function(t,e,r){!0===t||!1===t?e.set(t):e.set(r)}},number:{coerceFunction:function(t,e,r,a){!n(t)||void 0!==a.min&&t<a.min||void 0!==a.max&&t>a.max?e.set(r):e.set(+t)}},integer:{coerceFunction:function(t,e,r,a){t%1||!n(t)||void 0!==a.min&&t<a.min||void 0!==a.max&&t>a.max?e.set(r):e.set(+t)}},string:{coerceFunction:function(t,e,r,n){if(\"string\"!=typeof t){var a=\"number\"==typeof t;!0!==n.strict&&a?e.set(String(t)):e.set(r)}else n.noBlank&&!t?e.set(r):e.set(t)}},color:{coerceFunction:function(t,e,r){a(t).isValid()?e.set(t):e.set(r)}},colorlist:{coerceFunction:function(t,e,r){Array.isArray(t)&&t.length&&t.every(function(t){return a(t).isValid()})?e.set(t):e.set(r)}},colorscale:{coerceFunction:function(t,e,r){e.set(o.get(t,r))}},angle:{coerceFunction:function(t,e,r){\"auto\"===t?e.set(\"auto\"):n(t)?e.set(u(+t,360)):e.set(r)}},subplotid:{coerceFunction:function(t,e,r,n){var a=n.regex||c(r);\"string\"==typeof t&&a.test(t)?e.set(t):e.set(r)},validateFunction:function(t,e){var r=e.dflt;return t===r||\"string\"==typeof t&&!!c(r).test(t)}},flaglist:{coerceFunction:function(t,e,r,n){if(\"string\"==typeof t)if(-1===(n.extras||[]).indexOf(t)){for(var a=t.split(\"+\"),i=0;i<a.length;){var o=a[i];-1===n.flags.indexOf(o)||a.indexOf(o)<i?a.splice(i,1):i++}a.length?e.set(a.join(\"+\")):e.set(r)}else e.set(t);else e.set(r)}},any:{coerceFunction:function(t,e,r){void 0===t?e.set(r):e.set(t)}},info_array:{coerceFunction:function(t,e,n,a){function i(t,e,n){var a,i={set:function(t){a=t}};return void 0===n&&(n=e.dflt),r.valObjectMeta[e.valType].coerceFunction(t,i,n,e),a}var o=2===a.dimensions||\"1-2\"===a.dimensions&&Array.isArray(t)&&Array.isArray(t[0]);if(Array.isArray(t)){var s,l,c,u,h,f,p=a.items,d=[],g=Array.isArray(p),v=g&&o&&Array.isArray(p[0]),m=o&&g&&!v,y=g&&!m?p.length:t.length;if(n=Array.isArray(n)?n:[],o)for(s=0;s<y;s++)for(d[s]=[],c=Array.isArray(t[s])?t[s]:[],h=m?p.length:g?p[s].length:c.length,l=0;l<h;l++)u=m?p[l]:g?p[s][l]:p,void 0!==(f=i(c[l],u,(n[s]||[])[l]))&&(d[s][l]=f);else for(s=0;s<y;s++)void 0!==(f=i(t[s],g?p[s]:p,n[s]))&&(d[s]=f);e.set(d)}else e.set(n)},validateFunction:function(t,e){if(!Array.isArray(t))return!1;var r=e.items,n=Array.isArray(r),a=2===e.dimensions;if(!e.freeLength&&t.length!==r.length)return!1;for(var i=0;i<t.length;i++)if(a){if(!Array.isArray(t[i])||!e.freeLength&&t[i].length!==r[i].length)return!1;for(var o=0;o<t[i].length;o++)if(!f(t[i][o],n?r[i][o]:r))return!1}else if(!f(t[i],n?r[i]:r))return!1;return!0}}},r.coerce=function(t,e,n,a,i){var o=l(n,a).get(),s=l(t,a),c=l(e,a),u=s.get(),p=e._template;if(void 0===u&&p&&(u=l(p,a).get(),p=0),void 0===i&&(i=o.dflt),o.arrayOk&&h(u))return c.set(u),u;var d=r.valObjectMeta[o.valType].coerceFunction;d(u,c,i,o);var g=c.get();return p&&g===i&&!f(u,o)&&(d(u=l(p,a).get(),c,i,o),g=c.get()),g},r.coerce2=function(t,e,n,a,i){var o=l(t,a),s=r.coerce(t,e,n,a,i),c=o.get();return null!=c&&s},r.coerceFont=function(t,e,r){var n={};return r=r||{},n.family=t(e+\".family\",r.family),n.size=t(e+\".size\",r.size),n.color=t(e+\".color\",r.color),n},r.coerceHoverinfo=function(t,e,n){var a,o=e._module.attributes,s=o.hoverinfo?o:i,l=s.hoverinfo;if(1===n._dataLength){var c=\"all\"===l.dflt?l.flags.slice():l.dflt.split(\"+\");c.splice(c.indexOf(\"name\"),1),a=c.join(\"+\")}return r.coerce(t,e,s,\"hoverinfo\",a)},r.coerceSelectionMarkerOpacity=function(t,e){if(t.marker){var r,n,a=t.marker.opacity;if(void 0!==a)h(a)||t.selected||t.unselected||(r=a,n=s*a),e(\"selected.marker.opacity\",r),e(\"unselected.marker.opacity\",n)}},r.validate=f},{\"../components/colorscale/scales\":609,\"../constants/interactions\":694,\"../plots/attributes\":764,\"./array\":702,\"./mod\":726,\"./nested_property\":727,\"./regex\":735,\"fast-isnumeric\":226,tinycolor2:538}],707:[function(t,e,r){\"use strict\";var n,a,i=t(\"d3\"),o=t(\"fast-isnumeric\"),s=t(\"./loggers\"),l=t(\"./mod\").mod,c=t(\"../constants/numerical\"),u=c.BADNUM,h=c.ONEDAY,f=c.ONEHOUR,p=c.ONEMIN,d=c.ONESEC,g=c.EPOCHJD,v=t(\"../registry\"),m=i.time.format.utc,y=/^\\s*(-?\\d\\d\\d\\d|\\d\\d)(-(\\d?\\d)(-(\\d?\\d)([ Tt]([01]?\\d|2[0-3])(:([0-5]\\d)(:([0-5]\\d(\\.\\d+)?))?(Z|z|[+\\-]\\d\\d:?\\d\\d)?)?)?)?)?\\s*$/m,x=/^\\s*(-?\\d\\d\\d\\d|\\d\\d)(-(\\d?\\di?)(-(\\d?\\d)([ Tt]([01]?\\d|2[0-3])(:([0-5]\\d)(:([0-5]\\d(\\.\\d+)?))?(Z|z|[+\\-]\\d\\d:?\\d\\d)?)?)?)?)?\\s*$/m,b=(new Date).getFullYear()-70;function _(t){return t&&v.componentsRegistry.calendars&&\"string\"==typeof t&&\"gregorian\"!==t}function w(t,e){return String(t+Math.pow(10,e)).substr(1)}r.dateTick0=function(t,e){return _(t)?e?v.getComponentMethod(\"calendars\",\"CANONICAL_SUNDAY\")[t]:v.getComponentMethod(\"calendars\",\"CANONICAL_TICK\")[t]:e?\"2000-01-02\":\"2000-01-01\"},r.dfltRange=function(t){return _(t)?v.getComponentMethod(\"calendars\",\"DFLTRANGE\")[t]:[\"2000-01-01\",\"2001-01-01\"]},r.isJSDate=function(t){return\"object\"==typeof t&&null!==t&&\"function\"==typeof t.getTime},r.dateTime2ms=function(t,e){if(r.isJSDate(t)){var i=t.getTimezoneOffset()*p,o=(t.getUTCMinutes()-t.getMinutes())*p+(t.getUTCSeconds()-t.getSeconds())*d+(t.getUTCMilliseconds()-t.getMilliseconds());if(o){var s=3*p;i=i-s/2+l(o-i+s/2,s)}return(t=Number(t)-i)>=n&&t<=a?t:u}if(\"string\"!=typeof t&&\"number\"!=typeof t)return u;t=String(t);var c=_(e),m=t.charAt(0);!c||\"G\"!==m&&\"g\"!==m||(t=t.substr(1),e=\"\");var w=c&&\"chinese\"===e.substr(0,7),k=t.match(w?x:y);if(!k)return u;var T=k[1],A=k[3]||\"1\",M=Number(k[5]||1),S=Number(k[7]||0),E=Number(k[9]||0),C=Number(k[11]||0);if(c){if(2===T.length)return u;var L;T=Number(T);try{var P=v.getComponentMethod(\"calendars\",\"getCal\")(e);if(w){var O=\"i\"===A.charAt(A.length-1);A=parseInt(A,10),L=P.newDate(T,P.toMonthIndex(T,A,O),M)}else L=P.newDate(T,Number(A),M)}catch(t){return u}return L?(L.toJD()-g)*h+S*f+E*p+C*d:u}T=2===T.length?(Number(T)+2e3-b)%100+b:Number(T),A-=1;var I=new Date(Date.UTC(2e3,A,M,S,E));return I.setUTCFullYear(T),I.getUTCMonth()!==A?u:I.getUTCDate()!==M?u:I.getTime()+C*d},n=r.MIN_MS=r.dateTime2ms(\"-9999\"),a=r.MAX_MS=r.dateTime2ms(\"9999-12-31 23:59:59.9999\"),r.isDateTime=function(t,e){return r.dateTime2ms(t,e)!==u};var k=90*h,T=3*f,A=5*p;function M(t,e,r,n,a){if((e||r||n||a)&&(t+=\" \"+w(e,2)+\":\"+w(r,2),(n||a)&&(t+=\":\"+w(n,2),a))){for(var i=4;a%10==0;)i-=1,a/=10;t+=\".\"+w(a,i)}return t}r.ms2DateTime=function(t,e,r){if(\"number\"!=typeof t||!(t>=n&&t<=a))return u;e||(e=0);var i,o,s,c,y,x,b=Math.floor(10*l(t+.05,1)),w=Math.round(t-b/10);if(_(r)){var S=Math.floor(w/h)+g,E=Math.floor(l(t,h));try{i=v.getComponentMethod(\"calendars\",\"getCal\")(r).fromJD(S).formatDate(\"yyyy-mm-dd\")}catch(t){i=m(\"G%Y-%m-%d\")(new Date(w))}if(\"-\"===i.charAt(0))for(;i.length<11;)i=\"-0\"+i.substr(1);else for(;i.length<10;)i=\"0\"+i;o=e<k?Math.floor(E/f):0,s=e<k?Math.floor(E%f/p):0,c=e<T?Math.floor(E%p/d):0,y=e<A?E%d*10+b:0}else x=new Date(w),i=m(\"%Y-%m-%d\")(x),o=e<k?x.getUTCHours():0,s=e<k?x.getUTCMinutes():0,c=e<T?x.getUTCSeconds():0,y=e<A?10*x.getUTCMilliseconds()+b:0;return M(i,o,s,c,y)},r.ms2DateTimeLocal=function(t){if(!(t>=n+h&&t<=a-h))return u;var e=Math.floor(10*l(t+.05,1)),r=new Date(Math.round(t-e/10));return M(i.time.format(\"%Y-%m-%d\")(r),r.getHours(),r.getMinutes(),r.getSeconds(),10*r.getUTCMilliseconds()+e)},r.cleanDate=function(t,e,n){if(t===u)return e;if(r.isJSDate(t)||\"number\"==typeof t&&isFinite(t)){if(_(n))return s.error(\"JS Dates and milliseconds are incompatible with world calendars\",t),e;if(!(t=r.ms2DateTimeLocal(+t))&&void 0!==e)return e}else if(!r.isDateTime(t,n))return s.error(\"unrecognized date\",t),e;return t};var S=/%\\d?f/g;function E(t,e,r,n){t=t.replace(S,function(t){var r=Math.min(+t.charAt(1)||6,6);return(e/1e3%1+2).toFixed(r).substr(2).replace(/0+$/,\"\")||\"0\"});var a=new Date(Math.floor(e+.05));if(_(n))try{t=v.getComponentMethod(\"calendars\",\"worldCalFmt\")(t,e,n)}catch(t){return\"Invalid\"}return r(t)(a)}var C=[59,59.9,59.99,59.999,59.9999];r.formatDate=function(t,e,r,n,a,i){if(a=_(a)&&a,!e)if(\"y\"===r)e=i.year;else if(\"m\"===r)e=i.month;else{if(\"d\"!==r)return function(t,e){var r=l(t+.05,h),n=w(Math.floor(r/f),2)+\":\"+w(l(Math.floor(r/p),60),2);if(\"M\"!==e){o(e)||(e=0);var a=(100+Math.min(l(t/d,60),C[e])).toFixed(e).substr(1);e>0&&(a=a.replace(/0+$/,\"\").replace(/[\\.]$/,\"\")),n+=\":\"+a}return n}(t,r)+\"\\n\"+E(i.dayMonthYear,t,n,a);e=i.dayMonth+\"\\n\"+i.year}return E(e,t,n,a)};var L=3*h;r.incrementMonth=function(t,e,r){r=_(r)&&r;var n=l(t,h);if(t=Math.round(t-n),r)try{var a=Math.round(t/h)+g,i=v.getComponentMethod(\"calendars\",\"getCal\")(r),o=i.fromJD(a);return e%12?i.add(o,e,\"m\"):i.add(o,e/12,\"y\"),(o.toJD()-g)*h+n}catch(e){s.error(\"invalid ms \"+t+\" in calendar \"+r)}var c=new Date(t+L);return c.setUTCMonth(c.getUTCMonth()+e)+n-L},r.findExactDates=function(t,e){for(var r,n,a=0,i=0,s=0,l=0,c=_(e)&&v.getComponentMethod(\"calendars\",\"getCal\")(e),u=0;u<t.length;u++)if(n=t[u],o(n)){if(!(n%h))if(c)try{1===(r=c.fromJD(n/h+g)).day()?1===r.month()?a++:i++:s++}catch(t){}else 1===(r=new Date(n)).getUTCDate()?0===r.getUTCMonth()?a++:i++:s++}else l++;s+=i+=a;var f=t.length-l;return{exactYears:a/f,exactMonths:i/f,exactDays:s/f}}},{\"../constants/numerical\":695,\"../registry\":848,\"./loggers\":723,\"./mod\":726,d3:164,\"fast-isnumeric\":226}],708:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"./loggers\");function i(t){var e=t&&t.parentNode;e&&e.removeChild(t)}function o(t,e,r){var n=\"plotly.js-style-\"+t,i=document.getElementById(n);i||((i=document.createElement(\"style\")).setAttribute(\"id\",n),i.appendChild(document.createTextNode(\"\")),document.head.appendChild(i));var o=i.sheet;o.insertRule?o.insertRule(e+\"{\"+r+\"}\",0):o.addRule?o.addRule(e,r,0):a.warn(\"addStyleRule failed\")}e.exports={getGraphDiv:function(t){var e;if(\"string\"==typeof t){if(null===(e=document.getElementById(t)))throw new Error(\"No DOM element with id '\"+t+\"' exists on the page.\");return e}if(null==t)throw new Error(\"DOM element provided is null or undefined\");return t},isPlotDiv:function(t){var e=n.select(t);return e.node()instanceof HTMLElement&&e.size()&&e.classed(\"js-plotly-plot\")},removeElement:i,addStyleRule:function(t,e){o(\"global\",t,e)},addRelatedStyleRule:o,deleteRelatedStyleRule:function(t){var e=\"plotly.js-style-\"+t,r=document.getElementById(e);r&&i(r)}}},{\"./loggers\":723,d3:164}],709:[function(t,e,r){\"use strict\";var n=t(\"events\").EventEmitter,a={init:function(t){if(t._ev instanceof n)return t;var e=new n,r=new n;return t._ev=e,t._internalEv=r,t.on=e.on.bind(e),t.once=e.once.bind(e),t.removeListener=e.removeListener.bind(e),t.removeAllListeners=e.removeAllListeners.bind(e),t._internalOn=r.on.bind(r),t._internalOnce=r.once.bind(r),t._removeInternalListener=r.removeListener.bind(r),t._removeAllInternalListeners=r.removeAllListeners.bind(r),t.emit=function(n,a){\"undefined\"!=typeof jQuery&&jQuery(t).trigger(n,a),e.emit(n,a),r.emit(n,a)},t},triggerHandler:function(t,e,r){var n,a;\"undefined\"!=typeof jQuery&&(n=jQuery(t).triggerHandler(e,r));var i=t._ev;if(!i)return n;var o,s=i._events[e];if(!s)return n;function l(t){return t.listener?(i.removeListener(e,t.listener),t.fired?void 0:(t.fired=!0,t.listener.apply(i,[r]))):t.apply(i,[r])}for(s=Array.isArray(s)?s:[s],o=0;o<s.length-1;o++)l(s[o]);return a=l(s[o]),void 0!==n?n:a},purge:function(t){return delete t._ev,delete t.on,delete t.once,delete t.removeListener,delete t.removeAllListeners,delete t.emit,delete t._ev,delete t._internalEv,delete t._internalOn,delete t._internalOnce,delete t._removeInternalListener,delete t._removeAllInternalListeners,t}};e.exports=a},{events:105}],710:[function(t,e,r){\"use strict\";var n=t(\"./is_plain_object.js\"),a=Array.isArray;function i(t,e,r,o){var s,l,c,u,h,f,p=t[0],d=t.length;if(2===d&&a(p)&&a(t[1])&&0===p.length){if(function(t,e){var r,n;for(r=0;r<t.length;r++){if(null!==(n=t[r])&&\"object\"==typeof n)return!1;void 0!==n&&(e[r]=n)}return!0}(t[1],p))return p;p.splice(0,p.length)}for(var g=1;g<d;g++)for(l in s=t[g])c=p[l],u=s[l],o&&a(u)?p[l]=u:e&&u&&(n(u)||(h=a(u)))?(h?(h=!1,f=c&&a(c)?c:[]):f=c&&n(c)?c:{},p[l]=i([f,u],e,r,o)):(\"undefined\"!=typeof u||r)&&(p[l]=u);return p}r.extendFlat=function(){return i(arguments,!1,!1,!1)},r.extendDeep=function(){return i(arguments,!0,!1,!1)},r.extendDeepAll=function(){return i(arguments,!0,!0,!1)},r.extendDeepNoArrays=function(){return i(arguments,!0,!1,!0)}},{\"./is_plain_object.js\":720}],711:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e={},r=[],n=0,a=0;a<t.length;a++){var i=t[a];1!==e[i]&&(e[i]=1,r[n++]=i)}return r}},{}],712:[function(t,e,r){\"use strict\";function n(t){return!0===t.visible}function a(t){var e=t[0].trace;return!0===e.visible&&0!==e._length}e.exports=function(t){for(var e,r=(e=t,Array.isArray(e)&&Array.isArray(e[0])&&e[0][0]&&e[0][0].trace?a:n),i=[],o=0;o<t.length;o++){var s=t[o];r(s)&&i.push(s)}return i}},{}],713:[function(t,e,r){\"use strict\";var n=t(\"country-regex\"),a=t(\"../lib\"),i=Object.keys(n),o={\"ISO-3\":a.identity,\"USA-states\":a.identity,\"country names\":function(t){for(var e=0;e<i.length;e++){var r=i[e],o=new RegExp(n[r]);if(o.test(t.trim().toLowerCase()))return r}return a.log(\"Unrecognized country name: \"+t+\".\"),!1}};e.exports={locationToFeature:function(t,e,r){if(!e||\"string\"!=typeof e)return!1;var n,i,s,l=o[t](e);if(l){if(\"USA-states\"===t)for(n=[],s=0;s<r.length;s++)(i=r[s]).properties&&i.properties.gu&&\"USA\"===i.properties.gu&&n.push(i);else n=r;for(s=0;s<n.length;s++)if((i=n[s]).id===l)return i;a.log([\"Location with id\",l,\"does not have a matching topojson feature at this resolution.\"].join(\" \"))}return!1}}},{\"../lib\":719,\"country-regex\":135}],714:[function(t,e,r){\"use strict\";var n=t(\"../constants/numerical\").BADNUM;r.calcTraceToLineCoords=function(t){for(var e=t[0].trace.connectgaps,r=[],a=[],i=0;i<t.length;i++){var o=t[i].lonlat;o[0]!==n?a.push(o):!e&&a.length>0&&(r.push(a),a=[])}return a.length>0&&r.push(a),r},r.makeLine=function(t){return 1===t.length?{type:\"LineString\",coordinates:t[0]}:{type:\"MultiLineString\",coordinates:t}},r.makePolygon=function(t){if(1===t.length)return{type:\"Polygon\",coordinates:t};for(var e=new Array(t.length),r=0;r<t.length;r++)e[r]=[t[r]];return{type:\"MultiPolygon\",coordinates:e}},r.makeBlank=function(){return{type:\"Point\",coordinates:[]}}},{\"../constants/numerical\":695}],715:[function(t,e,r){\"use strict\";var n,a,i,o=t(\"./mod\").mod;function s(t,e,r,n,a,i,o,s){var l=r-t,c=a-t,u=o-a,h=n-e,f=i-e,p=s-i,d=l*p-u*h;if(0===d)return null;var g=(c*p-u*f)/d,v=(c*h-l*f)/d;return v<0||v>1||g<0||g>1?null:{x:t+l*g,y:e+h*g}}function l(t,e,r,n,a){var i=n*t+a*e;if(i<0)return n*n+a*a;if(i>r){var o=n-t,s=a-e;return o*o+s*s}var l=n*e-a*t;return l*l/r}r.segmentsIntersect=s,r.segmentDistance=function(t,e,r,n,a,i,o,c){if(s(t,e,r,n,a,i,o,c))return 0;var u=r-t,h=n-e,f=o-a,p=c-i,d=u*u+h*h,g=f*f+p*p,v=Math.min(l(u,h,d,a-t,i-e),l(u,h,d,o-t,c-e),l(f,p,g,t-a,e-i),l(f,p,g,r-a,n-i));return Math.sqrt(v)},r.getTextLocation=function(t,e,r,s){if(t===a&&s===i||(n={},a=t,i=s),n[r])return n[r];var l=t.getPointAtLength(o(r-s/2,e)),c=t.getPointAtLength(o(r+s/2,e)),u=Math.atan((c.y-l.y)/(c.x-l.x)),h=t.getPointAtLength(o(r,e)),f={x:(4*h.x+l.x+c.x)/6,y:(4*h.y+l.y+c.y)/6,theta:u};return n[r]=f,f},r.clearLocationCache=function(){a=null},r.getVisibleSegment=function(t,e,r){var n,a,i=e.left,o=e.right,s=e.top,l=e.bottom,c=0,u=t.getTotalLength(),h=u;function f(e){var r=t.getPointAtLength(e);0===e?n=r:e===u&&(a=r);var c=r.x<i?i-r.x:r.x>o?r.x-o:0,h=r.y<s?s-r.y:r.y>l?r.y-l:0;return Math.sqrt(c*c+h*h)}for(var p=f(c);p;){if((c+=p+r)>h)return;p=f(c)}for(p=f(h);p;){if(c>(h-=p+r))return;p=f(h)}return{min:c,max:h,len:h-c,total:u,isClosed:0===c&&h===u&&Math.abs(n.x-a.x)<.1&&Math.abs(n.y-a.y)<.1}},r.findPointOnPath=function(t,e,r,n){for(var a,i,o,s=(n=n||{}).pathLength||t.getTotalLength(),l=n.tolerance||.001,c=n.iterationLimit||30,u=t.getPointAtLength(0)[r]>t.getPointAtLength(s)[r]?-1:1,h=0,f=0,p=s;h<c;){if(a=(f+p)/2,o=(i=t.getPointAtLength(a))[r]-e,Math.abs(o)<l)return i;u*o>0?p=a:f=a,h++}return i}},{\"./mod\":726}],716:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"tinycolor2\"),i=t(\"color-normalize\"),o=t(\"../components/colorscale\"),s=t(\"../components/color/attributes\").defaultLine,l=t(\"./array\").isArrayOrTypedArray,c=i(s),u=1;function h(t,e){var r=t;return r[3]*=e,r}function f(t){if(n(t))return c;var e=i(t);return e.length?e:c}function p(t){return n(t)?t:u}e.exports={formatColor:function(t,e,r){var n,a,s,d,g,v=t.color,m=l(v),y=l(e),x=o.extractOpts(t),b=[];if(n=void 0!==x.colorscale?o.makeColorScaleFuncFromTrace(t):f,a=m?function(t,e){return void 0===t[e]?c:i(n(t[e]))}:f,s=y?function(t,e){return void 0===t[e]?u:p(t[e])}:p,m||y)for(var _=0;_<r;_++)d=a(v,_),g=s(e,_),b[_]=h(d,g);else b=h(i(v),e);return b},parseColorScale:function(t,e){void 0===e&&(e=1);var r=o.extractOpts(t);return(r.reversescale?o.flipScale(r.colorscale):r.colorscale).map(function(t){var r=t[0],n=a(t[1]).toRgb();return{index:r,rgb:[n.r,n.g,n.b,e]}})}}},{\"../components/color/attributes\":593,\"../components/colorscale\":606,\"./array\":702,\"color-normalize\":121,\"fast-isnumeric\":226,tinycolor2:538}],717:[function(t,e,r){\"use strict\";var n=t(\"./identity\");function a(t){return[t]}e.exports={keyFun:function(t){return t.key},repeat:a,descend:n,wrap:a,unwrap:function(t){return t[0]}}},{\"./identity\":718}],718:[function(t,e,r){\"use strict\";e.exports=function(t){return t}},{}],719:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"fast-isnumeric\"),i=t(\"../constants/numerical\"),o=i.FP_SAFE,s=i.BADNUM,l=e.exports={};l.nestedProperty=t(\"./nested_property\"),l.keyedContainer=t(\"./keyed_container\"),l.relativeAttr=t(\"./relative_attr\"),l.isPlainObject=t(\"./is_plain_object\"),l.toLogRange=t(\"./to_log_range\"),l.relinkPrivateKeys=t(\"./relink_private\");var c=t(\"./array\");l.isTypedArray=c.isTypedArray,l.isArrayOrTypedArray=c.isArrayOrTypedArray,l.isArray1D=c.isArray1D,l.ensureArray=c.ensureArray,l.concat=c.concat,l.maxRowLength=c.maxRowLength,l.minRowLength=c.minRowLength;var u=t(\"./mod\");l.mod=u.mod,l.modHalf=u.modHalf;var h=t(\"./coerce\");l.valObjectMeta=h.valObjectMeta,l.coerce=h.coerce,l.coerce2=h.coerce2,l.coerceFont=h.coerceFont,l.coerceHoverinfo=h.coerceHoverinfo,l.coerceSelectionMarkerOpacity=h.coerceSelectionMarkerOpacity,l.validate=h.validate;var f=t(\"./dates\");l.dateTime2ms=f.dateTime2ms,l.isDateTime=f.isDateTime,l.ms2DateTime=f.ms2DateTime,l.ms2DateTimeLocal=f.ms2DateTimeLocal,l.cleanDate=f.cleanDate,l.isJSDate=f.isJSDate,l.formatDate=f.formatDate,l.incrementMonth=f.incrementMonth,l.dateTick0=f.dateTick0,l.dfltRange=f.dfltRange,l.findExactDates=f.findExactDates,l.MIN_MS=f.MIN_MS,l.MAX_MS=f.MAX_MS;var p=t(\"./search\");l.findBin=p.findBin,l.sorterAsc=p.sorterAsc,l.sorterDes=p.sorterDes,l.distinctVals=p.distinctVals,l.roundUp=p.roundUp,l.sort=p.sort,l.findIndexOfMin=p.findIndexOfMin;var d=t(\"./stats\");l.aggNums=d.aggNums,l.len=d.len,l.mean=d.mean,l.median=d.median,l.midRange=d.midRange,l.variance=d.variance,l.stdev=d.stdev,l.interp=d.interp;var g=t(\"./matrix\");l.init2dArray=g.init2dArray,l.transposeRagged=g.transposeRagged,l.dot=g.dot,l.translationMatrix=g.translationMatrix,l.rotationMatrix=g.rotationMatrix,l.rotationXYMatrix=g.rotationXYMatrix,l.apply2DTransform=g.apply2DTransform,l.apply2DTransform2=g.apply2DTransform2;var v=t(\"./angles\");l.deg2rad=v.deg2rad,l.rad2deg=v.rad2deg,l.angleDelta=v.angleDelta,l.angleDist=v.angleDist,l.isFullCircle=v.isFullCircle,l.isAngleInsideSector=v.isAngleInsideSector,l.isPtInsideSector=v.isPtInsideSector,l.pathArc=v.pathArc,l.pathSector=v.pathSector,l.pathAnnulus=v.pathAnnulus;var m=t(\"./anchor_utils\");l.isLeftAnchor=m.isLeftAnchor,l.isCenterAnchor=m.isCenterAnchor,l.isRightAnchor=m.isRightAnchor,l.isTopAnchor=m.isTopAnchor,l.isMiddleAnchor=m.isMiddleAnchor,l.isBottomAnchor=m.isBottomAnchor;var y=t(\"./geometry2d\");l.segmentsIntersect=y.segmentsIntersect,l.segmentDistance=y.segmentDistance,l.getTextLocation=y.getTextLocation,l.clearLocationCache=y.clearLocationCache,l.getVisibleSegment=y.getVisibleSegment,l.findPointOnPath=y.findPointOnPath;var x=t(\"./extend\");l.extendFlat=x.extendFlat,l.extendDeep=x.extendDeep,l.extendDeepAll=x.extendDeepAll,l.extendDeepNoArrays=x.extendDeepNoArrays;var b=t(\"./loggers\");l.log=b.log,l.warn=b.warn,l.error=b.error;var _=t(\"./regex\");l.counterRegex=_.counter;var w=t(\"./throttle\");l.throttle=w.throttle,l.throttleDone=w.done,l.clearThrottle=w.clear;var k=t(\"./dom\");function T(t){var e={};for(var r in t)for(var n=t[r],a=0;a<n.length;a++)e[n[a]]=+r;return e}l.getGraphDiv=k.getGraphDiv,l.isPlotDiv=k.isPlotDiv,l.removeElement=k.removeElement,l.addStyleRule=k.addStyleRule,l.addRelatedStyleRule=k.addRelatedStyleRule,l.deleteRelatedStyleRule=k.deleteRelatedStyleRule,l.clearResponsive=t(\"./clear_responsive\"),l.makeTraceGroups=t(\"./make_trace_groups\"),l._=t(\"./localize\"),l.notifier=t(\"./notifier\"),l.filterUnique=t(\"./filter_unique\"),l.filterVisible=t(\"./filter_visible\"),l.pushUnique=t(\"./push_unique\"),l.cleanNumber=t(\"./clean_number\"),l.ensureNumber=function(t){return a(t)?(t=Number(t))<-o||t>o?s:a(t)?Number(t):s:s},l.isIndex=function(t,e){return!(void 0!==e&&t>=e)&&(a(t)&&t>=0&&t%1==0)},l.noop=t(\"./noop\"),l.identity=t(\"./identity\"),l.repeat=function(t,e){for(var r=new Array(e),n=0;n<e;n++)r[n]=t;return r},l.swapAttrs=function(t,e,r,n){r||(r=\"x\"),n||(n=\"y\");for(var a=0;a<e.length;a++){var i=e[a],o=l.nestedProperty(t,i.replace(\"?\",r)),s=l.nestedProperty(t,i.replace(\"?\",n)),c=o.get();o.set(s.get()),s.set(c)}},l.raiseToTop=function(t){t.parentNode.appendChild(t)},l.cancelTransition=function(t){return t.transition().duration(0)},l.constrain=function(t,e,r){return e>r?Math.max(r,Math.min(e,t)):Math.max(e,Math.min(r,t))},l.bBoxIntersect=function(t,e,r){return r=r||0,t.left<=e.right+r&&e.left<=t.right+r&&t.top<=e.bottom+r&&e.top<=t.bottom+r},l.simpleMap=function(t,e,r,n){for(var a=t.length,i=new Array(a),o=0;o<a;o++)i[o]=e(t[o],r,n);return i},l.randstr=function t(e,r,n,a){if(n||(n=16),void 0===r&&(r=24),r<=0)return\"0\";var i,o,s=Math.log(Math.pow(2,r))/Math.log(n),c=\"\";for(i=2;s===1/0;i*=2)s=Math.log(Math.pow(2,r/i))/Math.log(n)*i;var u=s-Math.floor(s);for(i=0;i<Math.floor(s);i++)c=Math.floor(Math.random()*n).toString(n)+c;u&&(o=Math.pow(n,u),c=Math.floor(Math.random()*o).toString(n)+c);var h=parseInt(c,n);return e&&e[c]||h!==1/0&&h>=Math.pow(2,r)?a>10?(l.warn(\"randstr failed uniqueness\"),c):t(e,r,n,(a||0)+1):c},l.OptionControl=function(t,e){t||(t={}),e||(e=\"opt\");var r={optionList:[],_newoption:function(n){n[e]=t,r[n.name]=n,r.optionList.push(n)}};return r[\"_\"+e]=t,r},l.smooth=function(t,e){if((e=Math.round(e)||0)<2)return t;var r,n,a,i,o=t.length,s=2*o,l=2*e-1,c=new Array(l),u=new Array(o);for(r=0;r<l;r++)c[r]=(1-Math.cos(Math.PI*(r+1)/e))/(2*e);for(r=0;r<o;r++){for(i=0,n=0;n<l;n++)(a=r+n+1-e)<-o?a-=s*Math.round(a/s):a>=s&&(a-=s*Math.floor(a/s)),a<0?a=-1-a:a>=o&&(a=s-1-a),i+=t[a]*c[n];u[r]=i}return u},l.syncOrAsync=function(t,e,r){var n;function a(){return l.syncOrAsync(t,e,r)}for(;t.length;)if((n=(0,t.splice(0,1)[0])(e))&&n.then)return n.then(a).then(void 0,l.promiseError);return r&&r(e)},l.stripTrailingSlash=function(t){return\"/\"===t.substr(-1)?t.substr(0,t.length-1):t},l.noneOrAll=function(t,e,r){if(t){var n,a=!1,i=!0;for(n=0;n<r.length;n++)null!=t[r[n]]?a=!0:i=!1;if(a&&!i)for(n=0;n<r.length;n++)t[r[n]]=e[r[n]]}},l.mergeArray=function(t,e,r,n){var a=\"function\"==typeof n;if(l.isArrayOrTypedArray(t))for(var i=Math.min(t.length,e.length),o=0;o<i;o++){var s=t[o];e[o][r]=a?n(s):s}},l.mergeArrayCastPositive=function(t,e,r){return l.mergeArray(t,e,r,function(t){var e=+t;return isFinite(e)&&e>0?e:0})},l.fillArray=function(t,e,r,n){if(n=n||l.identity,l.isArrayOrTypedArray(t))for(var a=0;a<e.length;a++)e[a][r]=n(t[a])},l.castOption=function(t,e,r,n){n=n||l.identity;var a=l.nestedProperty(t,r).get();return l.isArrayOrTypedArray(a)?Array.isArray(e)&&l.isArrayOrTypedArray(a[e[0]])?n(a[e[0]][e[1]]):n(a[e]):a},l.extractOption=function(t,e,r,n){if(r in t)return t[r];var a=l.nestedProperty(e,n).get();return Array.isArray(a)?void 0:a},l.tagSelected=function(t,e,r){var n,a,i=e.selectedpoints,o=e._indexToPoints;o&&(n=T(o));for(var s=0;s<i.length;s++){var c=i[s];if(l.isIndex(c)){var u=n?n[c]:c,h=r?r[u]:u;void 0!==(a=h)&&a<t.length&&(t[h].selected=1)}}},l.selIndices2selPoints=function(t){var e=t.selectedpoints,r=t._indexToPoints;if(r){for(var n=T(r),a=[],i=0;i<e.length;i++){var o=e[i];if(l.isIndex(o)){var s=n[o];l.isIndex(s)&&a.push(s)}}return a}return e},l.getTargetArray=function(t,e){var r=e.target;if(\"string\"==typeof r&&r){var n=l.nestedProperty(t,r).get();return!!Array.isArray(n)&&n}return!!Array.isArray(r)&&r},l.minExtend=function(t,e){var r={};\"object\"!=typeof e&&(e={});var n,a,i,o=Object.keys(t);for(n=0;n<o.length;n++)i=t[a=o[n]],\"_\"!==a.charAt(0)&&\"function\"!=typeof i&&(\"module\"===a?r[a]=i:Array.isArray(i)?r[a]=\"colorscale\"===a?i.slice():i.slice(0,3):l.isTypedArray(i)?r[a]=i.subarray(0,3):r[a]=i&&\"object\"==typeof i?l.minExtend(t[a],e[a]):i);for(o=Object.keys(e),n=0;n<o.length;n++)\"object\"==typeof(i=e[a=o[n]])&&a in r&&\"object\"==typeof r[a]||(r[a]=i);return r},l.titleCase=function(t){return t.charAt(0).toUpperCase()+t.substr(1)},l.containsAny=function(t,e){for(var r=0;r<e.length;r++)if(-1!==t.indexOf(e[r]))return!0;return!1},l.isIE=function(){return\"undefined\"!=typeof window.navigator.msSaveBlob};var A=/MSIE [1-9]\\./;l.isIE9orBelow=function(){return l.isIE()&&A.test(window.navigator.userAgent)};var M=/Version\\/[\\d\\.]+.*Safari/;l.isSafari=function(){return M.test(window.navigator.userAgent)},l.isD3Selection=function(t){return t&&\"function\"==typeof t.classed},l.ensureSingle=function(t,e,r,n){var a=t.select(e+(r?\".\"+r:\"\"));if(a.size())return a;var i=t.append(e);return r&&i.classed(r,!0),n&&i.call(n),i},l.ensureSingleById=function(t,e,r,n){var a=t.select(e+\"#\"+r);if(a.size())return a;var i=t.append(e).attr(\"id\",r);return n&&i.call(n),i},l.objectFromPath=function(t,e){for(var r,n=t.split(\".\"),a=r={},i=0;i<n.length;i++){var o=n[i],s=null,l=n[i].match(/(.*)\\[([0-9]+)\\]/);l?(o=l[1],s=l[2],r=r[o]=[],i===n.length-1?r[s]=e:r[s]={},r=r[s]):(i===n.length-1?r[o]=e:r[o]={},r=r[o])}return a};var S=/^([^\\[\\.]+)\\.(.+)?/,E=/^([^\\.]+)\\[([0-9]+)\\](\\.)?(.+)?/;l.expandObjectPaths=function(t){var e,r,n,a,i,o,s;if(\"object\"==typeof t&&!Array.isArray(t))for(r in t)t.hasOwnProperty(r)&&((e=r.match(S))?(a=t[r],n=e[1],delete t[r],t[n]=l.extendDeepNoArrays(t[n]||{},l.objectFromPath(r,l.expandObjectPaths(a))[n])):(e=r.match(E))?(a=t[r],n=e[1],i=parseInt(e[2]),delete t[r],t[n]=t[n]||[],\".\"===e[3]?(s=e[4],o=t[n][i]=t[n][i]||{},l.extendDeepNoArrays(o,l.objectFromPath(s,l.expandObjectPaths(a)))):t[n][i]=l.expandObjectPaths(a)):t[r]=l.expandObjectPaths(t[r]));return t},l.numSeparate=function(t,e,r){if(r||(r=!1),\"string\"!=typeof e||0===e.length)throw new Error(\"Separator string required for formatting!\");\"number\"==typeof t&&(t=String(t));var n=/(\\d+)(\\d{3})/,a=e.charAt(0),i=e.charAt(1),o=t.split(\".\"),s=o[0],l=o.length>1?a+o[1]:\"\";if(i&&(o.length>1||s.length>4||r))for(;n.test(s);)s=s.replace(n,\"$1\"+i+\"$2\");return s+l},l.TEMPLATE_STRING_REGEX=/%{([^\\s%{}:]*)([:|\\|][^}]*)?}/g;var C=/^\\w*$/;l.templateString=function(t,e){var r={};return t.replace(l.TEMPLATE_STRING_REGEX,function(t,n){return C.test(n)?e[n]||\"\":(r[n]=r[n]||l.nestedProperty(e,n).get,r[n]()||\"\")})};var L={max:10,count:0,name:\"hovertemplate\"};l.hovertemplateString=function(){return I.apply(L,arguments)};var P={max:10,count:0,name:\"texttemplate\"};l.texttemplateString=function(){return I.apply(P,arguments)};var O=/^[:|\\|]/;function I(t,e,r){var a=this,i=arguments;e||(e={});var o={};return t.replace(l.TEMPLATE_STRING_REGEX,function(t,s,c){var u,h,f,p;for(f=3;f<i.length;f++)if(u=i[f]){if(u.hasOwnProperty(s)){h=u[s];break}if(C.test(s)||(h=o[s]||l.nestedProperty(u,s).get())&&(o[s]=h),void 0!==h)break}if(void 0===h&&a)return a.count<a.max&&(l.warn(\"Variable '\"+s+\"' in \"+a.name+\" could not be found!\"),h=t),a.count===a.max&&l.warn(\"Too many \"+a.name+\" warnings - additional warnings will be suppressed\"),a.count++,t;if(c){if(\":\"===c[0]&&(h=(p=r?r.numberFormat:n.format)(c.replace(O,\"\"))(h)),\"|\"===c[0]){p=r?r.timeFormat.utc:n.time.format.utc;var d=l.dateTime2ms(h);h=l.formatDate(d,c.replace(O,\"\"),!1,p)}}else e.hasOwnProperty(s+\"Label\")&&(h=e[s+\"Label\"]);return h})}l.subplotSort=function(t,e){for(var r=Math.min(t.length,e.length)+1,n=0,a=0,i=0;i<r;i++){var o=t.charCodeAt(i)||0,s=e.charCodeAt(i)||0,l=o>=48&&o<=57,c=s>=48&&s<=57;if(l&&(n=10*n+o-48),c&&(a=10*a+s-48),!l||!c){if(n!==a)return n-a;if(o!==s)return o-s}}return a-n};var z=2e9;l.seedPseudoRandom=function(){z=2e9},l.pseudoRandom=function(){var t=z;return z=(69069*z+1)%4294967296,Math.abs(z-t)<429496729?l.pseudoRandom():z/4294967296},l.fillText=function(t,e,r){var n=Array.isArray(r)?function(t){r.push(t)}:function(t){r.text=t},a=l.extractOption(t,e,\"htx\",\"hovertext\");if(l.isValidTextValue(a))return n(a);var i=l.extractOption(t,e,\"tx\",\"text\");return l.isValidTextValue(i)?n(i):void 0},l.isValidTextValue=function(t){return t||0===t},l.formatPercent=function(t,e){e=e||0;for(var r=(Math.round(100*t*Math.pow(10,e))*Math.pow(.1,e)).toFixed(e)+\"%\",n=0;n<e;n++)-1!==r.indexOf(\".\")&&(r=(r=r.replace(\"0%\",\"%\")).replace(\".%\",\"%\"));return r},l.isHidden=function(t){var e=window.getComputedStyle(t).display;return!e||\"none\"===e},l.getTextTransform=function(t){var e,r=t.textX,n=t.textY,a=t.targetX,i=t.targetY,o=t.scale,s=t.rotate;return o<1?e=\"scale(\"+o+\") \":(o=1,e=\"\"),\"translate(\"+(a-o*r)+\" \"+(i-o*n)+\")\"+e+(s?\"rotate(\"+s+\" \"+r+\" \"+n+\") \":\"\")}},{\"../constants/numerical\":695,\"./anchor_utils\":700,\"./angles\":701,\"./array\":702,\"./clean_number\":703,\"./clear_responsive\":705,\"./coerce\":706,\"./dates\":707,\"./dom\":708,\"./extend\":710,\"./filter_unique\":711,\"./filter_visible\":712,\"./geometry2d\":715,\"./identity\":718,\"./is_plain_object\":720,\"./keyed_container\":721,\"./localize\":722,\"./loggers\":723,\"./make_trace_groups\":724,\"./matrix\":725,\"./mod\":726,\"./nested_property\":727,\"./noop\":728,\"./notifier\":729,\"./push_unique\":733,\"./regex\":735,\"./relative_attr\":736,\"./relink_private\":737,\"./search\":738,\"./stats\":741,\"./throttle\":744,\"./to_log_range\":745,d3:164,\"fast-isnumeric\":226}],720:[function(t,e,r){\"use strict\";e.exports=function(t){return window&&window.process&&window.process.versions?\"[object Object]\"===Object.prototype.toString.call(t):\"[object Object]\"===Object.prototype.toString.call(t)&&Object.getPrototypeOf(t)===Object.prototype}},{}],721:[function(t,e,r){\"use strict\";var n=t(\"./nested_property\"),a=/^\\w*$/;e.exports=function(t,e,r,i){var o,s,l;r=r||\"name\",i=i||\"value\";var c={};e&&e.length?(l=n(t,e),s=l.get()):s=t,e=e||\"\";var u={};if(s)for(o=0;o<s.length;o++)u[s[o][r]]=o;var h=a.test(i),f={set:function(t,e){var a=null===e?4:0;if(!s){if(!l||4===a)return;s=[],l.set(s)}var o=u[t];if(void 0===o){if(4===a)return;a|=3,o=s.length,u[t]=o}else e!==(h?s[o][i]:n(s[o],i).get())&&(a|=2);var p=s[o]=s[o]||{};return p[r]=t,h?p[i]=e:n(p,i).set(e),null!==e&&(a&=-5),c[o]=c[o]|a,f},get:function(t){if(s){var e=u[t];return void 0===e?void 0:h?s[e][i]:n(s[e],i).get()}},rename:function(t,e){var n=u[t];return void 0===n?f:(c[n]=1|c[n],u[e]=n,delete u[t],s[n][r]=e,f)},remove:function(t){var e=u[t];if(void 0===e)return f;var a=s[e];if(Object.keys(a).length>2)return c[e]=2|c[e],f.set(t,null);if(h){for(o=e;o<s.length;o++)c[o]=3|c[o];for(o=e;o<s.length;o++)u[s[o][r]]--;s.splice(e,1),delete u[t]}else n(a,i).set(null),c[e]=6|c[e];return f},constructUpdate:function(){for(var t,a,o={},l=Object.keys(c),u=0;u<l.length;u++)a=l[u],t=e+\"[\"+a+\"]\",s[a]?(1&c[a]&&(o[t+\".\"+r]=s[a][r]),2&c[a]&&(o[t+\".\"+i]=h?4&c[a]?null:s[a][i]:4&c[a]?null:n(s[a],i).get())):o[t]=null;return o}};return f}},{\"./nested_property\":727}],722:[function(t,e,r){\"use strict\";var n=t(\"../registry\");e.exports=function(t,e){for(var r=t._context.locale,a=0;a<2;a++){for(var i=t._context.locales,o=0;o<2;o++){var s=(i[r]||{}).dictionary;if(s){var l=s[e];if(l)return l}i=n.localeRegistry}var c=r.split(\"-\")[0];if(c===r)break;r=c}return e}},{\"../registry\":848}],723:[function(t,e,r){\"use strict\";var n=t(\"../plot_api/plot_config\").dfltConfig,a=e.exports={};function i(t,e){if(t&&t.apply)try{return void t.apply(console,e)}catch(t){}for(var r=0;r<e.length;r++)try{t(e[r])}catch(t){console.log(e[r])}}a.log=function(){if(n.logging>1){for(var t=[\"LOG:\"],e=0;e<arguments.length;e++)t.push(arguments[e]);i(console.trace||console.log,t)}},a.warn=function(){if(n.logging>0){for(var t=[\"WARN:\"],e=0;e<arguments.length;e++)t.push(arguments[e]);i(console.trace||console.log,t)}},a.error=function(){if(n.logging>0){for(var t=[\"ERROR:\"],e=0;e<arguments.length;e++)t.push(arguments[e]);i(console.error,t)}}},{\"../plot_api/plot_config\":755}],724:[function(t,e,r){\"use strict\";var n=t(\"d3\");e.exports=function(t,e,r){var a=t.selectAll(\"g.\"+r.replace(/\\s/g,\".\")).data(e,function(t){return t[0].trace.uid});a.exit().remove(),a.enter().append(\"g\").attr(\"class\",r),a.order();var i=t.classed(\"rangeplot\")?\"nodeRangePlot3\":\"node3\";return a.each(function(t){t[0][i]=n.select(this)}),a}},{d3:164}],725:[function(t,e,r){\"use strict\";r.init2dArray=function(t,e){for(var r=new Array(t),n=0;n<t;n++)r[n]=new Array(e);return r},r.transposeRagged=function(t){var e,r,n=0,a=t.length;for(e=0;e<a;e++)n=Math.max(n,t[e].length);var i=new Array(n);for(e=0;e<n;e++)for(i[e]=new Array(a),r=0;r<a;r++)i[e][r]=t[r][e];return i},r.dot=function(t,e){if(!t.length||!e.length||t.length!==e.length)return null;var n,a,i=t.length;if(t[0].length)for(n=new Array(i),a=0;a<i;a++)n[a]=r.dot(t[a],e);else if(e[0].length){var o=r.transposeRagged(e);for(n=new Array(o.length),a=0;a<o.length;a++)n[a]=r.dot(t,o[a])}else for(n=0,a=0;a<i;a++)n+=t[a]*e[a];return n},r.translationMatrix=function(t,e){return[[1,0,t],[0,1,e],[0,0,1]]},r.rotationMatrix=function(t){var e=t*Math.PI/180;return[[Math.cos(e),-Math.sin(e),0],[Math.sin(e),Math.cos(e),0],[0,0,1]]},r.rotationXYMatrix=function(t,e,n){return r.dot(r.dot(r.translationMatrix(e,n),r.rotationMatrix(t)),r.translationMatrix(-e,-n))},r.apply2DTransform=function(t){return function(){var e=arguments;3===e.length&&(e=e[0]);var n=1===arguments.length?e[0]:[e[0],e[1]];return r.dot(t,[n[0],n[1],1]).slice(0,2)}},r.apply2DTransform2=function(t){var e=r.apply2DTransform(t);return function(t){return e(t.slice(0,2)).concat(e(t.slice(2,4)))}}},{}],726:[function(t,e,r){\"use strict\";e.exports={mod:function(t,e){var r=t%e;return r<0?r+e:r},modHalf:function(t,e){return Math.abs(t)>e/2?t-Math.round(t/e)*e:t}}},{}],727:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"./array\").isArrayOrTypedArray;e.exports=function(t,e){if(n(e))e=String(e);else if(\"string\"!=typeof e||\"[-1]\"===e.substr(e.length-4))throw\"bad property string\";for(var r,i,o,l=0,c=e.split(\".\");l<c.length;){if(r=String(c[l]).match(/^([^\\[\\]]*)((\\[\\-?[0-9]*\\])+)$/)){if(r[1])c[l]=r[1];else{if(0!==l)throw\"bad property string\";c.splice(0,1)}for(i=r[2].substr(1,r[2].length-2).split(\"][\"),o=0;o<i.length;o++)l++,c.splice(l,0,Number(i[o]))}l++}return\"object\"!=typeof t?function(t,e,r){return{set:function(){throw\"bad container\"},get:function(){},astr:e,parts:r,obj:t}}(t,e,c):{set:s(t,c,e),get:function t(e,r){return function(){var n,i,o,s,l,c=e;for(s=0;s<r.length-1;s++){if(-1===(n=r[s])){for(i=!0,o=[],l=0;l<c.length;l++)o[l]=t(c[l],r.slice(s+1))(),o[l]!==o[0]&&(i=!1);return i?o[0]:o}if(\"number\"==typeof n&&!a(c))return;if(\"object\"!=typeof(c=c[n])||null===c)return}if(\"object\"==typeof c&&null!==c&&null!==(o=c[r[s]]))return o}}(t,c),astr:e,parts:c,obj:t}};var i=/(^|\\.)args\\[/;function o(t,e){return void 0===t||null===t&&!e.match(i)}function s(t,e,r){return function(n){var i,s,h=t,f=\"\",p=[[t,f]],d=o(n,r);for(s=0;s<e.length-1;s++){if(\"number\"==typeof(i=e[s])&&!a(h))throw\"array index but container is not an array\";if(-1===i){if(d=!c(h,e.slice(s+1),n,r))break;return}if(!u(h,i,e[s+1],d))break;if(\"object\"!=typeof(h=h[i])||null===h)throw\"container is not an object\";f=l(f,i),p.push([h,f])}if(d){if(s===e.length-1&&(delete h[e[s]],Array.isArray(h)&&+e[s]==h.length-1))for(;h.length&&void 0===h[h.length-1];)h.pop()}else h[e[s]]=n}}function l(t,e){var r=e;return n(e)?r=\"[\"+e+\"]\":t&&(r=\".\"+e),t+r}function c(t,e,r,n){var i,l=a(r),c=!0,h=r,f=n.replace(\"-1\",0),p=!l&&o(r,f),d=e[0];for(i=0;i<t.length;i++)f=n.replace(\"-1\",i),l&&(p=o(h=r[i%r.length],f)),p&&(c=!1),u(t,i,d,p)&&s(t[i],e,n.replace(\"-1\",i))(h);return c}function u(t,e,r,n){if(void 0===t[e]){if(n)return!1;t[e]=\"number\"==typeof r?[]:{}}return!0}},{\"./array\":702,\"fast-isnumeric\":226}],728:[function(t,e,r){\"use strict\";e.exports=function(){}},{}],729:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"fast-isnumeric\"),i=[];e.exports=function(t,e){if(-1===i.indexOf(t)){i.push(t);var r=1e3;a(e)?r=e:\"long\"===e&&(r=3e3);var o=n.select(\"body\").selectAll(\".plotly-notifier\").data([0]);o.enter().append(\"div\").classed(\"plotly-notifier\",!0),o.selectAll(\".notifier-note\").data(i).enter().append(\"div\").classed(\"notifier-note\",!0).style(\"opacity\",0).each(function(t){var e=n.select(this);e.append(\"button\").classed(\"notifier-close\",!0).html(\"&times;\").on(\"click\",function(){e.transition().call(s)});for(var a=e.append(\"p\"),i=t.split(/<br\\s*\\/?>/g),o=0;o<i.length;o++)o&&a.append(\"br\"),a.append(\"span\").text(i[o]);e.transition().duration(700).style(\"opacity\",1).transition().delay(r).call(s)})}function s(t){t.duration(700).style(\"opacity\",0).each(\"end\",function(t){var e=i.indexOf(t);-1!==e&&i.splice(e,1),n.select(this).remove()})}}},{d3:164,\"fast-isnumeric\":226}],730:[function(t,e,r){\"use strict\";var n=t(\"./setcursor\"),a=\"data-savedcursor\";e.exports=function(t,e){var r=t.attr(a);if(e){if(!r){for(var i=(t.attr(\"class\")||\"\").split(\" \"),o=0;o<i.length;o++){var s=i[o];0===s.indexOf(\"cursor-\")&&t.attr(a,s.substr(7)).classed(s,!1)}t.attr(a)||t.attr(a,\"!!\")}n(t,e)}else r&&(t.attr(a,null),\"!!\"===r?n(t):n(t,r))}},{\"./setcursor\":739}],731:[function(t,e,r){\"use strict\";var n=t(\"./matrix\").dot,a=t(\"../constants/numerical\").BADNUM,i=e.exports={};i.tester=function(t){var e,r=t.slice(),n=r[0][0],i=n,o=r[0][1],s=o;for(r.push(r[0]),e=1;e<r.length;e++)n=Math.min(n,r[e][0]),i=Math.max(i,r[e][0]),o=Math.min(o,r[e][1]),s=Math.max(s,r[e][1]);var l,c=!1;5===r.length&&(r[0][0]===r[1][0]?r[2][0]===r[3][0]&&r[0][1]===r[3][1]&&r[1][1]===r[2][1]&&(c=!0,l=function(t){return t[0]===r[0][0]}):r[0][1]===r[1][1]&&r[2][1]===r[3][1]&&r[0][0]===r[3][0]&&r[1][0]===r[2][0]&&(c=!0,l=function(t){return t[1]===r[0][1]}));var u=!0,h=r[0];for(e=1;e<r.length;e++)if(h[0]!==r[e][0]||h[1]!==r[e][1]){u=!1;break}return{xmin:n,xmax:i,ymin:o,ymax:s,pts:r,contains:c?function(t,e){var r=t[0],c=t[1];return!(r===a||r<n||r>i||c===a||c<o||c>s||e&&l(t))}:function(t,e){var l=t[0],c=t[1];if(l===a||l<n||l>i||c===a||c<o||c>s)return!1;var u,h,f,p,d,g=r.length,v=r[0][0],m=r[0][1],y=0;for(u=1;u<g;u++)if(h=v,f=m,v=r[u][0],m=r[u][1],!(l<(p=Math.min(h,v))||l>Math.max(h,v)||c>Math.max(f,m)))if(c<Math.min(f,m))l!==p&&y++;else{if(c===(d=v===h?c:f+(l-h)*(m-f)/(v-h)))return 1!==u||!e;c<=d&&l!==p&&y++}return y%2==1},isRect:c,degenerate:u}},i.isSegmentBent=function(t,e,r,a){var i,o,s,l=t[e],c=[t[r][0]-l[0],t[r][1]-l[1]],u=n(c,c),h=Math.sqrt(u),f=[-c[1]/h,c[0]/h];for(i=e+1;i<r;i++)if(o=[t[i][0]-l[0],t[i][1]-l[1]],(s=n(o,c))<0||s>u||Math.abs(n(o,f))>a)return!0;return!1},i.filter=function(t,e){var r=[t[0]],n=0,a=0;function o(o){t.push(o);var s=r.length,l=n;r.splice(a+1);for(var c=l+1;c<t.length;c++)(c===t.length-1||i.isSegmentBent(t,l,c+1,e))&&(r.push(t[c]),r.length<s-2&&(n=c,a=r.length-1),l=c)}t.length>1&&o(t.pop());return{addPt:o,raw:t,filtered:r}}},{\"../constants/numerical\":695,\"./matrix\":725}],732:[function(t,e,r){(function(r){\"use strict\";var n=t(\"./show_no_webgl_msg\"),a=t(\"regl\");e.exports=function(t,e){var i=t._fullLayout,o=!0;return i._glcanvas.each(function(n){if(!n.regl&&(!n.pick||i._has(\"parcoords\"))){try{n.regl=a({canvas:this,attributes:{antialias:!n.pick,preserveDrawingBuffer:!0},pixelRatio:t._context.plotGlPixelRatio||r.devicePixelRatio,extensions:e||[]})}catch(t){o=!1}o&&this.addEventListener(\"webglcontextlost\",function(e){t&&t.emit&&t.emit(\"plotly_webglcontextlost\",{event:e,layer:n.key})},!1)}}),o||n({container:i._glcontainer.node()}),o}}).call(this,\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{\"./show_no_webgl_msg\":740,regl:503}],733:[function(t,e,r){\"use strict\";e.exports=function(t,e){if(e instanceof RegExp){for(var r=e.toString(),n=0;n<t.length;n++)if(t[n]instanceof RegExp&&t[n].toString()===r)return t;t.push(e)}else!e&&0!==e||-1!==t.indexOf(e)||t.push(e);return t}},{}],734:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),a=t(\"../plot_api/plot_config\").dfltConfig;var i={add:function(t,e,r,n,i){var o,s;t.undoQueue=t.undoQueue||{index:0,queue:[],sequence:!1},s=t.undoQueue.index,t.autoplay?t.undoQueue.inSequence||(t.autoplay=!1):(!t.undoQueue.sequence||t.undoQueue.beginSequence?(o={undo:{calls:[],args:[]},redo:{calls:[],args:[]}},t.undoQueue.queue.splice(s,t.undoQueue.queue.length-s,o),t.undoQueue.index+=1):o=t.undoQueue.queue[s-1],t.undoQueue.beginSequence=!1,o&&(o.undo.calls.unshift(e),o.undo.args.unshift(r),o.redo.calls.push(n),o.redo.args.push(i)),t.undoQueue.queue.length>a.queueLength&&(t.undoQueue.queue.shift(),t.undoQueue.index--))},startSequence:function(t){t.undoQueue=t.undoQueue||{index:0,queue:[],sequence:!1},t.undoQueue.sequence=!0,t.undoQueue.beginSequence=!0},stopSequence:function(t){t.undoQueue=t.undoQueue||{index:0,queue:[],sequence:!1},t.undoQueue.sequence=!1,t.undoQueue.beginSequence=!1},undo:function(t){var e,r;if(t.framework&&t.framework.isPolar)t.framework.undo();else if(!(void 0===t.undoQueue||isNaN(t.undoQueue.index)||t.undoQueue.index<=0)){for(t.undoQueue.index--,e=t.undoQueue.queue[t.undoQueue.index],t.undoQueue.inSequence=!0,r=0;r<e.undo.calls.length;r++)i.plotDo(t,e.undo.calls[r],e.undo.args[r]);t.undoQueue.inSequence=!1,t.autoplay=!1}},redo:function(t){var e,r;if(t.framework&&t.framework.isPolar)t.framework.redo();else if(!(void 0===t.undoQueue||isNaN(t.undoQueue.index)||t.undoQueue.index>=t.undoQueue.queue.length)){for(e=t.undoQueue.queue[t.undoQueue.index],t.undoQueue.inSequence=!0,r=0;r<e.redo.calls.length;r++)i.plotDo(t,e.redo.calls[r],e.redo.args[r]);t.undoQueue.inSequence=!1,t.autoplay=!1,t.undoQueue.index++}}};i.plotDo=function(t,e,r){t.autoplay=!0,r=function(t,e){for(var r,a=[],i=0;i<e.length;i++)r=e[i],a[i]=r===t?r:\"object\"==typeof r?Array.isArray(r)?n.extendDeep([],r):n.extendDeepAll({},r):r;return a}(t,r),e.apply(null,r)},e.exports=i},{\"../lib\":719,\"../plot_api/plot_config\":755}],735:[function(t,e,r){\"use strict\";r.counter=function(t,e,r,n){var a=(e||\"\")+(r?\"\":\"$\"),i=!1===n?\"\":\"^\";return\"xy\"===t?new RegExp(i+\"x([2-9]|[1-9][0-9]+)?y([2-9]|[1-9][0-9]+)?\"+a):new RegExp(i+t+\"([2-9]|[1-9][0-9]+)?\"+a)}},{}],736:[function(t,e,r){\"use strict\";var n=/^(.*)(\\.[^\\.\\[\\]]+|\\[\\d\\])$/,a=/^[^\\.\\[\\]]+$/;e.exports=function(t,e){for(;e;){var r=t.match(n);if(r)t=r[1];else{if(!t.match(a))throw new Error(\"bad relativeAttr call:\"+[t,e]);t=\"\"}if(\"^\"!==e.charAt(0))break;e=e.slice(1)}return t&&\"[\"!==e.charAt(0)?t+\".\"+e:t+e}},{}],737:[function(t,e,r){\"use strict\";var n=t(\"./array\").isArrayOrTypedArray,a=t(\"./is_plain_object\");e.exports=function t(e,r){for(var i in r){var o=r[i],s=e[i];if(s!==o)if(\"_\"===i.charAt(0)||\"function\"==typeof o){if(i in e)continue;e[i]=o}else if(n(o)&&n(s)&&a(o[0])){if(\"customdata\"===i||\"ids\"===i)continue;for(var l=Math.min(o.length,s.length),c=0;c<l;c++)s[c]!==o[c]&&a(o[c])&&a(s[c])&&t(s[c],o[c])}else a(o)&&a(s)&&(t(s,o),Object.keys(s).length||delete e[i])}}},{\"./array\":702,\"./is_plain_object\":720}],738:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"./loggers\"),i=t(\"./identity\");function o(t,e){return t<e}function s(t,e){return t<=e}function l(t,e){return t>e}function c(t,e){return t>=e}r.findBin=function(t,e,r){if(n(e.start))return r?Math.ceil((t-e.start)/e.size-1e-9)-1:Math.floor((t-e.start)/e.size+1e-9);var i,u,h=0,f=e.length,p=0,d=f>1?(e[f-1]-e[0])/(f-1):1;for(u=d>=0?r?o:s:r?c:l,t+=1e-9*d*(r?-1:1)*(d>=0?1:-1);h<f&&p++<100;)u(e[i=Math.floor((h+f)/2)],t)?h=i+1:f=i;return p>90&&a.log(\"Long binary search...\"),h-1},r.sorterAsc=function(t,e){return t-e},r.sorterDes=function(t,e){return e-t},r.distinctVals=function(t){var e=t.slice();e.sort(r.sorterAsc);for(var n=e.length-1,a=e[n]-e[0]||1,i=a/(n||1)/1e4,o=[e[0]],s=0;s<n;s++)e[s+1]>e[s]+i&&(a=Math.min(a,e[s+1]-e[s]),o.push(e[s+1]));return{vals:o,minDiff:a}},r.roundUp=function(t,e,r){for(var n,a=0,i=e.length-1,o=0,s=r?0:1,l=r?1:0,c=r?Math.ceil:Math.floor;a<i&&o++<100;)e[n=c((a+i)/2)]<=t?a=n+s:i=n-l;return e[a]},r.sort=function(t,e){for(var r=0,n=0,a=1;a<t.length;a++){var i=e(t[a],t[a-1]);if(i<0?r=1:i>0&&(n=1),r&&n)return t.sort(e)}return n?t:t.reverse()},r.findIndexOfMin=function(t,e){e=e||i;for(var r,n=1/0,a=0;a<t.length;a++){var o=e(t[a]);o<n&&(n=o,r=a)}return r}},{\"./identity\":718,\"./loggers\":723,\"fast-isnumeric\":226}],739:[function(t,e,r){\"use strict\";e.exports=function(t,e){(t.attr(\"class\")||\"\").split(\" \").forEach(function(e){0===e.indexOf(\"cursor-\")&&t.classed(e,!1)}),e&&t.classed(\"cursor-\"+e,!0)}},{}],740:[function(t,e,r){\"use strict\";var n=t(\"../components/color\"),a=function(){};e.exports=function(t){for(var e in t)\"function\"==typeof t[e]&&(t[e]=a);t.destroy=function(){t.container.parentNode.removeChild(t.container)};var r=document.createElement(\"div\");r.className=\"no-webgl\",r.style.cursor=\"pointer\",r.style.fontSize=\"24px\",r.style.color=n.defaults[0],r.style.position=\"absolute\",r.style.left=r.style.top=\"0px\",r.style.width=r.style.height=\"100%\",r.style[\"background-color\"]=n.lightLine,r.style[\"z-index\"]=30;var i=document.createElement(\"p\");return i.textContent=\"WebGL is not supported by your browser - visit https://get.webgl.org for more info\",i.style.position=\"relative\",i.style.top=\"50%\",i.style.left=\"50%\",i.style.height=\"30%\",i.style.width=\"50%\",i.style.margin=\"-15% 0 0 -25%\",r.appendChild(i),t.container.appendChild(r),t.container.style.background=\"#FFFFFF\",t.container.onclick=function(){window.open(\"https://get.webgl.org\")},!1}},{\"../components/color\":594}],741:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"./array\").isArrayOrTypedArray;r.aggNums=function(t,e,i,o){var s,l;if((!o||o>i.length)&&(o=i.length),n(e)||(e=!1),a(i[0])){for(l=new Array(o),s=0;s<o;s++)l[s]=r.aggNums(t,e,i[s]);i=l}for(s=0;s<o;s++)n(e)?n(i[s])&&(e=t(+e,+i[s])):e=i[s];return e},r.len=function(t){return r.aggNums(function(t){return t+1},0,t)},r.mean=function(t,e){return e||(e=r.len(t)),r.aggNums(function(t,e){return t+e},0,t)/e},r.midRange=function(t){if(void 0!==t&&0!==t.length)return(r.aggNums(Math.max,null,t)+r.aggNums(Math.min,null,t))/2},r.variance=function(t,e,a){return e||(e=r.len(t)),n(a)||(a=r.mean(t,e)),r.aggNums(function(t,e){return t+Math.pow(e-a,2)},0,t)/e},r.stdev=function(t,e,n){return Math.sqrt(r.variance(t,e,n))},r.median=function(t){var e=t.slice().sort();return r.interp(e,.5)},r.interp=function(t,e){if(!n(e))throw\"n should be a finite number\";if((e=e*t.length-.5)<0)return t[0];if(e>t.length-1)return t[t.length-1];var r=e%1;return r*t[Math.ceil(e)]+(1-r)*t[Math.floor(e)]}},{\"./array\":702,\"fast-isnumeric\":226}],742:[function(t,e,r){\"use strict\";var n=t(\"color-normalize\");e.exports=function(t){return t?n(t):[0,0,0,1]}},{\"color-normalize\":121}],743:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../lib\"),i=t(\"../constants/xmlns_namespaces\"),o=t(\"../constants/alignment\").LINE_SPACING;function s(t,e){return t.node().getBoundingClientRect()[e]}var l=/([^$]*)([$]+[^$]*[$]+)([^$]*)/;r.convertToTspans=function(t,e,M){var S=t.text(),C=!t.attr(\"data-notex\")&&\"undefined\"!=typeof MathJax&&S.match(l),L=n.select(t.node().parentNode);if(!L.empty()){var P=t.attr(\"class\")?t.attr(\"class\").split(\" \")[0]:\"text\";return P+=\"-math\",L.selectAll(\"svg.\"+P).remove(),L.selectAll(\"g.\"+P+\"-group\").remove(),t.style(\"display\",null).attr({\"data-unformatted\":S,\"data-math\":\"N\"}),C?(e&&e._promises||[]).push(new Promise(function(e){t.style(\"display\",\"none\");var r=parseInt(t.node().style.fontSize,10),i={fontSize:r};!function(t,e,r){var i,o,s,l;MathJax.Hub.Queue(function(){return o=a.extendDeepAll({},MathJax.Hub.config),s=MathJax.Hub.processSectionDelay,void 0!==MathJax.Hub.processSectionDelay&&(MathJax.Hub.processSectionDelay=0),MathJax.Hub.Config({messageStyle:\"none\",tex2jax:{inlineMath:[[\"$\",\"$\"],[\"\\\\(\",\"\\\\)\"]]},displayAlign:\"left\"})},function(){if(\"SVG\"!==(i=MathJax.Hub.config.menuSettings.renderer))return MathJax.Hub.setRenderer(\"SVG\")},function(){var r=\"math-output-\"+a.randstr({},64);return l=n.select(\"body\").append(\"div\").attr({id:r}).style({visibility:\"hidden\",position:\"absolute\"}).style({\"font-size\":e.fontSize+\"px\"}).text(t.replace(c,\"\\\\lt \").replace(u,\"\\\\gt \")),MathJax.Hub.Typeset(l.node())},function(){var e=n.select(\"body\").select(\"#MathJax_SVG_glyphs\");if(l.select(\".MathJax_SVG\").empty()||!l.select(\"svg\").node())a.log(\"There was an error in the tex syntax.\",t),r();else{var o=l.select(\"svg\").node().getBoundingClientRect();r(l.select(\".MathJax_SVG\"),e,o)}if(l.remove(),\"SVG\"!==i)return MathJax.Hub.setRenderer(i)},function(){return void 0!==s&&(MathJax.Hub.processSectionDelay=s),MathJax.Hub.Config(o)})}(C[2],i,function(n,a,i){L.selectAll(\"svg.\"+P).remove(),L.selectAll(\"g.\"+P+\"-group\").remove();var o=n&&n.select(\"svg\");if(!o||!o.node())return O(),void e();var l=L.append(\"g\").classed(P+\"-group\",!0).attr({\"pointer-events\":\"none\",\"data-unformatted\":S,\"data-math\":\"Y\"});l.node().appendChild(o.node()),a&&a.node()&&o.node().insertBefore(a.node().cloneNode(!0),o.node().firstChild),o.attr({class:P,height:i.height,preserveAspectRatio:\"xMinYMin meet\"}).style({overflow:\"visible\",\"pointer-events\":\"none\"});var c=t.node().style.fill||\"black\",u=o.select(\"g\");u.attr({fill:c,stroke:c});var h=s(u,\"width\"),f=s(u,\"height\"),p=+t.attr(\"x\")-h*{start:0,middle:.5,end:1}[t.attr(\"text-anchor\")||\"start\"],d=-(r||s(t,\"height\"))/4;\"y\"===P[0]?(l.attr({transform:\"rotate(\"+[-90,+t.attr(\"x\"),+t.attr(\"y\")]+\") translate(\"+[-h/2,d-f/2]+\")\"}),o.attr({x:+t.attr(\"x\"),y:+t.attr(\"y\")})):\"l\"===P[0]?o.attr({x:t.attr(\"x\"),y:d-f/2}):\"a\"===P[0]&&0!==P.indexOf(\"atitle\")?o.attr({x:0,y:d}):o.attr({x:p,y:+t.attr(\"y\")+d-f/2}),M&&M.call(t,l),e(l)})})):O(),t}function O(){L.empty()||(P=t.attr(\"class\")+\"-math\",L.select(\"svg.\"+P).remove()),t.text(\"\").style(\"white-space\",\"pre\"),function(t,e){e=e.replace(v,\" \");var r,s=!1,l=[],c=-1;function u(){c++;var e=document.createElementNS(i.svg,\"tspan\");n.select(e).attr({class:\"line\",dy:c*o+\"em\"}),t.appendChild(e),r=e;var a=l;if(l=[{node:e}],a.length>1)for(var s=1;s<a.length;s++)M(a[s])}function M(t){var e,a=t.type,o={};if(\"a\"===a){e=\"a\";var s=t.target,c=t.href,u=t.popup;c&&(o={\"xlink:xlink:show\":\"_blank\"===s||\"_\"!==s.charAt(0)?\"new\":\"replace\",target:s,\"xlink:xlink:href\":c},u&&(o.onclick='window.open(this.href.baseVal,this.target.baseVal,\"'+u+'\");return false;'))}else e=\"tspan\";t.style&&(o.style=t.style);var h=document.createElementNS(i.svg,e);if(\"sup\"===a||\"sub\"===a){S(r,d),r.appendChild(h);var g=document.createElementNS(i.svg,\"tspan\");S(g,d),n.select(g).attr(\"dy\",p[a]),o.dy=f[a],r.appendChild(h),r.appendChild(g)}else r.appendChild(h);n.select(h).attr(o),r=t.node=h,l.push(t)}function S(t,e){t.appendChild(document.createTextNode(e))}function C(t){if(1!==l.length){var n=l.pop();t!==n.type&&a.log(\"Start tag <\"+n.type+\"> doesnt match end tag <\"+t+\">. Pretending it did match.\",e),r=l[l.length-1].node}else a.log(\"Ignoring unexpected end tag </\"+t+\">.\",e)}x.test(e)?u():(r=t,l=[{node:t}]);for(var L=e.split(m),P=0;P<L.length;P++){var O=L[P],I=O.match(y),z=I&&I[2].toLowerCase(),D=h[z];if(\"br\"===z)u();else if(void 0===D)S(r,E(O));else if(I[1])C(z);else{var R=I[4],F={type:z},B=T(R,b);if(B?(B=B.replace(A,\"$1 fill:\"),D&&(B+=\";\"+D)):D&&(B=D),B&&(F.style=B),\"a\"===z){s=!0;var N=T(R,_);if(N){var j=document.createElement(\"a\");j.href=N,-1!==g.indexOf(j.protocol)&&(F.href=encodeURI(decodeURI(N)),F.target=T(R,w)||\"_blank\",F.popup=T(R,k))}}M(F)}}return s}(t.node(),S)&&t.style(\"pointer-events\",\"all\"),r.positionText(t),M&&M.call(t)}};var c=/(<|&lt;|&#60;)/g,u=/(>|&gt;|&#62;)/g;var h={sup:\"font-size:70%\",sub:\"font-size:70%\",b:\"font-weight:bold\",i:\"font-style:italic\",a:\"cursor:pointer\",span:\"\",em:\"font-style:italic;font-weight:bold\"},f={sub:\"0.3em\",sup:\"-0.6em\"},p={sub:\"-0.21em\",sup:\"0.42em\"},d=\"\\u200b\",g=[\"http:\",\"https:\",\"mailto:\",\"\",void 0,\":\"],v=r.NEWLINES=/(\\r\\n?|\\n)/g,m=/(<[^<>]*>)/,y=/<(\\/?)([^ >]*)(\\s+(.*))?>/i,x=/<br(\\s+.*)?>/i;r.BR_TAG_ALL=/<br(\\s+.*)?>/gi;var b=/(^|[\\s\"'])style\\s*=\\s*(\"([^\"]*);?\"|'([^']*);?')/i,_=/(^|[\\s\"'])href\\s*=\\s*(\"([^\"]*)\"|'([^']*)')/i,w=/(^|[\\s\"'])target\\s*=\\s*(\"([^\"\\s]*)\"|'([^'\\s]*)')/i,k=/(^|[\\s\"'])popup\\s*=\\s*(\"([\\w=,]*)\"|'([\\w=,]*)')/i;function T(t,e){if(!t)return null;var r=t.match(e),n=r&&(r[3]||r[4]);return n&&E(n)}var A=/(^|;)\\s*color:/;r.plainText=function(t,e){for(var r=void 0!==(e=e||{}).len&&-1!==e.len?e.len:1/0,n=void 0!==e.allowedTags?e.allowedTags:[\"br\"],a=\"...\".length,i=t.split(m),o=[],s=\"\",l=0,c=0;c<i.length;c++){var u=i[c],h=u.match(y),f=h&&h[2].toLowerCase();if(f)-1!==n.indexOf(f)&&(o.push(u),s=f);else{var p=u.length;if(l+p<r)o.push(u),l+=p;else if(l<r){var d=r-l;s&&(\"br\"!==s||d<=a||p<=a)&&o.pop(),r>a?o.push(u.substr(0,d-a)+\"...\"):o.push(u.substr(0,d));break}s=\"\"}}return o.join(\"\")};var M={mu:\"\\u03bc\",amp:\"&\",lt:\"<\",gt:\">\",nbsp:\"\\xa0\",times:\"\\xd7\",plusmn:\"\\xb1\",deg:\"\\xb0\"},S=/&(#\\d+|#x[\\da-fA-F]+|[a-z]+);/g;function E(t){return t.replace(S,function(t,e){return(\"#\"===e.charAt(0)?function(t){if(t>1114111)return;var e=String.fromCodePoint;if(e)return e(t);var r=String.fromCharCode;return t<=65535?r(t):r(55232+(t>>10),t%1024+56320)}(\"x\"===e.charAt(1)?parseInt(e.substr(2),16):parseInt(e.substr(1),10)):M[e])||t})}function C(t,e,r){var n,a,i,o=r.horizontalAlign,s=r.verticalAlign||\"top\",l=t.node().getBoundingClientRect(),c=e.node().getBoundingClientRect();return a=\"bottom\"===s?function(){return l.bottom-n.height}:\"middle\"===s?function(){return l.top+(l.height-n.height)/2}:function(){return l.top},i=\"right\"===o?function(){return l.right-n.width}:\"center\"===o?function(){return l.left+(l.width-n.width)/2}:function(){return l.left},function(){return n=this.node().getBoundingClientRect(),this.style({top:a()-c.top+\"px\",left:i()-c.left+\"px\",\"z-index\":1e3}),this}}r.convertEntities=E,r.lineCount=function(t){return t.selectAll(\"tspan.line\").size()||1},r.positionText=function(t,e,r){return t.each(function(){var t=n.select(this);function a(e,r){return void 0===r?null===(r=t.attr(e))&&(t.attr(e,0),r=0):t.attr(e,r),r}var i=a(\"x\",e),o=a(\"y\",r);\"text\"===this.nodeName&&t.selectAll(\"tspan.line\").attr({x:i,y:o})})},r.makeEditable=function(t,e){var r=e.gd,a=e.delegate,i=n.dispatch(\"edit\",\"input\",\"cancel\"),o=a||t;if(t.style({\"pointer-events\":a?\"none\":\"all\"}),1!==t.size())throw new Error(\"boo\");function s(){!function(){var a=n.select(r).select(\".svg-container\"),o=a.append(\"div\"),s=t.node().style,c=parseFloat(s.fontSize||12),u=e.text;void 0===u&&(u=t.attr(\"data-unformatted\"));o.classed(\"plugin-editable editable\",!0).style({position:\"absolute\",\"font-family\":s.fontFamily||\"Arial\",\"font-size\":c,color:e.fill||s.fill||\"black\",opacity:1,\"background-color\":e.background||\"transparent\",outline:\"#ffffff33 1px solid\",margin:[-c/8+1,0,0,-1].join(\"px \")+\"px\",padding:\"0\",\"box-sizing\":\"border-box\"}).attr({contenteditable:!0}).text(u).call(C(t,a,e)).on(\"blur\",function(){r._editing=!1,t.text(this.textContent).style({opacity:1});var e,a=n.select(this).attr(\"class\");(e=a?\".\"+a.split(\" \")[0]+\"-math-group\":\"[class*=-math-group]\")&&n.select(t.node().parentNode).select(e).style({opacity:0});var o=this.textContent;n.select(this).transition().duration(0).remove(),n.select(document).on(\"mouseup\",null),i.edit.call(t,o)}).on(\"focus\",function(){var t=this;r._editing=!0,n.select(document).on(\"mouseup\",function(){if(n.event.target===t)return!1;document.activeElement===o.node()&&o.node().blur()})}).on(\"keyup\",function(){27===n.event.which?(r._editing=!1,t.style({opacity:1}),n.select(this).style({opacity:0}).on(\"blur\",function(){return!1}).transition().remove(),i.cancel.call(t,this.textContent)):(i.input.call(t,this.textContent),n.select(this).call(C(t,a,e)))}).on(\"keydown\",function(){13===n.event.which&&this.blur()}).call(l)}(),t.style({opacity:0});var a,s=o.attr(\"class\");(a=s?\".\"+s.split(\" \")[0]+\"-math-group\":\"[class*=-math-group]\")&&n.select(t.node().parentNode).select(a).style({opacity:0})}function l(t){var e=t.node(),r=document.createRange();r.selectNodeContents(e);var n=window.getSelection();n.removeAllRanges(),n.addRange(r),e.focus()}return e.immediate?s():o.on(\"click\",s),n.rebind(t,i,\"on\")}},{\"../constants/alignment\":688,\"../constants/xmlns_namespaces\":696,\"../lib\":719,d3:164}],744:[function(t,e,r){\"use strict\";var n={};function a(t){t&&null!==t.timer&&(clearTimeout(t.timer),t.timer=null)}r.throttle=function(t,e,r){var i=n[t],o=Date.now();if(!i){for(var s in n)n[s].ts<o-6e4&&delete n[s];i=n[t]={ts:0,timer:null}}function l(){r(),i.ts=Date.now(),i.onDone&&(i.onDone(),i.onDone=null)}a(i),o>i.ts+e?l():i.timer=setTimeout(function(){l(),i.timer=null},e)},r.done=function(t){var e=n[t];return e&&e.timer?new Promise(function(t){var r=e.onDone;e.onDone=function(){r&&r(),t(),e.onDone=null}}):Promise.resolve()},r.clear=function(t){if(t)a(n[t]),delete n[t];else for(var e in n)r.clear(e)}},{}],745:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\");e.exports=function(t,e){if(t>0)return Math.log(t)/Math.LN10;var r=Math.log(Math.min(e[0],e[1]))/Math.LN10;return n(r)||(r=Math.log(Math.max(e[0],e[1]))/Math.LN10-6),r}},{\"fast-isnumeric\":226}],746:[function(t,e,r){\"use strict\";var n=e.exports={},a=t(\"../plots/geo/constants\").locationmodeToLayer,i=t(\"topojson-client\").feature;n.getTopojsonName=function(t){return[t.scope.replace(/ /g,\"-\"),\"_\",t.resolution.toString(),\"m\"].join(\"\")},n.getTopojsonPath=function(t,e){return t+e+\".json\"},n.getTopojsonFeatures=function(t,e){var r=a[t.locationmode],n=e.objects[r];return i(e,n).features}},{\"../plots/geo/constants\":795,\"topojson-client\":541}],747:[function(t,e,r){\"use strict\";e.exports={moduleType:\"locale\",name:\"en-US\",dictionary:{\"Click to enter Colorscale title\":\"Click to enter Colorscale title\"},format:{date:\"%m/%d/%Y\"}}},{}],748:[function(t,e,r){\"use strict\";e.exports={moduleType:\"locale\",name:\"en\",dictionary:{\"Click to enter Colorscale title\":\"Click to enter Colourscale title\"},format:{days:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],shortDays:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],months:[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],shortMonths:[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],periods:[\"AM\",\"PM\"],dateTime:\"%a %b %e %X %Y\",date:\"%d/%m/%Y\",time:\"%H:%M:%S\",decimal:\".\",thousands:\",\",grouping:[3],currency:[\"$\",\"\"],year:\"%Y\",month:\"%b %Y\",dayMonth:\"%b %-d\",dayMonthYear:\"%b %-d, %Y\"}}},{}],749:[function(t,e,r){\"use strict\";var n=t(\"../registry\");e.exports=function(t){for(var e,r,a=n.layoutArrayContainers,i=n.layoutArrayRegexes,o=t.split(\"[\")[0],s=0;s<i.length;s++)if((r=t.match(i[s]))&&0===r.index){e=r[0];break}if(e||(e=a[a.indexOf(o)]),!e)return!1;var l=t.substr(e.length);return l?!!(r=l.match(/^\\[(0|[1-9][0-9]*)\\](\\.(.+))?$/))&&{array:e,index:Number(r[1]),property:r[3]||\"\"}:{array:e,index:\"\",property:\"\"}}},{\"../registry\":848}],750:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),a=n.extendFlat,i=n.isPlainObject,o={valType:\"flaglist\",extras:[\"none\"],flags:[\"calc\",\"clearAxisTypes\",\"plot\",\"style\",\"markerSize\",\"colorbars\"]},s={valType:\"flaglist\",extras:[\"none\"],flags:[\"calc\",\"plot\",\"legend\",\"ticks\",\"axrange\",\"layoutstyle\",\"modebar\",\"camera\",\"arraydraw\",\"colorbars\"]},l=o.flags.slice().concat([\"fullReplot\"]),c=s.flags.slice().concat(\"layoutReplot\");function u(t){for(var e={},r=0;r<t.length;r++)e[t[r]]=!1;return e}function h(t,e,r){var n=a({},t);for(var o in n){var s=n[o];i(s)&&(n[o]=f(s,e,r,o))}return\"from-root\"===r&&(n.editType=e),n}function f(t,e,r,n){if(t.valType){var i=a({},t);if(i.editType=e,Array.isArray(t.items)){i.items=new Array(t.items.length);for(var o=0;o<t.items.length;o++)i.items[o]=f(t.items[o],e,\"from-root\")}return i}return h(t,e,\"_\"===n.charAt(0)?\"nested\":\"from-root\")}e.exports={traces:o,layout:s,traceFlags:function(){return u(l)},layoutFlags:function(){return u(c)},update:function(t,e){var r=e.editType;if(r&&\"none\"!==r)for(var n=r.split(\"+\"),a=0;a<n.length;a++)t[n[a]]=!0},overrideAll:h}},{\"../lib\":719}],751:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"gl-mat4/fromQuat\"),i=t(\"../registry\"),o=t(\"../lib\"),s=t(\"../plots/plots\"),l=t(\"../plots/cartesian/axis_ids\"),c=t(\"../components/color\"),u=l.cleanId,h=l.getFromTrace,f=i.traceIs;function p(t,e){var r=t[e],n=e.charAt(0);r&&\"paper\"!==r&&(t[e]=u(r,n))}function d(t){function e(e,r){var n=t[e],a=t.title&&t.title[r];n&&!a&&(t.title||(t.title={}),t.title[r]=t[e],delete t[e])}t&&(\"string\"!=typeof t.title&&\"number\"!=typeof t.title||(t.title={text:t.title}),e(\"titlefont\",\"font\"),e(\"titleposition\",\"position\"),e(\"titleside\",\"side\"),e(\"titleoffset\",\"offset\"))}function g(t){if(!o.isPlainObject(t))return!1;var e=t.name;return delete t.name,delete t.showlegend,(\"string\"==typeof e||\"number\"==typeof e)&&String(e)}function v(t,e,r,n){if(r&&!n)return t;if(n&&!r)return e;if(!t.trim())return e;if(!e.trim())return t;var a,i=Math.min(t.length,e.length);for(a=0;a<i&&t.charAt(a)===e.charAt(a);a++);return t.substr(0,a).trim()}function m(t){var e=\"middle\",r=\"center\";return\"string\"==typeof t&&(-1!==t.indexOf(\"top\")?e=\"top\":-1!==t.indexOf(\"bottom\")&&(e=\"bottom\"),-1!==t.indexOf(\"left\")?r=\"left\":-1!==t.indexOf(\"right\")&&(r=\"right\")),e+\" \"+r}function y(t,e){return e in t&&\"object\"==typeof t[e]&&0===Object.keys(t[e]).length}r.clearPromiseQueue=function(t){Array.isArray(t._promises)&&t._promises.length>0&&o.log(\"Clearing previous rejected promises from queue.\"),t._promises=[]},r.cleanLayout=function(t){var e,n;t||(t={}),t.xaxis1&&(t.xaxis||(t.xaxis=t.xaxis1),delete t.xaxis1),t.yaxis1&&(t.yaxis||(t.yaxis=t.yaxis1),delete t.yaxis1),t.scene1&&(t.scene||(t.scene=t.scene1),delete t.scene1);var i=(s.subplotsRegistry.cartesian||{}).attrRegex,l=(s.subplotsRegistry.polar||{}).attrRegex,h=(s.subplotsRegistry.ternary||{}).attrRegex,f=(s.subplotsRegistry.gl3d||{}).attrRegex,g=Object.keys(t);for(e=0;e<g.length;e++){var v=g[e];if(i&&i.test(v)){var m=t[v];m.anchor&&\"free\"!==m.anchor&&(m.anchor=u(m.anchor)),m.overlaying&&(m.overlaying=u(m.overlaying)),m.type||(m.isdate?m.type=\"date\":m.islog?m.type=\"log\":!1===m.isdate&&!1===m.islog&&(m.type=\"linear\")),\"withzero\"!==m.autorange&&\"tozero\"!==m.autorange||(m.autorange=!0,m.rangemode=\"tozero\"),delete m.islog,delete m.isdate,delete m.categories,y(m,\"domain\")&&delete m.domain,void 0!==m.autotick&&(void 0===m.tickmode&&(m.tickmode=m.autotick?\"auto\":\"linear\"),delete m.autotick),d(m)}else if(l&&l.test(v)){d(t[v].radialaxis)}else if(h&&h.test(v)){var x=t[v];d(x.aaxis),d(x.baxis),d(x.caxis)}else if(f&&f.test(v)){var b=t[v],_=b.cameraposition;if(Array.isArray(_)&&4===_[0].length){var w=_[0],k=_[1],T=_[2],A=a([],w),M=[];for(n=0;n<3;++n)M[n]=k[n]+T*A[2+4*n];b.camera={eye:{x:M[0],y:M[1],z:M[2]},center:{x:k[0],y:k[1],z:k[2]},up:{x:0,y:0,z:1}},delete b.cameraposition}d(b.xaxis),d(b.yaxis),d(b.zaxis)}}var S=Array.isArray(t.annotations)?t.annotations.length:0;for(e=0;e<S;e++){var E=t.annotations[e];o.isPlainObject(E)&&(E.ref&&(\"paper\"===E.ref?(E.xref=\"paper\",E.yref=\"paper\"):\"data\"===E.ref&&(E.xref=\"x\",E.yref=\"y\"),delete E.ref),p(E,\"xref\"),p(E,\"yref\"))}var C=Array.isArray(t.shapes)?t.shapes.length:0;for(e=0;e<C;e++){var L=t.shapes[e];o.isPlainObject(L)&&(p(L,\"xref\"),p(L,\"yref\"))}var P=t.legend;return P&&(P.x>3?(P.x=1.02,P.xanchor=\"left\"):P.x<-2&&(P.x=-.02,P.xanchor=\"right\"),P.y>3?(P.y=1.02,P.yanchor=\"bottom\"):P.y<-2&&(P.y=-.02,P.yanchor=\"top\")),d(t),\"rotate\"===t.dragmode&&(t.dragmode=\"orbit\"),c.clean(t),t.template&&t.template.layout&&r.cleanLayout(t.template.layout),t},r.cleanData=function(t){for(var e=0;e<t.length;e++){var n,a=t[e];if(\"histogramy\"===a.type&&\"xbins\"in a&&!(\"ybins\"in a)&&(a.ybins=a.xbins,delete a.xbins),a.error_y&&\"opacity\"in a.error_y){var l=c.defaults,h=a.error_y.color||(f(a,\"bar\")?c.defaultLine:l[e%l.length]);a.error_y.color=c.addOpacity(c.rgb(h),c.opacity(h)*a.error_y.opacity),delete a.error_y.opacity}if(\"bardir\"in a&&(\"h\"!==a.bardir||!f(a,\"bar\")&&\"histogram\"!==a.type.substr(0,9)||(a.orientation=\"h\",r.swapXYData(a)),delete a.bardir),\"histogramy\"===a.type&&r.swapXYData(a),\"histogramx\"!==a.type&&\"histogramy\"!==a.type||(a.type=\"histogram\"),\"scl\"in a&&!(\"colorscale\"in a)&&(a.colorscale=a.scl,delete a.scl),\"reversescl\"in a&&!(\"reversescale\"in a)&&(a.reversescale=a.reversescl,delete a.reversescl),a.xaxis&&(a.xaxis=u(a.xaxis,\"x\")),a.yaxis&&(a.yaxis=u(a.yaxis,\"y\")),f(a,\"gl3d\")&&a.scene&&(a.scene=s.subplotsRegistry.gl3d.cleanId(a.scene)),!f(a,\"pie-like\")&&!f(a,\"bar-like\"))if(Array.isArray(a.textposition))for(n=0;n<a.textposition.length;n++)a.textposition[n]=m(a.textposition[n]);else a.textposition&&(a.textposition=m(a.textposition));var p=i.getModule(a);if(p&&p.colorbar){var x=p.colorbar.container,b=x?a[x]:a;b&&b.colorscale&&(\"YIGnBu\"===b.colorscale&&(b.colorscale=\"YlGnBu\"),\"YIOrRd\"===b.colorscale&&(b.colorscale=\"YlOrRd\"))}if(\"surface\"===a.type&&o.isPlainObject(a.contours)){var _=[\"x\",\"y\",\"z\"];for(n=0;n<_.length;n++){var w=a.contours[_[n]];o.isPlainObject(w)&&(w.highlightColor&&(w.highlightcolor=w.highlightColor,delete w.highlightColor),w.highlightWidth&&(w.highlightwidth=w.highlightWidth,delete w.highlightWidth))}}if(\"candlestick\"===a.type||\"ohlc\"===a.type){var k=!1!==(a.increasing||{}).showlegend,T=!1!==(a.decreasing||{}).showlegend,A=g(a.increasing),M=g(a.decreasing);if(!1!==A&&!1!==M){var S=v(A,M,k,T);S&&(a.name=S)}else!A&&!M||a.name||(a.name=A||M)}if(Array.isArray(a.transforms)){var E=a.transforms;for(n=0;n<E.length;n++){var C=E[n];if(o.isPlainObject(C))switch(C.type){case\"filter\":C.filtersrc&&(C.target=C.filtersrc,delete C.filtersrc),C.calendar&&(C.valuecalendar||(C.valuecalendar=C.calendar),delete C.calendar);break;case\"groupby\":if(C.styles=C.styles||C.style,C.styles&&!Array.isArray(C.styles)){var L=C.styles,P=Object.keys(L);C.styles=[];for(var O=0;O<P.length;O++)C.styles.push({target:P[O],value:L[P[O]]})}}}}y(a,\"line\")&&delete a.line,\"marker\"in a&&(y(a.marker,\"line\")&&delete a.marker.line,y(a,\"marker\")&&delete a.marker),c.clean(a),a.autobinx&&(delete a.autobinx,delete a.xbins),a.autobiny&&(delete a.autobiny,delete a.ybins),d(a),a.colorbar&&d(a.colorbar),a.marker&&a.marker.colorbar&&d(a.marker.colorbar),a.line&&a.line.colorbar&&d(a.line.colorbar),a.aaxis&&d(a.aaxis),a.baxis&&d(a.baxis)}},r.swapXYData=function(t){var e;if(o.swapAttrs(t,[\"?\",\"?0\",\"d?\",\"?bins\",\"nbins?\",\"autobin?\",\"?src\",\"error_?\"]),Array.isArray(t.z)&&Array.isArray(t.z[0])&&(t.transpose?delete t.transpose:t.transpose=!0),t.error_x&&t.error_y){var r=t.error_y,n=\"copy_ystyle\"in r?r.copy_ystyle:!(r.color||r.thickness||r.width);o.swapAttrs(t,[\"error_?.copy_ystyle\"]),n&&o.swapAttrs(t,[\"error_?.color\",\"error_?.thickness\",\"error_?.width\"])}if(\"string\"==typeof t.hoverinfo){var a=t.hoverinfo.split(\"+\");for(e=0;e<a.length;e++)\"x\"===a[e]?a[e]=\"y\":\"y\"===a[e]&&(a[e]=\"x\");t.hoverinfo=a.join(\"+\")}},r.coerceTraceIndices=function(t,e){if(n(e))return[e];if(!Array.isArray(e)||!e.length)return t.data.map(function(t,e){return e});if(Array.isArray(e)){for(var r=[],a=0;a<e.length;a++)o.isIndex(e[a],t.data.length)?r.push(e[a]):o.warn(\"trace index (\",e[a],\") is not a number or is out of bounds\");return r}return e},r.manageArrayContainers=function(t,e,r){var a=t.obj,i=t.parts,s=i.length,l=i[s-1],c=n(l);if(c&&null===e){var u=i.slice(0,s-1).join(\".\");o.nestedProperty(a,u).get().splice(l,1)}else c&&void 0===t.get()?(void 0===t.get()&&(r[t.astr]=null),t.set(e)):t.set(e)};var x=/(\\.[^\\[\\]\\.]+|\\[[^\\[\\]\\.]+\\])$/;function b(t){var e=t.search(x);if(e>0)return t.substr(0,e)}r.hasParent=function(t,e){for(var r=b(e);r;){if(r in t)return!0;r=b(r)}return!1};var _=[\"x\",\"y\",\"z\"];r.clearAxisTypes=function(t,e,r){for(var n=0;n<e.length;n++)for(var a=t._fullData[n],i=0;i<3;i++){var s=h(t,a,_[i]);if(s&&\"log\"!==s.type){var l=s._name,c=s._id.substr(1);if(\"scene\"===c.substr(0,5)){if(void 0!==r[c])continue;l=c+\".\"+l}var u=l+\".type\";void 0===r[l]&&void 0===r[u]&&o.nestedProperty(t.layout,u).set(null)}}}},{\"../components/color\":594,\"../lib\":719,\"../plots/cartesian/axis_ids\":770,\"../plots/plots\":828,\"../registry\":848,\"fast-isnumeric\":226,\"gl-mat4/fromQuat\":263}],752:[function(t,e,r){\"use strict\";var n=t(\"./plot_api\");r.plot=n.plot,r.newPlot=n.newPlot,r.restyle=n.restyle,r.relayout=n.relayout,r.redraw=n.redraw,r.update=n.update,r._guiRestyle=n._guiRestyle,r._guiRelayout=n._guiRelayout,r._guiUpdate=n._guiUpdate,r._storeDirectGUIEdit=n._storeDirectGUIEdit,r.react=n.react,r.extendTraces=n.extendTraces,r.prependTraces=n.prependTraces,r.addTraces=n.addTraces,r.deleteTraces=n.deleteTraces,r.moveTraces=n.moveTraces,r.purge=n.purge,r.addFrames=n.addFrames,r.deleteFrames=n.deleteFrames,r.animate=n.animate,r.setPlotConfig=n.setPlotConfig,r.toImage=t(\"./to_image\"),r.validate=t(\"./validate\"),r.downloadImage=t(\"../snapshot/download\");var a=t(\"./template_api\");r.makeTemplate=a.makeTemplate,r.validateTemplate=a.validateTemplate},{\"../snapshot/download\":850,\"./plot_api\":754,\"./template_api\":759,\"./to_image\":760,\"./validate\":761}],753:[function(t,e,r){\"use strict\";var n=t(\"../lib/is_plain_object\"),a=t(\"../lib/noop\"),i=t(\"../lib/loggers\"),o=t(\"../lib/search\").sorterAsc,s=t(\"../registry\");r.containerArrayMatch=t(\"./container_array_match\");var l=r.isAddVal=function(t){return\"add\"===t||n(t)},c=r.isRemoveVal=function(t){return null===t||\"remove\"===t};r.applyContainerArrayChanges=function(t,e,r,n,u){var h=e.astr,f=s.getComponentMethod(h,\"supplyLayoutDefaults\"),p=s.getComponentMethod(h,\"draw\"),d=s.getComponentMethod(h,\"drawOne\"),g=n.replot||n.recalc||f===a||p===a,v=t.layout,m=t._fullLayout;if(r[\"\"]){Object.keys(r).length>1&&i.warn(\"Full array edits are incompatible with other edits\",h);var y=r[\"\"][\"\"];if(c(y))e.set(null);else{if(!Array.isArray(y))return i.warn(\"Unrecognized full array edit value\",h,y),!0;e.set(y)}return!g&&(f(v,m),p(t),!0)}var x,b,_,w,k,T,A,M,S=Object.keys(r).map(Number).sort(o),E=e.get(),C=E||[],L=u(m,h).get(),P=[],O=-1,I=C.length;for(x=0;x<S.length;x++)if(w=r[_=S[x]],k=Object.keys(w),T=w[\"\"],A=l(T),_<0||_>C.length-(A?0:1))i.warn(\"index out of range\",h,_);else if(void 0!==T)k.length>1&&i.warn(\"Insertion & removal are incompatible with edits to the same index.\",h,_),c(T)?P.push(_):A?(\"add\"===T&&(T={}),C.splice(_,0,T),L&&L.splice(_,0,{})):i.warn(\"Unrecognized full object edit value\",h,_,T),-1===O&&(O=_);else for(b=0;b<k.length;b++)M=h+\"[\"+_+\"].\",u(C[_],k[b],M).set(w[k[b]]);for(x=P.length-1;x>=0;x--)C.splice(P[x],1),L&&L.splice(P[x],1);if(C.length?E||e.set(C):e.set(null),g)return!1;if(f(v,m),d!==a){var z;if(-1===O)z=S;else{for(I=Math.max(C.length,I),z=[],x=0;x<S.length&&!((_=S[x])>=O);x++)z.push(_);for(x=O;x<I;x++)z.push(x)}for(x=0;x<z.length;x++)d(t,z[x])}else p(t);return!0}},{\"../lib/is_plain_object\":720,\"../lib/loggers\":723,\"../lib/noop\":728,\"../lib/search\":738,\"../registry\":848,\"./container_array_match\":749}],754:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"fast-isnumeric\"),i=t(\"has-hover\"),o=t(\"../lib\"),s=o.nestedProperty,l=t(\"../lib/events\"),c=t(\"../lib/queue\"),u=t(\"../registry\"),h=t(\"./plot_schema\"),f=t(\"../plots/plots\"),p=t(\"../plots/polar/legacy\"),d=t(\"../plots/cartesian/axes\"),g=t(\"../components/drawing\"),v=t(\"../components/color\"),m=t(\"../plots/cartesian/graph_interact\").initInteractions,y=t(\"../constants/xmlns_namespaces\"),x=t(\"../lib/svg_text_utils\"),b=t(\"../plots/cartesian/select\").clearSelect,_=t(\"./plot_config\").dfltConfig,w=t(\"./manage_arrays\"),k=t(\"./helpers\"),T=t(\"./subroutines\"),A=t(\"./edit_types\"),M=t(\"../plots/cartesian/constants\").AX_NAME_PATTERN,S=0,E=5;function C(t){var e=t._fullLayout;e._redrawFromAutoMarginCount?e._redrawFromAutoMarginCount--:t.emit(\"plotly_afterplot\")}function L(t,e){try{t._fullLayout._paper.style(\"background\",e)}catch(t){o.error(t)}}function P(t,e){L(t,v.combine(e,\"white\"))}function O(t,e){if(!t._context){t._context=o.extendDeep({},_);var r=n.select(\"base\");t._context._baseUrl=r.size()&&r.attr(\"href\")?window.location.href.split(\"#\")[0]:\"\"}var a,s,l,c=t._context;if(e){for(s=Object.keys(e),a=0;a<s.length;a++)\"editable\"!==(l=s[a])&&\"edits\"!==l&&l in c&&(\"setBackground\"===l&&\"opaque\"===e[l]?c[l]=P:c[l]=e[l]);e.plot3dPixelRatio&&!c.plotGlPixelRatio&&(c.plotGlPixelRatio=c.plot3dPixelRatio);var u=e.editable;if(void 0!==u)for(c.editable=u,s=Object.keys(c.edits),a=0;a<s.length;a++)c.edits[s[a]]=u;if(e.edits)for(s=Object.keys(e.edits),a=0;a<s.length;a++)(l=s[a])in c.edits&&(c.edits[l]=e.edits[l]);c._exportedPlot=e._exportedPlot}c.staticPlot&&(c.editable=!1,c.edits={},c.autosizable=!1,c.scrollZoom=!1,c.doubleClick=!1,c.showTips=!1,c.showLink=!1,c.displayModeBar=!1),\"hover\"!==c.displayModeBar||i||(c.displayModeBar=!0),\"transparent\"!==c.setBackground&&\"function\"==typeof c.setBackground||(c.setBackground=L),c._hasZeroHeight=c._hasZeroHeight||0===t.clientHeight,c._hasZeroWidth=c._hasZeroWidth||0===t.clientWidth;var h=c.scrollZoom,f=c._scrollZoom={};if(!0===h)f.cartesian=1,f.gl3d=1,f.geo=1,f.mapbox=1;else if(\"string\"==typeof h){var p=h.split(\"+\");for(a=0;a<p.length;a++)f[p[a]]=1}else!1!==h&&(f.gl3d=1,f.geo=1,f.mapbox=1)}function I(t,e){var r,n,a=e+1,i=[];for(r=0;r<t.length;r++)(n=t[r])<0?i.push(a+n):i.push(n);return i}function z(t,e,r){var n,a;for(n=0;n<e.length;n++){if((a=e[n])!==parseInt(a,10))throw new Error(\"all values in \"+r+\" must be integers\");if(a>=t.data.length||a<-t.data.length)throw new Error(r+\" must be valid indices for gd.data.\");if(e.indexOf(a,n+1)>-1||a>=0&&e.indexOf(-t.data.length+a)>-1||a<0&&e.indexOf(t.data.length+a)>-1)throw new Error(\"each index in \"+r+\" must be unique.\")}}function D(t,e,r){if(!Array.isArray(t.data))throw new Error(\"gd.data must be an array.\");if(\"undefined\"==typeof e)throw new Error(\"currentIndices is a required argument.\");if(Array.isArray(e)||(e=[e]),z(t,e,\"currentIndices\"),\"undefined\"==typeof r||Array.isArray(r)||(r=[r]),\"undefined\"!=typeof r&&z(t,r,\"newIndices\"),\"undefined\"!=typeof r&&e.length!==r.length)throw new Error(\"current and new indices must be of equal length.\")}function R(t,e,r,n,i){!function(t,e,r,n){var a=o.isPlainObject(n);if(!Array.isArray(t.data))throw new Error(\"gd.data must be an array\");if(!o.isPlainObject(e))throw new Error(\"update must be a key:value object\");if(\"undefined\"==typeof r)throw new Error(\"indices must be an integer or array of integers\");for(var i in z(t,r,\"indices\"),e){if(!Array.isArray(e[i])||e[i].length!==r.length)throw new Error(\"attribute \"+i+\" must be an array of length equal to indices array length\");if(a&&(!(i in n)||!Array.isArray(n[i])||n[i].length!==e[i].length))throw new Error(\"when maxPoints is set as a key:value object it must contain a 1:1 corrispondence with the keys and number of traces in the update object\")}}(t,e,r,n);for(var l=function(t,e,r,n){var i,l,c,u,h,f=o.isPlainObject(n),p=[];for(var d in Array.isArray(r)||(r=[r]),r=I(r,t.data.length-1),e)for(var g=0;g<r.length;g++){if(i=t.data[r[g]],l=(c=s(i,d)).get(),u=e[d][g],!o.isArrayOrTypedArray(u))throw new Error(\"attribute: \"+d+\" index: \"+g+\" must be an array\");if(!o.isArrayOrTypedArray(l))throw new Error(\"cannot extend missing or non-array attribute: \"+d);if(l.constructor!==u.constructor)throw new Error(\"cannot extend array with an array of a different type: \"+d);h=f?n[d][g]:n,a(h)||(h=-1),p.push({prop:c,target:l,insert:u,maxp:Math.floor(h)})}return p}(t,e,r,n),c={},u={},h=0;h<l.length;h++){var f=l[h].prop,p=l[h].maxp,d=i(l[h].target,l[h].insert,p);f.set(d[0]),Array.isArray(c[f.astr])||(c[f.astr]=[]),c[f.astr].push(d[1]),Array.isArray(u[f.astr])||(u[f.astr]=[]),u[f.astr].push(l[h].target.length)}return{update:c,maxPoints:u}}function F(t,e){var r=new t.constructor(t.length+e.length);return r.set(t),r.set(e,t.length),r}function B(t,e,n,a){t=o.getGraphDiv(t),k.clearPromiseQueue(t);var i={};if(\"string\"==typeof e)i[e]=n;else{if(!o.isPlainObject(e))return o.warn(\"Restyle fail.\",e,n,a),Promise.reject();i=o.extendFlat({},e),void 0===a&&(a=n)}Object.keys(i).length&&(t.changed=!0);var s=k.coerceTraceIndices(t,a),l=U(t,i,s),u=l.flags;u.calc&&(t.calcdata=void 0),u.clearAxisTypes&&k.clearAxisTypes(t,s,{});var h=[];u.fullReplot?h.push(r.plot):(h.push(f.previousPromises),f.supplyDefaults(t),u.markerSize&&(f.doCalcdata(t),Y(h)),u.style&&h.push(T.doTraceStyle),u.colorbars&&h.push(T.doColorBars),h.push(C)),h.push(f.rehover,f.redrag),c.add(t,B,[t,l.undoit,l.traces],B,[t,l.redoit,l.traces]);var p=o.syncOrAsync(h,t);return p&&p.then||(p=Promise.resolve()),p.then(function(){return t.emit(\"plotly_restyle\",l.eventData),t})}function N(t){return void 0===t?null:t}function j(t,e){return e?function(e,r,n){var a=s(e,r),i=a.set;return a.set=function(e){V((n||\"\")+r,a.get(),e,t),i(e)},a}:s}function V(t,e,r,n){if(Array.isArray(e)||Array.isArray(r))for(var a=Array.isArray(e)?e:[],i=Array.isArray(r)?r:[],s=Math.max(a.length,i.length),l=0;l<s;l++)V(t+\"[\"+l+\"]\",a[l],i[l],n);else if(o.isPlainObject(e)||o.isPlainObject(r)){var c=o.isPlainObject(e)?e:{},u=o.isPlainObject(r)?r:{},h=o.extendFlat({},c,u);for(var f in h)V(t+\".\"+f,c[f],u[f],n)}else void 0===n[t]&&(n[t]=N(e))}function U(t,e,r){var n,a=t._fullLayout,i=t._fullData,l=t.data,c=a._guiEditing,p=j(a._preGUI,c),g=o.extendDeepAll({},e);q(e);var v,m=A.traceFlags(),y={},x={};function b(){return r.map(function(){})}function _(t){var e=d.id2name(t);-1===v.indexOf(e)&&v.push(e)}function w(t){return\"LAYOUT\"+t+\".autorange\"}function T(t){return\"LAYOUT\"+t+\".range\"}function M(t){for(var e=t;e<i.length;e++)if(i[e]._input===l[t])return i[e]}function S(n,i,o){if(Array.isArray(n))n.forEach(function(t){S(t,i,o)});else if(!(n in e||k.hasParent(e,n))){var s;if(\"LAYOUT\"===n.substr(0,6))s=p(t.layout,n.replace(\"LAYOUT\",\"\"));else{var u=r[o];s=j(a._tracePreGUI[M(u)._fullInput.uid],c)(l[u],n)}n in x||(x[n]=b()),void 0===x[n][o]&&(x[n][o]=N(s.get())),void 0!==i&&s.set(i)}}function E(t){return function(e){return i[e][t]}}function C(t){return function(e,n){return!1===e?i[r[n]][t]:null}}for(var L in e){if(k.hasParent(e,L))throw new Error(\"cannot set \"+L+\" and a parent attribute simultaneously\");var P,O,I,z,D,R,F=e[L];if(\"autobinx\"!==L&&\"autobiny\"!==L||(L=L.charAt(L.length-1)+\"bins\",F=Array.isArray(F)?F.map(C(L)):!1===F?r.map(E(L)):null),y[L]=F,\"LAYOUT\"!==L.substr(0,6)){for(x[L]=b(),n=0;n<r.length;n++){if(P=l[r[n]],O=M(r[n]),z=(I=j(a._tracePreGUI[O._fullInput.uid],c)(P,L)).get(),void 0!==(D=Array.isArray(F)?F[n%F.length]:F)){var B=I.parts[I.parts.length-1],V=L.substr(0,L.length-B.length-1),U=V?V+\".\":\"\",H=V?s(O,V).get():O;if((R=h.getTraceValObject(O,I.parts))&&R.impliedEdits&&null!==D)for(var G in R.impliedEdits)S(o.relativeAttr(L,G),R.impliedEdits[G],n);else if(\"thicknessmode\"!==B&&\"lenmode\"!==B||z===D||\"fraction\"!==D&&\"pixels\"!==D||!H){if(\"type\"===L&&(\"pie\"===D!=(\"pie\"===z)||\"funnelarea\"===D!=(\"funnelarea\"===z))){var Y=\"x\",W=\"y\";\"bar\"!==D&&\"bar\"!==z||\"h\"!==P.orientation||(Y=\"y\",W=\"x\"),o.swapAttrs(P,[\"?\",\"?src\"],\"labels\",Y),o.swapAttrs(P,[\"d?\",\"?0\"],\"label\",Y),o.swapAttrs(P,[\"?\",\"?src\"],\"values\",W),\"pie\"===z||\"funnelarea\"===z?(s(P,\"marker.color\").set(s(P,\"marker.colors\").get()),a._pielayer.selectAll(\"g.trace\").remove()):u.traceIs(P,\"cartesian\")&&s(P,\"marker.colors\").set(s(P,\"marker.color\").get())}}else{var X=a._size,Z=H.orient,J=\"top\"===Z||\"bottom\"===Z;if(\"thicknessmode\"===B){var K=J?X.h:X.w;S(U+\"thickness\",H.thickness*(\"fraction\"===D?1/K:K),n)}else{var Q=J?X.w:X.h;S(U+\"len\",H.len*(\"fraction\"===D?1/Q:Q),n)}}x[L][n]=N(z);if(-1!==[\"swapxy\",\"swapxyaxes\",\"orientation\",\"orientationaxes\"].indexOf(L)){if(\"orientation\"===L){I.set(D);var $=P.x&&!P.y?\"h\":\"v\";if((I.get()||$)===O.orientation)continue}else\"orientationaxes\"===L&&(P.orientation={v:\"h\",h:\"v\"}[O.orientation]);k.swapXYData(P),m.calc=m.clearAxisTypes=!0}else-1!==f.dataArrayContainers.indexOf(I.parts[0])?(k.manageArrayContainers(I,D,x),m.calc=!0):(R?R.arrayOk&&!u.traceIs(O,\"regl\")&&(o.isArrayOrTypedArray(D)||o.isArrayOrTypedArray(z))?m.calc=!0:A.update(m,R):m.calc=!0,I.set(D))}}if(-1!==[\"swapxyaxes\",\"orientationaxes\"].indexOf(L)&&d.swap(t,r),\"orientationaxes\"===L){var tt=s(t.layout,\"hovermode\");\"x\"===tt.get()?tt.set(\"y\"):\"y\"===tt.get()&&tt.set(\"x\")}if(-1!==[\"orientation\",\"type\"].indexOf(L)){for(v=[],n=0;n<r.length;n++){var et=l[r[n]];u.traceIs(et,\"cartesian\")&&(_(et.xaxis||\"x\"),_(et.yaxis||\"y\"))}S(v.map(w),!0,0),S(v.map(T),[0,1],0)}}else I=p(t.layout,L.replace(\"LAYOUT\",\"\")),x[L]=[N(I.get())],I.set(Array.isArray(F)?F[0]:F),m.calc=!0}return(m.calc||m.plot)&&(m.fullReplot=!0),{flags:m,undoit:x,redoit:y,traces:r,eventData:o.extendDeepNoArrays([],[g,r])}}function q(t){var e,r,n,a=o.counterRegex(\"axis\",\".title\",!1,!1),i=/colorbar\\.title$/,s=Object.keys(t);for(e=0;e<s.length;e++)r=s[e],n=t[r],\"title\"!==r&&!a.test(r)&&!i.test(r)||\"string\"!=typeof n&&\"number\"!=typeof n?r.indexOf(\"titlefont\")>-1?l(r,r.replace(\"titlefont\",\"title.font\")):r.indexOf(\"titleposition\")>-1?l(r,r.replace(\"titleposition\",\"title.position\")):r.indexOf(\"titleside\")>-1?l(r,r.replace(\"titleside\",\"title.side\")):r.indexOf(\"titleoffset\")>-1&&l(r,r.replace(\"titleoffset\",\"title.offset\")):l(r,r.replace(\"title\",\"title.text\"));function l(e,r){t[r]=t[e],delete t[e]}}function H(t,e,r){if(t=o.getGraphDiv(t),k.clearPromiseQueue(t),t.framework&&t.framework.isPolar)return Promise.resolve(t);var n={};if(\"string\"==typeof e)n[e]=r;else{if(!o.isPlainObject(e))return o.warn(\"Relayout fail.\",e,r),Promise.reject();n=o.extendFlat({},e)}Object.keys(n).length&&(t.changed=!0);var a=J(t,n),i=a.flags;i.calc&&(t.calcdata=void 0);var s=[f.previousPromises];i.layoutReplot?s.push(T.layoutReplot):Object.keys(n).length&&(G(t,i,a)||f.supplyDefaults(t),i.legend&&s.push(T.doLegend),i.layoutstyle&&s.push(T.layoutStyles),i.axrange&&Y(s,a.rangesAltered),i.ticks&&s.push(T.doTicksRelayout),i.modebar&&s.push(T.doModeBar),i.camera&&s.push(T.doCamera),i.colorbars&&s.push(T.doColorBars),s.push(C)),s.push(f.rehover,f.redrag),c.add(t,H,[t,a.undoit],H,[t,a.redoit]);var l=o.syncOrAsync(s,t);return l&&l.then||(l=Promise.resolve(t)),l.then(function(){return t.emit(\"plotly_relayout\",a.eventData),t})}function G(t,e,r){var n=t._fullLayout;if(!e.axrange)return!1;for(var a in e)if(\"axrange\"!==a&&e[a])return!1;for(var i in r.rangesAltered){var o=d.id2name(i),s=t.layout[o],l=n[o];if(l.autorange=s.autorange,l.range=s.range.slice(),l.cleanRange(),l._matchGroup)for(var c in l._matchGroup)if(c!==i){var u=n[d.id2name(c)];u.autorange=l.autorange,u.range=l.range.slice(),u._input.range=l.range.slice()}}return!0}function Y(t,e){var r=e?function(t){var r=[],n=!0;for(var a in e){var i=d.getFromId(t,a);if(r.push(a),i._matchGroup)for(var o in i._matchGroup)e[o]||r.push(o);i.automargin&&(n=!1)}return d.draw(t,r,{skipTitle:n})}:function(t){return d.draw(t,\"redraw\")};t.push(b,T.doAutoRangeAndConstraints,r,T.drawData,T.finalDraw)}var W=/^[xyz]axis[0-9]*\\.range(\\[[0|1]\\])?$/,X=/^[xyz]axis[0-9]*\\.autorange$/,Z=/^[xyz]axis[0-9]*\\.domain(\\[[0|1]\\])?$/;function J(t,e){var r,n,a,i=t.layout,l=t._fullLayout,c=l._guiEditing,f=j(l._preGUI,c),p=Object.keys(e),g=d.list(t),v=o.extendDeepAll({},e),m={};for(q(e),p=Object.keys(e),n=0;n<p.length;n++)if(0===p[n].indexOf(\"allaxes\")){for(a=0;a<g.length;a++){var y=g[a]._id.substr(1),x=-1!==y.indexOf(\"scene\")?y+\".\":\"\",b=p[n].replace(\"allaxes\",x+g[a]._name);e[b]||(e[b]=e[p[n]])}delete e[p[n]]}var _=A.layoutFlags(),T={},S={};function E(t,r){if(Array.isArray(t))t.forEach(function(t){E(t,r)});else if(!(t in e||k.hasParent(e,t))){var n=f(i,t);t in S||(S[t]=N(n.get())),void 0!==r&&n.set(r)}}var C,L={};function P(t){var e=d.name2id(t.split(\".\")[0]);return L[e]=1,e}for(var O in e){if(k.hasParent(e,O))throw new Error(\"cannot set \"+O+\" and a parent attribute simultaneously\");for(var I=f(i,O),z=e[O],D=I.parts.length-1;D>0&&\"string\"!=typeof I.parts[D];)D--;var R=I.parts[D],F=I.parts[D-1]+\".\"+R,B=I.parts.slice(0,D).join(\".\"),V=s(t.layout,B).get(),U=s(l,B).get(),H=I.get();if(void 0!==z){T[O]=z,S[O]=\"reverse\"===R?z:N(H);var G=h.getLayoutValObject(l,I.parts);if(G&&G.impliedEdits&&null!==z)for(var Y in G.impliedEdits)E(o.relativeAttr(O,Y),G.impliedEdits[Y]);if(-1!==[\"width\",\"height\"].indexOf(O))if(z){E(\"autosize\",null);var J=\"height\"===O?\"width\":\"height\";E(J,l[J])}else l[O]=t._initialAutoSize[O];else if(\"autosize\"===O)E(\"width\",z?null:l.width),E(\"height\",z?null:l.height);else if(F.match(W))P(F),s(l,B+\"._inputRange\").set(null);else if(F.match(X)){P(F),s(l,B+\"._inputRange\").set(null);var Q=s(l,B).get();Q._inputDomain&&(Q._input.domain=Q._inputDomain.slice())}else F.match(Z)&&s(l,B+\"._inputDomain\").set(null);if(\"type\"===R){var $=V,tt=\"linear\"===U.type&&\"log\"===z,et=\"log\"===U.type&&\"linear\"===z;if(tt||et){if($&&$.range)if(U.autorange)tt&&($.range=$.range[1]>$.range[0]?[1,2]:[2,1]);else{var rt=$.range[0],nt=$.range[1];tt?(rt<=0&&nt<=0&&E(B+\".autorange\",!0),rt<=0?rt=nt/1e6:nt<=0&&(nt=rt/1e6),E(B+\".range[0]\",Math.log(rt)/Math.LN10),E(B+\".range[1]\",Math.log(nt)/Math.LN10)):(E(B+\".range[0]\",Math.pow(10,rt)),E(B+\".range[1]\",Math.pow(10,nt)))}else E(B+\".autorange\",!0);Array.isArray(l._subplots.polar)&&l._subplots.polar.length&&l[I.parts[0]]&&\"radialaxis\"===I.parts[1]&&delete l[I.parts[0]]._subplot.viewInitial[\"radialaxis.range\"],u.getComponentMethod(\"annotations\",\"convertCoords\")(t,U,z,E),u.getComponentMethod(\"images\",\"convertCoords\")(t,U,z,E)}else E(B+\".autorange\",!0),E(B+\".range\",null);s(l,B+\"._inputRange\").set(null)}else if(R.match(M)){var at=s(l,O).get(),it=(z||{}).type;it&&\"-\"!==it||(it=\"linear\"),u.getComponentMethod(\"annotations\",\"convertCoords\")(t,at,it,E),u.getComponentMethod(\"images\",\"convertCoords\")(t,at,it,E)}var ot=w.containerArrayMatch(O);if(ot){r=ot.array,n=ot.index;var st=ot.property,lt=G||{editType:\"calc\"};\"\"!==n&&\"\"===st&&(w.isAddVal(z)?S[O]=null:w.isRemoveVal(z)?S[O]=(s(i,r).get()||[])[n]:o.warn(\"unrecognized full object value\",e)),A.update(_,lt),m[r]||(m[r]={});var ct=m[r][n];ct||(ct=m[r][n]={}),ct[st]=z,delete e[O]}else\"reverse\"===R?(V.range?V.range.reverse():(E(B+\".autorange\",!0),V.range=[1,0]),U.autorange?_.calc=!0:_.plot=!0):(l._has(\"scatter-like\")&&l._has(\"regl\")&&\"dragmode\"===O&&(\"lasso\"===z||\"select\"===z)&&\"lasso\"!==H&&\"select\"!==H?_.plot=!0:l._has(\"gl2d\")?_.plot=!0:G?A.update(_,G):_.calc=!0,I.set(z))}}for(r in m){w.applyContainerArrayChanges(t,f(i,r),m[r],_,f)||(_.plot=!0)}var ut=l._axisConstraintGroups||[];for(C in L)for(n=0;n<ut.length;n++){var ht=ut[n];if(ht[C])for(var ft in _.calc=!0,ht)L[ft]||(d.getFromId(t,ft)._constraintShrinkable=!0)}return(K(t)||e.height||e.width)&&(_.plot=!0),(_.plot||_.calc)&&(_.layoutReplot=!0),{flags:_,rangesAltered:L,undoit:S,redoit:T,eventData:v}}function K(t){var e=t._fullLayout,r=e.width,n=e.height;return t.layout.autosize&&f.plotAutoSize(t,t.layout,e),e.width!==r||e.height!==n}function Q(t,e,n,a){if(t=o.getGraphDiv(t),k.clearPromiseQueue(t),t.framework&&t.framework.isPolar)return Promise.resolve(t);o.isPlainObject(e)||(e={}),o.isPlainObject(n)||(n={}),Object.keys(e).length&&(t.changed=!0),Object.keys(n).length&&(t.changed=!0);var i=k.coerceTraceIndices(t,a),s=U(t,o.extendFlat({},e),i),l=s.flags,u=J(t,o.extendFlat({},n)),h=u.flags;(l.calc||h.calc)&&(t.calcdata=void 0),l.clearAxisTypes&&k.clearAxisTypes(t,i,n);var p=[];h.layoutReplot?p.push(T.layoutReplot):l.fullReplot?p.push(r.plot):(p.push(f.previousPromises),G(t,h,u)||f.supplyDefaults(t),l.style&&p.push(T.doTraceStyle),(l.colorbars||h.colorbars)&&p.push(T.doColorBars),h.legend&&p.push(T.doLegend),h.layoutstyle&&p.push(T.layoutStyles),h.axrange&&Y(p,u.rangesAltered),h.ticks&&p.push(T.doTicksRelayout),h.modebar&&p.push(T.doModeBar),h.camera&&p.push(T.doCamera),p.push(C)),p.push(f.rehover,f.redrag),c.add(t,Q,[t,s.undoit,u.undoit,s.traces],Q,[t,s.redoit,u.redoit,s.traces]);var d=o.syncOrAsync(p,t);return d&&d.then||(d=Promise.resolve(t)),d.then(function(){return t.emit(\"plotly_update\",{data:s.eventData,layout:u.eventData}),t})}function $(t){return function(e){e._fullLayout._guiEditing=!0;var r=t.apply(null,arguments);return e._fullLayout._guiEditing=!1,r}}var tt=[{pattern:/^hiddenlabels/,attr:\"legend.uirevision\"},{pattern:/^((x|y)axis\\d*)\\.((auto)?range|title\\.text)/},{pattern:/axis\\d*\\.showspikes$/,attr:\"modebar.uirevision\"},{pattern:/(hover|drag)mode$/,attr:\"modebar.uirevision\"},{pattern:/^(scene\\d*)\\.camera/},{pattern:/^(geo\\d*)\\.(projection|center)/},{pattern:/^(ternary\\d*\\.[abc]axis)\\.(min|title\\.text)$/},{pattern:/^(polar\\d*\\.radialaxis)\\.((auto)?range|angle|title\\.text)/},{pattern:/^(polar\\d*\\.angularaxis)\\.rotation/},{pattern:/^(mapbox\\d*)\\.(center|zoom|bearing|pitch)/},{pattern:/^legend\\.(x|y)$/,attr:\"editrevision\"},{pattern:/^(shapes|annotations)/,attr:\"editrevision\"},{pattern:/^title\\.text$/,attr:\"editrevision\"}],et=[{pattern:/^selectedpoints$/,attr:\"selectionrevision\"},{pattern:/(^|value\\.)visible$/,attr:\"legend.uirevision\"},{pattern:/^dimensions\\[\\d+\\]\\.constraintrange/},{pattern:/^node\\.(x|y|groups)/},{pattern:/^level$/},{pattern:/(^|value\\.)name$/},{pattern:/colorbar\\.title\\.text$/},{pattern:/colorbar\\.(x|y)$/,attr:\"editrevision\"}];function rt(t,e){for(var r=0;r<e.length;r++){var n=e[r],a=t.match(n.pattern);if(a)return{head:a[1],attr:n.attr}}}function nt(t,e){var r=s(e,t).get();if(void 0!==r)return r;var n=t.split(\".\");for(n.pop();n.length>1;)if(n.pop(),void 0!==(r=s(e,n.join(\".\")+\".uirevision\").get()))return r;return e.uirevision}function at(t,e){for(var r=0;r<e.length;r++)if(e[r]._fullInput.uid===t)return r;return-1}function it(t,e,r){for(var n=0;n<e.length;n++)if(e[n].uid===t)return n;return!e[r]||e[r].uid?-1:r}function ot(t,e){var r=o.isPlainObject(t),n=Array.isArray(t);return r||n?(r&&o.isPlainObject(e)||n&&Array.isArray(e))&&JSON.stringify(t)===JSON.stringify(e):t===e}function st(t,e,r,n){var a,i,l,c=n.getValObject,u=n.flags,h=n.immutable,f=n.inArray,p=n.arrayIndex;function d(){var t=a.editType;f&&-1!==t.indexOf(\"arraydraw\")?o.pushUnique(u.arrays[f],p):(A.update(u,a),\"none\"!==t&&u.nChanges++,n.transition&&a.anim&&u.nChangesAnim++,(W.test(l)||X.test(l))&&(u.rangesAltered[r[0]]=1),Z.test(l)&&s(e,\"_inputDomain\").set(null),\"datarevision\"===i&&(u.newDataRevision=1))}function g(t){return\"data_array\"===t.valType||t.arrayOk}for(i in t){if(u.calc&&!n.transition)return;var v=t[i],m=e[i],y=r.concat(i);if(l=y.join(\".\"),\"_\"!==i.charAt(0)&&\"function\"!=typeof v&&v!==m){if((\"tick0\"===i||\"dtick\"===i)&&\"geo\"!==r[0]){var x=e.tickmode;if(\"auto\"===x||\"array\"===x||!x)continue}if((\"range\"!==i||!e.autorange)&&(\"zmin\"!==i&&\"zmax\"!==i||\"contourcarpet\"!==e.type)&&(a=c(y))&&(!a._compareAsJSON||JSON.stringify(v)!==JSON.stringify(m))){var b,_=a.valType,w=g(a),k=Array.isArray(v),T=Array.isArray(m);if(k&&T){var M=\"_input_\"+i,S=t[M],E=e[M];if(Array.isArray(S)&&S===E)continue}if(void 0===m)w&&k?u.calc=!0:d();else if(a._isLinkedToArray){var C=[],L=!1;f||(u.arrays[i]=C);var P=Math.min(v.length,m.length),O=Math.max(v.length,m.length);if(P!==O){if(\"arraydraw\"!==a.editType){d();continue}L=!0}for(b=0;b<P;b++)st(v[b],m[b],y.concat(b),o.extendFlat({inArray:i,arrayIndex:b},n));if(L)for(b=P;b<O;b++)C.push(b)}else!_&&o.isPlainObject(v)?st(v,m,y,n):w?k&&T?(h&&(u.calc=!0),(h||n.newDataRevision)&&d()):k!==T?u.calc=!0:d():k&&T&&v.length===m.length&&String(v)===String(m)||d()}}}for(i in e)if(!(i in t||\"_\"===i.charAt(0)||\"function\"==typeof e[i])){if(g(a=c(r.concat(i)))&&Array.isArray(e[i]))return void(u.calc=!0);d()}}function lt(t){var e=n.select(t),r=t._fullLayout;if(r._container=e.selectAll(\".plot-container\").data([0]),r._container.enter().insert(\"div\",\":first-child\").classed(\"plot-container\",!0).classed(\"plotly\",!0),r._paperdiv=r._container.selectAll(\".svg-container\").data([0]),r._paperdiv.enter().append(\"div\").classed(\"svg-container\",!0).style(\"position\",\"relative\"),r._glcontainer=r._paperdiv.selectAll(\".gl-container\").data([{}]),r._glcontainer.enter().append(\"div\").classed(\"gl-container\",!0),r._paperdiv.selectAll(\".main-svg\").remove(),r._paperdiv.select(\".modebar-container\").remove(),r._paper=r._paperdiv.insert(\"svg\",\":first-child\").classed(\"main-svg\",!0),r._toppaper=r._paperdiv.append(\"svg\").classed(\"main-svg\",!0),r._modebardiv=r._paperdiv.append(\"div\"),r._hoverpaper=r._paperdiv.append(\"svg\").classed(\"main-svg\",!0),!r._uid){var a={};n.selectAll(\"defs\").each(function(){this.id&&(a[this.id.split(\"-\")[1]]=1)}),r._uid=o.randstr(a)}r._paperdiv.selectAll(\".main-svg\").attr(y.svgAttrs),r._defs=r._paper.append(\"defs\").attr(\"id\",\"defs-\"+r._uid),r._clips=r._defs.append(\"g\").classed(\"clips\",!0),r._topdefs=r._toppaper.append(\"defs\").attr(\"id\",\"topdefs-\"+r._uid),r._topclips=r._topdefs.append(\"g\").classed(\"clips\",!0),r._bgLayer=r._paper.append(\"g\").classed(\"bglayer\",!0),r._draggers=r._paper.append(\"g\").classed(\"draglayer\",!0);var i=r._paper.append(\"g\").classed(\"layer-below\",!0);r._imageLowerLayer=i.append(\"g\").classed(\"imagelayer\",!0),r._shapeLowerLayer=i.append(\"g\").classed(\"shapelayer\",!0),r._cartesianlayer=r._paper.append(\"g\").classed(\"cartesianlayer\",!0),r._polarlayer=r._paper.append(\"g\").classed(\"polarlayer\",!0),r._ternarylayer=r._paper.append(\"g\").classed(\"ternarylayer\",!0),r._geolayer=r._paper.append(\"g\").classed(\"geolayer\",!0),r._funnelarealayer=r._paper.append(\"g\").classed(\"funnelarealayer\",!0),r._pielayer=r._paper.append(\"g\").classed(\"pielayer\",!0),r._treemaplayer=r._paper.append(\"g\").classed(\"treemaplayer\",!0),r._sunburstlayer=r._paper.append(\"g\").classed(\"sunburstlayer\",!0),r._indicatorlayer=r._toppaper.append(\"g\").classed(\"indicatorlayer\",!0),r._glimages=r._paper.append(\"g\").classed(\"glimages\",!0);var s=r._toppaper.append(\"g\").classed(\"layer-above\",!0);r._imageUpperLayer=s.append(\"g\").classed(\"imagelayer\",!0),r._shapeUpperLayer=s.append(\"g\").classed(\"shapelayer\",!0),r._infolayer=r._toppaper.append(\"g\").classed(\"infolayer\",!0),r._menulayer=r._toppaper.append(\"g\").classed(\"menulayer\",!0),r._zoomlayer=r._toppaper.append(\"g\").classed(\"zoomlayer\",!0),r._hoverlayer=r._hoverpaper.append(\"g\").classed(\"hoverlayer\",!0),r._modebardiv.classed(\"modebar-container\",!0).style(\"position\",\"absolute\").style(\"top\",\"0px\").style(\"right\",\"0px\"),t.emit(\"plotly_framework\")}r.animate=function(t,e,r){if(t=o.getGraphDiv(t),!o.isPlotDiv(t))throw new Error(\"This element is not a Plotly plot: \"+t+\". It's likely that you've failed to create a plot before animating it. For more details, see https://plot.ly/javascript/animations/\");var n=t._transitionData;n._frameQueue||(n._frameQueue=[]);var a=(r=f.supplyAnimationDefaults(r)).transition,i=r.frame;function s(t){return Array.isArray(a)?t>=a.length?a[0]:a[t]:a}function l(t){return Array.isArray(i)?t>=i.length?i[0]:i[t]:i}function c(t,e){var r=0;return function(){if(t&&++r===e)return t()}}return void 0===n._frameWaitingCnt&&(n._frameWaitingCnt=0),new Promise(function(i,u){function h(){n._currentFrame&&n._currentFrame.onComplete&&n._currentFrame.onComplete();var e=n._currentFrame=n._frameQueue.shift();if(e){var r=e.name?e.name.toString():null;t._fullLayout._currentFrame=r,n._lastFrameAt=Date.now(),n._timeToNext=e.frameOpts.duration,f.transition(t,e.frame.data,e.frame.layout,k.coerceTraceIndices(t,e.frame.traces),e.frameOpts,e.transitionOpts).then(function(){e.onComplete&&e.onComplete()}),t.emit(\"plotly_animatingframe\",{name:r,frame:e.frame,animation:{frame:e.frameOpts,transition:e.transitionOpts}})}else t.emit(\"plotly_animated\"),window.cancelAnimationFrame(n._animationRaf),n._animationRaf=null}function p(){t.emit(\"plotly_animating\"),n._lastFrameAt=-1/0,n._timeToNext=0,n._runningTransitions=0,n._currentFrame=null;var e=function(){n._animationRaf=window.requestAnimationFrame(e),Date.now()-n._lastFrameAt>n._timeToNext&&h()};e()}var d,g,v=0;function m(t){return Array.isArray(a)?v>=a.length?t.transitionOpts=a[v]:t.transitionOpts=a[0]:t.transitionOpts=a,v++,t}var y=[],x=null==e,b=Array.isArray(e);if(x||b||!o.isPlainObject(e)){if(x||-1!==[\"string\",\"number\"].indexOf(typeof e))for(d=0;d<n._frames.length;d++)(g=n._frames[d])&&(x||String(g.group)===String(e))&&y.push({type:\"byname\",name:String(g.name),data:m({name:g.name})});else if(b)for(d=0;d<e.length;d++){var _=e[d];-1!==[\"number\",\"string\"].indexOf(typeof _)?(_=String(_),y.push({type:\"byname\",name:_,data:m({name:_})})):o.isPlainObject(_)&&y.push({type:\"object\",data:m(o.extendFlat({},_))})}}else y.push({type:\"object\",data:m(o.extendFlat({},e))});for(d=0;d<y.length;d++)if(\"byname\"===(g=y[d]).type&&!n._frameHash[g.data.name])return o.warn('animate failure: frame not found: \"'+g.data.name+'\"'),void u();-1!==[\"next\",\"immediate\"].indexOf(r.mode)&&function(){if(0!==n._frameQueue.length){for(;n._frameQueue.length;){var e=n._frameQueue.pop();e.onInterrupt&&e.onInterrupt()}t.emit(\"plotly_animationinterrupted\",[])}}(),\"reverse\"===r.direction&&y.reverse();var w=t._fullLayout._currentFrame;if(w&&r.fromcurrent){var T=-1;for(d=0;d<y.length;d++)if(\"byname\"===(g=y[d]).type&&g.name===w){T=d;break}if(T>0&&T<y.length-1){var A=[];for(d=0;d<y.length;d++)g=y[d],(\"byname\"!==y[d].type||d>T)&&A.push(g);y=A}}y.length>0?function(e){if(0!==e.length){for(var a=0;a<e.length;a++){var o;o=\"byname\"===e[a].type?f.computeFrame(t,e[a].name):e[a].data;var h=l(a),d=s(a);d.duration=Math.min(d.duration,h.duration);var g={frame:o,name:e[a].name,frameOpts:h,transitionOpts:d};a===e.length-1&&(g.onComplete=c(i,2),g.onInterrupt=u),n._frameQueue.push(g)}\"immediate\"===r.mode&&(n._lastFrameAt=-1/0),n._animationRaf||p()}}(y):(t.emit(\"plotly_animated\"),i())})},r.addFrames=function(t,e,r){if(t=o.getGraphDiv(t),null==e)return Promise.resolve();if(!o.isPlotDiv(t))throw new Error(\"This element is not a Plotly plot: \"+t+\". It's likely that you've failed to create a plot before adding frames. For more details, see https://plot.ly/javascript/animations/\");var n,a,i,s,l=t._transitionData._frames,u=t._transitionData._frameHash;if(!Array.isArray(e))throw new Error(\"addFrames failure: frameList must be an Array of frame definitions\"+e);var h=l.length+2*e.length,p=[],d={};for(n=e.length-1;n>=0;n--)if(o.isPlainObject(e[n])){var g=e[n].name,v=(u[g]||d[g]||{}).name,m=e[n].name,y=u[v]||d[v];v&&m&&\"number\"==typeof m&&y&&S<E&&(S++,o.warn('addFrames: overwriting frame \"'+(u[v]||d[v]).name+'\" with a frame whose name of type \"number\" also equates to \"'+v+'\". This is valid but may potentially lead to unexpected behavior since all plotly.js frame names are stored internally as strings.'),S===E&&o.warn(\"addFrames: This API call has yielded too many of these warnings. For the rest of this call, further warnings about numeric frame names will be suppressed.\")),d[g]={name:g},p.push({frame:f.supplyFrameDefaults(e[n]),index:r&&void 0!==r[n]&&null!==r[n]?r[n]:h+n})}p.sort(function(t,e){return t.index>e.index?-1:t.index<e.index?1:0});var x=[],b=[],_=l.length;for(n=p.length-1;n>=0;n--){if(\"number\"==typeof(a=p[n].frame).name&&o.warn(\"Warning: addFrames accepts frames with numeric names, but the numbers areimplicitly cast to strings\"),!a.name)for(;u[a.name=\"frame \"+t._transitionData._counter++];);if(u[a.name]){for(i=0;i<l.length&&(l[i]||{}).name!==a.name;i++);x.push({type:\"replace\",index:i,value:a}),b.unshift({type:\"replace\",index:i,value:l[i]})}else s=Math.max(0,Math.min(p[n].index,_)),x.push({type:\"insert\",index:s,value:a}),b.unshift({type:\"delete\",index:s}),_++}var w=f.modifyFrames,k=f.modifyFrames,T=[t,b],A=[t,x];return c&&c.add(t,w,T,k,A),f.modifyFrames(t,x)},r.deleteFrames=function(t,e){if(t=o.getGraphDiv(t),!o.isPlotDiv(t))throw new Error(\"This element is not a Plotly plot: \"+t);var r,n,a=t._transitionData._frames,i=[],s=[];if(!e)for(e=[],r=0;r<a.length;r++)e.push(r);for((e=e.slice()).sort(),r=e.length-1;r>=0;r--)n=e[r],i.push({type:\"delete\",index:n}),s.unshift({type:\"insert\",index:n,value:a[n]});var l=f.modifyFrames,u=f.modifyFrames,h=[t,s],p=[t,i];return c&&c.add(t,l,h,u,p),f.modifyFrames(t,i)},r.addTraces=function t(e,n,a){e=o.getGraphDiv(e);var i,s,l=[],u=r.deleteTraces,h=t,f=[e,l],p=[e,n];for(function(t,e,r){var n,a;if(!Array.isArray(t.data))throw new Error(\"gd.data must be an array.\");if(\"undefined\"==typeof e)throw new Error(\"traces must be defined.\");for(Array.isArray(e)||(e=[e]),n=0;n<e.length;n++)if(\"object\"!=typeof(a=e[n])||Array.isArray(a)||null===a)throw new Error(\"all values in traces array must be non-array objects\");if(\"undefined\"==typeof r||Array.isArray(r)||(r=[r]),\"undefined\"!=typeof r&&r.length!==e.length)throw new Error(\"if indices is specified, traces.length must equal indices.length\")}(e,n,a),Array.isArray(n)||(n=[n]),n=n.map(function(t){return o.extendFlat({},t)}),k.cleanData(n),i=0;i<n.length;i++)e.data.push(n[i]);for(i=0;i<n.length;i++)l.push(-n.length+i);if(\"undefined\"==typeof a)return s=r.redraw(e),c.add(e,u,f,h,p),s;Array.isArray(a)||(a=[a]);try{D(e,l,a)}catch(t){throw e.data.splice(e.data.length-n.length,n.length),t}return c.startSequence(e),c.add(e,u,f,h,p),s=r.moveTraces(e,l,a),c.stopSequence(e),s},r.deleteTraces=function t(e,n){e=o.getGraphDiv(e);var a,i,s=[],l=r.addTraces,u=t,h=[e,s,n],f=[e,n];if(\"undefined\"==typeof n)throw new Error(\"indices must be an integer or array of integers.\");for(Array.isArray(n)||(n=[n]),z(e,n,\"indices\"),(n=I(n,e.data.length-1)).sort(o.sorterDes),a=0;a<n.length;a+=1)i=e.data.splice(n[a],1)[0],s.push(i);var p=r.redraw(e);return c.add(e,l,h,u,f),p},r.extendTraces=function t(e,n,a,i){var s=R(e=o.getGraphDiv(e),n,a,i,function(t,e,r){var n,a;if(o.isTypedArray(t))if(r<0){var i=new t.constructor(0),s=F(t,e);r<0?(n=s,a=i):(n=i,a=s)}else if(n=new t.constructor(r),a=new t.constructor(t.length+e.length-r),r===e.length)n.set(e),a.set(t);else if(r<e.length){var l=e.length-r;n.set(e.subarray(l)),a.set(t),a.set(e.subarray(0,l),t.length)}else{var c=r-e.length,u=t.length-c;n.set(t.subarray(u)),n.set(e,c),a.set(t.subarray(0,u))}else n=t.concat(e),a=r>=0&&r<n.length?n.splice(0,n.length-r):[];return[n,a]}),l=r.redraw(e),u=[e,s.update,a,s.maxPoints];return c.add(e,r.prependTraces,u,t,arguments),l},r.moveTraces=function t(e,n,a){var i,s=[],l=[],u=t,h=t,f=[e=o.getGraphDiv(e),a,n],p=[e,n,a];if(D(e,n,a),n=Array.isArray(n)?n:[n],\"undefined\"==typeof a)for(a=[],i=0;i<n.length;i++)a.push(-n.length+i);for(a=Array.isArray(a)?a:[a],n=I(n,e.data.length-1),a=I(a,e.data.length-1),i=0;i<e.data.length;i++)-1===n.indexOf(i)&&s.push(e.data[i]);for(i=0;i<n.length;i++)l.push({newIndex:a[i],trace:e.data[n[i]]});for(l.sort(function(t,e){return t.newIndex-e.newIndex}),i=0;i<l.length;i+=1)s.splice(l[i].newIndex,0,l[i].trace);e.data=s;var d=r.redraw(e);return c.add(e,u,f,h,p),d},r.prependTraces=function t(e,n,a,i){var s=R(e=o.getGraphDiv(e),n,a,i,function(t,e,r){var n,a;if(o.isTypedArray(t))if(r<=0){var i=new t.constructor(0),s=F(e,t);r<0?(n=s,a=i):(n=i,a=s)}else if(n=new t.constructor(r),a=new t.constructor(t.length+e.length-r),r===e.length)n.set(e),a.set(t);else if(r<e.length){var l=e.length-r;n.set(e.subarray(0,l)),a.set(e.subarray(l)),a.set(t,l)}else{var c=r-e.length;n.set(e),n.set(t.subarray(0,c),e.length),a.set(t.subarray(c))}else n=e.concat(t),a=r>=0&&r<n.length?n.splice(r,n.length):[];return[n,a]}),l=r.redraw(e),u=[e,s.update,a,s.maxPoints];return c.add(e,r.extendTraces,u,t,arguments),l},r.newPlot=function(t,e,n,a){return t=o.getGraphDiv(t),f.cleanPlot([],{},t._fullData||[],t._fullLayout||{}),f.purge(t),r.plot(t,e,n,a)},r.plot=function(t,e,a,i){var s;if(t=o.getGraphDiv(t),l.init(t),o.isPlainObject(e)){var c=e;e=c.data,a=c.layout,i=c.config,s=c.frames}if(!1===l.triggerHandler(t,\"plotly_beforeplot\",[e,a,i]))return Promise.reject();e||a||o.isPlotDiv(t)||o.warn(\"Calling Plotly.plot as if redrawing but this container doesn't yet have a plot.\",t),O(t,i),a||(a={}),n.select(t).classed(\"js-plotly-plot\",!0),g.makeTester(),Array.isArray(t._promises)||(t._promises=[]);var h=0===(t.data||[]).length&&Array.isArray(e);Array.isArray(e)&&(k.cleanData(e),h?t.data=e:t.data.push.apply(t.data,e),t.empty=!1),t.layout&&!h||(t.layout=k.cleanLayout(a)),f.supplyDefaults(t);var v=t._fullLayout,y=v._has(\"cartesian\");if(!v._has(\"polar\")&&e&&e[0]&&e[0].r)return o.log(\"Legacy polar charts are deprecated!\"),function(t,e,r){var a=n.select(t).selectAll(\".plot-container\").data([0]);a.enter().insert(\"div\",\":first-child\").classed(\"plot-container plotly\",!0);var i=a.selectAll(\".svg-container\").data([0]);i.enter().append(\"div\").classed(\"svg-container\",!0).style(\"position\",\"relative\"),i.html(\"\"),e&&(t.data=e),r&&(t.layout=r),p.manager.fillLayout(t),i.style({width:t._fullLayout.width+\"px\",height:t._fullLayout.height+\"px\"}),t.framework=p.manager.framework(t),t.framework({data:t.data,layout:t.layout},i.node()),t.framework.setUndoPoint();var s=t.framework.svg(),l=1,c=t._fullLayout.title?t._fullLayout.title.text:\"\";\"\"!==c&&c||(l=0);var u=function(){this.call(x.convertToTspans,t)},h=s.select(\".title-group text\").call(u);if(t._context.edits.titleText){var d=o._(t,\"Click to enter Plot title\");c&&c!==d||(l=.2,h.attr({\"data-unformatted\":d}).text(d).style({opacity:l}).on(\"mouseover.opacity\",function(){n.select(this).transition().duration(100).style(\"opacity\",1)}).on(\"mouseout.opacity\",function(){n.select(this).transition().duration(1e3).style(\"opacity\",0)}));var g=function(){this.call(x.makeEditable,{gd:t}).on(\"edit\",function(e){t.framework({layout:{title:{text:e}}}),this.text(e).call(u),this.call(g)}).on(\"cancel\",function(){var t=this.attr(\"data-unformatted\");this.text(t).call(u)})};h.call(g)}return t._context.setBackground(t,t._fullLayout.paper_bgcolor),f.addLinks(t),Promise.resolve()}(t,e,a);v._replotting=!0,h&&lt(t),t.framework!==lt&&(t.framework=lt,lt(t)),g.initGradients(t),h&&d.saveShowSpikeInitial(t);var b=!t.calcdata||t.calcdata.length!==(t._fullData||[]).length;b&&f.doCalcdata(t);for(var _=0;_<t.calcdata.length;_++)t.calcdata[_][0].trace=t._fullData[_];t._context.responsive?t._responsiveChartHandler||(t._responsiveChartHandler=function(){o.isHidden(t)||f.resize(t)},window.addEventListener(\"resize\",t._responsiveChartHandler)):o.clearResponsive(t);var w=o.extendFlat({},v._size),A=0;function M(){return f.clearAutoMarginIds(t),T.drawMarginPushers(t),d.allowAutoMargin(t),f.doAutoMargin(t),f.previousPromises(t)}function S(){t._transitioning||(T.doAutoRangeAndConstraints(t),h&&d.saveRangeInitial(t),u.getComponentMethod(\"rangeslider\",\"calcAutorange\")(t))}var E=[f.previousPromises,function(){if(s)return r.addFrames(t,s)},function e(){for(var r=v._basePlotModules,n=0;n<r.length;n++)r[n].drawFramework&&r[n].drawFramework(t);if(!v._glcanvas&&v._has(\"gl\")&&(v._glcanvas=v._glcontainer.selectAll(\".gl-canvas\").data([{key:\"contextLayer\",context:!0,pick:!1},{key:\"focusLayer\",context:!1,pick:!1},{key:\"pickLayer\",context:!1,pick:!0}],function(t){return t.key}),v._glcanvas.enter().append(\"canvas\").attr(\"class\",function(t){return\"gl-canvas gl-canvas-\"+t.key.replace(\"Layer\",\"\")}).style({position:\"absolute\",top:0,left:0,overflow:\"visible\",\"pointer-events\":\"none\"})),v._glcanvas){v._glcanvas.attr(\"width\",v.width).attr(\"height\",v.height);var a=v._glcanvas.data()[0].regl;if(a&&(Math.floor(v.width)!==a._gl.drawingBufferWidth||Math.floor(v.height)!==a._gl.drawingBufferHeight)){var i=\"WebGL context buffer and canvas dimensions do not match due to browser/WebGL bug.\";if(!A)return o.log(i+\" Clearing graph and plotting again.\"),f.cleanPlot([],{},t._fullData,v),f.supplyDefaults(t),v=t._fullLayout,f.doCalcdata(t),A++,e();o.error(i)}}return\"h\"===v.modebar.orientation?v._modebardiv.style(\"height\",null).style(\"width\",\"100%\"):v._modebardiv.style(\"width\",null).style(\"height\",v.height+\"px\"),f.previousPromises(t)},M,function(){if(f.didMarginChange(w,v._size))return o.syncOrAsync([M,T.layoutStyles],t)}];y&&E.push(function(){if(b)return o.syncOrAsync([u.getComponentMethod(\"shapes\",\"calcAutorange\"),u.getComponentMethod(\"annotations\",\"calcAutorange\"),S],t);S()}),E.push(T.layoutStyles),y&&E.push(function(){return d.draw(t,h?\"\":\"redraw\")}),E.push(T.drawData,T.finalDraw,m,f.addLinks,f.rehover,f.redrag,f.doAutoMargin,f.previousPromises);var L=o.syncOrAsync(E,t);return L&&L.then||(L=Promise.resolve()),L.then(function(){return C(t),t})},r.purge=function(t){var e=(t=o.getGraphDiv(t))._fullLayout||{},r=t._fullData||[];return f.cleanPlot([],{},r,e),f.purge(t),l.purge(t),e._container&&e._container.remove(),delete t._context,t},r.react=function(t,e,n,a){var i,l;t=o.getGraphDiv(t),k.clearPromiseQueue(t);var c=t._fullData,p=t._fullLayout;if(o.isPlotDiv(t)&&c&&p){if(o.isPlainObject(e)){var d=e;e=d.data,n=d.layout,a=d.config,i=d.frames}var g=!1;if(a){var v=o.extendDeep({},t._context);t._context=void 0,O(t,a),g=function t(e,r){var n;for(n in e)if(\"_\"!==n.charAt(0)){var a=e[n],i=r[n];if(a!==i)if(o.isPlainObject(a)&&o.isPlainObject(i)){if(t(a,i))return!0}else{if(!Array.isArray(a)||!Array.isArray(i))return!0;if(a.length!==i.length)return!0;for(var s=0;s<a.length;s++)if(a[s]!==i[s]){if(!o.isPlainObject(a[s])||!o.isPlainObject(i[s]))return!0;if(t(a[s],i[s]))return!0}}}}(v,t._context)}t.data=e||[],k.cleanData(t.data),t.layout=n||{},k.cleanLayout(t.layout),function(t,e,r,n){var a,i,l,c,u,h,f,p,d=n._preGUI,g=[],v={};for(a in d){if(u=rt(a,tt)){if(i=u.attr||u.head+\".uirevision\",(c=(l=s(n,i).get())&&nt(i,e))&&c===l&&(null===(h=d[a])&&(h=void 0),ot(p=(f=s(e,a)).get(),h))){void 0===p&&\"autorange\"===a.substr(a.length-9)&&g.push(a.substr(0,a.length-10)),f.set(N(s(n,a).get()));continue}}else o.warn(\"unrecognized GUI edit: \"+a);delete d[a],\"range[\"===a.substr(a.length-8,6)&&(v[a.substr(0,a.length-9)]=1)}for(var m=0;m<g.length;m++){var y=g[m];if(v[y]){var x=s(e,y).get();x&&delete x.autorange}}var b=n._tracePreGUI;for(var _ in b){var w,k=b[_],T=null;for(a in k){if(!T){var A=at(_,r);if(A<0){delete b[_];break}var M=it(_,t,(w=r[A]._fullInput).index);if(M<0){delete b[_];break}T=t[M]}if(u=rt(a,et)){if(u.attr?c=(l=s(n,u.attr).get())&&nt(u.attr,e):(l=w.uirevision,void 0===(c=T.uirevision)&&(c=e.uirevision)),c&&c===l&&(null===(h=k[a])&&(h=void 0),ot(p=(f=s(T,a)).get(),h))){f.set(N(s(w,a).get()));continue}}else o.warn(\"unrecognized GUI edit: \"+a+\" in trace uid \"+_);delete k[a]}}}(t.data,t.layout,c,p),f.supplyDefaults(t,{skipUpdateCalc:!0});var m=t._fullData,y=t._fullLayout,x=void 0===y.datarevision,b=y.transition,_=function(t,e,r,n,a){var i=A.layoutFlags();return i.arrays={},i.rangesAltered={},i.nChanges=0,i.nChangesAnim=0,st(e,r,[],{getValObject:function(t){return h.getLayoutValObject(r,t)},flags:i,immutable:n,transition:a,gd:t}),(i.plot||i.calc)&&(i.layoutReplot=!0),a&&i.nChanges&&i.nChangesAnim&&(i.anim=i.nChanges===i.nChangesAnim?\"all\":\"some\"),i}(t,p,y,x,b),w=_.newDataRevision,M=function(t,e,r,n,a,i){var o=e.length===r.length;if(!a&&!o)return{fullReplot:!0,calc:!0};var s,l,c=A.traceFlags();c.arrays={},c.nChanges=0,c.nChangesAnim=0;var u={getValObject:function(t){var e=h.getTraceValObject(l,t);return!l._module.animatable&&e.anim&&(e.anim=!1),e},flags:c,immutable:n,transition:a,newDataRevision:i,gd:t},p={};for(s=0;s<e.length;s++)if(r[s]){if(l=r[s]._fullInput,f.hasMakesDataTransform(l)&&(l=r[s]),p[l.uid])continue;p[l.uid]=1,st(e[s]._fullInput,l,[],u)}return(c.calc||c.plot)&&(c.fullReplot=!0),a&&c.nChanges&&c.nChangesAnim&&(c.anim=c.nChanges===c.nChangesAnim&&o?\"all\":\"some\"),c}(t,c,m,x,b,w);K(t)&&(_.layoutReplot=!0),M.calc||_.calc?t.calcdata=void 0:f.supplyDefaultsUpdateCalc(t.calcdata,m);var S=[];if(i&&(t._transitionData={},f.createTransitionData(t),S.push(function(){return r.addFrames(t,i)})),y.transition&&!g&&(M.anim||_.anim))f.doCalcdata(t),T.doAutoRangeAndConstraints(t),S.push(function(){return f.transitionFromReact(t,M,_,p)});else if(M.fullReplot||_.layoutReplot||g)t._fullLayout._skipDefaults=!0,S.push(r.plot);else{for(var E in _.arrays){var L=_.arrays[E];if(L.length){var P=u.getComponentMethod(E,\"drawOne\");if(P!==o.noop)for(var I=0;I<L.length;I++)P(t,L[I]);else{var z=u.getComponentMethod(E,\"draw\");if(z===o.noop)throw new Error(\"cannot draw components: \"+E);z(t)}}}S.push(f.previousPromises),M.style&&S.push(T.doTraceStyle),(M.colorbars||_.colorbars)&&S.push(T.doColorBars),_.legend&&S.push(T.doLegend),_.layoutstyle&&S.push(T.layoutStyles),_.axrange&&Y(S),_.ticks&&S.push(T.doTicksRelayout),_.modebar&&S.push(T.doModeBar),_.camera&&S.push(T.doCamera),S.push(C)}S.push(f.rehover,f.redrag),(l=o.syncOrAsync(S,t))&&l.then||(l=Promise.resolve(t))}else l=r.newPlot(t,e,n,a);return l.then(function(){return t.emit(\"plotly_react\",{data:e,layout:n}),t})},r.redraw=function(t){if(t=o.getGraphDiv(t),!o.isPlotDiv(t))throw new Error(\"This element is not a Plotly plot: \"+t);return k.cleanData(t.data),k.cleanLayout(t.layout),t.calcdata=void 0,r.plot(t).then(function(){return t.emit(\"plotly_redraw\"),t})},r.relayout=H,r.restyle=B,r.setPlotConfig=function(t){return o.extendFlat(_,t)},r.update=Q,r._guiRelayout=$(H),r._guiRestyle=$(B),r._guiUpdate=$(Q),r._storeDirectGUIEdit=function(t,e,r){for(var n in r)V(n,s(t,n).get(),r[n],e)}},{\"../components/color\":594,\"../components/drawing\":615,\"../constants/xmlns_namespaces\":696,\"../lib\":719,\"../lib/events\":709,\"../lib/queue\":734,\"../lib/svg_text_utils\":743,\"../plots/cartesian/axes\":767,\"../plots/cartesian/constants\":773,\"../plots/cartesian/graph_interact\":776,\"../plots/cartesian/select\":784,\"../plots/plots\":828,\"../plots/polar/legacy\":836,\"../registry\":848,\"./edit_types\":750,\"./helpers\":751,\"./manage_arrays\":753,\"./plot_config\":755,\"./plot_schema\":756,\"./subroutines\":758,d3:164,\"fast-isnumeric\":226,\"has-hover\":411}],755:[function(t,e,r){\"use strict\";var n={staticPlot:{valType:\"boolean\",dflt:!1},plotlyServerURL:{valType:\"string\",dflt:\"https://plot.ly\"},editable:{valType:\"boolean\",dflt:!1},edits:{annotationPosition:{valType:\"boolean\",dflt:!1},annotationTail:{valType:\"boolean\",dflt:!1},annotationText:{valType:\"boolean\",dflt:!1},axisTitleText:{valType:\"boolean\",dflt:!1},colorbarPosition:{valType:\"boolean\",dflt:!1},colorbarTitleText:{valType:\"boolean\",dflt:!1},legendPosition:{valType:\"boolean\",dflt:!1},legendText:{valType:\"boolean\",dflt:!1},shapePosition:{valType:\"boolean\",dflt:!1},titleText:{valType:\"boolean\",dflt:!1}},autosizable:{valType:\"boolean\",dflt:!1},responsive:{valType:\"boolean\",dflt:!1},fillFrame:{valType:\"boolean\",dflt:!1},frameMargins:{valType:\"number\",dflt:0,min:0,max:.5},scrollZoom:{valType:\"flaglist\",flags:[\"cartesian\",\"gl3d\",\"geo\",\"mapbox\"],extras:[!0,!1],dflt:\"gl3d+geo+mapbox\"},doubleClick:{valType:\"enumerated\",values:[!1,\"reset\",\"autosize\",\"reset+autosize\"],dflt:\"reset+autosize\"},doubleClickDelay:{valType:\"number\",dflt:300,min:0},showAxisDragHandles:{valType:\"boolean\",dflt:!0},showAxisRangeEntryBoxes:{valType:\"boolean\",dflt:!0},showTips:{valType:\"boolean\",dflt:!0},showLink:{valType:\"boolean\",dflt:!1},linkText:{valType:\"string\",dflt:\"Edit chart\",noBlank:!0},sendData:{valType:\"boolean\",dflt:!0},showSources:{valType:\"any\",dflt:!1},displayModeBar:{valType:\"enumerated\",values:[\"hover\",!0,!1],dflt:\"hover\"},showSendToCloud:{valType:\"boolean\",dflt:!1},showEditInChartStudio:{valType:\"boolean\",dflt:!1},modeBarButtonsToRemove:{valType:\"any\",dflt:[]},modeBarButtonsToAdd:{valType:\"any\",dflt:[]},modeBarButtons:{valType:\"any\",dflt:!1},toImageButtonOptions:{valType:\"any\",dflt:{}},displaylogo:{valType:\"boolean\",dflt:!0},watermark:{valType:\"boolean\",dflt:!1},plotGlPixelRatio:{valType:\"number\",dflt:2,min:1,max:4},setBackground:{valType:\"any\",dflt:\"transparent\"},topojsonURL:{valType:\"string\",noBlank:!0,dflt:\"https://cdn.plot.ly/\"},mapboxAccessToken:{valType:\"string\",dflt:null},logging:{valType:\"boolean\",dflt:1},queueLength:{valType:\"integer\",min:0,dflt:0},globalTransforms:{valType:\"any\",dflt:[]},locale:{valType:\"string\",dflt:\"en-US\"},locales:{valType:\"any\",dflt:{}}},a={};!function t(e,r){for(var n in e){var a=e[n];a.valType?r[n]=a.dflt:(r[n]||(r[n]={}),t(a,r[n]))}}(n,a),e.exports={configAttributes:n,dfltConfig:a}},{}],756:[function(t,e,r){\"use strict\";var n=t(\"../registry\"),a=t(\"../lib\"),i=t(\"../plots/attributes\"),o=t(\"../plots/layout_attributes\"),s=t(\"../plots/frame_attributes\"),l=t(\"../plots/animation_attributes\"),c=t(\"./plot_config\").configAttributes,u=t(\"../plots/polar/legacy/area_attributes\"),h=t(\"../plots/polar/legacy/axis_attributes\"),f=t(\"./edit_types\"),p=a.extendFlat,d=a.extendDeepAll,g=a.isPlainObject,v=a.isArrayOrTypedArray,m=a.nestedProperty,y=a.valObjectMeta,x=\"_isSubplotObj\",b=\"_isLinkedToArray\",_=[x,b,\"_arrayAttrRegexps\",\"_deprecated\"];function w(t,e,r){if(!t)return!1;if(t._isLinkedToArray)if(k(e[r]))r++;else if(r<e.length)return!1;for(;r<e.length;r++){var n=t[e[r]];if(!g(n))break;if(t=n,r===e.length-1)break;if(t._isLinkedToArray){if(!k(e[++r]))return!1}else if(\"info_array\"===t.valType){var a=e[++r];if(!k(a))return!1;var i=t.items;if(Array.isArray(i)){if(a>=i.length)return!1;if(2===t.dimensions){if(r++,e.length===r)return t;var o=e[r];if(!k(o))return!1;t=i[a][o]}else t=i[a]}else t=i}}return t}function k(t){return t===Math.round(t)&&t>=0}function T(t){return function(t){r.crawl(t,function(t,e,n){r.isValObject(t)?\"data_array\"===t.valType?(t.role=\"data\",n[e+\"src\"]={valType:\"string\",editType:\"none\"}):!0===t.arrayOk&&(n[e+\"src\"]={valType:\"string\",editType:\"none\"}):g(t)&&(t.role=\"object\")})}(t),function(t){r.crawl(t,function(t,e,r){if(!t)return;var n=t[b];if(!n)return;delete t[b],r[e]={items:{}},r[e].items[n]=t,r[e].role=\"object\"})}(t),function(t){!function t(e){for(var r in e)if(g(e[r]))t(e[r]);else if(Array.isArray(e[r]))for(var n=0;n<e[r].length;n++)t(e[r][n]);else e[r]instanceof RegExp&&(e[r]=e[r].toString())}(t)}(t),t}function A(t,e,r){var n=m(t,r),a=d({},e.layoutAttributes);a[x]=!0,n.set(a)}function M(t,e,r){var n=m(t,r);n.set(d(n.get()||{},e))}r.IS_SUBPLOT_OBJ=x,r.IS_LINKED_TO_ARRAY=b,r.DEPRECATED=\"_deprecated\",r.UNDERSCORE_ATTRS=_,r.get=function(){var t={};n.allTypes.concat(\"area\").forEach(function(e){t[e]=function(t){var e,a;\"area\"===t?(e={attributes:u},a={}):(e=n.modules[t]._module,a=e.basePlotModule);var o={type:null},s=d({},i),l=d({},e.attributes);r.crawl(l,function(t,e,r,n,a){m(s,a).set(void 0),void 0===t&&m(l,a).set(void 0)}),d(o,s),n.traceIs(t,\"noOpacity\")&&delete o.opacity;n.traceIs(t,\"showLegend\")||(delete o.showlegend,delete o.legendgroup);n.traceIs(t,\"noHover\")&&(delete o.hoverinfo,delete o.hoverlabel);e.selectPoints||delete o.selectedpoints;d(o,l),a.attributes&&d(o,a.attributes);o.type=t;var c={meta:e.meta||{},categories:e.categories||{},animatable:Boolean(e.animatable),type:t,attributes:T(o)};if(e.layoutAttributes){var h={};d(h,e.layoutAttributes),c.layoutAttributes=T(h)}e.animatable||r.crawl(c,function(t){r.isValObject(t)&&\"anim\"in t&&delete t.anim});return c}(e)});var e,a={};return Object.keys(n.transformsRegistry).forEach(function(t){a[t]=function(t){var e=n.transformsRegistry[t],r=d({},e.attributes);return Object.keys(n.componentsRegistry).forEach(function(e){var a=n.componentsRegistry[e];a.schema&&a.schema.transforms&&a.schema.transforms[t]&&Object.keys(a.schema.transforms[t]).forEach(function(e){M(r,a.schema.transforms[t][e],e)})}),{attributes:T(r)}}(t)}),{defs:{valObjects:y,metaKeys:_.concat([\"description\",\"role\",\"editType\",\"impliedEdits\"]),editType:{traces:f.traces,layout:f.layout},impliedEdits:{}},traces:t,layout:function(){var t,e,r={};for(t in d(r,o),n.subplotsRegistry)if((e=n.subplotsRegistry[t]).layoutAttributes)if(Array.isArray(e.attr))for(var a=0;a<e.attr.length;a++)A(r,e,e.attr[a]);else{var i=\"subplot\"===e.attr?e.name:e.attr;A(r,e,i)}for(t in r=function(t){return p(t,{radialaxis:h.radialaxis,angularaxis:h.angularaxis}),p(t,h.layout),t}(r),n.componentsRegistry){var s=(e=n.componentsRegistry[t]).schema;if(s&&(s.subplots||s.layout)){var l=s.subplots;if(l&&l.xaxis&&!l.yaxis)for(var c in l.xaxis)delete r.yaxis[c]}else\"colorscale\"===e.name?d(r,e.layoutAttributes):e.layoutAttributes&&M(r,e.layoutAttributes,e.name)}return{layoutAttributes:T(r)}}(),transforms:a,frames:(e={frames:d({},s)},T(e),e.frames),animation:T(l),config:T(c)}},r.crawl=function(t,e,n,a){var i=n||0;a=a||\"\",Object.keys(t).forEach(function(n){var o=t[n];if(-1===_.indexOf(n)){var s=(a?a+\".\":\"\")+n;e(o,n,t,i,s),r.isValObject(o)||g(o)&&\"impliedEdits\"!==n&&r.crawl(o,e,i+1,s)}})},r.isValObject=function(t){return t&&void 0!==t.valType},r.findArrayAttributes=function(t){var e,n,a=[],o=[],s=[];function l(t,r,i,l){o=o.slice(0,l).concat([r]),s=s.slice(0,l).concat([t&&t._isLinkedToArray]),t&&(\"data_array\"===t.valType||!0===t.arrayOk)&&!(\"colorbar\"===o[l-1]&&(\"ticktext\"===r||\"tickvals\"===r))&&function t(e,r,i){var l=e[o[r]];var c=i+o[r];if(r===o.length-1)v(l)&&a.push(n+c);else if(s[r]){if(Array.isArray(l))for(var u=0;u<l.length;u++)g(l[u])&&t(l[u],r+1,c+\"[\"+u+\"].\")}else g(l)&&t(l,r+1,c+\".\")}(e,0,\"\")}e=t,n=\"\",r.crawl(i,l),t._module&&t._module.attributes&&r.crawl(t._module.attributes,l);var c=t.transforms;if(c)for(var u=0;u<c.length;u++){var h=c[u],f=h._module;f&&(n=\"transforms[\"+u+\"].\",e=h,r.crawl(f.attributes,l))}return a},r.getTraceValObject=function(t,e){var r,a,o=e[0],s=1;if(\"transforms\"===o){if(1===e.length)return i.transforms;var l=t.transforms;if(!Array.isArray(l)||!l.length)return!1;var c=e[1];if(!k(c)||c>=l.length)return!1;a=(r=(n.transformsRegistry[l[c].type]||{}).attributes)&&r[e[2]],s=3}else if(\"area\"===t.type)a=u[o];else{var h=t._module;if(h||(h=(n.modules[t.type||i.type.dflt]||{})._module),!h)return!1;if(!(a=(r=h.attributes)&&r[o])){var f=h.basePlotModule;f&&f.attributes&&(a=f.attributes[o])}a||(a=i[o])}return w(a,e,s)},r.getLayoutValObject=function(t,e){return w(function(t,e){var r,a,i,s,l=t._basePlotModules;if(l){var c;for(r=0;r<l.length;r++){if((i=l[r]).attrRegex&&i.attrRegex.test(e)){if(i.layoutAttrOverrides)return i.layoutAttrOverrides;!c&&i.layoutAttributes&&(c=i.layoutAttributes)}var u=i.baseLayoutAttrOverrides;if(u&&e in u)return u[e]}if(c)return c}var f=t._modules;if(f)for(r=0;r<f.length;r++)if((s=f[r].layoutAttributes)&&e in s)return s[e];for(a in n.componentsRegistry){if(\"colorscale\"===(i=n.componentsRegistry[a]).name&&0===e.indexOf(\"coloraxis\"))return i.layoutAttributes[e];if(!i.schema&&e===i.name)return i.layoutAttributes}if(e in o)return o[e];if(\"radialaxis\"===e||\"angularaxis\"===e)return h[e];return h.layout[e]||!1}(t,e[0]),e,1)}},{\"../lib\":719,\"../plots/animation_attributes\":762,\"../plots/attributes\":764,\"../plots/frame_attributes\":794,\"../plots/layout_attributes\":819,\"../plots/polar/legacy/area_attributes\":834,\"../plots/polar/legacy/axis_attributes\":835,\"../registry\":848,\"./edit_types\":750,\"./plot_config\":755}],757:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),a=t(\"../plots/attributes\"),i=\"templateitemname\",o={name:{valType:\"string\",editType:\"none\"}};function s(t){return t&&\"string\"==typeof t}function l(t){var e=t.length-1;return\"s\"!==t.charAt(e)&&n.warn(\"bad argument to arrayDefaultKey: \"+t),t.substr(0,t.length-1)+\"defaults\"}o[i]={valType:\"string\",editType:\"calc\"},r.templatedArray=function(t,e){return e._isLinkedToArray=t,e.name=o.name,e[i]=o[i],e},r.traceTemplater=function(t){var e,r,i={};for(e in t)r=t[e],Array.isArray(r)&&r.length&&(i[e]=0);return{newTrace:function(o){var s={type:e=n.coerce(o,{},a,\"type\"),_template:null};if(e in i){r=t[e];var l=i[e]%r.length;i[e]++,s._template=r[l]}return s}}},r.newContainer=function(t,e,r){var a=t._template,i=a&&(a[e]||r&&a[r]);return n.isPlainObject(i)||(i=null),t[e]={_template:i}},r.arrayTemplater=function(t,e,r){var n=t._template,a=n&&n[l(e)],o=n&&n[e];Array.isArray(o)&&o.length||(o=[]);var c={};return{newItem:function(t){var e={name:t.name,_input:t},n=e[i]=t[i];if(!s(n))return e._template=a,e;for(var l=0;l<o.length;l++){var u=o[l];if(u.name===n)return c[n]=1,e._template=u,e}return e[r]=t[r]||!1,e._template=!1,e},defaultItems:function(){for(var t=[],e=0;e<o.length;e++){var r=o[e],n=r.name;if(s(n)&&!c[n]){var a={_template:r,name:n,_input:{_templateitemname:n}};a[i]=r[i],t.push(a),c[n]=1}}return t}}},r.arrayDefaultKey=l,r.arrayEditor=function(t,e,r){var a=(n.nestedProperty(t,e).get()||[]).length,o=r._index,s=o>=a&&(r._input||{})._templateitemname;s&&(o=a);var l,c=e+\"[\"+o+\"]\";function u(){l={},s&&(l[c]={},l[c][i]=s)}function h(t,e){s?n.nestedProperty(l[c],t).set(e):l[c+\".\"+t]=e}function f(){var t=l;return u(),t}return u(),{modifyBase:function(t,e){l[t]=e},modifyItem:h,getUpdateObj:f,applyUpdate:function(e,r){e&&h(e,r);var a=f();for(var i in a)n.nestedProperty(t,i).set(a[i])}}}},{\"../lib\":719,\"../plots/attributes\":764}],758:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../registry\"),i=t(\"../plots/plots\"),o=t(\"../lib\"),s=t(\"../lib/clear_gl_canvases\"),l=t(\"../components/color\"),c=t(\"../components/drawing\"),u=t(\"../components/titles\"),h=t(\"../components/modebar\"),f=t(\"../plots/cartesian/axes\"),p=t(\"../constants/alignment\"),d=t(\"../plots/cartesian/constraints\"),g=d.enforce,v=d.clean,m=t(\"../plots/cartesian/autorange\").doAutoRange,y=\"start\",x=\"middle\",b=\"end\";function _(t,e,r){for(var n=0;n<r.length;n++){var a=r[n][0],i=r[n][1];if(!(a[0]>=t[1]||a[1]<=t[0])&&(i[0]<e[1]&&i[1]>e[0]))return!0}return!1}function w(t){var e,a,s,u,d,g,v=t._fullLayout,m=v._size,y=m.p,x=f.list(t,\"\",!0);if(v._paperdiv.style({width:t._context.responsive&&v.autosize&&!t._context._hasZeroWidth&&!t.layout.width?\"100%\":v.width+\"px\",height:t._context.responsive&&v.autosize&&!t._context._hasZeroHeight&&!t.layout.height?\"100%\":v.height+\"px\"}).selectAll(\".main-svg\").call(c.setSize,v.width,v.height),t._context.setBackground(t,v.paper_bgcolor),r.drawMainTitle(t),h.manage(t),!v._has(\"cartesian\"))return i.previousPromises(t);function b(t,e,r){var n=t._lw/2;return\"x\"===t._id.charAt(0)?e?\"top\"===r?e._offset-y-n:e._offset+e._length+y+n:m.t+m.h*(1-(t.position||0))+n%1:e?\"right\"===r?e._offset+e._length+y+n:e._offset-y-n:m.l+m.w*(t.position||0)+n%1}for(e=0;e<x.length;e++){var w=(u=x[e])._anchorAxis;u._linepositions={},u._lw=c.crispRound(t,u.linewidth,1),u._mainLinePosition=b(u,w,u.side),u._mainMirrorPosition=u.mirror&&w?b(u,w,p.OPPOSITE_SIDE[u.side]):null}var T=[],M=[],S=[],E=1===l.opacity(v.paper_bgcolor)&&1===l.opacity(v.plot_bgcolor)&&v.paper_bgcolor===v.plot_bgcolor;for(a in v._plots)if((s=v._plots[a]).mainplot)s.bg&&s.bg.remove(),s.bg=void 0;else{var C=s.xaxis.domain,L=s.yaxis.domain,P=s.plotgroup;if(_(C,L,S)){var O=P.node(),I=s.bg=o.ensureSingle(P,\"rect\",\"bg\");O.insertBefore(I.node(),O.childNodes[0]),M.push(a)}else P.select(\"rect.bg\").remove(),S.push([C,L]),E||(T.push(a),M.push(a))}var z,D,R,F,B,N,j,V,U,q,H,G,Y,W=v._bgLayer.selectAll(\".bg\").data(T);for(W.enter().append(\"rect\").classed(\"bg\",!0),W.exit().remove(),W.each(function(t){v._plots[t].bg=n.select(this)}),e=0;e<M.length;e++)s=v._plots[M[e]],d=s.xaxis,g=s.yaxis,s.bg&&s.bg.call(c.setRect,d._offset-y,g._offset-y,d._length+2*y,g._length+2*y).call(l.fill,v.plot_bgcolor).style(\"stroke-width\",0);if(!v._hasOnlyLargeSploms)for(a in v._plots){s=v._plots[a],d=s.xaxis,g=s.yaxis;var X,Z,J=s.clipId=\"clip\"+v._uid+a+\"plot\",K=o.ensureSingleById(v._clips,\"clipPath\",J,function(t){t.classed(\"plotclip\",!0).append(\"rect\")});s.clipRect=K.select(\"rect\").attr({width:d._length,height:g._length}),c.setTranslate(s.plot,d._offset,g._offset),s._hasClipOnAxisFalse?(X=null,Z=J):(X=J,Z=null),c.setClipUrl(s.plot,X,t),s.layerClipId=Z}function Q(t){return\"M\"+z+\",\"+t+\"H\"+D}function $(t){return\"M\"+d._offset+\",\"+t+\"h\"+d._length}function tt(t){return\"M\"+t+\",\"+V+\"V\"+j}function et(t){return\"M\"+t+\",\"+g._offset+\"v\"+g._length}function rt(t,e,r){if(!t.showline||a!==t._mainSubplot)return\"\";if(!t._anchorAxis)return r(t._mainLinePosition);var n=e(t._mainLinePosition);return t.mirror&&(n+=e(t._mainMirrorPosition)),n}for(a in v._plots){s=v._plots[a],d=s.xaxis,g=s.yaxis;var nt=\"M0,0\";k(d,a)&&(B=A(d,\"left\",g,x),z=d._offset-(B?y+B:0),N=A(d,\"right\",g,x),D=d._offset+d._length+(N?y+N:0),R=b(d,g,\"bottom\"),F=b(d,g,\"top\"),!(Y=!d._anchorAxis||a!==d._mainSubplot)||\"allticks\"!==d.mirror&&\"all\"!==d.mirror||(d._linepositions[a]=[R,F]),nt=rt(d,Q,$),Y&&d.showline&&(\"all\"===d.mirror||\"allticks\"===d.mirror)&&(nt+=Q(R)+Q(F)),s.xlines.style(\"stroke-width\",d._lw+\"px\").call(l.stroke,d.showline?d.linecolor:\"rgba(0,0,0,0)\")),s.xlines.attr(\"d\",nt);var at=\"M0,0\";k(g,a)&&(H=A(g,\"bottom\",d,x),j=g._offset+g._length+(H?y:0),G=A(g,\"top\",d,x),V=g._offset-(G?y:0),U=b(g,d,\"left\"),q=b(g,d,\"right\"),!(Y=!g._anchorAxis||a!==g._mainSubplot)||\"allticks\"!==g.mirror&&\"all\"!==g.mirror||(g._linepositions[a]=[U,q]),at=rt(g,tt,et),Y&&g.showline&&(\"all\"===g.mirror||\"allticks\"===g.mirror)&&(at+=tt(U)+tt(q)),s.ylines.style(\"stroke-width\",g._lw+\"px\").call(l.stroke,g.showline?g.linecolor:\"rgba(0,0,0,0)\")),s.ylines.attr(\"d\",at)}return f.makeClipPaths(t),i.previousPromises(t)}function k(t,e){return(t.ticks||t.showline)&&(e===t._mainSubplot||\"all\"===t.mirror||\"allticks\"===t.mirror)}function T(t,e,r){if(!r.showline||!r._lw)return!1;if(\"all\"===r.mirror||\"allticks\"===r.mirror)return!0;var n=r._anchorAxis;if(!n)return!1;var a=p.FROM_BL[e];return r.side===e?n.domain[a]===t.domain[a]:r.mirror&&n.domain[1-a]===t.domain[1-a]}function A(t,e,r,n){if(T(t,e,r))return r._lw;for(var a=0;a<n.length;a++){var i=n[a];if(i._mainAxis===r._mainAxis&&T(t,e,i))return i._lw}return 0}r.layoutStyles=function(t){return o.syncOrAsync([i.doAutoMargin,w],t)},r.drawMainTitle=function(t){var e=t._fullLayout,r=function(t){var e=t.title,r=x;o.isRightAnchor(e)?r=b:o.isLeftAnchor(e)&&(r=y);return r}(e),n=function(t){var e=t.title,r=\"0em\";o.isTopAnchor(e)?r=p.CAP_SHIFT+\"em\":o.isMiddleAnchor(e)&&(r=p.MID_SHIFT+\"em\");return r}(e);u.draw(t,\"gtitle\",{propContainer:e,propName:\"title.text\",placeholder:e._dfltTitle.plot,attributes:{x:function(t,e){var r=t.title,n=t._size,a=0;e===y?a=r.pad.l:e===b&&(a=-r.pad.r);switch(r.xref){case\"paper\":return n.l+n.w*r.x+a;case\"container\":default:return t.width*r.x+a}}(e,r),y:function(t,e){var r=t.title,n=t._size,a=0;\"0em\"!==e&&e?e===p.CAP_SHIFT+\"em\"&&(a=r.pad.t):a=-r.pad.b;if(\"auto\"===r.y)return n.t/2;switch(r.yref){case\"paper\":return n.t+n.h-n.h*r.y+a;case\"container\":default:return t.height-t.height*r.y+a}}(e,n),\"text-anchor\":r,dy:n}})},r.doTraceStyle=function(t){var e,n=t.calcdata,o=[];for(e=0;e<n.length;e++){var l=n[e],c=l[0]||{},u=c.trace||{},h=u._module||{},f=h.arraysToCalcdata;f&&f(l,u);var p=h.editStyle;p&&o.push({fn:p,cd0:c})}if(o.length){for(e=0;e<o.length;e++){var d=o[e];d.fn(t,d.cd0)}s(t),r.redrawReglTraces(t)}return i.style(t),a.getComponentMethod(\"legend\",\"draw\")(t),i.previousPromises(t)},r.doColorBars=function(t){return a.getComponentMethod(\"colorbar\",\"draw\")(t),i.previousPromises(t)},r.layoutReplot=function(t){var e=t.layout;return t.layout=void 0,a.call(\"plot\",t,\"\",e)},r.doLegend=function(t){return a.getComponentMethod(\"legend\",\"draw\")(t),i.previousPromises(t)},r.doTicksRelayout=function(t){return f.draw(t,\"redraw\"),t._fullLayout._hasOnlyLargeSploms&&(a.subplotsRegistry.splom.updateGrid(t),s(t),r.redrawReglTraces(t)),r.drawMainTitle(t),i.previousPromises(t)},r.doModeBar=function(t){var e=t._fullLayout;h.manage(t);for(var r=0;r<e._basePlotModules.length;r++){var n=e._basePlotModules[r].updateFx;n&&n(t)}return i.previousPromises(t)},r.doCamera=function(t){for(var e=t._fullLayout,r=e._subplots.gl3d,n=0;n<r.length;n++){var a=e[r[n]],i=a._scene,o=a.camera;i.setCamera(o)}},r.drawData=function(t){var e=t._fullLayout;s(t);for(var n=e._basePlotModules,o=0;o<n.length;o++)n[o].plot(t);return r.redrawReglTraces(t),i.style(t),a.getComponentMethod(\"shapes\",\"draw\")(t),a.getComponentMethod(\"annotations\",\"draw\")(t),a.getComponentMethod(\"images\",\"draw\")(t),e._replotting=!1,i.previousPromises(t)},r.redrawReglTraces=function(t){var e=t._fullLayout;if(e._has(\"regl\")){var r,n,a=t._fullData,i=[],s=[];for(e._hasOnlyLargeSploms&&e._splomGrid.draw(),r=0;r<a.length;r++){var l=a[r];!0===l.visible&&0!==l._length&&(\"splom\"===l.type?e._splomScenes[l.uid].draw():\"scattergl\"===l.type?o.pushUnique(i,l.xaxis+l.yaxis):\"scatterpolargl\"===l.type&&o.pushUnique(s,l.subplot))}for(r=0;r<i.length;r++)(n=e._plots[i[r]])._scene&&n._scene.draw();for(r=0;r<s.length;r++)(n=e[s[r]]._subplot)._scene&&n._scene.draw()}},r.doAutoRangeAndConstraints=function(t){for(var e,r,n=t._fullLayout,a=f.list(t,\"\",!0),i=n._axisMatchGroups||[],s=0;s<a.length;s++)e=a[s],v(t,e),m(t,e);g(t);t:for(var l=0;l<i.length;l++){var c,u=i[l],h=null;for(c in u){if(!1===(e=f.getFromId(t,c)).autorange)continue t;r=o.simpleMap(e.range,e.r2l),h?h[0]<h[1]?(h[0]=Math.min(h[0],r[0]),h[1]=Math.max(h[1],r[1])):(h[0]=Math.max(h[0],r[0]),h[1]=Math.min(h[1],r[1])):h=r}for(c in u)(e=f.getFromId(t,c)).range=o.simpleMap(h,e.l2r),e._input.range=e.range.slice(),e.setScale()}},r.finalDraw=function(t){a.getComponentMethod(\"rangeslider\",\"draw\")(t),a.getComponentMethod(\"rangeselector\",\"draw\")(t)},r.drawMarginPushers=function(t){a.getComponentMethod(\"legend\",\"draw\")(t),a.getComponentMethod(\"rangeselector\",\"draw\")(t),a.getComponentMethod(\"sliders\",\"draw\")(t),a.getComponentMethod(\"updatemenus\",\"draw\")(t),a.getComponentMethod(\"colorbar\",\"draw\")(t)}},{\"../components/color\":594,\"../components/drawing\":615,\"../components/modebar\":652,\"../components/titles\":681,\"../constants/alignment\":688,\"../lib\":719,\"../lib/clear_gl_canvases\":704,\"../plots/cartesian/autorange\":766,\"../plots/cartesian/axes\":767,\"../plots/cartesian/constraints\":774,\"../plots/plots\":828,\"../registry\":848,d3:164}],759:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),a=n.isPlainObject,i=t(\"./plot_schema\"),o=t(\"../plots/plots\"),s=t(\"../plots/attributes\"),l=t(\"./plot_template\"),c=t(\"./plot_config\").dfltConfig;function u(t,e){t=n.extendDeep({},t);var r,i,o=Object.keys(t).sort();function s(e,r,n){if(a(r)&&a(e))u(e,r);else if(Array.isArray(r)&&Array.isArray(e)){var o=l.arrayTemplater({_template:t},n);for(i=0;i<r.length;i++){var s=r[i],c=o.newItem(s)._template;c&&u(c,s)}var h=o.defaultItems();for(i=0;i<h.length;i++)r.push(h[i]._template);for(i=0;i<r.length;i++)delete r[i].templateitemname}}for(r=0;r<o.length;r++){var c=o[r],f=t[c];if(c in e?s(f,e[c],c):e[c]=f,h(c)===c)for(var p in e){var d=h(p);p===d||d!==c||p in t||s(f,e[p],c)}}}function h(t){return t.replace(/[0-9]+$/,\"\")}function f(t,e,r,i,o){var s=o&&r(o);for(var c in t){var u=t[c],d=p(t,c,i),g=p(t,c,o),v=r(g);if(!v){var m=h(c);m!==c&&(v=r(g=p(t,m,o)))}if((!s||s!==v)&&!(!v||v._noTemplating||\"data_array\"===v.valType||v.arrayOk&&Array.isArray(u)))if(!v.valType&&a(u))f(u,e,r,d,g);else if(v._isLinkedToArray&&Array.isArray(u))for(var y=!1,x=0,b={},_=0;_<u.length;_++){var w=u[_];if(a(w)){var k=w.name;if(k)b[k]||(f(w,e,r,p(u,x,d),p(u,x,g)),x++,b[k]=1);else if(!y){var T=p(t,l.arrayDefaultKey(c),i),A=p(u,x,d);f(w,e,r,A,p(u,x,g));var M=n.nestedProperty(e,A);n.nestedProperty(e,T).set(M.get()),M.set(null),y=!0}}}else{n.nestedProperty(e,d).set(u)}}}function p(t,e,r){return r?Array.isArray(t)?r+\"[\"+e+\"]\":r+\".\"+e:e}function d(t){for(var e=0;e<t.length;e++)if(a(t[e]))return!0}function g(t){var e;switch(t.code){case\"data\":e=\"The template has no key data.\";break;case\"layout\":e=\"The template has no key layout.\";break;case\"missing\":e=t.path?\"There are no templates for item \"+t.path+\" with name \"+t.templateitemname:\"There are no templates for trace \"+t.index+\", of type \"+t.traceType+\".\";break;case\"unused\":e=t.path?\"The template item at \"+t.path+\" was not used in constructing the plot.\":t.dataCount?\"Some of the templates of type \"+t.traceType+\" were not used. The template has \"+t.templateCount+\" traces, the data only has \"+t.dataCount+\" of this type.\":\"The template has \"+t.templateCount+\" traces of type \"+t.traceType+\" but there are none in the data.\";break;case\"reused\":e=\"Some of the templates of type \"+t.traceType+\" were used more than once. The template has \"+t.templateCount+\" traces, the data has \"+t.dataCount+\" of this type.\"}return t.msg=e,t}r.makeTemplate=function(t){t=n.isPlainObject(t)?t:n.getGraphDiv(t),t=n.extendDeep({_context:c},{data:t.data,layout:t.layout}),o.supplyDefaults(t);var e=t.data||[],r=t.layout||{};r._basePlotModules=t._fullLayout._basePlotModules,r._modules=t._fullLayout._modules;var l={data:{},layout:{}};e.forEach(function(t){var e={};f(t,e,function(t,e){return i.getTraceValObject(t,n.nestedProperty({},e).parts)}.bind(null,t));var r=n.coerce(t,{},s,\"type\"),a=l.data[r];a||(a=l.data[r]=[]),a.push(e)}),f(r,l.layout,function(t,e){return i.getLayoutValObject(t,n.nestedProperty({},e).parts)}.bind(null,r)),delete l.layout.template;var h=r.template;if(a(h)){var p,d,g,v,m,y,x=h.layout;a(x)&&u(x,l.layout);var b=h.data;if(a(b)){for(d in l.data)if(g=b[d],Array.isArray(g)){for(y=(m=l.data[d]).length,v=g.length,p=0;p<y;p++)u(g[p%v],m[p]);for(p=y;p<v;p++)m.push(n.extendDeep({},g[p]))}for(d in b)d in l.data||(l.data[d]=n.extendDeep([],b[d]))}}return l},r.validateTemplate=function(t,e){var r=n.extendDeep({},{_context:c,data:t.data,layout:t.layout}),i=r.layout||{};a(e)||(e=i.template||{});var s=e.layout,l=e.data,u=[];r.layout=i,r.layout.template=e,o.supplyDefaults(r);var f=r._fullLayout,v=r._fullData,m={};if(a(s)?(!function t(e,r){for(var n in e)if(\"_\"!==n.charAt(0)&&a(e[n])){var i,o=h(n),s=[];for(i=0;i<r.length;i++)s.push(p(e,n,r[i])),o!==n&&s.push(p(e,o,r[i]));for(i=0;i<s.length;i++)m[s[i]]=1;t(e[n],s)}}(f,[\"layout\"]),function t(e,r){for(var n in e)if(-1===n.indexOf(\"defaults\")&&a(e[n])){var i=p(e,n,r);m[i]?t(e[n],i):u.push({code:\"unused\",path:i})}}(s,\"layout\")):u.push({code:\"layout\"}),a(l)){for(var y,x={},b=0;b<v.length;b++){var _=v[b];x[y=_.type]=(x[y]||0)+1,_._fullInput._template||u.push({code:\"missing\",index:_._fullInput.index,traceType:y})}for(y in l){var w=l[y].length,k=x[y]||0;w>k?u.push({code:\"unused\",traceType:y,templateCount:w,dataCount:k}):k>w&&u.push({code:\"reused\",traceType:y,templateCount:w,dataCount:k})}}else u.push({code:\"data\"});if(function t(e,r){for(var n in e)if(\"_\"!==n.charAt(0)){var i=e[n],o=p(e,n,r);a(i)?(Array.isArray(e)&&!1===i._template&&i.templateitemname&&u.push({code:\"missing\",path:o,templateitemname:i.templateitemname}),t(i,o)):Array.isArray(i)&&d(i)&&t(i,o)}}({data:v,layout:f},\"\"),u.length)return u.map(g)}},{\"../lib\":719,\"../plots/attributes\":764,\"../plots/plots\":828,\"./plot_config\":755,\"./plot_schema\":756,\"./plot_template\":757}],760:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"./plot_api\"),i=t(\"../lib\"),o=t(\"../snapshot/helpers\"),s=t(\"../snapshot/tosvg\"),l=t(\"../snapshot/svgtoimg\"),c={format:{valType:\"enumerated\",values:[\"png\",\"jpeg\",\"webp\",\"svg\"],dflt:\"png\"},width:{valType:\"number\",min:1},height:{valType:\"number\",min:1},scale:{valType:\"number\",min:0,dflt:1},setBackground:{valType:\"any\",dflt:!1},imageDataOnly:{valType:\"boolean\",dflt:!1}};e.exports=function(t,e){var r,u,h,f;function p(t){return!(t in e)||i.validate(e[t],c[t])}if(e=e||{},i.isPlainObject(t)?(r=t.data||[],u=t.layout||{},h=t.config||{},f={}):(t=i.getGraphDiv(t),r=i.extendDeep([],t.data),u=i.extendDeep({},t.layout),h=t._context,f=t._fullLayout||{}),!p(\"width\")&&null!==e.width||!p(\"height\")&&null!==e.height)throw new Error(\"Height and width should be pixel values.\");if(!p(\"format\"))throw new Error(\"Image format is not jpeg, png, svg or webp.\");var d={};function g(t,r){return i.coerce(e,d,c,t,r)}var v=g(\"format\"),m=g(\"width\"),y=g(\"height\"),x=g(\"scale\"),b=g(\"setBackground\"),_=g(\"imageDataOnly\"),w=document.createElement(\"div\");w.style.position=\"absolute\",w.style.left=\"-5000px\",document.body.appendChild(w);var k=i.extendFlat({},u);m?k.width=m:null===e.width&&n(f.width)&&(k.width=f.width),y?k.height=y:null===e.height&&n(f.height)&&(k.height=f.height);var T=i.extendFlat({},h,{_exportedPlot:!0,staticPlot:!0,setBackground:b}),A=o.getRedrawFunc(w);function M(){return new Promise(function(t){setTimeout(t,o.getDelay(w._fullLayout))})}function S(){return new Promise(function(t,e){var r=s(w,v,x),n=w._fullLayout.width,c=w._fullLayout.height;if(a.purge(w),document.body.removeChild(w),\"svg\"===v)return t(_?r:o.encodeSVG(r));var u=document.createElement(\"canvas\");u.id=i.randstr(),l({format:v,width:n,height:c,scale:x,canvas:u,svg:r,promise:!0}).then(t).catch(e)})}return new Promise(function(t,e){a.plot(w,r,k,T).then(A).then(M).then(S).then(function(e){t(function(t){return _?t.replace(o.IMAGE_URL_PREFIX,\"\"):t}(e))}).catch(function(t){e(t)})})}},{\"../lib\":719,\"../snapshot/helpers\":852,\"../snapshot/svgtoimg\":854,\"../snapshot/tosvg\":856,\"./plot_api\":754,\"fast-isnumeric\":226}],761:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),a=t(\"../plots/plots\"),i=t(\"./plot_schema\"),o=t(\"./plot_config\").dfltConfig,s=n.isPlainObject,l=Array.isArray,c=n.isArrayOrTypedArray;function u(t,e,r,a,i,o){o=o||[];for(var h=Object.keys(t),f=0;f<h.length;f++){var v=h[f];if(\"transforms\"!==v){var m=o.slice();m.push(v);var y=t[v],x=e[v],b=g(r,v),_=\"info_array\"===(b||{}).valType,w=\"colorscale\"===(b||{}).valType,k=(b||{}).items;if(d(r,v))if(s(y)&&s(x))u(y,x,b,a,i,m);else if(_&&l(y)){y.length>x.length&&a.push(p(\"unused\",i,m.concat(x.length)));var T,A,M,S,E,C=x.length,L=Array.isArray(k);if(L&&(C=Math.min(C,k.length)),2===b.dimensions)for(A=0;A<C;A++)if(l(y[A])){y[A].length>x[A].length&&a.push(p(\"unused\",i,m.concat(A,x[A].length)));var P=x[A].length;for(T=0;T<(L?Math.min(P,k[A].length):P);T++)M=L?k[A][T]:k,S=y[A][T],E=x[A][T],n.validate(S,M)?E!==S&&E!==+S&&a.push(p(\"dynamic\",i,m.concat(A,T),S,E)):a.push(p(\"value\",i,m.concat(A,T),S))}else a.push(p(\"array\",i,m.concat(A),y[A]));else for(A=0;A<C;A++)M=L?k[A]:k,S=y[A],E=x[A],n.validate(S,M)?E!==S&&E!==+S&&a.push(p(\"dynamic\",i,m.concat(A),S,E)):a.push(p(\"value\",i,m.concat(A),S))}else if(b.items&&!_&&l(y)){var O,I,z=k[Object.keys(k)[0]],D=[];for(O=0;O<x.length;O++){var R=x[O]._index||O;if((I=m.slice()).push(R),s(y[R])&&s(x[O])){D.push(R);var F=y[R],B=x[O];s(F)&&!1!==F.visible&&!1===B.visible?a.push(p(\"invisible\",i,I)):u(F,B,z,a,i,I)}}for(O=0;O<y.length;O++)(I=m.slice()).push(O),s(y[O])?-1===D.indexOf(O)&&a.push(p(\"unused\",i,I)):a.push(p(\"object\",i,I,y[O]))}else!s(y)&&s(x)?a.push(p(\"object\",i,m,y)):c(y)||!c(x)||_||w?v in e?n.validate(y,b)?\"enumerated\"===b.valType&&(b.coerceNumber&&y!==+x||y!==x)&&a.push(p(\"dynamic\",i,m,y,x)):a.push(p(\"value\",i,m,y)):a.push(p(\"unused\",i,m,y)):a.push(p(\"array\",i,m,y));else a.push(p(\"schema\",i,m))}}return a}e.exports=function(t,e){var r,c,h=i.get(),f=[],d={_context:n.extendFlat({},o)};l(t)?(d.data=n.extendDeep([],t),r=t):(d.data=[],r=[],f.push(p(\"array\",\"data\"))),s(e)?(d.layout=n.extendDeep({},e),c=e):(d.layout={},c={},arguments.length>1&&f.push(p(\"object\",\"layout\"))),a.supplyDefaults(d);for(var g=d._fullData,v=r.length,m=0;m<v;m++){var y=r[m],x=[\"data\",m];if(s(y)){var b=g[m],_=b.type,w=h.traces[_].attributes;w.type={valType:\"enumerated\",values:[_]},!1===b.visible&&!1!==y.visible&&f.push(p(\"invisible\",x)),u(y,b,w,f,x);var k=y.transforms,T=b.transforms;if(k){l(k)||f.push(p(\"array\",x,[\"transforms\"])),x.push(\"transforms\");for(var A=0;A<k.length;A++){var M=[\"transforms\",A],S=k[A].type;if(s(k[A])){var E=h.transforms[S]?h.transforms[S].attributes:{};E.type={valType:\"enumerated\",values:Object.keys(h.transforms)},u(k[A],T[A],E,f,x,M)}else f.push(p(\"object\",x,M))}}}else f.push(p(\"object\",x))}return u(c,d._fullLayout,function(t,e){for(var r=t.layout.layoutAttributes,a=0;a<e.length;a++){var i=e[a],o=t.traces[i.type],s=o.layoutAttributes;s&&(i.subplot?n.extendFlat(r[o.attributes.subplot.dflt],s):n.extendFlat(r,s))}return r}(h,g),f,\"layout\"),0===f.length?void 0:f};var h={object:function(t,e){return(\"layout\"===t&&\"\"===e?\"The layout argument\":\"data\"===t[0]&&\"\"===e?\"Trace \"+t[1]+\" in the data argument\":f(t)+\"key \"+e)+\" must be linked to an object container\"},array:function(t,e){return(\"data\"===t?\"The data argument\":f(t)+\"key \"+e)+\" must be linked to an array container\"},schema:function(t,e){return f(t)+\"key \"+e+\" is not part of the schema\"},unused:function(t,e,r){var n=s(r)?\"container\":\"key\";return f(t)+n+\" \"+e+\" did not get coerced\"},dynamic:function(t,e,r,n){return[f(t)+\"key\",e,\"(set to '\"+r+\"')\",\"got reset to\",\"'\"+n+\"'\",\"during defaults.\"].join(\" \")},invisible:function(t,e){return(e?f(t)+\"item \"+e:\"Trace \"+t[1])+\" got defaulted to be not visible\"},value:function(t,e,r){return[f(t)+\"key \"+e,\"is set to an invalid value (\"+r+\")\"].join(\" \")}};function f(t){return l(t)?\"In data trace \"+t[1]+\", \":\"In \"+t+\", \"}function p(t,e,r,a,i){var o,s;r=r||\"\",l(e)?(o=e[0],s=e[1]):(o=e,s=null);var c=function(t){if(!l(t))return String(t);for(var e=\"\",r=0;r<t.length;r++){var n=t[r];\"number\"==typeof n?e=e.substr(0,e.length-1)+\"[\"+n+\"]\":e+=n,r<t.length-1&&(e+=\".\")}return e}(r),u=h[t](e,c,a,i);return n.log(u),{code:t,container:o,trace:s,path:r,astr:c,msg:u}}function d(t,e){var r=m(e),n=r.keyMinusId,a=r.id;return!!(n in t&&t[n]._isSubplotObj&&a)||e in t}function g(t,e){return e in t?t[e]:t[m(e).keyMinusId]}var v=n.counterRegex(\"([a-z]+)\");function m(t){var e=t.match(v);return{keyMinusId:e&&e[1],id:e&&e[2]}}},{\"../lib\":719,\"../plots/plots\":828,\"./plot_config\":755,\"./plot_schema\":756}],762:[function(t,e,r){\"use strict\";e.exports={mode:{valType:\"enumerated\",dflt:\"afterall\",values:[\"immediate\",\"next\",\"afterall\"]},direction:{valType:\"enumerated\",values:[\"forward\",\"reverse\"],dflt:\"forward\"},fromcurrent:{valType:\"boolean\",dflt:!1},frame:{duration:{valType:\"number\",min:0,dflt:500},redraw:{valType:\"boolean\",dflt:!0}},transition:{duration:{valType:\"number\",min:0,dflt:500,editType:\"none\"},easing:{valType:\"enumerated\",dflt:\"cubic-in-out\",values:[\"linear\",\"quad\",\"cubic\",\"sin\",\"exp\",\"circle\",\"elastic\",\"back\",\"bounce\",\"linear-in\",\"quad-in\",\"cubic-in\",\"sin-in\",\"exp-in\",\"circle-in\",\"elastic-in\",\"back-in\",\"bounce-in\",\"linear-out\",\"quad-out\",\"cubic-out\",\"sin-out\",\"exp-out\",\"circle-out\",\"elastic-out\",\"back-out\",\"bounce-out\",\"linear-in-out\",\"quad-in-out\",\"cubic-in-out\",\"sin-in-out\",\"exp-in-out\",\"circle-in-out\",\"elastic-in-out\",\"back-in-out\",\"bounce-in-out\"],editType:\"none\"},ordering:{valType:\"enumerated\",values:[\"layout first\",\"traces first\"],dflt:\"layout first\",editType:\"none\"}}}},{}],763:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),a=t(\"../plot_api/plot_template\");e.exports=function(t,e,r){var i,o,s=r.name,l=r.inclusionAttr||\"visible\",c=e[s],u=n.isArrayOrTypedArray(t[s])?t[s]:[],h=e[s]=[],f=a.arrayTemplater(e,s,l);for(i=0;i<u.length;i++){var p=u[i];n.isPlainObject(p)?o=f.newItem(p):(o=f.newItem({}))[l]=!1,o._index=i,!1!==o[l]&&r.handleItemDefaults(p,o,e,r),h.push(o)}var d=f.defaultItems();for(i=0;i<d.length;i++)(o=d[i])._index=h.length,r.handleItemDefaults({},o,e,r,{}),h.push(o);if(n.isArrayOrTypedArray(c)){var g=Math.min(c.length,h.length);for(i=0;i<g;i++)n.relinkPrivateKeys(h[i],c[i])}return h}},{\"../lib\":719,\"../plot_api/plot_template\":757}],764:[function(t,e,r){\"use strict\";var n=t(\"../components/fx/attributes\");e.exports={type:{valType:\"enumerated\",values:[],dflt:\"scatter\",editType:\"calc+clearAxisTypes\",_noTemplating:!0},visible:{valType:\"enumerated\",values:[!0,!1,\"legendonly\"],dflt:!0,editType:\"calc\"},showlegend:{valType:\"boolean\",dflt:!0,editType:\"style\"},legendgroup:{valType:\"string\",dflt:\"\",editType:\"style\"},opacity:{valType:\"number\",min:0,max:1,dflt:1,editType:\"style\"},name:{valType:\"string\",editType:\"style\"},uid:{valType:\"string\",editType:\"plot\",anim:!0},ids:{valType:\"data_array\",editType:\"calc\",anim:!0},customdata:{valType:\"data_array\",editType:\"calc\"},meta:{valType:\"any\",arrayOk:!0,editType:\"plot\"},selectedpoints:{valType:\"any\",editType:\"calc\"},hoverinfo:{valType:\"flaglist\",flags:[\"x\",\"y\",\"z\",\"text\",\"name\"],extras:[\"all\",\"none\",\"skip\"],arrayOk:!0,dflt:\"all\",editType:\"none\"},hoverlabel:n.hoverlabel,stream:{token:{valType:\"string\",noBlank:!0,strict:!0,editType:\"calc\"},maxpoints:{valType:\"number\",min:0,max:1e4,dflt:500,editType:\"calc\"},editType:\"calc\"},transforms:{_isLinkedToArray:\"transform\",editType:\"calc\"},uirevision:{valType:\"any\",editType:\"none\"}}},{\"../components/fx/attributes\":624}],765:[function(t,e,r){\"use strict\";e.exports={xaxis:{valType:\"subplotid\",dflt:\"x\",editType:\"calc+clearAxisTypes\"},yaxis:{valType:\"subplotid\",dflt:\"y\",editType:\"calc+clearAxisTypes\"}}},{}],766:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\"),i=t(\"../../constants/numerical\").FP_SAFE,o=t(\"../../registry\");function s(t,e){var r,n,i=[],o=l(e),s=c(t,e),u=s.min,h=s.max;if(0===u.length||0===h.length)return a.simpleMap(e.range,e.r2l);var f=u[0].val,p=h[0].val;for(r=1;r<u.length&&f===p;r++)f=Math.min(f,u[r].val);for(r=1;r<h.length&&f===p;r++)p=Math.max(p,h[r].val);var d=!1;if(e.range){var g=a.simpleMap(e.range,e.r2l);d=g[1]<g[0]}\"reversed\"===e.autorange&&(d=!0,e.autorange=!0);var v,m,y,x,b,_,w=e.rangemode,k=\"tozero\"===w,T=\"nonnegative\"===w,A=e._length,M=A/10,S=0;for(r=0;r<u.length;r++)for(v=u[r],n=0;n<h.length;n++)(_=(m=h[n]).val-v.val)>0&&((b=A-o(v)-o(m))>M?_/b>S&&(y=v,x=m,S=_/b):_/A>S&&(y={val:v.val,pad:0},x={val:m.val,pad:0},S=_/A));if(f===p){var E=f-1,C=f+1;if(k)if(0===f)i=[0,1];else{var L=(f>0?h:u).reduce(function(t,e){return Math.max(t,o(e))},0),P=f/(1-Math.min(.5,L/A));i=f>0?[0,P]:[P,0]}else i=T?[Math.max(0,E),Math.max(1,C)]:[E,C]}else k?(y.val>=0&&(y={val:0,pad:0}),x.val<=0&&(x={val:0,pad:0})):T&&(y.val-S*o(y)<0&&(y={val:0,pad:0}),x.val<=0&&(x={val:1,pad:0})),S=(x.val-y.val)/(A-o(y)-o(x)),i=[y.val-S*o(y),x.val+S*o(x)];return d&&i.reverse(),a.simpleMap(i,e.l2r||Number)}function l(t){var e=t._length/20;return\"domain\"===t.constrain&&t._inputDomain&&(e*=(t._inputDomain[1]-t._inputDomain[0])/(t.domain[1]-t.domain[0])),function(t){return t.pad+(t.extrapad?e:0)}}function c(t,e){var r,n,a,i=e._id,o=t._fullData,s=t._fullLayout,l=[],c=[];function f(t,e){for(r=0;r<e.length;r++){var o=t[e[r]],s=(o._extremes||{})[i];if(!0===o.visible&&s){for(n=0;n<s.min.length;n++)a=s.min[n],u(l,a.val,a.pad,{extrapad:a.extrapad});for(n=0;n<s.max.length;n++)a=s.max[n],h(c,a.val,a.pad,{extrapad:a.extrapad})}}}return f(o,e._traceIndices),f(s.annotations||[],e._annIndices||[]),f(s.shapes||[],e._shapeIndices||[]),{min:l,max:c}}function u(t,e,r,n){f(t,e,r,n,d)}function h(t,e,r,n){f(t,e,r,n,g)}function f(t,e,r,n,a){for(var i=n.tozero,o=n.extrapad,s=!0,l=0;l<t.length&&s;l++){var c=t[l];if(a(c.val,e)&&c.pad>=r&&(c.extrapad||!o)){s=!1;break}a(e,c.val)&&c.pad<=r&&(o||!c.extrapad)&&(t.splice(l,1),l--)}if(s){var u=i&&0===e;t.push({val:e,pad:u?0:r,extrapad:!u&&o})}}function p(t){return n(t)&&Math.abs(t)<i}function d(t,e){return t<=e}function g(t,e){return t>=e}e.exports={getAutoRange:s,makePadFn:l,doAutoRange:function(t,e){if(e.setScale(),e.autorange){e.range=s(t,e),e._r=e.range.slice(),e._rl=a.simpleMap(e._r,e.r2l);var r=e._input,n={};n[e._attr+\".range\"]=e.range,n[e._attr+\".autorange\"]=e.autorange,o.call(\"_storeDirectGUIEdit\",t.layout,t._fullLayout._preGUI,n),r.range=e.range.slice(),r.autorange=e.autorange}var i=e._anchorAxis;if(i&&i.rangeslider){var l=i.rangeslider[e._name];l&&\"auto\"===l.rangemode&&(l.range=s(t,e)),i._input.rangeslider[e._name]=a.extendFlat({},l)}},findExtremes:function(t,e,r){r||(r={});t._m||t.setScale();var a,o,s,l,c,f,d,g,v,m=[],y=[],x=e.length,b=r.padded||!1,_=r.tozero&&(\"linear\"===t.type||\"-\"===t.type),w=\"log\"===t.type,k=!1;function T(t){if(Array.isArray(t))return k=!0,function(e){return Math.max(Number(t[e]||0),0)};var e=Math.max(Number(t||0),0);return function(){return e}}var A=T((t._m>0?r.ppadplus:r.ppadminus)||r.ppad||0),M=T((t._m>0?r.ppadminus:r.ppadplus)||r.ppad||0),S=T(r.vpadplus||r.vpad),E=T(r.vpadminus||r.vpad);if(!k){if(g=1/0,v=-1/0,w)for(a=0;a<x;a++)(o=e[a])<g&&o>0&&(g=o),o>v&&o<i&&(v=o);else for(a=0;a<x;a++)(o=e[a])<g&&o>-i&&(g=o),o>v&&o<i&&(v=o);e=[g,v],x=2}var C={tozero:_,extrapad:b};function L(r){s=e[r],n(s)&&(f=A(r),d=M(r),g=s-E(r),v=s+S(r),w&&g<v/10&&(g=v/10),l=t.c2l(g),c=t.c2l(v),_&&(l=Math.min(0,l),c=Math.max(0,c)),p(l)&&u(m,l,d,C),p(c)&&h(y,c,f,C))}var P=Math.min(6,x);for(a=0;a<P;a++)L(a);for(a=x-1;a>=P;a--)L(a);return{min:m,max:y,opts:r}},concatExtremes:c}},{\"../../constants/numerical\":695,\"../../lib\":719,\"../../registry\":848,\"fast-isnumeric\":226}],767:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"fast-isnumeric\"),i=t(\"../../plots/plots\"),o=t(\"../../registry\"),s=t(\"../../lib\"),l=t(\"../../lib/svg_text_utils\"),c=t(\"../../components/titles\"),u=t(\"../../components/color\"),h=t(\"../../components/drawing\"),f=t(\"./layout_attributes\"),p=t(\"./clean_ticks\"),d=t(\"../../constants/numerical\"),g=d.ONEAVGYEAR,v=d.ONEAVGMONTH,m=d.ONEDAY,y=d.ONEHOUR,x=d.ONEMIN,b=d.ONESEC,_=d.MINUS_SIGN,w=d.BADNUM,k=t(\"../../constants/alignment\").MID_SHIFT,T=t(\"../../constants/alignment\").LINE_SPACING,A=t(\"../../constants/alignment\").OPPOSITE_SIDE,M=e.exports={};M.setConvert=t(\"./set_convert\");var S=t(\"./axis_autotype\"),E=t(\"./axis_ids\");M.id2name=E.id2name,M.name2id=E.name2id,M.cleanId=E.cleanId,M.list=E.list,M.listIds=E.listIds,M.getFromId=E.getFromId,M.getFromTrace=E.getFromTrace;var C=t(\"./autorange\");M.getAutoRange=C.getAutoRange,M.findExtremes=C.findExtremes,M.coerceRef=function(t,e,r,n,a,i){var o=n.charAt(n.length-1),l=r._fullLayout._subplots[o+\"axis\"],c=n+\"ref\",u={};return a||(a=l[0]||i),i||(i=a),u[c]={valType:\"enumerated\",values:l.concat(i?[i]:[]),dflt:a},s.coerce(t,e,u,c)},M.coercePosition=function(t,e,r,n,a,i){var o,l;if(\"paper\"===n||\"pixel\"===n)o=s.ensureNumber,l=r(a,i);else{var c=M.getFromId(e,n);l=r(a,i=c.fraction2r(i)),o=c.cleanPos}t[a]=o(l)},M.cleanPosition=function(t,e,r){return(\"paper\"===r||\"pixel\"===r?s.ensureNumber:M.getFromId(e,r).cleanPos)(t)},M.redrawComponents=function(t,e){e=e||M.listIds(t);var r=t._fullLayout;function n(n,a,i,s){for(var l=o.getComponentMethod(n,a),c={},u=0;u<e.length;u++)for(var h=r[M.id2name(e[u])][i],f=0;f<h.length;f++){var p=h[f];if(!c[p]&&(l(t,p),c[p]=1,s))return}}n(\"annotations\",\"drawOne\",\"_annIndices\"),n(\"shapes\",\"drawOne\",\"_shapeIndices\"),n(\"images\",\"draw\",\"_imgIndices\",!0)};var L=M.getDataConversions=function(t,e,r,n){var a,i=\"x\"===r||\"y\"===r||\"z\"===r?r:n;if(Array.isArray(i)){if(a={type:S(n),_categories:[]},M.setConvert(a),\"category\"===a.type)for(var o=0;o<n.length;o++)a.d2c(n[o])}else a=M.getFromTrace(t,e,i);return a?{d2c:a.d2c,c2d:a.c2d}:\"ids\"===i?{d2c:O,c2d:O}:{d2c:P,c2d:P}};function P(t){return+t}function O(t){return String(t)}M.getDataToCoordFunc=function(t,e,r,n){return L(t,e,r,n).d2c},M.counterLetter=function(t){var e=t.charAt(0);return\"x\"===e?\"y\":\"y\"===e?\"x\":void 0},M.minDtick=function(t,e,r,n){-1===[\"log\",\"category\",\"multicategory\"].indexOf(t.type)&&n?void 0===t._minDtick?(t._minDtick=e,t._forceTick0=r):t._minDtick&&((t._minDtick/e+1e-6)%1<2e-6&&((r-t._forceTick0)/e%1+1.000001)%1<2e-6?(t._minDtick=e,t._forceTick0=r):((e/t._minDtick+1e-6)%1>2e-6||((r-t._forceTick0)/t._minDtick%1+1.000001)%1>2e-6)&&(t._minDtick=0)):t._minDtick=0},M.saveRangeInitial=function(t,e){for(var r=M.list(t,\"\",!0),n=!1,a=0;a<r.length;a++){var i=r[a],o=void 0===i._rangeInitial,s=o||!(i.range[0]===i._rangeInitial[0]&&i.range[1]===i._rangeInitial[1]);(o&&!1===i.autorange||e&&s)&&(i._rangeInitial=i.range.slice(),n=!0)}return n},M.saveShowSpikeInitial=function(t,e){for(var r=M.list(t,\"\",!0),n=!1,a=\"on\",i=0;i<r.length;i++){var o=r[i],s=void 0===o._showSpikeInitial,l=s||!(o.showspikes===o._showspikes);(s||e&&l)&&(o._showSpikeInitial=o.showspikes,n=!0),\"on\"!==a||o.showspikes||(a=\"off\")}return t._fullLayout._cartesianSpikesEnabled=a,n},M.autoBin=function(t,e,r,n,i,o){var l,c=s.aggNums(Math.min,null,t),u=s.aggNums(Math.max,null,t);if(\"category\"===e.type||\"multicategory\"===e.type)return{start:c-.5,end:u+.5,size:Math.max(1,Math.round(o)||1),_dataSpan:u-c};if(i||(i=e.calendar),l=\"log\"===e.type?{type:\"linear\",range:[c,u]}:{type:e.type,range:s.simpleMap([c,u],e.c2r,0,i),calendar:i},M.setConvert(l),o=o&&p.dtick(o,l.type))l.dtick=o,l.tick0=p.tick0(void 0,l.type,i);else{var h;if(r)h=(u-c)/r;else{var f=s.distinctVals(t),d=Math.pow(10,Math.floor(Math.log(f.minDiff)/Math.LN10)),g=d*s.roundUp(f.minDiff/d,[.9,1.9,4.9,9.9],!0);h=Math.max(g,2*s.stdev(t)/Math.pow(t.length,n?.25:.4)),a(h)||(h=1)}M.autoTicks(l,h)}var v,y=l.dtick,x=M.tickIncrement(M.tickFirst(l),y,\"reverse\",i);if(\"number\"==typeof y)v=(x=function(t,e,r,n,i){var o=0,s=0,l=0,c=0;function u(e){return(1+100*(e-t)/r.dtick)%100<2}for(var h=0;h<e.length;h++)e[h]%1==0?l++:a(e[h])||c++,u(e[h])&&o++,u(e[h]+r.dtick/2)&&s++;var f=e.length-c;if(l===f&&\"date\"!==r.type)r.dtick<1?t=n-.5*r.dtick:(t-=.5)+r.dtick<n&&(t+=r.dtick);else if(s<.1*f&&(o>.3*f||u(n)||u(i))){var p=r.dtick/2;t+=t+p<n?p:-p}return t}(x,t,l,c,u))+(1+Math.floor((u-x)/y))*y;else for(\"M\"===l.dtick.charAt(0)&&(x=function(t,e,r,n,a){var i=s.findExactDates(e,a);if(i.exactDays>.8){var o=Number(r.substr(1));i.exactYears>.8&&o%12==0?t=M.tickIncrement(t,\"M6\",\"reverse\")+1.5*m:i.exactMonths>.8?t=M.tickIncrement(t,\"M1\",\"reverse\")+15.5*m:t-=m/2;var l=M.tickIncrement(t,r);if(l<=n)return l}return t}(x,t,y,c,i)),v=x,0;v<=u;)v=M.tickIncrement(v,y,!1,i),0;return{start:e.c2r(x,0,i),end:e.c2r(v,0,i),size:y,_dataSpan:u-c}},M.prepTicks=function(t){var e=s.simpleMap(t.range,t.r2l);if(\"auto\"===t.tickmode||!t.dtick){var r,n=t.nticks;n||(\"category\"===t.type||\"multicategory\"===t.type?(r=t.tickfont?1.2*(t.tickfont.size||12):15,n=t._length/r):(r=\"y\"===t._id.charAt(0)?40:80,n=s.constrain(t._length/r,4,9)+1),\"radialaxis\"===t._name&&(n*=2)),\"array\"===t.tickmode&&(n*=100),M.autoTicks(t,Math.abs(e[1]-e[0])/n),t._minDtick>0&&t.dtick<2*t._minDtick&&(t.dtick=t._minDtick,t.tick0=t.l2r(t._forceTick0))}t.tick0||(t.tick0=\"date\"===t.type?\"2000-01-01\":0),\"date\"===t.type&&t.dtick<.1&&(t.dtick=.1),V(t)},M.calcTicks=function(t){M.prepTicks(t);var e=s.simpleMap(t.range,t.r2l);if(\"array\"===t.tickmode)return function(t){var e=t.tickvals,r=t.ticktext,n=new Array(e.length),a=s.simpleMap(t.range,t.r2l),i=1.0001*a[0]-1e-4*a[1],o=1.0001*a[1]-1e-4*a[0],l=Math.min(i,o),c=Math.max(i,o),u=0;Array.isArray(r)||(r=[]);var h=\"category\"===t.type?t.d2l_noadd:t.d2l;\"log\"===t.type&&\"L\"!==String(t.dtick).charAt(0)&&(t.dtick=\"L\"+Math.pow(10,Math.floor(Math.min(t.range[0],t.range[1]))-1));for(var f=0;f<e.length;f++){var p=h(e[f]);p>l&&p<c&&(void 0===r[f]?n[u]=M.tickText(t,p):n[u]=U(t,p,String(r[f])),u++)}u<e.length&&n.splice(u,e.length-u);return n}(t);t._tmin=M.tickFirst(t);var r=1.0001*e[0]-1e-4*e[1],n=1.0001*e[1]-1e-4*e[0],i=e[1]<e[0];if(t._tmin<r!==i)return[];var o=[];\"category\"!==t.type&&\"multicategory\"!==t.type||(n=i?Math.max(-.5,n):Math.min(t._categories.length-.5,n));for(var l=\"log\"===t.type&&!(a(t.dtick)||\"L\"===t.dtick.charAt(0)),c=null,u=Math.max(1e3,t._length||0),h=t._tmin;(i?h>=n:h<=n)&&!(o.length>u||h===c);h=M.tickIncrement(h,t.dtick,i,t.calendar)){c=h;var f=!1;l&&h!==(0|h)&&(f=!0),o.push({minor:f,value:h})}rt(t)&&360===Math.abs(e[1]-e[0])&&o.pop(),t._tmax=(o[o.length-1]||{}).value,t._prevDateHead=\"\",t._inCalcTicks=!0;for(var p=new Array(o.length),d=0;d<o.length;d++)p[d]=M.tickText(t,o[d].value,!1,o[d].minor);return t._inCalcTicks=!1,p};var I=[2,5,10],z=[1,2,3,6,12],D=[1,2,5,10,15,30],R=[1,2,3,7,14],F=[-.046,0,.301,.477,.602,.699,.778,.845,.903,.954,1],B=[-.301,0,.301,.699,1],N=[15,30,45,90,180];function j(t,e,r){return e*s.roundUp(t/e,r)}function V(t){var e=t.dtick;if(t._tickexponent=0,a(e)||\"string\"==typeof e||(e=1),\"category\"!==t.type&&\"multicategory\"!==t.type||(t._tickround=null),\"date\"===t.type){var r=t.r2l(t.tick0),n=t.l2r(r).replace(/(^-|i)/g,\"\"),i=n.length;if(\"M\"===String(e).charAt(0))i>10||\"01-01\"!==n.substr(5)?t._tickround=\"d\":t._tickround=+e.substr(1)%12==0?\"y\":\"m\";else if(e>=m&&i<=10||e>=15*m)t._tickround=\"d\";else if(e>=x&&i<=16||e>=y)t._tickround=\"M\";else if(e>=b&&i<=19||e>=x)t._tickround=\"S\";else{var o=t.l2r(r+e).replace(/^-/,\"\").length;t._tickround=Math.max(i,o)-20,t._tickround<0&&(t._tickround=4)}}else if(a(e)||\"L\"===e.charAt(0)){var s=t.range.map(t.r2d||Number);a(e)||(e=Number(e.substr(1))),t._tickround=2-Math.floor(Math.log(e)/Math.LN10+.01);var l=Math.max(Math.abs(s[0]),Math.abs(s[1])),c=Math.floor(Math.log(l)/Math.LN10+.01);Math.abs(c)>3&&(H(t.exponentformat)&&!G(c)?t._tickexponent=3*Math.round((c-1)/3):t._tickexponent=c)}else t._tickround=null}function U(t,e,r){var n=t.tickfont||{};return{x:e,dx:0,dy:0,text:r||\"\",fontSize:n.size,font:n.family,fontColor:n.color}}M.autoTicks=function(t,e){var r;function n(t){return Math.pow(t,Math.floor(Math.log(e)/Math.LN10))}if(\"date\"===t.type){t.tick0=s.dateTick0(t.calendar);var i=2*e;i>g?(e/=g,r=n(10),t.dtick=\"M\"+12*j(e,r,I)):i>v?(e/=v,t.dtick=\"M\"+j(e,1,z)):i>m?(t.dtick=j(e,m,R),t.tick0=s.dateTick0(t.calendar,!0)):i>y?t.dtick=j(e,y,z):i>x?t.dtick=j(e,x,D):i>b?t.dtick=j(e,b,D):(r=n(10),t.dtick=j(e,r,I))}else if(\"log\"===t.type){t.tick0=0;var o=s.simpleMap(t.range,t.r2l);if(e>.7)t.dtick=Math.ceil(e);else if(Math.abs(o[1]-o[0])<1){var l=1.5*Math.abs((o[1]-o[0])/e);e=Math.abs(Math.pow(10,o[1])-Math.pow(10,o[0]))/l,r=n(10),t.dtick=\"L\"+j(e,r,I)}else t.dtick=e>.3?\"D2\":\"D1\"}else\"category\"===t.type||\"multicategory\"===t.type?(t.tick0=0,t.dtick=Math.ceil(Math.max(e,1))):rt(t)?(t.tick0=0,r=1,t.dtick=j(e,r,N)):(t.tick0=0,r=n(10),t.dtick=j(e,r,I));if(0===t.dtick&&(t.dtick=1),!a(t.dtick)&&\"string\"!=typeof t.dtick){var c=t.dtick;throw t.dtick=1,\"ax.dtick error: \"+String(c)}},M.tickIncrement=function(t,e,r,i){var o=r?-1:1;if(a(e))return t+o*e;var l=e.charAt(0),c=o*Number(e.substr(1));if(\"M\"===l)return s.incrementMonth(t,c,i);if(\"L\"===l)return Math.log(Math.pow(10,t)+c)/Math.LN10;if(\"D\"===l){var u=\"D2\"===e?B:F,h=t+.01*o,f=s.roundUp(s.mod(h,1),u,r);return Math.floor(h)+Math.log(n.round(Math.pow(10,f),1))/Math.LN10}throw\"unrecognized dtick \"+String(e)},M.tickFirst=function(t){var e=t.r2l||Number,r=s.simpleMap(t.range,e),i=r[1]<r[0],o=i?Math.floor:Math.ceil,l=1.0001*r[0]-1e-4*r[1],c=t.dtick,u=e(t.tick0);if(a(c)){var h=o((l-u)/c)*c+u;return\"category\"!==t.type&&\"multicategory\"!==t.type||(h=s.constrain(h,0,t._categories.length-1)),h}var f=c.charAt(0),p=Number(c.substr(1));if(\"M\"===f){for(var d,g,v,m=0,y=u;m<10;){if(((d=M.tickIncrement(y,c,i,t.calendar))-l)*(y-l)<=0)return i?Math.min(y,d):Math.max(y,d);g=(l-(y+d)/2)/(d-y),v=f+(Math.abs(Math.round(g))||1)*p,y=M.tickIncrement(y,v,g<0?!i:i,t.calendar),m++}return s.error(\"tickFirst did not converge\",t),y}if(\"L\"===f)return Math.log(o((Math.pow(10,l)-u)/p)*p+u)/Math.LN10;if(\"D\"===f){var x=\"D2\"===c?B:F,b=s.roundUp(s.mod(l,1),x,i);return Math.floor(l)+Math.log(n.round(Math.pow(10,b),1))/Math.LN10}throw\"unrecognized dtick \"+String(c)},M.tickText=function(t,e,r,n){var i,o=U(t,e),l=\"array\"===t.tickmode,c=r||l,u=t.type,h=\"category\"===u?t.d2l_noadd:t.d2l;if(l&&Array.isArray(t.ticktext)){var f=s.simpleMap(t.range,t.r2l),p=Math.abs(f[1]-f[0])/1e4;for(i=0;i<t.ticktext.length&&!(Math.abs(e-h(t.tickvals[i]))<p);i++);if(i<t.ticktext.length)return o.text=String(t.ticktext[i]),o}function d(n){if(void 0===n)return!0;if(r)return\"none\"===n;var a={first:t._tmin,last:t._tmax}[n];return\"all\"!==n&&e!==a}var g=r?\"never\":\"none\"!==t.exponentformat&&d(t.showexponent)?\"hide\":\"\";if(\"date\"===u?function(t,e,r,n){var i=t._tickround,o=r&&t.hoverformat||M.getTickFormat(t);n&&(i=a(i)?4:{y:\"m\",m:\"d\",d:\"M\",M:\"S\",S:4}[i]);var l,c=s.formatDate(e.x,o,i,t._dateFormat,t.calendar,t._extraFormat),u=c.indexOf(\"\\n\");-1!==u&&(l=c.substr(u+1),c=c.substr(0,u));n&&(\"00:00:00\"===c||\"00:00\"===c?(c=l,l=\"\"):8===c.length&&(c=c.replace(/:00$/,\"\")));l&&(r?\"d\"===i?c+=\", \"+l:c=l+(c?\", \"+c:\"\"):t._inCalcTicks&&l===t._prevDateHead||(c+=\"<br>\"+l,t._prevDateHead=l));e.text=c}(t,o,r,c):\"log\"===u?function(t,e,r,n,i){var o=t.dtick,l=e.x,c=t.tickformat,u=\"string\"==typeof o&&o.charAt(0);\"never\"===i&&(i=\"\");n&&\"L\"!==u&&(o=\"L3\",u=\"L\");if(c||\"L\"===u)e.text=Y(Math.pow(10,l),t,i,n);else if(a(o)||\"D\"===u&&s.mod(l+.01,1)<.1){var h=Math.round(l),f=Math.abs(h),p=t.exponentformat;\"power\"===p||H(p)&&G(h)?(e.text=0===h?1:1===h?\"10\":\"10<sup>\"+(h>1?\"\":_)+f+\"</sup>\",e.fontSize*=1.25):(\"e\"===p||\"E\"===p)&&f>2?e.text=\"1\"+p+(h>0?\"+\":_)+f:(e.text=Y(Math.pow(10,l),t,\"\",\"fakehover\"),\"D1\"===o&&\"y\"===t._id.charAt(0)&&(e.dy-=e.fontSize/6))}else{if(\"D\"!==u)throw\"unrecognized dtick \"+String(o);e.text=String(Math.round(Math.pow(10,s.mod(l,1)))),e.fontSize*=.75}if(\"D1\"===t.dtick){var d=String(e.text).charAt(0);\"0\"!==d&&\"1\"!==d||(\"y\"===t._id.charAt(0)?e.dx-=e.fontSize/4:(e.dy+=e.fontSize/2,e.dx+=(t.range[1]>t.range[0]?1:-1)*e.fontSize*(l<0?.5:.25)))}}(t,o,0,c,g):\"category\"===u?function(t,e){var r=t._categories[Math.round(e.x)];void 0===r&&(r=\"\");e.text=String(r)}(t,o):\"multicategory\"===u?function(t,e,r){var n=Math.round(e.x),a=t._categories[n]||[],i=void 0===a[1]?\"\":String(a[1]),o=void 0===a[0]?\"\":String(a[0]);r?e.text=o+\" - \"+i:(e.text=i,e.text2=o)}(t,o,r):rt(t)?function(t,e,r,n,a){if(\"radians\"!==t.thetaunit||r)e.text=Y(e.x,t,a,n);else{var i=e.x/180;if(0===i)e.text=\"0\";else{var o=function(t){function e(t,e){return Math.abs(t-e)<=1e-6}var r=function(t){var r=1;for(;!e(Math.round(t*r)/r,t);)r*=10;return r}(t),n=t*r,a=Math.abs(function t(r,n){return e(n,0)?r:t(n,r%n)}(n,r));return[Math.round(n/a),Math.round(r/a)]}(i);if(o[1]>=100)e.text=Y(s.deg2rad(e.x),t,a,n);else{var l=e.x<0;1===o[1]?1===o[0]?e.text=\"\\u03c0\":e.text=o[0]+\"\\u03c0\":e.text=[\"<sup>\",o[0],\"</sup>\",\"\\u2044\",\"<sub>\",o[1],\"</sub>\",\"\\u03c0\"].join(\"\"),l&&(e.text=_+e.text)}}}}(t,o,r,c,g):function(t,e,r,n,a){\"never\"===a?a=\"\":\"all\"===t.showexponent&&Math.abs(e.x/t.dtick)<1e-6&&(a=\"hide\");e.text=Y(e.x,t,a,n)}(t,o,0,c,g),n||(t.tickprefix&&!d(t.showtickprefix)&&(o.text=t.tickprefix+o.text),t.ticksuffix&&!d(t.showticksuffix)&&(o.text+=t.ticksuffix)),\"boundaries\"===t.tickson||t.showdividers){var v=function(e){var r=t.l2p(e);return r>=0&&r<=t._length?e:null};o.xbnd=[v(o.x-.5),v(o.x+t.dtick-.5)]}return o},M.hoverLabelText=function(t,e,r){if(r!==w&&r!==e)return M.hoverLabelText(t,e)+\" - \"+M.hoverLabelText(t,r);var n=\"log\"===t.type&&e<=0,a=M.tickText(t,t.c2l(n?-e:e),\"hover\").text;return n?0===e?\"0\":_+a:a};var q=[\"f\",\"p\",\"n\",\"\\u03bc\",\"m\",\"\",\"k\",\"M\",\"G\",\"T\"];function H(t){return\"SI\"===t||\"B\"===t}function G(t){return t>14||t<-15}function Y(t,e,r,n){var i=t<0,o=e._tickround,l=r||e.exponentformat||\"B\",c=e._tickexponent,u=M.getTickFormat(e),h=e.separatethousands;if(n){var f={exponentformat:l,dtick:\"none\"===e.showexponent?e.dtick:a(t)&&Math.abs(t)||1,range:\"none\"===e.showexponent?e.range.map(e.r2d):[0,t||1]};V(f),o=(Number(f._tickround)||0)+4,c=f._tickexponent,e.hoverformat&&(u=e.hoverformat)}if(u)return e._numFormat(u)(t).replace(/-/g,_);var p,d=Math.pow(10,-o)/2;if(\"none\"===l&&(c=0),(t=Math.abs(t))<d)t=\"0\",i=!1;else{if(t+=d,c&&(t*=Math.pow(10,-c),o+=c),0===o)t=String(Math.floor(t));else if(o<0){t=(t=String(Math.round(t))).substr(0,t.length+o);for(var g=o;g<0;g++)t+=\"0\"}else{var v=(t=String(t)).indexOf(\".\")+1;v&&(t=t.substr(0,v+o).replace(/\\.?0+$/,\"\"))}t=s.numSeparate(t,e._separators,h)}c&&\"hide\"!==l&&(H(l)&&G(c)&&(l=\"power\"),p=c<0?_+-c:\"power\"!==l?\"+\"+c:String(c),\"e\"===l||\"E\"===l?t+=l+p:\"power\"===l?t+=\"\\xd710<sup>\"+p+\"</sup>\":\"B\"===l&&9===c?t+=\"B\":H(l)&&(t+=q[c/3+5]));return i?_+t:t}function W(t){return[t.text,t.x,t.axInfo,t.font,t.fontSize,t.fontColor].join(\"_\")}function X(t,e){var r=t.l2p(e);return r>1&&r<t._length-1}function Z(t){var e=n.select(t),r=e.select(\".text-math-group\");return r.empty()?e.select(\"text\"):r}function J(t){return t._id+\".automargin\"}function K(t){return J(t)+\".mirror\"}function Q(t){return t._id+\".rangeslider\"}function $(t,e){for(var r=0;r<e.length;r++)-1===t.indexOf(e[r])&&t.push(e[r])}function tt(t,e,r){var n,a,i=[],o=[],l=t.layout;for(n=0;n<e.length;n++)i.push(M.getFromId(t,e[n]));for(n=0;n<r.length;n++)o.push(M.getFromId(t,r[n]));var c=Object.keys(f),u=[\"anchor\",\"domain\",\"overlaying\",\"position\",\"side\",\"tickangle\",\"editType\"],h=[\"linear\",\"log\"];for(n=0;n<c.length;n++){var p=c[n],d=i[0][p],g=o[0][p],v=!0,m=!1,y=!1;if(\"_\"!==p.charAt(0)&&\"function\"!=typeof d&&-1===u.indexOf(p)){for(a=1;a<i.length&&v;a++){var x=i[a][p];\"type\"===p&&-1!==h.indexOf(d)&&-1!==h.indexOf(x)&&d!==x?m=!0:x!==d&&(v=!1)}for(a=1;a<o.length&&v;a++){var b=o[a][p];\"type\"===p&&-1!==h.indexOf(g)&&-1!==h.indexOf(b)&&g!==b?y=!0:o[a][p]!==g&&(v=!1)}v&&(m&&(l[i[0]._name].type=\"linear\"),y&&(l[o[0]._name].type=\"linear\"),et(l,p,i,o,t._fullLayout._dfltTitle))}}for(n=0;n<t._fullLayout.annotations.length;n++){var _=t._fullLayout.annotations[n];-1!==e.indexOf(_.xref)&&-1!==r.indexOf(_.yref)&&s.swapAttrs(l.annotations[n],[\"?\"])}}function et(t,e,r,n,a){var i,o=s.nestedProperty,l=o(t[r[0]._name],e).get(),c=o(t[n[0]._name],e).get();for(\"title\"===e&&(l&&l.text===a.x&&(l.text=a.y),c&&c.text===a.y&&(c.text=a.x)),i=0;i<r.length;i++)o(t,r[i]._name+\".\"+e).set(c);for(i=0;i<n.length;i++)o(t,n[i]._name+\".\"+e).set(l)}function rt(t){return\"angularaxis\"===t._id}M.getTickFormat=function(t){var e,r,n,a,i,o,s,l;function c(t){return\"string\"!=typeof t?t:Number(t.replace(\"M\",\"\"))*v}function u(t,e){var r=[\"L\",\"D\"];if(typeof t==typeof e){if(\"number\"==typeof t)return t-e;var n=r.indexOf(t.charAt(0)),a=r.indexOf(e.charAt(0));return n===a?Number(t.replace(/(L|D)/g,\"\"))-Number(e.replace(/(L|D)/g,\"\")):n-a}return\"number\"==typeof t?1:-1}function h(t,e){var r=null===e[0],n=null===e[1],a=u(t,e[0])>=0,i=u(t,e[1])<=0;return(r||a)&&(n||i)}if(t.tickformatstops&&t.tickformatstops.length>0)switch(t.type){case\"date\":case\"linear\":for(e=0;e<t.tickformatstops.length;e++)if((n=t.tickformatstops[e]).enabled&&(a=t.dtick,i=n.dtickrange,o=void 0,void 0,void 0,o=c||function(t){return t},s=i[0],l=i[1],(!s&&\"number\"!=typeof s||o(s)<=o(a))&&(!l&&\"number\"!=typeof l||o(l)>=o(a)))){r=n;break}break;case\"log\":for(e=0;e<t.tickformatstops.length;e++)if((n=t.tickformatstops[e]).enabled&&h(t.dtick,n.dtickrange)){r=n;break}}return r?r.value:t.tickformat},M.getSubplots=function(t,e){var r=t._fullLayout._subplots,n=r.cartesian.concat(r.gl2d||[]),a=e?M.findSubplotsWithAxis(n,e):n;return a.sort(function(t,e){var r=t.substr(1).split(\"y\"),n=e.substr(1).split(\"y\");return r[0]===n[0]?+r[1]-+n[1]:+r[0]-+n[0]}),a},M.findSubplotsWithAxis=function(t,e){for(var r=new RegExp(\"x\"===e._id.charAt(0)?\"^\"+e._id+\"y\":e._id+\"$\"),n=[],a=0;a<t.length;a++){var i=t[a];r.test(i)&&n.push(i)}return n},M.makeClipPaths=function(t){var e=t._fullLayout;if(!e._hasOnlyLargeSploms){var r,a,i={_offset:0,_length:e.width,_id:\"\"},o={_offset:0,_length:e.height,_id:\"\"},s=M.list(t,\"x\",!0),l=M.list(t,\"y\",!0),c=[];for(r=0;r<s.length;r++)for(c.push({x:s[r],y:o}),a=0;a<l.length;a++)0===r&&c.push({x:i,y:l[a]}),c.push({x:s[r],y:l[a]});var u=e._clips.selectAll(\".axesclip\").data(c,function(t){return t.x._id+t.y._id});u.enter().append(\"clipPath\").classed(\"axesclip\",!0).attr(\"id\",function(t){return\"clip\"+e._uid+t.x._id+t.y._id}).append(\"rect\"),u.exit().remove(),u.each(function(t){n.select(this).select(\"rect\").attr({x:t.x._offset||0,y:t.y._offset||0,width:t.x._length||1,height:t.y._length||1})})}},M.draw=function(t,e,r){var n=t._fullLayout;\"redraw\"===e&&n._paper.selectAll(\"g.subplot\").each(function(t){var e=t[0],r=n._plots[e],a=r.xaxis,i=r.yaxis;r.xaxislayer.selectAll(\".\"+a._id+\"tick\").remove(),r.yaxislayer.selectAll(\".\"+i._id+\"tick\").remove(),r.xaxislayer.selectAll(\".\"+a._id+\"tick2\").remove(),r.yaxislayer.selectAll(\".\"+i._id+\"tick2\").remove(),r.xaxislayer.selectAll(\".\"+a._id+\"divider\").remove(),r.yaxislayer.selectAll(\".\"+i._id+\"divider\").remove(),r.gridlayer&&r.gridlayer.selectAll(\"path\").remove(),r.zerolinelayer&&r.zerolinelayer.selectAll(\"path\").remove(),n._infolayer.select(\".g-\"+a._id+\"title\").remove(),n._infolayer.select(\".g-\"+i._id+\"title\").remove()});var a=e&&\"redraw\"!==e?e:M.listIds(t);return s.syncOrAsync(a.map(function(e){return function(){if(e){var n=M.getFromId(t,e),a=M.drawOne(t,n,r);return n._r=n.range.slice(),n._rl=s.simpleMap(n._r,n.r2l),a}}}))},M.drawOne=function(t,e,r){var n,a,f;r=r||{},e.setScale();var p=t._fullLayout,d=e._id,g=d.charAt(0),v=M.counterLetter(d),m=e._mainLinePosition,y=e._mainMirrorPosition,x=p._plots[e._mainSubplot][g+\"axislayer\"],b=e._vals=M.calcTicks(e),_=[e.mirror,m,y].join(\"_\");for(n=0;n<b.length;n++)b[n].axInfo=_;e._selections={},e._tickAngles&&(e._prevTickAngles=e._tickAngles),e._tickAngles={},e._depth=null;var w={};function k(t){var r=d+(t||\"tick\");return w[r]||(w[r]=function(t,e){var r,n,a,i;t._selections[e].size()?(r=1/0,n=-1/0,a=1/0,i=-1/0,t._selections[e].each(function(){var t=Z(this),e=h.bBox(t.node().parentNode);r=Math.min(r,e.top),n=Math.max(n,e.bottom),a=Math.min(a,e.left),i=Math.max(i,e.right)})):(r=0,n=0,a=0,i=0);return{top:r,bottom:n,left:a,right:i,height:n-r,width:i-a}}(e,r)),w[r]}if(e.visible){var S,E,C=M.makeTransFn(e);if(\"boundaries\"===e.tickson){var L=function(t,e){var r,n=[],a=function(t,e){var r=t.xbnd[e];null!==r&&n.push(s.extendFlat({},t,{x:r}))};if(e.length){for(r=0;r<e.length;r++)a(e[r],0);a(e[r-1],1)}return n}(0,b);E=M.clipEnds(e,L),S=\"inside\"===e.ticks?E:L}else E=M.clipEnds(e,b),S=\"inside\"===e.ticks?E:b;var P=e._gridVals=E,O=function(t,e){var r,n,a=[],i=function(t,e){var r=t.xbnd[e];null!==r&&a.push(s.extendFlat({},t,{x:r}))};if(t.showdividers&&e.length){for(r=0;r<e.length;r++){var o=e[r];o.text2!==n&&i(o,0),n=o.text2}i(e[r-1],1)}return a}(e,b);if(!p._hasOnlyLargeSploms){var I=e._subplotsWith,z={};for(n=0;n<I.length;n++){a=I[n];var D=(f=p._plots[a])[v+\"axis\"],R=D._mainAxis._id;if(!z[R]){z[R]=1;var F=\"x\"===g?\"M0,\"+D._offset+\"v\"+D._length:\"M\"+D._offset+\",0h\"+D._length;M.drawGrid(t,e,{vals:P,counterAxis:D,layer:f.gridlayer.select(\".\"+d),path:F,transFn:C}),M.drawZeroLine(t,e,{counterAxis:D,layer:f.zerolinelayer,path:F,transFn:C})}}}var B=M.getTickSigns(e),N=[];if(e.ticks){var j,V,q,H=M.makeTickPath(e,m,B[2]);if(e._anchorAxis&&e.mirror&&!0!==e.mirror?(j=M.makeTickPath(e,y,B[3]),V=H+j):(j=\"\",V=H),e.showdividers&&\"outside\"===e.ticks&&\"boundaries\"===e.tickson){var G={};for(n=0;n<O.length;n++)G[O[n].x]=1;q=function(t){return G[t.x]?j:V}}else q=V;M.drawTicks(t,e,{vals:S,layer:x,path:q,transFn:C}),\"allticks\"===e.mirror&&(N=Object.keys(e._linepositions||{}))}for(n=0;n<N.length;n++){a=N[n],f=p._plots[a];var Y=e._linepositions[a]||[],X=M.makeTickPath(e,Y[0],B[0])+M.makeTickPath(e,Y[1],B[1]);M.drawTicks(t,e,{vals:S,layer:f[g+\"axislayer\"],path:X,transFn:C})}var $=[];if($.push(function(){return M.drawLabels(t,e,{vals:b,layer:x,transFn:C,labelFns:M.makeLabelFns(e,m)})}),\"multicategory\"===e.type){var tt={x:2,y:10}[g],et={l:-1,t:-1,r:1,b:1}[e.side.charAt(0)];$.push(function(){var r={x:\"height\",y:\"width\"}[g],n=k()[r]+tt+(e._tickAngles[d+\"tick\"]?e.tickfont.size*T:0);return M.drawLabels(t,e,{vals:function(t,e){for(var r=[],n={},a=0;a<e.length;a++){var i=e[a];n[i.text2]?n[i.text2].push(i.x):n[i.text2]=[i.x]}for(var o in n)r.push(U(t,s.interp(n[o],.5),o));return r}(e,b),layer:x,cls:d+\"tick2\",repositionOnUpdate:!0,secondary:!0,transFn:C,labelFns:M.makeLabelFns(e,m+n*et)})}),$.push(function(){return e._depth=et*(k(\"tick2\")[e.side]-m),function(t,e,r){var n=e._id+\"divider\",a=r.vals,i=r.layer.selectAll(\"path.\"+n).data(a,W);i.exit().remove(),i.enter().insert(\"path\",\":first-child\").classed(n,1).classed(\"crisp\",1).call(u.stroke,e.dividercolor).style(\"stroke-width\",h.crispRound(t,e.dividerwidth,1)+\"px\"),i.attr(\"transform\",r.transFn).attr(\"d\",r.path)}(t,e,{vals:O,layer:x,path:M.makeTickPath(e,m,et,e._depth),transFn:C})})}var rt=o.getComponentMethod(\"rangeslider\",\"isVisible\")(e);return $.push(function(){var r,n,a,s,c=e.side.charAt(0),u=A[e.side].charAt(0),h=M.getPxPosition(t,e),f=\"outside\"===e.ticks?e.ticklen:0;if((e.automargin||rt)&&(\"multicategory\"===e.type?r=k(\"tick2\"):(r=k(),\"x\"===g&&\"b\"===c&&(e._depth=Math.max(r.width>0?r.bottom-h:0,f)))),e.automargin){n={x:0,y:0,r:0,l:0,t:0,b:0};var d=[0,1];if(\"x\"===g){if(\"b\"===c?n[c]=e._depth:(n[c]=e._depth=Math.max(r.width>0?h-r.top:0,f),d.reverse()),r.width>0){var m=r.right-(e._offset+e._length);m>0&&(n.xr=1,n.r=m);var y=e._offset-r.left;y>0&&(n.xl=0,n.l=y)}}else if(\"l\"===c?n[c]=e._depth=Math.max(r.height>0?h-r.left:0,f):(n[c]=e._depth=Math.max(r.height>0?r.right-h:0,f),d.reverse()),r.height>0){var x=r.bottom-(e._offset+e._length);x>0&&(n.yb=0,n.b=x);var b=e._offset-r.top;b>0&&(n.yt=1,n.t=b)}if(n[v]=\"free\"===e.anchor?e.position:e._anchorAxis.domain[d[0]],e.title.text!==p._dfltTitle[g]){var _=(e.title.text.match(l.BR_TAG_ALL)||[]).length;n[c]+=_?e.title.font.size*(_+1)*T:e.title.font.size}e.mirror&&\"free\"!==e.anchor&&((a={x:0,y:0,r:0,l:0,t:0,b:0})[u]=e.linewidth,e.mirror&&!0!==e.mirror&&(a[u]+=f),!0===e.mirror||\"ticks\"===e.mirror?a[v]=e._anchorAxis.domain[d[1]]:\"all\"!==e.mirror&&\"allticks\"!==e.mirror||(a[v]=[e._counterDomainMin,e._counterDomainMax][d[1]]))}rt&&(s=o.getComponentMethod(\"rangeslider\",\"autoMarginOpts\")(t,e)),i.autoMargin(t,J(e),n),i.autoMargin(t,K(e),a),i.autoMargin(t,Q(e),s)}),r.skipTitle||rt&&\"bottom\"===e.side||$.push(function(){return function(t,e){var r,n=t._fullLayout,a=e._id,i=a.charAt(0),o=e.title.font.size;if(\"multicategory\"===e.type)r=e._depth;else{r=10+1.5*o+(e.linewidth?e.linewidth-1:0)}var s,l,u,f,p=M.getPxPosition(t,e);\"x\"===i?(l=e._offset+e._length/2,u=\"top\"===e.side?-r-o*(e.showticklabels?1:0):r+o*(e.showticklabels?1.5:.5),u+=p):(u=e._offset+e._length/2,l=\"right\"===e.side?r+o*(e.showticklabels?1:.5):-r-o*(e.showticklabels?.5:0),l+=p,s={rotate:\"-90\",offset:0});if(\"multicategory\"!==e.type){var d=e._selections[e._id+\"tick\"];if(f={selection:d,side:e.side},d&&d.node()&&d.node().parentNode){var g=h.getTranslate(d.node().parentNode);f.offsetLeft=g.x,f.offsetTop=g.y}}return c.draw(t,a+\"title\",{propContainer:e,propName:e._name+\".title.text\",placeholder:n._dfltTitle[i],avoid:f,transform:s,attributes:{x:l,y:u,\"text-anchor\":\"middle\"}})}(t,e)}),s.syncOrAsync($)}},M.getTickSigns=function(t){var e=t._id.charAt(0),r={x:\"top\",y:\"right\"}[e],n=t.side===r?1:-1,a=[-1,1,n,-n];return\"inside\"!==t.ticks==(\"x\"===e)&&(a=a.map(function(t){return-t})),a},M.makeTransFn=function(t){var e=t._id.charAt(0),r=t._offset;return\"x\"===e?function(e){return\"translate(\"+(r+t.l2p(e.x))+\",0)\"}:function(e){return\"translate(0,\"+(r+t.l2p(e.x))+\")\"}},M.makeTickPath=function(t,e,r,n){n=void 0!==n?n:t.ticklen;var a=t._id.charAt(0),i=(t.linewidth||1)/2;return\"x\"===a?\"M0,\"+(e+i*r)+\"v\"+n*r:\"M\"+(e+i*r)+\",0h\"+n*r},M.makeLabelFns=function(t,e,r){var n=t._id.charAt(0),i=\"boundaries\"!==t.tickson&&\"outside\"===t.ticks,o=0,l=0;if(i&&(o+=t.ticklen),r&&\"outside\"===t.ticks){var c=s.deg2rad(r);o=t.ticklen*Math.cos(c)+1,l=t.ticklen*Math.sin(c)}t.showticklabels&&(i||t.showline)&&(o+=.2*t.tickfont.size);var u,h,f,p,d={labelStandoff:o+=(t.linewidth||1)/2,labelShift:l};return\"x\"===n?(p=\"bottom\"===t.side?1:-1,u=l*p,h=e+o*p,f=\"bottom\"===t.side?1:-.2,d.xFn=function(t){return t.dx+u},d.yFn=function(t){return t.dy+h+t.fontSize*f},d.anchorFn=function(t,e){return a(e)&&0!==e&&180!==e?e*p<0?\"end\":\"start\":\"middle\"},d.heightFn=function(e,r,n){return r<-60||r>60?-.5*n:\"top\"===t.side?-n:0}):\"y\"===n&&(p=\"right\"===t.side?1:-1,u=o,h=-l*p,f=90===Math.abs(t.tickangle)?.5:0,d.xFn=function(t){return t.dx+e+(u+t.fontSize*f)*p},d.yFn=function(t){return t.dy+h+t.fontSize*k},d.anchorFn=function(e,r){return a(r)&&90===Math.abs(r)?\"middle\":\"right\"===t.side?\"start\":\"end\"},d.heightFn=function(e,r,n){return(r*=\"left\"===t.side?1:-1)<-30?-n:r<30?-.5*n:0}),d},M.drawTicks=function(t,e,r){r=r||{};var n=e._id+\"tick\",a=r.layer.selectAll(\"path.\"+n).data(e.ticks?r.vals:[],W);a.exit().remove(),a.enter().append(\"path\").classed(n,1).classed(\"ticks\",1).classed(\"crisp\",!1!==r.crisp).call(u.stroke,e.tickcolor).style(\"stroke-width\",h.crispRound(t,e.tickwidth,1)+\"px\").attr(\"d\",r.path),a.attr(\"transform\",r.transFn)},M.drawGrid=function(t,e,r){r=r||{};var n=e._id+\"grid\",a=r.vals,i=r.counterAxis;if(!1===e.showgrid)a=[];else if(i&&M.shouldShowZeroLine(t,e,i))for(var o=\"array\"===e.tickmode,s=0;s<a.length;s++){var l=a[s].x;if(o?!l:Math.abs(l)<e.dtick/100){if(a=a.slice(0,s).concat(a.slice(s+1)),!o)break;s--}}var c=r.layer.selectAll(\"path.\"+n).data(a,W);c.exit().remove(),c.enter().append(\"path\").classed(n,1).classed(\"crisp\",!1!==r.crisp),e._gw=h.crispRound(t,e.gridwidth,1),c.attr(\"transform\",r.transFn).attr(\"d\",r.path).call(u.stroke,e.gridcolor||\"#ddd\").style(\"stroke-width\",e._gw+\"px\"),\"function\"==typeof r.path&&c.attr(\"d\",r.path)},M.drawZeroLine=function(t,e,r){r=r||r;var n=e._id+\"zl\",a=M.shouldShowZeroLine(t,e,r.counterAxis),i=r.layer.selectAll(\"path.\"+n).data(a?[{x:0,id:e._id}]:[]);i.exit().remove(),i.enter().append(\"path\").classed(n,1).classed(\"zl\",1).classed(\"crisp\",!1!==r.crisp).each(function(){r.layer.selectAll(\"path\").sort(function(t,e){return E.idSort(t.id,e.id)})}),i.attr(\"transform\",r.transFn).attr(\"d\",r.path).call(u.stroke,e.zerolinecolor||u.defaultLine).style(\"stroke-width\",h.crispRound(t,e.zerolinewidth,e._gw||1)+\"px\")},M.drawLabels=function(t,e,r){r=r||{};var i=t._fullLayout,o=e._id,c=o.charAt(0),u=r.cls||o+\"tick\",f=r.vals,p=r.labelFns,d=r.secondary?0:e.tickangle,g=(e._prevTickAngles||{})[u],v=r.layer.selectAll(\"g.\"+u).data(e.showticklabels?f:[],W),m=[];function y(t,e){t.each(function(t){var i=n.select(this),o=i.select(\".text-math-group\"),s=p.anchorFn(t,e),c=r.transFn.call(i.node(),t)+(a(e)&&0!=+e?\" rotate(\"+e+\",\"+p.xFn(t)+\",\"+(p.yFn(t)-t.fontSize/2)+\")\":\"\"),u=l.lineCount(i),f=T*t.fontSize,d=p.heightFn(t,a(e)?+e:0,(u-1)*f);if(d&&(c+=\" translate(0, \"+d+\")\"),o.empty())i.select(\"text\").attr({transform:c,\"text-anchor\":s});else{var g=h.bBox(o.node()).width*{end:-.5,start:.5}[s];o.attr(\"transform\",c+(g?\"translate(\"+g+\",0)\":\"\"))}})}v.enter().append(\"g\").classed(u,1).append(\"text\").attr(\"text-anchor\",\"middle\").each(function(e){var r=n.select(this),a=t._promises.length;r.call(l.positionText,p.xFn(e),p.yFn(e)).call(h.font,e.font,e.fontSize,e.fontColor).text(e.text).call(l.convertToTspans,t),t._promises[a]?m.push(t._promises.pop().then(function(){y(r,d)})):y(r,d)}),v.exit().remove(),r.repositionOnUpdate&&v.each(function(t){n.select(this).select(\"text\").call(l.positionText,p.xFn(t),p.yFn(t))}),y(v,g+1?g:d);var x=null;e._selections&&(e._selections[u]=v);var b=[function(){return m.length&&Promise.all(m)}];e.automargin&&i._redrawFromAutoMarginCount&&90===g?(x=90,b.push(function(){y(v,g)})):b.push(function(){if(y(v,d),f.length&&\"x\"===c&&!a(d)&&(\"log\"!==e.type||\"D\"!==String(e.dtick).charAt(0))){x=0;var t,n=0,i=[];if(v.each(function(t){n=Math.max(n,t.fontSize);var r=e.l2p(t.x),a=Z(this),o=h.bBox(a.node());i.push({top:0,bottom:10,height:10,left:r-o.width/2,right:r+o.width/2+2,width:o.width+2})}),\"boundaries\"!==e.tickson&&!e.showdividers||r.secondary){var o=f.length,l=Math.abs((f[o-1].x-f[0].x)*e._m)/(o-1)<2.5*n||\"multicategory\"===e.type;for(t=0;t<i.length-1;t++)if(s.bBoxIntersect(i[t],i[t+1])){x=l?90:30;break}}else{var u=2;for(e.ticks&&(u+=e.tickwidth/2),t=0;t<i.length;t++){var p=f[t].xbnd,g=i[t];if(null!==p[0]&&g.left-e.l2p(p[0])<u||null!==p[1]&&e.l2p(p[1])-g.right<u){x=90;break}}}x&&y(v,x)}}),e._tickAngles&&b.push(function(){e._tickAngles[u]=null===x?a(d)?d:0:x});var _=s.syncOrAsync(b);return _&&_.then&&t._promises.push(_),_},M.getPxPosition=function(t,e){var r,n=t._fullLayout._size,a=e._id.charAt(0),i=e.side;return\"free\"!==e.anchor?r=e._anchorAxis:\"x\"===a?r={_offset:n.t+(1-(e.position||0))*n.h,_length:0}:\"y\"===a&&(r={_offset:n.l+(e.position||0)*n.w,_length:0}),\"top\"===i||\"left\"===i?r._offset:\"bottom\"===i||\"right\"===i?r._offset+r._length:void 0},M.shouldShowZeroLine=function(t,e,r){var n=s.simpleMap(e.range,e.r2l);return n[0]*n[1]<=0&&e.zeroline&&(\"linear\"===e.type||\"-\"===e.type)&&(X(e,0)||!function(t,e,r,n){var a=r._mainAxis;if(!a)return;var i=t._fullLayout,o=e._id.charAt(0),s=M.counterLetter(e._id),l=e._offset+(Math.abs(n[0])<Math.abs(n[1])==(\"x\"===o)?0:e._length);function c(t){if(!t.showline||!t.linewidth)return!1;var r=Math.max((t.linewidth+e.zerolinewidth)/2,1);function n(t){return\"number\"==typeof t&&Math.abs(t-l)<r}if(n(t._mainLinePosition)||n(t._mainMirrorPosition))return!0;var a=t._linepositions||{};for(var i in a)if(n(a[i][0])||n(a[i][1]))return!0}var u=i._plots[r._mainSubplot];if(!(u.mainplotinfo||u).overlays.length)return c(r);for(var h=M.list(t,s),f=0;f<h.length;f++){var p=h[f];if(p._mainAxis===a&&c(p))return!0}}(t,e,r,n)||function(t,e){for(var r=t._fullData,n=e._mainSubplot,a=e._id.charAt(0),i=0;i<r.length;i++){var s=r[i];if(!0===s.visible&&s.xaxis+s.yaxis===n){if(o.traceIs(s,\"bar-like\")&&s.orientation==={x:\"h\",y:\"v\"}[a])return!0;if(s.fill&&s.fill.charAt(s.fill.length-1)===a)return!0}}return!1}(t,e))},M.clipEnds=function(t,e){return e.filter(function(e){return X(t,e.x)})},M.allowAutoMargin=function(t){for(var e=M.list(t,\"\",!0),r=0;r<e.length;r++){var n=e[r];n.automargin&&(i.allowAutoMargin(t,J(n)),n.mirror&&i.allowAutoMargin(t,K(n))),o.getComponentMethod(\"rangeslider\",\"isVisible\")(n)&&i.allowAutoMargin(t,Q(n))}},M.swap=function(t,e){for(var r=function(t,e){var r,n,a=[];for(r=0;r<e.length;r++){var i=[],o=t._fullData[e[r]].xaxis,s=t._fullData[e[r]].yaxis;if(o&&s){for(n=0;n<a.length;n++)-1===a[n].x.indexOf(o)&&-1===a[n].y.indexOf(s)||i.push(n);if(i.length){var l,c=a[i[0]];if(i.length>1)for(n=1;n<i.length;n++)l=a[i[n]],$(c.x,l.x),$(c.y,l.y);$(c.x,[o]),$(c.y,[s])}else a.push({x:[o],y:[s]})}}return a}(t,e),n=0;n<r.length;n++)tt(t,r[n].x,r[n].y)}},{\"../../components/color\":594,\"../../components/drawing\":615,\"../../components/titles\":681,\"../../constants/alignment\":688,\"../../constants/numerical\":695,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../../plots/plots\":828,\"../../registry\":848,\"./autorange\":766,\"./axis_autotype\":768,\"./axis_ids\":770,\"./clean_ticks\":772,\"./layout_attributes\":779,\"./set_convert\":785,d3:164,\"fast-isnumeric\":226}],768:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\"),i=t(\"../../constants/numerical\").BADNUM;e.exports=function(t,e,r){return!(r=r||{}).noMultiCategory&&(o=t,a.isArrayOrTypedArray(o[0])&&a.isArrayOrTypedArray(o[1]))?\"multicategory\":function(t,e){for(var r=Math.max(1,(t.length-1)/1e3),i=0,o=0,s={},l=0;l<t.length;l+=r){var c=t[Math.round(l)],u=String(c);s[u]||(s[u]=1,a.isDateTime(c,e)&&(i+=1),n(c)&&(o+=1))}return i>2*o}(t,e)?\"date\":function(t){for(var e=Math.max(1,(t.length-1)/1e3),r=0,n=0,o={},s=0;s<t.length;s+=e){var l=t[Math.round(s)],c=String(l);o[c]||(o[c]=1,\"boolean\"==typeof l?n++:a.cleanNumber(l)!==i?r++:\"string\"==typeof l&&n++)}return n>2*r}(t)?\"category\":function(t){if(!t)return!1;for(var e=0;e<t.length;e++)if(n(t[e]))return!0;return!1}(t)?\"linear\":\"-\";var o}},{\"../../constants/numerical\":695,\"../../lib\":719,\"fast-isnumeric\":226}],769:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\"),i=t(\"./layout_attributes\"),o=t(\"./tick_value_defaults\"),s=t(\"./tick_mark_defaults\"),l=t(\"./tick_label_defaults\"),c=t(\"./category_order_defaults\"),u=t(\"./line_grid_defaults\"),h=t(\"./set_convert\");e.exports=function(t,e,r,f,p){var d=f.letter,g=f.font||{},v=f.splomStash||{},m=r(\"visible\",!f.visibleDflt),y=e.type;\"date\"===y&&n.getComponentMethod(\"calendars\",\"handleDefaults\")(t,e,\"calendar\",f.calendar);h(e,p);var x=!e.isValidRange(t.range);x&&f.reverseDflt&&(x=\"reversed\"),!r(\"autorange\",x)||\"linear\"!==y&&\"-\"!==y||r(\"rangemode\"),r(\"range\"),e.cleanRange(),c(t,e,r,f),\"category\"===y||f.noHover||r(\"hoverformat\");var b=r(\"color\"),_=b!==i.color.dflt?b:g.color,w=v.label||p._dfltTitle[d];if(l(t,e,r,y,f,{pass:1}),!m)return e;r(\"title.text\",w),a.coerceFont(r,\"title.font\",{family:g.family,size:Math.round(1.2*g.size),color:_}),o(t,e,r,y),l(t,e,r,y,f,{pass:2}),s(t,e,r,f),u(t,e,r,{dfltColor:b,bgColor:f.bgColor,showGrid:f.showGrid,attributes:i}),(e.showline||e.ticks)&&r(\"mirror\"),f.automargin&&r(\"automargin\");var k,T=\"multicategory\"===e.type;f.noTickson||\"category\"!==e.type&&!T||!e.ticks&&!e.showgrid||(T&&(k=\"boundaries\"),r(\"tickson\",k));T&&(r(\"showdividers\")&&(r(\"dividercolor\"),r(\"dividerwidth\")));return e}},{\"../../lib\":719,\"../../registry\":848,\"./category_order_defaults\":771,\"./layout_attributes\":779,\"./line_grid_defaults\":781,\"./set_convert\":785,\"./tick_label_defaults\":786,\"./tick_mark_defaults\":787,\"./tick_value_defaults\":788}],770:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"./constants\");r.id2name=function(t){if(\"string\"==typeof t&&t.match(a.AX_ID_PATTERN)){var e=t.substr(1);return\"1\"===e&&(e=\"\"),t.charAt(0)+\"axis\"+e}},r.name2id=function(t){if(t.match(a.AX_NAME_PATTERN)){var e=t.substr(5);return\"1\"===e&&(e=\"\"),t.charAt(0)+e}},r.cleanId=function(t,e){if(t.match(a.AX_ID_PATTERN)&&(!e||t.charAt(0)===e)){var r=t.substr(1).replace(/^0+/,\"\");return\"1\"===r&&(r=\"\"),t.charAt(0)+r}},r.list=function(t,e,n){var a=t._fullLayout;if(!a)return[];var i,o=r.listIds(t,e),s=new Array(o.length);for(i=0;i<o.length;i++){var l=o[i];s[i]=a[l.charAt(0)+\"axis\"+l.substr(1)]}if(!n){var c=a._subplots.gl3d||[];for(i=0;i<c.length;i++){var u=a[c[i]];e?s.push(u[e+\"axis\"]):s.push(u.xaxis,u.yaxis,u.zaxis)}}return s},r.listIds=function(t,e){var r=t._fullLayout;if(!r)return[];var n=r._subplots;return e?n[e+\"axis\"]:n.xaxis.concat(n.yaxis)},r.getFromId=function(t,e,n){var a=t._fullLayout;return\"x\"===n?e=e.replace(/y[0-9]*/,\"\"):\"y\"===n&&(e=e.replace(/x[0-9]*/,\"\")),a[r.id2name(e)]},r.getFromTrace=function(t,e,a){var i=t._fullLayout,o=null;if(n.traceIs(e,\"gl3d\")){var s=e.scene;\"scene\"===s.substr(0,5)&&(o=i[s][a+\"axis\"])}else o=r.getFromId(t,e[a+\"axis\"]||a);return o},r.idSort=function(t,e){var r=t.charAt(0),n=e.charAt(0);return r!==n?r>n?1:-1:+(t.substr(1)||1)-+(e.substr(1)||1)},r.getAxisGroup=function(t,e){for(var r=t._axisMatchGroups,n=0;n<r.length;n++){if(r[n][e])return\"g\"+n}return e}},{\"../../registry\":848,\"./constants\":773}],771:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n){if(\"category\"===e.type){var a,i=t.categoryarray,o=Array.isArray(i)&&i.length>0;o&&(a=\"array\");var s,l=r(\"categoryorder\",a);\"array\"===l&&(s=r(\"categoryarray\")),o||\"array\"!==l||(l=e.categoryorder=\"trace\"),\"trace\"===l?e._initialCategories=[]:\"array\"===l?e._initialCategories=s.slice():(s=function(t,e){var r,n,a,i=e.dataAttr||t._id.charAt(0),o={};if(e.axData)r=e.axData;else for(r=[],n=0;n<e.data.length;n++){var s=e.data[n];s[i+\"axis\"]===t._id&&r.push(s)}for(n=0;n<r.length;n++){var l=r[n][i];for(a=0;a<l.length;a++){var c=l[a];null!=c&&(o[c]=1)}}return Object.keys(o)}(e,n).sort(),\"category ascending\"===l?e._initialCategories=s:\"category descending\"===l&&(e._initialCategories=s.reverse()))}}},{}],772:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\"),i=t(\"../../constants/numerical\").ONEDAY;r.dtick=function(t,e){var r=\"log\"===e,a=\"date\"===e,o=\"category\"===e,s=a?i:1;if(!t)return s;if(n(t))return(t=Number(t))<=0?s:o?Math.max(1,Math.round(t)):a?Math.max(.1,t):t;if(\"string\"!=typeof t||!a&&!r)return s;var l=t.charAt(0),c=t.substr(1);return(c=n(c)?Number(c):0)<=0||!(a&&\"M\"===l&&c===Math.round(c)||r&&\"L\"===l||r&&\"D\"===l&&(1===c||2===c))?s:t},r.tick0=function(t,e,r,i){return\"date\"===e?a.cleanDate(t,a.dateTick0(r)):\"D1\"!==i&&\"D2\"!==i?n(t)?Number(t):0:void 0}},{\"../../constants/numerical\":695,\"../../lib\":719,\"fast-isnumeric\":226}],773:[function(t,e,r){\"use strict\";var n=t(\"../../lib/regex\").counter;e.exports={idRegex:{x:n(\"x\"),y:n(\"y\")},attrRegex:n(\"[xy]axis\"),xAxisMatch:n(\"xaxis\"),yAxisMatch:n(\"yaxis\"),AX_ID_PATTERN:/^[xyz][0-9]*$/,AX_NAME_PATTERN:/^[xyz]axis[0-9]*$/,SUBPLOT_PATTERN:/^x([0-9]*)y([0-9]*)$/,MINDRAG:8,MINSELECT:12,MINZOOM:20,DRAGGERSIZE:20,BENDPX:1.5,REDRAWDELAY:50,SELECTDELAY:100,SELECTID:\"-select\",DFLTRANGEX:[-1,6],DFLTRANGEY:[-1,4],traceLayerClasses:[\"heatmaplayer\",\"contourcarpetlayer\",\"contourlayer\",\"funnellayer\",\"waterfalllayer\",\"barlayer\",\"carpetlayer\",\"violinlayer\",\"boxlayer\",\"ohlclayer\",\"scattercarpetlayer\",\"scatterlayer\"],clipOnAxisFalseQuery:[\".scatterlayer\",\".barlayer\",\".funnellayer\",\".waterfalllayer\"],layerValue2layerClass:{\"above traces\":\"above\",\"below traces\":\"below\"}}},{\"../../lib/regex\":735}],774:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./axis_ids\").id2name,i=t(\"./scale_zoom\"),o=t(\"./autorange\").makePadFn,s=t(\"./autorange\").concatExtremes,l=t(\"../../constants/numerical\").ALMOST_EQUAL,c=t(\"../../constants/alignment\").FROM_BL;function u(t,e,r,n,i){var o,s,l,c,u=\"range\"!==i,h=n[a(e)].type,f=[];for(s=0;s<r.length;s++)if((l=r[s])!==e&&(c=n[a(l)]).type===h)if(c.fixedrange){if(u&&c.anchor){n[a(c.anchor)].fixedrange&&f.push(l)}}else f.push(l);for(o=0;o<t.length;o++)if(t[o][e]){var p=t[o],d=[];for(s=0;s<f.length;s++)p[l=f[s]]||d.push(l);return{linkableAxes:d,thisGroup:p}}return{linkableAxes:f,thisGroup:null}}function h(t,e,r,n,a){var i,o,s,l,c;null===e?((e={})[r]=1,c=t.length,t.push(e)):c=t.indexOf(e);var u=Object.keys(e);for(i=0;i<t.length;i++)if(s=t[i],i!==c&&s[n]){var h=s[n];for(o=0;o<u.length;o++)s[l=u[o]]=h*a*e[l];return void t.splice(c,1)}if(1!==a)for(o=0;o<u.length;o++)e[u[o]]*=a;e[n]=1}function f(t,e){var r=t._inputDomain,n=c[t.constraintoward],a=r[0]+(r[1]-r[0])*n;t.domain=t._input.domain=[a+(r[0]-a)/e,a+(r[1]-a)/e],t.setScale()}r.handleConstraintDefaults=function(t,e,r,a,i){var o,s,l,c,f=i._axisConstraintGroups,p=i._axisMatchGroups,d=e._id,g=d.charAt(0),v=((i._splomAxes||{})[g]||{})[d]||{},m=e._id,y=m.charAt(0),x=r(\"constrain\");if(n.coerce(t,e,{constraintoward:{valType:\"enumerated\",values:\"x\"===y?[\"left\",\"center\",\"right\"]:[\"bottom\",\"middle\",\"top\"],dflt:\"x\"===y?\"center\":\"middle\"}},\"constraintoward\"),!t.matches&&!v.matches||e.fixedrange||(s=u(p,m,a,i),o=n.coerce(t,e,{matches:{valType:\"enumerated\",values:s.linkableAxes||[],dflt:v.matches}},\"matches\")),o||!t.scaleanchor||e.fixedrange&&\"domain\"!==x||(c=u(f,m,a,i,x),l=n.coerce(t,e,{scaleanchor:{valType:\"enumerated\",values:c.linkableAxes||[]}},\"scaleanchor\")),o?(delete e.constrain,h(p,s.thisGroup,m,o,1)):-1!==a.indexOf(t.matches)&&n.warn(\"ignored \"+e._name+'.matches: \"'+t.matches+'\" to avoid either an infinite loop or because the target axis has fixed range.'),l){var b=r(\"scaleratio\");b||(b=e.scaleratio=1),h(f,c.thisGroup,m,l,b)}else-1!==a.indexOf(t.scaleanchor)&&n.warn(\"ignored \"+e._name+'.scaleanchor: \"'+t.scaleanchor+'\" to avoid either an infinite loop and possibly inconsistent scaleratios, or because the target axis has fixed range or this axis declares a *matches* constraint.')},r.enforce=function(t){var e,r,n,c,u,h,p,d=t._fullLayout,g=d._axisConstraintGroups||[];for(e=0;e<g.length;e++){var v=g[e],m=Object.keys(v),y=1/0,x=0,b=1/0,_={},w={},k=!1;for(r=0;r<m.length;r++)w[n=m[r]]=c=d[a(n)],c._inputDomain?c.domain=c._inputDomain.slice():c._inputDomain=c.domain.slice(),c._inputRange||(c._inputRange=c.range.slice()),c.setScale(),_[n]=u=Math.abs(c._m)/v[n],y=Math.min(y,u),\"domain\"!==c.constrain&&c._constraintShrinkable||(b=Math.min(b,u)),delete c._constraintShrinkable,x=Math.max(x,u),\"domain\"===c.constrain&&(k=!0);if(!(y>l*x)||k)for(r=0;r<m.length;r++)if(u=_[n=m[r]],h=(c=w[n]).constrain,u!==b||\"domain\"===h)if(p=u/b,\"range\"===h)i(c,p);else{var T=c._inputDomain,A=(c.domain[1]-c.domain[0])/(T[1]-T[0]),M=(c.r2l(c.range[1])-c.r2l(c.range[0]))/(c.r2l(c._inputRange[1])-c.r2l(c._inputRange[0]));if((p/=A)*M<1){c.domain=c._input.domain=T.slice(),i(c,p);continue}if(M<1&&(c.range=c._input.range=c._inputRange.slice(),p*=M),c.autorange){var S=c.r2l(c.range[0]),E=c.r2l(c.range[1]),C=(S+E)/2,L=C,P=C,O=Math.abs(E-C),I=C-O*p*1.0001,z=C+O*p*1.0001,D=o(c);f(c,p);var R,F,B=Math.abs(c._m),N=s(t,c),j=N.min,V=N.max;for(F=0;F<j.length;F++)(R=j[F].val-D(j[F])/B)>I&&R<L&&(L=R);for(F=0;F<V.length;F++)(R=V[F].val+D(V[F])/B)<z&&R>P&&(P=R);p/=(P-L)/(2*O),L=c.l2r(L),P=c.l2r(P),c.range=c._input.range=S<E?[L,P]:[P,L]}f(c,p)}}},r.clean=function(t,e){if(e._inputDomain){for(var r=!1,n=e._id,a=t._fullLayout._axisConstraintGroups,i=0;i<a.length;i++)if(a[i][n]){r=!0;break}r&&\"domain\"===e.constrain||(e._input.domain=e.domain=e._inputDomain,delete e._inputDomain)}}},{\"../../constants/alignment\":688,\"../../constants/numerical\":695,\"../../lib\":719,\"./autorange\":766,\"./axis_ids\":770,\"./scale_zoom\":783}],775:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"tinycolor2\"),i=t(\"has-passive-events\"),o=t(\"../../registry\"),s=t(\"../../lib\"),l=t(\"../../lib/svg_text_utils\"),c=t(\"../../components/color\"),u=t(\"../../components/drawing\"),h=t(\"../../components/fx\"),f=t(\"./axes\"),p=t(\"../../lib/setcursor\"),d=t(\"../../components/dragelement\"),g=t(\"../../constants/alignment\").FROM_TL,v=t(\"../../lib/clear_gl_canvases\"),m=t(\"../../plot_api/subroutines\").redrawReglTraces,y=t(\"../plots\"),x=t(\"./axis_ids\").getFromId,b=t(\"./select\").prepSelect,_=t(\"./select\").clearSelect,w=t(\"./select\").selectOnClick,k=t(\"./scale_zoom\"),T=t(\"./constants\"),A=T.MINDRAG,M=T.MINZOOM,S=!0;function E(t,e,r,n){var a=s.ensureSingle(t.draglayer,e,r,function(e){e.classed(\"drag\",!0).style({fill:\"transparent\",\"stroke-width\":0}).attr(\"data-subplot\",t.id)});return a.call(p,n),a.node()}function C(t,e,r,a,i,o,s){var l=E(t,\"rect\",e,r);return n.select(l).call(u.setRect,a,i,o,s),l}function L(t,e){for(var r=0;r<t.length;r++)if(!t[r].fixedrange)return e;return\"\"}function P(t,e,r,n,a){for(var i=0;i<t.length;i++){var o=t[i];if(!o.fixedrange){var s=o._rl[0],l=o._rl[1]-s;n[o._name+\".range[0]\"]=o.l2r(s+l*e),n[o._name+\".range[1]\"]=o.l2r(s+l*r)}}if(a&&a.length){var c=(e+(1-r))/2;P(a,c,1-c,n,[])}}function O(t,e){for(var r=0;r<t.length;r++){var n=t[r];n.fixedrange||(n.range=[n.l2r(n._rl[0]-e/n._m),n.l2r(n._rl[1]-e/n._m)])}}function I(t){return 1-(t>=0?Math.min(t,.9):1/(1/Math.max(t,-.3)+3.222))}function z(t,e,r,n,a){return t.append(\"path\").attr(\"class\",\"zoombox\").style({fill:e>.2?\"rgba(0,0,0,0)\":\"rgba(255,255,255,0)\",\"stroke-width\":0}).attr(\"transform\",\"translate(\"+r+\", \"+n+\")\").attr(\"d\",a+\"Z\")}function D(t,e,r){return t.append(\"path\").attr(\"class\",\"zoombox-corners\").style({fill:c.background,stroke:c.defaultLine,\"stroke-width\":1,opacity:0}).attr(\"transform\",\"translate(\"+e+\", \"+r+\")\").attr(\"d\",\"M0,0Z\")}function R(t,e,r,n,a,i){t.attr(\"d\",n+\"M\"+r.l+\",\"+r.t+\"v\"+r.h+\"h\"+r.w+\"v-\"+r.h+\"h-\"+r.w+\"Z\"),F(t,e,a,i)}function F(t,e,r,n){r||(t.transition().style(\"fill\",n>.2?\"rgba(0,0,0,0.4)\":\"rgba(255,255,255,0.3)\").duration(200),e.transition().style(\"opacity\",1).duration(200))}function B(t){n.select(t).selectAll(\".zoombox,.js-zoombox-backdrop,.js-zoombox-menu,.zoombox-corners\").remove()}function N(t){S&&t.data&&t._context.showTips&&(s.notifier(s._(t,\"Double-click to zoom back out\"),\"long\"),S=!1)}function j(t){return\"lasso\"===t||\"select\"===t}function V(t){var e=Math.floor(Math.min(t.b-t.t,t.r-t.l,M)/2);return\"M\"+(t.l-3.5)+\",\"+(t.t-.5+e)+\"h3v\"+-e+\"h\"+e+\"v-3h-\"+(e+3)+\"ZM\"+(t.r+3.5)+\",\"+(t.t-.5+e)+\"h-3v\"+-e+\"h\"+-e+\"v-3h\"+(e+3)+\"ZM\"+(t.r+3.5)+\",\"+(t.b+.5-e)+\"h-3v\"+e+\"h\"+-e+\"v3h\"+(e+3)+\"ZM\"+(t.l-3.5)+\",\"+(t.b+.5-e)+\"h3v\"+e+\"h\"+e+\"v3h-\"+(e+3)+\"Z\"}function U(t,e,r,n){for(var a,i,o,l,c=!1,u={},h={},f=0;f<e.length;f++){var p=e[f];for(a in r)if(p[a]){for(o in p)(\"x\"===o.charAt(0)?r:n)[o]||(u[o]=a);for(i in n)p[i]&&(c=!0)}for(i in n)if(p[i])for(l in p)(\"x\"===l.charAt(0)?r:n)[l]||(h[l]=i)}c&&(s.extendFlat(u,h),h={});var d={},g=[];for(o in u){var v=x(t,o);g.push(v),d[v._id]=v}var m={},y=[];for(l in h){var b=x(t,l);y.push(b),m[b._id]=b}return{xaHash:d,yaHash:m,xaxes:g,yaxes:y,xLinks:u,yLinks:h,isSubplotConstrained:c}}function q(t,e){if(i){var r=void 0!==t.onwheel?\"wheel\":\"mousewheel\";t._onwheel&&t.removeEventListener(r,t._onwheel),t._onwheel=e,t.addEventListener(r,e,{passive:!1})}else void 0!==t.onwheel?t.onwheel=e:void 0!==t.onmousewheel&&(t.onmousewheel=e)}function H(t){var e=[];for(var r in t)e.push(t[r]);return e}e.exports={makeDragBox:function(t,e,r,i,c,p,S,E){var F,G,Y,W,X,Z,J,K,Q,$,tt,et,rt,nt,at,it,ot,st,lt,ct,ut,ht=t._fullLayout._zoomlayer,ft=S+E===\"nsew\",pt=1===(S+E).length;function dt(){if(F=e.xaxis,G=e.yaxis,Q=F._length,$=G._length,J=F._offset,K=G._offset,(Y={})[F._id]=F,(W={})[G._id]=G,S&&E)for(var r=e.overlays,n=0;n<r.length;n++){var a=r[n].xaxis;Y[a._id]=a;var i=r[n].yaxis;W[i._id]=i}X=H(Y),Z=H(W),rt=L(X,E),nt=L(Z,S),at=!nt&&!rt,tt=U(t,t._fullLayout._axisConstraintGroups,Y,W),et=U(t,t._fullLayout._axisMatchGroups,Y,W),it=E||tt.isSubplotConstrained||et.isSubplotConstrained,ot=S||tt.isSubplotConstrained||et.isSubplotConstrained;var o=t._fullLayout;st=o._has(\"scattergl\"),lt=o._has(\"splom\"),ct=o._has(\"svg\")}dt();var gt=function(t,e,r){return t?\"nsew\"===t?r?\"\":\"pan\"===e?\"move\":\"crosshair\":t.toLowerCase()+\"-resize\":\"pointer\"}(nt+rt,t._fullLayout.dragmode,ft),vt=C(e,S+E+\"drag\",gt,r,i,c,p);if(at&&!ft)return vt.onmousedown=null,vt.style.pointerEvents=\"none\",vt;var mt,yt,xt,bt,_t,wt,kt,Tt,At,Mt,St={element:vt,gd:t,plotinfo:e};function Et(){St.plotinfo.selection=!1,_(t)}function Ct(r,a){var i=t._fullLayout.clickmode;if(B(t),2!==r||pt||function(){if(!t._transitioningWithDuration){var e=t._context.doubleClick,r=[];rt&&(r=r.concat(X)),nt&&(r=r.concat(Z)),et.xaxes&&(r=r.concat(et.xaxes)),et.yaxes&&(r=r.concat(et.yaxes));var n,a,i,s={};if(\"reset+autosize\"===e)for(e=\"autosize\",a=0;a<r.length;a++)if((n=r[a])._rangeInitial&&(n.range[0]!==n._rangeInitial[0]||n.range[1]!==n._rangeInitial[1])||!n._rangeInitial&&!n.autorange){e=\"reset\";break}if(\"autosize\"===e)for(a=0;a<r.length;a++)(n=r[a]).fixedrange||(s[n._name+\".autorange\"]=!0);else if(\"reset\"===e)for((rt||tt.isSubplotConstrained)&&(r=r.concat(tt.xaxes)),nt&&!tt.isSubplotConstrained&&(r=r.concat(tt.yaxes)),tt.isSubplotConstrained&&(rt?nt||(r=r.concat(Z)):r=r.concat(X)),a=0;a<r.length;a++)(n=r[a]).fixedrange||(n._rangeInitial?(i=n._rangeInitial,s[n._name+\".range[0]\"]=i[0],s[n._name+\".range[1]\"]=i[1]):s[n._name+\".autorange\"]=!0);t.emit(\"plotly_doubleclick\",null),o.call(\"_guiRelayout\",t,s)}}(),ft)i.indexOf(\"select\")>-1&&w(a,t,X,Z,e.id,St),i.indexOf(\"event\")>-1&&h.click(t,a,e.id);else if(1===r&&pt){var s=S?G:F,c=\"s\"===S||\"w\"===E?0:1,u=s._name+\".range[\"+c+\"]\",f=function(t,e){var r,a=t.range[e],i=Math.abs(a-t.range[1-e]);return\"date\"===t.type?a:\"log\"===t.type?(r=Math.ceil(Math.max(0,-Math.log(i)/Math.LN10))+3,n.format(\".\"+r+\"g\")(Math.pow(10,a))):(r=Math.floor(Math.log(Math.abs(a))/Math.LN10)-Math.floor(Math.log(i)/Math.LN10)+4,n.format(\".\"+String(r)+\"g\")(a))}(s,c),p=\"left\",d=\"middle\";if(s.fixedrange)return;S?(d=\"n\"===S?\"top\":\"bottom\",\"right\"===s.side&&(p=\"right\")):\"e\"===E&&(p=\"right\"),t._context.showAxisRangeEntryBoxes&&n.select(vt).call(l.makeEditable,{gd:t,immediate:!0,background:t._fullLayout.paper_bgcolor,text:String(f),fill:s.tickfont?s.tickfont.color:\"#444\",horizontalAlign:p,verticalAlign:d}).on(\"edit\",function(e){var r=s.d2r(e);void 0!==r&&o.call(\"_guiRelayout\",t,u,r)})}}function Lt(e,r){if(t._transitioningWithDuration)return!1;var n=Math.max(0,Math.min(Q,e+mt)),a=Math.max(0,Math.min($,r+yt)),i=Math.abs(n-mt),o=Math.abs(a-yt);function s(){kt=\"\",xt.r=xt.l,xt.t=xt.b,At.attr(\"d\",\"M0,0Z\")}if(xt.l=Math.min(mt,n),xt.r=Math.max(mt,n),xt.t=Math.min(yt,a),xt.b=Math.max(yt,a),tt.isSubplotConstrained)i>M||o>M?(kt=\"xy\",i/Q>o/$?(o=i*$/Q,yt>a?xt.t=yt-o:xt.b=yt+o):(i=o*Q/$,mt>n?xt.l=mt-i:xt.r=mt+i),At.attr(\"d\",V(xt))):s();else if(et.isSubplotConstrained)if(i>M||o>M){kt=\"xy\";var l=Math.min(xt.l/Q,($-xt.b)/$),c=Math.max(xt.r/Q,($-xt.t)/$);xt.l=l*Q,xt.r=c*Q,xt.b=(1-l)*$,xt.t=(1-c)*$,At.attr(\"d\",V(xt))}else s();else!nt||o<Math.min(Math.max(.6*i,A),M)?i<A||!rt?s():(xt.t=0,xt.b=$,kt=\"x\",At.attr(\"d\",function(t,e){return\"M\"+(t.l-.5)+\",\"+(e-M-.5)+\"h-3v\"+(2*M+1)+\"h3ZM\"+(t.r+.5)+\",\"+(e-M-.5)+\"h3v\"+(2*M+1)+\"h-3Z\"}(xt,yt))):!rt||i<Math.min(.6*o,M)?(xt.l=0,xt.r=Q,kt=\"y\",At.attr(\"d\",function(t,e){return\"M\"+(e-M-.5)+\",\"+(t.t-.5)+\"v-3h\"+(2*M+1)+\"v3ZM\"+(e-M-.5)+\",\"+(t.b+.5)+\"v3h\"+(2*M+1)+\"v-3Z\"}(xt,mt))):(kt=\"xy\",At.attr(\"d\",V(xt)));xt.w=xt.r-xt.l,xt.h=xt.b-xt.t,kt&&(Mt=!0),t._dragged=Mt,R(Tt,At,xt,_t,wt,bt),Pt(),t.emit(\"plotly_relayouting\",ut),wt=!0}function Pt(){ut={},\"xy\"!==kt&&\"x\"!==kt||(P(X,xt.l/Q,xt.r/Q,ut,tt.xaxes),Bt(\"x\",ut)),\"xy\"!==kt&&\"y\"!==kt||(P(Z,($-xt.b)/$,($-xt.t)/$,ut,tt.yaxes),Bt(\"y\",ut))}function Ot(){Pt(),B(t),jt(),N(t)}St.prepFn=function(e,r,n){var i=St.dragmode,o=t._fullLayout.dragmode;o!==i&&(St.dragmode=o),dt(),at||(ft?e.shiftKey?\"pan\"===o?o=\"zoom\":j(o)||(o=\"pan\"):e.ctrlKey&&(o=\"pan\"):o=\"pan\"),St.minDrag=\"lasso\"===o?1:void 0,j(o)?(St.xaxes=X,St.yaxes=Z,b(e,r,n,St,o)):(St.clickFn=Ct,j(i)&&Et(),at||(\"zoom\"===o?(St.moveFn=Lt,St.doneFn=Ot,St.minDrag=1,function(e,r,n){var i=vt.getBoundingClientRect();mt=r-i.left,yt=n-i.top,xt={l:mt,r:mt,w:0,t:yt,b:yt,h:0},bt=t._hmpixcount?t._hmlumcount/t._hmpixcount:a(t._fullLayout.plot_bgcolor).getLuminance(),wt=!1,kt=\"xy\",Mt=!1,Tt=z(ht,bt,J,K,_t=\"M0,0H\"+Q+\"V\"+$+\"H0V0\"),At=D(ht,J,K)}(0,r,n)):\"pan\"===o&&(St.moveFn=Ft,St.doneFn=jt))),t._fullLayout._redrag=function(){var e=t._dragdata;e&&e.element===vt&&(j(t._fullLayout.dragmode)||(dt(),Vt([0,0,Q,$]),St.moveFn(e.dx,e.dy)))}},d.init(St);var It=[0,0,Q,$],zt=null,Dt=T.REDRAWDELAY,Rt=e.mainplot?t._fullLayout._plots[e.mainplot]:e;function Ft(e,r){if(!t._transitioningWithDuration){if(t._fullLayout._replotting=!0,\"ew\"===rt||\"ns\"===nt)return rt&&(O(X,e),Bt(\"x\")),nt&&(O(Z,r),Bt(\"y\")),Vt([rt?-e:0,nt?-r:0,Q,$]),Nt(),void t.emit(\"plotly_relayouting\",ut);if(tt.isSubplotConstrained&&rt&&nt){var n=\"w\"===rt==(\"n\"===nt)?1:-1,a=(e/Q+n*r/$)/2;e=a*Q,r=n*a*$}\"w\"===rt?e=l(X,0,e):\"e\"===rt?e=l(X,1,-e):rt||(e=0),\"n\"===nt?r=l(Z,1,r):\"s\"===nt?r=l(Z,0,-r):nt||(r=0);var i=\"w\"===rt?e:0,o=\"n\"===nt?r:0;if(tt.isSubplotConstrained){var s;if(!rt&&1===nt.length){for(s=0;s<X.length;s++)X[s].range=X[s]._r.slice(),k(X[s],1-r/$);i=(e=r*Q/$)/2}if(!nt&&1===rt.length){for(s=0;s<Z.length;s++)Z[s].range=Z[s]._r.slice(),k(Z[s],1-e/Q);o=(r=e*$/Q)/2}}Bt(\"x\"),Bt(\"y\"),Vt([i,o,Q-e,$-r]),Nt(),t.emit(\"plotly_relayouting\",ut)}function l(t,e,r){for(var n,a,i=1-e,o=0;o<t.length;o++){var s=t[o];if(!s.fixedrange){n=s,a=s._rl[i]+(s._rl[e]-s._rl[i])/I(r/s._length);var l=s.l2r(a);!1!==l&&void 0!==l&&(s.range[e]=l)}}return n._length*(n._rl[e]-a)/(n._rl[e]-n._rl[i])}}function Bt(t,e){for(var r=et.isSubplotConstrained?{x:Z,y:X}[t]:et[t+\"axes\"],n=et.isSubplotConstrained?{x:X,y:Z}[t]:[],a=0;a<r.length;a++){var i=r[a],o=i._id,s=et.xLinks[o]||et.yLinks[o],l=n[0]||Y[s]||W[s];l&&(e?(e[i._name+\".range[0]\"]=e[l._name+\".range[0]\"],e[i._name+\".range[1]\"]=e[l._name+\".range[1]\"]):i.range=l.range.slice())}}function Nt(){var e,r=[];function n(t){for(e=0;e<t.length;e++)t[e].fixedrange||r.push(t[e]._id)}for(it&&(n(X),n(tt.xaxes),n(et.xaxes)),ot&&(n(Z),n(tt.yaxes),n(et.yaxes)),ut={},e=0;e<r.length;e++){var a=r[e],i=x(t,a);f.drawOne(t,i,{skipTitle:!0}),ut[i._name+\".range[0]\"]=i.range[0],ut[i._name+\".range[1]\"]=i.range[1]}f.redrawComponents(t,r)}function jt(){Vt([0,0,Q,$]),s.syncOrAsync([y.previousPromises,function(){t._fullLayout._replotting=!1,o.call(\"_guiRelayout\",t,ut)}],t)}function Vt(e){var r,n,a,i,l=t._fullLayout,c=l._plots,h=l._subplots.cartesian;if(lt&&o.subplotsRegistry.splom.drag(t),st)for(r=0;r<h.length;r++)if(a=(n=c[h[r]]).xaxis,i=n.yaxis,n._scene){var f=s.simpleMap(a.range,a.r2l),p=s.simpleMap(i.range,i.r2l);n._scene.update({range:[f[0],p[0],f[1],p[1]]})}if((lt||st)&&(v(t),m(t)),ct){var d=e[2]/F._length,g=e[3]/G._length;for(r=0;r<h.length;r++){a=(n=c[h[r]]).xaxis,i=n.yaxis;var y,x,b,_,w=it&&!a.fixedrange&&Y[a._id],k=ot&&!i.fixedrange&&W[i._id];if(w?(y=d,b=E?e[0]:Ht(a,y)):et.xaHash[a._id]?(y=d,b=e[0]*a._length/F._length):et.yaHash[a._id]?(y=g,b=\"ns\"===nt?-e[1]*a._length/G._length:Ht(a,y,{n:\"top\",s:\"bottom\"}[nt])):b=qt(a,y=Ut(a,d,g)),k?(x=g,_=S?e[1]:Ht(i,x)):et.yaHash[i._id]?(x=g,_=e[1]*i._length/G._length):et.xaHash[i._id]?(x=d,_=\"ew\"===rt?-e[0]*i._length/F._length:Ht(i,x,{e:\"right\",w:\"left\"}[rt])):_=qt(i,x=Ut(i,d,g)),y||x){y||(y=1),x||(x=1);var T=a._offset-b/y,A=i._offset-_/x;n.clipRect.call(u.setTranslate,b,_).call(u.setScale,y,x),n.plot.call(u.setTranslate,T,A).call(u.setScale,1/y,1/x),y===n.xScaleFactor&&x===n.yScaleFactor||(u.setPointGroupScale(n.zoomScalePts,y,x),u.setTextPointsScale(n.zoomScaleTxt,y,x)),u.hideOutsideRangePoints(n.clipOnAxisFalseTraces,n),n.xScaleFactor=y,n.yScaleFactor=x}}}}function Ut(t,e,r){return t.fixedrange?0:it&&tt.xaHash[t._id]?e:ot&&(tt.isSubplotConstrained?tt.xaHash:tt.yaHash)[t._id]?r:0}function qt(t,e){return e?(t.range=t._r.slice(),k(t,e),Ht(t,e)):0}function Ht(t,e,r){return t._length*(1-e)*g[r||t.constraintoward||\"middle\"]}return S.length*E.length!=1&&q(vt,function(e){if(t._context._scrollZoom.cartesian||t._fullLayout._enablescrollzoom){if(Et(),t._transitioningWithDuration)return e.preventDefault(),void e.stopPropagation();dt(),clearTimeout(zt);var r=-e.deltaY;if(isFinite(r)||(r=e.wheelDelta/10),isFinite(r)){var n,a=Math.exp(-Math.min(Math.max(r,-20),20)/200),i=Rt.draglayer.select(\".nsewdrag\").node().getBoundingClientRect(),o=(e.clientX-i.left)/i.width,l=(i.bottom-e.clientY)/i.height;if(it){for(E||(o=.5),n=0;n<X.length;n++)c(X[n],o,a);Bt(\"x\"),It[2]*=a,It[0]+=It[2]*o*(1/a-1)}if(ot){for(S||(l=.5),n=0;n<Z.length;n++)c(Z[n],l,a);Bt(\"y\"),It[3]*=a,It[1]+=It[3]*(1-l)*(1/a-1)}Vt(It),Nt(),t.emit(\"plotly_relayouting\",ut),zt=setTimeout(function(){It=[0,0,Q,$],jt()},Dt),e.preventDefault()}else s.log(\"Did not find wheel motion attributes: \",e)}function c(t,e,r){if(!t.fixedrange){var n=s.simpleMap(t.range,t.r2l),a=n[0]+(n[1]-n[0])*e;t.range=n.map(function(e){return t.l2r(a+(e-a)*r)})}}}),vt},makeDragger:E,makeRectDragger:C,makeZoombox:z,makeCorners:D,updateZoombox:R,xyCorners:V,transitionZoombox:F,removeZoombox:B,showDoubleClickNotifier:N,attachWheelEventHandler:q}},{\"../../components/color\":594,\"../../components/dragelement\":612,\"../../components/drawing\":615,\"../../components/fx\":632,\"../../constants/alignment\":688,\"../../lib\":719,\"../../lib/clear_gl_canvases\":704,\"../../lib/setcursor\":739,\"../../lib/svg_text_utils\":743,\"../../plot_api/subroutines\":758,\"../../registry\":848,\"../plots\":828,\"./axes\":767,\"./axis_ids\":770,\"./constants\":773,\"./scale_zoom\":783,\"./select\":784,d3:164,\"has-passive-events\":412,tinycolor2:538}],776:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/fx\"),i=t(\"../../components/dragelement\"),o=t(\"../../lib/setcursor\"),s=t(\"./dragbox\").makeDragBox,l=t(\"./constants\").DRAGGERSIZE;r.initInteractions=function(t){var e=t._fullLayout;if(t._context.staticPlot)n.select(t).selectAll(\".drag\").remove();else if(e._has(\"cartesian\")||e._has(\"splom\")){Object.keys(e._plots||{}).sort(function(t,r){if((e._plots[t].mainplot&&!0)===(e._plots[r].mainplot&&!0)){var n=t.split(\"y\"),a=r.split(\"y\");return n[0]===a[0]?Number(n[1]||1)-Number(a[1]||1):Number(n[0]||1)-Number(a[0]||1)}return e._plots[t].mainplot?1:-1}).forEach(function(r){var n=e._plots[r],o=n.xaxis,c=n.yaxis;if(!n.mainplot){var u=s(t,n,o._offset,c._offset,o._length,c._length,\"ns\",\"ew\");u.onmousemove=function(e){t._fullLayout._rehover=function(){t._fullLayout._hoversubplot===r&&t._fullLayout._plots[r]&&a.hover(t,e,r)},a.hover(t,e,r),t._fullLayout._lasthover=u,t._fullLayout._hoversubplot=r},u.onmouseout=function(e){t._dragging||(t._fullLayout._hoversubplot=null,i.unhover(t,e))},t._context.showAxisDragHandles&&(s(t,n,o._offset-l,c._offset-l,l,l,\"n\",\"w\"),s(t,n,o._offset+o._length,c._offset-l,l,l,\"n\",\"e\"),s(t,n,o._offset-l,c._offset+c._length,l,l,\"s\",\"w\"),s(t,n,o._offset+o._length,c._offset+c._length,l,l,\"s\",\"e\"))}if(t._context.showAxisDragHandles){if(r===o._mainSubplot){var h=o._mainLinePosition;\"top\"===o.side&&(h-=l),s(t,n,o._offset+.1*o._length,h,.8*o._length,l,\"\",\"ew\"),s(t,n,o._offset,h,.1*o._length,l,\"\",\"w\"),s(t,n,o._offset+.9*o._length,h,.1*o._length,l,\"\",\"e\")}if(r===c._mainSubplot){var f=c._mainLinePosition;\"right\"!==c.side&&(f-=l),s(t,n,f,c._offset+.1*c._length,l,.8*c._length,\"ns\",\"\"),s(t,n,f,c._offset+.9*c._length,l,.1*c._length,\"s\",\"\"),s(t,n,f,c._offset,l,.1*c._length,\"n\",\"\")}}});var o=e._hoverlayer.node();o.onmousemove=function(r){r.target=t._fullLayout._lasthover,a.hover(t,r,e._hoversubplot)},o.onclick=function(e){e.target=t._fullLayout._lasthover,a.click(t,e)},o.onmousedown=function(e){t._fullLayout._lasthover.onmousedown(e)},r.updateFx(t)}},r.updateFx=function(t){var e=t._fullLayout,r=\"pan\"===e.dragmode?\"move\":\"crosshair\";o(e._draggers,r)}},{\"../../components/dragelement\":612,\"../../components/fx\":632,\"../../lib/setcursor\":739,\"./constants\":773,\"./dragbox\":775,d3:164}],777:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\");e.exports=function(t){return function(e,r){var i=e[t];if(Array.isArray(i))for(var o=n.subplotsRegistry.cartesian,s=o.idRegex,l=r._subplots,c=l.xaxis,u=l.yaxis,h=l.cartesian,f=r._has(\"cartesian\")||r._has(\"gl2d\"),p=0;p<i.length;p++){var d=i[p];if(a.isPlainObject(d)){var g=d.xref,v=d.yref,m=s.x.test(g),y=s.y.test(v);if(m||y){f||a.pushUnique(r._basePlotModules,o);var x=!1;m&&-1===c.indexOf(g)&&(c.push(g),x=!0),y&&-1===u.indexOf(v)&&(u.push(v),x=!0),x&&m&&y&&h.push(g+v)}}}}}},{\"../../lib\":719,\"../../registry\":848}],778:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../registry\"),i=t(\"../../lib\"),o=t(\"../plots\"),s=t(\"../../components/drawing\"),l=t(\"../get_data\").getModuleCalcData,c=t(\"./axis_ids\"),u=t(\"./constants\"),h=t(\"../../constants/xmlns_namespaces\"),f=i.ensureSingle;function p(t,e,r){return i.ensureSingle(t,e,r,function(t){t.datum(r)})}function d(t,e,r,i,o){for(var c,h,f,p=u.traceLayerClasses,d=t._fullLayout,g=d._modules,v=[],m=[],y=0;y<g.length;y++){var x=(c=g[y]).name,b=a.modules[x].categories;if(b.svg){var _=c.layerName||x+\"layer\",w=c.plot;f=(h=l(r,w))[0],r=h[1],f.length&&v.push({i:p.indexOf(_),className:_,plotMethod:w,cdModule:f}),b.zoomScale&&m.push(\".\"+_)}}v.sort(function(t,e){return t.i-e.i});var k=e.plot.selectAll(\"g.mlayer\").data(v,function(t){return t.className});if(k.enter().append(\"g\").attr(\"class\",function(t){return t.className}).classed(\"mlayer\",!0).classed(\"rangeplot\",e.isRangePlot),k.exit().remove(),k.order(),k.each(function(r){var a=n.select(this),l=r.className;r.plotMethod(t,e,r.cdModule,a,i,o),-1===u.clipOnAxisFalseQuery.indexOf(\".\"+l)&&s.setClipUrl(a,e.layerClipId,t)}),d._has(\"scattergl\")&&(c=a.getModule(\"scattergl\"),f=l(r,c)[0],c.plot(t,e,f)),!t._context.staticPlot&&(e._hasClipOnAxisFalse&&(e.clipOnAxisFalseTraces=e.plot.selectAll(u.clipOnAxisFalseQuery.join(\",\")).selectAll(\".trace\")),m.length)){var T=e.plot.selectAll(m.join(\",\")).selectAll(\".trace\");e.zoomScalePts=T.selectAll(\"path.point\"),e.zoomScaleTxt=T.selectAll(\".textpoint\")}}function g(t,e){var r=e.plotgroup,n=e.id,a=u.layerValue2layerClass[e.xaxis.layer],i=u.layerValue2layerClass[e.yaxis.layer],o=t._fullLayout._hasOnlyLargeSploms;if(e.mainplot){var s=e.mainplotinfo,l=s.plotgroup,h=n+\"-x\",d=n+\"-y\";e.gridlayer=s.gridlayer,e.zerolinelayer=s.zerolinelayer,f(s.overlinesBelow,\"path\",h),f(s.overlinesBelow,\"path\",d),f(s.overaxesBelow,\"g\",h),f(s.overaxesBelow,\"g\",d),e.plot=f(s.overplot,\"g\",n),f(s.overlinesAbove,\"path\",h),f(s.overlinesAbove,\"path\",d),f(s.overaxesAbove,\"g\",h),f(s.overaxesAbove,\"g\",d),e.xlines=l.select(\".overlines-\"+a).select(\".\"+h),e.ylines=l.select(\".overlines-\"+i).select(\".\"+d),e.xaxislayer=l.select(\".overaxes-\"+a).select(\".\"+h),e.yaxislayer=l.select(\".overaxes-\"+i).select(\".\"+d)}else if(o)e.xlines=f(r,\"path\",\"xlines-above\"),e.ylines=f(r,\"path\",\"ylines-above\"),e.xaxislayer=f(r,\"g\",\"xaxislayer-above\"),e.yaxislayer=f(r,\"g\",\"yaxislayer-above\");else{var g=f(r,\"g\",\"layer-subplot\");e.shapelayer=f(g,\"g\",\"shapelayer\"),e.imagelayer=f(g,\"g\",\"imagelayer\"),e.gridlayer=f(r,\"g\",\"gridlayer\"),e.zerolinelayer=f(r,\"g\",\"zerolinelayer\"),f(r,\"path\",\"xlines-below\"),f(r,\"path\",\"ylines-below\"),e.overlinesBelow=f(r,\"g\",\"overlines-below\"),f(r,\"g\",\"xaxislayer-below\"),f(r,\"g\",\"yaxislayer-below\"),e.overaxesBelow=f(r,\"g\",\"overaxes-below\"),e.plot=f(r,\"g\",\"plot\"),e.overplot=f(r,\"g\",\"overplot\"),e.xlines=f(r,\"path\",\"xlines-above\"),e.ylines=f(r,\"path\",\"ylines-above\"),e.overlinesAbove=f(r,\"g\",\"overlines-above\"),f(r,\"g\",\"xaxislayer-above\"),f(r,\"g\",\"yaxislayer-above\"),e.overaxesAbove=f(r,\"g\",\"overaxes-above\"),e.xlines=r.select(\".xlines-\"+a),e.ylines=r.select(\".ylines-\"+i),e.xaxislayer=r.select(\".xaxislayer-\"+a),e.yaxislayer=r.select(\".yaxislayer-\"+i)}o||(p(e.gridlayer,\"g\",e.xaxis._id),p(e.gridlayer,\"g\",e.yaxis._id),e.gridlayer.selectAll(\"g\").map(function(t){return t[0]}).sort(c.idSort)),e.xlines.style(\"fill\",\"none\").classed(\"crisp\",!0),e.ylines.style(\"fill\",\"none\").classed(\"crisp\",!0)}function v(t,e){if(t){var r={};for(var a in t.each(function(t){var a=t[0];n.select(this).remove(),m(a,e),r[a]=!0}),e._plots)for(var i=e._plots[a].overlays||[],o=0;o<i.length;o++){var s=i[o];r[s.id]&&s.plot.selectAll(\".trace\").remove()}}}function m(t,e){e._draggers.selectAll(\"g.\"+t).remove(),e._defs.select(\"#clip\"+e._uid+t+\"plot\").remove()}r.name=\"cartesian\",r.attr=[\"xaxis\",\"yaxis\"],r.idRoot=[\"x\",\"y\"],r.idRegex=u.idRegex,r.attrRegex=u.attrRegex,r.attributes=t(\"./attributes\"),r.layoutAttributes=t(\"./layout_attributes\"),r.supplyLayoutDefaults=t(\"./layout_defaults\"),r.transitionAxes=t(\"./transition_axes\"),r.finalizeSubplots=function(t,e){var r,n,a,o=e._subplots,s=o.xaxis,l=o.yaxis,h=o.cartesian,f=h.concat(o.gl2d||[]),p={},d={};for(r=0;r<f.length;r++){var g=f[r].split(\"y\");p[g[0]]=1,d[\"y\"+g[1]]=1}for(r=0;r<s.length;r++)p[n=s[r]]||(a=(t[c.id2name(n)]||{}).anchor,u.idRegex.y.test(a)||(a=\"y\"),h.push(n+a),f.push(n+a),d[a]||(d[a]=1,i.pushUnique(l,a)));for(r=0;r<l.length;r++)d[a=l[r]]||(n=(t[c.id2name(a)]||{}).anchor,u.idRegex.x.test(n)||(n=\"x\"),h.push(n+a),f.push(n+a),p[n]||(p[n]=1,i.pushUnique(s,n)));if(!f.length){for(var v in n=\"\",a=\"\",t){if(u.attrRegex.test(v))\"x\"===v.charAt(0)?(!n||+v.substr(5)<+n.substr(5))&&(n=v):(!a||+v.substr(5)<+a.substr(5))&&(a=v)}n=n?c.name2id(n):\"x\",a=a?c.name2id(a):\"y\",s.push(n),l.push(a),h.push(n+a)}},r.plot=function(t,e,r,n){var a,i=t._fullLayout,o=i._subplots.cartesian,s=t.calcdata;if(!Array.isArray(e))for(e=[],a=0;a<s.length;a++)e.push(a);for(a=0;a<o.length;a++){for(var l,c=o[a],u=i._plots[c],h=[],f=0;f<s.length;f++){var p=s[f],g=p[0].trace;g.xaxis+g.yaxis===c&&((-1!==e.indexOf(g.index)||g.carpet)&&(l&&l[0].trace.xaxis+l[0].trace.yaxis===c&&-1!==[\"tonextx\",\"tonexty\",\"tonext\"].indexOf(g.fill)&&-1===h.indexOf(l)&&h.push(l),h.push(p)),l=p)}d(t,u,h,r,n)}},r.clean=function(t,e,r,n){var a,i,o,s=n._plots||{},l=e._plots||{},u=n._subplots||{};if(n._hasOnlyLargeSploms&&!e._hasOnlyLargeSploms)for(o in s)(a=s[o]).plotgroup&&a.plotgroup.remove();var h=n._has&&n._has(\"gl\"),f=e._has&&e._has(\"gl\");if(h&&!f)for(o in s)(a=s[o])._scene&&a._scene.destroy();if(u.xaxis&&u.yaxis){var p=c.listIds({_fullLayout:n});for(i=0;i<p.length;i++){var d=p[i];e[c.id2name(d)]||n._infolayer.selectAll(\".g-\"+d+\"title\").remove()}}var g=n._has&&n._has(\"cartesian\"),y=e._has&&e._has(\"cartesian\");if(g&&!y)v(n._cartesianlayer.selectAll(\".subplot\"),n),n._defs.selectAll(\".axesclip\").remove(),delete n._axisConstraintGroups;else if(u.cartesian)for(i=0;i<u.cartesian.length;i++){var x=u.cartesian[i];if(!l[x]){var b=\".\"+x+\",.\"+x+\"-x,.\"+x+\"-y\";n._cartesianlayer.selectAll(b).remove(),m(x,n)}}},r.drawFramework=function(t){var e=t._fullLayout,r=function(t){var e,r,n,a,i,o,s=t._fullLayout,l=s._subplots.cartesian,c=l.length,u=[],h=[];for(e=0;e<c;e++){n=l[e],a=s._plots[n],i=a.xaxis,o=a.yaxis;var f=i._mainAxis,p=o._mainAxis,d=f._id+p._id,g=s._plots[d];a.overlays=[],d!==n&&g?(a.mainplot=d,a.mainplotinfo=g,h.push(n)):(a.mainplot=void 0,a.mainPlotinfo=void 0,u.push(n))}for(e=0;e<h.length;e++)n=h[e],(a=s._plots[n]).mainplotinfo.overlays.push(a);var v=u.concat(h),m=new Array(c);for(e=0;e<c;e++){n=v[e],a=s._plots[n],i=a.xaxis,o=a.yaxis;var y=[n,i.layer,o.layer,i.overlaying||\"\",o.overlaying||\"\"];for(r=0;r<a.overlays.length;r++)y.push(a.overlays[r].id);m[e]=y}return m}(t),a=e._cartesianlayer.selectAll(\".subplot\").data(r,String);a.enter().append(\"g\").attr(\"class\",function(t){return\"subplot \"+t[0]}),a.order(),a.exit().call(v,e),a.each(function(r){var a=r[0],i=e._plots[a];i.plotgroup=n.select(this),g(t,i),i.draglayer=f(e._draggers,\"g\",a)})},r.rangePlot=function(t,e,r){g(t,e),d(t,e,r),o.style(t)},r.toSVG=function(t){var e=t._fullLayout._glimages,r=n.select(t).selectAll(\".svg-container\");r.filter(function(t,e){return e===r.size()-1}).selectAll(\".gl-canvas-context, .gl-canvas-focus\").each(function(){var t=this.toDataURL(\"image/png\");e.append(\"svg:image\").attr({xmlns:h.svg,\"xlink:href\":t,preserveAspectRatio:\"none\",x:0,y:0,width:this.width,height:this.height})})},r.updateFx=t(\"./graph_interact\").updateFx},{\"../../components/drawing\":615,\"../../constants/xmlns_namespaces\":696,\"../../lib\":719,\"../../registry\":848,\"../get_data\":802,\"../plots\":828,\"./attributes\":765,\"./axis_ids\":770,\"./constants\":773,\"./graph_interact\":776,\"./layout_attributes\":779,\"./layout_defaults\":780,\"./transition_axes\":789,d3:164}],779:[function(t,e,r){\"use strict\";var n=t(\"../font_attributes\"),a=t(\"../../components/color/attributes\"),i=t(\"../../components/drawing/attributes\").dash,o=t(\"../../lib/extend\").extendFlat,s=t(\"../../plot_api/plot_template\").templatedArray,l=(t(\"../../constants/docs\").FORMAT_LINK,t(\"../../constants/docs\").DATE_FORMAT_LINK,t(\"./constants\"));e.exports={visible:{valType:\"boolean\",editType:\"plot\"},color:{valType:\"color\",dflt:a.defaultLine,editType:\"ticks\"},title:{text:{valType:\"string\",editType:\"ticks\"},font:n({editType:\"ticks\"}),editType:\"ticks\"},type:{valType:\"enumerated\",values:[\"-\",\"linear\",\"log\",\"date\",\"category\",\"multicategory\"],dflt:\"-\",editType:\"calc\",_noTemplating:!0},autorange:{valType:\"enumerated\",values:[!0,!1,\"reversed\"],dflt:!0,editType:\"axrange\",impliedEdits:{\"range[0]\":void 0,\"range[1]\":void 0}},rangemode:{valType:\"enumerated\",values:[\"normal\",\"tozero\",\"nonnegative\"],dflt:\"normal\",editType:\"plot\"},range:{valType:\"info_array\",items:[{valType:\"any\",editType:\"axrange\",impliedEdits:{\"^autorange\":!1},anim:!0},{valType:\"any\",editType:\"axrange\",impliedEdits:{\"^autorange\":!1},anim:!0}],editType:\"axrange\",impliedEdits:{autorange:!1},anim:!0},fixedrange:{valType:\"boolean\",dflt:!1,editType:\"calc\"},scaleanchor:{valType:\"enumerated\",values:[l.idRegex.x.toString(),l.idRegex.y.toString()],editType:\"plot\"},scaleratio:{valType:\"number\",min:0,dflt:1,editType:\"plot\"},constrain:{valType:\"enumerated\",values:[\"range\",\"domain\"],dflt:\"range\",editType:\"plot\"},constraintoward:{valType:\"enumerated\",values:[\"left\",\"center\",\"right\",\"top\",\"middle\",\"bottom\"],editType:\"plot\"},matches:{valType:\"enumerated\",values:[l.idRegex.x.toString(),l.idRegex.y.toString()],editType:\"calc\"},tickmode:{valType:\"enumerated\",values:[\"auto\",\"linear\",\"array\"],editType:\"ticks\",impliedEdits:{tick0:void 0,dtick:void 0}},nticks:{valType:\"integer\",min:0,dflt:0,editType:\"ticks\"},tick0:{valType:\"any\",editType:\"ticks\",impliedEdits:{tickmode:\"linear\"}},dtick:{valType:\"any\",editType:\"ticks\",impliedEdits:{tickmode:\"linear\"}},tickvals:{valType:\"data_array\",editType:\"ticks\"},ticktext:{valType:\"data_array\",editType:\"ticks\"},ticks:{valType:\"enumerated\",values:[\"outside\",\"inside\",\"\"],editType:\"ticks\"},tickson:{valType:\"enumerated\",values:[\"labels\",\"boundaries\"],dflt:\"labels\",editType:\"ticks\"},mirror:{valType:\"enumerated\",values:[!0,\"ticks\",!1,\"all\",\"allticks\"],dflt:!1,editType:\"ticks+layoutstyle\"},ticklen:{valType:\"number\",min:0,dflt:5,editType:\"ticks\"},tickwidth:{valType:\"number\",min:0,dflt:1,editType:\"ticks\"},tickcolor:{valType:\"color\",dflt:a.defaultLine,editType:\"ticks\"},showticklabels:{valType:\"boolean\",dflt:!0,editType:\"ticks\"},automargin:{valType:\"boolean\",dflt:!1,editType:\"ticks\"},showspikes:{valType:\"boolean\",dflt:!1,editType:\"modebar\"},spikecolor:{valType:\"color\",dflt:null,editType:\"none\"},spikethickness:{valType:\"number\",dflt:3,editType:\"none\"},spikedash:o({},i,{dflt:\"dash\",editType:\"none\"}),spikemode:{valType:\"flaglist\",flags:[\"toaxis\",\"across\",\"marker\"],dflt:\"toaxis\",editType:\"none\"},spikesnap:{valType:\"enumerated\",values:[\"data\",\"cursor\"],dflt:\"data\",editType:\"none\"},tickfont:n({editType:\"ticks\"}),tickangle:{valType:\"angle\",dflt:\"auto\",editType:\"ticks\"},tickprefix:{valType:\"string\",dflt:\"\",editType:\"ticks\"},showtickprefix:{valType:\"enumerated\",values:[\"all\",\"first\",\"last\",\"none\"],dflt:\"all\",editType:\"ticks\"},ticksuffix:{valType:\"string\",dflt:\"\",editType:\"ticks\"},showticksuffix:{valType:\"enumerated\",values:[\"all\",\"first\",\"last\",\"none\"],dflt:\"all\",editType:\"ticks\"},showexponent:{valType:\"enumerated\",values:[\"all\",\"first\",\"last\",\"none\"],dflt:\"all\",editType:\"ticks\"},exponentformat:{valType:\"enumerated\",values:[\"none\",\"e\",\"E\",\"power\",\"SI\",\"B\"],dflt:\"B\",editType:\"ticks\"},separatethousands:{valType:\"boolean\",dflt:!1,editType:\"ticks\"},tickformat:{valType:\"string\",dflt:\"\",editType:\"ticks\"},tickformatstops:s(\"tickformatstop\",{enabled:{valType:\"boolean\",dflt:!0,editType:\"ticks\"},dtickrange:{valType:\"info_array\",items:[{valType:\"any\",editType:\"ticks\"},{valType:\"any\",editType:\"ticks\"}],editType:\"ticks\"},value:{valType:\"string\",dflt:\"\",editType:\"ticks\"},editType:\"ticks\"}),hoverformat:{valType:\"string\",dflt:\"\",editType:\"none\"},showline:{valType:\"boolean\",dflt:!1,editType:\"ticks+layoutstyle\"},linecolor:{valType:\"color\",dflt:a.defaultLine,editType:\"layoutstyle\"},linewidth:{valType:\"number\",min:0,dflt:1,editType:\"ticks+layoutstyle\"},showgrid:{valType:\"boolean\",editType:\"ticks\"},gridcolor:{valType:\"color\",dflt:a.lightLine,editType:\"ticks\"},gridwidth:{valType:\"number\",min:0,dflt:1,editType:\"ticks\"},zeroline:{valType:\"boolean\",editType:\"ticks\"},zerolinecolor:{valType:\"color\",dflt:a.defaultLine,editType:\"ticks\"},zerolinewidth:{valType:\"number\",dflt:1,editType:\"ticks\"},showdividers:{valType:\"boolean\",dflt:!0,editType:\"ticks\"},dividercolor:{valType:\"color\",dflt:a.defaultLine,editType:\"ticks\"},dividerwidth:{valType:\"number\",dflt:1,editType:\"ticks\"},anchor:{valType:\"enumerated\",values:[\"free\",l.idRegex.x.toString(),l.idRegex.y.toString()],editType:\"plot\"},side:{valType:\"enumerated\",values:[\"top\",\"bottom\",\"left\",\"right\"],editType:\"plot\"},overlaying:{valType:\"enumerated\",values:[\"free\",l.idRegex.x.toString(),l.idRegex.y.toString()],editType:\"plot\"},layer:{valType:\"enumerated\",values:[\"above traces\",\"below traces\"],dflt:\"above traces\",editType:\"plot\"},domain:{valType:\"info_array\",items:[{valType:\"number\",min:0,max:1,editType:\"plot\"},{valType:\"number\",min:0,max:1,editType:\"plot\"}],dflt:[0,1],editType:\"plot\"},position:{valType:\"number\",min:0,max:1,dflt:0,editType:\"plot\"},categoryorder:{valType:\"enumerated\",values:[\"trace\",\"category ascending\",\"category descending\",\"array\",\"total ascending\",\"total descending\",\"min ascending\",\"min descending\",\"max ascending\",\"max descending\",\"sum ascending\",\"sum descending\",\"mean ascending\",\"mean descending\",\"median ascending\",\"median descending\"],dflt:\"trace\",editType:\"calc\"},categoryarray:{valType:\"data_array\",editType:\"calc\"},uirevision:{valType:\"any\",editType:\"none\"},editType:\"calc\",_deprecated:{autotick:{valType:\"boolean\",editType:\"ticks\"},title:{valType:\"string\",editType:\"ticks\"},titlefont:n({editType:\"ticks\"})}}},{\"../../components/color/attributes\":593,\"../../components/drawing/attributes\":614,\"../../constants/docs\":690,\"../../lib/extend\":710,\"../../plot_api/plot_template\":757,\"../font_attributes\":793,\"./constants\":773}],780:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/color\"),i=t(\"../../plot_api/plot_template\"),o=t(\"../layout_attributes\"),s=t(\"./layout_attributes\"),l=t(\"./type_defaults\"),c=t(\"./axis_defaults\"),u=t(\"./constraints\").handleConstraintDefaults,h=t(\"./position_defaults\"),f=t(\"./axis_ids\"),p=f.id2name,d=f.name2id,g=t(\"../../registry\"),v=g.traceIs,m=g.getComponentMethod;function y(t,e,r){Array.isArray(t[e])?t[e].push(r):t[e]=[r]}e.exports=function(t,e,r){var f,g,x={},b={},_={},w={},k={},T={},A={},M={},S={};for(f=0;f<r.length;f++){var E=r[f];if(v(E,\"cartesian\")||v(E,\"gl2d\")){var C,L;if(E.xaxis)y(x,C=p(E.xaxis),E);else if(E.xaxes)for(g=0;g<E.xaxes.length;g++)y(x,p(E.xaxes[g]),E);if(E.yaxis)y(x,L=p(E.yaxis),E);else if(E.yaxes)for(g=0;g<E.yaxes.length;g++)y(x,p(E.yaxes[g]),E);if(\"funnel\"===E.type?\"h\"===E.orientation?(C&&(b[C]=!0),L&&(A[L]=!0)):L&&(_[L]=!0):(L&&(k[L]=!0,T[L]=!0),v(E,\"carpet\")&&(\"carpet\"!==E.type||E._cheater)||C&&(w[C]=!0)),\"carpet\"===E.type&&E._cheater&&C&&(b[C]=!0),v(E,\"2dMap\")&&(M[C]=!0,M[L]=!0),v(E,\"oriented\"))S[\"h\"===E.orientation?L:C]=!0}}var P=e._subplots,O=P.xaxis,I=P.yaxis,z=n.simpleMap(O,p),D=n.simpleMap(I,p),R=z.concat(D),F=a.background;O.length&&I.length&&(F=n.coerce(t,e,o,\"plot_bgcolor\"));var B,N,j,V,U=a.combine(F,e.paper_bgcolor);function q(t,e){return n.coerce(j,V,s,t,e)}function H(t,e){return n.coerce2(j,V,s,t,e)}function G(t){return\"x\"===t?I:O}var Y={x:G(\"x\"),y:G(\"y\")},W=Y.x.concat(Y.y);function X(e,r){for(var n=\"x\"===e?z:D,a=[],i=0;i<n.length;i++){var o=n[i];o===r||(t[o]||{}).overlaying||a.push(d(o))}return a}for(f=0;f<R.length;f++){N=(B=R[f]).charAt(0),n.isPlainObject(t[B])||(t[B]={}),j=t[B],V=i.newContainer(e,B,N+\"axis\");var Z=x[B]||[];V._traceIndices=Z.map(function(t){return t._expandedIndex}),V._annIndices=[],V._shapeIndices=[],V._imgIndices=[],V._subplotsWith=[],V._counterAxes=[],V._name=V._attr=B;var J=V._id=d(B),K=X(N,B),Q=\"x\"===N&&!w[B]&&b[B]||\"y\"===N&&!k[B]&&_[B],$=\"y\"===N&&!T[B]&&A[B],tt={letter:N,font:e.font,outerTicks:M[B],showGrid:!S[B],data:Z,bgColor:U,calendar:e.calendar,automargin:!0,visibleDflt:Q,reverseDflt:$,splomStash:((e._splomAxes||{})[N]||{})[J]};q(\"uirevision\",e.uirevision),l(j,V,q,tt),c(j,V,q,tt,e);var et=H(\"spikecolor\"),rt=H(\"spikethickness\"),nt=H(\"spikedash\"),at=H(\"spikemode\"),it=H(\"spikesnap\");q(\"showspikes\",!!(et||rt||nt||at||it))||(delete V.spikecolor,delete V.spikethickness,delete V.spikedash,delete V.spikemode,delete V.spikesnap),h(j,V,q,{letter:N,counterAxes:Y[N],overlayableAxes:K,grid:e.grid}),V._input=j}var ot=m(\"rangeslider\",\"handleDefaults\"),st=m(\"rangeselector\",\"handleDefaults\");for(f=0;f<z.length;f++)B=z[f],j=t[B],V=e[B],ot(t,e,B),\"date\"===V.type&&st(j,V,e,D,V.calendar),q(\"fixedrange\");for(f=0;f<D.length;f++){B=D[f],j=t[B],V=e[B];var lt=e[p(V.anchor)];q(\"fixedrange\",m(\"rangeslider\",\"isVisible\")(lt))}var ct=e._axisConstraintGroups=[],ut=e._axisMatchGroups=[];for(f=0;f<R.length;f++)N=(B=R[f]).charAt(0),j=t[B],V=e[B],u(j,V,q,W,e);for(f=0;f<ut.length;f++){var ht,ft=ut[f],pt=null,dt=null;for(ht in ft)(V=e[p(ht)]).matches||(pt=V.range,dt=V.autorange);if(null===pt||null===dt)for(ht in ft){pt=(V=e[p(ht)]).range,dt=V.autorange;break}for(ht in ft)(V=e[p(ht)]).matches&&(V.range=pt.slice(),V.autorange=dt),V._matchGroup=ft;if(ct.length)for(ht in ft)for(g=0;g<ct.length;g++){var gt=ct[g];for(var vt in gt)ht===vt&&(n.warn(\"Axis \"+vt+\" is set with both a *scaleanchor* and *matches* constraint; ignoring the scale constraint.\"),delete gt[vt],Object.keys(gt).length<2&&ct.splice(g,1))}}}},{\"../../components/color\":594,\"../../lib\":719,\"../../plot_api/plot_template\":757,\"../../registry\":848,\"../layout_attributes\":819,\"./axis_defaults\":769,\"./axis_ids\":770,\"./constraints\":774,\"./layout_attributes\":779,\"./position_defaults\":782,\"./type_defaults\":790}],781:[function(t,e,r){\"use strict\";var n=t(\"tinycolor2\").mix,a=t(\"../../components/color/attributes\").lightFraction,i=t(\"../../lib\");e.exports=function(t,e,r,o){var s=(o=o||{}).dfltColor;function l(r,n){return i.coerce2(t,e,o.attributes,r,n)}var c=l(\"linecolor\",s),u=l(\"linewidth\");r(\"showline\",o.showLine||!!c||!!u)||(delete e.linecolor,delete e.linewidth);var h=l(\"gridcolor\",n(s,o.bgColor,o.blend||a).toRgbString()),f=l(\"gridwidth\");if(r(\"showgrid\",o.showGrid||!!h||!!f)||(delete e.gridcolor,delete e.gridwidth),!o.noZeroLine){var p=l(\"zerolinecolor\",s),d=l(\"zerolinewidth\");r(\"zeroline\",o.showGrid||!!p||!!d)||(delete e.zerolinecolor,delete e.zerolinewidth)}}},{\"../../components/color/attributes\":593,\"../../lib\":719,tinycolor2:538}],782:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\");e.exports=function(t,e,r,i){var o,s,l,c,u=i.counterAxes||[],h=i.overlayableAxes||[],f=i.letter,p=i.grid;p&&(s=p._domains[f][p._axisMap[e._id]],o=p._anchors[e._id],s&&(l=p[f+\"side\"].split(\" \")[0],c=p.domain[f][\"right\"===l||\"top\"===l?1:0])),s=s||[0,1],o=o||(n(t.position)?\"free\":u[0]||\"free\"),l=l||(\"x\"===f?\"bottom\":\"left\"),c=c||0,\"free\"===a.coerce(t,e,{anchor:{valType:\"enumerated\",values:[\"free\"].concat(u),dflt:o}},\"anchor\")&&r(\"position\",c),a.coerce(t,e,{side:{valType:\"enumerated\",values:\"x\"===f?[\"bottom\",\"top\"]:[\"left\",\"right\"],dflt:l}},\"side\");var d=!1;if(h.length&&(d=a.coerce(t,e,{overlaying:{valType:\"enumerated\",values:[!1].concat(h),dflt:!1}},\"overlaying\")),!d){var g=r(\"domain\",s);g[0]>g[1]-1/4096&&(e.domain=s),a.noneOrAll(t.domain,e.domain,s)}return r(\"layer\"),e}},{\"../../lib\":719,\"fast-isnumeric\":226}],783:[function(t,e,r){\"use strict\";var n=t(\"../../constants/alignment\").FROM_BL;e.exports=function(t,e,r){void 0===r&&(r=n[t.constraintoward||\"center\"]);var a=[t.r2l(t.range[0]),t.r2l(t.range[1])],i=a[0]+(a[1]-a[0])*r;t.range=t._input.range=[t.l2r(i+(a[0]-i)*e),t.l2r(i+(a[1]-i)*e)]}},{\"../../constants/alignment\":688}],784:[function(t,e,r){\"use strict\";var n=t(\"polybooljs\"),a=t(\"../../registry\"),i=t(\"../../components/color\"),o=t(\"../../components/fx\"),s=t(\"../../lib\"),l=t(\"../../lib/polygon\"),c=t(\"../../lib/throttle\"),u=t(\"../../components/fx/helpers\").makeEventData,h=t(\"./axis_ids\").getFromId,f=t(\"../../lib/clear_gl_canvases\"),p=t(\"../../plot_api/subroutines\").redrawReglTraces,d=t(\"./constants\"),g=d.MINSELECT,v=l.filter,m=l.tester;function y(t){return t._id}function x(t,e,r,n,a,i,o){var s,l,c,u,h,f,p,d,g,v=e._hoverdata,m=e._fullLayout.clickmode.indexOf(\"event\")>-1,y=[];if(function(t){return t&&Array.isArray(t)&&!0!==t[0].hoverOnBox}(v)){k(t,e,i);var x=function(t,e){var r,n,a=t[0],i=-1,o=[];for(n=0;n<e.length;n++)if(r=e[n],a.fullData._expandedIndex===r.cd[0].trace._expandedIndex){if(!0===a.hoverOnBox)break;void 0!==a.pointNumber?i=a.pointNumber:void 0!==a.binNumber&&(i=a.binNumber,o=a.pointNumbers);break}return{pointNumber:i,pointNumbers:o,searchInfo:r}}(v,s=A(e,r,n,a));if(x.pointNumbers.length>0?function(t,e){var r,n,a,i=[];for(a=0;a<t.length;a++)(r=t[a]).cd[0].trace.selectedpoints&&r.cd[0].trace.selectedpoints.length>0&&i.push(r);if(1===i.length&&i[0]===e.searchInfo&&(n=e.searchInfo.cd[0].trace).selectedpoints.length===e.pointNumbers.length){for(a=0;a<e.pointNumbers.length;a++)if(n.selectedpoints.indexOf(e.pointNumbers[a])<0)return!1;return!0}return!1}(s,x):function(t){var e,r,n,a=0;for(n=0;n<t.length;n++)if(e=t[n],(r=e.cd[0].trace).selectedpoints){if(r.selectedpoints.length>1)return!1;if((a+=r.selectedpoints.length)>1)return!1}return 1===a}(s)&&(f=S(x))){for(o&&o.remove(),g=0;g<s.length;g++)(l=s[g])._module.selectPoints(l,!1);E(e,s),T(i),m&&e.emit(\"plotly_deselect\",null)}else{for(p=t.shiftKey&&(void 0!==f?f:S(x)),c=function(t,e,r){return{pointNumber:t,searchInfo:e,subtract:r}}(x.pointNumber,x.searchInfo,p),u=w(i.selectionDefs.concat([c])),g=0;g<s.length;g++)if(h=C(s[g]._module.selectPoints(s[g],u),s[g]),y.length)for(var b=0;b<h.length;b++)y.push(h[b]);else y=h;E(e,s,d={points:y}),c&&i&&i.selectionDefs.push(c),o&&M(i.mergedPolygons,o),m&&e.emit(\"plotly_selected\",d)}}}function b(t){return\"pointNumber\"in t&&\"searchInfo\"in t}function _(t){return{xmin:0,xmax:0,ymin:0,ymax:0,pts:[],contains:function(e,r,n,a){var i=t.searchInfo.cd[0].trace._expandedIndex;return a.cd[0].trace._expandedIndex===i&&n===t.pointNumber},isRect:!1,degenerate:!1,subtract:t.subtract}}function w(t){for(var e=[],r=b(t[0])?0:t[0][0][0],n=r,a=b(t[0])?0:t[0][0][1],i=a,o=0;o<t.length;o++)if(b(t[o]))e.push(_(t[o]));else{var s=l.tester(t[o]);s.subtract=t[o].subtract,e.push(s),r=Math.min(r,s.xmin),n=Math.max(n,s.xmax),a=Math.min(a,s.ymin),i=Math.max(i,s.ymax)}return{xmin:r,xmax:n,ymin:a,ymax:i,pts:[],contains:function(t,r,n,a){for(var i=!1,o=0;o<e.length;o++)e[o].contains(t,r,n,a)&&(i=!1===e[o].subtract);return i},isRect:!1,degenerate:!1}}function k(t,e,r){var n=e._fullLayout,a=r.plotinfo,i=n._lastSelectedSubplot&&n._lastSelectedSubplot===a.id,o=t.shiftKey||t.altKey;i&&o&&a.selection&&a.selection.selectionDefs&&!r.selectionDefs?(r.selectionDefs=a.selection.selectionDefs,r.mergedPolygons=a.selection.mergedPolygons):o&&a.selection||T(r),i||(L(e),n._lastSelectedSubplot=a.id)}function T(t){var e=t.plotinfo;e.selection={},e.selection.selectionDefs=t.selectionDefs=[],e.selection.mergedPolygons=t.mergedPolygons=[]}function A(t,e,r,n){var a,i,o,s=[],l=e.map(y),c=r.map(y);for(o=0;o<t.calcdata.length;o++)if(!0===(i=(a=t.calcdata[o])[0].trace).visible&&i._module&&i._module.selectPoints)if(!n||i.subplot!==n&&i.geo!==n)if(\"splom\"===i.type&&i._xaxes[l[0]]&&i._yaxes[c[0]]){var u=p(i._module,a,e[0],r[0]);u.scene=t._fullLayout._splomScenes[i.uid],s.push(u)}else if(\"sankey\"===i.type){var f=p(i._module,a,e[0],r[0]);s.push(f)}else{if(-1===l.indexOf(i.xaxis))continue;if(-1===c.indexOf(i.yaxis))continue;s.push(p(i._module,a,h(t,i.xaxis),h(t,i.yaxis)))}else s.push(p(i._module,a,e[0],r[0]));return s;function p(t,e,r,n){return{_module:t,cd:e,xaxis:r,yaxis:n}}}function M(t,e){var r,n,a=[];for(r=0;r<t.length;r++){var i=t[r];a.push(i.join(\"L\")+\"L\"+i[0])}n=t.length>0?\"M\"+a.join(\"M\")+\"Z\":\"M0,0Z\",e.attr(\"d\",n)}function S(t){var e=t.searchInfo.cd[0].trace,r=t.pointNumber,n=t.pointNumbers,a=n.length>0?n[0]:r;return!!e.selectedpoints&&e.selectedpoints.indexOf(a)>-1}function E(t,e,r){var n,i,o,s;for(n=0;n<e.length;n++){var l=e[n].cd[0].trace._fullInput,c=t._fullLayout._tracePreGUI[l.uid]||{};void 0===c.selectedpoints&&(c.selectedpoints=l._input.selectedpoints||null)}if(r){var u=r.points||[];for(n=0;n<e.length;n++)(s=e[n].cd[0].trace)._input.selectedpoints=s._fullInput.selectedpoints=[],s._fullInput!==s&&(s.selectedpoints=[]);for(n=0;n<u.length;n++){var h=u[n],d=h.data,g=h.fullData;h.pointIndices?([].push.apply(d.selectedpoints,h.pointIndices),s._fullInput!==s&&[].push.apply(g.selectedpoints,h.pointIndices)):(d.selectedpoints.push(h.pointIndex),s._fullInput!==s&&g.selectedpoints.push(h.pointIndex))}}else for(n=0;n<e.length;n++)delete(s=e[n].cd[0].trace).selectedpoints,delete s._input.selectedpoints,s._fullInput!==s&&delete s._fullInput.selectedpoints;var v=!1;for(n=0;n<e.length;n++){s=(o=(i=e[n]).cd)[0].trace,a.traceIs(s,\"regl\")&&(v=!0);var m=i._module,y=m.styleOnSelect||m.style;y&&(y(t,o,o[0].node3),o[0].nodeRangePlot3&&y(t,o,o[0].nodeRangePlot3))}v&&(f(t),p(t))}function C(t,e){if(Array.isArray(t))for(var r=e.cd,n=e.cd[0].trace,a=0;a<t.length;a++)t[a]=u(t[a],n,r);return t}function L(t){var e=(t._fullLayout||{})._zoomlayer;e&&e.selectAll(\".select-outline\").remove()}e.exports={prepSelect:function(t,e,r,a,l){var u,h,f,p,y,b,_,S=a.gd,L=S._fullLayout,P=L._zoomlayer,O=a.element.getBoundingClientRect(),I=a.plotinfo,z=I.xaxis._offset,D=I.yaxis._offset,R=e-O.left,F=r-O.top,B=R,N=F,j=\"M\"+R+\",\"+F,V=a.xaxes[0]._length,U=a.yaxes[0]._length,q=a.xaxes.concat(a.yaxes),H=t.altKey;k(t,S,a),\"lasso\"===l&&(u=v([[R,F]],d.BENDPX));var G=P.selectAll(\"path.select-outline-\"+I.id).data([1,2]);G.enter().append(\"path\").attr(\"class\",function(t){return\"select-outline select-outline-\"+t+\" select-outline-\"+I.id}).attr(\"transform\",\"translate(\"+z+\", \"+D+\")\").attr(\"d\",j+\"Z\");var Y,W=P.append(\"path\").attr(\"class\",\"zoombox-corners\").style({fill:i.background,stroke:i.defaultLine,\"stroke-width\":1}).attr(\"transform\",\"translate(\"+z+\", \"+D+\")\").attr(\"d\",\"M0,0Z\"),X=L._uid+d.SELECTID,Z=[],J=A(S,a.xaxes,a.yaxes,a.subplot);function K(t,e){return\"log\"===t.type?t.p2d(e):t.p2r(e)}function Q(t){var e=\"y\"===t._id.charAt(0)?1:0;return function(r){return K(t,r[e])}}function $(t,e){return t-e}Y=I.fillRangeItems?I.fillRangeItems:\"select\"===l?function(t,e){var r=t.range={};for(y=0;y<q.length;y++){var n=q[y],a=n._id.charAt(0);r[n._id]=[K(n,e[a+\"min\"]),K(n,e[a+\"max\"])].sort($)}}:function(t,e,r){var n=t.lassoPoints={};for(y=0;y<q.length;y++){var a=q[y];n[a._id]=r.filtered.map(Q(a))}},a.moveFn=function(t,e){B=Math.max(0,Math.min(V,t+R)),N=Math.max(0,Math.min(U,e+F));var r=Math.abs(B-R),i=Math.abs(N-F);if(\"select\"===l){var o=L.selectdirection;\"h\"===(o=\"any\"===L.selectdirection?i<Math.min(.6*r,g)?\"h\":r<Math.min(.6*i,g)?\"v\":\"d\":L.selectdirection)?((p=[[R,0],[R,U],[B,U],[B,0]]).xmin=Math.min(R,B),p.xmax=Math.max(R,B),p.ymin=Math.min(0,U),p.ymax=Math.max(0,U),W.attr(\"d\",\"M\"+p.xmin+\",\"+(F-g)+\"h-4v\"+2*g+\"h4ZM\"+(p.xmax-1)+\",\"+(F-g)+\"h4v\"+2*g+\"h-4Z\")):\"v\"===o?((p=[[0,F],[0,N],[V,N],[V,F]]).xmin=Math.min(0,V),p.xmax=Math.max(0,V),p.ymin=Math.min(F,N),p.ymax=Math.max(F,N),W.attr(\"d\",\"M\"+(R-g)+\",\"+p.ymin+\"v-4h\"+2*g+\"v4ZM\"+(R-g)+\",\"+(p.ymax-1)+\"v4h\"+2*g+\"v-4Z\")):\"d\"===o&&((p=[[R,F],[R,N],[B,N],[B,F]]).xmin=Math.min(R,B),p.xmax=Math.max(R,B),p.ymin=Math.min(F,N),p.ymax=Math.max(F,N),W.attr(\"d\",\"M0,0Z\"))}else\"lasso\"===l&&(u.addPt([B,N]),p=u.filtered);a.selectionDefs&&a.selectionDefs.length?(f=function(t,e,r){return r?n.difference({regions:t,inverted:!1},{regions:[e],inverted:!1}).regions:n.union({regions:t,inverted:!1},{regions:[e],inverted:!1}).regions}(a.mergedPolygons,p,H),p.subtract=H,h=w(a.selectionDefs.concat([p]))):(f=[p],h=m(p)),M(f,G),c.throttle(X,d.SELECTDELAY,function(){var t;Z=[];var e,r=[];for(y=0;y<J.length;y++)if(e=(b=J[y])._module.selectPoints(b,h),r.push(e),t=C(e,b),Z.length)for(var n=0;n<t.length;n++)Z.push(t[n]);else Z=t;E(S,J,_={points:Z}),Y(_,p,u),a.gd.emit(\"plotly_selecting\",_)})},a.clickFn=function(t,e){var r=L.clickmode;W.remove(),c.done(X).then(function(){if(c.clear(X),2===t){for(G.remove(),y=0;y<J.length;y++)(b=J[y])._module.selectPoints(b,!1);E(S,J),T(a),S.emit(\"plotly_deselect\",null)}else r.indexOf(\"select\")>-1&&x(e,S,a.xaxes,a.yaxes,a.subplot,a,G),\"event\"===r&&S.emit(\"plotly_selected\",void 0);o.click(S,e)}).catch(s.error)},a.doneFn=function(){W.remove(),c.done(X).then(function(){c.clear(X),a.gd.emit(\"plotly_selected\",_),p&&a.selectionDefs&&(p.subtract=H,a.selectionDefs.push(p),a.mergedPolygons.length=0,[].push.apply(a.mergedPolygons,f)),a.doneFnCompleted&&a.doneFnCompleted(Z)}).catch(s.error)}},clearSelect:L,selectOnClick:x}},{\"../../components/color\":594,\"../../components/fx\":632,\"../../components/fx/helpers\":629,\"../../lib\":719,\"../../lib/clear_gl_canvases\":704,\"../../lib/polygon\":731,\"../../lib/throttle\":744,\"../../plot_api/subroutines\":758,\"../../registry\":848,\"./axis_ids\":770,\"./constants\":773,polybooljs:474}],785:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"fast-isnumeric\"),i=t(\"../../lib\"),o=i.cleanNumber,s=i.ms2DateTime,l=i.dateTime2ms,c=i.ensureNumber,u=i.isArrayOrTypedArray,h=t(\"../../constants/numerical\"),f=h.FP_SAFE,p=h.BADNUM,d=h.LOG_CLIP,g=t(\"./constants\"),v=t(\"./axis_ids\");function m(t){return Math.pow(10,t)}function y(t){return null!=t}e.exports=function(t,e){e=e||{};var r=t._id||\"x\",h=r.charAt(0);function x(e,r){if(e>0)return Math.log(e)/Math.LN10;if(e<=0&&r&&t.range&&2===t.range.length){var n=t.range[0],a=t.range[1];return.5*(n+a-2*d*Math.abs(n-a))}return p}function b(e,r,n){var o=l(e,n||t.calendar);if(o===p){if(!a(e))return p;e=+e;var s=Math.floor(10*i.mod(e+.05,1)),c=Math.round(e-s/10);o=l(new Date(c))+s/10}return o}function _(e,r,n){return s(e,r,n||t.calendar)}function w(e){return t._categories[Math.round(e)]}function k(e){if(y(e)){if(void 0===t._categoriesMap&&(t._categoriesMap={}),void 0!==t._categoriesMap[e])return t._categoriesMap[e];t._categories.push(\"number\"==typeof e?String(e):e);var r=t._categories.length-1;return t._categoriesMap[e]=r,r}return p}function T(e){if(t._categoriesMap)return t._categoriesMap[e]}function A(t){var e=T(t);return void 0!==e?e:a(t)?+t:void 0}function M(e){return a(e)?n.round(t._b+t._m*e,2):p}function S(e){return(e-t._b)/t._m}t.c2l=\"log\"===t.type?x:c,t.l2c=\"log\"===t.type?m:c,t.l2p=M,t.p2l=S,t.c2p=\"log\"===t.type?function(t,e){return M(x(t,e))}:M,t.p2c=\"log\"===t.type?function(t){return m(S(t))}:S,-1!==[\"linear\",\"-\"].indexOf(t.type)?(t.d2r=t.r2d=t.d2c=t.r2c=t.d2l=t.r2l=o,t.c2d=t.c2r=t.l2d=t.l2r=c,t.d2p=t.r2p=function(e){return t.l2p(o(e))},t.p2d=t.p2r=S,t.cleanPos=c):\"log\"===t.type?(t.d2r=t.d2l=function(t,e){return x(o(t),e)},t.r2d=t.r2c=function(t){return m(o(t))},t.d2c=t.r2l=o,t.c2d=t.l2r=c,t.c2r=x,t.l2d=m,t.d2p=function(e,r){return t.l2p(t.d2r(e,r))},t.p2d=function(t){return m(S(t))},t.r2p=function(e){return t.l2p(o(e))},t.p2r=S,t.cleanPos=c):\"date\"===t.type?(t.d2r=t.r2d=i.identity,t.d2c=t.r2c=t.d2l=t.r2l=b,t.c2d=t.c2r=t.l2d=t.l2r=_,t.d2p=t.r2p=function(e,r,n){return t.l2p(b(e,0,n))},t.p2d=t.p2r=function(t,e,r){return _(S(t),e,r)},t.cleanPos=function(e){return i.cleanDate(e,p,t.calendar)}):\"category\"===t.type?(t.d2c=t.d2l=k,t.r2d=t.c2d=t.l2d=w,t.d2r=t.d2l_noadd=A,t.r2c=function(e){var r=A(e);return void 0!==r?r:t.fraction2r(.5)},t.l2r=t.c2r=c,t.r2l=A,t.d2p=function(e){return t.l2p(t.r2c(e))},t.p2d=function(t){return w(S(t))},t.r2p=t.d2p,t.p2r=S,t.cleanPos=function(t){return\"string\"==typeof t&&\"\"!==t?t:c(t)}):\"multicategory\"===t.type&&(t.r2d=t.c2d=t.l2d=w,t.d2r=t.d2l_noadd=A,t.r2c=function(e){var r=A(e);return void 0!==r?r:t.fraction2r(.5)},t.r2c_just_indices=T,t.l2r=t.c2r=c,t.r2l=A,t.d2p=function(e){return t.l2p(t.r2c(e))},t.p2d=function(t){return w(S(t))},t.r2p=t.d2p,t.p2r=S,t.cleanPos=function(t){return Array.isArray(t)||\"string\"==typeof t&&\"\"!==t?t:c(t)},t.setupMultiCategory=function(n){var a,o,s=t._traceIndices,l=e._axisMatchGroups;if(l&&l.length&&0===t._categories.length)for(a=0;a<l.length;a++){var c=l[a];if(c[r])for(var f in c)if(f!==r){var p=e[v.id2name(f)];s=s.concat(p._traceIndices)}}var d=[[0,{}],[0,{}]],g=[];for(a=0;a<s.length;a++){var m=n[s[a]];if(h in m){var x=m[h],b=m._length||i.minRowLength(x);if(u(x[0])&&u(x[1]))for(o=0;o<b;o++){var _=x[0][o],w=x[1][o];y(_)&&y(w)&&(g.push([_,w]),_ in d[0][1]||(d[0][1][_]=d[0][0]++),w in d[1][1]||(d[1][1][w]=d[1][0]++))}}}for(g.sort(function(t,e){var r=d[0][1],n=r[t[0]]-r[e[0]];if(n)return n;var a=d[1][1];return a[t[1]]-a[e[1]]}),a=0;a<g.length;a++)k(g[a])}),t.fraction2r=function(e){var r=t.r2l(t.range[0]),n=t.r2l(t.range[1]);return t.l2r(r+e*(n-r))},t.r2fraction=function(e){var r=t.r2l(t.range[0]),n=t.r2l(t.range[1]);return(t.r2l(e)-r)/(n-r)},t.cleanRange=function(e,r){r||(r={}),e||(e=\"range\");var n,o,s=i.nestedProperty(t,e).get();if(o=(o=\"date\"===t.type?i.dfltRange(t.calendar):\"y\"===h?g.DFLTRANGEY:r.dfltRange||g.DFLTRANGEX).slice(),\"tozero\"!==t.rangemode&&\"nonnegative\"!==t.rangemode||(o[0]=0),s&&2===s.length)for(\"date\"!==t.type||t.autorange||(s[0]=i.cleanDate(s[0],p,t.calendar),s[1]=i.cleanDate(s[1],p,t.calendar)),n=0;n<2;n++)if(\"date\"===t.type){if(!i.isDateTime(s[n],t.calendar)){t[e]=o;break}if(t.r2l(s[0])===t.r2l(s[1])){var l=i.constrain(t.r2l(s[0]),i.MIN_MS+1e3,i.MAX_MS-1e3);s[0]=t.l2r(l-1e3),s[1]=t.l2r(l+1e3);break}}else{if(!a(s[n])){if(!a(s[1-n])){t[e]=o;break}s[n]=s[1-n]*(n?10:.1)}if(s[n]<-f?s[n]=-f:s[n]>f&&(s[n]=f),s[0]===s[1]){var c=Math.max(1,Math.abs(1e-6*s[0]));s[0]-=c,s[1]+=c}}else i.nestedProperty(t,e).set(o)},t.setScale=function(r){var n=e._size;if(t.overlaying){var a=v.getFromId({_fullLayout:e},t.overlaying);t.domain=a.domain}var i=r&&t._r?\"_r\":\"range\",o=t.calendar;t.cleanRange(i);var s=t.r2l(t[i][0],o),l=t.r2l(t[i][1],o);if(\"y\"===h?(t._offset=n.t+(1-t.domain[1])*n.h,t._length=n.h*(t.domain[1]-t.domain[0]),t._m=t._length/(s-l),t._b=-t._m*l):(t._offset=n.l+t.domain[0]*n.w,t._length=n.w*(t.domain[1]-t.domain[0]),t._m=t._length/(l-s),t._b=-t._m*s),!isFinite(t._m)||!isFinite(t._b)||t._length<0)throw e._replotting=!1,new Error(\"Something went wrong with axis scaling\")},t.makeCalcdata=function(e,r){var n,a,o,s,l=t.type,c=\"date\"===l&&e[r+\"calendar\"];if(r in e){if(n=e[r],s=e._length||i.minRowLength(n),i.isTypedArray(n)&&(\"linear\"===l||\"log\"===l)){if(s===n.length)return n;if(n.subarray)return n.subarray(0,s)}if(\"multicategory\"===l)return function(t,e){for(var r=new Array(e),n=0;n<e;n++){var a=(t[0]||[])[n],i=(t[1]||[])[n];r[n]=T([a,i])}return r}(n,s);for(a=new Array(s),o=0;o<s;o++)a[o]=t.d2c(n[o],0,c)}else{var u=r+\"0\"in e?t.d2c(e[r+\"0\"],0,c):0,h=e[\"d\"+r]?Number(e[\"d\"+r]):1;for(n=e[{x:\"y\",y:\"x\"}[r]],s=e._length||n.length,a=new Array(s),o=0;o<s;o++)a[o]=u+o*h}return a},t.isValidRange=function(e){return Array.isArray(e)&&2===e.length&&a(t.r2l(e[0]))&&a(t.r2l(e[1]))},t.isPtWithinRange=function(e,r){var n=t.c2l(e[h],null,r),a=t.r2l(t.range[0]),i=t.r2l(t.range[1]);return a<i?a<=n&&n<=i:i<=n&&n<=a},t.clearCalc=function(){var n=function(){t._categories=[],t._categoriesMap={}},a=e._axisMatchGroups;if(a&&a.length){for(var i=!1,o=0;o<a.length;o++){var s=a[o];if(s[r]){i=!0;var l=null,c=null;for(var u in s){var h=e[v.id2name(u)];if(h._categories){l=h._categories,c=h._categoriesMap;break}}l&&c?(t._categories=l,t._categoriesMap=c):n();break}}i||n()}else n();if(t._initialCategories)for(var f=0;f<t._initialCategories.length;f++)k(t._initialCategories[f])},t.sortByInitialCategories=function(){var n=[];if(t._categories=[],t._categoriesMap={},t._initialCategories)for(var a=0;a<t._initialCategories.length;a++)k(t._initialCategories[a]);n=n.concat(t._traceIndices);var i=t._matchGroup;for(var o in i)if(r!==o){var s=e[v.id2name(o)];s._categories=t._categories,s._categoriesMap=t._categoriesMap,n=n.concat(s._traceIndices)}return n};var E=e._d3locale;\"date\"===t.type&&(t._dateFormat=E?E.timeFormat.utc:n.time.format.utc,t._extraFormat=e._extraFormat),t._separators=e.separators,t._numFormat=E?E.numberFormat:n.format,delete t._minDtick,delete t._forceTick0}},{\"../../constants/numerical\":695,\"../../lib\":719,\"./axis_ids\":770,\"./constants\":773,d3:164,\"fast-isnumeric\":226}],786:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./layout_attributes\"),i=t(\"../array_container_defaults\");function o(t){var e=[\"showexponent\",\"showtickprefix\",\"showticksuffix\"].filter(function(e){return void 0!==t[e]});if(e.every(function(r){return t[r]===t[e[0]]})||1===e.length)return t[e[0]]}function s(t,e){function r(r,i){return n.coerce(t,e,a.tickformatstops,r,i)}r(\"enabled\")&&(r(\"dtickrange\"),r(\"value\"))}e.exports=function(t,e,r,l,c,u){u&&1!==u.pass||function(t,e,r,n,a){var i=o(t);r(\"tickprefix\")&&r(\"showtickprefix\",i);r(\"ticksuffix\",a.tickSuffixDflt)&&r(\"showticksuffix\",i)}(t,0,r,0,c),u&&2!==u.pass||function(t,e,r,l,c){var u=o(t);r(\"tickprefix\")&&r(\"showtickprefix\",u);r(\"ticksuffix\",c.tickSuffixDflt)&&r(\"showticksuffix\",u);if(r(\"showticklabels\")){var h=c.font||{},f=e.color,p=f&&f!==a.color.dflt?f:h.color;if(n.coerceFont(r,\"tickfont\",{family:h.family,size:h.size,color:p}),r(\"tickangle\"),\"category\"!==l){var d=r(\"tickformat\"),g=t.tickformatstops;Array.isArray(g)&&g.length&&i(t,e,{name:\"tickformatstops\",inclusionAttr:\"enabled\",handleItemDefaults:s}),d||\"date\"===l||(r(\"showexponent\",u),r(\"exponentformat\"),r(\"separatethousands\"))}}}(t,e,r,l,c)}},{\"../../lib\":719,\"../array_container_defaults\":763,\"./layout_attributes\":779}],787:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./layout_attributes\");e.exports=function(t,e,r,i){var o=n.coerce2(t,e,a,\"ticklen\"),s=n.coerce2(t,e,a,\"tickwidth\"),l=n.coerce2(t,e,a,\"tickcolor\",e.color);r(\"ticks\",i.outerTicks||o||s||l?\"outside\":\"\")||(delete e.ticklen,delete e.tickwidth,delete e.tickcolor)}},{\"../../lib\":719,\"./layout_attributes\":779}],788:[function(t,e,r){\"use strict\";var n=t(\"./clean_ticks\");e.exports=function(t,e,r,a){var i;\"array\"!==t.tickmode||\"log\"!==a&&\"date\"!==a?i=r(\"tickmode\",Array.isArray(t.tickvals)?\"array\":t.dtick?\"linear\":\"auto\"):i=e.tickmode=\"auto\";if(\"auto\"===i)r(\"nticks\");else if(\"linear\"===i){var o=e.dtick=n.dtick(t.dtick,a);e.tick0=n.tick0(t.tick0,a,e.calendar,o)}else if(\"multicategory\"!==a){void 0===r(\"tickvals\")?e.tickmode=\"auto\":r(\"ticktext\")}}},{\"./clean_ticks\":772}],789:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../registry\"),i=t(\"../../lib\"),o=t(\"../../components/drawing\"),s=t(\"./axes\");e.exports=function(t,e,r,l){var c=t._fullLayout;if(0!==e.length){var u,h,f,p;l&&(u=l());var d=n.ease(r.easing);return t._transitionData._interruptCallbacks.push(function(){return window.cancelAnimationFrame(p),p=null,function(){for(var r={},n=0;n<e.length;n++){var i=e[n],o=i.plotinfo.xaxis,s=i.plotinfo.yaxis;i.xr0&&(r[o._name+\".range\"]=i.xr0.slice()),i.yr0&&(r[s._name+\".range\"]=i.yr0.slice())}return a.call(\"relayout\",t,r).then(function(){for(var t=0;t<e.length;t++)g(e[t].plotinfo)})}()}),h=Date.now(),p=window.requestAnimationFrame(function n(){f=Date.now();for(var i=Math.min(1,(f-h)/r.duration),o=d(i),s=0;s<e.length;s++)v(e[s],o);f-h>r.duration?(function(){for(var r={},n=0;n<e.length;n++){var i=e[n],o=i.plotinfo.xaxis,s=i.plotinfo.yaxis;i.xr1&&(r[o._name+\".range\"]=i.xr1.slice()),i.yr1&&(r[s._name+\".range\"]=i.yr1.slice())}u&&u(),a.call(\"relayout\",t,r).then(function(){for(var t=0;t<e.length;t++)g(e[t].plotinfo)})}(),p=window.cancelAnimationFrame(n)):p=window.requestAnimationFrame(n)}),Promise.resolve()}function g(t){var e=t.xaxis,r=t.yaxis;c._defs.select(\"#\"+t.clipId+\"> rect\").call(o.setTranslate,0,0).call(o.setScale,1,1),t.plot.call(o.setTranslate,e._offset,r._offset).call(o.setScale,1,1);var n=t.plot.selectAll(\".scatterlayer .trace\");n.selectAll(\".point\").call(o.setPointGroupScale,1,1),n.selectAll(\".textpoint\").call(o.setTextPointsScale,1,1),n.call(o.hideOutsideRangePoints,t)}function v(e,r){var n=e.plotinfo,a=n.xaxis,l=n.yaxis,c=a._length,u=l._length,h=!!e.xr1,f=!!e.yr1,p=[];if(h){var d=i.simpleMap(e.xr0,a.r2l),g=i.simpleMap(e.xr1,a.r2l),v=d[1]-d[0],m=g[1]-g[0];p[0]=(d[0]*(1-r)+r*g[0]-d[0])/(d[1]-d[0])*c,p[2]=c*(1-r+r*m/v),a.range[0]=a.l2r(d[0]*(1-r)+r*g[0]),a.range[1]=a.l2r(d[1]*(1-r)+r*g[1])}else p[0]=0,p[2]=c;if(f){var y=i.simpleMap(e.yr0,l.r2l),x=i.simpleMap(e.yr1,l.r2l),b=y[1]-y[0],_=x[1]-x[0];p[1]=(y[1]*(1-r)+r*x[1]-y[1])/(y[0]-y[1])*u,p[3]=u*(1-r+r*_/b),l.range[0]=a.l2r(y[0]*(1-r)+r*x[0]),l.range[1]=l.l2r(y[1]*(1-r)+r*x[1])}else p[1]=0,p[3]=u;s.drawOne(t,a,{skipTitle:!0}),s.drawOne(t,l,{skipTitle:!0}),s.redrawComponents(t,[a._id,l._id]);var w=h?c/p[2]:1,k=f?u/p[3]:1,T=h?p[0]:0,A=f?p[1]:0,M=h?p[0]/p[2]*c:0,S=f?p[1]/p[3]*u:0,E=a._offset-M,C=l._offset-S;n.clipRect.call(o.setTranslate,T,A).call(o.setScale,1/w,1/k),n.plot.call(o.setTranslate,E,C).call(o.setScale,w,k),o.setPointGroupScale(n.zoomScalePts,1/w,1/k),o.setTextPointsScale(n.zoomScaleTxt,1/w,1/k)}s.redrawComponents(t)}},{\"../../components/drawing\":615,\"../../lib\":719,\"../../registry\":848,\"./axes\":767,d3:164}],790:[function(t,e,r){\"use strict\";var n=t(\"../../registry\").traceIs,a=t(\"./axis_autotype\");function i(t){return{v:\"x\",h:\"y\"}[t.orientation||\"v\"]}function o(t,e){var r=i(t),a=n(t,\"box-violin\"),o=n(t._fullInput||{},\"candlestick\");return a&&!o&&e===r&&void 0===t[r]&&void 0===t[r+\"0\"]}e.exports=function(t,e,r,s){\"-\"===r(\"type\",(s.splomStash||{}).type)&&(!function(t,e){if(\"-\"!==t.type)return;var r=t._id,s=r.charAt(0);-1!==r.indexOf(\"scene\")&&(r=s);var l=function(t,e,r){for(var n=0;n<t.length;n++){var a=t[n];if(\"splom\"===a.type&&a._length>0&&(a[\"_\"+r+\"axes\"]||{})[e])return a;if((a[r+\"axis\"]||r)===e){if(o(a,r))return a;if((a[r]||[]).length||a[r+\"0\"])return a}}}(e,r,s);if(!l)return;if(\"histogram\"===l.type&&s==={v:\"y\",h:\"x\"}[l.orientation||\"v\"])return void(t.type=\"linear\");var c,u=s+\"calendar\",h=l[u],f={noMultiCategory:!n(l,\"cartesian\")||n(l,\"noMultiCategory\")};if(o(l,s)){var p=i(l),d=[];for(c=0;c<e.length;c++){var g=e[c];n(g,\"box-violin\")&&(g[s+\"axis\"]||s)===r&&(void 0!==g[p]?d.push(g[p][0]):void 0!==g.name?d.push(g.name):d.push(\"text\"),g[u]!==h&&(h=void 0))}t.type=a(d,h,f)}else if(\"splom\"===l.type){var v=l.dimensions,m=v[l._axesDim[r]];m.visible&&(t.type=a(m.values,h,f))}else t.type=a(l[s]||[l[s+\"0\"]],h,f)}(e,s.data),\"-\"===e.type?e.type=\"linear\":t.type=e.type)}},{\"../../registry\":848,\"./axis_autotype\":768}],791:[function(t,e,r){\"use strict\";var n=t(\"../registry\"),a=t(\"../lib\");function i(t,e,r){var n,i,o,s=!1;if(\"data\"===e.type)n=t._fullData[null!==e.traces?e.traces[0]:0];else{if(\"layout\"!==e.type)return!1;n=t._fullLayout}return i=a.nestedProperty(n,e.prop).get(),(o=r[e.type]=r[e.type]||{}).hasOwnProperty(e.prop)&&o[e.prop]!==i&&(s=!0),o[e.prop]=i,{changed:s,value:i}}function o(t,e){var r=[],n=e[0],i={};if(\"string\"==typeof n)i[n]=e[1];else{if(!a.isPlainObject(n))return r;i=n}return l(i,function(t,e,n){r.push({type:\"layout\",prop:t,value:n})},\"\",0),r}function s(t,e){var r,n,i,o,s=[];if(n=e[0],i=e[1],r=e[2],o={},\"string\"==typeof n)o[n]=i;else{if(!a.isPlainObject(n))return s;o=n,void 0===r&&(r=i)}return void 0===r&&(r=null),l(o,function(e,n,a){var i,o;if(Array.isArray(a)){o=a.slice();var l=Math.min(o.length,t.data.length);r&&(l=Math.min(l,r.length)),i=[];for(var c=0;c<l;c++)i[c]=r?r[c]:c}else o=a,i=r?r.slice():null;if(null===i)Array.isArray(o)&&(o=o[0]);else if(Array.isArray(i)){if(!Array.isArray(o)){var u=o;o=[];for(var h=0;h<i.length;h++)o[h]=u}o.length=Math.min(i.length,o.length)}s.push({type:\"data\",prop:e,traces:i,value:o})},\"\",0),s}function l(t,e,r,n){Object.keys(t).forEach(function(i){var o=t[i];if(\"_\"!==i[0]){var s=r+(n>0?\".\":\"\")+i;a.isPlainObject(o)?l(o,e,s,n+1):e(s,i,o)}})}r.manageCommandObserver=function(t,e,n,o){var s={},l=!0;e&&e._commandObserver&&(s=e._commandObserver),s.cache||(s.cache={}),s.lookupTable={};var c=r.hasSimpleAPICommandBindings(t,n,s.lookupTable);if(e&&e._commandObserver){if(c)return s;if(e._commandObserver.remove)return e._commandObserver.remove(),e._commandObserver=null,s}if(c){i(t,c,s.cache),s.check=function(){if(l){var e=i(t,c,s.cache);return e.changed&&o&&void 0!==s.lookupTable[e.value]&&(s.disable(),Promise.resolve(o({value:e.value,type:c.type,prop:c.prop,traces:c.traces,index:s.lookupTable[e.value]})).then(s.enable,s.enable)),e.changed}};for(var u=[\"plotly_relayout\",\"plotly_redraw\",\"plotly_restyle\",\"plotly_update\",\"plotly_animatingframe\",\"plotly_afterplot\"],h=0;h<u.length;h++)t._internalOn(u[h],s.check);s.remove=function(){for(var e=0;e<u.length;e++)t._removeInternalListener(u[e],s.check)}}else a.log(\"Unable to automatically bind plot updates to API command\"),s.lookupTable={},s.remove=function(){};return s.disable=function(){l=!1},s.enable=function(){l=!0},e&&(e._commandObserver=s),s},r.hasSimpleAPICommandBindings=function(t,e,n){var a,i,o=e.length;for(a=0;a<o;a++){var s,l=e[a],c=l.method,u=l.args;if(Array.isArray(u)||(u=[]),!c)return!1;var h=r.computeAPICommandBindings(t,c,u);if(1!==h.length)return!1;if(i){if((s=h[0]).type!==i.type)return!1;if(s.prop!==i.prop)return!1;if(Array.isArray(i.traces)){if(!Array.isArray(s.traces))return!1;s.traces.sort();for(var f=0;f<i.traces.length;f++)if(i.traces[f]!==s.traces[f])return!1}else if(s.prop!==i.prop)return!1}else i=h[0],Array.isArray(i.traces)&&i.traces.sort();var p=(s=h[0]).value;if(Array.isArray(p)){if(1!==p.length)return!1;p=p[0]}n&&(n[p]=a)}return i},r.executeAPICommand=function(t,e,r){if(\"skip\"===e)return Promise.resolve();var i=n.apiMethodRegistry[e],o=[t];Array.isArray(r)||(r=[]);for(var s=0;s<r.length;s++)o.push(r[s]);return i.apply(null,o).catch(function(t){return a.warn(\"API call to Plotly.\"+e+\" rejected.\",t),Promise.reject(t)})},r.computeAPICommandBindings=function(t,e,r){var n;switch(Array.isArray(r)||(r=[]),e){case\"restyle\":n=s(t,r);break;case\"relayout\":n=o(t,r);break;case\"update\":n=s(t,[r[0],r[2]]).concat(o(t,[r[1]]));break;case\"animate\":n=function(t,e){return Array.isArray(e[0])&&1===e[0].length&&-1!==[\"string\",\"number\"].indexOf(typeof e[0][0])?[{type:\"layout\",prop:\"_currentFrame\",value:e[0][0].toString()}]:[]}(0,r);break;default:n=[]}return n}},{\"../lib\":719,\"../registry\":848}],792:[function(t,e,r){\"use strict\";var n=t(\"../lib/extend\").extendFlat;r.attributes=function(t,e){e=e||{};var r={valType:\"info_array\",editType:(t=t||{}).editType,items:[{valType:\"number\",min:0,max:1,editType:t.editType},{valType:\"number\",min:0,max:1,editType:t.editType}],dflt:[0,1]},a=(t.name&&t.name,t.trace,e.description&&e.description,{x:n({},r,{}),y:n({},r,{}),editType:t.editType});return t.noGridCell||(a.row={valType:\"integer\",min:0,dflt:0,editType:t.editType},a.column={valType:\"integer\",min:0,dflt:0,editType:t.editType}),a},r.defaults=function(t,e,r,n){var a=n&&n.x||[0,1],i=n&&n.y||[0,1],o=e.grid;if(o){var s=r(\"domain.column\");void 0!==s&&(s<o.columns?a=o._domains.x[s]:delete t.domain.column);var l=r(\"domain.row\");void 0!==l&&(l<o.rows?i=o._domains.y[l]:delete t.domain.row)}r(\"domain.x\",a),r(\"domain.y\",i)}},{\"../lib/extend\":710}],793:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.editType,r=t.colorEditType;void 0===r&&(r=e);var n={family:{valType:\"string\",noBlank:!0,strict:!0,editType:e},size:{valType:\"number\",min:1,editType:e},color:{valType:\"color\",editType:r},editType:e};return t.arrayOk&&(n.family.arrayOk=!0,n.size.arrayOk=!0,n.color.arrayOk=!0),n}},{}],794:[function(t,e,r){\"use strict\";e.exports={_isLinkedToArray:\"frames_entry\",group:{valType:\"string\"},name:{valType:\"string\"},traces:{valType:\"any\"},baseframe:{valType:\"string\"},data:{valType:\"any\"},layout:{valType:\"any\"}}},{}],795:[function(t,e,r){\"use strict\";r.projNames={equirectangular:\"equirectangular\",mercator:\"mercator\",orthographic:\"orthographic\",\"natural earth\":\"naturalEarth\",kavrayskiy7:\"kavrayskiy7\",miller:\"miller\",robinson:\"robinson\",eckert4:\"eckert4\",\"azimuthal equal area\":\"azimuthalEqualArea\",\"azimuthal equidistant\":\"azimuthalEquidistant\",\"conic equal area\":\"conicEqualArea\",\"conic conformal\":\"conicConformal\",\"conic equidistant\":\"conicEquidistant\",gnomonic:\"gnomonic\",stereographic:\"stereographic\",mollweide:\"mollweide\",hammer:\"hammer\",\"transverse mercator\":\"transverseMercator\",\"albers usa\":\"albersUsa\",\"winkel tripel\":\"winkel3\",aitoff:\"aitoff\",sinusoidal:\"sinusoidal\"},r.axesNames=[\"lonaxis\",\"lataxis\"],r.lonaxisSpan={orthographic:180,\"azimuthal equal area\":360,\"azimuthal equidistant\":360,\"conic conformal\":180,gnomonic:160,stereographic:180,\"transverse mercator\":180,\"*\":360},r.lataxisSpan={\"conic conformal\":150,stereographic:179.5,\"*\":180},r.scopeDefaults={world:{lonaxisRange:[-180,180],lataxisRange:[-90,90],projType:\"equirectangular\",projRotate:[0,0,0]},usa:{lonaxisRange:[-180,-50],lataxisRange:[15,80],projType:\"albers usa\"},europe:{lonaxisRange:[-30,60],lataxisRange:[30,85],projType:\"conic conformal\",projRotate:[15,0,0],projParallels:[0,60]},asia:{lonaxisRange:[22,160],lataxisRange:[-15,55],projType:\"mercator\",projRotate:[0,0,0]},africa:{lonaxisRange:[-30,60],lataxisRange:[-40,40],projType:\"mercator\",projRotate:[0,0,0]},\"north america\":{lonaxisRange:[-180,-45],lataxisRange:[5,85],projType:\"conic conformal\",projRotate:[-100,0,0],projParallels:[29.5,45.5]},\"south america\":{lonaxisRange:[-100,-30],lataxisRange:[-60,15],projType:\"mercator\",projRotate:[0,0,0]}},r.clipPad=.001,r.precision=.1,r.landColor=\"#F0DC82\",r.waterColor=\"#3399FF\",r.locationmodeToLayer={\"ISO-3\":\"countries\",\"USA-states\":\"subunits\",\"country names\":\"countries\"},r.sphereSVG={type:\"Sphere\"},r.fillLayers={ocean:1,land:1,lakes:1},r.lineLayers={subunits:1,countries:1,coastlines:1,rivers:1,frame:1},r.layers=[\"bg\",\"ocean\",\"land\",\"lakes\",\"subunits\",\"countries\",\"coastlines\",\"rivers\",\"lataxis\",\"lonaxis\",\"frame\",\"backplot\",\"frontplot\"],r.layersForChoropleth=[\"bg\",\"ocean\",\"land\",\"subunits\",\"countries\",\"coastlines\",\"lataxis\",\"lonaxis\",\"frame\",\"backplot\",\"rivers\",\"lakes\",\"frontplot\"],r.layerNameToAdjective={ocean:\"ocean\",land:\"land\",lakes:\"lake\",subunits:\"subunit\",countries:\"country\",coastlines:\"coastline\",rivers:\"river\",frame:\"frame\"}},{}],796:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../registry\"),i=t(\"../../lib\"),o=t(\"../../components/color\"),s=t(\"../../components/drawing\"),l=t(\"../../components/fx\"),c=t(\"../plots\"),u=t(\"../cartesian/axes\"),h=t(\"../../components/dragelement\"),f=t(\"../cartesian/select\").prepSelect,p=t(\"../cartesian/select\").selectOnClick,d=t(\"./zoom\"),g=t(\"./constants\"),v=t(\"../../lib/topojson_utils\"),m=t(\"topojson-client\").feature;function y(t){this.id=t.id,this.graphDiv=t.graphDiv,this.container=t.container,this.topojsonURL=t.topojsonURL,this.isStatic=t.staticPlot,this.topojsonName=null,this.topojson=null,this.projection=null,this.scope=null,this.viewInitial=null,this.fitScale=null,this.bounds=null,this.midPt=null,this.hasChoropleth=!1,this.traceHash={},this.layers={},this.basePaths={},this.dataPaths={},this.dataPoints={},this.clipDef=null,this.clipRect=null,this.bgRect=null,this.makeFramework()}t(\"./projections\")(n);var x=y.prototype;e.exports=function(t){return new y(t)},x.plot=function(t,e,r){var n=this,a=e[this.id],i=!1;for(var o in g.layerNameToAdjective)if(\"frame\"!==o&&a[\"show\"+o]){i=!0;break}for(var s=0;s<t.length;s++)if(t[0][0].trace.locationmode){i=!0;break}if(!i)return n.update(t,e);var l=v.getTopojsonName(a);null===n.topojson||l!==n.topojsonName?(n.topojsonName=l,void 0===PlotlyGeoAssets.topojson[n.topojsonName]?r.push(n.fetchTopojson().then(function(r){PlotlyGeoAssets.topojson[n.topojsonName]=r,n.topojson=r,n.update(t,e)})):(n.topojson=PlotlyGeoAssets.topojson[n.topojsonName],n.update(t,e))):n.update(t,e)},x.fetchTopojson=function(){var t=v.getTopojsonPath(this.topojsonURL,this.topojsonName);return new Promise(function(e,r){n.json(t,function(n,a){if(n)return 404===n.status?r(new Error([\"plotly.js could not find topojson file at\",t,\".\",\"Make sure the *topojsonURL* plot config option\",\"is set properly.\"].join(\" \"))):r(new Error([\"unexpected error while fetching topojson file at\",t].join(\" \")));e(a)})})},x.update=function(t,e){var r=e[this.id];if(!this.updateProjection(e,r)){this.hasChoropleth=!1;for(var n=0;n<t.length;n++)if(\"choropleth\"===t[n][0].trace.type){this.hasChoropleth=!0;break}this.viewInitial&&this.scope===r.scope||this.saveViewInitial(r),this.scope=r.scope,this.updateBaseLayers(e,r),this.updateDims(e,r),this.updateFx(e,r),c.generalUpdatePerTraceModule(this.graphDiv,this,t,r);var a=this.layers.frontplot.select(\".scatterlayer\");this.dataPoints.point=a.selectAll(\".point\"),this.dataPoints.text=a.selectAll(\"text\"),this.dataPaths.line=a.selectAll(\".js-line\");var i=this.layers.backplot.select(\".choroplethlayer\");this.dataPaths.choropleth=i.selectAll(\"path\"),this.render()}},x.updateProjection=function(t,e){var r=t._size,o=e.domain,s=e.projection,l=s.rotation||{},c=e.center||{},u=this.projection=function(t){for(var e=t.projection.type,r=n.geo[g.projNames[e]](),a=t._isClipped?g.lonaxisSpan[e]/2:null,i=[\"center\",\"rotate\",\"parallels\",\"clipExtent\"],o=function(t){return t?r:[]},s=0;s<i.length;s++){var l=i[s];\"function\"!=typeof r[l]&&(r[l]=o)}r.isLonLatOverEdges=function(t){if(null===r(t))return!0;if(a){var e=r.rotate();return n.geo.distance(t,[-e[0],-e[1]])>a*Math.PI/180}return!1},r.getPath=function(){return n.geo.path().projection(r)},r.getBounds=function(t){return r.getPath().bounds(t)},r.fitExtent=function(t,e){var n=t[1][0]-t[0][0],a=t[1][1]-t[0][1],i=r.clipExtent&&r.clipExtent();r.scale(150).translate([0,0]),i&&r.clipExtent(null);var o=r.getBounds(e),s=Math.min(n/(o[1][0]-o[0][0]),a/(o[1][1]-o[0][1])),l=+t[0][0]+(n-s*(o[1][0]+o[0][0]))/2,c=+t[0][1]+(a-s*(o[1][1]+o[0][1]))/2;return i&&r.clipExtent(i),r.scale(150*s).translate([l,c])},r.precision(g.precision),a&&r.clipAngle(a-g.clipPad);return r}(e);u.center([c.lon-l.lon,c.lat-l.lat]).rotate([-l.lon,-l.lat,l.roll]).parallels(s.parallels);var h=[[r.l+r.w*o.x[0],r.t+r.h*(1-o.y[1])],[r.l+r.w*o.x[1],r.t+r.h*(1-o.y[0])]],f=e.lonaxis,p=e.lataxis,d=function(t,e){var r=g.clipPad,n=t[0]+r,a=t[1]-r,i=e[0]+r,o=e[1]-r;n>0&&a<0&&(a+=360);var s=(a-n)/4;return{type:\"Polygon\",coordinates:[[[n,i],[n,o],[n+s,o],[n+2*s,o],[n+3*s,o],[a,o],[a,i],[a-s,i],[a-2*s,i],[a-3*s,i],[n,i]]]}}(f.range,p.range);u.fitExtent(h,d);var v=this.bounds=u.getBounds(d),m=this.fitScale=u.scale(),y=u.translate();if(!isFinite(v[0][0])||!isFinite(v[0][1])||!isFinite(v[1][0])||!isFinite(v[1][1])||isNaN(y[0])||isNaN(y[0])){for(var x=this.graphDiv,b=[\"projection.rotation\",\"center\",\"lonaxis.range\",\"lataxis.range\"],_=\"Invalid geo settings, relayout'ing to default view.\",w={},k=0;k<b.length;k++)w[this.id+\".\"+b[k]]=null;return this.viewInitial=null,i.warn(_),x._promises.push(a.call(\"relayout\",x,w)),_}var T=this.midPt=[(v[0][0]+v[1][0])/2,(v[0][1]+v[1][1])/2];if(u.scale(s.scale*m).translate([y[0]+(T[0]-y[0]),y[1]+(T[1]-y[1])]).clipExtent(v),e._isAlbersUsa){var A=u([c.lon,c.lat]),M=u.translate();u.translate([M[0]-(A[0]-M[0]),M[1]-(A[1]-M[1])])}},x.updateBaseLayers=function(t,e){var r=this,a=r.topojson,i=r.layers,l=r.basePaths;function c(t){return\"lonaxis\"===t||\"lataxis\"===t}function h(t){return Boolean(g.lineLayers[t])}function f(t){return Boolean(g.fillLayers[t])}var p=(this.hasChoropleth?g.layersForChoropleth:g.layers).filter(function(t){return h(t)||f(t)?e[\"show\"+t]:!c(t)||e[t].showgrid}),d=r.framework.selectAll(\".layer\").data(p,String);d.exit().each(function(t){delete i[t],delete l[t],n.select(this).remove()}),d.enter().append(\"g\").attr(\"class\",function(t){return\"layer \"+t}).each(function(t){var e=i[t]=n.select(this);\"bg\"===t?r.bgRect=e.append(\"rect\").style(\"pointer-events\",\"all\"):c(t)?l[t]=e.append(\"path\").style(\"fill\",\"none\"):\"backplot\"===t?e.append(\"g\").classed(\"choroplethlayer\",!0):\"frontplot\"===t?e.append(\"g\").classed(\"scatterlayer\",!0):h(t)?l[t]=e.append(\"path\").style(\"fill\",\"none\").style(\"stroke-miterlimit\",2):f(t)&&(l[t]=e.append(\"path\").style(\"stroke\",\"none\"))}),d.order(),d.each(function(r){var n=l[r],i=g.layerNameToAdjective[r];\"frame\"===r?n.datum(g.sphereSVG):h(r)||f(r)?n.datum(m(a,a.objects[r])):c(r)&&n.datum(function(t,e,r){var n,a,i,o=e[t],s=g.scopeDefaults[e.scope];\"lonaxis\"===t?(n=s.lonaxisRange,a=s.lataxisRange,i=function(t,e){return[t,e]}):\"lataxis\"===t&&(n=s.lataxisRange,a=s.lonaxisRange,i=function(t,e){return[e,t]});var l={type:\"linear\",range:[n[0],n[1]-1e-6],tick0:o.tick0,dtick:o.dtick};u.setConvert(l,r);var c=u.calcTicks(l);e.isScoped||\"lonaxis\"!==t||c.pop();for(var h=c.length,f=new Array(h),p=0;p<h;p++)for(var d=c[p].x,v=f[p]=[],m=a[0];m<a[1]+2.5;m+=2.5)v.push(i(d,m));return{type:\"MultiLineString\",coordinates:f}}(r,e,t)).call(o.stroke,e[r].gridcolor).call(s.dashLine,\"\",e[r].gridwidth),h(r)?n.call(o.stroke,e[i+\"color\"]).call(s.dashLine,\"\",e[i+\"width\"]):f(r)&&n.call(o.fill,e[i+\"color\"])})},x.updateDims=function(t,e){var r=this.bounds,n=(e.framewidth||0)/2,a=r[0][0]-n,i=r[0][1]-n,l=r[1][0]-a+n,c=r[1][1]-i+n;s.setRect(this.clipRect,a,i,l,c),this.bgRect.call(s.setRect,a,i,l,c).call(o.fill,e.bgcolor),this.xaxis._offset=a,this.xaxis._length=l,this.yaxis._offset=i,this.yaxis._length=c},x.updateFx=function(t,e){var r=this,i=r.graphDiv,o=r.bgRect,s=t.dragmode,c=t.clickmode;if(!r.isStatic){var u;\"select\"===s?u=function(t,e){(t.range={})[r.id]=[v([e.xmin,e.ymin]),v([e.xmax,e.ymax])]}:\"lasso\"===s&&(u=function(t,e,n){(t.lassoPoints={})[r.id]=n.filtered.map(v)});var g={element:r.bgRect.node(),gd:i,plotinfo:{id:r.id,xaxis:r.xaxis,yaxis:r.yaxis,fillRangeItems:u},xaxes:[r.xaxis],yaxes:[r.yaxis],subplot:r.id,clickFn:function(e){2===e&&t._zoomlayer.selectAll(\".select-outline\").remove()}};\"pan\"===s?(o.node().onmousedown=null,o.call(d(r,e)),o.on(\"dblclick.zoom\",function(){var t=r.viewInitial,e={};for(var n in t)e[r.id+\".\"+n]=t[n];a.call(\"_guiRelayout\",i,e),i.emit(\"plotly_doubleclick\",null)}),i._context._scrollZoom.geo||o.on(\"wheel.zoom\",null)):\"select\"!==s&&\"lasso\"!==s||(o.on(\".zoom\",null),g.prepFn=function(t,e,r){f(t,e,r,g,s)},h.init(g)),o.on(\"mousemove\",function(){var t=r.projection.invert(n.mouse(this));if(!t||isNaN(t[0])||isNaN(t[1]))return h.unhover(i,n.event);r.xaxis.p2c=function(){return t[0]},r.yaxis.p2c=function(){return t[1]},l.hover(i,n.event,r.id)}),o.on(\"mouseout\",function(){i._dragging||h.unhover(i,n.event)}),o.on(\"click\",function(){\"select\"!==s&&\"lasso\"!==s&&(c.indexOf(\"select\")>-1&&p(n.event,i,[r.xaxis],[r.yaxis],r.id,g),c.indexOf(\"event\")>-1&&l.click(i,n.event))})}function v(t){return r.projection.invert([t[0]+r.xaxis._offset,t[1]+r.yaxis._offset])}},x.makeFramework=function(){var t=this,e=t.graphDiv,r=e._fullLayout,a=\"clip\"+r._uid+t.id;t.clipDef=r._clips.append(\"clipPath\").attr(\"id\",a),t.clipRect=t.clipDef.append(\"rect\"),t.framework=n.select(t.container).append(\"g\").attr(\"class\",\"geo \"+t.id).call(s.setClipUrl,a,e),t.project=function(e){var r=t.projection(e);return r?[r[0]-t.xaxis._offset,r[1]-t.yaxis._offset]:[null,null]},t.xaxis={_id:\"x\",c2p:function(e){return t.project(e)[0]}},t.yaxis={_id:\"y\",c2p:function(e){return t.project(e)[1]}},t.mockAxis={type:\"linear\",showexponent:\"all\",exponentformat:\"B\"},u.setConvert(t.mockAxis,r)},x.saveViewInitial=function(t){var e=t.center||{},r=t.projection,n=r.rotation||{};t._isScoped?this.viewInitial={\"center.lon\":e.lon,\"center.lat\":e.lat,\"projection.scale\":r.scale}:t._isClipped?this.viewInitial={\"projection.scale\":r.scale,\"projection.rotation.lon\":n.lon,\"projection.rotation.lat\":n.lat}:this.viewInitial={\"center.lon\":e.lon,\"center.lat\":e.lat,\"projection.scale\":r.scale,\"projection.rotation.lon\":n.lon}},x.render=function(){var t,e=this.projection,r=e.getPath();function n(t){var r=e(t.lonlat);return r?\"translate(\"+r[0]+\",\"+r[1]+\")\":null}function a(t){return e.isLonLatOverEdges(t.lonlat)?\"none\":null}for(t in this.basePaths)this.basePaths[t].attr(\"d\",r);for(t in this.dataPaths)this.dataPaths[t].attr(\"d\",function(t){return r(t.geojson)});for(t in this.dataPoints)this.dataPoints[t].attr(\"display\",a).attr(\"transform\",n)}},{\"../../components/color\":594,\"../../components/dragelement\":612,\"../../components/drawing\":615,\"../../components/fx\":632,\"../../lib\":719,\"../../lib/topojson_utils\":746,\"../../registry\":848,\"../cartesian/axes\":767,\"../cartesian/select\":784,\"../plots\":828,\"./constants\":795,\"./projections\":800,\"./zoom\":801,d3:164,\"topojson-client\":541}],797:[function(t,e,r){\"use strict\";var n=t(\"../../plots/get_data\").getSubplotCalcData,a=t(\"../../lib\").counterRegex,i=t(\"./geo\"),o=\"geo\",s=a(o),l={};l[o]={valType:\"subplotid\",dflt:o,editType:\"calc\"},e.exports={attr:o,name:o,idRoot:o,idRegex:s,attrRegex:s,attributes:l,layoutAttributes:t(\"./layout_attributes\"),supplyLayoutDefaults:t(\"./layout_defaults\"),plot:function(t){for(var e=t._fullLayout,r=t.calcdata,a=e._subplots[o],s=0;s<a.length;s++){var l=a[s],c=n(r,o,l),u=e[l]._subplot;u||(u=i({id:l,graphDiv:t,container:e._geolayer.node(),topojsonURL:t._context.topojsonURL,staticPlot:t._context.staticPlot}),e[l]._subplot=u),u.plot(c,e,t._promises)}},updateFx:function(t){for(var e=t._fullLayout,r=e._subplots[o],n=0;n<r.length;n++){var a=e[r[n]];a._subplot.updateFx(e,a)}},clean:function(t,e,r,n){for(var a=n._subplots[o]||[],i=0;i<a.length;i++){var s=a[i],l=n[s]._subplot;!e[s]&&l&&(l.framework.remove(),l.clipDef.remove())}}}},{\"../../lib\":719,\"../../plots/get_data\":802,\"./geo\":796,\"./layout_attributes\":798,\"./layout_defaults\":799}],798:[function(t,e,r){\"use strict\";var n=t(\"../../components/color/attributes\"),a=t(\"../domain\").attributes,i=t(\"./constants\"),o=t(\"../../plot_api/edit_types\").overrideAll,s={range:{valType:\"info_array\",items:[{valType:\"number\"},{valType:\"number\"}]},showgrid:{valType:\"boolean\",dflt:!1},tick0:{valType:\"number\",dflt:0},dtick:{valType:\"number\"},gridcolor:{valType:\"color\",dflt:n.lightLine},gridwidth:{valType:\"number\",min:0,dflt:1}};(e.exports=o({domain:a({name:\"geo\"},{}),resolution:{valType:\"enumerated\",values:[110,50],dflt:110,coerceNumber:!0},scope:{valType:\"enumerated\",values:Object.keys(i.scopeDefaults),dflt:\"world\"},projection:{type:{valType:\"enumerated\",values:Object.keys(i.projNames)},rotation:{lon:{valType:\"number\"},lat:{valType:\"number\"},roll:{valType:\"number\"}},parallels:{valType:\"info_array\",items:[{valType:\"number\"},{valType:\"number\"}]},scale:{valType:\"number\",min:0,dflt:1}},center:{lon:{valType:\"number\"},lat:{valType:\"number\"}},showcoastlines:{valType:\"boolean\"},coastlinecolor:{valType:\"color\",dflt:n.defaultLine},coastlinewidth:{valType:\"number\",min:0,dflt:1},showland:{valType:\"boolean\",dflt:!1},landcolor:{valType:\"color\",dflt:i.landColor},showocean:{valType:\"boolean\",dflt:!1},oceancolor:{valType:\"color\",dflt:i.waterColor},showlakes:{valType:\"boolean\",dflt:!1},lakecolor:{valType:\"color\",dflt:i.waterColor},showrivers:{valType:\"boolean\",dflt:!1},rivercolor:{valType:\"color\",dflt:i.waterColor},riverwidth:{valType:\"number\",min:0,dflt:1},showcountries:{valType:\"boolean\"},countrycolor:{valType:\"color\",dflt:n.defaultLine},countrywidth:{valType:\"number\",min:0,dflt:1},showsubunits:{valType:\"boolean\"},subunitcolor:{valType:\"color\",dflt:n.defaultLine},subunitwidth:{valType:\"number\",min:0,dflt:1},showframe:{valType:\"boolean\"},framecolor:{valType:\"color\",dflt:n.defaultLine},framewidth:{valType:\"number\",min:0,dflt:1},bgcolor:{valType:\"color\",dflt:n.background},lonaxis:s,lataxis:s},\"plot\",\"from-root\")).uirevision={valType:\"any\",editType:\"none\"}},{\"../../components/color/attributes\":593,\"../../plot_api/edit_types\":750,\"../domain\":792,\"./constants\":795}],799:[function(t,e,r){\"use strict\";var n=t(\"../subplot_defaults\"),a=t(\"./constants\"),i=t(\"./layout_attributes\"),o=a.axesNames;function s(t,e,r){var n=r(\"resolution\"),i=r(\"scope\"),s=a.scopeDefaults[i],l=r(\"projection.type\",s.projType),c=e._isAlbersUsa=\"albers usa\"===l;c&&(i=e.scope=\"usa\");var u=e._isScoped=\"world\"!==i,h=e._isConic=-1!==l.indexOf(\"conic\");e._isClipped=!!a.lonaxisSpan[l];for(var f=0;f<o.length;f++){var p,d=o[f],g=[30,10][f];if(u)p=s[d+\"Range\"];else{var v=a[d+\"Span\"],m=(v[l]||v[\"*\"])/2,y=r(\"projection.rotation.\"+d.substr(0,3),s.projRotate[f]);p=[y-m,y+m]}r(d+\".range\",p),r(d+\".tick0\"),r(d+\".dtick\",g),r(d+\".showgrid\")&&(r(d+\".gridcolor\"),r(d+\".gridwidth\"))}var x=e.lonaxis.range,b=e.lataxis.range,_=x[0],w=x[1];_>0&&w<0&&(w+=360);var k,T,A,M=(_+w)/2;if(!c){var S=u?s.projRotate:[M,0,0];k=r(\"projection.rotation.lon\",S[0]),r(\"projection.rotation.lat\",S[1]),r(\"projection.rotation.roll\",S[2]),r(\"showcoastlines\",!u)&&(r(\"coastlinecolor\"),r(\"coastlinewidth\")),r(\"showocean\")&&r(\"oceancolor\")}(c?(T=-96.6,A=38.7):(T=u?M:k,A=(b[0]+b[1])/2),r(\"center.lon\",T),r(\"center.lat\",A),h)&&r(\"projection.parallels\",s.projParallels||[0,60]);r(\"projection.scale\"),r(\"showland\")&&r(\"landcolor\"),r(\"showlakes\")&&r(\"lakecolor\"),r(\"showrivers\")&&(r(\"rivercolor\"),r(\"riverwidth\")),r(\"showcountries\",u&&\"usa\"!==i)&&(r(\"countrycolor\"),r(\"countrywidth\")),(\"usa\"===i||\"north america\"===i&&50===n)&&(r(\"showsubunits\",!0),r(\"subunitcolor\"),r(\"subunitwidth\")),u||r(\"showframe\",!0)&&(r(\"framecolor\"),r(\"framewidth\")),r(\"bgcolor\")}e.exports=function(t,e,r){n(t,e,r,{type:\"geo\",attributes:i,handleDefaults:s,partition:\"y\"})}},{\"../subplot_defaults\":842,\"./constants\":795,\"./layout_attributes\":798}],800:[function(t,e,r){\"use strict\";e.exports=function(t){function e(t,e){return{type:\"Feature\",id:t.id,properties:t.properties,geometry:r(t.geometry,e)}}function r(e,n){if(!e)return null;if(\"GeometryCollection\"===e.type)return{type:\"GeometryCollection\",geometries:object.geometries.map(function(t){return r(t,n)})};if(!c.hasOwnProperty(e.type))return null;var a=c[e.type];return t.geo.stream(e,n(a)),a.result()}t.geo.project=function(t,e){var a=e.stream;if(!a)throw new Error(\"not yet supported\");return(t&&n.hasOwnProperty(t.type)?n[t.type]:r)(t,a)};var n={Feature:e,FeatureCollection:function(t,r){return{type:\"FeatureCollection\",features:t.features.map(function(t){return e(t,r)})}}},a=[],i=[],o={point:function(t,e){a.push([t,e])},result:function(){var t=a.length?a.length<2?{type:\"Point\",coordinates:a[0]}:{type:\"MultiPoint\",coordinates:a}:null;return a=[],t}},s={lineStart:u,point:function(t,e){a.push([t,e])},lineEnd:function(){a.length&&(i.push(a),a=[])},result:function(){var t=i.length?i.length<2?{type:\"LineString\",coordinates:i[0]}:{type:\"MultiLineString\",coordinates:i}:null;return i=[],t}},l={polygonStart:u,lineStart:u,point:function(t,e){a.push([t,e])},lineEnd:function(){var t=a.length;if(t){do{a.push(a[0].slice())}while(++t<4);i.push(a),a=[]}},polygonEnd:u,result:function(){if(!i.length)return null;var t=[],e=[];return i.forEach(function(r){!function(t){if((e=t.length)<4)return!1;for(var e,r=0,n=t[e-1][1]*t[0][0]-t[e-1][0]*t[0][1];++r<e;)n+=t[r-1][1]*t[r][0]-t[r-1][0]*t[r][1];return n<=0}(r)?e.push(r):t.push([r])}),e.forEach(function(e){var r=e[0];t.some(function(t){if(function(t,e){for(var r=e[0],n=e[1],a=!1,i=0,o=t.length,s=o-1;i<o;s=i++){var l=t[i],c=l[0],u=l[1],h=t[s],f=h[0],p=h[1];u>n^p>n&&r<(f-c)*(n-u)/(p-u)+c&&(a=!a)}return a}(t[0],r))return t.push(e),!0})||t.push([e])}),i=[],t.length?t.length>1?{type:\"MultiPolygon\",coordinates:t}:{type:\"Polygon\",coordinates:t[0]}:null}},c={Point:o,MultiPoint:o,LineString:s,MultiLineString:s,Polygon:l,MultiPolygon:l,Sphere:l};function u(){}var h=1e-6,f=h*h,p=Math.PI,d=p/2,g=(Math.sqrt(p),p/180),v=180/p;function m(t){return t>1?d:t<-1?-d:Math.asin(t)}function y(t){return t>1?0:t<-1?p:Math.acos(t)}var x=t.geo.projection,b=t.geo.projectionMutator;function _(t,e){var r=(2+d)*Math.sin(e);e/=2;for(var n=0,a=1/0;n<10&&Math.abs(a)>h;n++){var i=Math.cos(e);e-=a=(e+Math.sin(e)*(i+2)-r)/(2*i*(1+i))}return[2/Math.sqrt(p*(4+p))*t*(1+Math.cos(e)),2*Math.sqrt(p/(4+p))*Math.sin(e)]}t.geo.interrupt=function(e){var r,n=[[[[-p,0],[0,d],[p,0]]],[[[-p,0],[0,-d],[p,0]]]];function a(t,r){for(var a=r<0?-1:1,i=n[+(r<0)],o=0,s=i.length-1;o<s&&t>i[o][2][0];++o);var l=e(t-i[o][1][0],r);return l[0]+=e(i[o][1][0],a*r>a*i[o][0][1]?i[o][0][1]:r)[0],l}e.invert&&(a.invert=function(t,i){for(var o=r[+(i<0)],s=n[+(i<0)],c=0,u=o.length;c<u;++c){var h=o[c];if(h[0][0]<=t&&t<h[1][0]&&h[0][1]<=i&&i<h[1][1]){var f=e.invert(t-e(s[c][1][0],0)[0],i);return f[0]+=s[c][1][0],l(a(f[0],f[1]),[t,i])?f:null}}});var i=t.geo.projection(a),o=i.stream;function s(t,e){for(var r,n,a,i=-1,o=t.length,s=t[0],l=[];++i<o;){n=((r=t[i])[0]-s[0])/e,a=(r[1]-s[1])/e;for(var c=0;c<e;++c)l.push([s[0]+c*n,s[1]+c*a]);s=r}return l.push(r),l}function l(t,e){return Math.abs(t[0]-e[0])<h&&Math.abs(t[1]-e[1])<h}return i.stream=function(e){var r=i.rotate(),a=o(e),l=(i.rotate([0,0]),o(e));return i.rotate(r),a.sphere=function(){t.geo.stream(function(){for(var e=1e-6,r=[],a=0,i=n[0].length;a<i;++a){var o=n[0][a],l=180*o[0][0]/p,c=180*o[0][1]/p,u=180*o[1][1]/p,h=180*o[2][0]/p,f=180*o[2][1]/p;r.push(s([[l+e,c+e],[l+e,u-e],[h-e,u-e],[h-e,f+e]],30))}for(var a=n[1].length-1;a>=0;--a){var o=n[1][a],l=180*o[0][0]/p,c=180*o[0][1]/p,u=180*o[1][1]/p,h=180*o[2][0]/p,f=180*o[2][1]/p;r.push(s([[h-e,f-e],[h-e,u+e],[l+e,u+e],[l+e,c-e]],30))}return{type:\"Polygon\",coordinates:[t.merge(r)]}}(),l)},a},i.lobes=function(t){return arguments.length?(n=t.map(function(t){return t.map(function(t){return[[t[0][0]*p/180,t[0][1]*p/180],[t[1][0]*p/180,t[1][1]*p/180],[t[2][0]*p/180,t[2][1]*p/180]]})}),r=n.map(function(t){return t.map(function(t){var r,n=e(t[0][0],t[0][1])[0],a=e(t[2][0],t[2][1])[0],i=e(t[1][0],t[0][1])[1],o=e(t[1][0],t[1][1])[1];return i>o&&(r=i,i=o,o=r),[[n,i],[a,o]]})}),i):n.map(function(t){return t.map(function(t){return[[180*t[0][0]/p,180*t[0][1]/p],[180*t[1][0]/p,180*t[1][1]/p],[180*t[2][0]/p,180*t[2][1]/p]]})})},i},_.invert=function(t,e){var r=.5*e*Math.sqrt((4+p)/p),n=m(r),a=Math.cos(n);return[t/(2/Math.sqrt(p*(4+p))*(1+a)),m((n+r*(a+2))/(2+d))]},(t.geo.eckert4=function(){return x(_)}).raw=_;var w=t.geo.azimuthalEqualArea.raw;function k(t,e){if(arguments.length<2&&(e=t),1===e)return w;if(e===1/0)return T;function r(r,n){var a=w(r/e,n);return a[0]*=t,a}return r.invert=function(r,n){var a=w.invert(r/t,n);return a[0]*=e,a},r}function T(t,e){return[t*Math.cos(e)/Math.cos(e/=2),2*Math.sin(e)]}function A(t,e){return[3*t/(2*p)*Math.sqrt(p*p/3-e*e),e]}function M(t,e){return[t,1.25*Math.log(Math.tan(p/4+.4*e))]}function S(t){return function(e){var r,n=t*Math.sin(e),a=30;do{e-=r=(e+Math.sin(e)-n)/(1+Math.cos(e))}while(Math.abs(r)>h&&--a>0);return e/2}}T.invert=function(t,e){var r=2*m(e/2);return[t*Math.cos(r/2)/Math.cos(r),r]},(t.geo.hammer=function(){var t=2,e=b(k),r=e(t);return r.coefficient=function(r){return arguments.length?e(t=+r):t},r}).raw=k,A.invert=function(t,e){return[2/3*p*t/Math.sqrt(p*p/3-e*e),e]},(t.geo.kavrayskiy7=function(){return x(A)}).raw=A,M.invert=function(t,e){return[t,2.5*Math.atan(Math.exp(.8*e))-.625*p]},(t.geo.miller=function(){return x(M)}).raw=M,S(p);var E=function(t,e,r){var n=S(r);function a(r,a){return[t*r*Math.cos(a=n(a)),e*Math.sin(a)]}return a.invert=function(n,a){var i=m(a/e);return[n/(t*Math.cos(i)),m((2*i+Math.sin(2*i))/r)]},a}(Math.SQRT2/d,Math.SQRT2,p);function C(t,e){var r=e*e,n=r*r;return[t*(.8707-.131979*r+n*(n*(.003971*r-.001529*n)-.013791)),e*(1.007226+r*(.015085+n*(.028874*r-.044475-.005916*n)))]}(t.geo.mollweide=function(){return x(E)}).raw=E,C.invert=function(t,e){var r,n=e,a=25;do{var i=n*n,o=i*i;n-=r=(n*(1.007226+i*(.015085+o*(.028874*i-.044475-.005916*o)))-e)/(1.007226+i*(.045255+o*(.259866*i-.311325-.005916*11*o)))}while(Math.abs(r)>h&&--a>0);return[t/(.8707+(i=n*n)*(i*(i*i*i*(.003971-.001529*i)-.013791)-.131979)),n]},(t.geo.naturalEarth=function(){return x(C)}).raw=C;var L=[[.9986,-.062],[1,0],[.9986,.062],[.9954,.124],[.99,.186],[.9822,.248],[.973,.31],[.96,.372],[.9427,.434],[.9216,.4958],[.8962,.5571],[.8679,.6176],[.835,.6769],[.7986,.7346],[.7597,.7903],[.7186,.8435],[.6732,.8936],[.6213,.9394],[.5722,.9761],[.5322,1]];function P(t,e){var r,n=Math.min(18,36*Math.abs(e)/p),a=Math.floor(n),i=n-a,o=(r=L[a])[0],s=r[1],l=(r=L[++a])[0],c=r[1],u=(r=L[Math.min(19,++a)])[0],h=r[1];return[t*(l+i*(u-o)/2+i*i*(u-2*l+o)/2),(e>0?d:-d)*(c+i*(h-s)/2+i*i*(h-2*c+s)/2)]}function O(t,e){return[t*Math.cos(e),e]}function I(t,e){var r,n=Math.cos(e),a=(r=y(n*Math.cos(t/=2)))?r/Math.sin(r):1;return[2*n*Math.sin(t)*a,Math.sin(e)*a]}function z(t,e){var r=I(t,e);return[(r[0]+t/d)/2,(r[1]+e)/2]}L.forEach(function(t){t[1]*=1.0144}),P.invert=function(t,e){var r=e/d,n=90*r,a=Math.min(18,Math.abs(n/5)),i=Math.max(0,Math.floor(a));do{var o=L[i][1],s=L[i+1][1],l=L[Math.min(19,i+2)][1],c=l-o,u=l-2*s+o,h=2*(Math.abs(r)-s)/c,p=u/c,m=h*(1-p*h*(1-2*p*h));if(m>=0||1===i){n=(e>=0?5:-5)*(m+a);var y,x=50;do{m=(a=Math.min(18,Math.abs(n)/5))-(i=Math.floor(a)),o=L[i][1],s=L[i+1][1],l=L[Math.min(19,i+2)][1],n-=(y=(e>=0?d:-d)*(s+m*(l-o)/2+m*m*(l-2*s+o)/2)-e)*v}while(Math.abs(y)>f&&--x>0);break}}while(--i>=0);var b=L[i][0],_=L[i+1][0],w=L[Math.min(19,i+2)][0];return[t/(_+m*(w-b)/2+m*m*(w-2*_+b)/2),n*g]},(t.geo.robinson=function(){return x(P)}).raw=P,O.invert=function(t,e){return[t/Math.cos(e),e]},(t.geo.sinusoidal=function(){return x(O)}).raw=O,I.invert=function(t,e){if(!(t*t+4*e*e>p*p+h)){var r=t,n=e,a=25;do{var i,o=Math.sin(r),s=Math.sin(r/2),l=Math.cos(r/2),c=Math.sin(n),u=Math.cos(n),f=Math.sin(2*n),d=c*c,g=u*u,v=s*s,m=1-g*l*l,x=m?y(u*l)*Math.sqrt(i=1/m):i=0,b=2*x*u*s-t,_=x*c-e,w=i*(g*v+x*u*l*d),k=i*(.5*o*f-2*x*c*s),T=.25*i*(f*s-x*c*g*o),A=i*(d*l+x*v*u),M=k*T-A*w;if(!M)break;var S=(_*k-b*A)/M,E=(b*T-_*w)/M;r-=S,n-=E}while((Math.abs(S)>h||Math.abs(E)>h)&&--a>0);return[r,n]}},(t.geo.aitoff=function(){return x(I)}).raw=I,z.invert=function(t,e){var r=t,n=e,a=25;do{var i,o=Math.cos(n),s=Math.sin(n),l=Math.sin(2*n),c=s*s,u=o*o,f=Math.sin(r),p=Math.cos(r/2),g=Math.sin(r/2),v=g*g,m=1-u*p*p,x=m?y(o*p)*Math.sqrt(i=1/m):i=0,b=.5*(2*x*o*g+r/d)-t,_=.5*(x*s+n)-e,w=.5*i*(u*v+x*o*p*c)+.5/d,k=i*(f*l/4-x*s*g),T=.125*i*(l*g-x*s*u*f),A=.5*i*(c*p+x*v*o)+.5,M=k*T-A*w,S=(_*k-b*A)/M,E=(b*T-_*w)/M;r-=S,n-=E}while((Math.abs(S)>h||Math.abs(E)>h)&&--a>0);return[r,n]},(t.geo.winkel3=function(){return x(z)}).raw=z}},{}],801:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../lib\"),i=t(\"../../registry\"),o=Math.PI/180,s=180/Math.PI,l={cursor:\"pointer\"},c={cursor:\"auto\"};function u(t,e){return n.behavior.zoom().translate(e.translate()).scale(e.scale())}function h(t,e,r){var n=t.id,o=t.graphDiv,s=o.layout,l=s[n],c=o._fullLayout,u=c[n],h={},f={};function p(t,e){h[n+\".\"+t]=a.nestedProperty(l,t).get(),i.call(\"_storeDirectGUIEdit\",s,c._preGUI,h);var r=a.nestedProperty(u,t);r.get()!==e&&(r.set(e),a.nestedProperty(l,t).set(e),f[n+\".\"+t]=e)}r(p),p(\"projection.scale\",e.scale()/t.fitScale),o.emit(\"plotly_relayout\",f)}function f(t,e){var r=u(0,e);function a(r){var n=e.invert(t.midPt);r(\"center.lon\",n[0]),r(\"center.lat\",n[1])}return r.on(\"zoomstart\",function(){n.select(this).style(l)}).on(\"zoom\",function(){e.scale(n.event.scale).translate(n.event.translate),t.render();var r=e.invert(t.midPt);t.graphDiv.emit(\"plotly_relayouting\",{\"geo.projection.scale\":e.scale()/t.fitScale,\"geo.center.lon\":r[0],\"geo.center.lat\":r[1]})}).on(\"zoomend\",function(){n.select(this).style(c),h(t,e,a)}),r}function p(t,e){var r,a,i,o,s,f,p,d,g,v=u(0,e),m=2;function y(t){return e.invert(t)}function x(r){var n=e.rotate(),a=e.invert(t.midPt);r(\"projection.rotation.lon\",-n[0]),r(\"center.lon\",a[0]),r(\"center.lat\",a[1])}return v.on(\"zoomstart\",function(){n.select(this).style(l),r=n.mouse(this),a=e.rotate(),i=e.translate(),o=a,s=y(r)}).on(\"zoom\",function(){if(f=n.mouse(this),function(t){var r=y(t);if(!r)return!0;var n=e(r);return Math.abs(n[0]-t[0])>m||Math.abs(n[1]-t[1])>m}(r))return v.scale(e.scale()),void v.translate(e.translate());e.scale(n.event.scale),e.translate([i[0],n.event.translate[1]]),s?y(f)&&(d=y(f),p=[o[0]+(d[0]-s[0]),a[1],a[2]],e.rotate(p),o=p):s=y(r=f),g=!0,t.render();var l=e.rotate(),c=e.invert(t.midPt);t.graphDiv.emit(\"plotly_relayouting\",{\"geo.projection.scale\":e.scale()/t.fitScale,\"geo.center.lon\":c[0],\"geo.center.lat\":c[1],\"geo.projection.rotation.lon\":-l[0]})}).on(\"zoomend\",function(){n.select(this).style(c),g&&h(t,e,x)}),v}function d(t,e){var r,a={r:e.rotate(),k:e.scale()},i=u(0,e),f=function(t){var e=0,r=arguments.length,a=[];for(;++e<r;)a.push(arguments[e]);var i=n.dispatch.apply(null,a);return i.of=function(e,r){return function(a){var o;try{o=a.sourceEvent=n.event,a.target=t,n.event=a,i[a.type].apply(e,r)}finally{n.event=o}}},i}(i,\"zoomstart\",\"zoom\",\"zoomend\"),p=0,d=i.on;function m(t){var r=e.rotate();t(\"projection.rotation.lon\",-r[0]),t(\"projection.rotation.lat\",-r[1])}return i.on(\"zoomstart\",function(){n.select(this).style(l);var t,c,u,h,m,b,_,w,k,T,A,M=n.mouse(this),S=e.rotate(),E=S,C=e.translate(),L=(c=.5*(t=S)[0]*o,u=.5*t[1]*o,h=.5*t[2]*o,m=Math.sin(c),b=Math.cos(c),_=Math.sin(u),w=Math.cos(u),k=Math.sin(h),T=Math.cos(h),[b*w*T+m*_*k,m*w*T-b*_*k,b*_*T+m*w*k,b*w*k-m*_*T]);r=g(e,M),d.call(i,\"zoom\",function(){var t,i,o,l,c,u,h,p,d,m,b=n.mouse(this);if(e.scale(a.k=n.event.scale),r){if(g(e,b)){e.rotate(S).translate(C);var _=g(e,b),w=function(t,e){if(!t||!e)return;var r=function(t,e){return[t[1]*e[2]-t[2]*e[1],t[2]*e[0]-t[0]*e[2],t[0]*e[1]-t[1]*e[0]]}(t,e),n=Math.sqrt(x(r,r)),a=.5*Math.acos(Math.max(-1,Math.min(1,x(t,e)))),i=Math.sin(a)/n;return n&&[Math.cos(a),r[2]*i,-r[1]*i,r[0]*i]}(r,_),k=function(t){return[Math.atan2(2*(t[0]*t[1]+t[2]*t[3]),1-2*(t[1]*t[1]+t[2]*t[2]))*s,Math.asin(Math.max(-1,Math.min(1,2*(t[0]*t[2]-t[3]*t[1]))))*s,Math.atan2(2*(t[0]*t[3]+t[1]*t[2]),1-2*(t[2]*t[2]+t[3]*t[3]))*s]}((i=w,o=(t=L)[0],l=t[1],c=t[2],u=t[3],h=i[0],p=i[1],d=i[2],m=i[3],[o*h-l*p-c*d-u*m,o*p+l*h+c*m-u*d,o*d-l*m+c*h+u*p,o*m+l*d-c*p+u*h])),T=a.r=function(t,e,r){var n=y(e,2,t[0]);n=y(n,1,t[1]),n=y(n,0,t[2]-r[2]);var a,i,o=e[0],l=e[1],c=e[2],u=n[0],h=n[1],f=n[2],p=Math.atan2(l,o)*s,d=Math.sqrt(o*o+l*l);Math.abs(h)>d?(i=(h>0?90:-90)-p,a=0):(i=Math.asin(h/d)*s-p,a=Math.sqrt(d*d-h*h));var g=180-i-2*p,m=(Math.atan2(f,u)-Math.atan2(c,a))*s,x=(Math.atan2(f,u)-Math.atan2(c,-a))*s,b=v(r[0],r[1],i,m),_=v(r[0],r[1],g,x);return b<=_?[i,m,r[2]]:[g,x,r[2]]}(k,r,E);isFinite(T[0])&&isFinite(T[1])&&isFinite(T[2])||(T=E),e.rotate(T),E=T}}else r=g(e,M=b);f.of(this,arguments)({type:\"zoom\"})}),A=f.of(this,arguments),p++||A({type:\"zoomstart\"})}).on(\"zoomend\",function(){var r;n.select(this).style(c),d.call(i,\"zoom\",null),r=f.of(this,arguments),--p||r({type:\"zoomend\"}),h(t,e,m)}).on(\"zoom.redraw\",function(){t.render();var r=e.rotate();t.graphDiv.emit(\"plotly_relayouting\",{\"geo.projection.scale\":e.scale()/t.fitScale,\"geo.projection.rotation.lon\":-r[0],\"geo.projection.rotation.lat\":-r[1]})}),n.rebind(i,f,\"on\")}function g(t,e){var r=t.invert(e);return r&&isFinite(r[0])&&isFinite(r[1])&&function(t){var e=t[0]*o,r=t[1]*o,n=Math.cos(r);return[n*Math.cos(e),n*Math.sin(e),Math.sin(r)]}(r)}function v(t,e,r,n){var a=m(r-t),i=m(n-e);return Math.sqrt(a*a+i*i)}function m(t){return(t%360+540)%360-180}function y(t,e,r){var n=r*o,a=t.slice(),i=0===e?1:0,s=2===e?1:2,l=Math.cos(n),c=Math.sin(n);return a[i]=t[i]*l-t[s]*c,a[s]=t[s]*l+t[i]*c,a}function x(t,e){for(var r=0,n=0,a=t.length;n<a;++n)r+=t[n]*e[n];return r}e.exports=function(t,e){var r=t.projection;return(e._isScoped?f:e._isClipped?d:p)(t,r)}},{\"../../lib\":719,\"../../registry\":848,d3:164}],802:[function(t,e,r){\"use strict\";var n=t(\"../registry\"),a=t(\"./cartesian/constants\").SUBPLOT_PATTERN;r.getSubplotCalcData=function(t,e,r){var a=n.subplotsRegistry[e];if(!a)return[];for(var i=a.attr,o=[],s=0;s<t.length;s++){var l=t[s];l[0].trace[i]===r&&o.push(l)}return o},r.getModuleCalcData=function(t,e){var r,a=[],i=[];if(!(r=\"string\"==typeof e?n.getModule(e).plot:\"function\"==typeof e?e:e.plot))return[a,t];for(var o=0;o<t.length;o++){var s=t[o],l=s[0].trace;!0===l.visible&&0!==l._length&&(l._module.plot===r?a.push(s):i.push(s))}return[a,i]},r.getSubplotData=function(t,e,r){if(!n.subplotsRegistry[e])return[];var i,o,s,l=n.subplotsRegistry[e].attr,c=[];if(\"gl2d\"===e){var u=r.match(a);o=\"x\"+u[1],s=\"y\"+u[2]}for(var h=0;h<t.length;h++)i=t[h],\"gl2d\"===e&&n.traceIs(i,\"gl2d\")?i[l[0]]===o&&i[l[1]]===s&&c.push(i):i[l]===r&&c.push(i);return c}},{\"../registry\":848,\"./cartesian/constants\":773}],803:[function(t,e,r){\"use strict\";var n=t(\"mouse-change\"),a=t(\"mouse-wheel\"),i=t(\"mouse-event-offset\"),o=t(\"../cartesian/constants\"),s=t(\"has-passive-events\");function l(t,e){this.element=t,this.plot=e,this.mouseListener=null,this.wheelListener=null,this.lastInputTime=Date.now(),this.lastPos=[0,0],this.boxEnabled=!1,this.boxInited=!1,this.boxStart=[0,0],this.boxEnd=[0,0],this.dragStart=[0,0]}e.exports=function(t){var e=t.mouseContainer,r=t.glplot,c=new l(e,r);function u(){t.xaxis.autorange=!1,t.yaxis.autorange=!1}function h(e,n,a){var i,s,l=t.calcDataBox(),h=r.viewBox,f=c.lastPos[0],p=c.lastPos[1],d=o.MINDRAG*r.pixelRatio,g=o.MINZOOM*r.pixelRatio;function v(e,r,n){var a=Math.min(r,n),i=Math.max(r,n);a!==i?(l[e]=a,l[e+2]=i,c.dataBox=l,t.setRanges(l)):(t.selectBox.selectBox=[0,0,1,1],t.glplot.setDirty())}switch(n*=r.pixelRatio,a*=r.pixelRatio,a=h[3]-h[1]-a,t.fullLayout.dragmode){case\"zoom\":if(e){var m=n/(h[2]-h[0])*(l[2]-l[0])+l[0],y=a/(h[3]-h[1])*(l[3]-l[1])+l[1];c.boxInited||(c.boxStart[0]=m,c.boxStart[1]=y,c.dragStart[0]=n,c.dragStart[1]=a),c.boxEnd[0]=m,c.boxEnd[1]=y,c.boxInited=!0,c.boxEnabled||c.boxStart[0]===c.boxEnd[0]&&c.boxStart[1]===c.boxEnd[1]||(c.boxEnabled=!0);var x=Math.abs(c.dragStart[0]-n)<g,b=Math.abs(c.dragStart[1]-a)<g;if(!function(){for(var e=t.graphDiv._fullLayout._axisConstraintGroups,r=t.xaxis._id,n=t.yaxis._id,a=0;a<e.length;a++)if(-1!==e[a][r]){if(-1!==e[a][n])return!0;break}return!1}()||x&&b)x&&(c.boxEnd[0]=c.boxStart[0]),b&&(c.boxEnd[1]=c.boxStart[1]);else{i=c.boxEnd[0]-c.boxStart[0],s=c.boxEnd[1]-c.boxStart[1];var _=(l[3]-l[1])/(l[2]-l[0]);Math.abs(i*_)>Math.abs(s)?(c.boxEnd[1]=c.boxStart[1]+Math.abs(i)*_*(s>=0?1:-1),c.boxEnd[1]<l[1]?(c.boxEnd[1]=l[1],c.boxEnd[0]=c.boxStart[0]+(l[1]-c.boxStart[1])/Math.abs(_)):c.boxEnd[1]>l[3]&&(c.boxEnd[1]=l[3],c.boxEnd[0]=c.boxStart[0]+(l[3]-c.boxStart[1])/Math.abs(_))):(c.boxEnd[0]=c.boxStart[0]+Math.abs(s)/_*(i>=0?1:-1),c.boxEnd[0]<l[0]?(c.boxEnd[0]=l[0],c.boxEnd[1]=c.boxStart[1]+(l[0]-c.boxStart[0])*Math.abs(_)):c.boxEnd[0]>l[2]&&(c.boxEnd[0]=l[2],c.boxEnd[1]=c.boxStart[1]+(l[2]-c.boxStart[0])*Math.abs(_)))}}else c.boxEnabled?(i=c.boxStart[0]!==c.boxEnd[0],s=c.boxStart[1]!==c.boxEnd[1],i||s?(i&&(v(0,c.boxStart[0],c.boxEnd[0]),t.xaxis.autorange=!1),s&&(v(1,c.boxStart[1],c.boxEnd[1]),t.yaxis.autorange=!1),t.relayoutCallback()):t.glplot.setDirty(),c.boxEnabled=!1,c.boxInited=!1):c.boxInited&&(c.boxInited=!1);break;case\"pan\":c.boxEnabled=!1,c.boxInited=!1,e?(c.panning||(c.dragStart[0]=n,c.dragStart[1]=a),Math.abs(c.dragStart[0]-n)<d&&(n=c.dragStart[0]),Math.abs(c.dragStart[1]-a)<d&&(a=c.dragStart[1]),i=(f-n)*(l[2]-l[0])/(r.viewBox[2]-r.viewBox[0]),s=(p-a)*(l[3]-l[1])/(r.viewBox[3]-r.viewBox[1]),l[0]+=i,l[2]+=i,l[1]+=s,l[3]+=s,t.setRanges(l),c.panning=!0,c.lastInputTime=Date.now(),u(),t.cameraChanged(),t.handleAnnotations()):c.panning&&(c.panning=!1,t.relayoutCallback())}c.lastPos[0]=n,c.lastPos[1]=a}return c.mouseListener=n(e,h),e.addEventListener(\"touchstart\",function(t){var r=i(t.changedTouches[0],e);h(0,r[0],r[1]),h(1,r[0],r[1]),t.preventDefault()},!!s&&{passive:!1}),e.addEventListener(\"touchmove\",function(t){t.preventDefault();var r=i(t.changedTouches[0],e);h(1,r[0],r[1]),t.preventDefault()},!!s&&{passive:!1}),e.addEventListener(\"touchend\",function(t){h(0,c.lastPos[0],c.lastPos[1]),t.preventDefault()},!!s&&{passive:!1}),c.wheelListener=a(e,function(e,n){if(!t.scrollZoom)return!1;var a=t.calcDataBox(),i=r.viewBox,o=c.lastPos[0],s=c.lastPos[1],l=Math.exp(5*n/(i[3]-i[1])),h=o/(i[2]-i[0])*(a[2]-a[0])+a[0],f=s/(i[3]-i[1])*(a[3]-a[1])+a[1];return a[0]=(a[0]-h)*l+h,a[2]=(a[2]-h)*l+h,a[1]=(a[1]-f)*l+f,a[3]=(a[3]-f)*l+f,t.setRanges(a),c.lastInputTime=Date.now(),u(),t.cameraChanged(),t.handleAnnotations(),t.relayoutCallback(),!0},!0),c}},{\"../cartesian/constants\":773,\"has-passive-events\":412,\"mouse-change\":436,\"mouse-event-offset\":437,\"mouse-wheel\":439}],804:[function(t,e,r){\"use strict\";var n=t(\"../cartesian/axes\"),a=t(\"../../lib/str2rgbarray\");function i(t){this.scene=t,this.gl=t.gl,this.pixelRatio=t.pixelRatio,this.screenBox=[0,0,1,1],this.viewBox=[0,0,1,1],this.dataBox=[-1,-1,1,1],this.borderLineEnable=[!1,!1,!1,!1],this.borderLineWidth=[1,1,1,1],this.borderLineColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.ticks=[[],[]],this.tickEnable=[!0,!0,!1,!1],this.tickPad=[15,15,15,15],this.tickAngle=[0,0,0,0],this.tickColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.tickMarkLength=[0,0,0,0],this.tickMarkWidth=[0,0,0,0],this.tickMarkColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.labels=[\"x\",\"y\"],this.labelEnable=[!0,!0,!1,!1],this.labelAngle=[0,Math.PI/2,0,3*Math.PI/2],this.labelPad=[15,15,15,15],this.labelSize=[12,12],this.labelFont=[\"sans-serif\",\"sans-serif\"],this.labelColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.title=\"\",this.titleEnable=!0,this.titleCenter=[0,0,0,0],this.titleAngle=0,this.titleColor=[0,0,0,1],this.titleFont=\"sans-serif\",this.titleSize=18,this.gridLineEnable=[!0,!0],this.gridLineColor=[[0,0,0,.5],[0,0,0,.5]],this.gridLineWidth=[1,1],this.zeroLineEnable=[!0,!0],this.zeroLineWidth=[1,1],this.zeroLineColor=[[0,0,0,1],[0,0,0,1]],this.borderColor=[0,0,0,0],this.backgroundColor=[0,0,0,0],this.static=this.scene.staticPlot}var o=i.prototype,s=[\"xaxis\",\"yaxis\"];o.merge=function(t){var e,r,n,i,o,l,c,u,h,f,p;for(this.titleEnable=!1,this.backgroundColor=a(t.plot_bgcolor),f=0;f<2;++f){var d=(e=s[f]).charAt(0);for(n=(r=t[this.scene[e]._name]).title.text===this.scene.fullLayout._dfltTitle[d]?\"\":r.title.text,p=0;p<=2;p+=2)this.labelEnable[f+p]=!1,this.labels[f+p]=n,this.labelColor[f+p]=a(r.title.font.color),this.labelFont[f+p]=r.title.font.family,this.labelSize[f+p]=r.title.font.size,this.labelPad[f+p]=this.getLabelPad(e,r),this.tickEnable[f+p]=!1,this.tickColor[f+p]=a((r.tickfont||{}).color),this.tickAngle[f+p]=\"auto\"===r.tickangle?0:Math.PI*-r.tickangle/180,this.tickPad[f+p]=this.getTickPad(r),this.tickMarkLength[f+p]=0,this.tickMarkWidth[f+p]=r.tickwidth||0,this.tickMarkColor[f+p]=a(r.tickcolor),this.borderLineEnable[f+p]=!1,this.borderLineColor[f+p]=a(r.linecolor),this.borderLineWidth[f+p]=r.linewidth||0;c=this.hasSharedAxis(r),o=this.hasAxisInDfltPos(e,r)&&!c,l=this.hasAxisInAltrPos(e,r)&&!c,i=r.mirror||!1,u=c?-1!==String(i).indexOf(\"all\"):!!i,h=c?\"allticks\"===i:-1!==String(i).indexOf(\"ticks\"),o?this.labelEnable[f]=!0:l&&(this.labelEnable[f+2]=!0),o?this.tickEnable[f]=r.showticklabels:l&&(this.tickEnable[f+2]=r.showticklabels),(o||u)&&(this.borderLineEnable[f]=r.showline),(l||u)&&(this.borderLineEnable[f+2]=r.showline),(o||h)&&(this.tickMarkLength[f]=this.getTickMarkLength(r)),(l||h)&&(this.tickMarkLength[f+2]=this.getTickMarkLength(r)),this.gridLineEnable[f]=r.showgrid,this.gridLineColor[f]=a(r.gridcolor),this.gridLineWidth[f]=r.gridwidth,this.zeroLineEnable[f]=r.zeroline,this.zeroLineColor[f]=a(r.zerolinecolor),this.zeroLineWidth[f]=r.zerolinewidth}},o.hasSharedAxis=function(t){var e=this.scene,r=e.fullLayout._subplots.gl2d;return 0!==n.findSubplotsWithAxis(r,t).indexOf(e.id)},o.hasAxisInDfltPos=function(t,e){var r=e.side;return\"xaxis\"===t?\"bottom\"===r:\"yaxis\"===t?\"left\"===r:void 0},o.hasAxisInAltrPos=function(t,e){var r=e.side;return\"xaxis\"===t?\"top\"===r:\"yaxis\"===t?\"right\"===r:void 0},o.getLabelPad=function(t,e){var r=e.title.font.size,n=e.showticklabels;return\"xaxis\"===t?\"top\"===e.side?r*(1.5+(n?1:0))-10:r*(1.5+(n?.5:0))-10:\"yaxis\"===t?\"right\"===e.side?10+r*(1.5+(n?1:.5)):10+r*(1.5+(n?.5:0)):void 0},o.getTickPad=function(t){return\"outside\"===t.ticks?10+t.ticklen:15},o.getTickMarkLength=function(t){if(!t.ticks)return 0;var e=t.ticklen;return\"inside\"===t.ticks?-e:e},e.exports=function(t){return new i(t)}},{\"../../lib/str2rgbarray\":742,\"../cartesian/axes\":767}],805:[function(t,e,r){\"use strict\";var n=t(\"../../plot_api/edit_types\").overrideAll,a=t(\"./scene2d\"),i=t(\"../layout_attributes\"),o=t(\"../../constants/xmlns_namespaces\"),s=t(\"../cartesian/constants\"),l=t(\"../cartesian\"),c=t(\"../../components/fx/layout_attributes\"),u=t(\"../get_data\").getSubplotData;r.name=\"gl2d\",r.attr=[\"xaxis\",\"yaxis\"],r.idRoot=[\"x\",\"y\"],r.idRegex=s.idRegex,r.attrRegex=s.attrRegex,r.attributes=t(\"../cartesian/attributes\"),r.supplyLayoutDefaults=function(t,e,r){e._has(\"cartesian\")||l.supplyLayoutDefaults(t,e,r)},r.layoutAttrOverrides=n(l.layoutAttributes,\"plot\",\"from-root\"),r.baseLayoutAttrOverrides=n({plot_bgcolor:i.plot_bgcolor,hoverlabel:c.hoverlabel},\"plot\",\"nested\"),r.plot=function(t){for(var e=t._fullLayout,r=t._fullData,n=e._subplots.gl2d,i=0;i<n.length;i++){var o=n[i],s=e._plots[o],l=u(r,\"gl2d\",o),c=s._scene2d;void 0===c&&(c=new a({id:o,graphDiv:t,container:t.querySelector(\".gl-container\"),staticPlot:t._context.staticPlot,plotGlPixelRatio:t._context.plotGlPixelRatio},e),s._scene2d=c),c.plot(l,t.calcdata,e,t.layout)}},r.clean=function(t,e,r,n){for(var a=n._subplots.gl2d||[],i=0;i<a.length;i++){var o=a[i],s=n._plots[o];if(s._scene2d)0===u(t,\"gl2d\",o).length&&(s._scene2d.destroy(),delete n._plots[o])}l.clean.apply(this,arguments)},r.drawFramework=function(t){t._context.staticPlot||l.drawFramework(t)},r.toSVG=function(t){for(var e=t._fullLayout,r=e._subplots.gl2d,n=0;n<r.length;n++){var a=e._plots[r[n]]._scene2d,i=a.toImage(\"png\");e._glimages.append(\"svg:image\").attr({xmlns:o.svg,\"xlink:href\":i,x:0,y:0,width:\"100%\",height:\"100%\",preserveAspectRatio:\"none\"}),a.destroy()}},r.updateFx=function(t){for(var e=t._fullLayout,r=e._subplots.gl2d,n=0;n<r.length;n++){e._plots[r[n]]._scene2d.updateFx(e.dragmode)}}},{\"../../components/fx/layout_attributes\":633,\"../../constants/xmlns_namespaces\":696,\"../../plot_api/edit_types\":750,\"../cartesian\":778,\"../cartesian/attributes\":765,\"../cartesian/constants\":773,\"../get_data\":802,\"../layout_attributes\":819,\"./scene2d\":806}],806:[function(t,e,r){\"use strict\";var n,a,i=t(\"../../registry\"),o=t(\"../../plots/cartesian/axes\"),s=t(\"../../components/fx\"),l=t(\"gl-plot2d\"),c=t(\"gl-spikes2d\"),u=t(\"gl-select-box\"),h=t(\"webgl-context\"),f=t(\"./convert\"),p=t(\"./camera\"),d=t(\"../../lib/show_no_webgl_msg\"),g=t(\"../cartesian/constraints\"),v=g.enforce,m=g.clean,y=t(\"../cartesian/autorange\").doAutoRange,x=[\"xaxis\",\"yaxis\"],b=t(\"../cartesian/constants\").SUBPLOT_PATTERN;function _(t,e){this.container=t.container,this.graphDiv=t.graphDiv,this.pixelRatio=t.plotGlPixelRatio||window.devicePixelRatio,this.id=t.id,this.staticPlot=!!t.staticPlot,this.scrollZoom=this.graphDiv._context._scrollZoom.cartesian,this.fullData=null,this.updateRefs(e),this.makeFramework(),this.stopped||(this.glplotOptions=f(this),this.glplotOptions.merge(e),this.glplot=l(this.glplotOptions),this.camera=p(this),this.traces={},this.spikes=c(this.glplot),this.selectBox=u(this.glplot,{innerFill:!1,outerFill:!0}),this.lastButtonState=0,this.pickResult=null,this.isMouseOver=!0,this.stopped=!1,this.redraw=this.draw.bind(this),this.redraw())}e.exports=_;var w=_.prototype;w.makeFramework=function(){if(this.staticPlot){if(!(a||(n=document.createElement(\"canvas\"),a=h({canvas:n,preserveDrawingBuffer:!1,premultipliedAlpha:!0,antialias:!0}))))throw new Error(\"Error creating static canvas/context for image server\");this.canvas=n,this.gl=a}else{var t=this.container.querySelector(\".gl-canvas-focus\"),e=h({canvas:t,preserveDrawingBuffer:!0,premultipliedAlpha:!0});if(!e)return d(this),void(this.stopped=!0);this.canvas=t,this.gl=e}var r=this.canvas;r.style.width=\"100%\",r.style.height=\"100%\",r.style.position=\"absolute\",r.style.top=\"0px\",r.style.left=\"0px\",r.style[\"pointer-events\"]=\"none\",this.updateSize(r),r.className+=\" user-select-none\";var i=this.svgContainer=document.createElementNS(\"http://www.w3.org/2000/svg\",\"svg\");i.style.position=\"absolute\",i.style.top=i.style.left=\"0px\",i.style.width=i.style.height=\"100%\",i.style[\"z-index\"]=20,i.style[\"pointer-events\"]=\"none\";var o=this.mouseContainer=document.createElement(\"div\");o.style.position=\"absolute\",o.style[\"pointer-events\"]=\"auto\",this.pickCanvas=this.container.querySelector(\".gl-canvas-pick\");var s=this.container;s.appendChild(i),s.appendChild(o);var l=this;o.addEventListener(\"mouseout\",function(){l.isMouseOver=!1,l.unhover()}),o.addEventListener(\"mouseover\",function(){l.isMouseOver=!0})},w.toImage=function(t){t||(t=\"png\"),this.stopped=!0,this.staticPlot&&this.container.appendChild(n),this.updateSize(this.canvas);var e=this.glplot.gl,r=e.drawingBufferWidth,a=e.drawingBufferHeight;e.clearColor(1,1,1,0),e.clear(e.COLOR_BUFFER_BIT|e.DEPTH_BUFFER_BIT),this.glplot.setDirty(),this.glplot.draw(),e.bindFramebuffer(e.FRAMEBUFFER,null);var i=new Uint8Array(r*a*4);e.readPixels(0,0,r,a,e.RGBA,e.UNSIGNED_BYTE,i);for(var o=0,s=a-1;o<s;++o,--s)for(var l=0;l<r;++l)for(var c=0;c<4;++c){var u=i[4*(r*o+l)+c];i[4*(r*o+l)+c]=i[4*(r*s+l)+c],i[4*(r*s+l)+c]=u}var h=document.createElement(\"canvas\");h.width=r,h.height=a;var f,p=h.getContext(\"2d\"),d=p.createImageData(r,a);switch(d.data.set(i),p.putImageData(d,0,0),t){case\"jpeg\":f=h.toDataURL(\"image/jpeg\");break;case\"webp\":f=h.toDataURL(\"image/webp\");break;default:f=h.toDataURL(\"image/png\")}return this.staticPlot&&this.container.removeChild(n),f},w.updateSize=function(t){t||(t=this.canvas);var e=this.pixelRatio,r=this.fullLayout,n=r.width,a=r.height,i=0|Math.ceil(e*n),o=0|Math.ceil(e*a);return t.width===i&&t.height===o||(t.width=i,t.height=o),t},w.computeTickMarks=function(){this.xaxis.setScale(),this.yaxis.setScale();for(var t=[o.calcTicks(this.xaxis),o.calcTicks(this.yaxis)],e=0;e<2;++e)for(var r=0;r<t[e].length;++r)t[e][r].text=t[e][r].text+\"\";return t},w.updateRefs=function(t){this.fullLayout=t;var e=this.id.match(b),r=\"xaxis\"+e[1],n=\"yaxis\"+e[2];this.xaxis=this.fullLayout[r],this.yaxis=this.fullLayout[n]},w.relayoutCallback=function(){var t=this.graphDiv,e=this.xaxis,r=this.yaxis,n=t.layout,a={},o=a[e._name+\".range\"]=e.range.slice(),s=a[r._name+\".range\"]=r.range.slice();a[e._name+\".autorange\"]=e.autorange,a[r._name+\".autorange\"]=r.autorange,i.call(\"_storeDirectGUIEdit\",t.layout,t._fullLayout._preGUI,a);var l=n[e._name];l.range=o,l.autorange=e.autorange;var c=n[r._name];c.range=s,c.autorange=r.autorange,a.lastInputTime=this.camera.lastInputTime,t.emit(\"plotly_relayout\",a)},w.cameraChanged=function(){var t=this.camera;this.glplot.setDataBox(this.calcDataBox());var e=this.computeTickMarks();(function(t,e){for(var r=0;r<2;++r){var n=t[r],a=e[r];if(n.length!==a.length)return!0;for(var i=0;i<n.length;++i)if(n[i].x!==a[i].x)return!0}return!1})(e,this.glplotOptions.ticks)&&(this.glplotOptions.ticks=e,this.glplotOptions.dataBox=t.dataBox,this.glplot.update(this.glplotOptions),this.handleAnnotations())},w.handleAnnotations=function(){for(var t=this.graphDiv,e=this.fullLayout.annotations,r=0;r<e.length;r++){var n=e[r];n.xref===this.xaxis._id&&n.yref===this.yaxis._id&&i.getComponentMethod(\"annotations\",\"drawOne\")(t,r)}},w.destroy=function(){if(this.glplot){var t=this.traces;t&&Object.keys(t).map(function(e){t[e].dispose(),delete t[e]}),this.glplot.dispose(),this.container.removeChild(this.svgContainer),this.container.removeChild(this.mouseContainer),this.fullData=null,this.glplot=null,this.stopped=!0,this.camera.mouseListener.enabled=!1,this.mouseContainer.removeEventListener(\"wheel\",this.camera.wheelListener),this.camera=null}},w.plot=function(t,e,r){var n=this.glplot;this.updateRefs(r),this.xaxis.clearCalc(),this.yaxis.clearCalc(),this.updateTraces(t,e),this.updateFx(r.dragmode);var a=r.width,i=r.height;this.updateSize(this.canvas);var o=this.glplotOptions;o.merge(r),o.screenBox=[0,0,a,i];var s={_fullLayout:{_axisConstraintGroups:this.graphDiv._fullLayout._axisConstraintGroups,xaxis:this.xaxis,yaxis:this.yaxis}};m(s,this.xaxis),m(s,this.yaxis);var l,c,u=r._size,h=this.xaxis.domain,f=this.yaxis.domain;for(o.viewBox=[u.l+h[0]*u.w,u.b+f[0]*u.h,a-u.r-(1-h[1])*u.w,i-u.t-(1-f[1])*u.h],this.mouseContainer.style.width=u.w*(h[1]-h[0])+\"px\",this.mouseContainer.style.height=u.h*(f[1]-f[0])+\"px\",this.mouseContainer.height=u.h*(f[1]-f[0]),this.mouseContainer.style.left=u.l+h[0]*u.w+\"px\",this.mouseContainer.style.top=u.t+(1-f[1])*u.h+\"px\",c=0;c<2;++c)(l=this[x[c]])._length=o.viewBox[c+2]-o.viewBox[c],y(this.graphDiv,l),l.setScale();v(s),o.ticks=this.computeTickMarks(),o.dataBox=this.calcDataBox(),o.merge(r),n.update(o),this.glplot.draw()},w.calcDataBox=function(){var t=this.xaxis,e=this.yaxis,r=t.range,n=e.range,a=t.r2l,i=e.r2l;return[a(r[0]),i(n[0]),a(r[1]),i(n[1])]},w.setRanges=function(t){var e=this.xaxis,r=this.yaxis,n=e.l2r,a=r.l2r;e.range=[n(t[0]),n(t[2])],r.range=[a(t[1]),a(t[3])]},w.updateTraces=function(t,e){var r,n,a,i=Object.keys(this.traces);this.fullData=t;t:for(r=0;r<i.length;r++){var o=i[r],s=this.traces[o];for(n=0;n<t.length;n++)if((a=t[n]).uid===o&&a.type===s.type)continue t;s.dispose(),delete this.traces[o]}for(r=0;r<t.length;r++){a=t[r];var l=e[r],c=this.traces[a.uid];c?c.update(a,l):(c=a._module.plot(this,a,l),this.traces[a.uid]=c)}this.glplot.objects.sort(function(t,e){return t._trace.index-e._trace.index})},w.updateFx=function(t){\"lasso\"===t||\"select\"===t?(this.pickCanvas.style[\"pointer-events\"]=\"none\",this.mouseContainer.style[\"pointer-events\"]=\"none\"):(this.pickCanvas.style[\"pointer-events\"]=\"auto\",this.mouseContainer.style[\"pointer-events\"]=\"auto\"),this.mouseContainer.style.cursor=\"pan\"===t?\"move\":\"zoom\"===t?\"crosshair\":null},w.emitPointAction=function(t,e){for(var r,n=t.trace.uid,a=t.pointIndex,i=0;i<this.fullData.length;i++)this.fullData[i].uid===n&&(r=this.fullData[i]);var o={x:t.traceCoord[0],y:t.traceCoord[1],curveNumber:r.index,pointNumber:a,data:r._input,fullData:this.fullData,xaxis:this.xaxis,yaxis:this.yaxis};s.appendArrayPointValue(o,r,a),this.graphDiv.emit(e,{points:[o]})},w.draw=function(){if(!this.stopped){requestAnimationFrame(this.redraw);var t=this.glplot,e=this.camera,r=e.mouseListener,n=1===this.lastButtonState&&0===r.buttons,a=this.fullLayout;this.lastButtonState=r.buttons,this.cameraChanged();var i,o=r.x*t.pixelRatio,l=this.canvas.height-t.pixelRatio*r.y;if(e.boxEnabled&&\"zoom\"===a.dragmode){this.selectBox.enabled=!0;for(var c=this.selectBox.selectBox=[Math.min(e.boxStart[0],e.boxEnd[0]),Math.min(e.boxStart[1],e.boxEnd[1]),Math.max(e.boxStart[0],e.boxEnd[0]),Math.max(e.boxStart[1],e.boxEnd[1])],u=0;u<2;u++)e.boxStart[u]===e.boxEnd[u]&&(c[u]=t.dataBox[u],c[u+2]=t.dataBox[u+2]);t.setDirty()}else if(!e.panning&&this.isMouseOver){this.selectBox.enabled=!1;var h=a._size,f=this.xaxis.domain,p=this.yaxis.domain,d=(i=t.pick(o/t.pixelRatio+h.l+f[0]*h.w,l/t.pixelRatio-(h.t+(1-p[1])*h.h)))&&i.object._trace.handlePick(i);if(d&&n&&this.emitPointAction(d,\"plotly_click\"),i&&\"skip\"!==i.object._trace.hoverinfo&&a.hovermode&&d&&(!this.lastPickResult||this.lastPickResult.traceUid!==d.trace.uid||this.lastPickResult.dataCoord[0]!==d.dataCoord[0]||this.lastPickResult.dataCoord[1]!==d.dataCoord[1])){var g=d;this.lastPickResult={traceUid:d.trace?d.trace.uid:null,dataCoord:d.dataCoord.slice()},this.spikes.update({center:i.dataCoord}),g.screenCoord=[((t.viewBox[2]-t.viewBox[0])*(i.dataCoord[0]-t.dataBox[0])/(t.dataBox[2]-t.dataBox[0])+t.viewBox[0])/t.pixelRatio,(this.canvas.height-(t.viewBox[3]-t.viewBox[1])*(i.dataCoord[1]-t.dataBox[1])/(t.dataBox[3]-t.dataBox[1])-t.viewBox[1])/t.pixelRatio],this.emitPointAction(d,\"plotly_hover\");var v=this.fullData[g.trace.index]||{},m=g.pointIndex,y=s.castHoverinfo(v,a,m);if(y&&\"all\"!==y){var x=y.split(\"+\");-1===x.indexOf(\"x\")&&(g.traceCoord[0]=void 0),-1===x.indexOf(\"y\")&&(g.traceCoord[1]=void 0),-1===x.indexOf(\"z\")&&(g.traceCoord[2]=void 0),-1===x.indexOf(\"text\")&&(g.textLabel=void 0),-1===x.indexOf(\"name\")&&(g.name=void 0)}s.loneHover({x:g.screenCoord[0],y:g.screenCoord[1],xLabel:this.hoverFormatter(\"xaxis\",g.traceCoord[0]),yLabel:this.hoverFormatter(\"yaxis\",g.traceCoord[1]),zLabel:g.traceCoord[2],text:g.textLabel,name:g.name,color:s.castHoverOption(v,m,\"bgcolor\")||g.color,borderColor:s.castHoverOption(v,m,\"bordercolor\"),fontFamily:s.castHoverOption(v,m,\"font.family\"),fontSize:s.castHoverOption(v,m,\"font.size\"),fontColor:s.castHoverOption(v,m,\"font.color\"),nameLength:s.castHoverOption(v,m,\"namelength\"),textAlign:s.castHoverOption(v,m,\"align\")},{container:this.svgContainer,gd:this.graphDiv})}}i||this.unhover(),t.draw()}},w.unhover=function(){this.lastPickResult&&(this.spikes.update({}),this.lastPickResult=null,this.graphDiv.emit(\"plotly_unhover\"),s.loneUnhover(this.svgContainer))},w.hoverFormatter=function(t,e){if(void 0!==e){var r=this[t];return o.tickText(r,r.c2l(e),\"hover\").text}}},{\"../../components/fx\":632,\"../../lib/show_no_webgl_msg\":740,\"../../plots/cartesian/axes\":767,\"../../registry\":848,\"../cartesian/autorange\":766,\"../cartesian/constants\":773,\"../cartesian/constraints\":774,\"./camera\":803,\"./convert\":804,\"gl-plot2d\":288,\"gl-select-box\":300,\"gl-spikes2d\":309,\"webgl-context\":557}],807:[function(t,e,r){\"use strict\";var n=t(\"../../plot_api/edit_types\").overrideAll,a=t(\"../../components/fx/layout_attributes\"),i=t(\"./scene\"),o=t(\"../get_data\").getSubplotData,s=t(\"../../lib\"),l=t(\"../../constants/xmlns_namespaces\");r.name=\"gl3d\",r.attr=\"scene\",r.idRoot=\"scene\",r.idRegex=r.attrRegex=s.counterRegex(\"scene\"),r.attributes=t(\"./layout/attributes\"),r.layoutAttributes=t(\"./layout/layout_attributes\"),r.baseLayoutAttrOverrides=n({hoverlabel:a.hoverlabel},\"plot\",\"nested\"),r.supplyLayoutDefaults=t(\"./layout/defaults\"),r.plot=function(t){for(var e=t._fullLayout,r=t._fullData,n=e._subplots.gl3d,a=0;a<n.length;a++){var s=n[a],l=o(r,\"gl3d\",s),c=e[s],u=c.camera,h=c._scene;h||(h=new i({id:s,graphDiv:t,container:t.querySelector(\".gl-container\"),staticPlot:t._context.staticPlot,plotGlPixelRatio:t._context.plotGlPixelRatio,camera:u},e),c._scene=h),h.viewInitial||(h.viewInitial={up:{x:u.up.x,y:u.up.y,z:u.up.z},eye:{x:u.eye.x,y:u.eye.y,z:u.eye.z},center:{x:u.center.x,y:u.center.y,z:u.center.z}}),h.plot(l,e,t.layout)}},r.clean=function(t,e,r,n){for(var a=n._subplots.gl3d||[],i=0;i<a.length;i++){var o=a[i];!e[o]&&n[o]._scene&&(n[o]._scene.destroy(),n._infolayer&&n._infolayer.selectAll(\".annotation-\"+o).remove())}},r.toSVG=function(t){for(var e=t._fullLayout,r=e._subplots.gl3d,n=e._size,a=0;a<r.length;a++){var i=e[r[a]],o=i.domain,s=i._scene,c=s.toImage(\"png\");e._glimages.append(\"svg:image\").attr({xmlns:l.svg,\"xlink:href\":c,x:n.l+n.w*o.x[0],y:n.t+n.h*(1-o.y[1]),width:n.w*(o.x[1]-o.x[0]),height:n.h*(o.y[1]-o.y[0]),preserveAspectRatio:\"none\"}),s.destroy()}},r.cleanId=function(t){if(t.match(/^scene[0-9]*$/)){var e=t.substr(5);return\"1\"===e&&(e=\"\"),\"scene\"+e}},r.updateFx=function(t){for(var e=t._fullLayout,r=e._subplots.gl3d,n=0;n<r.length;n++){e[r[n]]._scene.updateFx(e.dragmode,e.hovermode)}}},{\"../../components/fx/layout_attributes\":633,\"../../constants/xmlns_namespaces\":696,\"../../lib\":719,\"../../plot_api/edit_types\":750,\"../get_data\":802,\"./layout/attributes\":808,\"./layout/defaults\":812,\"./layout/layout_attributes\":813,\"./scene\":817}],808:[function(t,e,r){\"use strict\";e.exports={scene:{valType:\"subplotid\",dflt:\"scene\",editType:\"calc+clearAxisTypes\"}}},{}],809:[function(t,e,r){\"use strict\";var n=t(\"../../../components/color\"),a=t(\"../../cartesian/layout_attributes\"),i=t(\"../../../lib/extend\").extendFlat,o=t(\"../../../plot_api/edit_types\").overrideAll;e.exports=o({visible:a.visible,showspikes:{valType:\"boolean\",dflt:!0},spikesides:{valType:\"boolean\",dflt:!0},spikethickness:{valType:\"number\",min:0,dflt:2},spikecolor:{valType:\"color\",dflt:n.defaultLine},showbackground:{valType:\"boolean\",dflt:!1},backgroundcolor:{valType:\"color\",dflt:\"rgba(204, 204, 204, 0.5)\"},showaxeslabels:{valType:\"boolean\",dflt:!0},color:a.color,categoryorder:a.categoryorder,categoryarray:a.categoryarray,title:a.title,type:i({},a.type,{values:[\"-\",\"linear\",\"log\",\"date\",\"category\"]}),autorange:a.autorange,rangemode:a.rangemode,range:i({},a.range,{items:[{valType:\"any\",editType:\"plot\",impliedEdits:{\"^autorange\":!1}},{valType:\"any\",editType:\"plot\",impliedEdits:{\"^autorange\":!1}}],anim:!1}),tickmode:a.tickmode,nticks:a.nticks,tick0:a.tick0,dtick:a.dtick,tickvals:a.tickvals,ticktext:a.ticktext,ticks:a.ticks,mirror:a.mirror,ticklen:a.ticklen,tickwidth:a.tickwidth,tickcolor:a.tickcolor,showticklabels:a.showticklabels,tickfont:a.tickfont,tickangle:a.tickangle,tickprefix:a.tickprefix,showtickprefix:a.showtickprefix,ticksuffix:a.ticksuffix,showticksuffix:a.showticksuffix,showexponent:a.showexponent,exponentformat:a.exponentformat,separatethousands:a.separatethousands,tickformat:a.tickformat,tickformatstops:a.tickformatstops,hoverformat:a.hoverformat,showline:a.showline,linecolor:a.linecolor,linewidth:a.linewidth,showgrid:a.showgrid,gridcolor:i({},a.gridcolor,{dflt:\"rgb(204, 204, 204)\"}),gridwidth:a.gridwidth,zeroline:a.zeroline,zerolinecolor:a.zerolinecolor,zerolinewidth:a.zerolinewidth,_deprecated:{title:a._deprecated.title,titlefont:a._deprecated.titlefont}},\"plot\",\"from-root\")},{\"../../../components/color\":594,\"../../../lib/extend\":710,\"../../../plot_api/edit_types\":750,\"../../cartesian/layout_attributes\":779}],810:[function(t,e,r){\"use strict\";var n=t(\"tinycolor2\").mix,a=t(\"../../../lib\"),i=t(\"../../../plot_api/plot_template\"),o=t(\"./axis_attributes\"),s=t(\"../../cartesian/type_defaults\"),l=t(\"../../cartesian/axis_defaults\"),c=[\"xaxis\",\"yaxis\",\"zaxis\"];e.exports=function(t,e,r){var u,h;function f(t,e){return a.coerce(u,h,o,t,e)}for(var p=0;p<c.length;p++){var d=c[p];u=t[d]||{},(h=i.newContainer(e,d))._id=d[0]+r.scene,h._name=d,s(u,h,f,r),l(u,h,f,{font:r.font,letter:d[0],data:r.data,showGrid:!0,noTickson:!0,bgColor:r.bgColor,calendar:r.calendar},r.fullLayout),f(\"gridcolor\",n(h.color,r.bgColor,13600/187).toRgbString()),f(\"title.text\",d[0]),h.setScale=a.noop,f(\"showspikes\")&&(f(\"spikesides\"),f(\"spikethickness\"),f(\"spikecolor\",h.color)),f(\"showaxeslabels\"),f(\"showbackground\")&&f(\"backgroundcolor\")}}},{\"../../../lib\":719,\"../../../plot_api/plot_template\":757,\"../../cartesian/axis_defaults\":769,\"../../cartesian/type_defaults\":790,\"./axis_attributes\":809,tinycolor2:538}],811:[function(t,e,r){\"use strict\";var n=t(\"../../../lib/str2rgbarray\"),a=t(\"../../../lib\"),i=[\"xaxis\",\"yaxis\",\"zaxis\"];function o(){this.bounds=[[-10,-10,-10],[10,10,10]],this.ticks=[[],[],[]],this.tickEnable=[!0,!0,!0],this.tickFont=[\"sans-serif\",\"sans-serif\",\"sans-serif\"],this.tickSize=[12,12,12],this.tickAngle=[0,0,0],this.tickColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.tickPad=[18,18,18],this.labels=[\"x\",\"y\",\"z\"],this.labelEnable=[!0,!0,!0],this.labelFont=[\"Open Sans\",\"Open Sans\",\"Open Sans\"],this.labelSize=[20,20,20],this.labelColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.labelPad=[30,30,30],this.lineEnable=[!0,!0,!0],this.lineMirror=[!1,!1,!1],this.lineWidth=[1,1,1],this.lineColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.lineTickEnable=[!0,!0,!0],this.lineTickMirror=[!1,!1,!1],this.lineTickLength=[10,10,10],this.lineTickWidth=[1,1,1],this.lineTickColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.gridEnable=[!0,!0,!0],this.gridWidth=[1,1,1],this.gridColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.zeroEnable=[!0,!0,!0],this.zeroLineColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.zeroLineWidth=[2,2,2],this.backgroundEnable=[!0,!0,!0],this.backgroundColor=[[.8,.8,.8,.5],[.8,.8,.8,.5],[.8,.8,.8,.5]],this._defaultTickPad=this.tickPad.slice(),this._defaultLabelPad=this.labelPad.slice(),this._defaultLineTickLength=this.lineTickLength.slice()}o.prototype.merge=function(t,e){for(var r=0;r<3;++r){var o=e[i[r]];o.visible?(this.labels[r]=t._meta?a.templateString(o.title.text,t._meta):o.title.text,\"font\"in o.title&&(o.title.font.color&&(this.labelColor[r]=n(o.title.font.color)),o.title.font.family&&(this.labelFont[r]=o.title.font.family),o.title.font.size&&(this.labelSize[r]=o.title.font.size)),\"showline\"in o&&(this.lineEnable[r]=o.showline),\"linecolor\"in o&&(this.lineColor[r]=n(o.linecolor)),\"linewidth\"in o&&(this.lineWidth[r]=o.linewidth),\"showgrid\"in o&&(this.gridEnable[r]=o.showgrid),\"gridcolor\"in o&&(this.gridColor[r]=n(o.gridcolor)),\"gridwidth\"in o&&(this.gridWidth[r]=o.gridwidth),\"log\"===o.type?this.zeroEnable[r]=!1:\"zeroline\"in o&&(this.zeroEnable[r]=o.zeroline),\"zerolinecolor\"in o&&(this.zeroLineColor[r]=n(o.zerolinecolor)),\"zerolinewidth\"in o&&(this.zeroLineWidth[r]=o.zerolinewidth),\"ticks\"in o&&o.ticks?this.lineTickEnable[r]=!0:this.lineTickEnable[r]=!1,\"ticklen\"in o&&(this.lineTickLength[r]=this._defaultLineTickLength[r]=o.ticklen),\"tickcolor\"in o&&(this.lineTickColor[r]=n(o.tickcolor)),\"tickwidth\"in o&&(this.lineTickWidth[r]=o.tickwidth),\"tickangle\"in o&&(this.tickAngle[r]=\"auto\"===o.tickangle?-3600:Math.PI*-o.tickangle/180),\"showticklabels\"in o&&(this.tickEnable[r]=o.showticklabels),\"tickfont\"in o&&(o.tickfont.color&&(this.tickColor[r]=n(o.tickfont.color)),o.tickfont.family&&(this.tickFont[r]=o.tickfont.family),o.tickfont.size&&(this.tickSize[r]=o.tickfont.size)),\"mirror\"in o?-1!==[\"ticks\",\"all\",\"allticks\"].indexOf(o.mirror)?(this.lineTickMirror[r]=!0,this.lineMirror[r]=!0):!0===o.mirror?(this.lineTickMirror[r]=!1,this.lineMirror[r]=!0):(this.lineTickMirror[r]=!1,this.lineMirror[r]=!1):this.lineMirror[r]=!1,\"showbackground\"in o&&!1!==o.showbackground?(this.backgroundEnable[r]=!0,this.backgroundColor[r]=n(o.backgroundcolor)):this.backgroundEnable[r]=!1):(this.tickEnable[r]=!1,this.labelEnable[r]=!1,this.lineEnable[r]=!1,this.lineTickEnable[r]=!1,this.gridEnable[r]=!1,this.zeroEnable[r]=!1,this.backgroundEnable[r]=!1)}},e.exports=function(t,e){var r=new o;return r.merge(t,e),r}},{\"../../../lib\":719,\"../../../lib/str2rgbarray\":742}],812:[function(t,e,r){\"use strict\";var n=t(\"../../../lib\"),a=t(\"../../../components/color\"),i=t(\"../../../registry\"),o=t(\"../../subplot_defaults\"),s=t(\"./axis_defaults\"),l=t(\"./layout_attributes\"),c=t(\"../../get_data\").getSubplotData,u=\"gl3d\";function h(t,e,r,n){for(var o=r(\"bgcolor\"),l=a.combine(o,n.paper_bgcolor),h=[\"up\",\"center\",\"eye\"],f=0;f<h.length;f++)r(\"camera.\"+h[f]+\".x\"),r(\"camera.\"+h[f]+\".y\"),r(\"camera.\"+h[f]+\".z\");r(\"camera.projection.type\");var p=!!r(\"aspectratio.x\")&&!!r(\"aspectratio.y\")&&!!r(\"aspectratio.z\"),d=r(\"aspectmode\",p?\"manual\":\"auto\");p||(t.aspectratio=e.aspectratio={x:1,y:1,z:1},\"manual\"===d&&(e.aspectmode=\"auto\"),t.aspectmode=e.aspectmode);var g=c(n.fullData,u,n.id);s(t,e,{font:n.font,scene:n.id,data:g,bgColor:l,calendar:n.calendar,fullLayout:n.fullLayout}),i.getComponentMethod(\"annotations3d\",\"handleDefaults\")(t,e,n);var v=n.getDfltFromLayout(\"dragmode\");if(!1!==v&&!v)if(v=\"orbit\",t.camera&&t.camera.up){var m=t.camera.up.x,y=t.camera.up.y,x=t.camera.up.z;0!==x&&(m&&y&&x?x/Math.sqrt(m*m+y*y+x*x)>.999&&(v=\"turntable\"):v=\"turntable\")}else v=\"turntable\";r(\"dragmode\",v),r(\"hovermode\",n.getDfltFromLayout(\"hovermode\"))}e.exports=function(t,e,r){var a=e._basePlotModules.length>1;o(t,e,r,{type:u,attributes:l,handleDefaults:h,fullLayout:e,font:e.font,fullData:r,getDfltFromLayout:function(e){if(!a)return n.validate(t[e],l[e])?t[e]:void 0},paper_bgcolor:e.paper_bgcolor,calendar:e.calendar})}},{\"../../../components/color\":594,\"../../../lib\":719,\"../../../registry\":848,\"../../get_data\":802,\"../../subplot_defaults\":842,\"./axis_defaults\":810,\"./layout_attributes\":813}],813:[function(t,e,r){\"use strict\";var n=t(\"./axis_attributes\"),a=t(\"../../domain\").attributes,i=t(\"../../../lib/extend\").extendFlat,o=t(\"../../../lib\").counterRegex;function s(t,e,r){return{x:{valType:\"number\",dflt:t,editType:\"camera\"},y:{valType:\"number\",dflt:e,editType:\"camera\"},z:{valType:\"number\",dflt:r,editType:\"camera\"},editType:\"camera\"}}e.exports={_arrayAttrRegexps:[o(\"scene\",\".annotations\",!0)],bgcolor:{valType:\"color\",dflt:\"rgba(0,0,0,0)\",editType:\"plot\"},camera:{up:i(s(0,0,1),{}),center:i(s(0,0,0),{}),eye:i(s(1.25,1.25,1.25),{}),projection:{type:{valType:\"enumerated\",values:[\"perspective\",\"orthographic\"],dflt:\"perspective\",editType:\"calc\"},editType:\"calc\"},editType:\"camera\"},domain:a({name:\"scene\",editType:\"plot\"}),aspectmode:{valType:\"enumerated\",values:[\"auto\",\"cube\",\"data\",\"manual\"],dflt:\"auto\",editType:\"plot\",impliedEdits:{\"aspectratio.x\":void 0,\"aspectratio.y\":void 0,\"aspectratio.z\":void 0}},aspectratio:{x:{valType:\"number\",min:0,editType:\"plot\",impliedEdits:{\"^aspectmode\":\"manual\"}},y:{valType:\"number\",min:0,editType:\"plot\",impliedEdits:{\"^aspectmode\":\"manual\"}},z:{valType:\"number\",min:0,editType:\"plot\",impliedEdits:{\"^aspectmode\":\"manual\"}},editType:\"plot\",impliedEdits:{aspectmode:\"manual\"}},xaxis:n,yaxis:n,zaxis:n,dragmode:{valType:\"enumerated\",values:[\"orbit\",\"turntable\",\"zoom\",\"pan\",!1],editType:\"plot\"},hovermode:{valType:\"enumerated\",values:[\"closest\",!1],dflt:\"closest\",editType:\"modebar\"},uirevision:{valType:\"any\",editType:\"none\"},editType:\"plot\",_deprecated:{cameraposition:{valType:\"info_array\",editType:\"camera\"}}}},{\"../../../lib\":719,\"../../../lib/extend\":710,\"../../domain\":792,\"./axis_attributes\":809}],814:[function(t,e,r){\"use strict\";var n=t(\"../../../lib/str2rgbarray\"),a=[\"xaxis\",\"yaxis\",\"zaxis\"];function i(){this.enabled=[!0,!0,!0],this.colors=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.drawSides=[!0,!0,!0],this.lineWidth=[1,1,1]}i.prototype.merge=function(t){for(var e=0;e<3;++e){var r=t[a[e]];r.visible?(this.enabled[e]=r.showspikes,this.colors[e]=n(r.spikecolor),this.drawSides[e]=r.spikesides,this.lineWidth[e]=r.spikethickness):(this.enabled[e]=!1,this.drawSides[e]=!1)}},e.exports=function(t){var e=new i;return e.merge(t),e}},{\"../../../lib/str2rgbarray\":742}],815:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=t.axesOptions,r=t.glplot.axesPixels,s=t.fullSceneLayout,l=[[],[],[]],c=0;c<3;++c){var u=s[i[c]];if(u._length=(r[c].hi-r[c].lo)*r[c].pixelsPerDataUnit/t.dataScale[c],Math.abs(u._length)===1/0||isNaN(u._length))l[c]=[];else{u._input_range=u.range.slice(),u.range[0]=r[c].lo/t.dataScale[c],u.range[1]=r[c].hi/t.dataScale[c],u._m=1/(t.dataScale[c]*r[c].pixelsPerDataUnit),u.range[0]===u.range[1]&&(u.range[0]-=1,u.range[1]+=1);var h=u.tickmode;if(\"auto\"===u.tickmode){u.tickmode=\"linear\";var f=u.nticks||a.constrain(u._length/40,4,9);n.autoTicks(u,Math.abs(u.range[1]-u.range[0])/f)}for(var p=n.calcTicks(u),d=0;d<p.length;++d)p[d].x=p[d].x*t.dataScale[c],\"date\"===u.type&&(p[d].text=p[d].text.replace(/\\<br\\>/g,\" \"));l[c]=p,u.tickmode=h}}e.ticks=l;for(var c=0;c<3;++c){o[c]=.5*(t.glplot.bounds[0][c]+t.glplot.bounds[1][c]);for(var d=0;d<2;++d)e.bounds[d][c]=t.glplot.bounds[d][c]}t.contourLevels=function(t){for(var e=new Array(3),r=0;r<3;++r){for(var n=t[r],a=new Array(n.length),i=0;i<n.length;++i)a[i]=n[i].x;e[r]=a}return e}(l)};var n=t(\"../../cartesian/axes\"),a=t(\"../../../lib\"),i=[\"xaxis\",\"yaxis\",\"zaxis\"],o=[0,0,0]},{\"../../../lib\":719,\"../../cartesian/axes\":767}],816:[function(t,e,r){\"use strict\";function n(t,e){var r,n,a=[0,0,0,0];for(r=0;r<4;++r)for(n=0;n<4;++n)a[n]+=t[4*r+n]*e[r];return a}e.exports=function(t,e){return n(t.projection,n(t.view,n(t.model,[e[0],e[1],e[2],1])))}},{}],817:[function(t,e,r){\"use strict\";var n,a,i=t(\"gl-plot3d\").createCamera,o=t(\"gl-plot3d\").createScene,s=t(\"webgl-context\"),l=t(\"has-passive-events\"),c=t(\"../../registry\"),u=t(\"../../lib\"),h=t(\"../../plots/cartesian/axes\"),f=t(\"../../components/fx\"),p=t(\"../../lib/str2rgbarray\"),d=t(\"../../lib/show_no_webgl_msg\"),g=t(\"./project\"),v=t(\"./layout/convert\"),m=t(\"./layout/spikes\"),y=t(\"./layout/tick_marks\");function x(t,e,r,i){if(t.initializeGLCamera(),!function(t,e,r,i,l){var c={canvas:i,gl:l,container:t.container,axes:t.axesOptions,spikes:t.spikeOptions,pickRadius:10,snapToData:!0,autoScale:!0,autoBounds:!1,cameraObject:e,pixelRatio:r};if(t.staticMode){if(!(a||(n=document.createElement(\"canvas\"),a=s({canvas:n,preserveDrawingBuffer:!0,premultipliedAlpha:!0,antialias:!0}))))throw new Error(\"error creating static canvas/context for image server\");c.pixelRatio=t.pixelRatio,c.gl=a,c.canvas=n}var u=0;try{t.glplot=o(c)}catch(e){u++;try{t.glplot=o(c)}catch(t){u++}}return u<2}(t,t.camera,e,r,i))return d(t);var c=t.graphDiv,p=function(t){if(!1!==t.fullSceneLayout.dragmode){var e={};e[t.id+\".camera\"]=T(t.camera),t.saveCamera(c.layout),t.graphDiv.emit(\"plotly_relayout\",e)}};return t.glplot.canvas.addEventListener(\"mouseup\",function(){p(t)}),t.glplot.canvas.addEventListener(\"wheel\",function(){c._context._scrollZoom.gl3d&&p(t)},!!l&&{passive:!1}),t.glplot.canvas.addEventListener(\"mousemove\",function(){if(!1!==t.fullSceneLayout.dragmode&&0!==t.camera.mouseListener.buttons){var e={};e[t.id+\".camera\"]=T(t.camera),t.graphDiv.emit(\"plotly_relayouting\",e)}}),t.staticMode||t.glplot.canvas.addEventListener(\"webglcontextlost\",function(e){c&&c.emit&&c.emit(\"plotly_webglcontextlost\",{event:e,layer:t.id})},!1),t.glplot.camera=t.camera,t.glplot.oncontextloss=function(){t.recoverContext()},t.glplot.onrender=function(t){var e,r=t.graphDiv,n=t.svgContainer,a=t.container.getBoundingClientRect(),i=a.width,o=a.height;n.setAttributeNS(null,\"viewBox\",\"0 0 \"+i+\" \"+o),n.setAttributeNS(null,\"width\",i),n.setAttributeNS(null,\"height\",o),y(t),t.glplot.axes.update(t.axesOptions);for(var s,l=Object.keys(t.traces),c=null,p=t.glplot.selection,d=0;d<l.length;++d)\"skip\"!==(e=t.traces[l[d]]).data.hoverinfo&&e.handlePick(p)&&(c=e),e.setContourLevels&&e.setContourLevels();function v(e,r){var n=t.fullSceneLayout[e];return h.tickText(n,n.d2l(r),\"hover\").text}if(null!==c){var m=g(t.glplot.cameraParams,p.dataCoordinate);e=c.data;var x,b=r._fullData[e.index],_=p.index,w={xLabel:v(\"xaxis\",p.traceCoordinate[0]),yLabel:v(\"yaxis\",p.traceCoordinate[1]),zLabel:v(\"zaxis\",p.traceCoordinate[2])},k=f.castHoverinfo(b,t.fullLayout,_),T=(k||\"\").split(\"+\"),A=k&&\"all\"===k;b.hovertemplate||A||(-1===T.indexOf(\"x\")&&(w.xLabel=void 0),-1===T.indexOf(\"y\")&&(w.yLabel=void 0),-1===T.indexOf(\"z\")&&(w.zLabel=void 0),-1===T.indexOf(\"text\")&&(p.textLabel=void 0),-1===T.indexOf(\"name\")&&(c.name=void 0));var M=[];\"cone\"===e.type||\"streamtube\"===e.type?(w.uLabel=v(\"xaxis\",p.traceCoordinate[3]),(A||-1!==T.indexOf(\"u\"))&&M.push(\"u: \"+w.uLabel),w.vLabel=v(\"yaxis\",p.traceCoordinate[4]),(A||-1!==T.indexOf(\"v\"))&&M.push(\"v: \"+w.vLabel),w.wLabel=v(\"zaxis\",p.traceCoordinate[5]),(A||-1!==T.indexOf(\"w\"))&&M.push(\"w: \"+w.wLabel),w.normLabel=p.traceCoordinate[6].toPrecision(3),(A||-1!==T.indexOf(\"norm\"))&&M.push(\"norm: \"+w.normLabel),\"streamtube\"===e.type&&(w.divergenceLabel=p.traceCoordinate[7].toPrecision(3),(A||-1!==T.indexOf(\"divergence\"))&&M.push(\"divergence: \"+w.divergenceLabel)),p.textLabel&&M.push(p.textLabel),x=M.join(\"<br>\")):\"isosurface\"===e.type||\"volume\"===e.type?(w.valueLabel=h.tickText(t.mockAxis,t.mockAxis.d2l(p.traceCoordinate[3]),\"hover\").text,M.push(\"value: \"+w.valueLabel),p.textLabel&&M.push(p.textLabel),x=M.join(\"<br>\")):x=p.textLabel;var S={x:p.traceCoordinate[0],y:p.traceCoordinate[1],z:p.traceCoordinate[2],data:b._input,fullData:b,curveNumber:b.index,pointNumber:_};f.appendArrayPointValue(S,b,_),e._module.eventData&&(S=b._module.eventData(S,p,b,{},_));var E={points:[S]};t.fullSceneLayout.hovermode&&f.loneHover({trace:b,x:(.5+.5*m[0]/m[3])*i,y:(.5-.5*m[1]/m[3])*o,xLabel:w.xLabel,yLabel:w.yLabel,zLabel:w.zLabel,text:x,name:c.name,color:f.castHoverOption(b,_,\"bgcolor\")||c.color,borderColor:f.castHoverOption(b,_,\"bordercolor\"),fontFamily:f.castHoverOption(b,_,\"font.family\"),fontSize:f.castHoverOption(b,_,\"font.size\"),fontColor:f.castHoverOption(b,_,\"font.color\"),nameLength:f.castHoverOption(b,_,\"namelength\"),textAlign:f.castHoverOption(b,_,\"align\"),hovertemplate:u.castOption(b,_,\"hovertemplate\"),hovertemplateLabels:u.extendFlat({},S,w),eventData:[S]},{container:n,gd:r}),p.buttons&&p.distance<5?r.emit(\"plotly_click\",E):r.emit(\"plotly_hover\",E),s=E}else f.loneUnhover(n),r.emit(\"plotly_unhover\",s);t.drawAnnotations(t)}.bind(null,t),t.traces={},t.make4thDimension(),!0}function b(t,e){var r=document.createElement(\"div\"),n=t.container;this.graphDiv=t.graphDiv;var a=document.createElementNS(\"http://www.w3.org/2000/svg\",\"svg\");a.style.position=\"absolute\",a.style.top=a.style.left=\"0px\",a.style.width=a.style.height=\"100%\",a.style[\"z-index\"]=20,a.style[\"pointer-events\"]=\"none\",r.appendChild(a),this.svgContainer=a,r.id=t.id,r.style.position=\"absolute\",r.style.top=r.style.left=\"0px\",r.style.width=r.style.height=\"100%\",n.appendChild(r),this.fullLayout=e,this.id=t.id||\"scene\",this.fullSceneLayout=e[this.id],this.plotArgs=[[],{},{}],this.axesOptions=v(e,e[this.id]),this.spikeOptions=m(e[this.id]),this.container=r,this.staticMode=!!t.staticPlot,this.pixelRatio=this.pixelRatio||t.plotGlPixelRatio||2,this.dataScale=[1,1,1],this.contourLevels=[[],[],[]],this.convertAnnotations=c.getComponentMethod(\"annotations3d\",\"convert\"),this.drawAnnotations=c.getComponentMethod(\"annotations3d\",\"draw\"),x(this,this.pixelRatio)}var _=b.prototype;_.initializeGLCamera=function(){var t=this.fullSceneLayout.camera,e=\"orthographic\"===t.projection.type;this.camera=i(this.container,{center:[t.center.x,t.center.y,t.center.z],eye:[t.eye.x,t.eye.y,t.eye.z],up:[t.up.x,t.up.y,t.up.z],_ortho:e,zoomMin:.01,zoomMax:100,mode:\"orbit\"})},_.recoverContext=function(){var t=this,e=this.glplot.gl,r=this.glplot.canvas,n=this.glplot.camera,a=this.glplot.pixelRatio;this.glplot.dispose(),requestAnimationFrame(function i(){e.isContextLost()?requestAnimationFrame(i):x(t,n,a,r)?t.plot.apply(t,t.plotArgs):u.error(\"Catastrophic and unrecoverable WebGL error. Context lost.\")})};var w=[\"xaxis\",\"yaxis\",\"zaxis\"];function k(t,e,r){for(var n=t.fullSceneLayout,a=0;a<3;a++){var i=w[a],o=i.charAt(0),s=n[i],l=e[o],c=e[o+\"calendar\"],h=e[\"_\"+o+\"length\"];if(u.isArrayOrTypedArray(l))for(var f,p=0;p<(h||l.length);p++)if(u.isArrayOrTypedArray(l[p]))for(var d=0;d<l[p].length;++d)f=s.d2l(l[p][d],0,c),!isNaN(f)&&isFinite(f)&&(r[0][a]=Math.min(r[0][a],f),r[1][a]=Math.max(r[1][a],f));else f=s.d2l(l[p],0,c),!isNaN(f)&&isFinite(f)&&(r[0][a]=Math.min(r[0][a],f),r[1][a]=Math.max(r[1][a],f));else r[0][a]=Math.min(r[0][a],0),r[1][a]=Math.max(r[1][a],h-1)}}function T(t){return{up:{x:t.up[0],y:t.up[1],z:t.up[2]},center:{x:t.center[0],y:t.center[1],z:t.center[2]},eye:{x:t.eye[0],y:t.eye[1],z:t.eye[2]},projection:{type:!0===t._ortho?\"orthographic\":\"perspective\"}}}_.plot=function(t,e,r){if(this.plotArgs=[t,e,r],!this.glplot.contextLost){var n,a,i,o,s,l,c=e[this.id],u=r[this.id];c.bgcolor?this.glplot.clearColor=p(c.bgcolor):this.glplot.clearColor=[0,0,0,0],this.glplot.snapToData=!0,this.fullLayout=e,this.fullSceneLayout=c,this.glplotLayout=c,this.axesOptions.merge(e,c),this.spikeOptions.merge(c),this.setCamera(c.camera),this.updateFx(c.dragmode,c.hovermode),this.camera.enableWheel=this.graphDiv._context._scrollZoom.gl3d,this.glplot.update({}),this.setConvert(s),t?Array.isArray(t)||(t=[t]):t=[];var h=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]];for(i=0;i<t.length;++i)!0===(n=t[i]).visible&&0!==n._length&&k(this,n,h);!function(t,e){for(var r=t.fullSceneLayout,n=r.annotations||[],a=0;a<3;a++)for(var i=w[a],o=i.charAt(0),s=r[i],l=0;l<n.length;l++){var c=n[l];if(c.visible){var u=s.r2l(c[o]);!isNaN(u)&&isFinite(u)&&(e[0][a]=Math.min(e[0][a],u),e[1][a]=Math.max(e[1][a],u))}}}(this,h);var f=[1,1,1];for(o=0;o<3;++o)h[1][o]===h[0][o]?f[o]=1:f[o]=1/(h[1][o]-h[0][o]);for(this.dataScale=f,this.convertAnnotations(this),i=0;i<t.length;++i)!0===(n=t[i]).visible&&0!==n._length&&((a=this.traces[n.uid])?a.data.type===n.type?a.update(n):(a.dispose(),a=n._module.plot(this,n),this.traces[n.uid]=a):(a=n._module.plot(this,n),this.traces[n.uid]=a),a.name=n.name);var d=Object.keys(this.traces);t:for(i=0;i<d.length;++i){for(o=0;o<t.length;++o)if(t[o].uid===d[i]&&!0===t[o].visible&&0!==t[o]._length)continue t;(a=this.traces[d[i]]).dispose(),delete this.traces[d[i]]}this.glplot.objects.sort(function(t,e){return t._trace.data.index-e._trace.data.index});var g=[[0,0,0],[0,0,0]],v=[],m={};for(i=0;i<3;++i){if((l=(s=c[w[i]]).type)in m?(m[l].acc*=f[i],m[l].count+=1):m[l]={acc:f[i],count:1},s.autorange){g[0][i]=1/0,g[1][i]=-1/0;var y=this.glplot.objects,x=this.fullSceneLayout.annotations||[],b=s._name.charAt(0);for(o=0;o<y.length;o++){var _=y[o],T=_.bounds,A=_._trace.data._pad||0;\"ErrorBars\"===_.constructor.name&&s._lowerLogErrorBound?g[0][i]=Math.min(g[0][i],s._lowerLogErrorBound):g[0][i]=Math.min(g[0][i],T[0][i]/f[i]-A),g[1][i]=Math.max(g[1][i],T[1][i]/f[i]+A)}for(o=0;o<x.length;o++){var M=x[o];if(M.visible){var S=s.r2l(M[b]);g[0][i]=Math.min(g[0][i],S),g[1][i]=Math.max(g[1][i],S)}}if(\"rangemode\"in s&&\"tozero\"===s.rangemode&&(g[0][i]=Math.min(g[0][i],0),g[1][i]=Math.max(g[1][i],0)),g[0][i]>g[1][i])g[0][i]=-1,g[1][i]=1;else{var E=g[1][i]-g[0][i];g[0][i]-=E/32,g[1][i]+=E/32}if(\"reversed\"===s.autorange){var C=g[0][i];g[0][i]=g[1][i],g[1][i]=C}}else{var L=s.range;g[0][i]=s.r2l(L[0]),g[1][i]=s.r2l(L[1])}g[0][i]===g[1][i]&&(g[0][i]-=1,g[1][i]+=1),v[i]=g[1][i]-g[0][i],this.glplot.bounds[0][i]=g[0][i]*f[i],this.glplot.bounds[1][i]=g[1][i]*f[i]}var P=[1,1,1];for(i=0;i<3;++i){var O=m[l=(s=c[w[i]]).type];P[i]=Math.pow(O.acc,1/O.count)/f[i]}var I;if(\"auto\"===c.aspectmode)I=Math.max.apply(null,P)/Math.min.apply(null,P)<=4?P:[1,1,1];else if(\"cube\"===c.aspectmode)I=[1,1,1];else if(\"data\"===c.aspectmode)I=P;else{if(\"manual\"!==c.aspectmode)throw new Error(\"scene.js aspectRatio was not one of the enumerated types\");var z=c.aspectratio;I=[z.x,z.y,z.z]}c.aspectratio.x=u.aspectratio.x=I[0],c.aspectratio.y=u.aspectratio.y=I[1],c.aspectratio.z=u.aspectratio.z=I[2],this.glplot.aspect=I;var D=c.domain||null,R=e._size||null;if(D&&R){var F=this.container.style;F.position=\"absolute\",F.left=R.l+D.x[0]*R.w+\"px\",F.top=R.t+(1-D.y[1])*R.h+\"px\",F.width=R.w*(D.x[1]-D.x[0])+\"px\",F.height=R.h*(D.y[1]-D.y[0])+\"px\"}this.glplot.redraw()}},_.destroy=function(){this.glplot&&(this.camera.mouseListener.enabled=!1,this.container.removeEventListener(\"wheel\",this.camera.wheelListener),this.camera=this.glplot.camera=null,this.glplot.dispose(),this.container.parentNode.removeChild(this.container),this.glplot=null)},_.getCamera=function(){return this.glplot.camera.view.recalcMatrix(this.camera.view.lastT()),T(this.glplot.camera)},_.setCamera=function(t){var e;this.glplot.camera.lookAt.apply(this,[[(e=t).eye.x,e.eye.y,e.eye.z],[e.center.x,e.center.y,e.center.z],[e.up.x,e.up.y,e.up.z]]);var r=\"orthographic\"===t.projection.type;if(r!==this.glplot.camera._ortho){this.glplot.redraw();var n=this.glplot.pixelRatio,a=this.glplot.clearColor;this.glplot.gl.clearColor(a[0],a[1],a[2],a[3]),this.glplot.gl.clear(this.glplot.gl.DEPTH_BUFFER_BIT|this.glplot.gl.COLOR_BUFFER_BIT),this.glplot.dispose(),x(this,n),this.glplot.camera._ortho=r}},_.saveCamera=function(t){var e=this.fullLayout,r=this.getCamera(),n=u.nestedProperty(t,this.id+\".camera\"),a=n.get(),i=!1;function o(t,e,r,n){var a=[\"up\",\"center\",\"eye\"],i=[\"x\",\"y\",\"z\"];return e[a[r]]&&t[a[r]][i[n]]===e[a[r]][i[n]]}if(void 0===a)i=!0;else{for(var s=0;s<3;s++)for(var l=0;l<3;l++)if(!o(r,a,s,l)){i=!0;break}(!a.projection||r.projection&&r.projection.type!==a.projection.type)&&(i=!0)}if(i){var h={};h[this.id+\".camera\"]=a,c.call(\"_storeDirectGUIEdit\",t,e._preGUI,h),n.set(r),u.nestedProperty(e,this.id+\".camera\").set(r)}return i},_.updateFx=function(t,e){var r=this.camera;if(r)if(\"orbit\"===t)r.mode=\"orbit\",r.keyBindingMode=\"rotate\";else if(\"turntable\"===t){r.up=[0,0,1],r.mode=\"turntable\",r.keyBindingMode=\"rotate\";var n=this.graphDiv,a=n._fullLayout,i=this.fullSceneLayout.camera,o=i.up.x,s=i.up.y,l=i.up.z;if(l/Math.sqrt(o*o+s*s+l*l)<.999){var h=this.id+\".camera.up\",f={x:0,y:0,z:1},p={};p[h]=f;var d=n.layout;c.call(\"_storeDirectGUIEdit\",d,a._preGUI,p),i.up=f,u.nestedProperty(d,h).set(f)}}else r.keyBindingMode=t;this.fullSceneLayout.hovermode=e},_.toImage=function(t){t||(t=\"png\"),this.staticMode&&this.container.appendChild(n),this.glplot.redraw();var e=this.glplot.gl,r=e.drawingBufferWidth,a=e.drawingBufferHeight;e.bindFramebuffer(e.FRAMEBUFFER,null);var i=new Uint8Array(r*a*4);e.readPixels(0,0,r,a,e.RGBA,e.UNSIGNED_BYTE,i);for(var o=0,s=a-1;o<s;++o,--s)for(var l=0;l<r;++l)for(var c=0;c<4;++c){var u=i[4*(r*o+l)+c];i[4*(r*o+l)+c]=i[4*(r*s+l)+c],i[4*(r*s+l)+c]=u}var h=document.createElement(\"canvas\");h.width=r,h.height=a;var f,p=h.getContext(\"2d\"),d=p.createImageData(r,a);switch(d.data.set(i),p.putImageData(d,0,0),t){case\"jpeg\":f=h.toDataURL(\"image/jpeg\");break;case\"webp\":f=h.toDataURL(\"image/webp\");break;default:f=h.toDataURL(\"image/png\")}return this.staticMode&&this.container.removeChild(n),f},_.setConvert=function(){for(var t=0;t<3;t++){var e=this.fullSceneLayout[w[t]];h.setConvert(e,this.fullLayout),e.setScale=u.noop}},_.make4thDimension=function(){var t=this.graphDiv._fullLayout;this.mockAxis={type:\"linear\",showexponent:\"all\",exponentformat:\"B\"},h.setConvert(this.mockAxis,t)},e.exports=b},{\"../../components/fx\":632,\"../../lib\":719,\"../../lib/show_no_webgl_msg\":740,\"../../lib/str2rgbarray\":742,\"../../plots/cartesian/axes\":767,\"../../registry\":848,\"./layout/convert\":811,\"./layout/spikes\":814,\"./layout/tick_marks\":815,\"./project\":816,\"gl-plot3d\":291,\"has-passive-events\":412,\"webgl-context\":557}],818:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n){n=n||t.length;for(var a=new Array(n),i=0;i<n;i++)a[i]=[t[i],e[i],r[i]];return a}},{}],819:[function(t,e,r){\"use strict\";var n=t(\"./font_attributes\"),a=t(\"./animation_attributes\"),i=t(\"../components/color/attributes\"),o=t(\"./pad_attributes\"),s=t(\"../lib/extend\").extendFlat,l=n({editType:\"calc\"});l.family.dflt='\"Open Sans\", verdana, arial, sans-serif',l.size.dflt=12,l.color.dflt=i.defaultLine,e.exports={font:l,title:{text:{valType:\"string\",editType:\"layoutstyle\"},font:n({editType:\"layoutstyle\"}),xref:{valType:\"enumerated\",dflt:\"container\",values:[\"container\",\"paper\"],editType:\"layoutstyle\"},yref:{valType:\"enumerated\",dflt:\"container\",values:[\"container\",\"paper\"],editType:\"layoutstyle\"},x:{valType:\"number\",min:0,max:1,dflt:.5,editType:\"layoutstyle\"},y:{valType:\"number\",min:0,max:1,dflt:\"auto\",editType:\"layoutstyle\"},xanchor:{valType:\"enumerated\",dflt:\"auto\",values:[\"auto\",\"left\",\"center\",\"right\"],editType:\"layoutstyle\"},yanchor:{valType:\"enumerated\",dflt:\"auto\",values:[\"auto\",\"top\",\"middle\",\"bottom\"],editType:\"layoutstyle\"},pad:s(o({editType:\"layoutstyle\"}),{}),editType:\"layoutstyle\"},autosize:{valType:\"boolean\",dflt:!1,editType:\"none\"},width:{valType:\"number\",min:10,dflt:700,editType:\"plot\"},height:{valType:\"number\",min:10,dflt:450,editType:\"plot\"},margin:{l:{valType:\"number\",min:0,dflt:80,editType:\"plot\"},r:{valType:\"number\",min:0,dflt:80,editType:\"plot\"},t:{valType:\"number\",min:0,dflt:100,editType:\"plot\"},b:{valType:\"number\",min:0,dflt:80,editType:\"plot\"},pad:{valType:\"number\",min:0,dflt:0,editType:\"plot\"},autoexpand:{valType:\"boolean\",dflt:!0,editType:\"plot\"},editType:\"plot\"},paper_bgcolor:{valType:\"color\",dflt:i.background,editType:\"plot\"},plot_bgcolor:{valType:\"color\",dflt:i.background,editType:\"layoutstyle\"},separators:{valType:\"string\",editType:\"plot\"},hidesources:{valType:\"boolean\",dflt:!1,editType:\"plot\"},showlegend:{valType:\"boolean\",editType:\"legend\"},colorway:{valType:\"colorlist\",dflt:i.defaults,editType:\"calc\"},datarevision:{valType:\"any\",editType:\"calc\"},uirevision:{valType:\"any\",editType:\"none\"},editrevision:{valType:\"any\",editType:\"none\"},selectionrevision:{valType:\"any\",editType:\"none\"},template:{valType:\"any\",editType:\"calc\"},modebar:{orientation:{valType:\"enumerated\",values:[\"v\",\"h\"],dflt:\"h\",editType:\"modebar\"},bgcolor:{valType:\"color\",editType:\"modebar\"},color:{valType:\"color\",editType:\"modebar\"},activecolor:{valType:\"color\",editType:\"modebar\"},uirevision:{valType:\"any\",editType:\"none\"},editType:\"modebar\"},meta:{valType:\"any\",arrayOk:!0,editType:\"plot\"},transition:s({},a.transition,{editType:\"none\"}),_deprecated:{title:{valType:\"string\",editType:\"layoutstyle\"},titlefont:n({editType:\"layoutstyle\"})}}},{\"../components/color/attributes\":593,\"../lib/extend\":710,\"./animation_attributes\":762,\"./font_attributes\":793,\"./pad_attributes\":827}],820:[function(t,e,r){\"use strict\";var n={\"open-street-map\":{id:\"osm\",version:8,sources:{\"plotly-osm-tiles\":{type:\"raster\",attribution:'<a href=\"http://www.openstreetmap.org/about/\" target=\"_blank\">\\xa9 OpenStreetMap</a>',tiles:[\"https://a.tile.openstreetmap.org/{z}/{x}/{y}.png\",\"https://b.tile.openstreetmap.org/{z}/{x}/{y}.png\"],tileSize:256}},layers:[{id:\"plotly-osm-tiles\",type:\"raster\",source:\"plotly-osm-tiles\",minzoom:0,maxzoom:22}]},\"white-bg\":{id:\"white-bg\",version:8,sources:{},layers:[{id:\"white-bg\",type:\"background\",paint:{\"background-color\":\"#FFFFFF\"},minzoom:0,maxzoom:22}]},\"carto-positron\":{id:\"carto-positron\",version:8,sources:{\"plotly-carto-positron\":{type:\"raster\",attribution:'<a href=\"https://carto.com/\" target=\"_blank\">\\xa9 CARTO</a>',tiles:[\"https://cartodb-basemaps-c.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png\"],tileSize:256}},layers:[{id:\"plotly-carto-positron\",type:\"raster\",source:\"plotly-carto-positron\",minzoom:0,maxzoom:22}]},\"carto-darkmatter\":{id:\"carto-darkmatter\",version:8,sources:{\"plotly-carto-darkmatter\":{type:\"raster\",attribution:'<a href=\"https://carto.com/\" target=\"_blank\">\\xa9 CARTO</a>',tiles:[\"https://cartodb-basemaps-c.global.ssl.fastly.net/dark_all/{z}/{x}/{y}.png\"],tileSize:256}},layers:[{id:\"plotly-carto-darkmatter\",type:\"raster\",source:\"plotly-carto-darkmatter\",minzoom:0,maxzoom:22}]},\"stamen-terrain\":{id:\"stamen-terrain\",version:8,sources:{\"plotly-stamen-terrain\":{type:\"raster\",attribution:'Map tiles by <a href=\"http://stamen.com\">Stamen Design</a>, under <a href=\"http://creativecommons.org/licenses/by/3.0\">CC BY 3.0</a> | Data by <a href=\"http://openstreetmap.org\">OpenStreetMap</a>, under <a href=\"http://www.openstreetmap.org/copyright\">ODbL</a>.',tiles:[\"https://stamen-tiles.a.ssl.fastly.net/terrain/{z}/{x}/{y}.png\"],tileSize:256}},layers:[{id:\"plotly-stamen-terrain\",type:\"raster\",source:\"plotly-stamen-terrain\",minzoom:0,maxzoom:22}]},\"stamen-toner\":{id:\"stamen-toner\",version:8,sources:{\"plotly-stamen-toner\":{type:\"raster\",attribution:'Map tiles by <a href=\"http://stamen.com\">Stamen Design</a>, under <a href=\"http://creativecommons.org/licenses/by/3.0\">CC BY 3.0</a> | Data by <a href=\"http://openstreetmap.org\">OpenStreetMap</a>, under <a href=\"http://www.openstreetmap.org/copyright\">ODbL</a>.',tiles:[\"https://stamen-tiles.a.ssl.fastly.net/toner/{z}/{x}/{y}.png\"],tileSize:256}},layers:[{id:\"plotly-stamen-toner\",type:\"raster\",source:\"plotly-stamen-toner\",minzoom:0,maxzoom:22}]},\"stamen-watercolor\":{id:\"stamen-watercolor\",version:8,sources:{\"plotly-stamen-watercolor\":{type:\"raster\",attribution:'Map tiles by <a href=\"http://stamen.com\">Stamen Design</a>, under <a href=\"http://creativecommons.org/licenses/by/3.0\">CC BY 3.0</a> | Data by <a href=\"http://openstreetmap.org\">OpenStreetMap</a>, under <a href=\"http://creativecommons.org/licenses/by-sa/3.0\">CC BY SA</a>.',tiles:[\"https://stamen-tiles.a.ssl.fastly.net/watercolor/{z}/{x}/{y}.png\"],tileSize:256}},layers:[{id:\"plotly-stamen-watercolor\",type:\"raster\",source:\"plotly-stamen-watercolor\",minzoom:0,maxzoom:22}]}},a=Object.keys(n);e.exports={requiredVersion:\"1.3.2\",styleUrlPrefix:\"mapbox://styles/mapbox/\",styleUrlSuffix:\"v9\",styleValuesMapbox:[\"basic\",\"streets\",\"outdoors\",\"light\",\"dark\",\"satellite\",\"satellite-streets\"],styleValueDflt:\"basic\",stylesNonMapbox:n,styleValuesNonMapbox:a,traceLayerPrefix:\"plotly-trace-layer-\",layoutLayerPrefix:\"plotly-layout-layer-\",wrongVersionErrorMsg:[\"Your custom plotly.js bundle is not using the correct mapbox-gl version\",\"Please install mapbox-gl@1.3.2.\"].join(\"\\n\"),noAccessTokenErrorMsg:[\"Missing Mapbox access token.\",\"Mapbox trace type require a Mapbox access token to be registered.\",\"For example:\",\"  Plotly.plot(gd, data, layout, { mapboxAccessToken: 'my-access-token' });\",\"More info here: https://www.mapbox.com/help/define-access-token/\"].join(\"\\n\"),missingStyleErrorMsg:[\"No valid mapbox style found, please set `mapbox.style` to one of:\",a.join(\", \"),\"or register a Mapbox access token to use a Mapbox-served style.\"].join(\"\\n\"),multipleTokensErrorMsg:[\"Set multiple mapbox access token across different mapbox subplot,\",\"using first token found as mapbox-gl does not allow multipleaccess tokens on the same page.\"].join(\"\\n\"),mapOnErrorMsg:\"Mapbox error.\",mapboxLogo:{path0:\"m 10.5,1.24 c -5.11,0 -9.25,4.15 -9.25,9.25 0,5.1 4.15,9.25 9.25,9.25 5.1,0 9.25,-4.15 9.25,-9.25 0,-5.11 -4.14,-9.25 -9.25,-9.25 z m 4.39,11.53 c -1.93,1.93 -4.78,2.31 -6.7,2.31 -0.7,0 -1.41,-0.05 -2.1,-0.16 0,0 -1.02,-5.64 2.14,-8.81 0.83,-0.83 1.95,-1.28 3.13,-1.28 1.27,0 2.49,0.51 3.39,1.42 1.84,1.84 1.89,4.75 0.14,6.52 z\",path1:\"M 10.5,-0.01 C 4.7,-0.01 0,4.7 0,10.49 c 0,5.79 4.7,10.5 10.5,10.5 5.8,0 10.5,-4.7 10.5,-10.5 C 20.99,4.7 16.3,-0.01 10.5,-0.01 Z m 0,19.75 c -5.11,0 -9.25,-4.15 -9.25,-9.25 0,-5.1 4.14,-9.26 9.25,-9.26 5.11,0 9.25,4.15 9.25,9.25 0,5.13 -4.14,9.26 -9.25,9.26 z\",path2:\"M 14.74,6.25 C 12.9,4.41 9.98,4.35 8.23,6.1 5.07,9.27 6.09,14.91 6.09,14.91 c 0,0 5.64,1.02 8.81,-2.14 C 16.64,11 16.59,8.09 14.74,6.25 Z m -2.27,4.09 -0.91,1.87 -0.9,-1.87 -1.86,-0.91 1.86,-0.9 0.9,-1.87 0.91,1.87 1.86,0.9 z\",polygon:\"11.56,12.21 10.66,10.34 8.8,9.43 10.66,8.53 11.56,6.66 12.47,8.53 14.33,9.43 12.47,10.34\"},styleRules:{map:\"overflow:hidden;position:relative;\",\"missing-css\":\"display:none;\",canary:\"background-color:salmon;\",\"ctrl-bottom-left\":\"position: absolute; pointer-events: none; z-index: 2; bottom: 0; left: 0;\",\"ctrl-bottom-right\":\"position: absolute; pointer-events: none; z-index: 2; right: 0; bottom: 0;\",ctrl:\"clear: both; pointer-events: auto; transform: translate(0, 0);\",\"ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-inner\":\"display: none;\",\"ctrl-attrib.mapboxgl-compact:hover .mapboxgl-ctrl-attrib-inner\":\"display: block; margin-top:2px\",\"ctrl-attrib.mapboxgl-compact:hover\":\"padding: 2px 24px 2px 4px; visibility: visible; margin-top: 6px;\",\"ctrl-attrib.mapboxgl-compact::after\":'content: \"\"; cursor: pointer; position: absolute; background-image: url(\\'data:image/svg+xml;charset=utf-8,%3Csvg viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"%3E %3Cpath fill=\"%23333333\" fill-rule=\"evenodd\" d=\"M4,10a6,6 0 1,0 12,0a6,6 0 1,0 -12,0 M9,7a1,1 0 1,0 2,0a1,1 0 1,0 -2,0 M9,10a1,1 0 1,1 2,0l0,3a1,1 0 1,1 -2,0\"/%3E %3C/svg%3E\\'); background-color: rgba(255, 255, 255, 0.5); width: 24px; height: 24px; box-sizing: border-box; border-radius: 12px;',\"ctrl-attrib.mapboxgl-compact\":\"min-height: 20px; padding: 0; margin: 10px; position: relative; background-color: #fff; border-radius: 3px 12px 12px 3px;\",\"ctrl-bottom-right > .mapboxgl-ctrl-attrib.mapboxgl-compact::after\":\"bottom: 0; right: 0\",\"ctrl-bottom-left > .mapboxgl-ctrl-attrib.mapboxgl-compact::after\":\"bottom: 0; left: 0\",\"ctrl-bottom-left .mapboxgl-ctrl\":\"margin: 0 0 10px 10px; float: left;\",\"ctrl-bottom-right .mapboxgl-ctrl\":\"margin: 0 10px 10px 0; float: right;\",\"ctrl-attrib\":\"color: rgba(0, 0, 0, 0.75); text-decoration: none; font-size: 12px\",\"ctrl-attrib a\":\"color: rgba(0, 0, 0, 0.75); text-decoration: none; font-size: 12px\",\"ctrl-attrib a:hover\":\"color: inherit; text-decoration: underline;\",\"ctrl-attrib .mapbox-improve-map\":\"font-weight: bold; margin-left: 2px;\",\"attrib-empty\":\"display: none;\",\"ctrl-logo\":'display:block; width: 21px; height: 21px; background-image: url(\\'data:image/svg+xml;charset=utf-8,%3C?xml version=\"1.0\" encoding=\"utf-8\"?%3E %3Csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 21 21\" style=\"enable-background:new 0 0 21 21;\" xml:space=\"preserve\"%3E%3Cg transform=\"translate(0,0.01)\"%3E%3Cpath d=\"m 10.5,1.24 c -5.11,0 -9.25,4.15 -9.25,9.25 0,5.1 4.15,9.25 9.25,9.25 5.1,0 9.25,-4.15 9.25,-9.25 0,-5.11 -4.14,-9.25 -9.25,-9.25 z m 4.39,11.53 c -1.93,1.93 -4.78,2.31 -6.7,2.31 -0.7,0 -1.41,-0.05 -2.1,-0.16 0,0 -1.02,-5.64 2.14,-8.81 0.83,-0.83 1.95,-1.28 3.13,-1.28 1.27,0 2.49,0.51 3.39,1.42 1.84,1.84 1.89,4.75 0.14,6.52 z\" style=\"opacity:0.9;fill:%23ffffff;enable-background:new\" class=\"st0\"/%3E%3Cpath d=\"M 10.5,-0.01 C 4.7,-0.01 0,4.7 0,10.49 c 0,5.79 4.7,10.5 10.5,10.5 5.8,0 10.5,-4.7 10.5,-10.5 C 20.99,4.7 16.3,-0.01 10.5,-0.01 Z m 0,19.75 c -5.11,0 -9.25,-4.15 -9.25,-9.25 0,-5.1 4.14,-9.26 9.25,-9.26 5.11,0 9.25,4.15 9.25,9.25 0,5.13 -4.14,9.26 -9.25,9.26 z\" style=\"opacity:0.35;enable-background:new\" class=\"st1\"/%3E%3Cpath d=\"M 14.74,6.25 C 12.9,4.41 9.98,4.35 8.23,6.1 5.07,9.27 6.09,14.91 6.09,14.91 c 0,0 5.64,1.02 8.81,-2.14 C 16.64,11 16.59,8.09 14.74,6.25 Z m -2.27,4.09 -0.91,1.87 -0.9,-1.87 -1.86,-0.91 1.86,-0.9 0.9,-1.87 0.91,1.87 1.86,0.9 z\" style=\"opacity:0.35;enable-background:new\" class=\"st1\"/%3E%3Cpolygon points=\"11.56,12.21 10.66,10.34 8.8,9.43 10.66,8.53 11.56,6.66 12.47,8.53 14.33,9.43 12.47,10.34 \" style=\"opacity:0.9;fill:%23ffffff;enable-background:new\" class=\"st0\"/%3E%3C/g%3E%3C/svg%3E\\')'}}},{}],821:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e){var r=t.split(\" \"),a=r[0],i=r[1],o=n.isArrayOrTypedArray(e)?n.mean(e):e,s=.5+o/100,l=1.5+o/100,c=[\"\",\"\"],u=[0,0];switch(a){case\"top\":c[0]=\"top\",u[1]=-l;break;case\"bottom\":c[0]=\"bottom\",u[1]=l}switch(i){case\"left\":c[1]=\"right\",u[0]=-s;break;case\"right\":c[1]=\"left\",u[0]=s}return{anchor:c[0]&&c[1]?c.join(\"-\"):c[0]?c[0]:c[1]?c[1]:\"center\",offset:u}}},{\"../../lib\":719}],822:[function(t,e,r){\"use strict\";var n=t(\"mapbox-gl\"),a=t(\"../../lib\"),i=t(\"../../plots/get_data\").getSubplotCalcData,o=t(\"../../constants/xmlns_namespaces\"),s=t(\"d3\"),l=t(\"../../components/drawing\"),c=t(\"../../lib/svg_text_utils\"),u=t(\"./mapbox\"),h=r.constants=t(\"./constants\");function f(t){return\"string\"==typeof t&&(-1!==h.styleValuesMapbox.indexOf(t)||0===t.indexOf(\"mapbox://\"))}r.name=\"mapbox\",r.attr=\"subplot\",r.idRoot=\"mapbox\",r.idRegex=r.attrRegex=a.counterRegex(\"mapbox\"),r.attributes={subplot:{valType:\"subplotid\",dflt:\"mapbox\",editType:\"calc\"}},r.layoutAttributes=t(\"./layout_attributes\"),r.supplyLayoutDefaults=t(\"./layout_defaults\"),r.plot=function(t){var e=t._fullLayout,r=t.calcdata,o=e._subplots.mapbox;if(n.version!==h.requiredVersion)throw new Error(h.wrongVersionErrorMsg);var s=function(t,e){var r=t._fullLayout;if(\"\"===t._context.mapboxAccessToken)return\"\";for(var n=[],i=[],o=!1,s=!1,l=0;l<e.length;l++){var c=r[e[l]],u=c.accesstoken;f(c.style)&&(u?a.pushUnique(n,u):(f(c._input.style)&&(a.error(\"Uses Mapbox map style, but did not set an access token.\"),o=!0),s=!0)),u&&a.pushUnique(i,u)}if(s){var p=o?h.noAccessTokenErrorMsg:h.missingStyleErrorMsg;throw new Error(p)}return n.length?(n.length>1&&a.warn(h.multipleTokensErrorMsg),n[0]):(i.length&&a.log([\"Listed mapbox access token(s)\",i.join(\",\"),\"but did not use a Mapbox map style, ignoring token(s).\"].join(\" \")),\"\")}(t,o);n.accessToken=s;for(var l=0;l<o.length;l++){var c=o[l],p=i(r,\"mapbox\",c),d=e[c],g=d._subplot;g||(g=new u(t,c),e[c]._subplot=g),g.viewInitial||(g.viewInitial={center:a.extendFlat({},d.center),zoom:d.zoom,bearing:d.bearing,pitch:d.pitch}),g.plot(p,e,t._promises)}},r.clean=function(t,e,r,n){for(var a=n._subplots.mapbox||[],i=0;i<a.length;i++){var o=a[i];!e[o]&&n[o]._subplot&&n[o]._subplot.destroy()}},r.toSVG=function(t){for(var e=t._fullLayout,r=e._subplots.mapbox,n=e._size,a=0;a<r.length;a++){var i=e[r[a]],u=i.domain,f=i._subplot.toImage(\"png\");e._glimages.append(\"svg:image\").attr({xmlns:o.svg,\"xlink:href\":f,x:n.l+n.w*u.x[0],y:n.t+n.h*(1-u.y[1]),width:n.w*(u.x[1]-u.x[0]),height:n.h*(u.y[1]-u.y[0]),preserveAspectRatio:\"none\"});var p=s.select(i._subplot.div);if(!(null===p.select(\".mapboxgl-ctrl-logo\").node().offsetParent)){var d=e._glimages.append(\"g\");d.attr(\"transform\",\"translate(\"+(n.l+n.w*u.x[0]+10)+\", \"+(n.t+n.h*(1-u.y[0])-31)+\")\"),d.append(\"path\").attr(\"d\",h.mapboxLogo.path0).style({opacity:.9,fill:\"#ffffff\",\"enable-background\":\"new\"}),d.append(\"path\").attr(\"d\",h.mapboxLogo.path1).style(\"opacity\",.35).style(\"enable-background\",\"new\"),d.append(\"path\").attr(\"d\",h.mapboxLogo.path2).style(\"opacity\",.35).style(\"enable-background\",\"new\"),d.append(\"polygon\").attr(\"points\",h.mapboxLogo.polygon).style({opacity:.9,fill:\"#ffffff\",\"enable-background\":\"new\"})}var g=p.select(\".mapboxgl-ctrl-attrib\").text().replace(\"Improve this map\",\"\"),v=e._glimages.append(\"g\"),m=v.append(\"text\");m.text(g).classed(\"static-attribution\",!0).attr({\"font-size\":12,\"font-family\":\"Arial\",color:\"rgba(0, 0, 0, 0.75)\",\"text-anchor\":\"end\",\"data-unformatted\":g});var y=l.bBox(m.node()),x=n.w*(u.x[1]-u.x[0]);if(y.width>x/2){var b=g.split(\"|\").join(\"<br>\");m.text(b).attr(\"data-unformatted\",b).call(c.convertToTspans,t),y=l.bBox(m.node())}m.attr(\"transform\",\"translate(-3, \"+(8-y.height)+\")\"),v.insert(\"rect\",\".static-attribution\").attr({x:-y.width-6,y:-y.height-3,width:y.width+6,height:y.height+3,fill:\"rgba(255, 255, 255, 0.75)\"});var _=1;y.width+6>x&&(_=x/(y.width+6));var w=[n.l+n.w*u.x[1],n.t+n.h*(1-u.y[0])];v.attr(\"transform\",\"translate(\"+w[0]+\",\"+w[1]+\") scale(\"+_+\")\")}},r.updateFx=function(t){for(var e=t._fullLayout,r=e._subplots.mapbox,n=0;n<r.length;n++){e[r[n]]._subplot.updateFx(e)}}},{\"../../components/drawing\":615,\"../../constants/xmlns_namespaces\":696,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../../plots/get_data\":802,\"./constants\":820,\"./layout_attributes\":824,\"./layout_defaults\":825,\"./mapbox\":826,d3:164,\"mapbox-gl\":427}],823:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./convert_text_opts\"),i=t(\"./constants\");function o(t,e){this.subplot=t,this.uid=t.uid+\"-\"+e,this.index=e,this.idSource=\"source-\"+this.uid,this.idLayer=i.layoutLayerPrefix+this.uid,this.sourceType=null,this.source=null,this.layerType=null,this.below=null,this.visible=!1}var s=o.prototype;function l(t){if(!t.visible)return!1;var e=t.source;if(Array.isArray(e)&&e.length>0){for(var r=0;r<e.length;r++)if(\"string\"!=typeof e[r]||0===e[r].length)return!1;return!0}return n.isPlainObject(e)||\"string\"==typeof e&&e.length>0}function c(t){var e={},r={};switch(t.type){case\"circle\":n.extendFlat(r,{\"circle-radius\":t.circle.radius,\"circle-color\":t.color,\"circle-opacity\":t.opacity});break;case\"line\":n.extendFlat(r,{\"line-width\":t.line.width,\"line-color\":t.color,\"line-opacity\":t.opacity,\"line-dasharray\":t.line.dash});break;case\"fill\":n.extendFlat(r,{\"fill-color\":t.color,\"fill-outline-color\":t.fill.outlinecolor,\"fill-opacity\":t.opacity});break;case\"symbol\":var i=t.symbol,o=a(i.textposition,i.iconsize);n.extendFlat(e,{\"icon-image\":i.icon+\"-15\",\"icon-size\":i.iconsize/10,\"text-field\":i.text,\"text-size\":i.textfont.size,\"text-anchor\":o.anchor,\"text-offset\":o.offset,\"symbol-placement\":i.placement}),n.extendFlat(r,{\"icon-color\":t.color,\"text-color\":i.textfont.color,\"text-opacity\":t.opacity})}return{layout:e,paint:r}}s.update=function(t){this.visible?this.needsNewSource(t)?(this.removeLayer(),this.updateSource(t),this.updateLayer(t)):this.needsNewLayer(t)?this.updateLayer(t):this.updateStyle(t):(this.updateSource(t),this.updateLayer(t)),this.visible=l(t)},s.needsNewSource=function(t){return this.sourceType!==t.sourcetype||this.source!==t.source||this.layerType!==t.type},s.needsNewLayer=function(t){return this.layerType!==t.type||this.below!==this.subplot.belowLookup[\"layout-\"+this.index]},s.updateSource=function(t){var e=this.subplot.map;if(e.getSource(this.idSource)&&e.removeSource(this.idSource),this.sourceType=t.sourcetype,this.source=t.source,l(t)){var r=function(t){var e,r=t.sourcetype,n=t.source,a={type:r};\"geojson\"===r?e=\"data\":\"vector\"===r?e=\"string\"==typeof n?\"url\":\"tiles\":\"raster\"===r?(e=\"tiles\",a.tileSize=256):\"image\"===r&&(e=\"url\",a.coordinates=t.coordinates);a[e]=n,t.sourceattribution&&(a.attribution=t.sourceattribution);return a}(t);e.addSource(this.idSource,r)}},s.updateLayer=function(t){var e,r=this.subplot,n=c(t),a=this.subplot.belowLookup[\"layout-\"+this.index];if(\"traces\"===a)for(var o=r.getMapLayers(),s=0;s<o.length;s++){var u=o[s].id;if(\"string\"==typeof u&&0===u.indexOf(i.traceLayerPrefix)){e=u;break}}else e=a;this.removeLayer(),l(t)&&r.addLayer({id:this.idLayer,source:this.idSource,\"source-layer\":t.sourcelayer||\"\",type:t.type,minzoom:t.minzoom,maxzoom:t.maxzoom,layout:n.layout,paint:n.paint},e),this.layerType=t.type,this.below=a},s.updateStyle=function(t){if(l(t)){var e=c(t);this.subplot.setOptions(this.idLayer,\"setLayoutProperty\",e.layout),this.subplot.setOptions(this.idLayer,\"setPaintProperty\",e.paint)}},s.removeLayer=function(){var t=this.subplot.map;t.getLayer(this.idLayer)&&t.removeLayer(this.idLayer)},s.dispose=function(){var t=this.subplot.map;t.getLayer(this.idLayer)&&t.removeLayer(this.idLayer),t.getSource(this.idSource)&&t.removeSource(this.idSource)},e.exports=function(t,e,r){var n=new o(t,e);return n.update(r),n}},{\"../../lib\":719,\"./constants\":820,\"./convert_text_opts\":821}],824:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/color\").defaultLine,i=t(\"../domain\").attributes,o=t(\"../font_attributes\"),s=t(\"../../traces/scatter/attributes\").textposition,l=t(\"../../plot_api/edit_types\").overrideAll,c=t(\"../../plot_api/plot_template\").templatedArray,u=t(\"./constants\"),h=o({});h.family.dflt=\"Open Sans Regular, Arial Unicode MS Regular\",(e.exports=l({_arrayAttrRegexps:[n.counterRegex(\"mapbox\",\".layers\",!0)],domain:i({name:\"mapbox\"}),accesstoken:{valType:\"string\",noBlank:!0,strict:!0},style:{valType:\"any\",values:u.styleValuesMapbox.concat(u.styleValuesNonMapbox),dflt:u.styleValueDflt},center:{lon:{valType:\"number\",dflt:0},lat:{valType:\"number\",dflt:0}},zoom:{valType:\"number\",dflt:1},bearing:{valType:\"number\",dflt:0},pitch:{valType:\"number\",dflt:0},layers:c(\"layer\",{visible:{valType:\"boolean\",dflt:!0},sourcetype:{valType:\"enumerated\",values:[\"geojson\",\"vector\",\"raster\",\"image\"],dflt:\"geojson\"},source:{valType:\"any\"},sourcelayer:{valType:\"string\",dflt:\"\"},sourceattribution:{valType:\"string\"},type:{valType:\"enumerated\",values:[\"circle\",\"line\",\"fill\",\"symbol\",\"raster\"],dflt:\"circle\"},coordinates:{valType:\"any\"},below:{valType:\"string\"},color:{valType:\"color\",dflt:a},opacity:{valType:\"number\",min:0,max:1,dflt:1},minzoom:{valType:\"number\",min:0,max:24,dflt:0},maxzoom:{valType:\"number\",min:0,max:24,dflt:24},circle:{radius:{valType:\"number\",dflt:15}},line:{width:{valType:\"number\",dflt:2},dash:{valType:\"data_array\"}},fill:{outlinecolor:{valType:\"color\",dflt:a}},symbol:{icon:{valType:\"string\",dflt:\"marker\"},iconsize:{valType:\"number\",dflt:10},text:{valType:\"string\",dflt:\"\"},placement:{valType:\"enumerated\",values:[\"point\",\"line\",\"line-center\"],dflt:\"point\"},textfont:h,textposition:n.extendFlat({},s,{arrayOk:!1})}})},\"plot\",\"from-root\")).uirevision={valType:\"any\",editType:\"none\"}},{\"../../components/color\":594,\"../../lib\":719,\"../../plot_api/edit_types\":750,\"../../plot_api/plot_template\":757,\"../../traces/scatter/attributes\":1111,\"../domain\":792,\"../font_attributes\":793,\"./constants\":820}],825:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../subplot_defaults\"),i=t(\"../array_container_defaults\"),o=t(\"./layout_attributes\");function s(t,e,r,n){r(\"accesstoken\",n.accessToken),r(\"style\"),r(\"center.lon\"),r(\"center.lat\"),r(\"zoom\"),r(\"bearing\"),r(\"pitch\"),i(t,e,{name:\"layers\",handleItemDefaults:l}),e._input=t}function l(t,e){function r(r,a){return n.coerce(t,e,o.layers,r,a)}if(r(\"visible\")){var a,i=r(\"sourcetype\"),s=\"raster\"===i||\"image\"===i;r(\"source\"),r(\"sourceattribution\"),\"vector\"===i&&r(\"sourcelayer\"),\"image\"===i&&r(\"coordinates\"),s&&(a=\"raster\");var l=r(\"type\",a);s&&\"raster\"!==l&&(l=e.type=\"raster\",n.log(\"Source types *raster* and *image* must drawn *raster* layer type.\")),r(\"below\"),r(\"color\"),r(\"opacity\"),r(\"minzoom\"),r(\"maxzoom\"),\"circle\"===l&&r(\"circle.radius\"),\"line\"===l&&(r(\"line.width\"),r(\"line.dash\")),\"fill\"===l&&r(\"fill.outlinecolor\"),\"symbol\"===l&&(r(\"symbol.icon\"),r(\"symbol.iconsize\"),r(\"symbol.text\"),n.coerceFont(r,\"symbol.textfont\"),r(\"symbol.textposition\"),r(\"symbol.placement\"))}}e.exports=function(t,e,r){a(t,e,r,{type:\"mapbox\",attributes:o,handleDefaults:s,partition:\"y\",accessToken:e._mapboxAccessToken})}},{\"../../lib\":719,\"../array_container_defaults\":763,\"../subplot_defaults\":842,\"./layout_attributes\":824}],826:[function(t,e,r){\"use strict\";var n=t(\"mapbox-gl\"),a=t(\"d3\"),i=t(\"../../components/fx\"),o=t(\"../../lib\"),s=t(\"../../registry\"),l=t(\"../cartesian/axes\"),c=t(\"../../components/dragelement\"),u=t(\"../cartesian/select\").prepSelect,h=t(\"../cartesian/select\").selectOnClick,f=t(\"./constants\"),p=t(\"./layers\");function d(t,e){this.id=e,this.gd=t;var r=t._fullLayout,n=t._context;this.container=r._glcontainer.node(),this.isStatic=n.staticPlot,this.uid=r._uid+\"-\"+this.id,this.div=null,this.xaxis=null,this.yaxis=null,this.createFramework(r),this.map=null,this.accessToken=null,this.styleObj=null,this.traceHash={},this.layerList=[],this.belowLookup={}}var g=d.prototype;g.plot=function(t,e,r){var n,a=this,i=e[a.id];a.map&&i.accesstoken!==a.accessToken&&(a.map.remove(),a.map=null,a.styleObj=null,a.traceHash=[],a.layerList={}),n=a.map?new Promise(function(r,n){a.updateMap(t,e,r,n)}):new Promise(function(r,n){a.createMap(t,e,r,n)}),r.push(n)},g.createMap=function(t,e,r,a){var i=this,o=e[i.id],s=i.styleObj=m(o.style);i.accessToken=o.accesstoken;var l=i.map=new n.Map({container:i.div,style:s.style,center:x(o.center),zoom:o.zoom,bearing:o.bearing,pitch:o.pitch,interactive:!i.isStatic,preserveDrawingBuffer:i.isStatic,doubleClickZoom:!1,boxZoom:!1,attributionControl:!1}).addControl(new n.AttributionControl({compact:!0}));l._canvas.style.left=\"0px\",l._canvas.style.top=\"0px\",i.rejectOnError(a),i.isStatic||i.initFx(t,e);var c=[];c.push(new Promise(function(t){l.once(\"load\",t)})),c=c.concat(i.fetchMapData(t,e)),Promise.all(c).then(function(){i.fillBelowLookup(t,e),i.updateData(t),i.updateLayout(e),i.resolveOnRender(r)}).catch(a)},g.fetchMapData=function(t){var e=[];function r(t){return new Promise(function(e,r){a.json(t,function(n,a){if(n){delete PlotlyGeoAssets[t];var i=404===n.status?'GeoJSON at URL \"'+t+'\" does not exist.':\"Unexpected error while fetching from \"+t;return r(new Error(i))}PlotlyGeoAssets[t]=a,e(a)})})}for(var n=0;n<t.length;n++){var i=t[n][0].trace.geojson;\"string\"!=typeof i||PlotlyGeoAssets[i]||(PlotlyGeoAssets[i]=\"pending\",e.push(r(i)))}return e},g.updateMap=function(t,e,r,n){var a=this,i=a.map,o=e[this.id];a.rejectOnError(n);var s=[],l=m(o.style);a.styleObj.id!==l.id&&(a.styleObj=l,i.setStyle(l.style),a.traceHash={},s.push(new Promise(function(t){i.once(\"styledata\",t)}))),s=s.concat(a.fetchMapData(t,e)),Promise.all(s).then(function(){a.fillBelowLookup(t,e),a.updateData(t),a.updateLayout(e),a.resolveOnRender(r)}).catch(n)},g.fillBelowLookup=function(t,e){var r,n,a=e[this.id].layers,i=this.belowLookup={},o=!1;for(r=0;r<t.length;r++){var s=t[r][0].trace,l=s._module;\"string\"==typeof s.below?n=s.below:l.getBelow&&(n=l.getBelow(s,this)),\"\"===n&&(o=!0),i[\"trace-\"+s.uid]=n||\"\"}for(r=0;r<a.length;r++){var c=a[r];n=\"string\"==typeof c.below?c.below:o?\"traces\":\"\",i[\"layout-\"+r]=n}var u,h,f={};for(u in i)f[n=i[u]]?f[n].push(u):f[n]=[u];for(n in f){var p=f[n];if(p.length>1)for(r=0;r<p.length;r++)0===(u=p[r]).indexOf(\"trace-\")?(h=u.split(\"trace-\")[1],this.traceHash[h]&&(this.traceHash[h].below=null)):0===u.indexOf(\"layout-\")&&(h=u.split(\"layout-\")[1],this.layerList[h]&&(this.layerList[h].below=null))}};var v={choroplethmapbox:0,densitymapbox:1,scattermapbox:2};function m(t){var e={};return o.isPlainObject(t)?(e.id=t.id,e.style=t):\"string\"==typeof t?(e.id=t,-1!==f.styleValuesMapbox.indexOf(t)?e.style=y(t):f.stylesNonMapbox[t]?e.style=f.stylesNonMapbox[t]:e.style=t):(e.id=f.styleValueDflt,e.style=y(f.styleValueDflt)),e.transition={duration:0,delay:0},e}function y(t){return f.styleUrlPrefix+t+\"-\"+f.styleUrlSuffix}function x(t){return[t.lon,t.lat]}g.updateData=function(t){var e,r,n,a,i=this.traceHash,o=t.slice().sort(function(t,e){return v[t[0].trace.type]-v[e[0].trace.type]});for(n=0;n<o.length;n++){var s=o[n];(e=i[(r=s[0].trace).uid])?e.update(s):r._module&&(i[r.uid]=r._module.plot(this,s))}var l=Object.keys(i);t:for(n=0;n<l.length;n++){var c=l[n];for(a=0;a<t.length;a++)if(c===(r=t[a][0].trace).uid)continue t;(e=i[c]).dispose(),delete i[c]}},g.updateLayout=function(t){var e=this.map,r=t[this.id];e.setCenter(x(r.center)),e.setZoom(r.zoom),e.setBearing(r.bearing),e.setPitch(r.pitch),this.updateLayers(t),this.updateFramework(t),this.updateFx(t),this.map.resize(),this.gd._context._scrollZoom.mapbox?e.scrollZoom.enable():e.scrollZoom.disable()},g.resolveOnRender=function(t){var e=this.map;e.on(\"render\",function r(){e.loaded()&&(e.off(\"render\",r),setTimeout(t,10))})},g.rejectOnError=function(t){var e=this.map;function r(){t(new Error(f.mapOnErrorMsg))}e.once(\"error\",r),e.once(\"style.error\",r),e.once(\"source.error\",r),e.once(\"tile.error\",r),e.once(\"layer.error\",r)},g.createFramework=function(t){var e=this,r=e.div=document.createElement(\"div\");r.id=e.uid,r.style.position=\"absolute\",e.container.appendChild(r),e.xaxis={_id:\"x\",c2p:function(t){return e.project(t).x}},e.yaxis={_id:\"y\",c2p:function(t){return e.project(t).y}},e.updateFramework(t),e.mockAxis={type:\"linear\",showexponent:\"all\",exponentformat:\"B\"},l.setConvert(e.mockAxis,t)},g.initFx=function(t,e){var r=this,n=r.gd,a=r.map,o=!1;function l(){i.loneUnhover(e._hoverlayer)}function c(){var t=r.getView();n.emit(\"plotly_relayouting\",r.getViewEdits(t))}a.on(\"moveend\",function(t){if(r.map){var e=n._fullLayout;if(t.originalEvent||o){var a=e[r.id];s.call(\"_storeDirectGUIEdit\",n.layout,e._preGUI,r.getViewEdits(a));var i=r.getView();a._input.center=a.center=i.center,a._input.zoom=a.zoom=i.zoom,a._input.bearing=a.bearing=i.bearing,a._input.pitch=a.pitch=i.pitch,n.emit(\"plotly_relayout\",r.getViewEdits(i))}o=!1,e._rehover&&e._rehover()}}),a.on(\"wheel\",function(){o=!0}),a.on(\"mousemove\",function(t){var e=r.div.getBoundingClientRect();t.clientX=t.point.x+e.left,t.clientY=t.point.y+e.top,t.target.getBoundingClientRect=function(){return e},r.xaxis.p2c=function(){return t.lngLat.lng},r.yaxis.p2c=function(){return t.lngLat.lat},n._fullLayout._rehover=function(){n._fullLayout._hoversubplot===r.id&&n._fullLayout[r.id]&&i.hover(n,t,r.id)},i.hover(n,t,r.id),n._fullLayout._hoversubplot=r.id}),a.on(\"dragstart\",l),a.on(\"zoomstart\",l),a.on(\"mouseout\",function(){n._fullLayout._hoversubplot=null}),a.on(\"drag\",c),a.on(\"zoom\",c),a.on(\"dblclick\",function(){var t=n._fullLayout[r.id];s.call(\"_storeDirectGUIEdit\",n.layout,n._fullLayout._preGUI,r.getViewEdits(t));var e=r.viewInitial;a.setCenter(x(e.center)),a.setZoom(e.zoom),a.setBearing(e.bearing),a.setPitch(e.pitch);var i=r.getView();t._input.center=t.center=i.center,t._input.zoom=t.zoom=i.zoom,t._input.bearing=t.bearing=i.bearing,t._input.pitch=t.pitch=i.pitch,n.emit(\"plotly_doubleclick\",null),n.emit(\"plotly_relayout\",r.getViewEdits(i))}),r.clearSelect=function(){n._fullLayout._zoomlayer.selectAll(\".select-outline\").remove()},r.onClickInPanFn=function(t){return function(e){var a=n._fullLayout.clickmode;a.indexOf(\"select\")>-1&&h(e.originalEvent,n,[r.xaxis],[r.yaxis],r.id,t),a.indexOf(\"event\")>-1&&i.click(n,e.originalEvent)}}},g.updateFx=function(t){var e=this,r=e.map,n=e.gd;if(!e.isStatic){var a,i=t.dragmode;a=\"select\"===i?function(t,r){(t.range={})[e.id]=[l([r.xmin,r.ymin]),l([r.xmax,r.ymax])]}:function(t,r,n){(t.lassoPoints={})[e.id]=n.filtered.map(l)};var s=e.dragOptions;e.dragOptions=o.extendDeep(s||{},{element:e.div,gd:n,plotinfo:{id:e.id,xaxis:e.xaxis,yaxis:e.yaxis,fillRangeItems:a},xaxes:[e.xaxis],yaxes:[e.yaxis],subplot:e.id}),r.off(\"click\",e.onClickInPanHandler),\"select\"===i||\"lasso\"===i?(r.dragPan.disable(),r.on(\"zoomstart\",e.clearSelect),e.dragOptions.prepFn=function(t,r,n){u(t,r,n,e.dragOptions,i)},c.init(e.dragOptions)):(r.dragPan.enable(),r.off(\"zoomstart\",e.clearSelect),e.div.onmousedown=null,e.onClickInPanHandler=e.onClickInPanFn(e.dragOptions),r.on(\"click\",e.onClickInPanHandler))}function l(t){var r=e.map.unproject(t);return[r.lng,r.lat]}},g.updateFramework=function(t){var e=t[this.id].domain,r=t._size,n=this.div.style;n.width=r.w*(e.x[1]-e.x[0])+\"px\",n.height=r.h*(e.y[1]-e.y[0])+\"px\",n.left=r.l+e.x[0]*r.w+\"px\",n.top=r.t+(1-e.y[1])*r.h+\"px\",this.xaxis._offset=r.l+e.x[0]*r.w,this.xaxis._length=r.w*(e.x[1]-e.x[0]),this.yaxis._offset=r.t+(1-e.y[1])*r.h,this.yaxis._length=r.h*(e.y[1]-e.y[0])},g.updateLayers=function(t){var e,r=t[this.id].layers,n=this.layerList;if(r.length!==n.length){for(e=0;e<n.length;e++)n[e].dispose();for(n=this.layerList=[],e=0;e<r.length;e++)n.push(p(this,e,r[e]))}else for(e=0;e<r.length;e++)n[e].update(r[e])},g.destroy=function(){this.map&&(this.map.remove(),this.map=null,this.container.removeChild(this.div))},g.toImage=function(){return this.map.stop(),this.map.getCanvas().toDataURL()},g.setOptions=function(t,e,r){for(var n in r)this.map[e](t,n,r[n])},g.getMapLayers=function(){return this.map.getStyle().layers},g.addLayer=function(t,e){var r=this.map;if(\"string\"==typeof e){if(\"\"===e)return void r.addLayer(t,e);for(var n=this.getMapLayers(),a=0;a<n.length;a++)if(e===n[a].id)return void r.addLayer(t,e);o.warn([\"Trying to add layer with *below* value\",e,\"referencing a layer that does not exist\",\"or that does not yet exist.\"].join(\" \"))}r.addLayer(t)},g.project=function(t){return this.map.project(new n.LngLat(t[0],t[1]))},g.getView=function(){var t=this.map,e=t.getCenter();return{center:{lon:e.lng,lat:e.lat},zoom:t.getZoom(),bearing:t.getBearing(),pitch:t.getPitch()}},g.getViewEdits=function(t){for(var e=this.id,r=[\"center\",\"zoom\",\"bearing\",\"pitch\"],n={},a=0;a<r.length;a++){var i=r[a];n[e+\".\"+i]=t[i]}return n},e.exports=d},{\"../../components/dragelement\":612,\"../../components/fx\":632,\"../../lib\":719,\"../../registry\":848,\"../cartesian/axes\":767,\"../cartesian/select\":784,\"./constants\":820,\"./layers\":823,d3:164,\"mapbox-gl\":427}],827:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.editType;return{t:{valType:\"number\",dflt:0,editType:e},r:{valType:\"number\",dflt:0,editType:e},b:{valType:\"number\",dflt:0,editType:e},l:{valType:\"number\",dflt:0,editType:e},editType:e}}},{}],828:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"fast-isnumeric\"),i=t(\"../registry\"),o=t(\"../plot_api/plot_schema\"),s=t(\"../plot_api/plot_template\"),l=t(\"../lib\"),c=t(\"../components/color\"),u=t(\"../constants/numerical\").BADNUM,h=t(\"./cartesian/axis_ids\"),f=t(\"./animation_attributes\"),p=t(\"./frame_attributes\"),d=t(\"../plots/get_data\").getModuleCalcData,g=l.relinkPrivateKeys,v=l._,m=e.exports={};l.extendFlat(m,i),m.attributes=t(\"./attributes\"),m.attributes.type.values=m.allTypes,m.fontAttrs=t(\"./font_attributes\"),m.layoutAttributes=t(\"./layout_attributes\"),m.fontWeight=\"normal\";var y=m.transformsRegistry,x=t(\"./command\");m.executeAPICommand=x.executeAPICommand,m.computeAPICommandBindings=x.computeAPICommandBindings,m.manageCommandObserver=x.manageCommandObserver,m.hasSimpleAPICommandBindings=x.hasSimpleAPICommandBindings,m.redrawText=function(t){var e=(t=l.getGraphDiv(t))._fullLayout||{};if(!(!(e._has&&e._has(\"polar\"))&&t.data&&t.data[0]&&t.data[0].r))return new Promise(function(e){setTimeout(function(){i.getComponentMethod(\"annotations\",\"draw\")(t),i.getComponentMethod(\"legend\",\"draw\")(t),i.getComponentMethod(\"colorbar\",\"draw\")(t),e(m.previousPromises(t))},300)})},m.resize=function(t){return t=l.getGraphDiv(t),new Promise(function(e,r){t&&!l.isHidden(t)||r(new Error(\"Resize must be passed a displayed plot div element.\")),t._redrawTimer&&clearTimeout(t._redrawTimer),t._redrawTimer=setTimeout(function(){if(!t.layout||t.layout.width&&t.layout.height||l.isHidden(t))e(t);else{delete t.layout.width,delete t.layout.height;var r=t.changed;t.autoplay=!0,i.call(\"relayout\",t,{autosize:!0}).then(function(){t.changed=r,e(t)})}},100)})},m.previousPromises=function(t){if((t._promises||[]).length)return Promise.all(t._promises).then(function(){t._promises=[]})},m.addLinks=function(t){if(t._context.showLink||t._context.showSources){var e=t._fullLayout,r=l.ensureSingle(e._paper,\"text\",\"js-plot-link-container\",function(t){t.style({\"font-family\":'\"Open Sans\", Arial, sans-serif',\"font-size\":\"12px\",fill:c.defaultLine,\"pointer-events\":\"all\"}).each(function(){var t=n.select(this);t.append(\"tspan\").classed(\"js-link-to-tool\",!0),t.append(\"tspan\").classed(\"js-link-spacer\",!0),t.append(\"tspan\").classed(\"js-sourcelinks\",!0)})}),a=r.node(),i={y:e._paper.attr(\"height\")-9};document.body.contains(a)&&a.getComputedTextLength()>=e.width-20?(i[\"text-anchor\"]=\"start\",i.x=5):(i[\"text-anchor\"]=\"end\",i.x=e._paper.attr(\"width\")-7),r.attr(i);var o=r.select(\".js-link-to-tool\"),s=r.select(\".js-link-spacer\"),u=r.select(\".js-sourcelinks\");t._context.showSources&&t._context.showSources(t),t._context.showLink&&function(t,e){e.text(\"\");var r=e.append(\"a\").attr({\"xlink:xlink:href\":\"#\",class:\"link--impt link--embedview\",\"font-weight\":\"bold\"}).text(t._context.linkText+\" \"+String.fromCharCode(187));if(t._context.sendData)r.on(\"click\",function(){m.sendDataToCloud(t)});else{var n=window.location.pathname.split(\"/\"),a=window.location.search;r.attr({\"xlink:xlink:show\":\"new\",\"xlink:xlink:href\":\"/\"+n[2].split(\".\")[0]+\"/\"+n[1]+a})}}(t,o),s.text(o.text()&&u.text()?\" - \":\"\")}},m.sendDataToCloud=function(t){t.emit(\"plotly_beforeexport\");var e=(window.PLOTLYENV||{}).BASE_URL||t._context.plotlyServerURL,r=n.select(t).append(\"div\").attr(\"id\",\"hiddenform\").style(\"display\",\"none\"),a=r.append(\"form\").attr({action:e+\"/external\",method:\"post\",target:\"_blank\"});return a.append(\"input\").attr({type:\"text\",name:\"data\"}).node().value=m.graphJson(t,!1,\"keepdata\"),a.node().submit(),r.remove(),t.emit(\"plotly_afterexport\"),!1};var b=[\"days\",\"shortDays\",\"months\",\"shortMonths\",\"periods\",\"dateTime\",\"date\",\"time\",\"decimal\",\"thousands\",\"grouping\",\"currency\"],_=[\"year\",\"month\",\"dayMonth\",\"dayMonthYear\"];function w(t,e){var r=t._context.locale,n=!1,a={};function o(t){for(var r=!0,i=0;i<e.length;i++){var o=e[i];a[o]||(t[o]?a[o]=t[o]:r=!1)}r&&(n=!0)}for(var s=0;s<2;s++){for(var l=t._context.locales,c=0;c<2;c++){var u=(l[r]||{}).format;if(u&&(o(u),n))break;l=i.localeRegistry}var h=r.split(\"-\")[0];if(n||h===r)break;r=h}return n||o(i.localeRegistry.en.format),a}function k(t,e){var r={_fullLayout:e},n=\"x\"===t._id.charAt(0),a=t._mainAxis._anchorAxis,i=\"\",o=\"\",s=\"\";if(a&&(s=a._mainAxis._id,i=n?t._id+s:s+t._id),!i||!e._plots[i]){i=\"\";for(var l=t._counterAxes,c=0;c<l.length;c++){var u=l[c],f=n?t._id+u:u+t._id;o||(o=f);var p=h.getFromId(r,u);if(s&&p.overlaying===s){i=f;break}}}return i||o}function T(t){var e=t.transforms;if(Array.isArray(e)&&e.length)for(var r=0;r<e.length;r++){var n=e[r],a=n._module||y[n.type];if(a&&a.makesData)return!0}return!1}function A(t,e,r,n){for(var a=t.transforms,i=[t],o=0;o<a.length;o++){var s=a[o],l=y[s.type];l&&l.transform&&(i=l.transform(i,{transform:s,fullTrace:t,fullData:e,layout:r,fullLayout:n,transformIndex:o}))}return i}function M(t){var e=t.margin;if(!t._size){var r=t._size={l:Math.round(e.l),r:Math.round(e.r),t:Math.round(e.t),b:Math.round(e.b),p:Math.round(e.pad)};r.w=Math.round(t.width)-r.l-r.r,r.h=Math.round(t.height)-r.t-r.b}t._pushmargin||(t._pushmargin={}),t._pushmarginIds||(t._pushmarginIds={})}m.supplyDefaults=function(t,e){var r=e&&e.skipUpdateCalc,a=t._fullLayout||{};if(a._skipDefaults)delete a._skipDefaults;else{var o,s=t._fullLayout={},c=t.layout||{},u=t._fullData||[],h=t._fullData=[],f=t.data||[],p=t.calcdata||[],d=t._context||{};t._transitionData||m.createTransitionData(t),s._dfltTitle={plot:v(t,\"Click to enter Plot title\"),x:v(t,\"Click to enter X axis title\"),y:v(t,\"Click to enter Y axis title\"),colorbar:v(t,\"Click to enter Colorscale title\"),annotation:v(t,\"new text\")},s._traceWord=v(t,\"trace\");var y=w(t,b);if(s._mapboxAccessToken=d.mapboxAccessToken,a._initialAutoSizeIsDone){var x=a.width,k=a.height;m.supplyLayoutGlobalDefaults(c,s,y),c.width||(s.width=x),c.height||(s.height=k),m.sanitizeMargins(s)}else{m.supplyLayoutGlobalDefaults(c,s,y);var T=!c.width||!c.height,A=s.autosize,S=d.autosizable;T&&(A||S)?m.plotAutoSize(t,c,s):T&&m.sanitizeMargins(s),!A&&T&&(c.width=s.width,c.height=s.height)}s._d3locale=function(t,e){return t.decimal=e.charAt(0),t.thousands=e.charAt(1),n.locale(t)}(y,s.separators),s._extraFormat=w(t,_),s._initialAutoSizeIsDone=!0,s._dataLength=f.length,s._modules=[],s._visibleModules=[],s._basePlotModules=[];var E=s._subplots=function(){var t,e,r=i.collectableSubplotTypes,n={};if(!r){r=[];var a=i.subplotsRegistry;for(var o in a){var s=a[o],c=s.attr;if(c&&(r.push(o),Array.isArray(c)))for(e=0;e<c.length;e++)l.pushUnique(r,c[e])}}for(t=0;t<r.length;t++)n[r[t]]=[];return n}(),C=s._splomAxes={x:{},y:{}},L=s._splomSubplots={};s._splomGridDflt={},s._scatterStackOpts={},s._firstScatter={},s._alignmentOpts={},s._colorAxes={},s._requestRangeslider={},s._traceUids=function(t,e){var r,n,a=e.length,i=[];for(r=0;r<t.length;r++){var o=t[r]._fullInput;o!==n&&i.push(o),n=o}var s=i.length,c=new Array(a),u={};function h(t,e){c[e]=t,u[t]=1}function f(t,e){if(t&&\"string\"==typeof t&&!u[t])return h(t,e),!0}for(r=0;r<a;r++){var p=e[r].uid;\"number\"==typeof p&&(p=String(p)),f(p,r)||(r<s&&f(i[r].uid,r)||h(l.randstr(u),r))}return c}(u,f),s._globalTransforms=(t._context||{}).globalTransforms,m.supplyDataDefaults(f,h,c,s);var P=Object.keys(C.x),O=Object.keys(C.y);if(P.length>1&&O.length>1){for(i.getComponentMethod(\"grid\",\"sizeDefaults\")(c,s),o=0;o<P.length;o++)l.pushUnique(E.xaxis,P[o]);for(o=0;o<O.length;o++)l.pushUnique(E.yaxis,O[o]);for(var I in L)l.pushUnique(E.cartesian,I)}if(s._has=m._hasPlotType.bind(s),u.length===h.length)for(o=0;o<h.length;o++)g(h[o],u[o]);m.supplyLayoutModuleDefaults(c,s,h,t._transitionData);var z=s._visibleModules,D=[];for(o=0;o<z.length;o++){var R=z[o].crossTraceDefaults;R&&l.pushUnique(D,R)}for(o=0;o<D.length;o++)D[o](h,s);s._hasOnlyLargeSploms=1===s._basePlotModules.length&&\"splom\"===s._basePlotModules[0].name&&P.length>15&&O.length>15&&0===s.shapes.length&&0===s.images.length,s._hasCartesian=s._has(\"cartesian\"),s._hasGeo=s._has(\"geo\"),s._hasGL3D=s._has(\"gl3d\"),s._hasGL2D=s._has(\"gl2d\"),s._hasTernary=s._has(\"ternary\"),s._hasPie=s._has(\"pie\"),m.linkSubplots(h,s,u,a),m.cleanPlot(h,s,u,a),a._zoomlayer&&!t._dragging&&a._zoomlayer.selectAll(\".select-outline\").remove(),function(t,e){var r,n=[];e.meta&&(r=e._meta={meta:e.meta,layout:{meta:e.meta}});for(var a=0;a<t.length;a++){var i=t[a];i.meta?n[i.index]=i._meta={meta:i.meta}:e.meta&&(i._meta={meta:e.meta}),e.meta&&(i._meta.layout={meta:e.meta})}n.length&&(r||(r=e._meta={}),r.data=n)}(h,s),g(s,a),i.getComponentMethod(\"colorscale\",\"crossTraceDefaults\")(h,s),s._preGUI||(s._preGUI={}),s._tracePreGUI||(s._tracePreGUI={});var F,B=s._tracePreGUI,N={};for(F in B)N[F]=\"old\";for(o=0;o<h.length;o++)N[F=h[o]._fullInput.uid]||(B[F]={}),N[F]=\"new\";for(F in N)\"old\"===N[F]&&delete B[F];M(s),i.getComponentMethod(\"rangeslider\",\"makeData\")(s),r||p.length!==h.length||m.supplyDefaultsUpdateCalc(p,h)}},m.supplyDefaultsUpdateCalc=function(t,e){for(var r=0;r<e.length;r++){var n=e[r],a=(t[r]||[])[0];if(a&&a.trace){var i=a.trace;if(i._hasCalcTransform){var o,s,c,u=i._arrayAttrs;for(o=0;o<u.length;o++)s=u[o],c=l.nestedProperty(i,s).get().slice(),l.nestedProperty(n,s).set(c)}a.trace=n}}},m.createTransitionData=function(t){t._transitionData||(t._transitionData={}),t._transitionData._frames||(t._transitionData._frames=[]),t._transitionData._frameHash||(t._transitionData._frameHash={}),t._transitionData._counter||(t._transitionData._counter=0),t._transitionData._interruptCallbacks||(t._transitionData._interruptCallbacks=[])},m._hasPlotType=function(t){var e,r=this._basePlotModules||[];for(e=0;e<r.length;e++)if(r[e].name===t)return!0;var n=this._modules||[];for(e=0;e<n.length;e++){var a=n[e].name;if(a===t)return!0;var o=i.modules[a];if(o&&o.categories[t])return!0}return!1},m.cleanPlot=function(t,e,r,n){var a,i,o=n._basePlotModules||[];for(a=0;a<o.length;a++){var s=o[a];s.clean&&s.clean(t,e,r,n)}var l=n._has&&n._has(\"gl\"),c=e._has&&e._has(\"gl\");l&&!c&&void 0!==n._glcontainer&&(n._glcontainer.selectAll(\".gl-canvas\").remove(),n._glcontainer.selectAll(\".no-webgl\").remove(),n._glcanvas=null);var u=!!n._infolayer;t:for(a=0;a<r.length;a++){var h=r[a].uid;for(i=0;i<t.length;i++){if(h===t[i].uid)continue t}u&&n._infolayer.select(\".cb\"+h).remove()}},m.linkSubplots=function(t,e,r,n){var a,o,s=n._plots||{},c=e._plots={},u=e._subplots,f={_fullData:t,_fullLayout:e},p=u.cartesian.concat(u.gl2d||[]);for(a=0;a<p.length;a++){var d,g=p[a],v=s[g],m=h.getFromId(f,g,\"x\"),y=h.getFromId(f,g,\"y\");for(v?d=c[g]=v:(d=c[g]={}).id=g,m._counterAxes.push(y._id),y._counterAxes.push(m._id),m._subplotsWith.push(g),y._subplotsWith.push(g),d.xaxis=m,d.yaxis=y,d._hasClipOnAxisFalse=!1,o=0;o<t.length;o++){var x=t[o];if(x.xaxis===d.xaxis._id&&x.yaxis===d.yaxis._id&&!1===x.cliponaxis){d._hasClipOnAxisFalse=!0;break}}}var b,_=h.list(f,null,!0);for(a=0;a<_.length;a++){var w=null;(b=_[a]).overlaying&&(w=h.getFromId(f,b.overlaying))&&w.overlaying&&(b.overlaying=!1,w=null),b._mainAxis=w||b,w&&(b.domain=w.domain.slice()),b._anchorAxis=\"free\"===b.anchor?null:h.getFromId(f,b.anchor)}for(a=0;a<_.length;a++)if((b=_[a])._counterAxes.sort(h.idSort),b._subplotsWith.sort(l.subplotSort),b._mainSubplot=k(b,e),b._counterAxes.length&&(b.spikemode&&-1!==b.spikemode.indexOf(\"across\")||b.automargin&&b.mirror&&\"free\"!==b.anchor||i.getComponentMethod(\"rangeslider\",\"isVisible\")(b))){var T=1,A=0;for(o=0;o<b._counterAxes.length;o++){var M=h.getFromId(f,b._counterAxes[o]);T=Math.min(T,M.domain[0]),A=Math.max(A,M.domain[1])}T<A&&(b._counterDomainMin=T,b._counterDomainMax=A)}},m.clearExpandedTraceDefaultColors=function(t){var e,r,n;for(r=[],(e=t._module._colorAttrs)||(t._module._colorAttrs=e=[],o.crawl(t._module.attributes,function(t,n,a,i){r[i]=n,r.length=i+1,\"color\"===t.valType&&void 0===t.dflt&&e.push(r.join(\".\"))})),n=0;n<e.length;n++){l.nestedProperty(t,\"_input.\"+e[n]).get()||l.nestedProperty(t,e[n]).set(null)}},m.supplyDataDefaults=function(t,e,r,n){var a,o,c,u=n._modules,h=n._visibleModules,f=n._basePlotModules,p=0,d=0;function v(t){e.push(t);var r=t._module;r&&(l.pushUnique(u,r),!0===t.visible&&l.pushUnique(h,r),l.pushUnique(f,t._module.basePlotModule),p++,!1!==t._input.visible&&d++)}n._transformModules=[];var y={},x=[],b=(r.template||{}).data||{},_=s.traceTemplater(b);for(a=0;a<t.length;a++){if(c=t[a],(o=_.newTrace(c)).uid=n._traceUids[a],m.supplyTraceDefaults(c,o,d,n,a),o.index=a,o._input=c,o._expandedIndex=p,o.transforms&&o.transforms.length)for(var w=!1!==c.visible&&!1===o.visible,k=A(o,e,r,n),T=0;T<k.length;T++){var M=k[T],S={_template:o._template,type:o.type,uid:o.uid+T};w&&!1===M.visible&&delete M.visible,m.supplyTraceDefaults(M,S,p,n,a),g(S,M),S.index=a,S._input=c,S._fullInput=o,S._expandedIndex=p,S._expandedInput=M,v(S)}else o._fullInput=o,o._expandedInput=o,v(o);i.traceIs(o,\"carpetAxis\")&&(y[o.carpet]=o),i.traceIs(o,\"carpetDependent\")&&x.push(a)}for(a=0;a<x.length;a++)if((o=e[x[a]]).visible){var E=y[o.carpet];o._carpet=E,E&&E.visible?(o.xaxis=E.xaxis,o.yaxis=E.yaxis):o.visible=!1}},m.supplyAnimationDefaults=function(t){var e;t=t||{};var r={};function n(e,n){return l.coerce(t||{},r,f,e,n)}if(n(\"mode\"),n(\"direction\"),n(\"fromcurrent\"),Array.isArray(t.frame))for(r.frame=[],e=0;e<t.frame.length;e++)r.frame[e]=m.supplyAnimationFrameDefaults(t.frame[e]||{});else r.frame=m.supplyAnimationFrameDefaults(t.frame||{});if(Array.isArray(t.transition))for(r.transition=[],e=0;e<t.transition.length;e++)r.transition[e]=m.supplyAnimationTransitionDefaults(t.transition[e]||{});else r.transition=m.supplyAnimationTransitionDefaults(t.transition||{});return r},m.supplyAnimationFrameDefaults=function(t){var e={};function r(r,n){return l.coerce(t||{},e,f.frame,r,n)}return r(\"duration\"),r(\"redraw\"),e},m.supplyAnimationTransitionDefaults=function(t){var e={};function r(r,n){return l.coerce(t||{},e,f.transition,r,n)}return r(\"duration\"),r(\"easing\"),e},m.supplyFrameDefaults=function(t){var e={};function r(r,n){return l.coerce(t,e,p,r,n)}return r(\"group\"),r(\"name\"),r(\"traces\"),r(\"baseframe\"),r(\"data\"),r(\"layout\"),e},m.supplyTraceDefaults=function(t,e,r,n,a){var o,s=n.colorway||c.defaults,u=s[r%s.length];function h(r,n){return l.coerce(t,e,m.attributes,r,n)}var f=h(\"visible\");h(\"type\"),h(\"name\",n._traceWord+\" \"+a),h(\"uirevision\",n.uirevision);var p=m.getModule(e);if(e._module=p,p){var d=p.basePlotModule,g=d.attr,v=d.attributes;if(g&&v){var y=n._subplots,x=\"\";if(\"gl2d\"!==d.name||f){if(Array.isArray(g))for(o=0;o<g.length;o++){var b=g[o],_=l.coerce(t,e,v,b);y[b]&&l.pushUnique(y[b],_),x+=_}else x=l.coerce(t,e,v,g);y[d.name]&&l.pushUnique(y[d.name],x)}}}return f&&(h(\"customdata\"),h(\"ids\"),h(\"meta\"),i.traceIs(e,\"showLegend\")?(e._dfltShowLegend=!0,h(\"showlegend\"),h(\"legendgroup\")):e._dfltShowLegend=!1,p&&p.supplyDefaults(t,e,u,n),i.traceIs(e,\"noOpacity\")||h(\"opacity\"),i.traceIs(e,\"notLegendIsolatable\")&&(e.visible=!!e.visible),i.traceIs(e,\"noHover\")||(e.hovertemplate||l.coerceHoverinfo(t,e,n),\"parcats\"!==e.type&&i.getComponentMethod(\"fx\",\"supplyDefaults\")(t,e,u,n)),p&&p.selectPoints&&h(\"selectedpoints\"),m.supplyTransformDefaults(t,e,n)),e},m.hasMakesDataTransform=T,m.supplyTransformDefaults=function(t,e,r){if(e._length||T(t)){var n=r._globalTransforms||[],a=r._transformModules||[];if(Array.isArray(t.transforms)||0!==n.length)for(var i=t.transforms||[],o=n.concat(i),s=e.transforms=[],c=0;c<o.length;c++){var u,h=o[c],f=h.type,p=y[f],d=!(h._module&&h._module===p),g=p&&\"function\"==typeof p.transform;p||l.warn(\"Unrecognized transform type \"+f+\".\"),p&&p.supplyDefaults&&(d||g)?((u=p.supplyDefaults(h,e,r,t)).type=f,u._module=p,l.pushUnique(a,p)):u=l.extendFlat({},h),s.push(u)}}},m.supplyLayoutGlobalDefaults=function(t,e,r){function n(r,n){return l.coerce(t,e,m.layoutAttributes,r,n)}var a=t.template;l.isPlainObject(a)&&(e.template=a,e._template=a.layout,e._dataTemplate=a.data);var o=l.coerceFont(n,\"font\");n(\"title.text\",e._dfltTitle.plot),l.coerceFont(n,\"title.font\",{family:o.family,size:Math.round(1.4*o.size),color:o.color}),n(\"title.xref\"),n(\"title.yref\"),n(\"title.x\"),n(\"title.y\"),n(\"title.xanchor\"),n(\"title.yanchor\"),n(\"title.pad.t\"),n(\"title.pad.r\"),n(\"title.pad.b\"),n(\"title.pad.l\"),n(\"autosize\",!(t.width&&t.height)),n(\"width\"),n(\"height\"),n(\"margin.l\"),n(\"margin.r\"),n(\"margin.t\"),n(\"margin.b\"),n(\"margin.pad\"),n(\"margin.autoexpand\"),t.width&&t.height&&m.sanitizeMargins(e),i.getComponentMethod(\"grid\",\"sizeDefaults\")(t,e),n(\"paper_bgcolor\"),n(\"separators\",r.decimal+r.thousands),n(\"hidesources\"),n(\"colorway\"),n(\"datarevision\");var s=n(\"uirevision\");n(\"editrevision\",s),n(\"selectionrevision\",s),n(\"modebar.orientation\"),n(\"modebar.bgcolor\",c.addOpacity(e.paper_bgcolor,.5));var u=c.contrast(c.rgb(e.modebar.bgcolor));n(\"modebar.color\",c.addOpacity(u,.3)),n(\"modebar.activecolor\",c.addOpacity(u,.7)),n(\"modebar.uirevision\",s),n(\"meta\"),l.isPlainObject(t.transition)&&(n(\"transition.duration\"),n(\"transition.easing\"),n(\"transition.ordering\")),i.getComponentMethod(\"calendars\",\"handleDefaults\")(t,e,\"calendar\"),i.getComponentMethod(\"fx\",\"supplyLayoutGlobalDefaults\")(t,e,n)},m.plotAutoSize=function(t,e,r){var n,i,o=t._context||{},s=o.frameMargins,c=l.isPlotDiv(t);if(c&&t.emit(\"plotly_autosize\"),o.fillFrame)n=window.innerWidth,i=window.innerHeight,document.body.style.overflow=\"hidden\";else{var u=c?window.getComputedStyle(t):{};if(n=parseFloat(u.width)||parseFloat(u.maxWidth)||r.width,i=parseFloat(u.height)||parseFloat(u.maxHeight)||r.height,a(s)&&s>0){var h=1-2*s;n=Math.round(h*n),i=Math.round(h*i)}}var f=m.layoutAttributes.width.min,p=m.layoutAttributes.height.min;n<f&&(n=f),i<p&&(i=p);var d=!e.width&&Math.abs(r.width-n)>1,g=!e.height&&Math.abs(r.height-i)>1;(g||d)&&(d&&(r.width=n),g&&(r.height=i)),t._initialAutoSize||(t._initialAutoSize={width:n,height:i}),m.sanitizeMargins(r)},m.supplyLayoutModuleDefaults=function(t,e,r,n){var a,o,s,c=i.componentsRegistry,u=e._basePlotModules,h=i.subplotsRegistry.cartesian;for(a in c)(s=c[a]).includeBasePlot&&s.includeBasePlot(t,e);for(var f in u.length||u.push(h),e._has(\"cartesian\")&&(i.getComponentMethod(\"grid\",\"contentDefaults\")(t,e),h.finalizeSubplots(t,e)),e._subplots)e._subplots[f].sort(l.subplotSort);for(o=0;o<u.length;o++)(s=u[o]).supplyLayoutDefaults&&s.supplyLayoutDefaults(t,e,r);var p=e._modules;for(o=0;o<p.length;o++)(s=p[o]).supplyLayoutDefaults&&s.supplyLayoutDefaults(t,e,r);var d=e._transformModules;for(o=0;o<d.length;o++)(s=d[o]).supplyLayoutDefaults&&s.supplyLayoutDefaults(t,e,r,n);for(a in c)(s=c[a]).supplyLayoutDefaults&&s.supplyLayoutDefaults(t,e,r)},m.purge=function(t){var e=t._fullLayout||{};void 0!==e._glcontainer&&(e._glcontainer.selectAll(\".gl-canvas\").remove(),e._glcontainer.remove(),e._glcanvas=null),e._modeBar&&e._modeBar.destroy(),t._transitionData&&(t._transitionData._interruptCallbacks&&(t._transitionData._interruptCallbacks.length=0),t._transitionData._animationRaf&&window.cancelAnimationFrame(t._transitionData._animationRaf)),l.clearThrottle(),l.clearResponsive(t),delete t.data,delete t.layout,delete t._fullData,delete t._fullLayout,delete t.calcdata,delete t.framework,delete t.empty,delete t.fid,delete t.undoqueue,delete t.undonum,delete t.autoplay,delete t.changed,delete t._promises,delete t._redrawTimer,delete t._hmlumcount,delete t._hmpixcount,delete t._transitionData,delete t._transitioning,delete t._initialAutoSize,delete t._transitioningWithDuration,delete t._dragging,delete t._dragged,delete t._dragdata,delete t._hoverdata,delete t._snapshotInProgress,delete t._editing,delete t._mouseDownTime,delete t._legendMouseDownTime,t.removeAllListeners&&t.removeAllListeners()},m.style=function(t){var e,r=t._fullLayout._visibleModules,n=[];for(e=0;e<r.length;e++){var a=r[e];a.style&&l.pushUnique(n,a.style)}for(e=0;e<n.length;e++)n[e](t)},m.sanitizeMargins=function(t){if(t&&t.margin){var e,r=t.width,n=t.height,a=t.margin,i=r-(a.l+a.r),o=n-(a.t+a.b);i<0&&(e=(r-1)/(a.l+a.r),a.l=Math.floor(e*a.l),a.r=Math.floor(e*a.r)),o<0&&(e=(n-1)/(a.t+a.b),a.t=Math.floor(e*a.t),a.b=Math.floor(e*a.b))}},m.clearAutoMarginIds=function(t){t._fullLayout._pushmarginIds={}},m.allowAutoMargin=function(t,e){t._fullLayout._pushmarginIds[e]=1},m.autoMargin=function(t,e,r){var n=t._fullLayout,a=n._pushmargin,i=n._pushmarginIds;if(!1!==n.margin.autoexpand){if(r){var o=r.pad;if(void 0===o){var s=n.margin;o=Math.min(12,s.l,s.r,s.t,s.b)}r.l+r.r>.5*n.width&&(l.log(\"Margin push\",e,\"is too big in x, dropping\"),r.l=r.r=0),r.b+r.t>.5*n.height&&(l.log(\"Margin push\",e,\"is too big in y, dropping\"),r.b=r.t=0);var c=void 0!==r.xl?r.xl:r.x,u=void 0!==r.xr?r.xr:r.x,h=void 0!==r.yt?r.yt:r.y,f=void 0!==r.yb?r.yb:r.y;a[e]={l:{val:c,size:r.l+o},r:{val:u,size:r.r+o},b:{val:f,size:r.b+o},t:{val:h,size:r.t+o}},i[e]=1}else delete a[e],delete i[e];if(!n._replotting)return m.doAutoMargin(t)}},m.doAutoMargin=function(t){var e=t._fullLayout;e._size||(e._size={}),M(e);var r=e._size,n=e.margin,o=l.extendFlat({},r),s=n.l,c=n.r,u=n.t,h=n.b,f=e.width,p=e.height,d=e._pushmargin,g=e._pushmarginIds;if(!1!==e.margin.autoexpand){for(var v in d)g[v]||delete d[v];for(var y in d.base={l:{val:0,size:s},r:{val:1,size:c},t:{val:1,size:u},b:{val:0,size:h}},d){var x=d[y].l||{},b=d[y].b||{},_=x.val,w=x.size,k=b.val,T=b.size;for(var A in d){if(a(w)&&d[A].r){var S=d[A].r.val,E=d[A].r.size;if(S>_){var C=(w*S+(E-f)*_)/(S-_),L=(E*(1-_)+(w-f)*(1-S))/(S-_);C>=0&&L>=0&&f-(C+L)>0&&C+L>s+c&&(s=C,c=L)}}if(a(T)&&d[A].t){var P=d[A].t.val,O=d[A].t.size;if(P>k){var I=(T*P+(O-p)*k)/(P-k),z=(O*(1-k)+(T-p)*(1-P))/(P-k);I>=0&&z>=0&&p-(z+I)>0&&I+z>h+u&&(h=I,u=z)}}}}}if(r.l=Math.round(s),r.r=Math.round(c),r.t=Math.round(u),r.b=Math.round(h),r.p=Math.round(n.pad),r.w=Math.round(f)-r.l-r.r,r.h=Math.round(p)-r.t-r.b,!e._replotting&&m.didMarginChange(o,r)){\"_redrawFromAutoMarginCount\"in e?e._redrawFromAutoMarginCount++:e._redrawFromAutoMarginCount=1;var D=3*(1+Object.keys(g).length);if(e._redrawFromAutoMarginCount<D)return i.call(\"plot\",t);l.warn(\"Too many auto-margin redraws.\")}};var S=[\"l\",\"r\",\"t\",\"b\",\"p\",\"w\",\"h\"];function E(t,e,r){var n=!1;var a=[m.previousPromises,function(){if(t._transitionData)return t._transitioning=!1,function(t){var e=Promise.resolve();if(!t)return e;for(;t.length;)e=e.then(t.shift());return e}(t._transitionData._interruptCallbacks)},r.prepareFn,m.rehover,function(){return t.emit(\"plotly_transitioning\",[]),new Promise(function(a){t._transitioning=!0,e.duration>0&&(t._transitioningWithDuration=!0),t._transitionData._interruptCallbacks.push(function(){n=!0}),r.redraw&&t._transitionData._interruptCallbacks.push(function(){return i.call(\"redraw\",t)}),t._transitionData._interruptCallbacks.push(function(){t.emit(\"plotly_transitioninterrupted\",[])});var o=0,s=0;function l(){return o++,function(){var e;s++,n||s!==o||(e=a,t._transitionData&&(function(t){if(t)for(;t.length;)t.shift()}(t._transitionData._interruptCallbacks),Promise.resolve().then(function(){if(r.redraw)return i.call(\"redraw\",t)}).then(function(){t._transitioning=!1,t._transitioningWithDuration=!1,t.emit(\"plotly_transitioned\",[])}).then(e)))}}r.runFn(l),setTimeout(l())})}],o=l.syncOrAsync(a,t);return o&&o.then||(o=Promise.resolve()),o.then(function(){return t})}m.didMarginChange=function(t,e){for(var r=0;r<S.length;r++){var n=S[r],i=t[n],o=e[n];if(!a(i)||Math.abs(o-i)>1)return!0}return!1},m.graphJson=function(t,e,r,n,a){(a&&e&&!t._fullData||a&&!e&&!t._fullLayout)&&m.supplyDefaults(t);var i=a?t._fullData:t.data,o=a?t._fullLayout:t.layout,s=(t._transitionData||{})._frames;function c(t){if(\"function\"==typeof t)return null;if(l.isPlainObject(t)){var e,n,a={};for(e in t)if(\"function\"!=typeof t[e]&&-1===[\"_\",\"[\"].indexOf(e.charAt(0))){if(\"keepdata\"===r){if(\"src\"===e.substr(e.length-3))continue}else if(\"keepstream\"===r){if(\"string\"==typeof(n=t[e+\"src\"])&&n.indexOf(\":\")>0&&!l.isPlainObject(t.stream))continue}else if(\"keepall\"!==r&&\"string\"==typeof(n=t[e+\"src\"])&&n.indexOf(\":\")>0)continue;a[e]=c(t[e])}return a}return Array.isArray(t)?t.map(c):l.isTypedArray(t)?l.simpleMap(t,l.identity):l.isJSDate(t)?l.ms2DateTimeLocal(+t):t}var u={data:(i||[]).map(function(t){var r=c(t);return e&&delete r.fit,r})};return e||(u.layout=c(o)),t.framework&&t.framework.isPolar&&(u=t.framework.getConfig()),s&&(u.frames=c(s)),\"object\"===n?u:JSON.stringify(u)},m.modifyFrames=function(t,e){var r,n,a,i=t._transitionData._frames,o=t._transitionData._frameHash;for(r=0;r<e.length;r++)switch((n=e[r]).type){case\"replace\":a=n.value;var s=(i[n.index]||{}).name,l=a.name;i[n.index]=o[l]=a,l!==s&&(delete o[s],o[l]=a);break;case\"insert\":o[(a=n.value).name]=a,i.splice(n.index,0,a);break;case\"delete\":delete o[(a=i[n.index]).name],i.splice(n.index,1)}return Promise.resolve()},m.computeFrame=function(t,e){var r,n,a,i,o=t._transitionData._frameHash;if(!e)throw new Error(\"computeFrame must be given a string frame name\");var s=o[e.toString()];if(!s)return!1;for(var l=[s],c=[s.name];s.baseframe&&(s=o[s.baseframe.toString()])&&-1===c.indexOf(s.name);)l.push(s),c.push(s.name);for(var u={};s=l.pop();)if(s.layout&&(u.layout=m.extendLayout(u.layout,s.layout)),s.data){if(u.data||(u.data=[]),!(n=s.traces))for(n=[],r=0;r<s.data.length;r++)n[r]=r;for(u.traces||(u.traces=[]),r=0;r<s.data.length;r++)null!=(a=n[r])&&(-1===(i=u.traces.indexOf(a))&&(i=u.data.length,u.traces[i]=a),u.data[i]=m.extendTrace(u.data[i],s.data[r]))}return u},m.recomputeFrameHash=function(t){for(var e=t._transitionData._frameHash={},r=t._transitionData._frames,n=0;n<r.length;n++){var a=r[n];a&&a.name&&(e[a.name]=a)}},m.extendObjectWithContainers=function(t,e,r){var n,a,i,o,s,c,u,h=l.extendDeepNoArrays({},e||{}),f=l.expandObjectPaths(h),p={};if(r&&r.length)for(i=0;i<r.length;i++)void 0===(a=(n=l.nestedProperty(f,r[i])).get())?l.nestedProperty(p,r[i]).set(null):(n.set(null),l.nestedProperty(p,r[i]).set(a));if(t=l.extendDeepNoArrays(t||{},f),r&&r.length)for(i=0;i<r.length;i++)if(c=l.nestedProperty(p,r[i]).get()){for(u=(s=l.nestedProperty(t,r[i])).get(),Array.isArray(u)||(u=[],s.set(u)),o=0;o<c.length;o++){var d=c[o];u[o]=null===d?null:m.extendObjectWithContainers(u[o],d)}s.set(u)}return t},m.dataArrayContainers=[\"transforms\",\"dimensions\"],m.layoutArrayContainers=i.layoutArrayContainers,m.extendTrace=function(t,e){return m.extendObjectWithContainers(t,e,m.dataArrayContainers)},m.extendLayout=function(t,e){return m.extendObjectWithContainers(t,e,m.layoutArrayContainers)},m.transition=function(t,e,r,n,a,i){var o={redraw:a.redraw},s={},c=[];return o.prepareFn=function(){for(var a=Array.isArray(e)?e.length:0,i=n.slice(0,a),o=0;o<i.length;o++){var u=i[o],h=t._fullData[u]._module;if(h){if(h.animatable){var f=h.basePlotModule.name;s[f]||(s[f]=[]),s[f].push(u)}t.data[i[o]]=m.extendTrace(t.data[i[o]],e[o])}}var p=l.expandObjectPaths(l.extendDeepNoArrays({},r)),d=/^[xy]axis[0-9]*$/;for(var g in p)d.test(g)&&delete p[g].range;m.extendLayout(t.layout,p),delete t.calcdata,m.supplyDefaults(t),m.doCalcdata(t);var v=l.expandObjectPaths(r);if(v){var y=t._fullLayout._plots;for(var x in y){var b=y[x],_=b.xaxis,w=b.yaxis,k=_.range.slice(),T=w.range.slice(),A=null,M=null,S=null,E=null;Array.isArray(v[_._name+\".range\"])?A=v[_._name+\".range\"].slice():Array.isArray((v[_._name]||{}).range)&&(A=v[_._name].range.slice()),Array.isArray(v[w._name+\".range\"])?M=v[w._name+\".range\"].slice():Array.isArray((v[w._name]||{}).range)&&(M=v[w._name].range.slice()),k&&A&&(_.r2l(k[0])!==_.r2l(A[0])||_.r2l(k[1])!==_.r2l(A[1]))&&(S={xr0:k,xr1:A}),T&&M&&(w.r2l(T[0])!==w.r2l(M[0])||w.r2l(T[1])!==w.r2l(M[1]))&&(E={yr0:T,yr1:M}),(S||E)&&c.push(l.extendFlat({plotinfo:b},S,E))}}return Promise.resolve()},o.runFn=function(e){var n,a,o=t._fullLayout._basePlotModules,u=c.length;if(r)for(a=0;a<o.length;a++)o[a].transitionAxes&&o[a].transitionAxes(t,c,i,e);for(var h in u?((n=l.extendFlat({},i)).duration=0,delete s.cartesian):n=i,s){var f=s[h];t._fullData[f[0]]._module.basePlotModule.plot(t,f,n,e)}},E(t,i,o)},m.transitionFromReact=function(t,e,r,n){var a=t._fullLayout,i=a.transition,o={},s=[];return o.prepareFn=function(){var t=a._plots;for(var i in o.redraw=!1,\"some\"===e.anim&&(o.redraw=!0),\"some\"===r.anim&&(o.redraw=!0),t){var c=t[i],u=c.xaxis,h=c.yaxis,f=n[u._name].range.slice(),p=n[h._name].range.slice(),d=u.range.slice(),g=h.range.slice();u.setScale(),h.setScale();var v=null,m=null;u.r2l(f[0])===u.r2l(d[0])&&u.r2l(f[1])===u.r2l(d[1])||(v={xr0:f,xr1:d}),h.r2l(p[0])===h.r2l(g[0])&&h.r2l(p[1])===h.r2l(g[1])||(m={yr0:p,yr1:g}),(v||m)&&s.push(l.extendFlat({plotinfo:c},v,m))}return Promise.resolve()},o.runFn=function(r){for(var n,a,o,c=t._fullData,u=t._fullLayout._basePlotModules,h=[],f=0;f<c.length;f++)h.push(f);function p(){for(var e=0;e<u.length;e++)u[e].transitionAxes&&u[e].transitionAxes(t,s,n,r)}function d(){for(var e=0;e<u.length;e++)u[e].plot(t,o,a,r)}s.length&&e.anim?\"traces first\"===i.ordering?(n=l.extendFlat({},i,{duration:0}),o=h,a=i,setTimeout(p,i.duration),d()):(n=i,o=null,a=l.extendFlat({},i,{duration:0}),setTimeout(d,n.duration),p()):s.length?(n=i,p()):e.anim&&(o=h,a=i,d())},E(t,i,o)},m.doCalcdata=function(t,e){var r,n,a,s,c=h.list(t),f=t._fullData,p=t._fullLayout,d=new Array(f.length),g=(t.calcdata||[]).slice();for(t.calcdata=d,p._numBoxes=0,p._numViolins=0,p._violinScaleGroupStats={},t._hmpixcount=0,t._hmlumcount=0,p._piecolormap={},p._sunburstcolormap={},p._treemapcolormap={},p._funnelareacolormap={},a=0;a<f.length;a++)Array.isArray(e)&&-1===e.indexOf(a)&&(d[a]=g[a]);for(a=0;a<f.length;a++)(r=f[a])._arrayAttrs=o.findArrayAttributes(r),r._extremes={};var v=p._subplots.polar||[];for(a=0;a<v.length;a++)c.push(p[v[a]].radialaxis,p[v[a]].angularaxis);var m=!1;function x(e){if(r=f[e],n=r._module,!0===r.visible&&r.transforms){if(n&&n.calc){var a=n.calc(t,r);a[0]&&a[0].t&&a[0].t._scene&&delete a[0].t._scene.dirty}for(s=0;s<r.transforms.length;s++){var i=r.transforms[s];(n=y[i.type])&&n.calcTransform&&(r._hasCalcTransform=!0,m=!0,n.calcTransform(t,r,i))}}}function b(e,a){if(r=f[e],!!(n=r._module).isContainer===a){var i=[];if(!0===r.visible&&0!==r._length){delete r._indexToPoints;var o=r.transforms||[];for(s=o.length-1;s>=0;s--)if(o[s].enabled){r._indexToPoints=o[s]._indexToPoints;break}n&&n.calc&&(i=n.calc(t,r))}Array.isArray(i)&&i[0]||(i=[{x:u,y:u}]),i[0].t||(i[0].t={}),i[0].trace=r,d[e]=i}}for(L(c,f),a=0;a<f.length;a++)b(a,!0);for(a=0;a<f.length;a++)x(a);for(m&&L(c,f),a=0;a<f.length;a++)b(a,!0);for(a=0;a<f.length;a++)b(a,!1);P(t);var _=function(t,e){var r,n,a,o,s,c=[];function u(t,r,n){var a=r._id.charAt(0);if(\"histogram2dcontour\"===t){var i=r._counterAxes[0],o=h.getFromId(e,i),s=\"x\"===a||\"x\"===i&&\"category\"===o.type,l=\"y\"===a||\"y\"===i&&\"category\"===o.type;return function(t,e){return 0===t||0===e?-1:s&&t===n[e].length-1?-1:l&&e===n.length-1?-1:(\"y\"===a?e:t)-1}}return function(t,e){return\"y\"===a?e:t}}var f={min:function(t){return l.aggNums(Math.min,null,t)},max:function(t){return l.aggNums(Math.max,null,t)},sum:function(t){return l.aggNums(function(t,e){return t+e},null,t)},total:function(t){return l.aggNums(function(t,e){return t+e},null,t)},mean:function(t){return l.mean(t)},median:function(t){return l.median(t)}};for(r=0;r<t.length;r++){var p=t[r];if(\"category\"===p.type){var d=p.categoryorder.match(C);if(d){var g=d[1],v=d[2],m=[];for(n=0;n<p._categories.length;n++)m.push([p._categories[n],[]]);for(n=0;n<p._traceIndices.length;n++){var y=p._traceIndices[n],x=e._fullData[y],b=p._id.charAt(0);if(!0===x.visible){var _=x.type;i.traceIs(x,\"histogram\")&&(delete x._xautoBinFinished,delete x._yautoBinFinished);var w=e.calcdata[y];for(a=0;a<w.length;a++){var k,T,A,M=w[a];if(\"splom\"===_){var S=x._axesDim[p._id];if(\"y\"===b){var E=x._diag[S][0];E&&(p=e._fullLayout[h.id2name(E)])}var L=M.trace.dimensions[S].values;for(o=0;o<L.length;o++)for(k=L[o],T=p._categoriesMap[k],s=0;s<M.trace.dimensions.length;s++)if(s!==S){var P=M.trace.dimensions[s];m[T][1].push(P.values[o])}}else if(\"scattergl\"===_){for(o=0;o<M.t.x.length;o++)\"x\"===b&&(k=M.t.x[o],T=k,A=M.t.y[o]),\"y\"===b&&(k=M.t.y[o],T=k,A=M.t.x[o]),m[T][1].push(A);M.t&&M.t._scene&&delete M.t._scene.dirty}else if(M.hasOwnProperty(\"z\")){A=M.z;var O=u(x.type,p,A);for(o=0;o<A.length;o++)for(s=0;s<A[o].length;s++)(T=O(s,o))+1&&m[T][1].push(A[o][s])}else for(\"x\"===b?(k=M.p+1?M.p:M.x,A=M.s||M.v||M.y):\"y\"===b&&(k=M.p+1?M.p:M.y,A=M.s||M.v||M.x),Array.isArray(A)||(A=[A]),o=0;o<A.length;o++)m[k][1].push(A[o])}}}p._categoriesValue=m;var I=[];for(n=0;n<m.length;n++)I.push([m[n][0],f[g](m[n][1])]);I.sort(function(t,e){return t[1]-e[1]}),p._categoriesAggregatedValue=I,p._initialCategories=I.map(function(t){return t[0]}),\"descending\"===v&&p._initialCategories.reverse(),c=c.concat(p.sortByInitialCategories())}}}return c}(c,t);if(_.length){for(p._numBoxes=0,p._numViolins=0,a=0;a<_.length;a++)b(_[a],!0);for(a=0;a<_.length;a++)b(_[a],!1);P(t)}i.getComponentMethod(\"fx\",\"calc\")(t),i.getComponentMethod(\"errorbars\",\"calc\")(t)};var C=/(total|sum|min|max|mean|median) (ascending|descending)/;function L(t,e){for(var r=0;r<t.length;r++){var n=t[r];n.clearCalc(),\"multicategory\"===n.type&&n.setupMultiCategory(e)}}function P(t){var e,r,n,a=t._fullLayout,i=a._visibleModules,o={};for(r=0;r<i.length;r++){var s=i[r],c=s.crossTraceCalc;if(c){var u=s.basePlotModule.name;o[u]?l.pushUnique(o[u],c):o[u]=[c]}}for(n in o){var h=o[n],f=a._subplots[n];if(Array.isArray(f))for(e=0;e<f.length;e++){var p=f[e],d=\"cartesian\"===n?a._plots[p]:a[p];for(r=0;r<h.length;r++)h[r](t,d,p)}else for(r=0;r<h.length;r++)h[r](t)}}m.rehover=function(t){t._fullLayout._rehover&&t._fullLayout._rehover()},m.redrag=function(t){t._fullLayout._redrag&&t._fullLayout._redrag()},m.generalUpdatePerTraceModule=function(t,e,r,n){var a,i=e.traceHash,o={};for(a=0;a<r.length;a++){var s=r[a],c=s[0].trace;c.visible&&(o[c.type]=o[c.type]||[],o[c.type].push(s))}for(var u in i)if(!o[u]){var h=i[u][0];h[0].trace.visible=!1,o[u]=[h]}for(var f in o){var p=o[f];p[0][0].trace._module.plot(t,e,l.filterVisible(p),n)}e.traceHash=o},m.plotBasePlot=function(t,e,r,n,a){var o=i.getModule(t),s=d(e.calcdata,o)[0];o.plot(e,s,n,a)},m.cleanBasePlot=function(t,e,r,n,a){var i=a._has&&a._has(t),o=r._has&&r._has(t);i&&!o&&a[\"_\"+t+\"layer\"].selectAll(\"g.trace\").remove()}},{\"../components/color\":594,\"../constants/numerical\":695,\"../lib\":719,\"../plot_api/plot_schema\":756,\"../plot_api/plot_template\":757,\"../plots/get_data\":802,\"../registry\":848,\"./animation_attributes\":762,\"./attributes\":764,\"./cartesian/axis_ids\":770,\"./command\":791,\"./font_attributes\":793,\"./frame_attributes\":794,\"./layout_attributes\":819,d3:164,\"fast-isnumeric\":226}],829:[function(t,e,r){\"use strict\";e.exports={attr:\"subplot\",name:\"polar\",axisNames:[\"angularaxis\",\"radialaxis\"],axisName2dataArray:{angularaxis:\"theta\",radialaxis:\"r\"},layerNames:[\"draglayer\",\"plotbg\",\"backplot\",\"angular-grid\",\"radial-grid\",\"frontplot\",\"angular-line\",\"radial-line\",\"angular-axis\",\"radial-axis\"],radialDragBoxSize:50,angularDragBoxSize:30,cornerLen:25,cornerHalfWidth:2,MINDRAG:8,MINZOOM:20,OFFEDGE:20}},{}],830:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../lib/polygon\").tester,i=n.findIndexOfMin,o=n.isAngleInsideSector,s=n.angleDelta,l=n.angleDist;function c(t,e,r,n){var a,i,o=n[0],s=n[1],l=h(Math.sin(e)-Math.sin(t)),c=h(Math.cos(e)-Math.cos(t)),u=Math.tan(r),f=h(1/u),p=l/c,d=s-p*o;return f?l&&c?i=u*(a=d/(u-p)):c?(a=s*f,i=s):(a=o,i=o*u):l&&c?(a=0,i=d):c?(a=0,i=s):a=i=NaN,[a,i]}function u(t,e,r,a){return n.isFullCircle([e,r])?function(t,e){var r,n=e.length,a=new Array(n+1);for(r=0;r<n;r++){var i=e[r];a[r]=[t*Math.cos(i),t*Math.sin(i)]}return a[r]=a[0].slice(),a}(t,a):function(t,e,r,a){var s,u,h=a.length,f=[];function p(e){return[t*Math.cos(e),t*Math.sin(e)]}function d(t,e,r){return c(t,e,r,p(t))}function g(t){return n.mod(t,h)}function v(t){return o(t,[e,r])}var m=i(a,function(t){return v(t)?l(t,e):1/0}),y=d(a[m],a[g(m-1)],e);for(f.push(y),s=m,u=0;u<h;s++,u++){var x=a[g(s)];if(!v(x))break;f.push(p(x))}var b=i(a,function(t){return v(t)?l(t,r):1/0}),_=d(a[b],a[g(b+1)],r);return f.push(_),f.push([0,0]),f.push(f[0].slice()),f}(t,e,r,a)}function h(t){return Math.abs(t)>1e-10?t:0}function f(t,e,r){e=e||0,r=r||0;for(var n=t.length,a=new Array(n),i=0;i<n;i++){var o=t[i];a[i]=[e+o[0],r-o[1]]}return a}e.exports={isPtInsidePolygon:function(t,e,r,n,i){if(!o(e,n))return!1;var s,l;r[0]<r[1]?(s=r[0],l=r[1]):(s=r[1],l=r[0]);var c=a(u(s,n[0],n[1],i)),h=a(u(l,n[0],n[1],i)),f=[t*Math.cos(e),t*Math.sin(e)];return h.contains(f)&&!c.contains(f)},findPolygonOffset:function(t,e,r,n){for(var a=1/0,i=1/0,o=u(t,e,r,n),s=0;s<o.length;s++){var l=o[s];a=Math.min(a,l[0]),i=Math.min(i,-l[1])}return[a,i]},findEnclosingVertexAngles:function(t,e){var r=i(e,function(e){var r=s(e,t);return r>0?r:1/0}),a=n.mod(r+1,e.length);return[e[r],e[a]]},findIntersectionXY:c,findXYatLength:function(t,e,r,n){var a=-e*r,i=e*e+1,o=2*(e*a-r),s=a*a+r*r-t*t,l=Math.sqrt(o*o-4*i*s),c=(-o+l)/(2*i),u=(-o-l)/(2*i);return[[c,e*c+a+n],[u,e*u+a+n]]},clampTiny:h,pathPolygon:function(t,e,r,n,a,i){return\"M\"+f(u(t,e,r,n),a,i).join(\"L\")},pathPolygonAnnulus:function(t,e,r,n,a,i,o){var s,l;t<e?(s=t,l=e):(s=e,l=t);var c=f(u(s,r,n,a),i,o);return\"M\"+f(u(l,r,n,a),i,o).reverse().join(\"L\")+\"M\"+c.join(\"L\")}}},{\"../../lib\":719,\"../../lib/polygon\":731}],831:[function(t,e,r){\"use strict\";var n=t(\"../get_data\").getSubplotCalcData,a=t(\"../../lib\").counterRegex,i=t(\"./polar\"),o=t(\"./constants\"),s=o.attr,l=o.name,c=a(l),u={};u[s]={valType:\"subplotid\",dflt:l,editType:\"calc\"},e.exports={attr:s,name:l,idRoot:l,idRegex:c,attrRegex:c,attributes:u,layoutAttributes:t(\"./layout_attributes\"),supplyLayoutDefaults:t(\"./layout_defaults\"),plot:function(t){for(var e=t._fullLayout,r=t.calcdata,a=e._subplots[l],o=0;o<a.length;o++){var s=a[o],c=n(r,l,s),u=e[s]._subplot;u||(u=i(t,s),e[s]._subplot=u),u.plot(c,e,t._promises)}},clean:function(t,e,r,n){for(var a=n._subplots[l]||[],i=n._has&&n._has(\"gl\"),o=e._has&&e._has(\"gl\"),s=i&&!o,c=0;c<a.length;c++){var u=a[c],h=n[u]._subplot;if(!e[u]&&h)for(var f in h.framework.remove(),h.layers[\"radial-axis-title\"].remove(),h.clipPaths)h.clipPaths[f].remove();s&&h._scene&&(h._scene.destroy(),h._scene=null)}},toSVG:t(\"../cartesian\").toSVG}},{\"../../lib\":719,\"../cartesian\":778,\"../get_data\":802,\"./constants\":829,\"./layout_attributes\":832,\"./layout_defaults\":833,\"./polar\":840}],832:[function(t,e,r){\"use strict\";var n=t(\"../../components/color/attributes\"),a=t(\"../cartesian/layout_attributes\"),i=t(\"../domain\").attributes,o=t(\"../../lib\").extendFlat,s=t(\"../../plot_api/edit_types\").overrideAll,l=s({color:a.color,showline:o({},a.showline,{dflt:!0}),linecolor:a.linecolor,linewidth:a.linewidth,showgrid:o({},a.showgrid,{dflt:!0}),gridcolor:a.gridcolor,gridwidth:a.gridwidth},\"plot\",\"from-root\"),c=s({tickmode:a.tickmode,nticks:a.nticks,tick0:a.tick0,dtick:a.dtick,tickvals:a.tickvals,ticktext:a.ticktext,ticks:a.ticks,ticklen:a.ticklen,tickwidth:a.tickwidth,tickcolor:a.tickcolor,showticklabels:a.showticklabels,showtickprefix:a.showtickprefix,tickprefix:a.tickprefix,showticksuffix:a.showticksuffix,ticksuffix:a.ticksuffix,showexponent:a.showexponent,exponentformat:a.exponentformat,separatethousands:a.separatethousands,tickfont:a.tickfont,tickangle:a.tickangle,tickformat:a.tickformat,tickformatstops:a.tickformatstops,layer:a.layer},\"plot\",\"from-root\"),u={visible:o({},a.visible,{dflt:!0}),type:o({},a.type,{values:[\"-\",\"linear\",\"log\",\"date\",\"category\"]}),autorange:o({},a.autorange,{editType:\"plot\"}),rangemode:{valType:\"enumerated\",values:[\"tozero\",\"nonnegative\",\"normal\"],dflt:\"tozero\",editType:\"calc\"},range:o({},a.range,{items:[{valType:\"any\",editType:\"plot\",impliedEdits:{\"^autorange\":!1}},{valType:\"any\",editType:\"plot\",impliedEdits:{\"^autorange\":!1}}],editType:\"plot\"}),categoryorder:a.categoryorder,categoryarray:a.categoryarray,angle:{valType:\"angle\",editType:\"plot\"},side:{valType:\"enumerated\",values:[\"clockwise\",\"counterclockwise\"],dflt:\"clockwise\",editType:\"plot\"},title:s(a.title,\"plot\",\"from-root\"),hoverformat:a.hoverformat,uirevision:{valType:\"any\",editType:\"none\"},editType:\"calc\",_deprecated:{title:a._deprecated.title,titlefont:a._deprecated.titlefont}};u.title.text.dflt=\"\",o(u,l,c);var h={visible:o({},a.visible,{dflt:!0}),type:{valType:\"enumerated\",values:[\"-\",\"linear\",\"category\"],dflt:\"-\",editType:\"calc\",_noTemplating:!0},categoryorder:a.categoryorder,categoryarray:a.categoryarray,thetaunit:{valType:\"enumerated\",values:[\"radians\",\"degrees\"],dflt:\"degrees\",editType:\"calc\"},period:{valType:\"number\",editType:\"calc\",min:0},direction:{valType:\"enumerated\",values:[\"counterclockwise\",\"clockwise\"],dflt:\"counterclockwise\",editType:\"calc\"},rotation:{valType:\"angle\",editType:\"calc\"},hoverformat:a.hoverformat,uirevision:{valType:\"any\",editType:\"none\"},editType:\"calc\"};o(h,l,c),e.exports={domain:i({name:\"polar\",editType:\"plot\"}),sector:{valType:\"info_array\",items:[{valType:\"number\",editType:\"plot\"},{valType:\"number\",editType:\"plot\"}],dflt:[0,360],editType:\"plot\"},hole:{valType:\"number\",min:0,max:1,dflt:0,editType:\"plot\"},bgcolor:{valType:\"color\",editType:\"plot\",dflt:n.background},radialaxis:u,angularaxis:h,gridshape:{valType:\"enumerated\",values:[\"circular\",\"linear\"],dflt:\"circular\",editType:\"plot\"},uirevision:{valType:\"any\",editType:\"none\"},editType:\"calc\"}},{\"../../components/color/attributes\":593,\"../../lib\":719,\"../../plot_api/edit_types\":750,\"../cartesian/layout_attributes\":779,\"../domain\":792}],833:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/color\"),i=t(\"../../plot_api/plot_template\"),o=t(\"../subplot_defaults\"),s=t(\"../get_data\").getSubplotData,l=t(\"../cartesian/tick_value_defaults\"),c=t(\"../cartesian/tick_mark_defaults\"),u=t(\"../cartesian/tick_label_defaults\"),h=t(\"../cartesian/category_order_defaults\"),f=t(\"../cartesian/line_grid_defaults\"),p=t(\"../cartesian/axis_autotype\"),d=t(\"./layout_attributes\"),g=t(\"./set_convert\"),v=t(\"./constants\"),m=v.axisNames;function y(t,e,r,o){var p=r(\"bgcolor\");o.bgColor=a.combine(p,o.paper_bgcolor);var y=r(\"sector\");r(\"hole\");var b,_=s(o.fullData,v.name,o.id),w=o.layoutOut;function k(t,e){return r(b+\".\"+t,e)}for(var T=0;T<m.length;T++){b=m[T],n.isPlainObject(t[b])||(t[b]={});var A=t[b],M=i.newContainer(e,b);M._id=M._name=b,M._attr=o.id+\".\"+b,M._traceIndices=_.map(function(t){return t._expandedIndex});var S=v.axisName2dataArray[b],E=x(A,M,k,_,S);h(A,M,k,{axData:_,dataAttr:S});var C,L,P=k(\"visible\");switch(g(M,e,w),k(\"uirevision\",e.uirevision),P&&(L=(C=k(\"color\"))===A.color?C:o.font.color),M._m=1,b){case\"radialaxis\":var O=k(\"autorange\",!M.isValidRange(A.range));A.autorange=O,!O||\"linear\"!==E&&\"-\"!==E||k(\"rangemode\"),\"reversed\"===O&&(M._m=-1),k(\"range\"),M.cleanRange(\"range\",{dfltRange:[0,1]}),P&&(k(\"side\"),k(\"angle\",y[0]),k(\"title.text\"),n.coerceFont(k,\"title.font\",{family:o.font.family,size:Math.round(1.2*o.font.size),color:L}));break;case\"angularaxis\":if(\"date\"===E){n.log(\"Polar plots do not support date angular axes yet.\");for(var I=0;I<_.length;I++)_[I].visible=!1;E=A.type=M.type=\"linear\"}k(\"linear\"===E?\"thetaunit\":\"period\");var z=k(\"direction\");k(\"rotation\",{counterclockwise:0,clockwise:90}[z])}if(P)l(A,M,k,M.type),u(A,M,k,M.type,{tickSuffixDflt:\"degrees\"===M.thetaunit?\"\\xb0\":void 0}),c(A,M,k,{outerTicks:!0}),k(\"showticklabels\")&&(n.coerceFont(k,\"tickfont\",{family:o.font.family,size:o.font.size,color:L}),k(\"tickangle\"),k(\"tickformat\")),f(A,M,k,{dfltColor:C,bgColor:o.bgColor,blend:60,showLine:!0,showGrid:!0,noZeroLine:!0,attributes:d[b]}),k(\"layer\");\"category\"!==E&&k(\"hoverformat\"),M._input=A}\"category\"===e.angularaxis.type&&r(\"gridshape\")}function x(t,e,r,n,a){if(\"-\"===r(\"type\")){for(var i,o=0;o<n.length;o++)if(n[o].visible){i=n[o];break}i&&i[a]&&(e.type=p(i[a],\"gregorian\")),\"-\"===e.type?e.type=\"linear\":t.type=e.type}return e.type}e.exports=function(t,e,r){o(t,e,r,{type:v.name,attributes:d,handleDefaults:y,font:e.font,paper_bgcolor:e.paper_bgcolor,fullData:r,layoutOut:e})}},{\"../../components/color\":594,\"../../lib\":719,\"../../plot_api/plot_template\":757,\"../cartesian/axis_autotype\":768,\"../cartesian/category_order_defaults\":771,\"../cartesian/line_grid_defaults\":781,\"../cartesian/tick_label_defaults\":786,\"../cartesian/tick_mark_defaults\":787,\"../cartesian/tick_value_defaults\":788,\"../get_data\":802,\"../subplot_defaults\":842,\"./constants\":829,\"./layout_attributes\":832,\"./set_convert\":841}],834:[function(t,e,r){\"use strict\";var n=t(\"../../../traces/scatter/attributes\"),a=n.marker,i=t(\"../../../lib/extend\").extendFlat;[\"Area traces are deprecated!\",\"Please switch to the *barpolar* trace type.\"].join(\" \");e.exports={r:i({},n.r,{}),t:i({},n.t,{}),marker:{color:i({},a.color,{}),size:i({},a.size,{}),symbol:i({},a.symbol,{}),opacity:i({},a.opacity,{}),editType:\"calc\"}}},{\"../../../lib/extend\":710,\"../../../traces/scatter/attributes\":1111}],835:[function(t,e,r){\"use strict\";var n=t(\"../../cartesian/layout_attributes\"),a=t(\"../../../lib/extend\").extendFlat,i=t(\"../../../plot_api/edit_types\").overrideAll,o=[\"Legacy polar charts are deprecated!\",\"Please switch to *polar* subplots.\"].join(\" \"),s=a({},n.domain,{});function l(t,e){return a({},e,{showline:{valType:\"boolean\"},showticklabels:{valType:\"boolean\"},tickorientation:{valType:\"enumerated\",values:[\"horizontal\",\"vertical\"]},ticklen:{valType:\"number\",min:0},tickcolor:{valType:\"color\"},ticksuffix:{valType:\"string\"},endpadding:{valType:\"number\",description:o},visible:{valType:\"boolean\"}})}e.exports=i({radialaxis:l(0,{range:{valType:\"info_array\",items:[{valType:\"number\"},{valType:\"number\"}]},domain:s,orientation:{valType:\"number\"}}),angularaxis:l(0,{range:{valType:\"info_array\",items:[{valType:\"number\",dflt:0},{valType:\"number\",dflt:360}]},domain:s}),layout:{direction:{valType:\"enumerated\",values:[\"clockwise\",\"counterclockwise\"]},orientation:{valType:\"angle\"}}},\"plot\",\"nested\")},{\"../../../lib/extend\":710,\"../../../plot_api/edit_types\":750,\"../../cartesian/layout_attributes\":779}],836:[function(t,e,r){\"use strict\";(e.exports=t(\"./micropolar\")).manager=t(\"./micropolar_manager\")},{\"./micropolar\":837,\"./micropolar_manager\":838}],837:[function(t,e,r){var n=t(\"d3\"),a=t(\"../../../lib\").extendDeepAll,i=t(\"../../../constants/alignment\").MID_SHIFT,o=e.exports={version:\"0.2.2\"};o.Axis=function(){var t,e,r,s,l={data:[],layout:{}},c={},u={},h=n.dispatch(\"hover\"),f={};return f.render=function(c){return function(c){e=c||e;var h=l.data,f=l.layout;(\"string\"==typeof e||e.nodeName)&&(e=n.select(e)),e.datum(h).each(function(e,l){var c=e.slice();u={data:o.util.cloneJson(c),layout:o.util.cloneJson(f)};var h=0;c.forEach(function(t,e){t.color||(t.color=f.defaultColorRange[h],h=(h+1)%f.defaultColorRange.length),t.strokeColor||(t.strokeColor=\"LinePlot\"===t.geometry?t.color:n.rgb(t.color).darker().toString()),u.data[e].color=t.color,u.data[e].strokeColor=t.strokeColor,u.data[e].strokeDash=t.strokeDash,u.data[e].strokeSize=t.strokeSize});var p=c.filter(function(t,e){var r=t.visible;return\"undefined\"==typeof r||!0===r}),d=!1,g=p.map(function(t,e){return d=d||\"undefined\"!=typeof t.groupId,t});if(d){var v=n.nest().key(function(t,e){return\"undefined\"!=typeof t.groupId?t.groupId:\"unstacked\"}).entries(g),m=[],y=v.map(function(t,e){if(\"unstacked\"===t.key)return t.values;var r=t.values[0].r.map(function(t,e){return 0});return t.values.forEach(function(t,e,n){t.yStack=[r],m.push(r),r=o.util.sumArrays(t.r,r)}),t.values});p=n.merge(y)}p.forEach(function(t,e){t.t=Array.isArray(t.t[0])?t.t:[t.t],t.r=Array.isArray(t.r[0])?t.r:[t.r]});var x=Math.min(f.width-f.margin.left-f.margin.right,f.height-f.margin.top-f.margin.bottom)/2;x=Math.max(10,x);var b,_=[f.margin.left+x,f.margin.top+x];b=d?[0,n.max(o.util.sumArrays(o.util.arrayLast(p).r[0],o.util.arrayLast(m)))]:n.extent(o.util.flattenArray(p.map(function(t,e){return t.r}))),f.radialAxis.domain!=o.DATAEXTENT&&(b[0]=0),r=n.scale.linear().domain(f.radialAxis.domain!=o.DATAEXTENT&&f.radialAxis.domain?f.radialAxis.domain:b).range([0,x]),u.layout.radialAxis.domain=r.domain();var w,k=o.util.flattenArray(p.map(function(t,e){return t.t})),T=\"string\"==typeof k[0];T&&(k=o.util.deduplicate(k),w=k.slice(),k=n.range(k.length),p=p.map(function(t,e){var r=t;return t.t=[k],d&&(r.yStack=t.yStack),r}));var A=p.filter(function(t,e){return\"LinePlot\"===t.geometry||\"DotPlot\"===t.geometry}).length===p.length,M=null===f.needsEndSpacing?T||!A:f.needsEndSpacing,S=f.angularAxis.domain&&f.angularAxis.domain!=o.DATAEXTENT&&!T&&f.angularAxis.domain[0]>=0?f.angularAxis.domain:n.extent(k),E=Math.abs(k[1]-k[0]);A&&!T&&(E=0);var C=S.slice();M&&T&&(C[1]+=E);var L=f.angularAxis.ticksCount||4;L>8&&(L=L/(L/8)+L%8),f.angularAxis.ticksStep&&(L=(C[1]-C[0])/L);var P=f.angularAxis.ticksStep||(C[1]-C[0])/(L*(f.minorTicks+1));w&&(P=Math.max(Math.round(P),1)),C[2]||(C[2]=P);var O=n.range.apply(this,C);if(O=O.map(function(t,e){return parseFloat(t.toPrecision(12))}),s=n.scale.linear().domain(C.slice(0,2)).range(\"clockwise\"===f.direction?[0,360]:[360,0]),u.layout.angularAxis.domain=s.domain(),u.layout.angularAxis.endPadding=M?E:0,\"undefined\"==typeof(t=n.select(this).select(\"svg.chart-root\"))||t.empty()){var I=(new DOMParser).parseFromString(\"<svg xmlns='http://www.w3.org/2000/svg' class='chart-root'>' + '<g class='outer-group'>' + '<g class='chart-group'>' + '<circle class='background-circle'></circle>' + '<g class='geometry-group'></g>' + '<g class='radial axis-group'>' + '<circle class='outside-circle'></circle>' + '</g>' + '<g class='angular axis-group'></g>' + '<g class='guides-group'><line></line><circle r='0'></circle></g>' + '</g>' + '<g class='legend-group'></g>' + '<g class='tooltips-group'></g>' + '<g class='title-group'><text></text></g>' + '</g>' + '</svg>\",\"application/xml\"),z=this.appendChild(this.ownerDocument.importNode(I.documentElement,!0));t=n.select(z)}t.select(\".guides-group\").style({\"pointer-events\":\"none\"}),t.select(\".angular.axis-group\").style({\"pointer-events\":\"none\"}),t.select(\".radial.axis-group\").style({\"pointer-events\":\"none\"});var D,R=t.select(\".chart-group\"),F={fill:\"none\",stroke:f.tickColor},B={\"font-size\":f.font.size,\"font-family\":f.font.family,fill:f.font.color,\"text-shadow\":[\"-1px 0px\",\"1px -1px\",\"-1px 1px\",\"1px 1px\"].map(function(t,e){return\" \"+t+\" 0 \"+f.font.outlineColor}).join(\",\")};if(f.showLegend){D=t.select(\".legend-group\").attr({transform:\"translate(\"+[x,f.margin.top]+\")\"}).style({display:\"block\"});var N=p.map(function(t,e){var r=o.util.cloneJson(t);return r.symbol=\"DotPlot\"===t.geometry?t.dotType||\"circle\":\"LinePlot\"!=t.geometry?\"square\":\"line\",r.visibleInLegend=\"undefined\"==typeof t.visibleInLegend||t.visibleInLegend,r.color=\"LinePlot\"===t.geometry?t.strokeColor:t.color,r});o.Legend().config({data:p.map(function(t,e){return t.name||\"Element\"+e}),legendConfig:a({},o.Legend.defaultConfig().legendConfig,{container:D,elements:N,reverseOrder:f.legend.reverseOrder})})();var j=D.node().getBBox();x=Math.min(f.width-j.width-f.margin.left-f.margin.right,f.height-f.margin.top-f.margin.bottom)/2,x=Math.max(10,x),_=[f.margin.left+x,f.margin.top+x],r.range([0,x]),u.layout.radialAxis.domain=r.domain(),D.attr(\"transform\",\"translate(\"+[_[0]+x,_[1]-x]+\")\")}else D=t.select(\".legend-group\").style({display:\"none\"});t.attr({width:f.width,height:f.height}).style({opacity:f.opacity}),R.attr(\"transform\",\"translate(\"+_+\")\").style({cursor:\"crosshair\"});var V=[(f.width-(f.margin.left+f.margin.right+2*x+(j?j.width:0)))/2,(f.height-(f.margin.top+f.margin.bottom+2*x))/2];if(V[0]=Math.max(0,V[0]),V[1]=Math.max(0,V[1]),t.select(\".outer-group\").attr(\"transform\",\"translate(\"+V+\")\"),f.title&&f.title.text){var U=t.select(\"g.title-group text\").style(B).text(f.title.text),q=U.node().getBBox();U.attr({x:_[0]-q.width/2,y:_[1]-x-20})}var H=t.select(\".radial.axis-group\");if(f.radialAxis.gridLinesVisible){var G=H.selectAll(\"circle.grid-circle\").data(r.ticks(5));G.enter().append(\"circle\").attr({class:\"grid-circle\"}).style(F),G.attr(\"r\",r),G.exit().remove()}H.select(\"circle.outside-circle\").attr({r:x}).style(F);var Y=t.select(\"circle.background-circle\").attr({r:x}).style({fill:f.backgroundColor,stroke:f.stroke});function W(t,e){return s(t)%360+f.orientation}if(f.radialAxis.visible){var X=n.svg.axis().scale(r).ticks(5).tickSize(5);H.call(X).attr({transform:\"rotate(\"+f.radialAxis.orientation+\")\"}),H.selectAll(\".domain\").style(F),H.selectAll(\"g>text\").text(function(t,e){return this.textContent+f.radialAxis.ticksSuffix}).style(B).style({\"text-anchor\":\"start\"}).attr({x:0,y:0,dx:0,dy:0,transform:function(t,e){return\"horizontal\"===f.radialAxis.tickOrientation?\"rotate(\"+-f.radialAxis.orientation+\") translate(\"+[0,B[\"font-size\"]]+\")\":\"translate(\"+[0,B[\"font-size\"]]+\")\"}}),H.selectAll(\"g>line\").style({stroke:\"black\"})}var Z=t.select(\".angular.axis-group\").selectAll(\"g.angular-tick\").data(O),J=Z.enter().append(\"g\").classed(\"angular-tick\",!0);Z.attr({transform:function(t,e){return\"rotate(\"+W(t)+\")\"}}).style({display:f.angularAxis.visible?\"block\":\"none\"}),Z.exit().remove(),J.append(\"line\").classed(\"grid-line\",!0).classed(\"major\",function(t,e){return e%(f.minorTicks+1)==0}).classed(\"minor\",function(t,e){return!(e%(f.minorTicks+1)==0)}).style(F),J.selectAll(\".minor\").style({stroke:f.minorTickColor}),Z.select(\"line.grid-line\").attr({x1:f.tickLength?x-f.tickLength:0,x2:x}).style({display:f.angularAxis.gridLinesVisible?\"block\":\"none\"}),J.append(\"text\").classed(\"axis-text\",!0).style(B);var K=Z.select(\"text.axis-text\").attr({x:x+f.labelOffset,dy:i+\"em\",transform:function(t,e){var r=W(t),n=x+f.labelOffset,a=f.angularAxis.tickOrientation;return\"horizontal\"==a?\"rotate(\"+-r+\" \"+n+\" 0)\":\"radial\"==a?r<270&&r>90?\"rotate(180 \"+n+\" 0)\":null:\"rotate(\"+(r<=180&&r>0?-90:90)+\" \"+n+\" 0)\"}}).style({\"text-anchor\":\"middle\",display:f.angularAxis.labelsVisible?\"block\":\"none\"}).text(function(t,e){return e%(f.minorTicks+1)!=0?\"\":w?w[t]+f.angularAxis.ticksSuffix:t+f.angularAxis.ticksSuffix}).style(B);f.angularAxis.rewriteTicks&&K.text(function(t,e){return e%(f.minorTicks+1)!=0?\"\":f.angularAxis.rewriteTicks(this.textContent,e)});var Q=n.max(R.selectAll(\".angular-tick text\")[0].map(function(t,e){return t.getCTM().e+t.getBBox().width}));D.attr({transform:\"translate(\"+[x+Q,f.margin.top]+\")\"});var $=t.select(\"g.geometry-group\").selectAll(\"g\").size()>0,tt=t.select(\"g.geometry-group\").selectAll(\"g.geometry\").data(p);if(tt.enter().append(\"g\").attr({class:function(t,e){return\"geometry geometry\"+e}}),tt.exit().remove(),p[0]||$){var et=[];p.forEach(function(t,e){var n={};n.radialScale=r,n.angularScale=s,n.container=tt.filter(function(t,r){return r==e}),n.geometry=t.geometry,n.orientation=f.orientation,n.direction=f.direction,n.index=e,et.push({data:t,geometryConfig:n})});var rt=n.nest().key(function(t,e){return\"undefined\"!=typeof t.data.groupId||\"unstacked\"}).entries(et),nt=[];rt.forEach(function(t,e){\"unstacked\"===t.key?nt=nt.concat(t.values.map(function(t,e){return[t]})):nt.push(t.values)}),nt.forEach(function(t,e){var r;r=Array.isArray(t)?t[0].geometryConfig.geometry:t.geometryConfig.geometry;var n=t.map(function(t,e){return a(o[r].defaultConfig(),t)});o[r]().config(n)()})}var at,it,ot=t.select(\".guides-group\"),st=t.select(\".tooltips-group\"),lt=o.tooltipPanel().config({container:st,fontSize:8})(),ct=o.tooltipPanel().config({container:st,fontSize:8})(),ut=o.tooltipPanel().config({container:st,hasTick:!0})();if(!T){var ht=ot.select(\"line\").attr({x1:0,y1:0,y2:0}).style({stroke:\"grey\",\"pointer-events\":\"none\"});R.on(\"mousemove.angular-guide\",function(t,e){var r=o.util.getMousePos(Y).angle;ht.attr({x2:-x,transform:\"rotate(\"+r+\")\"}).style({opacity:.5});var n=(r+180+360-f.orientation)%360;at=s.invert(n);var a=o.util.convertToCartesian(x+12,r+180);lt.text(o.util.round(at)).move([a[0]+_[0],a[1]+_[1]])}).on(\"mouseout.angular-guide\",function(t,e){ot.select(\"line\").style({opacity:0})})}var ft=ot.select(\"circle\").style({stroke:\"grey\",fill:\"none\"});R.on(\"mousemove.radial-guide\",function(t,e){var n=o.util.getMousePos(Y).radius;ft.attr({r:n}).style({opacity:.5}),it=r.invert(o.util.getMousePos(Y).radius);var a=o.util.convertToCartesian(n,f.radialAxis.orientation);ct.text(o.util.round(it)).move([a[0]+_[0],a[1]+_[1]])}).on(\"mouseout.radial-guide\",function(t,e){ft.style({opacity:0}),ut.hide(),lt.hide(),ct.hide()}),t.selectAll(\".geometry-group .mark\").on(\"mouseover.tooltip\",function(e,r){var a=n.select(this),i=this.style.fill,s=\"black\",l=this.style.opacity||1;if(a.attr({\"data-opacity\":l}),i&&\"none\"!==i){a.attr({\"data-fill\":i}),s=n.hsl(i).darker().toString(),a.style({fill:s,opacity:1});var c={t:o.util.round(e[0]),r:o.util.round(e[1])};T&&(c.t=w[e[0]]);var u=\"t: \"+c.t+\", r: \"+c.r,h=this.getBoundingClientRect(),f=t.node().getBoundingClientRect(),p=[h.left+h.width/2-V[0]-f.left,h.top+h.height/2-V[1]-f.top];ut.config({color:s}).text(u),ut.move(p)}else i=this.style.stroke||\"black\",a.attr({\"data-stroke\":i}),s=n.hsl(i).darker().toString(),a.style({stroke:s,opacity:1})}).on(\"mousemove.tooltip\",function(t,e){if(0!=n.event.which)return!1;n.select(this).attr(\"data-fill\")&&ut.show()}).on(\"mouseout.tooltip\",function(t,e){ut.hide();var r=n.select(this),a=r.attr(\"data-fill\");a?r.style({fill:a,opacity:r.attr(\"data-opacity\")}):r.style({stroke:r.attr(\"data-stroke\"),opacity:r.attr(\"data-opacity\")})})})}(c),this},f.config=function(t){if(!arguments.length)return l;var e=o.util.cloneJson(t);return e.data.forEach(function(t,e){l.data[e]||(l.data[e]={}),a(l.data[e],o.Axis.defaultConfig().data[0]),a(l.data[e],t)}),a(l.layout,o.Axis.defaultConfig().layout),a(l.layout,e.layout),this},f.getLiveConfig=function(){return u},f.getinputConfig=function(){return c},f.radialScale=function(t){return r},f.angularScale=function(t){return s},f.svg=function(){return t},n.rebind(f,h,\"on\"),f},o.Axis.defaultConfig=function(t,e){return{data:[{t:[1,2,3,4],r:[10,11,12,13],name:\"Line1\",geometry:\"LinePlot\",color:null,strokeDash:\"solid\",strokeColor:null,strokeSize:\"1\",visibleInLegend:!0,opacity:1}],layout:{defaultColorRange:n.scale.category10().range(),title:null,height:450,width:500,margin:{top:40,right:40,bottom:40,left:40},font:{size:12,color:\"gray\",outlineColor:\"white\",family:\"Tahoma, sans-serif\"},direction:\"clockwise\",orientation:0,labelOffset:10,radialAxis:{domain:null,orientation:-45,ticksSuffix:\"\",visible:!0,gridLinesVisible:!0,tickOrientation:\"horizontal\",rewriteTicks:null},angularAxis:{domain:[0,360],ticksSuffix:\"\",visible:!0,gridLinesVisible:!0,labelsVisible:!0,tickOrientation:\"horizontal\",rewriteTicks:null,ticksCount:null,ticksStep:null},minorTicks:0,tickLength:null,tickColor:\"silver\",minorTickColor:\"#eee\",backgroundColor:\"none\",needsEndSpacing:null,showLegend:!0,legend:{reverseOrder:!1},opacity:1}}},o.util={},o.DATAEXTENT=\"dataExtent\",o.AREA=\"AreaChart\",o.LINE=\"LinePlot\",o.DOT=\"DotPlot\",o.BAR=\"BarChart\",o.util._override=function(t,e){for(var r in t)r in e&&(e[r]=t[r])},o.util._extend=function(t,e){for(var r in t)e[r]=t[r]},o.util._rndSnd=function(){return 2*Math.random()-1+(2*Math.random()-1)+(2*Math.random()-1)},o.util.dataFromEquation2=function(t,e){var r=e||6;return n.range(0,360+r,r).map(function(e,r){var n=e*Math.PI/180;return[e,t(n)]})},o.util.dataFromEquation=function(t,e,r){var a=e||6,i=[],o=[];n.range(0,360+a,a).forEach(function(e,r){var n=e*Math.PI/180,a=t(n);i.push(e),o.push(a)});var s={t:i,r:o};return r&&(s.name=r),s},o.util.ensureArray=function(t,e){if(\"undefined\"==typeof t)return null;var r=[].concat(t);return n.range(e).map(function(t,e){return r[e]||r[0]})},o.util.fillArrays=function(t,e,r){return e.forEach(function(e,n){t[e]=o.util.ensureArray(t[e],r)}),t},o.util.cloneJson=function(t){return JSON.parse(JSON.stringify(t))},o.util.validateKeys=function(t,e){\"string\"==typeof e&&(e=e.split(\".\"));var r=e.shift();return t[r]&&(!e.length||objHasKeys(t[r],e))},o.util.sumArrays=function(t,e){return n.zip(t,e).map(function(t,e){return n.sum(t)})},o.util.arrayLast=function(t){return t[t.length-1]},o.util.arrayEqual=function(t,e){for(var r=Math.max(t.length,e.length,1);r-- >=0&&t[r]===e[r];);return-2===r},o.util.flattenArray=function(t){for(var e=[];!o.util.arrayEqual(e,t);)e=t,t=[].concat.apply([],t);return t},o.util.deduplicate=function(t){return t.filter(function(t,e,r){return r.indexOf(t)==e})},o.util.convertToCartesian=function(t,e){var r=e*Math.PI/180;return[t*Math.cos(r),t*Math.sin(r)]},o.util.round=function(t,e){var r=e||2,n=Math.pow(10,r);return Math.round(t*n)/n},o.util.getMousePos=function(t){var e=n.mouse(t.node()),r=e[0],a=e[1],i={};return i.x=r,i.y=a,i.pos=e,i.angle=180*(Math.atan2(a,r)+Math.PI)/Math.PI,i.radius=Math.sqrt(r*r+a*a),i},o.util.duplicatesCount=function(t){for(var e,r={},n={},a=0,i=t.length;a<i;a++)(e=t[a])in r?(r[e]++,n[e]=r[e]):r[e]=1;return n},o.util.duplicates=function(t){return Object.keys(o.util.duplicatesCount(t))},o.util.translator=function(t,e,r,n){if(n){var a=r.slice();r=e,e=a}var i=e.reduce(function(t,e){if(\"undefined\"!=typeof t)return t[e]},t);\"undefined\"!=typeof i&&(e.reduce(function(t,r,n){if(\"undefined\"!=typeof t)return n===e.length-1&&delete t[r],t[r]},t),r.reduce(function(t,e,n){return\"undefined\"==typeof t[e]&&(t[e]={}),n===r.length-1&&(t[e]=i),t[e]},t))},o.PolyChart=function(){var t=[o.PolyChart.defaultConfig()],e=n.dispatch(\"hover\"),r={solid:\"none\",dash:[5,2],dot:[2,5]};function i(){var e=t[0].geometryConfig,a=e.container;\"string\"==typeof a&&(a=n.select(a)),a.datum(t).each(function(t,a){var i=!!t[0].data.yStack,o=t.map(function(t,e){return i?n.zip(t.data.t[0],t.data.r[0],t.data.yStack[0]):n.zip(t.data.t[0],t.data.r[0])}),s=e.angularScale,l=e.radialScale.domain()[0],c={bar:function(r,a,i){var o=t[i].data,l=e.radialScale(r[1])-e.radialScale(0),c=e.radialScale(r[2]||0),u=o.barWidth;n.select(this).attr({class:\"mark bar\",d:\"M\"+[[l+c,-u/2],[l+c,u/2],[c,u/2],[c,-u/2]].join(\"L\")+\"Z\",transform:function(t,r){return\"rotate(\"+(e.orientation+s(t[0]))+\")\"}})}};c.dot=function(r,a,i){var o=r[2]?[r[0],r[1]+r[2]]:r,s=n.svg.symbol().size(t[i].data.dotSize).type(t[i].data.dotType)(r,a);n.select(this).attr({class:\"mark dot\",d:s,transform:function(t,r){var n,a,i,s=(n=function(t,r){var n=e.radialScale(t[1]),a=(e.angularScale(t[0])+e.orientation)*Math.PI/180;return{r:n,t:a}}(o),a=n.r*Math.cos(n.t),i=n.r*Math.sin(n.t),{x:a,y:i});return\"translate(\"+[s.x,s.y]+\")\"}})};var u=n.svg.line.radial().interpolate(t[0].data.lineInterpolation).radius(function(t){return e.radialScale(t[1])}).angle(function(t){return e.angularScale(t[0])*Math.PI/180});c.line=function(r,a,i){var s=r[2]?o[i].map(function(t,e){return[t[0],t[1]+t[2]]}):o[i];if(n.select(this).each(c.dot).style({opacity:function(e,r){return+t[i].data.dotVisible},fill:d.stroke(r,a,i)}).attr({class:\"mark dot\"}),!(a>0)){var l=n.select(this.parentNode).selectAll(\"path.line\").data([0]);l.enter().insert(\"path\"),l.attr({class:\"line\",d:u(s),transform:function(t,r){return\"rotate(\"+(e.orientation+90)+\")\"},\"pointer-events\":\"none\"}).style({fill:function(t,e){return d.fill(r,a,i)},\"fill-opacity\":0,stroke:function(t,e){return d.stroke(r,a,i)},\"stroke-width\":function(t,e){return d[\"stroke-width\"](r,a,i)},\"stroke-dasharray\":function(t,e){return d[\"stroke-dasharray\"](r,a,i)},opacity:function(t,e){return d.opacity(r,a,i)},display:function(t,e){return d.display(r,a,i)}})}};var h=e.angularScale.range(),f=Math.abs(h[1]-h[0])/o[0].length*Math.PI/180,p=n.svg.arc().startAngle(function(t){return-f/2}).endAngle(function(t){return f/2}).innerRadius(function(t){return e.radialScale(l+(t[2]||0))}).outerRadius(function(t){return e.radialScale(l+(t[2]||0))+e.radialScale(t[1])});c.arc=function(t,r,a){n.select(this).attr({class:\"mark arc\",d:p,transform:function(t,r){return\"rotate(\"+(e.orientation+s(t[0])+90)+\")\"}})};var d={fill:function(e,r,n){return t[n].data.color},stroke:function(e,r,n){return t[n].data.strokeColor},\"stroke-width\":function(e,r,n){return t[n].data.strokeSize+\"px\"},\"stroke-dasharray\":function(e,n,a){return r[t[a].data.strokeDash]},opacity:function(e,r,n){return t[n].data.opacity},display:function(e,r,n){return\"undefined\"==typeof t[n].data.visible||t[n].data.visible?\"block\":\"none\"}},g=n.select(this).selectAll(\"g.layer\").data(o);g.enter().append(\"g\").attr({class:\"layer\"});var v=g.selectAll(\"path.mark\").data(function(t,e){return t});v.enter().append(\"path\").attr({class:\"mark\"}),v.style(d).each(c[e.geometryType]),v.exit().remove(),g.exit().remove()})}return i.config=function(e){return arguments.length?(e.forEach(function(e,r){t[r]||(t[r]={}),a(t[r],o.PolyChart.defaultConfig()),a(t[r],e)}),this):t},i.getColorScale=function(){},n.rebind(i,e,\"on\"),i},o.PolyChart.defaultConfig=function(){return{data:{name:\"geom1\",t:[[1,2,3,4]],r:[[1,2,3,4]],dotType:\"circle\",dotSize:64,dotVisible:!1,barWidth:20,color:\"#ffa500\",strokeSize:1,strokeColor:\"silver\",strokeDash:\"solid\",opacity:1,index:0,visible:!0,visibleInLegend:!0},geometryConfig:{geometry:\"LinePlot\",geometryType:\"arc\",direction:\"clockwise\",orientation:0,container:\"body\",radialScale:null,angularScale:null,colorScale:n.scale.category20()}}},o.BarChart=function(){return o.PolyChart()},o.BarChart.defaultConfig=function(){return{geometryConfig:{geometryType:\"bar\"}}},o.AreaChart=function(){return o.PolyChart()},o.AreaChart.defaultConfig=function(){return{geometryConfig:{geometryType:\"arc\"}}},o.DotPlot=function(){return o.PolyChart()},o.DotPlot.defaultConfig=function(){return{geometryConfig:{geometryType:\"dot\",dotType:\"circle\"}}},o.LinePlot=function(){return o.PolyChart()},o.LinePlot.defaultConfig=function(){return{geometryConfig:{geometryType:\"line\"}}},o.Legend=function(){var t=o.Legend.defaultConfig(),e=n.dispatch(\"hover\");function r(){var e=t.legendConfig,i=t.data.map(function(t,r){return[].concat(t).map(function(t,n){var i=a({},e.elements[r]);return i.name=t,i.color=[].concat(e.elements[r].color)[n],i})}),o=n.merge(i);o=o.filter(function(t,r){return e.elements[r]&&(e.elements[r].visibleInLegend||\"undefined\"==typeof e.elements[r].visibleInLegend)}),e.reverseOrder&&(o=o.reverse());var s=e.container;(\"string\"==typeof s||s.nodeName)&&(s=n.select(s));var l=o.map(function(t,e){return t.color}),c=e.fontSize,u=null==e.isContinuous?\"number\"==typeof o[0]:e.isContinuous,h=u?e.height:c*o.length,f=s.classed(\"legend-group\",!0).selectAll(\"svg\").data([0]),p=f.enter().append(\"svg\").attr({width:300,height:h+c,xmlns:\"http://www.w3.org/2000/svg\",\"xmlns:xlink\":\"http://www.w3.org/1999/xlink\",version:\"1.1\"});p.append(\"g\").classed(\"legend-axis\",!0),p.append(\"g\").classed(\"legend-marks\",!0);var d=n.range(o.length),g=n.scale[u?\"linear\":\"ordinal\"]().domain(d).range(l),v=n.scale[u?\"linear\":\"ordinal\"]().domain(d)[u?\"range\":\"rangePoints\"]([0,h]);if(u){var m=f.select(\".legend-marks\").append(\"defs\").append(\"linearGradient\").attr({id:\"grad1\",x1:\"0%\",y1:\"0%\",x2:\"0%\",y2:\"100%\"}).selectAll(\"stop\").data(l);m.enter().append(\"stop\"),m.attr({offset:function(t,e){return e/(l.length-1)*100+\"%\"}}).style({\"stop-color\":function(t,e){return t}}),f.append(\"rect\").classed(\"legend-mark\",!0).attr({height:e.height,width:e.colorBandWidth,fill:\"url(#grad1)\"})}else{var y=f.select(\".legend-marks\").selectAll(\"path.legend-mark\").data(o);y.enter().append(\"path\").classed(\"legend-mark\",!0),y.attr({transform:function(t,e){return\"translate(\"+[c/2,v(e)+c/2]+\")\"},d:function(t,e){var r,a,i,o=t.symbol;return i=3*(a=c),\"line\"===(r=o)?\"M\"+[[-a/2,-a/12],[a/2,-a/12],[a/2,a/12],[-a/2,a/12]]+\"Z\":-1!=n.svg.symbolTypes.indexOf(r)?n.svg.symbol().type(r).size(i)():n.svg.symbol().type(\"square\").size(i)()},fill:function(t,e){return g(e)}}),y.exit().remove()}var x=n.svg.axis().scale(v).orient(\"right\"),b=f.select(\"g.legend-axis\").attr({transform:\"translate(\"+[u?e.colorBandWidth:c,c/2]+\")\"}).call(x);return b.selectAll(\".domain\").style({fill:\"none\",stroke:\"none\"}),b.selectAll(\"line\").style({fill:\"none\",stroke:u?e.textColor:\"none\"}),b.selectAll(\"text\").style({fill:e.textColor,\"font-size\":e.fontSize}).text(function(t,e){return o[e].name}),r}return r.config=function(e){return arguments.length?(a(t,e),this):t},n.rebind(r,e,\"on\"),r},o.Legend.defaultConfig=function(t,e){return{data:[\"a\",\"b\",\"c\"],legendConfig:{elements:[{symbol:\"line\",color:\"red\"},{symbol:\"square\",color:\"yellow\"},{symbol:\"diamond\",color:\"limegreen\"}],height:150,colorBandWidth:30,fontSize:12,container:\"body\",isContinuous:null,textColor:\"grey\",reverseOrder:!1}}},o.tooltipPanel=function(){var t,e,r,i={container:null,hasTick:!1,fontSize:12,color:\"white\",padding:5},s=\"tooltip-\"+o.tooltipPanel.uid++,l=10,c=function(){var n=(t=i.container.selectAll(\"g.\"+s).data([0])).enter().append(\"g\").classed(s,!0).style({\"pointer-events\":\"none\",display:\"none\"});return r=n.append(\"path\").style({fill:\"white\",\"fill-opacity\":.9}).attr({d:\"M0 0\"}),e=n.append(\"text\").attr({dx:i.padding+l,dy:.3*+i.fontSize}),c};return c.text=function(a){var o=n.hsl(i.color).l,s=o>=.5?\"#aaa\":\"white\",u=o>=.5?\"black\":\"white\",h=a||\"\";e.style({fill:u,\"font-size\":i.fontSize+\"px\"}).text(h);var f=i.padding,p=e.node().getBBox(),d={fill:i.color,stroke:s,\"stroke-width\":\"2px\"},g=p.width+2*f+l,v=p.height+2*f;return r.attr({d:\"M\"+[[l,-v/2],[l,-v/4],[i.hasTick?0:l,0],[l,v/4],[l,v/2],[g,v/2],[g,-v/2]].join(\"L\")+\"Z\"}).style(d),t.attr({transform:\"translate(\"+[l,-v/2+2*f]+\")\"}),t.style({display:\"block\"}),c},c.move=function(e){if(t)return t.attr({transform:\"translate(\"+[e[0],e[1]]+\")\"}).style({display:\"block\"}),c},c.hide=function(){if(t)return t.style({display:\"none\"}),c},c.show=function(){if(t)return t.style({display:\"block\"}),c},c.config=function(t){return a(i,t),c},c},o.tooltipPanel.uid=1,o.adapter={},o.adapter.plotly=function(){var t={convert:function(t,e){var r={};if(t.data&&(r.data=t.data.map(function(t,r){var n=a({},t);return[[n,[\"marker\",\"color\"],[\"color\"]],[n,[\"marker\",\"opacity\"],[\"opacity\"]],[n,[\"marker\",\"line\",\"color\"],[\"strokeColor\"]],[n,[\"marker\",\"line\",\"dash\"],[\"strokeDash\"]],[n,[\"marker\",\"line\",\"width\"],[\"strokeSize\"]],[n,[\"marker\",\"symbol\"],[\"dotType\"]],[n,[\"marker\",\"size\"],[\"dotSize\"]],[n,[\"marker\",\"barWidth\"],[\"barWidth\"]],[n,[\"line\",\"interpolation\"],[\"lineInterpolation\"]],[n,[\"showlegend\"],[\"visibleInLegend\"]]].forEach(function(t,r){o.util.translator.apply(null,t.concat(e))}),e||delete n.marker,e&&delete n.groupId,e?(\"LinePlot\"===n.geometry?(n.type=\"scatter\",!0===n.dotVisible?(delete n.dotVisible,n.mode=\"lines+markers\"):n.mode=\"lines\"):\"DotPlot\"===n.geometry?(n.type=\"scatter\",n.mode=\"markers\"):\"AreaChart\"===n.geometry?n.type=\"area\":\"BarChart\"===n.geometry&&(n.type=\"bar\"),delete n.geometry):(\"scatter\"===n.type?\"lines\"===n.mode?n.geometry=\"LinePlot\":\"markers\"===n.mode?n.geometry=\"DotPlot\":\"lines+markers\"===n.mode&&(n.geometry=\"LinePlot\",n.dotVisible=!0):\"area\"===n.type?n.geometry=\"AreaChart\":\"bar\"===n.type&&(n.geometry=\"BarChart\"),delete n.mode,delete n.type),n}),!e&&t.layout&&\"stack\"===t.layout.barmode)){var i=o.util.duplicates(r.data.map(function(t,e){return t.geometry}));r.data.forEach(function(t,e){var n=i.indexOf(t.geometry);-1!=n&&(r.data[e].groupId=n)})}if(t.layout){var s=a({},t.layout);if([[s,[\"plot_bgcolor\"],[\"backgroundColor\"]],[s,[\"showlegend\"],[\"showLegend\"]],[s,[\"radialaxis\"],[\"radialAxis\"]],[s,[\"angularaxis\"],[\"angularAxis\"]],[s.angularaxis,[\"showline\"],[\"gridLinesVisible\"]],[s.angularaxis,[\"showticklabels\"],[\"labelsVisible\"]],[s.angularaxis,[\"nticks\"],[\"ticksCount\"]],[s.angularaxis,[\"tickorientation\"],[\"tickOrientation\"]],[s.angularaxis,[\"ticksuffix\"],[\"ticksSuffix\"]],[s.angularaxis,[\"range\"],[\"domain\"]],[s.angularaxis,[\"endpadding\"],[\"endPadding\"]],[s.radialaxis,[\"showline\"],[\"gridLinesVisible\"]],[s.radialaxis,[\"tickorientation\"],[\"tickOrientation\"]],[s.radialaxis,[\"ticksuffix\"],[\"ticksSuffix\"]],[s.radialaxis,[\"range\"],[\"domain\"]],[s.angularAxis,[\"showline\"],[\"gridLinesVisible\"]],[s.angularAxis,[\"showticklabels\"],[\"labelsVisible\"]],[s.angularAxis,[\"nticks\"],[\"ticksCount\"]],[s.angularAxis,[\"tickorientation\"],[\"tickOrientation\"]],[s.angularAxis,[\"ticksuffix\"],[\"ticksSuffix\"]],[s.angularAxis,[\"range\"],[\"domain\"]],[s.angularAxis,[\"endpadding\"],[\"endPadding\"]],[s.radialAxis,[\"showline\"],[\"gridLinesVisible\"]],[s.radialAxis,[\"tickorientation\"],[\"tickOrientation\"]],[s.radialAxis,[\"ticksuffix\"],[\"ticksSuffix\"]],[s.radialAxis,[\"range\"],[\"domain\"]],[s.font,[\"outlinecolor\"],[\"outlineColor\"]],[s.legend,[\"traceorder\"],[\"reverseOrder\"]],[s,[\"labeloffset\"],[\"labelOffset\"]],[s,[\"defaultcolorrange\"],[\"defaultColorRange\"]]].forEach(function(t,r){o.util.translator.apply(null,t.concat(e))}),e?(\"undefined\"!=typeof s.tickLength&&(s.angularaxis.ticklen=s.tickLength,delete s.tickLength),s.tickColor&&(s.angularaxis.tickcolor=s.tickColor,delete s.tickColor)):(s.angularAxis&&\"undefined\"!=typeof s.angularAxis.ticklen&&(s.tickLength=s.angularAxis.ticklen),s.angularAxis&&\"undefined\"!=typeof s.angularAxis.tickcolor&&(s.tickColor=s.angularAxis.tickcolor)),s.legend&&\"boolean\"!=typeof s.legend.reverseOrder&&(s.legend.reverseOrder=\"normal\"!=s.legend.reverseOrder),s.legend&&\"boolean\"==typeof s.legend.traceorder&&(s.legend.traceorder=s.legend.traceorder?\"reversed\":\"normal\",delete s.legend.reverseOrder),s.margin&&\"undefined\"!=typeof s.margin.t){var l=[\"t\",\"r\",\"b\",\"l\",\"pad\"],c=[\"top\",\"right\",\"bottom\",\"left\",\"pad\"],u={};n.entries(s.margin).forEach(function(t,e){u[c[l.indexOf(t.key)]]=t.value}),s.margin=u}e&&(delete s.needsEndSpacing,delete s.minorTickColor,delete s.minorTicks,delete s.angularaxis.ticksCount,delete s.angularaxis.ticksCount,delete s.angularaxis.ticksStep,delete s.angularaxis.rewriteTicks,delete s.angularaxis.nticks,delete s.radialaxis.ticksCount,delete s.radialaxis.ticksCount,delete s.radialaxis.ticksStep,delete s.radialaxis.rewriteTicks,delete s.radialaxis.nticks),r.layout=s}return r}};return t}},{\"../../../constants/alignment\":688,\"../../../lib\":719,d3:164}],838:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../../lib\"),i=t(\"../../../components/color\"),o=t(\"./micropolar\"),s=t(\"./undo_manager\"),l=a.extendDeepAll,c=e.exports={};c.framework=function(t){var e,r,a,i,u,h=new s;function f(r,s){return s&&(u=s),n.select(n.select(u).node().parentNode).selectAll(\".svg-container>*:not(.chart-root)\").remove(),e=e?l(e,r):r,a||(a=o.Axis()),i=o.adapter.plotly().convert(e),a.config(i).render(u),t.data=e.data,t.layout=e.layout,c.fillLayout(t),e}return f.isPolar=!0,f.svg=function(){return a.svg()},f.getConfig=function(){return e},f.getLiveConfig=function(){return o.adapter.plotly().convert(a.getLiveConfig(),!0)},f.getLiveScales=function(){return{t:a.angularScale(),r:a.radialScale()}},f.setUndoPoint=function(){var t,n,a=this,i=o.util.cloneJson(e);t=i,n=r,h.add({undo:function(){n&&a(n)},redo:function(){a(t)}}),r=o.util.cloneJson(i)},f.undo=function(){h.undo()},f.redo=function(){h.redo()},f},c.fillLayout=function(t){var e=n.select(t).selectAll(\".plot-container\"),r=e.selectAll(\".svg-container\"),a=t.framework&&t.framework.svg&&t.framework.svg(),o={width:800,height:600,paper_bgcolor:i.background,_container:e,_paperdiv:r,_paper:a};t._fullLayout=l(o,t.layout)}},{\"../../../components/color\":594,\"../../../lib\":719,\"./micropolar\":837,\"./undo_manager\":839,d3:164}],839:[function(t,e,r){\"use strict\";e.exports=function(){var t,e=[],r=-1,n=!1;function a(t,e){return t?(n=!0,t[e](),n=!1,this):this}return{add:function(t){return n?this:(e.splice(r+1,e.length-r),e.push(t),r=e.length-1,this)},setCallback:function(e){t=e},undo:function(){var n=e[r];return n?(a(n,\"undo\"),r-=1,t&&t(n.undo),this):this},redo:function(){var n=e[r+1];return n?(a(n,\"redo\"),r+=1,t&&t(n.redo),this):this},clear:function(){e=[],r=-1},hasUndo:function(){return-1!==r},hasRedo:function(){return r<e.length-1},getCommands:function(){return e},getPreviousCommand:function(){return e[r-1]},getIndex:function(){return r}}}},{}],840:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"tinycolor2\"),i=t(\"../../registry\"),o=t(\"../../lib\"),s=t(\"../../components/color\"),l=t(\"../../components/drawing\"),c=t(\"../plots\"),u=t(\"../../plots/cartesian/axes\"),h=t(\"../cartesian/set_convert\"),f=t(\"./set_convert\"),p=t(\"../cartesian/autorange\").doAutoRange,d=t(\"../cartesian/dragbox\"),g=t(\"../../components/dragelement\"),v=t(\"../../components/fx\"),m=t(\"../../components/titles\"),y=t(\"../cartesian/select\").prepSelect,x=t(\"../cartesian/select\").selectOnClick,b=t(\"../cartesian/select\").clearSelect,_=t(\"../../lib/setcursor\"),w=t(\"../../lib/clear_gl_canvases\"),k=t(\"../../plot_api/subroutines\").redrawReglTraces,T=t(\"../../constants/alignment\").MID_SHIFT,A=t(\"./constants\"),M=t(\"./helpers\"),S=o._,E=o.mod,C=o.deg2rad,L=o.rad2deg;function P(t,e){this.id=e,this.gd=t,this._hasClipOnAxisFalse=null,this.vangles=null,this.radialAxisAngle=null,this.traceHash={},this.layers={},this.clipPaths={},this.clipIds={},this.viewInitial={};var r=t._fullLayout,n=\"clip\"+r._uid+e;this.clipIds.forTraces=n+\"-for-traces\",this.clipPaths.forTraces=r._clips.append(\"clipPath\").attr(\"id\",this.clipIds.forTraces),this.clipPaths.forTraces.append(\"path\"),this.framework=r._polarlayer.append(\"g\").attr(\"class\",e),this.radialTickLayout=null,this.angularTickLayout=null}var O=P.prototype;function I(t){var e=t.ticks+String(t.ticklen)+String(t.showticklabels);return\"side\"in t&&(e+=t.side),e}function z(t,e){return e[o.findIndexOfMin(e,function(e){return o.angleDist(t,e)})]}function D(t,e,r){return e?(t.attr(\"display\",null),t.attr(r)):t&&t.attr(\"display\",\"none\"),t}function R(t,e){return\"translate(\"+t+\",\"+e+\")\"}function F(t){return\"rotate(\"+t+\")\"}e.exports=function(t,e){return new P(t,e)},O.plot=function(t,e){var r=e[this.id];this._hasClipOnAxisFalse=!1;for(var n=0;n<t.length;n++){if(!1===t[n][0].trace.cliponaxis){this._hasClipOnAxisFalse=!0;break}}this.updateLayers(e,r),this.updateLayout(e,r),c.generalUpdatePerTraceModule(this.gd,this,t,r),this.updateFx(e,r)},O.updateLayers=function(t,e){var r=this.layers,a=e.radialaxis,i=e.angularaxis,o=A.layerNames,s=o.indexOf(\"frontplot\"),l=o.slice(0,s),c=\"below traces\"===i.layer,u=\"below traces\"===a.layer;c&&l.push(\"angular-line\"),u&&l.push(\"radial-line\"),c&&l.push(\"angular-axis\"),u&&l.push(\"radial-axis\"),l.push(\"frontplot\"),c||l.push(\"angular-line\"),u||l.push(\"radial-line\"),c||l.push(\"angular-axis\"),u||l.push(\"radial-axis\");var h=this.framework.selectAll(\".polarsublayer\").data(l,String);h.enter().append(\"g\").attr(\"class\",function(t){return\"polarsublayer \"+t}).each(function(t){var e=r[t]=n.select(this);switch(t){case\"frontplot\":e.append(\"g\").classed(\"barlayer\",!0),e.append(\"g\").classed(\"scatterlayer\",!0);break;case\"backplot\":e.append(\"g\").classed(\"maplayer\",!0);break;case\"plotbg\":r.bg=e.append(\"path\");break;case\"radial-grid\":case\"angular-grid\":e.style(\"fill\",\"none\");break;case\"radial-line\":e.append(\"line\").style(\"fill\",\"none\");break;case\"angular-line\":e.append(\"path\").style(\"fill\",\"none\")}}),h.order()},O.updateLayout=function(t,e){var r=this.layers,n=t._size,a=e.radialaxis,i=e.angularaxis,o=e.domain.x,c=e.domain.y;this.xOffset=n.l+n.w*o[0],this.yOffset=n.t+n.h*(1-c[1]);var u=this.xLength=n.w*(o[1]-o[0]),h=this.yLength=n.h*(c[1]-c[0]),f=e.sector;this.sectorInRad=f.map(C);var p,d,g,v,m,y=this.sectorBBox=function(t){var e,r,n,a,i=t[0],o=t[1]-i,s=E(i,360),l=s+o,c=Math.cos(C(s)),u=Math.sin(C(s)),h=Math.cos(C(l)),f=Math.sin(C(l));a=s<=90&&l>=90||s>90&&l>=450?1:u<=0&&f<=0?0:Math.max(u,f);e=s<=180&&l>=180||s>180&&l>=540?-1:c>=0&&h>=0?0:Math.min(c,h);r=s<=270&&l>=270||s>270&&l>=630?-1:u>=0&&f>=0?0:Math.min(u,f);n=l>=360?1:c<=0&&h<=0?0:Math.max(c,h);return[e,r,n,a]}(f),x=y[2]-y[0],b=y[3]-y[1],_=h/u,w=Math.abs(b/x);_>w?(p=u,m=(h-(d=u*w))/n.h/2,g=[o[0],o[1]],v=[c[0]+m,c[1]-m]):(d=h,m=(u-(p=h/w))/n.w/2,g=[o[0]+m,o[1]-m],v=[c[0],c[1]]),this.xLength2=p,this.yLength2=d,this.xDomain2=g,this.yDomain2=v;var k=this.xOffset2=n.l+n.w*g[0],T=this.yOffset2=n.t+n.h*(1-v[1]),A=this.radius=p/x,M=this.innerRadius=e.hole*A,S=this.cx=k-A*y[0],L=this.cy=T+A*y[3],P=this.cxx=S-k,O=this.cyy=L-T;this.radialAxis=this.mockAxis(t,e,a,{_id:\"x\",side:{counterclockwise:\"top\",clockwise:\"bottom\"}[a.side],domain:[M/n.w,A/n.w]}),this.angularAxis=this.mockAxis(t,e,i,{side:\"right\",domain:[0,Math.PI],autorange:!1}),this.doAutoRange(t,e),this.updateAngularAxis(t,e),this.updateRadialAxis(t,e),this.updateRadialAxisTitle(t,e),this.xaxis=this.mockCartesianAxis(t,e,{_id:\"x\",domain:g}),this.yaxis=this.mockCartesianAxis(t,e,{_id:\"y\",domain:v});var I=this.pathSubplot();this.clipPaths.forTraces.select(\"path\").attr(\"d\",I).attr(\"transform\",R(P,O)),r.frontplot.attr(\"transform\",R(k,T)).call(l.setClipUrl,this._hasClipOnAxisFalse?null:this.clipIds.forTraces,this.gd),r.bg.attr(\"d\",I).attr(\"transform\",R(S,L)).call(s.fill,e.bgcolor)},O.mockAxis=function(t,e,r,n){var a=o.extendFlat({},r,n);return f(a,e,t),a},O.mockCartesianAxis=function(t,e,r){var n=this,a=r._id,i=o.extendFlat({type:\"linear\"},r);h(i,t);var s={x:[0,2],y:[1,3]};return i.setRange=function(){var t=n.sectorBBox,r=s[a],o=n.radialAxis._rl,l=(o[1]-o[0])/(1-e.hole);i.range=[t[r[0]]*l,t[r[1]]*l]},i.isPtWithinRange=\"x\"===a?function(t){return n.isPtInside(t)}:function(){return!0},i.setRange(),i.setScale(),i},O.doAutoRange=function(t,e){var r=this.gd,n=this.radialAxis,a=e.radialaxis;n.setScale(),p(r,n);var i=n.range;a.range=i.slice(),a._input.range=i.slice(),n._rl=[n.r2l(i[0],null,\"gregorian\"),n.r2l(i[1],null,\"gregorian\")]},O.updateRadialAxis=function(t,e){var r=this,n=r.gd,a=r.layers,i=r.radius,l=r.innerRadius,c=r.cx,h=r.cy,f=e.radialaxis,p=E(e.sector[0],360),d=r.radialAxis,g=l<i;r.fillViewInitialKey(\"radialaxis.angle\",f.angle),r.fillViewInitialKey(\"radialaxis.range\",d.range.slice()),d.setGeometry(),\"auto\"===d.tickangle&&p>90&&p<=270&&(d.tickangle=180);var v=function(t){return\"translate(\"+(d.l2p(t.x)+l)+\",0)\"},m=I(f);if(r.radialTickLayout!==m&&(a[\"radial-axis\"].selectAll(\".xtick\").remove(),r.radialTickLayout=m),g){d.setScale();var y=u.calcTicks(d),x=u.clipEnds(d,y),b=u.getTickSigns(d)[2];u.drawTicks(n,d,{vals:y,layer:a[\"radial-axis\"],path:u.makeTickPath(d,0,b),transFn:v,crisp:!1}),u.drawGrid(n,d,{vals:x,layer:a[\"radial-grid\"],path:function(t){return r.pathArc(d.r2p(t.x)+l)},transFn:o.noop,crisp:!1}),u.drawLabels(n,d,{vals:y,layer:a[\"radial-axis\"],transFn:v,labelFns:u.makeLabelFns(d,0)})}var _=r.radialAxisAngle=r.vangles?L(z(C(f.angle),r.vangles)):f.angle,w=R(c,h),k=w+F(-_);D(a[\"radial-axis\"],g&&(f.showticklabels||f.ticks),{transform:k}),D(a[\"radial-grid\"],g&&f.showgrid,{transform:w}),D(a[\"radial-line\"].select(\"line\"),g&&f.showline,{x1:l,y1:0,x2:i,y2:0,transform:k}).attr(\"stroke-width\",f.linewidth).call(s.stroke,f.linecolor)},O.updateRadialAxisTitle=function(t,e,r){var n=this.gd,a=this.radius,i=this.cx,o=this.cy,s=e.radialaxis,c=this.id+\"title\",u=void 0!==r?r:this.radialAxisAngle,h=C(u),f=Math.cos(h),p=Math.sin(h),d=0;if(s.title){var g=l.bBox(this.layers[\"radial-axis\"].node()).height,v=s.title.font.size;d=\"counterclockwise\"===s.side?-g-.4*v:g+.8*v}this.layers[\"radial-axis-title\"]=m.draw(n,c,{propContainer:s,propName:this.id+\".radialaxis.title\",placeholder:S(n,\"Click to enter radial axis title\"),attributes:{x:i+a/2*f+d*p,y:o-a/2*p+d*f,\"text-anchor\":\"middle\"},transform:{rotate:-u}})},O.updateAngularAxis=function(t,e){var r=this,n=r.gd,a=r.layers,i=r.radius,l=r.innerRadius,c=r.cx,h=r.cy,f=e.angularaxis,p=r.angularAxis;r.fillViewInitialKey(\"angularaxis.rotation\",f.rotation),p.setGeometry(),p.setScale();var d=function(t){return p.t2g(t.x)};\"linear\"===p.type&&\"radians\"===p.thetaunit&&(p.tick0=L(p.tick0),p.dtick=L(p.dtick));var g=function(t){return R(c+i*Math.cos(t),h-i*Math.sin(t))},v=u.makeLabelFns(p,0).labelStandoff,m={xFn:function(t){var e=d(t);return Math.cos(e)*v},yFn:function(t){var e=d(t),r=Math.sin(e)>0?.2:1;return-Math.sin(e)*(v+t.fontSize*r)+Math.abs(Math.cos(e))*(t.fontSize*T)},anchorFn:function(t){var e=d(t),r=Math.cos(e);return Math.abs(r)<.1?\"middle\":r>0?\"start\":\"end\"},heightFn:function(t,e,r){var n=d(t);return-.5*(1+Math.sin(n))*r}},y=I(f);r.angularTickLayout!==y&&(a[\"angular-axis\"].selectAll(\".\"+p._id+\"tick\").remove(),r.angularTickLayout=y);var x,b=u.calcTicks(p);if(\"linear\"===e.gridshape?(x=b.map(d),o.angleDelta(x[0],x[1])<0&&(x=x.slice().reverse())):x=null,r.vangles=x,\"category\"===p.type&&(b=b.filter(function(t){return o.isAngleInsideSector(d(t),r.sectorInRad)})),p.visible){var _=\"inside\"===p.ticks?-1:1,w=(p.linewidth||1)/2;u.drawTicks(n,p,{vals:b,layer:a[\"angular-axis\"],path:\"M\"+_*w+\",0h\"+_*p.ticklen,transFn:function(t){var e=d(t);return g(e)+F(-L(e))},crisp:!1}),u.drawGrid(n,p,{vals:b,layer:a[\"angular-grid\"],path:function(t){var e=d(t),r=Math.cos(e),n=Math.sin(e);return\"M\"+[c+l*r,h-l*n]+\"L\"+[c+i*r,h-i*n]},transFn:o.noop,crisp:!1}),u.drawLabels(n,p,{vals:b,layer:a[\"angular-axis\"],repositionOnUpdate:!0,transFn:function(t){return g(d(t))},labelFns:m})}D(a[\"angular-line\"].select(\"path\"),f.showline,{d:r.pathSubplot(),transform:R(c,h)}).attr(\"stroke-width\",f.linewidth).call(s.stroke,f.linecolor)},O.updateFx=function(t,e){this.gd._context.staticPlot||(this.updateAngularDrag(t),this.updateRadialDrag(t,e,0),this.updateRadialDrag(t,e,1),this.updateMainDrag(t))},O.updateMainDrag=function(t){var e=this,r=e.gd,o=e.layers,s=t._zoomlayer,l=A.MINZOOM,c=A.OFFEDGE,u=e.radius,h=e.innerRadius,f=e.cx,p=e.cy,m=e.cxx,_=e.cyy,w=e.sectorInRad,k=e.vangles,T=e.radialAxis,S=M.clampTiny,E=M.findXYatLength,C=M.findEnclosingVertexAngles,L=A.cornerHalfWidth,P=A.cornerLen/2,O=d.makeDragger(o,\"path\",\"maindrag\",\"crosshair\");n.select(O).attr(\"d\",e.pathSubplot()).attr(\"transform\",R(f,p));var I,z,D,F,B,N,j,V,U,q={element:O,gd:r,subplot:e.id,plotinfo:{id:e.id,xaxis:e.xaxis,yaxis:e.yaxis},xaxes:[e.xaxis],yaxes:[e.yaxis]};function H(t,e){return Math.sqrt(t*t+e*e)}function G(t,e){return H(t-m,e-_)}function Y(t,e){return Math.atan2(_-e,t-m)}function W(t,e){return[t*Math.cos(e),t*Math.sin(-e)]}function X(t,r){if(0===t)return e.pathSector(2*L);var n=P/t,a=r-n,i=r+n,o=Math.max(0,Math.min(t,u)),s=o-L,l=o+L;return\"M\"+W(s,a)+\"A\"+[s,s]+\" 0,0,0 \"+W(s,i)+\"L\"+W(l,i)+\"A\"+[l,l]+\" 0,0,1 \"+W(l,a)+\"Z\"}function Z(t,r,n){if(0===t)return e.pathSector(2*L);var a,i,o=W(t,r),s=W(t,n),l=S((o[0]+s[0])/2),c=S((o[1]+s[1])/2);if(l&&c){var u=c/l,h=-1/u,f=E(L,u,l,c);a=E(P,h,f[0][0],f[0][1]),i=E(P,h,f[1][0],f[1][1])}else{var p,d;c?(p=P,d=L):(p=L,d=P),a=[[l-p,c-d],[l+p,c-d]],i=[[l-p,c+d],[l+p,c+d]]}return\"M\"+a.join(\"L\")+\"L\"+i.reverse().join(\"L\")+\"Z\"}function J(t,e){return e=Math.max(Math.min(e,u),h),t<c?t=0:u-t<c?t=u:e<c?e=0:u-e<c&&(e=u),Math.abs(e-t)>l?(t<e?(D=t,F=e):(D=e,F=t),!0):(D=null,F=null,!1)}function K(t,e){t=t||B,e=e||\"M0,0Z\",V.attr(\"d\",t),U.attr(\"d\",e),d.transitionZoombox(V,U,N,j),N=!0;var n={};rt(n),r.emit(\"plotly_relayouting\",n)}function Q(t,r){var n,a,i=I+t,o=z+r,s=G(I,z),l=Math.min(G(i,o),u),c=Y(I,z);J(s,l)&&(n=B+e.pathSector(F),D&&(n+=e.pathSector(D)),a=X(D,c)+X(F,c)),K(n,a)}function $(t,e,r,n){var a=M.findIntersectionXY(r,n,r,[t-m,_-e]);return H(a[0],a[1])}function tt(t,r){var n,a,i=I+t,o=z+r,s=Y(I,z),l=Y(i,o),c=C(s,k),h=C(l,k);J($(I,z,c[0],c[1]),Math.min($(i,o,h[0],h[1]),u))&&(n=B+e.pathSector(F),D&&(n+=e.pathSector(D)),a=[Z(D,c[0],c[1]),Z(F,c[0],c[1])].join(\" \")),K(n,a)}function et(){if(d.removeZoombox(r),null!==D&&null!==F){var t={};rt(t),d.showDoubleClickNotifier(r),i.call(\"_guiRelayout\",r,t)}}function rt(t){var r=T._rl,n=(r[1]-r[0])/(1-h/u)/u,a=[r[0]+(D-h)*n,r[0]+(F-h)*n];t[e.id+\".radialaxis.range\"]=a}function nt(t,n){var a=r._fullLayout.clickmode;if(d.removeZoombox(r),2===t){var o={};for(var s in e.viewInitial)o[e.id+\".\"+s]=e.viewInitial[s];r.emit(\"plotly_doubleclick\",null),i.call(\"_guiRelayout\",r,o)}a.indexOf(\"select\")>-1&&1===t&&x(n,r,[e.xaxis],[e.yaxis],e.id,q),a.indexOf(\"event\")>-1&&v.click(r,n,e.id)}q.prepFn=function(t,n,i){var o=r._fullLayout.dragmode,l=O.getBoundingClientRect();if(I=n-l.left,z=i-l.top,k){var c=M.findPolygonOffset(u,w[0],w[1],k);I+=m+c[0],z+=_+c[1]}switch(o){case\"zoom\":q.moveFn=k?tt:Q,q.clickFn=nt,q.doneFn=et,function(){D=null,F=null,B=e.pathSubplot(),N=!1;var t=r._fullLayout[e.id];j=a(t.bgcolor).getLuminance(),(V=d.makeZoombox(s,j,f,p,B)).attr(\"fill-rule\",\"evenodd\"),U=d.makeCorners(s,f,p),b(r)}();break;case\"select\":case\"lasso\":y(t,n,i,q,o)}},O.onmousemove=function(t){v.hover(r,t,e.id),r._fullLayout._lasthover=O,r._fullLayout._hoversubplot=e.id},O.onmouseout=function(t){r._dragging||g.unhover(r,t)},g.init(q)},O.updateRadialDrag=function(t,e,r){var a=this,s=a.gd,l=a.layers,c=a.radius,u=a.innerRadius,h=a.cx,f=a.cy,p=a.radialAxis,v=A.radialDragBoxSize,m=v/2;if(p.visible){var y,x,_,T=C(a.radialAxisAngle),M=p._rl,S=M[0],E=M[1],P=M[r],O=.75*(M[1]-M[0])/(1-e.hole)/c;r?(y=h+(c+m)*Math.cos(T),x=f-(c+m)*Math.sin(T),_=\"radialdrag\"):(y=h+(u-m)*Math.cos(T),x=f-(u-m)*Math.sin(T),_=\"radialdrag-inner\");var I,B,N,j=d.makeRectDragger(l,_,\"crosshair\",-m,-m,v,v),V={element:j,gd:s};D(n.select(j),p.visible&&u<c,{transform:R(y,x)}),V.prepFn=function(){I=null,B=null,N=null,V.moveFn=U,V.doneFn=q,b(s)},V.clampFn=function(t,e){return Math.sqrt(t*t+e*e)<A.MINDRAG&&(t=0,e=0),[t,e]},g.init(V)}function U(t,e){if(I)I(t,e);else{var n=[t,-e],i=[Math.cos(T),Math.sin(T)],l=Math.abs(o.dot(n,i)/Math.sqrt(o.dot(n,n)));isNaN(l)||(I=l<.5?H:G)}var c={};!function(t){null!==B?t[a.id+\".radialaxis.angle\"]=B:null!==N&&(t[a.id+\".radialaxis.range[\"+r+\"]\"]=N)}(c),s.emit(\"plotly_relayouting\",c)}function q(){null!==B?i.call(\"_guiRelayout\",s,a.id+\".radialaxis.angle\",B):null!==N&&i.call(\"_guiRelayout\",s,a.id+\".radialaxis.range[\"+r+\"]\",N)}function H(t,e){if(0!==r){var n=y+t,i=x+e;B=Math.atan2(f-i,n-h),a.vangles&&(B=z(B,a.vangles)),B=L(B);var o=R(h,f)+F(-B);l[\"radial-axis\"].attr(\"transform\",o),l[\"radial-line\"].select(\"line\").attr(\"transform\",o);var s=a.gd._fullLayout,c=s[a.id];a.updateRadialAxisTitle(s,c,B)}}function G(t,e){var n=o.dot([t,-e],[Math.cos(T),Math.sin(T)]);if(N=P-O*n,O>0==(r?N>S:N<E)){var l=s._fullLayout,c=l[a.id];p.range[r]=N,p._rl[r]=N,a.updateRadialAxis(l,c),a.xaxis.setRange(),a.xaxis.setScale(),a.yaxis.setRange(),a.yaxis.setScale();var u=!1;for(var h in a.traceHash){var f=a.traceHash[h],d=o.filterVisible(f);f[0][0].trace._module.plot(s,a,d,c),i.traceIs(h,\"gl\")&&d.length&&(u=!0)}u&&(w(s),k(s))}else N=null}},O.updateAngularDrag=function(t){var e=this,r=e.gd,a=e.layers,s=e.radius,c=e.angularAxis,u=e.cx,h=e.cy,f=e.cxx,p=e.cyy,v=A.angularDragBoxSize,m=d.makeDragger(a,\"path\",\"angulardrag\",\"move\"),y={element:m,gd:r};function x(t,e){return Math.atan2(p+v-e,t-f-v)}n.select(m).attr(\"d\",e.pathAnnulus(s,s+v)).attr(\"transform\",R(u,h)).call(_,\"move\");var T,M,S,E,C,P,O=a.frontplot.select(\".scatterlayer\").selectAll(\".trace\"),I=O.selectAll(\".point\"),z=O.selectAll(\".textpoint\");function D(t,s){var d=e.gd._fullLayout,g=d[e.id],v=x(T+t,M+s),m=L(v-P);if(E=S+m,a.frontplot.attr(\"transform\",R(e.xOffset2,e.yOffset2)+F([-m,f,p])),e.vangles){C=e.radialAxisAngle+m;var y=R(u,h)+F(-m),b=R(u,h)+F(-C);a.bg.attr(\"transform\",y),a[\"radial-grid\"].attr(\"transform\",y),a[\"radial-axis\"].attr(\"transform\",b),a[\"radial-line\"].select(\"line\").attr(\"transform\",b),e.updateRadialAxisTitle(d,g,C)}else e.clipPaths.forTraces.select(\"path\").attr(\"transform\",R(f,p)+F(m));I.each(function(){var t=n.select(this),e=l.getTranslate(t);t.attr(\"transform\",R(e.x,e.y)+F([m]))}),z.each(function(){var t=n.select(this),e=t.select(\"text\"),r=l.getTranslate(t);t.attr(\"transform\",F([m,e.attr(\"x\"),e.attr(\"y\")])+R(r.x,r.y))}),c.rotation=o.modHalf(E,360),e.updateAngularAxis(d,g),e._hasClipOnAxisFalse&&!o.isFullCircle(e.sectorInRad)&&O.call(l.hideOutsideRangePoints,e);var _=!1;for(var A in e.traceHash)if(i.traceIs(A,\"gl\")){var D=e.traceHash[A],N=o.filterVisible(D);D[0][0].trace._module.plot(r,e,N,g),N.length&&(_=!0)}_&&(w(r),k(r));var j={};B(j),r.emit(\"plotly_relayouting\",j)}function B(t){t[e.id+\".angularaxis.rotation\"]=E,e.vangles&&(t[e.id+\".radialaxis.angle\"]=C)}function N(){z.select(\"text\").attr(\"transform\",null);var t={};B(t),i.call(\"_guiRelayout\",r,t)}y.prepFn=function(n,a,i){var o=t[e.id];S=o.angularaxis.rotation;var s=m.getBoundingClientRect();T=a-s.left,M=i-s.top,P=x(T,M),y.moveFn=D,y.doneFn=N,b(r)},e.vangles&&!o.isFullCircle(e.sectorInRad)&&(y.prepFn=o.noop,_(n.select(m),null)),g.init(y)},O.isPtInside=function(t){var e=this.sectorInRad,r=this.vangles,n=this.angularAxis.c2g(t.theta),a=this.radialAxis,i=a.c2l(t.r),s=a._rl;return(r?M.isPtInsidePolygon:o.isPtInsideSector)(i,n,s,e,r)},O.pathArc=function(t){var e=this.sectorInRad,r=this.vangles;return(r?M.pathPolygon:o.pathArc)(t,e[0],e[1],r)},O.pathSector=function(t){var e=this.sectorInRad,r=this.vangles;return(r?M.pathPolygon:o.pathSector)(t,e[0],e[1],r)},O.pathAnnulus=function(t,e){var r=this.sectorInRad,n=this.vangles;return(n?M.pathPolygonAnnulus:o.pathAnnulus)(t,e,r[0],r[1],n)},O.pathSubplot=function(){var t=this.innerRadius,e=this.radius;return t?this.pathAnnulus(t,e):this.pathSector(e)},O.fillViewInitialKey=function(t,e){t in this.viewInitial||(this.viewInitial[t]=e)}},{\"../../components/color\":594,\"../../components/dragelement\":612,\"../../components/drawing\":615,\"../../components/fx\":632,\"../../components/titles\":681,\"../../constants/alignment\":688,\"../../lib\":719,\"../../lib/clear_gl_canvases\":704,\"../../lib/setcursor\":739,\"../../plot_api/subroutines\":758,\"../../plots/cartesian/axes\":767,\"../../registry\":848,\"../cartesian/autorange\":766,\"../cartesian/dragbox\":775,\"../cartesian/select\":784,\"../cartesian/set_convert\":785,\"../plots\":828,\"./constants\":829,\"./helpers\":830,\"./set_convert\":841,d3:164,tinycolor2:538}],841:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../cartesian/set_convert\"),i=n.deg2rad,o=n.rad2deg;e.exports=function(t,e,r){switch(a(t,r),t._id){case\"x\":case\"radialaxis\":!function(t,e){var r=e._subplot;t.setGeometry=function(){var e=t._rl[0],n=t._rl[1],a=r.innerRadius,i=(r.radius-a)/(n-e),o=a/i,s=e>n?function(t){return t<=0}:function(t){return t>=0};t.c2g=function(r){var n=t.c2l(r)-e;return(s(n)?n:0)+o},t.g2c=function(r){return t.l2c(r+e-o)},t.g2p=function(t){return t*i},t.c2p=function(e){return t.g2p(t.c2g(e))}}}(t,e);break;case\"angularaxis\":!function(t,e){var r=t.type;if(\"linear\"===r){var a=t.d2c,s=t.c2d;t.d2c=function(t,e){return function(t,e){return\"degrees\"===e?i(t):t}(a(t),e)},t.c2d=function(t,e){return s(function(t,e){return\"degrees\"===e?o(t):t}(t,e))}}t.makeCalcdata=function(e,a){var i,o,s=e[a],l=e._length,c=function(r){return t.d2c(r,e.thetaunit)};if(s){if(n.isTypedArray(s)&&\"linear\"===r){if(l===s.length)return s;if(s.subarray)return s.subarray(0,l)}for(i=new Array(l),o=0;o<l;o++)i[o]=c(s[o])}else{var u=a+\"0\",h=\"d\"+a,f=u in e?c(e[u]):0,p=e[h]?c(e[h]):(t.period||2*Math.PI)/l;for(i=new Array(l),o=0;o<l;o++)i[o]=f+o*p}return i},t.setGeometry=function(){var a,s,l,c,u=e.sector,h=u.map(i),f={clockwise:-1,counterclockwise:1}[t.direction],p=i(t.rotation),d=function(t){return f*t+p},g=function(t){return(t-p)/f};switch(r){case\"linear\":s=a=n.identity,c=i,l=o,t.range=n.isFullCircle(h)?[u[0],u[0]+360]:h.map(g).map(o);break;case\"category\":var v=t._categories.length,m=t.period?Math.max(t.period,v):v;0===m&&(m=1),s=c=function(t){return 2*t*Math.PI/m},a=l=function(t){return t*m/Math.PI/2},t.range=[0,m]}t.c2g=function(t){return d(s(t))},t.g2c=function(t){return a(g(t))},t.t2g=function(t){return d(c(t))},t.g2t=function(t){return l(g(t))}}}(t,e)}}},{\"../../lib\":719,\"../cartesian/set_convert\":785}],842:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),a=t(\"../plot_api/plot_template\"),i=t(\"./domain\").defaults;e.exports=function(t,e,r,o){var s,l,c=o.type,u=o.attributes,h=o.handleDefaults,f=o.partition||\"x\",p=e._subplots[c],d=p.length,g=d&&p[0].replace(/\\d+$/,\"\");function v(t,e){return n.coerce(s,l,u,t,e)}for(var m=0;m<d;m++){var y=p[m];s=t[y]?t[y]:t[y]={},l=a.newContainer(e,y,g),v(\"uirevision\",e.uirevision);var x={};x[f]=[m/d,(m+1)/d],i(l,e,v,x),o.id=y,h(s,l,v,o)}}},{\"../lib\":719,\"../plot_api/plot_template\":757,\"./domain\":792}],843:[function(t,e,r){\"use strict\";['Variables are inserted using %{variable}, for example \"y: %{y}\".','Numbers are formatted using d3-format\\'s syntax %{variable:d3-format}, for example \"Price: %{y:$.2f}\".',t(\"../constants/docs\").FORMAT_LINK,\"for details on the formatting syntax.\",'Dates are formatted using d3-time-format\\'s syntax %{variable|d3-time-format}, for example \"Day: %{2019-01-01|%A}\".',t(\"../constants/docs\").DATE_FORMAT_LINK,\"for details on the date formatting syntax.\"].join(\" \");function n(t){var e=t.description?\" \"+t.description:\"\",r=t.keys||[];if(r.length>0){for(var n=[],a=0;a<r.length;a++)n[a]=\"`\"+r[a]+\"`\";e+=\"Finally, the template string has access to \",e=1===r.length?\"variable \"+n[0]:\"variables \"+n.slice(0,-1).join(\", \")+\" and \"+n.slice(-1)+\".\"}return e}r.hovertemplateAttrs=function(t,e){t=t||{};n(e=e||{});var r={valType:\"string\",dflt:\"\",editType:t.editType||\"none\"};return!1!==t.arrayOk&&(r.arrayOk=!0),r},r.texttemplateAttrs=function(t,e){t=t||{};n(e=e||{});var r={valType:\"string\",dflt:\"\",editType:t.editType||\"calc\"};return!1!==t.arrayOk&&(r.arrayOk=!0),r}},{\"../constants/docs\":690}],844:[function(t,e,r){\"use strict\";var n=t(\"./ternary\"),a=t(\"../../plots/get_data\").getSubplotCalcData,i=t(\"../../lib\").counterRegex;r.name=\"ternary\";var o=r.attr=\"subplot\";r.idRoot=\"ternary\",r.idRegex=r.attrRegex=i(\"ternary\"),(r.attributes={})[o]={valType:\"subplotid\",dflt:\"ternary\",editType:\"calc\"},r.layoutAttributes=t(\"./layout_attributes\"),r.supplyLayoutDefaults=t(\"./layout_defaults\"),r.plot=function(t){for(var e=t._fullLayout,r=t.calcdata,i=e._subplots.ternary,o=0;o<i.length;o++){var s=i[o],l=a(r,\"ternary\",s),c=e[s]._subplot;c||(c=new n({id:s,graphDiv:t,container:e._ternarylayer.node()},e),e[s]._subplot=c),c.plot(l,e,t._promises)}},r.clean=function(t,e,r,n){for(var a=n._subplots.ternary||[],i=0;i<a.length;i++){var o=a[i],s=n[o]._subplot;!e[o]&&s&&(s.plotContainer.remove(),s.clipDef.remove(),s.clipDefRelative.remove(),s.layers[\"a-title\"].remove(),s.layers[\"b-title\"].remove(),s.layers[\"c-title\"].remove())}}},{\"../../lib\":719,\"../../plots/get_data\":802,\"./layout_attributes\":845,\"./layout_defaults\":846,\"./ternary\":847}],845:[function(t,e,r){\"use strict\";var n=t(\"../../components/color/attributes\"),a=t(\"../domain\").attributes,i=t(\"../cartesian/layout_attributes\"),o=t(\"../../plot_api/edit_types\").overrideAll,s=t(\"../../lib/extend\").extendFlat,l={title:i.title,color:i.color,tickmode:i.tickmode,nticks:s({},i.nticks,{dflt:6,min:1}),tick0:i.tick0,dtick:i.dtick,tickvals:i.tickvals,ticktext:i.ticktext,ticks:i.ticks,ticklen:i.ticklen,tickwidth:i.tickwidth,tickcolor:i.tickcolor,showticklabels:i.showticklabels,showtickprefix:i.showtickprefix,tickprefix:i.tickprefix,showticksuffix:i.showticksuffix,ticksuffix:i.ticksuffix,showexponent:i.showexponent,exponentformat:i.exponentformat,separatethousands:i.separatethousands,tickfont:i.tickfont,tickangle:i.tickangle,tickformat:i.tickformat,tickformatstops:i.tickformatstops,hoverformat:i.hoverformat,showline:s({},i.showline,{dflt:!0}),linecolor:i.linecolor,linewidth:i.linewidth,showgrid:s({},i.showgrid,{dflt:!0}),gridcolor:i.gridcolor,gridwidth:i.gridwidth,layer:i.layer,min:{valType:\"number\",dflt:0,min:0},_deprecated:{title:i._deprecated.title,titlefont:i._deprecated.titlefont}},c=e.exports=o({domain:a({name:\"ternary\"}),bgcolor:{valType:\"color\",dflt:n.background},sum:{valType:\"number\",dflt:1,min:0},aaxis:l,baxis:l,caxis:l},\"plot\",\"from-root\");c.uirevision={valType:\"any\",editType:\"none\"},c.aaxis.uirevision=c.baxis.uirevision=c.caxis.uirevision={valType:\"any\",editType:\"none\"}},{\"../../components/color/attributes\":593,\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../cartesian/layout_attributes\":779,\"../domain\":792}],846:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\"),a=t(\"../../plot_api/plot_template\"),i=t(\"../../lib\"),o=t(\"../subplot_defaults\"),s=t(\"../cartesian/tick_label_defaults\"),l=t(\"../cartesian/tick_mark_defaults\"),c=t(\"../cartesian/tick_value_defaults\"),u=t(\"../cartesian/line_grid_defaults\"),h=t(\"./layout_attributes\"),f=[\"aaxis\",\"baxis\",\"caxis\"];function p(t,e,r,i){var o,s,l,c=r(\"bgcolor\"),u=r(\"sum\");i.bgColor=n.combine(c,i.paper_bgcolor);for(var h=0;h<f.length;h++)s=t[o=f[h]]||{},(l=a.newContainer(e,o))._name=o,d(s,l,i,e);var p=e.aaxis,g=e.baxis,v=e.caxis;p.min+g.min+v.min>=u&&(p.min=0,g.min=0,v.min=0,t.aaxis&&delete t.aaxis.min,t.baxis&&delete t.baxis.min,t.caxis&&delete t.caxis.min)}function d(t,e,r,n){var a=h[e._name];function o(r,n){return i.coerce(t,e,a,r,n)}o(\"uirevision\",n.uirevision),e.type=\"linear\";var f=o(\"color\"),p=f!==a.color.dflt?f:r.font.color,d=e._name.charAt(0).toUpperCase(),g=\"Component \"+d,v=o(\"title.text\",g);e._hovertitle=v===g?v:d,i.coerceFont(o,\"title.font\",{family:r.font.family,size:Math.round(1.2*r.font.size),color:p}),o(\"min\"),c(t,e,o,\"linear\"),s(t,e,o,\"linear\",{}),l(t,e,o,{outerTicks:!0}),o(\"showticklabels\")&&(i.coerceFont(o,\"tickfont\",{family:r.font.family,size:r.font.size,color:p}),o(\"tickangle\"),o(\"tickformat\")),u(t,e,o,{dfltColor:f,bgColor:r.bgColor,blend:60,showLine:!0,showGrid:!0,noZeroLine:!0,attributes:a}),o(\"hoverformat\"),o(\"layer\")}e.exports=function(t,e,r){o(t,e,r,{type:\"ternary\",attributes:h,handleDefaults:p,font:e.font,paper_bgcolor:e.paper_bgcolor})}},{\"../../components/color\":594,\"../../lib\":719,\"../../plot_api/plot_template\":757,\"../cartesian/line_grid_defaults\":781,\"../cartesian/tick_label_defaults\":786,\"../cartesian/tick_mark_defaults\":787,\"../cartesian/tick_value_defaults\":788,\"../subplot_defaults\":842,\"./layout_attributes\":845}],847:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"tinycolor2\"),i=t(\"../../registry\"),o=t(\"../../lib\"),s=o._,l=t(\"../../components/color\"),c=t(\"../../components/drawing\"),u=t(\"../cartesian/set_convert\"),h=t(\"../../lib/extend\").extendFlat,f=t(\"../plots\"),p=t(\"../cartesian/axes\"),d=t(\"../../components/dragelement\"),g=t(\"../../components/fx\"),v=t(\"../../components/titles\"),m=t(\"../cartesian/select\").prepSelect,y=t(\"../cartesian/select\").selectOnClick,x=t(\"../cartesian/select\").clearSelect,b=t(\"../cartesian/constants\");function _(t,e){this.id=t.id,this.graphDiv=t.graphDiv,this.init(e),this.makeFramework(e),this.aTickLayout=null,this.bTickLayout=null,this.cTickLayout=null}e.exports=_;var w=_.prototype;w.init=function(t){this.container=t._ternarylayer,this.defs=t._defs,this.layoutId=t._uid,this.traceHash={},this.layers={}},w.plot=function(t,e){var r=e[this.id],n=e._size;this._hasClipOnAxisFalse=!1;for(var a=0;a<t.length;a++){if(!1===t[a][0].trace.cliponaxis){this._hasClipOnAxisFalse=!0;break}}this.updateLayers(r),this.adjustLayout(r,n),f.generalUpdatePerTraceModule(this.graphDiv,this,t,r),this.layers.plotbg.select(\"path\").call(l.fill,r.bgcolor)},w.makeFramework=function(t){var e=this.graphDiv,r=t[this.id],n=this.clipId=\"clip\"+this.layoutId+this.id,a=this.clipIdRelative=\"clip-relative\"+this.layoutId+this.id;this.clipDef=o.ensureSingleById(t._clips,\"clipPath\",n,function(t){t.append(\"path\").attr(\"d\",\"M0,0Z\")}),this.clipDefRelative=o.ensureSingleById(t._clips,\"clipPath\",a,function(t){t.append(\"path\").attr(\"d\",\"M0,0Z\")}),this.plotContainer=o.ensureSingle(this.container,\"g\",this.id),this.updateLayers(r),c.setClipUrl(this.layers.backplot,n,e),c.setClipUrl(this.layers.grids,n,e)},w.updateLayers=function(t){var e=this.layers,r=[\"draglayer\",\"plotbg\",\"backplot\",\"grids\"];\"below traces\"===t.aaxis.layer&&r.push(\"aaxis\",\"aline\"),\"below traces\"===t.baxis.layer&&r.push(\"baxis\",\"bline\"),\"below traces\"===t.caxis.layer&&r.push(\"caxis\",\"cline\"),r.push(\"frontplot\"),\"above traces\"===t.aaxis.layer&&r.push(\"aaxis\",\"aline\"),\"above traces\"===t.baxis.layer&&r.push(\"baxis\",\"bline\"),\"above traces\"===t.caxis.layer&&r.push(\"caxis\",\"cline\");var a=this.plotContainer.selectAll(\"g.toplevel\").data(r,String),i=[\"agrid\",\"bgrid\",\"cgrid\"];a.enter().append(\"g\").attr(\"class\",function(t){return\"toplevel \"+t}).each(function(t){var r=n.select(this);e[t]=r,\"frontplot\"===t?r.append(\"g\").classed(\"scatterlayer\",!0):\"backplot\"===t?r.append(\"g\").classed(\"maplayer\",!0):\"plotbg\"===t?r.append(\"path\").attr(\"d\",\"M0,0Z\"):\"aline\"===t||\"bline\"===t||\"cline\"===t?r.append(\"path\"):\"grids\"===t&&i.forEach(function(t){e[t]=r.append(\"g\").classed(\"grid \"+t,!0)})}),a.order()};var k=Math.sqrt(4/3);w.adjustLayout=function(t,e){var r,n,a,i,o,s,f=this,p=t.domain,d=(p.x[0]+p.x[1])/2,g=(p.y[0]+p.y[1])/2,v=p.x[1]-p.x[0],m=p.y[1]-p.y[0],y=v*e.w,x=m*e.h,b=t.sum,_=t.aaxis.min,w=t.baxis.min,T=t.caxis.min;y>k*x?a=(i=x)*k:i=(a=y)/k,o=v*a/y,s=m*i/x,r=e.l+e.w*d-a/2,n=e.t+e.h*(1-g)-i/2,f.x0=r,f.y0=n,f.w=a,f.h=i,f.sum=b,f.xaxis={type:\"linear\",range:[_+2*T-b,b-_-2*w],domain:[d-o/2,d+o/2],_id:\"x\"},u(f.xaxis,f.graphDiv._fullLayout),f.xaxis.setScale(),f.xaxis.isPtWithinRange=function(t){return t.a>=f.aaxis.range[0]&&t.a<=f.aaxis.range[1]&&t.b>=f.baxis.range[1]&&t.b<=f.baxis.range[0]&&t.c>=f.caxis.range[1]&&t.c<=f.caxis.range[0]},f.yaxis={type:\"linear\",range:[_,b-w-T],domain:[g-s/2,g+s/2],_id:\"y\"},u(f.yaxis,f.graphDiv._fullLayout),f.yaxis.setScale(),f.yaxis.isPtWithinRange=function(){return!0};var A=f.yaxis.domain[0],M=f.aaxis=h({},t.aaxis,{range:[_,b-w-T],side:\"left\",tickangle:(+t.aaxis.tickangle||0)-30,domain:[A,A+s*k],anchor:\"free\",position:0,_id:\"y\",_length:a});u(M,f.graphDiv._fullLayout),M.setScale();var S=f.baxis=h({},t.baxis,{range:[b-_-T,w],side:\"bottom\",domain:f.xaxis.domain,anchor:\"free\",position:0,_id:\"x\",_length:a});u(S,f.graphDiv._fullLayout),S.setScale();var E=f.caxis=h({},t.caxis,{range:[b-_-w,T],side:\"right\",tickangle:(+t.caxis.tickangle||0)+30,domain:[A,A+s*k],anchor:\"free\",position:0,_id:\"y\",_length:a});u(E,f.graphDiv._fullLayout),E.setScale();var C=\"M\"+r+\",\"+(n+i)+\"h\"+a+\"l-\"+a/2+\",-\"+i+\"Z\";f.clipDef.select(\"path\").attr(\"d\",C),f.layers.plotbg.select(\"path\").attr(\"d\",C);var L=\"M0,\"+i+\"h\"+a+\"l-\"+a/2+\",-\"+i+\"Z\";f.clipDefRelative.select(\"path\").attr(\"d\",L);var P=\"translate(\"+r+\",\"+n+\")\";f.plotContainer.selectAll(\".scatterlayer,.maplayer\").attr(\"transform\",P),f.clipDefRelative.select(\"path\").attr(\"transform\",null);var O=\"translate(\"+(r-S._offset)+\",\"+(n+i)+\")\";f.layers.baxis.attr(\"transform\",O),f.layers.bgrid.attr(\"transform\",O);var I=\"translate(\"+(r+a/2)+\",\"+n+\")rotate(30)translate(0,\"+-M._offset+\")\";f.layers.aaxis.attr(\"transform\",I),f.layers.agrid.attr(\"transform\",I);var z=\"translate(\"+(r+a/2)+\",\"+n+\")rotate(-30)translate(0,\"+-E._offset+\")\";f.layers.caxis.attr(\"transform\",z),f.layers.cgrid.attr(\"transform\",z),f.drawAxes(!0),f.layers.aline.select(\"path\").attr(\"d\",M.showline?\"M\"+r+\",\"+(n+i)+\"l\"+a/2+\",-\"+i:\"M0,0\").call(l.stroke,M.linecolor||\"#000\").style(\"stroke-width\",(M.linewidth||0)+\"px\"),f.layers.bline.select(\"path\").attr(\"d\",S.showline?\"M\"+r+\",\"+(n+i)+\"h\"+a:\"M0,0\").call(l.stroke,S.linecolor||\"#000\").style(\"stroke-width\",(S.linewidth||0)+\"px\"),f.layers.cline.select(\"path\").attr(\"d\",E.showline?\"M\"+(r+a/2)+\",\"+n+\"l\"+a/2+\",\"+i:\"M0,0\").call(l.stroke,E.linecolor||\"#000\").style(\"stroke-width\",(E.linewidth||0)+\"px\"),f.graphDiv._context.staticPlot||f.initInteractions(),c.setClipUrl(f.layers.frontplot,f._hasClipOnAxisFalse?null:f.clipId,f.graphDiv)},w.drawAxes=function(t){var e=this.graphDiv,r=this.id.substr(7)+\"title\",n=this.layers,a=this.aaxis,i=this.baxis,o=this.caxis;if(this.drawAx(a),this.drawAx(i),this.drawAx(o),t){var l=Math.max(a.showticklabels?a.tickfont.size/2:0,(o.showticklabels?.75*o.tickfont.size:0)+(\"outside\"===o.ticks?.87*o.ticklen:0)),c=(i.showticklabels?i.tickfont.size:0)+(\"outside\"===i.ticks?i.ticklen:0)+3;n[\"a-title\"]=v.draw(e,\"a\"+r,{propContainer:a,propName:this.id+\".aaxis.title\",placeholder:s(e,\"Click to enter Component A title\"),attributes:{x:this.x0+this.w/2,y:this.y0-a.title.font.size/3-l,\"text-anchor\":\"middle\"}}),n[\"b-title\"]=v.draw(e,\"b\"+r,{propContainer:i,propName:this.id+\".baxis.title\",placeholder:s(e,\"Click to enter Component B title\"),attributes:{x:this.x0-c,y:this.y0+this.h+.83*i.title.font.size+c,\"text-anchor\":\"middle\"}}),n[\"c-title\"]=v.draw(e,\"c\"+r,{propContainer:o,propName:this.id+\".caxis.title\",placeholder:s(e,\"Click to enter Component C title\"),attributes:{x:this.x0+this.w+c,y:this.y0+this.h+.83*o.title.font.size+c,\"text-anchor\":\"middle\"}})}},w.drawAx=function(t){var e,r=this.graphDiv,n=t._name,a=n.charAt(0),i=t._id,s=this.layers[n],l=a+\"tickLayout\",c=(e=t).ticks+String(e.ticklen)+String(e.showticklabels);this[l]!==c&&(s.selectAll(\".\"+i+\"tick\").remove(),this[l]=c),t.setScale();var u=p.calcTicks(t),h=p.clipEnds(t,u),f=p.makeTransFn(t),d=p.getTickSigns(t)[2],g=o.deg2rad(30),v=d*(t.linewidth||1)/2,m=d*t.ticklen,y=this.w,x=this.h,b=\"b\"===a?\"M0,\"+v+\"l\"+Math.sin(g)*m+\",\"+Math.cos(g)*m:\"M\"+v+\",0l\"+Math.cos(g)*m+\",\"+-Math.sin(g)*m,_={a:\"M0,0l\"+x+\",-\"+y/2,b:\"M0,0l-\"+y/2+\",-\"+x,c:\"M0,0l-\"+x+\",\"+y/2}[a];p.drawTicks(r,t,{vals:\"inside\"===t.ticks?h:u,layer:s,path:b,transFn:f,crisp:!1}),p.drawGrid(r,t,{vals:h,layer:this.layers[a+\"grid\"],path:_,transFn:f,crisp:!1}),p.drawLabels(r,t,{vals:u,layer:s,transFn:f,labelFns:p.makeLabelFns(t,0,30)})};var T=b.MINZOOM/2+.87,A=\"m-0.87,.5h\"+T+\"v3h-\"+(T+5.2)+\"l\"+(T/2+2.6)+\",-\"+(.87*T+4.5)+\"l2.6,1.5l-\"+T/2+\",\"+.87*T+\"Z\",M=\"m0.87,.5h-\"+T+\"v3h\"+(T+5.2)+\"l-\"+(T/2+2.6)+\",-\"+(.87*T+4.5)+\"l-2.6,1.5l\"+T/2+\",\"+.87*T+\"Z\",S=\"m0,1l\"+T/2+\",\"+.87*T+\"l2.6,-1.5l-\"+(T/2+2.6)+\",-\"+(.87*T+4.5)+\"l-\"+(T/2+2.6)+\",\"+(.87*T+4.5)+\"l2.6,1.5l\"+T/2+\",-\"+.87*T+\"Z\",E=\"m0.5,0.5h5v-2h-5v-5h-2v5h-5v2h5v5h2Z\",C=!0;function L(t){n.select(t).selectAll(\".zoombox,.js-zoombox-backdrop,.js-zoombox-menu,.zoombox-corners\").remove()}w.initInteractions=function(){var t,e,r,n,u,h,f,p,v,_,w=this,T=w.layers.plotbg.select(\"path\").node(),P=w.graphDiv,O=P._fullLayout._zoomlayer,I={element:T,gd:P,plotinfo:{id:w.id,xaxis:w.xaxis,yaxis:w.yaxis},subplot:w.id,prepFn:function(i,o,s){I.xaxes=[w.xaxis],I.yaxes=[w.yaxis];var c=P._fullLayout.dragmode;I.minDrag=\"lasso\"===c?1:void 0,\"zoom\"===c?(I.moveFn=N,I.clickFn=D,I.doneFn=j,function(i,o,s){var c=T.getBoundingClientRect();t=o-c.left,e=s-c.top,r={a:w.aaxis.range[0],b:w.baxis.range[1],c:w.caxis.range[1]},u=r,n=w.aaxis.range[1]-r.a,h=a(w.graphDiv._fullLayout[w.id].bgcolor).getLuminance(),f=\"M0,\"+w.h+\"L\"+w.w/2+\", 0L\"+w.w+\",\"+w.h+\"Z\",p=!1,v=O.append(\"path\").attr(\"class\",\"zoombox\").attr(\"transform\",\"translate(\"+w.x0+\", \"+w.y0+\")\").style({fill:h>.2?\"rgba(0,0,0,0)\":\"rgba(255,255,255,0)\",\"stroke-width\":0}).attr(\"d\",f),_=O.append(\"path\").attr(\"class\",\"zoombox-corners\").attr(\"transform\",\"translate(\"+w.x0+\", \"+w.y0+\")\").style({fill:l.background,stroke:l.defaultLine,\"stroke-width\":1,opacity:0}).attr(\"d\",\"M0,0Z\"),x(P)}(0,o,s)):\"pan\"===c?(I.moveFn=V,I.clickFn=D,I.doneFn=U,r={a:w.aaxis.range[0],b:w.baxis.range[1],c:w.caxis.range[1]},u=r,x(P)):\"select\"!==c&&\"lasso\"!==c||m(i,o,s,I,c)}};function z(t){var e={};return e[w.id+\".aaxis.min\"]=t.a,e[w.id+\".baxis.min\"]=t.b,e[w.id+\".caxis.min\"]=t.c,e}function D(t,e){var r=P._fullLayout.clickmode;L(P),2===t&&(P.emit(\"plotly_doubleclick\",null),i.call(\"_guiRelayout\",P,z({a:0,b:0,c:0}))),r.indexOf(\"select\")>-1&&1===t&&y(e,P,[w.xaxis],[w.yaxis],w.id,I),r.indexOf(\"event\")>-1&&g.click(P,e,w.id)}function R(t,e){return 1-e/w.h}function F(t,e){return 1-(t+(w.h-e)/Math.sqrt(3))/w.w}function B(t,e){return(t-(w.h-e)/Math.sqrt(3))/w.w}function N(a,i){var o=t+a,s=e+i,l=Math.max(0,Math.min(1,R(0,e),R(0,s))),c=Math.max(0,Math.min(1,F(t,e),F(o,s))),d=Math.max(0,Math.min(1,B(t,e),B(o,s))),g=(l/2+d)*w.w,m=(1-l/2-c)*w.w,y=(g+m)/2,x=m-g,T=(1-l)*w.h,C=T-x/k;x<b.MINZOOM?(u=r,v.attr(\"d\",f),_.attr(\"d\",\"M0,0Z\")):(u={a:r.a+l*n,b:r.b+c*n,c:r.c+d*n},v.attr(\"d\",f+\"M\"+g+\",\"+T+\"H\"+m+\"L\"+y+\",\"+C+\"L\"+g+\",\"+T+\"Z\"),_.attr(\"d\",\"M\"+t+\",\"+e+E+\"M\"+g+\",\"+T+A+\"M\"+m+\",\"+T+M+\"M\"+y+\",\"+C+S)),p||(v.transition().style(\"fill\",h>.2?\"rgba(0,0,0,0.4)\":\"rgba(255,255,255,0.3)\").duration(200),_.transition().style(\"opacity\",1).duration(200),p=!0),P.emit(\"plotly_relayouting\",z(u))}function j(){L(P),u!==r&&(i.call(\"_guiRelayout\",P,z(u)),C&&P.data&&P._context.showTips&&(o.notifier(s(P,\"Double-click to zoom back out\"),\"long\"),C=!1))}function V(t,e){var n=t/w.xaxis._m,a=e/w.yaxis._m,i=[(u={a:r.a-a,b:r.b+(n+a)/2,c:r.c-(n-a)/2}).a,u.b,u.c].sort(),o=i.indexOf(u.a),s=i.indexOf(u.b),l=i.indexOf(u.c);i[0]<0&&(i[1]+i[0]/2<0?(i[2]+=i[0]+i[1],i[0]=i[1]=0):(i[2]+=i[0]/2,i[1]+=i[0]/2,i[0]=0),u={a:i[o],b:i[s],c:i[l]},e=(r.a-u.a)*w.yaxis._m,t=(r.c-u.c-r.b+u.b)*w.xaxis._m);var h=\"translate(\"+(w.x0+t)+\",\"+(w.y0+e)+\")\";w.plotContainer.selectAll(\".scatterlayer,.maplayer\").attr(\"transform\",h);var f=\"translate(\"+-t+\",\"+-e+\")\";w.clipDefRelative.select(\"path\").attr(\"transform\",f),w.aaxis.range=[u.a,w.sum-u.b-u.c],w.baxis.range=[w.sum-u.a-u.c,u.b],w.caxis.range=[w.sum-u.a-u.b,u.c],w.drawAxes(!1),w._hasClipOnAxisFalse&&w.plotContainer.select(\".scatterlayer\").selectAll(\".trace\").call(c.hideOutsideRangePoints,w),P.emit(\"plotly_relayouting\",z(u))}function U(){i.call(\"_guiRelayout\",P,z(u))}T.onmousemove=function(t){g.hover(P,t,w.id),P._fullLayout._lasthover=T,P._fullLayout._hoversubplot=w.id},T.onmouseout=function(t){P._dragging||d.unhover(P,t)},d.init(I)}},{\"../../components/color\":594,\"../../components/dragelement\":612,\"../../components/drawing\":615,\"../../components/fx\":632,\"../../components/titles\":681,\"../../lib\":719,\"../../lib/extend\":710,\"../../registry\":848,\"../cartesian/axes\":767,\"../cartesian/constants\":773,\"../cartesian/select\":784,\"../cartesian/set_convert\":785,\"../plots\":828,d3:164,tinycolor2:538}],848:[function(t,e,r){\"use strict\";var n=t(\"./lib/loggers\"),a=t(\"./lib/noop\"),i=t(\"./lib/push_unique\"),o=t(\"./lib/is_plain_object\"),s=t(\"./lib/dom\").addStyleRule,l=t(\"./lib/extend\"),c=t(\"./plots/attributes\"),u=t(\"./plots/layout_attributes\"),h=l.extendFlat,f=l.extendDeepAll;function p(t){var e=t.name,a=t.categories,i=t.meta;if(r.modules[e])n.log(\"Type \"+e+\" already registered\");else{r.subplotsRegistry[t.basePlotModule.name]||function(t){var e=t.name;if(r.subplotsRegistry[e])return void n.log(\"Plot type \"+e+\" already registered.\");for(var a in m(t),r.subplotsRegistry[e]=t,r.componentsRegistry)b(a,t.name)}(t.basePlotModule);for(var o={},l=0;l<a.length;l++)o[a[l]]=!0,r.allCategories[a[l]]=!0;for(var c in r.modules[e]={_module:t,categories:o},i&&Object.keys(i).length&&(r.modules[e].meta=i),r.allTypes.push(e),r.componentsRegistry)y(c,e);t.layoutAttributes&&h(r.traceLayoutAttributes,t.layoutAttributes);var u=t.basePlotModule,f=u.name;if(\"mapbox\"===f){var p=u.constants.styleRules;for(var d in p)s(\".js-plotly-plot .plotly .mapboxgl-\"+d,p[d])}\"geo\"!==f&&\"mapbox\"!==f||void 0===typeof window||void 0!==window.PlotlyGeoAssets||(window.PlotlyGeoAssets={topojson:{}})}}function d(t){if(\"string\"!=typeof t.name)throw new Error(\"Component module *name* must be a string.\");var e=t.name;for(var n in r.componentsRegistry[e]=t,t.layoutAttributes&&(t.layoutAttributes._isLinkedToArray&&i(r.layoutArrayContainers,e),m(t)),r.modules)y(e,n);for(var a in r.subplotsRegistry)b(e,a);for(var o in r.transformsRegistry)x(e,o);t.schema&&t.schema.layout&&f(u,t.schema.layout)}function g(t){if(\"string\"!=typeof t.name)throw new Error(\"Transform module *name* must be a string.\");var e=\"Transform module \"+t.name,a=\"function\"==typeof t.transform,i=\"function\"==typeof t.calcTransform;if(!a&&!i)throw new Error(e+\" is missing a *transform* or *calcTransform* method.\");for(var s in a&&i&&n.log([e+\" has both a *transform* and *calcTransform* methods.\",\"Please note that all *transform* methods are executed\",\"before all *calcTransform* methods.\"].join(\" \")),o(t.attributes)||n.log(e+\" registered without an *attributes* object.\"),\"function\"!=typeof t.supplyDefaults&&n.log(e+\" registered without a *supplyDefaults* method.\"),r.transformsRegistry[t.name]=t,r.componentsRegistry)x(s,t.name)}function v(t){var e=t.name,n=e.split(\"-\")[0],a=t.dictionary,i=t.format,o=a&&Object.keys(a).length,s=i&&Object.keys(i).length,l=r.localeRegistry,c=l[e];if(c||(l[e]=c={}),n!==e){var u=l[n];u||(l[n]=u={}),o&&u.dictionary===c.dictionary&&(u.dictionary=a),s&&u.format===c.format&&(u.format=i)}o&&(c.dictionary=a),s&&(c.format=i)}function m(t){if(t.layoutAttributes){var e=t.layoutAttributes._arrayAttrRegexps;if(e)for(var n=0;n<e.length;n++)i(r.layoutArrayRegexes,e[n])}}function y(t,e){var n=r.componentsRegistry[t].schema;if(n&&n.traces){var a=n.traces[e];a&&f(r.modules[e]._module.attributes,a)}}function x(t,e){var n=r.componentsRegistry[t].schema;if(n&&n.transforms){var a=n.transforms[e];a&&f(r.transformsRegistry[e].attributes,a)}}function b(t,e){var n=r.componentsRegistry[t].schema;if(n&&n.subplots){var a=r.subplotsRegistry[e],i=a.layoutAttributes,o=\"subplot\"===a.attr?a.name:a.attr;Array.isArray(o)&&(o=o[0]);var s=n.subplots[o];i&&s&&f(i,s)}}function _(t){return\"object\"==typeof t&&(t=t.type),t}r.modules={},r.allCategories={},r.allTypes=[],r.subplotsRegistry={},r.transformsRegistry={},r.componentsRegistry={},r.layoutArrayContainers=[],r.layoutArrayRegexes=[],r.traceLayoutAttributes={},r.localeRegistry={},r.apiMethodRegistry={},r.collectableSubplotTypes=null,r.register=function(t){if(r.collectableSubplotTypes=null,!t)throw new Error(\"No argument passed to Plotly.register.\");t&&!Array.isArray(t)&&(t=[t]);for(var e=0;e<t.length;e++){var n=t[e];if(!n)throw new Error(\"Invalid module was attempted to be registered!\");switch(n.moduleType){case\"trace\":p(n);break;case\"transform\":g(n);break;case\"component\":d(n);break;case\"locale\":v(n);break;case\"apiMethod\":var a=n.name;r.apiMethodRegistry[a]=n.fn;break;default:throw new Error(\"Invalid module was attempted to be registered!\")}}},r.getModule=function(t){var e=r.modules[_(t)];return!!e&&e._module},r.traceIs=function(t,e){if(\"various\"===(t=_(t)))return!1;var a=r.modules[t];return a||(t&&\"area\"!==t&&n.log(\"Unrecognized trace type \"+t+\".\"),a=r.modules[c.type.dflt]),!!a.categories[e]},r.getTransformIndices=function(t,e){for(var r=[],n=t.transforms||[],a=0;a<n.length;a++)n[a].type===e&&r.push(a);return r},r.hasTransform=function(t,e){for(var r=t.transforms||[],n=0;n<r.length;n++)if(r[n].type===e)return!0;return!1},r.getComponentMethod=function(t,e){var n=r.componentsRegistry[t];return n&&n[e]||a},r.call=function(){var t=arguments[0],e=[].slice.call(arguments,1);return r.apiMethodRegistry[t].apply(null,e)}},{\"./lib/dom\":708,\"./lib/extend\":710,\"./lib/is_plain_object\":720,\"./lib/loggers\":723,\"./lib/noop\":728,\"./lib/push_unique\":733,\"./plots/attributes\":764,\"./plots/layout_attributes\":819}],849:[function(t,e,r){\"use strict\";var n=t(\"../registry\"),a=t(\"../lib\"),i=a.extendFlat,o=a.extendDeep;function s(t){var e;switch(t){case\"themes__thumb\":e={autosize:!0,width:150,height:150,title:{text:\"\"},showlegend:!1,margin:{l:5,r:5,t:5,b:5,pad:0},annotations:[]};break;case\"thumbnail\":e={title:{text:\"\"},hidesources:!0,showlegend:!1,borderwidth:0,bordercolor:\"\",margin:{l:1,r:1,t:1,b:1,pad:0},annotations:[]};break;default:e={}}return e}e.exports=function(t,e){var r;t.framework&&t.framework.isPolar&&(t=t.framework.getConfig());var a,l=t.data,c=t.layout,u=o([],l),h=o({},c,s(e.tileClass)),f=t._context||{};if(e.width&&(h.width=e.width),e.height&&(h.height=e.height),\"thumbnail\"===e.tileClass||\"themes__thumb\"===e.tileClass){h.annotations=[];var p=Object.keys(h);for(r=0;r<p.length;r++)a=p[r],[\"xaxis\",\"yaxis\",\"zaxis\"].indexOf(a.slice(0,5))>-1&&(h[p[r]].title={text:\"\"});for(r=0;r<u.length;r++){var d=u[r];d.showscale=!1,d.marker&&(d.marker.showscale=!1),n.traceIs(d,\"pie-like\")&&(d.textposition=\"none\")}}if(Array.isArray(e.annotations))for(r=0;r<e.annotations.length;r++)h.annotations.push(e.annotations[r]);var g=Object.keys(h).filter(function(t){return t.match(/^scene\\d*$/)});if(g.length){var v={};for(\"thumbnail\"===e.tileClass&&(v={title:{text:\"\"},showaxeslabels:!1,showticklabels:!1,linetickenable:!1}),r=0;r<g.length;r++){var m=h[g[r]];m.xaxis||(m.xaxis={}),m.yaxis||(m.yaxis={}),m.zaxis||(m.zaxis={}),i(m.xaxis,v),i(m.yaxis,v),i(m.zaxis,v),m._scene=null}}var y=document.createElement(\"div\");e.tileClass&&(y.className=e.tileClass);var x={gd:y,td:y,layout:h,data:u,config:{staticPlot:void 0===e.staticPlot||e.staticPlot,plotGlPixelRatio:void 0===e.plotGlPixelRatio?2:e.plotGlPixelRatio,displaylogo:e.displaylogo||!1,showLink:e.showLink||!1,showTips:e.showTips||!1,mapboxAccessToken:f.mapboxAccessToken}};return\"transparent\"!==e.setBackground&&(x.config.setBackground=e.setBackground||\"opaque\"),x.gd.defaultLayout=s(e.tileClass),x}},{\"../lib\":719,\"../registry\":848}],850:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),a=t(\"../plot_api/to_image\"),i=t(\"./filesaver\"),o=t(\"./helpers\");e.exports=function(t,e){var r;return n.isPlainObject(t)||(r=n.getGraphDiv(t)),(e=e||{}).format=e.format||\"png\",e.imageDataOnly=!0,new Promise(function(s,l){r&&r._snapshotInProgress&&l(new Error(\"Snapshotting already in progress.\")),n.isIE()&&\"svg\"!==e.format&&l(new Error(o.MSG_IE_BAD_FORMAT)),r&&(r._snapshotInProgress=!0);var c=a(t,e),u=e.filename||t.fn||\"newplot\";u+=\".\"+e.format,c.then(function(t){return r&&(r._snapshotInProgress=!1),i(t,u,e.format)}).then(function(t){s(t)}).catch(function(t){r&&(r._snapshotInProgress=!1),l(t)})})}},{\"../lib\":719,\"../plot_api/to_image\":760,\"./filesaver\":851,\"./helpers\":852}],851:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),a=t(\"./helpers\");e.exports=function(t,e,r){var i=document.createElement(\"a\"),o=\"download\"in i;return new Promise(function(s,l){var c,u;if(n.isIE9orBelow()&&l(new Error(\"IE < 10 unsupported\")),n.isSafari()){var h=\"svg\"===r?\",\":\";base64,\";return a.octetStream(h+encodeURIComponent(t)),s(e)}return n.isIE()?(c=a.createBlob(t,\"svg\"),window.navigator.msSaveBlob(c,e),c=null,s(e)):o?(c=a.createBlob(t,r),u=a.createObjectURL(c),i.href=u,i.download=e,document.body.appendChild(i),i.click(),document.body.removeChild(i),a.revokeObjectURL(u),c=null,s(e)):void l(new Error(\"download error\"))})}},{\"../lib\":719,\"./helpers\":852}],852:[function(t,e,r){\"use strict\";var n=t(\"../registry\");r.getDelay=function(t){return t._has&&(t._has(\"gl3d\")||t._has(\"gl2d\")||t._has(\"mapbox\"))?500:0},r.getRedrawFunc=function(t){return function(){var e=t._fullLayout||{};!(e._has&&e._has(\"polar\"))&&t.data&&t.data[0]&&t.data[0].r||n.getComponentMethod(\"colorbar\",\"draw\")(t)}},r.encodeSVG=function(t){return\"data:image/svg+xml,\"+encodeURIComponent(t)};var a=window.URL||window.webkitURL;r.createObjectURL=function(t){return a.createObjectURL(t)},r.revokeObjectURL=function(t){return a.revokeObjectURL(t)},r.createBlob=function(t,e){if(\"svg\"===e)return new window.Blob([t],{type:\"image/svg+xml;charset=utf-8\"});var r=function(t){for(var e=t.length,r=new ArrayBuffer(e),n=new Uint8Array(r),a=0;a<e;a++)n[a]=t.charCodeAt(a);return r}(window.atob(t));return new window.Blob([r],{type:\"image/\"+e})},r.octetStream=function(t){document.location.href=\"data:application/octet-stream\"+t},r.IMAGE_URL_PREFIX=/^data:image\\/\\w+;base64,/,r.MSG_IE_BAD_FORMAT=\"Sorry IE does not support downloading from canvas. Try {format:'svg'} instead.\"},{\"../registry\":848}],853:[function(t,e,r){\"use strict\";var n=t(\"./helpers\"),a={getDelay:n.getDelay,getRedrawFunc:n.getRedrawFunc,clone:t(\"./cloneplot\"),toSVG:t(\"./tosvg\"),svgToImg:t(\"./svgtoimg\"),toImage:t(\"./toimage\"),downloadImage:t(\"./download\")};e.exports=a},{\"./cloneplot\":849,\"./download\":850,\"./helpers\":852,\"./svgtoimg\":854,\"./toimage\":855,\"./tosvg\":856}],854:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),a=t(\"events\").EventEmitter,i=t(\"./helpers\");e.exports=function(t){var e=t.emitter||new a,r=new Promise(function(a,o){var s=window.Image,l=t.svg,c=t.format||\"png\";if(n.isIE()&&\"svg\"!==c){var u=new Error(i.MSG_IE_BAD_FORMAT);return o(u),t.promise?r:e.emit(\"error\",u)}var h,f,p=t.canvas,d=t.scale||1,g=t.width||300,v=t.height||150,m=d*g,y=d*v,x=p.getContext(\"2d\"),b=new s;\"svg\"===c||n.isIE9orBelow()||n.isSafari()?f=i.encodeSVG(l):(h=i.createBlob(l,\"svg\"),f=i.createObjectURL(h)),p.width=m,p.height=y,b.onload=function(){var r;switch(h=null,i.revokeObjectURL(f),\"svg\"!==c&&x.drawImage(b,0,0,m,y),c){case\"jpeg\":r=p.toDataURL(\"image/jpeg\");break;case\"png\":r=p.toDataURL(\"image/png\");break;case\"webp\":r=p.toDataURL(\"image/webp\");break;case\"svg\":r=f;break;default:var n=\"Image format is not jpeg, png, svg or webp.\";if(o(new Error(n)),!t.promise)return e.emit(\"error\",n)}a(r),t.promise||e.emit(\"success\",r)},b.onerror=function(r){if(h=null,i.revokeObjectURL(f),o(r),!t.promise)return e.emit(\"error\",r)},b.src=f});return t.promise?r:e}},{\"../lib\":719,\"./helpers\":852,events:105}],855:[function(t,e,r){\"use strict\";var n=t(\"events\").EventEmitter,a=t(\"../registry\"),i=t(\"../lib\"),o=t(\"./helpers\"),s=t(\"./cloneplot\"),l=t(\"./tosvg\"),c=t(\"./svgtoimg\");e.exports=function(t,e){var r=new n,u=s(t,{format:\"png\"}),h=u.gd;h.style.position=\"absolute\",h.style.left=\"-5000px\",document.body.appendChild(h);var f=o.getRedrawFunc(h);return a.call(\"plot\",h,u.data,u.layout,u.config).then(f).then(function(){var t=o.getDelay(h._fullLayout);setTimeout(function(){var t=l(h),n=document.createElement(\"canvas\");n.id=i.randstr(),(r=c({format:e.format,width:h._fullLayout.width,height:h._fullLayout.height,canvas:n,emitter:r,svg:t})).clean=function(){h&&document.body.removeChild(h)}},t)}).catch(function(t){r.emit(\"error\",t)}),r}},{\"../lib\":719,\"../registry\":848,\"./cloneplot\":849,\"./helpers\":852,\"./svgtoimg\":854,\"./tosvg\":856,events:105}],856:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../lib\"),i=t(\"../components/drawing\"),o=t(\"../components/color\"),s=t(\"../constants/xmlns_namespaces\"),l=/\"/g,c=new RegExp('(\"TOBESTRIPPED)|(TOBESTRIPPED\")',\"g\");e.exports=function(t,e,r){var u,h=t._fullLayout,f=h._paper,p=h._toppaper,d=h.width,g=h.height;f.insert(\"rect\",\":first-child\").call(i.setRect,0,0,d,g).call(o.fill,h.paper_bgcolor);var v=h._basePlotModules||[];for(u=0;u<v.length;u++){var m=v[u];m.toSVG&&m.toSVG(t)}if(p){var y=p.node().childNodes,x=Array.prototype.slice.call(y);for(u=0;u<x.length;u++){var b=x[u];b.childNodes.length&&f.node().appendChild(b)}}h._draggers&&h._draggers.remove(),f.node().style.background=\"\",f.selectAll(\"text\").attr({\"data-unformatted\":null,\"data-math\":null}).each(function(){var t=n.select(this);if(\"hidden\"!==this.style.visibility&&\"none\"!==this.style.display){t.style({visibility:null,display:null});var e=this.style.fontFamily;e&&-1!==e.indexOf('\"')&&t.style(\"font-family\",e.replace(l,\"TOBESTRIPPED\"))}else t.remove()}),f.selectAll(\".point, .scatterpts, .legendfill>path, .legendlines>path, .cbfill\").each(function(){var t=n.select(this),e=this.style.fill;e&&-1!==e.indexOf(\"url(\")&&t.style(\"fill\",e.replace(l,\"TOBESTRIPPED\"));var r=this.style.stroke;r&&-1!==r.indexOf(\"url(\")&&t.style(\"stroke\",r.replace(l,\"TOBESTRIPPED\"))}),\"pdf\"!==e&&\"eps\"!==e||f.selectAll(\"#MathJax_SVG_glyphs path\").attr(\"stroke-width\",0),f.node().setAttributeNS(s.xmlns,\"xmlns\",s.svg),f.node().setAttributeNS(s.xmlns,\"xmlns:xlink\",s.xlink),\"svg\"===e&&r&&(f.attr(\"width\",r*d),f.attr(\"height\",r*g),f.attr(\"viewBox\",\"0 0 \"+d+\" \"+g));var _=(new window.XMLSerializer).serializeToString(f.node());return _=function(t){var e=n.select(\"body\").append(\"div\").style({display:\"none\"}).html(\"\"),r=t.replace(/(&[^;]*;)/gi,function(t){return\"&lt;\"===t?\"&#60;\":\"&rt;\"===t?\"&#62;\":-1!==t.indexOf(\"<\")||-1!==t.indexOf(\">\")?\"\":e.html(t).text()});return e.remove(),r}(_),_=(_=_.replace(/&(?!\\w+;|\\#[0-9]+;| \\#x[0-9A-F]+;)/g,\"&amp;\")).replace(c,\"'\"),a.isIE()&&(_=(_=(_=_.replace(/\"/gi,\"'\")).replace(/(\\('#)([^']*)('\\))/gi,'(\"#$2\")')).replace(/(\\\\')/gi,'\"')),_}},{\"../components/color\":594,\"../components/drawing\":615,\"../constants/xmlns_namespaces\":696,\"../lib\":719,d3:164}],857:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e){for(var r=0;r<t.length;r++)t[r].i=r;n.mergeArray(e.text,t,\"tx\"),n.mergeArray(e.hovertext,t,\"htx\");var a=e.marker;if(a){n.mergeArray(a.opacity,t,\"mo\",!0),n.mergeArray(a.color,t,\"mc\");var i=a.line;i&&(n.mergeArray(i.color,t,\"mlc\"),n.mergeArrayCastPositive(i.width,t,\"mlw\"))}}},{\"../../lib\":719}],858:[function(t,e,r){\"use strict\";var n=t(\"../scatter/attributes\"),a=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"../../plots/template_attributes\").texttemplateAttrs,o=t(\"../../components/colorscale/attributes\"),s=t(\"../../plots/font_attributes\"),l=t(\"./constants\"),c=t(\"../../lib/extend\").extendFlat,u=s({editType:\"calc\",arrayOk:!0,colorEditType:\"style\"}),h=c({},n.marker.line.width,{dflt:0}),f=c({width:h,editType:\"calc\"},o(\"marker.line\")),p=c({line:f,editType:\"calc\"},o(\"marker\"),{opacity:{valType:\"number\",arrayOk:!0,dflt:1,min:0,max:1,editType:\"style\"}});e.exports={x:n.x,x0:n.x0,dx:n.dx,y:n.y,y0:n.y0,dy:n.dy,text:n.text,texttemplate:i({editType:\"plot\"},{keys:l.eventDataKeys}),hovertext:n.hovertext,hovertemplate:a({},{keys:l.eventDataKeys}),textposition:{valType:\"enumerated\",values:[\"inside\",\"outside\",\"auto\",\"none\"],dflt:\"none\",arrayOk:!0,editType:\"calc\"},insidetextanchor:{valType:\"enumerated\",values:[\"end\",\"middle\",\"start\"],dflt:\"end\",editType:\"plot\"},textangle:{valType:\"angle\",dflt:\"auto\",editType:\"plot\"},textfont:c({},u,{}),insidetextfont:c({},u,{}),outsidetextfont:c({},u,{}),constraintext:{valType:\"enumerated\",values:[\"inside\",\"outside\",\"both\",\"none\"],dflt:\"both\",editType:\"calc\"},cliponaxis:c({},n.cliponaxis,{}),orientation:{valType:\"enumerated\",values:[\"v\",\"h\"],editType:\"calc+clearAxisTypes\"},base:{valType:\"any\",dflt:null,arrayOk:!0,editType:\"calc\"},offset:{valType:\"number\",dflt:null,arrayOk:!0,editType:\"calc\"},width:{valType:\"number\",dflt:null,min:0,arrayOk:!0,editType:\"calc\"},marker:p,offsetgroup:{valType:\"string\",dflt:\"\",editType:\"calc\"},alignmentgroup:{valType:\"string\",dflt:\"\",editType:\"calc\"},selected:{marker:{opacity:n.selected.marker.opacity,color:n.selected.marker.color,editType:\"style\"},textfont:n.selected.textfont,editType:\"style\"},unselected:{marker:{opacity:n.unselected.marker.opacity,color:n.unselected.marker.color,editType:\"style\"},textfont:n.unselected.textfont,editType:\"style\"},r:n.r,t:n.t,_deprecated:{bardir:{valType:\"enumerated\",editType:\"calc\",values:[\"v\",\"h\"]}}}},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plots/font_attributes\":793,\"../../plots/template_attributes\":843,\"../scatter/attributes\":1111,\"./constants\":860}],859:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),a=t(\"../../components/colorscale/helpers\").hasColorscale,i=t(\"../../components/colorscale/calc\"),o=t(\"./arrays_to_calcdata\"),s=t(\"../scatter/calc_selection\");e.exports=function(t,e){var r,l,c=n.getFromId(t,e.xaxis||\"x\"),u=n.getFromId(t,e.yaxis||\"y\");\"h\"===e.orientation?(r=c.makeCalcdata(e,\"x\"),l=u.makeCalcdata(e,\"y\")):(r=u.makeCalcdata(e,\"y\"),l=c.makeCalcdata(e,\"x\"));for(var h=Math.min(l.length,r.length),f=new Array(h),p=0;p<h;p++)f[p]={p:l[p],s:r[p]},e.ids&&(f[p].id=String(e.ids[p]));return a(e,\"marker\")&&i(t,e,{vals:e.marker.color,containerStr:\"marker\",cLetter:\"c\"}),a(e,\"marker.line\")&&i(t,e,{vals:e.marker.line.color,containerStr:\"marker.line\",cLetter:\"c\"}),o(f,e),s(f,e),f}},{\"../../components/colorscale/calc\":602,\"../../components/colorscale/helpers\":605,\"../../plots/cartesian/axes\":767,\"../scatter/calc_selection\":1113,\"./arrays_to_calcdata\":857}],860:[function(t,e,r){\"use strict\";e.exports={TEXTPAD:3,eventDataKeys:[]}},{}],861:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\").isArrayOrTypedArray,i=t(\"../../constants/numerical\").BADNUM,o=t(\"../../registry\"),s=t(\"../../plots/cartesian/axes\"),l=t(\"../../plots/cartesian/axis_ids\").getAxisGroup,c=t(\"./sieve.js\");function u(t,e,r,o,u){if(o.length){var b,_,w,k;switch(function(t,e){var r,i;for(r=0;r<e.length;r++){var o,s=e[r],l=s[0].trace,c=\"funnel\"===l.type?l._base:l.base,u=\"h\"===l.orientation?l.xcalendar:l.ycalendar,h=\"category\"===t.type||\"multicategory\"===t.type?function(){return null}:t.d2c;if(a(c)){for(i=0;i<Math.min(c.length,s.length);i++)o=h(c[i],0,u),n(o)?(s[i].b=+o,s[i].hasB=1):s[i].b=0;for(;i<s.length;i++)s[i].b=0}else{o=h(c,0,u);var f=n(o);for(o=f?o:0,i=0;i<s.length;i++)s[i].b=o,f&&(s[i].hasB=1)}}}(r,o),u.mode){case\"overlay\":h(e,r,o,u);break;case\"group\":for(b=[],_=[],w=0;w<o.length;w++)void 0===(k=o[w])[0].trace.offset?_.push(k):b.push(k);_.length&&function(t,e,r,n,a){var o=new c(n,{sepNegVal:!1,overlapNoMerge:!a.norm});(function(t,e,r,n){for(var a=t._fullLayout,i=r.positions,o=r.distinctPositions,s=r.minDiff,c=r.traces,u=c.length,h=i.length!==o.length,f=s*(1-n.gap),v=l(a,e._id)+c[0][0].trace.orientation,m=a._alignmentOpts[v]||{},y=0;y<u;y++){var x,b,_=c[y],w=_[0].trace,k=m[w.alignmentgroup]||{},T=Object.keys(k.offsetGroups||{}).length,A=(x=T?f/T:h?f/u:f)*(1-(n.groupgap||0));b=T?((2*w._offsetIndex+1-T)*x-A)/2:h?((2*y+1-u)*x-A)/2:-A/2;var M=_[0].t;M.barwidth=A,M.poffset=b,M.bargroupwidth=f,M.bardelta=s}r.binWidth=c[0][0].t.barwidth/100,p(r),d(e,r),g(e,r,h)})(t,e,o,a),function(t){for(var e=t.traces,r=0;r<e.length;r++){var n=e[r],a=n[0].trace;if(void 0===a.base)for(var o=new c([n],{sepNegVal:!0,overlapNoMerge:!0}),s=0;s<n.length;s++){var l=n[s];if(l.p!==i){var u=o.put(l.p,l.b+l.s);u&&(l.b=u)}}}}(o),a.norm?(m(o),y(r,o,a)):v(r,o)}(t,e,r,_,u),b.length&&h(e,r,b,u);break;case\"stack\":case\"relative\":for(b=[],_=[],w=0;w<o.length;w++)void 0===(k=o[w])[0].trace.base?_.push(k):b.push(k);_.length&&function(t,e,r,n,a){var o=new c(n,{sepNegVal:\"relative\"===a.mode,overlapNoMerge:!(a.norm||\"stack\"===a.mode||\"relative\"===a.mode)});f(e,o,a),function(t,e,r){var n,a,o,l,c,u,h=x(t),f=e.traces;for(l=0;l<f.length;l++)if(n=f[l],\"funnel\"===(a=n[0].trace).type)for(c=0;c<n.length;c++)(u=n[c]).s!==i&&e.put(u.p,-.5*u.s);for(l=0;l<f.length;l++){n=f[l],a=n[0].trace,o=\"funnel\"===a.type;var p=[];for(c=0;c<n.length;c++)if((u=n[c]).s!==i){var d;d=o?u.s:u.s+u.b;var g=e.put(u.p,d),v=g+d;u.b=g,u[h]=v,r.norm||(p.push(v),u.hasB&&p.push(g))}r.norm||(a._extremes[t._id]=s.findExtremes(t,p,{tozero:!0,padded:!0}))}}(r,o,a);for(var l=0;l<n.length;l++)for(var u=n[l],h=0;h<u.length;h++){var p=u[h];if(p.s!==i){var d=p.b+p.s===o.get(p.p,p.s);d&&(p._outmost=!0)}}a.norm&&y(r,o,a)}(0,e,r,_,u),b.length&&h(e,r,b,u)}!function(t,e){var r,a,i,o=x(e),s={},l=1/0,c=-1/0;for(r=0;r<t.length;r++)for(i=t[r],a=0;a<i.length;a++){var u=i[a].p;n(u)&&(l=Math.min(l,u),c=Math.max(c,u))}var h=1e4/(c-l),f=s.round=function(t){return String(Math.round(h*(t-l)))};for(r=0;r<t.length;r++){(i=t[r])[0].t.extents=s;var p=i[0].t.poffset,d=Array.isArray(p);for(a=0;a<i.length;a++){var g=i[a],v=g[o]-g.w/2;if(n(v)){var m=g[o]+g.w/2,y=f(g.p);s[y]?s[y]=[Math.min(v,s[y][0]),Math.max(m,s[y][1])]:s[y]=[v,m]}g.p0=g.p+(d?p[a]:p),g.p1=g.p0+g.w,g.s0=g.b,g.s1=g.s0+g.s}}}(o,e)}}function h(t,e,r,n){for(var a=0;a<r.length;a++){var i=r[a],o=new c([i],{sepNegVal:!1,overlapNoMerge:!n.norm});f(t,o,n),n.norm?(m(o),y(e,o,n)):v(e,o)}}function f(t,e,r){for(var n=e.minDiff,a=e.traces,i=n*(1-r.gap),o=i*(1-(r.groupgap||0)),s=-o/2,l=0;l<a.length;l++){var c=a[l][0].t;c.barwidth=o,c.poffset=s,c.bargroupwidth=i,c.bardelta=n}e.binWidth=a[0][0].t.barwidth/100,p(e),d(t,e),g(t,e)}function p(t){var e,r,i=t.traces;for(e=0;e<i.length;e++){var o,s=i[e],l=s[0],c=l.trace,u=l.t,h=c._offset||c.offset,f=u.poffset;if(a(h)){for(o=Array.prototype.slice.call(h,0,s.length),r=0;r<o.length;r++)n(o[r])||(o[r]=f);for(r=o.length;r<s.length;r++)o.push(f);u.poffset=o}else void 0!==h&&(u.poffset=h);var p=c._width||c.width,d=u.barwidth;if(a(p)){var g=Array.prototype.slice.call(p,0,s.length);for(r=0;r<g.length;r++)n(g[r])||(g[r]=d);for(r=g.length;r<s.length;r++)g.push(d);if(u.barwidth=g,void 0===h){for(o=[],r=0;r<s.length;r++)o.push(f+(d-g[r])/2);u.poffset=o}}else void 0!==p&&(u.barwidth=p,void 0===h&&(u.poffset=f+(d-p)/2))}}function d(t,e){for(var r=e.traces,n=x(t),a=0;a<r.length;a++)for(var i=r[a],o=i[0].t,s=o.poffset,l=Array.isArray(s),c=o.barwidth,u=Array.isArray(c),h=0;h<i.length;h++){var f=i[h],p=f.w=u?c[h]:c;f[n]=f.p+(l?s[h]:s)+p/2}}function g(t,e,r){var n=e.traces,a=e.minDiff/2;s.minDtick(t,e.minDiff,e.distinctPositions[0],r);for(var i=0;i<n.length;i++){var o,l,c,u,h=n[i],f=h[0],p=f.trace,d=[];for(u=0;u<h.length;u++)l=(o=h[u]).p-a,c=o.p+a,d.push(l,c);if(p.width||p.offset){var g=f.t,v=g.poffset,m=g.barwidth,y=Array.isArray(v),x=Array.isArray(m);for(u=0;u<h.length;u++){o=h[u];var b=y?v[u]:v,_=x?m[u]:m;c=(l=o.p+b)+_,d.push(l,c)}}p._extremes[t._id]=s.findExtremes(t,d,{padded:!1})}}function v(t,e){for(var r=e.traces,n=x(t),a=0;a<r.length;a++){for(var i=r[a],o=i[0].trace,l=[],c=!0,u=0;u<i.length;u++){var h=i[u],f=h.b,p=f+h.s;h[n]=p,l.push(p),h.hasB&&l.push(f),h.hasB&&h.b>0&&h.s>0||(c=!1)}o._extremes[t._id]=s.findExtremes(t,l,{tozero:!c,padded:!0})}}function m(t){for(var e=t.traces,r=0;r<e.length;r++)for(var n=e[r],a=0;a<n.length;a++){var o=n[a];o.s!==i&&t.put(o.p,o.b+o.s)}}function y(t,e,r){var a=e.traces,o=x(t),l=\"fraction\"===r.norm?1:100,c=l/1e9,u=t.l2c(t.c2l(0)),h=\"stack\"===r.mode?l:u;function f(e){return n(t.c2l(e))&&(e<u-c||e>h+c||!n(u))}for(var p=0;p<a.length;p++){for(var d=a[p],g=d[0].trace,v=[],m=!0,y=!1,b=0;b<d.length;b++){var _=d[b];if(_.s!==i){var w=Math.abs(l/e.get(_.p,_.s));_.b*=w,_.s*=w;var k=_.b,T=k+_.s;_[o]=T,v.push(T),y=y||f(T),_.hasB&&(v.push(k),y=y||f(k)),_.hasB&&_.b>0&&_.s>0||(m=!1)}}g._extremes[t._id]=s.findExtremes(t,v,{tozero:!m,padded:y})}}function x(t){return t._id.charAt(0)}e.exports={crossTraceCalc:function(t,e){for(var r=e.xaxis,n=e.yaxis,a=t._fullLayout,i=t._fullData,s=t.calcdata,l=[],c=[],h=0;h<i.length;h++){var f=i[h];!0===f.visible&&o.traceIs(f,\"bar\")&&f.xaxis===r._id&&f.yaxis===n._id&&(\"h\"===f.orientation?l.push(s[h]):c.push(s[h]))}var p={mode:a.barmode,norm:a.barnorm,gap:a.bargap,groupgap:a.bargroupgap};u(t,r,n,c,p),u(t,n,r,l,p)},setGroupPositions:u}},{\"../../constants/numerical\":695,\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../../plots/cartesian/axis_ids\":770,\"../../registry\":848,\"./sieve.js\":870,\"fast-isnumeric\":226}],862:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/color\"),i=t(\"../../registry\"),o=t(\"../scatter/xy_defaults\"),s=t(\"./style_defaults\"),l=t(\"../../plots/cartesian/axis_ids\").getAxisGroup,c=t(\"./attributes\"),u=n.coerceFont;function h(t,e,r,n){var a=e.orientation,i=e[{v:\"x\",h:\"y\"}[a]+\"axis\"],o=l(r,i)+a,s=r._alignmentOpts||{},c=n(\"alignmentgroup\"),u=s[o];u||(u=s[o]={});var h=u[c];h?h.traces.push(e):h=u[c]={traces:[e],alignmentIndex:Object.keys(u).length,offsetGroups:{}};var f=n(\"offsetgroup\"),p=h.offsetGroups,d=p[f];f&&(d||(d=p[f]={offsetIndex:Object.keys(p).length}),e._offsetIndex=d.offsetIndex)}function f(t,e,r,a,i,o){var s=!(!1===(o=o||{}).moduleHasSelected),l=!(!1===o.moduleHasUnselected),c=!(!1===o.moduleHasConstrain),h=!(!1===o.moduleHasCliponaxis),f=!(!1===o.moduleHasTextangle),p=!(!1===o.moduleHasInsideanchor),d=Array.isArray(i)||\"auto\"===i,g=d||\"inside\"===i,v=d||\"outside\"===i;if(g||v){var m=u(a,\"textfont\",r.font),y=n.extendFlat({},m);!(t.textfont&&t.textfont.color)&&delete y.color,u(a,\"insidetextfont\",y),v&&u(a,\"outsidetextfont\",m),s&&a(\"selected.textfont.color\"),l&&a(\"unselected.textfont.color\"),c&&a(\"constraintext\"),h&&a(\"cliponaxis\"),f&&a(\"textangle\"),a(\"texttemplate\")}g&&p&&a(\"insidetextanchor\")}e.exports={supplyDefaults:function(t,e,r,l){function u(r,a){return n.coerce(t,e,c,r,a)}if(o(t,e,l,u)){u(\"orientation\",e.x&&!e.y?\"h\":\"v\"),u(\"base\"),u(\"offset\"),u(\"width\"),u(\"text\"),u(\"hovertext\"),u(\"hovertemplate\");var h=u(\"textposition\");f(t,0,l,u,h,{moduleHasSelected:!0,moduleHasUnselected:!0,moduleHasConstrain:!0,moduleHasCliponaxis:!0,moduleHasTextangle:!0,moduleHasInsideanchor:!0}),s(t,e,u,r,l);var p=(e.marker.line||{}).color,d=i.getComponentMethod(\"errorbars\",\"supplyDefaults\");d(t,e,p||a.defaultLine,{axis:\"y\"}),d(t,e,p||a.defaultLine,{axis:\"x\",inherit:\"y\"}),n.coerceSelectionMarkerOpacity(e,u)}else e.visible=!1},crossTraceDefaults:function(t,e){var r;function a(t){return n.coerce(r._input,r,c,t)}if(\"group\"===e.barmode)for(var i=0;i<t.length;i++)\"bar\"===(r=t[i]).type&&(r._input,h(0,r,e,a))},handleGroupingDefaults:h,handleText:f}},{\"../../components/color\":594,\"../../lib\":719,\"../../plots/cartesian/axis_ids\":770,\"../../registry\":848,\"../scatter/xy_defaults\":1136,\"./attributes\":858,\"./style_defaults\":872}],863:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"tinycolor2\"),i=t(\"../../lib\").isArrayOrTypedArray;r.coerceString=function(t,e,r){if(\"string\"==typeof e){if(e||!t.noBlank)return e}else if((\"number\"==typeof e||!0===e)&&!t.strict)return String(e);return void 0!==r?r:t.dflt},r.coerceNumber=function(t,e,r){if(n(e)){e=+e;var a=t.min,i=t.max;if(!(void 0!==a&&e<a||void 0!==i&&e>i))return e}return void 0!==r?r:t.dflt},r.coerceColor=function(t,e,r){return a(e).isValid()?e:void 0!==r?r:t.dflt},r.coerceEnumerated=function(t,e,r){return t.coerceNumber&&(e=+e),-1!==t.values.indexOf(e)?e:void 0!==r?r:t.dflt},r.getValue=function(t,e){var r;return Array.isArray(t)?e<t.length&&(r=t[e]):r=t,r},r.getLineWidth=function(t,e){return 0<e.mlw?e.mlw:i(t.marker.line.width)?0:t.marker.line.width}},{\"../../lib\":719,\"fast-isnumeric\":226,tinycolor2:538}],864:[function(t,e,r){\"use strict\";var n=t(\"../../components/fx\"),a=t(\"../../registry\"),i=t(\"../../components/color\"),o=t(\"../../lib\").fillText,s=t(\"./helpers\").getLineWidth;function l(t,e,r,a){var i,s,l,c,u,h,f,p=t.cd,d=p[0].trace,g=p[0].t,v=\"closest\"===a,m=\"waterfall\"===d.type,y=t.maxHoverDistance,x=t.maxSpikeDistance;function b(t){return t[l]-t.w/2}function _(t){return t[l]+t.w/2}var w=v?b:function(t){return Math.min(b(t),t.p-g.bardelta/2)},k=v?_:function(t){return Math.max(_(t),t.p+g.bardelta/2)};function T(t,e){return n.inbox(t-i,e-i,y+Math.min(1,Math.abs(e-t)/f)-1)}function A(t){return T(w(t),k(t))}function M(t){var e=s,r=t.b,a=t[c];return m&&(a+=Math.abs(t.rawS||0)),n.inbox(r-e,a-e,y+(a-e)/(a-r)-1)}\"h\"===d.orientation?(i=r,s=e,l=\"y\",c=\"x\",u=M,h=A):(i=e,s=r,l=\"x\",c=\"y\",h=M,u=A);var S=t[l+\"a\"],E=t[c+\"a\"];f=Math.abs(S.r2c(S.range[1])-S.r2c(S.range[0]));var C=n.getDistanceFunction(a,u,h,function(t){return(u(t)+h(t))/2});if(n.getClosest(p,C,t),!1!==t.index){v||(w=function(t){return Math.min(b(t),t.p-g.bargroupwidth/2)},k=function(t){return Math.max(_(t),t.p+g.bargroupwidth/2)});var L=p[t.index],P=d.base?L.b+L.s:L.s;t[c+\"0\"]=t[c+\"1\"]=E.c2p(L[c],!0),t[c+\"LabelVal\"]=P;var O=g.extents[g.extents.round(L.p)];return t[l+\"0\"]=S.c2p(v?w(L):O[0],!0),t[l+\"1\"]=S.c2p(v?k(L):O[1],!0),t[l+\"LabelVal\"]=L.p,t.spikeDistance=(M(L)+function(t){return T(b(t),_(t))}(L))/2+x-y,t[l+\"Spike\"]=S.c2p(L.p,!0),o(L,d,t),t.hovertemplate=d.hovertemplate,t}}function c(t,e){var r=e.mcc||t.marker.color,n=e.mlcc||t.marker.line.color,a=s(t,e);return i.opacity(r)?r:i.opacity(n)&&a?n:void 0}e.exports={hoverPoints:function(t,e,r,n){var i=l(t,e,r,n);if(i){var o=i.cd,s=o[0].trace,u=o[i.index];return i.color=c(s,u),a.getComponentMethod(\"errorbars\",\"hoverInfo\")(u,s,i),[i]}},hoverOnBars:l,getTraceColor:c}},{\"../../components/color\":594,\"../../components/fx\":632,\"../../lib\":719,\"../../registry\":848,\"./helpers\":863}],865:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\").supplyDefaults,crossTraceDefaults:t(\"./defaults\").crossTraceDefaults,supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\"),crossTraceCalc:t(\"./cross_trace_calc\").crossTraceCalc,colorbar:t(\"../scatter/marker_colorbar\"),arraysToCalcdata:t(\"./arrays_to_calcdata\"),plot:t(\"./plot\").plot,style:t(\"./style\").style,styleOnSelect:t(\"./style\").styleOnSelect,hoverPoints:t(\"./hover\").hoverPoints,selectPoints:t(\"./select\"),moduleType:\"trace\",name:\"bar\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"bar-like\",\"cartesian\",\"svg\",\"bar\",\"oriented\",\"errorBarsOK\",\"showLegend\",\"zoomScale\"],animatable:!0,meta:{}}},{\"../../plots/cartesian\":778,\"../scatter/marker_colorbar\":1128,\"./arrays_to_calcdata\":857,\"./attributes\":858,\"./calc\":859,\"./cross_trace_calc\":861,\"./defaults\":862,\"./hover\":864,\"./layout_attributes\":866,\"./layout_defaults\":867,\"./plot\":868,\"./select\":869,\"./style\":871}],866:[function(t,e,r){\"use strict\";e.exports={barmode:{valType:\"enumerated\",values:[\"stack\",\"group\",\"overlay\",\"relative\"],dflt:\"group\",editType:\"calc\"},barnorm:{valType:\"enumerated\",values:[\"\",\"fraction\",\"percent\"],dflt:\"\",editType:\"calc\"},bargap:{valType:\"number\",min:0,max:1,editType:\"calc\"},bargroupgap:{valType:\"number\",min:0,max:1,dflt:0,editType:\"calc\"}}},{}],867:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"../../lib\"),o=t(\"./layout_attributes\");e.exports=function(t,e,r){function s(r,n){return i.coerce(t,e,o,r,n)}for(var l=!1,c=!1,u=!1,h={},f=s(\"barmode\"),p=0;p<r.length;p++){var d=r[p];if(n.traceIs(d,\"bar\")&&d.visible){if(l=!0,\"group\"===f){var g=d.xaxis+d.yaxis;h[g]&&(u=!0),h[g]=!0}if(d.visible&&\"histogram\"===d.type)\"category\"!==a.getFromId({_fullLayout:e},d[\"v\"===d.orientation?\"xaxis\":\"yaxis\"]).type&&(c=!0)}}l?(\"overlay\"!==f&&s(\"barnorm\"),s(\"bargap\",c&&!u?0:.2),s(\"bargroupgap\")):delete e.barmode}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../../registry\":848,\"./layout_attributes\":866}],868:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"fast-isnumeric\"),i=t(\"../../lib\"),o=t(\"../../lib/svg_text_utils\"),s=t(\"../../components/color\"),l=t(\"../../components/drawing\"),c=t(\"../../registry\"),u=t(\"../../plots/cartesian/axes\").tickText,h=t(\"./style\"),f=t(\"./helpers\"),p=t(\"./constants\"),d=t(\"./attributes\"),g=d.text,v=d.textposition,m=t(\"../../components/fx/helpers\").appendArrayPointValue,y=p.TEXTPAD;function x(t){return t.id}function b(t){if(t.ids)return x}function _(t,e){return t<e?1:-1}function w(t,e,r){var n;return k(e)?(r&&(n=r()),t.transition().duration(e.duration).ease(e.easing).each(\"end\",function(){n&&n()}).each(\"interrupt\",function(){n&&n()})):t}function k(t){return t&&t.duration>0}function T(t){return\"auto\"===t?0:t}function A(t,e,r,n,a,i){var o=!!i.isHorizontal,s=!!i.constrained,l=i.angle||0,c=i.anchor||0,u=a.width,h=a.height,f=Math.abs(e-t),p=Math.abs(n-r),d=f>2*y&&p>2*y?y:0;f-=2*d,p-=2*d;var g=!1;if(!(\"auto\"===l)||u<=f&&h<=p||!(u>f||h>p)||(u>p||h>f)&&u<h==f<p||(g=!0),g){var v=p;p=f,f=v}var m=T(l),x=Math.abs(Math.sin(Math.PI/180*m)),b=Math.abs(Math.cos(Math.PI/180*m)),w=Math.max(f*b,p*x),k=Math.max(f*x,p*b),A=s?Math.min(w/u,k/h):Math.max(b,x);A=Math.min(1,A);var M=(t+e)/2,S=(r+n)/2;\"middle\"!==c&&(d+=.5*(A*(o!==g?h:u)*x+A*(o!==g?u:h)*b),o?(d*=_(t,e),M=\"start\"===c?t+d:e-d):(d*=_(r,n),S=\"start\"===c?r+d:n-d));return g&&(m+=90),{textX:(a.left+a.right)/2,textY:(a.top+a.bottom)/2,targetX:M,targetY:S,scale:A,rotate:m}}function M(t,e,r,n,a,i){var o,s=!!i.isHorizontal,l=!!i.constrained,c=i.angle||0,u=a.width,h=a.height,f=Math.abs(e-t),p=Math.abs(n-r);o=s?p>2*y?y:0:f>2*y?y:0;var d=1;l&&(d=s?Math.min(1,p/h):Math.min(1,f/u));var g=T(c);o+=.5*(d*(s?h:u)*Math.abs(Math.sin(Math.PI/180*g))+d*(s?u:h)*Math.abs(Math.cos(Math.PI/180*g)));var v=(t+e)/2,m=(r+n)/2;return s?v=e-o*_(e,t):m=n+o*_(r,n),{textX:(a.left+a.right)/2,textY:(a.top+a.bottom)/2,targetX:v,targetY:m,scale:d,rotate:g}}e.exports={plot:function(t,e,r,p,d,x){var T=e.xaxis,S=e.yaxis,E=t._fullLayout;d||(d={mode:E.barmode,norm:E.barmode,gap:E.bargap,groupgap:E.bargroupgap});var C=i.makeTraceGroups(p,r,\"trace bars\").each(function(r){var c=n.select(this),p=r[0].trace,E=\"waterfall\"===p.type,C=\"funnel\"===p.type,L=\"bar\"===p.type||C,P=0;E&&p.connector.visible&&\"between\"===p.connector.mode&&(P=p.connector.line.width/2);var O=\"h\"===p.orientation,I=i.ensureSingle(c,\"g\",\"points\"),z=b(p),D=I.selectAll(\"g.point\").data(i.identity,z);D.enter().append(\"g\").classed(\"point\",!0),D.exit().remove(),D.each(function(c,b){var E,C,I=n.select(this),z=function(t,e,r,n){var a=[],i=[],o=n?e:r,s=n?r:e;return a[0]=o.c2p(t.s0,!0),i[0]=s.c2p(t.p0,!0),a[1]=o.c2p(t.s1,!0),i[1]=s.c2p(t.p1,!0),n?[a,i]:[i,a]}(c,T,S,O),D=z[0][0],R=z[0][1],F=z[1][0],B=z[1][1],N=!(D!==R&&F!==B&&a(D)&&a(R)&&a(F)&&a(B));if(N&&L&&f.getLineWidth(p,c)&&(O?R-D==0:B-F==0)&&(N=!1),c.isBlank=N,N&&O&&(R=D),N&&!O&&(B=F),P&&!N&&(O?(D-=_(D,R)*P,R+=_(D,R)*P):(F-=_(F,B)*P,B+=_(F,B)*P)),\"waterfall\"===p.type){if(!N){var j=p[c.dir].marker;E=j.line.width,C=j.color}}else E=f.getLineWidth(p,c),C=c.mc||p.marker.color;var V=n.round(E/2%1,2);function U(t){return 0===d.gap&&0===d.groupgap?n.round(Math.round(t)-V,2):t}if(!t._context.staticPlot){var q=s.opacity(C)<1||E>.01?U:function(t,e){return Math.abs(t-e)>=2?U(t):t>e?Math.ceil(t):Math.floor(t)};D=q(D,R),R=q(R,D),F=q(F,B),B=q(B,F)}var H=w(i.ensureSingle(I,\"path\"),d,x);if(H.style(\"vector-effect\",\"non-scaling-stroke\").attr(\"d\",\"M\"+D+\",\"+F+\"V\"+B+\"H\"+R+\"V\"+F+\"Z\").call(l.setClipUrl,e.layerClipId,t),k(d)){var G=l.makePointStyleFns(p);l.singlePointStyle(c,H,p,G,t)}!function(t,e,r,n,a,s,c,p,d,x,b){var _,k=e.xaxis,T=e.yaxis,S=t._fullLayout;function E(e,r,n){var a=i.ensureSingle(e,\"text\").text(r).attr({class:\"bartext bartext-\"+_,\"text-anchor\":\"middle\",\"data-notex\":1}).call(l.font,n).call(o.convertToTspans,t);return a}var C=n[0].trace,L=\"h\"===C.orientation,P=function(t,e,r,n,a){var o,s=e[0].trace;return o=s.texttemplate?function(t,e,r,n,a){var o=e[0].trace,s=i.castOption(o,r,\"texttemplate\");if(!s)return\"\";var l=\"h\"===o.orientation,c=\"waterfall\"===o.type,h=\"funnel\"===o.type;function f(t){var e=l?n:a;return u(e,+t,!0).text}var p,d=e[r],g={};g.label=d.p,g.labelLabel=(p=d.p,u(l?a:n,p,!0).text);var v=i.castOption(o,d.i,\"text\");(0===v||v)&&(g.text=v),g.value=d.s,g.valueLabel=f(d.s);var y={};m(y,o,d.i),c&&(g.delta=+d.rawS||d.s,g.deltaLabel=f(g.delta),g.final=d.v,g.finalLabel=f(g.final),g.initial=g.final-g.delta,g.initialLabel=f(g.initial)),h&&(g.value=d.s,g.valueLabel=f(g.value),g.percentInitial=d.begR,g.percentInitialLabel=i.formatPercent(d.begR),g.percentPrevious=d.difR,g.percentPreviousLabel=i.formatPercent(d.difR),g.percentTotal=d.sumR,g.percenTotalLabel=i.formatPercent(d.sumR));var x=i.castOption(o,d.i,\"customdata\");return x&&(g.customdata=x),i.texttemplateString(s,g,t._d3locale,y,g,o._meta||{})}(t,e,r,n,a):s.textinfo?function(t,e,r,n){var a=t[0].trace,o=\"h\"===a.orientation,s=\"waterfall\"===a.type,l=\"funnel\"===a.type;function c(t){var e=o?r:n;return u(e,+t,!0).text}var h,f,p=a.textinfo,d=t[e],g=p.split(\"+\"),v=[],m=function(t){return-1!==g.indexOf(t)};if(m(\"label\")&&v.push((f=t[e].p,u(o?n:r,f,!0).text)),m(\"text\")&&(0===(h=i.castOption(a,d.i,\"text\"))||h)&&v.push(h),s){var y=+d.rawS||d.s,x=d.v,b=x-y;m(\"initial\")&&v.push(c(b)),m(\"delta\")&&v.push(c(y)),m(\"final\")&&v.push(c(x))}if(l){m(\"value\")&&v.push(c(d.s));var _=0;m(\"percent initial\")&&_++,m(\"percent previous\")&&_++,m(\"percent total\")&&_++;var w=_>1;m(\"percent initial\")&&(h=i.formatPercent(d.begR),w&&(h+=\" of initial\"),v.push(h)),m(\"percent previous\")&&(h=i.formatPercent(d.difR),w&&(h+=\" of previous\"),v.push(h)),m(\"percent total\")&&(h=i.formatPercent(d.sumR),w&&(h+=\" of total\"),v.push(h))}return v.join(\"<br>\")}(e,r,n,a):f.getValue(s.text,r),f.coerceString(g,o)}(S,n,a,k,T);_=function(t,e){var r=f.getValue(t.textposition,e);return f.coerceEnumerated(v,r)}(C,a);var O=\"stack\"===x.mode||\"relative\"===x.mode,I=n[a],z=!O||I._outmost;if(P&&\"none\"!==_&&(!I.isBlank&&s!==c&&p!==d||\"auto\"!==_&&\"inside\"!==_)){var D=S.font,R=h.getBarColor(n[a],C),F=h.getInsideTextFont(C,a,D,R),B=h.getOutsideTextFont(C,a,D),N=r.datum();L?\"log\"===k.type&&N.s0<=0&&(s=k.range[0]<k.range[1]?0:k._length):\"log\"===T.type&&N.s0<=0&&(p=T.range[0]<T.range[1]?T._length:0);var j,V,U,q,H,G,Y=Math.abs(c-s)-2*y,W=Math.abs(d-p)-2*y;if(\"outside\"===_&&(z||I.hasB||(_=\"inside\")),\"auto\"===_)if(z){_=\"inside\",j=E(r,P,F),V=l.bBox(j.node()),U=V.width,q=V.height;var X=U>0&&q>0,Z=U<=Y&&q<=W,J=U<=W&&q<=Y,K=L?Y>=U*(W/q):W>=q*(Y/U);X&&(Z||J||K)?_=\"inside\":(_=\"outside\",j.remove(),j=null)}else _=\"inside\";if(!j){var Q=(j=E(r,P,\"outside\"===_?B:F)).attr(\"transform\");if(j.attr(\"transform\",\"\"),V=l.bBox(j.node()),U=V.width,q=V.height,j.attr(\"transform\",Q),U<=0||q<=0)return void j.remove()}\"outside\"===_?(G=\"both\"===C.constraintext||\"outside\"===C.constraintext,H=i.getTextTransform(M(s,c,p,d,V,{isHorizontal:L,constrained:G,angle:C.textangle}))):(G=\"both\"===C.constraintext||\"inside\"===C.constraintext,H=i.getTextTransform(A(s,c,p,d,V,{isHorizontal:L,constrained:G,angle:C.textangle,anchor:C.insidetextanchor}))),w(j,x,b).attr(\"transform\",H)}else r.select(\"text\").remove()}(t,e,I,r,b,D,R,F,B,d,x),e.layerClipId&&l.hideOutsideRangePoint(c,I.select(\"text\"),T,S,p.xcalendar,p.ycalendar)});var R=!1===p.cliponaxis;l.setClipUrl(c,R?null:e.layerClipId,t)});c.getComponentMethod(\"errorbars\",\"plot\")(t,C,e,d)},toMoveInsideBar:A,toMoveOutsideBar:M}},{\"../../components/color\":594,\"../../components/drawing\":615,\"../../components/fx/helpers\":629,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../../plots/cartesian/axes\":767,\"../../registry\":848,\"./attributes\":858,\"./constants\":860,\"./helpers\":863,\"./style\":871,d3:164,\"fast-isnumeric\":226}],869:[function(t,e,r){\"use strict\";function n(t,e,r,n,a){var i=e.c2p(n?t.s0:t.p0,!0),o=e.c2p(n?t.s1:t.p1,!0),s=r.c2p(n?t.p0:t.s0,!0),l=r.c2p(n?t.p1:t.s1,!0);return a?[(i+o)/2,(s+l)/2]:n?[o,(s+l)/2]:[(i+o)/2,l]}e.exports=function(t,e){var r,a=t.cd,i=t.xaxis,o=t.yaxis,s=a[0].trace,l=\"funnel\"===s.type,c=\"h\"===s.orientation,u=[];if(!1===e)for(r=0;r<a.length;r++)a[r].selected=0;else for(r=0;r<a.length;r++){var h=a[r],f=\"ct\"in h?h.ct:n(h,i,o,c,l);e.contains(f,!1,r,t)?(u.push({pointNumber:r,x:i.c2d(h.x),y:o.c2d(h.y)}),h.selected=1):h.selected=0}return u}},{}],870:[function(t,e,r){\"use strict\";e.exports=i;var n=t(\"../../lib\").distinctVals,a=t(\"../../constants/numerical\").BADNUM;function i(t,e){this.traces=t,this.sepNegVal=e.sepNegVal,this.overlapNoMerge=e.overlapNoMerge;for(var r=1/0,i=[],o=0;o<t.length;o++){for(var s=t[o],l=0;l<s.length;l++){var c=s[l];c.p!==a&&i.push(c.p)}s[0]&&s[0].width1&&(r=Math.min(s[0].width1,r))}this.positions=i;var u=n(i);this.distinctPositions=u.vals,1===u.vals.length&&r!==1/0?this.minDiff=r:this.minDiff=Math.min(u.minDiff,r),this.binWidth=this.minDiff,this.bins={}}i.prototype.put=function(t,e){var r=this.getLabel(t,e),n=this.bins[r]||0;return this.bins[r]=n+e,n},i.prototype.get=function(t,e){var r=this.getLabel(t,e);return this.bins[r]||0},i.prototype.getLabel=function(t,e){return(e<0&&this.sepNegVal?\"v\":\"^\")+(this.overlapNoMerge?t:Math.round(t/this.binWidth))}},{\"../../constants/numerical\":695,\"../../lib\":719}],871:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/color\"),i=t(\"../../components/drawing\"),o=t(\"../../lib\"),s=t(\"../../registry\"),l=t(\"./attributes\"),c=l.textfont,u=l.insidetextfont,h=l.outsidetextfont,f=t(\"./helpers\");function p(t,e,r){i.pointStyle(t.selectAll(\"path\"),e,r),d(t,e,r)}function d(t,e,r){t.selectAll(\"text\").each(function(t){var a=n.select(this),o=g(a,t,e,r);i.font(a,o)})}function g(t,e,r,n){var a=n._fullLayout.font,i=r.textfont;if(t.classed(\"bartext-inside\")){var o=b(e,r);i=m(r,e.i,a,o)}else t.classed(\"bartext-outside\")&&(i=y(r,e.i,a));return i}function v(t,e,r){return x(c,t.textfont,e,r)}function m(t,e,r,n){var i=v(t,e,r);return(void 0===t._input.textfont||void 0===t._input.textfont.color||Array.isArray(t.textfont.color)&&void 0===t.textfont.color[e])&&(i={color:a.contrast(n),family:i.family,size:i.size}),x(u,t.insidetextfont,e,i)}function y(t,e,r){var n=v(t,e,r);return x(h,t.outsidetextfont,e,n)}function x(t,e,r,n){e=e||{};var a=f.getValue(e.family,r),i=f.getValue(e.size,r),o=f.getValue(e.color,r);return{family:f.coerceString(t.family,a,n.family),size:f.coerceNumber(t.size,i,n.size),color:f.coerceColor(t.color,o,n.color)}}function b(t,e){return\"waterfall\"===e.type?e[t.dir].marker.color:t.mc||e.marker.color}e.exports={style:function(t){var e=n.select(t).selectAll(\"g.barlayer\").selectAll(\"g.trace\"),r=e.size(),a=t._fullLayout;e.style(\"opacity\",function(t){return t[0].trace.opacity}).each(function(t){(\"stack\"===a.barmode&&r>1||0===a.bargap&&0===a.bargroupgap&&!t[0].trace.marker.line.width)&&n.select(this).attr(\"shape-rendering\",\"crispEdges\")}),e.selectAll(\"g.points\").each(function(e){p(n.select(this),e[0].trace,t)}),s.getComponentMethod(\"errorbars\",\"style\")(e)},styleTextPoints:d,styleOnSelect:function(t,e,r){var a=e[0].trace;a.selectedpoints?function(t,e,r){i.selectedPointStyle(t.selectAll(\"path\"),e),function(t,e,r){t.each(function(t){var a,s=n.select(this);if(t.selected){a=o.extendFlat({},g(s,t,e,r));var l=e.selected.textfont&&e.selected.textfont.color;l&&(a.color=l),i.font(s,a)}else i.selectedTextStyle(s,e)})}(t.selectAll(\"text\"),e,r)}(r,a,t):(p(r,a,t),s.getComponentMethod(\"errorbars\",\"style\")(r))},getInsideTextFont:m,getOutsideTextFont:y,getBarColor:b}},{\"../../components/color\":594,\"../../components/drawing\":615,\"../../lib\":719,\"../../registry\":848,\"./attributes\":858,\"./helpers\":863,d3:164}],872:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\"),a=t(\"../../components/colorscale/helpers\").hasColorscale,i=t(\"../../components/colorscale/defaults\");e.exports=function(t,e,r,o,s){r(\"marker.color\",o),a(t,\"marker\")&&i(t,e,s,r,{prefix:\"marker.\",cLetter:\"c\"}),r(\"marker.line.color\",n.defaultLine),a(t,\"marker.line\")&&i(t,e,s,r,{prefix:\"marker.line.\",cLetter:\"c\"}),r(\"marker.line.width\"),r(\"marker.opacity\"),r(\"selected.marker.color\"),r(\"unselected.marker.color\")}},{\"../../components/color\":594,\"../../components/colorscale/defaults\":604,\"../../components/colorscale/helpers\":605}],873:[function(t,e,r){\"use strict\";var n=t(\"../../plots/template_attributes\").hovertemplateAttrs,a=t(\"../../lib/extend\").extendFlat,i=t(\"../scatterpolar/attributes\"),o=t(\"../bar/attributes\");e.exports={r:i.r,theta:i.theta,r0:i.r0,dr:i.dr,theta0:i.theta0,dtheta:i.dtheta,thetaunit:i.thetaunit,base:a({},o.base,{}),offset:a({},o.offset,{}),width:a({},o.width,{}),text:a({},o.text,{}),hovertext:a({},o.hovertext,{}),marker:o.marker,hoverinfo:i.hoverinfo,hovertemplate:n(),selected:o.selected,unselected:o.unselected}},{\"../../lib/extend\":710,\"../../plots/template_attributes\":843,\"../bar/attributes\":858,\"../scatterpolar/attributes\":1178}],874:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/helpers\").hasColorscale,a=t(\"../../components/colorscale/calc\"),i=t(\"../bar/arrays_to_calcdata\"),o=t(\"../bar/cross_trace_calc\").setGroupPositions,s=t(\"../scatter/calc_selection\"),l=t(\"../../registry\").traceIs,c=t(\"../../lib\").extendFlat;e.exports={calc:function(t,e){for(var r=t._fullLayout,o=e.subplot,l=r[o].radialaxis,c=r[o].angularaxis,u=l.makeCalcdata(e,\"r\"),h=c.makeCalcdata(e,\"theta\"),f=e._length,p=new Array(f),d=u,g=h,v=0;v<f;v++)p[v]={p:g[v],s:d[v]};function m(t){var r=e[t];void 0!==r&&(e[\"_\"+t]=Array.isArray(r)?c.makeCalcdata(e,t):c.d2c(r,e.thetaunit))}return\"linear\"===c.type&&(m(\"width\"),m(\"offset\")),n(e,\"marker\")&&a(t,e,{vals:e.marker.color,containerStr:\"marker\",cLetter:\"c\"}),n(e,\"marker.line\")&&a(t,e,{vals:e.marker.line.color,containerStr:\"marker.line\",cLetter:\"c\"}),i(p,e),s(p,e),p},crossTraceCalc:function(t,e,r){for(var n=t.calcdata,a=[],i=0;i<n.length;i++){var s=n[i],u=s[0].trace;!0===u.visible&&l(u,\"bar\")&&u.subplot===r&&a.push(s)}var h=c({},e.radialaxis,{_id:\"x\"}),f=e.angularaxis;o(t,f,h,a,{mode:e.barmode,norm:e.barnorm,gap:e.bargap,groupgap:e.bargroupgap})}}},{\"../../components/colorscale/calc\":602,\"../../components/colorscale/helpers\":605,\"../../lib\":719,\"../../registry\":848,\"../bar/arrays_to_calcdata\":857,\"../bar/cross_trace_calc\":861,\"../scatter/calc_selection\":1113}],875:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../scatterpolar/defaults\").handleRThetaDefaults,i=t(\"../bar/style_defaults\"),o=t(\"./attributes\");e.exports=function(t,e,r,s){function l(r,a){return n.coerce(t,e,o,r,a)}a(t,e,s,l)?(l(\"thetaunit\"),l(\"base\"),l(\"offset\"),l(\"width\"),l(\"text\"),l(\"hovertext\"),l(\"hovertemplate\"),i(t,e,l,r,s),n.coerceSelectionMarkerOpacity(e,l)):e.visible=!1}},{\"../../lib\":719,\"../bar/style_defaults\":872,\"../scatterpolar/defaults\":1180,\"./attributes\":873}],876:[function(t,e,r){\"use strict\";var n=t(\"../../components/fx\"),a=t(\"../../lib\"),i=t(\"../bar/hover\").getTraceColor,o=a.fillText,s=t(\"../scatterpolar/hover\").makeHoverPointText,l=t(\"../../plots/polar/helpers\").isPtInsidePolygon;e.exports=function(t,e,r){var c=t.cd,u=c[0].trace,h=t.subplot,f=h.radialAxis,p=h.angularAxis,d=h.vangles,g=d?l:a.isPtInsideSector,v=t.maxHoverDistance,m=p._period||2*Math.PI,y=Math.abs(f.g2p(Math.sqrt(e*e+r*r))),x=Math.atan2(r,e);f.range[0]>f.range[1]&&(x+=Math.PI);if(n.getClosest(c,function(t){return g(y,x,[t.rp0,t.rp1],[t.thetag0,t.thetag1],d)?v+Math.min(1,Math.abs(t.thetag1-t.thetag0)/m)-1+(t.rp1-y)/(t.rp1-t.rp0)-1:1/0},t),!1!==t.index){var b=c[t.index];t.x0=t.x1=b.ct[0],t.y0=t.y1=b.ct[1];var _=a.extendFlat({},b,{r:b.s,theta:b.p});return o(b,u,t),s(_,u,h,t),t.hovertemplate=u.hovertemplate,t.color=i(u,b),t.xLabelVal=t.yLabelVal=void 0,b.s<0&&(t.idealAlign=\"left\"),[t]}}},{\"../../components/fx\":632,\"../../lib\":719,\"../../plots/polar/helpers\":830,\"../bar/hover\":864,\"../scatterpolar/hover\":1181}],877:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"barpolar\",basePlotModule:t(\"../../plots/polar\"),categories:[\"polar\",\"bar\",\"showLegend\"],attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\"),supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\").calc,crossTraceCalc:t(\"./calc\").crossTraceCalc,plot:t(\"./plot\"),colorbar:t(\"../scatter/marker_colorbar\"),style:t(\"../bar/style\").style,styleOnSelect:t(\"../bar/style\").styleOnSelect,hoverPoints:t(\"./hover\"),selectPoints:t(\"../bar/select\"),meta:{}}},{\"../../plots/polar\":831,\"../bar/select\":869,\"../bar/style\":871,\"../scatter/marker_colorbar\":1128,\"./attributes\":873,\"./calc\":874,\"./defaults\":875,\"./hover\":876,\"./layout_attributes\":878,\"./layout_defaults\":879,\"./plot\":880}],878:[function(t,e,r){\"use strict\";e.exports={barmode:{valType:\"enumerated\",values:[\"stack\",\"overlay\"],dflt:\"stack\",editType:\"calc\"},bargap:{valType:\"number\",dflt:.1,min:0,max:1,editType:\"calc\"}}},{}],879:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./layout_attributes\");e.exports=function(t,e,r){var i,o={};function s(r,o){return n.coerce(t[i]||{},e[i],a,r,o)}for(var l=0;l<r.length;l++){var c=r[l];\"barpolar\"===c.type&&!0===c.visible&&(o[i=c.subplot]||(s(\"barmode\"),s(\"bargap\"),o[i]=1))}}},{\"../../lib\":719,\"./layout_attributes\":878}],880:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"fast-isnumeric\"),i=t(\"../../lib\"),o=t(\"../../components/drawing\"),s=t(\"../../plots/polar/helpers\");e.exports=function(t,e,r){var l=e.xaxis,c=e.yaxis,u=e.radialAxis,h=e.angularAxis,f=function(t){var e=t.cxx,r=t.cyy;if(t.vangles)return function(n,a,o,l){var c,u;i.angleDelta(o,l)>0?(c=o,u=l):(c=l,u=o);var h=s.findEnclosingVertexAngles(c,t.vangles)[0],f=s.findEnclosingVertexAngles(u,t.vangles)[1],p=[h,(c+u)/2,f];return s.pathPolygonAnnulus(n,a,c,u,p,e,r)};return function(t,n,a,o){return i.pathAnnulus(t,n,a,o,e,r)}}(e),p=e.layers.frontplot.select(\"g.barlayer\");i.makeTraceGroups(p,r,\"trace bars\").each(function(){var r=n.select(this),s=i.ensureSingle(r,\"g\",\"points\").selectAll(\"g.point\").data(i.identity);s.enter().append(\"g\").style(\"vector-effect\",\"non-scaling-stroke\").style(\"stroke-miterlimit\",2).classed(\"point\",!0),s.exit().remove(),s.each(function(t){var e,r=n.select(this),o=t.rp0=u.c2p(t.s0),s=t.rp1=u.c2p(t.s1),p=t.thetag0=h.c2g(t.p0),d=t.thetag1=h.c2g(t.p1);if(a(o)&&a(s)&&a(p)&&a(d)&&o!==s&&p!==d){var g=u.c2g(t.s1),v=(p+d)/2;t.ct=[l.c2p(g*Math.cos(v)),c.c2p(g*Math.sin(v))],e=f(o,s,p,d)}else e=\"M0,0Z\";i.ensureSingle(r,\"path\").attr(\"d\",e)}),o.setClipUrl(r,e._hasClipOnAxisFalse?e.clipIds.forTraces:null,t)})}},{\"../../components/drawing\":615,\"../../lib\":719,\"../../plots/polar/helpers\":830,d3:164,\"fast-isnumeric\":226}],881:[function(t,e,r){\"use strict\";var n=t(\"../scatter/attributes\"),a=t(\"../bar/attributes\"),i=t(\"../../components/color/attributes\"),o=t(\"../../plots/template_attributes\").hovertemplateAttrs,s=t(\"../../lib/extend\").extendFlat,l=n.marker,c=l.line;e.exports={y:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},x:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},x0:{valType:\"any\",editType:\"calc+clearAxisTypes\"},y0:{valType:\"any\",editType:\"calc+clearAxisTypes\"},name:{valType:\"string\",editType:\"calc+clearAxisTypes\"},text:s({},n.text,{}),hovertext:s({},n.hovertext,{}),hovertemplate:o({}),whiskerwidth:{valType:\"number\",min:0,max:1,dflt:.5,editType:\"calc\"},notched:{valType:\"boolean\",editType:\"calc\"},notchwidth:{valType:\"number\",min:0,max:.5,dflt:.25,editType:\"calc\"},boxpoints:{valType:\"enumerated\",values:[\"all\",\"outliers\",\"suspectedoutliers\",!1],dflt:\"outliers\",editType:\"calc\"},boxmean:{valType:\"enumerated\",values:[!0,\"sd\",!1],dflt:!1,editType:\"calc\"},jitter:{valType:\"number\",min:0,max:1,editType:\"calc\"},pointpos:{valType:\"number\",min:-2,max:2,editType:\"calc\"},orientation:{valType:\"enumerated\",values:[\"v\",\"h\"],editType:\"calc+clearAxisTypes\"},width:{valType:\"number\",min:0,dflt:0,editType:\"calc\"},marker:{outliercolor:{valType:\"color\",dflt:\"rgba(0, 0, 0, 0)\",editType:\"style\"},symbol:s({},l.symbol,{arrayOk:!1,editType:\"plot\"}),opacity:s({},l.opacity,{arrayOk:!1,dflt:1,editType:\"style\"}),size:s({},l.size,{arrayOk:!1,editType:\"calc\"}),color:s({},l.color,{arrayOk:!1,editType:\"style\"}),line:{color:s({},c.color,{arrayOk:!1,dflt:i.defaultLine,editType:\"style\"}),width:s({},c.width,{arrayOk:!1,dflt:0,editType:\"style\"}),outliercolor:{valType:\"color\",editType:\"style\"},outlierwidth:{valType:\"number\",min:0,dflt:1,editType:\"style\"},editType:\"style\"},editType:\"plot\"},line:{color:{valType:\"color\",editType:\"style\"},width:{valType:\"number\",min:0,dflt:2,editType:\"style\"},editType:\"plot\"},fillcolor:n.fillcolor,offsetgroup:a.offsetgroup,alignmentgroup:a.alignmentgroup,selected:{marker:n.selected.marker,editType:\"style\"},unselected:{marker:n.unselected.marker,editType:\"style\"},hoveron:{valType:\"flaglist\",flags:[\"boxes\",\"points\"],dflt:\"boxes+points\",editType:\"style\"}}},{\"../../components/color/attributes\":593,\"../../lib/extend\":710,\"../../plots/template_attributes\":843,\"../bar/attributes\":858,\"../scatter/attributes\":1111}],882:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\"),i=a._,o=t(\"../../plots/cartesian/axes\");function s(t,e,r){var n={text:\"tx\",hovertext:\"htx\"};for(var a in n)Array.isArray(e[a])&&(t[n[a]]=e[a][r])}function l(t,e){return t.v-e.v}function c(t){return t.v}e.exports=function(t,e){var r,u,h,f,p,d=t._fullLayout,g=o.getFromId(t,e.xaxis||\"x\"),v=o.getFromId(t,e.yaxis||\"y\"),m=[],y=\"violin\"===e.type?\"_numViolins\":\"_numBoxes\";\"h\"===e.orientation?(u=g,h=\"x\",f=v,p=\"y\"):(u=v,h=\"y\",f=g,p=\"x\");var x,b=u.makeCalcdata(e,h),_=function(t,e,r,i,o){if(e in t)return r.makeCalcdata(t,e);var s;s=e+\"0\"in t?t[e+\"0\"]:\"name\"in t&&(\"category\"===r.type||n(t.name)&&-1!==[\"linear\",\"log\"].indexOf(r.type)||a.isDateTime(t.name)&&\"date\"===r.type)?t.name:o;var l=\"multicategory\"===r.type?r.r2c_just_indices(s):r.d2c(s,0,t[e+\"calendar\"]);return i.map(function(){return l})}(e,p,f,b,d[y]),w=a.distinctVals(_),k=w.vals,T=w.minDiff/2,A=function(t,e){for(var r=t.length,n=new Array(r+1),a=0;a<r;a++)n[a]=t[a]-e;return n[r]=t[r-1]+e,n}(k,T),M=k.length,S=function(t){for(var e=new Array(t),r=0;r<t;r++)e[r]=[];return e}(M);for(r=0;r<e._length;r++){var E=b[r];if(n(E)){var C=a.findBin(_[r],A);if(C>=0&&C<M){var L={v:E,i:r};s(L,e,r),S[C].push(L)}}}var P=\"all\"===(e.boxpoints||e.points)?a.identity:function(t){return t.v<x.lf||t.v>x.uf};for(r=0;r<M;r++)if(S[r].length>0){var O=S[r].sort(l),I=O.map(c),z=I.length;(x={}).pos=k[r],x.pts=O,x[p]=x.pos,x[h]=x.pts.map(function(t){return t.v}),x.min=I[0],x.max=I[z-1],x.mean=a.mean(I,z),x.sd=a.stdev(I,z,x.mean),x.q1=a.interp(I,.25),x.med=a.interp(I,.5),x.q3=a.interp(I,.75),x.lf=Math.min(x.q1,I[Math.min(a.findBin(2.5*x.q1-1.5*x.q3,I,!0)+1,z-1)]),x.uf=Math.max(x.q3,I[Math.max(a.findBin(2.5*x.q3-1.5*x.q1,I),0)]),x.lo=4*x.q1-3*x.q3,x.uo=4*x.q3-3*x.q1;var D=1.57*(x.q3-x.q1)/Math.sqrt(z);x.ln=x.med-D,x.un=x.med+D,x.pts2=O.filter(P),m.push(x)}!function(t,e){if(a.isArrayOrTypedArray(e.selectedpoints))for(var r=0;r<t.length;r++){for(var n=t[r].pts||[],i={},o=0;o<n.length;o++)i[n[o].i]=o;a.tagSelected(n,e,i)}}(m,e);var R=o.findExtremes(u,b,{padded:!0});return e._extremes[u._id]=R,m.length>0?(m[0].t={num:d[y],dPos:T,posLetter:p,valLetter:h,labels:{med:i(t,\"median:\"),min:i(t,\"min:\"),q1:i(t,\"q1:\"),q3:i(t,\"q3:\"),max:i(t,\"max:\"),mean:\"sd\"===e.boxmean?i(t,\"mean \\xb1 \\u03c3:\"):i(t,\"mean:\"),lf:i(t,\"lower fence:\"),uf:i(t,\"upper fence:\")}},d[y]++,m):[{t:{empty:!0}}]}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"fast-isnumeric\":226}],883:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),a=t(\"../../lib\"),i=t(\"../../plots/cartesian/axis_ids\").getAxisGroup,o=[\"v\",\"h\"];function s(t,e,r,o){var s,l,c,u=e.calcdata,h=e._fullLayout,f=o._id,p=f.charAt(0),d=[],g=0;for(s=0;s<r.length;s++)for(c=u[r[s]],l=0;l<c.length;l++)d.push(c[l].pos),g+=(c[l].pts2||[]).length;if(d.length){var v=a.distinctVals(d),m=v.minDiff/2;n.minDtick(o,v.minDiff,v.vals[0],!0);var y=h[\"violin\"===t?\"_numViolins\":\"_numBoxes\"],x=\"group\"===h[t+\"mode\"]&&y>1,b=1-h[t+\"gap\"],_=1-h[t+\"groupgap\"];for(s=0;s<r.length;s++){var w,k,T,A,M,S,E=(c=u[r[s]])[0].trace,C=c[0].t,L=E.width,P=E.side;if(L)w=k=A=L/2,T=0;else if(w=m,x){var O=i(h,o._id)+E.orientation,I=(h._alignmentOpts[O]||{})[E.alignmentgroup]||{},z=Object.keys(I.offsetGroups||{}).length,D=z||y;k=w*b*_/D,T=2*w*(((z?E._offsetIndex:C.num)+.5)/D-.5)*b,A=w*b/D}else k=w*b*_,T=0,A=w;C.dPos=w,C.bPos=T,C.bdPos=k,C.wHover=A;var R,F,B,N,j,V,U=T+k,q=Boolean(L);if(\"positive\"===P?(M=w*(L?1:.5),R=U,S=R=T):\"negative\"===P?(M=R=T,S=w*(L?1:.5),F=U):(M=S=w,R=F=U),(E.boxpoints||E.points)&&g>0){var H=E.pointpos,G=E.jitter,Y=E.marker.size/2,W=0;H+G>=0&&((W=U*(H+G))>M?(q=!0,j=Y,B=W):W>R&&(j=Y,B=M)),W<=M&&(B=M);var X=0;H-G<=0&&((X=-U*(H-G))>S?(q=!0,V=Y,N=X):X>F&&(V=Y,N=S)),X<=S&&(N=S)}else B=M,N=S;var Z=new Array(c.length);for(l=0;l<c.length;l++)Z[l]=c[l].pos;E._extremes[f]=n.findExtremes(o,Z,{padded:q,vpadminus:N,vpadplus:B,ppadminus:{x:V,y:j}[p],ppadplus:{x:j,y:V}[p]})}}}e.exports={crossTraceCalc:function(t,e){for(var r=t.calcdata,n=e.xaxis,a=e.yaxis,i=0;i<o.length;i++){for(var l=o[i],c=\"h\"===l?a:n,u=[],h=0;h<r.length;h++){var f=r[h],p=f[0].t,d=f[0].trace;!0!==d.visible||\"box\"!==d.type&&\"candlestick\"!==d.type||p.empty||(d.orientation||\"v\")!==l||d.xaxis!==n._id||d.yaxis!==a._id||u.push(h)}s(\"box\",t,u,c)}},setPositionOffset:s}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../../plots/cartesian/axis_ids\":770}],884:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../registry\"),i=t(\"../../components/color\"),o=t(\"../bar/defaults\").handleGroupingDefaults,s=t(\"./attributes\");function l(t,e,r,i){var o,s,l=r(\"y\"),c=r(\"x\"),u=c&&c.length;if(l&&l.length)o=\"v\",u?s=Math.min(n.minRowLength(c),n.minRowLength(l)):(r(\"x0\"),s=n.minRowLength(l));else{if(!u)return void(e.visible=!1);o=\"h\",r(\"y0\"),s=n.minRowLength(c)}e._length=s,a.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\",\"y\"],i),r(\"orientation\",o)}function c(t,e,r,a){var i=a.prefix,o=n.coerce2(t,e,s,\"marker.outliercolor\"),l=r(\"marker.line.outliercolor\"),c=r(i+\"points\",o||l?\"suspectedoutliers\":void 0);c?(r(\"jitter\",\"all\"===c?.3:0),r(\"pointpos\",\"all\"===c?-1.5:0),r(\"marker.symbol\"),r(\"marker.opacity\"),r(\"marker.size\"),r(\"marker.color\",e.line.color),r(\"marker.line.color\"),r(\"marker.line.width\"),\"suspectedoutliers\"===c&&(r(\"marker.line.outliercolor\",e.marker.color),r(\"marker.line.outlierwidth\")),r(\"selected.marker.color\"),r(\"unselected.marker.color\"),r(\"selected.marker.size\"),r(\"unselected.marker.size\"),r(\"text\"),r(\"hovertext\")):delete e.marker;var u=r(\"hoveron\");\"all\"!==u&&-1===u.indexOf(\"points\")||r(\"hovertemplate\"),n.coerceSelectionMarkerOpacity(e,r)}e.exports={supplyDefaults:function(t,e,r,a){function o(r,a){return n.coerce(t,e,s,r,a)}l(t,e,o,a),!1!==e.visible&&(o(\"line.color\",(t.marker||{}).color||r),o(\"line.width\"),o(\"fillcolor\",i.addOpacity(e.line.color,.5)),o(\"whiskerwidth\"),o(\"boxmean\"),o(\"width\"),o(\"notched\",void 0!==t.notchwidth)&&o(\"notchwidth\"),c(t,e,o,{prefix:\"box\"}))},crossTraceDefaults:function(t,e){var r,a;function i(t){return n.coerce(a._input,a,s,t)}for(var l=0;l<t.length;l++){var c=(a=t[l]).type;\"box\"!==c&&\"violin\"!==c||(r=a._input,\"group\"===e[c+\"mode\"]&&o(r,a,e,i))}},handleSampleDefaults:l,handlePointsDefaults:c}},{\"../../components/color\":594,\"../../lib\":719,\"../../registry\":848,\"../bar/defaults\":862,\"./attributes\":881}],885:[function(t,e,r){\"use strict\";e.exports=function(t,e){return e.hoverOnBox&&(t.hoverOnBox=e.hoverOnBox),\"xVal\"in e&&(t.x=e.xVal),\"yVal\"in e&&(t.y=e.yVal),e.xa&&(t.xaxis=e.xa),e.ya&&(t.yaxis=e.ya),t}},{}],886:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),a=t(\"../../lib\"),i=t(\"../../components/fx\"),o=t(\"../../components/color\"),s=a.fillText;function l(t,e,r,s){var l,c,u,h,f,p,d,g,v,m,y,x,b,_,w=t.cd,k=t.xa,T=t.ya,A=w[0].trace,M=w[0].t,S=\"violin\"===A.type,E=[],C=M.bdPos,L=M.wHover,P=function(t){return t.pos+M.bPos-p};S&&\"both\"!==A.side?(\"positive\"===A.side&&(v=function(t){var e=P(t);return i.inbox(e,e+L,m)},x=C,b=0),\"negative\"===A.side&&(v=function(t){var e=P(t);return i.inbox(e-L,e,m)},x=0,b=C)):(v=function(t){var e=P(t);return i.inbox(e-L,e+L,m)},x=b=C),_=S?function(t){return i.inbox(t.span[0]-f,t.span[1]-f,m)}:function(t){return i.inbox(t.min-f,t.max-f,m)},\"h\"===A.orientation?(f=e,p=r,d=_,g=v,l=\"y\",u=T,c=\"x\",h=k):(f=r,p=e,d=v,g=_,l=\"x\",u=k,c=\"y\",h=T);var O=Math.min(1,C/Math.abs(u.r2c(u.range[1])-u.r2c(u.range[0])));function I(t){return(d(t)+g(t))/2}m=t.maxHoverDistance-O,y=t.maxSpikeDistance-O;var z=i.getDistanceFunction(s,d,g,I);if(i.getClosest(w,z,t),!1===t.index)return[];var D=w[t.index],R=A.line.color,F=(A.marker||{}).color;o.opacity(R)&&A.line.width?t.color=R:o.opacity(F)&&A.boxpoints?t.color=F:t.color=A.fillcolor,t[l+\"0\"]=u.c2p(D.pos+M.bPos-b,!0),t[l+\"1\"]=u.c2p(D.pos+M.bPos+x,!0),t[l+\"LabelVal\"]=D.pos;var B=l+\"Spike\";t.spikeDistance=I(D)*y/m,t[B]=u.c2p(D.pos,!0);var N={},j=[\"med\",\"q1\",\"q3\",\"min\",\"max\"];(A.boxmean||(A.meanline||{}).visible)&&j.push(\"mean\"),(A.boxpoints||A.points)&&j.push(\"lf\",\"uf\");for(var V=0;V<j.length;V++){var U=j[V];if(U in D&&!(D[U]in N)){N[D[U]]=!0;var q=D[U],H=h.c2p(q,!0),G=a.extendFlat({},t);G.attr=U,G[c+\"0\"]=G[c+\"1\"]=H,G[c+\"LabelVal\"]=q,G[c+\"Label\"]=(M.labels?M.labels[U]+\" \":\"\")+n.hoverLabelText(h,q),G.hoverOnBox=!0,\"mean\"===U&&\"sd\"in D&&\"sd\"===A.boxmean&&(G[c+\"err\"]=D.sd),t.name=\"\",t.spikeDistance=void 0,t[B]=void 0,G.hovertemplate=!1,E.push(G)}}return E}function c(t,e,r){for(var n,o,l,c=t.cd,u=t.xa,h=t.ya,f=c[0].trace,p=u.c2p(e),d=h.c2p(r),g=i.quadrature(function(t){var e=Math.max(3,t.mrc||0);return Math.max(Math.abs(u.c2p(t.x)-p)-e,1-3/e)},function(t){var e=Math.max(3,t.mrc||0);return Math.max(Math.abs(h.c2p(t.y)-d)-e,1-3/e)}),v=!1,m=0;m<c.length;m++){o=c[m];for(var y=0;y<(o.pts||[]).length;y++){var x=g(l=o.pts[y]);x<=t.distance&&(t.distance=x,v=[m,y])}}if(!v)return!1;l=(o=c[v[0]]).pts[v[1]];var b,_=u.c2p(l.x,!0),w=h.c2p(l.y,!0),k=l.mrc||1;return n=a.extendFlat({},t,{index:l.i,color:(f.marker||{}).color,name:f.name,x0:_-k,x1:_+k,y0:w-k,y1:w+k,spikeDistance:t.distance,hovertemplate:f.hovertemplate}),\"h\"===f.orientation?(b=h,n.xLabelVal=l.x,n.yLabelVal=o.pos):(b=u,n.xLabelVal=o.pos,n.yLabelVal=l.y),n[b._id.charAt(0)+\"Spike\"]=b.c2p(o.pos,!0),s(l,f,n),n}e.exports={hoverPoints:function(t,e,r,n){var a,i=t.cd[0].trace.hoveron,o=[];return-1!==i.indexOf(\"boxes\")&&(o=o.concat(l(t,e,r,n))),-1!==i.indexOf(\"points\")&&(a=c(t,e,r)),\"closest\"===n?a?[a]:o:a?(o.push(a),o):o},hoverOnBoxes:l,hoverOnPoints:c}},{\"../../components/color\":594,\"../../components/fx\":632,\"../../lib\":719,\"../../plots/cartesian/axes\":767}],887:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\").supplyDefaults,crossTraceDefaults:t(\"./defaults\").crossTraceDefaults,supplyLayoutDefaults:t(\"./layout_defaults\").supplyLayoutDefaults,calc:t(\"./calc\"),crossTraceCalc:t(\"./cross_trace_calc\").crossTraceCalc,plot:t(\"./plot\").plot,style:t(\"./style\").style,styleOnSelect:t(\"./style\").styleOnSelect,hoverPoints:t(\"./hover\").hoverPoints,eventData:t(\"./event_data\"),selectPoints:t(\"./select\"),moduleType:\"trace\",name:\"box\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"symbols\",\"oriented\",\"box-violin\",\"showLegend\",\"boxLayout\",\"zoomScale\"],meta:{}}},{\"../../plots/cartesian\":778,\"./attributes\":881,\"./calc\":882,\"./cross_trace_calc\":883,\"./defaults\":884,\"./event_data\":885,\"./hover\":886,\"./layout_attributes\":888,\"./layout_defaults\":889,\"./plot\":890,\"./select\":891,\"./style\":892}],888:[function(t,e,r){\"use strict\";e.exports={boxmode:{valType:\"enumerated\",values:[\"group\",\"overlay\"],dflt:\"overlay\",editType:\"calc\"},boxgap:{valType:\"number\",min:0,max:1,dflt:.3,editType:\"calc\"},boxgroupgap:{valType:\"number\",min:0,max:1,dflt:.3,editType:\"calc\"}}},{}],889:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\"),i=t(\"./layout_attributes\");function o(t,e,r,a,i){for(var o=i+\"Layout\",s=!1,l=0;l<r.length;l++){var c=r[l];if(n.traceIs(c,o)){s=!0;break}}s&&(a(i+\"mode\"),a(i+\"gap\"),a(i+\"groupgap\"))}e.exports={supplyLayoutDefaults:function(t,e,r){o(0,0,r,function(r,n){return a.coerce(t,e,i,r,n)},\"box\")},_supply:o}},{\"../../lib\":719,\"../../registry\":848,\"./layout_attributes\":888}],890:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../lib\"),i=t(\"../../components/drawing\"),o=5,s=.01;function l(t,e,r,i){var o,s,l=e.pos,c=e.val,u=i.bPos,h=i.wdPos||0,f=i.bPosPxOffset||0,p=r.whiskerwidth||0,d=r.notched||!1,g=d?1-2*r.notchwidth:1;Array.isArray(i.bdPos)?(o=i.bdPos[0],s=i.bdPos[1]):(o=i.bdPos,s=i.bdPos);var v=t.selectAll(\"path.box\").data(\"violin\"!==r.type||r.box.visible?a.identity:[]);v.enter().append(\"path\").style(\"vector-effect\",\"non-scaling-stroke\").attr(\"class\",\"box\"),v.exit().remove(),v.each(function(t){if(t.empty)return\"M0,0Z\";var e=t.pos,i=l.c2p(e+u,!0)+f,v=l.c2p(e+u-o,!0)+f,m=l.c2p(e+u+s,!0)+f,y=l.c2p(e+u-h,!0)+f,x=l.c2p(e+u+h,!0)+f,b=l.c2p(e+u-o*g,!0)+f,_=l.c2p(e+u+s*g,!0)+f,w=c.c2p(t.q1,!0),k=c.c2p(t.q3,!0),T=a.constrain(c.c2p(t.med,!0),Math.min(w,k)+1,Math.max(w,k)-1),A=void 0===t.lf||!1===r.boxpoints,M=c.c2p(A?t.min:t.lf,!0),S=c.c2p(A?t.max:t.uf,!0),E=c.c2p(t.ln,!0),C=c.c2p(t.un,!0);\"h\"===r.orientation?n.select(this).attr(\"d\",\"M\"+T+\",\"+b+\"V\"+_+\"M\"+w+\",\"+v+\"V\"+m+(d?\"H\"+E+\"L\"+T+\",\"+_+\"L\"+C+\",\"+m:\"\")+\"H\"+k+\"V\"+v+(d?\"H\"+C+\"L\"+T+\",\"+b+\"L\"+E+\",\"+v:\"\")+\"ZM\"+w+\",\"+i+\"H\"+M+\"M\"+k+\",\"+i+\"H\"+S+(0===p?\"\":\"M\"+M+\",\"+y+\"V\"+x+\"M\"+S+\",\"+y+\"V\"+x)):n.select(this).attr(\"d\",\"M\"+b+\",\"+T+\"H\"+_+\"M\"+v+\",\"+w+\"H\"+m+(d?\"V\"+E+\"L\"+_+\",\"+T+\"L\"+m+\",\"+C:\"\")+\"V\"+k+\"H\"+v+(d?\"V\"+C+\"L\"+b+\",\"+T+\"L\"+v+\",\"+E:\"\")+\"ZM\"+i+\",\"+w+\"V\"+M+\"M\"+i+\",\"+k+\"V\"+S+(0===p?\"\":\"M\"+y+\",\"+M+\"H\"+x+\"M\"+y+\",\"+S+\"H\"+x))})}function c(t,e,r,n){var l=e.x,c=e.y,u=n.bdPos,h=n.bPos,f=r.boxpoints||r.points;a.seedPseudoRandom();var p=t.selectAll(\"g.points\").data(f?function(t){return t.forEach(function(t){t.t=n,t.trace=r}),t}:[]);p.enter().append(\"g\").attr(\"class\",\"points\"),p.exit().remove();var d=p.selectAll(\"path\").data(function(t){var e,n,i=t.pts2,l=Math.max((t.max-t.min)/10,t.q3-t.q1),c=1e-9*l,p=l*s,d=[],g=0;if(r.jitter){if(0===l)for(g=1,d=new Array(i.length),e=0;e<i.length;e++)d[e]=1;else for(e=0;e<i.length;e++){var v=Math.max(0,e-o),m=i[v].v,y=Math.min(i.length-1,e+o),x=i[y].v;\"all\"!==f&&(i[e].v<t.lf?x=Math.min(x,t.lf):m=Math.max(m,t.uf));var b=Math.sqrt(p*(y-v)/(x-m+c))||0;b=a.constrain(Math.abs(b),0,1),d.push(b),g=Math.max(b,g)}n=2*r.jitter/(g||1)}for(e=0;e<i.length;e++){var _=i[e],w=_.v,k=r.jitter?n*d[e]*(a.pseudoRandom()-.5):0,T=t.pos+h+u*(r.pointpos+k);\"h\"===r.orientation?(_.y=T,_.x=w):(_.x=T,_.y=w),\"suspectedoutliers\"===f&&w<t.uo&&w>t.lo&&(_.so=!0)}return i});d.enter().append(\"path\").classed(\"point\",!0),d.exit().remove(),d.call(i.translatePoints,l,c)}function u(t,e,r,i){var o,s,l=e.pos,c=e.val,u=i.bPos,h=i.bPosPxOffset||0,f=r.boxmean||(r.meanline||{}).visible;Array.isArray(i.bdPos)?(o=i.bdPos[0],s=i.bdPos[1]):(o=i.bdPos,s=i.bdPos);var p=t.selectAll(\"path.mean\").data(\"box\"===r.type&&r.boxmean||\"violin\"===r.type&&r.box.visible&&r.meanline.visible?a.identity:[]);p.enter().append(\"path\").attr(\"class\",\"mean\").style({fill:\"none\",\"vector-effect\":\"non-scaling-stroke\"}),p.exit().remove(),p.each(function(t){var e=l.c2p(t.pos+u,!0)+h,a=l.c2p(t.pos+u-o,!0)+h,i=l.c2p(t.pos+u+s,!0)+h,p=c.c2p(t.mean,!0),d=c.c2p(t.mean-t.sd,!0),g=c.c2p(t.mean+t.sd,!0);\"h\"===r.orientation?n.select(this).attr(\"d\",\"M\"+p+\",\"+a+\"V\"+i+(\"sd\"===f?\"m0,0L\"+d+\",\"+e+\"L\"+p+\",\"+a+\"L\"+g+\",\"+e+\"Z\":\"\")):n.select(this).attr(\"d\",\"M\"+a+\",\"+p+\"H\"+i+(\"sd\"===f?\"m0,0L\"+e+\",\"+d+\"L\"+a+\",\"+p+\"L\"+e+\",\"+g+\"Z\":\"\"))})}e.exports={plot:function(t,e,r,i){var o=e.xaxis,s=e.yaxis;a.makeTraceGroups(i,r,\"trace boxes\").each(function(t){var e,r,a=n.select(this),i=t[0],h=i.t,f=i.trace;h.wdPos=h.bdPos*f.whiskerwidth,!0!==f.visible||h.empty?a.remove():(\"h\"===f.orientation?(e=s,r=o):(e=o,r=s),l(a,{pos:e,val:r},f,h),c(a,{x:o,y:s},f,h),u(a,{pos:e,val:r},f,h))})},plotBoxAndWhiskers:l,plotPoints:c,plotBoxMean:u}},{\"../../components/drawing\":615,\"../../lib\":719,d3:164}],891:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r,n,a=t.cd,i=t.xaxis,o=t.yaxis,s=[];if(!1===e)for(r=0;r<a.length;r++)for(n=0;n<(a[r].pts||[]).length;n++)a[r].pts[n].selected=0;else for(r=0;r<a.length;r++)for(n=0;n<(a[r].pts||[]).length;n++){var l=a[r].pts[n],c=i.c2p(l.x),u=o.c2p(l.y);e.contains([c,u],null,l.i,t)?(s.push({pointNumber:l.i,x:i.c2d(l.x),y:o.c2d(l.y)}),l.selected=1):l.selected=0}return s}},{}],892:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/color\"),i=t(\"../../components/drawing\");e.exports={style:function(t,e,r){var o=r||n.select(t).selectAll(\"g.trace.boxes\");o.style(\"opacity\",function(t){return t[0].trace.opacity}),o.each(function(e){var r=n.select(this),o=e[0].trace,s=o.line.width;function l(t,e,r,n){t.style(\"stroke-width\",e+\"px\").call(a.stroke,r).call(a.fill,n)}var c=r.selectAll(\"path.box\");if(\"candlestick\"===o.type)c.each(function(t){if(!t.empty){var e=n.select(this),r=o[t.dir];l(e,r.line.width,r.line.color,r.fillcolor),e.style(\"opacity\",o.selectedpoints&&!t.selected?.3:1)}});else{l(c,s,o.line.color,o.fillcolor),r.selectAll(\"path.mean\").style({\"stroke-width\":s,\"stroke-dasharray\":2*s+\"px,\"+s+\"px\"}).call(a.stroke,o.line.color);var u=r.selectAll(\"path.point\");i.pointStyle(u,o,t)}})},styleOnSelect:function(t,e,r){var n=e[0].trace,a=r.selectAll(\"path.point\");n.selectedpoints?i.selectedPointStyle(a,n):i.pointStyle(a,n,t)}}},{\"../../components/color\":594,\"../../components/drawing\":615,d3:164}],893:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").extendFlat,a=t(\"../ohlc/attributes\"),i=t(\"../box/attributes\");function o(t){return{line:{color:n({},i.line.color,{dflt:t}),width:i.line.width,editType:\"style\"},fillcolor:i.fillcolor,editType:\"style\"}}e.exports={x:a.x,open:a.open,high:a.high,low:a.low,close:a.close,line:{width:n({},i.line.width,{}),editType:\"style\"},increasing:o(a.increasing.line.color.dflt),decreasing:o(a.decreasing.line.color.dflt),text:a.text,hovertext:a.hovertext,whiskerwidth:n({},i.whiskerwidth,{dflt:0}),hoverlabel:a.hoverlabel}},{\"../../lib\":719,\"../box/attributes\":881,\"../ohlc/attributes\":1057}],894:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"../ohlc/calc\").calcCommon;function o(t,e,r,n){return{min:r,q1:Math.min(t,n),med:n,q3:Math.max(t,n),max:e}}e.exports=function(t,e){var r=t._fullLayout,s=a.getFromId(t,e.xaxis),l=a.getFromId(t,e.yaxis),c=s.makeCalcdata(e,\"x\"),u=i(t,e,c,l,o);return u.length?(n.extendFlat(u[0].t,{num:r._numBoxes,dPos:n.distinctVals(c).minDiff/2,posLetter:\"x\",valLetter:\"y\"}),r._numBoxes++,u):[{t:{empty:!0}}]}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../ohlc/calc\":1058}],895:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/color\"),i=t(\"../ohlc/ohlc_defaults\"),o=t(\"./attributes\");function s(t,e,r,n){var i=r(n+\".line.color\");r(n+\".line.width\",e.line.width),r(n+\".fillcolor\",a.addOpacity(i,.5))}e.exports=function(t,e,r,a){function l(r,a){return n.coerce(t,e,o,r,a)}i(t,e,l,a)?(l(\"line.width\"),s(t,e,l,\"increasing\"),s(t,e,l,\"decreasing\"),l(\"text\"),l(\"hovertext\"),l(\"whiskerwidth\"),a._requestRangeslider[e.xaxis]=!0):e.visible=!1}},{\"../../components/color\":594,\"../../lib\":719,\"../ohlc/ohlc_defaults\":1062,\"./attributes\":893}],896:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"candlestick\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"showLegend\",\"candlestick\",\"boxLayout\"],meta:{},attributes:t(\"./attributes\"),layoutAttributes:t(\"../box/layout_attributes\"),supplyLayoutDefaults:t(\"../box/layout_defaults\").supplyLayoutDefaults,crossTraceCalc:t(\"../box/cross_trace_calc\").crossTraceCalc,supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),plot:t(\"../box/plot\").plot,layerName:\"boxlayer\",style:t(\"../box/style\").style,hoverPoints:t(\"../ohlc/hover\").hoverPoints,selectPoints:t(\"../ohlc/select\")}},{\"../../plots/cartesian\":778,\"../box/cross_trace_calc\":883,\"../box/layout_attributes\":888,\"../box/layout_defaults\":889,\"../box/plot\":890,\"../box/style\":892,\"../ohlc/hover\":1060,\"../ohlc/select\":1064,\"./attributes\":893,\"./calc\":894,\"./defaults\":895}],897:[function(t,e,r){\"use strict\";var n=t(\"./axis_defaults\"),a=t(\"../../plot_api/plot_template\");e.exports=function(t,e,r,i,o){i(\"a\")||(i(\"da\"),i(\"a0\")),i(\"b\")||(i(\"db\"),i(\"b0\")),function(t,e,r,i){[\"aaxis\",\"baxis\"].forEach(function(o){var s=o.charAt(0),l=t[o]||{},c=a.newContainer(e,o),u={tickfont:\"x\",id:s+\"axis\",letter:s,font:e.font,name:o,data:t[s],calendar:e.calendar,dfltColor:i,bgColor:r.paper_bgcolor,fullLayout:r};n(l,c,u),c._categories=c._categories||[],t[o]||\"-\"===l.type||(t[o]={type:l.type})})}(t,e,r,o)}},{\"../../plot_api/plot_template\":757,\"./axis_defaults\":902}],898:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").isArrayOrTypedArray;e.exports=function(t){return function t(e,r){if(!n(e)||r>=10)return null;var a=1/0;var i=-1/0;var o=e.length;for(var s=0;s<o;s++){var l=e[s];if(n(l)){var c=t(l,r+1);c&&(a=Math.min(c[0],a),i=Math.max(c[1],i))}else a=Math.min(l,a),i=Math.max(l,i)}return[a,i]}(t,0)}},{\"../../lib\":719}],899:[function(t,e,r){\"use strict\";var n=t(\"../../plots/font_attributes\"),a=t(\"./axis_attributes\"),i=t(\"../../components/color/attributes\"),o=n({editType:\"calc\"});o.family.dflt='\"Open Sans\", verdana, arial, sans-serif',o.size.dflt=12,o.color.dflt=i.defaultLine,e.exports={carpet:{valType:\"string\",editType:\"calc\"},x:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},y:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},a:{valType:\"data_array\",editType:\"calc\"},a0:{valType:\"number\",dflt:0,editType:\"calc\"},da:{valType:\"number\",dflt:1,editType:\"calc\"},b:{valType:\"data_array\",editType:\"calc\"},b0:{valType:\"number\",dflt:0,editType:\"calc\"},db:{valType:\"number\",dflt:1,editType:\"calc\"},cheaterslope:{valType:\"number\",dflt:1,editType:\"calc\"},aaxis:a,baxis:a,font:o,color:{valType:\"color\",dflt:i.defaultLine,editType:\"plot\"},transforms:void 0}},{\"../../components/color/attributes\":593,\"../../plots/font_attributes\":793,\"./axis_attributes\":901}],900:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").isArrayOrTypedArray;e.exports=function(t,e,r,a){var i,o,s,l,c,u,h,f,p,d,g,v,m,y=n(r)?\"a\":\"b\",x=(\"a\"===y?t.aaxis:t.baxis).smoothing,b=\"a\"===y?t.a2i:t.b2j,_=\"a\"===y?r:a,w=\"a\"===y?a:r,k=\"a\"===y?e.a.length:e.b.length,T=\"a\"===y?e.b.length:e.a.length,A=Math.floor(\"a\"===y?t.b2j(w):t.a2i(w)),M=\"a\"===y?function(e){return t.evalxy([],e,A)}:function(e){return t.evalxy([],A,e)};x&&(s=Math.max(0,Math.min(T-2,A)),l=A-s,o=\"a\"===y?function(e,r){return t.dxydi([],e,s,r,l)}:function(e,r){return t.dxydj([],s,e,l,r)});var S=b(_[0]),E=b(_[1]),C=S<E?1:-1,L=1e-8*(E-S),P=C>0?Math.floor:Math.ceil,O=C>0?Math.ceil:Math.floor,I=C>0?Math.min:Math.max,z=C>0?Math.max:Math.min,D=P(S+L),R=O(E-L),F=[[h=M(S)]];for(i=D;i*C<R*C;i+=C)c=[],g=z(S,i),m=(v=I(E,i+C))-g,u=Math.max(0,Math.min(k-2,Math.floor(.5*(g+v)))),f=M(v),x&&(p=o(u,g-u),d=o(u,v-u),c.push([h[0]+p[0]/3*m,h[1]+p[1]/3*m]),c.push([f[0]-d[0]/3*m,f[1]-d[1]/3*m])),c.push(f),F.push(c),h=f;return F}},{\"../../lib\":719}],901:[function(t,e,r){\"use strict\";var n=t(\"../../plots/font_attributes\"),a=t(\"../../components/color/attributes\"),i=t(\"../../plots/cartesian/layout_attributes\"),o=t(\"../../plot_api/edit_types\").overrideAll;t(\"../../constants/docs\").FORMAT_LINK,t(\"../../constants/docs\").TIME_FORMAT_LINK;e.exports={color:{valType:\"color\",editType:\"calc\"},smoothing:{valType:\"number\",dflt:1,min:0,max:1.3,editType:\"calc\"},title:{text:{valType:\"string\",dflt:\"\",editType:\"calc\"},font:n({editType:\"calc\"}),offset:{valType:\"number\",dflt:10,editType:\"calc\"},editType:\"calc\"},type:{valType:\"enumerated\",values:[\"-\",\"linear\",\"date\",\"category\"],dflt:\"-\",editType:\"calc\"},autorange:{valType:\"enumerated\",values:[!0,!1,\"reversed\"],dflt:!0,editType:\"calc\"},rangemode:{valType:\"enumerated\",values:[\"normal\",\"tozero\",\"nonnegative\"],dflt:\"normal\",editType:\"calc\"},range:{valType:\"info_array\",editType:\"calc\",items:[{valType:\"any\",editType:\"calc\"},{valType:\"any\",editType:\"calc\"}]},fixedrange:{valType:\"boolean\",dflt:!1,editType:\"calc\"},cheatertype:{valType:\"enumerated\",values:[\"index\",\"value\"],dflt:\"value\",editType:\"calc\"},tickmode:{valType:\"enumerated\",values:[\"linear\",\"array\"],dflt:\"array\",editType:\"calc\"},nticks:{valType:\"integer\",min:0,dflt:0,editType:\"calc\"},tickvals:{valType:\"data_array\",editType:\"calc\"},ticktext:{valType:\"data_array\",editType:\"calc\"},showticklabels:{valType:\"enumerated\",values:[\"start\",\"end\",\"both\",\"none\"],dflt:\"start\",editType:\"calc\"},tickfont:n({editType:\"calc\"}),tickangle:{valType:\"angle\",dflt:\"auto\",editType:\"calc\"},tickprefix:{valType:\"string\",dflt:\"\",editType:\"calc\"},showtickprefix:{valType:\"enumerated\",values:[\"all\",\"first\",\"last\",\"none\"],dflt:\"all\",editType:\"calc\"},ticksuffix:{valType:\"string\",dflt:\"\",editType:\"calc\"},showticksuffix:{valType:\"enumerated\",values:[\"all\",\"first\",\"last\",\"none\"],dflt:\"all\",editType:\"calc\"},showexponent:{valType:\"enumerated\",values:[\"all\",\"first\",\"last\",\"none\"],dflt:\"all\",editType:\"calc\"},exponentformat:{valType:\"enumerated\",values:[\"none\",\"e\",\"E\",\"power\",\"SI\",\"B\"],dflt:\"B\",editType:\"calc\"},separatethousands:{valType:\"boolean\",dflt:!1,editType:\"calc\"},tickformat:{valType:\"string\",dflt:\"\",editType:\"calc\"},tickformatstops:o(i.tickformatstops,\"calc\",\"from-root\"),categoryorder:{valType:\"enumerated\",values:[\"trace\",\"category ascending\",\"category descending\",\"array\"],dflt:\"trace\",editType:\"calc\"},categoryarray:{valType:\"data_array\",editType:\"calc\"},labelpadding:{valType:\"integer\",dflt:10,editType:\"calc\"},labelprefix:{valType:\"string\",editType:\"calc\"},labelsuffix:{valType:\"string\",dflt:\"\",editType:\"calc\"},showline:{valType:\"boolean\",dflt:!1,editType:\"calc\"},linecolor:{valType:\"color\",dflt:a.defaultLine,editType:\"calc\"},linewidth:{valType:\"number\",min:0,dflt:1,editType:\"calc\"},gridcolor:{valType:\"color\",editType:\"calc\"},gridwidth:{valType:\"number\",min:0,dflt:1,editType:\"calc\"},showgrid:{valType:\"boolean\",dflt:!0,editType:\"calc\"},minorgridcount:{valType:\"integer\",min:0,dflt:0,editType:\"calc\"},minorgridwidth:{valType:\"number\",min:0,dflt:1,editType:\"calc\"},minorgridcolor:{valType:\"color\",dflt:a.lightLine,editType:\"calc\"},startline:{valType:\"boolean\",editType:\"calc\"},startlinecolor:{valType:\"color\",editType:\"calc\"},startlinewidth:{valType:\"number\",dflt:1,editType:\"calc\"},endline:{valType:\"boolean\",editType:\"calc\"},endlinewidth:{valType:\"number\",dflt:1,editType:\"calc\"},endlinecolor:{valType:\"color\",editType:\"calc\"},tick0:{valType:\"number\",min:0,dflt:0,editType:\"calc\"},dtick:{valType:\"number\",min:0,dflt:1,editType:\"calc\"},arraytick0:{valType:\"integer\",min:0,dflt:0,editType:\"calc\"},arraydtick:{valType:\"integer\",min:1,dflt:1,editType:\"calc\"},_deprecated:{title:{valType:\"string\",editType:\"calc\"},titlefont:n({editType:\"calc\"}),titleoffset:{valType:\"number\",dflt:10,editType:\"calc\"}},editType:\"calc\"}},{\"../../components/color/attributes\":593,\"../../constants/docs\":690,\"../../plot_api/edit_types\":750,\"../../plots/cartesian/layout_attributes\":779,\"../../plots/font_attributes\":793}],902:[function(t,e,r){\"use strict\";var n=t(\"./attributes\"),a=t(\"../../components/color\").addOpacity,i=t(\"../../registry\"),o=t(\"../../lib\"),s=t(\"../../plots/cartesian/tick_value_defaults\"),l=t(\"../../plots/cartesian/tick_label_defaults\"),c=t(\"../../plots/cartesian/category_order_defaults\"),u=t(\"../../plots/cartesian/set_convert\"),h=t(\"../../plots/cartesian/axis_autotype\");e.exports=function(t,e,r){var f=r.letter,p=r.font||{},d=n[f+\"axis\"];function g(r,n){return o.coerce(t,e,d,r,n)}function v(r,n){return o.coerce2(t,e,d,r,n)}r.name&&(e._name=r.name,e._id=r.name);var m=g(\"type\");(\"-\"===m&&(r.data&&function(t,e){if(\"-\"!==t.type)return;var r=t._id.charAt(0),n=t[r+\"calendar\"];t.type=h(e,n)}(e,r.data),\"-\"===e.type?e.type=\"linear\":m=t.type=e.type),g(\"smoothing\"),g(\"cheatertype\"),g(\"showticklabels\"),g(\"labelprefix\",f+\" = \"),g(\"labelsuffix\"),g(\"showtickprefix\"),g(\"showticksuffix\"),g(\"separatethousands\"),g(\"tickformat\"),g(\"exponentformat\"),g(\"showexponent\"),g(\"categoryorder\"),g(\"tickmode\"),g(\"tickvals\"),g(\"ticktext\"),g(\"tick0\"),g(\"dtick\"),\"array\"===e.tickmode&&(g(\"arraytick0\"),g(\"arraydtick\")),g(\"labelpadding\"),e._hovertitle=f,\"date\"===m)&&i.getComponentMethod(\"calendars\",\"handleDefaults\")(t,e,\"calendar\",r.calendar);u(e,r.fullLayout),e.c2p=o.identity;var y=g(\"color\",r.dfltColor),x=y===t.color?y:p.color;g(\"title.text\")&&(o.coerceFont(g,\"title.font\",{family:p.family,size:Math.round(1.2*p.size),color:x}),g(\"title.offset\")),g(\"tickangle\"),g(\"autorange\",!e.isValidRange(t.range))&&g(\"rangemode\"),g(\"range\"),e.cleanRange(),g(\"fixedrange\"),s(t,e,g,m),l(t,e,g,m,r),c(t,e,g,{data:r.data,dataAttr:f});var b=v(\"gridcolor\",a(y,.3)),_=v(\"gridwidth\"),w=g(\"showgrid\");w||(delete e.gridcolor,delete e.gridwidth);var k=v(\"startlinecolor\",y),T=v(\"startlinewidth\",_);g(\"startline\",e.showgrid||!!k||!!T)||(delete e.startlinecolor,delete e.startlinewidth);var A=v(\"endlinecolor\",y),M=v(\"endlinewidth\",_);return g(\"endline\",e.showgrid||!!A||!!M)||(delete e.endlinecolor,delete e.endlinewidth),w?(g(\"minorgridcount\"),g(\"minorgridwidth\",_),g(\"minorgridcolor\",a(b,.06)),e.minorgridcount||(delete e.minorgridwidth,delete e.minorgridcolor)):(delete e.gridcolor,delete e.gridWidth),\"none\"===e.showticklabels&&(delete e.tickfont,delete e.tickangle,delete e.showexponent,delete e.exponentformat,delete e.tickformat,delete e.showticksuffix,delete e.showtickprefix),e.showticksuffix||delete e.ticksuffix,e.showtickprefix||delete e.tickprefix,g(\"tickmode\"),e}},{\"../../components/color\":594,\"../../lib\":719,\"../../plots/cartesian/axis_autotype\":768,\"../../plots/cartesian/category_order_defaults\":771,\"../../plots/cartesian/set_convert\":785,\"../../plots/cartesian/tick_label_defaults\":786,\"../../plots/cartesian/tick_value_defaults\":788,\"../../registry\":848,\"./attributes\":899}],903:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),a=t(\"../../lib\").isArray1D,i=t(\"./cheater_basis\"),o=t(\"./array_minmax\"),s=t(\"./calc_gridlines\"),l=t(\"./calc_labels\"),c=t(\"./calc_clippath\"),u=t(\"../heatmap/clean_2d_array\"),h=t(\"./smooth_fill_2d_array\"),f=t(\"../heatmap/convert_column_xyz\"),p=t(\"./set_convert\");e.exports=function(t,e){var r=n.getFromId(t,e.xaxis),d=n.getFromId(t,e.yaxis),g=e.aaxis,v=e.baxis,m=e.x,y=e.y,x=[];m&&a(m)&&x.push(\"x\"),y&&a(y)&&x.push(\"y\"),x.length&&f(e,g,v,\"a\",\"b\",x);var b=e._a=e._a||e.a,_=e._b=e._b||e.b;m=e._x||e.x,y=e._y||e.y;var w={};if(e._cheater){var k=\"index\"===g.cheatertype?b.length:b,T=\"index\"===v.cheatertype?_.length:_;m=i(k,T,e.cheaterslope)}e._x=m=u(m),e._y=y=u(y),h(m,b,_),h(y,b,_),p(e),e.setScale();var A=o(m),M=o(y),S=.5*(A[1]-A[0]),E=.5*(A[1]+A[0]),C=.5*(M[1]-M[0]),L=.5*(M[1]+M[0]);return A=[E-1.3*S,E+1.3*S],M=[L-1.3*C,L+1.3*C],e._extremes[r._id]=n.findExtremes(r,A,{padded:!0}),e._extremes[d._id]=n.findExtremes(d,M,{padded:!0}),s(e,\"a\",\"b\"),s(e,\"b\",\"a\"),l(e,g),l(e,v),w.clipsegments=c(e._xctrl,e._yctrl,g,v),w.x=m,w.y=y,w.a=b,w.b=_,[w]}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../heatmap/clean_2d_array\":1002,\"../heatmap/convert_column_xyz\":1004,\"./array_minmax\":898,\"./calc_clippath\":904,\"./calc_gridlines\":905,\"./calc_labels\":906,\"./cheater_basis\":908,\"./set_convert\":921,\"./smooth_fill_2d_array\":922}],904:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n){var a,i,o,s=[],l=!!r.smoothing,c=!!n.smoothing,u=t[0].length-1,h=t.length-1;for(a=0,i=[],o=[];a<=u;a++)i[a]=t[0][a],o[a]=e[0][a];for(s.push({x:i,y:o,bicubic:l}),a=0,i=[],o=[];a<=h;a++)i[a]=t[a][u],o[a]=e[a][u];for(s.push({x:i,y:o,bicubic:c}),a=u,i=[],o=[];a>=0;a--)i[u-a]=t[h][a],o[u-a]=e[h][a];for(s.push({x:i,y:o,bicubic:l}),a=h,i=[],o=[];a>=0;a--)i[h-a]=t[a][0],o[h-a]=e[a][0];return s.push({x:i,y:o,bicubic:c}),s}},{}],905:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),a=t(\"../../lib/extend\").extendFlat;e.exports=function(t,e,r){var i,o,s,l,c,u,h,f,p,d,g,v,m,y,x=t[\"_\"+e],b=t[e+\"axis\"],_=b._gridlines=[],w=b._minorgridlines=[],k=b._boundarylines=[],T=t[\"_\"+r],A=t[r+\"axis\"];\"array\"===b.tickmode&&(b.tickvals=x.slice());var M=t._xctrl,S=t._yctrl,E=M[0].length,C=M.length,L=t._a.length,P=t._b.length;n.prepTicks(b),\"array\"===b.tickmode&&delete b.tickvals;var O=b.smoothing?3:1;function I(n){var a,i,o,s,l,c,u,h,p,d,g,v,m=[],y=[],x={};if(\"b\"===e)for(i=t.b2j(n),o=Math.floor(Math.max(0,Math.min(P-2,i))),s=i-o,x.length=P,x.crossLength=L,x.xy=function(e){return t.evalxy([],e,i)},x.dxy=function(e,r){return t.dxydi([],e,o,r,s)},a=0;a<L;a++)c=Math.min(L-2,a),u=a-c,h=t.evalxy([],a,i),A.smoothing&&a>0&&(p=t.dxydi([],a-1,o,0,s),m.push(l[0]+p[0]/3),y.push(l[1]+p[1]/3),d=t.dxydi([],a-1,o,1,s),m.push(h[0]-d[0]/3),y.push(h[1]-d[1]/3)),m.push(h[0]),y.push(h[1]),l=h;else for(a=t.a2i(n),c=Math.floor(Math.max(0,Math.min(L-2,a))),u=a-c,x.length=L,x.crossLength=P,x.xy=function(e){return t.evalxy([],a,e)},x.dxy=function(e,r){return t.dxydj([],c,e,u,r)},i=0;i<P;i++)o=Math.min(P-2,i),s=i-o,h=t.evalxy([],a,i),A.smoothing&&i>0&&(g=t.dxydj([],c,i-1,u,0),m.push(l[0]+g[0]/3),y.push(l[1]+g[1]/3),v=t.dxydj([],c,i-1,u,1),m.push(h[0]-v[0]/3),y.push(h[1]-v[1]/3)),m.push(h[0]),y.push(h[1]),l=h;return x.axisLetter=e,x.axis=b,x.crossAxis=A,x.value=n,x.constvar=r,x.index=f,x.x=m,x.y=y,x.smoothing=A.smoothing,x}function z(n){var a,i,o,s,l,c=[],u=[],h={};if(h.length=x.length,h.crossLength=T.length,\"b\"===e)for(o=Math.max(0,Math.min(P-2,n)),l=Math.min(1,Math.max(0,n-o)),h.xy=function(e){return t.evalxy([],e,n)},h.dxy=function(e,r){return t.dxydi([],e,o,r,l)},a=0;a<E;a++)c[a]=M[n*O][a],u[a]=S[n*O][a];else for(i=Math.max(0,Math.min(L-2,n)),s=Math.min(1,Math.max(0,n-i)),h.xy=function(e){return t.evalxy([],n,e)},h.dxy=function(e,r){return t.dxydj([],i,e,s,r)},a=0;a<C;a++)c[a]=M[a][n*O],u[a]=S[a][n*O];return h.axisLetter=e,h.axis=b,h.crossAxis=A,h.value=x[n],h.constvar=r,h.index=n,h.x=c,h.y=u,h.smoothing=A.smoothing,h}if(\"array\"===b.tickmode){for(l=5e-15,u=(c=[Math.floor((x.length-1-b.arraytick0)/b.arraydtick*(1+l)),Math.ceil(-b.arraytick0/b.arraydtick/(1+l))].sort(function(t,e){return t-e}))[0]-1,h=c[1]+1,f=u;f<h;f++)(o=b.arraytick0+b.arraydtick*f)<0||o>x.length-1||_.push(a(z(o),{color:b.gridcolor,width:b.gridwidth}));for(f=u;f<h;f++)if(s=b.arraytick0+b.arraydtick*f,g=Math.min(s+b.arraydtick,x.length-1),!(s<0||s>x.length-1||g<0||g>x.length-1))for(v=x[s],m=x[g],i=0;i<b.minorgridcount;i++)(y=g-s)<=0||(d=v+(m-v)*(i+1)/(b.minorgridcount+1)*(b.arraydtick/y))<x[0]||d>x[x.length-1]||w.push(a(I(d),{color:b.minorgridcolor,width:b.minorgridwidth}));b.startline&&k.push(a(z(0),{color:b.startlinecolor,width:b.startlinewidth})),b.endline&&k.push(a(z(x.length-1),{color:b.endlinecolor,width:b.endlinewidth}))}else{for(l=5e-15,u=(c=[Math.floor((x[x.length-1]-b.tick0)/b.dtick*(1+l)),Math.ceil((x[0]-b.tick0)/b.dtick/(1+l))].sort(function(t,e){return t-e}))[0],h=c[1],f=u;f<=h;f++)p=b.tick0+b.dtick*f,_.push(a(I(p),{color:b.gridcolor,width:b.gridwidth}));for(f=u-1;f<h+1;f++)for(p=b.tick0+b.dtick*f,i=0;i<b.minorgridcount;i++)(d=p+b.dtick*(i+1)/(b.minorgridcount+1))<x[0]||d>x[x.length-1]||w.push(a(I(d),{color:b.minorgridcolor,width:b.minorgridwidth}));b.startline&&k.push(a(I(x[0]),{color:b.startlinecolor,width:b.startlinewidth})),b.endline&&k.push(a(I(x[x.length-1]),{color:b.endlinecolor,width:b.endlinewidth}))}}},{\"../../lib/extend\":710,\"../../plots/cartesian/axes\":767}],906:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),a=t(\"../../lib/extend\").extendFlat;e.exports=function(t,e){var r,i,o,s=e._labels=[],l=e._gridlines;for(r=0;r<l.length;r++)o=l[r],-1!==[\"start\",\"both\"].indexOf(e.showticklabels)&&(i=n.tickText(e,o.value),a(i,{prefix:void 0,suffix:void 0,endAnchor:!0,xy:o.xy(0),dxy:o.dxy(0,0),axis:o.axis,length:o.crossAxis.length,font:o.axis.tickfont,isFirst:0===r,isLast:r===l.length-1}),s.push(i)),-1!==[\"end\",\"both\"].indexOf(e.showticklabels)&&(i=n.tickText(e,o.value),a(i,{endAnchor:!1,xy:o.xy(o.crossLength-1),dxy:o.dxy(o.crossLength-2,1),axis:o.axis,length:o.crossAxis.length,font:o.axis.tickfont,isFirst:0===r,isLast:r===l.length-1}),s.push(i))}},{\"../../lib/extend\":710,\"../../plots/cartesian/axes\":767}],907:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n){var a=t[0]-e[0],i=t[1]-e[1],o=r[0]-e[0],s=r[1]-e[1],l=Math.pow(a*a+i*i,.25),c=Math.pow(o*o+s*s,.25),u=(c*c*a-l*l*o)*n,h=(c*c*i-l*l*s)*n,f=c*(l+c)*3,p=l*(l+c)*3;return[[e[0]+(f&&u/f),e[1]+(f&&h/f)],[e[0]-(p&&u/p),e[1]-(p&&h/p)]]}},{}],908:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").isArrayOrTypedArray;e.exports=function(t,e,r){var a,i,o,s,l,c,u=[],h=n(t)?t.length:t,f=n(e)?e.length:e,p=n(t)?t:null,d=n(e)?e:null;p&&(o=(p.length-1)/(p[p.length-1]-p[0])/(h-1)),d&&(s=(d.length-1)/(d[d.length-1]-d[0])/(f-1));var g=1/0,v=-1/0;for(i=0;i<f;i++)for(u[i]=[],l=d?(d[i]-d[0])*s:i/(f-1),a=0;a<h;a++)c=(p?(p[a]-p[0])*o:a/(h-1))-l*r,g=Math.min(c,g),v=Math.max(c,v),u[i][a]=c;var m=1/(v-g),y=-g*m;for(i=0;i<f;i++)for(a=0;a<h;a++)u[i][a]=m*u[i][a]+y;return u}},{\"../../lib\":719}],909:[function(t,e,r){\"use strict\";var n=t(\"./catmull_rom\"),a=t(\"../../lib\").ensureArray;function i(t,e,r){var n=-.5*r[0]+1.5*e[0],a=-.5*r[1]+1.5*e[1];return[(2*n+t[0])/3,(2*a+t[1])/3]}e.exports=function(t,e,r,o,s,l){var c,u,h,f,p,d,g,v,m,y,x=r[0].length,b=r.length,_=s?3*x-2:x,w=l?3*b-2:b;for(t=a(t,w),e=a(e,w),h=0;h<w;h++)t[h]=a(t[h],_),e[h]=a(e[h],_);for(u=0,f=0;u<b;u++,f+=l?3:1)for(p=t[f],d=e[f],g=r[u],v=o[u],c=0,h=0;c<x;c++,h+=s?3:1)p[h]=g[c],d[h]=v[c];if(s)for(u=0,f=0;u<b;u++,f+=l?3:1){for(c=1,h=3;c<x-1;c++,h+=3)m=n([r[u][c-1],o[u][c-1]],[r[u][c],o[u][c]],[r[u][c+1],o[u][c+1]],s),t[f][h-1]=m[0][0],e[f][h-1]=m[0][1],t[f][h+1]=m[1][0],e[f][h+1]=m[1][1];y=i([t[f][0],e[f][0]],[t[f][2],e[f][2]],[t[f][3],e[f][3]]),t[f][1]=y[0],e[f][1]=y[1],y=i([t[f][_-1],e[f][_-1]],[t[f][_-3],e[f][_-3]],[t[f][_-4],e[f][_-4]]),t[f][_-2]=y[0],e[f][_-2]=y[1]}if(l)for(h=0;h<_;h++){for(f=3;f<w-3;f+=3)m=n([t[f-3][h],e[f-3][h]],[t[f][h],e[f][h]],[t[f+3][h],e[f+3][h]],l),t[f-1][h]=m[0][0],e[f-1][h]=m[0][1],t[f+1][h]=m[1][0],e[f+1][h]=m[1][1];y=i([t[0][h],e[0][h]],[t[2][h],e[2][h]],[t[3][h],e[3][h]]),t[1][h]=y[0],e[1][h]=y[1],y=i([t[w-1][h],e[w-1][h]],[t[w-3][h],e[w-3][h]],[t[w-4][h],e[w-4][h]]),t[w-2][h]=y[0],e[w-2][h]=y[1]}if(s&&l)for(f=1;f<w;f+=(f+1)%3==0?2:1){for(h=3;h<_-3;h+=3)m=n([t[f][h-3],e[f][h-3]],[t[f][h],e[f][h]],[t[f][h+3],e[f][h+3]],s),t[f][h-1]=.5*(t[f][h-1]+m[0][0]),e[f][h-1]=.5*(e[f][h-1]+m[0][1]),t[f][h+1]=.5*(t[f][h+1]+m[1][0]),e[f][h+1]=.5*(e[f][h+1]+m[1][1]);y=i([t[f][0],e[f][0]],[t[f][2],e[f][2]],[t[f][3],e[f][3]]),t[f][1]=.5*(t[f][1]+y[0]),e[f][1]=.5*(e[f][1]+y[1]),y=i([t[f][_-1],e[f][_-1]],[t[f][_-3],e[f][_-3]],[t[f][_-4],e[f][_-4]]),t[f][_-2]=.5*(t[f][_-2]+y[0]),e[f][_-2]=.5*(e[f][_-2]+y[1])}return[t,e]}},{\"../../lib\":719,\"./catmull_rom\":907}],910:[function(t,e,r){\"use strict\";e.exports={RELATIVE_CULL_TOLERANCE:1e-6}},{}],911:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){return e&&r?function(e,r,n,a,i){var o,s,l,c,u,h;e||(e=[]),r*=3,n*=3;var f=a*a,p=1-a,d=p*p,g=p*a*2,v=-3*d,m=3*(d-g),y=3*(g-f),x=3*f,b=i*i,_=b*i,w=1-i,k=w*w,T=k*w;for(h=0;h<t.length;h++)o=v*(u=t[h])[n][r]+m*u[n][r+1]+y*u[n][r+2]+x*u[n][r+3],s=v*u[n+1][r]+m*u[n+1][r+1]+y*u[n+1][r+2]+x*u[n+1][r+3],l=v*u[n+2][r]+m*u[n+2][r+1]+y*u[n+2][r+2]+x*u[n+2][r+3],c=v*u[n+3][r]+m*u[n+3][r+1]+y*u[n+3][r+2]+x*u[n+3][r+3],e[h]=T*o+3*(k*i*s+w*b*l)+_*c;return e}:e?function(e,r,n,a,i){var o,s,l,c;e||(e=[]),r*=3;var u=a*a,h=1-a,f=h*h,p=h*a*2,d=-3*f,g=3*(f-p),v=3*(p-u),m=3*u,y=1-i;for(l=0;l<t.length;l++)o=d*(c=t[l])[n][r]+g*c[n][r+1]+v*c[n][r+2]+m*c[n][r+3],s=d*c[n+1][r]+g*c[n+1][r+1]+v*c[n+1][r+2]+m*c[n+1][r+3],e[l]=y*o+i*s;return e}:r?function(e,r,n,a,i){var o,s,l,c,u,h;e||(e=[]),n*=3;var f=i*i,p=f*i,d=1-i,g=d*d,v=g*d;for(u=0;u<t.length;u++)o=(h=t[u])[n][r+1]-h[n][r],s=h[n+1][r+1]-h[n+1][r],l=h[n+2][r+1]-h[n+2][r],c=h[n+3][r+1]-h[n+3][r],e[u]=v*o+3*(g*i*s+d*f*l)+p*c;return e}:function(e,r,n,a,i){var o,s,l,c;e||(e=[]);var u=1-i;for(l=0;l<t.length;l++)o=(c=t[l])[n][r+1]-c[n][r],s=c[n+1][r+1]-c[n+1][r],e[l]=u*o+i*s;return e}}},{}],912:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){return e&&r?function(e,r,n,a,i){var o,s,l,c,u,h;e||(e=[]),r*=3,n*=3;var f=a*a,p=f*a,d=1-a,g=d*d,v=g*d,m=i*i,y=1-i,x=y*y,b=y*i*2,_=-3*x,w=3*(x-b),k=3*(b-m),T=3*m;for(h=0;h<t.length;h++)o=_*(u=t[h])[n][r]+w*u[n+1][r]+k*u[n+2][r]+T*u[n+3][r],s=_*u[n][r+1]+w*u[n+1][r+1]+k*u[n+2][r+1]+T*u[n+3][r+1],l=_*u[n][r+2]+w*u[n+1][r+2]+k*u[n+2][r+2]+T*u[n+3][r+2],c=_*u[n][r+3]+w*u[n+1][r+3]+k*u[n+2][r+3]+T*u[n+3][r+3],e[h]=v*o+3*(g*a*s+d*f*l)+p*c;return e}:e?function(e,r,n,a,i){var o,s,l,c,u,h;e||(e=[]),r*=3;var f=i*i,p=f*i,d=1-i,g=d*d,v=g*d;for(u=0;u<t.length;u++)o=(h=t[u])[n+1][r]-h[n][r],s=h[n+1][r+1]-h[n][r+1],l=h[n+1][r+2]-h[n][r+2],c=h[n+1][r+3]-h[n][r+3],e[u]=v*o+3*(g*i*s+d*f*l)+p*c;return e}:r?function(e,r,n,a,i){var o,s,l,c;e||(e=[]),n*=3;var u=1-a,h=i*i,f=1-i,p=f*f,d=f*i*2,g=-3*p,v=3*(p-d),m=3*(d-h),y=3*h;for(l=0;l<t.length;l++)o=g*(c=t[l])[n][r]+v*c[n+1][r]+m*c[n+2][r]+y*c[n+3][r],s=g*c[n][r+1]+v*c[n+1][r+1]+m*c[n+2][r+1]+y*c[n+3][r+1],e[l]=u*o+a*s;return e}:function(e,r,n,a,i){var o,s,l,c;e||(e=[]);var u=1-a;for(l=0;l<t.length;l++)o=(c=t[l])[n+1][r]-c[n][r],s=c[n+1][r+1]-c[n][r+1],e[l]=u*o+a*s;return e}}},{}],913:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,a){var i=e-2,o=r-2;return n&&a?function(e,r,n){var a,s,l,c,u,h;e||(e=[]);var f=Math.max(0,Math.min(Math.floor(r),i)),p=Math.max(0,Math.min(Math.floor(n),o)),d=Math.max(0,Math.min(1,r-f)),g=Math.max(0,Math.min(1,n-p));f*=3,p*=3;var v=d*d,m=v*d,y=1-d,x=y*y,b=x*y,_=g*g,w=_*g,k=1-g,T=k*k,A=T*k;for(h=0;h<t.length;h++)a=b*(u=t[h])[p][f]+3*(x*d*u[p][f+1]+y*v*u[p][f+2])+m*u[p][f+3],s=b*u[p+1][f]+3*(x*d*u[p+1][f+1]+y*v*u[p+1][f+2])+m*u[p+1][f+3],l=b*u[p+2][f]+3*(x*d*u[p+2][f+1]+y*v*u[p+2][f+2])+m*u[p+2][f+3],c=b*u[p+3][f]+3*(x*d*u[p+3][f+1]+y*v*u[p+3][f+2])+m*u[p+3][f+3],e[h]=A*a+3*(T*g*s+k*_*l)+w*c;return e}:n?function(e,r,n){e||(e=[]);var a,s,l,c,u,h,f=Math.max(0,Math.min(Math.floor(r),i)),p=Math.max(0,Math.min(Math.floor(n),o)),d=Math.max(0,Math.min(1,r-f)),g=Math.max(0,Math.min(1,n-p));f*=3;var v=d*d,m=v*d,y=1-d,x=y*y,b=x*y,_=1-g;for(u=0;u<t.length;u++)a=_*(h=t[u])[p][f]+g*h[p+1][f],s=_*h[p][f+1]+g*h[p+1][f+1],l=_*h[p][f+2]+g*h[p+1][f+1],c=_*h[p][f+3]+g*h[p+1][f+1],e[u]=b*a+3*(x*d*s+y*v*l)+m*c;return e}:a?function(e,r,n){e||(e=[]);var a,s,l,c,u,h,f=Math.max(0,Math.min(Math.floor(r),i)),p=Math.max(0,Math.min(Math.floor(n),o)),d=Math.max(0,Math.min(1,r-f)),g=Math.max(0,Math.min(1,n-p));p*=3;var v=g*g,m=v*g,y=1-g,x=y*y,b=x*y,_=1-d;for(u=0;u<t.length;u++)a=_*(h=t[u])[p][f]+d*h[p][f+1],s=_*h[p+1][f]+d*h[p+1][f+1],l=_*h[p+2][f]+d*h[p+2][f+1],c=_*h[p+3][f]+d*h[p+3][f+1],e[u]=b*a+3*(x*g*s+y*v*l)+m*c;return e}:function(e,r,n){e||(e=[]);var a,s,l,c,u=Math.max(0,Math.min(Math.floor(r),i)),h=Math.max(0,Math.min(Math.floor(n),o)),f=Math.max(0,Math.min(1,r-u)),p=Math.max(0,Math.min(1,n-h)),d=1-p,g=1-f;for(l=0;l<t.length;l++)a=g*(c=t[l])[h][u]+f*c[h][u+1],s=g*c[h+1][u]+f*c[h+1][u+1],e[l]=d*a+p*s;return e}}},{}],914:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./xy_defaults\"),i=t(\"./ab_defaults\"),o=t(\"./attributes\"),s=t(\"../../components/color/attributes\");e.exports=function(t,e,r,l){function c(r,a){return n.coerce(t,e,o,r,a)}e._clipPathId=\"clip\"+e.uid+\"carpet\";var u=c(\"color\",s.defaultLine);(n.coerceFont(c,\"font\"),c(\"carpet\"),i(t,e,l,c,u),e.a&&e.b)?(e.a.length<3&&(e.aaxis.smoothing=0),e.b.length<3&&(e.baxis.smoothing=0),a(t,e,c)||(e.visible=!1),e._cheater&&c(\"cheaterslope\")):e.visible=!1}},{\"../../components/color/attributes\":593,\"../../lib\":719,\"./ab_defaults\":897,\"./attributes\":899,\"./xy_defaults\":923}],915:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),plot:t(\"./plot\"),calc:t(\"./calc\"),animatable:!0,isContainer:!0,moduleType:\"trace\",name:\"carpet\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"carpet\",\"carpetAxis\",\"notLegendIsolatable\",\"noMultiCategory\",\"noHover\"],meta:{}}},{\"../../plots/cartesian\":778,\"./attributes\":899,\"./calc\":903,\"./defaults\":914,\"./plot\":920}],916:[function(t,e,r){\"use strict\";e.exports=function(t,e){for(var r,n=t._fullData.length,a=0;a<n;a++){var i=t._fullData[a];if(i.index!==e.index&&(\"carpet\"===i.type&&(r||(r=i),i.carpet===e.carpet)))return i}return r}},{}],917:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){if(0===t.length)return\"\";var n,a=[],i=r?3:1;for(n=0;n<t.length;n+=i)a.push(t[n]+\",\"+e[n]),r&&n<t.length-i&&(a.push(\"C\"),a.push([t[n+1]+\",\"+e[n+1],t[n+2]+\",\"+e[n+2]+\" \"].join(\" \")));return a.join(r?\"\":\"L\")}},{}],918:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").isArrayOrTypedArray;e.exports=function(t,e,r){var a;for(n(t)?t.length>e.length&&(t=t.slice(0,e.length)):t=[],a=0;a<e.length;a++)t[a]=r(e[a]);return t}},{\"../../lib\":719}],919:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,a,i){var o=a[0]*t.dpdx(e),s=a[1]*t.dpdy(r),l=1,c=1;if(i){var u=Math.sqrt(a[0]*a[0]+a[1]*a[1]),h=Math.sqrt(i[0]*i[0]+i[1]*i[1]),f=(a[0]*i[0]+a[1]*i[1])/u/h;c=Math.max(0,f)}var p=180*Math.atan2(s,o)/Math.PI;return p<-90?(p+=180,l=-l):p>90&&(p-=180,l=-l),{angle:p,flip:l,p:t.c2p(n,e,r),offsetMultplier:c}}},{}],920:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/drawing\"),i=t(\"./map_1d_array\"),o=t(\"./makepath\"),s=t(\"./orient_text\"),l=t(\"../../lib/svg_text_utils\"),c=t(\"../../lib\"),u=t(\"../../constants/alignment\");function h(t,e,r,a,s,l){var c=\"const-\"+s+\"-lines\",u=r.selectAll(\".\"+c).data(l);u.enter().append(\"path\").classed(c,!0).style(\"vector-effect\",\"non-scaling-stroke\"),u.each(function(r){var a=r,s=a.x,l=a.y,c=i([],s,t.c2p),u=i([],l,e.c2p),h=\"M\"+o(c,u,a.smoothing);n.select(this).attr(\"d\",h).style(\"stroke-width\",a.width).style(\"stroke\",a.color).style(\"fill\",\"none\")}),u.exit().remove()}function f(t,e,r,i,o,c,u,h){var f=c.selectAll(\"text.\"+h).data(u);f.enter().append(\"text\").classed(h,!0);var p=0,d={};return f.each(function(o,c){var u;if(\"auto\"===o.axis.tickangle)u=s(i,e,r,o.xy,o.dxy);else{var h=(o.axis.tickangle+180)*Math.PI/180;u=s(i,e,r,o.xy,[Math.cos(h),Math.sin(h)])}c||(d={angle:u.angle,flip:u.flip});var f=(o.endAnchor?-1:1)*u.flip,g=n.select(this).attr({\"text-anchor\":f>0?\"start\":\"end\",\"data-notex\":1}).call(a.font,o.font).text(o.text).call(l.convertToTspans,t),v=a.bBox(this);g.attr(\"transform\",\"translate(\"+u.p[0]+\",\"+u.p[1]+\") rotate(\"+u.angle+\")translate(\"+o.axis.labelpadding*f+\",\"+.3*v.height+\")\"),p=Math.max(p,v.width+o.axis.labelpadding)}),f.exit().remove(),d.maxExtent=p,d}e.exports=function(t,e,r,a){var l=e.xaxis,u=e.yaxis,p=t._fullLayout._clips;c.makeTraceGroups(a,r,\"trace\").each(function(e){var r=n.select(this),a=e[0],d=a.trace,v=d.aaxis,m=d.baxis,y=c.ensureSingle(r,\"g\",\"minorlayer\"),x=c.ensureSingle(r,\"g\",\"majorlayer\"),b=c.ensureSingle(r,\"g\",\"boundarylayer\"),_=c.ensureSingle(r,\"g\",\"labellayer\");r.style(\"opacity\",d.opacity),h(l,u,x,v,\"a\",v._gridlines),h(l,u,x,m,\"b\",m._gridlines),h(l,u,y,v,\"a\",v._minorgridlines),h(l,u,y,m,\"b\",m._minorgridlines),h(l,u,b,v,\"a-boundary\",v._boundarylines),h(l,u,b,m,\"b-boundary\",m._boundarylines);var w=f(t,l,u,d,a,_,v._labels,\"a-label\"),k=f(t,l,u,d,a,_,m._labels,\"b-label\");!function(t,e,r,n,a,i,o,l){var u,h,f,p,d=c.aggNums(Math.min,null,r.a),v=c.aggNums(Math.max,null,r.a),m=c.aggNums(Math.min,null,r.b),y=c.aggNums(Math.max,null,r.b);u=.5*(d+v),h=m,f=r.ab2xy(u,h,!0),p=r.dxyda_rough(u,h),void 0===o.angle&&c.extendFlat(o,s(r,a,i,f,r.dxydb_rough(u,h)));g(t,e,r,n,f,p,r.aaxis,a,i,o,\"a-title\"),u=d,h=.5*(m+y),f=r.ab2xy(u,h,!0),p=r.dxydb_rough(u,h),void 0===l.angle&&c.extendFlat(l,s(r,a,i,f,r.dxyda_rough(u,h)));g(t,e,r,n,f,p,r.baxis,a,i,l,\"b-title\")}(t,_,d,a,l,u,w,k),function(t,e,r,n,a){var s,l,u,h,f=r.select(\"#\"+t._clipPathId);f.size()||(f=r.append(\"clipPath\").classed(\"carpetclip\",!0));var p=c.ensureSingle(f,\"path\",\"carpetboundary\"),d=e.clipsegments,g=[];for(h=0;h<d.length;h++)s=d[h],l=i([],s.x,n.c2p),u=i([],s.y,a.c2p),g.push(o(l,u,s.bicubic));var v=\"M\"+g.join(\"L\")+\"Z\";f.attr(\"id\",t._clipPathId),p.attr(\"d\",v)}(d,a,p,l,u)})};var p=u.LINE_SPACING,d=(1-u.MID_SHIFT)/p+1;function g(t,e,r,i,o,c,u,h,f,g,v){var m=[];u.title.text&&m.push(u.title.text);var y=e.selectAll(\"text.\"+v).data(m),x=g.maxExtent;y.enter().append(\"text\").classed(v,!0),y.each(function(){var e=s(r,h,f,o,c);-1===[\"start\",\"both\"].indexOf(u.showticklabels)&&(x=0);var i=u.title.font.size;x+=i+u.title.offset;var v=(g.angle+(g.flip<0?180:0)-e.angle+450)%360,m=v>90&&v<270,y=n.select(this);y.text(u.title.text).call(l.convertToTspans,t),m&&(x=(-l.lineCount(y)+d)*p*i-x),y.attr(\"transform\",\"translate(\"+e.p[0]+\",\"+e.p[1]+\") rotate(\"+e.angle+\") translate(0,\"+x+\")\").classed(\"user-select-none\",!0).attr(\"text-anchor\",\"middle\").call(a.font,u.title.font)}),y.exit().remove()}},{\"../../components/drawing\":615,\"../../constants/alignment\":688,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"./makepath\":917,\"./map_1d_array\":918,\"./orient_text\":919,d3:164}],921:[function(t,e,r){\"use strict\";var n=t(\"./constants\"),a=t(\"../../lib/search\").findBin,i=t(\"./compute_control_points\"),o=t(\"./create_spline_evaluator\"),s=t(\"./create_i_derivative_evaluator\"),l=t(\"./create_j_derivative_evaluator\");e.exports=function(t){var e=t._a,r=t._b,c=e.length,u=r.length,h=t.aaxis,f=t.baxis,p=e[0],d=e[c-1],g=r[0],v=r[u-1],m=e[e.length-1]-e[0],y=r[r.length-1]-r[0],x=m*n.RELATIVE_CULL_TOLERANCE,b=y*n.RELATIVE_CULL_TOLERANCE;p-=x,d+=x,g-=b,v+=b,t.isVisible=function(t,e){return t>p&&t<d&&e>g&&e<v},t.isOccluded=function(t,e){return t<p||t>d||e<g||e>v},t.setScale=function(){var e=t._x,r=t._y,n=i(t._xctrl,t._yctrl,e,r,h.smoothing,f.smoothing);t._xctrl=n[0],t._yctrl=n[1],t.evalxy=o([t._xctrl,t._yctrl],c,u,h.smoothing,f.smoothing),t.dxydi=s([t._xctrl,t._yctrl],h.smoothing,f.smoothing),t.dxydj=l([t._xctrl,t._yctrl],h.smoothing,f.smoothing)},t.i2a=function(t){var r=Math.max(0,Math.floor(t[0]),c-2),n=t[0]-r;return(1-n)*e[r]+n*e[r+1]},t.j2b=function(t){var e=Math.max(0,Math.floor(t[1]),c-2),n=t[1]-e;return(1-n)*r[e]+n*r[e+1]},t.ij2ab=function(e){return[t.i2a(e[0]),t.j2b(e[1])]},t.a2i=function(t){var r=Math.max(0,Math.min(a(t,e),c-2)),n=e[r],i=e[r+1];return Math.max(0,Math.min(c-1,r+(t-n)/(i-n)))},t.b2j=function(t){var e=Math.max(0,Math.min(a(t,r),u-2)),n=r[e],i=r[e+1];return Math.max(0,Math.min(u-1,e+(t-n)/(i-n)))},t.ab2ij=function(e){return[t.a2i(e[0]),t.b2j(e[1])]},t.i2c=function(e,r){return t.evalxy([],e,r)},t.ab2xy=function(n,a,i){if(!i&&(n<e[0]||n>e[c-1]|a<r[0]||a>r[u-1]))return[!1,!1];var o=t.a2i(n),s=t.b2j(a),l=t.evalxy([],o,s);if(i){var h,f,p,d,g=0,v=0,m=[];n<e[0]?(h=0,f=0,g=(n-e[0])/(e[1]-e[0])):n>e[c-1]?(h=c-2,f=1,g=(n-e[c-1])/(e[c-1]-e[c-2])):f=o-(h=Math.max(0,Math.min(c-2,Math.floor(o)))),a<r[0]?(p=0,d=0,v=(a-r[0])/(r[1]-r[0])):a>r[u-1]?(p=u-2,d=1,v=(a-r[u-1])/(r[u-1]-r[u-2])):d=s-(p=Math.max(0,Math.min(u-2,Math.floor(s)))),g&&(t.dxydi(m,h,p,f,d),l[0]+=m[0]*g,l[1]+=m[1]*g),v&&(t.dxydj(m,h,p,f,d),l[0]+=m[0]*v,l[1]+=m[1]*v)}return l},t.c2p=function(t,e,r){return[e.c2p(t[0]),r.c2p(t[1])]},t.p2x=function(t,e,r){return[e.p2c(t[0]),r.p2c(t[1])]},t.dadi=function(t){var r=Math.max(0,Math.min(e.length-2,t));return e[r+1]-e[r]},t.dbdj=function(t){var e=Math.max(0,Math.min(r.length-2,t));return r[e+1]-r[e]},t.dxyda=function(e,r,n,a){var i=t.dxydi(null,e,r,n,a),o=t.dadi(e,n);return[i[0]/o,i[1]/o]},t.dxydb=function(e,r,n,a){var i=t.dxydj(null,e,r,n,a),o=t.dbdj(r,a);return[i[0]/o,i[1]/o]},t.dxyda_rough=function(e,r,n){var a=m*(n||.1),i=t.ab2xy(e+a,r,!0),o=t.ab2xy(e-a,r,!0);return[.5*(i[0]-o[0])/a,.5*(i[1]-o[1])/a]},t.dxydb_rough=function(e,r,n){var a=y*(n||.1),i=t.ab2xy(e,r+a,!0),o=t.ab2xy(e,r-a,!0);return[.5*(i[0]-o[0])/a,.5*(i[1]-o[1])/a]},t.dpdx=function(t){return t._m},t.dpdy=function(t){return t._m}}},{\"../../lib/search\":738,\"./compute_control_points\":909,\"./constants\":910,\"./create_i_derivative_evaluator\":911,\"./create_j_derivative_evaluator\":912,\"./create_spline_evaluator\":913}],922:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e,r){var a,i,o,s=[],l=[],c=t[0].length,u=t.length;function h(e,r){var n,a=0,i=0;return e>0&&void 0!==(n=t[r][e-1])&&(i++,a+=n),e<c-1&&void 0!==(n=t[r][e+1])&&(i++,a+=n),r>0&&void 0!==(n=t[r-1][e])&&(i++,a+=n),r<u-1&&void 0!==(n=t[r+1][e])&&(i++,a+=n),a/Math.max(1,i)}var f,p,d,g,v,m,y,x,b,_,w,k=0;for(a=0;a<c;a++)for(i=0;i<u;i++)void 0===t[i][a]&&(s.push(a),l.push(i),t[i][a]=h(a,i)),k=Math.max(k,Math.abs(t[i][a]));if(!s.length)return t;var T=0,A=0,M=s.length;do{for(T=0,o=0;o<M;o++){a=s[o],i=l[o];var S,E,C,L,P,O,I=0,z=0;0===a?(C=e[P=Math.min(c-1,2)],L=e[1],S=t[i][P],z+=(E=t[i][1])+(E-S)*(e[0]-L)/(L-C),I++):a===c-1&&(C=e[P=Math.max(0,c-3)],L=e[c-2],S=t[i][P],z+=(E=t[i][c-2])+(E-S)*(e[c-1]-L)/(L-C),I++),(0===a||a===c-1)&&i>0&&i<u-1&&(f=r[i+1]-r[i],z+=((p=r[i]-r[i-1])*t[i+1][a]+f*t[i-1][a])/(p+f),I++),0===i?(C=r[O=Math.min(u-1,2)],L=r[1],S=t[O][a],z+=(E=t[1][a])+(E-S)*(r[0]-L)/(L-C),I++):i===u-1&&(C=r[O=Math.max(0,u-3)],L=r[u-2],S=t[O][a],z+=(E=t[u-2][a])+(E-S)*(r[u-1]-L)/(L-C),I++),(0===i||i===u-1)&&a>0&&a<c-1&&(f=e[a+1]-e[a],z+=((p=e[a]-e[a-1])*t[i][a+1]+f*t[i][a-1])/(p+f),I++),I?z/=I:(d=e[a+1]-e[a],g=e[a]-e[a-1],x=(v=r[i+1]-r[i])*(m=r[i]-r[i-1])*(v+m),z=((y=d*g*(d+g))*(m*t[i+1][a]+v*t[i-1][a])+x*(g*t[i][a+1]+d*t[i][a-1]))/(x*(g+d)+y*(m+v))),T+=(_=(b=z-t[i][a])/k)*_,w=I?0:.85,t[i][a]+=b*(1+w)}T=Math.sqrt(T)}while(A++<100&&T>1e-5);return n.log(\"Smoother converged to\",T,\"after\",A,\"iterations\"),t}},{\"../../lib\":719}],923:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").isArray1D;e.exports=function(t,e,r){var a=r(\"x\"),i=a&&a.length,o=r(\"y\"),s=o&&o.length;if(!i&&!s)return!1;if(e._cheater=!a,i&&!n(a)||s&&!n(o))e._length=null;else{var l=i?a.length:1/0;s&&(l=Math.min(l,o.length)),e.a&&e.a.length&&(l=Math.min(l,e.a.length)),e.b&&e.b.length&&(l=Math.min(l,e.b.length)),e._length=l}return!0}},{\"../../lib\":719}],924:[function(t,e,r){\"use strict\";var n=t(\"../../plots/template_attributes\").hovertemplateAttrs,a=t(\"../scattergeo/attributes\"),i=t(\"../../components/colorscale/attributes\"),o=t(\"../../plots/attributes\"),s=t(\"../../components/color/attributes\").defaultLine,l=t(\"../../lib/extend\").extendFlat,c=a.marker.line;e.exports=l({locations:{valType:\"data_array\",editType:\"calc\"},locationmode:a.locationmode,z:{valType:\"data_array\",editType:\"calc\"},text:l({},a.text,{}),hovertext:l({},a.hovertext,{}),marker:{line:{color:l({},c.color,{dflt:s}),width:l({},c.width,{dflt:1}),editType:\"calc\"},opacity:{valType:\"number\",arrayOk:!0,min:0,max:1,dflt:1,editType:\"style\"},editType:\"calc\"},selected:{marker:{opacity:a.selected.marker.opacity,editType:\"plot\"},editType:\"plot\"},unselected:{marker:{opacity:a.unselected.marker.opacity,editType:\"plot\"},editType:\"plot\"},hoverinfo:l({},o.hoverinfo,{editType:\"calc\",flags:[\"location\",\"z\",\"text\",\"name\"]}),hovertemplate:n()},i(\"\",{cLetter:\"z\",editTypeOverride:\"calc\"}))},{\"../../components/color/attributes\":593,\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plots/attributes\":764,\"../../plots/template_attributes\":843,\"../scattergeo/attributes\":1150}],925:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../constants/numerical\").BADNUM,i=t(\"../../components/colorscale/calc\"),o=t(\"../scatter/arrays_to_calcdata\"),s=t(\"../scatter/calc_selection\");function l(t){return t&&\"string\"==typeof t}e.exports=function(t,e){var r,c=e._length,u=new Array(c);r=e.geojson?function(t){return l(t)||n(t)}:l;for(var h=0;h<c;h++){var f=u[h]={},p=e.locations[h],d=e.z[h];r(p)&&n(d)?(f.loc=p,f.z=d):(f.loc=null,f.z=a),f.index=h}return o(u,e),i(t,e,{vals:e.z,containerStr:\"\",cLetter:\"z\"}),s(u,e),u}},{\"../../components/colorscale/calc\":602,\"../../constants/numerical\":695,\"../scatter/arrays_to_calcdata\":1110,\"../scatter/calc_selection\":1113,\"fast-isnumeric\":226}],926:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/colorscale/defaults\"),i=t(\"./attributes\");e.exports=function(t,e,r,o){function s(r,a){return n.coerce(t,e,i,r,a)}var l=s(\"locations\"),c=s(\"z\");l&&l.length&&n.isArrayOrTypedArray(c)&&c.length?(e._length=Math.min(l.length,c.length),s(\"locationmode\"),s(\"text\"),s(\"hovertext\"),s(\"hovertemplate\"),s(\"marker.line.width\")&&s(\"marker.line.color\"),s(\"marker.opacity\"),a(t,e,o,s,{prefix:\"\",cLetter:\"z\"}),n.coerceSelectionMarkerOpacity(e,s)):e.visible=!1}},{\"../../components/colorscale/defaults\":604,\"../../lib\":719,\"./attributes\":924}],927:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,a){t.location=e.location,t.z=e.z;var i=n[a];return i.fIn&&(t.properties=i.fIn.properties),t}},{}],928:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),a=t(\"./attributes\"),i=t(\"../../lib\").fillText;e.exports=function(t,e,r){var o,s,l,c,u=t.cd,h=u[0].trace,f=t.subplot;for(s=0;s<u.length;s++)if(c=!1,(o=u[s])._polygons){for(l=0;l<o._polygons.length;l++)o._polygons[l].contains([e,r])&&(c=!c),o._polygons[l].contains([e+360,r])&&(c=!c);if(c)break}if(c&&o)return t.x0=t.x1=t.xa.c2p(o.ct),t.y0=t.y1=t.ya.c2p(o.ct),t.index=o.index,t.location=o.loc,t.z=o.z,t.zLabel=n.tickText(f.mockAxis,f.mockAxis.c2l(o.z),\"hover\").text,t.hovertemplate=o.hovertemplate,function(t,e,r){if(e.hovertemplate)return;var n=r.hi||e.hoverinfo,o=String(r.loc),s=\"all\"===n?a.hoverinfo.flags:n.split(\"+\"),l=-1!==s.indexOf(\"name\"),c=-1!==s.indexOf(\"location\"),u=-1!==s.indexOf(\"z\"),h=-1!==s.indexOf(\"text\"),f=[];!l&&c?t.nameOverride=o:(l&&(t.nameOverride=e.name),c&&f.push(o));u&&f.push(t.zLabel);h&&i(r,e,f);t.extraText=f.join(\"<br>\")}(t,h,o,f.mockAxis),[t]}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"./attributes\":924}],929:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../heatmap/colorbar\"),calc:t(\"./calc\"),plot:t(\"./plot\").plot,style:t(\"./style\").style,styleOnSelect:t(\"./style\").styleOnSelect,hoverPoints:t(\"./hover\"),eventData:t(\"./event_data\"),selectPoints:t(\"./select\"),moduleType:\"trace\",name:\"choropleth\",basePlotModule:t(\"../../plots/geo\"),categories:[\"geo\",\"noOpacity\"],meta:{}}},{\"../../plots/geo\":797,\"../heatmap/colorbar\":1003,\"./attributes\":924,\"./calc\":925,\"./defaults\":926,\"./event_data\":927,\"./hover\":928,\"./plot\":930,\"./select\":931,\"./style\":932}],930:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../lib\"),i=t(\"../../lib/polygon\"),o=t(\"../../lib/topojson_utils\").getTopojsonFeatures,s=t(\"../../lib/geo_location_utils\").locationToFeature,l=t(\"./style\").style;function c(t,e){for(var r=t[0].trace,n=t.length,a=o(r,e),i=0;i<n;i++){var l=t[i],c=s(r.locationmode,l.loc,a);c?(l.geojson=c,l.ct=c.properties.ct,l._polygons=u(c)):l.geojson=null}}function u(t){var e,r,n,a,o=t.geometry,s=o.coordinates,l=t.id,c=[];function u(t){for(var e=0;e<t.length-1;e++)if(t[e][0]>0&&t[e+1][0]<0)return e;return null}switch(e=\"RUS\"===l||\"FJI\"===l?function(t){var e;if(null===u(t))e=t;else for(e=new Array(t.length),a=0;a<t.length;a++)e[a]=[t[a][0]<0?t[a][0]+360:t[a][0],t[a][1]];c.push(i.tester(e))}:\"ATA\"===l?function(t){var e=u(t);if(null===e)return c.push(i.tester(t));var r=new Array(t.length+1),n=0;for(a=0;a<t.length;a++)a>e?r[n++]=[t[a][0]+360,t[a][1]]:a===e?(r[n++]=t[a],r[n++]=[t[a][0],-90]):r[n++]=t[a];var o=i.tester(r);o.pts.pop(),c.push(o)}:function(t){c.push(i.tester(t))},o.type){case\"MultiPolygon\":for(r=0;r<s.length;r++)for(n=0;n<s[r].length;n++)e(s[r][n]);break;case\"Polygon\":for(r=0;r<s.length;r++)e(s[r])}return c}e.exports={plot:function(t,e,r){for(var i=0;i<r.length;i++)c(r[i],e.topojson);var o=e.layers.backplot.select(\".choroplethlayer\");a.makeTraceGroups(o,r,\"trace choropleth\").each(function(e){var r=n.select(this).selectAll(\"path.choroplethlocation\").data(a.identity);r.enter().append(\"path\").classed(\"choroplethlocation\",!0),r.exit().remove(),l(t,e)})},feature2polygons:u}},{\"../../lib\":719,\"../../lib/geo_location_utils\":713,\"../../lib/polygon\":731,\"../../lib/topojson_utils\":746,\"./style\":932,d3:164}],931:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r,n,a,i,o,s=t.cd,l=t.xaxis,c=t.yaxis,u=[];if(!1===e)for(r=0;r<s.length;r++)s[r].selected=0;else for(r=0;r<s.length;r++)(a=(n=s[r]).ct)&&(i=l.c2p(a),o=c.c2p(a),e.contains([i,o],null,r,t)?(u.push({pointNumber:r,lon:a[0],lat:a[1]}),n.selected=1):n.selected=0);return u}},{}],932:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/color\"),i=t(\"../../components/drawing\"),o=t(\"../../components/colorscale\");function s(t,e){var r=e[0].trace,s=e[0].node3.selectAll(\".choroplethlocation\"),l=r.marker||{},c=l.line||{},u=o.makeColorScaleFuncFromTrace(r);s.each(function(t){n.select(this).attr(\"fill\",u(t.z)).call(a.stroke,t.mlc||c.color).call(i.dashLine,\"\",t.mlw||c.width||0).style(\"opacity\",l.opacity)}),i.selectedPointStyle(s,r,t)}e.exports={style:function(t,e){e&&s(t,e)},styleOnSelect:function(t,e){var r=e[0].node3,n=e[0].trace;n.selectedpoints?i.selectedPointStyle(r.selectAll(\".choroplethlocation\"),n,t):s(t,e)}}},{\"../../components/color\":594,\"../../components/colorscale\":606,\"../../components/drawing\":615,d3:164}],933:[function(t,e,r){\"use strict\";var n=t(\"../choropleth/attributes\"),a=t(\"../../components/colorscale/attributes\"),i=t(\"../../plots/template_attributes\").hovertemplateAttrs,o=t(\"../../lib/extend\").extendFlat;e.exports=o({locations:{valType:\"data_array\",editType:\"calc\"},z:{valType:\"data_array\",editType:\"calc\"},geojson:{valType:\"any\",editType:\"calc\"},below:{valType:\"string\",editType:\"plot\"},text:n.text,hovertext:n.hovertext,marker:{line:{color:o({},n.marker.line.color,{editType:\"plot\"}),width:o({},n.marker.line.width,{editType:\"plot\"}),editType:\"calc\"},opacity:o({},n.marker.opacity,{editType:\"plot\"}),editType:\"calc\"},selected:{marker:{opacity:o({},n.selected.marker.opacity,{editType:\"plot\"}),editType:\"plot\"},editType:\"plot\"},unselected:{marker:{opacity:o({},n.unselected.marker.opacity,{editType:\"plot\"}),editType:\"plot\"},editType:\"plot\"},hoverinfo:n.hoverinfo,hovertemplate:i({},{keys:[\"properties\"]})},a(\"\",{cLetter:\"z\",editTypeOverride:\"calc\"}))},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plots/template_attributes\":843,\"../choropleth/attributes\":924}],934:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"@turf/area\"),i=t(\"@turf/centroid\"),o=t(\"../../lib\"),s=t(\"../../components/colorscale\"),l=t(\"../../components/drawing\"),c=t(\"../../lib/geojson_utils\").makeBlank,u=t(\"../choropleth/plot\").feature2polygons;function h(t){var e,r=t[0].trace,n=r._opts;if(r.selectedpoints){for(var a=l.makeSelectedPointStyleFns(r),i=0;i<t.length;i++){var s=t[i];s.fOut&&(s.fOut.properties.mo2=a.selectedOpacityFn(s))}e={type:\"identity\",property:\"mo2\"}}else e=o.isArrayOrTypedArray(r.marker.opacity)?{type:\"identity\",property:\"mo\"}:r.marker.opacity;return o.extendFlat(n.fill.paint,{\"fill-opacity\":e}),o.extendFlat(n.line.paint,{\"line-opacity\":e}),n}e.exports={convert:function(t){var e=t[0].trace,r=!0===e.visible&&0!==e._length,l={layout:{visibility:\"none\"},paint:{}},f={layout:{visibility:\"none\"},paint:{}},p=e._opts={fill:l,line:f,geojson:c()};if(!r)return p;var d=\"string\"==typeof e.geojson?(window.PlotlyGeoAssets||{})[e.geojson]:e.geojson;if(!o.isPlainObject(d))return o.error(\"Oops ... something when wrong when fetching \"+e.geojson),p;var g,v={},m=[];for(g=0;g<t.length;g++){var y=t[g];y.loc&&(v[y.loc]=y)}var x,b,_,w=s.makeColorScaleFuncFromTrace(e),k=e.marker,T=k.line||{};function A(t){var e=v[t.id];if(e){var r=t.geometry;if(\"Polygon\"===r.type||\"MultiPolygon\"===r.type){var n={fc:w(e.z)};x&&(n.mo=x(e)),b&&(n.mlc=b(e)),_&&(n.mlw=_(e));var s={type:\"Feature\",geometry:r,properties:n};e._polygons=u(s),e.ct=function(t){var e,r=t.geometry;if(\"MultiPolygon\"===r.type)for(var n=r.coordinates,o=0,s=0;s<n.length;s++){var l={type:\"Polygon\",coordinates:n[s]},c=a.default(l);c>o&&(o=c,e=l)}else e=r;return i.default(e).geometry.coordinates}(s),e.fIn=t,e.fOut=s,m.push(s)}else o.log([\"Location with id\",e.loc,\"does not have a valid GeoJSON geometry,\",\"choroplethmapbox traces only support *Polygon* and *MultiPolygon* geometries.\"].join(\" \"))}delete v[t.id]}switch(o.isArrayOrTypedArray(k.opacity)&&(x=function(t){var e=t.mo;return n(e)?+o.constrain(e,0,1):0}),o.isArrayOrTypedArray(T.color)&&(b=function(t){return t.mlc}),o.isArrayOrTypedArray(T.width)&&(_=function(t){return t.mlw}),d.type){case\"FeatureCollection\":var M=d.features;for(g=0;g<M.length;g++)A(M[g]);break;case\"Feature\":A(d);break;default:return o.warn([\"Invalid GeoJSON type\",(d.type||\"none\")+\",\",\"choroplethmapbox traces only support *FeatureCollection* and *Feature* types.\"].join(\" \")),p}for(var S in v)o.log(\"Location with id \"+S+\" does not have a matching feature\");var E=x?{type:\"identity\",property:\"mo\"}:k.opacity;return o.extendFlat(l.paint,{\"fill-color\":{type:\"identity\",property:\"fc\"},\"fill-opacity\":E}),o.extendFlat(f.paint,{\"line-color\":b?{type:\"identity\",property:\"mlc\"}:T.color,\"line-width\":_?{type:\"identity\",property:\"mlw\"}:T.width,\"line-opacity\":E}),l.layout.visibility=\"visible\",f.layout.visibility=\"visible\",p.geojson={type:\"FeatureCollection\",features:m},h(t),p},convertOnSelect:h}},{\"../../components/colorscale\":606,\"../../components/drawing\":615,\"../../lib\":719,\"../../lib/geojson_utils\":714,\"../choropleth/plot\":930,\"@turf/area\":56,\"@turf/centroid\":57,\"fast-isnumeric\":226}],935:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/colorscale/defaults\"),i=t(\"./attributes\");e.exports=function(t,e,r,o){function s(r,a){return n.coerce(t,e,i,r,a)}var l=s(\"locations\"),c=s(\"z\"),u=s(\"geojson\");n.isArrayOrTypedArray(l)&&l.length&&n.isArrayOrTypedArray(c)&&c.length&&(\"string\"==typeof u&&\"\"!==u||n.isPlainObject(u))?(e._length=Math.min(l.length,c.length),s(\"below\"),s(\"text\"),s(\"hovertext\"),s(\"hovertemplate\"),s(\"marker.line.width\")&&s(\"marker.line.color\"),s(\"marker.opacity\"),a(t,e,o,s,{prefix:\"\",cLetter:\"z\"}),n.coerceSelectionMarkerOpacity(e,s)):e.visible=!1}},{\"../../components/colorscale/defaults\":604,\"../../lib\":719,\"./attributes\":933}],936:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../heatmap/colorbar\"),calc:t(\"../choropleth/calc\"),plot:t(\"./plot\"),hoverPoints:t(\"../choropleth/hover\"),eventData:t(\"../choropleth/event_data\"),selectPoints:t(\"../choropleth/select\"),styleOnSelect:function(t,e){e&&e[0].trace._glTrace.updateOnSelect(e)},getBelow:function(t,e){for(var r=e.getMapLayers(),n=r.length-2;n>=0;n--){var a=r[n].id;if(\"string\"==typeof a&&0===a.indexOf(\"water\"))for(var i=n+1;i<r.length;i++)if(\"string\"==typeof(a=r[i].id)&&-1===a.indexOf(\"plotly-\"))return a}},moduleType:\"trace\",name:\"choroplethmapbox\",basePlotModule:t(\"../../plots/mapbox\"),categories:[\"mapbox\",\"gl\",\"noOpacity\"],meta:{hr_name:\"choropleth_mapbox\"}}},{\"../../plots/mapbox\":822,\"../choropleth/calc\":925,\"../choropleth/event_data\":927,\"../choropleth/hover\":928,\"../choropleth/select\":931,\"../heatmap/colorbar\":1003,\"./attributes\":933,\"./defaults\":935,\"./plot\":937}],937:[function(t,e,r){\"use strict\";var n=t(\"./convert\").convert,a=t(\"./convert\").convertOnSelect,i=t(\"../../plots/mapbox/constants\").traceLayerPrefix;function o(t,e){this.subplot=t,this.uid=e,this.sourceId=\"source-\"+e,this.layerList=[[\"fill\",i+e+\"-fill\"],[\"line\",i+e+\"-line\"]],this.below=null}var s=o.prototype;s.update=function(t){this._update(n(t))},s.updateOnSelect=function(t){this._update(a(t))},s._update=function(t){var e=this.subplot,r=this.layerList,n=e.belowLookup[\"trace-\"+this.uid];e.map.getSource(this.sourceId).setData(t.geojson),n!==this.below&&(this._removeLayers(),this._addLayers(t,n),this.below=n);for(var a=0;a<r.length;a++){var i=r[a],o=i[0],s=i[1],l=t[o];e.setOptions(s,\"setLayoutProperty\",l.layout),\"visible\"===l.layout.visibility&&e.setOptions(s,\"setPaintProperty\",l.paint)}},s._addLayers=function(t,e){for(var r=this.subplot,n=this.layerList,a=this.sourceId,i=0;i<n.length;i++){var o=n[i],s=o[0],l=t[s];r.addLayer({type:s,id:o[1],source:a,layout:l.layout,paint:l.paint},e)}},s._removeLayers=function(){for(var t=this.subplot.map,e=this.layerList,r=e.length-1;r>=0;r--)t.removeLayer(e[r][1])},s.dispose=function(){var t=this.subplot.map;this._removeLayers(),t.removeSource(this.sourceId)},e.exports=function(t,e){var r=e[0].trace,a=new o(t,r.uid),i=a.sourceId,s=n(e),l=a.below=t.belowLookup[\"trace-\"+r.uid];return t.map.addSource(i,{type:\"geojson\",data:s.geojson}),a._addLayers(s,l),e[0].trace._glTrace=a,a}},{\"../../plots/mapbox/constants\":820,\"./convert\":934}],938:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/attributes\"),a=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"../mesh3d/attributes\"),o=t(\"../../plots/attributes\"),s=t(\"../../lib/extend\").extendFlat,l={x:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},y:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},z:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},u:{valType:\"data_array\",editType:\"calc\"},v:{valType:\"data_array\",editType:\"calc\"},w:{valType:\"data_array\",editType:\"calc\"},sizemode:{valType:\"enumerated\",values:[\"scaled\",\"absolute\"],editType:\"calc\",dflt:\"scaled\"},sizeref:{valType:\"number\",editType:\"calc\",min:0},anchor:{valType:\"enumerated\",editType:\"calc\",values:[\"tip\",\"tail\",\"cm\",\"center\"],dflt:\"cm\"},text:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"calc\"},hovertext:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"calc\"},hovertemplate:a({editType:\"calc\"},{keys:[\"norm\"]})};s(l,n(\"\",{colorAttr:\"u/v/w norm\",showScaleDflt:!0,editTypeOverride:\"calc\"}));[\"opacity\",\"lightposition\",\"lighting\"].forEach(function(t){l[t]=i[t]}),l.hoverinfo=s({},o.hoverinfo,{editType:\"calc\",flags:[\"x\",\"y\",\"z\",\"u\",\"v\",\"w\",\"norm\",\"text\",\"name\"],dflt:\"x+y+z+norm+text+name\"}),l.transforms=void 0,e.exports=l},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plots/attributes\":764,\"../../plots/template_attributes\":843,\"../mesh3d/attributes\":1052}],939:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/calc\");e.exports=function(t,e){for(var r=e.u,a=e.v,i=e.w,o=Math.min(e.x.length,e.y.length,e.z.length,r.length,a.length,i.length),s=-1/0,l=1/0,c=0;c<o;c++){var u=r[c],h=a[c],f=i[c],p=Math.sqrt(u*u+h*h+f*f);s=Math.max(s,p),l=Math.min(l,p)}e._len=o,e._normMax=s,n(t,e,{vals:[l,s],containerStr:\"\",cLetter:\"c\"})}},{\"../../components/colorscale/calc\":602}],940:[function(t,e,r){\"use strict\";var n=t(\"gl-cone3d\"),a=t(\"gl-cone3d\").createConeMesh,i=t(\"../../lib\").simpleMap,o=t(\"../../lib/gl_format_color\").parseColorScale,s=t(\"../../components/colorscale\").extractOpts,l=t(\"../../plots/gl3d/zip3\");function c(t,e){this.scene=t,this.uid=e,this.mesh=null,this.data=null}var u=c.prototype;u.handlePick=function(t){if(t.object===this.mesh){var e=t.index=t.data.index,r=this.data.x[e],n=this.data.y[e],a=this.data.z[e],i=this.data.u[e],o=this.data.v[e],s=this.data.w[e];t.traceCoordinate=[r,n,a,i,o,s,Math.sqrt(i*i+o*o+s*s)];var l=this.data.hovertext||this.data.text;return Array.isArray(l)&&void 0!==l[e]?t.textLabel=l[e]:l&&(t.textLabel=l),!0}};var h={xaxis:0,yaxis:1,zaxis:2},f={tip:1,tail:0,cm:.25,center:.5},p={tip:1,tail:1,cm:.75,center:.5};function d(t,e){var r=t.fullSceneLayout,a=t.dataScale,c={};function u(t,e){var n=r[e],o=a[h[e]];return i(t,function(t){return n.d2l(t)*o})}c.vectors=l(u(e.u,\"xaxis\"),u(e.v,\"yaxis\"),u(e.w,\"zaxis\"),e._len),c.positions=l(u(e.x,\"xaxis\"),u(e.y,\"yaxis\"),u(e.z,\"zaxis\"),e._len);var d=s(e);c.colormap=o(e),c.vertexIntensityBounds=[d.min/e._normMax,d.max/e._normMax],c.coneOffset=f[e.anchor],\"scaled\"===e.sizemode?c.coneSize=e.sizeref||.5:c.coneSize=e.sizeref&&e._normMax?e.sizeref/e._normMax:.5;var g=n(c),v=e.lightposition;return g.lightPosition=[v.x,v.y,v.z],g.ambient=e.lighting.ambient,g.diffuse=e.lighting.diffuse,g.specular=e.lighting.specular,g.roughness=e.lighting.roughness,g.fresnel=e.lighting.fresnel,g.opacity=e.opacity,e._pad=p[e.anchor]*g.vectorScale*g.coneScale*e._normMax,g}u.update=function(t){this.data=t;var e=d(this.scene,t);this.mesh.update(e)},u.dispose=function(){this.scene.glplot.remove(this.mesh),this.mesh.dispose()},e.exports=function(t,e){var r=t.glplot.gl,n=d(t,e),i=a(r,n),o=new c(t,e.uid);return o.mesh=i,o.data=e,i._trace=o,t.glplot.add(i),o}},{\"../../components/colorscale\":606,\"../../lib\":719,\"../../lib/gl_format_color\":716,\"../../plots/gl3d/zip3\":818,\"gl-cone3d\":243}],941:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/colorscale/defaults\"),i=t(\"./attributes\");e.exports=function(t,e,r,o){function s(r,a){return n.coerce(t,e,i,r,a)}var l=s(\"u\"),c=s(\"v\"),u=s(\"w\"),h=s(\"x\"),f=s(\"y\"),p=s(\"z\");l&&l.length&&c&&c.length&&u&&u.length&&h&&h.length&&f&&f.length&&p&&p.length?(s(\"sizeref\"),s(\"sizemode\"),s(\"anchor\"),s(\"lighting.ambient\"),s(\"lighting.diffuse\"),s(\"lighting.specular\"),s(\"lighting.roughness\"),s(\"lighting.fresnel\"),s(\"lightposition.x\"),s(\"lightposition.y\"),s(\"lightposition.z\"),a(t,e,o,s,{prefix:\"\",cLetter:\"c\"}),s(\"text\"),s(\"hovertext\"),s(\"hovertemplate\"),e._length=null):e.visible=!1}},{\"../../components/colorscale/defaults\":604,\"../../lib\":719,\"./attributes\":938}],942:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"cone\",basePlotModule:t(\"../../plots/gl3d\"),categories:[\"gl3d\"],attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:{min:\"cmin\",max:\"cmax\"},calc:t(\"./calc\"),plot:t(\"./convert\"),eventData:function(t,e){return t.norm=e.traceCoordinate[6],t},meta:{}}},{\"../../plots/gl3d\":807,\"./attributes\":938,\"./calc\":939,\"./convert\":940,\"./defaults\":941}],943:[function(t,e,r){\"use strict\";var n=t(\"../heatmap/attributes\"),a=t(\"../scatter/attributes\"),i=t(\"../../components/colorscale/attributes\"),o=t(\"../../components/drawing/attributes\").dash,s=t(\"../../plots/font_attributes\"),l=t(\"../../lib/extend\").extendFlat,c=t(\"../../constants/filter_ops\"),u=c.COMPARISON_OPS2,h=c.INTERVAL_OPS,f=(t(\"../../constants/docs\").FORMAT_LINK,a.line);e.exports=l({z:n.z,x:n.x,x0:n.x0,dx:n.dx,y:n.y,y0:n.y0,dy:n.dy,text:n.text,hovertext:n.hovertext,transpose:n.transpose,xtype:n.xtype,ytype:n.ytype,zhoverformat:n.zhoverformat,hovertemplate:n.hovertemplate,connectgaps:n.connectgaps,fillcolor:{valType:\"color\",editType:\"calc\"},autocontour:{valType:\"boolean\",dflt:!0,editType:\"calc\",impliedEdits:{\"contours.start\":void 0,\"contours.end\":void 0,\"contours.size\":void 0}},ncontours:{valType:\"integer\",dflt:15,min:1,editType:\"calc\"},contours:{type:{valType:\"enumerated\",values:[\"levels\",\"constraint\"],dflt:\"levels\",editType:\"calc\"},start:{valType:\"number\",dflt:null,editType:\"plot\",impliedEdits:{\"^autocontour\":!1}},end:{valType:\"number\",dflt:null,editType:\"plot\",impliedEdits:{\"^autocontour\":!1}},size:{valType:\"number\",dflt:null,min:0,editType:\"plot\",impliedEdits:{\"^autocontour\":!1}},coloring:{valType:\"enumerated\",values:[\"fill\",\"heatmap\",\"lines\",\"none\"],dflt:\"fill\",editType:\"calc\"},showlines:{valType:\"boolean\",dflt:!0,editType:\"plot\"},showlabels:{valType:\"boolean\",dflt:!1,editType:\"plot\"},labelfont:s({editType:\"plot\",colorEditType:\"style\"}),labelformat:{valType:\"string\",dflt:\"\",editType:\"plot\"},operation:{valType:\"enumerated\",values:[].concat(u).concat(h),dflt:\"=\",editType:\"calc\"},value:{valType:\"any\",dflt:0,editType:\"calc\"},editType:\"calc\",impliedEdits:{autocontour:!1}},line:{color:l({},f.color,{editType:\"style+colorbars\"}),width:{valType:\"number\",min:0,editType:\"style+colorbars\"},dash:o,smoothing:l({},f.smoothing,{}),editType:\"plot\"}},i(\"\",{cLetter:\"z\",autoColorDflt:!1,editTypeOverride:\"calc\"}))},{\"../../components/colorscale/attributes\":601,\"../../components/drawing/attributes\":614,\"../../constants/docs\":690,\"../../constants/filter_ops\":691,\"../../lib/extend\":710,\"../../plots/font_attributes\":793,\"../heatmap/attributes\":1e3,\"../scatter/attributes\":1111}],944:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale\"),a=t(\"../heatmap/calc\"),i=t(\"./set_contours\"),o=t(\"./end_plus\");e.exports=function(t,e){var r=a(t,e),s=r[0].z;i(e,s);var l,c=e.contours,u=n.extractOpts(e);if(\"heatmap\"===c.coloring&&u.auto&&!1===e.autocontour){var h=c.start,f=o(c),p=c.size||1,d=Math.floor((f-h)/p)+1;isFinite(p)||(p=1,d=1);var g=h-p/2;l=[g,g+d*p]}else l=s;return n.calc(t,e,{vals:l,cLetter:\"z\"}),r}},{\"../../components/colorscale\":606,\"../heatmap/calc\":1001,\"./end_plus\":954,\"./set_contours\":962}],945:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r,n=t[0],a=n.z;switch(e.type){case\"levels\":var i=Math.min(a[0][0],a[0][1]);for(r=0;r<t.length;r++){var o=t[r];o.prefixBoundary=!o.edgepaths.length&&(i>o.level||o.starts.length&&i===o.level)}break;case\"constraint\":if(n.prefixBoundary=!1,n.edgepaths.length)return;var s=n.x.length,l=n.y.length,c=-1/0,u=1/0;for(r=0;r<l;r++)u=Math.min(u,a[r][0]),u=Math.min(u,a[r][s-1]),c=Math.max(c,a[r][0]),c=Math.max(c,a[r][s-1]);for(r=1;r<s-1;r++)u=Math.min(u,a[0][r]),u=Math.min(u,a[l-1][r]),c=Math.max(c,a[0][r]),c=Math.max(c,a[l-1][r]);var h,f,p=e.value;switch(e._operation){case\">\":p>c&&(n.prefixBoundary=!0);break;case\"<\":(p<u||n.starts.length&&p===u)&&(n.prefixBoundary=!0);break;case\"[]\":h=Math.min(p[0],p[1]),((f=Math.max(p[0],p[1]))<u||h>c||n.starts.length&&f===u)&&(n.prefixBoundary=!0);break;case\"][\":h=Math.min(p[0],p[1]),f=Math.max(p[0],p[1]),h<u&&f>c&&(n.prefixBoundary=!0)}}}},{}],946:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale\").extractOpts,a=t(\"./make_color_map\"),i=t(\"./end_plus\");e.exports={min:\"zmin\",max:\"zmax\",calc:function(t,e,r){var o=e.contours,s=e.line,l=o.size||1,c=o.coloring,u=a(e,{isColorbar:!0});if(\"heatmap\"===c){var h=n(e);r._fillgradient=e.colorscale,r._zrange=[h.min,h.max]}else\"fill\"===c&&(r._fillcolor=u);r._line={color:\"lines\"===c?u:s.color,width:!1!==o.showlines?s.width:0,dash:s.dash},r._levels={start:o.start,end:i(o),size:l}}}},{\"../../components/colorscale\":606,\"./end_plus\":954,\"./make_color_map\":959}],947:[function(t,e,r){\"use strict\";e.exports={BOTTOMSTART:[1,9,13,104,713],TOPSTART:[4,6,7,104,713],LEFTSTART:[8,12,14,208,1114],RIGHTSTART:[2,3,11,208,1114],NEWDELTA:[null,[-1,0],[0,-1],[-1,0],[1,0],null,[0,-1],[-1,0],[0,1],[0,1],null,[0,1],[1,0],[1,0],[0,-1]],CHOOSESADDLE:{104:[4,1],208:[2,8],713:[7,13],1114:[11,14]},SADDLEREMAINDER:{1:4,2:8,4:1,7:13,8:2,11:14,13:7,14:11},LABELDISTANCE:2,LABELINCREASE:10,LABELMIN:3,LABELMAX:10,LABELOPTIMIZER:{EDGECOST:1,ANGLECOST:1,NEIGHBORCOST:5,SAMELEVELFACTOR:10,SAMELEVELDISTANCE:5,MAXCOST:100,INITIALSEARCHPOINTS:10,ITERATIONS:5}}},{}],948:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"./label_defaults\"),i=t(\"../../components/color\"),o=i.addOpacity,s=i.opacity,l=t(\"../../constants/filter_ops\"),c=l.CONSTRAINT_REDUCTION,u=l.COMPARISON_OPS2;e.exports=function(t,e,r,i,l,h){var f,p,d,g=e.contours,v=r(\"contours.operation\");(g._operation=c[v],function(t,e){var r;-1===u.indexOf(e.operation)?(t(\"contours.value\",[0,1]),Array.isArray(e.value)?e.value.length>2?e.value=e.value.slice(2):0===e.length?e.value=[0,1]:e.length<2?(r=parseFloat(e.value[0]),e.value=[r,r+1]):e.value=[parseFloat(e.value[0]),parseFloat(e.value[1])]:n(e.value)&&(r=parseFloat(e.value),e.value=[r,r+1])):(t(\"contours.value\",0),n(e.value)||(Array.isArray(e.value)?e.value=parseFloat(e.value[0]):e.value=0))}(r,g),\"=\"===v?f=g.showlines=!0:(f=r(\"contours.showlines\"),d=r(\"fillcolor\",o((t.line||{}).color||l,.5))),f)&&(p=r(\"line.color\",d&&s(d)?o(e.fillcolor,1):l),r(\"line.width\",2),r(\"line.dash\"));r(\"line.smoothing\"),a(r,i,p,h)}},{\"../../components/color\":594,\"../../constants/filter_ops\":691,\"./label_defaults\":958,\"fast-isnumeric\":226}],949:[function(t,e,r){\"use strict\";var n=t(\"../../constants/filter_ops\"),a=t(\"fast-isnumeric\");function i(t,e){var r,i=Array.isArray(e);function o(t){return a(t)?+t:null}return-1!==n.COMPARISON_OPS2.indexOf(t)?r=o(i?e[0]:e):-1!==n.INTERVAL_OPS.indexOf(t)?r=i?[o(e[0]),o(e[1])]:[o(e),o(e)]:-1!==n.SET_OPS.indexOf(t)&&(r=i?e.map(o):[o(e)]),r}function o(t){return function(e){e=i(t,e);var r=Math.min(e[0],e[1]),n=Math.max(e[0],e[1]);return{start:r,end:n,size:n-r}}}function s(t){return function(e){return{start:e=i(t,e),end:1/0,size:1/0}}}e.exports={\"[]\":o(\"[]\"),\"][\":o(\"][\"),\">\":s(\">\"),\"<\":s(\"<\"),\"=\":s(\"=\")}},{\"../../constants/filter_ops\":691,\"fast-isnumeric\":226}],950:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n){var a=n(\"contours.start\"),i=n(\"contours.end\"),o=!1===a||!1===i,s=r(\"contours.size\");!(o?e.autocontour=!0:r(\"autocontour\",!1))&&s||r(\"ncontours\")}},{}],951:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");function a(t){return n.extendFlat({},t,{edgepaths:n.extendDeep([],t.edgepaths),paths:n.extendDeep([],t.paths),starts:n.extendDeep([],t.starts)})}e.exports=function(t,e){var r,i,o,s=function(t){return t.reverse()},l=function(t){return t};switch(e){case\"=\":case\"<\":return t;case\">\":for(1!==t.length&&n.warn(\"Contour data invalid for the specified inequality operation.\"),i=t[0],r=0;r<i.edgepaths.length;r++)i.edgepaths[r]=s(i.edgepaths[r]);for(r=0;r<i.paths.length;r++)i.paths[r]=s(i.paths[r]);for(r=0;r<i.starts.length;r++)i.starts[r]=s(i.starts[r]);return t;case\"][\":var c=s;s=l,l=c;case\"[]\":for(2!==t.length&&n.warn(\"Contour data invalid for the specified inequality range operation.\"),i=a(t[0]),o=a(t[1]),r=0;r<i.edgepaths.length;r++)i.edgepaths[r]=s(i.edgepaths[r]);for(r=0;r<i.paths.length;r++)i.paths[r]=s(i.paths[r]);for(r=0;r<i.starts.length;r++)i.starts[r]=s(i.starts[r]);for(;o.edgepaths.length;)i.edgepaths.push(l(o.edgepaths.shift()));for(;o.paths.length;)i.paths.push(l(o.paths.shift()));for(;o.starts.length;)i.starts.push(l(o.starts.shift()));return[i]}}},{\"../../lib\":719}],952:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../heatmap/xyz_defaults\"),i=t(\"./constraint_defaults\"),o=t(\"./contours_defaults\"),s=t(\"./style_defaults\"),l=t(\"./attributes\");e.exports=function(t,e,r,c){function u(r,a){return n.coerce(t,e,l,r,a)}if(a(t,e,u,c)){u(\"text\"),u(\"hovertext\"),u(\"hovertemplate\");var h=\"constraint\"===u(\"contours.type\");u(\"connectgaps\",n.isArray1D(e.z)),h?i(t,e,u,c,r):(o(t,e,u,function(r){return n.coerce2(t,e,l,r)}),s(t,e,u,c))}else e.visible=!1}},{\"../../lib\":719,\"../heatmap/xyz_defaults\":1014,\"./attributes\":943,\"./constraint_defaults\":948,\"./contours_defaults\":950,\"./style_defaults\":964}],953:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./constraint_mapping\"),i=t(\"./end_plus\");e.exports=function(t,e,r){for(var o=\"constraint\"===t.type?a[t._operation](t.value):t,s=o.size,l=[],c=i(o),u=r.trace._carpetTrace,h=u?{xaxis:u.aaxis,yaxis:u.baxis,x:r.a,y:r.b}:{xaxis:e.xaxis,yaxis:e.yaxis,x:r.x,y:r.y},f=o.start;f<c;f+=s)if(l.push(n.extendFlat({level:f,crossings:{},starts:[],edgepaths:[],paths:[],z:r.z,smoothing:r.trace.line.smoothing},h)),l.length>1e3){n.warn(\"Too many contours, clipping at 1000\",t);break}return l}},{\"../../lib\":719,\"./constraint_mapping\":949,\"./end_plus\":954}],954:[function(t,e,r){\"use strict\";e.exports=function(t){return t.end+t.size/1e6}},{}],955:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./constants\");function i(t,e,r,n){return Math.abs(t[0]-e[0])<r&&Math.abs(t[1]-e[1])<n}function o(t,e,r,o,l){var c,u=e.join(\",\"),h=t.crossings[u],f=function(t,e,r){var n=0,i=0;t>20&&e?208===t||1114===t?n=0===r[0]?1:-1:i=0===r[1]?1:-1:-1!==a.BOTTOMSTART.indexOf(t)?i=1:-1!==a.LEFTSTART.indexOf(t)?n=1:-1!==a.TOPSTART.indexOf(t)?i=-1:n=-1;return[n,i]}(h,r,e),p=[s(t,e,[-f[0],-f[1]])],d=t.z.length,g=t.z[0].length,v=e.slice(),m=f.slice();for(c=0;c<1e4;c++){if(h>20?(h=a.CHOOSESADDLE[h][(f[0]||f[1])<0?0:1],t.crossings[u]=a.SADDLEREMAINDER[h]):delete t.crossings[u],!(f=a.NEWDELTA[h])){n.log(\"Found bad marching index:\",h,e,t.level);break}p.push(s(t,e,f)),e[0]+=f[0],e[1]+=f[1],u=e.join(\",\"),i(p[p.length-1],p[p.length-2],o,l)&&p.pop();var y=f[0]&&(e[0]<0||e[0]>g-2)||f[1]&&(e[1]<0||e[1]>d-2);if(e[0]===v[0]&&e[1]===v[1]&&f[0]===m[0]&&f[1]===m[1]||r&&y)break;h=t.crossings[u]}1e4===c&&n.log(\"Infinite loop in contour?\");var x,b,_,w,k,T,A,M,S,E,C,L,P,O,I,z=i(p[0],p[p.length-1],o,l),D=0,R=.2*t.smoothing,F=[],B=0;for(c=1;c<p.length;c++)L=p[c],P=p[c-1],void 0,void 0,O=L[2]-P[2],I=L[3]-P[3],D+=A=Math.sqrt(O*O+I*I),F.push(A);var N=D/F.length*R;function j(t){return p[t%p.length]}for(c=p.length-2;c>=B;c--)if((x=F[c])<N){for(_=0,b=c-1;b>=B&&x+F[b]<N;b--)x+=F[b];if(z&&c===p.length-2)for(_=0;_<b&&x+F[_]<N;_++)x+=F[_];k=c-b+_+1,T=Math.floor((c+b+_+2)/2),w=z||c!==p.length-2?z||-1!==b?k%2?j(T):[(j(T)[0]+j(T+1)[0])/2,(j(T)[1]+j(T+1)[1])/2]:p[0]:p[p.length-1],p.splice(b+1,c-b+1,w),c=b+1,_&&(B=_),z&&(c===p.length-2?p[_]=p[p.length-1]:0===c&&(p[p.length-1]=p[0]))}for(p.splice(0,B),c=0;c<p.length;c++)p[c].length=2;if(!(p.length<2))if(z)p.pop(),t.paths.push(p);else{r||n.log(\"Unclosed interior contour?\",t.level,v.join(\",\"),p.join(\"L\"));var V=!1;for(M=0;M<t.edgepaths.length;M++)if(E=t.edgepaths[M],!V&&i(E[0],p[p.length-1],o,l)){p.pop(),V=!0;var U=!1;for(S=0;S<t.edgepaths.length;S++)if(i((C=t.edgepaths[S])[C.length-1],p[0],o,l)){U=!0,p.shift(),t.edgepaths.splice(M,1),S===M?t.paths.push(p.concat(C)):(S>M&&S--,t.edgepaths[S]=C.concat(p,E));break}U||(t.edgepaths[M]=p.concat(E))}for(M=0;M<t.edgepaths.length&&!V;M++)i((E=t.edgepaths[M])[E.length-1],p[0],o,l)&&(p.shift(),t.edgepaths[M]=E.concat(p),V=!0);V||t.edgepaths.push(p)}}function s(t,e,r){var n=e[0]+Math.max(r[0],0),a=e[1]+Math.max(r[1],0),i=t.z[a][n],o=t.xaxis,s=t.yaxis;if(r[1]){var l=(t.level-i)/(t.z[a][n+1]-i);return[o.c2p((1-l)*t.x[n]+l*t.x[n+1],!0),s.c2p(t.y[a],!0),n+l,a]}var c=(t.level-i)/(t.z[a+1][n]-i);return[o.c2p(t.x[n],!0),s.c2p((1-c)*t.y[a]+c*t.y[a+1],!0),n,a+c]}e.exports=function(t,e,r){var a,i,s,l;for(e=e||.01,r=r||.01,i=0;i<t.length;i++){for(s=t[i],l=0;l<s.starts.length;l++)o(s,s.starts[l],\"edge\",e,r);for(a=0;Object.keys(s.crossings).length&&a<1e4;)a++,o(s,Object.keys(s.crossings)[0].split(\",\").map(Number),void 0,e,r);1e4===a&&n.log(\"Infinite loop in contour?\")}}},{\"../../lib\":719,\"./constants\":947}],956:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\"),a=t(\"../heatmap/hover\");e.exports=function(t,e,r,i,o){var s=a(t,e,r,i,o,!0);return s&&s.forEach(function(t){var e=t.trace;\"constraint\"===e.contours.type&&(e.fillcolor&&n.opacity(e.fillcolor)?t.color=n.addOpacity(e.fillcolor,1):e.contours.showlines&&n.opacity(e.line.color)&&(t.color=n.addOpacity(e.line.color,1)))}),s}},{\"../../components/color\":594,\"../heatmap/hover\":1007}],957:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),plot:t(\"./plot\").plot,style:t(\"./style\"),colorbar:t(\"./colorbar\"),hoverPoints:t(\"./hover\"),moduleType:\"trace\",name:\"contour\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"2dMap\",\"contour\",\"showLegend\"],meta:{}}},{\"../../plots/cartesian\":778,\"./attributes\":943,\"./calc\":944,\"./colorbar\":946,\"./defaults\":952,\"./hover\":956,\"./plot\":961,\"./style\":963}],958:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e,r,a){if(a||(a={}),t(\"contours.showlabels\")){var i=e.font;n.coerceFont(t,\"contours.labelfont\",{family:i.family,size:i.size,color:r}),t(\"contours.labelformat\")}!1!==a.hasHover&&t(\"zhoverformat\")}},{\"../../lib\":719}],959:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/colorscale\"),i=t(\"./end_plus\");e.exports=function(t){var e=t.contours,r=e.start,o=i(e),s=e.size||1,l=Math.floor((o-r)/s)+1,c=\"lines\"===e.coloring?0:1,u=a.extractOpts(t);isFinite(s)||(s=1,l=1);var h,f,p=u.reversescale?a.flipScale(u.colorscale):u.colorscale,d=p.length,g=new Array(d),v=new Array(d);if(\"heatmap\"===e.coloring){var m=u.min,y=u.max;for(f=0;f<d;f++)h=p[f],g[f]=h[0]*(y-m)+m,v[f]=h[1];var x=n.extent([m,y,e.start,e.start+s*(l-1)]),b=x[m<y?0:1],_=x[m<y?1:0];b!==m&&(g.splice(0,0,b),v.splice(0,0,v[0])),_!==y&&(g.push(_),v.push(v[v.length-1]))}else for(f=0;f<d;f++)h=p[f],g[f]=(h[0]*(l+c-1)-c/2)*s+r,v[f]=h[1];return a.makeColorScaleFunc({domain:g,range:v},{noNumericCheck:!0})}},{\"../../components/colorscale\":606,\"./end_plus\":954,d3:164}],960:[function(t,e,r){\"use strict\";var n=t(\"./constants\");function a(t,e){var r=(e[0][0]>t?0:1)+(e[0][1]>t?0:2)+(e[1][1]>t?0:4)+(e[1][0]>t?0:8);return 5===r||10===r?t>(e[0][0]+e[0][1]+e[1][0]+e[1][1])/4?5===r?713:1114:5===r?104:208:15===r?0:r}e.exports=function(t){var e,r,i,o,s,l,c,u,h,f=t[0].z,p=f.length,d=f[0].length,g=2===p||2===d;for(r=0;r<p-1;r++)for(o=[],0===r&&(o=o.concat(n.BOTTOMSTART)),r===p-2&&(o=o.concat(n.TOPSTART)),e=0;e<d-1;e++)for(i=o.slice(),0===e&&(i=i.concat(n.LEFTSTART)),e===d-2&&(i=i.concat(n.RIGHTSTART)),s=e+\",\"+r,l=[[f[r][e],f[r][e+1]],[f[r+1][e],f[r+1][e+1]]],h=0;h<t.length;h++)(c=a((u=t[h]).level,l))&&(u.crossings[s]=c,-1!==i.indexOf(c)&&(u.starts.push([e,r]),g&&-1!==i.indexOf(c,i.indexOf(c)+1)&&u.starts.push([e,r])))}},{\"./constants\":947}],961:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../lib\"),i=t(\"../../components/drawing\"),o=t(\"../../components/colorscale\"),s=t(\"../../lib/svg_text_utils\"),l=t(\"../../plots/cartesian/axes\"),c=t(\"../../plots/cartesian/set_convert\"),u=t(\"../heatmap/plot\"),h=t(\"./make_crossings\"),f=t(\"./find_all_paths\"),p=t(\"./empty_pathinfo\"),d=t(\"./convert_to_constraints\"),g=t(\"./close_boundaries\"),v=t(\"./constants\"),m=v.LABELOPTIMIZER;function y(t,e){var r,n,o,s,l,c,u,h=\"\",f=0,p=t.edgepaths.map(function(t,e){return e}),d=!0;function g(t){return Math.abs(t[1]-e[2][1])<.01}function v(t){return Math.abs(t[0]-e[0][0])<.01}function m(t){return Math.abs(t[0]-e[2][0])<.01}for(;p.length;){for(c=i.smoothopen(t.edgepaths[f],t.smoothing),h+=d?c:c.replace(/^M/,\"L\"),p.splice(p.indexOf(f),1),r=t.edgepaths[f][t.edgepaths[f].length-1],s=-1,o=0;o<4;o++){if(!r){a.log(\"Missing end?\",f,t);break}for(u=r,Math.abs(u[1]-e[0][1])<.01&&!m(r)?n=e[1]:v(r)?n=e[0]:g(r)?n=e[3]:m(r)&&(n=e[2]),l=0;l<t.edgepaths.length;l++){var y=t.edgepaths[l][0];Math.abs(r[0]-n[0])<.01?Math.abs(r[0]-y[0])<.01&&(y[1]-r[1])*(n[1]-y[1])>=0&&(n=y,s=l):Math.abs(r[1]-n[1])<.01?Math.abs(r[1]-y[1])<.01&&(y[0]-r[0])*(n[0]-y[0])>=0&&(n=y,s=l):a.log(\"endpt to newendpt is not vert. or horz.\",r,n,y)}if(r=n,s>=0)break;h+=\"L\"+n}if(s===t.edgepaths.length){a.log(\"unclosed perimeter path\");break}f=s,(d=-1===p.indexOf(f))&&(f=p[0],h+=\"Z\")}for(f=0;f<t.paths.length;f++)h+=i.smoothclosed(t.paths[f],t.smoothing);return h}function x(t,e,r,n){var i=e.width/2,o=e.height/2,s=t.x,l=t.y,c=t.theta,u=Math.cos(c)*i,h=Math.sin(c)*i,f=(s>n.center?n.right-s:s-n.left)/(u+Math.abs(Math.sin(c)*o)),p=(l>n.middle?n.bottom-l:l-n.top)/(Math.abs(h)+Math.cos(c)*o);if(f<1||p<1)return 1/0;var d=m.EDGECOST*(1/(f-1)+1/(p-1));d+=m.ANGLECOST*c*c;for(var g=s-u,v=l-h,y=s+u,x=l+h,b=0;b<r.length;b++){var _=r[b],w=Math.cos(_.theta)*_.width/2,k=Math.sin(_.theta)*_.width/2,T=2*a.segmentDistance(g,v,y,x,_.x-w,_.y-k,_.x+w,_.y+k)/(e.height+_.height),A=_.level===e.level,M=A?m.SAMELEVELDISTANCE:1;if(T<=M)return 1/0;d+=m.NEIGHBORCOST*(A?m.SAMELEVELFACTOR:1)/(T-M)}return d}r.plot=function(t,e,o,s){var l=e.xaxis,c=e.yaxis;a.makeTraceGroups(s,o,\"contour\").each(function(o){var s=n.select(this),m=o[0],x=m.trace,b=m.x,_=m.y,w=x.contours,k=p(w,e,m),T=a.ensureSingle(s,\"g\",\"heatmapcoloring\"),A=[];\"heatmap\"===w.coloring&&(A=[o]),u(t,e,A,T),h(k),f(k);var M=l.c2p(b[0],!0),S=l.c2p(b[b.length-1],!0),E=c.c2p(_[0],!0),C=c.c2p(_[_.length-1],!0),L=[[M,C],[S,C],[S,E],[M,E]],P=k;\"constraint\"===w.type&&(P=d(k,w._operation)),function(t,e,r){var n=a.ensureSingle(t,\"g\",\"contourbg\").selectAll(\"path\").data(\"fill\"===r.coloring?[0]:[]);n.enter().append(\"path\"),n.exit().remove(),n.attr(\"d\",\"M\"+e.join(\"L\")+\"Z\").style(\"stroke\",\"none\")}(s,L,w),function(t,e,r,i){var o=\"fill\"===i.coloring||\"constraint\"===i.type&&\"=\"!==i._operation,s=\"M\"+r.join(\"L\")+\"Z\";o&&g(e,i);var l=a.ensureSingle(t,\"g\",\"contourfill\").selectAll(\"path\").data(o?e:[]);l.enter().append(\"path\"),l.exit().remove(),l.each(function(t){var e=(t.prefixBoundary?s:\"\")+y(t,r);e?n.select(this).attr(\"d\",e).style(\"stroke\",\"none\"):n.select(this).remove()})}(s,P,L,w),function(t,e,o,s,l){var c=a.ensureSingle(t,\"g\",\"contourlines\"),u=!1!==l.showlines,h=l.showlabels,f=u&&h,p=r.createLines(c,u||h,e),d=r.createLineClip(c,f,o,s.trace.uid),g=t.selectAll(\"g.contourlabels\").data(h?[0]:[]);if(g.exit().remove(),g.enter().append(\"g\").classed(\"contourlabels\",!0),h){var m=[],y=[];a.clearLocationCache();var x=r.labelFormatter(o,s),b=i.tester.append(\"text\").attr(\"data-notex\",1).call(i.font,l.labelfont),_=e[0].xaxis,w=e[0].yaxis,k=_._length,T=w._length,A=_.range,M=w.range,S=a.aggNums(Math.min,null,s.x),E=a.aggNums(Math.max,null,s.x),C=a.aggNums(Math.min,null,s.y),L=a.aggNums(Math.max,null,s.y),P=Math.max(_.c2p(S,!0),0),O=Math.min(_.c2p(E,!0),k),I=Math.max(w.c2p(L,!0),0),z=Math.min(w.c2p(C,!0),T),D={};A[0]<A[1]?(D.left=P,D.right=O):(D.left=O,D.right=P),M[0]<M[1]?(D.top=I,D.bottom=z):(D.top=z,D.bottom=I),D.middle=(D.top+D.bottom)/2,D.center=(D.left+D.right)/2,m.push([[D.left,D.top],[D.right,D.top],[D.right,D.bottom],[D.left,D.bottom]]);var R=Math.sqrt(k*k+T*T),F=v.LABELDISTANCE*R/Math.max(1,e.length/v.LABELINCREASE);p.each(function(t){var e=r.calcTextOpts(t.level,x,b,o);n.select(this).selectAll(\"path\").each(function(){var t=a.getVisibleSegment(this,D,e.height/2);if(t&&!(t.len<(e.width+e.height)*v.LABELMIN))for(var n=Math.min(Math.ceil(t.len/F),v.LABELMAX),i=0;i<n;i++){var o=r.findBestTextLocation(this,t,e,y,D);if(!o)break;r.addLabelData(o,e,y,m)}})}),b.remove(),r.drawLabels(g,y,o,d,f?m:null)}h&&!u&&p.remove()}(s,k,t,m,w),function(t,e,r,n,o){var s=n.trace,l=r._fullLayout._clips,c=\"clip\"+s.uid,u=l.selectAll(\"#\"+c).data(s.connectgaps?[]:[0]);if(u.enter().append(\"clipPath\").classed(\"contourclip\",!0).attr(\"id\",c),u.exit().remove(),!1===s.connectgaps){var p={level:.9,crossings:{},starts:[],edgepaths:[],paths:[],xaxis:e.xaxis,yaxis:e.yaxis,x:n.x,y:n.y,z:function(t){var e,r,n=t.trace._emptypoints,a=[],i=t.z.length,o=t.z[0].length,s=[];for(e=0;e<o;e++)s.push(1);for(e=0;e<i;e++)a.push(s.slice());for(e=0;e<n.length;e++)r=n[e],a[r[0]][r[1]]=0;return t.zmask=a,a}(n),smoothing:0};h([p]),f([p]),g([p],{type:\"levels\"});var d=a.ensureSingle(u,\"path\",\"\");d.attr(\"d\",(p.prefixBoundary?\"M\"+o.join(\"L\")+\"Z\":\"\")+y(p,o))}else c=null;i.setClipUrl(t,c,r)}(s,e,t,m,L)})},r.createLines=function(t,e,r){var n=r[0].smoothing,a=t.selectAll(\"g.contourlevel\").data(e?r:[]);if(a.exit().remove(),a.enter().append(\"g\").classed(\"contourlevel\",!0),e){var o=a.selectAll(\"path.openline\").data(function(t){return t.pedgepaths||t.edgepaths});o.exit().remove(),o.enter().append(\"path\").classed(\"openline\",!0),o.attr(\"d\",function(t){return i.smoothopen(t,n)}).style(\"stroke-miterlimit\",1).style(\"vector-effect\",\"non-scaling-stroke\");var s=a.selectAll(\"path.closedline\").data(function(t){return t.ppaths||t.paths});s.exit().remove(),s.enter().append(\"path\").classed(\"closedline\",!0),s.attr(\"d\",function(t){return i.smoothclosed(t,n)}).style(\"stroke-miterlimit\",1).style(\"vector-effect\",\"non-scaling-stroke\")}return a},r.createLineClip=function(t,e,r,n){var a=e?\"clipline\"+n:null,o=r._fullLayout._clips.selectAll(\"#\"+a).data(e?[0]:[]);return o.exit().remove(),o.enter().append(\"clipPath\").classed(\"contourlineclip\",!0).attr(\"id\",a),i.setClipUrl(t,a,r),o},r.labelFormatter=function(t,e){var r=t._fullLayout,n=e.trace,a=n.contours;if(a.labelformat)return r._d3locale.numberFormat(a.labelformat);var i,s=o.extractOpts(n);if(s&&s.colorbar&&s.colorbar._axis)i=s.colorbar._axis;else{if(i={type:\"linear\",_id:\"ycontour\",showexponent:\"all\",exponentformat:\"B\"},\"constraint\"===a.type){var u=a.value;Array.isArray(u)?i.range=[u[0],u[u.length-1]]:i.range=[u,u]}else i.range=[a.start,a.end],i.nticks=(a.end-a.start)/a.size;i.range[0]===i.range[1]&&(i.range[1]+=i.range[0]||1),i.nticks||(i.nticks=1e3),c(i,r),l.prepTicks(i),i._tmin=null,i._tmax=null}return function(t){return l.tickText(i,t).text}},r.calcTextOpts=function(t,e,r,n){var a=e(t);r.text(a).call(s.convertToTspans,n);var o=i.bBox(r.node(),!0);return{text:a,width:o.width,height:o.height,level:t,dy:(o.top+o.bottom)/2}},r.findBestTextLocation=function(t,e,r,n,i){var o,s,l,c,u,h=r.width;e.isClosed?(s=e.len/m.INITIALSEARCHPOINTS,o=e.min+s/2,l=e.max):(s=(e.len-h)/(m.INITIALSEARCHPOINTS+1),o=e.min+s+h/2,l=e.max-(s+h)/2);for(var f=1/0,p=0;p<m.ITERATIONS;p++){for(var d=o;d<l;d+=s){var g=a.getTextLocation(t,e.total,d,h),v=x(g,r,n,i);v<f&&(f=v,u=g,c=d)}if(f>2*m.MAXCOST)break;p&&(s/=2),l=(o=c-s/2)+1.5*s}if(f<=m.MAXCOST)return u},r.addLabelData=function(t,e,r,n){var a=e.width/2,i=e.height/2,o=t.x,s=t.y,l=t.theta,c=Math.sin(l),u=Math.cos(l),h=a*u,f=i*c,p=a*c,d=-i*u,g=[[o-h-f,s-p-d],[o+h-f,s+p-d],[o+h+f,s+p+d],[o-h+f,s-p+d]];r.push({text:e.text,x:o,y:s,dy:e.dy,theta:l,level:e.level,width:e.width,height:e.height}),n.push(g)},r.drawLabels=function(t,e,r,i,o){var l=t.selectAll(\"text\").data(e,function(t){return t.text+\",\"+t.x+\",\"+t.y+\",\"+t.theta});if(l.exit().remove(),l.enter().append(\"text\").attr({\"data-notex\":1,\"text-anchor\":\"middle\"}).each(function(t){var e=t.x+Math.sin(t.theta)*t.dy,a=t.y-Math.cos(t.theta)*t.dy;n.select(this).text(t.text).attr({x:e,y:a,transform:\"rotate(\"+180*t.theta/Math.PI+\" \"+e+\" \"+a+\")\"}).call(s.convertToTspans,r)}),o){for(var c=\"\",u=0;u<o.length;u++)c+=\"M\"+o[u].join(\"L\")+\"Z\";a.ensureSingle(i,\"path\",\"\").attr(\"d\",c)}}},{\"../../components/colorscale\":606,\"../../components/drawing\":615,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../../plots/cartesian/axes\":767,\"../../plots/cartesian/set_convert\":785,\"../heatmap/plot\":1011,\"./close_boundaries\":945,\"./constants\":947,\"./convert_to_constraints\":951,\"./empty_pathinfo\":953,\"./find_all_paths\":955,\"./make_crossings\":960,d3:164}],962:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),a=t(\"../../lib\");function i(t,e,r){var a={type:\"linear\",range:[t,e]};return n.autoTicks(a,(e-t)/(r||15)),a}e.exports=function(t,e){var r=t.contours;if(t.autocontour){var o=t.zmin,s=t.zmax;(t.zauto||void 0===o)&&(o=a.aggNums(Math.min,null,e)),(t.zauto||void 0===s)&&(s=a.aggNums(Math.max,null,e));var l=i(o,s,t.ncontours);r.size=l.dtick,r.start=n.tickFirst(l),l.range.reverse(),r.end=n.tickFirst(l),r.start===o&&(r.start+=r.size),r.end===s&&(r.end-=r.size),r.start>r.end&&(r.start=r.end=(r.start+r.end)/2),t._input.contours||(t._input.contours={}),a.extendFlat(t._input.contours,{start:r.start,end:r.end,size:r.size}),t._input.autocontour=!0}else if(\"constraint\"!==r.type){var c,u=r.start,h=r.end,f=t._input.contours;if(u>h&&(r.start=f.start=h,h=r.end=f.end=u,u=r.start),!(r.size>0))c=u===h?1:i(u,h,t.ncontours).dtick,f.size=r.size=c}}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767}],963:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/drawing\"),i=t(\"../heatmap/style\"),o=t(\"./make_color_map\");e.exports=function(t){var e=n.select(t).selectAll(\"g.contour\");e.style(\"opacity\",function(t){return t[0].trace.opacity}),e.each(function(t){var e=n.select(this),r=t[0].trace,i=r.contours,s=r.line,l=i.size||1,c=i.start,u=\"constraint\"===i.type,h=!u&&\"lines\"===i.coloring,f=!u&&\"fill\"===i.coloring,p=h||f?o(r):null;e.selectAll(\"g.contourlevel\").each(function(t){n.select(this).selectAll(\"path\").call(a.lineGroupStyle,s.width,h?p(t.level):s.color,s.dash)});var d=i.labelfont;if(e.selectAll(\"g.contourlabels text\").each(function(t){a.font(n.select(this),{family:d.family,size:d.size,color:d.color||(h?p(t.level):s.color)})}),u)e.selectAll(\"g.contourfill path\").style(\"fill\",r.fillcolor);else if(f){var g;e.selectAll(\"g.contourfill path\").style(\"fill\",function(t){return void 0===g&&(g=t.level),p(t.level+.5*l)}),void 0===g&&(g=c),e.selectAll(\"g.contourbg path\").style(\"fill\",p(g-.5*l))}}),i(t)}},{\"../../components/drawing\":615,\"../heatmap/style\":1012,\"./make_color_map\":959,d3:164}],964:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/defaults\"),a=t(\"./label_defaults\");e.exports=function(t,e,r,i,o){var s,l=r(\"contours.coloring\"),c=\"\";\"fill\"===l&&(s=r(\"contours.showlines\")),!1!==s&&(\"lines\"!==l&&(c=r(\"line.color\",\"#000\")),r(\"line.width\",.5),r(\"line.dash\")),\"none\"!==l&&(!0!==t.showlegend&&(e.showlegend=!1),e._dfltShowLegend=!1,n(t,e,i,r,{prefix:\"\",cLetter:\"z\"})),r(\"line.smoothing\"),a(r,i,c,o)}},{\"../../components/colorscale/defaults\":604,\"./label_defaults\":958}],965:[function(t,e,r){\"use strict\";var n=t(\"../heatmap/attributes\"),a=t(\"../contour/attributes\"),i=t(\"../../components/colorscale/attributes\"),o=t(\"../../lib/extend\").extendFlat,s=a.contours;e.exports=o({carpet:{valType:\"string\",editType:\"calc\"},z:n.z,a:n.x,a0:n.x0,da:n.dx,b:n.y,b0:n.y0,db:n.dy,text:n.text,hovertext:n.hovertext,transpose:n.transpose,atype:n.xtype,btype:n.ytype,fillcolor:a.fillcolor,autocontour:a.autocontour,ncontours:a.ncontours,contours:{type:s.type,start:s.start,end:s.end,size:s.size,coloring:{valType:\"enumerated\",values:[\"fill\",\"lines\",\"none\"],dflt:\"fill\",editType:\"calc\"},showlines:s.showlines,showlabels:s.showlabels,labelfont:s.labelfont,labelformat:s.labelformat,operation:s.operation,value:s.value,editType:\"calc\",impliedEdits:{autocontour:!1}},line:{color:a.line.color,width:a.line.width,dash:a.line.dash,smoothing:a.line.smoothing,editType:\"plot\"},transforms:void 0},i(\"\",{cLetter:\"z\",autoColorDflt:!1}))},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../contour/attributes\":943,\"../heatmap/attributes\":1e3}],966:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/calc\"),a=t(\"../../lib\"),i=t(\"../heatmap/convert_column_xyz\"),o=t(\"../heatmap/clean_2d_array\"),s=t(\"../heatmap/interp2d\"),l=t(\"../heatmap/find_empties\"),c=t(\"../heatmap/make_bound_array\"),u=t(\"./defaults\"),h=t(\"../carpet/lookup_carpetid\"),f=t(\"../contour/set_contours\");e.exports=function(t,e){var r=e._carpetTrace=h(t,e);if(r&&r.visible&&\"legendonly\"!==r.visible){if(!e.a||!e.b){var p=t.data[r.index],d=t.data[e.index];d.a||(d.a=p.a),d.b||(d.b=p.b),u(d,e,e._defaultColor,t._fullLayout)}var g=function(t,e){var r,u,h,f,p,d,g,v=e._carpetTrace,m=v.aaxis,y=v.baxis;m._minDtick=0,y._minDtick=0,a.isArray1D(e.z)&&i(e,m,y,\"a\",\"b\",[\"z\"]);r=e._a=e._a||e.a,f=e._b=e._b||e.b,r=r?m.makeCalcdata(e,\"_a\"):[],f=f?y.makeCalcdata(e,\"_b\"):[],u=e.a0||0,h=e.da||1,p=e.b0||0,d=e.db||1,g=e._z=o(e._z||e.z,e.transpose),e._emptypoints=l(g),s(g,e._emptypoints);var x=a.maxRowLength(g),b=\"scaled\"===e.xtype?\"\":r,_=c(e,b,u,h,x,m),w=\"scaled\"===e.ytype?\"\":f,k=c(e,w,p,d,g.length,y),T={a:_,b:k,z:g};\"levels\"===e.contours.type&&\"none\"!==e.contours.coloring&&n(t,e,{vals:g,containerStr:\"\",cLetter:\"z\"});return[T]}(t,e);return f(e,e._z),g}}},{\"../../components/colorscale/calc\":602,\"../../lib\":719,\"../carpet/lookup_carpetid\":916,\"../contour/set_contours\":962,\"../heatmap/clean_2d_array\":1002,\"../heatmap/convert_column_xyz\":1004,\"../heatmap/find_empties\":1006,\"../heatmap/interp2d\":1009,\"../heatmap/make_bound_array\":1010,\"./defaults\":967}],967:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../heatmap/xyz_defaults\"),i=t(\"./attributes\"),o=t(\"../contour/constraint_defaults\"),s=t(\"../contour/contours_defaults\"),l=t(\"../contour/style_defaults\");e.exports=function(t,e,r,c){function u(r,a){return n.coerce(t,e,i,r,a)}if(u(\"carpet\"),t.a&&t.b){if(!a(t,e,u,c,\"a\",\"b\"))return void(e.visible=!1);u(\"text\"),\"constraint\"===u(\"contours.type\")?o(t,e,u,c,r,{hasHover:!1}):(s(t,e,u,function(r){return n.coerce2(t,e,i,r)}),l(t,e,u,c,{hasHover:!1}))}else e._defaultColor=r,e._length=null}},{\"../../lib\":719,\"../contour/constraint_defaults\":948,\"../contour/contours_defaults\":950,\"../contour/style_defaults\":964,\"../heatmap/xyz_defaults\":1014,\"./attributes\":965}],968:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../contour/colorbar\"),calc:t(\"./calc\"),plot:t(\"./plot\"),style:t(\"../contour/style\"),moduleType:\"trace\",name:\"contourcarpet\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"carpet\",\"contour\",\"symbols\",\"showLegend\",\"hasLines\",\"carpetDependent\",\"noHover\"],meta:{}}},{\"../../plots/cartesian\":778,\"../contour/colorbar\":946,\"../contour/style\":963,\"./attributes\":965,\"./calc\":966,\"./defaults\":967,\"./plot\":969}],969:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../carpet/map_1d_array\"),i=t(\"../carpet/makepath\"),o=t(\"../../components/drawing\"),s=t(\"../../lib\"),l=t(\"../contour/make_crossings\"),c=t(\"../contour/find_all_paths\"),u=t(\"../contour/plot\"),h=t(\"../contour/constants\"),f=t(\"../contour/convert_to_constraints\"),p=t(\"../contour/empty_pathinfo\"),d=t(\"../contour/close_boundaries\"),g=t(\"../carpet/lookup_carpetid\"),v=t(\"../carpet/axis_aligned_line\");function m(t,e,r){var n=t.getPointAtLength(e),a=t.getPointAtLength(r),i=a.x-n.x,o=a.y-n.y,s=Math.sqrt(i*i+o*o);return[i/s,o/s]}function y(t){var e=Math.sqrt(t[0]*t[0]+t[1]*t[1]);return[t[0]/e,t[1]/e]}function x(t,e){var r=Math.abs(t[0]*e[0]+t[1]*e[1]);return Math.sqrt(1-r*r)/r}e.exports=function(t,e,r,b){var _=e.xaxis,w=e.yaxis;s.makeTraceGroups(b,r,\"contour\").each(function(r){var b=n.select(this),k=r[0],T=k.trace,A=T._carpetTrace=g(t,T),M=t.calcdata[A.index][0];if(A.visible&&\"legendonly\"!==A.visible){var S=k.a,E=k.b,C=T.contours,L=p(C,e,k),P=\"constraint\"===C.type,O=C._operation,I=P?\"=\"===O?\"lines\":\"fill\":C.coloring,z=[[S[0],E[E.length-1]],[S[S.length-1],E[E.length-1]],[S[S.length-1],E[0]],[S[0],E[0]]];l(L);var D=1e-8*(S[S.length-1]-S[0]),R=1e-8*(E[E.length-1]-E[0]);c(L,D,R);var F,B,N,j,V=L;\"constraint\"===C.type&&(V=f(L,O)),function(t,e){var r,n,a,i,o,s,l,c,u;for(r=0;r<t.length;r++){for(i=t[r],o=i.pedgepaths=[],s=i.ppaths=[],n=0;n<i.edgepaths.length;n++){for(u=i.edgepaths[n],l=[],a=0;a<u.length;a++)l[a]=e(u[a]);o.push(l)}for(n=0;n<i.paths.length;n++){for(u=i.paths[n],c=[],a=0;a<u.length;a++)c[a]=e(u[a]);s.push(c)}}}(L,H);var U=[];for(j=M.clipsegments.length-1;j>=0;j--)F=M.clipsegments[j],B=a([],F.x,_.c2p),N=a([],F.y,w.c2p),B.reverse(),N.reverse(),U.push(i(B,N,F.bicubic));var q=\"M\"+U.join(\"L\")+\"Z\";!function(t,e,r,n,o,l){var c,u,h,f,p=s.ensureSingle(t,\"g\",\"contourbg\").selectAll(\"path\").data(\"fill\"!==l||o?[]:[0]);p.enter().append(\"path\"),p.exit().remove();var d=[];for(f=0;f<e.length;f++)c=e[f],u=a([],c.x,r.c2p),h=a([],c.y,n.c2p),d.push(i(u,h,c.bicubic));p.attr(\"d\",\"M\"+d.join(\"L\")+\"Z\").style(\"stroke\",\"none\")}(b,M.clipsegments,_,w,P,I),function(t,e,r,a,i,l,c,u,h,f,p){var g=\"fill\"===f;g&&d(i,t.contours);var m=s.ensureSingle(e,\"g\",\"contourfill\").selectAll(\"path\").data(g?i:[]);m.enter().append(\"path\"),m.exit().remove(),m.each(function(t){var e=(t.prefixBoundary?p:\"\")+function(t,e,r,n,a,i,l,c){var u,h,f,p,d,g,m,y=\"\",x=e.edgepaths.map(function(t,e){return e}),b=!0,_=1e-4*Math.abs(r[0][0]-r[2][0]),w=1e-4*Math.abs(r[0][1]-r[2][1]);function k(t){return Math.abs(t[1]-r[0][1])<w}function T(t){return Math.abs(t[1]-r[2][1])<w}function A(t){return Math.abs(t[0]-r[0][0])<_}function M(t){return Math.abs(t[0]-r[2][0])<_}function S(t,e){var r,n,o,s,u=\"\";for(k(t)&&!M(t)||T(t)&&!A(t)?(s=a.aaxis,o=v(a,i,[t[0],e[0]],.5*(t[1]+e[1]))):(s=a.baxis,o=v(a,i,.5*(t[0]+e[0]),[t[1],e[1]])),r=1;r<o.length;r++)for(u+=s.smoothing?\"C\":\"L\",n=0;n<o[r].length;n++){var h=o[r][n];u+=[l.c2p(h[0]),c.c2p(h[1])]+\" \"}return u}u=0,h=null;for(;x.length;){var E=e.edgepaths[u][0];for(h&&(y+=S(h,E)),m=o.smoothopen(e.edgepaths[u].map(n),e.smoothing),y+=b?m:m.replace(/^M/,\"L\"),x.splice(x.indexOf(u),1),h=e.edgepaths[u][e.edgepaths[u].length-1],d=-1,p=0;p<4;p++){if(!h){s.log(\"Missing end?\",u,e);break}for(k(h)&&!M(h)?f=r[1]:A(h)?f=r[0]:T(h)?f=r[3]:M(h)&&(f=r[2]),g=0;g<e.edgepaths.length;g++){var C=e.edgepaths[g][0];Math.abs(h[0]-f[0])<_?Math.abs(h[0]-C[0])<_&&(C[1]-h[1])*(f[1]-C[1])>=0&&(f=C,d=g):Math.abs(h[1]-f[1])<w?Math.abs(h[1]-C[1])<w&&(C[0]-h[0])*(f[0]-C[0])>=0&&(f=C,d=g):s.log(\"endpt to newendpt is not vert. or horz.\",h,f,C)}if(d>=0)break;y+=S(h,f),h=f}if(d===e.edgepaths.length){s.log(\"unclosed perimeter path\");break}u=d,(b=-1===x.indexOf(u))&&(u=x[0],y+=S(h,f)+\"Z\",h=null)}for(u=0;u<e.paths.length;u++)y+=o.smoothclosed(e.paths[u].map(n),e.smoothing);return y}(0,t,l,c,u,h,r,a);e?n.select(this).attr(\"d\",e).style(\"stroke\",\"none\"):n.select(this).remove()})}(T,b,_,w,V,z,H,A,M,I,q),function(t,e,r,a,i,l,c){var f=s.ensureSingle(t,\"g\",\"contourlines\"),p=!1!==i.showlines,d=i.showlabels,g=p&&d,v=u.createLines(f,p||d,e),b=u.createLineClip(f,g,r,a.trace.uid),_=t.selectAll(\"g.contourlabels\").data(d?[0]:[]);if(_.exit().remove(),_.enter().append(\"g\").classed(\"contourlabels\",!0),d){var w=l.xaxis,k=l.yaxis,T=w._length,A=k._length,M=[[[0,0],[T,0],[T,A],[0,A]]],S=[];s.clearLocationCache();var E=u.labelFormatter(r,a),C=o.tester.append(\"text\").attr(\"data-notex\",1).call(o.font,i.labelfont),L={left:0,right:T,center:T/2,top:0,bottom:A,middle:A/2},P=Math.sqrt(T*T+A*A),O=h.LABELDISTANCE*P/Math.max(1,e.length/h.LABELINCREASE);v.each(function(t){var e=u.calcTextOpts(t.level,E,C,r);n.select(this).selectAll(\"path\").each(function(r){var n=s.getVisibleSegment(this,L,e.height/2);if(n&&(function(t,e,r,n,a,i){for(var o,s=0;s<r.pedgepaths.length;s++)e===r.pedgepaths[s]&&(o=r.edgepaths[s]);if(!o)return;var l=a.a[0],c=a.a[a.a.length-1],u=a.b[0],h=a.b[a.b.length-1];function f(t,e){var r,n=0;return(Math.abs(t[0]-l)<.1||Math.abs(t[0]-c)<.1)&&(r=y(a.dxydb_rough(t[0],t[1],.1)),n=Math.max(n,i*x(e,r)/2)),(Math.abs(t[1]-u)<.1||Math.abs(t[1]-h)<.1)&&(r=y(a.dxyda_rough(t[0],t[1],.1)),n=Math.max(n,i*x(e,r)/2)),n}var p=m(t,0,1),d=m(t,n.total,n.total-1),g=f(o[0],p),v=n.total-f(o[o.length-1],d);n.min<g&&(n.min=g);n.max>v&&(n.max=v);n.len=n.max-n.min}(this,r,t,n,c,e.height),!(n.len<(e.width+e.height)*h.LABELMIN)))for(var a=Math.min(Math.ceil(n.len/O),h.LABELMAX),i=0;i<a;i++){var o=u.findBestTextLocation(this,n,e,S,L);if(!o)break;u.addLabelData(o,e,S,M)}})}),C.remove(),u.drawLabels(_,S,r,b,g?M:null)}d&&!p&&v.remove()}(b,L,t,k,C,e,A),o.setClipUrl(b,A._clipPathId,t)}function H(t){var e=A.ab2xy(t[0],t[1],!0);return[_.c2p(e[0]),w.c2p(e[1])]}})}},{\"../../components/drawing\":615,\"../../lib\":719,\"../carpet/axis_aligned_line\":900,\"../carpet/lookup_carpetid\":916,\"../carpet/makepath\":917,\"../carpet/map_1d_array\":918,\"../contour/close_boundaries\":945,\"../contour/constants\":947,\"../contour/convert_to_constraints\":951,\"../contour/empty_pathinfo\":953,\"../contour/find_all_paths\":955,\"../contour/make_crossings\":960,\"../contour/plot\":961,d3:164}],970:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/attributes\"),a=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"../../plots/attributes\"),o=t(\"../scattermapbox/attributes\"),s=t(\"../../lib/extend\").extendFlat;e.exports=s({lon:o.lon,lat:o.lat,z:{valType:\"data_array\",editType:\"calc\"},radius:{valType:\"number\",editType:\"plot\",arrayOk:!0,min:1,dflt:30},below:{valType:\"string\",editType:\"plot\"},text:o.text,hovertext:o.hovertext,hoverinfo:s({},i.hoverinfo,{flags:[\"lon\",\"lat\",\"z\",\"text\",\"name\"]}),hovertemplate:a()},n(\"\",{cLetter:\"z\",editTypeOverride:\"calc\"}))},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plots/attributes\":764,\"../../plots/template_attributes\":843,\"../scattermapbox/attributes\":1170}],971:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\").isArrayOrTypedArray,i=t(\"../../constants/numerical\").BADNUM,o=t(\"../../components/colorscale/calc\"),s=t(\"../../lib\")._;e.exports=function(t,e){for(var r=e._length,l=new Array(r),c=e.z,u=a(c)&&c.length,h=0;h<r;h++){var f=l[h]={},p=e.lon[h],d=e.lat[h];if(f.lonlat=n(p)&&n(d)?[+p,+d]:[i,i],u){var g=c[h];f.z=n(g)?g:i}}return o(t,e,{vals:u?c:[0,1],containerStr:\"\",cLetter:\"z\"}),r&&(l[0].t={labels:{lat:s(t,\"lat:\")+\" \",lon:s(t,\"lon:\")+\" \"}}),l}},{\"../../components/colorscale/calc\":602,\"../../constants/numerical\":695,\"../../lib\":719,\"fast-isnumeric\":226}],972:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\"),i=t(\"../../components/color\"),o=t(\"../../components/colorscale\"),s=t(\"../../constants/numerical\").BADNUM,l=t(\"../../lib/geojson_utils\").makeBlank;e.exports=function(t){var e=t[0].trace,r=!0===e.visible&&0!==e._length,c=e._opts={heatmap:{layout:{visibility:\"none\"},paint:{}},geojson:l()};if(!r)return c;var u,h=[],f=e.z,p=e.radius,d=a.isArrayOrTypedArray(f)&&f.length,g=a.isArrayOrTypedArray(p);for(u=0;u<t.length;u++){var v=t[u],m=v.lonlat;if(m[0]!==s){var y={};if(d){var x=v.z;y.z=x!==s?x:0}g&&(y.r=n(p[u])&&p[u]>0?+p[u]:0),h.push({type:\"Feature\",geometry:{type:\"Point\",coordinates:m},properties:y})}}var b=o.extractOpts(e),_=b.reversescale?o.flipScale(b.colorscale):b.colorscale,w=_[0][1],k=[\"interpolate\",[\"linear\"],[\"heatmap-density\"],0,i.opacity(w)<1?w:i.addOpacity(w,0)];for(u=1;u<_.length;u++)k.push(_[u][0],_[u][1]);var T=[\"interpolate\",[\"linear\"],[\"get\",\"z\"],b.min,0,b.max,1];return a.extendFlat(c.heatmap.paint,{\"heatmap-weight\":d?T:1/(b.max-b.min),\"heatmap-color\":k,\"heatmap-radius\":g?{type:\"identity\",property:\"r\"}:e.radius,\"heatmap-opacity\":e.opacity}),c.geojson={type:\"FeatureCollection\",features:h},c.heatmap.layout.visibility=\"visible\",c}},{\"../../components/color\":594,\"../../components/colorscale\":606,\"../../constants/numerical\":695,\"../../lib\":719,\"../../lib/geojson_utils\":714,\"fast-isnumeric\":226}],973:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/colorscale/defaults\"),i=t(\"./attributes\");e.exports=function(t,e,r,o){function s(r,a){return n.coerce(t,e,i,r,a)}var l=s(\"lon\")||[],c=s(\"lat\")||[],u=Math.min(l.length,c.length);u?(e._length=u,s(\"z\"),s(\"radius\"),s(\"below\"),s(\"text\"),s(\"hovertext\"),s(\"hovertemplate\"),a(t,e,o,s,{prefix:\"\",cLetter:\"z\"})):e.visible=!1}},{\"../../components/colorscale/defaults\":604,\"../../lib\":719,\"./attributes\":970}],974:[function(t,e,r){\"use strict\";e.exports=function(t,e){return t.lon=e.lon,t.lat=e.lat,t.z=e.z,t}},{}],975:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"../scattermapbox/hover\");e.exports=function(t,e,r){var o=i(t,e,r);if(o){var s=o[0],l=s.cd,c=l[0].trace,u=l[s.index];if(delete s.color,\"z\"in u){var h=s.subplot.mockAxis;s.z=u.z,s.zLabel=a.tickText(h,h.c2l(u.z),\"hover\").text}return s.extraText=function(t,e,r){if(t.hovertemplate)return;var a=(e.hi||t.hoverinfo).split(\"+\"),i=-1!==a.indexOf(\"all\"),o=-1!==a.indexOf(\"lon\"),s=-1!==a.indexOf(\"lat\"),l=e.lonlat,c=[];function u(t){return t+\"\\xb0\"}i||o&&s?c.push(\"(\"+u(l[0])+\", \"+u(l[1])+\")\"):o?c.push(r.lon+u(l[0])):s&&c.push(r.lat+u(l[1]));(i||-1!==a.indexOf(\"text\"))&&n.fillText(e,t,c);return c.join(\"<br>\")}(c,u,l[0].t.labels),[s]}}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../scattermapbox/hover\":1174}],976:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../heatmap/colorbar\"),calc:t(\"./calc\"),plot:t(\"./plot\"),hoverPoints:t(\"./hover\"),eventData:t(\"./event_data\"),getBelow:function(t,e){for(var r=e.getMapLayers(),n=0;n<r.length;n++){var a=r[n],i=a.id;if(\"symbol\"===a.type&&\"string\"==typeof i&&-1===i.indexOf(\"plotly-\"))return i}},moduleType:\"trace\",name:\"densitymapbox\",basePlotModule:t(\"../../plots/mapbox\"),categories:[\"mapbox\",\"gl\"],meta:{hr_name:\"density_mapbox\"}}},{\"../../plots/mapbox\":822,\"../heatmap/colorbar\":1003,\"./attributes\":970,\"./calc\":971,\"./defaults\":973,\"./event_data\":974,\"./hover\":975,\"./plot\":977}],977:[function(t,e,r){\"use strict\";var n=t(\"./convert\"),a=t(\"../../plots/mapbox/constants\").traceLayerPrefix;function i(t,e){this.subplot=t,this.uid=e,this.sourceId=\"source-\"+e,this.layerList=[[\"heatmap\",a+e+\"-heatmap\"]],this.below=null}var o=i.prototype;o.update=function(t){var e=this.subplot,r=this.layerList,a=n(t),i=e.belowLookup[\"trace-\"+this.uid];e.map.getSource(this.sourceId).setData(a.geojson),i!==this.below&&(this._removeLayers(),this._addLayers(a,i),this.below=i);for(var o=0;o<r.length;o++){var s=r[o],l=s[0],c=s[1],u=a[l];e.setOptions(c,\"setLayoutProperty\",u.layout),\"visible\"===u.layout.visibility&&e.setOptions(c,\"setPaintProperty\",u.paint)}},o._addLayers=function(t,e){for(var r=this.subplot,n=this.layerList,a=this.sourceId,i=0;i<n.length;i++){var o=n[i],s=o[0],l=t[s];r.addLayer({type:s,id:o[1],source:a,layout:l.layout,paint:l.paint},e)}},o._removeLayers=function(){for(var t=this.subplot.map,e=this.layerList,r=e.length-1;r>=0;r--)t.removeLayer(e[r][1])},o.dispose=function(){var t=this.subplot.map;this._removeLayers(),t.removeSource(this.sourceId)},e.exports=function(t,e){var r=e[0].trace,a=new i(t,r.uid),o=a.sourceId,s=n(e),l=a.below=t.belowLookup[\"trace-\"+r.uid];return t.map.addSource(o,{type:\"geojson\",data:s.geojson}),a._addLayers(s,l),a}},{\"../../plots/mapbox/constants\":820,\"./convert\":972}],978:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e){for(var r=0;r<t.length;r++)t[r].i=r;n.mergeArray(e.text,t,\"tx\"),n.mergeArray(e.hovertext,t,\"htx\");var a=e.marker;if(a){n.mergeArray(a.opacity,t,\"mo\"),n.mergeArray(a.color,t,\"mc\");var i=a.line;i&&(n.mergeArray(i.color,t,\"mlc\"),n.mergeArrayCastPositive(i.width,t,\"mlw\"))}}},{\"../../lib\":719}],979:[function(t,e,r){\"use strict\";var n=t(\"../bar/attributes\"),a=t(\"../scatter/attributes\").line,i=t(\"../../plots/attributes\"),o=t(\"../../plots/template_attributes\").hovertemplateAttrs,s=t(\"../../plots/template_attributes\").texttemplateAttrs,l=t(\"./constants\"),c=t(\"../../lib/extend\").extendFlat,u=t(\"../../components/color\");e.exports={x:n.x,x0:n.x0,dx:n.dx,y:n.y,y0:n.y0,dy:n.dy,hovertext:n.hovertext,hovertemplate:o({},{keys:l.eventDataKeys}),hoverinfo:c({},i.hoverinfo,{flags:[\"name\",\"x\",\"y\",\"text\",\"percent initial\",\"percent previous\",\"percent total\"]}),textinfo:{valType:\"flaglist\",flags:[\"label\",\"text\",\"percent initial\",\"percent previous\",\"percent total\",\"value\"],extras:[\"none\"],editType:\"plot\",arrayOk:!1},texttemplate:s({editType:\"plot\"},{keys:l.eventDataKeys.concat([\"label\",\"value\"])}),text:n.text,textposition:c({},n.textposition,{dflt:\"auto\"}),insidetextanchor:c({},n.insidetextanchor,{dflt:\"middle\"}),textangle:c({},n.textangle,{dflt:0}),textfont:n.textfont,insidetextfont:n.insidetextfont,outsidetextfont:n.outsidetextfont,constraintext:n.constraintext,cliponaxis:n.cliponaxis,orientation:c({},n.orientation,{}),offset:c({},n.offset,{arrayOk:!1}),width:c({},n.width,{arrayOk:!1}),marker:n.marker,connector:{fillcolor:{valType:\"color\",editType:\"style\"},line:{color:c({},a.color,{dflt:u.defaultLine}),width:c({},a.width,{dflt:0,editType:\"plot\"}),dash:a.dash,editType:\"style\"},visible:{valType:\"boolean\",dflt:!0,editType:\"plot\"},editType:\"plot\"},offsetgroup:n.offsetgroup,alignmentgroup:n.alignmentgroup}},{\"../../components/color\":594,\"../../lib/extend\":710,\"../../plots/attributes\":764,\"../../plots/template_attributes\":843,\"../bar/attributes\":858,\"../scatter/attributes\":1111,\"./constants\":981}],980:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),a=t(\"./arrays_to_calcdata\"),i=t(\"../scatter/calc_selection\"),o=t(\"../../constants/numerical\").BADNUM;function s(t){return t===o?0:t}e.exports=function(t,e){var r,l,c,u,h=n.getFromId(t,e.xaxis||\"x\"),f=n.getFromId(t,e.yaxis||\"y\");\"h\"===e.orientation?(r=h.makeCalcdata(e,\"x\"),l=f.makeCalcdata(e,\"y\")):(r=f.makeCalcdata(e,\"y\"),l=h.makeCalcdata(e,\"x\"));var p,d=Math.min(l.length,r.length),g=new Array(d);for(e._base=[],c=0;c<d;c++){r[c]<0&&(r[c]=o);var v=!1;r[c]!==o&&c+1<d&&r[c+1]!==o&&(v=!0),u=g[c]={p:l[c],s:r[c],cNext:v},e._base[c]=-.5*u.s,e.ids&&(u.id=String(e.ids[c])),0===c&&(g[0].vTotal=0),g[0].vTotal+=s(u.s),u.begR=s(u.s)/s(g[0].s)}for(c=0;c<d;c++)(u=g[c]).s!==o&&(u.sumR=u.s/g[0].vTotal,u.difR=void 0!==p?u.s/p:1,p=u.s);return a(g,e),i(g,e),g}},{\"../../constants/numerical\":695,\"../../plots/cartesian/axes\":767,\"../scatter/calc_selection\":1113,\"./arrays_to_calcdata\":978}],981:[function(t,e,r){\"use strict\";e.exports={eventDataKeys:[\"percentInitial\",\"percentPrevious\",\"percentTotal\"]}},{}],982:[function(t,e,r){\"use strict\";var n=t(\"../bar/cross_trace_calc\").setGroupPositions;e.exports=function(t,e){var r,a,i=t._fullLayout,o=t._fullData,s=t.calcdata,l=e.xaxis,c=e.yaxis,u=[],h=[],f=[];for(a=0;a<o.length;a++){var p=o[a],d=\"h\"===p.orientation;!0===p.visible&&p.xaxis===l._id&&p.yaxis===c._id&&\"funnel\"===p.type&&(r=s[a],d?f.push(r):h.push(r),u.push(r))}var g={mode:i.funnelmode,norm:i.funnelnorm,gap:i.funnelgap,groupgap:i.funnelgroupgap};for(n(t,l,c,h,g),n(t,c,l,f,g),a=0;a<u.length;a++){r=u[a];for(var v=0;v<r.length;v++)v+1<r.length&&(r[v].nextP0=r[v+1].p0,r[v].nextS0=r[v+1].s0,r[v].nextP1=r[v+1].p1,r[v].nextS1=r[v+1].s1)}}},{\"../bar/cross_trace_calc\":861}],983:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../bar/defaults\").handleGroupingDefaults,i=t(\"../bar/defaults\").handleText,o=t(\"../scatter/xy_defaults\"),s=t(\"./attributes\"),l=t(\"../../components/color\");e.exports={supplyDefaults:function(t,e,r,a){function c(r,a){return n.coerce(t,e,s,r,a)}if(o(t,e,a,c)){c(\"orientation\",e.y&&!e.x?\"v\":\"h\"),c(\"offset\"),c(\"width\");var u=c(\"text\");c(\"hovertext\"),c(\"hovertemplate\");var h=c(\"textposition\");i(t,e,a,c,h,{moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!0,moduleHasCliponaxis:!0,moduleHasTextangle:!0,moduleHasInsideanchor:!0}),\"none\"===e.textposition||e.texttemplate||c(\"textinfo\",Array.isArray(u)?\"text+value\":\"value\");var f=c(\"marker.color\",r);c(\"marker.line.color\",l.defaultLine),c(\"marker.line.width\"),c(\"connector.visible\")&&(c(\"connector.fillcolor\",function(t){var e=n.isArrayOrTypedArray(t)?\"#000\":t;return l.addOpacity(e,.5*l.opacity(e))}(f)),c(\"connector.line.width\")&&(c(\"connector.line.color\"),c(\"connector.line.dash\")))}else e.visible=!1},crossTraceDefaults:function(t,e){var r,i;function o(t){return n.coerce(i._input,i,s,t)}if(\"group\"===e.funnelmode)for(var l=0;l<t.length;l++)r=(i=t[l])._input,a(r,i,e,o)}}},{\"../../components/color\":594,\"../../lib\":719,\"../bar/defaults\":862,\"../scatter/xy_defaults\":1136,\"./attributes\":979}],984:[function(t,e,r){\"use strict\";e.exports=function(t,e){return t.x=\"xVal\"in e?e.xVal:e.x,t.y=\"yVal\"in e?e.yVal:e.y,\"percentInitial\"in e&&(t.percentInitial=e.percentInitial),\"percentPrevious\"in e&&(t.percentPrevious=e.percentPrevious),\"percentTotal\"in e&&(t.percentTotal=e.percentTotal),e.xa&&(t.xaxis=e.xa),e.ya&&(t.yaxis=e.ya),t}},{}],985:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\").opacity,a=t(\"../bar/hover\").hoverOnBars,i=t(\"../../lib\").formatPercent;e.exports=function(t,e,r,o){var s=a(t,e,r,o);if(s){var l=s.cd,c=l[0].trace,u=\"h\"===c.orientation,h=l[s.index];s[(u?\"x\":\"y\")+\"LabelVal\"]=h.s,s.percentInitial=h.begR,s.percentInitialLabel=i(h.begR,1),s.percentPrevious=h.difR,s.percentPreviousLabel=i(h.difR,1),s.percentTotal=h.sumR,s.percentTotalLabel=i(h.sumR,1);var f=h.hi||c.hoverinfo,p=[];if(f&&\"none\"!==f&&\"skip\"!==f){var d=\"all\"===f,g=f.split(\"+\"),v=function(t){return d||-1!==g.indexOf(t)};v(\"percent initial\")&&p.push(s.percentInitialLabel+\" of initial\"),v(\"percent previous\")&&p.push(s.percentPreviousLabel+\" of previous\"),v(\"percent total\")&&p.push(s.percentTotalLabel+\" of total\")}return s.extraText=p.join(\"<br>\"),s.color=function(t,e){var r=t.marker,a=e.mc||r.color,i=e.mlc||r.line.color,o=e.mlw||r.line.width;if(n(a))return a;if(n(i)&&o)return i}(c,h),[s]}}},{\"../../components/color\":594,\"../../lib\":719,\"../bar/hover\":864}],986:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\").supplyDefaults,crossTraceDefaults:t(\"./defaults\").crossTraceDefaults,supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\"),crossTraceCalc:t(\"./cross_trace_calc\"),plot:t(\"./plot\"),style:t(\"./style\").style,hoverPoints:t(\"./hover\"),eventData:t(\"./event_data\"),selectPoints:t(\"../bar/select\"),moduleType:\"trace\",name:\"funnel\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"bar-like\",\"cartesian\",\"svg\",\"oriented\",\"showLegend\",\"zoomScale\"],meta:{}}},{\"../../plots/cartesian\":778,\"../bar/select\":869,\"./attributes\":979,\"./calc\":980,\"./cross_trace_calc\":982,\"./defaults\":983,\"./event_data\":984,\"./hover\":985,\"./layout_attributes\":987,\"./layout_defaults\":988,\"./plot\":989,\"./style\":990}],987:[function(t,e,r){\"use strict\";e.exports={funnelmode:{valType:\"enumerated\",values:[\"stack\",\"group\",\"overlay\"],dflt:\"stack\",editType:\"calc\"},funnelgap:{valType:\"number\",min:0,max:1,editType:\"calc\"},funnelgroupgap:{valType:\"number\",min:0,max:1,dflt:0,editType:\"calc\"}}},{}],988:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./layout_attributes\");e.exports=function(t,e,r){var i=!1;function o(r,i){return n.coerce(t,e,a,r,i)}for(var s=0;s<r.length;s++){var l=r[s];if(l.visible&&\"funnel\"===l.type){i=!0;break}}i&&(o(\"funnelmode\"),o(\"funnelgap\",.2),o(\"funnelgroupgap\"))}},{\"../../lib\":719,\"./layout_attributes\":987}],989:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../lib\"),i=t(\"../../components/drawing\"),o=t(\"../bar/plot\").plot;function s(t,e,r,n){var a=[],i=[],o=n?e:r,s=n?r:e;return a[0]=o.c2p(t.s0,!0),i[0]=s.c2p(t.p0,!0),a[1]=o.c2p(t.s1,!0),i[1]=s.c2p(t.p1,!0),a[2]=o.c2p(t.nextS0,!0),i[2]=s.c2p(t.nextP0,!0),a[3]=o.c2p(t.nextS1,!0),i[3]=s.c2p(t.nextP1,!0),n?[a,i]:[i,a]}e.exports=function(t,e,r,l){var c=t._fullLayout;!function(t,e,r,o){var l=e.xaxis,c=e.yaxis;a.makeTraceGroups(o,r,\"trace bars\").each(function(r){var o=n.select(this),u=r[0].trace,h=a.ensureSingle(o,\"g\",\"regions\");if(u.connector&&u.connector.visible){var f=\"h\"===u.orientation,p=h.selectAll(\"g.region\").data(a.identity);p.enter().append(\"g\").classed(\"region\",!0),p.exit().remove();var d=p.size();p.each(function(r,o){if(o===d-1||r.cNext){var u=s(r,l,c,f),h=u[0],p=u[1],g=\"\";void 0!==h[3]&&void 0!==p[3]&&(g+=f?\"M\"+h[0]+\",\"+p[1]+\"L\"+h[2]+\",\"+p[2]+\"H\"+h[3]+\"L\"+h[1]+\",\"+p[1]+\"Z\":\"M\"+h[1]+\",\"+p[1]+\"L\"+h[2]+\",\"+p[3]+\"V\"+p[2]+\"L\"+h[1]+\",\"+p[0]+\"Z\"),a.ensureSingle(n.select(this),\"path\").attr(\"d\",g).call(i.setClipUrl,e.layerClipId,t)}})}else h.remove()})}(t,e,r,l),function(t,e,r,o){var l=e.xaxis,c=e.yaxis;a.makeTraceGroups(o,r,\"trace bars\").each(function(r){var o=n.select(this),u=r[0].trace,h=a.ensureSingle(o,\"g\",\"lines\");if(u.connector&&u.connector.visible&&u.connector.line.width){var f=\"h\"===u.orientation,p=h.selectAll(\"g.line\").data(a.identity);p.enter().append(\"g\").classed(\"line\",!0),p.exit().remove();var d=p.size();p.each(function(r,o){if(o===d-1||r.cNext){var u=s(r,l,c,f),h=u[0],p=u[1],g=\"\";void 0!==h[3]&&void 0!==p[3]&&(f?(g+=\"M\"+h[0]+\",\"+p[1]+\"L\"+h[2]+\",\"+p[2],g+=\"M\"+h[1]+\",\"+p[1]+\"L\"+h[3]+\",\"+p[2]):(g+=\"M\"+h[1]+\",\"+p[1]+\"L\"+h[2]+\",\"+p[3],g+=\"M\"+h[1]+\",\"+p[0]+\"L\"+h[2]+\",\"+p[2])),\"\"===g&&(g=\"M0,0Z\"),a.ensureSingle(n.select(this),\"path\").attr(\"d\",g).call(i.setClipUrl,e.layerClipId,t)}})}else h.remove()})}(t,e,r,l),o(t,e,r,l,{mode:c.funnelmode,norm:c.funnelmode,gap:c.funnelgap,groupgap:c.funnelgroupgap})}},{\"../../components/drawing\":615,\"../../lib\":719,\"../bar/plot\":868,d3:164}],990:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/drawing\"),i=t(\"../../components/color\"),o=t(\"../../constants/interactions\").DESELECTDIM,s=t(\"../bar/style\").styleTextPoints;e.exports={style:function(t,e,r){var l=r||n.select(t).selectAll(\"g.funnellayer\").selectAll(\"g.trace\");l.style(\"opacity\",function(t){return t[0].trace.opacity}),l.each(function(e){var r=n.select(this),l=e[0].trace;r.selectAll(\".point > path\").each(function(t){if(!t.isBlank){var e=l.marker;n.select(this).call(i.fill,t.mc||e.color).call(i.stroke,t.mlc||e.line.color).call(a.dashLine,e.line.dash,t.mlw||e.line.width).style(\"opacity\",l.selectedpoints&&!t.selected?o:1)}}),s(r,l,t),r.selectAll(\".regions\").each(function(){n.select(this).selectAll(\"path\").style(\"stroke-width\",0).call(i.fill,l.connector.fillcolor)}),r.selectAll(\".lines\").each(function(){var t=l.connector.line;a.lineGroupStyle(n.select(this).selectAll(\"path\"),t.width,t.color,t.dash)})})}}},{\"../../components/color\":594,\"../../components/drawing\":615,\"../../constants/interactions\":694,\"../bar/style\":871,d3:164}],991:[function(t,e,r){\"use strict\";var n=t(\"../pie/attributes\"),a=t(\"../../plots/attributes\"),i=t(\"../../plots/domain\").attributes,o=t(\"../../plots/template_attributes\").hovertemplateAttrs,s=t(\"../../plots/template_attributes\").texttemplateAttrs,l=t(\"../../lib/extend\").extendFlat;e.exports={labels:n.labels,label0:n.label0,dlabel:n.dlabel,values:n.values,marker:{colors:n.marker.colors,line:{color:l({},n.marker.line.color,{dflt:null}),width:l({},n.marker.line.width,{dflt:1}),editType:\"calc\"},editType:\"calc\"},text:n.text,hovertext:n.hovertext,scalegroup:l({},n.scalegroup,{}),textinfo:l({},n.textinfo,{flags:[\"label\",\"text\",\"value\",\"percent\"]}),texttemplate:s({editType:\"plot\"},{keys:[\"label\",\"color\",\"value\",\"text\",\"percent\"]}),hoverinfo:l({},a.hoverinfo,{flags:[\"label\",\"text\",\"value\",\"percent\",\"name\"]}),hovertemplate:o({},{keys:[\"label\",\"color\",\"value\",\"text\",\"percent\"]}),textposition:l({},n.textposition,{values:[\"inside\",\"none\"],dflt:\"inside\"}),textfont:n.textfont,insidetextfont:n.insidetextfont,title:{text:n.title.text,font:n.title.font,position:l({},n.title.position,{values:[\"top left\",\"top center\",\"top right\"],dflt:\"top center\"}),editType:\"plot\"},domain:i({name:\"funnelarea\",trace:!0,editType:\"calc\"}),aspectratio:{valType:\"number\",min:0,dflt:1,editType:\"plot\"},baseratio:{valType:\"number\",min:0,max:1,dflt:.333,editType:\"plot\"}}},{\"../../lib/extend\":710,\"../../plots/attributes\":764,\"../../plots/domain\":792,\"../../plots/template_attributes\":843,\"../pie/attributes\":1085}],992:[function(t,e,r){\"use strict\";var n=t(\"../../plots/plots\");r.name=\"funnelarea\",r.plot=function(t,e,a,i){n.plotBasePlot(r.name,t,e,a,i)},r.clean=function(t,e,a,i){n.cleanBasePlot(r.name,t,e,a,i)}},{\"../../plots/plots\":828}],993:[function(t,e,r){\"use strict\";var n=t(\"../pie/calc\");e.exports={calc:function(t,e){return n.calc(t,e)},crossTraceCalc:function(t){n.crossTraceCalc(t,{type:\"funnelarea\"})}}},{\"../pie/calc\":1087}],994:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./attributes\"),i=t(\"../../plots/domain\").defaults,o=t(\"../bar/defaults\").handleText;e.exports=function(t,e,r,s){function l(r,i){return n.coerce(t,e,a,r,i)}var c,u=l(\"values\"),h=n.isArrayOrTypedArray(u),f=l(\"labels\");if(Array.isArray(f)?(c=f.length,h&&(c=Math.min(c,u.length))):h&&(c=u.length,l(\"label0\"),l(\"dlabel\")),c){e._length=c,l(\"marker.line.width\")&&l(\"marker.line.color\",s.paper_bgcolor),l(\"marker.colors\"),l(\"scalegroup\");var p,d=l(\"text\"),g=l(\"texttemplate\");if(g||(p=l(\"textinfo\",Array.isArray(d)?\"text+percent\":\"percent\")),l(\"hovertext\"),l(\"hovertemplate\"),g||p&&\"none\"!==p){var v=l(\"textposition\");o(t,e,s,l,v,{moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!1,moduleHasCliponaxis:!1,moduleHasTextangle:!1,moduleHasInsideanchor:!1})}i(e,s,l),l(\"title.text\")&&(l(\"title.position\"),n.coerceFont(l,\"title.font\",s.font)),l(\"aspectratio\"),l(\"baseratio\")}else e.visible=!1}},{\"../../lib\":719,\"../../plots/domain\":792,\"../bar/defaults\":862,\"./attributes\":991}],995:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"funnelarea\",basePlotModule:t(\"./base_plot\"),categories:[\"pie-like\",\"funnelarea\",\"showLegend\"],attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\"),supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\").calc,crossTraceCalc:t(\"./calc\").crossTraceCalc,plot:t(\"./plot\"),style:t(\"./style\"),styleOne:t(\"../pie/style_one\"),meta:{}}},{\"../pie/style_one\":1096,\"./attributes\":991,\"./base_plot\":992,\"./calc\":993,\"./defaults\":994,\"./layout_attributes\":996,\"./layout_defaults\":997,\"./plot\":998,\"./style\":999}],996:[function(t,e,r){\"use strict\";var n=t(\"../pie/layout_attributes\").hiddenlabels;e.exports={hiddenlabels:n,funnelareacolorway:{valType:\"colorlist\",editType:\"calc\"},extendfunnelareacolors:{valType:\"boolean\",dflt:!0,editType:\"calc\"}}},{\"../pie/layout_attributes\":1092}],997:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./layout_attributes\");e.exports=function(t,e){function r(r,i){return n.coerce(t,e,a,r,i)}r(\"hiddenlabels\"),r(\"funnelareacolorway\",e.colorway),r(\"extendfunnelareacolors\")}},{\"../../lib\":719,\"./layout_attributes\":996}],998:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/drawing\"),i=t(\"../../lib\"),o=t(\"../../lib/svg_text_utils\"),s=t(\"../bar/plot\").toMoveInsideBar,l=t(\"../pie/helpers\"),c=t(\"../pie/plot\"),u=c.attachFxHandlers,h=c.determineInsideTextFont,f=c.layoutAreas,p=c.prerenderTitles,d=c.positionTitleOutside;function g(t,e){return\"l\"+(e[0]-t[0])+\",\"+(e[1]-t[1])}e.exports=function(t,e){var r=t._fullLayout;p(e,t),f(e,r._size),i.makeTraceGroups(r._funnelarealayer,e,\"trace\").each(function(e){var f=n.select(this),p=e[0],v=p.trace;!function(t){if(!t.length)return;var e=t[0],r=e.trace,n=r.aspectratio,a=r.baseratio;a>.999&&(a=.999);var i,o=Math.pow(a,2),s=e.vTotal,l=s,c=s*o/(1-o)/s;function u(){var t,e={x:t=Math.sqrt(c),y:-t};return[e.x,e.y]}var h,f,p=[];for(p.push(u()),h=t.length-1;h>-1;h--)if(!(f=t[h]).hidden){var d=f.v/l;c+=d,p.push(u())}var g=1/0,v=-1/0;for(h=0;h<p.length;h++)i=p[h],g=Math.min(g,i[1]),v=Math.max(v,i[1]);for(h=0;h<p.length;h++)p[h][1]-=(v+g)/2;var m=p[p.length-1][0],y=e.r,x=(v-g)/2,b=y/m,_=y/x*n;for(e.r=_*x,h=0;h<p.length;h++)p[h][0]*=b,p[h][1]*=_;var w=[-(i=p[0])[0],i[1]],k=[i[0],i[1]],T=0;for(h=t.length-1;h>-1;h--)if(!(f=t[h]).hidden){var A=p[T+=1][0],M=p[T][1];f.TL=[-A,M],f.TR=[A,M],f.BL=w,f.BR=k,f.pxmid=(S=f.TR,E=f.BR,[.5*(S[0]+E[0]),.5*(S[1]+E[1])]),w=f.TL,k=f.TR}var S,E}(e),f.each(function(){var f=n.select(this).selectAll(\"g.slice\").data(e);f.enter().append(\"g\").classed(\"slice\",!0),f.exit().remove(),f.each(function(r){if(r.hidden)n.select(this).selectAll(\"path,g\").remove();else{r.pointNumber=r.i,r.curveNumber=v.index;var f=p.cx,d=p.cy,m=n.select(this),y=m.selectAll(\"path.surface\").data([r]);y.enter().append(\"path\").classed(\"surface\",!0).style({\"pointer-events\":\"all\"}),m.call(u,t,e);var x=\"M\"+(f+r.TR[0])+\",\"+(d+r.TR[1])+g(r.TR,r.BR)+g(r.BR,r.BL)+g(r.BL,r.TL)+\"Z\";y.attr(\"d\",x),c.formatSliceLabel(t,r,p);var b=l.castOption(v.textposition,r.pts),_=m.selectAll(\"g.slicetext\").data(r.text&&\"none\"!==b?[0]:[]);_.enter().append(\"g\").classed(\"slicetext\",!0),_.exit().remove(),_.each(function(){var e=i.ensureSingle(n.select(this),\"text\",\"\",function(t){t.attr(\"data-notex\",1)});e.text(r.text).attr({class:\"slicetext\",transform:\"\",\"text-anchor\":\"middle\"}).call(a.font,h(v,r,t._fullLayout.font)).call(o.convertToTspans,t);var l,c,u,p=a.bBox(e.node()),g=Math.min(r.BL[1],r.BR[1]),m=Math.max(r.TL[1],r.TR[1]);c=Math.max(r.TL[0],r.BL[0]),u=Math.min(r.TR[0],r.BR[0]),l=i.getTextTransform(s(c,u,g,m,p,{isHorizontal:!0,constrained:!0,angle:0,anchor:\"middle\"})),e.attr(\"transform\",\"translate(\"+f+\",\"+d+\")\"+l)})}});var m=n.select(this).selectAll(\"g.titletext\").data(v.title.text?[0]:[]);m.enter().append(\"g\").classed(\"titletext\",!0),m.exit().remove(),m.each(function(){var e=i.ensureSingle(n.select(this),\"text\",\"\",function(t){t.attr(\"data-notex\",1)}),s=v.title.text;v._meta&&(s=i.templateString(s,v._meta)),e.text(s).attr({class:\"titletext\",transform:\"\",\"text-anchor\":\"middle\"}).call(a.font,v.title.font).call(o.convertToTspans,t);var l=d(p,r._size);e.attr(\"transform\",\"translate(\"+l.x+\",\"+l.y+\")\"+(l.scale<1?\"scale(\"+l.scale+\")\":\"\")+\"translate(\"+l.tx+\",\"+l.ty+\")\")})})})}},{\"../../components/drawing\":615,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../bar/plot\":868,\"../pie/helpers\":1090,\"../pie/plot\":1094,d3:164}],999:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../pie/style_one\");e.exports=function(t){t._fullLayout._funnelarealayer.selectAll(\".trace\").each(function(t){var e=t[0].trace,r=n.select(this);r.style({opacity:e.opacity}),r.selectAll(\"path.surface\").each(function(t){n.select(this).call(a,t,e)})})}},{\"../pie/style_one\":1096,d3:164}],1000:[function(t,e,r){\"use strict\";var n=t(\"../scatter/attributes\"),a=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"../../components/colorscale/attributes\"),o=(t(\"../../constants/docs\").FORMAT_LINK,t(\"../../lib/extend\").extendFlat);e.exports=o({z:{valType:\"data_array\",editType:\"calc\"},x:o({},n.x,{impliedEdits:{xtype:\"array\"}}),x0:o({},n.x0,{impliedEdits:{xtype:\"scaled\"}}),dx:o({},n.dx,{impliedEdits:{xtype:\"scaled\"}}),y:o({},n.y,{impliedEdits:{ytype:\"array\"}}),y0:o({},n.y0,{impliedEdits:{ytype:\"scaled\"}}),dy:o({},n.dy,{impliedEdits:{ytype:\"scaled\"}}),text:{valType:\"data_array\",editType:\"calc\"},hovertext:{valType:\"data_array\",editType:\"calc\"},transpose:{valType:\"boolean\",dflt:!1,editType:\"calc\"},xtype:{valType:\"enumerated\",values:[\"array\",\"scaled\"],editType:\"calc+clearAxisTypes\"},ytype:{valType:\"enumerated\",values:[\"array\",\"scaled\"],editType:\"calc+clearAxisTypes\"},zsmooth:{valType:\"enumerated\",values:[\"fast\",\"best\",!1],dflt:!1,editType:\"calc\"},connectgaps:{valType:\"boolean\",dflt:!1,editType:\"calc\"},xgap:{valType:\"number\",dflt:0,min:0,editType:\"plot\"},ygap:{valType:\"number\",dflt:0,min:0,editType:\"plot\"},zhoverformat:{valType:\"string\",dflt:\"\",editType:\"none\"},hovertemplate:a()},{transforms:void 0},i(\"\",{cLetter:\"z\",autoColorDflt:!1}))},{\"../../components/colorscale/attributes\":601,\"../../constants/docs\":690,\"../../lib/extend\":710,\"../../plots/template_attributes\":843,\"../scatter/attributes\":1111}],1001:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\"),i=t(\"../../plots/cartesian/axes\"),o=t(\"../histogram2d/calc\"),s=t(\"../../components/colorscale/calc\"),l=t(\"./convert_column_xyz\"),c=t(\"./clean_2d_array\"),u=t(\"./interp2d\"),h=t(\"./find_empties\"),f=t(\"./make_bound_array\");e.exports=function(t,e){var r,p,d,g,v,m,y,x,b,_=i.getFromId(t,e.xaxis||\"x\"),w=i.getFromId(t,e.yaxis||\"y\"),k=n.traceIs(e,\"contour\"),T=n.traceIs(e,\"histogram\"),A=n.traceIs(e,\"gl2d\"),M=k?\"best\":e.zsmooth;if(_._minDtick=0,w._minDtick=0,T)r=(b=o(t,e)).x,p=b.x0,d=b.dx,g=b.y,v=b.y0,m=b.dy,y=b.z;else{var S=e.z;a.isArray1D(S)?(l(e,_,w,\"x\",\"y\",[\"z\"]),r=e._x,g=e._y,S=e._z):(r=e._x=e.x?_.makeCalcdata(e,\"x\"):[],g=e._y=e.y?w.makeCalcdata(e,\"y\"):[]),p=e.x0,d=e.dx,v=e.y0,m=e.dy,y=c(S,e,_,w),(k||e.connectgaps)&&(e._emptypoints=h(y),u(y,e._emptypoints))}function E(t){M=e._input.zsmooth=e.zsmooth=!1,a.warn('cannot use zsmooth: \"fast\": '+t)}if(\"fast\"===M)if(\"log\"===_.type||\"log\"===w.type)E(\"log axis found\");else if(!T){if(r.length){var C=(r[r.length-1]-r[0])/(r.length-1),L=Math.abs(C/100);for(x=0;x<r.length-1;x++)if(Math.abs(r[x+1]-r[x]-C)>L){E(\"x scale is not linear\");break}}if(g.length&&\"fast\"===M){var P=(g[g.length-1]-g[0])/(g.length-1),O=Math.abs(P/100);for(x=0;x<g.length-1;x++)if(Math.abs(g[x+1]-g[x]-P)>O){E(\"y scale is not linear\");break}}}var I=a.maxRowLength(y),z=\"scaled\"===e.xtype?\"\":r,D=f(e,z,p,d,I,_),R=\"scaled\"===e.ytype?\"\":g,F=f(e,R,v,m,y.length,w);A||(e._extremes[_._id]=i.findExtremes(_,D),e._extremes[w._id]=i.findExtremes(w,F));var B={x:D,y:F,z:y,text:e._text||e.text,hovertext:e._hovertext||e.hovertext};if(z&&z.length===D.length-1&&(B.xCenter=z),R&&R.length===F.length-1&&(B.yCenter=R),T&&(B.xRanges=b.xRanges,B.yRanges=b.yRanges,B.pts=b.pts),k||s(t,e,{vals:y,cLetter:\"z\"}),k&&e.contours&&\"heatmap\"===e.contours.coloring){var N={type:\"contour\"===e.type?\"heatmap\":\"histogram2d\",xcalendar:e.xcalendar,ycalendar:e.ycalendar};B.xfill=f(N,z,p,d,I,_),B.yfill=f(N,R,v,m,y.length,w)}return[B]}},{\"../../components/colorscale/calc\":602,\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../../registry\":848,\"../histogram2d/calc\":1032,\"./clean_2d_array\":1002,\"./convert_column_xyz\":1004,\"./find_empties\":1006,\"./interp2d\":1009,\"./make_bound_array\":1010}],1002:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\"),i=t(\"../../constants/numerical\").BADNUM;e.exports=function(t,e,r,o){var s,l,c,u,h,f;function p(t){if(n(t))return+t}if(e&&e.transpose){for(s=0,h=0;h<t.length;h++)s=Math.max(s,t[h].length);if(0===s)return!1;c=function(t){return t.length},u=function(t,e,r){return(t[r]||[])[e]}}else s=t.length,c=function(t,e){return t[e].length},u=function(t,e,r){return(t[e]||[])[r]};var d=function(t,e,r){return e===i||r===i?i:u(t,e,r)};function g(t){if(e&&\"carpet\"!==e.type&&\"contourcarpet\"!==e.type&&t&&\"category\"===t.type&&e[\"_\"+t._id.charAt(0)].length){var r=t._id.charAt(0),n={},o=e[\"_\"+r+\"CategoryMap\"]||e[r];for(h=0;h<o.length;h++)n[o[h]]=h;return function(e){var r=n[t._categories[e]];return r+1?r:i}}return a.identity}var v=g(r),m=g(o);o&&\"category\"===o.type&&(s=o._categories.length);var y=new Array(s);for(h=0;h<s;h++)for(l=r&&\"category\"===r.type?r._categories.length:c(t,h),y[h]=new Array(l),f=0;f<l;f++)y[h][f]=p(d(t,m(h),v(f)));return y}},{\"../../constants/numerical\":695,\"../../lib\":719,\"fast-isnumeric\":226}],1003:[function(t,e,r){\"use strict\";e.exports={min:\"zmin\",max:\"zmax\"}},{}],1004:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../constants/numerical\").BADNUM;e.exports=function(t,e,r,i,o,s){var l,c,u,h,f=t._length,p=e.makeCalcdata(t,i),d=r.makeCalcdata(t,o),g=t.text,v=void 0!==g&&n.isArray1D(g),m=t.hovertext,y=void 0!==m&&n.isArray1D(m),x=n.distinctVals(p),b=x.vals,_=n.distinctVals(d),w=_.vals,k=[];for(l=0;l<s.length;l++)k[l]=n.init2dArray(w.length,b.length);for(v&&(u=n.init2dArray(w.length,b.length)),y&&(h=n.init2dArray(w.length,b.length)),l=0;l<f;l++)if(p[l]!==a&&d[l]!==a){var T=n.findBin(p[l]+x.minDiff/2,b),A=n.findBin(d[l]+_.minDiff/2,w);for(c=0;c<s.length;c++){var M=t[s[c]];k[c][A][T]=M[l]}v&&(u[A][T]=g[l]),y&&(h[A][T]=m[l])}for(t[\"_\"+i]=b,t[\"_\"+o]=w,c=0;c<s.length;c++)t[\"_\"+s[c]]=k[c];v&&(t._text=u),y&&(t._hovertext=h),e&&\"category\"===e.type&&(t[\"_\"+i+\"CategoryMap\"]=b.map(function(t){return e._categories[t]})),r&&\"category\"===r.type&&(t[\"_\"+o+\"CategoryMap\"]=w.map(function(t){return r._categories[t]}))}},{\"../../constants/numerical\":695,\"../../lib\":719}],1005:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./xyz_defaults\"),i=t(\"./style_defaults\"),o=t(\"../../components/colorscale/defaults\"),s=t(\"./attributes\");e.exports=function(t,e,r,l){function c(r,a){return n.coerce(t,e,s,r,a)}a(t,e,c,l)?(c(\"text\"),c(\"hovertext\"),c(\"hovertemplate\"),i(t,e,c,l),c(\"connectgaps\",n.isArray1D(e.z)&&!1!==e.zsmooth),o(t,e,l,c,{prefix:\"\",cLetter:\"z\"})):e.visible=!1}},{\"../../components/colorscale/defaults\":604,\"../../lib\":719,\"./attributes\":1e3,\"./style_defaults\":1013,\"./xyz_defaults\":1014}],1006:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").maxRowLength;e.exports=function(t){var e,r,a,i,o,s,l,c,u=[],h={},f=[],p=t[0],d=[],g=[0,0,0],v=n(t);for(r=0;r<t.length;r++)for(e=d,d=p,p=t[r+1]||[],a=0;a<v;a++)void 0===d[a]&&((s=(void 0!==d[a-1]?1:0)+(void 0!==d[a+1]?1:0)+(void 0!==e[a]?1:0)+(void 0!==p[a]?1:0))?(0===r&&s++,0===a&&s++,r===t.length-1&&s++,a===d.length-1&&s++,s<4&&(h[[r,a]]=[r,a,s]),u.push([r,a,s])):f.push([r,a]));for(;f.length;){for(l={},c=!1,o=f.length-1;o>=0;o--)(s=((h[[(r=(i=f[o])[0])-1,a=i[1]]]||g)[2]+(h[[r+1,a]]||g)[2]+(h[[r,a-1]]||g)[2]+(h[[r,a+1]]||g)[2])/20)&&(l[i]=[r,a,s],f.splice(o,1),c=!0);if(!c)throw\"findEmpties iterated with no new neighbors\";for(i in l)h[i]=l[i],u.push(l[i])}return u.sort(function(t,e){return e[2]-t[2]})}},{\"../../lib\":719}],1007:[function(t,e,r){\"use strict\";var n=t(\"../../components/fx\"),a=t(\"../../lib\"),i=t(\"../../plots/cartesian/axes\"),o=t(\"../../components/colorscale\").extractOpts;e.exports=function(t,e,r,s,l,c){var u,h,f,p,d=t.cd[0],g=d.trace,v=t.xa,m=t.ya,y=d.x,x=d.y,b=d.z,_=d.xCenter,w=d.yCenter,k=d.zmask,T=g.zhoverformat,A=y,M=x;if(!1!==t.index){try{f=Math.round(t.index[1]),p=Math.round(t.index[0])}catch(e){return void a.error(\"Error hovering on heatmap, pointNumber must be [row,col], found:\",t.index)}if(f<0||f>=b[0].length||p<0||p>b.length)return}else{if(n.inbox(e-y[0],e-y[y.length-1],0)>0||n.inbox(r-x[0],r-x[x.length-1],0)>0)return;if(c){var S;for(A=[2*y[0]-y[1]],S=1;S<y.length;S++)A.push((y[S]+y[S-1])/2);for(A.push([2*y[y.length-1]-y[y.length-2]]),M=[2*x[0]-x[1]],S=1;S<x.length;S++)M.push((x[S]+x[S-1])/2);M.push([2*x[x.length-1]-x[x.length-2]])}f=Math.max(0,Math.min(A.length-2,a.findBin(e,A))),p=Math.max(0,Math.min(M.length-2,a.findBin(r,M)))}var E=v.c2p(y[f]),C=v.c2p(y[f+1]),L=m.c2p(x[p]),P=m.c2p(x[p+1]);c?(C=E,u=y[f],P=L,h=x[p]):(u=_?_[f]:(y[f]+y[f+1])/2,h=w?w[p]:(x[p]+x[p+1])/2,v&&\"category\"===v.type&&(u=y[f]),m&&\"category\"===m.type&&(h=x[p]),g.zsmooth&&(E=C=v.c2p(u),L=P=m.c2p(h)));var O,I=b[p][f];k&&!k[p][f]&&(I=void 0),Array.isArray(d.hovertext)&&Array.isArray(d.hovertext[p])?O=d.hovertext[p][f]:Array.isArray(d.text)&&Array.isArray(d.text[p])&&(O=d.text[p][f]);var z=o(g),D={type:\"linear\",range:[z.min,z.max],hoverformat:T,_separators:v._separators,_numFormat:v._numFormat},R=i.tickText(D,I,\"hover\").text;return[a.extendFlat(t,{index:[p,f],distance:t.maxHoverDistance,spikeDistance:t.maxSpikeDistance,x0:E,x1:C,y0:L,y1:P,xLabelVal:u,yLabelVal:h,zLabelVal:I,zLabel:R,text:O})]}},{\"../../components/colorscale\":606,\"../../components/fx\":632,\"../../lib\":719,\"../../plots/cartesian/axes\":767}],1008:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),plot:t(\"./plot\"),colorbar:t(\"./colorbar\"),style:t(\"./style\"),hoverPoints:t(\"./hover\"),moduleType:\"trace\",name:\"heatmap\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"2dMap\"],meta:{}}},{\"../../plots/cartesian\":778,\"./attributes\":1e3,\"./calc\":1001,\"./colorbar\":1003,\"./defaults\":1005,\"./hover\":1007,\"./plot\":1011,\"./style\":1012}],1009:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=[[-1,0],[1,0],[0,-1],[0,1]];function i(t){return.5-.25*Math.min(1,.5*t)}function o(t,e,r){var n,i,o,s,l,c,u,h,f,p,d,g,v,m=0;for(s=0;s<e.length;s++){for(i=(n=e[s])[0],o=n[1],d=t[i][o],p=0,f=0,l=0;l<4;l++)(u=t[i+(c=a[l])[0]])&&void 0!==(h=u[o+c[1]])&&(0===p?g=v=h:(g=Math.min(g,h),v=Math.max(v,h)),f++,p+=h);if(0===f)throw\"iterateInterp2d order is wrong: no defined neighbors\";t[i][o]=p/f,void 0===d?f<4&&(m=1):(t[i][o]=(1+r)*t[i][o]-r*d,v>g&&(m=Math.max(m,Math.abs(t[i][o]-d)/(v-g))))}return m}e.exports=function(t,e){var r,a=1;for(o(t,e),r=0;r<e.length&&!(e[r][2]<4);r++);for(e=e.slice(r),r=0;r<100&&a>.01;r++)a=o(t,e,i(a));return a>.01&&n.log(\"interp2d didn't converge quickly\",a),t}},{\"../../lib\":719}],1010:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\").isArrayOrTypedArray;e.exports=function(t,e,r,i,o,s){var l,c,u,h=[],f=n.traceIs(t,\"contour\"),p=n.traceIs(t,\"histogram\"),d=n.traceIs(t,\"gl2d\");if(a(e)&&e.length>1&&!p&&\"category\"!==s.type){var g=e.length;if(!(g<=o))return f?e.slice(0,o):e.slice(0,o+1);if(f||d)h=e.slice(0,o);else if(1===o)h=[e[0]-.5,e[0]+.5];else{for(h=[1.5*e[0]-.5*e[1]],u=1;u<g;u++)h.push(.5*(e[u-1]+e[u]));h.push(1.5*e[g-1]-.5*e[g-2])}if(g<o){var v=h[h.length-1],m=v-h[h.length-2];for(u=g;u<o;u++)v+=m,h.push(v)}}else{var y=t[s._id.charAt(0)+\"calendar\"];if(p)l=s.r2c(r,0,y);else if(a(e)&&1===e.length)l=e[0];else if(void 0===r)l=0;else{l=(\"log\"===s.type?s.d2c:s.r2c)(r,0,y)}for(c=i||1,u=f||d?0:-.5;u<o;u++)h.push(l+c*u)}return h}},{\"../../lib\":719,\"../../registry\":848}],1011:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"tinycolor2\"),i=t(\"../../registry\"),o=t(\"../../lib\"),s=t(\"../../components/colorscale\").makeColorScaleFuncFromTrace,l=t(\"../../constants/xmlns_namespaces\");function c(t,e){var r=e.length-2,n=o.constrain(o.findBin(t,e),0,r),a=e[n],i=e[n+1],s=o.constrain(n+(t-a)/(i-a)-.5,0,r),l=Math.round(s),c=Math.abs(s-l);return s&&s!==r&&c?{bin0:l,frac:c,bin1:Math.round(l+c/(s-l))}:{bin0:l,bin1:l,frac:0}}function u(t,e){var r=e.length-1,n=o.constrain(o.findBin(t,e),0,r),a=e[n],i=(t-a)/(e[n+1]-a)||0;return i<=0?{bin0:n,bin1:n,frac:0}:i<.5?{bin0:n,bin1:n+1,frac:i}:{bin0:n+1,bin1:n,frac:1-i}}function h(t,e,r){t[e]=r[0],t[e+1]=r[1],t[e+2]=r[2],t[e+3]=Math.round(255*r[3])}e.exports=function(t,e,r,f){var p=e.xaxis,d=e.yaxis;o.makeTraceGroups(f,r,\"hm\").each(function(e){var r,f,g,v,m,y,x=n.select(this),b=e[0],_=b.trace,w=b.z,k=b.x,T=b.y,A=b.xCenter,M=b.yCenter,S=i.traceIs(_,\"contour\"),E=S?\"best\":_.zsmooth,C=w.length,L=o.maxRowLength(w),P=!1,O=!1;for(y=0;void 0===r&&y<k.length-1;)r=p.c2p(k[y]),y++;for(y=k.length-1;void 0===f&&y>0;)f=p.c2p(k[y]),y--;for(f<r&&(g=f,f=r,r=g,P=!0),y=0;void 0===v&&y<T.length-1;)v=d.c2p(T[y]),y++;for(y=T.length-1;void 0===m&&y>0;)m=d.c2p(T[y]),y--;if(m<v&&(g=v,v=m,m=g,O=!0),S&&(A=k,M=T,k=b.xfill,T=b.yfill),\"fast\"!==E){var I=\"best\"===E?0:.5;r=Math.max(-I*p._length,r),f=Math.min((1+I)*p._length,f),v=Math.max(-I*d._length,v),m=Math.min((1+I)*d._length,m)}var z=Math.round(f-r),D=Math.round(m-v);if(z<=0||D<=0){x.selectAll(\"image\").data([]).exit().remove()}else{var R,F;\"fast\"===E?(R=L,F=C):(R=z,F=D);var B=document.createElement(\"canvas\");B.width=R,B.height=F;var N,j,V=B.getContext(\"2d\"),U=s(_,{noNumericCheck:!0,returnArray:!0});\"fast\"===E?(N=P?function(t){return L-1-t}:o.identity,j=O?function(t){return C-1-t}:o.identity):(N=function(t){return o.constrain(Math.round(p.c2p(k[t])-r),0,z)},j=function(t){return o.constrain(Math.round(d.c2p(T[t])-v),0,D)});var q,H,G,Y,W,X=j(0),Z=[X,X],J=P?0:1,K=O?0:1,Q=0,$=0,tt=0,et=0;if(E){var rt,nt=0;try{rt=new Uint8Array(z*D*4)}catch(t){rt=new Array(z*D*4)}if(\"best\"===E){var at,it,ot,st=A||k,lt=M||T,ct=new Array(st.length),ut=new Array(lt.length),ht=new Array(z),ft=A?u:c,pt=M?u:c;for(y=0;y<st.length;y++)ct[y]=Math.round(p.c2p(st[y])-r);for(y=0;y<lt.length;y++)ut[y]=Math.round(d.c2p(lt[y])-v);for(y=0;y<z;y++)ht[y]=ft(y,ct);for(H=0;H<D;H++)for(it=w[(at=pt(H,ut)).bin0],ot=w[at.bin1],y=0;y<z;y++,nt+=4)h(rt,nt,W=Tt(it,ot,ht[y],at))}else for(H=0;H<C;H++)for(Y=w[H],Z=j(H),y=0;y<z;y++)W=kt(Y[y],1),h(rt,nt=4*(Z*z+N(y)),W);var dt=V.createImageData(z,D);try{dt.data.set(rt)}catch(t){var gt=dt.data,vt=gt.length;for(H=0;H<vt;H++)gt[H]=rt[H]}V.putImageData(dt,0,0)}else{var mt=_.xgap,yt=_.ygap,xt=Math.floor(mt/2),bt=Math.floor(yt/2);for(H=0;H<C;H++)if(Y=w[H],Z.reverse(),Z[K]=j(H+1),Z[0]!==Z[1]&&void 0!==Z[0]&&void 0!==Z[1])for(q=[G=N(0),G],y=0;y<L;y++)q.reverse(),q[J]=N(y+1),q[0]!==q[1]&&void 0!==q[0]&&void 0!==q[1]&&(W=kt(Y[y],(q[1]-q[0])*(Z[1]-Z[0])),V.fillStyle=\"rgba(\"+W.join(\",\")+\")\",V.fillRect(q[0]+xt,Z[0]+bt,q[1]-q[0]-mt,Z[1]-Z[0]-yt))}$=Math.round($/Q),tt=Math.round(tt/Q),et=Math.round(et/Q);var _t=a(\"rgb(\"+$+\",\"+tt+\",\"+et+\")\");t._hmpixcount=(t._hmpixcount||0)+Q,t._hmlumcount=(t._hmlumcount||0)+Q*_t.getLuminance();var wt=x.selectAll(\"image\").data(e);wt.enter().append(\"svg:image\").attr({xmlns:l.svg,preserveAspectRatio:\"none\"}),wt.attr({height:D,width:z,x:r,y:v,\"xlink:href\":B.toDataURL(\"image/png\")})}function kt(t,e){if(void 0!==t){var r=U(t);return r[0]=Math.round(r[0]),r[1]=Math.round(r[1]),r[2]=Math.round(r[2]),Q+=e,$+=r[0]*e,tt+=r[1]*e,et+=r[2]*e,r}return[0,0,0,0]}function Tt(t,e,r,n){var a=t[r.bin0];if(void 0===a)return kt(void 0,1);var i,o=t[r.bin1],s=e[r.bin0],l=e[r.bin1],c=o-a||0,u=s-a||0;return i=void 0===o?void 0===l?0:void 0===s?2*(l-a):2*(2*l-s-a)/3:void 0===l?void 0===s?0:2*(2*a-o-s)/3:void 0===s?2*(2*l-o-a)/3:l+a-o-s,kt(a+r.frac*c+n.frac*(u+r.frac*i))}})}},{\"../../components/colorscale\":606,\"../../constants/xmlns_namespaces\":696,\"../../lib\":719,\"../../registry\":848,d3:164,tinycolor2:538}],1012:[function(t,e,r){\"use strict\";var n=t(\"d3\");e.exports=function(t){n.select(t).selectAll(\".hm image\").style(\"opacity\",function(t){return t.trace.opacity})}},{d3:164}],1013:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){!1===r(\"zsmooth\")&&(r(\"xgap\"),r(\"ygap\")),r(\"zhoverformat\")}},{}],1014:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\"),i=t(\"../../registry\");function o(t,e){var r=e(t);return\"scaled\"===(r?e(t+\"type\",\"array\"):\"scaled\")&&(e(t+\"0\"),e(\"d\"+t)),r}e.exports=function(t,e,r,s,l,c){var u,h,f=r(\"z\");if(l=l||\"x\",c=c||\"y\",void 0===f||!f.length)return 0;if(a.isArray1D(t.z)){u=r(l),h=r(c);var p=a.minRowLength(u),d=a.minRowLength(h);if(0===p||0===d)return 0;e._length=Math.min(p,d,f.length)}else{if(u=o(l,r),h=o(c,r),!function(t){for(var e,r=!0,i=!1,o=!1,s=0;s<t.length;s++){if(e=t[s],!a.isArrayOrTypedArray(e)){r=!1;break}e.length>0&&(i=!0);for(var l=0;l<e.length;l++)if(n(e[l])){o=!0;break}}return r&&i&&o}(f))return 0;r(\"transpose\"),e._length=null}return i.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[l,c],s),!0}},{\"../../lib\":719,\"../../registry\":848,\"fast-isnumeric\":226}],1015:[function(t,e,r){\"use strict\";for(var n=t(\"../heatmap/attributes\"),a=t(\"../../components/colorscale/attributes\"),i=t(\"../../lib/extend\").extendFlat,o=t(\"../../plot_api/edit_types\").overrideAll,s=[\"z\",\"x\",\"x0\",\"dx\",\"y\",\"y0\",\"dy\",\"text\",\"transpose\",\"xtype\",\"ytype\"],l={},c=0;c<s.length;c++){var u=s[c];l[u]=n[u]}i(l,a(\"\",{cLetter:\"z\",autoColorDflt:!1})),e.exports=o(l,\"calc\",\"nested\")},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../heatmap/attributes\":1e3}],1016:[function(t,e,r){\"use strict\";var n=t(\"gl-heatmap2d\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"../../lib/str2rgbarray\");function o(t,e){this.scene=t,this.uid=e,this.type=\"heatmapgl\",this.name=\"\",this.hoverinfo=\"all\",this.xData=[],this.yData=[],this.zData=[],this.textLabels=[],this.idToIndex=[],this.bounds=[0,0,0,0],this.options={z:[],x:[],y:[],shape:[0,0],colorLevels:[0],colorValues:[0,0,0,1]},this.heatmap=n(t.glplot,this.options),this.heatmap._trace=this}var s=o.prototype;s.handlePick=function(t){var e=this.options,r=e.shape,n=t.pointId,a=n%r[0],i=Math.floor(n/r[0]),o=n;return{trace:this,dataCoord:t.dataCoord,traceCoord:[e.x[a],e.y[i],e.z[o]],textLabel:this.textLabels[n],name:this.name,pointIndex:[i,a],hoverinfo:this.hoverinfo}},s.update=function(t,e){var r=e[0];this.index=t.index,this.name=t.name,this.hoverinfo=t.hoverinfo;var n=r.z;this.options.z=[].concat.apply([],n);var o=n[0].length,s=n.length;this.options.shape=[o,s],this.options.x=r.x,this.options.y=r.y;var l=function(t){for(var e=t.colorscale,r=t.zmin,n=t.zmax,a=e.length,o=new Array(a),s=new Array(4*a),l=0;l<a;l++){var c=e[l],u=i(c[1]);o[l]=r+c[0]*(n-r);for(var h=0;h<4;h++)s[4*l+h]=u[h]}return{colorLevels:o,colorValues:s}}(t);this.options.colorLevels=l.colorLevels,this.options.colorValues=l.colorValues,this.textLabels=[].concat.apply([],t.text),this.heatmap.update(this.options);var c=this.scene.xaxis,u=this.scene.yaxis;t._extremes[c._id]=a.findExtremes(c,r.x),t._extremes[u._id]=a.findExtremes(u,r.y)},s.dispose=function(){this.heatmap.dispose()},e.exports=function(t,e,r){var n=new o(t,e.uid);return n.update(e,r),n}},{\"../../lib/str2rgbarray\":742,\"../../plots/cartesian/axes\":767,\"gl-heatmap2d\":252}],1017:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"../heatmap/defaults\"),colorbar:t(\"../heatmap/colorbar\"),calc:t(\"../heatmap/calc\"),plot:t(\"./convert\"),moduleType:\"trace\",name:\"heatmapgl\",basePlotModule:t(\"../../plots/gl2d\"),categories:[\"gl\",\"gl2d\",\"2dMap\"],meta:{}}},{\"../../plots/gl2d\":805,\"../heatmap/calc\":1001,\"../heatmap/colorbar\":1003,\"../heatmap/defaults\":1005,\"./attributes\":1015,\"./convert\":1016}],1018:[function(t,e,r){\"use strict\";var n=t(\"../bar/attributes\"),a=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"./bin_attributes\"),o=t(\"./constants\"),s=t(\"../../lib/extend\").extendFlat;e.exports={x:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},y:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},text:s({},n.text,{}),hovertext:s({},n.hovertext,{}),orientation:n.orientation,histfunc:{valType:\"enumerated\",values:[\"count\",\"sum\",\"avg\",\"min\",\"max\"],dflt:\"count\",editType:\"calc\"},histnorm:{valType:\"enumerated\",values:[\"\",\"percent\",\"probability\",\"density\",\"probability density\"],dflt:\"\",editType:\"calc\"},cumulative:{enabled:{valType:\"boolean\",dflt:!1,editType:\"calc\"},direction:{valType:\"enumerated\",values:[\"increasing\",\"decreasing\"],dflt:\"increasing\",editType:\"calc\"},currentbin:{valType:\"enumerated\",values:[\"include\",\"exclude\",\"half\"],dflt:\"include\",editType:\"calc\"},editType:\"calc\"},nbinsx:{valType:\"integer\",min:0,dflt:0,editType:\"calc\"},xbins:i(\"x\",!0),nbinsy:{valType:\"integer\",min:0,dflt:0,editType:\"calc\"},ybins:i(\"y\",!0),autobinx:{valType:\"boolean\",dflt:null,editType:\"calc\"},autobiny:{valType:\"boolean\",dflt:null,editType:\"calc\"},bingroup:{valType:\"string\",dflt:\"\",editType:\"calc\"},hovertemplate:a({},{keys:o.eventDataKeys}),marker:n.marker,offsetgroup:n.offsetgroup,alignmentgroup:n.alignmentgroup,selected:n.selected,unselected:n.unselected,_deprecated:{bardir:n._deprecated.bardir}}},{\"../../lib/extend\":710,\"../../plots/template_attributes\":843,\"../bar/attributes\":858,\"./bin_attributes\":1020,\"./constants\":1024}],1019:[function(t,e,r){\"use strict\";e.exports=function(t,e){for(var r=t.length,n=0,a=0;a<r;a++)e[a]?(t[a]/=e[a],n+=t[a]):t[a]=null;return n}},{}],1020:[function(t,e,r){\"use strict\";e.exports=function(t,e){return{start:{valType:\"any\",editType:\"calc\"},end:{valType:\"any\",editType:\"calc\"},size:{valType:\"any\",editType:\"calc\"},editType:\"calc\"}}},{}],1021:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\");e.exports={count:function(t,e,r){return r[t]++,1},sum:function(t,e,r,a){var i=a[e];return n(i)?(i=Number(i),r[t]+=i,i):0},avg:function(t,e,r,a,i){var o=a[e];return n(o)&&(o=Number(o),r[t]+=o,i[t]++),0},min:function(t,e,r,a){var i=a[e];if(n(i)){if(i=Number(i),!n(r[t]))return r[t]=i,i;if(r[t]>i){var o=i-r[t];return r[t]=i,o}}return 0},max:function(t,e,r,a){var i=a[e];if(n(i)){if(i=Number(i),!n(r[t]))return r[t]=i,i;if(r[t]<i){var o=i-r[t];return r[t]=i,o}}return 0}}},{\"fast-isnumeric\":226}],1022:[function(t,e,r){\"use strict\";var n=t(\"../../constants/numerical\"),a=n.ONEAVGYEAR,i=n.ONEAVGMONTH,o=n.ONEDAY,s=n.ONEHOUR,l=n.ONEMIN,c=n.ONESEC,u=t(\"../../plots/cartesian/axes\").tickIncrement;function h(t,e,r,n){if(t*e<=0)return 1/0;for(var a=Math.abs(e-t),i=\"date\"===r.type,o=f(a,i),s=0;s<10;s++){var l=f(80*o,i);if(o===l)break;if(!p(l,t,e,i,r,n))break;o=l}return o}function f(t,e){return e&&t>c?t>o?t>1.1*a?a:t>1.1*i?i:o:t>s?s:t>l?l:c:Math.pow(10,Math.floor(Math.log(t)/Math.LN10))}function p(t,e,r,n,i,s){if(n&&t>o){var l=d(e,i,s),c=d(r,i,s),u=t===a?0:1;return l[u]!==c[u]}return Math.floor(r/t)-Math.floor(e/t)>.1}function d(t,e,r){var n=e.c2d(t,a,r).split(\"-\");return\"\"===n[0]&&(n.unshift(),n[0]=\"-\"+n[0]),n}e.exports=function(t,e,r,n,i){var s,l,c=-1.1*e,f=-.1*e,p=t-f,d=r[0],g=r[1],v=Math.min(h(d+f,d+p,n,i),h(g+f,g+p,n,i)),m=Math.min(h(d+c,d+f,n,i),h(g+c,g+f,n,i));if(v>m&&m<Math.abs(g-d)/4e3?(s=v,l=!1):(s=Math.min(v,m),l=!0),\"date\"===n.type&&s>o){var y=s===a?1:6,x=s===a?\"M12\":\"M1\";return function(e,r){var o=n.c2d(e,a,i),s=o.indexOf(\"-\",y);s>0&&(o=o.substr(0,s));var c=n.d2c(o,0,i);if(c<e){var h=u(c,x,!1,i);(c+h)/2<e+t&&(c=h)}return r&&l?u(c,x,!0,i):c}}return function(e,r){var n=s*Math.round(e/s);return n+s/10<e&&n+.9*s<e+t&&(n+=s),r&&l&&(n-=s),n}}},{\"../../constants/numerical\":695,\"../../plots/cartesian/axes\":767}],1023:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\"),i=t(\"../../registry\"),o=t(\"../../plots/cartesian/axes\"),s=t(\"../bar/arrays_to_calcdata\"),l=t(\"./bin_functions\"),c=t(\"./norm_functions\"),u=t(\"./average\"),h=t(\"./bin_label_vals\");function f(t,e,r,s,l){var c,u,h,p,d,g,v,m=s+\"bins\",y=t._fullLayout,x=e[\"_\"+s+\"bingroup\"],b=y._histogramBinOpts[x],_=\"overlay\"===y.barmode,w=function(t){return r.r2c(t,0,p)},k=function(t){return r.c2r(t,0,p)},T=\"date\"===r.type?function(t){return t||0===t?a.cleanDate(t,null,p):null}:function(t){return n(t)?Number(t):null};function A(t,e,r){e[t+\"Found\"]?(e[t]=T(e[t]),null===e[t]&&(e[t]=r[t])):(g[t]=e[t]=r[t],a.nestedProperty(u[0],m+\".\"+t).set(r[t]))}if(e[\"_\"+s+\"autoBinFinished\"])delete e[\"_\"+s+\"autoBinFinished\"];else{u=b.traces;var M=[],S=!0,E=!1,C=!1;for(c=0;c<u.length;c++)if((h=u[c]).visible){var L=b.dirs[c];d=h[\"_\"+L+\"pos0\"]=r.makeCalcdata(h,L),M=a.concat(M,d),delete h[\"_\"+s+\"autoBinFinished\"],!0===e.visible&&(S?S=!1:(delete h._autoBin,h[\"_\"+s+\"autoBinFinished\"]=1),i.traceIs(h,\"2dMap\")&&(E=!0),\"histogram2dcontour\"===h.type&&(C=!0))}p=u[0][s+\"calendar\"];var P=o.autoBin(M,r,b.nbins,E,p,b.sizeFound&&b.size),O=u[0]._autoBin={};if(g=O[b.dirs[0]]={},C&&(b.size||(P.start=k(o.tickIncrement(w(P.start),P.size,!0,p))),void 0===b.end&&(P.end=k(o.tickIncrement(w(P.end),P.size,!1,p)))),_&&!i.traceIs(e,\"2dMap\")&&0===P._dataSpan&&\"category\"!==r.type&&\"multicategory\"!==r.type){if(l)return[P,d,!0];P=function(t,e,r,n,i){var o,s,l,c=t._fullLayout,u=function(t,e){for(var r=e.xaxis,n=e.yaxis,a=e.orientation,i=[],o=t._fullData,s=0;s<o.length;s++){var l=o[s];\"histogram\"===l.type&&!0===l.visible&&l.orientation===a&&l.xaxis===r&&l.yaxis===n&&i.push(l)}return i}(t,e),h=!1,p=1/0,d=[e];for(o=0;o<u.length;o++)if((s=u[o])===e)h=!0;else if(h){var g=f(t,s,r,n,!0),v=g[0],m=g[2];s[\"_\"+n+\"autoBinFinished\"]=1,s[\"_\"+n+\"pos0\"]=g[1],m?d.push(s):p=Math.min(p,v.size)}else l=c._histogramBinOpts[s[\"_\"+n+\"bingroup\"]],p=Math.min(p,l.size||s[i].size);var y=new Array(d.length);for(o=0;o<d.length;o++)for(var x=d[o][\"_\"+n+\"pos0\"],b=0;b<x.length;b++)if(void 0!==x[b]){y[o]=x[b];break}isFinite(p)||(p=a.distinctVals(y).minDiff);for(o=0;o<d.length;o++){var _=(s=d[o])[n+\"calendar\"],w={start:r.c2r(y[o]-p/2,0,_),end:r.c2r(y[o]+p/2,0,_),size:p};s._input[i]=s[i]=w,(l=c._histogramBinOpts[s[\"_\"+n+\"bingroup\"]])&&a.extendFlat(l,w)}return e[i]}(t,e,r,s,m)}(v=h.cumulative||{}).enabled&&\"include\"!==v.currentbin&&(\"decreasing\"===v.direction?P.start=k(o.tickIncrement(w(P.start),P.size,!0,p)):P.end=k(o.tickIncrement(w(P.end),P.size,!1,p))),b.size=P.size,b.sizeFound||(g.size=P.size,a.nestedProperty(u[0],m+\".size\").set(P.size)),A(\"start\",b,P),A(\"end\",b,P)}d=e[\"_\"+s+\"pos0\"],delete e[\"_\"+s+\"pos0\"];var I=e._input[m]||{},z=a.extendFlat({},b),D=b.start,R=r.r2l(I.start),F=void 0!==R;if((b.startFound||F)&&R!==r.r2l(D)){var B=F?R:a.aggNums(Math.min,null,d),N={type:\"category\"===r.type||\"multicategory\"===r.type?\"linear\":r.type,r2l:r.r2l,dtick:b.size,tick0:D,calendar:p,range:[B,o.tickIncrement(B,b.size,!1,p)].map(r.l2r)},j=o.tickFirst(N);j>r.r2l(B)&&(j=o.tickIncrement(j,b.size,!0,p)),z.start=r.l2r(j),F||a.nestedProperty(e,m+\".start\").set(z.start)}var V=b.end,U=r.r2l(I.end),q=void 0!==U;if((b.endFound||q)&&U!==r.r2l(V)){var H=q?U:a.aggNums(Math.max,null,d);z.end=r.l2r(H),q||a.nestedProperty(e,m+\".start\").set(z.end)}var G=\"autobin\"+s;return!1===e._input[G]&&(e._input[m]=a.extendFlat({},e[m]||{}),delete e._input[G],delete e[G]),[z,d]}e.exports={calc:function(t,e){var r,i,p,d,g=[],v=[],m=o.getFromId(t,\"h\"===e.orientation?e.yaxis:e.xaxis),y=\"h\"===e.orientation?\"y\":\"x\",x={x:\"y\",y:\"x\"}[y],b=e[y+\"calendar\"],_=e.cumulative,w=f(t,e,m,y),k=w[0],T=w[1],A=\"string\"==typeof k.size,M=[],S=A?M:k,E=[],C=[],L=[],P=0,O=e.histnorm,I=e.histfunc,z=-1!==O.indexOf(\"density\");_.enabled&&z&&(O=O.replace(/ ?density$/,\"\"),z=!1);var D,R=\"max\"===I||\"min\"===I?null:0,F=l.count,B=c[O],N=!1,j=function(t){return m.r2c(t,0,b)};for(a.isArrayOrTypedArray(e[x])&&\"count\"!==I&&(D=e[x],N=\"avg\"===I,F=l[I]),r=j(k.start),p=j(k.end)+(r-o.tickIncrement(r,k.size,!1,b))/1e6;r<p&&g.length<1e6&&(i=o.tickIncrement(r,k.size,!1,b),g.push((r+i)/2),v.push(R),L.push([]),M.push(r),z&&E.push(1/(i-r)),N&&C.push(0),!(i<=r));)r=i;M.push(r),A||\"date\"!==m.type||(S={start:j(S.start),end:j(S.end),size:S.size});var V,U=v.length,q=!0,H=1/0,G=1/0,Y={};for(r=0;r<T.length;r++){var W=T[r];(d=a.findBin(W,S))>=0&&d<U&&(P+=F(d,r,v,D,C),q&&L[d].length&&W!==T[L[d][0]]&&(q=!1),L[d].push(r),Y[r]=d,H=Math.min(H,W-M[d]),G=Math.min(G,M[d+1]-W))}q||(V=h(H,G,M,m,b)),N&&(P=u(v,C)),B&&B(v,P,E),_.enabled&&function(t,e,r){var n,a,i;function o(e){i=t[e],t[e]/=2}function s(e){a=t[e],t[e]=i+a/2,i+=a}if(\"half\"===r)if(\"increasing\"===e)for(o(0),n=1;n<t.length;n++)s(n);else for(o(t.length-1),n=t.length-2;n>=0;n--)s(n);else if(\"increasing\"===e){for(n=1;n<t.length;n++)t[n]+=t[n-1];\"exclude\"===r&&(t.unshift(0),t.pop())}else{for(n=t.length-2;n>=0;n--)t[n]+=t[n+1];\"exclude\"===r&&(t.push(0),t.shift())}}(v,_.direction,_.currentbin);var X=Math.min(g.length,v.length),Z=[],J=0,K=X-1;for(r=0;r<X;r++)if(v[r]){J=r;break}for(r=X-1;r>=J;r--)if(v[r]){K=r;break}for(r=J;r<=K;r++)if(n(g[r])&&n(v[r])){var Q={p:g[r],s:v[r],b:0};_.enabled||(Q.pts=L[r],q?Q.ph0=Q.ph1=L[r].length?T[L[r][0]]:g[r]:(Q.ph0=V(M[r]),Q.ph1=V(M[r+1],!0))),Z.push(Q)}return 1===Z.length&&(Z[0].width1=o.tickIncrement(Z[0].p,k.size,!1,b)-Z[0].p),s(Z,e),a.isArrayOrTypedArray(e.selectedpoints)&&a.tagSelected(Z,e,Y),Z},calcAllAutoBins:f}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../../registry\":848,\"../bar/arrays_to_calcdata\":857,\"./average\":1019,\"./bin_functions\":1021,\"./bin_label_vals\":1022,\"./norm_functions\":1030,\"fast-isnumeric\":226}],1024:[function(t,e,r){\"use strict\";e.exports={eventDataKeys:[\"binNumber\"]}},{}],1025:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/cartesian/axis_ids\"),i=t(\"../../registry\").traceIs,o=t(\"../bar/defaults\").handleGroupingDefaults,s=n.nestedProperty,l=a.getAxisGroup,c=[{aStr:{x:\"xbins.start\",y:\"ybins.start\"},name:\"start\"},{aStr:{x:\"xbins.end\",y:\"ybins.end\"},name:\"end\"},{aStr:{x:\"xbins.size\",y:\"ybins.size\"},name:\"size\"},{aStr:{x:\"nbinsx\",y:\"nbinsy\"},name:\"nbins\"}],u=[\"x\",\"y\"];e.exports=function(t,e){var r,h,f,p,d,g,v,m=e._histogramBinOpts={},y=[],x={},b=[];function _(t,e){return n.coerce(r._input,r,r._module.attributes,t,e)}function w(t){return\"v\"===t.orientation?\"x\":\"y\"}function k(t,r,i){var o=t.uid+\"__\"+i;r||(r=o);var s=function(t,r){return a.getFromTrace({_fullLayout:e},t,r).type}(t,i),l=t[i+\"calendar\"],c=m[r],u=!0;c&&(s===c.axType&&l===c.calendar?(u=!1,c.traces.push(t),c.dirs.push(i)):(r=o,s!==c.axType&&n.warn([\"Attempted to group the bins of trace\",t.index,\"set on a\",\"type:\"+s,\"axis\",\"with bins on\",\"type:\"+c.axType,\"axis.\"].join(\" \")),l!==c.calendar&&n.warn([\"Attempted to group the bins of trace\",t.index,\"set with a\",l,\"calendar\",\"with bins\",c.calendar?\"on a \"+c.calendar+\" calendar\":\"w/o a set calendar\"].join(\" \")))),u&&(m[r]={traces:[t],dirs:[i],axType:s,calendar:t[i+\"calendar\"]||\"\"}),t[\"_\"+i+\"bingroup\"]=r}for(d=0;d<t.length;d++)r=t[d],i(r,\"histogram\")&&(y.push(r),delete r._xautoBinFinished,delete r._yautoBinFinished,i(r,\"2dMap\")||o(r._input,r,e,_));var T=e._alignmentOpts||{};for(d=0;d<y.length;d++){if(r=y[d],f=\"\",!i(r,\"2dMap\")){if(p=w(r),\"group\"===e.barmode&&r.alignmentgroup){var A=r[p+\"axis\"],M=l(e,A)+r.orientation;(T[M]||{})[r.alignmentgroup]&&(f=M)}f||\"overlay\"===e.barmode||(f=l(e,r.xaxis)+l(e,r.yaxis)+w(r))}f?(x[f]||(x[f]=[]),x[f].push(r)):b.push(r)}for(f in x)if(1!==(h=x[f]).length){var S=!1;for(d=0;d<h.length;d++){r=h[d],S=_(\"bingroup\");break}for(f=S||f,d=0;d<h.length;d++){var E=(r=h[d])._input.bingroup;E&&E!==f&&n.warn([\"Trace\",r.index,\"must match\",\"within bingroup\",f+\".\",\"Ignoring its bingroup:\",E,\"setting.\"].join(\" \")),r.bingroup=f,k(r,f,w(r))}}else b.push(h[0]);for(d=0;d<b.length;d++){r=b[d];var C=_(\"bingroup\");if(i(r,\"2dMap\"))for(v=0;v<2;v++){var L=_((p=u[v])+\"bingroup\",C?C+\"__\"+p:null);k(r,L,p)}else k(r,C,w(r))}for(f in m){var P=m[f];for(h=P.traces,g=0;g<c.length;g++){var O,I,z=c[g],D=z.name;if(\"nbins\"!==D||!P.sizeFound){for(d=0;d<h.length;d++){if(r=h[d],p=P.dirs[d],O=z.aStr[p],void 0!==s(r._input,O).get()){P[D]=_(O),P[D+\"Found\"]=!0;break}(I=(r._autoBin||{})[p]||{})[D]&&s(r,O).set(I[D])}if(\"start\"===D||\"end\"===D)for(;d<h.length;d++)(r=h[d])[\"_\"+p+\"bingroup\"]&&_(O,(I=(r._autoBin||{})[p]||{})[D]);\"nbins\"!==D||P.sizeFound||P.nbinsFound||(r=h[0],P[D]=_(O))}}}}},{\"../../lib\":719,\"../../plots/cartesian/axis_ids\":770,\"../../registry\":848,\"../bar/defaults\":862}],1026:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\"),i=t(\"../../components/color\"),o=t(\"../bar/style_defaults\"),s=t(\"./attributes\");e.exports=function(t,e,r,l){function c(r,n){return a.coerce(t,e,s,r,n)}var u=c(\"x\"),h=c(\"y\");c(\"cumulative.enabled\")&&(c(\"cumulative.direction\"),c(\"cumulative.currentbin\")),c(\"text\"),c(\"hovertext\"),c(\"hovertemplate\");var f=c(\"orientation\",h&&!u?\"h\":\"v\"),p=\"v\"===f?\"x\":\"y\",d=\"v\"===f?\"y\":\"x\",g=u&&h?Math.min(a.minRowLength(u)&&a.minRowLength(h)):a.minRowLength(e[p]||[]);if(g){e._length=g,n.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\",\"y\"],l),e[d]&&c(\"histfunc\"),c(\"histnorm\"),c(\"autobin\"+p),o(t,e,c,r,l),a.coerceSelectionMarkerOpacity(e,c);var v=(e.marker.line||{}).color,m=n.getComponentMethod(\"errorbars\",\"supplyDefaults\");m(t,e,v||i.defaultLine,{axis:\"y\"}),m(t,e,v||i.defaultLine,{axis:\"x\",inherit:\"y\"})}else e.visible=!1}},{\"../../components/color\":594,\"../../lib\":719,\"../../registry\":848,\"../bar/style_defaults\":872,\"./attributes\":1018}],1027:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,a){if(t.x=\"xVal\"in e?e.xVal:e.x,t.y=\"yVal\"in e?e.yVal:e.y,\"zLabelVal\"in e&&(t.z=e.zLabelVal),e.xa&&(t.xaxis=e.xa),e.ya&&(t.yaxis=e.ya),!(r.cumulative||{}).enabled){var i,o=Array.isArray(a)?n[0].pts[a[0]][a[1]]:n[a].pts;if(t.pointNumbers=o,t.binNumber=t.pointNumber,delete t.pointNumber,delete t.pointIndex,r._indexToPoints){i=[];for(var s=0;s<o.length;s++)i=i.concat(r._indexToPoints[o[s]])}else i=o;t.pointIndices=i}return t}},{}],1028:[function(t,e,r){\"use strict\";var n=t(\"../bar/hover\").hoverPoints,a=t(\"../../plots/cartesian/axes\").hoverLabelText;e.exports=function(t,e,r,i){var o=n(t,e,r,i);if(o){var s=(t=o[0]).cd[t.index],l=t.cd[0].trace;if(!l.cumulative.enabled){var c=\"h\"===l.orientation?\"y\":\"x\";t[c+\"Label\"]=a(t[c+\"a\"],s.ph0,s.ph1)}return l.hovermplate&&(t.hovertemplate=l.hovertemplate),o}}},{\"../../plots/cartesian/axes\":767,\"../bar/hover\":864}],1029:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),layoutAttributes:t(\"../bar/layout_attributes\"),supplyDefaults:t(\"./defaults\"),crossTraceDefaults:t(\"./cross_trace_defaults\"),supplyLayoutDefaults:t(\"../bar/layout_defaults\"),calc:t(\"./calc\").calc,crossTraceCalc:t(\"../bar/cross_trace_calc\").crossTraceCalc,plot:t(\"../bar/plot\").plot,layerName:\"barlayer\",style:t(\"../bar/style\").style,styleOnSelect:t(\"../bar/style\").styleOnSelect,colorbar:t(\"../scatter/marker_colorbar\"),hoverPoints:t(\"./hover\"),selectPoints:t(\"../bar/select\"),eventData:t(\"./event_data\"),moduleType:\"trace\",name:\"histogram\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"bar-like\",\"cartesian\",\"svg\",\"bar\",\"histogram\",\"oriented\",\"errorBarsOK\",\"showLegend\"],meta:{}}},{\"../../plots/cartesian\":778,\"../bar/cross_trace_calc\":861,\"../bar/layout_attributes\":866,\"../bar/layout_defaults\":867,\"../bar/plot\":868,\"../bar/select\":869,\"../bar/style\":871,\"../scatter/marker_colorbar\":1128,\"./attributes\":1018,\"./calc\":1023,\"./cross_trace_defaults\":1025,\"./defaults\":1026,\"./event_data\":1027,\"./hover\":1028}],1030:[function(t,e,r){\"use strict\";e.exports={percent:function(t,e){for(var r=t.length,n=100/e,a=0;a<r;a++)t[a]*=n},probability:function(t,e){for(var r=t.length,n=0;n<r;n++)t[n]/=e},density:function(t,e,r,n){var a=t.length;n=n||1;for(var i=0;i<a;i++)t[i]*=r[i]*n},\"probability density\":function(t,e,r,n){var a=t.length;n&&(e/=n);for(var i=0;i<a;i++)t[i]*=r[i]/e}}},{}],1031:[function(t,e,r){\"use strict\";var n=t(\"../histogram/attributes\"),a=t(\"../histogram/bin_attributes\"),i=t(\"../heatmap/attributes\"),o=t(\"../../plots/template_attributes\").hovertemplateAttrs,s=t(\"../../components/colorscale/attributes\"),l=t(\"../../lib/extend\").extendFlat;e.exports=l({x:n.x,y:n.y,z:{valType:\"data_array\",editType:\"calc\"},marker:{color:{valType:\"data_array\",editType:\"calc\"},editType:\"calc\"},histnorm:n.histnorm,histfunc:n.histfunc,nbinsx:n.nbinsx,xbins:a(\"x\"),nbinsy:n.nbinsy,ybins:a(\"y\"),autobinx:n.autobinx,autobiny:n.autobiny,bingroup:l({},n.bingroup,{}),xbingroup:l({},n.bingroup,{}),ybingroup:l({},n.bingroup,{}),xgap:i.xgap,ygap:i.ygap,zsmooth:i.zsmooth,zhoverformat:i.zhoverformat,hovertemplate:o({},{keys:\"z\"})},s(\"\",{cLetter:\"z\",autoColorDflt:!1}))},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plots/template_attributes\":843,\"../heatmap/attributes\":1e3,\"../histogram/attributes\":1018,\"../histogram/bin_attributes\":1020}],1032:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"../histogram/bin_functions\"),o=t(\"../histogram/norm_functions\"),s=t(\"../histogram/average\"),l=t(\"../histogram/bin_label_vals\"),c=t(\"../histogram/calc\").calcAllAutoBins;function u(t,e,r,n){var a,i=new Array(t);if(n)for(a=0;a<t;a++)i[a]=1/(e[a+1]-e[a]);else{var o=1/r;for(a=0;a<t;a++)i[a]=o}return i}function h(t,e){return{start:t(e.start),end:t(e.end),size:e.size}}function f(t,e,r,n,a,i){var o,s=t.length-1,c=new Array(s),u=l(r,n,t,a,i);for(o=0;o<s;o++){var h=(e||[])[o];c[o]=void 0===h?[u(t[o]),u(t[o+1],!0)]:[h,h]}return c}e.exports=function(t,e){var r,l,p,d,g=a.getFromId(t,e.xaxis),v=a.getFromId(t,e.yaxis),m=e.xcalendar,y=e.ycalendar,x=function(t){return g.r2c(t,0,m)},b=function(t){return v.r2c(t,0,y)},_=c(t,e,g,\"x\"),w=_[0],k=_[1],T=c(t,e,v,\"y\"),A=T[0],M=T[1],S=e._length;k.length>S&&k.splice(S,k.length-S),M.length>S&&M.splice(S,M.length-S);var E=[],C=[],L=[],P=\"string\"==typeof w.size,O=\"string\"==typeof A.size,I=[],z=[],D=P?I:w,R=O?z:A,F=0,B=[],N=[],j=e.histnorm,V=e.histfunc,U=-1!==j.indexOf(\"density\"),q=\"max\"===V||\"min\"===V?null:0,H=i.count,G=o[j],Y=!1,W=[],X=[],Z=\"z\"in e?e.z:\"marker\"in e&&Array.isArray(e.marker.color)?e.marker.color:\"\";Z&&\"count\"!==V&&(Y=\"avg\"===V,H=i[V]);var J=w.size,K=x(w.start),Q=x(w.end)+(K-a.tickIncrement(K,J,!1,m))/1e6;for(r=K;r<Q;r=a.tickIncrement(r,J,!1,m))C.push(q),I.push(r),Y&&L.push(0);I.push(r);var $,tt=C.length,et=(r-K)/tt,rt=($=K+et/2,g.c2r($,0,m)),nt=A.size,at=b(A.start),it=b(A.end)+(at-a.tickIncrement(at,nt,!1,y))/1e6;for(r=at;r<it;r=a.tickIncrement(r,nt,!1,y)){E.push(C.slice()),z.push(r);var ot=new Array(tt);for(l=0;l<tt;l++)ot[l]=[];N.push(ot),Y&&B.push(L.slice())}z.push(r);var st=E.length,lt=(r-at)/st,ct=function(t){return v.c2r(t,0,y)}(at+lt/2);U&&(W=u(C.length,D,et,P),X=u(E.length,R,lt,O)),P||\"date\"!==g.type||(D=h(x,D)),O||\"date\"!==v.type||(R=h(b,R));var ut=!0,ht=!0,ft=new Array(tt),pt=new Array(st),dt=1/0,gt=1/0,vt=1/0,mt=1/0;for(r=0;r<S;r++){var yt=k[r],xt=M[r];p=n.findBin(yt,D),d=n.findBin(xt,R),p>=0&&p<tt&&d>=0&&d<st&&(F+=H(p,r,E[d],Z,B[d]),N[d][p].push(r),ut&&(void 0===ft[p]?ft[p]=yt:ft[p]!==yt&&(ut=!1)),ht&&(void 0===pt[d]?pt[d]=xt:pt[d]!==xt&&(ht=!1)),dt=Math.min(dt,yt-I[p]),gt=Math.min(gt,I[p+1]-yt),vt=Math.min(vt,xt-z[d]),mt=Math.min(mt,z[d+1]-xt))}if(Y)for(d=0;d<st;d++)F+=s(E[d],B[d]);if(G)for(d=0;d<st;d++)G(E[d],F,W,X[d]);return{x:k,xRanges:f(I,ut&&ft,dt,gt,g,m),x0:rt,dx:et,y:M,yRanges:f(z,ht&&pt,vt,mt,v,y),y0:ct,dy:lt,z:E,pts:N}}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../histogram/average\":1019,\"../histogram/bin_functions\":1021,\"../histogram/bin_label_vals\":1022,\"../histogram/calc\":1023,\"../histogram/norm_functions\":1030}],1033:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./sample_defaults\"),i=t(\"../heatmap/style_defaults\"),o=t(\"../../components/colorscale/defaults\"),s=t(\"./attributes\");e.exports=function(t,e,r,l){function c(r,a){return n.coerce(t,e,s,r,a)}a(t,e,c,l),!1!==e.visible&&(i(t,e,c,l),o(t,e,l,c,{prefix:\"\",cLetter:\"z\"}),c(\"hovertemplate\"))}},{\"../../components/colorscale/defaults\":604,\"../../lib\":719,\"../heatmap/style_defaults\":1013,\"./attributes\":1031,\"./sample_defaults\":1036}],1034:[function(t,e,r){\"use strict\";var n=t(\"../heatmap/hover\"),a=t(\"../../plots/cartesian/axes\").hoverLabelText;e.exports=function(t,e,r,i,o,s){var l=n(t,e,r,i,o,s);if(l){var c=(t=l[0]).index,u=c[0],h=c[1],f=t.cd[0],p=f.xRanges[h],d=f.yRanges[u];return t.xLabel=a(t.xa,p[0],p[1]),t.yLabel=a(t.ya,d[0],d[1]),l}}},{\"../../plots/cartesian/axes\":767,\"../heatmap/hover\":1007}],1035:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),crossTraceDefaults:t(\"../histogram/cross_trace_defaults\"),calc:t(\"../heatmap/calc\"),plot:t(\"../heatmap/plot\"),layerName:\"heatmaplayer\",colorbar:t(\"../heatmap/colorbar\"),style:t(\"../heatmap/style\"),hoverPoints:t(\"./hover\"),eventData:t(\"../histogram/event_data\"),moduleType:\"trace\",name:\"histogram2d\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"2dMap\",\"histogram\"],meta:{}}},{\"../../plots/cartesian\":778,\"../heatmap/calc\":1001,\"../heatmap/colorbar\":1003,\"../heatmap/plot\":1011,\"../heatmap/style\":1012,\"../histogram/cross_trace_defaults\":1025,\"../histogram/event_data\":1027,\"./attributes\":1031,\"./defaults\":1033,\"./hover\":1034}],1036:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\");e.exports=function(t,e,r,i){var o=r(\"x\"),s=r(\"y\"),l=a.minRowLength(o),c=a.minRowLength(s);l&&c?(e._length=Math.min(l,c),n.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\",\"y\"],i),(r(\"z\")||r(\"marker.color\"))&&r(\"histfunc\"),r(\"histnorm\"),r(\"autobinx\"),r(\"autobiny\")):e.visible=!1}},{\"../../lib\":719,\"../../registry\":848}],1037:[function(t,e,r){\"use strict\";var n=t(\"../histogram2d/attributes\"),a=t(\"../contour/attributes\"),i=t(\"../../components/colorscale/attributes\"),o=t(\"../../lib/extend\").extendFlat;e.exports=o({x:n.x,y:n.y,z:n.z,marker:n.marker,histnorm:n.histnorm,histfunc:n.histfunc,nbinsx:n.nbinsx,xbins:n.xbins,nbinsy:n.nbinsy,ybins:n.ybins,autobinx:n.autobinx,autobiny:n.autobiny,bingroup:n.bingroup,xbingroup:n.xbingroup,ybingroup:n.ybingroup,autocontour:a.autocontour,ncontours:a.ncontours,contours:a.contours,line:{color:a.line.color,width:o({},a.line.width,{dflt:.5}),dash:a.line.dash,smoothing:a.line.smoothing,editType:\"plot\"},zhoverformat:n.zhoverformat,hovertemplate:n.hovertemplate},i(\"\",{cLetter:\"z\",editTypeOverride:\"calc\"}))},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../contour/attributes\":943,\"../histogram2d/attributes\":1031}],1038:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../histogram2d/sample_defaults\"),i=t(\"../contour/contours_defaults\"),o=t(\"../contour/style_defaults\"),s=t(\"./attributes\");e.exports=function(t,e,r,l){function c(r,a){return n.coerce(t,e,s,r,a)}a(t,e,c,l),!1!==e.visible&&(i(t,e,c,function(r){return n.coerce2(t,e,s,r)}),o(t,e,c,l),c(\"hovertemplate\"))}},{\"../../lib\":719,\"../contour/contours_defaults\":950,\"../contour/style_defaults\":964,\"../histogram2d/sample_defaults\":1036,\"./attributes\":1037}],1039:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),crossTraceDefaults:t(\"../histogram/cross_trace_defaults\"),calc:t(\"../contour/calc\"),plot:t(\"../contour/plot\").plot,layerName:\"contourlayer\",style:t(\"../contour/style\"),colorbar:t(\"../contour/colorbar\"),hoverPoints:t(\"../contour/hover\"),moduleType:\"trace\",name:\"histogram2dcontour\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"2dMap\",\"contour\",\"histogram\",\"showLegend\"],meta:{}}},{\"../../plots/cartesian\":778,\"../contour/calc\":944,\"../contour/colorbar\":946,\"../contour/hover\":956,\"../contour/plot\":961,\"../contour/style\":963,\"../histogram/cross_trace_defaults\":1025,\"./attributes\":1037,\"./defaults\":1038}],1040:[function(t,e,r){\"use strict\";var n=t(\"../../lib/extend\").extendFlat,a=t(\"../../lib/extend\").extendDeep,i=t(\"../../plot_api/edit_types\").overrideAll,o=t(\"../../plots/font_attributes\"),s=t(\"../../components/color/attributes\"),l=t(\"../../plots/domain\").attributes,c=t(\"../../plots/cartesian/layout_attributes\"),u=t(\"../../plot_api/plot_template\").templatedArray,h=t(\"../../constants/delta.js\"),f=(t(\"../../constants/docs\").FORMAT_LINK,o({editType:\"plot\",colorEditType:\"plot\"})),p={color:{valType:\"color\",editType:\"plot\"},line:{color:{valType:\"color\",dflt:s.defaultLine,editType:\"plot\"},width:{valType:\"number\",min:0,dflt:0,editType:\"plot\"},editType:\"calc\"},thickness:{valType:\"number\",min:0,max:1,dflt:1,editType:\"plot\"},editType:\"calc\"},d={valType:\"info_array\",items:[{valType:\"number\",editType:\"plot\"},{valType:\"number\",editType:\"plot\"}],editType:\"plot\"},g=u(\"step\",a({},p,{range:d}));e.exports={mode:{valType:\"flaglist\",editType:\"calc\",flags:[\"number\",\"delta\",\"gauge\"],dflt:\"number\"},value:{valType:\"number\",editType:\"calc\",anim:!0},align:{valType:\"enumerated\",values:[\"left\",\"center\",\"right\"],editType:\"plot\"},domain:l({name:\"indicator\",trace:!0,editType:\"calc\"}),title:{text:{valType:\"string\",editType:\"plot\"},align:{valType:\"enumerated\",values:[\"left\",\"center\",\"right\"],editType:\"plot\"},font:n({},f,{}),editType:\"plot\"},number:{valueformat:{valType:\"string\",dflt:\"\",editType:\"plot\"},font:n({},f,{}),prefix:{valType:\"string\",dflt:\"\",editType:\"plot\"},suffix:{valType:\"string\",dflt:\"\",editType:\"plot\"},editType:\"plot\"},delta:{reference:{valType:\"number\",editType:\"calc\"},position:{valType:\"enumerated\",values:[\"top\",\"bottom\",\"left\",\"right\"],dflt:\"bottom\",editType:\"plot\"},relative:{valType:\"boolean\",editType:\"plot\",dflt:!1},valueformat:{valType:\"string\",editType:\"plot\"},increasing:{symbol:{valType:\"string\",dflt:h.INCREASING.SYMBOL,editType:\"plot\"},color:{valType:\"color\",dflt:h.INCREASING.COLOR,editType:\"plot\"},editType:\"plot\"},decreasing:{symbol:{valType:\"string\",dflt:h.DECREASING.SYMBOL,editType:\"plot\"},color:{valType:\"color\",dflt:h.DECREASING.COLOR,editType:\"plot\"},editType:\"plot\"},font:n({},f,{}),editType:\"calc\"},gauge:{shape:{valType:\"enumerated\",editType:\"plot\",dflt:\"angular\",values:[\"angular\",\"bullet\"]},bar:a({},p,{color:{dflt:\"green\"}}),bgcolor:{valType:\"color\",editType:\"plot\"},bordercolor:{valType:\"color\",dflt:s.defaultLine,editType:\"plot\"},borderwidth:{valType:\"number\",min:0,dflt:1,editType:\"plot\"},axis:i({range:d,visible:n({},c.visible,{dflt:!0}),tickmode:c.tickmode,nticks:c.nticks,tick0:c.tick0,dtick:c.dtick,tickvals:c.tickvals,ticktext:c.ticktext,ticks:n({},c.ticks,{dflt:\"outside\"}),ticklen:c.ticklen,tickwidth:c.tickwidth,tickcolor:c.tickcolor,showticklabels:c.showticklabels,tickfont:o({}),tickangle:c.tickangle,tickformat:c.tickformat,tickformatstops:c.tickformatstops,tickprefix:c.tickprefix,showtickprefix:c.showtickprefix,ticksuffix:c.ticksuffix,showticksuffix:c.showticksuffix,separatethousands:c.separatethousands,exponentformat:c.exponentformat,showexponent:c.showexponent,editType:\"plot\"},\"plot\"),steps:g,threshold:{line:{color:n({},p.line.color,{}),width:n({},p.line.width,{dflt:1}),editType:\"plot\"},thickness:n({},p.thickness,{dflt:.85}),value:{valType:\"number\",editType:\"calc\",dflt:!1},editType:\"plot\"},editType:\"plot\"}}},{\"../../components/color/attributes\":593,\"../../constants/delta.js\":689,\"../../constants/docs\":690,\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../../plot_api/plot_template\":757,\"../../plots/cartesian/layout_attributes\":779,\"../../plots/domain\":792,\"../../plots/font_attributes\":793}],1041:[function(t,e,r){\"use strict\";var n=t(\"../../plots/plots\");r.name=\"indicator\",r.plot=function(t,e,a,i){n.plotBasePlot(r.name,t,e,a,i)},r.clean=function(t,e,a,i){n.cleanBasePlot(r.name,t,e,a,i)}},{\"../../plots/plots\":828}],1042:[function(t,e,r){\"use strict\";e.exports={calc:function(t,e){var r=[],n=e.value;\"number\"!=typeof e._lastValue&&(e._lastValue=e.value);var a=e._lastValue,i=a;return e._hasDelta&&\"number\"==typeof e.delta.reference&&(i=e.delta.reference),r[0]={y:n,lastY:a,delta:n-i,relativeDelta:(n-i)/i},r}}},{}],1043:[function(t,e,r){\"use strict\";e.exports={defaultNumberFontSize:80,bulletNumberDomainSize:.25,bulletPadding:.025,innerRadius:.75,valueThickness:.5,titlePadding:5,horizontalPadding:10}},{}],1044:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./attributes\"),i=t(\"../../plots/domain\").defaults,o=t(\"../../plot_api/plot_template\"),s=t(\"../../plots/array_container_defaults\"),l=t(\"./constants.js\"),c=t(\"../../plots/cartesian/tick_value_defaults\"),u=t(\"../../plots/cartesian/tick_mark_defaults\"),h=t(\"../../plots/cartesian/tick_label_defaults\");function f(t,e){function r(r,i){return n.coerce(t,e,a.gauge.steps,r,i)}r(\"color\"),r(\"line.color\"),r(\"line.width\"),r(\"range\"),r(\"thickness\")}e.exports={supplyDefaults:function(t,e,r,p){function d(r,i){return n.coerce(t,e,a,r,i)}i(e,p,d),d(\"mode\"),e._hasNumber=-1!==e.mode.indexOf(\"number\"),e._hasDelta=-1!==e.mode.indexOf(\"delta\"),e._hasGauge=-1!==e.mode.indexOf(\"gauge\");var g=d(\"value\");e._range=[0,\"number\"==typeof g?1.5*g:1];var v,m,y,x,b,_,w=new Array(2);function k(t,e){return n.coerce(y,x,a.gauge,t,e)}function T(t,e){return n.coerce(b,_,a.gauge.axis,t,e)}if(e._hasNumber&&(d(\"number.valueformat\"),d(\"number.font.color\",p.font.color),d(\"number.font.family\",p.font.family),d(\"number.font.size\"),void 0===e.number.font.size&&(e.number.font.size=l.defaultNumberFontSize,w[0]=!0),d(\"number.prefix\"),d(\"number.suffix\"),v=e.number.font.size),e._hasDelta&&(d(\"delta.font.color\",p.font.color),d(\"delta.font.family\",p.font.family),d(\"delta.font.size\"),void 0===e.delta.font.size&&(e.delta.font.size=(e._hasNumber?.5:1)*(v||l.defaultNumberFontSize),w[1]=!0),d(\"delta.reference\",e.value),d(\"delta.relative\"),d(\"delta.valueformat\",e.delta.relative?\"2%\":\"\"),d(\"delta.increasing.symbol\"),d(\"delta.increasing.color\"),d(\"delta.decreasing.symbol\"),d(\"delta.decreasing.color\"),d(\"delta.position\"),m=e.delta.font.size),e._scaleNumbers=(!e._hasNumber||w[0])&&(!e._hasDelta||w[1])||!1,d(\"title.font.color\",p.font.color),d(\"title.font.family\",p.font.family),d(\"title.font.size\",.25*(v||m||l.defaultNumberFontSize)),d(\"title.text\"),e._hasGauge){(y=t.gauge)||(y={}),x=o.newContainer(e,\"gauge\"),k(\"shape\"),(e._isBullet=\"bullet\"===e.gauge.shape)||d(\"title.align\",\"center\"),(e._isAngular=\"angular\"===e.gauge.shape)||d(\"align\",\"center\"),k(\"bgcolor\",p.paper_bgcolor),k(\"borderwidth\"),k(\"bordercolor\"),k(\"bar.color\"),k(\"bar.line.color\"),k(\"bar.line.width\"),k(\"bar.thickness\",l.valueThickness*(\"bullet\"===e.gauge.shape?.5:1)),s(y,x,{name:\"steps\",handleItemDefaults:f}),k(\"threshold.value\"),k(\"threshold.thickness\"),k(\"threshold.line.width\"),k(\"threshold.line.color\"),b={},y&&(b=y.axis||{}),_=o.newContainer(x,\"axis\"),T(\"visible\"),e._range=T(\"range\",e._range);var A={outerTicks:!0};c(b,_,T,\"linear\"),h(b,_,T,\"linear\",A),u(b,_,T,A)}else d(\"title.align\",\"center\"),d(\"align\",\"center\"),e._isAngular=e._isBullet=!1;e._length=null}}},{\"../../lib\":719,\"../../plot_api/plot_template\":757,\"../../plots/array_container_defaults\":763,\"../../plots/cartesian/tick_label_defaults\":786,\"../../plots/cartesian/tick_mark_defaults\":787,\"../../plots/cartesian/tick_value_defaults\":788,\"../../plots/domain\":792,\"./attributes\":1040,\"./constants.js\":1043}],1045:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"indicator\",basePlotModule:t(\"./base_plot\"),categories:[\"svg\",\"noOpacity\",\"noHover\"],animatable:!0,attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\").supplyDefaults,calc:t(\"./calc\").calc,plot:t(\"./plot\"),meta:{}}},{\"./attributes\":1040,\"./base_plot\":1041,\"./calc\":1042,\"./defaults\":1044,\"./plot\":1046}],1046:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../lib\"),i=a.rad2deg,o=t(\"../../constants/alignment\").MID_SHIFT,s=t(\"../../components/drawing\"),l=t(\"./constants\"),c=t(\"../../lib/svg_text_utils\"),u=t(\"../../plots/cartesian/axes\"),h=t(\"../../plots/cartesian/axis_defaults\"),f=t(\"../../plots/cartesian/position_defaults\"),p=t(\"../../plots/cartesian/layout_attributes\"),d=t(\"../../components/color\"),g={left:\"start\",center:\"middle\",right:\"end\"},v={left:0,center:.5,right:1},m=/[yzafpn\\xb5mkMGTPEZY]/;function y(t){return t&&t.duration>0}function x(t){t.each(function(t){d.stroke(n.select(this),t.line.color)}).each(function(t){d.fill(n.select(this),t.color)}).style(\"stroke-width\",function(t){return t.line.width})}function b(t,e,r){var n=t._fullLayout,i=a.extendFlat({type:\"linear\",ticks:\"outside\",range:r,showline:!0},e),o={type:\"linear\",_id:\"x\"+e._id},s={letter:\"x\",font:n.font,noHover:!0,noTickson:!0};function l(t,e){return a.coerce(i,o,p,t,e)}return h(i,o,l,s,n),f(i,o,l,s),o}function _(t,e){return\"translate(\"+t+\",\"+e+\")\"}function w(t,e,r){return[Math.min(e/t.width,r/t.height),t,e+\"x\"+r]}function k(t,e,r,a){var i=document.createElementNS(\"http://www.w3.org/2000/svg\",\"text\"),o=n.select(i);return o.text(t).attr(\"x\",0).attr(\"y\",0).attr(\"text-anchor\",r).attr(\"data-unformatted\",t).call(c.convertToTspans,a).call(s.font,e),s.bBox(o.node())}function T(t,e,r,n,i,o){var s=\"_cache\"+e;t[s]&&t[s].key===i||(t[s]={key:i,value:r});var l=a.aggNums(o,null,[t[s].value,n],2);return t[s].value=l,l}e.exports=function(t,e,r,h){var f,p=t._fullLayout;y(r)&&h&&(f=h()),a.makeTraceGroups(p._indicatorlayer,e,\"trace\").each(function(e){var h,A,M,S,E,C=e[0].trace,L=n.select(this),P=C._hasGauge,O=C._isAngular,I=C._isBullet,z=C.domain,D={w:p._size.w*(z.x[1]-z.x[0]),h:p._size.h*(z.y[1]-z.y[0]),l:p._size.l+p._size.w*z.x[0],r:p._size.r+p._size.w*(1-z.x[1]),t:p._size.t+p._size.h*(1-z.y[1]),b:p._size.b+p._size.h*z.y[0]},R=D.l+D.w/2,F=D.t+D.h/2,B=Math.min(D.w/2,D.h),N=l.innerRadius*B,j=C.align||\"center\";if(A=F,P){if(O&&(h=R,A=F+B/2,M=function(t){return e=t,r=.9*N,n=Math.sqrt(e.width/2*(e.width/2)+e.height*e.height),[r/n,e,r];var e,r,n}),I){var V=l.bulletPadding,U=1-l.bulletNumberDomainSize+V;h=D.l+(U+(1-U)*v[j])*D.w,M=function(t){return w(t,(l.bulletNumberDomainSize-V)*D.w,D.h)}}}else h=D.l+v[j]*D.w,M=function(t){return w(t,D.w,D.h)};!function(t,e,r,i){var o,l,h,f=r[0].trace,p=i.numbersX,x=i.numbersY,w=f.align||\"center\",A=g[w],M=i.transitionOpts,S=i.onComplete,E=a.ensureSingle(e,\"g\",\"numbers\"),C=[];f._hasNumber&&C.push(\"number\");f._hasDelta&&(C.push(\"delta\"),\"left\"===f.delta.position&&C.reverse());var L=E.selectAll(\"text\").data(C);function P(e,r,n,a){if(!e.match(\"s\")||n>=0==a>=0||r(n).slice(-1).match(m)||r(a).slice(-1).match(m))return r;var i=e.slice().replace(\"s\",\"f\").replace(/\\d+/,function(t){return parseInt(t)-1}),o=b(t,{tickformat:i});return function(t){return Math.abs(t)<1?u.tickText(o,t).text:r(t)}}L.enter().append(\"text\"),L.attr(\"text-anchor\",function(){return A}).attr(\"class\",function(t){return t}).attr(\"x\",null).attr(\"y\",null).attr(\"dx\",null).attr(\"dy\",null),L.exit().remove();var O,I=f.mode+f.align;f._hasDelta&&(O=function(){var e=b(t,{tickformat:f.delta.valueformat},f._range);e.setScale(),u.prepTicks(e);var a=function(t){return u.tickText(e,t).text},i=function(t){var e=f.delta.relative?t.relativeDelta:t.delta;return e},o=function(t,e){return 0===t||\"number\"!=typeof t||isNaN(t)?\"-\":(t>0?f.delta.increasing.symbol:f.delta.decreasing.symbol)+e(t)},h=function(t){return t.delta>=0?f.delta.increasing.color:f.delta.decreasing.color};void 0===f._deltaLastValue&&(f._deltaLastValue=i(r[0]));var p=E.select(\"text.delta\");function g(){p.text(o(i(r[0]),a)).call(d.fill,h(r[0])).call(c.convertToTspans,t)}p.call(s.font,f.delta.font).call(d.fill,h({delta:f._deltaLastValue})),y(M)?p.transition().duration(M.duration).ease(M.easing).tween(\"text\",function(){var t=n.select(this),e=i(r[0]),s=f._deltaLastValue,l=P(f.delta.valueformat,a,s,e),c=n.interpolateNumber(s,e);return f._deltaLastValue=e,function(e){t.text(o(c(e),l)),t.call(d.fill,h({delta:c(e)}))}}).each(\"end\",function(){g(),S&&S()}).each(\"interrupt\",function(){g(),S&&S()}):g();return l=k(o(i(r[0]),a),f.delta.font,A,t),p}(),I+=f.delta.position+f.delta.font.size+f.delta.font.family+f.delta.valueformat,I+=f.delta.increasing.symbol+f.delta.decreasing.symbol,h=l);f._hasNumber&&(!function(){var e=b(t,{tickformat:f.number.valueformat},f._range);e.setScale(),u.prepTicks(e);var a=function(t){return u.tickText(e,t).text},i=f.number.suffix,l=f.number.prefix,h=E.select(\"text.number\");function p(){var e=\"number\"==typeof r[0].y?l+a(r[0].y)+i:\"-\";h.text(e).call(s.font,f.number.font).call(c.convertToTspans,t)}y(M)?h.transition().duration(M.duration).ease(M.easing).each(\"end\",function(){p(),S&&S()}).each(\"interrupt\",function(){p(),S&&S()}).attrTween(\"text\",function(){var t=n.select(this),e=n.interpolateNumber(r[0].lastY,r[0].y);f._lastValue=r[0].y;var o=P(f.number.valueformat,a,r[0].lastY,r[0].y);return function(r){t.text(l+o(e(r))+i)}}):p();o=k(l+a(r[0].y)+i,f.number.font,A,t)}(),I+=f.number.font.size+f.number.font.family+f.number.valueformat+f.number.suffix+f.number.prefix,h=o);if(f._hasDelta&&f._hasNumber){var z,D,R=[(o.left+o.right)/2,(o.top+o.bottom)/2],F=[(l.left+l.right)/2,(l.top+l.bottom)/2],B=.75*f.delta.font.size;\"left\"===f.delta.position&&(z=T(f,\"deltaPos\",0,-1*(o.width*v[f.align]+l.width*(1-v[f.align])+B),I,Math.min),D=R[1]-F[1],h={width:o.width+l.width+B,height:Math.max(o.height,l.height),left:l.left+z,right:o.right,top:Math.min(o.top,l.top+D),bottom:Math.max(o.bottom,l.bottom+D)}),\"right\"===f.delta.position&&(z=T(f,\"deltaPos\",0,o.width*(1-v[f.align])+l.width*v[f.align]+B,I,Math.max),D=R[1]-F[1],h={width:o.width+l.width+B,height:Math.max(o.height,l.height),left:o.left,right:l.right+z,top:Math.min(o.top,l.top+D),bottom:Math.max(o.bottom,l.bottom+D)}),\"bottom\"===f.delta.position&&(z=null,D=l.height,h={width:Math.max(o.width,l.width),height:o.height+l.height,left:Math.min(o.left,l.left),right:Math.max(o.right,l.right),top:o.bottom-o.height,bottom:o.bottom+l.height}),\"top\"===f.delta.position&&(z=null,D=o.top,h={width:Math.max(o.width,l.width),height:o.height+l.height,left:Math.min(o.left,l.left),right:Math.max(o.right,l.right),top:o.bottom-o.height-l.height,bottom:o.bottom}),O.attr({dx:z,dy:D})}(f._hasNumber||f._hasDelta)&&E.attr(\"transform\",function(){var t=i.numbersScaler(h);I+=t[2];var e,r=T(f,\"numbersScale\",1,t[0],I,Math.min);f._scaleNumbers||(r=1),e=f._isAngular?x-r*h.bottom:x-r*(h.top+h.bottom)/2,f._numbersTop=r*h.top+e;var n=h[w];\"center\"===w&&(n=(h.left+h.right)/2);var a=p-r*n;return _(a=T(f,\"numbersTranslate\",0,a,I,Math.max),e)+\" scale(\"+r+\")\"})}(t,L,e,{numbersX:h,numbersY:A,numbersScaler:M,transitionOpts:r,onComplete:f}),P&&(S={range:C.gauge.axis.range,color:C.gauge.bgcolor,line:{color:C.gauge.bordercolor,width:0},thickness:1},E={range:C.gauge.axis.range,color:\"rgba(0, 0, 0, 0)\",line:{color:C.gauge.bordercolor,width:C.gauge.borderwidth},thickness:1});var q=L.selectAll(\"g.angular\").data(O?e:[]);q.exit().remove();var H=L.selectAll(\"g.angularaxis\").data(O?e:[]);H.exit().remove(),O&&function(t,e,r,a){var s,l,c,h,f=r[0].trace,p=a.size,d=a.radius,g=a.innerRadius,v=a.gaugeBg,m=a.gaugeOutline,w=[p.l+p.w/2,p.t+p.h/2+d/2],k=a.gauge,T=a.layer,A=a.transitionOpts,M=a.onComplete,S=Math.PI/2;function E(t){var e=f.gauge.axis.range[0],r=f.gauge.axis.range[1],n=(t-e)/(r-e)*Math.PI-S;return n<-S?-S:n>S?S:n}function C(t){return n.svg.arc().innerRadius((g+d)/2-t/2*(d-g)).outerRadius((g+d)/2+t/2*(d-g)).startAngle(-S)}function L(t){t.attr(\"d\",function(t){return C(t.thickness).startAngle(E(t.range[0])).endAngle(E(t.range[1]))()})}k.enter().append(\"g\").classed(\"angular\",!0),k.attr(\"transform\",_(w[0],w[1])),T.enter().append(\"g\").classed(\"angularaxis\",!0).classed(\"crisp\",!0),T.selectAll(\"g.xangularaxistick,path,text\").remove(),(s=b(t,f.gauge.axis)).type=\"linear\",s.range=f.gauge.axis.range,s._id=\"xangularaxis\",s.setScale();var P=function(t){return(s.range[0]-t.x)/(s.range[1]-s.range[0])*Math.PI+Math.PI},O={},I=u.makeLabelFns(s,0).labelStandoff;O.xFn=function(t){var e=P(t);return Math.cos(e)*I},O.yFn=function(t){var e=P(t),r=Math.sin(e)>0?.2:1;return-Math.sin(e)*(I+t.fontSize*r)+Math.abs(Math.cos(e))*(t.fontSize*o)},O.anchorFn=function(t){var e=P(t),r=Math.cos(e);return Math.abs(r)<.1?\"middle\":r>0?\"start\":\"end\"},O.heightFn=function(t,e,r){var n=P(t);return-.5*(1+Math.sin(n))*r};var z=function(t){return _(w[0]+d*Math.cos(t),w[1]-d*Math.sin(t))};c=function(t){return z(P(t))};if(l=u.calcTicks(s),h=u.getTickSigns(s)[2],s.visible){h=\"inside\"===s.ticks?-1:1;var D=(s.linewidth||1)/2;u.drawTicks(t,s,{vals:l,layer:T,path:\"M\"+h*D+\",0h\"+h*s.ticklen,transFn:function(t){var e=P(t);return z(e)+\"rotate(\"+-i(e)+\")\"}}),u.drawLabels(t,s,{vals:l,layer:T,transFn:c,labelFns:O})}var R=[v].concat(f.gauge.steps),F=k.selectAll(\"g.bg-arc\").data(R);F.enter().append(\"g\").classed(\"bg-arc\",!0).append(\"path\"),F.select(\"path\").call(L).call(x),F.exit().remove();var B=C(f.gauge.bar.thickness),N=k.selectAll(\"g.value-arc\").data([f.gauge.bar]);N.enter().append(\"g\").classed(\"value-arc\",!0).append(\"path\");var j=N.select(\"path\");y(A)?(j.transition().duration(A.duration).ease(A.easing).each(\"end\",function(){M&&M()}).each(\"interrupt\",function(){M&&M()}).attrTween(\"d\",(V=B,U=E(r[0].lastY),q=E(r[0].y),function(){var t=n.interpolate(U,q);return function(e){return V.endAngle(t(e))()}})),f._lastValue=r[0].y):j.attr(\"d\",\"number\"==typeof r[0].y?B.endAngle(E(r[0].y)):\"M0,0Z\");var V,U,q;j.call(x),N.exit().remove(),R=[];var H=f.gauge.threshold.value;H&&R.push({range:[H,H],color:f.gauge.threshold.color,line:{color:f.gauge.threshold.line.color,width:f.gauge.threshold.line.width},thickness:f.gauge.threshold.thickness});var G=k.selectAll(\"g.threshold-arc\").data(R);G.enter().append(\"g\").classed(\"threshold-arc\",!0).append(\"path\"),G.select(\"path\").call(L).call(x),G.exit().remove();var Y=k.selectAll(\"g.gauge-outline\").data([m]);Y.enter().append(\"g\").classed(\"gauge-outline\",!0).append(\"path\"),Y.select(\"path\").call(L).call(x),Y.exit().remove()}(t,0,e,{radius:B,innerRadius:N,gauge:q,layer:H,size:D,gaugeBg:S,gaugeOutline:E,transitionOpts:r,onComplete:f});var G=L.selectAll(\"g.bullet\").data(I?e:[]);G.exit().remove();var Y=L.selectAll(\"g.bulletaxis\").data(I?e:[]);Y.exit().remove(),I&&function(t,e,r,n){var a,i,o,s,c,h=r[0].trace,f=n.gauge,p=n.layer,g=n.gaugeBg,v=n.gaugeOutline,m=n.size,_=h.domain,w=n.transitionOpts,k=n.onComplete;f.enter().append(\"g\").classed(\"bullet\",!0),f.attr(\"transform\",\"translate(\"+m.l+\", \"+m.t+\")\"),p.enter().append(\"g\").classed(\"bulletaxis\",!0).classed(\"crisp\",!0),p.selectAll(\"g.xbulletaxistick,path,text\").remove();var T=m.h,A=h.gauge.bar.thickness*T,M=_.x[0],S=_.x[0]+(_.x[1]-_.x[0])*(h._hasNumber||h._hasDelta?1-l.bulletNumberDomainSize:1);(a=b(t,h.gauge.axis))._id=\"xbulletaxis\",a.domain=[M,S],a.setScale(),i=u.calcTicks(a),o=u.makeTransFn(a),s=u.getTickSigns(a)[2],c=m.t+m.h,a.visible&&(u.drawTicks(t,a,{vals:\"inside\"===a.ticks?u.clipEnds(a,i):i,layer:p,path:u.makeTickPath(a,c,s),transFn:o}),u.drawLabels(t,a,{vals:i,layer:p,transFn:o,labelFns:u.makeLabelFns(a,c)}));function E(t){t.attr(\"width\",function(t){return Math.max(0,a.c2p(t.range[1])-a.c2p(t.range[0]))}).attr(\"x\",function(t){return a.c2p(t.range[0])}).attr(\"y\",function(t){return.5*(1-t.thickness)*T}).attr(\"height\",function(t){return t.thickness*T})}var C=[g].concat(h.gauge.steps),L=f.selectAll(\"g.bg-bullet\").data(C);L.enter().append(\"g\").classed(\"bg-bullet\",!0).append(\"rect\"),L.select(\"rect\").call(E).call(x),L.exit().remove();var P=f.selectAll(\"g.value-bullet\").data([h.gauge.bar]);P.enter().append(\"g\").classed(\"value-bullet\",!0).append(\"rect\"),P.select(\"rect\").attr(\"height\",A).attr(\"y\",(T-A)/2).call(x),y(w)?P.select(\"rect\").transition().duration(w.duration).ease(w.easing).each(\"end\",function(){k&&k()}).each(\"interrupt\",function(){k&&k()}).attr(\"width\",Math.max(0,a.c2p(Math.min(h.gauge.axis.range[1],r[0].y)))):P.select(\"rect\").attr(\"width\",\"number\"==typeof r[0].y?Math.max(0,a.c2p(Math.min(h.gauge.axis.range[1],r[0].y))):0);P.exit().remove();var O=r.filter(function(){return h.gauge.threshold.value}),I=f.selectAll(\"g.threshold-bullet\").data(O);I.enter().append(\"g\").classed(\"threshold-bullet\",!0).append(\"line\"),I.select(\"line\").attr(\"x1\",a.c2p(h.gauge.threshold.value)).attr(\"x2\",a.c2p(h.gauge.threshold.value)).attr(\"y1\",(1-h.gauge.threshold.thickness)/2*T).attr(\"y2\",(1-(1-h.gauge.threshold.thickness)/2)*T).call(d.stroke,h.gauge.threshold.line.color).style(\"stroke-width\",h.gauge.threshold.line.width),I.exit().remove();var z=f.selectAll(\"g.gauge-outline\").data([v]);z.enter().append(\"g\").classed(\"gauge-outline\",!0).append(\"rect\"),z.select(\"rect\").call(E).call(x),z.exit().remove()}(t,0,e,{gauge:G,layer:Y,size:D,gaugeBg:S,gaugeOutline:E,transitionOpts:r,onComplete:f});var W=L.selectAll(\"text.title\").data(e);W.exit().remove(),W.enter().append(\"text\").classed(\"title\",!0),W.attr(\"text-anchor\",function(){return I?g.right:g[C.title.align]}).text(C.title.text).call(s.font,C.title.font).call(c.convertToTspans,t),W.attr(\"transform\",function(){var t,e=D.l+D.w*v[C.title.align],r=l.titlePadding,n=s.bBox(W.node());if(P){if(O)if(C.gauge.axis.visible)t=s.bBox(H.node()).top-r-n.bottom;else t=D.t+D.h/2-B/2-n.bottom-r;I&&(t=A-(n.top+n.bottom)/2,e=D.l-l.bulletPadding*D.w)}else t=C._numbersTop-r-n.bottom;return _(e,t)})})}},{\"../../components/color\":594,\"../../components/drawing\":615,\"../../constants/alignment\":688,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../../plots/cartesian/axes\":767,\"../../plots/cartesian/axis_defaults\":769,\"../../plots/cartesian/layout_attributes\":779,\"../../plots/cartesian/position_defaults\":782,\"./constants\":1043,d3:164}],1047:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/attributes\"),a=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"../mesh3d/attributes\"),o=t(\"../../plots/attributes\"),s=t(\"../../lib/extend\").extendFlat,l=t(\"../../plot_api/edit_types\").overrideAll;var c=e.exports=l(s({x:{valType:\"data_array\"},y:{valType:\"data_array\"},z:{valType:\"data_array\"},value:{valType:\"data_array\"},isomin:{valType:\"number\"},isomax:{valType:\"number\"},surface:{show:{valType:\"boolean\",dflt:!0},count:{valType:\"integer\",dflt:2,min:1},fill:{valType:\"number\",min:0,max:1,dflt:1},pattern:{valType:\"flaglist\",flags:[\"A\",\"B\",\"C\",\"D\",\"E\"],extras:[\"all\",\"odd\",\"even\"],dflt:\"all\"}},spaceframe:{show:{valType:\"boolean\",dflt:!1},fill:{valType:\"number\",min:0,max:1,dflt:.15}},slices:{x:{show:{valType:\"boolean\",dflt:!1},locations:{valType:\"data_array\",dflt:[]},fill:{valType:\"number\",min:0,max:1,dflt:1}},y:{show:{valType:\"boolean\",dflt:!1},locations:{valType:\"data_array\",dflt:[]},fill:{valType:\"number\",min:0,max:1,dflt:1}},z:{show:{valType:\"boolean\",dflt:!1},locations:{valType:\"data_array\",dflt:[]},fill:{valType:\"number\",min:0,max:1,dflt:1}}},caps:{x:{show:{valType:\"boolean\",dflt:!0},fill:{valType:\"number\",min:0,max:1,dflt:1}},y:{show:{valType:\"boolean\",dflt:!0},fill:{valType:\"number\",min:0,max:1,dflt:1}},z:{show:{valType:\"boolean\",dflt:!0},fill:{valType:\"number\",min:0,max:1,dflt:1}}},text:{valType:\"string\",dflt:\"\",arrayOk:!0},hovertext:{valType:\"string\",dflt:\"\",arrayOk:!0},hovertemplate:a()},n(\"\",{colorAttr:\"`value`\",showScaleDflt:!0,editTypeOverride:\"calc\"}),{opacity:i.opacity,lightposition:i.lightposition,lighting:i.lighting,flatshading:i.flatshading,contour:i.contour,hoverinfo:s({},o.hoverinfo)}),\"calc\",\"nested\");c.flatshading.dflt=!0,c.lighting.facenormalsepsilon.dflt=0,c.x.editType=c.y.editType=c.z.editType=c.value.editType=\"calc+clearAxisTypes\",c.transforms=void 0},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../../plots/attributes\":764,\"../../plots/template_attributes\":843,\"../mesh3d/attributes\":1052}],1048:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/calc\");e.exports=function(t,e){e._len=Math.min(e.x.length,e.y.length,e.z.length,e.value.length);for(var r=1/0,a=-1/0,i=e.value.length,o=0;o<i;o++){var s=e.value[o];r=Math.min(r,s),a=Math.max(a,s)}e._minValues=r,e._maxValues=a,e._vMin=void 0===e.isomin||null===e.isomin?r:e.isomin,e._vMax=void 0===e.isomax||null===e.isomin?a:e.isomax,n(t,e,{vals:[e._vMin,e._vMax],containerStr:\"\",cLetter:\"c\"})}},{\"../../components/colorscale/calc\":602}],1049:[function(t,e,r){\"use strict\";var n=t(\"gl-mesh3d\"),a=t(\"../../lib\"),i=t(\"../../lib/gl_format_color\").parseColorScale,o=t(\"../../lib/str2rgbarray\"),s=t(\"../../components/colorscale\").extractOpts,l=t(\"../../plots/gl3d/zip3\");function c(t){return a.distinctVals(t).vals}var u=function(t,e){for(var r=e.length-1;r>0;r--){var n=Math.min(e[r],e[r-1]),a=Math.max(e[r],e[r-1]);if(a>n&&n<t&&t<=a)return{id:r,distRatio:(a-t)/(a-n)}}return{id:0,distRatio:0}};function h(t,e,r){this.scene=t,this.uid=r,this.mesh=e,this.name=\"\",this.data=null,this.showContour=!1}var f=h.prototype;function p(t){t._i=[],t._j=[],t._k=[];var e,r,n=t.surface.show,a=t.spaceframe.show,i=t.surface.fill,o=t.spaceframe.fill,s=!1,l=!1,h=0,f=c(t.x.slice(0,t._len)),p=c(t.y.slice(0,t._len)),d=c(t.z.slice(0,t._len)),g=f.length,v=p.length,m=d.length;function y(t,e,r){return r+m*e+m*v*t}var x,b,_,w,k,T=t._minValues,A=t._maxValues,M=t._vMin,S=t._vMax;function E(t,e,n){for(var a=w.length,i=r;i<a;i++)if(t===x[i]&&e===b[i]&&n===_[i])return i;return-1}function C(){r=e}function L(){x=[],b=[],_=[],w=[],e=0,C()}function P(t,r,n,a){return x.push(t),b.push(r),_.push(n),w.push(a),++e-1}function O(t,e,r){for(var n=[],a=0;a<t.length;a++)n[a]=t[a]*(1-r)+r*e[a];return n}function I(t){k=t}function z(t,e){return\"all\"===t||null===t||t.indexOf(e)>-1}function D(t,e){return null===t?e:t}function R(e,r,n){C();var a,i,o,s=[r],l=[n];if(k>=1)s=[r],l=[n];else if(k>0){var c=function(t,e){var r=t[0],n=t[1],a=t[2],i=function(t,e,r){for(var n=[],a=0;a<t.length;a++)n[a]=(t[a]+e[a]+r[a])/3;return n}(r,n,a),o=Math.sqrt(1-k),s=O(i,r,o),l=O(i,n,o),c=O(i,a,o),u=e[0],h=e[1],f=e[2];return{xyzv:[[r,n,l],[l,s,r],[n,a,c],[c,l,n],[a,r,s],[s,c,a]],abc:[[u,h,-1],[-1,-1,u],[h,f,-1],[-1,-1,h],[f,u,-1],[-1,-1,f]]}}(r,n);s=c.xyzv,l=c.abc}for(var u=0;u<s.length;u++){r=s[u],n=l[u];for(var f=[],p=0;p<3;p++){var d=r[p][0],g=r[p][1],v=r[p][2],m=r[p][3],y=n[p]>-1?n[p]:E(d,g,v);f[p]=y>-1?y:P(d,g,v,D(e,m))}a=f[0],i=f[1],o=f[2],t._i.push(a),t._j.push(i),t._k.push(o),++h}}function F(t,e,r,n){var a=t[3];a<r&&(a=r),a>n&&(a=n);for(var i=(t[3]-a)/(t[3]-e[3]+1e-9),o=[],s=0;s<4;s++)o[s]=(1-i)*t[s]+i*e[s];return o}function B(t,e,r){return t>=e&&t<=r}function N(t){var e=.001*(S-M);return t>=M-e&&t<=S+e}function j(e){for(var r=[],n=0;n<4;n++){var a=e[n];r.push([t.x[a],t.y[a],t.z[a],t.value[a]])}return r}var V=3;function U(t,e,r,n,a,i){i||(i=1),r=[-1,-1,-1];var o=!1,s=[B(e[0][3],n,a),B(e[1][3],n,a),B(e[2][3],n,a)];if(!s[0]&&!s[1]&&!s[2])return!1;var l=function(t,e,r){return N(e[0][3])&&N(e[1][3])&&N(e[2][3])?(R(t,e,r),!0):i<V&&U(t,e,r,M,S,++i)};if(s[0]&&s[1]&&s[2])return l(t,e,r)||o;var c=!1;return[[0,1,2],[2,0,1],[1,2,0]].forEach(function(i){if(s[i[0]]&&s[i[1]]&&!s[i[2]]){var u=e[i[0]],h=e[i[1]],f=e[i[2]],p=F(f,u,n,a),d=F(f,h,n,a);o=l(t,[d,p,u],[-1,-1,r[i[0]]])||o,o=l(t,[u,h,d],[r[i[0]],r[i[1]],-1])||o,c=!0}}),c?o:([[0,1,2],[1,2,0],[2,0,1]].forEach(function(i){if(s[i[0]]&&!s[i[1]]&&!s[i[2]]){var u=e[i[0]],h=e[i[1]],f=e[i[2]],p=F(h,u,n,a),d=F(f,u,n,a);o=l(t,[d,p,u],[-1,-1,r[i[0]]])||o,c=!0}}),o)}function q(t,e,r,n){var a=!1,i=j(e),o=[B(i[0][3],r,n),B(i[1][3],r,n),B(i[2][3],r,n),B(i[3][3],r,n)];if(!(o[0]||o[1]||o[2]||o[3]))return a;if(o[0]&&o[1]&&o[2]&&o[3])return l&&(a=function(t,e,r){var n=function(n,a,i){R(t,[e[n],e[a],e[i]],[r[n],r[a],r[i]])};n(0,1,2),n(3,0,1),n(2,3,0),n(1,2,3)}(t,i,e)||a),a;var s=!1;return[[0,1,2,3],[3,0,1,2],[2,3,0,1],[1,2,3,0]].forEach(function(c){if(o[c[0]]&&o[c[1]]&&o[c[2]]&&!o[c[3]]){var u=i[c[0]],h=i[c[1]],f=i[c[2]],p=i[c[3]];if(l)a=R(t,[u,h,f],[e[c[0]],e[c[1]],e[c[2]]])||a;else{var d=F(p,u,r,n),g=F(p,h,r,n),v=F(p,f,r,n);a=R(null,[d,g,v],[-1,-1,-1])||a}s=!0}}),s?a:([[0,1,2,3],[1,2,3,0],[2,3,0,1],[3,0,1,2],[0,2,3,1],[1,3,2,0]].forEach(function(c){if(o[c[0]]&&o[c[1]]&&!o[c[2]]&&!o[c[3]]){var u=i[c[0]],h=i[c[1]],f=i[c[2]],p=i[c[3]],d=F(f,u,r,n),g=F(f,h,r,n),v=F(p,h,r,n),m=F(p,u,r,n);l?(a=R(t,[u,m,d],[e[c[0]],-1,-1])||a,a=R(t,[h,g,v],[e[c[1]],-1,-1])||a):a=function(t,e,r){var n=function(n,a,i){R(t,[e[n],e[a],e[i]],[r[n],r[a],r[i]])};n(0,1,2),n(2,3,0)}(null,[d,g,v,m],[-1,-1,-1,-1])||a,s=!0}}),s?a:([[0,1,2,3],[1,2,3,0],[2,3,0,1],[3,0,1,2]].forEach(function(c){if(o[c[0]]&&!o[c[1]]&&!o[c[2]]&&!o[c[3]]){var u=i[c[0]],h=i[c[1]],f=i[c[2]],p=i[c[3]],d=F(h,u,r,n),g=F(f,u,r,n),v=F(p,u,r,n);l?(a=R(t,[u,d,g],[e[c[0]],-1,-1])||a,a=R(t,[u,g,v],[e[c[0]],-1,-1])||a,a=R(t,[u,v,d],[e[c[0]],-1,-1])||a):a=R(null,[d,g,v],[-1,-1,-1])||a,s=!0}}),a))}function H(t,e,r,n,a,i,o,c,u,h,f){var p=!1;return s&&(z(t,\"A\")&&(p=q(null,[e,r,n,i],h,f)||p),z(t,\"B\")&&(p=q(null,[r,n,a,u],h,f)||p),z(t,\"C\")&&(p=q(null,[r,i,o,u],h,f)||p),z(t,\"D\")&&(p=q(null,[n,i,c,u],h,f)||p),z(t,\"E\")&&(p=q(null,[r,n,i,u],h,f)||p)),l&&(p=q(t,[r,n,i,u],h,f)||p),p}function G(t,e,r,n,a,i,o,s){return[!0===s[0]||U(t,j([e,r,n]),[e,r,n],i,o),!0===s[1]||U(t,j([n,a,e]),[n,a,e],i,o)]}function Y(t,e,r,n,a,i,o,s,l){return s?G(t,e,r,a,n,i,o,l):G(t,r,a,n,e,i,o,l)}function W(t,e,r,n,a,i,o){var s,l,c,u,h=!1,f=function(){h=U(t,[s,l,c],[-1,-1,-1],a,i)||h,h=U(t,[c,u,s],[-1,-1,-1],a,i)||h},p=o[0],d=o[1],g=o[2];return p&&(s=O(j([y(e,r-0,n-0)])[0],j([y(e-1,r-0,n-0)])[0],p),l=O(j([y(e,r-0,n-1)])[0],j([y(e-1,r-0,n-1)])[0],p),c=O(j([y(e,r-1,n-1)])[0],j([y(e-1,r-1,n-1)])[0],p),u=O(j([y(e,r-1,n-0)])[0],j([y(e-1,r-1,n-0)])[0],p),f()),d&&(s=O(j([y(e-0,r,n-0)])[0],j([y(e-0,r-1,n-0)])[0],d),l=O(j([y(e-0,r,n-1)])[0],j([y(e-0,r-1,n-1)])[0],d),c=O(j([y(e-1,r,n-1)])[0],j([y(e-1,r-1,n-1)])[0],d),u=O(j([y(e-1,r,n-0)])[0],j([y(e-1,r-1,n-0)])[0],d),f()),g&&(s=O(j([y(e-0,r-0,n)])[0],j([y(e-0,r-0,n-1)])[0],g),l=O(j([y(e-0,r-1,n)])[0],j([y(e-0,r-1,n-1)])[0],g),c=O(j([y(e-1,r-1,n)])[0],j([y(e-1,r-1,n-1)])[0],g),u=O(j([y(e-1,r-0,n)])[0],j([y(e-1,r-0,n-1)])[0],g),f()),h}function X(t,e,r,n,a,i,o,l,c,u,h,f){var p=t;return f?(s&&\"even\"===t&&(p=null),H(p,e,r,n,a,i,o,l,c,u,h)):(s&&\"odd\"===t&&(p=null),H(p,c,l,o,i,a,n,r,e,u,h))}function Z(t,e,r,n,a){for(var i=[],o=0,s=0;s<e.length;s++)for(var l=e[s],c=1;c<m;c++)for(var u=1;u<v;u++)i.push(Y(t,y(l,u-1,c-1),y(l,u-1,c),y(l,u,c-1),y(l,u,c),r,n,(l+u+c)%2,a&&a[o]?a[o]:[])),o++;return i}function J(t,e,r,n,a){for(var i=[],o=0,s=0;s<e.length;s++)for(var l=e[s],c=1;c<g;c++)for(var u=1;u<m;u++)i.push(Y(t,y(c-1,l,u-1),y(c,l,u-1),y(c-1,l,u),y(c,l,u),r,n,(c+l+u)%2,a&&a[o]?a[o]:[])),o++;return i}function K(t,e,r,n,a){for(var i=[],o=0,s=0;s<e.length;s++)for(var l=e[s],c=1;c<v;c++)for(var u=1;u<g;u++)i.push(Y(t,y(u-1,c-1,l),y(u-1,c,l),y(u,c-1,l),y(u,c,l),r,n,(u+c+l)%2,a&&a[o]?a[o]:[])),o++;return i}function Q(t,e,r){for(var n=1;n<m;n++)for(var a=1;a<v;a++)for(var i=1;i<g;i++)X(t,y(i-1,a-1,n-1),y(i-1,a-1,n),y(i-1,a,n-1),y(i-1,a,n),y(i,a-1,n-1),y(i,a-1,n),y(i,a,n-1),y(i,a,n),e,r,(i+a+n)%2)}function $(t,e,r){s=!0,Q(t,e,r),s=!1}function tt(t,e,r,n,a,i){for(var o=[],s=0,l=0;l<e.length;l++)for(var c=e[l],u=1;u<m;u++)for(var h=1;h<v;h++)o.push(W(t,c,h,u,r,n,a[l],i&&i[s]&&i[s])),s++;return o}function et(t,e,r,n,a,i){for(var o=[],s=0,l=0;l<e.length;l++)for(var c=e[l],u=1;u<g;u++)for(var h=1;h<m;h++)o.push(W(t,u,c,h,r,n,a[l],i&&i[s]&&i[s])),s++;return o}function rt(t,e,r,n,a,i){for(var o=[],s=0,l=0;l<e.length;l++)for(var c=e[l],u=1;u<v;u++)for(var h=1;h<g;h++)o.push(W(t,h,u,c,r,n,a[l],i&&i[s]&&i[s])),s++;return o}function nt(t,e){for(var r=[],n=t;n<e;n++)r.push(n);return r}return function(){if(L(),function(){for(var e=0;e<g;e++)for(var r=0;r<v;r++)for(var n=0;n<m;n++){var a=y(e,r,n);P(t.x[a],t.y[a],t.z[a],t.value[a])}}(),a&&o&&(I(o),l=!0,Q(null,M,S),l=!1),n&&i){I(i);for(var e=t.surface.pattern,r=t.surface.count,s=0;s<r;s++){var c=1===r?.5:s/(r-1),k=(1-c)*M+c*S,E=Math.abs(k-T)>Math.abs(k-A)?[T,k]:[k,A];$(e,E[0],E[1])}}var C=[[Math.min(M,A),Math.max(M,A)],[Math.min(T,S),Math.max(T,S)]];[\"x\",\"y\",\"z\"].forEach(function(e){for(var r=[],n=0;n<C.length;n++){var a=0,i=C[n][0],o=C[n][1],s=t.slices[e];if(s.show&&s.fill){I(s.fill);var l=[],c=[],h=[];if(s.locations.length)for(var y=0;y<s.locations.length;y++){var x=u(s.locations[y],\"x\"===e?f:\"y\"===e?p:d);0===x.distRatio?l.push(x.id):x.id>0&&(c.push(x.id),\"x\"===e?h.push([x.distRatio,0,0]):\"y\"===e?h.push([0,x.distRatio,0]):h.push([0,0,x.distRatio]))}else l=nt(1,\"x\"===e?g-1:\"y\"===e?v-1:m-1);c.length>0&&(r[a]=\"x\"===e?tt(null,c,i,o,h,r[a]):\"y\"===e?et(null,c,i,o,h,r[a]):rt(null,c,i,o,h,r[a]),a++),l.length>0&&(r[a]=\"x\"===e?Z(null,l,i,o,r[a]):\"y\"===e?J(null,l,i,o,r[a]):K(null,l,i,o,r[a]),a++)}var b=t.caps[e];b.show&&b.fill&&(I(b.fill),r[a]=\"x\"===e?Z(null,[0,g-1],i,o,r[a]):\"y\"===e?J(null,[0,v-1],i,o,r[a]):K(null,[0,m-1],i,o,r[a]),a++)}}),0===h&&L(),t._x=x,t._y=b,t._z=_,t._intensity=w,t._Xs=f,t._Ys=p,t._Zs=d}(),t}f.handlePick=function(t){if(t.object===this.mesh){var e=t.data.index,r=this.data._x[e],n=this.data._y[e],a=this.data._z[e],i=this.data._Ys.length,o=this.data._Zs.length,s=u(r,this.data._Xs).id,l=u(n,this.data._Ys).id,c=u(a,this.data._Zs).id,h=t.index=c+o*l+o*i*s;t.traceCoordinate=[this.data._x[h],this.data._y[h],this.data._z[h],this.data.value[h]];var f=this.data.hovertext||this.data.text;return Array.isArray(f)&&void 0!==f[h]?t.textLabel=f[h]:f&&(t.textLabel=f),!0}},f.update=function(t){var e=this.scene,r=e.fullSceneLayout;function n(t,e,r,n){return e.map(function(e){return t.d2l(e,0,n)*r})}this.data=p(t);var a={positions:l(n(r.xaxis,t._x,e.dataScale[0],t.xcalendar),n(r.yaxis,t._y,e.dataScale[1],t.ycalendar),n(r.zaxis,t._z,e.dataScale[2],t.zcalendar)),cells:l(t._i,t._j,t._k),lightPosition:[t.lightposition.x,t.lightposition.y,t.lightposition.z],ambient:t.lighting.ambient,diffuse:t.lighting.diffuse,specular:t.lighting.specular,roughness:t.lighting.roughness,fresnel:t.lighting.fresnel,vertexNormalsEpsilon:t.lighting.vertexnormalsepsilon,faceNormalsEpsilon:t.lighting.facenormalsepsilon,opacity:t.opacity,contourEnable:t.contour.show,contourColor:o(t.contour.color).slice(0,3),contourWidth:t.contour.width,useFacetNormals:t.flatshading},c=s(t);a.vertexIntensity=t._intensity,a.vertexIntensityBounds=[c.min,c.max],a.colormap=i(t),this.mesh.update(a)},f.dispose=function(){this.scene.glplot.remove(this.mesh),this.mesh.dispose()},e.exports={findNearestOnAxis:u,generateIsoMeshes:p,createIsosurfaceTrace:function(t,e){var r=t.glplot.gl,a=n({gl:r}),i=new h(t,a,e.uid);return a._trace=i,i.update(e),t.glplot.add(a),i}}},{\"../../components/colorscale\":606,\"../../lib\":719,\"../../lib/gl_format_color\":716,\"../../lib/str2rgbarray\":742,\"../../plots/gl3d/zip3\":818,\"gl-mesh3d\":281}],1050:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../registry\"),i=t(\"./attributes\"),o=t(\"../../components/colorscale/defaults\");function s(t,e,r,n,i){var s=i(\"isomin\"),l=i(\"isomax\");null!=l&&null!=s&&s>l&&(e.isomin=null,e.isomax=null);var c=i(\"x\"),u=i(\"y\"),h=i(\"z\"),f=i(\"value\");c&&c.length&&u&&u.length&&h&&h.length&&f&&f.length?(a.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\",\"y\",\"z\"],n),[\"x\",\"y\",\"z\"].forEach(function(t){var e=\"caps.\"+t;i(e+\".show\")&&i(e+\".fill\");var r=\"slices.\"+t;i(r+\".show\")&&(i(r+\".fill\"),i(r+\".locations\"))}),i(\"spaceframe.show\")&&i(\"spaceframe.fill\"),i(\"surface.show\")&&(i(\"surface.count\"),i(\"surface.fill\"),i(\"surface.pattern\")),i(\"contour.show\")&&(i(\"contour.color\"),i(\"contour.width\")),[\"text\",\"hovertext\",\"hovertemplate\",\"lighting.ambient\",\"lighting.diffuse\",\"lighting.specular\",\"lighting.roughness\",\"lighting.fresnel\",\"lighting.vertexnormalsepsilon\",\"lighting.facenormalsepsilon\",\"lightposition.x\",\"lightposition.y\",\"lightposition.z\",\"flatshading\",\"opacity\"].forEach(function(t){i(t)}),o(t,e,n,i,{prefix:\"\",cLetter:\"c\"}),e._length=null):e.visible=!1}e.exports={supplyDefaults:function(t,e,r,a){s(t,e,0,a,function(r,a){return n.coerce(t,e,i,r,a)})},supplyIsoDefaults:s}},{\"../../components/colorscale/defaults\":604,\"../../lib\":719,\"../../registry\":848,\"./attributes\":1047}],1051:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\").supplyDefaults,calc:t(\"./calc\"),colorbar:{min:\"cmin\",max:\"cmax\"},plot:t(\"./convert\").createIsosurfaceTrace,moduleType:\"trace\",name:\"isosurface\",basePlotModule:t(\"../../plots/gl3d\"),categories:[\"gl3d\"],meta:{}}},{\"../../plots/gl3d\":807,\"./attributes\":1047,\"./calc\":1048,\"./convert\":1049,\"./defaults\":1050}],1052:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/attributes\"),a=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"../surface/attributes\"),o=t(\"../../plots/attributes\"),s=t(\"../../lib/extend\").extendFlat;e.exports=s({x:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},y:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},z:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},i:{valType:\"data_array\",editType:\"calc\"},j:{valType:\"data_array\",editType:\"calc\"},k:{valType:\"data_array\",editType:\"calc\"},text:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"calc\"},hovertext:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"calc\"},hovertemplate:a({editType:\"calc\"}),delaunayaxis:{valType:\"enumerated\",values:[\"x\",\"y\",\"z\"],dflt:\"z\",editType:\"calc\"},alphahull:{valType:\"number\",dflt:-1,editType:\"calc\"},intensity:{valType:\"data_array\",editType:\"calc\"},color:{valType:\"color\",editType:\"calc\"},vertexcolor:{valType:\"data_array\",editType:\"calc\"},facecolor:{valType:\"data_array\",editType:\"calc\"},transforms:void 0},n(\"\",{colorAttr:\"`intensity`\",showScaleDflt:!0,editTypeOverride:\"calc\"}),{opacity:i.opacity,flatshading:{valType:\"boolean\",dflt:!1,editType:\"calc\"},contour:{show:s({},i.contours.x.show,{}),color:i.contours.x.color,width:i.contours.x.width,editType:\"calc\"},lightposition:{x:s({},i.lightposition.x,{dflt:1e5}),y:s({},i.lightposition.y,{dflt:1e5}),z:s({},i.lightposition.z,{dflt:0}),editType:\"calc\"},lighting:s({vertexnormalsepsilon:{valType:\"number\",min:0,max:1,dflt:1e-12,editType:\"calc\"},facenormalsepsilon:{valType:\"number\",min:0,max:1,dflt:1e-6,editType:\"calc\"},editType:\"calc\"},i.lighting),hoverinfo:s({},o.hoverinfo,{editType:\"calc\"})})},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plots/attributes\":764,\"../../plots/template_attributes\":843,\"../surface/attributes\":1225}],1053:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/calc\");e.exports=function(t,e){e.intensity&&n(t,e,{vals:e.intensity,containerStr:\"\",cLetter:\"c\"})}},{\"../../components/colorscale/calc\":602}],1054:[function(t,e,r){\"use strict\";var n=t(\"gl-mesh3d\"),a=t(\"delaunay-triangulate\"),i=t(\"alpha-shape\"),o=t(\"convex-hull\"),s=t(\"../../lib/gl_format_color\").parseColorScale,l=t(\"../../lib/str2rgbarray\"),c=t(\"../../components/colorscale\").extractOpts,u=t(\"../../plots/gl3d/zip3\");function h(t,e,r){this.scene=t,this.uid=r,this.mesh=e,this.name=\"\",this.color=\"#fff\",this.data=null,this.showContour=!1}var f=h.prototype;function p(t){for(var e=[],r=t.length,n=0;n<r;n++)e[n]=l(t[n]);return e}function d(t,e,r,n){for(var a=[],i=e.length,o=0;o<i;o++)a[o]=t.d2l(e[o],0,n)*r;return a}function g(t){for(var e=[],r=t.length,n=0;n<r;n++)e[n]=Math.round(t[n]);return e}function v(t,e){for(var r=t.length,n=0;n<r;n++)if(t[n]<=-.5||t[n]>=e-.5)return!1;return!0}f.handlePick=function(t){if(t.object===this.mesh){var e=t.index=t.data.index;t.traceCoordinate=[this.data.x[e],this.data.y[e],this.data.z[e]];var r=this.data.hovertext||this.data.text;return Array.isArray(r)&&void 0!==r[e]?t.textLabel=r[e]:r&&(t.textLabel=r),!0}},f.update=function(t){var e=this.scene,r=e.fullSceneLayout;this.data=t;var n,h=t.x.length,f=u(d(r.xaxis,t.x,e.dataScale[0],t.xcalendar),d(r.yaxis,t.y,e.dataScale[1],t.ycalendar),d(r.zaxis,t.z,e.dataScale[2],t.zcalendar));if(t.i&&t.j&&t.k){if(t.i.length!==t.j.length||t.j.length!==t.k.length||!v(t.i,h)||!v(t.j,h)||!v(t.k,h))return;n=u(g(t.i),g(t.j),g(t.k))}else n=0===t.alphahull?o(f):t.alphahull>0?i(t.alphahull,f):function(t,e){for(var r=[\"x\",\"y\",\"z\"].indexOf(t),n=[],i=e.length,o=0;o<i;o++)n[o]=[e[o][(r+1)%3],e[o][(r+2)%3]];return a(n)}(t.delaunayaxis,f);var m={positions:f,cells:n,lightPosition:[t.lightposition.x,t.lightposition.y,t.lightposition.z],ambient:t.lighting.ambient,diffuse:t.lighting.diffuse,specular:t.lighting.specular,roughness:t.lighting.roughness,fresnel:t.lighting.fresnel,vertexNormalsEpsilon:t.lighting.vertexnormalsepsilon,faceNormalsEpsilon:t.lighting.facenormalsepsilon,opacity:t.opacity,contourEnable:t.contour.show,contourColor:l(t.contour.color).slice(0,3),contourWidth:t.contour.width,useFacetNormals:t.flatshading};if(t.intensity){var y=c(t);this.color=\"#fff\",m.vertexIntensity=t.intensity,m.vertexIntensityBounds=[y.min,y.max],m.colormap=s(t)}else t.vertexcolor?(this.color=t.vertexcolor[0],m.vertexColors=p(t.vertexcolor)):t.facecolor?(this.color=t.facecolor[0],m.cellColors=p(t.facecolor)):(this.color=t.color,m.meshColor=l(t.color));this.mesh.update(m)},f.dispose=function(){this.scene.glplot.remove(this.mesh),this.mesh.dispose()},e.exports=function(t,e){var r=t.glplot.gl,a=n({gl:r}),i=new h(t,a,e.uid);return a._trace=i,i.update(e),t.glplot.add(a),i}},{\"../../components/colorscale\":606,\"../../lib/gl_format_color\":716,\"../../lib/str2rgbarray\":742,\"../../plots/gl3d/zip3\":818,\"alpha-shape\":65,\"convex-hull\":131,\"delaunay-triangulate\":166,\"gl-mesh3d\":281}],1055:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\"),i=t(\"../../components/colorscale/defaults\"),o=t(\"./attributes\");e.exports=function(t,e,r,s){function l(r,n){return a.coerce(t,e,o,r,n)}function c(t){var e=t.map(function(t){var e=l(t);return e&&a.isArrayOrTypedArray(e)?e:null});return e.every(function(t){return t&&t.length===e[0].length})&&e}c([\"x\",\"y\",\"z\"])?(c([\"i\",\"j\",\"k\"]),(!e.i||e.j&&e.k)&&(!e.j||e.k&&e.i)&&(!e.k||e.i&&e.j)?(n.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\",\"y\",\"z\"],s),[\"lighting.ambient\",\"lighting.diffuse\",\"lighting.specular\",\"lighting.roughness\",\"lighting.fresnel\",\"lighting.vertexnormalsepsilon\",\"lighting.facenormalsepsilon\",\"lightposition.x\",\"lightposition.y\",\"lightposition.z\",\"contour.show\",\"contour.color\",\"contour.width\",\"colorscale\",\"reversescale\",\"flatshading\",\"alphahull\",\"delaunayaxis\",\"opacity\"].forEach(function(t){l(t)}),\"intensity\"in t?(l(\"intensity\"),i(t,e,s,l,{prefix:\"\",cLetter:\"c\"})):(e.showscale=!1,\"facecolor\"in t?l(\"facecolor\"):\"vertexcolor\"in t?l(\"vertexcolor\"):l(\"color\",r)),l(\"text\"),l(\"hovertext\"),l(\"hovertemplate\"),e._length=null):e.visible=!1):e.visible=!1}},{\"../../components/colorscale/defaults\":604,\"../../lib\":719,\"../../registry\":848,\"./attributes\":1052}],1056:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),colorbar:{min:\"cmin\",max:\"cmax\"},plot:t(\"./convert\"),moduleType:\"trace\",name:\"mesh3d\",basePlotModule:t(\"../../plots/gl3d\"),categories:[\"gl3d\"],meta:{}}},{\"../../plots/gl3d\":807,\"./attributes\":1052,\"./calc\":1053,\"./convert\":1054,\"./defaults\":1055}],1057:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").extendFlat,a=t(\"../scatter/attributes\"),i=t(\"../../components/drawing/attributes\").dash,o=t(\"../../components/fx/attributes\"),s=t(\"../../constants/delta.js\"),l=s.INCREASING.COLOR,c=s.DECREASING.COLOR,u=a.line;function h(t){return{line:{color:n({},u.color,{dflt:t}),width:u.width,dash:i,editType:\"style\"},editType:\"style\"}}e.exports={x:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},open:{valType:\"data_array\",editType:\"calc\"},high:{valType:\"data_array\",editType:\"calc\"},low:{valType:\"data_array\",editType:\"calc\"},close:{valType:\"data_array\",editType:\"calc\"},line:{width:n({},u.width,{}),dash:n({},i,{}),editType:\"style\"},increasing:h(l),decreasing:h(c),text:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"calc\"},hovertext:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"calc\"},tickwidth:{valType:\"number\",min:0,max:.5,dflt:.3,editType:\"calc\"},hoverlabel:n({},o.hoverlabel,{split:{valType:\"boolean\",dflt:!1,editType:\"style\"}})}},{\"../../components/drawing/attributes\":614,\"../../components/fx/attributes\":624,\"../../constants/delta.js\":689,\"../../lib\":719,\"../scatter/attributes\":1111}],1058:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=n._,i=t(\"../../plots/cartesian/axes\"),o=t(\"../../constants/numerical\").BADNUM;function s(t,e,r,n){return{o:t,h:e,l:r,c:n}}function l(t,e,r,s,l){for(var c=s.makeCalcdata(e,\"open\"),u=s.makeCalcdata(e,\"high\"),h=s.makeCalcdata(e,\"low\"),f=s.makeCalcdata(e,\"close\"),p=Array.isArray(e.text),d=Array.isArray(e.hovertext),g=!0,v=null,m=[],y=0;y<r.length;y++){var x=r[y],b=c[y],_=u[y],w=h[y],k=f[y];if(x!==o&&b!==o&&_!==o&&w!==o&&k!==o){k===b?null!==v&&k!==v&&(g=k>v):g=k>b,v=k;var T=l(b,_,w,k);T.pos=x,T.yc=(b+k)/2,T.i=y,T.dir=g?\"increasing\":\"decreasing\",T.x=T.pos,T.y=[w,_],p&&(T.tx=e.text[y]),d&&(T.htx=e.hovertext[y]),m.push(T)}else m.push({pos:x,empty:!0})}return e._extremes[s._id]=i.findExtremes(s,n.concat(h,u),{padded:!0}),m.length&&(m[0].t={labels:{open:a(t,\"open:\")+\" \",high:a(t,\"high:\")+\" \",low:a(t,\"low:\")+\" \",close:a(t,\"close:\")+\" \"}}),m}e.exports={calc:function(t,e){var r=i.getFromId(t,e.xaxis),a=i.getFromId(t,e.yaxis),o=function(t,e,r){var a=r._minDiff;if(!a){var i,o=t._fullData,s=[];for(a=1/0,i=0;i<o.length;i++){var l=o[i];if(\"ohlc\"===l.type&&!0===l.visible&&l.xaxis===e._id){s.push(l);var c=e.makeCalcdata(l,\"x\");l._xcalc=c;var u=n.distinctVals(c).minDiff;u&&isFinite(u)&&(a=Math.min(a,u))}}for(a===1/0&&(a=1),i=0;i<s.length;i++)s[i]._minDiff=a}return a*r.tickwidth}(t,r,e),c=e._minDiff;e._minDiff=null;var u=e._xcalc;e._xcalc=null;var h=l(t,e,u,a,s);return e._extremes[r._id]=i.findExtremes(r,u,{vpad:c/2}),h.length?(n.extendFlat(h[0].t,{wHover:c/2,tickLen:o}),h):[{t:{empty:!0}}]},calcCommon:l}},{\"../../constants/numerical\":695,\"../../lib\":719,\"../../plots/cartesian/axes\":767}],1059:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./ohlc_defaults\"),i=t(\"./attributes\");function o(t,e,r,n){r(n+\".line.color\"),r(n+\".line.width\",e.line.width),r(n+\".line.dash\",e.line.dash)}e.exports=function(t,e,r,s){function l(r,a){return n.coerce(t,e,i,r,a)}a(t,e,l,s)?(l(\"line.width\"),l(\"line.dash\"),o(t,e,l,\"increasing\"),o(t,e,l,\"decreasing\"),l(\"text\"),l(\"hovertext\"),l(\"tickwidth\"),s._requestRangeslider[e.xaxis]=!0):e.visible=!1}},{\"../../lib\":719,\"./attributes\":1057,\"./ohlc_defaults\":1062}],1060:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),a=t(\"../../lib\"),i=t(\"../../components/fx\"),o=t(\"../../components/color\"),s=t(\"../../lib\").fillText,l=t(\"../../constants/delta.js\"),c={increasing:l.INCREASING.SYMBOL,decreasing:l.DECREASING.SYMBOL};function u(t,e,r,n){var a,s,l=t.cd,c=t.xa,u=l[0].trace,h=l[0].t,f=u.type,p=\"ohlc\"===f?\"l\":\"min\",d=\"ohlc\"===f?\"h\":\"max\",g=h.bPos||0,v=function(t){return t.pos+g-e},m=h.bdPos||h.tickLen,y=h.wHover,x=Math.min(1,m/Math.abs(c.r2c(c.range[1])-c.r2c(c.range[0])));function b(t){var e=v(t);return i.inbox(e-y,e+y,a)}function _(t){var e=t[p],n=t[d];return e===n||i.inbox(e-r,n-r,a)}function w(t){return(b(t)+_(t))/2}a=t.maxHoverDistance-x,s=t.maxSpikeDistance-x;var k=i.getDistanceFunction(n,b,_,w);if(i.getClosest(l,k,t),!1===t.index)return null;var T=l[t.index];if(T.empty)return null;var A=u[T.dir],M=A.line.color;return o.opacity(M)&&A.line.width?t.color=M:t.color=A.fillcolor,t.x0=c.c2p(T.pos+g-m,!0),t.x1=c.c2p(T.pos+g+m,!0),t.xLabelVal=T.pos,t.spikeDistance=w(T)*s/a,t.xSpike=c.c2p(T.pos,!0),t}function h(t,e,r,i){var o=t.cd,s=t.ya,l=o[0].trace,c=o[0].t,h=[],f=u(t,e,r,i);if(!f)return[];var p=o[f.index].hi||l.hoverinfo,d=p.split(\"+\");if(!(\"all\"===p||-1!==d.indexOf(\"y\")))return[];for(var g=[\"high\",\"open\",\"close\",\"low\"],v={},m=0;m<g.length;m++){var y,x=g[m],b=l[x][f.index],_=s.c2p(b,!0);b in v?(y=v[b]).yLabel+=\"<br>\"+c.labels[x]+n.hoverLabelText(s,b):((y=a.extendFlat({},f)).y0=y.y1=_,y.yLabelVal=b,y.yLabel=c.labels[x]+n.hoverLabelText(s,b),y.name=\"\",h.push(y),v[b]=y)}return h}function f(t,e,r,a){var i=t.cd,o=t.ya,l=i[0].trace,h=i[0].t,f=u(t,e,r,a);if(!f)return[];var p=i[f.index],d=f.index=p.i,g=p.dir;function v(t){return h.labels[t]+n.hoverLabelText(o,l[t][d])}var m=p.hi||l.hoverinfo,y=m.split(\"+\"),x=\"all\"===m,b=x||-1!==y.indexOf(\"y\"),_=x||-1!==y.indexOf(\"text\"),w=b?[v(\"open\"),v(\"high\"),v(\"low\"),v(\"close\")+\"  \"+c[g]]:[];return _&&s(p,l,w),f.extraText=w.join(\"<br>\"),f.y0=f.y1=o.c2p(p.yc,!0),[f]}e.exports={hoverPoints:function(t,e,r,n){return t.cd[0].trace.hoverlabel.split?h(t,e,r,n):f(t,e,r,n)},hoverSplit:h,hoverOnPoints:f}},{\"../../components/color\":594,\"../../components/fx\":632,\"../../constants/delta.js\":689,\"../../lib\":719,\"../../plots/cartesian/axes\":767}],1061:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"ohlc\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"showLegend\"],meta:{},attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\").calc,plot:t(\"./plot\"),style:t(\"./style\"),hoverPoints:t(\"./hover\").hoverPoints,selectPoints:t(\"./select\")}},{\"../../plots/cartesian\":778,\"./attributes\":1057,\"./calc\":1058,\"./defaults\":1059,\"./hover\":1060,\"./plot\":1063,\"./select\":1064,\"./style\":1065}],1062:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\");e.exports=function(t,e,r,i){var o=r(\"x\"),s=r(\"open\"),l=r(\"high\"),c=r(\"low\"),u=r(\"close\");if(r(\"hoverlabel.split\"),n.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\"],i),s&&l&&c&&u){var h=Math.min(s.length,l.length,c.length,u.length);return o&&(h=Math.min(h,a.minRowLength(o))),e._length=h,h}}},{\"../../lib\":719,\"../../registry\":848}],1063:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../lib\");e.exports=function(t,e,r,i){var o=e.xaxis,s=e.yaxis;a.makeTraceGroups(i,r,\"trace ohlc\").each(function(t){var e=n.select(this),r=t[0],i=r.t;if(!0!==r.trace.visible||i.empty)e.remove();else{var l=i.tickLen,c=e.selectAll(\"path\").data(a.identity);c.enter().append(\"path\"),c.exit().remove(),c.attr(\"d\",function(t){if(t.empty)return\"M0,0Z\";var e=o.c2p(t.pos,!0),r=o.c2p(t.pos-l,!0),n=o.c2p(t.pos+l,!0);return\"M\"+r+\",\"+s.c2p(t.o,!0)+\"H\"+e+\"M\"+e+\",\"+s.c2p(t.h,!0)+\"V\"+s.c2p(t.l,!0)+\"M\"+n+\",\"+s.c2p(t.c,!0)+\"H\"+e})}})}},{\"../../lib\":719,d3:164}],1064:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r,n=t.cd,a=t.xaxis,i=t.yaxis,o=[],s=n[0].t.bPos||0;if(!1===e)for(r=0;r<n.length;r++)n[r].selected=0;else for(r=0;r<n.length;r++){var l=n[r];e.contains([a.c2p(l.pos+s),i.c2p(l.yc)],null,l.i,t)?(o.push({pointNumber:l.i,x:a.c2d(l.pos),y:i.c2d(l.yc)}),l.selected=1):l.selected=0}return o}},{}],1065:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/drawing\"),i=t(\"../../components/color\");e.exports=function(t,e,r){var o=r||n.select(t).selectAll(\"g.ohlclayer\").selectAll(\"g.trace\");o.style(\"opacity\",function(t){return t[0].trace.opacity}),o.each(function(t){var e=t[0].trace;n.select(this).selectAll(\"path\").each(function(t){if(!t.empty){var r=e[t.dir].line;n.select(this).style(\"fill\",\"none\").call(i.stroke,r.color).call(a.dashLine,r.dash,r.width).style(\"opacity\",e.selectedpoints&&!t.selected?.3:1)}})})}},{\"../../components/color\":594,\"../../components/drawing\":615,d3:164}],1066:[function(t,e,r){\"use strict\";var n=t(\"../../lib/extend\").extendFlat,a=t(\"../../plots/attributes\"),i=t(\"../../plots/font_attributes\"),o=t(\"../../components/colorscale/attributes\"),s=t(\"../../plots/template_attributes\").hovertemplateAttrs,l=t(\"../../plots/domain\").attributes,c=n({editType:\"calc\"},o(\"line\",{editTypeOverride:\"calc\"}),{shape:{valType:\"enumerated\",values:[\"linear\",\"hspline\"],dflt:\"linear\",editType:\"plot\"},hovertemplate:s({editType:\"plot\",arrayOk:!1},{keys:[\"count\",\"probability\"]})});e.exports={domain:l({name:\"parcats\",trace:!0,editType:\"calc\"}),hoverinfo:n({},a.hoverinfo,{flags:[\"count\",\"probability\"],editType:\"plot\",arrayOk:!1}),hoveron:{valType:\"enumerated\",values:[\"category\",\"color\",\"dimension\"],dflt:\"category\",editType:\"plot\"},hovertemplate:s({editType:\"plot\",arrayOk:!1},{keys:[\"count\",\"probability\",\"category\",\"categorycount\",\"colorcount\",\"bandcolorcount\"]}),arrangement:{valType:\"enumerated\",values:[\"perpendicular\",\"freeform\",\"fixed\"],dflt:\"perpendicular\",editType:\"plot\"},bundlecolors:{valType:\"boolean\",dflt:!0,editType:\"plot\"},sortpaths:{valType:\"enumerated\",values:[\"forward\",\"backward\"],dflt:\"forward\",editType:\"plot\"},labelfont:i({editType:\"calc\"}),tickfont:i({editType:\"calc\"}),dimensions:{_isLinkedToArray:\"dimension\",label:{valType:\"string\",editType:\"calc\"},categoryorder:{valType:\"enumerated\",values:[\"trace\",\"category ascending\",\"category descending\",\"array\"],dflt:\"trace\",editType:\"calc\"},categoryarray:{valType:\"data_array\",editType:\"calc\"},ticktext:{valType:\"data_array\",editType:\"calc\"},values:{valType:\"data_array\",dflt:[],editType:\"calc\"},displayindex:{valType:\"integer\",editType:\"calc\"},editType:\"calc\",visible:{valType:\"boolean\",dflt:!0,editType:\"calc\"}},line:c,counts:{valType:\"number\",min:0,dflt:1,arrayOk:!0,editType:\"calc\"},customdata:void 0,hoverlabel:void 0,ids:void 0,legendgroup:void 0,opacity:void 0,selectedpoints:void 0,showlegend:void 0}},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plots/attributes\":764,\"../../plots/domain\":792,\"../../plots/font_attributes\":793,\"../../plots/template_attributes\":843}],1067:[function(t,e,r){\"use strict\";var n=t(\"../../plots/get_data\").getModuleCalcData,a=t(\"./plot\");r.name=\"parcats\",r.plot=function(t,e,r,i){var o=n(t.calcdata,\"parcats\");if(o.length){var s=o[0];a(t,s,r,i)}},r.clean=function(t,e,r,n){var a=n._has&&n._has(\"parcats\"),i=e._has&&e._has(\"parcats\");a&&!i&&n._paperdiv.selectAll(\".parcats\").remove()}},{\"../../plots/get_data\":802,\"./plot\":1072}],1068:[function(t,e,r){\"use strict\";var n=t(\"../../lib/gup\").wrap,a=t(\"../../components/colorscale/helpers\").hasColorscale,i=t(\"../../components/colorscale/calc\"),o=t(\"../../lib/filter_unique.js\"),s=t(\"../../components/drawing\"),l=t(\"../../lib\");function c(t,e,r){t.valueInds.push(e),t.count+=r}function u(t,e,r){return{categoryInds:t,color:e,rawColor:r,valueInds:[],count:0}}function h(t,e,r){t.valueInds.push(e),t.count+=r}e.exports=function(t,e){var r=l.filterVisible(e.dimensions);if(0===r.length)return[];var f,p,d,g=r.map(function(t){var e;return\"trace\"===t.categoryorder?e=null:\"array\"===t.categoryorder?e=t.categoryarray:(e=o(t.values).sort(),\"category descending\"===t.categoryorder&&(e=e.reverse())),function(t,e){e=null==e?[]:e.map(function(t){return t});var r={},n={},a=[];e.forEach(function(t,e){r[t]=0,n[t]=e});for(var i=0;i<t.length;i++){var o,s=t[i];void 0===r[s]?(r[s]=1,o=e.push(s)-1,n[s]=o):(r[s]++,o=n[s]),a.push(o)}var l=e.map(function(t){return r[t]});return{uniqueValues:e,uniqueCounts:l,inds:a}}(t.values,e)});f=l.isArrayOrTypedArray(e.counts)?e.counts:[e.counts],function(t){var e;if(function(t){for(var e=new Array(t.length),r=0;r<t.length;r++){if(t[r]<0||t[r]>=t.length)return!1;if(void 0!==e[t[r]])return!1;e[t[r]]=!0}return!0}(t.map(function(t){return t.displayindex})))for(e=0;e<t.length;e++)t[e]._displayindex=t[e].displayindex;else for(e=0;e<t.length;e++)t[e]._displayindex=e}(r),r.forEach(function(t,e){!function(t,e){t._categoryarray=e.uniqueValues,null===t.ticktext||void 0===t.ticktext?t._ticktext=[]:t._ticktext=t.ticktext.slice();for(var r=t._ticktext.length;r<e.uniqueValues.length;r++)t._ticktext.push(e.uniqueValues[r])}(t,g[e])});var v,m=e.line;m?(a(e,\"line\")&&i(t,e,{vals:e.line.color,containerStr:\"line\",cLetter:\"c\"}),v=s.tryColorscale(m)):v=l.identity;var y,x,b,_,w,k=r[0].values.length,T={},A=g.map(function(t){return t.inds});for(d=0,y=0;y<k;y++){var M=[];for(x=0;x<A.length;x++)M.push(A[x][y]);p=f[y%f.length],d+=p;var S=(b=y,_=void 0,w=void 0,l.isArrayOrTypedArray(m.color)?w=_=m.color[b%m.color.length]:_=m.color,{color:v(_),rawColor:w}),E=M+\"-\"+S.rawColor;void 0===T[E]&&(T[E]=u(M,S.color,S.rawColor)),h(T[E],y,p)}var C,L=r.map(function(t,e){return r=e,n=t._index,a=t._displayindex,i=t.label,{dimensionInd:r,containerInd:n,displayInd:a,dimensionLabel:i,count:d,categories:[],dragX:null};var r,n,a,i});for(y=0;y<k;y++)for(p=f[y%f.length],x=0;x<L.length;x++){var P=L[x].containerInd,O=g[x].inds[y],I=L[x].categories;if(void 0===I[O]){var z=e.dimensions[P]._categoryarray[O],D=e.dimensions[P]._ticktext[O];I[O]={dimensionInd:x,categoryInd:C=O,categoryValue:z,displayInd:C,categoryLabel:D,valueInds:[],count:0,dragY:null}}c(I[O],y,p)}return n(function(t,e,r){var n=t.map(function(t){return t.categories.length}).reduce(function(t,e){return Math.max(t,e)});return{dimensions:t,paths:e,trace:void 0,maxCats:n,count:r}}(L,T,d))}},{\"../../components/colorscale/calc\":602,\"../../components/colorscale/helpers\":605,\"../../components/drawing\":615,\"../../lib\":719,\"../../lib/filter_unique.js\":711,\"../../lib/gup\":717}],1069:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/colorscale/helpers\").hasColorscale,i=t(\"../../components/colorscale/defaults\"),o=t(\"../../plots/domain\").defaults,s=t(\"../../plots/array_container_defaults\"),l=t(\"./attributes\"),c=t(\"../parcoords/merge_length\");function u(t,e){function r(r,a){return n.coerce(t,e,l.dimensions,r,a)}var a=r(\"values\"),i=r(\"visible\");if(a&&a.length||(i=e.visible=!1),i){r(\"label\"),r(\"displayindex\",e._index);var o,s=t.categoryarray,c=Array.isArray(s)&&s.length>0;c&&(o=\"array\");var u=r(\"categoryorder\",o);\"array\"===u?(r(\"categoryarray\"),r(\"ticktext\")):(delete t.categoryarray,delete t.ticktext),c||\"array\"!==u||(e.categoryorder=\"trace\")}}e.exports=function(t,e,r,h){function f(r,a){return n.coerce(t,e,l,r,a)}var p=s(t,e,{name:\"dimensions\",handleItemDefaults:u}),d=function(t,e,r,o,s){s(\"line.shape\"),s(\"line.hovertemplate\");var l=s(\"line.color\",o.colorway[0]);if(a(t,\"line\")&&n.isArrayOrTypedArray(l)){if(l.length)return s(\"line.colorscale\"),i(t,e,o,s,{prefix:\"line.\",cLetter:\"c\"}),l.length;e.line.color=r}return 1/0}(t,e,r,h,f);o(e,h,f),Array.isArray(p)&&p.length||(e.visible=!1),c(e,p,\"values\",d),f(\"hoveron\"),f(\"hovertemplate\"),f(\"arrangement\"),f(\"bundlecolors\"),f(\"sortpaths\"),f(\"counts\");var g={family:h.font.family,size:Math.round(h.font.size),color:h.font.color};n.coerceFont(f,\"labelfont\",g);var v={family:h.font.family,size:Math.round(h.font.size/1.2),color:h.font.color};n.coerceFont(f,\"tickfont\",v)}},{\"../../components/colorscale/defaults\":604,\"../../components/colorscale/helpers\":605,\"../../lib\":719,\"../../plots/array_container_defaults\":763,\"../../plots/domain\":792,\"../parcoords/merge_length\":1082,\"./attributes\":1066}],1070:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),plot:t(\"./plot\"),colorbar:{container:\"line\",min:\"cmin\",max:\"cmax\"},moduleType:\"trace\",name:\"parcats\",basePlotModule:t(\"./base_plot\"),categories:[\"noOpacity\"],meta:{}}},{\"./attributes\":1066,\"./base_plot\":1067,\"./calc\":1068,\"./defaults\":1069,\"./plot\":1072}],1071:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../plot_api/plot_api\"),i=t(\"../../components/fx\"),o=t(\"../../lib\"),s=t(\"../../components/drawing\"),l=t(\"tinycolor2\"),c=t(\"../../lib/svg_text_utils\");function u(t,e,r,a){var i=t.map(function(t,e,r){var n,a=r[0],i=e.margin||{l:80,r:80,t:100,b:80},o=a.trace,s=o.domain,l=e.width,c=e.height,u=Math.floor(l*(s.x[1]-s.x[0])),h=Math.floor(c*(s.y[1]-s.y[0])),f=s.x[0]*l+i.l,p=e.height-s.y[1]*e.height+i.t,d=o.line.shape;n=\"all\"===o.hoverinfo?[\"count\",\"probability\"]:(o.hoverinfo||\"\").split(\"+\");var g={trace:o,key:o.uid,model:a,x:f,y:p,width:u,height:h,hoveron:o.hoveron,hoverinfoItems:n,arrangement:o.arrangement,bundlecolors:o.bundlecolors,sortpaths:o.sortpaths,labelfont:o.labelfont,categorylabelfont:o.tickfont,pathShape:d,dragDimension:null,margin:i,paths:[],dimensions:[],graphDiv:t,traceSelection:null,pathSelection:null,dimensionSelection:null};a.dimensions&&(F(g),R(g));return g}.bind(0,e,r)),l=a.selectAll(\"g.parcatslayer\").data([null]);l.enter().append(\"g\").attr(\"class\",\"parcatslayer\").style(\"pointer-events\",\"all\");var u=l.selectAll(\"g.trace.parcats\").data(i,h),v=u.enter().append(\"g\").attr(\"class\",\"trace parcats\");u.attr(\"transform\",function(t){return\"translate(\"+t.x+\", \"+t.y+\")\"}),v.append(\"g\").attr(\"class\",\"paths\");var m=u.select(\"g.paths\").selectAll(\"path.path\").data(function(t){return t.paths},h);m.attr(\"fill\",function(t){return t.model.color});var b=m.enter().append(\"path\").attr(\"class\",\"path\").attr(\"stroke-opacity\",0).attr(\"fill\",function(t){return t.model.color}).attr(\"fill-opacity\",0);x(b),m.attr(\"d\",function(t){return t.svgD}),b.empty()||m.sort(p),m.exit().remove(),m.on(\"mouseover\",d).on(\"mouseout\",g).on(\"click\",y),v.append(\"g\").attr(\"class\",\"dimensions\");var k=u.select(\"g.dimensions\").selectAll(\"g.dimension\").data(function(t){return t.dimensions},h);k.enter().append(\"g\").attr(\"class\",\"dimension\"),k.attr(\"transform\",function(t){return\"translate(\"+t.x+\", 0)\"}),k.exit().remove();var T=k.selectAll(\"g.category\").data(function(t){return t.categories},h),A=T.enter().append(\"g\").attr(\"class\",\"category\");T.attr(\"transform\",function(t){return\"translate(0, \"+t.y+\")\"}),A.append(\"rect\").attr(\"class\",\"catrect\").attr(\"pointer-events\",\"none\"),T.select(\"rect.catrect\").attr(\"fill\",\"none\").attr(\"width\",function(t){return t.width}).attr(\"height\",function(t){return t.height}),_(A);var M=T.selectAll(\"rect.bandrect\").data(function(t){return t.bands},h);M.each(function(){o.raiseToTop(this)}),M.attr(\"fill\",function(t){return t.color});var O=M.enter().append(\"rect\").attr(\"class\",\"bandrect\").attr(\"stroke-opacity\",0).attr(\"fill\",function(t){return t.color}).attr(\"fill-opacity\",0);M.attr(\"fill\",function(t){return t.color}).attr(\"width\",function(t){return t.width}).attr(\"height\",function(t){return t.height}).attr(\"y\",function(t){return t.y}).attr(\"cursor\",function(t){return\"fixed\"===t.parcatsViewModel.arrangement?\"default\":\"perpendicular\"===t.parcatsViewModel.arrangement?\"ns-resize\":\"move\"}),w(O),M.exit().remove(),A.append(\"text\").attr(\"class\",\"catlabel\").attr(\"pointer-events\",\"none\");var I=e._fullLayout.paper_bgcolor;T.select(\"text.catlabel\").attr(\"text-anchor\",function(t){return f(t)?\"start\":\"end\"}).attr(\"alignment-baseline\",\"middle\").style(\"text-shadow\",I+\" -1px  1px 2px, \"+I+\" 1px  1px 2px, \"+I+\"  1px -1px 2px, \"+I+\" -1px -1px 2px\").style(\"fill\",\"rgb(0, 0, 0)\").attr(\"x\",function(t){return f(t)?t.width+5:-5}).attr(\"y\",function(t){return t.height/2}).text(function(t){return t.model.categoryLabel}).each(function(t){s.font(n.select(this),t.parcatsViewModel.categorylabelfont),c.convertToTspans(n.select(this),e)}),A.append(\"text\").attr(\"class\",\"dimlabel\"),T.select(\"text.dimlabel\").attr(\"text-anchor\",\"middle\").attr(\"alignment-baseline\",\"baseline\").attr(\"cursor\",function(t){return\"fixed\"===t.parcatsViewModel.arrangement?\"default\":\"ew-resize\"}).attr(\"x\",function(t){return t.width/2}).attr(\"y\",-5).text(function(t,e){return 0===e?t.parcatsViewModel.model.dimensions[t.model.dimensionInd].dimensionLabel:null}).each(function(t){s.font(n.select(this),t.parcatsViewModel.labelfont)}),T.selectAll(\"rect.bandrect\").on(\"mouseover\",S).on(\"mouseout\",E),T.exit().remove(),k.call(n.behavior.drag().origin(function(t){return{x:t.x,y:0}}).on(\"dragstart\",C).on(\"drag\",L).on(\"dragend\",P)),u.each(function(t){t.traceSelection=n.select(this),t.pathSelection=n.select(this).selectAll(\"g.paths\").selectAll(\"path.path\"),t.dimensionSelection=n.select(this).selectAll(\"g.dimensions\").selectAll(\"g.dimension\")}),u.exit().remove()}function h(t){return t.key}function f(t){var e=t.parcatsViewModel.dimensions.length,r=t.parcatsViewModel.dimensions[e-1].model.dimensionInd;return t.model.dimensionInd===r}function p(t,e){return t.model.rawColor>e.model.rawColor?1:t.model.rawColor<e.model.rawColor?-1:0}function d(t){if(!t.parcatsViewModel.dragDimension&&-1===t.parcatsViewModel.hoverinfoItems.indexOf(\"skip\")){o.raiseToTop(this),b(n.select(this));var e=v(t),r=m(t);if(t.parcatsViewModel.graphDiv.emit(\"plotly_hover\",{points:e,event:n.event,constraints:r}),-1===t.parcatsViewModel.hoverinfoItems.indexOf(\"none\")){var a,s,c,u=n.mouse(this)[0],h=t.parcatsViewModel.graphDiv,f=t.parcatsViewModel.trace,p=h._fullLayout,d=p._paperdiv.node().getBoundingClientRect(),g=t.parcatsViewModel.graphDiv.getBoundingClientRect();for(c=0;c<t.leftXs.length-1;c++)if(t.leftXs[c]+t.dimWidths[c]-2<=u&&u<=t.leftXs[c+1]+2){var y=t.parcatsViewModel.dimensions[c],x=t.parcatsViewModel.dimensions[c+1];a=(y.x+y.width+x.x)/2,s=(t.topYs[c]+t.topYs[c+1]+t.height)/2;break}var _=t.parcatsViewModel.x+a,w=t.parcatsViewModel.y+s,k=l.mostReadable(t.model.color,[\"black\",\"white\"]),T=t.model.count,A=T/t.parcatsViewModel.model.count,M={countLabel:T,probabilityLabel:A.toFixed(3)},S=[];-1!==t.parcatsViewModel.hoverinfoItems.indexOf(\"count\")&&S.push([\"Count:\",M.countLabel].join(\" \")),-1!==t.parcatsViewModel.hoverinfoItems.indexOf(\"probability\")&&S.push([\"P:\",M.probabilityLabel].join(\" \"));var E=S.join(\"<br>\"),C=n.mouse(h)[0];i.loneHover({trace:f,x:_-d.left+g.left,y:w-d.top+g.top,text:E,color:t.model.color,borderColor:\"black\",fontFamily:'Monaco, \"Courier New\", monospace',fontSize:10,fontColor:k,idealAlign:C<_?\"right\":\"left\",hovertemplate:(f.line||{}).hovertemplate,hovertemplateLabels:M,eventData:[{data:f._input,fullData:f,count:T,probability:A}]},{container:p._hoverlayer.node(),outerContainer:p._paper.node(),gd:h})}}}function g(t){if(!t.parcatsViewModel.dragDimension&&(x(n.select(this)),i.loneUnhover(t.parcatsViewModel.graphDiv._fullLayout._hoverlayer.node()),t.parcatsViewModel.pathSelection.sort(p),-1===t.parcatsViewModel.hoverinfoItems.indexOf(\"skip\"))){var e=v(t),r=m(t);t.parcatsViewModel.graphDiv.emit(\"plotly_unhover\",{points:e,event:n.event,constraints:r})}}function v(t){for(var e=[],r=O(t.parcatsViewModel),n=0;n<t.model.valueInds.length;n++){var a=t.model.valueInds[n];e.push({curveNumber:r,pointNumber:a})}return e}function m(t){for(var e={},r=t.parcatsViewModel.model.dimensions,n=0;n<r.length;n++){var a=r[n],i=a.categories[t.model.categoryInds[n]];e[a.containerInd]=i.categoryValue}return void 0!==t.model.rawColor&&(e.color=t.model.rawColor),e}function y(t){if(-1===t.parcatsViewModel.hoverinfoItems.indexOf(\"skip\")){var e=v(t),r=m(t);t.parcatsViewModel.graphDiv.emit(\"plotly_click\",{points:e,event:n.event,constraints:r})}}function x(t){t.attr(\"fill\",function(t){return t.model.color}).attr(\"fill-opacity\",.6).attr(\"stroke\",\"lightgray\").attr(\"stroke-width\",.2).attr(\"stroke-opacity\",1)}function b(t){t.attr(\"fill-opacity\",.8).attr(\"stroke\",function(t){return l.mostReadable(t.model.color,[\"black\",\"white\"])}).attr(\"stroke-width\",.3)}function _(t){t.select(\"rect.catrect\").attr(\"stroke\",\"black\").attr(\"stroke-width\",1).attr(\"stroke-opacity\",1)}function w(t){t.attr(\"stroke\",\"black\").attr(\"stroke-width\",.2).attr(\"stroke-opacity\",1).attr(\"fill-opacity\",1)}function k(t){var e=t.parcatsViewModel.pathSelection,r=t.categoryViewModel.model.dimensionInd,n=t.categoryViewModel.model.categoryInd;return e.filter(function(e){return e.model.categoryInds[r]===n&&e.model.color===t.color})}function T(t,e,r){var a=n.select(t).datum(),i=a.categoryViewModel.model,o=a.parcatsViewModel.graphDiv,s=n.select(t.parentNode).selectAll(\"rect.bandrect\"),l=[];s.each(function(t){k(t).each(function(t){Array.prototype.push.apply(l,v(t))})});var c={};c[i.dimensionInd]=i.categoryValue,o.emit(e,{points:l,event:r,constraints:c})}function A(t,e,r){var a=n.select(t).datum(),i=a.categoryViewModel.model,o=a.parcatsViewModel.graphDiv,s=k(a),l=[];s.each(function(t){Array.prototype.push.apply(l,v(t))});var c={};c[i.dimensionInd]=i.categoryValue,void 0!==a.rawColor&&(c.color=a.rawColor),o.emit(e,{points:l,event:r,constraints:c})}function M(t,e){var r,a,i=n.select(e.parentNode).select(\"rect.catrect\"),o=i.node().getBoundingClientRect(),s=i.datum(),l=s.parcatsViewModel,c=l.model.dimensions[s.model.dimensionInd],u=l.trace,h=o.top+o.height/2;l.dimensions.length>1&&c.displayInd===l.dimensions.length-1?(r=o.left,a=\"left\"):(r=o.left+o.width,a=\"right\");var f=s.model.count,p=s.model.categoryLabel,d=f/s.parcatsViewModel.model.count,g={countLabel:f,categoryLabel:p,probabilityLabel:d.toFixed(3)},v=[];-1!==s.parcatsViewModel.hoverinfoItems.indexOf(\"count\")&&v.push([\"Count:\",g.countLabel].join(\" \")),-1!==s.parcatsViewModel.hoverinfoItems.indexOf(\"probability\")&&v.push([\"P(\"+g.categoryLabel+\"):\",g.probabilityLabel].join(\" \"));var m=v.join(\"<br>\");return{trace:u,x:r-t.left,y:h-t.top,text:m,color:\"lightgray\",borderColor:\"black\",fontFamily:'Monaco, \"Courier New\", monospace',fontSize:12,fontColor:\"black\",idealAlign:a,hovertemplate:u.hovertemplate,hovertemplateLabels:g,eventData:[{data:u._input,fullData:u,count:f,category:p,probability:d}]}}function S(t){if(!t.parcatsViewModel.dragDimension&&-1===t.parcatsViewModel.hoverinfoItems.indexOf(\"skip\")){if(n.mouse(this)[1]<-1)return;var e,r=t.parcatsViewModel.graphDiv,a=r._fullLayout,s=a._paperdiv.node().getBoundingClientRect(),c=t.parcatsViewModel.hoveron;if(\"color\"===c?(!function(t){var e=n.select(t).datum(),r=k(e);b(r),r.each(function(){o.raiseToTop(this)}),n.select(t.parentNode).selectAll(\"rect.bandrect\").filter(function(t){return t.color===e.color}).each(function(){o.raiseToTop(this),n.select(this).attr(\"stroke\",\"black\").attr(\"stroke-width\",1.5)})}(this),A(this,\"plotly_hover\",n.event)):(!function(t){n.select(t.parentNode).selectAll(\"rect.bandrect\").each(function(t){var e=k(t);b(e),e.each(function(){o.raiseToTop(this)})}),n.select(t.parentNode).select(\"rect.catrect\").attr(\"stroke\",\"black\").attr(\"stroke-width\",2.5)}(this),T(this,\"plotly_hover\",n.event)),-1===t.parcatsViewModel.hoverinfoItems.indexOf(\"none\"))\"category\"===c?e=M(s,this):\"color\"===c?e=function(t,e){var r,a,i=e.getBoundingClientRect(),o=n.select(e).datum(),s=o.categoryViewModel,c=s.parcatsViewModel,u=c.model.dimensions[s.model.dimensionInd],h=c.trace,f=i.y+i.height/2;c.dimensions.length>1&&u.displayInd===c.dimensions.length-1?(r=i.left,a=\"left\"):(r=i.left+i.width,a=\"right\");var p=s.model.categoryLabel,d=o.parcatsViewModel.model.count,g=0;o.categoryViewModel.bands.forEach(function(t){t.color===o.color&&(g+=t.count)});var v=s.model.count,m=0;c.pathSelection.each(function(t){t.model.color===o.color&&(m+=t.model.count)});var y=g/d,x=g/m,b=g/v,_={countLabel:d,categoryLabel:p,probabilityLabel:y.toFixed(3)},w=[];-1!==s.parcatsViewModel.hoverinfoItems.indexOf(\"count\")&&w.push([\"Count:\",_.countLabel].join(\" \")),-1!==s.parcatsViewModel.hoverinfoItems.indexOf(\"probability\")&&(w.push(\"P(color \\u2229 \"+p+\"): \"+_.probabilityLabel),w.push(\"P(\"+p+\" | color): \"+x.toFixed(3)),w.push(\"P(color | \"+p+\"): \"+b.toFixed(3)));var k=w.join(\"<br>\"),T=l.mostReadable(o.color,[\"black\",\"white\"]);return{trace:h,x:r-t.left,y:f-t.top,text:k,color:o.color,borderColor:\"black\",fontFamily:'Monaco, \"Courier New\", monospace',fontColor:T,fontSize:10,idealAlign:a,hovertemplate:h.hovertemplate,hovertemplateLabels:_,eventData:[{data:h._input,fullData:h,category:p,count:d,probability:y,categorycount:v,colorcount:m,bandcolorcount:g}]}}(s,this):\"dimension\"===c&&(e=function(t,e){var r=[];return n.select(e.parentNode.parentNode).selectAll(\"g.category\").select(\"rect.catrect\").each(function(){r.push(M(t,this))}),r}(s,this)),e&&i.loneHover(e,{container:a._hoverlayer.node(),outerContainer:a._paper.node(),gd:r})}}function E(t){var e=t.parcatsViewModel;if(!e.dragDimension&&(x(e.pathSelection),_(e.dimensionSelection.selectAll(\"g.category\")),w(e.dimensionSelection.selectAll(\"g.category\").selectAll(\"rect.bandrect\")),i.loneUnhover(e.graphDiv._fullLayout._hoverlayer.node()),e.pathSelection.sort(p),-1===e.hoverinfoItems.indexOf(\"skip\"))){\"color\"===t.parcatsViewModel.hoveron?A(this,\"plotly_unhover\",n.event):T(this,\"plotly_unhover\",n.event)}}function C(t){\"fixed\"!==t.parcatsViewModel.arrangement&&(t.dragDimensionDisplayInd=t.model.displayInd,t.initialDragDimensionDisplayInds=t.parcatsViewModel.model.dimensions.map(function(t){return t.displayInd}),t.dragHasMoved=!1,t.dragCategoryDisplayInd=null,n.select(this).selectAll(\"g.category\").select(\"rect.catrect\").each(function(e){var r=n.mouse(this)[0],a=n.mouse(this)[1];-2<=r&&r<=e.width+2&&-2<=a&&a<=e.height+2&&(t.dragCategoryDisplayInd=e.model.displayInd,t.initialDragCategoryDisplayInds=t.model.categories.map(function(t){return t.displayInd}),e.model.dragY=e.y,o.raiseToTop(this.parentNode),n.select(this.parentNode).selectAll(\"rect.bandrect\").each(function(e){e.y<a&&a<=e.y+e.height&&(t.potentialClickBand=this)}))}),t.parcatsViewModel.dragDimension=t,i.loneUnhover(t.parcatsViewModel.graphDiv._fullLayout._hoverlayer.node()))}function L(t){if(\"fixed\"!==t.parcatsViewModel.arrangement&&(t.dragHasMoved=!0,null!==t.dragDimensionDisplayInd)){var e=t.dragDimensionDisplayInd,r=e-1,a=e+1,i=t.parcatsViewModel.dimensions[e];if(null!==t.dragCategoryDisplayInd){var o=i.categories[t.dragCategoryDisplayInd];o.model.dragY+=n.event.dy;var s=o.model.dragY,l=o.model.displayInd,c=i.categories,u=c[l-1],h=c[l+1];void 0!==u&&s<u.y+u.height/2&&(o.model.displayInd=u.model.displayInd,u.model.displayInd=l),void 0!==h&&s+o.height>h.y+h.height/2&&(o.model.displayInd=h.model.displayInd,h.model.displayInd=l),t.dragCategoryDisplayInd=o.model.displayInd}if(null===t.dragCategoryDisplayInd||\"freeform\"===t.parcatsViewModel.arrangement){i.model.dragX=n.event.x;var f=t.parcatsViewModel.dimensions[r],p=t.parcatsViewModel.dimensions[a];void 0!==f&&i.model.dragX<f.x+f.width&&(i.model.displayInd=f.model.displayInd,f.model.displayInd=e),void 0!==p&&i.model.dragX+i.width>p.x&&(i.model.displayInd=p.model.displayInd,p.model.displayInd=t.dragDimensionDisplayInd),t.dragDimensionDisplayInd=i.model.displayInd}F(t.parcatsViewModel),R(t.parcatsViewModel),z(t.parcatsViewModel),I(t.parcatsViewModel)}}function P(t){if(\"fixed\"!==t.parcatsViewModel.arrangement&&null!==t.dragDimensionDisplayInd){n.select(this).selectAll(\"text\").attr(\"font-weight\",\"normal\");var e={},r=O(t.parcatsViewModel),i=t.parcatsViewModel.model.dimensions.map(function(t){return t.displayInd}),o=t.initialDragDimensionDisplayInds.some(function(t,e){return t!==i[e]});o&&i.forEach(function(r,n){var a=t.parcatsViewModel.model.dimensions[n].containerInd;e[\"dimensions[\"+a+\"].displayindex\"]=r});var s=!1;if(null!==t.dragCategoryDisplayInd){var l=t.model.categories.map(function(t){return t.displayInd});if(s=t.initialDragCategoryDisplayInds.some(function(t,e){return t!==l[e]})){var c=t.model.categories.slice().sort(function(t,e){return t.displayInd-e.displayInd}),u=c.map(function(t){return t.categoryValue}),h=c.map(function(t){return t.categoryLabel});e[\"dimensions[\"+t.model.containerInd+\"].categoryarray\"]=[u],e[\"dimensions[\"+t.model.containerInd+\"].ticktext\"]=[h],e[\"dimensions[\"+t.model.containerInd+\"].categoryorder\"]=\"array\"}}if(-1===t.parcatsViewModel.hoverinfoItems.indexOf(\"skip\")&&!t.dragHasMoved&&t.potentialClickBand&&(\"color\"===t.parcatsViewModel.hoveron?A(t.potentialClickBand,\"plotly_click\",n.event.sourceEvent):T(t.potentialClickBand,\"plotly_click\",n.event.sourceEvent)),t.model.dragX=null,null!==t.dragCategoryDisplayInd)t.parcatsViewModel.dimensions[t.dragDimensionDisplayInd].categories[t.dragCategoryDisplayInd].model.dragY=null,t.dragCategoryDisplayInd=null;t.dragDimensionDisplayInd=null,t.parcatsViewModel.dragDimension=null,t.dragHasMoved=null,t.potentialClickBand=null,F(t.parcatsViewModel),R(t.parcatsViewModel),n.transition().duration(300).ease(\"cubic-in-out\").each(function(){z(t.parcatsViewModel,!0),I(t.parcatsViewModel,!0)}).each(\"end\",function(){(o||s)&&a.restyle(t.parcatsViewModel.graphDiv,e,[r])})}}function O(t){for(var e,r=t.graphDiv._fullData,n=0;n<r.length;n++)if(t.key===r[n].uid){e=n;break}return e}function I(t,e){var r;void 0===e&&(e=!1),t.pathSelection.data(function(t){return t.paths},h),(r=t.pathSelection,e?r.transition():r).attr(\"d\",function(t){return t.svgD})}function z(t,e){function r(t){return e?t.transition():t}void 0===e&&(e=!1),t.dimensionSelection.data(function(t){return t.dimensions},h);var a=t.dimensionSelection.selectAll(\"g.category\").data(function(t){return t.categories},h);r(t.dimensionSelection).attr(\"transform\",function(t){return\"translate(\"+t.x+\", 0)\"}),r(a).attr(\"transform\",function(t){return\"translate(0, \"+t.y+\")\"}),a.select(\".dimlabel\").text(function(t,e){return 0===e?t.parcatsViewModel.model.dimensions[t.model.dimensionInd].dimensionLabel:null}),a.select(\".catlabel\").attr(\"text-anchor\",function(t){return f(t)?\"start\":\"end\"}).attr(\"x\",function(t){return f(t)?t.width+5:-5}).each(function(t){var e,r;f(t)?(e=t.width+5,r=\"start\"):(e=-5,r=\"end\"),n.select(this).selectAll(\"tspan\").attr(\"x\",e).attr(\"text-anchor\",r)});var i=a.selectAll(\"rect.bandrect\").data(function(t){return t.bands},h),s=i.enter().append(\"rect\").attr(\"class\",\"bandrect\").attr(\"cursor\",\"move\").attr(\"stroke-opacity\",0).attr(\"fill\",function(t){return t.color}).attr(\"fill-opacity\",0);i.attr(\"fill\",function(t){return t.color}).attr(\"width\",function(t){return t.width}).attr(\"height\",function(t){return t.height}).attr(\"y\",function(t){return t.y}),w(s),i.each(function(){o.raiseToTop(this)}),i.exit().remove()}function D(t,e,r,a,i){var o,s,l=[],c=[];for(s=0;s<r.length-1;s++)o=n.interpolateNumber(r[s]+t[s],t[s+1]),l.push(o(i)),c.push(o(1-i));var u=\"M \"+t[0]+\",\"+e[0];for(u+=\"l\"+r[0]+\",0 \",s=1;s<r.length;s++)u+=\"C\"+l[s-1]+\",\"+e[s-1]+\" \"+c[s-1]+\",\"+e[s]+\" \"+t[s]+\",\"+e[s],u+=\"l\"+r[s]+\",0 \";for(u+=\"l0,\"+a+\" \",u+=\"l -\"+r[r.length-1]+\",0 \",s=r.length-2;s>=0;s--)u+=\"C\"+c[s]+\",\"+(e[s+1]+a)+\" \"+l[s]+\",\"+(e[s]+a)+\" \"+(t[s]+r[s])+\",\"+(e[s]+a),u+=\"l-\"+r[s]+\",0 \";return u+=\"Z\"}function R(t){var e=t.dimensions,r=t.model,n=e.map(function(t){return t.categories.map(function(t){return t.y})}),a=t.model.dimensions.map(function(t){return t.categories.map(function(t){return t.displayInd})}),i=t.model.dimensions.map(function(t){return t.displayInd}),o=t.dimensions.map(function(t){return t.model.dimensionInd}),s=e.map(function(t){return t.x}),l=e.map(function(t){return t.width}),c=[];for(var u in r.paths)r.paths.hasOwnProperty(u)&&c.push(r.paths[u]);function h(t){var e=t.categoryInds.map(function(t,e){return a[e][t]});return o.map(function(t){return e[t]})}c.sort(function(e,r){var n=h(e),a=h(r);return\"backward\"===t.sortpaths&&(n.reverse(),a.reverse()),n.push(e.valueInds[0]),a.push(r.valueInds[0]),t.bundlecolors&&(n.unshift(e.rawColor),a.unshift(r.rawColor)),n<a?-1:n>a?1:0});for(var f=new Array(c.length),p=e[0].model.count,d=e[0].categories.map(function(t){return t.height}).reduce(function(t,e){return t+e}),g=0;g<c.length;g++){var v,m=c[g];v=p>0?d*(m.count/p):0;for(var y,x=new Array(n.length),b=0;b<m.categoryInds.length;b++){var _=m.categoryInds[b],w=a[b][_],k=i[b];x[k]=n[k][w],n[k][w]+=v;var T=t.dimensions[k].categories[w],A=T.bands.length,M=T.bands[A-1];if(void 0===M||m.rawColor!==M.rawColor){var S=void 0===M?0:M.y+M.height;T.bands.push({key:S,color:m.color,rawColor:m.rawColor,height:v,width:T.width,count:m.count,y:S,categoryViewModel:T,parcatsViewModel:t})}else{var E=T.bands[A-1];E.height+=v,E.count+=m.count}}y=\"hspline\"===t.pathShape?D(s,x,l,v,.5):D(s,x,l,v,0),f[g]={key:m.valueInds[0],model:m,height:v,leftXs:s,topYs:x,dimWidths:l,svgD:y,parcatsViewModel:t}}t.paths=f}function F(t){var e=t.model.dimensions.map(function(t){return{displayInd:t.displayInd,dimensionInd:t.dimensionInd}});e.sort(function(t,e){return t.displayInd-e.displayInd});var r=[];for(var n in e){var a=e[n].dimensionInd,i=t.model.dimensions[a];r.push(B(t,i))}t.dimensions=r}function B(t,e){var r,n=t.model.dimensions.length,a=e.displayInd;r=40+(n>1?(t.width-80-16)/(n-1):0)*a;var i,o,s,l,c,u=[],h=t.model.maxCats,f=e.categories.length,p=e.count,d=t.height-8*(h-1),g=8*(h-f)/2,v=e.categories.map(function(t){return{displayInd:t.displayInd,categoryInd:t.categoryInd}});for(v.sort(function(t,e){return t.displayInd-e.displayInd}),c=0;c<f;c++)l=v[c].categoryInd,o=e.categories[l],i=p>0?o.count/p*d:0,s={key:o.valueInds[0],model:o,width:16,height:i,y:null!==o.dragY?o.dragY:g,bands:[],parcatsViewModel:t},g=g+i+8,u.push(s);return{key:e.dimensionInd,x:null!==e.dragX?e.dragX:r,y:0,width:16,model:e,categories:u,parcatsViewModel:t,dragCategoryDisplayInd:null,dragDimensionDisplayInd:null,initialDragDimensionDisplayInds:null,initialDragCategoryDisplayInds:null,dragHasMoved:null,potentialClickBand:null}}e.exports=function(t,e,r,n){u(r,t,n,e)}},{\"../../components/drawing\":615,\"../../components/fx\":632,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../../plot_api/plot_api\":754,d3:164,tinycolor2:538}],1072:[function(t,e,r){\"use strict\";var n=t(\"./parcats\");e.exports=function(t,e,r,a){var i=t._fullLayout,o=i._paper,s=i._size;n(t,o,e,{width:s.w,height:s.h,margin:{t:s.t,r:s.r,b:s.b,l:s.l}},r,a)}},{\"./parcats\":1071}],1073:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/attributes\"),a=t(\"../../plots/cartesian/layout_attributes\"),i=t(\"../../plots/font_attributes\"),o=t(\"../../plots/domain\").attributes,s=t(\"../../lib/extend\").extendFlat,l=t(\"../../plot_api/plot_template\").templatedArray;e.exports={domain:o({name:\"parcoords\",trace:!0,editType:\"plot\"}),labelangle:{valType:\"angle\",dflt:0,editType:\"plot\"},labelside:{valType:\"enumerated\",values:[\"top\",\"bottom\"],dflt:\"top\",editType:\"plot\"},labelfont:i({editType:\"plot\"}),tickfont:i({editType:\"plot\"}),rangefont:i({editType:\"plot\"}),dimensions:l(\"dimension\",{label:{valType:\"string\",editType:\"plot\"},tickvals:s({},a.tickvals,{editType:\"plot\"}),ticktext:s({},a.ticktext,{editType:\"plot\"}),tickformat:s({},a.tickformat,{editType:\"plot\"}),visible:{valType:\"boolean\",dflt:!0,editType:\"plot\"},range:{valType:\"info_array\",items:[{valType:\"number\",editType:\"plot\"},{valType:\"number\",editType:\"plot\"}],editType:\"plot\"},constraintrange:{valType:\"info_array\",freeLength:!0,dimensions:\"1-2\",items:[{valType:\"number\",editType:\"plot\"},{valType:\"number\",editType:\"plot\"}],editType:\"plot\"},multiselect:{valType:\"boolean\",dflt:!0,editType:\"plot\"},values:{valType:\"data_array\",editType:\"calc\"},editType:\"calc\"}),line:s({editType:\"calc\"},n(\"line\",{colorscaleDflt:\"Viridis\",autoColorDflt:!1,editTypeOverride:\"calc\"}))}},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plot_api/plot_template\":757,\"../../plots/cartesian/layout_attributes\":779,\"../../plots/domain\":792,\"../../plots/font_attributes\":793}],1074:[function(t,e,r){\"use strict\";var n=t(\"./constants\"),a=t(\"d3\"),i=t(\"../../lib/gup\").keyFun,o=t(\"../../lib/gup\").repeat,s=t(\"../../lib\").sorterAsc,l=n.bar.snapRatio;function c(t,e){return t*(1-l)+e*l}var u=n.bar.snapClose;function h(t,e){return t*(1-u)+e*u}function f(t,e,r,n){if(function(t,e){for(var r=0;r<e.length;r++)if(t>=e[r][0]&&t<=e[r][1])return!0;return!1}(r,n))return r;var a=t?-1:1,i=0,o=e.length-1;if(a<0){var s=i;i=o,o=s}for(var l=e[i],u=l,f=i;a*f<a*o;f+=a){var p=f+a,d=e[p];if(a*r<a*h(l,d))return c(l,u);if(a*r<a*d||p===o)return c(d,l);u=l,l=d}}function p(t){t.attr(\"x\",-n.bar.captureWidth/2).attr(\"width\",n.bar.captureWidth)}function d(t){t.attr(\"visibility\",\"visible\").style(\"visibility\",\"visible\").attr(\"fill\",\"yellow\").attr(\"opacity\",0)}function g(t){if(!t.brush.filterSpecified)return\"0,\"+t.height;for(var e,r,n,a=v(t.brush.filter.getConsolidated(),t.height),i=[0],o=a.length?a[0][0]:null,s=0;s<a.length;s++)r=(e=a[s])[1]-e[0],i.push(o),i.push(r),(n=s+1)<a.length&&(o=a[n][0]-e[1]);return i.push(t.height),i}function v(t,e){return t.map(function(t){return t.map(function(t){return Math.max(0,t*e)}).sort(s)})}function m(){a.select(document.body).style(\"cursor\",null)}function y(t){t.attr(\"stroke-dasharray\",g)}function x(t,e){var r=a.select(t).selectAll(\".highlight, .highlight-shadow\");y(e?r.transition().duration(n.bar.snapDuration).each(\"end\",e):r)}function b(t,e){var r,a=t.brush,i=NaN,o={};if(a.filterSpecified){var s=t.height,l=a.filter.getConsolidated(),c=v(l,s),u=NaN,h=NaN,f=NaN;for(r=0;r<=c.length;r++){var p=c[r];if(p&&p[0]<=e&&e<=p[1]){u=r;break}if(h=r?r-1:NaN,p&&p[0]>e){f=r;break}}if(i=u,isNaN(i)&&(i=isNaN(h)||isNaN(f)?isNaN(h)?f:h:e-c[h][1]<c[f][0]-e?h:f),!isNaN(i)){var d=c[i],g=function(t,e){var r=n.bar.handleHeight;if(!(e>t[1]+r||e<t[0]-r))return e>=.9*t[1]+.1*t[0]?\"n\":e<=.9*t[0]+.1*t[1]?\"s\":\"ns\"}(d,e);g&&(o.interval=l[i],o.intervalPix=d,o.region=g)}}if(t.ordinal&&!o.region){var m=t.unitTickvals,y=t.unitToPaddedPx.invert(e);for(r=0;r<m.length;r++){var x=[.25*m[Math.max(r-1,0)]+.75*m[r],.25*m[Math.min(r+1,m.length-1)]+.75*m[r]];if(y>=x[0]&&y<=x[1]){o.clickableOrdinalRange=x;break}}}return o}function _(t,e){a.event.sourceEvent.stopPropagation();var r=e.height-a.mouse(t)[1]-2*n.verticalPadding,i=e.brush.svgBrush;i.wasDragged=!0,i._dragging=!0,i.grabbingBar?i.newExtent=[r-i.grabPoint,r+i.barLength-i.grabPoint].map(e.unitToPaddedPx.invert):i.newExtent=[i.startExtent,e.unitToPaddedPx.invert(r)].sort(s),e.brush.filterSpecified=!0,i.extent=i.stayingIntervals.concat([i.newExtent]),i.brushCallback(e),x(t.parentNode)}function w(t,e){var r=b(e,e.height-a.mouse(t)[1]-2*n.verticalPadding),i=\"crosshair\";r.clickableOrdinalRange?i=\"pointer\":r.region&&(i=r.region+\"-resize\"),a.select(document.body).style(\"cursor\",i)}function k(t){t.on(\"mousemove\",function(t){a.event.preventDefault(),t.parent.inBrushDrag||w(this,t)}).on(\"mouseleave\",function(t){t.parent.inBrushDrag||m()}).call(a.behavior.drag().on(\"dragstart\",function(t){!function(t,e){a.event.sourceEvent.stopPropagation();var r=e.height-a.mouse(t)[1]-2*n.verticalPadding,i=e.unitToPaddedPx.invert(r),o=e.brush,s=b(e,r),l=s.interval,c=o.svgBrush;if(c.wasDragged=!1,c.grabbingBar=\"ns\"===s.region,c.grabbingBar){var u=l.map(e.unitToPaddedPx);c.grabPoint=r-u[0]-n.verticalPadding,c.barLength=u[1]-u[0]}c.clickableOrdinalRange=s.clickableOrdinalRange,c.stayingIntervals=e.multiselect&&o.filterSpecified?o.filter.getConsolidated():[],l&&(c.stayingIntervals=c.stayingIntervals.filter(function(t){return t[0]!==l[0]&&t[1]!==l[1]})),c.startExtent=s.region?l[\"s\"===s.region?1:0]:i,e.parent.inBrushDrag=!0,c.brushStartCallback()}(this,t)}).on(\"drag\",function(t){_(this,t)}).on(\"dragend\",function(t){!function(t,e){var r=e.brush,n=r.filter,i=r.svgBrush;i._dragging||(w(t,e),_(t,e),e.brush.svgBrush.wasDragged=!1),i._dragging=!1,a.event.sourceEvent.stopPropagation();var o=i.grabbingBar;if(i.grabbingBar=!1,i.grabLocation=void 0,e.parent.inBrushDrag=!1,m(),!i.wasDragged)return i.wasDragged=void 0,i.clickableOrdinalRange?r.filterSpecified&&e.multiselect?i.extent.push(i.clickableOrdinalRange):(i.extent=[i.clickableOrdinalRange],r.filterSpecified=!0):o?(i.extent=i.stayingIntervals,0===i.extent.length&&A(r)):A(r),i.brushCallback(e),x(t.parentNode),void i.brushEndCallback(r.filterSpecified?n.getConsolidated():[]);var s=function(){n.set(n.getConsolidated())};if(e.ordinal){var l=e.unitTickvals;l[l.length-1]<l[0]&&l.reverse(),i.newExtent=[f(0,l,i.newExtent[0],i.stayingIntervals),f(1,l,i.newExtent[1],i.stayingIntervals)];var c=i.newExtent[1]>i.newExtent[0];i.extent=i.stayingIntervals.concat(c?[i.newExtent]:[]),i.extent.length||A(r),i.brushCallback(e),c?x(t.parentNode,s):(s(),x(t.parentNode))}else s();i.brushEndCallback(r.filterSpecified?n.getConsolidated():[])}(this,t)}))}function T(t,e){return t[0]-e[0]}function A(t){t.filterSpecified=!1,t.svgBrush.extent=[[-1/0,1/0]]}function M(t){for(var e,r=t.slice(),n=[],a=r.shift();a;){for(e=a.slice();(a=r.shift())&&a[0]<=e[1];)e[1]=Math.max(e[1],a[1]);n.push(e)}return n}e.exports={makeBrush:function(t,e,r,n,a,i){var o,l=function(){var t,e,r=[];return{set:function(n){1===(r=n.map(function(t){return t.slice().sort(s)}).sort(T)).length&&r[0][0]===-1/0&&r[0][1]===1/0&&(r=[[0,-1]]),t=M(r),e=r.reduce(function(t,e){return[Math.min(t[0],e[0]),Math.max(t[1],e[1])]},[1/0,-1/0])},get:function(){return r.slice()},getConsolidated:function(){return t},getBounds:function(){return e}}}();return l.set(r),{filter:l,filterSpecified:e,svgBrush:{extent:[],brushStartCallback:n,brushCallback:(o=a,function(t){var e=t.brush,r=function(t){return t.svgBrush.extent.map(function(t){return t.slice()})}(e).slice();e.filter.set(r),o()}),brushEndCallback:i}}},ensureAxisBrush:function(t){var e=t.selectAll(\".\"+n.cn.axisBrush).data(o,i);e.enter().append(\"g\").classed(n.cn.axisBrush,!0),function(t){var e=t.selectAll(\".background\").data(o);e.enter().append(\"rect\").classed(\"background\",!0).call(p).call(d).style(\"pointer-events\",\"auto\").attr(\"transform\",\"translate(0 \"+n.verticalPadding+\")\"),e.call(k).attr(\"height\",function(t){return t.height-n.verticalPadding});var r=t.selectAll(\".highlight-shadow\").data(o);r.enter().append(\"line\").classed(\"highlight-shadow\",!0).attr(\"x\",-n.bar.width/2).attr(\"stroke-width\",n.bar.width+n.bar.strokeWidth).attr(\"stroke\",n.bar.strokeColor).attr(\"opacity\",n.bar.strokeOpacity).attr(\"stroke-linecap\",\"butt\"),r.attr(\"y1\",function(t){return t.height}).call(y);var a=t.selectAll(\".highlight\").data(o);a.enter().append(\"line\").classed(\"highlight\",!0).attr(\"x\",-n.bar.width/2).attr(\"stroke-width\",n.bar.width-n.bar.strokeWidth).attr(\"stroke\",n.bar.fillColor).attr(\"opacity\",n.bar.fillOpacity).attr(\"stroke-linecap\",\"butt\"),a.attr(\"y1\",function(t){return t.height}).call(y)}(e)},cleanRanges:function(t,e){if(Array.isArray(t[0])?(t=t.map(function(t){return t.sort(s)}),t=e.multiselect?M(t.sort(T)):[t[0]]):t=[t.sort(s)],e.tickvals){var r=e.tickvals.slice().sort(s);if(!(t=t.map(function(t){var e=[f(0,r,t[0],[]),f(1,r,t[1],[])];if(e[1]>e[0])return e}).filter(function(t){return t})).length)return}return t.length>1?t:t[0]}}},{\"../../lib\":719,\"../../lib/gup\":717,\"./constants\":1077,d3:164}],1075:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../plots/get_data\").getModuleCalcData,i=t(\"./plot\"),o=t(\"../../constants/xmlns_namespaces\");r.name=\"parcoords\",r.plot=function(t){var e=a(t.calcdata,\"parcoords\")[0];e.length&&i(t,e)},r.clean=function(t,e,r,n){var a=n._has&&n._has(\"parcoords\"),i=e._has&&e._has(\"parcoords\");a&&!i&&(n._paperdiv.selectAll(\".parcoords\").remove(),n._glimages.selectAll(\"*\").remove())},r.toSVG=function(t){var e=t._fullLayout._glimages,r=n.select(t).selectAll(\".svg-container\");r.filter(function(t,e){return e===r.size()-1}).selectAll(\".gl-canvas-context, .gl-canvas-focus\").each(function(){var t=this.toDataURL(\"image/png\");e.append(\"svg:image\").attr({xmlns:o.svg,\"xlink:href\":t,preserveAspectRatio:\"none\",x:0,y:0,width:this.width,height:this.height})}),window.setTimeout(function(){n.selectAll(\"#filterBarPattern\").attr(\"id\",\"filterBarPattern\")},60)}},{\"../../constants/xmlns_namespaces\":696,\"../../plots/get_data\":802,\"./plot\":1084,d3:164}],1076:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").isArrayOrTypedArray,a=t(\"../../components/colorscale\"),i=t(\"../../lib/gup\").wrap;e.exports=function(t,e){var r,o;return a.hasColorscale(e,\"line\")&&n(e.line.color)?(r=e.line.color,o=a.extractOpts(e.line).colorscale,a.calc(t,e,{vals:r,containerStr:\"line\",cLetter:\"c\"})):(r=function(t){for(var e=new Array(t),r=0;r<t;r++)e[r]=.5;return e}(e._length),o=[[0,e.line.color],[1,e.line.color]]),i({lineColor:r,cscale:o})}},{\"../../components/colorscale\":606,\"../../lib\":719,\"../../lib/gup\":717}],1077:[function(t,e,r){\"use strict\";e.exports={maxDimensionCount:60,overdrag:45,verticalPadding:2,tickDistance:50,canvasPixelRatio:1,blockLineCount:5e3,layers:[\"contextLineLayer\",\"focusLineLayer\",\"pickLineLayer\"],axisTitleOffset:28,axisExtentOffset:10,deselectedLineColor:\"#777\",bar:{width:4,captureWidth:10,fillColor:\"magenta\",fillOpacity:1,snapDuration:150,snapRatio:.25,snapClose:.01,strokeColor:\"white\",strokeOpacity:1,strokeWidth:1,handleHeight:8,handleOpacity:1,handleOverlap:0},cn:{axisExtentText:\"axis-extent-text\",parcoordsLineLayers:\"parcoords-line-layers\",parcoordsLineLayer:\"parcoords-lines\",parcoords:\"parcoords\",parcoordsControlView:\"parcoords-control-view\",yAxis:\"y-axis\",axisOverlays:\"axis-overlays\",axis:\"axis\",axisHeading:\"axis-heading\",axisTitle:\"axis-title\",axisExtent:\"axis-extent\",axisExtentTop:\"axis-extent-top\",axisExtentTopText:\"axis-extent-top-text\",axisExtentBottom:\"axis-extent-bottom\",axisExtentBottomText:\"axis-extent-bottom-text\",axisBrush:\"axis-brush\"},id:{filterBarPattern:\"filter-bar-pattern\"}}},{}],1078:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/colorscale/helpers\").hasColorscale,i=t(\"../../components/colorscale/defaults\"),o=t(\"../../plots/domain\").defaults,s=t(\"../../plots/array_container_defaults\"),l=t(\"../../plots/cartesian/axes\"),c=t(\"./attributes\"),u=t(\"./axisbrush\"),h=t(\"./constants\").maxDimensionCount,f=t(\"./merge_length\");function p(t,e,r,a){function i(r,a){return n.coerce(t,e,c.dimensions,r,a)}var o=i(\"values\"),s=i(\"visible\");if(o&&o.length||(s=e.visible=!1),s){i(\"label\"),i(\"tickvals\"),i(\"ticktext\"),i(\"tickformat\");var h=i(\"range\");e._ax={_id:\"y\",type:\"linear\",showexponent:\"all\",exponentformat:\"B\",range:h},l.setConvert(e._ax,a.layout),i(\"multiselect\");var f=i(\"constraintrange\");f&&(e.constraintrange=u.cleanRanges(f,e))}}e.exports=function(t,e,r,l){function u(r,a){return n.coerce(t,e,c,r,a)}var d=t.dimensions;Array.isArray(d)&&d.length>h&&(n.log(\"parcoords traces support up to \"+h+\" dimensions at the moment\"),d.splice(h));var g=s(t,e,{name:\"dimensions\",layout:l,handleItemDefaults:p}),v=function(t,e,r,o,s){var l=s(\"line.color\",r);if(a(t,\"line\")&&n.isArrayOrTypedArray(l)){if(l.length)return s(\"line.colorscale\"),i(t,e,o,s,{prefix:\"line.\",cLetter:\"c\"}),l.length;e.line.color=r}return 1/0}(t,e,r,l,u);o(e,l,u),Array.isArray(g)&&g.length||(e.visible=!1),f(e,g,\"values\",v);var m={family:l.font.family,size:Math.round(l.font.size/1.2),color:l.font.color};n.coerceFont(u,\"labelfont\",m),n.coerceFont(u,\"tickfont\",m),n.coerceFont(u,\"rangefont\",m),u(\"labelangle\"),u(\"labelside\")}},{\"../../components/colorscale/defaults\":604,\"../../components/colorscale/helpers\":605,\"../../lib\":719,\"../../plots/array_container_defaults\":763,\"../../plots/cartesian/axes\":767,\"../../plots/domain\":792,\"./attributes\":1073,\"./axisbrush\":1074,\"./constants\":1077,\"./merge_length\":1082}],1079:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").isTypedArray;r.convertTypedArray=function(t){return n(t)?Array.prototype.slice.call(t):t},r.isOrdinal=function(t){return!!t.tickvals},r.isVisible=function(t){return t.visible||!(\"visible\"in t)}},{\"../../lib\":719}],1080:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),plot:t(\"./plot\"),colorbar:{container:\"line\",min:\"cmin\",max:\"cmax\"},moduleType:\"trace\",name:\"parcoords\",basePlotModule:t(\"./base_plot\"),categories:[\"gl\",\"regl\",\"noOpacity\",\"noHover\"],meta:{}}},{\"./attributes\":1073,\"./base_plot\":1075,\"./calc\":1076,\"./defaults\":1078,\"./plot\":1084}],1081:[function(t,e,r){\"use strict\";var n=t(\"glslify\"),a=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nvarying vec4 fragColor;\\n\\nattribute vec4 p01_04, p05_08, p09_12, p13_16,\\n               p17_20, p21_24, p25_28, p29_32,\\n               p33_36, p37_40, p41_44, p45_48,\\n               p49_52, p53_56, p57_60, colors;\\n\\nuniform mat4 dim0A, dim1A, dim0B, dim1B, dim0C, dim1C, dim0D, dim1D,\\n             loA, hiA, loB, hiB, loC, hiC, loD, hiD;\\n\\nuniform vec2 resolution, viewBoxPos, viewBoxSize;\\nuniform sampler2D mask, palette;\\nuniform float maskHeight;\\nuniform float drwLayer; // 0: context, 1: focus, 2: pick\\nuniform vec4 contextColor;\\n\\nbool isPick    = (drwLayer > 1.5);\\nbool isContext = (drwLayer < 0.5);\\n\\nconst vec4 ZEROS = vec4(0.0, 0.0, 0.0, 0.0);\\nconst vec4 UNITS = vec4(1.0, 1.0, 1.0, 1.0);\\n\\nfloat val(mat4 p, mat4 v) {\\n    return dot(matrixCompMult(p, v) * UNITS, UNITS);\\n}\\n\\nfloat axisY(float ratio, mat4 A, mat4 B, mat4 C, mat4 D) {\\n    float y1 = val(A, dim0A) + val(B, dim0B) + val(C, dim0C) + val(D, dim0D);\\n    float y2 = val(A, dim1A) + val(B, dim1B) + val(C, dim1C) + val(D, dim1D);\\n    return y1 * (1.0 - ratio) + y2 * ratio;\\n}\\n\\nint iMod(int a, int b) {\\n    return a - b * (a / b);\\n}\\n\\nbool fOutside(float p, float lo, float hi) {\\n    return (lo < hi) && (lo > p || p > hi);\\n}\\n\\nbool vOutside(vec4 p, vec4 lo, vec4 hi) {\\n    return (\\n        fOutside(p[0], lo[0], hi[0]) ||\\n        fOutside(p[1], lo[1], hi[1]) ||\\n        fOutside(p[2], lo[2], hi[2]) ||\\n        fOutside(p[3], lo[3], hi[3])\\n    );\\n}\\n\\nbool mOutside(mat4 p, mat4 lo, mat4 hi) {\\n    return (\\n        vOutside(p[0], lo[0], hi[0]) ||\\n        vOutside(p[1], lo[1], hi[1]) ||\\n        vOutside(p[2], lo[2], hi[2]) ||\\n        vOutside(p[3], lo[3], hi[3])\\n    );\\n}\\n\\nbool outsideBoundingBox(mat4 A, mat4 B, mat4 C, mat4 D) {\\n    return mOutside(A, loA, hiA) ||\\n           mOutside(B, loB, hiB) ||\\n           mOutside(C, loC, hiC) ||\\n           mOutside(D, loD, hiD);\\n}\\n\\nbool outsideRasterMask(mat4 A, mat4 B, mat4 C, mat4 D) {\\n    mat4 pnts[4];\\n    pnts[0] = A;\\n    pnts[1] = B;\\n    pnts[2] = C;\\n    pnts[3] = D;\\n\\n    for(int i = 0; i < 4; ++i) {\\n        for(int j = 0; j < 4; ++j) {\\n            for(int k = 0; k < 4; ++k) {\\n                if(0 == iMod(\\n                    int(255.0 * texture2D(mask,\\n                        vec2(\\n                            (float(i * 2 + j / 2) + 0.5) / 8.0,\\n                            (pnts[i][j][k] * (maskHeight - 1.0) + 1.0) / maskHeight\\n                        ))[3]\\n                    ) / int(pow(2.0, float(iMod(j * 4 + k, 8)))),\\n                    2\\n                )) return true;\\n            }\\n        }\\n    }\\n    return false;\\n}\\n\\nvec4 position(bool isContext, float v, mat4 A, mat4 B, mat4 C, mat4 D) {\\n    float x = 0.5 * sign(v) + 0.5;\\n    float y = axisY(x, A, B, C, D);\\n    float z = 1.0 - abs(v);\\n\\n    z += isContext ? 0.0 : 2.0 * float(\\n        outsideBoundingBox(A, B, C, D) ||\\n        outsideRasterMask(A, B, C, D)\\n    );\\n\\n    return vec4(\\n        2.0 * (vec2(x, y) * viewBoxSize + viewBoxPos) / resolution - 1.0,\\n        z,\\n        1.0\\n    );\\n}\\n\\nvoid main() {\\n    mat4 A = mat4(p01_04, p05_08, p09_12, p13_16);\\n    mat4 B = mat4(p17_20, p21_24, p25_28, p29_32);\\n    mat4 C = mat4(p33_36, p37_40, p41_44, p45_48);\\n    mat4 D = mat4(p49_52, p53_56, p57_60, ZEROS);\\n\\n    float v = colors[3];\\n\\n    gl_Position = position(isContext, v, A, B, C, D);\\n\\n    fragColor =\\n        isContext ? vec4(contextColor) :\\n        isPick ? vec4(colors.rgb, 1.0) : texture2D(palette, vec2(abs(v), 0.5));\\n}\\n\"]),i=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nvarying vec4 fragColor;\\n\\nvoid main() {\\n    gl_FragColor = fragColor;\\n}\\n\"]),o=t(\"./constants\").maxDimensionCount,s=t(\"../../lib\"),l=1e-6,c=2048,u=new Uint8Array(4),h=new Uint8Array(4),f={shape:[256,1],format:\"rgba\",type:\"uint8\",mag:\"nearest\",min:\"nearest\"};function p(t,e,r,n,a){var i=t._gl;i.enable(i.SCISSOR_TEST),i.scissor(e,r,n,a),t.clear({color:[0,0,0,0],depth:1})}function d(t,e,r,n,a,i){var o=i.key;r.drawCompleted||(!function(t){t.read({x:0,y:0,width:1,height:1,data:u})}(t),r.drawCompleted=!0),function s(l){var c=Math.min(n,a-l*n);0===l&&(window.cancelAnimationFrame(r.currentRafs[o]),delete r.currentRafs[o],p(t,i.scissorX,i.scissorY,i.scissorWidth,i.viewBoxSize[1])),r.clearOnly||(i.count=2*c,i.offset=2*l*n,e(i),l*n+c<a&&(r.currentRafs[o]=window.requestAnimationFrame(function(){s(l+1)})),r.drawCompleted=!1)}(0)}function g(t,e){return(t>>>8*e)%256/255}function v(t,e,r){for(var n=new Array(8*e),a=0,i=0;i<e;i++)for(var o=0;o<2;o++)for(var s=0;s<4;s++){var l=4*t+s,c=r[64*i+l];63===l&&0===o&&(c*=-1),n[a++]=c}return n}function m(t){var e=\"0\"+t;return e.substr(e.length-2)}function y(t){return t<o?\"p\"+m(t+1)+\"_\"+m(t+4):\"colors\"}function x(t,e,r,n,a,i,o,l,c,u,h,f,p){for(var d=[[],[]],g=0;g<64;g++)d[0][g]=g===a?1:0,d[1][g]=g===i?1:0;var v=t.lines.canvasOverdrag,m=t.domain,y=t.canvasWidth,x=t.canvasHeight,b=t.deselectedLines.color;return s.extendFlat({key:h,resolution:[y,x],viewBoxPos:[o+v,l],viewBoxSize:[c,u],i0:a,i1:i,dim0A:d[0].slice(0,16),dim0B:d[0].slice(16,32),dim0C:d[0].slice(32,48),dim0D:d[0].slice(48,64),dim1A:d[1].slice(0,16),dim1B:d[1].slice(16,32),dim1C:d[1].slice(32,48),dim1D:d[1].slice(48,64),drwLayer:f,contextColor:[b[0]/255,b[1]/255,b[2]/255,b[3]<1?b[3]:Math.max(1/255,Math.pow(1/t.lines.color.length,1/3))],scissorX:(n===e?0:o+v)+(t.pad.l-v)+t.layoutWidth*m.x[0],scissorWidth:(n===r?y-o+v:c+.5)+(n===e?o+v:0),scissorY:l+t.pad.b+t.layoutHeight*m.y[0],scissorHeight:u,viewportX:t.pad.l-v+t.layoutWidth*m.x[0],viewportY:t.pad.b+t.layoutHeight*m.y[0],viewportWidth:y,viewportHeight:x},p)}function b(t){var e=c-1,r=Math.max(0,Math.floor(t[0]*e),0),n=Math.min(e,Math.ceil(t[1]*e),e);return[Math.min(r,n),Math.max(r,n)]}e.exports=function(t,e){var r,n,u,m,_,w=e.context,k=e.pick,T=e.regl,A={currentRafs:{},drawCompleted:!0,clearOnly:!1},M=function(t){for(var e={},r=0;r<=o;r+=4)e[y(r)]=t.buffer({usage:\"dynamic\",type:\"float\",data:new Uint8Array(0)});return e}(T),S=T.texture(f),E=[];L(e);var C=T({profile:!1,blend:{enable:w,func:{srcRGB:\"src alpha\",dstRGB:\"one minus src alpha\",srcAlpha:1,dstAlpha:1},equation:{rgb:\"add\",alpha:\"add\"},color:[0,0,0,0]},depth:{enable:!w,mask:!0,func:\"less\",range:[0,1]},cull:{enable:!0,face:\"back\"},scissor:{enable:!0,box:{x:T.prop(\"scissorX\"),y:T.prop(\"scissorY\"),width:T.prop(\"scissorWidth\"),height:T.prop(\"scissorHeight\")}},viewport:{x:T.prop(\"viewportX\"),y:T.prop(\"viewportY\"),width:T.prop(\"viewportWidth\"),height:T.prop(\"viewportHeight\")},dither:!1,vert:a,frag:i,primitive:\"lines\",lineWidth:1,attributes:M,uniforms:{resolution:T.prop(\"resolution\"),viewBoxPos:T.prop(\"viewBoxPos\"),viewBoxSize:T.prop(\"viewBoxSize\"),dim0A:T.prop(\"dim0A\"),dim1A:T.prop(\"dim1A\"),dim0B:T.prop(\"dim0B\"),dim1B:T.prop(\"dim1B\"),dim0C:T.prop(\"dim0C\"),dim1C:T.prop(\"dim1C\"),dim0D:T.prop(\"dim0D\"),dim1D:T.prop(\"dim1D\"),loA:T.prop(\"loA\"),hiA:T.prop(\"hiA\"),loB:T.prop(\"loB\"),hiB:T.prop(\"hiB\"),loC:T.prop(\"loC\"),hiC:T.prop(\"hiC\"),loD:T.prop(\"loD\"),hiD:T.prop(\"hiD\"),palette:S,contextColor:T.prop(\"contextColor\"),mask:T.prop(\"maskTexture\"),drwLayer:T.prop(\"drwLayer\"),maskHeight:T.prop(\"maskHeight\")},offset:T.prop(\"offset\"),count:T.prop(\"count\")});function L(t){r=t.model,n=t.viewModel,u=n.dimensions.slice(),m=u[0]?u[0].values.length:0;var e=r.lines,a=k?e.color.map(function(t,r){return r/e.color.length}):e.color,i=function(t,e,r){for(var n,a=new Array(t*(o+4)),i=0,s=0;s<t;s++){for(var c=0;c<o;c++)a[i++]=c<e.length?e[c].paddedUnitValues[s]:.5;a[i++]=g(s,2),a[i++]=g(s,1),a[i++]=g(s,0),a[i++]=(n=r[s],Math.max(l,Math.min(1-l,n)))}return a}(m,u,a);!function(t,e,r){for(var n=0;n<=o;n+=4)t[y(n)](v(n/4,e,r))}(M,m,i),w||k||(S=T.texture(s.extendFlat({data:function(t,e){for(var r=new Array(256),n=0;n<256;n++)r[n]=t(n/255).concat(e);return r}(r.unitToColor,255)},f)))}return{render:function(t,e,n){var a,i,o,s=t.length,l=1/0,h=-1/0;for(a=0;a<s;a++)t[a].dim0.canvasX<l&&(l=t[a].dim0.canvasX,i=a),t[a].dim1.canvasX>h&&(h=t[a].dim1.canvasX,o=a);0===s&&p(T,0,0,r.canvasWidth,r.canvasHeight);var f=function(t){var e,r,n,a=[[],[]];for(n=0;n<64;n++){var i=!t&&n<u.length?u[n].brush.filter.getBounds():[-1/0,1/0];a[0][n]=i[0],a[1][n]=i[1]}var o=8*c,s=new Array(o);for(e=0;e<o;e++)s[e]=255;if(!t)for(e=0;e<u.length;e++){var l=e%8,h=(e-l)/8,f=Math.pow(2,l),p=u[e].brush.filter.get();if(!(p.length<2)){var d=b(p[0])[1];for(r=1;r<p.length;r++){var g=b(p[r]);for(n=d+1;n<g[0];n++)s[8*n+h]&=~f;d=Math.max(d,g[1])}}}var v={shape:[8,c],format:\"alpha\",type:\"uint8\",mag:\"nearest\",min:\"nearest\",data:s};return _?_(v):_=T.texture(v),{maskTexture:_,maskHeight:c,loA:a[0].slice(0,16),loB:a[0].slice(16,32),loC:a[0].slice(32,48),loD:a[0].slice(48,64),hiA:a[1].slice(0,16),hiB:a[1].slice(16,32),hiC:a[1].slice(32,48),hiD:a[1].slice(48,64)}}(w);for(a=0;a<s;a++){var g=t[a],v=g.dim0.crossfilterDimensionIndex,y=g.dim1.crossfilterDimensionIndex,M=g.canvasX,S=g.canvasY,L=M+g.panelSizeX;if(e||!E[v]||E[v][0]!==M||E[v][1]!==L){E[v]=[M,L];var P=x(r,i,o,a,v,y,M,S,g.panelSizeX,g.panelSizeY,g.dim0.crossfilterDimensionIndex,w?0:k?2:1,f);A.clearOnly=n;var O=e?r.lines.blockLineCount:m;d(T,C,A,O,m,P)}}},readPixel:function(t,e){return T.read({x:t,y:e,width:1,height:1,data:h}),h},readPixels:function(t,e,r,n){var a=new Uint8Array(4*r*n);return T.read({x:t,y:e,width:r,height:n,data:a}),a},destroy:function(){for(var e in t.style[\"pointer-events\"]=\"none\",S.destroy(),_&&_.destroy(),M)M[e].destroy()},update:L}}},{\"../../lib\":719,\"./constants\":1077,glslify:410}],1082:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n){var a,i;for(n||(n=1/0),a=0;a<e.length;a++)(i=e[a]).visible&&(n=Math.min(n,i[r].length));for(n===1/0&&(n=0),t._length=n,a=0;a<e.length;a++)(i=e[a]).visible&&(i._length=n);return n}},{}],1083:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"color-rgba\"),i=t(\"../../plots/cartesian/axes\"),o=t(\"../../lib\"),s=t(\"../../lib/svg_text_utils\"),l=t(\"../../components/drawing\"),c=t(\"../../components/colorscale\"),u=t(\"../../lib/gup\"),h=u.keyFun,f=u.repeat,p=u.unwrap,d=t(\"./helpers\"),g=t(\"./constants\"),v=t(\"./axisbrush\"),m=t(\"./lines\");function y(t,e,r){return o.aggNums(t,null,e,r)}function x(t,e){return _(y(Math.min,t,e),y(Math.max,t,e))}function b(t){var e=t.range;return e?_(e[0],e[1]):x(t.values,t._length)}function _(t,e){return!isNaN(t)&&isFinite(t)||(t=0),!isNaN(e)&&isFinite(e)||(e=0),t===e&&(0===t?(t-=1,e+=1):(t*=.9,e*=1.1)),[t,e]}function w(t){return t.dimensions.some(function(t){return t.brush.filterSpecified})}function k(t,e,r){var i=p(e),s=i.trace,l=d.convertTypedArray(i.lineColor),u=s.line,h={color:a(g.deselectedLineColor)},f=c.extractOpts(u),v=f.reversescale?c.flipScale(i.cscale):i.cscale,m=s.domain,y=s.dimensions,x=t.width,_=s.labelangle,w=s.labelside,k=s.labelfont,T=s.tickfont,A=s.rangefont,M=o.extendDeepNoArrays({},u,{color:l.map(n.scale.linear().domain(b({values:l,range:[f.min,f.max],_length:s._length}))),blockLineCount:g.blockLineCount,canvasOverdrag:g.overdrag*g.canvasPixelRatio}),S=Math.floor(x*(m.x[1]-m.x[0])),E=Math.floor(t.height*(m.y[1]-m.y[0])),C=t.margin||{l:80,r:80,t:100,b:80},L=S,P=E;return{key:r,colCount:y.filter(d.isVisible).length,dimensions:y,tickDistance:g.tickDistance,unitToColor:function(t){var e=t.map(function(t){return t[0]}),r=t.map(function(t){var e=a(t[1]);return n.rgb(\"rgb(\"+e[0]+\",\"+e[1]+\",\"+e[2]+\")\")}),i=\"rgb\".split(\"\").map(function(t){return n.scale.linear().clamp(!0).domain(e).range(r.map((a=t,function(t){return t[a]})));var a});return function(t){return i.map(function(e){return e(t)})}}(v),lines:M,deselectedLines:h,labelAngle:_,labelSide:w,labelFont:k,tickFont:T,rangeFont:A,layoutWidth:x,layoutHeight:t.height,domain:m,translateX:m.x[0]*x,translateY:t.height-m.y[1]*t.height,pad:C,canvasWidth:L*g.canvasPixelRatio+2*M.canvasOverdrag,canvasHeight:P*g.canvasPixelRatio,width:L,height:P,canvasPixelRatio:g.canvasPixelRatio}}function T(t,e,r){var a=r.width,i=r.height,s=r.dimensions,l=r.canvasPixelRatio,c=function(t){return a*t/Math.max(1,r.colCount-1)},u=g.verticalPadding/i,h=function(t,e){return n.scale.linear().range([e,t-e])}(i,g.verticalPadding),f={key:r.key,xScale:c,model:r,inBrushDrag:!1},p={};return f.dimensions=s.filter(d.isVisible).map(function(a,s){var m=function(t,e){return n.scale.linear().domain(b(t)).range([e,1-e])}(a,u),y=p[a.label];p[a.label]=(y||0)+1;var x=a.label+(y?\"__\"+y:\"\"),_=a.constraintrange,k=_&&_.length;k&&!Array.isArray(_[0])&&(_=[_]);var T=k?_.map(function(t){return t.map(m)}):[[-1/0,1/0]],A=a.values;A.length>a._length&&(A=A.slice(0,a._length));var M,S=a.tickvals;function E(t,e){return{val:t,text:M[e]}}function C(t,e){return t.val-e.val}if(Array.isArray(S)&&S.length){M=a.ticktext,Array.isArray(M)&&M.length?M.length>S.length?M=M.slice(0,S.length):S.length>M.length&&(S=S.slice(0,M.length)):M=S.map(n.format(a.tickformat));for(var L=1;L<S.length;L++)if(S[L]<S[L-1]){for(var P=S.map(E).sort(C),O=0;O<S.length;O++)S[O]=P[O].val,M[O]=P[O].text;break}}else S=void 0;return A=d.convertTypedArray(A),A=d.convertTypedArray(A),{key:x,label:a.label,tickFormat:a.tickformat,tickvals:S,ticktext:M,ordinal:d.isOrdinal(a),multiselect:a.multiselect,xIndex:s,crossfilterDimensionIndex:s,visibleIndex:a._index,height:i,values:A,paddedUnitValues:A.map(m),unitTickvals:S&&S.map(m),xScale:c,x:c(s),canvasX:c(s)*l,unitToPaddedPx:h,domainScale:function(t,e,r,a,i){var o,s,l=b(r);return a?n.scale.ordinal().domain(a.map((o=n.format(r.tickformat),s=i,s?function(t,e){var r=s[e];return null==r?o(t):r}:o))).range(a.map(function(r){var n=(r-l[0])/(l[1]-l[0]);return t-e+n*(2*e-t)})):n.scale.linear().domain(l).range([t-e,e])}(i,g.verticalPadding,a,S,M),ordinalScale:function(t){if(t.tickvals){var e=b(t);return n.scale.ordinal().domain(t.tickvals).range(t.tickvals.map(function(t){return(t-e[0])/(e[1]-e[0])}))}}(a),parent:f,model:r,brush:v.makeBrush(t,k,T,function(){t.linePickActive(!1)},function(){var e=f;e.focusLayer&&e.focusLayer.render(e.panels,!0);var r=w(e);!t.contextShown()&&r?(e.contextLayer&&e.contextLayer.render(e.panels,!0),t.contextShown(!0)):t.contextShown()&&!r&&(e.contextLayer&&e.contextLayer.render(e.panels,!0,!0),t.contextShown(!1))},function(r){if(f.focusLayer.render(f.panels,!0),f.pickLayer&&f.pickLayer.render(f.panels,!0),t.linePickActive(!0),e&&e.filterChanged){var n=m.invert,i=r.map(function(t){return t.map(n).sort(o.sorterAsc)}).sort(function(t,e){return t[0]-e[0]});e.filterChanged(f.key,a._index,i)}})}}),f}function A(t){t.classed(g.cn.axisExtentText,!0).attr(\"text-anchor\",\"middle\").style(\"cursor\",\"default\").style(\"user-select\",\"none\")}function M(t,e){var r=\"top\"===e?1:-1,n=t*Math.PI/180;return{dir:r,dx:Math.sin(n),dy:Math.cos(n),degrees:t}}function S(t,e){for(var r=e.panels||(e.panels=[]),n=t.data(),a=0;a<n.length-1;a++){var i=r[a]||(r[a]={}),o=n[a],s=n[a+1];i.dim0=o,i.dim1=s,i.canvasX=o.canvasX,i.panelSizeX=s.canvasX-o.canvasX,i.panelSizeY=e.model.canvasHeight,i.y=0,i.canvasY=0}}function E(t,e){return i.tickText(t._ax,e,!1).text}function C(t,e){if(t.ordinal)return\"\";var r=t.domainScale.domain(),n=r[e?r.length-1:0];return E(t.model.dimensions[t.visibleIndex],n)}e.exports=function(t,e,r,a){var c=t._fullLayout,u=c._toppaper,y=c._glcontainer;!function(t){for(var e=0;e<t.length;e++)for(var r=0;r<t[e].length;r++)for(var n=t[e][r].trace,a=n.dimensions,o=0;o<a.length;o++){var s=a[o].values,l=a[o]._ax;l&&(l.range?l.range=_(l.range[0],l.range[1]):l.range=x(s,n._length),l.dtick||(l.dtick=.01*(Math.abs(l.range[1]-l.range[0])||1)),l.tickformat=a[o].tickformat,i.calcTicks(l),l.cleanRange())}}(e);var b,L,P=(b=!0,L=!1,{linePickActive:function(t){return arguments.length?b=!!t:b},contextShown:function(t){return arguments.length?L=!!t:L}}),O=e.filter(function(t){return p(t).trace.visible}).map(k.bind(0,r)).map(T.bind(0,P,a));y.each(function(t,e){return o.extendFlat(t,O[e])});var I=y.selectAll(\".gl-canvas\").each(function(t){t.viewModel=O[0],t.model=t.viewModel?t.viewModel.model:null}),z=null;I.filter(function(t){return t.pick}).style(\"pointer-events\",\"auto\").on(\"mousemove\",function(t){if(P.linePickActive()&&t.lineLayer&&a&&a.hover){var e=n.event,r=this.width,i=this.height,o=n.mouse(this),s=o[0],l=o[1];if(s<0||l<0||s>=r||l>=i)return;var c=t.lineLayer.readPixel(s,i-1-l),u=0!==c[3],h=u?c[2]+256*(c[1]+256*c[0]):null,f={x:s,y:l,clientX:e.clientX,clientY:e.clientY,dataIndex:t.model.key,curveNumber:h};h!==z&&(u?a.hover(f):a.unhover&&a.unhover(f),z=h)}}),I.style(\"opacity\",function(t){return t.pick?0:1}),u.style(\"background\",\"rgba(255, 255, 255, 0)\");var D=u.selectAll(\".\"+g.cn.parcoords).data(O,h);D.exit().remove(),D.enter().append(\"g\").classed(g.cn.parcoords,!0).style(\"shape-rendering\",\"crispEdges\").style(\"pointer-events\",\"none\"),D.attr(\"transform\",function(t){return\"translate(\"+t.model.translateX+\",\"+t.model.translateY+\")\"});var R=D.selectAll(\".\"+g.cn.parcoordsControlView).data(f,h);R.enter().append(\"g\").classed(g.cn.parcoordsControlView,!0),R.attr(\"transform\",function(t){return\"translate(\"+t.model.pad.l+\",\"+t.model.pad.t+\")\"});var F=R.selectAll(\".\"+g.cn.yAxis).data(function(t){return t.dimensions},h);F.enter().append(\"g\").classed(g.cn.yAxis,!0),R.each(function(t){S(F,t)}),I.each(function(t){if(t.viewModel){!t.lineLayer||a?t.lineLayer=m(this,t):t.lineLayer.update(t),(t.key||0===t.key)&&(t.viewModel[t.key]=t.lineLayer);var e=!t.context||a;t.lineLayer.render(t.viewModel.panels,e)}}),F.attr(\"transform\",function(t){return\"translate(\"+t.xScale(t.xIndex)+\", 0)\"}),F.call(n.behavior.drag().origin(function(t){return t}).on(\"drag\",function(t){var e=t.parent;P.linePickActive(!1),t.x=Math.max(-g.overdrag,Math.min(t.model.width+g.overdrag,n.event.x)),t.canvasX=t.x*t.model.canvasPixelRatio,F.sort(function(t,e){return t.x-e.x}).each(function(e,r){e.xIndex=r,e.x=t===e?e.x:e.xScale(e.xIndex),e.canvasX=e.x*e.model.canvasPixelRatio}),S(F,e),F.filter(function(e){return 0!==Math.abs(t.xIndex-e.xIndex)}).attr(\"transform\",function(t){return\"translate(\"+t.xScale(t.xIndex)+\", 0)\"}),n.select(this).attr(\"transform\",\"translate(\"+t.x+\", 0)\"),F.each(function(r,n,a){a===t.parent.key&&(e.dimensions[n]=r)}),e.contextLayer&&e.contextLayer.render(e.panels,!1,!w(e)),e.focusLayer.render&&e.focusLayer.render(e.panels)}).on(\"dragend\",function(t){var e=t.parent;t.x=t.xScale(t.xIndex),t.canvasX=t.x*t.model.canvasPixelRatio,S(F,e),n.select(this).attr(\"transform\",function(t){return\"translate(\"+t.x+\", 0)\"}),e.contextLayer&&e.contextLayer.render(e.panels,!1,!w(e)),e.focusLayer&&e.focusLayer.render(e.panels),e.pickLayer&&e.pickLayer.render(e.panels,!0),P.linePickActive(!0),a&&a.axesMoved&&a.axesMoved(e.key,e.dimensions.map(function(t){return t.crossfilterDimensionIndex}))})),F.exit().remove();var B=F.selectAll(\".\"+g.cn.axisOverlays).data(f,h);B.enter().append(\"g\").classed(g.cn.axisOverlays,!0),B.selectAll(\".\"+g.cn.axis).remove();var N=B.selectAll(\".\"+g.cn.axis).data(f,h);N.enter().append(\"g\").classed(g.cn.axis,!0),N.each(function(t){var e=t.model.height/t.model.tickDistance,r=t.domainScale,a=r.domain();n.select(this).call(n.svg.axis().orient(\"left\").tickSize(4).outerTickSize(2).ticks(e,t.tickFormat).tickValues(t.ordinal?a:null).tickFormat(function(e){return d.isOrdinal(t)?e:E(t.model.dimensions[t.visibleIndex],e)}).scale(r)),l.font(N.selectAll(\"text\"),t.model.tickFont)}),N.selectAll(\".domain, .tick>line\").attr(\"fill\",\"none\").attr(\"stroke\",\"black\").attr(\"stroke-opacity\",.25).attr(\"stroke-width\",\"1px\"),N.selectAll(\"text\").style(\"text-shadow\",\"1px 1px 1px #fff, -1px -1px 1px #fff, 1px -1px 1px #fff, -1px 1px 1px #fff\").style(\"cursor\",\"default\").style(\"user-select\",\"none\");var j=B.selectAll(\".\"+g.cn.axisHeading).data(f,h);j.enter().append(\"g\").classed(g.cn.axisHeading,!0);var V=j.selectAll(\".\"+g.cn.axisTitle).data(f,h);V.enter().append(\"text\").classed(g.cn.axisTitle,!0).attr(\"text-anchor\",\"middle\").style(\"cursor\",\"ew-resize\").style(\"user-select\",\"none\").style(\"pointer-events\",\"auto\"),V.text(function(t){return t.label}).each(function(e){var r=n.select(this);l.font(r,e.model.labelFont),s.convertToTspans(r,t)}).attr(\"transform\",function(t){var e=M(t.model.labelAngle,t.model.labelSide),r=g.axisTitleOffset;return(e.dir>0?\"\":\"translate(0,\"+(2*r+t.model.height)+\")\")+\"rotate(\"+e.degrees+\")translate(\"+-r*e.dx+\",\"+-r*e.dy+\")\"}).attr(\"text-anchor\",function(t){var e=M(t.model.labelAngle,t.model.labelSide);return 2*Math.abs(e.dx)>Math.abs(e.dy)?e.dir*e.dx<0?\"start\":\"end\":\"middle\"});var U=B.selectAll(\".\"+g.cn.axisExtent).data(f,h);U.enter().append(\"g\").classed(g.cn.axisExtent,!0);var q=U.selectAll(\".\"+g.cn.axisExtentTop).data(f,h);q.enter().append(\"g\").classed(g.cn.axisExtentTop,!0),q.attr(\"transform\",\"translate(0,\"+-g.axisExtentOffset+\")\");var H=q.selectAll(\".\"+g.cn.axisExtentTopText).data(f,h);H.enter().append(\"text\").classed(g.cn.axisExtentTopText,!0).call(A),H.text(function(t){return C(t,!0)}).each(function(t){l.font(n.select(this),t.model.rangeFont)});var G=U.selectAll(\".\"+g.cn.axisExtentBottom).data(f,h);G.enter().append(\"g\").classed(g.cn.axisExtentBottom,!0),G.attr(\"transform\",function(t){return\"translate(0,\"+(t.model.height+g.axisExtentOffset)+\")\"});var Y=G.selectAll(\".\"+g.cn.axisExtentBottomText).data(f,h);Y.enter().append(\"text\").classed(g.cn.axisExtentBottomText,!0).attr(\"dy\",\"0.75em\").call(A),Y.text(function(t){return C(t,!1)}).each(function(t){l.font(n.select(this),t.model.rangeFont)}),v.ensureAxisBrush(B)}},{\"../../components/colorscale\":606,\"../../components/drawing\":615,\"../../lib\":719,\"../../lib/gup\":717,\"../../lib/svg_text_utils\":743,\"../../plots/cartesian/axes\":767,\"./axisbrush\":1074,\"./constants\":1077,\"./helpers\":1079,\"./lines\":1081,\"color-rgba\":123,d3:164}],1084:[function(t,e,r){\"use strict\";var n=t(\"./parcoords\"),a=t(\"../../lib/prepare_regl\"),i=t(\"./helpers\").isVisible;function o(t,e,r){var n=e.indexOf(r),a=t.indexOf(n);return-1===a&&(a+=e.length),a}e.exports=function(t,e){var r=t._fullLayout;if(a(t)){var s={},l={},c={},u={},h=r._size;e.forEach(function(e,r){var n=e[0].trace;c[r]=n.index;var a=u[r]=n._fullInput.index;s[r]=t.data[a].dimensions,l[r]=t.data[a].dimensions.slice()});n(t,e,{width:h.w,height:h.h,margin:{t:h.t,r:h.r,b:h.b,l:h.l}},{filterChanged:function(e,n,a){var i=l[e][n],o=a.map(function(t){return t.slice()}),s=\"dimensions[\"+n+\"].constraintrange\",h=r._tracePreGUI[t._fullData[c[e]]._fullInput.uid];if(void 0===h[s]){var f=i.constraintrange;h[s]=f||null}var p=t._fullData[c[e]].dimensions[n];o.length?(1===o.length&&(o=o[0]),i.constraintrange=o,p.constraintrange=o.slice(),o=[o]):(delete i.constraintrange,delete p.constraintrange,o=null);var d={};d[s]=o,t.emit(\"plotly_restyle\",[d,[u[e]]])},hover:function(e){t.emit(\"plotly_hover\",e)},unhover:function(e){t.emit(\"plotly_unhover\",e)},axesMoved:function(e,r){var n=function(t,e){return function(r,n){return o(t,e,r)-o(t,e,n)}}(r,l[e].filter(i));s[e].sort(n),l[e].filter(function(t){return!i(t)}).sort(function(t){return l[e].indexOf(t)}).forEach(function(t){s[e].splice(s[e].indexOf(t),1),s[e].splice(l[e].indexOf(t),0,t)}),t.emit(\"plotly_restyle\",[{dimensions:[s[e]]},[u[e]]])}})}}},{\"../../lib/prepare_regl\":732,\"./helpers\":1079,\"./parcoords\":1083}],1085:[function(t,e,r){\"use strict\";var n=t(\"../../plots/attributes\"),a=t(\"../../plots/domain\").attributes,i=t(\"../../plots/font_attributes\"),o=t(\"../../components/color/attributes\"),s=t(\"../../plots/template_attributes\").hovertemplateAttrs,l=t(\"../../plots/template_attributes\").texttemplateAttrs,c=t(\"../../lib/extend\").extendFlat,u=i({editType:\"plot\",arrayOk:!0,colorEditType:\"plot\"});e.exports={labels:{valType:\"data_array\",editType:\"calc\"},label0:{valType:\"number\",dflt:0,editType:\"calc\"},dlabel:{valType:\"number\",dflt:1,editType:\"calc\"},values:{valType:\"data_array\",editType:\"calc\"},marker:{colors:{valType:\"data_array\",editType:\"calc\"},line:{color:{valType:\"color\",dflt:o.defaultLine,arrayOk:!0,editType:\"style\"},width:{valType:\"number\",min:0,dflt:0,arrayOk:!0,editType:\"style\"},editType:\"calc\"},editType:\"calc\"},text:{valType:\"data_array\",editType:\"plot\"},hovertext:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"style\"},scalegroup:{valType:\"string\",dflt:\"\",editType:\"calc\"},textinfo:{valType:\"flaglist\",flags:[\"label\",\"text\",\"value\",\"percent\"],extras:[\"none\"],editType:\"calc\"},hoverinfo:c({},n.hoverinfo,{flags:[\"label\",\"text\",\"value\",\"percent\",\"name\"]}),hovertemplate:s({},{keys:[\"label\",\"color\",\"value\",\"percent\",\"text\"]}),texttemplate:l({editType:\"plot\"},{keys:[\"label\",\"color\",\"value\",\"percent\",\"text\"]}),textposition:{valType:\"enumerated\",values:[\"inside\",\"outside\",\"auto\",\"none\"],dflt:\"auto\",arrayOk:!0,editType:\"plot\"},textfont:c({},u,{}),insidetextfont:c({},u,{}),outsidetextfont:c({},u,{}),title:{text:{valType:\"string\",dflt:\"\",editType:\"plot\"},font:c({},u,{}),position:{valType:\"enumerated\",values:[\"top left\",\"top center\",\"top right\",\"middle center\",\"bottom left\",\"bottom center\",\"bottom right\"],editType:\"plot\"},editType:\"plot\"},domain:a({name:\"pie\",trace:!0,editType:\"calc\"}),hole:{valType:\"number\",min:0,max:1,dflt:0,editType:\"calc\"},sort:{valType:\"boolean\",dflt:!0,editType:\"calc\"},direction:{valType:\"enumerated\",values:[\"clockwise\",\"counterclockwise\"],dflt:\"counterclockwise\",editType:\"calc\"},rotation:{valType:\"number\",min:-360,max:360,dflt:0,editType:\"calc\"},pull:{valType:\"number\",min:0,max:1,dflt:0,arrayOk:!0,editType:\"calc\"},_deprecated:{title:{valType:\"string\",dflt:\"\",editType:\"calc\"},titlefont:c({},u,{}),titleposition:{valType:\"enumerated\",values:[\"top left\",\"top center\",\"top right\",\"middle center\",\"bottom left\",\"bottom center\",\"bottom right\"],editType:\"calc\"}}}},{\"../../components/color/attributes\":593,\"../../lib/extend\":710,\"../../plots/attributes\":764,\"../../plots/domain\":792,\"../../plots/font_attributes\":793,\"../../plots/template_attributes\":843}],1086:[function(t,e,r){\"use strict\";var n=t(\"../../plots/plots\");r.name=\"pie\",r.plot=function(t,e,a,i){n.plotBasePlot(r.name,t,e,a,i)},r.clean=function(t,e,a,i){n.cleanBasePlot(r.name,t,e,a,i)}},{\"../../plots/plots\":828}],1087:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\").isArrayOrTypedArray,i=t(\"tinycolor2\"),o=t(\"../../components/color\"),s={};function l(t){return function(e,r){return!!e&&(!!(e=i(e)).isValid()&&(e=o.addOpacity(e,e.getAlpha()),t[r]||(t[r]=e),e))}}function c(t,e){var r,n=JSON.stringify(t),a=e[n];if(!a){for(a=t.slice(),r=0;r<t.length;r++)a.push(i(t[r]).lighten(20).toHexString());for(r=0;r<t.length;r++)a.push(i(t[r]).darken(20).toHexString());e[n]=a}return a}e.exports={calc:function(t,e){var r,i,o=[],s=t._fullLayout,c=s.hiddenlabels||[],u=e.labels,h=e.marker.colors||[],f=e.values,p=a(f)&&f.length;if(e.dlabel)for(u=new Array(f.length),r=0;r<f.length;r++)u[r]=String(e.label0+r*e.dlabel);var d={},g=l(s[\"_\"+e.type+\"colormap\"]),v=(p?f:u).length,m=0,y=!1;for(r=0;r<v;r++){var x,b,_;if(p){if(x=f[r],!n(x))continue;if((x=+x)<0)continue}else x=1;void 0!==(b=u[r])&&\"\"!==b||(b=r);var w=d[b=String(b)];void 0===w?(d[b]=o.length,(_=-1!==c.indexOf(b))||(m+=x),o.push({v:x,label:b,color:g(h[r],b),i:r,pts:[r],hidden:_})):(y=!0,(i=o[w]).v+=x,i.pts.push(r),i.hidden||(m+=x),!1===i.color&&h[r]&&(i.color=g(h[r],b)))}return(\"funnelarea\"===e.type?y:e.sort)&&o.sort(function(t,e){return e.v-t.v}),o[0]&&(o[0].vTotal=m),o},crossTraceCalc:function(t,e){var r=(e||{}).type;r||(r=\"pie\");var n=t._fullLayout,a=t.calcdata,i=n[r+\"colorway\"],o=n[\"_\"+r+\"colormap\"];n[\"extend\"+r+\"colors\"]&&(i=c(i,s));for(var l=0,u=0;u<a.length;u++){var h=a[u];if(h[0].trace.type===r)for(var f=0;f<h.length;f++){var p=h[f];!1===p.color&&(o[p.label]?p.color=o[p.label]:(o[p.label]=p.color=i[l%i.length],l++))}}},makePullColorFn:l,generateExtendedColors:c}},{\"../../components/color\":594,\"../../lib\":719,\"fast-isnumeric\":226,tinycolor2:538}],1088:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./attributes\"),i=t(\"../../plots/domain\").defaults,o=t(\"../bar/defaults\").handleText;e.exports=function(t,e,r,s){function l(r,i){return n.coerce(t,e,a,r,i)}var c,u=l(\"values\"),h=n.isArrayOrTypedArray(u),f=l(\"labels\");if(Array.isArray(f)?(c=f.length,h&&(c=Math.min(c,u.length))):h&&(c=u.length,l(\"label0\"),l(\"dlabel\")),c){e._length=c,l(\"marker.line.width\")&&l(\"marker.line.color\"),l(\"marker.colors\"),l(\"scalegroup\");var p,d=l(\"text\"),g=l(\"texttemplate\");if(g||(p=l(\"textinfo\",Array.isArray(d)?\"text+percent\":\"percent\")),l(\"hovertext\"),l(\"hovertemplate\"),g||p&&\"none\"!==p){var v=l(\"textposition\");o(t,e,s,l,v,{moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!1,moduleHasCliponaxis:!1,moduleHasTextangle:!1,moduleHasInsideanchor:!1})}i(e,s,l);var m=l(\"hole\");if(l(\"title.text\")){var y=l(\"title.position\",m?\"middle center\":\"top center\");m||\"middle center\"!==y||(e.title.position=\"top center\"),n.coerceFont(l,\"title.font\",s.font)}l(\"sort\"),l(\"direction\"),l(\"rotation\"),l(\"pull\")}else e.visible=!1}},{\"../../lib\":719,\"../../plots/domain\":792,\"../bar/defaults\":862,\"./attributes\":1085}],1089:[function(t,e,r){\"use strict\";var n=t(\"../../components/fx/helpers\").appendArrayMultiPointValues;e.exports=function(t,e){var r={curveNumber:e.index,pointNumbers:t.pts,data:e._input,fullData:e,label:t.label,color:t.color,value:t.v,percent:t.percent,text:t.text,v:t.v};return 1===t.pts.length&&(r.pointNumber=r.i=t.pts[0]),n(r,e,t.pts),\"funnelarea\"===e.type&&(delete r.v,delete r.i),r}},{\"../../components/fx/helpers\":629}],1090:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");r.formatPiePercent=function(t,e){var r=(100*t).toPrecision(3);return-1!==r.lastIndexOf(\".\")&&(r=r.replace(/[.]?0+$/,\"\")),n.numSeparate(r,e)+\"%\"},r.formatPieValue=function(t,e){var r=t.toPrecision(10);return-1!==r.lastIndexOf(\".\")&&(r=r.replace(/[.]?0+$/,\"\")),n.numSeparate(r,e)},r.getFirstFilled=function(t,e){if(Array.isArray(t))for(var r=0;r<e.length;r++){var n=t[e[r]];if(n||0===n||\"\"===n)return n}},r.castOption=function(t,e){return Array.isArray(t)?r.getFirstFilled(t,e):t||void 0}},{\"../../lib\":719}],1091:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),supplyLayoutDefaults:t(\"./layout_defaults\"),layoutAttributes:t(\"./layout_attributes\"),calc:t(\"./calc\").calc,crossTraceCalc:t(\"./calc\").crossTraceCalc,plot:t(\"./plot\").plot,style:t(\"./style\"),styleOne:t(\"./style_one\"),moduleType:\"trace\",name:\"pie\",basePlotModule:t(\"./base_plot\"),categories:[\"pie-like\",\"pie\",\"showLegend\"],meta:{}}},{\"./attributes\":1085,\"./base_plot\":1086,\"./calc\":1087,\"./defaults\":1088,\"./layout_attributes\":1092,\"./layout_defaults\":1093,\"./plot\":1094,\"./style\":1095,\"./style_one\":1096}],1092:[function(t,e,r){\"use strict\";e.exports={hiddenlabels:{valType:\"data_array\",editType:\"calc\"},piecolorway:{valType:\"colorlist\",editType:\"calc\"},extendpiecolors:{valType:\"boolean\",dflt:!0,editType:\"calc\"}}},{}],1093:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./layout_attributes\");e.exports=function(t,e){function r(r,i){return n.coerce(t,e,a,r,i)}r(\"hiddenlabels\"),r(\"piecolorway\",e.colorway),r(\"extendpiecolors\")}},{\"../../lib\":719,\"./layout_attributes\":1092}],1094:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/fx\"),i=t(\"../../components/color\"),o=t(\"../../components/drawing\"),s=t(\"../../lib\"),l=t(\"../../lib/svg_text_utils\"),c=t(\"./helpers\"),u=t(\"./event_data\"),h=t(\"../../lib\").isValidTextValue;function f(t,e,r){var i=r[0],o=i.trace,l=i.cx,h=i.cy;\"_hasHoverLabel\"in o||(o._hasHoverLabel=!1),\"_hasHoverEvent\"in o||(o._hasHoverEvent=!1),t.on(\"mouseover\",function(t){var r=e._fullLayout,f=e._fullData[o.index];if(!e._dragging&&!1!==r.hovermode){var p=f.hoverinfo;if(Array.isArray(p)&&(p=a.castHoverinfo({hoverinfo:[c.castOption(p,t.pts)],_module:o._module},r,0)),\"all\"===p&&(p=\"label+text+value+percent+name\"),f.hovertemplate||\"none\"!==p&&\"skip\"!==p&&p){var d=t.rInscribed||0,g=l+t.pxmid[0]*(1-d),v=h+t.pxmid[1]*(1-d),m=r.separators,y=[];if(p&&-1!==p.indexOf(\"label\")&&y.push(t.label),t.text=c.castOption(f.hovertext||f.text,t.pts),p&&-1!==p.indexOf(\"text\")){var x=t.text;s.isValidTextValue(x)&&y.push(x)}t.value=t.v,t.valueLabel=c.formatPieValue(t.v,m),p&&-1!==p.indexOf(\"value\")&&y.push(t.valueLabel),t.percent=t.v/i.vTotal,t.percentLabel=c.formatPiePercent(t.percent,m),p&&-1!==p.indexOf(\"percent\")&&y.push(t.percentLabel);var b=f.hoverlabel,_=b.font;a.loneHover({trace:o,x0:g-d*i.r,x1:g+d*i.r,y:v,text:y.join(\"<br>\"),name:f.hovertemplate||-1!==p.indexOf(\"name\")?f.name:void 0,idealAlign:t.pxmid[0]<0?\"left\":\"right\",color:c.castOption(b.bgcolor,t.pts)||t.color,borderColor:c.castOption(b.bordercolor,t.pts),fontFamily:c.castOption(_.family,t.pts),fontSize:c.castOption(_.size,t.pts),fontColor:c.castOption(_.color,t.pts),nameLength:c.castOption(b.namelength,t.pts),textAlign:c.castOption(b.align,t.pts),hovertemplate:c.castOption(f.hovertemplate,t.pts),hovertemplateLabels:t,eventData:[u(t,f)]},{container:r._hoverlayer.node(),outerContainer:r._paper.node(),gd:e}),o._hasHoverLabel=!0}o._hasHoverEvent=!0,e.emit(\"plotly_hover\",{points:[u(t,f)],event:n.event})}}),t.on(\"mouseout\",function(t){var r=e._fullLayout,i=e._fullData[o.index],s=n.select(this).datum();o._hasHoverEvent&&(t.originalEvent=n.event,e.emit(\"plotly_unhover\",{points:[u(s,i)],event:n.event}),o._hasHoverEvent=!1),o._hasHoverLabel&&(a.loneUnhover(r._hoverlayer.node()),o._hasHoverLabel=!1)}),t.on(\"click\",function(t){var r=e._fullLayout,i=e._fullData[o.index];e._dragging||!1===r.hovermode||(e._hoverdata=[u(t,i)],a.click(e,n.event))})}function p(t,e,r){var n=c.castOption(t.insidetextfont.color,e.pts);!n&&t._input.textfont&&(n=c.castOption(t._input.textfont.color,e.pts));var a=c.castOption(t.insidetextfont.family,e.pts)||c.castOption(t.textfont.family,e.pts)||r.family,o=c.castOption(t.insidetextfont.size,e.pts)||c.castOption(t.textfont.size,e.pts)||r.size;return{color:n||i.contrast(e.color),family:a,size:o}}function d(t,e){for(var r,n,a=0;a<t.length;a++)if((n=(r=t[a][0]).trace).title.text){var i=n.title.text;n._meta&&(i=s.templateString(i,n._meta));var c=o.tester.append(\"text\").attr(\"data-notex\",1).text(i).call(o.font,n.title.font).call(l.convertToTspans,e),u=o.bBox(c.node(),!0);r.titleBox={width:u.width,height:u.height},c.remove()}}function g(t,e,r){var n=Math.sqrt(t.width*t.width+t.height*t.height),a=t.width/t.height,i=e.halfangle,o=e.ring,s=e.rInscribed,l=r.r||e.rpx1,c={scale:s*l*2/n,rCenter:1-s,rotate:0};if(c.scale>=1)return c;var u=a+1/(2*Math.tan(i)),h=l*Math.min(1/(Math.sqrt(u*u+.5)+u),o/(Math.sqrt(a*a+o/2)+a)),f={scale:2*h/t.height,rCenter:Math.cos(h/l)-h*a/l,rotate:(180/Math.PI*e.midangle+720)%180-90},p=1/a,d=p+1/(2*Math.tan(i)),g=l*Math.min(1/(Math.sqrt(d*d+.5)+d),o/(Math.sqrt(p*p+o/2)+p)),v={scale:2*g/t.width,rCenter:Math.cos(g/l)-g/a/l,rotate:(180/Math.PI*e.midangle+810)%180-90},m=v.scale>f.scale?v:f;return c.scale<1&&m.scale>c.scale?m:c}function v(t,e){return t.v!==e.vTotal||e.trace.hole?Math.min(1/(1+1/Math.sin(t.halfangle)),t.ring/2):1}function m(t,e){var r=e.pxmid[0],n=e.pxmid[1],a=t.width/2,i=t.height/2;return r<0&&(a*=-1),n<0&&(i*=-1),{scale:1,rCenter:1,rotate:0,x:a+Math.abs(i)*(a>0?1:-1)/2,y:i/(1+r*r/(n*n)),outside:!0}}function y(t,e){var r,n,a,i=t.trace,o={x:t.cx,y:t.cy},s={tx:0,ty:0};s.ty+=i.title.font.size,a=b(i),-1!==i.title.position.indexOf(\"top\")?(o.y-=(1+a)*t.r,s.ty-=t.titleBox.height):-1!==i.title.position.indexOf(\"bottom\")&&(o.y+=(1+a)*t.r);var l,c,u=(l=t.r,c=t.trace.aspectratio,l/(void 0===c?1:c)),h=e.w*(i.domain.x[1]-i.domain.x[0])/2;return-1!==i.title.position.indexOf(\"left\")?(h+=u,o.x-=(1+a)*u,s.tx+=t.titleBox.width/2):-1!==i.title.position.indexOf(\"center\")?h*=2:-1!==i.title.position.indexOf(\"right\")&&(h+=u,o.x+=(1+a)*u,s.tx-=t.titleBox.width/2),r=h/t.titleBox.width,n=x(t,e)/t.titleBox.height,{x:o.x,y:o.y,scale:Math.min(r,n),tx:s.tx,ty:s.ty}}function x(t,e){var r=t.trace,n=e.h*(r.domain.y[1]-r.domain.y[0]);return Math.min(t.titleBox.height,n/2)}function b(t){var e,r=t.pull;if(!r)return 0;if(Array.isArray(r))for(r=0,e=0;e<t.pull.length;e++)t.pull[e]>r&&(r=t.pull[e]);return r}function _(t,e){for(var r=[],n=0;n<t.length;n++){var a=t[n][0],i=a.trace,o=i.domain,s=e.w*(o.x[1]-o.x[0]),l=e.h*(o.y[1]-o.y[0]);i.title.text&&\"middle center\"!==i.title.position&&(l-=x(a,e));var c=s/2,u=l/2;\"funnelarea\"!==i.type||i.scalegroup||(u/=i.aspectratio),a.r=Math.min(c,u)/(1+b(i)),a.cx=e.l+e.w*(i.domain.x[1]+i.domain.x[0])/2,a.cy=e.t+e.h*(1-i.domain.y[0])-l/2,i.title.text&&-1!==i.title.position.indexOf(\"bottom\")&&(a.cy-=x(a,e)),i.scalegroup&&-1===r.indexOf(i.scalegroup)&&r.push(i.scalegroup)}!function(t,e){for(var r,n,a,i=0;i<e.length;i++){var o=1/0,s=e[i];for(n=0;n<t.length;n++)if(r=t[n][0],(a=r.trace).scalegroup===s){var l;if(\"pie\"===a.type)l=r.r*r.r;else if(\"funnelarea\"===a.type){var c,u;a.aspectratio>1?(c=r.r,u=c/a.aspectratio):(u=r.r,c=u*a.aspectratio),c*=(1+a.baseratio)/2,l=c*u}o=Math.min(o,l/r.vTotal)}for(n=0;n<t.length;n++)if(r=t[n][0],(a=r.trace).scalegroup===s){var h=o*r.vTotal;\"funnelarea\"===a.type&&(h/=(1+a.baseratio)/2,h/=a.aspectratio),r.r=Math.sqrt(h)}}}(t,r)}function w(t,e,r){var n=t._fullLayout,a=r.trace,i=a.texttemplate,o=a.textinfo;if(!i&&o&&\"none\"!==o){var l,u=o.split(\"+\"),f=function(t){return-1!==u.indexOf(t)},p=f(\"label\"),d=f(\"text\"),g=f(\"value\"),v=f(\"percent\"),m=n.separators;if(l=p?[e.label]:[],d){var y=c.getFirstFilled(a.text,e.pts);h(y)&&l.push(y)}g&&l.push(c.formatPieValue(e.v,m)),v&&l.push(c.formatPiePercent(e.v/r.vTotal,m)),e.text=l.join(\"<br>\")}if(i){var x=s.castOption(a,e.i,\"texttemplate\");if(x){var b=function(t){return{label:t.label,value:t.v,valueLabel:c.formatPieValue(t.v,n.separators),percent:t.v/r.vTotal,percentLabel:c.formatPiePercent(t.v/r.vTotal,n.separators),color:t.color,text:t.text,customdata:s.castOption(a,t.i,\"customdata\")}}(e),_=c.getFirstFilled(a.text,e.pts);(h(_)||\"\"===_)&&(b.text=_),e.text=s.texttemplateString(x,b,t._fullLayout._d3locale,b,a._meta||{})}else e.text=\"\"}}e.exports={plot:function(t,e){var r=t._fullLayout;d(e,t),_(e,r._size);var a=s.makeTraceGroups(r._pielayer,e,\"trace\").each(function(e){var a=n.select(this),u=e[0],h=u.trace;!function(t){var e,r,n,a=t[0],i=a.trace,o=i.rotation*Math.PI/180,s=2*Math.PI/a.vTotal,l=\"px0\",c=\"px1\";if(\"counterclockwise\"===i.direction){for(e=0;e<t.length&&t[e].hidden;e++);if(e===t.length)return;o+=s*t[e].v,s*=-1,l=\"px1\",c=\"px0\"}function u(t){return[a.r*Math.sin(t),-a.r*Math.cos(t)]}for(n=u(o),e=0;e<t.length;e++)(r=t[e]).hidden||(r[l]=n,o+=s*r.v/2,r.pxmid=u(o),r.midangle=o,o+=s*r.v/2,n=u(o),r[c]=n,r.largeArc=r.v>a.vTotal/2?1:0,r.halfangle=Math.PI*Math.min(r.v/a.vTotal,.5),r.ring=1-i.hole,r.rInscribed=v(r,a))}(e),a.attr(\"stroke-linejoin\",\"round\"),a.each(function(){var a=n.select(this).selectAll(\"g.slice\").data(e);a.enter().append(\"g\").classed(\"slice\",!0),a.exit().remove();var d=[[[],[]],[[],[]]],v=!1;a.each(function(r){if(r.hidden)n.select(this).selectAll(\"path,g\").remove();else{r.pointNumber=r.i,r.curveNumber=h.index,d[r.pxmid[1]<0?0:1][r.pxmid[0]<0?0:1].push(r);var a=u.cx,i=u.cy,y=n.select(this),x=y.selectAll(\"path.surface\").data([r]);if(x.enter().append(\"path\").classed(\"surface\",!0).style({\"pointer-events\":\"all\"}),y.call(f,t,e),h.pull){var b=+c.castOption(h.pull,r.pts)||0;b>0&&(a+=b*r.pxmid[0],i+=b*r.pxmid[1])}r.cxFinal=a,r.cyFinal=i;var _=h.hole;if(r.v===u.vTotal){var k=\"M\"+(a+r.px0[0])+\",\"+(i+r.px0[1])+E(r.px0,r.pxmid,!0,1)+E(r.pxmid,r.px0,!0,1)+\"Z\";_?x.attr(\"d\",\"M\"+(a+_*r.px0[0])+\",\"+(i+_*r.px0[1])+E(r.px0,r.pxmid,!1,_)+E(r.pxmid,r.px0,!1,_)+\"Z\"+k):x.attr(\"d\",k)}else{var T=E(r.px0,r.px1,!0,1);if(_){var A=1-_;x.attr(\"d\",\"M\"+(a+_*r.px1[0])+\",\"+(i+_*r.px1[1])+E(r.px1,r.px0,!1,_)+\"l\"+A*r.px0[0]+\",\"+A*r.px0[1]+T+\"Z\")}else x.attr(\"d\",\"M\"+a+\",\"+i+\"l\"+r.px0[0]+\",\"+r.px0[1]+T+\"Z\")}w(t,r,u);var M=c.castOption(h.textposition,r.pts),S=y.selectAll(\"g.slicetext\").data(r.text&&\"none\"!==M?[0]:[]);S.enter().append(\"g\").classed(\"slicetext\",!0),S.exit().remove(),S.each(function(){var e=s.ensureSingle(n.select(this),\"text\",\"\",function(t){t.attr(\"data-notex\",1)});e.text(r.text).attr({class:\"slicetext\",transform:\"\",\"text-anchor\":\"middle\"}).call(o.font,\"outside\"===M?function(t,e,r){var n=c.castOption(t.outsidetextfont.color,e.pts)||c.castOption(t.textfont.color,e.pts)||r.color,a=c.castOption(t.outsidetextfont.family,e.pts)||c.castOption(t.textfont.family,e.pts)||r.family,i=c.castOption(t.outsidetextfont.size,e.pts)||c.castOption(t.textfont.size,e.pts)||r.size;return{color:n,family:a,size:i}}(h,r,t._fullLayout.font):p(h,r,t._fullLayout.font)).call(l.convertToTspans,t);var f,d=o.bBox(e.node());\"outside\"===M?f=m(d,r):(f=g(d,r,u),\"auto\"===M&&f.scale<1&&(e.call(o.font,h.outsidetextfont),h.outsidetextfont.family===h.insidetextfont.family&&h.outsidetextfont.size===h.insidetextfont.size||(d=o.bBox(e.node())),f=m(d,r)));var y=a+r.pxmid[0]*f.rCenter+(f.x||0),x=i+r.pxmid[1]*f.rCenter+(f.y||0);f.outside&&(r.yLabelMin=x-d.height/2,r.yLabelMid=x,r.yLabelMax=x+d.height/2,r.labelExtraX=0,r.labelExtraY=0,v=!0),e.attr(\"transform\",\"translate(\"+y+\",\"+x+\")\"+(f.scale<1?\"scale(\"+f.scale+\")\":\"\")+(f.rotate?\"rotate(\"+f.rotate+\")\":\"\")+\"translate(\"+-(d.left+d.right)/2+\",\"+-(d.top+d.bottom)/2+\")\")})}function E(t,e,n,a){var i=a*(e[0]-t[0]),o=a*(e[1]-t[1]);return\"a\"+a*u.r+\",\"+a*u.r+\" 0 \"+r.largeArc+(n?\" 1 \":\" 0 \")+i+\",\"+o}});var x=n.select(this).selectAll(\"g.titletext\").data(h.title.text?[0]:[]);x.enter().append(\"g\").classed(\"titletext\",!0),x.exit().remove(),x.each(function(){var e,a=s.ensureSingle(n.select(this),\"text\",\"\",function(t){t.attr(\"data-notex\",1)}),i=h.title.text;h._meta&&(i=s.templateString(i,h._meta)),a.text(i).attr({class:\"titletext\",transform:\"\",\"text-anchor\":\"middle\"}).call(o.font,h.title.font).call(l.convertToTspans,t),e=\"middle center\"===h.title.position?function(t){var e=Math.sqrt(t.titleBox.width*t.titleBox.width+t.titleBox.height*t.titleBox.height);return{x:t.cx,y:t.cy,scale:t.trace.hole*t.r*2/e,tx:0,ty:-t.titleBox.height/2+t.trace.title.font.size}}(u):y(u,r._size),a.attr(\"transform\",\"translate(\"+e.x+\",\"+e.y+\")\"+(e.scale<1?\"scale(\"+e.scale+\")\":\"\")+\"translate(\"+e.tx+\",\"+e.ty+\")\")}),v&&function(t,e){var r,n,a,i,o,s,l,u,h,f,p,d,g;function v(t,e){return t.pxmid[1]-e.pxmid[1]}function m(t,e){return e.pxmid[1]-t.pxmid[1]}function y(t,r){r||(r={});var a,u,h,p,d,g,v=r.labelExtraY+(n?r.yLabelMax:r.yLabelMin),m=n?t.yLabelMin:t.yLabelMax,y=n?t.yLabelMax:t.yLabelMin,x=t.cyFinal+o(t.px0[1],t.px1[1]),b=v-m;if(b*l>0&&(t.labelExtraY=b),Array.isArray(e.pull))for(u=0;u<f.length;u++)(h=f[u])===t||(c.castOption(e.pull,t.pts)||0)>=(c.castOption(e.pull,h.pts)||0)||((t.pxmid[1]-h.pxmid[1])*l>0?(p=h.cyFinal+o(h.px0[1],h.px1[1]),(b=p-m-t.labelExtraY)*l>0&&(t.labelExtraY+=b)):(y+t.labelExtraY-x)*l>0&&(a=3*s*Math.abs(u-f.indexOf(t)),d=h.cxFinal+i(h.px0[0],h.px1[0]),(g=d+a-(t.cxFinal+t.pxmid[0])-t.labelExtraX)*s>0&&(t.labelExtraX+=g)))}for(n=0;n<2;n++)for(a=n?v:m,o=n?Math.max:Math.min,l=n?1:-1,r=0;r<2;r++){for(i=r?Math.max:Math.min,s=r?1:-1,(u=t[n][r]).sort(a),h=t[1-n][r],f=h.concat(u),d=[],p=0;p<u.length;p++)void 0!==u[p].yLabelMid&&d.push(u[p]);for(g=!1,p=0;n&&p<h.length;p++)if(void 0!==h[p].yLabelMid){g=h[p];break}for(p=0;p<d.length;p++){var x=p&&d[p-1];g&&!p&&(x=g),y(d[p],x)}}}(d,h),function(t,e){t.each(function(t){var r=n.select(this);if(t.labelExtraX||t.labelExtraY){var a=r.select(\"g.slicetext text\");a.attr(\"transform\",\"translate(\"+t.labelExtraX+\",\"+t.labelExtraY+\")\"+a.attr(\"transform\"));var o=t.cxFinal+t.pxmid[0],l=t.cyFinal+t.pxmid[1],c=\"M\"+o+\",\"+l,u=(t.yLabelMax-t.yLabelMin)*(t.pxmid[0]<0?-1:1)/4;if(t.labelExtraX){var h=t.labelExtraX*t.pxmid[1]/t.pxmid[0],f=t.yLabelMid+t.labelExtraY-(t.cyFinal+t.pxmid[1]);Math.abs(h)>Math.abs(f)?c+=\"l\"+f*t.pxmid[0]/t.pxmid[1]+\",\"+f+\"H\"+(o+t.labelExtraX+u):c+=\"l\"+t.labelExtraX+\",\"+h+\"v\"+(f-h)+\"h\"+u}else c+=\"V\"+(t.yLabelMid+t.labelExtraY)+\"h\"+u;s.ensureSingle(r,\"path\",\"textline\").call(i.stroke,e.outsidetextfont.color).attr({\"stroke-width\":Math.min(2,e.outsidetextfont.size/8),d:c,fill:\"none\"})}else r.select(\"path.textline\").remove()})}(a,h)})});setTimeout(function(){a.selectAll(\"tspan\").each(function(){var t=n.select(this);t.attr(\"dy\")&&t.attr(\"dy\",t.attr(\"dy\"))})},0)},formatSliceLabel:w,transformInsideText:g,determineInsideTextFont:p,positionTitleOutside:y,prerenderTitles:d,layoutAreas:_,attachFxHandlers:f}},{\"../../components/color\":594,\"../../components/drawing\":615,\"../../components/fx\":632,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"./event_data\":1089,\"./helpers\":1090,d3:164}],1095:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"./style_one\");e.exports=function(t){t._fullLayout._pielayer.selectAll(\".trace\").each(function(t){var e=t[0].trace,r=n.select(this);r.style({opacity:e.opacity}),r.selectAll(\"path.surface\").each(function(t){n.select(this).call(a,t,e)})})}},{\"./style_one\":1096,d3:164}],1096:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\"),a=t(\"./helpers\").castOption;e.exports=function(t,e,r){var i=r.marker.line,o=a(i.color,e.pts)||n.defaultLine,s=a(i.width,e.pts)||0;t.style(\"stroke-width\",s).call(n.fill,e.color).call(n.stroke,o)}},{\"../../components/color\":594,\"./helpers\":1090}],1097:[function(t,e,r){\"use strict\";var n=t(\"../scatter/attributes\");e.exports={x:n.x,y:n.y,xy:{valType:\"data_array\",editType:\"calc\"},indices:{valType:\"data_array\",editType:\"calc\"},xbounds:{valType:\"data_array\",editType:\"calc\"},ybounds:{valType:\"data_array\",editType:\"calc\"},text:n.text,marker:{color:{valType:\"color\",arrayOk:!1,editType:\"calc\"},opacity:{valType:\"number\",min:0,max:1,dflt:1,arrayOk:!1,editType:\"calc\"},blend:{valType:\"boolean\",dflt:null,editType:\"calc\"},sizemin:{valType:\"number\",min:.1,max:2,dflt:.5,editType:\"calc\"},sizemax:{valType:\"number\",min:.1,dflt:20,editType:\"calc\"},border:{color:{valType:\"color\",arrayOk:!1,editType:\"calc\"},arearatio:{valType:\"number\",min:0,max:1,dflt:0,editType:\"calc\"},editType:\"calc\"},editType:\"calc\"},transforms:void 0}},{\"../scatter/attributes\":1111}],1098:[function(t,e,r){\"use strict\";var n=t(\"gl-pointcloud2d\"),a=t(\"../../lib/str2rgbarray\"),i=t(\"../../plots/cartesian/autorange\").findExtremes,o=t(\"../scatter/get_trace_color\");function s(t,e){this.scene=t,this.uid=e,this.type=\"pointcloud\",this.pickXData=[],this.pickYData=[],this.xData=[],this.yData=[],this.textLabels=[],this.color=\"rgb(0, 0, 0)\",this.name=\"\",this.hoverinfo=\"all\",this.idToIndex=new Int32Array(0),this.bounds=[0,0,0,0],this.pointcloudOptions={positions:new Float32Array(0),idToIndex:this.idToIndex,sizemin:.5,sizemax:12,color:[0,0,0,1],areaRatio:1,borderColor:[0,0,0,1]},this.pointcloud=n(t.glplot,this.pointcloudOptions),this.pointcloud._trace=this}var l=s.prototype;l.handlePick=function(t){var e=this.idToIndex[t.pointId];return{trace:this,dataCoord:t.dataCoord,traceCoord:this.pickXYData?[this.pickXYData[2*e],this.pickXYData[2*e+1]]:[this.pickXData[e],this.pickYData[e]],textLabel:Array.isArray(this.textLabels)?this.textLabels[e]:this.textLabels,color:this.color,name:this.name,pointIndex:e,hoverinfo:this.hoverinfo}},l.update=function(t){this.index=t.index,this.textLabels=t.text,this.name=t.name,this.hoverinfo=t.hoverinfo,this.bounds=[1/0,1/0,-1/0,-1/0],this.updateFast(t),this.color=o(t,{})},l.updateFast=function(t){var e,r,n,o,s,l,c=this.xData=this.pickXData=t.x,u=this.yData=this.pickYData=t.y,h=this.pickXYData=t.xy,f=t.xbounds&&t.ybounds,p=t.indices,d=this.bounds;if(h){if(n=h,e=h.length>>>1,f)d[0]=t.xbounds[0],d[2]=t.xbounds[1],d[1]=t.ybounds[0],d[3]=t.ybounds[1];else for(l=0;l<e;l++)o=n[2*l],s=n[2*l+1],o<d[0]&&(d[0]=o),o>d[2]&&(d[2]=o),s<d[1]&&(d[1]=s),s>d[3]&&(d[3]=s);if(p)r=p;else for(r=new Int32Array(e),l=0;l<e;l++)r[l]=l}else for(e=c.length,n=new Float32Array(2*e),r=new Int32Array(e),l=0;l<e;l++)o=c[l],s=u[l],r[l]=l,n[2*l]=o,n[2*l+1]=s,o<d[0]&&(d[0]=o),o>d[2]&&(d[2]=o),s<d[1]&&(d[1]=s),s>d[3]&&(d[3]=s);this.idToIndex=r,this.pointcloudOptions.idToIndex=r,this.pointcloudOptions.positions=n;var g=a(t.marker.color),v=a(t.marker.border.color),m=t.opacity*t.marker.opacity;g[3]*=m,this.pointcloudOptions.color=g;var y=t.marker.blend;if(null===y){y=c.length<100||u.length<100}this.pointcloudOptions.blend=y,v[3]*=m,this.pointcloudOptions.borderColor=v;var x=t.marker.sizemin,b=Math.max(t.marker.sizemax,t.marker.sizemin);this.pointcloudOptions.sizeMin=x,this.pointcloudOptions.sizeMax=b,this.pointcloudOptions.areaRatio=t.marker.border.arearatio,this.pointcloud.update(this.pointcloudOptions);var _=this.scene.xaxis,w=this.scene.yaxis,k=b/2||.5;t._extremes[_._id]=i(_,[d[0],d[2]],{ppad:k}),t._extremes[w._id]=i(w,[d[1],d[3]],{ppad:k})},l.dispose=function(){this.pointcloud.dispose()},e.exports=function(t,e){var r=new s(t,e.uid);return r.update(e),r}},{\"../../lib/str2rgbarray\":742,\"../../plots/cartesian/autorange\":766,\"../scatter/get_trace_color\":1120,\"gl-pointcloud2d\":293}],1099:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./attributes\");e.exports=function(t,e,r){function i(r,i){return n.coerce(t,e,a,r,i)}i(\"x\"),i(\"y\"),i(\"xbounds\"),i(\"ybounds\"),t.xy&&t.xy instanceof Float32Array&&(e.xy=t.xy),t.indices&&t.indices instanceof Int32Array&&(e.indices=t.indices),i(\"text\"),i(\"marker.color\",r),i(\"marker.opacity\"),i(\"marker.blend\"),i(\"marker.sizemin\"),i(\"marker.sizemax\"),i(\"marker.border.color\",r),i(\"marker.border.arearatio\"),e._length=null}},{\"../../lib\":719,\"./attributes\":1097}],1100:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"../scatter3d/calc\"),plot:t(\"./convert\"),moduleType:\"trace\",name:\"pointcloud\",basePlotModule:t(\"../../plots/gl2d\"),categories:[\"gl\",\"gl2d\",\"showLegend\"],meta:{}}},{\"../../plots/gl2d\":805,\"../scatter3d/calc\":1138,\"./attributes\":1097,\"./convert\":1098,\"./defaults\":1099}],1101:[function(t,e,r){\"use strict\";var n=t(\"../../plots/font_attributes\"),a=t(\"../../plots/attributes\"),i=t(\"../../components/color/attributes\"),o=t(\"../../components/fx/attributes\"),s=t(\"../../plots/domain\").attributes,l=t(\"../../plots/template_attributes\").hovertemplateAttrs,c=t(\"../../components/colorscale/attributes\"),u=t(\"../../plot_api/plot_template\").templatedArray,h=t(\"../../lib/extend\").extendFlat,f=t(\"../../plot_api/edit_types\").overrideAll;t(\"../../constants/docs\").FORMAT_LINK;(e.exports=f({hoverinfo:h({},a.hoverinfo,{flags:[],arrayOk:!1}),hoverlabel:o.hoverlabel,domain:s({name:\"sankey\",trace:!0}),orientation:{valType:\"enumerated\",values:[\"v\",\"h\"],dflt:\"h\"},valueformat:{valType:\"string\",dflt:\".3s\"},valuesuffix:{valType:\"string\",dflt:\"\"},arrangement:{valType:\"enumerated\",values:[\"snap\",\"perpendicular\",\"freeform\",\"fixed\"],dflt:\"snap\"},textfont:n({}),node:{label:{valType:\"data_array\",dflt:[]},groups:{valType:\"info_array\",impliedEdits:{x:[],y:[]},dimensions:2,freeLength:!0,dflt:[],items:{valType:\"number\",editType:\"calc\"}},x:{valType:\"data_array\",dflt:[]},y:{valType:\"data_array\",dflt:[]},color:{valType:\"color\",arrayOk:!0},line:{color:{valType:\"color\",dflt:i.defaultLine,arrayOk:!0},width:{valType:\"number\",min:0,dflt:.5,arrayOk:!0}},pad:{valType:\"number\",arrayOk:!1,min:0,dflt:20},thickness:{valType:\"number\",arrayOk:!1,min:1,dflt:20},hoverinfo:{valType:\"enumerated\",values:[\"all\",\"none\",\"skip\"],dflt:\"all\"},hoverlabel:o.hoverlabel,hovertemplate:l({},{keys:[\"value\",\"label\"]})},link:{label:{valType:\"data_array\",dflt:[]},color:{valType:\"color\",arrayOk:!0},line:{color:{valType:\"color\",dflt:i.defaultLine,arrayOk:!0},width:{valType:\"number\",min:0,dflt:0,arrayOk:!0}},source:{valType:\"data_array\",dflt:[]},target:{valType:\"data_array\",dflt:[]},value:{valType:\"data_array\",dflt:[]},hoverinfo:{valType:\"enumerated\",values:[\"all\",\"none\",\"skip\"],dflt:\"all\"},hoverlabel:o.hoverlabel,hovertemplate:l({},{keys:[\"value\",\"label\"]}),colorscales:u(\"concentrationscales\",{editType:\"calc\",label:{valType:\"string\",editType:\"calc\",dflt:\"\"},cmax:{valType:\"number\",editType:\"calc\",dflt:1},cmin:{valType:\"number\",editType:\"calc\",dflt:0},colorscale:h(c().colorscale,{dflt:[[0,\"white\"],[1,\"black\"]]})})}},\"calc\",\"nested\")).transforms=void 0},{\"../../components/color/attributes\":593,\"../../components/colorscale/attributes\":601,\"../../components/fx/attributes\":624,\"../../constants/docs\":690,\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../../plot_api/plot_template\":757,\"../../plots/attributes\":764,\"../../plots/domain\":792,\"../../plots/font_attributes\":793,\"../../plots/template_attributes\":843}],1102:[function(t,e,r){\"use strict\";var n=t(\"../../plot_api/edit_types\").overrideAll,a=t(\"../../plots/get_data\").getModuleCalcData,i=t(\"./plot\"),o=t(\"../../components/fx/layout_attributes\"),s=t(\"../../lib/setcursor\"),l=t(\"../../components/dragelement\"),c=t(\"../../plots/cartesian/select\").prepSelect,u=t(\"../../lib\"),h=t(\"../../registry\");function f(t,e){var r=t._fullData[e],n=t._fullLayout,a=n.dragmode,i=\"pan\"===n.dragmode?\"move\":\"crosshair\",o=r._bgRect;if(\"pan\"!==a&&\"zoom\"!==a){s(o,i);var f={_id:\"x\",c2p:u.identity,_offset:r._sankey.translateX,_length:r._sankey.width},p={_id:\"y\",c2p:u.identity,_offset:r._sankey.translateY,_length:r._sankey.height},d={gd:t,element:o.node(),plotinfo:{id:e,xaxis:f,yaxis:p,fillRangeItems:u.noop},subplot:e,xaxes:[f],yaxes:[p],doneFnCompleted:function(r){var n,a=t._fullData[e],i=a.node.groups.slice(),o=[];function s(t){for(var e=a._sankey.graph.nodes,r=0;r<e.length;r++)if(e[r].pointNumber===t)return e[r]}for(var l=0;l<r.length;l++){var c=s(r[l].pointNumber);if(c)if(c.group){for(var u=0;u<c.childrenNodes.length;u++)o.push(c.childrenNodes[u].pointNumber);i[c.pointNumber-a.node._count]=!1}else o.push(c.pointNumber)}n=i.filter(Boolean).concat([o]),h.call(\"_guiRestyle\",t,{\"node.groups\":[n]},e)},prepFn:function(t,e,r){c(t,e,r,d,a)}};l.init(d)}}r.name=\"sankey\",r.baseLayoutAttrOverrides=n({hoverlabel:o.hoverlabel},\"plot\",\"nested\"),r.plot=function(t){var e=a(t.calcdata,\"sankey\")[0];i(t,e),r.updateFx(t)},r.clean=function(t,e,r,n){var a=n._has&&n._has(\"sankey\"),i=e._has&&e._has(\"sankey\");a&&!i&&(n._paperdiv.selectAll(\".sankey\").remove(),n._paperdiv.selectAll(\".bgsankey\").remove())},r.updateFx=function(t){for(var e=0;e<t._fullData.length;e++)f(t,e)}},{\"../../components/dragelement\":612,\"../../components/fx/layout_attributes\":633,\"../../lib\":719,\"../../lib/setcursor\":739,\"../../plot_api/edit_types\":750,\"../../plots/cartesian/select\":784,\"../../plots/get_data\":802,\"../../registry\":848,\"./plot\":1107}],1103:[function(t,e,r){\"use strict\";var n=t(\"strongly-connected-components\"),a=t(\"../../lib\"),i=t(\"../../lib/gup\").wrap,o=a.isArrayOrTypedArray,s=a.isIndex,l=t(\"../../components/colorscale\");function c(t){var e,r=t.node,i=t.link,c=[],u=o(i.color),h={},f={},p=i.colorscales.length;for(e=0;e<p;e++){var d=i.colorscales[e],g=l.extractScale(d,{cLetter:\"c\"}),v=l.makeColorScaleFunc(g);f[d.label]=v}var m=0;for(e=0;e<i.value.length;e++)i.source[e]>m&&(m=i.source[e]),i.target[e]>m&&(m=i.target[e]);var y,x=m+1;t.node._count=x;var b=t.node.groups,_={};for(e=0;e<b.length;e++){var w=b[e];for(y=0;y<w.length;y++){var k=w[y],T=x+e;_.hasOwnProperty(k)?a.warn(\"Node \"+k+\" is already part of a group.\"):_[k]=T}}var A={source:[],target:[]};for(e=0;e<i.value.length;e++){var M=i.value[e],S=i.source[e],E=i.target[e];if(M>0&&s(S,x)&&s(E,x)&&(!_.hasOwnProperty(S)||!_.hasOwnProperty(E)||_[S]!==_[E])){_.hasOwnProperty(E)&&(E=_[E]),_.hasOwnProperty(S)&&(S=_[S]),E=+E,h[S=+S]=h[E]=!0;var C=\"\";i.label&&i.label[e]&&(C=i.label[e]);var L=null;C&&f.hasOwnProperty(C)&&(L=f[C]),c.push({pointNumber:e,label:C,color:u?i.color[e]:i.color,concentrationscale:L,source:S,target:E,value:+M}),A.source.push(S),A.target.push(E)}}var P=x+b.length,O=o(r.color),I=[];for(e=0;e<P;e++)if(h[e]){var z=r.label[e];I.push({group:e>x-1,childrenNodes:[],pointNumber:e,label:z,color:O?r.color[e]:r.color})}var D=!1;return function(t,e,r){for(var i=a.init2dArray(t,0),o=0;o<Math.min(e.length,r.length);o++)if(a.isIndex(e[o],t)&&a.isIndex(r[o],t)){if(e[o]===r[o])return!0;i[e[o]].push(r[o])}return n(i).components.some(function(t){return t.length>1})}(P,A.source,A.target)&&(D=!0),{circular:D,links:c,nodes:I,groups:b,groupLookup:_}}e.exports=function(t,e){var r=c(e);return i({circular:r.circular,_nodes:r.nodes,_links:r.links,_groups:r.groups,_groupLookup:r.groupLookup})}},{\"../../components/colorscale\":606,\"../../lib\":719,\"../../lib/gup\":717,\"strongly-connected-components\":531}],1104:[function(t,e,r){\"use strict\";e.exports={nodeTextOffsetHorizontal:4,nodeTextOffsetVertical:3,nodePadAcross:10,sankeyIterations:50,forceIterations:5,forceTicksPerFrame:10,duration:500,ease:\"linear\",cn:{sankey:\"sankey\",sankeyLinks:\"sankey-links\",sankeyLink:\"sankey-link\",sankeyNodeSet:\"sankey-node-set\",sankeyNode:\"sankey-node\",nodeRect:\"node-rect\",nodeCapture:\"node-capture\",nodeCentered:\"node-entered\",nodeLabelGuide:\"node-label-guide\",nodeLabel:\"node-label\",nodeLabelTextPath:\"node-label-text-path\"}}},{}],1105:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./attributes\"),i=t(\"../../components/color\"),o=t(\"tinycolor2\"),s=t(\"../../plots/domain\").defaults,l=t(\"../../components/fx/hoverlabel_defaults\"),c=t(\"../../plot_api/plot_template\"),u=t(\"../../plots/array_container_defaults\");function h(t,e){function r(r,i){return n.coerce(t,e,a.link.colorscales,r,i)}r(\"label\"),r(\"cmin\"),r(\"cmax\"),r(\"colorscale\")}e.exports=function(t,e,r,f){function p(r,i){return n.coerce(t,e,a,r,i)}var d=n.extendDeep(f.hoverlabel,t.hoverlabel),g=t.node,v=c.newContainer(e,\"node\");function m(t,e){return n.coerce(g,v,a.node,t,e)}m(\"label\"),m(\"groups\"),m(\"x\"),m(\"y\"),m(\"pad\"),m(\"thickness\"),m(\"line.color\"),m(\"line.width\"),m(\"hoverinfo\",t.hoverinfo),l(g,v,m,d),m(\"hovertemplate\");var y=f.colorway;m(\"color\",v.label.map(function(t,e){return i.addOpacity(function(t){return y[t%y.length]}(e),.8)}));var x=t.link||{},b=c.newContainer(e,\"link\");function _(t,e){return n.coerce(x,b,a.link,t,e)}_(\"label\"),_(\"source\"),_(\"target\"),_(\"value\"),_(\"line.color\"),_(\"line.width\"),_(\"hoverinfo\",t.hoverinfo),l(x,b,_,d),_(\"hovertemplate\");var w,k=o(f.paper_bgcolor).getLuminance()<.333?\"rgba(255, 255, 255, 0.6)\":\"rgba(0, 0, 0, 0.2)\";_(\"color\",n.repeat(k,b.value.length)),u(x,b,{name:\"colorscales\",handleItemDefaults:h}),s(e,f,p),p(\"orientation\"),p(\"valueformat\"),p(\"valuesuffix\"),v.x.length&&v.y.length&&(w=\"freeform\"),p(\"arrangement\",w),n.coerceFont(p,\"textfont\",n.extendFlat({},f.font)),e._length=null}},{\"../../components/color\":594,\"../../components/fx/hoverlabel_defaults\":631,\"../../lib\":719,\"../../plot_api/plot_template\":757,\"../../plots/array_container_defaults\":763,\"../../plots/domain\":792,\"./attributes\":1101,tinycolor2:538}],1106:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),plot:t(\"./plot\"),moduleType:\"trace\",name:\"sankey\",basePlotModule:t(\"./base_plot\"),selectPoints:t(\"./select.js\"),categories:[\"noOpacity\"],meta:{}}},{\"./attributes\":1101,\"./base_plot\":1102,\"./calc\":1103,\"./defaults\":1105,\"./plot\":1107,\"./select.js\":1109}],1107:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"./render\"),i=t(\"../../components/fx\"),o=t(\"../../components/color\"),s=t(\"../../lib\"),l=t(\"./constants\").cn,c=s._;function u(t){return\"\"!==t}function h(t,e){return t.filter(function(t){return t.key===e.traceId})}function f(t,e){n.select(t).select(\"path\").style(\"fill-opacity\",e),n.select(t).select(\"rect\").style(\"fill-opacity\",e)}function p(t){n.select(t).select(\"text.name\").style(\"fill\",\"black\")}function d(t){return function(e){return-1!==t.node.sourceLinks.indexOf(e.link)||-1!==t.node.targetLinks.indexOf(e.link)}}function g(t){return function(e){return-1!==e.node.sourceLinks.indexOf(t.link)||-1!==e.node.targetLinks.indexOf(t.link)}}function v(t,e,r){e&&r&&h(r,e).selectAll(\".\"+l.sankeyLink).filter(d(e)).call(y.bind(0,e,r,!1))}function m(t,e,r){e&&r&&h(r,e).selectAll(\".\"+l.sankeyLink).filter(d(e)).call(x.bind(0,e,r,!1))}function y(t,e,r,n){var a=n.datum().link.label;n.style(\"fill-opacity\",function(t){if(!t.link.concentrationscale)return.4}),a&&h(e,t).selectAll(\".\"+l.sankeyLink).filter(function(t){return t.link.label===a}).style(\"fill-opacity\",function(t){if(!t.link.concentrationscale)return.4}),r&&h(e,t).selectAll(\".\"+l.sankeyNode).filter(g(t)).call(v)}function x(t,e,r,n){var a=n.datum().link.label;n.style(\"fill-opacity\",function(t){return t.tinyColorAlpha}),a&&h(e,t).selectAll(\".\"+l.sankeyLink).filter(function(t){return t.link.label===a}).style(\"fill-opacity\",function(t){return t.tinyColorAlpha}),r&&h(e,t).selectAll(l.sankeyNode).filter(g(t)).call(m)}function b(t,e){var r=t.hoverlabel||{},n=s.nestedProperty(r,e).get();return!Array.isArray(n)&&n}e.exports=function(t,e){for(var r=t._fullLayout,s=r._paper,h=r._size,d=0;d<t._fullData.length;d++)if(t._fullData[d].visible&&t._fullData[d].type===l.sankey&&!t._fullData[d]._viewInitial){var g=t._fullData[d].node;t._fullData[d]._viewInitial={node:{groups:g.groups.slice(),x:g.x.slice(),y:g.y.slice()}}}var _=c(t,\"source:\")+\" \",w=c(t,\"target:\")+\" \",k=c(t,\"concentration:\")+\" \",T=c(t,\"incoming flow count:\")+\" \",A=c(t,\"outgoing flow count:\")+\" \";a(t,s,e,{width:h.w,height:h.h,margin:{t:h.t,r:h.r,b:h.b,l:h.l}},{linkEvents:{hover:function(e,r,a){!1!==t._fullLayout.hovermode&&(n.select(e).call(y.bind(0,r,a,!0)),\"skip\"!==r.link.trace.link.hoverinfo&&(r.link.fullData=r.link.trace,t.emit(\"plotly_hover\",{event:n.event,points:[r.link]})))},follow:function(e,a){if(!1!==t._fullLayout.hovermode){var s=a.link.trace.link;if(\"none\"!==s.hoverinfo&&\"skip\"!==s.hoverinfo){for(var l=[],c=0,h=0;h<a.flow.links.length;h++){var d=a.flow.links[h];if(\"closest\"!==t._fullLayout.hovermode||a.link.pointNumber===d.pointNumber){a.link.pointNumber===d.pointNumber&&(c=h),d.fullData=d.trace,s=a.link.trace.link;var g=m(d),v={valueLabel:n.format(a.valueFormat)(d.value)+a.valueSuffix};l.push({x:g[0],y:g[1],name:v.valueLabel,text:[d.label||\"\",_+d.source.label,w+d.target.label,d.concentrationscale?k+n.format(\"%0.2f\")(d.flow.labelConcentration):\"\"].filter(u).join(\"<br>\"),color:b(s,\"bgcolor\")||o.addOpacity(d.color,1),borderColor:b(s,\"bordercolor\"),fontFamily:b(s,\"font.family\"),fontSize:b(s,\"font.size\"),fontColor:b(s,\"font.color\"),nameLength:b(s,\"namelength\"),textAlign:b(s,\"align\"),idealAlign:n.event.x<g[0]?\"right\":\"left\",hovertemplate:s.hovertemplate,hovertemplateLabels:v,eventData:[d]})}}i.loneHover(l,{container:r._hoverlayer.node(),outerContainer:r._paper.node(),gd:t,anchorIndex:c}).each(function(){a.link.concentrationscale||f(this,.65),p(this)})}}function m(t){var e,r;return t.circular?(e=(t.circularPathData.leftInnerExtent+t.circularPathData.rightInnerExtent)/2+a.parent.translateX,r=t.circularPathData.verticalFullExtent+a.parent.translateY):(e=(t.source.x1+t.target.x0)/2+a.parent.translateX,r=(t.y0+t.y1)/2+a.parent.translateY),[e,r]}},unhover:function(e,a,o){!1!==t._fullLayout.hovermode&&(n.select(e).call(x.bind(0,a,o,!0)),\"skip\"!==a.link.trace.link.hoverinfo&&(a.link.fullData=a.link.trace,t.emit(\"plotly_unhover\",{event:n.event,points:[a.link]})),i.loneUnhover(r._hoverlayer.node()))},select:function(e,r){var a=r.link;a.originalEvent=n.event,t._hoverdata=[a],i.click(t,{target:!0})}},nodeEvents:{hover:function(e,r,a){!1!==t._fullLayout.hovermode&&(n.select(e).call(v,r,a),\"skip\"!==r.node.trace.node.hoverinfo&&(r.node.fullData=r.node.trace,t.emit(\"plotly_hover\",{event:n.event,points:[r.node]})))},follow:function(e,a){if(!1!==t._fullLayout.hovermode){var o=a.node.trace.node;if(\"none\"!==o.hoverinfo&&\"skip\"!==o.hoverinfo){var s=n.select(e).select(\".\"+l.nodeRect),c=t._fullLayout._paperdiv.node().getBoundingClientRect(),h=s.node().getBoundingClientRect(),d=h.left-2-c.left,g=h.right+2-c.left,v=h.top+h.height/4-c.top,m={valueLabel:n.format(a.valueFormat)(a.node.value)+a.valueSuffix};a.node.fullData=a.node.trace;var y=i.loneHover({x0:d,x1:g,y:v,name:n.format(a.valueFormat)(a.node.value)+a.valueSuffix,text:[a.node.label,T+a.node.targetLinks.length,A+a.node.sourceLinks.length].filter(u).join(\"<br>\"),color:b(o,\"bgcolor\")||a.tinyColorHue,borderColor:b(o,\"bordercolor\"),fontFamily:b(o,\"font.family\"),fontSize:b(o,\"font.size\"),fontColor:b(o,\"font.color\"),nameLength:b(o,\"namelength\"),textAlign:b(o,\"align\"),idealAlign:\"left\",hovertemplate:o.hovertemplate,hovertemplateLabels:m,eventData:[a.node]},{container:r._hoverlayer.node(),outerContainer:r._paper.node(),gd:t});f(y,.85),p(y)}}},unhover:function(e,a,o){!1!==t._fullLayout.hovermode&&(n.select(e).call(m,a,o),\"skip\"!==a.node.trace.node.hoverinfo&&(a.node.fullData=a.node.trace,t.emit(\"plotly_unhover\",{event:n.event,points:[a.node]})),i.loneUnhover(r._hoverlayer.node()))},select:function(e,r,a){var o=r.node;o.originalEvent=n.event,t._hoverdata=[o],n.select(e).call(m,r,a),i.click(t,{target:!0})}}})}},{\"../../components/color\":594,\"../../components/fx\":632,\"../../lib\":719,\"./constants\":1104,\"./render\":1108,d3:164}],1108:[function(t,e,r){\"use strict\";var n=t(\"./constants\"),a=t(\"d3\"),i=t(\"tinycolor2\"),o=t(\"../../components/color\"),s=t(\"../../components/drawing\"),l=t(\"@plotly/d3-sankey\"),c=t(\"@plotly/d3-sankey-circular\"),u=t(\"d3-force\"),h=t(\"../../lib\"),f=t(\"../../lib/gup\"),p=f.keyFun,d=f.repeat,g=f.unwrap,v=t(\"d3-interpolate\").interpolateNumber,m=t(\"../../registry\");function y(){var t=.5;return function(e){if(e.link.circular)return r=e.link,n=r.width/2,a=r.circularPathData,\"top\"===r.circularLinkType?\"M \"+a.targetX+\" \"+(a.targetY+n)+\" L\"+a.rightInnerExtent+\" \"+(a.targetY+n)+\"A\"+(a.rightLargeArcRadius+n)+\" \"+(a.rightSmallArcRadius+n)+\" 0 0 1 \"+(a.rightFullExtent-n)+\" \"+(a.targetY-a.rightSmallArcRadius)+\"L\"+(a.rightFullExtent-n)+\" \"+a.verticalRightInnerExtent+\"A\"+(a.rightLargeArcRadius+n)+\" \"+(a.rightLargeArcRadius+n)+\" 0 0 1 \"+a.rightInnerExtent+\" \"+(a.verticalFullExtent-n)+\"L\"+a.leftInnerExtent+\" \"+(a.verticalFullExtent-n)+\"A\"+(a.leftLargeArcRadius+n)+\" \"+(a.leftLargeArcRadius+n)+\" 0 0 1 \"+(a.leftFullExtent+n)+\" \"+a.verticalLeftInnerExtent+\"L\"+(a.leftFullExtent+n)+\" \"+(a.sourceY-a.leftSmallArcRadius)+\"A\"+(a.leftLargeArcRadius+n)+\" \"+(a.leftSmallArcRadius+n)+\" 0 0 1 \"+a.leftInnerExtent+\" \"+(a.sourceY+n)+\"L\"+a.sourceX+\" \"+(a.sourceY+n)+\"L\"+a.sourceX+\" \"+(a.sourceY-n)+\"L\"+a.leftInnerExtent+\" \"+(a.sourceY-n)+\"A\"+(a.leftLargeArcRadius-n)+\" \"+(a.leftSmallArcRadius-n)+\" 0 0 0 \"+(a.leftFullExtent-n)+\" \"+(a.sourceY-a.leftSmallArcRadius)+\"L\"+(a.leftFullExtent-n)+\" \"+a.verticalLeftInnerExtent+\"A\"+(a.leftLargeArcRadius-n)+\" \"+(a.leftLargeArcRadius-n)+\" 0 0 0 \"+a.leftInnerExtent+\" \"+(a.verticalFullExtent+n)+\"L\"+a.rightInnerExtent+\" \"+(a.verticalFullExtent+n)+\"A\"+(a.rightLargeArcRadius-n)+\" \"+(a.rightLargeArcRadius-n)+\" 0 0 0 \"+(a.rightFullExtent+n)+\" \"+a.verticalRightInnerExtent+\"L\"+(a.rightFullExtent+n)+\" \"+(a.targetY-a.rightSmallArcRadius)+\"A\"+(a.rightLargeArcRadius-n)+\" \"+(a.rightSmallArcRadius-n)+\" 0 0 0 \"+a.rightInnerExtent+\" \"+(a.targetY-n)+\"L\"+a.targetX+\" \"+(a.targetY-n)+\"Z\":\"M \"+a.targetX+\" \"+(a.targetY-n)+\" L\"+a.rightInnerExtent+\" \"+(a.targetY-n)+\"A\"+(a.rightLargeArcRadius+n)+\" \"+(a.rightSmallArcRadius+n)+\" 0 0 0 \"+(a.rightFullExtent-n)+\" \"+(a.targetY+a.rightSmallArcRadius)+\"L\"+(a.rightFullExtent-n)+\" \"+a.verticalRightInnerExtent+\"A\"+(a.rightLargeArcRadius+n)+\" \"+(a.rightLargeArcRadius+n)+\" 0 0 0 \"+a.rightInnerExtent+\" \"+(a.verticalFullExtent+n)+\"L\"+a.leftInnerExtent+\" \"+(a.verticalFullExtent+n)+\"A\"+(a.leftLargeArcRadius+n)+\" \"+(a.leftLargeArcRadius+n)+\" 0 0 0 \"+(a.leftFullExtent+n)+\" \"+a.verticalLeftInnerExtent+\"L\"+(a.leftFullExtent+n)+\" \"+(a.sourceY+a.leftSmallArcRadius)+\"A\"+(a.leftLargeArcRadius+n)+\" \"+(a.leftSmallArcRadius+n)+\" 0 0 0 \"+a.leftInnerExtent+\" \"+(a.sourceY-n)+\"L\"+a.sourceX+\" \"+(a.sourceY-n)+\"L\"+a.sourceX+\" \"+(a.sourceY+n)+\"L\"+a.leftInnerExtent+\" \"+(a.sourceY+n)+\"A\"+(a.leftLargeArcRadius-n)+\" \"+(a.leftSmallArcRadius-n)+\" 0 0 1 \"+(a.leftFullExtent-n)+\" \"+(a.sourceY+a.leftSmallArcRadius)+\"L\"+(a.leftFullExtent-n)+\" \"+a.verticalLeftInnerExtent+\"A\"+(a.leftLargeArcRadius-n)+\" \"+(a.leftLargeArcRadius-n)+\" 0 0 1 \"+a.leftInnerExtent+\" \"+(a.verticalFullExtent-n)+\"L\"+a.rightInnerExtent+\" \"+(a.verticalFullExtent-n)+\"A\"+(a.rightLargeArcRadius-n)+\" \"+(a.rightLargeArcRadius-n)+\" 0 0 1 \"+(a.rightFullExtent+n)+\" \"+a.verticalRightInnerExtent+\"L\"+(a.rightFullExtent+n)+\" \"+(a.targetY+a.rightSmallArcRadius)+\"A\"+(a.rightLargeArcRadius-n)+\" \"+(a.rightSmallArcRadius-n)+\" 0 0 1 \"+a.rightInnerExtent+\" \"+(a.targetY+n)+\"L\"+a.targetX+\" \"+(a.targetY+n)+\"Z\";var r,n,a,i=e.link.source.x1,o=e.link.target.x0,s=v(i,o),l=s(t),c=s(1-t),u=e.link.y0-e.link.width/2,h=e.link.y0+e.link.width/2,f=e.link.y1-e.link.width/2,p=e.link.y1+e.link.width/2;return\"M\"+i+\",\"+u+\"C\"+l+\",\"+u+\" \"+c+\",\"+f+\" \"+o+\",\"+f+\"L\"+o+\",\"+p+\"C\"+c+\",\"+p+\" \"+l+\",\"+h+\" \"+i+\",\"+h+\"Z\"}}function x(t){t.attr(\"transform\",function(t){return\"translate(\"+t.node.x0.toFixed(3)+\", \"+t.node.y0.toFixed(3)+\")\"})}function b(t){t.call(x)}function _(t,e){t.call(b),e.attr(\"d\",y())}function w(t){t.attr(\"width\",function(t){return t.node.x1-t.node.x0}).attr(\"height\",function(t){return t.visibleHeight})}function k(t){return t.link.width>1||t.linkLineWidth>0}function T(t){return\"translate(\"+t.translateX+\",\"+t.translateY+\")\"+(t.horizontal?\"matrix(1 0 0 1 0 0)\":\"matrix(0 1 1 0 0 0)\")}function A(t){return\"translate(\"+(t.horizontal?0:t.labelY)+\" \"+(t.horizontal?t.labelY:0)+\")\"}function M(t){return a.svg.line()([[t.horizontal?t.left?-t.sizeAcross:t.visibleWidth+n.nodeTextOffsetHorizontal:n.nodeTextOffsetHorizontal,0],[t.horizontal?t.left?-n.nodeTextOffsetHorizontal:t.sizeAcross:t.visibleHeight-n.nodeTextOffsetHorizontal,0]])}function S(t){return t.horizontal?\"matrix(1 0 0 1 0 0)\":\"matrix(0 1 1 0 0 0)\"}function E(t){return t.horizontal?\"scale(1 1)\":\"scale(-1 1)\"}function C(t){return t.darkBackground&&!t.horizontal?\"rgb(255,255,255)\":\"rgb(0,0,0)\"}function L(t){return t.horizontal&&t.left?\"100%\":\"0%\"}function P(t,e,r){t.on(\".basic\",null).on(\"mouseover.basic\",function(t){t.interactionState.dragInProgress||t.partOfGroup||(r.hover(this,t,e),t.interactionState.hovered=[this,t])}).on(\"mousemove.basic\",function(t){t.interactionState.dragInProgress||t.partOfGroup||(r.follow(this,t),t.interactionState.hovered=[this,t])}).on(\"mouseout.basic\",function(t){t.interactionState.dragInProgress||t.partOfGroup||(r.unhover(this,t,e),t.interactionState.hovered=!1)}).on(\"click.basic\",function(t){t.interactionState.hovered&&(r.unhover(this,t,e),t.interactionState.hovered=!1),t.interactionState.dragInProgress||t.partOfGroup||r.select(this,t,e)})}function O(t,e,r,i){var o=a.behavior.drag().origin(function(t){return{x:t.node.x0+t.visibleWidth/2,y:t.node.y0+t.visibleHeight/2}}).on(\"dragstart\",function(a){if(\"fixed\"!==a.arrangement&&(h.ensureSingle(i._fullLayout._infolayer,\"g\",\"dragcover\",function(t){i._fullLayout._dragCover=t}),h.raiseToTop(this),a.interactionState.dragInProgress=a.node,z(a.node),a.interactionState.hovered&&(r.nodeEvents.unhover.apply(0,a.interactionState.hovered),a.interactionState.hovered=!1),\"snap\"===a.arrangement)){var o=a.traceId+\"|\"+a.key;a.forceLayouts[o]?a.forceLayouts[o].alpha(1):function(t,e,r,a){!function(t){for(var e=0;e<t.length;e++)t[e].y=(t[e].y0+t[e].y1)/2,t[e].x=(t[e].x0+t[e].x1)/2}(r.graph.nodes);var i=r.graph.nodes.filter(function(t){return t.originalX===r.node.originalX}).filter(function(t){return!t.partOfGroup});r.forceLayouts[e]=u.forceSimulation(i).alphaDecay(0).force(\"collide\",u.forceCollide().radius(function(t){return t.dy/2+r.nodePad/2}).strength(1).iterations(n.forceIterations)).force(\"constrain\",function(t,e,r,a){return function(){for(var t=0,i=0;i<r.length;i++){var o=r[i];o===a.interactionState.dragInProgress?(o.x=o.lastDraggedX,o.y=o.lastDraggedY):(o.vx=(o.originalX-o.x)/n.forceTicksPerFrame,o.y=Math.min(a.size-o.dy/2,Math.max(o.dy/2,o.y))),t=Math.max(t,Math.abs(o.vx),Math.abs(o.vy))}!a.interactionState.dragInProgress&&t<.1&&a.forceLayouts[e].alpha()>0&&a.forceLayouts[e].alpha(0)}}(0,e,i,r)).stop()}(0,o,a),function(t,e,r,a,i){window.requestAnimationFrame(function o(){var s;for(s=0;s<n.forceTicksPerFrame;s++)r.forceLayouts[a].tick();var l=r.graph.nodes;if(function(t){for(var e=0;e<t.length;e++)t[e].y0=t[e].y-t[e].dy/2,t[e].y1=t[e].y0+t[e].dy,t[e].x0=t[e].x-t[e].dx/2,t[e].x1=t[e].x0+t[e].dx}(l),r.sankey.update(r.graph),_(t.filter(D(r)),e),r.forceLayouts[a].alpha()>0)window.requestAnimationFrame(o);else{var c=r.node.originalX;r.node.x0=c-r.visibleWidth/2,r.node.x1=c+r.visibleWidth/2,I(r,i)}})}(t,e,a,o,i)}}).on(\"drag\",function(r){if(\"fixed\"!==r.arrangement){var n=a.event.x,i=a.event.y;\"snap\"===r.arrangement?(r.node.x0=n-r.visibleWidth/2,r.node.x1=n+r.visibleWidth/2,r.node.y0=i-r.visibleHeight/2,r.node.y1=i+r.visibleHeight/2):(\"freeform\"===r.arrangement&&(r.node.x0=n-r.visibleWidth/2,r.node.x1=n+r.visibleWidth/2),i=Math.max(0,Math.min(r.size-r.visibleHeight/2,i)),r.node.y0=i-r.visibleHeight/2,r.node.y1=i+r.visibleHeight/2),z(r.node),\"snap\"!==r.arrangement&&(r.sankey.update(r.graph),_(t.filter(D(r)),e))}}).on(\"dragend\",function(t){if(\"fixed\"!==t.arrangement){t.interactionState.dragInProgress=!1;for(var e=0;e<t.node.childrenNodes.length;e++)t.node.childrenNodes[e].x=t.node.x,t.node.childrenNodes[e].y=t.node.y;\"snap\"!==t.arrangement&&I(t,i)}});t.on(\".drag\",null).call(o)}function I(t,e){for(var r=[],n=[],a=0;a<t.graph.nodes.length;a++){var i=(t.graph.nodes[a].x0+t.graph.nodes[a].x1)/2,o=(t.graph.nodes[a].y0+t.graph.nodes[a].y1)/2;r.push(i/t.figure.width),n.push(o/t.figure.height)}m.call(\"_guiRestyle\",e,{\"node.x\":[r],\"node.y\":[n]},t.trace.index).then(function(){e._fullLayout._dragCover&&e._fullLayout._dragCover.remove()})}function z(t){t.lastDraggedX=t.x0+t.dx/2,t.lastDraggedY=t.y0+t.dy/2}function D(t){return function(e){return e.node.originalX===t.node.originalX}}e.exports=function(t,e,r,u,f){var v=!1;h.ensureSingle(t._fullLayout._infolayer,\"g\",\"first-render\",function(){v=!0});var m=t._fullLayout._dragCover,b=r.filter(function(t){return g(t).trace.visible}).map(function(t,e,r){var a,o=g(e),s=o.trace,u=s.domain,f=\"h\"===s.orientation,p=s.node.pad,d=s.node.thickness,v=t.width*(u.x[1]-u.x[0]),m=t.height*(u.y[1]-u.y[0]),y=o._nodes,x=o._links,b=o.circular;(a=b?c.sankeyCircular().circularLinkGap(0):l.sankey()).iterations(n.sankeyIterations).size(f?[v,m]:[m,v]).nodeWidth(d).nodePadding(p).nodeId(function(t){return t.pointNumber}).nodes(y).links(x);var _,w,k,T=a();for(var A in a.nodePadding()<p&&h.warn(\"node.pad was reduced to \",a.nodePadding(),\" to fit within the figure.\"),o._groupLookup){var M,S=parseInt(o._groupLookup[A]);for(_=0;_<T.nodes.length;_++)if(T.nodes[_].pointNumber===S){M=T.nodes[_];break}if(M){var E={pointNumber:parseInt(A),x0:M.x0,x1:M.x1,y0:M.y0,y1:M.y1,partOfGroup:!0,sourceLinks:[],targetLinks:[]};T.nodes.unshift(E),M.childrenNodes.unshift(E)}}if(function(){for(_=0;_<T.nodes.length;_++){var t,e,r=T.nodes[_],n={};for(w=0;w<r.targetLinks.length;w++)t=(e=r.targetLinks[w]).source.pointNumber+\":\"+e.target.pointNumber,n.hasOwnProperty(t)||(n[t]=[]),n[t].push(e);var a=Object.keys(n);for(w=0;w<a.length;w++){var o=n[t=a[w]],s=0,l={};for(k=0;k<o.length;k++)l[(e=o[k]).label]||(l[e.label]=0),l[e.label]+=e.value,s+=e.value;for(k=0;k<o.length;k++)(e=o[k]).flow={value:s,labelConcentration:l[e.label]/s,concentration:e.value/s,links:o},e.concentrationscale&&(e.color=i(e.concentrationscale(e.flow.labelConcentration)))}var c=0;for(w=0;w<r.sourceLinks.length;w++)c+=r.sourceLinks[w].value;for(w=0;w<r.sourceLinks.length;w++)(e=r.sourceLinks[w]).concentrationOut=e.value/c;var u=0;for(w=0;w<r.targetLinks.length;w++)u+=r.targetLinks[w].value;for(w=0;w<r.targetLinks.length;w++)(e=r.targetLinks[w]).concenrationIn=e.value/u}}(),s.node.x.length&&s.node.y.length){for(_=0;_<Math.min(s.node.x.length,s.node.y.length,T.nodes.length);_++)if(s.node.x[_]&&s.node.y[_]){var C=[s.node.x[_]*v,s.node.y[_]*m];T.nodes[_].x0=C[0]-d/2,T.nodes[_].x1=C[0]+d/2;var L=T.nodes[_].y1-T.nodes[_].y0;T.nodes[_].y0=C[1]-L/2,T.nodes[_].y1=C[1]+L/2}\"snap\"===s.arrangement&&function(t){t.forEach(function(t){var e,r,n,a=0,i=t.length;for(t.sort(function(t,e){return t.y0-e.y0}),n=0;n<i;++n)(e=t[n]).y0>=a||(r=a-e.y0)>1e-6&&(e.y0+=r,e.y1+=r),a=e.y1+p})}(function(t){var e,r,n=t.map(function(t,e){return{x0:t.x0,index:e}}).sort(function(t,e){return t.x0-e.x0}),a=[],i=-1,o=-1/0;for(_=0;_<n.length;_++){var s=t[n[_].index];s.x0>o+d&&(i+=1,e=s.x0),o=s.x0,a[i]||(a[i]=[]),a[i].push(s),r=e-s.x0,s.x0+=r,s.x1+=r}return a}(y=T.nodes)),a.update(T)}return{circular:b,key:r,trace:s,guid:h.randstr(),horizontal:f,width:v,height:m,nodePad:s.node.pad,nodeLineColor:s.node.line.color,nodeLineWidth:s.node.line.width,linkLineColor:s.link.line.color,linkLineWidth:s.link.line.width,valueFormat:s.valueformat,valueSuffix:s.valuesuffix,textFont:s.textfont,translateX:u.x[0]*t.width+t.margin.l,translateY:t.height-u.y[1]*t.height+t.margin.t,dragParallel:f?m:v,dragPerpendicular:f?v:m,arrangement:s.arrangement,sankey:a,graph:T,forceLayouts:{},interactionState:{dragInProgress:!1,hovered:!1}}}.bind(null,u)),_=e.selectAll(\".\"+n.cn.sankey).data(b,p);_.exit().remove(),_.enter().append(\"g\").classed(n.cn.sankey,!0).style(\"box-sizing\",\"content-box\").style(\"position\",\"absolute\").style(\"left\",0).style(\"shape-rendering\",\"geometricPrecision\").style(\"pointer-events\",\"auto\").attr(\"transform\",T),_.each(function(e,r){t._fullData[r]._sankey=e;var n=\"bgsankey-\"+e.trace.uid+\"-\"+r;h.ensureSingle(t._fullLayout._draggers,\"rect\",n),t._fullData[r]._bgRect=a.select(\".\"+n),t._fullData[r]._bgRect.style(\"pointer-events\",\"all\").attr(\"width\",e.width).attr(\"height\",e.height).attr(\"x\",e.translateX).attr(\"y\",e.translateY).classed(\"bgsankey\",!0).style({fill:\"transparent\",\"stroke-width\":0})}),_.transition().ease(n.ease).duration(n.duration).attr(\"transform\",T);var I=_.selectAll(\".\"+n.cn.sankeyLinks).data(d,p);I.enter().append(\"g\").classed(n.cn.sankeyLinks,!0).style(\"fill\",\"none\");var z=I.selectAll(\".\"+n.cn.sankeyLink).data(function(t){return t.graph.links.filter(function(t){return t.value}).map(function(t,e,r){var n=i(e.color),a=e.source.label+\"|\"+e.target.label+\"__\"+r;return e.trace=t.trace,e.curveNumber=t.trace.index,{circular:t.circular,key:a,traceId:t.key,pointNumber:e.pointNumber,link:e,tinyColorHue:o.tinyRGB(n),tinyColorAlpha:n.getAlpha(),linkPath:y,linkLineColor:t.linkLineColor,linkLineWidth:t.linkLineWidth,valueFormat:t.valueFormat,valueSuffix:t.valueSuffix,sankey:t.sankey,parent:t,interactionState:t.interactionState,flow:e.flow}}.bind(null,t))},p);z.enter().append(\"path\").classed(n.cn.sankeyLink,!0).call(P,_,f.linkEvents),z.style(\"stroke\",function(t){return k(t)?o.tinyRGB(i(t.linkLineColor)):t.tinyColorHue}).style(\"stroke-opacity\",function(t){return k(t)?o.opacity(t.linkLineColor):t.tinyColorAlpha}).style(\"fill\",function(t){return t.tinyColorHue}).style(\"fill-opacity\",function(t){return t.tinyColorAlpha}).style(\"stroke-width\",function(t){return k(t)?t.linkLineWidth:1}).attr(\"d\",y()),z.style(\"opacity\",function(){return t._context.staticPlot||v||m?1:0}).transition().ease(n.ease).duration(n.duration).style(\"opacity\",1),z.exit().transition().ease(n.ease).duration(n.duration).style(\"opacity\",0).remove();var D=_.selectAll(\".\"+n.cn.sankeyNodeSet).data(d,p);D.enter().append(\"g\").classed(n.cn.sankeyNodeSet,!0),D.style(\"cursor\",function(t){switch(t.arrangement){case\"fixed\":return\"default\";case\"perpendicular\":return\"ns-resize\";default:return\"move\"}});var R=D.selectAll(\".\"+n.cn.sankeyNode).data(function(t){var e=t.graph.nodes;return function(t){var e,r=[];for(e=0;e<t.length;e++)t[e].originalX=(t[e].x0+t[e].x1)/2,t[e].originalY=(t[e].y0+t[e].y1)/2,-1===r.indexOf(t[e].originalX)&&r.push(t[e].originalX);for(r.sort(function(t,e){return t-e}),e=0;e<t.length;e++)t[e].originalLayerIndex=r.indexOf(t[e].originalX),t[e].originalLayer=t[e].originalLayerIndex/(r.length-1)}(e),e.map(function(t,e){var r=i(e.color),a=n.nodePadAcross,s=t.nodePad/2;e.dx=e.x1-e.x0,e.dy=e.y1-e.y0;var l=e.dx,c=Math.max(.5,e.dy),u=\"node_\"+e.pointNumber;return e.group&&(u=h.randstr()),e.trace=t.trace,e.curveNumber=t.trace.index,{index:e.pointNumber,key:u,partOfGroup:e.partOfGroup||!1,group:e.group,traceId:t.key,trace:t.trace,node:e,nodePad:t.nodePad,nodeLineColor:t.nodeLineColor,nodeLineWidth:t.nodeLineWidth,textFont:t.textFont,size:t.horizontal?t.height:t.width,visibleWidth:Math.ceil(l),visibleHeight:c,zoneX:-a,zoneY:-s,zoneWidth:l+2*a,zoneHeight:c+2*s,labelY:t.horizontal?e.dy/2+1:e.dx/2+1,left:1===e.originalLayer,sizeAcross:t.width,forceLayouts:t.forceLayouts,horizontal:t.horizontal,darkBackground:r.getBrightness()<=128,tinyColorHue:o.tinyRGB(r),tinyColorAlpha:r.getAlpha(),valueFormat:t.valueFormat,valueSuffix:t.valueSuffix,sankey:t.sankey,graph:t.graph,arrangement:t.arrangement,uniqueNodeLabelPathId:[t.guid,t.key,u].join(\"_\"),interactionState:t.interactionState,figure:t}}.bind(null,t))},p);R.enter().append(\"g\").classed(n.cn.sankeyNode,!0).call(x).style(\"opacity\",function(e){return!t._context.staticPlot&&!v||e.partOfGroup?0:1}),R.call(P,_,f.nodeEvents).call(O,z,f,t),R.transition().ease(n.ease).duration(n.duration).call(x).style(\"opacity\",function(t){return t.partOfGroup?0:1}),R.exit().transition().ease(n.ease).duration(n.duration).style(\"opacity\",0).remove();var F=R.selectAll(\".\"+n.cn.nodeRect).data(d);F.enter().append(\"rect\").classed(n.cn.nodeRect,!0).call(w),F.style(\"stroke-width\",function(t){return t.nodeLineWidth}).style(\"stroke\",function(t){return o.tinyRGB(i(t.nodeLineColor))}).style(\"stroke-opacity\",function(t){return o.opacity(t.nodeLineColor)}).style(\"fill\",function(t){return t.tinyColorHue}).style(\"fill-opacity\",function(t){return t.tinyColorAlpha}),F.transition().ease(n.ease).duration(n.duration).call(w);var B=R.selectAll(\".\"+n.cn.nodeCapture).data(d);B.enter().append(\"rect\").classed(n.cn.nodeCapture,!0).style(\"fill-opacity\",0),B.attr(\"x\",function(t){return t.zoneX}).attr(\"y\",function(t){return t.zoneY}).attr(\"width\",function(t){return t.zoneWidth}).attr(\"height\",function(t){return t.zoneHeight});var N=R.selectAll(\".\"+n.cn.nodeCentered).data(d);N.enter().append(\"g\").classed(n.cn.nodeCentered,!0).attr(\"transform\",A),N.transition().ease(n.ease).duration(n.duration).attr(\"transform\",A);var j=N.selectAll(\".\"+n.cn.nodeLabelGuide).data(d);j.enter().append(\"path\").classed(n.cn.nodeLabelGuide,!0).attr(\"id\",function(t){return t.uniqueNodeLabelPathId}).attr(\"d\",M).attr(\"transform\",S),j.transition().ease(n.ease).duration(n.duration).attr(\"d\",M).attr(\"transform\",S);var V=N.selectAll(\".\"+n.cn.nodeLabel).data(d);V.enter().append(\"text\").classed(n.cn.nodeLabel,!0).attr(\"transform\",E).style(\"user-select\",\"none\").style(\"cursor\",\"default\").style(\"fill\",\"black\"),V.style(\"text-shadow\",function(t){return t.horizontal?\"-1px 1px 1px #fff, 1px 1px 1px #fff, 1px -1px 1px #fff, -1px -1px 1px #fff\":\"none\"}).each(function(t){s.font(V,t.textFont)}),V.transition().ease(n.ease).duration(n.duration).attr(\"transform\",E);var U=V.selectAll(\".\"+n.cn.nodeLabelTextPath).data(d);U.enter().append(\"textPath\").classed(n.cn.nodeLabelTextPath,!0).attr(\"alignment-baseline\",\"middle\").attr(\"xlink:href\",function(t){return\"#\"+t.uniqueNodeLabelPathId}).attr(\"startOffset\",L).style(\"fill\",C),U.text(function(t){return t.horizontal||t.node.dy>5?t.node.label:\"\"}).attr(\"text-anchor\",function(t){return t.horizontal&&t.left?\"end\":\"start\"}),U.transition().ease(n.ease).duration(n.duration).attr(\"startOffset\",L).style(\"fill\",C)}},{\"../../components/color\":594,\"../../components/drawing\":615,\"../../lib\":719,\"../../lib/gup\":717,\"../../registry\":848,\"./constants\":1104,\"@plotly/d3-sankey\":55,\"@plotly/d3-sankey-circular\":54,d3:164,\"d3-force\":157,\"d3-interpolate\":159,tinycolor2:538}],1109:[function(t,e,r){\"use strict\";e.exports=function(t,e){for(var r=[],n=t.cd[0].trace,a=n._sankey.graph.nodes,i=0;i<a.length;i++){var o=a[i];if(!o.partOfGroup){var s=[(o.x0+o.x1)/2,(o.y0+o.y1)/2];\"v\"===n.orientation&&s.reverse(),e&&e.contains(s,!1,i,t)&&r.push({pointNumber:o.pointNumber})}}return r}},{}],1110:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e){for(var r=0;r<t.length;r++)t[r].i=r;n.mergeArray(e.text,t,\"tx\"),n.mergeArray(e.texttemplate,t,\"txt\"),n.mergeArray(e.hovertext,t,\"htx\"),n.mergeArray(e.customdata,t,\"data\"),n.mergeArray(e.textposition,t,\"tp\"),e.textfont&&(n.mergeArrayCastPositive(e.textfont.size,t,\"ts\"),n.mergeArray(e.textfont.color,t,\"tc\"),n.mergeArray(e.textfont.family,t,\"tf\"));var a=e.marker;if(a){n.mergeArrayCastPositive(a.size,t,\"ms\"),n.mergeArrayCastPositive(a.opacity,t,\"mo\"),n.mergeArray(a.symbol,t,\"mx\"),n.mergeArray(a.color,t,\"mc\");var i=a.line;a.line&&(n.mergeArray(i.color,t,\"mlc\"),n.mergeArrayCastPositive(i.width,t,\"mlw\"));var o=a.gradient;o&&\"none\"!==o.type&&(n.mergeArray(o.type,t,\"mgt\"),n.mergeArray(o.color,t,\"mgc\"))}}},{\"../../lib\":719}],1111:[function(t,e,r){\"use strict\";var n=t(\"../../plots/template_attributes\").texttemplateAttrs,a=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"../../components/colorscale/attributes\"),o=t(\"../../plots/font_attributes\"),s=t(\"../../components/drawing/attributes\").dash,l=t(\"../../components/drawing\"),c=t(\"./constants\"),u=t(\"../../lib/extend\").extendFlat;e.exports={x:{valType:\"data_array\",editType:\"calc+clearAxisTypes\",anim:!0},x0:{valType:\"any\",dflt:0,editType:\"calc+clearAxisTypes\",anim:!0},dx:{valType:\"number\",dflt:1,editType:\"calc\",anim:!0},y:{valType:\"data_array\",editType:\"calc+clearAxisTypes\",anim:!0},y0:{valType:\"any\",dflt:0,editType:\"calc+clearAxisTypes\",anim:!0},dy:{valType:\"number\",dflt:1,editType:\"calc\",anim:!0},stackgroup:{valType:\"string\",dflt:\"\",editType:\"calc\"},orientation:{valType:\"enumerated\",values:[\"v\",\"h\"],editType:\"calc\"},groupnorm:{valType:\"enumerated\",values:[\"\",\"fraction\",\"percent\"],dflt:\"\",editType:\"calc\"},stackgaps:{valType:\"enumerated\",values:[\"infer zero\",\"interpolate\"],dflt:\"infer zero\",editType:\"calc\"},text:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"calc\"},texttemplate:n({},{}),hovertext:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"style\"},mode:{valType:\"flaglist\",flags:[\"lines\",\"markers\",\"text\"],extras:[\"none\"],editType:\"calc\"},hoveron:{valType:\"flaglist\",flags:[\"points\",\"fills\"],editType:\"style\"},hovertemplate:a({},{keys:c.eventDataKeys}),line:{color:{valType:\"color\",editType:\"style\",anim:!0},width:{valType:\"number\",min:0,dflt:2,editType:\"style\",anim:!0},shape:{valType:\"enumerated\",values:[\"linear\",\"spline\",\"hv\",\"vh\",\"hvh\",\"vhv\"],dflt:\"linear\",editType:\"plot\"},smoothing:{valType:\"number\",min:0,max:1.3,dflt:1,editType:\"plot\"},dash:u({},s,{editType:\"style\"}),simplify:{valType:\"boolean\",dflt:!0,editType:\"plot\"},editType:\"plot\"},connectgaps:{valType:\"boolean\",dflt:!1,editType:\"calc\"},cliponaxis:{valType:\"boolean\",dflt:!0,editType:\"plot\"},fill:{valType:\"enumerated\",values:[\"none\",\"tozeroy\",\"tozerox\",\"tonexty\",\"tonextx\",\"toself\",\"tonext\"],editType:\"calc\"},fillcolor:{valType:\"color\",editType:\"style\",anim:!0},marker:u({symbol:{valType:\"enumerated\",values:l.symbolList,dflt:\"circle\",arrayOk:!0,editType:\"style\"},opacity:{valType:\"number\",min:0,max:1,arrayOk:!0,editType:\"style\",anim:!0},size:{valType:\"number\",min:0,dflt:6,arrayOk:!0,editType:\"calc\",anim:!0},maxdisplayed:{valType:\"number\",min:0,dflt:0,editType:\"plot\"},sizeref:{valType:\"number\",dflt:1,editType:\"calc\"},sizemin:{valType:\"number\",min:0,dflt:0,editType:\"calc\"},sizemode:{valType:\"enumerated\",values:[\"diameter\",\"area\"],dflt:\"diameter\",editType:\"calc\"},line:u({width:{valType:\"number\",min:0,arrayOk:!0,editType:\"style\",anim:!0},editType:\"calc\"},i(\"marker.line\",{anim:!0})),gradient:{type:{valType:\"enumerated\",values:[\"radial\",\"horizontal\",\"vertical\",\"none\"],arrayOk:!0,dflt:\"none\",editType:\"calc\"},color:{valType:\"color\",arrayOk:!0,editType:\"calc\"},editType:\"calc\"},editType:\"calc\"},i(\"marker\",{anim:!0})),selected:{marker:{opacity:{valType:\"number\",min:0,max:1,editType:\"style\"},color:{valType:\"color\",editType:\"style\"},size:{valType:\"number\",min:0,editType:\"style\"},editType:\"style\"},textfont:{color:{valType:\"color\",editType:\"style\"},editType:\"style\"},editType:\"style\"},unselected:{marker:{opacity:{valType:\"number\",min:0,max:1,editType:\"style\"},color:{valType:\"color\",editType:\"style\"},size:{valType:\"number\",min:0,editType:\"style\"},editType:\"style\"},textfont:{color:{valType:\"color\",editType:\"style\"},editType:\"style\"},editType:\"style\"},textposition:{valType:\"enumerated\",values:[\"top left\",\"top center\",\"top right\",\"middle left\",\"middle center\",\"middle right\",\"bottom left\",\"bottom center\",\"bottom right\"],dflt:\"middle center\",arrayOk:!0,editType:\"calc\"},textfont:o({editType:\"calc\",colorEditType:\"style\",arrayOk:!0}),r:{valType:\"data_array\",editType:\"calc\"},t:{valType:\"data_array\",editType:\"calc\"}}},{\"../../components/colorscale/attributes\":601,\"../../components/drawing\":615,\"../../components/drawing/attributes\":614,\"../../lib/extend\":710,\"../../plots/font_attributes\":793,\"../../plots/template_attributes\":843,\"./constants\":1115}],1112:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\"),i=t(\"../../plots/cartesian/axes\"),o=t(\"../../constants/numerical\").BADNUM,s=t(\"./subtypes\"),l=t(\"./colorscale_calc\"),c=t(\"./arrays_to_calcdata\"),u=t(\"./calc_selection\");function h(t,e,r,n,a,o,l){var c=e._length,u=t._fullLayout,h=r._id,f=n._id,p=u._firstScatter[d(e)]===e.uid,v=(g(e,u,r,n)||{}).orientation,m=e.fill;r._minDtick=0,n._minDtick=0;var y={padded:!0},x={padded:!0};l&&(y.ppad=x.ppad=l);var b=c<2||a[0]!==a[c-1]||o[0]!==o[c-1];b&&(\"tozerox\"===m||\"tonextx\"===m&&(p||\"h\"===v))?y.tozero=!0:(e.error_y||{}).visible||\"tonexty\"!==m&&\"tozeroy\"!==m&&(s.hasMarkers(e)||s.hasText(e))||(y.padded=!1,y.ppad=0),b&&(\"tozeroy\"===m||\"tonexty\"===m&&(p||\"v\"===v))?x.tozero=!0:\"tonextx\"!==m&&\"tozerox\"!==m||(x.padded=!1),h&&(e._extremes[h]=i.findExtremes(r,a,y)),f&&(e._extremes[f]=i.findExtremes(n,o,x))}function f(t,e){if(s.hasMarkers(t)){var r,n=t.marker,o=1.6*(t.marker.sizeref||1);if(r=\"area\"===t.marker.sizemode?function(t){return Math.max(Math.sqrt((t||0)/o),3)}:function(t){return Math.max((t||0)/o,3)},a.isArrayOrTypedArray(n.size)){var l={type:\"linear\"};i.setConvert(l);for(var c=l.makeCalcdata(t.marker,\"size\"),u=new Array(e),h=0;h<e;h++)u[h]=r(c[h]);return u}return r(n.size)}}function p(t,e){var r=d(e),n=t._firstScatter;n[r]||(n[r]=e.uid)}function d(t){var e=t.stackgroup;return t.xaxis+t.yaxis+t.type+(e?\"-\"+e:\"\")}function g(t,e,r,n){var a=t.stackgroup;if(a){var i=e._scatterStackOpts[r._id+n._id][a],o=\"v\"===i.orientation?n:r;return\"linear\"===o.type||\"log\"===o.type?i:void 0}}e.exports={calc:function(t,e){var r,s,d,v,m,y,x=t._fullLayout,b=i.getFromId(t,e.xaxis||\"x\"),_=i.getFromId(t,e.yaxis||\"y\"),w=b.makeCalcdata(e,\"x\"),k=_.makeCalcdata(e,\"y\"),T=e._length,A=new Array(T),M=e.ids,S=g(e,x,b,_),E=!1;p(x,e);var C,L=\"x\",P=\"y\";for(S?(a.pushUnique(S.traceIndices,e._expandedIndex),(r=\"v\"===S.orientation)?(P=\"s\",C=\"x\"):(L=\"s\",C=\"y\"),m=\"interpolate\"===S.stackgaps):h(t,e,b,_,w,k,f(e,T)),s=0;s<T;s++){var O=A[s]={},I=n(w[s]),z=n(k[s]);I&&z?(O[L]=w[s],O[P]=k[s]):S&&(r?I:z)?(O[C]=r?w[s]:k[s],O.gap=!0,m?(O.s=o,E=!0):O.s=0):O[L]=O[P]=o,M&&(O.id=String(M[s]))}if(c(A,e),l(t,e),u(A,e),S){for(s=0;s<A.length;)A[s][C]===o?A.splice(s,1):s++;if(a.sort(A,function(t,e){return t[C]-e[C]||t.i-e.i}),E){for(s=0;s<A.length-1&&A[s].gap;)s++;for((y=A[s].s)||(y=A[s].s=0),d=0;d<s;d++)A[d].s=y;for(v=A.length-1;v>s&&A[v].gap;)v--;for(y=A[v].s,d=A.length-1;d>v;d--)A[d].s=y;for(;s<v;)if(A[++s].gap){for(d=s+1;A[d].gap;)d++;for(var D=A[s-1][C],R=A[s-1].s,F=(A[d].s-R)/(A[d][C]-D);s<d;)A[s].s=R+(A[s][C]-D)*F,s++}}}return A},calcMarkerSize:f,calcAxisExpansion:h,setFirstScatter:p,getStackOpts:g}},{\"../../constants/numerical\":695,\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"./arrays_to_calcdata\":1110,\"./calc_selection\":1113,\"./colorscale_calc\":1114,\"./subtypes\":1134,\"fast-isnumeric\":226}],1113:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e){n.isArrayOrTypedArray(e.selectedpoints)&&n.tagSelected(t,e)}},{\"../../lib\":719}],1114:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/helpers\").hasColorscale,a=t(\"../../components/colorscale/calc\"),i=t(\"./subtypes\");e.exports=function(t,e){i.hasLines(e)&&n(e,\"line\")&&a(t,e,{vals:e.line.color,containerStr:\"line\",cLetter:\"c\"}),i.hasMarkers(e)&&(n(e,\"marker\")&&a(t,e,{vals:e.marker.color,containerStr:\"marker\",cLetter:\"c\"}),n(e,\"marker.line\")&&a(t,e,{vals:e.marker.line.color,containerStr:\"marker.line\",cLetter:\"c\"}))}},{\"../../components/colorscale/calc\":602,\"../../components/colorscale/helpers\":605,\"./subtypes\":1134}],1115:[function(t,e,r){\"use strict\";e.exports={PTS_LINESONLY:20,minTolerance:.2,toleranceGrowth:10,maxScreensAway:20,eventDataKeys:[]}},{}],1116:[function(t,e,r){\"use strict\";var n=t(\"./calc\");function a(t,e,r,n,a,i,o){a[n]=!0;var s={i:null,gap:!0,s:0};if(s[o]=r,t.splice(e,0,s),e&&r===t[e-1][o]){var l=t[e-1];s.s=l.s,s.i=l.i,s.gap=l.gap}else i&&(s.s=function(t,e,r,n){var a=t[e-1],i=t[e+1];return i?a?a.s+(i.s-a.s)*(r-a[n])/(i[n]-a[n]):i.s:a.s}(t,e,r,o));e||(t[0].t=t[1].t,t[0].trace=t[1].trace,delete t[1].t,delete t[1].trace)}e.exports=function(t,e){var r=e.xaxis,i=e.yaxis,o=r._id+i._id,s=t._fullLayout._scatterStackOpts[o];if(s){var l,c,u,h,f,p,d,g,v,m,y,x,b,_,w,k=t.calcdata;for(var T in s){var A=(m=s[T]).traceIndices;if(A.length){for(y=\"interpolate\"===m.stackgaps,x=m.groupnorm,\"v\"===m.orientation?(b=\"x\",_=\"y\"):(b=\"y\",_=\"x\"),w=new Array(A.length),l=0;l<w.length;l++)w[l]=!1;p=k[A[0]];var M=new Array(p.length);for(l=0;l<p.length;l++)M[l]=p[l][b];for(l=1;l<A.length;l++){for(f=k[A[l]],c=u=0;c<f.length;c++){for(d=f[c][b];d>M[u]&&u<M.length;u++)a(f,c,M[u],l,w,y,b),c++;if(d!==M[u]){for(h=0;h<l;h++)a(k[A[h]],u,d,h,w,y,b);M.splice(u,0,d)}u++}for(;u<M.length;u++)a(f,c,M[u],l,w,y,b),c++}var S=M.length;for(c=0;c<p.length;c++){for(g=p[c][_]=p[c].s,l=1;l<A.length;l++)(f=k[A[l]])[0].trace._rawLength=f[0].trace._length,f[0].trace._length=S,g+=f[c].s,f[c][_]=g;if(x)for(v=(\"fraction\"===x?g:g/100)||1,l=0;l<A.length;l++){var E=k[A[l]][c];E[_]/=v,E.sNorm=E.s/v}}for(l=0;l<A.length;l++){var C=(f=k[A[l]])[0].trace,L=n.calcMarkerSize(C,C._rawLength),P=Array.isArray(L);if(L&&w[l]||P){var O=L;for(L=new Array(S),c=0;c<S;c++)L[c]=f[c].gap?0:P?O[f[c].i]:O}var I=new Array(S),z=new Array(S);for(c=0;c<S;c++)I[c]=f[c].x,z[c]=f[c].y;n.calcAxisExpansion(t,C,r,i,I,z,L),f[0].t.orientation=m.orientation}}}}}},{\"./calc\":1112}],1117:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=0;e<t.length;e++){var r=t[e];if(\"scatter\"===r.type){var n=r.fill;if(\"none\"!==n&&\"toself\"!==n&&(r.opacity=void 0,\"tonexty\"===n||\"tonextx\"===n))for(var a=e-1;a>=0;a--){var i=t[a];if(\"scatter\"===i.type&&i.xaxis===r.xaxis&&i.yaxis===r.yaxis){i.opacity=void 0;break}}}}}},{}],1118:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../registry\"),i=t(\"./attributes\"),o=t(\"./constants\"),s=t(\"./subtypes\"),l=t(\"./xy_defaults\"),c=t(\"./stack_defaults\"),u=t(\"./marker_defaults\"),h=t(\"./line_defaults\"),f=t(\"./line_shape_defaults\"),p=t(\"./text_defaults\"),d=t(\"./fillcolor_defaults\");e.exports=function(t,e,r,g){function v(r,a){return n.coerce(t,e,i,r,a)}var m=l(t,e,g,v);if(m||(e.visible=!1),e.visible){var y=c(t,e,g,v),x=!y&&m<o.PTS_LINESONLY?\"lines+markers\":\"lines\";v(\"text\"),v(\"hovertext\"),v(\"mode\",x),s.hasLines(e)&&(h(t,e,r,g,v),f(t,e,v),v(\"connectgaps\"),v(\"line.simplify\")),s.hasMarkers(e)&&u(t,e,r,g,v,{gradient:!0}),s.hasText(e)&&(v(\"texttemplate\"),p(t,e,g,v));var b=[];(s.hasMarkers(e)||s.hasText(e))&&(v(\"cliponaxis\"),v(\"marker.maxdisplayed\"),b.push(\"points\")),v(\"fill\",y?y.fillDflt:\"none\"),\"none\"!==e.fill&&(d(t,e,r,v),s.hasLines(e)||f(t,e,v));var _=(e.line||{}).color,w=(e.marker||{}).color;\"tonext\"!==e.fill&&\"toself\"!==e.fill||b.push(\"fills\"),v(\"hoveron\",b.join(\"+\")||\"points\"),\"fills\"!==e.hoveron&&v(\"hovertemplate\");var k=a.getComponentMethod(\"errorbars\",\"supplyDefaults\");k(t,e,_||w||r,{axis:\"y\"}),k(t,e,_||w||r,{axis:\"x\",inherit:\"y\"}),n.coerceSelectionMarkerOpacity(e,v)}}},{\"../../lib\":719,\"../../registry\":848,\"./attributes\":1111,\"./constants\":1115,\"./fillcolor_defaults\":1119,\"./line_defaults\":1123,\"./line_shape_defaults\":1125,\"./marker_defaults\":1129,\"./stack_defaults\":1132,\"./subtypes\":1134,\"./text_defaults\":1135,\"./xy_defaults\":1136}],1119:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\"),a=t(\"../../lib\").isArrayOrTypedArray;e.exports=function(t,e,r,i){var o=!1;if(e.marker){var s=e.marker.color,l=(e.marker.line||{}).color;s&&!a(s)?o=s:l&&!a(l)&&(o=l)}i(\"fillcolor\",n.addOpacity((e.line||{}).color||o||r,.5))}},{\"../../components/color\":594,\"../../lib\":719}],1120:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\"),a=t(\"./subtypes\");e.exports=function(t,e){var r,i;if(\"lines\"===t.mode)return(r=t.line.color)&&n.opacity(r)?r:t.fillcolor;if(\"none\"===t.mode)return t.fill?t.fillcolor:\"\";var o=e.mcc||(t.marker||{}).color,s=e.mlcc||((t.marker||{}).line||{}).color;return(i=o&&n.opacity(o)?o:s&&n.opacity(s)&&(e.mlw||((t.marker||{}).line||{}).width)?s:\"\")?n.opacity(i)<.3?n.addOpacity(i,.3):i:(r=(t.line||{}).color)&&n.opacity(r)&&a.hasLines(t)&&t.line.width?r:t.fillcolor}},{\"../../components/color\":594,\"./subtypes\":1134}],1121:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/fx\"),i=t(\"../../registry\"),o=t(\"./get_trace_color\"),s=t(\"../../components/color\"),l=n.fillText;e.exports=function(t,e,r,c){var u=t.cd,h=u[0].trace,f=t.xa,p=t.ya,d=f.c2p(e),g=p.c2p(r),v=[d,g],m=h.hoveron||\"\",y=-1!==h.mode.indexOf(\"markers\")?3:.5;if(-1!==m.indexOf(\"points\")){var x=function(t){var e=Math.max(y,t.mrc||0),r=f.c2p(t.x)-d,n=p.c2p(t.y)-g;return Math.max(Math.sqrt(r*r+n*n)-e,1-y/e)},b=a.getDistanceFunction(c,function(t){var e=Math.max(3,t.mrc||0),r=1-1/e,n=Math.abs(f.c2p(t.x)-d);return n<e?r*n/e:n-e+r},function(t){var e=Math.max(3,t.mrc||0),r=1-1/e,n=Math.abs(p.c2p(t.y)-g);return n<e?r*n/e:n-e+r},x);if(a.getClosest(u,b,t),!1!==t.index){var _=u[t.index],w=f.c2p(_.x,!0),k=p.c2p(_.y,!0),T=_.mrc||1;t.index=_.i;var A=u[0].t.orientation,M=A&&(_.sNorm||_.s),S=\"h\"===A?M:_.x,E=\"v\"===A?M:_.y;return n.extendFlat(t,{color:o(h,_),x0:w-T,x1:w+T,xLabelVal:S,y0:k-T,y1:k+T,yLabelVal:E,spikeDistance:x(_),hovertemplate:h.hovertemplate}),l(_,h,t),i.getComponentMethod(\"errorbars\",\"hoverInfo\")(_,h,t),[t]}}if(-1!==m.indexOf(\"fills\")&&h._polygons){var C,L,P,O,I,z,D,R,F,B=h._polygons,N=[],j=!1,V=1/0,U=-1/0,q=1/0,H=-1/0;for(C=0;C<B.length;C++)(P=B[C]).contains(v)&&(j=!j,N.push(P),q=Math.min(q,P.ymin),H=Math.max(H,P.ymax));if(j){var G=((q=Math.max(q,0))+(H=Math.min(H,p._length)))/2;for(C=0;C<N.length;C++)for(O=N[C].pts,L=1;L<O.length;L++)(R=O[L-1][1])>G!=(F=O[L][1])>=G&&(z=O[L-1][0],D=O[L][0],F-R&&(I=z+(D-z)*(G-R)/(F-R),V=Math.min(V,I),U=Math.max(U,I)));V=Math.max(V,0),U=Math.min(U,f._length);var Y=s.defaultLine;return s.opacity(h.fillcolor)?Y=h.fillcolor:s.opacity((h.line||{}).color)&&(Y=h.line.color),n.extendFlat(t,{distance:t.maxHoverDistance,x0:V,x1:U,y0:G,y1:G,color:Y,hovertemplate:!1}),delete t.index,h.text&&!Array.isArray(h.text)?t.text=String(h.text):t.text=h.name,[t]}}}},{\"../../components/color\":594,\"../../components/fx\":632,\"../../lib\":719,\"../../registry\":848,\"./get_trace_color\":1120}],1122:[function(t,e,r){\"use strict\";var n=t(\"./subtypes\");e.exports={hasLines:n.hasLines,hasMarkers:n.hasMarkers,hasText:n.hasText,isBubble:n.isBubble,attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),crossTraceDefaults:t(\"./cross_trace_defaults\"),calc:t(\"./calc\").calc,crossTraceCalc:t(\"./cross_trace_calc\"),arraysToCalcdata:t(\"./arrays_to_calcdata\"),plot:t(\"./plot\"),colorbar:t(\"./marker_colorbar\"),style:t(\"./style\").style,styleOnSelect:t(\"./style\").styleOnSelect,hoverPoints:t(\"./hover\"),selectPoints:t(\"./select\"),animatable:!0,moduleType:\"trace\",name:\"scatter\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"symbols\",\"errorBarsOK\",\"showLegend\",\"scatter-like\",\"zoomScale\"],meta:{}}},{\"../../plots/cartesian\":778,\"./arrays_to_calcdata\":1110,\"./attributes\":1111,\"./calc\":1112,\"./cross_trace_calc\":1116,\"./cross_trace_defaults\":1117,\"./defaults\":1118,\"./hover\":1121,\"./marker_colorbar\":1128,\"./plot\":1130,\"./select\":1131,\"./style\":1133,\"./subtypes\":1134}],1123:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").isArrayOrTypedArray,a=t(\"../../components/colorscale/helpers\").hasColorscale,i=t(\"../../components/colorscale/defaults\");e.exports=function(t,e,r,o,s,l){var c=(t.marker||{}).color;(s(\"line.color\",r),a(t,\"line\"))?i(t,e,o,s,{prefix:\"line.\",cLetter:\"c\"}):s(\"line.color\",!n(c)&&c||r);s(\"line.width\"),(l||{}).noDash||s(\"line.dash\")}},{\"../../components/colorscale/defaults\":604,\"../../components/colorscale/helpers\":605,\"../../lib\":719}],1124:[function(t,e,r){\"use strict\";var n=t(\"../../constants/numerical\"),a=n.BADNUM,i=n.LOG_CLIP,o=i+.5,s=i-.5,l=t(\"../../lib\"),c=l.segmentsIntersect,u=l.constrain,h=t(\"./constants\");e.exports=function(t,e){var r,n,i,f,p,d,g,v,m,y,x,b,_,w,k,T,A,M,S=e.xaxis,E=e.yaxis,C=\"log\"===S.type,L=\"log\"===E.type,P=S._length,O=E._length,I=e.connectGaps,z=e.baseTolerance,D=e.shape,R=\"linear\"===D,F=e.fill&&\"none\"!==e.fill,B=[],N=h.minTolerance,j=t.length,V=new Array(j),U=0;function q(e){var r=t[e];if(!r)return!1;var n=S.c2p(r.x),i=E.c2p(r.y);if(n===a){if(C&&(n=S.c2p(r.x,!0)),n===a)return!1;L&&i===a&&(n*=Math.abs(S._m*O*(S._m>0?o:s)/(E._m*P*(E._m>0?o:s)))),n*=1e3}if(i===a){if(L&&(i=E.c2p(r.y,!0)),i===a)return!1;i*=1e3}return[n,i]}function H(t,e,r,n){var a=r-t,i=n-e,o=.5-t,s=.5-e,l=a*a+i*i,c=a*o+i*s;if(c>0&&c<l){var u=o*i-s*a;if(u*u<l)return!0}}function G(t,e){var r=t[0]/P,n=t[1]/O,a=Math.max(0,-r,r-1,-n,n-1);return a&&void 0!==A&&H(r,n,A,M)&&(a=0),a&&e&&H(r,n,e[0]/P,e[1]/O)&&(a=0),(1+h.toleranceGrowth*a)*z}function Y(t,e){var r=t[0]-e[0],n=t[1]-e[1];return Math.sqrt(r*r+n*n)}var W,X,Z,J,K,Q,$,tt=h.maxScreensAway,et=-P*tt,rt=P*(1+tt),nt=-O*tt,at=O*(1+tt),it=[[et,nt,rt,nt],[rt,nt,rt,at],[rt,at,et,at],[et,at,et,nt]];function ot(t){if(t[0]<et||t[0]>rt||t[1]<nt||t[1]>at)return[u(t[0],et,rt),u(t[1],nt,at)]}function st(t,e){return t[0]===e[0]&&(t[0]===et||t[0]===rt)||(t[1]===e[1]&&(t[1]===nt||t[1]===at)||void 0)}function lt(t,e,r){return function(n,a){var i=ot(n),o=ot(a),s=[];if(i&&o&&st(i,o))return s;i&&s.push(i),o&&s.push(o);var c=2*l.constrain((n[t]+a[t])/2,e,r)-((i||n)[t]+(o||a)[t]);c&&((i&&o?c>0==i[t]>o[t]?i:o:i||o)[t]+=c);return s}}function ct(t){var e=t[0],r=t[1],n=e===V[U-1][0],a=r===V[U-1][1];if(!n||!a)if(U>1){var i=e===V[U-2][0],o=r===V[U-2][1];n&&(e===et||e===rt)&&i?o?U--:V[U-1]=t:a&&(r===nt||r===at)&&o?i?U--:V[U-1]=t:V[U++]=t}else V[U++]=t}function ut(t){V[U-1][0]!==t[0]&&V[U-1][1]!==t[1]&&ct([Z,J]),ct(t),K=null,Z=J=0}function ht(t){if(A=t[0]/P,M=t[1]/O,W=t[0]<et?et:t[0]>rt?rt:0,X=t[1]<nt?nt:t[1]>at?at:0,W||X){if(U)if(K){var e=$(K,t);e.length>1&&(ut(e[0]),V[U++]=e[1])}else Q=$(V[U-1],t)[0],V[U++]=Q;else V[U++]=[W||t[0],X||t[1]];var r=V[U-1];W&&X&&(r[0]!==W||r[1]!==X)?(K&&(Z!==W&&J!==X?ct(Z&&J?(n=K,i=(a=t)[0]-n[0],o=(a[1]-n[1])/i,(n[1]*a[0]-a[1]*n[0])/i>0?[o>0?et:rt,at]:[o>0?rt:et,nt]):[Z||W,J||X]):Z&&J&&ct([Z,J])),ct([W,X])):Z-W&&J-X&&ct([W||Z,X||J]),K=t,Z=W,J=X}else K&&ut($(K,t)[0]),V[U++]=t;var n,a,i,o}for(\"linear\"===D||\"spline\"===D?$=function(t,e){for(var r=[],n=0,a=0;a<4;a++){var i=it[a],o=c(t[0],t[1],e[0],e[1],i[0],i[1],i[2],i[3]);o&&(!n||Math.abs(o.x-r[0][0])>1||Math.abs(o.y-r[0][1])>1)&&(o=[o.x,o.y],n&&Y(o,t)<Y(r[0],t)?r.unshift(o):r.push(o),n++)}return r}:\"hv\"===D||\"vh\"===D?$=function(t,e){var r=[],n=ot(t),a=ot(e);return n&&a&&st(n,a)?r:(n&&r.push(n),a&&r.push(a),r)}:\"hvh\"===D?$=lt(0,et,rt):\"vhv\"===D&&($=lt(1,nt,at)),r=0;r<j;r++)if(n=q(r)){for(U=0,K=null,ht(n),r++;r<j;r++){if(!(f=q(r))){if(I)continue;break}if(R&&e.simplify){var ft=q(r+1);if(y=Y(f,n),F&&(0===U||U===j-1)||!(y<G(f,ft)*N)){for(v=[(f[0]-n[0])/y,(f[1]-n[1])/y],p=n,x=y,b=w=k=0,g=!1,i=f,r++;r<t.length;r++){if(d=ft,ft=q(r+1),!d){if(I)continue;break}if(T=(m=[d[0]-n[0],d[1]-n[1]])[0]*v[1]-m[1]*v[0],w=Math.min(w,T),(k=Math.max(k,T))-w>G(d,ft))break;i=d,(_=m[0]*v[0]+m[1]*v[1])>x?(x=_,f=d,g=!1):_<b&&(b=_,p=d,g=!0)}if(g?(ht(f),i!==p&&ht(p)):(p!==n&&ht(p),i!==f&&ht(f)),ht(i),r>=t.length||!d)break;ht(d),n=d}}else ht(f)}K&&ct([Z||K[0],J||K[1]]),B.push(V.slice(0,U))}return B}},{\"../../constants/numerical\":695,\"../../lib\":719,\"./constants\":1115}],1125:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){\"spline\"===r(\"line.shape\")&&r(\"line.smoothing\")}},{}],1126:[function(t,e,r){\"use strict\";var n={tonextx:1,tonexty:1,tonext:1};e.exports=function(t,e,r){var a,i,o,s,l,c={},u=!1,h=-1,f=0,p=-1;for(i=0;i<r.length;i++)(o=(a=r[i][0].trace).stackgroup||\"\")?o in c?l=c[o]:(l=c[o]=f,f++):a.fill in n&&p>=0?l=p:(l=p=f,f++),l<h&&(u=!0),a._groupIndex=h=l;var d=r.slice();u&&d.sort(function(t,e){var r=t[0].trace,n=e[0].trace;return r._groupIndex-n._groupIndex||r.index-n.index});var g={};for(i=0;i<d.length;i++)o=(a=d[i][0].trace).stackgroup||\"\",!0===a.visible?(a._nexttrace=null,a.fill in n&&(s=g[o],a._prevtrace=s||null,s&&(s._nexttrace=a)),a._ownfill=a.fill&&(\"tozero\"===a.fill.substr(0,6)||\"toself\"===a.fill||\"to\"===a.fill.substr(0,2)&&!a._prevtrace),g[o]=a):a._prevtrace=a._nexttrace=a._ownfill=null;return d}},{}],1127:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\");e.exports=function(t){var e=t.marker,r=e.sizeref||1,a=e.sizemin||0,i=\"area\"===e.sizemode?function(t){return Math.sqrt(t/r)}:function(t){return t/r};return function(t){var e=i(t/2);return n(e)&&e>0?Math.max(e,a):0}}},{\"fast-isnumeric\":226}],1128:[function(t,e,r){\"use strict\";e.exports={container:\"marker\",min:\"cmin\",max:\"cmax\"}},{}],1129:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\"),a=t(\"../../components/colorscale/helpers\").hasColorscale,i=t(\"../../components/colorscale/defaults\"),o=t(\"./subtypes\");e.exports=function(t,e,r,s,l,c){var u=o.isBubble(t),h=(t.line||{}).color;(c=c||{},h&&(r=h),l(\"marker.symbol\"),l(\"marker.opacity\",u?.7:1),l(\"marker.size\"),l(\"marker.color\",r),a(t,\"marker\")&&i(t,e,s,l,{prefix:\"marker.\",cLetter:\"c\"}),c.noSelect||(l(\"selected.marker.color\"),l(\"unselected.marker.color\"),l(\"selected.marker.size\"),l(\"unselected.marker.size\")),c.noLine||(l(\"marker.line.color\",h&&!Array.isArray(h)&&e.marker.color!==h?h:u?n.background:n.defaultLine),a(t,\"marker.line\")&&i(t,e,s,l,{prefix:\"marker.line.\",cLetter:\"c\"}),l(\"marker.line.width\",u?1:0)),u&&(l(\"marker.sizeref\"),l(\"marker.sizemin\"),l(\"marker.sizemode\")),c.gradient)&&(\"none\"!==l(\"marker.gradient.type\")&&l(\"marker.gradient.color\"))}},{\"../../components/color\":594,\"../../components/colorscale/defaults\":604,\"../../components/colorscale/helpers\":605,\"./subtypes\":1134}],1130:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../registry\"),i=t(\"../../lib\"),o=i.ensureSingle,s=i.identity,l=t(\"../../components/drawing\"),c=t(\"./subtypes\"),u=t(\"./line_points\"),h=t(\"./link_traces\"),f=t(\"../../lib/polygon\").tester;function p(t,e,r,h,p,d,g){var v;!function(t,e,r,a,o){var s=r.xaxis,l=r.yaxis,u=n.extent(i.simpleMap(s.range,s.r2c)),h=n.extent(i.simpleMap(l.range,l.r2c)),f=a[0].trace;if(!c.hasMarkers(f))return;var p=f.marker.maxdisplayed;if(0===p)return;var d=a.filter(function(t){return t.x>=u[0]&&t.x<=u[1]&&t.y>=h[0]&&t.y<=h[1]}),g=Math.ceil(d.length/p),v=0;o.forEach(function(t,r){var n=t[0].trace;c.hasMarkers(n)&&n.marker.maxdisplayed>0&&r<e&&v++});var m=Math.round(v*g/3+Math.floor(v/3)*g/7.1);a.forEach(function(t){delete t.vis}),d.forEach(function(t,e){0===Math.round((e+m)%g)&&(t.vis=!0)})}(0,e,r,h,p);var m=!!g&&g.duration>0;function y(t){return m?t.transition():t}var x=r.xaxis,b=r.yaxis,_=h[0].trace,w=_.line,k=n.select(d),T=o(k,\"g\",\"errorbars\"),A=o(k,\"g\",\"lines\"),M=o(k,\"g\",\"points\"),S=o(k,\"g\",\"text\");if(a.getComponentMethod(\"errorbars\",\"plot\")(t,T,r,g),!0===_.visible){var E,C;y(k).style(\"opacity\",_.opacity);var L=_.fill.charAt(_.fill.length-1);\"x\"!==L&&\"y\"!==L&&(L=\"\"),h[0][r.isRangePlot?\"nodeRangePlot3\":\"node3\"]=k;var P,O,I=\"\",z=[],D=_._prevtrace;D&&(I=D._prevRevpath||\"\",C=D._nextFill,z=D._polygons);var R,F,B,N,j,V,U,q=\"\",H=\"\",G=[],Y=i.noop;if(E=_._ownFill,c.hasLines(_)||\"none\"!==_.fill){for(C&&C.datum(h),-1!==[\"hv\",\"vh\",\"hvh\",\"vhv\"].indexOf(w.shape)?(R=l.steps(w.shape),F=l.steps(w.shape.split(\"\").reverse().join(\"\"))):R=F=\"spline\"===w.shape?function(t){var e=t[t.length-1];return t.length>1&&t[0][0]===e[0]&&t[0][1]===e[1]?l.smoothclosed(t.slice(1),w.smoothing):l.smoothopen(t,w.smoothing)}:function(t){return\"M\"+t.join(\"L\")},B=function(t){return F(t.reverse())},G=u(h,{xaxis:x,yaxis:b,connectGaps:_.connectgaps,baseTolerance:Math.max(w.width||1,3)/4,shape:w.shape,simplify:w.simplify,fill:_.fill}),U=_._polygons=new Array(G.length),v=0;v<G.length;v++)_._polygons[v]=f(G[v]);G.length&&(N=G[0][0],V=(j=G[G.length-1])[j.length-1]),Y=function(t){return function(e){if(P=R(e),O=B(e),q?L?(q+=\"L\"+P.substr(1),H=O+\"L\"+H.substr(1)):(q+=\"Z\"+P,H=O+\"Z\"+H):(q=P,H=O),c.hasLines(_)&&e.length>1){var r=n.select(this);if(r.datum(h),t)y(r.style(\"opacity\",0).attr(\"d\",P).call(l.lineGroupStyle)).style(\"opacity\",1);else{var a=y(r);a.attr(\"d\",P),l.singleLineStyle(h,a)}}}}}var W=A.selectAll(\".js-line\").data(G);y(W.exit()).style(\"opacity\",0).remove(),W.each(Y(!1)),W.enter().append(\"path\").classed(\"js-line\",!0).style(\"vector-effect\",\"non-scaling-stroke\").call(l.lineGroupStyle).each(Y(!0)),l.setClipUrl(W,r.layerClipId,t),G.length?(E?(E.datum(h),N&&V&&(L?(\"y\"===L?N[1]=V[1]=b.c2p(0,!0):\"x\"===L&&(N[0]=V[0]=x.c2p(0,!0)),y(E).attr(\"d\",\"M\"+V+\"L\"+N+\"L\"+q.substr(1)).call(l.singleFillStyle)):y(E).attr(\"d\",q+\"Z\").call(l.singleFillStyle))):C&&(\"tonext\"===_.fill.substr(0,6)&&q&&I?(\"tonext\"===_.fill?y(C).attr(\"d\",q+\"Z\"+I+\"Z\").call(l.singleFillStyle):y(C).attr(\"d\",q+\"L\"+I.substr(1)+\"Z\").call(l.singleFillStyle),_._polygons=_._polygons.concat(z)):(Z(C),_._polygons=null)),_._prevRevpath=H,_._prevPolygons=U):(E?Z(E):C&&Z(C),_._polygons=_._prevRevpath=_._prevPolygons=null),M.datum(h),S.datum(h),function(e,a,i){var o,u=i[0].trace,h=c.hasMarkers(u),f=c.hasText(u),p=tt(u),d=et,g=et;if(h||f){var v=s,_=u.stackgroup,w=_&&\"infer zero\"===t._fullLayout._scatterStackOpts[x._id+b._id][_].stackgaps;u.marker.maxdisplayed||u._needsCull?v=w?K:J:_&&!w&&(v=Q),h&&(d=v),f&&(g=v)}var k,T=(o=e.selectAll(\"path.point\").data(d,p)).enter().append(\"path\").classed(\"point\",!0);m&&T.call(l.pointStyle,u,t).call(l.translatePoints,x,b).style(\"opacity\",0).transition().style(\"opacity\",1),o.order(),h&&(k=l.makePointStyleFns(u)),o.each(function(e){var a=n.select(this),i=y(a);l.translatePoint(e,i,x,b)?(l.singlePointStyle(e,i,u,k,t),r.layerClipId&&l.hideOutsideRangePoint(e,i,x,b,u.xcalendar,u.ycalendar),u.customdata&&a.classed(\"plotly-customdata\",null!==e.data&&void 0!==e.data)):i.remove()}),m?o.exit().transition().style(\"opacity\",0).remove():o.exit().remove(),(o=a.selectAll(\"g\").data(g,p)).enter().append(\"g\").classed(\"textpoint\",!0).append(\"text\"),o.order(),o.each(function(t){var e=n.select(this),a=y(e.select(\"text\"));l.translatePoint(t,a,x,b)?r.layerClipId&&l.hideOutsideRangePoint(t,e,x,b,u.xcalendar,u.ycalendar):e.remove()}),o.selectAll(\"text\").call(l.textPointStyle,u,t).each(function(t){var e=x.c2p(t.x),r=b.c2p(t.y);n.select(this).selectAll(\"tspan.line\").each(function(){y(n.select(this)).attr({x:e,y:r})})}),o.exit().remove()}(M,S,h);var X=!1===_.cliponaxis?null:r.layerClipId;l.setClipUrl(M,X,t),l.setClipUrl(S,X,t)}function Z(t){y(t).attr(\"d\",\"M0,0Z\")}function J(t){return t.filter(function(t){return!t.gap&&t.vis})}function K(t){return t.filter(function(t){return t.vis})}function Q(t){return t.filter(function(t){return!t.gap})}function $(t){return t.id}function tt(t){if(t.ids)return $}function et(){return!1}}e.exports=function(t,e,r,a,i,c){var u,f,d=!i,g=!!i&&i.duration>0,v=h(t,e,r);((u=a.selectAll(\"g.trace\").data(v,function(t){return t[0].trace.uid})).enter().append(\"g\").attr(\"class\",function(t){return\"trace scatter trace\"+t[0].trace.uid}).style(\"stroke-miterlimit\",2),u.order(),function(t,e,r){e.each(function(e){var a=o(n.select(this),\"g\",\"fills\");l.setClipUrl(a,r.layerClipId,t);var i=e[0].trace,c=[];i._ownfill&&c.push(\"_ownFill\"),i._nexttrace&&c.push(\"_nextFill\");var u=a.selectAll(\"g\").data(c,s);u.enter().append(\"g\"),u.exit().each(function(t){i[t]=null}).remove(),u.order().each(function(t){i[t]=o(n.select(this),\"path\",\"js-fill\")})})}(t,u,e),g)?(c&&(f=c()),n.transition().duration(i.duration).ease(i.easing).each(\"end\",function(){f&&f()}).each(\"interrupt\",function(){f&&f()}).each(function(){a.selectAll(\"g.trace\").each(function(r,n){p(t,n,e,r,v,this,i)})})):u.each(function(r,n){p(t,n,e,r,v,this,i)});d&&u.exit().remove(),a.selectAll(\"path:not([d])\").remove()}},{\"../../components/drawing\":615,\"../../lib\":719,\"../../lib/polygon\":731,\"../../registry\":848,\"./line_points\":1124,\"./link_traces\":1126,\"./subtypes\":1134,d3:164}],1131:[function(t,e,r){\"use strict\";var n=t(\"./subtypes\");e.exports=function(t,e){var r,a,i,o,s=t.cd,l=t.xaxis,c=t.yaxis,u=[],h=s[0].trace;if(!n.hasMarkers(h)&&!n.hasText(h))return[];if(!1===e)for(r=0;r<s.length;r++)s[r].selected=0;else for(r=0;r<s.length;r++)a=s[r],i=l.c2p(a.x),o=c.c2p(a.y),null!==a.i&&e.contains([i,o],!1,r,t)?(u.push({pointNumber:a.i,x:l.c2d(a.x),y:c.c2d(a.y)}),a.selected=1):a.selected=0;return u}},{\"./subtypes\":1134}],1132:[function(t,e,r){\"use strict\";var n=[\"orientation\",\"groupnorm\",\"stackgaps\"];e.exports=function(t,e,r,a){var i=r._scatterStackOpts,o=a(\"stackgroup\");if(o){var s=e.xaxis+e.yaxis,l=i[s];l||(l=i[s]={});var c=l[o],u=!1;c?c.traces.push(e):(c=l[o]={traceIndices:[],traces:[e]},u=!0);for(var h={orientation:e.x&&!e.y?\"h\":\"v\"},f=0;f<n.length;f++){var p=n[f],d=p+\"Found\";if(!c[d]){var g=void 0!==t[p],v=\"orientation\"===p;if((g||u)&&(c[p]=a(p,h[p]),v&&(c.fillDflt=\"h\"===c[p]?\"tonextx\":\"tonexty\"),g&&(c[d]=!0,!u&&(delete c.traces[0][p],v))))for(var m=0;m<c.traces.length-1;m++){var y=c.traces[m];y._input.fill!==y.fill&&(y.fill=c.fillDflt)}}}return c}}},{}],1133:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/drawing\"),i=t(\"../../registry\");function o(t,e,r){a.pointStyle(t.selectAll(\"path.point\"),e,r)}function s(t,e,r){a.textPointStyle(t.selectAll(\"text\"),e,r)}e.exports={style:function(t){var e=n.select(t).selectAll(\"g.trace.scatter\");e.style(\"opacity\",function(t){return t[0].trace.opacity}),e.selectAll(\"g.points\").each(function(e){o(n.select(this),e.trace||e[0].trace,t)}),e.selectAll(\"g.text\").each(function(e){s(n.select(this),e.trace||e[0].trace,t)}),e.selectAll(\"g.trace path.js-line\").call(a.lineGroupStyle),e.selectAll(\"g.trace path.js-fill\").call(a.fillGroupStyle),i.getComponentMethod(\"errorbars\",\"style\")(e)},stylePoints:o,styleText:s,styleOnSelect:function(t,e,r){var n=e[0].trace;n.selectedpoints?(a.selectedPointStyle(r.selectAll(\"path.point\"),n),a.selectedTextStyle(r.selectAll(\"text\"),n)):(o(r,n,t),s(r,n,t))}}},{\"../../components/drawing\":615,\"../../registry\":848,d3:164}],1134:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports={hasLines:function(t){return t.visible&&t.mode&&-1!==t.mode.indexOf(\"lines\")},hasMarkers:function(t){return t.visible&&(t.mode&&-1!==t.mode.indexOf(\"markers\")||\"splom\"===t.type)},hasText:function(t){return t.visible&&t.mode&&-1!==t.mode.indexOf(\"text\")},isBubble:function(t){return n.isPlainObject(t.marker)&&n.isArrayOrTypedArray(t.marker.size)}}},{\"../../lib\":719}],1135:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e,r,a,i){i=i||{},a(\"textposition\"),n.coerceFont(a,\"textfont\",r.font),i.noSelect||(a(\"selected.textfont.color\"),a(\"unselected.textfont.color\"))}},{\"../../lib\":719}],1136:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../registry\");e.exports=function(t,e,r,i){var o,s=i(\"x\"),l=i(\"y\");if(a.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\",\"y\"],r),s){var c=n.minRowLength(s);l?o=Math.min(c,n.minRowLength(l)):(o=c,i(\"y0\"),i(\"dy\"))}else{if(!l)return 0;o=n.minRowLength(l),i(\"x0\"),i(\"dx\")}return e._length=o,o}},{\"../../lib\":719,\"../../registry\":848}],1137:[function(t,e,r){\"use strict\";var n=t(\"../scatter/attributes\"),a=t(\"../../components/colorscale/attributes\"),i=t(\"../../plots/template_attributes\").hovertemplateAttrs,o=t(\"../../plots/template_attributes\").texttemplateAttrs,s=t(\"../../plots/attributes\"),l=t(\"../../constants/gl3d_dashes\"),c=t(\"../../constants/gl3d_markers\"),u=t(\"../../lib/extend\").extendFlat,h=t(\"../../plot_api/edit_types\").overrideAll,f=n.line,p=n.marker,d=p.line,g=u({width:f.width,dash:{valType:\"enumerated\",values:Object.keys(l),dflt:\"solid\"}},a(\"line\"));var v=e.exports=h({x:n.x,y:n.y,z:{valType:\"data_array\"},text:u({},n.text,{}),texttemplate:o({},{}),hovertext:u({},n.hovertext,{}),hovertemplate:i(),mode:u({},n.mode,{dflt:\"lines+markers\"}),surfaceaxis:{valType:\"enumerated\",values:[-1,0,1,2],dflt:-1},surfacecolor:{valType:\"color\"},projection:{x:{show:{valType:\"boolean\",dflt:!1},opacity:{valType:\"number\",min:0,max:1,dflt:1},scale:{valType:\"number\",min:0,max:10,dflt:2/3}},y:{show:{valType:\"boolean\",dflt:!1},opacity:{valType:\"number\",min:0,max:1,dflt:1},scale:{valType:\"number\",min:0,max:10,dflt:2/3}},z:{show:{valType:\"boolean\",dflt:!1},opacity:{valType:\"number\",min:0,max:1,dflt:1},scale:{valType:\"number\",min:0,max:10,dflt:2/3}}},connectgaps:n.connectgaps,line:g,marker:u({symbol:{valType:\"enumerated\",values:Object.keys(c),dflt:\"circle\",arrayOk:!0},size:u({},p.size,{dflt:8}),sizeref:p.sizeref,sizemin:p.sizemin,sizemode:p.sizemode,opacity:u({},p.opacity,{arrayOk:!1}),colorbar:p.colorbar,line:u({width:u({},d.width,{arrayOk:!1})},a(\"marker.line\"))},a(\"marker\")),textposition:u({},n.textposition,{dflt:\"top center\"}),textfont:{color:n.textfont.color,size:n.textfont.size,family:u({},n.textfont.family,{arrayOk:!1})},hoverinfo:u({},s.hoverinfo)},\"calc\",\"nested\");v.x.editType=v.y.editType=v.z.editType=\"calc+clearAxisTypes\"},{\"../../components/colorscale/attributes\":601,\"../../constants/gl3d_dashes\":692,\"../../constants/gl3d_markers\":693,\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../../plots/attributes\":764,\"../../plots/template_attributes\":843,\"../scatter/attributes\":1111}],1138:[function(t,e,r){\"use strict\";var n=t(\"../scatter/arrays_to_calcdata\"),a=t(\"../scatter/colorscale_calc\");e.exports=function(t,e){var r=[{x:!1,y:!1,trace:e,t:{}}];return n(r,e),a(t,e),r}},{\"../scatter/arrays_to_calcdata\":1110,\"../scatter/colorscale_calc\":1114}],1139:[function(t,e,r){\"use strict\";var n=t(\"../../registry\");function a(t,e,r,a){if(!e||!e.visible)return null;for(var i=n.getComponentMethod(\"errorbars\",\"makeComputeError\")(e),o=new Array(t.length),s=0;s<t.length;s++){var l=i(+t[s],s);if(\"log\"===a.type){var c=a.c2l(t[s]),u=t[s]-l[0],h=t[s]+l[1];if(o[s]=[(a.c2l(u,!0)-c)*r,(a.c2l(h,!0)-c)*r],u>0){var f=a.c2l(u);a._lowerLogErrorBound||(a._lowerLogErrorBound=f),a._lowerErrorBound=Math.min(a._lowerLogErrorBound,f)}}else o[s]=[-l[0]*r,l[1]*r]}return o}e.exports=function(t,e,r){var n=[a(t.x,t.error_x,e[0],r.xaxis),a(t.y,t.error_y,e[1],r.yaxis),a(t.z,t.error_z,e[2],r.zaxis)],i=function(t){for(var e=0;e<t.length;e++)if(t[e])return t[e].length;return 0}(n);if(0===i)return null;for(var o=new Array(i),s=0;s<i;s++){for(var l=[[0,0,0],[0,0,0]],c=0;c<3;c++)if(n[c])for(var u=0;u<2;u++)l[u][c]=n[c][s][u];o[s]=l}return o}},{\"../../registry\":848}],1140:[function(t,e,r){\"use strict\";var n=t(\"gl-line3d\"),a=t(\"gl-scatter3d\"),i=t(\"gl-error3d\"),o=t(\"gl-mesh3d\"),s=t(\"delaunay-triangulate\"),l=t(\"../../lib\"),c=t(\"../../lib/str2rgbarray\"),u=t(\"../../lib/gl_format_color\").formatColor,h=t(\"../scatter/make_bubble_size_func\"),f=t(\"../../constants/gl3d_dashes\"),p=t(\"../../constants/gl3d_markers\"),d=t(\"../../components/fx/helpers\").appendArrayPointValue,g=t(\"./calc_errors\");function v(t,e){this.scene=t,this.uid=e,this.linePlot=null,this.scatterPlot=null,this.errorBars=null,this.textMarkers=null,this.delaunayMesh=null,this.color=null,this.mode=\"\",this.dataPoints=[],this.axesBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.textLabels=null,this.data=null}var m=v.prototype;function y(t){return null==t?0:t.indexOf(\"left\")>-1?-1:t.indexOf(\"right\")>-1?1:0}function x(t){return null==t?0:t.indexOf(\"top\")>-1?-1:t.indexOf(\"bottom\")>-1?1:0}function b(t,e){return e(4*t)}function _(t){return p[t]}function w(t,e,r,n,a){var i=null;if(l.isArrayOrTypedArray(t)){i=[];for(var o=0;o<e;o++)void 0===t[o]?i[o]=n:i[o]=r(t[o],a)}else i=r(t,l.identity);return i}function k(t,e){var r,n,a,i,o,s,f=[],p=t.fullSceneLayout,v=t.dataScale,m=p.xaxis,k=p.yaxis,T=p.zaxis,A=e.marker,M=e.line,S=e.x||[],E=e.y||[],C=e.z||[],L=S.length,P=e.xcalendar,O=e.ycalendar,I=e.zcalendar;for(o=0;o<L;o++)r=m.d2l(S[o],0,P)*v[0],n=k.d2l(E[o],0,O)*v[1],a=T.d2l(C[o],0,I)*v[2],f[o]=[r,n,a];if(Array.isArray(e.text))s=e.text;else if(void 0!==e.text)for(s=new Array(L),o=0;o<L;o++)s[o]=e.text;var z=e.texttemplate;if(z){var D=Array.isArray(z),R=D?Math.min(z.length,L):L,F=D?function(t){return z[t]}:function(){return z},B=t.fullLayout._d3locale;for(s=new Array(R),o=0;o<R;o++){var N={};N.text=s[o],d(N,e,o),s[o]=l.texttemplateString(F(o),N,B,N,e._meta||{})}}if(i={position:f,mode:e.mode,text:s},\"line\"in e&&(i.lineColor=u(M,1,L),i.lineWidth=M.width,i.lineDashes=M.dash),\"marker\"in e){var j=h(e);i.scatterColor=u(A,1,L),i.scatterSize=w(A.size,L,b,20,j),i.scatterMarker=w(A.symbol,L,_,\"\\u25cf\"),i.scatterLineWidth=A.line.width,i.scatterLineColor=u(A.line,1,L),i.scatterAngle=0}\"textposition\"in e&&(i.textOffset=function(t){var e=[0,0];if(Array.isArray(t))for(var r=0;r<t.length;r++)e[r]=[0,0],t[r]&&(e[r][0]=y(t[r]),e[r][1]=x(t[r]));else e[0]=y(t),e[1]=x(t);return e}(e.textposition),i.textColor=u(e.textfont,1,L),i.textSize=w(e.textfont.size,L,l.identity,12),i.textFont=e.textfont.family,i.textAngle=0);var V=[\"x\",\"y\",\"z\"];for(i.project=[!1,!1,!1],i.projectScale=[1,1,1],i.projectOpacity=[1,1,1],o=0;o<3;++o){var U=e.projection[V[o]];(i.project[o]=U.show)&&(i.projectOpacity[o]=U.opacity,i.projectScale[o]=U.scale)}i.errorBounds=g(e,v,p);var q=function(t){for(var e=[0,0,0],r=[[0,0,0],[0,0,0],[0,0,0]],n=[1,1,1],a=0;a<3;a++){var i=t[a];i&&!1!==i.copy_zstyle&&!1!==t[2].visible&&(i=t[2]),i&&i.visible&&(e[a]=i.width/2,r[a]=c(i.color),n[a]=i.thickness)}return{capSize:e,color:r,lineWidth:n}}([e.error_x,e.error_y,e.error_z]);return i.errorColor=q.color,i.errorLineWidth=q.lineWidth,i.errorCapSize=q.capSize,i.delaunayAxis=e.surfaceaxis,i.delaunayColor=c(e.surfacecolor),i}function T(t){if(Array.isArray(t)){var e=t[0];return Array.isArray(e)&&(t=e),\"rgb(\"+t.slice(0,3).map(function(t){return Math.round(255*t)})+\")\"}return null}m.handlePick=function(t){if(t.object&&(t.object===this.linePlot||t.object===this.delaunayMesh||t.object===this.textMarkers||t.object===this.scatterPlot)){var e=t.index=t.data.index;return t.object.highlight&&t.object.highlight(null),this.scatterPlot&&(t.object=this.scatterPlot,this.scatterPlot.highlight(t.data)),t.textLabel=\"\",this.textLabels&&(Array.isArray(this.textLabels)?(this.textLabels[e]||0===this.textLabels[e])&&(t.textLabel=this.textLabels[e]):t.textLabel=this.textLabels),t.traceCoordinate=[this.data.x[e],this.data.y[e],this.data.z[e]],!0}},m.update=function(t){var e,r,l,c,u=this.scene.glplot.gl,h=f.solid;this.data=t;var p=k(this.scene,t);\"mode\"in p&&(this.mode=p.mode),\"lineDashes\"in p&&p.lineDashes in f&&(h=f[p.lineDashes]),this.color=T(p.scatterColor)||T(p.lineColor),this.dataPoints=p.position,e={gl:this.scene.glplot.gl,position:p.position,color:p.lineColor,lineWidth:p.lineWidth||1,dashes:h[0],dashScale:h[1],opacity:t.opacity,connectGaps:t.connectgaps},-1!==this.mode.indexOf(\"lines\")?this.linePlot?this.linePlot.update(e):(this.linePlot=n(e),this.linePlot._trace=this,this.scene.glplot.add(this.linePlot)):this.linePlot&&(this.scene.glplot.remove(this.linePlot),this.linePlot.dispose(),this.linePlot=null);var d=t.opacity;if(t.marker&&t.marker.opacity&&(d*=t.marker.opacity),r={gl:this.scene.glplot.gl,position:p.position,color:p.scatterColor,size:p.scatterSize,glyph:p.scatterMarker,opacity:d,orthographic:!0,lineWidth:p.scatterLineWidth,lineColor:p.scatterLineColor,project:p.project,projectScale:p.projectScale,projectOpacity:p.projectOpacity},-1!==this.mode.indexOf(\"markers\")?this.scatterPlot?this.scatterPlot.update(r):(this.scatterPlot=a(r),this.scatterPlot._trace=this,this.scatterPlot.highlightScale=1,this.scene.glplot.add(this.scatterPlot)):this.scatterPlot&&(this.scene.glplot.remove(this.scatterPlot),this.scatterPlot.dispose(),this.scatterPlot=null),c={gl:this.scene.glplot.gl,position:p.position,glyph:p.text,color:p.textColor,size:p.textSize,angle:p.textAngle,alignment:p.textOffset,font:p.textFont,orthographic:!0,lineWidth:0,project:!1,opacity:t.opacity},this.textLabels=t.hovertext||t.text,-1!==this.mode.indexOf(\"text\")?this.textMarkers?this.textMarkers.update(c):(this.textMarkers=a(c),this.textMarkers._trace=this,this.textMarkers.highlightScale=1,this.scene.glplot.add(this.textMarkers)):this.textMarkers&&(this.scene.glplot.remove(this.textMarkers),this.textMarkers.dispose(),this.textMarkers=null),l={gl:this.scene.glplot.gl,position:p.position,color:p.errorColor,error:p.errorBounds,lineWidth:p.errorLineWidth,capSize:p.errorCapSize,opacity:t.opacity},this.errorBars?p.errorBounds?this.errorBars.update(l):(this.scene.glplot.remove(this.errorBars),this.errorBars.dispose(),this.errorBars=null):p.errorBounds&&(this.errorBars=i(l),this.errorBars._trace=this,this.scene.glplot.add(this.errorBars)),p.delaunayAxis>=0){var g=function(t,e,r){var n,a=(r+1)%3,i=(r+2)%3,o=[],l=[];for(n=0;n<t.length;++n){var c=t[n];!isNaN(c[a])&&isFinite(c[a])&&!isNaN(c[i])&&isFinite(c[i])&&(o.push([c[a],c[i]]),l.push(n))}var u=s(o);for(n=0;n<u.length;++n)for(var h=u[n],f=0;f<h.length;++f)h[f]=l[h[f]];return{positions:t,cells:u,meshColor:e}}(p.position,p.delaunayColor,p.delaunayAxis);g.opacity=t.opacity,this.delaunayMesh?this.delaunayMesh.update(g):(g.gl=u,this.delaunayMesh=o(g),this.delaunayMesh._trace=this,this.scene.glplot.add(this.delaunayMesh))}else this.delaunayMesh&&(this.scene.glplot.remove(this.delaunayMesh),this.delaunayMesh.dispose(),this.delaunayMesh=null)},m.dispose=function(){this.linePlot&&(this.scene.glplot.remove(this.linePlot),this.linePlot.dispose()),this.scatterPlot&&(this.scene.glplot.remove(this.scatterPlot),this.scatterPlot.dispose()),this.errorBars&&(this.scene.glplot.remove(this.errorBars),this.errorBars.dispose()),this.textMarkers&&(this.scene.glplot.remove(this.textMarkers),this.textMarkers.dispose()),this.delaunayMesh&&(this.scene.glplot.remove(this.delaunayMesh),this.delaunayMesh.dispose())},e.exports=function(t,e){var r=new v(t,e.uid);return r.update(e),r}},{\"../../components/fx/helpers\":629,\"../../constants/gl3d_dashes\":692,\"../../constants/gl3d_markers\":693,\"../../lib\":719,\"../../lib/gl_format_color\":716,\"../../lib/str2rgbarray\":742,\"../scatter/make_bubble_size_func\":1127,\"./calc_errors\":1139,\"delaunay-triangulate\":166,\"gl-error3d\":248,\"gl-line3d\":256,\"gl-mesh3d\":281,\"gl-scatter3d\":298}],1141:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\"),i=t(\"../scatter/subtypes\"),o=t(\"../scatter/marker_defaults\"),s=t(\"../scatter/line_defaults\"),l=t(\"../scatter/text_defaults\"),c=t(\"./attributes\");e.exports=function(t,e,r,u){function h(r,n){return a.coerce(t,e,c,r,n)}if(function(t,e,r,a){var i=0,o=r(\"x\"),s=r(\"y\"),l=r(\"z\");n.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\",\"y\",\"z\"],a),o&&s&&l&&(i=Math.min(o.length,s.length,l.length),e._length=e._xlength=e._ylength=e._zlength=i);return i}(t,e,h,u)){h(\"text\"),h(\"hovertext\"),h(\"hovertemplate\"),h(\"mode\"),i.hasLines(e)&&(h(\"connectgaps\"),s(t,e,r,u,h)),i.hasMarkers(e)&&o(t,e,r,u,h,{noSelect:!0}),i.hasText(e)&&(h(\"texttemplate\"),l(t,e,u,h,{noSelect:!0}));var f=(e.line||{}).color,p=(e.marker||{}).color;h(\"surfaceaxis\")>=0&&h(\"surfacecolor\",f||p);for(var d=[\"x\",\"y\",\"z\"],g=0;g<3;++g){var v=\"projection.\"+d[g];h(v+\".show\")&&(h(v+\".opacity\"),h(v+\".scale\"))}var m=n.getComponentMethod(\"errorbars\",\"supplyDefaults\");m(t,e,f||p||r,{axis:\"z\"}),m(t,e,f||p||r,{axis:\"y\",inherit:\"z\"}),m(t,e,f||p||r,{axis:\"x\",inherit:\"z\"})}else e.visible=!1}},{\"../../lib\":719,\"../../registry\":848,\"../scatter/line_defaults\":1123,\"../scatter/marker_defaults\":1129,\"../scatter/subtypes\":1134,\"../scatter/text_defaults\":1135,\"./attributes\":1137}],1142:[function(t,e,r){\"use strict\";e.exports={plot:t(\"./convert\"),attributes:t(\"./attributes\"),markerSymbols:t(\"../../constants/gl3d_markers\"),supplyDefaults:t(\"./defaults\"),colorbar:[{container:\"marker\",min:\"cmin\",max:\"cmax\"},{container:\"line\",min:\"cmin\",max:\"cmax\"}],calc:t(\"./calc\"),moduleType:\"trace\",name:\"scatter3d\",basePlotModule:t(\"../../plots/gl3d\"),categories:[\"gl3d\",\"symbols\",\"showLegend\",\"scatter-like\"],meta:{}}},{\"../../constants/gl3d_markers\":693,\"../../plots/gl3d\":807,\"./attributes\":1137,\"./calc\":1138,\"./convert\":1140,\"./defaults\":1141}],1143:[function(t,e,r){\"use strict\";var n=t(\"../scatter/attributes\"),a=t(\"../../plots/attributes\"),i=t(\"../../plots/template_attributes\").hovertemplateAttrs,o=t(\"../../plots/template_attributes\").texttemplateAttrs,s=t(\"../../components/colorscale/attributes\"),l=t(\"../../lib/extend\").extendFlat,c=n.marker,u=n.line,h=c.line;e.exports={carpet:{valType:\"string\",editType:\"calc\"},a:{valType:\"data_array\",editType:\"calc\"},b:{valType:\"data_array\",editType:\"calc\"},mode:l({},n.mode,{dflt:\"markers\"}),text:l({},n.text,{}),texttemplate:o({editType:\"plot\"},{keys:[\"a\",\"b\",\"text\"]}),hovertext:l({},n.hovertext,{}),line:{color:u.color,width:u.width,dash:u.dash,shape:l({},u.shape,{values:[\"linear\",\"spline\"]}),smoothing:u.smoothing,editType:\"calc\"},connectgaps:n.connectgaps,fill:l({},n.fill,{values:[\"none\",\"toself\",\"tonext\"],dflt:\"none\"}),fillcolor:n.fillcolor,marker:l({symbol:c.symbol,opacity:c.opacity,maxdisplayed:c.maxdisplayed,size:c.size,sizeref:c.sizeref,sizemin:c.sizemin,sizemode:c.sizemode,line:l({width:h.width,editType:\"calc\"},s(\"marker.line\")),gradient:c.gradient,editType:\"calc\"},s(\"marker\")),textfont:n.textfont,textposition:n.textposition,selected:n.selected,unselected:n.unselected,hoverinfo:l({},a.hoverinfo,{flags:[\"a\",\"b\",\"text\",\"name\"]}),hoveron:n.hoveron,hovertemplate:i()}},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plots/attributes\":764,\"../../plots/template_attributes\":843,\"../scatter/attributes\":1111}],1144:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../scatter/colorscale_calc\"),i=t(\"../scatter/arrays_to_calcdata\"),o=t(\"../scatter/calc_selection\"),s=t(\"../scatter/calc\").calcMarkerSize,l=t(\"../carpet/lookup_carpetid\");e.exports=function(t,e){var r=e._carpetTrace=l(t,e);if(r&&r.visible&&\"legendonly\"!==r.visible){var c;e.xaxis=r.xaxis,e.yaxis=r.yaxis;var u,h,f=e._length,p=new Array(f),d=!1;for(c=0;c<f;c++)if(u=e.a[c],h=e.b[c],n(u)&&n(h)){var g=r.ab2xy(+u,+h,!0),v=r.isVisible(+u,+h);v||(d=!0),p[c]={x:g[0],y:g[1],a:u,b:h,vis:v}}else p[c]={x:!1,y:!1};return e._needsCull=d,p[0].carpet=r,p[0].trace=e,s(e,f),a(t,e),i(p,e),o(p,e),p}}},{\"../carpet/lookup_carpetid\":916,\"../scatter/arrays_to_calcdata\":1110,\"../scatter/calc\":1112,\"../scatter/calc_selection\":1113,\"../scatter/colorscale_calc\":1114,\"fast-isnumeric\":226}],1145:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../scatter/constants\"),i=t(\"../scatter/subtypes\"),o=t(\"../scatter/marker_defaults\"),s=t(\"../scatter/line_defaults\"),l=t(\"../scatter/line_shape_defaults\"),c=t(\"../scatter/text_defaults\"),u=t(\"../scatter/fillcolor_defaults\"),h=t(\"./attributes\");e.exports=function(t,e,r,f){function p(r,a){return n.coerce(t,e,h,r,a)}p(\"carpet\"),e.xaxis=\"x\",e.yaxis=\"y\";var d=p(\"a\"),g=p(\"b\"),v=Math.min(d.length,g.length);if(v){e._length=v,p(\"text\"),p(\"texttemplate\"),p(\"hovertext\"),p(\"mode\",v<a.PTS_LINESONLY?\"lines+markers\":\"lines\"),i.hasLines(e)&&(s(t,e,r,f,p),l(t,e,p),p(\"connectgaps\")),i.hasMarkers(e)&&o(t,e,r,f,p,{gradient:!0}),i.hasText(e)&&c(t,e,f,p);var m=[];(i.hasMarkers(e)||i.hasText(e))&&(p(\"marker.maxdisplayed\"),m.push(\"points\")),p(\"fill\"),\"none\"!==e.fill&&(u(t,e,r,p),i.hasLines(e)||l(t,e,p)),\"tonext\"!==e.fill&&\"toself\"!==e.fill||m.push(\"fills\"),\"fills\"!==p(\"hoveron\",m.join(\"+\")||\"points\")&&p(\"hovertemplate\"),n.coerceSelectionMarkerOpacity(e,p)}else e.visible=!1}},{\"../../lib\":719,\"../scatter/constants\":1115,\"../scatter/fillcolor_defaults\":1119,\"../scatter/line_defaults\":1123,\"../scatter/line_shape_defaults\":1125,\"../scatter/marker_defaults\":1129,\"../scatter/subtypes\":1134,\"../scatter/text_defaults\":1135,\"./attributes\":1143}],1146:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,a){var i=n[a];return t.a=i.a,t.b=i.b,t.y=i.y,t}},{}],1147:[function(t,e,r){\"use strict\";var n=t(\"../scatter/hover\"),a=t(\"../../lib\").fillText;e.exports=function(t,e,r,i){var o=n(t,e,r,i);if(o&&!1!==o[0].index){var s=o[0];if(void 0===s.index){var l=1-s.y0/t.ya._length,c=t.xa._length,u=c*l/2,h=c-u;return s.x0=Math.max(Math.min(s.x0,h),u),s.x1=Math.max(Math.min(s.x1,h),u),o}var f=s.cd[s.index];s.a=f.a,s.b=f.b,s.xLabelVal=void 0,s.yLabelVal=void 0;var p=s.trace,d=p._carpet,g=d.ab2ij([f.a,f.b]),v=Math.floor(g[0]),m=g[0]-v,y=Math.floor(g[1]),x=g[1]-y,b=d.evalxy([],v,y,m,x);s.yLabel=b[1].toFixed(3),delete s.text;var _=[];if(!p.hovertemplate){var w=(f.hi||p.hoverinfo).split(\"+\");-1!==w.indexOf(\"all\")&&(w=[\"a\",\"b\",\"text\"]),-1!==w.indexOf(\"a\")&&k(d.aaxis,f.a),-1!==w.indexOf(\"b\")&&k(d.baxis,f.b),_.push(\"y: \"+s.yLabel),-1!==w.indexOf(\"text\")&&a(f,p,_),s.extraText=_.join(\"<br>\")}return o}function k(t,e){var r;r=t.labelprefix&&t.labelprefix.length>0?t.labelprefix.replace(/ = $/,\"\"):t._hovertitle,_.push(r+\": \"+e.toFixed(3)+t.labelsuffix)}}},{\"../../lib\":719,\"../scatter/hover\":1121}],1148:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../scatter/marker_colorbar\"),calc:t(\"./calc\"),plot:t(\"./plot\"),style:t(\"../scatter/style\").style,styleOnSelect:t(\"../scatter/style\").styleOnSelect,hoverPoints:t(\"./hover\"),selectPoints:t(\"../scatter/select\"),eventData:t(\"./event_data\"),moduleType:\"trace\",name:\"scattercarpet\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"svg\",\"carpet\",\"symbols\",\"showLegend\",\"carpetDependent\",\"zoomScale\"],meta:{}}},{\"../../plots/cartesian\":778,\"../scatter/marker_colorbar\":1128,\"../scatter/select\":1131,\"../scatter/style\":1133,\"./attributes\":1143,\"./calc\":1144,\"./defaults\":1145,\"./event_data\":1146,\"./hover\":1147,\"./plot\":1149}],1149:[function(t,e,r){\"use strict\";var n=t(\"../scatter/plot\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"../../components/drawing\");e.exports=function(t,e,r,o){var s,l,c,u=r[0][0].carpet,h={xaxis:a.getFromId(t,u.xaxis||\"x\"),yaxis:a.getFromId(t,u.yaxis||\"y\"),plot:e.plot};for(n(t,h,r,o),s=0;s<r.length;s++)l=r[s][0].trace,c=o.selectAll(\"g.trace\"+l.uid+\" .js-line\"),i.setClipUrl(c,r[s][0].carpet._clipPathId,t)}},{\"../../components/drawing\":615,\"../../plots/cartesian/axes\":767,\"../scatter/plot\":1130}],1150:[function(t,e,r){\"use strict\";var n=t(\"../../plots/template_attributes\").hovertemplateAttrs,a=t(\"../../plots/template_attributes\").texttemplateAttrs,i=t(\"../scatter/attributes\"),o=t(\"../../plots/attributes\"),s=t(\"../../components/colorscale/attributes\"),l=t(\"../../components/drawing/attributes\").dash,c=t(\"../../lib/extend\").extendFlat,u=t(\"../../plot_api/edit_types\").overrideAll,h=i.marker,f=i.line,p=h.line;e.exports=u({lon:{valType:\"data_array\"},lat:{valType:\"data_array\"},locations:{valType:\"data_array\"},locationmode:{valType:\"enumerated\",values:[\"ISO-3\",\"USA-states\",\"country names\"],dflt:\"ISO-3\"},mode:c({},i.mode,{dflt:\"markers\"}),text:c({},i.text,{}),texttemplate:a({editType:\"plot\"},{keys:[\"lat\",\"lon\",\"location\",\"text\"]}),hovertext:c({},i.hovertext,{}),textfont:i.textfont,textposition:i.textposition,line:{color:f.color,width:f.width,dash:l},connectgaps:i.connectgaps,marker:c({symbol:h.symbol,opacity:h.opacity,size:h.size,sizeref:h.sizeref,sizemin:h.sizemin,sizemode:h.sizemode,colorbar:h.colorbar,line:c({width:p.width},s(\"marker.line\")),gradient:h.gradient},s(\"marker\")),fill:{valType:\"enumerated\",values:[\"none\",\"toself\"],dflt:\"none\"},fillcolor:i.fillcolor,selected:i.selected,unselected:i.unselected,hoverinfo:c({},o.hoverinfo,{flags:[\"lon\",\"lat\",\"location\",\"text\",\"name\"]}),hovertemplate:n()},\"calc\",\"nested\")},{\"../../components/colorscale/attributes\":601,\"../../components/drawing/attributes\":614,\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../../plots/attributes\":764,\"../../plots/template_attributes\":843,\"../scatter/attributes\":1111}],1151:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../constants/numerical\").BADNUM,i=t(\"../scatter/colorscale_calc\"),o=t(\"../scatter/arrays_to_calcdata\"),s=t(\"../scatter/calc_selection\"),l=t(\"../../lib\")._;e.exports=function(t,e){for(var r=Array.isArray(e.locations),c=r?e.locations.length:e._length,u=new Array(c),h=0;h<c;h++){var f=u[h]={};if(r){var p=e.locations[h];f.loc=\"string\"==typeof p?p:null}else{var d=e.lon[h],g=e.lat[h];n(d)&&n(g)?f.lonlat=[+d,+g]:f.lonlat=[a,a]}}return o(u,e),i(t,e),s(u,e),c&&(u[0].t={labels:{lat:l(t,\"lat:\")+\" \",lon:l(t,\"lon:\")+\" \"}}),u}},{\"../../constants/numerical\":695,\"../../lib\":719,\"../scatter/arrays_to_calcdata\":1110,\"../scatter/calc_selection\":1113,\"../scatter/colorscale_calc\":1114,\"fast-isnumeric\":226}],1152:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../scatter/subtypes\"),i=t(\"../scatter/marker_defaults\"),o=t(\"../scatter/line_defaults\"),s=t(\"../scatter/text_defaults\"),l=t(\"../scatter/fillcolor_defaults\"),c=t(\"./attributes\");e.exports=function(t,e,r,u){function h(r,a){return n.coerce(t,e,c,r,a)}!function(t,e,r){var n,a,i=0,o=r(\"locations\");if(o)return r(\"locationmode\"),i=o.length;return n=r(\"lon\")||[],a=r(\"lat\")||[],i=Math.min(n.length,a.length),e._length=i,i}(0,e,h)?e.visible=!1:(h(\"text\"),h(\"hovertext\"),h(\"hovertemplate\"),h(\"mode\"),a.hasLines(e)&&(o(t,e,r,u,h),h(\"connectgaps\")),a.hasMarkers(e)&&i(t,e,r,u,h,{gradient:!0}),a.hasText(e)&&(h(\"texttemplate\"),s(t,e,u,h)),h(\"fill\"),\"none\"!==e.fill&&l(t,e,r,h),n.coerceSelectionMarkerOpacity(e,h))}},{\"../../lib\":719,\"../scatter/fillcolor_defaults\":1119,\"../scatter/line_defaults\":1123,\"../scatter/marker_defaults\":1129,\"../scatter/subtypes\":1134,\"../scatter/text_defaults\":1135,\"./attributes\":1150}],1153:[function(t,e,r){\"use strict\";e.exports=function(t,e){return t.lon=e.lon,t.lat=e.lat,t.location=e.loc?e.loc:null,t}},{}],1154:[function(t,e,r){\"use strict\";var n=t(\"../../components/fx\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"../../constants/numerical\").BADNUM,o=t(\"../scatter/get_trace_color\"),s=t(\"../../lib\").fillText,l=t(\"./attributes\");e.exports=function(t,e,r){var c=t.cd,u=c[0].trace,h=t.xa,f=t.ya,p=t.subplot,d=p.projection.isLonLatOverEdges,g=p.project;if(n.getClosest(c,function(t){var n=t.lonlat;if(n[0]===i)return 1/0;if(d(n))return 1/0;var a=g(n),o=g([e,r]),s=Math.abs(a[0]-o[0]),l=Math.abs(a[1]-o[1]),c=Math.max(3,t.mrc||0);return Math.max(Math.sqrt(s*s+l*l)-c,1-3/c)},t),!1!==t.index){var v=c[t.index],m=v.lonlat,y=[h.c2p(m),f.c2p(m)],x=v.mrc||1;t.x0=y[0]-x,t.x1=y[0]+x,t.y0=y[1]-x,t.y1=y[1]+x,t.loc=v.loc,t.lon=m[0],t.lat=m[1];var b=p.mockAxis;return t.lonLabel=a.tickText(b,b.c2l(t.lon),\"hover\").text,t.latLabel=a.tickText(b,b.c2l(t.lat),\"hover\").text,t.color=o(u,v),t.extraText=function(t,e,r,n){if(t.hovertemplate)return;var a=e.hi||t.hoverinfo,i=\"all\"===a?l.hoverinfo.flags:a.split(\"+\"),o=-1!==i.indexOf(\"location\")&&Array.isArray(t.locations),c=-1!==i.indexOf(\"lon\"),u=-1!==i.indexOf(\"lat\"),h=-1!==i.indexOf(\"text\"),f=[];function p(t){return t+\"\\xb0\"}o?f.push(e.loc):c&&u?f.push(\"(\"+p(r.lonLabel)+\", \"+p(r.latLabel)+\")\"):c?f.push(n.lon+p(r.lonLabel)):u&&f.push(n.lat+p(r.latLabel));h&&s(e,t,f);return f.join(\"<br>\")}(u,v,t,c[0].t.labels),t.hovertemplate=u.hovertemplate,[t]}}},{\"../../components/fx\":632,\"../../constants/numerical\":695,\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../scatter/get_trace_color\":1120,\"./attributes\":1150}],1155:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../scatter/marker_colorbar\"),calc:t(\"./calc\"),plot:t(\"./plot\"),style:t(\"./style\"),styleOnSelect:t(\"../scatter/style\").styleOnSelect,hoverPoints:t(\"./hover\"),eventData:t(\"./event_data\"),selectPoints:t(\"./select\"),moduleType:\"trace\",name:\"scattergeo\",basePlotModule:t(\"../../plots/geo\"),categories:[\"geo\",\"symbols\",\"showLegend\",\"scatter-like\"],meta:{}}},{\"../../plots/geo\":797,\"../scatter/marker_colorbar\":1128,\"../scatter/style\":1133,\"./attributes\":1150,\"./calc\":1151,\"./defaults\":1152,\"./event_data\":1153,\"./hover\":1154,\"./plot\":1156,\"./select\":1157,\"./style\":1158}],1156:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../lib\"),i=t(\"../../constants/numerical\").BADNUM,o=t(\"../../lib/topojson_utils\").getTopojsonFeatures,s=t(\"../../lib/geo_location_utils\").locationToFeature,l=t(\"../../lib/geojson_utils\"),c=t(\"../scatter/subtypes\"),u=t(\"./style\");function h(t,e){var r=t[0].trace;if(Array.isArray(r.locations))for(var n=o(r,e),a=r.locationmode,l=0;l<t.length;l++){var c=t[l],u=s(a,c.loc,n);c.lonlat=u?u.properties.ct:[i,i]}}e.exports=function(t,e,r){for(var o=0;o<r.length;o++)h(r[o],e.topojson);function s(t,e){t.lonlat[0]===i&&n.select(e).remove()}var f=e.layers.frontplot.select(\".scatterlayer\"),p=a.makeTraceGroups(f,r,\"trace scattergeo\");p.selectAll(\"*\").remove(),p.each(function(e){var r=n.select(this),i=e[0].trace;if(c.hasLines(i)||\"none\"!==i.fill){var o=l.calcTraceToLineCoords(e),h=\"none\"!==i.fill?l.makePolygon(o):l.makeLine(o);r.selectAll(\"path.js-line\").data([{geojson:h,trace:i}]).enter().append(\"path\").classed(\"js-line\",!0).style(\"stroke-miterlimit\",2)}c.hasMarkers(i)&&r.selectAll(\"path.point\").data(a.identity).enter().append(\"path\").classed(\"point\",!0).each(function(t){s(t,this)}),c.hasText(i)&&r.selectAll(\"g\").data(a.identity).enter().append(\"g\").append(\"text\").each(function(t){s(t,this)}),u(t,e)})}},{\"../../constants/numerical\":695,\"../../lib\":719,\"../../lib/geo_location_utils\":713,\"../../lib/geojson_utils\":714,\"../../lib/topojson_utils\":746,\"../scatter/subtypes\":1134,\"./style\":1158,d3:164}],1157:[function(t,e,r){\"use strict\";var n=t(\"../scatter/subtypes\"),a=t(\"../../constants/numerical\").BADNUM;e.exports=function(t,e){var r,i,o,s,l,c=t.cd,u=t.xaxis,h=t.yaxis,f=[],p=c[0].trace;if(!n.hasMarkers(p)&&!n.hasText(p))return[];if(!1===e)for(l=0;l<c.length;l++)c[l].selected=0;else for(l=0;l<c.length;l++)(i=(r=c[l]).lonlat)[0]!==a&&(o=u.c2p(i),s=h.c2p(i),e.contains([o,s],null,l,t)?(f.push({pointNumber:l,lon:i[0],lat:i[1]}),r.selected=1):r.selected=0);return f}},{\"../../constants/numerical\":695,\"../scatter/subtypes\":1134}],1158:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/drawing\"),i=t(\"../../components/color\"),o=t(\"../scatter/style\"),s=o.stylePoints,l=o.styleText;e.exports=function(t,e){e&&function(t,e){var r=e[0].trace,o=e[0].node3;o.style(\"opacity\",e[0].trace.opacity),s(o,r,t),l(o,r,t),o.selectAll(\"path.js-line\").style(\"fill\",\"none\").each(function(t){var e=n.select(this),r=t.trace,o=r.line||{};e.call(i.stroke,o.color).call(a.dashLine,o.dash||\"\",o.width||0),\"none\"!==r.fill&&e.call(i.fill,r.fillcolor)})}(t,e)}},{\"../../components/color\":594,\"../../components/drawing\":615,\"../scatter/style\":1133,d3:164}],1159:[function(t,e,r){\"use strict\";var n=t(\"../../plots/attributes\"),a=t(\"../scatter/attributes\"),i=t(\"../../components/colorscale/attributes\"),o=t(\"../../lib/extend\").extendFlat,s=t(\"../../plot_api/edit_types\").overrideAll,l=t(\"./constants\").DASHES,c=a.line,u=a.marker,h=u.line,f=e.exports=s({x:a.x,x0:a.x0,dx:a.dx,y:a.y,y0:a.y0,dy:a.dy,text:a.text,hovertext:a.hovertext,textposition:a.textposition,textfont:a.textfont,mode:{valType:\"flaglist\",flags:[\"lines\",\"markers\",\"text\"],extras:[\"none\"]},line:{color:c.color,width:c.width,shape:{valType:\"enumerated\",values:[\"linear\",\"hv\",\"vh\",\"hvh\",\"vhv\"],dflt:\"linear\",editType:\"plot\"},dash:{valType:\"enumerated\",values:Object.keys(l),dflt:\"solid\"}},marker:o({},i(\"marker\"),{symbol:u.symbol,size:u.size,sizeref:u.sizeref,sizemin:u.sizemin,sizemode:u.sizemode,opacity:u.opacity,colorbar:u.colorbar,line:o({},i(\"marker.line\"),{width:h.width})}),connectgaps:a.connectgaps,fill:o({},a.fill,{dflt:\"none\"}),fillcolor:a.fillcolor,selected:{marker:a.selected.marker,textfont:a.selected.textfont},unselected:{marker:a.unselected.marker,textfont:a.unselected.textfont},opacity:n.opacity},\"calc\",\"nested\");f.x.editType=f.y.editType=f.x0.editType=f.y0.editType=\"calc+clearAxisTypes\",f.hovertemplate=a.hovertemplate,f.texttemplate=a.texttemplate},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../../plots/attributes\":764,\"../scatter/attributes\":1111,\"./constants\":1161}],1160:[function(t,e,r){\"use strict\";var n=t(\"point-cluster\"),a=t(\"../../lib\"),i=t(\"../../plots/cartesian/axis_ids\"),o=t(\"../../plots/cartesian/autorange\").findExtremes,s=t(\"../scatter/calc\"),l=s.calcMarkerSize,c=s.calcAxisExpansion,u=s.setFirstScatter,h=t(\"../scatter/colorscale_calc\"),f=t(\"./convert\"),p=t(\"./scene_update\"),d=t(\"../../constants/numerical\").BADNUM,g=t(\"./constants\").TOO_MANY_POINTS;function v(t,e,r){var n=t._extremes[e._id],a=o(e,r._bnds,{padded:!0});n.min=n.min.concat(a.min),n.max=n.max.concat(a.max)}e.exports=function(t,e){var r,o,s,m=t._fullLayout,y=i.getFromId(t,e.xaxis),x=i.getFromId(t,e.yaxis),b=m._plots[e.xaxis+e.yaxis],_=e._length,w=_>=g,k=2*_,T={},A=y.makeCalcdata(e,\"x\"),M=x.makeCalcdata(e,\"y\"),S=new Array(k);for(r=0;r<_;r++)o=A[r],s=M[r],S[2*r]=o===d?NaN:o,S[2*r+1]=s===d?NaN:s;if(\"log\"===y.type)for(r=0;r<k;r+=2)S[r]=y.c2l(S[r]);if(\"log\"===x.type)for(r=1;r<k;r+=2)S[r]=x.c2l(S[r]);if(w&&\"log\"!==y.type&&\"log\"!==x.type)T.tree=n(S);else{var E=T.ids=new Array(_);for(r=0;r<_;r++)E[r]=r}h(t,e);var C,L=function(t,e,r,n,i,o){var s=f.style(t,r);s.marker&&(s.marker.positions=n);s.line&&n.length>1&&a.extendFlat(s.line,f.linePositions(t,r,n));if(s.errorX||s.errorY){var l=f.errorBarPositions(t,r,n,i,o);s.errorX&&a.extendFlat(s.errorX,l.x),s.errorY&&a.extendFlat(s.errorY,l.y)}s.text&&(a.extendFlat(s.text,{positions:n},f.textPosition(t,r,s.text,s.marker)),a.extendFlat(s.textSel,{positions:n},f.textPosition(t,r,s.text,s.markerSel)),a.extendFlat(s.textUnsel,{positions:n},f.textPosition(t,r,s.text,s.markerUnsel)));return s}(t,0,e,S,A,M),P=p(t,b);return u(m,e),w?L.marker&&(C=2*(L.marker.sizeAvg||Math.max(L.marker.size,3))):C=l(e,_),c(t,e,y,x,A,M,C),L.errorX&&v(e,y,L.errorX),L.errorY&&v(e,x,L.errorY),L.fill&&!P.fill2d&&(P.fill2d=!0),L.marker&&!P.scatter2d&&(P.scatter2d=!0),L.line&&!P.line2d&&(P.line2d=!0),!L.errorX&&!L.errorY||P.error2d||(P.error2d=!0),L.text&&!P.glText&&(P.glText=!0),L.marker&&(L.marker.snap=T.tree||g),P.lineOptions.push(L.line),P.errorXOptions.push(L.errorX),P.errorYOptions.push(L.errorY),P.fillOptions.push(L.fill),P.markerOptions.push(L.marker),P.markerSelectedOptions.push(L.markerSel),P.markerUnselectedOptions.push(L.markerUnsel),P.textOptions.push(L.text),P.textSelectedOptions.push(L.textSel),P.textUnselectedOptions.push(L.textUnsel),P.selectBatch.push([]),P.unselectBatch.push([]),T._scene=P,T.index=P.count,T.x=A,T.y=M,T.positions=S,P.count++,[{x:!1,y:!1,t:T,trace:e}]}},{\"../../constants/numerical\":695,\"../../lib\":719,\"../../plots/cartesian/autorange\":766,\"../../plots/cartesian/axis_ids\":770,\"../scatter/calc\":1112,\"../scatter/colorscale_calc\":1114,\"./constants\":1161,\"./convert\":1162,\"./scene_update\":1168,\"point-cluster\":470}],1161:[function(t,e,r){\"use strict\";e.exports={TOO_MANY_POINTS:1e5,SYMBOL_SDF_SIZE:200,SYMBOL_SIZE:20,SYMBOL_STROKE:1,DOT_RE:/-dot/,OPEN_RE:/-open/,DASHES:{solid:[1],dot:[1,1],dash:[4,1],longdash:[8,1],dashdot:[4,1,1,1],longdashdot:[8,1,1,1]}}},{}],1162:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"svg-path-sdf\"),i=t(\"color-normalize\"),o=t(\"../../registry\"),s=t(\"../../lib\"),l=t(\"../../components/drawing\"),c=t(\"../../plots/cartesian/axis_ids\"),u=t(\"../../lib/gl_format_color\").formatColor,h=t(\"../scatter/subtypes\"),f=t(\"../scatter/make_bubble_size_func\"),p=t(\"./constants\"),d=t(\"../../constants/interactions\").DESELECTDIM,g={start:1,left:1,end:-1,right:-1,middle:0,center:0,bottom:1,top:-1},v=t(\"../../components/fx/helpers\").appendArrayPointValue;function m(t,e){var r,a=t._length,i=t.textfont,o=t.textposition,l=Array.isArray(o)?o:[o],c=i.color,u=i.size,h=i.family,f={},p=t.texttemplate;if(p){f.text=[];var d=Array.isArray(p),g=d?Math.min(p.length,a):a,m=d?function(t){return p[t]}:function(){return p},y=e._fullLayout._d3locale;for(r=0;r<g;r++){var x={};v(x,t,r),f.text.push(s.texttemplateString(m(r),x,y,x,t._meta||{}))}}else Array.isArray(t.text)&&t.text.length<a?f.text=t.text.slice():f.text=t.text;if(Array.isArray(f.text))for(r=f.text.length;r<a;r++)f.text[r]=\"\";for(f.opacity=t.opacity,f.font={},f.align=[],f.baseline=[],r=0;r<l.length;r++){var b=l[r].split(/\\s+/);switch(b[1]){case\"left\":f.align.push(\"right\");break;case\"right\":f.align.push(\"left\");break;default:f.align.push(b[1])}switch(b[0]){case\"top\":f.baseline.push(\"bottom\");break;case\"bottom\":f.baseline.push(\"top\");break;default:f.baseline.push(b[0])}}if(Array.isArray(c))for(f.color=new Array(a),r=0;r<a;r++)f.color[r]=c[r];else f.color=c;if(Array.isArray(u)||Array.isArray(h))for(f.font=new Array(a),r=0;r<a;r++){var _=f.font[r]={};_.size=Array.isArray(u)?n(u[r])?u[r]:0:u,_.family=Array.isArray(h)?h[r]:h}else f.font={size:u,family:h};return f}function y(t){var e,r,n=t._length,a=t.marker,o={},l=Array.isArray(a.symbol),c=s.isArrayOrTypedArray(a.color),h=s.isArrayOrTypedArray(a.line.color),d=s.isArrayOrTypedArray(a.opacity),g=s.isArrayOrTypedArray(a.size),v=s.isArrayOrTypedArray(a.line.width);if(l||(r=p.OPEN_RE.test(a.symbol)),l||c||h||d){o.colors=new Array(n),o.borderColors=new Array(n);var m=u(a,a.opacity,n),y=u(a.line,a.opacity,n);if(!Array.isArray(y[0])){var x=y;for(y=Array(n),e=0;e<n;e++)y[e]=x}if(!Array.isArray(m[0])){var b=m;for(m=Array(n),e=0;e<n;e++)m[e]=b}for(o.colors=m,o.borderColors=y,e=0;e<n;e++){if(l){var _=a.symbol[e];r=p.OPEN_RE.test(_)}r&&(y[e]=m[e].slice(),m[e]=m[e].slice(),m[e][3]=0)}o.opacity=t.opacity}else r?(o.color=i(a.color,\"uint8\"),o.color[3]=0,o.borderColor=i(a.color,\"uint8\")):(o.color=i(a.color,\"uint8\"),o.borderColor=i(a.line.color,\"uint8\")),o.opacity=t.opacity*a.opacity;if(l)for(o.markers=new Array(n),e=0;e<n;e++)o.markers[e]=S(a.symbol[e]);else o.marker=S(a.symbol);var w,k=f(t);if(g||v){var T,A=o.sizes=new Array(n),M=o.borderSizes=new Array(n),E=0;if(g){for(e=0;e<n;e++)A[e]=k(a.size[e]),E+=A[e];T=E/n}else for(w=k(a.size),e=0;e<n;e++)A[e]=w;if(v)for(e=0;e<n;e++)M[e]=a.line.width[e]/2;else for(w=a.line.width/2,e=0;e<n;e++)M[e]=w;o.sizeAvg=T}else o.size=k(a&&a.size||10),o.borderSizes=k(a.line.width);return o}function x(t,e){var r=t.marker,n={};return e?(e.marker&&e.marker.symbol?n=y(s.extendFlat({},r,e.marker)):e.marker&&(e.marker.size&&(n.size=e.marker.size/2),e.marker.color&&(n.colors=e.marker.color),void 0!==e.marker.opacity&&(n.opacity=e.marker.opacity)),n):n}function b(t,e){var r={};if(!e)return r;if(e.textfont){var n={opacity:1,text:t.text,textposition:t.textposition,textfont:s.extendFlat({},t.textfont)};e.textfont&&s.extendFlat(n.textfont,e.textfont),r=m(n)}return r}function _(t,e){var r={capSize:2*e.width,lineWidth:e.thickness,color:e.color};return e.copy_ystyle&&(r=t.error_y),r}var w=p.SYMBOL_SDF_SIZE,k=p.SYMBOL_SIZE,T=p.SYMBOL_STROKE,A={},M=l.symbolFuncs[0](.05*k);function S(t){if(\"circle\"===t)return null;var e,r,n=l.symbolNumber(t),i=l.symbolFuncs[n%100],o=!!l.symbolNoDot[n%100],s=!!l.symbolNoFill[n%100],c=p.DOT_RE.test(t);return A[t]?A[t]:(e=c&&!o?i(1.1*k)+M:i(k),r=a(e,{w:w,h:w,viewBox:[-k,-k,k,k],stroke:s?T:-T}),A[t]=r,r||null)}e.exports={style:function(t,e){var r,n={marker:void 0,markerSel:void 0,markerUnsel:void 0,line:void 0,fill:void 0,errorX:void 0,errorY:void 0,text:void 0,textSel:void 0,textUnsel:void 0};if(!0!==e.visible)return n;if(h.hasText(e)&&(n.text=m(e,t),n.textSel=b(e,e.selected),n.textUnsel=b(e,e.unselected)),h.hasMarkers(e)&&(n.marker=y(e),n.markerSel=x(e,e.selected),n.markerUnsel=x(e,e.unselected),!e.unselected&&Array.isArray(e.marker.opacity))){var a=e.marker.opacity;for(n.markerUnsel.opacity=new Array(a.length),r=0;r<a.length;r++)n.markerUnsel.opacity[r]=d*a[r]}if(h.hasLines(e)){n.line={overlay:!0,thickness:e.line.width,color:e.line.color,opacity:e.opacity};var i=(p.DASHES[e.line.dash]||[1]).slice();for(r=0;r<i.length;++r)i[r]*=e.line.width;n.line.dashes=i}return e.error_x&&e.error_x.visible&&(n.errorX=_(e,e.error_x)),e.error_y&&e.error_y.visible&&(n.errorY=_(e,e.error_y)),e.fill&&\"none\"!==e.fill&&(n.fill={closed:!0,fill:e.fillcolor,thickness:0}),n},markerStyle:y,markerSelection:x,linePositions:function(t,e,r){var n,a,i=r.length,o=i/2;if(h.hasLines(e)&&o)if(\"hv\"===e.line.shape){for(n=[],a=0;a<o-1;a++)isNaN(r[2*a])||isNaN(r[2*a+1])?n.push(NaN,NaN,NaN,NaN):(n.push(r[2*a],r[2*a+1]),isNaN(r[2*a+2])||isNaN(r[2*a+3])?n.push(NaN,NaN):n.push(r[2*a+2],r[2*a+1]));n.push(r[i-2],r[i-1])}else if(\"hvh\"===e.line.shape){for(n=[],a=0;a<o-1;a++)if(isNaN(r[2*a])||isNaN(r[2*a+1])||isNaN(r[2*a+2])||isNaN(r[2*a+3]))isNaN(r[2*a])||isNaN(r[2*a+1])?n.push(NaN,NaN):n.push(r[2*a],r[2*a+1]),n.push(NaN,NaN);else{var s=(r[2*a]+r[2*a+2])/2;n.push(r[2*a],r[2*a+1],s,r[2*a+1],s,r[2*a+3])}n.push(r[i-2],r[i-1])}else if(\"vhv\"===e.line.shape){for(n=[],a=0;a<o-1;a++)if(isNaN(r[2*a])||isNaN(r[2*a+1])||isNaN(r[2*a+2])||isNaN(r[2*a+3]))isNaN(r[2*a])||isNaN(r[2*a+1])?n.push(NaN,NaN):n.push(r[2*a],r[2*a+1]),n.push(NaN,NaN);else{var l=(r[2*a+1]+r[2*a+3])/2;n.push(r[2*a],r[2*a+1],r[2*a],l,r[2*a+2],l)}n.push(r[i-2],r[i-1])}else if(\"vh\"===e.line.shape){for(n=[],a=0;a<o-1;a++)isNaN(r[2*a])||isNaN(r[2*a+1])?n.push(NaN,NaN,NaN,NaN):(n.push(r[2*a],r[2*a+1]),isNaN(r[2*a+2])||isNaN(r[2*a+3])?n.push(NaN,NaN):n.push(r[2*a],r[2*a+3]));n.push(r[i-2],r[i-1])}else n=r;var c=!1;for(a=0;a<n.length;a++)if(isNaN(n[a])){c=!0;break}var u=c||n.length>p.TOO_MANY_POINTS?\"rect\":h.hasMarkers(e)?\"rect\":\"round\";if(c&&e.connectgaps){var f=n[0],d=n[1];for(a=0;a<n.length;a+=2)isNaN(n[a])||isNaN(n[a+1])?(n[a]=f,n[a+1]=d):(f=n[a],d=n[a+1])}return{join:u,positions:n}},errorBarPositions:function(t,e,r,a,i){var s=o.getComponentMethod(\"errorbars\",\"makeComputeError\"),l=c.getFromId(t,e.xaxis),u=c.getFromId(t,e.yaxis),h=r.length/2,f={};function p(t,a){var i=a._id.charAt(0),o=e[\"error_\"+i];if(o&&o.visible&&(\"linear\"===a.type||\"log\"===a.type)){for(var l=s(o),c={x:0,y:1}[i],u={x:[0,1,2,3],y:[2,3,0,1]}[i],p=new Float64Array(4*h),d=1/0,g=-1/0,v=0,m=0;v<h;v++,m+=4){var y=t[v];if(n(y)){var x=r[2*v+c],b=l(y,v),_=b[0],w=b[1];if(n(_)&&n(w)){var k=y-_,T=y+w;p[m+u[0]]=x-a.c2l(k),p[m+u[1]]=a.c2l(T)-x,p[m+u[2]]=0,p[m+u[3]]=0,d=Math.min(d,y-_),g=Math.max(g,y+w)}}}f[i]={positions:r,errors:p,_bnds:[d,g]}}}return p(a,l),p(i,u),f},textPosition:function(t,e,r,n){var a,i=e._length,o={};if(h.hasMarkers(e)){var s=r.font,l=r.align,c=r.baseline;for(o.offset=new Array(i),a=0;a<i;a++){var u=n.sizes?n.sizes[a]:n.size,f=Array.isArray(s)?s[a].size:s.size,p=Array.isArray(l)?l.length>1?l[a]:l[0]:l,d=Array.isArray(c)?c.length>1?c[a]:c[0]:c,v=g[p],m=g[d],y=u?u/.8+1:0,x=-m*y-.5*m;o.offset[a]=[v*y/f,x/f]}}return o}}},{\"../../components/drawing\":615,\"../../components/fx/helpers\":629,\"../../constants/interactions\":694,\"../../lib\":719,\"../../lib/gl_format_color\":716,\"../../plots/cartesian/axis_ids\":770,\"../../registry\":848,\"../scatter/make_bubble_size_func\":1127,\"../scatter/subtypes\":1134,\"./constants\":1161,\"color-normalize\":121,\"fast-isnumeric\":226,\"svg-path-sdf\":536}],1163:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../registry\"),i=t(\"./attributes\"),o=t(\"../scatter/constants\"),s=t(\"../scatter/subtypes\"),l=t(\"../scatter/xy_defaults\"),c=t(\"../scatter/marker_defaults\"),u=t(\"../scatter/line_defaults\"),h=t(\"../scatter/fillcolor_defaults\"),f=t(\"../scatter/text_defaults\");e.exports=function(t,e,r,p){function d(r,a){return n.coerce(t,e,i,r,a)}var g=!!t.marker&&/-open/.test(t.marker.symbol),v=s.isBubble(t),m=l(t,e,p,d);if(m){var y=m<o.PTS_LINESONLY?\"lines+markers\":\"lines\";d(\"text\"),d(\"hovertext\"),d(\"hovertemplate\"),d(\"mode\",y),s.hasLines(e)&&(d(\"connectgaps\"),u(t,e,r,p,d),d(\"line.shape\")),s.hasMarkers(e)&&(c(t,e,r,p,d),d(\"marker.line.width\",g||v?1:0)),s.hasText(e)&&(d(\"texttemplate\"),f(t,e,p,d));var x=(e.line||{}).color,b=(e.marker||{}).color;d(\"fill\"),\"none\"!==e.fill&&h(t,e,r,d);var _=a.getComponentMethod(\"errorbars\",\"supplyDefaults\");_(t,e,x||b||r,{axis:\"y\"}),_(t,e,x||b||r,{axis:\"x\",inherit:\"y\"}),n.coerceSelectionMarkerOpacity(e,d)}else e.visible=!1}},{\"../../lib\":719,\"../../registry\":848,\"../scatter/constants\":1115,\"../scatter/fillcolor_defaults\":1119,\"../scatter/line_defaults\":1123,\"../scatter/marker_defaults\":1129,\"../scatter/subtypes\":1134,\"../scatter/text_defaults\":1135,\"../scatter/xy_defaults\":1136,\"./attributes\":1159}],1164:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/color\"),i=t(\"../../constants/interactions\").DESELECTDIM;e.exports={styleTextSelection:function(t){var e,r,o=t[0],s=o.trace,l=o.t,c=l._scene,u=l.index,h=c.selectBatch[u],f=c.unselectBatch[u],p=c.textOptions[u],d=c.textSelectedOptions[u]||{},g=c.textUnselectedOptions[u]||{},v=n.extendFlat({},p);if(h.length||f.length){var m=d.color,y=g.color,x=p.color,b=Array.isArray(x);for(v.color=new Array(s._length),e=0;e<h.length;e++)r=h[e],v.color[r]=m||(b?x[r]:x);for(e=0;e<f.length;e++){r=f[e];var _=b?x[r]:x;v.color[r]=y||(m?_:a.addOpacity(_,i))}}c.glText[u].update(v)}}},{\"../../components/color\":594,\"../../constants/interactions\":694,\"../../lib\":719}],1165:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\"),i=t(\"../scatter/get_trace_color\");function o(t,e,r,o){var s=t.xa,l=t.ya,c=t.distance,u=t.dxy,h=t.index,f={pointNumber:h,x:e[h],y:r[h]};f.tx=Array.isArray(o.text)?o.text[h]:o.text,f.htx=Array.isArray(o.hovertext)?o.hovertext[h]:o.hovertext,f.data=Array.isArray(o.customdata)?o.customdata[h]:o.customdata,f.tp=Array.isArray(o.textposition)?o.textposition[h]:o.textposition;var p=o.textfont;p&&(f.ts=Array.isArray(p.size)?p.size[h]:p.size,f.tc=Array.isArray(p.color)?p.color[h]:p.color,f.tf=Array.isArray(p.family)?p.family[h]:p.family);var d=o.marker;d&&(f.ms=a.isArrayOrTypedArray(d.size)?d.size[h]:d.size,f.mo=a.isArrayOrTypedArray(d.opacity)?d.opacity[h]:d.opacity,f.mx=Array.isArray(d.symbol)?d.symbol[h]:d.symbol,f.mc=a.isArrayOrTypedArray(d.color)?d.color[h]:d.color);var g=d&&d.line;g&&(f.mlc=Array.isArray(g.color)?g.color[h]:g.color,f.mlw=a.isArrayOrTypedArray(g.width)?g.width[h]:g.width);var v=d&&d.gradient;v&&\"none\"!==v.type&&(f.mgt=Array.isArray(v.type)?v.type[h]:v.type,f.mgc=Array.isArray(v.color)?v.color[h]:v.color);var m=s.c2p(f.x,!0),y=l.c2p(f.y,!0),x=f.mrc||1,b=o.hoverlabel;b&&(f.hbg=Array.isArray(b.bgcolor)?b.bgcolor[h]:b.bgcolor,f.hbc=Array.isArray(b.bordercolor)?b.bordercolor[h]:b.bordercolor,f.hts=Array.isArray(b.font.size)?b.font.size[h]:b.font.size,f.htc=Array.isArray(b.font.color)?b.font.color[h]:b.font.color,f.htf=Array.isArray(b.font.family)?b.font.family[h]:b.font.family,f.hnl=Array.isArray(b.namelength)?b.namelength[h]:b.namelength);var _=o.hoverinfo;_&&(f.hi=Array.isArray(_)?_[h]:_);var w=o.hovertemplate;w&&(f.ht=Array.isArray(w)?w[h]:w);var k={};k[t.index]=f;var T=a.extendFlat({},t,{color:i(o,f),x0:m-x,x1:m+x,xLabelVal:f.x,y0:y-x,y1:y+x,yLabelVal:f.y,cd:k,distance:c,spikeDistance:u,hovertemplate:f.ht});return f.htx?T.text=f.htx:f.tx?T.text=f.tx:o.text&&(T.text=o.text),a.fillText(f,o,T),n.getComponentMethod(\"errorbars\",\"hoverInfo\")(f,o,T),T}e.exports={hoverPoints:function(t,e,r,n){var a,i,s,l,c,u,h,f,p,d=t.cd,g=d[0].t,v=d[0].trace,m=t.xa,y=t.ya,x=g.x,b=g.y,_=m.c2p(e),w=y.c2p(r),k=t.distance;if(g.tree){var T=m.p2c(_-k),A=m.p2c(_+k),M=y.p2c(w-k),S=y.p2c(w+k);a=\"x\"===n?g.tree.range(Math.min(T,A),Math.min(y._rl[0],y._rl[1]),Math.max(T,A),Math.max(y._rl[0],y._rl[1])):g.tree.range(Math.min(T,A),Math.min(M,S),Math.max(T,A),Math.max(M,S))}else a=g.ids;var E=k;if(\"x\"===n)for(c=0;c<a.length;c++)s=x[a[c]],(u=Math.abs(m.c2p(s)-_))<E&&(E=u,h=y.c2p(b[a[c]])-w,p=Math.sqrt(u*u+h*h),i=a[c]);else for(c=a.length-1;c>-1;c--)s=x[a[c]],l=b[a[c]],u=m.c2p(s)-_,h=y.c2p(l)-w,(f=Math.sqrt(u*u+h*h))<E&&(E=p=f,i=a[c]);return t.index=i,t.distance=E,t.dxy=p,void 0===i?[t]:[o(t,x,b,v)]},calcHover:o}},{\"../../lib\":719,\"../../registry\":848,\"../scatter/get_trace_color\":1120}],1166:[function(t,e,r){\"use strict\";var n=t(\"./hover\");e.exports={moduleType:\"trace\",name:\"scattergl\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"gl\",\"regl\",\"cartesian\",\"symbols\",\"errorBarsOK\",\"showLegend\",\"scatter-like\"],attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),crossTraceDefaults:t(\"../scatter/cross_trace_defaults\"),colorbar:t(\"../scatter/marker_colorbar\"),calc:t(\"./calc\"),plot:t(\"./plot\"),hoverPoints:n.hoverPoints,selectPoints:t(\"./select\"),meta:{}}},{\"../../plots/cartesian\":778,\"../scatter/cross_trace_defaults\":1117,\"../scatter/marker_colorbar\":1128,\"./attributes\":1159,\"./calc\":1160,\"./defaults\":1163,\"./hover\":1165,\"./plot\":1167,\"./select\":1169}],1167:[function(t,e,r){\"use strict\";var n=t(\"regl-scatter2d\"),a=t(\"regl-line2d\"),i=t(\"regl-error2d\"),o=t(\"gl-text\"),s=t(\"../../lib\"),l=t(\"../../lib/prepare_regl\"),c=t(\"../scatter/subtypes\"),u=t(\"../scatter/link_traces\"),h=t(\"./edit_style\").styleTextSelection;e.exports=function(t,e,r){if(r.length){var f,p,d=t._fullLayout,g=e._scene,v=e.xaxis,m=e.yaxis;if(g)if(l(t,[\"ANGLE_instanced_arrays\",\"OES_element_index_uint\"])){var y=g.count,x=d._glcanvas.data()[0].regl;if(u(t,e,r),g.dirty){if(!0===g.error2d&&(g.error2d=i(x)),!0===g.line2d&&(g.line2d=a(x)),!0===g.scatter2d&&(g.scatter2d=n(x)),!0===g.fill2d&&(g.fill2d=a(x)),!0===g.glText)for(g.glText=new Array(y),f=0;f<y;f++)g.glText[f]=new o(x);if(g.glText){if(y>g.glText.length){var b=y-g.glText.length;for(f=0;f<b;f++)g.glText.push(new o(x))}else if(y<g.glText.length){var _=g.glText.length-y;g.glText.splice(y,_).forEach(function(t){t.destroy()})}for(f=0;f<y;f++)g.glText[f].update(g.textOptions[f])}if(g.line2d&&(g.line2d.update(g.lineOptions),g.lineOptions=g.lineOptions.map(function(t){if(t&&t.positions){for(var e=t.positions,r=0;r<e.length&&(isNaN(e[r])||isNaN(e[r+1]));)r+=2;for(var n=e.length-2;n>r&&(isNaN(e[n])||isNaN(e[n+1]));)n-=2;t.positions=e.slice(r,n+2)}return t}),g.line2d.update(g.lineOptions)),g.error2d){var w=(g.errorXOptions||[]).concat(g.errorYOptions||[]);g.error2d.update(w)}g.scatter2d&&g.scatter2d.update(g.markerOptions),g.fillOrder=s.repeat(null,y),g.fill2d&&(g.fillOptions=g.fillOptions.map(function(t,e){var n=r[e];if(t&&n&&n[0]&&n[0].trace){var a,i,o=n[0],s=o.trace,l=o.t,c=g.lineOptions[e],u=[];s._ownfill&&u.push(e),s._nexttrace&&u.push(e+1),u.length&&(g.fillOrder[e]=u);var h,f,p=[],d=c&&c.positions||l.positions;if(\"tozeroy\"===s.fill){for(h=0;h<d.length&&isNaN(d[h+1]);)h+=2;for(f=d.length-2;f>h&&isNaN(d[f+1]);)f-=2;0!==d[h+1]&&(p=[d[h],0]),p=p.concat(d.slice(h,f+2)),0!==d[f+1]&&(p=p.concat([d[f],0]))}else if(\"tozerox\"===s.fill){for(h=0;h<d.length&&isNaN(d[h]);)h+=2;for(f=d.length-2;f>h&&isNaN(d[f]);)f-=2;0!==d[h]&&(p=[0,d[h+1]]),p=p.concat(d.slice(h,f+2)),0!==d[f]&&(p=p.concat([0,d[f+1]]))}else if(\"toself\"===s.fill||\"tonext\"===s.fill){for(p=[],a=0,i=0;i<d.length;i+=2)(isNaN(d[i])||isNaN(d[i+1]))&&((p=p.concat(d.slice(a,i))).push(d[a],d[a+1]),a=i+2);p=p.concat(d.slice(a)),a&&p.push(d[a],d[a+1])}else{var v=s._nexttrace;if(v){var m=g.lineOptions[e+1];if(m){var y=m.positions;if(\"tonexty\"===s.fill){for(p=d.slice(),e=Math.floor(y.length/2);e--;){var x=y[2*e],b=y[2*e+1];isNaN(x)||isNaN(b)||p.push(x,b)}t.fill=v.fillcolor}}}}if(s._prevtrace&&\"tonext\"===s._prevtrace.fill){var _=g.lineOptions[e-1].positions,w=p.length/2,k=[a=w];for(i=0;i<_.length;i+=2)(isNaN(_[i])||isNaN(_[i+1]))&&(k.push(i/2+w+1),a=i+2);p=p.concat(_),t.hole=k}return t.fillmode=s.fill,t.opacity=s.opacity,t.positions=p,t}}),g.fill2d.update(g.fillOptions))}var k=d.dragmode,T=\"lasso\"===k||\"select\"===k,A=d.clickmode.indexOf(\"select\")>-1;for(f=0;f<y;f++){var M=r[f][0],S=M.trace,E=M.t,C=E.index,L=S._length,P=E.x,O=E.y;if(S.selectedpoints||T||A){if(T||(T=!0),S.selectedpoints){var I=g.selectBatch[C]=s.selIndices2selPoints(S),z={};for(p=0;p<I.length;p++)z[I[p]]=1;var D=[];for(p=0;p<L;p++)z[p]||D.push(p);g.unselectBatch[C]=D}var R=E.xpx=new Array(L),F=E.ypx=new Array(L);for(p=0;p<L;p++)R[p]=v.c2p(P[p]),F[p]=m.c2p(O[p])}else E.xpx=E.ypx=null}if(T){if(g.select2d||(g.select2d=n(d._glcanvas.data()[1].regl)),g.scatter2d){var B=new Array(y);for(f=0;f<y;f++)B[f]=g.selectBatch[f].length||g.unselectBatch[f].length?g.markerUnselectedOptions[f]:{};g.scatter2d.update(B)}g.select2d&&(g.select2d.update(g.markerOptions),g.select2d.update(g.markerSelectedOptions)),g.glText&&r.forEach(function(t){var e=((t||[])[0]||{}).trace||{};c.hasText(e)&&h(t)})}else g.scatter2d&&g.scatter2d.update(g.markerOptions);var N={viewport:function(t,e,r){var n=t._size,a=t.width,i=t.height;return[n.l+e.domain[0]*n.w,n.b+r.domain[0]*n.h,a-n.r-(1-e.domain[1])*n.w,i-n.t-(1-r.domain[1])*n.h]}(d,v,m),range:[(v._rl||v.range)[0],(m._rl||m.range)[0],(v._rl||v.range)[1],(m._rl||m.range)[1]]},j=s.repeat(N,g.count);g.fill2d&&g.fill2d.update(j),g.line2d&&g.line2d.update(j),g.error2d&&g.error2d.update(j.concat(j)),g.scatter2d&&g.scatter2d.update(j),g.select2d&&g.select2d.update(j),g.glText&&g.glText.forEach(function(t){t.update(N)})}else g.init()}}},{\"../../lib\":719,\"../../lib/prepare_regl\":732,\"../scatter/link_traces\":1126,\"../scatter/subtypes\":1134,\"./edit_style\":1164,\"gl-text\":318,\"regl-error2d\":491,\"regl-line2d\":492,\"regl-scatter2d\":498}],1168:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e){var r=e._scene,a={count:0,dirty:!0,lineOptions:[],fillOptions:[],markerOptions:[],markerSelectedOptions:[],markerUnselectedOptions:[],errorXOptions:[],errorYOptions:[],textOptions:[],textSelectedOptions:[],textUnselectedOptions:[],selectBatch:[],unselectBatch:[]},i={fill2d:!1,scatter2d:!1,error2d:!1,line2d:!1,glText:!1,select2d:!1};return e._scene||((r=e._scene={}).init=function(){n.extendFlat(r,i,a)},r.init(),r.update=function(t){var e=n.repeat(t,r.count);if(r.fill2d&&r.fill2d.update(e),r.scatter2d&&r.scatter2d.update(e),r.line2d&&r.line2d.update(e),r.error2d&&r.error2d.update(e.concat(e)),r.select2d&&r.select2d.update(e),r.glText)for(var a=0;a<r.count;a++)r.glText[a].update(t)},r.draw=function(){for(var t=r.count,e=r.fill2d,a=r.error2d,i=r.line2d,o=r.scatter2d,s=r.glText,l=r.select2d,c=r.selectBatch,u=r.unselectBatch,h=0;h<t;h++){if(e&&r.fillOrder[h]&&e.draw(r.fillOrder[h]),i&&r.lineOptions[h]&&i.draw(h),a&&(r.errorXOptions[h]&&a.draw(h),r.errorYOptions[h]&&a.draw(h+t)),o&&r.markerOptions[h])if(u[h].length){var f=n.repeat([],r.count);f[h]=u[h],o.draw(f)}else c[h].length||o.draw(h);s[h]&&r.textOptions[h]&&s[h].render()}l&&l.draw(c),r.dirty=!1},r.destroy=function(){r.fill2d&&r.fill2d.destroy&&r.fill2d.destroy(),r.scatter2d&&r.scatter2d.destroy&&r.scatter2d.destroy(),r.error2d&&r.error2d.destroy&&r.error2d.destroy(),r.line2d&&r.line2d.destroy&&r.line2d.destroy(),r.select2d&&r.select2d.destroy&&r.select2d.destroy(),r.glText&&r.glText.forEach(function(t){t.destroy&&t.destroy()}),r.lineOptions=null,r.fillOptions=null,r.markerOptions=null,r.markerSelectedOptions=null,r.markerUnselectedOptions=null,r.errorXOptions=null,r.errorYOptions=null,r.textOptions=null,r.textSelectedOptions=null,r.textUnselectedOptions=null,r.selectBatch=null,r.unselectBatch=null,e._scene=null}),r.dirty||n.extendFlat(r,a),r}},{\"../../lib\":719}],1169:[function(t,e,r){\"use strict\";var n=t(\"../scatter/subtypes\"),a=t(\"./edit_style\").styleTextSelection;e.exports=function(t,e){var r=t.cd,i=[],o=r[0].trace,s=r[0].t,l=o._length,c=s.x,u=s.y,h=s._scene,f=s.index;if(!h)return i;var p=n.hasText(o),d=n.hasMarkers(o),g=!d&&!p;if(!0!==o.visible||g)return i;var v=[],m=[];if(!1!==e&&!e.degenerate)for(var y=0;y<l;y++)e.contains([s.xpx[y],s.ypx[y]],!1,y,t)?(v.push(y),i.push({pointNumber:y,x:c[y],y:u[y]})):m.push(y);if(d){var x=h.scatter2d;if(v.length||m.length){if(!h.selectBatch[f].length&&!h.unselectBatch[f].length){var b=new Array(h.count);b[f]=h.markerUnselectedOptions[f],x.update.apply(x,b)}}else{var _=new Array(h.count);_[f]=h.markerOptions[f],x.update.apply(x,_)}}return h.selectBatch[f]=v,h.unselectBatch[f]=m,p&&a(r),i}},{\"../scatter/subtypes\":1134,\"./edit_style\":1164}],1170:[function(t,e,r){\"use strict\";var n=t(\"../../plots/template_attributes\").hovertemplateAttrs,a=t(\"../../plots/template_attributes\").texttemplateAttrs,i=t(\"../scattergeo/attributes\"),o=t(\"../scatter/attributes\"),s=t(\"../../plots/mapbox/layout_attributes\"),l=t(\"../../plots/attributes\"),c=t(\"../../components/colorscale/attributes\"),u=t(\"../../lib/extend\").extendFlat,h=t(\"../../plot_api/edit_types\").overrideAll,f=i.line,p=i.marker;e.exports=h({lon:i.lon,lat:i.lat,mode:u({},o.mode,{dflt:\"markers\"}),text:u({},o.text,{}),texttemplate:a({editType:\"plot\"},{keys:[\"lat\",\"lon\",\"text\"]}),hovertext:u({},o.hovertext,{}),line:{color:f.color,width:f.width},connectgaps:o.connectgaps,marker:u({symbol:{valType:\"string\",dflt:\"circle\",arrayOk:!0},opacity:p.opacity,size:p.size,sizeref:p.sizeref,sizemin:p.sizemin,sizemode:p.sizemode},c(\"marker\")),fill:i.fill,fillcolor:o.fillcolor,textfont:s.layers.symbol.textfont,textposition:s.layers.symbol.textposition,below:{valType:\"string\"},selected:{marker:o.selected.marker},unselected:{marker:o.unselected.marker},hoverinfo:u({},l.hoverinfo,{flags:[\"lon\",\"lat\",\"text\",\"name\"]}),hovertemplate:n()},\"calc\",\"nested\")},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../../plots/attributes\":764,\"../../plots/mapbox/layout_attributes\":824,\"../../plots/template_attributes\":843,\"../scatter/attributes\":1111,\"../scattergeo/attributes\":1150}],1171:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../lib\"),i=t(\"../../constants/numerical\").BADNUM,o=t(\"../../lib/geojson_utils\"),s=t(\"../../components/colorscale\"),l=t(\"../../components/drawing\"),c=t(\"../scatter/make_bubble_size_func\"),u=t(\"../scatter/subtypes\"),h=t(\"../../plots/mapbox/convert_text_opts\"),f=t(\"../../lib/svg_text_utils\").NEWLINES,p=t(\"../../lib/svg_text_utils\").BR_TAG_ALL;function d(){return{geojson:o.makeBlank(),layout:{visibility:\"none\"},paint:{}}}function g(t){return a.isArrayOrTypedArray(t)?function(t){return t}:t?function(){return t}:v}function v(){return\"\"}function m(t){return t[0]===i}e.exports=function(t,e){var r,i=e[0].trace,y=!0===i.visible&&0!==i._length,x=\"none\"!==i.fill,b=u.hasLines(i),_=u.hasMarkers(i),w=u.hasText(i),k=_&&\"circle\"===i.marker.symbol,T=_&&\"circle\"!==i.marker.symbol,A=d(),M=d(),S=d(),E=d(),C={fill:A,line:M,circle:S,symbol:E};if(!y)return C;if((x||b)&&(r=o.calcTraceToLineCoords(e)),x&&(A.geojson=o.makePolygon(r),A.layout.visibility=\"visible\",a.extendFlat(A.paint,{\"fill-color\":i.fillcolor})),b&&(M.geojson=o.makeLine(r),M.layout.visibility=\"visible\",a.extendFlat(M.paint,{\"line-width\":i.line.width,\"line-color\":i.line.color,\"line-opacity\":i.opacity})),k){var L=function(t){var e,r,i,o,u=t[0].trace,h=u.marker,f=u.selectedpoints,p=a.isArrayOrTypedArray(h.color),d=a.isArrayOrTypedArray(h.size),g=a.isArrayOrTypedArray(h.opacity);function v(t){return u.opacity*t}p&&(r=s.hasColorscale(u,\"marker\")?s.makeColorScaleFuncFromTrace(h):a.identity);d&&(i=c(u));g&&(o=function(t){var e=n(t)?+a.constrain(t,0,1):0;return v(e)});var y,x=[];for(e=0;e<t.length;e++){var b=t[e],_=b.lonlat;if(!m(_)){var w={};r&&(w.mcc=b.mcc=r(b.mc)),i&&(w.mrc=b.mrc=i(b.ms)),o&&(w.mo=o(b.mo)),f&&(w.selected=b.selected||0),x.push({type:\"Feature\",geometry:{type:\"Point\",coordinates:_},properties:w})}}if(f)for(y=l.makeSelectedPointStyleFns(u),e=0;e<x.length;e++){var k=x[e].properties;y.selectedOpacityFn&&(k.mo=v(y.selectedOpacityFn(k))),y.selectedColorFn&&(k.mcc=y.selectedColorFn(k)),y.selectedSizeFn&&(k.mrc=y.selectedSizeFn(k))}return{geojson:{type:\"FeatureCollection\",features:x},mcc:p||y&&y.selectedColorFn?{type:\"identity\",property:\"mcc\"}:h.color,mrc:d||y&&y.selectedSizeFn?{type:\"identity\",property:\"mrc\"}:(T=h.size,T/2),mo:g||y&&y.selectedOpacityFn?{type:\"identity\",property:\"mo\"}:v(h.opacity)};var T}(e);S.geojson=L.geojson,S.layout.visibility=\"visible\",a.extendFlat(S.paint,{\"circle-color\":L.mcc,\"circle-radius\":L.mrc,\"circle-opacity\":L.mo})}if((T||w)&&(E.geojson=function(t,e){for(var r=t[0].trace,n=(r.marker||{}).symbol,i=\"circle\"!==n?g(n):v,o=u.hasText(r)?g(r.text):v,s=[],l=0;l<t.length;l++){var c=t[l];if(!m(c.lonlat)){var h=r.texttemplate;if(h){var d=Array.isArray(h)?h[l]||\"\":h;c.text=c.tx,c.lon=c.lonlat[0],c.lat=c.lonlat[1],c.customdata=c.data,c.txt=a.texttemplateString(d,{},e._fullLayout._d3locale,c,r._meta||{})}var y=h?c.txt:o(c.tx);y&&(y=y.replace(f,\"\").replace(p,\"\\n\")),s.push({type:\"Feature\",geometry:{type:\"Point\",coordinates:c.lonlat},properties:{symbol:i(c.mx),text:y}})}}return{type:\"FeatureCollection\",features:s}}(e,t),a.extendFlat(E.layout,{visibility:\"visible\",\"icon-image\":\"{symbol}-15\",\"text-field\":\"{text}\"}),T&&(a.extendFlat(E.layout,{\"icon-size\":i.marker.size/10}),a.extendFlat(E.paint,{\"icon-opacity\":i.opacity*i.marker.opacity,\"icon-color\":i.marker.color})),w)){var P=(i.marker||{}).size,O=h(i.textposition,P);a.extendFlat(E.layout,{\"text-size\":i.textfont.size,\"text-anchor\":O.anchor,\"text-offset\":O.offset}),a.extendFlat(E.paint,{\"text-color\":i.textfont.color,\"text-opacity\":i.opacity})}return C}},{\"../../components/colorscale\":606,\"../../components/drawing\":615,\"../../constants/numerical\":695,\"../../lib\":719,\"../../lib/geojson_utils\":714,\"../../lib/svg_text_utils\":743,\"../../plots/mapbox/convert_text_opts\":821,\"../scatter/make_bubble_size_func\":1127,\"../scatter/subtypes\":1134,\"fast-isnumeric\":226}],1172:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../scatter/subtypes\"),i=t(\"../scatter/marker_defaults\"),o=t(\"../scatter/line_defaults\"),s=t(\"../scatter/text_defaults\"),l=t(\"../scatter/fillcolor_defaults\"),c=t(\"./attributes\");e.exports=function(t,e,r,u){function h(r,a){return n.coerce(t,e,c,r,a)}if(function(t,e,r){var n=r(\"lon\")||[],a=r(\"lat\")||[],i=Math.min(n.length,a.length);return e._length=i,i}(0,e,h)){if(h(\"text\"),h(\"texttemplate\"),h(\"hovertext\"),h(\"hovertemplate\"),h(\"mode\"),h(\"below\"),a.hasLines(e)&&(o(t,e,r,u,h,{noDash:!0}),h(\"connectgaps\")),a.hasMarkers(e)){i(t,e,r,u,h,{noLine:!0});var f=e.marker;\"circle\"!==f.symbol&&(n.isArrayOrTypedArray(f.size)&&(f.size=f.size[0]),n.isArrayOrTypedArray(f.color)&&(f.color=f.color[0]))}a.hasText(e)&&s(t,e,u,h,{noSelect:!0}),h(\"fill\"),\"none\"!==e.fill&&l(t,e,r,h),n.coerceSelectionMarkerOpacity(e,h)}else e.visible=!1}},{\"../../lib\":719,\"../scatter/fillcolor_defaults\":1119,\"../scatter/line_defaults\":1123,\"../scatter/marker_defaults\":1129,\"../scatter/subtypes\":1134,\"../scatter/text_defaults\":1135,\"./attributes\":1170}],1173:[function(t,e,r){\"use strict\";e.exports=function(t,e){return t.lon=e.lon,t.lat=e.lat,t}},{}],1174:[function(t,e,r){\"use strict\";var n=t(\"../../components/fx\"),a=t(\"../../lib\"),i=t(\"../scatter/get_trace_color\"),o=a.fillText,s=t(\"../../constants/numerical\").BADNUM;e.exports=function(t,e,r){var l=t.cd,c=l[0].trace,u=t.xa,h=t.ya,f=t.subplot,p=360*(e>=0?Math.floor((e+180)/360):Math.ceil((e-180)/360)),d=e-p;if(n.getClosest(l,function(t){var e=t.lonlat;if(e[0]===s)return 1/0;var n=a.modHalf(e[0],360),i=e[1],o=f.project([n,i]),l=o.x-u.c2p([d,i]),c=o.y-h.c2p([n,r]),p=Math.max(3,t.mrc||0);return Math.max(Math.sqrt(l*l+c*c)-p,1-3/p)},t),!1!==t.index){var g=l[t.index],v=g.lonlat,m=[a.modHalf(v[0],360)+p,v[1]],y=u.c2p(m),x=h.c2p(m),b=g.mrc||1;return t.x0=y-b,t.x1=y+b,t.y0=x-b,t.y1=x+b,t.color=i(c,g),t.extraText=function(t,e,r){if(t.hovertemplate)return;var n=(e.hi||t.hoverinfo).split(\"+\"),a=-1!==n.indexOf(\"all\"),i=-1!==n.indexOf(\"lon\"),s=-1!==n.indexOf(\"lat\"),l=e.lonlat,c=[];function u(t){return t+\"\\xb0\"}a||i&&s?c.push(\"(\"+u(l[0])+\", \"+u(l[1])+\")\"):i?c.push(r.lon+u(l[0])):s&&c.push(r.lat+u(l[1]));(a||-1!==n.indexOf(\"text\"))&&o(e,t,c);return c.join(\"<br>\")}(c,g,l[0].t.labels),t.hovertemplate=c.hovertemplate,[t]}}},{\"../../components/fx\":632,\"../../constants/numerical\":695,\"../../lib\":719,\"../scatter/get_trace_color\":1120}],1175:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../scatter/marker_colorbar\"),calc:t(\"../scattergeo/calc\"),plot:t(\"./plot\"),hoverPoints:t(\"./hover\"),eventData:t(\"./event_data\"),selectPoints:t(\"./select\"),styleOnSelect:function(t,e){e&&e[0].trace._glTrace.update(e)},moduleType:\"trace\",name:\"scattermapbox\",basePlotModule:t(\"../../plots/mapbox\"),categories:[\"mapbox\",\"gl\",\"symbols\",\"showLegend\",\"scatter-like\"],meta:{}}},{\"../../plots/mapbox\":822,\"../scatter/marker_colorbar\":1128,\"../scattergeo/calc\":1151,\"./attributes\":1170,\"./defaults\":1172,\"./event_data\":1173,\"./hover\":1174,\"./plot\":1176,\"./select\":1177}],1176:[function(t,e,r){\"use strict\";var n=t(\"./convert\"),a=t(\"../../plots/mapbox/constants\").traceLayerPrefix,i=[\"fill\",\"line\",\"circle\",\"symbol\"];function o(t,e){this.subplot=t,this.uid=e,this.sourceIds={fill:\"source-\"+e+\"-fill\",line:\"source-\"+e+\"-line\",circle:\"source-\"+e+\"-circle\",symbol:\"source-\"+e+\"-symbol\"},this.layerIds={fill:a+e+\"-fill\",line:a+e+\"-line\",circle:a+e+\"-circle\",symbol:a+e+\"-symbol\"},this.below=null}var s=o.prototype;s.addSource=function(t,e){this.subplot.map.addSource(this.sourceIds[t],{type:\"geojson\",data:e.geojson})},s.setSourceData=function(t,e){this.subplot.map.getSource(this.sourceIds[t]).setData(e.geojson)},s.addLayer=function(t,e,r){this.subplot.addLayer({type:t,id:this.layerIds[t],source:this.sourceIds[t],layout:e.layout,paint:e.paint},r)},s.update=function(t){var e,r,a,o=this.subplot,s=o.map,l=n(o.gd,t),c=o.belowLookup[\"trace-\"+this.uid];if(c!==this.below){for(e=i.length-1;e>=0;e--)r=i[e],s.removeLayer(this.layerIds[r]);for(e=0;e<i.length;e++)a=l[r=i[e]],this.addLayer(r,a,c);this.below=c}for(e=0;e<i.length;e++)a=l[r=i[e]],o.setOptions(this.layerIds[r],\"setLayoutProperty\",a.layout),\"visible\"===a.layout.visibility&&(this.setSourceData(r,a),o.setOptions(this.layerIds[r],\"setPaintProperty\",a.paint));t[0].trace._glTrace=this},s.dispose=function(){for(var t=this.subplot.map,e=i.length-1;e>=0;e--){var r=i[e];t.removeLayer(this.layerIds[r]),t.removeSource(this.sourceIds[r])}},e.exports=function(t,e){for(var r=e[0].trace,a=new o(t,r.uid),s=n(t.gd,e),l=a.below=t.belowLookup[\"trace-\"+r.uid],c=0;c<i.length;c++){var u=i[c],h=s[u];a.addSource(u,h),a.addLayer(u,h,l)}return e[0].trace._glTrace=a,a}},{\"../../plots/mapbox/constants\":820,\"./convert\":1171}],1177:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../scatter/subtypes\"),i=t(\"../../constants/numerical\").BADNUM;e.exports=function(t,e){var r,o=t.cd,s=t.xaxis,l=t.yaxis,c=[],u=o[0].trace;if(!a.hasMarkers(u))return[];if(!1===e)for(r=0;r<o.length;r++)o[r].selected=0;else for(r=0;r<o.length;r++){var h=o[r],f=h.lonlat;if(f[0]!==i){var p=[n.modHalf(f[0],360),f[1]],d=[s.c2p(p),l.c2p(p)];e.contains(d,null,r,t)?(c.push({pointNumber:r,lon:f[0],lat:f[1]}),h.selected=1):h.selected=0}}return c}},{\"../../constants/numerical\":695,\"../../lib\":719,\"../scatter/subtypes\":1134}],1178:[function(t,e,r){\"use strict\";var n=t(\"../../plots/template_attributes\").hovertemplateAttrs,a=t(\"../../plots/template_attributes\").texttemplateAttrs,i=t(\"../../lib/extend\").extendFlat,o=t(\"../scatter/attributes\"),s=t(\"../../plots/attributes\"),l=o.line;e.exports={mode:o.mode,r:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},theta:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},r0:{valType:\"any\",dflt:0,editType:\"calc+clearAxisTypes\"},dr:{valType:\"number\",dflt:1,editType:\"calc\"},theta0:{valType:\"any\",dflt:0,editType:\"calc+clearAxisTypes\"},dtheta:{valType:\"number\",editType:\"calc\"},thetaunit:{valType:\"enumerated\",values:[\"radians\",\"degrees\",\"gradians\"],dflt:\"degrees\",editType:\"calc+clearAxisTypes\"},text:o.text,texttemplate:a({editType:\"plot\"},{keys:[\"r\",\"theta\",\"text\"]}),hovertext:o.hovertext,line:{color:l.color,width:l.width,dash:l.dash,shape:i({},l.shape,{values:[\"linear\",\"spline\"]}),smoothing:l.smoothing,editType:\"calc\"},connectgaps:o.connectgaps,marker:o.marker,cliponaxis:i({},o.cliponaxis,{dflt:!1}),textposition:o.textposition,textfont:o.textfont,fill:i({},o.fill,{values:[\"none\",\"toself\",\"tonext\"],dflt:\"none\"}),fillcolor:o.fillcolor,hoverinfo:i({},s.hoverinfo,{flags:[\"r\",\"theta\",\"text\",\"name\"]}),hoveron:o.hoveron,hovertemplate:n(),selected:o.selected,unselected:o.unselected}},{\"../../lib/extend\":710,\"../../plots/attributes\":764,\"../../plots/template_attributes\":843,\"../scatter/attributes\":1111}],1179:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../../constants/numerical\").BADNUM,i=t(\"../../plots/cartesian/axes\"),o=t(\"../scatter/colorscale_calc\"),s=t(\"../scatter/arrays_to_calcdata\"),l=t(\"../scatter/calc_selection\"),c=t(\"../scatter/calc\").calcMarkerSize;e.exports=function(t,e){for(var r=t._fullLayout,u=e.subplot,h=r[u].radialaxis,f=r[u].angularaxis,p=h.makeCalcdata(e,\"r\"),d=f.makeCalcdata(e,\"theta\"),g=e._length,v=new Array(g),m=0;m<g;m++){var y=p[m],x=d[m],b=v[m]={};n(y)&&n(x)?(b.r=y,b.theta=x):b.r=a}var _=c(e,g);return e._extremes.x=i.findExtremes(h,p,{ppad:_}),o(t,e),s(v,e),l(v,e),v}},{\"../../constants/numerical\":695,\"../../plots/cartesian/axes\":767,\"../scatter/arrays_to_calcdata\":1110,\"../scatter/calc\":1112,\"../scatter/calc_selection\":1113,\"../scatter/colorscale_calc\":1114,\"fast-isnumeric\":226}],1180:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../scatter/subtypes\"),i=t(\"../scatter/marker_defaults\"),o=t(\"../scatter/line_defaults\"),s=t(\"../scatter/line_shape_defaults\"),l=t(\"../scatter/text_defaults\"),c=t(\"../scatter/fillcolor_defaults\"),u=t(\"../scatter/constants\").PTS_LINESONLY,h=t(\"./attributes\");function f(t,e,r,n){var a,i=n(\"r\"),o=n(\"theta\");if(i)o?a=Math.min(i.length,o.length):(a=i.length,n(\"theta0\"),n(\"dtheta\"));else{if(!o)return 0;a=e.theta.length,n(\"r0\"),n(\"dr\")}return e._length=a,a}e.exports={handleRThetaDefaults:f,supplyDefaults:function(t,e,r,p){function d(r,a){return n.coerce(t,e,h,r,a)}var g=f(0,e,0,d);if(g){d(\"thetaunit\"),d(\"mode\",g<u?\"lines+markers\":\"lines\"),d(\"text\"),d(\"hovertext\"),\"fills\"!==e.hoveron&&d(\"hovertemplate\"),a.hasLines(e)&&(o(t,e,r,p,d),s(t,e,d),d(\"connectgaps\")),a.hasMarkers(e)&&i(t,e,r,p,d,{gradient:!0}),a.hasText(e)&&(d(\"texttemplate\"),l(t,e,p,d));var v=[];(a.hasMarkers(e)||a.hasText(e))&&(d(\"cliponaxis\"),d(\"marker.maxdisplayed\"),v.push(\"points\")),d(\"fill\"),\"none\"!==e.fill&&(c(t,e,r,d),a.hasLines(e)||s(t,e,d)),\"tonext\"!==e.fill&&\"toself\"!==e.fill||v.push(\"fills\"),d(\"hoveron\",v.join(\"+\")||\"points\"),n.coerceSelectionMarkerOpacity(e,d)}else e.visible=!1}}},{\"../../lib\":719,\"../scatter/constants\":1115,\"../scatter/fillcolor_defaults\":1119,\"../scatter/line_defaults\":1123,\"../scatter/line_shape_defaults\":1125,\"../scatter/marker_defaults\":1129,\"../scatter/subtypes\":1134,\"../scatter/text_defaults\":1135,\"./attributes\":1178}],1181:[function(t,e,r){\"use strict\";var n=t(\"../scatter/hover\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"../../lib\");function o(t,e,r,n){var o=r.radialAxis,s=r.angularAxis;o._hovertitle=\"r\",s._hovertitle=\"\\u03b8\";var l=o.c2l(t.r);n.rLabel=a.tickText(o,l,\"hover\").text;var c=\"degrees\"===s.thetaunit?i.rad2deg(t.theta):t.theta;n.thetaLabel=a.tickText(s,c,\"hover\").text;var u=t.hi||e.hoverinfo,h=[];function f(t,e){h.push(t._hovertitle+\": \"+e)}if(!e.hovertemplate){var p=u.split(\"+\");-1!==p.indexOf(\"all\")&&(p=[\"r\",\"theta\",\"text\"]),-1!==p.indexOf(\"r\")&&f(o,n.rLabel),-1!==p.indexOf(\"theta\")&&f(s,n.thetaLabel),-1!==p.indexOf(\"text\")&&n.text&&(h.push(n.text),delete n.text),n.extraText=h.join(\"<br>\")}}e.exports={hoverPoints:function(t,e,r,a){var i=n(t,e,r,a);if(i&&!1!==i[0].index){var s=i[0];if(void 0===s.index)return i;var l=t.subplot,c=s.cd[s.index],u=s.trace;if(l.isPtInside(c))return s.xLabelVal=void 0,s.yLabelVal=void 0,o(c,u,l,s),s.hovertemplate=u.hovertemplate,i}},makeHoverPointText:o}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../scatter/hover\":1121}],1182:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"scatterpolar\",basePlotModule:t(\"../../plots/polar\"),categories:[\"polar\",\"symbols\",\"showLegend\",\"scatter-like\"],attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\").supplyDefaults,colorbar:t(\"../scatter/marker_colorbar\"),calc:t(\"./calc\"),plot:t(\"./plot\"),style:t(\"../scatter/style\").style,styleOnSelect:t(\"../scatter/style\").styleOnSelect,hoverPoints:t(\"./hover\").hoverPoints,selectPoints:t(\"../scatter/select\"),meta:{}}},{\"../../plots/polar\":831,\"../scatter/marker_colorbar\":1128,\"../scatter/select\":1131,\"../scatter/style\":1133,\"./attributes\":1178,\"./calc\":1179,\"./defaults\":1180,\"./hover\":1181,\"./plot\":1183}],1183:[function(t,e,r){\"use strict\";var n=t(\"../scatter/plot\"),a=t(\"../../constants/numerical\").BADNUM;e.exports=function(t,e,r){for(var i=e.layers.frontplot.select(\"g.scatterlayer\"),o={xaxis:e.xaxis,yaxis:e.yaxis,plot:e.framework,layerClipId:e._hasClipOnAxisFalse?e.clipIds.forTraces:null},s=e.radialAxis,l=e.angularAxis,c=0;c<r.length;c++)for(var u=r[c],h=0;h<u.length;h++){var f=u[h],p=f.r;if(p===a)f.x=f.y=a;else{var d=s.c2g(p),g=l.c2g(f.theta);f.x=d*Math.cos(g),f.y=d*Math.sin(g)}}n(t,o,r,i)}},{\"../../constants/numerical\":695,\"../scatter/plot\":1130}],1184:[function(t,e,r){\"use strict\";var n=t(\"../scatterpolar/attributes\"),a=t(\"../scattergl/attributes\"),i=t(\"../../plots/template_attributes\").texttemplateAttrs;e.exports={mode:n.mode,r:n.r,theta:n.theta,r0:n.r0,dr:n.dr,theta0:n.theta0,dtheta:n.dtheta,thetaunit:n.thetaunit,text:n.text,texttemplate:i({editType:\"plot\"},{keys:[\"r\",\"theta\",\"text\"]}),hovertext:n.hovertext,hovertemplate:n.hovertemplate,line:a.line,connectgaps:a.connectgaps,marker:a.marker,fill:a.fill,fillcolor:a.fillcolor,textposition:a.textposition,textfont:a.textfont,hoverinfo:n.hoverinfo,selected:n.selected,unselected:n.unselected}},{\"../../plots/template_attributes\":843,\"../scattergl/attributes\":1159,\"../scatterpolar/attributes\":1178}],1185:[function(t,e,r){\"use strict\";var n=t(\"../scatter/colorscale_calc\"),a=t(\"../scatter/calc\").calcMarkerSize,i=t(\"../scattergl/convert\"),o=t(\"../../plots/cartesian/axes\"),s=t(\"../scattergl/constants\").TOO_MANY_POINTS;e.exports=function(t,e){var r=t._fullLayout,l=e.subplot,c=r[l].radialaxis,u=r[l].angularaxis,h=c.makeCalcdata(e,\"r\"),f=u.makeCalcdata(e,\"theta\"),p=e._length,d={};p<h.length&&(h=h.slice(0,p)),p<f.length&&(f=f.slice(0,p)),d.r=h,d.theta=f,n(t,e);var g,v=d.opts=i.style(t,e);return p<s?g=a(e,p):v.marker&&(g=2*(v.marker.sizeAvg||Math.max(v.marker.size,3))),e._extremes.x=o.findExtremes(c,h,{ppad:g}),[{x:!1,y:!1,t:d,trace:e}]}},{\"../../plots/cartesian/axes\":767,\"../scatter/calc\":1112,\"../scatter/colorscale_calc\":1114,\"../scattergl/constants\":1161,\"../scattergl/convert\":1162}],1186:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../scatter/subtypes\"),i=t(\"../scatterpolar/defaults\").handleRThetaDefaults,o=t(\"../scatter/marker_defaults\"),s=t(\"../scatter/line_defaults\"),l=t(\"../scatter/text_defaults\"),c=t(\"../scatter/fillcolor_defaults\"),u=t(\"../scatter/constants\").PTS_LINESONLY,h=t(\"./attributes\");e.exports=function(t,e,r,f){function p(r,a){return n.coerce(t,e,h,r,a)}var d=i(t,e,f,p);d?(p(\"thetaunit\"),p(\"mode\",d<u?\"lines+markers\":\"lines\"),p(\"text\"),p(\"hovertext\"),\"fills\"!==e.hoveron&&p(\"hovertemplate\"),a.hasLines(e)&&(s(t,e,r,f,p),p(\"connectgaps\")),a.hasMarkers(e)&&o(t,e,r,f,p),a.hasText(e)&&(p(\"texttemplate\"),l(t,e,f,p)),p(\"fill\"),\"none\"!==e.fill&&c(t,e,r,p),n.coerceSelectionMarkerOpacity(e,p)):e.visible=!1}},{\"../../lib\":719,\"../scatter/constants\":1115,\"../scatter/fillcolor_defaults\":1119,\"../scatter/line_defaults\":1123,\"../scatter/marker_defaults\":1129,\"../scatter/subtypes\":1134,\"../scatter/text_defaults\":1135,\"../scatterpolar/defaults\":1180,\"./attributes\":1184}],1187:[function(t,e,r){\"use strict\";var n=t(\"../scattergl/hover\"),a=t(\"../scatterpolar/hover\").makeHoverPointText;e.exports={hoverPoints:function(t,e,r,i){var o=t.cd[0].t,s=o.r,l=o.theta,c=n.hoverPoints(t,e,r,i);if(c&&!1!==c[0].index){var u=c[0];if(void 0===u.index)return c;var h=t.subplot,f=u.cd[u.index],p=u.trace;if(f.r=s[u.index],f.theta=l[u.index],h.isPtInside(f))return u.xLabelVal=void 0,u.yLabelVal=void 0,a(f,p,h,u),c}}}},{\"../scattergl/hover\":1165,\"../scatterpolar/hover\":1181}],1188:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"scatterpolargl\",basePlotModule:t(\"../../plots/polar\"),categories:[\"gl\",\"regl\",\"polar\",\"symbols\",\"showLegend\",\"scatter-like\"],attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../scatter/marker_colorbar\"),calc:t(\"./calc\"),plot:t(\"./plot\"),hoverPoints:t(\"./hover\").hoverPoints,selectPoints:t(\"../scattergl/select\"),meta:{}}},{\"../../plots/polar\":831,\"../scatter/marker_colorbar\":1128,\"../scattergl/select\":1169,\"./attributes\":1184,\"./calc\":1185,\"./defaults\":1186,\"./hover\":1187,\"./plot\":1189}],1189:[function(t,e,r){\"use strict\";var n=t(\"point-cluster\"),a=t(\"fast-isnumeric\"),i=t(\"../scattergl/plot\"),o=t(\"../scattergl/scene_update\"),s=t(\"../scattergl/convert\"),l=t(\"../../lib\"),c=t(\"../scattergl/constants\").TOO_MANY_POINTS;e.exports=function(t,e,r){if(r.length){var u=e.radialAxis,h=e.angularAxis,f=o(t,e);return r.forEach(function(r){if(r&&r[0]&&r[0].trace){var i,o=r[0],p=o.trace,d=o.t,g=p._length,v=d.r,m=d.theta,y=d.opts,x=v.slice(),b=m.slice();for(i=0;i<v.length;i++)e.isPtInside({r:v[i],theta:m[i]})||(x[i]=NaN,b[i]=NaN);var _=new Array(2*g),w=Array(g),k=Array(g);for(i=0;i<g;i++){var T,A,M=x[i];if(a(M)){var S=u.c2g(M),E=h.c2g(b[i],p.thetaunit);T=S*Math.cos(E),A=S*Math.sin(E)}else T=A=NaN;w[i]=_[2*i]=T,k[i]=_[2*i+1]=A}d.tree=n(_),y.marker&&g>=c&&(y.marker.cluster=d.tree),y.marker&&(y.markerSel.positions=y.markerUnsel.positions=y.marker.positions=_),y.line&&_.length>1&&l.extendFlat(y.line,s.linePositions(t,p,_)),y.text&&(l.extendFlat(y.text,{positions:_},s.textPosition(t,p,y.text,y.marker)),l.extendFlat(y.textSel,{positions:_},s.textPosition(t,p,y.text,y.markerSel)),l.extendFlat(y.textUnsel,{positions:_},s.textPosition(t,p,y.text,y.markerUnsel))),y.fill&&!f.fill2d&&(f.fill2d=!0),y.marker&&!f.scatter2d&&(f.scatter2d=!0),y.line&&!f.line2d&&(f.line2d=!0),y.text&&!f.glText&&(f.glText=!0),f.lineOptions.push(y.line),f.fillOptions.push(y.fill),f.markerOptions.push(y.marker),f.markerSelectedOptions.push(y.markerSel),f.markerUnselectedOptions.push(y.markerUnsel),f.textOptions.push(y.text),f.textSelectedOptions.push(y.textSel),f.textUnselectedOptions.push(y.textUnsel),f.selectBatch.push([]),f.unselectBatch.push([]),d.x=w,d.y=k,d.rawx=w,d.rawy=k,d.r=v,d.theta=m,d.positions=_,d._scene=f,d.index=f.count,f.count++}}),i(t,e,r)}}},{\"../../lib\":719,\"../scattergl/constants\":1161,\"../scattergl/convert\":1162,\"../scattergl/plot\":1167,\"../scattergl/scene_update\":1168,\"fast-isnumeric\":226,\"point-cluster\":470}],1190:[function(t,e,r){\"use strict\";var n=t(\"../../plots/template_attributes\").hovertemplateAttrs,a=t(\"../../plots/template_attributes\").texttemplateAttrs,i=t(\"../scatter/attributes\"),o=t(\"../../plots/attributes\"),s=t(\"../../components/colorscale/attributes\"),l=t(\"../../components/drawing/attributes\").dash,c=t(\"../../lib/extend\").extendFlat,u=i.marker,h=i.line,f=u.line;e.exports={a:{valType:\"data_array\",editType:\"calc\"},b:{valType:\"data_array\",editType:\"calc\"},c:{valType:\"data_array\",editType:\"calc\"},sum:{valType:\"number\",dflt:0,min:0,editType:\"calc\"},mode:c({},i.mode,{dflt:\"markers\"}),text:c({},i.text,{}),texttemplate:a({editType:\"plot\"},{keys:[\"a\",\"b\",\"c\",\"text\"]}),hovertext:c({},i.hovertext,{}),line:{color:h.color,width:h.width,dash:l,shape:c({},h.shape,{values:[\"linear\",\"spline\"]}),smoothing:h.smoothing,editType:\"calc\"},connectgaps:i.connectgaps,cliponaxis:i.cliponaxis,fill:c({},i.fill,{values:[\"none\",\"toself\",\"tonext\"],dflt:\"none\"}),fillcolor:i.fillcolor,marker:c({symbol:u.symbol,opacity:u.opacity,maxdisplayed:u.maxdisplayed,size:u.size,sizeref:u.sizeref,sizemin:u.sizemin,sizemode:u.sizemode,line:c({width:f.width,editType:\"calc\"},s(\"marker.line\")),gradient:u.gradient,editType:\"calc\"},s(\"marker\")),textfont:i.textfont,textposition:i.textposition,selected:i.selected,unselected:i.unselected,hoverinfo:c({},o.hoverinfo,{flags:[\"a\",\"b\",\"c\",\"text\",\"name\"]}),hoveron:i.hoveron,hovertemplate:n()}},{\"../../components/colorscale/attributes\":601,\"../../components/drawing/attributes\":614,\"../../lib/extend\":710,\"../../plots/attributes\":764,\"../../plots/template_attributes\":843,\"../scatter/attributes\":1111}],1191:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),a=t(\"../scatter/colorscale_calc\"),i=t(\"../scatter/arrays_to_calcdata\"),o=t(\"../scatter/calc_selection\"),s=t(\"../scatter/calc\").calcMarkerSize,l=[\"a\",\"b\",\"c\"],c={a:[\"b\",\"c\"],b:[\"a\",\"c\"],c:[\"a\",\"b\"]};e.exports=function(t,e){var r,u,h,f,p,d,g=t._fullLayout[e.subplot].sum,v=e.sum||g,m={a:e.a,b:e.b,c:e.c};for(r=0;r<l.length;r++)if(!m[h=l[r]]){for(p=m[c[h][0]],d=m[c[h][1]],f=new Array(p.length),u=0;u<p.length;u++)f[u]=v-p[u]-d[u];m[h]=f}var y,x,b,_,w,k,T=e._length,A=new Array(T);for(r=0;r<T;r++)y=m.a[r],x=m.b[r],b=m.c[r],n(y)&&n(x)&&n(b)?(1!==(_=g/((y=+y)+(x=+x)+(b=+b)))&&(y*=_,x*=_,b*=_),k=y,w=b-x,A[r]={x:w,y:k,a:y,b:x,c:b}):A[r]={x:!1,y:!1};return s(e,T),a(t,e),i(A,e),o(A,e),A}},{\"../scatter/arrays_to_calcdata\":1110,\"../scatter/calc\":1112,\"../scatter/calc_selection\":1113,\"../scatter/colorscale_calc\":1114,\"fast-isnumeric\":226}],1192:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../scatter/constants\"),i=t(\"../scatter/subtypes\"),o=t(\"../scatter/marker_defaults\"),s=t(\"../scatter/line_defaults\"),l=t(\"../scatter/line_shape_defaults\"),c=t(\"../scatter/text_defaults\"),u=t(\"../scatter/fillcolor_defaults\"),h=t(\"./attributes\");e.exports=function(t,e,r,f){function p(r,a){return n.coerce(t,e,h,r,a)}var d,g=p(\"a\"),v=p(\"b\"),m=p(\"c\");if(g?(d=g.length,v?(d=Math.min(d,v.length),m&&(d=Math.min(d,m.length))):d=m?Math.min(d,m.length):0):v&&m&&(d=Math.min(v.length,m.length)),d){e._length=d,p(\"sum\"),p(\"text\"),p(\"hovertext\"),\"fills\"!==e.hoveron&&p(\"hovertemplate\"),p(\"mode\",d<a.PTS_LINESONLY?\"lines+markers\":\"lines\"),i.hasLines(e)&&(s(t,e,r,f,p),l(t,e,p),p(\"connectgaps\")),i.hasMarkers(e)&&o(t,e,r,f,p,{gradient:!0}),i.hasText(e)&&(p(\"texttemplate\"),c(t,e,f,p));var y=[];(i.hasMarkers(e)||i.hasText(e))&&(p(\"cliponaxis\"),p(\"marker.maxdisplayed\"),y.push(\"points\")),p(\"fill\"),\"none\"!==e.fill&&(u(t,e,r,p),i.hasLines(e)||l(t,e,p)),\"tonext\"!==e.fill&&\"toself\"!==e.fill||y.push(\"fills\"),p(\"hoveron\",y.join(\"+\")||\"points\"),n.coerceSelectionMarkerOpacity(e,p)}else e.visible=!1}},{\"../../lib\":719,\"../scatter/constants\":1115,\"../scatter/fillcolor_defaults\":1119,\"../scatter/line_defaults\":1123,\"../scatter/line_shape_defaults\":1125,\"../scatter/marker_defaults\":1129,\"../scatter/subtypes\":1134,\"../scatter/text_defaults\":1135,\"./attributes\":1190}],1193:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,a){if(e.xa&&(t.xaxis=e.xa),e.ya&&(t.yaxis=e.ya),n[a]){var i=n[a];t.a=i.a,t.b=i.b,t.c=i.c}else t.a=e.a,t.b=e.b,t.c=e.c;return t}},{}],1194:[function(t,e,r){\"use strict\";var n=t(\"../scatter/hover\"),a=t(\"../../plots/cartesian/axes\");e.exports=function(t,e,r,i){var o=n(t,e,r,i);if(o&&!1!==o[0].index){var s=o[0];if(void 0===s.index){var l=1-s.y0/t.ya._length,c=t.xa._length,u=c*l/2,h=c-u;return s.x0=Math.max(Math.min(s.x0,h),u),s.x1=Math.max(Math.min(s.x1,h),u),o}var f=s.cd[s.index];s.a=f.a,s.b=f.b,s.c=f.c,s.xLabelVal=void 0,s.yLabelVal=void 0;var p=s.subplot;s.aLabel=a.tickText(p.aaxis,f.a,\"hover\").text,s.bLabel=a.tickText(p.baxis,f.b,\"hover\").text,s.cLabel=a.tickText(p.caxis,f.c,\"hover\").text;var d=s.trace,g=f.hi||d.hoverinfo,v=[];if(!d.hovertemplate){var m=g.split(\"+\");-1!==m.indexOf(\"all\")&&(m=[\"a\",\"b\",\"c\"]),-1!==m.indexOf(\"a\")&&y(p.aaxis,s.aLabel),-1!==m.indexOf(\"b\")&&y(p.baxis,s.bLabel),-1!==m.indexOf(\"c\")&&y(p.caxis,s.cLabel)}return s.extraText=v.join(\"<br>\"),s.hovertemplate=d.hovertemplate,o}function y(t,e){v.push(t._hovertitle+\": \"+e)}}},{\"../../plots/cartesian/axes\":767,\"../scatter/hover\":1121}],1195:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../scatter/marker_colorbar\"),calc:t(\"./calc\"),plot:t(\"./plot\"),style:t(\"../scatter/style\").style,styleOnSelect:t(\"../scatter/style\").styleOnSelect,hoverPoints:t(\"./hover\"),selectPoints:t(\"../scatter/select\"),eventData:t(\"./event_data\"),moduleType:\"trace\",name:\"scatterternary\",basePlotModule:t(\"../../plots/ternary\"),categories:[\"ternary\",\"symbols\",\"showLegend\",\"scatter-like\"],meta:{}}},{\"../../plots/ternary\":844,\"../scatter/marker_colorbar\":1128,\"../scatter/select\":1131,\"../scatter/style\":1133,\"./attributes\":1190,\"./calc\":1191,\"./defaults\":1192,\"./event_data\":1193,\"./hover\":1194,\"./plot\":1196}],1196:[function(t,e,r){\"use strict\";var n=t(\"../scatter/plot\");e.exports=function(t,e,r){var a=e.plotContainer;a.select(\".scatterlayer\").selectAll(\"*\").remove();var i={xaxis:e.xaxis,yaxis:e.yaxis,plot:a,layerClipId:e._hasClipOnAxisFalse?e.clipIdRelative:null},o=e.layers.frontplot.select(\"g.scatterlayer\");n(t,i,r,o)}},{\"../scatter/plot\":1130}],1197:[function(t,e,r){\"use strict\";var n=t(\"../scatter/attributes\"),a=t(\"../../components/colorscale/attributes\"),i=t(\"../../plots/template_attributes\").hovertemplateAttrs,o=t(\"../scattergl/attributes\"),s=t(\"../../plots/cartesian/constants\").idRegex,l=t(\"../../plot_api/plot_template\").templatedArray,c=t(\"../../lib/extend\").extendFlat,u=n.marker,h=u.line,f=c(a(\"marker.line\",{editTypeOverride:\"calc\"}),{width:c({},h.width,{editType:\"calc\"}),editType:\"calc\"}),p=c(a(\"marker\"),{symbol:u.symbol,size:c({},u.size,{editType:\"markerSize\"}),sizeref:u.sizeref,sizemin:u.sizemin,sizemode:u.sizemode,opacity:u.opacity,colorbar:u.colorbar,line:f,editType:\"calc\"});function d(t){return{valType:\"info_array\",freeLength:!0,editType:\"calc\",items:{valType:\"subplotid\",regex:s[t],editType:\"plot\"}}}p.color.editType=p.cmin.editType=p.cmax.editType=\"style\",e.exports={dimensions:l(\"dimension\",{visible:{valType:\"boolean\",dflt:!0,editType:\"calc\"},label:{valType:\"string\",editType:\"calc\"},values:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},axis:{type:{valType:\"enumerated\",values:[\"linear\",\"log\",\"date\",\"category\"],editType:\"calc+clearAxisTypes\"},matches:{valType:\"boolean\",dflt:!1,editType:\"calc\"},editType:\"calc+clearAxisTypes\"},editType:\"calc+clearAxisTypes\"}),text:c({},o.text,{}),hovertext:c({},o.hovertext,{}),hovertemplate:i(),marker:p,xaxes:d(\"x\"),yaxes:d(\"y\"),diagonal:{visible:{valType:\"boolean\",dflt:!0,editType:\"calc\"},editType:\"calc\"},showupperhalf:{valType:\"boolean\",dflt:!0,editType:\"calc\"},showlowerhalf:{valType:\"boolean\",dflt:!0,editType:\"calc\"},selected:{marker:o.selected.marker,editType:\"calc\"},unselected:{marker:o.unselected.marker,editType:\"calc\"},opacity:o.opacity}},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plot_api/plot_template\":757,\"../../plots/cartesian/constants\":773,\"../../plots/template_attributes\":843,\"../scatter/attributes\":1111,\"../scattergl/attributes\":1159}],1198:[function(t,e,r){\"use strict\";var n=t(\"regl-line2d\"),a=t(\"../../registry\"),i=t(\"../../lib/prepare_regl\"),o=t(\"../../plots/get_data\").getModuleCalcData,s=t(\"../../plots/cartesian\"),l=t(\"../../plots/cartesian/axis_ids\").getFromId,c=t(\"../../plots/cartesian/axes\").shouldShowZeroLine,u=\"splom\";function h(t,e,r){for(var n=r.matrixOptions.data.length,a=e._visibleDims,i=r.viewOpts.ranges=new Array(n),o=0;o<a.length;o++){var s=a[o],c=i[o]=new Array(4),u=l(t,e._diag[s][0]);u&&(c[0]=u.r2l(u.range[0]),c[2]=u.r2l(u.range[1]));var h=l(t,e._diag[s][1]);h&&(c[1]=h.r2l(h.range[0]),c[3]=h.r2l(h.range[1]))}r.selectBatch.length||r.unselectBatch.length?r.matrix.update({ranges:i},{ranges:i}):r.matrix.update({ranges:i})}function f(t){var e=t._fullLayout,r=e._glcanvas.data()[0].regl,a=e._splomGrid;a||(a=e._splomGrid=n(r)),a.update(function(t){var e,r=t._fullLayout,n=r._size,a=[0,0,r.width,r.height],i={};function o(t,e,r,n,o,s){var l=e[t+\"color\"],c=e[t+\"width\"],u=String(l+c);u in i?i[u].data.push(NaN,NaN,r,n,o,s):i[u]={data:[r,n,o,s],join:\"rect\",thickness:c,color:l,viewport:a,range:a,overlay:!1}}for(e in r._splomSubplots){var s,l,u=r._plots[e],h=u.xaxis,f=u.yaxis,p=h._gridVals,d=f._gridVals,g=n.b+f.domain[0]*n.h,v=-f._m,m=-v*f.r2l(f.range[0],f.calendar);if(h.showgrid)for(e=0;e<p.length;e++)s=h._offset+h.l2p(p[e].x),o(\"grid\",h,s,g,s,g+f._length);if(f.showgrid)for(e=0;e<d.length;e++)l=g+m+v*d[e].x,o(\"grid\",f,h._offset,l,h._offset+h._length,l);c(t,h,f)&&(s=h._offset+h.l2p(0),o(\"zeroline\",h,s,g,s,g+f._length)),c(t,f,h)&&(l=g+m+0,o(\"zeroline\",f,h._offset,l,h._offset+h._length,l))}var y=[];for(e in i)y.push(i[e]);return y}(t))}e.exports={name:u,attr:s.attr,attrRegex:s.attrRegex,layoutAttributes:s.layoutAttributes,supplyLayoutDefaults:s.supplyLayoutDefaults,drawFramework:s.drawFramework,plot:function(t){var e=t._fullLayout,r=a.getModule(u),n=o(t.calcdata,r)[0];i(t,[\"ANGLE_instanced_arrays\",\"OES_element_index_uint\"])&&(e._hasOnlyLargeSploms&&f(t),r.plot(t,{},n))},drag:function(t){var e=t.calcdata,r=t._fullLayout;r._hasOnlyLargeSploms&&f(t);for(var n=0;n<e.length;n++){var a=e[n][0].trace,i=r._splomScenes[a.uid];\"splom\"===a.type&&i&&i.matrix&&h(t,a,i)}},updateGrid:f,clean:function(t,e,r,n){var a,i={};if(n._splomScenes){for(a=0;a<t.length;a++){var o=t[a];\"splom\"===o.type&&(i[o.uid]=1)}for(a=0;a<r.length;a++){var l=r[a];if(!i[l.uid]){var c=n._splomScenes[l.uid];c&&c.destroy&&c.destroy(),n._splomScenes[l.uid]=null,delete n._splomScenes[l.uid]}}}0===Object.keys(n._splomScenes||{}).length&&delete n._splomScenes,n._splomGrid&&!e._hasOnlyLargeSploms&&n._hasOnlyLargeSploms&&(n._splomGrid.destroy(),n._splomGrid=null,delete n._splomGrid),s.clean(t,e,r,n)},updateFx:s.updateFx,toSVG:s.toSVG}},{\"../../lib/prepare_regl\":732,\"../../plots/cartesian\":778,\"../../plots/cartesian/axes\":767,\"../../plots/cartesian/axis_ids\":770,\"../../plots/get_data\":802,\"../../registry\":848,\"regl-line2d\":492}],1199:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/cartesian/axis_ids\"),i=t(\"../scatter/calc\").calcMarkerSize,o=t(\"../scatter/calc\").calcAxisExpansion,s=t(\"../scatter/colorscale_calc\"),l=t(\"../scattergl/convert\").markerSelection,c=t(\"../scattergl/convert\").markerStyle,u=t(\"./scene_update\"),h=t(\"../../constants/numerical\").BADNUM,f=t(\"../scattergl/constants\").TOO_MANY_POINTS;e.exports=function(t,e){var r,p,d,g,v,m,y=e.dimensions,x=e._length,b={},_=b.cdata=[],w=b.data=[],k=e._visibleDims=[];function T(t,r){for(var a=t.makeCalcdata({v:r.values,vcalendar:e.calendar},\"v\"),i=0;i<a.length;i++)a[i]=a[i]===h?NaN:a[i];_.push(a),w.push(\"log\"===t.type?n.simpleMap(a,t.c2l):a)}for(r=0;r<y.length;r++)if((d=y[r]).visible){if(g=a.getFromId(t,e._diag[r][0]),v=a.getFromId(t,e._diag[r][1]),g&&v&&g.type!==v.type){n.log(\"Skipping splom dimension \"+r+\" with conflicting axis types\");continue}g?(T(g,d),v&&\"category\"===v.type&&(v._categories=g._categories.slice())):T(v,d),k.push(r)}for(s(t,e),n.extendFlat(b,c(e)),m=_.length*x>f?2*(b.sizeAvg||Math.max(b.size,3)):i(e,x),p=0;p<k.length;p++)d=y[r=k[p]],g=a.getFromId(t,e._diag[r][0])||{},v=a.getFromId(t,e._diag[r][1])||{},o(t,e,g,v,_[p],_[p],m);var A=u(t,e);return A.matrix||(A.matrix=!0),A.matrixOptions=b,A.selectedOptions=l(e,e.selected),A.unselectedOptions=l(e,e.unselected),[{x:!1,y:!1,t:{},trace:e}]}},{\"../../constants/numerical\":695,\"../../lib\":719,\"../../plots/cartesian/axis_ids\":770,\"../scatter/calc\":1112,\"../scatter/colorscale_calc\":1114,\"../scattergl/constants\":1161,\"../scattergl/convert\":1162,\"./scene_update\":1206}],1200:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/array_container_defaults\"),i=t(\"./attributes\"),o=t(\"../scatter/subtypes\"),s=t(\"../scatter/marker_defaults\"),l=t(\"../parcoords/merge_length\"),c=/-open/;function u(t,e){function r(r,a){return n.coerce(t,e,i.dimensions,r,a)}r(\"label\");var a=r(\"values\");a&&a.length?r(\"visible\"):e.visible=!1,r(\"axis.type\"),r(\"axis.matches\")}e.exports=function(t,e,r,h){function f(r,a){return n.coerce(t,e,i,r,a)}var p=a(t,e,{name:\"dimensions\",handleItemDefaults:u}),d=f(\"diagonal.visible\"),g=f(\"showupperhalf\"),v=f(\"showlowerhalf\");if(l(e,p,\"values\")&&(d||g||v)){f(\"text\"),f(\"hovertext\"),f(\"hovertemplate\"),s(t,e,r,h,f);var m=c.test(e.marker.symbol),y=o.isBubble(e);f(\"marker.line.width\",m||y?1:0),function(t,e,r,n){var a,i,o=e.dimensions,s=o.length,l=e.showupperhalf,c=e.showlowerhalf,u=e.diagonal.visible,h=new Array(s),f=new Array(s);for(a=0;a<s;a++){var p=a?a+1:\"\";h[a]=\"x\"+p,f[a]=\"y\"+p}var d=n(\"xaxes\",h),g=n(\"yaxes\",f),v=e._diag=new Array(s);e._xaxes={},e._yaxes={};var m=[],y=[];function x(t,n,a,i){if(t){var o=t.charAt(0),s=r._splomAxes[o];if(e[\"_\"+o+\"axes\"][t]=1,i.push(t),!(t in s)){var l=s[t]={};a&&(l.label=a.label||\"\",a.visible&&a.axis&&(a.axis.type&&(l.type=a.axis.type),a.axis.matches&&(l.matches=n)))}}}var b=!u&&!c,_=!u&&!l;for(e._axesDim={},a=0;a<s;a++){var w=o[a],k=0===a,T=a===s-1,A=k&&b||T&&_?void 0:d[a],M=k&&_||T&&b?void 0:g[a];x(A,M,w,m),x(M,A,w,y),v[a]=[A,M],e._axesDim[A]=a,e._axesDim[M]=a}for(a=0;a<m.length;a++)for(i=0;i<y.length;i++){var S=m[a]+y[i];a>i&&l?r._splomSubplots[S]=1:a<i&&c?r._splomSubplots[S]=1:a!==i||!u&&c&&l||(r._splomSubplots[S]=1)}(!c||!u&&l&&c)&&(r._splomGridDflt.xside=\"bottom\",r._splomGridDflt.yside=\"left\")}(0,e,h,f),n.coerceSelectionMarkerOpacity(e,f)}else e.visible=!1}},{\"../../lib\":719,\"../../plots/array_container_defaults\":763,\"../parcoords/merge_length\":1082,\"../scatter/marker_defaults\":1129,\"../scatter/subtypes\":1134,\"./attributes\":1197}],1201:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../scatter/colorscale_calc\"),i=t(\"../scattergl/convert\").markerStyle;e.exports=function(t,e){var r=e.trace,o=t._fullLayout._splomScenes[r.uid];if(o){a(t,r),n.extendFlat(o.matrixOptions,i(r));var s=n.extendFlat({},o.matrixOptions,o.viewOpts);o.matrix.update(s,null)}}},{\"../../lib\":719,\"../scatter/colorscale_calc\":1114,\"../scattergl/convert\":1162}],1202:[function(t,e,r){\"use strict\";r.getDimIndex=function(t,e){for(var r=e._id,n={x:0,y:1}[r.charAt(0)],a=t._visibleDims,i=0;i<a.length;i++){var o=a[i];if(t._diag[o][n]===r)return i}return!1}},{}],1203:[function(t,e,r){\"use strict\";var n=t(\"./helpers\"),a=t(\"../scattergl/hover\").calcHover;e.exports={hoverPoints:function(t,e,r){var i=t.cd[0].trace,o=t.scene.matrixOptions.cdata,s=t.xa,l=t.ya,c=s.c2p(e),u=l.c2p(r),h=t.distance,f=n.getDimIndex(i,s),p=n.getDimIndex(i,l);if(!1===f||!1===p)return[t];for(var d,g,v=o[f],m=o[p],y=h,x=0;x<v.length;x++){var b=v[x],_=m[x],w=s.c2p(b)-c,k=l.c2p(_)-u,T=Math.sqrt(w*w+k*k);T<y&&(y=g=T,d=x)}return t.index=d,t.distance=y,t.dxy=g,void 0===d?[t]:[a(t,v,m,i)]}}},{\"../scattergl/hover\":1165,\"./helpers\":1202}],1204:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../components/grid\");e.exports={moduleType:\"trace\",name:\"splom\",basePlotModule:t(\"./base_plot\"),categories:[\"gl\",\"regl\",\"cartesian\",\"symbols\",\"showLegend\",\"scatter-like\"],attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../scatter/marker_colorbar\"),calc:t(\"./calc\"),plot:t(\"./plot\"),hoverPoints:t(\"./hover\").hoverPoints,selectPoints:t(\"./select\"),editStyle:t(\"./edit_style\"),meta:{}},n.register(a)},{\"../../components/grid\":636,\"../../registry\":848,\"../scatter/marker_colorbar\":1128,\"./attributes\":1197,\"./base_plot\":1198,\"./calc\":1199,\"./defaults\":1200,\"./edit_style\":1201,\"./hover\":1203,\"./plot\":1205,\"./select\":1207}],1205:[function(t,e,r){\"use strict\";var n=t(\"regl-splom\"),a=t(\"../../lib\"),i=t(\"../../plots/cartesian/axis_ids\");function o(t,e){var r,o,s,l,c,u=t._fullLayout,h=u._size,f=e.trace,p=e.t,d=u._splomScenes[f.uid],g=d.matrixOptions,v=g.cdata,m=u._glcanvas.data()[0].regl,y=u.dragmode;if(0!==v.length){g.lower=f.showupperhalf,g.upper=f.showlowerhalf,g.diagonal=f.diagonal.visible;var x=f._visibleDims,b=v.length,_=d.viewOpts={};for(_.ranges=new Array(b),_.domains=new Array(b),c=0;c<x.length;c++){s=x[c];var w=_.ranges[c]=new Array(4),k=_.domains[c]=new Array(4);(r=i.getFromId(t,f._diag[s][0]))&&(w[0]=r._rl[0],w[2]=r._rl[1],k[0]=r.domain[0],k[2]=r.domain[1]),(o=i.getFromId(t,f._diag[s][1]))&&(w[1]=o._rl[0],w[3]=o._rl[1],k[1]=o.domain[0],k[3]=o.domain[1])}_.viewport=[h.l,h.b,h.w+h.l,h.h+h.b],!0===d.matrix&&(d.matrix=n(m));var T=u.clickmode.indexOf(\"select\")>-1,A=!0;if(\"lasso\"===y||\"select\"===y||!!f.selectedpoints||T){var M=f._length;if(f.selectedpoints){d.selectBatch=f.selectedpoints;var S=f.selectedpoints,E={};for(s=0;s<S.length;s++)E[S[s]]=!0;var C=[];for(s=0;s<M;s++)E[s]||C.push(s);d.unselectBatch=C}var L=p.xpx=new Array(b),P=p.ypx=new Array(b);for(c=0;c<x.length;c++){if(s=x[c],r=i.getFromId(t,f._diag[s][0]))for(L[c]=new Array(M),l=0;l<M;l++)L[c][l]=r.c2p(v[c][l]);if(o=i.getFromId(t,f._diag[s][1]))for(P[c]=new Array(M),l=0;l<M;l++)P[c][l]=o.c2p(v[c][l])}if(d.selectBatch.length||d.unselectBatch.length){var O=a.extendFlat({},g,d.unselectedOptions,_),I=a.extendFlat({},g,d.selectedOptions,_);d.matrix.update(O,I),A=!1}}else p.xpx=p.ypx=null;if(A){var z=a.extendFlat({},g,_);d.matrix.update(z,null)}}}e.exports=function(t,e,r){if(r.length)for(var n=0;n<r.length;n++)o(t,r[n][0])}},{\"../../lib\":719,\"../../plots/cartesian/axis_ids\":770,\"regl-splom\":502}],1206:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e){var r=t._fullLayout,a=e.uid,i=r._splomScenes;i||(i=r._splomScenes={});var o={dirty:!0},s=i[e.uid];return s||((s=i[a]=n.extendFlat({},o,{matrix:!1,selectBatch:[],unselectBatch:[]})).draw=function(){s.matrix&&s.matrix.draw&&(s.selectBatch.length||s.unselectBatch.length?s.matrix.draw(s.unselectBatch,s.selectBatch):s.matrix.draw()),s.dirty=!1},s.destroy=function(){s.matrix&&s.matrix.destroy&&s.matrix.destroy(),s.matrixOptions=null,s.selectBatch=null,s.unselectBatch=null,s=null}),s.dirty||n.extendFlat(s,o),s}},{\"../../lib\":719}],1207:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../scatter/subtypes\"),i=t(\"./helpers\");e.exports=function(t,e){var r=t.cd,o=r[0].trace,s=r[0].t,l=t.scene,c=l.matrixOptions.cdata,u=t.xaxis,h=t.yaxis,f=[];if(!l)return f;var p=!a.hasMarkers(o)&&!a.hasText(o);if(!0!==o.visible||p)return f;var d=i.getDimIndex(o,u),g=i.getDimIndex(o,h);if(!1===d||!1===g)return f;var v=s.xpx[d],m=s.ypx[g],y=c[d],x=c[g],b=[],_=[];if(!1!==e&&!e.degenerate)for(var w=0;w<y.length;w++)e.contains([v[w],m[w]],null,w,t)?(b.push(w),f.push({pointNumber:w,x:y[w],y:x[w]})):_.push(w);var k=l.matrixOptions;return b.length||_.length?l.selectBatch.length||l.unselectBatch.length||l.matrix.update(l.unselectedOptions,n.extendFlat({},k,l.selectedOptions,l.viewOpts)):l.matrix.update(k,null),l.selectBatch=b,l.unselectBatch=_,f}},{\"../../lib\":719,\"../scatter/subtypes\":1134,\"./helpers\":1202}],1208:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/attributes\"),a=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"../mesh3d/attributes\"),o=t(\"../../plots/attributes\"),s=t(\"../../lib/extend\").extendFlat,l={x:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},y:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},z:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},u:{valType:\"data_array\",editType:\"calc\"},v:{valType:\"data_array\",editType:\"calc\"},w:{valType:\"data_array\",editType:\"calc\"},starts:{x:{valType:\"data_array\",editType:\"calc\"},y:{valType:\"data_array\",editType:\"calc\"},z:{valType:\"data_array\",editType:\"calc\"},editType:\"calc\"},maxdisplayed:{valType:\"integer\",min:0,dflt:1e3,editType:\"calc\"},sizeref:{valType:\"number\",editType:\"calc\",min:0,dflt:1},text:{valType:\"string\",dflt:\"\",editType:\"calc\"},hovertext:{valType:\"string\",dflt:\"\",editType:\"calc\"},hovertemplate:a({editType:\"calc\"},{keys:[\"tubex\",\"tubey\",\"tubez\",\"tubeu\",\"tubev\",\"tubew\",\"norm\",\"divergence\"]})};s(l,n(\"\",{colorAttr:\"u/v/w norm\",showScaleDflt:!0,editTypeOverride:\"calc\"}));[\"opacity\",\"lightposition\",\"lighting\"].forEach(function(t){l[t]=i[t]}),l.hoverinfo=s({},o.hoverinfo,{editType:\"calc\",flags:[\"x\",\"y\",\"z\",\"u\",\"v\",\"w\",\"norm\",\"divergence\",\"text\",\"name\"],dflt:\"x+y+z+norm+text+name\"}),l.transforms=void 0,e.exports=l},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plots/attributes\":764,\"../../plots/template_attributes\":843,\"../mesh3d/attributes\":1052}],1209:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/calc\");e.exports=function(t,e){var r,a,i,o,s=e.u,l=e.v,c=e.w,u=e.x,h=e.y,f=e.z,p=Math.min(u.length,h.length,f.length,s.length,l.length,c.length),d=0;e.starts&&(a=e.starts.x||[],i=e.starts.y||[],o=e.starts.z||[],d=Math.min(a.length,i.length,o.length));var g=0,v=1/0;for(r=0;r<p;r++){var m=s[r],y=l[r],x=c[r],b=Math.sqrt(m*m+y*y+x*x);g=Math.max(g,b),v=Math.min(v,b)}n(t,e,{vals:[v,g],containerStr:\"\",cLetter:\"c\"});var _=-1/0,w=1/0,k=-1/0,T=1/0,A=-1/0,M=1/0;for(r=0;r<p;r++){var S=u[r];_=Math.max(_,S),w=Math.min(w,S);var E=h[r];k=Math.max(k,E),T=Math.min(T,E);var C=f[r];A=Math.max(A,C),M=Math.min(M,C)}for(r=0;r<d;r++){var L=a[r];_=Math.max(_,L),w=Math.min(w,L);var P=i[r];k=Math.max(k,P),T=Math.min(T,P);var O=o[r];A=Math.max(A,O),M=Math.min(M,O)}e._len=p,e._slen=d,e._normMax=g,e._xbnds=[w,_],e._ybnds=[T,k],e._zbnds=[M,A]}},{\"../../components/colorscale/calc\":602}],1210:[function(t,e,r){\"use strict\";var n=t(\"gl-streamtube3d\"),a=n.createTubeMesh,i=t(\"../../lib\"),o=t(\"../../lib/gl_format_color\").parseColorScale,s=t(\"../../components/colorscale\").extractOpts,l=t(\"../../plots/gl3d/zip3\"),c={xaxis:0,yaxis:1,zaxis:2};function u(t,e){this.scene=t,this.uid=e,this.mesh=null,this.data=null}var h=u.prototype;function f(t){return i.distinctVals(t).vals}function p(t){var e=t.length;return e>2?t.slice(1,e-1):2===e?[(t[0]+t[1])/2]:t}function d(t){var e=t.length;return 1===e?[.5,.5]:[t[1]-t[0],t[e-1]-t[e-2]]}function g(t,e){var r=t.fullSceneLayout,a=t.dataScale,u=e._len,h={};function g(t,e){var n=r[e],o=a[c[e]];return i.simpleMap(t,function(t){return n.d2l(t)*o})}h.vectors=l(g(e.u,\"xaxis\"),g(e.v,\"yaxis\"),g(e.w,\"zaxis\"),u);var v=f(e.x.slice(0,u)),m=f(e.y.slice(0,u)),y=f(e.z.slice(0,u));if(v.length*m.length*y.length>u)return{positions:[],cells:[]};var x=g(v,\"xaxis\"),b=g(m,\"yaxis\"),_=g(y,\"zaxis\");h.meshgrid=[x,b,_];var w=e._slen;if(w)h.startingPositions=l(g(e.starts.x.slice(0,w),\"xaxis\"),g(e.starts.y.slice(0,w),\"yaxis\"),g(e.starts.z.slice(0,w),\"zaxis\"));else{for(var k=b[0],T=p(x),A=p(_),M=new Array(T.length*A.length),S=0,E=0;E<T.length;E++)for(var C=0;C<A.length;C++)M[S++]=[T[E],k,A[C]];h.startingPositions=M}h.colormap=o(e),h.tubeSize=e.sizeref,h.maxLength=e.maxdisplayed;var L=g(e._xbnds,\"xaxis\"),P=g(e._ybnds,\"yaxis\"),O=g(e._zbnds,\"zaxis\"),I=d(x),z=d(b),D=d(_),R=[[L[0]-I[0],P[0]-z[0],O[0]-D[0]],[L[1]+I[1],P[1]+z[1],O[1]+D[1]]],F=n(h,R),B=s(e);F.vertexIntensityBounds=[B.min/e._normMax,B.max/e._normMax];var N=e.lightposition;return F.lightPosition=[N.x,N.y,N.z],F.ambient=e.lighting.ambient,F.diffuse=e.lighting.diffuse,F.specular=e.lighting.specular,F.roughness=e.lighting.roughness,F.fresnel=e.lighting.fresnel,F.opacity=e.opacity,e._pad=F.tubeScale*e.sizeref*2,F}h.handlePick=function(t){var e=this.scene.fullSceneLayout,r=this.scene.dataScale;function n(t,n){var a=e[n],i=r[c[n]];return a.l2c(t)/i}if(t.object===this.mesh){var a=t.data.position,i=t.data.velocity;return t.traceCoordinate=[n(a[0],\"xaxis\"),n(a[1],\"yaxis\"),n(a[2],\"zaxis\"),n(i[0],\"xaxis\"),n(i[1],\"yaxis\"),n(i[2],\"zaxis\"),t.data.intensity*this.data._normMax,t.data.divergence],t.textLabel=this.data.hovertext||this.data.text,!0}},h.update=function(t){this.data=t;var e=g(this.scene,t);this.mesh.update(e)},h.dispose=function(){this.scene.glplot.remove(this.mesh),this.mesh.dispose()},e.exports=function(t,e){var r=t.glplot.gl,n=g(t,e),i=a(r,n),o=new u(t,e.uid);return o.mesh=i,o.data=e,i._trace=o,t.glplot.add(i),o}},{\"../../components/colorscale\":606,\"../../lib\":719,\"../../lib/gl_format_color\":716,\"../../plots/gl3d/zip3\":818,\"gl-streamtube3d\":314}],1211:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/colorscale/defaults\"),i=t(\"./attributes\");e.exports=function(t,e,r,o){function s(r,a){return n.coerce(t,e,i,r,a)}var l=s(\"u\"),c=s(\"v\"),u=s(\"w\"),h=s(\"x\"),f=s(\"y\"),p=s(\"z\");l&&l.length&&c&&c.length&&u&&u.length&&h&&h.length&&f&&f.length&&p&&p.length?(s(\"starts.x\"),s(\"starts.y\"),s(\"starts.z\"),s(\"maxdisplayed\"),s(\"sizeref\"),s(\"lighting.ambient\"),s(\"lighting.diffuse\"),s(\"lighting.specular\"),s(\"lighting.roughness\"),s(\"lighting.fresnel\"),s(\"lightposition.x\"),s(\"lightposition.y\"),s(\"lightposition.z\"),a(t,e,o,s,{prefix:\"\",cLetter:\"c\"}),s(\"text\"),s(\"hovertext\"),s(\"hovertemplate\"),e._length=null):e.visible=!1}},{\"../../components/colorscale/defaults\":604,\"../../lib\":719,\"./attributes\":1208}],1212:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"streamtube\",basePlotModule:t(\"../../plots/gl3d\"),categories:[\"gl3d\"],attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:{min:\"cmin\",max:\"cmax\"},calc:t(\"./calc\"),plot:t(\"./convert\"),eventData:function(t,e){return t.tubex=t.x,t.tubey=t.y,t.tubez=t.z,t.tubeu=e.traceCoordinate[3],t.tubev=e.traceCoordinate[4],t.tubew=e.traceCoordinate[5],t.norm=e.traceCoordinate[6],t.divergence=e.traceCoordinate[7],delete t.x,delete t.y,delete t.z,t},meta:{}}},{\"../../plots/gl3d\":807,\"./attributes\":1208,\"./calc\":1209,\"./convert\":1210,\"./defaults\":1211}],1213:[function(t,e,r){\"use strict\";var n=t(\"../../plots/attributes\"),a=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"../../plots/template_attributes\").texttemplateAttrs,o=t(\"../../components/colorscale/attributes\"),s=t(\"../../plots/domain\").attributes,l=t(\"../pie/attributes\"),c=t(\"./constants\"),u=t(\"../../lib/extend\").extendFlat;e.exports={labels:{valType:\"data_array\",editType:\"calc\"},parents:{valType:\"data_array\",editType:\"calc\"},values:{valType:\"data_array\",editType:\"calc\"},branchvalues:{valType:\"enumerated\",values:[\"remainder\",\"total\"],dflt:\"remainder\",editType:\"calc\"},count:{valType:\"flaglist\",flags:[\"branches\",\"leaves\"],dflt:\"leaves\",editType:\"calc\"},level:{valType:\"any\",editType:\"plot\",anim:!0},maxdepth:{valType:\"integer\",editType:\"plot\",dflt:-1},marker:u({colors:{valType:\"data_array\",editType:\"calc\"},line:{color:u({},l.marker.line.color,{dflt:null}),width:u({},l.marker.line.width,{dflt:1}),editType:\"calc\"},editType:\"calc\"},o(\"marker\",{colorAttr:\"colors\",anim:!1})),leaf:{opacity:{valType:\"number\",editType:\"style\",min:0,max:1},editType:\"plot\"},text:l.text,textinfo:{valType:\"flaglist\",flags:[\"label\",\"text\",\"value\",\"current path\",\"percent root\",\"percent entry\",\"percent parent\"],extras:[\"none\"],editType:\"plot\"},texttemplate:i({editType:\"plot\"},{keys:c.eventDataKeys.concat([\"label\",\"value\"])}),hovertext:l.hovertext,hoverinfo:u({},n.hoverinfo,{flags:[\"label\",\"text\",\"value\",\"name\",\"current path\",\"percent root\",\"percent entry\",\"percent parent\"],dflt:\"label+text+value+name\"}),hovertemplate:a({},{keys:c.eventDataKeys}),textfont:l.textfont,insidetextfont:l.insidetextfont,outsidetextfont:l.outsidetextfont,domain:s({name:\"sunburst\",trace:!0,editType:\"calc\"})}},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plots/attributes\":764,\"../../plots/domain\":792,\"../../plots/template_attributes\":843,\"../pie/attributes\":1085,\"./constants\":1216}],1214:[function(t,e,r){\"use strict\";var n=t(\"../../plots/plots\");r.name=\"sunburst\",r.plot=function(t,e,a,i){n.plotBasePlot(r.name,t,e,a,i)},r.clean=function(t,e,a,i){n.cleanBasePlot(r.name,t,e,a,i)}},{\"../../plots/plots\":828}],1215:[function(t,e,r){\"use strict\";var n=t(\"d3-hierarchy\"),a=t(\"fast-isnumeric\"),i=t(\"../../lib\"),o=t(\"../../components/colorscale\").makeColorScaleFuncFromTrace,s=t(\"../pie/calc\").makePullColorFn,l=t(\"../pie/calc\").generateExtendedColors,c=t(\"../../components/colorscale\").calc,u={},h={};r.calc=function(t,e){var r,l,u,h,f,p,d=t._fullLayout,g=e.ids,v=i.isArrayOrTypedArray(g),m=e.labels,y=e.parents,x=e.values,b=i.isArrayOrTypedArray(x),_=[],w={},k={},T=function(t){return t||\"number\"==typeof t},A=function(t){return!b||a(x[t])&&x[t]>=0};v?(r=Math.min(g.length,y.length),l=function(t){return T(g[t])&&A(t)},u=function(t){return String(g[t])}):(r=Math.min(m.length,y.length),l=function(t){return T(m[t])&&A(t)},u=function(t){return String(m[t])}),b&&(r=Math.min(r,x.length));for(var M=0;M<r;M++)if(l(M)){var S=u(M),E=T(y[M])?String(y[M]):\"\",C={i:M,id:S,pid:E,label:T(m[M])?String(m[M]):\"\"};b&&(C.v=+x[M]),_.push(C),f=S,w[h=E]?w[h].push(f):w[h]=[f],k[f]=1}if(w[\"\"]){if(w[\"\"].length>1){for(var L=i.randstr(),P=0;P<_.length;P++)\"\"===_[P].pid&&(_[P].pid=L);_.unshift({hasMultipleRoots:!0,id:L,pid:\"\",label:\"\"})}}else{var O,I=[];for(O in w)k[O]||I.push(O);if(1!==I.length)return i.warn(\"Multiple implied roots, cannot build \"+e.type+\" hierarchy.\");O=I[0],_.unshift({hasImpliedRoot:!0,id:O,pid:\"\",label:O})}try{p=n.stratify().id(function(t){return t.id}).parentId(function(t){return t.pid})(_)}catch(t){return i.warn(\"Failed to build \"+e.type+\" hierarchy. Error: \"+t.message)}var z=n.hierarchy(p),D=!1;if(b)switch(e.branchvalues){case\"remainder\":z.sum(function(t){return t.data.v});break;case\"total\":z.each(function(t){var e=t.data.data,r=e.v;if(t.children){var n=t.children.reduce(function(t,e){return t+e.data.data.v},0);if((e.hasImpliedRoot||e.hasMultipleRoots)&&(r=n),r<n)return D=!0,i.warn([\"Total value for node\",t.data.data.id,\"is smaller than the sum of its children.\",\"\\nparent value =\",r,\"\\nchildren sum =\",n].join(\" \"))}t.value=r})}else!function t(e,r,n){var a=0;var i=e.children;if(i){for(var o=i.length,s=0;s<o;s++)a+=t(i[s],r,n);n.branches&&a++}else n.leaves&&a++;e.value=e.data.data.value=a;r._values||(r._values=[]);r._values[e.data.data.i]=a;return a}(z,e,{branches:-1!==e.count.indexOf(\"branches\"),leaves:-1!==e.count.indexOf(\"leaves\")});if(!D){var R,F;z.sort(function(t,e){return e.value-t.value});var B=e.marker.colors||[],N=!!B.length;return e._hasColorscale?(N||(B=b?e.values:e._values),c(t,e,{vals:B,containerStr:\"marker\",cLetter:\"c\"}),F=o(e.marker)):R=s(d[\"_\"+e.type+\"colormap\"]),z.each(function(t){var r=t.data.data;r.color=e._hasColorscale?F(B[r.i]):R(B[r.i],r.id)}),_[0].hierarchy=z,_}},r._runCrossTraceCalc=function(t,e){var r=e._fullLayout,n=e.calcdata,a=r[t+\"colorway\"],i=r[\"_\"+t+\"colormap\"];r[\"extend\"+t+\"colors\"]&&(a=l(a,\"treemap\"===t?h:u));var o=0;function s(t){var e=t.data.data,r=e.id;!1===e.color&&(i[r]?e.color=i[r]:t.parent?t.parent.parent?e.color=t.parent.data.data.color:(i[r]=e.color=a[o%a.length],o++):e.color=\"rgba(0,0,0,0)\")}for(var c=0;c<n.length;c++){var f=n[c][0];f.trace.type===t&&f.hierarchy&&f.hierarchy.each(s)}},r.crossTraceCalc=function(t){return r._runCrossTraceCalc(\"sunburst\",t)}},{\"../../components/colorscale\":606,\"../../lib\":719,\"../pie/calc\":1087,\"d3-hierarchy\":158,\"fast-isnumeric\":226}],1216:[function(t,e,r){\"use strict\";e.exports={CLICK_TRANSITION_TIME:750,CLICK_TRANSITION_EASING:\"linear\",eventDataKeys:[\"currentPath\",\"root\",\"entry\",\"percentRoot\",\"percentEntry\",\"percentParent\"]}},{}],1217:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./attributes\"),i=t(\"../../plots/domain\").defaults,o=t(\"../bar/defaults\").handleText,s=t(\"../../components/colorscale\"),l=s.hasColorscale,c=s.handleDefaults;e.exports=function(t,e,r,s){function u(r,i){return n.coerce(t,e,a,r,i)}var h=u(\"labels\"),f=u(\"parents\");if(h&&h.length&&f&&f.length){var p=u(\"values\");p&&p.length?u(\"branchvalues\"):u(\"count\"),u(\"level\"),u(\"maxdepth\"),u(\"marker.line.width\")&&u(\"marker.line.color\",s.paper_bgcolor),u(\"marker.colors\");var d=e._hasColorscale=l(t,\"marker\",\"colors\");d&&c(t,e,s,u,{prefix:\"marker.\",cLetter:\"c\"}),u(\"leaf.opacity\",d?1:.7);var g=u(\"text\");u(\"texttemplate\"),e.texttemplate||u(\"textinfo\",Array.isArray(g)?\"text+label\":\"label\"),u(\"hovertext\"),u(\"hovertemplate\");o(t,e,s,u,\"auto\",{moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!1,moduleHasCliponaxis:!1,moduleHasTextangle:!1,moduleHasInsideanchor:!1}),i(e,s,u),e._length=null}else e.visible=!1}},{\"../../components/colorscale\":606,\"../../lib\":719,\"../../plots/domain\":792,\"../bar/defaults\":862,\"./attributes\":1213}],1218:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../registry\"),i=t(\"../../components/fx/helpers\").appendArrayPointValue,o=t(\"../../components/fx\"),s=t(\"../../lib\"),l=t(\"../../lib/events\"),c=t(\"./helpers\"),u=t(\"../pie/helpers\").formatPieValue;function h(t,e,r){for(var n=t.data.data,a={curveNumber:e.index,pointNumber:n.i,data:e._input,fullData:e},o=0;o<r.length;o++){var s=r[o];s in t&&(a[s]=t[s])}return\"parentString\"in t&&!c.isHierarchyRoot(t)&&(a.parent=t.parentString),i(a,e,n.i),a}e.exports=function(t,e,r,i,f){var p=i[0],d=p.trace,g=p.hierarchy,v=\"sunburst\"===d.type,m=\"treemap\"===d.type;\"_hasHoverLabel\"in d||(d._hasHoverLabel=!1),\"_hasHoverEvent\"in d||(d._hasHoverEvent=!1);t.on(\"mouseover\",function(a){var i=r._fullLayout;if(!r._dragging&&!1!==i.hovermode){var l=r._fullData[d.index],y=a.data.data,x=y.i,b=c.isHierarchyRoot(a),_=c.getParent(g,a),w=c.getValue(a),k=function(t){return s.castOption(l,x,t)},T=k(\"hovertemplate\"),A=o.castHoverinfo(l,i,x),M=i.separators;if(T||A&&\"none\"!==A&&\"skip\"!==A){var S,E;v&&(S=p.cx+a.pxmid[0]*(1-a.rInscribed),E=p.cy+a.pxmid[1]*(1-a.rInscribed)),m&&(S=a._hoverX,E=a._hoverY);var C,L={},P=[],O=[],I=function(t){return-1!==P.indexOf(t)};A&&(P=\"all\"===A?l._module.attributes.hoverinfo.flags:A.split(\"+\")),L.label=y.label,I(\"label\")&&L.label&&O.push(L.label),y.hasOwnProperty(\"v\")&&(L.value=y.v,L.valueLabel=u(L.value,M),I(\"value\")&&O.push(L.valueLabel)),L.currentPath=a.currentPath=c.getPath(a.data),I(\"current path\")&&!b&&O.push(L.currentPath);var z=[],D=function(){-1===z.indexOf(C)&&(O.push(C),z.push(C))};L.percentParent=a.percentParent=w/c.getValue(_),L.parent=a.parentString=c.getPtLabel(_),I(\"percent parent\")&&(C=c.formatPercent(L.percentParent,M)+\" of \"+L.parent,D()),L.percentEntry=a.percentEntry=w/c.getValue(e),L.entry=a.entry=c.getPtLabel(e),!I(\"percent entry\")||b||a.onPathbar||(C=c.formatPercent(L.percentEntry,M)+\" of \"+L.entry,D()),L.percentRoot=a.percentRoot=w/c.getValue(g),L.root=a.root=c.getPtLabel(g),I(\"percent root\")&&!b&&(C=c.formatPercent(L.percentRoot,M)+\" of \"+L.root,D()),L.text=k(\"hovertext\")||k(\"text\"),I(\"text\")&&(C=L.text,s.isValidTextValue(C)&&O.push(C));var R={trace:l,y:E,text:O.join(\"<br>\"),name:T||I(\"name\")?l.name:void 0,color:k(\"hoverlabel.bgcolor\")||y.color,borderColor:k(\"hoverlabel.bordercolor\"),fontFamily:k(\"hoverlabel.font.family\"),fontSize:k(\"hoverlabel.font.size\"),fontColor:k(\"hoverlabel.font.color\"),nameLength:k(\"hoverlabel.namelength\"),textAlign:k(\"hoverlabel.align\"),hovertemplate:T,hovertemplateLabels:L,eventData:[h(a,l,f.eventDataKeys)]};v&&(R.x0=S-a.rInscribed*a.rpx1,R.x1=S+a.rInscribed*a.rpx1,R.idealAlign=a.pxmid[0]<0?\"left\":\"right\"),m&&(R.x=S,R.idealAlign=S<0?\"left\":\"right\"),o.loneHover(R,{container:i._hoverlayer.node(),outerContainer:i._paper.node(),gd:r}),d._hasHoverLabel=!0}if(m){var F=t.select(\"path.surface\");f.styleOne(F,a,l,{hovered:!0})}d._hasHoverEvent=!0,r.emit(\"plotly_hover\",{points:[h(a,l,f.eventDataKeys)],event:n.event})}}),t.on(\"mouseout\",function(e){var a=r._fullLayout,i=r._fullData[d.index],s=n.select(this).datum();if(d._hasHoverEvent&&(e.originalEvent=n.event,r.emit(\"plotly_unhover\",{points:[h(s,i,f.eventDataKeys)],event:n.event}),d._hasHoverEvent=!1),d._hasHoverLabel&&(o.loneUnhover(a._hoverlayer.node()),d._hasHoverLabel=!1),m){var l=t.select(\"path.surface\");f.styleOne(l,s,i,{hovered:!1})}}),t.on(\"click\",function(t){var e=r._fullLayout,i=r._fullData[d.index];if(!1===l.triggerHandler(r,\"plotly_\"+d.type+\"click\",{points:[h(t,i,f.eventDataKeys)],event:n.event})||v&&(c.isHierarchyRoot(t)||c.isLeaf(t)))e.hovermode&&(r._hoverdata=[h(t,i,f.eventDataKeys)],o.click(r,n.event));else if(!r._dragging&&!r._transitioning){a.call(\"_storeDirectGUIEdit\",i,e._tracePreGUI[i.uid],{level:i.level});var s=c.getPtId(t),u=c.isEntry(t)?c.findEntryWithChild(g,s):c.findEntryWithLevel(g,s),p={data:[{level:c.getPtId(u)}],traces:[d.index]},m={frame:{redraw:!1,duration:f.transitionTime},transition:{duration:f.transitionTime,easing:f.transitionEasing},mode:\"immediate\",fromcurrent:!0};o.loneUnhover(e._hoverlayer.node()),a.call(\"animate\",r,p,m)}})}},{\"../../components/fx\":632,\"../../components/fx/helpers\":629,\"../../lib\":719,\"../../lib/events\":709,\"../../registry\":848,\"../pie/helpers\":1090,\"./helpers\":1219,d3:164}],1219:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/color\"),i=t(\"../../lib/setcursor\"),o=t(\"../pie/helpers\");function s(t){return t.data.data.pid}r.findEntryWithLevel=function(t,e){var n;return e&&t.eachAfter(function(t){if(r.getPtId(t)===e)return n=t.copy()}),n||t},r.findEntryWithChild=function(t,e){var n;return t.eachAfter(function(t){for(var a=t.children||[],i=0;i<a.length;i++){var o=a[i];if(r.getPtId(o)===e)return n=t.copy()}}),n||t},r.isEntry=function(t){return!t.parent},r.isLeaf=function(t){return!t.children},r.getPtId=function(t){return t.data.data.id},r.getPtLabel=function(t){return t.data.data.label},r.getValue=function(t){return t.value},r.isHierarchyRoot=function(t){return\"\"===s(t)},r.setSliceCursor=function(t,e,n){var a=n.isTransitioning;if(!a){var o=t.datum();a=n.hideOnRoot&&r.isHierarchyRoot(o)||n.hideOnLeaves&&r.isLeaf(o)}i(t,a?null:\"pointer\")},r.getInsideTextFontKey=function(t,e,r,a){var i=r.data.data.i;return n.castOption(e,i,\"insidetextfont.\"+t)||n.castOption(e,i,\"textfont.\"+t)||a.size},r.getOutsideTextFontKey=function(t,e,r,a){var i=r.data.data.i;return n.castOption(e,i,\"outsidetextfont.\"+t)||n.castOption(e,i,\"textfont.\"+t)||a.size},r.isOutsideText=function(t,e){return!t._hasColorscale&&r.isHierarchyRoot(e)},r.determineTextFont=function(t,e,i,o){return r.isOutsideText(t,e)?function(t,e,n){return{color:r.getOutsideTextFontKey(\"color\",t,e,n),family:r.getOutsideTextFontKey(\"family\",t,e,n),size:r.getOutsideTextFontKey(\"size\",t,e,n)}}(t,e,i):function(t,e,i,o){var s=e.data.data,l=s.i,c=n.castOption(t,l,\"insidetextfont.color\");return!c&&t._input.textfont&&(c=n.castOption(t._input,l,\"textfont.color\")),{color:c||a.contrast(s.color),family:r.getInsideTextFontKey(\"family\",o||t,e,i),size:r.getInsideTextFontKey(\"size\",o||t,e,i)}}(t,e,i,o)},r.hasTransition=function(t){return!!(t&&t.duration>0)},r.getMaxDepth=function(t){return t.maxdepth>=0?t.maxdepth:1/0},r.isHeader=function(t,e){return!(r.isLeaf(t)||t.depth===e._maxDepth-1)},r.getParent=function(t,e){return r.findEntryWithLevel(t,s(e))},r.listPath=function(t,e){var n=t.parent;if(!n)return[];var a=e?[n.data[e]]:[n];return r.listPath(n,e).concat(a)},r.getPath=function(t){return r.listPath(t,\"label\").join(\"/\")+\"/\"},r.formatValue=o.formatPieValue,r.formatPercent=function(t,e){var r=n.formatPercent(t,0);return\"0%\"===r&&(r=o.formatPiePercent(t,e)),r}},{\"../../components/color\":594,\"../../lib\":719,\"../../lib/setcursor\":739,\"../pie/helpers\":1090}],1220:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"sunburst\",basePlotModule:t(\"./base_plot\"),categories:[],animatable:!0,attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\"),supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\").calc,crossTraceCalc:t(\"./calc\").crossTraceCalc,plot:t(\"./plot\").plot,style:t(\"./style\").style,colorbar:t(\"../scatter/marker_colorbar\"),meta:{}}},{\"../scatter/marker_colorbar\":1128,\"./attributes\":1213,\"./base_plot\":1214,\"./calc\":1215,\"./defaults\":1217,\"./layout_attributes\":1221,\"./layout_defaults\":1222,\"./plot\":1223,\"./style\":1224}],1221:[function(t,e,r){\"use strict\";e.exports={sunburstcolorway:{valType:\"colorlist\",editType:\"calc\"},extendsunburstcolors:{valType:\"boolean\",dflt:!0,editType:\"calc\"}}},{}],1222:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./layout_attributes\");e.exports=function(t,e){function r(r,i){return n.coerce(t,e,a,r,i)}r(\"sunburstcolorway\",e.colorway),r(\"extendsunburstcolors\")}},{\"../../lib\":719,\"./layout_attributes\":1221}],1223:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"d3-hierarchy\"),i=t(\"../../components/drawing\"),o=t(\"../../lib\"),s=t(\"../../lib/svg_text_utils\"),l=t(\"../pie/plot\").transformInsideText,c=t(\"./style\").styleOne,u=t(\"./fx\"),h=t(\"./constants\"),f=t(\"./helpers\");function p(t,e,p,d){var g=t._fullLayout,v=f.hasTransition(d),m=n.select(p).selectAll(\"g.slice\"),y=e[0],x=y.trace,b=y.hierarchy,_=f.findEntryWithLevel(b,x.level),w=f.getMaxDepth(x),k=g._size,T=x.domain,A=k.w*(T.x[1]-T.x[0]),M=k.h*(T.y[1]-T.y[0]),S=.5*Math.min(A,M),E=y.cx=k.l+k.w*(T.x[1]+T.x[0])/2,C=y.cy=k.t+k.h*(1-T.y[0])-M/2;if(!_)return m.remove();var L=null,P={};v&&m.each(function(t){P[f.getPtId(t)]={rpx0:t.rpx0,rpx1:t.rpx1,x0:t.x0,x1:t.x1,transform:t.transform},!L&&f.isEntry(t)&&(L=t)});var O=function(t){return a.partition().size([2*Math.PI,t.height+1])(t)}(_).descendants(),I=_.height+1,z=0,D=w;y.hasMultipleRoots&&f.isHierarchyRoot(_)&&(O=O.slice(1),I-=1,z=1,D+=1),O=O.filter(function(t){return t.y1<=D});var R=Math.min(I,w),F=function(t){return(t-z)/R*S},B=function(t,e){return[t*Math.cos(e),-t*Math.sin(e)]},N=function(t){return o.pathAnnulus(t.rpx0,t.rpx1,t.x0,t.x1,E,C)},j=function(t){return E+t.pxmid[0]*t.transform.rCenter+(t.transform.x||0)},V=function(t){return C+t.pxmid[1]*t.transform.rCenter+(t.transform.y||0)};(m=m.data(O,f.getPtId)).enter().append(\"g\").classed(\"slice\",!0),v?m.exit().transition().each(function(){var t=n.select(this);t.select(\"path.surface\").transition().attrTween(\"d\",function(t){var e=function(t){var e,r=f.getPtId(t),a=P[r],i=P[f.getPtId(_)];if(i){var o=t.x1>i.x1?2*Math.PI:0;e=t.rpx1<i.rpx1?{rpx0:0,rpx1:0}:{x0:o,x1:o}}else{var s,l=f.getPtId(t.parent);m.each(function(t){if(f.getPtId(t)===l)return s=t});var c,u=s.children;u.forEach(function(t,e){if(f.getPtId(t)===r)return c=e});var h=u.length,p=n.interpolate(s.x0,s.x1);e={rpx0:S,rpx1:S,x0:p(c/h),x1:p((c+1)/h)}}return n.interpolate(a,e)}(t);return function(t){return N(e(t))}}),t.select(\"g.slicetext\").attr(\"opacity\",0)}).remove():m.exit().remove(),m.order();var U=null;if(v&&L){var q=f.getPtId(L);m.each(function(t){null===U&&f.getPtId(t)===q&&(U=t.x1)})}var H=m;function G(t){var e=t.parent,r=P[f.getPtId(e)],a={};if(r){var i=e.children,o=i.indexOf(t),s=i.length,l=n.interpolate(r.x0,r.x1);a.x0=l(o/s),a.x1=l(o/s)}else a.x0=a.x1=0;return a}v&&(H=H.transition().each(\"end\",function(){var e=n.select(this);f.setSliceCursor(e,t,{hideOnRoot:!0,hideOnLeaves:!0,isTransitioning:!1})})),H.each(function(a){var p=n.select(this),d=o.ensureSingle(p,\"path\",\"surface\",function(t){t.style(\"pointer-events\",\"all\")});a.rpx0=F(a.y0),a.rpx1=F(a.y1),a.xmid=(a.x0+a.x1)/2,a.pxmid=B(a.rpx1,a.xmid),a.midangle=-(a.xmid-Math.PI/2),a.halfangle=.5*Math.min(o.angleDelta(a.x0,a.x1)||Math.PI,Math.PI),a.ring=1-a.rpx0/a.rpx1,a.rInscribed=function(t){return 0===t.rpx0&&o.isFullCircle([t.x0,t.x1])?1:Math.max(0,Math.min(1/(1+1/Math.sin(t.halfangle)),t.ring/2))}(a),v?d.transition().attrTween(\"d\",function(t){var e=function(t){var e,r=P[f.getPtId(t)],a={x0:t.x0,x1:t.x1,rpx0:t.rpx0,rpx1:t.rpx1};if(r)e=r;else if(L)if(t.parent)if(U){var i=t.x1>U?2*Math.PI:0;e={x0:i,x1:i}}else e={rpx0:S,rpx1:S},o.extendFlat(e,G(t));else e={rpx0:0,rpx1:0};else e={x0:0,x1:0};return n.interpolate(e,a)}(t);return function(t){return N(e(t))}}):d.attr(\"d\",N),p.call(u,_,t,e,{eventDataKeys:h.eventDataKeys,transitionTime:h.CLICK_TRANSITION_TIME,transitionEasing:h.CLICK_TRANSITION_EASING}).call(f.setSliceCursor,t,{hideOnRoot:!0,hideOnLeaves:!0,isTransitioning:t._transitioning}),d.call(c,a,x);var m=o.ensureSingle(p,\"g\",\"slicetext\"),b=o.ensureSingle(m,\"text\",\"\",function(t){t.attr(\"data-notex\",1)});b.text(r.formatSliceLabel(a,_,x,e,g)).classed(\"slicetext\",!0).attr(\"text-anchor\",\"middle\").call(i.font,f.determineTextFont(x,a,g.font)).call(s.convertToTspans,t);var w=i.bBox(b.node());a.transform=l(w,a,y),a.translateX=j(a),a.translateY=V(a);var k=function(t,e){return\"translate(\"+t.translateX+\",\"+t.translateY+\")\"+(t.transform.scale<1?\"scale(\"+t.transform.scale+\")\":\"\")+(t.transform.rotate?\"rotate(\"+t.transform.rotate+\")\":\"\")+\"translate(\"+-(e.left+e.right)/2+\",\"+-(e.top+e.bottom)/2+\")\"};v?b.transition().attrTween(\"transform\",function(t){var e=function(t){var e,r=P[f.getPtId(t)],a=t.transform;if(r)e=r;else if(e={rpx1:t.rpx1,transform:{scale:0,rotate:a.rotate,rCenter:a.rCenter,x:a.x,y:a.y}},L)if(t.parent)if(U){var i=t.x1>U?2*Math.PI:0;e.x0=e.x1=i}else o.extendFlat(e,G(t));else e.x0=e.x1=0;else e.x0=e.x1=0;var s=n.interpolate(e.rpx1,t.rpx1),l=n.interpolate(e.x0,t.x0),c=n.interpolate(e.x1,t.x1),u=n.interpolate(e.transform.scale,a.scale),h=n.interpolate(e.transform.rotate,a.rotate),p=0===a.rCenter?3:0===e.transform.rCenter?1/3:1,d=n.interpolate(e.transform.rCenter,a.rCenter);return function(t){var e=s(t),r=l(t),n=c(t),i=function(t){return d(Math.pow(t,p))}(t),o={pxmid:B(e,(r+n)/2),transform:{rCenter:i,x:a.x,y:a.y}},f={rpx1:s(t),translateX:j(o),translateY:V(o),transform:{scale:u(t),rotate:h(t),rCenter:i}};return f}}(t);return function(t){return k(e(t),w)}}):b.attr(\"transform\",k(a,w))})}r.plot=function(t,e,r,a){var i,o,s=t._fullLayout._sunburstlayer,l=!r,c=f.hasTransition(r);((i=s.selectAll(\"g.trace.sunburst\").data(e,function(t){return t[0].trace.uid})).enter().append(\"g\").classed(\"trace\",!0).classed(\"sunburst\",!0).attr(\"stroke-linejoin\",\"round\"),i.order(),c)?(a&&(o=a()),n.transition().duration(r.duration).ease(r.easing).each(\"end\",function(){o&&o()}).each(\"interrupt\",function(){o&&o()}).each(function(){s.selectAll(\"g.trace\").each(function(e){p(t,e,this,r)})})):i.each(function(e){p(t,e,this,r)});l&&i.exit().remove()},r.formatSliceLabel=function(t,e,r,n,a){var i=r.texttemplate,s=r.textinfo;if(!(i||s&&\"none\"!==s))return\"\";var l=a.separators,c=n[0],u=t.data.data,h=c.hierarchy,p=f.isHierarchyRoot(t),d=f.getParent(h,t),g=f.getValue(t);if(!i){var v,m=s.split(\"+\"),y=function(t){return-1!==m.indexOf(t)},x=[];if(y(\"label\")&&u.label&&x.push(u.label),u.hasOwnProperty(\"v\")&&y(\"value\")&&x.push(f.formatValue(u.v,l)),!p){y(\"current path\")&&x.push(f.getPath(t.data));var b=0;y(\"percent parent\")&&b++,y(\"percent entry\")&&b++,y(\"percent root\")&&b++;var _=b>1;if(b){var w,k=function(t){v=f.formatPercent(w,l),_&&(v+=\" of \"+t),x.push(v)};y(\"percent parent\")&&!p&&(w=g/f.getValue(d),k(\"parent\")),y(\"percent entry\")&&(w=g/f.getValue(e),k(\"entry\")),y(\"percent root\")&&(w=g/f.getValue(h),k(\"root\"))}}return y(\"text\")&&(v=o.castOption(r,u.i,\"text\"),o.isValidTextValue(v)&&x.push(v)),x.join(\"<br>\")}var T=o.castOption(r,u.i,\"texttemplate\");if(!T)return\"\";var A={};u.label&&(A.label=u.label),u.hasOwnProperty(\"v\")&&(A.value=u.v,A.valueLabel=f.formatValue(u.v,l)),A.currentPath=f.getPath(t.data),p||(A.percentParent=g/f.getValue(d),A.percentParentLabel=f.formatPercent(A.percentParent,l),A.parent=f.getPtLabel(d)),A.percentEntry=g/f.getValue(e),A.percentEntryLabel=f.formatPercent(A.percentEntry,l),A.entry=f.getPtLabel(e),A.percentRoot=g/f.getValue(h),A.percentRootLabel=f.formatPercent(A.percentRoot,l),A.root=f.getPtLabel(h),u.hasOwnProperty(\"color\")&&(A.color=u.color);var M=o.castOption(r,u.i,\"text\");return(o.isValidTextValue(M)||\"\"===M)&&(A.text=M),A.customdata=o.castOption(r,u.i,\"customdata\"),o.texttemplateString(T,A,a._d3locale,A,r._meta||{})}},{\"../../components/drawing\":615,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../pie/plot\":1094,\"./constants\":1216,\"./fx\":1218,\"./helpers\":1219,\"./style\":1224,d3:164,\"d3-hierarchy\":158}],1224:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/color\"),i=t(\"../../lib\");function o(t,e,r){var n=e.data.data,o=!e.children,s=n.i,l=i.castOption(r,s,\"marker.line.color\")||a.defaultLine,c=i.castOption(r,s,\"marker.line.width\")||0;t.style(\"stroke-width\",c).call(a.fill,n.color).call(a.stroke,l).style(\"opacity\",o?r.leaf.opacity:null)}e.exports={style:function(t){t._fullLayout._sunburstlayer.selectAll(\".trace\").each(function(t){var e=n.select(this),r=t[0].trace;e.style(\"opacity\",r.opacity),e.selectAll(\"path.surface\").each(function(t){n.select(this).call(o,t,r)})})},styleOne:o}},{\"../../components/color\":594,\"../../lib\":719,d3:164}],1225:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\"),a=t(\"../../components/colorscale/attributes\"),i=t(\"../../plots/template_attributes\").hovertemplateAttrs,o=t(\"../../plots/attributes\"),s=t(\"../../lib/extend\").extendFlat,l=t(\"../../plot_api/edit_types\").overrideAll;function c(t){return{show:{valType:\"boolean\",dflt:!1},start:{valType:\"number\",dflt:null,editType:\"plot\"},end:{valType:\"number\",dflt:null,editType:\"plot\"},size:{valType:\"number\",dflt:null,min:0,editType:\"plot\"},project:{x:{valType:\"boolean\",dflt:!1},y:{valType:\"boolean\",dflt:!1},z:{valType:\"boolean\",dflt:!1}},color:{valType:\"color\",dflt:n.defaultLine},usecolormap:{valType:\"boolean\",dflt:!1},width:{valType:\"number\",min:1,max:16,dflt:2},highlight:{valType:\"boolean\",dflt:!0},highlightcolor:{valType:\"color\",dflt:n.defaultLine},highlightwidth:{valType:\"number\",min:1,max:16,dflt:2}}}var u=e.exports=l(s({z:{valType:\"data_array\"},x:{valType:\"data_array\"},y:{valType:\"data_array\"},text:{valType:\"string\",dflt:\"\",arrayOk:!0},hovertext:{valType:\"string\",dflt:\"\",arrayOk:!0},hovertemplate:i(),connectgaps:{valType:\"boolean\",dflt:!1,editType:\"calc\"},surfacecolor:{valType:\"data_array\"}},a(\"\",{colorAttr:\"z or surfacecolor\",showScaleDflt:!0,autoColorDflt:!1,editTypeOverride:\"calc\"}),{contours:{x:c(),y:c(),z:c()},hidesurface:{valType:\"boolean\",dflt:!1},lightposition:{x:{valType:\"number\",min:-1e5,max:1e5,dflt:10},y:{valType:\"number\",min:-1e5,max:1e5,dflt:1e4},z:{valType:\"number\",min:-1e5,max:1e5,dflt:0}},lighting:{ambient:{valType:\"number\",min:0,max:1,dflt:.8},diffuse:{valType:\"number\",min:0,max:1,dflt:.8},specular:{valType:\"number\",min:0,max:2,dflt:.05},roughness:{valType:\"number\",min:0,max:1,dflt:.5},fresnel:{valType:\"number\",min:0,max:5,dflt:.2}},opacity:{valType:\"number\",min:0,max:1,dflt:1},_deprecated:{zauto:s({},a.zauto,{}),zmin:s({},a.zmin,{}),zmax:s({},a.zmax,{})},hoverinfo:s({},o.hoverinfo)}),\"calc\",\"nested\");u.x.editType=u.y.editType=u.z.editType=\"calc+clearAxisTypes\",u.transforms=void 0},{\"../../components/color\":594,\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../../plots/attributes\":764,\"../../plots/template_attributes\":843}],1226:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/calc\");e.exports=function(t,e){e.surfacecolor?n(t,e,{vals:e.surfacecolor,containerStr:\"\",cLetter:\"c\"}):n(t,e,{vals:e.z,containerStr:\"\",cLetter:\"c\"})}},{\"../../components/colorscale/calc\":602}],1227:[function(t,e,r){\"use strict\";var n=t(\"gl-surface3d\"),a=t(\"ndarray\"),i=t(\"ndarray-homography\"),o=t(\"ndarray-fill\"),s=t(\"../../lib\").isArrayOrTypedArray,l=t(\"../../lib/gl_format_color\").parseColorScale,c=t(\"../../lib/str2rgbarray\"),u=t(\"../../components/colorscale\").extractOpts,h=t(\"../heatmap/interp2d\"),f=t(\"../heatmap/find_empties\");function p(t,e,r){this.scene=t,this.uid=r,this.surface=e,this.data=null,this.showContour=[!1,!1,!1],this.contourStart=[null,null,null],this.contourEnd=[null,null,null],this.contourSize=[0,0,0],this.minValues=[1/0,1/0,1/0],this.maxValues=[-1/0,-1/0,-1/0],this.dataScaleX=1,this.dataScaleY=1,this.refineData=!0,this.objectOffset=[0,0,0]}var d=p.prototype;d.getXat=function(t,e,r,n){var a=s(this.data.x)?s(this.data.x[0])?this.data.x[e][t]:this.data.x[t]:t;return void 0===r?a:n.d2l(a,0,r)},d.getYat=function(t,e,r,n){var a=s(this.data.y)?s(this.data.y[0])?this.data.y[e][t]:this.data.y[e]:e;return void 0===r?a:n.d2l(a,0,r)},d.getZat=function(t,e,r,n){var a=this.data.z[e][t];return null===a&&this.data.connectgaps&&this.data._interpolatedZ&&(a=this.data._interpolatedZ[e][t]),void 0===r?a:n.d2l(a,0,r)},d.handlePick=function(t){if(t.object===this.surface){var e=(t.data.index[0]-1)/this.dataScaleX-1,r=(t.data.index[1]-1)/this.dataScaleY-1,n=Math.max(Math.min(Math.round(e),this.data.z[0].length-1),0),a=Math.max(Math.min(Math.round(r),this.data._ylength-1),0);t.index=[n,a],t.traceCoordinate=[this.getXat(n,a),this.getYat(n,a),this.getZat(n,a)],t.dataCoordinate=[this.getXat(n,a,this.data.xcalendar,this.scene.fullSceneLayout.xaxis),this.getYat(n,a,this.data.ycalendar,this.scene.fullSceneLayout.yaxis),this.getZat(n,a,this.data.zcalendar,this.scene.fullSceneLayout.zaxis)];for(var i=0;i<3;i++){var o=t.dataCoordinate[i];null!=o&&(t.dataCoordinate[i]*=this.scene.dataScale[i])}var s=this.data.hovertext||this.data.text;return Array.isArray(s)&&s[a]&&void 0!==s[a][n]?t.textLabel=s[a][n]:t.textLabel=s||\"\",t.data.dataCoordinate=t.dataCoordinate.slice(),this.surface.highlight(t.data),this.scene.glplot.spikes.position=t.dataCoordinate,!0}};var g=[2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,211,223,227,229,233,239,241,251,257,263,269,271,277,281,283,293,307,311,313,317,331,337,347,349,353,359,367,373,379,383,389,397,401,409,419,421,431,433,439,443,449,457,461,463,467,479,487,491,499,503,509,521,523,541,547,557,563,569,571,577,587,593,599,601,607,613,617,619,631,641,643,647,653,659,661,673,677,683,691,701,709,719,727,733,739,743,751,757,761,769,773,787,797,809,811,821,823,827,829,839,853,857,859,863,877,881,883,887,907,911,919,929,937,941,947,953,967,971,977,983,991,997,1009,1013,1019,1021,1031,1033,1039,1049,1051,1061,1063,1069,1087,1091,1093,1097,1103,1109,1117,1123,1129,1151,1153,1163,1171,1181,1187,1193,1201,1213,1217,1223,1229,1231,1237,1249,1259,1277,1279,1283,1289,1291,1297,1301,1303,1307,1319,1321,1327,1361,1367,1373,1381,1399,1409,1423,1427,1429,1433,1439,1447,1451,1453,1459,1471,1481,1483,1487,1489,1493,1499,1511,1523,1531,1543,1549,1553,1559,1567,1571,1579,1583,1597,1601,1607,1609,1613,1619,1621,1627,1637,1657,1663,1667,1669,1693,1697,1699,1709,1721,1723,1733,1741,1747,1753,1759,1777,1783,1787,1789,1801,1811,1823,1831,1847,1861,1867,1871,1873,1877,1879,1889,1901,1907,1913,1931,1933,1949,1951,1973,1979,1987,1993,1997,1999,2003,2011,2017,2027,2029,2039,2053,2063,2069,2081,2083,2087,2089,2099,2111,2113,2129,2131,2137,2141,2143,2153,2161,2179,2203,2207,2213,2221,2237,2239,2243,2251,2267,2269,2273,2281,2287,2293,2297,2309,2311,2333,2339,2341,2347,2351,2357,2371,2377,2381,2383,2389,2393,2399,2411,2417,2423,2437,2441,2447,2459,2467,2473,2477,2503,2521,2531,2539,2543,2549,2551,2557,2579,2591,2593,2609,2617,2621,2633,2647,2657,2659,2663,2671,2677,2683,2687,2689,2693,2699,2707,2711,2713,2719,2729,2731,2741,2749,2753,2767,2777,2789,2791,2797,2801,2803,2819,2833,2837,2843,2851,2857,2861,2879,2887,2897,2903,2909,2917,2927,2939,2953,2957,2963,2969,2971,2999];function v(t,e){if(t<e)return 0;for(var r=0;0===Math.floor(t%e);)t/=e,r++;return r}function m(t){for(var e=[],r=0;r<g.length;r++){var n=g[r];e.push(v(t,n))}return e}function y(t){for(var e=m(t),r=t,n=0;n<g.length;n++)if(e[n]>0){r=g[n];break}return r}function x(t,e){if(!(t<1||e<1)){for(var r=m(t),n=m(e),a=1,i=0;i<g.length;i++)a*=Math.pow(g[i],Math.max(r[i],n[i]));return a}}d.calcXnums=function(t){var e,r=[];for(e=1;e<t;e++){var n=this.getXat(e-1,0),a=this.getXat(e,0);r[e-1]=a!==n&&null!=n&&null!=a?Math.abs(a-n):0}var i=0;for(e=1;e<t;e++)i+=r[e-1];for(e=1;e<t;e++)0===r[e-1]?r[e-1]=1:r[e-1]=Math.round(i/r[e-1]);return r},d.calcYnums=function(t){var e,r=[];for(e=1;e<t;e++){var n=this.getYat(0,e-1),a=this.getYat(0,e);r[e-1]=a!==n&&null!=n&&null!=a?Math.abs(a-n):0}var i=0;for(e=1;e<t;e++)i+=r[e-1];for(e=1;e<t;e++)0===r[e-1]?r[e-1]=1:r[e-1]=Math.round(i/r[e-1]);return r};var b=[1,2,4,6,12,24,36,48,60,120,180,240,360,720,840,1260],_=b[9],w=b[13];function k(t,e){for(var r=!1,n=0;n<t.length;n++)if(e===t[n]){r=!0;break}!1===r&&t.push(e)}d.estimateScale=function(t,e){for(var r=1+function(t){if(0!==t.length){for(var e=1,r=0;r<t.length;r++)e=x(e,t[r]);return e}}(0===e?this.calcXnums(t):this.calcYnums(t));r<_;)r*=2;for(;r>w;)r--,r/=y(r),++r<_&&(r=w);var n=Math.round(r/t);return n>1?n:1},d.refineCoords=function(t){for(var e=this.dataScaleX,r=this.dataScaleY,n=t[0].shape[0],o=t[0].shape[1],s=0|Math.floor(t[0].shape[0]*e+1),l=0|Math.floor(t[0].shape[1]*r+1),c=1+n+1,u=1+o+1,h=a(new Float32Array(c*u),[c,u]),f=0;f<t.length;++f){this.surface.padField(h,t[f]);var p=a(new Float32Array(s*l),[s,l]);i(p,h,[e,0,0,0,r,0,0,0,1]),t[f]=p}},d.setContourLevels=function(){var t,e,r,n=[[],[],[]],a=[!1,!1,!1],i=!1;for(t=0;t<3;++t)if(this.showContour[t]&&(i=!0,this.contourSize[t]>0&&null!==this.contourStart[t]&&null!==this.contourEnd[t]&&this.contourEnd[t]>this.contourStart[t]))for(a[t]=!0,e=this.contourStart[t];e<this.contourEnd[t];e+=this.contourSize[t])r=e*this.scene.dataScale[t],k(n[t],r);if(i){var o=[[],[],[]];for(t=0;t<3;++t)this.showContour[t]&&(o[t]=a[t]?n[t]:this.scene.contourLevels[t]);this.surface.update({levels:o})}},d.update=function(t){var e,r,n,i,s=this.scene,p=s.fullSceneLayout,d=this.surface,g=t.opacity,v=l(t,g),m=s.dataScale,y=t.z[0].length,x=t._ylength,b=s.contourLevels;this.data=t;var _=[];for(e=0;e<3;e++)for(_[e]=[],r=0;r<y;r++)_[e][r]=[];for(r=0;r<y;r++)for(n=0;n<x;n++)_[0][r][n]=this.getXat(r,n,t.xcalendar,p.xaxis),_[1][r][n]=this.getYat(r,n,t.ycalendar,p.yaxis),_[2][r][n]=this.getZat(r,n,t.zcalendar,p.zaxis);if(t.connectgaps)for(t._emptypoints=f(_[2]),h(_[2],t._emptypoints),t._interpolatedZ=[],r=0;r<y;r++)for(t._interpolatedZ[r]=[],n=0;n<x;n++)t._interpolatedZ[r][n]=_[2][r][n];for(e=0;e<3;e++)for(r=0;r<y;r++)for(n=0;n<x;n++)null==(i=_[e][r][n])?_[e][r][n]=NaN:i=_[e][r][n]*=m[e];for(e=0;e<3;e++)for(r=0;r<y;r++)for(n=0;n<x;n++)null!=(i=_[e][r][n])&&(this.minValues[e]>i&&(this.minValues[e]=i),this.maxValues[e]<i&&(this.maxValues[e]=i));for(e=0;e<3;e++)this.objectOffset[e]=.5*(this.minValues[e]+this.maxValues[e]);for(e=0;e<3;e++)for(r=0;r<y;r++)for(n=0;n<x;n++)null!=(i=_[e][r][n])&&(_[e][r][n]-=this.objectOffset[e]);var k=[a(new Float32Array(y*x),[y,x]),a(new Float32Array(y*x),[y,x]),a(new Float32Array(y*x),[y,x])];o(k[0],function(t,e){return _[0][t][e]}),o(k[1],function(t,e){return _[1][t][e]}),o(k[2],function(t,e){return _[2][t][e]}),_=[];var T={colormap:v,levels:[[],[],[]],showContour:[!0,!0,!0],showSurface:!t.hidesurface,contourProject:[[!1,!1,!1],[!1,!1,!1],[!1,!1,!1]],contourWidth:[1,1,1],contourColor:[[1,1,1,1],[1,1,1,1],[1,1,1,1]],contourTint:[1,1,1],dynamicColor:[[1,1,1,1],[1,1,1,1],[1,1,1,1]],dynamicWidth:[1,1,1],dynamicTint:[1,1,1],opacity:t.opacity},A=u(t);if(T.intensityBounds=[A.min,A.max],t.surfacecolor){var M=a(new Float32Array(y*x),[y,x]);o(M,function(e,r){return t.surfacecolor[r][e]}),k.push(M)}else T.intensityBounds[0]*=m[2],T.intensityBounds[1]*=m[2];(w<k[0].shape[0]||w<k[0].shape[1])&&(this.refineData=!1),!0===this.refineData&&(this.dataScaleX=this.estimateScale(k[0].shape[0],0),this.dataScaleY=this.estimateScale(k[0].shape[1],1),1===this.dataScaleX&&1===this.dataScaleY||this.refineCoords(k)),t.surfacecolor&&(T.intensity=k.pop());var S=[!0,!0,!0],E=[\"x\",\"y\",\"z\"];for(e=0;e<3;++e){var C=t.contours[E[e]];S[e]=C.highlight,T.showContour[e]=C.show||C.highlight,T.showContour[e]&&(T.contourProject[e]=[C.project.x,C.project.y,C.project.z],C.show?(this.showContour[e]=!0,T.levels[e]=b[e],d.highlightColor[e]=T.contourColor[e]=c(C.color),C.usecolormap?d.highlightTint[e]=T.contourTint[e]=0:d.highlightTint[e]=T.contourTint[e]=1,T.contourWidth[e]=C.width,this.contourStart[e]=C.start,this.contourEnd[e]=C.end,this.contourSize[e]=C.size):(this.showContour[e]=!1,this.contourStart[e]=null,this.contourEnd[e]=null,this.contourSize[e]=0),C.highlight&&(T.dynamicColor[e]=c(C.highlightcolor),T.dynamicWidth[e]=C.highlightwidth))}(function(t){var e=t[0].rgb,r=t[t.length-1].rgb;return e[0]===r[0]&&e[1]===r[1]&&e[2]===r[2]&&e[3]===r[3]})(v)&&(T.vertexColor=!0),T.objectOffset=this.objectOffset,T.coords=k,d.update(T),d.visible=t.visible,d.enableDynamic=S,d.enableHighlight=S,d.snapToData=!0,\"lighting\"in t&&(d.ambientLight=t.lighting.ambient,d.diffuseLight=t.lighting.diffuse,d.specularLight=t.lighting.specular,d.roughness=t.lighting.roughness,d.fresnel=t.lighting.fresnel),\"lightposition\"in t&&(d.lightPosition=[t.lightposition.x,t.lightposition.y,t.lightposition.z]),g&&g<1&&(d.supportsTransparency=!0)},d.dispose=function(){this.scene.glplot.remove(this.surface),this.surface.dispose()},e.exports=function(t,e){var r=t.glplot.gl,a=n({gl:r}),i=new p(t,a,e.uid);return a._trace=i,i.update(e),t.glplot.add(a),i}},{\"../../components/colorscale\":606,\"../../lib\":719,\"../../lib/gl_format_color\":716,\"../../lib/str2rgbarray\":742,\"../heatmap/find_empties\":1006,\"../heatmap/interp2d\":1009,\"gl-surface3d\":317,ndarray:451,\"ndarray-fill\":441,\"ndarray-homography\":443}],1228:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),a=t(\"../../lib\"),i=t(\"../../components/colorscale/defaults\"),o=t(\"./attributes\");function s(t,e,r){e in t&&!(r in t)&&(t[r]=t[e])}e.exports=function(t,e,r,l){var c,u;function h(r,n){return a.coerce(t,e,o,r,n)}var f=h(\"x\"),p=h(\"y\"),d=h(\"z\");if(!d||!d.length||f&&f.length<1||p&&p.length<1)e.visible=!1;else{e._xlength=Array.isArray(f)&&a.isArrayOrTypedArray(f[0])?d.length:d[0].length,e._ylength=d.length,n.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\",\"y\",\"z\"],l),h(\"text\"),h(\"hovertext\"),h(\"hovertemplate\"),[\"lighting.ambient\",\"lighting.diffuse\",\"lighting.specular\",\"lighting.roughness\",\"lighting.fresnel\",\"lightposition.x\",\"lightposition.y\",\"lightposition.z\",\"hidesurface\",\"connectgaps\",\"opacity\"].forEach(function(t){h(t)});var g=h(\"surfacecolor\"),v=[\"x\",\"y\",\"z\"];for(c=0;c<3;++c){var m=\"contours.\"+v[c],y=h(m+\".show\"),x=h(m+\".highlight\");if(y||x)for(u=0;u<3;++u)h(m+\".project.\"+v[u]);y&&(h(m+\".color\"),h(m+\".width\"),h(m+\".usecolormap\")),x&&(h(m+\".highlightcolor\"),h(m+\".highlightwidth\")),h(m+\".start\"),h(m+\".end\"),h(m+\".size\")}g||(s(t,\"zmin\",\"cmin\"),s(t,\"zmax\",\"cmax\"),s(t,\"zauto\",\"cauto\")),i(t,e,l,h,{prefix:\"\",cLetter:\"c\"}),e._length=null}}},{\"../../components/colorscale/defaults\":604,\"../../lib\":719,\"../../registry\":848,\"./attributes\":1225}],1229:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:{min:\"cmin\",max:\"cmax\"},calc:t(\"./calc\"),plot:t(\"./convert\"),moduleType:\"trace\",name:\"surface\",basePlotModule:t(\"../../plots/gl3d\"),categories:[\"gl3d\",\"2dMap\",\"noOpacity\"],meta:{}}},{\"../../plots/gl3d\":807,\"./attributes\":1225,\"./calc\":1226,\"./convert\":1227,\"./defaults\":1228}],1230:[function(t,e,r){\"use strict\";var n=t(\"../../components/annotations/attributes\"),a=t(\"../../lib/extend\").extendFlat,i=t(\"../../plot_api/edit_types\").overrideAll,o=t(\"../../plots/font_attributes\"),s=t(\"../../plots/domain\").attributes;t(\"../../constants/docs\").FORMAT_LINK;(e.exports=i({domain:s({name:\"table\",trace:!0}),columnwidth:{valType:\"number\",arrayOk:!0,dflt:null},columnorder:{valType:\"data_array\"},header:{values:{valType:\"data_array\",dflt:[]},format:{valType:\"data_array\",dflt:[]},prefix:{valType:\"string\",arrayOk:!0,dflt:null},suffix:{valType:\"string\",arrayOk:!0,dflt:null},height:{valType:\"number\",dflt:28},align:a({},n.align,{arrayOk:!0}),line:{width:{valType:\"number\",arrayOk:!0,dflt:1},color:{valType:\"color\",arrayOk:!0,dflt:\"grey\"}},fill:{color:{valType:\"color\",arrayOk:!0,dflt:\"white\"}},font:a({},o({arrayOk:!0}))},cells:{values:{valType:\"data_array\",dflt:[]},format:{valType:\"data_array\",dflt:[]},prefix:{valType:\"string\",arrayOk:!0,dflt:null},suffix:{valType:\"string\",arrayOk:!0,dflt:null},height:{valType:\"number\",dflt:20},align:a({},n.align,{arrayOk:!0}),line:{width:{valType:\"number\",arrayOk:!0,dflt:1},color:{valType:\"color\",arrayOk:!0,dflt:\"grey\"}},fill:{color:{valType:\"color\",arrayOk:!0,dflt:\"white\"}},font:a({},o({arrayOk:!0}))}},\"calc\",\"from-root\")).transforms=void 0},{\"../../components/annotations/attributes\":577,\"../../constants/docs\":690,\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../../plots/domain\":792,\"../../plots/font_attributes\":793}],1231:[function(t,e,r){\"use strict\";var n=t(\"../../plots/get_data\").getModuleCalcData,a=t(\"./plot\");r.name=\"table\",r.plot=function(t){var e=n(t.calcdata,\"table\")[0];e.length&&a(t,e)},r.clean=function(t,e,r,n){var a=n._has&&n._has(\"table\"),i=e._has&&e._has(\"table\");a&&!i&&n._paperdiv.selectAll(\".table\").remove()}},{\"../../plots/get_data\":802,\"./plot\":1238}],1232:[function(t,e,r){\"use strict\";var n=t(\"../../lib/gup\").wrap;e.exports=function(){return n({})}},{\"../../lib/gup\":717}],1233:[function(t,e,r){\"use strict\";e.exports={cellPad:8,columnExtentOffset:10,columnTitleOffset:28,emptyHeaderHeight:16,latexCheck:/^\\$.*\\$$/,goldenRatio:1.618,lineBreaker:\"<br>\",maxDimensionCount:60,overdrag:45,releaseTransitionDuration:120,releaseTransitionEase:\"cubic-out\",scrollbarCaptureWidth:18,scrollbarHideDelay:1e3,scrollbarHideDuration:1e3,scrollbarOffset:5,scrollbarWidth:8,transitionDuration:100,transitionEase:\"cubic-out\",uplift:5,wrapSpacer:\" \",wrapSplitCharacter:\" \",cn:{table:\"table\",tableControlView:\"table-control-view\",scrollBackground:\"scroll-background\",yColumn:\"y-column\",columnBlock:\"column-block\",scrollAreaClip:\"scroll-area-clip\",scrollAreaClipRect:\"scroll-area-clip-rect\",columnBoundary:\"column-boundary\",columnBoundaryClippath:\"column-boundary-clippath\",columnBoundaryRect:\"column-boundary-rect\",columnCells:\"column-cells\",columnCell:\"column-cell\",cellRect:\"cell-rect\",cellText:\"cell-text\",cellTextHolder:\"cell-text-holder\",scrollbarKit:\"scrollbar-kit\",scrollbar:\"scrollbar\",scrollbarSlider:\"scrollbar-slider\",scrollbarGlyph:\"scrollbar-glyph\",scrollbarCaptureZone:\"scrollbar-capture-zone\"}}},{}],1234:[function(t,e,r){\"use strict\";var n=t(\"./constants\"),a=t(\"../../lib/extend\").extendFlat,i=t(\"fast-isnumeric\");function o(t){if(Array.isArray(t)){for(var e=0,r=0;r<t.length;r++)e=Math.max(e,o(t[r]));return e}return t}function s(t,e){return t+e}function l(t){var e,r=t.slice(),n=1/0,a=0;for(e=0;e<r.length;e++)Array.isArray(r[e])||(r[e]=[r[e]]),n=Math.min(n,r[e].length),a=Math.max(a,r[e].length);if(n!==a)for(e=0;e<r.length;e++){var i=a-r[e].length;i&&(r[e]=r[e].concat(c(i)))}return r}function c(t){for(var e=new Array(t),r=0;r<t;r++)e[r]=\"\";return e}function u(t){return t.calcdata.columns.reduce(function(e,r){return r.xIndex<t.xIndex?e+r.columnWidth:e},0)}function h(t,e){return Object.keys(t).map(function(r){return a({},t[r],{auxiliaryBlocks:e})})}function f(t,e){for(var r,n={},a=0,i=0,o={firstRowIndex:null,lastRowIndex:null,rows:[]},s=0,l=0,c=0;c<t.length;c++)r=t[c],o.rows.push({rowIndex:c,rowHeight:r}),((i+=r)>=e||c===t.length-1)&&(n[a]=o,o.key=l++,o.firstRowIndex=s,o.lastRowIndex=c,o={firstRowIndex:null,lastRowIndex:null,rows:[]},a+=i,s=c+1,i=0);return n}e.exports=function(t,e){var r=l(e.cells.values),p=function(t){return t.slice(e.header.values.length,t.length)},d=l(e.header.values);d.length&&!d[0].length&&(d[0]=[\"\"],d=l(d));var g=d.concat(p(r).map(function(){return c((d[0]||[\"\"]).length)})),v=e.domain,m=Math.floor(t._fullLayout._size.w*(v.x[1]-v.x[0])),y=Math.floor(t._fullLayout._size.h*(v.y[1]-v.y[0])),x=e.header.values.length?g[0].map(function(){return e.header.height}):[n.emptyHeaderHeight],b=r.length?r[0].map(function(){return e.cells.height}):[],_=x.reduce(s,0),w=f(b,y-_+n.uplift),k=h(f(x,_),[]),T=h(w,k),A={},M=e._fullInput.columnorder.concat(p(r.map(function(t,e){return e}))),S=g.map(function(t,r){var n=Array.isArray(e.columnwidth)?e.columnwidth[Math.min(r,e.columnwidth.length-1)]:e.columnwidth;return i(n)?Number(n):1}),E=S.reduce(s,0);S=S.map(function(t){return t/E*m});var C=Math.max(o(e.header.line.width),o(e.cells.line.width)),L={key:e.uid+t._context.staticPlot,translateX:v.x[0]*t._fullLayout._size.w,translateY:t._fullLayout._size.h*(1-v.y[1]),size:t._fullLayout._size,width:m,maxLineWidth:C,height:y,columnOrder:M,groupHeight:y,rowBlocks:T,headerRowBlocks:k,scrollY:0,cells:a({},e.cells,{values:r}),headerCells:a({},e.header,{values:g}),gdColumns:g.map(function(t){return t[0]}),gdColumnsOriginalOrder:g.map(function(t){return t[0]}),prevPages:[0,0],scrollbarState:{scrollbarScrollInProgress:!1},columns:g.map(function(t,e){var r=A[t];return A[t]=(r||0)+1,{key:t+\"__\"+A[t],label:t,specIndex:e,xIndex:M[e],xScale:u,x:void 0,calcdata:void 0,columnWidth:S[e]}})};return L.columns.forEach(function(t){t.calcdata=L,t.x=u(t)}),L}},{\"../../lib/extend\":710,\"./constants\":1233,\"fast-isnumeric\":226}],1235:[function(t,e,r){\"use strict\";var n=t(\"../../lib/extend\").extendFlat;r.splitToPanels=function(t){var e=[0,0],r=n({},t,{key:\"header\",type:\"header\",page:0,prevPages:e,currentRepaint:[null,null],dragHandle:!0,values:t.calcdata.headerCells.values[t.specIndex],rowBlocks:t.calcdata.headerRowBlocks,calcdata:n({},t.calcdata,{cells:t.calcdata.headerCells})});return[n({},t,{key:\"cells1\",type:\"cells\",page:0,prevPages:e,currentRepaint:[null,null],dragHandle:!1,values:t.calcdata.cells.values[t.specIndex],rowBlocks:t.calcdata.rowBlocks}),n({},t,{key:\"cells2\",type:\"cells\",page:1,prevPages:e,currentRepaint:[null,null],dragHandle:!1,values:t.calcdata.cells.values[t.specIndex],rowBlocks:t.calcdata.rowBlocks}),r]},r.splitToCells=function(t){var e=function(t){var e=t.rowBlocks[t.page],r=e?e.rows[0].rowIndex:0,n=e?r+e.rows.length:0;return[r,n]}(t);return(t.values||[]).slice(e[0],e[1]).map(function(r,n){return{keyWithinBlock:n+(\"string\"==typeof r&&r.match(/[<$&> ]/)?\"_keybuster_\"+Math.random():\"\"),key:e[0]+n,column:t,calcdata:t.calcdata,page:t.page,rowBlocks:t.rowBlocks,value:r}})}},{\"../../lib/extend\":710}],1236:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./attributes\"),i=t(\"../../plots/domain\").defaults;e.exports=function(t,e,r,o){function s(r,i){return n.coerce(t,e,a,r,i)}i(e,o,s),s(\"columnwidth\"),s(\"header.values\"),s(\"header.format\"),s(\"header.align\"),s(\"header.prefix\"),s(\"header.suffix\"),s(\"header.height\"),s(\"header.line.width\"),s(\"header.line.color\"),s(\"header.fill.color\"),n.coerceFont(s,\"header.font\",n.extendFlat({},o.font)),function(t,e){for(var r=t.columnorder||[],n=t.header.values.length,a=r.slice(0,n),i=a.slice().sort(function(t,e){return t-e}),o=a.map(function(t){return i.indexOf(t)}),s=o.length;s<n;s++)o.push(s);e(\"columnorder\",o)}(e,s),s(\"cells.values\"),s(\"cells.format\"),s(\"cells.align\"),s(\"cells.prefix\"),s(\"cells.suffix\"),s(\"cells.height\"),s(\"cells.line.width\"),s(\"cells.line.color\"),s(\"cells.fill.color\"),n.coerceFont(s,\"cells.font\",n.extendFlat({},o.font)),e._length=null}},{\"../../lib\":719,\"../../plots/domain\":792,\"./attributes\":1230}],1237:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),plot:t(\"./plot\"),moduleType:\"trace\",name:\"table\",basePlotModule:t(\"./base_plot\"),categories:[\"noOpacity\"],meta:{}}},{\"./attributes\":1230,\"./base_plot\":1231,\"./calc\":1232,\"./defaults\":1236,\"./plot\":1238}],1238:[function(t,e,r){\"use strict\";var n=t(\"./constants\"),a=t(\"d3\"),i=t(\"../../lib/gup\"),o=t(\"../../components/drawing\"),s=t(\"../../lib/svg_text_utils\"),l=t(\"../../lib\").raiseToTop,c=t(\"../../lib\").cancelTransition,u=t(\"./data_preparation_helper\"),h=t(\"./data_split_helpers\"),f=t(\"../../components/color\");function p(t){return Math.ceil(t.calcdata.maxLineWidth/2)}function d(t,e){return\"clip\"+t._fullLayout._uid+\"_scrollAreaBottomClip_\"+e.key}function g(t,e){return\"clip\"+t._fullLayout._uid+\"_columnBoundaryClippath_\"+e.calcdata.key+\"_\"+e.specIndex}function v(t){return[].concat.apply([],t.map(function(t){return t})).map(function(t){return t.__data__})}function m(t,e,r){var o=t.selectAll(\".\"+n.cn.scrollbarKit).data(i.repeat,i.keyFun);o.enter().append(\"g\").classed(n.cn.scrollbarKit,!0).style(\"shape-rendering\",\"geometricPrecision\"),o.each(function(t){var e=t.scrollbarState;e.totalHeight=function(t){var e=t.rowBlocks;return I(e,e.length-1)+(e.length?z(e[e.length-1],1/0):1)}(t),e.scrollableAreaHeight=t.groupHeight-A(t),e.currentlyVisibleHeight=Math.min(e.totalHeight,e.scrollableAreaHeight),e.ratio=e.currentlyVisibleHeight/e.totalHeight,e.barLength=Math.max(e.ratio*e.currentlyVisibleHeight,n.goldenRatio*n.scrollbarWidth),e.barWiggleRoom=e.currentlyVisibleHeight-e.barLength,e.wiggleRoom=Math.max(0,e.totalHeight-e.scrollableAreaHeight),e.topY=0===e.barWiggleRoom?0:t.scrollY/e.wiggleRoom*e.barWiggleRoom,e.bottomY=e.topY+e.barLength,e.dragMultiplier=e.wiggleRoom/e.barWiggleRoom}).attr(\"transform\",function(t){return\"translate(\"+(t.width+n.scrollbarWidth/2+n.scrollbarOffset)+\" \"+A(t)+\")\"});var s=o.selectAll(\".\"+n.cn.scrollbar).data(i.repeat,i.keyFun);s.enter().append(\"g\").classed(n.cn.scrollbar,!0);var l=s.selectAll(\".\"+n.cn.scrollbarSlider).data(i.repeat,i.keyFun);l.enter().append(\"g\").classed(n.cn.scrollbarSlider,!0),l.attr(\"transform\",function(t){return\"translate(0 \"+(t.scrollbarState.topY||0)+\")\"});var c=l.selectAll(\".\"+n.cn.scrollbarGlyph).data(i.repeat,i.keyFun);c.enter().append(\"line\").classed(n.cn.scrollbarGlyph,!0).attr(\"stroke\",\"black\").attr(\"stroke-width\",n.scrollbarWidth).attr(\"stroke-linecap\",\"round\").attr(\"y1\",n.scrollbarWidth/2),c.attr(\"y2\",function(t){return t.scrollbarState.barLength-n.scrollbarWidth/2}).attr(\"stroke-opacity\",function(t){return t.columnDragInProgress||!t.scrollbarState.barWiggleRoom||r?0:.4}),c.transition().delay(0).duration(0),c.transition().delay(n.scrollbarHideDelay).duration(n.scrollbarHideDuration).attr(\"stroke-opacity\",0);var u=s.selectAll(\".\"+n.cn.scrollbarCaptureZone).data(i.repeat,i.keyFun);u.enter().append(\"line\").classed(n.cn.scrollbarCaptureZone,!0).attr(\"stroke\",\"white\").attr(\"stroke-opacity\",.01).attr(\"stroke-width\",n.scrollbarCaptureWidth).attr(\"stroke-linecap\",\"butt\").attr(\"y1\",0).on(\"mousedown\",function(r){var n=a.event.y,i=this.getBoundingClientRect(),o=r.scrollbarState,s=n-i.top,l=a.scale.linear().domain([0,o.scrollableAreaHeight]).range([0,o.totalHeight]).clamp(!0);o.topY<=s&&s<=o.bottomY||S(e,t,null,l(s-o.barLength/2))(r)}).call(a.behavior.drag().origin(function(t){return a.event.stopPropagation(),t.scrollbarState.scrollbarScrollInProgress=!0,t}).on(\"drag\",S(e,t)).on(\"dragend\",function(){})),u.attr(\"y2\",function(t){return t.scrollbarState.scrollableAreaHeight}),e._context.staticPlot&&(c.remove(),u.remove())}function y(t,e,r,s){var l=function(t){var e=t.selectAll(\".\"+n.cn.columnCell).data(h.splitToCells,function(t){return t.keyWithinBlock});return e.enter().append(\"g\").classed(n.cn.columnCell,!0),e.exit().remove(),e}(function(t){var e=t.selectAll(\".\"+n.cn.columnCells).data(i.repeat,i.keyFun);return e.enter().append(\"g\").classed(n.cn.columnCells,!0),e.exit().remove(),e}(r));!function(t){t.each(function(t,e){var r=t.calcdata.cells.font,n=t.column.specIndex,a={size:_(r.size,n,e),color:_(r.color,n,e),family:_(r.family,n,e)};t.rowNumber=t.key,t.align=_(t.calcdata.cells.align,n,e),t.cellBorderWidth=_(t.calcdata.cells.line.width,n,e),t.font=a})}(l),function(t){t.attr(\"width\",function(t){return t.column.columnWidth}).attr(\"stroke-width\",function(t){return t.cellBorderWidth}).each(function(t){var e=a.select(this);f.stroke(e,_(t.calcdata.cells.line.color,t.column.specIndex,t.rowNumber)),f.fill(e,_(t.calcdata.cells.fill.color,t.column.specIndex,t.rowNumber))})}(function(t){var e=t.selectAll(\".\"+n.cn.cellRect).data(i.repeat,function(t){return t.keyWithinBlock});return e.enter().append(\"rect\").classed(n.cn.cellRect,!0),e}(l));var c=function(t){var e=t.selectAll(\".\"+n.cn.cellText).data(i.repeat,function(t){return t.keyWithinBlock});return e.enter().append(\"text\").classed(n.cn.cellText,!0).style(\"cursor\",function(){return\"auto\"}).on(\"mousedown\",function(){a.event.stopPropagation()}),e}(function(t){var e=t.selectAll(\".\"+n.cn.cellTextHolder).data(i.repeat,function(t){return t.keyWithinBlock});return e.enter().append(\"g\").classed(n.cn.cellTextHolder,!0).style(\"shape-rendering\",\"geometricPrecision\"),e}(l));!function(t){t.each(function(t){o.font(a.select(this),t.font)})}(c),x(c,e,s,t),O(l)}function x(t,e,r,i){t.text(function(t){var e=t.column.specIndex,r=t.rowNumber,i=t.value,o=\"string\"==typeof i,s=o&&i.match(/<br>/i),l=!o||s;t.mayHaveMarkup=o&&i.match(/[<&>]/);var c,u=\"string\"==typeof(c=i)&&c.match(n.latexCheck);t.latex=u;var h,f,p=u?\"\":_(t.calcdata.cells.prefix,e,r)||\"\",d=u?\"\":_(t.calcdata.cells.suffix,e,r)||\"\",g=u?null:_(t.calcdata.cells.format,e,r)||null,v=p+(g?a.format(g)(t.value):t.value)+d;if(t.wrappingNeeded=!t.wrapped&&!l&&!u&&(h=b(v)),t.cellHeightMayIncrease=s||u||t.mayHaveMarkup||(void 0===h?b(v):h),t.needsConvertToTspans=t.mayHaveMarkup||t.wrappingNeeded||t.latex,t.wrappingNeeded){var m=(\" \"===n.wrapSplitCharacter?v.replace(/<a href=/gi,\"<a_href=\"):v).split(n.wrapSplitCharacter),y=\" \"===n.wrapSplitCharacter?m.map(function(t){return t.replace(/<a_href=/gi,\"<a href=\")}):m;t.fragments=y.map(function(t){return{text:t,width:null}}),t.fragments.push({fragment:n.wrapSpacer,width:null}),f=y.join(n.lineBreaker)+n.lineBreaker+n.wrapSpacer}else delete t.fragments,f=v;return f}).attr(\"dy\",function(t){return t.needsConvertToTspans?0:\"0.75em\"}).each(function(t){var o=a.select(this),l=t.wrappingNeeded?C:L;t.needsConvertToTspans?s.convertToTspans(o,i,l(r,this,e,i,t)):a.select(this.parentNode).attr(\"transform\",function(t){return\"translate(\"+P(t)+\" \"+n.cellPad+\")\"}).attr(\"text-anchor\",function(t){return{left:\"start\",center:\"middle\",right:\"end\"}[t.align]})})}function b(t){return-1!==t.indexOf(n.wrapSplitCharacter)}function _(t,e,r){if(Array.isArray(t)){var n=t[Math.min(e,t.length-1)];return Array.isArray(n)?n[Math.min(r,n.length-1)]:n}return t}function w(t,e,r){t.transition().ease(n.releaseTransitionEase).duration(n.releaseTransitionDuration).attr(\"transform\",\"translate(\"+e.x+\" \"+r+\")\")}function k(t){return\"cells\"===t.type}function T(t){return\"header\"===t.type}function A(t){return(t.rowBlocks.length?t.rowBlocks[0].auxiliaryBlocks:[]).reduce(function(t,e){return t+z(e,1/0)},0)}function M(t,e,r){var n=v(e)[0];if(void 0!==n){var a=n.rowBlocks,i=n.calcdata,o=I(a,a.length),s=n.calcdata.groupHeight-A(n),l=i.scrollY=Math.max(0,Math.min(o-s,i.scrollY)),c=function(t,e,r){for(var n=[],a=0,i=0;i<t.length;i++){for(var o=t[i],s=o.rows,l=0,c=0;c<s.length;c++)l+=s[c].rowHeight;o.allRowsHeight=l,e<a+l&&e+r>a&&n.push(i),a+=l}return n}(a,l,s);1===c.length&&(c[0]===a.length-1?c.unshift(c[0]-1):c.push(c[0]+1)),c[0]%2&&c.reverse(),e.each(function(t,e){t.page=c[e],t.scrollY=l}),e.attr(\"transform\",function(t){return\"translate(0 \"+(I(t.rowBlocks,t.page)-t.scrollY)+\")\"}),t&&(E(t,r,e,c,n.prevPages,n,0),E(t,r,e,c,n.prevPages,n,1),m(r,t))}}function S(t,e,r,i){return function(o){var s=o.calcdata?o.calcdata:o,l=e.filter(function(t){return s.key===t.key}),c=r||s.scrollbarState.dragMultiplier,u=s.scrollY;s.scrollY=void 0===i?s.scrollY+c*a.event.dy:i;var h=l.selectAll(\".\"+n.cn.yColumn).selectAll(\".\"+n.cn.columnBlock).filter(k);return M(t,h,l),s.scrollY===u}}function E(t,e,r,n,a,i,o){n[o]!==a[o]&&(clearTimeout(i.currentRepaint[o]),i.currentRepaint[o]=setTimeout(function(){var i=r.filter(function(t,e){return e===o&&n[e]!==a[e]});y(t,e,i,r),a[o]=n[o]}))}function C(t,e,r,i){return function(){var o=a.select(e.parentNode);o.each(function(t){var e=t.fragments;o.selectAll(\"tspan.line\").each(function(t,r){e[r].width=this.getComputedTextLength()});var r,a,i=e[e.length-1].width,s=e.slice(0,-1),l=[],c=0,u=t.column.columnWidth-2*n.cellPad;for(t.value=\"\";s.length;)c+(a=(r=s.shift()).width+i)>u&&(t.value+=l.join(n.wrapSpacer)+n.lineBreaker,l=[],c=0),l.push(r.text),c+=a;c&&(t.value+=l.join(n.wrapSpacer)),t.wrapped=!0}),o.selectAll(\"tspan.line\").remove(),x(o.select(\".\"+n.cn.cellText),r,t,i),a.select(e.parentNode.parentNode).call(O)}}function L(t,e,r,i,o){return function(){if(!o.settledY){var s=a.select(e.parentNode),l=R(o),c=o.key-l.firstRowIndex,u=l.rows[c].rowHeight,h=o.cellHeightMayIncrease?e.parentNode.getBoundingClientRect().height+2*n.cellPad:u,f=Math.max(h,u);f-l.rows[c].rowHeight&&(l.rows[c].rowHeight=f,t.selectAll(\".\"+n.cn.columnCell).call(O),M(null,t.filter(k),0),m(r,i,!0)),s.attr(\"transform\",function(){var t=this.parentNode.getBoundingClientRect(),e=a.select(this.parentNode).select(\".\"+n.cn.cellRect).node().getBoundingClientRect(),r=this.transform.baseVal.consolidate(),i=e.top-t.top+(r?r.matrix.f:n.cellPad);return\"translate(\"+P(o,a.select(this.parentNode).select(\".\"+n.cn.cellTextHolder).node().getBoundingClientRect().width)+\" \"+i+\")\"}),o.settledY=!0}}}function P(t,e){switch(t.align){case\"left\":return n.cellPad;case\"right\":return t.column.columnWidth-(e||0)-n.cellPad;case\"center\":return(t.column.columnWidth-(e||0))/2;default:return n.cellPad}}function O(t){t.attr(\"transform\",function(t){var e=t.rowBlocks[0].auxiliaryBlocks.reduce(function(t,e){return t+z(e,1/0)},0);return\"translate(0 \"+(z(R(t),t.key)+e)+\")\"}).selectAll(\".\"+n.cn.cellRect).attr(\"height\",function(t){return(e=R(t),r=t.key,e.rows[r-e.firstRowIndex]).rowHeight;var e,r})}function I(t,e){for(var r=0,n=e-1;n>=0;n--)r+=D(t[n]);return r}function z(t,e){for(var r=0,n=0;n<t.rows.length&&t.rows[n].rowIndex<e;n++)r+=t.rows[n].rowHeight;return r}function D(t){var e=t.allRowsHeight;if(void 0!==e)return e;for(var r=0,n=0;n<t.rows.length;n++)r+=t.rows[n].rowHeight;return t.allRowsHeight=r,r}function R(t){return t.rowBlocks[t.page]}e.exports=function(t,e){var r=!t._context.staticPlot,s=t._fullLayout._paper.selectAll(\".\"+n.cn.table).data(e.map(function(e){var r=i.unwrap(e).trace;return u(t,r)}),i.keyFun);s.exit().remove(),s.enter().append(\"g\").classed(n.cn.table,!0).attr(\"overflow\",\"visible\").style(\"box-sizing\",\"content-box\").style(\"position\",\"absolute\").style(\"left\",0).style(\"overflow\",\"visible\").style(\"shape-rendering\",\"crispEdges\").style(\"pointer-events\",\"all\"),s.attr(\"width\",function(t){return t.width+t.size.l+t.size.r}).attr(\"height\",function(t){return t.height+t.size.t+t.size.b}).attr(\"transform\",function(t){return\"translate(\"+t.translateX+\",\"+t.translateY+\")\"});var f=s.selectAll(\".\"+n.cn.tableControlView).data(i.repeat,i.keyFun),x=f.enter().append(\"g\").classed(n.cn.tableControlView,!0).style(\"box-sizing\",\"content-box\");r&&x.on(\"mousemove\",function(e){f.filter(function(t){return e===t}).call(m,t)}).on(\"mousewheel\",function(e){if(!e.scrollbarState.wheeling){e.scrollbarState.wheeling=!0;var r=e.scrollY+a.event.deltaY;S(t,f,null,r)(e)||(a.event.stopPropagation(),a.event.preventDefault()),e.scrollbarState.wheeling=!1}}).call(m,t,!0),f.attr(\"transform\",function(t){return\"translate(\"+t.size.l+\" \"+t.size.t+\")\"});var b=f.selectAll(\".\"+n.cn.scrollBackground).data(i.repeat,i.keyFun);b.enter().append(\"rect\").classed(n.cn.scrollBackground,!0).attr(\"fill\",\"none\"),b.attr(\"width\",function(t){return t.width}).attr(\"height\",function(t){return t.height}),f.each(function(e){o.setClipUrl(a.select(this),d(t,e),t)});var _=f.selectAll(\".\"+n.cn.yColumn).data(function(t){return t.columns},i.keyFun);_.enter().append(\"g\").classed(n.cn.yColumn,!0),_.exit().remove(),_.attr(\"transform\",function(t){return\"translate(\"+t.x+\" 0)\"}),r&&_.call(a.behavior.drag().origin(function(e){return w(a.select(this),e,-n.uplift),l(this),e.calcdata.columnDragInProgress=!0,m(f.filter(function(t){return e.calcdata.key===t.key}),t),e}).on(\"drag\",function(t){var e=a.select(this),r=function(e){return(t===e?a.event.x:e.x)+e.columnWidth/2};t.x=Math.max(-n.overdrag,Math.min(t.calcdata.width+n.overdrag-t.columnWidth,a.event.x)),v(_).filter(function(e){return e.calcdata.key===t.calcdata.key}).sort(function(t,e){return r(t)-r(e)}).forEach(function(e,r){e.xIndex=r,e.x=t===e?e.x:e.xScale(e)}),_.filter(function(e){return t!==e}).transition().ease(n.transitionEase).duration(n.transitionDuration).attr(\"transform\",function(t){return\"translate(\"+t.x+\" 0)\"}),e.call(c).attr(\"transform\",\"translate(\"+t.x+\" -\"+n.uplift+\" )\")}).on(\"dragend\",function(e){var r=a.select(this),n=e.calcdata;e.x=e.xScale(e),e.calcdata.columnDragInProgress=!1,w(r,e,0),function(t,e,r){var n=e.gdColumnsOriginalOrder;e.gdColumns.sort(function(t,e){return r[n.indexOf(t)]-r[n.indexOf(e)]}),e.columnorder=r,t.emit(\"plotly_restyle\")}(t,n,n.columns.map(function(t){return t.xIndex}))})),_.each(function(e){o.setClipUrl(a.select(this),g(t,e),t)});var A=_.selectAll(\".\"+n.cn.columnBlock).data(h.splitToPanels,i.keyFun);A.enter().append(\"g\").classed(n.cn.columnBlock,!0).attr(\"id\",function(t){return t.key}),A.style(\"cursor\",function(t){return t.dragHandle?\"ew-resize\":t.calcdata.scrollbarState.barWiggleRoom?\"ns-resize\":\"default\"});var E=A.filter(T),C=A.filter(k);r&&C.call(a.behavior.drag().origin(function(t){return a.event.stopPropagation(),t}).on(\"drag\",S(t,f,-1)).on(\"dragend\",function(){})),y(t,f,E,A),y(t,f,C,A);var L=f.selectAll(\".\"+n.cn.scrollAreaClip).data(i.repeat,i.keyFun);L.enter().append(\"clipPath\").classed(n.cn.scrollAreaClip,!0).attr(\"id\",function(e){return d(t,e)});var P=L.selectAll(\".\"+n.cn.scrollAreaClipRect).data(i.repeat,i.keyFun);P.enter().append(\"rect\").classed(n.cn.scrollAreaClipRect,!0).attr(\"x\",-n.overdrag).attr(\"y\",-n.uplift).attr(\"fill\",\"none\"),P.attr(\"width\",function(t){return t.width+2*n.overdrag}).attr(\"height\",function(t){return t.height+n.uplift}),_.selectAll(\".\"+n.cn.columnBoundary).data(i.repeat,i.keyFun).enter().append(\"g\").classed(n.cn.columnBoundary,!0);var O=_.selectAll(\".\"+n.cn.columnBoundaryClippath).data(i.repeat,i.keyFun);O.enter().append(\"clipPath\").classed(n.cn.columnBoundaryClippath,!0),O.attr(\"id\",function(e){return g(t,e)});var I=O.selectAll(\".\"+n.cn.columnBoundaryRect).data(i.repeat,i.keyFun);I.enter().append(\"rect\").classed(n.cn.columnBoundaryRect,!0).attr(\"fill\",\"none\"),I.attr(\"width\",function(t){return t.columnWidth+2*p(t)}).attr(\"height\",function(t){return t.calcdata.height+2*p(t)+n.uplift}).attr(\"x\",function(t){return-p(t)}).attr(\"y\",function(t){return-p(t)}),M(null,C,f)}},{\"../../components/color\":594,\"../../components/drawing\":615,\"../../lib\":719,\"../../lib/gup\":717,\"../../lib/svg_text_utils\":743,\"./constants\":1233,\"./data_preparation_helper\":1234,\"./data_split_helpers\":1235,d3:164}],1239:[function(t,e,r){\"use strict\";var n=t(\"../../plots/template_attributes\").hovertemplateAttrs,a=t(\"../../plots/template_attributes\").texttemplateAttrs,i=t(\"../../components/colorscale/attributes\"),o=t(\"../../plots/domain\").attributes,s=t(\"../pie/attributes\"),l=t(\"../sunburst/attributes\"),c=t(\"./constants\"),u=t(\"../../lib/extend\").extendFlat;e.exports={labels:l.labels,parents:l.parents,values:l.values,branchvalues:l.branchvalues,count:l.count,level:l.level,maxdepth:l.maxdepth,tiling:{packing:{valType:\"enumerated\",values:[\"squarify\",\"binary\",\"dice\",\"slice\",\"slice-dice\",\"dice-slice\"],dflt:\"squarify\",editType:\"plot\"},squarifyratio:{valType:\"number\",min:1,dflt:1,editType:\"plot\"},flip:{valType:\"flaglist\",flags:[\"x\",\"y\"],dflt:\"\",editType:\"plot\"},pad:{valType:\"number\",min:0,dflt:3,editType:\"plot\"},editType:\"calc\"},marker:u({pad:{t:{valType:\"number\",min:0,editType:\"plot\"},l:{valType:\"number\",min:0,editType:\"plot\"},r:{valType:\"number\",min:0,editType:\"plot\"},b:{valType:\"number\",min:0,editType:\"plot\"},editType:\"calc\"},colors:l.marker.colors,depthfade:{valType:\"enumerated\",values:[!0,!1,\"reversed\"],editType:\"style\"},line:l.marker.line,editType:\"calc\"},i(\"marker\",{colorAttr:\"colors\",anim:!1})),pathbar:{visible:{valType:\"boolean\",dflt:!0,editType:\"plot\"},side:{valType:\"enumerated\",values:[\"top\",\"bottom\"],dflt:\"top\",editType:\"plot\"},edgeshape:{valType:\"enumerated\",values:[\">\",\"<\",\"|\",\"/\",\"\\\\\"],dflt:\">\",editType:\"plot\"},thickness:{valType:\"number\",min:12,editType:\"plot\"},textfont:u({},s.textfont,{}),editType:\"calc\"},text:s.text,textinfo:l.textinfo,texttemplate:a({editType:\"plot\"},{keys:c.eventDataKeys.concat([\"label\",\"value\"])}),hovertext:s.hovertext,hoverinfo:l.hoverinfo,hovertemplate:n({},{keys:c.eventDataKeys}),textfont:s.textfont,insidetextfont:s.insidetextfont,outsidetextfont:s.outsidetextfont,textposition:{valType:\"enumerated\",values:[\"top left\",\"top center\",\"top right\",\"middle left\",\"middle center\",\"middle right\",\"bottom left\",\"bottom center\",\"bottom right\"],dflt:\"top left\",editType:\"plot\"},domain:o({name:\"treemap\",trace:!0,editType:\"calc\"})}},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plots/domain\":792,\"../../plots/template_attributes\":843,\"../pie/attributes\":1085,\"../sunburst/attributes\":1213,\"./constants\":1242}],1240:[function(t,e,r){\"use strict\";var n=t(\"../../plots/plots\");r.name=\"treemap\",r.plot=function(t,e,a,i){n.plotBasePlot(r.name,t,e,a,i)},r.clean=function(t,e,a,i){n.cleanBasePlot(r.name,t,e,a,i)}},{\"../../plots/plots\":828}],1241:[function(t,e,r){\"use strict\";var n=t(\"../sunburst/calc\");r.calc=function(t,e){return n.calc(t,e)},r.crossTraceCalc=function(t){return n._runCrossTraceCalc(\"treemap\",t)}},{\"../sunburst/calc\":1215}],1242:[function(t,e,r){\"use strict\";e.exports={CLICK_TRANSITION_TIME:750,CLICK_TRANSITION_EASING:\"poly\",eventDataKeys:[\"currentPath\",\"root\",\"entry\",\"percentRoot\",\"percentEntry\",\"percentParent\"],gapWithPathbar:1}},{}],1243:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./attributes\"),i=t(\"../../components/color\"),o=t(\"../../plots/domain\").defaults,s=t(\"../bar/defaults\").handleText,l=t(\"../bar/constants\").TEXTPAD,c=t(\"../../components/colorscale\"),u=c.hasColorscale,h=c.handleDefaults;e.exports=function(t,e,r,c){function f(r,i){return n.coerce(t,e,a,r,i)}var p=f(\"labels\"),d=f(\"parents\");if(p&&p.length&&d&&d.length){var g=f(\"values\");g&&g.length?f(\"branchvalues\"):f(\"count\"),f(\"level\"),f(\"maxdepth\"),\"squarify\"===f(\"tiling.packing\")&&f(\"tiling.squarifyratio\"),f(\"tiling.flip\"),f(\"tiling.pad\");var v=f(\"text\");f(\"texttemplate\"),e.texttemplate||f(\"textinfo\",Array.isArray(v)?\"text+label\":\"label\"),f(\"hovertext\"),f(\"hovertemplate\");s(t,e,c,f,\"auto\",{moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!1,moduleHasCliponaxis:!1,moduleHasTextangle:!1,moduleHasInsideanchor:!1}),f(\"textposition\");var m=-1!==e.textposition.indexOf(\"bottom\");f(\"marker.line.width\")&&f(\"marker.line.color\",c.paper_bgcolor);var y=f(\"marker.colors\"),x=e._hasColorscale=u(t,\"marker\",\"colors\");x?h(t,e,c,f,{prefix:\"marker.\",cLetter:\"c\"}):f(\"marker.depthfade\",!(y||[]).length);var b=2*e.textfont.size;f(\"marker.pad.t\",m?b/4:b),f(\"marker.pad.l\",b/4),f(\"marker.pad.r\",b/4),f(\"marker.pad.b\",m?b:b/4),x&&h(t,e,c,f,{prefix:\"marker.\",cLetter:\"c\"}),e._hovered={marker:{line:{width:2,color:i.contrast(c.paper_bgcolor)}}},f(\"pathbar.visible\")&&(n.coerceFont(f,\"pathbar.textfont\",c.font),f(\"pathbar.thickness\",e.pathbar.textfont.size+2*l),f(\"pathbar.side\"),f(\"pathbar.edgeshape\")),o(e,c,f),e._length=null}else e.visible=!1}},{\"../../components/color\":594,\"../../components/colorscale\":606,\"../../lib\":719,\"../../plots/domain\":792,\"../bar/constants\":860,\"../bar/defaults\":862,\"./attributes\":1239}],1244:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../lib\"),i=t(\"../../components/drawing\"),o=t(\"../../lib/svg_text_utils\"),s=t(\"./partition\"),l=t(\"./style\").styleOne,c=t(\"./constants\"),u=t(\"../sunburst/helpers\"),h=t(\"../sunburst/fx\");e.exports=function(t,e,r,f,p){var d=p.barDifY,g=p.width,v=p.height,m=p.viewX,y=p.viewY,x=p.pathSlice,b=p.toMoveInsideSlice,_=p.strTransform,w=p.hasTransition,k=p.handleSlicesExit,T=p.makeUpdateSliceInterpolator,A=p.makeUpdateTextInterpolator,M={},S=t._fullLayout,E=e[0],C=E.trace,L=E.hierarchy,P=g/C._entryDepth,O=u.listPath(r.data,\"id\"),I=s(L.copy(),[g,v],{packing:\"dice\",pad:{inner:0,top:0,left:0,right:0,bottom:0}}).descendants();(I=I.filter(function(t){var e=O.indexOf(t.data.id);return-1!==e&&(t.x0=P*e,t.x1=P*(e+1),t.y0=d,t.y1=d+v,t.onPathbar=!0,!0)})).reverse(),(f=f.data(I,u.getPtId)).enter().append(\"g\").classed(\"pathbar\",!0),k(f,!0,M,[g,v],x),f.order();var z=f;w&&(z=z.transition().each(\"end\",function(){var e=n.select(this);u.setSliceCursor(e,t,{hideOnRoot:!1,hideOnLeaves:!1,isTransitioning:!1})})),z.each(function(s){s._hoverX=m(s.x1-v/2),s._hoverY=y(s.y1-v/2);var f=n.select(this),p=a.ensureSingle(f,\"path\",\"surface\",function(t){t.style(\"pointer-events\",\"all\")});w?p.transition().attrTween(\"d\",function(t){var e=T(t,!0,M,[g,v]);return function(t){return x(e(t))}}):p.attr(\"d\",x),f.call(h,r,t,e,{styleOne:l,eventDataKeys:c.eventDataKeys,transitionTime:c.CLICK_TRANSITION_TIME,transitionEasing:c.CLICK_TRANSITION_EASING}).call(u.setSliceCursor,t,{hideOnRoot:!1,hideOnLeaves:!1,isTransitioning:t._transitioning}),p.call(l,s,C,{hovered:!1}),s._text=(u.getPtLabel(s)||\"\").split(\"<br>\").join(\" \")||\"\";var d=a.ensureSingle(f,\"g\",\"slicetext\"),k=a.ensureSingle(d,\"text\",\"\",function(t){t.attr(\"data-notex\",1)});k.text(s._text||\" \").classed(\"slicetext\",!0).attr(\"text-anchor\",\"start\").call(i.font,u.determineTextFont(C,s,S.font,C.pathdir)).call(o.convertToTspans,t),s.textBB=i.bBox(k.node()),s.transform=b(s,{onPathbar:!0}),u.isOutsideText(C,s)&&(s.transform.targetY-=u.getOutsideTextFontKey(\"size\",C,s,S.font)-u.getInsideTextFontKey(\"size\",C,s,S.font)),w?k.transition().attrTween(\"transform\",function(t){var e=A(t,!0,M,[g,v]);return function(t){return _(e(t))}}):k.attr(\"transform\",_(s))})}},{\"../../components/drawing\":615,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../sunburst/fx\":1218,\"../sunburst/helpers\":1219,\"./constants\":1242,\"./partition\":1249,\"./style\":1251,d3:164}],1245:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../lib\"),i=t(\"../../components/drawing\"),o=t(\"../../lib/svg_text_utils\"),s=t(\"./partition\"),l=t(\"./style\").styleOne,c=t(\"./constants\"),u=t(\"../sunburst/helpers\"),h=t(\"../sunburst/fx\"),f=t(\"../sunburst/plot\").formatSliceLabel;e.exports=function(t,e,r,p,d){var g=d.width,v=d.height,m=d.viewX,y=d.viewY,x=d.pathSlice,b=d.toMoveInsideSlice,_=d.strTransform,w=d.hasTransition,k=d.handleSlicesExit,T=d.makeUpdateSliceInterpolator,A=d.makeUpdateTextInterpolator,M=d.prevEntry,S=t._fullLayout,E=e[0].trace,C=-1!==E.textposition.indexOf(\"left\"),L=-1!==E.textposition.indexOf(\"right\"),P=-1!==E.textposition.indexOf(\"bottom\"),O=!P&&!E.marker.pad.t||P&&!E.marker.pad.b,I=s(r,[g,v],{packing:E.tiling.packing,squarifyratio:E.tiling.squarifyratio,flipX:E.tiling.flip.indexOf(\"x\")>-1,flipY:E.tiling.flip.indexOf(\"y\")>-1,pad:{inner:E.tiling.pad,top:E.marker.pad.t,left:E.marker.pad.l,right:E.marker.pad.r,bottom:E.marker.pad.b}}).descendants(),z=1/0,D=-1/0;I.forEach(function(t){var e=t.depth;e>=E._maxDepth?(t.x0=t.x1=(t.x0+t.x1)/2,t.y0=t.y1=(t.y0+t.y1)/2):(z=Math.min(z,e),D=Math.max(D,e))}),p=p.data(I,u.getPtId),E._maxVisibleLayers=isFinite(D)?D-z+1:0,p.enter().append(\"g\").classed(\"slice\",!0),k(p,!1,{},[g,v],x),p.order();var R=null;if(w&&M){var F=u.getPtId(M);p.each(function(t){null===R&&u.getPtId(t)===F&&(R={x0:t.x0,x1:t.x1,y0:t.y0,y1:t.y1})})}var B=function(){return R||{x0:0,x1:g,y0:0,y1:v}},N=p;return w&&(N=N.transition().each(\"end\",function(){var e=n.select(this);u.setSliceCursor(e,t,{hideOnRoot:!0,hideOnLeaves:!1,isTransitioning:!1})})),N.each(function(s){var p=u.isHeader(s,E);s._hoverX=m(s.x1-E.marker.pad.r),s._hoverY=y(P?s.y1-E.marker.pad.b/2:s.y0+E.marker.pad.t/2);var d=n.select(this),k=a.ensureSingle(d,\"path\",\"surface\",function(t){t.style(\"pointer-events\",\"all\")});w?k.transition().attrTween(\"d\",function(t){var e=T(t,!1,B(),[g,v]);return function(t){return x(e(t))}}):k.attr(\"d\",x),d.call(h,r,t,e,{styleOne:l,eventDataKeys:c.eventDataKeys,transitionTime:c.CLICK_TRANSITION_TIME,transitionEasing:c.CLICK_TRANSITION_EASING}).call(u.setSliceCursor,t,{isTransitioning:t._transitioning}),k.call(l,s,E,{hovered:!1}),s.x0===s.x1||s.y0===s.y1?s._text=\"\":s._text=p?O?\"\":u.getPtLabel(s)||\"\":f(s,r,E,e,S)||\"\";var M=a.ensureSingle(d,\"g\",\"slicetext\"),I=a.ensureSingle(M,\"text\",\"\",function(t){t.attr(\"data-notex\",1)});I.text(s._text||\" \").classed(\"slicetext\",!0).attr(\"text-anchor\",L?\"end\":C||p?\"start\":\"middle\").call(i.font,u.determineTextFont(E,s,S.font)).call(o.convertToTspans,t),s.textBB=i.bBox(I.node()),s.transform=b(s,{isHeader:p}),w?I.transition().attrTween(\"transform\",function(t){var e=A(t,!1,B(),[g,v]);return function(t){return _(e(t))}}):I.attr(\"transform\",_(s))}),R}},{\"../../components/drawing\":615,\"../../lib\":719,\"../../lib/svg_text_utils\":743,\"../sunburst/fx\":1218,\"../sunburst/helpers\":1219,\"../sunburst/plot\":1223,\"./constants\":1242,\"./partition\":1249,\"./style\":1251,d3:164}],1246:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"treemap\",basePlotModule:t(\"./base_plot\"),categories:[],animatable:!0,attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\"),supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\").calc,crossTraceCalc:t(\"./calc\").crossTraceCalc,plot:t(\"./plot\"),style:t(\"./style\").style,colorbar:t(\"../scatter/marker_colorbar\"),meta:{}}},{\"../scatter/marker_colorbar\":1128,\"./attributes\":1239,\"./base_plot\":1240,\"./calc\":1241,\"./defaults\":1243,\"./layout_attributes\":1247,\"./layout_defaults\":1248,\"./plot\":1250,\"./style\":1251}],1247:[function(t,e,r){\"use strict\";e.exports={treemapcolorway:{valType:\"colorlist\",editType:\"calc\"},extendtreemapcolors:{valType:\"boolean\",dflt:!0,editType:\"calc\"}}},{}],1248:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./layout_attributes\");e.exports=function(t,e){function r(r,i){return n.coerce(t,e,a,r,i)}r(\"treemapcolorway\",e.colorway),r(\"extendtreemapcolors\")}},{\"../../lib\":719,\"./layout_attributes\":1247}],1249:[function(t,e,r){\"use strict\";var n=t(\"d3-hierarchy\");e.exports=function(t,e,r){var a,i=r.flipX,o=r.flipY,s=\"dice-slice\"===r.packing,l=r.pad[o?\"bottom\":\"top\"],c=r.pad[i?\"right\":\"left\"],u=r.pad[i?\"left\":\"right\"],h=r.pad[o?\"top\":\"bottom\"];s&&(a=c,c=l,l=a,a=u,u=h,h=a);var f=n.treemap().tile(function(t,e){switch(t){case\"squarify\":return n.treemapSquarify.ratio(e);case\"binary\":return n.treemapBinary;case\"dice\":return n.treemapDice;case\"slice\":return n.treemapSlice;default:return n.treemapSliceDice}}(r.packing,r.squarifyratio)).paddingInner(r.pad.inner).paddingLeft(c).paddingRight(u).paddingTop(l).paddingBottom(h).size(s?[e[1],e[0]]:e)(t);return(s||i||o)&&function t(e,r,n){var a;n.swapXY&&(a=e.x0,e.x0=e.y0,e.y0=a,a=e.x1,e.x1=e.y1,e.y1=a);n.flipX&&(a=e.x0,e.x0=r[0]-e.x1,e.x1=r[0]-a);n.flipY&&(a=e.y0,e.y0=r[1]-e.y1,e.y1=r[1]-a);var i=e.children;if(i)for(var o=0;o<i.length;o++)t(i[o],r,n)}(f,e,{swapXY:s,flipX:i,flipY:o}),f}},{\"d3-hierarchy\":158}],1250:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../sunburst/helpers\").hasTransition,i=t(\"../sunburst/helpers\"),o=t(\"../../lib\"),s=t(\"../bar/constants\").TEXTPAD,l=t(\"../bar/plot\").toMoveInsideBar,c=t(\"./constants\"),u=t(\"./draw_descendants\"),h=t(\"./draw_ancestors\");function f(t){return i.isHierarchyRoot(t)?\"\":i.getPtId(t)}function p(t,e,r,a){var p=t._fullLayout,d=e[0],g=d.trace,v=d.hierarchy,m=i.hasTransition(a),y=i.findEntryWithLevel(v,g.level),x=i.isHierarchyRoot(y),b=i.getMaxDepth(g),_=p._size,w=g.domain,k=_.w*(w.x[1]-w.x[0]),T=_.h*(w.y[1]-w.y[0]),A=k,M=g.pathbar.thickness,S=g.marker.line.width+c.gapWithPathbar,E=g.pathbar.visible?g.pathbar.side.indexOf(\"bottom\")>-1?T+S:-(M+S):0,C={x0:A,x1:A,y0:E,y1:E+M},L=function(t,e,r){var n=g.tiling.pad,a=function(t){return t-n<=e.x0},i=function(t){return t+n>=e.x1},o=function(t){return t-n<=e.y0},s=function(t){return t+n>=e.y1};return{x0:a(t.x0-n)?0:i(t.x0-n)?r[0]:t.x0,x1:a(t.x1+n)?0:i(t.x1+n)?r[0]:t.x1,y0:o(t.y0-n)?0:s(t.y0-n)?r[1]:t.y0,y1:o(t.y1+n)?0:s(t.y1+n)?r[1]:t.y1}},P=null,O={},I={},z=null,D=function(t,e){return e?O[f(t)]:I[f(t)]},R=function(t,e,r,n){if(e)return O[f(v)]||C;var a=I[g.level]||r;return function(t){return t.data.depth-y.data.depth<b}(t)?L(t,a,n):{}};d.hasMultipleRoots&&x&&b++,g._maxDepth=b,g._backgroundColor=p.paper_bgcolor,g._entryDepth=y.data.depth,g._atRootLevel=x;var F=-k/2+_.l+_.w*(w.x[1]+w.x[0])/2,B=-T/2+_.t+_.h*(1-(w.y[1]+w.y[0])/2),N=function(t){return F+t},j=function(t){return B+t},V=j(0),U=N(0),q=function(t){return U+t},H=function(t){return V+t};function G(t,e){return t+\",\"+e}var Y=q(0),W=function(t){t.x=Math.max(Y,t.x)},X=g.pathbar.edgeshape,Z=function(t,e){var r=t.x0,n=t.x1,a=t.y0,i=t.y1,o=t.textBB;r===n&&(r-=s,n+=s),a===i&&(a-=s,i+=s);var c=function(t){return-1!==g.textposition.indexOf(t)},u=c(\"bottom\"),h=c(\"top\")||e.isHeader&&!u?\"start\":u?\"end\":\"middle\",f=c(\"right\"),p=c(\"left\")||e.onPathbar,d=p?\"left\":f?\"right\":\"center\";!e.onPathbar&&e.isHeader||(r+=p?s:0,n-=f?s:0);var v=g.marker.pad;if(e.isHeader){if((r+=v.l-s)>=(n-=v.r-s)){var m=(r+n)/2;r=m-s,n=m+s}var y;u?a<(y=i-v.b)&&y<i&&(a=y):a<(y=a+v.t)&&y<i&&(i=y)}var x=l(r,n,a,i,o,{isHorizontal:!1,constrained:!0,angle:0,anchor:h});if(\"center\"!==d){var b=(n-r)/2-x.scale*(o.right-o.left)/2;e.isHeader&&(b-=s),\"left\"===d?x.targetX-=b:\"right\"===d&&(x.targetX+=b)}return x.targetX=N(x.targetX),x.targetY=j(x.targetY),isNaN(x.targetX)||isNaN(x.targetY)?{}:{scale:x.scale,rotate:x.rotate,textX:x.textX,textY:x.textY,targetX:x.targetX,targetY:x.targetY}},J=function(t,e){for(var r,n=0,a=t;!r&&n<b;)n++,(a=a.parent)?r=D(a,e):n=b;return r||{}},K=function(t,e,r,a){var i,s=D(t,e);if(s)i=s;else if(e)i=C;else if(P)if(t.parent){var l=z||r;l&&!e?i=L(t,l,a):(i={},o.extendFlat(i,J(t,e)))}else i=t;else i={};return n.interpolate(i,{x0:t.x0,x1:t.x1,y0:t.y0,y1:t.y1})},Q=function(t,e,r,a){var s=D(t,e),l={},c=R(t,e,r,a);return o.extendFlat(l,{transform:Z({x0:c.x0,x1:c.x1,y0:c.y0,y1:c.y1,textBB:t.textBB,_text:t._text},{isHeader:i.isHeader(t,g)})}),s?l=s:t.parent&&o.extendFlat(l,J(t,e)),n.interpolate(l,{transform:{scale:t.transform.scale,rotate:t.transform.rotate,textX:t.transform.textX,textY:t.transform.textY,targetX:t.transform.targetX,targetY:t.transform.targetY}})},$=function(t,e,r,a,i){var o=a[0],s=a[1];m?t.exit().transition().each(function(){var t=n.select(this);t.select(\"path.surface\").transition().attrTween(\"d\",function(t){var r=function(t,e,r,a){var i,o=D(t,e);if(e)i=C;else{var s=D(y,e);i=s?L(t,s,a):{}}return n.interpolate(o,i)}(t,e,0,[o,s]);return function(t){return i(r(t))}}),t.select(\"g.slicetext\").attr(\"opacity\",0)}).remove():t.exit().remove()},tt=function(t){return o.getTextTransform({textX:t.transform.textX,textY:t.transform.textY,targetX:t.transform.targetX,targetY:t.transform.targetY,scale:t.transform.scale,rotate:t.transform.rotate})},et=n.select(r),rt=et.selectAll(\"g.pathbar\"),nt=et.selectAll(\"g.slice\");if(!y)return rt.remove(),void nt.remove();m&&(rt.each(function(t){O[f(t)]={x0:t.x0,x1:t.x1,y0:t.y0,y1:t.y1},t.transform&&(O[f(t)].transform={textX:t.transform.textX,textY:t.transform.textY,targetX:t.transform.targetX,targetY:t.transform.targetY,scale:t.transform.scale,rotate:t.transform.rotate})}),nt.each(function(t){I[f(t)]={x0:t.x0,x1:t.x1,y0:t.y0,y1:t.y1},t.transform&&(I[f(t)].transform={textX:t.transform.textX,textY:t.transform.textY,targetX:t.transform.targetX,targetY:t.transform.targetY,scale:t.transform.scale,rotate:t.transform.rotate}),!P&&i.isEntry(t)&&(P=t)})),z=u(t,e,y,nt,{width:k,height:T,viewX:N,viewY:j,pathSlice:function(t){var e=N(t.x0),r=N(t.x1),n=j(t.y0),a=j(t.y1),i=r-e,o=a-n;if(!i||!o)return\"\";return\"M\"+G(e,n+0)+\"L\"+G(r-0,n)+\"L\"+G(r,a-0)+\"L\"+G(e+0,a)+\"Z\"},toMoveInsideSlice:Z,prevEntry:P,makeUpdateSliceInterpolator:K,makeUpdateTextInterpolator:Q,handleSlicesExit:$,hasTransition:m,strTransform:tt}),g.pathbar.visible&&h(t,e,y,rt,{barDifY:E,width:A,height:M,viewX:q,viewY:H,pathSlice:function(t){var e=q(Math.max(Math.min(t.x0,t.x0),0)),r=q(Math.min(Math.max(t.x1,t.x1),A)),n=H(t.y0),a=H(t.y1),i=M/2,o={},s={};o.x=e,s.x=r,o.y=s.y=(n+a)/2;var l={x:e,y:n},c={x:r,y:n},u={x:r,y:a},h={x:e,y:a};return\">\"===X?(l.x-=i,c.x-=i,u.x-=i,h.x-=i):\"/\"===X?(u.x-=i,h.x-=i,o.x-=i/2,s.x-=i/2):\"\\\\\"===X?(l.x-=i,c.x-=i,o.x-=i/2,s.x-=i/2):\"<\"===X&&(o.x-=i,s.x-=i),W(l),W(h),W(o),W(c),W(u),W(s),\"M\"+G(l.x,l.y)+\"L\"+G(c.x,c.y)+\"L\"+G(s.x,s.y)+\"L\"+G(u.x,u.y)+\"L\"+G(h.x,h.y)+\"L\"+G(o.x,o.y)+\"Z\"},toMoveInsideSlice:Z,makeUpdateSliceInterpolator:K,makeUpdateTextInterpolator:Q,handleSlicesExit:$,hasTransition:m,strTransform:tt})}e.exports=function(t,e,r,i){var o,s,l=t._fullLayout._treemaplayer,c=!r;((o=l.selectAll(\"g.trace.treemap\").data(e,function(t){return t[0].trace.uid})).enter().append(\"g\").classed(\"trace\",!0).classed(\"treemap\",!0),o.order(),a(r))?(i&&(s=i()),n.transition().duration(r.duration).ease(r.easing).each(\"end\",function(){s&&s()}).each(\"interrupt\",function(){s&&s()}).each(function(){l.selectAll(\"g.trace\").each(function(e){p(t,e,this,r)})})):o.each(function(e){p(t,e,this,r)});c&&o.exit().remove()}},{\"../../lib\":719,\"../bar/constants\":860,\"../bar/plot\":868,\"../sunburst/helpers\":1219,\"./constants\":1242,\"./draw_ancestors\":1244,\"./draw_descendants\":1245,d3:164}],1251:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/color\"),i=t(\"../../lib\"),o=t(\"../sunburst/helpers\");function s(t,e,r,n){var s,l,c=(n||{}).hovered,u=e.data.data,h=u.i,f=u.color,p=o.isHierarchyRoot(e),d=1;if(c)s=r._hovered.marker.line.color,l=r._hovered.marker.line.width;else if(p&&\"rgba(0,0,0,0)\"===f)d=0,s=\"rgba(0,0,0,0)\",l=0;else if(s=i.castOption(r,h,\"marker.line.color\")||a.defaultLine,l=i.castOption(r,h,\"marker.line.width\")||0,!r._hasColorscale&&!e.onPathbar){var g=r.marker.depthfade;if(g){var v,m=a.combine(a.addOpacity(r._backgroundColor,.75),f);if(!0===g){var y=o.getMaxDepth(r);v=isFinite(y)?o.isLeaf(e)?0:r._maxVisibleLayers-(e.data.depth-r._entryDepth):e.data.height+1}else v=e.data.depth-r._entryDepth,r._atRootLevel||v++;if(v>0)for(var x=0;x<v;x++){var b=.5*x/v;f=a.combine(a.addOpacity(m,b),f)}}}t.style(\"stroke-width\",l).call(a.fill,f).call(a.stroke,s).style(\"opacity\",d)}e.exports={style:function(t){t._fullLayout._treemaplayer.selectAll(\".trace\").each(function(t){var e=n.select(this),r=t[0].trace;e.style(\"opacity\",r.opacity),e.selectAll(\"path.surface\").each(function(t){n.select(this).call(s,t,r,{hovered:!1})})})},styleOne:s}},{\"../../components/color\":594,\"../../lib\":719,\"../sunburst/helpers\":1219,d3:164}],1252:[function(t,e,r){\"use strict\";var n=t(\"../box/attributes\"),a=t(\"../../lib/extend\").extendFlat;e.exports={y:n.y,x:n.x,x0:n.x0,y0:n.y0,name:a({},n.name,{}),orientation:a({},n.orientation,{}),bandwidth:{valType:\"number\",min:0,editType:\"calc\"},scalegroup:{valType:\"string\",dflt:\"\",editType:\"calc\"},scalemode:{valType:\"enumerated\",values:[\"width\",\"count\"],dflt:\"width\",editType:\"calc\"},spanmode:{valType:\"enumerated\",values:[\"soft\",\"hard\",\"manual\"],dflt:\"soft\",editType:\"calc\"},span:{valType:\"info_array\",items:[{valType:\"any\",editType:\"calc\"},{valType:\"any\",editType:\"calc\"}],editType:\"calc\"},line:{color:{valType:\"color\",editType:\"style\"},width:{valType:\"number\",min:0,dflt:2,editType:\"style\"},editType:\"plot\"},fillcolor:n.fillcolor,points:a({},n.boxpoints,{}),jitter:a({},n.jitter,{}),pointpos:a({},n.pointpos,{}),width:a({},n.width,{}),marker:n.marker,text:n.text,hovertext:n.hovertext,hovertemplate:n.hovertemplate,box:{visible:{valType:\"boolean\",dflt:!1,editType:\"plot\"},width:{valType:\"number\",min:0,max:1,dflt:.25,editType:\"plot\"},fillcolor:{valType:\"color\",editType:\"style\"},line:{color:{valType:\"color\",editType:\"style\"},width:{valType:\"number\",min:0,editType:\"style\"},editType:\"style\"},editType:\"plot\"},meanline:{visible:{valType:\"boolean\",dflt:!1,editType:\"plot\"},color:{valType:\"color\",editType:\"style\"},width:{valType:\"number\",min:0,editType:\"style\"},editType:\"plot\"},side:{valType:\"enumerated\",values:[\"both\",\"positive\",\"negative\"],dflt:\"both\",editType:\"calc\"},offsetgroup:n.offsetgroup,alignmentgroup:n.alignmentgroup,selected:n.selected,unselected:n.unselected,hoveron:{valType:\"flaglist\",flags:[\"violins\",\"points\",\"kde\"],dflt:\"violins+points+kde\",extras:[\"all\"],editType:\"style\"}}},{\"../../lib/extend\":710,\"../box/attributes\":881}],1253:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"../box/calc\"),o=t(\"./helpers\"),s=t(\"../../constants/numerical\").BADNUM;function l(t,e,r){var a=e.max-e.min;if(!a)return t.bandwidth?t.bandwidth:0;if(t.bandwidth)return Math.max(t.bandwidth,a/1e4);var i=r.length,o=n.stdev(r,i-1,e.mean);return Math.max(function(t,e,r){return 1.059*Math.min(e,r/1.349)*Math.pow(t,-.2)}(i,o,e.q3-e.q1),a/100)}function c(t,e,r,n){var i,o=t.spanmode,l=t.span||[],c=[e.min,e.max],u=[e.min-2*n,e.max+2*n];function h(n){var a=l[n],i=\"multicategory\"===r.type?r.r2c(a):r.d2c(a,0,t[e.valLetter+\"calendar\"]);return i===s?u[n]:i}var f={type:\"linear\",range:i=\"soft\"===o?u:\"hard\"===o?c:[h(0),h(1)]};return a.setConvert(f),f.cleanRange(),i}e.exports=function(t,e){var r=i(t,e);if(r[0].t.empty)return r;for(var s=t._fullLayout,u=a.getFromId(t,e[\"h\"===e.orientation?\"xaxis\":\"yaxis\"]),h=1/0,f=-1/0,p=0,d=0,g=0;g<r.length;g++){var v=r[g],m=v.pts.map(o.extractVal),y=v.bandwidth=l(e,v,m),x=v.span=c(e,v,u,y);if(v.min===v.max&&0===y)x=v.span=[v.min,v.max],v.density=[{v:1,t:x[0]}],v.bandwidth=y,p=Math.max(p,1);else{var b=x[1]-x[0],_=Math.ceil(b/(y/3)),w=b/_;if(!isFinite(w)||!isFinite(_))return n.error(\"Something went wrong with computing the violin span\"),r[0].t.empty=!0,r;var k=o.makeKDE(v,e,m);v.density=new Array(_);for(var T=0,A=x[0];A<x[1]+w/2;T++,A+=w){var M=k(A);v.density[T]={v:M,t:A},p=Math.max(p,M)}}d=Math.max(d,m.length),h=Math.min(h,x[0]),f=Math.max(f,x[1])}var S=a.findExtremes(u,[h,f],{padded:!0});if(e._extremes[u._id]=S,e.width)r[0].t.maxKDE=p;else{var E=s._violinScaleGroupStats,C=e.scalegroup,L=E[C];L?(L.maxKDE=Math.max(L.maxKDE,p),L.maxCount=Math.max(L.maxCount,d)):E[C]={maxKDE:p,maxCount:d}}return r[0].t.labels.kde=n._(t,\"kde:\"),r}},{\"../../constants/numerical\":695,\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../box/calc\":882,\"./helpers\":1256}],1254:[function(t,e,r){\"use strict\";var n=t(\"../box/cross_trace_calc\").setPositionOffset,a=[\"v\",\"h\"];e.exports=function(t,e){for(var r=t.calcdata,i=e.xaxis,o=e.yaxis,s=0;s<a.length;s++){for(var l=a[s],c=\"h\"===l?o:i,u=[],h=0;h<r.length;h++){var f=r[h],p=f[0].t,d=f[0].trace;!0!==d.visible||\"violin\"!==d.type||p.empty||d.orientation!==l||d.xaxis!==i._id||d.yaxis!==o._id||u.push(h)}n(\"violin\",t,u,c)}}},{\"../box/cross_trace_calc\":883}],1255:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../components/color\"),i=t(\"../box/defaults\"),o=t(\"./attributes\");e.exports=function(t,e,r,s){function l(r,a){return n.coerce(t,e,o,r,a)}function c(r,a){return n.coerce2(t,e,o,r,a)}if(i.handleSampleDefaults(t,e,l,s),!1!==e.visible){l(\"bandwidth\"),l(\"side\"),l(\"width\")||(l(\"scalegroup\",e.name),l(\"scalemode\"));var u,h=l(\"span\");Array.isArray(h)&&(u=\"manual\"),l(\"spanmode\",u);var f=l(\"line.color\",(t.marker||{}).color||r),p=l(\"line.width\"),d=l(\"fillcolor\",a.addOpacity(e.line.color,.5));i.handlePointsDefaults(t,e,l,{prefix:\"\"});var g=c(\"box.width\"),v=c(\"box.fillcolor\",d),m=c(\"box.line.color\",f),y=c(\"box.line.width\",p);l(\"box.visible\",Boolean(g||v||m||y))||(e.box={visible:!1});var x=c(\"meanline.color\",f),b=c(\"meanline.width\",p);l(\"meanline.visible\",Boolean(x||b))||(e.meanline={visible:!1})}}},{\"../../components/color\":594,\"../../lib\":719,\"../box/defaults\":884,\"./attributes\":1252}],1256:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=function(t){return 1/Math.sqrt(2*Math.PI)*Math.exp(-.5*t*t)};r.makeKDE=function(t,e,r){var n=r.length,i=a,o=t.bandwidth,s=1/(n*o);return function(t){for(var e=0,a=0;a<n;a++)e+=i((t-r[a])/o);return s*e}},r.getPositionOnKdePath=function(t,e,r){var a,i;\"h\"===e.orientation?(a=\"y\",i=\"x\"):(a=\"x\",i=\"y\");var o=n.findPointOnPath(t.path,r,i,{pathLength:t.pathLength}),s=t.posCenterPx,l=o[a];return[l,\"both\"===e.side?2*s-l:s]},r.getKdeValue=function(t,e,n){var a=t.pts.map(r.extractVal);return r.makeKDE(t,e,a)(n)/t.posDensityScale},r.extractVal=function(t){return t.v}},{\"../../lib\":719}],1257:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\"),i=t(\"../box/hover\"),o=t(\"./helpers\");e.exports=function(t,e,r,s,l){var c,u,h=t.cd,f=h[0].trace,p=f.hoveron,d=-1!==p.indexOf(\"violins\"),g=-1!==p.indexOf(\"kde\"),v=[];if(d||g){var m=i.hoverOnBoxes(t,e,r,s);if(g&&m.length>0){var y,x,b,_,w,k=t.xa,T=t.ya;\"h\"===f.orientation?(w=e,y=\"y\",b=T,x=\"x\",_=k):(w=r,y=\"x\",b=k,x=\"y\",_=T);var A=h[t.index];if(w>=A.span[0]&&w<=A.span[1]){var M=n.extendFlat({},t),S=_.c2p(w,!0),E=o.getKdeValue(A,f,w),C=o.getPositionOnKdePath(A,f,S),L=b._offset,P=b._length;M[y+\"0\"]=C[0],M[y+\"1\"]=C[1],M[x+\"0\"]=M[x+\"1\"]=S,M[x+\"Label\"]=x+\": \"+a.hoverLabelText(_,w)+\", \"+h[0].t.labels.kde+\" \"+E.toFixed(3),M.spikeDistance=m[0].spikeDistance;var O=y+\"Spike\";M[O]=m[0][O],m[0].spikeDistance=void 0,m[0][O]=void 0,M.hovertemplate=!1,v.push(M),(u={stroke:t.color})[y+\"1\"]=n.constrain(L+C[0],L,L+P),u[y+\"2\"]=n.constrain(L+C[1],L,L+P),u[x+\"1\"]=u[x+\"2\"]=_._offset+S}}d&&(v=v.concat(m))}-1!==p.indexOf(\"points\")&&(c=i.hoverOnPoints(t,e,r));var I=l.selectAll(\".violinline-\"+f.uid).data(u?[0]:[]);return I.enter().append(\"line\").classed(\"violinline-\"+f.uid,!0).attr(\"stroke-width\",1.5),I.exit().remove(),I.attr(u),\"closest\"===s?c?[c]:v:c?(v.push(c),v):v}},{\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../box/hover\":886,\"./helpers\":1256}],1258:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\"),crossTraceDefaults:t(\"../box/defaults\").crossTraceDefaults,supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\"),crossTraceCalc:t(\"./cross_trace_calc\"),plot:t(\"./plot\"),style:t(\"./style\"),styleOnSelect:t(\"../scatter/style\").styleOnSelect,hoverPoints:t(\"./hover\"),selectPoints:t(\"../box/select\"),moduleType:\"trace\",name:\"violin\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"symbols\",\"oriented\",\"box-violin\",\"showLegend\",\"violinLayout\",\"zoomScale\"],meta:{}}},{\"../../plots/cartesian\":778,\"../box/defaults\":884,\"../box/select\":891,\"../scatter/style\":1133,\"./attributes\":1252,\"./calc\":1253,\"./cross_trace_calc\":1254,\"./defaults\":1255,\"./hover\":1257,\"./layout_attributes\":1259,\"./layout_defaults\":1260,\"./plot\":1261,\"./style\":1262}],1259:[function(t,e,r){\"use strict\";var n=t(\"../box/layout_attributes\"),a=t(\"../../lib\").extendFlat;e.exports={violinmode:a({},n.boxmode,{}),violingap:a({},n.boxgap,{}),violingroupgap:a({},n.boxgroupgap,{})}},{\"../../lib\":719,\"../box/layout_attributes\":888}],1260:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./layout_attributes\"),i=t(\"../box/layout_defaults\");e.exports=function(t,e,r){i._supply(t,e,r,function(r,i){return n.coerce(t,e,a,r,i)},\"violin\")}},{\"../../lib\":719,\"../box/layout_defaults\":889,\"./layout_attributes\":1259}],1261:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../lib\"),i=t(\"../../components/drawing\"),o=t(\"../box/plot\"),s=t(\"../scatter/line_points\"),l=t(\"./helpers\");e.exports=function(t,e,r,c){var u=t._fullLayout,h=e.xaxis,f=e.yaxis;function p(t){var e=s(t,{xaxis:h,yaxis:f,connectGaps:!0,baseTolerance:.75,shape:\"spline\",simplify:!0});return i.smoothopen(e[0],1)}a.makeTraceGroups(c,r,\"trace violins\").each(function(t){var r=n.select(this),i=t[0],s=i.t,c=i.trace;if(!0!==c.visible||s.empty)r.remove();else{var d=s.bPos,g=s.bdPos,v=e[s.valLetter+\"axis\"],m=e[s.posLetter+\"axis\"],y=\"both\"===c.side,x=y||\"positive\"===c.side,b=y||\"negative\"===c.side,_=r.selectAll(\"path.violin\").data(a.identity);_.enter().append(\"path\").style(\"vector-effect\",\"non-scaling-stroke\").attr(\"class\",\"violin\"),_.exit().remove(),_.each(function(t){var e,r,a,i,o,l,h,f,_=n.select(this),w=t.density,k=w.length,T=t.pos+d,A=m.c2p(T);if(c.width)e=s.maxKDE/g;else{var M=u._violinScaleGroupStats[c.scalegroup];e=\"count\"===c.scalemode?M.maxKDE/g*(M.maxCount/t.pts.length):M.maxKDE/g}if(x){for(h=new Array(k),o=0;o<k;o++)(f=h[o]={})[s.posLetter]=T+w[o].v/e,f[s.valLetter]=w[o].t;r=p(h)}if(b){for(h=new Array(k),l=0,o=k-1;l<k;l++,o--)(f=h[l]={})[s.posLetter]=T-w[o].v/e,f[s.valLetter]=w[o].t;a=p(h)}if(y)i=r+\"L\"+a.substr(1)+\"Z\";else{var S=[A,v.c2p(w[0].t)],E=[A,v.c2p(w[k-1].t)];\"h\"===c.orientation&&(S.reverse(),E.reverse()),i=x?\"M\"+S+\"L\"+r.substr(1)+\"L\"+E:\"M\"+E+\"L\"+a.substr(1)+\"L\"+S}_.attr(\"d\",i),t.posCenterPx=A,t.posDensityScale=e*g,t.path=_.node(),t.pathLength=t.path.getTotalLength()/(y?2:1)});var w,k,T,A=c.box,M=A.width,S=(A.line||{}).width;y?(w=g*M,k=0):x?(w=[0,g*M/2],k=-S):(w=[g*M/2,0],k=S),o.plotBoxAndWhiskers(r,{pos:m,val:v},c,{bPos:d,bdPos:w,bPosPxOffset:k}),o.plotBoxMean(r,{pos:m,val:v},c,{bPos:d,bdPos:w,bPosPxOffset:k}),!c.box.visible&&c.meanline.visible&&(T=a.identity);var E=r.selectAll(\"path.meanline\").data(T||[]);E.enter().append(\"path\").attr(\"class\",\"meanline\").style(\"fill\",\"none\").style(\"vector-effect\",\"non-scaling-stroke\"),E.exit().remove(),E.each(function(t){var e=v.c2p(t.mean,!0),r=l.getPositionOnKdePath(t,c,e);n.select(this).attr(\"d\",\"h\"===c.orientation?\"M\"+e+\",\"+r[0]+\"V\"+r[1]:\"M\"+r[0]+\",\"+e+\"H\"+r[1])}),o.plotPoints(r,{x:h,y:f},c,s)}})}},{\"../../components/drawing\":615,\"../../lib\":719,\"../box/plot\":890,\"../scatter/line_points\":1124,\"./helpers\":1256,d3:164}],1262:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/color\"),i=t(\"../scatter/style\").stylePoints;e.exports=function(t){var e=n.select(t).selectAll(\"g.trace.violins\");e.style(\"opacity\",function(t){return t[0].trace.opacity}),e.each(function(e){var r=e[0].trace,o=n.select(this),s=r.box||{},l=s.line||{},c=r.meanline||{},u=c.width;o.selectAll(\"path.violin\").style(\"stroke-width\",r.line.width+\"px\").call(a.stroke,r.line.color).call(a.fill,r.fillcolor),o.selectAll(\"path.box\").style(\"stroke-width\",l.width+\"px\").call(a.stroke,l.color).call(a.fill,s.fillcolor);var h={\"stroke-width\":u+\"px\",\"stroke-dasharray\":2*u+\"px,\"+u+\"px\"};o.selectAll(\"path.mean\").style(h).call(a.stroke,c.color),o.selectAll(\"path.meanline\").style(h).call(a.stroke,c.color),i(o,r,t)})}},{\"../../components/color\":594,\"../scatter/style\":1133,d3:164}],1263:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/attributes\"),a=t(\"../isosurface/attributes\"),i=t(\"../../plots/attributes\"),o=t(\"../../lib/extend\").extendFlat,s=t(\"../../plot_api/edit_types\").overrideAll,l=e.exports=s(o({x:a.x,y:a.y,z:a.z,value:a.value,isomin:a.isomin,isomax:a.isomax,surface:a.surface,spaceframe:{show:{valType:\"boolean\",dflt:!1},fill:{valType:\"number\",min:0,max:1,dflt:1}},slices:a.slices,caps:a.caps,text:a.text,hovertext:a.hovertext,hovertemplate:a.hovertemplate},n(\"\",{colorAttr:\"`value`\",showScaleDflt:!0,editTypeOverride:\"calc\"}),{colorbar:a.colorbar,opacity:a.opacity,opacityscale:{valType:\"any\",editType:\"calc\"},lightposition:a.lightposition,lighting:a.lighting,flatshading:a.flatshading,contour:a.contour,hoverinfo:o({},i.hoverinfo)}),\"calc\",\"nested\");l.x.editType=l.y.editType=l.z.editType=l.value.editType=\"calc+clearAxisTypes\",l.transforms=void 0},{\"../../components/colorscale/attributes\":601,\"../../lib/extend\":710,\"../../plot_api/edit_types\":750,\"../../plots/attributes\":764,\"../isosurface/attributes\":1047}],1264:[function(t,e,r){\"use strict\";var n=t(\"gl-mesh3d\"),a=t(\"../../lib/gl_format_color\").parseColorScale,i=t(\"../../lib/str2rgbarray\"),o=t(\"../../components/colorscale\").extractOpts,s=t(\"../../plots/gl3d/zip3\"),l=t(\"../isosurface/convert\").findNearestOnAxis,c=t(\"../isosurface/convert\").generateIsoMeshes;function u(t,e,r){this.scene=t,this.uid=r,this.mesh=e,this.name=\"\",this.data=null,this.showContour=!1}var h=u.prototype;h.handlePick=function(t){if(t.object===this.mesh){var e=t.data.index,r=this.data._x[e],n=this.data._y[e],a=this.data._z[e],i=this.data._Ys.length,o=this.data._Zs.length,s=l(r,this.data._Xs).id,c=l(n,this.data._Ys).id,u=l(a,this.data._Zs).id,h=t.index=u+o*c+o*i*s;t.traceCoordinate=[this.data._x[h],this.data._y[h],this.data._z[h],this.data.value[h]];var f=this.data.hovertext||this.data.text;return Array.isArray(f)&&void 0!==f[h]?t.textLabel=f[h]:f&&(t.textLabel=f),!0}},h.update=function(t){var e=this.scene,r=e.fullSceneLayout;function n(t,e,r,n){return e.map(function(e){return t.d2l(e,0,n)*r})}this.data=c(t);var l={positions:s(n(r.xaxis,t._x,e.dataScale[0],t.xcalendar),n(r.yaxis,t._y,e.dataScale[1],t.ycalendar),n(r.zaxis,t._z,e.dataScale[2],t.zcalendar)),cells:s(t._i,t._j,t._k),lightPosition:[t.lightposition.x,t.lightposition.y,t.lightposition.z],ambient:t.lighting.ambient,diffuse:t.lighting.diffuse,specular:t.lighting.specular,roughness:t.lighting.roughness,fresnel:t.lighting.fresnel,vertexNormalsEpsilon:t.lighting.vertexnormalsepsilon,faceNormalsEpsilon:t.lighting.facenormalsepsilon,opacity:t.opacity,opacityscale:t.opacityscale,contourEnable:t.contour.show,contourColor:i(t.contour.color).slice(0,3),contourWidth:t.contour.width,useFacetNormals:t.flatshading},u=o(t);l.vertexIntensity=t._intensity,l.vertexIntensityBounds=[u.min,u.max],l.colormap=a(t),this.mesh.update(l)},h.dispose=function(){this.scene.glplot.remove(this.mesh),this.mesh.dispose()},e.exports=function(t,e){var r=t.glplot.gl,a=n({gl:r}),i=new u(t,a,e.uid);return a._trace=i,i.update(e),t.glplot.add(a),i}},{\"../../components/colorscale\":606,\"../../lib/gl_format_color\":716,\"../../lib/str2rgbarray\":742,\"../../plots/gl3d/zip3\":818,\"../isosurface/convert\":1049,\"gl-mesh3d\":281}],1265:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./attributes\"),i=t(\"../isosurface/defaults\").supplyIsoDefaults;e.exports=function(t,e,r,o){function s(r,i){return n.coerce(t,e,a,r,i)}i(t,e,r,o,s);var l=s(\"opacityscale\");\"max\"===l?e.opacityscale=[[0,.1],[1,1]]:\"min\"===l?e.opacityscale=[[0,1],[1,.1]]:\"extremes\"===l?e.opacityscale=function(t,e){for(var r=[],n=0;n<32;n++){var a=n/31,i=e+(1-e)*(1-Math.pow(Math.sin(t*a*Math.PI),2));r.push([a,Math.max(1,Math.min(0,i))])}return r}(1,.1):function(t){var e=0;if(!Array.isArray(t)||t.length<2)return!1;if(!t[0]||!t[t.length-1])return!1;if(0!=+t[0][0]||1!=+t[t.length-1][0])return!1;for(var r=0;r<t.length;r++){var n=t[r];if(2!==n.length||+n[0]<e)return!1;e=+n[0]}return!0}(l)||(e.opacityscale=void 0)}},{\"../../lib\":719,\"../isosurface/defaults\":1050,\"./attributes\":1263}],1266:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"../isosurface/calc\"),colorbar:{min:\"cmin\",max:\"cmax\"},plot:t(\"./convert\"),moduleType:\"trace\",name:\"volume\",basePlotModule:t(\"../../plots/gl3d\"),categories:[\"gl3d\"],meta:{}}},{\"../../plots/gl3d\":807,\"../isosurface/calc\":1048,\"./attributes\":1263,\"./convert\":1264,\"./defaults\":1265}],1267:[function(t,e,r){\"use strict\";var n=t(\"../bar/attributes\"),a=t(\"../scatter/attributes\").line,i=t(\"../../plots/attributes\"),o=t(\"../../plots/template_attributes\").hovertemplateAttrs,s=t(\"../../plots/template_attributes\").texttemplateAttrs,l=t(\"./constants\"),c=t(\"../../lib/extend\").extendFlat,u=t(\"../../components/color\");function h(t){return{marker:{color:c({},n.marker.color,{arrayOk:!1,editType:\"style\"}),line:{color:c({},n.marker.line.color,{arrayOk:!1,editType:\"style\"}),width:c({},n.marker.line.width,{arrayOk:!1,editType:\"style\"}),editType:\"style\"},editType:\"style\"},editType:\"style\"}}e.exports={measure:{valType:\"data_array\",dflt:[],editType:\"calc\"},base:{valType:\"number\",dflt:null,arrayOk:!1,editType:\"calc\"},x:n.x,x0:n.x0,dx:n.dx,y:n.y,y0:n.y0,dy:n.dy,hovertext:n.hovertext,hovertemplate:o({},{keys:l.eventDataKeys}),hoverinfo:c({},i.hoverinfo,{flags:[\"name\",\"x\",\"y\",\"text\",\"initial\",\"delta\",\"final\"]}),textinfo:{valType:\"flaglist\",flags:[\"label\",\"text\",\"initial\",\"delta\",\"final\"],extras:[\"none\"],editType:\"plot\",arrayOk:!1},texttemplate:s({editType:\"plot\"},{keys:l.eventDataKeys.concat([\"label\"])}),text:n.text,textposition:n.textposition,insidetextanchor:n.insidetextanchor,textangle:n.textangle,textfont:n.textfont,insidetextfont:n.insidetextfont,outsidetextfont:n.outsidetextfont,constraintext:n.constraintext,cliponaxis:n.cliponaxis,orientation:n.orientation,offset:n.offset,width:n.width,increasing:h(),decreasing:h(),totals:h(),connector:{line:{color:c({},a.color,{dflt:u.defaultLine}),width:c({},a.width,{editType:\"plot\"}),dash:a.dash,editType:\"plot\"},mode:{valType:\"enumerated\",values:[\"spanning\",\"between\"],dflt:\"between\",editType:\"plot\"},visible:{valType:\"boolean\",dflt:!0,editType:\"plot\"},editType:\"plot\"},offsetgroup:n.offsetgroup,alignmentgroup:n.alignmentgroup}},{\"../../components/color\":594,\"../../lib/extend\":710,\"../../plots/attributes\":764,\"../../plots/template_attributes\":843,\"../bar/attributes\":858,\"../scatter/attributes\":1111,\"./constants\":1269}],1268:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),a=t(\"../../lib\").mergeArray,i=t(\"../scatter/calc_selection\"),o=t(\"../../constants/numerical\").BADNUM;function s(t){return\"a\"===t||\"absolute\"===t}function l(t){return\"t\"===t||\"total\"===t}e.exports=function(t,e){var r,c,u=n.getFromId(t,e.xaxis||\"x\"),h=n.getFromId(t,e.yaxis||\"y\");\"h\"===e.orientation?(r=u.makeCalcdata(e,\"x\"),c=h.makeCalcdata(e,\"y\")):(r=h.makeCalcdata(e,\"y\"),c=u.makeCalcdata(e,\"x\"));for(var f,p=Math.min(c.length,r.length),d=new Array(p),g=0,v=!1,m=0;m<p;m++){var y=r[m]||0,x=!1;(r[m]!==o||l(e.measure[m])||s(e.measure[m]))&&m+1<p&&(r[m+1]!==o||l(e.measure[m+1])||s(e.measure[m+1]))&&(x=!0);var b=d[m]={i:m,p:c[m],s:y,rawS:y,cNext:x};s(e.measure[m])?(g=b.s,b.isSum=!0,b.dir=\"totals\",b.s=g):l(e.measure[m])?(b.isSum=!0,b.dir=\"totals\",b.s=g):(b.isSum=!1,b.dir=b.rawS<0?\"decreasing\":\"increasing\",f=b.s,b.s=g+f,g+=f),\"totals\"===b.dir&&(v=!0),e.ids&&(b.id=String(e.ids[m])),b.v=(e.base||0)+g}return d.length&&(d[0].hasTotals=v),a(e.text,d,\"tx\"),a(e.hovertext,d,\"htx\"),i(d,e),d}},{\"../../constants/numerical\":695,\"../../lib\":719,\"../../plots/cartesian/axes\":767,\"../scatter/calc_selection\":1113}],1269:[function(t,e,r){\"use strict\";e.exports={eventDataKeys:[\"initial\",\"delta\",\"final\"]}},{}],1270:[function(t,e,r){\"use strict\";var n=t(\"../bar/cross_trace_calc\").setGroupPositions;e.exports=function(t,e){var r,a,i=t._fullLayout,o=t._fullData,s=t.calcdata,l=e.xaxis,c=e.yaxis,u=[],h=[],f=[];for(a=0;a<o.length;a++){var p=o[a];!0===p.visible&&p.xaxis===l._id&&p.yaxis===c._id&&\"waterfall\"===p.type&&(r=s[a],\"h\"===p.orientation?f.push(r):h.push(r),u.push(r))}var d={mode:i.waterfallmode,norm:i.waterfallnorm,gap:i.waterfallgap,groupgap:i.waterfallgroupgap};for(n(t,l,c,h,d),n(t,c,l,f,d),a=0;a<u.length;a++){r=u[a];for(var g=0;g<r.length;g++){var v=r[g];!1===v.isSum&&(v.s0+=0===g?0:r[g-1].s),g+1<r.length&&(r[g].nextP0=r[g+1].p0,r[g].nextS0=r[g+1].s0)}}}},{\"../bar/cross_trace_calc\":861}],1271:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"../bar/defaults\").handleGroupingDefaults,i=t(\"../bar/defaults\").handleText,o=t(\"../scatter/xy_defaults\"),s=t(\"./attributes\"),l=t(\"../../components/color\"),c=t(\"../../constants/delta.js\"),u=c.INCREASING.COLOR,h=c.DECREASING.COLOR,f=\"#4499FF\";function p(t,e,r){t(e+\".marker.color\",r),t(e+\".marker.line.color\",l.defaultLine),t(e+\".marker.line.width\")}e.exports={supplyDefaults:function(t,e,r,a){function l(r,a){return n.coerce(t,e,s,r,a)}if(o(t,e,a,l)){l(\"measure\"),l(\"orientation\",e.x&&!e.y?\"h\":\"v\"),l(\"base\"),l(\"offset\"),l(\"width\"),l(\"text\"),l(\"hovertext\"),l(\"hovertemplate\");var c=l(\"textposition\");i(t,e,a,l,c,{moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!0,moduleHasCliponaxis:!0,moduleHasTextangle:!0,moduleHasInsideanchor:!0}),\"none\"!==e.textposition&&(l(\"texttemplate\"),e.texttemplate||l(\"textinfo\")),p(l,\"increasing\",u),p(l,\"decreasing\",h),p(l,\"totals\",f),l(\"connector.visible\")&&(l(\"connector.mode\"),l(\"connector.line.width\")&&(l(\"connector.line.color\"),l(\"connector.line.dash\")))}else e.visible=!1},crossTraceDefaults:function(t,e){var r,i;function o(t){return n.coerce(i._input,i,s,t)}if(\"group\"===e.waterfallmode)for(var l=0;l<t.length;l++)r=(i=t[l])._input,a(r,i,e,o)}}},{\"../../components/color\":594,\"../../constants/delta.js\":689,\"../../lib\":719,\"../bar/defaults\":862,\"../scatter/xy_defaults\":1136,\"./attributes\":1267}],1272:[function(t,e,r){\"use strict\";e.exports=function(t,e){return t.x=\"xVal\"in e?e.xVal:e.x,t.y=\"yVal\"in e?e.yVal:e.y,\"initial\"in e&&(t.initial=e.initial),\"delta\"in e&&(t.delta=e.delta),\"final\"in e&&(t.final=e.final),e.xa&&(t.xaxis=e.xa),e.ya&&(t.yaxis=e.ya),t}},{}],1273:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\").hoverLabelText,a=t(\"../../components/color\").opacity,i=t(\"../bar/hover\").hoverOnBars,o=t(\"../../constants/delta.js\"),s=o.INCREASING.SYMBOL,l=o.DECREASING.SYMBOL;e.exports=function(t,e,r,o){var c=i(t,e,r,o);if(c){var u=c.cd,h=u[0].trace,f=\"h\"===h.orientation,p=f?t.xa:t.ya,d=u[c.index],g=d.isSum?d.b+d.s:d.rawS;if(!d.isSum){c.initial=d.b+d.s-g,c.delta=g,c.final=c.initial+c.delta;var v=w(Math.abs(c.delta));c.deltaLabel=g<0?\"(\"+v+\")\":v,c.finalLabel=w(c.final),c.initialLabel=w(c.initial)}var m=d.hi||h.hoverinfo,y=[];if(m&&\"none\"!==m&&\"skip\"!==m){var x=\"all\"===m,b=m.split(\"+\"),_=function(t){return x||-1!==b.indexOf(t)};d.isSum||(!_(\"final\")||_(f?\"x\":\"y\")||y.push(c.finalLabel),_(\"delta\")&&(g<0?y.push(c.deltaLabel+\" \"+l):y.push(c.deltaLabel+\" \"+s)),_(\"initial\")&&y.push(\"Initial: \"+c.initialLabel))}return y.length&&(c.extraText=y.join(\"<br>\")),c.color=function(t,e){var r=t[e.dir].marker,n=r.color,i=r.line.color,o=r.line.width;if(a(n))return n;if(a(i)&&o)return i}(h,d),[c]}function w(t){return n(p,t)}}},{\"../../components/color\":594,\"../../constants/delta.js\":689,\"../../plots/cartesian/axes\":767,\"../bar/hover\":864}],1274:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\").supplyDefaults,crossTraceDefaults:t(\"./defaults\").crossTraceDefaults,supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\"),crossTraceCalc:t(\"./cross_trace_calc\"),plot:t(\"./plot\"),style:t(\"./style\").style,hoverPoints:t(\"./hover\"),eventData:t(\"./event_data\"),selectPoints:t(\"../bar/select\"),moduleType:\"trace\",name:\"waterfall\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"bar-like\",\"cartesian\",\"svg\",\"oriented\",\"showLegend\",\"zoomScale\"],meta:{}}},{\"../../plots/cartesian\":778,\"../bar/select\":869,\"./attributes\":1267,\"./calc\":1268,\"./cross_trace_calc\":1270,\"./defaults\":1271,\"./event_data\":1272,\"./hover\":1273,\"./layout_attributes\":1275,\"./layout_defaults\":1276,\"./plot\":1277,\"./style\":1278}],1275:[function(t,e,r){\"use strict\";e.exports={waterfallmode:{valType:\"enumerated\",values:[\"group\",\"overlay\"],dflt:\"group\",editType:\"calc\"},waterfallgap:{valType:\"number\",min:0,max:1,editType:\"calc\"},waterfallgroupgap:{valType:\"number\",min:0,max:1,dflt:0,editType:\"calc\"}}},{}],1276:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),a=t(\"./layout_attributes\");e.exports=function(t,e,r){var i=!1;function o(r,i){return n.coerce(t,e,a,r,i)}for(var s=0;s<r.length;s++){var l=r[s];if(l.visible&&\"waterfall\"===l.type){i=!0;break}}i&&(o(\"waterfallmode\"),o(\"waterfallgap\",.2),o(\"waterfallgroupgap\"))}},{\"../../lib\":719,\"./layout_attributes\":1275}],1277:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../lib\"),i=t(\"../../components/drawing\"),o=t(\"../bar/plot\").plot;e.exports=function(t,e,r,s){var l=t._fullLayout;o(t,e,r,s,{mode:l.waterfallmode,norm:l.waterfallmode,gap:l.waterfallgap,groupgap:l.waterfallgroupgap}),function(t,e,r,o){var s=e.xaxis,l=e.yaxis;a.makeTraceGroups(o,r,\"trace bars\").each(function(r){var o=n.select(this),c=r[0].trace,u=a.ensureSingle(o,\"g\",\"lines\");if(c.connector&&c.connector.visible){var h=\"h\"===c.orientation,f=c.connector.mode,p=u.selectAll(\"g.line\").data(a.identity);p.enter().append(\"g\").classed(\"line\",!0),p.exit().remove();var d=p.size();p.each(function(r,o){if(o===d-1||r.cNext){var c=function(t,e,r,n){var a=[],i=[],o=n?e:r,s=n?r:e;return a[0]=o.c2p(t.s0,!0),i[0]=s.c2p(t.p0,!0),a[1]=o.c2p(t.s1,!0),i[1]=s.c2p(t.p1,!0),a[2]=o.c2p(t.nextS0,!0),i[2]=s.c2p(t.nextP0,!0),n?[a,i]:[i,a]}(r,s,l,h),u=c[0],p=c[1],g=\"\";\"spanning\"===f&&!r.isSum&&o>0&&(g+=h?\"M\"+u[0]+\",\"+p[1]+\"V\"+p[0]:\"M\"+u[1]+\",\"+p[0]+\"H\"+u[0]),\"between\"!==f&&(r.isSum||o<d-1)&&(g+=h?\"M\"+u[1]+\",\"+p[0]+\"V\"+p[1]:\"M\"+u[0]+\",\"+p[1]+\"H\"+u[1]),void 0!==u[2]&&void 0!==p[2]&&(g+=h?\"M\"+u[1]+\",\"+p[1]+\"V\"+p[2]:\"M\"+u[1]+\",\"+p[1]+\"H\"+u[2]),\"\"===g&&(g=\"M0,0Z\"),a.ensureSingle(n.select(this),\"path\").attr(\"d\",g).call(i.setClipUrl,e.layerClipId,t)}})}else u.remove()})}(t,e,r,s)}},{\"../../components/drawing\":615,\"../../lib\":719,\"../bar/plot\":868,d3:164}],1278:[function(t,e,r){\"use strict\";var n=t(\"d3\"),a=t(\"../../components/drawing\"),i=t(\"../../components/color\"),o=t(\"../../constants/interactions\").DESELECTDIM,s=t(\"../bar/style\").styleTextPoints;e.exports={style:function(t,e,r){var l=r||n.select(t).selectAll(\"g.waterfalllayer\").selectAll(\"g.trace\");l.style(\"opacity\",function(t){return t[0].trace.opacity}),l.each(function(e){var r=n.select(this),l=e[0].trace;r.selectAll(\".point > path\").each(function(t){if(!t.isBlank){var e=l[t.dir].marker;n.select(this).call(i.fill,e.color).call(i.stroke,e.line.color).call(a.dashLine,e.line.dash,e.line.width).style(\"opacity\",l.selectedpoints&&!t.selected?o:1)}}),s(r,l,t),r.selectAll(\".lines\").each(function(){var t=l.connector.line;a.lineGroupStyle(n.select(this).selectAll(\"path\"),t.width,t.color,t.dash)})})}}},{\"../../components/color\":594,\"../../components/drawing\":615,\"../../constants/interactions\":694,\"../bar/style\":871,d3:164}],1279:[function(t,e,r){\"use strict\";var n=t(\"../plots/cartesian/axes\"),a=t(\"../lib\"),i=t(\"../plot_api/plot_schema\"),o=t(\"./helpers\").pointsAccessorFunction,s=t(\"../constants/numerical\").BADNUM;r.moduleType=\"transform\",r.name=\"aggregate\";var l=r.attributes={enabled:{valType:\"boolean\",dflt:!0,editType:\"calc\"},groups:{valType:\"string\",strict:!0,noBlank:!0,arrayOk:!0,dflt:\"x\",editType:\"calc\"},aggregations:{_isLinkedToArray:\"aggregation\",target:{valType:\"string\",editType:\"calc\"},func:{valType:\"enumerated\",values:[\"count\",\"sum\",\"avg\",\"median\",\"mode\",\"rms\",\"stddev\",\"min\",\"max\",\"first\",\"last\",\"change\",\"range\"],dflt:\"first\",editType:\"calc\"},funcmode:{valType:\"enumerated\",values:[\"sample\",\"population\"],dflt:\"sample\",editType:\"calc\"},enabled:{valType:\"boolean\",dflt:!0,editType:\"calc\"},editType:\"calc\"},editType:\"calc\"},c=l.aggregations;function u(t,e,r,i){if(i.enabled){for(var o=i.target,l=a.nestedProperty(e,o),c=l.get(),u=function(t,e){var r=t.func,n=e.d2c,a=e.c2d;switch(r){case\"count\":return h;case\"first\":return f;case\"last\":return p;case\"sum\":return function(t,e){for(var r=0,i=0;i<e.length;i++){var o=n(t[e[i]]);o!==s&&(r+=o)}return a(r)};case\"avg\":return function(t,e){for(var r=0,i=0,o=0;o<e.length;o++){var l=n(t[e[o]]);l!==s&&(r+=l,i++)}return i?a(r/i):s};case\"min\":return function(t,e){for(var r=1/0,i=0;i<e.length;i++){var o=n(t[e[i]]);o!==s&&(r=Math.min(r,o))}return r===1/0?s:a(r)};case\"max\":return function(t,e){for(var r=-1/0,i=0;i<e.length;i++){var o=n(t[e[i]]);o!==s&&(r=Math.max(r,o))}return r===-1/0?s:a(r)};case\"range\":return function(t,e){for(var r=1/0,i=-1/0,o=0;o<e.length;o++){var l=n(t[e[o]]);l!==s&&(r=Math.min(r,l),i=Math.max(i,l))}return i===-1/0||r===1/0?s:a(i-r)};case\"change\":return function(t,e){var r=n(t[e[0]]),i=n(t[e[e.length-1]]);return r===s||i===s?s:a(i-r)};case\"median\":return function(t,e){for(var r=[],i=0;i<e.length;i++){var o=n(t[e[i]]);o!==s&&r.push(o)}if(!r.length)return s;r.sort();var l=(r.length-1)/2;return a((r[Math.floor(l)]+r[Math.ceil(l)])/2)};case\"mode\":return function(t,e){for(var r={},i=0,o=s,l=0;l<e.length;l++){var c=n(t[e[l]]);if(c!==s){var u=r[c]=(r[c]||0)+1;u>i&&(i=u,o=c)}}return i?a(o):s};case\"rms\":return function(t,e){for(var r=0,i=0,o=0;o<e.length;o++){var l=n(t[e[o]]);l!==s&&(r+=l*l,i++)}return i?a(Math.sqrt(r/i)):s};case\"stddev\":return function(e,r){var a,i=0,o=0,l=1,c=s;for(a=0;a<r.length&&c===s;a++)c=n(e[r[a]]);if(c===s)return s;for(;a<r.length;a++){var u=n(e[r[a]]);if(u!==s){var h=u-c;i+=h,o+=h*h,l++}}var f=\"sample\"===t.funcmode?l-1:l;return f?Math.sqrt((o-i*i/l)/f):0}}}(i,n.getDataConversions(t,e,o,c)),d=new Array(r.length),g=0;g<r.length;g++)d[g]=u(c,r[g]);l.set(d),\"count\"===i.func&&a.pushUnique(e._arrayAttrs,o)}}function h(t,e){return e.length}function f(t,e){return t[e[0]]}function p(t,e){return t[e[e.length-1]]}r.supplyDefaults=function(t,e){var r,n={};function o(e,r){return a.coerce(t,n,l,e,r)}if(!o(\"enabled\"))return n;var s=i.findArrayAttributes(e),u={};for(r=0;r<s.length;r++)u[s[r]]=1;var h=o(\"groups\");if(!Array.isArray(h)){if(!u[h])return n.enabled=!1,n;u[h]=0}var f,p=t.aggregations||[],d=n.aggregations=new Array(p.length);function g(t,e){return a.coerce(p[r],f,c,t,e)}for(r=0;r<p.length;r++){f={_index:r};var v=g(\"target\"),m=g(\"func\");g(\"enabled\")&&v&&(u[v]||\"count\"===m&&void 0===u[v])?(\"stddev\"===m&&g(\"funcmode\"),u[v]=0,d[r]=f):d[r]={enabled:!1,_index:r}}for(r=0;r<s.length;r++)u[s[r]]&&d.push({target:s[r],func:c.func.dflt,enabled:!0,_index:-1});return n},r.calcTransform=function(t,e,r){if(r.enabled){var n=r.groups,i=a.getTargetArray(e,{target:n});if(i){var s,l,c,h,f={},p={},d=[],g=o(e.transforms,r),v=i.length;for(e._length&&(v=Math.min(v,e._length)),s=0;s<v;s++)void 0===(c=f[l=i[s]])?(f[l]=d.length,h=[s],d.push(h),p[f[l]]=g(s)):(d[c].push(s),p[f[l]]=(p[f[l]]||[]).concat(g(s)));r._indexToPoints=p;var m=r.aggregations;for(s=0;s<m.length;s++)u(t,e,d,m[s]);\"string\"==typeof n&&u(t,e,d,{target:n,func:\"first\",enabled:!0}),e._length=d.length}}}},{\"../constants/numerical\":695,\"../lib\":719,\"../plot_api/plot_schema\":756,\"../plots/cartesian/axes\":767,\"./helpers\":1282}],1280:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),a=t(\"../registry\"),i=t(\"../plots/cartesian/axes\"),o=t(\"./helpers\").pointsAccessorFunction,s=t(\"../constants/filter_ops\"),l=s.COMPARISON_OPS,c=s.INTERVAL_OPS,u=s.SET_OPS;r.moduleType=\"transform\",r.name=\"filter\",r.attributes={enabled:{valType:\"boolean\",dflt:!0,editType:\"calc\"},target:{valType:\"string\",strict:!0,noBlank:!0,arrayOk:!0,dflt:\"x\",editType:\"calc\"},operation:{valType:\"enumerated\",values:[].concat(l).concat(c).concat(u),dflt:\"=\",editType:\"calc\"},value:{valType:\"any\",dflt:0,editType:\"calc\"},preservegaps:{valType:\"boolean\",dflt:!1,editType:\"calc\"},editType:\"calc\"},r.supplyDefaults=function(t){var e={};function i(a,i){return n.coerce(t,e,r.attributes,a,i)}if(i(\"enabled\")){var o=i(\"target\");if(n.isArrayOrTypedArray(o)&&0===o.length)return e.enabled=!1,e;i(\"preservegaps\"),i(\"operation\"),i(\"value\");var s=a.getComponentMethod(\"calendars\",\"handleDefaults\");s(t,e,\"valuecalendar\",null),s(t,e,\"targetcalendar\",null)}return e},r.calcTransform=function(t,e,r){if(r.enabled){var a=n.getTargetArray(e,r);if(a){var s=r.target,h=a.length;e._length&&(h=Math.min(h,e._length));var f=r.targetcalendar,p=e._arrayAttrs,d=r.preservegaps;if(\"string\"==typeof s){var g=n.nestedProperty(e,s+\"calendar\").get();g&&(f=g)}var v,m,y=function(t,e,r){var n=t.operation,a=t.value,i=Array.isArray(a);function o(t){return-1!==t.indexOf(n)}var s,h=function(r){return e(r,0,t.valuecalendar)},f=function(t){return e(t,0,r)};o(l)?s=h(i?a[0]:a):o(c)?s=i?[h(a[0]),h(a[1])]:[h(a),h(a)]:o(u)&&(s=i?a.map(h):[h(a)]);switch(n){case\"=\":return function(t){return f(t)===s};case\"!=\":return function(t){return f(t)!==s};case\"<\":return function(t){return f(t)<s};case\"<=\":return function(t){return f(t)<=s};case\">\":return function(t){return f(t)>s};case\">=\":return function(t){return f(t)>=s};case\"[]\":return function(t){var e=f(t);return e>=s[0]&&e<=s[1]};case\"()\":return function(t){var e=f(t);return e>s[0]&&e<s[1]};case\"[)\":return function(t){var e=f(t);return e>=s[0]&&e<s[1]};case\"(]\":return function(t){var e=f(t);return e>s[0]&&e<=s[1]};case\"][\":return function(t){var e=f(t);return e<=s[0]||e>=s[1]};case\")(\":return function(t){var e=f(t);return e<s[0]||e>s[1]};case\"](\":return function(t){var e=f(t);return e<=s[0]||e>s[1]};case\")[\":return function(t){var e=f(t);return e<s[0]||e>=s[1]};case\"{}\":return function(t){return-1!==s.indexOf(f(t))};case\"}{\":return function(t){return-1===s.indexOf(f(t))}}}(r,i.getDataToCoordFunc(t,e,s,a),f),x={},b={},_=0;d?(v=function(t){x[t.astr]=n.extendDeep([],t.get()),t.set(new Array(h))},m=function(t,e){var r=x[t.astr][e];t.get()[e]=r}):(v=function(t){x[t.astr]=n.extendDeep([],t.get()),t.set([])},m=function(t,e){var r=x[t.astr][e];t.get().push(r)}),T(v);for(var w=o(e.transforms,r),k=0;k<h;k++){y(a[k])?(T(m,k),b[_++]=w(k)):d&&_++}r._indexToPoints=b,e._length=_}}function T(t,r){for(var a=0;a<p.length;a++){t(n.nestedProperty(e,p[a]),r)}}}},{\"../constants/filter_ops\":691,\"../lib\":719,\"../plots/cartesian/axes\":767,\"../registry\":848,\"./helpers\":1282}],1281:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),a=t(\"../plot_api/plot_schema\"),i=t(\"../plots/plots\"),o=t(\"./helpers\").pointsAccessorFunction;function s(t,e){var r,s,l,c,u,h,f,p,d,g,v=e.transform,m=e.transformIndex,y=t.transforms[m].groups,x=o(t.transforms,v);if(!Array.isArray(y)||0===y.length)return[t];var b=n.filterUnique(y),_=new Array(b.length),w=y.length,k=a.findArrayAttributes(t),T=v.styles||[],A={};for(r=0;r<T.length;r++)A[T[r].target]=T[r].value;v.styles&&(g=n.keyedContainer(v,\"styles\",\"target\",\"value.name\"));var M={},S={};for(r=0;r<b.length;r++){M[h=b[r]]=r,S[h]=0,(f=_[r]=n.extendDeepNoArrays({},t))._group=h,f.transforms[m]._indexToPoints={};var E=null;for(g&&(E=g.get(h)),f.name=E||\"\"===E?E:n.templateString(v.nameformat,{trace:t.name,group:h}),p=f.transforms,f.transforms=[],s=0;s<p.length;s++)f.transforms[s]=n.extendDeepNoArrays({},p[s]);for(s=0;s<k.length;s++)n.nestedProperty(f,k[s]).set([])}for(l=0;l<k.length;l++){for(c=k[l],s=0,d=[];s<b.length;s++)d[s]=n.nestedProperty(_[s],c).get();for(u=n.nestedProperty(t,c).get(),s=0;s<w;s++)d[M[y[s]]].push(u[s])}for(s=0;s<w;s++){(f=_[M[y[s]]]).transforms[m]._indexToPoints[S[y[s]]]=x(s),S[y[s]]++}for(r=0;r<b.length;r++)h=b[r],f=_[r],i.clearExpandedTraceDefaultColors(f),f=n.extendDeepNoArrays(f,A[h]||{});return _}r.moduleType=\"transform\",r.name=\"groupby\",r.attributes={enabled:{valType:\"boolean\",dflt:!0,editType:\"calc\"},groups:{valType:\"data_array\",dflt:[],editType:\"calc\"},nameformat:{valType:\"string\",editType:\"calc\"},styles:{_isLinkedToArray:\"style\",target:{valType:\"string\",editType:\"calc\"},value:{valType:\"any\",dflt:{},editType:\"calc\",_compareAsJSON:!0},editType:\"calc\"},editType:\"calc\"},r.supplyDefaults=function(t,e,a){var i,o={};function s(e,a){return n.coerce(t,o,r.attributes,e,a)}if(!s(\"enabled\"))return o;s(\"groups\"),s(\"nameformat\",a._dataLength>1?\"%{group} (%{trace})\":\"%{group}\");var l=t.styles,c=o.styles=[];if(l)for(i=0;i<l.length;i++){var u=c[i]={};n.coerce(l[i],c[i],r.attributes.styles,\"target\");var h=n.coerce(l[i],c[i],r.attributes.styles,\"value\");n.isPlainObject(h)?u.value=n.extendDeep({},h):h&&delete u.value}return o},r.transform=function(t,e){var r,n,a,i=[];for(n=0;n<t.length;n++)for(r=s(t[n],e),a=0;a<r.length;a++)i.push(r[a]);return i}},{\"../lib\":719,\"../plot_api/plot_schema\":756,\"../plots/plots\":828,\"./helpers\":1282}],1282:[function(t,e,r){\"use strict\";r.pointsAccessorFunction=function(t,e){for(var r,n,a=0;a<t.length&&(r=t[a])!==e;a++)r._indexToPoints&&!1!==r.enabled&&(n=r._indexToPoints);return n?function(t){return n[t]}:function(t){return[t]}}},{}],1283:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),a=t(\"../plots/cartesian/axes\"),i=t(\"./helpers\").pointsAccessorFunction;r.moduleType=\"transform\",r.name=\"sort\",r.attributes={enabled:{valType:\"boolean\",dflt:!0,editType:\"calc\"},target:{valType:\"string\",strict:!0,noBlank:!0,arrayOk:!0,dflt:\"x\",editType:\"calc\"},order:{valType:\"enumerated\",values:[\"ascending\",\"descending\"],dflt:\"ascending\",editType:\"calc\"},editType:\"calc\"},r.supplyDefaults=function(t){var e={};function a(a,i){return n.coerce(t,e,r.attributes,a,i)}return a(\"enabled\")&&(a(\"target\"),a(\"order\")),e},r.calcTransform=function(t,e,r){if(r.enabled){var o=n.getTargetArray(e,r);if(o){var s=r.target,l=o.length;e._length&&(l=Math.min(l,e._length));var c,u,h=e._arrayAttrs,f=function(t,e,r,n){var a,i=new Array(n),o=new Array(n);for(a=0;a<n;a++)i[a]={v:e[a],i:a};for(i.sort(function(t,e){switch(t.order){case\"ascending\":return function(t,r){return e(t.v)-e(r.v)};case\"descending\":return function(t,r){return e(r.v)-e(t.v)}}}(t,r)),a=0;a<n;a++)o[a]=i[a].i;return o}(r,o,a.getDataToCoordFunc(t,e,s,o),l),p=i(e.transforms,r),d={};for(c=0;c<h.length;c++){var g=n.nestedProperty(e,h[c]),v=g.get(),m=new Array(l);for(u=0;u<l;u++)m[u]=v[f[u]];g.set(m)}for(u=0;u<l;u++)d[u]=p(f[u]);r._indexToPoints=d,e._length=l}}}},{\"../lib\":719,\"../plots/cartesian/axes\":767,\"./helpers\":1282}]},{},[25])(25)});\n",
-       "        });\n",
-       "        require(['plotly'], function(Plotly) {\n",
-       "            window._Plotly = Plotly;\n",
-       "        });\n",
-       "        }\n",
-       "        </script>\n",
-       "        "
-      ]
-     },
-     "metadata": {},
-     "output_type": "display_data"
-    },
     {
      "data": {
       "application/vnd.plotly.v1+json": {
@@ -130,3058 +113,1838 @@
        "data": [
         {
          "marker": {
-          "size": 1
+          "size": 3
          },
          "mode": "markers",
          "name": "Class 1",
-         "type": "scatter3d",
+         "type": "scatter",
          "x": [
-          -11.148431648436642,
-          -11.532799006483092,
-          -8.319128100140688,
-          -9.555174045724408,
-          -9.848326915978086,
-          -10.164097641313578,
-          -11.531713465816699,
-          -9.461520847232517,
-          -9.776518355745962,
-          -9.50395361355271,
-          -10.990946632559188,
-          -10.075020393473839,
-          -11.123520410556345,
-          -10.261474026251113,
-          -12.169673258702135,
-          -9.44903211779248,
-          -9.754089242258182,
-          -11.948627052403015,
-          -9.599728846726816,
-          -9.272033967924823,
-          -11.61448656225432,
-          -10.205791827701521,
-          -10.43627927901561,
-          -10.128760723949384,
-          -9.411367827564419,
-          -10.447660695241504,
-          -9.627127012399514,
-          -9.942817286255067,
-          -10.024558184847699,
-          -9.956558872330907,
-          -7.195127951230843,
-          -9.92130842828509,
-          -9.956247717663079,
-          -12.481756423157336,
-          -10.13471303223747,
-          -10.131970783168692,
-          -10.151104940075195,
-          -10.685595315668005,
-          -9.934997397394545,
-          -12.04934784414448,
-          -9.690567622881023,
-          -9.98470495333626,
-          -9.176720832164202,
-          -9.643289807275817,
-          -10.42122521826776,
-          -10.106538932295566,
-          -8.158305461781568,
-          -9.815427156951296,
-          -8.74794315960913,
-          -10.29070935892814,
-          -9.741944008707327,
-          -9.347528364064184,
-          -9.511761032186689,
-          -9.452910825917025,
-          -9.760785113153156,
-          -10.654435766053073,
-          -10.531134003338133,
-          -9.66528758952182,
-          -10.07684684912417,
-          -9.866233384174706,
-          -12.23722098030168,
-          -10.238798690775024,
-          -10.00553221990153,
-          -9.172328073048032,
-          -12.393287729228941,
-          -9.247391922185814,
-          -9.991262330258008,
-          -10.1563095921768,
-          -10.39164853485425,
-          -9.866501341797452,
-          -9.903935798572663,
-          -10.564642974101346,
-          -9.606540184985533,
-          -10.02479444853199,
-          -9.335282341491075,
-          -10.964183788841927,
-          -10.37777860838833,
-          -10.305126611091238,
-          -9.715083250408217,
-          -10.710642275461513,
-          -11.84185876102245,
-          -8.885402884348872,
-          -10.07051735650033,
-          -9.448308922888081,
-          -9.451647373234259,
-          -10.203802256515601,
-          -10.969232665704114,
-          -9.50873376888584,
-          -9.456442820466762,
-          -9.84074485029633,
-          -11.083544259689596,
-          -10.06829642641924,
-          -9.293131162887835,
-          -9.628322599927136,
-          -9.741437971012626,
-          -9.65596374713936,
-          -11.994922109328156,
-          -9.600595356887526,
-          -10.141302635623775,
-          -10.270127795502454,
-          -8.024393139567888,
-          -10.534643186564866,
-          -8.958277671267945,
-          -10.16433454797929,
-          -10.334989873112397,
-          -9.452789531192499,
-          -10.19836205683037,
-          -11.196419577985516,
-          -9.534907560609033,
-          -9.441410349462004,
-          -10.491132232675099,
-          -11.155684651896886,
-          -8.679885808984855,
-          -10.357453927830573,
-          -10.47012402600302,
-          -9.857796983741514,
-          -10.338575550298865,
-          -10.085158241121833,
-          -10.658936332790736,
-          -9.896392931784087,
-          -10.016565831732866,
-          -10.07993247995959,
-          -8.317484810869674,
-          -7.991669164211304,
-          -10.34488471528119,
-          -9.394305356538936,
-          -9.828696144965928,
-          -8.774868142461353,
-          -9.7588768388694,
-          -9.868127474701478,
-          -8.994955575414522,
-          -9.601368229778537,
-          -9.45017986587349,
-          -10.481306218303228,
-          -8.69236504181488,
-          -10.364085251276629,
-          -10.72973675202102,
-          -10.266667257678696,
-          -10.272401989002503,
-          -8.949628633355466,
-          -10.824606321218974,
-          -9.739877355521802,
-          -11.960024904828362,
-          -9.809500879652912,
-          -11.57839698705898,
-          -9.370215837593834,
-          -10.211983993576998,
-          -11.183447986858106,
-          -7.95996583958079,
-          -13.395785901375598,
-          -9.679929307706743,
-          -9.999269984387633,
-          -9.287891669092858,
-          -8.695506711152047,
-          -11.226713903195336,
-          -10.06762804582212,
-          -9.321713545205025,
-          -7.906555521834444,
-          -9.974822331309577,
-          -9.882228257990453,
-          -10.196462777630083,
-          -9.338016739964813,
-          -13.020086347981298,
-          -10.092055303811154,
-          -10.009571847971026,
-          -11.217204684883814,
-          -8.953249561126803,
-          -10.657478475309997,
-          -10.453022568591074,
-          -8.28539340775638,
-          -11.202389828026972,
-          -10.044067709507248,
-          -6.730556923256776,
-          -9.795952849831766,
-          -9.684481165375217,
-          -9.79887567698832,
-          -9.969307641238926,
-          -9.863951664211498,
-          -9.762886219926436,
-          -9.569922970516808,
-          -9.181861674396888,
-          -9.001372122289135,
-          -9.787369169270887,
-          -9.512218069632537,
-          -10.349547072195367,
-          -10.008255966407113,
-          -10.48934142829106,
-          -11.664093587756378,
-          -9.163731693996358,
-          -9.574367295134325,
-          -10.255915532742948,
-          -8.380311476646423,
-          -9.624306330096655,
-          -9.197126187574197,
-          -9.872372599979576,
-          -10.625682065709334,
-          -10.826453487035943,
-          -9.600477109721142,
-          -9.21408642029308,
-          -9.751438142509643,
-          -10.404320247095804,
-          -10.75618685747917,
-          -8.848193109357101,
-          -10.222347914308582,
-          -9.470445363273248,
-          -9.898177115457171,
-          -10.117539069545725,
-          -10.50048804778683,
-          -10.549194249894965,
-          -10.050972889650486,
-          -9.611240527225231,
-          -11.439562085920286,
-          -10.457374515778412,
-          -8.548027963348531,
-          -10.133049531146272,
-          -8.105208304891352,
-          -9.710100303337654,
-          -8.749769608689922,
-          -10.231902713843024,
-          -10.268451607448629,
-          -10.642288148521317,
-          -10.115112346631067,
-          -6.202273962584899,
-          -10.024607107598978,
-          -9.75534862730249,
-          -9.009490950107894,
-          -10.064455400287056,
-          -10.280712779625386,
-          -9.820944588361117,
-          -8.698417732514333,
-          -9.792303668804886,
-          -9.682048496772625,
-          -9.190074559936768,
-          -10.98051801938661,
-          -10.30064797215698,
-          -9.583623080938713,
-          -10.364652373813028,
-          -10.943573590818819,
-          -11.39313796417067,
-          -9.960160517599567,
-          -8.568945193197385,
-          -10.530385945762804,
-          -9.519512162027173,
-          -8.340461077646552,
-          -10.650086359311043,
-          -10.266377324367692,
-          -10.167845106224002,
-          -8.95389635629998,
-          -10.317225998154564,
-          -11.410468593503008
+          -0.3396480084134613,
+          -1.238731486261419,
+          0.6100892118877779,
+          -1.478653438364253,
+          -1.472478326206806,
+          -0.7533069391871909,
+          -2.758643019009292,
+          -2.03263375543892,
+          -1.925777548012959,
+          0.49430478785660026,
+          -0.9311514997861496,
+          -1.5550263671172506,
+          -2.173497532290698,
+          -1.6123822358736106,
+          -1.6134710379492612,
+          -1.0137611192915692,
+          -0.16137288384085657,
+          -0.7870527532635258,
+          -2.354154429163576,
+          -0.2470950956611535,
+          -1.1179094103202494,
+          -2.507429703490965,
+          -1.469645071529707,
+          -0.6496633667047893,
+          -0.6695796172977004,
+          -1.690157019547704,
+          0.05115738191298358,
+          -1.8556257062375812,
+          -0.662259784141608,
+          -1.4885429394906264,
+          -2.1279657743968667,
+          -0.1715878644280039,
+          -1.0734180464879086,
+          -0.6312933527125061,
+          -0.6315384728778342,
+          -1.0365265013740845,
+          -3.6709657422805906,
+          -0.9112510080209119,
+          -0.9064451384110707,
+          -1.223966860760664,
+          0.5067894804203295,
+          -1.8243010790666356,
+          -0.06670015606618096,
+          -1.5401179502831788,
+          -0.901024413310904,
+          -1.7157794703313511,
+          -1.3997745592309454,
+          -0.6980900491428021,
+          -0.9947865662596989,
+          -2.443043736866321,
+          -1.3494151898962374,
+          -1.1644391318478815,
+          0.923064162937504,
+          -0.73741404480246,
+          -2.9562865773991227,
+          -0.9385921832045007,
+          -1.1961219609802238,
+          -1.0353904460368684,
+          0.16516701655480537,
+          -0.1935019829589062,
+          0.4302214143380545,
+          -0.4016688147607004,
+          -2.0099030576594386,
+          -0.8984002749332105,
+          -2.5809816366176657,
+          -2.083073625304378,
+          -1.9374005999390265,
+          -1.7985672759126978,
+          -0.17057708593187448,
+          -0.7680928224197949,
+          -2.63891236750503,
+          -0.7350360386733581,
+          -2.2611352793396806,
+          -0.46785355603539913,
+          -0.7446095725436901,
+          -1.6933204044945223,
+          -0.7011974428488502,
+          0.9022536941888848,
+          -2.2145955821121492,
+          -1.9937384162840375,
+          0.1812481664172283,
+          -0.017788167968911583,
+          -0.16186711370841578,
+          -1.2501858865518047,
+          -1.9069060058877554,
+          -1.0786091838457312,
+          -0.7178994074419702,
+          -0.9867438981996715,
+          -1.2698313412001445,
+          -0.36209975186706556,
+          -2.0918303355243255,
+          -1.2278318769822971,
+          -0.5175097450431647,
+          -1.8633500290574978,
+          -1.455245107062224,
+          -0.7817203454963412,
+          -0.8234330815456707,
+          -1.9011384082626028,
+          -0.9406531984243014,
+          -0.6352172655960316,
+          0.10422680555431318,
+          -2.404605234401724,
+          -0.4748948847606912,
+          -0.47488222284804094,
+          -0.4179475727336699,
+          -0.0273458191074748,
+          -1.3214333145291355,
+          -1.7879353107972404,
+          -1.494853261402981,
+          1.3599142248647742,
+          -0.3003222122947081,
+          -1.4811589662850486,
+          -0.9344631931369604,
+          -1.7292891586196704,
+          -1.744646587782881,
+          -0.9535371502342876,
+          1.185861978332658,
+          -3.064737696713975,
+          -1.6747255575902749,
+          -1.8080159169287429,
+          -0.4851393288840796,
+          -2.223764319217001,
+          -1.484231329829504,
+          0.799971985058161,
+          -2.285536459926073,
+          1.1636480942899503,
+          -2.549076329058835,
+          0.29168149706937396,
+          -0.5475031191063048,
+          -1.9450535974648924,
+          -4.304639834380183,
+          -1.2575063043000383,
+          0.6643278246064137,
+          -1.4486481326798681,
+          0.4694527243700082,
+          0.18590565540838222,
+          -2.0006988766229616,
+          -0.7970483362234282,
+          -0.9288331611128714,
+          -0.8842631903968872,
+          0.6170262427409237,
+          1.174737939944587,
+          -1.1547527614026065,
+          -0.7135142455622658,
+          -1.2121914074933542,
+          -1.6008878776213908,
+          -0.636004231485098,
+          -0.08281136004757395,
+          -0.17124499279449723,
+          -1.8452033257883422,
+          -0.23809548662058877,
+          -1.0213102569979595,
+          0.3026454983875708,
+          -0.4422058999116508,
+          -1.22193725475454,
+          -0.15844530529951006,
+          0.33100322078628164,
+          -0.30471364510548593,
+          -0.6694956234692433,
+          -0.901107592784293,
+          -1.8342183409867947,
+          -2.0256867959900875,
+          0.1807539840621708,
+          -0.3636775395353007,
+          -1.0124862188601997,
+          -0.9227133289692666,
+          -0.005814955617387096,
+          -1.8416371232221702,
+          -0.5789950073545347,
+          -1.8382962547516235,
+          -0.750243900288657,
+          -1.4802479354362925,
+          -2.4763969448914,
+          -1.7324910731616647,
+          -0.6830136430327773,
+          -0.1255716181953409,
+          -1.0193880083130513,
+          -1.0188751004594534,
+          -0.6709717225101377,
+          -0.47049934524336445,
+          -1.110886601219378,
+          -0.29636247579069286,
+          -0.7715261148560371,
+          -0.9004141614173563,
+          -0.9750106085967053,
+          0.47951602524198833,
+          1.1952809729140297,
+          -0.11062395599938224,
+          1.232617443521173,
+          -1.856139885521003,
+          -3.1654216324144264,
+          -1.7739750442479512,
+          -0.6515620920159575,
+          -0.030993699166081634,
+          -1.9159802630368943,
+          -2.346046095197731,
+          0.20250025569278596,
+          -2.746629331218697,
+          -1.116779301283268,
+          -2.625601532201017,
+          -0.9946537767020888,
+          -1.4588650453923098,
+          -2.088494292130994,
+          -0.8773523764785791,
+          -0.27447179570814784,
+          -2.56410880905369,
+          -0.6611886628620245,
+          0.5814797329800034,
+          0.20235452437152213,
+          1.1010391821108438,
+          -1.2538318367712784,
+          -0.34200581211404624,
+          -1.9837894164240817,
+          0.07911855269920864,
+          -2.206393303935688,
+          -1.2746742133096556,
+          0.5317307827230062,
+          0.6604578524741536,
+          -2.736686570925301,
+          -0.6084253940167441,
+          -3.1078642402020433,
+          -2.329974180411324,
+          -0.6262341114880894,
+          -1.5239139220662983,
+          -1.0639045841949897,
+          -2.004998729428195,
+          -1.5406250902215892,
+          -1.1091229923003956,
+          -1.5644741259411896,
+          1.0031389751716797,
+          -1.7134063760365197,
+          -1.1145242612164914,
+          -0.37382525753951656,
+          -1.5408733808858823,
+          -1.2804294430405814,
+          -2.5448157203630886,
+          0.6771297341334965,
+          -0.41217033123138,
+          2.139078359612575,
+          -1.1304186060494177,
+          -2.637855179697552,
+          -1.7711387366080031,
+          -1.6592145247273575,
+          0.7201282302691194,
+          -1.0081285205186308,
+          -0.9211190054549923,
+          0.5529038398732038,
+          -2.0575261464152526,
+          -1.8927381348876962,
+          -0.05571404757486542,
+          -2.4259120370542124,
+          -1.663363779125245,
+          -1.603976270480313,
+          -0.9505296886334489,
+          -0.7242552661722035,
+          -1.2436199027030128,
+          -1.5880482275442156,
+          -0.48928899770608114,
+          -0.8987255727707906,
+          -2.702045099310064,
+          -1.675579222345946,
+          -1.778182219493215,
+          -2.6593637636376872,
+          -0.7351994652019682,
+          -0.3489219321336442,
+          -1.067371775280064,
+          -1.6645806535922598,
+          -1.8772359644020793,
+          0.025967608802522024,
+          -0.14796863292710594,
+          -0.4598372157964057,
+          -3.5199695102512814,
+          -0.4116450947391831,
+          -0.621597570078094,
+          -0.9117172294318181,
+          0.19061426101105705,
+          -0.6557966103275117,
+          -1.4971397859231605,
+          -0.5978356223981992,
+          -0.7045595334689991,
+          -0.11184327189387411,
+          0.2246997733640923,
+          -3.0779734652288195,
+          -2.9073692032842064,
+          -0.9812215090060377,
+          -0.6666806193569559,
+          -0.15437807657735658,
+          -0.7597787616405445,
+          -2.507495215210043,
+          -0.6548853906087273,
+          -0.3548461321417279,
+          -0.8145779388308519,
+          -1.4683422154696608,
+          -0.15342965347429982,
+          -0.9270345165953309,
+          -0.511655273707761,
+          0.05782568045812009,
+          -1.2751514663558248,
+          -1.4529799770736789,
+          -0.228210920520592
          ],
          "y": [
-          -9.414474788018724,
-          -8.871191361210341,
-          -10.450578211025551,
-          -10.378230466454784,
-          -8.551892951202731,
-          -10.566159071880794,
-          -9.106838763841882,
-          -9.878542080730416,
-          -9.656497066263421,
-          -9.040546960121496,
-          -9.573336668990788,
-          -10.825538004137702,
-          -9.346632327572756,
-          -10.896713718511824,
-          -8.806829382964203,
-          -9.808194953812631,
-          -10.219981037832476,
-          -8.894498554783905,
-          -10.773862578345808,
-          -10.144035922184901,
-          -9.410435297143513,
-          -10.200657833455002,
-          -10.123562154543103,
-          -10.319021319194338,
-          -10.611665634715882,
-          -10.336915094910172,
-          -9.295841914749424,
-          -10.620145369526526,
-          -10.526532153518465,
-          -10.64415964691545,
-          -11.49878863656655,
-          -9.692509880329242,
-          -9.691373974913436,
-          -9.151996461158149,
-          -10.395890983285195,
-          -10.1439123147501,
-          -10.971698511560698,
-          -9.300178350894111,
-          -9.716078478768639,
-          -9.209489230152926,
-          -9.933029743847793,
-          -10.148441757913996,
-          -10.475337785881692,
-          -9.856628810604155,
-          -11.566953035995594,
-          -9.542017128227553,
-          -11.173389259134197,
-          -9.221208729416698,
-          -10.42037311078614,
-          -10.63004058085372,
-          -9.840341440949057,
-          -10.557631750274433,
-          -10.241948990735336,
-          -9.530918308723939,
-          -9.360298546939651,
-          -10.163175258113192,
-          -10.132551171482845,
-          -9.345667510782276,
-          -9.652544350647087,
-          -10.320925697850564,
-          -9.059683411616877,
-          -10.3631092770612,
-          -9.925490090932628,
-          -10.223615518392304,
-          -8.789496953978103,
-          -9.928306737707604,
-          -9.22183530988362,
-          -9.901146121006233,
-          -10.54612758449752,
-          -10.62654444411121,
-          -8.630846940841982,
-          -10.157564599911547,
-          -9.85223249520192,
-          -10.702384393632272,
-          -9.469861410927129,
-          -11.255630513580112,
-          -10.153806812899207,
-          -11.094582618214192,
-          -9.503046476915351,
-          -11.114617857940381,
-          -8.70142684192491,
-          -7.716683471587367,
-          -9.954876986397599,
-          -10.137919441712318,
-          -8.642828805368351,
-          -9.565712150300886,
-          -9.312922584408017,
-          -9.68192608243923,
-          -10.025084763152542,
-          -9.410372170193295,
-          -9.453350835901151,
-          -9.799353759689584,
-          -10.109427123573232,
-          -9.93665322881282,
-          -8.928594624685262,
-          -9.617146143899348,
-          -8.570009010114834,
-          -8.861288787333415,
-          -9.889564368917556,
-          -9.986902372033818,
-          -10.837941874668514,
-          -11.994142555929045,
-          -8.59545895740515,
-          -10.024454357766208,
-          -9.258776455003096,
-          -9.100167172465618,
-          -9.77879032781034,
-          -9.44467854139928,
-          -10.316704617947394,
-          -9.522330726053223,
-          -9.560447232849317,
-          -9.257034570268786,
-          -10.067163524645677,
-          -10.436328570102539,
-          -10.322454764615793,
-          -10.380260512786517,
-          -10.22870988970119,
-          -9.25617640393623,
-          -11.762695507004745,
-          -8.886624255348833,
-          -11.170701602120303,
-          -9.947857397607988,
-          -10.210423217810861,
-          -10.956894413085397,
-          -8.799677278512274,
-          -10.821378689165925,
-          -8.716675608671542,
-          -10.530443372574004,
-          -10.867375927527894,
-          -10.458422747941665,
-          -10.298311733871657,
-          -9.716033510956057,
-          -10.33164307020017,
-          -10.143499845233418,
-          -10.019271414460574,
-          -9.614824480936589,
-          -12.14785183284104,
-          -11.955193835184003,
-          -10.572098182121207,
-          -10.536425916141292,
-          -10.28084316549324,
-          -9.330586678103275,
-          -9.498023962376065,
-          -10.272375590858283,
-          -9.107564648487077,
-          -7.8142719897682715,
-          -9.862562071719932,
-          -9.233016808812426,
-          -10.195229905097822,
-          -8.66397370199361,
-          -9.291651185001164,
-          -9.370088781345583,
-          -8.799269892784944,
-          -9.376311859962808,
-          -11.917634772437854,
-          -9.789308648356483,
-          -9.071104796971694,
-          -11.465978510633116,
-          -10.833110652481466,
-          -10.32955352448953,
-          -10.012830806483327,
-          -9.993784528815482,
-          -8.92449005174953,
-          -9.799509979954147,
-          -10.425370145326802,
-          -9.57776610224608,
-          -10.45920768352574,
-          -10.028364796321426,
-          -10.581603136466175,
-          -10.750562860304376,
-          -9.390151526655327,
-          -10.21127916292504,
-          -11.918367401160438,
-          -10.337215111705689,
-          -9.501814622944902,
-          -10.34522352678397,
-          -9.450106197797735,
-          -9.692235391897006,
-          -10.048978560554309,
-          -8.606716607866737,
-          -9.649977390060437,
-          -8.801548061712692,
-          -9.885830542254281,
-          -10.214172578036486,
-          -10.348225102231101,
-          -9.909436845161611,
-          -11.563352455320889,
-          -8.854025232420838,
-          -8.500964375128317,
-          -9.577556477964901,
-          -9.457655970538957,
-          -11.101842350787166,
-          -10.49484630290039,
-          -10.487199955566192,
-          -10.074042304467573,
-          -11.361870707123296,
-          -9.373573768148171,
-          -8.44853188890717,
-          -10.36816952280717,
-          -9.528227299441554,
-          -10.820070800202673,
-          -10.743744176317092,
-          -10.805521937009434,
-          -10.304161235115858,
-          -9.874955736989037,
-          -9.514172270604757,
-          -10.292719263007548,
-          -8.506294502333244,
-          -10.19515195503517,
-          -10.94835154493298,
-          -10.758822321375746,
-          -9.128186293114865,
-          -10.2543499550349,
-          -11.032116184875823,
-          -10.821602466153806,
-          -10.629804931737185,
-          -9.670283786342408,
-          -10.838358333585235,
-          -11.476591959044786,
-          -9.52813722595488,
-          -10.334989830645384,
-          -9.117328141369685,
-          -12.00152638411307,
-          -9.823752341135135,
-          -10.07887588152502,
-          -8.691598193013018,
-          -10.254018260994274,
-          -9.74270488502755,
-          -9.934542093627789,
-          -10.178543159540638,
-          -10.27294019844016,
-          -10.282292069077485,
-          -8.990006098421818,
-          -9.595141251332635,
-          -11.098375172150352,
-          -10.277346157525976,
-          -9.564182504169906,
-          -9.470184944123638,
-          -9.143724921957114,
-          -10.20801349441753,
-          -11.4623092094582,
-          -11.426026356164147,
-          -10.536291466744077,
-          -10.012819645328548,
-          -9.384713414382594,
-          -10.366739754097074,
-          -9.707893910837672,
-          -10.284950901862226,
-          -11.180931273550659,
-          -9.720692829036523
-         ],
-         "z": [
-          -11.321524938519316,
-          -12.801262789411203,
-          -9.443348977909295,
-          12.276416273766413,
-          7.957509814454749,
-          10.717255024333925,
-          -11.809995146110113,
-          12.480088129406685,
-          -11.189567081495237,
-          9.079215754748889,
-          -11.768282272635464,
-          11.366739597877425,
-          -11.199513029518865,
-          8.875375362387416,
-          -12.155323000767222,
-          -11.476167476623075,
-          -9.570579984644517,
-          -12.504211384531624,
-          12.432420136478394,
-          -9.896479783859041,
-          -10.618507308741073,
-          8.368629651495738,
-          8.92886543670606,
-          6.65647037324389,
-          -8.39676706008761,
-          11.725425865966656,
-          10.125305734705178,
-          11.744791415583334,
-          8.751916490581266,
-          12.918620475944259,
-          -7.294123804324063,
-          8.052375864222402,
-          -10.918901355111087,
-          -11.218901126445234,
-          10.46323141874637,
-          -9.160726487063961,
-          11.73614495219766,
-          -11.592551662221403,
-          -11.204947862928362,
-          -11.4548968631615,
-          11.296840827299933,
-          11.103978879218362,
-          -8.934199766823536,
-          -10.722950284748066,
-          10.827591330228351,
-          -11.358411912053455,
-          -7.850119472313121,
-          8.841149370576568,
-          -9.026958338908068,
-          11.20421068757184,
-          10.066607706455365,
-          -8.734744791196928,
-          -9.736049455155692,
-          11.713198401824245,
-          11.556180600423172,
-          -10.110098973425194,
-          -9.428358427950318,
-          9.629238096214348,
-          -10.827126601023144,
-          8.599922842446958,
-          -12.17551493359106,
-          9.57740681525652,
-          -10.563471373974647,
-          -10.233268911945856,
-          -11.916086139250753,
-          -10.842285721666777,
-          10.797277846462809,
-          9.328888652371829,
-          8.705866720897074,
-          10.879571485622831,
-          7.026399651389278,
-          7.928388201237649,
-          10.24916580783286,
-          -8.127451279294524,
-          10.993028958170054,
-          11.445567404435337,
-          -9.606687278750488,
-          11.757193133703765,
-          -11.728682328427489,
-          8.512346307167302,
-          -12.823472798471979,
-          7.990700514405256,
-          10.8284783587431,
-          -9.484952942243154,
-          10.578681560898644,
-          -12.070046589606402,
-          -11.253070971657024,
-          11.904119875401834,
-          -10.218701999730635,
-          8.588001419095768,
-          -10.899294398675806,
-          -10.749691254759664,
-          -10.062447764537692,
-          -10.898770782876696,
-          8.116230135719924,
-          -11.100924150156633,
-          -13.223691779312556,
-          10.81975937186296,
-          -10.5444660857534,
-          -9.405443661344334,
-          -8.180201901522345,
-          10.294535092665855,
-          9.058444553630562,
-          10.822723599753745,
-          -11.839381159347816,
-          9.750582780873595,
-          11.178796737447026,
-          -10.917602950066112,
-          10.742286341946995,
-          -11.61116934350886,
-          -11.269446607015706,
-          -11.632003541074546,
-          -10.842909169916142,
-          9.794787677943035,
-          8.80484587102878,
-          -9.058212594463567,
-          8.28928414301226,
-          6.55120589713982,
-          11.214670659757244,
-          8.968187247024316,
-          10.58181957363036,
-          -10.395713368494262,
-          -9.94673807055788,
-          -8.276210687075523,
-          7.848618813681933,
-          -7.917863297227567,
-          8.607843744394374,
-          -9.00521679296003,
-          12.554291324068767,
-          13.676908094415587,
-          -9.670653850743895,
-          11.128491693785353,
-          13.076224723285005,
-          -9.883582130267433,
-          -10.653175280859925,
-          -11.232372647774847,
-          12.322443103528013,
-          12.545028435458685,
-          9.548805019636427,
-          -9.12537949089612,
-          -8.631320464792152,
-          9.794583435742062,
-          -10.347601731320784,
-          9.585642141065557,
-          -11.842303468299733,
-          9.103759281257616,
-          10.7700942568796,
-          -12.270960066334672,
-          -10.09195943557468,
-          -12.312210183443689,
-          11.206598189621786,
-          6.9376483588420275,
-          12.935765755386788,
-          -12.161713216010455,
-          8.390449364267258,
-          10.396769501072288,
-          10.895533990422319,
-          -6.1969989452209475,
-          10.860168625005397,
-          -9.474074557905421,
-          -9.80812220257779,
-          -10.064584339303849,
-          -12.653376430115312,
-          9.216979542393997,
-          -8.48208572423271,
-          -10.763220978198861,
-          -8.799211400652728,
-          -9.383354949152235,
-          8.091757382928938,
-          -9.038513388836483,
-          -11.067140858014149,
-          -8.803626630529315,
-          -6.310849379879237,
-          -9.066928419511902,
-          11.135351067165402,
-          10.268810691361931,
-          10.25555640116887,
-          -10.93729705051776,
-          9.651307660282958,
-          10.689531930356686,
-          12.77063146426802,
-          12.032966580878544,
-          -10.49974851898372,
-          -9.207737812402513,
-          10.51370595396542,
-          10.019720318717642,
-          10.634597616204339,
-          -12.222446173402938,
-          10.551338465688364,
-          11.928282167731002,
-          -11.751800173496816,
-          -7.713160277210466,
-          10.679086498545972,
-          -8.90329900425013,
-          -9.93315573319499,
-          9.648521932023625,
-          -11.431496016307307,
-          7.382552670959727,
-          -9.233214729524102,
-          10.576572810233412,
-          10.672939925005284,
-          9.534220758522201,
-          -8.15575649389147,
-          9.920542450214995,
-          11.303358956582377,
-          9.358596218702933,
-          11.256208164944823,
-          6.333222524900375,
-          -9.572726476203577,
-          10.699562473308337,
-          -8.131191260644249,
-          -11.442660896621655,
-          -9.427199108103983,
-          -8.109930382540602,
-          10.985164962291801,
-          -9.458142041659576,
-          10.040388866077317,
-          -7.987457493449183,
-          11.658720048646018,
-          -11.331122333533527,
-          7.8712466281615985,
-          11.504657503622942,
-          -6.216531401718825,
-          9.33686394981652,
-          -10.002841384477758,
-          10.877902828695435,
-          -9.334866057093478,
-          -10.278651667263299,
-          9.60461440880846,
-          -10.274895881129174,
-          10.38010634521988,
-          9.8377585427967,
-          10.674485896290548,
-          -10.734441070993068,
-          10.472047206564222,
-          -9.136907602409456,
-          -11.611588400068984,
-          -10.938115962811821,
-          -11.726770512569514,
-          10.713861478716176,
-          -6.094073820551628,
-          11.388061599053602,
-          12.185969061523254,
-          -10.51342130862381,
-          -11.350944228822888,
-          9.318484448367169,
-          9.984172782837927,
-          -9.261102770447444,
-          9.596600535038393,
-          -10.670365779564165
+          2.552807776827515,
+          0.7612852525091833,
+          1.78243943191413,
+          1.5531680495503397,
+          0.5251644081689545,
+          -0.9506882485954029,
+          0.4267187576494903,
+          1.3203914223008613,
+          -0.43991673009475285,
+          0.769809374554431,
+          -0.45260452660519124,
+          1.1130913220135743,
+          1.3830435773608067,
+          0.702603122830946,
+          2.8884934905589112,
+          -0.07839104348993553,
+          -0.2447132969779533,
+          -0.9979851317910255,
+          1.200710220306775,
+          1.1747188333923644,
+          0.693009195994847,
+          0.26608156747776024,
+          2.077790830575932,
+          -0.7975107005210367,
+          0.6073886816906006,
+          1.623635639325664,
+          1.949488288285448,
+          0.6847419767295453,
+          1.9946187552845691,
+          0.8107110628275309,
+          -0.21959457377008107,
+          2.382756913627664,
+          2.0231537363450838,
+          0.34226701615787414,
+          2.5681078945399336,
+          2.5952351994214133,
+          1.8379721482268463,
+          0.6951465283635245,
+          -1.0264293930860768,
+          1.3640947522553044,
+          0.4715966846957126,
+          0.4884327210803422,
+          1.3351787737925158,
+          1.5233027168688642,
+          1.9875837088524717,
+          0.6659314804182648,
+          -0.4921292471065284,
+          1.2661593632699975,
+          0.7608262743399479,
+          0.5711303191280448,
+          0.1820367948942414,
+          1.4119507638380462,
+          1.1779911170396602,
+          0.9240985352530208,
+          0.9729677315134981,
+          3.511402841108502,
+          1.3074431248259508,
+          -0.1915277548813561,
+          1.7666346499360512,
+          0.07283241624362291,
+          -0.42925972402907164,
+          3.2332828974050525,
+          0.4226301507963558,
+          0.4866805086810414,
+          1.0699035019131666,
+          1.4828519981028787,
+          2.5802383568237715,
+          0.67164161301441,
+          -0.2549298851473636,
+          2.3326997010160495,
+          1.188243776173108,
+          1.7971088881084862,
+          -0.3462738692440126,
+          1.302791247495757,
+          1.3532218831504959,
+          1.2367946666515843,
+          0.27168175158745234,
+          1.4830971903886332,
+          1.6693903898871771,
+          1.8024734962155942,
+          0.16327189458591673,
+          1.4208515222313192,
+          2.9338786315347423,
+          0.2315269639882257,
+          0.16823918481948386,
+          1.3478220977392508,
+          1.8433561407613523,
+          2.4819532324972444,
+          3.7733532723571126,
+          0.1260835012724183,
+          1.4919056020748567,
+          1.7279604632963035,
+          0.9257471536256038,
+          -0.5444651602204753,
+          1.8731429014973497,
+          -0.27009516940248,
+          1.3928510142282104,
+          1.1567307029481497,
+          -0.1653173834293984,
+          1.5717488531202117,
+          2.074405741129612,
+          0.043838826168330014,
+          1.5238313726053847,
+          4.928059187773512,
+          2.157767951660004,
+          1.6641270993666382,
+          1.7738084076264682,
+          0.7585511717343343,
+          1.0834749232427927,
+          -0.903773521087827,
+          -0.6442473114102614,
+          2.110241502119893,
+          -0.09881658955182338,
+          1.6928850837823122,
+          1.2206907368557576,
+          0.33565971613181744,
+          1.6463132574799575,
+          1.190099825541074,
+          1.8690999102410073,
+          0.8830202586996528,
+          1.882682235466317,
+          0.6589586749157688,
+          0.33389702841293145,
+          1.4128998178251149,
+          1.93580776728967,
+          2.0526517777328186,
+          0.5062982967878642,
+          0.27849434795201944,
+          1.7897795156802525,
+          0.9393108182204754,
+          -0.04441622681081059,
+          -0.27217954434539915,
+          -0.45810316476497603,
+          1.1332967862071726,
+          -0.4639357891920377,
+          1.0104331354143252,
+          1.4711384123666083,
+          0.38804782406996385,
+          0.6071528426005908,
+          1.675076497250807,
+          -0.26201697541838986,
+          -0.9902545596168388,
+          1.5998198457023207,
+          0.3651256060832385,
+          0.4973600273819062,
+          1.8662133167728099,
+          0.29354279981304765,
+          1.3133077686066916,
+          1.6419391964906824,
+          0.42886643227029153,
+          1.6223040808567333,
+          1.119621340625834,
+          0.3968623469408632,
+          0.7938541245296371,
+          2.1202598777595267,
+          1.8294151844699558,
+          1.0214145037888633,
+          0.6836669809837947,
+          0.8673124193383595,
+          1.606793395181075,
+          3.1332971380364594,
+          -0.23792814207779833,
+          1.8071410961759464,
+          1.6406307724139753,
+          0.08520272273479135,
+          0.30959858246919625,
+          0.8500673872704204,
+          0.6723304981965323,
+          0.4252536377408258,
+          1.2484517263571477,
+          0.4831451912686371,
+          1.2365869229846154,
+          -0.4349821740260178,
+          0.7823795799371092,
+          2.5042020336181343,
+          0.8369343896335049,
+          -0.022130582245448727,
+          0.7056975754757933,
+          0.1565952322104186,
+          2.562706662605917,
+          1.409565894912369,
+          0.5909349601090006,
+          1.0128386044309177,
+          0.21187651122910722,
+          1.5077350363416508,
+          1.978026262953183,
+          0.21764943860497443,
+          1.186926665378119,
+          0.17589805727382235,
+          0.38888817096876016,
+          0.46396554017829517,
+          1.1533342503065336,
+          2.9128532888136243,
+          0.4118168601726947,
+          1.5015370590878359,
+          2.8672670155427804,
+          0.5216511362393622,
+          2.3803429674019267,
+          2.2620178044634534,
+          0.388906138009781,
+          1.0478991472497579,
+          1.6350277472739052,
+          0.8548367448795889,
+          1.5244970207691693,
+          -0.14663082867730282,
+          2.3026576576741453,
+          0.2368792312733652,
+          1.1179362774510895,
+          1.0688385868288017,
+          2.7896608524518265,
+          1.9905668769617677,
+          2.3953907188398746,
+          1.699464976282151,
+          -0.7931259459169793,
+          -1.0791027641775046,
+          1.7315714726893894,
+          1.075543464085139,
+          -0.40708487631443435,
+          0.9433662456000896,
+          0.9666660119049412,
+          0.9091375065010157,
+          1.6827658285069114,
+          0.041743905839028095,
+          -0.07992301476550256,
+          1.9738170378020872,
+          1.5139015140680439,
+          0.19162510518612685,
+          -0.055483136059492955,
+          -0.22129851852582316,
+          1.0359530166200444,
+          1.2181635954639756,
+          0.7747100549907235,
+          1.772318322073085,
+          0.4129234969687591,
+          -1.3469277842493335,
+          2.393599070630856,
+          0.7460948665540348,
+          1.3173356441309894,
+          2.14146457595828,
+          0.02577705814847564,
+          1.2074417088719134,
+          -0.4500612785711462,
+          -0.10269417500820066,
+          1.8988773694694152,
+          2.508879657525946,
+          0.12187617317272992,
+          1.5494466857121187,
+          0.8059398649896761,
+          -0.4098359050560645,
+          2.94674910413021,
+          1.573976278383325,
+          0.5033504556608888,
+          0.11911668663533681,
+          0.15280334296144582,
+          0.9487796468877413,
+          0.07469186736238043,
+          1.7701604568513845,
+          0.003331825692687307,
+          1.7660780671309375,
+          1.5539838426647483,
+          1.5817548791384382,
+          -0.8401707296654666,
+          1.0490250921936797,
+          0.07800238959968253,
+          -0.6940057105190329,
+          -0.23469370278152968,
+          1.0483253989550818,
+          0.6079257164987355,
+          0.41182887675176294,
+          -0.1517946165447588,
+          2.469753830215397,
+          0.18752403650845118,
+          0.7929847184742014,
+          0.3842058374135475,
+          0.8412790000309315,
+          1.2593952196031661,
+          0.5800701126112735,
+          0.55898453654688,
+          0.5707845299348699,
+          3.1159785454050217,
+          0.6676021326509226,
+          0.5839460335635773,
+          -0.02779617662763556,
+          0.6416138072523458,
+          2.7092146190780078,
+          0.7766156693449094,
+          -1.254366904889825,
+          1.7859369682853086,
+          2.1661164524103906,
+          0.5765924747867328,
+          3.315088908828814,
+          1.2530737366402531,
+          0.13353967392976251,
+          0.12717822510538623,
+          0.5130035075308852,
+          1.3401857880476178,
+          0.48001188084454294,
+          0.002099726969374771,
+          1.3846773832672286,
+          0.05980471697328327
          ]
         },
         {
          "marker": {
-          "size": 1
+          "size": 3
          },
          "mode": "markers",
          "name": "Class 2",
-         "type": "scatter3d",
+         "type": "scatter",
          "x": [
-          -9.676273632184035,
-          -10.849642225290953,
-          -10.091468610410631,
-          -9.964544157014918,
-          -10.175188756327074,
-          -9.102720985767762,
-          -10.597755575694224,
-          -10.098997820804788,
-          -10.038528874714887,
-          -10.820774808377,
-          -11.327334941633609,
-          -9.459068869207341,
-          -10.36204771518624,
-          -10.831847107696483,
-          -10.171414144190335,
-          -11.733392053565279,
-          -9.036897551524712,
-          -8.732157845717888,
-          -9.150015285968479,
-          -10.391997098595278,
-          -9.399656014120204,
-          -9.54360489295846,
-          -10.667162539625634,
-          -10.77300311357224,
-          -9.227768985598354,
-          -9.733288918882446,
-          -9.152068917215413,
-          -9.27157687823604,
-          -9.82755318038457,
-          -9.745185560989125,
-          -10.893196538338742,
-          -11.298596777354335,
-          -8.803569264776241,
-          -9.473521497669722,
-          -10.22797692322168,
-          -8.974115783589895,
-          -9.91911044974907,
-          -8.973765753134773,
-          -9.327260355018357,
-          -9.837918556799313,
-          -11.203406797880204,
-          -10.688901059419676,
-          -10.302313523374293,
-          -7.809224579049461,
-          -8.579687115249774,
-          -10.568593191283693,
-          -11.703169761581194,
-          -9.427585035030654,
-          -9.553374181349355,
-          -8.926247511330502,
-          -9.529498610434047,
-          -8.550696697298383,
-          -11.140942087716333,
-          -9.859055387010821,
-          -10.048640945577668,
-          -9.609015395400773,
-          -8.072507013419434,
-          -10.485085409469706,
-          -11.585502248834628,
-          -10.91087774222233,
-          -10.672848554462526,
-          -10.56363218908378,
-          -8.099499906760277,
-          -10.194901433260148,
-          -8.840456360345353,
-          -8.370488295475596,
-          -9.540095810351394,
-          -8.938156753722991,
-          -9.999460095885805,
-          -9.756052175675745,
-          -9.108651339369004,
-          -10.457300790983806,
-          -9.851474584939657,
-          -10.976586511962841,
-          -9.450365635639534,
-          -8.868311264933986,
-          -10.792204403571539,
-          -9.9992406039877,
-          -11.861817860605653,
-          -10.740264921570397,
-          -11.014283298321445,
-          -10.50513193145921,
-          -8.830611381207271,
-          -10.308987773531937,
-          -9.262969774921398,
-          -10.547193093411712,
-          -9.533505596253876,
-          -10.189722215107981,
-          -10.5240329890633,
-          -10.957537602506829,
-          -10.187977084116824,
-          -10.33913688407543,
-          -9.388332195191216,
-          -10.315951224247843,
-          -9.553703994237454,
-          -10.620098072427027,
-          -10.276027856557441,
-          -9.58819223801995,
-          -9.81447365701899,
-          -8.77763770827911,
-          -9.199123037116468,
-          -9.297921880953,
-          -10.488255991691034,
-          -10.75217156274189,
-          -10.354091927595604,
-          -9.876900951835177,
-          -10.173351832229374,
-          -10.128064622764237,
-          -10.382688250735011,
-          -9.792534290050144,
-          -9.760453756598006,
-          -11.102850017207976,
-          -9.734848187448918,
-          -10.292176323860257,
-          -8.054754649507467,
-          -11.05145983639285,
-          -10.245082609016233,
-          -10.553416993309597,
-          -10.901669226823909,
-          -10.15392003833856,
-          -10.321666923585354,
-          -9.346219103957036,
-          -9.1417298583824,
-          -9.307199876334817,
-          -10.052865804417749,
-          -10.735334472056044,
-          -9.416274225643862,
-          -10.982976101706189,
-          -11.545708794570466,
-          -10.292677358296775,
-          -10.098867213134392,
-          -8.786150187845346,
-          -9.369156780994016,
-          -11.389387906512127,
-          -8.462531910397226,
-          -9.792146628303563,
-          -9.878216663296417,
-          -10.945238442051567,
-          -9.197553442038746,
-          -12.983134319126071,
-          -11.209009583685212,
-          -10.449655614069439,
-          -10.752324004713916,
-          -11.156280896362595,
-          -11.771072954379944,
-          -10.584006234116517,
-          -11.68335437991633,
-          -10.846993200736595,
-          -9.003564303409751,
-          -10.3667549284234,
-          -10.290391699611508,
-          -10.039327013926856,
-          -9.220741911612711,
-          -9.534231867586596,
-          -11.367648167877757,
-          -10.127868067555282,
-          -10.839390331197233,
-          -9.30307707052357,
-          -10.485753897244958,
-          -9.376110140115614,
-          -8.62310700884132,
-          -11.266226116930454,
-          -10.716828955053282,
-          -10.443343863521271,
-          -9.769605606961306,
-          -10.184572000296246,
-          -9.380403668951967,
-          -10.498009643507492,
-          -10.771374653608872,
-          -11.922928586287947,
-          -10.284242242710937,
-          -10.30438439640996,
-          -11.535104882098578,
-          -9.404753671900114,
-          -11.719411802657124,
-          -10.985069757265133,
-          -10.386045683574537,
-          -8.966967805614681,
-          -12.022834651572413,
-          -10.538493038683537,
-          -10.06191172854636,
-          -11.786122247732706,
-          -10.54117432141382,
-          -8.27328544630274,
-          -10.769681140093606,
-          -10.099716366914395,
-          -9.379049167884114,
-          -9.911490074084888,
-          -8.947402594494736,
-          -8.686844506392994,
-          -9.50915703371908,
-          -11.236669306025576,
-          -9.588447855638343,
-          -10.003438213270753,
-          -11.169590275702175,
-          -9.775705321226715,
-          -10.488508067312193,
-          -10.109108919713332,
-          -9.278624358959219,
-          -10.00573581734842,
-          -11.771599036906895,
-          -9.594747336628316,
-          -9.836861367667883,
-          -11.10875750643168,
-          -9.779969105866392,
-          -10.360276610409633,
-          -11.309022954625478,
-          -9.29164347232242,
-          -10.529710299055742,
-          -9.342236942515846,
-          -12.02760870184944,
-          -9.458970224003792,
-          -9.659754510470645,
-          -9.805349510720921,
-          -10.511107379261405,
-          -10.182231765537805,
-          -9.872876047435573,
-          -10.279016378125945,
-          -10.704360958981223,
-          -9.703567026702494,
-          -9.017144714244589,
-          -12.587315959649743,
-          -11.934170427381554,
-          -9.656103488541273,
-          -8.759191567746377,
-          -11.119530379814414,
-          -9.008013070637293,
-          -9.975658424518356,
-          -10.581835410135975,
-          -10.866563847835103,
-          -9.03645363285775,
-          -9.561553112364892,
-          -10.90043067908741,
-          -9.327422168499321,
-          -9.374989175186267,
-          -9.57092104876612,
-          -10.76158841725035,
-          -10.577888728827794,
-          -9.234664189703235,
-          -10.184948077328333,
-          -10.249015722004867,
-          -10.819772120603051,
-          -10.612073439888452,
-          -11.24863973592269,
-          -10.095252420417243,
-          -10.505315039507803,
-          -9.716944792135276,
-          -10.939400259550126,
-          -8.399812175451382,
-          -8.940818127935238
+          1.8866082498868342,
+          1.4215182849085943,
+          0.21108185703795945,
+          -0.813497367552054,
+          1.667159659280641,
+          1.285442506847788,
+          3.4935707452886975,
+          1.111533655819166,
+          1.4904138107496794,
+          0.19407037450082942,
+          2.9188213953984317,
+          2.624336235678153,
+          -0.008953340223844641,
+          1.0568144326264175,
+          -0.7255552988467493,
+          0.8389027682672714,
+          -0.031892801216434785,
+          1.839265021006434,
+          -0.3151819109084486,
+          0.6576501174920419,
+          0.7353331797806998,
+          0.7494522255039451,
+          -1.749615534299814,
+          0.764550292341758,
+          2.885106448283962,
+          0.7258540612071562,
+          3.6236735269825084,
+          1.0142016341420486,
+          1.2019576672756567,
+          0.4151218889070385,
+          0.9666063455723156,
+          0.2732168247637744,
+          0.7400375281816716,
+          -1.7028009446354577,
+          2.2704483561887274,
+          0.6506122589315038,
+          -0.4350310312944903,
+          -0.13228956237488787,
+          1.9539725563328718,
+          1.7357820259731547,
+          0.46522443722556317,
+          -0.24602256347112283,
+          0.7549758163577688,
+          1.7248604897628894,
+          0.6319763088706551,
+          -0.10220002272261852,
+          1.6046974338320237,
+          1.3325094981474541,
+          1.9420933774779694,
+          0.46705682231138157,
+          0.28188514779766727,
+          -0.5870640198644554,
+          -0.30546400510075444,
+          -1.1226348004708178,
+          1.2151432309353802,
+          0.44442678377015554,
+          0.9616294727526091,
+          1.1164610006986082,
+          0.6292785276010582,
+          1.3138198364568425,
+          -0.3745448253972954,
+          1.1742061588614243,
+          1.0187943489755147,
+          0.4496870657683495,
+          1.1996743753189931,
+          1.4162348172739045,
+          2.0492774455348597,
+          1.2610355672733178,
+          2.69803740786033,
+          -0.8768665699796652,
+          0.3629651168885355,
+          1.5277801675044906,
+          1.1904183841916915,
+          0.37652594520118177,
+          0.058715915282322895,
+          0.005046703421156762,
+          0.03203868808814103,
+          1.502963136088941,
+          0.12485981101560784,
+          0.4131074387955832,
+          3.610138707152606,
+          2.171743647209712,
+          0.9643274227917812,
+          0.36077463022058376,
+          1.721589734315465,
+          1.6447724259636807,
+          1.6339674438929785,
+          0.2586460096690575,
+          0.9241112660554917,
+          1.181175368977971,
+          1.387631389687613,
+          1.5707353386959488,
+          1.8502268037648903,
+          0.9284624251053202,
+          1.4380180131919518,
+          1.2768886825458081,
+          -0.10219310282941407,
+          0.9596714731075057,
+          1.0288720503393245,
+          1.956628909578329,
+          1.0980001076936703,
+          0.5570086048409253,
+          1.2264768787280085,
+          2.280308373066427,
+          0.8094746855411853,
+          2.4752688545587866,
+          2.05201892045815,
+          1.2722715696615647,
+          1.083892786420229,
+          0.4725976481686802,
+          3.3438456373463272,
+          0.5457871184095457,
+          2.610455567650847,
+          0.57159778939222,
+          -0.3707368902257795,
+          -0.02377349011366281,
+          0.9646369618783419,
+          2.580815512635348,
+          2.003567637777463,
+          0.9495691875665639,
+          -0.14467321764071217,
+          1.1697066425164693,
+          1.2948224010090787,
+          0.3497910740405088,
+          0.3646759770219913,
+          0.3501508299610411,
+          2.4482776119027267,
+          0.15137040711058325,
+          0.43698002104488565,
+          1.2068905238787477,
+          2.5777616579189253,
+          0.3752302096163359,
+          1.2914545633992796,
+          1.671419974919805,
+          0.8195931420616769,
+          -0.40628735213374667,
+          0.9662253363683204,
+          0.4722684869666589,
+          0.9832560073379366,
+          3.57633841247756,
+          0.5009911529765766,
+          1.6952236711507815,
+          1.5953450114375296,
+          1.6022031745870402,
+          1.836524055225314,
+          2.0875300614562438,
+          2.4091826375333785,
+          0.8296144664054602,
+          2.2300983451662506,
+          1.375881522425785,
+          1.0293068349309868,
+          1.1948353919112524,
+          -0.3864437274134225,
+          1.6581045355597277,
+          0.6862041576122397,
+          1.2542595746568277,
+          0.9028412718471789,
+          1.619781958851671,
+          0.5448378207462009,
+          2.0946231445278727,
+          1.1355694658438618,
+          2.218411898662647,
+          0.4301502446386647,
+          2.5961327856951524,
+          0.43394534315078503,
+          -0.4763251265629218,
+          1.448617508766847,
+          -0.04119972022873264,
+          1.24856744780622,
+          -0.3053366082076525,
+          1.6629137579861955,
+          2.882742006911787,
+          -0.5553518791449321,
+          0.953522696607965,
+          0.7540473516560096,
+          -0.27600922773276704,
+          0.9162426211496735,
+          1.3494262314898626,
+          1.5809072356684015,
+          1.6552891236289664,
+          1.2003635052456445,
+          0.9085098145896808,
+          0.31038303523413113,
+          0.959056890579244,
+          1.1306090822070662,
+          1.8570796133229988,
+          0.5450928935684,
+          0.5388502943109512,
+          -0.6148709177955745,
+          1.801163937956586,
+          0.014117767461905073,
+          0.9963270249150906,
+          2.532792390662033,
+          0.7747155867763584,
+          1.2124570594441624,
+          0.7479898636136613,
+          -0.02120344801316909,
+          2.8328344696889127,
+          0.41765345336894144,
+          2.4267153039280083,
+          1.0607962488440814,
+          1.711874811107443,
+          1.9126958266600944,
+          2.07007332238514,
+          2.3431514435888765,
+          3.115835883584315,
+          2.7699049578735915,
+          0.3358456252698845,
+          0.6733893368163653,
+          1.5330578441434255,
+          0.9751692324971823,
+          2.761319686578081,
+          1.0387465132070703,
+          1.625513331384107,
+          0.7375912972405718,
+          1.4070286389085496,
+          0.5073663899893792,
+          -0.24973154404679532,
+          1.2288402475608662,
+          2.7168514483871444,
+          2.0997709465901413,
+          0.8239975318192139,
+          1.6650769414276665,
+          2.505409318279145,
+          0.3622064441414399,
+          1.503689347926916,
+          0.43893540962173905,
+          0.9739463018415786,
+          1.5542284965638484,
+          1.786786781769751,
+          2.171226096314043,
+          0.6304726988223317,
+          -0.3199947824761189,
+          0.5231544151462051,
+          0.952162041032683,
+          1.0783238945494464,
+          2.015745593248753,
+          -0.5870158206933125,
+          2.530102291982036,
+          0.6445311013187417,
+          0.672076416145537,
+          1.3894029640824084,
+          2.0504273130472086,
+          0.7358931232608006,
+          0.9269988096549721,
+          1.7418559848023505,
+          1.7469644831513285,
+          1.0801726470045145,
+          1.934243497206329,
+          2.017522968064111,
+          3.1292061142920953,
+          2.129849745713474,
+          1.6247547158807685,
+          0.3640352557523515,
+          0.8055894219251989,
+          1.8870790896814924,
+          1.1533598600881603,
+          3.450406599715809,
+          1.2050308878304377,
+          2.1271409151691305,
+          1.651218524632763,
+          2.6653680002402487,
+          1.3085525224536942,
+          0.9346076355867736,
+          1.3276403159079855,
+          2.645262171063544,
+          0.7510696717807555,
+          2.212726735288757,
+          1.609080295069173,
+          0.696618605227363,
+          0.8470105615328778,
+          0.8235443162410865,
+          -0.11770919874670893,
+          2.6256804500247872,
+          -0.010775818770707657,
+          0.34854542297183344,
+          2.6741194531417958,
+          0.29839510163073535,
+          2.000960734162379,
+          -1.5482735057184978,
+          -0.4167410597877599,
+          2.0425634878381853,
+          2.4113377940623995,
+          1.6063828382313508,
+          1.7737669825179785,
+          1.1062384193518644,
+          0.2312940733769283,
+          -0.726057106402157,
+          -0.007919807236668408,
+          1.1834113991538648,
+          1.9362713156216804,
+          -0.008977112410627708,
+          -0.0016967552555744447,
+          1.560806587889239,
+          1.1074357831805666,
+          0.3868745577567233,
+          -0.6241395711698932,
+          0.9799782474619091,
+          1.2282920503851606,
+          1.1276728625790868
          ],
          "y": [
-          9.388452459615683,
-          9.65291328321569,
-          9.225514733276121,
-          10.312921747013005,
-          10.13922630494194,
-          9.516575155227804,
-          10.449045708470436,
-          10.387845254801267,
-          9.72286556343689,
-          9.626081813725602,
-          9.638469043564841,
-          10.61422427531148,
-          10.384942151908799,
-          10.306563591246757,
-          9.811765654139371,
-          9.991845875905167,
-          8.845650260034951,
-          10.080738605206031,
-          9.868170700637982,
-          10.294017346595997,
-          9.694244451688006,
-          9.95788200666495,
-          10.41651198134106,
-          10.090237988795222,
-          8.375434581505052,
-          9.540972963129974,
-          8.89157759359244,
-          9.024990474702307,
-          10.525855210357518,
-          10.072035122070849,
-          10.32278360010552,
-          10.612785751657356,
-          10.11775036262446,
-          10.107571532016287,
-          11.703700471220415,
-          9.153271725055204,
-          8.836173773507435,
-          9.111568344442524,
-          9.571154848571105,
-          8.591746000616979,
-          10.442308093140827,
-          10.958601235074749,
-          9.930779598086131,
-          7.6774827833045425,
-          9.667564869901328,
-          10.418961569170998,
-          12.520988993398568,
-          10.207703491161903,
-          9.977735980784821,
-          9.23346885370601,
-          9.850327696538017,
-          8.828591239529118,
-          10.323779724692622,
-          10.006201876114167,
-          9.945263121233546,
-          9.056471693364719,
-          7.369968466864082,
-          11.638638628010677,
-          10.551929637426408,
-          10.254669617378834,
-          9.620817060112703,
-          10.05993686044434,
-          9.840031659903518,
-          9.03641367481536,
-          9.867271476020964,
-          9.23843391386628,
-          9.517333327318784,
-          9.19068159534645,
-          10.39282161624614,
-          9.844997131960637,
-          9.921319478471721,
-          10.29218943437155,
-          9.822540266094764,
-          11.681474081954889,
-          9.741135501580827,
-          8.663309429383476,
-          11.103467991616828,
-          9.879819323174049,
-          10.764786409821848,
-          11.260717361461243,
-          9.986732748845391,
-          9.370587855581178,
-          9.609973364428276,
-          10.086618423582793,
-          8.13955188044926,
-          10.835309788476783,
-          10.21911941141614,
-          11.266164997053519,
-          11.017155307270446,
-          9.903622753232293,
-          9.877049481935586,
-          10.48524223763911,
-          11.086054496377448,
-          9.6402454676144,
-          10.206627360875492,
-          10.51990232794008,
-          10.3138918901979,
-          9.965774444800154,
-          9.161685267472555,
-          9.668488316315768,
-          10.191161635342281,
-          9.742378959480464,
-          10.771236292327933,
-          10.224424819033208,
-          11.866416502201915,
-          9.496610904354808,
-          10.126430605437239,
-          10.325449465502265,
-          10.179251368155121,
-          10.454531865092074,
-          9.096860978629477,
-          11.162405393706342,
-          9.67557659249022,
-          10.033562116362301,
-          7.6119727427889625,
-          10.231664746830152,
-          9.978440689187012,
-          10.060395141421202,
-          9.198863310822022,
-          10.950860790320478,
-          10.616733179817539,
-          8.977058830781402,
-          10.147828147025358,
-          10.057523669156275,
-          9.82703995167496,
-          10.08240757777546,
-          9.533323475226181,
-          11.19948151660048,
-          11.310306642711883,
-          10.48459415182453,
-          10.275251296473497,
-          8.306788372794502,
-          7.794194167516263,
-          10.569267349237078,
-          9.038192376467748,
-          10.024708738880495,
-          9.694737083960632,
-          11.779648060303096,
-          8.41580917273884,
-          11.657308371326042,
-          10.242543258890207,
-          9.761414124960474,
-          10.159269276867162,
-          10.109249333073906,
-          12.785017356167986,
-          10.063730894705573,
-          11.06066260749208,
-          10.786124085561818,
-          9.882347151012018,
-          11.232995176276448,
-          10.897495741888164,
-          10.17968732583101,
-          9.906070887375837,
-          10.136166171563824,
-          10.382629016956995,
-          10.063012436023861,
-          10.184205542452904,
-          10.216242624785258,
-          10.689220170119421,
-          9.494428810417588,
-          10.056046261557707,
-          10.225423151919452,
-          10.844927009413995,
-          9.98741200827527,
-          9.55324783790259,
-          9.169346182057797,
-          9.883088519393688,
-          10.129641653330863,
-          11.930851753343887,
-          12.926885883882818,
-          10.008353946294765,
-          10.699690836059524,
-          9.37535162603345,
-          10.419190006260047,
-          10.739839794118707,
-          10.262651043306155,
-          9.770238661977462,
-          10.2128884665844,
-          12.58158799612637,
-          11.328377732511136,
-          9.596332230916085,
-          11.039563536720287,
-          10.427083590242049,
-          9.723744702233509,
-          10.694798684773504,
-          10.015693093568874,
-          9.266572885805294,
-          9.899305727844991,
-          9.497483739702686,
-          9.538928879370204,
-          8.82423089048687,
-          10.14754358324927,
-          9.991115546360675,
-          9.655122464969146,
-          9.816674658055579,
-          10.113314287908597,
-          10.84835295189557,
-          10.171899590313044,
-          8.518561058042248,
-          10.179906544258998,
-          11.2654267833142,
-          9.635165518589616,
-          9.691238957113933,
-          10.31267659689393,
-          10.384772968849564,
-          10.578740133528246,
-          10.758262755644758,
-          9.884913796659681,
-          10.024672335179886,
-          9.76913330317318,
-          10.481037742126228,
-          9.539331400189647,
-          9.894830164771506,
-          9.816784651080102,
-          11.187523177369668,
-          11.064043954459311,
-          10.284913317800486,
-          9.716504489368619,
-          9.858141257530649,
-          9.859591582797345,
-          9.172125341861152,
-          13.460214537292108,
-          10.177390537162973,
-          9.785339510725775,
-          10.269943629399702,
-          10.1066074116841,
-          9.896547882189331,
-          10.053677209495541,
-          9.884505436002511,
-          10.300120448557342,
-          11.194161519612184,
-          11.057855318898158,
-          10.803543702967751,
-          9.060965376758254,
-          9.531546102916023,
-          9.105845380737316,
-          9.921611460076043,
-          10.423532047591989,
-          10.044703336753134,
-          10.094339803500375,
-          10.375219313130149,
-          10.392334305934021,
-          12.098843975612624,
-          10.186166080621307,
-          10.195326957820367,
-          10.593215931055516,
-          10.544165892181102,
-          10.091321464109123,
-          9.054184441668845,
-          8.734138038663577
-         ],
-         "z": [
-          9.395759640316195,
-          10.561278277716198,
-          10.445816184139236,
-          -9.217941459846475,
-          -9.869768846480031,
-          -10.09929714354771,
-          -9.616834800921604,
-          9.67643089911391,
-          -10.720191560821057,
-          10.126233524481162,
-          -12.437399387179845,
-          9.901000731334719,
-          -9.494680116957076,
-          -10.25185722524443,
-          -10.664424386191877,
-          -12.049461312935833,
-          10.082681681107493,
-          -8.319247574269792,
-          -9.329061004184076,
-          9.828095941365266,
-          -10.032393024953485,
-          9.849063314549388,
-          9.929226127192763,
-          -10.698375473098348,
-          10.405526875878108,
-          9.87021286915959,
-          11.243125921879997,
-          10.814850424019026,
-          -8.526820580366643,
-          -9.533055576304243,
-          9.765867699127377,
-          -10.053007380939663,
-          -8.320292265408431,
-          -9.103937327636228,
-          7.990210057909017,
-          -10.82354809643214,
-          10.339448187919219,
-          10.819792153388034,
-          -10.247966331741981,
-          10.65062095101042,
-          9.990997508605426,
-          10.1814320498767,
-          -10.522635954449786,
-          10.686629877179962,
-          -9.128224483506786,
-          -9.642223842451624,
-          9.69705358461525,
-          9.43269066100614,
-          -9.515101211302278,
-          -10.599169791718092,
-          -9.803911522780107,
-          9.884627637572798,
-          -10.563614655703592,
-          9.910975490299423,
-          -10.189296413121301,
-          10.64138166688523,
-          11.776400174615741,
-          8.787877614395988,
-          -10.52174600448837,
-          -10.4706970036898,
-          -11.704302504509414,
-          9.533430825713683,
-          -8.172866957627084,
-          10.400272757443783,
-          10.103516723409925,
-          10.854307228390336,
-          -10.61862934400618,
-          -10.715872125466365,
-          -9.045157334155007,
-          -10.092718830016338,
-          -9.149730038135548,
-          -9.837559710015885,
-          -10.240241693213692,
-          9.730411645969909,
-          -9.98064665850427,
-          10.602088099507686,
-          8.877171630123215,
-          10.471156458458966,
-          -10.328113447812141,
-          9.834968885642736,
-          -11.202137761837088,
-          9.994274675418069,
-          -9.580687187823486,
-          -10.152549244652189,
-          12.278566640148666,
-          9.514768543785426,
-          8.63854726543665,
-          9.615723638592579,
-          9.202838218944528,
-          -11.35765097607601,
-          -10.525358912892656,
-          -9.239977141296016,
-          7.736749297794436,
-          -11.24222637270839,
-          9.842438464397809,
-          10.243751998822429,
-          -9.563975882753402,
-          -9.595298186590906,
-          9.990942797203148,
-          -9.359819115058816,
-          -8.595170755314571,
-          -9.794793188887105,
-          9.240589297590871,
-          -10.343769221133966,
-          9.251139976390755,
-          -11.057923686790172,
-          11.828536445591437,
-          10.673934714784492,
-          -10.005551437122557,
-          10.76945782063596,
-          10.746986225542356,
-          9.5765321686966,
-          -10.468260326838664,
-          9.442632202983484,
-          10.88162711824105,
-          8.991346316320037,
-          -10.352342337645979,
-          10.612032661092982,
-          10.81289552142509,
-          9.521381314428991,
-          -8.886452498346564,
-          11.047455575277853,
-          -8.643494648505362,
-          -9.04724991901524,
-          -10.488997052647692,
-          -10.662654862517714,
-          10.714688431940177,
-          9.494674807470435,
-          8.67094498899603,
-          -9.169082416359132,
-          9.714005235073364,
-          10.931397855741098,
-          10.611681211038416,
-          -10.236784672817672,
-          -10.526802768182703,
-          -9.702622216465715,
-          -10.611188164650166,
-          9.218678753338667,
-          10.083914173987354,
-          10.14381353100098,
-          -10.816182473514225,
-          -11.104705109797024,
-          -10.485291584516016,
-          10.196475052991609,
-          8.689906645342958,
-          -10.544433899734003,
-          -9.41527720593815,
-          9.122994353607178,
-          10.839796244919908,
-          9.101801432935273,
-          9.536461432700364,
-          9.48725672123759,
-          -9.308903750653387,
-          -9.112563752290637,
-          -10.677921976481166,
-          -10.004238333807487,
-          -10.53228570211838,
-          -8.654239476089932,
-          9.60600424403018,
-          10.021856529607284,
-          -8.251711323873733,
-          -10.940242551900056,
-          8.93619991291217,
-          -10.545295261980733,
-          10.287225835331645,
-          10.583407837910858,
-          -9.566612507752035,
-          -10.266052183755912,
-          8.389491092748806,
-          8.545828167990889,
-          -10.314902330973966,
-          -8.679159660663766,
-          10.021578984610176,
-          -8.282560327171733,
-          9.429389052151539,
-          -10.534679730413469,
-          11.500372270171582,
-          9.326221009071546,
-          8.777383953159982,
-          8.864616304338188,
-          11.347318410090686,
-          8.881958561915821,
-          -9.600406959372267,
-          -8.645025281112638,
-          9.555736380209378,
-          -10.087816204160145,
-          11.222104427849693,
-          9.684193152054249,
-          -9.984020222922194,
-          -9.573002298199627,
-          10.389062357268617,
-          9.596149780537889,
-          -9.530412931416777,
-          -10.838346217834781,
-          -11.822361658140073,
-          -9.464234950194003,
-          10.079244797437312,
-          -9.708023824320414,
-          10.729705632063464,
-          9.251969583513764,
-          8.375451239284871,
-          10.55365659856474,
-          -10.548949036794733,
-          -10.556467199140842,
-          -8.811094362258848,
-          -9.033015910556509,
-          -9.703910896588761,
-          -9.453885078590298,
-          -10.586746875107107,
-          -9.789310444086178,
-          -11.218246986979844,
-          10.118094812385323,
-          9.628878618696243,
-          9.364097291170648,
-          10.697886341932513,
-          9.80224604292499,
-          -9.161628524909169,
-          -11.021882029709015,
-          9.756059898750594,
-          10.743328156000524,
-          -10.847520676450204,
-          8.223629857482994,
-          -11.832760935483964,
-          -10.119578465285102,
-          -7.8845891637053995,
-          -11.040686379378023,
-          9.463719303649864,
-          -9.84873213754812,
-          9.828817774374198,
-          -10.293385296883162,
-          9.715718551425923,
-          9.556715219640726,
-          -9.105073012231498,
-          10.468875481492958,
-          -10.40510689110547,
-          11.189185290602524,
-          10.30959244051709,
-          -9.655820048267282,
-          -9.012549805623944,
-          9.785648612041498,
-          -9.394199736797257,
-          -10.009845144908839,
-          9.174490410670426,
-          -11.000960783957375,
-          -9.637589602670262,
-          10.258091239412414,
-          9.510271009538279,
-          10.23851534372761,
-          9.722357812704034,
-          11.137478037034727
+          2.3821429703806007,
+          2.9134904814871385,
+          -0.2689898984154462,
+          2.5252946169012,
+          0.9433285507181618,
+          -0.1474943436111491,
+          1.1317476840376663,
+          1.7399566416968637,
+          1.228261351900208,
+          1.4806863952197757,
+          2.3717253814684147,
+          0.4787891552758795,
+          0.8717537237158487,
+          2.115584892884207,
+          2.5594557264353153,
+          0.5647726520882986,
+          -0.687212039078793,
+          1.0747514627847436,
+          -0.32039984666318655,
+          2.7016538403745987,
+          -0.5325320494964481,
+          0.7219442033611125,
+          0.9446435730619822,
+          1.7098184274001955,
+          2.1485913632116103,
+          -0.1281604422434124,
+          1.060376258864757,
+          0.9754032248787261,
+          0.8528170873615054,
+          0.4424490017625452,
+          0.44595031595286305,
+          1.108511126393326,
+          2.533398704653883,
+          2.112847736368766,
+          -1.11392866905102,
+          0.6212968098274159,
+          0.20697562404597092,
+          2.7865304217150224,
+          2.2964162402096786,
+          -0.15112672506749925,
+          1.498942697189439,
+          1.7269388072592613,
+          0.6178507844537896,
+          1.4529494429358398,
+          2.1819967461554697,
+          1.6279782346117035,
+          0.684401381736762,
+          -0.2755750538518116,
+          0.8114827006097931,
+          2.0695192067245607,
+          -0.4359991993275638,
+          1.617858514936605,
+          2.789103503816671,
+          2.729625082952808,
+          0.9013959761841321,
+          1.4069399294905025,
+          2.1248733801083874,
+          1.153240426040835,
+          0.94194098887929,
+          -0.7436052015846919,
+          1.757796218228521,
+          0.8124194648626935,
+          1.3543775408589087,
+          0.20647804423438854,
+          0.0024983086674614796,
+          -0.7358721171722444,
+          1.481837596887842,
+          2.0019043262143867,
+          2.0342027892059944,
+          -0.304594953694888,
+          1.0266011762688163,
+          0.26006661503867146,
+          0.22984799877306517,
+          -0.43416380273602884,
+          -0.3781124241183429,
+          2.074242352426248,
+          3.683849777903299,
+          1.1884499959764152,
+          1.7140021729449866,
+          1.124395321755166,
+          0.9020619597796339,
+          0.2830752353125734,
+          2.8054229118731526,
+          2.8478851245864627,
+          0.42653600640792033,
+          1.9915696047681446,
+          -0.6009253831459289,
+          0.7476419384840061,
+          1.63280733196496,
+          -0.3614526965598033,
+          1.622523773718287,
+          2.101911895308829,
+          1.4681578598017784,
+          -0.6934356498126035,
+          1.2117483478221456,
+          -0.30171126274762883,
+          2.0737438494477587,
+          1.6948252382191513,
+          1.0303379245147108,
+          0.47386568700849985,
+          0.5286864139161913,
+          0.6847830161172077,
+          0.5118909982383559,
+          0.08790154687488316,
+          0.5516714238215152,
+          1.2003977691281713,
+          -0.5146056989578782,
+          1.9070246470462058,
+          2.0863123959766496,
+          2.4369026688245214,
+          0.6300673056322141,
+          2.4818007075129493,
+          0.46691713695576476,
+          0.7127060049493397,
+          0.0633867873984506,
+          0.217190638051737,
+          1.2387940437280909,
+          -0.017873623398653837,
+          0.7818272963792234,
+          1.6880134036652592,
+          1.3898865313183633,
+          1.5020795549365333,
+          3.503305588960109,
+          0.4586211178136903,
+          0.43366232326130605,
+          2.2122639017955317,
+          0.4180946093730181,
+          1.4806325621223855,
+          1.6453067513267652,
+          -0.5453795863196045,
+          2.830990249653082,
+          0.6047181906357388,
+          1.3409960102354581,
+          3.049507583634726,
+          0.18609463608099264,
+          0.2547789883676522,
+          2.8296446354698706,
+          1.22816340087038,
+          2.2116284583493533,
+          0.4587518060810024,
+          2.0645760641855206,
+          2.8828137116696286,
+          0.633683115022732,
+          2.1303806914107053,
+          1.5171921332808247,
+          2.1921573819546523,
+          1.6613933102597267,
+          1.1495821978158673,
+          0.16709179551570352,
+          0.59897072001562,
+          2.3034478517960157,
+          1.0473444645897838,
+          1.7608441396843437,
+          3.2055501692723563,
+          1.2234351031656305,
+          2.608295274116128,
+          1.2844768888118159,
+          1.1902576607050612,
+          1.1978847946472213,
+          -0.046585484356313156,
+          0.28619058806873887,
+          -0.5529678957760542,
+          1.384587032649054,
+          0.9329642053351693,
+          2.917937008635265,
+          -1.2417964919130364,
+          0.48812972990400494,
+          1.7222060654322902,
+          0.42489263695986956,
+          1.889515408121205,
+          0.8988850731308615,
+          -0.09100681120905452,
+          0.2945639067803828,
+          1.2480971648240433,
+          1.3589387005654592,
+          2.471992748980388,
+          2.1391409360803832,
+          1.4656835503315224,
+          1.4564620521535507,
+          2.3551398068106395,
+          1.7228660317795008,
+          2.468274047474769,
+          2.8361519953538123,
+          -0.4587492793476009,
+          0.30563258120072967,
+          0.3346160706298208,
+          -0.9264845855119686,
+          -1.4712704433500896,
+          1.775282104094321,
+          1.4337760076535062,
+          0.9513558026794154,
+          -0.1810127622991815,
+          1.8945162710822914,
+          1.0274115045752952,
+          -1.0816543868590935,
+          0.30468175688793675,
+          0.7134037005083738,
+          1.653372469694525,
+          1.583777784806062,
+          1.9427119025294823,
+          0.3404144670504602,
+          1.401178718841329,
+          1.647590530890468,
+          0.4542999958626479,
+          1.2014630255430783,
+          0.29733734429329306,
+          1.201780288407225,
+          0.5066533442828839,
+          1.4324591389112233,
+          0.41508314893917575,
+          3.1841555232311745,
+          1.4448545671203472,
+          1.122378150898906,
+          -0.04278996412264857,
+          -0.701207836016001,
+          1.6598497620209307,
+          2.6047609811304637,
+          -0.493005992373327,
+          2.0675709215797857,
+          0.5321437402893863,
+          0.9607386219890336,
+          1.9009370480998735,
+          -0.6072134045146778,
+          2.4070745746946516,
+          1.403542190740063,
+          1.2657703977917532,
+          0.3152452104301384,
+          2.1956579403584504,
+          0.622139503933097,
+          -1.904236653883434,
+          -0.7737282521248816,
+          -0.14156141623879925,
+          2.183522998848,
+          1.3532786438746152,
+          1.4863678169273153,
+          -0.3080769854557026,
+          0.49658960461818846,
+          0.5635144324133754,
+          1.8668450770199314,
+          0.6439136914481546,
+          3.1173520701620445,
+          1.4384497200159343,
+          1.2434579083255577,
+          0.7998111649911208,
+          0.9620500031038718,
+          1.0529615195108553,
+          0.9177052683608394,
+          -1.0372690328746015,
+          1.3532629368306854,
+          -1.9528822800259178,
+          0.8576811483689357,
+          -0.06023792246456616,
+          -0.07401169572933552,
+          2.951454043314434,
+          1.2216840694165432,
+          1.505373343298531,
+          1.3720966338801017,
+          0.9412546538409895,
+          2.0711965428743113,
+          2.210238842035078,
+          -0.1653526751116141,
+          -0.16875846768228397,
+          0.2309767265196262,
+          1.3351902953838328,
+          1.4301700492770646,
+          1.4624016971734737,
+          1.9829367731427552,
+          -0.25160971350535877,
+          1.714881906338774,
+          2.4026043083508553,
+          1.1280316946621887,
+          1.015883645444169,
+          -0.46820641769525606,
+          0.1364790632254823,
+          -1.195492689049109,
+          -0.3489585328876601,
+          2.029560794824288,
+          3.2964748987864683,
+          0.668817589919459,
+          3.3357345412610866,
+          -0.6775691950535336,
+          3.4874538697699187,
+          1.574934538122854,
+          1.870101338436689,
+          1.2866892123484894,
+          0.9361830660315704,
+          0.7138372302508391,
+          0.8997376600237221,
+          -0.12516643517283743,
+          2.419218386627936,
+          -0.6012066608923015,
+          1.9591649242967946,
+          0.7709748756526061,
+          0.012722702819281229,
+          -0.3601080466542108,
+          1.3260342350717815,
+          1.449086796114475,
+          1.5632921076553004,
+          2.3908117818149517,
+          0.5621988230456028
          ]
         },
         {
          "marker": {
-          "size": 1
+          "size": 3
          },
          "mode": "markers",
          "name": "Class 3",
-         "type": "scatter3d",
-         "x": [
-          9.587105408867984,
-          10.3056549397098,
-          8.845078687408314,
-          8.795031469552612,
-          9.753452032750374,
-          9.64638937006856,
-          9.894802175017803,
-          9.452006964895515,
-          10.097184247004689,
-          9.964831620971683,
-          10.199156943637306,
-          10.780333358003563,
-          9.36020068617493,
-          9.682349236980968,
-          10.13006138798515,
-          9.502591734684756,
-          10.207917341620869,
-          10.335097592010284,
-          9.398647641545638,
-          10.069079173166998,
-          9.417083817621458,
-          9.432867178188603,
-          9.969736024374408,
-          10.332601677772267,
-          9.499850269438802,
-          9.994782217086088,
-          10.636790836215075,
-          9.534790720123306,
-          9.783966665809173,
-          10.29139783373768,
-          10.332922548453055,
-          9.57464073867036,
-          9.530313994964688,
-          9.33132806511532,
-          9.453033543518453,
-          10.748698254050362,
-          10.730273616073914,
-          10.230395742787659,
-          10.549240568084251,
-          9.9164999545915,
-          9.448618524512328,
-          9.883470148562004,
-          9.287121134962613,
-          9.509955429833928,
-          9.11831045126577,
-          9.630419849271163,
-          9.530937257381904,
-          10.304256917560197,
-          9.776252519257245,
-          9.032656269168463,
-          9.092419039626675,
-          10.596910422280327,
-          9.042896325502923,
-          10.310558037588597,
-          10.86886132824389,
-          10.505070803955528,
-          11.206545723173791,
-          10.112117024286576,
-          9.988167479425764,
-          9.214033126864557,
-          10.23911999162587,
-          10.4474203452746,
-          9.02549139733922,
-          11.862530784174853,
-          9.920616595347052,
-          11.13959997369233,
-          8.814399424556589,
-          10.71457864945513,
-          10.213452455147161,
-          9.506090287168842,
-          10.089169224925758,
-          9.52482949772942,
-          11.645116850505572,
-          9.709316277757823,
-          9.497353836727664,
-          10.562444605526654,
-          11.80333856838252,
-          10.86920556461631,
-          9.563640732193651,
-          11.099375163326027,
-          10.16874164419894,
-          10.584123317004515,
-          9.282061374502534,
-          9.526911366043963,
-          9.4325759456545,
-          9.763178645832177,
-          10.36972364579323,
-          9.812989957137287,
-          9.879556803185858,
-          10.304948585345969,
-          9.995419987737412,
-          9.139428592845693,
-          10.25556460029938,
-          11.648208954649988,
-          10.327511321889634,
-          9.212187483972448,
-          9.888576664561606,
-          9.727479870487924,
-          9.859825141387942,
-          9.467807808685082,
-          10.312167124977343,
-          10.107767339106047,
-          9.16543906608627,
-          9.508667519828162,
-          9.216699634841309,
-          9.888199428302405,
-          10.674723501872803,
-          9.87001836141431,
-          9.16318614269275,
-          10.151606696251914,
-          10.16461794065232,
-          10.049148465559233,
-          8.616573331404298,
-          9.15336828860562,
-          11.16366031648283,
-          10.984729818417799,
-          9.923989709108154,
-          9.109749378191,
-          9.016964283518895,
-          8.39031449212147,
-          10.278586052843169,
-          8.810863614539453,
-          9.248571550868082,
-          9.510839635738533,
-          11.716683710833642,
-          10.343088412108925,
-          10.720265138935979,
-          9.268839214049699,
-          9.754632561564827,
-          10.759504816060385,
-          9.717247481670368,
-          9.661053165307166,
-          9.41363691835018,
-          10.116525591008052,
-          9.74358107703149,
-          10.366313827091986,
-          8.054642712185297,
-          9.30520929518176,
-          10.150367587344345,
-          8.605209784735468,
-          9.286820185005688,
-          11.192476909380307,
-          9.408918255497232,
-          9.61701663758051,
-          9.013321294904861,
-          9.231416667358804,
-          9.382213577807772,
-          10.20478237795426,
-          9.191533706711486,
-          10.621295819430022,
-          8.692302220857126,
-          9.934314744672548,
-          9.311108171027662,
-          9.418160572723481,
-          10.768745781693106,
-          10.045279886068705,
-          8.987712401538465,
-          11.075172275257385,
-          9.817840655154333,
-          9.595127294401651,
-          10.047119296189244,
-          9.919807885977944,
-          9.993464665831784,
-          9.751869875466419,
-          10.38382424485071,
-          9.89778505282249,
-          10.996105225395121,
-          8.514610234525398,
-          9.198096587561304,
-          8.849287081831175,
-          9.570126635260419,
-          8.874041662463412,
-          10.431146720932091,
-          10.207230938936119,
-          8.221930389732853,
-          11.120195368023314,
-          9.562910240244335,
-          10.326568034996603,
-          9.787518003320333,
-          10.577792521034223,
-          10.262314270666135,
-          9.971411433625208,
-          9.886444419805283,
-          10.263234983031257,
-          10.525645041986971,
-          8.36038496939352,
-          10.096966323402153,
-          9.941370969064522,
-          10.076576345668201,
-          10.012650076237275,
-          9.723906167979012,
-          9.92861452831231,
-          9.886850865082545,
-          9.365689008066003,
-          10.864247969848746,
-          11.019643118584765,
-          7.740667812491139,
-          9.612163067970048,
-          9.43093593377309,
-          10.325423297483406,
-          9.805860532927923,
-          10.102439485036383,
-          8.700054487353835,
-          9.576622533589283,
-          10.138091276174217,
-          9.560841835199042,
-          9.780429493018396,
-          10.094987746513508,
-          10.308611854877988,
-          10.624372663868904,
-          9.90632851724945,
-          10.126508192352876,
-          10.134797160813175,
-          9.427016793946944,
-          8.995306991469842,
-          9.348244051133998,
-          9.709171343546041,
-          10.950725019239568,
-          9.987412514673546,
-          9.535722219462283,
-          11.102951358111055,
-          10.24506942742027,
-          10.229815761554924,
-          10.709485767383688,
-          10.695646970050497,
-          9.80582163857259,
-          10.580901754244543,
-          10.864774282164282,
-          9.689186310497009,
-          9.069161788914558,
-          10.706896781919498,
-          8.762757023774473,
-          9.957756610972666,
-          10.190978376107836,
-          9.585926115039529,
-          10.223676900527163,
-          9.405993148201535,
-          9.97586372420359,
-          11.16329719839164,
-          10.579880110913066,
-          10.272559141214064,
-          8.9025424785017,
-          10.047838367682914,
-          10.490536408811595,
-          8.519606912709582,
-          10.255529697165809,
-          10.15606434647566,
-          8.957582518505035,
-          10.528404869532128,
-          11.288932467996439
-         ],
-         "y": [
-          -9.745018055992164,
-          -9.38981336633088,
-          -10.88061947129561,
-          -10.414068185829784,
-          -10.199987950294307,
-          -10.806861492958284,
-          -9.703966237522886,
-          -10.987703205390757,
-          -10.259517331449874,
-          -11.064290106744082,
-          -11.23080559458895,
-          -9.77667512422229,
-          -10.744605474224059,
-          -9.984023970606128,
-          -9.15938178182404,
-          -10.701636367708085,
-          -10.197682886068911,
-          -8.950118668952864,
-          -11.749775774684533,
-          -10.04203244859926,
-          -11.516443678895081,
-          -11.945739976430035,
-          -9.860379855215735,
-          -9.487556614679942,
-          -11.202808365912682,
-          -9.81395236088277,
-          -8.944922836059902,
-          -10.089891396544223,
-          -10.302725225499362,
-          -9.85740336641165,
-          -9.01790553047532,
-          -9.747410637957353,
-          -9.581421056054038,
-          -9.901026424836829,
-          -8.971913155935937,
-          -9.713013562723365,
-          -8.86314134565592,
-          -9.176170926758587,
-          -9.199105984553139,
-          -11.011208802453277,
-          -10.221755672718718,
-          -10.544682952398158,
-          -9.867277563547981,
-          -10.394772791457028,
-          -11.014963586361128,
-          -11.112382827771748,
-          -10.622924370066158,
-          -9.740570181417631,
-          -10.72501668681571,
-          -10.564405967460615,
-          -11.406250305934623,
-          -9.108316470960096,
-          -10.577054157982117,
-          -10.142370832262582,
-          -8.686586771306718,
-          -9.057974536525203,
-          -9.858899112670112,
-          -9.21742657124703,
-          -10.103285961506211,
-          -10.928632125601691,
-          -10.228727291246942,
-          -8.96920038966175,
-          -9.466537054644352,
-          -10.169009818259914,
-          -10.24879968668087,
-          -8.345205955540942,
-          -10.758714446201532,
-          -8.522954767842352,
-          -9.736923725163823,
-          -9.919361652735846,
-          -9.666328894086313,
-          -11.24933047538321,
-          -8.485522525249618,
-          -11.57392512075904,
-          -11.582821349399289,
-          -10.385550249344753,
-          -9.282876741448172,
-          -12.43226707255505,
-          -11.308441705489297,
-          -8.21302095878094,
-          -6.772375992343666,
-          -8.82095191471281,
-          -9.642395650057201,
-          -9.888734304651114,
-          -10.408817318118832,
-          -9.57303037389299,
-          -10.62974432781467,
-          -8.261001051908758,
-          -10.394474981878128,
-          -9.624574785251262,
-          -10.243449716390279,
-          -11.936849408664528,
-          -9.187234476406267,
-          -8.493429257635505,
-          -10.939527340515696,
-          -10.044201480093928,
-          -10.039507129009703,
-          -10.194688595309433,
-          -11.046561220060195,
-          -9.354750008512482,
-          -10.113612896988668,
-          -10.30664084002812,
-          -9.60086546413247,
-          -10.08373104523049,
-          -11.33685405160261,
-          -9.511467042425426,
-          -9.39620082024843,
-          -10.646899882685402,
-          -10.000352477442746,
-          -9.97008507736012,
-          -9.248137056018491,
-          -10.391630301261936,
-          -11.393157357516676,
-          -9.82258104054063,
-          -9.112801465705681,
-          -9.71775667715974,
-          -10.374412465250922,
-          -12.889279146185952,
-          -11.222763199421944,
-          -9.827598224747137,
-          -8.040854798391571,
-          -10.790076330464341,
-          -9.807685415918932,
-          -9.04707136699329,
-          -9.655897017606003,
-          -11.445576861838266,
-          -9.445513543681269,
-          -9.584376666648657,
-          -12.809781294316632,
-          -10.658009087799089,
-          -10.377318958552163,
-          -11.356255786545015,
-          -10.473237420553561,
-          -9.443716929090536,
-          -9.09872685451835,
-          -12.05220941818283,
-          -11.244621006263207,
-          -10.61908451306797,
-          -9.193517516379421,
-          -11.29129819892377,
-          -11.469450440888577,
-          -9.28702911656345,
-          -10.631580558882483,
-          -10.647509374216568,
-          -10.656983141465105,
-          -10.69104949099014,
-          -10.278151307221156,
-          -10.746228258188523,
-          -8.754250555745422,
-          -8.01499482494053,
-          -11.19786374254676,
-          -9.280533419058386,
-          -7.571305771828342,
-          -11.566667604180365,
-          -8.811316854390755,
-          -10.988999148144112,
-          -11.114552135329284,
-          -10.10711826256995,
-          -9.158593318675921,
-          -8.596756112924787,
-          -8.950653045666899,
-          -10.701377067392006,
-          -10.20242602705006,
-          -10.206096574191653,
-          -9.857734848861776,
-          -9.658157146263603,
-          -9.350466036745198,
-          -12.29744566618654,
-          -9.778596684781002,
-          -11.910189406569707,
-          -10.06849818776197,
-          -10.567900832184838,
-          -7.546353180766827,
-          -10.438363278730503,
-          -11.734266397257171,
-          -9.498434434425908,
-          -10.207097796983673,
-          -9.800428000399405,
-          -10.437143585694994,
-          -8.385201867593276,
-          -10.386609150664484,
-          -9.702157324396715,
-          -9.261685978756802,
-          -10.279729584768472,
-          -9.782208245091843,
-          -10.955716105977631,
-          -10.085959095707702,
-          -9.36766322083948,
-          -9.993220699193571,
-          -10.51356349270015,
-          -10.246193483527692,
-          -10.605771573237615,
-          -9.561749469174996,
-          -8.345509539122514,
-          -10.25112551002668,
-          -8.817734154458561,
-          -11.588236807046375,
-          -10.382389407204064,
-          -9.547118753048416,
-          -10.173400680858236,
-          -8.51006093963308,
-          -10.71055224217144,
-          -10.779883037026925,
-          -8.272254927367658,
-          -9.010483577468722,
-          -10.218586171163018,
-          -9.56868080615324,
-          -10.428961201958977,
-          -9.943121280454235,
-          -9.33617757972742,
-          -9.542695693413567,
-          -9.428267318762893,
-          -10.448594979618708,
-          -10.318794140211327,
-          -10.181812153658734,
-          -10.069908765588847,
-          -8.858557269143265,
-          -8.472345683714389,
-          -10.265418747729662,
-          -9.345387484582629,
-          -9.709686262366965,
-          -9.324316604738923,
-          -11.215443555696012,
-          -8.099682997222146,
-          -10.023757447438943,
-          -9.76288241097925,
-          -8.75334479584485,
-          -9.47314878459208,
-          -9.7470276057176,
-          -10.6469103819234,
-          -9.510534855272452,
-          -12.07284218984168,
-          -7.957944860489718,
-          -9.220399979021844,
-          -13.600682041413322,
-          -9.289798569936307,
-          -10.519563133637352,
-          -8.015471908529156,
-          -10.161733226186358,
-          -7.76080141735352,
-          -9.841444707298217,
-          -10.396217972328747,
-          -11.477076721537259,
-          -11.549251824462734,
-          -10.893336313171678,
-          -8.762433153156596,
-          -9.195835010858763,
-          -11.201507754694482,
-          -10.18580589061346,
-          -9.342166431901623
-         ],
-         "z": [
-          -10.372199189358865,
-          10.46613220761258,
-          8.38564772844925,
-          9.38830053398998,
-          10.1523847772188,
-          10.490897305957173,
-          -10.07578499814991,
-          -10.199176335069208,
-          10.131282047358889,
-          -9.841078712931603,
-          -9.665902043758818,
-          -9.433599081698567,
-          -10.38226814674283,
-          9.331130882187276,
-          10.450492902712574,
-          -10.258209854788,
-          10.202880905985635,
-          -9.841988678909944,
-          -10.314269798609518,
-          -10.023883149684114,
-          9.452431874071902,
-          -10.229095887841535,
-          9.485558831634576,
-          10.157362351165432,
-          -10.231200277421896,
-          10.412574926073944,
-          10.879213970839212,
-          9.970562750627654,
-          10.415916634413678,
-          -9.778915868642848,
-          -9.95084659988291,
-          10.685412548662404,
-          9.290229893968101,
-          9.324358811317497,
-          -10.459999237841673,
-          10.438823746537137,
-          9.797861002171482,
-          10.300635096882573,
-          10.963147561691827,
-          -9.893712373967166,
-          9.10245395893273,
-          10.185267052818078,
-          10.194781523607132,
-          -10.295610104774756,
-          8.753944990801614,
-          9.772591872950661,
-          -10.309329138010453,
-          -9.773797768038051,
-          -10.0662565584286,
-          9.075777271077541,
-          -10.482914705394824,
-          11.00479936489275,
-          -10.66160627155763,
-          -9.754530929787284,
-          -9.449853028544046,
-          10.666003393617167,
-          -9.110403958312492,
-          9.9623967253157,
-          9.859306475208696,
-          -10.444625910378557,
-          10.351455799607013,
-          -9.79146936120188,
-          -10.772451742105666,
-          11.34158357352025,
-          9.584239158049368,
-          -9.344084169212707,
-          9.74729519159592,
-          -9.619466478195768,
-          9.755665218834773,
-          -10.401929615186639,
-          -9.941916819461337,
-          -10.128997752889909,
-          10.899298464465277,
-          -10.026128276074077,
-          10.178567575687195,
-          -9.580996381549218,
-          11.02384279437222,
-          -9.119338538759365,
-          10.31716665663927,
-          10.120526420558582,
-          -10.163466889537851,
-          -9.598849267061084,
-          9.436073365460878,
-          -10.361896671418936,
-          -10.313048038516179,
-          -10.223894063208176,
-          10.856386477802038,
-          -10.282925715656933,
-          -10.05395065459849,
-          10.29454580316594,
-          9.517971725082143,
-          -10.414392349131294,
-          10.578329927706507,
-          11.412719485769848,
-          -9.688240656995912,
-          9.098311030945794,
-          10.643420717898643,
-          10.004158239912117,
-          -9.954963981609245,
-          -10.446537285147523,
-          10.584079384031984,
-          10.144390484611176,
-          -10.727714776455159,
-          9.682086211465432,
-          9.268413618683333,
-          9.52347979305336,
-          10.831307764066839,
-          -10.083264971251705,
-          -10.611880274367573,
-          10.233517411170283,
-          -9.99682557206806,
-          10.232317500561713,
-          8.58309890438446,
-          -10.718532479028298,
-          11.341947438636645,
-          11.232903465529699,
-          -9.98227954108347,
-          -10.384334793564962,
-          -10.610136243334761,
-          -11.26189148168035,
-          -10.014104223522208,
-          9.456494805533321,
-          -10.624174392048813,
-          -10.458946019743568,
-          11.848095520841236,
-          -9.571765915047274,
-          10.699964292927024,
-          -10.538966540358999,
-          -9.96485806142653,
-          10.499176677117086,
-          10.917037482805984,
-          -10.142348854496372,
-          9.033097943589695,
-          10.21139667409025,
-          -10.283751493693849,
-          -9.461723640033293,
-          8.438329427264515,
-          -10.431584704386134,
-          -9.896135233561413,
-          8.541716532958255,
-          -10.403960590821729,
-          9.932194170977402,
-          9.6943743058194,
-          9.836440870428929,
-          9.289333767308529,
-          9.17204432106328,
-          9.858361349427552,
-          9.84725069956162,
-          -10.779517611944666,
-          -9.701010511006624,
-          8.736238927493273,
-          9.99889912025464,
-          -10.807378675385733,
-          9.762357780999697,
-          -9.597493340953434,
-          10.233182727786726,
-          -10.646144031779937,
-          -9.195041603106182,
-          -10.173421813141386,
-          -10.531540523775764,
-          10.70721358963427,
-          10.036889174494656,
-          10.726065074595457,
-          -10.114288167393983,
-          -9.702979677655884,
-          -10.09345521262339,
-          10.959927961210775,
-          -10.887536494429003,
-          -10.595795551010154,
-          8.125658119309284,
-          9.17510834108686,
-          9.419530472972514,
-          -9.906598309473367,
-          9.998311350124636,
-          -11.187565642592904,
-          10.534357946061617,
-          -10.304578279881959,
-          10.179069932339202,
-          -10.153526046765812,
-          -9.795894832622409,
-          11.284832199348044,
-          -10.005017203258799,
-          -10.187629985405302,
-          10.192988620072677,
-          10.271716728471754,
-          9.095721616747841,
-          -9.914332065349711,
-          -10.081177162306387,
-          10.661465038183483,
-          -9.92137330314312,
-          9.641359383658916,
-          -9.976403232692107,
-          10.299065803221337,
-          -10.710683135552513,
-          -9.329699515677708,
-          -9.298354649159085,
-          8.733031368946627,
-          10.074238285738396,
-          -10.542562117585483,
-          10.665073819900698,
-          -10.276634377290373,
-          -9.848269124540867,
-          -10.941610516188499,
-          -10.55426572863265,
-          -10.019260457347194,
-          9.638950932452204,
-          -10.204100291519987,
-          9.953261278073713,
-          10.164966261729797,
-          -9.575082350874855,
-          9.646027030636464,
-          -9.97674546950979,
-          10.504477656398489,
-          9.161438232740782,
-          -10.713306092938613,
-          -10.467337305476722,
-          -10.346025110034967,
-          10.515979729893157,
-          10.715166572046359,
-          -10.450203969472243,
-          10.985725269602794,
-          9.69698598375819,
-          -9.69278322437457,
-          -9.720767184942531,
-          10.813112355295841,
-          9.668576653455743,
-          11.049500712035778,
-          10.852894079974707,
-          10.233793928864534,
-          9.38795410420026,
-          -9.570272305350422,
-          -10.726191572284732,
-          -10.234019014242746,
-          -9.957224913840626,
-          -9.844220740209737,
-          10.37810396800951,
-          -10.390872485643666,
-          -10.21697420577521,
-          11.892806848598592,
-          -9.771134159182148,
-          -9.843928300157254,
-          9.230014487031012,
-          -9.869831878219971,
-          -9.495241992678993,
-          9.438465955326652,
-          -9.889523642596922,
-          -9.890076867682536,
-          8.536121655148047,
-          -9.59043172902603,
-          10.940973371635362
-         ]
-        },
-        {
-         "marker": {
-          "size": 1
-         },
-         "mode": "markers",
-         "name": "Class 4",
-         "type": "scatter3d",
+         "type": "scatter",
          "x": [
-          10.566674713593487,
-          8.513280192785878,
-          10.73852349554962,
-          8.96176698489209,
-          9.594338520869522,
-          10.267310633542127,
-          11.682773115209367,
-          10.682735977971607,
-          9.759419572025942,
-          9.039103808841755,
-          9.548533140610475,
-          10.37243929703527,
-          9.788416658704639,
-          8.65089458639811,
-          11.246737681836002,
-          10.461041041378214,
-          11.87794719873472,
-          9.771282121476604,
-          9.739965649731325,
-          10.391117501932909,
-          11.972686334882196,
-          8.35194771837058,
-          10.455071669021743,
-          9.388277967821963,
-          9.570408063512428,
-          7.951157563504736,
-          9.500125657506167,
-          10.13516932502726,
-          7.907249009237891,
-          12.116057482878102,
-          10.700527194125993,
-          10.574981546182114,
-          8.71265266989824,
-          11.446994534860487,
-          11.162789178524434,
-          10.179391179940934,
-          8.271235111998717,
-          9.332539914498794,
-          9.981280822174138,
-          9.875556590664598,
-          8.463914464842615,
-          10.208131524806246,
-          9.173226127806574,
-          9.476742928810099,
-          9.376661492330912,
-          10.220606549418406,
-          10.435486935012545,
-          9.623528096751887,
-          8.998263350062986,
-          9.357487762212067,
-          9.441819967195926,
-          10.864646103800073,
-          10.585315569179762,
-          11.24878995284716,
-          12.628560272804535,
-          11.061750936432857,
-          10.337437398032856,
-          9.94989400878,
-          9.669149544214747,
-          9.988657646886056,
-          10.0998028990621,
-          9.728014434081793,
-          8.808786267319421,
-          9.164190833512539,
-          10.231832481477827,
-          10.39366887268297,
-          9.26253606078994,
-          9.967667442063032,
-          10.953415975566442,
-          9.695989754685078,
-          7.710817684906377,
-          9.287724413765535,
-          8.5674641780458,
-          10.05156002252878,
-          8.652651176611714,
-          10.949540857290163,
-          10.659404655786611,
-          8.760175199235238,
-          9.610337000714486,
-          9.057444110588351,
-          9.326930441780013,
-          9.921774085020578,
-          10.996954522090297,
-          7.96886050810459,
-          9.835390226294976,
-          10.58966883905029,
-          11.330259680359411,
-          10.738474825417514,
-          9.844614390296154,
-          10.989470383150378,
-          9.325139017273187,
-          11.47900891813053,
-          11.274408164248698,
-          8.79873810749405,
-          9.236654870874466,
-          10.175092432697355,
-          11.718846251420796,
-          12.625782482468038,
-          10.220666642304796,
-          9.219278025232537,
-          11.396267932279557,
-          11.219231646280239,
-          11.425392692449778,
-          9.119419964029241,
-          8.864990646971275,
-          10.760431888506723,
-          10.301381117649175,
-          9.106661614913081,
-          9.355338205382669,
-          9.603848741681656,
-          8.960184281922357,
-          8.996248805538944,
-          10.131223974940147,
-          10.928479052761874,
-          9.426376985583122,
-          9.378838416413759,
-          8.835824561686096,
-          9.810937244863931,
-          7.613650269593583,
-          11.867059956384718,
-          12.307807866016454,
-          8.676371298760332,
-          10.915687160294896,
-          9.598761474337001,
-          11.433910395767523,
-          11.430318709281641,
-          9.580991195288782,
-          10.9358363006125,
-          9.97915788774683,
-          9.328945973709507,
-          11.382472219132369,
-          10.014720908478013,
-          9.88165309940712,
-          9.808484034933912,
-          8.780881666571277,
-          10.260519646965772,
-          10.217404226823525,
-          9.969322340123627,
-          10.920492626805018,
-          9.652934307387321,
-          11.285685367651682,
-          9.768213898645005,
-          10.111963170162436,
-          11.817549339620667,
-          10.770296505210654,
-          10.315651155479118,
-          9.617342080354591,
-          9.28790072791044,
-          7.081930796623096,
-          10.45115697149207,
-          9.8315136231408,
-          11.262104185025406,
-          8.282112739226568,
-          9.523788112210607,
-          10.137072413337762,
-          10.026021528160369,
-          11.588727853011173,
-          9.89452603331391,
-          10.680192617496202,
-          9.266765378387955,
-          7.298905867059412,
-          11.231266222340135,
-          10.492715734985529,
-          11.309981923290357,
-          8.890554109783041,
-          11.319892643776033,
-          10.02352934166022,
-          11.383050141323382,
-          10.034884312487172,
-          10.039814654174137,
-          10.466821787166895,
-          9.96012261392071,
-          8.010156584145152,
-          11.724892110009884,
-          9.102836105589102,
-          9.96709538058607,
-          11.471946005566569,
-          10.382485135128482,
-          8.70755252886699,
-          9.803285794464177,
-          9.720280604101246,
-          9.946081834676862,
-          7.941223415670862,
-          10.18371182851409,
-          10.090901010979955,
-          10.230860531438875,
-          10.43588495682949,
-          8.957033452188577,
-          9.709300900986689,
-          9.197984409656373,
-          10.676350945350508,
-          9.908755368860099,
-          9.795062543552028,
-          9.919523632116688,
-          7.679026297101046,
-          9.210311708844024,
-          10.195489862573444,
-          9.309758123261973,
-          10.28648082413209,
-          11.038076155997125,
-          10.760916763090428,
-          12.163136779540814,
-          10.863951649681246,
-          9.380398882738781,
-          10.16008445467812,
-          10.868049519243435,
-          9.513138094766001,
-          8.655357249230175,
-          10.732950152129058,
-          9.119321699724296,
-          10.199458540502876,
-          10.723544391247199,
-          10.168496727428392,
-          10.18796746024021,
-          9.536262619204779,
-          9.417881368682425,
-          10.634049506002667,
-          12.685213744001867,
-          9.48687704225172,
-          9.83411442327132,
-          10.137977235625193,
-          9.183730493079581,
-          9.8986141371326,
-          10.139867500460094,
-          11.86256027187822,
-          8.903800153126046,
-          10.595606999267119,
-          10.292868195024772,
-          9.550477251709816,
-          9.271187233893167,
-          10.079556391173224,
-          9.92628774896818,
-          8.582061614231973,
-          8.697125622197964,
-          10.285635123797798,
-          11.699289965690792,
-          9.177018753065324,
-          9.90379426048613,
-          9.161984520763294,
-          10.512839530328662,
-          10.542209059270885,
-          9.980909381663482,
-          8.905779101644335,
-          10.141153730574183,
-          10.191978686161406,
-          10.558305878095403,
-          8.160329450455121,
-          9.680976902234743,
-          9.61487149751638,
-          9.99331856285472
+          -0.8753113650424456,
+          -0.9501846291069904,
+          -1.7157168636637494,
+          -2.4300286791530543,
+          -2.268182955901273,
+          -1.7324533949296264,
+          -1.3007164648136316,
+          -1.6866585540304224,
+          -1.8516795617591575,
+          -2.210818063124722,
+          -0.3538316630207967,
+          -1.1889103594686123,
+          -0.9553319364573268,
+          -0.017275346124405955,
+          -1.5683917328575987,
+          -1.0900081181319703,
+          -1.8193878235093246,
+          0.7105028245682805,
+          -0.4198922978923778,
+          -1.38654035713053,
+          -1.5930538019404457,
+          -1.66197206644114,
+          -0.9652501398107844,
+          -0.7616431612197306,
+          -0.6626504755508511,
+          -3.032716691466985,
+          0.2516720869665041,
+          0.7052741275301366,
+          -1.7187960812266365,
+          -0.4307568114123952,
+          -0.45071037749963594,
+          -0.8273278730901756,
+          -1.113400727058292,
+          -1.749910850491497,
+          0.11264715859605956,
+          -2.1136694061348322,
+          0.23681589999939923,
+          1.3646765239410446,
+          -0.8041959844950791,
+          -0.8638481349541205,
+          -0.2780465495309973,
+          -1.801356940998951,
+          -2.8721064273367736,
+          -2.124939369737194,
+          -0.6038239982717617,
+          -1.006189608569993,
+          -0.9165707331403589,
+          -0.06295395045732466,
+          -0.7273796944900335,
+          -1.681152800568094,
+          -1.1783805285795372,
+          -0.4530004425484838,
+          -0.9712678512908555,
+          0.10712673973612064,
+          -1.0255162799378437,
+          0.41738855901986494,
+          -0.9894449681759663,
+          -2.085938514120363,
+          -1.6214292409318602,
+          -0.9422424691368912,
+          -1.0718771535347145,
+          -0.9342649966431542,
+          -1.957701057818483,
+          -2.23334640904623,
+          0.5606797114630482,
+          -1.2176160555844189,
+          -0.8484258317502317,
+          -1.625395767696563,
+          -1.3957663601136263,
+          -0.8362865143573492,
+          -0.5545189182469019,
+          -0.03188040613368148,
+          -3.603854798377288,
+          -2.39360358823505,
+          -2.192990799876598,
+          -0.4479507202822768,
+          -1.587782196063901,
+          -1.556924490827625,
+          -2.5078268988427603,
+          -1.0156091837319274,
+          -0.878081624435568,
+          0.21996658535433378,
+          -1.0278383914243883,
+          -1.4519492011818962,
+          -1.1763274604833633,
+          -2.398724230401201,
+          0.49993430263913763,
+          -1.6821542909898581,
+          -1.6174563918851095,
+          -0.3088194819693888,
+          1.1994873944710762,
+          -0.24339535436195303,
+          0.3271926279653983,
+          -0.9673701133625343,
+          -0.5310345902447446,
+          1.052752519965774,
+          -1.3724642320919542,
+          -2.373464984911037,
+          0.22388411745530257,
+          -2.06737993921449,
+          0.2088867625482318,
+          0.015522175158175111,
+          -2.449609573445927,
+          -1.3289887989203555,
+          0.3541626803456648,
+          -0.5351988177576217,
+          -1.6561001469933503,
+          -0.9418721679362052,
+          0.5583526804696113,
+          -0.4511792830145964,
+          -1.3720881992065161,
+          -2.0652370568775673,
+          1.0964096066178026,
+          -1.2255795222330903,
+          -0.6865829589627195,
+          -0.12270273700993473,
+          -1.1703892381048364,
+          -1.2535534764082448,
+          -0.4994256219445099,
+          -0.32415823316316705,
+          -0.8154391504894772,
+          -0.5924974437142675,
+          -1.5389520703932096,
+          0.26249368989446875,
+          -0.6851287572025998,
+          -0.7545396711476906,
+          -0.423433643199454,
+          -0.23192922125777882,
+          0.3149696956353374,
+          -1.141163042716289,
+          -1.213110030696998,
+          -1.5918737073306666,
+          0.7025540832349089,
+          -2.21926468551582,
+          0.2200277431476927,
+          -1.1366374386966347,
+          -1.800244459716212,
+          -1.1233128982737015,
+          -1.9048442154737966,
+          -0.26349481229757954,
+          0.7607290410049619,
+          -0.7709222915007542,
+          -2.4460972851040585,
+          -2.555485586879901,
+          -1.5626479461593892,
+          -1.5752796345817104,
+          0.5722609225258584,
+          1.1018096081900732,
+          0.04408475470598616,
+          -0.20642059171321436,
+          -1.8341961149508645,
+          -1.1735120321123675,
+          -0.2899969494713892,
+          -0.9098646031254762,
+          -2.164011150330908,
+          -1.7308374614931918,
+          -1.0842972391051937,
+          0.5430403555492658,
+          -2.0442114834790215,
+          0.2449070582581241,
+          -1.2309122625154714,
+          -1.3794840751409336,
+          0.9214332927521454,
+          -1.4984072903453296,
+          -0.8563591784289029,
+          -0.6705137869134054,
+          -1.475148337599381,
+          -0.4763581053218453,
+          -2.192790773660109,
+          -1.0280528699825122,
+          0.693739762764843,
+          -1.6139863684842772,
+          -2.0179056357432312,
+          -0.2189415007559491,
+          -1.1021122653536373,
+          -1.8951486951477614,
+          -1.2309069537621415,
+          -0.06855318269939792,
+          0.5218732636853292,
+          -1.021785062646287,
+          -3.4716384338835256,
+          -0.2487495048774051,
+          -0.9316994960772681,
+          -2.5930963848242596,
+          -0.190206044755454,
+          -0.7007024924036518,
+          -0.5244504885961574,
+          -2.6467104921072027,
+          -1.7489541379932116,
+          -0.7955093211456897,
+          -2.0356829275171755,
+          -0.5627993806269262,
+          -0.8201087010623797,
+          -1.8437710693870015,
+          -2.093101220994978,
+          -0.5549046815503049,
+          -3.409131933027819,
+          -0.3687401809625497,
+          -0.9787997386580444,
+          -1.1864723891700164,
+          -1.6585939183505127,
+          -1.492182009632609,
+          -0.8749312629288497,
+          -0.6706039571610678,
+          -1.2975166939974732,
+          -0.09962386884479701,
+          -1.1840086142799824,
+          -0.6954059452556172,
+          -1.4346936393347283,
+          -0.8845149531196287,
+          -0.06279851817242055,
+          0.9099240523653904,
+          -1.4560678278246753,
+          -0.9308177945401189,
+          -0.5057898010262505,
+          -1.6561323668042918,
+          -1.3413207804153402,
+          -1.973796910675858,
+          1.102850919846499,
+          -0.9753070102245451,
+          -1.0811985209373192,
+          -2.0831651957555173,
+          -1.1908032655204102,
+          0.21060154350139415,
+          -0.40903397573834477,
+          -0.8018151424198949,
+          -0.6548982002904539,
+          -0.8282453144678654,
+          -2.0262222480393834,
+          0.34286699038558766,
+          -3.163340905378423,
+          0.32235307793166035,
+          -2.0188403537723696,
+          -0.14294436906723296,
+          -1.2436036432006938,
+          -1.3994177119452522,
+          0.6469591338295189,
+          0.24095611705681774,
+          0.01782963729406606,
+          -0.5883762741903797,
+          -1.9213708262980345,
+          -2.202092098982166,
+          -1.4737013850766194,
+          -0.7111733508263445,
+          -0.40183529973870824,
+          -0.11166730335065533,
+          -0.8711494767314099,
+          -2.0198895666530943,
+          -0.4760443453123736,
+          -0.6425144637506547,
+          -0.35286860703664935,
+          -0.5821686653809656,
+          -0.3142762964736826,
+          -1.1352269700991682,
+          0.12872604933601028,
+          -3.215149068373263,
+          -1.54579479634411,
+          -0.6615288683328148,
+          -0.2766771483153522,
+          -0.4768620783165678,
+          -0.24674447089995621,
+          -1.9537281788461138,
+          -1.5464424759414555,
+          -0.6255315717022334,
+          -1.2278351365361875,
+          -1.0197992934403237,
+          -0.18441782272387008,
+          -2.0742837692070513,
+          -0.031112218197076102,
+          -1.1064913850152989,
+          -0.9285781935212466,
+          -1.945484523877063,
+          -0.0057355362413646915,
+          -0.8067117283620772,
+          -3.756085253010259,
+          -1.6668640165658943,
+          -0.47880248785866875,
+          -1.1401358755570523,
+          0.6438011420991965,
+          0.6720287289279143,
+          -0.9230915003878879,
+          -1.2508734438436049,
+          1.2133884773133072,
+          -0.8743863219013435,
+          -0.9555450488833279,
+          -1.6348232551515534,
+          -1.7569871954163052,
+          -1.62373025583415,
+          -1.4376958403244606,
+          -2.43381345092485,
+          -2.5341403117708676,
+          -0.9159484044663794,
+          -1.3152546599717179,
+          -0.674585064856903,
+          -2.9118353993571957,
+          -1.163263674204949,
+          -0.7826350015871273,
+          -1.3252920029414204,
+          0.09704497630688791,
+          0.938362317487232
          ],
          "y": [
-          10.002099707354569,
-          12.39864043239872,
-          10.309577766054026,
-          11.35146951856108,
-          9.37664804591853,
-          10.196275083920497,
-          10.340228645186624,
-          9.451217448584087,
-          10.063495768547108,
-          9.460460512635642,
-          11.007058931409091,
-          9.83545055664892,
-          10.867422802887205,
-          10.789424406142121,
-          8.847426479789512,
-          9.672517263510949,
-          8.461660799198256,
-          9.597814478199895,
-          10.890163543255827,
-          9.375476515707051,
-          8.225383023441601,
-          12.781646077297523,
-          10.127046808286039,
-          9.862388376158933,
-          9.717815025884516,
-          10.448317047719463,
-          11.143733004837282,
-          10.977428576713377,
-          12.654996692279106,
-          10.21568977934135,
-          9.118376801668296,
-          8.561639918739392,
-          9.68291166303612,
-          8.320152052028352,
-          9.01259590198788,
-          11.111989900102813,
-          12.045573755054004,
-          10.557730161777084,
-          11.013880914942764,
-          10.92651232218238,
-          9.860072629795887,
-          9.749230897325965,
-          11.509353635681059,
-          9.533109158872143,
-          10.640388996708468,
-          9.685725292189534,
-          9.795404333849522,
-          9.818441963626695,
-          10.450309446488642,
-          10.650862414244205,
-          9.803545984702854,
-          8.863361402858006,
-          10.39182440423173,
-          8.242521020342759,
-          9.259925891872841,
-          8.681552821258785,
-          10.185886270860744,
-          10.426061213588435,
-          9.567371487028192,
-          10.209687356396435,
-          10.611888479718335,
-          10.174871594886133,
-          8.926788818794847,
-          10.56800154662716,
-          9.337446154123201,
-          10.36057617032855,
-          9.224315612914328,
-          10.975964146962486,
-          9.214854624599086,
-          10.585925395287882,
-          12.491606730399749,
-          11.44962143398617,
-          11.201050269521703,
-          10.004168056255514,
-          10.498105507355193,
-          8.84695241710796,
-          10.055659236717993,
-          10.759023705176022,
-          10.65007371434121,
-          10.264326144096634,
-          10.040502522782244,
-          9.817757019673738,
-          9.28202981263813,
-          10.525684949561343,
-          9.633085690375983,
-          10.019032863446956,
-          8.446236119841632,
-          9.578775247444474,
-          10.365652435587839,
-          10.406721469803623,
-          9.737127517088707,
-          10.357601488803322,
-          8.710407770055557,
-          10.577130733977594,
-          10.616264448082974,
-          10.01906682190146,
-          10.005808281520094,
-          10.409369142962163,
-          10.646111549699516,
-          9.709978452279609,
-          8.689572288249842,
-          10.51316273801762,
-          8.242889244111975,
-          10.63236337537182,
-          10.847843293349165,
-          9.113799149160362,
-          9.174981484420348,
-          10.690981443796634,
-          9.692878656279262,
-          9.91062941037064,
-          11.592623526935155,
-          9.604192835177273,
-          10.447659596376587,
-          9.058037511916105,
-          10.965105279818266,
-          10.926006260530263,
-          9.201964864713881,
-          10.219382960003442,
-          11.224720423416313,
-          8.961163532872003,
-          8.73704869739391,
-          10.215174339811286,
-          9.398355338526157,
-          10.56628856231874,
-          9.580439027766106,
-          9.566598883392716,
-          11.501969819898358,
-          9.496401529603483,
-          10.057729124285869,
-          10.261875629477132,
-          8.426871216956307,
-          10.358627601672481,
-          11.09395360817156,
-          10.83192923470655,
-          10.278176957480374,
-          8.99639150494655,
-          9.688458607327801,
-          9.554863466963956,
-          8.785307525476615,
-          9.664221923272022,
-          9.205175748278503,
-          10.715068527073244,
-          9.862909985167754,
-          8.81263429655474,
-          9.125331274015018,
-          9.92725294585506,
-          9.829541388977766,
-          9.513433387347035,
-          10.090005286677586,
-          10.807787238234624,
-          9.50448538985129,
-          10.17437629680866,
-          10.917457649877775,
-          11.190681439955071,
-          8.909387690009252,
-          10.005043301804333,
-          9.485244949755344,
-          10.300158264975831,
-          9.544663709827486,
-          9.48647218014452,
-          10.560041699502015,
-          9.240668826700325,
-          9.758537414628135,
-          9.92061790666938,
-          10.991877116221278,
-          10.091353476704153,
-          10.079723623721396,
-          9.487003385674482,
-          9.391703072368818,
-          9.472295650108496,
-          9.64829260092916,
-          10.072925771227737,
-          11.333026263953828,
-          8.14453502221571,
-          10.877531119514671,
-          9.96530658097206,
-          9.298215024234706,
-          9.651695332146051,
-          11.760675845257072,
-          10.0454092035486,
-          10.51982039854075,
-          10.237104298963535,
-          11.830244655191168,
-          10.338071286420544,
-          10.496284376941402,
-          10.551984432523744,
-          10.680331933692994,
-          10.496530056006442,
-          9.708678134105106,
-          9.950168202316624,
-          10.377825550015343,
-          10.25359928060233,
-          8.392855180438854,
-          9.78240524875212,
-          12.53844772362436,
-          10.355035850209559,
-          9.81590469342553,
-          9.860432443006012,
-          9.258175162653808,
-          9.480006643031853,
-          8.65916559356991,
-          9.622889269511141,
-          10.709568526012502,
-          11.72430787822659,
-          9.930820886118992,
-          10.27084515208686,
-          10.568090608976641,
-          11.045019403829269,
-          8.982419074317102,
-          11.43485748340452,
-          9.450465944182971,
-          9.485323661123857,
-          9.834362085410085,
-          10.651434654971133,
-          10.32533195331007,
-          10.846102517074613,
-          9.091688000654978,
-          10.534207779135443,
-          10.01458155140867,
-          9.808937708910134,
-          9.823678740984155,
-          11.074275769694845,
-          10.85947562338514,
-          10.39079058842368,
-          9.341434164406097,
-          11.327823842608812,
-          9.007679999152332,
-          8.939351538506378,
-          9.843475559128818,
-          11.709334699615452,
-          10.386683982760553,
-          12.94622187062569,
-          12.034177734091346,
-          10.827796885199554,
-          10.138789878781457,
-          9.940733426051738,
-          10.516661179020765,
-          9.036817167006653,
-          9.272079293131341,
-          11.004492956219135,
-          9.113842745130373,
-          10.208622484066783,
-          11.024520306581545,
-          10.0418756610004,
-          9.624164446371877,
-          9.315336195320302,
-          11.801521869813909,
-          11.48329544524478,
-          9.95547910596258,
-          9.581342776466846
-         ],
-         "z": [
-          -11.168989525006804,
-          -11.207454791503173,
-          9.684704268048543,
-          8.78787929241814,
-          -8.115091494005975,
-          9.754469016680442,
-          9.49765451561453,
-          -10.356673924154085,
-          -9.626084671939115,
-          -7.138804094368088,
-          9.1176426521456,
-          -10.541054250122544,
-          9.155600554356749,
-          9.41890801489367,
-          -10.459283109555424,
-          -10.340046180418362,
-          -11.146145672037639,
-          -8.732573119451635,
-          -11.009103261613788,
-          -9.53559515568911,
-          -10.948194074118819,
-          -11.52930289657733,
-          9.945428771634674,
-          10.200043796206252,
-          -8.730848715519771,
-          9.817556468233958,
-          -10.9471962941459,
-          9.01966684771637,
-          -10.485709339681602,
-          9.57888183476775,
-          -9.833066933751878,
-          -8.680695149173413,
-          10.359875754173732,
-          -9.952376869763194,
-          -10.72698908295207,
-          8.840021536058526,
-          -10.150359708924915,
-          9.521713208973056,
-          8.868823548213964,
-          -11.3098821108019,
-          10.249630056854638,
-          10.180368510630078,
-          -10.890408986639342,
-          10.596432371910169,
-          -9.928649308524852,
-          -9.814608842133307,
-          10.155336680303396,
-          -8.884643105062462,
-          9.613001401541096,
-          -9.727657749371389,
-          10.220556384919158,
-          -9.707845670373366,
-          -11.902315504651,
-          11.773841283385835,
-          10.364960595327297,
-          -9.812937270051522,
-          9.73315271164039,
-          -10.559839046526212,
-          10.483514618941406,
-          -10.243986688669567,
-          -11.241323524762214,
-          -9.681262588667524,
-          11.22180499533238,
-          -9.311862997947113,
-          -9.299731216003691,
-          9.634833878445269,
-          10.9496246545664,
-          8.993044680735427,
-          -10.372376792452947,
-          -10.375607757587868,
-          -9.777001766664128,
-          -11.139136785832976,
-          -9.322271408862852,
-          -10.150775619784085,
-          9.72428609971709,
-          11.020171715255024,
-          9.913845097547437,
-          -8.860016773695325,
-          -10.28831790283916,
-          9.938331395343495,
-          -8.60066587789974,
-          10.136715147149477,
-          -10.699789177537648,
-          9.667399661385984,
-          -8.974622396846334,
-          -11.267567685224018,
-          11.404088479377918,
-          -10.771264068966905,
-          -10.282115132786217,
-          -12.603297210970327,
-          10.275362729101737,
-          9.417750095718587,
-          11.28951978848987,
-          9.64425905143216,
-          -9.562115016138407,
-          -10.395862323299896,
-          9.797800229033603,
-          9.316136871369967,
-          -11.517518582197857,
-          10.243899167494003,
-          -10.48166746844158,
-          9.342870995276666,
-          -9.815940996579725,
-          9.30665127090533,
-          9.215749281549385,
-          10.931996674852254,
-          10.873333753136256,
-          -9.48586004799486,
-          10.379393559739247,
-          -9.118097031004723,
-          -10.6825465658111,
-          10.596000630658823,
-          9.61467289434721,
-          -10.187325051278942,
-          -10.592626813464312,
-          -10.435808405302197,
-          10.93892715257411,
-          -10.077054107049312,
-          8.95215095852888,
-          -11.89457106097649,
-          11.08644668154468,
-          -7.6785985903202905,
-          10.520126958217205,
-          -10.233662430906932,
-          -12.125427179840768,
-          10.317294946310895,
-          8.48407736557909,
-          -11.002070943498774,
-          9.983107906016064,
-          9.741266320323083,
-          -10.073072296314347,
-          -10.667988406433071,
-          8.92239832766155,
-          -11.072036421068823,
-          9.731795717545502,
-          -8.81904786604693,
-          -9.877881861902901,
-          10.482275660096128,
-          11.24441005895413,
-          -8.762027772953898,
-          10.681727454425882,
-          9.338825833705835,
-          -9.99796069791487,
-          -11.5425042291465,
-          10.798963157435457,
-          -10.474047407684449,
-          -8.992636004965405,
-          10.63915379822825,
-          10.1257538076934,
-          9.146962116816267,
-          -8.672780625739684,
-          9.652974533358055,
-          9.30057320851887,
-          -11.073163049322986,
-          11.125891413723583,
-          9.977802916670381,
-          10.34402252388338,
-          -10.287246305572614,
-          -10.602688046807568,
-          10.64788212407752,
-          9.654501274799202,
-          -11.167249921038849,
-          10.116391511905931,
-          9.964772114451492,
-          9.11663747804838,
-          9.845251057793016,
-          -10.18816120605094,
-          10.388387494339312,
-          10.564884659770131,
-          10.621172446256567,
-          -10.26519675042846,
-          -10.090090010353878,
-          8.820354340716074,
-          -10.163857106627033,
-          -9.668453745148385,
-          -9.775573540706363,
-          -11.690157096053305,
-          -10.17675521158614,
-          -10.48577218353588,
-          -9.661005241671896,
-          9.385500552992987,
-          -10.342678905984908,
-          8.256807278383647,
-          -10.974882435792374,
-          9.467675995056211,
-          9.49215842884503,
-          -11.988591626780307,
-          -8.82089015959883,
-          -8.90419286548754,
-          10.113867266809804,
-          9.46610138195666,
-          9.753380593499768,
-          11.650544336445204,
-          -9.369193415879272,
-          -9.774265927092241,
-          -9.093631505018125,
-          10.189168754147845,
-          10.134209329648012,
-          10.733954113169201,
-          10.393815022313136,
-          -9.204776497794732,
-          10.155763201674622,
-          9.178321528951315,
-          8.312141545546572,
-          -10.25750436164089,
-          9.641641696691918,
-          9.384596935449379,
-          8.96727662209345,
-          -9.771295401365707,
-          -10.692462789429225,
-          -9.477255941980722,
-          10.46705214420378,
-          10.143999055057934,
-          9.242921683096752,
-          9.729859049184627,
-          -10.228879067715148,
-          10.894965739539906,
-          9.14806535804901,
-          -9.015604462762067,
-          10.203272296464544,
-          -9.925321966513934,
-          9.01299062735353,
-          -11.317183860858583,
-          -10.867470980827905,
-          10.4711699139927,
-          8.705949987973918,
-          11.033991636604643,
-          11.052237187593095,
-          -8.868253160054504,
-          -11.507907152806691,
-          -10.805484990837368,
-          7.103671911385706,
-          -10.745221877992527,
-          9.216413341093295,
-          9.788147168754133,
-          9.874033288603053,
-          9.588545922680835,
-          10.942597484354744,
-          10.836922238354672,
-          8.893308919961363,
-          10.888229797562454,
-          -10.222454571932335,
-          -9.701014928799525,
-          -10.35968525693148,
-          -9.73645555694736,
-          -9.823194910433303,
-          -9.452300487470037,
-          -11.864069316117162,
-          -9.141864698435603,
-          10.405443127154841
+          -0.4460795360818255,
+          -0.9586146696266187,
+          -1.6758617998907033,
+          0.7837840548868442,
+          -1.7064527167440122,
+          -0.08757827277973229,
+          0.2721376312951227,
+          -0.7155510097403274,
+          1.1870905774081488,
+          -0.6841217483435427,
+          -0.5781104002239917,
+          -1.1323589234256273,
+          -1.1498761500817059,
+          1.2537426257831465,
+          -2.3965850442540844,
+          1.630147205985578,
+          0.6711644305023678,
+          -1.5644118684001358,
+          0.66023464971145,
+          -1.2075607152717585,
+          -2.034597014876776,
+          -2.2478704580900954,
+          -1.7850275660102075,
+          -2.586316150791076,
+          -0.1501740767906845,
+          -0.6186299643510561,
+          -2.2332916344944236,
+          -0.5727884298232411,
+          -1.0568594615063038,
+          -0.9225085691068728,
+          -1.938674385953973,
+          -2.441355109206567,
+          -1.9215806304090695,
+          0.2602609773369833,
+          -0.37895215426862894,
+          -1.3225947930520405,
+          -0.8555122707003041,
+          -0.5989921030064465,
+          -1.3151602363798145,
+          -1.1554508906487908,
+          -0.024592465225094062,
+          -2.3572609061839582,
+          -0.48207654651557896,
+          -3.1949834018879577,
+          1.5417420558167865,
+          -0.14511525175392181,
+          -1.1008231203590035,
+          -1.2959499235912844,
+          -0.6720124341963698,
+          0.01143852749913532,
+          -1.7705213105460276,
+          -1.916034615792771,
+          -1.0092972891151188,
+          -0.5160205792677557,
+          -0.16624492705580352,
+          -0.43128351814420407,
+          -2.3374849448596144,
+          -1.3111923857616306,
+          -1.1906269217887173,
+          -0.4599508178820859,
+          -0.5039863908154996,
+          -3.014090422581473,
+          -1.1469047216160755,
+          -0.3883416050178936,
+          0.2425907958755651,
+          0.5198724625661557,
+          -1.3436765964956354,
+          -1.3083835024357642,
+          -0.826251839851437,
+          -0.9968944247792026,
+          0.21392550983821867,
+          -2.5139303431926066,
+          -0.04741248629307382,
+          -1.2291599620009142,
+          -2.837212333948937,
+          -0.2260020171128687,
+          -3.641701739728551,
+          -0.6005355351233166,
+          -0.8130550703299779,
+          -0.4093823296726914,
+          -1.9920941552345992,
+          -1.1616291058364359,
+          -1.9515149940202876,
+          -1.902102167937398,
+          0.745175400497573,
+          -2.645109369635649,
+          -1.2134163243011766,
+          0.06023665849621396,
+          0.8617114246502597,
+          -1.4974509368833662,
+          -1.617557718269762,
+          -0.6948557216743961,
+          0.592041495233238,
+          -1.768148518791055,
+          -1.6909659007660802,
+          -0.8607951623371228,
+          -0.8117088683669991,
+          -1.9906108069557988,
+          -1.669737720930808,
+          -0.45285473946939314,
+          -0.26698988382961986,
+          -1.7715917675882369,
+          0.5306873733043709,
+          -1.2557372444129908,
+          -0.43289471268855206,
+          1.207331959953096,
+          -0.05401896064262157,
+          -0.7261562682701903,
+          -0.482235158818614,
+          0.09347674772901193,
+          -1.855617696757566,
+          -3.004802329483076,
+          -2.1247780354050163,
+          -1.2822254882189572,
+          -0.16831368594046103,
+          -1.5944776310806303,
+          -0.711895112989688,
+          0.6387720174964748,
+          -0.2507540568592558,
+          0.1964173414856727,
+          -2.3221873002368296,
+          -1.664092070102662,
+          -0.40217153029282804,
+          -0.9783125264142617,
+          0.7354962496240709,
+          1.652550608605953,
+          -2.7951887772007957,
+          -0.6113892963038347,
+          -0.3136567657757058,
+          -2.248235426552942,
+          -1.8671496294641599,
+          -0.3999138494812262,
+          -0.5976119455419573,
+          -0.5467045653072595,
+          -1.621705235796726,
+          -0.9850246251528875,
+          -0.3390445400643721,
+          -0.5722649567312492,
+          -1.4460113818004854,
+          -1.3801226979178218,
+          -1.4074497780283757,
+          -0.04917537221107837,
+          -2.795235730439722,
+          0.28726984993213756,
+          1.608216594538011,
+          -0.8118403932645968,
+          1.0453155430049006,
+          0.231991922040232,
+          -0.39588810368469485,
+          -1.5619623694112903,
+          -1.0034404340061052,
+          -1.4620894572162695,
+          -0.026016889379540498,
+          0.5064184006019528,
+          -1.1974458433368984,
+          -2.9030307006324927,
+          -1.1241278869429387,
+          -0.3568548342180994,
+          0.8903433467495365,
+          -0.40652125956922214,
+          -1.9781979663165217,
+          0.1100355758449163,
+          0.5734166616348946,
+          -2.1415079291899803,
+          -2.803015474805135,
+          -1.1504884772416595,
+          -2.62588232539492,
+          -1.543116080797275,
+          -3.928420006414297,
+          0.8069022417551985,
+          -1.4660332947509565,
+          -0.522060380269513,
+          -0.6923075361579316,
+          0.2509219328036596,
+          -1.2076559312870674,
+          -1.8430473236336864,
+          -0.6254518494681973,
+          -1.8188825160276292,
+          -1.2764245457231491,
+          -1.76182098560663,
+          -0.09866995662477973,
+          -1.2868280071405347,
+          -0.47397326043843646,
+          -1.5393965904727853,
+          -2.2788129940427906,
+          -2.38310537200499,
+          -1.0363383361503622,
+          0.18751206351507022,
+          -1.8260943014975997,
+          0.171095235883292,
+          -0.9371142002801127,
+          -0.2933429554301308,
+          -1.374203880799101,
+          -0.9121718520764871,
+          -3.978468038904916,
+          -0.07839163816894457,
+          -2.029472721219634,
+          1.0977231357044275,
+          -1.74223668297613,
+          0.40175767851665456,
+          -1.8148176202085131,
+          -1.97196786428571,
+          0.656443788374298,
+          -1.2572874582613425,
+          -2.59375394658,
+          -1.0793590515244331,
+          2.2555384536519223,
+          -1.766489891334329,
+          0.1708998487467306,
+          -2.4663988500121925,
+          -1.681207481062215,
+          0.10116491067652311,
+          0.30606249140572706,
+          -0.13055309517924074,
+          -1.862904420625792,
+          0.050098368484764455,
+          -1.4115405027613122,
+          -0.568118825417053,
+          -2.0884050659275317,
+          0.4398319585254822,
+          -0.5387835371194254,
+          -0.563318743479525,
+          0.005002755989162555,
+          1.6401941793838484,
+          -0.6678337907021208,
+          -1.3600713168441407,
+          -1.3011770288151274,
+          0.3433588917594297,
+          0.16216519782127414,
+          -1.1203769749745467,
+          -1.6197059791808393,
+          -1.0233151732576193,
+          -1.514644161395011,
+          -0.4425768260656372,
+          -1.373996476168505,
+          -1.940444930798817,
+          -1.3286224029793254,
+          0.551060464440982,
+          -1.4400592512388373,
+          -1.0246686731785295,
+          -0.669298922129234,
+          0.21090061565200546,
+          -0.7949073179957357,
+          -1.263967022665713,
+          -1.4841888608713645,
+          -2.372295957393912,
+          0.9768384813905406,
+          -1.6909960802861506,
+          -0.8169070774291872,
+          -0.5012483984990755,
+          0.13139643145134072,
+          -1.2459746673610024,
+          0.9370279782414461,
+          -1.9935830717119414,
+          -1.1227348280693301,
+          -0.13600973415267026,
+          -1.092303367679983,
+          -0.8057757154270538,
+          -1.4440008973416198,
+          -1.2646212729884123,
+          -0.37260099612501874,
+          0.10721498229147008,
+          -0.17614324629436084,
+          0.874123410355635,
+          -1.3561465557005414,
+          -1.3091074824181361,
+          -2.6479123321117326,
+          -2.0886803523719646,
+          0.7440588816525056,
+          -1.1721224856912065,
+          0.1845950730553545,
+          -0.756970483153893,
+          -0.48910855507414075,
+          0.020618309589208073,
+          -0.30887102215478046,
+          -2.8664249993490865,
+          0.4005159929466051,
+          -0.0284950744646979,
+          0.34062335074881345,
+          -0.243362607315034,
+          -2.633287069494785,
+          -1.8597335537981166,
+          -1.1793246903397465,
+          -0.4377321120007873,
+          0.7281922784547814,
+          -0.801587625712279,
+          -2.3458312799232246,
+          -1.0377609317661,
+          -1.7059590315073918,
+          -1.0847304331773842,
+          -0.22508360143062045,
+          -2.486049202497974,
+          -1.7668623901741745,
+          0.36665861688729673,
+          -0.8827249580915403,
+          -0.31553404076605174,
+          -1.7666716586985975,
+          -1.811589566546944,
+          -0.9782716710013452,
+          -1.0618468397344365
          ]
         }
        ],
@@ -3979,20 +2742,20 @@
        "<div>\n",
        "        \n",
        "        \n",
-       "            <div id=\"a98932b8-ee46-41b2-ab6d-8b9565b361af\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div>\n",
+       "            <div id=\"69eb245b-2c5a-437c-923a-99fe81ef9d9a\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div>\n",
        "            <script type=\"text/javascript\">\n",
        "                require([\"plotly\"], function(Plotly) {\n",
        "                    window.PLOTLYENV=window.PLOTLYENV || {};\n",
        "                    \n",
-       "                if (document.getElementById(\"a98932b8-ee46-41b2-ab6d-8b9565b361af\")) {\n",
+       "                if (document.getElementById(\"69eb245b-2c5a-437c-923a-99fe81ef9d9a\")) {\n",
        "                    Plotly.newPlot(\n",
-       "                        'a98932b8-ee46-41b2-ab6d-8b9565b361af',\n",
-       "                        [{\"marker\": {\"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 1\", \"type\": \"scatter3d\", \"x\": [-11.148431648436642, -11.532799006483092, -8.319128100140688, -9.555174045724408, -9.848326915978086, -10.164097641313578, -11.531713465816699, -9.461520847232517, -9.776518355745962, -9.50395361355271, -10.990946632559188, -10.075020393473839, -11.123520410556345, -10.261474026251113, -12.169673258702135, -9.44903211779248, -9.754089242258182, -11.948627052403015, -9.599728846726816, -9.272033967924823, -11.61448656225432, -10.205791827701521, -10.43627927901561, -10.128760723949384, -9.411367827564419, -10.447660695241504, -9.627127012399514, -9.942817286255067, -10.024558184847699, -9.956558872330907, -7.195127951230843, -9.92130842828509, -9.956247717663079, -12.481756423157336, -10.13471303223747, -10.131970783168692, -10.151104940075195, -10.685595315668005, -9.934997397394545, -12.04934784414448, -9.690567622881023, -9.98470495333626, -9.176720832164202, -9.643289807275817, -10.42122521826776, -10.106538932295566, -8.158305461781568, -9.815427156951296, -8.74794315960913, -10.29070935892814, -9.741944008707327, -9.347528364064184, -9.511761032186689, -9.452910825917025, -9.760785113153156, -10.654435766053073, -10.531134003338133, -9.66528758952182, -10.07684684912417, -9.866233384174706, -12.23722098030168, -10.238798690775024, -10.00553221990153, -9.172328073048032, -12.393287729228941, -9.247391922185814, -9.991262330258008, -10.1563095921768, -10.39164853485425, -9.866501341797452, -9.903935798572663, -10.564642974101346, -9.606540184985533, -10.02479444853199, -9.335282341491075, -10.964183788841927, -10.37777860838833, -10.305126611091238, -9.715083250408217, -10.710642275461513, -11.84185876102245, -8.885402884348872, -10.07051735650033, -9.448308922888081, -9.451647373234259, -10.203802256515601, -10.969232665704114, -9.50873376888584, -9.456442820466762, -9.84074485029633, -11.083544259689596, -10.06829642641924, -9.293131162887835, -9.628322599927136, -9.741437971012626, -9.65596374713936, -11.994922109328156, -9.600595356887526, -10.141302635623775, -10.270127795502454, -8.024393139567888, -10.534643186564866, -8.958277671267945, -10.16433454797929, -10.334989873112397, -9.452789531192499, -10.19836205683037, -11.196419577985516, -9.534907560609033, -9.441410349462004, -10.491132232675099, -11.155684651896886, -8.679885808984855, -10.357453927830573, -10.47012402600302, -9.857796983741514, -10.338575550298865, -10.085158241121833, -10.658936332790736, -9.896392931784087, -10.016565831732866, -10.07993247995959, -8.317484810869674, -7.991669164211304, -10.34488471528119, -9.394305356538936, -9.828696144965928, -8.774868142461353, -9.7588768388694, -9.868127474701478, -8.994955575414522, -9.601368229778537, -9.45017986587349, -10.481306218303228, -8.69236504181488, -10.364085251276629, -10.72973675202102, -10.266667257678696, -10.272401989002503, -8.949628633355466, -10.824606321218974, -9.739877355521802, -11.960024904828362, -9.809500879652912, -11.57839698705898, -9.370215837593834, -10.211983993576998, -11.183447986858106, -7.95996583958079, -13.395785901375598, -9.679929307706743, -9.999269984387633, -9.287891669092858, -8.695506711152047, -11.226713903195336, -10.06762804582212, -9.321713545205025, -7.906555521834444, -9.974822331309577, -9.882228257990453, -10.196462777630083, -9.338016739964813, -13.020086347981298, -10.092055303811154, -10.009571847971026, -11.217204684883814, -8.953249561126803, -10.657478475309997, -10.453022568591074, -8.28539340775638, -11.202389828026972, -10.044067709507248, -6.730556923256776, -9.795952849831766, -9.684481165375217, -9.79887567698832, -9.969307641238926, -9.863951664211498, -9.762886219926436, -9.569922970516808, -9.181861674396888, -9.001372122289135, -9.787369169270887, -9.512218069632537, -10.349547072195367, -10.008255966407113, -10.48934142829106, -11.664093587756378, -9.163731693996358, -9.574367295134325, -10.255915532742948, -8.380311476646423, -9.624306330096655, -9.197126187574197, -9.872372599979576, -10.625682065709334, -10.826453487035943, -9.600477109721142, -9.21408642029308, -9.751438142509643, -10.404320247095804, -10.75618685747917, -8.848193109357101, -10.222347914308582, -9.470445363273248, -9.898177115457171, -10.117539069545725, -10.50048804778683, -10.549194249894965, -10.050972889650486, -9.611240527225231, -11.439562085920286, -10.457374515778412, -8.548027963348531, -10.133049531146272, -8.105208304891352, -9.710100303337654, -8.749769608689922, -10.231902713843024, -10.268451607448629, -10.642288148521317, -10.115112346631067, -6.202273962584899, -10.024607107598978, -9.75534862730249, -9.009490950107894, -10.064455400287056, -10.280712779625386, -9.820944588361117, -8.698417732514333, -9.792303668804886, -9.682048496772625, -9.190074559936768, -10.98051801938661, -10.30064797215698, -9.583623080938713, -10.364652373813028, -10.943573590818819, -11.39313796417067, -9.960160517599567, -8.568945193197385, -10.530385945762804, -9.519512162027173, -8.340461077646552, -10.650086359311043, -10.266377324367692, -10.167845106224002, -8.95389635629998, -10.317225998154564, -11.410468593503008], \"y\": [-9.414474788018724, -8.871191361210341, -10.450578211025551, -10.378230466454784, -8.551892951202731, -10.566159071880794, -9.106838763841882, -9.878542080730416, -9.656497066263421, -9.040546960121496, -9.573336668990788, -10.825538004137702, -9.346632327572756, -10.896713718511824, -8.806829382964203, -9.808194953812631, -10.219981037832476, -8.894498554783905, -10.773862578345808, -10.144035922184901, -9.410435297143513, -10.200657833455002, -10.123562154543103, -10.319021319194338, -10.611665634715882, -10.336915094910172, -9.295841914749424, -10.620145369526526, -10.526532153518465, -10.64415964691545, -11.49878863656655, -9.692509880329242, -9.691373974913436, -9.151996461158149, -10.395890983285195, -10.1439123147501, -10.971698511560698, -9.300178350894111, -9.716078478768639, -9.209489230152926, -9.933029743847793, -10.148441757913996, -10.475337785881692, -9.856628810604155, -11.566953035995594, -9.542017128227553, -11.173389259134197, -9.221208729416698, -10.42037311078614, -10.63004058085372, -9.840341440949057, -10.557631750274433, -10.241948990735336, -9.530918308723939, -9.360298546939651, -10.163175258113192, -10.132551171482845, -9.345667510782276, -9.652544350647087, -10.320925697850564, -9.059683411616877, -10.3631092770612, -9.925490090932628, -10.223615518392304, -8.789496953978103, -9.928306737707604, -9.22183530988362, -9.901146121006233, -10.54612758449752, -10.62654444411121, -8.630846940841982, -10.157564599911547, -9.85223249520192, -10.702384393632272, -9.469861410927129, -11.255630513580112, -10.153806812899207, -11.094582618214192, -9.503046476915351, -11.114617857940381, -8.70142684192491, -7.716683471587367, -9.954876986397599, -10.137919441712318, -8.642828805368351, -9.565712150300886, -9.312922584408017, -9.68192608243923, -10.025084763152542, -9.410372170193295, -9.453350835901151, -9.799353759689584, -10.109427123573232, -9.93665322881282, -8.928594624685262, -9.617146143899348, -8.570009010114834, -8.861288787333415, -9.889564368917556, -9.986902372033818, -10.837941874668514, -11.994142555929045, -8.59545895740515, -10.024454357766208, -9.258776455003096, -9.100167172465618, -9.77879032781034, -9.44467854139928, -10.316704617947394, -9.522330726053223, -9.560447232849317, -9.257034570268786, -10.067163524645677, -10.436328570102539, -10.322454764615793, -10.380260512786517, -10.22870988970119, -9.25617640393623, -11.762695507004745, -8.886624255348833, -11.170701602120303, -9.947857397607988, -10.210423217810861, -10.956894413085397, -8.799677278512274, -10.821378689165925, -8.716675608671542, -10.530443372574004, -10.867375927527894, -10.458422747941665, -10.298311733871657, -9.716033510956057, -10.33164307020017, -10.143499845233418, -10.019271414460574, -9.614824480936589, -12.14785183284104, -11.955193835184003, -10.572098182121207, -10.536425916141292, -10.28084316549324, -9.330586678103275, -9.498023962376065, -10.272375590858283, -9.107564648487077, -7.8142719897682715, -9.862562071719932, -9.233016808812426, -10.195229905097822, -8.66397370199361, -9.291651185001164, -9.370088781345583, -8.799269892784944, -9.376311859962808, -11.917634772437854, -9.789308648356483, -9.071104796971694, -11.465978510633116, -10.833110652481466, -10.32955352448953, -10.012830806483327, -9.993784528815482, -8.92449005174953, -9.799509979954147, -10.425370145326802, -9.57776610224608, -10.45920768352574, -10.028364796321426, -10.581603136466175, -10.750562860304376, -9.390151526655327, -10.21127916292504, -11.918367401160438, -10.337215111705689, -9.501814622944902, -10.34522352678397, -9.450106197797735, -9.692235391897006, -10.048978560554309, -8.606716607866737, -9.649977390060437, -8.801548061712692, -9.885830542254281, -10.214172578036486, -10.348225102231101, -9.909436845161611, -11.563352455320889, -8.854025232420838, -8.500964375128317, -9.577556477964901, -9.457655970538957, -11.101842350787166, -10.49484630290039, -10.487199955566192, -10.074042304467573, -11.361870707123296, -9.373573768148171, -8.44853188890717, -10.36816952280717, -9.528227299441554, -10.820070800202673, -10.743744176317092, -10.805521937009434, -10.304161235115858, -9.874955736989037, -9.514172270604757, -10.292719263007548, -8.506294502333244, -10.19515195503517, -10.94835154493298, -10.758822321375746, -9.128186293114865, -10.2543499550349, -11.032116184875823, -10.821602466153806, -10.629804931737185, -9.670283786342408, -10.838358333585235, -11.476591959044786, -9.52813722595488, -10.334989830645384, -9.117328141369685, -12.00152638411307, -9.823752341135135, -10.07887588152502, -8.691598193013018, -10.254018260994274, -9.74270488502755, -9.934542093627789, -10.178543159540638, -10.27294019844016, -10.282292069077485, -8.990006098421818, -9.595141251332635, -11.098375172150352, -10.277346157525976, -9.564182504169906, -9.470184944123638, -9.143724921957114, -10.20801349441753, -11.4623092094582, -11.426026356164147, -10.536291466744077, -10.012819645328548, -9.384713414382594, -10.366739754097074, -9.707893910837672, -10.284950901862226, -11.180931273550659, -9.720692829036523], \"z\": [-11.321524938519316, -12.801262789411203, -9.443348977909295, 12.276416273766413, 7.957509814454749, 10.717255024333925, -11.809995146110113, 12.480088129406685, -11.189567081495237, 9.079215754748889, -11.768282272635464, 11.366739597877425, -11.199513029518865, 8.875375362387416, -12.155323000767222, -11.476167476623075, -9.570579984644517, -12.504211384531624, 12.432420136478394, -9.896479783859041, -10.618507308741073, 8.368629651495738, 8.92886543670606, 6.65647037324389, -8.39676706008761, 11.725425865966656, 10.125305734705178, 11.744791415583334, 8.751916490581266, 12.918620475944259, -7.294123804324063, 8.052375864222402, -10.918901355111087, -11.218901126445234, 10.46323141874637, -9.160726487063961, 11.73614495219766, -11.592551662221403, -11.204947862928362, -11.4548968631615, 11.296840827299933, 11.103978879218362, -8.934199766823536, -10.722950284748066, 10.827591330228351, -11.358411912053455, -7.850119472313121, 8.841149370576568, -9.026958338908068, 11.20421068757184, 10.066607706455365, -8.734744791196928, -9.736049455155692, 11.713198401824245, 11.556180600423172, -10.110098973425194, -9.428358427950318, 9.629238096214348, -10.827126601023144, 8.599922842446958, -12.17551493359106, 9.57740681525652, -10.563471373974647, -10.233268911945856, -11.916086139250753, -10.842285721666777, 10.797277846462809, 9.328888652371829, 8.705866720897074, 10.879571485622831, 7.026399651389278, 7.928388201237649, 10.24916580783286, -8.127451279294524, 10.993028958170054, 11.445567404435337, -9.606687278750488, 11.757193133703765, -11.728682328427489, 8.512346307167302, -12.823472798471979, 7.990700514405256, 10.8284783587431, -9.484952942243154, 10.578681560898644, -12.070046589606402, -11.253070971657024, 11.904119875401834, -10.218701999730635, 8.588001419095768, -10.899294398675806, -10.749691254759664, -10.062447764537692, -10.898770782876696, 8.116230135719924, -11.100924150156633, -13.223691779312556, 10.81975937186296, -10.5444660857534, -9.405443661344334, -8.180201901522345, 10.294535092665855, 9.058444553630562, 10.822723599753745, -11.839381159347816, 9.750582780873595, 11.178796737447026, -10.917602950066112, 10.742286341946995, -11.61116934350886, -11.269446607015706, -11.632003541074546, -10.842909169916142, 9.794787677943035, 8.80484587102878, -9.058212594463567, 8.28928414301226, 6.55120589713982, 11.214670659757244, 8.968187247024316, 10.58181957363036, -10.395713368494262, -9.94673807055788, -8.276210687075523, 7.848618813681933, -7.917863297227567, 8.607843744394374, -9.00521679296003, 12.554291324068767, 13.676908094415587, -9.670653850743895, 11.128491693785353, 13.076224723285005, -9.883582130267433, -10.653175280859925, -11.232372647774847, 12.322443103528013, 12.545028435458685, 9.548805019636427, -9.12537949089612, -8.631320464792152, 9.794583435742062, -10.347601731320784, 9.585642141065557, -11.842303468299733, 9.103759281257616, 10.7700942568796, -12.270960066334672, -10.09195943557468, -12.312210183443689, 11.206598189621786, 6.9376483588420275, 12.935765755386788, -12.161713216010455, 8.390449364267258, 10.396769501072288, 10.895533990422319, -6.1969989452209475, 10.860168625005397, -9.474074557905421, -9.80812220257779, -10.064584339303849, -12.653376430115312, 9.216979542393997, -8.48208572423271, -10.763220978198861, -8.799211400652728, -9.383354949152235, 8.091757382928938, -9.038513388836483, -11.067140858014149, -8.803626630529315, -6.310849379879237, -9.066928419511902, 11.135351067165402, 10.268810691361931, 10.25555640116887, -10.93729705051776, 9.651307660282958, 10.689531930356686, 12.77063146426802, 12.032966580878544, -10.49974851898372, -9.207737812402513, 10.51370595396542, 10.019720318717642, 10.634597616204339, -12.222446173402938, 10.551338465688364, 11.928282167731002, -11.751800173496816, -7.713160277210466, 10.679086498545972, -8.90329900425013, -9.93315573319499, 9.648521932023625, -11.431496016307307, 7.382552670959727, -9.233214729524102, 10.576572810233412, 10.672939925005284, 9.534220758522201, -8.15575649389147, 9.920542450214995, 11.303358956582377, 9.358596218702933, 11.256208164944823, 6.333222524900375, -9.572726476203577, 10.699562473308337, -8.131191260644249, -11.442660896621655, -9.427199108103983, -8.109930382540602, 10.985164962291801, -9.458142041659576, 10.040388866077317, -7.987457493449183, 11.658720048646018, -11.331122333533527, 7.8712466281615985, 11.504657503622942, -6.216531401718825, 9.33686394981652, -10.002841384477758, 10.877902828695435, -9.334866057093478, -10.278651667263299, 9.60461440880846, -10.274895881129174, 10.38010634521988, 9.8377585427967, 10.674485896290548, -10.734441070993068, 10.472047206564222, -9.136907602409456, -11.611588400068984, -10.938115962811821, -11.726770512569514, 10.713861478716176, -6.094073820551628, 11.388061599053602, 12.185969061523254, -10.51342130862381, -11.350944228822888, 9.318484448367169, 9.984172782837927, -9.261102770447444, 9.596600535038393, -10.670365779564165]}, {\"marker\": {\"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 2\", \"type\": \"scatter3d\", \"x\": [-9.676273632184035, -10.849642225290953, -10.091468610410631, -9.964544157014918, -10.175188756327074, -9.102720985767762, -10.597755575694224, -10.098997820804788, -10.038528874714887, -10.820774808377, -11.327334941633609, -9.459068869207341, -10.36204771518624, -10.831847107696483, -10.171414144190335, -11.733392053565279, -9.036897551524712, -8.732157845717888, -9.150015285968479, -10.391997098595278, -9.399656014120204, -9.54360489295846, -10.667162539625634, -10.77300311357224, -9.227768985598354, -9.733288918882446, -9.152068917215413, -9.27157687823604, -9.82755318038457, -9.745185560989125, -10.893196538338742, -11.298596777354335, -8.803569264776241, -9.473521497669722, -10.22797692322168, -8.974115783589895, -9.91911044974907, -8.973765753134773, -9.327260355018357, -9.837918556799313, -11.203406797880204, -10.688901059419676, -10.302313523374293, -7.809224579049461, -8.579687115249774, -10.568593191283693, -11.703169761581194, -9.427585035030654, -9.553374181349355, -8.926247511330502, -9.529498610434047, -8.550696697298383, -11.140942087716333, -9.859055387010821, -10.048640945577668, -9.609015395400773, -8.072507013419434, -10.485085409469706, -11.585502248834628, -10.91087774222233, -10.672848554462526, -10.56363218908378, -8.099499906760277, -10.194901433260148, -8.840456360345353, -8.370488295475596, -9.540095810351394, -8.938156753722991, -9.999460095885805, -9.756052175675745, -9.108651339369004, -10.457300790983806, -9.851474584939657, -10.976586511962841, -9.450365635639534, -8.868311264933986, -10.792204403571539, -9.9992406039877, -11.861817860605653, -10.740264921570397, -11.014283298321445, -10.50513193145921, -8.830611381207271, -10.308987773531937, -9.262969774921398, -10.547193093411712, -9.533505596253876, -10.189722215107981, -10.5240329890633, -10.957537602506829, -10.187977084116824, -10.33913688407543, -9.388332195191216, -10.315951224247843, -9.553703994237454, -10.620098072427027, -10.276027856557441, -9.58819223801995, -9.81447365701899, -8.77763770827911, -9.199123037116468, -9.297921880953, -10.488255991691034, -10.75217156274189, -10.354091927595604, -9.876900951835177, -10.173351832229374, -10.128064622764237, -10.382688250735011, -9.792534290050144, -9.760453756598006, -11.102850017207976, -9.734848187448918, -10.292176323860257, -8.054754649507467, -11.05145983639285, -10.245082609016233, -10.553416993309597, -10.901669226823909, -10.15392003833856, -10.321666923585354, -9.346219103957036, -9.1417298583824, -9.307199876334817, -10.052865804417749, -10.735334472056044, -9.416274225643862, -10.982976101706189, -11.545708794570466, -10.292677358296775, -10.098867213134392, -8.786150187845346, -9.369156780994016, -11.389387906512127, -8.462531910397226, -9.792146628303563, -9.878216663296417, -10.945238442051567, -9.197553442038746, -12.983134319126071, -11.209009583685212, -10.449655614069439, -10.752324004713916, -11.156280896362595, -11.771072954379944, -10.584006234116517, -11.68335437991633, -10.846993200736595, -9.003564303409751, -10.3667549284234, -10.290391699611508, -10.039327013926856, -9.220741911612711, -9.534231867586596, -11.367648167877757, -10.127868067555282, -10.839390331197233, -9.30307707052357, -10.485753897244958, -9.376110140115614, -8.62310700884132, -11.266226116930454, -10.716828955053282, -10.443343863521271, -9.769605606961306, -10.184572000296246, -9.380403668951967, -10.498009643507492, -10.771374653608872, -11.922928586287947, -10.284242242710937, -10.30438439640996, -11.535104882098578, -9.404753671900114, -11.719411802657124, -10.985069757265133, -10.386045683574537, -8.966967805614681, -12.022834651572413, -10.538493038683537, -10.06191172854636, -11.786122247732706, -10.54117432141382, -8.27328544630274, -10.769681140093606, -10.099716366914395, -9.379049167884114, -9.911490074084888, -8.947402594494736, -8.686844506392994, -9.50915703371908, -11.236669306025576, -9.588447855638343, -10.003438213270753, -11.169590275702175, -9.775705321226715, -10.488508067312193, -10.109108919713332, -9.278624358959219, -10.00573581734842, -11.771599036906895, -9.594747336628316, -9.836861367667883, -11.10875750643168, -9.779969105866392, -10.360276610409633, -11.309022954625478, -9.29164347232242, -10.529710299055742, -9.342236942515846, -12.02760870184944, -9.458970224003792, -9.659754510470645, -9.805349510720921, -10.511107379261405, -10.182231765537805, -9.872876047435573, -10.279016378125945, -10.704360958981223, -9.703567026702494, -9.017144714244589, -12.587315959649743, -11.934170427381554, -9.656103488541273, -8.759191567746377, -11.119530379814414, -9.008013070637293, -9.975658424518356, -10.581835410135975, -10.866563847835103, -9.03645363285775, -9.561553112364892, -10.90043067908741, -9.327422168499321, -9.374989175186267, -9.57092104876612, -10.76158841725035, -10.577888728827794, -9.234664189703235, -10.184948077328333, -10.249015722004867, -10.819772120603051, -10.612073439888452, -11.24863973592269, -10.095252420417243, -10.505315039507803, -9.716944792135276, -10.939400259550126, -8.399812175451382, -8.940818127935238], \"y\": [9.388452459615683, 9.65291328321569, 9.225514733276121, 10.312921747013005, 10.13922630494194, 9.516575155227804, 10.449045708470436, 10.387845254801267, 9.72286556343689, 9.626081813725602, 9.638469043564841, 10.61422427531148, 10.384942151908799, 10.306563591246757, 9.811765654139371, 9.991845875905167, 8.845650260034951, 10.080738605206031, 9.868170700637982, 10.294017346595997, 9.694244451688006, 9.95788200666495, 10.41651198134106, 10.090237988795222, 8.375434581505052, 9.540972963129974, 8.89157759359244, 9.024990474702307, 10.525855210357518, 10.072035122070849, 10.32278360010552, 10.612785751657356, 10.11775036262446, 10.107571532016287, 11.703700471220415, 9.153271725055204, 8.836173773507435, 9.111568344442524, 9.571154848571105, 8.591746000616979, 10.442308093140827, 10.958601235074749, 9.930779598086131, 7.6774827833045425, 9.667564869901328, 10.418961569170998, 12.520988993398568, 10.207703491161903, 9.977735980784821, 9.23346885370601, 9.850327696538017, 8.828591239529118, 10.323779724692622, 10.006201876114167, 9.945263121233546, 9.056471693364719, 7.369968466864082, 11.638638628010677, 10.551929637426408, 10.254669617378834, 9.620817060112703, 10.05993686044434, 9.840031659903518, 9.03641367481536, 9.867271476020964, 9.23843391386628, 9.517333327318784, 9.19068159534645, 10.39282161624614, 9.844997131960637, 9.921319478471721, 10.29218943437155, 9.822540266094764, 11.681474081954889, 9.741135501580827, 8.663309429383476, 11.103467991616828, 9.879819323174049, 10.764786409821848, 11.260717361461243, 9.986732748845391, 9.370587855581178, 9.609973364428276, 10.086618423582793, 8.13955188044926, 10.835309788476783, 10.21911941141614, 11.266164997053519, 11.017155307270446, 9.903622753232293, 9.877049481935586, 10.48524223763911, 11.086054496377448, 9.6402454676144, 10.206627360875492, 10.51990232794008, 10.3138918901979, 9.965774444800154, 9.161685267472555, 9.668488316315768, 10.191161635342281, 9.742378959480464, 10.771236292327933, 10.224424819033208, 11.866416502201915, 9.496610904354808, 10.126430605437239, 10.325449465502265, 10.179251368155121, 10.454531865092074, 9.096860978629477, 11.162405393706342, 9.67557659249022, 10.033562116362301, 7.6119727427889625, 10.231664746830152, 9.978440689187012, 10.060395141421202, 9.198863310822022, 10.950860790320478, 10.616733179817539, 8.977058830781402, 10.147828147025358, 10.057523669156275, 9.82703995167496, 10.08240757777546, 9.533323475226181, 11.19948151660048, 11.310306642711883, 10.48459415182453, 10.275251296473497, 8.306788372794502, 7.794194167516263, 10.569267349237078, 9.038192376467748, 10.024708738880495, 9.694737083960632, 11.779648060303096, 8.41580917273884, 11.657308371326042, 10.242543258890207, 9.761414124960474, 10.159269276867162, 10.109249333073906, 12.785017356167986, 10.063730894705573, 11.06066260749208, 10.786124085561818, 9.882347151012018, 11.232995176276448, 10.897495741888164, 10.17968732583101, 9.906070887375837, 10.136166171563824, 10.382629016956995, 10.063012436023861, 10.184205542452904, 10.216242624785258, 10.689220170119421, 9.494428810417588, 10.056046261557707, 10.225423151919452, 10.844927009413995, 9.98741200827527, 9.55324783790259, 9.169346182057797, 9.883088519393688, 10.129641653330863, 11.930851753343887, 12.926885883882818, 10.008353946294765, 10.699690836059524, 9.37535162603345, 10.419190006260047, 10.739839794118707, 10.262651043306155, 9.770238661977462, 10.2128884665844, 12.58158799612637, 11.328377732511136, 9.596332230916085, 11.039563536720287, 10.427083590242049, 9.723744702233509, 10.694798684773504, 10.015693093568874, 9.266572885805294, 9.899305727844991, 9.497483739702686, 9.538928879370204, 8.82423089048687, 10.14754358324927, 9.991115546360675, 9.655122464969146, 9.816674658055579, 10.113314287908597, 10.84835295189557, 10.171899590313044, 8.518561058042248, 10.179906544258998, 11.2654267833142, 9.635165518589616, 9.691238957113933, 10.31267659689393, 10.384772968849564, 10.578740133528246, 10.758262755644758, 9.884913796659681, 10.024672335179886, 9.76913330317318, 10.481037742126228, 9.539331400189647, 9.894830164771506, 9.816784651080102, 11.187523177369668, 11.064043954459311, 10.284913317800486, 9.716504489368619, 9.858141257530649, 9.859591582797345, 9.172125341861152, 13.460214537292108, 10.177390537162973, 9.785339510725775, 10.269943629399702, 10.1066074116841, 9.896547882189331, 10.053677209495541, 9.884505436002511, 10.300120448557342, 11.194161519612184, 11.057855318898158, 10.803543702967751, 9.060965376758254, 9.531546102916023, 9.105845380737316, 9.921611460076043, 10.423532047591989, 10.044703336753134, 10.094339803500375, 10.375219313130149, 10.392334305934021, 12.098843975612624, 10.186166080621307, 10.195326957820367, 10.593215931055516, 10.544165892181102, 10.091321464109123, 9.054184441668845, 8.734138038663577], \"z\": [9.395759640316195, 10.561278277716198, 10.445816184139236, -9.217941459846475, -9.869768846480031, -10.09929714354771, -9.616834800921604, 9.67643089911391, -10.720191560821057, 10.126233524481162, -12.437399387179845, 9.901000731334719, -9.494680116957076, -10.25185722524443, -10.664424386191877, -12.049461312935833, 10.082681681107493, -8.319247574269792, -9.329061004184076, 9.828095941365266, -10.032393024953485, 9.849063314549388, 9.929226127192763, -10.698375473098348, 10.405526875878108, 9.87021286915959, 11.243125921879997, 10.814850424019026, -8.526820580366643, -9.533055576304243, 9.765867699127377, -10.053007380939663, -8.320292265408431, -9.103937327636228, 7.990210057909017, -10.82354809643214, 10.339448187919219, 10.819792153388034, -10.247966331741981, 10.65062095101042, 9.990997508605426, 10.1814320498767, -10.522635954449786, 10.686629877179962, -9.128224483506786, -9.642223842451624, 9.69705358461525, 9.43269066100614, -9.515101211302278, -10.599169791718092, -9.803911522780107, 9.884627637572798, -10.563614655703592, 9.910975490299423, -10.189296413121301, 10.64138166688523, 11.776400174615741, 8.787877614395988, -10.52174600448837, -10.4706970036898, -11.704302504509414, 9.533430825713683, -8.172866957627084, 10.400272757443783, 10.103516723409925, 10.854307228390336, -10.61862934400618, -10.715872125466365, -9.045157334155007, -10.092718830016338, -9.149730038135548, -9.837559710015885, -10.240241693213692, 9.730411645969909, -9.98064665850427, 10.602088099507686, 8.877171630123215, 10.471156458458966, -10.328113447812141, 9.834968885642736, -11.202137761837088, 9.994274675418069, -9.580687187823486, -10.152549244652189, 12.278566640148666, 9.514768543785426, 8.63854726543665, 9.615723638592579, 9.202838218944528, -11.35765097607601, -10.525358912892656, -9.239977141296016, 7.736749297794436, -11.24222637270839, 9.842438464397809, 10.243751998822429, -9.563975882753402, -9.595298186590906, 9.990942797203148, -9.359819115058816, -8.595170755314571, -9.794793188887105, 9.240589297590871, -10.343769221133966, 9.251139976390755, -11.057923686790172, 11.828536445591437, 10.673934714784492, -10.005551437122557, 10.76945782063596, 10.746986225542356, 9.5765321686966, -10.468260326838664, 9.442632202983484, 10.88162711824105, 8.991346316320037, -10.352342337645979, 10.612032661092982, 10.81289552142509, 9.521381314428991, -8.886452498346564, 11.047455575277853, -8.643494648505362, -9.04724991901524, -10.488997052647692, -10.662654862517714, 10.714688431940177, 9.494674807470435, 8.67094498899603, -9.169082416359132, 9.714005235073364, 10.931397855741098, 10.611681211038416, -10.236784672817672, -10.526802768182703, -9.702622216465715, -10.611188164650166, 9.218678753338667, 10.083914173987354, 10.14381353100098, -10.816182473514225, -11.104705109797024, -10.485291584516016, 10.196475052991609, 8.689906645342958, -10.544433899734003, -9.41527720593815, 9.122994353607178, 10.839796244919908, 9.101801432935273, 9.536461432700364, 9.48725672123759, -9.308903750653387, -9.112563752290637, -10.677921976481166, -10.004238333807487, -10.53228570211838, -8.654239476089932, 9.60600424403018, 10.021856529607284, -8.251711323873733, -10.940242551900056, 8.93619991291217, -10.545295261980733, 10.287225835331645, 10.583407837910858, -9.566612507752035, -10.266052183755912, 8.389491092748806, 8.545828167990889, -10.314902330973966, -8.679159660663766, 10.021578984610176, -8.282560327171733, 9.429389052151539, -10.534679730413469, 11.500372270171582, 9.326221009071546, 8.777383953159982, 8.864616304338188, 11.347318410090686, 8.881958561915821, -9.600406959372267, -8.645025281112638, 9.555736380209378, -10.087816204160145, 11.222104427849693, 9.684193152054249, -9.984020222922194, -9.573002298199627, 10.389062357268617, 9.596149780537889, -9.530412931416777, -10.838346217834781, -11.822361658140073, -9.464234950194003, 10.079244797437312, -9.708023824320414, 10.729705632063464, 9.251969583513764, 8.375451239284871, 10.55365659856474, -10.548949036794733, -10.556467199140842, -8.811094362258848, -9.033015910556509, -9.703910896588761, -9.453885078590298, -10.586746875107107, -9.789310444086178, -11.218246986979844, 10.118094812385323, 9.628878618696243, 9.364097291170648, 10.697886341932513, 9.80224604292499, -9.161628524909169, -11.021882029709015, 9.756059898750594, 10.743328156000524, -10.847520676450204, 8.223629857482994, -11.832760935483964, -10.119578465285102, -7.8845891637053995, -11.040686379378023, 9.463719303649864, -9.84873213754812, 9.828817774374198, -10.293385296883162, 9.715718551425923, 9.556715219640726, -9.105073012231498, 10.468875481492958, -10.40510689110547, 11.189185290602524, 10.30959244051709, -9.655820048267282, -9.012549805623944, 9.785648612041498, -9.394199736797257, -10.009845144908839, 9.174490410670426, -11.000960783957375, -9.637589602670262, 10.258091239412414, 9.510271009538279, 10.23851534372761, 9.722357812704034, 11.137478037034727]}, {\"marker\": {\"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 3\", \"type\": \"scatter3d\", \"x\": [9.587105408867984, 10.3056549397098, 8.845078687408314, 8.795031469552612, 9.753452032750374, 9.64638937006856, 9.894802175017803, 9.452006964895515, 10.097184247004689, 9.964831620971683, 10.199156943637306, 10.780333358003563, 9.36020068617493, 9.682349236980968, 10.13006138798515, 9.502591734684756, 10.207917341620869, 10.335097592010284, 9.398647641545638, 10.069079173166998, 9.417083817621458, 9.432867178188603, 9.969736024374408, 10.332601677772267, 9.499850269438802, 9.994782217086088, 10.636790836215075, 9.534790720123306, 9.783966665809173, 10.29139783373768, 10.332922548453055, 9.57464073867036, 9.530313994964688, 9.33132806511532, 9.453033543518453, 10.748698254050362, 10.730273616073914, 10.230395742787659, 10.549240568084251, 9.9164999545915, 9.448618524512328, 9.883470148562004, 9.287121134962613, 9.509955429833928, 9.11831045126577, 9.630419849271163, 9.530937257381904, 10.304256917560197, 9.776252519257245, 9.032656269168463, 9.092419039626675, 10.596910422280327, 9.042896325502923, 10.310558037588597, 10.86886132824389, 10.505070803955528, 11.206545723173791, 10.112117024286576, 9.988167479425764, 9.214033126864557, 10.23911999162587, 10.4474203452746, 9.02549139733922, 11.862530784174853, 9.920616595347052, 11.13959997369233, 8.814399424556589, 10.71457864945513, 10.213452455147161, 9.506090287168842, 10.089169224925758, 9.52482949772942, 11.645116850505572, 9.709316277757823, 9.497353836727664, 10.562444605526654, 11.80333856838252, 10.86920556461631, 9.563640732193651, 11.099375163326027, 10.16874164419894, 10.584123317004515, 9.282061374502534, 9.526911366043963, 9.4325759456545, 9.763178645832177, 10.36972364579323, 9.812989957137287, 9.879556803185858, 10.304948585345969, 9.995419987737412, 9.139428592845693, 10.25556460029938, 11.648208954649988, 10.327511321889634, 9.212187483972448, 9.888576664561606, 9.727479870487924, 9.859825141387942, 9.467807808685082, 10.312167124977343, 10.107767339106047, 9.16543906608627, 9.508667519828162, 9.216699634841309, 9.888199428302405, 10.674723501872803, 9.87001836141431, 9.16318614269275, 10.151606696251914, 10.16461794065232, 10.049148465559233, 8.616573331404298, 9.15336828860562, 11.16366031648283, 10.984729818417799, 9.923989709108154, 9.109749378191, 9.016964283518895, 8.39031449212147, 10.278586052843169, 8.810863614539453, 9.248571550868082, 9.510839635738533, 11.716683710833642, 10.343088412108925, 10.720265138935979, 9.268839214049699, 9.754632561564827, 10.759504816060385, 9.717247481670368, 9.661053165307166, 9.41363691835018, 10.116525591008052, 9.74358107703149, 10.366313827091986, 8.054642712185297, 9.30520929518176, 10.150367587344345, 8.605209784735468, 9.286820185005688, 11.192476909380307, 9.408918255497232, 9.61701663758051, 9.013321294904861, 9.231416667358804, 9.382213577807772, 10.20478237795426, 9.191533706711486, 10.621295819430022, 8.692302220857126, 9.934314744672548, 9.311108171027662, 9.418160572723481, 10.768745781693106, 10.045279886068705, 8.987712401538465, 11.075172275257385, 9.817840655154333, 9.595127294401651, 10.047119296189244, 9.919807885977944, 9.993464665831784, 9.751869875466419, 10.38382424485071, 9.89778505282249, 10.996105225395121, 8.514610234525398, 9.198096587561304, 8.849287081831175, 9.570126635260419, 8.874041662463412, 10.431146720932091, 10.207230938936119, 8.221930389732853, 11.120195368023314, 9.562910240244335, 10.326568034996603, 9.787518003320333, 10.577792521034223, 10.262314270666135, 9.971411433625208, 9.886444419805283, 10.263234983031257, 10.525645041986971, 8.36038496939352, 10.096966323402153, 9.941370969064522, 10.076576345668201, 10.012650076237275, 9.723906167979012, 9.92861452831231, 9.886850865082545, 9.365689008066003, 10.864247969848746, 11.019643118584765, 7.740667812491139, 9.612163067970048, 9.43093593377309, 10.325423297483406, 9.805860532927923, 10.102439485036383, 8.700054487353835, 9.576622533589283, 10.138091276174217, 9.560841835199042, 9.780429493018396, 10.094987746513508, 10.308611854877988, 10.624372663868904, 9.90632851724945, 10.126508192352876, 10.134797160813175, 9.427016793946944, 8.995306991469842, 9.348244051133998, 9.709171343546041, 10.950725019239568, 9.987412514673546, 9.535722219462283, 11.102951358111055, 10.24506942742027, 10.229815761554924, 10.709485767383688, 10.695646970050497, 9.80582163857259, 10.580901754244543, 10.864774282164282, 9.689186310497009, 9.069161788914558, 10.706896781919498, 8.762757023774473, 9.957756610972666, 10.190978376107836, 9.585926115039529, 10.223676900527163, 9.405993148201535, 9.97586372420359, 11.16329719839164, 10.579880110913066, 10.272559141214064, 8.9025424785017, 10.047838367682914, 10.490536408811595, 8.519606912709582, 10.255529697165809, 10.15606434647566, 8.957582518505035, 10.528404869532128, 11.288932467996439], \"y\": [-9.745018055992164, -9.38981336633088, -10.88061947129561, -10.414068185829784, -10.199987950294307, -10.806861492958284, -9.703966237522886, -10.987703205390757, -10.259517331449874, -11.064290106744082, -11.23080559458895, -9.77667512422229, -10.744605474224059, -9.984023970606128, -9.15938178182404, -10.701636367708085, -10.197682886068911, -8.950118668952864, -11.749775774684533, -10.04203244859926, -11.516443678895081, -11.945739976430035, -9.860379855215735, -9.487556614679942, -11.202808365912682, -9.81395236088277, -8.944922836059902, -10.089891396544223, -10.302725225499362, -9.85740336641165, -9.01790553047532, -9.747410637957353, -9.581421056054038, -9.901026424836829, -8.971913155935937, -9.713013562723365, -8.86314134565592, -9.176170926758587, -9.199105984553139, -11.011208802453277, -10.221755672718718, -10.544682952398158, -9.867277563547981, -10.394772791457028, -11.014963586361128, -11.112382827771748, -10.622924370066158, -9.740570181417631, -10.72501668681571, -10.564405967460615, -11.406250305934623, -9.108316470960096, -10.577054157982117, -10.142370832262582, -8.686586771306718, -9.057974536525203, -9.858899112670112, -9.21742657124703, -10.103285961506211, -10.928632125601691, -10.228727291246942, -8.96920038966175, -9.466537054644352, -10.169009818259914, -10.24879968668087, -8.345205955540942, -10.758714446201532, -8.522954767842352, -9.736923725163823, -9.919361652735846, -9.666328894086313, -11.24933047538321, -8.485522525249618, -11.57392512075904, -11.582821349399289, -10.385550249344753, -9.282876741448172, -12.43226707255505, -11.308441705489297, -8.21302095878094, -6.772375992343666, -8.82095191471281, -9.642395650057201, -9.888734304651114, -10.408817318118832, -9.57303037389299, -10.62974432781467, -8.261001051908758, -10.394474981878128, -9.624574785251262, -10.243449716390279, -11.936849408664528, -9.187234476406267, -8.493429257635505, -10.939527340515696, -10.044201480093928, -10.039507129009703, -10.194688595309433, -11.046561220060195, -9.354750008512482, -10.113612896988668, -10.30664084002812, -9.60086546413247, -10.08373104523049, -11.33685405160261, -9.511467042425426, -9.39620082024843, -10.646899882685402, -10.000352477442746, -9.97008507736012, -9.248137056018491, -10.391630301261936, -11.393157357516676, -9.82258104054063, -9.112801465705681, -9.71775667715974, -10.374412465250922, -12.889279146185952, -11.222763199421944, -9.827598224747137, -8.040854798391571, -10.790076330464341, -9.807685415918932, -9.04707136699329, -9.655897017606003, -11.445576861838266, -9.445513543681269, -9.584376666648657, -12.809781294316632, -10.658009087799089, -10.377318958552163, -11.356255786545015, -10.473237420553561, -9.443716929090536, -9.09872685451835, -12.05220941818283, -11.244621006263207, -10.61908451306797, -9.193517516379421, -11.29129819892377, -11.469450440888577, -9.28702911656345, -10.631580558882483, -10.647509374216568, -10.656983141465105, -10.69104949099014, -10.278151307221156, -10.746228258188523, -8.754250555745422, -8.01499482494053, -11.19786374254676, -9.280533419058386, -7.571305771828342, -11.566667604180365, -8.811316854390755, -10.988999148144112, -11.114552135329284, -10.10711826256995, -9.158593318675921, -8.596756112924787, -8.950653045666899, -10.701377067392006, -10.20242602705006, -10.206096574191653, -9.857734848861776, -9.658157146263603, -9.350466036745198, -12.29744566618654, -9.778596684781002, -11.910189406569707, -10.06849818776197, -10.567900832184838, -7.546353180766827, -10.438363278730503, -11.734266397257171, -9.498434434425908, -10.207097796983673, -9.800428000399405, -10.437143585694994, -8.385201867593276, -10.386609150664484, -9.702157324396715, -9.261685978756802, -10.279729584768472, -9.782208245091843, -10.955716105977631, -10.085959095707702, -9.36766322083948, -9.993220699193571, -10.51356349270015, -10.246193483527692, -10.605771573237615, -9.561749469174996, -8.345509539122514, -10.25112551002668, -8.817734154458561, -11.588236807046375, -10.382389407204064, -9.547118753048416, -10.173400680858236, -8.51006093963308, -10.71055224217144, -10.779883037026925, -8.272254927367658, -9.010483577468722, -10.218586171163018, -9.56868080615324, -10.428961201958977, -9.943121280454235, -9.33617757972742, -9.542695693413567, -9.428267318762893, -10.448594979618708, -10.318794140211327, -10.181812153658734, -10.069908765588847, -8.858557269143265, -8.472345683714389, -10.265418747729662, -9.345387484582629, -9.709686262366965, -9.324316604738923, -11.215443555696012, -8.099682997222146, -10.023757447438943, -9.76288241097925, -8.75334479584485, -9.47314878459208, -9.7470276057176, -10.6469103819234, -9.510534855272452, -12.07284218984168, -7.957944860489718, -9.220399979021844, -13.600682041413322, -9.289798569936307, -10.519563133637352, -8.015471908529156, -10.161733226186358, -7.76080141735352, -9.841444707298217, -10.396217972328747, -11.477076721537259, -11.549251824462734, -10.893336313171678, -8.762433153156596, -9.195835010858763, -11.201507754694482, -10.18580589061346, -9.342166431901623], \"z\": [-10.372199189358865, 10.46613220761258, 8.38564772844925, 9.38830053398998, 10.1523847772188, 10.490897305957173, -10.07578499814991, -10.199176335069208, 10.131282047358889, -9.841078712931603, -9.665902043758818, -9.433599081698567, -10.38226814674283, 9.331130882187276, 10.450492902712574, -10.258209854788, 10.202880905985635, -9.841988678909944, -10.314269798609518, -10.023883149684114, 9.452431874071902, -10.229095887841535, 9.485558831634576, 10.157362351165432, -10.231200277421896, 10.412574926073944, 10.879213970839212, 9.970562750627654, 10.415916634413678, -9.778915868642848, -9.95084659988291, 10.685412548662404, 9.290229893968101, 9.324358811317497, -10.459999237841673, 10.438823746537137, 9.797861002171482, 10.300635096882573, 10.963147561691827, -9.893712373967166, 9.10245395893273, 10.185267052818078, 10.194781523607132, -10.295610104774756, 8.753944990801614, 9.772591872950661, -10.309329138010453, -9.773797768038051, -10.0662565584286, 9.075777271077541, -10.482914705394824, 11.00479936489275, -10.66160627155763, -9.754530929787284, -9.449853028544046, 10.666003393617167, -9.110403958312492, 9.9623967253157, 9.859306475208696, -10.444625910378557, 10.351455799607013, -9.79146936120188, -10.772451742105666, 11.34158357352025, 9.584239158049368, -9.344084169212707, 9.74729519159592, -9.619466478195768, 9.755665218834773, -10.401929615186639, -9.941916819461337, -10.128997752889909, 10.899298464465277, -10.026128276074077, 10.178567575687195, -9.580996381549218, 11.02384279437222, -9.119338538759365, 10.31716665663927, 10.120526420558582, -10.163466889537851, -9.598849267061084, 9.436073365460878, -10.361896671418936, -10.313048038516179, -10.223894063208176, 10.856386477802038, -10.282925715656933, -10.05395065459849, 10.29454580316594, 9.517971725082143, -10.414392349131294, 10.578329927706507, 11.412719485769848, -9.688240656995912, 9.098311030945794, 10.643420717898643, 10.004158239912117, -9.954963981609245, -10.446537285147523, 10.584079384031984, 10.144390484611176, -10.727714776455159, 9.682086211465432, 9.268413618683333, 9.52347979305336, 10.831307764066839, -10.083264971251705, -10.611880274367573, 10.233517411170283, -9.99682557206806, 10.232317500561713, 8.58309890438446, -10.718532479028298, 11.341947438636645, 11.232903465529699, -9.98227954108347, -10.384334793564962, -10.610136243334761, -11.26189148168035, -10.014104223522208, 9.456494805533321, -10.624174392048813, -10.458946019743568, 11.848095520841236, -9.571765915047274, 10.699964292927024, -10.538966540358999, -9.96485806142653, 10.499176677117086, 10.917037482805984, -10.142348854496372, 9.033097943589695, 10.21139667409025, -10.283751493693849, -9.461723640033293, 8.438329427264515, -10.431584704386134, -9.896135233561413, 8.541716532958255, -10.403960590821729, 9.932194170977402, 9.6943743058194, 9.836440870428929, 9.289333767308529, 9.17204432106328, 9.858361349427552, 9.84725069956162, -10.779517611944666, -9.701010511006624, 8.736238927493273, 9.99889912025464, -10.807378675385733, 9.762357780999697, -9.597493340953434, 10.233182727786726, -10.646144031779937, -9.195041603106182, -10.173421813141386, -10.531540523775764, 10.70721358963427, 10.036889174494656, 10.726065074595457, -10.114288167393983, -9.702979677655884, -10.09345521262339, 10.959927961210775, -10.887536494429003, -10.595795551010154, 8.125658119309284, 9.17510834108686, 9.419530472972514, -9.906598309473367, 9.998311350124636, -11.187565642592904, 10.534357946061617, -10.304578279881959, 10.179069932339202, -10.153526046765812, -9.795894832622409, 11.284832199348044, -10.005017203258799, -10.187629985405302, 10.192988620072677, 10.271716728471754, 9.095721616747841, -9.914332065349711, -10.081177162306387, 10.661465038183483, -9.92137330314312, 9.641359383658916, -9.976403232692107, 10.299065803221337, -10.710683135552513, -9.329699515677708, -9.298354649159085, 8.733031368946627, 10.074238285738396, -10.542562117585483, 10.665073819900698, -10.276634377290373, -9.848269124540867, -10.941610516188499, -10.55426572863265, -10.019260457347194, 9.638950932452204, -10.204100291519987, 9.953261278073713, 10.164966261729797, -9.575082350874855, 9.646027030636464, -9.97674546950979, 10.504477656398489, 9.161438232740782, -10.713306092938613, -10.467337305476722, -10.346025110034967, 10.515979729893157, 10.715166572046359, -10.450203969472243, 10.985725269602794, 9.69698598375819, -9.69278322437457, -9.720767184942531, 10.813112355295841, 9.668576653455743, 11.049500712035778, 10.852894079974707, 10.233793928864534, 9.38795410420026, -9.570272305350422, -10.726191572284732, -10.234019014242746, -9.957224913840626, -9.844220740209737, 10.37810396800951, -10.390872485643666, -10.21697420577521, 11.892806848598592, -9.771134159182148, -9.843928300157254, 9.230014487031012, -9.869831878219971, -9.495241992678993, 9.438465955326652, -9.889523642596922, -9.890076867682536, 8.536121655148047, -9.59043172902603, 10.940973371635362]}, {\"marker\": {\"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 4\", \"type\": \"scatter3d\", \"x\": [10.566674713593487, 8.513280192785878, 10.73852349554962, 8.96176698489209, 9.594338520869522, 10.267310633542127, 11.682773115209367, 10.682735977971607, 9.759419572025942, 9.039103808841755, 9.548533140610475, 10.37243929703527, 9.788416658704639, 8.65089458639811, 11.246737681836002, 10.461041041378214, 11.87794719873472, 9.771282121476604, 9.739965649731325, 10.391117501932909, 11.972686334882196, 8.35194771837058, 10.455071669021743, 9.388277967821963, 9.570408063512428, 7.951157563504736, 9.500125657506167, 10.13516932502726, 7.907249009237891, 12.116057482878102, 10.700527194125993, 10.574981546182114, 8.71265266989824, 11.446994534860487, 11.162789178524434, 10.179391179940934, 8.271235111998717, 9.332539914498794, 9.981280822174138, 9.875556590664598, 8.463914464842615, 10.208131524806246, 9.173226127806574, 9.476742928810099, 9.376661492330912, 10.220606549418406, 10.435486935012545, 9.623528096751887, 8.998263350062986, 9.357487762212067, 9.441819967195926, 10.864646103800073, 10.585315569179762, 11.24878995284716, 12.628560272804535, 11.061750936432857, 10.337437398032856, 9.94989400878, 9.669149544214747, 9.988657646886056, 10.0998028990621, 9.728014434081793, 8.808786267319421, 9.164190833512539, 10.231832481477827, 10.39366887268297, 9.26253606078994, 9.967667442063032, 10.953415975566442, 9.695989754685078, 7.710817684906377, 9.287724413765535, 8.5674641780458, 10.05156002252878, 8.652651176611714, 10.949540857290163, 10.659404655786611, 8.760175199235238, 9.610337000714486, 9.057444110588351, 9.326930441780013, 9.921774085020578, 10.996954522090297, 7.96886050810459, 9.835390226294976, 10.58966883905029, 11.330259680359411, 10.738474825417514, 9.844614390296154, 10.989470383150378, 9.325139017273187, 11.47900891813053, 11.274408164248698, 8.79873810749405, 9.236654870874466, 10.175092432697355, 11.718846251420796, 12.625782482468038, 10.220666642304796, 9.219278025232537, 11.396267932279557, 11.219231646280239, 11.425392692449778, 9.119419964029241, 8.864990646971275, 10.760431888506723, 10.301381117649175, 9.106661614913081, 9.355338205382669, 9.603848741681656, 8.960184281922357, 8.996248805538944, 10.131223974940147, 10.928479052761874, 9.426376985583122, 9.378838416413759, 8.835824561686096, 9.810937244863931, 7.613650269593583, 11.867059956384718, 12.307807866016454, 8.676371298760332, 10.915687160294896, 9.598761474337001, 11.433910395767523, 11.430318709281641, 9.580991195288782, 10.9358363006125, 9.97915788774683, 9.328945973709507, 11.382472219132369, 10.014720908478013, 9.88165309940712, 9.808484034933912, 8.780881666571277, 10.260519646965772, 10.217404226823525, 9.969322340123627, 10.920492626805018, 9.652934307387321, 11.285685367651682, 9.768213898645005, 10.111963170162436, 11.817549339620667, 10.770296505210654, 10.315651155479118, 9.617342080354591, 9.28790072791044, 7.081930796623096, 10.45115697149207, 9.8315136231408, 11.262104185025406, 8.282112739226568, 9.523788112210607, 10.137072413337762, 10.026021528160369, 11.588727853011173, 9.89452603331391, 10.680192617496202, 9.266765378387955, 7.298905867059412, 11.231266222340135, 10.492715734985529, 11.309981923290357, 8.890554109783041, 11.319892643776033, 10.02352934166022, 11.383050141323382, 10.034884312487172, 10.039814654174137, 10.466821787166895, 9.96012261392071, 8.010156584145152, 11.724892110009884, 9.102836105589102, 9.96709538058607, 11.471946005566569, 10.382485135128482, 8.70755252886699, 9.803285794464177, 9.720280604101246, 9.946081834676862, 7.941223415670862, 10.18371182851409, 10.090901010979955, 10.230860531438875, 10.43588495682949, 8.957033452188577, 9.709300900986689, 9.197984409656373, 10.676350945350508, 9.908755368860099, 9.795062543552028, 9.919523632116688, 7.679026297101046, 9.210311708844024, 10.195489862573444, 9.309758123261973, 10.28648082413209, 11.038076155997125, 10.760916763090428, 12.163136779540814, 10.863951649681246, 9.380398882738781, 10.16008445467812, 10.868049519243435, 9.513138094766001, 8.655357249230175, 10.732950152129058, 9.119321699724296, 10.199458540502876, 10.723544391247199, 10.168496727428392, 10.18796746024021, 9.536262619204779, 9.417881368682425, 10.634049506002667, 12.685213744001867, 9.48687704225172, 9.83411442327132, 10.137977235625193, 9.183730493079581, 9.8986141371326, 10.139867500460094, 11.86256027187822, 8.903800153126046, 10.595606999267119, 10.292868195024772, 9.550477251709816, 9.271187233893167, 10.079556391173224, 9.92628774896818, 8.582061614231973, 8.697125622197964, 10.285635123797798, 11.699289965690792, 9.177018753065324, 9.90379426048613, 9.161984520763294, 10.512839530328662, 10.542209059270885, 9.980909381663482, 8.905779101644335, 10.141153730574183, 10.191978686161406, 10.558305878095403, 8.160329450455121, 9.680976902234743, 9.61487149751638, 9.99331856285472], \"y\": [10.002099707354569, 12.39864043239872, 10.309577766054026, 11.35146951856108, 9.37664804591853, 10.196275083920497, 10.340228645186624, 9.451217448584087, 10.063495768547108, 9.460460512635642, 11.007058931409091, 9.83545055664892, 10.867422802887205, 10.789424406142121, 8.847426479789512, 9.672517263510949, 8.461660799198256, 9.597814478199895, 10.890163543255827, 9.375476515707051, 8.225383023441601, 12.781646077297523, 10.127046808286039, 9.862388376158933, 9.717815025884516, 10.448317047719463, 11.143733004837282, 10.977428576713377, 12.654996692279106, 10.21568977934135, 9.118376801668296, 8.561639918739392, 9.68291166303612, 8.320152052028352, 9.01259590198788, 11.111989900102813, 12.045573755054004, 10.557730161777084, 11.013880914942764, 10.92651232218238, 9.860072629795887, 9.749230897325965, 11.509353635681059, 9.533109158872143, 10.640388996708468, 9.685725292189534, 9.795404333849522, 9.818441963626695, 10.450309446488642, 10.650862414244205, 9.803545984702854, 8.863361402858006, 10.39182440423173, 8.242521020342759, 9.259925891872841, 8.681552821258785, 10.185886270860744, 10.426061213588435, 9.567371487028192, 10.209687356396435, 10.611888479718335, 10.174871594886133, 8.926788818794847, 10.56800154662716, 9.337446154123201, 10.36057617032855, 9.224315612914328, 10.975964146962486, 9.214854624599086, 10.585925395287882, 12.491606730399749, 11.44962143398617, 11.201050269521703, 10.004168056255514, 10.498105507355193, 8.84695241710796, 10.055659236717993, 10.759023705176022, 10.65007371434121, 10.264326144096634, 10.040502522782244, 9.817757019673738, 9.28202981263813, 10.525684949561343, 9.633085690375983, 10.019032863446956, 8.446236119841632, 9.578775247444474, 10.365652435587839, 10.406721469803623, 9.737127517088707, 10.357601488803322, 8.710407770055557, 10.577130733977594, 10.616264448082974, 10.01906682190146, 10.005808281520094, 10.409369142962163, 10.646111549699516, 9.709978452279609, 8.689572288249842, 10.51316273801762, 8.242889244111975, 10.63236337537182, 10.847843293349165, 9.113799149160362, 9.174981484420348, 10.690981443796634, 9.692878656279262, 9.91062941037064, 11.592623526935155, 9.604192835177273, 10.447659596376587, 9.058037511916105, 10.965105279818266, 10.926006260530263, 9.201964864713881, 10.219382960003442, 11.224720423416313, 8.961163532872003, 8.73704869739391, 10.215174339811286, 9.398355338526157, 10.56628856231874, 9.580439027766106, 9.566598883392716, 11.501969819898358, 9.496401529603483, 10.057729124285869, 10.261875629477132, 8.426871216956307, 10.358627601672481, 11.09395360817156, 10.83192923470655, 10.278176957480374, 8.99639150494655, 9.688458607327801, 9.554863466963956, 8.785307525476615, 9.664221923272022, 9.205175748278503, 10.715068527073244, 9.862909985167754, 8.81263429655474, 9.125331274015018, 9.92725294585506, 9.829541388977766, 9.513433387347035, 10.090005286677586, 10.807787238234624, 9.50448538985129, 10.17437629680866, 10.917457649877775, 11.190681439955071, 8.909387690009252, 10.005043301804333, 9.485244949755344, 10.300158264975831, 9.544663709827486, 9.48647218014452, 10.560041699502015, 9.240668826700325, 9.758537414628135, 9.92061790666938, 10.991877116221278, 10.091353476704153, 10.079723623721396, 9.487003385674482, 9.391703072368818, 9.472295650108496, 9.64829260092916, 10.072925771227737, 11.333026263953828, 8.14453502221571, 10.877531119514671, 9.96530658097206, 9.298215024234706, 9.651695332146051, 11.760675845257072, 10.0454092035486, 10.51982039854075, 10.237104298963535, 11.830244655191168, 10.338071286420544, 10.496284376941402, 10.551984432523744, 10.680331933692994, 10.496530056006442, 9.708678134105106, 9.950168202316624, 10.377825550015343, 10.25359928060233, 8.392855180438854, 9.78240524875212, 12.53844772362436, 10.355035850209559, 9.81590469342553, 9.860432443006012, 9.258175162653808, 9.480006643031853, 8.65916559356991, 9.622889269511141, 10.709568526012502, 11.72430787822659, 9.930820886118992, 10.27084515208686, 10.568090608976641, 11.045019403829269, 8.982419074317102, 11.43485748340452, 9.450465944182971, 9.485323661123857, 9.834362085410085, 10.651434654971133, 10.32533195331007, 10.846102517074613, 9.091688000654978, 10.534207779135443, 10.01458155140867, 9.808937708910134, 9.823678740984155, 11.074275769694845, 10.85947562338514, 10.39079058842368, 9.341434164406097, 11.327823842608812, 9.007679999152332, 8.939351538506378, 9.843475559128818, 11.709334699615452, 10.386683982760553, 12.94622187062569, 12.034177734091346, 10.827796885199554, 10.138789878781457, 9.940733426051738, 10.516661179020765, 9.036817167006653, 9.272079293131341, 11.004492956219135, 9.113842745130373, 10.208622484066783, 11.024520306581545, 10.0418756610004, 9.624164446371877, 9.315336195320302, 11.801521869813909, 11.48329544524478, 9.95547910596258, 9.581342776466846], \"z\": [-11.168989525006804, -11.207454791503173, 9.684704268048543, 8.78787929241814, -8.115091494005975, 9.754469016680442, 9.49765451561453, -10.356673924154085, -9.626084671939115, -7.138804094368088, 9.1176426521456, -10.541054250122544, 9.155600554356749, 9.41890801489367, -10.459283109555424, -10.340046180418362, -11.146145672037639, -8.732573119451635, -11.009103261613788, -9.53559515568911, -10.948194074118819, -11.52930289657733, 9.945428771634674, 10.200043796206252, -8.730848715519771, 9.817556468233958, -10.9471962941459, 9.01966684771637, -10.485709339681602, 9.57888183476775, -9.833066933751878, -8.680695149173413, 10.359875754173732, -9.952376869763194, -10.72698908295207, 8.840021536058526, -10.150359708924915, 9.521713208973056, 8.868823548213964, -11.3098821108019, 10.249630056854638, 10.180368510630078, -10.890408986639342, 10.596432371910169, -9.928649308524852, -9.814608842133307, 10.155336680303396, -8.884643105062462, 9.613001401541096, -9.727657749371389, 10.220556384919158, -9.707845670373366, -11.902315504651, 11.773841283385835, 10.364960595327297, -9.812937270051522, 9.73315271164039, -10.559839046526212, 10.483514618941406, -10.243986688669567, -11.241323524762214, -9.681262588667524, 11.22180499533238, -9.311862997947113, -9.299731216003691, 9.634833878445269, 10.9496246545664, 8.993044680735427, -10.372376792452947, -10.375607757587868, -9.777001766664128, -11.139136785832976, -9.322271408862852, -10.150775619784085, 9.72428609971709, 11.020171715255024, 9.913845097547437, -8.860016773695325, -10.28831790283916, 9.938331395343495, -8.60066587789974, 10.136715147149477, -10.699789177537648, 9.667399661385984, -8.974622396846334, -11.267567685224018, 11.404088479377918, -10.771264068966905, -10.282115132786217, -12.603297210970327, 10.275362729101737, 9.417750095718587, 11.28951978848987, 9.64425905143216, -9.562115016138407, -10.395862323299896, 9.797800229033603, 9.316136871369967, -11.517518582197857, 10.243899167494003, -10.48166746844158, 9.342870995276666, -9.815940996579725, 9.30665127090533, 9.215749281549385, 10.931996674852254, 10.873333753136256, -9.48586004799486, 10.379393559739247, -9.118097031004723, -10.6825465658111, 10.596000630658823, 9.61467289434721, -10.187325051278942, -10.592626813464312, -10.435808405302197, 10.93892715257411, -10.077054107049312, 8.95215095852888, -11.89457106097649, 11.08644668154468, -7.6785985903202905, 10.520126958217205, -10.233662430906932, -12.125427179840768, 10.317294946310895, 8.48407736557909, -11.002070943498774, 9.983107906016064, 9.741266320323083, -10.073072296314347, -10.667988406433071, 8.92239832766155, -11.072036421068823, 9.731795717545502, -8.81904786604693, -9.877881861902901, 10.482275660096128, 11.24441005895413, -8.762027772953898, 10.681727454425882, 9.338825833705835, -9.99796069791487, -11.5425042291465, 10.798963157435457, -10.474047407684449, -8.992636004965405, 10.63915379822825, 10.1257538076934, 9.146962116816267, -8.672780625739684, 9.652974533358055, 9.30057320851887, -11.073163049322986, 11.125891413723583, 9.977802916670381, 10.34402252388338, -10.287246305572614, -10.602688046807568, 10.64788212407752, 9.654501274799202, -11.167249921038849, 10.116391511905931, 9.964772114451492, 9.11663747804838, 9.845251057793016, -10.18816120605094, 10.388387494339312, 10.564884659770131, 10.621172446256567, -10.26519675042846, -10.090090010353878, 8.820354340716074, -10.163857106627033, -9.668453745148385, -9.775573540706363, -11.690157096053305, -10.17675521158614, -10.48577218353588, -9.661005241671896, 9.385500552992987, -10.342678905984908, 8.256807278383647, -10.974882435792374, 9.467675995056211, 9.49215842884503, -11.988591626780307, -8.82089015959883, -8.90419286548754, 10.113867266809804, 9.46610138195666, 9.753380593499768, 11.650544336445204, -9.369193415879272, -9.774265927092241, -9.093631505018125, 10.189168754147845, 10.134209329648012, 10.733954113169201, 10.393815022313136, -9.204776497794732, 10.155763201674622, 9.178321528951315, 8.312141545546572, -10.25750436164089, 9.641641696691918, 9.384596935449379, 8.96727662209345, -9.771295401365707, -10.692462789429225, -9.477255941980722, 10.46705214420378, 10.143999055057934, 9.242921683096752, 9.729859049184627, -10.228879067715148, 10.894965739539906, 9.14806535804901, -9.015604462762067, 10.203272296464544, -9.925321966513934, 9.01299062735353, -11.317183860858583, -10.867470980827905, 10.4711699139927, 8.705949987973918, 11.033991636604643, 11.052237187593095, -8.868253160054504, -11.507907152806691, -10.805484990837368, 7.103671911385706, -10.745221877992527, 9.216413341093295, 9.788147168754133, 9.874033288603053, 9.588545922680835, 10.942597484354744, 10.836922238354672, 8.893308919961363, 10.888229797562454, -10.222454571932335, -9.701014928799525, -10.35968525693148, -9.73645555694736, -9.823194910433303, -9.452300487470037, -11.864069316117162, -9.141864698435603, 10.405443127154841]}],\n",
+       "                        '69eb245b-2c5a-437c-923a-99fe81ef9d9a',\n",
+       "                        [{\"marker\": {\"size\": 3}, \"mode\": \"markers\", \"name\": \"Class 1\", \"type\": \"scatter\", \"x\": [-0.3396480084134613, -1.238731486261419, 0.6100892118877779, -1.478653438364253, -1.472478326206806, -0.7533069391871909, -2.758643019009292, -2.03263375543892, -1.925777548012959, 0.49430478785660026, -0.9311514997861496, -1.5550263671172506, -2.173497532290698, -1.6123822358736106, -1.6134710379492612, -1.0137611192915692, -0.16137288384085657, -0.7870527532635258, -2.354154429163576, -0.2470950956611535, -1.1179094103202494, -2.507429703490965, -1.469645071529707, -0.6496633667047893, -0.6695796172977004, -1.690157019547704, 0.05115738191298358, -1.8556257062375812, -0.662259784141608, -1.4885429394906264, -2.1279657743968667, -0.1715878644280039, -1.0734180464879086, -0.6312933527125061, -0.6315384728778342, -1.0365265013740845, -3.6709657422805906, -0.9112510080209119, -0.9064451384110707, -1.223966860760664, 0.5067894804203295, -1.8243010790666356, -0.06670015606618096, -1.5401179502831788, -0.901024413310904, -1.7157794703313511, -1.3997745592309454, -0.6980900491428021, -0.9947865662596989, -2.443043736866321, -1.3494151898962374, -1.1644391318478815, 0.923064162937504, -0.73741404480246, -2.9562865773991227, -0.9385921832045007, -1.1961219609802238, -1.0353904460368684, 0.16516701655480537, -0.1935019829589062, 0.4302214143380545, -0.4016688147607004, -2.0099030576594386, -0.8984002749332105, -2.5809816366176657, -2.083073625304378, -1.9374005999390265, -1.7985672759126978, -0.17057708593187448, -0.7680928224197949, -2.63891236750503, -0.7350360386733581, -2.2611352793396806, -0.46785355603539913, -0.7446095725436901, -1.6933204044945223, -0.7011974428488502, 0.9022536941888848, -2.2145955821121492, -1.9937384162840375, 0.1812481664172283, -0.017788167968911583, -0.16186711370841578, -1.2501858865518047, -1.9069060058877554, -1.0786091838457312, -0.7178994074419702, -0.9867438981996715, -1.2698313412001445, -0.36209975186706556, -2.0918303355243255, -1.2278318769822971, -0.5175097450431647, -1.8633500290574978, -1.455245107062224, -0.7817203454963412, -0.8234330815456707, -1.9011384082626028, -0.9406531984243014, -0.6352172655960316, 0.10422680555431318, -2.404605234401724, -0.4748948847606912, -0.47488222284804094, -0.4179475727336699, -0.0273458191074748, -1.3214333145291355, -1.7879353107972404, -1.494853261402981, 1.3599142248647742, -0.3003222122947081, -1.4811589662850486, -0.9344631931369604, -1.7292891586196704, -1.744646587782881, -0.9535371502342876, 1.185861978332658, -3.064737696713975, -1.6747255575902749, -1.8080159169287429, -0.4851393288840796, -2.223764319217001, -1.484231329829504, 0.799971985058161, -2.285536459926073, 1.1636480942899503, -2.549076329058835, 0.29168149706937396, -0.5475031191063048, -1.9450535974648924, -4.304639834380183, -1.2575063043000383, 0.6643278246064137, -1.4486481326798681, 0.4694527243700082, 0.18590565540838222, -2.0006988766229616, -0.7970483362234282, -0.9288331611128714, -0.8842631903968872, 0.6170262427409237, 1.174737939944587, -1.1547527614026065, -0.7135142455622658, -1.2121914074933542, -1.6008878776213908, -0.636004231485098, -0.08281136004757395, -0.17124499279449723, -1.8452033257883422, -0.23809548662058877, -1.0213102569979595, 0.3026454983875708, -0.4422058999116508, -1.22193725475454, -0.15844530529951006, 0.33100322078628164, -0.30471364510548593, -0.6694956234692433, -0.901107592784293, -1.8342183409867947, -2.0256867959900875, 0.1807539840621708, -0.3636775395353007, -1.0124862188601997, -0.9227133289692666, -0.005814955617387096, -1.8416371232221702, -0.5789950073545347, -1.8382962547516235, -0.750243900288657, -1.4802479354362925, -2.4763969448914, -1.7324910731616647, -0.6830136430327773, -0.1255716181953409, -1.0193880083130513, -1.0188751004594534, -0.6709717225101377, -0.47049934524336445, -1.110886601219378, -0.29636247579069286, -0.7715261148560371, -0.9004141614173563, -0.9750106085967053, 0.47951602524198833, 1.1952809729140297, -0.11062395599938224, 1.232617443521173, -1.856139885521003, -3.1654216324144264, -1.7739750442479512, -0.6515620920159575, -0.030993699166081634, -1.9159802630368943, -2.346046095197731, 0.20250025569278596, -2.746629331218697, -1.116779301283268, -2.625601532201017, -0.9946537767020888, -1.4588650453923098, -2.088494292130994, -0.8773523764785791, -0.27447179570814784, -2.56410880905369, -0.6611886628620245, 0.5814797329800034, 0.20235452437152213, 1.1010391821108438, -1.2538318367712784, -0.34200581211404624, -1.9837894164240817, 0.07911855269920864, -2.206393303935688, -1.2746742133096556, 0.5317307827230062, 0.6604578524741536, -2.736686570925301, -0.6084253940167441, -3.1078642402020433, -2.329974180411324, -0.6262341114880894, -1.5239139220662983, -1.0639045841949897, -2.004998729428195, -1.5406250902215892, -1.1091229923003956, -1.5644741259411896, 1.0031389751716797, -1.7134063760365197, -1.1145242612164914, -0.37382525753951656, -1.5408733808858823, -1.2804294430405814, -2.5448157203630886, 0.6771297341334965, -0.41217033123138, 2.139078359612575, -1.1304186060494177, -2.637855179697552, -1.7711387366080031, -1.6592145247273575, 0.7201282302691194, -1.0081285205186308, -0.9211190054549923, 0.5529038398732038, -2.0575261464152526, -1.8927381348876962, -0.05571404757486542, -2.4259120370542124, -1.663363779125245, -1.603976270480313, -0.9505296886334489, -0.7242552661722035, -1.2436199027030128, -1.5880482275442156, -0.48928899770608114, -0.8987255727707906, -2.702045099310064, -1.675579222345946, -1.778182219493215, -2.6593637636376872, -0.7351994652019682, -0.3489219321336442, -1.067371775280064, -1.6645806535922598, -1.8772359644020793, 0.025967608802522024, -0.14796863292710594, -0.4598372157964057, -3.5199695102512814, -0.4116450947391831, -0.621597570078094, -0.9117172294318181, 0.19061426101105705, -0.6557966103275117, -1.4971397859231605, -0.5978356223981992, -0.7045595334689991, -0.11184327189387411, 0.2246997733640923, -3.0779734652288195, -2.9073692032842064, -0.9812215090060377, -0.6666806193569559, -0.15437807657735658, -0.7597787616405445, -2.507495215210043, -0.6548853906087273, -0.3548461321417279, -0.8145779388308519, -1.4683422154696608, -0.15342965347429982, -0.9270345165953309, -0.511655273707761, 0.05782568045812009, -1.2751514663558248, -1.4529799770736789, -0.228210920520592], \"y\": [2.552807776827515, 0.7612852525091833, 1.78243943191413, 1.5531680495503397, 0.5251644081689545, -0.9506882485954029, 0.4267187576494903, 1.3203914223008613, -0.43991673009475285, 0.769809374554431, -0.45260452660519124, 1.1130913220135743, 1.3830435773608067, 0.702603122830946, 2.8884934905589112, -0.07839104348993553, -0.2447132969779533, -0.9979851317910255, 1.200710220306775, 1.1747188333923644, 0.693009195994847, 0.26608156747776024, 2.077790830575932, -0.7975107005210367, 0.6073886816906006, 1.623635639325664, 1.949488288285448, 0.6847419767295453, 1.9946187552845691, 0.8107110628275309, -0.21959457377008107, 2.382756913627664, 2.0231537363450838, 0.34226701615787414, 2.5681078945399336, 2.5952351994214133, 1.8379721482268463, 0.6951465283635245, -1.0264293930860768, 1.3640947522553044, 0.4715966846957126, 0.4884327210803422, 1.3351787737925158, 1.5233027168688642, 1.9875837088524717, 0.6659314804182648, -0.4921292471065284, 1.2661593632699975, 0.7608262743399479, 0.5711303191280448, 0.1820367948942414, 1.4119507638380462, 1.1779911170396602, 0.9240985352530208, 0.9729677315134981, 3.511402841108502, 1.3074431248259508, -0.1915277548813561, 1.7666346499360512, 0.07283241624362291, -0.42925972402907164, 3.2332828974050525, 0.4226301507963558, 0.4866805086810414, 1.0699035019131666, 1.4828519981028787, 2.5802383568237715, 0.67164161301441, -0.2549298851473636, 2.3326997010160495, 1.188243776173108, 1.7971088881084862, -0.3462738692440126, 1.302791247495757, 1.3532218831504959, 1.2367946666515843, 0.27168175158745234, 1.4830971903886332, 1.6693903898871771, 1.8024734962155942, 0.16327189458591673, 1.4208515222313192, 2.9338786315347423, 0.2315269639882257, 0.16823918481948386, 1.3478220977392508, 1.8433561407613523, 2.4819532324972444, 3.7733532723571126, 0.1260835012724183, 1.4919056020748567, 1.7279604632963035, 0.9257471536256038, -0.5444651602204753, 1.8731429014973497, -0.27009516940248, 1.3928510142282104, 1.1567307029481497, -0.1653173834293984, 1.5717488531202117, 2.074405741129612, 0.043838826168330014, 1.5238313726053847, 4.928059187773512, 2.157767951660004, 1.6641270993666382, 1.7738084076264682, 0.7585511717343343, 1.0834749232427927, -0.903773521087827, -0.6442473114102614, 2.110241502119893, -0.09881658955182338, 1.6928850837823122, 1.2206907368557576, 0.33565971613181744, 1.6463132574799575, 1.190099825541074, 1.8690999102410073, 0.8830202586996528, 1.882682235466317, 0.6589586749157688, 0.33389702841293145, 1.4128998178251149, 1.93580776728967, 2.0526517777328186, 0.5062982967878642, 0.27849434795201944, 1.7897795156802525, 0.9393108182204754, -0.04441622681081059, -0.27217954434539915, -0.45810316476497603, 1.1332967862071726, -0.4639357891920377, 1.0104331354143252, 1.4711384123666083, 0.38804782406996385, 0.6071528426005908, 1.675076497250807, -0.26201697541838986, -0.9902545596168388, 1.5998198457023207, 0.3651256060832385, 0.4973600273819062, 1.8662133167728099, 0.29354279981304765, 1.3133077686066916, 1.6419391964906824, 0.42886643227029153, 1.6223040808567333, 1.119621340625834, 0.3968623469408632, 0.7938541245296371, 2.1202598777595267, 1.8294151844699558, 1.0214145037888633, 0.6836669809837947, 0.8673124193383595, 1.606793395181075, 3.1332971380364594, -0.23792814207779833, 1.8071410961759464, 1.6406307724139753, 0.08520272273479135, 0.30959858246919625, 0.8500673872704204, 0.6723304981965323, 0.4252536377408258, 1.2484517263571477, 0.4831451912686371, 1.2365869229846154, -0.4349821740260178, 0.7823795799371092, 2.5042020336181343, 0.8369343896335049, -0.022130582245448727, 0.7056975754757933, 0.1565952322104186, 2.562706662605917, 1.409565894912369, 0.5909349601090006, 1.0128386044309177, 0.21187651122910722, 1.5077350363416508, 1.978026262953183, 0.21764943860497443, 1.186926665378119, 0.17589805727382235, 0.38888817096876016, 0.46396554017829517, 1.1533342503065336, 2.9128532888136243, 0.4118168601726947, 1.5015370590878359, 2.8672670155427804, 0.5216511362393622, 2.3803429674019267, 2.2620178044634534, 0.388906138009781, 1.0478991472497579, 1.6350277472739052, 0.8548367448795889, 1.5244970207691693, -0.14663082867730282, 2.3026576576741453, 0.2368792312733652, 1.1179362774510895, 1.0688385868288017, 2.7896608524518265, 1.9905668769617677, 2.3953907188398746, 1.699464976282151, -0.7931259459169793, -1.0791027641775046, 1.7315714726893894, 1.075543464085139, -0.40708487631443435, 0.9433662456000896, 0.9666660119049412, 0.9091375065010157, 1.6827658285069114, 0.041743905839028095, -0.07992301476550256, 1.9738170378020872, 1.5139015140680439, 0.19162510518612685, -0.055483136059492955, -0.22129851852582316, 1.0359530166200444, 1.2181635954639756, 0.7747100549907235, 1.772318322073085, 0.4129234969687591, -1.3469277842493335, 2.393599070630856, 0.7460948665540348, 1.3173356441309894, 2.14146457595828, 0.02577705814847564, 1.2074417088719134, -0.4500612785711462, -0.10269417500820066, 1.8988773694694152, 2.508879657525946, 0.12187617317272992, 1.5494466857121187, 0.8059398649896761, -0.4098359050560645, 2.94674910413021, 1.573976278383325, 0.5033504556608888, 0.11911668663533681, 0.15280334296144582, 0.9487796468877413, 0.07469186736238043, 1.7701604568513845, 0.003331825692687307, 1.7660780671309375, 1.5539838426647483, 1.5817548791384382, -0.8401707296654666, 1.0490250921936797, 0.07800238959968253, -0.6940057105190329, -0.23469370278152968, 1.0483253989550818, 0.6079257164987355, 0.41182887675176294, -0.1517946165447588, 2.469753830215397, 0.18752403650845118, 0.7929847184742014, 0.3842058374135475, 0.8412790000309315, 1.2593952196031661, 0.5800701126112735, 0.55898453654688, 0.5707845299348699, 3.1159785454050217, 0.6676021326509226, 0.5839460335635773, -0.02779617662763556, 0.6416138072523458, 2.7092146190780078, 0.7766156693449094, -1.254366904889825, 1.7859369682853086, 2.1661164524103906, 0.5765924747867328, 3.315088908828814, 1.2530737366402531, 0.13353967392976251, 0.12717822510538623, 0.5130035075308852, 1.3401857880476178, 0.48001188084454294, 0.002099726969374771, 1.3846773832672286, 0.05980471697328327]}, {\"marker\": {\"size\": 3}, \"mode\": \"markers\", \"name\": \"Class 2\", \"type\": \"scatter\", \"x\": [1.8866082498868342, 1.4215182849085943, 0.21108185703795945, -0.813497367552054, 1.667159659280641, 1.285442506847788, 3.4935707452886975, 1.111533655819166, 1.4904138107496794, 0.19407037450082942, 2.9188213953984317, 2.624336235678153, -0.008953340223844641, 1.0568144326264175, -0.7255552988467493, 0.8389027682672714, -0.031892801216434785, 1.839265021006434, -0.3151819109084486, 0.6576501174920419, 0.7353331797806998, 0.7494522255039451, -1.749615534299814, 0.764550292341758, 2.885106448283962, 0.7258540612071562, 3.6236735269825084, 1.0142016341420486, 1.2019576672756567, 0.4151218889070385, 0.9666063455723156, 0.2732168247637744, 0.7400375281816716, -1.7028009446354577, 2.2704483561887274, 0.6506122589315038, -0.4350310312944903, -0.13228956237488787, 1.9539725563328718, 1.7357820259731547, 0.46522443722556317, -0.24602256347112283, 0.7549758163577688, 1.7248604897628894, 0.6319763088706551, -0.10220002272261852, 1.6046974338320237, 1.3325094981474541, 1.9420933774779694, 0.46705682231138157, 0.28188514779766727, -0.5870640198644554, -0.30546400510075444, -1.1226348004708178, 1.2151432309353802, 0.44442678377015554, 0.9616294727526091, 1.1164610006986082, 0.6292785276010582, 1.3138198364568425, -0.3745448253972954, 1.1742061588614243, 1.0187943489755147, 0.4496870657683495, 1.1996743753189931, 1.4162348172739045, 2.0492774455348597, 1.2610355672733178, 2.69803740786033, -0.8768665699796652, 0.3629651168885355, 1.5277801675044906, 1.1904183841916915, 0.37652594520118177, 0.058715915282322895, 0.005046703421156762, 0.03203868808814103, 1.502963136088941, 0.12485981101560784, 0.4131074387955832, 3.610138707152606, 2.171743647209712, 0.9643274227917812, 0.36077463022058376, 1.721589734315465, 1.6447724259636807, 1.6339674438929785, 0.2586460096690575, 0.9241112660554917, 1.181175368977971, 1.387631389687613, 1.5707353386959488, 1.8502268037648903, 0.9284624251053202, 1.4380180131919518, 1.2768886825458081, -0.10219310282941407, 0.9596714731075057, 1.0288720503393245, 1.956628909578329, 1.0980001076936703, 0.5570086048409253, 1.2264768787280085, 2.280308373066427, 0.8094746855411853, 2.4752688545587866, 2.05201892045815, 1.2722715696615647, 1.083892786420229, 0.4725976481686802, 3.3438456373463272, 0.5457871184095457, 2.610455567650847, 0.57159778939222, -0.3707368902257795, -0.02377349011366281, 0.9646369618783419, 2.580815512635348, 2.003567637777463, 0.9495691875665639, -0.14467321764071217, 1.1697066425164693, 1.2948224010090787, 0.3497910740405088, 0.3646759770219913, 0.3501508299610411, 2.4482776119027267, 0.15137040711058325, 0.43698002104488565, 1.2068905238787477, 2.5777616579189253, 0.3752302096163359, 1.2914545633992796, 1.671419974919805, 0.8195931420616769, -0.40628735213374667, 0.9662253363683204, 0.4722684869666589, 0.9832560073379366, 3.57633841247756, 0.5009911529765766, 1.6952236711507815, 1.5953450114375296, 1.6022031745870402, 1.836524055225314, 2.0875300614562438, 2.4091826375333785, 0.8296144664054602, 2.2300983451662506, 1.375881522425785, 1.0293068349309868, 1.1948353919112524, -0.3864437274134225, 1.6581045355597277, 0.6862041576122397, 1.2542595746568277, 0.9028412718471789, 1.619781958851671, 0.5448378207462009, 2.0946231445278727, 1.1355694658438618, 2.218411898662647, 0.4301502446386647, 2.5961327856951524, 0.43394534315078503, -0.4763251265629218, 1.448617508766847, -0.04119972022873264, 1.24856744780622, -0.3053366082076525, 1.6629137579861955, 2.882742006911787, -0.5553518791449321, 0.953522696607965, 0.7540473516560096, -0.27600922773276704, 0.9162426211496735, 1.3494262314898626, 1.5809072356684015, 1.6552891236289664, 1.2003635052456445, 0.9085098145896808, 0.31038303523413113, 0.959056890579244, 1.1306090822070662, 1.8570796133229988, 0.5450928935684, 0.5388502943109512, -0.6148709177955745, 1.801163937956586, 0.014117767461905073, 0.9963270249150906, 2.532792390662033, 0.7747155867763584, 1.2124570594441624, 0.7479898636136613, -0.02120344801316909, 2.8328344696889127, 0.41765345336894144, 2.4267153039280083, 1.0607962488440814, 1.711874811107443, 1.9126958266600944, 2.07007332238514, 2.3431514435888765, 3.115835883584315, 2.7699049578735915, 0.3358456252698845, 0.6733893368163653, 1.5330578441434255, 0.9751692324971823, 2.761319686578081, 1.0387465132070703, 1.625513331384107, 0.7375912972405718, 1.4070286389085496, 0.5073663899893792, -0.24973154404679532, 1.2288402475608662, 2.7168514483871444, 2.0997709465901413, 0.8239975318192139, 1.6650769414276665, 2.505409318279145, 0.3622064441414399, 1.503689347926916, 0.43893540962173905, 0.9739463018415786, 1.5542284965638484, 1.786786781769751, 2.171226096314043, 0.6304726988223317, -0.3199947824761189, 0.5231544151462051, 0.952162041032683, 1.0783238945494464, 2.015745593248753, -0.5870158206933125, 2.530102291982036, 0.6445311013187417, 0.672076416145537, 1.3894029640824084, 2.0504273130472086, 0.7358931232608006, 0.9269988096549721, 1.7418559848023505, 1.7469644831513285, 1.0801726470045145, 1.934243497206329, 2.017522968064111, 3.1292061142920953, 2.129849745713474, 1.6247547158807685, 0.3640352557523515, 0.8055894219251989, 1.8870790896814924, 1.1533598600881603, 3.450406599715809, 1.2050308878304377, 2.1271409151691305, 1.651218524632763, 2.6653680002402487, 1.3085525224536942, 0.9346076355867736, 1.3276403159079855, 2.645262171063544, 0.7510696717807555, 2.212726735288757, 1.609080295069173, 0.696618605227363, 0.8470105615328778, 0.8235443162410865, -0.11770919874670893, 2.6256804500247872, -0.010775818770707657, 0.34854542297183344, 2.6741194531417958, 0.29839510163073535, 2.000960734162379, -1.5482735057184978, -0.4167410597877599, 2.0425634878381853, 2.4113377940623995, 1.6063828382313508, 1.7737669825179785, 1.1062384193518644, 0.2312940733769283, -0.726057106402157, -0.007919807236668408, 1.1834113991538648, 1.9362713156216804, -0.008977112410627708, -0.0016967552555744447, 1.560806587889239, 1.1074357831805666, 0.3868745577567233, -0.6241395711698932, 0.9799782474619091, 1.2282920503851606, 1.1276728625790868], \"y\": [2.3821429703806007, 2.9134904814871385, -0.2689898984154462, 2.5252946169012, 0.9433285507181618, -0.1474943436111491, 1.1317476840376663, 1.7399566416968637, 1.228261351900208, 1.4806863952197757, 2.3717253814684147, 0.4787891552758795, 0.8717537237158487, 2.115584892884207, 2.5594557264353153, 0.5647726520882986, -0.687212039078793, 1.0747514627847436, -0.32039984666318655, 2.7016538403745987, -0.5325320494964481, 0.7219442033611125, 0.9446435730619822, 1.7098184274001955, 2.1485913632116103, -0.1281604422434124, 1.060376258864757, 0.9754032248787261, 0.8528170873615054, 0.4424490017625452, 0.44595031595286305, 1.108511126393326, 2.533398704653883, 2.112847736368766, -1.11392866905102, 0.6212968098274159, 0.20697562404597092, 2.7865304217150224, 2.2964162402096786, -0.15112672506749925, 1.498942697189439, 1.7269388072592613, 0.6178507844537896, 1.4529494429358398, 2.1819967461554697, 1.6279782346117035, 0.684401381736762, -0.2755750538518116, 0.8114827006097931, 2.0695192067245607, -0.4359991993275638, 1.617858514936605, 2.789103503816671, 2.729625082952808, 0.9013959761841321, 1.4069399294905025, 2.1248733801083874, 1.153240426040835, 0.94194098887929, -0.7436052015846919, 1.757796218228521, 0.8124194648626935, 1.3543775408589087, 0.20647804423438854, 0.0024983086674614796, -0.7358721171722444, 1.481837596887842, 2.0019043262143867, 2.0342027892059944, -0.304594953694888, 1.0266011762688163, 0.26006661503867146, 0.22984799877306517, -0.43416380273602884, -0.3781124241183429, 2.074242352426248, 3.683849777903299, 1.1884499959764152, 1.7140021729449866, 1.124395321755166, 0.9020619597796339, 0.2830752353125734, 2.8054229118731526, 2.8478851245864627, 0.42653600640792033, 1.9915696047681446, -0.6009253831459289, 0.7476419384840061, 1.63280733196496, -0.3614526965598033, 1.622523773718287, 2.101911895308829, 1.4681578598017784, -0.6934356498126035, 1.2117483478221456, -0.30171126274762883, 2.0737438494477587, 1.6948252382191513, 1.0303379245147108, 0.47386568700849985, 0.5286864139161913, 0.6847830161172077, 0.5118909982383559, 0.08790154687488316, 0.5516714238215152, 1.2003977691281713, -0.5146056989578782, 1.9070246470462058, 2.0863123959766496, 2.4369026688245214, 0.6300673056322141, 2.4818007075129493, 0.46691713695576476, 0.7127060049493397, 0.0633867873984506, 0.217190638051737, 1.2387940437280909, -0.017873623398653837, 0.7818272963792234, 1.6880134036652592, 1.3898865313183633, 1.5020795549365333, 3.503305588960109, 0.4586211178136903, 0.43366232326130605, 2.2122639017955317, 0.4180946093730181, 1.4806325621223855, 1.6453067513267652, -0.5453795863196045, 2.830990249653082, 0.6047181906357388, 1.3409960102354581, 3.049507583634726, 0.18609463608099264, 0.2547789883676522, 2.8296446354698706, 1.22816340087038, 2.2116284583493533, 0.4587518060810024, 2.0645760641855206, 2.8828137116696286, 0.633683115022732, 2.1303806914107053, 1.5171921332808247, 2.1921573819546523, 1.6613933102597267, 1.1495821978158673, 0.16709179551570352, 0.59897072001562, 2.3034478517960157, 1.0473444645897838, 1.7608441396843437, 3.2055501692723563, 1.2234351031656305, 2.608295274116128, 1.2844768888118159, 1.1902576607050612, 1.1978847946472213, -0.046585484356313156, 0.28619058806873887, -0.5529678957760542, 1.384587032649054, 0.9329642053351693, 2.917937008635265, -1.2417964919130364, 0.48812972990400494, 1.7222060654322902, 0.42489263695986956, 1.889515408121205, 0.8988850731308615, -0.09100681120905452, 0.2945639067803828, 1.2480971648240433, 1.3589387005654592, 2.471992748980388, 2.1391409360803832, 1.4656835503315224, 1.4564620521535507, 2.3551398068106395, 1.7228660317795008, 2.468274047474769, 2.8361519953538123, -0.4587492793476009, 0.30563258120072967, 0.3346160706298208, -0.9264845855119686, -1.4712704433500896, 1.775282104094321, 1.4337760076535062, 0.9513558026794154, -0.1810127622991815, 1.8945162710822914, 1.0274115045752952, -1.0816543868590935, 0.30468175688793675, 0.7134037005083738, 1.653372469694525, 1.583777784806062, 1.9427119025294823, 0.3404144670504602, 1.401178718841329, 1.647590530890468, 0.4542999958626479, 1.2014630255430783, 0.29733734429329306, 1.201780288407225, 0.5066533442828839, 1.4324591389112233, 0.41508314893917575, 3.1841555232311745, 1.4448545671203472, 1.122378150898906, -0.04278996412264857, -0.701207836016001, 1.6598497620209307, 2.6047609811304637, -0.493005992373327, 2.0675709215797857, 0.5321437402893863, 0.9607386219890336, 1.9009370480998735, -0.6072134045146778, 2.4070745746946516, 1.403542190740063, 1.2657703977917532, 0.3152452104301384, 2.1956579403584504, 0.622139503933097, -1.904236653883434, -0.7737282521248816, -0.14156141623879925, 2.183522998848, 1.3532786438746152, 1.4863678169273153, -0.3080769854557026, 0.49658960461818846, 0.5635144324133754, 1.8668450770199314, 0.6439136914481546, 3.1173520701620445, 1.4384497200159343, 1.2434579083255577, 0.7998111649911208, 0.9620500031038718, 1.0529615195108553, 0.9177052683608394, -1.0372690328746015, 1.3532629368306854, -1.9528822800259178, 0.8576811483689357, -0.06023792246456616, -0.07401169572933552, 2.951454043314434, 1.2216840694165432, 1.505373343298531, 1.3720966338801017, 0.9412546538409895, 2.0711965428743113, 2.210238842035078, -0.1653526751116141, -0.16875846768228397, 0.2309767265196262, 1.3351902953838328, 1.4301700492770646, 1.4624016971734737, 1.9829367731427552, -0.25160971350535877, 1.714881906338774, 2.4026043083508553, 1.1280316946621887, 1.015883645444169, -0.46820641769525606, 0.1364790632254823, -1.195492689049109, -0.3489585328876601, 2.029560794824288, 3.2964748987864683, 0.668817589919459, 3.3357345412610866, -0.6775691950535336, 3.4874538697699187, 1.574934538122854, 1.870101338436689, 1.2866892123484894, 0.9361830660315704, 0.7138372302508391, 0.8997376600237221, -0.12516643517283743, 2.419218386627936, -0.6012066608923015, 1.9591649242967946, 0.7709748756526061, 0.012722702819281229, -0.3601080466542108, 1.3260342350717815, 1.449086796114475, 1.5632921076553004, 2.3908117818149517, 0.5621988230456028]}, {\"marker\": {\"size\": 3}, \"mode\": \"markers\", \"name\": \"Class 3\", \"type\": \"scatter\", \"x\": [-0.8753113650424456, -0.9501846291069904, -1.7157168636637494, -2.4300286791530543, -2.268182955901273, -1.7324533949296264, -1.3007164648136316, -1.6866585540304224, -1.8516795617591575, -2.210818063124722, -0.3538316630207967, -1.1889103594686123, -0.9553319364573268, -0.017275346124405955, -1.5683917328575987, -1.0900081181319703, -1.8193878235093246, 0.7105028245682805, -0.4198922978923778, -1.38654035713053, -1.5930538019404457, -1.66197206644114, -0.9652501398107844, -0.7616431612197306, -0.6626504755508511, -3.032716691466985, 0.2516720869665041, 0.7052741275301366, -1.7187960812266365, -0.4307568114123952, -0.45071037749963594, -0.8273278730901756, -1.113400727058292, -1.749910850491497, 0.11264715859605956, -2.1136694061348322, 0.23681589999939923, 1.3646765239410446, -0.8041959844950791, -0.8638481349541205, -0.2780465495309973, -1.801356940998951, -2.8721064273367736, -2.124939369737194, -0.6038239982717617, -1.006189608569993, -0.9165707331403589, -0.06295395045732466, -0.7273796944900335, -1.681152800568094, -1.1783805285795372, -0.4530004425484838, -0.9712678512908555, 0.10712673973612064, -1.0255162799378437, 0.41738855901986494, -0.9894449681759663, -2.085938514120363, -1.6214292409318602, -0.9422424691368912, -1.0718771535347145, -0.9342649966431542, -1.957701057818483, -2.23334640904623, 0.5606797114630482, -1.2176160555844189, -0.8484258317502317, -1.625395767696563, -1.3957663601136263, -0.8362865143573492, -0.5545189182469019, -0.03188040613368148, -3.603854798377288, -2.39360358823505, -2.192990799876598, -0.4479507202822768, -1.587782196063901, -1.556924490827625, -2.5078268988427603, -1.0156091837319274, -0.878081624435568, 0.21996658535433378, -1.0278383914243883, -1.4519492011818962, -1.1763274604833633, -2.398724230401201, 0.49993430263913763, -1.6821542909898581, -1.6174563918851095, -0.3088194819693888, 1.1994873944710762, -0.24339535436195303, 0.3271926279653983, -0.9673701133625343, -0.5310345902447446, 1.052752519965774, -1.3724642320919542, -2.373464984911037, 0.22388411745530257, -2.06737993921449, 0.2088867625482318, 0.015522175158175111, -2.449609573445927, -1.3289887989203555, 0.3541626803456648, -0.5351988177576217, -1.6561001469933503, -0.9418721679362052, 0.5583526804696113, -0.4511792830145964, -1.3720881992065161, -2.0652370568775673, 1.0964096066178026, -1.2255795222330903, -0.6865829589627195, -0.12270273700993473, -1.1703892381048364, -1.2535534764082448, -0.4994256219445099, -0.32415823316316705, -0.8154391504894772, -0.5924974437142675, -1.5389520703932096, 0.26249368989446875, -0.6851287572025998, -0.7545396711476906, -0.423433643199454, -0.23192922125777882, 0.3149696956353374, -1.141163042716289, -1.213110030696998, -1.5918737073306666, 0.7025540832349089, -2.21926468551582, 0.2200277431476927, -1.1366374386966347, -1.800244459716212, -1.1233128982737015, -1.9048442154737966, -0.26349481229757954, 0.7607290410049619, -0.7709222915007542, -2.4460972851040585, -2.555485586879901, -1.5626479461593892, -1.5752796345817104, 0.5722609225258584, 1.1018096081900732, 0.04408475470598616, -0.20642059171321436, -1.8341961149508645, -1.1735120321123675, -0.2899969494713892, -0.9098646031254762, -2.164011150330908, -1.7308374614931918, -1.0842972391051937, 0.5430403555492658, -2.0442114834790215, 0.2449070582581241, -1.2309122625154714, -1.3794840751409336, 0.9214332927521454, -1.4984072903453296, -0.8563591784289029, -0.6705137869134054, -1.475148337599381, -0.4763581053218453, -2.192790773660109, -1.0280528699825122, 0.693739762764843, -1.6139863684842772, -2.0179056357432312, -0.2189415007559491, -1.1021122653536373, -1.8951486951477614, -1.2309069537621415, -0.06855318269939792, 0.5218732636853292, -1.021785062646287, -3.4716384338835256, -0.2487495048774051, -0.9316994960772681, -2.5930963848242596, -0.190206044755454, -0.7007024924036518, -0.5244504885961574, -2.6467104921072027, -1.7489541379932116, -0.7955093211456897, -2.0356829275171755, -0.5627993806269262, -0.8201087010623797, -1.8437710693870015, -2.093101220994978, -0.5549046815503049, -3.409131933027819, -0.3687401809625497, -0.9787997386580444, -1.1864723891700164, -1.6585939183505127, -1.492182009632609, -0.8749312629288497, -0.6706039571610678, -1.2975166939974732, -0.09962386884479701, -1.1840086142799824, -0.6954059452556172, -1.4346936393347283, -0.8845149531196287, -0.06279851817242055, 0.9099240523653904, -1.4560678278246753, -0.9308177945401189, -0.5057898010262505, -1.6561323668042918, -1.3413207804153402, -1.973796910675858, 1.102850919846499, -0.9753070102245451, -1.0811985209373192, -2.0831651957555173, -1.1908032655204102, 0.21060154350139415, -0.40903397573834477, -0.8018151424198949, -0.6548982002904539, -0.8282453144678654, -2.0262222480393834, 0.34286699038558766, -3.163340905378423, 0.32235307793166035, -2.0188403537723696, -0.14294436906723296, -1.2436036432006938, -1.3994177119452522, 0.6469591338295189, 0.24095611705681774, 0.01782963729406606, -0.5883762741903797, -1.9213708262980345, -2.202092098982166, -1.4737013850766194, -0.7111733508263445, -0.40183529973870824, -0.11166730335065533, -0.8711494767314099, -2.0198895666530943, -0.4760443453123736, -0.6425144637506547, -0.35286860703664935, -0.5821686653809656, -0.3142762964736826, -1.1352269700991682, 0.12872604933601028, -3.215149068373263, -1.54579479634411, -0.6615288683328148, -0.2766771483153522, -0.4768620783165678, -0.24674447089995621, -1.9537281788461138, -1.5464424759414555, -0.6255315717022334, -1.2278351365361875, -1.0197992934403237, -0.18441782272387008, -2.0742837692070513, -0.031112218197076102, -1.1064913850152989, -0.9285781935212466, -1.945484523877063, -0.0057355362413646915, -0.8067117283620772, -3.756085253010259, -1.6668640165658943, -0.47880248785866875, -1.1401358755570523, 0.6438011420991965, 0.6720287289279143, -0.9230915003878879, -1.2508734438436049, 1.2133884773133072, -0.8743863219013435, -0.9555450488833279, -1.6348232551515534, -1.7569871954163052, -1.62373025583415, -1.4376958403244606, -2.43381345092485, -2.5341403117708676, -0.9159484044663794, -1.3152546599717179, -0.674585064856903, -2.9118353993571957, -1.163263674204949, -0.7826350015871273, -1.3252920029414204, 0.09704497630688791, 0.938362317487232], \"y\": [-0.4460795360818255, -0.9586146696266187, -1.6758617998907033, 0.7837840548868442, -1.7064527167440122, -0.08757827277973229, 0.2721376312951227, -0.7155510097403274, 1.1870905774081488, -0.6841217483435427, -0.5781104002239917, -1.1323589234256273, -1.1498761500817059, 1.2537426257831465, -2.3965850442540844, 1.630147205985578, 0.6711644305023678, -1.5644118684001358, 0.66023464971145, -1.2075607152717585, -2.034597014876776, -2.2478704580900954, -1.7850275660102075, -2.586316150791076, -0.1501740767906845, -0.6186299643510561, -2.2332916344944236, -0.5727884298232411, -1.0568594615063038, -0.9225085691068728, -1.938674385953973, -2.441355109206567, -1.9215806304090695, 0.2602609773369833, -0.37895215426862894, -1.3225947930520405, -0.8555122707003041, -0.5989921030064465, -1.3151602363798145, -1.1554508906487908, -0.024592465225094062, -2.3572609061839582, -0.48207654651557896, -3.1949834018879577, 1.5417420558167865, -0.14511525175392181, -1.1008231203590035, -1.2959499235912844, -0.6720124341963698, 0.01143852749913532, -1.7705213105460276, -1.916034615792771, -1.0092972891151188, -0.5160205792677557, -0.16624492705580352, -0.43128351814420407, -2.3374849448596144, -1.3111923857616306, -1.1906269217887173, -0.4599508178820859, -0.5039863908154996, -3.014090422581473, -1.1469047216160755, -0.3883416050178936, 0.2425907958755651, 0.5198724625661557, -1.3436765964956354, -1.3083835024357642, -0.826251839851437, -0.9968944247792026, 0.21392550983821867, -2.5139303431926066, -0.04741248629307382, -1.2291599620009142, -2.837212333948937, -0.2260020171128687, -3.641701739728551, -0.6005355351233166, -0.8130550703299779, -0.4093823296726914, -1.9920941552345992, -1.1616291058364359, -1.9515149940202876, -1.902102167937398, 0.745175400497573, -2.645109369635649, -1.2134163243011766, 0.06023665849621396, 0.8617114246502597, -1.4974509368833662, -1.617557718269762, -0.6948557216743961, 0.592041495233238, -1.768148518791055, -1.6909659007660802, -0.8607951623371228, -0.8117088683669991, -1.9906108069557988, -1.669737720930808, -0.45285473946939314, -0.26698988382961986, -1.7715917675882369, 0.5306873733043709, -1.2557372444129908, -0.43289471268855206, 1.207331959953096, -0.05401896064262157, -0.7261562682701903, -0.482235158818614, 0.09347674772901193, -1.855617696757566, -3.004802329483076, -2.1247780354050163, -1.2822254882189572, -0.16831368594046103, -1.5944776310806303, -0.711895112989688, 0.6387720174964748, -0.2507540568592558, 0.1964173414856727, -2.3221873002368296, -1.664092070102662, -0.40217153029282804, -0.9783125264142617, 0.7354962496240709, 1.652550608605953, -2.7951887772007957, -0.6113892963038347, -0.3136567657757058, -2.248235426552942, -1.8671496294641599, -0.3999138494812262, -0.5976119455419573, -0.5467045653072595, -1.621705235796726, -0.9850246251528875, -0.3390445400643721, -0.5722649567312492, -1.4460113818004854, -1.3801226979178218, -1.4074497780283757, -0.04917537221107837, -2.795235730439722, 0.28726984993213756, 1.608216594538011, -0.8118403932645968, 1.0453155430049006, 0.231991922040232, -0.39588810368469485, -1.5619623694112903, -1.0034404340061052, -1.4620894572162695, -0.026016889379540498, 0.5064184006019528, -1.1974458433368984, -2.9030307006324927, -1.1241278869429387, -0.3568548342180994, 0.8903433467495365, -0.40652125956922214, -1.9781979663165217, 0.1100355758449163, 0.5734166616348946, -2.1415079291899803, -2.803015474805135, -1.1504884772416595, -2.62588232539492, -1.543116080797275, -3.928420006414297, 0.8069022417551985, -1.4660332947509565, -0.522060380269513, -0.6923075361579316, 0.2509219328036596, -1.2076559312870674, -1.8430473236336864, -0.6254518494681973, -1.8188825160276292, -1.2764245457231491, -1.76182098560663, -0.09866995662477973, -1.2868280071405347, -0.47397326043843646, -1.5393965904727853, -2.2788129940427906, -2.38310537200499, -1.0363383361503622, 0.18751206351507022, -1.8260943014975997, 0.171095235883292, -0.9371142002801127, -0.2933429554301308, -1.374203880799101, -0.9121718520764871, -3.978468038904916, -0.07839163816894457, -2.029472721219634, 1.0977231357044275, -1.74223668297613, 0.40175767851665456, -1.8148176202085131, -1.97196786428571, 0.656443788374298, -1.2572874582613425, -2.59375394658, -1.0793590515244331, 2.2555384536519223, -1.766489891334329, 0.1708998487467306, -2.4663988500121925, -1.681207481062215, 0.10116491067652311, 0.30606249140572706, -0.13055309517924074, -1.862904420625792, 0.050098368484764455, -1.4115405027613122, -0.568118825417053, -2.0884050659275317, 0.4398319585254822, -0.5387835371194254, -0.563318743479525, 0.005002755989162555, 1.6401941793838484, -0.6678337907021208, -1.3600713168441407, -1.3011770288151274, 0.3433588917594297, 0.16216519782127414, -1.1203769749745467, -1.6197059791808393, -1.0233151732576193, -1.514644161395011, -0.4425768260656372, -1.373996476168505, -1.940444930798817, -1.3286224029793254, 0.551060464440982, -1.4400592512388373, -1.0246686731785295, -0.669298922129234, 0.21090061565200546, -0.7949073179957357, -1.263967022665713, -1.4841888608713645, -2.372295957393912, 0.9768384813905406, -1.6909960802861506, -0.8169070774291872, -0.5012483984990755, 0.13139643145134072, -1.2459746673610024, 0.9370279782414461, -1.9935830717119414, -1.1227348280693301, -0.13600973415267026, -1.092303367679983, -0.8057757154270538, -1.4440008973416198, -1.2646212729884123, -0.37260099612501874, 0.10721498229147008, -0.17614324629436084, 0.874123410355635, -1.3561465557005414, -1.3091074824181361, -2.6479123321117326, -2.0886803523719646, 0.7440588816525056, -1.1721224856912065, 0.1845950730553545, -0.756970483153893, -0.48910855507414075, 0.020618309589208073, -0.30887102215478046, -2.8664249993490865, 0.4005159929466051, -0.0284950744646979, 0.34062335074881345, -0.243362607315034, -2.633287069494785, -1.8597335537981166, -1.1793246903397465, -0.4377321120007873, 0.7281922784547814, -0.801587625712279, -2.3458312799232246, -1.0377609317661, -1.7059590315073918, -1.0847304331773842, -0.22508360143062045, -2.486049202497974, -1.7668623901741745, 0.36665861688729673, -0.8827249580915403, -0.31553404076605174, -1.7666716586985975, -1.811589566546944, -0.9782716710013452, -1.0618468397344365]}],\n",
        "                        {\"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"carpet\": [{\"aaxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"white\", \"linecolor\": \"white\", \"minorgridcolor\": \"white\", \"startlinecolor\": \"#2a3f5f\"}, \"baxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"white\", \"linecolor\": \"white\", \"minorgridcolor\": \"white\", \"startlinecolor\": \"#2a3f5f\"}, \"type\": \"carpet\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"contour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"heatmap\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmap\"}], \"heatmapgl\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"histogram2d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2d\"}], \"histogram2dcontour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"surface\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"colorscale\": {\"diverging\": [[0, \"#8e0152\"], [0.1, \"#c51b7d\"], [0.2, \"#de77ae\"], [0.3, \"#f1b6da\"], [0.4, \"#fde0ef\"], [0.5, \"#f7f7f7\"], [0.6, \"#e6f5d0\"], [0.7, \"#b8e186\"], [0.8, \"#7fbc41\"], [0.9, \"#4d9221\"], [1, \"#276419\"]], \"sequential\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"sequentialminus\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}},\n",
        "                        {\"responsive\": true}\n",
        "                    ).then(function(){\n",
        "                            \n",
-       "var gd = document.getElementById('a98932b8-ee46-41b2-ab6d-8b9565b361af');\n",
+       "var gd = document.getElementById('69eb245b-2c5a-437c-923a-99fe81ef9d9a');\n",
        "var x = new MutationObserver(function (mutations, observer) {{\n",
        "        var display = window.getComputedStyle(gd).display;\n",
        "        if (!display || display === 'none') {{\n",
@@ -4026,21 +2789,23 @@
     }
    ],
    "source": [
-    "X, y = make_classification(n_samples=1000, n_features=3, \n",
-    "                           n_informative=3, n_redundant=0, \n",
-    "                           n_classes=4, n_clusters_per_class=2, \n",
-    "                           class_sep=10, flip_y=0, random_state=42)\n",
-    "\n",
-    "plot_3d(X, y).show()"
+    "configuration = {\"class_sep\":1, }\n",
+    "sub_problem_generator = StumpsGenerator(n_classes=3, \n",
+    "                                        n_features=2, \n",
+    "                                        random_vertices=True, \n",
+    "                                        errors=np.array([0.3,0.3, 0.3]), \n",
+    "                                        random_state=np.random.RandomState(42), \n",
+    "                                        n_samples_per_class=np.array([300,300,300]), \n",
+    "                                        **configuration)\n",
+    "data = sub_problem_generator.gen_data()\n",
+    "plot_2d(data).show()"
    ]
   },
   {
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "It is clear that this problem can be solved with a simple decision tree. \n",
-    "However, the fact that make_classification is very customizable is a huge advantgae for the generator. \n",
-    "So if we change just the `hypercube` argument : "
+    "Here, we specified 2 features as it is the smallest amount of dimentions that can separate 3 classes, but if we specify more, the remaining dimensions will be filled with uniform noise :"
    ]
   },
   {
@@ -4063,760 +2828,610 @@
          "name": "Class 1",
          "type": "scatter3d",
          "x": [
-          -0.34792641968871973,
-          -0.8240498844522224,
-          -1.556461608266853,
-          -0.4671263134717295,
-          -2.393770489060973,
-          2.013927623946378,
-          1.1362252354806193,
-          -1.0815075983836968,
-          -3.5282390649265007,
-          1.228287480512097,
-          -4.171529291144364,
-          0.45276785847419626,
-          -2.9691636716253758,
-          1.0091896512034002,
-          2.0575072584468077,
-          0.9606032258820044,
-          -3.1909783913703533,
-          -3.3105353099107973,
-          -2.192454189885409,
-          0.6273209851697497,
-          0.8127175872886487,
-          -1.594302329658163,
-          -2.4648970306569735,
-          -2.2826277758006035,
-          -3.9762809592552637,
-          0.8597338986988097,
-          -4.3419240446949345,
-          -0.17105311855387717,
-          -3.681235180004292,
-          -1.4330496602947025,
-          -2.443217533239207,
-          -1.541605528737633,
-          0.8812592038857424,
-          -1.105042715782181,
-          -1.413979818317872,
-          -2.1149961108896833,
-          1.2919244812448136,
-          -1.175608163923911,
-          -2.8233375916415206,
-          2.377161578719815,
-          1.112228254775054,
-          3.015350247046616,
-          0.02376684569507881,
-          0.9525459509545426,
-          -2.3586364000411546,
-          -1.9876409746216,
-          0.7708076008405743,
-          -0.09908574955436678,
-          1.8131729803859575,
-          -1.0563514814050623,
-          0.1995557164764249,
-          -2.7932343479055466,
-          -1.4954429165984142,
-          0.4915951038474565,
-          0.761233477266233,
-          -5.051536348787668,
-          2.157149718066758,
-          -2.127845816048836,
-          1.8573033793845366,
-          2.0338264626874336,
-          -2.033111091927868,
-          -2.175602129478,
-          0.5163430387251842,
-          -1.1229714672987048,
-          -2.0859878446698783,
-          -3.0013535260088657,
-          -1.8780188400241737,
-          0.8482214712133602,
-          -2.93756804350029,
-          -0.6001315178899261,
-          -1.1254068742938812,
-          1.8548420375756531,
-          0.6831625839796875,
-          -2.7212007301736567,
-          -1.38492273328497,
-          1.2831063631818465,
-          -0.14859534627065984,
-          -1.8794182400909292,
-          1.8987478217768161,
-          -1.098773874869743,
-          -0.1944242510483063,
-          -1.71851375615495,
-          1.1275621631772201,
-          -3.5635184735637013,
-          -1.6228855959091733,
-          -2.9592588554330836,
-          -4.187994946552468,
-          -0.11466285681204902,
-          -1.1627311358270165,
-          1.0121870268586544,
-          0.6979029689177927,
-          -0.10325614600831112,
-          -1.9277975519246289,
-          1.3653546500892344,
-          -0.5665269227044841,
-          -2.5319664446351635,
-          -0.5512285575273759,
-          1.2191019105268972,
-          1.0413263706115952,
-          -2.108150827594623,
-          0.6338017193732699,
-          1.8233826445061962,
-          1.4381977817649916,
-          0.2621718241137436,
-          1.759940092742072,
-          -6.3201249451589,
-          -2.593387650020262,
-          -2.8911550299955135,
-          0.36618388897931153,
-          -1.8997561656672417,
-          0.8635612132956577,
-          -2.178229295799827,
-          1.158504918211528,
-          -2.890862676234164,
-          1.1761642422022862,
-          -3.7971195041085632,
-          -1.1664137319415029,
-          -1.6712474492333076,
-          -0.2088519128872539,
-          1.6816759340788021,
-          -2.490538984557037,
-          -1.7659331965459164,
-          0.15515064463212103,
-          1.7326414241383201,
-          -2.396629047309817,
-          -2.4946929945056304,
-          -2.138094762695002,
-          -0.3007740672597299,
-          -2.575515032298784,
-          1.23810615509509,
-          -0.2532695648525799,
-          -2.3910218630103577,
-          1.2459976037303466,
-          -0.23024881433689348,
-          1.1544561751978077,
-          -3.0424390102935726,
-          -0.023243595438057985,
-          1.0627682743966969,
-          -2.168899715524881,
-          0.9227109142198078,
-          0.1819412205178751,
-          0.04164716501289467,
-          2.089807174387988,
-          -0.028247389389840616,
-          -1.8506062564714598,
-          -1.8253321736444668,
-          1.2612805542046048,
-          0.34789931720412237,
-          -2.8767938003548794,
-          1.9555414870741288,
-          -0.4174204694476622,
-          1.3980733452864023,
-          2.4732198095463622,
-          0.016396988625299702,
-          -2.7501463645713415,
-          -4.565155308507467,
-          -0.18941511094803343,
-          -4.307413009794647,
-          0.4836174264370653,
-          -2.422082228154611,
-          1.4361342557065107,
-          0.30361653459543814,
-          -4.529545880667726,
-          0.8465806256421277,
-          -1.900777154178917,
-          -3.739611916633055,
-          -3.402602583149779,
-          1.6611683256424676,
-          1.4346021476688775,
-          0.4620691983769201,
-          0.7010004870984972,
-          -3.028357560935517,
-          0.5320922848162064,
-          -0.1405388380411582,
-          0.5096273361659744,
-          -1.2228615251070822,
-          0.5276090829347504,
-          -3.0397195951292373,
-          0.39777598846557893,
-          -0.7291486523031538,
-          -4.08746327583986,
-          -2.793895925140597,
-          -4.670248020545804,
-          0.6928642228874644,
-          -1.6496544399455524,
-          -2.6398854163891152,
-          -1.7964107366276627,
-          -5.213740883141014,
-          0.9556417598150093,
-          -2.847598221213045,
-          -2.3035882112904527,
-          -1.9000147131705143,
-          -1.6077594933041488,
-          -1.6093139185163525,
-          0.1555311340626352,
-          1.235394875727635,
-          1.47417195912248,
-          -2.4750359071282486,
-          -1.8602023250603812,
-          0.7739280606394299,
-          3.1839119862251737,
-          0.363594741587278,
-          1.4515360003678364,
-          1.1810383779804192,
-          -3.2000682361968433,
-          -1.5978666542676736,
-          0.7773958389694356,
-          0.3315919870353652,
-          1.0470677671416346,
-          -3.2919455063016807,
-          0.3421882039967141,
-          -0.6468159267474113,
-          -2.9242592308642115,
-          -2.026613391644413,
-          2.068201910417297,
-          -2.4035369701890303,
-          -1.0023749951465268,
-          0.5192936665129625,
-          -0.8708435116082418,
-          1.0624522524587932,
-          -3.337476599787117,
-          1.8769205945486416,
-          1.6371256103206597,
-          0.2820053744131841,
-          3.3965845469197937,
-          -2.1289230815595874,
-          0.354899206241563,
-          -0.19011573089000022,
-          2.0702035489943613,
-          -1.0751393420109778,
-          0.734027309292405,
-          -1.8792052286727254,
-          1.008088460088943,
-          -0.6871019132356533,
-          -3.1338263233406067,
-          -1.436642230828995,
-          -2.1287618095481258,
-          1.178139234249378,
-          1.029318458720537,
-          -2.0383087573672736,
-          0.11868909594227817,
-          -1.8397017994786062,
-          0.7470455814050356,
-          -5.282425865983399,
-          1.2344053806485686,
-          2.125787280843533,
-          -2.9215408443938924,
-          0.5669882901791483,
-          0.11900512752047865,
-          1.832460936146233
+          -0.3396480084134613,
+          -1.238731486261419,
+          0.6100892118877779,
+          -1.478653438364253,
+          -1.472478326206806,
+          -0.7533069391871909,
+          -2.758643019009292,
+          -2.03263375543892,
+          -1.925777548012959,
+          0.49430478785660026,
+          -0.9311514997861496,
+          -1.5550263671172506,
+          -2.173497532290698,
+          -1.6123822358736106,
+          -1.6134710379492612,
+          -1.0137611192915692,
+          -0.16137288384085657,
+          -0.7870527532635258,
+          -2.354154429163576,
+          -0.2470950956611535,
+          -1.1179094103202494,
+          -2.507429703490965,
+          -1.469645071529707,
+          -0.6496633667047893,
+          -0.6695796172977004,
+          -1.690157019547704,
+          0.05115738191298358,
+          -1.8556257062375812,
+          -0.662259784141608,
+          -1.4885429394906264,
+          -2.1279657743968667,
+          -0.1715878644280039,
+          -1.0734180464879086,
+          -0.6312933527125061,
+          -0.6315384728778342,
+          -1.0365265013740845,
+          -3.6709657422805906,
+          -0.9112510080209119,
+          -0.9064451384110707,
+          -1.223966860760664,
+          0.5067894804203295,
+          -1.8243010790666356,
+          -0.06670015606618096,
+          -1.5401179502831788,
+          -0.901024413310904,
+          -1.7157794703313511,
+          -1.3997745592309454,
+          -0.6980900491428021,
+          -0.9947865662596989,
+          -2.443043736866321,
+          -1.3494151898962374,
+          -1.1644391318478815,
+          0.923064162937504,
+          -0.73741404480246,
+          -2.9562865773991227,
+          -0.9385921832045007,
+          -1.1961219609802238,
+          -1.0353904460368684,
+          0.16516701655480537,
+          -0.1935019829589062,
+          0.4302214143380545,
+          -0.4016688147607004,
+          -2.0099030576594386,
+          -0.8984002749332105,
+          -2.5809816366176657,
+          -2.083073625304378,
+          -1.9374005999390265,
+          -1.7985672759126978,
+          -0.17057708593187448,
+          -0.7680928224197949,
+          -2.63891236750503,
+          -0.7350360386733581,
+          -2.2611352793396806,
+          -0.46785355603539913,
+          -0.7446095725436901,
+          -1.6933204044945223,
+          -0.7011974428488502,
+          0.9022536941888848,
+          -2.2145955821121492,
+          -1.9937384162840375,
+          0.1812481664172283,
+          -0.017788167968911583,
+          -0.16186711370841578,
+          -1.2501858865518047,
+          -1.9069060058877554,
+          -1.0786091838457312,
+          -0.7178994074419702,
+          -0.9867438981996715,
+          -1.2698313412001445,
+          -0.36209975186706556,
+          -2.0918303355243255,
+          -1.2278318769822971,
+          -0.5175097450431647,
+          -1.8633500290574978,
+          -1.455245107062224,
+          -0.7817203454963412,
+          -0.8234330815456707,
+          -1.9011384082626028,
+          -0.9406531984243014,
+          -0.6352172655960316,
+          0.10422680555431318,
+          -2.404605234401724,
+          -0.4748948847606912,
+          -0.47488222284804094,
+          -0.4179475727336699,
+          -0.0273458191074748,
+          -1.3214333145291355,
+          -1.7879353107972404,
+          -1.494853261402981,
+          1.3599142248647742,
+          -0.3003222122947081,
+          -1.4811589662850486,
+          -0.9344631931369604,
+          -1.7292891586196704,
+          -1.744646587782881,
+          -0.9535371502342876,
+          1.185861978332658,
+          -3.064737696713975,
+          -1.6747255575902749,
+          -1.8080159169287429,
+          -0.4851393288840796,
+          -2.223764319217001,
+          -1.484231329829504,
+          0.799971985058161,
+          -2.285536459926073,
+          1.1636480942899503,
+          -2.549076329058835,
+          0.29168149706937396,
+          -0.5475031191063048,
+          -1.9450535974648924,
+          -4.304639834380183,
+          -1.2575063043000383,
+          0.6643278246064137,
+          -1.4486481326798681,
+          0.4694527243700082,
+          0.18590565540838222,
+          -2.0006988766229616,
+          -0.7970483362234282,
+          -0.9288331611128714,
+          -0.8842631903968872,
+          0.6170262427409237,
+          1.174737939944587,
+          -1.1547527614026065,
+          -0.7135142455622658,
+          -1.2121914074933542,
+          -1.6008878776213908,
+          -0.636004231485098,
+          -0.08281136004757395,
+          -0.17124499279449723,
+          -1.8452033257883422,
+          -0.23809548662058877,
+          -1.0213102569979595,
+          0.3026454983875708,
+          -0.4422058999116508,
+          -1.22193725475454,
+          -0.15844530529951006,
+          0.33100322078628164,
+          -0.30471364510548593,
+          -0.6694956234692433,
+          -0.901107592784293,
+          -1.8342183409867947,
+          -2.0256867959900875,
+          0.1807539840621708,
+          -0.3636775395353007,
+          -1.0124862188601997,
+          -0.9227133289692666,
+          -0.005814955617387096,
+          -1.8416371232221702,
+          -0.5789950073545347,
+          -1.8382962547516235,
+          -0.750243900288657,
+          -1.4802479354362925,
+          -2.4763969448914,
+          -1.7324910731616647,
+          -0.6830136430327773,
+          -0.1255716181953409,
+          -1.0193880083130513,
+          -1.0188751004594534,
+          -0.6709717225101377,
+          -0.47049934524336445,
+          -1.110886601219378,
+          -0.29636247579069286,
+          -0.7715261148560371,
+          -0.9004141614173563,
+          -0.9750106085967053,
+          0.47951602524198833,
+          1.1952809729140297,
+          -0.11062395599938224,
+          1.232617443521173,
+          -1.856139885521003,
+          -3.1654216324144264,
+          -1.7739750442479512,
+          -0.6515620920159575,
+          -0.030993699166081634,
+          -1.9159802630368943,
+          -2.346046095197731,
+          0.20250025569278596,
+          -2.746629331218697,
+          -1.116779301283268,
+          -2.625601532201017
          ],
          "y": [
-          -0.08505145704322117,
-          -0.4009006563990698,
-          1.4403418395826715,
-          -0.505966870146413,
-          0.9114122505065261,
-          0.44601699663536437,
-          0.07264866234317188,
-          0.03326986272542751,
-          -0.40889471674000233,
-          -0.14742581248687675,
-          -0.43207242511384114,
-          -0.016400389267173902,
-          -0.8271972499917768,
-          -0.41452921316862634,
-          0.32499520992291325,
-          -0.46335188588583515,
-          0.12986207089926685,
-          -0.14589446899815328,
-          1.1199967872026426,
-          0.21337509168807192,
-          -0.25614914480430534,
-          0.21184227206949371,
-          -1.0256147735782009,
-          -0.6432535929138251,
-          -0.8644938979814828,
-          -0.20187118080128513,
-          -2.1512042811015477,
-          -0.7269962410111068,
-          0.23444227174383528,
-          -0.5728507936657592,
-          -0.13020132156786413,
-          -1.0197666516779254,
-          -0.04331521067971709,
-          1.0988731253052777,
-          0.08425517852984593,
-          0.678752016375969,
-          0.0094512835405006,
-          -0.7251105334492255,
-          -0.6646467080387186,
-          0.7158353691619166,
-          0.543933647142527,
-          0.7283965152844547,
-          -0.11895657180046115,
-          -0.4077043613407033,
-          0.17871863177368255,
-          0.5059249751178369,
-          -0.09086047718124429,
-          -0.9838023485970516,
-          0.2976853949692681,
-          0.5734854325863045,
-          0.2264876748462855,
-          -1.18457716526994,
-          0.4939542656520911,
-          0.5174299962703014,
-          -0.45152399528789805,
-          -1.17556484188204,
-          0.45109899989094476,
-          -0.3922682430470339,
-          -0.20788163966180428,
-          0.728114227848007,
-          -0.7104458220258689,
-          1.1679132540166963,
-          -0.5269635018991591,
-          -0.41607814820657474,
-          1.3303656643461805,
-          0.2738139832654142,
-          1.1976016651573935,
-          0.0337151562453448,
-          -1.2399725719315002,
-          -0.6074322874957849,
-          -1.6634115532875606,
-          1.2179760143964857,
-          1.1133045476005374,
-          -0.47724865627043556,
-          0.14078308372272336,
-          0.2955348221068067,
-          0.006302545030119407,
-          -0.3623927324706978,
-          0.0226719244318805,
-          0.06032380454268571,
-          1.0410824552665985,
-          1.5941417777332196,
-          0.5953824913290378,
-          -0.0336098905591341,
-          0.3553004714021776,
-          0.6508738128052094,
-          -0.5695003408887276,
-          -0.8875839716546443,
-          -0.1266870814977088,
-          -0.6185453993965172,
-          -0.3285834654004492,
-          -0.6385470657947565,
-          0.048215200469368724,
-          -0.06385116488502608,
-          -1.0814043821797497,
-          -0.5107306298771518,
-          1.4178710045386635,
-          -0.021618928181215517,
-          0.18936914686144338,
-          -0.15264271372680777,
-          0.11742375445669273,
-          0.21548541186207926,
-          0.38421797272122354,
-          -0.6480626548346067,
-          -0.0986435048233685,
-          -0.7733942720331608,
-          -0.969485770271072,
-          -0.1366158729947488,
-          -0.09917822984066998,
-          -0.23058250255357612,
-          0.7677667995505625,
-          0.4043734092846184,
-          -0.2273776885087842,
-          -0.677173366793935,
-          0.5631990087563225,
-          -0.6745261694045124,
-          -0.4453139808208859,
-          -0.18639811182504562,
-          0.7593554303024738,
-          0.2589889348569638,
-          0.23566882437723927,
-          0.7195062671581149,
-          -0.21442590682030316,
-          0.9969245378123613,
-          -0.3696821555494634,
-          -0.644647045534819,
-          0.26192233684405963,
-          0.9420447096051228,
-          0.4492751680860325,
-          -0.24500683951959756,
-          -0.16490547763532942,
-          1.1222077833366837,
-          0.053816293439987485,
-          0.8932621938748935,
-          -0.26510129457246623,
-          -0.2436626265838181,
-          -0.5538450827153942,
-          0.4022936139145825,
-          0.5394230021362086,
-          0.11187803499268867,
-          -0.645251979666297,
-          0.0481674207406817,
-          1.7604551828709043,
-          -0.10154731058125263,
-          0.3217696742352204,
-          1.2754435273737765,
-          -0.3652460894419845,
-          -0.48309388308816564,
-          0.6579551521837409,
-          0.40271734739297865,
-          0.8318226299920702,
-          -0.09765635196472719,
-          0.9252576269344682,
-          0.2193194920705826,
-          0.5300336399363703,
-          -1.8004870693984358,
-          -0.22406885263977888,
-          -0.5432872513415546,
-          -0.19621337926497676,
-          -0.7865987862275122,
-          -0.056496644818150345,
-          -0.3178442279806722,
-          -1.4540800465369028,
-          -0.7189586947999841,
-          -0.9813175916928067,
-          0.8586286158799645,
-          -0.14472484906560257,
-          -0.009035969267220383,
-          -0.23322385263987377,
-          -0.7163143446039488,
-          0.5760368661606139,
-          -1.1811478061792533,
-          0.5043819614250178,
-          -0.6815975368664038,
-          -0.916485851079988,
-          0.7476215532191769,
-          -0.3511816352950926,
-          0.03582774016243159,
-          0.03285956924585267,
-          0.6867123795384976,
-          -0.7062678487041727,
-          0.44804204928518876,
-          -1.407516925803135,
-          0.19649751112588582,
-          0.20882753050289002,
-          0.37648851602077604,
-          0.06363806930781093,
-          -1.6207083281221317,
-          0.025211591611417984,
-          -0.11707074081851143,
-          0.10872213121644483,
-          -1.2405826191019869,
-          0.7087772930131678,
-          1.1580278990934645,
-          -0.6597880946298486,
-          -0.8970313153538362,
-          0.2396720000283572,
-          0.9777610327811403,
-          0.24639041150767435,
-          -0.15889044386837006,
-          0.5181686936245828,
-          -0.155983292607172,
-          -0.5311660020780591,
-          0.6078549549837446,
-          -0.536625289063813,
-          0.30732444071908693,
-          0.08299296692978209,
-          -0.2623679571304375,
-          0.2808424878560479,
-          0.33229552964038345,
-          -0.5757672470568167,
-          -0.6401324714013095,
-          -1.8578745252265236,
-          -0.7268274288893594,
-          0.07745269342890876,
-          0.041172288561821785,
-          1.5656640924611749,
-          -0.25539558393713935,
-          0.5284741301195718,
-          0.7767991959707945,
-          -0.6633016418314934,
-          0.41394365441262315,
-          0.5147960858499734,
-          -0.1874682051828977,
-          0.923791884176889,
-          1.1892725138227571,
-          -0.1785399841398621,
-          -0.9981413886461803,
-          1.2745120310476317,
-          -1.032394743452114,
-          -0.36438238086480496,
-          0.5108365651043655,
-          -0.13584069895531908,
-          1.2753374465272618,
-          -0.8344596355657878,
-          -0.31511550278697553,
-          0.6586971725969354,
-          0.5746107977104168,
-          -0.006704754908207773,
-          0.5432646443132191,
-          0.021713978339495087,
-          1.5447521540941345,
-          0.19032457742248507,
-          -1.0447312741555668,
-          0.418278635123134,
-          0.4676832803391784,
-          -1.1296417476996057,
-          -0.10050158309630919,
-          0.24471858725142862,
-          1.026511330143647
+          2.552807776827515,
+          0.7612852525091833,
+          1.78243943191413,
+          1.5531680495503397,
+          0.5251644081689545,
+          -0.9506882485954029,
+          0.4267187576494903,
+          1.3203914223008613,
+          -0.43991673009475285,
+          0.769809374554431,
+          -0.45260452660519124,
+          1.1130913220135743,
+          1.3830435773608067,
+          0.702603122830946,
+          2.8884934905589112,
+          -0.07839104348993553,
+          -0.2447132969779533,
+          -0.9979851317910255,
+          1.200710220306775,
+          1.1747188333923644,
+          0.693009195994847,
+          0.26608156747776024,
+          2.077790830575932,
+          -0.7975107005210367,
+          0.6073886816906006,
+          1.623635639325664,
+          1.949488288285448,
+          0.6847419767295453,
+          1.9946187552845691,
+          0.8107110628275309,
+          -0.21959457377008107,
+          2.382756913627664,
+          2.0231537363450838,
+          0.34226701615787414,
+          2.5681078945399336,
+          2.5952351994214133,
+          1.8379721482268463,
+          0.6951465283635245,
+          -1.0264293930860768,
+          1.3640947522553044,
+          0.4715966846957126,
+          0.4884327210803422,
+          1.3351787737925158,
+          1.5233027168688642,
+          1.9875837088524717,
+          0.6659314804182648,
+          -0.4921292471065284,
+          1.2661593632699975,
+          0.7608262743399479,
+          0.5711303191280448,
+          0.1820367948942414,
+          1.4119507638380462,
+          1.1779911170396602,
+          0.9240985352530208,
+          0.9729677315134981,
+          3.511402841108502,
+          1.3074431248259508,
+          -0.1915277548813561,
+          1.7666346499360512,
+          0.07283241624362291,
+          -0.42925972402907164,
+          3.2332828974050525,
+          0.4226301507963558,
+          0.4866805086810414,
+          1.0699035019131666,
+          1.4828519981028787,
+          2.5802383568237715,
+          0.67164161301441,
+          -0.2549298851473636,
+          2.3326997010160495,
+          1.188243776173108,
+          1.7971088881084862,
+          -0.3462738692440126,
+          1.302791247495757,
+          1.3532218831504959,
+          1.2367946666515843,
+          0.27168175158745234,
+          1.4830971903886332,
+          1.6693903898871771,
+          1.8024734962155942,
+          0.16327189458591673,
+          1.4208515222313192,
+          2.9338786315347423,
+          0.2315269639882257,
+          0.16823918481948386,
+          1.3478220977392508,
+          1.8433561407613523,
+          2.4819532324972444,
+          3.7733532723571126,
+          0.1260835012724183,
+          1.4919056020748567,
+          1.7279604632963035,
+          0.9257471536256038,
+          -0.5444651602204753,
+          1.8731429014973497,
+          -0.27009516940248,
+          1.3928510142282104,
+          1.1567307029481497,
+          -0.1653173834293984,
+          1.5717488531202117,
+          2.074405741129612,
+          0.043838826168330014,
+          1.5238313726053847,
+          4.928059187773512,
+          2.157767951660004,
+          1.6641270993666382,
+          1.7738084076264682,
+          0.7585511717343343,
+          1.0834749232427927,
+          -0.903773521087827,
+          -0.6442473114102614,
+          2.110241502119893,
+          -0.09881658955182338,
+          1.6928850837823122,
+          1.2206907368557576,
+          0.33565971613181744,
+          1.6463132574799575,
+          1.190099825541074,
+          1.8690999102410073,
+          0.8830202586996528,
+          1.882682235466317,
+          0.6589586749157688,
+          0.33389702841293145,
+          1.4128998178251149,
+          1.93580776728967,
+          2.0526517777328186,
+          0.5062982967878642,
+          0.27849434795201944,
+          1.7897795156802525,
+          0.9393108182204754,
+          -0.04441622681081059,
+          -0.27217954434539915,
+          -0.45810316476497603,
+          1.1332967862071726,
+          -0.4639357891920377,
+          1.0104331354143252,
+          1.4711384123666083,
+          0.38804782406996385,
+          0.6071528426005908,
+          1.675076497250807,
+          -0.26201697541838986,
+          -0.9902545596168388,
+          1.5998198457023207,
+          0.3651256060832385,
+          0.4973600273819062,
+          1.8662133167728099,
+          0.29354279981304765,
+          1.3133077686066916,
+          1.6419391964906824,
+          0.42886643227029153,
+          1.6223040808567333,
+          1.119621340625834,
+          0.3968623469408632,
+          0.7938541245296371,
+          2.1202598777595267,
+          1.8294151844699558,
+          1.0214145037888633,
+          0.6836669809837947,
+          0.8673124193383595,
+          1.606793395181075,
+          3.1332971380364594,
+          -0.23792814207779833,
+          1.8071410961759464,
+          1.6406307724139753,
+          0.08520272273479135,
+          0.30959858246919625,
+          0.8500673872704204,
+          0.6723304981965323,
+          0.4252536377408258,
+          1.2484517263571477,
+          0.4831451912686371,
+          1.2365869229846154,
+          -0.4349821740260178,
+          0.7823795799371092,
+          2.5042020336181343,
+          0.8369343896335049,
+          -0.022130582245448727,
+          0.7056975754757933,
+          0.1565952322104186,
+          2.562706662605917,
+          1.409565894912369,
+          0.5909349601090006,
+          1.0128386044309177,
+          0.21187651122910722,
+          1.5077350363416508,
+          1.978026262953183,
+          0.21764943860497443,
+          1.186926665378119,
+          0.17589805727382235,
+          0.38888817096876016,
+          0.46396554017829517,
+          1.1533342503065336,
+          2.9128532888136243,
+          0.4118168601726947,
+          1.5015370590878359,
+          2.8672670155427804,
+          0.5216511362393622,
+          2.3803429674019267,
+          2.2620178044634534,
+          0.388906138009781
          ],
          "z": [
-          -1.848356195357791,
-          -2.594511326152964,
-          -1.7667955625007583,
-          -2.3195461167866807,
-          -2.3213404317882964,
-          -0.11755682960420222,
-          -1.0644409613544943,
-          -0.8803008635287102,
-          -3.706813633031244,
-          -0.4676013016998455,
-          -2.590369872213149,
-          -1.8876028953115278,
-          -2.736208717795467,
-          -0.38953644317492264,
-          0.04077006099830638,
-          -0.5506400364725336,
-          -3.3025607230274447,
-          -2.2293014134380615,
-          -1.1836526773203109,
-          -1.8082222028494306,
-          -1.0443073119960562,
-          -1.8508069034261538,
-          -3.3916797587189014,
-          -2.106122710552588,
-          -3.5400114677708414,
-          -1.1164211902655037,
-          -3.294857871976838,
-          -1.7069408511963502,
-          -2.6271195496582296,
-          -2.2350141691733807,
-          -3.1210762246487422,
-          -3.1454482842724736,
-          -1.4420754647999607,
-          -1.260112640907787,
-          -2.4078999069920775,
-          -0.7202540356208644,
-          -0.5221798370626753,
-          -2.096494913080295,
-          -2.8619476122137146,
-          0.11008261764408811,
-          -1.4161502725697268,
-          0.5243856292237699,
-          -2.1045774665238373,
-          -0.8055812765354681,
-          -2.9721043752369307,
-          -2.9470221682413538,
-          -1.3129269917176025,
-          -1.4310004594908103,
-          -0.5538581480917513,
-          -2.2961453095446798,
-          -2.443754162762467,
-          -3.0676761484010506,
-          -2.8323592199717815,
-          -2.391939650909489,
-          -0.8182983078445631,
-          -1.8251073112055483,
-          0.05252795428799617,
-          -2.459930364082085,
-          0.2277725617183204,
-          -0.36417525638011283,
-          -3.6530307477766417,
-          -2.159309855729826,
-          -1.157183856865866,
-          -2.689245037465977,
-          -1.91656628708217,
-          -2.205277598188338,
-          -1.5452207349588374,
-          -1.3806301419538813,
-          -3.9984223816080506,
-          -2.3501545129095125,
-          -2.0338643977680992,
-          -1.3668750529960494,
-          -0.9971836724358234,
-          -3.0976925549439165,
-          -2.850838475916311,
-          -1.0026618295353946,
-          -2.7167231695882776,
-          -2.8566490295106597,
-          0.3355691954911939,
-          -1.6437012293821356,
-          -2.011380432490246,
-          -1.9255742601887926,
-          -1.5276380558412956,
-          -2.8172935565621877,
-          -1.7849356551228457,
-          -2.1808085005634306,
-          -2.7586655916800376,
-          -1.5706050916067447,
-          -1.8218237653414855,
-          -0.37321498888019466,
-          -1.0531068572448345,
-          -2.041147945667241,
-          -2.15839968546184,
-          -0.29635964205497745,
-          -2.069773884677097,
-          -1.3537912410206694,
-          -1.3876621664168156,
-          -0.6665871187093337,
-          -1.4476754437807497,
-          -1.4363344237103637,
-          -1.6724242837058212,
-          -0.13403766932338934,
-          -0.8894883485145431,
-          -1.1840854636908373,
-          0.08066390058508643,
-          -3.5819073980241334,
-          -3.0242555584072344,
-          -3.1627550331831165,
-          -1.8273696029747875,
-          -2.0188018774496985,
-          -2.2776505020188575,
-          -0.3698635129337924,
-          -0.6881692396203543,
-          -5.032866709076771,
-          -1.4701353938785717,
-          -4.142999484564045,
-          -3.63463819823488,
-          -1.6449030388400756,
-          -3.0285060626871134,
-          -0.2231162715030246,
-          -1.9386552502742198,
-          -1.806897705642115,
-          -2.030514722000558,
-          -1.1686754941807878,
-          -1.7635914504536334,
-          -2.782479531667527,
-          -3.025794642591862,
-          -1.7144315997564732,
-          -1.7534017706906773,
-          -0.40291392149025496,
-          -2.297556477298794,
-          -3.5369108716764575,
-          -0.68750441294501,
-          -2.170792577975149,
-          -0.539047228593373,
-          -3.1478143209647453,
-          -1.9313193886680802,
-          -1.6683368935319314,
-          -3.1557854947427595,
-          -1.3218574056612467,
-          -1.2450975757623244,
-          -2.524655740549534,
-          -1.7232309558465388,
-          -2.036449968215142,
-          -2.3589425935876402,
-          -3.098963430161955,
-          -0.32272327824603997,
-          -1.35430037897094,
-          -3.252124037597046,
-          -0.2595809824076254,
-          -3.2335280087093965,
-          -0.5841088970104346,
-          -0.20018483149188127,
-          -2.5695722148055546,
-          -2.478620123925064,
-          -2.1262812204952017,
-          -2.220765924087972,
-          -2.052305279148417,
-          -1.5040795933232118,
-          -2.776790769364776,
-          -0.25426306042057223,
-          -1.6201290800031187,
-          -3.44825126884037,
-          -0.5915386134450445,
-          -2.8599133910698797,
-          -2.7681434422318807,
-          -1.561321859693824,
-          -0.1032410012107341,
-          -0.1294533834863859,
-          -0.9867108872604864,
-          -2.0879317461259124,
-          -2.8471716570306302,
-          -2.334062296436195,
-          -1.8024261096523841,
-          -0.7684200831846237,
-          -1.8081751491079006,
-          -1.2380173284655105,
-          -2.4488792912613806,
-          -1.6473526096251345,
-          -1.6132620636599275,
-          -3.358347517183463,
-          -1.7733220228619069,
-          -3.3321285716823867,
-          -1.721770649689914,
-          -3.603513528385567,
-          -2.017533090129391,
-          -3.396208562654741,
-          -5.118780388096003,
-          -1.2172910543474407,
-          -5.067204766383565,
-          -2.968081712701547,
-          -3.221931469585802,
-          -0.9655921055672125,
-          -1.9730007671420138,
-          -1.2579979381475639,
-          0.482564543810148,
-          -0.8451761552366641,
-          -1.2986857136174998,
-          -3.5375405740263535,
-          -1.0393607935851887,
-          1.2245461205251371,
-          -1.6889933065785727,
-          0.2614852115585431,
-          -1.2391677834579942,
-          -2.830574362433984,
-          -2.5022959835591463,
-          -1.3912782212538921,
-          -1.5995048508263832,
-          -1.3923395692737195,
-          -2.3091120755516346,
-          -1.422796876328498,
-          -2.3765079759352274,
-          -3.224416146249977,
-          -2.2277410431349924,
-          0.38591996436551934,
-          -1.9969553326745997,
-          -2.1852514110409595,
-          -1.4769639334620477,
-          -1.2887906181444833,
-          -1.9283083367838612,
-          -2.9037019342344568,
-          -0.20330286921779117,
-          -0.9149666352168876,
-          -2.038775796068451,
-          1.032554640159319,
-          -3.912255997742758,
-          -1.5880897526250677,
-          -1.6255873249612467,
-          -1.0012192836005722,
-          -2.5215769661432423,
-          -1.131236640219403,
-          -2.3603442191971498,
-          -1.0201430561437725,
-          -1.6793900641622863,
-          -2.9970675241100757,
-          -2.2007493747209796,
-          -0.7832810479986687,
-          -1.5513613602807903,
-          -0.9671889061950623,
-          -2.9807013270507134,
-          -2.1789192368329924,
-          -1.748357223615638,
-          -1.8826154934046424,
-          -4.016019306093127,
-          -1.1308673938779539,
-          -0.18178442537953865,
-          -3.2466209625043794,
-          -1.5298318887270557,
-          -1.9371220109456686,
-          -1.2509765436504887
+          3.258684347008743,
+          -2.3468936483067617,
+          3.4495467953421137,
+          -2.117685256159483,
+          3.2903105797706838,
+          -3.422591035757695,
+          1.1113395499670986,
+          3.661305899770249,
+          -4.086391884105076,
+          0.7428528333989659,
+          1.1839812441867092,
+          -3.0449326643667405,
+          -0.35120166836987066,
+          4.847328409377999,
+          2.3829624542323096,
+          -3.5713847039755025,
+          -2.5331865730661995,
+          -1.0270657886574814,
+          -3.6803933846170356,
+          0.6811276415402263,
+          0.6159990003615281,
+          1.8765317222228015,
+          0.8452065777455919,
+          -3.7493636866598807,
+          -2.686120529893953,
+          0.6424959040973128,
+          2.676788592899438,
+          3.0395102407753445,
+          -0.6178761689571766,
+          4.254081095709987,
+          0.505208372962568,
+          2.668544638402305,
+          2.9155901259509127,
+          -1.5059469588566903,
+          -3.4954607320348265,
+          -1.483825830123667,
+          1.2404668799494383,
+          0.28367442829057055,
+          -2.3795250123644447,
+          3.242627289866264,
+          3.709866319548846,
+          -1.491629044759072,
+          -2.70254021454455,
+          4.702875513102322,
+          -3.08107941794528,
+          0.19225626722770883,
+          -2.6904074114382777,
+          -2.953212820075053,
+          -4.0663262663277315,
+          0.7690009743223136,
+          -1.4257353273521605,
+          -3.3290696073206005,
+          1.4158292709432159,
+          -3.7382171921460228,
+          -3.767631016492029,
+          2.1124112434645506,
+          -2.9912942271999263,
+          -3.3717142738694577,
+          0.3987013500518346,
+          1.375496071385217,
+          0.5613753741113747,
+          3.8811100367078186,
+          -0.9092284351475532,
+          2.4686009396669624,
+          -0.4624152223205482,
+          -1.9058626760572914,
+          0.6377174928311256,
+          -2.0776993726588504,
+          4.554842511324146,
+          0.7545052036470707,
+          -3.399072886683177,
+          -1.3070047216654817,
+          -0.8341764316758091,
+          2.9431816422786854,
+          2.960602290428511,
+          -0.26438189882256413,
+          -3.949860919890788,
+          1.5784496174625176,
+          1.5735397175998953,
+          0.4816654029099343,
+          0.4245509930326836,
+          -3.521780670747655,
+          -3.6467479136200076,
+          2.5045528748271657,
+          -1.0759351670616888,
+          -2.5947848960230133,
+          1.7917364401317872,
+          -4.111261313151027,
+          -1.5768871262639887,
+          -0.7783060968351565,
+          1.3735897942441024,
+          0.5914801527153397,
+          3.0696479018892866,
+          1.2523517297073994,
+          3.190186294333542,
+          -1.1815177625584083,
+          -0.8685337173177228,
+          1.3544468495563171,
+          -3.1828541962163683,
+          1.6579370241178202,
+          3.6481300887570445,
+          -1.9757744140785367,
+          3.469279381542714,
+          1.753504922752417,
+          4.786519506872077,
+          -2.7829542463585675,
+          3.2457259809216703,
+          3.457318190260473,
+          1.1458627100492214,
+          0.9120381665845869,
+          1.5700467273088714,
+          -0.04321859163685993,
+          2.402562532375753,
+          -0.5977636569274001,
+          0.8202924342552684,
+          -2.5686640509557224,
+          0.8123667606981382,
+          -3.9786207221525154,
+          4.540964248669406,
+          -2.9300012776654505,
+          4.894215230369053,
+          2.362023810689828,
+          -0.6898009036656951,
+          -4.274926575147926,
+          3.027945089498827,
+          0.13603809575386894,
+          1.050175912672521,
+          1.26718015488672,
+          -1.8134663354956126,
+          -3.593183935967797,
+          2.942077718688254,
+          0.4711496772186283,
+          -1.2745349190535635,
+          -2.2677960743079653,
+          4.912802257827078,
+          -0.41538334464785676,
+          -3.2120774001564314,
+          -0.7608257143976012,
+          -2.6014261124626534,
+          -4.062773509132542,
+          -1.78345923416548,
+          4.3803685121564975,
+          3.7530158958729487,
+          3.105924267108877,
+          -3.072259423578396,
+          0.2790365615078896,
+          2.763110359581076,
+          -3.0549563312904846,
+          4.527495042274987,
+          -1.6992915057958622,
+          4.062535945018698,
+          2.7066557604713655,
+          -3.7011337753535387,
+          -3.7261816641031347,
+          0.6110400782366172,
+          4.0032506164479855,
+          4.590091016331575,
+          -3.822158563396285,
+          2.4428101743668202,
+          1.735157368967287,
+          -0.021290818187448934,
+          -1.0777526945777258,
+          -2.224356435544742,
+          0.8769612542062548,
+          3.636771071322724,
+          2.2305885756591675,
+          -0.07328794948614537,
+          4.426706522681885,
+          -0.036404060383882886,
+          0.7311684529444147,
+          3.1406420539066566,
+          2.9548301282135467,
+          -2.7839556461033235,
+          0.49069348278227576,
+          3.816274697734933,
+          -0.13848278260309943,
+          -4.053811210996519,
+          4.089916671200225,
+          -3.3308329079276673,
+          -0.7923364030574107,
+          -2.423325446444247,
+          3.0155463849437814,
+          3.062261446868069,
+          0.6166552670229448,
+          3.0193034601234077,
+          4.061508107826874,
+          -3.0054926469586585,
+          3.949298087024948,
+          -0.23926624017935527,
+          3.8424449073466675,
+          4.624549120621973,
+          1.8620644854509614,
+          3.837933717329303,
+          -4.188238397028209,
+          2.3369356514502657,
+          2.44904709669414,
+          3.2575270691320988,
+          -1.402339851774686,
+          -0.06438249752982728,
+          3.3423362286964515
          ]
         },
         {
@@ -4827,760 +3442,610 @@
          "name": "Class 2",
          "type": "scatter3d",
          "x": [
-          -3.5821256707149325,
-          -5.48417603888446,
-          -5.763145441918061,
-          -0.359786509492271,
-          0.9411662485725654,
-          -6.18195118903344,
-          -1.5970670875822726,
-          -6.170348117793454,
-          -6.261050490452274,
-          -0.8374768237838437,
-          1.0909498597087453,
-          -6.484831409135996,
-          -6.845001277624192,
-          2.216730967563807,
-          1.2281215988249754,
-          2.3687065324048726,
-          -6.8894459888960675,
-          1.1804555286039522,
-          0.5451294913182972,
-          -4.343454060069454,
-          0.5146986478571578,
-          -4.61979663693855,
-          0.913933541932594,
-          -0.3098813085309007,
-          -6.044843060708564,
-          1.6312225185075204,
-          0.459087758018308,
-          -6.157657413803925,
-          -5.045086178318183,
-          1.3086605458642733,
-          2.204476798984124,
-          1.2390990882862118,
-          1.5331232802219705,
-          -0.8803508213933207,
-          1.3085100567592711,
-          0.893263154069053,
-          -4.729181287165388,
-          -0.12096567144037018,
-          1.06217489134156,
-          -5.911323659323363,
-          -6.050235863374169,
-          -6.4766235502204825,
-          1.967499456843556,
-          1.0790521204294965,
-          1.4774239263135875,
-          -6.6557321607596975,
-          1.4325350940604804,
-          0.9659560973890801,
-          1.1118135160427176,
-          1.1259385393262793,
-          -4.601739829125787,
-          1.696450722263422,
-          -4.861491758036425,
-          -5.690725277252363,
-          -4.03316924871807,
-          -5.464980832299861,
-          -5.790650937516922,
-          -5.304158591697029,
-          0.4049342369270652,
-          -7.174253404134257,
-          0.4466280195019795,
-          -3.874214534614554,
-          0.14845907333872932,
-          -5.813601955109854,
-          1.440099978130081,
-          -7.683726922070027,
-          1.8771215047392458,
-          1.6681909573445104,
-          -5.815674659550743,
-          -5.490783009457616,
-          -0.2715305603112228,
-          -7.2568521095279035,
-          -0.9353290172538218,
-          0.9180598108938911,
-          -5.488629998459354,
-          -0.1526483525354536,
-          0.18653625827262654,
-          1.095691937680625,
-          1.0731805311285039,
-          0.9771894687801614,
-          -6.531072412589252,
-          -0.26676357667110784,
-          0.9718306371365858,
-          -5.855237753077984,
-          1.486985955806999,
-          -4.947230726015291,
-          -4.981459946976356,
-          -5.288782628674925,
-          0.6150982808488136,
-          -5.427188325425442,
-          0.2026293506394513,
-          0.6144592065043386,
-          1.189342763724897,
-          -6.036603613506772,
-          -5.525112002780858,
-          0.19347029239833424,
-          -4.998673962125862,
-          -6.6934847536713145,
-          -5.219300219196787,
-          -5.750122109473006,
-          -0.23072979118161951,
-          -6.26773746884613,
-          0.44569133839887365,
-          0.18177581440305368,
-          -6.496672034779478,
-          0.9652179813591244,
-          0.2879511165571438,
-          0.9602231283635301,
-          -3.4529253658059815,
-          0.3245127911728679,
-          -6.01748087407831,
-          0.8447194439605967,
-          0.6060405628859546,
-          0.7934202038302749,
-          -5.819331912002037,
-          0.6778400173969943,
-          -5.091986791409294,
-          -7.38139982422633,
-          -5.277739812912942,
-          -5.253473824621125,
-          1.7984357632372037,
-          0.7369403303068783,
-          0.707959957304032,
-          -4.669924968171264,
-          -3.6351031550507558,
-          -5.6068752928779615,
-          1.122244346559452,
-          -6.9578970547534364,
-          0.13570908289848482,
-          -7.381413444878327,
-          -5.711287656041461,
-          -0.29564748452259626,
-          -5.981740999140893,
-          -5.406868080645623,
-          1.6541243541548138,
-          1.1511819056842496,
-          -6.708792564136661,
-          -4.886122990479256,
-          2.088096063822639,
-          -6.557504134291493,
-          -5.509971325566283,
-          0.5267981793740872,
-          -5.080295580122149,
-          -6.475093061303928,
-          0.6490108266161179,
-          0.14073337103625494,
-          0.47821184667318933,
-          -5.145533406260762,
-          1.4422426465170917,
-          -5.361475511598453,
-          0.47052452358164987,
-          -4.661840685923348,
-          -6.856888016377499,
-          -6.224621279719793,
-          0.12998631707301989,
-          -6.222860231970748,
-          1.4343425151586762,
-          -6.420302915358386,
-          -5.4379693107307245,
-          -7.281572830533366,
-          0.4191402993004443,
-          0.355754216492703,
-          -0.13404893384730987,
-          -5.738590351855155,
-          -6.333624104109577,
-          1.76793758697153,
-          0.22238627257185972,
-          0.4034944779899515,
-          -5.687029143127639,
-          -6.631366877974117,
-          -3.093757689205227,
-          -4.359977308686734,
-          -5.535953304634253,
-          -6.074829908962666,
-          1.0207728763976531,
-          0.4949758099922689,
-          -5.408746145531409,
-          -4.481101414446394,
-          -0.8254866716031042,
-          -5.534878839461578,
-          -3.4520994866873536,
-          0.7262951150035726,
-          0.24494853443119402,
-          -6.175912744263638,
-          1.2113584628728225,
-          -6.532128620085428,
-          0.09830093813554241,
-          0.8208907316292811,
-          -6.2990563245653695,
-          -6.450313798119887,
-          1.52412109286174,
-          -6.001586649801234,
-          -5.15567383839222,
-          1.859777666330265,
-          2.0891631992045845,
-          0.09307611459462706,
-          2.657696711828943,
-          0.3321780039001436,
-          -6.776165222639171,
-          -6.796355414459271,
-          -5.863940821869738,
-          1.2118221568598826,
-          0.7673084069866998,
-          2.057285256139618,
-          -5.996495546386489,
-          0.19006175372817036,
-          1.862785922111084,
-          -6.156226910136733,
-          -6.508476082095421,
-          1.9629399638485994,
-          0.3395511712760637,
-          -4.416159823624741,
-          -5.547488325904841,
-          -5.804989360737011,
-          -6.374090683278469,
-          1.2781078754022175,
-          -6.152996195958903,
-          1.871257483718529,
-          -5.68058833887053,
-          2.1596680439459375,
-          1.638047518150985,
-          0.5885062115550626,
-          2.101352581941897,
-          0.650286972497839,
-          -6.45537861855272,
-          0.6078022081370311,
-          -7.418004144548355,
-          -5.759190007733289,
-          -6.263360915424422,
-          -5.776442983593808,
-          -7.308325996136174,
-          -5.6129685208906945,
-          -4.243423310638127,
-          -5.404025656645956,
-          -5.910731445818605,
-          -5.168799269280383,
-          0.2779022242392216,
-          0.7727019561395616,
-          0.9257067221686859,
-          1.951274448121386,
-          0.6301399136529069,
-          -5.302759900697495,
-          -4.933160074077146,
-          1.1210086253781768,
-          0.01448040357929492,
-          -4.321355934047547,
-          0.47909961949129004,
-          -4.5293991489537095,
-          -4.7373906711493055,
-          -5.6569737489744885
+          1.0053462232979113,
+          0.5411349546076902,
+          -0.08849429213099413,
+          1.122647623521421,
+          1.725528204291852,
+          -0.5641088090536897,
+          1.3388113371379755,
+          2.5814797329800037,
+          2.202354524371522,
+          3.101039182110844,
+          0.7461681632287216,
+          1.6579941878859539,
+          0.016210583575918203,
+          2.0791185526992084,
+          -0.206393303935688,
+          0.7253257866903444,
+          2.531730782723006,
+          2.6604578524741536,
+          -0.736686570925301,
+          1.3915746059832559,
+          -1.1078642402020433,
+          -0.3299741804113241,
+          1.3737658885119106,
+          0.47608607793370183,
+          0.9360954158050104,
+          -0.0049987294281950145,
+          0.4593749097784109,
+          0.8908770076996043,
+          0.43552587405881027,
+          3.0031389751716797,
+          0.2865936239634803,
+          0.8854757387835086,
+          1.6261747424604835,
+          0.4591266191141177,
+          0.7195705569594186,
+          -0.5448157203630886,
+          2.6771297341334965,
+          1.58782966876862,
+          4.139078359612575,
+          0.8695813939505823,
+          -0.637855179697552,
+          0.22886126339199686,
+          0.3407854752726426,
+          2.720128230269119,
+          0.9918714794813693,
+          1.0788809945450077,
+          2.5529038398732036,
+          -0.05752614641525233,
+          0.10726186511230373,
+          1.9442859524251346,
+          -0.42591203705421243,
+          0.3366362208747551,
+          0.396023729519687,
+          1.0494703113665511,
+          1.2757447338277965,
+          0.7563800972969873,
+          0.4119517724557844,
+          1.510711002293919,
+          1.1012744272292094,
+          -0.702045099310064,
+          0.3244207776540541,
+          0.2218177805067849,
+          -0.6593637636376875,
+          1.2648005347980318,
+          1.6510780678663557,
+          0.9326282247199361,
+          0.3354193464077402,
+          0.1227640355979206,
+          2.025967608802522,
+          1.852031367072894,
+          1.5401627842035943,
+          -1.5199695102512814,
+          1.5883549052608168,
+          1.378402429921906,
+          1.088282770568182,
+          2.1906142610110573,
+          1.3442033896724883,
+          0.5028602140768393,
+          1.402164377601801,
+          1.2954404665310009,
+          1.888156728106126,
+          2.224699773364092,
+          -1.0779734652288195,
+          -0.9073692032842067,
+          1.0187784909939623,
+          1.3333193806430441,
+          1.8456219234226434,
+          1.2402212383594555,
+          -0.5074952152100431,
+          1.3451146093912727,
+          1.645153867858272,
+          1.185422061169148,
+          0.5316577845303392,
+          1.8465703465257002,
+          1.0729654834046691,
+          1.488344726292239,
+          2.0578256804581203,
+          0.7248485336441753,
+          0.5470200229263211,
+          1.771789079479408,
+          1.8866082498868342,
+          1.4215182849085943,
+          0.21108185703795945,
+          -0.813497367552054,
+          1.667159659280641,
+          1.285442506847788,
+          3.4935707452886975,
+          1.111533655819166,
+          1.4904138107496794,
+          0.19407037450082942,
+          2.9188213953984317,
+          2.624336235678153,
+          -0.008953340223844641,
+          1.0568144326264175,
+          -0.7255552988467493,
+          0.8389027682672714,
+          -0.031892801216434785,
+          1.839265021006434,
+          -0.3151819109084486,
+          0.6576501174920419,
+          0.7353331797806998,
+          0.7494522255039451,
+          -1.749615534299814,
+          0.764550292341758,
+          2.885106448283962,
+          0.7258540612071562,
+          3.6236735269825084,
+          1.0142016341420486,
+          1.2019576672756567,
+          0.4151218889070385,
+          0.9666063455723156,
+          0.2732168247637744,
+          0.7400375281816716,
+          -1.7028009446354577,
+          2.2704483561887274,
+          0.6506122589315038,
+          -0.4350310312944903,
+          -0.13228956237488787,
+          1.9539725563328718,
+          1.7357820259731547,
+          0.46522443722556317,
+          -0.24602256347112283,
+          0.7549758163577688,
+          1.7248604897628894,
+          0.6319763088706551,
+          -0.10220002272261852,
+          1.6046974338320237,
+          1.3325094981474541,
+          1.9420933774779694,
+          0.46705682231138157,
+          0.28188514779766727,
+          -0.5870640198644554,
+          -0.30546400510075444,
+          -1.1226348004708178,
+          1.2151432309353802,
+          0.44442678377015554,
+          0.9616294727526091,
+          1.1164610006986082,
+          0.6292785276010582,
+          1.3138198364568425,
+          -0.3745448253972954,
+          1.1742061588614243,
+          1.0187943489755147,
+          0.4496870657683495,
+          1.1996743753189931,
+          1.4162348172739045,
+          2.0492774455348597,
+          1.2610355672733178,
+          2.69803740786033,
+          -0.8768665699796652,
+          0.3629651168885355,
+          1.5277801675044906,
+          1.1904183841916915,
+          0.37652594520118177,
+          0.058715915282322895,
+          0.005046703421156762,
+          0.03203868808814103,
+          1.502963136088941,
+          0.12485981101560784,
+          0.4131074387955832,
+          3.610138707152606,
+          2.171743647209712,
+          0.9643274227917812,
+          0.36077463022058376,
+          1.721589734315465,
+          1.6447724259636807,
+          1.6339674438929785,
+          0.2586460096690575,
+          0.9241112660554917,
+          1.181175368977971,
+          1.387631389687613,
+          1.5707353386959488,
+          1.8502268037648903,
+          0.9284624251053202,
+          1.4380180131919518,
+          1.2768886825458081,
+          -0.10219310282941407,
+          0.9596714731075057,
+          1.0288720503393245,
+          1.956628909578329
          ],
          "y": [
-          -0.1851010335105022,
-          -0.44997926484877915,
-          0.8462568874361572,
-          -0.5702979657443344,
-          -0.8997634179453157,
-          0.19665113132344264,
-          -1.7661171863190734,
-          0.13884693450381624,
-          1.638031944197936,
-          0.5354124891398271,
-          1.3207963986536604,
-          0.4541451324326544,
-          0.10674367821552593,
-          -0.935744676372114,
-          1.0011492756253695,
-          0.404232412688072,
-          0.03616300587001747,
-          -2.942889433214271,
-          2.1791730187775107,
-          -0.9561368362496213,
-          0.9410663585780349,
-          1.1236827663801008,
-          -0.6858031104045819,
-          0.8121641958912283,
-          1.657127575663453,
-          -0.676439887030643,
-          0.3855782436631235,
-          0.23471562404068855,
-          -1.251620560883009,
-          0.3577931103076716,
-          1.517746343178458,
-          -0.12483953552584723,
-          1.7732860165015958,
-          -0.7209135604516687,
-          1.7731310512585252,
-          -0.11123972576842975,
-          0.06406043584085205,
-          0.9853484488262404,
-          0.6063126879142743,
-          0.8947102666337122,
-          0.2821478104766252,
-          -0.6522231882906103,
-          0.8394818048953459,
-          0.7857043266684467,
-          -1.2357203791557696,
-          -0.6056545723563699,
-          -2.693829391165413,
-          -0.726501102571045,
-          -0.8009193283318071,
-          1.6768170644014218,
-          -0.2759715791631887,
-          1.6586124689250181,
-          1.54469954388428,
-          2.0555472273771347,
-          -0.3368396488755657,
-          0.7785801687487333,
-          -0.7493397592983907,
-          0.6857616554498596,
-          0.4422424586675113,
-          0.5764173027304872,
-          0.9524357769805998,
-          -0.7182175949669013,
-          -0.7806665674364703,
-          -0.21872146030029302,
-          -0.3539097108903698,
-          -0.3987206357770158,
-          0.13935653346124502,
-          0.017776358776067216,
-          -0.15716794803591547,
-          1.3312904814339308,
-          -1.627405164182807,
-          0.775009874890014,
-          0.44862500958699775,
-          -2.294117418866495,
-          0.22632109094865235,
-          0.93621645406836,
-          0.3694905346454995,
-          1.9086162355547924,
-          0.46700155097856855,
-          -0.43733769203916145,
-          -0.4769027742901937,
-          1.1050986162438563,
-          1.0973454522321844,
-          0.07238365834265464,
-          0.5345940221349781,
-          -0.9373995177248856,
-          1.0414628137875213,
-          0.22098267471760905,
-          0.9165334522462995,
-          0.7985628346053906,
-          -1.5630762710350998,
-          1.5201708826087876,
-          1.4288990017460486,
-          -0.24739556417972183,
-          -0.4384906195189612,
-          0.29405358301378537,
-          -0.9490309914092477,
-          1.8648546951910403,
-          0.8907204839508781,
-          1.950691753676567,
-          0.37855438585548334,
-          1.1273200821232348,
-          -1.314621149918238,
-          -0.21425045647947655,
-          1.580353878101921,
-          0.40104804293005214,
-          -0.47724705251191035,
-          0.6338875765832436,
-          -0.07328300306146204,
-          0.7262464567350859,
-          0.4046754636869774,
-          -2.390368234353621,
-          -0.6387745417744715,
-          -1.6788769271421242,
-          0.6541638343017058,
-          0.7981801353214294,
-          0.28895747644117425,
-          0.0718217093014513,
-          0.3784782779523978,
-          -0.394610328177847,
-          0.8737270592309622,
-          -0.42870014919746585,
-          -1.5591891100351885,
-          -0.11911346720685315,
-          -1.1430646126643118,
-          1.7275858938340676,
-          -1.5283081126199543,
-          1.7502657192579298,
-          0.10876483359500688,
-          0.12976304468261685,
-          -0.6459757721484057,
-          -2.2441683575907696,
-          -0.8657803480332568,
-          0.21356626978799106,
-          0.7662019934877381,
-          -0.580156254169581,
-          0.958378775179035,
-          0.621391224103246,
-          1.3800952703194431,
-          -0.23877679919697084,
-          0.814632508766858,
-          1.2783540938229399,
-          0.3015482303713587,
-          -0.2951151921979278,
-          0.20683467661591798,
-          1.3267541498394468,
-          -1.6412192742453224,
-          0.2363634892267016,
-          -0.6134805388695774,
-          -0.2495435942310836,
-          1.9116037842631677,
-          -0.3007473598958872,
-          -1.4481914102241993,
-          -0.3015679128092351,
-          0.599570808362804,
-          -0.001198093723956628,
-          -1.7286777134561735,
-          0.17990319618310066,
-          1.1629352420962948,
-          -0.19284700735402696,
-          0.08107667561860504,
-          1.49693677881617,
-          -2.791017458134307,
-          0.9978308391290464,
-          0.4560211971982695,
-          0.20468928060623573,
-          2.0723310452228154,
-          -1.0422351051209797,
-          0.46122135703689016,
-          0.14448720055054143,
-          -0.7187091880807144,
-          1.7328018730211956,
-          -1.1270611272966888,
-          0.78565833152308,
-          -1.5305759984642946,
-          0.047446703900384087,
-          -0.2557576934434024,
-          0.53071432032263,
-          1.074180922377514,
-          1.9550814009068167,
-          -0.9268075237178411,
-          1.2602566874322694,
-          -0.966683317818959,
-          0.9471501634412911,
-          1.891586093708654,
-          0.9216373625615671,
-          -0.26210141739206394,
-          1.146932480987707,
-          -0.43991416599118494,
-          0.5554798476357661,
-          0.6085394149224242,
-          0.5455097252254609,
-          -1.0008266675826412,
-          1.1949302852010457,
-          -0.6705857643882412,
-          0.7578324844185189,
-          -0.9490475251020509,
-          1.1761773250780831,
-          0.08523404405025739,
-          -0.25386502947576794,
-          0.9404604471630873,
-          1.3556429218454014,
-          -0.7660578397002277,
-          -1.169180303384226,
-          0.44163815650498195,
-          -0.776284110790592,
-          -1.089351083653447,
-          1.3666120461974547,
-          -0.20041747430461435,
-          1.7350542377471339,
-          1.4612928498794449,
-          0.2748892327175765,
-          -0.5527539834669414,
-          0.49379384943111637,
-          0.7853717256135498,
-          -0.5034733090740849,
-          0.057012573599623945,
-          -0.3710671261940251,
-          -0.4102140400473565,
-          0.09659710651385199,
-          -1.1434152923383651,
-          -0.7970935820683018,
-          -0.8184906873158454,
-          1.7152556553603682,
-          -1.1640877750355312,
-          0.9363536226740271,
-          -0.7650302035772062,
-          -0.24902821268903932,
-          -0.8099487694794153,
-          0.5788808970729098,
-          1.158624538973286,
-          0.1606883511543319,
-          1.5611691769208347,
-          -0.6380845981981331,
-          0.1094412111041019,
-          0.8641943426180523,
-          0.6204844109212673,
-          -1.1859328529901294,
-          0.19941041013603358,
-          -0.629492938236021,
-          -1.5069677911456258,
-          0.40612629230130803,
-          1.0188579272437583,
-          -1.4277584098680571,
-          -1.1473637276421376,
-          -1.428954083645309,
-          -1.864933747021925,
-          0.8080948083753312,
-          -0.09142259392122168,
-          0.2781143043530123
+          1.0478991472497579,
+          1.6350277472739052,
+          0.8548367448795889,
+          1.5244970207691693,
+          -0.14663082867730282,
+          2.3026576576741453,
+          0.2368792312733652,
+          1.1179362774510895,
+          1.0688385868288017,
+          2.7896608524518265,
+          1.9905668769617677,
+          2.3953907188398746,
+          1.699464976282151,
+          -0.7931259459169793,
+          -1.0791027641775046,
+          1.7315714726893894,
+          1.075543464085139,
+          -0.40708487631443435,
+          0.9433662456000896,
+          0.9666660119049412,
+          0.9091375065010157,
+          1.6827658285069114,
+          0.041743905839028095,
+          -0.07992301476550256,
+          1.9738170378020872,
+          1.5139015140680439,
+          0.19162510518612685,
+          -0.055483136059492955,
+          -0.22129851852582316,
+          1.0359530166200444,
+          1.2181635954639756,
+          0.7747100549907235,
+          1.772318322073085,
+          0.4129234969687591,
+          -1.3469277842493335,
+          2.393599070630856,
+          0.7460948665540348,
+          1.3173356441309894,
+          2.14146457595828,
+          0.02577705814847564,
+          1.2074417088719134,
+          -0.4500612785711462,
+          -0.10269417500820066,
+          1.8988773694694152,
+          2.508879657525946,
+          0.12187617317272992,
+          1.5494466857121187,
+          0.8059398649896761,
+          -0.4098359050560645,
+          2.94674910413021,
+          1.573976278383325,
+          0.5033504556608888,
+          0.11911668663533681,
+          0.15280334296144582,
+          0.9487796468877413,
+          0.07469186736238043,
+          1.7701604568513845,
+          0.003331825692687307,
+          1.7660780671309375,
+          1.5539838426647483,
+          1.5817548791384382,
+          -0.8401707296654666,
+          1.0490250921936797,
+          0.07800238959968253,
+          -0.6940057105190329,
+          -0.23469370278152968,
+          1.0483253989550818,
+          0.6079257164987355,
+          0.41182887675176294,
+          -0.1517946165447588,
+          2.469753830215397,
+          0.18752403650845118,
+          0.7929847184742014,
+          0.3842058374135475,
+          0.8412790000309315,
+          1.2593952196031661,
+          0.5800701126112735,
+          0.55898453654688,
+          0.5707845299348699,
+          3.1159785454050217,
+          0.6676021326509226,
+          0.5839460335635773,
+          -0.02779617662763556,
+          0.6416138072523458,
+          2.7092146190780078,
+          0.7766156693449094,
+          -1.254366904889825,
+          1.7859369682853086,
+          2.1661164524103906,
+          0.5765924747867328,
+          3.315088908828814,
+          1.2530737366402531,
+          0.13353967392976251,
+          0.12717822510538623,
+          0.5130035075308852,
+          1.3401857880476178,
+          0.48001188084454294,
+          0.002099726969374771,
+          1.3846773832672286,
+          0.05980471697328327,
+          2.3821429703806007,
+          2.9134904814871385,
+          -0.2689898984154462,
+          2.5252946169012,
+          0.9433285507181618,
+          -0.1474943436111491,
+          1.1317476840376663,
+          1.7399566416968637,
+          1.228261351900208,
+          1.4806863952197757,
+          2.3717253814684147,
+          0.4787891552758795,
+          0.8717537237158487,
+          2.115584892884207,
+          2.5594557264353153,
+          0.5647726520882986,
+          -0.687212039078793,
+          1.0747514627847436,
+          -0.32039984666318655,
+          2.7016538403745987,
+          -0.5325320494964481,
+          0.7219442033611125,
+          0.9446435730619822,
+          1.7098184274001955,
+          2.1485913632116103,
+          -0.1281604422434124,
+          1.060376258864757,
+          0.9754032248787261,
+          0.8528170873615054,
+          0.4424490017625452,
+          0.44595031595286305,
+          1.108511126393326,
+          2.533398704653883,
+          2.112847736368766,
+          -1.11392866905102,
+          0.6212968098274159,
+          0.20697562404597092,
+          2.7865304217150224,
+          2.2964162402096786,
+          -0.15112672506749925,
+          1.498942697189439,
+          1.7269388072592613,
+          0.6178507844537896,
+          1.4529494429358398,
+          2.1819967461554697,
+          1.6279782346117035,
+          0.684401381736762,
+          -0.2755750538518116,
+          0.8114827006097931,
+          2.0695192067245607,
+          -0.4359991993275638,
+          1.617858514936605,
+          2.789103503816671,
+          2.729625082952808,
+          0.9013959761841321,
+          1.4069399294905025,
+          2.1248733801083874,
+          1.153240426040835,
+          0.94194098887929,
+          -0.7436052015846919,
+          1.757796218228521,
+          0.8124194648626935,
+          1.3543775408589087,
+          0.20647804423438854,
+          0.0024983086674614796,
+          -0.7358721171722444,
+          1.481837596887842,
+          2.0019043262143867,
+          2.0342027892059944,
+          -0.304594953694888,
+          1.0266011762688163,
+          0.26006661503867146,
+          0.22984799877306517,
+          -0.43416380273602884,
+          -0.3781124241183429,
+          2.074242352426248,
+          3.683849777903299,
+          1.1884499959764152,
+          1.7140021729449866,
+          1.124395321755166,
+          0.9020619597796339,
+          0.2830752353125734,
+          2.8054229118731526,
+          2.8478851245864627,
+          0.42653600640792033,
+          1.9915696047681446,
+          -0.6009253831459289,
+          0.7476419384840061,
+          1.63280733196496,
+          -0.3614526965598033,
+          1.622523773718287,
+          2.101911895308829,
+          1.4681578598017784,
+          -0.6934356498126035,
+          1.2117483478221456,
+          -0.30171126274762883,
+          2.0737438494477587,
+          1.6948252382191513,
+          1.0303379245147108,
+          0.47386568700849985
          ],
          "z": [
-          -6.6628444627815755,
-          -7.505146748349418,
-          -6.284583437297603,
-          -1.6233213549239287,
-          -0.6938514909852767,
-          -6.747190961997106,
-          -1.717477234154949,
-          -6.580913962387989,
-          -5.293495811921842,
-          -2.3514588952430344,
-          -1.8734803149261336,
-          -6.585296751620625,
-          -7.058069481591142,
-          -0.16110273403499875,
-          -1.4358977305374647,
-          -0.8707469061670895,
-          -7.22658717570139,
-          0.3679914083239051,
-          -2.059856216135246,
-          -7.620198287771877,
-          -1.6888486310005275,
-          -5.645999716528126,
-          -0.9303806591025632,
-          -2.249881537726159,
-          -5.775032457585459,
-          -0.4625114623612836,
-          -1.4609758511664617,
-          -6.778108031966943,
-          -8.355673859025503,
-          -1.0413603771957733,
-          -1.1094457066068637,
-          -0.9441662833966679,
-          -1.1769732367539538,
-          -1.822253998600471,
-          -1.4508877525420711,
-          -1.0534207545095178,
-          -6.676395926666275,
-          -2.2811118450928767,
-          -1.3091395165804318,
-          -6.186459571647278,
-          -6.9360541983672865,
-          -7.5469756462127195,
-          -0.6982792523980326,
-          -1.1553257784472586,
-          -0.05342074875219782,
-          -7.935887109360973,
-          -0.1646661190094022,
-          -0.8923541887141054,
-          -0.6456550330285752,
-          -1.7533168141901956,
-          -6.68750155550259,
-          -1.4610333121044092,
-          -5.357947598733852,
-          -5.003092999469603,
-          -6.957848328158929,
-          -5.834441557010041,
-          -7.322778911140997,
-          -6.32208895694072,
-          -1.7975873548623928,
-          -6.9412630814579,
-          -1.6953343393905862,
-          -6.790094362433044,
-          -1.255731230073699,
-          -7.277613529379405,
-          -1.0687541990762546,
-          -7.5934233166285185,
-          -0.04836600202914121,
-          -0.569399544684918,
-          -7.222261121348608,
-          -5.282964144434344,
-          -1.3975182506799981,
-          -6.402391890384757,
-          -1.8005561197429558,
-          -0.18224192369009284,
-          -6.5952236858434725,
-          -2.0249219659331796,
-          -1.6643845305478906,
-          -1.738346974199366,
-          -1.4244275674381028,
-          -1.5115432681756074,
-          -7.412711755402374,
-          -2.1163139250515437,
-          -1.0986105242414745,
-          -6.77155317594233,
-          -1.177996824125628,
-          -7.35315432128934,
-          -5.8501561555181265,
-          -6.759898090698065,
-          -1.4909164649028521,
-          -6.305146691429375,
-          -1.0272440292489435,
-          -1.9578247670212383,
-          -1.5076981936570752,
-          -7.361991214757023,
-          -7.443076243815136,
-          -1.520646877961397,
-          -7.221460276687453,
-          -5.587019849107653,
-          -5.666071052202788,
-          -4.8870513570599226,
-          -2.0076679401545294,
-          -6.0187589764241665,
-          -0.8399429015117237,
-          -1.2601528318788506,
-          -5.727167318664025,
-          -1.1283506737389908,
-          -1.2699531457521216,
-          -1.1293089800849287,
-          -6.351396610955594,
-          -1.833023025235693,
-          -6.5623747120965445,
-          -0.1383929620858677,
-          -0.925815207258168,
-          -0.32461646601351,
-          -6.15619623961258,
-          -1.6354601274389426,
-          -6.672767357096552,
-          -7.024704859669944,
-          -6.593284678483394,
-          -7.079290786027932,
-          -1.0813238002571304,
-          -1.1961228803046697,
-          -0.31988250335810353,
-          -6.842454163047941,
-          -7.316658300988012,
-          -5.663569909121014,
-          -0.6083932119991262,
-          -5.629565260888704,
-          -1.566491911981549,
-          -7.100154902464036,
-          -7.00510233076332,
-          -0.7745433791380603,
-          -7.80691152300096,
-          -6.640617066179086,
-          -1.1018597961961971,
-          -1.0740033462498846,
-          -6.660809846415109,
-          -5.756556787402925,
-          -0.7374783431943039,
-          -7.183456704608682,
-          -6.2114017516523115,
-          -1.7407326312084686,
-          -6.641494625442273,
-          -7.401217090731981,
-          -1.428490613634489,
-          -1.9281071235622749,
-          -0.9298229678923364,
-          -6.574700004033299,
-          -0.8614227469346524,
-          -6.7712068676482575,
-          -1.9386950665161495,
-          -7.462912665036766,
-          -8.540849977261276,
-          -7.20713337300132,
-          -2.0467109521800033,
-          -6.72836813102444,
-          -0.33145598499283835,
-          -6.899371600585027,
-          -5.792934369883464,
-          -7.700359579950892,
-          -1.8576167395689183,
-          -2.1387879638330602,
-          -0.6219637907570275,
-          -6.252800932355257,
-          -6.676130086315703,
-          -0.8100990436416898,
-          -2.4191974942423835,
-          -0.7340205511625751,
-          -6.8219128378896245,
-          -7.3944790301612295,
-          -7.0501768600590635,
-          -5.045129134121425,
-          -7.775693967653313,
-          -6.163875414689153,
-          -0.6089333341715051,
-          -1.3584208163626967,
-          -7.279302741711827,
-          -6.448503736815533,
-          -2.428995969611292,
-          -5.24865928831167,
-          -7.3604515854547135,
-          -1.6339322853274478,
-          -1.0493260145393042,
-          -6.05430364260198,
-          -1.588812567627858,
-          -6.4048519782581055,
-          -1.7608570962059398,
-          -1.4805993426985262,
-          -7.208112673830679,
-          -6.629760100400643,
-          -1.077227228900175,
-          -6.7139412594929135,
-          -7.76996353921928,
-          -0.4104539852120397,
-          0.2161091178885588,
-          -1.7078961867844513,
-          0.36703881457506027,
-          -1.961060234727298,
-          -6.737169009851698,
-          -7.09011526914798,
-          -6.136988858757936,
-          -1.2803130410574772,
-          -1.2419690849493192,
-          -0.26508840524366273,
-          -6.518719525050047,
-          -1.3561201742710935,
-          -0.010684576107344412,
-          -6.0860683263899436,
-          -7.16371327005361,
-          -0.9972309849606498,
-          -2.1614173288969196,
-          -6.325170636725273,
-          -7.489706619060504,
-          -6.167693109937555,
-          -6.287092877103153,
-          -0.8665449600220898,
-          -7.0212372587905705,
-          -0.032502351166620924,
-          -7.004405364107178,
-          -0.4528179317771104,
-          -0.11672554949231961,
-          -0.8029404458288032,
-          0.009298799979313488,
-          -1.9430438674157449,
-          -8.444422661649773,
-          -1.6179349214505776,
-          -8.003147005589181,
-          -7.357691948028015,
-          -8.045932721898975,
-          -6.686249494286939,
-          -5.844795802607372,
-          -6.9894222295925434,
-          -5.274081805353582,
-          -7.6404795956072045,
-          -6.865467521105747,
-          -5.9036745767430086,
-          -2.1274160933330735,
-          -0.38003161008518804,
-          -1.1897894169030716,
-          -0.5042921222380563,
-          -1.2195303436855849,
-          -6.5530580841904715,
-          -6.138740334990883,
-          -0.2078742596980373,
-          -1.1590962027891252,
-          -8.12330220476033,
-          -0.6306207589569526,
-          -6.07826700337019,
-          -6.67563543240574,
-          -6.608192218731445
+          2.2691713148875374,
+          -2.0899543480983866,
+          -0.14668479181422,
+          1.428206743405223,
+          0.046612735210436185,
+          -3.1388754784051094,
+          2.032012603341035,
+          3.5961247191397536,
+          -1.7261677655962386,
+          0.428547203684591,
+          -3.998212512965758,
+          4.358446145391223,
+          2.974857180694226,
+          4.071218838520224,
+          -3.2799074705035185,
+          3.6776157578494404,
+          4.71386360349959,
+          -3.9166386570188223,
+          -1.7191394556728472,
+          4.104226946436356,
+          -4.13839072609551,
+          -1.4909646940083623,
+          3.75323368676289,
+          0.6874664622192732,
+          -4.190117100771859,
+          1.2198147257940795,
+          2.557039284820368,
+          3.5640560053281973,
+          3.9337205676590834,
+          -2.093314522860525,
+          1.076240261999641,
+          0.5097112689588252,
+          1.2255484523586277,
+          4.0936708119568195,
+          3.810707798749636,
+          -0.3306331040014294,
+          2.8403581063442696,
+          -0.21104560917896542,
+          1.158321977456545,
+          0.4258607135538117,
+          0.19784343321592424,
+          1.2409906803963962,
+          1.5498518360517872,
+          -0.9637591345818088,
+          -3.011839485821713,
+          -1.2454126459062929,
+          1.3345087305920265,
+          0.4647197671443717,
+          -2.282043454801086,
+          -1.1760414485839248,
+          0.4286669777473815,
+          -0.6391194513692544,
+          -3.2536042102452174,
+          3.7667936144253744,
+          4.861739224224255,
+          -0.6616376870445504,
+          4.075059381419656,
+          -1.4482946446874436,
+          3.2772367459155873,
+          -3.832522248142243,
+          1.270021853646477,
+          -0.7607709542262344,
+          -3.1872524307443904,
+          -3.6490474394785775,
+          4.390030222420858,
+          -0.9631414888735526,
+          1.568243511301029,
+          3.761956315173599,
+          4.027439933337176,
+          -2.9923305505205873,
+          -1.5806177813261204,
+          -3.9008101442434544,
+          -1.1362789483079094,
+          3.502570740925628,
+          1.9086584421429675,
+          2.979822680114302,
+          3.288538410784252,
+          -0.325483010384378,
+          -0.8777165634571817,
+          2.051196506697865,
+          -0.3296920321516823,
+          -1.1112573408407638,
+          1.6580438799720056,
+          -3.642545548339681,
+          1.9470112339813221,
+          -2.292903461775565,
+          2.049989029281593,
+          -4.050401587768048,
+          -0.7573748910912999,
+          -0.7224748552101405,
+          2.6772528596769263,
+          4.005557289313064,
+          -1.405879629861492,
+          3.328100397512311,
+          4.569234821899718,
+          -1.1619481497758803,
+          0.807611655039997,
+          3.3921993540194277,
+          -1.910278781510316,
+          -1.1429207150544158,
+          0.8445179003850827,
+          -3.01947858597876,
+          0.2092066991430448,
+          3.8230414092996785,
+          1.4257315707856977,
+          -3.940321843643735,
+          -2.2018950685643177,
+          2.362691309468464,
+          -3.0983660673192084,
+          3.02806817312375,
+          4.411416682153494,
+          4.752521372727557,
+          1.1309411143127104,
+          -2.4283422000306136,
+          0.4158126255318706,
+          3.686973431626207,
+          3.335593308564361,
+          4.522255693578545,
+          3.579733982885589,
+          3.940993229822567,
+          -0.16544493025805096,
+          4.24837195291688,
+          2.0448907942819963,
+          -3.0634407465507105,
+          3.122486786346431,
+          4.53518955475584,
+          1.9442475097532874,
+          -4.172471184261659,
+          2.5319534250352236,
+          2.794592784096732,
+          3.5054982145512605,
+          0.19748096710922258,
+          -0.5459481503175767,
+          -3.279827796208691,
+          -3.636963583980611,
+          -1.5388400924646426,
+          3.0308830563254627,
+          -3.6315591302657304,
+          -2.1591053221367615,
+          4.274643107744415,
+          -1.3363667878422465,
+          1.6086826939296,
+          -1.0010500898722001,
+          3.9000819870141648,
+          1.104473425088905,
+          1.9977595165143969,
+          3.2895763574181807,
+          0.497932221711082,
+          -1.7987987129264629,
+          -3.069042838176486,
+          2.607376286676807,
+          0.4144616696496488,
+          2.2226612900378617,
+          -4.2693716381855795,
+          -1.3846127322380095,
+          -1.80818000358085,
+          2.9793362263314567,
+          4.096591340099721,
+          -3.4802565286043574,
+          -0.7255950873107824,
+          -4.264355078946381,
+          1.847896121940809,
+          4.473558414581362,
+          -3.3318372197454,
+          -3.859752884875111,
+          0.31541333430298035,
+          -2.3760885127129074,
+          -3.821261690690469,
+          3.2862996026642435,
+          1.7645070176612894,
+          -2.3127710767089606,
+          -1.5782101711621812,
+          2.514608195083391,
+          -0.6565150900527548,
+          3.914447349965373,
+          -3.768294325212938,
+          -1.8340371896183507,
+          -0.8045785819025122,
+          -3.1563838385413514,
+          -0.5719542802333883,
+          -4.213016180757187,
+          0.4874289908381044,
+          2.841389605846218,
+          4.7066020374183015,
+          2.805999134213195,
+          -1.8525934722224524,
+          2.8335463889348107,
+          -0.8724828098024031,
+          1.663919157403046,
+          -4.086794627369655,
+          2.9003380386256987,
+          -1.5079100809869916,
+          -2.027822694859028,
+          0.06990370495634846,
+          4.399250064680535,
+          0.7224016672447675,
+          -0.9284195474869885,
+          -3.0046485858224155,
+          1.0346152324612277,
+          1.566938568584412
          ]
         },
         {
@@ -5591,1524 +4056,610 @@
          "name": "Class 3",
          "type": "scatter3d",
          "x": [
-          -3.0796544767795924,
-          0.6334310108194852,
-          0.6920705900814179,
-          -5.991562050109129,
-          -0.13032809159912095,
-          -3.351768727639815,
-          -5.799569601847007,
-          -3.4109419492638176,
-          0.09024257805376457,
-          1.0360294739908955,
-          -4.250121048325509,
-          0.8836241592778077,
-          0.8549644333776037,
-          0.21111313448155813,
-          -5.30561942055581,
-          -0.1341613258594847,
-          -3.4641111217368796,
-          -0.7048224838402521,
-          -5.484606587318898,
-          -0.9862933469492592,
-          -3.169021617623882,
-          0.97338077235086,
-          -3.6207472099419205,
-          0.33613023408603676,
-          -0.3588364898171613,
-          0.9318594237814314,
-          -3.6444880926804677,
-          -5.699383149836293,
-          0.5446864202346943,
-          -2.8736562849991025,
-          -4.87200591115341,
-          0.5443586010729764,
-          1.1707587292600252,
-          -0.6772213190213046,
-          0.9801259847524082,
-          0.5493479764252598,
-          0.31533611282747487,
-          -0.6755712053375562,
-          -4.312901860024165,
-          -3.4614815928498546,
-          -5.190662805707967,
-          -4.368857891350367,
-          -4.423125568686156,
-          0.8777391190133497,
-          -4.153586935630661,
-          -0.01824353299595899,
-          1.3842240469031588,
-          -4.501498258101067,
-          0.38528900823111306,
-          -4.605446640577378,
-          -4.757044592984921,
-          -3.8168837484808216,
-          0.3800850892329545,
-          0.7958364883664796,
-          -4.651872649735101,
-          -0.4517849200453731,
-          0.21965336794437235,
-          -3.7689867933208947,
-          -5.482409266349263,
-          -3.8479750101849484,
-          -5.037634129309338,
-          1.2276527819689147,
-          1.0188153424148232,
-          -0.24806873597373036,
-          -5.134809548864247,
-          -4.618485992979233,
-          -0.19145698953412627,
-          -3.162247274507412,
-          -4.807109126009493,
-          -0.3880657309959211,
-          -3.689571761305132,
-          -3.599351887432717,
-          -3.416789057032356,
-          0.2845430558886689,
-          -0.6285605387453539,
-          1.0443926552706753,
-          -5.879174227916783,
-          -3.5021981884087245,
-          -4.226466392385035,
-          -6.324557264501989,
-          -4.5888483801295346,
-          -5.359830066962473,
-          -3.567514675776461,
-          -3.1301608429821357,
-          -0.12499998695231646,
-          -2.9550332020500765,
-          -3.868764379058855,
-          -2.4782308173025447,
-          -4.659827482192252,
-          -1.0280922696343355,
-          -4.517893911697657,
-          -3.18143762053375,
-          1.1245458340513086,
-          0.2904013755162826,
-          -4.506685674652516,
-          -0.010748821080874438,
-          0.20034644702585355,
-          -5.379004496584711,
-          -4.283257049168223,
-          -2.835863155029918,
-          0.9006054436202303,
-          1.122860197976538,
-          -4.662046633363247,
-          -4.574683366056963,
-          0.6484773361397532,
-          0.09475760680258316,
-          -4.983844131049762,
-          -4.259296007516112,
-          0.4935359127469391,
-          -4.051581097412187,
-          1.10840267500015,
-          -4.643591789829546,
-          -0.11790302259683916,
-          -0.6254068286536743,
-          0.5075307749935212,
-          1.0648596065313551,
-          -4.430744554145652,
-          -3.4295728424055594,
-          0.5177065489319281,
-          -4.892378808695865,
-          0.8531781099111887,
-          -0.6155578577277836,
-          -4.9580796470262785,
-          0.13696544014417017,
-          -0.39281967932248296,
-          0.3619060607184027,
-          -4.039781910177223,
-          1.5214696102328698,
-          -4.075632823238306,
-          0.44389998618795706,
-          0.0359054467956601,
-          -5.129543794022882,
-          0.9416053567794658,
-          0.3596712180850591,
-          1.3046238116606803,
-          -0.47190238390657757,
-          0.611721818692402,
-          -0.04254173206022327,
-          0.46230412374496666,
-          -5.865766586277619,
-          0.39165447780159196,
-          0.06380649209924771,
-          -0.12048667322215528,
-          0.8227926380797391,
-          -2.869091133646289,
-          -4.200302099816549,
-          -4.15629923761081,
-          -4.613648086478443,
-          -0.23005563452535616,
-          -4.249508885141215,
-          -3.895674797587629,
-          0.5944346738910224,
-          -3.327858683693049,
-          0.9611109606790867,
-          -3.6399427916003666,
-          -4.153726525792811,
-          0.07624260402130689,
-          0.5676804996845699,
-          0.43450261968159387,
-          -2.949832977488251,
-          -4.467350598233464,
-          -5.669331702378598,
-          0.40114747908613163,
-          1.3783113645346805,
-          -4.904420012924753,
-          -5.048029638789597,
-          -4.9673648046567465,
-          -4.783742754243507,
-          -0.26264482260507827,
-          -4.7642813380934586,
-          -3.742889625223163,
-          -3.048836547807835,
-          -4.239299898226211,
-          -4.6763805808652785,
-          -5.013448902180869,
-          -0.2911089727362628,
-          0.3058483153700104,
-          0.6249942432119351,
-          0.8595263636632954,
-          -5.084635583791344,
-          1.0874063530149707,
-          1.2918009934847916,
-          -4.870140737222983,
-          0.8123269307296406,
-          -4.643490888153963,
-          0.767204038141788,
-          0.4693844494771816,
-          0.2539058247772471,
-          -4.119803287514306,
-          0.6450804798412391,
-          -4.461356526846103,
-          -0.09734052272578919,
-          1.0563161015312097,
-          -5.376447945432479,
-          0.1872916455481755,
-          -3.9105667960276507,
-          0.39170059217813885,
-          0.1662822336906666,
-          0.12135487404901332,
-          -0.6841560970932774,
-          -5.172789927892354,
-          0.19581350560982042,
-          1.4410708248071111,
-          -5.194364641655272,
-          0.6627698356168857,
-          -2.7735022036644583,
-          -3.9449076329071042,
-          0.14629349917507806,
-          -4.3247816583388685,
-          0.5803377237340595,
-          -3.4352484985939955,
-          -4.527463988632975,
-          -4.558773902670693,
-          -5.475392292845065,
-          0.7716770455450866,
-          -4.600449578284544,
-          0.048011498535463715,
-          -4.584935997024075,
-          -4.293161286364874,
-          -4.401781859929853,
-          -4.124170977069617,
-          -5.2437055821938685,
-          0.3269000988082141,
-          1.2108606430670439,
-          -5.649788319217301,
-          0.37051194134293575,
-          -4.151914672870502,
-          0.591288884064689,
-          -4.35542740994472,
-          0.9287814656874505,
-          -4.458581420419064,
-          -3.7454835193243343,
-          -0.05419136032709071,
-          -5.261060155911028,
-          -0.04431499286094032,
-          1.4880954272055673,
-          -5.889849658814077,
-          0.30550956174450483,
-          1.0697427444240968,
-          -4.139655875839905,
-          -4.74320766786817,
-          1.40663547863431,
-          0.8470124386175452,
-          -5.306469122994658,
-          1.1044142300016642,
-          0.3938751260663021,
-          -4.626759386065589,
-          -0.876136959006091,
-          0.4223182441939416,
-          -4.16059121565102
-         ],
-         "y": [
-          1.3729396643372507,
-          -0.49719778462516706,
-          -0.07731803089257464,
-          1.7957904157900684,
-          0.010527168934761149,
-          -0.7794854348313078,
-          1.7482327167970555,
-          -1.0996852136017283,
-          -0.7576107689993228,
-          0.44416869292951955,
-          -0.08558585640534136,
-          -0.4073086951569455,
-          0.4559464798233827,
-          -0.5531592936500559,
-          0.037771890844609024,
-          -0.15466083712473522,
-          -0.11528133558492819,
-          -0.23260663799680215,
-          -1.1757695962240255,
-          -0.6975458134886625,
-          -0.07247917831542852,
-          0.7358767724395412,
-          -0.3994386873686886,
-          0.8162928211578827,
-          -1.0473095295059032,
-          0.3086707370904603,
-          -1.567357849620797,
-          0.7533115147788078,
-          -0.45687744064885777,
-          -0.1132446181166744,
-          0.16454884988619442,
-          -0.17612900727469066,
-          -0.2600169485542391,
-          -0.2418090987298703,
-          -0.20295952863942412,
-          -0.789707088515653,
-          -0.0008529130780499817,
-          -0.3025512094456976,
-          -1.1513425379446713,
-          0.2508389853488784,
-          0.15763104161631722,
-          -0.2759639933636324,
-          -0.6679995132842823,
-          0.6461039784757759,
-          1.5119043255112823,
-          0.28101738156195544,
-          0.2223336011297179,
-          1.5700752461690402,
-          0.3175777642438202,
-          0.1327906223610739,
-          -0.41844545500367514,
-          -0.6429659392858902,
-          -0.710776648222377,
-          0.6256234953493117,
-          -0.23663885191769826,
-          -0.5849936860755023,
-          0.4940840309942711,
-          -0.7175738257434914,
-          -1.2465383129657648,
-          -1.0184590076346476,
-          -0.8729140763086127,
-          0.48842178856039475,
-          0.36622991522381676,
-          -0.5972588293328822,
-          0.08374886473771467,
-          0.34598136468300766,
-          -0.35812734248531175,
-          -1.0446441393562371,
-          0.8513077915283841,
-          0.22813612939939318,
-          -0.1714692107449871,
-          -1.2008117160104224,
-          -0.3615689254941565,
-          0.4032571709308142,
-          -0.934518995130045,
-          0.3316022920794113,
-          -1.0184378949884014,
-          -0.6235867653278055,
-          -1.3654468538830138,
-          -0.21993526867968877,
-          1.4838975997308705,
-          1.518150328603969,
-          -0.3401944528736649,
-          -0.16875813268871623,
-          -0.08857033596431024,
-          0.07522445139774916,
-          -0.9072103141114923,
-          -1.937000689434937,
-          -0.9835904801382032,
-          -0.5688497541724896,
-          0.3266318943953559,
-          -1.6367593342159235,
-          -0.40858286504818103,
-          -0.13401140168552822,
-          0.7090660688405963,
-          0.11128241618475372,
-          -0.6476814695738401,
-          -0.607663648891424,
-          -2.020902028558943,
-          -0.03571941192029508,
-          -0.15555896202520106,
-          1.119284023516456,
-          -0.07367254220959861,
-          -0.15858092044806735,
-          0.679711516867192,
-          -0.528177021020558,
-          -0.8104567997388413,
-          1.786306295798713,
-          -0.3090099187329787,
-          -0.9280301705336619,
-          -0.14863593842426212,
-          -0.4524506103248027,
-          -0.7235859626913692,
-          -0.6157946632937185,
-          0.23810018349188888,
-          -0.34390536531817856,
-          0.7970921844816603,
-          -0.8415874424236174,
-          0.0176683892432482,
-          0.6204279446302046,
-          -0.13861253650436522,
-          -0.4071541486941979,
-          -1.934035981909078,
-          -0.4822774108419128,
-          -0.19726133096034382,
-          -0.04769660794219104,
-          -0.6090339771010739,
-          0.7127841906439802,
-          0.14669261358726934,
-          0.7548800851818076,
-          -0.828761657978196,
-          -0.4548550440638197,
-          0.7199235906698748,
-          -0.336043421902116,
-          0.493844203281793,
-          0.04424049823654389,
-          0.04126538253168914,
-          -0.664413398336957,
-          0.6052761462900416,
-          0.791354775264738,
-          -0.5534884152517314,
-          -0.3272580720071484,
-          0.010275844349890756,
-          -0.28785738914968234,
-          -0.24114032024180387,
-          -1.6548566146444372,
-          -0.5554236597081361,
-          3.2912009683707035,
-          -0.4363632819772538,
-          0.07586685853535166,
-          0.3622756592859365,
-          -0.12424762702780626,
-          0.7855010777033162,
-          -0.3505211393675668,
-          0.042499300524851374,
-          -0.11794679528119582,
-          -0.8942897843204215,
-          0.4863751060292872,
-          0.09843704186118801,
-          -0.13233357961108447,
-          -1.9123232955313578,
-          -0.13185181893384826,
-          0.5637671301387319,
-          -0.15358082276905846,
-          -0.5504049260717305,
-          -0.7700806174203261,
-          0.5171893905287158,
-          0.45149276328556487,
-          -0.6173278931349326,
-          -0.7292757626914512,
-          -1.3341874971591652,
-          0.029222001667200764,
-          0.46570712709531037,
-          0.9021762535804537,
-          -1.431791989722992,
-          -0.9360260819750176,
-          -0.011405771043303991,
-          0.04565189469776193,
-          -0.4437782753323646,
-          2.219440356127846,
-          0.44336867174911426,
-          0.2893993881800853,
-          1.0984249506751878,
-          -0.03412856481712952,
-          -0.9394152218057413,
-          -0.1118213813814213,
-          -0.18435430050818336,
-          0.2162039273691278,
-          0.9668947972131235,
-          -0.1873644862114262,
-          0.9077923037908532,
-          0.10928363026779736,
-          0.5180054687638269,
-          -0.28844588626353157,
-          -0.24226149333741656,
-          -0.8384866632470653,
-          0.05242175622548727,
-          0.5229509394234594,
-          -0.29659707644961086,
-          -0.8419177266456128,
-          -0.23705703527192729,
-          -0.2210975005069951,
-          0.6103700845908602,
-          2.6434291474123817,
-          0.2421629861058857,
-          0.1851388885477823,
-          -0.09113297211976051,
-          -0.19633561117533688,
-          0.3007948706953044,
-          -0.2938966693598514,
-          -1.4155713436980863,
-          -1.315346198857682,
-          -0.16374489985815618,
-          -1.250725516595704,
-          0.20165525093882009,
-          -0.45351536074811494,
-          -0.12225263838417104,
-          -0.49681049462474547,
-          0.14257079751589688,
-          1.071698719475302,
-          -0.9140703286892351,
-          0.5128862973647547,
-          -0.0721463432362712,
-          -0.057998189835241916,
-          0.47720218175687035,
-          -0.26872440708447387,
-          1.872916095118658,
-          -0.6315293827260067,
-          0.11507548961649625,
-          -0.2849622076113439,
-          0.46705495350354354,
-          0.4511734362064699,
-          -0.2000576985285572,
-          1.3034742647381128,
-          -0.41159406151376676,
-          0.7951482165428972,
-          0.7203076200658618,
-          -0.38529436611182605,
-          0.22296480357820092,
-          -2.1609355260512015,
-          -1.304878723558326,
-          0.8186887886600321,
-          0.07872537877876666,
-          1.232033952778363,
-          0.7625197502289212,
-          -0.31919474228614486,
-          -1.0635711679100248,
-          -1.0356452502951823,
-          -0.5912438087698059,
-          -0.6508390616342382
-         ],
-         "z": [
-          4.057923625570647,
-          -0.5071439019189135,
-          -0.11262322716057854,
-          5.385260551885767,
-          0.7329403621023001,
-          3.2095664814411107,
-          7.305216145705213,
-          5.640448056412309,
-          -1.0148962478202193,
-          0.4445063796147037,
-          4.636585901066918,
-          -1.6166240378427905,
-          0.7814095851831908,
-          -0.5807328710778992,
-          6.983119074818209,
-          0.7313818967770792,
-          4.701544260064271,
-          1.0625950362637082,
-          3.8462043010461326,
-          0.5442832423563178,
-          4.834218830173321,
-          0.5501762934054499,
-          3.571573700759207,
-          2.2934187816350846,
-          -1.1964493756138768,
-          0.6460069917071206,
-          3.7320519275946875,
-          6.415799175779382,
-          -1.388286600886895,
-          4.910892437556468,
-          5.940255384527131,
-          -0.5227801076139891,
-          -2.58152807284329,
-          0.2524877289649008,
-          -1.1227859820617043,
-          -2.0715174419676745,
-          1.2452328342606263,
-          1.3283853198036861,
-          4.871141230872443,
-          5.015180629273067,
-          5.9661112918398835,
-          6.10195428159358,
-          5.125381883816064,
-          0.7825924008478311,
-          4.857087851733697,
-          1.1953390853488324,
-          0.19573751903940817,
-          6.198869675298004,
-          0.03225060470672991,
-          5.270147781412405,
-          4.201728789353825,
-          2.7450407869730475,
-          -1.0084199592406213,
-          1.8095135650446916,
-          4.328153615110607,
-          0.718701966199907,
-          2.3323006794559418,
-          4.20972146751403,
-          6.2856304189766625,
-          4.947567143191508,
-          6.51374329790566,
-          0.8619450316382438,
-          1.9253042138241798,
-          -0.974530538481899,
-          5.210786531644966,
-          5.71417196913978,
-          0.5847558743533,
-          4.402733568911304,
-          6.22815584271495,
-          2.3059741342030975,
-          4.293508553261957,
-          4.029039915671512,
-          4.853285986069919,
-          1.8326435941430568,
-          -0.3208592174905341,
-          1.2486758682387025,
-          5.512377040480017,
-          4.4163722121077615,
-          4.040042647004691,
-          3.4468826224117697,
-          6.097528468876562,
-          4.596059239551726,
-          5.861904570247185,
-          5.216409458853635,
-          0.7756781763595779,
-          5.5508031226186345,
-          4.403215754186398,
-          1.9435490321107438,
-          5.801357658886759,
-          1.4075167088156288,
-          4.863235790582102,
-          4.133132768610004,
-          -2.235553965124178,
-          -0.7892201528655651,
-          4.545142309717136,
-          2.0468346594036477,
-          -1.1728927500495225,
-          6.678841784550136,
-          4.878802282838178,
-          3.155761588194214,
-          -0.9433445565651335,
-          1.9817528006076681,
-          6.177488321550655,
-          3.699218336105563,
-          1.8091505626450626,
-          1.3222136657178534,
-          5.80708709978876,
-          4.0306459067878775,
-          -0.38157534972275914,
-          4.706573609657939,
-          -0.7542761668609521,
-          5.448692665089233,
-          -1.3763084892487758,
-          0.34697006830782184,
-          0.7891944801159578,
-          -2.2359549488415595,
-          4.5657907313021875,
-          4.215082967175425,
-          0.805703543958155,
-          5.128503137453338,
-          -0.8723962008588082,
-          1.2506916108366646,
-          4.259505992603229,
-          -0.7020951765602725,
-          0.8843900919016743,
-          0.018235720377769715,
-          5.1142946887242,
-          2.20537373416802,
-          3.829299337797757,
-          2.2135082129459276,
-          -0.8157152325795278,
-          5.946038005921375,
-          0.4205490020341077,
-          -1.872039494585989,
-          1.0888508609572716,
-          1.8676297805465174,
-          -0.29550608402065154,
-          -0.02701457687048009,
-          1.479437360587732,
-          6.449308215562055,
-          -1.5681517007761967,
-          -1.2823652405070183,
-          0.8280186914117489,
-          -1.880188196380172,
-          4.593554179339224,
-          3.0159852356617254,
-          3.9978876875943414,
-          7.8600939213636,
-          -1.2703487917779568,
-          3.8104090836874978,
-          6.407873087497281,
-          0.6994829154353541,
-          5.506107210324006,
-          -2.806514285130086,
-          5.317670326009903,
-          5.5042269465866225,
-          -1.3073037188632075,
-          0.44999307813360356,
-          0.8408432996914965,
-          4.118344722224546,
-          5.32959189134903,
-          5.7589649414704365,
-          2.3215130186361703,
-          -1.6247680537261733,
-          4.819767711373457,
-          5.9987509514209005,
-          5.14462794663922,
-          5.475256089559051,
-          -0.7746952267879128,
-          4.470673103813128,
-          3.8722817073430282,
-          4.8881935207203915,
-          4.285802001618334,
-          4.241084052259029,
-          6.435589672730833,
-          -2.009958502881167,
-          0.9362682227765831,
-          0.14614887666804438,
-          -0.6498088680576044,
-          6.635890642856445,
-          -0.045451615018122116,
-          0.0393126543581056,
-          4.61382572565501,
-          -0.5078496815409927,
-          6.789960617558561,
-          -1.2785847248073827,
-          -1.326818860163087,
-          1.1527179663231892,
-          3.93437930785836,
-          -0.9196560268196798,
-          5.316057075937978,
-          0.852398089101861,
-          0.7355192959231391,
-          5.868141067246089,
-          1.6153931854509738,
-          4.421658778877396,
-          -0.6085569615447755,
-          0.9640444064487579,
-          -0.5177777822311838,
-          -0.886068851730498,
-          5.623186875105014,
-          -1.3332280361588698,
-          -0.2979950842343699,
-          6.569779914277698,
-          1.216936985739043,
-          3.5399663073542915,
-          4.360277286496158,
-          0.23224754833932915,
-          5.755876478582662,
-          -1.1759812301936072,
-          3.82523318864052,
-          2.6009266572373613,
-          6.015965866330201,
-          6.630465160579673,
-          0.6699424340865716,
-          5.873049444290847,
-          -0.6170136210206214,
-          6.3625813645481655,
-          3.344644383022718,
-          6.000047815917533,
-          4.13430128187058,
-          4.927315885598507,
-          0.10090888716878671,
-          -0.5489596451968872,
-          5.093635348805404,
-          -0.32228962280433854,
-          5.444640856497027,
-          -0.98998184093539,
-          4.6135062665193844,
-          -1.6271218992292722,
-          6.389217026725698,
-          5.056245071356628,
-          -0.16606031728641474,
-          3.524149027980944,
-          0.5440482350057065,
-          1.1334977565546749,
-          6.964749347491709,
-          -1.3558209750983365,
-          0.6410966146654601,
-          5.325978648164543,
-          4.749073378367706,
-          0.8511686721713692,
-          -0.6908632814981885,
-          5.113514494992583,
-          0.33820986797928787,
-          -0.78044057057635,
-          4.6570427643976755,
-          -0.7866916594286013,
-          -2.0053248073815286,
-          6.4720422510168305
-         ]
-        },
-        {
-         "marker": {
-          "size": 1
-         },
-         "mode": "markers",
-         "name": "Class 4",
-         "type": "scatter3d",
-         "x": [
-          -2.699998209889855,
-          5.980766312987704,
-          5.839674295191234,
-          -3.2765995516083284,
-          5.966631194643568,
-          3.963847602526904,
-          -2.3642988185422418,
-          -1.7138667769612526,
-          -2.4370927644769083,
-          4.841737435741448,
-          -3.2684597191413576,
-          -1.9212399683235388,
-          7.000360918301024,
-          4.894299148296243,
-          4.700415065225787,
-          -3.858054988862419,
-          5.305031717234037,
-          -0.20053482046886284,
-          -3.732276456034228,
-          -4.498015885776166,
-          5.120509495440337,
-          -4.032802364813132,
-          -4.53589901684049,
-          6.2507392556241745,
-          4.955362836717969,
-          -4.312001043729332,
-          2.7882512285044765,
-          -3.812364545182882,
-          -2.3505854369032386,
-          -4.109617553510807,
-          -2.6022800149831165,
-          3.830904366762126,
-          4.7615210407147845,
-          6.1098466002125065,
-          -2.485292495708845,
-          -4.353027831690074,
-          3.37232657314937,
-          -4.879769788176697,
-          4.6343345376473755,
-          -1.2410328254694365,
-          -2.534613131858027,
-          -3.7058253979362226,
-          -4.762608904543357,
-          -4.590534961883758,
-          -0.7208347198836313,
-          -3.0671409899514592,
-          4.019029274342687,
-          4.151815151090048,
-          -2.6330729790681806,
-          4.599755105415642,
-          4.468399876905136,
-          -2.698126290244544,
-          6.1349438265950385,
-          3.637957919656822,
-          -2.1805784412289038,
-          -3.4097803776126674,
-          3.1043079203282087,
-          -5.668985659194438,
-          -3.8328092555345217,
-          -4.847872340079251,
-          -3.032406148690183,
-          6.219007710814511,
-          -4.265127045590749,
-          -4.983285200765482,
-          -4.0625177786020235,
-          4.743038222513676,
-          -4.505774854373235,
-          6.2369116525392805,
-          3.8640405159915927,
-          4.408021433598165,
-          -4.252046892382156,
-          -2.215099160287469,
-          5.243724625552756,
-          5.247880277049236,
-          -2.920892453611725,
-          -5.2414036325571525,
-          5.313242578122001,
-          -1.6850244639082808,
-          -2.9961631247985165,
-          3.6039123687499153,
-          5.668988563392321,
-          -3.671956697864752,
-          4.858154193033189,
-          4.56151453012583,
-          -6.117797044673422,
-          -2.881486832365713,
-          4.2240687576200395,
-          4.517439185302539,
-          -3.6052434330755574,
-          6.459858085763701,
-          -1.3699927337709488,
-          -3.630780258361141,
-          4.229443036717835,
-          4.54630404089184,
-          5.798223837771155,
-          -0.6832282023853047,
-          6.11688218479852,
-          5.063006075436526,
-          5.787208055645751,
-          -4.798748031245717,
-          5.347037956149085,
-          -4.100437474361896,
-          7.0633198747744,
-          -2.4214733189388107,
-          -3.599511561271338,
-          -3.2505821722479435,
-          -2.5840310155326285,
-          4.963475348803859,
-          -3.8633580234590856,
-          -1.7306446389167323,
-          4.604416669300958,
-          6.326031234514003,
-          -4.6185566539362215,
-          -2.6815368815640808,
-          5.766376687511509,
-          4.367276433824759,
-          6.492336604592851,
-          -3.760539302755535,
-          -3.5146465823122695,
-          -3.3332954366662957,
-          -5.2197027658584565,
-          5.02996538024868,
-          6.5053792435307765,
-          -3.1270360028189073,
-          3.9157106922995917,
-          4.0359946016829955,
-          -3.2046403580934357,
-          7.947011324487798,
-          -3.3736715172305187,
-          -3.0520823265285757,
-          5.010102556452075,
-          -1.5843032482732986,
-          5.521380636089694,
-          -2.051348228700825,
-          7.594464065516478,
-          -4.970536606372113,
-          4.356375461291438,
-          6.272222260739428,
-          5.865644202739639,
-          6.314122707528323,
-          5.247928186955148,
-          -3.25850210379829,
-          -3.569890342111734,
-          -4.117163605023333,
-          -3.575646312413574,
-          -2.5625962699285934,
-          -1.3008975581804099,
-          -2.262158184137214,
-          5.672688573999388,
-          3.4331554309379992,
-          4.700907482161812,
-          -3.364151226681323,
-          4.123412811091546,
-          -3.6826399975828177,
-          4.595258255371273,
-          5.41375792969739,
-          5.645086704611426,
-          5.633209434074983,
-          4.499867377377288,
-          -5.085665908710295,
-          4.678643626139308,
-          -3.139145623417235,
-          -3.05547514428524,
-          5.650879655266439,
-          4.230459178856846,
-          -5.213794060174585,
-          5.605822847121157,
-          4.86932808661995,
-          4.927856285103348,
-          -3.9873421339888537,
-          6.678477457060136,
-          6.745213810846426,
-          -2.037864480996778,
-          5.162670098862875,
-          6.413935449964141,
-          4.514803075064107,
-          6.118536939629042,
-          5.633246014203138,
-          -3.604868825335263,
-          -1.5799768655649782,
-          4.445278663872193,
-          4.904971581381739,
-          -4.933754588344868,
-          5.709309131440666,
-          3.717499290864141,
-          5.568249091140084,
-          -2.9748010678406667,
-          5.106482949309244,
-          4.664887199573926,
-          -4.752706181550519,
-          -3.286509431037745,
-          -4.518528273669642,
-          4.1512378318068865,
-          -3.448733689937302,
-          3.977843915954714,
-          -3.6307431597105357,
-          -5.150207243878652,
-          -3.917890896330447,
-          -4.400064687050306,
-          3.807001261876377,
-          -2.612987603568887,
-          -3.643766221101515,
-          -3.179365815381859,
-          4.5639978410379864,
-          -2.982278096984077,
-          -3.64252558058526,
-          -2.838169655427001,
-          -0.7235668534029904,
-          4.756367906073104,
-          5.9314174365332635,
-          -2.3139584033515286,
-          -1.1553098995608782,
-          -4.509507488207309,
-          6.182922299880477,
-          3.9511580248408658,
-          5.223558119159183,
-          5.475025958984664,
-          7.438110720913081,
-          5.795134627047637,
-          -4.120136953316507,
-          6.381162285263275,
-          5.111771396431613,
-          -2.760550317130465,
-          3.4201119888062483,
-          5.298956586245765,
-          6.193845134556291,
-          -4.963082985122585,
-          -4.246797539086819,
-          -4.5374508482358955,
-          6.289481281963035,
-          4.201295737851178,
-          5.096351029997583,
-          3.986964917972693,
-          -2.405960552946257,
-          -4.747973189620707,
-          -4.256136369316367,
-          -2.9924773998978504,
-          4.981108255843727,
-          5.323225671106721,
-          3.5126651688097428,
-          5.315088081058691,
-          -4.990260327056453,
-          -4.329329603802701,
-          -2.353625070800532,
-          4.74665092666628,
-          5.003846157689242,
-          5.220541421383091,
-          3.122835959885598,
-          -4.072820175756328,
-          -4.527563906324281
+          -0.9019998923063296,
+          -1.4429913951590747,
+          -0.7735231212719915,
+          0.28030837306642686,
+          -1.1905253144588146,
+          0.47526885455878665,
+          0.05201892045814982,
+          -0.7277284303384353,
+          -0.916107213579771,
+          -1.5274023518313198,
+          1.3438456373463272,
+          -1.4542128815904543,
+          0.6104555676508474,
+          -1.42840221060778,
+          -2.3707368902257793,
+          -2.023773490113663,
+          -1.035363038121658,
+          0.580815512635348,
+          0.003567637777463384,
+          -1.050430812433436,
+          -2.144673217640712,
+          -0.8302933574835307,
+          -0.7051775989909213,
+          -1.6502089259594912,
+          -1.6353240229780086,
+          -1.649849170038959,
+          0.4482776119027265,
+          -1.8486295928894168,
+          -1.5630199789551145,
+          -0.7931094761212524,
+          0.5777616579189253,
+          -1.624769790383664,
+          -0.7085454366007203,
+          -0.3285800250801949,
+          -1.1804068579383231,
+          -2.406287352133747,
+          -1.0337746636316796,
+          -1.527731513033341,
+          -1.0167439926620634,
+          1.57633841247756,
+          -1.4990088470234233,
+          -0.30477632884921846,
+          -0.4046549885624703,
+          -0.3977968254129597,
+          -0.16347594477468597,
+          0.08753006145624354,
+          0.40918263753337847,
+          -1.1703855335945397,
+          0.2300983451662506,
+          -0.6241184775742149,
+          -0.9706931650690133,
+          -0.8051646080887476,
+          -2.3864437274134227,
+          -0.3418954644402723,
+          -1.3137958423877603,
+          -0.7457404253431722,
+          -1.0971587281528212,
+          -0.380218041148329,
+          -1.455162179253799,
+          0.0946231445278729,
+          -0.8644305341561381,
+          0.2184118986626471,
+          -1.5698497553613353,
+          0.5961327856951526,
+          -1.5660546568492149,
+          -2.476325126562922,
+          -0.5513824912331532,
+          -2.0411997202287324,
+          -0.75143255219378,
+          -2.3053366082076527,
+          -0.33708624201380455,
+          0.8827420069117871,
+          -2.555351879144932,
+          -1.046477303392035,
+          -1.2459526483439904,
+          -2.276009227732767,
+          -1.0837573788503265,
+          -0.6505737685101375,
+          -0.4190927643315986,
+          -0.3447108763710335,
+          -0.7996364947543555,
+          -1.0914901854103192,
+          -1.689616964765869,
+          -1.040943109420756,
+          -0.8693909177929336,
+          -0.14292038667700113,
+          -1.4549071064316,
+          -1.4611497056890488,
+          -2.6148709177955745,
+          -0.19883606204341397,
+          -1.985882232538095,
+          -1.0036729750849094,
+          0.5327923906620333,
+          -1.2252844132236416,
+          -0.7875429405558376,
+          -1.2520101363863387,
+          -2.021203448013169,
+          0.8328344696889127,
+          -1.5823465466310584,
+          0.42671530392800827,
+          -0.9392037511559186,
+          -0.2881251888925569,
+          -0.0873041733399057,
+          0.07007332238514019,
+          0.3431514435888765,
+          1.1158358835843152,
+          0.7699049578735917,
+          -1.6641543747301155,
+          -1.3266106631836347,
+          -0.4669421558565745,
+          -1.0248307675028177,
+          0.7613196865780811,
+          -0.9612534867929297,
+          -0.37448666861589286,
+          -1.2624087027594282,
+          -0.5929713610914504,
+          -1.4926336100106208,
+          -2.2497315440467953,
+          -0.7711597524391338,
+          0.7168514483871442,
+          0.0997709465901413,
+          -1.1760024681807861,
+          -0.3349230585723336,
+          0.505409318279145,
+          -1.6377935558585601,
+          -0.496310652073084,
+          -1.561064590378261,
+          -1.0260536981584214,
+          -0.44577150343615146,
+          -0.2132132182302492,
+          0.17122609631404306,
+          -1.3695273011776683,
+          -2.319994782476119,
+          -1.476845584853795,
+          -1.047837958967317,
+          -0.9216761054505536,
+          0.01574559324875291,
+          -2.5870158206933125,
+          0.5301022919820362,
+          -1.3554688986812584,
+          -1.327923583854463,
+          -0.6105970359175916,
+          0.0504273130472086,
+          -1.2641068767391994,
+          -1.0730011903450278,
+          -0.2581440151976496,
+          -0.25303551684867165,
+          -0.9198273529954855,
+          -0.06575650279367107,
+          0.01752296806411091,
+          1.1292061142920953,
+          0.12984974571347419,
+          -0.3752452841192315,
+          -1.6359647442476484,
+          -1.194410578074801,
+          -0.11292091031850748,
+          -0.8466401399118396,
+          1.450406599715809,
+          -0.7949691121695625,
+          0.1271409151691305,
+          -0.348781475367237,
+          0.6653680002402484,
+          -0.6914474775463058,
+          -1.0653923644132264,
+          -0.6723596840920145,
+          0.645262171063544,
+          -1.2489303282192445,
+          0.21272673528875674,
+          -0.39091970493082706,
+          -1.3033813947726371,
+          -1.1529894384671222,
+          -1.1764556837589135,
+          -2.117709198746709,
+          0.625680450024787,
+          -2.010775818770708,
+          -1.6514545770281666,
+          0.6741194531417958,
+          -1.7016048983692647,
+          0.0009607341623791843,
+          -3.5482735057184978,
+          -2.4167410597877597,
+          0.04256348783818509,
+          0.4113377940623997,
+          -0.39361716176864925,
+          -0.22623301748202151,
+          -0.8937615806481357,
+          -1.7687059266230718,
+          -2.7260571064021573,
+          -2.0079198072366684,
+          -0.8165886008461352,
+          -0.06372868437831969,
+          -2.0089771124106277,
+          -2.0016967552555744,
+          -0.4391934121107609,
+          -0.8925642168194334,
+          -1.6131254422432768,
+          -2.624139571169893,
+          -1.020021752538091,
+          -0.7717079496148392,
+          -0.8723271374209132
          ],
          "y": [
-          0.22238685594737023,
-          -0.7051485544237847,
-          -0.9314510975513453,
-          1.5919188253629484,
-          3.6820160740243613,
-          1.465868814755444,
-          -0.1821277871180662,
-          1.9024806631434426,
-          0.7475480384782819,
-          -0.22712277888381674,
-          0.4054979639105514,
-          0.7869392663446891,
-          -0.6548614202722445,
-          0.6517807578277369,
-          0.6152313448629382,
-          -0.5039871685334778,
-          2.2811706075281535,
-          0.9502680232614785,
-          -0.34283342784345266,
-          -0.06787960531253215,
-          -0.2996476825743556,
-          -0.016448683299671446,
-          0.28322600786210095,
-          0.3342459353060879,
-          0.9188123400284899,
-          -0.7143773794860013,
-          2.3739538685077233,
-          -0.32578372483667384,
-          -0.4885240197183711,
-          -0.34242426556103855,
-          0.8739170678142963,
-          2.7395798981164297,
-          1.1089017207348577,
-          -1.9263367553728539,
-          1.238633879016844,
-          2.468692971644069,
-          2.0030511852031694,
-          -0.21121542219096545,
-          -0.7852297037503616,
-          1.46716486505506,
-          -0.9362821757467574,
-          -0.2653068441103129,
-          0.073991508183014,
-          0.27206392836734306,
-          1.3419215388642547,
-          0.11450255313395957,
-          -0.24044992552282893,
-          -1.1455427963565756,
-          -1.021140332768659,
-          -0.19225455765580765,
-          1.2066424825053326,
-          -0.012270458504129556,
-          0.14058578122324406,
-          -0.1910001700804068,
-          0.46781314537811597,
-          0.19104737760256535,
-          1.5505485273241162,
-          -0.23688548783938157,
-          -0.6513161277307408,
-          1.698332647579257,
-          1.1947612447769098,
-          -1.6941675770026179,
-          0.9674717268982067,
-          -0.02323977299331681,
-          0.02266571772684914,
-          0.052269505865394944,
-          -0.1159630969837949,
-          -0.97128174803245,
-          1.597309346387565,
-          0.6001602012728998,
-          0.13508430353869144,
-          0.41866405554242075,
-          -1.6236721954931763,
-          -0.014339704107512757,
-          0.6278893004903168,
-          -1.2934929270399442,
-          -0.9689751606130053,
-          -0.40387592527807237,
-          0.9102055559729485,
-          -0.432362667278511,
-          1.4606060199075852,
-          0.08011952168415931,
-          0.6241734099931763,
-          0.9117051684912717,
-          0.2508412296105255,
-          1.1731145028429624,
-          1.668873505307611,
-          1.4679662791184782,
-          -0.9395446641275242,
-          -0.6506010937373048,
-          1.8077193074586402,
-          0.04796983753602313,
-          -0.4107588148965101,
-          0.0955145210250358,
-          1.6622374787202248,
-          0.39798803052811554,
-          -0.3141107849427054,
-          1.7636231905989046,
-          -0.35685233663557914,
-          -1.2365190314180776,
-          0.9047994959726829,
-          -0.3833344384862102,
-          0.7504576927214561,
-          -0.532767340081754,
-          -2.3319366168166047,
-          0.5076798499694798,
-          -0.15587158866022638,
-          0.14239704006839915,
-          -0.9929960061836487,
-          1.4139513705677522,
-          1.145196317636352,
-          0.34680849946661135,
-          0.553258129071079,
-          -0.4727131485704048,
-          -1.0530242756263624,
-          -1.1601252385001344,
-          -0.7646480826808676,
-          0.30425098584592747,
-          0.8831799105422891,
-          0.34544362020526553,
-          -1.500476306841989,
-          -0.40698265280187806,
-          -0.03673948257095358,
-          -0.7263607256935016,
-          -0.05127422933366338,
-          1.9895599117671117,
-          0.0731133513426937,
-          -0.6852924124309955,
-          -0.2477032885909225,
-          1.0147579724857445,
-          1.2800981541576684,
-          1.2794909719628702,
-          -0.5823121705100651,
-          0.15538779258327912,
-          -0.3540564542497764,
-          -0.08709653546267032,
-          1.8396657139876147,
-          -2.4315423673891514,
-          -2.187569808208758,
-          -3.2379805700132502,
-          -0.7638804178137769,
-          -1.2044321101116906,
-          0.6519240999688716,
-          -0.14605565481127802,
-          0.847528712668274,
-          0.541771661055941,
-          1.5052268981422061,
-          -0.1714617755134022,
-          -1.0086233048466422,
-          -0.28933797802729544,
-          1.0114944339490923,
-          1.0418266973000747,
-          2.184865103395906,
-          -0.42814058014944567,
-          -1.4960815091973005,
-          -1.7644303369932028,
-          0.18419793734379236,
-          1.2606205773730057,
-          -0.1891479579164317,
-          0.38822051725109846,
-          1.617368390975873,
-          0.5824832369360642,
-          -0.9547980023953326,
-          0.10121116596287535,
-          0.2633108235157875,
-          -0.24148557519328917,
-          0.4643620955058042,
-          -0.0419016844180016,
-          -1.1123247591768368,
-          0.27574125056800497,
-          -0.2928686101139678,
-          -2.5164208986737115,
-          0.07302705939604512,
-          0.7835457978827232,
-          -2.5062921009354784,
-          -0.581574262487322,
-          -0.6183339121570891,
-          0.07461658021815079,
-          -0.19633412415369944,
-          0.14831971228313554,
-          0.4740282557148451,
-          1.3173688972431292,
-          1.0600128215512734,
-          -0.1519094193363935,
-          3.174692838621768,
-          -3.0476500092810386,
-          1.5533066375587188,
-          -1.4691165574822571,
-          0.35450240669340793,
-          1.2127144829387175,
-          -0.08967350687668549,
-          0.764432587890914,
-          -0.19409026050543274,
-          0.9360420775488095,
-          1.4240058690897162,
-          -0.4622595156970124,
-          -1.2083729736495992,
-          0.10159674208299627,
-          -0.3700256257494864,
-          0.6501487949377724,
-          0.7564455204913413,
-          -0.0629674983961383,
-          -0.1041953014026846,
-          -0.12388186869392212,
-          0.504134188588296,
-          0.055757549018942226,
-          0.6832462110501546,
-          -0.17213876145168772,
-          2.2922533716421007,
-          -1.584185324126166,
-          1.7326347680444025,
-          1.2585797588219654,
-          0.17494996510055466,
-          -1.4156188397728864,
-          -1.4890561440573666,
-          -1.7069357020774374,
-          -0.17851314438236618,
-          1.5162667016379416,
-          -2.231446616372558,
-          0.025999328003552855,
-          -0.69057651402217,
-          -0.9469181615105513,
-          0.08481632557487845,
-          1.1030940454312388,
-          1.5483131535489534,
-          0.49496579566127163,
-          0.26204016396508034,
-          -0.6801219070652057,
-          -0.707765320863744,
-          -0.4409992601896435,
-          0.6738108443627491,
-          -0.32639277506945097,
-          3.463592132464897,
-          -0.2347791699814223,
-          -0.26039838593997733,
-          -0.6951890753482464,
-          -0.38204702982187455,
-          0.5123196670156499,
-          -1.1424352262832775,
-          -0.12492185176666606,
-          -0.7805477218405579,
-          -0.006966207414823067,
-          2.1014338112739814,
-          0.013584974528031118,
-          1.7673518651861224,
-          -1.0842481460967375,
-          -0.26720599029337544,
-          2.0571967695259494,
-          -0.652961735488539,
-          -0.2815848233533465
+          -1.4713135860838087,
+          -1.3152169838827923,
+          -1.488109001761644,
+          -1.9120984531251168,
+          -1.4483285761784848,
+          -0.7996022308718287,
+          -2.514605698957878,
+          -0.09297535295379422,
+          0.08631239597664964,
+          0.43690266882452145,
+          -1.3699326943677859,
+          0.48180070751294934,
+          -1.5330828630442352,
+          -1.2872939950506603,
+          -1.9366132126015494,
+          -1.782809361948263,
+          -0.7612059562719092,
+          -2.017873623398654,
+          -1.2181727036207766,
+          -0.3119865963347407,
+          -0.6101134686816367,
+          -0.49792044506346667,
+          1.5033055889601088,
+          -1.5413788821863097,
+          -1.5663376767386938,
+          0.21226390179553167,
+          -1.5819053906269818,
+          -0.5193674378776145,
+          -0.3546932486732348,
+          -2.5453795863196045,
+          0.8309902496530819,
+          -1.3952818093642612,
+          -0.6590039897645419,
+          1.049507583634726,
+          -1.8139053639190075,
+          -1.7452210116323479,
+          0.8296446354698706,
+          -0.7718365991296201,
+          0.21162845834935307,
+          -1.5412481939189977,
+          0.06457606418552042,
+          0.8828137116696286,
+          -1.366316884977268,
+          0.13038069141070507,
+          -0.4828078667191753,
+          0.19215738195465226,
+          -0.3386066897402733,
+          -0.8504178021841328,
+          -1.8329082044842964,
+          -1.40102927998438,
+          0.30344785179601574,
+          -0.9526555354102162,
+          -0.23915586031565617,
+          1.2055501692723563,
+          -0.7765648968343695,
+          0.6082952741161283,
+          -0.7155231111881841,
+          -0.8097423392949387,
+          -0.8021152053527786,
+          -2.046585484356313,
+          -1.713809411931261,
+          -2.552967895776054,
+          -0.6154129673509462,
+          -1.0670357946648306,
+          0.9179370086352654,
+          -3.2417964919130364,
+          -1.511870270095995,
+          -0.27779393456770995,
+          -1.5751073630401304,
+          -0.110484591878795,
+          -1.1011149268691385,
+          -2.0910068112090547,
+          -1.705436093219617,
+          -0.7519028351759567,
+          -0.6410612994345408,
+          0.47199274898038834,
+          0.13914093608038347,
+          -0.5343164496684776,
+          -0.5435379478464493,
+          0.3551398068106395,
+          -0.2771339682204992,
+          0.46827404747476886,
+          0.8361519953538123,
+          -2.458749279347601,
+          -1.6943674187992703,
+          -1.6653839293701793,
+          -2.9264845855119686,
+          -3.4712704433500896,
+          -0.22471789590567892,
+          -0.5662239923464938,
+          -1.0486441973205844,
+          -2.1810127622991815,
+          -0.10548372891770863,
+          -0.9725884954247047,
+          -3.0816543868590935,
+          -1.6953182431120633,
+          -1.2865962994916262,
+          -0.3466275303054751,
+          -0.416222215193938,
+          -0.05728809747051755,
+          -1.65958553294954,
+          -0.5988212811586711,
+          -0.3524094691095321,
+          -1.545700004137352,
+          -0.7985369744569217,
+          -1.7026626557067068,
+          -0.7982197115927749,
+          -1.493346655717116,
+          -0.5675408610887767,
+          -1.5849168510608242,
+          1.1841555232311745,
+          -0.5551454328796528,
+          -0.877621849101094,
+          -2.0427899641226483,
+          -2.701207836016001,
+          -0.3401502379790693,
+          0.6047609811304637,
+          -2.4930059923733268,
+          0.06757092157978573,
+          -1.4678562597106137,
+          -1.0392613780109663,
+          -0.09906295190012648,
+          -2.6072134045146775,
+          0.4070745746946518,
+          -0.5964578092599371,
+          -0.734229602208247,
+          -1.6847547895698616,
+          0.1956579403584504,
+          -1.377860496066903,
+          -3.904236653883434,
+          -2.7737282521248816,
+          -2.1415614162387993,
+          0.18352299884800005,
+          -0.6467213561253848,
+          -0.5136321830726847,
+          -2.3080769854557026,
+          -1.5034103953818114,
+          -1.4364855675866246,
+          -0.1331549229800687,
+          -1.3560863085518453,
+          1.1173520701620445,
+          -0.5615502799840657,
+          -0.7565420916744423,
+          -1.2001888350088792,
+          -1.037949996896128,
+          -0.9470384804891449,
+          -1.0822947316391607,
+          -3.0372690328746015,
+          -0.6467370631693146,
+          -3.952882280025918,
+          -1.1423188516310643,
+          -2.060237922464566,
+          -2.0740116957293355,
+          0.9514540433144338,
+          -0.7783159305834568,
+          -0.4946266567014689,
+          -0.6279033661198984,
+          -1.0587453461590106,
+          0.07119654287431132,
+          0.21023884203507803,
+          -2.165352675111614,
+          -2.168758467682284,
+          -1.7690232734803737,
+          -0.6648097046161671,
+          -0.5698299507229354,
+          -0.5375983028265263,
+          -0.017063226857244707,
+          -2.251609713505359,
+          -0.2851180936612262,
+          0.4026043083508555,
+          -0.8719683053378113,
+          -0.984116354555831,
+          -2.468206417695256,
+          -1.8635209367745178,
+          -3.195492689049109,
+          -2.34895853288766,
+          0.029560794824287973,
+          1.2964748987864683,
+          -1.331182410080541,
+          1.3357345412610866,
+          -2.6775691950535334,
+          1.4874538697699187,
+          -0.425065461877146,
+          -0.12989866156331098,
+          -0.7133107876515106,
+          -1.0638169339684296,
+          -1.2861627697491609,
+          -1.1002623399762779,
+          -2.1251664351728374,
+          0.4192183866279362,
+          -2.6012066608923012,
+          -0.040835075703205326,
+          -1.229025124347394,
+          -1.9872772971807189,
+          -2.3601080466542106,
+          -0.6739657649282186,
+          -0.5509132038855248,
+          -0.43670789234469953,
+          0.39081178181495146,
+          -1.4378011769543972
          ],
          "z": [
-          4.088990299865416,
-          5.907614536763755,
-          4.8762768734665585,
-          3.6160548978096263,
-          8.033982122455829,
-          6.691340665410314,
-          3.97836967985251,
-          2.0172488119070557,
-          3.4148090596132823,
-          6.675985220613749,
-          3.3671263592806504,
-          3.574827938509698,
-          4.886240313056652,
-          6.451134342940401,
-          6.919202453950182,
-          4.170067923667116,
-          6.534363511988906,
-          2.382452138795699,
-          3.713290633576606,
-          3.4288947312599443,
-          5.359599967668967,
-          3.842140701565591,
-          5.4939921076576415,
-          5.836492497411188,
-          6.646107445554639,
-          4.6781869473802224,
-          8.55303621272643,
-          3.892742705745736,
-          3.4027474373579745,
-          4.305257751141518,
-          3.936715632855718,
-          9.578320898926542,
-          6.503408059011324,
-          4.475327262261171,
-          3.287815893013069,
-          4.748336227346563,
-          8.598769902103642,
-          4.746203494506361,
-          6.863232473472575,
-          3.134279499623222,
-          4.592773742421951,
-          3.9665701726458917,
-          4.956637590004586,
-          4.898877470955193,
-          1.7857330707704895,
-          4.509915405792401,
-          6.581885383299934,
-          4.846917335631307,
-          2.9789305132454205,
-          7.096510307117714,
-          6.685366270907994,
-          3.7878050236260563,
-          5.650108048530457,
-          6.890961861108206,
-          3.9690483509770527,
-          4.256725122304139,
-          7.67946465432296,
-          6.471135763877819,
-          3.625785159944307,
-          4.9350081226172,
-          4.145062516359153,
-          4.371280757381488,
-          3.9957727902993687,
-          5.376650974860597,
-          5.143603658667661,
-          6.083010415718446,
-          4.949756400905673,
-          5.73787391699937,
-          7.255090894771585,
-          6.752899970478288,
-          3.995284981679493,
-          2.4636883832467955,
-          5.407446112570458,
-          6.575685904994581,
-          3.056304762436627,
-          5.709714419140424,
-          4.831822805621666,
-          2.496254155804987,
-          3.3107004004231273,
-          5.7017124315598675,
-          6.685945932051393,
-          3.909122457014186,
-          7.077677772634275,
-          7.5294964642135405,
-          5.255805997320354,
-          3.923300778957552,
-          7.87668927413406,
-          7.823420693045043,
-          4.347273419873886,
-          4.990896083337399,
-          2.2181993821674904,
-          4.748224588948342,
-          5.1877485448852,
-          5.604520220467701,
-          6.344389121363573,
-          2.5457932863485677,
-          5.794318101058777,
-          6.619917614394333,
-          4.705957667374898,
-          5.954151141448579,
-          6.2238931499741454,
-          4.399605151043061,
-          5.812086733227599,
-          3.7862366972471864,
-          4.347508016152756,
-          4.226250877919847,
-          2.380052845856807,
-          7.276205439060721,
-          4.695510497257327,
-          2.3711691812864943,
-          6.478931679643429,
-          5.219346772367385,
-          4.925940776968154,
-          3.6382529231021343,
-          5.842674480556379,
-          5.74475299597214,
-          4.94264214998716,
-          3.5334184049618713,
-          4.662243993671654,
-          4.304552394025945,
-          5.994223315598385,
-          6.012763981553375,
-          5.478359612841119,
-          4.251230861871424,
-          6.5235145724561185,
-          7.418070347201457,
-          4.48416641987414,
-          5.161718567555273,
-          5.162240816803678,
-          3.369634837030648,
-          6.083830347806966,
-          2.6598599347179555,
-          6.240722933657081,
-          2.3975372390839516,
-          5.0554328844489405,
-          4.899644847870496,
-          7.098905674379672,
-          3.7063578086339675,
-          4.154869015101447,
-          3.7265296228927176,
-          5.710760767982882,
-          4.632625332100891,
-          3.4306468397684764,
-          4.644752851723521,
-          4.190149464188592,
-          3.5892156920666736,
-          3.1740953839569537,
-          3.1600837440151146,
-          5.388030455654825,
-          6.888876027168225,
-          7.758557119167025,
-          4.210268834954884,
-          8.352385916981607,
-          4.010908617322638,
-          5.294482695645264,
-          4.1234395978347695,
-          5.030414101445569,
-          7.444974254988506,
-          5.790659167047141,
-          5.013034432565297,
-          6.797611116859791,
-          4.4986593167711515,
-          3.8161725461775267,
-          5.860209401278603,
-          6.504919988144594,
-          4.6916343438711,
-          5.9468476220094315,
-          5.465848312711271,
-          5.200427800675681,
-          5.068286655205776,
-          4.710408637140736,
-          3.4247638837369183,
-          3.365654767035291,
-          6.978157194407284,
-          4.484455401616308,
-          5.861753794590589,
-          4.490780511626703,
-          4.85205428749684,
-          5.313380220069814,
-          1.89074821168651,
-          6.354788408482921,
-          7.185124391000792,
-          5.160356697454405,
-          5.980440279306883,
-          7.682805743992921,
-          3.974280104485304,
-          2.460953435516519,
-          5.367543314191483,
-          5.767179402763449,
-          4.541671300569593,
-          4.1132853698485095,
-          4.715358847132167,
-          6.004269397217246,
-          3.85460362595537,
-          8.1471139321067,
-          4.418419825174378,
-          5.961980990517088,
-          4.539379393586023,
-          4.992897400009418,
-          7.272120438470661,
-          2.8000648589255137,
-          4.829013711388264,
-          4.14350834522737,
-          6.621044562918532,
-          4.353470301999679,
-          4.080504056437846,
-          3.662232156178598,
-          2.5945979732626534,
-          8.686423448359108,
-          5.191750910369815,
-          2.8554167838009414,
-          1.9434471625377254,
-          4.4297740640376455,
-          4.9070122096803725,
-          5.419978943291942,
-          4.128506439928827,
-          3.645785980431071,
-          6.411936546284032,
-          3.9241714965640235,
-          5.102217866160788,
-          4.769261521781581,
-          6.028865151930062,
-          3.2858931042879647,
-          7.232219579790054,
-          7.415012086052812,
-          5.30318847835915,
-          4.285629850940992,
-          4.8651819523428745,
-          4.356782222960631,
-          4.731684729337198,
-          7.546722456720857,
-          6.758909310549408,
-          8.064225171031666,
-          3.687686166567012,
-          6.087032521425483,
-          5.5085109329166535,
-          3.8068984441308356,
-          6.015386993055763,
-          5.870748382347007,
-          5.915526979679661,
-          6.033346671209506,
-          4.696651463522932,
-          4.197797873550278,
-          3.668224059962969,
-          7.333912522151866,
-          5.174310363888903,
-          5.8683110304280195,
-          8.709250001076942,
-          5.578975344174017,
-          4.671169443085699
+          -1.9050153866720034,
+          -1.6224991689364172,
+          2.229538384192111,
+          -4.232240786928177,
+          -3.06492054975491,
+          -2.0713118543585747,
+          -3.600746081145892,
+          -0.060692434895127434,
+          -3.899324876867506,
+          -2.373293392459642,
+          4.754415470177859,
+          -2.0705378199184405,
+          4.479625245395381,
+          4.753964938726398,
+          -0.26998834811001693,
+          1.441268216295403,
+          3.0131523207393673,
+          4.560003221548936,
+          2.687377374496963,
+          2.327495706059432,
+          1.8498817566807233,
+          2.8195591920794847,
+          -4.221190369750035,
+          -2.193335954944688,
+          -1.3347576353942792,
+          -3.423847020016334,
+          0.1352741519247651,
+          -1.6374521413985992,
+          4.86578477526467,
+          -0.8726234099962733,
+          4.1749149876088385,
+          -1.0074476561160366,
+          0.9032859000533318,
+          -2.0851090263814904,
+          -3.3647170703603484,
+          -3.9452112000508137,
+          3.6979899700991776,
+          1.065303741363934,
+          0.465880841646773,
+          -1.045031829081092,
+          3.9360816397494247,
+          0.09322462468573534,
+          1.1530883384801394,
+          3.589596672028069,
+          -3.667513501542653,
+          -0.5246613992572793,
+          -1.2376200077655146,
+          1.7395529220993602,
+          0.6726579155139483,
+          -3.957757264792942,
+          -4.30453241418569,
+          -3.8002166782612714,
+          -1.4960646130538864,
+          -4.291032478645067,
+          -2.233805610578901,
+          3.528616333519283,
+          -1.3012877685743884,
+          -2.627852731864345,
+          3.1433186360831584,
+          -0.6743868863341596,
+          -3.580280895786802,
+          -2.7598125945441114,
+          4.486937315303443,
+          1.2493260788040645,
+          2.703027495369538,
+          0.3937935006086093,
+          3.335476955939309,
+          -0.041753644884223284,
+          2.4258229007380354,
+          3.146802910558624,
+          -1.2060495214184486,
+          2.169050461087849,
+          4.439563241723532,
+          -2.7993836385153843,
+          -0.7560054460385568,
+          -4.19922102970879,
+          -0.2638445179517772,
+          3.239658363381375,
+          -3.8275980784527937,
+          3.6598600000690444,
+          0.7983382431438582,
+          3.6843754727718716,
+          -1.6267367350505437,
+          3.0508797224366395,
+          0.9741187451114088,
+          -4.192400022248368,
+          0.762807025980103,
+          -1.0458802046947788,
+          2.4601499735376393,
+          2.931578896926168,
+          2.0238572359838987,
+          -0.852339349262293,
+          1.8949250449161337,
+          -0.44228917634928466,
+          -1.739308780274007,
+          4.746809681466777,
+          -2.648619710157139,
+          -0.5783132545360683,
+          -0.40171356189321017,
+          -1.8646566379369816,
+          -1.825348487319526,
+          4.637573840924761,
+          -3.6067990766588958,
+          -3.4546130620038737,
+          1.6828099841915867,
+          4.605056623545405,
+          2.219461074273571,
+          -1.8016897173431627,
+          4.436267738890772,
+          4.417825698279497,
+          -2.433793711342372,
+          1.9746285053411867,
+          1.0773410002644468,
+          4.53641746721712,
+          -2.5639011680428068,
+          -3.3638915015864113,
+          -3.4494566275853114,
+          -0.2974548240578301,
+          2.3747361260627455,
+          1.3576977049745134,
+          2.2879940465192306,
+          3.796777007335809,
+          -2.0114565781377367,
+          -2.0189949853924825,
+          2.460467801777323,
+          -3.555413893060072,
+          3.128516761940129,
+          0.720293226361024,
+          2.5541614057838737,
+          -3.6725810833311625,
+          1.0914010432359973,
+          -0.9028618517527995,
+          2.9650675975725855,
+          -2.011388732817765,
+          -0.21875029249157762,
+          -3.7136885006351377,
+          -0.20606512084414685,
+          0.33600314795491926,
+          4.255093562109316,
+          -0.5222703004709817,
+          -2.8320957779735036,
+          -2.5906196835724207,
+          3.211937586887543,
+          -1.6346591817444427,
+          0.45025241642539626,
+          -1.0382110144657117,
+          -1.4628535601983792,
+          -1.2879242860834124,
+          4.3844453712279545,
+          -0.6786750850084844,
+          -2.5147604766075187,
+          3.4315159987684556,
+          -0.2495405457023816,
+          1.9149255528187146,
+          -2.1848291200987293,
+          -4.286247049491075,
+          0.4495848018382942,
+          -4.128027844659832,
+          -2.074602872186974,
+          -2.2516448334669312,
+          -2.0393757632946596,
+          -2.1423106006435186,
+          1.3854770593790962,
+          -0.34432590656132156,
+          2.1780637412468273,
+          -0.5011547331905306,
+          0.6118099389115184,
+          -3.2225314490136974,
+          2.0850678497600494,
+          3.9648558091084425,
+          -0.4336307783158966,
+          -3.667159762665662,
+          1.4974324971008262,
+          -4.212508792883427,
+          3.414983266426776,
+          0.17409315846489637,
+          -0.13797711831126147,
+          3.8437698768879525,
+          -0.7239582732384409,
+          -2.4260372436876994,
+          -0.7093812350481019,
+          -3.6900677360566103,
+          -0.8380482256784294,
+          4.902044709408507,
+          -2.2724182109344153,
+          -3.670227129249584,
+          2.368180303988588,
+          -4.227420476894119,
+          0.1638883319457527,
+          2.830478357248529,
+          2.7723629139054022,
+          2.6360138872198737,
+          -3.0090657924707287,
+          2.5483604412632923,
+          3.9162432445670543,
+          2.7003503694229742,
+          3.904410679550292,
+          -2.8599374115439185,
+          -1.803107448574992,
+          -2.074937222461246
          ]
         }
        ],
@@ -7906,20 +5457,20 @@
        "<div>\n",
        "        \n",
        "        \n",
-       "            <div id=\"3a0da9e8-105b-41f1-a930-411757d94880\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div>\n",
+       "            <div id=\"1a9ab042-7be8-40f2-a456-9deb3c302edf\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div>\n",
        "            <script type=\"text/javascript\">\n",
        "                require([\"plotly\"], function(Plotly) {\n",
        "                    window.PLOTLYENV=window.PLOTLYENV || {};\n",
        "                    \n",
-       "                if (document.getElementById(\"3a0da9e8-105b-41f1-a930-411757d94880\")) {\n",
+       "                if (document.getElementById(\"1a9ab042-7be8-40f2-a456-9deb3c302edf\")) {\n",
        "                    Plotly.newPlot(\n",
-       "                        '3a0da9e8-105b-41f1-a930-411757d94880',\n",
-       "                        [{\"marker\": {\"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 1\", \"type\": \"scatter3d\", \"x\": [-0.34792641968871973, -0.8240498844522224, -1.556461608266853, -0.4671263134717295, -2.393770489060973, 2.013927623946378, 1.1362252354806193, -1.0815075983836968, -3.5282390649265007, 1.228287480512097, -4.171529291144364, 0.45276785847419626, -2.9691636716253758, 1.0091896512034002, 2.0575072584468077, 0.9606032258820044, -3.1909783913703533, -3.3105353099107973, -2.192454189885409, 0.6273209851697497, 0.8127175872886487, -1.594302329658163, -2.4648970306569735, -2.2826277758006035, -3.9762809592552637, 0.8597338986988097, -4.3419240446949345, -0.17105311855387717, -3.681235180004292, -1.4330496602947025, -2.443217533239207, -1.541605528737633, 0.8812592038857424, -1.105042715782181, -1.413979818317872, -2.1149961108896833, 1.2919244812448136, -1.175608163923911, -2.8233375916415206, 2.377161578719815, 1.112228254775054, 3.015350247046616, 0.02376684569507881, 0.9525459509545426, -2.3586364000411546, -1.9876409746216, 0.7708076008405743, -0.09908574955436678, 1.8131729803859575, -1.0563514814050623, 0.1995557164764249, -2.7932343479055466, -1.4954429165984142, 0.4915951038474565, 0.761233477266233, -5.051536348787668, 2.157149718066758, -2.127845816048836, 1.8573033793845366, 2.0338264626874336, -2.033111091927868, -2.175602129478, 0.5163430387251842, -1.1229714672987048, -2.0859878446698783, -3.0013535260088657, -1.8780188400241737, 0.8482214712133602, -2.93756804350029, -0.6001315178899261, -1.1254068742938812, 1.8548420375756531, 0.6831625839796875, -2.7212007301736567, -1.38492273328497, 1.2831063631818465, -0.14859534627065984, -1.8794182400909292, 1.8987478217768161, -1.098773874869743, -0.1944242510483063, -1.71851375615495, 1.1275621631772201, -3.5635184735637013, -1.6228855959091733, -2.9592588554330836, -4.187994946552468, -0.11466285681204902, -1.1627311358270165, 1.0121870268586544, 0.6979029689177927, -0.10325614600831112, -1.9277975519246289, 1.3653546500892344, -0.5665269227044841, -2.5319664446351635, -0.5512285575273759, 1.2191019105268972, 1.0413263706115952, -2.108150827594623, 0.6338017193732699, 1.8233826445061962, 1.4381977817649916, 0.2621718241137436, 1.759940092742072, -6.3201249451589, -2.593387650020262, -2.8911550299955135, 0.36618388897931153, -1.8997561656672417, 0.8635612132956577, -2.178229295799827, 1.158504918211528, -2.890862676234164, 1.1761642422022862, -3.7971195041085632, -1.1664137319415029, -1.6712474492333076, -0.2088519128872539, 1.6816759340788021, -2.490538984557037, -1.7659331965459164, 0.15515064463212103, 1.7326414241383201, -2.396629047309817, -2.4946929945056304, -2.138094762695002, -0.3007740672597299, -2.575515032298784, 1.23810615509509, -0.2532695648525799, -2.3910218630103577, 1.2459976037303466, -0.23024881433689348, 1.1544561751978077, -3.0424390102935726, -0.023243595438057985, 1.0627682743966969, -2.168899715524881, 0.9227109142198078, 0.1819412205178751, 0.04164716501289467, 2.089807174387988, -0.028247389389840616, -1.8506062564714598, -1.8253321736444668, 1.2612805542046048, 0.34789931720412237, -2.8767938003548794, 1.9555414870741288, -0.4174204694476622, 1.3980733452864023, 2.4732198095463622, 0.016396988625299702, -2.7501463645713415, -4.565155308507467, -0.18941511094803343, -4.307413009794647, 0.4836174264370653, -2.422082228154611, 1.4361342557065107, 0.30361653459543814, -4.529545880667726, 0.8465806256421277, -1.900777154178917, -3.739611916633055, -3.402602583149779, 1.6611683256424676, 1.4346021476688775, 0.4620691983769201, 0.7010004870984972, -3.028357560935517, 0.5320922848162064, -0.1405388380411582, 0.5096273361659744, -1.2228615251070822, 0.5276090829347504, -3.0397195951292373, 0.39777598846557893, -0.7291486523031538, -4.08746327583986, -2.793895925140597, -4.670248020545804, 0.6928642228874644, -1.6496544399455524, -2.6398854163891152, -1.7964107366276627, -5.213740883141014, 0.9556417598150093, -2.847598221213045, -2.3035882112904527, -1.9000147131705143, -1.6077594933041488, -1.6093139185163525, 0.1555311340626352, 1.235394875727635, 1.47417195912248, -2.4750359071282486, -1.8602023250603812, 0.7739280606394299, 3.1839119862251737, 0.363594741587278, 1.4515360003678364, 1.1810383779804192, -3.2000682361968433, -1.5978666542676736, 0.7773958389694356, 0.3315919870353652, 1.0470677671416346, -3.2919455063016807, 0.3421882039967141, -0.6468159267474113, -2.9242592308642115, -2.026613391644413, 2.068201910417297, -2.4035369701890303, -1.0023749951465268, 0.5192936665129625, -0.8708435116082418, 1.0624522524587932, -3.337476599787117, 1.8769205945486416, 1.6371256103206597, 0.2820053744131841, 3.3965845469197937, -2.1289230815595874, 0.354899206241563, -0.19011573089000022, 2.0702035489943613, -1.0751393420109778, 0.734027309292405, -1.8792052286727254, 1.008088460088943, -0.6871019132356533, -3.1338263233406067, -1.436642230828995, -2.1287618095481258, 1.178139234249378, 1.029318458720537, -2.0383087573672736, 0.11868909594227817, -1.8397017994786062, 0.7470455814050356, -5.282425865983399, 1.2344053806485686, 2.125787280843533, -2.9215408443938924, 0.5669882901791483, 0.11900512752047865, 1.832460936146233], \"y\": [-0.08505145704322117, -0.4009006563990698, 1.4403418395826715, -0.505966870146413, 0.9114122505065261, 0.44601699663536437, 0.07264866234317188, 0.03326986272542751, -0.40889471674000233, -0.14742581248687675, -0.43207242511384114, -0.016400389267173902, -0.8271972499917768, -0.41452921316862634, 0.32499520992291325, -0.46335188588583515, 0.12986207089926685, -0.14589446899815328, 1.1199967872026426, 0.21337509168807192, -0.25614914480430534, 0.21184227206949371, -1.0256147735782009, -0.6432535929138251, -0.8644938979814828, -0.20187118080128513, -2.1512042811015477, -0.7269962410111068, 0.23444227174383528, -0.5728507936657592, -0.13020132156786413, -1.0197666516779254, -0.04331521067971709, 1.0988731253052777, 0.08425517852984593, 0.678752016375969, 0.0094512835405006, -0.7251105334492255, -0.6646467080387186, 0.7158353691619166, 0.543933647142527, 0.7283965152844547, -0.11895657180046115, -0.4077043613407033, 0.17871863177368255, 0.5059249751178369, -0.09086047718124429, -0.9838023485970516, 0.2976853949692681, 0.5734854325863045, 0.2264876748462855, -1.18457716526994, 0.4939542656520911, 0.5174299962703014, -0.45152399528789805, -1.17556484188204, 0.45109899989094476, -0.3922682430470339, -0.20788163966180428, 0.728114227848007, -0.7104458220258689, 1.1679132540166963, -0.5269635018991591, -0.41607814820657474, 1.3303656643461805, 0.2738139832654142, 1.1976016651573935, 0.0337151562453448, -1.2399725719315002, -0.6074322874957849, -1.6634115532875606, 1.2179760143964857, 1.1133045476005374, -0.47724865627043556, 0.14078308372272336, 0.2955348221068067, 0.006302545030119407, -0.3623927324706978, 0.0226719244318805, 0.06032380454268571, 1.0410824552665985, 1.5941417777332196, 0.5953824913290378, -0.0336098905591341, 0.3553004714021776, 0.6508738128052094, -0.5695003408887276, -0.8875839716546443, -0.1266870814977088, -0.6185453993965172, -0.3285834654004492, -0.6385470657947565, 0.048215200469368724, -0.06385116488502608, -1.0814043821797497, -0.5107306298771518, 1.4178710045386635, -0.021618928181215517, 0.18936914686144338, -0.15264271372680777, 0.11742375445669273, 0.21548541186207926, 0.38421797272122354, -0.6480626548346067, -0.0986435048233685, -0.7733942720331608, -0.969485770271072, -0.1366158729947488, -0.09917822984066998, -0.23058250255357612, 0.7677667995505625, 0.4043734092846184, -0.2273776885087842, -0.677173366793935, 0.5631990087563225, -0.6745261694045124, -0.4453139808208859, -0.18639811182504562, 0.7593554303024738, 0.2589889348569638, 0.23566882437723927, 0.7195062671581149, -0.21442590682030316, 0.9969245378123613, -0.3696821555494634, -0.644647045534819, 0.26192233684405963, 0.9420447096051228, 0.4492751680860325, -0.24500683951959756, -0.16490547763532942, 1.1222077833366837, 0.053816293439987485, 0.8932621938748935, -0.26510129457246623, -0.2436626265838181, -0.5538450827153942, 0.4022936139145825, 0.5394230021362086, 0.11187803499268867, -0.645251979666297, 0.0481674207406817, 1.7604551828709043, -0.10154731058125263, 0.3217696742352204, 1.2754435273737765, -0.3652460894419845, -0.48309388308816564, 0.6579551521837409, 0.40271734739297865, 0.8318226299920702, -0.09765635196472719, 0.9252576269344682, 0.2193194920705826, 0.5300336399363703, -1.8004870693984358, -0.22406885263977888, -0.5432872513415546, -0.19621337926497676, -0.7865987862275122, -0.056496644818150345, -0.3178442279806722, -1.4540800465369028, -0.7189586947999841, -0.9813175916928067, 0.8586286158799645, -0.14472484906560257, -0.009035969267220383, -0.23322385263987377, -0.7163143446039488, 0.5760368661606139, -1.1811478061792533, 0.5043819614250178, -0.6815975368664038, -0.916485851079988, 0.7476215532191769, -0.3511816352950926, 0.03582774016243159, 0.03285956924585267, 0.6867123795384976, -0.7062678487041727, 0.44804204928518876, -1.407516925803135, 0.19649751112588582, 0.20882753050289002, 0.37648851602077604, 0.06363806930781093, -1.6207083281221317, 0.025211591611417984, -0.11707074081851143, 0.10872213121644483, -1.2405826191019869, 0.7087772930131678, 1.1580278990934645, -0.6597880946298486, -0.8970313153538362, 0.2396720000283572, 0.9777610327811403, 0.24639041150767435, -0.15889044386837006, 0.5181686936245828, -0.155983292607172, -0.5311660020780591, 0.6078549549837446, -0.536625289063813, 0.30732444071908693, 0.08299296692978209, -0.2623679571304375, 0.2808424878560479, 0.33229552964038345, -0.5757672470568167, -0.6401324714013095, -1.8578745252265236, -0.7268274288893594, 0.07745269342890876, 0.041172288561821785, 1.5656640924611749, -0.25539558393713935, 0.5284741301195718, 0.7767991959707945, -0.6633016418314934, 0.41394365441262315, 0.5147960858499734, -0.1874682051828977, 0.923791884176889, 1.1892725138227571, -0.1785399841398621, -0.9981413886461803, 1.2745120310476317, -1.032394743452114, -0.36438238086480496, 0.5108365651043655, -0.13584069895531908, 1.2753374465272618, -0.8344596355657878, -0.31511550278697553, 0.6586971725969354, 0.5746107977104168, -0.006704754908207773, 0.5432646443132191, 0.021713978339495087, 1.5447521540941345, 0.19032457742248507, -1.0447312741555668, 0.418278635123134, 0.4676832803391784, -1.1296417476996057, -0.10050158309630919, 0.24471858725142862, 1.026511330143647], \"z\": [-1.848356195357791, -2.594511326152964, -1.7667955625007583, -2.3195461167866807, -2.3213404317882964, -0.11755682960420222, -1.0644409613544943, -0.8803008635287102, -3.706813633031244, -0.4676013016998455, -2.590369872213149, -1.8876028953115278, -2.736208717795467, -0.38953644317492264, 0.04077006099830638, -0.5506400364725336, -3.3025607230274447, -2.2293014134380615, -1.1836526773203109, -1.8082222028494306, -1.0443073119960562, -1.8508069034261538, -3.3916797587189014, -2.106122710552588, -3.5400114677708414, -1.1164211902655037, -3.294857871976838, -1.7069408511963502, -2.6271195496582296, -2.2350141691733807, -3.1210762246487422, -3.1454482842724736, -1.4420754647999607, -1.260112640907787, -2.4078999069920775, -0.7202540356208644, -0.5221798370626753, -2.096494913080295, -2.8619476122137146, 0.11008261764408811, -1.4161502725697268, 0.5243856292237699, -2.1045774665238373, -0.8055812765354681, -2.9721043752369307, -2.9470221682413538, -1.3129269917176025, -1.4310004594908103, -0.5538581480917513, -2.2961453095446798, -2.443754162762467, -3.0676761484010506, -2.8323592199717815, -2.391939650909489, -0.8182983078445631, -1.8251073112055483, 0.05252795428799617, -2.459930364082085, 0.2277725617183204, -0.36417525638011283, -3.6530307477766417, -2.159309855729826, -1.157183856865866, -2.689245037465977, -1.91656628708217, -2.205277598188338, -1.5452207349588374, -1.3806301419538813, -3.9984223816080506, -2.3501545129095125, -2.0338643977680992, -1.3668750529960494, -0.9971836724358234, -3.0976925549439165, -2.850838475916311, -1.0026618295353946, -2.7167231695882776, -2.8566490295106597, 0.3355691954911939, -1.6437012293821356, -2.011380432490246, -1.9255742601887926, -1.5276380558412956, -2.8172935565621877, -1.7849356551228457, -2.1808085005634306, -2.7586655916800376, -1.5706050916067447, -1.8218237653414855, -0.37321498888019466, -1.0531068572448345, -2.041147945667241, -2.15839968546184, -0.29635964205497745, -2.069773884677097, -1.3537912410206694, -1.3876621664168156, -0.6665871187093337, -1.4476754437807497, -1.4363344237103637, -1.6724242837058212, -0.13403766932338934, -0.8894883485145431, -1.1840854636908373, 0.08066390058508643, -3.5819073980241334, -3.0242555584072344, -3.1627550331831165, -1.8273696029747875, -2.0188018774496985, -2.2776505020188575, -0.3698635129337924, -0.6881692396203543, -5.032866709076771, -1.4701353938785717, -4.142999484564045, -3.63463819823488, -1.6449030388400756, -3.0285060626871134, -0.2231162715030246, -1.9386552502742198, -1.806897705642115, -2.030514722000558, -1.1686754941807878, -1.7635914504536334, -2.782479531667527, -3.025794642591862, -1.7144315997564732, -1.7534017706906773, -0.40291392149025496, -2.297556477298794, -3.5369108716764575, -0.68750441294501, -2.170792577975149, -0.539047228593373, -3.1478143209647453, -1.9313193886680802, -1.6683368935319314, -3.1557854947427595, -1.3218574056612467, -1.2450975757623244, -2.524655740549534, -1.7232309558465388, -2.036449968215142, -2.3589425935876402, -3.098963430161955, -0.32272327824603997, -1.35430037897094, -3.252124037597046, -0.2595809824076254, -3.2335280087093965, -0.5841088970104346, -0.20018483149188127, -2.5695722148055546, -2.478620123925064, -2.1262812204952017, -2.220765924087972, -2.052305279148417, -1.5040795933232118, -2.776790769364776, -0.25426306042057223, -1.6201290800031187, -3.44825126884037, -0.5915386134450445, -2.8599133910698797, -2.7681434422318807, -1.561321859693824, -0.1032410012107341, -0.1294533834863859, -0.9867108872604864, -2.0879317461259124, -2.8471716570306302, -2.334062296436195, -1.8024261096523841, -0.7684200831846237, -1.8081751491079006, -1.2380173284655105, -2.4488792912613806, -1.6473526096251345, -1.6132620636599275, -3.358347517183463, -1.7733220228619069, -3.3321285716823867, -1.721770649689914, -3.603513528385567, -2.017533090129391, -3.396208562654741, -5.118780388096003, -1.2172910543474407, -5.067204766383565, -2.968081712701547, -3.221931469585802, -0.9655921055672125, -1.9730007671420138, -1.2579979381475639, 0.482564543810148, -0.8451761552366641, -1.2986857136174998, -3.5375405740263535, -1.0393607935851887, 1.2245461205251371, -1.6889933065785727, 0.2614852115585431, -1.2391677834579942, -2.830574362433984, -2.5022959835591463, -1.3912782212538921, -1.5995048508263832, -1.3923395692737195, -2.3091120755516346, -1.422796876328498, -2.3765079759352274, -3.224416146249977, -2.2277410431349924, 0.38591996436551934, -1.9969553326745997, -2.1852514110409595, -1.4769639334620477, -1.2887906181444833, -1.9283083367838612, -2.9037019342344568, -0.20330286921779117, -0.9149666352168876, -2.038775796068451, 1.032554640159319, -3.912255997742758, -1.5880897526250677, -1.6255873249612467, -1.0012192836005722, -2.5215769661432423, -1.131236640219403, -2.3603442191971498, -1.0201430561437725, -1.6793900641622863, -2.9970675241100757, -2.2007493747209796, -0.7832810479986687, -1.5513613602807903, -0.9671889061950623, -2.9807013270507134, -2.1789192368329924, -1.748357223615638, -1.8826154934046424, -4.016019306093127, -1.1308673938779539, -0.18178442537953865, -3.2466209625043794, -1.5298318887270557, -1.9371220109456686, -1.2509765436504887]}, {\"marker\": {\"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 2\", \"type\": \"scatter3d\", \"x\": [-3.5821256707149325, -5.48417603888446, -5.763145441918061, -0.359786509492271, 0.9411662485725654, -6.18195118903344, -1.5970670875822726, -6.170348117793454, -6.261050490452274, -0.8374768237838437, 1.0909498597087453, -6.484831409135996, -6.845001277624192, 2.216730967563807, 1.2281215988249754, 2.3687065324048726, -6.8894459888960675, 1.1804555286039522, 0.5451294913182972, -4.343454060069454, 0.5146986478571578, -4.61979663693855, 0.913933541932594, -0.3098813085309007, -6.044843060708564, 1.6312225185075204, 0.459087758018308, -6.157657413803925, -5.045086178318183, 1.3086605458642733, 2.204476798984124, 1.2390990882862118, 1.5331232802219705, -0.8803508213933207, 1.3085100567592711, 0.893263154069053, -4.729181287165388, -0.12096567144037018, 1.06217489134156, -5.911323659323363, -6.050235863374169, -6.4766235502204825, 1.967499456843556, 1.0790521204294965, 1.4774239263135875, -6.6557321607596975, 1.4325350940604804, 0.9659560973890801, 1.1118135160427176, 1.1259385393262793, -4.601739829125787, 1.696450722263422, -4.861491758036425, -5.690725277252363, -4.03316924871807, -5.464980832299861, -5.790650937516922, -5.304158591697029, 0.4049342369270652, -7.174253404134257, 0.4466280195019795, -3.874214534614554, 0.14845907333872932, -5.813601955109854, 1.440099978130081, -7.683726922070027, 1.8771215047392458, 1.6681909573445104, -5.815674659550743, -5.490783009457616, -0.2715305603112228, -7.2568521095279035, -0.9353290172538218, 0.9180598108938911, -5.488629998459354, -0.1526483525354536, 0.18653625827262654, 1.095691937680625, 1.0731805311285039, 0.9771894687801614, -6.531072412589252, -0.26676357667110784, 0.9718306371365858, -5.855237753077984, 1.486985955806999, -4.947230726015291, -4.981459946976356, -5.288782628674925, 0.6150982808488136, -5.427188325425442, 0.2026293506394513, 0.6144592065043386, 1.189342763724897, -6.036603613506772, -5.525112002780858, 0.19347029239833424, -4.998673962125862, -6.6934847536713145, -5.219300219196787, -5.750122109473006, -0.23072979118161951, -6.26773746884613, 0.44569133839887365, 0.18177581440305368, -6.496672034779478, 0.9652179813591244, 0.2879511165571438, 0.9602231283635301, -3.4529253658059815, 0.3245127911728679, -6.01748087407831, 0.8447194439605967, 0.6060405628859546, 0.7934202038302749, -5.819331912002037, 0.6778400173969943, -5.091986791409294, -7.38139982422633, -5.277739812912942, -5.253473824621125, 1.7984357632372037, 0.7369403303068783, 0.707959957304032, -4.669924968171264, -3.6351031550507558, -5.6068752928779615, 1.122244346559452, -6.9578970547534364, 0.13570908289848482, -7.381413444878327, -5.711287656041461, -0.29564748452259626, -5.981740999140893, -5.406868080645623, 1.6541243541548138, 1.1511819056842496, -6.708792564136661, -4.886122990479256, 2.088096063822639, -6.557504134291493, -5.509971325566283, 0.5267981793740872, -5.080295580122149, -6.475093061303928, 0.6490108266161179, 0.14073337103625494, 0.47821184667318933, -5.145533406260762, 1.4422426465170917, -5.361475511598453, 0.47052452358164987, -4.661840685923348, -6.856888016377499, -6.224621279719793, 0.12998631707301989, -6.222860231970748, 1.4343425151586762, -6.420302915358386, -5.4379693107307245, -7.281572830533366, 0.4191402993004443, 0.355754216492703, -0.13404893384730987, -5.738590351855155, -6.333624104109577, 1.76793758697153, 0.22238627257185972, 0.4034944779899515, -5.687029143127639, -6.631366877974117, -3.093757689205227, -4.359977308686734, -5.535953304634253, -6.074829908962666, 1.0207728763976531, 0.4949758099922689, -5.408746145531409, -4.481101414446394, -0.8254866716031042, -5.534878839461578, -3.4520994866873536, 0.7262951150035726, 0.24494853443119402, -6.175912744263638, 1.2113584628728225, -6.532128620085428, 0.09830093813554241, 0.8208907316292811, -6.2990563245653695, -6.450313798119887, 1.52412109286174, -6.001586649801234, -5.15567383839222, 1.859777666330265, 2.0891631992045845, 0.09307611459462706, 2.657696711828943, 0.3321780039001436, -6.776165222639171, -6.796355414459271, -5.863940821869738, 1.2118221568598826, 0.7673084069866998, 2.057285256139618, -5.996495546386489, 0.19006175372817036, 1.862785922111084, -6.156226910136733, -6.508476082095421, 1.9629399638485994, 0.3395511712760637, -4.416159823624741, -5.547488325904841, -5.804989360737011, -6.374090683278469, 1.2781078754022175, -6.152996195958903, 1.871257483718529, -5.68058833887053, 2.1596680439459375, 1.638047518150985, 0.5885062115550626, 2.101352581941897, 0.650286972497839, -6.45537861855272, 0.6078022081370311, -7.418004144548355, -5.759190007733289, -6.263360915424422, -5.776442983593808, -7.308325996136174, -5.6129685208906945, -4.243423310638127, -5.404025656645956, -5.910731445818605, -5.168799269280383, 0.2779022242392216, 0.7727019561395616, 0.9257067221686859, 1.951274448121386, 0.6301399136529069, -5.302759900697495, -4.933160074077146, 1.1210086253781768, 0.01448040357929492, -4.321355934047547, 0.47909961949129004, -4.5293991489537095, -4.7373906711493055, -5.6569737489744885], \"y\": [-0.1851010335105022, -0.44997926484877915, 0.8462568874361572, -0.5702979657443344, -0.8997634179453157, 0.19665113132344264, -1.7661171863190734, 0.13884693450381624, 1.638031944197936, 0.5354124891398271, 1.3207963986536604, 0.4541451324326544, 0.10674367821552593, -0.935744676372114, 1.0011492756253695, 0.404232412688072, 0.03616300587001747, -2.942889433214271, 2.1791730187775107, -0.9561368362496213, 0.9410663585780349, 1.1236827663801008, -0.6858031104045819, 0.8121641958912283, 1.657127575663453, -0.676439887030643, 0.3855782436631235, 0.23471562404068855, -1.251620560883009, 0.3577931103076716, 1.517746343178458, -0.12483953552584723, 1.7732860165015958, -0.7209135604516687, 1.7731310512585252, -0.11123972576842975, 0.06406043584085205, 0.9853484488262404, 0.6063126879142743, 0.8947102666337122, 0.2821478104766252, -0.6522231882906103, 0.8394818048953459, 0.7857043266684467, -1.2357203791557696, -0.6056545723563699, -2.693829391165413, -0.726501102571045, -0.8009193283318071, 1.6768170644014218, -0.2759715791631887, 1.6586124689250181, 1.54469954388428, 2.0555472273771347, -0.3368396488755657, 0.7785801687487333, -0.7493397592983907, 0.6857616554498596, 0.4422424586675113, 0.5764173027304872, 0.9524357769805998, -0.7182175949669013, -0.7806665674364703, -0.21872146030029302, -0.3539097108903698, -0.3987206357770158, 0.13935653346124502, 0.017776358776067216, -0.15716794803591547, 1.3312904814339308, -1.627405164182807, 0.775009874890014, 0.44862500958699775, -2.294117418866495, 0.22632109094865235, 0.93621645406836, 0.3694905346454995, 1.9086162355547924, 0.46700155097856855, -0.43733769203916145, -0.4769027742901937, 1.1050986162438563, 1.0973454522321844, 0.07238365834265464, 0.5345940221349781, -0.9373995177248856, 1.0414628137875213, 0.22098267471760905, 0.9165334522462995, 0.7985628346053906, -1.5630762710350998, 1.5201708826087876, 1.4288990017460486, -0.24739556417972183, -0.4384906195189612, 0.29405358301378537, -0.9490309914092477, 1.8648546951910403, 0.8907204839508781, 1.950691753676567, 0.37855438585548334, 1.1273200821232348, -1.314621149918238, -0.21425045647947655, 1.580353878101921, 0.40104804293005214, -0.47724705251191035, 0.6338875765832436, -0.07328300306146204, 0.7262464567350859, 0.4046754636869774, -2.390368234353621, -0.6387745417744715, -1.6788769271421242, 0.6541638343017058, 0.7981801353214294, 0.28895747644117425, 0.0718217093014513, 0.3784782779523978, -0.394610328177847, 0.8737270592309622, -0.42870014919746585, -1.5591891100351885, -0.11911346720685315, -1.1430646126643118, 1.7275858938340676, -1.5283081126199543, 1.7502657192579298, 0.10876483359500688, 0.12976304468261685, -0.6459757721484057, -2.2441683575907696, -0.8657803480332568, 0.21356626978799106, 0.7662019934877381, -0.580156254169581, 0.958378775179035, 0.621391224103246, 1.3800952703194431, -0.23877679919697084, 0.814632508766858, 1.2783540938229399, 0.3015482303713587, -0.2951151921979278, 0.20683467661591798, 1.3267541498394468, -1.6412192742453224, 0.2363634892267016, -0.6134805388695774, -0.2495435942310836, 1.9116037842631677, -0.3007473598958872, -1.4481914102241993, -0.3015679128092351, 0.599570808362804, -0.001198093723956628, -1.7286777134561735, 0.17990319618310066, 1.1629352420962948, -0.19284700735402696, 0.08107667561860504, 1.49693677881617, -2.791017458134307, 0.9978308391290464, 0.4560211971982695, 0.20468928060623573, 2.0723310452228154, -1.0422351051209797, 0.46122135703689016, 0.14448720055054143, -0.7187091880807144, 1.7328018730211956, -1.1270611272966888, 0.78565833152308, -1.5305759984642946, 0.047446703900384087, -0.2557576934434024, 0.53071432032263, 1.074180922377514, 1.9550814009068167, -0.9268075237178411, 1.2602566874322694, -0.966683317818959, 0.9471501634412911, 1.891586093708654, 0.9216373625615671, -0.26210141739206394, 1.146932480987707, -0.43991416599118494, 0.5554798476357661, 0.6085394149224242, 0.5455097252254609, -1.0008266675826412, 1.1949302852010457, -0.6705857643882412, 0.7578324844185189, -0.9490475251020509, 1.1761773250780831, 0.08523404405025739, -0.25386502947576794, 0.9404604471630873, 1.3556429218454014, -0.7660578397002277, -1.169180303384226, 0.44163815650498195, -0.776284110790592, -1.089351083653447, 1.3666120461974547, -0.20041747430461435, 1.7350542377471339, 1.4612928498794449, 0.2748892327175765, -0.5527539834669414, 0.49379384943111637, 0.7853717256135498, -0.5034733090740849, 0.057012573599623945, -0.3710671261940251, -0.4102140400473565, 0.09659710651385199, -1.1434152923383651, -0.7970935820683018, -0.8184906873158454, 1.7152556553603682, -1.1640877750355312, 0.9363536226740271, -0.7650302035772062, -0.24902821268903932, -0.8099487694794153, 0.5788808970729098, 1.158624538973286, 0.1606883511543319, 1.5611691769208347, -0.6380845981981331, 0.1094412111041019, 0.8641943426180523, 0.6204844109212673, -1.1859328529901294, 0.19941041013603358, -0.629492938236021, -1.5069677911456258, 0.40612629230130803, 1.0188579272437583, -1.4277584098680571, -1.1473637276421376, -1.428954083645309, -1.864933747021925, 0.8080948083753312, -0.09142259392122168, 0.2781143043530123], \"z\": [-6.6628444627815755, -7.505146748349418, -6.284583437297603, -1.6233213549239287, -0.6938514909852767, -6.747190961997106, -1.717477234154949, -6.580913962387989, -5.293495811921842, -2.3514588952430344, -1.8734803149261336, -6.585296751620625, -7.058069481591142, -0.16110273403499875, -1.4358977305374647, -0.8707469061670895, -7.22658717570139, 0.3679914083239051, -2.059856216135246, -7.620198287771877, -1.6888486310005275, -5.645999716528126, -0.9303806591025632, -2.249881537726159, -5.775032457585459, -0.4625114623612836, -1.4609758511664617, -6.778108031966943, -8.355673859025503, -1.0413603771957733, -1.1094457066068637, -0.9441662833966679, -1.1769732367539538, -1.822253998600471, -1.4508877525420711, -1.0534207545095178, -6.676395926666275, -2.2811118450928767, -1.3091395165804318, -6.186459571647278, -6.9360541983672865, -7.5469756462127195, -0.6982792523980326, -1.1553257784472586, -0.05342074875219782, -7.935887109360973, -0.1646661190094022, -0.8923541887141054, -0.6456550330285752, -1.7533168141901956, -6.68750155550259, -1.4610333121044092, -5.357947598733852, -5.003092999469603, -6.957848328158929, -5.834441557010041, -7.322778911140997, -6.32208895694072, -1.7975873548623928, -6.9412630814579, -1.6953343393905862, -6.790094362433044, -1.255731230073699, -7.277613529379405, -1.0687541990762546, -7.5934233166285185, -0.04836600202914121, -0.569399544684918, -7.222261121348608, -5.282964144434344, -1.3975182506799981, -6.402391890384757, -1.8005561197429558, -0.18224192369009284, -6.5952236858434725, -2.0249219659331796, -1.6643845305478906, -1.738346974199366, -1.4244275674381028, -1.5115432681756074, -7.412711755402374, -2.1163139250515437, -1.0986105242414745, -6.77155317594233, -1.177996824125628, -7.35315432128934, -5.8501561555181265, -6.759898090698065, -1.4909164649028521, -6.305146691429375, -1.0272440292489435, -1.9578247670212383, -1.5076981936570752, -7.361991214757023, -7.443076243815136, -1.520646877961397, -7.221460276687453, -5.587019849107653, -5.666071052202788, -4.8870513570599226, -2.0076679401545294, -6.0187589764241665, -0.8399429015117237, -1.2601528318788506, -5.727167318664025, -1.1283506737389908, -1.2699531457521216, -1.1293089800849287, -6.351396610955594, -1.833023025235693, -6.5623747120965445, -0.1383929620858677, -0.925815207258168, -0.32461646601351, -6.15619623961258, -1.6354601274389426, -6.672767357096552, -7.024704859669944, -6.593284678483394, -7.079290786027932, -1.0813238002571304, -1.1961228803046697, -0.31988250335810353, -6.842454163047941, -7.316658300988012, -5.663569909121014, -0.6083932119991262, -5.629565260888704, -1.566491911981549, -7.100154902464036, -7.00510233076332, -0.7745433791380603, -7.80691152300096, -6.640617066179086, -1.1018597961961971, -1.0740033462498846, -6.660809846415109, -5.756556787402925, -0.7374783431943039, -7.183456704608682, -6.2114017516523115, -1.7407326312084686, -6.641494625442273, -7.401217090731981, -1.428490613634489, -1.9281071235622749, -0.9298229678923364, -6.574700004033299, -0.8614227469346524, -6.7712068676482575, -1.9386950665161495, -7.462912665036766, -8.540849977261276, -7.20713337300132, -2.0467109521800033, -6.72836813102444, -0.33145598499283835, -6.899371600585027, -5.792934369883464, -7.700359579950892, -1.8576167395689183, -2.1387879638330602, -0.6219637907570275, -6.252800932355257, -6.676130086315703, -0.8100990436416898, -2.4191974942423835, -0.7340205511625751, -6.8219128378896245, -7.3944790301612295, -7.0501768600590635, -5.045129134121425, -7.775693967653313, -6.163875414689153, -0.6089333341715051, -1.3584208163626967, -7.279302741711827, -6.448503736815533, -2.428995969611292, -5.24865928831167, -7.3604515854547135, -1.6339322853274478, -1.0493260145393042, -6.05430364260198, -1.588812567627858, -6.4048519782581055, -1.7608570962059398, -1.4805993426985262, -7.208112673830679, -6.629760100400643, -1.077227228900175, -6.7139412594929135, -7.76996353921928, -0.4104539852120397, 0.2161091178885588, -1.7078961867844513, 0.36703881457506027, -1.961060234727298, -6.737169009851698, -7.09011526914798, -6.136988858757936, -1.2803130410574772, -1.2419690849493192, -0.26508840524366273, -6.518719525050047, -1.3561201742710935, -0.010684576107344412, -6.0860683263899436, -7.16371327005361, -0.9972309849606498, -2.1614173288969196, -6.325170636725273, -7.489706619060504, -6.167693109937555, -6.287092877103153, -0.8665449600220898, -7.0212372587905705, -0.032502351166620924, -7.004405364107178, -0.4528179317771104, -0.11672554949231961, -0.8029404458288032, 0.009298799979313488, -1.9430438674157449, -8.444422661649773, -1.6179349214505776, -8.003147005589181, -7.357691948028015, -8.045932721898975, -6.686249494286939, -5.844795802607372, -6.9894222295925434, -5.274081805353582, -7.6404795956072045, -6.865467521105747, -5.9036745767430086, -2.1274160933330735, -0.38003161008518804, -1.1897894169030716, -0.5042921222380563, -1.2195303436855849, -6.5530580841904715, -6.138740334990883, -0.2078742596980373, -1.1590962027891252, -8.12330220476033, -0.6306207589569526, -6.07826700337019, -6.67563543240574, -6.608192218731445]}, {\"marker\": {\"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 3\", \"type\": \"scatter3d\", \"x\": [-3.0796544767795924, 0.6334310108194852, 0.6920705900814179, -5.991562050109129, -0.13032809159912095, -3.351768727639815, -5.799569601847007, -3.4109419492638176, 0.09024257805376457, 1.0360294739908955, -4.250121048325509, 0.8836241592778077, 0.8549644333776037, 0.21111313448155813, -5.30561942055581, -0.1341613258594847, -3.4641111217368796, -0.7048224838402521, -5.484606587318898, -0.9862933469492592, -3.169021617623882, 0.97338077235086, -3.6207472099419205, 0.33613023408603676, -0.3588364898171613, 0.9318594237814314, -3.6444880926804677, -5.699383149836293, 0.5446864202346943, -2.8736562849991025, -4.87200591115341, 0.5443586010729764, 1.1707587292600252, -0.6772213190213046, 0.9801259847524082, 0.5493479764252598, 0.31533611282747487, -0.6755712053375562, -4.312901860024165, -3.4614815928498546, -5.190662805707967, -4.368857891350367, -4.423125568686156, 0.8777391190133497, -4.153586935630661, -0.01824353299595899, 1.3842240469031588, -4.501498258101067, 0.38528900823111306, -4.605446640577378, -4.757044592984921, -3.8168837484808216, 0.3800850892329545, 0.7958364883664796, -4.651872649735101, -0.4517849200453731, 0.21965336794437235, -3.7689867933208947, -5.482409266349263, -3.8479750101849484, -5.037634129309338, 1.2276527819689147, 1.0188153424148232, -0.24806873597373036, -5.134809548864247, -4.618485992979233, -0.19145698953412627, -3.162247274507412, -4.807109126009493, -0.3880657309959211, -3.689571761305132, -3.599351887432717, -3.416789057032356, 0.2845430558886689, -0.6285605387453539, 1.0443926552706753, -5.879174227916783, -3.5021981884087245, -4.226466392385035, -6.324557264501989, -4.5888483801295346, -5.359830066962473, -3.567514675776461, -3.1301608429821357, -0.12499998695231646, -2.9550332020500765, -3.868764379058855, -2.4782308173025447, -4.659827482192252, -1.0280922696343355, -4.517893911697657, -3.18143762053375, 1.1245458340513086, 0.2904013755162826, -4.506685674652516, -0.010748821080874438, 0.20034644702585355, -5.379004496584711, -4.283257049168223, -2.835863155029918, 0.9006054436202303, 1.122860197976538, -4.662046633363247, -4.574683366056963, 0.6484773361397532, 0.09475760680258316, -4.983844131049762, -4.259296007516112, 0.4935359127469391, -4.051581097412187, 1.10840267500015, -4.643591789829546, -0.11790302259683916, -0.6254068286536743, 0.5075307749935212, 1.0648596065313551, -4.430744554145652, -3.4295728424055594, 0.5177065489319281, -4.892378808695865, 0.8531781099111887, -0.6155578577277836, -4.9580796470262785, 0.13696544014417017, -0.39281967932248296, 0.3619060607184027, -4.039781910177223, 1.5214696102328698, -4.075632823238306, 0.44389998618795706, 0.0359054467956601, -5.129543794022882, 0.9416053567794658, 0.3596712180850591, 1.3046238116606803, -0.47190238390657757, 0.611721818692402, -0.04254173206022327, 0.46230412374496666, -5.865766586277619, 0.39165447780159196, 0.06380649209924771, -0.12048667322215528, 0.8227926380797391, -2.869091133646289, -4.200302099816549, -4.15629923761081, -4.613648086478443, -0.23005563452535616, -4.249508885141215, -3.895674797587629, 0.5944346738910224, -3.327858683693049, 0.9611109606790867, -3.6399427916003666, -4.153726525792811, 0.07624260402130689, 0.5676804996845699, 0.43450261968159387, -2.949832977488251, -4.467350598233464, -5.669331702378598, 0.40114747908613163, 1.3783113645346805, -4.904420012924753, -5.048029638789597, -4.9673648046567465, -4.783742754243507, -0.26264482260507827, -4.7642813380934586, -3.742889625223163, -3.048836547807835, -4.239299898226211, -4.6763805808652785, -5.013448902180869, -0.2911089727362628, 0.3058483153700104, 0.6249942432119351, 0.8595263636632954, -5.084635583791344, 1.0874063530149707, 1.2918009934847916, -4.870140737222983, 0.8123269307296406, -4.643490888153963, 0.767204038141788, 0.4693844494771816, 0.2539058247772471, -4.119803287514306, 0.6450804798412391, -4.461356526846103, -0.09734052272578919, 1.0563161015312097, -5.376447945432479, 0.1872916455481755, -3.9105667960276507, 0.39170059217813885, 0.1662822336906666, 0.12135487404901332, -0.6841560970932774, -5.172789927892354, 0.19581350560982042, 1.4410708248071111, -5.194364641655272, 0.6627698356168857, -2.7735022036644583, -3.9449076329071042, 0.14629349917507806, -4.3247816583388685, 0.5803377237340595, -3.4352484985939955, -4.527463988632975, -4.558773902670693, -5.475392292845065, 0.7716770455450866, -4.600449578284544, 0.048011498535463715, -4.584935997024075, -4.293161286364874, -4.401781859929853, -4.124170977069617, -5.2437055821938685, 0.3269000988082141, 1.2108606430670439, -5.649788319217301, 0.37051194134293575, -4.151914672870502, 0.591288884064689, -4.35542740994472, 0.9287814656874505, -4.458581420419064, -3.7454835193243343, -0.05419136032709071, -5.261060155911028, -0.04431499286094032, 1.4880954272055673, -5.889849658814077, 0.30550956174450483, 1.0697427444240968, -4.139655875839905, -4.74320766786817, 1.40663547863431, 0.8470124386175452, -5.306469122994658, 1.1044142300016642, 0.3938751260663021, -4.626759386065589, -0.876136959006091, 0.4223182441939416, -4.16059121565102], \"y\": [1.3729396643372507, -0.49719778462516706, -0.07731803089257464, 1.7957904157900684, 0.010527168934761149, -0.7794854348313078, 1.7482327167970555, -1.0996852136017283, -0.7576107689993228, 0.44416869292951955, -0.08558585640534136, -0.4073086951569455, 0.4559464798233827, -0.5531592936500559, 0.037771890844609024, -0.15466083712473522, -0.11528133558492819, -0.23260663799680215, -1.1757695962240255, -0.6975458134886625, -0.07247917831542852, 0.7358767724395412, -0.3994386873686886, 0.8162928211578827, -1.0473095295059032, 0.3086707370904603, -1.567357849620797, 0.7533115147788078, -0.45687744064885777, -0.1132446181166744, 0.16454884988619442, -0.17612900727469066, -0.2600169485542391, -0.2418090987298703, -0.20295952863942412, -0.789707088515653, -0.0008529130780499817, -0.3025512094456976, -1.1513425379446713, 0.2508389853488784, 0.15763104161631722, -0.2759639933636324, -0.6679995132842823, 0.6461039784757759, 1.5119043255112823, 0.28101738156195544, 0.2223336011297179, 1.5700752461690402, 0.3175777642438202, 0.1327906223610739, -0.41844545500367514, -0.6429659392858902, -0.710776648222377, 0.6256234953493117, -0.23663885191769826, -0.5849936860755023, 0.4940840309942711, -0.7175738257434914, -1.2465383129657648, -1.0184590076346476, -0.8729140763086127, 0.48842178856039475, 0.36622991522381676, -0.5972588293328822, 0.08374886473771467, 0.34598136468300766, -0.35812734248531175, -1.0446441393562371, 0.8513077915283841, 0.22813612939939318, -0.1714692107449871, -1.2008117160104224, -0.3615689254941565, 0.4032571709308142, -0.934518995130045, 0.3316022920794113, -1.0184378949884014, -0.6235867653278055, -1.3654468538830138, -0.21993526867968877, 1.4838975997308705, 1.518150328603969, -0.3401944528736649, -0.16875813268871623, -0.08857033596431024, 0.07522445139774916, -0.9072103141114923, -1.937000689434937, -0.9835904801382032, -0.5688497541724896, 0.3266318943953559, -1.6367593342159235, -0.40858286504818103, -0.13401140168552822, 0.7090660688405963, 0.11128241618475372, -0.6476814695738401, -0.607663648891424, -2.020902028558943, -0.03571941192029508, -0.15555896202520106, 1.119284023516456, -0.07367254220959861, -0.15858092044806735, 0.679711516867192, -0.528177021020558, -0.8104567997388413, 1.786306295798713, -0.3090099187329787, -0.9280301705336619, -0.14863593842426212, -0.4524506103248027, -0.7235859626913692, -0.6157946632937185, 0.23810018349188888, -0.34390536531817856, 0.7970921844816603, -0.8415874424236174, 0.0176683892432482, 0.6204279446302046, -0.13861253650436522, -0.4071541486941979, -1.934035981909078, -0.4822774108419128, -0.19726133096034382, -0.04769660794219104, -0.6090339771010739, 0.7127841906439802, 0.14669261358726934, 0.7548800851818076, -0.828761657978196, -0.4548550440638197, 0.7199235906698748, -0.336043421902116, 0.493844203281793, 0.04424049823654389, 0.04126538253168914, -0.664413398336957, 0.6052761462900416, 0.791354775264738, -0.5534884152517314, -0.3272580720071484, 0.010275844349890756, -0.28785738914968234, -0.24114032024180387, -1.6548566146444372, -0.5554236597081361, 3.2912009683707035, -0.4363632819772538, 0.07586685853535166, 0.3622756592859365, -0.12424762702780626, 0.7855010777033162, -0.3505211393675668, 0.042499300524851374, -0.11794679528119582, -0.8942897843204215, 0.4863751060292872, 0.09843704186118801, -0.13233357961108447, -1.9123232955313578, -0.13185181893384826, 0.5637671301387319, -0.15358082276905846, -0.5504049260717305, -0.7700806174203261, 0.5171893905287158, 0.45149276328556487, -0.6173278931349326, -0.7292757626914512, -1.3341874971591652, 0.029222001667200764, 0.46570712709531037, 0.9021762535804537, -1.431791989722992, -0.9360260819750176, -0.011405771043303991, 0.04565189469776193, -0.4437782753323646, 2.219440356127846, 0.44336867174911426, 0.2893993881800853, 1.0984249506751878, -0.03412856481712952, -0.9394152218057413, -0.1118213813814213, -0.18435430050818336, 0.2162039273691278, 0.9668947972131235, -0.1873644862114262, 0.9077923037908532, 0.10928363026779736, 0.5180054687638269, -0.28844588626353157, -0.24226149333741656, -0.8384866632470653, 0.05242175622548727, 0.5229509394234594, -0.29659707644961086, -0.8419177266456128, -0.23705703527192729, -0.2210975005069951, 0.6103700845908602, 2.6434291474123817, 0.2421629861058857, 0.1851388885477823, -0.09113297211976051, -0.19633561117533688, 0.3007948706953044, -0.2938966693598514, -1.4155713436980863, -1.315346198857682, -0.16374489985815618, -1.250725516595704, 0.20165525093882009, -0.45351536074811494, -0.12225263838417104, -0.49681049462474547, 0.14257079751589688, 1.071698719475302, -0.9140703286892351, 0.5128862973647547, -0.0721463432362712, -0.057998189835241916, 0.47720218175687035, -0.26872440708447387, 1.872916095118658, -0.6315293827260067, 0.11507548961649625, -0.2849622076113439, 0.46705495350354354, 0.4511734362064699, -0.2000576985285572, 1.3034742647381128, -0.41159406151376676, 0.7951482165428972, 0.7203076200658618, -0.38529436611182605, 0.22296480357820092, -2.1609355260512015, -1.304878723558326, 0.8186887886600321, 0.07872537877876666, 1.232033952778363, 0.7625197502289212, -0.31919474228614486, -1.0635711679100248, -1.0356452502951823, -0.5912438087698059, -0.6508390616342382], \"z\": [4.057923625570647, -0.5071439019189135, -0.11262322716057854, 5.385260551885767, 0.7329403621023001, 3.2095664814411107, 7.305216145705213, 5.640448056412309, -1.0148962478202193, 0.4445063796147037, 4.636585901066918, -1.6166240378427905, 0.7814095851831908, -0.5807328710778992, 6.983119074818209, 0.7313818967770792, 4.701544260064271, 1.0625950362637082, 3.8462043010461326, 0.5442832423563178, 4.834218830173321, 0.5501762934054499, 3.571573700759207, 2.2934187816350846, -1.1964493756138768, 0.6460069917071206, 3.7320519275946875, 6.415799175779382, -1.388286600886895, 4.910892437556468, 5.940255384527131, -0.5227801076139891, -2.58152807284329, 0.2524877289649008, -1.1227859820617043, -2.0715174419676745, 1.2452328342606263, 1.3283853198036861, 4.871141230872443, 5.015180629273067, 5.9661112918398835, 6.10195428159358, 5.125381883816064, 0.7825924008478311, 4.857087851733697, 1.1953390853488324, 0.19573751903940817, 6.198869675298004, 0.03225060470672991, 5.270147781412405, 4.201728789353825, 2.7450407869730475, -1.0084199592406213, 1.8095135650446916, 4.328153615110607, 0.718701966199907, 2.3323006794559418, 4.20972146751403, 6.2856304189766625, 4.947567143191508, 6.51374329790566, 0.8619450316382438, 1.9253042138241798, -0.974530538481899, 5.210786531644966, 5.71417196913978, 0.5847558743533, 4.402733568911304, 6.22815584271495, 2.3059741342030975, 4.293508553261957, 4.029039915671512, 4.853285986069919, 1.8326435941430568, -0.3208592174905341, 1.2486758682387025, 5.512377040480017, 4.4163722121077615, 4.040042647004691, 3.4468826224117697, 6.097528468876562, 4.596059239551726, 5.861904570247185, 5.216409458853635, 0.7756781763595779, 5.5508031226186345, 4.403215754186398, 1.9435490321107438, 5.801357658886759, 1.4075167088156288, 4.863235790582102, 4.133132768610004, -2.235553965124178, -0.7892201528655651, 4.545142309717136, 2.0468346594036477, -1.1728927500495225, 6.678841784550136, 4.878802282838178, 3.155761588194214, -0.9433445565651335, 1.9817528006076681, 6.177488321550655, 3.699218336105563, 1.8091505626450626, 1.3222136657178534, 5.80708709978876, 4.0306459067878775, -0.38157534972275914, 4.706573609657939, -0.7542761668609521, 5.448692665089233, -1.3763084892487758, 0.34697006830782184, 0.7891944801159578, -2.2359549488415595, 4.5657907313021875, 4.215082967175425, 0.805703543958155, 5.128503137453338, -0.8723962008588082, 1.2506916108366646, 4.259505992603229, -0.7020951765602725, 0.8843900919016743, 0.018235720377769715, 5.1142946887242, 2.20537373416802, 3.829299337797757, 2.2135082129459276, -0.8157152325795278, 5.946038005921375, 0.4205490020341077, -1.872039494585989, 1.0888508609572716, 1.8676297805465174, -0.29550608402065154, -0.02701457687048009, 1.479437360587732, 6.449308215562055, -1.5681517007761967, -1.2823652405070183, 0.8280186914117489, -1.880188196380172, 4.593554179339224, 3.0159852356617254, 3.9978876875943414, 7.8600939213636, -1.2703487917779568, 3.8104090836874978, 6.407873087497281, 0.6994829154353541, 5.506107210324006, -2.806514285130086, 5.317670326009903, 5.5042269465866225, -1.3073037188632075, 0.44999307813360356, 0.8408432996914965, 4.118344722224546, 5.32959189134903, 5.7589649414704365, 2.3215130186361703, -1.6247680537261733, 4.819767711373457, 5.9987509514209005, 5.14462794663922, 5.475256089559051, -0.7746952267879128, 4.470673103813128, 3.8722817073430282, 4.8881935207203915, 4.285802001618334, 4.241084052259029, 6.435589672730833, -2.009958502881167, 0.9362682227765831, 0.14614887666804438, -0.6498088680576044, 6.635890642856445, -0.045451615018122116, 0.0393126543581056, 4.61382572565501, -0.5078496815409927, 6.789960617558561, -1.2785847248073827, -1.326818860163087, 1.1527179663231892, 3.93437930785836, -0.9196560268196798, 5.316057075937978, 0.852398089101861, 0.7355192959231391, 5.868141067246089, 1.6153931854509738, 4.421658778877396, -0.6085569615447755, 0.9640444064487579, -0.5177777822311838, -0.886068851730498, 5.623186875105014, -1.3332280361588698, -0.2979950842343699, 6.569779914277698, 1.216936985739043, 3.5399663073542915, 4.360277286496158, 0.23224754833932915, 5.755876478582662, -1.1759812301936072, 3.82523318864052, 2.6009266572373613, 6.015965866330201, 6.630465160579673, 0.6699424340865716, 5.873049444290847, -0.6170136210206214, 6.3625813645481655, 3.344644383022718, 6.000047815917533, 4.13430128187058, 4.927315885598507, 0.10090888716878671, -0.5489596451968872, 5.093635348805404, -0.32228962280433854, 5.444640856497027, -0.98998184093539, 4.6135062665193844, -1.6271218992292722, 6.389217026725698, 5.056245071356628, -0.16606031728641474, 3.524149027980944, 0.5440482350057065, 1.1334977565546749, 6.964749347491709, -1.3558209750983365, 0.6410966146654601, 5.325978648164543, 4.749073378367706, 0.8511686721713692, -0.6908632814981885, 5.113514494992583, 0.33820986797928787, -0.78044057057635, 4.6570427643976755, -0.7866916594286013, -2.0053248073815286, 6.4720422510168305]}, {\"marker\": {\"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 4\", \"type\": \"scatter3d\", \"x\": [-2.699998209889855, 5.980766312987704, 5.839674295191234, -3.2765995516083284, 5.966631194643568, 3.963847602526904, -2.3642988185422418, -1.7138667769612526, -2.4370927644769083, 4.841737435741448, -3.2684597191413576, -1.9212399683235388, 7.000360918301024, 4.894299148296243, 4.700415065225787, -3.858054988862419, 5.305031717234037, -0.20053482046886284, -3.732276456034228, -4.498015885776166, 5.120509495440337, -4.032802364813132, -4.53589901684049, 6.2507392556241745, 4.955362836717969, -4.312001043729332, 2.7882512285044765, -3.812364545182882, -2.3505854369032386, -4.109617553510807, -2.6022800149831165, 3.830904366762126, 4.7615210407147845, 6.1098466002125065, -2.485292495708845, -4.353027831690074, 3.37232657314937, -4.879769788176697, 4.6343345376473755, -1.2410328254694365, -2.534613131858027, -3.7058253979362226, -4.762608904543357, -4.590534961883758, -0.7208347198836313, -3.0671409899514592, 4.019029274342687, 4.151815151090048, -2.6330729790681806, 4.599755105415642, 4.468399876905136, -2.698126290244544, 6.1349438265950385, 3.637957919656822, -2.1805784412289038, -3.4097803776126674, 3.1043079203282087, -5.668985659194438, -3.8328092555345217, -4.847872340079251, -3.032406148690183, 6.219007710814511, -4.265127045590749, -4.983285200765482, -4.0625177786020235, 4.743038222513676, -4.505774854373235, 6.2369116525392805, 3.8640405159915927, 4.408021433598165, -4.252046892382156, -2.215099160287469, 5.243724625552756, 5.247880277049236, -2.920892453611725, -5.2414036325571525, 5.313242578122001, -1.6850244639082808, -2.9961631247985165, 3.6039123687499153, 5.668988563392321, -3.671956697864752, 4.858154193033189, 4.56151453012583, -6.117797044673422, -2.881486832365713, 4.2240687576200395, 4.517439185302539, -3.6052434330755574, 6.459858085763701, -1.3699927337709488, -3.630780258361141, 4.229443036717835, 4.54630404089184, 5.798223837771155, -0.6832282023853047, 6.11688218479852, 5.063006075436526, 5.787208055645751, -4.798748031245717, 5.347037956149085, -4.100437474361896, 7.0633198747744, -2.4214733189388107, -3.599511561271338, -3.2505821722479435, -2.5840310155326285, 4.963475348803859, -3.8633580234590856, -1.7306446389167323, 4.604416669300958, 6.326031234514003, -4.6185566539362215, -2.6815368815640808, 5.766376687511509, 4.367276433824759, 6.492336604592851, -3.760539302755535, -3.5146465823122695, -3.3332954366662957, -5.2197027658584565, 5.02996538024868, 6.5053792435307765, -3.1270360028189073, 3.9157106922995917, 4.0359946016829955, -3.2046403580934357, 7.947011324487798, -3.3736715172305187, -3.0520823265285757, 5.010102556452075, -1.5843032482732986, 5.521380636089694, -2.051348228700825, 7.594464065516478, -4.970536606372113, 4.356375461291438, 6.272222260739428, 5.865644202739639, 6.314122707528323, 5.247928186955148, -3.25850210379829, -3.569890342111734, -4.117163605023333, -3.575646312413574, -2.5625962699285934, -1.3008975581804099, -2.262158184137214, 5.672688573999388, 3.4331554309379992, 4.700907482161812, -3.364151226681323, 4.123412811091546, -3.6826399975828177, 4.595258255371273, 5.41375792969739, 5.645086704611426, 5.633209434074983, 4.499867377377288, -5.085665908710295, 4.678643626139308, -3.139145623417235, -3.05547514428524, 5.650879655266439, 4.230459178856846, -5.213794060174585, 5.605822847121157, 4.86932808661995, 4.927856285103348, -3.9873421339888537, 6.678477457060136, 6.745213810846426, -2.037864480996778, 5.162670098862875, 6.413935449964141, 4.514803075064107, 6.118536939629042, 5.633246014203138, -3.604868825335263, -1.5799768655649782, 4.445278663872193, 4.904971581381739, -4.933754588344868, 5.709309131440666, 3.717499290864141, 5.568249091140084, -2.9748010678406667, 5.106482949309244, 4.664887199573926, -4.752706181550519, -3.286509431037745, -4.518528273669642, 4.1512378318068865, -3.448733689937302, 3.977843915954714, -3.6307431597105357, -5.150207243878652, -3.917890896330447, -4.400064687050306, 3.807001261876377, -2.612987603568887, -3.643766221101515, -3.179365815381859, 4.5639978410379864, -2.982278096984077, -3.64252558058526, -2.838169655427001, -0.7235668534029904, 4.756367906073104, 5.9314174365332635, -2.3139584033515286, -1.1553098995608782, -4.509507488207309, 6.182922299880477, 3.9511580248408658, 5.223558119159183, 5.475025958984664, 7.438110720913081, 5.795134627047637, -4.120136953316507, 6.381162285263275, 5.111771396431613, -2.760550317130465, 3.4201119888062483, 5.298956586245765, 6.193845134556291, -4.963082985122585, -4.246797539086819, -4.5374508482358955, 6.289481281963035, 4.201295737851178, 5.096351029997583, 3.986964917972693, -2.405960552946257, -4.747973189620707, -4.256136369316367, -2.9924773998978504, 4.981108255843727, 5.323225671106721, 3.5126651688097428, 5.315088081058691, -4.990260327056453, -4.329329603802701, -2.353625070800532, 4.74665092666628, 5.003846157689242, 5.220541421383091, 3.122835959885598, -4.072820175756328, -4.527563906324281], \"y\": [0.22238685594737023, -0.7051485544237847, -0.9314510975513453, 1.5919188253629484, 3.6820160740243613, 1.465868814755444, -0.1821277871180662, 1.9024806631434426, 0.7475480384782819, -0.22712277888381674, 0.4054979639105514, 0.7869392663446891, -0.6548614202722445, 0.6517807578277369, 0.6152313448629382, -0.5039871685334778, 2.2811706075281535, 0.9502680232614785, -0.34283342784345266, -0.06787960531253215, -0.2996476825743556, -0.016448683299671446, 0.28322600786210095, 0.3342459353060879, 0.9188123400284899, -0.7143773794860013, 2.3739538685077233, -0.32578372483667384, -0.4885240197183711, -0.34242426556103855, 0.8739170678142963, 2.7395798981164297, 1.1089017207348577, -1.9263367553728539, 1.238633879016844, 2.468692971644069, 2.0030511852031694, -0.21121542219096545, -0.7852297037503616, 1.46716486505506, -0.9362821757467574, -0.2653068441103129, 0.073991508183014, 0.27206392836734306, 1.3419215388642547, 0.11450255313395957, -0.24044992552282893, -1.1455427963565756, -1.021140332768659, -0.19225455765580765, 1.2066424825053326, -0.012270458504129556, 0.14058578122324406, -0.1910001700804068, 0.46781314537811597, 0.19104737760256535, 1.5505485273241162, -0.23688548783938157, -0.6513161277307408, 1.698332647579257, 1.1947612447769098, -1.6941675770026179, 0.9674717268982067, -0.02323977299331681, 0.02266571772684914, 0.052269505865394944, -0.1159630969837949, -0.97128174803245, 1.597309346387565, 0.6001602012728998, 0.13508430353869144, 0.41866405554242075, -1.6236721954931763, -0.014339704107512757, 0.6278893004903168, -1.2934929270399442, -0.9689751606130053, -0.40387592527807237, 0.9102055559729485, -0.432362667278511, 1.4606060199075852, 0.08011952168415931, 0.6241734099931763, 0.9117051684912717, 0.2508412296105255, 1.1731145028429624, 1.668873505307611, 1.4679662791184782, -0.9395446641275242, -0.6506010937373048, 1.8077193074586402, 0.04796983753602313, -0.4107588148965101, 0.0955145210250358, 1.6622374787202248, 0.39798803052811554, -0.3141107849427054, 1.7636231905989046, -0.35685233663557914, -1.2365190314180776, 0.9047994959726829, -0.3833344384862102, 0.7504576927214561, -0.532767340081754, -2.3319366168166047, 0.5076798499694798, -0.15587158866022638, 0.14239704006839915, -0.9929960061836487, 1.4139513705677522, 1.145196317636352, 0.34680849946661135, 0.553258129071079, -0.4727131485704048, -1.0530242756263624, -1.1601252385001344, -0.7646480826808676, 0.30425098584592747, 0.8831799105422891, 0.34544362020526553, -1.500476306841989, -0.40698265280187806, -0.03673948257095358, -0.7263607256935016, -0.05127422933366338, 1.9895599117671117, 0.0731133513426937, -0.6852924124309955, -0.2477032885909225, 1.0147579724857445, 1.2800981541576684, 1.2794909719628702, -0.5823121705100651, 0.15538779258327912, -0.3540564542497764, -0.08709653546267032, 1.8396657139876147, -2.4315423673891514, -2.187569808208758, -3.2379805700132502, -0.7638804178137769, -1.2044321101116906, 0.6519240999688716, -0.14605565481127802, 0.847528712668274, 0.541771661055941, 1.5052268981422061, -0.1714617755134022, -1.0086233048466422, -0.28933797802729544, 1.0114944339490923, 1.0418266973000747, 2.184865103395906, -0.42814058014944567, -1.4960815091973005, -1.7644303369932028, 0.18419793734379236, 1.2606205773730057, -0.1891479579164317, 0.38822051725109846, 1.617368390975873, 0.5824832369360642, -0.9547980023953326, 0.10121116596287535, 0.2633108235157875, -0.24148557519328917, 0.4643620955058042, -0.0419016844180016, -1.1123247591768368, 0.27574125056800497, -0.2928686101139678, -2.5164208986737115, 0.07302705939604512, 0.7835457978827232, -2.5062921009354784, -0.581574262487322, -0.6183339121570891, 0.07461658021815079, -0.19633412415369944, 0.14831971228313554, 0.4740282557148451, 1.3173688972431292, 1.0600128215512734, -0.1519094193363935, 3.174692838621768, -3.0476500092810386, 1.5533066375587188, -1.4691165574822571, 0.35450240669340793, 1.2127144829387175, -0.08967350687668549, 0.764432587890914, -0.19409026050543274, 0.9360420775488095, 1.4240058690897162, -0.4622595156970124, -1.2083729736495992, 0.10159674208299627, -0.3700256257494864, 0.6501487949377724, 0.7564455204913413, -0.0629674983961383, -0.1041953014026846, -0.12388186869392212, 0.504134188588296, 0.055757549018942226, 0.6832462110501546, -0.17213876145168772, 2.2922533716421007, -1.584185324126166, 1.7326347680444025, 1.2585797588219654, 0.17494996510055466, -1.4156188397728864, -1.4890561440573666, -1.7069357020774374, -0.17851314438236618, 1.5162667016379416, -2.231446616372558, 0.025999328003552855, -0.69057651402217, -0.9469181615105513, 0.08481632557487845, 1.1030940454312388, 1.5483131535489534, 0.49496579566127163, 0.26204016396508034, -0.6801219070652057, -0.707765320863744, -0.4409992601896435, 0.6738108443627491, -0.32639277506945097, 3.463592132464897, -0.2347791699814223, -0.26039838593997733, -0.6951890753482464, -0.38204702982187455, 0.5123196670156499, -1.1424352262832775, -0.12492185176666606, -0.7805477218405579, -0.006966207414823067, 2.1014338112739814, 0.013584974528031118, 1.7673518651861224, -1.0842481460967375, -0.26720599029337544, 2.0571967695259494, -0.652961735488539, -0.2815848233533465], \"z\": [4.088990299865416, 5.907614536763755, 4.8762768734665585, 3.6160548978096263, 8.033982122455829, 6.691340665410314, 3.97836967985251, 2.0172488119070557, 3.4148090596132823, 6.675985220613749, 3.3671263592806504, 3.574827938509698, 4.886240313056652, 6.451134342940401, 6.919202453950182, 4.170067923667116, 6.534363511988906, 2.382452138795699, 3.713290633576606, 3.4288947312599443, 5.359599967668967, 3.842140701565591, 5.4939921076576415, 5.836492497411188, 6.646107445554639, 4.6781869473802224, 8.55303621272643, 3.892742705745736, 3.4027474373579745, 4.305257751141518, 3.936715632855718, 9.578320898926542, 6.503408059011324, 4.475327262261171, 3.287815893013069, 4.748336227346563, 8.598769902103642, 4.746203494506361, 6.863232473472575, 3.134279499623222, 4.592773742421951, 3.9665701726458917, 4.956637590004586, 4.898877470955193, 1.7857330707704895, 4.509915405792401, 6.581885383299934, 4.846917335631307, 2.9789305132454205, 7.096510307117714, 6.685366270907994, 3.7878050236260563, 5.650108048530457, 6.890961861108206, 3.9690483509770527, 4.256725122304139, 7.67946465432296, 6.471135763877819, 3.625785159944307, 4.9350081226172, 4.145062516359153, 4.371280757381488, 3.9957727902993687, 5.376650974860597, 5.143603658667661, 6.083010415718446, 4.949756400905673, 5.73787391699937, 7.255090894771585, 6.752899970478288, 3.995284981679493, 2.4636883832467955, 5.407446112570458, 6.575685904994581, 3.056304762436627, 5.709714419140424, 4.831822805621666, 2.496254155804987, 3.3107004004231273, 5.7017124315598675, 6.685945932051393, 3.909122457014186, 7.077677772634275, 7.5294964642135405, 5.255805997320354, 3.923300778957552, 7.87668927413406, 7.823420693045043, 4.347273419873886, 4.990896083337399, 2.2181993821674904, 4.748224588948342, 5.1877485448852, 5.604520220467701, 6.344389121363573, 2.5457932863485677, 5.794318101058777, 6.619917614394333, 4.705957667374898, 5.954151141448579, 6.2238931499741454, 4.399605151043061, 5.812086733227599, 3.7862366972471864, 4.347508016152756, 4.226250877919847, 2.380052845856807, 7.276205439060721, 4.695510497257327, 2.3711691812864943, 6.478931679643429, 5.219346772367385, 4.925940776968154, 3.6382529231021343, 5.842674480556379, 5.74475299597214, 4.94264214998716, 3.5334184049618713, 4.662243993671654, 4.304552394025945, 5.994223315598385, 6.012763981553375, 5.478359612841119, 4.251230861871424, 6.5235145724561185, 7.418070347201457, 4.48416641987414, 5.161718567555273, 5.162240816803678, 3.369634837030648, 6.083830347806966, 2.6598599347179555, 6.240722933657081, 2.3975372390839516, 5.0554328844489405, 4.899644847870496, 7.098905674379672, 3.7063578086339675, 4.154869015101447, 3.7265296228927176, 5.710760767982882, 4.632625332100891, 3.4306468397684764, 4.644752851723521, 4.190149464188592, 3.5892156920666736, 3.1740953839569537, 3.1600837440151146, 5.388030455654825, 6.888876027168225, 7.758557119167025, 4.210268834954884, 8.352385916981607, 4.010908617322638, 5.294482695645264, 4.1234395978347695, 5.030414101445569, 7.444974254988506, 5.790659167047141, 5.013034432565297, 6.797611116859791, 4.4986593167711515, 3.8161725461775267, 5.860209401278603, 6.504919988144594, 4.6916343438711, 5.9468476220094315, 5.465848312711271, 5.200427800675681, 5.068286655205776, 4.710408637140736, 3.4247638837369183, 3.365654767035291, 6.978157194407284, 4.484455401616308, 5.861753794590589, 4.490780511626703, 4.85205428749684, 5.313380220069814, 1.89074821168651, 6.354788408482921, 7.185124391000792, 5.160356697454405, 5.980440279306883, 7.682805743992921, 3.974280104485304, 2.460953435516519, 5.367543314191483, 5.767179402763449, 4.541671300569593, 4.1132853698485095, 4.715358847132167, 6.004269397217246, 3.85460362595537, 8.1471139321067, 4.418419825174378, 5.961980990517088, 4.539379393586023, 4.992897400009418, 7.272120438470661, 2.8000648589255137, 4.829013711388264, 4.14350834522737, 6.621044562918532, 4.353470301999679, 4.080504056437846, 3.662232156178598, 2.5945979732626534, 8.686423448359108, 5.191750910369815, 2.8554167838009414, 1.9434471625377254, 4.4297740640376455, 4.9070122096803725, 5.419978943291942, 4.128506439928827, 3.645785980431071, 6.411936546284032, 3.9241714965640235, 5.102217866160788, 4.769261521781581, 6.028865151930062, 3.2858931042879647, 7.232219579790054, 7.415012086052812, 5.30318847835915, 4.285629850940992, 4.8651819523428745, 4.356782222960631, 4.731684729337198, 7.546722456720857, 6.758909310549408, 8.064225171031666, 3.687686166567012, 6.087032521425483, 5.5085109329166535, 3.8068984441308356, 6.015386993055763, 5.870748382347007, 5.915526979679661, 6.033346671209506, 4.696651463522932, 4.197797873550278, 3.668224059962969, 7.333912522151866, 5.174310363888903, 5.8683110304280195, 8.709250001076942, 5.578975344174017, 4.671169443085699]}],\n",
+       "                        '1a9ab042-7be8-40f2-a456-9deb3c302edf',\n",
+       "                        [{\"marker\": {\"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 1\", \"type\": \"scatter3d\", \"x\": [-0.3396480084134613, -1.238731486261419, 0.6100892118877779, -1.478653438364253, -1.472478326206806, -0.7533069391871909, -2.758643019009292, -2.03263375543892, -1.925777548012959, 0.49430478785660026, -0.9311514997861496, -1.5550263671172506, -2.173497532290698, -1.6123822358736106, -1.6134710379492612, -1.0137611192915692, -0.16137288384085657, -0.7870527532635258, -2.354154429163576, -0.2470950956611535, -1.1179094103202494, -2.507429703490965, -1.469645071529707, -0.6496633667047893, -0.6695796172977004, -1.690157019547704, 0.05115738191298358, -1.8556257062375812, -0.662259784141608, -1.4885429394906264, -2.1279657743968667, -0.1715878644280039, -1.0734180464879086, -0.6312933527125061, -0.6315384728778342, -1.0365265013740845, -3.6709657422805906, -0.9112510080209119, -0.9064451384110707, -1.223966860760664, 0.5067894804203295, -1.8243010790666356, -0.06670015606618096, -1.5401179502831788, -0.901024413310904, -1.7157794703313511, -1.3997745592309454, -0.6980900491428021, -0.9947865662596989, -2.443043736866321, -1.3494151898962374, -1.1644391318478815, 0.923064162937504, -0.73741404480246, -2.9562865773991227, -0.9385921832045007, -1.1961219609802238, -1.0353904460368684, 0.16516701655480537, -0.1935019829589062, 0.4302214143380545, -0.4016688147607004, -2.0099030576594386, -0.8984002749332105, -2.5809816366176657, -2.083073625304378, -1.9374005999390265, -1.7985672759126978, -0.17057708593187448, -0.7680928224197949, -2.63891236750503, -0.7350360386733581, -2.2611352793396806, -0.46785355603539913, -0.7446095725436901, -1.6933204044945223, -0.7011974428488502, 0.9022536941888848, -2.2145955821121492, -1.9937384162840375, 0.1812481664172283, -0.017788167968911583, -0.16186711370841578, -1.2501858865518047, -1.9069060058877554, -1.0786091838457312, -0.7178994074419702, -0.9867438981996715, -1.2698313412001445, -0.36209975186706556, -2.0918303355243255, -1.2278318769822971, -0.5175097450431647, -1.8633500290574978, -1.455245107062224, -0.7817203454963412, -0.8234330815456707, -1.9011384082626028, -0.9406531984243014, -0.6352172655960316, 0.10422680555431318, -2.404605234401724, -0.4748948847606912, -0.47488222284804094, -0.4179475727336699, -0.0273458191074748, -1.3214333145291355, -1.7879353107972404, -1.494853261402981, 1.3599142248647742, -0.3003222122947081, -1.4811589662850486, -0.9344631931369604, -1.7292891586196704, -1.744646587782881, -0.9535371502342876, 1.185861978332658, -3.064737696713975, -1.6747255575902749, -1.8080159169287429, -0.4851393288840796, -2.223764319217001, -1.484231329829504, 0.799971985058161, -2.285536459926073, 1.1636480942899503, -2.549076329058835, 0.29168149706937396, -0.5475031191063048, -1.9450535974648924, -4.304639834380183, -1.2575063043000383, 0.6643278246064137, -1.4486481326798681, 0.4694527243700082, 0.18590565540838222, -2.0006988766229616, -0.7970483362234282, -0.9288331611128714, -0.8842631903968872, 0.6170262427409237, 1.174737939944587, -1.1547527614026065, -0.7135142455622658, -1.2121914074933542, -1.6008878776213908, -0.636004231485098, -0.08281136004757395, -0.17124499279449723, -1.8452033257883422, -0.23809548662058877, -1.0213102569979595, 0.3026454983875708, -0.4422058999116508, -1.22193725475454, -0.15844530529951006, 0.33100322078628164, -0.30471364510548593, -0.6694956234692433, -0.901107592784293, -1.8342183409867947, -2.0256867959900875, 0.1807539840621708, -0.3636775395353007, -1.0124862188601997, -0.9227133289692666, -0.005814955617387096, -1.8416371232221702, -0.5789950073545347, -1.8382962547516235, -0.750243900288657, -1.4802479354362925, -2.4763969448914, -1.7324910731616647, -0.6830136430327773, -0.1255716181953409, -1.0193880083130513, -1.0188751004594534, -0.6709717225101377, -0.47049934524336445, -1.110886601219378, -0.29636247579069286, -0.7715261148560371, -0.9004141614173563, -0.9750106085967053, 0.47951602524198833, 1.1952809729140297, -0.11062395599938224, 1.232617443521173, -1.856139885521003, -3.1654216324144264, -1.7739750442479512, -0.6515620920159575, -0.030993699166081634, -1.9159802630368943, -2.346046095197731, 0.20250025569278596, -2.746629331218697, -1.116779301283268, -2.625601532201017], \"y\": [2.552807776827515, 0.7612852525091833, 1.78243943191413, 1.5531680495503397, 0.5251644081689545, -0.9506882485954029, 0.4267187576494903, 1.3203914223008613, -0.43991673009475285, 0.769809374554431, -0.45260452660519124, 1.1130913220135743, 1.3830435773608067, 0.702603122830946, 2.8884934905589112, -0.07839104348993553, -0.2447132969779533, -0.9979851317910255, 1.200710220306775, 1.1747188333923644, 0.693009195994847, 0.26608156747776024, 2.077790830575932, -0.7975107005210367, 0.6073886816906006, 1.623635639325664, 1.949488288285448, 0.6847419767295453, 1.9946187552845691, 0.8107110628275309, -0.21959457377008107, 2.382756913627664, 2.0231537363450838, 0.34226701615787414, 2.5681078945399336, 2.5952351994214133, 1.8379721482268463, 0.6951465283635245, -1.0264293930860768, 1.3640947522553044, 0.4715966846957126, 0.4884327210803422, 1.3351787737925158, 1.5233027168688642, 1.9875837088524717, 0.6659314804182648, -0.4921292471065284, 1.2661593632699975, 0.7608262743399479, 0.5711303191280448, 0.1820367948942414, 1.4119507638380462, 1.1779911170396602, 0.9240985352530208, 0.9729677315134981, 3.511402841108502, 1.3074431248259508, -0.1915277548813561, 1.7666346499360512, 0.07283241624362291, -0.42925972402907164, 3.2332828974050525, 0.4226301507963558, 0.4866805086810414, 1.0699035019131666, 1.4828519981028787, 2.5802383568237715, 0.67164161301441, -0.2549298851473636, 2.3326997010160495, 1.188243776173108, 1.7971088881084862, -0.3462738692440126, 1.302791247495757, 1.3532218831504959, 1.2367946666515843, 0.27168175158745234, 1.4830971903886332, 1.6693903898871771, 1.8024734962155942, 0.16327189458591673, 1.4208515222313192, 2.9338786315347423, 0.2315269639882257, 0.16823918481948386, 1.3478220977392508, 1.8433561407613523, 2.4819532324972444, 3.7733532723571126, 0.1260835012724183, 1.4919056020748567, 1.7279604632963035, 0.9257471536256038, -0.5444651602204753, 1.8731429014973497, -0.27009516940248, 1.3928510142282104, 1.1567307029481497, -0.1653173834293984, 1.5717488531202117, 2.074405741129612, 0.043838826168330014, 1.5238313726053847, 4.928059187773512, 2.157767951660004, 1.6641270993666382, 1.7738084076264682, 0.7585511717343343, 1.0834749232427927, -0.903773521087827, -0.6442473114102614, 2.110241502119893, -0.09881658955182338, 1.6928850837823122, 1.2206907368557576, 0.33565971613181744, 1.6463132574799575, 1.190099825541074, 1.8690999102410073, 0.8830202586996528, 1.882682235466317, 0.6589586749157688, 0.33389702841293145, 1.4128998178251149, 1.93580776728967, 2.0526517777328186, 0.5062982967878642, 0.27849434795201944, 1.7897795156802525, 0.9393108182204754, -0.04441622681081059, -0.27217954434539915, -0.45810316476497603, 1.1332967862071726, -0.4639357891920377, 1.0104331354143252, 1.4711384123666083, 0.38804782406996385, 0.6071528426005908, 1.675076497250807, -0.26201697541838986, -0.9902545596168388, 1.5998198457023207, 0.3651256060832385, 0.4973600273819062, 1.8662133167728099, 0.29354279981304765, 1.3133077686066916, 1.6419391964906824, 0.42886643227029153, 1.6223040808567333, 1.119621340625834, 0.3968623469408632, 0.7938541245296371, 2.1202598777595267, 1.8294151844699558, 1.0214145037888633, 0.6836669809837947, 0.8673124193383595, 1.606793395181075, 3.1332971380364594, -0.23792814207779833, 1.8071410961759464, 1.6406307724139753, 0.08520272273479135, 0.30959858246919625, 0.8500673872704204, 0.6723304981965323, 0.4252536377408258, 1.2484517263571477, 0.4831451912686371, 1.2365869229846154, -0.4349821740260178, 0.7823795799371092, 2.5042020336181343, 0.8369343896335049, -0.022130582245448727, 0.7056975754757933, 0.1565952322104186, 2.562706662605917, 1.409565894912369, 0.5909349601090006, 1.0128386044309177, 0.21187651122910722, 1.5077350363416508, 1.978026262953183, 0.21764943860497443, 1.186926665378119, 0.17589805727382235, 0.38888817096876016, 0.46396554017829517, 1.1533342503065336, 2.9128532888136243, 0.4118168601726947, 1.5015370590878359, 2.8672670155427804, 0.5216511362393622, 2.3803429674019267, 2.2620178044634534, 0.388906138009781], \"z\": [3.258684347008743, -2.3468936483067617, 3.4495467953421137, -2.117685256159483, 3.2903105797706838, -3.422591035757695, 1.1113395499670986, 3.661305899770249, -4.086391884105076, 0.7428528333989659, 1.1839812441867092, -3.0449326643667405, -0.35120166836987066, 4.847328409377999, 2.3829624542323096, -3.5713847039755025, -2.5331865730661995, -1.0270657886574814, -3.6803933846170356, 0.6811276415402263, 0.6159990003615281, 1.8765317222228015, 0.8452065777455919, -3.7493636866598807, -2.686120529893953, 0.6424959040973128, 2.676788592899438, 3.0395102407753445, -0.6178761689571766, 4.254081095709987, 0.505208372962568, 2.668544638402305, 2.9155901259509127, -1.5059469588566903, -3.4954607320348265, -1.483825830123667, 1.2404668799494383, 0.28367442829057055, -2.3795250123644447, 3.242627289866264, 3.709866319548846, -1.491629044759072, -2.70254021454455, 4.702875513102322, -3.08107941794528, 0.19225626722770883, -2.6904074114382777, -2.953212820075053, -4.0663262663277315, 0.7690009743223136, -1.4257353273521605, -3.3290696073206005, 1.4158292709432159, -3.7382171921460228, -3.767631016492029, 2.1124112434645506, -2.9912942271999263, -3.3717142738694577, 0.3987013500518346, 1.375496071385217, 0.5613753741113747, 3.8811100367078186, -0.9092284351475532, 2.4686009396669624, -0.4624152223205482, -1.9058626760572914, 0.6377174928311256, -2.0776993726588504, 4.554842511324146, 0.7545052036470707, -3.399072886683177, -1.3070047216654817, -0.8341764316758091, 2.9431816422786854, 2.960602290428511, -0.26438189882256413, -3.949860919890788, 1.5784496174625176, 1.5735397175998953, 0.4816654029099343, 0.4245509930326836, -3.521780670747655, -3.6467479136200076, 2.5045528748271657, -1.0759351670616888, -2.5947848960230133, 1.7917364401317872, -4.111261313151027, -1.5768871262639887, -0.7783060968351565, 1.3735897942441024, 0.5914801527153397, 3.0696479018892866, 1.2523517297073994, 3.190186294333542, -1.1815177625584083, -0.8685337173177228, 1.3544468495563171, -3.1828541962163683, 1.6579370241178202, 3.6481300887570445, -1.9757744140785367, 3.469279381542714, 1.753504922752417, 4.786519506872077, -2.7829542463585675, 3.2457259809216703, 3.457318190260473, 1.1458627100492214, 0.9120381665845869, 1.5700467273088714, -0.04321859163685993, 2.402562532375753, -0.5977636569274001, 0.8202924342552684, -2.5686640509557224, 0.8123667606981382, -3.9786207221525154, 4.540964248669406, -2.9300012776654505, 4.894215230369053, 2.362023810689828, -0.6898009036656951, -4.274926575147926, 3.027945089498827, 0.13603809575386894, 1.050175912672521, 1.26718015488672, -1.8134663354956126, -3.593183935967797, 2.942077718688254, 0.4711496772186283, -1.2745349190535635, -2.2677960743079653, 4.912802257827078, -0.41538334464785676, -3.2120774001564314, -0.7608257143976012, -2.6014261124626534, -4.062773509132542, -1.78345923416548, 4.3803685121564975, 3.7530158958729487, 3.105924267108877, -3.072259423578396, 0.2790365615078896, 2.763110359581076, -3.0549563312904846, 4.527495042274987, -1.6992915057958622, 4.062535945018698, 2.7066557604713655, -3.7011337753535387, -3.7261816641031347, 0.6110400782366172, 4.0032506164479855, 4.590091016331575, -3.822158563396285, 2.4428101743668202, 1.735157368967287, -0.021290818187448934, -1.0777526945777258, -2.224356435544742, 0.8769612542062548, 3.636771071322724, 2.2305885756591675, -0.07328794948614537, 4.426706522681885, -0.036404060383882886, 0.7311684529444147, 3.1406420539066566, 2.9548301282135467, -2.7839556461033235, 0.49069348278227576, 3.816274697734933, -0.13848278260309943, -4.053811210996519, 4.089916671200225, -3.3308329079276673, -0.7923364030574107, -2.423325446444247, 3.0155463849437814, 3.062261446868069, 0.6166552670229448, 3.0193034601234077, 4.061508107826874, -3.0054926469586585, 3.949298087024948, -0.23926624017935527, 3.8424449073466675, 4.624549120621973, 1.8620644854509614, 3.837933717329303, -4.188238397028209, 2.3369356514502657, 2.44904709669414, 3.2575270691320988, -1.402339851774686, -0.06438249752982728, 3.3423362286964515]}, {\"marker\": {\"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 2\", \"type\": \"scatter3d\", \"x\": [1.0053462232979113, 0.5411349546076902, -0.08849429213099413, 1.122647623521421, 1.725528204291852, -0.5641088090536897, 1.3388113371379755, 2.5814797329800037, 2.202354524371522, 3.101039182110844, 0.7461681632287216, 1.6579941878859539, 0.016210583575918203, 2.0791185526992084, -0.206393303935688, 0.7253257866903444, 2.531730782723006, 2.6604578524741536, -0.736686570925301, 1.3915746059832559, -1.1078642402020433, -0.3299741804113241, 1.3737658885119106, 0.47608607793370183, 0.9360954158050104, -0.0049987294281950145, 0.4593749097784109, 0.8908770076996043, 0.43552587405881027, 3.0031389751716797, 0.2865936239634803, 0.8854757387835086, 1.6261747424604835, 0.4591266191141177, 0.7195705569594186, -0.5448157203630886, 2.6771297341334965, 1.58782966876862, 4.139078359612575, 0.8695813939505823, -0.637855179697552, 0.22886126339199686, 0.3407854752726426, 2.720128230269119, 0.9918714794813693, 1.0788809945450077, 2.5529038398732036, -0.05752614641525233, 0.10726186511230373, 1.9442859524251346, -0.42591203705421243, 0.3366362208747551, 0.396023729519687, 1.0494703113665511, 1.2757447338277965, 0.7563800972969873, 0.4119517724557844, 1.510711002293919, 1.1012744272292094, -0.702045099310064, 0.3244207776540541, 0.2218177805067849, -0.6593637636376875, 1.2648005347980318, 1.6510780678663557, 0.9326282247199361, 0.3354193464077402, 0.1227640355979206, 2.025967608802522, 1.852031367072894, 1.5401627842035943, -1.5199695102512814, 1.5883549052608168, 1.378402429921906, 1.088282770568182, 2.1906142610110573, 1.3442033896724883, 0.5028602140768393, 1.402164377601801, 1.2954404665310009, 1.888156728106126, 2.224699773364092, -1.0779734652288195, -0.9073692032842067, 1.0187784909939623, 1.3333193806430441, 1.8456219234226434, 1.2402212383594555, -0.5074952152100431, 1.3451146093912727, 1.645153867858272, 1.185422061169148, 0.5316577845303392, 1.8465703465257002, 1.0729654834046691, 1.488344726292239, 2.0578256804581203, 0.7248485336441753, 0.5470200229263211, 1.771789079479408, 1.8866082498868342, 1.4215182849085943, 0.21108185703795945, -0.813497367552054, 1.667159659280641, 1.285442506847788, 3.4935707452886975, 1.111533655819166, 1.4904138107496794, 0.19407037450082942, 2.9188213953984317, 2.624336235678153, -0.008953340223844641, 1.0568144326264175, -0.7255552988467493, 0.8389027682672714, -0.031892801216434785, 1.839265021006434, -0.3151819109084486, 0.6576501174920419, 0.7353331797806998, 0.7494522255039451, -1.749615534299814, 0.764550292341758, 2.885106448283962, 0.7258540612071562, 3.6236735269825084, 1.0142016341420486, 1.2019576672756567, 0.4151218889070385, 0.9666063455723156, 0.2732168247637744, 0.7400375281816716, -1.7028009446354577, 2.2704483561887274, 0.6506122589315038, -0.4350310312944903, -0.13228956237488787, 1.9539725563328718, 1.7357820259731547, 0.46522443722556317, -0.24602256347112283, 0.7549758163577688, 1.7248604897628894, 0.6319763088706551, -0.10220002272261852, 1.6046974338320237, 1.3325094981474541, 1.9420933774779694, 0.46705682231138157, 0.28188514779766727, -0.5870640198644554, -0.30546400510075444, -1.1226348004708178, 1.2151432309353802, 0.44442678377015554, 0.9616294727526091, 1.1164610006986082, 0.6292785276010582, 1.3138198364568425, -0.3745448253972954, 1.1742061588614243, 1.0187943489755147, 0.4496870657683495, 1.1996743753189931, 1.4162348172739045, 2.0492774455348597, 1.2610355672733178, 2.69803740786033, -0.8768665699796652, 0.3629651168885355, 1.5277801675044906, 1.1904183841916915, 0.37652594520118177, 0.058715915282322895, 0.005046703421156762, 0.03203868808814103, 1.502963136088941, 0.12485981101560784, 0.4131074387955832, 3.610138707152606, 2.171743647209712, 0.9643274227917812, 0.36077463022058376, 1.721589734315465, 1.6447724259636807, 1.6339674438929785, 0.2586460096690575, 0.9241112660554917, 1.181175368977971, 1.387631389687613, 1.5707353386959488, 1.8502268037648903, 0.9284624251053202, 1.4380180131919518, 1.2768886825458081, -0.10219310282941407, 0.9596714731075057, 1.0288720503393245, 1.956628909578329], \"y\": [1.0478991472497579, 1.6350277472739052, 0.8548367448795889, 1.5244970207691693, -0.14663082867730282, 2.3026576576741453, 0.2368792312733652, 1.1179362774510895, 1.0688385868288017, 2.7896608524518265, 1.9905668769617677, 2.3953907188398746, 1.699464976282151, -0.7931259459169793, -1.0791027641775046, 1.7315714726893894, 1.075543464085139, -0.40708487631443435, 0.9433662456000896, 0.9666660119049412, 0.9091375065010157, 1.6827658285069114, 0.041743905839028095, -0.07992301476550256, 1.9738170378020872, 1.5139015140680439, 0.19162510518612685, -0.055483136059492955, -0.22129851852582316, 1.0359530166200444, 1.2181635954639756, 0.7747100549907235, 1.772318322073085, 0.4129234969687591, -1.3469277842493335, 2.393599070630856, 0.7460948665540348, 1.3173356441309894, 2.14146457595828, 0.02577705814847564, 1.2074417088719134, -0.4500612785711462, -0.10269417500820066, 1.8988773694694152, 2.508879657525946, 0.12187617317272992, 1.5494466857121187, 0.8059398649896761, -0.4098359050560645, 2.94674910413021, 1.573976278383325, 0.5033504556608888, 0.11911668663533681, 0.15280334296144582, 0.9487796468877413, 0.07469186736238043, 1.7701604568513845, 0.003331825692687307, 1.7660780671309375, 1.5539838426647483, 1.5817548791384382, -0.8401707296654666, 1.0490250921936797, 0.07800238959968253, -0.6940057105190329, -0.23469370278152968, 1.0483253989550818, 0.6079257164987355, 0.41182887675176294, -0.1517946165447588, 2.469753830215397, 0.18752403650845118, 0.7929847184742014, 0.3842058374135475, 0.8412790000309315, 1.2593952196031661, 0.5800701126112735, 0.55898453654688, 0.5707845299348699, 3.1159785454050217, 0.6676021326509226, 0.5839460335635773, -0.02779617662763556, 0.6416138072523458, 2.7092146190780078, 0.7766156693449094, -1.254366904889825, 1.7859369682853086, 2.1661164524103906, 0.5765924747867328, 3.315088908828814, 1.2530737366402531, 0.13353967392976251, 0.12717822510538623, 0.5130035075308852, 1.3401857880476178, 0.48001188084454294, 0.002099726969374771, 1.3846773832672286, 0.05980471697328327, 2.3821429703806007, 2.9134904814871385, -0.2689898984154462, 2.5252946169012, 0.9433285507181618, -0.1474943436111491, 1.1317476840376663, 1.7399566416968637, 1.228261351900208, 1.4806863952197757, 2.3717253814684147, 0.4787891552758795, 0.8717537237158487, 2.115584892884207, 2.5594557264353153, 0.5647726520882986, -0.687212039078793, 1.0747514627847436, -0.32039984666318655, 2.7016538403745987, -0.5325320494964481, 0.7219442033611125, 0.9446435730619822, 1.7098184274001955, 2.1485913632116103, -0.1281604422434124, 1.060376258864757, 0.9754032248787261, 0.8528170873615054, 0.4424490017625452, 0.44595031595286305, 1.108511126393326, 2.533398704653883, 2.112847736368766, -1.11392866905102, 0.6212968098274159, 0.20697562404597092, 2.7865304217150224, 2.2964162402096786, -0.15112672506749925, 1.498942697189439, 1.7269388072592613, 0.6178507844537896, 1.4529494429358398, 2.1819967461554697, 1.6279782346117035, 0.684401381736762, -0.2755750538518116, 0.8114827006097931, 2.0695192067245607, -0.4359991993275638, 1.617858514936605, 2.789103503816671, 2.729625082952808, 0.9013959761841321, 1.4069399294905025, 2.1248733801083874, 1.153240426040835, 0.94194098887929, -0.7436052015846919, 1.757796218228521, 0.8124194648626935, 1.3543775408589087, 0.20647804423438854, 0.0024983086674614796, -0.7358721171722444, 1.481837596887842, 2.0019043262143867, 2.0342027892059944, -0.304594953694888, 1.0266011762688163, 0.26006661503867146, 0.22984799877306517, -0.43416380273602884, -0.3781124241183429, 2.074242352426248, 3.683849777903299, 1.1884499959764152, 1.7140021729449866, 1.124395321755166, 0.9020619597796339, 0.2830752353125734, 2.8054229118731526, 2.8478851245864627, 0.42653600640792033, 1.9915696047681446, -0.6009253831459289, 0.7476419384840061, 1.63280733196496, -0.3614526965598033, 1.622523773718287, 2.101911895308829, 1.4681578598017784, -0.6934356498126035, 1.2117483478221456, -0.30171126274762883, 2.0737438494477587, 1.6948252382191513, 1.0303379245147108, 0.47386568700849985], \"z\": [2.2691713148875374, -2.0899543480983866, -0.14668479181422, 1.428206743405223, 0.046612735210436185, -3.1388754784051094, 2.032012603341035, 3.5961247191397536, -1.7261677655962386, 0.428547203684591, -3.998212512965758, 4.358446145391223, 2.974857180694226, 4.071218838520224, -3.2799074705035185, 3.6776157578494404, 4.71386360349959, -3.9166386570188223, -1.7191394556728472, 4.104226946436356, -4.13839072609551, -1.4909646940083623, 3.75323368676289, 0.6874664622192732, -4.190117100771859, 1.2198147257940795, 2.557039284820368, 3.5640560053281973, 3.9337205676590834, -2.093314522860525, 1.076240261999641, 0.5097112689588252, 1.2255484523586277, 4.0936708119568195, 3.810707798749636, -0.3306331040014294, 2.8403581063442696, -0.21104560917896542, 1.158321977456545, 0.4258607135538117, 0.19784343321592424, 1.2409906803963962, 1.5498518360517872, -0.9637591345818088, -3.011839485821713, -1.2454126459062929, 1.3345087305920265, 0.4647197671443717, -2.282043454801086, -1.1760414485839248, 0.4286669777473815, -0.6391194513692544, -3.2536042102452174, 3.7667936144253744, 4.861739224224255, -0.6616376870445504, 4.075059381419656, -1.4482946446874436, 3.2772367459155873, -3.832522248142243, 1.270021853646477, -0.7607709542262344, -3.1872524307443904, -3.6490474394785775, 4.390030222420858, -0.9631414888735526, 1.568243511301029, 3.761956315173599, 4.027439933337176, -2.9923305505205873, -1.5806177813261204, -3.9008101442434544, -1.1362789483079094, 3.502570740925628, 1.9086584421429675, 2.979822680114302, 3.288538410784252, -0.325483010384378, -0.8777165634571817, 2.051196506697865, -0.3296920321516823, -1.1112573408407638, 1.6580438799720056, -3.642545548339681, 1.9470112339813221, -2.292903461775565, 2.049989029281593, -4.050401587768048, -0.7573748910912999, -0.7224748552101405, 2.6772528596769263, 4.005557289313064, -1.405879629861492, 3.328100397512311, 4.569234821899718, -1.1619481497758803, 0.807611655039997, 3.3921993540194277, -1.910278781510316, -1.1429207150544158, 0.8445179003850827, -3.01947858597876, 0.2092066991430448, 3.8230414092996785, 1.4257315707856977, -3.940321843643735, -2.2018950685643177, 2.362691309468464, -3.0983660673192084, 3.02806817312375, 4.411416682153494, 4.752521372727557, 1.1309411143127104, -2.4283422000306136, 0.4158126255318706, 3.686973431626207, 3.335593308564361, 4.522255693578545, 3.579733982885589, 3.940993229822567, -0.16544493025805096, 4.24837195291688, 2.0448907942819963, -3.0634407465507105, 3.122486786346431, 4.53518955475584, 1.9442475097532874, -4.172471184261659, 2.5319534250352236, 2.794592784096732, 3.5054982145512605, 0.19748096710922258, -0.5459481503175767, -3.279827796208691, -3.636963583980611, -1.5388400924646426, 3.0308830563254627, -3.6315591302657304, -2.1591053221367615, 4.274643107744415, -1.3363667878422465, 1.6086826939296, -1.0010500898722001, 3.9000819870141648, 1.104473425088905, 1.9977595165143969, 3.2895763574181807, 0.497932221711082, -1.7987987129264629, -3.069042838176486, 2.607376286676807, 0.4144616696496488, 2.2226612900378617, -4.2693716381855795, -1.3846127322380095, -1.80818000358085, 2.9793362263314567, 4.096591340099721, -3.4802565286043574, -0.7255950873107824, -4.264355078946381, 1.847896121940809, 4.473558414581362, -3.3318372197454, -3.859752884875111, 0.31541333430298035, -2.3760885127129074, -3.821261690690469, 3.2862996026642435, 1.7645070176612894, -2.3127710767089606, -1.5782101711621812, 2.514608195083391, -0.6565150900527548, 3.914447349965373, -3.768294325212938, -1.8340371896183507, -0.8045785819025122, -3.1563838385413514, -0.5719542802333883, -4.213016180757187, 0.4874289908381044, 2.841389605846218, 4.7066020374183015, 2.805999134213195, -1.8525934722224524, 2.8335463889348107, -0.8724828098024031, 1.663919157403046, -4.086794627369655, 2.9003380386256987, -1.5079100809869916, -2.027822694859028, 0.06990370495634846, 4.399250064680535, 0.7224016672447675, -0.9284195474869885, -3.0046485858224155, 1.0346152324612277, 1.566938568584412]}, {\"marker\": {\"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 3\", \"type\": \"scatter3d\", \"x\": [-0.9019998923063296, -1.4429913951590747, -0.7735231212719915, 0.28030837306642686, -1.1905253144588146, 0.47526885455878665, 0.05201892045814982, -0.7277284303384353, -0.916107213579771, -1.5274023518313198, 1.3438456373463272, -1.4542128815904543, 0.6104555676508474, -1.42840221060778, -2.3707368902257793, -2.023773490113663, -1.035363038121658, 0.580815512635348, 0.003567637777463384, -1.050430812433436, -2.144673217640712, -0.8302933574835307, -0.7051775989909213, -1.6502089259594912, -1.6353240229780086, -1.649849170038959, 0.4482776119027265, -1.8486295928894168, -1.5630199789551145, -0.7931094761212524, 0.5777616579189253, -1.624769790383664, -0.7085454366007203, -0.3285800250801949, -1.1804068579383231, -2.406287352133747, -1.0337746636316796, -1.527731513033341, -1.0167439926620634, 1.57633841247756, -1.4990088470234233, -0.30477632884921846, -0.4046549885624703, -0.3977968254129597, -0.16347594477468597, 0.08753006145624354, 0.40918263753337847, -1.1703855335945397, 0.2300983451662506, -0.6241184775742149, -0.9706931650690133, -0.8051646080887476, -2.3864437274134227, -0.3418954644402723, -1.3137958423877603, -0.7457404253431722, -1.0971587281528212, -0.380218041148329, -1.455162179253799, 0.0946231445278729, -0.8644305341561381, 0.2184118986626471, -1.5698497553613353, 0.5961327856951526, -1.5660546568492149, -2.476325126562922, -0.5513824912331532, -2.0411997202287324, -0.75143255219378, -2.3053366082076527, -0.33708624201380455, 0.8827420069117871, -2.555351879144932, -1.046477303392035, -1.2459526483439904, -2.276009227732767, -1.0837573788503265, -0.6505737685101375, -0.4190927643315986, -0.3447108763710335, -0.7996364947543555, -1.0914901854103192, -1.689616964765869, -1.040943109420756, -0.8693909177929336, -0.14292038667700113, -1.4549071064316, -1.4611497056890488, -2.6148709177955745, -0.19883606204341397, -1.985882232538095, -1.0036729750849094, 0.5327923906620333, -1.2252844132236416, -0.7875429405558376, -1.2520101363863387, -2.021203448013169, 0.8328344696889127, -1.5823465466310584, 0.42671530392800827, -0.9392037511559186, -0.2881251888925569, -0.0873041733399057, 0.07007332238514019, 0.3431514435888765, 1.1158358835843152, 0.7699049578735917, -1.6641543747301155, -1.3266106631836347, -0.4669421558565745, -1.0248307675028177, 0.7613196865780811, -0.9612534867929297, -0.37448666861589286, -1.2624087027594282, -0.5929713610914504, -1.4926336100106208, -2.2497315440467953, -0.7711597524391338, 0.7168514483871442, 0.0997709465901413, -1.1760024681807861, -0.3349230585723336, 0.505409318279145, -1.6377935558585601, -0.496310652073084, -1.561064590378261, -1.0260536981584214, -0.44577150343615146, -0.2132132182302492, 0.17122609631404306, -1.3695273011776683, -2.319994782476119, -1.476845584853795, -1.047837958967317, -0.9216761054505536, 0.01574559324875291, -2.5870158206933125, 0.5301022919820362, -1.3554688986812584, -1.327923583854463, -0.6105970359175916, 0.0504273130472086, -1.2641068767391994, -1.0730011903450278, -0.2581440151976496, -0.25303551684867165, -0.9198273529954855, -0.06575650279367107, 0.01752296806411091, 1.1292061142920953, 0.12984974571347419, -0.3752452841192315, -1.6359647442476484, -1.194410578074801, -0.11292091031850748, -0.8466401399118396, 1.450406599715809, -0.7949691121695625, 0.1271409151691305, -0.348781475367237, 0.6653680002402484, -0.6914474775463058, -1.0653923644132264, -0.6723596840920145, 0.645262171063544, -1.2489303282192445, 0.21272673528875674, -0.39091970493082706, -1.3033813947726371, -1.1529894384671222, -1.1764556837589135, -2.117709198746709, 0.625680450024787, -2.010775818770708, -1.6514545770281666, 0.6741194531417958, -1.7016048983692647, 0.0009607341623791843, -3.5482735057184978, -2.4167410597877597, 0.04256348783818509, 0.4113377940623997, -0.39361716176864925, -0.22623301748202151, -0.8937615806481357, -1.7687059266230718, -2.7260571064021573, -2.0079198072366684, -0.8165886008461352, -0.06372868437831969, -2.0089771124106277, -2.0016967552555744, -0.4391934121107609, -0.8925642168194334, -1.6131254422432768, -2.624139571169893, -1.020021752538091, -0.7717079496148392, -0.8723271374209132], \"y\": [-1.4713135860838087, -1.3152169838827923, -1.488109001761644, -1.9120984531251168, -1.4483285761784848, -0.7996022308718287, -2.514605698957878, -0.09297535295379422, 0.08631239597664964, 0.43690266882452145, -1.3699326943677859, 0.48180070751294934, -1.5330828630442352, -1.2872939950506603, -1.9366132126015494, -1.782809361948263, -0.7612059562719092, -2.017873623398654, -1.2181727036207766, -0.3119865963347407, -0.6101134686816367, -0.49792044506346667, 1.5033055889601088, -1.5413788821863097, -1.5663376767386938, 0.21226390179553167, -1.5819053906269818, -0.5193674378776145, -0.3546932486732348, -2.5453795863196045, 0.8309902496530819, -1.3952818093642612, -0.6590039897645419, 1.049507583634726, -1.8139053639190075, -1.7452210116323479, 0.8296446354698706, -0.7718365991296201, 0.21162845834935307, -1.5412481939189977, 0.06457606418552042, 0.8828137116696286, -1.366316884977268, 0.13038069141070507, -0.4828078667191753, 0.19215738195465226, -0.3386066897402733, -0.8504178021841328, -1.8329082044842964, -1.40102927998438, 0.30344785179601574, -0.9526555354102162, -0.23915586031565617, 1.2055501692723563, -0.7765648968343695, 0.6082952741161283, -0.7155231111881841, -0.8097423392949387, -0.8021152053527786, -2.046585484356313, -1.713809411931261, -2.552967895776054, -0.6154129673509462, -1.0670357946648306, 0.9179370086352654, -3.2417964919130364, -1.511870270095995, -0.27779393456770995, -1.5751073630401304, -0.110484591878795, -1.1011149268691385, -2.0910068112090547, -1.705436093219617, -0.7519028351759567, -0.6410612994345408, 0.47199274898038834, 0.13914093608038347, -0.5343164496684776, -0.5435379478464493, 0.3551398068106395, -0.2771339682204992, 0.46827404747476886, 0.8361519953538123, -2.458749279347601, -1.6943674187992703, -1.6653839293701793, -2.9264845855119686, -3.4712704433500896, -0.22471789590567892, -0.5662239923464938, -1.0486441973205844, -2.1810127622991815, -0.10548372891770863, -0.9725884954247047, -3.0816543868590935, -1.6953182431120633, -1.2865962994916262, -0.3466275303054751, -0.416222215193938, -0.05728809747051755, -1.65958553294954, -0.5988212811586711, -0.3524094691095321, -1.545700004137352, -0.7985369744569217, -1.7026626557067068, -0.7982197115927749, -1.493346655717116, -0.5675408610887767, -1.5849168510608242, 1.1841555232311745, -0.5551454328796528, -0.877621849101094, -2.0427899641226483, -2.701207836016001, -0.3401502379790693, 0.6047609811304637, -2.4930059923733268, 0.06757092157978573, -1.4678562597106137, -1.0392613780109663, -0.09906295190012648, -2.6072134045146775, 0.4070745746946518, -0.5964578092599371, -0.734229602208247, -1.6847547895698616, 0.1956579403584504, -1.377860496066903, -3.904236653883434, -2.7737282521248816, -2.1415614162387993, 0.18352299884800005, -0.6467213561253848, -0.5136321830726847, -2.3080769854557026, -1.5034103953818114, -1.4364855675866246, -0.1331549229800687, -1.3560863085518453, 1.1173520701620445, -0.5615502799840657, -0.7565420916744423, -1.2001888350088792, -1.037949996896128, -0.9470384804891449, -1.0822947316391607, -3.0372690328746015, -0.6467370631693146, -3.952882280025918, -1.1423188516310643, -2.060237922464566, -2.0740116957293355, 0.9514540433144338, -0.7783159305834568, -0.4946266567014689, -0.6279033661198984, -1.0587453461590106, 0.07119654287431132, 0.21023884203507803, -2.165352675111614, -2.168758467682284, -1.7690232734803737, -0.6648097046161671, -0.5698299507229354, -0.5375983028265263, -0.017063226857244707, -2.251609713505359, -0.2851180936612262, 0.4026043083508555, -0.8719683053378113, -0.984116354555831, -2.468206417695256, -1.8635209367745178, -3.195492689049109, -2.34895853288766, 0.029560794824287973, 1.2964748987864683, -1.331182410080541, 1.3357345412610866, -2.6775691950535334, 1.4874538697699187, -0.425065461877146, -0.12989866156331098, -0.7133107876515106, -1.0638169339684296, -1.2861627697491609, -1.1002623399762779, -2.1251664351728374, 0.4192183866279362, -2.6012066608923012, -0.040835075703205326, -1.229025124347394, -1.9872772971807189, -2.3601080466542106, -0.6739657649282186, -0.5509132038855248, -0.43670789234469953, 0.39081178181495146, -1.4378011769543972], \"z\": [-1.9050153866720034, -1.6224991689364172, 2.229538384192111, -4.232240786928177, -3.06492054975491, -2.0713118543585747, -3.600746081145892, -0.060692434895127434, -3.899324876867506, -2.373293392459642, 4.754415470177859, -2.0705378199184405, 4.479625245395381, 4.753964938726398, -0.26998834811001693, 1.441268216295403, 3.0131523207393673, 4.560003221548936, 2.687377374496963, 2.327495706059432, 1.8498817566807233, 2.8195591920794847, -4.221190369750035, -2.193335954944688, -1.3347576353942792, -3.423847020016334, 0.1352741519247651, -1.6374521413985992, 4.86578477526467, -0.8726234099962733, 4.1749149876088385, -1.0074476561160366, 0.9032859000533318, -2.0851090263814904, -3.3647170703603484, -3.9452112000508137, 3.6979899700991776, 1.065303741363934, 0.465880841646773, -1.045031829081092, 3.9360816397494247, 0.09322462468573534, 1.1530883384801394, 3.589596672028069, -3.667513501542653, -0.5246613992572793, -1.2376200077655146, 1.7395529220993602, 0.6726579155139483, -3.957757264792942, -4.30453241418569, -3.8002166782612714, -1.4960646130538864, -4.291032478645067, -2.233805610578901, 3.528616333519283, -1.3012877685743884, -2.627852731864345, 3.1433186360831584, -0.6743868863341596, -3.580280895786802, -2.7598125945441114, 4.486937315303443, 1.2493260788040645, 2.703027495369538, 0.3937935006086093, 3.335476955939309, -0.041753644884223284, 2.4258229007380354, 3.146802910558624, -1.2060495214184486, 2.169050461087849, 4.439563241723532, -2.7993836385153843, -0.7560054460385568, -4.19922102970879, -0.2638445179517772, 3.239658363381375, -3.8275980784527937, 3.6598600000690444, 0.7983382431438582, 3.6843754727718716, -1.6267367350505437, 3.0508797224366395, 0.9741187451114088, -4.192400022248368, 0.762807025980103, -1.0458802046947788, 2.4601499735376393, 2.931578896926168, 2.0238572359838987, -0.852339349262293, 1.8949250449161337, -0.44228917634928466, -1.739308780274007, 4.746809681466777, -2.648619710157139, -0.5783132545360683, -0.40171356189321017, -1.8646566379369816, -1.825348487319526, 4.637573840924761, -3.6067990766588958, -3.4546130620038737, 1.6828099841915867, 4.605056623545405, 2.219461074273571, -1.8016897173431627, 4.436267738890772, 4.417825698279497, -2.433793711342372, 1.9746285053411867, 1.0773410002644468, 4.53641746721712, -2.5639011680428068, -3.3638915015864113, -3.4494566275853114, -0.2974548240578301, 2.3747361260627455, 1.3576977049745134, 2.2879940465192306, 3.796777007335809, -2.0114565781377367, -2.0189949853924825, 2.460467801777323, -3.555413893060072, 3.128516761940129, 0.720293226361024, 2.5541614057838737, -3.6725810833311625, 1.0914010432359973, -0.9028618517527995, 2.9650675975725855, -2.011388732817765, -0.21875029249157762, -3.7136885006351377, -0.20606512084414685, 0.33600314795491926, 4.255093562109316, -0.5222703004709817, -2.8320957779735036, -2.5906196835724207, 3.211937586887543, -1.6346591817444427, 0.45025241642539626, -1.0382110144657117, -1.4628535601983792, -1.2879242860834124, 4.3844453712279545, -0.6786750850084844, -2.5147604766075187, 3.4315159987684556, -0.2495405457023816, 1.9149255528187146, -2.1848291200987293, -4.286247049491075, 0.4495848018382942, -4.128027844659832, -2.074602872186974, -2.2516448334669312, -2.0393757632946596, -2.1423106006435186, 1.3854770593790962, -0.34432590656132156, 2.1780637412468273, -0.5011547331905306, 0.6118099389115184, -3.2225314490136974, 2.0850678497600494, 3.9648558091084425, -0.4336307783158966, -3.667159762665662, 1.4974324971008262, -4.212508792883427, 3.414983266426776, 0.17409315846489637, -0.13797711831126147, 3.8437698768879525, -0.7239582732384409, -2.4260372436876994, -0.7093812350481019, -3.6900677360566103, -0.8380482256784294, 4.902044709408507, -2.2724182109344153, -3.670227129249584, 2.368180303988588, -4.227420476894119, 0.1638883319457527, 2.830478357248529, 2.7723629139054022, 2.6360138872198737, -3.0090657924707287, 2.5483604412632923, 3.9162432445670543, 2.7003503694229742, 3.904410679550292, -2.8599374115439185, -1.803107448574992, -2.074937222461246]}],\n",
        "                        {\"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"carpet\": [{\"aaxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"white\", \"linecolor\": \"white\", \"minorgridcolor\": \"white\", \"startlinecolor\": \"#2a3f5f\"}, \"baxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"white\", \"linecolor\": \"white\", \"minorgridcolor\": \"white\", \"startlinecolor\": \"#2a3f5f\"}, \"type\": \"carpet\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"contour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"heatmap\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmap\"}], \"heatmapgl\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"histogram2d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2d\"}], \"histogram2dcontour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"surface\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"colorscale\": {\"diverging\": [[0, \"#8e0152\"], [0.1, \"#c51b7d\"], [0.2, \"#de77ae\"], [0.3, \"#f1b6da\"], [0.4, \"#fde0ef\"], [0.5, \"#f7f7f7\"], [0.6, \"#e6f5d0\"], [0.7, \"#b8e186\"], [0.8, \"#7fbc41\"], [0.9, \"#4d9221\"], [1, \"#276419\"]], \"sequential\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"sequentialminus\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}},\n",
        "                        {\"responsive\": true}\n",
        "                    ).then(function(){\n",
        "                            \n",
-       "var gd = document.getElementById('3a0da9e8-105b-41f1-a930-411757d94880');\n",
+       "var gd = document.getElementById('1a9ab042-7be8-40f2-a456-9deb3c302edf');\n",
        "var x = new MutationObserver(function (mutations, observer) {{\n",
        "        var display = window.getComputedStyle(gd).display;\n",
        "        if (!display || display === 'none') {{\n",
@@ -7953,34 +5504,30 @@
     }
    ],
    "source": [
-    "X, y = make_classification(n_samples=1000, n_features=3, \n",
-    "                           n_informative=3, n_redundant=0, \n",
-    "                           n_classes=4, n_clusters_per_class=2, \n",
-    "                           class_sep=10, flip_y=0, random_state=42,\n",
-    "                           hypercube=False,)\n",
-    "\n",
-    "plot_3d(X, y)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "Setting `hypercube=False` means that the vertices are the one of a random polytope. So, it is less controlable, but it adds some difficulty to the problem. However, we see that despite the huge `class_sep`, classes are overlapping, which can be huge drawback depending on the situation. "
+    "configuration = {\"class_sep\":1, }\n",
+    "sub_problem_generator = StumpsGenerator(n_classes=3, \n",
+    "                                        n_features=3, \n",
+    "                                        random_vertices=True, \n",
+    "                                        errors=np.array([0.3,0.3, 0.3]), \n",
+    "                                        random_state=np.random.RandomState(42), \n",
+    "                                        n_samples_per_class=np.array([300,300,300]), \n",
+    "                                        **configuration)\n",
+    "data = sub_problem_generator.gen_data()\n",
+    "plot_3d(data).show()"
    ]
   },
   {
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "## [`make_gaussian_quantiles`](https://scikit-learn.org/stable/modules/generated/sklearn.datasets.make_gaussian_quantiles.html#sklearn.datasets.make_gaussian_quantiles), the concentric spheres"
+    "## RingsGenerator, the concentric spheres"
    ]
   },
   {
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "This generator, also from `scikit-learn` generates `n_classes` concentric (possibly multi_dimentional) spheres. "
+    "This generator generates `n_classes` concentric (possibly multi_dimentional) spheres. "
    ]
   },
   {
@@ -7999,3058 +5546,1838 @@
        "data": [
         {
          "marker": {
-          "size": 1
+          "size": 3
          },
          "mode": "markers",
          "name": "Class 1",
-         "type": "scatter3d",
+         "type": "scatter",
          "x": [
-          -0.07385675071748174,
-          -0.13884030977294337,
-          0.0887959618070845,
-          -0.1376717783627909,
-          -0.13101816006260733,
-          0.15845731350106876,
-          -0.017059012692199487,
-          0.06334310717889709,
-          -0.17259095809025235,
-          0.00014641700780300282,
-          -0.03223418129225337,
-          0.24309474233368158,
-          0.1783608948024866,
-          -0.1360197426323184,
-          -0.08870955797679102,
-          0.2292202260770861,
-          0.1912418555271127,
-          0.15785375000545018,
-          0.12257106633847821,
-          0.10245116929423646,
-          0.13579923259098656,
-          0.20938865595920103,
-          -0.07750583564048284,
-          0.10627939475397655,
-          -0.20325609020324312,
-          -0.1181728971018889,
-          -0.09713652312093687,
-          0.003707855629233305,
-          -0.20143739315555761,
-          -0.2744824606899228,
-          0.1863135967165523,
-          -0.17680958608498057,
-          -0.24700427531753613,
-          0.08854709499304801,
-          -0.04535265980999813,
-          -0.12328707809184343,
-          -0.15644993759959525,
-          0.18473202222404755,
-          -0.002386101718109396,
-          -0.05228882509393153,
-          0.22845154488116481,
-          0.04005754604845311,
-          0.260691396746511,
-          0.2631183029969379,
-          0.3841697205369157,
-          -0.3660064595672547,
-          -0.2497262805329516,
-          -0.30723522881736276,
-          -0.3880071032695966,
-          -0.3285340415762599,
-          -0.330714691016733,
-          -0.27693735786594526,
-          -0.24653428851496087,
-          -0.12437005068541039,
-          0.32752110967621184,
-          -0.11023665879364462,
-          0.12965504267366232,
-          -0.3565089774430121,
-          0.431596953722636,
-          0.02687251712140934,
-          0.140677583704298,
-          -0.42708202126297984,
-          0.35050002429677934,
-          0.29985644017760793,
-          0.14075646060093044,
-          0.013034759074478425,
-          0.42576194742617934,
-          0.2704045247185687,
-          0.27891978472925527,
-          0.3633877253988156,
-          0.03519531173031481,
-          -0.17502210566851067,
-          -0.06838649723320765,
-          0.1530593365394902,
-          -0.023767672435067066,
-          0.05434248758709988,
-          0.40986254737999606,
-          0.19729801296922392,
-          -0.3323699901242327,
-          -0.12414245639436074,
-          0.3862812962188097,
-          -0.364898726718074,
-          0.08133572057843921,
-          0.1919761753451652,
-          -0.21582645823484464,
-          0.19869125513371505,
-          0.40805161436310566,
-          -0.3132794317041059,
-          -0.34215895457991924,
-          -0.307935365744254,
-          0.13952327474111734,
-          0.1692845457751436,
-          0.17321752359499448,
-          -0.4947806516707591,
-          0.13725482212717502,
-          0.09137317404762424,
-          -0.4325860726994568,
-          0.014851958849492251,
-          -0.3183318819938198,
-          -0.4721914527168945,
-          -0.3377548196918664,
-          -0.23835577602041833,
-          0.2656586164505726,
-          0.20302744425673644,
-          0.301147731519689,
-          -0.2912409957597386,
-          -0.27245785722433025,
-          -0.18855167022084257,
-          0.3697005190348798,
-          -0.43330703847593394,
-          0.39479674596305825,
-          -0.2999803881714736,
-          0.13920191483582164,
-          0.5255670810959374,
-          -0.18628602008325723,
-          -0.405640295174099,
-          -0.4390055468067455,
-          -0.18307346258907786,
-          -0.1389228534185601,
-          0.17712519311831632,
-          0.3100491682981396,
-          -0.28781813705969606,
-          0.2347455429659019,
-          0.16422816421819242,
-          -0.044260025193429184,
-          0.2324621389629652,
-          -0.5080167807518858,
-          0.4395176983121514,
-          0.38697464933064235,
-          0.5366435522745653,
-          0.2190763251535635,
-          0.2962911829688,
-          0.28978555137091455,
-          -0.20893613658557697,
-          0.5547990125207349,
-          0.351229945905575,
-          0.4265179228448181,
-          -0.3751209589026496,
-          -0.3445226216724774,
-          0.30321905526843157,
-          0.1507527815529774,
-          -0.5367878528048122,
-          -0.009784764099572822,
-          0.5929025125771159,
-          -0.030280703318751868,
-          0.3836478860205044,
-          0.3229732985924259,
-          -0.018671689808021173,
-          -0.10219013207100838,
-          -0.3904806593385539,
-          -0.5191392716857622,
-          -0.2329547637729252,
-          0.19564994049818274,
-          0.5811728343179269,
-          -0.19725657973729224,
-          0.08506185693060318,
-          -0.24233575864714782,
-          -0.5768649846607912,
-          -0.4414788588687785,
-          0.053708485010306416,
-          -0.44233962829476436,
-          0.34115951655390814,
-          0.6070166059050921,
-          -0.1972003391643207,
-          0.2840530827782874,
-          0.4184757871705708,
-          -0.004611266221004902,
-          -0.635312802603434,
-          -0.00865977612770461,
-          0.28229337720066144,
-          -0.3842593407334328,
-          0.6203888252234194,
-          0.18432418749151883,
-          -0.22616635263922213,
-          0.43553224444454086,
-          -0.2595278739000622,
-          0.36604020371610274,
-          0.1856588962146133,
-          0.4207493702981369,
-          0.4951938646620312,
-          -0.13483281863269328,
-          -0.2650383347481383,
-          -0.5466004600877478,
-          -0.5103455182017594,
-          -0.3093297306450248,
-          0.3519575135852648,
-          0.18883305391382335,
-          -0.2041124810285089,
-          0.02002411579404036,
-          -0.5464699498714655,
-          -0.12371523039407192,
-          -0.09296516393963344,
-          -0.4926920777512343,
-          0.5432045322367446,
-          -0.5603967883767328,
-          -0.1120973361059785,
-          0.34012488957436143,
-          0.4941463148110945,
-          0.042165038935217454,
-          0.5896720104632263,
-          -0.491236365972412,
-          0.14825159428029433,
-          -0.6788552456451314,
-          0.3346295334485671,
-          -0.3785390702362619,
-          0.2724605321152925,
-          -0.3445044893908281,
-          -0.5837146657024709,
-          -0.08552325605252063,
-          -0.6731079982183783,
-          -0.37547154767119334,
-          0.285480284646074,
-          -0.2722942917971571,
-          0.1755184598030683,
-          0.3684892029354311,
-          -0.04367388455565838,
-          -0.15624910226601774,
-          0.6498852135497338,
-          -0.013446489560444487,
-          -0.42830512952154814,
-          -0.3134478857971555,
-          -0.4600737727546808,
-          0.5992176144375403,
-          0.3488284329935899,
-          -0.16014476025918464,
-          0.5539407414309063,
-          -0.14929162358859807,
-          0.01038612209640377,
-          -0.11530575599213769,
-          -0.5397247802501366,
-          -0.3986134540090445,
-          -0.7099050658210535,
-          0.6328876613049962,
-          0.5944081211425848,
-          0.5145117844973813,
-          0.46060317100392034,
-          -0.25338475146562456,
-          -0.1295395713876327,
-          0.6038522039904816,
-          0.3008439270452431,
-          -0.4465928951392066,
-          -0.25938402909893227,
-          0.24734596943118836,
-          -0.050918845283521814,
-          0.2172935750672275,
-          0.6472786712808127,
-          -0.2186461677911973,
-          0.35641470915611817,
-          -0.4609177320491522,
-          0.007235866839245729
+          0.028037321052134693,
+          -0.3212026427255301,
+          0.5285878312559396,
+          0.503873070705605,
+          -0.29540083217546925,
+          0.0018827332362024824,
+          0.009425967181448214,
+          0.17980086659136166,
+          -0.22590015772019725,
+          -0.7818772956502522,
+          0.3431420458899839,
+          -0.020169369692122567,
+          0.29535956698256827,
+          -0.21444000719282816,
+          0.2904001365829822,
+          -0.11230589645560443,
+          0.26292455123121,
+          -0.2858403471044008,
+          1.19875381238026,
+          0.5876251565365683,
+          -0.48021765397477645,
+          -0.234529125797262,
+          -0.3049666517041749,
+          -0.2095631527933806,
+          -0.2782025687756225,
+          -0.1455923966000405,
+          0.0029323741958832425,
+          0.11673322987038778,
+          0.08412928049338446,
+          0.4187418643959871,
+          -0.43157736294597204,
+          0.575829882380994,
+          -0.1182359860634131,
+          -0.7693641983400035,
+          1.0088587994602762,
+          -0.5062674803560231,
+          0.4188841524458923,
+          0.47454771167541726,
+          0.014470542235758617,
+          -0.021868684615105636,
+          0.5873996692944027,
+          0.2937462025157323,
+          -0.030314432654138388,
+          0.21393780431962792,
+          0.071633295648051,
+          -0.14658463555958595,
+          0.5869132922506561,
+          0.6577463797609846,
+          0.7629614220303379,
+          -0.5097836035314466,
+          -0.3014352226163205,
+          0.12101545460618804,
+          0.049178745848870144,
+          0.823449797884722,
+          0.00949156418194098,
+          -0.2694627369149593,
+          0.7360461284087815,
+          0.03958261868487598,
+          -0.6981729047705306,
+          -0.5226827082211187,
+          0.15947673270474663,
+          0.365606446316008,
+          -0.7881677377710242,
+          0.7344554576123455,
+          -0.9259660252102467,
+          0.5632723594548376,
+          1.102316274074857,
+          0.16757661047354896,
+          -0.22581971462758493,
+          -0.011974858414609999,
+          -0.0680315985727668,
+          0.7869059594697557,
+          -0.5428921113439041,
+          -0.112509555333367,
+          0.23140572904254478,
+          0.009231554202882642,
+          0.25849566881873937,
+          0.7188150257428783,
+          0.4291758007145227,
+          0.35956184164441257,
+          0.5029850836226724,
+          -0.831282136642105,
+          0.5758124579742897,
+          0.5307672703741945,
+          -0.8560455523795599,
+          0.5419087017261874,
+          -0.40383667713666493,
+          -0.4810726082829583,
+          -0.14166946017095086,
+          -0.3749082276493966,
+          -0.6110297486865759,
+          -0.3566276829074095,
+          -0.2347988002633148,
+          0.5782324050358809,
+          -0.07394848977410544,
+          0.3941745257416145,
+          0.48959333710192393,
+          -0.43329293177808686,
+          -0.4107048118901084,
+          0.01724262663900896,
+          0.08334678490313978,
+          -0.8932887479811885,
+          -0.29901471022155235,
+          -0.0025021140921972743,
+          0.1601977107434661,
+          0.2025071877924144,
+          0.5284124389308865,
+          -0.11887146753528256,
+          -0.2964026056963701,
+          -0.1831089588323007,
+          0.2504675550467652,
+          -0.16867162508968847,
+          0.17184464495646273,
+          0.3176150859161639,
+          0.2645043630319979,
+          0.47324954432503397,
+          -0.11062069693908198,
+          -0.11989941886130445,
+          -0.23488225344836103,
+          0.6654432461219569,
+          0.17445391767015328,
+          0.8745888396111101,
+          0.904849356985894,
+          -0.6519140866303589,
+          0.0885344880143133,
+          0.5211713538675256,
+          0.20699008094653598,
+          -0.6427108976630627,
+          -0.7378742383961014,
+          0.7459665969304508,
+          0.27499586867865244,
+          0.20625036675788494,
+          -0.679448013008635,
+          -0.11762799077145653,
+          -0.09661710927716968,
+          0.2141219786200198,
+          0.45166023262099614,
+          0.17409931975083484,
+          0.3846671100428793,
+          0.23690941985161423,
+          -0.37037222862818575,
+          0.07917044526504996,
+          0.7617786362751134,
+          0.38463257316680144,
+          0.015081022716841945,
+          -1.1941783585798103,
+          0.2778410545798174,
+          0.4206856130498948,
+          -0.056753901492893756,
+          0.11421559084007431,
+          -0.4185037600156173,
+          -0.17865443268538672,
+          -0.4295504367870642,
+          0.6513768280098501,
+          -0.2683328215012509,
+          -0.7456059268081828,
+          0.07714452947474994,
+          -0.13742811396026058,
+          0.48606363682069065,
+          -0.8465108686281018,
+          -0.6661775618987014,
+          0.1546499376799179,
+          -0.2274961238848759,
+          0.10935486394364528,
+          0.7168343488307598,
+          0.028295747082061742,
+          -0.45556684600029224,
+          -0.22176445743888948,
+          0.05586974216759434,
+          0.35578371247964363,
+          0.09269720734504336,
+          -0.15994794412104324,
+          -0.6427496200942515,
+          -0.33423992958651333,
+          -0.7937840534598937,
+          0.5437386890778672,
+          -0.7596374030117978,
+          -0.5258147981644578,
+          0.01725879675338621,
+          -0.38986444395504566,
+          -0.15402227383776032,
+          0.5127226756341237,
+          0.48690873422964626,
+          0.27671053218629693,
+          0.41472598409949446,
+          -0.7190320386058662,
+          -0.01892988171305467,
+          -0.7068619395004572,
+          0.8042115508297802,
+          -0.39793983881226236,
+          -0.10680755625935162,
+          -0.23249746907585359,
+          0.04399076838278058,
+          0.4686737336760122,
+          0.47390836807565423,
+          0.7098618030219597,
+          0.32869377677723133,
+          0.16701469770225108,
+          -0.5154734238431739,
+          0.21386298329013229,
+          -0.4293381155176546,
+          0.6509112574617889,
+          -0.21225803109466304,
+          -0.45083736597488855,
+          0.360542552331909,
+          0.11372603065206624,
+          0.5710758094823543,
+          0.2810574854907684,
+          -0.09060706509832817,
+          0.3360079279814693,
+          0.7866817727238331,
+          0.3646900760097044,
+          -0.8682832269670017,
+          0.21499745213113436,
+          -0.3743261507200149,
+          -0.5522064787076449,
+          -0.05766567420979169,
+          0.05255802279757206,
+          0.16772080317328802,
+          -0.17057603028625343,
+          0.42521028963780116,
+          0.23908704403788383,
+          -0.02748010957368749,
+          0.5620466031348739,
+          -0.06334185372316746,
+          0.1811535174351852,
+          -0.00256634665436331,
+          0.1601807725926818,
+          0.24342711619364943,
+          -0.3695754657164475,
+          -0.6601157459707795,
+          -0.09020761756219096,
+          -0.8220261936133622,
+          -1.0186868497122867,
+          -0.014380398446788165,
+          0.72644876214914,
+          -0.0077244607314658,
+          -0.14409883808740337,
+          0.6417061973348561,
+          -0.3124431448690388,
+          -0.36049844566071665,
+          0.00327644863723392,
+          -0.25608955767154973,
+          -0.9726921163270787,
+          0.018950364440031824,
+          -0.04891938649147925,
+          -0.42628670063100627,
+          0.020927227328870337,
+          -0.34165871070060455,
+          0.2101672470799714,
+          -0.28639878954522097,
+          0.7230755456730827,
+          0.08179757981705083,
+          -0.871679782006946,
+          -0.12191049142817612,
+          0.02918970717930816,
+          -0.42946315684341413,
+          0.9024527172582626,
+          -0.48085308109559166,
+          -0.19060036553777215,
+          -0.003304654492847318,
+          -0.4262184227051244,
+          -0.06440436933618553,
+          -0.023966268084214686,
+          -0.6250681816535532,
+          -0.5432928783788312,
+          -0.4169328986642972,
+          -0.223637947784688,
+          0.515523874267179,
+          -0.9425967499859276,
+          0.04972933986483954,
+          0.6180228772384769,
+          0.25210959357126894,
+          0.013157188712436674,
+          0.3684134479554839,
+          0.2085827041521866,
+          0.013912716237140549,
+          0.4076787994937053,
+          0.2528397345183462,
+          0.9869374327705985,
+          -0.695692538536111,
+          -0.44065892507991755,
+          0.6266396855349466,
+          0.35657462822864855,
+          -0.28476987855984776,
+          0.5513642818365276,
+          0.5063241689263496,
+          0.14808605294716273,
+          -0.015643169214624886,
+          0.18807497397315115,
+          -0.3829463702312791,
+          0.8412612838911949,
+          -0.5693031807468993,
+          -0.6057228849455564,
+          -0.05860060975339115,
+          0.09290381043250065,
+          0.25581740248997153,
+          -0.1290884429004529,
+          0.027677743866840417,
+          -0.1372777603902358
          ],
          "y": [
-          -0.11937498527925475,
-          -0.05062973607318175,
-          -0.12238026058345079,
-          -0.04538789530542188,
-          -0.09179709711988827,
-          0.008904171984225929,
-          0.14006707758866524,
-          -0.1395393351879514,
-          -0.027794449631548094,
-          -0.006576320144326847,
-          0.17206697474627564,
-          -0.034402407716137985,
-          -0.08218634456236028,
-          0.21322617061287866,
-          0.23184583494530006,
-          -0.09202503626771931,
-          -0.03552370786547671,
-          -0.038815920082234626,
-          0.17250096053324443,
-          0.016902003997787584,
-          -0.21857834801399742,
-          0.18459395322289962,
-          -0.06248204765980287,
-          -0.2571126609786595,
-          0.20317221673426913,
-          0.19981419921763555,
-          0.27610034319970544,
-          0.033220296435219544,
-          -0.18114644019217466,
-          0.12050246646590201,
-          0.20804787681414705,
-          0.20413722294914216,
-          -0.013731735011185933,
-          -0.3036355700087453,
-          0.2324701297248251,
-          0.1593167595301998,
-          -0.1957365614740812,
-          -0.26111836929815924,
-          -0.12033870064104978,
-          -0.31937147837963303,
-          -0.1784408726096718,
-          0.3745493385510245,
-          -0.2781325415005395,
-          0.27517710621789493,
-          0.03454928705655714,
-          0.1582419781517123,
-          0.23934422103384764,
-          -0.21861770505851946,
-          0.06565125919547685,
-          0.14224135676883698,
-          0.2450152444792506,
-          0.19030148515440895,
-          -0.24696249110520715,
-          0.08711895435208818,
-          0.13950669890348372,
-          -0.38769766538694306,
-          -0.010825698169168415,
-          -0.05764523497062797,
-          -0.014779658829656957,
-          0.0848749650773006,
-          0.3088207915363564,
-          0.0612282259035895,
-          0.10636222784567895,
-          -0.33505501550685085,
-          -0.4244174240215967,
-          0.2457773808776222,
-          0.05093775310913058,
-          0.11769948517092711,
-          -0.297680981162306,
-          0.1269834957870536,
-          0.004994407362579842,
-          -0.05263238246361083,
-          -0.3853159814805893,
-          0.03222415702713443,
-          0.32155038265795216,
-          -0.15899718952685132,
-          0.23037278474084916,
-          0.42984774428019884,
-          0.1880042991568377,
-          0.4728103467172828,
-          0.004541230533923777,
-          0.06796765318788887,
-          -0.11323098563553055,
-          0.38995261388536584,
-          -0.430990211362775,
-          -0.44031505310674884,
-          -0.1435747693596405,
-          -0.3390527287792652,
-          -0.22651975395906068,
-          0.3628205893564442,
-          -0.43674584367435343,
-          0.3533307299531525,
-          -0.3584629569811671,
-          0.1513066459178605,
-          -0.3756252299802614,
-          0.07735380109162932,
-          -0.02618897034636205,
-          0.482213570452984,
-          0.00037332328768744174,
-          0.20661145961297708,
-          0.3386898828368246,
-          -0.43374118298768877,
-          -0.42471569068459103,
-          -0.4330586206603398,
-          0.013539523255328909,
-          -0.3447896675904274,
-          0.08026888460945203,
-          -0.30352164037967233,
-          -0.40566716315171825,
-          -0.2741464021073371,
-          0.05374392767445396,
-          -0.4029327277010136,
-          0.5221747263943928,
-          0.12082010997067817,
-          0.48022646190620066,
-          -0.38668766570357704,
-          -0.11889563433590537,
-          0.4148551655032809,
-          -0.14556459954669204,
-          0.2449758782652492,
-          0.013871071679635524,
-          0.4853004349675708,
-          0.13470361538564368,
-          0.2072335332486109,
-          -0.5331334735621541,
-          -0.3745970324864404,
-          -0.150929928400401,
-          -0.2613539750130922,
-          0.3881194820365886,
-          0.19883236270024715,
-          0.448147930266346,
-          -0.49851866402368306,
-          -0.17059492359393336,
-          0.4928211856073733,
-          -0.013619145118418406,
-          -0.09776762495416379,
-          -0.3847467006334971,
-          -0.40716498269076057,
-          -0.4777977648777122,
-          0.4900996749741892,
-          -0.5317226137168356,
-          0.10634446626564811,
-          -0.4877111862134803,
-          0.0578620943291286,
-          0.041028269246005,
-          -0.32768579310951645,
-          0.40288630755040733,
-          0.1981038552264253,
-          -0.5603254996863809,
-          0.44755038036364975,
-          0.057979613967192686,
-          0.5175107379540282,
-          0.5849068846772931,
-          0.061551572233619005,
-          -0.19782031224929567,
-          0.3637631880686425,
-          -0.5672956974584322,
-          -0.054519141567787754,
-          -0.13047913169932424,
-          0.5251557742901842,
-          0.2798753625111884,
-          -0.1580120508467429,
-          -0.16590179602274008,
-          0.5976169325982985,
-          0.48800549653408015,
-          -0.25034458752250427,
-          0.42341157339568597,
-          0.01992708747739583,
-          -0.6344546505269052,
-          0.45763663772020813,
-          -0.5040580868712549,
-          -0.15624526571423844,
-          -0.3891245060060029,
-          0.10730910541833984,
-          0.41938592143971604,
-          -0.5851946570643809,
-          -0.5131783716849982,
-          0.13688873909729332,
-          -0.394157620842603,
-          -0.4070374104402135,
-          0.15374825907825665,
-          0.5027246146688611,
-          0.017331310426562357,
-          0.1250312377450878,
-          0.510800756722763,
-          0.47087955438428936,
-          0.6290639683377159,
-          0.2281964824298231,
-          0.021040768019374278,
-          -0.1674560427370105,
-          -0.5343925271262995,
-          0.5841035565062558,
-          0.41155493241633745,
-          0.1523083296520264,
-          -0.08113091581045768,
-          -0.01930722504464883,
-          0.15830991176710746,
-          0.29767282367380493,
-          -0.4574533825145854,
-          0.32468934780820374,
-          -0.2894063874103393,
-          -0.347639280737109,
-          -0.08676831905770631,
-          -0.051497818006117524,
-          0.2534649841768762,
-          -0.6249815867399775,
-          -0.24884595027215975,
-          -0.22725410801017767,
-          0.2966542360144242,
-          0.05478700005453758,
-          -0.4406268918671059,
-          -0.017108877353937388,
-          -0.4786561367507056,
-          -0.32481720707685907,
-          0.45623631615253707,
-          0.3390163486210286,
-          0.43428143837967026,
-          -0.20525509860162952,
-          -0.7088953120740357,
-          0.5247406698349346,
-          -0.6256499991006833,
-          -0.34444966214811595,
-          -0.3785341904483119,
-          0.13069887647288084,
-          0.25976664104375236,
-          -0.17786485205417316,
-          -0.6980413378971317,
-          -0.5550069197223338,
-          -0.5267257114664343,
-          0.026826100708538775,
-          -0.5813976173349092,
-          0.14656013413641913,
-          -0.3415757453724654,
-          0.3865990135775131,
-          0.036731288109083465,
-          -0.222929020784749,
-          -0.4578812018664024,
-          0.37795256862311016,
-          0.293354208586257,
-          -0.6837553880522801,
-          0.179014856577363,
-          -0.27701484377397667,
-          -0.7099738141085106,
-          0.7096049172432375,
-          0.5747803164006939,
-          -0.38858365470162015,
-          0.23423861870458482,
-          -0.37494875772698133,
-          0.03351592190706865,
-          -0.6940314229492669
-         ],
-         "z": [
-          0.049534359574116685,
-          -0.02632009584703848,
-          0.011016050189283576,
-          0.0648788039441577,
-          0.030979388930192808,
-          0.0690674316437244,
-          -0.10207822620630307,
-          -0.10696636468375424,
-          -0.09510358829825027,
-          -0.23185657756152486,
-          -0.1705796523769212,
-          0.023190977858076906,
-          0.15182514783002848,
-          -0.024544927745563314,
-          0.06073552720651274,
-          0.06858650459408401,
-          -0.1689617842905193,
-          0.20191722272730026,
-          -0.15782782782839722,
-          -0.24848738907866813,
-          0.09442767933733888,
-          0.0036157598671874907,
-          -0.26163730834347076,
-          -0.04026663669206432,
-          -0.032182017279533924,
-          -0.1758511817453055,
-          -0.07298880146453049,
-          -0.3182443468608939,
-          -0.17076448161445892,
-          0.11354295088247944,
-          -0.16575134516669343,
-          0.1840753374860813,
-          -0.214380480360781,
-          0.08647739371631022,
-          0.22723386622811448,
-          -0.26129499720910665,
-          0.21736936060297896,
-          0.10139095760165155,
-          -0.32048062710326736,
-          0.13790348870708655,
-          -0.20634172707683243,
-          -0.049850164030948795,
-          0.02032565922121604,
-          -0.037561973969763955,
-          0.028702660110095566,
-          -0.011612741179764912,
-          -0.20888034028137628,
-          0.1570722962527423,
-          0.11303553879737675,
-          0.20031477499818073,
-          -0.033177859502669355,
-          -0.2426735852550608,
-          -0.2274303257830938,
-          0.38995904912342777,
-          0.22012847403365238,
-          0.11314997261394669,
-          0.4096209476516538,
-          0.2458443991690507,
-          0.0829629883565131,
-          0.43382271889750096,
-          0.28587956283157,
-          -0.1100804288221138,
-          0.25806639971250833,
-          -0.010219298741576016,
-          0.0493575276374021,
-          -0.38166773015783256,
-          -0.15005440164571632,
-          0.34821562818404905,
-          0.204901766328815,
-          0.24793292088444607,
-          -0.46691755548250247,
-          0.4388814490713628,
-          0.2822318530747986,
-          -0.46075102441558485,
-          -0.36517090319865586,
-          -0.4596212326890253,
-          0.13745045780154522,
-          0.1319525764151364,
-          -0.3088074868323042,
-          0.06934422222226756,
-          -0.3085714224054671,
-          -0.3268779914183046,
-          0.4747091205404195,
-          0.24083294451580378,
-          -0.13220867622829346,
-          -0.1471646545434337,
-          0.2624397638702562,
-          0.2097105791031297,
-          0.29993061704920476,
-          -0.18352721575402633,
-          -0.22349725984572624,
-          0.3337560065024689,
-          -0.3330743801013375,
-          -0.07942792565384525,
-          0.3421524613129006,
-          0.5131945013176318,
-          -0.30356251413462426,
-          -0.21939172756398873,
-          0.42511736906289527,
-          -0.13246161922816713,
-          0.23593473727338093,
-          -0.2138783664191246,
-          -0.2062586285085581,
-          0.2556215940960765,
-          -0.4535997434276294,
-          -0.30586482786501823,
-          0.4681970899854549,
-          0.4161700081443914,
-          -0.017221297340774377,
-          0.2021373562881223,
-          0.38095801566371607,
-          0.23299786138387973,
-          0.12117567370971122,
-          -0.13009586476030488,
-          -0.21357842091616086,
-          -0.02316005947576784,
-          -0.3338184488239135,
-          -0.3358075960080747,
-          -0.5279106115256432,
-          -0.48085009200264484,
-          0.47578474274970006,
-          0.07487868588782305,
-          0.5016581908241333,
-          -0.5051227318366709,
-          -0.19846725016255143,
-          0.36293488251666683,
-          0.2198448479565504,
-          0.26665024571635426,
-          -0.18028097052461722,
-          0.07368130721149593,
-          0.2926001478568274,
-          -0.0394346929922831,
-          0.4755814249681862,
-          -0.23604602489870788,
-          -0.18589188804492057,
-          0.45798495738780126,
-          -0.11511196781278393,
-          -0.1944909202327961,
-          0.02414940599969623,
-          0.12476302021962701,
-          -0.2256052014741222,
-          0.24165796798305494,
-          -0.34869049167672833,
-          -0.0699255443606429,
-          0.5999312301754417,
-          -0.32932066694986833,
-          0.31657775878350786,
-          -0.5724761390090941,
-          -0.21776168595234735,
-          0.14348824410281322,
-          0.3233460750071652,
-          0.23692180445637898,
-          0.00919372591512235,
-          -0.21143012513903744,
-          0.5588773273574341,
-          0.5031877058898924,
-          -0.11404622042753332,
-          0.2412308748080312,
-          -0.4276190531813541,
-          0.3410015046606032,
-          0.34933209483137795,
-          0.5048745911430638,
-          0.027038345535213067,
-          -0.03457553001546282,
-          -0.2837057164213414,
-          -0.4055977033160247,
-          0.4725880917140862,
-          -0.006448104364733697,
-          0.05360191714363416,
-          -0.3416644240694255,
-          0.07525753572416853,
-          0.019011159070922424,
-          -0.47490943787234396,
-          -0.5905352090023991,
-          -0.21888238633107265,
-          0.06091292385983246,
-          0.13206404566201288,
-          0.6016757191467875,
-          -0.29203356065289793,
-          0.08627396730704882,
-          0.6152307924616089,
-          0.31414160018417014,
-          0.35213796875897085,
-          -0.38656119495129077,
-          -0.2636328500952439,
-          0.2981067512229342,
-          0.0581835667997336,
-          -0.5849406097931937,
-          0.6634668418831509,
-          -0.3432038560107203,
-          0.3793697485619662,
-          -0.3088389539309136,
-          0.18416049051072997,
-          0.3594002017783642,
-          0.35707992938002414,
-          -0.6599201025247863,
-          -0.5589498478001236,
-          0.34790986388730155,
-          0.4937184398387109,
-          -0.049614650379187955,
-          -0.37058646012074414,
-          0.5707218613311367,
-          0.06602423902650845,
-          -0.5987735803123387,
-          -0.5168641393092749,
-          0.10870006485270324,
-          -0.5444694398951878,
-          0.2919866314835168,
-          -0.6275517371738821,
-          0.18225856900299683,
-          -0.392781637752184,
-          -0.6390137138931746,
-          0.43252045173039905,
-          -0.60093071660176,
-          0.39287168556856905,
-          0.6183769533825254,
-          0.5356388385755425,
-          0.18907491851740568,
-          -0.013090764001247665,
-          0.21163181316425048,
-          -0.1222913317513474,
-          -0.4188857609630143,
-          -0.06401669784034815,
-          -0.6069506070503681,
-          0.6460018843973081,
-          -0.42250351049455404,
-          -0.09281269150894819,
-          0.45840349088154975,
-          -0.47742313674422066,
-          0.4831865645980808,
-          0.17231287973437157,
-          0.04903385095521814,
-          0.10379833420578011,
-          -0.16895050756602753,
-          0.5180547667681719,
-          0.5366722825226574,
-          0.5262231895521913,
-          0.6276671709924223,
-          0.327594461292461,
-          -0.033737023467600394,
-          0.5800708142240504,
-          -0.6522424964944256,
-          -0.06750341647755168,
-          0.25571528563253026,
-          0.445214823754819,
-          -0.0825659708702763,
-          0.6898145747417128,
-          -0.5606457563112877,
-          -0.6084041252158208,
-          0.326756500261422
+          -0.16738889368321228,
+          0.5005306106651246,
+          -0.24566920034931009,
+          -0.621596951465891,
+          0.14129250092872103,
+          -0.34399539513996585,
+          -0.3301394220688392,
+          0.1361036844467546,
+          0.15865312947964005,
+          -0.02581259631947992,
+          -0.6584768489514458,
+          0.04282744213568066,
+          -0.22755307381114212,
+          0.17921953723097556,
+          0.019805410865168443,
+          0.0759296246918352,
+          0.16985409637934937,
+          0.6143042632885762,
+          -0.3889827799072763,
+          -0.1884557005288221,
+          -0.2387754527121834,
+          -0.2555976763416294,
+          0.10239335538038392,
+          0.7528085789360721,
+          0.5162629306566149,
+          -0.2750533113920548,
+          -0.19653039962171182,
+          -0.43661572027326906,
+          -0.3309564178124106,
+          0.27021458013658933,
+          0.015136553050289225,
+          0.2178309665353552,
+          -0.03803062897552575,
+          0.29608671615580173,
+          -0.8594108606646675,
+          0.6884588511065247,
+          0.37907726785129436,
+          0.5960970331636974,
+          -0.1997319923039802,
+          -0.02008007445983252,
+          0.43313427393952914,
+          0.17150324549740945,
+          -0.09526824278463186,
+          0.10524578808659915,
+          -0.14772223117874025,
+          -0.5196527667690095,
+          0.3291659215782649,
+          0.38808541027465376,
+          -0.06419843418188405,
+          0.5144765149616511,
+          0.31841161406568497,
+          -0.2906088086012576,
+          -0.016924491446770395,
+          -0.0726162875334353,
+          -0.44710469433172456,
+          0.26523097064919166,
+          0.42598919148546505,
+          -0.22980716590814154,
+          -0.2683604619504772,
+          0.2695465342000689,
+          -0.10640771786622799,
+          0.30711849575154715,
+          0.03654815007297772,
+          0.05248294698827522,
+          0.18472661081801695,
+          0.20801638312736728,
+          1.019843367720883,
+          0.15253350792969086,
+          -0.30759300731715117,
+          -0.48177178244738267,
+          -0.03929825833174903,
+          -0.19063258183668158,
+          0.5437757603327101,
+          0.49296797226469147,
+          -0.25080987346927747,
+          0.055133091388231206,
+          -0.060819491062803335,
+          0.05500202213075865,
+          -0.08220835703741207,
+          0.09996926345956321,
+          -0.410056237545809,
+          -0.14616460567069048,
+          -0.02546951089547732,
+          0.2654034611435949,
+          -0.30125203365685815,
+          -0.10583791179901977,
+          -0.059022990107728816,
+          -0.508426822750089,
+          -0.3993870460841423,
+          0.11009422032200121,
+          -0.6309943867178938,
+          -0.2088404403175759,
+          0.16799479914347107,
+          0.16975213105551842,
+          0.3752975044820691,
+          -0.12694930903550875,
+          -0.4036619078201482,
+          0.12394664493497229,
+          -0.38632190877773975,
+          -0.09923314173095299,
+          0.20345930389742026,
+          0.20735838290998218,
+          0.3938402348473932,
+          -0.0014513701597977666,
+          0.08512294182894281,
+          -0.032863824842115925,
+          -0.04589679022902065,
+          -0.3519634929140525,
+          -0.0684010104680686,
+          0.46652120698126354,
+          -0.5910335341250499,
+          -0.38797784464420076,
+          0.28088802331443063,
+          -0.1989786713141561,
+          -0.5396009383749553,
+          -0.15442613975149252,
+          -0.7194677693899962,
+          -0.10360207077719136,
+          0.13252497570191138,
+          -0.29930982067958806,
+          -0.19523263632048604,
+          0.25539512964042643,
+          0.15129177550892894,
+          0.6400347919034265,
+          -0.22136098522075404,
+          -0.041754788554594476,
+          0.2864724185124726,
+          -0.43167309466090165,
+          0.6851782411937649,
+          -0.14271660322703786,
+          -0.4208336243211609,
+          -0.33266939000415785,
+          0.1354028880781053,
+          0.06974518027564787,
+          0.6521987122006763,
+          0.07918564271348337,
+          -0.5141130507125342,
+          -0.41733566337659816,
+          -0.0006823659568280729,
+          -0.005006967285391839,
+          -0.13447816492498013,
+          -0.660465426102055,
+          -0.2755245065789075,
+          -0.5318753751105678,
+          0.9050110327922386,
+          0.38350325015345305,
+          0.29275666601972006,
+          -0.12494531036520035,
+          -0.04469760748870046,
+          0.8460255712746234,
+          -0.7809069523300842,
+          -0.16385678731152606,
+          0.5316148566211274,
+          0.5638570268047098,
+          -0.4997336467950837,
+          -0.095656809242595,
+          -0.5465155081892572,
+          -0.01750466097946879,
+          -0.6500813799709668,
+          -0.28630520664048403,
+          -0.2683105626650836,
+          -0.15146927766434737,
+          0.1577971411859073,
+          0.12250232871699623,
+          0.1310692868918277,
+          -0.8763129917099621,
+          -0.4294762248171362,
+          -0.7471659535229874,
+          0.23574088950604696,
+          0.41063715854514715,
+          0.008494965789440234,
+          0.21844897159180904,
+          -0.4074351619526577,
+          0.2686603544564616,
+          0.32894266600362804,
+          -0.3737413502249248,
+          1.0700219633636219,
+          -0.046337758861255435,
+          -0.08040181120432871,
+          0.29640180821721673,
+          -0.1484843316833024,
+          -0.6013631453285752,
+          -0.1598292358138991,
+          0.3664941419357249,
+          -0.20612854974687272,
+          0.03564626190130754,
+          0.3651076192640804,
+          0.1855884982486394,
+          -0.10142831950561393,
+          0.018470446117507137,
+          0.1979443396992497,
+          -0.25843500297243643,
+          0.709572601658771,
+          0.2420124208357098,
+          0.4975954193806037,
+          0.7375654259893447,
+          0.4639727406190367,
+          0.19888369147683008,
+          -0.630119894669042,
+          0.46877703686917566,
+          0.6260892044435576,
+          -0.4932842209112639,
+          0.03503941225301684,
+          -0.7910687379791354,
+          0.6790867371279445,
+          0.29976481589979537,
+          0.1499542565494372,
+          0.5032359324533978,
+          0.498948633515447,
+          0.6805711888373331,
+          0.4902934711381614,
+          0.345219040114816,
+          0.218414166561642,
+          0.7638612482472031,
+          0.4285368981206029,
+          -0.011858438758754785,
+          -0.146709166848018,
+          0.013252745415359809,
+          -0.5227733204356837,
+          -0.1769091925037228,
+          0.239918910598565,
+          -0.24339610371845644,
+          0.01491174927540034,
+          0.22694539702836475,
+          0.37150384757692256,
+          -0.49150138269028265,
+          -0.23468839842775047,
+          0.36712067096704476,
+          0.9322465966421218,
+          0.39122581229094927,
+          0.06439604093552836,
+          -0.08286801416773582,
+          0.8874306683732102,
+          0.2443300756986076,
+          -0.9048884421794425,
+          0.17046665124319668,
+          0.5044391075088026,
+          -0.6146508539176011,
+          -0.4964239561239794,
+          -0.022965658195735,
+          -0.07374306370997082,
+          0.0026138626207799142,
+          0.08783661869114817,
+          -0.2021823900253188,
+          0.40026497919592796,
+          0.4026239313353185,
+          0.41422302796704547,
+          0.002653235335454782,
+          0.7021051904805056,
+          0.8506012282276864,
+          0.5409349477537876,
+          0.6769823044352524,
+          -0.06721362973951436,
+          -0.5811905245233542,
+          -0.25532494543054535,
+          -0.11619496824533866,
+          0.004203699353341344,
+          0.5485122610341675,
+          -0.11418608633735128,
+          -0.11571741999350058,
+          -0.11529550761858338,
+          0.19516109561678063,
+          -0.06652728752528748,
+          0.11123060690084373,
+          0.7264618752284836,
+          -0.7088064948895111,
+          -0.19868986737467362,
+          0.28424600030770264,
+          -0.04378370975019378,
+          -0.738530809107197,
+          0.6182996270903425,
+          0.4596823929747021,
+          0.36044184625416936,
+          0.517921983201423,
+          0.5860575786676356,
+          0.4953303275869549,
+          -0.06206755637625796,
+          0.780298332736576,
+          -0.19166863811392637,
+          0.5444625318761593,
+          -0.1079985558493445,
+          0.2781118808555742,
+          -0.06966545209401635,
+          0.30276128716728795,
+          0.2128179972039175,
+          -0.10708092697832121,
+          -0.570636283022938,
+          -0.33033957665559927,
+          0.3147786424368312,
+          0.3466727784123796,
+          -0.6827251077334063,
+          -0.3999037423061913,
+          -0.21211385450950568,
+          -0.29256448714574995,
+          0.307414539128855,
+          -0.7547397858230722,
+          0.6126245875833808,
+          0.25863406252684906,
+          -0.014007044943242156,
+          -0.006569275919828471
          ]
         },
         {
          "marker": {
-          "size": 1
+          "size": 3
          },
          "mode": "markers",
          "name": "Class 2",
-         "type": "scatter3d",
+         "type": "scatter",
          "x": [
-          -0.22169896719579268,
-          0.7285204168902143,
-          -0.3885955774504142,
-          0.27549882686538446,
-          0.3297651690341383,
-          0.13184311035495333,
-          0.5127201478900143,
-          -0.705735437609321,
-          -0.5881871241813159,
-          -0.08894478418703164,
-          0.3542019401820938,
-          -0.026611753292548085,
-          -0.12206593440607766,
-          -0.5194346853564191,
-          0.6895688570162044,
-          -0.5327468851889134,
-          -0.4035785746473439,
-          0.388945569226155,
-          -0.01617016192413598,
-          0.33417688458595285,
-          -0.28542256557394474,
-          -0.0206919339932467,
-          0.7677668732842325,
-          -0.4567656514625606,
-          0.4918194649460462,
-          0.1836515421939946,
-          -0.1429717956421012,
-          -0.6920904606090122,
-          -0.3628967930489909,
-          -0.09497062186645523,
-          0.33147345531632844,
-          0.4116052334357744,
-          -0.7004149525115125,
-          -0.34860430402856674,
-          -0.8087365570172111,
-          -0.6368350287467183,
-          0.3928067592634881,
-          0.5944247540506525,
-          -0.7512256680413599,
-          -0.46854575332592846,
-          0.4274568865970787,
-          0.060329037165969136,
-          0.3992366788974741,
-          0.2782361843295214,
-          -0.5920339426279774,
-          -0.07864870222433695,
-          -0.058089655323851186,
-          0.6295959727791715,
-          -0.32448017405441776,
-          0.24045257634092665,
-          -0.04397568984910066,
-          -0.5425966652451105,
-          -0.31567623619829993,
-          -0.07568189331670494,
-          -0.6937888005353696,
-          0.30541536028629296,
-          0.5932205168940988,
-          0.39874396276196244,
-          0.3810669463389607,
-          0.6251144946436475,
-          -0.5079906491376645,
-          0.767844118259912,
-          0.492420286429834,
-          -0.1307455545347178,
-          0.08179431831975432,
-          0.7336515303366731,
-          0.5597900593136025,
-          0.11925686222646587,
-          -0.013229088550461596,
-          0.2524480711144957,
-          -0.1735156008482209,
-          0.8270250148536015,
-          0.5871360865405052,
-          -0.6884011196094226,
-          -0.4788256381701028,
-          -0.29048956882100996,
-          0.041159779537345,
-          -0.6109337321231825,
-          -0.10781245523108597,
-          0.06864419344497107,
-          -0.39759732490292093,
-          0.5167282640397531,
-          -0.33858921222965777,
-          0.10973638493366183,
-          -0.13470603808815207,
-          0.5007832212188313,
-          -0.20973314565876577,
-          -0.5363371946647791,
-          -0.33882735295030014,
-          -0.27192183306779283,
-          -0.14401908989982737,
-          -0.5057961034256142,
-          0.8295243864145251,
-          0.227474700254037,
-          0.7347629912957463,
-          0.6855097605625823,
-          0.8257466147476568,
-          -0.7859194583539211,
-          -0.48223568642165154,
-          0.44042141082449876,
-          0.028934226402876143,
-          -0.5861879937928134,
-          -0.7258559292053,
-          0.7446915242176576,
-          0.5503843951690884,
-          -0.6552746583000391,
-          -0.28857087077811255,
-          -0.21765345724896867,
-          -0.45505845046314297,
-          0.8087562399611511,
-          0.15328347113209187,
-          -0.5503445491615091,
-          -0.7221206501633688,
-          0.002153861506110259,
-          -0.6646118564523434,
-          -0.8762880146432466,
-          0.7046817659612672,
-          0.15138713828408484,
-          -0.38493671607256497,
-          0.31382772726453384,
-          -0.27719479599765684,
-          0.6700023867207712,
-          -0.22136545628782764,
-          -0.23427040441287864,
-          -0.3977240714269708,
-          -0.5793027881494485,
-          -0.018069456884973398,
-          0.9040019814701934,
-          -0.13782096674678948,
-          -0.8780573235331663,
-          0.6030020484962952,
-          0.8648503306975455,
-          0.01588578515280811,
-          0.3590941070013919,
-          -0.008548176999355688,
-          -0.021961982049432536,
-          0.2661617284067687,
-          0.12150876244262528,
-          -0.03497612451787783,
-          -0.6543740285637593,
-          -0.8898973564950994,
-          -0.6417444197881099,
-          0.1412873126343275,
-          -0.5716913091517167,
-          -0.044918657482508416,
-          0.5768133146527488,
-          0.36118454957430157,
-          0.4606956181683276,
-          -0.43033792026323636,
-          -0.8631740342425827,
-          0.21246745725350202,
-          0.27907491507909865,
-          0.4728717595313844,
-          -0.7983601637383853,
-          -0.4113105187398746,
-          -0.5628752813455787,
-          -0.3460859487847983,
-          0.15594633857406331,
-          0.5224179010472476,
-          0.8461462387884795,
-          0.44514463796079023,
-          -0.31630434579352423,
-          -0.7794382539980329,
-          -0.5090067211537608,
-          0.4354159556622114,
-          0.46872784019626923,
-          0.4317493209860334,
-          0.3459075369965991,
-          0.3373188038323094,
-          -0.20866007941738032,
-          -0.044320814720511074,
-          0.653557683315436,
-          0.6652256865713918,
-          -0.3221150879499847,
-          0.18404611121542863,
-          0.6098042723728624,
-          0.3631701181735801,
-          -0.9164928824999881,
-          0.7567104904019458,
-          -0.2580605498723143,
-          -0.5542060169973289,
-          0.6479415125710255,
-          0.10773116316185352,
-          0.1256535827835408,
-          -0.5076453159895534,
-          -0.8105886009854723,
-          -0.8123200524473428,
-          -0.5777689118587508,
-          0.535130407544011,
-          0.4642535088774796,
-          0.9976798535142606,
-          -0.21040917105947632,
-          -0.7779265184853703,
-          -0.7059429122313898,
-          -0.9047975502289279,
-          0.8406887072130809,
-          -0.25275208237334573,
-          -0.22465849940167318,
-          -0.6329099551093608,
-          -0.8808552043271537,
-          -0.2543948490957636,
-          -0.8641748611441517,
-          -0.2971169477336722,
-          -0.5315965495576603,
-          -0.159647953105241,
-          0.8822868807593552,
-          -0.8654564623948636,
-          0.5417005597790926,
-          -0.9337038253745131,
-          -0.8910710508658848,
-          0.7124197622219677,
-          0.6656070948633348,
-          -0.2619887889975434,
-          0.7679053185946825,
-          0.9119929184659351,
-          0.20757680450612412,
-          0.10374224256987936,
-          -0.37378844031358416,
-          0.05927437705285276,
-          0.5352717841109522,
-          -1.0376970669761407,
-          -1.024308812455993,
-          -0.394206221634832,
-          -0.7511621596553817,
-          -0.12814484179744615,
-          0.7238719620176493,
-          0.37817296522631977,
-          0.43820216582157573,
-          0.9985907312652826,
-          0.18376488612676858,
-          0.3794708004544702,
-          -0.8715255938433344,
-          -0.3876845828044986,
-          0.39066939330581174,
-          0.45447362192527335,
-          -0.46109647506055235,
-          0.5752435410141041,
-          -0.16587815278867946,
-          -0.2423167216027176,
-          -0.5361863929625799,
-          -0.9432984737324026,
-          0.417656036123124,
-          0.59092355942537,
-          -1.0112626664114368,
-          -0.9169986644589391,
-          -0.8657095850749407,
-          0.8215720266877671,
-          0.7879444267236451,
-          -0.6645953704122363,
-          0.44241362437163784
+          0.353184447085991,
+          0.17348269040231395,
+          -0.409097102832436,
+          1.0837562918941797,
+          0.7577418580813591,
+          0.7849270589014941,
+          1.3989245615346528,
+          0.6775605326720484,
+          0.44649730215002403,
+          -0.7301566171563054,
+          0.04551359260901015,
+          -0.3832670378399775,
+          0.6934014831699487,
+          0.4639571312035168,
+          0.13677986751515625,
+          0.24345805956893496,
+          -0.6287143533544824,
+          -0.662042933041743,
+          -0.9057736995191089,
+          0.8542857650377932,
+          0.788010275549547,
+          -0.12877738392966592,
+          0.67030935115498,
+          0.78288100336879,
+          0.8471493781851599,
+          0.7238496309944669,
+          0.3420358558569041,
+          -0.5250502455226472,
+          -1.0525374542931558,
+          1.0310919347571244,
+          -0.4686496139562598,
+          -0.7470213786200268,
+          -0.05793779092333529,
+          -0.19772516239778207,
+          -0.9496733949121486,
+          1.1002395677849004,
+          0.16106253007655105,
+          -0.2256035588274226,
+          1.0744074235632488,
+          0.4937402327409496,
+          -0.6837380983521705,
+          -0.9957556407878504,
+          -0.7961421421255158,
+          0.526620622311133,
+          -0.6794706733566243,
+          -0.44537936219492064,
+          -0.7538892088007857,
+          -0.11291406453806552,
+          0.746929753596502,
+          0.3269922697038264,
+          -0.44886502572330594,
+          0.543451188285718,
+          0.7404985536737744,
+          -0.32313890081224306,
+          0.6202894500972083,
+          -0.32940384864692307,
+          -0.38356626261808646,
+          -0.7942480823679752,
+          0.013343936293004852,
+          0.45447601381283664,
+          0.9538711558587168,
+          0.7486435625741642,
+          0.9148504597517645,
+          0.5345727963520363,
+          0.8671731412569768,
+          -0.4643744043188376,
+          -0.03729296720632843,
+          0.4730309818430986,
+          0.49400294579517645,
+          0.5895108854025172,
+          -1.275681676039761,
+          1.2006854509635294,
+          -0.15536268300522962,
+          -0.7837335040161094,
+          0.7828922601023972,
+          -0.6068536536901583,
+          -0.0636583766604976,
+          -0.7772424493580771,
+          -0.7960889319947815,
+          0.09977812656607557,
+          0.8107089133024324,
+          0.10582807855988534,
+          -0.9273734657994691,
+          0.9822144163406292,
+          -0.7401688859264396,
+          -0.751804633962619,
+          0.9496423033414687,
+          0.8703316613030517,
+          0.9694160768519546,
+          -0.2937500902146659,
+          0.666326931271112,
+          -0.4335123025326655,
+          -0.2693487879525958,
+          0.930036198203654,
+          -0.8539674210334245,
+          -0.6551550175995338,
+          -1.093014502548179,
+          1.0594409171913417,
+          0.6102426865734721,
+          0.9598566338513262,
+          1.1909878777668514,
+          -0.0019327025058711942,
+          0.8007259254041784,
+          0.027816651689387403,
+          0.9426779601279309,
+          1.1147284381567861,
+          -0.5594987657898668,
+          -0.8342319429365983,
+          0.08945300223395326,
+          -0.3857401856535547,
+          -0.7306523726734621,
+          -0.14349887335402503,
+          0.9985067655344148,
+          -0.6584752558747661,
+          -1.1071025823166598,
+          0.5002313267818037,
+          0.33786092092716447,
+          -0.21870160418545487,
+          0.14548790511831894,
+          0.9587686044611279,
+          -0.355366419070219,
+          -0.5460470082146934,
+          -0.1456446036571958,
+          0.9828637483679391,
+          0.5034992193265238,
+          -0.9381657601975942,
+          0.7911594398985651,
+          -0.9935040125764344,
+          -0.6297336868657331,
+          -0.8248393969037646,
+          -0.2294367897896067,
+          0.7747113531396913,
+          -1.0758585206872118,
+          0.36840624218301943,
+          0.07341824468923333,
+          0.17276120278934873,
+          0.7499910808147505,
+          -0.6028724945705506,
+          -0.7170440789802366,
+          0.6247443374176224,
+          -0.9563244400964351,
+          1.0835143098450446,
+          0.45977051718959094,
+          0.4983401718668779,
+          0.15430116294866106,
+          0.12925382946447525,
+          0.6153862237370502,
+          0.05851868864523323,
+          -0.6891478602833502,
+          0.6828937312238105,
+          0.841274007533401,
+          0.7508862750618146,
+          -0.7578864632159862,
+          0.28074154865945633,
+          -1.092656298642209,
+          0.5845189103035079,
+          0.6567616148156061,
+          -0.3758348087964105,
+          -1.0530081843315018,
+          0.24836842005805607,
+          -1.0454548861097104,
+          0.9661943119560898,
+          -1.1567384585833476,
+          -0.09508408790128463,
+          0.255711002728023,
+          -0.3008525776791078,
+          -0.6399625715275322,
+          1.3492140527570728,
+          0.6752326042576713,
+          -0.6530382603970384,
+          -1.2530440257710505,
+          -0.5254046379023433,
+          -0.29792892402417426,
+          -0.24311803326985174,
+          0.7970450641712583,
+          0.10556907613228139,
+          0.6294064681094191,
+          -0.8843773138930651,
+          0.9440023948477093,
+          0.04965258851124551,
+          0.9296058796080874,
+          0.7935345073049567,
+          -1.430867694165695,
+          -0.8358893690725423,
+          -0.25760796770427274,
+          -0.8527893673308015,
+          0.740998783523134,
+          -0.47146763396532393,
+          -0.6700208188699881,
+          0.9453782009908036,
+          -0.8279334167548404,
+          1.1186765282678328,
+          0.7979784333331007,
+          -0.881522268720364,
+          0.8897385060982967,
+          -1.19743875110596,
+          -0.2967445756448854,
+          0.34440569995087783,
+          0.2983795156320009,
+          0.5754688388591614,
+          0.8525462302960243,
+          -0.3444313727426313,
+          -0.2512835444533672,
+          1.0192901016034754,
+          0.6567028365179662,
+          1.0571828167974529,
+          -0.6720248477155211,
+          -0.2137916362274891,
+          0.8737365072474919,
+          -0.18420474990911231,
+          0.3559690665947994,
+          -0.34607155191662964,
+          0.560981656932565,
+          0.8226215138563063,
+          0.804493528313923,
+          -0.9898289607296498,
+          0.4602028811595099,
+          -0.6652523957752144,
+          -0.6192823491544633,
+          -0.8563701582924133,
+          -0.0764305073487508,
+          1.0432901878497782,
+          0.8635509865024503,
+          0.019082385156157948,
+          0.5575935797377783,
+          0.6463001256199477,
+          0.2681365792755715,
+          0.9791829052242734,
+          -0.35751661782315824,
+          0.38058470065520433,
+          0.2715188121236654,
+          -0.6004489943825659,
+          -0.7824668627491461,
+          -1.1148077883929586,
+          -0.12452653791976925,
+          0.16583179496173586,
+          0.736024057954768,
+          0.9428165498500604,
+          -0.7108812339238962,
+          0.3192047699677559,
+          -0.4937925216824058,
+          1.0100401889932218,
+          1.2339229618076935,
+          -0.05850204197449987,
+          -0.8843219269043467,
+          0.762214695440812,
+          -0.09932717909272665,
+          -0.04527989223393394,
+          -1.0384449465010046,
+          -0.5821039288127203,
+          -0.7508424111111862,
+          0.954478847228291,
+          1.1870195512209027,
+          0.660046887385181,
+          -0.7983675427419845,
+          -1.0907619979339682,
+          -0.11133627025081036,
+          -1.0963157456244694,
+          0.5541542113062403,
+          1.018964690671759,
+          -0.8354627658096874,
+          -0.17229456334156393,
+          -0.9053084858167207,
+          0.5234100285060577,
+          0.21283440348975793,
+          -0.8654857862824834,
+          -0.7948877861532524,
+          -0.11189792021883083,
+          0.49458783998458616,
+          -0.23802537165306042,
+          0.9610163613763715,
+          0.43159940360747945,
+          0.09730865397338571,
+          0.849452724995143,
+          0.3773814027698839,
+          0.3069039086686262,
+          -1.1825102169375057,
+          0.018488465331419814,
+          0.456642422148003,
+          -0.6104860575734511,
+          -0.8219575754580584,
+          -0.7342602544156441,
+          -0.7841505679060569,
+          0.43381526610252397,
+          -0.6189664276158516,
+          0.7753455457809262,
+          -0.031333197381603915,
+          -0.4195261271169934,
+          -0.35765285122664064,
+          0.1670076832004502,
+          0.6579867600350418,
+          0.8199731952011056,
+          -1.400604287015399,
+          0.07591637592872448,
+          1.1041552012300355,
+          0.6396602934525983,
+          -0.680825011619644,
+          -0.5275214987361293,
+          0.42638312956174573,
+          -0.7985566252329258
          ],
          "y": [
-          0.6518120929560598,
-          0.1688494336214806,
-          0.6078204239092336,
-          -0.6139756787647714,
-          0.6981509319796958,
-          -0.4679536969351994,
-          0.3649931671202438,
-          -0.27150869017833185,
-          -0.04750222444241588,
-          0.03940346336036153,
-          -0.691235942581531,
-          0.7801522424697626,
-          0.6248419340597068,
-          -0.5729349926857948,
-          0.3543270855775088,
-          0.3252494214291572,
-          -0.5885642701004152,
-          -0.6847229305584672,
-          -0.706613384910586,
-          0.18104036131873158,
-          -0.6753736527223139,
-          0.7962377682778126,
-          0.06928455226131237,
-          -0.5651140873724787,
-          0.600405860426288,
-          -0.6394484179510602,
-          -0.15392385493881444,
-          -0.3141627770352969,
-          -0.16164455031559782,
-          0.5733280281934365,
-          -0.7059651142879504,
-          -0.1601484421276405,
-          -0.40043296477266593,
-          -0.41674381622761336,
-          0.07676330411819593,
-          0.4514112596524256,
-          -0.6496094620564304,
-          -0.4614748413296697,
-          0.3028588528658541,
-          0.40347418789823847,
-          0.6239036916339753,
-          -0.5715301727729375,
-          -0.7210115684232915,
-          0.6329971963538307,
-          -0.4298327189394111,
-          -0.6391592228460914,
-          0.7900474591074279,
-          0.4067313674614703,
-          0.7627425320552259,
-          0.40348431976711097,
-          0.7950378852143111,
-          0.6168238375941585,
-          0.13724235013884215,
-          -0.7320268663540497,
-          -0.3283834030909042,
-          0.5659750030147992,
-          -0.43646391391633443,
-          0.4205548281316645,
-          -0.7334437894839055,
-          0.5210273163099822,
-          0.6328070955865605,
-          0.33566233948668556,
-          0.6755027910830373,
-          -0.3696209924913277,
-          0.8338890358857318,
-          -0.3606360541465346,
-          0.44131935491048635,
-          0.3124992301925168,
-          -0.27472403279525875,
-          -0.48996107355803464,
-          -0.532971953042719,
-          -0.16220375067193024,
-          -0.6053426785642838,
-          0.33683580898268,
-          0.6895137759685104,
-          -0.7818512690760286,
-          -0.8082020482908415,
-          0.03430997215399785,
-          0.5007084471035349,
-          0.6849354413681852,
-          -0.7161797533852392,
-          0.010092583055478162,
-          -0.6100745933982953,
-          0.5834325780917373,
-          0.22914292214662593,
-          0.16490870789851403,
-          0.17064037662871454,
-          -0.1629179074051218,
-          -0.13128072138714006,
-          0.7115564692547917,
-          -0.6208274408592707,
-          0.4805481767508221,
-          0.2613765007159334,
-          -0.47241129021699657,
-          -0.053573440780984326,
-          0.3020720301641283,
-          0.1799027035734878,
-          0.17430520042415806,
-          -0.7082523011688316,
-          -0.7549216453497262,
-          -0.7086535460031727,
-          -0.3961078122154112,
-          0.09402375828142158,
-          -0.027969717522918,
-          -0.38974715770907076,
-          -0.02223085056688362,
-          -0.70414781846613,
-          -0.5929697046887725,
-          0.7282922784680798,
-          0.23935310514658512,
-          -0.7759100583023231,
-          0.1384835079427799,
-          0.5008836473825841,
-          0.30896194278688277,
-          0.586527285553579,
-          0.042378769275666826,
-          -0.3298620460444489,
-          -0.8808703380142947,
-          0.07843411537061946,
-          0.5477489921179064,
-          0.7494882047857151,
-          -0.5465070399457179,
-          -0.0005010520302583389,
-          -0.4329167466619382,
-          0.44717980076101155,
-          -0.33673900902600973,
-          0.8292446420125461,
-          0.13512744687530295,
-          0.8016965238012302,
-          0.2362984107464921,
-          0.3427578621725829,
-          -0.18303770184148552,
-          0.3868716364571747,
-          0.3806328077821253,
-          -0.885575897258094,
-          -0.6432433128808044,
-          -0.6378467710660612,
-          0.3912076893509709,
-          0.47716943898786784,
-          0.18058358544219807,
-          -0.15345422798817526,
-          -0.40783891903885594,
-          0.18669038988046188,
-          -0.3547958080267399,
-          0.8750008963339873,
-          0.6084466386504197,
-          0.7287305206539744,
-          -0.8044652524161515,
-          -0.3740437244685831,
-          -0.3593093795498861,
-          0.4399668908558045,
-          -0.8456170226712116,
-          -0.7719490925454044,
-          -0.3708918371562016,
-          -0.7175413655276174,
-          0.7608519443082022,
-          0.7383332368252339,
-          0.8612271758034794,
-          0.43513052086733445,
-          -0.43118162669586285,
-          -0.56873712787079,
-          0.9058153561938177,
-          0.48179393026015477,
-          -0.32572079862310266,
-          0.8512748492870201,
-          0.8297713221730095,
-          0.39583162177549325,
-          0.44881585458471157,
-          0.05432128011228078,
-          0.6900066194438539,
-          0.6753876118246803,
-          -0.7169327032836458,
-          -0.6947234984012349,
-          -0.62878821974819,
-          -0.6814804721525884,
-          0.6739611829041667,
-          -0.37667637606870535,
-          -0.3225261301474178,
-          -0.018753362260616815,
-          -0.5934108466127181,
-          -0.4882862607805215,
-          0.2450043509104623,
-          -0.581538711170436,
-          -0.9442310512631142,
-          -0.16300552569544252,
-          0.2139955896980661,
-          0.47115408778227136,
-          0.4661570826164119,
-          0.433080837512165,
-          -0.6892040185159694,
-          -0.06971233688271787,
-          0.9727716166171819,
-          0.3107743005113948,
-          0.6960210428365994,
-          -0.44181345329994826,
-          0.5008464534963925,
-          -0.12755618144384423,
-          0.9062590185128263,
-          0.42230412304292786,
-          0.03884428240644755,
-          -0.9376573110053396,
-          0.5041660249502588,
-          -0.19925180775926357,
-          -0.30148034748733554,
-          0.04774965145618416,
-          -0.47622978746840045,
-          0.02410065153245521,
-          0.8675728026716665,
-          0.3690684204308317,
-          -0.43583333128640317,
-          -0.48410639239746334,
-          -0.7301046539215279,
-          -0.9938859706733799,
-          -0.37898338650824737,
-          0.4760110984513109,
-          -0.9592481932834939,
-          0.8531306717804323,
-          0.4146219739055224,
-          0.9973452261599789,
-          -0.6520693541010899,
-          0.11650350811234114,
-          -0.21190338996885322,
-          -0.9685969757499039,
-          0.33488041922075656,
-          -0.45917607891679213,
-          0.17628779858636143,
-          0.8690204472560663,
-          -0.44926905364948644,
-          -0.056314967812976124,
-          0.5528322543204769,
-          0.8384194482432682,
-          0.3905350311820985,
-          0.5892560600125674,
-          0.15833120260063582,
-          0.9398527672878992,
-          -0.7704869097096975,
-          -0.8703525048709942,
-          -1.0008182495968838,
-          -0.26264835515542784,
-          -0.7994657702478246,
-          -0.4252311390240805,
-          0.78397182015598,
-          -0.7988233776813273,
-          -0.3111584405671907,
-          0.28262206104285453,
-          -0.1478017626526489,
-          -0.6557376897407533,
-          0.5058509792826563,
-          -0.3633587818762031,
-          -0.6061019206872441
-         ],
-         "z": [
-          0.3413118782422417,
-          -0.18317045792293365,
-          -0.2737427076713203,
-          0.37803985221674075,
-          -0.053705483855687644,
-          0.6027613915438725,
-          -0.4535959859885136,
-          0.176918262494846,
-          -0.5061187420022221,
-          0.7737102426276132,
-          0.07023854675989893,
-          0.0807711449679227,
-          0.46126193084925676,
-          0.14182383945914182,
-          0.1340544466852796,
-          -0.47921713366606267,
-          0.33334113667765564,
-          0.07451173496677296,
-          -0.3569297697733779,
-          0.6948674585587536,
-          0.2995297717854215,
-          -0.03634085045984565,
-          0.21782462543152523,
-          -0.34135121810879365,
-          -0.2078660221380542,
-          0.45155305801607193,
-          0.7769525630509496,
-          0.2667917371770428,
-          -0.7031111856542817,
-          0.5610812550975073,
-          0.2133990988695156,
-          -0.6784259904236178,
-          0.07046415600796749,
-          0.6007594041138776,
-          -0.023497151723463765,
-          -0.23236835262529407,
-          -0.29512290414237696,
-          -0.3154993312792658,
-          -0.13233097884488876,
-          -0.5397057253939384,
-          -0.31967614005515443,
-          -0.5872128712745855,
-          -0.01665388559470245,
-          0.4491342881877976,
-          -0.38121731928826486,
-          -0.520098210170976,
-          0.24234341650818297,
-          0.354024126696308,
-          -0.027229599917065413,
-          0.6846099389035817,
-          -0.23622827546594052,
-          0.12964237553393143,
-          0.7591722908230241,
-          -0.3914891782102139,
-          0.3267263909395295,
-          0.5333645143013971,
-          -0.39477895616358155,
-          0.6034559287836623,
-          -0.13458976999500266,
-          -0.1989286233729345,
-          -0.2085609176290835,
-          -0.017696732241167232,
-          0.0625131088005533,
-          0.7417615371165149,
-          0.04774277606050589,
-          -0.19083039681822356,
-          0.44430737052888697,
-          -0.7710285818593918,
-          0.7948677271201648,
-          0.636113172273425,
-          -0.6289816851514916,
-          -0.03074284603868933,
-          0.050604971641837505,
-          0.3574213772341654,
-          -0.1039852716836994,
-          -0.15197211793676413,
-          0.252993868725106,
-          -0.5875704621419959,
-          0.6764906957823311,
-          -0.49642650343367173,
-          0.22220641984790257,
-          -0.6745370322965256,
-          0.4903636412242534,
-          -0.6131536557009314,
-          -0.8115403644480718,
-          0.6739693772373755,
-          -0.8138898637685733,
-          -0.6535315237094828,
-          -0.7822969623835054,
-          -0.4079241529512035,
-          -0.5846927055715183,
-          -0.5164471980395652,
-          -0.0758740736612457,
-          0.7014798725815106,
-          0.47410139110540345,
-          -0.45695171297849335,
-          0.23872113170000595,
-          0.3522959768966954,
-          -0.19876792329318335,
-          -0.10067749936040511,
-          0.5238419183146563,
-          0.5284163757200006,
-          -0.49506017589334134,
-          0.4818937644955439,
-          -0.5785539788271749,
-          -0.5999296405891658,
-          0.4604228520698316,
-          -0.6269780928953749,
-          -0.2367219075065136,
-          -0.2936529000640717,
-          -0.41639172640273575,
-          -0.6918140255799072,
-          0.17239313796573522,
-          0.8419140548959234,
-          -0.13705577709745417,
-          0.19613511377499762,
-          0.4528876063994737,
-          0.12245740704153547,
-          -0.8138753636974738,
-          -0.6554388221413069,
-          0.43628909097812785,
-          0.2878294325232524,
-          -0.8841717879380918,
-          -0.7673172959371718,
-          0.6876998464042113,
-          0.6182865190781193,
-          0.3843833555677787,
-          0.0328355980961085,
-          0.4197079833436578,
-          -0.10978472626455313,
-          -0.59846453004641,
-          0.24925865352709892,
-          -0.8349607490168626,
-          0.7583772110840891,
-          0.2571265700597455,
-          -0.6622100082381538,
-          -0.6149446621169241,
-          -0.8312709175636577,
-          -0.7938843548341706,
-          -0.633105456053331,
-          -0.21813027159644535,
-          0.5341422582302108,
-          0.8996897879919342,
-          0.6472870449396628,
-          -0.32336110135970086,
-          -0.412298010768979,
-          -0.46515927392767326,
-          -0.14247603000596942,
-          -0.7470990739102485,
-          -0.10449646556174408,
-          -0.8052766202226,
-          0.31438156163209424,
-          -0.27372082461494396,
-          0.3460400707844522,
-          -0.45910855498832787,
-          0.015069611294195625,
-          0.48217009634816116,
-          -0.3628846294277056,
-          -0.6614550496000757,
-          -0.09476444734982788,
-          0.6331118966644366,
-          0.047981091634802034,
-          0.2889289981182981,
-          0.7474982947024149,
-          -0.09860340714524353,
-          0.1280015717003499,
-          0.76422738001539,
-          0.7846762833288855,
-          -0.9072125019333489,
-          0.6494453655226007,
-          -0.6970135717560679,
-          0.060589972888941385,
-          -0.158839623642191,
-          0.6754995028012094,
-          -0.6768079025411929,
-          0.36280617987874436,
-          -0.8272561279550528,
-          0.12828799337034485,
-          -0.6235795460396408,
-          -0.7387916661383241,
-          -0.6478455163050788,
-          0.7056997163744914,
-          0.7926883867832144,
-          0.26884047863886923,
-          0.8341916947685709,
-          -0.5333535684339353,
-          0.327101440094881,
-          0.6629622021537441,
-          -0.7189035345343958,
-          0.5565528606738145,
-          0.013328696207111322,
-          -0.10610532314562782,
-          0.5507912837471549,
-          -0.15131296285012918,
-          0.01844915853235927,
-          0.2485114107885104,
-          0.9707504659853828,
-          0.39434713084585427,
-          -0.670583304711661,
-          -0.5017487270865054,
-          -0.292364019214657,
-          -0.1699357187289743,
-          -0.9506700733220566,
-          0.8120737487976192,
-          -1.0074491039547693,
-          0.1972786640199101,
-          -0.5444532930136821,
-          -0.07081962664245073,
-          0.20999987635165682,
-          -0.2653039048037028,
-          0.5590567225476709,
-          0.28137691543494664,
-          0.011043829846600389,
-          0.5713831487552691,
-          -0.09790316517078249,
-          0.32981580352746875,
-          -0.577660752748257,
-          0.8755983568392299,
-          0.28974605170092027,
-          0.6149042430666795,
-          0.03598303906138964,
-          -0.03550002515709144,
-          -0.06242483504621096,
-          -0.6501311108139709,
-          0.9343030412293757,
-          0.7389891469652307,
-          -0.4506446296267816,
-          -0.8412213619943392,
-          0.3198751647457261,
-          -0.8746562356554124,
-          0.5083767613277873,
-          0.4423878757011582,
-          -0.7812559732552172,
-          0.964592948525238,
-          0.1389614517426218,
-          -0.5549104668539935,
-          0.16083846220682857,
-          -0.2974411602017894,
-          -0.9952610639343411,
-          0.4403233291408544,
-          0.22611997413313786,
-          0.5801685141673858,
-          0.3746281269048606,
-          0.0924475487752391,
-          -0.46057887657280816,
-          -0.6014087807092586,
-          0.16855232411630564,
-          0.5078339967994623,
-          -0.7489770640521632,
-          -0.7572353473008142
+          0.8368288156406397,
+          -0.9225069176097862,
+          0.562142944727941,
+          0.41218616737856695,
+          -0.14897968236226028,
+          -0.7027204215858747,
+          -0.6825785162410165,
+          -0.021686013280458695,
+          0.8614648759057382,
+          0.5572958569261756,
+          -0.8784686035001401,
+          -1.0863737824991195,
+          1.0052374944028353,
+          -1.056927605127929,
+          0.8443742263155571,
+          1.4665347565923947,
+          -0.14874682319880422,
+          -0.43750533720678336,
+          -0.49859239727293864,
+          0.5534083317353657,
+          -0.7640109243835879,
+          1.309603987024246,
+          0.7094613084130389,
+          -0.6580963540307515,
+          -0.24236359748746014,
+          -0.8515454652074054,
+          -0.8716177016374289,
+          -0.7751203783316227,
+          -0.34826984287378254,
+          0.6272892698703479,
+          0.30384299327282527,
+          0.7690414285946929,
+          0.944201642518302,
+          -1.1729103417537716,
+          0.024614891196906658,
+          0.6143144974847278,
+          0.8496316273074979,
+          -0.5060756190546848,
+          0.5570890572628036,
+          -0.6688496641435282,
+          0.020857243903067885,
+          0.12206640950463778,
+          -0.5223075597375949,
+          -1.0386931862839957,
+          0.9628073625139315,
+          -0.9166449659991268,
+          -0.33036169112926483,
+          1.0513227008597765,
+          -0.7136121168901794,
+          -1.064665602439606,
+          -0.6923195019498687,
+          -0.7422757272010384,
+          -0.8159142756405436,
+          -1.2068698924057133,
+          -1.0192029346240647,
+          -0.9615472572395988,
+          -0.8169947248219549,
+          -0.732913504030136,
+          -0.7816816019426773,
+          0.7024548328059298,
+          -0.8859738696631576,
+          -0.7789437157498739,
+          0.17003687044317436,
+          -1.0359806503881128,
+          0.9104036077643208,
+          0.783877613181758,
+          -0.9137865518793321,
+          0.7533036270038262,
+          -1.0855903966380636,
+          -1.0390647900976786,
+          -0.059900422981322386,
+          0.048201710678221356,
+          0.6555065858672849,
+          -0.7080008119779261,
+          -0.09297976222384947,
+          -0.6611718409105656,
+          1.032146114488609,
+          -0.8705835003539188,
+          -0.2043229472326604,
+          -0.5258298742862065,
+          0.6451680633862584,
+          -1.5248681979179668,
+          -0.24599201475366433,
+          -0.2325998099826449,
+          1.1365446883672088,
+          -0.8274947873988129,
+          -0.4321742139012888,
+          0.653546685266823,
+          -0.40348419398598767,
+          -0.7140653821815964,
+          0.3025586128453748,
+          1.3072309474719281,
+          -1.0011650162269834,
+          0.41887688501603376,
+          -0.48475371632829156,
+          0.9526187410554899,
+          -1.0383052417080927,
+          0.31315973334841696,
+          -0.6373954390021523,
+          -0.1613822719593155,
+          -0.2359077550816586,
+          -0.8834770557061616,
+          0.8536129440913656,
+          -0.5352867083528031,
+          0.1467984668286159,
+          0.1559601821650483,
+          1.1221966661322815,
+          0.059629479773142265,
+          -0.693805443686314,
+          -0.8658308603181669,
+          0.25837921375771755,
+          0.9595318544805194,
+          -0.018042282854358552,
+          0.3293766999360849,
+          0.3490823629419858,
+          0.8293926945105468,
+          -1.1681406300807504,
+          -0.5920401240595863,
+          0.7832323094746507,
+          0.5459226252755309,
+          -0.7613830286060027,
+          -0.7981996840496262,
+          0.9894782573268939,
+          -0.3134661537918508,
+          0.7027836575195888,
+          0.42477095176739005,
+          -0.2926315867073384,
+          0.548402186241394,
+          -0.7470211314226891,
+          0.6185422548477394,
+          1.4963241214945597,
+          -0.07825582795933614,
+          0.6890925687399099,
+          -0.28911964732690215,
+          0.5798351883652064,
+          0.7318407109022145,
+          0.14861473090703844,
+          -0.8483258025274856,
+          0.7778841115860429,
+          -0.7144200220517972,
+          0.16251312995267944,
+          -0.2194661733246793,
+          1.0721660507035782,
+          -0.5399639911621879,
+          -0.9147232526444542,
+          -0.9775788870898011,
+          -0.9081716096679867,
+          -0.8434911796174307,
+          -0.6997978196366026,
+          0.7387025784559224,
+          0.17436379285114825,
+          -0.40760932091703156,
+          -0.6822630519961981,
+          -0.9326000403815602,
+          0.12742879252101824,
+          0.5305849743424601,
+          0.6582967710616737,
+          -0.8770364101989832,
+          0.49303824598203516,
+          0.7730625420498903,
+          0.05526502181091685,
+          0.41242013349954854,
+          -0.6547097990758772,
+          0.7929696539684813,
+          -0.8301046625430483,
+          0.7548467236770099,
+          0.18496676135256954,
+          0.09868695297418556,
+          0.33051367113781854,
+          0.523225711688217,
+          0.1587855428695784,
+          -0.3818324643235791,
+          1.112000129360486,
+          -0.6750452453533259,
+          -0.961954765944723,
+          -0.5562413905627331,
+          0.1599983004441165,
+          0.10886206456697743,
+          0.7315802293678834,
+          0.9925692948315838,
+          -0.07808514680506824,
+          0.9904361308849486,
+          0.009996115467191315,
+          -0.7669199725498168,
+          -0.8367124737664259,
+          -0.3354675693140102,
+          0.045548669060176926,
+          0.904675598049519,
+          -0.07487296981566077,
+          0.582327261065908,
+          1.1301637499853259,
+          0.2368255187577492,
+          0.4294562106640362,
+          0.666874382579409,
+          0.9804767260782131,
+          -0.5410343566242337,
+          -0.7421919360433231,
+          -1.046825458642398,
+          0.9212760471304716,
+          1.0086477709919297,
+          0.6576026173649002,
+          -0.3978313152900508,
+          -0.8958457053826568,
+          0.20498833122404628,
+          -0.2782614571833147,
+          0.35803535685137156,
+          -0.17839357917588622,
+          -0.8127165436963213,
+          -0.9191543024361406,
+          -0.8024326290306449,
+          -1.0563920006153409,
+          0.549508284151507,
+          -1.3002702985287424,
+          0.45301332097579833,
+          -0.6255148524943551,
+          -0.3051401481870721,
+          -1.0226992137660507,
+          0.20549009169410373,
+          -0.7838090593794435,
+          -0.14338339659869725,
+          -0.6577769169777045,
+          0.5875470247953396,
+          0.34411578399584375,
+          1.0483140721539943,
+          0.8730957687414318,
+          -0.6729653824779944,
+          1.3688577615190007,
+          -0.14963504770154534,
+          0.5884166696339591,
+          0.8375348427758154,
+          -1.0658742779713495,
+          -0.9293900646765014,
+          0.00887093132692767,
+          -0.4042344495024685,
+          -0.635459096473344,
+          1.2175081730549775,
+          -0.016957081385954142,
+          -0.1505837528341813,
+          -0.9826665292714194,
+          0.9728855486094922,
+          -1.0532806421555287,
+          0.49244245417809995,
+          0.24063044252159996,
+          1.2109580512654672,
+          0.21158447528500246,
+          -0.8295383500329444,
+          -0.6876560092835579,
+          -0.9873852361506028,
+          0.5250659554353354,
+          0.8458085809534959,
+          0.7891802383312306,
+          -0.07421666638528424,
+          0.30564303803088333,
+          -0.7296856398985982,
+          -0.43029276654340276,
+          0.4428781249619422,
+          -0.7103910662162236,
+          0.09204442549062682,
+          -0.5652445554755369,
+          -0.7334774937873396,
+          0.4476045491433144,
+          1.012432029957683,
+          -0.5934585584698734,
+          -0.3213645820834892,
+          0.8434893674965144,
+          -0.8436481351622002,
+          -0.8632744394017159,
+          -1.050645375588491,
+          0.5371893230401689,
+          -1.0914072070555438,
+          -0.6181060083103141,
+          0.912475131593974,
+          1.2407417265926568,
+          -0.1543375112284587,
+          0.814923414753736,
+          -0.39883042562959403,
+          0.057420058067794065,
+          1.0625904012395544,
+          -0.4817061896644774,
+          0.21846675288874554,
+          -0.07674626329459816,
+          0.8963240370977635,
+          -0.5182763878814393,
+          0.718253350546221,
+          0.5050082529524114,
+          -0.15087431326621994,
+          0.6125939022718686,
+          -0.6320404844149592,
+          0.699865807872482,
+          -1.124140607276122,
+          0.7084379802109603,
+          -0.15737399195588034,
+          0.4184904319466504,
+          0.8639363018111418,
+          0.5495211897691104,
+          1.159356898545358,
+          -0.0850259523069501,
+          0.866899622077942,
+          -0.7886445131362726,
+          0.37034721205751714
          ]
         },
         {
          "marker": {
-          "size": 1
+          "size": 3
          },
          "mode": "markers",
          "name": "Class 3",
-         "type": "scatter3d",
-         "x": [
-          0.9391750844337161,
-          0.9034455118959989,
-          -0.9223992296580102,
-          -0.1509269014306751,
-          -0.08177568470930166,
-          -0.5733628447528771,
-          0.6121813686451691,
-          0.9868974870018603,
-          -0.1321382067979765,
-          0.13760825126771184,
-          -0.9639095825847982,
-          -0.46535863223579643,
-          -0.34240519660530716,
-          0.3534573115686881,
-          0.5820695019927601,
-          0.7700043514927637,
-          -0.3721134279283538,
-          0.8122092589051865,
-          -0.8680498107209691,
-          0.9773339952405921,
-          -0.7996588813843994,
-          -0.6642104267777774,
-          -0.1835588048865847,
-          0.08455608940243341,
-          -0.9137677147835869,
-          -0.23169212579742257,
-          -0.17264481248570843,
-          0.040314367231364036,
-          0.36947326709903866,
-          -0.21781313118568174,
-          1.0616032061212888,
-          -0.9328486373621173,
-          -0.32049502358218673,
-          1.0769447394156886,
-          -0.050628316516722574,
-          -0.649585020909198,
-          -0.5147758164668726,
-          -0.024525919075884726,
-          0.8816855874599278,
-          -0.48961557030463754,
-          0.6826391078948524,
-          -0.3740967357564636,
-          -0.6823039223021822,
-          0.23061087159626478,
-          0.40368055142618964,
-          -1.011710777060547,
-          -1.062760511130385,
-          0.3340416825643114,
-          0.17634089386915622,
-          0.7966017718408426,
-          -0.12512058447320104,
-          1.105129246452439,
-          0.24723991948781052,
-          0.25251672096292177,
-          0.5013413648775802,
-          0.16531160357311775,
-          0.9485667166703183,
-          0.6161002274615298,
-          0.28636531407702204,
-          0.26672907480221547,
-          0.3965345413794648,
-          -0.3385263968619577,
-          0.8935755612003388,
-          -0.5557760535941071,
-          0.3672334420055288,
-          0.7290267537569795,
-          0.14387051664658393,
-          -0.9465372383199508,
-          -0.38625315354483475,
-          -0.2552416236295792,
-          -0.23697819769814682,
-          -0.9406737858649026,
-          1.0402745148511645,
-          -0.35601104918789717,
-          1.057863077609561,
-          -0.1249982094777464,
-          -0.4622826113700814,
-          0.2235560212364663,
-          0.7836035845095071,
-          0.5102217404246491,
-          -0.08608848877038584,
-          0.047369590426257394,
-          1.1122929146396245,
-          0.6042405827537783,
-          -0.39886382491636313,
-          -1.1264166713679196,
-          -0.0730121410911819,
-          0.916319724503632,
-          0.3586969073158059,
-          -0.7723817630766061,
-          0.11911989868555033,
-          -0.10437078969246122,
-          -1.030644549200273,
-          0.6606639450349037,
-          -0.6352751064279074,
-          0.13058869662868247,
-          0.32753631023156665,
-          0.9713232723195748,
-          1.1748368209254187,
-          -0.7687989761874222,
-          -0.9615634987250707,
-          0.18888706636587227,
-          0.16660465178483883,
-          1.1514502946754641,
-          -0.19049939953374836,
-          -1.06399798026688,
-          0.007320407694300841,
-          0.8544439558092385,
-          0.19203523740760597,
-          -0.651014540925804,
-          -0.16231541081755516,
-          -0.4963830827847466,
-          -0.0949497061539839,
-          0.22935664764614327,
-          -0.4561685531586849,
-          0.5782480955903502,
-          0.013023760823397195,
-          -0.5341363938596135,
-          0.08009427539903742,
-          -1.0826564977827504,
-          -0.1829964508562868,
-          1.0432343856707595,
-          0.8192507905688898,
-          -0.5679332825323675,
-          -0.45945339808362506,
-          -0.05899955424720246,
-          0.6234134507026161,
-          0.8488208145381473,
-          -1.174476739375096,
-          0.2983430264431126,
-          0.0150412761565992,
-          0.2762637350702139,
-          0.6616245368043022,
-          0.32369429789920023,
-          0.48228364078768626,
-          -0.4449564128326311,
-          -0.9189427053343057,
-          -1.0728038091544065,
-          -0.974159352315444,
-          0.5836574976716778,
-          0.8060158603035126,
-          -1.2044732738221129,
-          -0.7990796928464368,
-          0.054707654986557934,
-          -0.875159491647401,
-          0.23498149135407687,
-          0.8740498663697116,
-          0.865193854007057,
-          1.1631678250496877,
-          0.5089457217058542,
-          1.095969128182239,
-          0.524763381441894,
-          0.742145842215056,
-          0.87382996790702,
-          -0.7937590446811642,
-          0.40487716748759406,
-          -0.3027231334477671,
-          -0.7803554898483036,
-          1.221147850071177,
-          0.803004706925125,
-          -0.6088811004814844,
-          -1.0711587450369966,
-          -1.1053428211178895,
-          0.6870044078236873,
-          -0.8263801654245583,
-          1.0294218361927252,
-          -0.6870650659797205,
-          0.0996216205668346,
-          0.03083158550628481,
-          0.27317183775503984,
-          -0.7479145703998398,
-          0.4852592342721896,
-          0.6194586276345421,
-          1.1166720907819767,
-          0.13898521534594077,
-          0.23607464632732494,
-          1.1746876559154367,
-          0.24297482269358178,
-          0.5179501330411918,
-          1.1365649565139342,
-          -0.2267462525384789,
-          0.4396860408931305,
-          0.7534083984298959,
-          -0.3598916311150642,
-          0.7075185422235448,
-          -0.7266760610055859,
-          0.5593440538893365,
-          0.329986215931201,
-          1.143541978380472,
-          1.1863136224356425,
-          -0.4104920679947278,
-          1.1400121390082465,
-          1.227511777112537,
-          1.0757328966423112,
-          -0.09045139636910056,
-          1.044771539721285,
-          0.7301204229784165,
-          -0.6572634324285941,
-          0.3449778009853115,
-          -0.449407259493338,
-          -0.6191556046990825,
-          -0.6741051235988692,
-          0.2597113499498767,
-          -0.35761692414636287,
-          0.7043120730184604,
-          0.35481397542641135,
-          -0.14716084105664567,
-          -0.0025473798204305367,
-          -1.3389877719573278,
-          -0.4972208185770296,
-          -0.6528244889418893,
-          0.531310930232445,
-          0.4052625632294698,
-          0.7044670239022265,
-          -0.032110580141825794,
-          -0.4782815835284892,
-          -1.1199884272272742,
-          -0.4032993188501268,
-          0.7429248481004388,
-          0.2857071007977949,
-          0.18211562777731158,
-          -0.5168455878158851,
-          -1.1367164812586283,
-          -0.335837050214667,
-          0.2489407582285781,
-          1.126553067392438,
-          0.4599376712557214,
-          -0.425470825792191,
-          0.4833565038461565,
-          -0.9553538462330088,
-          -1.2450472870598146,
-          -0.7113617124499734,
-          -0.45070075995945197,
-          0.45976166207005037,
-          -1.197101243573531,
-          -1.2559958274518697,
-          1.0912379638635183,
-          -0.9278790900784893,
-          1.305819272894824,
-          -0.25915959945472555,
-          -0.7232235585989767,
-          -0.8458458155877097,
-          0.3165836742924417,
-          -0.30185049931998964,
-          0.07202327708629001,
-          0.6380063080943713,
-          -0.7566641947136447,
-          -0.1632953723206858,
-          -0.02520233382409092,
-          1.27115633358299
-         ],
-         "y": [
-          0.39331401154666373,
-          -0.41830414060175924,
-          0.4735300004521996,
-          1.0541025602586265,
-          -0.21291246499151606,
-          -0.8892418319085845,
-          -0.848737728862988,
-          -0.39751282375977676,
-          -0.310936813204006,
-          -0.5250059859786376,
-          0.13414251755022255,
-          -0.21476673457084006,
-          0.8958414647507028,
-          -0.9894588851586613,
-          0.05184363178173318,
-          0.045452837397202496,
-          0.9817030575486585,
-          -0.7182944966768781,
-          0.4224256404721518,
-          0.4587071605373993,
-          0.33490845330084723,
-          -0.10188528773534883,
-          -1.0628825752425857,
-          -0.6880636466593597,
-          0.48769706612616764,
-          -0.2772623340382819,
-          0.6817125743516337,
-          0.18992342175855717,
-          0.2958522192267753,
-          0.5513032493911633,
-          -0.2281691021974565,
-          -0.14352898515203685,
-          1.0270496430775695,
-          -0.1655714391045856,
-          -1.0732988192630322,
-          -0.7100347454362466,
-          -0.1293273137601185,
-          0.16561482563036733,
-          -0.043843455483475256,
-          -0.9944166150634199,
-          0.8740764158221984,
-          0.5616299410175546,
-          0.48511163960782794,
-          -0.8846708938966014,
-          0.8029661646541446,
-          0.09058350048335417,
-          0.179421035298792,
-          1.0494285078454286,
-          1.1154279111257128,
-          -0.19013301647569186,
-          -0.5644813950156763,
-          -0.19374236615970164,
-          -1.106482650849612,
-          1.045028900911941,
-          -0.06345271794498095,
-          -1.1001843622492102,
-          -0.5250156357519808,
-          -0.9517513592417769,
-          -0.8915795943996196,
-          1.106992657182089,
-          0.765832878421759,
-          0.8879536719095823,
-          -0.5984357666925432,
-          -0.9765460040111187,
-          1.0838100791726204,
-          0.6585144874112798,
-          -0.53482074094603,
-          0.4899674571560973,
-          0.2770472691161914,
-          0.8197699655905266,
-          0.2420694042243293,
-          -0.1337283107790902,
-          -0.1480141915769881,
-          -1.096484627444861,
-          0.46270639298354027,
-          -1.095038500596131,
-          -0.4211961403085073,
-          0.33182229494467613,
-          -0.7353245328665466,
-          -0.16324717849358475,
-          1.0701705764315501,
-          0.3648241195186512,
-          -0.329374276637912,
-          -0.772113865577002,
-          -0.9053119222831545,
-          0.31146267415316575,
-          -1.161909951136973,
-          -0.5082912558146501,
-          0.7542529063285464,
-          -0.22373456040391704,
-          0.9316821523030718,
-          -0.32953757075149126,
-          -0.21864383518639213,
-          -0.9665291967089861,
-          0.3478393819679185,
-          -0.9525621344411208,
-          -0.9667124137645416,
-          -0.09719077675725929,
-          0.014768977509248039,
-          -0.7677943118174716,
-          0.5276809570224907,
-          0.3597229136851702,
-          0.545084005978157,
-          -0.2680837965881891,
-          0.5073789948612173,
-          0.5374407260061944,
-          -0.9276082957010092,
-          0.724121556360309,
-          -0.9027975758328077,
-          0.1197561871432524,
-          -1.1592903689696823,
-          -0.4687417340550599,
-          1.0060348549567888,
-          -0.8337070316178672,
-          0.2555452833460179,
-          0.983025185166872,
-          1.1854201917440021,
-          -0.43240838531190584,
-          -1.0170161116994882,
-          0.36363302523764457,
-          1.1304142549885723,
-          0.6064569355160472,
-          -0.5803100325063915,
-          1.0554902093109213,
-          -0.8507914839751186,
-          -1.0250539651634931,
-          -0.0056375087389481885,
-          -0.4644943991833217,
-          0.30378595606993963,
-          1.1410661812285188,
-          0.21837791746299778,
-          -0.937957436983719,
-          0.8991252303226743,
-          1.1840449546656067,
-          1.0516418417316558,
-          1.0845092641756706,
-          0.5867094192526745,
-          0.5307396191719941,
-          -0.663142445290528,
-          0.5752381801766515,
-          0.931340995718995,
-          -0.039278154569107646,
-          -0.31820714350997875,
-          -0.6090198992880549,
-          0.6145861470390667,
-          -0.5292599056259718,
-          0.7716727866497166,
-          0.775320830590094,
-          -0.17609507233015642,
-          -0.9144820784358841,
-          -0.5538437143976426,
-          0.05333963759689362,
-          -0.37846844762429405,
-          -0.7573493198946466,
-          -0.6487724664969731,
-          0.9894937185002239,
-          1.0611974248896245,
-          0.1272043741764224,
-          -0.28258545685561115,
-          -0.7822676446089506,
-          0.992332422389085,
-          -0.31573375050777686,
-          0.624452911952897,
-          0.4563497103663653,
-          0.8080977618382671,
-          0.49816135170033227,
-          -0.9755373597703926,
-          -1.2504754675067284,
-          1.1985820851458984,
-          -0.14458298691677965,
-          0.5816270851786577,
-          -1.1403623286453735,
-          1.0413354212780948,
-          0.5426583011020832,
-          0.729624270988582,
-          1.0121291577979954,
-          -0.3232158626871389,
-          -1.2466576493611736,
-          0.20415845987259226,
-          0.34717171769614474,
-          1.2694061234286997,
-          -1.1103165474212888,
-          -0.36577817089545217,
-          -0.018083769575141066,
-          -0.4742000974388359,
-          0.8949905972764135,
-          -0.6430340360113349,
-          1.075513817451364,
-          0.07379079107974355,
-          -0.39144599969686056,
-          0.4161877810257713,
-          0.6341611618832217,
-          0.1399440570563807,
-          0.7059124058128556,
-          -0.6756691252465425,
-          -0.8072961146106636,
-          0.7967008426485012,
-          -1.0582059845182477,
-          1.2758667840513354,
-          1.229553582370886,
-          -0.9777870667878157,
-          0.08674101229021652,
-          1.2997921429282522,
-          -0.7487607354576067,
-          -0.5351349390961396,
-          0.7901202800144487,
-          -0.09088974597531135,
-          -0.8190875268150946,
-          0.150821426867824,
-          -0.024740598893882696,
-          -0.9557853506567737,
-          -1.1804477948295569,
-          -1.262798306740441,
-          -0.34913862820886354,
-          0.017952324329154085,
-          1.2734571926242744,
-          0.5376943598732695,
-          -1.2873609396684667,
-          0.781724883972175,
-          1.3337348413244254,
-          -0.052641211869899354,
-          -0.02342430715924474,
-          -0.539327863103178,
-          -0.46197353070027475,
-          -0.8849720137673701,
-          -0.3614840714533589,
-          -1.0628382740422895,
-          1.309758464910177,
-          -0.9658765461903912,
-          -0.9351189890474845,
-          0.5326929688330817,
-          -0.8585610017416927,
-          0.8407616520890555,
-          -0.07012792580843497,
-          -0.06953661696592196,
-          -0.05699262928967529,
-          -0.3456687411241972,
-          0.43986990851805696,
-          0.41289957956994416,
-          -1.2048191533162562,
-          -0.18199269493036055,
-          0.5745425189041138,
-          -1.1107771795318662,
-          -0.7156658670150386,
-          1.0953226533168603,
-          -0.6418805506458847,
-          -1.07870919323165,
-          0.4922922416648035,
-          -1.1420706595369283,
-          0.4531443328768926
-         ],
-         "z": [
-          0.322361335098932,
-          0.38685626819473523,
-          0.2592241057861762,
-          0.10512376712937392,
-          -1.0454729255222392,
-          -0.16547702930686697,
-          -0.23652809217841522,
-          -0.14794220569731129,
-          1.0231678742534884,
-          -0.9333968690030566,
-          -0.46809208694462107,
-          -0.9516744565897113,
-          -0.5003978779777003,
-          0.25996730817267405,
-          -0.9121400996723994,
-          -0.7620806408622022,
-          -0.272251533966896,
-          0.0436142400900688,
-          0.4958040008712039,
-          -0.11817032785092581,
-          -0.6550503789732024,
-          -0.855383355828664,
-          -0.17376658704473158,
-          0.8461038230015321,
-          -0.3556568710226025,
-          -1.0348613441920995,
-          0.8410826487398916,
-          1.0807903891458328,
-          0.9910798695739438,
-          0.9265281998292174,
-          -0.17736572688084085,
-          -0.5657126940963262,
-          0.23104343876750272,
-          -0.16555982998514832,
-          -0.2524577689719671,
-          -0.5429148648636489,
-          0.9721844392731596,
-          1.0963694127019177,
-          0.6727762357628113,
-          -0.05876451396014121,
-          0.06269038377249558,
-          -0.8869165566935394,
-          0.7484191320252354,
-          0.6533857712807919,
-          0.6745811162299683,
-          -0.4815762453388261,
-          0.3307090132699826,
-          0.25145661040679707,
-          -0.0673841171675961,
-          -0.782431973629842,
-          -0.9753259795500661,
-          -0.1720984622482421,
-          0.06741852997175167,
-          -0.36647238582832825,
-          1.0183166487478106,
-          0.23396765595942215,
-          -0.3431630471380219,
-          0.08936385770077251,
-          0.64902640695552,
-          -0.04649245546949556,
-          0.7451505770221789,
-          -0.6325828898984144,
-          0.38429795409267425,
-          0.21483218920278105,
-          -0.07690503849669963,
-          -0.5934164015613067,
-          -1.0056852426242382,
-          -0.42840829481386095,
-          -1.0457483990554217,
-          -0.7644272098379816,
-          1.0989573725391546,
-          0.6517050440231258,
-          -0.47310587061348175,
-          0.04848134442366434,
-          -0.03930429773080541,
-          -0.34729814520936514,
-          0.9718744960021928,
-          -1.0858134613207693,
-          0.4332965836039047,
-          1.0276104698659636,
-          0.44605121980039253,
-          -1.104886771319419,
-          -0.1066583687074708,
-          0.629500044775872,
-          0.6169204931227882,
-          -0.013886020788634193,
-          -0.1243478418754392,
-          0.526798308755531,
-          0.8268168412156632,
-          0.8577896098970845,
-          -0.7117330734621374,
-          -1.1276253528433382,
-          -0.5318548949060006,
-          -0.15893313985443622,
-          -0.9335458534319592,
-          -0.6870348753269291,
-          0.5997497374041619,
-          0.673784053947259,
-          0.16313017485955947,
-          0.4803894553355107,
-          0.45642624163350026,
-          -1.1180706677560392,
-          -1.0455183609600853,
-          -0.1439530531447793,
-          1.0623268593005328,
-          0.058293708339330855,
-          -0.7531490938950396,
-          0.41897982381593357,
-          -0.7644224105687513,
-          -0.99964710742324,
-          -0.277518980515428,
-          -0.9917916990175639,
-          0.6549331917644559,
-          0.8398161494566636,
-          1.087556085860961,
-          0.3944314502371473,
-          0.2311725629441484,
-          -0.9946596004126849,
-          0.6499930131010117,
-          0.40450569626429944,
-          0.3966299453386645,
-          -0.11309361911014713,
-          0.6812097938219078,
-          -0.1917133368369165,
-          -0.7368366701946484,
-          -0.6518533251642724,
-          1.046478536386423,
-          -0.7402778551530718,
-          0.14685737196198617,
-          0.32069718010123943,
-          1.2036477303886604,
-          0.7405654524087693,
-          0.5102992102778641,
-          -0.003956982861666423,
-          -0.41015958042199463,
-          -0.3788688478939532,
-          0.5737440059124048,
-          -0.29429388598626266,
-          0.36418492999346885,
-          0.9231129172341513,
-          -0.0834870560800987,
-          0.2715752833644399,
-          0.8889387362068829,
-          1.0770113636258778,
-          0.6274093679160028,
-          1.0968300805428857,
-          0.43072569597269594,
-          -0.4424206528229769,
-          0.4076873383170542,
-          -0.6763026478215061,
-          -0.2277318820682544,
-          -1.132760888821501,
-          0.9315382773049474,
-          0.4809854208363165,
-          0.7195953241572896,
-          0.6538147473011108,
-          0.6011975593606909,
-          0.9842942561014445,
-          0.15887609320819823,
-          -0.5830195548005584,
-          0.49349213662462965,
-          0.6055653948661107,
-          -0.0550392098363056,
-          0.9677686552770303,
-          0.531696946410984,
-          0.5579473343838232,
-          -0.4431559993939769,
-          0.228514082160615,
-          -0.44027958598390665,
-          1.2413087704870729,
-          -0.8632668236630457,
-          -0.3337062225577281,
-          -0.427078796328138,
-          -0.33196852188799497,
-          -1.0504498136364602,
-          0.7649245887994385,
-          -0.4258282315941375,
-          0.22916197243291309,
-          -1.1701821282574485,
-          0.5196370658591828,
-          0.16268459397697763,
-          -0.5141636278785995,
-          0.9965591320031257,
-          -1.2509255687808234,
-          0.9846216562424477,
-          -0.6124781088657021,
-          0.9919253698728261,
-          -0.6709853066551882,
-          -0.6355362953915816,
-          0.4023317936723106,
-          1.18080079896084,
-          -0.18987984209063122,
-          -0.4606220877427794,
-          -0.3052016500207903,
-          -1.1359290866663059,
-          -0.13693791689760876,
-          -0.7714297608520471,
-          -0.45963633195267733,
-          -0.13498936568459724,
-          -0.22715293832909947,
-          0.6549064244423496,
-          1.148821155231533,
-          -0.15801431149965015,
-          1.0476942393172364,
-          -1.0053719640165242,
-          1.02424362800078,
-          -1.3306682212408125,
-          1.0630631340038919,
-          0.0008523998031820676,
-          1.2521451375873178,
-          -0.6900465947588472,
-          0.3842136766586791,
-          -0.2542965801070331,
-          -1.1006696160145413,
-          -1.3574139064091453,
-          -0.028395959219169913,
-          0.5556446208394684,
-          0.19095938942790036,
-          0.8393571785356845,
-          0.1234451552981092,
-          -1.3567761378835053,
-          1.2689440345250707,
-          -0.5438657712323541,
-          1.2483646651773082,
-          1.0208957419773128,
-          -0.699756279099737,
-          0.7438392939449098,
-          -0.009543979139391898,
-          0.8569738104849739,
-          0.3407307598648008,
-          0.2695196786567242,
-          0.818908052017774,
-          1.0044481864579236,
-          1.3057695422952604,
-          -0.6990394756871307,
-          -0.5890595870137636,
-          -0.7916890794133369,
-          0.9396977619882372,
-          -0.2540578738222225,
-          -0.6536961691827303,
-          -1.1798671136187189,
-          0.9590065211190659,
-          -0.7967449180865257,
-          -1.1701603745680869,
-          -0.8761810158111057,
-          1.0742959649547996,
-          -0.48925288817072354,
-          1.3074093928520516,
-          0.8235950958515077,
-          -0.4038845369466974
-         ]
-        },
-        {
-         "marker": {
-          "size": 1
-         },
-         "mode": "markers",
-         "name": "Class 4",
-         "type": "scatter3d",
+         "type": "scatter",
          "x": [
-          1.2355723664419027,
-          0.15871140295340883,
-          -0.5068699238041209,
-          -0.057075241148965755,
-          0.2607337089164764,
-          0.06488466733519711,
-          1.2793727891401614,
-          -0.4625013509486249,
-          0.8450255751468799,
-          1.2020513872910386,
-          1.3443448262246542,
-          0.2886782920037981,
-          1.4309056800685493,
-          0.1640840842794982,
-          0.9204700930844102,
-          0.3440086114079099,
-          -1.27354013712788,
-          0.7048855986029773,
-          -0.4433326581423084,
-          -1.3803345205138868,
-          -0.41885891311780493,
-          0.42421367320894954,
-          1.142243104187737,
-          1.423679775880593,
-          1.1158979800151632,
-          -1.0788019257925905,
-          -1.1748721031078764,
-          -0.7579175179465435,
-          1.2958135123553145,
-          0.14734889658240835,
-          -0.7917261751805735,
-          -0.02311867808651919,
-          -0.17859265256185422,
-          0.6493478993804506,
-          1.0208019791907201,
-          0.924289505531966,
-          -0.8119447580645431,
-          0.5656443434184879,
-          -1.2559879781648686,
-          0.4516504713456256,
-          -0.09019084795333371,
-          -1.1903705614278566,
-          0.875268308059758,
-          -0.4571960709792352,
-          0.2918801925812668,
-          -0.8442324682529643,
-          0.5359316796904442,
-          -0.04676282025951572,
-          0.8123000167276281,
-          1.1423895700994642,
-          -0.1870402380152164,
-          0.052392921685351264,
-          -0.9157589818969301,
-          1.3434193996182258,
-          0.23649666421371038,
-          0.43780817655732096,
-          -0.7128246664710268,
-          1.4684825819913594,
-          -0.192089170655532,
-          0.8703597150414034,
-          0.8432301486890775,
-          0.2708141082300617,
-          -1.152918687174202,
-          1.326653123074009,
-          0.2970516629376043,
-          -1.2113690426049823,
-          0.7353236562454426,
-          1.4052163351453766,
-          0.589393981069052,
-          0.1300012598133973,
-          0.13972402043777693,
-          1.5296520842831196,
-          0.8062071167017097,
-          0.21764871804478958,
-          -0.45181418471005486,
-          -1.220329640945204,
-          1.3877587110941798,
-          -0.2631899353634244,
-          1.027698019441191,
-          -0.9936192695292938,
-          -0.49804619986874427,
-          0.32412834648700223,
-          -0.5499994543155663,
-          -0.8273948554812846,
-          1.295036912799159,
-          -0.642069981281694,
-          -0.7550506868194548,
-          -0.622122695546561,
-          1.5689145490338465,
-          0.42851374606303155,
-          1.2371375793137596,
-          -0.4724492136943073,
-          1.3193018089954731,
-          -0.42383460418681207,
-          -0.38101873050103174,
-          -0.7448772881275383,
-          1.4675299784021665,
-          0.848583968048709,
-          0.1691730799906103,
-          1.3710298434733583,
-          -1.196753216589728,
-          -0.7952420495463813,
-          0.6294653331078269,
-          -1.5547906024394338,
-          -0.8470275808830257,
-          -0.5471515898950441,
-          0.4793659807657961,
-          0.7958025678429037,
-          -0.9564823318295088,
-          0.27351492800007216,
-          1.4584253567630643,
-          0.4208395685572562,
-          0.22569046069929888,
-          1.2553343708785287,
-          -1.5887906846362398,
-          1.105500187827821,
-          1.0534925404774398,
-          -0.17399245395232102,
-          1.0191341162416894,
-          0.9585807227941923,
-          -1.352168460477039,
-          0.10020899064360499,
-          -1.2537232815330077,
-          0.3333784724457436,
-          -1.4849429842319666,
-          0.447444348535632,
-          1.384760764798794,
-          1.625566452468202,
-          -0.15492746968230642,
-          -1.3995763179179672,
-          1.5777674642353452,
-          0.14768886437086326,
-          -1.2072843897267866,
-          -1.5692823430596148,
-          -0.39935552818715275,
-          -0.5557784774663272,
-          0.8493865100178152,
-          0.8680930696303215,
-          -0.7751835479894689,
-          1.6994714583314192,
-          -0.10394611219950022,
-          -1.072428231331495,
-          1.00381091108439,
-          -1.2762443726221024,
-          1.3501614545868654,
-          -0.63016806593188,
-          -0.3925853502363222,
-          0.7828242485733601,
-          1.5308878393643333,
-          -0.7242094486850962,
-          0.6594413012898653,
-          1.0057673745623865,
-          -0.018748141125676774,
-          0.359204112043812,
-          -0.3719628043906447,
-          1.1129767138202475,
-          -1.3930737691455448,
-          1.5484245035404087,
-          -0.5988921127987912,
-          0.18763951673207124,
-          -0.21201762184471107,
-          0.27476656628785046,
-          -0.0151089587293882,
-          0.20447310901373622,
-          -1.5003779877828742,
-          0.7140485116322384,
-          -1.1146775840128513,
-          1.8196401673108562,
-          0.17109316301564367,
-          0.413242381505535,
-          -0.5906795660041745,
-          0.03076951727888049,
-          -0.14800722122062412,
-          -1.1300445663963543,
-          1.8089200625226032,
-          1.4775269996622444,
-          1.1400528893834052,
-          0.7718118967059535,
-          -1.8637550997559449,
-          -0.9912583927139905,
-          0.17023820580858867,
-          1.177668273572386,
-          -0.32902417934618566,
-          -1.4721464022662736,
-          -1.559570715329628,
-          0.6942130333866696,
-          0.19796771419022746,
-          -0.19284468555798018,
-          0.21291504140751874,
-          1.4571688320001592,
-          1.21036067372317,
-          0.639178455882833,
-          1.2157837769015072,
-          -1.2363988153982126,
-          -1.1360215624313432,
-          0.5368037618227621,
-          -1.0209595315368833,
-          1.0261134855473857,
-          -1.7891834656856405,
-          0.62712408768664,
-          1.514813897709386,
-          1.500591037644688,
-          1.8102531374206963,
-          -1.071792942258145,
-          1.7159476835121108,
-          0.323633288656587,
-          -1.0703577117962062,
-          0.8403209423716194,
-          1.1214832457722763,
-          -1.2436166171903302,
-          0.7078464803345219,
-          1.0193429472129392,
-          -0.2620639074230086,
-          0.05789375916388128,
-          0.7496816150736202,
-          0.7230664867148742,
-          0.7450372593229805,
-          0.060252179657305026,
-          0.12389318245152575,
-          0.6970163643642173,
-          1.515997404046755,
-          -2.0791687428949666,
-          -1.5640225565493324,
-          -1.3904240785786224,
-          -0.025332835197701197,
-          -0.18029611948636348,
-          -0.7991747178392253,
-          -1.627704065341368,
-          -1.121459554932162,
-          1.027803802643669,
-          0.6714361682742894,
-          -1.3361070641797708,
-          -0.7581167657496678,
-          -1.5826684829476176,
-          1.619941028387868,
-          1.8241299661456258,
-          1.853180566754148,
-          -0.12761857076789354,
-          1.09043640479601,
-          0.2200870949230953,
-          -0.5836533830109013,
-          -2.030996088357336,
-          -0.0420907829238426,
-          -1.8118435057967015,
-          0.9621309199972761,
-          -2.0479618179687664,
-          1.4111500150197764,
-          0.3633015299684015,
-          -1.5101497191095854,
-          2.776269306771444
+          0.36943590990346153,
+          0.8461725196977581,
+          1.2020208047590166,
+          0.3802389350284119,
+          -0.6997602766949431,
+          -0.7061220901499828,
+          -1.7195835514652018,
+          -0.04323298152202359,
+          0.8688831259800307,
+          1.8310869976768376,
+          1.1497405163814276,
+          -1.5657830844133571,
+          -0.9131109339856556,
+          -0.7206228865201025,
+          1.1972754151143286,
+          -0.8466630211664783,
+          -1.1024459576365955,
+          1.0895124549317954,
+          -1.4339181261529774,
+          0.9585628614943157,
+          -0.10451668296090577,
+          -1.498331287532483,
+          -0.6542956947089011,
+          1.5787153578819244,
+          1.2579297354729906,
+          -0.3827741059713376,
+          0.7876139481521159,
+          2.138791326775739,
+          1.2376429476433795,
+          1.559701904677226,
+          -0.09575282040029218,
+          -1.0219114820756128,
+          -0.45604507095790364,
+          -0.7660913173644549,
+          0.28060489927818527,
+          -0.7670619986058739,
+          0.6584020972254327,
+          0.563413482824789,
+          1.2148746286722643,
+          -1.1192459834747768,
+          0.1610716042276026,
+          -0.15022401259626617,
+          1.3548326541284466,
+          1.3219143263509392,
+          1.5270121415546765,
+          -0.4600974288951135,
+          0.1421991878689676,
+          -1.2035907971905595,
+          -0.8672655777567746,
+          0.5454287327298193,
+          0.9187538411562745,
+          -1.1911749465921788,
+          0.277270505394194,
+          -0.8811433798375016,
+          -1.5722401956007162,
+          1.8597826120209524,
+          1.6350738160907246,
+          0.48380936525662055,
+          -0.2657023770538857,
+          1.2129723005991935,
+          -1.4524295043979447,
+          -1.4504094695678813,
+          -0.020753889839303506,
+          0.6390885299787329,
+          -1.043953472101434,
+          0.9860028220746498,
+          -0.8087556167366854,
+          1.07455685071302,
+          0.1779363668588059,
+          -0.7025569192608256,
+          -1.1261086073656625,
+          -1.8207489621829045,
+          -0.7880198629402214,
+          1.3206170156475525,
+          0.06521862992883327,
+          0.9547434500645667,
+          0.5024757387480095,
+          0.9794315380004301,
+          -1.1103909441954405,
+          -0.43748147596867626,
+          0.3349303251457427,
+          0.835387883490405,
+          0.8649035066658909,
+          1.6015944077339312,
+          -0.01922054879686752,
+          0.04732354597894147,
+          -1.1210322153521572,
+          0.5708044953847952,
+          -0.2599523396860906,
+          0.1584909960864273,
+          -1.2186560868986451,
+          0.7553624029840311,
+          -1.6343232917909092,
+          1.6631949339608798,
+          1.3160897987852347,
+          1.5573556677429197,
+          0.7364449002349154,
+          1.1260384480557588,
+          -0.22402110510222828,
+          0.5030911743429898,
+          0.2821226611995369,
+          -1.2068096454815376,
+          0.9649343456099719,
+          -0.14199542305866558,
+          -0.8993896436525565,
+          -1.3641235198361108,
+          -1.9471912645730964,
+          -0.5090874729705529,
+          -1.21208432847524,
+          -0.385358447612142,
+          1.0215215149601369,
+          -0.9518168195422574,
+          0.08463126703311992,
+          0.8908137436466042,
+          -1.989064449788627,
+          1.563337101155877,
+          0.03229333973385091,
+          -0.18001117652733137,
+          1.9125609673862174,
+          1.1999366217223086,
+          -1.0816734668384418,
+          0.47001569211768307,
+          0.46713489621345344,
+          -1.4499508327705575,
+          -0.1972859429299996,
+          -1.2040898800118016,
+          0.5374331345001245,
+          -0.9954907364405353,
+          0.34736788915189837,
+          -1.050827057704728,
+          1.8404362337256157,
+          0.09733559754456633,
+          1.383453289278437,
+          -0.04618540515557587,
+          0.5065214812114319,
+          1.2472556514580828,
+          -1.1735876823564602,
+          -0.6197815857406779,
+          1.2108777655968297,
+          -0.4292495814148224,
+          1.1224237173417566,
+          1.2673687664903357,
+          -1.461978241039905,
+          -1.0737958096994324,
+          -0.28906949202560184,
+          0.9677569549986154,
+          -1.1631697570736914,
+          -1.2695054903856293,
+          -1.589859609299176,
+          -0.6642053945864322,
+          1.0432428393614093,
+          -1.1542171143436404,
+          -1.1898049853991082,
+          0.2739760708802919,
+          1.3290608222522593,
+          -1.2749632029584452,
+          -1.6115524132609353,
+          -0.7955138801266688,
+          0.9856523576275283,
+          -0.8165180840220894,
+          -1.6581094421235436,
+          -1.696782280924875,
+          -1.2654792588408472,
+          -0.5979037930150802,
+          0.3447287443900931,
+          -0.20710954005609297,
+          0.5328635714613343,
+          -1.288634376972616,
+          1.1733815920792576,
+          1.3448834974587358,
+          -0.6435310777728755,
+          0.3284290096413927,
+          -0.34562747432687346,
+          0.41043129711877624,
+          -1.7956504062519547,
+          -1.4253468602671733,
+          0.9835313292487889,
+          -1.0044500924968103,
+          -1.054124337993761,
+          0.9624375273352141,
+          0.31330869001761935,
+          -1.6948254056761096,
+          -0.1279782273863713,
+          2.012840130721584,
+          1.3956261062223183,
+          -0.8109907681482202,
+          -1.061102079754229,
+          -1.1062182771528668,
+          0.2728321089790773,
+          1.1218986549467589,
+          -1.663000046280922,
+          0.7534331394522036,
+          -1.4087459571615621,
+          -1.02502429294346,
+          -1.1425475781169765,
+          0.43298503090344503,
+          -0.9863295269427702,
+          -0.8769354729448987,
+          1.5017584088133966,
+          1.8429924616430067,
+          0.6273220728702107,
+          -0.22634569866744741,
+          -1.3346602557849103,
+          -0.4844672914321959,
+          1.5363673897048928,
+          -0.09766971346442069,
+          -1.0684038855445135,
+          0.8612256180610353,
+          0.704831413375271,
+          0.5584511101205064,
+          0.49556475849685305,
+          -1.651648588368701,
+          -1.2409368025664012,
+          0.6847717619870147,
+          1.8716963484881963,
+          -0.160814648190307,
+          -1.7479941988835976,
+          -1.3920320853942256,
+          -0.2021820628190452,
+          0.1459294134456594,
+          0.7504954989397571,
+          -1.2604846175267908,
+          0.9035237279912984,
+          0.01595294146610331,
+          -0.9210080165052948,
+          1.6161420664591732,
+          1.2246738101209398,
+          1.3388989788547274,
+          -0.23041547140852014,
+          -0.10251849668037097,
+          0.022627796951153342,
+          1.571542214807106,
+          0.004319762103822933,
+          -0.21317873455639869,
+          0.08457809959252517,
+          -1.4816129461023766,
+          0.37286502960368445,
+          1.2935166611034337,
+          -1.3028148933826782,
+          1.620516854872213,
+          0.6923985190575942,
+          1.2639938382990679,
+          0.89082103411714,
+          -1.1803177827478866,
+          -1.3998956576826664,
+          -0.8705078236441721,
+          0.7797853827142502,
+          1.29567435560814,
+          -0.3310238622223811,
+          1.5453201177085725,
+          -1.4722910326551175,
+          1.1660450255439831,
+          1.5717326496651831,
+          -0.9765060676084487,
+          -0.07735873104380313,
+          -0.19521845873676927,
+          1.2865001107793455,
+          -0.06076369468719324,
+          -0.7547214661444063,
+          0.4414386683737018,
+          -1.2753720669123783,
+          -1.2570761884537553,
+          1.5653104556683413,
+          -1.0197549588435997,
+          -0.8806370078295938,
+          0.9675994383159968,
+          0.6071536539826317,
+          0.2735670712864052,
+          -0.010011738719546972,
+          1.288096383248931,
+          -1.1029359025702623,
+          -1.422427466332721,
+          1.0979356547960677,
+          1.1446799853618217,
+          -0.22936970911397753,
+          1.049568418850167,
+          -0.4867045396968813,
+          -1.3536613805949325,
+          1.5338863464327996,
+          -1.667490049904442,
+          -1.4842330272477082,
+          0.731129281447467,
+          1.303928305144391,
+          0.8788379385751405,
+          -0.8555812203855521,
+          -1.2281325488973287,
+          -1.302819270673838,
+          -0.6805747880360166,
+          -1.1559543103251873,
+          1.3781404979562775,
+          -0.9149131236921638,
+          0.7329392152064652,
+          -1.1082419537959873,
+          1.4094995455217343,
+          0.4173769215761509,
+          0.3741681869196496,
+          -0.0441777504760091,
+          0.6984535713067103,
+          -0.5989091589771652,
+          0.034936456960495875
          ],
          "y": [
-          0.6591589764534134,
-          0.7404103103459782,
-          -1.3198406992653589,
-          0.055603476312402395,
-          0.2784567399816526,
-          -1.4054234575898774,
-          -0.15418173124184015,
-          -1.2944529352303744,
-          -1.0770557893871553,
-          0.7576954292792968,
-          -0.04289367280061295,
-          -1.20390841209361,
-          0.004808216199388878,
-          -1.023950257602814,
-          1.1041551561042786,
-          0.0455902959252704,
-          -0.38372832376419724,
-          0.19843990466278633,
-          1.281594665911408,
-          -0.10732826998270555,
-          0.08736141361016607,
-          1.0824042938571803,
-          -0.22791498949456826,
-          0.09654505848015404,
-          0.6968181552166723,
-          0.8927817813516978,
-          -0.0467254737229592,
-          -1.0986733597780014,
-          0.5756922319088033,
-          -1.4437245708478395,
-          -0.915478050958859,
-          -1.4619023286487534,
-          -0.882315949417873,
-          -1.1105116266795148,
-          -0.8884845455525106,
-          -1.1366622958019297,
-          0.5789632241830053,
-          -1.142904191729266,
-          0.2889611741489302,
-          -0.8082265247212629,
-          1.0685478986013837,
-          -0.5698361887747091,
-          -1.1274306096448878,
-          -0.7647699275345113,
-          0.5812843136754021,
-          0.10107603163120833,
-          0.48472717065440984,
-          1.4847275157247934,
-          -1.2301634102976675,
-          -0.8728164576562579,
-          -1.4169446664365242,
-          1.1516050962192892,
-          -0.23743563788673538,
-          -0.09378622148129448,
-          0.46566112091852124,
-          1.454868998893743,
-          -1.3228496535463907,
-          0.2700691482484821,
-          1.1833093210408983,
-          1.1914850228709462,
-          -1.2576513415852064,
-          0.09988388164686336,
-          0.8527669007240456,
-          0.6720511409827021,
-          0.4291081696298801,
-          0.9573323366334943,
-          -0.42823485493988767,
-          0.6444307609703773,
-          -1.4097839927555949,
-          1.2731536660485274,
-          1.4674310357644373,
-          -0.21763207703689338,
-          1.1176110374137387,
-          -1.2092716674183983,
-          -0.9355657650371504,
-          -0.47911056035884725,
-          0.0026132346246530627,
-          0.7698615320003236,
-          1.1169261756195723,
-          -0.037055542367683936,
-          -0.9959325336974687,
-          -1.4757509573730658,
-          -0.7852957113508708,
-          -1.2741925869783342,
-          0.8339901073655024,
-          -0.9986495243090452,
-          0.6719689424975741,
-          1.4050643867147548,
-          -0.11246194678911749,
-          -0.905400277980422,
-          -0.8795441286138165,
-          1.3246215607451062,
-          0.335050471526154,
-          -1.5018210691925786,
-          -0.7131558563077429,
-          -0.4410712620016889,
-          0.6159781850556698,
-          -0.3478275563138974,
-          1.4665979205217048,
-          -0.7073410630619235,
-          1.08155540305665,
-          -1.0847825332415355,
-          0.7320318248020274,
-          0.3111372014527808,
-          1.3892704646528198,
-          -0.8801037809472334,
-          -0.34500546531810367,
-          -0.841041215070415,
-          -1.076470503976305,
-          0.7714396567907802,
-          -0.7548597628090336,
-          -0.5785693936214785,
-          0.9478416002274977,
-          -0.8440286980090332,
-          -0.4290018925764186,
-          -0.5787164596050488,
-          -1.132010059209267,
-          -0.5962653857605477,
-          -1.0153078639480853,
-          0.2923426236486829,
-          -0.04853159940730487,
-          1.640013645527332,
-          0.8923132504799682,
-          1.330792283816694,
-          0.4423009603877745,
-          1.6056223177453492,
-          -0.8694228560424734,
-          -0.25656560656284794,
-          0.5864783108088149,
-          0.5288524138196757,
-          0.45117026057230514,
-          -1.385696033484071,
-          -0.789502002848209,
-          -0.16249287709388305,
-          0.7222270543887905,
-          -0.9413238487997012,
-          -0.2885528634987689,
-          -0.8553453671179547,
-          -1.0182697443360984,
-          -0.04074264210625956,
-          0.6815654597297809,
-          1.0443503480760938,
-          -0.42456357491804525,
-          -1.1508462944960698,
-          -0.9889366153951322,
-          -1.521563262141604,
-          1.3301789202784544,
-          -0.0851223373587189,
-          -0.4550361045189661,
-          1.3110414266024732,
-          -1.0029360279595745,
-          1.2295877440742757,
-          0.042589189881589204,
-          -0.7801980093603329,
-          -1.5226433808609974,
-          -0.86674721245458,
-          0.6311616307805045,
-          -0.5715531987960867,
-          -0.7010202531170183,
-          -0.41207259859231915,
-          1.3464278947924992,
-          1.762816864271517,
-          -0.5283584453072128,
-          1.7361593787792724,
-          -0.4297950488287554,
-          -0.4865957755510319,
-          1.0440716939867374,
-          0.041873756262892754,
-          -1.3528934353077857,
-          1.3975545399232037,
-          1.5168494949049707,
-          0.3946642355642033,
-          0.7587100536396503,
-          0.32680542626560766,
-          -0.398983303278865,
-          -1.1367880141245095,
-          0.9297849268094838,
-          0.881115289551218,
-          0.00238684360479247,
-          0.41497063061360095,
-          1.8396677725354922,
-          0.7172679516069592,
-          -0.07491679978400927,
-          1.1995758020049891,
-          0.6343215909921178,
-          -0.229690474021155,
-          -0.795840937495869,
-          -1.9069868333154087,
-          0.1299906331077919,
-          1.241213412985297,
-          -0.9700806012843372,
-          -1.6708455486572786,
-          1.4089211178434853,
-          0.9223078307136501,
-          1.237142642918488,
-          -0.40765441377843725,
-          -1.6236451227947313,
-          0.6783069061192711,
-          -0.2022355247394083,
-          -0.2975235175760878,
-          1.2215574903707185,
-          0.7300631870752516,
-          -0.06792460649539969,
-          1.0942514217819401,
-          0.30614882849389163,
-          -1.9427793056338922,
-          -1.2750122925070948,
-          1.7868110539354107,
-          -0.875267733078274,
-          -0.8366901182026779,
-          -1.9114738855022209,
-          -1.747716586722441,
-          0.5456733913323599,
-          1.6367107686263724,
-          1.9513743272835549,
-          1.725165470938697,
-          -0.6713263923440401,
-          -2.115052528474909,
-          2.1108968843390605,
-          0.8396087289477552,
-          0.4482484394042121,
-          0.46379188686971634,
-          1.0843013686866185,
-          1.4539580051049303,
-          1.1063701391665943,
-          1.0634836410838409,
-          1.7053129313309312,
-          -1.0714018748738443,
-          -1.3293072808497697,
-          -0.18714064146991602,
-          -1.049981422861055,
-          -0.31982886551454964,
-          -2.065706737101636,
-          -1.4995614587916017,
-          -0.9825761141986572,
-          -0.5682837368785656,
-          -0.7862794243807476,
-          2.2578680142811853,
-          1.4185218849074221,
-          2.1770974981238185,
-          2.085324666495244,
-          -0.019455975945008884,
-          -2.291922115801325,
-          -0.13507702632947347,
-          -0.9254757795724079,
-          1.4767039154089068,
-          2.1990444998892666,
-          0.3641937116214482,
-          2.218723265809128,
-          -1.4736903922780809
-         ],
-         "z": [
-          -0.16726984771804818,
-          1.1907166896576673,
-          -0.058464073632527216,
-          -1.4129412542042545,
-          -1.363070352762644,
-          -0.15533148152595538,
-          -0.5993676988903489,
-          0.36147482468430486,
-          -0.395217428359052,
-          0.13479971931900567,
-          -0.5009192287208262,
-          0.7277229300493258,
-          -0.1343778903397044,
-          -0.9952271791360752,
-          0.02263035083050869,
-          -1.3968658050761273,
-          -0.5570472330828966,
-          1.2435324699079486,
-          0.5004561929584704,
-          0.41600308619397036,
-          1.381797972910929,
-          0.8617947699866461,
-          0.8606610438546962,
-          -0.25832134624638137,
-          0.614585106253986,
-          -0.3902226372135842,
-          -0.8563177669787958,
-          0.5783353234518441,
-          0.340872651883258,
-          -0.1747808033362553,
-          0.8208284931383457,
-          -0.06301738427910575,
-          1.1542891026956337,
-          -0.6997727662218924,
-          0.5750229020455675,
-          0.13055585340483,
-          1.0874820885127523,
-          -0.7450659837954331,
-          -0.7278755737957665,
-          1.1550105130940382,
-          -1.0261361711285248,
-          0.682253132602127,
-          -0.4238221432044554,
-          1.1929892909819702,
-          1.3412351805416636,
-          1.2250731046433165,
-          1.3071638417852447,
-          -0.17467354812485306,
-          -0.2562844474457909,
-          -0.4189354952576756,
-          0.4493083980491425,
-          -0.9758790998291924,
-          1.1801764384784446,
-          -0.6890962797976217,
-          1.421429260933662,
-          0.014703371703291685,
-          -0.24855756824411862,
-          0.3040853649214382,
-          0.9478490996374069,
-          0.39801687322940316,
-          0.22602797372597064,
-          -1.5065380056404232,
-          0.5497100108840685,
-          -0.40793248701019424,
-          1.454195900496525,
-          -0.08099190129418389,
-          1.2911838509615439,
-          0.07477922294425053,
-          0.26449793708659775,
-          0.8760673676898179,
-          -0.48732937968229423,
-          0.1549626827904251,
-          -0.7177799865845641,
-          -0.9533110542677977,
-          1.1610800545435414,
-          0.8443628563734173,
-          0.7152123712567778,
-          1.3326037566576676,
-          -0.3697178708114584,
-          1.2049845664016603,
-          -1.1007030443915633,
-          -0.41338716174959644,
-          1.2390423130176023,
-          0.3828719668733741,
-          -0.3317572851708573,
-          1.0363701833421461,
-          1.2095863157410696,
-          -0.3754531224555495,
-          0.20903808067787716,
-          1.240826865667845,
-          -0.4899579640808921,
-          0.7637093112742419,
-          -0.8423787813232422,
-          -0.37176494107334646,
-          -1.387785935512619,
-          1.353424549722873,
-          -0.230533450422271,
-          -1.3269231436961753,
-          -0.6501030792291845,
-          -0.4792380645731993,
-          -0.11172845656623967,
-          0.9034539449293125,
-          -1.3054519567328517,
-          -0.3550059465630837,
-          0.02493509672793355,
-          -1.257745149834039,
-          1.5254472667094723,
-          1.1615451845190243,
-          0.7867894953028163,
-          1.4228900777362876,
-          0.01712574204996101,
-          1.479541231505635,
-          -1.3259471691808316,
-          0.6499401491155493,
-          0.14940013156494697,
-          1.0835476093912964,
-          -0.5858358644149911,
-          1.5350883171102556,
-          0.8224809767791607,
-          1.3270950459623252,
-          -0.9675448427582145,
-          0.27811771139740177,
-          -0.6404494518796522,
-          0.9513556381805025,
-          0.6259531845413395,
-          0.1285988622208642,
-          0.3512193889606353,
-          -0.31501785391819076,
-          -1.5635087711204878,
-          -0.7585438679711923,
-          0.3541505245530414,
-          -0.9391693618534477,
-          0.8738507767760393,
-          -0.6020352632113263,
-          1.4767520468163609,
-          -1.2983932709725157,
-          -1.4411716797269407,
-          1.1826872767583094,
-          1.1274853428426626,
-          0.14219849962230383,
-          1.563075804394086,
-          -0.8257448396325404,
-          -1.3198430569627004,
-          0.03400119185725665,
-          0.3980793648633172,
-          -0.5085181887491294,
-          -1.0239004482367082,
-          -1.5363093692640226,
-          0.6560820464232376,
-          0.8634012061632472,
-          -1.2450798513246353,
-          0.6921571655268535,
-          1.7417752014426224,
-          -1.522323537429428,
-          0.7758041224782478,
-          -1.0354694079956022,
-          -0.856427884377234,
-          -0.5937730089164867,
-          -1.5226767518692568,
-          -1.7245041506913688,
-          1.1497265749832386,
-          -0.004292782717842235,
-          -1.714196727264438,
-          -0.45095026749790756,
-          0.9171136390353317,
-          1.5927126321463432,
-          0.9758719551745881,
-          0.009849496768771197,
-          -1.219701096359567,
-          -1.1060858510550589,
-          -0.8397588954221915,
-          -1.7886690843564117,
-          1.6715102708057108,
-          1.431403061847319,
-          0.1304974779674394,
-          0.13063131609749515,
-          1.159630039623917,
-          -1.4661082933817544,
-          0.2318045743338729,
-          1.5488860268984586,
-          0.39987570525246635,
-          -1.3016946522861796,
-          1.8698331124612773,
-          0.14921188200778138,
-          0.9014727868536643,
-          -1.7673467299235142,
-          1.7294078098874808,
-          -0.038392268298363445,
-          1.9042623657642634,
-          -0.17604423766188737,
-          -1.1409602062994886,
-          -0.7139874284726683,
-          -0.542108072062945,
-          -1.17555935840833,
-          0.9768355469398575,
-          -1.8321435751168014,
-          -0.38928833956857645,
-          1.5225299168383368,
-          0.7784960237201559,
-          -1.841457277681018,
-          0.3085274256187073,
-          -1.0743568060572568,
-          0.8126589624534211,
-          1.2698772808273613,
-          -0.974122676664585,
-          -0.35336259632036593,
-          -1.1201532676205281,
-          -0.3753809092521402,
-          1.5082823637166718,
-          -1.4419549013079782,
-          0.4793302352393025,
-          -0.5634900390385603,
-          -2.0142238035464257,
-          -1.3203558799552297,
-          0.27747999143798385,
-          0.9788286969810025,
-          1.8613752087203652,
-          -0.132155540814053,
-          0.25984877761860703,
-          1.8310980115854951,
-          -1.4319920558952597,
-          0.13769928382810964,
-          -1.0068897586165841,
-          -0.780086116463531,
-          -1.8524395280821162,
-          -1.8745187282355016,
-          1.0722525194207697,
-          0.9665260635394181,
-          1.3229721628692654,
-          1.923450063670079,
-          -1.8058949531048158,
-          -1.7139415086372178,
-          0.30869439791335807,
-          -0.42911848252878904,
-          -1.1634726117290664,
-          1.159030608286331,
-          1.0353296543808432,
-          0.21125020740458,
-          1.4577031584799185,
-          0.7916590119217176,
-          0.8801213719434109,
-          1.2531711219738624,
-          -0.7243514477511692,
-          1.7059767250177342,
-          -2.135117521256117,
-          -0.09870477265183199,
-          0.4290179894174415,
-          2.7242925631329094,
-          0.7467449310088323,
-          1.2195446965357999
+          -1.651954631306673,
+          -0.681544922892267,
+          -0.34647991449861215,
+          -1.6103794158306879,
+          1.6057747089011931,
+          -1.724145398862381,
+          0.7109698122821584,
+          1.4727732788529675,
+          -1.3527094201584138,
+          0.45089298072680445,
+          -0.8160420727289323,
+          0.38656747936045605,
+          -1.0650638113974478,
+          -1.1253958561709425,
+          -0.9272841696202613,
+          -0.98090612350591,
+          -0.9588853395809179,
+          0.4849622306901898,
+          -0.16659194599258925,
+          1.322299035425969,
+          -1.320982048819212,
+          -0.11528745494120947,
+          -1.3956302301969972,
+          0.42308178225083304,
+          0.741720474187146,
+          -1.7819033815043752,
+          0.38330066325303835,
+          1.027144226513341,
+          0.09434171124636281,
+          -0.4372229738648574,
+          -1.2174724874992247,
+          1.3477586775715114,
+          1.5150027014413756,
+          1.0585795767259374,
+          -1.7969792312838053,
+          -1.2320212323925852,
+          1.5266214556762292,
+          1.0906294984356377,
+          0.8640825750556795,
+          -1.7710865246232734,
+          -1.7787669848757486,
+          1.584271089179307,
+          0.17933391139277954,
+          0.7503965481665092,
+          -0.3126281941324697,
+          1.5673037791663942,
+          -1.17158453630489,
+          -1.1985130801706405,
+          0.7947506528467131,
+          1.9080940978507093,
+          0.8779529536430035,
+          -1.0503344878844898,
+          -1.7770726049506973,
+          -1.119955963055157,
+          -0.30301526933201495,
+          0.5018928437363406,
+          -0.3280271603138215,
+          -1.53098902048979,
+          0.9635796888204209,
+          -0.15346378078994863,
+          -1.0817155566994359,
+          -0.826365070692291,
+          -1.7141828506069585,
+          -1.5631427399997713,
+          -1.5672554275912822,
+          1.025126531177778,
+          1.30559471511738,
+          -0.5215424652033308,
+          1.1061487174829217,
+          0.7280241148059174,
+          0.5120659948264131,
+          0.7287712547774919,
+          -0.6768056001552206,
+          -0.4935666576747124,
+          1.1139691763249397,
+          0.9136645521769352,
+          1.4667240477749361,
+          -0.8426533054588109,
+          -1.4466657527428637,
+          1.9061013863614373,
+          -0.7615152070404998,
+          -0.992294049714693,
+          -1.246978067884286,
+          -0.8946037772116798,
+          1.364933352234722,
+          -1.4933286229981073,
+          0.28378511396994877,
+          -0.8749619609388081,
+          -1.9117526783810173,
+          -0.9449688744770962,
+          -1.8216624465993292,
+          1.5401414045962027,
+          -0.47511457893697606,
+          -0.16070101246997912,
+          -0.5462269733328136,
+          0.433138557490336,
+          1.2419599351450799,
+          1.2255170981070076,
+          -1.4730564672168043,
+          -1.1089184669266723,
+          1.2089173048651543,
+          -0.044398695275161375,
+          -1.5057500291157955,
+          -1.3089105517421185,
+          -0.24444968137119752,
+          -0.8698851872172911,
+          -0.10238183378258918,
+          1.6530239448529678,
+          -0.5247145956459732,
+          -0.9537337430853171,
+          -1.0432800228428447,
+          -1.0974476771204533,
+          -1.2091452226287611,
+          1.4050953477745838,
+          0.4900083103781963,
+          0.09176722617077168,
+          1.5473318234681324,
+          -1.2082646734326516,
+          -0.09850657640515248,
+          0.8623726450375171,
+          0.7704696213057685,
+          -1.4443677687182759,
+          1.572266415699658,
+          -0.5228888149227237,
+          -1.847780544997121,
+          -1.0748711201178012,
+          1.3096749110408181,
+          1.276995527355843,
+          -1.6113993286757522,
+          -0.3725621334598288,
+          0.06049598890171154,
+          -1.4072555561017615,
+          0.31208137090153326,
+          -1.7225739872263504,
+          1.6457585133838641,
+          -0.3363847104915209,
+          1.282602431671845,
+          1.1807411873838263,
+          1.6423765301510203,
+          1.1782325641448401,
+          -1.0993782664082132,
+          -0.029195245635143873,
+          1.590366704476119,
+          0.35929065425868767,
+          -1.6303309712187435,
+          -0.8403548201556382,
+          -0.7697673344230488,
+          1.0298884056173352,
+          0.9725938346556725,
+          -1.8676293344071684,
+          0.021098233412227895,
+          -1.0782910771509542,
+          1.5241151295132271,
+          -0.9610976166637558,
+          0.8789067970947783,
+          -0.7890578336331249,
+          0.1935856230385323,
+          -0.9907358797547737,
+          0.4254538061891419,
+          -0.4487763071683392,
+          -0.6744501126849528,
+          -0.6799576385411595,
+          -0.9624866139995623,
+          -1.2007025602250303,
+          -0.957728614507639,
+          1.6544262472857505,
+          -1.0450014957558198,
+          0.014123832793659362,
+          0.6171100952058386,
+          0.5183631717565442,
+          1.100134156629236,
+          -1.4737874748390265,
+          -1.2690679426340905,
+          -1.6583037398242897,
+          -0.1956047144026082,
+          0.5622742224346121,
+          1.3091272849759565,
+          1.8772712038063684,
+          0.46389230976421053,
+          0.5989749854146463,
+          1.6774373834266791,
+          -1.2027190077151373,
+          -1.416851888323527,
+          -0.020899853002275398,
+          -0.6236858150556739,
+          -1.013132236647751,
+          0.5725563736429219,
+          -1.2736289729958683,
+          -1.1975289079830957,
+          1.0316758738400913,
+          1.0567664971596384,
+          -1.1904870253997992,
+          1.2604554668769146,
+          -0.4971507574191068,
+          -0.7028166699938031,
+          0.9916037349008124,
+          1.1587382615048298,
+          1.493263044010564,
+          0.24944438447726486,
+          0.2823149111635646,
+          -1.1128206463518941,
+          1.5505029874234457,
+          -0.152262500998365,
+          1.5326894913470932,
+          -0.6007188264237994,
+          1.6701448229218083,
+          0.5055695122107131,
+          -0.8861470377999223,
+          -1.0813707516740314,
+          1.3154056194559967,
+          -1.4431844455441023,
+          0.4441871881672369,
+          0.13330151995433395,
+          0.7619266708961574,
+          1.0382048855744763,
+          -1.1527434503670209,
+          0.03887346934219386,
+          0.5832632444270008,
+          -1.5616154248439649,
+          -1.4924218924180728,
+          1.1648509131488292,
+          -1.0457705870877045,
+          1.02945446274266,
+          -1.8463763431699023,
+          -1.3916948284102422,
+          -0.4518047220180057,
+          0.5665243681548908,
+          0.5016514822157404,
+          1.1237565181333447,
+          1.3913663192369319,
+          1.1918747669500438,
+          -1.0500055151445697,
+          1.5150052901163844,
+          1.535921945355519,
+          -1.4306232461288761,
+          0.4840842087139782,
+          -2.2008192680094827,
+          0.5632913589110086,
+          0.10194738755797957,
+          0.34743521999258736,
+          0.28758203011689853,
+          -0.8424219708698942,
+          1.0664812792144154,
+          -0.2438186656448818,
+          0.8749415765316026,
+          1.2412028053499393,
+          -0.5677957385594936,
+          0.17878536096487976,
+          -0.5501391991651499,
+          -0.36182571982210315,
+          -0.5847217091846072,
+          -0.4888176205815249,
+          0.5354544083884742,
+          0.5465205813413957,
+          1.2104307548362878,
+          -1.6121479521172934,
+          -0.1518813560359969,
+          1.4801412885208334,
+          -1.098243842079488,
+          1.3053106167563704,
+          -0.5550476503708149,
+          0.2898562197969861,
+          -0.2782064873492128,
+          -0.8278408007459752,
+          1.220032453413834,
+          0.8433322085259582,
+          0.8495929385989776,
+          1.7497788529102365,
+          1.6483519573716432,
+          -1.7585574528494994,
+          -0.4465155348666161,
+          -0.21057165950501347,
+          0.9651303782438536,
+          -1.3812102649163456,
+          -1.3297283538914848,
+          0.4752355879681974,
+          -1.793923557393397,
+          -0.3798281712002652,
+          0.8650457789443076,
+          0.4471697409860681,
+          0.1431594949617175,
+          1.2501174441928204,
+          -0.4629920508486503,
+          -1.210010364814548,
+          -1.5339010183235848,
+          0.2965175524640166,
+          0.8066620767781347,
+          -0.9488819660341754,
+          -0.33923992010862636,
+          0.568544050866416,
+          -0.07202054540226506,
+          -1.9808287869541972,
+          0.29019702449070567,
+          0.47720904132270564,
+          -1.7992380530048593,
+          1.1860574430624424,
+          0.8147969092290973,
+          1.1760627503492729,
+          1.0859331974562911,
+          -0.8230718221857748
          ]
         }
        ],
@@ -11848,20 +8175,20 @@
        "<div>\n",
        "        \n",
        "        \n",
-       "            <div id=\"61f8d801-6585-4e74-8866-3ea7ed11a120\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div>\n",
+       "            <div id=\"3c86de48-a6c6-4c37-84cd-8094f654cc44\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div>\n",
        "            <script type=\"text/javascript\">\n",
        "                require([\"plotly\"], function(Plotly) {\n",
        "                    window.PLOTLYENV=window.PLOTLYENV || {};\n",
        "                    \n",
-       "                if (document.getElementById(\"61f8d801-6585-4e74-8866-3ea7ed11a120\")) {\n",
+       "                if (document.getElementById(\"3c86de48-a6c6-4c37-84cd-8094f654cc44\")) {\n",
        "                    Plotly.newPlot(\n",
-       "                        '61f8d801-6585-4e74-8866-3ea7ed11a120',\n",
-       "                        [{\"marker\": {\"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 1\", \"type\": \"scatter3d\", \"x\": [-0.07385675071748174, -0.13884030977294337, 0.0887959618070845, -0.1376717783627909, -0.13101816006260733, 0.15845731350106876, -0.017059012692199487, 0.06334310717889709, -0.17259095809025235, 0.00014641700780300282, -0.03223418129225337, 0.24309474233368158, 0.1783608948024866, -0.1360197426323184, -0.08870955797679102, 0.2292202260770861, 0.1912418555271127, 0.15785375000545018, 0.12257106633847821, 0.10245116929423646, 0.13579923259098656, 0.20938865595920103, -0.07750583564048284, 0.10627939475397655, -0.20325609020324312, -0.1181728971018889, -0.09713652312093687, 0.003707855629233305, -0.20143739315555761, -0.2744824606899228, 0.1863135967165523, -0.17680958608498057, -0.24700427531753613, 0.08854709499304801, -0.04535265980999813, -0.12328707809184343, -0.15644993759959525, 0.18473202222404755, -0.002386101718109396, -0.05228882509393153, 0.22845154488116481, 0.04005754604845311, 0.260691396746511, 0.2631183029969379, 0.3841697205369157, -0.3660064595672547, -0.2497262805329516, -0.30723522881736276, -0.3880071032695966, -0.3285340415762599, -0.330714691016733, -0.27693735786594526, -0.24653428851496087, -0.12437005068541039, 0.32752110967621184, -0.11023665879364462, 0.12965504267366232, -0.3565089774430121, 0.431596953722636, 0.02687251712140934, 0.140677583704298, -0.42708202126297984, 0.35050002429677934, 0.29985644017760793, 0.14075646060093044, 0.013034759074478425, 0.42576194742617934, 0.2704045247185687, 0.27891978472925527, 0.3633877253988156, 0.03519531173031481, -0.17502210566851067, -0.06838649723320765, 0.1530593365394902, -0.023767672435067066, 0.05434248758709988, 0.40986254737999606, 0.19729801296922392, -0.3323699901242327, -0.12414245639436074, 0.3862812962188097, -0.364898726718074, 0.08133572057843921, 0.1919761753451652, -0.21582645823484464, 0.19869125513371505, 0.40805161436310566, -0.3132794317041059, -0.34215895457991924, -0.307935365744254, 0.13952327474111734, 0.1692845457751436, 0.17321752359499448, -0.4947806516707591, 0.13725482212717502, 0.09137317404762424, -0.4325860726994568, 0.014851958849492251, -0.3183318819938198, -0.4721914527168945, -0.3377548196918664, -0.23835577602041833, 0.2656586164505726, 0.20302744425673644, 0.301147731519689, -0.2912409957597386, -0.27245785722433025, -0.18855167022084257, 0.3697005190348798, -0.43330703847593394, 0.39479674596305825, -0.2999803881714736, 0.13920191483582164, 0.5255670810959374, -0.18628602008325723, -0.405640295174099, -0.4390055468067455, -0.18307346258907786, -0.1389228534185601, 0.17712519311831632, 0.3100491682981396, -0.28781813705969606, 0.2347455429659019, 0.16422816421819242, -0.044260025193429184, 0.2324621389629652, -0.5080167807518858, 0.4395176983121514, 0.38697464933064235, 0.5366435522745653, 0.2190763251535635, 0.2962911829688, 0.28978555137091455, -0.20893613658557697, 0.5547990125207349, 0.351229945905575, 0.4265179228448181, -0.3751209589026496, -0.3445226216724774, 0.30321905526843157, 0.1507527815529774, -0.5367878528048122, -0.009784764099572822, 0.5929025125771159, -0.030280703318751868, 0.3836478860205044, 0.3229732985924259, -0.018671689808021173, -0.10219013207100838, -0.3904806593385539, -0.5191392716857622, -0.2329547637729252, 0.19564994049818274, 0.5811728343179269, -0.19725657973729224, 0.08506185693060318, -0.24233575864714782, -0.5768649846607912, -0.4414788588687785, 0.053708485010306416, -0.44233962829476436, 0.34115951655390814, 0.6070166059050921, -0.1972003391643207, 0.2840530827782874, 0.4184757871705708, -0.004611266221004902, -0.635312802603434, -0.00865977612770461, 0.28229337720066144, -0.3842593407334328, 0.6203888252234194, 0.18432418749151883, -0.22616635263922213, 0.43553224444454086, -0.2595278739000622, 0.36604020371610274, 0.1856588962146133, 0.4207493702981369, 0.4951938646620312, -0.13483281863269328, -0.2650383347481383, -0.5466004600877478, -0.5103455182017594, -0.3093297306450248, 0.3519575135852648, 0.18883305391382335, -0.2041124810285089, 0.02002411579404036, -0.5464699498714655, -0.12371523039407192, -0.09296516393963344, -0.4926920777512343, 0.5432045322367446, -0.5603967883767328, -0.1120973361059785, 0.34012488957436143, 0.4941463148110945, 0.042165038935217454, 0.5896720104632263, -0.491236365972412, 0.14825159428029433, -0.6788552456451314, 0.3346295334485671, -0.3785390702362619, 0.2724605321152925, -0.3445044893908281, -0.5837146657024709, -0.08552325605252063, -0.6731079982183783, -0.37547154767119334, 0.285480284646074, -0.2722942917971571, 0.1755184598030683, 0.3684892029354311, -0.04367388455565838, -0.15624910226601774, 0.6498852135497338, -0.013446489560444487, -0.42830512952154814, -0.3134478857971555, -0.4600737727546808, 0.5992176144375403, 0.3488284329935899, -0.16014476025918464, 0.5539407414309063, -0.14929162358859807, 0.01038612209640377, -0.11530575599213769, -0.5397247802501366, -0.3986134540090445, -0.7099050658210535, 0.6328876613049962, 0.5944081211425848, 0.5145117844973813, 0.46060317100392034, -0.25338475146562456, -0.1295395713876327, 0.6038522039904816, 0.3008439270452431, -0.4465928951392066, -0.25938402909893227, 0.24734596943118836, -0.050918845283521814, 0.2172935750672275, 0.6472786712808127, -0.2186461677911973, 0.35641470915611817, -0.4609177320491522, 0.007235866839245729], \"y\": [-0.11937498527925475, -0.05062973607318175, -0.12238026058345079, -0.04538789530542188, -0.09179709711988827, 0.008904171984225929, 0.14006707758866524, -0.1395393351879514, -0.027794449631548094, -0.006576320144326847, 0.17206697474627564, -0.034402407716137985, -0.08218634456236028, 0.21322617061287866, 0.23184583494530006, -0.09202503626771931, -0.03552370786547671, -0.038815920082234626, 0.17250096053324443, 0.016902003997787584, -0.21857834801399742, 0.18459395322289962, -0.06248204765980287, -0.2571126609786595, 0.20317221673426913, 0.19981419921763555, 0.27610034319970544, 0.033220296435219544, -0.18114644019217466, 0.12050246646590201, 0.20804787681414705, 0.20413722294914216, -0.013731735011185933, -0.3036355700087453, 0.2324701297248251, 0.1593167595301998, -0.1957365614740812, -0.26111836929815924, -0.12033870064104978, -0.31937147837963303, -0.1784408726096718, 0.3745493385510245, -0.2781325415005395, 0.27517710621789493, 0.03454928705655714, 0.1582419781517123, 0.23934422103384764, -0.21861770505851946, 0.06565125919547685, 0.14224135676883698, 0.2450152444792506, 0.19030148515440895, -0.24696249110520715, 0.08711895435208818, 0.13950669890348372, -0.38769766538694306, -0.010825698169168415, -0.05764523497062797, -0.014779658829656957, 0.0848749650773006, 0.3088207915363564, 0.0612282259035895, 0.10636222784567895, -0.33505501550685085, -0.4244174240215967, 0.2457773808776222, 0.05093775310913058, 0.11769948517092711, -0.297680981162306, 0.1269834957870536, 0.004994407362579842, -0.05263238246361083, -0.3853159814805893, 0.03222415702713443, 0.32155038265795216, -0.15899718952685132, 0.23037278474084916, 0.42984774428019884, 0.1880042991568377, 0.4728103467172828, 0.004541230533923777, 0.06796765318788887, -0.11323098563553055, 0.38995261388536584, -0.430990211362775, -0.44031505310674884, -0.1435747693596405, -0.3390527287792652, -0.22651975395906068, 0.3628205893564442, -0.43674584367435343, 0.3533307299531525, -0.3584629569811671, 0.1513066459178605, -0.3756252299802614, 0.07735380109162932, -0.02618897034636205, 0.482213570452984, 0.00037332328768744174, 0.20661145961297708, 0.3386898828368246, -0.43374118298768877, -0.42471569068459103, -0.4330586206603398, 0.013539523255328909, -0.3447896675904274, 0.08026888460945203, -0.30352164037967233, -0.40566716315171825, -0.2741464021073371, 0.05374392767445396, -0.4029327277010136, 0.5221747263943928, 0.12082010997067817, 0.48022646190620066, -0.38668766570357704, -0.11889563433590537, 0.4148551655032809, -0.14556459954669204, 0.2449758782652492, 0.013871071679635524, 0.4853004349675708, 0.13470361538564368, 0.2072335332486109, -0.5331334735621541, -0.3745970324864404, -0.150929928400401, -0.2613539750130922, 0.3881194820365886, 0.19883236270024715, 0.448147930266346, -0.49851866402368306, -0.17059492359393336, 0.4928211856073733, -0.013619145118418406, -0.09776762495416379, -0.3847467006334971, -0.40716498269076057, -0.4777977648777122, 0.4900996749741892, -0.5317226137168356, 0.10634446626564811, -0.4877111862134803, 0.0578620943291286, 0.041028269246005, -0.32768579310951645, 0.40288630755040733, 0.1981038552264253, -0.5603254996863809, 0.44755038036364975, 0.057979613967192686, 0.5175107379540282, 0.5849068846772931, 0.061551572233619005, -0.19782031224929567, 0.3637631880686425, -0.5672956974584322, -0.054519141567787754, -0.13047913169932424, 0.5251557742901842, 0.2798753625111884, -0.1580120508467429, -0.16590179602274008, 0.5976169325982985, 0.48800549653408015, -0.25034458752250427, 0.42341157339568597, 0.01992708747739583, -0.6344546505269052, 0.45763663772020813, -0.5040580868712549, -0.15624526571423844, -0.3891245060060029, 0.10730910541833984, 0.41938592143971604, -0.5851946570643809, -0.5131783716849982, 0.13688873909729332, -0.394157620842603, -0.4070374104402135, 0.15374825907825665, 0.5027246146688611, 0.017331310426562357, 0.1250312377450878, 0.510800756722763, 0.47087955438428936, 0.6290639683377159, 0.2281964824298231, 0.021040768019374278, -0.1674560427370105, -0.5343925271262995, 0.5841035565062558, 0.41155493241633745, 0.1523083296520264, -0.08113091581045768, -0.01930722504464883, 0.15830991176710746, 0.29767282367380493, -0.4574533825145854, 0.32468934780820374, -0.2894063874103393, -0.347639280737109, -0.08676831905770631, -0.051497818006117524, 0.2534649841768762, -0.6249815867399775, -0.24884595027215975, -0.22725410801017767, 0.2966542360144242, 0.05478700005453758, -0.4406268918671059, -0.017108877353937388, -0.4786561367507056, -0.32481720707685907, 0.45623631615253707, 0.3390163486210286, 0.43428143837967026, -0.20525509860162952, -0.7088953120740357, 0.5247406698349346, -0.6256499991006833, -0.34444966214811595, -0.3785341904483119, 0.13069887647288084, 0.25976664104375236, -0.17786485205417316, -0.6980413378971317, -0.5550069197223338, -0.5267257114664343, 0.026826100708538775, -0.5813976173349092, 0.14656013413641913, -0.3415757453724654, 0.3865990135775131, 0.036731288109083465, -0.222929020784749, -0.4578812018664024, 0.37795256862311016, 0.293354208586257, -0.6837553880522801, 0.179014856577363, -0.27701484377397667, -0.7099738141085106, 0.7096049172432375, 0.5747803164006939, -0.38858365470162015, 0.23423861870458482, -0.37494875772698133, 0.03351592190706865, -0.6940314229492669], \"z\": [0.049534359574116685, -0.02632009584703848, 0.011016050189283576, 0.0648788039441577, 0.030979388930192808, 0.0690674316437244, -0.10207822620630307, -0.10696636468375424, -0.09510358829825027, -0.23185657756152486, -0.1705796523769212, 0.023190977858076906, 0.15182514783002848, -0.024544927745563314, 0.06073552720651274, 0.06858650459408401, -0.1689617842905193, 0.20191722272730026, -0.15782782782839722, -0.24848738907866813, 0.09442767933733888, 0.0036157598671874907, -0.26163730834347076, -0.04026663669206432, -0.032182017279533924, -0.1758511817453055, -0.07298880146453049, -0.3182443468608939, -0.17076448161445892, 0.11354295088247944, -0.16575134516669343, 0.1840753374860813, -0.214380480360781, 0.08647739371631022, 0.22723386622811448, -0.26129499720910665, 0.21736936060297896, 0.10139095760165155, -0.32048062710326736, 0.13790348870708655, -0.20634172707683243, -0.049850164030948795, 0.02032565922121604, -0.037561973969763955, 0.028702660110095566, -0.011612741179764912, -0.20888034028137628, 0.1570722962527423, 0.11303553879737675, 0.20031477499818073, -0.033177859502669355, -0.2426735852550608, -0.2274303257830938, 0.38995904912342777, 0.22012847403365238, 0.11314997261394669, 0.4096209476516538, 0.2458443991690507, 0.0829629883565131, 0.43382271889750096, 0.28587956283157, -0.1100804288221138, 0.25806639971250833, -0.010219298741576016, 0.0493575276374021, -0.38166773015783256, -0.15005440164571632, 0.34821562818404905, 0.204901766328815, 0.24793292088444607, -0.46691755548250247, 0.4388814490713628, 0.2822318530747986, -0.46075102441558485, -0.36517090319865586, -0.4596212326890253, 0.13745045780154522, 0.1319525764151364, -0.3088074868323042, 0.06934422222226756, -0.3085714224054671, -0.3268779914183046, 0.4747091205404195, 0.24083294451580378, -0.13220867622829346, -0.1471646545434337, 0.2624397638702562, 0.2097105791031297, 0.29993061704920476, -0.18352721575402633, -0.22349725984572624, 0.3337560065024689, -0.3330743801013375, -0.07942792565384525, 0.3421524613129006, 0.5131945013176318, -0.30356251413462426, -0.21939172756398873, 0.42511736906289527, -0.13246161922816713, 0.23593473727338093, -0.2138783664191246, -0.2062586285085581, 0.2556215940960765, -0.4535997434276294, -0.30586482786501823, 0.4681970899854549, 0.4161700081443914, -0.017221297340774377, 0.2021373562881223, 0.38095801566371607, 0.23299786138387973, 0.12117567370971122, -0.13009586476030488, -0.21357842091616086, -0.02316005947576784, -0.3338184488239135, -0.3358075960080747, -0.5279106115256432, -0.48085009200264484, 0.47578474274970006, 0.07487868588782305, 0.5016581908241333, -0.5051227318366709, -0.19846725016255143, 0.36293488251666683, 0.2198448479565504, 0.26665024571635426, -0.18028097052461722, 0.07368130721149593, 0.2926001478568274, -0.0394346929922831, 0.4755814249681862, -0.23604602489870788, -0.18589188804492057, 0.45798495738780126, -0.11511196781278393, -0.1944909202327961, 0.02414940599969623, 0.12476302021962701, -0.2256052014741222, 0.24165796798305494, -0.34869049167672833, -0.0699255443606429, 0.5999312301754417, -0.32932066694986833, 0.31657775878350786, -0.5724761390090941, -0.21776168595234735, 0.14348824410281322, 0.3233460750071652, 0.23692180445637898, 0.00919372591512235, -0.21143012513903744, 0.5588773273574341, 0.5031877058898924, -0.11404622042753332, 0.2412308748080312, -0.4276190531813541, 0.3410015046606032, 0.34933209483137795, 0.5048745911430638, 0.027038345535213067, -0.03457553001546282, -0.2837057164213414, -0.4055977033160247, 0.4725880917140862, -0.006448104364733697, 0.05360191714363416, -0.3416644240694255, 0.07525753572416853, 0.019011159070922424, -0.47490943787234396, -0.5905352090023991, -0.21888238633107265, 0.06091292385983246, 0.13206404566201288, 0.6016757191467875, -0.29203356065289793, 0.08627396730704882, 0.6152307924616089, 0.31414160018417014, 0.35213796875897085, -0.38656119495129077, -0.2636328500952439, 0.2981067512229342, 0.0581835667997336, -0.5849406097931937, 0.6634668418831509, -0.3432038560107203, 0.3793697485619662, -0.3088389539309136, 0.18416049051072997, 0.3594002017783642, 0.35707992938002414, -0.6599201025247863, -0.5589498478001236, 0.34790986388730155, 0.4937184398387109, -0.049614650379187955, -0.37058646012074414, 0.5707218613311367, 0.06602423902650845, -0.5987735803123387, -0.5168641393092749, 0.10870006485270324, -0.5444694398951878, 0.2919866314835168, -0.6275517371738821, 0.18225856900299683, -0.392781637752184, -0.6390137138931746, 0.43252045173039905, -0.60093071660176, 0.39287168556856905, 0.6183769533825254, 0.5356388385755425, 0.18907491851740568, -0.013090764001247665, 0.21163181316425048, -0.1222913317513474, -0.4188857609630143, -0.06401669784034815, -0.6069506070503681, 0.6460018843973081, -0.42250351049455404, -0.09281269150894819, 0.45840349088154975, -0.47742313674422066, 0.4831865645980808, 0.17231287973437157, 0.04903385095521814, 0.10379833420578011, -0.16895050756602753, 0.5180547667681719, 0.5366722825226574, 0.5262231895521913, 0.6276671709924223, 0.327594461292461, -0.033737023467600394, 0.5800708142240504, -0.6522424964944256, -0.06750341647755168, 0.25571528563253026, 0.445214823754819, -0.0825659708702763, 0.6898145747417128, -0.5606457563112877, -0.6084041252158208, 0.326756500261422]}, {\"marker\": {\"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 2\", \"type\": \"scatter3d\", \"x\": [-0.22169896719579268, 0.7285204168902143, -0.3885955774504142, 0.27549882686538446, 0.3297651690341383, 0.13184311035495333, 0.5127201478900143, -0.705735437609321, -0.5881871241813159, -0.08894478418703164, 0.3542019401820938, -0.026611753292548085, -0.12206593440607766, -0.5194346853564191, 0.6895688570162044, -0.5327468851889134, -0.4035785746473439, 0.388945569226155, -0.01617016192413598, 0.33417688458595285, -0.28542256557394474, -0.0206919339932467, 0.7677668732842325, -0.4567656514625606, 0.4918194649460462, 0.1836515421939946, -0.1429717956421012, -0.6920904606090122, -0.3628967930489909, -0.09497062186645523, 0.33147345531632844, 0.4116052334357744, -0.7004149525115125, -0.34860430402856674, -0.8087365570172111, -0.6368350287467183, 0.3928067592634881, 0.5944247540506525, -0.7512256680413599, -0.46854575332592846, 0.4274568865970787, 0.060329037165969136, 0.3992366788974741, 0.2782361843295214, -0.5920339426279774, -0.07864870222433695, -0.058089655323851186, 0.6295959727791715, -0.32448017405441776, 0.24045257634092665, -0.04397568984910066, -0.5425966652451105, -0.31567623619829993, -0.07568189331670494, -0.6937888005353696, 0.30541536028629296, 0.5932205168940988, 0.39874396276196244, 0.3810669463389607, 0.6251144946436475, -0.5079906491376645, 0.767844118259912, 0.492420286429834, -0.1307455545347178, 0.08179431831975432, 0.7336515303366731, 0.5597900593136025, 0.11925686222646587, -0.013229088550461596, 0.2524480711144957, -0.1735156008482209, 0.8270250148536015, 0.5871360865405052, -0.6884011196094226, -0.4788256381701028, -0.29048956882100996, 0.041159779537345, -0.6109337321231825, -0.10781245523108597, 0.06864419344497107, -0.39759732490292093, 0.5167282640397531, -0.33858921222965777, 0.10973638493366183, -0.13470603808815207, 0.5007832212188313, -0.20973314565876577, -0.5363371946647791, -0.33882735295030014, -0.27192183306779283, -0.14401908989982737, -0.5057961034256142, 0.8295243864145251, 0.227474700254037, 0.7347629912957463, 0.6855097605625823, 0.8257466147476568, -0.7859194583539211, -0.48223568642165154, 0.44042141082449876, 0.028934226402876143, -0.5861879937928134, -0.7258559292053, 0.7446915242176576, 0.5503843951690884, -0.6552746583000391, -0.28857087077811255, -0.21765345724896867, -0.45505845046314297, 0.8087562399611511, 0.15328347113209187, -0.5503445491615091, -0.7221206501633688, 0.002153861506110259, -0.6646118564523434, -0.8762880146432466, 0.7046817659612672, 0.15138713828408484, -0.38493671607256497, 0.31382772726453384, -0.27719479599765684, 0.6700023867207712, -0.22136545628782764, -0.23427040441287864, -0.3977240714269708, -0.5793027881494485, -0.018069456884973398, 0.9040019814701934, -0.13782096674678948, -0.8780573235331663, 0.6030020484962952, 0.8648503306975455, 0.01588578515280811, 0.3590941070013919, -0.008548176999355688, -0.021961982049432536, 0.2661617284067687, 0.12150876244262528, -0.03497612451787783, -0.6543740285637593, -0.8898973564950994, -0.6417444197881099, 0.1412873126343275, -0.5716913091517167, -0.044918657482508416, 0.5768133146527488, 0.36118454957430157, 0.4606956181683276, -0.43033792026323636, -0.8631740342425827, 0.21246745725350202, 0.27907491507909865, 0.4728717595313844, -0.7983601637383853, -0.4113105187398746, -0.5628752813455787, -0.3460859487847983, 0.15594633857406331, 0.5224179010472476, 0.8461462387884795, 0.44514463796079023, -0.31630434579352423, -0.7794382539980329, -0.5090067211537608, 0.4354159556622114, 0.46872784019626923, 0.4317493209860334, 0.3459075369965991, 0.3373188038323094, -0.20866007941738032, -0.044320814720511074, 0.653557683315436, 0.6652256865713918, -0.3221150879499847, 0.18404611121542863, 0.6098042723728624, 0.3631701181735801, -0.9164928824999881, 0.7567104904019458, -0.2580605498723143, -0.5542060169973289, 0.6479415125710255, 0.10773116316185352, 0.1256535827835408, -0.5076453159895534, -0.8105886009854723, -0.8123200524473428, -0.5777689118587508, 0.535130407544011, 0.4642535088774796, 0.9976798535142606, -0.21040917105947632, -0.7779265184853703, -0.7059429122313898, -0.9047975502289279, 0.8406887072130809, -0.25275208237334573, -0.22465849940167318, -0.6329099551093608, -0.8808552043271537, -0.2543948490957636, -0.8641748611441517, -0.2971169477336722, -0.5315965495576603, -0.159647953105241, 0.8822868807593552, -0.8654564623948636, 0.5417005597790926, -0.9337038253745131, -0.8910710508658848, 0.7124197622219677, 0.6656070948633348, -0.2619887889975434, 0.7679053185946825, 0.9119929184659351, 0.20757680450612412, 0.10374224256987936, -0.37378844031358416, 0.05927437705285276, 0.5352717841109522, -1.0376970669761407, -1.024308812455993, -0.394206221634832, -0.7511621596553817, -0.12814484179744615, 0.7238719620176493, 0.37817296522631977, 0.43820216582157573, 0.9985907312652826, 0.18376488612676858, 0.3794708004544702, -0.8715255938433344, -0.3876845828044986, 0.39066939330581174, 0.45447362192527335, -0.46109647506055235, 0.5752435410141041, -0.16587815278867946, -0.2423167216027176, -0.5361863929625799, -0.9432984737324026, 0.417656036123124, 0.59092355942537, -1.0112626664114368, -0.9169986644589391, -0.8657095850749407, 0.8215720266877671, 0.7879444267236451, -0.6645953704122363, 0.44241362437163784], \"y\": [0.6518120929560598, 0.1688494336214806, 0.6078204239092336, -0.6139756787647714, 0.6981509319796958, -0.4679536969351994, 0.3649931671202438, -0.27150869017833185, -0.04750222444241588, 0.03940346336036153, -0.691235942581531, 0.7801522424697626, 0.6248419340597068, -0.5729349926857948, 0.3543270855775088, 0.3252494214291572, -0.5885642701004152, -0.6847229305584672, -0.706613384910586, 0.18104036131873158, -0.6753736527223139, 0.7962377682778126, 0.06928455226131237, -0.5651140873724787, 0.600405860426288, -0.6394484179510602, -0.15392385493881444, -0.3141627770352969, -0.16164455031559782, 0.5733280281934365, -0.7059651142879504, -0.1601484421276405, -0.40043296477266593, -0.41674381622761336, 0.07676330411819593, 0.4514112596524256, -0.6496094620564304, -0.4614748413296697, 0.3028588528658541, 0.40347418789823847, 0.6239036916339753, -0.5715301727729375, -0.7210115684232915, 0.6329971963538307, -0.4298327189394111, -0.6391592228460914, 0.7900474591074279, 0.4067313674614703, 0.7627425320552259, 0.40348431976711097, 0.7950378852143111, 0.6168238375941585, 0.13724235013884215, -0.7320268663540497, -0.3283834030909042, 0.5659750030147992, -0.43646391391633443, 0.4205548281316645, -0.7334437894839055, 0.5210273163099822, 0.6328070955865605, 0.33566233948668556, 0.6755027910830373, -0.3696209924913277, 0.8338890358857318, -0.3606360541465346, 0.44131935491048635, 0.3124992301925168, -0.27472403279525875, -0.48996107355803464, -0.532971953042719, -0.16220375067193024, -0.6053426785642838, 0.33683580898268, 0.6895137759685104, -0.7818512690760286, -0.8082020482908415, 0.03430997215399785, 0.5007084471035349, 0.6849354413681852, -0.7161797533852392, 0.010092583055478162, -0.6100745933982953, 0.5834325780917373, 0.22914292214662593, 0.16490870789851403, 0.17064037662871454, -0.1629179074051218, -0.13128072138714006, 0.7115564692547917, -0.6208274408592707, 0.4805481767508221, 0.2613765007159334, -0.47241129021699657, -0.053573440780984326, 0.3020720301641283, 0.1799027035734878, 0.17430520042415806, -0.7082523011688316, -0.7549216453497262, -0.7086535460031727, -0.3961078122154112, 0.09402375828142158, -0.027969717522918, -0.38974715770907076, -0.02223085056688362, -0.70414781846613, -0.5929697046887725, 0.7282922784680798, 0.23935310514658512, -0.7759100583023231, 0.1384835079427799, 0.5008836473825841, 0.30896194278688277, 0.586527285553579, 0.042378769275666826, -0.3298620460444489, -0.8808703380142947, 0.07843411537061946, 0.5477489921179064, 0.7494882047857151, -0.5465070399457179, -0.0005010520302583389, -0.4329167466619382, 0.44717980076101155, -0.33673900902600973, 0.8292446420125461, 0.13512744687530295, 0.8016965238012302, 0.2362984107464921, 0.3427578621725829, -0.18303770184148552, 0.3868716364571747, 0.3806328077821253, -0.885575897258094, -0.6432433128808044, -0.6378467710660612, 0.3912076893509709, 0.47716943898786784, 0.18058358544219807, -0.15345422798817526, -0.40783891903885594, 0.18669038988046188, -0.3547958080267399, 0.8750008963339873, 0.6084466386504197, 0.7287305206539744, -0.8044652524161515, -0.3740437244685831, -0.3593093795498861, 0.4399668908558045, -0.8456170226712116, -0.7719490925454044, -0.3708918371562016, -0.7175413655276174, 0.7608519443082022, 0.7383332368252339, 0.8612271758034794, 0.43513052086733445, -0.43118162669586285, -0.56873712787079, 0.9058153561938177, 0.48179393026015477, -0.32572079862310266, 0.8512748492870201, 0.8297713221730095, 0.39583162177549325, 0.44881585458471157, 0.05432128011228078, 0.6900066194438539, 0.6753876118246803, -0.7169327032836458, -0.6947234984012349, -0.62878821974819, -0.6814804721525884, 0.6739611829041667, -0.37667637606870535, -0.3225261301474178, -0.018753362260616815, -0.5934108466127181, -0.4882862607805215, 0.2450043509104623, -0.581538711170436, -0.9442310512631142, -0.16300552569544252, 0.2139955896980661, 0.47115408778227136, 0.4661570826164119, 0.433080837512165, -0.6892040185159694, -0.06971233688271787, 0.9727716166171819, 0.3107743005113948, 0.6960210428365994, -0.44181345329994826, 0.5008464534963925, -0.12755618144384423, 0.9062590185128263, 0.42230412304292786, 0.03884428240644755, -0.9376573110053396, 0.5041660249502588, -0.19925180775926357, -0.30148034748733554, 0.04774965145618416, -0.47622978746840045, 0.02410065153245521, 0.8675728026716665, 0.3690684204308317, -0.43583333128640317, -0.48410639239746334, -0.7301046539215279, -0.9938859706733799, -0.37898338650824737, 0.4760110984513109, -0.9592481932834939, 0.8531306717804323, 0.4146219739055224, 0.9973452261599789, -0.6520693541010899, 0.11650350811234114, -0.21190338996885322, -0.9685969757499039, 0.33488041922075656, -0.45917607891679213, 0.17628779858636143, 0.8690204472560663, -0.44926905364948644, -0.056314967812976124, 0.5528322543204769, 0.8384194482432682, 0.3905350311820985, 0.5892560600125674, 0.15833120260063582, 0.9398527672878992, -0.7704869097096975, -0.8703525048709942, -1.0008182495968838, -0.26264835515542784, -0.7994657702478246, -0.4252311390240805, 0.78397182015598, -0.7988233776813273, -0.3111584405671907, 0.28262206104285453, -0.1478017626526489, -0.6557376897407533, 0.5058509792826563, -0.3633587818762031, -0.6061019206872441], \"z\": [0.3413118782422417, -0.18317045792293365, -0.2737427076713203, 0.37803985221674075, -0.053705483855687644, 0.6027613915438725, -0.4535959859885136, 0.176918262494846, -0.5061187420022221, 0.7737102426276132, 0.07023854675989893, 0.0807711449679227, 0.46126193084925676, 0.14182383945914182, 0.1340544466852796, -0.47921713366606267, 0.33334113667765564, 0.07451173496677296, -0.3569297697733779, 0.6948674585587536, 0.2995297717854215, -0.03634085045984565, 0.21782462543152523, -0.34135121810879365, -0.2078660221380542, 0.45155305801607193, 0.7769525630509496, 0.2667917371770428, -0.7031111856542817, 0.5610812550975073, 0.2133990988695156, -0.6784259904236178, 0.07046415600796749, 0.6007594041138776, -0.023497151723463765, -0.23236835262529407, -0.29512290414237696, -0.3154993312792658, -0.13233097884488876, -0.5397057253939384, -0.31967614005515443, -0.5872128712745855, -0.01665388559470245, 0.4491342881877976, -0.38121731928826486, -0.520098210170976, 0.24234341650818297, 0.354024126696308, -0.027229599917065413, 0.6846099389035817, -0.23622827546594052, 0.12964237553393143, 0.7591722908230241, -0.3914891782102139, 0.3267263909395295, 0.5333645143013971, -0.39477895616358155, 0.6034559287836623, -0.13458976999500266, -0.1989286233729345, -0.2085609176290835, -0.017696732241167232, 0.0625131088005533, 0.7417615371165149, 0.04774277606050589, -0.19083039681822356, 0.44430737052888697, -0.7710285818593918, 0.7948677271201648, 0.636113172273425, -0.6289816851514916, -0.03074284603868933, 0.050604971641837505, 0.3574213772341654, -0.1039852716836994, -0.15197211793676413, 0.252993868725106, -0.5875704621419959, 0.6764906957823311, -0.49642650343367173, 0.22220641984790257, -0.6745370322965256, 0.4903636412242534, -0.6131536557009314, -0.8115403644480718, 0.6739693772373755, -0.8138898637685733, -0.6535315237094828, -0.7822969623835054, -0.4079241529512035, -0.5846927055715183, -0.5164471980395652, -0.0758740736612457, 0.7014798725815106, 0.47410139110540345, -0.45695171297849335, 0.23872113170000595, 0.3522959768966954, -0.19876792329318335, -0.10067749936040511, 0.5238419183146563, 0.5284163757200006, -0.49506017589334134, 0.4818937644955439, -0.5785539788271749, -0.5999296405891658, 0.4604228520698316, -0.6269780928953749, -0.2367219075065136, -0.2936529000640717, -0.41639172640273575, -0.6918140255799072, 0.17239313796573522, 0.8419140548959234, -0.13705577709745417, 0.19613511377499762, 0.4528876063994737, 0.12245740704153547, -0.8138753636974738, -0.6554388221413069, 0.43628909097812785, 0.2878294325232524, -0.8841717879380918, -0.7673172959371718, 0.6876998464042113, 0.6182865190781193, 0.3843833555677787, 0.0328355980961085, 0.4197079833436578, -0.10978472626455313, -0.59846453004641, 0.24925865352709892, -0.8349607490168626, 0.7583772110840891, 0.2571265700597455, -0.6622100082381538, -0.6149446621169241, -0.8312709175636577, -0.7938843548341706, -0.633105456053331, -0.21813027159644535, 0.5341422582302108, 0.8996897879919342, 0.6472870449396628, -0.32336110135970086, -0.412298010768979, -0.46515927392767326, -0.14247603000596942, -0.7470990739102485, -0.10449646556174408, -0.8052766202226, 0.31438156163209424, -0.27372082461494396, 0.3460400707844522, -0.45910855498832787, 0.015069611294195625, 0.48217009634816116, -0.3628846294277056, -0.6614550496000757, -0.09476444734982788, 0.6331118966644366, 0.047981091634802034, 0.2889289981182981, 0.7474982947024149, -0.09860340714524353, 0.1280015717003499, 0.76422738001539, 0.7846762833288855, -0.9072125019333489, 0.6494453655226007, -0.6970135717560679, 0.060589972888941385, -0.158839623642191, 0.6754995028012094, -0.6768079025411929, 0.36280617987874436, -0.8272561279550528, 0.12828799337034485, -0.6235795460396408, -0.7387916661383241, -0.6478455163050788, 0.7056997163744914, 0.7926883867832144, 0.26884047863886923, 0.8341916947685709, -0.5333535684339353, 0.327101440094881, 0.6629622021537441, -0.7189035345343958, 0.5565528606738145, 0.013328696207111322, -0.10610532314562782, 0.5507912837471549, -0.15131296285012918, 0.01844915853235927, 0.2485114107885104, 0.9707504659853828, 0.39434713084585427, -0.670583304711661, -0.5017487270865054, -0.292364019214657, -0.1699357187289743, -0.9506700733220566, 0.8120737487976192, -1.0074491039547693, 0.1972786640199101, -0.5444532930136821, -0.07081962664245073, 0.20999987635165682, -0.2653039048037028, 0.5590567225476709, 0.28137691543494664, 0.011043829846600389, 0.5713831487552691, -0.09790316517078249, 0.32981580352746875, -0.577660752748257, 0.8755983568392299, 0.28974605170092027, 0.6149042430666795, 0.03598303906138964, -0.03550002515709144, -0.06242483504621096, -0.6501311108139709, 0.9343030412293757, 0.7389891469652307, -0.4506446296267816, -0.8412213619943392, 0.3198751647457261, -0.8746562356554124, 0.5083767613277873, 0.4423878757011582, -0.7812559732552172, 0.964592948525238, 0.1389614517426218, -0.5549104668539935, 0.16083846220682857, -0.2974411602017894, -0.9952610639343411, 0.4403233291408544, 0.22611997413313786, 0.5801685141673858, 0.3746281269048606, 0.0924475487752391, -0.46057887657280816, -0.6014087807092586, 0.16855232411630564, 0.5078339967994623, -0.7489770640521632, -0.7572353473008142]}, {\"marker\": {\"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 3\", \"type\": \"scatter3d\", \"x\": [0.9391750844337161, 0.9034455118959989, -0.9223992296580102, -0.1509269014306751, -0.08177568470930166, -0.5733628447528771, 0.6121813686451691, 0.9868974870018603, -0.1321382067979765, 0.13760825126771184, -0.9639095825847982, -0.46535863223579643, -0.34240519660530716, 0.3534573115686881, 0.5820695019927601, 0.7700043514927637, -0.3721134279283538, 0.8122092589051865, -0.8680498107209691, 0.9773339952405921, -0.7996588813843994, -0.6642104267777774, -0.1835588048865847, 0.08455608940243341, -0.9137677147835869, -0.23169212579742257, -0.17264481248570843, 0.040314367231364036, 0.36947326709903866, -0.21781313118568174, 1.0616032061212888, -0.9328486373621173, -0.32049502358218673, 1.0769447394156886, -0.050628316516722574, -0.649585020909198, -0.5147758164668726, -0.024525919075884726, 0.8816855874599278, -0.48961557030463754, 0.6826391078948524, -0.3740967357564636, -0.6823039223021822, 0.23061087159626478, 0.40368055142618964, -1.011710777060547, -1.062760511130385, 0.3340416825643114, 0.17634089386915622, 0.7966017718408426, -0.12512058447320104, 1.105129246452439, 0.24723991948781052, 0.25251672096292177, 0.5013413648775802, 0.16531160357311775, 0.9485667166703183, 0.6161002274615298, 0.28636531407702204, 0.26672907480221547, 0.3965345413794648, -0.3385263968619577, 0.8935755612003388, -0.5557760535941071, 0.3672334420055288, 0.7290267537569795, 0.14387051664658393, -0.9465372383199508, -0.38625315354483475, -0.2552416236295792, -0.23697819769814682, -0.9406737858649026, 1.0402745148511645, -0.35601104918789717, 1.057863077609561, -0.1249982094777464, -0.4622826113700814, 0.2235560212364663, 0.7836035845095071, 0.5102217404246491, -0.08608848877038584, 0.047369590426257394, 1.1122929146396245, 0.6042405827537783, -0.39886382491636313, -1.1264166713679196, -0.0730121410911819, 0.916319724503632, 0.3586969073158059, -0.7723817630766061, 0.11911989868555033, -0.10437078969246122, -1.030644549200273, 0.6606639450349037, -0.6352751064279074, 0.13058869662868247, 0.32753631023156665, 0.9713232723195748, 1.1748368209254187, -0.7687989761874222, -0.9615634987250707, 0.18888706636587227, 0.16660465178483883, 1.1514502946754641, -0.19049939953374836, -1.06399798026688, 0.007320407694300841, 0.8544439558092385, 0.19203523740760597, -0.651014540925804, -0.16231541081755516, -0.4963830827847466, -0.0949497061539839, 0.22935664764614327, -0.4561685531586849, 0.5782480955903502, 0.013023760823397195, -0.5341363938596135, 0.08009427539903742, -1.0826564977827504, -0.1829964508562868, 1.0432343856707595, 0.8192507905688898, -0.5679332825323675, -0.45945339808362506, -0.05899955424720246, 0.6234134507026161, 0.8488208145381473, -1.174476739375096, 0.2983430264431126, 0.0150412761565992, 0.2762637350702139, 0.6616245368043022, 0.32369429789920023, 0.48228364078768626, -0.4449564128326311, -0.9189427053343057, -1.0728038091544065, -0.974159352315444, 0.5836574976716778, 0.8060158603035126, -1.2044732738221129, -0.7990796928464368, 0.054707654986557934, -0.875159491647401, 0.23498149135407687, 0.8740498663697116, 0.865193854007057, 1.1631678250496877, 0.5089457217058542, 1.095969128182239, 0.524763381441894, 0.742145842215056, 0.87382996790702, -0.7937590446811642, 0.40487716748759406, -0.3027231334477671, -0.7803554898483036, 1.221147850071177, 0.803004706925125, -0.6088811004814844, -1.0711587450369966, -1.1053428211178895, 0.6870044078236873, -0.8263801654245583, 1.0294218361927252, -0.6870650659797205, 0.0996216205668346, 0.03083158550628481, 0.27317183775503984, -0.7479145703998398, 0.4852592342721896, 0.6194586276345421, 1.1166720907819767, 0.13898521534594077, 0.23607464632732494, 1.1746876559154367, 0.24297482269358178, 0.5179501330411918, 1.1365649565139342, -0.2267462525384789, 0.4396860408931305, 0.7534083984298959, -0.3598916311150642, 0.7075185422235448, -0.7266760610055859, 0.5593440538893365, 0.329986215931201, 1.143541978380472, 1.1863136224356425, -0.4104920679947278, 1.1400121390082465, 1.227511777112537, 1.0757328966423112, -0.09045139636910056, 1.044771539721285, 0.7301204229784165, -0.6572634324285941, 0.3449778009853115, -0.449407259493338, -0.6191556046990825, -0.6741051235988692, 0.2597113499498767, -0.35761692414636287, 0.7043120730184604, 0.35481397542641135, -0.14716084105664567, -0.0025473798204305367, -1.3389877719573278, -0.4972208185770296, -0.6528244889418893, 0.531310930232445, 0.4052625632294698, 0.7044670239022265, -0.032110580141825794, -0.4782815835284892, -1.1199884272272742, -0.4032993188501268, 0.7429248481004388, 0.2857071007977949, 0.18211562777731158, -0.5168455878158851, -1.1367164812586283, -0.335837050214667, 0.2489407582285781, 1.126553067392438, 0.4599376712557214, -0.425470825792191, 0.4833565038461565, -0.9553538462330088, -1.2450472870598146, -0.7113617124499734, -0.45070075995945197, 0.45976166207005037, -1.197101243573531, -1.2559958274518697, 1.0912379638635183, -0.9278790900784893, 1.305819272894824, -0.25915959945472555, -0.7232235585989767, -0.8458458155877097, 0.3165836742924417, -0.30185049931998964, 0.07202327708629001, 0.6380063080943713, -0.7566641947136447, -0.1632953723206858, -0.02520233382409092, 1.27115633358299], \"y\": [0.39331401154666373, -0.41830414060175924, 0.4735300004521996, 1.0541025602586265, -0.21291246499151606, -0.8892418319085845, -0.848737728862988, -0.39751282375977676, -0.310936813204006, -0.5250059859786376, 0.13414251755022255, -0.21476673457084006, 0.8958414647507028, -0.9894588851586613, 0.05184363178173318, 0.045452837397202496, 0.9817030575486585, -0.7182944966768781, 0.4224256404721518, 0.4587071605373993, 0.33490845330084723, -0.10188528773534883, -1.0628825752425857, -0.6880636466593597, 0.48769706612616764, -0.2772623340382819, 0.6817125743516337, 0.18992342175855717, 0.2958522192267753, 0.5513032493911633, -0.2281691021974565, -0.14352898515203685, 1.0270496430775695, -0.1655714391045856, -1.0732988192630322, -0.7100347454362466, -0.1293273137601185, 0.16561482563036733, -0.043843455483475256, -0.9944166150634199, 0.8740764158221984, 0.5616299410175546, 0.48511163960782794, -0.8846708938966014, 0.8029661646541446, 0.09058350048335417, 0.179421035298792, 1.0494285078454286, 1.1154279111257128, -0.19013301647569186, -0.5644813950156763, -0.19374236615970164, -1.106482650849612, 1.045028900911941, -0.06345271794498095, -1.1001843622492102, -0.5250156357519808, -0.9517513592417769, -0.8915795943996196, 1.106992657182089, 0.765832878421759, 0.8879536719095823, -0.5984357666925432, -0.9765460040111187, 1.0838100791726204, 0.6585144874112798, -0.53482074094603, 0.4899674571560973, 0.2770472691161914, 0.8197699655905266, 0.2420694042243293, -0.1337283107790902, -0.1480141915769881, -1.096484627444861, 0.46270639298354027, -1.095038500596131, -0.4211961403085073, 0.33182229494467613, -0.7353245328665466, -0.16324717849358475, 1.0701705764315501, 0.3648241195186512, -0.329374276637912, -0.772113865577002, -0.9053119222831545, 0.31146267415316575, -1.161909951136973, -0.5082912558146501, 0.7542529063285464, -0.22373456040391704, 0.9316821523030718, -0.32953757075149126, -0.21864383518639213, -0.9665291967089861, 0.3478393819679185, -0.9525621344411208, -0.9667124137645416, -0.09719077675725929, 0.014768977509248039, -0.7677943118174716, 0.5276809570224907, 0.3597229136851702, 0.545084005978157, -0.2680837965881891, 0.5073789948612173, 0.5374407260061944, -0.9276082957010092, 0.724121556360309, -0.9027975758328077, 0.1197561871432524, -1.1592903689696823, -0.4687417340550599, 1.0060348549567888, -0.8337070316178672, 0.2555452833460179, 0.983025185166872, 1.1854201917440021, -0.43240838531190584, -1.0170161116994882, 0.36363302523764457, 1.1304142549885723, 0.6064569355160472, -0.5803100325063915, 1.0554902093109213, -0.8507914839751186, -1.0250539651634931, -0.0056375087389481885, -0.4644943991833217, 0.30378595606993963, 1.1410661812285188, 0.21837791746299778, -0.937957436983719, 0.8991252303226743, 1.1840449546656067, 1.0516418417316558, 1.0845092641756706, 0.5867094192526745, 0.5307396191719941, -0.663142445290528, 0.5752381801766515, 0.931340995718995, -0.039278154569107646, -0.31820714350997875, -0.6090198992880549, 0.6145861470390667, -0.5292599056259718, 0.7716727866497166, 0.775320830590094, -0.17609507233015642, -0.9144820784358841, -0.5538437143976426, 0.05333963759689362, -0.37846844762429405, -0.7573493198946466, -0.6487724664969731, 0.9894937185002239, 1.0611974248896245, 0.1272043741764224, -0.28258545685561115, -0.7822676446089506, 0.992332422389085, -0.31573375050777686, 0.624452911952897, 0.4563497103663653, 0.8080977618382671, 0.49816135170033227, -0.9755373597703926, -1.2504754675067284, 1.1985820851458984, -0.14458298691677965, 0.5816270851786577, -1.1403623286453735, 1.0413354212780948, 0.5426583011020832, 0.729624270988582, 1.0121291577979954, -0.3232158626871389, -1.2466576493611736, 0.20415845987259226, 0.34717171769614474, 1.2694061234286997, -1.1103165474212888, -0.36577817089545217, -0.018083769575141066, -0.4742000974388359, 0.8949905972764135, -0.6430340360113349, 1.075513817451364, 0.07379079107974355, -0.39144599969686056, 0.4161877810257713, 0.6341611618832217, 0.1399440570563807, 0.7059124058128556, -0.6756691252465425, -0.8072961146106636, 0.7967008426485012, -1.0582059845182477, 1.2758667840513354, 1.229553582370886, -0.9777870667878157, 0.08674101229021652, 1.2997921429282522, -0.7487607354576067, -0.5351349390961396, 0.7901202800144487, -0.09088974597531135, -0.8190875268150946, 0.150821426867824, -0.024740598893882696, -0.9557853506567737, -1.1804477948295569, -1.262798306740441, -0.34913862820886354, 0.017952324329154085, 1.2734571926242744, 0.5376943598732695, -1.2873609396684667, 0.781724883972175, 1.3337348413244254, -0.052641211869899354, -0.02342430715924474, -0.539327863103178, -0.46197353070027475, -0.8849720137673701, -0.3614840714533589, -1.0628382740422895, 1.309758464910177, -0.9658765461903912, -0.9351189890474845, 0.5326929688330817, -0.8585610017416927, 0.8407616520890555, -0.07012792580843497, -0.06953661696592196, -0.05699262928967529, -0.3456687411241972, 0.43986990851805696, 0.41289957956994416, -1.2048191533162562, -0.18199269493036055, 0.5745425189041138, -1.1107771795318662, -0.7156658670150386, 1.0953226533168603, -0.6418805506458847, -1.07870919323165, 0.4922922416648035, -1.1420706595369283, 0.4531443328768926], \"z\": [0.322361335098932, 0.38685626819473523, 0.2592241057861762, 0.10512376712937392, -1.0454729255222392, -0.16547702930686697, -0.23652809217841522, -0.14794220569731129, 1.0231678742534884, -0.9333968690030566, -0.46809208694462107, -0.9516744565897113, -0.5003978779777003, 0.25996730817267405, -0.9121400996723994, -0.7620806408622022, -0.272251533966896, 0.0436142400900688, 0.4958040008712039, -0.11817032785092581, -0.6550503789732024, -0.855383355828664, -0.17376658704473158, 0.8461038230015321, -0.3556568710226025, -1.0348613441920995, 0.8410826487398916, 1.0807903891458328, 0.9910798695739438, 0.9265281998292174, -0.17736572688084085, -0.5657126940963262, 0.23104343876750272, -0.16555982998514832, -0.2524577689719671, -0.5429148648636489, 0.9721844392731596, 1.0963694127019177, 0.6727762357628113, -0.05876451396014121, 0.06269038377249558, -0.8869165566935394, 0.7484191320252354, 0.6533857712807919, 0.6745811162299683, -0.4815762453388261, 0.3307090132699826, 0.25145661040679707, -0.0673841171675961, -0.782431973629842, -0.9753259795500661, -0.1720984622482421, 0.06741852997175167, -0.36647238582832825, 1.0183166487478106, 0.23396765595942215, -0.3431630471380219, 0.08936385770077251, 0.64902640695552, -0.04649245546949556, 0.7451505770221789, -0.6325828898984144, 0.38429795409267425, 0.21483218920278105, -0.07690503849669963, -0.5934164015613067, -1.0056852426242382, -0.42840829481386095, -1.0457483990554217, -0.7644272098379816, 1.0989573725391546, 0.6517050440231258, -0.47310587061348175, 0.04848134442366434, -0.03930429773080541, -0.34729814520936514, 0.9718744960021928, -1.0858134613207693, 0.4332965836039047, 1.0276104698659636, 0.44605121980039253, -1.104886771319419, -0.1066583687074708, 0.629500044775872, 0.6169204931227882, -0.013886020788634193, -0.1243478418754392, 0.526798308755531, 0.8268168412156632, 0.8577896098970845, -0.7117330734621374, -1.1276253528433382, -0.5318548949060006, -0.15893313985443622, -0.9335458534319592, -0.6870348753269291, 0.5997497374041619, 0.673784053947259, 0.16313017485955947, 0.4803894553355107, 0.45642624163350026, -1.1180706677560392, -1.0455183609600853, -0.1439530531447793, 1.0623268593005328, 0.058293708339330855, -0.7531490938950396, 0.41897982381593357, -0.7644224105687513, -0.99964710742324, -0.277518980515428, -0.9917916990175639, 0.6549331917644559, 0.8398161494566636, 1.087556085860961, 0.3944314502371473, 0.2311725629441484, -0.9946596004126849, 0.6499930131010117, 0.40450569626429944, 0.3966299453386645, -0.11309361911014713, 0.6812097938219078, -0.1917133368369165, -0.7368366701946484, -0.6518533251642724, 1.046478536386423, -0.7402778551530718, 0.14685737196198617, 0.32069718010123943, 1.2036477303886604, 0.7405654524087693, 0.5102992102778641, -0.003956982861666423, -0.41015958042199463, -0.3788688478939532, 0.5737440059124048, -0.29429388598626266, 0.36418492999346885, 0.9231129172341513, -0.0834870560800987, 0.2715752833644399, 0.8889387362068829, 1.0770113636258778, 0.6274093679160028, 1.0968300805428857, 0.43072569597269594, -0.4424206528229769, 0.4076873383170542, -0.6763026478215061, -0.2277318820682544, -1.132760888821501, 0.9315382773049474, 0.4809854208363165, 0.7195953241572896, 0.6538147473011108, 0.6011975593606909, 0.9842942561014445, 0.15887609320819823, -0.5830195548005584, 0.49349213662462965, 0.6055653948661107, -0.0550392098363056, 0.9677686552770303, 0.531696946410984, 0.5579473343838232, -0.4431559993939769, 0.228514082160615, -0.44027958598390665, 1.2413087704870729, -0.8632668236630457, -0.3337062225577281, -0.427078796328138, -0.33196852188799497, -1.0504498136364602, 0.7649245887994385, -0.4258282315941375, 0.22916197243291309, -1.1701821282574485, 0.5196370658591828, 0.16268459397697763, -0.5141636278785995, 0.9965591320031257, -1.2509255687808234, 0.9846216562424477, -0.6124781088657021, 0.9919253698728261, -0.6709853066551882, -0.6355362953915816, 0.4023317936723106, 1.18080079896084, -0.18987984209063122, -0.4606220877427794, -0.3052016500207903, -1.1359290866663059, -0.13693791689760876, -0.7714297608520471, -0.45963633195267733, -0.13498936568459724, -0.22715293832909947, 0.6549064244423496, 1.148821155231533, -0.15801431149965015, 1.0476942393172364, -1.0053719640165242, 1.02424362800078, -1.3306682212408125, 1.0630631340038919, 0.0008523998031820676, 1.2521451375873178, -0.6900465947588472, 0.3842136766586791, -0.2542965801070331, -1.1006696160145413, -1.3574139064091453, -0.028395959219169913, 0.5556446208394684, 0.19095938942790036, 0.8393571785356845, 0.1234451552981092, -1.3567761378835053, 1.2689440345250707, -0.5438657712323541, 1.2483646651773082, 1.0208957419773128, -0.699756279099737, 0.7438392939449098, -0.009543979139391898, 0.8569738104849739, 0.3407307598648008, 0.2695196786567242, 0.818908052017774, 1.0044481864579236, 1.3057695422952604, -0.6990394756871307, -0.5890595870137636, -0.7916890794133369, 0.9396977619882372, -0.2540578738222225, -0.6536961691827303, -1.1798671136187189, 0.9590065211190659, -0.7967449180865257, -1.1701603745680869, -0.8761810158111057, 1.0742959649547996, -0.48925288817072354, 1.3074093928520516, 0.8235950958515077, -0.4038845369466974]}, {\"marker\": {\"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 4\", \"type\": \"scatter3d\", \"x\": [1.2355723664419027, 0.15871140295340883, -0.5068699238041209, -0.057075241148965755, 0.2607337089164764, 0.06488466733519711, 1.2793727891401614, -0.4625013509486249, 0.8450255751468799, 1.2020513872910386, 1.3443448262246542, 0.2886782920037981, 1.4309056800685493, 0.1640840842794982, 0.9204700930844102, 0.3440086114079099, -1.27354013712788, 0.7048855986029773, -0.4433326581423084, -1.3803345205138868, -0.41885891311780493, 0.42421367320894954, 1.142243104187737, 1.423679775880593, 1.1158979800151632, -1.0788019257925905, -1.1748721031078764, -0.7579175179465435, 1.2958135123553145, 0.14734889658240835, -0.7917261751805735, -0.02311867808651919, -0.17859265256185422, 0.6493478993804506, 1.0208019791907201, 0.924289505531966, -0.8119447580645431, 0.5656443434184879, -1.2559879781648686, 0.4516504713456256, -0.09019084795333371, -1.1903705614278566, 0.875268308059758, -0.4571960709792352, 0.2918801925812668, -0.8442324682529643, 0.5359316796904442, -0.04676282025951572, 0.8123000167276281, 1.1423895700994642, -0.1870402380152164, 0.052392921685351264, -0.9157589818969301, 1.3434193996182258, 0.23649666421371038, 0.43780817655732096, -0.7128246664710268, 1.4684825819913594, -0.192089170655532, 0.8703597150414034, 0.8432301486890775, 0.2708141082300617, -1.152918687174202, 1.326653123074009, 0.2970516629376043, -1.2113690426049823, 0.7353236562454426, 1.4052163351453766, 0.589393981069052, 0.1300012598133973, 0.13972402043777693, 1.5296520842831196, 0.8062071167017097, 0.21764871804478958, -0.45181418471005486, -1.220329640945204, 1.3877587110941798, -0.2631899353634244, 1.027698019441191, -0.9936192695292938, -0.49804619986874427, 0.32412834648700223, -0.5499994543155663, -0.8273948554812846, 1.295036912799159, -0.642069981281694, -0.7550506868194548, -0.622122695546561, 1.5689145490338465, 0.42851374606303155, 1.2371375793137596, -0.4724492136943073, 1.3193018089954731, -0.42383460418681207, -0.38101873050103174, -0.7448772881275383, 1.4675299784021665, 0.848583968048709, 0.1691730799906103, 1.3710298434733583, -1.196753216589728, -0.7952420495463813, 0.6294653331078269, -1.5547906024394338, -0.8470275808830257, -0.5471515898950441, 0.4793659807657961, 0.7958025678429037, -0.9564823318295088, 0.27351492800007216, 1.4584253567630643, 0.4208395685572562, 0.22569046069929888, 1.2553343708785287, -1.5887906846362398, 1.105500187827821, 1.0534925404774398, -0.17399245395232102, 1.0191341162416894, 0.9585807227941923, -1.352168460477039, 0.10020899064360499, -1.2537232815330077, 0.3333784724457436, -1.4849429842319666, 0.447444348535632, 1.384760764798794, 1.625566452468202, -0.15492746968230642, -1.3995763179179672, 1.5777674642353452, 0.14768886437086326, -1.2072843897267866, -1.5692823430596148, -0.39935552818715275, -0.5557784774663272, 0.8493865100178152, 0.8680930696303215, -0.7751835479894689, 1.6994714583314192, -0.10394611219950022, -1.072428231331495, 1.00381091108439, -1.2762443726221024, 1.3501614545868654, -0.63016806593188, -0.3925853502363222, 0.7828242485733601, 1.5308878393643333, -0.7242094486850962, 0.6594413012898653, 1.0057673745623865, -0.018748141125676774, 0.359204112043812, -0.3719628043906447, 1.1129767138202475, -1.3930737691455448, 1.5484245035404087, -0.5988921127987912, 0.18763951673207124, -0.21201762184471107, 0.27476656628785046, -0.0151089587293882, 0.20447310901373622, -1.5003779877828742, 0.7140485116322384, -1.1146775840128513, 1.8196401673108562, 0.17109316301564367, 0.413242381505535, -0.5906795660041745, 0.03076951727888049, -0.14800722122062412, -1.1300445663963543, 1.8089200625226032, 1.4775269996622444, 1.1400528893834052, 0.7718118967059535, -1.8637550997559449, -0.9912583927139905, 0.17023820580858867, 1.177668273572386, -0.32902417934618566, -1.4721464022662736, -1.559570715329628, 0.6942130333866696, 0.19796771419022746, -0.19284468555798018, 0.21291504140751874, 1.4571688320001592, 1.21036067372317, 0.639178455882833, 1.2157837769015072, -1.2363988153982126, -1.1360215624313432, 0.5368037618227621, -1.0209595315368833, 1.0261134855473857, -1.7891834656856405, 0.62712408768664, 1.514813897709386, 1.500591037644688, 1.8102531374206963, -1.071792942258145, 1.7159476835121108, 0.323633288656587, -1.0703577117962062, 0.8403209423716194, 1.1214832457722763, -1.2436166171903302, 0.7078464803345219, 1.0193429472129392, -0.2620639074230086, 0.05789375916388128, 0.7496816150736202, 0.7230664867148742, 0.7450372593229805, 0.060252179657305026, 0.12389318245152575, 0.6970163643642173, 1.515997404046755, -2.0791687428949666, -1.5640225565493324, -1.3904240785786224, -0.025332835197701197, -0.18029611948636348, -0.7991747178392253, -1.627704065341368, -1.121459554932162, 1.027803802643669, 0.6714361682742894, -1.3361070641797708, -0.7581167657496678, -1.5826684829476176, 1.619941028387868, 1.8241299661456258, 1.853180566754148, -0.12761857076789354, 1.09043640479601, 0.2200870949230953, -0.5836533830109013, -2.030996088357336, -0.0420907829238426, -1.8118435057967015, 0.9621309199972761, -2.0479618179687664, 1.4111500150197764, 0.3633015299684015, -1.5101497191095854, 2.776269306771444], \"y\": [0.6591589764534134, 0.7404103103459782, -1.3198406992653589, 0.055603476312402395, 0.2784567399816526, -1.4054234575898774, -0.15418173124184015, -1.2944529352303744, -1.0770557893871553, 0.7576954292792968, -0.04289367280061295, -1.20390841209361, 0.004808216199388878, -1.023950257602814, 1.1041551561042786, 0.0455902959252704, -0.38372832376419724, 0.19843990466278633, 1.281594665911408, -0.10732826998270555, 0.08736141361016607, 1.0824042938571803, -0.22791498949456826, 0.09654505848015404, 0.6968181552166723, 0.8927817813516978, -0.0467254737229592, -1.0986733597780014, 0.5756922319088033, -1.4437245708478395, -0.915478050958859, -1.4619023286487534, -0.882315949417873, -1.1105116266795148, -0.8884845455525106, -1.1366622958019297, 0.5789632241830053, -1.142904191729266, 0.2889611741489302, -0.8082265247212629, 1.0685478986013837, -0.5698361887747091, -1.1274306096448878, -0.7647699275345113, 0.5812843136754021, 0.10107603163120833, 0.48472717065440984, 1.4847275157247934, -1.2301634102976675, -0.8728164576562579, -1.4169446664365242, 1.1516050962192892, -0.23743563788673538, -0.09378622148129448, 0.46566112091852124, 1.454868998893743, -1.3228496535463907, 0.2700691482484821, 1.1833093210408983, 1.1914850228709462, -1.2576513415852064, 0.09988388164686336, 0.8527669007240456, 0.6720511409827021, 0.4291081696298801, 0.9573323366334943, -0.42823485493988767, 0.6444307609703773, -1.4097839927555949, 1.2731536660485274, 1.4674310357644373, -0.21763207703689338, 1.1176110374137387, -1.2092716674183983, -0.9355657650371504, -0.47911056035884725, 0.0026132346246530627, 0.7698615320003236, 1.1169261756195723, -0.037055542367683936, -0.9959325336974687, -1.4757509573730658, -0.7852957113508708, -1.2741925869783342, 0.8339901073655024, -0.9986495243090452, 0.6719689424975741, 1.4050643867147548, -0.11246194678911749, -0.905400277980422, -0.8795441286138165, 1.3246215607451062, 0.335050471526154, -1.5018210691925786, -0.7131558563077429, -0.4410712620016889, 0.6159781850556698, -0.3478275563138974, 1.4665979205217048, -0.7073410630619235, 1.08155540305665, -1.0847825332415355, 0.7320318248020274, 0.3111372014527808, 1.3892704646528198, -0.8801037809472334, -0.34500546531810367, -0.841041215070415, -1.076470503976305, 0.7714396567907802, -0.7548597628090336, -0.5785693936214785, 0.9478416002274977, -0.8440286980090332, -0.4290018925764186, -0.5787164596050488, -1.132010059209267, -0.5962653857605477, -1.0153078639480853, 0.2923426236486829, -0.04853159940730487, 1.640013645527332, 0.8923132504799682, 1.330792283816694, 0.4423009603877745, 1.6056223177453492, -0.8694228560424734, -0.25656560656284794, 0.5864783108088149, 0.5288524138196757, 0.45117026057230514, -1.385696033484071, -0.789502002848209, -0.16249287709388305, 0.7222270543887905, -0.9413238487997012, -0.2885528634987689, -0.8553453671179547, -1.0182697443360984, -0.04074264210625956, 0.6815654597297809, 1.0443503480760938, -0.42456357491804525, -1.1508462944960698, -0.9889366153951322, -1.521563262141604, 1.3301789202784544, -0.0851223373587189, -0.4550361045189661, 1.3110414266024732, -1.0029360279595745, 1.2295877440742757, 0.042589189881589204, -0.7801980093603329, -1.5226433808609974, -0.86674721245458, 0.6311616307805045, -0.5715531987960867, -0.7010202531170183, -0.41207259859231915, 1.3464278947924992, 1.762816864271517, -0.5283584453072128, 1.7361593787792724, -0.4297950488287554, -0.4865957755510319, 1.0440716939867374, 0.041873756262892754, -1.3528934353077857, 1.3975545399232037, 1.5168494949049707, 0.3946642355642033, 0.7587100536396503, 0.32680542626560766, -0.398983303278865, -1.1367880141245095, 0.9297849268094838, 0.881115289551218, 0.00238684360479247, 0.41497063061360095, 1.8396677725354922, 0.7172679516069592, -0.07491679978400927, 1.1995758020049891, 0.6343215909921178, -0.229690474021155, -0.795840937495869, -1.9069868333154087, 0.1299906331077919, 1.241213412985297, -0.9700806012843372, -1.6708455486572786, 1.4089211178434853, 0.9223078307136501, 1.237142642918488, -0.40765441377843725, -1.6236451227947313, 0.6783069061192711, -0.2022355247394083, -0.2975235175760878, 1.2215574903707185, 0.7300631870752516, -0.06792460649539969, 1.0942514217819401, 0.30614882849389163, -1.9427793056338922, -1.2750122925070948, 1.7868110539354107, -0.875267733078274, -0.8366901182026779, -1.9114738855022209, -1.747716586722441, 0.5456733913323599, 1.6367107686263724, 1.9513743272835549, 1.725165470938697, -0.6713263923440401, -2.115052528474909, 2.1108968843390605, 0.8396087289477552, 0.4482484394042121, 0.46379188686971634, 1.0843013686866185, 1.4539580051049303, 1.1063701391665943, 1.0634836410838409, 1.7053129313309312, -1.0714018748738443, -1.3293072808497697, -0.18714064146991602, -1.049981422861055, -0.31982886551454964, -2.065706737101636, -1.4995614587916017, -0.9825761141986572, -0.5682837368785656, -0.7862794243807476, 2.2578680142811853, 1.4185218849074221, 2.1770974981238185, 2.085324666495244, -0.019455975945008884, -2.291922115801325, -0.13507702632947347, -0.9254757795724079, 1.4767039154089068, 2.1990444998892666, 0.3641937116214482, 2.218723265809128, -1.4736903922780809], \"z\": [-0.16726984771804818, 1.1907166896576673, -0.058464073632527216, -1.4129412542042545, -1.363070352762644, -0.15533148152595538, -0.5993676988903489, 0.36147482468430486, -0.395217428359052, 0.13479971931900567, -0.5009192287208262, 0.7277229300493258, -0.1343778903397044, -0.9952271791360752, 0.02263035083050869, -1.3968658050761273, -0.5570472330828966, 1.2435324699079486, 0.5004561929584704, 0.41600308619397036, 1.381797972910929, 0.8617947699866461, 0.8606610438546962, -0.25832134624638137, 0.614585106253986, -0.3902226372135842, -0.8563177669787958, 0.5783353234518441, 0.340872651883258, -0.1747808033362553, 0.8208284931383457, -0.06301738427910575, 1.1542891026956337, -0.6997727662218924, 0.5750229020455675, 0.13055585340483, 1.0874820885127523, -0.7450659837954331, -0.7278755737957665, 1.1550105130940382, -1.0261361711285248, 0.682253132602127, -0.4238221432044554, 1.1929892909819702, 1.3412351805416636, 1.2250731046433165, 1.3071638417852447, -0.17467354812485306, -0.2562844474457909, -0.4189354952576756, 0.4493083980491425, -0.9758790998291924, 1.1801764384784446, -0.6890962797976217, 1.421429260933662, 0.014703371703291685, -0.24855756824411862, 0.3040853649214382, 0.9478490996374069, 0.39801687322940316, 0.22602797372597064, -1.5065380056404232, 0.5497100108840685, -0.40793248701019424, 1.454195900496525, -0.08099190129418389, 1.2911838509615439, 0.07477922294425053, 0.26449793708659775, 0.8760673676898179, -0.48732937968229423, 0.1549626827904251, -0.7177799865845641, -0.9533110542677977, 1.1610800545435414, 0.8443628563734173, 0.7152123712567778, 1.3326037566576676, -0.3697178708114584, 1.2049845664016603, -1.1007030443915633, -0.41338716174959644, 1.2390423130176023, 0.3828719668733741, -0.3317572851708573, 1.0363701833421461, 1.2095863157410696, -0.3754531224555495, 0.20903808067787716, 1.240826865667845, -0.4899579640808921, 0.7637093112742419, -0.8423787813232422, -0.37176494107334646, -1.387785935512619, 1.353424549722873, -0.230533450422271, -1.3269231436961753, -0.6501030792291845, -0.4792380645731993, -0.11172845656623967, 0.9034539449293125, -1.3054519567328517, -0.3550059465630837, 0.02493509672793355, -1.257745149834039, 1.5254472667094723, 1.1615451845190243, 0.7867894953028163, 1.4228900777362876, 0.01712574204996101, 1.479541231505635, -1.3259471691808316, 0.6499401491155493, 0.14940013156494697, 1.0835476093912964, -0.5858358644149911, 1.5350883171102556, 0.8224809767791607, 1.3270950459623252, -0.9675448427582145, 0.27811771139740177, -0.6404494518796522, 0.9513556381805025, 0.6259531845413395, 0.1285988622208642, 0.3512193889606353, -0.31501785391819076, -1.5635087711204878, -0.7585438679711923, 0.3541505245530414, -0.9391693618534477, 0.8738507767760393, -0.6020352632113263, 1.4767520468163609, -1.2983932709725157, -1.4411716797269407, 1.1826872767583094, 1.1274853428426626, 0.14219849962230383, 1.563075804394086, -0.8257448396325404, -1.3198430569627004, 0.03400119185725665, 0.3980793648633172, -0.5085181887491294, -1.0239004482367082, -1.5363093692640226, 0.6560820464232376, 0.8634012061632472, -1.2450798513246353, 0.6921571655268535, 1.7417752014426224, -1.522323537429428, 0.7758041224782478, -1.0354694079956022, -0.856427884377234, -0.5937730089164867, -1.5226767518692568, -1.7245041506913688, 1.1497265749832386, -0.004292782717842235, -1.714196727264438, -0.45095026749790756, 0.9171136390353317, 1.5927126321463432, 0.9758719551745881, 0.009849496768771197, -1.219701096359567, -1.1060858510550589, -0.8397588954221915, -1.7886690843564117, 1.6715102708057108, 1.431403061847319, 0.1304974779674394, 0.13063131609749515, 1.159630039623917, -1.4661082933817544, 0.2318045743338729, 1.5488860268984586, 0.39987570525246635, -1.3016946522861796, 1.8698331124612773, 0.14921188200778138, 0.9014727868536643, -1.7673467299235142, 1.7294078098874808, -0.038392268298363445, 1.9042623657642634, -0.17604423766188737, -1.1409602062994886, -0.7139874284726683, -0.542108072062945, -1.17555935840833, 0.9768355469398575, -1.8321435751168014, -0.38928833956857645, 1.5225299168383368, 0.7784960237201559, -1.841457277681018, 0.3085274256187073, -1.0743568060572568, 0.8126589624534211, 1.2698772808273613, -0.974122676664585, -0.35336259632036593, -1.1201532676205281, -0.3753809092521402, 1.5082823637166718, -1.4419549013079782, 0.4793302352393025, -0.5634900390385603, -2.0142238035464257, -1.3203558799552297, 0.27747999143798385, 0.9788286969810025, 1.8613752087203652, -0.132155540814053, 0.25984877761860703, 1.8310980115854951, -1.4319920558952597, 0.13769928382810964, -1.0068897586165841, -0.780086116463531, -1.8524395280821162, -1.8745187282355016, 1.0722525194207697, 0.9665260635394181, 1.3229721628692654, 1.923450063670079, -1.8058949531048158, -1.7139415086372178, 0.30869439791335807, -0.42911848252878904, -1.1634726117290664, 1.159030608286331, 1.0353296543808432, 0.21125020740458, 1.4577031584799185, 0.7916590119217176, 0.8801213719434109, 1.2531711219738624, -0.7243514477511692, 1.7059767250177342, -2.135117521256117, -0.09870477265183199, 0.4290179894174415, 2.7242925631329094, 0.7467449310088323, 1.2195446965357999]}],\n",
+       "                        '3c86de48-a6c6-4c37-84cd-8094f654cc44',\n",
+       "                        [{\"marker\": {\"size\": 3}, \"mode\": \"markers\", \"name\": \"Class 1\", \"type\": \"scatter\", \"x\": [0.028037321052134693, -0.3212026427255301, 0.5285878312559396, 0.503873070705605, -0.29540083217546925, 0.0018827332362024824, 0.009425967181448214, 0.17980086659136166, -0.22590015772019725, -0.7818772956502522, 0.3431420458899839, -0.020169369692122567, 0.29535956698256827, -0.21444000719282816, 0.2904001365829822, -0.11230589645560443, 0.26292455123121, -0.2858403471044008, 1.19875381238026, 0.5876251565365683, -0.48021765397477645, -0.234529125797262, -0.3049666517041749, -0.2095631527933806, -0.2782025687756225, -0.1455923966000405, 0.0029323741958832425, 0.11673322987038778, 0.08412928049338446, 0.4187418643959871, -0.43157736294597204, 0.575829882380994, -0.1182359860634131, -0.7693641983400035, 1.0088587994602762, -0.5062674803560231, 0.4188841524458923, 0.47454771167541726, 0.014470542235758617, -0.021868684615105636, 0.5873996692944027, 0.2937462025157323, -0.030314432654138388, 0.21393780431962792, 0.071633295648051, -0.14658463555958595, 0.5869132922506561, 0.6577463797609846, 0.7629614220303379, -0.5097836035314466, -0.3014352226163205, 0.12101545460618804, 0.049178745848870144, 0.823449797884722, 0.00949156418194098, -0.2694627369149593, 0.7360461284087815, 0.03958261868487598, -0.6981729047705306, -0.5226827082211187, 0.15947673270474663, 0.365606446316008, -0.7881677377710242, 0.7344554576123455, -0.9259660252102467, 0.5632723594548376, 1.102316274074857, 0.16757661047354896, -0.22581971462758493, -0.011974858414609999, -0.0680315985727668, 0.7869059594697557, -0.5428921113439041, -0.112509555333367, 0.23140572904254478, 0.009231554202882642, 0.25849566881873937, 0.7188150257428783, 0.4291758007145227, 0.35956184164441257, 0.5029850836226724, -0.831282136642105, 0.5758124579742897, 0.5307672703741945, -0.8560455523795599, 0.5419087017261874, -0.40383667713666493, -0.4810726082829583, -0.14166946017095086, -0.3749082276493966, -0.6110297486865759, -0.3566276829074095, -0.2347988002633148, 0.5782324050358809, -0.07394848977410544, 0.3941745257416145, 0.48959333710192393, -0.43329293177808686, -0.4107048118901084, 0.01724262663900896, 0.08334678490313978, -0.8932887479811885, -0.29901471022155235, -0.0025021140921972743, 0.1601977107434661, 0.2025071877924144, 0.5284124389308865, -0.11887146753528256, -0.2964026056963701, -0.1831089588323007, 0.2504675550467652, -0.16867162508968847, 0.17184464495646273, 0.3176150859161639, 0.2645043630319979, 0.47324954432503397, -0.11062069693908198, -0.11989941886130445, -0.23488225344836103, 0.6654432461219569, 0.17445391767015328, 0.8745888396111101, 0.904849356985894, -0.6519140866303589, 0.0885344880143133, 0.5211713538675256, 0.20699008094653598, -0.6427108976630627, -0.7378742383961014, 0.7459665969304508, 0.27499586867865244, 0.20625036675788494, -0.679448013008635, -0.11762799077145653, -0.09661710927716968, 0.2141219786200198, 0.45166023262099614, 0.17409931975083484, 0.3846671100428793, 0.23690941985161423, -0.37037222862818575, 0.07917044526504996, 0.7617786362751134, 0.38463257316680144, 0.015081022716841945, -1.1941783585798103, 0.2778410545798174, 0.4206856130498948, -0.056753901492893756, 0.11421559084007431, -0.4185037600156173, -0.17865443268538672, -0.4295504367870642, 0.6513768280098501, -0.2683328215012509, -0.7456059268081828, 0.07714452947474994, -0.13742811396026058, 0.48606363682069065, -0.8465108686281018, -0.6661775618987014, 0.1546499376799179, -0.2274961238848759, 0.10935486394364528, 0.7168343488307598, 0.028295747082061742, -0.45556684600029224, -0.22176445743888948, 0.05586974216759434, 0.35578371247964363, 0.09269720734504336, -0.15994794412104324, -0.6427496200942515, -0.33423992958651333, -0.7937840534598937, 0.5437386890778672, -0.7596374030117978, -0.5258147981644578, 0.01725879675338621, -0.38986444395504566, -0.15402227383776032, 0.5127226756341237, 0.48690873422964626, 0.27671053218629693, 0.41472598409949446, -0.7190320386058662, -0.01892988171305467, -0.7068619395004572, 0.8042115508297802, -0.39793983881226236, -0.10680755625935162, -0.23249746907585359, 0.04399076838278058, 0.4686737336760122, 0.47390836807565423, 0.7098618030219597, 0.32869377677723133, 0.16701469770225108, -0.5154734238431739, 0.21386298329013229, -0.4293381155176546, 0.6509112574617889, -0.21225803109466304, -0.45083736597488855, 0.360542552331909, 0.11372603065206624, 0.5710758094823543, 0.2810574854907684, -0.09060706509832817, 0.3360079279814693, 0.7866817727238331, 0.3646900760097044, -0.8682832269670017, 0.21499745213113436, -0.3743261507200149, -0.5522064787076449, -0.05766567420979169, 0.05255802279757206, 0.16772080317328802, -0.17057603028625343, 0.42521028963780116, 0.23908704403788383, -0.02748010957368749, 0.5620466031348739, -0.06334185372316746, 0.1811535174351852, -0.00256634665436331, 0.1601807725926818, 0.24342711619364943, -0.3695754657164475, -0.6601157459707795, -0.09020761756219096, -0.8220261936133622, -1.0186868497122867, -0.014380398446788165, 0.72644876214914, -0.0077244607314658, -0.14409883808740337, 0.6417061973348561, -0.3124431448690388, -0.36049844566071665, 0.00327644863723392, -0.25608955767154973, -0.9726921163270787, 0.018950364440031824, -0.04891938649147925, -0.42628670063100627, 0.020927227328870337, -0.34165871070060455, 0.2101672470799714, -0.28639878954522097, 0.7230755456730827, 0.08179757981705083, -0.871679782006946, -0.12191049142817612, 0.02918970717930816, -0.42946315684341413, 0.9024527172582626, -0.48085308109559166, -0.19060036553777215, -0.003304654492847318, -0.4262184227051244, -0.06440436933618553, -0.023966268084214686, -0.6250681816535532, -0.5432928783788312, -0.4169328986642972, -0.223637947784688, 0.515523874267179, -0.9425967499859276, 0.04972933986483954, 0.6180228772384769, 0.25210959357126894, 0.013157188712436674, 0.3684134479554839, 0.2085827041521866, 0.013912716237140549, 0.4076787994937053, 0.2528397345183462, 0.9869374327705985, -0.695692538536111, -0.44065892507991755, 0.6266396855349466, 0.35657462822864855, -0.28476987855984776, 0.5513642818365276, 0.5063241689263496, 0.14808605294716273, -0.015643169214624886, 0.18807497397315115, -0.3829463702312791, 0.8412612838911949, -0.5693031807468993, -0.6057228849455564, -0.05860060975339115, 0.09290381043250065, 0.25581740248997153, -0.1290884429004529, 0.027677743866840417, -0.1372777603902358], \"y\": [-0.16738889368321228, 0.5005306106651246, -0.24566920034931009, -0.621596951465891, 0.14129250092872103, -0.34399539513996585, -0.3301394220688392, 0.1361036844467546, 0.15865312947964005, -0.02581259631947992, -0.6584768489514458, 0.04282744213568066, -0.22755307381114212, 0.17921953723097556, 0.019805410865168443, 0.0759296246918352, 0.16985409637934937, 0.6143042632885762, -0.3889827799072763, -0.1884557005288221, -0.2387754527121834, -0.2555976763416294, 0.10239335538038392, 0.7528085789360721, 0.5162629306566149, -0.2750533113920548, -0.19653039962171182, -0.43661572027326906, -0.3309564178124106, 0.27021458013658933, 0.015136553050289225, 0.2178309665353552, -0.03803062897552575, 0.29608671615580173, -0.8594108606646675, 0.6884588511065247, 0.37907726785129436, 0.5960970331636974, -0.1997319923039802, -0.02008007445983252, 0.43313427393952914, 0.17150324549740945, -0.09526824278463186, 0.10524578808659915, -0.14772223117874025, -0.5196527667690095, 0.3291659215782649, 0.38808541027465376, -0.06419843418188405, 0.5144765149616511, 0.31841161406568497, -0.2906088086012576, -0.016924491446770395, -0.0726162875334353, -0.44710469433172456, 0.26523097064919166, 0.42598919148546505, -0.22980716590814154, -0.2683604619504772, 0.2695465342000689, -0.10640771786622799, 0.30711849575154715, 0.03654815007297772, 0.05248294698827522, 0.18472661081801695, 0.20801638312736728, 1.019843367720883, 0.15253350792969086, -0.30759300731715117, -0.48177178244738267, -0.03929825833174903, -0.19063258183668158, 0.5437757603327101, 0.49296797226469147, -0.25080987346927747, 0.055133091388231206, -0.060819491062803335, 0.05500202213075865, -0.08220835703741207, 0.09996926345956321, -0.410056237545809, -0.14616460567069048, -0.02546951089547732, 0.2654034611435949, -0.30125203365685815, -0.10583791179901977, -0.059022990107728816, -0.508426822750089, -0.3993870460841423, 0.11009422032200121, -0.6309943867178938, -0.2088404403175759, 0.16799479914347107, 0.16975213105551842, 0.3752975044820691, -0.12694930903550875, -0.4036619078201482, 0.12394664493497229, -0.38632190877773975, -0.09923314173095299, 0.20345930389742026, 0.20735838290998218, 0.3938402348473932, -0.0014513701597977666, 0.08512294182894281, -0.032863824842115925, -0.04589679022902065, -0.3519634929140525, -0.0684010104680686, 0.46652120698126354, -0.5910335341250499, -0.38797784464420076, 0.28088802331443063, -0.1989786713141561, -0.5396009383749553, -0.15442613975149252, -0.7194677693899962, -0.10360207077719136, 0.13252497570191138, -0.29930982067958806, -0.19523263632048604, 0.25539512964042643, 0.15129177550892894, 0.6400347919034265, -0.22136098522075404, -0.041754788554594476, 0.2864724185124726, -0.43167309466090165, 0.6851782411937649, -0.14271660322703786, -0.4208336243211609, -0.33266939000415785, 0.1354028880781053, 0.06974518027564787, 0.6521987122006763, 0.07918564271348337, -0.5141130507125342, -0.41733566337659816, -0.0006823659568280729, -0.005006967285391839, -0.13447816492498013, -0.660465426102055, -0.2755245065789075, -0.5318753751105678, 0.9050110327922386, 0.38350325015345305, 0.29275666601972006, -0.12494531036520035, -0.04469760748870046, 0.8460255712746234, -0.7809069523300842, -0.16385678731152606, 0.5316148566211274, 0.5638570268047098, -0.4997336467950837, -0.095656809242595, -0.5465155081892572, -0.01750466097946879, -0.6500813799709668, -0.28630520664048403, -0.2683105626650836, -0.15146927766434737, 0.1577971411859073, 0.12250232871699623, 0.1310692868918277, -0.8763129917099621, -0.4294762248171362, -0.7471659535229874, 0.23574088950604696, 0.41063715854514715, 0.008494965789440234, 0.21844897159180904, -0.4074351619526577, 0.2686603544564616, 0.32894266600362804, -0.3737413502249248, 1.0700219633636219, -0.046337758861255435, -0.08040181120432871, 0.29640180821721673, -0.1484843316833024, -0.6013631453285752, -0.1598292358138991, 0.3664941419357249, -0.20612854974687272, 0.03564626190130754, 0.3651076192640804, 0.1855884982486394, -0.10142831950561393, 0.018470446117507137, 0.1979443396992497, -0.25843500297243643, 0.709572601658771, 0.2420124208357098, 0.4975954193806037, 0.7375654259893447, 0.4639727406190367, 0.19888369147683008, -0.630119894669042, 0.46877703686917566, 0.6260892044435576, -0.4932842209112639, 0.03503941225301684, -0.7910687379791354, 0.6790867371279445, 0.29976481589979537, 0.1499542565494372, 0.5032359324533978, 0.498948633515447, 0.6805711888373331, 0.4902934711381614, 0.345219040114816, 0.218414166561642, 0.7638612482472031, 0.4285368981206029, -0.011858438758754785, -0.146709166848018, 0.013252745415359809, -0.5227733204356837, -0.1769091925037228, 0.239918910598565, -0.24339610371845644, 0.01491174927540034, 0.22694539702836475, 0.37150384757692256, -0.49150138269028265, -0.23468839842775047, 0.36712067096704476, 0.9322465966421218, 0.39122581229094927, 0.06439604093552836, -0.08286801416773582, 0.8874306683732102, 0.2443300756986076, -0.9048884421794425, 0.17046665124319668, 0.5044391075088026, -0.6146508539176011, -0.4964239561239794, -0.022965658195735, -0.07374306370997082, 0.0026138626207799142, 0.08783661869114817, -0.2021823900253188, 0.40026497919592796, 0.4026239313353185, 0.41422302796704547, 0.002653235335454782, 0.7021051904805056, 0.8506012282276864, 0.5409349477537876, 0.6769823044352524, -0.06721362973951436, -0.5811905245233542, -0.25532494543054535, -0.11619496824533866, 0.004203699353341344, 0.5485122610341675, -0.11418608633735128, -0.11571741999350058, -0.11529550761858338, 0.19516109561678063, -0.06652728752528748, 0.11123060690084373, 0.7264618752284836, -0.7088064948895111, -0.19868986737467362, 0.28424600030770264, -0.04378370975019378, -0.738530809107197, 0.6182996270903425, 0.4596823929747021, 0.36044184625416936, 0.517921983201423, 0.5860575786676356, 0.4953303275869549, -0.06206755637625796, 0.780298332736576, -0.19166863811392637, 0.5444625318761593, -0.1079985558493445, 0.2781118808555742, -0.06966545209401635, 0.30276128716728795, 0.2128179972039175, -0.10708092697832121, -0.570636283022938, -0.33033957665559927, 0.3147786424368312, 0.3466727784123796, -0.6827251077334063, -0.3999037423061913, -0.21211385450950568, -0.29256448714574995, 0.307414539128855, -0.7547397858230722, 0.6126245875833808, 0.25863406252684906, -0.014007044943242156, -0.006569275919828471]}, {\"marker\": {\"size\": 3}, \"mode\": \"markers\", \"name\": \"Class 2\", \"type\": \"scatter\", \"x\": [0.353184447085991, 0.17348269040231395, -0.409097102832436, 1.0837562918941797, 0.7577418580813591, 0.7849270589014941, 1.3989245615346528, 0.6775605326720484, 0.44649730215002403, -0.7301566171563054, 0.04551359260901015, -0.3832670378399775, 0.6934014831699487, 0.4639571312035168, 0.13677986751515625, 0.24345805956893496, -0.6287143533544824, -0.662042933041743, -0.9057736995191089, 0.8542857650377932, 0.788010275549547, -0.12877738392966592, 0.67030935115498, 0.78288100336879, 0.8471493781851599, 0.7238496309944669, 0.3420358558569041, -0.5250502455226472, -1.0525374542931558, 1.0310919347571244, -0.4686496139562598, -0.7470213786200268, -0.05793779092333529, -0.19772516239778207, -0.9496733949121486, 1.1002395677849004, 0.16106253007655105, -0.2256035588274226, 1.0744074235632488, 0.4937402327409496, -0.6837380983521705, -0.9957556407878504, -0.7961421421255158, 0.526620622311133, -0.6794706733566243, -0.44537936219492064, -0.7538892088007857, -0.11291406453806552, 0.746929753596502, 0.3269922697038264, -0.44886502572330594, 0.543451188285718, 0.7404985536737744, -0.32313890081224306, 0.6202894500972083, -0.32940384864692307, -0.38356626261808646, -0.7942480823679752, 0.013343936293004852, 0.45447601381283664, 0.9538711558587168, 0.7486435625741642, 0.9148504597517645, 0.5345727963520363, 0.8671731412569768, -0.4643744043188376, -0.03729296720632843, 0.4730309818430986, 0.49400294579517645, 0.5895108854025172, -1.275681676039761, 1.2006854509635294, -0.15536268300522962, -0.7837335040161094, 0.7828922601023972, -0.6068536536901583, -0.0636583766604976, -0.7772424493580771, -0.7960889319947815, 0.09977812656607557, 0.8107089133024324, 0.10582807855988534, -0.9273734657994691, 0.9822144163406292, -0.7401688859264396, -0.751804633962619, 0.9496423033414687, 0.8703316613030517, 0.9694160768519546, -0.2937500902146659, 0.666326931271112, -0.4335123025326655, -0.2693487879525958, 0.930036198203654, -0.8539674210334245, -0.6551550175995338, -1.093014502548179, 1.0594409171913417, 0.6102426865734721, 0.9598566338513262, 1.1909878777668514, -0.0019327025058711942, 0.8007259254041784, 0.027816651689387403, 0.9426779601279309, 1.1147284381567861, -0.5594987657898668, -0.8342319429365983, 0.08945300223395326, -0.3857401856535547, -0.7306523726734621, -0.14349887335402503, 0.9985067655344148, -0.6584752558747661, -1.1071025823166598, 0.5002313267818037, 0.33786092092716447, -0.21870160418545487, 0.14548790511831894, 0.9587686044611279, -0.355366419070219, -0.5460470082146934, -0.1456446036571958, 0.9828637483679391, 0.5034992193265238, -0.9381657601975942, 0.7911594398985651, -0.9935040125764344, -0.6297336868657331, -0.8248393969037646, -0.2294367897896067, 0.7747113531396913, -1.0758585206872118, 0.36840624218301943, 0.07341824468923333, 0.17276120278934873, 0.7499910808147505, -0.6028724945705506, -0.7170440789802366, 0.6247443374176224, -0.9563244400964351, 1.0835143098450446, 0.45977051718959094, 0.4983401718668779, 0.15430116294866106, 0.12925382946447525, 0.6153862237370502, 0.05851868864523323, -0.6891478602833502, 0.6828937312238105, 0.841274007533401, 0.7508862750618146, -0.7578864632159862, 0.28074154865945633, -1.092656298642209, 0.5845189103035079, 0.6567616148156061, -0.3758348087964105, -1.0530081843315018, 0.24836842005805607, -1.0454548861097104, 0.9661943119560898, -1.1567384585833476, -0.09508408790128463, 0.255711002728023, -0.3008525776791078, -0.6399625715275322, 1.3492140527570728, 0.6752326042576713, -0.6530382603970384, -1.2530440257710505, -0.5254046379023433, -0.29792892402417426, -0.24311803326985174, 0.7970450641712583, 0.10556907613228139, 0.6294064681094191, -0.8843773138930651, 0.9440023948477093, 0.04965258851124551, 0.9296058796080874, 0.7935345073049567, -1.430867694165695, -0.8358893690725423, -0.25760796770427274, -0.8527893673308015, 0.740998783523134, -0.47146763396532393, -0.6700208188699881, 0.9453782009908036, -0.8279334167548404, 1.1186765282678328, 0.7979784333331007, -0.881522268720364, 0.8897385060982967, -1.19743875110596, -0.2967445756448854, 0.34440569995087783, 0.2983795156320009, 0.5754688388591614, 0.8525462302960243, -0.3444313727426313, -0.2512835444533672, 1.0192901016034754, 0.6567028365179662, 1.0571828167974529, -0.6720248477155211, -0.2137916362274891, 0.8737365072474919, -0.18420474990911231, 0.3559690665947994, -0.34607155191662964, 0.560981656932565, 0.8226215138563063, 0.804493528313923, -0.9898289607296498, 0.4602028811595099, -0.6652523957752144, -0.6192823491544633, -0.8563701582924133, -0.0764305073487508, 1.0432901878497782, 0.8635509865024503, 0.019082385156157948, 0.5575935797377783, 0.6463001256199477, 0.2681365792755715, 0.9791829052242734, -0.35751661782315824, 0.38058470065520433, 0.2715188121236654, -0.6004489943825659, -0.7824668627491461, -1.1148077883929586, -0.12452653791976925, 0.16583179496173586, 0.736024057954768, 0.9428165498500604, -0.7108812339238962, 0.3192047699677559, -0.4937925216824058, 1.0100401889932218, 1.2339229618076935, -0.05850204197449987, -0.8843219269043467, 0.762214695440812, -0.09932717909272665, -0.04527989223393394, -1.0384449465010046, -0.5821039288127203, -0.7508424111111862, 0.954478847228291, 1.1870195512209027, 0.660046887385181, -0.7983675427419845, -1.0907619979339682, -0.11133627025081036, -1.0963157456244694, 0.5541542113062403, 1.018964690671759, -0.8354627658096874, -0.17229456334156393, -0.9053084858167207, 0.5234100285060577, 0.21283440348975793, -0.8654857862824834, -0.7948877861532524, -0.11189792021883083, 0.49458783998458616, -0.23802537165306042, 0.9610163613763715, 0.43159940360747945, 0.09730865397338571, 0.849452724995143, 0.3773814027698839, 0.3069039086686262, -1.1825102169375057, 0.018488465331419814, 0.456642422148003, -0.6104860575734511, -0.8219575754580584, -0.7342602544156441, -0.7841505679060569, 0.43381526610252397, -0.6189664276158516, 0.7753455457809262, -0.031333197381603915, -0.4195261271169934, -0.35765285122664064, 0.1670076832004502, 0.6579867600350418, 0.8199731952011056, -1.400604287015399, 0.07591637592872448, 1.1041552012300355, 0.6396602934525983, -0.680825011619644, -0.5275214987361293, 0.42638312956174573, -0.7985566252329258], \"y\": [0.8368288156406397, -0.9225069176097862, 0.562142944727941, 0.41218616737856695, -0.14897968236226028, -0.7027204215858747, -0.6825785162410165, -0.021686013280458695, 0.8614648759057382, 0.5572958569261756, -0.8784686035001401, -1.0863737824991195, 1.0052374944028353, -1.056927605127929, 0.8443742263155571, 1.4665347565923947, -0.14874682319880422, -0.43750533720678336, -0.49859239727293864, 0.5534083317353657, -0.7640109243835879, 1.309603987024246, 0.7094613084130389, -0.6580963540307515, -0.24236359748746014, -0.8515454652074054, -0.8716177016374289, -0.7751203783316227, -0.34826984287378254, 0.6272892698703479, 0.30384299327282527, 0.7690414285946929, 0.944201642518302, -1.1729103417537716, 0.024614891196906658, 0.6143144974847278, 0.8496316273074979, -0.5060756190546848, 0.5570890572628036, -0.6688496641435282, 0.020857243903067885, 0.12206640950463778, -0.5223075597375949, -1.0386931862839957, 0.9628073625139315, -0.9166449659991268, -0.33036169112926483, 1.0513227008597765, -0.7136121168901794, -1.064665602439606, -0.6923195019498687, -0.7422757272010384, -0.8159142756405436, -1.2068698924057133, -1.0192029346240647, -0.9615472572395988, -0.8169947248219549, -0.732913504030136, -0.7816816019426773, 0.7024548328059298, -0.8859738696631576, -0.7789437157498739, 0.17003687044317436, -1.0359806503881128, 0.9104036077643208, 0.783877613181758, -0.9137865518793321, 0.7533036270038262, -1.0855903966380636, -1.0390647900976786, -0.059900422981322386, 0.048201710678221356, 0.6555065858672849, -0.7080008119779261, -0.09297976222384947, -0.6611718409105656, 1.032146114488609, -0.8705835003539188, -0.2043229472326604, -0.5258298742862065, 0.6451680633862584, -1.5248681979179668, -0.24599201475366433, -0.2325998099826449, 1.1365446883672088, -0.8274947873988129, -0.4321742139012888, 0.653546685266823, -0.40348419398598767, -0.7140653821815964, 0.3025586128453748, 1.3072309474719281, -1.0011650162269834, 0.41887688501603376, -0.48475371632829156, 0.9526187410554899, -1.0383052417080927, 0.31315973334841696, -0.6373954390021523, -0.1613822719593155, -0.2359077550816586, -0.8834770557061616, 0.8536129440913656, -0.5352867083528031, 0.1467984668286159, 0.1559601821650483, 1.1221966661322815, 0.059629479773142265, -0.693805443686314, -0.8658308603181669, 0.25837921375771755, 0.9595318544805194, -0.018042282854358552, 0.3293766999360849, 0.3490823629419858, 0.8293926945105468, -1.1681406300807504, -0.5920401240595863, 0.7832323094746507, 0.5459226252755309, -0.7613830286060027, -0.7981996840496262, 0.9894782573268939, -0.3134661537918508, 0.7027836575195888, 0.42477095176739005, -0.2926315867073384, 0.548402186241394, -0.7470211314226891, 0.6185422548477394, 1.4963241214945597, -0.07825582795933614, 0.6890925687399099, -0.28911964732690215, 0.5798351883652064, 0.7318407109022145, 0.14861473090703844, -0.8483258025274856, 0.7778841115860429, -0.7144200220517972, 0.16251312995267944, -0.2194661733246793, 1.0721660507035782, -0.5399639911621879, -0.9147232526444542, -0.9775788870898011, -0.9081716096679867, -0.8434911796174307, -0.6997978196366026, 0.7387025784559224, 0.17436379285114825, -0.40760932091703156, -0.6822630519961981, -0.9326000403815602, 0.12742879252101824, 0.5305849743424601, 0.6582967710616737, -0.8770364101989832, 0.49303824598203516, 0.7730625420498903, 0.05526502181091685, 0.41242013349954854, -0.6547097990758772, 0.7929696539684813, -0.8301046625430483, 0.7548467236770099, 0.18496676135256954, 0.09868695297418556, 0.33051367113781854, 0.523225711688217, 0.1587855428695784, -0.3818324643235791, 1.112000129360486, -0.6750452453533259, -0.961954765944723, -0.5562413905627331, 0.1599983004441165, 0.10886206456697743, 0.7315802293678834, 0.9925692948315838, -0.07808514680506824, 0.9904361308849486, 0.009996115467191315, -0.7669199725498168, -0.8367124737664259, -0.3354675693140102, 0.045548669060176926, 0.904675598049519, -0.07487296981566077, 0.582327261065908, 1.1301637499853259, 0.2368255187577492, 0.4294562106640362, 0.666874382579409, 0.9804767260782131, -0.5410343566242337, -0.7421919360433231, -1.046825458642398, 0.9212760471304716, 1.0086477709919297, 0.6576026173649002, -0.3978313152900508, -0.8958457053826568, 0.20498833122404628, -0.2782614571833147, 0.35803535685137156, -0.17839357917588622, -0.8127165436963213, -0.9191543024361406, -0.8024326290306449, -1.0563920006153409, 0.549508284151507, -1.3002702985287424, 0.45301332097579833, -0.6255148524943551, -0.3051401481870721, -1.0226992137660507, 0.20549009169410373, -0.7838090593794435, -0.14338339659869725, -0.6577769169777045, 0.5875470247953396, 0.34411578399584375, 1.0483140721539943, 0.8730957687414318, -0.6729653824779944, 1.3688577615190007, -0.14963504770154534, 0.5884166696339591, 0.8375348427758154, -1.0658742779713495, -0.9293900646765014, 0.00887093132692767, -0.4042344495024685, -0.635459096473344, 1.2175081730549775, -0.016957081385954142, -0.1505837528341813, -0.9826665292714194, 0.9728855486094922, -1.0532806421555287, 0.49244245417809995, 0.24063044252159996, 1.2109580512654672, 0.21158447528500246, -0.8295383500329444, -0.6876560092835579, -0.9873852361506028, 0.5250659554353354, 0.8458085809534959, 0.7891802383312306, -0.07421666638528424, 0.30564303803088333, -0.7296856398985982, -0.43029276654340276, 0.4428781249619422, -0.7103910662162236, 0.09204442549062682, -0.5652445554755369, -0.7334774937873396, 0.4476045491433144, 1.012432029957683, -0.5934585584698734, -0.3213645820834892, 0.8434893674965144, -0.8436481351622002, -0.8632744394017159, -1.050645375588491, 0.5371893230401689, -1.0914072070555438, -0.6181060083103141, 0.912475131593974, 1.2407417265926568, -0.1543375112284587, 0.814923414753736, -0.39883042562959403, 0.057420058067794065, 1.0625904012395544, -0.4817061896644774, 0.21846675288874554, -0.07674626329459816, 0.8963240370977635, -0.5182763878814393, 0.718253350546221, 0.5050082529524114, -0.15087431326621994, 0.6125939022718686, -0.6320404844149592, 0.699865807872482, -1.124140607276122, 0.7084379802109603, -0.15737399195588034, 0.4184904319466504, 0.8639363018111418, 0.5495211897691104, 1.159356898545358, -0.0850259523069501, 0.866899622077942, -0.7886445131362726, 0.37034721205751714]}, {\"marker\": {\"size\": 3}, \"mode\": \"markers\", \"name\": \"Class 3\", \"type\": \"scatter\", \"x\": [0.36943590990346153, 0.8461725196977581, 1.2020208047590166, 0.3802389350284119, -0.6997602766949431, -0.7061220901499828, -1.7195835514652018, -0.04323298152202359, 0.8688831259800307, 1.8310869976768376, 1.1497405163814276, -1.5657830844133571, -0.9131109339856556, -0.7206228865201025, 1.1972754151143286, -0.8466630211664783, -1.1024459576365955, 1.0895124549317954, -1.4339181261529774, 0.9585628614943157, -0.10451668296090577, -1.498331287532483, -0.6542956947089011, 1.5787153578819244, 1.2579297354729906, -0.3827741059713376, 0.7876139481521159, 2.138791326775739, 1.2376429476433795, 1.559701904677226, -0.09575282040029218, -1.0219114820756128, -0.45604507095790364, -0.7660913173644549, 0.28060489927818527, -0.7670619986058739, 0.6584020972254327, 0.563413482824789, 1.2148746286722643, -1.1192459834747768, 0.1610716042276026, -0.15022401259626617, 1.3548326541284466, 1.3219143263509392, 1.5270121415546765, -0.4600974288951135, 0.1421991878689676, -1.2035907971905595, -0.8672655777567746, 0.5454287327298193, 0.9187538411562745, -1.1911749465921788, 0.277270505394194, -0.8811433798375016, -1.5722401956007162, 1.8597826120209524, 1.6350738160907246, 0.48380936525662055, -0.2657023770538857, 1.2129723005991935, -1.4524295043979447, -1.4504094695678813, -0.020753889839303506, 0.6390885299787329, -1.043953472101434, 0.9860028220746498, -0.8087556167366854, 1.07455685071302, 0.1779363668588059, -0.7025569192608256, -1.1261086073656625, -1.8207489621829045, -0.7880198629402214, 1.3206170156475525, 0.06521862992883327, 0.9547434500645667, 0.5024757387480095, 0.9794315380004301, -1.1103909441954405, -0.43748147596867626, 0.3349303251457427, 0.835387883490405, 0.8649035066658909, 1.6015944077339312, -0.01922054879686752, 0.04732354597894147, -1.1210322153521572, 0.5708044953847952, -0.2599523396860906, 0.1584909960864273, -1.2186560868986451, 0.7553624029840311, -1.6343232917909092, 1.6631949339608798, 1.3160897987852347, 1.5573556677429197, 0.7364449002349154, 1.1260384480557588, -0.22402110510222828, 0.5030911743429898, 0.2821226611995369, -1.2068096454815376, 0.9649343456099719, -0.14199542305866558, -0.8993896436525565, -1.3641235198361108, -1.9471912645730964, -0.5090874729705529, -1.21208432847524, -0.385358447612142, 1.0215215149601369, -0.9518168195422574, 0.08463126703311992, 0.8908137436466042, -1.989064449788627, 1.563337101155877, 0.03229333973385091, -0.18001117652733137, 1.9125609673862174, 1.1999366217223086, -1.0816734668384418, 0.47001569211768307, 0.46713489621345344, -1.4499508327705575, -0.1972859429299996, -1.2040898800118016, 0.5374331345001245, -0.9954907364405353, 0.34736788915189837, -1.050827057704728, 1.8404362337256157, 0.09733559754456633, 1.383453289278437, -0.04618540515557587, 0.5065214812114319, 1.2472556514580828, -1.1735876823564602, -0.6197815857406779, 1.2108777655968297, -0.4292495814148224, 1.1224237173417566, 1.2673687664903357, -1.461978241039905, -1.0737958096994324, -0.28906949202560184, 0.9677569549986154, -1.1631697570736914, -1.2695054903856293, -1.589859609299176, -0.6642053945864322, 1.0432428393614093, -1.1542171143436404, -1.1898049853991082, 0.2739760708802919, 1.3290608222522593, -1.2749632029584452, -1.6115524132609353, -0.7955138801266688, 0.9856523576275283, -0.8165180840220894, -1.6581094421235436, -1.696782280924875, -1.2654792588408472, -0.5979037930150802, 0.3447287443900931, -0.20710954005609297, 0.5328635714613343, -1.288634376972616, 1.1733815920792576, 1.3448834974587358, -0.6435310777728755, 0.3284290096413927, -0.34562747432687346, 0.41043129711877624, -1.7956504062519547, -1.4253468602671733, 0.9835313292487889, -1.0044500924968103, -1.054124337993761, 0.9624375273352141, 0.31330869001761935, -1.6948254056761096, -0.1279782273863713, 2.012840130721584, 1.3956261062223183, -0.8109907681482202, -1.061102079754229, -1.1062182771528668, 0.2728321089790773, 1.1218986549467589, -1.663000046280922, 0.7534331394522036, -1.4087459571615621, -1.02502429294346, -1.1425475781169765, 0.43298503090344503, -0.9863295269427702, -0.8769354729448987, 1.5017584088133966, 1.8429924616430067, 0.6273220728702107, -0.22634569866744741, -1.3346602557849103, -0.4844672914321959, 1.5363673897048928, -0.09766971346442069, -1.0684038855445135, 0.8612256180610353, 0.704831413375271, 0.5584511101205064, 0.49556475849685305, -1.651648588368701, -1.2409368025664012, 0.6847717619870147, 1.8716963484881963, -0.160814648190307, -1.7479941988835976, -1.3920320853942256, -0.2021820628190452, 0.1459294134456594, 0.7504954989397571, -1.2604846175267908, 0.9035237279912984, 0.01595294146610331, -0.9210080165052948, 1.6161420664591732, 1.2246738101209398, 1.3388989788547274, -0.23041547140852014, -0.10251849668037097, 0.022627796951153342, 1.571542214807106, 0.004319762103822933, -0.21317873455639869, 0.08457809959252517, -1.4816129461023766, 0.37286502960368445, 1.2935166611034337, -1.3028148933826782, 1.620516854872213, 0.6923985190575942, 1.2639938382990679, 0.89082103411714, -1.1803177827478866, -1.3998956576826664, -0.8705078236441721, 0.7797853827142502, 1.29567435560814, -0.3310238622223811, 1.5453201177085725, -1.4722910326551175, 1.1660450255439831, 1.5717326496651831, -0.9765060676084487, -0.07735873104380313, -0.19521845873676927, 1.2865001107793455, -0.06076369468719324, -0.7547214661444063, 0.4414386683737018, -1.2753720669123783, -1.2570761884537553, 1.5653104556683413, -1.0197549588435997, -0.8806370078295938, 0.9675994383159968, 0.6071536539826317, 0.2735670712864052, -0.010011738719546972, 1.288096383248931, -1.1029359025702623, -1.422427466332721, 1.0979356547960677, 1.1446799853618217, -0.22936970911397753, 1.049568418850167, -0.4867045396968813, -1.3536613805949325, 1.5338863464327996, -1.667490049904442, -1.4842330272477082, 0.731129281447467, 1.303928305144391, 0.8788379385751405, -0.8555812203855521, -1.2281325488973287, -1.302819270673838, -0.6805747880360166, -1.1559543103251873, 1.3781404979562775, -0.9149131236921638, 0.7329392152064652, -1.1082419537959873, 1.4094995455217343, 0.4173769215761509, 0.3741681869196496, -0.0441777504760091, 0.6984535713067103, -0.5989091589771652, 0.034936456960495875], \"y\": [-1.651954631306673, -0.681544922892267, -0.34647991449861215, -1.6103794158306879, 1.6057747089011931, -1.724145398862381, 0.7109698122821584, 1.4727732788529675, -1.3527094201584138, 0.45089298072680445, -0.8160420727289323, 0.38656747936045605, -1.0650638113974478, -1.1253958561709425, -0.9272841696202613, -0.98090612350591, -0.9588853395809179, 0.4849622306901898, -0.16659194599258925, 1.322299035425969, -1.320982048819212, -0.11528745494120947, -1.3956302301969972, 0.42308178225083304, 0.741720474187146, -1.7819033815043752, 0.38330066325303835, 1.027144226513341, 0.09434171124636281, -0.4372229738648574, -1.2174724874992247, 1.3477586775715114, 1.5150027014413756, 1.0585795767259374, -1.7969792312838053, -1.2320212323925852, 1.5266214556762292, 1.0906294984356377, 0.8640825750556795, -1.7710865246232734, -1.7787669848757486, 1.584271089179307, 0.17933391139277954, 0.7503965481665092, -0.3126281941324697, 1.5673037791663942, -1.17158453630489, -1.1985130801706405, 0.7947506528467131, 1.9080940978507093, 0.8779529536430035, -1.0503344878844898, -1.7770726049506973, -1.119955963055157, -0.30301526933201495, 0.5018928437363406, -0.3280271603138215, -1.53098902048979, 0.9635796888204209, -0.15346378078994863, -1.0817155566994359, -0.826365070692291, -1.7141828506069585, -1.5631427399997713, -1.5672554275912822, 1.025126531177778, 1.30559471511738, -0.5215424652033308, 1.1061487174829217, 0.7280241148059174, 0.5120659948264131, 0.7287712547774919, -0.6768056001552206, -0.4935666576747124, 1.1139691763249397, 0.9136645521769352, 1.4667240477749361, -0.8426533054588109, -1.4466657527428637, 1.9061013863614373, -0.7615152070404998, -0.992294049714693, -1.246978067884286, -0.8946037772116798, 1.364933352234722, -1.4933286229981073, 0.28378511396994877, -0.8749619609388081, -1.9117526783810173, -0.9449688744770962, -1.8216624465993292, 1.5401414045962027, -0.47511457893697606, -0.16070101246997912, -0.5462269733328136, 0.433138557490336, 1.2419599351450799, 1.2255170981070076, -1.4730564672168043, -1.1089184669266723, 1.2089173048651543, -0.044398695275161375, -1.5057500291157955, -1.3089105517421185, -0.24444968137119752, -0.8698851872172911, -0.10238183378258918, 1.6530239448529678, -0.5247145956459732, -0.9537337430853171, -1.0432800228428447, -1.0974476771204533, -1.2091452226287611, 1.4050953477745838, 0.4900083103781963, 0.09176722617077168, 1.5473318234681324, -1.2082646734326516, -0.09850657640515248, 0.8623726450375171, 0.7704696213057685, -1.4443677687182759, 1.572266415699658, -0.5228888149227237, -1.847780544997121, -1.0748711201178012, 1.3096749110408181, 1.276995527355843, -1.6113993286757522, -0.3725621334598288, 0.06049598890171154, -1.4072555561017615, 0.31208137090153326, -1.7225739872263504, 1.6457585133838641, -0.3363847104915209, 1.282602431671845, 1.1807411873838263, 1.6423765301510203, 1.1782325641448401, -1.0993782664082132, -0.029195245635143873, 1.590366704476119, 0.35929065425868767, -1.6303309712187435, -0.8403548201556382, -0.7697673344230488, 1.0298884056173352, 0.9725938346556725, -1.8676293344071684, 0.021098233412227895, -1.0782910771509542, 1.5241151295132271, -0.9610976166637558, 0.8789067970947783, -0.7890578336331249, 0.1935856230385323, -0.9907358797547737, 0.4254538061891419, -0.4487763071683392, -0.6744501126849528, -0.6799576385411595, -0.9624866139995623, -1.2007025602250303, -0.957728614507639, 1.6544262472857505, -1.0450014957558198, 0.014123832793659362, 0.6171100952058386, 0.5183631717565442, 1.100134156629236, -1.4737874748390265, -1.2690679426340905, -1.6583037398242897, -0.1956047144026082, 0.5622742224346121, 1.3091272849759565, 1.8772712038063684, 0.46389230976421053, 0.5989749854146463, 1.6774373834266791, -1.2027190077151373, -1.416851888323527, -0.020899853002275398, -0.6236858150556739, -1.013132236647751, 0.5725563736429219, -1.2736289729958683, -1.1975289079830957, 1.0316758738400913, 1.0567664971596384, -1.1904870253997992, 1.2604554668769146, -0.4971507574191068, -0.7028166699938031, 0.9916037349008124, 1.1587382615048298, 1.493263044010564, 0.24944438447726486, 0.2823149111635646, -1.1128206463518941, 1.5505029874234457, -0.152262500998365, 1.5326894913470932, -0.6007188264237994, 1.6701448229218083, 0.5055695122107131, -0.8861470377999223, -1.0813707516740314, 1.3154056194559967, -1.4431844455441023, 0.4441871881672369, 0.13330151995433395, 0.7619266708961574, 1.0382048855744763, -1.1527434503670209, 0.03887346934219386, 0.5832632444270008, -1.5616154248439649, -1.4924218924180728, 1.1648509131488292, -1.0457705870877045, 1.02945446274266, -1.8463763431699023, -1.3916948284102422, -0.4518047220180057, 0.5665243681548908, 0.5016514822157404, 1.1237565181333447, 1.3913663192369319, 1.1918747669500438, -1.0500055151445697, 1.5150052901163844, 1.535921945355519, -1.4306232461288761, 0.4840842087139782, -2.2008192680094827, 0.5632913589110086, 0.10194738755797957, 0.34743521999258736, 0.28758203011689853, -0.8424219708698942, 1.0664812792144154, -0.2438186656448818, 0.8749415765316026, 1.2412028053499393, -0.5677957385594936, 0.17878536096487976, -0.5501391991651499, -0.36182571982210315, -0.5847217091846072, -0.4888176205815249, 0.5354544083884742, 0.5465205813413957, 1.2104307548362878, -1.6121479521172934, -0.1518813560359969, 1.4801412885208334, -1.098243842079488, 1.3053106167563704, -0.5550476503708149, 0.2898562197969861, -0.2782064873492128, -0.8278408007459752, 1.220032453413834, 0.8433322085259582, 0.8495929385989776, 1.7497788529102365, 1.6483519573716432, -1.7585574528494994, -0.4465155348666161, -0.21057165950501347, 0.9651303782438536, -1.3812102649163456, -1.3297283538914848, 0.4752355879681974, -1.793923557393397, -0.3798281712002652, 0.8650457789443076, 0.4471697409860681, 0.1431594949617175, 1.2501174441928204, -0.4629920508486503, -1.210010364814548, -1.5339010183235848, 0.2965175524640166, 0.8066620767781347, -0.9488819660341754, -0.33923992010862636, 0.568544050866416, -0.07202054540226506, -1.9808287869541972, 0.29019702449070567, 0.47720904132270564, -1.7992380530048593, 1.1860574430624424, 0.8147969092290973, 1.1760627503492729, 1.0859331974562911, -0.8230718221857748]}],\n",
        "                        {\"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"carpet\": [{\"aaxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"white\", \"linecolor\": \"white\", \"minorgridcolor\": \"white\", \"startlinecolor\": \"#2a3f5f\"}, \"baxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"white\", \"linecolor\": \"white\", \"minorgridcolor\": \"white\", \"startlinecolor\": \"#2a3f5f\"}, \"type\": \"carpet\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"contour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"heatmap\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmap\"}], \"heatmapgl\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"histogram2d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2d\"}], \"histogram2dcontour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"surface\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"colorscale\": {\"diverging\": [[0, \"#8e0152\"], [0.1, \"#c51b7d\"], [0.2, \"#de77ae\"], [0.3, \"#f1b6da\"], [0.4, \"#fde0ef\"], [0.5, \"#f7f7f7\"], [0.6, \"#e6f5d0\"], [0.7, \"#b8e186\"], [0.8, \"#7fbc41\"], [0.9, \"#4d9221\"], [1, \"#276419\"]], \"sequential\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"sequentialminus\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}},\n",
        "                        {\"responsive\": true}\n",
        "                    ).then(function(){\n",
        "                            \n",
-       "var gd = document.getElementById('61f8d801-6585-4e74-8866-3ea7ed11a120');\n",
+       "var gd = document.getElementById('3c86de48-a6c6-4c37-84cd-8094f654cc44');\n",
        "var x = new MutationObserver(function (mutations, observer) {{\n",
        "        var display = window.getComputedStyle(gd).display;\n",
        "        if (!display || display === 'none') {{\n",
@@ -11895,88 +8222,3688 @@
     }
    ],
    "source": [
-    "X, y = make_gaussian_quantiles(mean=None, cov=0.5, \n",
-    "                               n_samples=1000, n_features=3, \n",
-    "                               n_classes=4, shuffle=False, \n",
-    "                               random_state=42)\n",
-    "plot_3d(X, y).show()"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "This problem requires a more complex algorithm than a decision tree to be solved. "
+    "configuration = {\"class_sep\":0.5, }\n",
+    "sub_problem_generator = RingsGenerator(n_classes=3, \n",
+    "                                        n_features=2, \n",
+    "                                        random_vertices=True, \n",
+    "                                        errors=np.array([0.2,0.2, 0.2]), \n",
+    "                                        random_state=np.random.RandomState(42), \n",
+    "                                        n_samples_per_class=np.array([300,300,300]), \n",
+    "                                        **configuration)\n",
+    "data = sub_problem_generator.gen_data()\n",
+    "plot_2d(data).show()"
    ]
   },
   {
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "## SMuDGE usage : generator configuration\n",
-    "\n",
-    "In order to use these generators in SMuDGE at their full potential, we need to se some configuration.\n",
-    "First, let us initialize SMuDGE with the configuration of the proevious tutorial : "
+    "This problem requires a more complex algorithm than a decision tree to be solved, an RBF-based one for example. And it can generate sub-problems with a large number of relevant features : if we plot the same dataset but with 3 features, it builds a sphere."
    ]
   },
   {
    "cell_type": "code",
    "execution_count": 5,
    "metadata": {},
-   "outputs": [],
-   "source": [
-    "name = \"tuto\"\n",
-    "n_views = 4\n",
-    "n_classes = 3\n",
-    "error_matrix = [\n",
-    "   [0.4, 0.4, 0.4, 0.4],\n",
-    "   [0.55, 0.4, 0.4, 0.4],\n",
-    "   [0.4, 0.5, 0.52, 0.55]\n",
-    "]\n",
-    "n_samples = 1000\n",
-    "n_features = 3\n",
-    "class_weights = [0.333, 0.333, 0.333,]\n",
-    "random_state = np.random.RandomState(42)\n",
-    "complementarity = 0.3\n",
-    "redundancy = 0.2\n",
-    "mutual_error = 0.1"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "Then, let's configure the four monoview generators that will build our multiview dataset :"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 6,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "sub_problem_type = [\"make_classification\", \n",
-    "                   \"make_gaussian_quantiles\", \n",
-    "                   \"make_classification\", \n",
-    "                   \"make_gaussian_quantiles\"]\n",
-    "sub_problem_configuration = [\n",
-    "    {\"n_informative\":n_features, \n",
-    "     \"n_redundant\":0,\n",
-    "     \"n_repeated\":0,\n",
-    "    \"class_sep\": 10, \n",
-    "    \"hypercube\":True},\n",
-    "    \n",
-    "    {\"mean\": [1.0 for _ in range(n_features)], \n",
-    "    \"cov\":1.0}, \n",
-    "    \n",
-    "    {\"n_informative\":n_features, \n",
-    "     \"n_redundant\":0,\n",
-    "     \"n_repeated\":0,\n",
-    "    \"class_sep\": 10, \n",
-    "    \"hypercube\":False},\n",
-    "    \n",
-    "    {\"mean\": None, \n",
-    "    \"cov\":10.0}, \n",
+   "outputs": [
+    {
+     "data": {
+      "application/vnd.plotly.v1+json": {
+       "config": {
+        "plotlyServerURL": "https://plot.ly"
+       },
+       "data": [
+        {
+         "marker": {
+          "size": 1
+         },
+         "mode": "markers",
+         "name": "Class 1",
+         "type": "scatter3d",
+         "x": [
+          0.08743682699611054,
+          0.4581350616348624,
+          -0.12895819644417952,
+          0.3382626667567396,
+          -0.05320333792102592,
+          0.23779883024525264,
+          0.01245786638883486,
+          -0.0146981685770605,
+          -0.24743513125449548,
+          0.25565001271710075,
+          0.5429099477107895,
+          0.04133889847857819,
+          -0.36536407160450113,
+          0.09929397305928331,
+          -0.18039323619329795,
+          -0.06652437530639116,
+          -0.11362692820758521,
+          -0.35263493786739325,
+          -0.24106414227583722,
+          0.03508096590020891,
+          0.09456026101912644,
+          0.10485278873094898,
+          -0.27635660517528465,
+          -0.5167138051564558,
+          -0.5454304444101401,
+          0.23384468790118773,
+          -0.09075505493337754,
+          -0.39621703648755474,
+          0.2177062748588822,
+          0.4320800821514707,
+          -0.20825239442617616,
+          -0.09169940484576192,
+          -0.08491147125624786,
+          0.5939228786978271,
+          -0.7826272967083437,
+          0.5099580518657192,
+          0.3800321767616834,
+          0.5116074613320786,
+          -0.12599063587208548,
+          -0.009809147542262888,
+          -0.0336674200886489,
+          0.09603686307529397,
+          -0.0754212567583296,
+          0.05128736079101464,
+          -0.10395495542264056,
+          0.06572596346198009,
+          0.1656123941143921,
+          0.05700303687685592,
+          0.30415308294814003,
+          -0.35867153566428034,
+          -0.0023855767510027044,
+          0.1685981895007116,
+          -0.04156334264931132,
+          0.19196158638984015,
+          -0.03895415204843081,
+          -0.30737208643321234,
+          -0.2113113660750466,
+          0.17867198073943624,
+          -0.6579645966169086,
+          -0.15020824407066038,
+          0.06330282001699483,
+          0.3444827764673284,
+          -0.4639803756141403,
+          -0.17682592240261824,
+          -0.06318875394835059,
+          -0.47302977777307437,
+          -0.8667880026378711,
+          0.1578622225413036,
+          0.14368850837851913,
+          0.24241652036583033,
+          -0.03833187800409927,
+          0.7553674332513021,
+          -0.1074051363130279,
+          -0.2654213022481422,
+          -0.25714546355778395,
+          0.017655456432648715,
+          -0.17062243874127792,
+          0.5614038291743918,
+          -0.30278430438015774,
+          0.27804279342667604,
+          0.13331146023174528,
+          -0.5018550363826086,
+          0.40355801489928295,
+          0.3213378272937398,
+          -0.40339098939525825,
+          -0.24298518448897935,
+          -0.11521236386656218,
+          -0.2715080633231496,
+          -0.036210597650533374,
+          0.19396354352858006,
+          0.2710680524564673,
+          0.26317649202992405,
+          0.23584648334932698,
+          -0.1005095671769134,
+          0.0758513479382555,
+          0.031467791091707914,
+          -0.5676408500226219,
+          0.31244985130760655,
+          -0.09724080611869529,
+          0.0011862158364609073,
+          -0.04901066143346279,
+          0.8838244344536389,
+          -0.36802277792846627,
+          -0.0024998780662103073,
+          -0.02363149013679643,
+          -0.08068839198825839,
+          -0.44818898525167894,
+          -0.15397633952107917,
+          0.21139017811654548,
+          -0.07646680771932686,
+          -0.1370039393235729,
+          0.06419404734428907,
+          -0.1557151178933629,
+          -0.32559782240783736,
+          -0.5114843005643176,
+          0.04894508459820361,
+          0.5630652678829648,
+          -0.15365491848806628,
+          -0.18279465643516665,
+          0.547735901630576,
+          -0.22037002801730765,
+          -0.6740369653693086,
+          -0.034564453258935084,
+          -0.16677563392157757,
+          0.04815740926323424,
+          0.4655780220164405,
+          0.11649181342736736,
+          -0.4689513132907718,
+          0.9976113910814924,
+          0.25291343026261726,
+          0.10238451290850609,
+          -0.029274632448308316,
+          -0.5817590352918233,
+          0.04202456367216023,
+          0.20181250718366608,
+          -0.10844067481184287,
+          0.0653975079326586,
+          0.24906422459068592,
+          0.03658996533286843,
+          0.1702067101077598,
+          0.25502673724950076,
+          0.0021714942867828426,
+          0.13135282677589857,
+          -0.5445924266680957,
+          0.2491046581831009,
+          -0.2021554675446573,
+          -0.1067667340547332,
+          0.4273552125982278,
+          -0.023628476806460994,
+          0.5497216837475845,
+          -0.8169984225199447,
+          0.17034090894670362,
+          0.11670328716993975,
+          0.7144638286633385,
+          -0.5636720048752063,
+          -0.0033000530897997365,
+          -0.10529235402430316,
+          0.11995309987707552,
+          -0.40578791232525546,
+          0.5184665805309845,
+          -0.5717495859775403,
+          0.1276572314397721,
+          0.17127570732224012,
+          0.1522074382027751,
+          0.04071066731293012,
+          -0.1137014820574955,
+          0.543812544877208,
+          -0.42948257755150804,
+          0.022633513265120028,
+          -0.02650381501976932,
+          0.01102827542927618,
+          0.053735972537890246,
+          -0.0907733276226059,
+          0.29568628703556077,
+          0.5466012655185266,
+          -0.4774113836798778,
+          -1.1708286445586995,
+          0.1337480190044596,
+          0.03770484882754321,
+          -0.1410455691070038,
+          0.03905088003155989,
+          0.7501431479103013,
+          0.35242295631199916,
+          -0.19835925812261657,
+          -0.14720393784368543,
+          0.6809014567970887,
+          0.20329285560247057,
+          0.39307147362217637,
+          -0.2786664855062308,
+          0.38266415729614817,
+          0.17808921994608432,
+          -0.20851716156968136,
+          0.4570676518546637,
+          -0.16113811789420435,
+          0.3598212031543081,
+          0.8200821116324692,
+          0.29206654602284493,
+          -0.11544933164440391,
+          -0.5791472274212344,
+          -0.34029587939696926,
+          0.1561076266444698,
+          -0.2745535339608163,
+          0.12693388940219116,
+          0.3766856685169001,
+          -0.6094555917342467,
+          0.31227561461951964,
+          0.4894608009194083,
+          0.33675012069475885,
+          0.4801994130343811,
+          0.48357994796201065,
+          -0.15395250547364903,
+          0.07891651822725877,
+          -0.7031435881211272,
+          -0.5038091997974484,
+          0.1800126711348176,
+          0.26575713451987515,
+          0.037929463309552054,
+          -0.009788539879623977,
+          0.2546750838242043,
+          -0.061019179114811944,
+          0.08845521922451548,
+          -0.03551498839424622,
+          -0.00399404176774521,
+          0.24916331890195859,
+          -0.33801279551088237,
+          -0.27616539013155145,
+          0.16893262410572274,
+          -0.29517524722024446,
+          0.024220188304765855,
+          -0.4246845960194442,
+          -0.3977575836439222,
+          0.018321636450617195,
+          1.1552928177247312,
+          0.48465711062987393,
+          -0.07535815343647397,
+          -0.1991979301485411,
+          0.24429047619305566,
+          0.4553607074396768,
+          -0.5434643653504652,
+          -0.3035128778583106,
+          -0.018906100986303225,
+          0.002752212378129916,
+          0.1232884936385088,
+          0.9569409635135125,
+          -0.3320301057269675,
+          0.3100688015342321,
+          -0.0909614612078122,
+          0.009532497522348464,
+          -0.08460670936204946,
+          -0.2653432613751306,
+          -0.40365293269378283,
+          0.5815951797905332,
+          0.10354201661756926,
+          0.760846552489564,
+          -0.22635965369427302,
+          -0.08958802501568741,
+          -0.0836746849055354,
+          -0.21230594453043605,
+          -0.1631304332632857,
+          0.14476988169957222,
+          -0.09559891620142366,
+          0.07615669377585899,
+          -0.0216415365137992,
+          -0.004305036301269596,
+          0.8683409040443479,
+          0.5960645392778128,
+          -0.21987437423130549,
+          0.3017836387480411,
+          -0.10673763966379794,
+          0.6098697729014443,
+          0.13733903064025932,
+          0.32551047208208694,
+          0.1269678446515714,
+          -0.22697058192511116,
+          0.2808796776398314,
+          -0.07137913556325759,
+          -0.0030467598209112778,
+          -0.28818537103945036,
+          -0.27719220085036167,
+          -0.5242909561220664,
+          0.40137844108978715,
+          0.48858410943663505,
+          0.2997851610619037,
+          -0.0889494287575386,
+          0.3189427242722061,
+          0.004081912097075895,
+          -0.14775945765239135,
+          0.12001187135750065,
+          -0.1707652285550468,
+          0.3103181418258135,
+          0.6651565032757064,
+          -0.4251037228594194,
+          0.005478363616978343,
+          -0.2534678745554075,
+          0.04079157456385126,
+          0.38569016435918824,
+          -0.4236983947233812,
+          -0.17309801873590375,
+          0.012079059518173134,
+          0.06263039924760075
+         ],
+         "y": [
+          0.024030274393470222,
+          -0.20481481254265138,
+          0.5154890932011171,
+          0.45663573910620925,
+          -0.2914756708448049,
+          0.0013604483278785598,
+          0.009419259241529294,
+          0.17941853748510794,
+          -0.10015085000941631,
+          -0.7389494782040444,
+          0.23408965425512626,
+          -0.009827975987570299,
+          0.05889138158567134,
+          -0.20044892219130106,
+          0.22790607737113908,
+          -0.09785415615743433,
+          0.244989683605442,
+          -0.24407583097501956,
+          1.1766200255814139,
+          0.5866748881074595,
+          -0.47269419313357386,
+          -0.2235588901184627,
+          -0.15610565125102138,
+          -0.15720913566185798,
+          -0.10221810893220551,
+          -0.09606778287468695,
+          0.0026010685345593796,
+          0.05615712554322661,
+          0.06481507635423434,
+          0.20865703956691123,
+          -0.3780783552387373,
+          0.5694066711385081,
+          -0.08628897172423455,
+          -0.5335551739706188,
+          0.8141614637760437,
+          -0.4062445519710013,
+          0.3099433363663511,
+          0.35165560252887756,
+          0.011247726209581276,
+          -0.020640603786213227,
+          0.5867743269428474,
+          0.2817950466996646,
+          -0.019898810344938178,
+          0.20892949318156973,
+          0.055443392471376564,
+          -0.14549451912030376,
+          0.5688607866265104,
+          0.6559116045121471,
+          0.7001795548657092,
+          -0.4428838405667423,
+          -0.3014307610271552,
+          0.10219608886124831,
+          0.029562957124469654,
+          0.8009398680501107,
+          0.00945548743988927,
+          -0.15691935046792488,
+          0.7129622901707173,
+          0.025435692061100586,
+          -0.3320476954084059,
+          -0.5053459617479477,
+          0.15053246735183856,
+          0.25316799772420306,
+          -0.6374892207476878,
+          0.7129630156667487,
+          -0.9238901925461134,
+          0.34694766905051927,
+          0.9001589198634514,
+          0.12022129195203356,
+          -0.20919800893668739,
+          -0.01034955602253444,
+          -0.059385032392043055,
+          0.2833211629927308,
+          -0.5375623624778497,
+          -0.0957628669453153,
+          0.1521289175868486,
+          0.008759024449749431,
+          0.19807836400967424,
+          0.4509494087047694,
+          0.30944832322249116,
+          0.23984182134247478,
+          0.4922578067379793,
+          -0.6683745465285472,
+          0.411119114612958,
+          0.4462173959206669,
+          -0.766825319323846,
+          0.48661340257798597,
+          -0.3874116573885433,
+          -0.4434059575383025,
+          -0.14115131197323957,
+          -0.32545514646060986,
+          -0.5812049621065579,
+          -0.27496895023883383,
+          -0.135426720235926,
+          0.5701334081670069,
+          -0.0724800166505906,
+          0.3930348498361472,
+          0.21881615832309811,
+          -0.31225332648443277,
+          -0.4045510494907644,
+          0.017241430768308495,
+          0.0812497279838543,
+          -0.23823999227785264,
+          -0.19971299395039396,
+          -0.0012587776659432226,
+          0.15883267139358112,
+          0.18618703064294928,
+          0.2825782003890061,
+          -0.10818012791876074,
+          -0.21313872871761816,
+          -0.18096505125155285,
+          0.24469636646988768,
+          -0.16671851718018726,
+          0.1514161474612219,
+          0.15730804945809393,
+          0.13884986753428882,
+          0.47095652101759994,
+          -0.07010776058710456,
+          -0.029299661588986222,
+          -0.17269714258802119,
+          0.43963976909670205,
+          0.09420001736621383,
+          0.588453844185023,
+          0.9042069168014623,
+          -0.6409595891662467,
+          0.08670949447321222,
+          0.2371479746639472,
+          0.19542321530765294,
+          -0.5113972523539094,
+          -0.100205031683532,
+          0.7033914794413673,
+          0.2692322668462667,
+          0.20567270394097562,
+          -0.3689628219589229,
+          -0.11193598429496884,
+          -0.09197962556706685,
+          0.1884240111439847,
+          0.44959310860009954,
+          0.14531088787410443,
+          0.3829229220073395,
+          0.1648292552564376,
+          -0.28233406481525464,
+          0.07917002341753605,
+          0.7516974624940045,
+          0.21471026510113697,
+          0.014498646480954147,
+          -1.1785651514622584,
+          0.2679437581362835,
+          0.09564652365063843,
+          -0.05363235018280962,
+          0.08738475386914413,
+          -0.16190019547213017,
+          -0.12711466704665134,
+          -0.4232420940372395,
+          0.36399110189693334,
+          -0.029957183109911637,
+          -0.7455987420099419,
+          0.07572775135574505,
+          -0.06875649463351532,
+          0.42096564130643604,
+          -0.6894678715415907,
+          -0.40313988799882955,
+          0.12489641119707744,
+          -0.17874068822660302,
+          0.04104161886275064,
+          0.7157148466842942,
+          0.028056806501905722,
+          -0.2257535093406647,
+          -0.18505551424775057,
+          0.055625399796830545,
+          0.3553601594072455,
+          0.09204434966803907,
+          -0.1567659681505445,
+          -0.6381607580793496,
+          -0.24207898814094544,
+          -0.6124604139825742,
+          0.37531547070156124,
+          -0.3430366222475158,
+          -0.5086556039113658,
+          0.015337701290940954,
+          -0.373346153979183,
+          -0.15143469602636228,
+          0.16129798581850213,
+          0.35349569236250605,
+          0.24956528657699842,
+          0.39321900823099154,
+          -0.23348864543346556,
+          -0.015733477379256452,
+          -0.5959130983720631,
+          0.7551934164493869,
+          -0.1106302309438035,
+          -0.06523834393943127,
+          -0.18602723377402458,
+          0.03369434022880445,
+          0.4462685860323433,
+          0.4037429446895101,
+          0.42485760186719784,
+          0.28201809320651144,
+          0.14960542741531543,
+          -0.36227188023335133,
+          0.16058523606603878,
+          -0.4201628126974589,
+          0.6130290196592184,
+          -0.1713729511619902,
+          -0.4104473875922761,
+          0.21980433925334003,
+          0.025766286623246887,
+          0.319387791489449,
+          0.22810342944140094,
+          -0.02912322839907779,
+          0.2589804884609572,
+          0.7757561448266387,
+          0.36015865675840114,
+          -0.5375197130116075,
+          0.16610808624781823,
+          -0.35509980263337443,
+          -0.4840843892089828,
+          -0.055971490832909435,
+          0.05169388927762913,
+          0.14858417107683822,
+          -0.16523422755129819,
+          0.4181732976784142,
+          0.23778818585865205,
+          -0.02725495940627688,
+          0.5123641940006771,
+          -0.02801103437432972,
+          0.15393231048697054,
+          -0.0017815804996539036,
+          0.10827620752502891,
+          0.2433501933508516,
+          -0.227015068609531,
+          -0.5282358645103888,
+          -0.08919284380540594,
+          -0.24365521147945454,
+          -0.9031101858226822,
+          -0.01433045753770057,
+          0.7000849171356595,
+          -0.0067584683869577914,
+          -0.09980796025218688,
+          0.476458509660889,
+          -0.0774317762777069,
+          -0.3600222837232362,
+          0.00247110710792595,
+          -0.22799510874421008,
+          -0.26138073931652117,
+          0.010609259527801186,
+          -0.031534722915785796,
+          -0.4212655064788363,
+          0.018668633108776138,
+          -0.33964707707542047,
+          0.20029803819830605,
+          -0.21529139578901008,
+          0.5853099451920536,
+          0.017060175459226442,
+          -0.5992390017582969,
+          -0.07314023409962433,
+          0.019380401384060834,
+          -0.4212336892246192,
+          0.8840285327883484,
+          -0.45390380826303317,
+          -0.14496467544555403,
+          -0.0018489858065459006,
+          -0.4205562401728643,
+          -0.06262057681565436,
+          -0.023949107865138555,
+          -0.26448632733790783,
+          -0.4045737002601406,
+          -0.3666544961948519,
+          -0.12325924615553216,
+          0.5044338728165287,
+          -0.811187446671843,
+          0.04849511178871966,
+          0.5601205990384425,
+          0.2413781223676268,
+          0.011827394728702449,
+          0.33672295980872635,
+          0.20673499762347722,
+          0.013896746870550682,
+          0.385218068141631,
+          0.12301611015086902,
+          0.8736714875991485,
+          -0.5715545233362032,
+          -0.15318396247291102,
+          0.5512742963315527,
+          0.3500685370274523,
+          -0.1257912063016782,
+          0.5513497210405296,
+          0.4967362282450622,
+          0.13971192372604282,
+          -0.013147954013869473,
+          0.11608054771475705,
+          -0.20189969224508145,
+          0.7485427209269572,
+          -0.5692800344248796,
+          -0.5610766806652817,
+          -0.058100667822399706,
+          0.08006736296068728,
+          0.19694531734307644,
+          -0.10338368737061765,
+          0.025493187503186843,
+          -0.12219483919261513
+         ],
+         "z": [
+          -0.14346595518692573,
+          0.31916326193753336,
+          -0.2395813634502514,
+          -0.5633231856612417,
+          0.13941506593006525,
+          -0.2485683851101677,
+          -0.3299044800872393,
+          0.13581427316070874,
+          0.07033747091810603,
+          -0.02439539386484955,
+          -0.44920935732681727,
+          0.020868627991033215,
+          -0.04537152812658108,
+          0.16752640304320174,
+          0.015543289869336755,
+          0.066158853506925,
+          0.1582678419957516,
+          0.5245474442377908,
+          -0.38180060302493996,
+          -0.18815094246918823,
+          -0.23503461196330314,
+          -0.2436419470099769,
+          0.05241288296969976,
+          0.5647385260044137,
+          0.18968703529865322,
+          -0.18149135816731396,
+          -0.17432599129335985,
+          -0.21004373685844652,
+          -0.254976214757026,
+          0.1346466143776785,
+          0.01326020216207138,
+          0.2154011268274435,
+          -0.02775486531286654,
+          0.20533656191665275,
+          -0.6935551384178871,
+          0.5524404951342299,
+          0.2804891816804832,
+          0.44172768344573443,
+          -0.15524855448594663,
+          -0.0189524367019667,
+          0.43267316165165554,
+          0.1645255824932687,
+          -0.06253538427373863,
+          0.1027819708366085,
+          -0.1143354017973785,
+          -0.5157882278859892,
+          0.3190413090860487,
+          0.38700285090661046,
+          -0.05891573252672233,
+          0.44696089330686695,
+          0.31840690120633464,
+          -0.2454156266596133,
+          -0.010173866908519822,
+          -0.07063123933568663,
+          -0.4454052820516912,
+          0.15445501710087417,
+          0.412629341867517,
+          -0.1476735117504279,
+          -0.1276309526200799,
+          0.26060600517041593,
+          -0.10043983246971089,
+          0.21266740621494337,
+          0.02956103199007224,
+          0.05094713337345598,
+          0.18431249029714403,
+          0.1281277130662159,
+          0.8328109871080362,
+          0.10942920576721957,
+          -0.2849522894833007,
+          -0.41638271450726383,
+          -0.03430359410834112,
+          -0.06863621267612399,
+          0.5384373363964203,
+          0.419591262239084,
+          -0.1648854361940219,
+          0.05231102854912479,
+          -0.04660436031548608,
+          0.03450557997420659,
+          -0.059274633373433396,
+          0.06668341144530886,
+          -0.401310875224589,
+          -0.11752051166201308,
+          -0.018184745091849433,
+          0.22312536569245223,
+          -0.269854432703661,
+          -0.09503841923596293,
+          -0.05662238156224854,
+          -0.46861841289259293,
+          -0.39792631010146823,
+          0.09557200391150504,
+          -0.6001951122840335,
+          -0.16102125379999938,
+          0.09689565976989396,
+          0.16737450232712153,
+          0.3678448262686584,
+          -0.12658226078841242,
+          -0.1804104370648109,
+          0.08932237142366257,
+          -0.38053348563913936,
+          -0.09922625936846867,
+          0.198340141334318,
+          0.05530245360737768,
+          0.26304730085426375,
+          -0.0007301634836985014,
+          0.08439761208087576,
+          -0.03021531250138055,
+          -0.024544146638161762,
+          -0.3203077784403962,
+          -0.04918615468954082,
+          0.4610590037193097,
+          -0.5774151395986323,
+          -0.3834853130955015,
+          0.2474966989459828,
+          -0.09854993687691249,
+          -0.2832600489303715,
+          -0.1536779029238538,
+          -0.45597501663101164,
+          -0.025317100303891168,
+          0.09743896905475952,
+          -0.19774563979545287,
+          -0.10541991820793563,
+          0.17183874183652695,
+          0.15118435882635017,
+          0.6292799092453608,
+          -0.2167979908742533,
+          -0.01899963124366273,
+          0.27046398004514566,
+          -0.34347703660756096,
+          0.09304879313435412,
+          -0.13457123026390963,
+          -0.41201342836723076,
+          -0.3317376547546642,
+          0.07352826225139171,
+          0.06637021811545835,
+          0.6208941024249481,
+          0.06968213408660309,
+          -0.5117600974086376,
+          -0.34832655218626174,
+          -0.0006792719191349972,
+          -0.003483587479389374,
+          -0.10251245638150003,
+          -0.6604619069138391,
+          -0.2718782892927966,
+          -0.29690439852901535,
+          0.8700626789166175,
+          0.37848916190450743,
+          0.2823280433894189,
+          -0.028407400234683352,
+          -0.0422391707725665,
+          0.6472823523397265,
+          -0.30209761609565494,
+          -0.11658597354322628,
+          0.5238076041095266,
+          0.3150848044841279,
+          -0.055791208393619646,
+          -0.09565588747568025,
+          -0.5364786174470199,
+          -0.008757735910167392,
+          -0.5630166593223371,
+          -0.23319043942531228,
+          -0.16236915856699558,
+          -0.12232768710224463,
+          0.12397912164003505,
+          0.0459759511711643,
+          0.1308645919741658,
+          -0.8689130551035816,
+          -0.21282445327636199,
+          -0.6234866549600668,
+          0.23470989337839193,
+          0.4101483035918654,
+          0.008435136547650011,
+          0.21410318657903468,
+          -0.40452630960989666,
+          0.19458185872904224,
+          0.2538024800561111,
+          -0.257974857404743,
+          0.4831999037798975,
+          -0.044825594106043413,
+          -0.0714521980369617,
+          0.2838434662257461,
+          -0.1459897914299317,
+          -0.1891834878709287,
+          -0.1160360092188391,
+          0.33054114289875136,
+          -0.1954390778662009,
+          0.011575280320248784,
+          0.30345738846978904,
+          0.15645858240963245,
+          -0.0952460817718065,
+          0.005134921212497428,
+          0.12090493750092343,
+          -0.2067805249856682,
+          0.5434908626576107,
+          0.23044291388276805,
+          0.4239229636322123,
+          0.44143842755305623,
+          0.3980869637755915,
+          0.17815246249986685,
+          -0.44284478783070064,
+          0.3519948612418338,
+          0.6127091717010679,
+          -0.46457568353908113,
+          0.028290130902529038,
+          -0.720197839430062,
+          0.41400442356857414,
+          0.06791607973788569,
+          0.08386550091690911,
+          0.4084212231897008,
+          0.16037375228420503,
+          0.5245550602819922,
+          0.48348415609895323,
+          0.34092955622918625,
+          0.135211549044866,
+          0.5901629477349427,
+          0.40652614745467214,
+          -0.010395540988469872,
+          -0.14239893836086104,
+          0.013034850202885957,
+          -0.463125855638601,
+          -0.17136905883564982,
+          0.23594838710482477,
+          -0.24207383625147577,
+          0.014789574258712773,
+          0.2068844376641459,
+          0.16428643042486185,
+          -0.41764545627509286,
+          -0.1629227576964334,
+          0.24815983412338513,
+          0.931952007199813,
+          0.24031398958498768,
+          0.05153080889564323,
+          -0.08193580590942179,
+          0.2630416267216055,
+          0.21660923582999123,
+          -0.9017459039811778,
+          0.1642801772514907,
+          0.441355827903407,
+          -0.4257289566732697,
+          -0.36858833415842746,
+          -0.005691504955974647,
+          -0.07364566068226143,
+          0.0019713828039142406,
+          0.07820045304579347,
+          -0.05433022607518368,
+          0.22408619410025504,
+          0.25954197353098707,
+          0.40934393077108905,
+          0.002366881969142335,
+          0.6979713037527513,
+          0.8106579862952943,
+          0.40663104797997035,
+          0.5479987227837158,
+          -0.014018462638775642,
+          -0.3995412500504464,
+          -0.15318227382641664,
+          -0.07714723239838403,
+          0.0041231471402906564,
+          0.5373140111003583,
+          -0.10778655992197281,
+          -0.08801104964004021,
+          -0.064508939620368,
+          0.19256843962700754,
+          -0.06468469704389665,
+          0.11115096406384958,
+          0.30738924003763335,
+          -0.5278266618579026,
+          -0.17472963504359998,
+          0.15666369713955774,
+          -0.04284183018092119,
+          -0.6355707478697561,
+          0.6029541034762453,
+          0.41661496168379175,
+          0.3450990295097888,
+          0.4655757295785699,
+          0.5356456003504699,
+          0.4909424993445787,
+          -0.06199631366964228,
+          0.7373084317463032,
+          -0.0932540541683687,
+          0.48197725040266987,
+          -0.08872750488219643,
+          0.09667858176825685,
+          -0.061286851069707084,
+          0.29723707879529226,
+          0.09400795030139325,
+          -0.10707809911372355,
+          -0.5598305044960786,
+          -0.31165917936827975,
+          0.2645688388666428,
+          0.21396768079122752,
+          -0.35995115727592775,
+          -0.3558288502118506,
+          -0.21210523053594055,
+          -0.27100034588099164,
+          0.304791880099304,
+          -0.6504579746626518,
+          0.47163931241350976,
+          0.20713351608314062,
+          -0.012901493157158864,
+          -0.005847499349883443
+         ]
+        },
+        {
+         "marker": {
+          "size": 1
+         },
+         "mode": "markers",
+         "name": "Class 2",
+         "type": "scatter3d",
+         "x": [
+          0.47249282575808427,
+          -1.1381053012405293,
+          -0.07292920713905543,
+          -0.8895025174719504,
+          0.16373881202208487,
+          0.38536784196824925,
+          -0.014289469469173963,
+          0.13594030398855442,
+          0.9914906979267414,
+          -0.34146729979690477,
+          0.5164025840970627,
+          -0.26944258231360974,
+          -0.20871719742219408,
+          0.6878932230747515,
+          1.020863790974766,
+          -0.576549817139427,
+          0.08757862276956853,
+          0.8459925315243536,
+          -1.2131526724639607,
+          0.8702191054775358,
+          -0.35377102448568437,
+          -1.138815951824953,
+          0.3750917407114109,
+          0.7871750927069537,
+          0.5994031497509498,
+          0.4939757949514788,
+          0.7562672526171081,
+          -0.39469472403519823,
+          0.9476262336890324,
+          -0.01157401355103366,
+          -0.8641799000853246,
+          -0.758953318598221,
+          -0.2704187549754157,
+          0.40941995073383547,
+          -0.18093704839049213,
+          -0.06041394133390906,
+          0.1689189557218902,
+          0.7455220930102265,
+          -0.9622978890601777,
+          0.08670782267436453,
+          0.5484963589775866,
+          0.13309894021622434,
+          0.2033241715246195,
+          -0.6961826050174509,
+          -0.3101227707430548,
+          -0.3492339168023288,
+          0.8073193645453193,
+          0.19430104936100293,
+          0.03507106036759394,
+          0.8068885131449998,
+          0.3837438661584657,
+          -0.41119985327497166,
+          0.4451899665938782,
+          -0.05357268901206917,
+          0.44767791277253044,
+          1.1089286250133064,
+          0.5004473137416503,
+          -0.7946508179961635,
+          -0.8815671695159074,
+          -0.7971498210518343,
+          0.029960233122858143,
+          1.033506295298601,
+          -0.06581133182769415,
+          0.09259463093176783,
+          -0.6174516433900944,
+          0.7075800357498016,
+          0.026129085380891526,
+          0.6127423156777898,
+          0.31587774521340817,
+          -0.45875823088187284,
+          0.04438302347552389,
+          0.18998154409533727,
+          0.2446309252721709,
+          0.0981092571614242,
+          -0.6091946757835417,
+          -0.7251330728792125,
+          -0.7822699045658406,
+          -0.4930855996326327,
+          0.5431897042226075,
+          -0.4468215957734876,
+          0.10383272205629625,
+          0.506815394227983,
+          -0.6323286664218015,
+          1.0308977178507444,
+          -0.8908374557010735,
+          0.09373679891018846,
+          -0.22773964725260726,
+          -0.3253815863263911,
+          -0.5139758604820781,
+          -0.20462641415226868,
+          -0.2681450991316598,
+          0.7019607139727028,
+          -0.030626343969307034,
+          0.6985040179921,
+          -0.5408291876153075,
+          -0.01925945332589987,
+          -0.10960476547559697,
+          0.7571692182224679,
+          1.0305830344727873,
+          -0.4623280225423736,
+          1.082357651244212,
+          0.6634485501457742,
+          0.6559518764092552,
+          -0.9974359507732455,
+          -0.4978119951791458,
+          0.31142700364602177,
+          0.482835889936058,
+          0.3259361480150542,
+          -0.5938537632416254,
+          -0.36887811260821185,
+          0.6928527319240406,
+          0.7635171026744837,
+          0.965164630433933,
+          -0.41878588589296456,
+          -0.4601170898476761,
+          0.5150558329560295,
+          0.8871718874754665,
+          0.6963898001453729,
+          -0.8067202240501984,
+          0.4495950883283418,
+          -0.5834724209473204,
+          -0.2692871243755407,
+          0.22546517983895273,
+          0.5890273420097282,
+          0.8810303290433139,
+          -0.16152922612848794,
+          -0.5519736698569611,
+          -0.2929847906157687,
+          -0.06973187926850445,
+          0.6687890905083281,
+          -1.2170644642105406,
+          -0.6229455549209854,
+          0.4364403257854201,
+          -0.882906484356803,
+          -0.2256816176396592,
+          -0.16642578361078778,
+          -0.6160723185877988,
+          -0.44383442896136227,
+          -0.3239411777433807,
+          0.8045590146432816,
+          0.3114120633087906,
+          -0.7868983101475282,
+          0.5108011458313025,
+          0.26459280527767876,
+          0.08668758993350736,
+          0.1445721729219285,
+          -0.20419611928400244,
+          -0.908794555354069,
+          0.556678658712834,
+          0.6774174349653792,
+          0.5892071713778746,
+          -0.45896192753989173,
+          -0.3343078470834656,
+          0.5206494197132606,
+          -0.4169968572892964,
+          -0.6640020669831562,
+          -0.5226191885227301,
+          -0.8080790521551727,
+          0.5597784820953312,
+          -0.6107719725589641,
+          0.09662259293961764,
+          -0.8632183102977498,
+          -0.4366605078228842,
+          -0.4261081309211542,
+          -0.3051682353743843,
+          0.7268244694645811,
+          -0.06795739790592567,
+          -1.2910782489732455,
+          -1.031813473892792,
+          0.8759191286921113,
+          0.5750929997888601,
+          0.6380084615439311,
+          -0.4586652043692104,
+          -0.6064201763355356,
+          0.6818638458798525,
+          -0.010902723670402587,
+          -0.7502732335221439,
+          -0.46291049436896714,
+          -0.08902890726563398,
+          -0.17238415635010945,
+          -0.019087051643018882,
+          0.46339511756983487,
+          -0.14200215424276244,
+          -0.4236553429699357,
+          -0.6056715649573208,
+          -0.29019900894659845,
+          -0.6526764871198386,
+          0.746651147911165,
+          0.06104104005992809,
+          0.971572511709606,
+          0.5446253981675381,
+          -0.3843377593714223,
+          -0.7165054552954148,
+          0.750981304517318,
+          0.16783072650814865,
+          -0.5984274261227932,
+          0.403592609708356,
+          -0.12260831622000277,
+          -0.40699924755220634,
+          -0.27815243704634973,
+          0.5894079426691243,
+          0.2877626985254666,
+          -0.5479478391960632,
+          -0.09353145924555666,
+          1.4786601113860536,
+          -0.47023237322779415,
+          1.1195606934307683,
+          -0.3840071692062156,
+          0.6393104808135375,
+          -1.003860839216082,
+          0.2628418105129101,
+          0.3066209462176872,
+          0.6652541786119935,
+          0.3574430278737025,
+          -1.1150695496764291,
+          -0.9881827121177983,
+          0.2910207589155915,
+          0.13938902907337564,
+          -0.3663261518029405,
+          -0.7782072891647738,
+          -0.1760735476423313,
+          0.21321234039186912,
+          0.16850173284282297,
+          -0.333988221049532,
+          1.0323808881145435,
+          -0.18836398934010062,
+          0.34615489856864345,
+          -0.6617203703240607,
+          0.733708206417087,
+          -0.1607104107623535,
+          0.040150381340251055,
+          -0.23920502308303346,
+          1.1855771545775293,
+          -0.1714150170206765,
+          -0.13263776486945741,
+          -0.137849224526069,
+          -0.18299649783881544,
+          -0.4297801011745003,
+          -0.6239458562176188,
+          0.5478105916631938,
+          -0.6243696772282188,
+          0.004407426373357372,
+          0.9137585404456476,
+          1.2681545149331401,
+          0.307030611594145,
+          -0.5930962986866377,
+          -0.3296952679605047,
+          -0.516145169833716,
+          -0.038810325489665384,
+          0.14660679146841957,
+          1.1230767692416102,
+          0.3369761126478938,
+          0.10733996492567154,
+          0.9467245115500774,
+          0.4327780023011763,
+          -0.2186136398549745,
+          -0.42399692908829273,
+          -1.038859935845713,
+          -1.0551815932280841,
+          -0.278817834256949,
+          0.18688040543634477,
+          -0.31990046938461936,
+          -0.35835531358705563,
+          0.6257306648559551,
+          0.12392472834612632,
+          -0.9515907965467637,
+          0.22743851933990264,
+          -0.1949241811301307,
+          -0.11822877503316558,
+          0.5587830450244448,
+          0.3196263621157465,
+          0.342840591640064,
+          1.0485608503262278,
+          0.7130679953903937,
+          -0.8460051715328266,
+          0.5243656588069086,
+          -0.03906091093104975,
+          0.34736913260029717,
+          -0.9384160491532503,
+          0.4533509093249123,
+          0.09426170368273404,
+          -0.7379453861508966,
+          -0.6624378057631077,
+          0.7611467308447611,
+          -0.33488411177150085,
+          0.0875586753640292,
+          0.026192658504304956,
+          0.7798249789034488,
+          0.9015648031211624,
+          -0.4479631476604365,
+          0.008220065039873183,
+          0.09484150133987088,
+          -0.5606745622781534,
+          -0.4558495178916209,
+          0.4699734917572499,
+          -0.20844439263427866,
+          0.4237985905152566,
+          -0.528298750873141,
+          -0.29763952143689465,
+          -1.13848108332366
+         ],
+         "y": [
+          0.0035770483167975324,
+          -0.34328237577132775,
+          -0.19652003636205106,
+          0.17275855522270714,
+          0.5946296344162334,
+          0.9235549159086711,
+          -0.09926111484866879,
+          -0.5749995382840007,
+          -0.7631278230327665,
+          0.6488418581431761,
+          0.2564785526311366,
+          -0.940279773900247,
+          0.4483767634171988,
+          0.19441605230646475,
+          0.4259909194270491,
+          -0.10515743217676754,
+          1.0166713220091872,
+          -0.43957891210468625,
+          0.16148081099973172,
+          0.44519533273570494,
+          0.6011284300526203,
+          -0.2849756685751266,
+          0.5612876598958833,
+          -0.3103610327011935,
+          -0.516480575834649,
+          1.1150845265716645,
+          0.3406073657737472,
+          0.9447705629574248,
+          0.5107245456947895,
+          0.613788327452403,
+          0.09528836069912695,
+          -0.6035830075675894,
+          0.7707381973130922,
+          -0.9349181587429971,
+          -0.7040319775375162,
+          -1.1126884963803205,
+          -0.5638230049961518,
+          0.4349174887778694,
+          0.7752799419976699,
+          -0.305802566553826,
+          -0.19976095654142967,
+          0.14458836584894247,
+          -0.5397046520509524,
+          0.7886695158397968,
+          0.48763479741549265,
+          -0.255325757084618,
+          -0.1617930439242174,
+          0.7721654493860453,
+          0.4150871585053949,
+          -0.08121666486015083,
+          0.3683890427140372,
+          0.6339904882442774,
+          -0.17183738455686273,
+          -0.7565889861834597,
+          -0.4768498168075645,
+          0.16900819103650014,
+          -0.7471855700205159,
+          0.25157180445875504,
+          1.0580116615558817,
+          -0.12670109208472363,
+          -0.5492887505091318,
+          0.17713552813750613,
+          -0.369972062184613,
+          -0.7940549672618216,
+          -0.37798238261502626,
+          0.41050974989117506,
+          -0.6078008526809683,
+          0.625288396729289,
+          0.8052300800305328,
+          0.841824520771445,
+          -0.7706272905521924,
+          0.5100838621045308,
+          0.22896355133258645,
+          -1.1003365310996507,
+          -0.06367049359915962,
+          0.4146213466450848,
+          -0.29243756029193574,
+          -0.32749285267459355,
+          -0.6767811860073994,
+          0.3911416098551814,
+          0.0636592451598755,
+          0.2663440601660343,
+          -0.6237387323270307,
+          0.17749233583996615,
+          0.48049380335672637,
+          -1.1659478465811253,
+          0.7975660344964574,
+          -0.4370818119254779,
+          -0.26631505048917226,
+          -0.5722332182568313,
+          -0.38496042144993653,
+          -0.3089580608315283,
+          -0.7884885033545638,
+          0.055767030321688206,
+          -0.7009069518033559,
+          0.11211241923277857,
+          0.25416132095540683,
+          -0.2628235914721774,
+          -0.3398867469343071,
+          -0.7044070621701571,
+          -0.6370317680230146,
+          -0.2898210158153675,
+          0.09608196756201559,
+          -0.4424808016646801,
+          -0.9143273230678284,
+          1.00122302786258,
+          -0.5879146779138626,
+          -0.7547410801913628,
+          -0.7269072207643097,
+          -0.9474153677518892,
+          -0.8359680476923749,
+          -0.6919352174464217,
+          0.06684112589343386,
+          0.47697386784202217,
+          -0.14694876885103708,
+          0.9299934457446528,
+          0.26345695099684346,
+          0.1529388472387963,
+          0.3037704056822394,
+          -0.6022181768704257,
+          0.7320356288333885,
+          0.04282156631868892,
+          0.8320574897792365,
+          0.751648546478198,
+          0.6963635901284557,
+          -0.4073033112006784,
+          0.6749494525407185,
+          -0.9710734366317028,
+          -0.0488863447746456,
+          -0.06362544660618037,
+          -0.15985750659654932,
+          0.27346376402359174,
+          -0.9297488982943722,
+          -0.09683770305565909,
+          -0.8340405025234825,
+          -0.21019017935802112,
+          -0.15273789306397645,
+          -0.47638184215894835,
+          0.7086247721081269,
+          0.3030993299599975,
+          -0.382078017657445,
+          0.198308803337982,
+          -0.7644342228309925,
+          -0.2546221827236931,
+          0.49494332861088186,
+          -1.079807980910074,
+          -0.03630315735748486,
+          0.46240103670268284,
+          -0.9128616314382356,
+          0.2014963548302368,
+          -0.7370328891456758,
+          0.36175629084526145,
+          -0.7346641476026833,
+          1.048006833351578,
+          -0.4107230132490382,
+          0.26741779550183803,
+          0.4059963519436999,
+          0.07228476532244925,
+          0.23179377870457568,
+          -0.7894971869241123,
+          -1.0346866150257576,
+          0.4926177534531118,
+          0.6876750760787993,
+          -0.3885410769212476,
+          0.07648571690328626,
+          0.1640890524871004,
+          -0.11666585918331432,
+          0.14419677178551385,
+          -0.5071446946285084,
+          -0.19297805727295103,
+          0.5252841415246288,
+          -0.41725552832366647,
+          -0.8640194464021606,
+          -0.6302289835469799,
+          0.48049091283404405,
+          -0.07672691896066987,
+          0.5245178847301044,
+          0.18254094989963698,
+          0.8658986533074001,
+          0.9279700866659404,
+          -0.716565714890737,
+          -0.818345588321952,
+          -1.03641227418712,
+          0.11752858056706832,
+          -0.4177365719941189,
+          -0.8490786999964521,
+          -1.0655679757029604,
+          0.8030237829198313,
+          0.5180858330158973,
+          -0.06432746484728948,
+          -0.7642952987769903,
+          -0.6808530877647024,
+          -0.0265479006400434,
+          -0.1981638140669291,
+          0.8339274127419631,
+          0.551838653888061,
+          0.43610352861800855,
+          -0.1775736305330307,
+          -0.6806480432829966,
+          -0.17638346269555003,
+          0.64818370276953,
+          0.8177587675358408,
+          0.6255564564029598,
+          0.3062293767316851,
+          -0.09589032363434294,
+          0.11229846735807503,
+          -0.2725322991521416,
+          0.616754927218899,
+          -0.857308407177234,
+          0.40017868056374234,
+          0.29864724450374736,
+          0.08490420945335068,
+          -0.6532716805034849,
+          0.6177526144276889,
+          -0.5678699777913631,
+          -0.11775047374637679,
+          -0.4799415980460599,
+          -0.6720771139477859,
+          -0.3580923154561095,
+          0.639495186423821,
+          -0.48902977072212594,
+          -0.8968328695033758,
+          -0.1151371485361219,
+          -0.7669281006275022,
+          0.1093980926262687,
+          -0.7068517147664198,
+          1.1061969155578544,
+          0.4112879871190207,
+          -0.19271057941189884,
+          0.27210178684922365,
+          -1.027717909262395,
+          0.6614737071467276,
+          -0.6386091776460219,
+          0.04095194311202224,
+          -0.6159020635701126,
+          -0.5746607882135593,
+          0.24367510459055505,
+          1.022164146440188,
+          0.0780953666894972,
+          -0.8519456048755764,
+          0.41994055966356525,
+          1.2619504895698452,
+          0.5166157341739871,
+          -0.6533167758802177,
+          0.47756278616742415,
+          -0.8479897647188529,
+          -0.5150787326762145,
+          0.6186440526070963,
+          0.03718221450167374,
+          0.8457458291075756,
+          0.5195109086918456,
+          0.18408572879033153,
+          -0.20667382119120017,
+          0.6371254943961773,
+          -0.21045490522302113,
+          -0.08979535023830336,
+          -0.5062527848556967,
+          0.07215420707922299,
+          0.5615160970920917,
+          -0.8842222871709657,
+          -0.4005299714127283,
+          -0.9015644946397073,
+          -0.4867476218951706,
+          -0.4272592457363396,
+          -0.6732065926621417,
+          0.8982153704028772,
+          -0.9519680660119977,
+          1.3403343418088027,
+          0.3945249164189624,
+          0.17704657425063222,
+          1.0107806211405137,
+          0.727628015655482,
+          0.14535684096398174,
+          -0.16846696536636938,
+          0.687244437661335,
+          0.6955274851162828,
+          0.3715985424282581,
+          0.19659130103013825,
+          -0.1694420151268003,
+          0.7210092398855665,
+          -0.5438672972454336,
+          0.30499408412618106,
+          -0.23960532603794457,
+          -0.5358248238129997,
+          0.4352422706802759,
+          -0.6601380066906662,
+          0.33801691821277957,
+          0.48690689634330053,
+          0.37868838570506685,
+          0.7735911995670872,
+          -1.157539779992175,
+          -0.5849878295799772,
+          0.10083397314446058,
+          0.33088838446238616,
+          -0.5036634192695784,
+          -0.741557776823114,
+          0.24096870572225876,
+          -0.6114830376484259,
+          0.8189094772381422,
+          0.5012789192931144
+         ],
+         "z": [
+          0.4427785634710451,
+          -0.3109660261972314,
+          -0.705747945481714,
+          0.3008625372113028,
+          1.0443135715900238,
+          0.216646992919409,
+          -1.1589539282259331,
+          -0.9558119683196578,
+          0.12268254636428802,
+          -0.9655289830608742,
+          -0.7030934388568563,
+          -0.5589094360910216,
+          -0.48798779199694065,
+          0.6826310756640797,
+          0.3611523519417016,
+          0.8430713862824741,
+          0.3811550638961457,
+          -0.08720665119971027,
+          -0.06795309153997516,
+          0.11235146101993965,
+          0.5796837681531813,
+          0.08826021694905123,
+          -0.24761579297749048,
+          0.7031442193252273,
+          -0.023494174965903673,
+          0.29808167895872456,
+          0.45868761752177506,
+          -0.07955306423503906,
+          -0.11376060285570679,
+          0.019057383133844127,
+          -0.029766171945723882,
+          -0.7214466268436471,
+          -0.8425708744432578,
+          0.27327676481634716,
+          -0.0692116996852731,
+          0.07810400040179961,
+          -0.9793760716789677,
+          0.5233856109605756,
+          0.14775923149724055,
+          0.802718221513647,
+          -0.6824691930779282,
+          0.4632867299399087,
+          -1.0339272924429856,
+          -0.15089850699355797,
+          0.3264955226070746,
+          -0.48297554568880396,
+          0.05968835188252105,
+          -0.8417496787557566,
+          0.8426002604743447,
+          -0.21544916193413635,
+          -0.5959722581291556,
+          -0.22998807631766555,
+          -0.38539702291484906,
+          0.013431986121974411,
+          -0.43580551814515867,
+          -0.18247522342438008,
+          -0.35510161687702774,
+          0.04862426196698352,
+          -0.4901808442608525,
+          -0.3172510453612888,
+          -1.1038643482801407,
+          0.8085551629135662,
+          -0.5740571842756801,
+          0.6250574611002799,
+          -0.5288152113757285,
+          0.325056886459539,
+          -0.9296777177521851,
+          -0.0023033662915591968,
+          0.2516700253978474,
+          -0.12156814344344628,
+          0.5103211599748145,
+          -0.5380568425225382,
+          -1.109643320297396,
+          -0.49280029944970416,
+          -0.875756122625826,
+          -0.396697276683809,
+          0.20105804771632693,
+          0.622938012497581,
+          -1.188143075953353,
+          -1.0283605817675678,
+          -0.8230722185072578,
+          -0.8597326362932894,
+          0.2672059967878145,
+          -0.3909111506642192,
+          0.45240289499561065,
+          -0.33468421645877316,
+          0.02887071749040646,
+          0.8633682843025589,
+          0.29654055904620624,
+          0.43715460067162354,
+          -1.079198363084433,
+          0.26034276865308426,
+          0.26337009678647944,
+          0.7111081498039555,
+          0.7164765680970981,
+          0.7796511987429694,
+          0.12589338469607478,
+          -0.19979412734521662,
+          -0.6021350804848891,
+          -0.6572501329633652,
+          0.14873596748311302,
+          0.27289507290992226,
+          -0.1113115836305989,
+          -0.05330663346768774,
+          0.12028457693848513,
+          0.1627212957682766,
+          0.9105462833373131,
+          0.7070053571816575,
+          0.5363884197282057,
+          -0.522182991209682,
+          -0.17916896897140272,
+          -0.5572421098371971,
+          -0.7126843595663588,
+          -1.141649193330288,
+          -0.7238480065375309,
+          -0.26687281390093065,
+          0.03031401142741078,
+          0.43140913329746466,
+          0.014445723876199546,
+          -0.8018139614652626,
+          -0.5458214834175558,
+          1.0450695912381653,
+          -0.41064248819972243,
+          0.2990604606155933,
+          -0.30427763316176004,
+          0.5487511035096444,
+          0.4996459687465027,
+          0.0864296801808191,
+          1.1474541915113814,
+          0.28571545535862974,
+          0.42474498233565894,
+          -0.7901924188743732,
+          -0.23350330790113502,
+          0.23883194844535152,
+          -0.6929296967790074,
+          -0.9733394182281294,
+          1.0672309441684344,
+          0.28762510773633393,
+          0.68142463355117,
+          0.6563811706574996,
+          -0.8269846048558169,
+          0.4315074303833864,
+          -0.12187904860355189,
+          -0.9675791879622239,
+          0.3933529789024406,
+          -0.4860190611227846,
+          0.879893666608398,
+          -0.10970180176056073,
+          0.0947145816722996,
+          -0.548912539603347,
+          -0.2406368933519255,
+          0.1011982507715507,
+          -0.814053641049208,
+          -0.3303306543599186,
+          -0.3048102791604254,
+          -0.5758920371062014,
+          -0.3615474874796567,
+          0.5215110810960111,
+          0.9534697648562476,
+          -0.6613675992266614,
+          0.6472912388817911,
+          -0.7777386591553145,
+          -0.4994725533790988,
+          0.511296374304303,
+          0.9250548615884931,
+          -0.8450165007926506,
+          0.7424543651461256,
+          -0.293807876697978,
+          0.2634881058704498,
+          -0.3385731577767587,
+          0.35957143845143685,
+          -0.41131698576060177,
+          0.27016517305740395,
+          -0.38136529857581314,
+          0.8487502479272729,
+          -0.9281983346101519,
+          -0.6118153511287348,
+          0.8607322844719676,
+          0.5941646746936934,
+          0.13884983654345534,
+          -0.8883585999596296,
+          -0.652198255785346,
+          -0.31312979487668413,
+          1.0316879359780062,
+          0.3415950551973953,
+          -0.5729583872952964,
+          0.02164937877176055,
+          -0.0617500166277387,
+          0.5984810209881469,
+          -0.1791868841204166,
+          0.5242108693000513,
+          0.3298432486272567,
+          -0.12859270860318212,
+          -0.5237897251927542,
+          -0.045862302052143616,
+          0.5758933854009787,
+          0.33438585189352993,
+          -1.0917811070898344,
+          -0.36525537406571446,
+          1.1529617942751949,
+          0.3532687572545055,
+          0.4881974999079394,
+          -0.4903452864854716,
+          0.8007709578067111,
+          0.1930533576003651,
+          0.7601444980134775,
+          0.3513633628288629,
+          0.28750035659416806,
+          -0.103161633489849,
+          0.18102844167243973,
+          -0.9121841043715977,
+          0.8267303290763516,
+          -0.16778378903248556,
+          -0.5795309106166832,
+          -0.7907362893983599,
+          -0.024738380088415966,
+          0.9517671044915448,
+          1.1696900465192932,
+          -0.6464227748573038,
+          -0.023559087289692745,
+          -0.7906366577413156,
+          -0.34071121393132336,
+          -0.9423645261074122,
+          0.17038874209672905,
+          0.04342698850422474,
+          -0.2917309004390373,
+          -0.3016854811283441,
+          0.8110106987331132,
+          -0.48677506610626053,
+          0.8544673886691779,
+          -0.23534043317902348,
+          0.4597965056700644,
+          0.205852427910235,
+          -1.0569687039107556,
+          0.8755033832613149,
+          -0.9704694210992976,
+          -0.8299696378903989,
+          -0.5033213849457348,
+          0.8067930019345219,
+          0.6245870931140545,
+          0.5968452339854664,
+          -0.05964317846185799,
+          -0.2550991480051896,
+          -0.16755567311862354,
+          -0.7316866356416247,
+          -0.11231566339116786,
+          -0.5060047535014818,
+          0.38784595191688875,
+          -1.1224094812954966,
+          0.8750877148208922,
+          -1.0029086579645485,
+          -0.9023825375218293,
+          -0.779369320096021,
+          0.14729977208431236,
+          0.6068596102380861,
+          1.0874316154369872,
+          0.6108877034430429,
+          0.04430522161325217,
+          -0.23483181300668413,
+          -0.31084283166877763,
+          1.1011196028349697,
+          0.6815178060363671,
+          0.16766797947163686,
+          -0.3128663889059506,
+          -0.06653752590931945,
+          -0.49827609848453824,
+          0.01816480244149277,
+          -0.06609531685701477,
+          -0.5329171981144841,
+          0.6637014224626586,
+          -0.471028140485918,
+          0.652677698602105,
+          -0.32220113870987194,
+          0.1569639884315054,
+          -0.6620260561226968,
+          -0.7590241942677404,
+          -1.013623496035494,
+          -0.765065134623877,
+          0.47363714887275693,
+          0.40181874640326837,
+          0.37979014054550103,
+          0.5851106763889168,
+          -0.6648882075722422,
+          0.776841179357933,
+          -0.06722605119399061,
+          -0.8079670640145006,
+          -0.6901917074415314,
+          0.5352703674074547,
+          -0.44613587076092903,
+          -0.4079962623970112,
+          0.09430697483363941,
+          -0.46118472871509475,
+          -1.080492512666723,
+          0.6477804630276703,
+          -0.008121336506385787,
+          0.5483496332170891,
+          0.3162552293159953,
+          0.671719170157182,
+          0.3739242985670652,
+          0.08201827780217853
+         ]
+        },
+        {
+         "marker": {
+          "size": 1
+         },
+         "mode": "markers",
+         "name": "Class 3",
+         "type": "scatter3d",
+         "x": [
+          0.5144568236539335,
+          0.3265421137704103,
+          1.4189295392163737,
+          1.114431061456304,
+          -0.03966738230799107,
+          0.5698056893840099,
+          -0.9458853838215316,
+          1.9080303522832993,
+          0.32493009244723636,
+          0.48660862894278756,
+          1.471042991230658,
+          0.8744954829354571,
+          0.1686313519574643,
+          0.017054224647462306,
+          0.3011797373569472,
+          -0.09441816357513336,
+          -0.3250928785273747,
+          1.498397276268271,
+          0.10537775203026337,
+          -1.2241763302437088,
+          -0.06709901450068335,
+          -0.43567503861318246,
+          0.4402989854334599,
+          -0.9142771304501501,
+          -0.6026058850529784,
+          -0.0944395965919221,
+          -1.4506632582372367,
+          1.2007436545628225,
+          1.217158887646085,
+          -0.7598750406124177,
+          -0.8435926194175537,
+          1.0171231917375796,
+          0.7914010716884788,
+          1.31848631237346,
+          0.7450167987270788,
+          -1.2515835739803975,
+          -0.050728100061194416,
+          0.4694589512455946,
+          0.4136981135239572,
+          2.0325821344396853,
+          0.5907685542361372,
+          -0.36724355406002196,
+          -1.065836372251017,
+          -1.0292270098057352,
+          1.302310873143947,
+          -1.6716147431074249,
+          -1.147367093372504,
+          -0.6688338561192542,
+          0.10827615843435867,
+          0.31045416077100485,
+          0.754848585660288,
+          1.3176257805075013,
+          0.7107949320108163,
+          0.7513249908821925,
+          0.04182352696871739,
+          -0.830900148493212,
+          0.06753840568190127,
+          1.1923848790155336,
+          -1.6893794012897358,
+          -1.1260785741170771,
+          -0.6105530710870428,
+          -1.501711783936496,
+          -0.12392092105635164,
+          -1.5289068430020474,
+          1.353228895262732,
+          0.40041072565787506,
+          0.8138970436731908,
+          0.7795289390711196,
+          1.095377077039765,
+          -0.43133227306731087,
+          -0.6812725214646058,
+          -0.23464413168070145,
+          1.2768998369467055,
+          -1.026791867067735,
+          -0.5136296351572431,
+          0.29775561851429666,
+          -0.3329991280235484,
+          0.7489057155499279,
+          0.49776900845558436,
+          -1.591860084033309,
+          0.7763624918704819,
+          0.09960518083502225,
+          -1.347825191513733,
+          -0.5994922310340778,
+          0.9963091794907255,
+          1.0827574947015584,
+          1.7637670482315024,
+          -0.44381680373506166,
+          0.18290010231043224,
+          1.0042351754808536,
+          -1.3015590825729735,
+          -0.09749741374532811,
+          0.6905192237955875,
+          -0.001625789453781208,
+          -0.570658953337733,
+          1.4628421452771845,
+          0.6491823317380971,
+          -0.7087707504980827,
+          0.10337349864501548,
+          -0.14536725326453284,
+          0.20919625393675556,
+          1.433667301625331,
+          1.1062669804169654,
+          0.16356307421681698,
+          0.9182374521525317,
+          1.338024829822569,
+          -1.2654736570203953,
+          -1.853044612049009,
+          -0.6723579287689099,
+          -1.0077057572531591,
+          0.7790849197593261,
+          -1.3088384986571748,
+          1.2320455113911741,
+          -1.4143521319089913,
+          -1.2477043977032354,
+          -0.7101905534201363,
+          -1.5208874759683018,
+          -0.22118645780892673,
+          0.9796373107053663,
+          0.20214230481876114,
+          -0.2638041586647474,
+          0.7848412825072284,
+          -0.35500808204305495,
+          -1.8168628386287922,
+          0.9128924142830762,
+          -0.48840136328851236,
+          -1.102928623509461,
+          -1.5927768159044662,
+          -1.5296128369556463,
+          -0.05367128434073212,
+          -1.271628995610154,
+          -0.7091473134674463,
+          0.881781472053511,
+          0.04144555312209139,
+          -0.7540379274758616,
+          0.9466674785139009,
+          -0.2949969348751839,
+          -0.6229129308653003,
+          0.9912562370209452,
+          -0.2426276756745509,
+          -0.8210048416017263,
+          0.003401933984606107,
+          1.5716428354166858,
+          1.2424411598709375,
+          0.5303847799340363,
+          -0.9946505758776841,
+          0.7491601960848779,
+          -0.44494013910947555,
+          0.7496979621488119,
+          0.6173650642806239,
+          -1.3286125191655862,
+          -0.8242547710202835,
+          0.7484184396854447,
+          0.21922450276368513,
+          1.700229930347903,
+          0.04238050922858031,
+          -0.5571309355065164,
+          1.2957683368919477,
+          0.48132285934787716,
+          0.35712336612604323,
+          -1.3265602189125416,
+          -1.6703520148655744,
+          1.104009714236334,
+          -0.8063042643785412,
+          0.2549030320977184,
+          0.17714921362771063,
+          -0.7840679908056729,
+          -1.5288697855151907,
+          -1.4205457434544158,
+          -0.22846079454861276,
+          0.4127180444055692,
+          -0.7016283776694212,
+          0.7141764203142805,
+          -0.20827385759449252,
+          0.38769840530259836,
+          -0.5397377189437569,
+          0.8090278622489275,
+          0.9832987662342891,
+          -1.4755253168939926,
+          1.0699770325695082,
+          -0.020207628611404932,
+          0.7733487457950725,
+          1.4762091630775793,
+          1.2139384387728889,
+          0.7986162238857292,
+          -1.1203279452125512,
+          0.4089440334352397,
+          -1.272092210008323,
+          -0.16697187740832123,
+          0.21950102295018337,
+          -0.29023086479294874,
+          -0.04152444136189824,
+          -0.8421762110767165,
+          0.7686956310713007,
+          0.5196357506883765,
+          -1.2324918664938518,
+          -1.534133580544545,
+          -1.0262405582413265,
+          0.24563386534053677,
+          -0.7632944786196513,
+          0.060676666413629926,
+          0.0074331521148935376,
+          0.9469328450178396,
+          -0.3363829676265321,
+          0.9910342636509643,
+          0.569541308537406,
+          -1.2028813636130427,
+          1.3464674200530924,
+          0.8253810046058723,
+          1.1168325019691734,
+          -1.7083592041737394,
+          -0.019314056764900788,
+          0.31943550896152345,
+          -0.9751162743562045,
+          -1.4274894954274344,
+          0.39246218990157566,
+          -0.721394025839074,
+          -1.0951765763938226,
+          -0.3707506477379359,
+          1.2072567000282617,
+          -0.9120449231138382,
+          -0.11798418306471821,
+          0.6194235349944993,
+          0.11758199609050267,
+          1.5038345167560423,
+          1.1480891859150908,
+          -1.0299783610655904,
+          1.6814984890399671,
+          0.3638559722274941,
+          -0.0689620324518486,
+          1.3081747657511331,
+          -1.3674207381619687,
+          0.7501000190833169,
+          0.33058970730514803,
+          0.5625250557884295,
+          0.47756826753012654,
+          1.6294573182681682,
+          -0.5190739514381146,
+          -1.1524943019356721,
+          0.7174735801357368,
+          -0.46929055390280955,
+          -0.7266760078047055,
+          -1.269759666664035,
+          0.2055660450480643,
+          0.6474213853678698,
+          0.807553141868193,
+          -0.6855296274110316,
+          -0.9163709467206236,
+          0.807781228682193,
+          0.3722770227126465,
+          -0.9942007040895972,
+          -0.9690317471418548,
+          -1.4844011226497478,
+          -0.43614865002767306,
+          0.31923685766454807,
+          -0.32986092948935114,
+          -0.4448648421523866,
+          1.1011238217197523,
+          -0.09707099357215251,
+          -0.39691054783940144,
+          1.1623452683344824,
+          -0.8116389198565807,
+          -0.28974084699132036,
+          -1.7680724905101584,
+          1.6231678506232952,
+          0.6284052634590761,
+          -0.3134018364259666,
+          0.5360175719387062,
+          -0.5530453475931476,
+          -0.8297657868787255,
+          0.9959126678792715,
+          -0.02338026533390263,
+          -0.02198064430066988,
+          0.3683255509807012,
+          -1.6900736717348759,
+          -0.8869978920173539,
+          -0.6516053834394826,
+          -0.6215492825292998,
+          0.14274506523221722,
+          -1.5523840793585604,
+          -0.7197609268844738,
+          -0.45105952755656115,
+          -1.1294930542074746,
+          0.7796515970748006,
+          -0.990816107166149,
+          1.0295371132432376,
+          0.4693354935066028,
+          0.42043120345736607,
+          -0.9531121512625357,
+          -0.9328699145929118,
+          -0.9235793329615297,
+          -0.6156595901779017,
+          -0.11396211054797578,
+          -1.535873015640756,
+          0.013125123568613506,
+          0.44982554534528546,
+          1.1051781555755789,
+          -1.0023965593803705,
+          -0.9596393391898398,
+          0.29571810790639497
+         ],
+         "y": [
+          -0.17391020545747574,
+          -0.4126518083854057,
+          0.18214556910517138,
+          -0.8522606833217812,
+          0.37408401739179725,
+          0.47703517393632794,
+          0.6538973346358966,
+          0.4096348105774378,
+          -1.183175473988145,
+          -0.5931259031263069,
+          -0.36637929850102363,
+          -0.5300250141144606,
+          -0.7741869996378278,
+          -0.3291455936566852,
+          -0.5828548119675443,
+          -1.0739062835238726,
+          0.8369504597218772,
+          -0.2746499320831608,
+          0.9144733070519644,
+          0.38183049299120336,
+          -0.9981220412237882,
+          0.647929275207065,
+          1.0703351913296608,
+          -0.8496842721135438,
+          -0.6033900030776128,
+          -1.1941041818519942,
+          0.4197514212587177,
+          -0.8957766302422145,
+          -0.12203645272798563,
+          -0.5231519170791362,
+          -0.8529256516692288,
+          -0.5742856265670151,
+          0.29875449094324147,
+          0.35786540881968537,
+          -1.5729839542528912,
+          -0.7257417831333295,
+          0.8958124855136507,
+          -1.4661752027528976,
+          1.535486606730284,
+          -0.14978055806722,
+          1.317608159375344,
+          -0.8952346308965736,
+          0.345736032293262,
+          1.0472614201222799,
+          -0.31632930950712834,
+          0.6783221879516801,
+          1.651532033234353,
+          0.03854630805304618,
+          -1.2409489048200446,
+          -0.36367402468574406,
+          1.4244063560897642,
+          0.5602384130169962,
+          1.0558687679337666,
+          -0.4999389187142302,
+          1.0029674854739985,
+          -1.1642544401239192,
+          0.5968384294532216,
+          0.6263813985800996,
+          -0.17731866410846844,
+          0.5735001007613733,
+          -0.6756338946229453,
+          -0.2131763461219514,
+          -0.746252901015894,
+          -0.6044592048263232,
+          0.4775502457042315,
+          -1.3547427325119472,
+          -1.1960741207558196,
+          0.07598441459214794,
+          0.5321648898713072,
+          -1.5899493677488863,
+          -0.32324967166134694,
+          -0.08675126383171153,
+          0.43664472515848196,
+          1.2079441804317248,
+          -0.9975182332992953,
+          -0.16462421425096535,
+          0.8764394661246252,
+          -1.279078180824086,
+          -0.8772579196343135,
+          -0.9178659697072545,
+          1.0789607269134678,
+          -1.555118233136728,
+          -0.7579654246193459,
+          -1.309406862811315,
+          -0.4482552558508384,
+          1.0871969262838106,
+          0.2308568260648283,
+          -1.168235079312246,
+          -1.5755467473987763,
+          -0.6797939309584781,
+          0.17183017617566562,
+          -1.2972812537122247,
+          1.1106225331886976,
+          -1.330941033153784,
+          -1.428633201689479,
+          0.127657135528488,
+          1.253472536368319,
+          0.7677579143227635,
+          -0.22241744056861762,
+          -1.5196537351527313,
+          1.0558820436425742,
+          0.4389063203553567,
+          0.3098869430887787,
+          1.0567511278531347,
+          0.35216737381126484,
+          -0.10443504271887524,
+          0.9580387121422315,
+          0.49112715714109206,
+          0.5517434838628714,
+          -0.9788384467023254,
+          1.2839516845869443,
+          -0.5496029118049177,
+          1.0579757951014144,
+          -0.571516941222132,
+          -0.12826702772856466,
+          -0.3387396472261903,
+          0.124553861367088,
+          0.1166410007003533,
+          -1.351061952747592,
+          -1.5874204010654833,
+          -1.3832871758013698,
+          -0.4231724919100753,
+          0.9341313599467128,
+          0.5093744454079949,
+          -0.9664496486165332,
+          0.3167547980797216,
+          0.07127260865747148,
+          -0.7406827419239058,
+          0.6257179338633171,
+          0.3825305718069153,
+          0.3068654989838064,
+          0.7180593088223464,
+          -0.8902232563662048,
+          0.5128333054887707,
+          1.2159864865886039,
+          1.4937280981779169,
+          0.7486173220751825,
+          -1.6705347430945274,
+          -1.0823547358975125,
+          -1.2936358691290741,
+          1.1354857949056583,
+          1.529162336563934,
+          -0.3485114604163996,
+          -0.09134361615238616,
+          -0.30331423205811747,
+          -0.21556785726360872,
+          0.7699551202872074,
+          -0.4870648660960552,
+          -0.7076783616527985,
+          0.5423976144843277,
+          -0.2462848050432203,
+          0.3912940069118737,
+          0.5240926744502001,
+          1.5193127688860841,
+          0.607632093617029,
+          -0.4917157900254271,
+          0.7676630957803031,
+          -0.30374548154300735,
+          1.0291780633073637,
+          -0.13027765354621967,
+          0.4338525857767522,
+          -0.016576444179510146,
+          0.3132775798148751,
+          0.028373235286869247,
+          0.11390860629834129,
+          -0.4372034854731505,
+          0.13420094718716227,
+          0.5669254274023532,
+          -0.5143867793400371,
+          1.2424400771156021,
+          -1.3798896306205826,
+          0.8816259740871145,
+          -1.0396099760335733,
+          -1.3450117908190558,
+          1.203278201535245,
+          -0.9519193167133639,
+          1.0207715426768398,
+          0.4489489812175142,
+          0.9149101615355,
+          0.7300947871526886,
+          1.6287560117652304,
+          -1.137677204633563,
+          -0.18976595806691043,
+          0.4317671788552335,
+          -0.9347823595843353,
+          0.2865612868190655,
+          -0.22546093429626923,
+          0.582528239060869,
+          0.905086546708144,
+          -1.407483333924337,
+          -0.5021195531497143,
+          0.1372616170212085,
+          -0.26952536854716747,
+          0.5246799501035082,
+          1.5256407229612243,
+          -0.7962938526024419,
+          0.642806675524792,
+          -0.3515632731174543,
+          -1.4883132905257814,
+          0.1691179478093322,
+          -0.8133268335407025,
+          1.4975390847014167,
+          -1.0296889795591553,
+          -1.1374216193374114,
+          -0.7359312405105568,
+          1.140227230692641,
+          0.9126704619023419,
+          -1.8622568941555886,
+          -0.4699664088550893,
+          -0.5635191655562772,
+          -0.6477233463872645,
+          1.2558001627941455,
+          -0.7123793754821178,
+          0.062243041660483035,
+          -0.3535923226833402,
+          0.4848295921976362,
+          0.5712238756054979,
+          -1.605500796598148,
+          -1.1307516903152364,
+          0.7746837199539083,
+          0.12686930626046808,
+          -0.20175268454996007,
+          -1.2817020905405148,
+          -0.16612901915830589,
+          0.41235594800921,
+          -0.7073470439558337,
+          1.5484157792140552,
+          -9.764534778973906e-05,
+          -0.8857934454504391,
+          1.5302428001016855,
+          -0.6659161173516789,
+          0.44771272591046085,
+          -0.18754035973566485,
+          -0.20743331826621017,
+          1.218645461052326,
+          0.39709472759207554,
+          0.12535226231773636,
+          0.020066166231149988,
+          -0.025246814197929256,
+          -0.43902661354060296,
+          1.0910482393734273,
+          -0.8394195543727153,
+          -0.16699745026196594,
+          0.7220226503702177,
+          -0.5851430640423926,
+          0.5244616089509218,
+          1.1350947252178343,
+          -1.023692800429117,
+          0.8256692929550864,
+          -0.9995286039442439,
+          0.7169518887544277,
+          1.0564436462858022,
+          -0.1441127016105558,
+          -0.7379957816365117,
+          -1.1110736742890344,
+          -1.2026042555252534,
+          -0.37388960862989246,
+          0.7021024420235266,
+          0.541521831159535,
+          -0.198125308074865,
+          -0.6540652908422857,
+          1.1697093430107035,
+          0.1181429365662957,
+          0.794361843682575,
+          -0.2100536213248544,
+          -0.3515502024353719,
+          1.1916950819697034,
+          0.2390271173479345,
+          -0.7189470946490761,
+          1.3078459911551836,
+          -0.4846246429860577,
+          0.8125756309193097,
+          -1.2359800917719952,
+          -1.2401696737551255,
+          -0.942266935802633,
+          0.26141922131323675,
+          -1.0302099910802316,
+          -0.8956591642667474,
+          1.7591553925971886,
+          0.10956973577487933,
+          -1.4744637584491855,
+          0.3836164865647068,
+          0.6355794030315973,
+          0.3640865042776248,
+          -0.7000153114224633,
+          -1.3188126226517545,
+          1.0528169750998653,
+          0.25795823776464183,
+          -0.12651167063113214,
+          -0.7148930191886322,
+          -0.5901292014728263,
+          0.7896364225000497,
+          -0.5277753950648633,
+          -0.05504673640362855,
+          -0.7029618229057158,
+          -1.1218255380882045,
+          -0.9579250156857373,
+          -0.32900214657280724,
+          0.5670801256812847,
+          0.9595054563837578
+         ],
+         "z": [
+          1.081259166690215,
+          1.1171688510200566,
+          -0.7286679935880457,
+          0.29827333812328,
+          -1.192469187009074,
+          -0.9749532766938946,
+          -0.8155424595533363,
+          -0.236610643147605,
+          0.5478399365521149,
+          1.2841096976626396,
+          -0.20806093377871754,
+          0.5561519255043341,
+          -0.5705025368756065,
+          -1.1486926115337663,
+          -1.430083023293018,
+          1.0799571343850511,
+          1.4537202962553688,
+          0.128126450689943,
+          1.1428340108222819,
+          -0.3154857321455373,
+          1.451414316834022,
+          0.9464720460962082,
+          0.17261259978157045,
+          -1.107172413379662,
+          -0.7011301232041515,
+          1.865912809746879,
+          0.20306292560767236,
+          0.5714113927225255,
+          0.3014704872988738,
+          -1.0614743154601847,
+          -0.6683112249569717,
+          0.6547609800799189,
+          1.4607658467282847,
+          -0.026952332136481395,
+          0.46771394818479894,
+          -1.7764900516882336,
+          1.0905438133898964,
+          0.13311525320432013,
+          0.2683503822676281,
+          -0.005135817382480719,
+          -0.30307333742753917,
+          0.797220979351587,
+          0.08644888939608657,
+          0.2063014520662889,
+          0.2685019257755952,
+          1.069234998025069,
+          0.24407598321079585,
+          -0.9868199483035628,
+          0.33092665889215667,
+          1.4448456284018159,
+          -1.0337547743384243,
+          0.5010873796146106,
+          -0.3001590031251841,
+          1.1761828023113134,
+          -0.8468137075812203,
+          -0.8792236694620461,
+          -1.1409360156796031,
+          -0.06313139212038257,
+          0.7205030026610237,
+          -0.14289634785780692,
+          0.562647648799402,
+          0.18672508375342195,
+          1.1696086744252978,
+          -0.1609102855884781,
+          0.694637718377353,
+          -0.47538354546338774,
+          -0.3207943677356059,
+          -1.0141937446567062,
+          -0.917516331635072,
+          0.6244108410919664,
+          0.9473728164383936,
+          1.477365600395968,
+          1.2038919422642393,
+          0.45772456339079265,
+          1.5196585997053593,
+          1.2870233339841108,
+          -0.18772820694093612,
+          -0.48524222319119514,
+          1.2519361872188246,
+          -0.5081185180868292,
+          1.2909175238282524,
+          0.5704547231211775,
+          -0.7698143124289736,
+          0.09148871251025109,
+          0.31808334138672567,
+          -0.042042961853019006,
+          -0.21593139472947934,
+          -1.1450650760899104,
+          -0.7338811842981761,
+          -0.6436986251888119,
+          0.5440603464099596,
+          1.0044774043295253,
+          0.28114274041550485,
+          0.2061220614748952,
+          -0.39589567337527787,
+          0.9071679408014144,
+          -0.2882261371982659,
+          -0.4909325722200397,
+          -1.2577415743147915,
+          -0.32354428101577265,
+          -1.1248368870656702,
+          0.471243641526843,
+          -1.1910781478315469,
+          1.0543742971818322,
+          -1.2349973414926823,
+          0.6394033864202617,
+          -0.9331949682468963,
+          -0.18016303413173798,
+          0.7474526325899683,
+          0.2338563618513171,
+          -0.15411444792335832,
+          0.057506884079922105,
+          -1.2223471624750484,
+          -0.356338161703092,
+          0.12773636455289578,
+          1.4811435561525643,
+          0.4115119089656643,
+          -1.570577551431469,
+          1.1680755918619217,
+          -0.11265062998695487,
+          0.06675445161848033,
+          -0.22330661051064937,
+          -1.051850039905161,
+          -0.06194632159022238,
+          0.634107028592213,
+          -0.5980737549327108,
+          -0.7786361002868744,
+          -0.3688135088166511,
+          -0.1773319847044667,
+          1.1893621910010619,
+          0.2514807267550494,
+          -0.9382893827705027,
+          0.3579769397026512,
+          -0.7348890827890768,
+          -0.9668071667699832,
+          0.618256202679729,
+          -0.672939493615039,
+          0.5623638977183378,
+          -0.07104934229035258,
+          -1.3197867592586074,
+          -0.5661882959888409,
+          0.18455598039798293,
+          0.05106816406761241,
+          -0.22139612962723046,
+          -1.7513554170780576,
+          -0.5708355426379884,
+          0.8671190972673662,
+          1.5186309190210079,
+          0.869631721328268,
+          -1.5234486635925095,
+          1.34805410381407,
+          1.5525059015387013,
+          -0.14355953020561218,
+          0.08469759252907623,
+          -0.00832019885061668,
+          -0.9929762726392968,
+          -1.4287534273145344,
+          1.0549084308057548,
+          0.09282042609755455,
+          -1.7059642001565145,
+          -0.7426861202224185,
+          -0.2766809909269144,
+          0.39280294855947745,
+          -1.3171367398909506,
+          -0.9535390731100598,
+          -0.6751568471086556,
+          -1.3207857130192098,
+          -0.8239041367503865,
+          -0.4455362250801389,
+          0.7732815513871013,
+          0.10748475283328136,
+          0.46785658491851434,
+          0.6824938203454711,
+          0.8882758384721245,
+          0.5297946228248716,
+          1.3308340371829523,
+          0.8552945915721436,
+          -1.1717107648517269,
+          -0.31203667128893,
+          0.35662639730035905,
+          -0.4719191125050915,
+          -0.16247412285434154,
+          0.589508583059107,
+          0.22639786389320204,
+          -0.0036666016226342977,
+          -0.9976756256778468,
+          -0.815812320331594,
+          0.19018988647545976,
+          0.44623444088389147,
+          0.9842722766227647,
+          1.7166058081279754,
+          1.2350693895683573,
+          1.3660044018851702,
+          -1.5021336037726487,
+          -0.7269711057629715,
+          0.5404099602010655,
+          -0.43032219987846615,
+          0.7292416639899526,
+          0.2219701102761422,
+          1.114351511810445,
+          -0.9891523344146559,
+          -0.19893120756512306,
+          -0.7832068532237961,
+          1.4140065305715468,
+          -0.9842509412792895,
+          1.1108162093484484,
+          -0.7680698763811877,
+          -0.036089532531365605,
+          0.15482702850210003,
+          -0.33741054645545593,
+          -0.6459664755295437,
+          0.6081402755168461,
+          -1.5808488174145043,
+          1.226748621785349,
+          -1.5343800948519977,
+          -0.9891129355976004,
+          -1.619816204344035,
+          -0.5496966876499798,
+          -0.14407362502866566,
+          0.9716583237808744,
+          -0.7898984795478755,
+          1.4907494614266028,
+          0.02661615255668226,
+          0.7594732205852615,
+          0.4608421995078163,
+          -0.7490655228456067,
+          0.5501340680357059,
+          -0.011470885647066956,
+          1.9589658749579215,
+          0.0012950464845225094,
+          -0.046641191568778266,
+          0.13574123863076723,
+          1.1302633843721923,
+          -0.7485655884429088,
+          0.5064813579244793,
+          -0.6315076709963795,
+          0.0030091928365095486,
+          1.0053759688460322,
+          -0.44127135848244453,
+          0.9927187267384275,
+          0.8126873029342624,
+          1.0116528610826003,
+          1.2961545266228607,
+          -1.095991659216772,
+          1.3916433551620921,
+          -2.1010494003923212,
+          -0.9167576614621976,
+          0.4520515481812141,
+          -0.5243995134955256,
+          0.9708287868892557,
+          -0.16462235336145822,
+          0.6638428167136897,
+          -0.3449679487331145,
+          0.028698526197511964,
+          0.9471514018274165,
+          -1.3251846292036145,
+          -1.253273143722762,
+          0.019253124924739996,
+          0.9418537020374437,
+          -0.8379055145444774,
+          -1.128265052658238,
+          -0.25338947853347976,
+          -1.7007821477261178,
+          -0.2538466516781394,
+          -0.6834087341055719,
+          1.1287813586906947,
+          0.9287577015282403,
+          -1.1794289725835612,
+          -0.9167002654086702,
+          0.40852498395856673,
+          0.5854325017491032,
+          -0.2261425698163097,
+          -0.0031152608395289124,
+          0.5578099949316294,
+          0.25650530682839895,
+          0.9892768795319875,
+          1.115076737463173,
+          0.9560255983929399,
+          0.600503748000263,
+          -0.9886185979416084,
+          0.8532872235987017,
+          -0.7870616488197933,
+          -0.870789591131708,
+          1.4955687180830182,
+          -1.0635365079360315,
+          0.23203321474794372,
+          -0.9867116056845491,
+          1.1798030100777273,
+          -0.2595339543094857,
+          -0.5745990330767841,
+          2.016969500242641,
+          0.9140387727649104,
+          -0.7423862993979677,
+          -0.7670189198716642,
+          1.6070398025502421,
+          -1.4431120715421168,
+          0.7417816344379696,
+          -1.3977117951651294,
+          1.7164502104670285,
+          -0.7915910946913929
+         ]
+        }
+       ],
+       "layout": {
+        "template": {
+         "data": {
+          "bar": [
+           {
+            "error_x": {
+             "color": "#2a3f5f"
+            },
+            "error_y": {
+             "color": "#2a3f5f"
+            },
+            "marker": {
+             "line": {
+              "color": "#E5ECF6",
+              "width": 0.5
+             }
+            },
+            "type": "bar"
+           }
+          ],
+          "barpolar": [
+           {
+            "marker": {
+             "line": {
+              "color": "#E5ECF6",
+              "width": 0.5
+             }
+            },
+            "type": "barpolar"
+           }
+          ],
+          "carpet": [
+           {
+            "aaxis": {
+             "endlinecolor": "#2a3f5f",
+             "gridcolor": "white",
+             "linecolor": "white",
+             "minorgridcolor": "white",
+             "startlinecolor": "#2a3f5f"
+            },
+            "baxis": {
+             "endlinecolor": "#2a3f5f",
+             "gridcolor": "white",
+             "linecolor": "white",
+             "minorgridcolor": "white",
+             "startlinecolor": "#2a3f5f"
+            },
+            "type": "carpet"
+           }
+          ],
+          "choropleth": [
+           {
+            "colorbar": {
+             "outlinewidth": 0,
+             "ticks": ""
+            },
+            "type": "choropleth"
+           }
+          ],
+          "contour": [
+           {
+            "colorbar": {
+             "outlinewidth": 0,
+             "ticks": ""
+            },
+            "colorscale": [
+             [
+              0,
+              "#0d0887"
+             ],
+             [
+              0.1111111111111111,
+              "#46039f"
+             ],
+             [
+              0.2222222222222222,
+              "#7201a8"
+             ],
+             [
+              0.3333333333333333,
+              "#9c179e"
+             ],
+             [
+              0.4444444444444444,
+              "#bd3786"
+             ],
+             [
+              0.5555555555555556,
+              "#d8576b"
+             ],
+             [
+              0.6666666666666666,
+              "#ed7953"
+             ],
+             [
+              0.7777777777777778,
+              "#fb9f3a"
+             ],
+             [
+              0.8888888888888888,
+              "#fdca26"
+             ],
+             [
+              1,
+              "#f0f921"
+             ]
+            ],
+            "type": "contour"
+           }
+          ],
+          "contourcarpet": [
+           {
+            "colorbar": {
+             "outlinewidth": 0,
+             "ticks": ""
+            },
+            "type": "contourcarpet"
+           }
+          ],
+          "heatmap": [
+           {
+            "colorbar": {
+             "outlinewidth": 0,
+             "ticks": ""
+            },
+            "colorscale": [
+             [
+              0,
+              "#0d0887"
+             ],
+             [
+              0.1111111111111111,
+              "#46039f"
+             ],
+             [
+              0.2222222222222222,
+              "#7201a8"
+             ],
+             [
+              0.3333333333333333,
+              "#9c179e"
+             ],
+             [
+              0.4444444444444444,
+              "#bd3786"
+             ],
+             [
+              0.5555555555555556,
+              "#d8576b"
+             ],
+             [
+              0.6666666666666666,
+              "#ed7953"
+             ],
+             [
+              0.7777777777777778,
+              "#fb9f3a"
+             ],
+             [
+              0.8888888888888888,
+              "#fdca26"
+             ],
+             [
+              1,
+              "#f0f921"
+             ]
+            ],
+            "type": "heatmap"
+           }
+          ],
+          "heatmapgl": [
+           {
+            "colorbar": {
+             "outlinewidth": 0,
+             "ticks": ""
+            },
+            "colorscale": [
+             [
+              0,
+              "#0d0887"
+             ],
+             [
+              0.1111111111111111,
+              "#46039f"
+             ],
+             [
+              0.2222222222222222,
+              "#7201a8"
+             ],
+             [
+              0.3333333333333333,
+              "#9c179e"
+             ],
+             [
+              0.4444444444444444,
+              "#bd3786"
+             ],
+             [
+              0.5555555555555556,
+              "#d8576b"
+             ],
+             [
+              0.6666666666666666,
+              "#ed7953"
+             ],
+             [
+              0.7777777777777778,
+              "#fb9f3a"
+             ],
+             [
+              0.8888888888888888,
+              "#fdca26"
+             ],
+             [
+              1,
+              "#f0f921"
+             ]
+            ],
+            "type": "heatmapgl"
+           }
+          ],
+          "histogram": [
+           {
+            "marker": {
+             "colorbar": {
+              "outlinewidth": 0,
+              "ticks": ""
+             }
+            },
+            "type": "histogram"
+           }
+          ],
+          "histogram2d": [
+           {
+            "colorbar": {
+             "outlinewidth": 0,
+             "ticks": ""
+            },
+            "colorscale": [
+             [
+              0,
+              "#0d0887"
+             ],
+             [
+              0.1111111111111111,
+              "#46039f"
+             ],
+             [
+              0.2222222222222222,
+              "#7201a8"
+             ],
+             [
+              0.3333333333333333,
+              "#9c179e"
+             ],
+             [
+              0.4444444444444444,
+              "#bd3786"
+             ],
+             [
+              0.5555555555555556,
+              "#d8576b"
+             ],
+             [
+              0.6666666666666666,
+              "#ed7953"
+             ],
+             [
+              0.7777777777777778,
+              "#fb9f3a"
+             ],
+             [
+              0.8888888888888888,
+              "#fdca26"
+             ],
+             [
+              1,
+              "#f0f921"
+             ]
+            ],
+            "type": "histogram2d"
+           }
+          ],
+          "histogram2dcontour": [
+           {
+            "colorbar": {
+             "outlinewidth": 0,
+             "ticks": ""
+            },
+            "colorscale": [
+             [
+              0,
+              "#0d0887"
+             ],
+             [
+              0.1111111111111111,
+              "#46039f"
+             ],
+             [
+              0.2222222222222222,
+              "#7201a8"
+             ],
+             [
+              0.3333333333333333,
+              "#9c179e"
+             ],
+             [
+              0.4444444444444444,
+              "#bd3786"
+             ],
+             [
+              0.5555555555555556,
+              "#d8576b"
+             ],
+             [
+              0.6666666666666666,
+              "#ed7953"
+             ],
+             [
+              0.7777777777777778,
+              "#fb9f3a"
+             ],
+             [
+              0.8888888888888888,
+              "#fdca26"
+             ],
+             [
+              1,
+              "#f0f921"
+             ]
+            ],
+            "type": "histogram2dcontour"
+           }
+          ],
+          "mesh3d": [
+           {
+            "colorbar": {
+             "outlinewidth": 0,
+             "ticks": ""
+            },
+            "type": "mesh3d"
+           }
+          ],
+          "parcoords": [
+           {
+            "line": {
+             "colorbar": {
+              "outlinewidth": 0,
+              "ticks": ""
+             }
+            },
+            "type": "parcoords"
+           }
+          ],
+          "scatter": [
+           {
+            "marker": {
+             "colorbar": {
+              "outlinewidth": 0,
+              "ticks": ""
+             }
+            },
+            "type": "scatter"
+           }
+          ],
+          "scatter3d": [
+           {
+            "line": {
+             "colorbar": {
+              "outlinewidth": 0,
+              "ticks": ""
+             }
+            },
+            "marker": {
+             "colorbar": {
+              "outlinewidth": 0,
+              "ticks": ""
+             }
+            },
+            "type": "scatter3d"
+           }
+          ],
+          "scattercarpet": [
+           {
+            "marker": {
+             "colorbar": {
+              "outlinewidth": 0,
+              "ticks": ""
+             }
+            },
+            "type": "scattercarpet"
+           }
+          ],
+          "scattergeo": [
+           {
+            "marker": {
+             "colorbar": {
+              "outlinewidth": 0,
+              "ticks": ""
+             }
+            },
+            "type": "scattergeo"
+           }
+          ],
+          "scattergl": [
+           {
+            "marker": {
+             "colorbar": {
+              "outlinewidth": 0,
+              "ticks": ""
+             }
+            },
+            "type": "scattergl"
+           }
+          ],
+          "scattermapbox": [
+           {
+            "marker": {
+             "colorbar": {
+              "outlinewidth": 0,
+              "ticks": ""
+             }
+            },
+            "type": "scattermapbox"
+           }
+          ],
+          "scatterpolar": [
+           {
+            "marker": {
+             "colorbar": {
+              "outlinewidth": 0,
+              "ticks": ""
+             }
+            },
+            "type": "scatterpolar"
+           }
+          ],
+          "scatterpolargl": [
+           {
+            "marker": {
+             "colorbar": {
+              "outlinewidth": 0,
+              "ticks": ""
+             }
+            },
+            "type": "scatterpolargl"
+           }
+          ],
+          "scatterternary": [
+           {
+            "marker": {
+             "colorbar": {
+              "outlinewidth": 0,
+              "ticks": ""
+             }
+            },
+            "type": "scatterternary"
+           }
+          ],
+          "surface": [
+           {
+            "colorbar": {
+             "outlinewidth": 0,
+             "ticks": ""
+            },
+            "colorscale": [
+             [
+              0,
+              "#0d0887"
+             ],
+             [
+              0.1111111111111111,
+              "#46039f"
+             ],
+             [
+              0.2222222222222222,
+              "#7201a8"
+             ],
+             [
+              0.3333333333333333,
+              "#9c179e"
+             ],
+             [
+              0.4444444444444444,
+              "#bd3786"
+             ],
+             [
+              0.5555555555555556,
+              "#d8576b"
+             ],
+             [
+              0.6666666666666666,
+              "#ed7953"
+             ],
+             [
+              0.7777777777777778,
+              "#fb9f3a"
+             ],
+             [
+              0.8888888888888888,
+              "#fdca26"
+             ],
+             [
+              1,
+              "#f0f921"
+             ]
+            ],
+            "type": "surface"
+           }
+          ],
+          "table": [
+           {
+            "cells": {
+             "fill": {
+              "color": "#EBF0F8"
+             },
+             "line": {
+              "color": "white"
+             }
+            },
+            "header": {
+             "fill": {
+              "color": "#C8D4E3"
+             },
+             "line": {
+              "color": "white"
+             }
+            },
+            "type": "table"
+           }
+          ]
+         },
+         "layout": {
+          "annotationdefaults": {
+           "arrowcolor": "#2a3f5f",
+           "arrowhead": 0,
+           "arrowwidth": 1
+          },
+          "colorscale": {
+           "diverging": [
+            [
+             0,
+             "#8e0152"
+            ],
+            [
+             0.1,
+             "#c51b7d"
+            ],
+            [
+             0.2,
+             "#de77ae"
+            ],
+            [
+             0.3,
+             "#f1b6da"
+            ],
+            [
+             0.4,
+             "#fde0ef"
+            ],
+            [
+             0.5,
+             "#f7f7f7"
+            ],
+            [
+             0.6,
+             "#e6f5d0"
+            ],
+            [
+             0.7,
+             "#b8e186"
+            ],
+            [
+             0.8,
+             "#7fbc41"
+            ],
+            [
+             0.9,
+             "#4d9221"
+            ],
+            [
+             1,
+             "#276419"
+            ]
+           ],
+           "sequential": [
+            [
+             0,
+             "#0d0887"
+            ],
+            [
+             0.1111111111111111,
+             "#46039f"
+            ],
+            [
+             0.2222222222222222,
+             "#7201a8"
+            ],
+            [
+             0.3333333333333333,
+             "#9c179e"
+            ],
+            [
+             0.4444444444444444,
+             "#bd3786"
+            ],
+            [
+             0.5555555555555556,
+             "#d8576b"
+            ],
+            [
+             0.6666666666666666,
+             "#ed7953"
+            ],
+            [
+             0.7777777777777778,
+             "#fb9f3a"
+            ],
+            [
+             0.8888888888888888,
+             "#fdca26"
+            ],
+            [
+             1,
+             "#f0f921"
+            ]
+           ],
+           "sequentialminus": [
+            [
+             0,
+             "#0d0887"
+            ],
+            [
+             0.1111111111111111,
+             "#46039f"
+            ],
+            [
+             0.2222222222222222,
+             "#7201a8"
+            ],
+            [
+             0.3333333333333333,
+             "#9c179e"
+            ],
+            [
+             0.4444444444444444,
+             "#bd3786"
+            ],
+            [
+             0.5555555555555556,
+             "#d8576b"
+            ],
+            [
+             0.6666666666666666,
+             "#ed7953"
+            ],
+            [
+             0.7777777777777778,
+             "#fb9f3a"
+            ],
+            [
+             0.8888888888888888,
+             "#fdca26"
+            ],
+            [
+             1,
+             "#f0f921"
+            ]
+           ]
+          },
+          "colorway": [
+           "#636efa",
+           "#EF553B",
+           "#00cc96",
+           "#ab63fa",
+           "#FFA15A",
+           "#19d3f3",
+           "#FF6692",
+           "#B6E880",
+           "#FF97FF",
+           "#FECB52"
+          ],
+          "font": {
+           "color": "#2a3f5f"
+          },
+          "geo": {
+           "bgcolor": "white",
+           "lakecolor": "white",
+           "landcolor": "#E5ECF6",
+           "showlakes": true,
+           "showland": true,
+           "subunitcolor": "white"
+          },
+          "hoverlabel": {
+           "align": "left"
+          },
+          "hovermode": "closest",
+          "mapbox": {
+           "style": "light"
+          },
+          "paper_bgcolor": "white",
+          "plot_bgcolor": "#E5ECF6",
+          "polar": {
+           "angularaxis": {
+            "gridcolor": "white",
+            "linecolor": "white",
+            "ticks": ""
+           },
+           "bgcolor": "#E5ECF6",
+           "radialaxis": {
+            "gridcolor": "white",
+            "linecolor": "white",
+            "ticks": ""
+           }
+          },
+          "scene": {
+           "xaxis": {
+            "backgroundcolor": "#E5ECF6",
+            "gridcolor": "white",
+            "gridwidth": 2,
+            "linecolor": "white",
+            "showbackground": true,
+            "ticks": "",
+            "zerolinecolor": "white"
+           },
+           "yaxis": {
+            "backgroundcolor": "#E5ECF6",
+            "gridcolor": "white",
+            "gridwidth": 2,
+            "linecolor": "white",
+            "showbackground": true,
+            "ticks": "",
+            "zerolinecolor": "white"
+           },
+           "zaxis": {
+            "backgroundcolor": "#E5ECF6",
+            "gridcolor": "white",
+            "gridwidth": 2,
+            "linecolor": "white",
+            "showbackground": true,
+            "ticks": "",
+            "zerolinecolor": "white"
+           }
+          },
+          "shapedefaults": {
+           "line": {
+            "color": "#2a3f5f"
+           }
+          },
+          "ternary": {
+           "aaxis": {
+            "gridcolor": "white",
+            "linecolor": "white",
+            "ticks": ""
+           },
+           "baxis": {
+            "gridcolor": "white",
+            "linecolor": "white",
+            "ticks": ""
+           },
+           "bgcolor": "#E5ECF6",
+           "caxis": {
+            "gridcolor": "white",
+            "linecolor": "white",
+            "ticks": ""
+           }
+          },
+          "title": {
+           "x": 0.05
+          },
+          "xaxis": {
+           "automargin": true,
+           "gridcolor": "white",
+           "linecolor": "white",
+           "ticks": "",
+           "zerolinecolor": "white",
+           "zerolinewidth": 2
+          },
+          "yaxis": {
+           "automargin": true,
+           "gridcolor": "white",
+           "linecolor": "white",
+           "ticks": "",
+           "zerolinecolor": "white",
+           "zerolinewidth": 2
+          }
+         }
+        }
+       }
+      },
+      "text/html": [
+       "<div>\n",
+       "        \n",
+       "        \n",
+       "            <div id=\"44657034-258d-4fc1-afa5-79e6cb56b9b2\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div>\n",
+       "            <script type=\"text/javascript\">\n",
+       "                require([\"plotly\"], function(Plotly) {\n",
+       "                    window.PLOTLYENV=window.PLOTLYENV || {};\n",
+       "                    \n",
+       "                if (document.getElementById(\"44657034-258d-4fc1-afa5-79e6cb56b9b2\")) {\n",
+       "                    Plotly.newPlot(\n",
+       "                        '44657034-258d-4fc1-afa5-79e6cb56b9b2',\n",
+       "                        [{\"marker\": {\"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 1\", \"type\": \"scatter3d\", \"x\": [0.08743682699611054, 0.4581350616348624, -0.12895819644417952, 0.3382626667567396, -0.05320333792102592, 0.23779883024525264, 0.01245786638883486, -0.0146981685770605, -0.24743513125449548, 0.25565001271710075, 0.5429099477107895, 0.04133889847857819, -0.36536407160450113, 0.09929397305928331, -0.18039323619329795, -0.06652437530639116, -0.11362692820758521, -0.35263493786739325, -0.24106414227583722, 0.03508096590020891, 0.09456026101912644, 0.10485278873094898, -0.27635660517528465, -0.5167138051564558, -0.5454304444101401, 0.23384468790118773, -0.09075505493337754, -0.39621703648755474, 0.2177062748588822, 0.4320800821514707, -0.20825239442617616, -0.09169940484576192, -0.08491147125624786, 0.5939228786978271, -0.7826272967083437, 0.5099580518657192, 0.3800321767616834, 0.5116074613320786, -0.12599063587208548, -0.009809147542262888, -0.0336674200886489, 0.09603686307529397, -0.0754212567583296, 0.05128736079101464, -0.10395495542264056, 0.06572596346198009, 0.1656123941143921, 0.05700303687685592, 0.30415308294814003, -0.35867153566428034, -0.0023855767510027044, 0.1685981895007116, -0.04156334264931132, 0.19196158638984015, -0.03895415204843081, -0.30737208643321234, -0.2113113660750466, 0.17867198073943624, -0.6579645966169086, -0.15020824407066038, 0.06330282001699483, 0.3444827764673284, -0.4639803756141403, -0.17682592240261824, -0.06318875394835059, -0.47302977777307437, -0.8667880026378711, 0.1578622225413036, 0.14368850837851913, 0.24241652036583033, -0.03833187800409927, 0.7553674332513021, -0.1074051363130279, -0.2654213022481422, -0.25714546355778395, 0.017655456432648715, -0.17062243874127792, 0.5614038291743918, -0.30278430438015774, 0.27804279342667604, 0.13331146023174528, -0.5018550363826086, 0.40355801489928295, 0.3213378272937398, -0.40339098939525825, -0.24298518448897935, -0.11521236386656218, -0.2715080633231496, -0.036210597650533374, 0.19396354352858006, 0.2710680524564673, 0.26317649202992405, 0.23584648334932698, -0.1005095671769134, 0.0758513479382555, 0.031467791091707914, -0.5676408500226219, 0.31244985130760655, -0.09724080611869529, 0.0011862158364609073, -0.04901066143346279, 0.8838244344536389, -0.36802277792846627, -0.0024998780662103073, -0.02363149013679643, -0.08068839198825839, -0.44818898525167894, -0.15397633952107917, 0.21139017811654548, -0.07646680771932686, -0.1370039393235729, 0.06419404734428907, -0.1557151178933629, -0.32559782240783736, -0.5114843005643176, 0.04894508459820361, 0.5630652678829648, -0.15365491848806628, -0.18279465643516665, 0.547735901630576, -0.22037002801730765, -0.6740369653693086, -0.034564453258935084, -0.16677563392157757, 0.04815740926323424, 0.4655780220164405, 0.11649181342736736, -0.4689513132907718, 0.9976113910814924, 0.25291343026261726, 0.10238451290850609, -0.029274632448308316, -0.5817590352918233, 0.04202456367216023, 0.20181250718366608, -0.10844067481184287, 0.0653975079326586, 0.24906422459068592, 0.03658996533286843, 0.1702067101077598, 0.25502673724950076, 0.0021714942867828426, 0.13135282677589857, -0.5445924266680957, 0.2491046581831009, -0.2021554675446573, -0.1067667340547332, 0.4273552125982278, -0.023628476806460994, 0.5497216837475845, -0.8169984225199447, 0.17034090894670362, 0.11670328716993975, 0.7144638286633385, -0.5636720048752063, -0.0033000530897997365, -0.10529235402430316, 0.11995309987707552, -0.40578791232525546, 0.5184665805309845, -0.5717495859775403, 0.1276572314397721, 0.17127570732224012, 0.1522074382027751, 0.04071066731293012, -0.1137014820574955, 0.543812544877208, -0.42948257755150804, 0.022633513265120028, -0.02650381501976932, 0.01102827542927618, 0.053735972537890246, -0.0907733276226059, 0.29568628703556077, 0.5466012655185266, -0.4774113836798778, -1.1708286445586995, 0.1337480190044596, 0.03770484882754321, -0.1410455691070038, 0.03905088003155989, 0.7501431479103013, 0.35242295631199916, -0.19835925812261657, -0.14720393784368543, 0.6809014567970887, 0.20329285560247057, 0.39307147362217637, -0.2786664855062308, 0.38266415729614817, 0.17808921994608432, -0.20851716156968136, 0.4570676518546637, -0.16113811789420435, 0.3598212031543081, 0.8200821116324692, 0.29206654602284493, -0.11544933164440391, -0.5791472274212344, -0.34029587939696926, 0.1561076266444698, -0.2745535339608163, 0.12693388940219116, 0.3766856685169001, -0.6094555917342467, 0.31227561461951964, 0.4894608009194083, 0.33675012069475885, 0.4801994130343811, 0.48357994796201065, -0.15395250547364903, 0.07891651822725877, -0.7031435881211272, -0.5038091997974484, 0.1800126711348176, 0.26575713451987515, 0.037929463309552054, -0.009788539879623977, 0.2546750838242043, -0.061019179114811944, 0.08845521922451548, -0.03551498839424622, -0.00399404176774521, 0.24916331890195859, -0.33801279551088237, -0.27616539013155145, 0.16893262410572274, -0.29517524722024446, 0.024220188304765855, -0.4246845960194442, -0.3977575836439222, 0.018321636450617195, 1.1552928177247312, 0.48465711062987393, -0.07535815343647397, -0.1991979301485411, 0.24429047619305566, 0.4553607074396768, -0.5434643653504652, -0.3035128778583106, -0.018906100986303225, 0.002752212378129916, 0.1232884936385088, 0.9569409635135125, -0.3320301057269675, 0.3100688015342321, -0.0909614612078122, 0.009532497522348464, -0.08460670936204946, -0.2653432613751306, -0.40365293269378283, 0.5815951797905332, 0.10354201661756926, 0.760846552489564, -0.22635965369427302, -0.08958802501568741, -0.0836746849055354, -0.21230594453043605, -0.1631304332632857, 0.14476988169957222, -0.09559891620142366, 0.07615669377585899, -0.0216415365137992, -0.004305036301269596, 0.8683409040443479, 0.5960645392778128, -0.21987437423130549, 0.3017836387480411, -0.10673763966379794, 0.6098697729014443, 0.13733903064025932, 0.32551047208208694, 0.1269678446515714, -0.22697058192511116, 0.2808796776398314, -0.07137913556325759, -0.0030467598209112778, -0.28818537103945036, -0.27719220085036167, -0.5242909561220664, 0.40137844108978715, 0.48858410943663505, 0.2997851610619037, -0.0889494287575386, 0.3189427242722061, 0.004081912097075895, -0.14775945765239135, 0.12001187135750065, -0.1707652285550468, 0.3103181418258135, 0.6651565032757064, -0.4251037228594194, 0.005478363616978343, -0.2534678745554075, 0.04079157456385126, 0.38569016435918824, -0.4236983947233812, -0.17309801873590375, 0.012079059518173134, 0.06263039924760075], \"y\": [0.024030274393470222, -0.20481481254265138, 0.5154890932011171, 0.45663573910620925, -0.2914756708448049, 0.0013604483278785598, 0.009419259241529294, 0.17941853748510794, -0.10015085000941631, -0.7389494782040444, 0.23408965425512626, -0.009827975987570299, 0.05889138158567134, -0.20044892219130106, 0.22790607737113908, -0.09785415615743433, 0.244989683605442, -0.24407583097501956, 1.1766200255814139, 0.5866748881074595, -0.47269419313357386, -0.2235588901184627, -0.15610565125102138, -0.15720913566185798, -0.10221810893220551, -0.09606778287468695, 0.0026010685345593796, 0.05615712554322661, 0.06481507635423434, 0.20865703956691123, -0.3780783552387373, 0.5694066711385081, -0.08628897172423455, -0.5335551739706188, 0.8141614637760437, -0.4062445519710013, 0.3099433363663511, 0.35165560252887756, 0.011247726209581276, -0.020640603786213227, 0.5867743269428474, 0.2817950466996646, -0.019898810344938178, 0.20892949318156973, 0.055443392471376564, -0.14549451912030376, 0.5688607866265104, 0.6559116045121471, 0.7001795548657092, -0.4428838405667423, -0.3014307610271552, 0.10219608886124831, 0.029562957124469654, 0.8009398680501107, 0.00945548743988927, -0.15691935046792488, 0.7129622901707173, 0.025435692061100586, -0.3320476954084059, -0.5053459617479477, 0.15053246735183856, 0.25316799772420306, -0.6374892207476878, 0.7129630156667487, -0.9238901925461134, 0.34694766905051927, 0.9001589198634514, 0.12022129195203356, -0.20919800893668739, -0.01034955602253444, -0.059385032392043055, 0.2833211629927308, -0.5375623624778497, -0.0957628669453153, 0.1521289175868486, 0.008759024449749431, 0.19807836400967424, 0.4509494087047694, 0.30944832322249116, 0.23984182134247478, 0.4922578067379793, -0.6683745465285472, 0.411119114612958, 0.4462173959206669, -0.766825319323846, 0.48661340257798597, -0.3874116573885433, -0.4434059575383025, -0.14115131197323957, -0.32545514646060986, -0.5812049621065579, -0.27496895023883383, -0.135426720235926, 0.5701334081670069, -0.0724800166505906, 0.3930348498361472, 0.21881615832309811, -0.31225332648443277, -0.4045510494907644, 0.017241430768308495, 0.0812497279838543, -0.23823999227785264, -0.19971299395039396, -0.0012587776659432226, 0.15883267139358112, 0.18618703064294928, 0.2825782003890061, -0.10818012791876074, -0.21313872871761816, -0.18096505125155285, 0.24469636646988768, -0.16671851718018726, 0.1514161474612219, 0.15730804945809393, 0.13884986753428882, 0.47095652101759994, -0.07010776058710456, -0.029299661588986222, -0.17269714258802119, 0.43963976909670205, 0.09420001736621383, 0.588453844185023, 0.9042069168014623, -0.6409595891662467, 0.08670949447321222, 0.2371479746639472, 0.19542321530765294, -0.5113972523539094, -0.100205031683532, 0.7033914794413673, 0.2692322668462667, 0.20567270394097562, -0.3689628219589229, -0.11193598429496884, -0.09197962556706685, 0.1884240111439847, 0.44959310860009954, 0.14531088787410443, 0.3829229220073395, 0.1648292552564376, -0.28233406481525464, 0.07917002341753605, 0.7516974624940045, 0.21471026510113697, 0.014498646480954147, -1.1785651514622584, 0.2679437581362835, 0.09564652365063843, -0.05363235018280962, 0.08738475386914413, -0.16190019547213017, -0.12711466704665134, -0.4232420940372395, 0.36399110189693334, -0.029957183109911637, -0.7455987420099419, 0.07572775135574505, -0.06875649463351532, 0.42096564130643604, -0.6894678715415907, -0.40313988799882955, 0.12489641119707744, -0.17874068822660302, 0.04104161886275064, 0.7157148466842942, 0.028056806501905722, -0.2257535093406647, -0.18505551424775057, 0.055625399796830545, 0.3553601594072455, 0.09204434966803907, -0.1567659681505445, -0.6381607580793496, -0.24207898814094544, -0.6124604139825742, 0.37531547070156124, -0.3430366222475158, -0.5086556039113658, 0.015337701290940954, -0.373346153979183, -0.15143469602636228, 0.16129798581850213, 0.35349569236250605, 0.24956528657699842, 0.39321900823099154, -0.23348864543346556, -0.015733477379256452, -0.5959130983720631, 0.7551934164493869, -0.1106302309438035, -0.06523834393943127, -0.18602723377402458, 0.03369434022880445, 0.4462685860323433, 0.4037429446895101, 0.42485760186719784, 0.28201809320651144, 0.14960542741531543, -0.36227188023335133, 0.16058523606603878, -0.4201628126974589, 0.6130290196592184, -0.1713729511619902, -0.4104473875922761, 0.21980433925334003, 0.025766286623246887, 0.319387791489449, 0.22810342944140094, -0.02912322839907779, 0.2589804884609572, 0.7757561448266387, 0.36015865675840114, -0.5375197130116075, 0.16610808624781823, -0.35509980263337443, -0.4840843892089828, -0.055971490832909435, 0.05169388927762913, 0.14858417107683822, -0.16523422755129819, 0.4181732976784142, 0.23778818585865205, -0.02725495940627688, 0.5123641940006771, -0.02801103437432972, 0.15393231048697054, -0.0017815804996539036, 0.10827620752502891, 0.2433501933508516, -0.227015068609531, -0.5282358645103888, -0.08919284380540594, -0.24365521147945454, -0.9031101858226822, -0.01433045753770057, 0.7000849171356595, -0.0067584683869577914, -0.09980796025218688, 0.476458509660889, -0.0774317762777069, -0.3600222837232362, 0.00247110710792595, -0.22799510874421008, -0.26138073931652117, 0.010609259527801186, -0.031534722915785796, -0.4212655064788363, 0.018668633108776138, -0.33964707707542047, 0.20029803819830605, -0.21529139578901008, 0.5853099451920536, 0.017060175459226442, -0.5992390017582969, -0.07314023409962433, 0.019380401384060834, -0.4212336892246192, 0.8840285327883484, -0.45390380826303317, -0.14496467544555403, -0.0018489858065459006, -0.4205562401728643, -0.06262057681565436, -0.023949107865138555, -0.26448632733790783, -0.4045737002601406, -0.3666544961948519, -0.12325924615553216, 0.5044338728165287, -0.811187446671843, 0.04849511178871966, 0.5601205990384425, 0.2413781223676268, 0.011827394728702449, 0.33672295980872635, 0.20673499762347722, 0.013896746870550682, 0.385218068141631, 0.12301611015086902, 0.8736714875991485, -0.5715545233362032, -0.15318396247291102, 0.5512742963315527, 0.3500685370274523, -0.1257912063016782, 0.5513497210405296, 0.4967362282450622, 0.13971192372604282, -0.013147954013869473, 0.11608054771475705, -0.20189969224508145, 0.7485427209269572, -0.5692800344248796, -0.5610766806652817, -0.058100667822399706, 0.08006736296068728, 0.19694531734307644, -0.10338368737061765, 0.025493187503186843, -0.12219483919261513], \"z\": [-0.14346595518692573, 0.31916326193753336, -0.2395813634502514, -0.5633231856612417, 0.13941506593006525, -0.2485683851101677, -0.3299044800872393, 0.13581427316070874, 0.07033747091810603, -0.02439539386484955, -0.44920935732681727, 0.020868627991033215, -0.04537152812658108, 0.16752640304320174, 0.015543289869336755, 0.066158853506925, 0.1582678419957516, 0.5245474442377908, -0.38180060302493996, -0.18815094246918823, -0.23503461196330314, -0.2436419470099769, 0.05241288296969976, 0.5647385260044137, 0.18968703529865322, -0.18149135816731396, -0.17432599129335985, -0.21004373685844652, -0.254976214757026, 0.1346466143776785, 0.01326020216207138, 0.2154011268274435, -0.02775486531286654, 0.20533656191665275, -0.6935551384178871, 0.5524404951342299, 0.2804891816804832, 0.44172768344573443, -0.15524855448594663, -0.0189524367019667, 0.43267316165165554, 0.1645255824932687, -0.06253538427373863, 0.1027819708366085, -0.1143354017973785, -0.5157882278859892, 0.3190413090860487, 0.38700285090661046, -0.05891573252672233, 0.44696089330686695, 0.31840690120633464, -0.2454156266596133, -0.010173866908519822, -0.07063123933568663, -0.4454052820516912, 0.15445501710087417, 0.412629341867517, -0.1476735117504279, -0.1276309526200799, 0.26060600517041593, -0.10043983246971089, 0.21266740621494337, 0.02956103199007224, 0.05094713337345598, 0.18431249029714403, 0.1281277130662159, 0.8328109871080362, 0.10942920576721957, -0.2849522894833007, -0.41638271450726383, -0.03430359410834112, -0.06863621267612399, 0.5384373363964203, 0.419591262239084, -0.1648854361940219, 0.05231102854912479, -0.04660436031548608, 0.03450557997420659, -0.059274633373433396, 0.06668341144530886, -0.401310875224589, -0.11752051166201308, -0.018184745091849433, 0.22312536569245223, -0.269854432703661, -0.09503841923596293, -0.05662238156224854, -0.46861841289259293, -0.39792631010146823, 0.09557200391150504, -0.6001951122840335, -0.16102125379999938, 0.09689565976989396, 0.16737450232712153, 0.3678448262686584, -0.12658226078841242, -0.1804104370648109, 0.08932237142366257, -0.38053348563913936, -0.09922625936846867, 0.198340141334318, 0.05530245360737768, 0.26304730085426375, -0.0007301634836985014, 0.08439761208087576, -0.03021531250138055, -0.024544146638161762, -0.3203077784403962, -0.04918615468954082, 0.4610590037193097, -0.5774151395986323, -0.3834853130955015, 0.2474966989459828, -0.09854993687691249, -0.2832600489303715, -0.1536779029238538, -0.45597501663101164, -0.025317100303891168, 0.09743896905475952, -0.19774563979545287, -0.10541991820793563, 0.17183874183652695, 0.15118435882635017, 0.6292799092453608, -0.2167979908742533, -0.01899963124366273, 0.27046398004514566, -0.34347703660756096, 0.09304879313435412, -0.13457123026390963, -0.41201342836723076, -0.3317376547546642, 0.07352826225139171, 0.06637021811545835, 0.6208941024249481, 0.06968213408660309, -0.5117600974086376, -0.34832655218626174, -0.0006792719191349972, -0.003483587479389374, -0.10251245638150003, -0.6604619069138391, -0.2718782892927966, -0.29690439852901535, 0.8700626789166175, 0.37848916190450743, 0.2823280433894189, -0.028407400234683352, -0.0422391707725665, 0.6472823523397265, -0.30209761609565494, -0.11658597354322628, 0.5238076041095266, 0.3150848044841279, -0.055791208393619646, -0.09565588747568025, -0.5364786174470199, -0.008757735910167392, -0.5630166593223371, -0.23319043942531228, -0.16236915856699558, -0.12232768710224463, 0.12397912164003505, 0.0459759511711643, 0.1308645919741658, -0.8689130551035816, -0.21282445327636199, -0.6234866549600668, 0.23470989337839193, 0.4101483035918654, 0.008435136547650011, 0.21410318657903468, -0.40452630960989666, 0.19458185872904224, 0.2538024800561111, -0.257974857404743, 0.4831999037798975, -0.044825594106043413, -0.0714521980369617, 0.2838434662257461, -0.1459897914299317, -0.1891834878709287, -0.1160360092188391, 0.33054114289875136, -0.1954390778662009, 0.011575280320248784, 0.30345738846978904, 0.15645858240963245, -0.0952460817718065, 0.005134921212497428, 0.12090493750092343, -0.2067805249856682, 0.5434908626576107, 0.23044291388276805, 0.4239229636322123, 0.44143842755305623, 0.3980869637755915, 0.17815246249986685, -0.44284478783070064, 0.3519948612418338, 0.6127091717010679, -0.46457568353908113, 0.028290130902529038, -0.720197839430062, 0.41400442356857414, 0.06791607973788569, 0.08386550091690911, 0.4084212231897008, 0.16037375228420503, 0.5245550602819922, 0.48348415609895323, 0.34092955622918625, 0.135211549044866, 0.5901629477349427, 0.40652614745467214, -0.010395540988469872, -0.14239893836086104, 0.013034850202885957, -0.463125855638601, -0.17136905883564982, 0.23594838710482477, -0.24207383625147577, 0.014789574258712773, 0.2068844376641459, 0.16428643042486185, -0.41764545627509286, -0.1629227576964334, 0.24815983412338513, 0.931952007199813, 0.24031398958498768, 0.05153080889564323, -0.08193580590942179, 0.2630416267216055, 0.21660923582999123, -0.9017459039811778, 0.1642801772514907, 0.441355827903407, -0.4257289566732697, -0.36858833415842746, -0.005691504955974647, -0.07364566068226143, 0.0019713828039142406, 0.07820045304579347, -0.05433022607518368, 0.22408619410025504, 0.25954197353098707, 0.40934393077108905, 0.002366881969142335, 0.6979713037527513, 0.8106579862952943, 0.40663104797997035, 0.5479987227837158, -0.014018462638775642, -0.3995412500504464, -0.15318227382641664, -0.07714723239838403, 0.0041231471402906564, 0.5373140111003583, -0.10778655992197281, -0.08801104964004021, -0.064508939620368, 0.19256843962700754, -0.06468469704389665, 0.11115096406384958, 0.30738924003763335, -0.5278266618579026, -0.17472963504359998, 0.15666369713955774, -0.04284183018092119, -0.6355707478697561, 0.6029541034762453, 0.41661496168379175, 0.3450990295097888, 0.4655757295785699, 0.5356456003504699, 0.4909424993445787, -0.06199631366964228, 0.7373084317463032, -0.0932540541683687, 0.48197725040266987, -0.08872750488219643, 0.09667858176825685, -0.061286851069707084, 0.29723707879529226, 0.09400795030139325, -0.10707809911372355, -0.5598305044960786, -0.31165917936827975, 0.2645688388666428, 0.21396768079122752, -0.35995115727592775, -0.3558288502118506, -0.21210523053594055, -0.27100034588099164, 0.304791880099304, -0.6504579746626518, 0.47163931241350976, 0.20713351608314062, -0.012901493157158864, -0.005847499349883443]}, {\"marker\": {\"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 2\", \"type\": \"scatter3d\", \"x\": [0.47249282575808427, -1.1381053012405293, -0.07292920713905543, -0.8895025174719504, 0.16373881202208487, 0.38536784196824925, -0.014289469469173963, 0.13594030398855442, 0.9914906979267414, -0.34146729979690477, 0.5164025840970627, -0.26944258231360974, -0.20871719742219408, 0.6878932230747515, 1.020863790974766, -0.576549817139427, 0.08757862276956853, 0.8459925315243536, -1.2131526724639607, 0.8702191054775358, -0.35377102448568437, -1.138815951824953, 0.3750917407114109, 0.7871750927069537, 0.5994031497509498, 0.4939757949514788, 0.7562672526171081, -0.39469472403519823, 0.9476262336890324, -0.01157401355103366, -0.8641799000853246, -0.758953318598221, -0.2704187549754157, 0.40941995073383547, -0.18093704839049213, -0.06041394133390906, 0.1689189557218902, 0.7455220930102265, -0.9622978890601777, 0.08670782267436453, 0.5484963589775866, 0.13309894021622434, 0.2033241715246195, -0.6961826050174509, -0.3101227707430548, -0.3492339168023288, 0.8073193645453193, 0.19430104936100293, 0.03507106036759394, 0.8068885131449998, 0.3837438661584657, -0.41119985327497166, 0.4451899665938782, -0.05357268901206917, 0.44767791277253044, 1.1089286250133064, 0.5004473137416503, -0.7946508179961635, -0.8815671695159074, -0.7971498210518343, 0.029960233122858143, 1.033506295298601, -0.06581133182769415, 0.09259463093176783, -0.6174516433900944, 0.7075800357498016, 0.026129085380891526, 0.6127423156777898, 0.31587774521340817, -0.45875823088187284, 0.04438302347552389, 0.18998154409533727, 0.2446309252721709, 0.0981092571614242, -0.6091946757835417, -0.7251330728792125, -0.7822699045658406, -0.4930855996326327, 0.5431897042226075, -0.4468215957734876, 0.10383272205629625, 0.506815394227983, -0.6323286664218015, 1.0308977178507444, -0.8908374557010735, 0.09373679891018846, -0.22773964725260726, -0.3253815863263911, -0.5139758604820781, -0.20462641415226868, -0.2681450991316598, 0.7019607139727028, -0.030626343969307034, 0.6985040179921, -0.5408291876153075, -0.01925945332589987, -0.10960476547559697, 0.7571692182224679, 1.0305830344727873, -0.4623280225423736, 1.082357651244212, 0.6634485501457742, 0.6559518764092552, -0.9974359507732455, -0.4978119951791458, 0.31142700364602177, 0.482835889936058, 0.3259361480150542, -0.5938537632416254, -0.36887811260821185, 0.6928527319240406, 0.7635171026744837, 0.965164630433933, -0.41878588589296456, -0.4601170898476761, 0.5150558329560295, 0.8871718874754665, 0.6963898001453729, -0.8067202240501984, 0.4495950883283418, -0.5834724209473204, -0.2692871243755407, 0.22546517983895273, 0.5890273420097282, 0.8810303290433139, -0.16152922612848794, -0.5519736698569611, -0.2929847906157687, -0.06973187926850445, 0.6687890905083281, -1.2170644642105406, -0.6229455549209854, 0.4364403257854201, -0.882906484356803, -0.2256816176396592, -0.16642578361078778, -0.6160723185877988, -0.44383442896136227, -0.3239411777433807, 0.8045590146432816, 0.3114120633087906, -0.7868983101475282, 0.5108011458313025, 0.26459280527767876, 0.08668758993350736, 0.1445721729219285, -0.20419611928400244, -0.908794555354069, 0.556678658712834, 0.6774174349653792, 0.5892071713778746, -0.45896192753989173, -0.3343078470834656, 0.5206494197132606, -0.4169968572892964, -0.6640020669831562, -0.5226191885227301, -0.8080790521551727, 0.5597784820953312, -0.6107719725589641, 0.09662259293961764, -0.8632183102977498, -0.4366605078228842, -0.4261081309211542, -0.3051682353743843, 0.7268244694645811, -0.06795739790592567, -1.2910782489732455, -1.031813473892792, 0.8759191286921113, 0.5750929997888601, 0.6380084615439311, -0.4586652043692104, -0.6064201763355356, 0.6818638458798525, -0.010902723670402587, -0.7502732335221439, -0.46291049436896714, -0.08902890726563398, -0.17238415635010945, -0.019087051643018882, 0.46339511756983487, -0.14200215424276244, -0.4236553429699357, -0.6056715649573208, -0.29019900894659845, -0.6526764871198386, 0.746651147911165, 0.06104104005992809, 0.971572511709606, 0.5446253981675381, -0.3843377593714223, -0.7165054552954148, 0.750981304517318, 0.16783072650814865, -0.5984274261227932, 0.403592609708356, -0.12260831622000277, -0.40699924755220634, -0.27815243704634973, 0.5894079426691243, 0.2877626985254666, -0.5479478391960632, -0.09353145924555666, 1.4786601113860536, -0.47023237322779415, 1.1195606934307683, -0.3840071692062156, 0.6393104808135375, -1.003860839216082, 0.2628418105129101, 0.3066209462176872, 0.6652541786119935, 0.3574430278737025, -1.1150695496764291, -0.9881827121177983, 0.2910207589155915, 0.13938902907337564, -0.3663261518029405, -0.7782072891647738, -0.1760735476423313, 0.21321234039186912, 0.16850173284282297, -0.333988221049532, 1.0323808881145435, -0.18836398934010062, 0.34615489856864345, -0.6617203703240607, 0.733708206417087, -0.1607104107623535, 0.040150381340251055, -0.23920502308303346, 1.1855771545775293, -0.1714150170206765, -0.13263776486945741, -0.137849224526069, -0.18299649783881544, -0.4297801011745003, -0.6239458562176188, 0.5478105916631938, -0.6243696772282188, 0.004407426373357372, 0.9137585404456476, 1.2681545149331401, 0.307030611594145, -0.5930962986866377, -0.3296952679605047, -0.516145169833716, -0.038810325489665384, 0.14660679146841957, 1.1230767692416102, 0.3369761126478938, 0.10733996492567154, 0.9467245115500774, 0.4327780023011763, -0.2186136398549745, -0.42399692908829273, -1.038859935845713, -1.0551815932280841, -0.278817834256949, 0.18688040543634477, -0.31990046938461936, -0.35835531358705563, 0.6257306648559551, 0.12392472834612632, -0.9515907965467637, 0.22743851933990264, -0.1949241811301307, -0.11822877503316558, 0.5587830450244448, 0.3196263621157465, 0.342840591640064, 1.0485608503262278, 0.7130679953903937, -0.8460051715328266, 0.5243656588069086, -0.03906091093104975, 0.34736913260029717, -0.9384160491532503, 0.4533509093249123, 0.09426170368273404, -0.7379453861508966, -0.6624378057631077, 0.7611467308447611, -0.33488411177150085, 0.0875586753640292, 0.026192658504304956, 0.7798249789034488, 0.9015648031211624, -0.4479631476604365, 0.008220065039873183, 0.09484150133987088, -0.5606745622781534, -0.4558495178916209, 0.4699734917572499, -0.20844439263427866, 0.4237985905152566, -0.528298750873141, -0.29763952143689465, -1.13848108332366], \"y\": [0.0035770483167975324, -0.34328237577132775, -0.19652003636205106, 0.17275855522270714, 0.5946296344162334, 0.9235549159086711, -0.09926111484866879, -0.5749995382840007, -0.7631278230327665, 0.6488418581431761, 0.2564785526311366, -0.940279773900247, 0.4483767634171988, 0.19441605230646475, 0.4259909194270491, -0.10515743217676754, 1.0166713220091872, -0.43957891210468625, 0.16148081099973172, 0.44519533273570494, 0.6011284300526203, -0.2849756685751266, 0.5612876598958833, -0.3103610327011935, -0.516480575834649, 1.1150845265716645, 0.3406073657737472, 0.9447705629574248, 0.5107245456947895, 0.613788327452403, 0.09528836069912695, -0.6035830075675894, 0.7707381973130922, -0.9349181587429971, -0.7040319775375162, -1.1126884963803205, -0.5638230049961518, 0.4349174887778694, 0.7752799419976699, -0.305802566553826, -0.19976095654142967, 0.14458836584894247, -0.5397046520509524, 0.7886695158397968, 0.48763479741549265, -0.255325757084618, -0.1617930439242174, 0.7721654493860453, 0.4150871585053949, -0.08121666486015083, 0.3683890427140372, 0.6339904882442774, -0.17183738455686273, -0.7565889861834597, -0.4768498168075645, 0.16900819103650014, -0.7471855700205159, 0.25157180445875504, 1.0580116615558817, -0.12670109208472363, -0.5492887505091318, 0.17713552813750613, -0.369972062184613, -0.7940549672618216, -0.37798238261502626, 0.41050974989117506, -0.6078008526809683, 0.625288396729289, 0.8052300800305328, 0.841824520771445, -0.7706272905521924, 0.5100838621045308, 0.22896355133258645, -1.1003365310996507, -0.06367049359915962, 0.4146213466450848, -0.29243756029193574, -0.32749285267459355, -0.6767811860073994, 0.3911416098551814, 0.0636592451598755, 0.2663440601660343, -0.6237387323270307, 0.17749233583996615, 0.48049380335672637, -1.1659478465811253, 0.7975660344964574, -0.4370818119254779, -0.26631505048917226, -0.5722332182568313, -0.38496042144993653, -0.3089580608315283, -0.7884885033545638, 0.055767030321688206, -0.7009069518033559, 0.11211241923277857, 0.25416132095540683, -0.2628235914721774, -0.3398867469343071, -0.7044070621701571, -0.6370317680230146, -0.2898210158153675, 0.09608196756201559, -0.4424808016646801, -0.9143273230678284, 1.00122302786258, -0.5879146779138626, -0.7547410801913628, -0.7269072207643097, -0.9474153677518892, -0.8359680476923749, -0.6919352174464217, 0.06684112589343386, 0.47697386784202217, -0.14694876885103708, 0.9299934457446528, 0.26345695099684346, 0.1529388472387963, 0.3037704056822394, -0.6022181768704257, 0.7320356288333885, 0.04282156631868892, 0.8320574897792365, 0.751648546478198, 0.6963635901284557, -0.4073033112006784, 0.6749494525407185, -0.9710734366317028, -0.0488863447746456, -0.06362544660618037, -0.15985750659654932, 0.27346376402359174, -0.9297488982943722, -0.09683770305565909, -0.8340405025234825, -0.21019017935802112, -0.15273789306397645, -0.47638184215894835, 0.7086247721081269, 0.3030993299599975, -0.382078017657445, 0.198308803337982, -0.7644342228309925, -0.2546221827236931, 0.49494332861088186, -1.079807980910074, -0.03630315735748486, 0.46240103670268284, -0.9128616314382356, 0.2014963548302368, -0.7370328891456758, 0.36175629084526145, -0.7346641476026833, 1.048006833351578, -0.4107230132490382, 0.26741779550183803, 0.4059963519436999, 0.07228476532244925, 0.23179377870457568, -0.7894971869241123, -1.0346866150257576, 0.4926177534531118, 0.6876750760787993, -0.3885410769212476, 0.07648571690328626, 0.1640890524871004, -0.11666585918331432, 0.14419677178551385, -0.5071446946285084, -0.19297805727295103, 0.5252841415246288, -0.41725552832366647, -0.8640194464021606, -0.6302289835469799, 0.48049091283404405, -0.07672691896066987, 0.5245178847301044, 0.18254094989963698, 0.8658986533074001, 0.9279700866659404, -0.716565714890737, -0.818345588321952, -1.03641227418712, 0.11752858056706832, -0.4177365719941189, -0.8490786999964521, -1.0655679757029604, 0.8030237829198313, 0.5180858330158973, -0.06432746484728948, -0.7642952987769903, -0.6808530877647024, -0.0265479006400434, -0.1981638140669291, 0.8339274127419631, 0.551838653888061, 0.43610352861800855, -0.1775736305330307, -0.6806480432829966, -0.17638346269555003, 0.64818370276953, 0.8177587675358408, 0.6255564564029598, 0.3062293767316851, -0.09589032363434294, 0.11229846735807503, -0.2725322991521416, 0.616754927218899, -0.857308407177234, 0.40017868056374234, 0.29864724450374736, 0.08490420945335068, -0.6532716805034849, 0.6177526144276889, -0.5678699777913631, -0.11775047374637679, -0.4799415980460599, -0.6720771139477859, -0.3580923154561095, 0.639495186423821, -0.48902977072212594, -0.8968328695033758, -0.1151371485361219, -0.7669281006275022, 0.1093980926262687, -0.7068517147664198, 1.1061969155578544, 0.4112879871190207, -0.19271057941189884, 0.27210178684922365, -1.027717909262395, 0.6614737071467276, -0.6386091776460219, 0.04095194311202224, -0.6159020635701126, -0.5746607882135593, 0.24367510459055505, 1.022164146440188, 0.0780953666894972, -0.8519456048755764, 0.41994055966356525, 1.2619504895698452, 0.5166157341739871, -0.6533167758802177, 0.47756278616742415, -0.8479897647188529, -0.5150787326762145, 0.6186440526070963, 0.03718221450167374, 0.8457458291075756, 0.5195109086918456, 0.18408572879033153, -0.20667382119120017, 0.6371254943961773, -0.21045490522302113, -0.08979535023830336, -0.5062527848556967, 0.07215420707922299, 0.5615160970920917, -0.8842222871709657, -0.4005299714127283, -0.9015644946397073, -0.4867476218951706, -0.4272592457363396, -0.6732065926621417, 0.8982153704028772, -0.9519680660119977, 1.3403343418088027, 0.3945249164189624, 0.17704657425063222, 1.0107806211405137, 0.727628015655482, 0.14535684096398174, -0.16846696536636938, 0.687244437661335, 0.6955274851162828, 0.3715985424282581, 0.19659130103013825, -0.1694420151268003, 0.7210092398855665, -0.5438672972454336, 0.30499408412618106, -0.23960532603794457, -0.5358248238129997, 0.4352422706802759, -0.6601380066906662, 0.33801691821277957, 0.48690689634330053, 0.37868838570506685, 0.7735911995670872, -1.157539779992175, -0.5849878295799772, 0.10083397314446058, 0.33088838446238616, -0.5036634192695784, -0.741557776823114, 0.24096870572225876, -0.6114830376484259, 0.8189094772381422, 0.5012789192931144], \"z\": [0.4427785634710451, -0.3109660261972314, -0.705747945481714, 0.3008625372113028, 1.0443135715900238, 0.216646992919409, -1.1589539282259331, -0.9558119683196578, 0.12268254636428802, -0.9655289830608742, -0.7030934388568563, -0.5589094360910216, -0.48798779199694065, 0.6826310756640797, 0.3611523519417016, 0.8430713862824741, 0.3811550638961457, -0.08720665119971027, -0.06795309153997516, 0.11235146101993965, 0.5796837681531813, 0.08826021694905123, -0.24761579297749048, 0.7031442193252273, -0.023494174965903673, 0.29808167895872456, 0.45868761752177506, -0.07955306423503906, -0.11376060285570679, 0.019057383133844127, -0.029766171945723882, -0.7214466268436471, -0.8425708744432578, 0.27327676481634716, -0.0692116996852731, 0.07810400040179961, -0.9793760716789677, 0.5233856109605756, 0.14775923149724055, 0.802718221513647, -0.6824691930779282, 0.4632867299399087, -1.0339272924429856, -0.15089850699355797, 0.3264955226070746, -0.48297554568880396, 0.05968835188252105, -0.8417496787557566, 0.8426002604743447, -0.21544916193413635, -0.5959722581291556, -0.22998807631766555, -0.38539702291484906, 0.013431986121974411, -0.43580551814515867, -0.18247522342438008, -0.35510161687702774, 0.04862426196698352, -0.4901808442608525, -0.3172510453612888, -1.1038643482801407, 0.8085551629135662, -0.5740571842756801, 0.6250574611002799, -0.5288152113757285, 0.325056886459539, -0.9296777177521851, -0.0023033662915591968, 0.2516700253978474, -0.12156814344344628, 0.5103211599748145, -0.5380568425225382, -1.109643320297396, -0.49280029944970416, -0.875756122625826, -0.396697276683809, 0.20105804771632693, 0.622938012497581, -1.188143075953353, -1.0283605817675678, -0.8230722185072578, -0.8597326362932894, 0.2672059967878145, -0.3909111506642192, 0.45240289499561065, -0.33468421645877316, 0.02887071749040646, 0.8633682843025589, 0.29654055904620624, 0.43715460067162354, -1.079198363084433, 0.26034276865308426, 0.26337009678647944, 0.7111081498039555, 0.7164765680970981, 0.7796511987429694, 0.12589338469607478, -0.19979412734521662, -0.6021350804848891, -0.6572501329633652, 0.14873596748311302, 0.27289507290992226, -0.1113115836305989, -0.05330663346768774, 0.12028457693848513, 0.1627212957682766, 0.9105462833373131, 0.7070053571816575, 0.5363884197282057, -0.522182991209682, -0.17916896897140272, -0.5572421098371971, -0.7126843595663588, -1.141649193330288, -0.7238480065375309, -0.26687281390093065, 0.03031401142741078, 0.43140913329746466, 0.014445723876199546, -0.8018139614652626, -0.5458214834175558, 1.0450695912381653, -0.41064248819972243, 0.2990604606155933, -0.30427763316176004, 0.5487511035096444, 0.4996459687465027, 0.0864296801808191, 1.1474541915113814, 0.28571545535862974, 0.42474498233565894, -0.7901924188743732, -0.23350330790113502, 0.23883194844535152, -0.6929296967790074, -0.9733394182281294, 1.0672309441684344, 0.28762510773633393, 0.68142463355117, 0.6563811706574996, -0.8269846048558169, 0.4315074303833864, -0.12187904860355189, -0.9675791879622239, 0.3933529789024406, -0.4860190611227846, 0.879893666608398, -0.10970180176056073, 0.0947145816722996, -0.548912539603347, -0.2406368933519255, 0.1011982507715507, -0.814053641049208, -0.3303306543599186, -0.3048102791604254, -0.5758920371062014, -0.3615474874796567, 0.5215110810960111, 0.9534697648562476, -0.6613675992266614, 0.6472912388817911, -0.7777386591553145, -0.4994725533790988, 0.511296374304303, 0.9250548615884931, -0.8450165007926506, 0.7424543651461256, -0.293807876697978, 0.2634881058704498, -0.3385731577767587, 0.35957143845143685, -0.41131698576060177, 0.27016517305740395, -0.38136529857581314, 0.8487502479272729, -0.9281983346101519, -0.6118153511287348, 0.8607322844719676, 0.5941646746936934, 0.13884983654345534, -0.8883585999596296, -0.652198255785346, -0.31312979487668413, 1.0316879359780062, 0.3415950551973953, -0.5729583872952964, 0.02164937877176055, -0.0617500166277387, 0.5984810209881469, -0.1791868841204166, 0.5242108693000513, 0.3298432486272567, -0.12859270860318212, -0.5237897251927542, -0.045862302052143616, 0.5758933854009787, 0.33438585189352993, -1.0917811070898344, -0.36525537406571446, 1.1529617942751949, 0.3532687572545055, 0.4881974999079394, -0.4903452864854716, 0.8007709578067111, 0.1930533576003651, 0.7601444980134775, 0.3513633628288629, 0.28750035659416806, -0.103161633489849, 0.18102844167243973, -0.9121841043715977, 0.8267303290763516, -0.16778378903248556, -0.5795309106166832, -0.7907362893983599, -0.024738380088415966, 0.9517671044915448, 1.1696900465192932, -0.6464227748573038, -0.023559087289692745, -0.7906366577413156, -0.34071121393132336, -0.9423645261074122, 0.17038874209672905, 0.04342698850422474, -0.2917309004390373, -0.3016854811283441, 0.8110106987331132, -0.48677506610626053, 0.8544673886691779, -0.23534043317902348, 0.4597965056700644, 0.205852427910235, -1.0569687039107556, 0.8755033832613149, -0.9704694210992976, -0.8299696378903989, -0.5033213849457348, 0.8067930019345219, 0.6245870931140545, 0.5968452339854664, -0.05964317846185799, -0.2550991480051896, -0.16755567311862354, -0.7316866356416247, -0.11231566339116786, -0.5060047535014818, 0.38784595191688875, -1.1224094812954966, 0.8750877148208922, -1.0029086579645485, -0.9023825375218293, -0.779369320096021, 0.14729977208431236, 0.6068596102380861, 1.0874316154369872, 0.6108877034430429, 0.04430522161325217, -0.23483181300668413, -0.31084283166877763, 1.1011196028349697, 0.6815178060363671, 0.16766797947163686, -0.3128663889059506, -0.06653752590931945, -0.49827609848453824, 0.01816480244149277, -0.06609531685701477, -0.5329171981144841, 0.6637014224626586, -0.471028140485918, 0.652677698602105, -0.32220113870987194, 0.1569639884315054, -0.6620260561226968, -0.7590241942677404, -1.013623496035494, -0.765065134623877, 0.47363714887275693, 0.40181874640326837, 0.37979014054550103, 0.5851106763889168, -0.6648882075722422, 0.776841179357933, -0.06722605119399061, -0.8079670640145006, -0.6901917074415314, 0.5352703674074547, -0.44613587076092903, -0.4079962623970112, 0.09430697483363941, -0.46118472871509475, -1.080492512666723, 0.6477804630276703, -0.008121336506385787, 0.5483496332170891, 0.3162552293159953, 0.671719170157182, 0.3739242985670652, 0.08201827780217853]}, {\"marker\": {\"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 3\", \"type\": \"scatter3d\", \"x\": [0.5144568236539335, 0.3265421137704103, 1.4189295392163737, 1.114431061456304, -0.03966738230799107, 0.5698056893840099, -0.9458853838215316, 1.9080303522832993, 0.32493009244723636, 0.48660862894278756, 1.471042991230658, 0.8744954829354571, 0.1686313519574643, 0.017054224647462306, 0.3011797373569472, -0.09441816357513336, -0.3250928785273747, 1.498397276268271, 0.10537775203026337, -1.2241763302437088, -0.06709901450068335, -0.43567503861318246, 0.4402989854334599, -0.9142771304501501, -0.6026058850529784, -0.0944395965919221, -1.4506632582372367, 1.2007436545628225, 1.217158887646085, -0.7598750406124177, -0.8435926194175537, 1.0171231917375796, 0.7914010716884788, 1.31848631237346, 0.7450167987270788, -1.2515835739803975, -0.050728100061194416, 0.4694589512455946, 0.4136981135239572, 2.0325821344396853, 0.5907685542361372, -0.36724355406002196, -1.065836372251017, -1.0292270098057352, 1.302310873143947, -1.6716147431074249, -1.147367093372504, -0.6688338561192542, 0.10827615843435867, 0.31045416077100485, 0.754848585660288, 1.3176257805075013, 0.7107949320108163, 0.7513249908821925, 0.04182352696871739, -0.830900148493212, 0.06753840568190127, 1.1923848790155336, -1.6893794012897358, -1.1260785741170771, -0.6105530710870428, -1.501711783936496, -0.12392092105635164, -1.5289068430020474, 1.353228895262732, 0.40041072565787506, 0.8138970436731908, 0.7795289390711196, 1.095377077039765, -0.43133227306731087, -0.6812725214646058, -0.23464413168070145, 1.2768998369467055, -1.026791867067735, -0.5136296351572431, 0.29775561851429666, -0.3329991280235484, 0.7489057155499279, 0.49776900845558436, -1.591860084033309, 0.7763624918704819, 0.09960518083502225, -1.347825191513733, -0.5994922310340778, 0.9963091794907255, 1.0827574947015584, 1.7637670482315024, -0.44381680373506166, 0.18290010231043224, 1.0042351754808536, -1.3015590825729735, -0.09749741374532811, 0.6905192237955875, -0.001625789453781208, -0.570658953337733, 1.4628421452771845, 0.6491823317380971, -0.7087707504980827, 0.10337349864501548, -0.14536725326453284, 0.20919625393675556, 1.433667301625331, 1.1062669804169654, 0.16356307421681698, 0.9182374521525317, 1.338024829822569, -1.2654736570203953, -1.853044612049009, -0.6723579287689099, -1.0077057572531591, 0.7790849197593261, -1.3088384986571748, 1.2320455113911741, -1.4143521319089913, -1.2477043977032354, -0.7101905534201363, -1.5208874759683018, -0.22118645780892673, 0.9796373107053663, 0.20214230481876114, -0.2638041586647474, 0.7848412825072284, -0.35500808204305495, -1.8168628386287922, 0.9128924142830762, -0.48840136328851236, -1.102928623509461, -1.5927768159044662, -1.5296128369556463, -0.05367128434073212, -1.271628995610154, -0.7091473134674463, 0.881781472053511, 0.04144555312209139, -0.7540379274758616, 0.9466674785139009, -0.2949969348751839, -0.6229129308653003, 0.9912562370209452, -0.2426276756745509, -0.8210048416017263, 0.003401933984606107, 1.5716428354166858, 1.2424411598709375, 0.5303847799340363, -0.9946505758776841, 0.7491601960848779, -0.44494013910947555, 0.7496979621488119, 0.6173650642806239, -1.3286125191655862, -0.8242547710202835, 0.7484184396854447, 0.21922450276368513, 1.700229930347903, 0.04238050922858031, -0.5571309355065164, 1.2957683368919477, 0.48132285934787716, 0.35712336612604323, -1.3265602189125416, -1.6703520148655744, 1.104009714236334, -0.8063042643785412, 0.2549030320977184, 0.17714921362771063, -0.7840679908056729, -1.5288697855151907, -1.4205457434544158, -0.22846079454861276, 0.4127180444055692, -0.7016283776694212, 0.7141764203142805, -0.20827385759449252, 0.38769840530259836, -0.5397377189437569, 0.8090278622489275, 0.9832987662342891, -1.4755253168939926, 1.0699770325695082, -0.020207628611404932, 0.7733487457950725, 1.4762091630775793, 1.2139384387728889, 0.7986162238857292, -1.1203279452125512, 0.4089440334352397, -1.272092210008323, -0.16697187740832123, 0.21950102295018337, -0.29023086479294874, -0.04152444136189824, -0.8421762110767165, 0.7686956310713007, 0.5196357506883765, -1.2324918664938518, -1.534133580544545, -1.0262405582413265, 0.24563386534053677, -0.7632944786196513, 0.060676666413629926, 0.0074331521148935376, 0.9469328450178396, -0.3363829676265321, 0.9910342636509643, 0.569541308537406, -1.2028813636130427, 1.3464674200530924, 0.8253810046058723, 1.1168325019691734, -1.7083592041737394, -0.019314056764900788, 0.31943550896152345, -0.9751162743562045, -1.4274894954274344, 0.39246218990157566, -0.721394025839074, -1.0951765763938226, -0.3707506477379359, 1.2072567000282617, -0.9120449231138382, -0.11798418306471821, 0.6194235349944993, 0.11758199609050267, 1.5038345167560423, 1.1480891859150908, -1.0299783610655904, 1.6814984890399671, 0.3638559722274941, -0.0689620324518486, 1.3081747657511331, -1.3674207381619687, 0.7501000190833169, 0.33058970730514803, 0.5625250557884295, 0.47756826753012654, 1.6294573182681682, -0.5190739514381146, -1.1524943019356721, 0.7174735801357368, -0.46929055390280955, -0.7266760078047055, -1.269759666664035, 0.2055660450480643, 0.6474213853678698, 0.807553141868193, -0.6855296274110316, -0.9163709467206236, 0.807781228682193, 0.3722770227126465, -0.9942007040895972, -0.9690317471418548, -1.4844011226497478, -0.43614865002767306, 0.31923685766454807, -0.32986092948935114, -0.4448648421523866, 1.1011238217197523, -0.09707099357215251, -0.39691054783940144, 1.1623452683344824, -0.8116389198565807, -0.28974084699132036, -1.7680724905101584, 1.6231678506232952, 0.6284052634590761, -0.3134018364259666, 0.5360175719387062, -0.5530453475931476, -0.8297657868787255, 0.9959126678792715, -0.02338026533390263, -0.02198064430066988, 0.3683255509807012, -1.6900736717348759, -0.8869978920173539, -0.6516053834394826, -0.6215492825292998, 0.14274506523221722, -1.5523840793585604, -0.7197609268844738, -0.45105952755656115, -1.1294930542074746, 0.7796515970748006, -0.990816107166149, 1.0295371132432376, 0.4693354935066028, 0.42043120345736607, -0.9531121512625357, -0.9328699145929118, -0.9235793329615297, -0.6156595901779017, -0.11396211054797578, -1.535873015640756, 0.013125123568613506, 0.44982554534528546, 1.1051781555755789, -1.0023965593803705, -0.9596393391898398, 0.29571810790639497], \"y\": [-0.17391020545747574, -0.4126518083854057, 0.18214556910517138, -0.8522606833217812, 0.37408401739179725, 0.47703517393632794, 0.6538973346358966, 0.4096348105774378, -1.183175473988145, -0.5931259031263069, -0.36637929850102363, -0.5300250141144606, -0.7741869996378278, -0.3291455936566852, -0.5828548119675443, -1.0739062835238726, 0.8369504597218772, -0.2746499320831608, 0.9144733070519644, 0.38183049299120336, -0.9981220412237882, 0.647929275207065, 1.0703351913296608, -0.8496842721135438, -0.6033900030776128, -1.1941041818519942, 0.4197514212587177, -0.8957766302422145, -0.12203645272798563, -0.5231519170791362, -0.8529256516692288, -0.5742856265670151, 0.29875449094324147, 0.35786540881968537, -1.5729839542528912, -0.7257417831333295, 0.8958124855136507, -1.4661752027528976, 1.535486606730284, -0.14978055806722, 1.317608159375344, -0.8952346308965736, 0.345736032293262, 1.0472614201222799, -0.31632930950712834, 0.6783221879516801, 1.651532033234353, 0.03854630805304618, -1.2409489048200446, -0.36367402468574406, 1.4244063560897642, 0.5602384130169962, 1.0558687679337666, -0.4999389187142302, 1.0029674854739985, -1.1642544401239192, 0.5968384294532216, 0.6263813985800996, -0.17731866410846844, 0.5735001007613733, -0.6756338946229453, -0.2131763461219514, -0.746252901015894, -0.6044592048263232, 0.4775502457042315, -1.3547427325119472, -1.1960741207558196, 0.07598441459214794, 0.5321648898713072, -1.5899493677488863, -0.32324967166134694, -0.08675126383171153, 0.43664472515848196, 1.2079441804317248, -0.9975182332992953, -0.16462421425096535, 0.8764394661246252, -1.279078180824086, -0.8772579196343135, -0.9178659697072545, 1.0789607269134678, -1.555118233136728, -0.7579654246193459, -1.309406862811315, -0.4482552558508384, 1.0871969262838106, 0.2308568260648283, -1.168235079312246, -1.5755467473987763, -0.6797939309584781, 0.17183017617566562, -1.2972812537122247, 1.1106225331886976, -1.330941033153784, -1.428633201689479, 0.127657135528488, 1.253472536368319, 0.7677579143227635, -0.22241744056861762, -1.5196537351527313, 1.0558820436425742, 0.4389063203553567, 0.3098869430887787, 1.0567511278531347, 0.35216737381126484, -0.10443504271887524, 0.9580387121422315, 0.49112715714109206, 0.5517434838628714, -0.9788384467023254, 1.2839516845869443, -0.5496029118049177, 1.0579757951014144, -0.571516941222132, -0.12826702772856466, -0.3387396472261903, 0.124553861367088, 0.1166410007003533, -1.351061952747592, -1.5874204010654833, -1.3832871758013698, -0.4231724919100753, 0.9341313599467128, 0.5093744454079949, -0.9664496486165332, 0.3167547980797216, 0.07127260865747148, -0.7406827419239058, 0.6257179338633171, 0.3825305718069153, 0.3068654989838064, 0.7180593088223464, -0.8902232563662048, 0.5128333054887707, 1.2159864865886039, 1.4937280981779169, 0.7486173220751825, -1.6705347430945274, -1.0823547358975125, -1.2936358691290741, 1.1354857949056583, 1.529162336563934, -0.3485114604163996, -0.09134361615238616, -0.30331423205811747, -0.21556785726360872, 0.7699551202872074, -0.4870648660960552, -0.7076783616527985, 0.5423976144843277, -0.2462848050432203, 0.3912940069118737, 0.5240926744502001, 1.5193127688860841, 0.607632093617029, -0.4917157900254271, 0.7676630957803031, -0.30374548154300735, 1.0291780633073637, -0.13027765354621967, 0.4338525857767522, -0.016576444179510146, 0.3132775798148751, 0.028373235286869247, 0.11390860629834129, -0.4372034854731505, 0.13420094718716227, 0.5669254274023532, -0.5143867793400371, 1.2424400771156021, -1.3798896306205826, 0.8816259740871145, -1.0396099760335733, -1.3450117908190558, 1.203278201535245, -0.9519193167133639, 1.0207715426768398, 0.4489489812175142, 0.9149101615355, 0.7300947871526886, 1.6287560117652304, -1.137677204633563, -0.18976595806691043, 0.4317671788552335, -0.9347823595843353, 0.2865612868190655, -0.22546093429626923, 0.582528239060869, 0.905086546708144, -1.407483333924337, -0.5021195531497143, 0.1372616170212085, -0.26952536854716747, 0.5246799501035082, 1.5256407229612243, -0.7962938526024419, 0.642806675524792, -0.3515632731174543, -1.4883132905257814, 0.1691179478093322, -0.8133268335407025, 1.4975390847014167, -1.0296889795591553, -1.1374216193374114, -0.7359312405105568, 1.140227230692641, 0.9126704619023419, -1.8622568941555886, -0.4699664088550893, -0.5635191655562772, -0.6477233463872645, 1.2558001627941455, -0.7123793754821178, 0.062243041660483035, -0.3535923226833402, 0.4848295921976362, 0.5712238756054979, -1.605500796598148, -1.1307516903152364, 0.7746837199539083, 0.12686930626046808, -0.20175268454996007, -1.2817020905405148, -0.16612901915830589, 0.41235594800921, -0.7073470439558337, 1.5484157792140552, -9.764534778973906e-05, -0.8857934454504391, 1.5302428001016855, -0.6659161173516789, 0.44771272591046085, -0.18754035973566485, -0.20743331826621017, 1.218645461052326, 0.39709472759207554, 0.12535226231773636, 0.020066166231149988, -0.025246814197929256, -0.43902661354060296, 1.0910482393734273, -0.8394195543727153, -0.16699745026196594, 0.7220226503702177, -0.5851430640423926, 0.5244616089509218, 1.1350947252178343, -1.023692800429117, 0.8256692929550864, -0.9995286039442439, 0.7169518887544277, 1.0564436462858022, -0.1441127016105558, -0.7379957816365117, -1.1110736742890344, -1.2026042555252534, -0.37388960862989246, 0.7021024420235266, 0.541521831159535, -0.198125308074865, -0.6540652908422857, 1.1697093430107035, 0.1181429365662957, 0.794361843682575, -0.2100536213248544, -0.3515502024353719, 1.1916950819697034, 0.2390271173479345, -0.7189470946490761, 1.3078459911551836, -0.4846246429860577, 0.8125756309193097, -1.2359800917719952, -1.2401696737551255, -0.942266935802633, 0.26141922131323675, -1.0302099910802316, -0.8956591642667474, 1.7591553925971886, 0.10956973577487933, -1.4744637584491855, 0.3836164865647068, 0.6355794030315973, 0.3640865042776248, -0.7000153114224633, -1.3188126226517545, 1.0528169750998653, 0.25795823776464183, -0.12651167063113214, -0.7148930191886322, -0.5901292014728263, 0.7896364225000497, -0.5277753950648633, -0.05504673640362855, -0.7029618229057158, -1.1218255380882045, -0.9579250156857373, -0.32900214657280724, 0.5670801256812847, 0.9595054563837578], \"z\": [1.081259166690215, 1.1171688510200566, -0.7286679935880457, 0.29827333812328, -1.192469187009074, -0.9749532766938946, -0.8155424595533363, -0.236610643147605, 0.5478399365521149, 1.2841096976626396, -0.20806093377871754, 0.5561519255043341, -0.5705025368756065, -1.1486926115337663, -1.430083023293018, 1.0799571343850511, 1.4537202962553688, 0.128126450689943, 1.1428340108222819, -0.3154857321455373, 1.451414316834022, 0.9464720460962082, 0.17261259978157045, -1.107172413379662, -0.7011301232041515, 1.865912809746879, 0.20306292560767236, 0.5714113927225255, 0.3014704872988738, -1.0614743154601847, -0.6683112249569717, 0.6547609800799189, 1.4607658467282847, -0.026952332136481395, 0.46771394818479894, -1.7764900516882336, 1.0905438133898964, 0.13311525320432013, 0.2683503822676281, -0.005135817382480719, -0.30307333742753917, 0.797220979351587, 0.08644888939608657, 0.2063014520662889, 0.2685019257755952, 1.069234998025069, 0.24407598321079585, -0.9868199483035628, 0.33092665889215667, 1.4448456284018159, -1.0337547743384243, 0.5010873796146106, -0.3001590031251841, 1.1761828023113134, -0.8468137075812203, -0.8792236694620461, -1.1409360156796031, -0.06313139212038257, 0.7205030026610237, -0.14289634785780692, 0.562647648799402, 0.18672508375342195, 1.1696086744252978, -0.1609102855884781, 0.694637718377353, -0.47538354546338774, -0.3207943677356059, -1.0141937446567062, -0.917516331635072, 0.6244108410919664, 0.9473728164383936, 1.477365600395968, 1.2038919422642393, 0.45772456339079265, 1.5196585997053593, 1.2870233339841108, -0.18772820694093612, -0.48524222319119514, 1.2519361872188246, -0.5081185180868292, 1.2909175238282524, 0.5704547231211775, -0.7698143124289736, 0.09148871251025109, 0.31808334138672567, -0.042042961853019006, -0.21593139472947934, -1.1450650760899104, -0.7338811842981761, -0.6436986251888119, 0.5440603464099596, 1.0044774043295253, 0.28114274041550485, 0.2061220614748952, -0.39589567337527787, 0.9071679408014144, -0.2882261371982659, -0.4909325722200397, -1.2577415743147915, -0.32354428101577265, -1.1248368870656702, 0.471243641526843, -1.1910781478315469, 1.0543742971818322, -1.2349973414926823, 0.6394033864202617, -0.9331949682468963, -0.18016303413173798, 0.7474526325899683, 0.2338563618513171, -0.15411444792335832, 0.057506884079922105, -1.2223471624750484, -0.356338161703092, 0.12773636455289578, 1.4811435561525643, 0.4115119089656643, -1.570577551431469, 1.1680755918619217, -0.11265062998695487, 0.06675445161848033, -0.22330661051064937, -1.051850039905161, -0.06194632159022238, 0.634107028592213, -0.5980737549327108, -0.7786361002868744, -0.3688135088166511, -0.1773319847044667, 1.1893621910010619, 0.2514807267550494, -0.9382893827705027, 0.3579769397026512, -0.7348890827890768, -0.9668071667699832, 0.618256202679729, -0.672939493615039, 0.5623638977183378, -0.07104934229035258, -1.3197867592586074, -0.5661882959888409, 0.18455598039798293, 0.05106816406761241, -0.22139612962723046, -1.7513554170780576, -0.5708355426379884, 0.8671190972673662, 1.5186309190210079, 0.869631721328268, -1.5234486635925095, 1.34805410381407, 1.5525059015387013, -0.14355953020561218, 0.08469759252907623, -0.00832019885061668, -0.9929762726392968, -1.4287534273145344, 1.0549084308057548, 0.09282042609755455, -1.7059642001565145, -0.7426861202224185, -0.2766809909269144, 0.39280294855947745, -1.3171367398909506, -0.9535390731100598, -0.6751568471086556, -1.3207857130192098, -0.8239041367503865, -0.4455362250801389, 0.7732815513871013, 0.10748475283328136, 0.46785658491851434, 0.6824938203454711, 0.8882758384721245, 0.5297946228248716, 1.3308340371829523, 0.8552945915721436, -1.1717107648517269, -0.31203667128893, 0.35662639730035905, -0.4719191125050915, -0.16247412285434154, 0.589508583059107, 0.22639786389320204, -0.0036666016226342977, -0.9976756256778468, -0.815812320331594, 0.19018988647545976, 0.44623444088389147, 0.9842722766227647, 1.7166058081279754, 1.2350693895683573, 1.3660044018851702, -1.5021336037726487, -0.7269711057629715, 0.5404099602010655, -0.43032219987846615, 0.7292416639899526, 0.2219701102761422, 1.114351511810445, -0.9891523344146559, -0.19893120756512306, -0.7832068532237961, 1.4140065305715468, -0.9842509412792895, 1.1108162093484484, -0.7680698763811877, -0.036089532531365605, 0.15482702850210003, -0.33741054645545593, -0.6459664755295437, 0.6081402755168461, -1.5808488174145043, 1.226748621785349, -1.5343800948519977, -0.9891129355976004, -1.619816204344035, -0.5496966876499798, -0.14407362502866566, 0.9716583237808744, -0.7898984795478755, 1.4907494614266028, 0.02661615255668226, 0.7594732205852615, 0.4608421995078163, -0.7490655228456067, 0.5501340680357059, -0.011470885647066956, 1.9589658749579215, 0.0012950464845225094, -0.046641191568778266, 0.13574123863076723, 1.1302633843721923, -0.7485655884429088, 0.5064813579244793, -0.6315076709963795, 0.0030091928365095486, 1.0053759688460322, -0.44127135848244453, 0.9927187267384275, 0.8126873029342624, 1.0116528610826003, 1.2961545266228607, -1.095991659216772, 1.3916433551620921, -2.1010494003923212, -0.9167576614621976, 0.4520515481812141, -0.5243995134955256, 0.9708287868892557, -0.16462235336145822, 0.6638428167136897, -0.3449679487331145, 0.028698526197511964, 0.9471514018274165, -1.3251846292036145, -1.253273143722762, 0.019253124924739996, 0.9418537020374437, -0.8379055145444774, -1.128265052658238, -0.25338947853347976, -1.7007821477261178, -0.2538466516781394, -0.6834087341055719, 1.1287813586906947, 0.9287577015282403, -1.1794289725835612, -0.9167002654086702, 0.40852498395856673, 0.5854325017491032, -0.2261425698163097, -0.0031152608395289124, 0.5578099949316294, 0.25650530682839895, 0.9892768795319875, 1.115076737463173, 0.9560255983929399, 0.600503748000263, -0.9886185979416084, 0.8532872235987017, -0.7870616488197933, -0.870789591131708, 1.4955687180830182, -1.0635365079360315, 0.23203321474794372, -0.9867116056845491, 1.1798030100777273, -0.2595339543094857, -0.5745990330767841, 2.016969500242641, 0.9140387727649104, -0.7423862993979677, -0.7670189198716642, 1.6070398025502421, -1.4431120715421168, 0.7417816344379696, -1.3977117951651294, 1.7164502104670285, -0.7915910946913929]}],\n",
+       "                        {\"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"carpet\": [{\"aaxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"white\", \"linecolor\": \"white\", \"minorgridcolor\": \"white\", \"startlinecolor\": \"#2a3f5f\"}, \"baxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"white\", \"linecolor\": \"white\", \"minorgridcolor\": \"white\", \"startlinecolor\": \"#2a3f5f\"}, \"type\": \"carpet\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"contour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"heatmap\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmap\"}], \"heatmapgl\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"histogram2d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2d\"}], \"histogram2dcontour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"surface\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"colorscale\": {\"diverging\": [[0, \"#8e0152\"], [0.1, \"#c51b7d\"], [0.2, \"#de77ae\"], [0.3, \"#f1b6da\"], [0.4, \"#fde0ef\"], [0.5, \"#f7f7f7\"], [0.6, \"#e6f5d0\"], [0.7, \"#b8e186\"], [0.8, \"#7fbc41\"], [0.9, \"#4d9221\"], [1, \"#276419\"]], \"sequential\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"sequentialminus\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}},\n",
+       "                        {\"responsive\": true}\n",
+       "                    ).then(function(){\n",
+       "                            \n",
+       "var gd = document.getElementById('44657034-258d-4fc1-afa5-79e6cb56b9b2');\n",
+       "var x = new MutationObserver(function (mutations, observer) {{\n",
+       "        var display = window.getComputedStyle(gd).display;\n",
+       "        if (!display || display === 'none') {{\n",
+       "            console.log([gd, 'removed!']);\n",
+       "            Plotly.purge(gd);\n",
+       "            observer.disconnect();\n",
+       "        }}\n",
+       "}});\n",
+       "\n",
+       "// Listen for the removal of the full notebook cells\n",
+       "var notebookContainer = gd.closest('#notebook-container');\n",
+       "if (notebookContainer) {{\n",
+       "    x.observe(notebookContainer, {childList: true});\n",
+       "}}\n",
+       "\n",
+       "// Listen for the clearing of the current output cell\n",
+       "var outputEl = gd.closest('.output');\n",
+       "if (outputEl) {{\n",
+       "    x.observe(outputEl, {childList: true});\n",
+       "}}\n",
+       "\n",
+       "                        })\n",
+       "                };\n",
+       "                });\n",
+       "            </script>\n",
+       "        </div>"
+      ]
+     },
+     "metadata": {},
+     "output_type": "display_data"
+    }
+   ],
+   "source": [
+    "configuration = {\"class_sep\":0.5, }\n",
+    "sub_problem_generator = RingsGenerator(n_classes=3, \n",
+    "                                        n_features=3, \n",
+    "                                        random_vertices=True, \n",
+    "                                        errors=np.array([0.2,0.2, 0.2]), \n",
+    "                                        random_state=np.random.RandomState(42), \n",
+    "                                        n_samples_per_class=np.array([300,300,300]), \n",
+    "                                        **configuration)\n",
+    "data = sub_problem_generator.gen_data()\n",
+    "plot_3d(data).show()"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## MAGE usage : generator configuration\n",
+    "\n",
+    "In order to use these generators in MAGE at their full potential, we need to set some configuration.\n",
+    "First, let us initialize MAGE with the configuration of the proevious tutorial : "
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 9,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "name = \"tuto\"\n",
+    "n_views = 4\n",
+    "n_classes = 3\n",
+    "error_matrix = [\n",
+    "   [0.4, 0.4, 0.4, 0.4],\n",
+    "   [0.35, 0.4, 0.4, 0.4],\n",
+    "   [0.4, 0.4, 0.4, 0.4]\n",
+    "]\n",
+    "n_samples = 2000\n",
+    "n_features = 3\n",
+    "class_weights = [0.333, 0.333, 0.333,]\n",
+    "random_state = np.random.RandomState(42)\n",
+    "complementarity = 0.1\n",
+    "redundancy = 0.2\n",
+    "mutual_error = 0.01"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "Then, let's configure the four monoview generators that will build our multiview dataset :"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 10,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "sub_problem_type = [\"StumpsGenerator\", \n",
+    "                   \"RingsGenerator\", \n",
+    "                   \"RingsGenerator\", \n",
+    "                   \"StumpsGenerator\"]\n",
+    "sub_problem_configuration = [\n",
+    "    {\"class_sep\":1, },\n",
+    "    {\"class_sep\":1, }, \n",
+    "    {\"class_sep\":1, },\n",
+    "    {\"class_sep\":1, }, \n",
     "    \n",
     "]"
    ]
@@ -11990,20 +11917,25 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 7,
+   "execution_count": 11,
    "metadata": {},
    "outputs": [
     {
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "[array([199, 199, 199, 199]), array([149, 199, 199, 199]), array([199, 166, 159, 149])]\n",
-      "400.0\n"
+      "[[0.01]\n",
+      " [0.01]\n",
+      " [0.01]] [[0.1]\n",
+      " [0.1]\n",
+      " [0.1]] [[0.2]\n",
+      " [0.2]\n",
+      " [0.2]]\n"
      ]
     }
    ],
    "source": [
-    "generator = MultiViewSubProblemsGenerator(name=name, n_views=n_views,\n",
+    "generator = MultiViewGaussianSubProblemsGenerator(name=name, n_views=n_views,\n",
     "                                          n_classes=n_classes,\n",
     "                                          n_samples=n_samples,\n",
     "                                          n_features=n_features,\n",
@@ -12014,8 +11946,9 @@
     "                                          complementarity=complementarity,\n",
     "                                          mutual_error=mutual_error, \n",
     "                                          sub_problem_configurations=sub_problem_configuration,\n",
-    "                                          sub_problem_type=sub_problem_type)\n",
-    "view_data, y = generator.generate_multi_view_dataset()"
+    "                                          sub_problem_generators=sub_problem_type)\n",
+    "print(generator.mutual_error, generator.complementarity, generator.redundancy)\n",
+    "dataset, y = generator.generate_multi_view_dataset()"
    ]
   },
   {
@@ -12027,7 +11960,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 8,
+   "execution_count": 12,
    "metadata": {},
    "outputs": [
     {
@@ -12050,1345 +11983,2677 @@
          "scene": "scene",
          "showlegend": true,
          "text": [
-          "example_2",
-          "redundancy_40_0",
-          "Complementary_79_0",
-          "mutual_error_24_0",
-          "example_9",
-          "example_10",
-          "example_23",
-          "redundancy_18_0",
-          "example_29",
-          "example_30",
-          "mutual_error_6_0",
-          "example_33",
-          "example_39",
-          "Complementary_53_0",
-          "Complementary_70_0",
-          "mutual_error_28_0",
-          "redundancy_62_0",
-          "Complementary_98_0",
-          "example_60",
-          "Complementary_42_0",
-          "Complementary_89_0",
-          "example_66",
-          "mutual_error_27_0",
-          "example_70",
-          "example_72",
-          "example_76",
-          "Complementary_78_0",
-          "mutual_error_16_0",
-          "redundancy_25_0",
-          "example_81",
-          "example_82",
-          "Complementary_22_0",
-          "example_86",
-          "example_88",
-          "example_96",
-          "mutual_error_9_0",
-          "example_101",
-          "Complementary_10_0",
-          "Complementary_81_0",
-          "example_110",
-          "example_118",
-          "Complementary_58_0",
-          "redundancy_8_0",
-          "Complementary_74_0",
-          "example_137",
-          "example_139",
-          "example_141",
-          "redundancy_5_0",
-          "Complementary_0_0",
-          "Complementary_14_0",
-          "example_165",
-          "example_168",
-          "example_174",
-          "redundancy_55_0",
-          "Complementary_8_0",
-          "example_196",
-          "redundancy_11_0",
-          "example_199",
-          "example_204",
-          "example_208",
-          "Complementary_18_0",
-          "Complementary_77_0",
-          "example_211",
-          "redundancy_6_0",
-          "example_213",
-          "Complementary_49_0",
-          "example_218",
-          "example_221",
-          "redundancy_48_0",
-          "redundancy_30_0",
-          "example_231",
-          "example_235",
-          "example_237",
-          "Complementary_54_0",
-          "example_244",
-          "example_247",
-          "Complementary_47_0",
-          "redundancy_9_0",
-          "Complementary_92_0",
-          "Complementary_68_0",
-          "Complementary_44_0",
-          "redundancy_15_0",
-          "Complementary_41_0",
-          "Complementary_16_0",
-          "example_266",
-          "example_275",
-          "redundancy_61_0",
-          "example_280",
-          "Complementary_65_0",
-          "example_286",
-          "mutual_error_25_0",
-          "mutual_error_30_0",
-          "example_292",
-          "redundancy_53_0",
-          "example_296",
-          "Complementary_17_0",
-          "example_299",
-          "mutual_error_15_0",
-          "example_305",
-          "example_306",
-          "Complementary_84_0",
-          "example_309",
-          "Complementary_57_0",
-          "example_311",
-          "redundancy_54_0",
-          "redundancy_43_0",
-          "Complementary_55_0",
-          "redundancy_2_0",
-          "redundancy_34_0",
-          "example_323",
-          "example_327",
-          "mutual_error_32_0",
-          "Complementary_20_0",
-          "redundancy_17_0",
-          "Complementary_38_0",
-          "Complementary_3_0",
-          "Complementary_7_0",
-          "example_346",
-          "example_350",
-          "example_351",
-          "example_352",
-          "example_355",
-          "redundancy_31_0",
-          "Complementary_46_0",
-          "example_361",
-          "example_362",
-          "Complementary_52_0",
-          "example_365",
-          "mutual_error_23_0",
-          "mutual_error_2_0",
-          "redundancy_65_0",
-          "Complementary_87_0",
-          "example_382",
-          "example_388",
-          "example_394",
-          "example_398",
-          "example_404",
-          "Complementary_56_0",
-          "Complementary_63_0",
-          "example_423",
-          "Complementary_24_0",
-          "example_425",
-          "example_428",
-          "mutual_error_21_0",
-          "Complementary_23_0",
-          "example_432",
-          "example_433",
-          "example_436",
-          "example_439",
-          "example_442",
-          "example_447",
-          "Complementary_12_0",
-          "redundancy_42_0",
-          "example_450",
-          "mutual_error_31_0",
-          "redundancy_21_0",
-          "example_456",
-          "example_462",
-          "Complementary_1_0",
-          "Complementary_88_0",
-          "example_468",
-          "example_477",
-          "Complementary_48_0",
-          "redundancy_28_0",
-          "example_482",
-          "Complementary_91_0",
-          "Complementary_82_0",
-          "Complementary_27_0",
-          "Complementary_97_0",
-          "example_499",
-          "redundancy_63_0",
-          "example_513",
-          "Complementary_71_0",
-          "redundancy_12_0",
-          "example_518",
-          "example_521",
-          "example_522",
-          "Complementary_43_0",
-          "example_526",
-          "example_527",
-          "Complementary_96_0",
-          "example_529",
-          "Complementary_37_0",
-          "example_534",
-          "example_535",
-          "example_538",
-          "example_539",
-          "example_541",
-          "example_542",
-          "example_543",
-          "Complementary_59_0",
-          "Complementary_31_0",
-          "example_549",
-          "example_551",
-          "example_554",
-          "Complementary_60_0",
-          "example_570",
-          "Complementary_86_0",
-          "mutual_error_3_0",
-          "example_576",
-          "example_578",
-          "example_580",
-          "mutual_error_8_0",
-          "mutual_error_19_0",
-          "mutual_error_11_0",
-          "example_593",
-          "Complementary_72_0",
-          "Complementary_35_0",
-          "example_597",
-          "redundancy_14_0",
-          "redundancy_7_0",
-          "Complementary_25_0",
-          "redundancy_47_0",
-          "example_605",
-          "example_618",
-          "Complementary_62_0",
-          "redundancy_20_0",
-          "example_625",
-          "example_630",
-          "example_634",
-          "Complementary_34_0",
-          "Complementary_9_0",
-          "example_644",
-          "Complementary_19_0",
-          "example_650",
-          "example_652",
-          "redundancy_60_0",
-          "redundancy_37_0",
-          "mutual_error_20_0",
-          "Complementary_28_0",
-          "Complementary_73_0",
-          "example_689",
-          "Complementary_4_0",
-          "example_696",
-          "example_697",
-          "redundancy_29_0",
-          "Complementary_45_0",
-          "example_707",
-          "mutual_error_18_0",
-          "example_712",
-          "example_713",
-          "redundancy_36_0",
-          "example_716",
-          "example_720",
-          "mutual_error_29_0",
-          "Complementary_26_0",
-          "redundancy_24_0",
-          "example_737",
-          "mutual_error_14_0",
-          "redundancy_35_0",
-          "example_746",
-          "example_750",
-          "redundancy_64_0",
-          "example_765",
-          "example_773",
-          "Complementary_13_0",
-          "mutual_error_22_0",
-          "mutual_error_10_0",
-          "Complementary_15_0",
-          "Complementary_80_0",
-          "example_788",
-          "Complementary_5_0",
-          "redundancy_32_0",
-          "redundancy_13_0",
-          "Complementary_30_0",
-          "redundancy_50_0",
-          "Complementary_66_0",
-          "Complementary_51_0",
-          "Complementary_2_0",
-          "redundancy_27_0",
-          "Complementary_85_0",
-          "example_819",
-          "Complementary_76_0",
-          "example_824",
-          "mutual_error_4_0",
-          "mutual_error_5_0",
-          "redundancy_33_0",
-          "example_834",
-          "Complementary_75_0",
-          "Complementary_33_0",
-          "example_843",
-          "redundancy_16_0",
-          "redundancy_3_0",
-          "Complementary_93_0",
-          "example_858",
-          "redundancy_1_0",
-          "redundancy_10_0",
-          "mutual_error_26_0",
-          "Complementary_36_0",
-          "redundancy_52_0",
-          "example_876",
-          "redundancy_4_0",
-          "Complementary_21_0",
-          "mutual_error_1_0",
-          "example_892",
-          "Complementary_83_0",
-          "redundancy_51_0",
-          "redundancy_0_0",
-          "example_901",
-          "redundancy_56_0",
-          "mutual_error_0_0",
-          "example_909",
-          "Complementary_50_0",
-          "redundancy_19_0",
-          "Complementary_95_0",
-          "Complementary_90_0",
-          "example_922",
-          "Complementary_61_0",
-          "Complementary_6_0",
-          "Complementary_69_0",
-          "Complementary_94_0",
-          "example_934",
-          "example_935",
-          "Complementary_11_0",
-          "example_939",
-          "example_940",
-          "example_945",
-          "Complementary_67_0",
-          "mutual_error_7_0",
-          "redundancy_57_0",
-          "mutual_error_17_0",
-          "Complementary_40_0",
-          "Complementary_32_0",
-          "example_960",
-          "redundancy_59_0",
-          "Complementary_29_0",
-          "Complementary_39_0",
-          "redundancy_44_0",
-          "example_984",
-          "example_985",
-          "redundancy_45_0",
-          "Complementary_64_0",
-          "redundancy_38_0"
+          "0_l_0_m-0_2.4-1_0.58-2_0.67-3_0.97",
+          "1_l_0_m-0_0.19-1_0.26-2_0.99-3_0.5",
+          "2_l_0_m-0_2.09-1_0.3-2_0.75-3_0.13",
+          "3_l_0_m-0_0.04-1_0.73-2_1.31-3_0.4",
+          "4_l_0_m-0_0.59-1_0.13-2_0.67-3_0.97",
+          "5_l_0_m-0_0.66-1_0.05-2_0.18-3_0.03",
+          "6_l_0_c_1_2_3-0_0.94-1_0.1-2_0.23-3_0.3",
+          "7_l_0_c_1_2_3-0_0.21-1_0.11-2_0.01-3_1.4",
+          "8_l_0_c_1_2_3-0_0.22-1_0.75-2_1.82-3_0.33",
+          "9_l_0_c_1_2_3-0_0.55-1_0.67-2_0.33-3_0.39",
+          "10_l_0_c_1_2_3-0_0.37-1_0.75-2_0.7-3_1.43",
+          "11_l_0_c_1_2_3-0_1.46-1_0.99-2_0.23-3_0.79",
+          "12_l_0_c_1_2_3-0_1.6-1_0.29-2_1.48-3_0.06",
+          "13_l_0_c_1_2_3-0_0.09-1_0.85-2_0.86-3_0.09",
+          "14_l_0_c_1_2_3-0_1.43-1_0.86-2_0.81-3_0.59",
+          "15_l_0_c_0_1_2-0_0.65-1_0.78-2_0.13-3_1.35",
+          "16_l_0_c_1_2_3-0_0.52-1_0.31-2_0.58-3_0.24",
+          "17_l_0_c_0_1_2-0_0.65-1_0.04-2_0.07-3_1.46",
+          "18_l_0_c_1_2_3-0_0.4-1_0.48-2_0.96-3_1.37",
+          "19_l_0_c_0_1_2-0_0.3-1_0.61-2_1.07-3_0.03",
+          "20_l_0_c_1_2_3-0_0.01-1_0.54-2_1.43-3_1.4",
+          "21_l_0_c_0_1_2-0_0.58-1_1.21-2_0.22-3_0.94",
+          "22_l_0_c_1_2_3-0_0.53-1_0.6-2_0.85-3_0.0",
+          "23_l_0_c_0_1_2-0_0.34-1_1.06-2_0.53-3_1.21",
+          "24_l_0_c_1_2_3-0_0.65-1_1.44-2_1.2-3_0.0",
+          "25_l_0_c_0_1_2-0_0.29-1_0.01-2_0.62-3_1.62",
+          "26_l_0_c_1_2_3-0_0.21-1_0.41-2_1.81-3_0.91",
+          "27_l_0_c_0_1_2-0_0.01-1_0.38-2_0.09-3_1.22",
+          "28_l_0_c_1_2_3-0_0.29-1_0.07-2_0.25-3_0.56",
+          "29_l_0_c_0_1_2-0_0.11-1_0.27-2_0.76-3_0.72",
+          "30_l_0_c_1_2_3-0_1.58-1_0.22-2_1.64-3_0.24",
+          "31_l_0_c_0_1_2-0_0.04-1_1.18-2_0.57-3_1.1",
+          "32_l_0_c_1_2_3-0_0.06-1_1.54-2_0.54-3_0.29",
+          "33_l_0_c_0_1_2-0_0.09-1_0.35-2_0.08-3_0.59",
+          "34_l_0_c_1_2_3-0_0.75-1_0.26-2_0.42-3_0.61",
+          "35_l_0_c_0_1_2-0_0.94-1_0.33-2_1.08-3_0.47",
+          "36_l_0_c_1_2_3-0_0.84-1_0.21-2_1.76-3_1.26",
+          "37_l_0_c_0_1_2-0_1.06-1_0.55-2_0.31-3_0.36",
+          "38_l_0_c_1_2_3-0_0.31-1_0.51-2_0.77-3_0.43",
+          "39_l_0_c_0_1_2-0_0.89-1_0.11-2_0.37-3_2.67",
+          "40_l_0_c_1_2_3-0_0.16-1_0.53-2_0.07-3_0.17",
+          "41_l_0_c_0_1_2-0_0.15-1_0.07-2_0.3-3_0.1",
+          "42_l_0_c_1_2_3-0_0.02-1_0.33-2_1.0-3_0.26",
+          "43_l_0_c_0_1_2-0_0.44-1_2.02-2_0.01-3_0.49",
+          "44_l_0_c_1_2_3-0_0.16-1_0.12-2_0.27-3_0.53",
+          "45_l_0_c_0_1_2-0_0.37-1_1.51-2_0.7-3_0.58",
+          "46_l_0_c_1_2_3-0_1.76-1_0.68-2_0.25-3_1.71",
+          "47_l_0_c_0_1_2-0_0.07-1_1.64-2_0.35-3_1.54",
+          "48_l_0_c_1_2_3-0_1.98-1_0.69-2_0.38-3_0.29",
+          "49_l_0_c_0_1_2-0_1.46-1_0.1-2_0.18-3_1.28",
+          "50_l_0_c_0_1_3-0_0.29-1_0.58-2_0.2-3_0.97",
+          "51_l_0_c_1_2_3-0_1.21-1_1.03-2_0.61-3_0.15",
+          "52_l_0_c_0_1_2-0_1.45-1_1.34-2_2.56-3_1.74",
+          "53_l_0_c_0_1_3-0_0.12-1_0.29-2_0.32-3_0.28",
+          "54_l_0_c_1_2_3-0_1.06-1_0.32-2_0.19-3_0.44",
+          "55_l_0_c_0_1_2-0_0.69-1_0.08-2_0.6-3_0.98",
+          "56_l_0_c_0_1_3-0_0.21-1_0.27-2_0.12-3_0.78",
+          "57_l_0_c_1_2_3-0_0.66-1_0.58-2_0.37-3_0.95",
+          "58_l_0_c_0_1_2-0_0.06-1_0.7-2_1.37-3_0.21",
+          "59_l_0_c_0_1_3-0_0.09-1_0.71-2_0.25-3_0.08",
+          "60_l_0_c_1_2_3-0_0.4-1_1.02-2_1.07-3_0.64",
+          "61_l_0_c_0_1_2-0_0.4-1_0.66-2_1.37-3_0.98",
+          "62_l_0_c_0_1_3-0_0.85-1_0.29-2_0.31-3_0.27",
+          "63_l_0_c_1_2_3-0_0.47-1_0.97-2_1.26-3_1.31",
+          "64_l_0_c_0_1_2-0_0.46-1_0.33-2_0.26-3_0.79",
+          "65_l_0_c_0_1_3-0_0.05-1_0.98-2_0.39-3_0.67",
+          "66_l_0_c_1_2_3-0_1.36-1_0.49-2_0.24-3_0.73",
+          "67_l_0_c_0_1_2-0_0.45-1_0.59-2_0.05-3_0.12",
+          "68_l_0_c_0_1_3-0_0.34-1_0.77-2_0.08-3_0.6",
+          "69_l_0_c_1_2_3-0_1.25-1_0.13-2_0.66-3_0.67",
+          "70_l_0_c_0_1_2-0_0.87-1_1.32-2_0.03-3_0.57",
+          "71_l_0_c_0_1_3-0_0.29-1_0.19-2_0.02-3_0.83",
+          "72_l_0_c_1_2_3-0_1.65-1_0.76-2_0.76-3_0.04",
+          "73_l_0_c_0_1_2-0_0.37-1_0.63-2_0.83-3_0.66",
+          "74_l_0_c_0_1_3-0_0.19-1_0.05-2_0.12-3_0.06",
+          "75_l_0_c_1_2_3-0_0.71-1_0.28-2_0.06-3_0.68",
+          "76_l_0_c_0_1_2-0_0.21-1_0.0-2_0.53-3_2.45",
+          "77_l_0_c_0_1_3-0_1.44-1_0.5-2_0.0-3_0.43",
+          "78_l_0_c_1_2_3-0_0.17-1_1.56-2_1.18-3_0.62",
+          "79_l_0_c_0_1_2-0_0.0-1_0.5-2_0.03-3_1.05",
+          "80_l_0_c_0_1_3-0_0.03-1_0.62-2_0.13-3_1.33",
+          "81_l_0_c_1_2_3-0_1.59-1_0.65-2_0.23-3_0.77",
+          "82_l_0_c_0_1_2-0_0.38-1_1.27-2_0.54-3_0.72",
+          "83_l_0_c_0_1_3-0_0.43-1_0.15-2_0.01-3_1.47",
+          "84_l_0_c_1_2_3-0_0.5-1_0.92-2_0.58-3_0.3",
+          "85_l_0_c_0_1_2-0_0.25-1_1.29-2_0.33-3_0.06",
+          "86_l_0_c_0_1_3-0_1.32-1_0.01-2_0.39-3_0.06",
+          "87_l_0_c_1_2_3-0_0.14-1_0.51-2_0.05-3_1.1",
+          "88_l_0_c_0_1_2-0_0.04-1_0.08-2_0.73-3_0.3",
+          "89_l_0_c_0_1_3-0_0.29-1_1.32-2_0.07-3_1.04",
+          "90_l_0_c_1_2_3-0_0.23-1_0.23-2_0.16-3_0.38",
+          "91_l_0_c_0_1_2-0_0.56-1_0.25-2_0.28-3_1.86",
+          "92_l_0_c_0_1_3-0_0.05-1_0.06-2_0.34-3_0.47",
+          "93_l_0_c_1_2_3-0_1.81-1_0.7-2_0.54-3_0.24",
+          "94_l_0_c_0_1_2-0_0.4-1_0.7-2_0.46-3_1.08",
+          "95_l_0_c_0_1_3-0_1.16-1_0.56-2_0.0-3_0.11",
+          "96_l_0_c_1_2_3-0_0.71-1_0.83-2_0.32-3_0.84",
+          "97_l_0_c_0_1_2-0_1.07-1_0.25-2_0.4-3_0.88",
+          "98_l_0_c_0_1_3-0_0.53-1_0.17-2_0.08-3_0.71",
+          "99_l_0_c_1_2_3-0_0.54-1_0.77-2_1.08-3_0.58",
+          "100_l_0_c_0_1_2-0_0.03-1_0.6-2_0.81-3_1.08",
+          "101_l_0_c_0_1_3-0_0.95-1_1.28-2_0.11-3_0.76",
+          "102_l_0_c_1_2_3-0_0.96-1_0.25-2_0.45-3_0.72",
+          "103_l_0_c_0_1_2-0_0.34-1_0.12-2_0.91-3_0.52",
+          "104_l_0_c_0_1_3-0_1.02-1_1.91-2_0.14-3_0.91",
+          "105_l_0_c_1_2_3-0_0.66-1_0.3-2_0.26-3_0.61",
+          "106_l_0_c_0_1_2-0_0.06-1_0.24-2_1.09-3_0.37",
+          "107_l_0_c_0_1_3-0_0.01-1_0.44-2_0.11-3_0.88",
+          "108_l_0_c_1_2_3-0_0.24-1_0.16-2_0.07-3_0.82",
+          "109_l_0_c_0_1_2-0_0.08-1_0.3-2_0.18-3_3.13",
+          "110_l_0_c_0_1_3-0_0.02-1_0.48-2_0.14-3_0.79",
+          "111_l_0_c_1_2_3-0_0.4-1_0.41-2_0.01-3_0.32",
+          "112_l_0_c_0_1_2-0_0.83-1_0.06-2_0.37-3_1.63",
+          "113_l_0_c_0_1_3-0_0.12-1_0.33-2_0.01-3_0.39",
+          "114_l_0_c_1_2_3-0_1.37-1_0.44-2_0.25-3_0.13",
+          "115_l_0_c_0_1_2-0_0.23-1_0.75-2_0.16-3_0.55",
+          "116_l_0_c_0_1_3-0_0.91-1_0.42-2_0.15-3_0.79",
+          "117_l_0_c_1_2_3-0_2.14-1_0.87-2_1.22-3_0.34",
+          "118_l_0_c_0_1_2-0_0.07-1_1.32-2_0.35-3_1.08",
+          "119_l_0_c_0_1_3-0_0.46-1_0.33-2_0.2-3_0.28",
+          "120_l_0_c_1_2_3-0_0.97-1_0.19-2_0.71-3_0.65",
+          "121_l_0_c_0_1_2-0_0.51-1_0.73-2_0.62-3_0.62",
+          "122_l_0_c_0_1_3-0_0.04-1_0.36-2_0.36-3_0.39",
+          "123_l_0_c_1_2_3-0_1.52-1_0.36-2_1.13-3_0.12",
+          "124_l_0_c_0_1_2-0_0.88-1_0.49-2_0.41-3_0.06",
+          "125_l_0_c_0_1_3-0_0.4-1_0.88-2_0.22-3_0.63",
+          "126_l_0_c_1_2_3-0_2.36-1_0.67-2_0.25-3_0.6",
+          "127_l_0_c_0_1_2-0_0.02-1_0.76-2_0.62-3_1.25",
+          "128_l_0_c_0_1_3-0_0.43-1_0.28-2_0.37-3_0.23",
+          "129_l_0_c_1_2_3-0_0.26-1_0.72-2_0.3-3_0.65",
+          "130_l_0_c_0_1_2-0_0.62-1_0.12-2_0.88-3_0.08",
+          "131_l_0_c_0_1_3-0_0.88-1_0.09-2_0.06-3_0.14",
+          "132_l_0_c_1_2_3-0_2.15-1_0.28-2_0.77-3_0.65",
+          "133_l_0_c_0_1_2-0_1.4-1_1.55-2_0.72-3_1.84",
+          "134_l_0_c_0_1_3-0_0.15-1_2.36-2_0.14-3_0.01",
+          "135_l_0_c_1_2_3-0_0.34-1_0.43-2_0.83-3_0.3",
+          "136_l_0_c_0_1_2-0_1.45-1_1.47-2_0.74-3_1.76",
+          "137_l_0_c_0_1_3-0_0.45-1_0.27-2_0.17-3_0.41",
+          "138_l_0_c_1_2_3-0_1.76-1_0.12-2_0.96-3_0.52",
+          "139_l_0_c_0_1_2-0_0.8-1_1.11-2_0.42-3_0.71",
+          "140_l_0_c_0_1_3-0_1.32-1_0.48-2_0.2-3_0.41",
+          "141_l_0_c_1_2_3-0_0.48-1_1.4-2_0.8-3_0.91",
+          "142_l_0_c_0_1_2-0_0.96-1_0.63-2_0.07-3_0.91",
+          "143_l_0_c_0_1_3-0_0.83-1_1.26-2_0.3-3_0.77",
+          "144_l_0_c_1_2_3-0_0.96-1_0.6-2_1.68-3_0.75",
+          "145_l_0_c_0_1_2-0_0.31-1_0.07-2_0.28-3_0.91",
+          "146_l_0_c_0_1_3-0_0.57-1_0.95-2_0.1-3_0.79",
+          "147_l_0_c_1_2_3-0_1.57-1_1.87-2_0.62-3_0.4",
+          "148_l_0_c_0_1_2-0_0.54-1_0.37-2_0.2-3_0.36",
+          "149_l_0_c_0_1_3-0_0.82-1_0.31-2_0.13-3_0.3",
+          "150_l_0_c_1_2_3-0_0.76-1_1.0-2_0.17-3_0.09",
+          "151_l_0_c_0_1_2-0_0.76-1_0.63-2_0.18-3_1.09",
+          "152_l_0_c_0_1_3-0_0.12-1_0.21-2_0.03-3_0.46",
+          "153_l_0_c_1_2_3-0_1.67-1_0.51-2_0.15-3_0.14",
+          "154_l_0_c_0_1_2-0_1.85-1_0.59-2_0.94-3_1.0",
+          "155_l_0_c_0_1_3-0_0.72-1_0.19-2_0.07-3_0.42",
+          "156_l_0_c_1_2_3-0_1.53-1_0.67-2_0.32-3_0.21",
+          "157_l_0_c_0_1_2-0_0.91-1_0.22-2_0.01-3_0.94",
+          "158_l_0_c_0_1_3-0_0.99-1_0.07-2_0.03-3_0.44",
+          "159_l_0_c_1_2_3-0_1.87-1_0.45-2_0.13-3_0.84",
+          "160_l_0_c_0_1_2-0_0.55-1_1.68-2_0.5-3_0.43",
+          "161_l_0_c_0_1_3-0_0.23-1_0.89-2_0.22-3_0.25",
+          "162_l_0_c_1_2_3-0_1.95-1_1.36-2_0.13-3_0.41",
+          "163_l_0_c_0_1_2-0_0.39-1_0.91-2_0.58-3_0.04",
+          "164_l_0_c_0_1_3-0_0.43-1_0.7-2_0.47-3_0.35",
+          "165_l_0_c_1_2_3-0_1.88-1_0.62-2_1.4-3_0.5",
+          "166_l_0_c_0_1_2-0_0.84-1_0.23-2_0.5-3_0.61",
+          "167_l_0_c_0_1_3-0_0.27-1_1.24-2_0.02-3_0.2",
+          "168_l_0_c_0_2_3-0_0.51-1_0.24-2_0.22-3_0.84",
+          "169_l_0_c_1_2_3-0_0.96-1_0.14-2_0.06-3_0.32",
+          "170_l_0_c_0_1_2-0_0.33-1_0.19-2_0.67-3_2.43",
+          "171_l_0_c_0_1_3-0_0.02-1_1.91-2_0.02-3_0.89",
+          "172_l_0_c_0_2_3-0_0.09-1_0.06-2_1.76-3_0.25",
+          "173_l_0_c_1_2_3-0_0.46-1_0.17-2_0.63-3_0.69",
+          "174_l_0_c_0_1_2-0_0.86-1_0.33-2_1.69-3_0.15",
+          "175_l_0_c_0_1_3-0_0.86-1_1.95-2_0.58-3_0.3",
+          "176_l_0_c_0_2_3-0_0.67-1_0.61-2_0.09-3_0.5",
+          "177_l_0_c_1_2_3-0_1.36-1_1.63-2_0.5-3_0.5",
+          "178_l_0_c_0_1_2-0_0.88-1_0.68-2_0.48-3_0.37",
+          "179_l_0_c_0_1_3-0_0.17-1_0.53-2_0.2-3_0.85",
+          "180_l_0_c_0_2_3-0_1.02-1_0.15-2_0.51-3_0.09",
+          "181_l_0_c_1_2_3-0_0.44-1_0.08-2_0.67-3_0.09",
+          "182_l_0_c_0_1_2-0_0.35-1_0.12-2_0.43-3_1.1",
+          "183_l_0_c_0_1_3-0_0.02-1_0.01-2_0.14-3_0.5",
+          "184_l_0_c_0_2_3-0_1.02-1_0.39-2_0.25-3_0.71",
+          "185_l_0_c_1_2_3-0_0.61-1_2.62-2_1.83-3_0.12",
+          "186_l_0_c_0_1_2-0_0.19-1_0.78-2_0.11-3_0.31",
+          "187_l_0_c_0_1_3-0_0.36-1_0.29-2_0.04-3_0.05",
+          "188_l_0_c_0_2_3-0_0.59-1_0.17-2_0.17-3_0.34",
+          "189_l_0_c_1_2_3-0_0.72-1_0.12-2_1.03-3_0.17",
+          "190_l_0_c_0_1_2-0_1.44-1_0.38-2_0.15-3_0.07",
+          "191_l_0_c_0_1_3-0_0.06-1_0.49-2_0.04-3_0.68",
+          "192_l_0_c_0_2_3-0_0.62-1_0.13-2_0.58-3_1.0",
+          "193_l_0_c_1_2_3-0_0.2-1_0.08-2_0.43-3_0.38",
+          "194_l_0_c_0_1_2-0_0.18-1_0.63-2_0.38-3_1.89",
+          "195_l_0_c_0_1_3-0_0.09-1_0.35-2_0.0-3_0.62",
+          "196_l_0_c_0_2_3-0_1.4-1_0.35-2_0.3-3_0.2",
+          "197_l_0_c_1_2_3-0_0.74-1_0.47-2_0.8-3_0.9",
+          "198_l_0_c_0_1_2-0_0.22-1_0.56-2_0.48-3_0.35",
+          "199_l_0_c_0_1_3-0_0.73-1_0.35-2_0.02-3_0.78",
+          "200_l_0_c_0_2_3-0_1.41-1_0.19-2_0.63-3_1.05",
+          "201_l_0_c_1_2_3-0_1.94-1_0.01-2_1.37-3_0.65",
+          "202_l_0_c_0_1_2-0_0.97-1_0.5-2_1.42-3_0.01",
+          "203_l_0_c_0_1_3-0_2.33-1_0.97-2_0.03-3_0.16",
+          "204_l_0_c_0_2_3-0_0.12-1_0.0-2_2.7-3_0.77",
+          "205_l_0_c_1_2_3-0_1.48-1_0.09-2_0.31-3_0.04",
+          "206_l_0_c_0_1_2-0_1.15-1_0.42-2_0.23-3_0.03",
+          "207_l_0_c_0_1_3-0_0.58-1_0.03-2_0.42-3_0.91",
+          "208_l_0_c_0_2_3-0_0.28-1_0.1-2_0.57-3_0.67",
+          "209_l_0_c_1_2_3-0_0.9-1_0.31-2_0.71-3_0.99",
+          "210_l_0_c_0_1_2-0_0.5-1_0.4-2_0.07-3_0.66",
+          "211_l_0_c_0_1_3-0_1.07-1_0.42-2_0.12-3_1.5",
+          "212_l_0_c_0_2_3-0_0.67-1_0.0-2_0.73-3_0.15",
+          "213_l_0_c_1_2_3-0_0.12-1_0.61-2_0.29-3_1.08",
+          "214_l_0_c_0_1_2-0_0.5-1_0.87-2_1.62-3_0.17",
+          "215_l_0_c_0_1_3-0_0.04-1_0.21-2_0.34-3_1.09",
+          "216_l_0_c_0_2_3-0_0.07-1_0.09-2_1.18-3_0.13",
+          "217_l_0_c_1_2_3-0_0.4-1_1.25-2_0.61-3_1.28",
+          "218_l_0_c_0_1_2-0_0.54-1_0.84-2_0.73-3_0.02",
+          "219_l_0_c_0_1_3-0_0.65-1_1.4-2_0.42-3_0.96",
+          "220_l_0_c_0_2_3-0_1.47-1_0.02-2_0.06-3_0.47",
+          "221_l_0_c_1_2_3-0_1.14-1_0.21-2_0.41-3_0.34",
+          "222_l_0_c_0_1_2-0_0.02-1_0.2-2_0.76-3_0.11",
+          "223_l_0_c_0_1_3-0_0.73-1_0.45-2_0.04-3_0.54",
+          "224_l_0_c_0_2_3-0_0.04-1_0.21-2_1.64-3_0.35",
+          "225_l_0_c_1_2_3-0_0.24-1_0.28-2_1.16-3_0.01",
+          "226_l_0_c_0_1_2-0_0.09-1_0.19-2_0.75-3_0.98",
+          "227_l_0_c_0_1_3-0_0.5-1_0.47-2_0.15-3_0.21",
+          "228_l_0_c_0_2_3-0_0.98-1_0.13-2_0.45-3_0.22",
+          "229_l_0_c_1_2_3-0_0.5-1_0.03-2_0.19-3_0.71",
+          "230_l_0_c_0_1_2-0_0.39-1_0.04-2_1.28-3_1.12",
+          "231_l_0_c_0_1_3-0_0.54-1_1.35-2_0.18-3_0.37",
+          "232_l_0_c_0_2_3-0_0.62-1_0.53-2_1.59-3_0.61",
+          "233_l_0_c_1_2_3-0_1.43-1_1.5-2_0.97-3_0.15",
+          "234_l_0_c_0_1_2-0_0.2-1_0.03-2_0.34-3_2.92",
+          "235_l_0_c_0_1_3-0_0.2-1_0.88-2_0.01-3_1.05",
+          "236_l_0_c_0_2_3-0_1.07-1_0.44-2_0.1-3_0.54",
+          "237_l_0_c_1_2_3-0_2.12-1_0.02-2_0.35-3_0.28",
+          "238_l_0_c_0_1_2-0_1.17-1_0.81-2_0.51-3_0.79",
+          "239_l_0_c_0_1_3-0_0.41-1_1.64-2_0.05-3_0.61",
+          "240_l_0_c_0_2_3-0_0.13-1_0.21-2_0.33-3_0.27",
+          "241_l_0_c_1_2_3-0_0.34-1_2.19-2_0.24-3_1.46",
+          "242_l_0_c_0_1_2-0_0.12-1_0.33-2_0.06-3_0.3",
+          "243_l_0_c_0_1_3-0_0.75-1_0.86-2_0.47-3_0.26",
+          "244_l_0_c_0_2_3-0_0.56-1_0.2-2_0.13-3_0.65",
+          "245_l_0_c_1_2_3-0_1.99-1_0.32-2_0.2-3_0.2",
+          "246_l_0_c_0_1_2-0_0.11-1_0.36-2_0.08-3_0.34",
+          "247_l_0_c_0_1_3-0_0.09-1_1.41-2_0.27-3_0.24",
+          "248_l_0_c_0_2_3-0_0.17-1_0.45-2_0.48-3_0.06",
+          "249_l_0_c_1_2_3-0_1.14-1_0.8-2_0.86-3_0.91",
+          "250_l_0_c_0_1_2-0_0.29-1_0.65-2_0.57-3_1.26",
+          "251_l_0_c_0_1_3-0_0.14-1_0.09-2_0.0-3_0.22",
+          "252_l_0_c_0_2_3-0_0.99-1_0.05-2_0.62-3_0.63",
+          "253_l_0_c_1_2_3-0_0.62-1_0.59-2_1.56-3_0.29",
+          "254_l_0_c_0_1_2-0_0.32-1_0.96-2_0.2-3_0.33",
+          "255_l_0_c_0_1_3-0_0.85-1_2.17-2_0.15-3_0.82",
+          "256_l_0_c_0_2_3-0_0.93-1_0.08-2_0.33-3_1.44",
+          "257_l_0_c_1_2_3-0_0.8-1_0.21-2_0.69-3_0.07",
+          "258_l_0_c_0_1_2-0_0.41-1_1.63-2_0.11-3_0.71",
+          "259_l_0_c_0_1_3-0_0.08-1_0.58-2_0.06-3_0.03",
+          "260_l_0_c_0_2_3-0_0.7-1_0.33-2_0.21-3_0.14",
+          "261_l_0_c_1_2_3-0_0.42-1_0.04-2_0.07-3_0.52",
+          "262_l_0_c_0_1_2-0_1.92-1_1.55-2_0.71-3_0.32",
+          "263_l_0_c_0_1_3-0_0.1-1_1.02-2_0.03-3_0.27",
+          "264_l_0_c_0_2_3-0_1.06-1_0.0-2_0.03-3_1.53",
+          "265_l_0_c_1_2_3-0_0.29-1_0.16-2_0.71-3_0.28",
+          "266_l_0_c_0_1_2-0_0.68-1_0.79-2_0.03-3_0.28",
+          "267_l_0_c_0_1_3-0_0.8-1_0.07-2_0.02-3_1.27",
+          "268_l_0_c_0_2_3-0_0.19-1_0.02-2_0.02-3_1.22",
+          "269_l_0_c_1_2_3-0_0.74-1_0.27-2_0.15-3_0.1",
+          "270_l_0_c_0_1_2-0_1.19-1_0.32-2_0.27-3_2.91",
+          "271_l_0_c_0_1_3-0_0.57-1_0.95-2_0.0-3_0.42",
+          "272_l_0_c_0_2_3-0_0.8-1_0.05-2_0.01-3_0.07",
+          "273_l_0_c_1_2_3-0_1.12-1_0.67-2_0.25-3_0.71",
+          "274_l_0_c_0_1_2-0_0.41-1_1.62-2_0.2-3_0.33",
+          "275_l_0_c_0_1_3-0_0.03-1_1.64-2_0.11-3_0.36",
+          "276_l_0_c_0_2_3-0_0.08-1_0.03-2_0.88-3_0.72",
+          "277_l_0_c_1_2_3-0_0.26-1_0.53-2_0.86-3_0.24",
+          "278_l_0_c_0_1_2-0_0.33-1_0.27-2_0.03-3_1.37",
+          "279_l_0_c_0_1_3-0_0.54-1_0.33-2_0.04-3_0.02",
+          "280_l_0_c_0_2_3-0_0.02-1_0.16-2_0.1-3_0.26",
+          "281_l_0_c_1_2_3-0_0.25-1_0.61-2_1.11-3_0.87",
+          "282_l_0_c_0_1_2-0_0.93-1_0.81-2_0.65-3_0.53",
+          "283_l_0_c_0_1_3-0_0.01-1_1.45-2_0.22-3_0.37",
+          "284_l_0_c_0_2_3-0_0.4-1_0.24-2_0.76-3_0.36",
+          "285_l_0_c_1_2_3-0_0.23-1_0.3-2_0.24-3_0.17",
+          "286_l_0_c_0_1_2-0_0.08-1_0.51-2_0.26-3_0.01",
+          "287_l_0_c_0_1_3-0_1.0-1_0.45-2_0.24-3_0.01",
+          "288_l_0_c_0_2_3-0_1.7-1_0.06-2_0.42-3_0.1",
+          "289_l_0_c_1_2_3-0_0.04-1_0.29-2_0.44-3_0.89",
+          "290_l_0_c_0_1_2-0_1.22-1_0.8-2_0.19-3_1.34",
+          "291_l_0_c_0_1_3-0_0.37-1_0.18-2_0.0-3_0.21",
+          "292_l_0_c_0_2_3-0_0.19-1_0.07-2_0.69-3_0.52",
+          "293_l_0_c_1_2_3-0_0.08-1_1.06-2_0.66-3_0.18",
+          "294_l_0_c_0_1_2-0_0.42-1_0.59-2_0.54-3_0.64",
+          "295_l_0_c_0_1_3-0_0.02-1_1.21-2_0.24-3_0.14",
+          "296_l_0_c_0_2_3-0_0.7-1_0.16-2_0.01-3_0.05",
+          "297_l_0_c_1_2_3-0_1.26-1_1.38-2_0.54-3_0.11",
+          "298_l_0_c_0_1_2-0_0.5-1_1.73-2_0.77-3_0.27",
+          "299_l_0_c_0_1_3-0_0.35-1_0.17-2_0.12-3_0.26",
+          "300_l_0_c_0_2_3-0_1.88-1_0.01-2_0.15-3_0.36",
+          "301_l_0_c_1_2_3-0_1.19-1_0.75-2_0.32-3_0.24",
+          "302_l_0_c_0_1_2-0_1.03-1_0.57-2_0.27-3_1.16",
+          "303_l_0_c_0_1_3-0_0.95-1_0.15-2_0.23-3_0.39",
+          "304_l_0_c_0_2_3-0_0.49-1_0.1-2_1.35-3_0.5",
+          "305_l_0_c_1_2_3-0_0.17-1_0.79-2_1.12-3_0.76",
+          "306_l_0_c_0_1_2-0_0.39-1_0.49-2_1.38-3_0.59",
+          "307_l_0_c_0_1_3-0_0.37-1_0.11-2_0.37-3_2.06",
+          "308_l_0_c_0_2_3-0_0.7-1_0.03-2_0.27-3_1.07",
+          "309_l_0_c_1_2_3-0_0.37-1_0.28-2_0.45-3_0.31",
+          "310_l_0_c_0_1_2-0_1.05-1_0.85-2_0.1-3_1.13",
+          "311_l_0_c_0_1_3-0_0.52-1_0.52-2_0.07-3_0.6",
+          "312_l_0_c_0_2_3-0_0.45-1_0.57-2_0.81-3_0.1",
+          "313_l_0_c_1_2_3-0_0.2-1_0.29-2_0.6-3_0.1",
+          "314_l_0_c_0_1_2-0_0.56-1_0.12-2_0.17-3_1.17",
+          "315_l_0_c_0_1_3-0_0.87-1_1.42-2_0.56-3_0.54",
+          "316_l_0_c_0_2_3-0_0.42-1_0.18-2_0.06-3_0.21",
+          "317_l_0_c_1_2_3-0_1.41-1_0.45-2_0.43-3_0.52",
+          "318_l_0_c_0_1_2-0_0.34-1_0.39-2_0.55-3_0.14",
+          "319_l_0_c_0_1_3-0_0.08-1_0.15-2_0.04-3_1.11",
+          "320_l_0_c_0_2_3-0_0.48-1_0.0-2_0.73-3_0.07",
+          "321_l_0_c_1_2_3-0_0.83-1_0.35-2_0.24-3_1.44",
+          "322_l_0_c_0_1_2-0_0.55-1_0.22-2_1.33-3_0.45",
+          "323_l_0_c_0_1_3-0_1.75-1_0.01-2_0.1-3_0.54",
+          "324_l_0_c_0_2_3-0_0.17-1_0.05-2_0.19-3_1.14",
+          "325_l_0_c_1_2_3-0_0.51-1_0.77-2_0.74-3_0.12",
+          "326_l_0_c_0_1_2-0_0.42-1_0.67-2_0.01-3_0.33",
+          "327_l_0_c_0_1_3-0_1.23-1_0.65-2_0.09-3_0.25",
+          "328_l_0_c_0_2_3-0_0.16-1_0.05-2_0.73-3_0.51",
+          "329_l_0_c_1_2_3-0_0.01-1_0.47-2_0.24-3_1.68",
+          "330_l_0_c_0_1_2-0_0.14-1_0.48-2_0.21-3_0.24",
+          "331_l_0_c_0_1_3-0_1.01-1_0.01-2_0.47-3_0.38",
+          "332_l_0_c_0_2_3-0_0.59-1_0.13-2_0.94-3_0.17",
+          "333_l_0_c_1_2_3-0_0.75-1_0.05-2_0.95-3_0.17",
+          "334_l_0_c_0_1_2-0_0.66-1_0.71-2_0.15-3_0.8",
+          "335_l_0_c_0_1_3-0_0.64-1_0.97-2_0.22-3_0.04",
+          "336_l_0_c_0_2_3-0_0.43-1_0.03-2_0.55-3_0.38",
+          "337_l_0_c_1_2_3-0_0.89-1_0.45-2_0.37-3_0.96",
+          "338_l_0_c_0_1_2-0_0.71-1_0.6-2_0.43-3_1.02",
+          "339_l_0_c_0_1_3-0_1.01-1_0.03-2_0.07-3_0.25",
+          "340_l_0_c_0_2_3-0_0.36-1_0.2-2_0.6-3_0.12",
+          "341_l_0_c_1_2_3-0_1.41-1_0.21-2_1.73-3_0.31",
+          "342_l_0_c_0_1_2-0_0.83-1_0.47-2_0.45-3_0.57",
+          "343_l_0_c_0_1_3-0_0.21-1_0.05-2_0.02-3_0.41",
+          "344_l_0_c_0_2_3-0_0.03-1_0.13-2_0.87-3_0.0",
+          "345_l_0_c_1_2_3-0_1.3-1_0.05-2_0.05-3_0.03",
+          "346_l_0_c_0_1_2-0_0.18-1_0.63-2_0.8-3_1.07",
+          "347_l_0_c_0_1_3-0_0.42-1_1.61-2_0.15-3_0.28",
+          "348_l_0_c_0_2_3-0_0.37-1_0.2-2_0.67-3_0.46",
+          "349_l_0_c_1_2_3-0_1.21-1_0.57-2_0.75-3_0.94",
+          "350_l_0_c_0_1_2-0_0.42-1_0.43-2_0.08-3_0.78",
+          "351_l_0_c_0_1_3-0_0.09-1_0.26-2_0.57-3_0.6",
+          "352_l_0_c_0_2_3-0_0.41-1_0.18-2_0.02-3_1.65",
+          "353_l_0_c_1_2_3-0_0.83-1_1.08-2_0.41-3_0.78",
+          "354_l_0_c_0_1_2-0_0.53-1_0.11-2_0.03-3_0.95",
+          "355_l_0_c_0_1_3-0_1.04-1_0.06-2_0.07-3_0.74",
+          "356_l_0_c_0_2_3-0_0.82-1_0.25-2_0.51-3_1.48",
+          "357_l_0_c_1_2_3-0_0.28-1_0.97-2_0.33-3_0.22",
+          "358_l_0_c_0_1_2-0_0.96-1_0.21-2_0.55-3_0.51",
+          "359_l_0_c_0_1_3-0_0.29-1_0.85-2_0.0-3_0.01",
+          "360_l_0_c_0_2_3-0_0.37-1_0.0-2_0.27-3_0.11",
+          "361_l_0_c_1_2_3-0_1.1-1_1.42-2_1.57-3_0.75",
+          "362_l_0_c_0_1_2-0_0.1-1_0.1-2_0.19-3_0.72",
+          "363_l_0_c_0_1_3-0_0.54-1_0.21-2_0.27-3_0.47",
+          "364_l_0_c_0_2_3-0_0.0-1_0.18-2_0.99-3_0.57",
+          "365_l_0_c_1_2_3-0_1.2-1_0.0-2_0.46-3_0.22",
+          "366_l_0_c_0_1_2-0_0.04-1_0.79-2_0.58-3_2.26",
+          "367_l_0_c_0_1_3-0_0.69-1_0.46-2_0.21-3_0.63",
+          "368_l_0_c_0_2_3-0_0.84-1_0.25-2_0.01-3_1.58",
+          "369_l_0_c_1_2_3-0_0.79-1_1.57-2_1.02-3_0.12",
+          "370_l_0_c_0_1_2-0_1.37-1_0.08-2_0.38-3_0.02",
+          "371_l_0_c_0_1_3-0_0.66-1_0.1-2_0.07-3_0.3",
+          "372_l_0_c_0_2_3-0_0.04-1_0.01-2_0.83-3_0.49",
+          "373_l_0_c_1_2_3-0_0.04-1_0.32-2_0.52-3_0.0",
+          "374_l_0_c_0_1_2-0_0.17-1_1.52-2_1.11-3_0.93",
+          "375_l_0_c_0_1_3-0_0.62-1_0.14-2_0.28-3_1.31",
+          "376_l_0_c_0_2_3-0_0.05-1_0.34-2_0.67-3_1.07",
+          "377_l_0_c_1_2_3-0_0.3-1_1.49-2_0.12-3_0.36",
+          "378_l_0_c_0_1_2-0_0.96-1_0.08-2_1.15-3_0.16",
+          "379_l_0_c_0_1_3-0_0.03-1_0.4-2_0.16-3_0.77",
+          "380_l_0_c_0_2_3-0_0.88-1_0.03-2_0.54-3_0.18",
+          "381_l_0_c_1_2_3-0_0.77-1_0.88-2_0.54-3_0.06",
+          "382_l_0_c_0_1_2-0_0.27-1_0.49-2_0.58-3_0.33",
+          "383_l_0_c_0_1_3-0_0.6-1_1.38-2_0.1-3_0.92",
+          "384_l_0_c_0_2_3-0_0.01-1_0.12-2_0.47-3_0.42",
+          "385_l_0_c_1_2_3-0_1.66-1_0.87-2_0.92-3_0.85",
+          "386_l_0_c_0_1_2-0_0.25-1_0.02-2_0.35-3_1.3",
+          "387_l_0_c_0_1_3-0_0.37-1_0.38-2_0.03-3_0.59",
+          "388_l_0_c_0_2_3-0_0.31-1_0.01-2_0.2-3_0.06",
+          "389_l_0_c_1_2_3-0_0.17-1_0.93-2_0.35-3_0.41",
+          "390_l_0_c_0_1_2-0_1.91-1_0.61-2_0.7-3_0.0",
+          "391_l_0_c_0_1_3-0_0.24-1_0.06-2_0.09-3_0.05",
+          "392_l_0_c_0_2_3-0_0.16-1_0.03-2_0.09-3_0.36",
+          "393_l_0_c_1_2_3-0_1.09-1_0.77-2_1.63-3_1.27",
+          "394_l_0_c_0_1_2-0_0.14-1_0.11-2_0.28-3_0.78",
+          "395_l_0_c_0_1_3-0_0.94-1_0.86-2_0.01-3_0.19",
+          "396_l_0_c_0_2_3-0_0.27-1_0.08-2_0.67-3_0.05",
+          "397_l_0_c_1_2_3-0_1.17-1_0.45-2_0.83-3_1.08",
+          "398_l_0_c_0_1_2-0_0.41-1_0.24-2_0.81-3_1.91",
+          "399_l_0_c_3-0_0.41-1_0.26-2_0.35-3_0.71",
+          "400_l_0_r-0_0.43-1_0.04-2_0.59-3_0.83",
+          "401_l_0_r-0_1.43-1_0.01-2_0.46-3_0.06",
+          "402_l_0_r-0_0.78-1_0.36-2_0.11-3_0.63",
+          "403_l_0_r-0_0.89-1_0.11-2_0.0-3_0.61",
+          "404_l_0_r-0_1.52-1_0.16-2_0.04-3_1.25",
+          "405_l_0_r-0_0.0-1_0.05-2_0.23-3_0.48",
+          "406_l_0_r-0_1.03-1_0.04-2_0.01-3_1.2",
+          "407_l_0_r-0_0.63-1_0.27-2_0.04-3_0.47",
+          "408_l_0_r-0_0.12-1_0.23-2_0.0-3_1.16",
+          "409_l_0_r-0_1.4-1_0.15-2_0.32-3_0.87",
+          "410_l_0_r-0_0.25-1_0.21-2_0.12-3_1.27",
+          "411_l_0_r-0_0.1-1_0.07-2_0.28-3_1.17",
+          "412_l_0_r-0_0.01-1_0.1-2_0.06-3_2.13",
+          "413_l_0_r-0_0.58-1_0.15-2_0.1-3_0.14",
+          "414_l_0_r-0_1.17-1_0.07-2_0.32-3_0.67",
+          "415_l_0_r-0_0.33-1_0.14-2_0.16-3_0.79",
+          "416_l_0_r-0_0.15-1_0.03-2_0.02-3_0.65",
+          "417_l_0_r-0_0.26-1_0.02-2_0.27-3_0.76",
+          "418_l_0_r-0_0.76-1_0.12-2_0.01-3_2.09",
+          "419_l_0_r-0_0.62-1_0.17-2_0.04-3_0.15",
+          "420_l_0_r-0_1.9-1_0.36-2_0.24-3_1.36",
+          "421_l_0_r-0_0.54-1_0.04-2_0.07-3_0.0",
+          "422_l_0_r-0_1.29-1_0.71-2_0.43-3_0.64",
+          "423_l_0_r-0_0.16-1_0.19-2_0.07-3_1.77",
+          "424_l_0_r-0_0.97-1_0.17-2_0.11-3_0.38",
+          "425_l_0_r-0_0.19-1_0.2-2_0.01-3_1.43",
+          "426_l_0_r-0_0.15-1_0.18-2_0.19-3_2.21",
+          "427_l_0_r-0_0.79-1_0.07-2_0.15-3_2.13",
+          "428_l_0_r-0_0.91-1_0.59-2_0.15-3_1.07",
+          "429_l_0_r-0_1.36-1_0.0-2_0.22-3_0.42",
+          "430_l_0_r-0_0.25-1_0.01-2_0.05-3_0.51",
+          "431_l_0_r-0_1.29-1_0.02-2_0.0-3_0.26",
+          "432_l_0_r-0_1.09-1_0.0-2_0.05-3_0.01",
+          "433_l_0_r-0_0.0-1_0.23-2_0.01-3_0.02",
+          "434_l_0_r-0_1.61-1_0.01-2_0.21-3_1.94",
+          "435_l_0_r-0_0.5-1_0.16-2_0.01-3_1.22",
+          "436_l_0_r-0_0.19-1_0.04-2_0.04-3_1.15",
+          "437_l_0_r-0_1.12-1_0.22-2_0.05-3_0.29",
+          "438_l_0_r-0_0.7-1_0.01-2_0.1-3_0.21",
+          "439_l_0_r-0_1.87-1_0.0-2_0.29-3_0.19",
+          "440_l_0_r-0_0.88-1_0.25-2_0.04-3_1.33",
+          "441_l_0_r-0_0.27-1_0.17-2_0.39-3_1.46",
+          "442_l_0_r-0_1.66-1_0.02-2_0.3-3_0.96",
+          "443_l_0_r-0_0.28-1_0.01-2_0.01-3_1.64",
+          "444_l_0_r-0_2.76-1_0.06-2_0.04-3_0.52",
+          "445_l_0_r-0_0.13-1_0.1-2_0.0-3_0.35",
+          "446_l_0_r-0_0.31-1_0.28-2_0.35-3_0.77",
+          "447_l_0_r-0_0.48-1_0.02-2_0.25-3_0.45",
+          "448_l_0_r-0_0.77-1_0.06-2_0.02-3_0.49",
+          "449_l_0_r-0_2.3-1_0.37-2_0.14-3_0.82",
+          "450_l_0_r-0_0.28-1_0.26-2_0.11-3_1.25",
+          "451_l_0_r-0_0.07-1_0.02-2_0.11-3_1.75",
+          "452_l_0_r-0_0.74-1_0.04-2_0.29-3_0.75",
+          "453_l_0_r-0_2.61-1_0.19-2_0.09-3_1.02",
+          "454_l_0_r-0_0.73-1_0.03-2_0.17-3_0.55",
+          "455_l_0_r-0_2.01-1_0.18-2_0.27-3_0.13",
+          "456_l_0_r-0_1.77-1_0.02-2_0.18-3_0.93",
+          "457_l_0_r-0_0.83-1_0.11-2_0.48-3_0.8",
+          "458_l_0_r-0_0.52-1_0.05-2_0.36-3_0.56",
+          "459_l_0_r-0_0.53-1_0.41-2_0.06-3_0.49",
+          "460_l_0_r-0_0.83-1_0.43-2_0.26-3_1.05",
+          "461_l_0_r-0_0.06-1_0.12-2_0.03-3_1.44",
+          "462_l_0_r-0_0.34-1_0.0-2_0.34-3_2.22",
+          "463_l_0_r-0_1.34-1_0.03-2_0.02-3_0.31",
+          "464_l_0_r-0_1.77-1_0.34-2_0.26-3_0.85",
+          "465_l_0_r-0_0.66-1_0.07-2_0.12-3_0.77",
+          "466_l_0_r-0_0.49-1_0.01-2_0.12-3_0.24",
+          "467_l_0_r-0_0.8-1_0.18-2_0.02-3_0.09",
+          "468_l_0_r-0_0.27-1_0.14-2_0.13-3_0.22",
+          "469_l_0_r-0_0.29-1_0.0-2_0.14-3_1.01",
+          "470_l_0_r-0_0.07-1_0.45-2_0.15-3_0.3",
+          "471_l_0_r-0_0.06-1_0.2-2_0.24-3_1.57",
+          "472_l_0_r-0_0.42-1_0.02-2_0.01-3_1.08",
+          "473_l_0_r-0_0.47-1_0.62-2_0.43-3_1.78",
+          "474_l_0_r-0_0.71-1_0.11-2_0.06-3_1.44",
+          "475_l_0_r-0_0.33-1_0.08-2_0.15-3_1.09",
+          "476_l_0_r-0_1.4-1_0.04-2_0.04-3_0.96",
+          "477_l_0_r-0_0.1-1_0.0-2_0.32-3_1.71",
+          "478_l_0_r-0_2.1-1_0.01-2_0.08-3_0.99",
+          "479_l_0_r-0_0.43-1_0.24-2_0.09-3_0.14",
+          "480_l_0_r-0_0.12-1_0.01-2_0.1-3_0.7",
+          "481_l_0_r-0_0.44-1_0.16-2_0.24-3_1.13",
+          "482_l_0_r-0_0.49-1_0.23-2_0.03-3_1.56",
+          "483_l_0_r-0_0.7-1_0.27-2_0.2-3_0.23",
+          "484_l_0_r-0_1.57-1_0.02-2_0.5-3_0.65",
+          "485_l_0_r-0_1.49-1_0.09-2_0.42-3_0.39",
+          "486_l_0_r-0_0.66-1_0.34-2_0.17-3_0.64",
+          "487_l_0_r-0_1.15-1_0.03-2_0.01-3_0.2",
+          "488_l_0_r-0_0.57-1_0.16-2_0.6-3_1.51",
+          "489_l_0_r-0_0.08-1_0.37-2_0.25-3_0.1",
+          "490_l_0_r-0_0.3-1_0.6-2_0.33-3_0.15",
+          "491_l_0_r-0_0.58-1_0.22-2_0.14-3_0.79",
+          "492_l_0_r-0_2.17-1_0.19-2_0.02-3_0.35",
+          "493_l_0_r-0_1.18-1_0.1-2_0.04-3_0.46",
+          "494_l_0_r-0_0.77-1_0.12-2_0.33-3_0.8",
+          "495_l_0_r-0_2.36-1_0.06-2_0.18-3_0.96",
+          "496_l_0_r-0_0.43-1_0.21-2_0.05-3_0.13",
+          "497_l_0_r-0_0.8-1_0.0-2_0.12-3_0.56",
+          "498_l_0_r-0_0.44-1_0.05-2_0.04-3_2.41",
+          "499_l_0_r-0_1.18-1_0.05-2_0.02-3_0.42",
+          "500_l_0_r-0_0.77-1_0.12-2_0.01-3_0.85",
+          "501_l_0_r-0_0.91-1_0.01-2_0.28-3_1.76",
+          "502_l_0_r-0_0.48-1_0.01-2_0.2-3_1.78",
+          "503_l_0_r-0_0.9-1_0.21-2_0.01-3_0.87",
+          "504_l_0_r-0_1.54-1_0.54-2_0.01-3_1.02",
+          "505_l_0_r-0_2.02-1_0.15-2_0.47-3_0.59",
+          "506_l_0_r-0_1.1-1_0.08-2_0.04-3_0.5",
+          "507_l_0_r-0_0.34-1_0.01-2_0.05-3_1.4",
+          "508_l_0_r-0_0.15-1_0.04-2_0.28-3_2.15",
+          "509_l_0_r-0_1.53-1_0.14-2_0.14-3_0.48",
+          "510_l_0_r-0_0.58-1_0.05-2_0.16-3_0.68",
+          "511_l_0_r-0_1.27-1_0.03-2_0.13-3_0.6",
+          "512_l_0_r-0_0.1-1_0.17-2_0.25-3_0.27",
+          "513_l_0_r-0_0.48-1_0.09-2_0.02-3_1.2",
+          "514_l_0_r-0_0.26-1_0.28-2_0.0-3_0.38",
+          "515_l_0_r-0_0.29-1_0.14-2_0.03-3_0.27",
+          "516_l_0_r-0_0.21-1_0.33-2_0.55-3_0.47",
+          "517_l_0_r-0_0.2-1_0.09-2_0.0-3_1.09",
+          "518_l_0_r-0_0.16-1_0.06-2_0.42-3_0.79",
+          "519_l_0_r-0_0.03-1_0.13-2_0.26-3_0.91",
+          "520_l_0_r-0_1.42-1_0.2-2_0.04-3_0.21",
+          "521_l_0_r-0_0.8-1_0.06-2_0.05-3_0.92",
+          "522_l_0_r-0_1.38-1_0.19-2_0.48-3_0.1",
+          "523_l_0_r-0_1.14-1_0.09-2_0.27-3_1.25",
+          "524_l_0_r-0_0.13-1_0.12-2_0.48-3_0.59",
+          "525_l_0_r-0_1.32-1_0.17-2_0.07-3_0.59",
+          "526_l_0_r-0_0.46-1_0.07-2_0.48-3_0.88",
+          "527_l_0_r-0_0.61-1_0.11-2_0.05-3_0.63",
+          "528_l_0_r-0_1.15-1_0.07-2_0.15-3_0.51",
+          "529_l_0_r-0_1.32-1_0.0-2_0.08-3_1.46",
+          "530_l_0_r-0_0.64-1_0.07-2_0.0-3_1.32",
+          "531_l_0_r-0_0.48-1_0.22-2_0.01-3_0.58",
+          "532_l_0_r-0_0.31-1_0.09-2_0.5-3_1.35",
+          "533_l_0_r-0_0.15-1_0.13-2_0.18-3_0.37",
+          "534_l_0_r-0_0.74-1_0.03-2_0.04-3_0.98",
+          "535_l_0_r-0_0.39-1_0.09-2_0.03-3_0.48",
+          "536_l_0_r-0_2.05-1_0.05-2_0.4-3_0.95",
+          "537_l_0_r-0_0.41-1_0.12-2_0.01-3_0.03",
+          "538_l_0_r-0_2.52-1_0.27-2_0.35-3_0.55",
+          "539_l_0_r-0_1.02-1_0.29-2_0.02-3_0.01",
+          "540_l_0_r-0_0.03-1_0.13-2_0.03-3_0.62",
+          "541_l_0_r-0_0.86-1_0.25-2_0.26-3_0.77",
+          "542_l_0_r-0_0.65-1_0.09-2_0.19-3_1.21",
+          "543_l_0_r-0_0.51-1_0.02-2_0.01-3_1.02",
+          "544_l_0_r-0_0.56-1_0.0-2_0.19-3_0.88",
+          "545_l_0_r-0_0.04-1_0.37-2_0.14-3_2.44",
+          "546_l_0_r-0_1.36-1_0.34-2_0.0-3_0.24",
+          "547_l_0_r-0_0.02-1_0.05-2_0.05-3_0.63",
+          "548_l_0_r-0_1.78-1_0.49-2_0.04-3_0.86",
+          "549_l_0_r-0_0.05-1_0.15-2_0.2-3_0.35",
+          "550_l_0_r-0_0.1-1_0.06-2_0.35-3_0.56",
+          "551_l_0_r-0_0.68-1_0.05-2_0.21-3_0.69",
+          "552_l_0_r-0_2.65-1_0.01-2_0.24-3_0.52",
+          "553_l_0_r-0_1.46-1_0.17-2_0.33-3_0.28",
+          "554_l_0_r-0_0.58-1_0.04-2_0.06-3_0.91",
+          "555_l_0_r-0_0.06-1_0.74-2_0.23-3_0.89",
+          "556_l_0_r-0_2.18-1_0.02-2_0.02-3_0.37",
+          "557_l_0_r-0_0.84-1_0.01-2_0.06-3_0.24",
+          "558_l_0_r-0_1.43-1_0.0-2_0.26-3_1.7",
+          "559_l_0_r-0_0.96-1_0.04-2_0.07-3_0.99",
+          "560_l_0_r-0_0.84-1_0.12-2_0.32-3_1.56",
+          "561_l_0_r-0_0.33-1_0.12-2_0.22-3_0.21",
+          "562_l_0_r-0_0.27-1_0.0-2_0.03-3_0.17",
+          "563_l_0_r-0_1.2-1_0.5-2_0.08-3_0.58",
+          "564_l_0_r-0_0.6-1_0.12-2_0.16-3_0.16",
+          "565_l_0_r-0_1.14-1_0.12-2_0.45-3_0.01",
+          "566_l_0_r-0_1.76-1_0.03-2_0.05-3_0.48",
+          "567_l_0_r-0_1.62-1_0.51-2_0.03-3_0.24",
+          "568_l_0_r-0_1.83-1_0.12-2_0.1-3_0.69",
+          "569_l_0_r-0_1.72-1_0.28-2_0.5-3_0.24",
+          "570_l_0_r-0_1.25-1_0.41-2_0.23-3_0.21",
+          "571_l_0_r-0_1.12-1_0.07-2_0.33-3_1.09",
+          "572_l_0_r-0_1.09-1_0.08-2_0.0-3_0.11",
+          "573_l_0_r-0_1.5-1_0.03-2_0.0-3_0.02",
+          "574_l_0_r-0_1.36-1_0.05-2_0.11-3_0.34",
+          "575_l_0_r-0_0.27-1_0.52-2_0.03-3_1.53",
+          "576_l_0_r-0_1.36-1_0.26-2_0.0-3_0.26",
+          "577_l_0_r-0_1.25-1_0.2-2_0.33-3_0.13",
+          "578_l_0_r-0_0.6-1_0.03-2_0.39-3_0.42",
+          "579_l_0_r-0_0.7-1_0.2-2_0.1-3_0.7",
+          "580_l_0_r-0_1.57-1_0.01-2_0.26-3_0.36",
+          "581_l_0_r-0_1.6-1_0.03-2_0.12-3_0.18",
+          "582_l_0_r-0_0.14-1_0.07-2_0.15-3_0.22",
+          "583_l_0_r-0_0.59-1_0.25-2_0.26-3_0.32",
+          "584_l_0_r-0_2.37-1_0.12-2_0.44-3_0.13",
+          "585_l_0_r-0_1.26-1_0.06-2_0.09-3_0.95",
+          "586_l_0_r-0_0.74-1_0.05-2_0.06-3_0.77",
+          "587_l_0_r-0_0.92-1_0.09-2_0.15-3_0.06",
+          "588_l_0_r-0_0.92-1_0.12-2_0.11-3_1.05",
+          "589_l_0_r-0_0.45-1_0.24-2_0.13-3_0.9",
+          "590_l_0_r-0_0.81-1_0.06-2_0.05-3_1.02",
+          "591_l_0_r-0_0.58-1_0.05-2_0.04-3_1.23",
+          "592_l_0_r-0_0.18-1_0.02-2_0.21-3_0.71",
+          "593_l_0_r-0_0.58-1_0.11-2_0.16-3_0.1",
+          "594_l_0_r-0_1.07-1_0.11-2_0.24-3_1.11",
+          "595_l_0_r-0_0.21-1_0.11-2_0.02-3_0.86",
+          "596_l_0_r-0_0.18-1_0.14-2_0.03-3_0.25",
+          "597_l_0_r-0_0.96-1_0.3-2_0.07-3_0.54",
+          "598_l_0_r-0_0.36-1_0.15-2_0.05-3_0.21",
+          "599_l_0_r-0_0.1-1_0.08-2_0.19-3_4.1",
+          "600_l_0_r-0_0.16-1_0.14-2_0.06-3_0.54",
+          "601_l_0_r-0_0.26-1_0.15-2_0.03-3_2.41",
+          "602_l_0_r-0_0.26-1_0.01-2_0.14-3_0.37",
+          "603_l_0_r-0_0.02-1_0.07-2_0.22-3_0.63",
+          "604_l_0_r-0_0.74-1_0.1-2_0.02-3_2.15",
+          "605_l_0_r-0_0.95-1_0.05-2_0.2-3_0.61",
+          "606_l_0_r-0_0.6-1_0.03-2_0.06-3_0.71",
+          "607_l_0_r-0_0.52-1_0.1-2_0.47-3_1.23",
+          "608_l_0_r-0_0.31-1_0.0-2_0.2-3_0.55",
+          "609_l_0_r-0_1.17-1_0.03-2_0.13-3_0.83",
+          "610_l_0_r-0_0.04-1_0.0-2_0.01-3_1.4",
+          "611_l_0_r-0_0.32-1_0.12-2_0.07-3_0.68",
+          "612_l_0_r-0_0.58-1_0.12-2_0.02-3_2.95",
+          "613_l_0_r-0_0.74-1_0.04-2_0.14-3_1.0",
+          "614_l_0_r-0_1.31-1_0.11-2_0.15-3_0.18",
+          "615_l_0_r-0_0.52-1_0.01-2_0.03-3_0.48",
+          "616_l_0_r-0_1.5-1_0.02-2_0.36-3_1.16",
+          "617_l_0_r-0_0.53-1_0.26-2_0.07-3_0.66",
+          "618_l_0_r-0_1.99-1_0.28-2_0.2-3_1.68",
+          "619_l_0_r-0_1.75-1_0.44-2_0.05-3_1.6",
+          "620_l_0_r-0_0.03-1_0.01-2_0.07-3_0.35",
+          "621_l_0_r-0_0.45-1_0.01-2_0.52-3_0.77",
+          "622_l_0_r-0_1.4-1_0.0-2_0.24-3_0.86",
+          "623_l_0_r-0_0.45-1_0.1-2_0.22-3_0.54",
+          "624_l_0_r-0_1.03-1_0.39-2_0.34-3_0.26",
+          "625_l_0_r-0_1.2-1_0.58-2_0.17-3_1.09",
+          "626_l_0_r-0_0.37-1_0.06-2_0.2-3_0.49",
+          "627_l_0_r-0_1.48-1_0.01-2_0.22-3_1.12",
+          "628_l_0_r-0_0.14-1_0.01-2_0.37-3_1.29",
+          "629_l_0_r-0_0.38-1_0.16-2_0.0-3_1.28",
+          "630_l_0_r-0_0.21-1_0.04-2_0.25-3_0.88",
+          "631_l_0_r-0_0.96-1_0.23-2_0.01-3_0.55",
+          "632_l_0_r-0_1.47-1_0.01-2_0.03-3_2.04",
+          "633_l_0_r-0_0.04-1_0.02-2_0.1-3_2.03",
+          "634_l_0_r-0_1.05-1_0.04-2_0.03-3_1.21",
+          "635_l_0_r-0_0.81-1_0.04-2_0.18-3_0.73",
+          "636_l_0_r-0_0.32-1_0.03-2_0.15-3_0.81",
+          "637_l_0_r-0_0.8-1_0.28-2_0.02-3_0.13",
+          "638_l_0_r-0_0.56-1_0.04-2_0.01-3_0.26",
+          "639_l_0_r-0_1.35-1_0.04-2_0.15-3_0.98",
+          "640_l_0_r-0_0.23-1_0.3-2_0.0-3_0.28",
+          "641_l_0_r-0_0.01-1_0.04-2_0.05-3_0.83",
+          "642_l_0_r-0_0.28-1_0.11-2_0.26-3_0.86",
+          "643_l_0_r-0_2.01-1_0.14-2_0.2-3_1.49",
+          "644_l_0_r-0_0.87-1_0.07-2_0.09-3_0.37",
+          "645_l_0_r-0_0.1-1_0.21-2_0.14-3_0.15",
+          "646_l_0_r-0_0.9-1_0.46-2_0.25-3_0.54",
+          "647_l_0_r-0_0.93-1_0.19-2_0.26-3_0.11",
+          "648_l_0_r-0_0.73-1_0.02-2_0.12-3_0.8",
+          "649_l_0_r-0_0.09-1_0.09-2_0.07-3_0.1",
+          "650_l_0_r-0_0.5-1_0.05-2_0.23-3_1.96",
+          "651_l_0_r-0_0.23-1_0.15-2_0.27-3_1.08",
+          "652_l_0_r-0_0.64-1_0.11-2_0.25-3_0.98",
+          "653_l_0_r-0_0.44-1_0.12-2_0.14-3_1.23",
+          "654_l_0_r-0_0.63-1_0.03-2_0.01-3_1.1",
+          "655_l_0_r-0_0.63-1_0.1-2_0.1-3_0.28",
+          "656_l_0_r-0_0.24-1_0.4-2_0.02-3_0.22",
+          "657_l_0_r-0_0.25-1_0.01-2_0.03-3_0.18",
+          "658_l_0_r-0_1.18-1_0.15-2_0.04-3_0.79",
+          "659_l_0_r-0_1.22-1_0.19-2_0.07-3_0.03",
+          "660_l_0_r-0_0.59-1_0.14-2_0.02-3_0.47",
+          "661_l_0_r-0_1.74-1_0.23-2_0.26-3_0.56",
+          "662_l_0_r-0_1.92-1_0.08-2_0.04-3_0.17",
+          "663_l_0_r-0_0.84-1_0.14-2_0.01-3_0.41",
+          "664_l_0_r-0_2.42-1_0.02-2_0.24-3_1.16",
+          "665_l_0_r-0_0.4-1_0.44-2_0.05-3_0.86"
          ],
          "type": "scatter3d",
          "x": [
-          -9.274483722547165,
-          10.182749971946613,
-          -8.920886167494096,
-          11.662522426889868,
-          -10.896190638435993,
-          10.46002153938844,
-          -9.011479976221839,
-          -10.064927478257836,
-          -9.54805604932587,
-          -8.967554109347736,
-          -9.389297469442342,
-          8.31702467819667,
-          8.080373603436886,
-          -9.030304228705214,
-          -9.126537722042807,
-          9.354196951529854,
-          -10.100469320403066,
-          11.012023642678313,
-          10.144504523782537,
-          -8.384017297713445,
-          -9.2268664319609,
-          -12.297568286811273,
-          10.251029094595301,
-          9.040981209522801,
-          10.668190439849383,
-          -11.891046522938899,
-          -9.603699580663013,
-          10.321502966359668,
-          9.831387901607215,
-          -10.32325584276093,
-          -10.340747809707958,
-          9.49450800907953,
-          9.657798999204113,
-          -9.72143931413143,
-          -8.966551712987753,
-          -10.657689851600836,
-          -10.495212356622615,
-          11.742143491125287,
-          -11.816106868550007,
-          -10.438868716669425,
-          9.746493507415849,
-          10.256822396014316,
-          -11.98744149669954,
-          10.551993963170071,
-          9.856335695579906,
-          -11.135519393842603,
-          -9.327125901948499,
-          -8.317263043757707,
-          10.03350203406071,
-          -10.327353227480922,
-          -10.70805149577955,
-          -8.266646506801413,
-          9.224142414671123,
-          -9.46030913133651,
-          -10.886156852736132,
-          -10.522224622628588,
-          -7.208631539968973,
-          9.265034005598109,
-          -10.897193851439031,
-          -8.645199106323135,
-          -10.087486975306106,
-          -9.416418894771947,
-          10.84049690248721,
-          10.634564528553149,
-          8.641818778769299,
-          -9.23583412417101,
-          -9.664079798387611,
-          -10.79207533220703,
-          7.885921385045114,
-          -9.224035300227262,
-          8.47952988772804,
-          8.723158752967736,
-          9.219964588439518,
-          -10.997926681236022,
-          9.433430428882003,
-          10.604152638461537,
-          9.515567066063564,
-          11.42899510672535,
-          10.070881155260066,
-          10.408247803126738,
-          -9.961994958472152,
-          -7.1015661464045685,
-          8.923460587268758,
-          -8.92031503600557,
-          9.70965513472096,
-          -9.443273371106514,
-          9.45869064626437,
-          10.531070071083995,
-          -11.064349262148411,
-          11.147952334134027,
-          9.809272675057029,
-          9.425548898585745,
-          11.050291697563937,
-          10.346681324162365,
-          -8.90489299997826,
-          -9.596100489500225,
-          -13.407120943416558,
-          -9.035176678899978,
-          10.924298003137807,
-          -10.623380079503894,
-          9.872384811505318,
-          9.477163517245513,
-          -9.479995552438925,
-          11.178417967434196,
-          -10.473045448840795,
-          -8.50711416402356,
-          -8.479641141738806,
-          -10.130381671304907,
-          9.93684398228607,
-          7.851621610312742,
-          -12.306782740480028,
-          8.99703190481938,
-          9.566589159204725,
-          9.567326352877744,
-          11.360196900774866,
-          10.898742226833265,
-          -10.753286447812563,
-          -7.660789921353288,
-          -10.468870185636648,
-          -9.105860183368343,
-          10.91172970597093,
-          -9.874930569451653,
-          10.532753228398217,
-          11.404776684907462,
-          9.62024901528275,
-          10.696965086536231,
-          7.880610008847992,
-          9.349042184580691,
-          9.957341267325422,
-          -9.321929287479096,
-          -8.420063905099902,
-          -10.575408479204363,
-          9.36299133799725,
-          11.877774560728783,
-          9.4811352121527,
-          10.774948929380573,
-          -11.492165847006573,
-          8.009384311473736,
-          12.177591404721946,
-          -11.922756078003472,
-          10.130270520721979,
-          10.889107318789163,
-          -7.845481992397943,
-          -9.80380875303458,
-          9.800234478835744,
-          9.842871216511925,
-          9.86678578098678,
-          8.466707183748323,
-          -8.384791096835666,
-          8.618329834419919,
-          9.63944951198026,
-          8.859231629953193,
-          -9.783205518229233,
-          -9.124860784011565,
-          8.689345325883478,
-          -11.017869641991428,
-          -10.12485205855199,
-          11.172074678353301,
-          10.52296181586402,
-          10.559321739553539,
-          -10.792061066465788,
-          10.281079032370211,
-          8.549807391927853,
-          -9.88786067805026,
-          -10.153925619372018,
-          -8.96710436865634,
-          10.145581404893155,
-          11.416542645265046,
-          10.713417321165881,
-          10.777484727240786,
-          10.561454839631814,
-          -10.381850949278514,
-          9.645953610960152,
-          -10.708059007911926,
-          9.007708519802236,
-          -10.080949003454245,
-          -9.975886428646332,
-          8.323563301547466,
-          8.598710891683167,
-          -11.06800078511054,
-          -10.485196136342092,
-          -8.389713762220651,
-          10.059515639834403,
-          -11.289439131666743,
-          9.53856056618424,
-          9.638826420716388,
-          -9.715106416556822,
-          11.719134290778047,
-          -9.531865145133127,
-          -10.833668489378962,
-          8.370335064296762,
-          10.140035325856129,
-          9.644786186396868,
-          -11.630350790295179,
-          -9.860034753644447,
-          9.906876406254344,
-          -9.617392146203315,
-          10.056474636048195,
-          8.027739606251208,
-          -9.305762906228077,
-          -10.006659473342262,
-          -9.371876654812777,
-          -9.069785219035412,
-          10.787181960871791,
-          9.976801657151873,
-          9.93774378735386,
-          -8.406188886264628,
-          -9.862854778190005,
-          -11.722003404562694,
-          -9.877475311443115,
-          10.388591740161424,
-          -8.341318108219486,
-          -10.562375011085969,
-          10.161340169760285,
-          9.530700120024592,
-          -9.663302224987687,
-          10.416081730325834,
-          9.445703881923377,
-          10.579477729943733,
-          9.330211396484243,
-          -9.117344638302104,
-          11.064178920548907,
-          10.964590800221192,
-          -9.851184454238112,
-          -11.563017413044786,
-          -9.89053724045178,
-          -11.11821143968469,
-          -11.996733063064507,
-          -8.888677710879893,
-          -9.980561350165036,
-          9.967250253041787,
-          9.735984523541793,
-          -9.207676020742277,
-          10.592782345899499,
-          10.2350794204237,
-          10.659868656746958,
-          11.996233571792585,
-          -10.616190737658272,
-          11.847414881868664,
-          9.633306836601543,
-          9.79625238402967,
-          10.64278879859573,
-          -10.483963309355033,
-          -8.79695067029022,
-          -11.862736172077142,
-          9.115903353466523,
-          10.8795686971334,
-          -12.285924903789745,
-          11.876177922036632,
-          -9.642766600455387,
-          9.336589264606129,
-          11.075346855202799,
-          9.753186969205068,
-          -7.588947380503218,
-          10.64209969737429,
-          -9.111476235997415,
-          12.085192294571169,
-          -9.359699892424894,
-          -9.146568251649601,
-          10.002277759154616,
-          10.065097635024603,
-          7.803801137070254,
-          -11.220156195756601,
-          -10.889803698621957,
-          -9.993785303837956,
-          10.362278767972128,
-          -11.489891137721045,
-          -10.717419067500588,
-          -9.322894184088058,
-          9.732743716429166,
-          8.846888715678816,
-          -11.670565572946542,
-          10.229388269345401,
-          -11.326737083095344,
-          -9.074134081197892,
-          10.349941587164217,
-          -11.524115756380588,
-          -10.337853212306843,
-          -9.670280710395257,
-          10.656286686805247,
-          -11.378104010966638,
-          -11.283380057984322,
-          -9.95297008437745,
-          -8.017340714717909,
-          11.11861865256079,
-          -12.290705597018553,
-          10.74632474625807,
-          -9.083656777795056,
-          -11.54845650050124,
-          -9.251828624790123,
-          -9.640315874209472,
-          -10.526923295472514,
-          -9.823508999126402,
-          9.57549395167449,
-          -8.954809606793384,
-          9.951563403316744,
-          10.665189452516625,
-          9.095512933036044,
-          10.809370494323726,
-          -10.263155506413346,
-          8.836315081479553,
-          -10.729536893345086,
-          9.250050644255507,
-          12.116918128849726,
-          -9.655361895599446,
-          10.097174419979167,
-          -7.4876739235383685,
-          -10.55215279344824,
-          10.127826617799949,
-          9.722842158773686,
-          9.758243592489286,
-          10.665731360897638,
-          9.646431726390293,
-          -9.887500222275657,
-          10.723327988661062,
-          -10.321535804397787,
-          -8.8554214475351,
-          -9.918936442216282,
-          -9.790971705186019,
-          11.579333669669637,
-          -10.294276056081703,
-          9.748397985822411,
-          -8.074016422875781,
-          10.397548831936565,
-          -10.777742807157747,
-          10.455311672105823,
-          -10.08831812155791,
-          9.890424050585867,
-          -9.478871194297284,
-          -10.917841249421704,
-          8.865896878732801,
-          -10.306268130779834,
-          9.672510476270071
+          -3.1382269831511733,
+          -0.2685318039079335,
+          2.0888975601701074,
+          0.04151576413162328,
+          0.9479128268382166,
+          -0.655983983171899,
+          -2.524820802584446,
+          -0.20552327034998907,
+          -1.1981810750058643,
+          -2.049971796521527,
+          -1.5626676358527434,
+          -1.4617283822336036,
+          -2.224764600365523,
+          -3.1086581926286434,
+          -2.264235871332488,
+          0.6470212508217288,
+          -3.1373184220422123,
+          0.64714868453149,
+          -2.263838808839025,
+          -0.299609066150589,
+          -2.554742924044702,
+          -1.8515085054173688,
+          -1.3199342726706278,
+          -2.662844689329333,
+          -0.6488754707086891,
+          -1.5364769378788792,
+          -1.1420757796661993,
+          0.3260120406942577,
+          -0.2940931806833482,
+          0.11394324860004179,
+          -1.580039489821564,
+          0.03500454501418426,
+          -0.06270238592806043,
+          0.08871654518140337,
+          -2.401802755648407,
+          0.9383266558714771,
+          -0.8389102201090534,
+          1.0577680865182932,
+          -3.231678398620726,
+          -1.9870089524173005,
+          -2.0473435253514527,
+          -1.496978438798811,
+          -0.016041831138337792,
+          0.4436758255099629,
+          -1.1249333264520254,
+          0.37589829966536703,
+          -3.5370439149556474,
+          0.0664926234360399,
+          -1.9781341006107835,
+          1.4598239077273893,
+          0.8574546304794399,
+          -3.6928192881636943,
+          1.453460798662559,
+          -1.8479027634695877,
+          -1.1286085995283477,
+          -2.646435907245071,
+          0.5951714782126474,
+          -1.9218863547632976,
+          -1.7351704998446835,
+          0.09099597590094288,
+          -2.9833734685812114,
+          0.4014990320379159,
+          -0.8508928948057878,
+          -1.456069185331315,
+          0.4555160247077301,
+          -1.4531340766484648,
+          -1.3576442855131312,
+          0.45343028685225395,
+          -1.3815774725557666,
+          -2.9072880948022335,
+          0.8749245297152239,
+          -0.9561821839523491,
+          -2.7984676190920688,
+          -2.2142371874041293,
+          0.3721499783997195,
+          -1.4505516270918792,
+          -0.7130621381145594,
+          -1.581261374410217,
+          -1.223894334778181,
+          -0.47281609866751995,
+          -0.27541458184879875,
+          -1.8909832284160095,
+          -1.7354441500286022,
+          1.8521598485368438,
+          -0.4966755630874017,
+          0.2504612392030585,
+          -1.31509091323862,
+          -0.3787775858307796,
+          0.04140555917963695,
+          2.2700522489197215,
+          -0.23054547708000728,
+          1.1582042367294307,
+          -0.05270191317934525,
+          -2.6182632370402414,
+          -0.8990028494545939,
+          1.1608868485226345,
+          -0.7146734790626437,
+          -2.2924505251082348,
+          1.2630065702223319,
+          -0.5355522244901503,
+          0.03331098109491437,
+          -2.967417502037982,
+          -0.9628485959623048,
+          0.34320944855698565,
+          1.024540403483989,
+          -0.6601385441383356,
+          -0.060503033324161626,
+          0.006730529049343792,
+          -0.2415357967766394,
+          0.37964433780394025,
+          -1.2795327733924122,
+          -0.3956435313414234,
+          -0.9893022233486192,
+          0.1213194717498769,
+          -1.8061864495598394,
+          1.5174035482473025,
+          -1.027336324018343,
+          -2.136816150415685,
+          0.07052297462557289,
+          -4.744101549519119,
+          -1.5763502082578058,
+          1.0289843044151241,
+          0.038240588626679894,
+          -1.7614915719557458,
+          -0.8788314643202351,
+          -2.2840225703678034,
+          -3.13654684047019,
+          -0.5449827217179237,
+          -1.365774410691686,
+          -0.2581237798931957,
+          0.9585205799999339,
+          1.197420397251825,
+          -3.7319115528836893,
+          -2.239227894778362,
+          -0.6318100397582147,
+          -2.78381020376177,
+          1.4543762313527369,
+          0.5999724290752821,
+          -1.7643131124524012,
+          0.8029447914421828,
+          1.3235275241956428,
+          -0.4794721183420574,
+          0.9631718823010895,
+          0.8344823864745001,
+          -3.3754786891998734,
+          0.30771863342427497,
+          -1.0091526244774092,
+          -2.6897337486757777,
+          -0.5393576091985118,
+          -0.8181354168258329,
+          -0.7553427822807027,
+          -3.959342785813036,
+          -1.7710967999858354,
+          -3.544424158226561,
+          -2.9040154671132754,
+          1.9918286580552844,
+          -1.5310259446045569,
+          -3.111701724472069,
+          0.9885584605399709,
+          -1.987820744637116,
+          -0.5500758347137693,
+          0.2251667515232556,
+          -1.9533440486040212,
+          -2.7560644428417254,
+          0.8607731517024084,
+          -1.8753501168875713,
+          -1.397471116225515,
+          -1.278422807714247,
+          -2.823413414474465,
+          -0.9577790895973614,
+          0.32588196865662566,
+          0.018351175153526356,
+          0.08560574952579847,
+          -0.46448350645003966,
+          -1.938693170628241,
+          0.8569472069594095,
+          0.6691180802014896,
+          -1.3555118169858464,
+          -3.3066896104576617,
+          -0.47999859739869666,
+          -2.2912449008948785,
+          -0.6503790192191605,
+          0.3515769937954356,
+          0.018633843333199618,
+          1.0229801481683887,
+          -1.3234546628778516,
+          -0.18942179832221784,
+          0.35935299442089486,
+          0.5939088538991446,
+          -0.7180878903735002,
+          1.4355437683189085,
+          0.9858819038244864,
+          0.6214512591281074,
+          -0.1967267581152179,
+          0.17946608570665745,
+          -0.7244293764503971,
+          1.9300518648191285,
+          -0.8387329126428061,
+          0.6692696799004787,
+          -0.9825896762279436,
+          3.519536284567897,
+          -2.20726360199989,
+          -1.3452033274723987,
+          2.904910930720848,
+          -0.6175207413353527,
+          -1.4837985593689418,
+          1.1475564507705056,
+          0.5763639807615355,
+          -0.2822542708374518,
+          -0.9007198117952782,
+          1.2046981333943947,
+          1.558549913608584,
+          0.6699477851483351,
+          -2.5634869004997674,
+          -2.9301314695541096,
+          0.5481675584227623,
+          -1.562622007867276,
+          -0.4039490669124042,
+          -1.3467830788555941,
+          0.6453784508232745,
+          -1.6134679706680517,
+          -1.664902626949361,
+          -0.020740325981599583,
+          1.3858877923753323,
+          0.5261190780857024,
+          -3.7547066166556937,
+          -1.3096477496280732,
+          0.4956066946119966,
+          1.9410303642664637,
+          -1.1449581191876612,
+          0.3875732940561214,
+          0.5419115411750295,
+          -3.1930993195831343,
+          -1.4263959346947512,
+          -0.20378711767536017,
+          0.34380398585546135,
+          1.072129363195542,
+          -2.1403502712292615,
+          1.1691395709881167,
+          0.4148175160944525,
+          -0.12892867068651537,
+          -0.3433765164129142,
+          -1.200422244107755,
+          -1.3694588939770722,
+          0.5634959140081102,
+          -2.090216065939198,
+          0.14893592340698691,
+          -1.0091250480265,
+          0.1743262167057973,
+          -1.1389253340184247,
+          0.7408554089190476,
+          -2.0937672407624133,
+          1.4443452659033658,
+          -0.6202728482247255,
+          0.32427220726674766,
+          -1.3327907240677286,
+          0.9285672858065517,
+          -1.3502760871938753,
+          -1.7956906358798992,
+          0.08144917582484634,
+          0.6953396913662757,
+          -2.3071320572181993,
+          -1.9195906653405985,
+          0.32287112349432157,
+          -1.0608538957349984,
+          -4.845010164681748,
+          0.6767049333043147,
+          -0.8436153949943204,
+          -0.41026238555285643,
+          -0.7416557209690089,
+          -2.0586367777369237,
+          -3.678539812674941,
+          -1.147388432652371,
+          -1.1193256014226785,
+          -1.1661858250667299,
+          0.8946423384022453,
+          -0.08456493164748546,
+          -1.3716061971582576,
+          1.2316464085779995,
+          0.5496753317599126,
+          0.015058310404468367,
+          -0.25395054382165405,
+          0.9289020521374443,
+          1.9869139016430264,
+          -2.085684245688965,
+          -0.2283466785765963,
+          2.07890784825864,
+          -1.000575049945286,
+          -1.7046360018403015,
+          -0.04458922652358677,
+          -2.1517662459722016,
+          0.44540495634349253,
+          0.18967353669084153,
+          -0.0782363754174129,
+          0.42316172823834,
+          0.024841443976796995,
+          0.704574721246356,
+          -1.2613381681878701,
+          0.5027571588822566,
+          0.34884772548712806,
+          3.200122595429754,
+          -2.9616049852955504,
+          1.034187347670796,
+          0.9536078043647918,
+          0.4930152201167901,
+          -2.4656215837862803,
+          0.3919285600643305,
+          -2.1263368868317647,
+          -0.6993203056965186,
+          -0.37455427047524825,
+          1.0501447170539473,
+          0.5186742871236714,
+          0.4548412500085506,
+          -0.1996850473624493,
+          0.5620150747112402,
+          0.8706204352007452,
+          0.41755926891863115,
+          -1.408375478038131,
+          0.33920234835677077,
+          -1.1906005993766855,
+          0.4755740690888097,
+          -1.0585596074976775,
+          -1.198064830349557,
+          1.7537983972292115,
+          0.9813242430599025,
+          -0.9945295676805687,
+          0.4210122652778858,
+          -2.8030394520132913,
+          -0.6669512644105907,
+          -2.585884570596723,
+          0.14151050336496152,
+          1.0071842714040735,
+          -2.710432957835423,
+          -0.753722368543202,
+          -0.6646890129986978,
+          0.8010942023542231,
+          -0.995050320351079,
+          -0.8909859292641047,
+          0.7106148562168246,
+          -1.0088928507361927,
+          -0.5463420547216624,
+          -1.4078268855597396,
+          0.8310432722266272,
+          1.4946772986772885,
+          1.0833806170488116,
+          -1.303200166397914,
+          0.17912393978415087,
+          0.5705215882974621,
+          0.37342497545031583,
+          -1.2137950287535453,
+          -0.7285455990773471,
+          -1.4513649397638138,
+          0.41287262146621995,
+          -1.8123991471563294,
+          0.5305759845253497,
+          1.0392909917652995,
+          -1.459708208931679,
+          -0.2792208751551919,
+          1.3795232653935887,
+          -2.280287261785606,
+          0.3714267774776083,
+          -1.0983488618876207,
+          -0.09637966712057089,
+          0.5390876465569243,
+          -0.06051510849454711,
+          -1.1992388151961826,
+          -0.04341749979519072,
+          1.544854342958927,
+          2.585704291572895,
+          -1.845198266906044,
+          1.3726382265583883,
+          0.6580791290627968,
+          0.03940101780880845,
+          -1.1986622871973944,
+          -0.9652399436482899,
+          0.6164689063376838,
+          0.5519969750401579,
+          -0.3016797323230158,
+          -1.006822339743948,
+          -1.6727274288682006,
+          -2.1537230826437135,
+          -0.7726033521950484,
+          0.27399990564925103,
+          0.5990146485181438,
+          2.0183886906290205,
+          -1.6569238920803553,
+          -0.2488119286604371,
+          -1.8134334848662774,
+          -0.44594023160393337,
+          -0.16665553299539537,
+          1.9092901217728135,
+          -3.3510562072124097,
+          -1.4696997379673575,
+          -1.0870911821276175,
+          0.1399857977803758,
+          -2.4469549139471782,
+          0.26618707130107433,
+          -1.1734665959619774,
+          -1.3090460976925242,
+          -1.626829533035766,
+          -0.4323949023921293,
+          -1.926455684495671,
+          -1.6782158704643377,
+          -1.3331289131220736,
+          -1.5208415390071293,
+          -0.8452419179235673,
+          -1.029721163317044,
+          -0.6312953135507501,
+          -0.12469639979072422,
+          -1.4023246036370745,
+          -1.64174870591807,
+          -2.339839365605118,
+          -0.96260421076181,
+          -4.10213795639029,
+          -2.0002616209329154,
+          -0.33481286620262707,
+          -2.2562857772798908,
+          -2.6456297634629227,
+          -0.7557146849201826,
+          -2.5050620325301147,
+          -1.9042066139011986,
+          -3.1377428105770018,
+          -1.289470117165747,
+          -2.5219343810315964,
+          -3.423020151908068,
+          -2.522953218638106,
+          -1.4106840938408511,
+          -0.7948905413789137,
+          -1.1116278999443046,
+          -1.7937531700518787,
+          -2.5429304576203346,
+          -1.2931404571713283,
+          -2.2999939077403497,
+          -0.0039759671140015,
+          -2.610707978114246,
+          -0.5021633805893225,
+          -2.2223233383041903,
+          -1.5357621823176264,
+          -0.6959530462770198,
+          -4.74550106843591,
+          -1.1764010774091036,
+          -2.2010387338938,
+          -1.6581708563536899,
+          -2.156203273219802,
+          -4.40051179439025,
+          -1.744721975768083,
+          -0.8931229304063152,
+          -1.058341563686448,
+          -1.9126561939592914,
+          -2.2963445727622784,
+          -0.28325544726678253,
+          -4.09525122564421,
+          -1.3485023539835874,
+          -2.607082676116303,
+          -1.2015378630462163,
+          -3.2807442220297527,
+          -1.7678982724381085,
+          -0.9762421832099875,
+          -3.1664598605080716,
+          -0.5348443135110914,
+          -2.1835400466545947,
+          -0.05648950818702103,
+          -0.33857033026299155,
+          -1.876061930508654,
+          -2.50895580830447,
+          -1.2435691509766227,
+          -1.5242258065495753,
+          -4.044229797647288,
+          -2.3124697757552295,
+          -0.29397257461805126,
+          -0.546506848709746,
+          -0.06336383713456128,
+          -0.42006542143953596,
+          -3.245024646990852,
+          -2.9804836632376412,
+          -0.32562840173755203,
+          -1.3976792306211996,
+          -0.09713499523632063,
+          -2.371726993872241,
+          -0.4330084715783522,
+          -0.23348007454845432,
+          -0.43691698036622073,
+          -1.9954169340772796,
+          -0.7027625554625168,
+          -1.5726481698119705,
+          -1.4934313435608066,
+          -1.2226144336133395,
+          -3.1722630181890636,
+          -0.5724960645765421,
+          -0.38559002458500913,
+          -0.5757272951602972,
+          -2.6237610200418495,
+          -2.699220939584711,
+          -1.6399504624154346,
+          -2.614234356211913,
+          -2.3640812120947365,
+          -0.4279249742706488,
+          -1.0563384158755014,
+          -2.588845756645566,
+          -1.1833534452982504,
+          -1.2396583932145127,
+          -0.9053973348301014,
+          -0.4816942037372196,
+          -1.499223025240171,
+          -1.5412128437894148,
+          -3.8474800557871873,
+          -1.1041935838047567,
+          -1.628600400997545,
+          -3.065507295084662,
+          -1.5265810555002253,
+          -3.1287217942642545,
+          -1.7594964589226518,
+          -1.755955450753509,
+          -0.48495269222622417,
+          -0.5784998920962299,
+          -0.29245823827483675,
+          -1.0329686544301515,
+          -1.182895328031118,
+          -0.15977535075550442,
+          -0.028129448522792755,
+          -2.5775650121113793,
+          -0.7963255126365383,
+          -1.522646325706483,
+          -1.139065482786663,
+          -1.5125685862908793,
+          -1.3190477508967302,
+          -1.4867465453749256,
+          -0.6107449840895126,
+          -1.7026169942133096,
+          -1.8913502572687584,
+          -0.6382672398111335,
+          -0.9986902303424408,
+          -0.3120213776319255,
+          -0.15315711609325955,
+          -0.742017543557862,
+          -1.9178678894437837,
+          -2.085813133987787,
+          -1.5813588430279448,
+          -2.5191187579696774,
+          -1.0215261958778576,
+          -1.6101076189566292,
+          -1.5859543192682062,
+          -1.5062922365554194,
+          -0.8454801709308568,
+          -0.5641621750969663,
+          -2.279950107717542,
+          -1.3588249273822424,
+          -1.7574151030472132,
+          -3.182174216014494,
+          -1.405128114797467,
+          -0.17224414588577897,
+          -0.6803972006643827,
+          -4.35565946625872,
+          -1.6967527699049147,
+          -1.4025880852331178,
+          -0.05612501646705992,
+          -3.4170310115567637,
+          -0.8444612512454752,
+          -3.172167454746042,
+          -0.9585032595511934,
+          -1.6475885614823147,
+          -0.3284173174819893,
+          -1.1248855273193819,
+          -2.0608639948407297,
+          -0.5962176542397593,
+          -1.9912954892315824,
+          -1.758842667212068,
+          -1.630789628453209,
+          -2.4153688213025104,
+          -1.71532282752446,
+          -1.8405063933403878,
+          -1.1233137168148941,
+          -3.863977142390866,
+          -4.409301381734267,
+          -1.3625996264542968,
+          -0.267279446657513,
+          -1.3567480667691723,
+          -1.3116198862741455,
+          -0.6020619382056291,
+          -1.9788788930382601,
+          -2.2289813354242756,
+          -1.736769952530875,
+          -0.13690230764657307,
+          -1.8490842463740627,
+          -2.3691638496948952,
+          -1.9179284313411136,
+          -0.738321360339199,
+          -0.9182976190100148,
+          -1.2706304381309177,
+          -2.154908302804888,
+          -1.3094167034562083,
+          -0.5812866247605885,
+          -0.18272548614250217,
+          -0.5810327437747758,
+          -1.5120765616219218,
+          -2.2994152990411765,
+          -0.2443172249025145,
+          -0.9595730249502779,
+          -0.6580528574113409,
+          -1.6400424463722638,
+          -0.1619800888978189,
+          -0.26077202841438807,
+          -0.3001348772457223,
+          -0.017812425929567333,
+          -0.7397560574257097,
+          -0.949940701634627,
+          -0.5960808447446446,
+          -0.5227430526202029,
+          -0.8184923705854048,
+          -2.8899669754016912,
+          -0.5628649286275906,
+          -0.31736271611671674,
+          -0.5776056376260539,
+          -0.9398816227621116,
+          -2.0521672053417297,
+          -1.931555044001032,
+          -3.1273052488214272,
+          -0.5260198616541357,
+          -3.291770394726719,
+          -1.7546841353355884,
+          -0.9608036041241741,
+          -1.7677057334015869,
+          -4.57793314847721,
+          -0.9015259432498355,
+          -1.0285833352096083,
+          -1.1950718266622684,
+          -0.37010022608883386,
+          -1.4825734688712233,
+          -2.4779785721186203,
+          -1.9432939623296863,
+          -0.21350747189129737,
+          -0.9567587297049666,
+          -2.4805434218497595,
+          -1.9194493782799271,
+          -1.0478948020004373,
+          -1.9191602213040921,
+          -2.924131830942173,
+          -0.7997681264451874,
+          -2.2311810938504637,
+          -1.3453078560966274,
+          -1.4828441586452925,
+          -0.012539004561570977,
+          -1.6921439248023507,
+          -3.466109754045647,
+          -0.8738580530859075,
+          -0.0999731161747931,
+          -0.9008374669931157,
+          -0.9297777887001505,
+          -1.2513598555658176,
+          -1.8315087359522515,
+          -0.5010820510125521,
+          -3.25610100241499,
+          -1.2829984997415735,
+          -0.4421692680534781,
+          -1.121186959588633,
+          -1.986197872795695,
+          -1.51651656865362,
+          -2.288252806149461,
+          -1.1774758250581963,
+          -1.218983146576381,
+          -1.956253232021209,
+          -4.815903925725383,
+          -1.9216163820056806,
+          -0.84128938943193,
+          -2.419868657959957,
+          -3.4513825788772547
          ],
          "y": [
-          -9.830901999820652,
-          -9.112006620388037,
-          -9.395780295720016,
-          -8.51253225982056,
-          11.336198011836839,
-          -11.298809359210233,
-          9.637747774651956,
-          11.049380397897666,
-          -9.491244357493496,
-          9.709278284947247,
-          9.875446772424707,
-          -12.466633776422395,
-          -10.803932939681912,
-          9.682264268551675,
-          11.279425573734352,
-          -9.877352912112844,
-          10.485054116255117,
-          -11.350558020409974,
-          -10.723730963999415,
-          9.094932534961533,
-          -10.41092157883121,
-          -10.87107417645375,
-          -9.652360599091015,
-          -10.48004209119801,
-          -11.110009781653819,
-          8.106820354977058,
-          9.829162285535032,
-          -10.459471201694479,
-          -10.203045429580918,
-          9.828545621949738,
-          -9.956103572881634,
-          -10.344553782699846,
-          10.220036708864189,
-          8.910479802221705,
-          10.232786276188252,
-          11.383558552547305,
-          -9.680882476929172,
-          -9.615298476204169,
-          -10.48637619060993,
-          11.424246092902361,
-          10.23871307117363,
-          -10.906161555703752,
-          9.413710308462667,
-          -8.1943607172021,
-          -10.045956327720816,
-          10.618692941355148,
-          -9.904604347722763,
-          10.40384195049938,
-          -10.237128704286702,
-          9.195613741303132,
-          9.259271508811722,
-          10.49661120612538,
-          10.663884525709594,
-          9.121879109110354,
-          10.597604443087278,
-          -9.963008360518987,
-          10.179104155272757,
-          -11.121553813985003,
-          7.476336508708175,
-          -9.677817378567278,
-          11.18146153360084,
-          -9.704662188833987,
-          -9.02360422065068,
-          -9.809783861165965,
-          11.075428371616706,
-          9.657127630689736,
-          11.32560484562826,
-          10.440090020297687,
-          -10.318024611958407,
-          9.366604336824713,
-          11.256636534402999,
-          -10.489736522255328,
-          -11.418415899256228,
-          9.352109814082755,
-          -10.125514820021845,
-          9.634212005088735,
-          -10.238542382218133,
-          -10.014853127775238,
-          -11.283273007342466,
-          -10.062233922445664,
-          10.340088422411352,
-          11.479774482189903,
-          -11.316331561421602,
-          9.938548125116476,
-          -9.591435410693906,
-          9.275300709615243,
-          -10.504362398199822,
-          9.655342873352785,
-          8.014379121369076,
-          9.177848308189883,
-          -9.12878873492986,
-          -10.03589256634753,
-          9.217940548331928,
-          -10.714372908206997,
-          10.2623979105031,
-          9.69852171367757,
-          8.392405390900837,
-          9.049862110010189,
-          9.21928304974738,
-          9.781001877686982,
-          -9.584129467171264,
-          10.37993636847826,
-          8.694997538815894,
-          9.189353053468956,
-          8.478420536627294,
-          10.537455412158183,
-          10.392026553229465,
-          8.805646924143513,
-          -10.703804896840133,
-          -9.940276637995757,
-          10.201507701760557,
-          -10.397899132115546,
-          -10.043901221170456,
-          -9.802419285239113,
-          -8.457128273149666,
-          -9.122844978466137,
-          10.272083154502004,
-          9.72700034419068,
-          8.629863760097452,
-          9.868121117690334,
-          -9.247956731999594,
-          -10.864470287437147,
-          -8.97764898057586,
-          -8.840757844614235,
-          10.076362581099367,
-          9.466567162788504,
-          -9.32992428072637,
-          -9.0891927153381,
-          -11.35361113406228,
-          8.643200830511887,
-          9.503615544482614,
-          -9.895772194095343,
-          -8.906012574117911,
-          -9.398515722540711,
-          -10.02518317661527,
-          -9.484686003889744,
-          10.184711448267137,
-          -11.299199827697997,
-          -9.084806370727236,
-          -10.021975504146342,
-          -10.278849831592327,
-          -9.942640808818377,
-          9.532826519457402,
-          11.575150497236677,
-          -9.674277286051952,
-          9.912910232196666,
-          10.080073906579958,
-          10.99343842559838,
-          9.714668396045191,
-          11.004810427474048,
-          10.23984461110205,
-          -8.656631535604408,
-          10.043204013956263,
-          -9.357693111532791,
-          -11.011248745666386,
-          10.10878943452716,
-          12.724257949246503,
-          -8.958752855542459,
-          -9.307149344255741,
-          -10.041982773700344,
-          8.792761132246044,
-          9.86912330566388,
-          -10.488211184084996,
-          10.715946230383107,
-          10.080409464682539,
-          9.71690607768659,
-          9.908346005141597,
-          -9.503655517730389,
-          9.465243127964495,
-          -9.650464686907535,
-          -9.244512065473993,
-          10.38538527325131,
-          -10.442526743725306,
-          8.18935598190376,
-          -10.054595290164169,
-          -10.346733079476875,
-          9.82472591322003,
-          -9.750685080498574,
-          -11.179903356614789,
-          -9.616890656813164,
-          -9.935368928995459,
-          -9.978263284490664,
-          -9.840557223721033,
-          8.083040335515854,
-          -8.578222571750322,
-          -9.738728582288882,
-          -10.165694644134549,
-          8.757402105152806,
-          9.571706771728522,
-          -9.546794203008199,
-          -9.70004795724608,
-          -10.614775433714243,
-          -9.592379412628818,
-          -10.752828358288278,
-          -9.967381284439979,
-          -10.12302632580609,
-          9.512412773700989,
-          9.914051701978895,
-          -9.78236702682748,
-          10.813655968037475,
-          9.991830290843144,
-          -10.137311915485013,
-          8.517177353052961,
-          -9.129540132512718,
-          -9.018412953687724,
-          9.91252519534758,
-          9.617543559966633,
-          9.722030272226649,
-          -10.102147573263672,
-          11.531314398414372,
-          -9.76391934883345,
-          9.708898877975304,
-          8.931259698845814,
-          9.915395148259975,
-          10.298948657450893,
-          9.569495484556597,
-          -9.100382049986118,
-          10.40528962495649,
-          -9.411681675303301,
-          10.4243520422664,
-          9.9635771397,
-          -11.698667880992504,
-          9.33589876986022,
-          9.463320657612831,
-          10.197929879178844,
-          10.700964351517234,
-          8.580225006225056,
-          9.634748292771844,
-          8.111388554672285,
-          10.814717799276591,
-          -9.452562846450872,
-          -9.528304873056808,
-          9.076603482920373,
-          -10.355150565881823,
-          -11.039881525701302,
-          -10.820937495236615,
-          -10.96266782701845,
-          7.852232493496841,
-          -10.044829669084221,
-          10.353830445276337,
-          -10.394851057307383,
-          -10.297722589690235,
-          8.668514156744079,
-          -9.717425547563005,
-          13.003596499207175,
-          -10.516575728968059,
-          -9.42744610751845,
-          9.159517665329178,
-          -9.965640413663944,
-          6.99759792179478,
-          10.450075162718168,
-          -9.380636285874694,
-          -9.904259379512803,
-          -10.197330793454057,
-          -9.759360648903865,
-          9.406585175471683,
-          -9.825862193104495,
-          9.685094526899753,
-          10.962011974642843,
-          -10.180116729080172,
-          -9.407626927697743,
-          -10.695268413997445,
-          8.942554797069945,
-          10.495141468582476,
-          8.89783358243366,
-          -10.039443932609727,
-          10.334630128941159,
-          9.36132695562598,
-          12.209142005013133,
-          -9.902990421295685,
-          -10.194444070975774,
-          8.907859512827704,
-          9.659597784189465,
-          -10.069041278304093,
-          10.047712671277486,
-          -10.779805302034093,
-          9.610943907811622,
-          -10.528723991482313,
-          9.610959344394463,
-          -10.31527318837736,
-          10.121772063960194,
-          8.531464149612306,
-          10.112529221096795,
-          -10.308431381009251,
-          9.351738160509166,
-          9.743178149480357,
-          -9.603883395805983,
-          9.257379989977197,
-          10.741532998650742,
-          8.876363880380074,
-          9.826794800336613,
-          8.248115841475252,
-          9.6461418552261,
-          -10.006159200760141,
-          10.406043969639278,
-          -9.017849623850864,
-          -9.186933551921667,
-          -10.530775957052787,
-          -9.996963166295341,
-          9.820438716184416,
-          -9.950348956655237,
-          9.327041101624753,
-          -10.594667542227603,
-          -8.857788791316764,
-          -10.09309491956272,
-          10.038587906986761,
-          -10.30649224671631,
-          9.152061286509484,
-          -11.220067545279289,
-          -10.003045318503366,
-          -9.285568489996884,
-          -10.568759083266011,
-          10.407242219481212,
-          9.640562118993946,
-          9.491224271725875,
-          12.522420589839186,
-          11.367520376467619,
-          9.197397144261274,
-          8.638808715791228,
-          -10.594948560884273,
-          10.110029189055352,
-          -10.191023081944797,
-          8.762227290949756,
-          -10.893979005201363,
-          9.414716608363673,
-          -8.92564889897951,
-          9.466003985898231,
-          -9.053412642181547,
-          -9.5946429150011,
-          -10.655717015072533,
-          -9.269600003571227,
-          13.25009804700765,
-          -11.014358402620854
+          2.3954307886598896,
+          0.19428546941298608,
+          -3.4546903330008227,
+          -1.1989736989944055,
+          -1.085746639640565,
+          0.9263909679018776,
+          -2.9787953570052506,
+          -1.9312035685096545,
+          -0.21642791717964194,
+          -0.5496830131556781,
+          -1.8917723101587858,
+          -1.6789154406147322,
+          -4.129164197270576,
+          -0.08640972678649839,
+          -1.4271081580721803,
+          1.442505836980554,
+          -0.5217970769628837,
+          -1.463416957403056,
+          -0.4037397332038333,
+          0.863383966005874,
+          -0.014153373634245403,
+          0.5822055811568998,
+          -3.7169250016844653,
+          0.3369268398950327,
+          -3.3978081729760152,
+          0.5609314286563327,
+          -0.20693431380989535,
+          -0.012308615236833576,
+          -2.8742720383861764,
+          -0.2780390479336915,
+          -2.0240583415192726,
+          -1.0788983741633902,
+          -0.3233203958976141,
+          0.22955510032098703,
+          -0.7506221614038189,
+          -2.2649671228764943,
+          -1.7711772111974424,
+          -2.039132163246157,
+          -0.3093580300297877,
+          0.8876712523087993,
+          -0.8375813677399047,
+          0.14715644680426787,
+          -1.6912608696145073,
+          -2.126050249500753,
+          -0.15659501280621768,
+          0.3739615957909932,
+          -1.7590846700021738,
+          -1.2399821138504976,
+          -3.3705370943469575,
+          -2.9211640496991724,
+          -1.6891240843828057,
+          -1.449651887315388,
+          -2.2018132046224035,
+          0.12377261917142257,
+          -1.0603506574026704,
+          0.6861665098813825,
+          0.2115314352555424,
+          -0.6600518807200447,
+          0.06139714570794319,
+          2.14057881069755,
+          -0.4003604184356525,
+          -0.5838847762874229,
+          1.6969947264037448,
+          -0.47055616846950143,
+          -3.149834663597272,
+          0.05464841278669952,
+          -3.1721378556996056,
+          -2.5963821932693265,
+          0.34219759017764684,
+          -1.339754904922871,
+          -4.21996663661686,
+          0.28906302067418643,
+          -1.6464469561458934,
+          0.3669131681379185,
+          0.19438188203150375,
+          -2.570725111301042,
+          0.20516963750167472,
+          1.442543506304348,
+          -0.17036933041375102,
+          0.0006995938729166262,
+          0.03464561662398524,
+          -2.0788790925073575,
+          0.834973903506433,
+          -0.43156921476592813,
+          -2.734660490300632,
+          -1.4347642237619314,
+          4.048222208595771,
+          -0.8606072985582913,
+          -1.6228001907693503,
+          -0.29168619859856926,
+          -1.1377856313618817,
+          -0.9722922503864189,
+          0.19643886146224832,
+          -1.812838711230802,
+          0.4049724856545618,
+          -1.262364293421106,
+          -0.8319369055292548,
+          1.0652925857566515,
+          0.5324119955455913,
+          -0.5815083077809582,
+          -2.042515573064449,
+          0.945736385703212,
+          -2.096015957176493,
+          -1.3962349970987358,
+          -1.5976692148566718,
+          -2.020101184515358,
+          0.2677985084297507,
+          1.0803843188834743,
+          -2.620252210973214,
+          0.0772772383315321,
+          0.020510053271014295,
+          -0.7760119150831835,
+          0.8277257424021167,
+          0.5678532099992335,
+          -2.092776736463887,
+          -0.2296913003892328,
+          0.9126804725450053,
+          -2.4136975637050115,
+          0.7333303028827556,
+          0.4572694110268467,
+          -0.9739374608473994,
+          -0.5118841529914536,
+          -1.793526970996199,
+          -1.52144996301716,
+          1.5617392932935061,
+          0.395311380402549,
+          -2.36081838374732,
+          0.01859747668338807,
+          0.42616927005286764,
+          -3.1558793695657483,
+          -2.8318924809808226,
+          -0.8844318272935666,
+          -2.149117322181369,
+          1.4032630206545402,
+          0.1484137039136879,
+          -0.34196650232737114,
+          -3.306802863346311,
+          -0.4522344749911501,
+          -2.0327048415886924,
+          -1.6991731469728026,
+          -2.314924911392123,
+          -1.4185598345483197,
+          -1.4782678482716964,
+          -3.949130008451352,
+          -0.961611671096993,
+          -1.0835068053950325,
+          0.566295633006495,
+          -2.0511435521210384,
+          0.7549145053232649,
+          1.0040406625578062,
+          -1.2790770600799317,
+          0.755862543281701,
+          0.12326254597141362,
+          -1.6682069990900108,
+          2.492231345358373,
+          -0.7151823203527594,
+          -2.4164904911922895,
+          0.912465127455617,
+          -1.590851954173967,
+          -1.870172373055409,
+          0.7487830172255105,
+          -2.7652973384897837,
+          -2.485854975975739,
+          0.8975856486158109,
+          -0.43437293586605397,
+          -1.951181886301443,
+          0.8363132299239173,
+          0.2737580509117774,
+          0.5089262290745038,
+          -0.9967353394402533,
+          -1.3373527789757103,
+          -0.4076423853995528,
+          -3.677095449924767,
+          -0.6965413131882829,
+          0.8569949370363579,
+          1.5089892217917895,
+          -0.9887546679562306,
+          -1.8520384110026211,
+          0.8822451162224156,
+          0.16843038096598484,
+          1.0240903424867582,
+          -0.4423288683830626,
+          -0.8835961528503483,
+          -2.5257650180556777,
+          1.060328503163542,
+          -2.0305306483758376,
+          1.6507624745506178,
+          -1.2592538963647202,
+          -0.6344329640096126,
+          -0.9120678429064605,
+          -2.270259096481742,
+          -0.061339803880832044,
+          -3.0855716465693632,
+          -2.2664351469577393,
+          0.6522776444810323,
+          0.09163612039048852,
+          -1.3985001902348626,
+          -0.7390944730482121,
+          -0.2161869734089329,
+          1.9752115229776357,
+          -1.4093508711933829,
+          -1.9419281046168597,
+          0.9652567383099588,
+          -2.3282595396567753,
+          0.11719564107915459,
+          -1.9249867030038377,
+          -2.41451602572545,
+          -1.5628054905023951,
+          1.340842149903283,
+          -1.7184056566027603,
+          0.504251673348779,
+          -1.0714005466192564,
+          0.6847198100086227,
+          -0.11928639523781315,
+          0.5007685078675641,
+          -0.041258885746238816,
+          0.07104066965323397,
+          -0.9519332621674222,
+          0.5428145983497608,
+          -1.9274052723603292,
+          1.4749305726695043,
+          -1.140750771721886,
+          0.7879255144400215,
+          -0.7339194603007456,
+          -0.8911398747699633,
+          -0.2386258829707718,
+          0.09295205277365115,
+          0.788502476828032,
+          -0.9775058950130691,
+          -0.5026292355110162,
+          -2.453434236311799,
+          -2.1351830550805966,
+          0.6220930276521901,
+          -1.46295734955105,
+          1.9070685087481474,
+          -0.6474129257814121,
+          -1.4668597666949807,
+          -2.1163695945404513,
+          -1.3859828535874847,
+          -1.1920804123707283,
+          0.9802711659814209,
+          -1.7283355649100587,
+          0.11854192762029414,
+          0.7472560000991708,
+          0.7656097985363008,
+          -2.6586513723209038,
+          -0.5875976967036294,
+          0.08908567542385204,
+          -2.2396470023982147,
+          -2.412272499814871,
+          -0.28925071069914976,
+          0.14303253952974582,
+          -0.9921353572313941,
+          -2.4429355392960597,
+          -1.4718774959547725,
+          0.8538295943026251,
+          -1.2324573135571815,
+          -0.8019235326530937,
+          0.4682444422297152,
+          -0.7775752201007081,
+          -2.108646030484638,
+          -0.4180366034507499,
+          2.2025512401506293,
+          -0.10077426822562152,
+          1.9477758286968743,
+          -0.2920837748523196,
+          -1.2883872837970558,
+          0.8737198454536379,
+          0.6148874529318069,
+          -0.9456909015693897,
+          1.1945661576928202,
+          0.5718876131536463,
+          0.7965774578620515,
+          -4.9086063981610835,
+          0.4108756892104113,
+          0.03486140270026605,
+          0.0896881761300885,
+          -0.25632339932309656,
+          -1.4116932151108759,
+          -0.9351372672276183,
+          -1.2586026989332801,
+          -1.6311307317743022,
+          -4.063857984508861,
+          -0.5711959384223745,
+          0.3974709599559183,
+          -2.7748683437217156,
+          0.07707480636458408,
+          1.0284701791164723,
+          2.2172662365197584,
+          -0.7518172037381855,
+          1.2195788361836053,
+          0.36538939869885545,
+          -1.6143479414725521,
+          -0.7681685443366353,
+          -3.6135441191133295,
+          -3.1556059589678647,
+          0.7572566323120249,
+          -2.101761023084611,
+          -2.0973884469655824,
+          1.462150580918701,
+          -1.8812250332121805,
+          -1.1877519611677867,
+          1.0304208345396453,
+          -3.129022228168562,
+          -1.9958847598535387,
+          -0.1666852591880289,
+          -2.7551458181808948,
+          0.36581520856708516,
+          1.4997248415227977,
+          -1.7439878549955876,
+          -1.927276193472144,
+          0.5420107337242077,
+          1.1969319451735174,
+          -2.782728972664283,
+          -1.5220390928199274,
+          -1.940415410423629,
+          0.7008466613977977,
+          -1.9106610833136046,
+          0.7377442033552524,
+          0.07939266122413335,
+          -2.3894533154037707,
+          -3.021897537470895,
+          0.5451114920865048,
+          -2.0851217037633,
+          -0.1729710852017058,
+          -0.8449740782871195,
+          1.0607020579986406,
+          1.2296775468886851,
+          0.16052214599470305,
+          -0.8229310908339837,
+          -0.9692832779555088,
+          -2.1470353739524235,
+          0.5903180622759181,
+          -2.9491397035984632,
+          1.1195455250681174,
+          -0.6408267200382398,
+          2.017499789927437,
+          -3.575370958602306,
+          -4.0589594071195085,
+          1.253531775625754,
+          0.3563775779578764,
+          -2.3027137717063524,
+          -2.370824466837749,
+          -2.5483320272802543,
+          -0.029246077836426854,
+          -3.350657461705896,
+          0.5804232152106366,
+          -0.4209220095652293,
+          -2.540863233797314,
+          -1.629158903861641,
+          0.4202904374059413,
+          0.09407417264098039,
+          0.7356527856783159,
+          -0.83454978231566,
+          -0.7093836344756081,
+          -2.5799049951708897,
+          0.8216425101485789,
+          -2.9360992743219985,
+          -1.101410389684119,
+          0.2938025688150172,
+          -1.3930302619242594,
+          -1.9952467259775872,
+          1.0635851707293278,
+          0.8267459200097569,
+          0.004524022839158759,
+          -1.3373555950759717,
+          1.953174823010806,
+          -1.2091122270551402,
+          0.8374341430347803,
+          -2.5056891468567275,
+          -1.5992918484918528,
+          -1.449107897570555,
+          1.6585015560399832,
+          -0.03556465958753352,
+          0.16944111558167974,
+          2.0738926397859627,
+          -3.1219244931158756,
+          -2.1286440566953493,
+          0.9576714106638458,
+          0.03059137810158208,
+          0.8818688653389193,
+          -1.5622820098171197,
+          -3.637196689115332,
+          -1.8095077855435933,
+          0.007085399788428148,
+          -1.664471859884308,
+          1.3776956549149726,
+          1.084181780514185,
+          0.3066380019349386,
+          -0.6841178659852694,
+          -2.2512263673913595,
+          0.2380528752632567,
+          0.16313492704327714,
+          -2.3687600550024976,
+          -1.8518094705087034,
+          0.9422745545492714,
+          -1.5626151672832858,
+          -1.7513948204978322,
+          0.413651506033631,
+          -1.1583907901969417,
+          -3.1732620358628147,
+          -3.5009787827629864,
+          -0.7778378936514518,
+          -0.8902783221214257,
+          -2.8103662898699038,
+          -0.0040835137194216165,
+          -1.5996028082297558,
+          -1.10074169553902,
+          -1.73479076636585,
+          -2.6553110880723594,
+          -0.47824129345901956,
+          -0.09668695323905252,
+          -0.01137233011963723,
+          -2.8835565321163967,
+          -1.168131816128225,
+          -1.114017055744274,
+          -0.15112310090416037,
+          -0.25541220017453015,
+          -2.179804851873458,
+          -0.6197754455900832,
+          -2.0912787885518433,
+          -0.5441870477791904,
+          -1.6792186234841868,
+          -2.615229910011946,
+          -0.9723080017281112,
+          -0.1915776847194116,
+          -1.684559163682639,
+          -1.868414853076953,
+          -0.9059292171251723,
+          -1.357977259934846,
+          -1.2226794111743595,
+          -3.5853462869149477,
+          -1.086627827652668,
+          -0.3107192236354076,
+          -1.6070333821224883,
+          -1.602797247751536,
+          -0.18506328580749143,
+          -3.18305478456544,
+          -1.2898885926399646,
+          -2.4668679856274083,
+          -0.8764595414723411,
+          -0.9468354193968795,
+          -2.2443706077476895,
+          -0.28273527177281976,
+          -3.4600738876630115,
+          -0.1284661697213424,
+          -1.2374763393505777,
+          -0.47745826669152114,
+          -1.6390122300261893,
+          -2.6012495808528904,
+          -1.002542140506122,
+          -0.06525461335012162,
+          -2.4790635197469157,
+          -2.7663258875993186,
+          -0.7295497085446847,
+          -2.014612562443083,
+          -1.805311875879724,
+          -0.8345218379215488,
+          -0.5201592854148624,
+          -2.387468415566186,
+          -0.8257725655444159,
+          -0.8770448444190059,
+          -1.646802585995587,
+          -1.3438620631153226,
+          -1.7739386019877295,
+          -0.6573390941616314,
+          -0.486489827549785,
+          -1.0509710934838998,
+          -1.8341131124625885,
+          -0.28871248517905634,
+          -0.06531954613539726,
+          -1.6079601807172363,
+          -1.79848450821771,
+          -0.5247502757131746,
+          -0.7055209738895678,
+          -0.7229999886826877,
+          -2.3775928405306055,
+          -0.9291151970745206,
+          -2.1037204168670205,
+          -1.0170599108097451,
+          -1.8849366221085453,
+          -3.8108124717049203,
+          -1.4956591742252592,
+          -1.049690142373612,
+          -2.1433453248572034,
+          -1.5471804483792133,
+          -0.6570068200898989,
+          -1.1531811320425676,
+          -1.057402567842459,
+          -0.08433682743363491,
+          -0.29953968879940196,
+          -0.5836256795260155,
+          -2.4873823955323564,
+          -1.2227413173689838,
+          -1.5944834868530704,
+          -3.430252000086034,
+          -1.1845606289888428,
+          -2.913849621210364,
+          -3.3514910307278236,
+          -1.8735288986514684,
+          -0.7698304231350603,
+          -3.0751322205995684,
+          -2.38960545043904,
+          -0.9026975669982508,
+          -1.8183659477865595,
+          -2.0187122340031474,
+          -2.163985187527961,
+          -0.33824033658513,
+          -2.184471916385733,
+          -1.7708909294027788,
+          -0.5847290571631808,
+          -1.9921201015568932,
+          -3.799048341462509,
+          -1.065458921677114,
+          -0.2574116641968135,
+          -0.3039558693262965,
+          -0.2051166191728021,
+          -0.2005566035205374,
+          -3.7668492278462185,
+          -3.0307777985897375,
+          -1.4174499525164885,
+          -1.7594944912907806,
+          -1.3806728366213266,
+          -1.8585236133269056,
+          -0.1262863991266604,
+          -1.5237607740098147,
+          -1.4960331104614437,
+          -1.2147792674195863,
+          -3.308785474252605,
+          -1.3223571884852499,
+          -2.7705203590660012,
+          -1.0025084705490845,
+          -3.17619886736655,
+          -1.6440846029271217,
+          -0.8080822659931152,
+          -0.3935555510761901,
+          -2.047269696333604,
+          -0.4136576671968166,
+          -2.83180768545403,
+          -3.800229822736993,
+          -0.02529189535005638,
+          -0.860379773101884,
+          -0.646409085226509,
+          -1.0469303284647056,
+          -2.9546596520419257,
+          -2.243449079523156,
+          -1.9220598159052102,
+          -4.165352359808732,
+          -1.7798222439106388,
+          -0.04600342366382182,
+          -0.10227786029994856,
+          -1.7848767299637964,
+          -2.6480385534575452,
+          -1.4576693648100236,
+          -0.5775692022139638,
+          -1.5667127894715185,
+          -2.176736206879464,
+          -3.0707075653755562,
+          -1.9612580121798189,
+          -1.8909868810875907,
+          -1.6808523411914533,
+          -0.8022973096728392,
+          -1.4279516795914247,
+          -3.4899295460037867,
+          -0.6226725183600812,
+          -2.4293989076064513,
+          -3.558667329212312,
+          -1.6166845811028308,
+          -1.8284242878379924,
+          -3.2207196630872574,
+          -2.497448005200368,
+          -1.5485101151500444,
+          -2.1322742844452525,
+          -1.4980012747887588,
+          -1.6286426815514214,
+          -0.6392989948930923,
+          -1.8615222822203705,
+          -1.250743282545801,
+          -1.6855168050984752,
+          -0.7025766584131969,
+          -1.5661013820760536,
+          -1.5993705099116236,
+          -2.633853392984757,
+          -0.5933265054744699,
+          -4.029922908622392,
+          -1.2555296314721494,
+          -1.3079493435298737,
+          -2.121965774751021,
+          -0.9173240585694388,
+          -0.45388194353844213,
+          -2.054019411134541,
+          -4.208924357914172,
+          -0.33588026784386793,
+          -1.5267142488480026,
+          -1.0720008144078992,
+          -0.2106371412489494,
+          -0.17615119726209127,
+          -4.524870743690293,
+          -0.5047114801493349,
+          -1.9558335497708021,
+          -2.0709415196127203,
+          -1.2372707929697857,
+          -1.0611474705313164,
+          -0.29212736537359085,
+          -2.19371587525087,
+          -1.745486589640877,
+          -1.3228115006533827,
+          -2.3065215804164376,
+          -0.4836350137489408,
+          -1.1676089832853715,
+          -0.04476562649457827,
+          -0.5739983015203158,
+          -2.45402994890963,
+          -1.1548794605960595,
+          -1.3098703368979607,
+          -4.043066561484993,
+          -1.4954502919275074,
+          -2.1153617991102447,
+          -1.986264046199672,
+          -3.501305104579994,
+          -0.032601344636353224,
+          -0.45421921276342114,
+          -1.4032386110471444,
+          -0.4480105455028712,
+          -1.4253307896733343,
+          -2.136840055826716,
+          -0.758971851974797,
+          -1.9879869667580423,
+          -0.6762505394038426,
+          -1.0440870227345058,
+          -1.781135653929471,
+          -1.1305146588269401,
+          -1.4699889525972052,
+          -0.041987714176242585,
+          -2.0564731119200905,
+          -3.235531461226558,
+          -0.3168818178952606,
+          -1.994833580395174,
+          -0.5623687902876786,
+          -3.231813184121568,
+          -0.8650713157810952,
+          -2.0875297793336287,
+          -1.9010982327334585,
+          -2.0104929414010053,
+          -1.158471121527132,
+          -0.26777014282781453,
+          -3.506489494795437,
+          -1.5084089363154076,
+          -0.7285367602515598,
+          -0.08816017914027385,
+          -2.3960739524692602,
+          -2.241457500338134,
+          -0.6416860427269764,
+          -2.7758371486530278,
+          -0.6330422884286174,
+          -0.6264693716431204,
+          -0.2352438449648313,
+          -0.2513774804940171,
+          -3.587398103522838,
+          -1.858389879673994,
+          -0.5877964100916758,
+          -1.738732229620755,
+          -2.3102777042811846,
+          -1.2718888529656491,
+          -4.15670620030543,
+          -0.404698155415234
          ],
          "z": [
-          -11.310445522657766,
-          9.381433608708386,
-          -11.169340005181358,
-          -10.189700026967522,
-          -8.461127855137544,
-          11.896067325105935,
-          -10.475828358341452,
-          -10.878449931514693,
-          -10.781641690313418,
-          -10.079897112584124,
-          9.63561322270778,
-          12.25995407091564,
-          10.487332333572716,
-          -9.373374784032679,
-          -9.136992865525826,
-          -9.66246059090205,
-          -9.697838904711846,
-          12.588132934560475,
-          11.303087043841636,
-          -7.24321139271394,
-          -9.355932510067335,
-          -6.303481896086504,
-          -10.039665532249133,
-          10.79749130112686,
-          11.258819880716622,
-          -12.793986031050604,
-          -9.368315762001867,
-          -10.44805550339581,
-          9.678695607270129,
-          -9.0796555933584,
-          -9.482055497343948,
-          10.807396643084095,
-          10.215290458475215,
-          -9.542814358635958,
-          -8.8658009730657,
-          11.254211564609095,
-          -11.14460127604595,
-          -10.779249858147754,
-          -9.107334846667303,
-          -9.73664013247696,
-          9.635824884817167,
-          10.496931532695871,
-          -12.182499244551174,
-          -8.752813922029803,
-          9.201954053782389,
-          -9.552997200502066,
-          -10.715530946279506,
-          -9.634988866806378,
-          9.09525833421066,
-          9.051210195612777,
-          -11.184066813714587,
-          -9.439230018338746,
-          9.256761937148323,
-          -9.354078101505937,
-          -8.742364553387796,
-          -10.558600323605821,
-          -7.334657501188463,
-          10.079095457898939,
-          -10.966121507159695,
-          -10.982581114851158,
-          11.17147617410209,
-          -11.046152687951574,
-          8.886759274311093,
-          10.465854344176353,
-          9.338685435843868,
-          9.520625365570128,
-          -9.408136746990538,
-          -8.806040764957098,
-          11.396562463424154,
-          -9.543672099867155,
-          9.081467274806982,
-          10.159683441101215,
-          11.228387375970117,
-          -9.955863035768314,
-          9.983355765964287,
-          9.67916082113066,
-          10.544461864825594,
-          9.442604235273844,
-          11.24286572972047,
-          9.857275207581745,
-          10.470428476986783,
-          -7.530051463484307,
-          -10.411529841607827,
-          -9.469054112971515,
-          9.673056704918004,
-          -9.21723925112137,
-          10.360488562058249,
-          9.882496638554167,
-          -12.354617206252794,
-          9.769488569935863,
-          -9.021934726177635,
-          -9.81290613851767,
-          10.050797014471168,
-          11.740337457723806,
-          -9.572393741434658,
-          -9.870910952588034,
-          -12.522160726758809,
-          8.827362914981876,
-          10.816421114006516,
-          -10.62708797453961,
-          9.513067128911732,
-          10.137899849895835,
-          9.02702299395548,
-          9.488514766908068,
-          -12.01327717606884,
-          -9.826172411500437,
-          -8.60973328169861,
-          -10.441314304485681,
-          10.858287498284355,
-          10.716750551606264,
-          -10.275866763722954,
-          -10.083925590905313,
-          9.621276171680641,
-          11.196323351321725,
-          -9.086702783681332,
-          -9.170192601551769,
-          9.972255288725131,
-          -8.943138550590351,
-          -10.80140292175822,
-          -9.822876251351538,
-          9.882739595928962,
-          -8.634345770369395,
-          9.348519719437652,
-          8.929796979770876,
-          11.461191675832008,
-          9.841938899728625,
-          -8.338938429869716,
-          8.893930840241818,
-          -11.146770226435965,
-          8.997612116576908,
-          -9.673193752572116,
-          -10.16695212970146,
-          8.664437222388514,
-          9.438704000572363,
-          10.718015070256884,
-          10.583684805965769,
-          -9.908967066164713,
-          -10.285390989329215,
-          -10.462307526591902,
-          -8.256686493269443,
-          -9.9580764288722,
-          9.853397350202275,
-          -9.844366556128037,
-          10.994990739891158,
-          9.550087495443803,
-          11.586119123030668,
-          10.047872856146228,
-          10.82919812719792,
-          -9.572911071187644,
-          9.999960815586343,
-          10.461136163159084,
-          -8.78874542072071,
-          -9.143820687277234,
-          -11.730556894173287,
-          -9.866639504042794,
-          -8.835193575172813,
-          -8.35489185954391,
-          8.328776837227402,
-          9.461081535956373,
-          9.667022754008055,
-          -11.667045701053304,
-          9.410752842152414,
-          10.492662133175612,
-          -11.756701354648726,
-          -8.692702256932924,
-          -8.396284875086039,
-          9.681115621762315,
-          -10.70829720507204,
-          10.207311440061089,
-          10.261666730623455,
-          9.286147735641826,
-          -8.940485037763633,
-          -9.947615058886145,
-          -9.52814081892055,
-          8.646886565678818,
-          -8.749247718800275,
-          -9.83179257893213,
-          -8.955111127153183,
-          11.706105328475648,
-          -10.689070514018061,
-          -9.3887776525507,
-          -11.519581201251016,
-          -10.43944387447143,
-          -13.133504823571032,
-          9.625445941785038,
-          10.201600409131993,
-          -9.811537251036457,
-          9.99594891950063,
-          -9.758328345138256,
-          -10.51295632974877,
-          -8.992321534186674,
-          10.920130719281314,
-          9.118042670326624,
-          -8.801236840020872,
-          -8.33705008583956,
-          -10.286498703113272,
-          -10.242629083820205,
-          10.42409472262018,
-          -8.544019171427143,
-          -8.511567399126033,
-          -10.123346014782216,
-          -10.219213636674414,
-          10.077323082891827,
-          -10.28533051380222,
-          -9.243596077093253,
-          10.918667725251943,
-          -10.35527009290145,
-          -9.94353934896424,
-          -8.840538433911863,
-          -8.760952590370906,
-          9.448621625489329,
-          -10.916883398779417,
-          -10.128911014257623,
-          9.58545500346874,
-          10.34840424538547,
-          10.094352556767475,
-          9.47720446341386,
-          10.176442928021508,
-          10.434836455947273,
-          10.260342127588569,
-          9.81646366895581,
-          11.947763929619331,
-          9.79256710339737,
-          9.196715215074443,
-          -11.309801831984439,
-          -10.183809566765298,
-          -11.057698775296663,
-          -11.496149822293177,
-          9.55783770865464,
-          -9.21365675172485,
-          9.973439006416983,
-          8.672148465784078,
-          9.035613311252096,
-          9.816578300462272,
-          11.038618174773074,
-          11.2702105326404,
-          -11.993425628352783,
-          -10.29918474461422,
-          -10.892083202233488,
-          9.526140052666863,
-          10.916346832842901,
-          10.991973790460928,
-          -10.419439038554595,
-          -10.419112229328242,
-          11.35170230709279,
-          -9.558317595038995,
-          9.381345588650337,
-          -11.580732552080278,
-          -11.617103095363543,
-          -12.277823019624133,
-          10.306749073092407,
-          8.251607837319902,
-          10.580358096863499,
-          -11.083070359990527,
-          10.348747375848497,
-          9.6399974485664,
-          -11.360675020377347,
-          9.871395418293785,
-          10.873950557172144,
-          11.161869699677903,
-          8.535684369466919,
-          -9.33672293744777,
-          -10.525420423105093,
-          -11.244929221846402,
-          -8.832088843580573,
-          9.88605279617724,
-          -11.378945361232994,
-          -11.682062911499386,
-          -8.497056792866537,
-          10.540348720085534,
-          10.427274497642587,
-          -11.672992082108838,
-          11.30976095150851,
-          -9.41046140356344,
-          11.142208980442728,
-          -11.411411822511086,
-          -9.536726395734725,
-          -9.21032022301995,
-          9.671845626666334,
-          9.826827784448252,
-          -10.434591882500223,
-          -11.14519368467455,
-          -9.644051154343757,
-          -11.708179502231868,
-          8.62206305633376,
-          -9.411230678414272,
-          9.279439737762186,
-          10.209277740901129,
-          8.728564298866653,
-          -11.481377753238801,
-          -10.613993570172243,
-          -13.251766041395335,
-          -11.088682785241438,
-          -9.92015389410055,
-          -9.656436701749028,
-          9.07458117322933,
-          9.534143123918161,
-          10.574269829373938,
-          10.242692212571216,
-          -10.50107761033982,
-          -8.778294724595986,
-          -10.895076776090633,
-          -10.265828182084682,
-          8.438975648775049,
-          -9.653986780523297,
-          9.346650976542218,
-          -11.626124142363192,
-          -11.017956050110667,
-          -11.356263766976078,
-          10.134459776807184,
-          9.917928595638434,
-          10.373233726577237,
-          8.77032575790473,
-          10.510171270740544,
-          10.132125024254714,
-          -8.80123781376722,
-          -9.790875216512902,
-          10.152377680091439,
-          9.1920668726197,
-          10.248665429158612,
-          11.102065662401333,
-          10.470438633803052,
-          10.034975882431313,
-          11.958099935246587,
-          -11.581097164652007,
-          -8.829694768054576,
-          -11.037745895716817,
-          8.098124227193297,
-          -10.640397059453875,
-          -7.526372880604891,
-          10.130260050295677,
-          -8.126610811609414,
-          11.905381649145244
+          3.764446811332845,
+          -0.39679708320178886,
+          2.6175760966023027,
+          -4.034092124455678,
+          0.5948054417045618,
+          3.0866834458453534,
+          -0.9350297582253049,
+          2.562055840070066,
+          0.242239879014865,
+          4.7624409003367445,
+          -0.3672437722392292,
+          -2.4456779275403377,
+          -1.5953291744210554,
+          -3.7022202115998937,
+          4.245382844094977,
+          -4.497866398662186,
+          2.428833334717183,
+          1.207901012557942,
+          -4.393022077859171,
+          -1.8067729001173065,
+          -2.2271974661307965,
+          -2.849732630743932,
+          0.528697172701551,
+          -3.084304181839518,
+          -2.627386397850336,
+          -0.29128565979647014,
+          0.5049477456966356,
+          -3.7515096101709227,
+          -0.33861303664983033,
+          1.9725467889166417,
+          -1.8413010067551316,
+          -1.7045706105729996,
+          -0.6580040060053882,
+          1.3058973260099886,
+          1.121026149400179,
+          3.5669840655849674,
+          -1.5487434440438586,
+          2.7476413055485986,
+          -0.8169016039557482,
+          -2.886135417115915,
+          -0.15520173359178902,
+          -2.8120443489427376,
+          3.114489319937822,
+          0.46580992973228597,
+          -4.941604630939238,
+          2.465098697736307,
+          -4.316316438943181,
+          1.6631443886855566,
+          2.649688309094099,
+          3.512233012255355,
+          0.2895316777368784,
+          1.206451220705829,
+          1.6825417264131008,
+          -1.4184256572538123,
+          -4.184943178458351,
+          -0.9525532421927432,
+          1.2759789902550782,
+          2.174994067487111,
+          3.3419182774549254,
+          -2.612985224545645,
+          4.062944289018419,
+          4.947526870547548,
+          1.7922056627590592,
+          -3.393089319516844,
+          2.14065539728941,
+          2.493159308683251,
+          1.530799250887613,
+          5.119146674785363,
+          3.269366158690562,
+          1.2529021864458993,
+          -1.2376026747058897,
+          3.4569389385040212,
+          3.5882802166898164,
+          1.9638828191422943,
+          -4.471022240450023,
+          -0.7106583367524912,
+          2.710567306910887,
+          -3.029733977590324,
+          1.3546149440960376,
+          -3.0585038856192956,
+          -1.046203696381128,
+          1.5945913256217796,
+          -0.3824766049276551,
+          2.804687883027455,
+          -4.025903440470987,
+          -3.2506690040752595,
+          -1.7457596333876357,
+          -0.13950185653035518,
+          -3.6248234572803852,
+          -4.299813071925582,
+          1.974730764189859,
+          0.5627641280773341,
+          -4.868276950730498,
+          -4.211806711712266,
+          -4.10875159941729,
+          -1.188823562797296,
+          -4.9709007026518695,
+          1.2442697806598675,
+          -4.311675225398157,
+          -4.859935464876281,
+          0.27329105916200014,
+          -4.040868285294809,
+          -4.468547634558302,
+          -4.113329110587633,
+          3.1086667824812713,
+          -1.6765058493446094,
+          -3.513418060561545,
+          -0.03496899088620431,
+          2.976271101224653,
+          3.114854574294811,
+          -2.754657227978263,
+          4.309922376921526,
+          1.7842763235685775,
+          0.3351267600576797,
+          -1.3657608389630291,
+          -1.9037426236585535,
+          2.1491428059385562,
+          2.7149023207709835,
+          4.988179622309491,
+          3.2133749542545145,
+          -1.2466360789121187,
+          -1.8086640292562022,
+          0.4594218854574317,
+          2.016020226452575,
+          -4.936043424174197,
+          4.635336608394758,
+          3.750375945673084,
+          -1.6508511036827898,
+          -0.882705819777299,
+          -4.560308464261238,
+          0.6211369658958592,
+          -2.741746972524433,
+          -2.690389737750048,
+          4.594633497253935,
+          -0.9979487632874333,
+          -4.602652709526366,
+          -2.1452593662543835,
+          1.5085479882050592,
+          3.2108565642475133,
+          3.5630940900607397,
+          1.5989994299249837,
+          -3.9488251116040285,
+          3.289573965630141,
+          -4.617605341031343,
+          1.701776506143033,
+          1.5017245942108977,
+          -0.9576842171667401,
+          -1.5725415204472508,
+          2.906550250777384,
+          -2.4069878649365433,
+          -3.079569039304797,
+          4.145130936960238,
+          4.858085847544923,
+          -3.754231654936831,
+          -1.8523641490837175,
+          4.604142210920036,
+          -4.215732286852534,
+          -1.7145522517473535,
+          -1.1515755432142836,
+          4.752692377954612,
+          -1.0634417768142495,
+          -5.007868716450293,
+          -2.4432092424620357,
+          0.3905190149653759,
+          3.91652282116726,
+          -2.3567180566637864,
+          4.7975680005194326,
+          5.022787903619313,
+          -2.095817200433943,
+          -4.305353770794583,
+          -1.0986243778756575,
+          3.997356714793564,
+          1.6546780313253455,
+          -1.0894515001329643,
+          -0.9815360300136753,
+          4.205013890175496,
+          -1.6885624231755139,
+          -3.9835275899248774,
+          1.1677308799982198,
+          1.0670126073509554,
+          -4.327193411483267,
+          3.7261155905217516,
+          -3.5318377383372876,
+          1.3485966353347036,
+          2.0714515819967563,
+          -0.6118161463924716,
+          4.476131317500063,
+          3.7486060970264914,
+          4.055125248928843,
+          4.015196000983983,
+          2.2591281531144274,
+          -4.434992262623378,
+          2.5923549662002685,
+          -2.388801510415293,
+          -4.4980620475774495,
+          3.7813397622337535,
+          -4.528918449081854,
+          -4.752965775802172,
+          2.056871751346508,
+          -0.7307013131669171,
+          -2.6456372104408974,
+          -4.586842899928632,
+          1.6914725496203813,
+          2.601514231996501,
+          -4.194560568659664,
+          4.624091965902596,
+          5.0192480204737135,
+          -3.3352551009350737,
+          3.2484677450110278,
+          3.1194221163223768,
+          -1.3888862649662426,
+          1.0955720985456816,
+          3.5565412443955813,
+          -1.2715508988103128,
+          -3.2350055923336005,
+          1.5817809658951107,
+          3.3901856805766597,
+          2.119323292756901,
+          -0.5745652228869886,
+          2.047189155069355,
+          -1.5954665283351157,
+          3.5175151627181522,
+          -1.3169583161119793,
+          4.825794397333293,
+          0.04429064548172601,
+          -1.3310710908676233,
+          4.812710187354846,
+          1.7528707591824055,
+          1.8347154063872555,
+          3.33397369782237,
+          -1.3501155647536018,
+          -4.11633944186086,
+          2.22705452970931,
+          1.637236391807205,
+          1.5251428087210792,
+          -0.19558525438031804,
+          4.017889120008024,
+          -2.7882310261042957,
+          -4.429564926949442,
+          4.160231267215225,
+          3.2004883066344396,
+          -4.805113735292116,
+          2.0521179124624,
+          -5.056654723988944,
+          -1.9302136280008386,
+          -1.990332175191405,
+          0.11063794350424061,
+          4.664517835704275,
+          1.2800790207766415,
+          -4.09803648527929,
+          2.1954017711504745,
+          -2.0690803982767174,
+          -1.8638447691963727,
+          -1.8483211460136695,
+          0.5249374913085649,
+          -4.47420271185862,
+          3.4307432940186215,
+          -2.0093403093632523,
+          0.4138356078448311,
+          3.538754408477282,
+          3.9959429108593083,
+          -5.072605108467337,
+          -2.8883494205959046,
+          3.6160689329295304,
+          4.119064434790277,
+          -2.5773106431640507,
+          -2.4060168780338693,
+          0.7962959628691157,
+          -0.18902378542832388,
+          2.298996558842159,
+          2.533529919446309,
+          4.647905478072347,
+          2.6972409119051326,
+          4.061337506700448,
+          1.6402475778279397,
+          -3.3607622881785866,
+          -3.551880301557048,
+          1.4256938438301372,
+          -0.32783610465950996,
+          0.5397132639288484,
+          -4.747014304416559,
+          -3.8639698581152535,
+          4.7727763172951585,
+          -0.00602304049008584,
+          1.871988060712832,
+          -4.86614982481729,
+          3.2481703368930317,
+          3.922594887577401,
+          -4.901956331016272,
+          2.016976084033283,
+          -1.5192323890470325,
+          -4.99751931418172,
+          4.0498759980818955,
+          0.33692504831413306,
+          -4.995413222310073,
+          4.275968195956115,
+          2.337130880866085,
+          -4.283062920212507,
+          4.822541451282894,
+          -1.900554414087296,
+          4.310188935348898,
+          1.2484910557540312,
+          3.853991836652642,
+          3.136166606984438,
+          -3.262453906764801,
+          -4.704791398796429,
+          -3.3226071461511015,
+          1.2299405282788172,
+          3.5222046488465653,
+          -2.937352655090691,
+          1.8201535315201944,
+          4.549628820643886,
+          0.7353789936192525,
+          -1.5919110828097782,
+          2.3354741911574886,
+          -4.979866502806031,
+          1.5782468171042412,
+          2.6420317908526982,
+          2.330228885527168,
+          1.0513420123874697,
+          -0.8724791880709777,
+          0.8275225576570255,
+          -5.061729045938497,
+          -2.0125948443025874,
+          -3.886957316411559,
+          0.5130509534824776,
+          -2.878304969019911,
+          -4.461495854270829,
+          4.183309204693598,
+          -0.012682363947138064,
+          0.7033328908833676,
+          -3.2472392834807238,
+          1.2178330988005888,
+          3.6410199055746633,
+          -2.5318744853931014,
+          -1.2792510664028276,
+          0.4322437332394289,
+          1.8995792447626139,
+          -4.789060694219626,
+          2.4541544273191604,
+          2.0905411862036836,
+          3.298874207834264,
+          -1.6208772198798527,
+          -0.21017320479798496,
+          0.10128107322452973,
+          -4.848083618276237,
+          4.226572046534508,
+          -2.9740163773055954,
+          -2.7514083525747615,
+          4.754926189039341,
+          -1.1426544592424834,
+          2.1316769799942623,
+          -3.4631069267031553,
+          -3.445240286988824,
+          3.1247287815528795,
+          1.7365510928517116,
+          -0.9244526508616246,
+          -1.2240918303919872,
+          0.9586155116285884,
+          -0.99363764864116,
+          -0.4989993170697691,
+          -2.698396653856682,
+          2.16748642801429,
+          -3.817321220235912,
+          -3.865282282919459,
+          4.65522346985644,
+          -0.96596794911905,
+          -0.6921038411345313,
+          -4.297975245967385,
+          -0.7872135890612242,
+          -2.9369116019301598,
+          -4.537572217909212,
+          -2.061413130265487,
+          4.515444277825336,
+          4.986562698363838,
+          -4.816268841026799,
+          0.04861812896997719,
+          4.048781217119319,
+          4.374335154873484,
+          -1.733785308834943,
+          -4.244798895361273,
+          2.981974849472496,
+          -4.492787490973568,
+          -3.5080565775551262,
+          -4.6746874264636125,
+          4.573147398403337,
+          0.3132186291276611,
+          -0.3688489625402793,
+          1.0970886155844823,
+          -1.469213173720227,
+          4.757793286621939,
+          3.256287361260237,
+          2.569935561341614,
+          -3.6936258149432413,
+          2.840075846787564,
+          4.454736426163303,
+          -1.6655821044003876,
+          3.5850359633015154,
+          -4.971986957709303,
+          -0.40988059362050766,
+          3.7804625970644254,
+          -1.4322028435896348,
+          4.335100288267101,
+          -2.9571014035301144,
+          3.983407747725038,
+          1.205791630730924,
+          -3.0527984593221413,
+          1.4746915209656866,
+          4.943091205324149,
+          2.5906865388273683,
+          -0.24536250450427755,
+          2.206771719453914,
+          -3.826696593559248,
+          -0.5837032852530237,
+          -1.2259080471872728,
+          -2.2604256485498264,
+          -1.4629399128246048,
+          4.432375591282777,
+          -2.4962456194371225,
+          -4.018576828743447,
+          -2.012025063374444,
+          2.6914558342923254,
+          2.7498092129632834,
+          -0.16297412829432556,
+          3.207670671766267,
+          3.3656807371470228,
+          -0.14967298138425367,
+          -1.3337486013601496,
+          3.442951924964688,
+          -2.7868530622280114,
+          0.25367954379050683,
+          1.7931300802531567,
+          -2.848121078369183,
+          0.7730791195576217,
+          -3.0035877582740276,
+          4.6042826031467525,
+          -3.6553474892069424,
+          1.1166318273144098,
+          -4.341804694276126,
+          -1.8739943012578255,
+          1.4770669265791145,
+          0.26749928204879847,
+          4.5071997607243075,
+          1.5018730117066692,
+          2.7556583314888003,
+          -4.467979361777493,
+          0.3070414633555725,
+          -1.060726748275969,
+          0.7704656518691015,
+          2.8260041427117306,
+          2.3744123619234268,
+          -3.9603384261819343,
+          0.7369916536938748,
+          2.7709426981072607,
+          2.8467771247688063,
+          4.499093833897622,
+          -2.7665147832208623,
+          1.7934505639380154,
+          -4.655495916695253,
+          4.1469144727997405,
+          4.03083459986084,
+          -0.5329732995388818,
+          -4.953318116106483,
+          2.2804726845179246,
+          -3.17518592130223,
+          -1.1294428384694308,
+          3.6588378232888923,
+          0.799829500110012,
+          -0.27236452789966936,
+          1.1241714814007207,
+          0.798515764529534,
+          0.11588701288493208,
+          0.5053510244154156,
+          0.47462279846887334,
+          2.70429842901176,
+          3.436132384398854,
+          4.171434272779668,
+          1.1535226858405014,
+          2.179318781307307,
+          -1.944752383307733,
+          -0.1174361882093713,
+          1.5529486015045828,
+          -0.4923149637111184,
+          2.358500231600253,
+          -2.39125588116676,
+          4.443416820325949,
+          -4.172601289668181,
+          4.136586241162539,
+          3.0166712974653267,
+          -2.7179625457667838,
+          -3.063437261534578,
+          -3.1474634571235125,
+          -2.166978057681975,
+          -1.1755113955152958,
+          -0.7734661012199346,
+          -3.1666299801211197,
+          1.2168859349814491,
+          0.7951239352713264,
+          -0.44270150619831394,
+          -2.8149700240265005,
+          2.330224332224713,
+          -2.2730423076001736,
+          1.1672584290232368,
+          -2.098410892232612,
+          4.730895253564403,
+          2.0451862062741233,
+          -3.2565236432910876,
+          4.379277277067298,
+          -0.1507976164019338,
+          -4.890103961493406,
+          3.4174592137128306,
+          -1.2704874342457804,
+          -0.09851046900587779,
+          1.1225813937472253,
+          3.611629138142926,
+          1.6012116031641916,
+          0.23324229129309426,
+          -1.147042786587698,
+          1.911138978642187,
+          -1.7976888005876965,
+          -3.936172048806471,
+          -3.35913929524714,
+          -3.680111973999748,
+          -4.06749284212192,
+          5.1296077751121265,
+          3.8359656694417152,
+          0.46222292439357027,
+          -0.8884283739411005,
+          1.1548906219399235,
+          4.113181423893995,
+          -3.469686878436682,
+          0.476977216821183,
+          -1.9339533705763716,
+          4.342964790604081,
+          -3.1308519027275414,
+          -1.6846352944980216,
+          -2.0522909254616226,
+          -3.9165536168912527,
+          -4.6442239158359655,
+          3.354871879477943,
+          -3.352503516120814,
+          -4.953962893246051,
+          3.461100152109119,
+          -0.5113113560029756,
+          -4.194019934532856,
+          -0.0401512624583118,
+          -2.0541267917793835,
+          0.02276695022750541,
+          -3.0789025886174373,
+          2.508983242914276,
+          2.2077539793570065,
+          1.0659824495287715,
+          3.318320096581574,
+          1.9307946275250423,
+          1.2927774783148758,
+          -3.5859602088202847,
+          -2.793954458947605,
+          -2.479282378418205,
+          -1.427713571658991,
+          -0.9797152579652781,
+          0.840331651701856,
+          0.6605985183174345,
+          0.27197250897005,
+          1.199404780329509,
+          -3.52987499186799,
+          -1.1368422103661127,
+          -4.537250031404014,
+          -2.354992273802066,
+          -2.0180591006141384,
+          4.689189508264476,
+          1.249082998904056,
+          4.243498909302702,
+          1.086810441238641,
+          1.5277236185715717,
+          -3.376328511854844,
+          5.031654694841914,
+          2.1328453549549513,
+          -1.8443339982639029,
+          2.0772503959080453,
+          3.907797798482343,
+          2.3299951694940217,
+          -3.252860900207405,
+          4.84911239870003,
+          -3.1172088420931856,
+          -2.748238268011751,
+          -2.033912726817479,
+          -4.17236230881707,
+          2.834733864327018,
+          -3.909438093460304,
+          3.942947757835065,
+          -0.8070705488126979,
+          -2.7902271082673833,
+          4.601670374671023,
+          2.447279210212785,
+          -4.8078234199146435,
+          -4.103467460051423,
+          4.701858869543751,
+          5.017967418016931,
+          0.36011836358611404,
+          -0.10454701157093638,
+          -0.3146998735319322,
+          -3.2063509794929415,
+          0.2617057614450822,
+          3.33031464702992,
+          2.859580194029567,
+          1.614137923396524,
+          4.81998859284728,
+          4.380986656243542,
+          0.3056209944534132,
+          2.0875155922816733,
+          0.2916460670433825,
+          -1.7603175796624377,
+          -3.3522912889965317,
+          0.744810708928326,
+          -3.1795740061634215,
+          -0.5166493974546968,
+          -4.591339923930736,
+          1.9556541136373955,
+          2.8162049317053883,
+          -4.06093608558246,
+          3.2940582828744054,
+          5.116836007403966,
+          -2.197009511998256,
+          -4.053679487611202,
+          -4.113300937225859,
+          5.024645921291786,
+          3.6406169702517994,
+          1.6262621506162667,
+          0.14137961194373716,
+          -0.37847937363096396,
+          -4.716958976272031,
+          -3.7418902738116215,
+          -1.4862266144927152,
+          4.277383282523899,
+          -3.8145030275117744,
+          0.8141285480451366,
+          3.095860924898221,
+          -3.9611625450010344,
+          0.6441144935368532,
+          -2.8612443189423726,
+          -0.23491034773823838,
+          -0.40116200510033195,
+          0.2808109942069956,
+          -2.491877428502252,
+          1.7667673873599377,
+          4.33192164980118,
+          1.0189449256537486,
+          3.5624076558852034,
+          0.8870236116499219,
+          3.4764542263128417,
+          -2.712072954429094,
+          -0.22530716985918886,
+          -3.360728459043996,
+          -4.768302404316039,
+          1.4422606134845593,
+          -3.3197253941306943,
+          -3.252644310705846,
+          5.071633601330022,
+          3.1388616450264406,
+          -1.4061157706969545,
+          4.134899407277614,
+          -3.709400488121436,
+          -2.464062878245254,
+          3.3073003919485773,
+          4.2210901747148695,
+          -1.7221929733884398
          ]
         },
         {
@@ -13404,1345 +14669,2677 @@
          "scene": "scene",
          "showlegend": true,
          "text": [
-          "Complementary_85_1",
-          "Complementary_1_1",
-          "redundancy_42_1",
-          "example_12",
-          "example_15",
-          "Complementary_25_1",
-          "Complementary_27_1",
-          "redundancy_11_1",
-          "example_19",
-          "Complementary_48_1",
-          "mutual_error_32_1",
-          "redundancy_50_1",
-          "example_28",
-          "mutual_error_23_1",
-          "Complementary_49_1",
-          "example_41",
-          "Complementary_65_1",
-          "Complementary_56_1",
-          "Complementary_63_1",
-          "Complementary_76_1",
-          "redundancy_62_1",
-          "Complementary_71_1",
-          "example_51",
-          "Complementary_37_1",
-          "Complementary_62_1",
-          "Complementary_88_1",
-          "example_68",
-          "example_69",
-          "example_73",
-          "example_74",
-          "Complementary_12_1",
-          "example_83",
-          "example_89",
-          "mutual_error_18_1",
-          "Complementary_36_1",
-          "redundancy_10_1",
-          "example_94",
-          "redundancy_19_1",
-          "mutual_error_12_1",
-          "Complementary_95_1",
-          "example_111",
-          "redundancy_64_1",
-          "example_114",
-          "Complementary_82_1",
-          "Complementary_72_1",
-          "example_117",
-          "mutual_error_29_1",
-          "redundancy_13_1",
-          "redundancy_22_1",
-          "Complementary_5_1",
-          "example_131",
-          "example_132",
-          "Complementary_14_1",
-          "redundancy_46_1",
-          "redundancy_36_1",
-          "mutual_error_22_1",
-          "redundancy_29_1",
-          "Complementary_31_1",
-          "example_152",
-          "example_153",
-          "mutual_error_5_1",
-          "Complementary_15_1",
-          "example_162",
-          "Complementary_50_1",
-          "example_164",
-          "example_167",
-          "Complementary_24_1",
-          "example_171",
-          "example_172",
-          "Complementary_61_1",
-          "example_175",
-          "example_176",
-          "example_177",
-          "Complementary_4_1",
-          "redundancy_23_1",
-          "Complementary_83_1",
-          "example_181",
-          "example_182",
-          "example_185",
-          "example_188",
-          "mutual_error_19_1",
-          "example_193",
-          "example_194",
-          "Complementary_30_1",
-          "mutual_error_3_1",
-          "example_220",
-          "example_222",
-          "redundancy_65_1",
-          "redundancy_51_1",
-          "redundancy_31_1",
-          "Complementary_64_1",
-          "example_234",
-          "example_236",
-          "example_238",
-          "example_245",
-          "example_248",
-          "example_255",
-          "example_257",
-          "redundancy_4_1",
-          "Complementary_77_1",
-          "example_268",
-          "Complementary_8_1",
-          "redundancy_34_1",
-          "Complementary_92_1",
-          "Complementary_69_1",
-          "redundancy_39_1",
-          "redundancy_48_1",
-          "Complementary_0_1",
-          "Complementary_58_1",
-          "Complementary_6_1",
-          "Complementary_26_1",
-          "Complementary_2_1",
-          "example_304",
-          "mutual_error_16_1",
-          "example_320",
-          "example_322",
-          "example_324",
-          "Complementary_35_1",
-          "example_329",
-          "example_335",
-          "example_336",
-          "example_338",
-          "mutual_error_8_1",
-          "example_341",
-          "redundancy_14_1",
-          "example_349",
-          "Complementary_51_1",
-          "example_354",
-          "mutual_error_30_1",
-          "redundancy_7_1",
-          "example_364",
-          "mutual_error_15_1",
-          "Complementary_89_1",
-          "Complementary_87_1",
-          "mutual_error_6_1",
-          "mutual_error_7_1",
-          "Complementary_40_1",
-          "redundancy_32_1",
-          "redundancy_33_1",
-          "redundancy_17_1",
-          "example_395",
-          "Complementary_17_1",
-          "example_399",
-          "example_405",
-          "Complementary_97_1",
-          "Complementary_81_1",
-          "redundancy_26_1",
-          "example_412",
-          "example_416",
-          "redundancy_61_1",
-          "redundancy_49_1",
-          "example_426",
-          "example_431",
-          "Complementary_74_1",
-          "example_437",
-          "example_440",
-          "example_443",
-          "Complementary_42_1",
-          "example_445",
-          "Complementary_75_1",
-          "example_457",
-          "Complementary_44_1",
-          "Complementary_67_1",
-          "Complementary_55_1",
-          "redundancy_52_1",
-          "Complementary_46_1",
-          "Complementary_18_1",
-          "example_486",
-          "redundancy_55_1",
-          "redundancy_57_1",
-          "Complementary_22_1",
-          "example_495",
-          "Complementary_32_1",
-          "example_501",
-          "Complementary_52_1",
-          "example_506",
-          "redundancy_37_1",
-          "Complementary_3_1",
-          "example_515",
-          "example_517",
-          "example_519",
-          "mutual_error_28_1",
-          "redundancy_41_1",
-          "example_531",
-          "example_532",
-          "example_536",
-          "Complementary_43_1",
-          "Complementary_54_1",
-          "redundancy_43_1",
-          "mutual_error_4_1",
-          "example_557",
-          "example_559",
-          "example_567",
-          "example_568",
-          "mutual_error_26_1",
-          "example_579",
-          "redundancy_56_1",
-          "example_582",
-          "example_583",
-          "example_584",
-          "Complementary_70_1",
-          "mutual_error_27_1",
-          "Complementary_21_1",
-          "redundancy_28_1",
-          "example_601",
-          "example_604",
-          "example_606",
-          "mutual_error_11_1",
-          "mutual_error_9_1",
-          "Complementary_80_1",
-          "example_616",
-          "example_617",
-          "Complementary_90_1",
-          "redundancy_35_1",
-          "example_628",
-          "example_629",
-          "Complementary_11_1",
-          "example_633",
-          "example_636",
-          "example_638",
-          "example_653",
-          "example_655",
-          "example_656",
-          "example_657",
-          "redundancy_40_1",
-          "Complementary_20_1",
-          "example_665",
-          "example_666",
-          "example_667",
-          "redundancy_15_1",
-          "Complementary_10_1",
-          "mutual_error_13_1",
-          "example_673",
-          "example_675",
-          "redundancy_63_1",
-          "Complementary_53_1",
-          "redundancy_38_1",
-          "example_685",
-          "example_687",
-          "example_692",
-          "example_693",
-          "example_695",
-          "example_703",
-          "example_705",
-          "example_711",
-          "mutual_error_1_1",
-          "example_717",
-          "Complementary_29_1",
-          "example_722",
-          "example_730",
-          "example_731",
-          "example_732",
-          "example_734",
-          "mutual_error_20_1",
-          "redundancy_8_1",
-          "example_752",
-          "mutual_error_25_1",
-          "redundancy_45_1",
-          "example_755",
-          "example_756",
-          "Complementary_33_1",
-          "example_758",
-          "redundancy_47_1",
-          "example_770",
-          "mutual_error_24_1",
-          "example_785",
-          "example_789",
-          "Complementary_47_1",
-          "Complementary_91_1",
-          "example_803",
-          "Complementary_16_1",
-          "Complementary_59_1",
-          "example_816",
-          "example_817",
-          "example_820",
-          "example_822",
-          "example_827",
-          "redundancy_44_1",
-          "redundancy_12_1",
-          "Complementary_68_1",
-          "example_833",
-          "Complementary_84_1",
-          "Complementary_66_1",
-          "example_853",
-          "redundancy_27_1",
-          "Complementary_7_1",
-          "example_861",
-          "example_863",
-          "Complementary_23_1",
-          "example_865",
-          "Complementary_38_1",
-          "Complementary_79_1",
-          "example_884",
-          "Complementary_98_1",
-          "redundancy_58_1",
-          "Complementary_60_1",
-          "Complementary_93_1",
-          "mutual_error_17_1",
-          "example_902",
-          "Complementary_41_1",
-          "Complementary_45_1",
-          "mutual_error_14_1",
-          "Complementary_96_1",
-          "example_919",
-          "mutual_error_21_1",
-          "mutual_error_0_1",
-          "Complementary_78_1",
-          "Complementary_13_1",
-          "mutual_error_31_1",
-          "redundancy_24_1",
-          "example_941",
-          "example_949",
-          "Complementary_9_1",
-          "Complementary_39_1",
-          "redundancy_59_1",
-          "Complementary_34_1",
-          "Complementary_28_1",
-          "example_964",
-          "Complementary_86_1",
-          "example_966",
-          "redundancy_60_1",
-          "example_968",
-          "example_969",
-          "redundancy_18_1",
-          "Complementary_19_1",
-          "example_983",
-          "redundancy_53_1",
-          "example_989",
-          "Complementary_73_1",
-          "Complementary_94_1",
-          "Complementary_57_1",
-          "mutual_error_10_1",
-          "redundancy_21_1"
+          "666_l_1_m-0_1.99-1_0.33-2_0.2-3_0.74",
+          "667_l_1_m-0_0.73-1_0.02-2_0.57-3_0.01",
+          "668_l_1_m-0_0.33-1_0.26-2_0.04-3_0.02",
+          "669_l_1_m-0_0.1-1_0.21-2_0.43-3_0.35",
+          "670_l_1_m-0_1.23-1_0.02-2_0.07-3_0.71",
+          "671_l_1_m-0_0.5-1_0.01-2_0.27-3_0.4",
+          "672_l_1_c_0_1_3-0_0.9-1_0.03-2_0.32-3_0.76",
+          "673_l_1_c_0_1_3-0_0.06-1_0.0-2_0.63-3_0.51",
+          "674_l_1_c_0_1_3-0_0.23-1_0.15-2_0.13-3_0.53",
+          "675_l_1_c_0_1_3-0_0.41-1_0.13-2_0.83-3_0.46",
+          "676_l_1_c_0_1_3-0_0.21-1_0.17-2_0.82-3_0.27",
+          "677_l_1_c_0_1_3-0_0.06-1_0.04-2_0.76-3_0.08",
+          "678_l_1_c_0_1_3-0_0.07-1_0.09-2_0.94-3_1.04",
+          "679_l_1_c_0_1_3-0_0.19-1_0.32-2_0.15-3_0.2",
+          "680_l_1_c_0_1_3-0_0.45-1_0.49-2_1.48-3_1.57",
+          "681_l_1_c_0_1_3-0_0.33-1_0.03-2_0.37-3_0.26",
+          "682_l_1_c_0_1_3-0_0.42-1_0.21-2_0.74-3_0.19",
+          "683_l_1_c_0_1_3-0_0.85-1_0.3-2_0.73-3_0.37",
+          "684_l_1_c_0_1_3-0_1.19-1_0.07-2_0.19-3_0.54",
+          "685_l_1_c_0_1_3-0_0.03-1_0.28-2_0.79-3_1.74",
+          "686_l_1_c_0_1_3-0_0.17-1_0.22-2_0.07-3_0.32",
+          "687_l_1_c_0_2_3-0_0.09-1_0.19-2_0.1-3_1.54",
+          "688_l_1_c_0_1_3-0_0.61-1_0.16-2_0.89-3_0.22",
+          "689_l_1_c_0_2_3-0_0.1-1_1.03-2_0.43-3_1.17",
+          "690_l_1_c_0_1_3-0_0.82-1_0.1-2_0.66-3_0.96",
+          "691_l_1_c_0_2_3-0_0.25-1_0.59-2_0.58-3_0.08",
+          "692_l_1_c_0_1_3-0_0.57-1_0.16-2_1.43-3_0.48",
+          "693_l_1_c_0_2_3-0_0.61-1_0.21-2_0.03-3_1.04",
+          "694_l_1_c_0_1_3-0_0.26-1_0.23-2_0.28-3_0.09",
+          "695_l_1_c_0_2_3-0_0.38-1_0.52-2_0.11-3_0.27",
+          "696_l_1_c_0_1_3-0_0.05-1_0.47-2_0.51-3_0.22",
+          "697_l_1_c_0_2_3-0_0.59-1_0.36-2_0.15-3_1.88",
+          "698_l_1_c_0_1_3-0_0.18-1_0.54-2_0.38-3_0.4",
+          "699_l_1_c_0_2_3-0_0.05-1_0.51-2_0.19-3_0.62",
+          "700_l_1_c_0_1_3-0_0.5-1_0.31-2_0.04-3_0.2",
+          "701_l_1_c_0_2_3-0_0.04-1_0.45-2_0.09-3_0.05",
+          "702_l_1_c_0_1_3-0_0.96-1_0.12-2_0.16-3_0.05",
+          "703_l_1_c_0_2_3-0_0.45-1_0.18-2_0.21-3_0.45",
+          "704_l_1_c_0_1_3-0_0.88-1_0.64-2_0.08-3_0.69",
+          "705_l_1_c_0_2_3-0_0.32-1_0.15-2_0.14-3_0.39",
+          "706_l_1_c_0_1_3-0_0.09-1_0.28-2_0.03-3_0.29",
+          "707_l_1_c_0_2_3-0_0.3-1_0.73-2_0.3-3_0.01",
+          "708_l_1_c_0_1_3-0_0.05-1_0.48-2_0.37-3_0.14",
+          "709_l_1_c_0_2_3-0_0.54-1_1.23-2_0.03-3_0.45",
+          "710_l_1_c_0_1_3-0_0.13-1_0.12-2_0.65-3_0.06",
+          "711_l_1_c_0_2_3-0_0.28-1_0.2-2_0.6-3_0.52",
+          "712_l_1_c_0_1_3-0_0.33-1_0.22-2_0.84-3_0.22",
+          "713_l_1_c_0_2_3-0_0.08-1_0.24-2_0.3-3_0.62",
+          "714_l_1_c_0_1_3-0_0.18-1_0.16-2_0.63-3_0.17",
+          "715_l_1_c_0_2_3-0_0.43-1_0.5-2_0.33-3_0.77",
+          "716_l_1_c_0_1_3-0_0.66-1_0.29-2_0.68-3_0.47",
+          "717_l_1_c_0_2_3-0_0.07-1_0.36-2_0.23-3_0.14",
+          "718_l_1_c_0_1_3-0_0.06-1_0.14-2_0.98-3_1.51",
+          "719_l_1_c_0_2_3-0_1.38-1_0.12-2_0.2-3_0.06",
+          "720_l_1_c_0_1_3-0_0.51-1_0.02-2_0.18-3_1.12",
+          "721_l_1_c_0_2_3-0_0.24-1_0.14-2_0.05-3_0.31",
+          "722_l_1_c_0_1_3-0_0.15-1_0.47-2_0.73-3_0.43",
+          "723_l_1_c_0_2_3-0_0.02-1_0.17-2_0.05-3_0.41",
+          "724_l_1_c_0_1_3-0_0.3-1_0.27-2_0.77-3_0.79",
+          "725_l_1_c_0_2_3-0_1.1-1_0.61-2_0.07-3_0.54",
+          "726_l_1_c_0_1_3-0_0.31-1_0.01-2_0.11-3_0.08",
+          "727_l_1_c_0_2_3-0_0.06-1_0.12-2_0.02-3_0.16",
+          "728_l_1_c_0_1_3-0_0.09-1_0.03-2_0.02-3_0.74",
+          "729_l_1_c_0_2_3-0_0.47-1_0.3-2_0.09-3_0.97",
+          "730_l_1_c_0_1_3-0_0.49-1_0.12-2_0.57-3_0.09",
+          "731_l_1_c_0_2_3-0_1.35-1_0.11-2_0.39-3_0.23",
+          "732_l_1_c_0_1_3-0_0.32-1_0.05-2_0.58-3_0.25",
+          "733_l_1_c_0_2_3-0_0.12-1_0.63-2_0.19-3_0.3",
+          "734_l_1_c_0_1_3-0_0.42-1_0.05-2_0.5-3_1.44",
+          "735_l_1_c_0_2_3-0_0.16-1_0.67-2_0.08-3_0.14",
+          "736_l_1_c_0_1_3-0_0.05-1_0.13-2_0.29-3_0.17",
+          "737_l_1_c_0_2_3-0_0.36-1_0.26-2_0.02-3_0.34",
+          "738_l_1_c_0_1_3-0_0.42-1_0.03-2_0.17-3_0.01",
+          "739_l_1_c_0_2_3-0_0.86-1_0.12-2_0.14-3_1.11",
+          "740_l_1_c_0_1_3-0_0.42-1_0.11-2_0.27-3_0.41",
+          "741_l_1_c_0_2_3-0_0.31-1_0.61-2_0.03-3_0.73",
+          "742_l_1_c_0_1_3-0_0.42-1_0.01-2_0.74-3_0.53",
+          "743_l_1_c_0_2_3-0_0.14-1_0.35-2_0.43-3_0.33",
+          "744_l_1_c_0_1_3-0_0.84-1_0.07-2_0.52-3_0.69",
+          "745_l_1_c_0_2_3-0_0.42-1_0.01-2_0.0-3_0.65",
+          "746_l_1_c_0_1_3-0_0.25-1_0.09-2_1.24-3_0.41",
+          "747_l_1_c_0_2_3-0_0.55-1_1.38-2_0.23-3_0.43",
+          "748_l_1_c_0_1_3-0_2.0-1_0.43-2_0.95-3_1.49",
+          "749_l_1_c_0_2_3-0_0.22-1_0.11-2_0.08-3_0.33",
+          "750_l_1_c_0_1_3-0_0.57-1_0.5-2_0.18-3_0.17",
+          "751_l_1_c_0_2_3-0_0.2-1_0.82-2_0.15-3_0.44",
+          "752_l_1_c_0_1_3-0_0.42-1_0.24-2_0.1-3_1.67",
+          "753_l_1_c_0_2_3-0_0.85-1_0.37-2_0.08-3_0.11",
+          "754_l_1_c_0_1_3-0_0.08-1_0.11-2_0.38-3_0.67",
+          "755_l_1_c_0_2_3-0_0.1-1_0.57-2_0.03-3_1.05",
+          "756_l_1_c_0_1_3-0_0.15-1_0.46-2_0.2-3_1.4",
+          "757_l_1_c_0_2_3-0_0.42-1_0.27-2_0.08-3_0.9",
+          "758_l_1_c_0_1_3-0_1.26-1_0.09-2_0.15-3_0.38",
+          "759_l_1_c_0_2_3-0_0.34-1_0.39-2_0.23-3_1.08",
+          "760_l_1_c_0_1_3-0_0.07-1_0.28-2_0.19-3_0.07",
+          "761_l_1_c_0_2_3-0_0.89-1_0.37-2_0.04-3_0.31",
+          "762_l_1_c_0_1_3-0_0.02-1_0.01-2_1.11-3_0.43",
+          "763_l_1_c_0_2_3-0_0.01-1_0.5-2_0.42-3_0.67",
+          "764_l_1_c_0_1_3-0_0.1-1_0.14-2_0.23-3_0.33",
+          "765_l_1_c_0_2_3-0_0.3-1_0.09-2_0.17-3_0.59",
+          "766_l_1_c_0_1_3-0_1.21-1_0.29-2_0.32-3_0.22",
+          "767_l_1_c_0_2_3-0_1.47-1_0.11-2_0.2-3_0.63",
+          "768_l_1_c_0_1_3-0_0.18-1_0.29-2_0.07-3_0.17",
+          "769_l_1_c_0_2_3-0_0.65-1_0.16-2_0.42-3_0.01",
+          "770_l_1_c_0_1_3-0_0.11-1_0.27-2_0.78-3_0.0",
+          "771_l_1_c_0_2_3-0_0.63-1_1.02-2_0.21-3_0.01",
+          "772_l_1_c_0_1_3-0_1.06-1_0.76-2_1.05-3_0.47",
+          "773_l_1_c_0_2_3-0_0.37-1_0.08-2_0.55-3_1.53",
+          "774_l_1_c_0_1_3-0_0.37-1_0.23-2_0.79-3_0.08",
+          "775_l_1_c_0_2_3-0_1.42-1_0.32-2_0.17-3_0.31",
+          "776_l_1_c_0_1_3-0_0.07-1_0.21-2_0.57-3_0.23",
+          "777_l_1_c_0_2_3-0_0.07-1_0.1-2_0.26-3_0.2",
+          "778_l_1_c_0_1_3-0_1.0-1_0.41-2_0.09-3_0.44",
+          "779_l_1_c_0_2_3-0_0.64-1_1.02-2_0.58-3_0.96",
+          "780_l_1_c_0_1_3-0_0.92-1_0.34-2_1.19-3_0.12",
+          "781_l_1_c_0_2_3-0_0.51-1_0.11-2_0.16-3_0.15",
+          "782_l_1_c_0_1_3-0_0.18-1_0.6-2_0.45-3_0.12",
+          "783_l_1_c_0_2_3-0_0.31-1_0.51-2_0.19-3_1.44",
+          "784_l_1_c_0_1_3-0_0.37-1_0.47-2_1.04-3_0.24",
+          "785_l_1_c_0_2_3-0_0.38-1_0.95-2_0.3-3_0.48",
+          "786_l_1_c_0_1_3-0_0.17-1_0.17-2_0.25-3_0.11",
+          "787_l_1_c_0_2_3-0_0.1-1_0.72-2_0.24-3_0.5",
+          "788_l_1_c_0_1_3-0_1.06-1_0.23-2_0.59-3_0.0",
+          "789_l_1_c_0_2_3-0_0.05-1_0.73-2_0.3-3_1.62",
+          "790_l_1_c_0_1_3-0_0.67-1_0.44-2_0.23-3_1.13",
+          "791_l_1_c_0_2_3-0_0.05-1_0.06-2_0.61-3_0.13",
+          "792_l_1_c_0_1_3-0_0.18-1_0.07-2_0.55-3_1.37",
+          "793_l_1_c_0_2_3-0_0.36-1_0.02-2_0.45-3_0.91",
+          "794_l_1_c_0_1_3-0_1.08-1_0.28-2_0.68-3_0.37",
+          "795_l_1_c_0_2_3-0_0.52-1_0.38-2_0.16-3_0.11",
+          "796_l_1_c_0_1_3-0_0.41-1_0.03-2_0.71-3_0.33",
+          "797_l_1_c_0_2_3-0_0.2-1_0.02-2_0.38-3_0.04",
+          "798_l_1_c_0_1_3-0_1.01-1_0.0-2_0.86-3_1.02",
+          "799_l_1_c_0_2_3-0_0.37-1_0.14-2_0.8-3_0.0",
+          "800_l_1_c_0_1_3-0_0.25-1_0.17-2_0.1-3_0.91",
+          "801_l_1_c_0_2_3-0_0.24-1_0.03-2_0.44-3_1.34",
+          "802_l_1_c_0_1_3-0_0.18-1_0.01-2_0.64-3_1.06",
+          "803_l_1_c_0_2_3-0_0.21-1_0.18-2_0.27-3_0.42",
+          "804_l_1_c_0_1_3-0_0.14-1_0.27-2_0.01-3_0.07",
+          "805_l_1_c_0_2_3-0_0.36-1_0.42-2_0.14-3_0.91",
+          "806_l_1_c_0_1_3-0_0.22-1_0.04-2_0.1-3_0.25",
+          "807_l_1_c_0_2_3-0_0.43-1_0.94-2_0.47-3_0.47",
+          "808_l_1_c_1_2_3-0_1.39-1_0.45-2_0.18-3_0.46",
+          "809_l_1_c_0_1_3-0_0.13-1_0.33-2_0.86-3_0.73",
+          "810_l_1_c_0_2_3-0_0.62-1_0.45-2_0.74-3_0.75",
+          "811_l_1_c_1_2_3-0_1.31-1_0.07-2_0.64-3_0.39",
+          "812_l_1_c_0_1_3-0_0.29-1_0.13-2_0.36-3_0.67",
+          "813_l_1_c_0_2_3-0_0.53-1_0.49-2_0.27-3_0.21",
+          "814_l_1_c_1_2_3-0_0.38-1_0.04-2_0.12-3_0.41",
+          "815_l_1_c_0_1_3-0_0.4-1_0.04-2_0.05-3_0.61",
+          "816_l_1_c_0_2_3-0_0.02-1_0.44-2_0.33-3_0.37",
+          "817_l_1_c_1_2_3-0_1.07-1_0.28-2_0.03-3_0.9",
+          "818_l_1_c_0_1_3-0_0.77-1_0.45-2_0.74-3_0.3",
+          "819_l_1_c_0_2_3-0_1.61-1_0.25-2_0.2-3_0.06",
+          "820_l_1_c_1_2_3-0_1.2-1_0.14-2_0.29-3_0.65",
+          "821_l_1_c_0_1_3-0_0.31-1_0.18-2_0.62-3_0.24",
+          "822_l_1_c_0_2_3-0_0.47-1_0.22-2_0.56-3_0.38",
+          "823_l_1_c_1_2_3-0_0.51-1_0.23-2_0.24-3_0.66",
+          "824_l_1_c_0_1_3-0_0.87-1_0.35-2_0.18-3_0.43",
+          "825_l_1_c_0_2_3-0_1.51-1_0.28-2_0.65-3_0.48",
+          "826_l_1_c_1_2_3-0_1.72-1_0.47-2_0.4-3_0.11",
+          "827_l_1_c_0_1_3-0_0.76-1_0.06-2_0.04-3_0.9",
+          "828_l_1_c_0_2_3-0_0.44-1_0.74-2_0.07-3_1.12",
+          "829_l_1_c_1_2_3-0_0.53-1_0.22-2_0.15-3_0.29",
+          "830_l_1_c_0_1_3-0_0.07-1_0.23-2_0.21-3_0.06",
+          "831_l_1_c_0_2_3-0_0.39-1_1.29-2_0.26-3_0.24",
+          "832_l_1_c_1_2_3-0_0.64-1_0.39-2_0.41-3_0.07",
+          "833_l_1_c_0_1_3-0_0.07-1_0.27-2_0.06-3_0.64",
+          "834_l_1_c_0_2_3-0_1.1-1_0.55-2_0.14-3_0.15",
+          "835_l_1_c_1_2_3-0_0.07-1_0.11-2_0.12-3_0.77",
+          "836_l_1_c_0_1_3-0_0.83-1_0.57-2_0.36-3_0.88",
+          "837_l_1_c_0_2_3-0_0.83-1_0.06-2_0.09-3_0.36",
+          "838_l_1_c_1_2_3-0_0.21-1_0.55-2_0.01-3_0.49",
+          "839_l_1_c_0_1_3-0_0.28-1_0.54-2_0.54-3_0.22",
+          "840_l_1_c_0_2_3-0_0.36-1_0.2-2_0.18-3_0.36",
+          "841_l_1_c_1_2_3-0_0.33-1_0.04-2_0.09-3_0.22",
+          "842_l_1_c_0_1_3-0_0.48-1_0.1-2_0.59-3_0.72",
+          "843_l_1_c_0_2_3-0_0.59-1_0.58-2_0.18-3_1.01",
+          "844_l_1_c_1_2_3-0_0.38-1_0.18-2_0.06-3_0.18",
+          "845_l_1_c_0_1_3-0_0.31-1_0.14-2_0.08-3_0.18",
+          "846_l_1_c_0_2_3-0_0.53-1_0.04-2_0.33-3_0.15",
+          "847_l_1_c_1_2_3-0_0.09-1_0.32-2_0.03-3_1.69",
+          "848_l_1_c_0_1_3-0_0.03-1_0.18-2_0.86-3_0.91",
+          "849_l_1_c_0_2_3-0_0.09-1_0.19-2_0.4-3_0.52",
+          "850_l_1_c_1_2_3-0_1.42-1_0.08-2_0.39-3_0.34",
+          "851_l_1_c_0_1_3-0_0.58-1_0.11-2_0.13-3_0.82",
+          "852_l_1_c_0_2_3-0_0.04-1_0.14-2_0.28-3_0.04",
+          "853_l_1_c_1_2_3-0_0.77-1_0.69-2_0.18-3_0.03",
+          "854_l_1_c_0_1_3-0_1.39-1_0.07-2_0.17-3_0.19",
+          "855_l_1_c_0_2_3-0_0.04-1_0.13-2_0.44-3_0.07",
+          "856_l_1_c_1_2_3-0_2.19-1_0.03-2_0.01-3_0.19",
+          "857_l_1_c_0_1_3-0_0.38-1_0.01-2_0.32-3_0.37",
+          "858_l_1_c_0_2_3-0_0.37-1_0.18-2_0.6-3_0.58",
+          "859_l_1_c_1_2_3-0_0.1-1_0.11-2_0.6-3_0.26",
+          "860_l_1_c_0_1_3-0_0.4-1_0.01-2_0.42-3_0.08",
+          "861_l_1_c_0_2_3-0_0.18-1_0.54-2_0.11-3_0.24",
+          "862_l_1_c_1_2_3-0_0.75-1_0.33-2_0.2-3_0.83",
+          "863_l_1_c_0_1_3-0_0.6-1_0.06-2_0.97-3_0.17",
+          "864_l_1_c_0_2_3-0_0.19-1_0.49-2_0.37-3_0.17",
+          "865_l_1_c_1_2_3-0_0.18-1_0.16-2_0.01-3_0.37",
+          "866_l_1_c_0_1_3-0_0.18-1_0.23-2_0.39-3_0.36",
+          "867_l_1_c_0_2_3-0_0.96-1_0.79-2_0.14-3_0.09",
+          "868_l_1_c_1_2_3-0_0.59-1_0.04-2_0.27-3_0.74",
+          "869_l_1_c_0_1_3-0_0.03-1_0.08-2_0.54-3_0.03",
+          "870_l_1_c_0_2_3-0_0.45-1_0.05-2_0.15-3_0.24",
+          "871_l_1_c_1_2_3-0_0.66-1_0.09-2_0.24-3_0.08",
+          "872_l_1_c_0_1_3-0_1.55-1_0.18-2_0.17-3_0.35",
+          "873_l_1_c_0_2_3-0_0.58-1_0.96-2_0.17-3_0.22",
+          "874_l_1_c_1_2_3-0_0.37-1_0.63-2_0.42-3_0.31",
+          "875_l_1_c_0_1_3-0_1.03-1_0.01-2_0.43-3_0.81",
+          "876_l_1_c_0_2_3-0_0.03-1_0.21-2_0.29-3_1.09",
+          "877_l_1_c_1_2_3-0_1.24-1_0.07-2_0.05-3_1.51",
+          "878_l_1_c_0_1_3-0_0.28-1_0.26-2_0.92-3_0.44",
+          "879_l_1_c_0_2_3-0_0.12-1_0.23-2_0.37-3_0.53",
+          "880_l_1_c_1_2_3-0_0.44-1_0.52-2_0.35-3_0.07",
+          "881_l_1_c_0_1_3-0_0.37-1_0.19-2_0.34-3_0.51",
+          "882_l_1_c_0_2_3-0_0.46-1_0.35-2_0.36-3_0.0",
+          "883_l_1_c_1_2_3-0_0.56-1_0.04-2_0.22-3_0.18",
+          "884_l_1_c_0_1_3-0_0.9-1_0.1-2_0.01-3_0.57",
+          "885_l_1_c_0_2_3-0_0.1-1_0.99-2_0.03-3_0.78",
+          "886_l_1_c_1_2_3-0_0.77-1_0.15-2_0.16-3_0.17",
+          "887_l_1_c_0_1_3-0_0.06-1_0.09-2_0.82-3_0.1",
+          "888_l_1_c_0_2_3-0_0.64-1_0.69-2_0.0-3_0.67",
+          "889_l_1_c_1_2_3-0_0.67-1_0.12-2_0.25-3_0.61",
+          "890_l_1_c_0_1_3-0_0.31-1_0.07-2_0.64-3_0.16",
+          "891_l_1_c_0_2_3-0_1.06-1_1.63-2_0.27-3_0.53",
+          "892_l_1_c_1_2_3-0_2.27-1_0.26-2_0.25-3_0.39",
+          "893_l_1_c_0_1_3-0_0.81-1_0.43-2_0.08-3_1.09",
+          "894_l_1_c_0_2_3-0_0.05-1_0.3-2_0.14-3_0.52",
+          "895_l_1_c_1_2_3-0_1.6-1_0.16-2_0.13-3_0.06",
+          "896_l_1_c_0_1_3-0_0.62-1_0.07-2_0.02-3_0.26",
+          "897_l_1_c_0_2_3-0_0.46-1_0.77-2_0.17-3_0.21",
+          "898_l_1_c_1_2_3-0_1.35-1_0.03-2_0.62-3_1.39",
+          "899_l_1_c_0_1_3-0_0.85-1_0.04-2_0.32-3_0.73",
+          "900_l_1_c_0_2_3-0_0.7-1_0.31-2_0.0-3_0.08",
+          "901_l_1_c_1_2_3-0_1.13-1_0.2-2_0.27-3_0.73",
+          "902_l_1_c_0_1_3-0_0.47-1_0.14-2_0.02-3_0.28",
+          "903_l_1_c_0_2_3-0_0.59-1_0.33-2_0.45-3_0.29",
+          "904_l_1_c_1_2_3-0_1.03-1_0.62-2_0.47-3_0.1",
+          "905_l_1_c_0_1_3-0_0.19-1_0.19-2_1.36-3_0.23",
+          "906_l_1_c_0_2_3-0_0.61-1_0.01-2_0.08-3_0.92",
+          "907_l_1_c_1_2_3-0_0.87-1_0.38-2_0.11-3_0.05",
+          "908_l_1_c_0_1_3-0_0.76-1_0.2-2_0.05-3_0.08",
+          "909_l_1_c_0_2_3-0_0.22-1_0.26-2_0.17-3_0.48",
+          "910_l_1_c_1_2_3-0_0.19-1_0.08-2_0.05-3_1.63",
+          "911_l_1_c_0_1_3-0_0.29-1_0.04-2_0.68-3_0.36",
+          "912_l_1_c_0_2_3-0_0.18-1_0.26-2_0.5-3_0.52",
+          "913_l_1_c_1_2_3-0_0.01-1_0.32-2_0.67-3_0.08",
+          "914_l_1_c_0_1_3-0_0.35-1_0.13-2_0.74-3_0.68",
+          "915_l_1_c_0_2_3-0_0.07-1_0.27-2_0.16-3_0.52",
+          "916_l_1_c_1_2_3-0_0.24-1_0.26-2_0.09-3_0.2",
+          "917_l_1_c_0_1_3-0_0.36-1_0.46-2_0.14-3_0.58",
+          "918_l_1_c_0_2_3-0_0.99-1_0.73-2_0.65-3_0.03",
+          "919_l_1_c_1_2_3-0_0.66-1_0.17-2_0.21-3_0.65",
+          "920_l_1_c_0_1_3-0_0.1-1_0.34-2_0.13-3_0.52",
+          "921_l_1_c_0_2_3-0_0.7-1_0.21-2_0.19-3_0.72",
+          "922_l_1_c_1_2_3-0_0.28-1_0.19-2_0.13-3_0.04",
+          "923_l_1_c_0_1_3-0_0.12-1_0.04-2_0.84-3_0.39",
+          "924_l_1_c_0_2_3-0_1.07-1_0.16-2_0.09-3_0.05",
+          "925_l_1_c_1_2_3-0_0.88-1_0.17-2_0.48-3_1.61",
+          "926_l_1_c_0_1_3-0_0.99-1_0.12-2_1.32-3_0.07",
+          "927_l_1_c_0_2_3-0_0.2-1_0.22-2_0.19-3_0.04",
+          "928_l_1_c_1_2_3-0_1.84-1_0.33-2_0.08-3_0.35",
+          "929_l_1_c_0_1_3-0_0.08-1_0.11-2_0.04-3_0.17",
+          "930_l_1_c_2_3-0_1.09-1_0.6-2_0.17-3_1.01",
+          "931_l_1_c_3-0_0.25-1_0.11-2_0.27-3_0.36",
+          "932_l_1_c_3-0_0.65-1_1.06-2_0.38-3_1.03",
+          "933_l_1_r-0_1.79-1_0.14-2_0.5-3_1.46",
+          "934_l_1_r-0_0.48-1_0.47-2_0.33-3_0.68",
+          "935_l_1_r-0_0.52-1_0.67-2_0.59-3_0.96",
+          "936_l_1_r-0_1.43-1_0.68-2_0.03-3_0.49",
+          "937_l_1_r-0_1.01-1_0.59-2_0.53-3_0.19",
+          "938_l_1_r-0_0.11-1_0.71-2_0.32-3_0.88",
+          "939_l_1_r-0_0.48-1_0.81-2_0.49-3_0.82",
+          "940_l_1_r-0_0.44-1_1.08-2_0.54-3_1.36",
+          "941_l_1_r-0_1.97-1_0.41-2_0.41-3_2.38",
+          "942_l_1_r-0_0.18-1_0.25-2_0.08-3_0.25",
+          "943_l_1_r-0_0.13-1_0.49-2_0.69-3_0.63",
+          "944_l_1_r-0_0.63-1_0.9-2_0.2-3_0.77",
+          "945_l_1_r-0_1.38-1_0.69-2_0.62-3_0.06",
+          "946_l_1_r-0_1.43-1_0.83-2_0.24-3_1.68",
+          "947_l_1_r-0_0.25-1_1.21-2_1.05-3_1.34",
+          "948_l_1_r-0_0.21-1_0.31-2_1.09-3_1.14",
+          "949_l_1_r-0_0.75-1_0.63-2_0.27-3_0.18",
+          "950_l_1_r-0_1.44-1_0.2-2_0.19-3_0.15",
+          "951_l_1_r-0_0.52-1_0.38-2_1.31-3_1.84",
+          "952_l_1_r-0_0.06-1_0.5-2_0.04-3_0.37",
+          "953_l_1_r-0_2.36-1_0.12-2_0.5-3_1.04",
+          "954_l_1_r-0_0.28-1_0.18-2_0.71-3_0.85",
+          "955_l_1_r-0_2.23-1_0.29-2_0.43-3_0.06",
+          "956_l_1_r-0_0.08-1_0.04-2_0.09-3_0.83",
+          "957_l_1_r-0_0.09-1_0.61-2_0.48-3_1.32",
+          "958_l_1_r-0_2.86-1_0.06-2_1.06-3_0.73",
+          "959_l_1_r-0_1.02-1_0.58-2_0.51-3_0.85",
+          "960_l_1_r-0_0.73-1_0.4-2_0.47-3_0.54",
+          "961_l_1_r-0_0.12-1_0.62-2_1.04-3_0.51",
+          "962_l_1_r-0_0.74-1_0.06-2_0.52-3_0.04",
+          "963_l_1_r-0_1.11-1_0.05-2_0.21-3_0.34",
+          "964_l_1_r-0_0.36-1_0.31-2_1.11-3_1.7",
+          "965_l_1_r-0_1.17-1_0.45-2_0.63-3_1.24",
+          "966_l_1_r-0_0.51-1_0.56-2_0.39-3_0.31",
+          "967_l_1_r-0_0.16-1_0.51-2_0.45-3_1.67",
+          "968_l_1_r-0_0.23-1_0.22-2_1.08-3_0.77",
+          "969_l_1_r-0_0.49-1_0.86-2_0.3-3_1.6",
+          "970_l_1_r-0_1.5-1_0.76-2_0.17-3_0.56",
+          "971_l_1_r-0_0.47-1_0.89-2_0.14-3_0.01",
+          "972_l_1_r-0_0.93-1_0.4-2_0.83-3_1.14",
+          "973_l_1_r-0_0.05-1_0.76-2_0.63-3_0.66",
+          "974_l_1_r-0_0.29-1_0.61-2_0.27-3_2.31",
+          "975_l_1_r-0_0.03-1_0.31-2_0.36-3_1.13",
+          "976_l_1_r-0_0.45-1_0.47-2_0.08-3_0.55",
+          "977_l_1_r-0_0.41-1_0.67-2_0.95-3_0.25",
+          "978_l_1_r-0_0.4-1_0.43-2_0.72-3_0.93",
+          "979_l_1_r-0_2.44-1_0.16-2_1.07-3_1.24",
+          "980_l_1_r-0_1.82-1_1.23-2_1.28-3_0.79",
+          "981_l_1_r-0_0.52-1_0.32-2_0.38-3_0.54",
+          "982_l_1_r-0_0.13-1_0.09-2_0.1-3_1.07",
+          "983_l_1_r-0_1.02-1_0.26-2_0.25-3_0.66",
+          "984_l_1_r-0_0.07-1_0.4-2_0.8-3_2.37",
+          "985_l_1_r-0_2.1-1_0.28-2_0.33-3_1.39",
+          "986_l_1_r-0_0.08-1_0.62-2_0.87-3_1.56",
+          "987_l_1_r-0_0.5-1_0.21-2_0.38-3_0.77",
+          "988_l_1_r-0_0.35-1_0.9-2_0.76-3_0.09",
+          "989_l_1_r-0_0.35-1_0.79-2_0.64-3_0.19",
+          "990_l_1_r-0_1.96-1_0.37-2_0.59-3_0.9",
+          "991_l_1_r-0_0.39-1_0.26-2_0.55-3_1.64",
+          "992_l_1_r-0_1.41-1_0.77-2_0.94-3_2.11",
+          "993_l_1_r-0_0.02-1_0.33-2_0.54-3_0.31",
+          "994_l_1_r-0_0.19-1_0.29-2_1.49-3_0.44",
+          "995_l_1_r-0_0.32-1_0.52-2_0.62-3_1.61",
+          "996_l_1_r-0_0.67-1_1.58-2_0.17-3_1.19",
+          "997_l_1_r-0_2.06-1_0.3-2_0.19-3_0.22",
+          "998_l_1_r-0_0.12-1_0.9-2_1.05-3_1.46",
+          "999_l_1_r-0_1.59-1_0.3-2_0.59-3_1.73",
+          "1000_l_1_r-0_0.07-1_0.03-2_0.07-3_0.03",
+          "1001_l_1_r-0_1.01-1_0.02-2_0.47-3_0.42",
+          "1002_l_1_r-0_0.75-1_0.05-2_0.5-3_1.43",
+          "1003_l_1_r-0_0.82-1_0.13-2_0.09-3_1.08",
+          "1004_l_1_r-0_1.31-1_0.06-2_0.0-3_0.04",
+          "1005_l_1_r-0_0.9-1_1.08-2_0.55-3_0.44",
+          "1006_l_1_r-0_0.85-1_0.14-2_0.11-3_1.14",
+          "1007_l_1_r-0_0.86-1_0.95-2_0.13-3_0.58",
+          "1008_l_1_r-0_0.62-1_0.93-2_0.54-3_0.51",
+          "1009_l_1_r-0_0.04-1_0.05-2_0.72-3_0.63",
+          "1010_l_1_r-0_1.11-1_0.41-2_0.75-3_1.04",
+          "1011_l_1_r-0_0.94-1_0.29-2_1.06-3_2.42",
+          "1012_l_1_r-0_1.19-1_0.25-2_0.12-3_1.26",
+          "1013_l_1_r-0_0.05-1_0.26-2_0.09-3_0.03",
+          "1014_l_1_r-0_0.87-1_0.34-2_0.13-3_0.8",
+          "1015_l_1_r-0_0.44-1_0.48-2_0.23-3_0.42",
+          "1016_l_1_r-0_1.3-1_0.51-2_0.65-3_0.06",
+          "1017_l_1_r-0_1.52-1_0.44-2_0.7-3_1.62",
+          "1018_l_1_r-0_0.24-1_0.89-2_0.21-3_0.24",
+          "1019_l_1_r-0_0.38-1_0.79-2_0.03-3_0.33",
+          "1020_l_1_r-0_1.43-1_0.38-2_0.78-3_1.07",
+          "1021_l_1_r-0_0.54-1_0.74-2_0.49-3_1.02",
+          "1022_l_1_r-0_0.03-1_0.2-2_0.32-3_0.85",
+          "1023_l_1_r-0_0.85-1_0.87-2_0.57-3_0.83",
+          "1024_l_1_r-0_1.54-1_0.16-2_0.62-3_0.56",
+          "1025_l_1_r-0_0.97-1_0.3-2_0.3-3_0.19",
+          "1026_l_1_r-0_0.61-1_0.01-2_0.33-3_1.38",
+          "1027_l_1_r-0_1.47-1_0.4-2_0.45-3_0.55",
+          "1028_l_1_r-0_0.91-1_0.25-2_1.09-3_0.4",
+          "1029_l_1_r-0_0.08-1_0.31-2_0.39-3_0.14",
+          "1030_l_1_r-0_0.14-1_1.01-2_0.17-3_1.14",
+          "1031_l_1_r-0_1.1-1_0.15-2_1.05-3_1.45",
+          "1032_l_1_r-0_0.84-1_0.63-2_0.75-3_2.04",
+          "1033_l_1_r-0_0.59-1_1.06-2_1.15-3_1.05",
+          "1034_l_1_r-0_1.36-1_0.01-2_0.49-3_1.12",
+          "1035_l_1_r-0_0.08-1_0.22-2_0.98-3_0.57",
+          "1036_l_1_r-0_1.51-1_0.23-2_0.15-3_0.73",
+          "1037_l_1_r-0_0.55-1_1.36-2_0.23-3_1.2",
+          "1038_l_1_r-0_1.27-1_1.25-2_0.1-3_0.22",
+          "1039_l_1_r-0_1.42-1_0.37-2_0.34-3_0.75",
+          "1040_l_1_r-0_0.87-1_0.13-2_0.34-3_0.21",
+          "1041_l_1_r-0_2.2-1_0.18-2_0.12-3_0.75",
+          "1042_l_1_r-0_0.22-1_0.51-2_1.14-3_0.98",
+          "1043_l_1_r-0_0.4-1_0.44-2_0.74-3_0.86",
+          "1044_l_1_r-0_0.02-1_0.19-2_0.59-3_0.54",
+          "1045_l_1_r-0_0.12-1_0.79-2_0.26-3_0.34",
+          "1046_l_1_r-0_1.03-1_0.2-2_0.16-3_0.4",
+          "1047_l_1_r-0_0.13-1_0.11-2_0.92-3_0.96",
+          "1048_l_1_r-0_0.42-1_0.95-2_0.75-3_0.04",
+          "1049_l_1_r-0_0.58-1_0.45-2_0.29-3_1.65",
+          "1050_l_1_r-0_2.4-1_0.03-2_0.26-3_1.39",
+          "1051_l_1_r-0_0.92-1_0.38-2_0.92-3_0.08",
+          "1052_l_1_r-0_1.67-1_0.23-2_0.23-3_0.39",
+          "1053_l_1_r-0_1.22-1_0.02-2_0.23-3_0.44",
+          "1054_l_1_r-0_0.62-1_0.75-2_0.17-3_0.94",
+          "1055_l_1_r-0_0.45-1_0.17-2_0.12-3_2.21",
+          "1056_l_1_r-0_0.3-1_0.55-2_1.4-3_0.51",
+          "1057_l_1_r-0_1.12-1_1.48-2_0.35-3_0.28",
+          "1058_l_1_r-0_1.97-1_0.59-2_0.38-3_1.2",
+          "1059_l_1_r-0_0.37-1_1.12-2_0.12-3_0.14",
+          "1060_l_1_r-0_0.12-1_0.51-2_0.24-3_0.06",
+          "1061_l_1_r-0_1.24-1_0.31-2_0.83-3_0.54",
+          "1062_l_1_r-0_0.49-1_0.28-2_0.2-3_1.13",
+          "1063_l_1_r-0_0.24-1_0.21-2_0.08-3_0.05",
+          "1064_l_1_r-0_0.24-1_1.12-2_0.71-3_0.75",
+          "1065_l_1_r-0_0.89-1_1.83-2_0.58-3_0.71",
+          "1066_l_1_r-0_0.13-1_1.62-2_0.33-3_1.38",
+          "1067_l_1_r-0_0.57-1_0.43-2_0.48-3_0.09",
+          "1068_l_1_r-0_0.35-1_0.56-2_0.58-3_0.38",
+          "1069_l_1_r-0_1.73-1_0.77-2_0.46-3_0.31",
+          "1070_l_1_r-0_2.03-1_0.03-2_0.45-3_0.32",
+          "1071_l_1_r-0_0.4-1_0.39-2_0.93-3_0.89",
+          "1072_l_1_r-0_0.43-1_0.45-2_0.43-3_1.75",
+          "1073_l_1_r-0_0.22-1_0.41-2_0.35-3_0.9",
+          "1074_l_1_r-0_0.37-1_0.39-2_0.81-3_1.36",
+          "1075_l_1_r-0_0.2-1_0.02-2_0.07-3_0.97",
+          "1076_l_1_r-0_0.56-1_0.19-2_0.58-3_0.75",
+          "1077_l_1_r-0_1.2-1_0.11-2_0.09-3_0.1",
+          "1078_l_1_r-0_0.05-1_0.31-2_0.17-3_1.33",
+          "1079_l_1_r-0_0.6-1_0.15-2_0.18-3_1.34",
+          "1080_l_1_r-0_1.08-1_0.92-2_0.38-3_1.29",
+          "1081_l_1_r-0_1.21-1_0.61-2_0.38-3_0.54",
+          "1082_l_1_r-0_0.07-1_0.08-2_0.06-3_0.03",
+          "1083_l_1_r-0_0.93-1_0.13-2_0.05-3_1.21",
+          "1084_l_1_r-0_0.49-1_0.13-2_0.43-3_0.66",
+          "1085_l_1_r-0_0.72-1_0.85-2_0.68-3_1.87",
+          "1086_l_1_r-0_1.02-1_0.16-2_0.14-3_0.78",
+          "1087_l_1_r-0_2.57-1_0.77-2_0.18-3_1.09",
+          "1088_l_1_r-0_0.63-1_0.58-2_0.18-3_1.53",
+          "1089_l_1_r-0_0.37-1_0.34-2_1.12-3_0.27",
+          "1090_l_1_r-0_0.35-1_0.07-2_0.85-3_0.72",
+          "1091_l_1_r-0_1.02-1_0.4-2_0.51-3_1.21",
+          "1092_l_1_r-0_3.07-1_0.65-2_0.61-3_0.57",
+          "1093_l_1_r-0_0.57-1_0.65-2_0.45-3_0.47",
+          "1094_l_1_r-0_0.77-1_0.19-2_0.48-3_0.51",
+          "1095_l_1_r-0_1.08-1_0.83-2_1.14-3_0.52",
+          "1096_l_1_r-0_0.37-1_0.35-2_0.39-3_1.67",
+          "1097_l_1_r-0_0.16-1_0.27-2_0.16-3_0.8",
+          "1098_l_1_r-0_2.15-1_0.71-2_0.61-3_0.37",
+          "1099_l_1_r-0_0.3-1_0.3-2_0.69-3_1.23",
+          "1100_l_1_r-0_0.17-1_0.1-2_0.35-3_0.22",
+          "1101_l_1_r-0_0.57-1_0.13-2_0.25-3_0.7",
+          "1102_l_1_r-0_0.65-1_0.09-2_0.37-3_0.9",
+          "1103_l_1_r-0_0.18-1_0.64-2_0.12-3_2.11",
+          "1104_l_1_r-0_0.79-1_0.39-2_0.28-3_2.63",
+          "1105_l_1_r-0_0.28-1_0.36-2_0.26-3_2.6",
+          "1106_l_1_r-0_0.63-1_0.02-2_0.59-3_0.45",
+          "1107_l_1_r-0_1.3-1_0.33-2_0.35-3_0.42",
+          "1108_l_1_r-0_1.64-1_0.67-2_0.96-3_0.37",
+          "1109_l_1_r-0_0.02-1_0.18-2_1.05-3_0.74",
+          "1110_l_1_r-0_0.55-1_0.02-2_0.62-3_0.93",
+          "1111_l_1_r-0_0.4-1_0.7-2_0.63-3_1.21",
+          "1112_l_1_r-0_1.37-1_0.15-2_0.6-3_0.17",
+          "1113_l_1_r-0_2.07-1_0.62-2_0.92-3_0.59",
+          "1114_l_1_r-0_0.54-1_0.3-2_0.53-3_1.18",
+          "1115_l_1_r-0_1.42-1_0.34-2_0.59-3_0.2",
+          "1116_l_1_r-0_0.58-1_0.64-2_1.17-3_2.24",
+          "1117_l_1_r-0_0.32-1_0.62-2_0.27-3_0.15",
+          "1118_l_1_r-0_0.76-1_0.87-2_0.46-3_0.13",
+          "1119_l_1_r-0_0.62-1_0.1-2_0.06-3_0.55",
+          "1120_l_1_r-0_0.97-1_0.86-2_0.13-3_0.26",
+          "1121_l_1_r-0_1.53-1_0.85-2_0.02-3_1.53",
+          "1122_l_1_r-0_0.1-1_0.38-2_0.62-3_0.82",
+          "1123_l_1_r-0_0.78-1_0.73-2_0.51-3_0.48",
+          "1124_l_1_r-0_0.23-1_0.8-2_0.1-3_2.14",
+          "1125_l_1_r-0_0.44-1_0.26-2_0.4-3_0.35",
+          "1126_l_1_r-0_1.38-1_1.22-2_0.02-3_0.23",
+          "1127_l_1_r-0_1.06-1_1.03-2_0.2-3_0.31",
+          "1128_l_1_r-0_1.35-1_0.68-2_0.03-3_1.03",
+          "1129_l_1_r-0_0.35-1_0.92-2_0.98-3_0.25",
+          "1130_l_1_r-0_1.81-1_0.41-2_0.77-3_0.84",
+          "1131_l_1_r-0_0.78-1_0.57-2_0.38-3_0.8",
+          "1132_l_1_r-0_0.69-1_1.51-2_0.38-3_0.49",
+          "1133_l_1_r-0_0.08-1_0.7-2_0.76-3_0.2",
+          "1134_l_1_r-0_1.14-1_0.42-2_0.58-3_0.66",
+          "1135_l_1_r-0_0.22-1_0.01-2_0.81-3_2.49",
+          "1136_l_1_r-0_0.96-1_1.14-2_0.58-3_0.3",
+          "1137_l_1_r-0_0.45-1_0.17-2_0.74-3_0.9",
+          "1138_l_1_r-0_0.58-1_0.2-2_1.39-3_0.09",
+          "1139_l_1_r-0_0.03-1_0.44-2_0.0-3_2.16",
+          "1140_l_1_r-0_0.65-1_0.91-2_0.25-3_0.93",
+          "1141_l_1_r-0_0.26-1_0.95-2_0.57-3_1.86",
+          "1142_l_1_r-0_1.5-1_0.02-2_0.22-3_0.47",
+          "1143_l_1_r-0_0.88-1_0.16-2_0.33-3_0.54",
+          "1144_l_1_r-0_0.37-1_1.12-2_0.44-3_0.13",
+          "1145_l_1_r-0_0.71-1_0.53-2_0.47-3_0.2",
+          "1146_l_1_r-0_0.89-1_0.93-2_1.08-3_1.36",
+          "1147_l_1_r-0_0.22-1_0.06-2_0.6-3_0.65",
+          "1148_l_1_r-0_0.95-1_1.12-2_0.78-3_0.43",
+          "1149_l_1_r-0_0.45-1_0.33-2_0.21-3_0.49",
+          "1150_l_1_r-0_0.95-1_0.44-2_0.29-3_0.79",
+          "1151_l_1_r-0_0.21-1_0.69-2_0.13-3_2.13",
+          "1152_l_1_r-0_0.84-1_0.26-2_0.02-3_0.24",
+          "1153_l_1_r-0_0.37-1_0.29-2_0.77-3_1.31",
+          "1154_l_1_r-0_1.2-1_0.12-2_0.13-3_0.28",
+          "1155_l_1_r-0_1.66-1_0.9-2_0.59-3_1.88",
+          "1156_l_1_r-0_1.41-1_0.55-2_0.03-3_0.62",
+          "1157_l_1_r-0_0.29-1_0.79-2_0.88-3_1.55",
+          "1158_l_1_r-0_0.44-1_0.09-2_0.53-3_0.35",
+          "1159_l_1_r-0_2.17-1_0.1-2_0.99-3_1.97",
+          "1160_l_1_r-0_0.26-1_0.55-2_0.27-3_1.05",
+          "1161_l_1_r-0_1.16-1_0.41-2_0.91-3_1.0",
+          "1162_l_1_r-0_0.65-1_0.49-2_1.04-3_1.09",
+          "1163_l_1_r-0_0.07-1_0.63-2_0.86-3_0.02",
+          "1164_l_1_r-0_1.47-1_1.07-2_0.32-3_0.75",
+          "1165_l_1_r-0_1.1-1_0.28-2_0.65-3_0.3",
+          "1166_l_1_r-0_1.14-1_0.76-2_0.78-3_0.86",
+          "1167_l_1_r-0_1.8-1_0.24-2_0.05-3_0.49",
+          "1168_l_1_r-0_0.52-1_0.17-2_0.27-3_0.26",
+          "1169_l_1_r-0_1.24-1_0.6-2_0.25-3_0.73",
+          "1170_l_1_r-0_0.81-1_0.88-2_0.37-3_1.23",
+          "1171_l_1_r-0_2.15-1_0.71-2_0.59-3_0.1",
+          "1172_l_1_r-0_0.28-1_0.03-2_0.9-3_1.37",
+          "1173_l_1_r-0_2.02-1_0.65-2_0.95-3_1.95",
+          "1174_l_1_r-0_1.05-1_0.64-2_0.53-3_2.49",
+          "1175_l_1_r-0_0.7-1_0.2-2_0.22-3_0.01",
+          "1176_l_1_r-0_2.01-1_0.74-2_0.37-3_0.44",
+          "1177_l_1_r-0_0.73-1_0.91-2_0.97-3_1.77",
+          "1178_l_1_r-0_1.26-1_0.61-2_0.91-3_1.47",
+          "1179_l_1_r-0_1.23-1_0.16-2_0.15-3_2.8",
+          "1180_l_1_r-0_0.5-1_0.79-2_0.32-3_0.79",
+          "1181_l_1_r-0_1.39-1_0.56-2_0.63-3_0.97",
+          "1182_l_1_r-0_0.6-1_0.3-2_1.42-3_0.24",
+          "1183_l_1_r-0_1.23-1_0.14-2_0.07-3_0.88",
+          "1184_l_1_r-0_0.45-1_0.12-2_0.31-3_0.3",
+          "1185_l_1_r-0_0.42-1_1.16-2_0.4-3_1.73",
+          "1186_l_1_r-0_0.89-1_0.17-2_0.78-3_1.79",
+          "1187_l_1_r-0_0.23-1_0.19-2_0.28-3_1.26",
+          "1188_l_1_r-0_0.78-1_0.36-2_0.1-3_1.5",
+          "1189_l_1_r-0_0.44-1_0.25-2_1.26-3_1.08",
+          "1190_l_1_r-0_0.17-1_0.03-2_0.99-3_0.21",
+          "1191_l_1_r-0_1.24-1_0.52-2_0.15-3_0.77",
+          "1192_l_1_r-0_1.12-1_0.3-2_0.97-3_0.46",
+          "1193_l_1_r-0_0.71-1_0.14-2_0.38-3_1.75",
+          "1194_l_1_r-0_0.3-1_0.49-2_0.69-3_0.32",
+          "1195_l_1_r-0_1.08-1_0.91-2_0.05-3_0.52",
+          "1196_l_1_r-0_0.52-1_0.7-2_0.05-3_1.14",
+          "1197_l_1_r-0_1.13-1_0.06-2_0.3-3_0.69",
+          "1198_l_1_r-0_1.91-1_0.28-2_0.25-3_1.67",
+          "1199_l_1_r-0_1.68-1_0.9-2_0.98-3_0.45",
+          "1200_l_1_r-0_0.1-1_0.38-2_1.32-3_0.63",
+          "1201_l_1_r-0_0.5-1_0.17-2_0.44-3_0.95",
+          "1202_l_1_r-0_0.33-1_0.92-2_0.7-3_1.36",
+          "1203_l_1_r-0_0.81-1_0.22-2_0.47-3_1.68",
+          "1204_l_1_r-0_0.59-1_0.7-2_0.67-3_0.88",
+          "1205_l_1_r-0_0.65-1_0.09-2_0.19-3_0.97",
+          "1206_l_1_r-0_1.22-1_0.14-2_0.24-3_1.64",
+          "1207_l_1_r-0_0.72-1_0.53-2_0.46-3_0.84",
+          "1208_l_1_r-0_0.01-1_0.25-2_0.06-3_0.48",
+          "1209_l_1_r-0_0.21-1_0.37-2_0.28-3_0.14",
+          "1210_l_1_r-0_1.79-1_0.15-2_0.09-3_1.37",
+          "1211_l_1_r-0_1.67-1_1.03-2_0.12-3_0.15",
+          "1212_l_1_r-0_0.0-1_0.2-2_0.43-3_0.18",
+          "1213_l_1_r-0_1.07-1_0.22-2_0.61-3_1.43",
+          "1214_l_1_r-0_1.07-1_0.2-2_0.15-3_0.69",
+          "1215_l_1_r-0_0.26-1_0.2-2_0.84-3_0.87",
+          "1216_l_1_r-0_0.08-1_0.31-2_0.21-3_2.2",
+          "1217_l_1_r-0_1.09-1_0.05-2_1.56-3_2.26",
+          "1218_l_1_r-0_0.21-1_1.37-2_0.34-3_0.27",
+          "1219_l_1_r-0_3.37-1_0.56-2_0.08-3_0.15",
+          "1220_l_1_r-0_0.54-1_0.84-2_0.35-3_0.15",
+          "1221_l_1_r-0_0.23-1_0.52-2_0.27-3_1.98",
+          "1222_l_1_r-0_0.3-1_0.74-2_0.08-3_0.17",
+          "1223_l_1_r-0_0.76-1_0.22-2_0.69-3_1.83",
+          "1224_l_1_r-0_0.55-1_0.96-2_0.11-3_1.54",
+          "1225_l_1_r-0_0.15-1_0.35-2_0.94-3_1.23",
+          "1226_l_1_r-0_1.56-1_1.06-2_0.05-3_0.24",
+          "1227_l_1_r-0_0.09-1_0.46-2_0.12-3_0.07",
+          "1228_l_1_r-0_1.04-1_1.13-2_0.28-3_0.69",
+          "1229_l_1_r-0_0.87-1_0.13-2_0.05-3_1.48",
+          "1230_l_1_r-0_0.03-1_1.38-2_1.01-3_0.18",
+          "1231_l_1_r-0_0.61-1_0.16-2_0.51-3_0.72",
+          "1232_l_1_r-0_0.62-1_0.18-2_0.27-3_0.19",
+          "1233_l_1_r-0_0.28-1_0.07-2_0.74-3_0.25",
+          "1234_l_1_r-0_1.13-1_1.22-2_1.09-3_0.47",
+          "1235_l_1_r-0_0.14-1_0.02-2_0.06-3_0.77",
+          "1236_l_1_r-0_0.86-1_0.62-2_0.96-3_1.19",
+          "1237_l_1_r-0_1.0-1_0.2-2_0.18-3_1.08",
+          "1238_l_1_r-0_0.76-1_0.44-2_0.6-3_0.57",
+          "1239_l_1_r-0_0.52-1_0.19-2_0.25-3_0.59",
+          "1240_l_1_r-0_2.26-1_0.02-2_0.35-3_1.32",
+          "1241_l_1_r-0_0.93-1_0.06-2_0.34-3_0.42",
+          "1242_l_1_r-0_2.52-1_0.59-2_0.12-3_0.44",
+          "1243_l_1_r-0_0.74-1_0.09-2_0.16-3_0.46",
+          "1244_l_1_r-0_0.26-1_1.14-2_0.79-3_0.09",
+          "1245_l_1_r-0_0.52-1_0.33-2_0.08-3_1.8",
+          "1246_l_1_r-0_0.48-1_0.14-2_0.99-3_1.23",
+          "1247_l_1_r-0_0.42-1_0.57-2_1.02-3_1.36",
+          "1248_l_1_r-0_0.11-1_0.2-2_0.1-3_0.9",
+          "1249_l_1_r-0_0.55-1_1.0-2_0.92-3_0.05",
+          "1250_l_1_r-0_0.86-1_0.28-2_0.21-3_0.22",
+          "1251_l_1_r-0_0.5-1_0.39-2_0.75-3_1.4",
+          "1252_l_1_r-0_0.77-1_0.23-2_0.71-3_0.22",
+          "1253_l_1_r-0_0.96-1_0.26-2_0.56-3_0.36",
+          "1254_l_1_r-0_0.56-1_0.24-2_0.13-3_1.43",
+          "1255_l_1_r-0_0.16-1_0.61-2_0.15-3_1.24",
+          "1256_l_1_r-0_0.86-1_0.2-2_0.42-3_0.66",
+          "1257_l_1_r-0_0.09-1_1.09-2_0.75-3_1.99",
+          "1258_l_1_r-0_0.71-1_0.07-2_0.08-3_0.12",
+          "1259_l_1_r-0_0.02-1_1.14-2_0.59-3_2.0",
+          "1260_l_1_r-0_1.23-1_0.73-2_0.42-3_0.76",
+          "1261_l_1_r-0_0.35-1_0.38-2_0.66-3_0.04",
+          "1262_l_1_r-0_0.48-1_0.67-2_0.25-3_1.48",
+          "1263_l_1_r-0_2.08-1_0.17-2_0.28-3_0.03",
+          "1264_l_1_r-0_0.25-1_0.15-2_0.03-3_0.36",
+          "1265_l_1_r-0_0.05-1_0.1-2_0.89-3_1.69",
+          "1266_l_1_r-0_2.61-1_0.08-2_0.12-3_1.16",
+          "1267_l_1_r-0_0.79-1_0.63-2_0.84-3_0.57",
+          "1268_l_1_r-0_0.46-1_0.14-2_0.24-3_0.74",
+          "1269_l_1_r-0_0.46-1_0.25-2_0.32-3_0.25",
+          "1270_l_1_r-0_1.02-1_1.66-2_0.17-3_0.63",
+          "1271_l_1_r-0_1.89-1_0.66-2_0.42-3_0.04",
+          "1272_l_1_r-0_0.56-1_0.35-2_1.76-3_0.09",
+          "1273_l_1_r-0_0.79-1_0.43-2_0.16-3_1.49",
+          "1274_l_1_r-0_1.3-1_0.25-2_0.67-3_0.9",
+          "1275_l_1_r-0_0.59-1_0.16-2_0.87-3_0.93",
+          "1276_l_1_r-0_0.05-1_0.16-2_0.84-3_1.93",
+          "1277_l_1_r-0_0.02-1_0.06-2_0.57-3_1.63",
+          "1278_l_1_r-0_1.34-1_0.08-2_0.42-3_0.73",
+          "1279_l_1_r-0_1.39-1_0.57-2_0.22-3_1.83",
+          "1280_l_1_r-0_0.66-1_0.26-2_0.24-3_0.75",
+          "1281_l_1_r-0_0.06-1_0.8-2_0.34-3_0.96",
+          "1282_l_1_r-0_0.39-1_0.42-2_0.27-3_0.32",
+          "1283_l_1_r-0_0.52-1_0.14-2_1.03-3_0.19",
+          "1284_l_1_r-0_0.08-1_0.09-2_0.79-3_0.95",
+          "1285_l_1_r-0_0.98-1_0.99-2_0.48-3_0.29",
+          "1286_l_1_r-0_0.16-1_0.38-2_0.63-3_0.29",
+          "1287_l_1_r-0_0.52-1_0.45-2_0.03-3_0.71",
+          "1288_l_1_r-0_1.23-1_1.0-2_0.02-3_0.6",
+          "1289_l_1_r-0_0.01-1_0.87-2_0.41-3_0.13",
+          "1290_l_1_r-0_0.82-1_1.11-2_0.69-3_0.13",
+          "1291_l_1_r-0_0.79-1_0.93-2_0.1-3_0.49",
+          "1292_l_1_r-0_0.74-1_1.43-2_0.86-3_1.0",
+          "1293_l_1_r-0_0.44-1_0.07-2_0.26-3_0.11",
+          "1294_l_1_r-0_1.23-1_0.63-2_0.69-3_0.71",
+          "1295_l_1_r-0_0.28-1_0.09-2_0.61-3_1.94",
+          "1296_l_1_r-0_0.09-1_0.12-2_0.87-3_1.4",
+          "1297_l_1_r-0_0.93-1_0.04-2_0.06-3_0.52",
+          "1298_l_1_r-0_1.73-1_0.04-2_0.69-3_0.26",
+          "1299_l_1_r-0_0.53-1_0.36-2_0.66-3_1.2",
+          "1300_l_1_r-0_0.67-1_0.37-2_0.98-3_0.69",
+          "1301_l_1_r-0_0.54-1_0.33-2_0.77-3_0.53",
+          "1302_l_1_r-0_1.06-1_0.73-2_0.51-3_0.32",
+          "1303_l_1_r-0_0.13-1_0.12-2_0.48-3_0.39",
+          "1304_l_1_r-0_0.36-1_0.11-2_0.11-3_0.21",
+          "1305_l_1_r-0_0.51-1_1.22-2_1.43-3_0.44",
+          "1306_l_1_r-0_0.43-1_0.26-2_0.44-3_0.0",
+          "1307_l_1_r-0_1.72-1_0.03-2_0.02-3_1.3",
+          "1308_l_1_r-0_1.28-1_0.4-2_0.16-3_1.94",
+          "1309_l_1_r-0_1.33-1_0.13-2_0.93-3_0.71",
+          "1310_l_1_r-0_0.61-1_0.54-2_0.59-3_1.22",
+          "1311_l_1_r-0_0.1-1_0.39-2_0.49-3_0.03",
+          "1312_l_1_r-0_0.03-1_0.41-2_0.32-3_1.69",
+          "1313_l_1_r-0_0.42-1_0.73-2_0.12-3_2.04",
+          "1314_l_1_r-0_0.19-1_0.53-2_0.02-3_0.71",
+          "1315_l_1_r-0_0.13-1_0.65-2_0.23-3_0.97",
+          "1316_l_1_r-0_0.41-1_0.81-2_0.49-3_1.85",
+          "1317_l_1_r-0_1.76-1_1.08-2_0.21-3_0.72",
+          "1318_l_1_r-0_1.07-1_0.01-2_0.28-3_0.5",
+          "1319_l_1_r-0_0.98-1_1.38-2_0.63-3_0.85",
+          "1320_l_1_r-0_1.18-1_0.06-2_0.66-3_0.59",
+          "1321_l_1_r-0_0.14-1_0.19-2_0.72-3_1.24",
+          "1322_l_1_r-0_1.03-1_1.2-2_0.44-3_0.47",
+          "1323_l_1_r-0_0.66-1_0.56-2_0.24-3_1.18",
+          "1324_l_1_r-0_0.19-1_0.27-2_0.33-3_0.0",
+          "1325_l_1_r-0_1.62-1_0.43-2_0.53-3_0.72",
+          "1326_l_1_r-0_1.21-1_1.13-2_0.34-3_0.58",
+          "1327_l_1_r-0_0.44-1_0.13-2_0.85-3_0.72",
+          "1328_l_1_r-0_0.18-1_0.5-2_0.7-3_0.02",
+          "1329_l_1_r-0_0.21-1_1.55-2_0.12-3_0.14",
+          "1330_l_1_r-0_0.34-1_0.64-2_0.24-3_1.14",
+          "1331_l_1_r-0_0.14-1_0.52-2_0.6-3_0.41"
          ],
          "type": "scatter3d",
          "x": [
-          -9.981369309161868,
-          8.059329877373246,
-          9.309131962373907,
-          8.749754535503637,
-          -11.116158443335774,
-          -10.89045324689292,
-          -8.55816743351424,
-          11.15926706645459,
-          10.236589971494817,
-          6.7545210433778085,
-          -9.909046429442947,
-          -11.3918155855104,
-          10.55114960098809,
-          10.627143192391937,
-          9.06714970385186,
-          9.809792972494144,
-          9.074557399864467,
-          -10.610472293705822,
-          9.256098640672178,
-          -9.23112470127903,
-          -11.357069997814758,
-          9.584308810151386,
-          -9.56482987423732,
-          9.726328787753193,
-          11.51975878191724,
-          -9.611443496704887,
-          8.527720911573812,
-          -10.593269171692741,
-          10.151680649290975,
-          11.337068244887814,
-          -11.746819645796062,
-          -10.130953940799172,
-          -7.46429996453719,
-          11.576675042267915,
-          -10.124241330791738,
-          10.900068741016932,
-          -11.185189645744627,
-          10.177948649435706,
-          10.121488116878522,
-          9.969807308842311,
-          10.355930163095572,
-          -10.843478596074798,
-          -8.834002023279737,
-          10.990292535098094,
-          -9.236244715595234,
-          11.140612065529718,
-          10.60536486542855,
-          -10.553905090288126,
-          -9.988192336458948,
-          -11.089645090155802,
-          -10.659151848529225,
-          -11.515573014100639,
-          -10.347996573211208,
-          9.314994337384613,
-          11.496206213154789,
-          -10.65451107043442,
-          -11.22653361404147,
-          -10.889991078236894,
-          9.824875479795237,
-          9.899692623879005,
-          9.199654270064126,
-          10.261983385726383,
-          -10.350422114161264,
-          -9.029487945425666,
-          -9.920055322839856,
-          -10.122160045908915,
-          -10.530937342704892,
-          -10.299220757774407,
-          10.327825144820277,
-          10.080268081404737,
-          8.315902869214895,
-          11.394664460949292,
-          -11.116409253409373,
-          9.072683866061894,
-          -9.967933045672403,
-          9.813684373454654,
-          -8.460774208487269,
-          11.355978978068572,
-          -8.900994310738444,
-          -9.372042726909974,
-          -9.855559389340687,
-          11.488114653684917,
-          10.296839052162317,
-          11.233477480790226,
-          9.344032212287186,
-          -10.860698945038427,
-          11.430509840425072,
-          12.117287340802918,
-          -11.42984915342771,
-          -9.509368161694752,
-          8.318201411888824,
-          -10.861510864841678,
-          -10.57346746061851,
-          10.627925658287126,
-          9.505178698448388,
-          -10.664904238685263,
-          9.934639188776021,
-          9.197625295077835,
-          10.267304098750866,
-          10.331455156058839,
-          10.252439437683655,
-          -11.386171087024636,
-          10.183377085624672,
-          10.349539919953664,
-          -10.454852815880791,
-          8.83224218674519,
-          10.550659257622115,
-          9.87450916645474,
-          9.789606192350211,
-          10.853260026160125,
-          -9.949138137899773,
-          11.459578640858899,
-          10.124740759069526,
-          -11.677398732868562,
-          -8.326637972566628,
-          -9.922964266217067,
-          -10.737228131925232,
-          9.082348949945015,
-          11.984700174511502,
-          -10.013510677336198,
-          -12.301480285598242,
-          -10.42245666829284,
-          10.195200706399246,
-          9.837308598659435,
-          10.02562167620449,
-          -8.974819678140973,
-          -10.423381766917117,
-          -8.229916525413955,
-          -10.882766875754113,
-          11.430438138398259,
-          9.703473584153448,
-          11.244297372198474,
-          8.168388991038487,
-          9.305816678310944,
-          -11.177843628082671,
-          10.841351061782388,
-          10.846967419331815,
-          10.422892903060532,
-          -10.090718649860225,
-          -9.748163027646468,
-          -8.560130686380043,
-          11.357000551155448,
-          -10.99915863948861,
-          10.878667096807911,
-          -10.035357504876204,
-          -8.772752764532656,
-          8.992906507796906,
-          -9.72005486713369,
-          11.938498045788629,
-          9.306847233883659,
-          -10.368670113635499,
-          10.174125749858666,
-          -9.067134658789488,
-          9.444491532421399,
-          8.583530941646101,
-          11.51181751004292,
-          10.730947943326267,
-          8.721426665451663,
-          9.299861870169494,
-          -11.746502665863737,
-          9.736380517532208,
-          9.293146350396945,
-          -11.203237453232372,
-          -10.929722243821963,
-          9.907102460774626,
-          9.991674086865272,
-          9.794753275935022,
-          -10.41350194487723,
-          9.95413786514809,
-          9.850414349791873,
-          11.287077480296212,
-          -12.071523454529554,
-          10.938492917898033,
-          11.088586361543777,
-          -10.989025128085911,
-          -11.124562811651131,
-          -10.161012108505673,
-          -9.78090317130719,
-          9.159622020217041,
-          10.649721777157371,
-          11.012331904564933,
-          -9.838365814976783,
-          -8.74772647445475,
-          9.503981392804596,
-          10.770125597214625,
-          -8.22698956530585,
-          11.45851452757094,
-          8.521324156070389,
-          11.942530109390603,
-          -10.613503262818565,
-          9.555140520003487,
-          -10.162323685948957,
-          -8.136214049178987,
-          10.94022554129852,
-          -9.044319674067422,
-          9.87572046313958,
-          -10.463886726162663,
-          11.162389620386746,
-          9.63956345981921,
-          10.66785287317375,
-          10.07914490461921,
-          10.292575774145211,
-          11.716263978159224,
-          10.12534435557307,
-          10.967564819753495,
-          -11.401774930170221,
-          10.367996908246226,
-          9.8509088500099,
-          9.574293190387843,
-          -10.069711103726624,
-          -9.843294499957844,
-          -9.687923979432062,
-          10.763096722230484,
-          8.459944758835167,
-          -8.107956443758688,
-          -9.68635709022074,
-          10.646270079905522,
-          -9.331839289880831,
-          -10.386280317187135,
-          -10.168690923186226,
-          11.916485171242442,
-          -10.869807414364006,
-          -10.199539271390504,
-          7.528469007541324,
-          11.658166379140459,
-          -11.010769253522646,
-          9.972724844167443,
-          9.466315817601519,
-          -8.338385850557863,
-          -10.01792745206599,
-          -9.035849496150185,
-          9.413980078568986,
-          9.72807617233164,
-          9.976766513129848,
-          11.585885434160447,
-          -8.531540425049315,
-          8.991958862126873,
-          9.827346963686757,
-          9.534804172116148,
-          9.95306186900993,
-          9.637429620053567,
-          8.805700106217845,
-          8.402160370627664,
-          9.284760076118118,
-          10.57187939049603,
-          -9.557958048587782,
-          -8.51236879676442,
-          -10.808173052980846,
-          -10.483085659986283,
-          12.50851643426445,
-          -9.972784764446715,
-          -9.734848525464693,
-          -10.802882102311928,
-          10.086636802845252,
-          -9.176860307961277,
-          10.577561965215176,
-          -10.846082640586506,
-          -10.0493946266895,
-          -9.917175315269082,
-          -11.098171567656602,
-          10.266204246145291,
-          -11.790376260057247,
-          9.585212393595981,
-          -9.185485469105378,
-          -9.4760744685096,
-          9.791909902051508,
-          8.68131005938234,
-          -9.974934080425495,
-          9.942064799613147,
-          -9.775661543461021,
-          -9.6350493336403,
-          11.01840515212324,
-          -9.249556364635662,
-          -9.08552591632938,
-          10.052543872496297,
-          10.505863802669495,
-          -9.932377250013301,
-          7.161592028128537,
-          10.810186067087876,
-          -8.872672520862407,
-          9.074327271618342,
-          11.34325678173639,
-          -8.98396243490883,
-          10.518131680988398,
-          10.30736992618344,
-          8.228821285223445,
-          10.354146496090493,
-          -8.465217709643017,
-          -11.301188386372413,
-          8.41150930334641,
-          10.502136925272191,
-          10.721395716998975,
-          9.802998387453282,
-          -9.582397285753874,
-          9.132106951389881,
-          -8.779786971152724,
-          10.899423294054445,
-          11.192827008120119,
-          -9.582887644878939,
-          -10.58210239658048,
-          8.629126926197015,
-          -10.968255780611667,
-          9.103600363252001,
-          9.207470829370955,
-          10.164150249902521,
-          -11.848285604821374,
-          -9.050153582165457,
-          10.601860138430913,
-          -8.811566325210034,
-          -10.255426276819701,
-          11.089918791744172,
-          -10.597683530086854,
-          -9.309067426111906,
-          9.511270360106016,
-          -8.491426635970203,
-          10.292385520246414,
-          8.970092571335133,
-          10.068106118210768,
-          -11.085384166412494,
-          10.090516016538444,
-          12.040319943652037,
-          10.699781977183207,
-          9.612648577614848,
-          -9.504043930421636,
-          -10.53256498114472,
-          11.468664690677377,
-          -8.262907309202655,
-          11.355154795160397,
-          9.568726578871138,
-          8.10690254554965,
-          -9.987428282462028,
-          10.168307960099222,
-          -9.134622618974095
+          1.9941935946719802,
+          0.7327219477256739,
+          -0.3901592202544236,
+          0.09905144553504108,
+          1.393003850076552,
+          0.8230494392451315,
+          1.994291187932912,
+          0.06144806240165579,
+          -1.3669594766332147,
+          -0.4075801963906722,
+          0.21020370577245773,
+          -2.843326558865777,
+          1.101667388903934,
+          0.19368053680172181,
+          1.493111583029874,
+          0.3877130841590595,
+          0.4189353668477245,
+          -1.29180323869109,
+          1.187060024917168,
+          0.025377725380463678,
+          -3.040746562890056,
+          0.09476104098157823,
+          0.6104496022279435,
+          -1.5701746542269583,
+          -1.5542319872024237,
+          -1.2621173617279267,
+          0.5688677498190926,
+          -1.4719595912076788,
+          0.25594282339596086,
+          -1.7149598188024238,
+          -0.049210754124953016,
+          -1.065893495750444,
+          -0.2202841362800434,
+          -1.1617190637409587,
+          0.5019195884685856,
+          -1.2887507733313188,
+          1.9160864679025518,
+          0.44500431809031316,
+          -1.616478061385226,
+          -1.8929011489105387,
+          0.09267793907151312,
+          -1.5529708009438528,
+          -1.312527205711782,
+          1.0625325578744804,
+          0.12954799205237766,
+          0.279610086206044,
+          -0.6628237817779279,
+          0.07615721057456648,
+          -0.5476889546511086,
+          1.4692361034541648,
+          -1.7716717516213065,
+          0.36673769658888666,
+          0.10773484618245388,
+          1.380935510340123,
+          -1.1631386832003623,
+          0.23929788631721172,
+          0.15493222412302132,
+          -0.8660131642687257,
+          -0.7263344591447957,
+          -1.285488851994287,
+          0.3069941581329694,
+          -2.372298403056199,
+          -1.532352465580649,
+          0.4746057950007778,
+          1.165617397434001,
+          -1.3510304063103837,
+          -0.6103147542177823,
+          3.2675467595777326,
+          1.485364222982895,
+          0.16036483848203908,
+          0.05489959170001124,
+          -2.307883854909769,
+          0.41918810021231945,
+          -2.9554009566039374,
+          1.6148661955974881,
+          -3.3023038961774036,
+          0.4241892654601964,
+          -0.9752172625642683,
+          1.5914346126094454,
+          0.4231112845819378,
+          0.45488871550320065,
+          -0.5916053323203084,
+          1.9970268146688719,
+          0.21614725523648093,
+          -2.315874876712198,
+          -0.6022035267294035,
+          -2.5547995561092884,
+          -0.8473040767745333,
+          0.07835629829243662,
+          -3.1366157057549175,
+          -0.1458038583916207,
+          -0.41816035213542624,
+          -1.7719945559704788,
+          -3.7178362195186887,
+          -1.6335132613331675,
+          0.8915926918740362,
+          -0.9524270041258497,
+          0.005618473278605096,
+          0.09646857417664312,
+          0.4890604502548843,
+          1.2061622895119366,
+          2.295297751312019,
+          -0.27974064230991236,
+          1.0595644689503456,
+          -2.4693533163969525,
+          0.7791152320461068,
+          1.9367456692808709,
+          0.37167732688546895,
+          0.36962232767388237,
+          -1.4230118806523007,
+          0.06691371825146564,
+          -0.750952535802264,
+          -0.9992652776244962,
+          0.7084419622145901,
+          -1.947687821172713,
+          -2.6075386603932564,
+          0.1798439983998723,
+          0.31460826742144987,
+          -0.5111253217999492,
+          0.3774192436326018,
+          -0.1690630998610697,
+          0.3292217356387688,
+          -2.6697671472756923,
+          -0.0520026044270534,
+          -1.4702435942480923,
+          0.054499035859210565,
+          0.1816676683390539,
+          0.36392431597493435,
+          1.0806572694892198,
+          -2.1949805996701928,
+          -1.001681108886157,
+          1.0128876406394682,
+          -1.7670704832529407,
+          0.552608805335592,
+          0.27109641759562675,
+          0.5564541108597512,
+          -0.9135589375707288,
+          -0.214167066170032,
+          1.1047183536065894,
+          -0.3628388876891001,
+          -1.2063667409564873,
+          0.4326288673474661,
+          -1.3945261583430277,
+          -0.8916075291031825,
+          -1.6471271825496174,
+          -3.0607318643146755,
+          0.46443691826175515,
+          0.8331256388419281,
+          -0.38415764860977897,
+          -0.40491183768735584,
+          -0.16758554576666984,
+          -1.9132826943926402,
+          -0.7734171827155676,
+          1.6077832214155103,
+          -1.1994055546188163,
+          0.30709264215441645,
+          1.1275298035807797,
+          -1.4823248232351878,
+          0.8687895156684011,
+          1.5079132053130921,
+          -4.204313177973695,
+          -0.7592422326838111,
+          -1.533119052266632,
+          -0.5340207853551152,
+          0.07218884934592551,
+          0.39266434383793225,
+          -0.6437185253071529,
+          -1.657590695054058,
+          -1.1035093270836684,
+          -1.9900238773814158,
+          0.8347588428309309,
+          0.8305929052020642,
+          -1.4154227000461097,
+          -1.7012310470531826,
+          1.8659727550230958,
+          -1.3240391243683938,
+          0.5961485869740861,
+          -0.592566830932157,
+          -0.8404181736966254,
+          0.3056657991285725,
+          -1.0063150097317388,
+          -0.0927023332162259,
+          0.02687811894236658,
+          0.0892867165882738,
+          -1.4169648742812484,
+          -0.8927156649266655,
+          0.03660517788975004,
+          -2.097857760205846,
+          1.3948527109106066,
+          -1.5834641111237406,
+          -2.19155938507338,
+          -0.9638442973707757,
+          -0.6087992941767331,
+          -1.5362780143186463,
+          -3.0879892837831147,
+          0.18322980320514648,
+          -2.0402586616208254,
+          -1.224038184276792,
+          0.4703248006256697,
+          -1.9516548441515678,
+          0.1766289158274501,
+          0.9600300704202485,
+          -1.7659723369208722,
+          0.031130198431596146,
+          -0.8243414855546841,
+          -1.1222651648266366,
+          -1.5501192651489082,
+          -0.5847053642601988,
+          -0.4159589032812351,
+          -1.0281412433908308,
+          2.092203541128784,
+          -1.244099403303459,
+          -2.367356576545705,
+          0.15108770081826828,
+          -0.5351625586437296,
+          0.5805094989500401,
+          -2.629642723148334,
+          -1.6952016449411262,
+          -0.9044938840471879,
+          -0.09516394925253135,
+          -0.7728472820321536,
+          0.05886828735671079,
+          -1.430520868041451,
+          -3.6421827765249954,
+          -1.0020769080622538,
+          -2.0007327291374093,
+          -2.2668742095475434,
+          0.8091067859375376,
+          0.543093907947005,
+          -1.9233730006348064,
+          0.6213954207620254,
+          -1.9147393591353368,
+          -1.3514340765211874,
+          1.105927511540481,
+          1.343236320820675,
+          -1.7543571224550623,
+          0.47045720995684603,
+          0.5871586193593799,
+          -1.0290906924335033,
+          -1.1422362079675108,
+          1.244915605136812,
+          -0.8714384406978015,
+          -2.419788250018379,
+          0.5968598401414282,
+          -0.19082143371643345,
+          0.29172253456758757,
+          0.5825036958868726,
+          -0.010508838241576446,
+          -0.3544225623888695,
+          0.07371620415171853,
+          -1.5656999079840617,
+          -0.3580972555891059,
+          -2.221325626189354,
+          -1.3289761976216101,
+          -0.9354503697022809,
+          0.7021998358722858,
+          -3.0297912868647128,
+          0.11643206111210014,
+          -1.4389563627400421,
+          -1.534790824177692,
+          1.7292766022315198,
+          -0.8544305365200381,
+          -1.8373316886118771,
+          0.08310452333814622,
+          -1.0853060061706892,
+          -0.25341878104188575,
+          -0.6539621627317773,
+          -2.290173443176198,
+          -1.0690527083012091,
+          -0.5164572556536775,
+          -1.430149831925736,
+          -1.8003159120660288,
+          -0.10874700440801732,
+          -0.4766993002005063,
+          -1.5996544753892143,
+          -4.2544335781459806,
+          -1.816271133512938,
+          -2.053236268675696,
+          -0.6321236631368552,
+          -1.3848975370615317,
+          -1.8658186413439168,
+          -0.25336222880114134,
+          -1.9660933135193384,
+          -0.7546724741905775,
+          -1.444651903342977,
+          -0.5153852776641692,
+          -0.05805614840638085,
+          -3.1272457418737187,
+          -0.764888367978978,
+          -2.448232696698515,
+          -0.0774165407609324,
+          -4.090136705405033,
+          -3.358049525274709,
+          -2.672794147848199,
+          -0.7337990450636833,
+          -0.6247029175331762,
+          -1.5023585772062118,
+          -1.1141941371285604,
+          -0.36113499157875606,
+          -1.8890600213331847,
+          -1.3499191294295318,
+          -0.16389154324767918,
+          -1.3400169708095178,
+          -1.036097505298832,
+          -1.5873407315835324,
+          -0.467408650423878,
+          -1.4745238099709537,
+          -1.4584040803999487,
+          -0.2887704775451626,
+          -1.6046215756386628,
+          -1.710023742643351,
+          -0.888230142243995,
+          -0.6104770635913789,
+          -2.9275262248114364,
+          -1.815483386461099,
+          -1.2030253144767171,
+          -0.13123520955127288,
+          -1.66009481637366,
+          -0.8801660451488496,
+          -2.1044409080165707,
+          -0.0845083044110364,
+          -0.5009563350584428,
+          -0.34950756580955966,
+          -0.35274938488095364,
+          -2.4556232034268204,
+          -1.0669060173610112,
+          -1.4468112278796788,
+          -0.019810263083763657,
+          -0.4875893630303296,
+          -1.0220112606769565,
+          -0.6729919421656281,
+          -2.0624423160310625,
+          -1.690150227267548,
+          -1.8496784239179513,
+          -0.07374230307694074,
+          -2.429252947028029,
+          -0.7529764581033868,
+          -0.8199360119967068,
+          -2.2463234883000824,
+          -1.4982685199375207,
+          -0.8485010268106384,
+          -0.8591297722882802,
+          -0.8380373116544994,
+          -2.1588800606035523,
+          -1.1798535835444781,
+          -1.2404841873774206,
+          -1.1896866792886296,
+          -0.052187723459745206,
+          -0.8677509667642752,
+          -0.8664907518063351,
+          -3.643541097666583,
+          -3.2566194694795163,
+          -0.7004555709628922,
+          -1.3088175571120866,
+          -2.0493791898158973,
+          -0.5426530289512159,
+          -0.031170396165830838,
+          -1.1938064467827298,
+          -2.185517067084011,
+          -0.9749523576711433,
+          -3.6116383518162674,
+          -1.4672381781320571,
+          -1.1130469674973034,
+          -1.7620531690505827,
+          -0.29437489215092083,
+          -1.1230893054012807,
+          -0.842245068660632,
+          -0.5916698142211749,
+          -1.3644876632138745,
+          -1.3950995450221204,
+          -1.5099913853278326,
+          -2.9216821260586974,
+          -1.2659491660193818,
+          -2.0544558048599395,
+          -0.8719185027333419,
+          -2.2043691752247065,
+          -2.318580211547551,
+          -0.404014234191836,
+          -0.019851250589491554,
+          -1.1937284393728362,
+          -1.5695047156780622,
+          -0.1269609495336257,
+          -0.6635363523673856,
+          -3.9971493118066186,
+          -2.4040359141790266,
+          -0.9237791851903838,
+          -1.702556762361848,
+          -1.222302401597662,
+          -0.6171351430827172,
+          -2.6108530950257594,
+          -0.3800247203662931,
+          -2.257360993256361,
+          -1.9746385790497165,
+          -1.6904742177596663,
+          -1.385143441786966,
+          -1.6994938501201684,
+          -1.8094925956116565,
+          -0.24396490518699587,
+          -1.0363649177967813,
+          -0.8867499738467588,
+          -1.122269515927175,
+          -1.3150471811119884,
+          -1.1914929717778246,
+          -2.917362027118295,
+          -2.0337483362125637,
+          -1.4269698326434048,
+          -1.5456621794423966,
+          -2.0027194174269756,
+          -0.3655299003685948,
+          -0.22733287086024867,
+          -2.5685917391341273,
+          -1.199841422244833,
+          -2.15583673843099,
+          -0.6038811331859077,
+          -1.267895642599501,
+          -1.7425366185529167,
+          -0.3766414036143494,
+          -2.580896309043723,
+          -0.49212750264271177,
+          -0.9122587175801309,
+          -2.1301983019246404,
+          -2.5711159068426173,
+          -1.1868743053487258,
+          -2.3027009036662074,
+          -0.46297455805500876,
+          -2.3704854149960632,
+          -3.4654927702072755,
+          -1.5160211654527478,
+          -0.7656875054904929,
+          -2.1100645013981962,
+          -0.7005918244711882,
+          -0.18579931855916088,
+          -2.1501250401465537,
+          -0.8035027039451443,
+          -0.9820819119590924,
+          -2.2667988302599316,
+          -0.6544043356379932,
+          -0.700870270412896,
+          -0.791650083871207,
+          -0.6602526149077564,
+          -0.6266618873356874,
+          -1.6101791234836191,
+          -1.7781400414453432,
+          -1.611134414413737,
+          -1.0255827040752235,
+          -0.4026163525850672,
+          -1.3748507314847171,
+          -2.0721781472616487,
+          -0.8192779451165029,
+          -2.2448135098547812,
+          -0.5799140759042976,
+          -0.32255717471932754,
+          -1.5108146216053884,
+          -0.6890057110981507,
+          -1.2759478283980514,
+          -1.9030699330768317,
+          -0.460552212974331,
+          -0.7788113670656559,
+          -0.2294956710815259,
+          -0.43658891627870755,
+          -3.633689510821202,
+          -2.4733887449624294,
+          -2.729887639105387,
+          -0.34695795885216685,
+          -1.805875097794461,
+          -1.462187855514281,
+          -1.5898774501023403,
+          -1.3196305994569475,
+          -1.1377973267776036,
+          -1.7292147192221607,
+          -1.0466761485472185,
+          -0.4524287142297819,
+          -1.3408620720004674,
+          -0.026149769686932167,
+          -0.6514491693946238,
+          -0.2552037590741375,
+          -1.5030019309737468,
+          -0.9267687939147018,
+          -1.8409216706718912,
+          -0.713758030973084,
+          -1.036431326404868,
+          -0.25681559507918517,
+          -1.3321366559261252,
+          -1.0334799034437863,
+          -0.954057469212006,
+          -0.20988500894518136,
+          -0.8427701842937139,
+          -2.0473597166499067,
+          -1.1961549621270702,
+          -1.6625430987166034,
+          -2.5958381156550914,
+          -0.2900871158106477,
+          -0.6487055268859856,
+          -2.1749225486701524,
+          -3.846377739639611,
+          -1.164431072304179,
+          -0.6456682193755774,
+          -1.314272741462416,
+          -1.721552790578674,
+          -1.102376267874372,
+          -1.506043461022057,
+          -1.796714258635847,
+          -1.5159939253625971,
+          -2.053866356750415,
+          -2.8939498759675595,
+          -2.150463418463853,
+          -0.2750764061887284,
+          -2.0677490431085825,
+          -1.888737658601012,
+          -1.7091968953228487,
+          -2.607324034277525,
+          -2.3300735695735693,
+          -1.3519384784125565,
+          -1.5493808617713656,
+          -0.4992915685455427,
+          -3.0016204688273445,
+          -2.1354134976863146,
+          -3.6558703812622797,
+          -2.229378475066911,
+          -2.6440641209631863,
+          -0.8946633095944702,
+          -2.743454841553261,
+          -0.7799219984719139,
+          -0.4433985238244499,
+          -1.1328246881951782,
+          -1.2943728226842888,
+          -3.4387999928608886,
+          -1.4403815128308533,
+          -0.3688307059023611,
+          -1.4547152431385297,
+          -3.034803134787413,
+          -1.1280207024553164,
+          -2.0650638671682113,
+          -1.7325099583517503,
+          -0.10077439349705941,
+          -1.2043326186894143,
+          -1.7824202050716518,
+          -1.0336198364333657,
+          -1.3234956832967504,
+          -0.6528283836308715,
+          -1.9796511493685252,
+          -0.7170782058578263,
+          -1.3810236995674054,
+          -1.3395193732556896,
+          -1.7880541762198705,
+          -1.672732240405831,
+          -1.0486577250440945,
+          -2.7259240355029863,
+          -2.3260948249448727,
+          -1.170015298940035,
+          -2.2039720543839403,
+          -2.210946749108386,
+          -2.0635612870459026,
+          -3.371598892977182,
+          -0.6703522764503592,
+          -1.2254148806337393,
+          -0.3011078318079293,
+          -1.0290954960047658,
+          -1.3460095628349744,
+          -0.2743870749341545,
+          -1.5586004231039041,
+          -0.7311449749820861,
+          -2.1748011434445482,
+          -0.8703992845845296,
+          -1.923837822398853,
+          -2.1854137798435946,
+          -1.571426347923504,
+          -0.277894129472134,
+          -2.910871848262156,
+          -1.341820382727192,
+          -0.8700086394451096,
+          -0.9958251690240595,
+          -1.2865939559700512,
+          -0.7802139823521339,
+          -2.263663950841658,
+          -1.3460283611533794,
+          -2.5185822901844803,
+          -0.742456770767711,
+          -2.7346069127644927,
+          -0.5226364983627889,
+          -0.48305344820211504,
+          -0.41600547141890964,
+          -1.753827208824682,
+          -1.4949128118576547,
+          -0.8623782576251181,
+          -0.4960442421308069,
+          -0.7671888044690902,
+          -1.8360778602359784,
+          -3.0661197066758348,
+          -2.0401923460849023,
+          -0.8584501990756871,
+          -1.8555664845843582,
+          -1.589978191470541,
+          -0.8672782059025231,
+          -3.0313357969914065,
+          -0.3513198423394983,
+          -0.4759562870060938,
+          -2.2665052900659477,
+          -3.1210114914615357,
+          -1.921276278080342,
+          -3.0566670796901976,
+          -0.7934574790255347,
+          -0.46300859472985345,
+          -0.4585505852459387,
+          -1.0191850093183927,
+          -1.885192337929141,
+          -0.90059165702363,
+          -1.916333316712746,
+          -1.2975197949241837,
+          -2.429699798403203,
+          -0.05013088867677806,
+          -1.9734733630745025,
+          -2.295084946492974,
+          -1.8537728686652928,
+          -1.2691929446936034,
+          -1.0249540812918418,
+          -0.387686320779584,
+          -2.252027471451544,
+          -2.065008756282034,
+          -3.164689991452084,
+          -0.15816354995335435,
+          -1.3317993333392926,
+          -2.6163781053349027,
+          -0.9353187088493532,
+          -1.0253140278341424,
+          -1.5017490133233642,
+          -0.7383052669028913,
+          -0.4398735547517766,
+          -2.49107995025334,
+          -0.27534527189832947,
+          -0.1410954783897269,
+          -2.5236990594830297,
+          -1.7312640064103264,
+          -0.52609787885404,
+          -1.4873006509030007,
+          -0.5438863120663944,
+          -1.056881601336416,
+          -0.1296856953061264,
+          -0.3621409973699462,
+          -0.5105332301835297,
+          -0.9475848564888769,
+          -1.7191340444193457,
+          -1.2782467096059718,
+          -1.3333795762628395,
+          -0.8261528560413267,
+          -0.6919851138812974,
+          -0.31307196898460743,
+          -0.4223643807193781,
+          -0.7585362486234649,
+          -0.8135717780578333,
+          -0.40750732664824985,
+          -1.7646739008713999,
+          -1.0771956978828703,
+          -0.9789939143908183,
+          -1.9212171008047965,
+          -0.1961893610809513,
+          -1.3211828134996815,
+          -1.4409358446371776,
+          -0.8040335177466044,
+          -1.6197887542691105,
+          -2.5065967177479087,
+          -0.44301566631775025,
+          -0.1819351292373197,
+          -0.5713961613878862,
+          -2.9880451324842605,
+          -1.13708358118249
          ],
          "y": [
-          10.164471280906607,
-          -9.104105340936828,
-          -10.175059421214575,
-          -9.923102170594865,
-          -9.351638599754546,
-          10.327745560683049,
-          9.101323842922545,
-          -9.21141360795808,
-          9.57877636957019,
-          -9.874309508314727,
-          9.020420416829676,
-          10.803838846654445,
-          -10.127807238837347,
-          -9.404905636348522,
-          -10.568273739809927,
-          9.932310874579827,
-          -11.617827157928966,
-          10.217630472280378,
-          -7.698299463425773,
-          10.280059609007548,
-          11.722881961099397,
-          -9.735119714558746,
-          -10.453616603783347,
-          -9.182319929153817,
-          -9.447079906585852,
-          10.245937765829451,
-          -8.244992517515266,
-          9.775578626736856,
-          -10.536876382620253,
-          9.104899740091028,
-          10.496785764118025,
-          -9.65005547711632,
-          -9.033059960670215,
-          -9.281979080347186,
-          9.480172671431113,
-          -10.146928137333317,
-          -10.705981607081407,
-          -10.424336498082459,
-          -9.150127325382027,
-          -9.289792699983861,
-          -8.6174635505015,
-          10.31956338267285,
-          9.432614448293291,
-          -9.533176610191505,
-          10.052151013222758,
-          9.201407720902619,
-          -8.467927068264109,
-          9.09060583070508,
-          11.643040426987064,
-          10.999828390730235,
-          10.015582947183772,
-          -10.177470543458368,
-          9.840873471290685,
-          -9.586870465615709,
-          -10.303858924540169,
-          11.437675939747935,
-          10.883721109839742,
-          9.714371575187362,
-          10.161946717921788,
-          9.932441857366456,
-          -9.512618973347381,
-          -9.4074120797654,
-          -10.920901813398554,
-          10.214968404756908,
-          10.235531948872202,
-          10.424289938308199,
-          11.073690212636217,
-          10.330238015035905,
-          -10.313853746264824,
-          -9.781669869192111,
-          11.203433255896783,
-          9.1806309067109,
-          10.900227590037733,
-          -10.593361197426338,
-          10.034700793130387,
-          -9.61186584886641,
-          7.735509321930868,
-          8.947004146527778,
-          -10.614858421165236,
-          -10.347864688619756,
-          10.669124176358302,
-          -9.672430492841212,
-          9.683420690403516,
-          -9.147793598669596,
-          -10.263113005885131,
-          10.900561606727749,
-          8.775321951028483,
-          -8.572239655172826,
-          10.866259086077822,
-          8.897781049771677,
-          -9.676352603206864,
-          10.421569792332225,
-          -10.449528286797781,
-          -8.707583957100228,
-          10.381163991161024,
-          -10.092570678568045,
-          10.105918228103322,
-          -10.785672932620601,
-          -9.659779850993491,
-          -9.427903824926721,
-          9.894470087267916,
-          11.562222514535692,
-          -10.988409529916833,
-          -9.516636592399912,
-          10.358018508687856,
-          -9.772288792952212,
-          -10.128716976743963,
-          -10.173988700335824,
-          -8.989235041433666,
-          -9.662684376251903,
-          10.482583399358255,
-          -9.832292570039062,
-          9.811868205610807,
-          11.353293792195307,
-          7.913507804918928,
-          -10.099399075520825,
-          -9.747412460787737,
-          -8.99464546506839,
-          -10.379919272642061,
-          -10.359159121049998,
-          -10.203738467708174,
-          -10.239277222335955,
-          -10.646176897472868,
-          10.259808619166993,
-          -8.406521351720928,
-          9.075620456458466,
-          9.385499881884728,
-          -9.287599573529807,
-          8.67475335563408,
-          -9.627964235858009,
-          10.356931572733338,
-          -9.880696317204963,
-          -9.17132615450023,
-          -9.888004169908129,
-          9.307699165251272,
-          -10.348915450128738,
-          -10.304934102803127,
-          -10.439492432352731,
-          10.970988479670837,
-          11.037300427931273,
-          -9.813773187178562,
-          -9.280651522340973,
-          11.499661446896026,
-          -8.993680616161363,
-          10.208806809495702,
-          8.784536480444437,
-          -10.191555178894989,
-          10.947173003125094,
-          8.692457200099417,
-          -10.25179323256121,
-          11.044240940101455,
-          -8.466537098142233,
-          -8.972360734191453,
-          -12.211482372836624,
-          -10.53252002434859,
-          8.978175303571458,
-          9.528161019337334,
-          -9.102641732118698,
-          10.383527418340961,
-          10.500916854530514,
-          10.339683372531162,
-          -10.234533254954597,
-          10.984207225915904,
-          11.373205386320713,
-          -10.299678109570912,
-          -8.777832479828986,
-          -9.928101090457432,
-          10.813183471161912,
-          -8.878506738592083,
-          -10.499712210491355,
-          -10.078876979814689,
-          -9.97369772176016,
-          -9.33330302046869,
-          9.1466660635048,
-          9.753893640487313,
-          8.707241925496993,
-          9.808949957616113,
-          10.586896570472913,
-          10.464256778174125,
-          9.430790805646955,
-          9.091995961481539,
-          9.94895355430892,
-          10.640951398936489,
-          -10.191525190665466,
-          -10.640292309649574,
-          8.441384658452398,
-          -10.033868411723748,
-          -10.292571642934977,
-          -10.713913247960905,
-          8.281720229255999,
-          10.309344022519584,
-          9.901988495976822,
-          -10.050164170612156,
-          9.36521744681308,
-          9.772621484545015,
-          10.038482877779593,
-          9.973934196799902,
-          9.143261956534515,
-          10.176987554747697,
-          9.556502318310812,
-          -9.875915361417771,
-          -8.2484495235992,
-          -10.123967100533863,
-          -10.169400215930917,
-          -8.792694399161723,
-          -10.427814501874217,
-          9.918338979649663,
-          -9.767362379298428,
-          -10.73567884879533,
-          10.058125386220093,
-          -10.915076121308271,
-          -9.337084645587337,
-          -8.464610659756941,
-          -7.930609028998999,
-          -9.258608105341178,
-          -10.932937368581207,
-          -9.727164032065174,
-          -9.620319418409435,
-          10.9206143128289,
-          -10.462094657735067,
-          8.694253092624248,
-          9.273503532985774,
-          -10.086970355831854,
-          -9.327801462980842,
-          -9.503191008256653,
-          10.184411560396784,
-          9.957128847899178,
-          10.219688039571473,
-          10.110341919090613,
-          9.68530321811818,
-          10.267297405263934,
-          -9.976921118715987,
-          10.05575173175237,
-          -10.455332855572344,
-          -9.804517320268515,
-          11.18943012347038,
-          -10.22631926351087,
-          10.305121694147209,
-          10.25232607531044,
-          9.914901220801086,
-          10.33678810910246,
-          10.93502524896875,
-          11.24206273624307,
-          -10.473296220959266,
-          9.524961706535505,
-          11.07414684914067,
-          -10.47135768360522,
-          11.984633510909593,
-          -10.233351275452113,
-          -9.362856640122999,
-          -10.110802351617878,
-          8.96784999743363,
-          -8.713406982214456,
-          -11.846853697990657,
-          9.458941744734933,
-          -9.351210510313793,
-          10.927248829746025,
-          8.708148656387486,
-          -9.697861276199385,
-          -9.557509920125701,
-          -9.551603414324262,
-          -9.980504208539037,
-          -9.836385180518434,
-          -10.885680969881992,
-          10.047756340460918,
-          10.239965051054835,
-          11.008517980615334,
-          9.397593209514278,
-          -9.853184886440305,
-          -10.525424563113708,
-          9.927474340022089,
-          -10.692671284480497,
-          -10.650750569329357,
-          -10.521073622846151,
-          9.948972502451607,
-          9.776727863411255,
-          10.598203010177334,
-          -10.613942878475411,
-          -8.679885303609058,
-          9.40595068595688,
-          10.80182117887407,
-          -8.353997005523814,
-          9.086210901639694,
-          9.781846738137979,
-          -9.526306130491733,
-          -11.082842891597483,
-          -10.116052886353454,
-          -9.67599966094813,
-          8.410795545949664,
-          -10.71964169067165,
-          -10.222279467790532,
-          -9.513252128276338,
-          10.35873551306206,
-          9.873476374004023,
-          -10.537027387918489,
-          9.742166441262334,
-          -10.08520078519725,
-          -9.192810034862424,
-          9.69697009732408,
-          11.25829897704206,
-          -9.62471292915461,
-          10.5684351500754,
-          -9.739606319191964,
-          10.592390043313902,
-          -10.914673399458415,
-          9.212072161821503,
-          10.346084861186183,
-          -9.850298882990506,
-          9.758247601481413,
-          9.855532933265957,
-          -10.990695790696838,
-          -9.910510697463085,
-          8.394659518731677,
-          -10.715476220759092,
-          10.417693906676519,
-          -9.815372650521537,
-          -10.388549082670439,
-          10.009505573463347,
-          10.935422365845426,
-          9.973386512966739,
-          -10.807261411463804,
-          -9.437422542757965,
-          10.130916562323929,
-          9.901552807162682,
-          10.791169359475964,
-          -10.643050705625935,
-          8.922031742913076,
-          9.10274926698047,
-          -8.74597957743377,
-          -10.995091914859087,
-          9.833863404973252,
-          -10.525638471285811,
-          9.76318686124922
+          2.5743438892877264,
+          1.1431354101415105,
+          -0.3294365478644792,
+          -0.6398422892370372,
+          1.2270285859642023,
+          1.2117389594488766,
+          0.8963649598100218,
+          0.948864669255327,
+          -0.2294460761967445,
+          -1.1512816508513404,
+          1.5144411537298974,
+          -0.06170805182086969,
+          1.4244439441386794,
+          0.5339150289863472,
+          0.4481166914137775,
+          -0.3302314418617207,
+          1.3486375712341556,
+          -0.850192460154193,
+          3.203097329439698,
+          -1.3579217122052336,
+          -0.16922821338549965,
+          0.6050605735306451,
+          0.8979888949381185,
+          -0.09743213564937014,
+          -0.8220284020493911,
+          -0.24597094392376473,
+          1.9170690874767338,
+          -0.6086616330204728,
+          0.5891284602805964,
+          -0.3794646341149417,
+          -1.1441046083327278,
+          -0.5867838638484728,
+          -0.18192500898084263,
+          -0.049479143081919696,
+          0.63859122024227,
+          -0.03932297895618864,
+          0.9565673070067591,
+          1.851058391995163,
+          -0.8822334883660141,
+          -1.3467586002841458,
+          -0.45819859779388383,
+          -0.3028555526936898,
+          -0.05275319730444017,
+          -0.5390304759051383,
+          2.3781934701024454,
+          0.5290166299212167,
+          -0.3296268559514628,
+          1.6483950322702725,
+          -0.6581261080220713,
+          0.43484930246829734,
+          -0.6608459287851378,
+          -0.0731749573316367,
+          -0.05767074696331154,
+          4.115196332265118,
+          -0.5050721559774491,
+          2.201977796420903,
+          1.2114559869004398,
+          -0.022619775050709556,
+          -0.30117359339110217,
+          -1.09769506082987,
+          0.5318546812125151,
+          -0.5648251959412927,
+          -0.0935765980620491,
+          1.7359231041006917,
+          0.9942698355929341,
+          -1.448918158522015,
+          -0.4515431907558971,
+          1.2108169192318852,
+          0.41869104945538693,
+          -0.9026724862498468,
+          -0.9337564749790495,
+          -0.35983798110827303,
+          2.218947079548012,
+          -0.8583145311308644,
+          2.7364622167369577,
+          -0.3108064792323646,
+          1.6115280417988092,
+          -0.14056938776015837,
+          0.8449505874801309,
+          0.5223773734239502,
+          0.40512013539303515,
+          -0.5538827518681582,
+          2.2046355943437654,
+          0.6769487920263999,
+          -0.5679119727196875,
+          -0.20014875987334468,
+          -0.4213560809497736,
+          -0.9660163794550705,
+          1.5356529169838846,
+          -1.0071819703522276,
+          -1.554453472899188,
+          -1.6513785587479592,
+          -1.2626164252777192,
+          -0.3375523611662339,
+          -1.3157718720258553,
+          1.688067830487077,
+          -0.017258673162839022,
+          0.4278298756649703,
+          0.3909769123361898,
+          -0.29521856508563693,
+          -1.5684674932683889,
+          1.466912924315974,
+          -0.17781457846234705,
+          0.6493435214732375,
+          -0.11015103067518028,
+          -0.6256206030205387,
+          1.6932656310016436,
+          2.8680328647153237,
+          1.9422539947003874,
+          -1.4857311178942783,
+          2.237315508477032,
+          -0.068398387060699,
+          -1.1593501876767296,
+          1.768020342609384,
+          -0.9152075009610767,
+          -0.5115882290372551,
+          0.6219834940772277,
+          1.5022872142164392,
+          -0.36701171971142665,
+          1.3380919246301513,
+          -0.8092332232551607,
+          0.1011914035841891,
+          -1.063596415036118,
+          -0.4632668941581022,
+          -0.7619804925647651,
+          2.5825416099251983,
+          2.1428599484403055,
+          0.7091536017852464,
+          2.982519609012586,
+          -0.5187504962693392,
+          -0.4060308965394561,
+          -0.19673503817902893,
+          -1.0057263982158502,
+          0.36863328502218273,
+          0.24579771570979458,
+          0.24182738287679773,
+          -0.18063034037844394,
+          -0.9656845480493985,
+          0.14488992918679822,
+          -0.40112322114769383,
+          -0.2184576248405241,
+          1.4601748307298155,
+          2.1240913093871,
+          -0.1270871105824336,
+          -0.6179237634080186,
+          1.3110845956367787,
+          -0.2895960581524277,
+          -0.5250790976110884,
+          1.170781287967531,
+          -0.5740909743762312,
+          -0.019362433683497438,
+          1.0741757837407597,
+          -1.4028265800686892,
+          2.4875891789710227,
+          2.4177448733399878,
+          1.6447991310969243,
+          0.468961249212561,
+          1.194252186532182,
+          0.9931089319327546,
+          2.1466822315121252,
+          1.7179248046245958,
+          -1.8457769660846943,
+          -2.3648093663378353,
+          1.0188202354563496,
+          0.5318331595881092,
+          -1.1954047278719346,
+          1.9363356411577848,
+          -0.06901099845027203,
+          -1.8965272119690635,
+          1.7149038350139487,
+          1.9023970919211113,
+          2.9686007742870935,
+          0.3541981386287888,
+          -0.2844684678837859,
+          -0.36201797488035314,
+          0.33333032959827114,
+          0.4769875788601392,
+          -1.2760133328251628,
+          0.6565280357070976,
+          1.7364889469050917,
+          -0.5258392118013051,
+          0.34518466803308356,
+          0.2984118333625687,
+          -1.4117284397989462,
+          2.2177117575457705,
+          -0.5778488260527299,
+          0.41395937106665104,
+          2.1397671666911675,
+          2.062331242615079,
+          -0.043944245618990685,
+          2.4150745493005035,
+          -0.37845238610235654,
+          -0.37482849383269445,
+          0.10121811351806109,
+          -0.4011749977401684,
+          -0.25730279491290275,
+          0.979885082510114,
+          -0.6037864673398763,
+          -0.1929008329212627,
+          3.130109302777611,
+          -1.0685394191218416,
+          1.6364752632544666,
+          0.5900545549454963,
+          1.3292002566156842,
+          -0.4925085054910425,
+          0.6617665034034825,
+          -2.0780128389449843,
+          -1.1262529561682202,
+          1.2286793559547582,
+          -1.0488789559222558,
+          -0.02733475959703191,
+          2.0599270343720875,
+          -0.28077554135704075,
+          0.11598936046459396,
+          2.9918531083101705,
+          -0.37090886413920066,
+          -0.46220317305367664,
+          0.5589917943702416,
+          -1.0265313480458467,
+          -0.2855513006633257,
+          1.8164087155634925,
+          -0.5095177877186359,
+          -0.6435599511740355,
+          0.6687522396519426,
+          -0.31423115808270374,
+          -1.0601722589072278,
+          3.3709185092764806,
+          1.4269153355241153,
+          0.6090960081304404,
+          1.5958927363114377,
+          1.5038626052689192,
+          -1.023820299600322,
+          1.6969657340501036,
+          0.8499653506234571,
+          0.6967467893294699,
+          1.134105456079702,
+          2.341141048362129,
+          2.4031831079112145,
+          1.0443186403510825,
+          -0.19170359208369958,
+          -0.6081459693172466,
+          1.5433099772082362,
+          -0.7649696174030827,
+          0.22453239715231588,
+          1.1004070333418956,
+          0.5485242259692802,
+          0.17906214797453013,
+          0.7759220331603659,
+          -0.9730346301404496,
+          0.48880593968535657,
+          1.3339658531822005,
+          -0.524432666416621,
+          -0.9923178270260069,
+          0.6577484977946806,
+          -0.10384952823594906,
+          3.0096547623796357,
+          1.3650871756387226,
+          1.288764371158702,
+          -1.0723636812396542,
+          0.8778696874738636,
+          0.9898139356876513,
+          -0.20318906499956135,
+          3.336125689251777,
+          2.4801853487816627,
+          1.337197807712273,
+          2.4146153229563603,
+          2.4699570393808674,
+          1.7866825349867186,
+          0.4838472231269165,
+          1.1022693021126073,
+          1.739647245743493,
+          1.0130084489360116,
+          0.15936521198671683,
+          1.404547000611151,
+          1.394495860193496,
+          1.9666701423011796,
+          0.9334273953996204,
+          0.12662932796092052,
+          4.3403808433232705,
+          2.3633916105579553,
+          1.8663829022105918,
+          1.1779669011079403,
+          0.21301126849512209,
+          1.5405601046149933,
+          3.3320510871327476,
+          1.1427247109758143,
+          1.3735349974761384,
+          2.625115140851846,
+          2.6270793594023267,
+          2.228365566095343,
+          0.31493243506648905,
+          2.2726660122099847,
+          3.515891800630189,
+          1.0162912634857333,
+          1.4222464172345588,
+          1.1509591667740178,
+          0.7414019570334662,
+          1.9737991897698053,
+          0.8390583412050882,
+          2.9020852240026267,
+          1.0022901083130713,
+          1.2243315169048594,
+          1.181142896151652,
+          0.5187038642267019,
+          1.5040836611304118,
+          2.1450583843836566,
+          0.9326899724776722,
+          0.05250454262677007,
+          0.8280857187003923,
+          1.2734496074357475,
+          0.44965038031306814,
+          0.41380635581153136,
+          0.4022434297833498,
+          2.4416192558948886,
+          2.211024326485205,
+          0.5158153789426791,
+          0.805783634256195,
+          1.0192020146974798,
+          0.06560250591831995,
+          2.117703111458349,
+          1.5167588709142428,
+          1.1546089617530226,
+          0.9517509627978101,
+          2.061902277798543,
+          2.268776408184692,
+          2.687591080078806,
+          1.4117014447825333,
+          1.0801277391427326,
+          0.18706130360082873,
+          0.3170030463107544,
+          2.608347692563568,
+          2.4371967214599355,
+          0.12017124203881235,
+          1.5939522025522943,
+          2.34325091362328,
+          2.797373521134011,
+          3.0289917604267176,
+          1.667494342664794,
+          1.3110605422059096,
+          0.8980352322208935,
+          3.4880073922518693,
+          0.9122027901257738,
+          0.6177985173191862,
+          3.383075338847999,
+          1.4130134951210187,
+          0.9435879076268117,
+          1.492478511267723,
+          0.7772592463696326,
+          1.9419190055948838,
+          0.44381161723305396,
+          1.4262689738481011,
+          1.5209241199274688,
+          0.23679909462533566,
+          0.37648743223368053,
+          1.4336259467170176,
+          1.8096163032858819,
+          2.8623616097666558,
+          0.8494845720671937,
+          1.5426903146079254,
+          2.7143442460768217,
+          1.240818951322062,
+          1.9377451297433597,
+          0.9091517560453366,
+          2.8941061710839167,
+          0.14187897176804687,
+          1.0983391215791893,
+          2.640033958072988,
+          3.7987162944021544,
+          1.5243139727298392,
+          2.4307106296067236,
+          2.3316300941738564,
+          0.551631472029585,
+          1.3630607788565314,
+          1.4179112882540084,
+          1.6251240621621275,
+          3.296052008942092,
+          0.2762066344520867,
+          1.1363406000100398,
+          0.641333028143514,
+          3.0847705231130687,
+          1.0280552756985126,
+          0.14440277058965612,
+          0.4169692262559759,
+          2.2953433691570133,
+          3.14945585827081,
+          2.22503314287922,
+          1.6663210391368115,
+          1.5229660805652494,
+          1.22088477844021,
+          0.4469280965588912,
+          1.301136768941749,
+          2.0994287970189207,
+          2.2187207616559546,
+          0.3663494298871971,
+          0.8828876055154656,
+          1.242629586989352,
+          0.4938654306167185,
+          0.410515494990069,
+          0.23619919870275563,
+          2.977487914887215,
+          0.12541642334688174,
+          1.1489348484900095,
+          0.34863150182806435,
+          1.7333510279264877,
+          2.6925401567538265,
+          0.4022268345234369,
+          1.1738175432954348,
+          0.2185873084914779,
+          1.957633482493979,
+          1.2703772698069675,
+          0.5620993815407218,
+          1.7918374476897985,
+          0.05278973896560557,
+          2.434204116330627,
+          1.0782345823469015,
+          3.281387431148688,
+          0.0691603795747282,
+          0.9270864399183891,
+          3.129978695714084,
+          0.7189018743641661,
+          1.4286479883642578,
+          2.960467449283737,
+          0.6328026020501929,
+          0.37412528337129924,
+          0.35415163227875035,
+          2.3822998577405543,
+          3.065780599320977,
+          0.574181071756044,
+          1.2138405265846,
+          1.0784448205927313,
+          0.6520498273086761,
+          0.16392827608449323,
+          2.6148670458294454,
+          0.3042029848992951,
+          2.50536333599989,
+          0.5680409215298473,
+          2.4535203768704354,
+          0.18127164677863838,
+          1.8687614063913176,
+          0.2840321463534361,
+          1.3438949362632302,
+          1.2967383888176143,
+          1.6359354686257213,
+          0.01941535061356081,
+          0.546372858603712,
+          1.4429344703204503,
+          2.4377495834416263,
+          2.164768937326588,
+          0.5435644316930004,
+          1.4212388423067468,
+          2.165856969659901,
+          1.760242868963521,
+          0.7573052122406508,
+          0.6168231483782136,
+          1.7841274395770939,
+          1.5284049568628064,
+          0.10239546724527748,
+          1.2918607676849687,
+          3.0236046925809257,
+          1.5949270443458399,
+          1.3762149672590125,
+          1.062246130482685,
+          1.3530276633237577,
+          1.2034975761923894,
+          2.0167697866432697,
+          0.7820132228398882,
+          0.6899375931721607,
+          0.08035388233833862,
+          2.169621239572723,
+          1.5081275212296343,
+          0.9634810440237155,
+          2.8685539379220897,
+          0.5825419596217309,
+          1.5240852069818274,
+          0.9340959689093764,
+          0.78973638367366,
+          1.9174040299780035,
+          0.8780428377318834,
+          0.3663241900416463,
+          1.5069987038380181,
+          0.8929602242202236,
+          0.21635226100033844,
+          0.9489211703570216,
+          0.45274146996745745,
+          1.7232767858607754,
+          1.8973334207135228,
+          1.556859290426178,
+          0.3671478372616028,
+          2.4869177571581584,
+          2.104675113991061,
+          1.4125702199958807,
+          0.3501031788231367,
+          0.44270342002992735,
+          2.5111115838668043,
+          0.258153610568689,
+          1.4085399077478298,
+          1.2103419428618833,
+          1.8871436352315083,
+          1.8500028204193584,
+          2.7897205062541452,
+          3.816774932074517,
+          2.8745422384770922,
+          0.5182573201389942,
+          1.9244965940839023,
+          0.8108948224782957,
+          2.3704375980040404,
+          0.38250623501378256,
+          2.019614557631159,
+          1.0512937915235347,
+          0.7010492216290038,
+          2.012896124156234,
+          1.7038326338809444,
+          1.257966356820496,
+          1.227084267529183,
+          0.5939411822177236,
+          1.3900316841615408,
+          0.5974902072157109,
+          1.8192677035840146,
+          3.3348621298846157,
+          0.42311095194713666,
+          1.7254525175451962,
+          0.22615763793124122,
+          1.524632907604416,
+          1.8988283670534911,
+          0.9812083880058002,
+          1.240093490013415,
+          1.1482352375229437,
+          0.7055805199210977,
+          0.3011944613461246,
+          1.084300407450197,
+          0.5281579179127651,
+          3.042116324372371,
+          1.9129792026210923,
+          2.002537478547592,
+          0.39787450362908505,
+          0.5028270500620475,
+          0.3328177840332843,
+          0.8133409352650394,
+          0.5926788374764365,
+          3.803781909340979,
+          1.2230339468791604,
+          0.9871572569175766,
+          2.2172040592252307,
+          1.011353255938253,
+          1.9487313862934004,
+          1.908668538642473,
+          0.9800406767685532,
+          1.0692674274689589,
+          1.0712839392836475,
+          0.2645313244939139,
+          0.08428734828509954,
+          1.4639767384615943,
+          0.21496833830357176,
+          3.4671890377520738,
+          0.5370967309142204,
+          0.23379836751885186,
+          3.5568805273325723,
+          1.301142792263413,
+          0.5460315242983521,
+          0.14912813943929515,
+          1.9005003600049237,
+          0.09237034722468485,
+          1.0407937829714924,
+          1.3582129983759919,
+          0.028232088881630202,
+          0.608842776633516,
+          2.1292336436163426,
+          0.4216734386705019,
+          1.1300372677443578,
+          0.14272792998973316,
+          0.8581710093930683,
+          2.2105411372159236,
+          0.7591275597330652,
+          4.038935423498882,
+          2.2636403697055325,
+          0.9294176866272409,
+          3.1762807842488106,
+          1.7624681725938112,
+          0.2566954588556952,
+          0.8136986911947587,
+          3.433651955849628,
+          0.48066225755699465,
+          0.11425651227264733,
+          0.5538786698827836,
+          1.6114346721628134,
+          1.1528943930556055,
+          3.9345635943861903,
+          0.9573495077794433,
+          0.5568498052296645,
+          0.15532947187105484,
+          1.8220764620934524,
+          0.08599093840979333,
+          0.7090094213672604,
+          0.021466279115728515,
+          1.6256554203340428,
+          0.7097257795081413,
+          1.484177928451031,
+          2.076857794806229,
+          0.5403551246711138,
+          2.3383800865565902,
+          2.6052027137773477,
+          2.0968952823737177,
+          2.0773235208750194,
+          1.17066757175528,
+          1.955771941120945,
+          2.6490454612397007,
+          0.561605326118706,
+          0.7909899441412135,
+          2.8240682789337086,
+          0.5945983738108114,
+          0.8929085591283844,
+          1.8525252666396623,
+          1.3354689902173553,
+          1.386463819109001,
+          0.6559045064880451,
+          2.6656049505253137,
+          0.8485201037580541,
+          0.5150516020360221,
+          0.07810173940276066,
+          0.9869313837201612,
+          2.1107855438874203,
+          0.7456789049565532,
+          1.2278917132443394,
+          0.00912811174985606,
+          3.243959512595764,
+          0.790368389042654,
+          0.7562957591834162,
+          1.5350780073546615,
+          1.2337376860235958,
+          3.3679909498949105,
+          2.6376020559139635,
+          0.9268526821495264,
+          1.977279839742649,
+          2.3607830115145543,
+          0.8650005159731046,
+          0.6863105934361695,
+          2.485985697509868,
+          1.475787014778866,
+          2.2598994040169664,
+          2.7366790475614495,
+          0.4281810059847473,
+          1.982735816709329,
+          1.4192186811364027,
+          2.35862049941936,
+          2.6528363378799558,
+          0.09763581638721908,
+          1.3486936502513138,
+          1.7793948487762674,
+          0.1886944633670048,
+          0.12729461081951,
+          1.27723925483655,
+          1.779184144809045,
+          1.0665690317648608,
+          2.6614918908130503,
+          1.1759596958508312,
+          0.1388285477566953,
+          2.6450463701984033,
+          0.6610687326062039,
+          0.19356905056355567,
+          1.873144714474966,
+          1.2082353714502028,
+          1.6707860984412193,
+          1.6618720957417685,
+          0.2119965322161994,
+          0.34020546401883756,
+          2.6050851761475395
          ],
          "z": [
-          10.149475762179543,
-          -7.625774058320822,
-          -9.438545795155145,
-          -9.139863312372968,
-          -10.56073956539626,
-          -10.790377874452718,
-          -10.734038641184487,
-          -10.178892427777987,
-          11.845346325315965,
-          -7.891884870444547,
-          -10.999018234088446,
-          10.179800359841078,
-          10.219023514937636,
-          8.83587919493598,
-          10.419474894375622,
-          11.417373981211433,
-          12.15451938507514,
-          10.084985049364962,
-          -7.6938299628075795,
-          10.326043294429624,
-          10.27905462290701,
-          9.63475834752103,
-          -9.655180864979396,
-          9.48275347181023,
-          8.009883096324568,
-          -10.910523297465264,
-          -7.365308774063994,
-          9.808356140965738,
-          10.689202254181367,
-          9.47943994099404,
-          -10.582932085779753,
-          -10.472084558823688,
-          -13.754424126547413,
-          8.76384638086913,
-          9.438216468234064,
-          -10.713079634905812,
-          -8.506731186064615,
-          -10.046933814845103,
-          9.486115964404993,
-          -9.925430548414708,
-          -9.292971932377101,
-          10.536324078320659,
-          10.585272792159914,
-          -9.527813437195908,
-          10.781202062634758,
-          9.67081269480447,
-          9.175687538775426,
-          10.641141810539398,
-          11.952939958039366,
-          -9.516321676668687,
-          9.98909591672577,
-          -9.134254013714532,
-          -10.437940855721289,
-          -9.357344358209746,
-          -11.071357069951427,
-          -9.68286473572451,
-          9.699726314853564,
-          8.909786759245659,
-          9.676473051385372,
-          11.047550493142367,
-          9.051104648425188,
-          -9.340956111465907,
-          -7.407127487151618,
-          -8.879428308824771,
-          10.936084673441192,
-          10.326265892598647,
-          10.566524689773711,
-          10.068074900943522,
-          11.15334983434552,
-          9.79448199452296,
-          10.265849808125683,
-          8.405880259645889,
-          10.575107649824396,
-          11.130083563183033,
-          9.443873319274816,
-          -9.61869552167453,
-          -9.64881442262105,
-          10.169449699505101,
-          -8.379557576849697,
-          -10.465159253669839,
-          -10.069672676658698,
-          -10.283033793799738,
-          10.63624949652117,
-          -9.950197047456816,
-          10.656310295878633,
-          10.772025622820573,
-          10.962360934061804,
-          -10.017394783719569,
-          9.530639679390884,
-          9.445272940588218,
-          -8.901095720704204,
-          -11.435911832369765,
-          -10.381987311903465,
-          9.884872703754237,
-          10.069361334352225,
-          -9.278637488828853,
-          9.660795800019411,
-          -9.78841577422147,
-          -10.0545457370059,
-          9.640577380225949,
-          9.417540405100805,
-          10.485076698873936,
-          -11.288690045000445,
-          -9.514397052744235,
-          9.548879607599485,
-          -8.991848641870506,
-          -10.02963366195571,
-          -10.284030873586394,
-          8.55781777891497,
-          9.115398540921845,
-          -10.208345963157178,
-          -10.52500467253066,
-          10.887474637503972,
-          -9.541214596106736,
-          9.320518417795705,
-          -9.567846362947574,
-          -10.06553021014846,
-          -8.219797279276111,
-          -11.577899210708974,
-          -9.31603301693281,
-          -8.184772789778057,
-          -9.60016825906106,
-          9.921753105688857,
-          8.985516246561351,
-          -8.784262290503577,
-          10.075073381742888,
-          -11.170214727363708,
-          -12.442233005189097,
-          -10.30832858287312,
-          -10.309024072436701,
-          9.063782562852486,
-          10.448220410466904,
-          -8.287443862806366,
-          10.239838889520861,
-          -10.179667407916448,
-          8.750693950647994,
-          10.011238083907818,
-          -10.93910098243934,
-          10.502045184107272,
-          10.273814948913369,
-          -12.098997716896678,
-          8.447476761032268,
-          11.307169772970406,
-          9.157519794916897,
-          9.515327536174821,
-          9.808627080346895,
-          -9.779753560473933,
-          10.169285573074758,
-          9.157160922239596,
-          -9.484037125992703,
-          10.360014700446396,
-          -8.786348767765263,
-          -12.391038661821781,
-          12.189655280648285,
-          -9.16324408519327,
-          9.315837453900635,
-          9.534830539357417,
-          -8.310797434848384,
-          11.103041581419413,
-          -10.76713513761191,
-          8.883313014942733,
-          -10.042760621658672,
-          10.06156242893008,
-          10.849801810909327,
-          -9.632513905003789,
-          8.376654858622821,
-          10.459321609881833,
-          -8.610719423988959,
-          -9.12775178632965,
-          -9.980382566891388,
-          -10.627388412441551,
-          -8.568012543571088,
-          -10.162332955722563,
-          10.369600717442017,
-          8.773509337283292,
-          -12.191186992247204,
-          9.391025033744153,
-          -10.256742742295554,
-          11.479027063181888,
-          10.449193991830038,
-          11.132499111268986,
-          -9.85973462880913,
-          10.80494651444774,
-          10.687743006384057,
-          -11.024443881873562,
-          9.467882400177293,
-          -11.291432853535664,
-          10.826669313343396,
-          -11.879370557532543,
-          -10.963857570212392,
-          10.353001345223971,
-          9.871353564543927,
-          -11.303510773087286,
-          9.413394957599516,
-          -10.83182865463167,
-          10.190663861760564,
-          9.641913891870647,
-          10.103959112988242,
-          10.606605048967388,
-          9.650869195859133,
-          9.123640759141018,
-          8.480705206192003,
-          -11.184095820908828,
-          -9.836994878889525,
-          -9.06562106374851,
-          -8.648369234624678,
-          8.708474345874247,
-          10.501265358450265,
-          10.45424067070228,
-          10.255880514333855,
-          -8.624673662949851,
-          -10.77585091279207,
-          8.68995532871114,
-          -7.7414206198296425,
-          -12.789927416194782,
-          -8.262571418012548,
-          10.129091968488234,
-          -11.207152546172102,
-          -10.955452033743342,
-          -7.559279726485014,
-          9.10902388699444,
-          -12.387033965893526,
-          -9.510850526877581,
-          -7.397423489230208,
-          -10.105939773732343,
-          9.87542663874191,
-          10.476933102239245,
-          11.306507253395012,
-          -10.351480829795236,
-          9.731472631360019,
-          -9.409643598732831,
-          9.643591078557678,
-          11.20506669311404,
-          -10.602583599143724,
-          -11.216964714494033,
-          -7.635098453181827,
-          -9.27336103172918,
-          8.349580484315014,
-          10.712257195477273,
-          10.974141735709493,
-          9.242242592586704,
-          9.659379232412324,
-          9.381196478543846,
-          10.120875700603708,
-          10.393634840369598,
-          -10.894189626129084,
-          -9.268142836813913,
-          10.408900301392345,
-          -9.077732416040998,
-          -10.748158957911938,
-          -9.27210975147709,
-          9.029538959726889,
-          -11.648619970762747,
-          12.200509784261055,
-          10.348049735520016,
-          8.978952702786202,
-          -9.314631766215879,
-          8.833074171151788,
-          -10.55476501153795,
-          -8.97197465701041,
-          10.093230806484023,
-          -8.378600106948914,
-          -9.71261108780674,
-          -9.41910942501168,
-          -10.976277985428593,
-          9.454314132002125,
-          9.871103387246341,
-          9.65364421373217,
-          10.655267244328218,
-          -9.42222903258188,
-          -11.778867597374882,
-          -11.702796078014886,
-          -8.814197310272414,
-          -9.47355176333248,
-          10.180446474924565,
-          8.812782391652853,
-          10.016990422383438,
-          -9.07149804981515,
-          -9.382491777634735,
-          -9.46854275868303,
-          9.217433517005441,
-          8.536501577464755,
-          9.871396835276746,
-          8.746658333420017,
-          -10.15366193242371,
-          10.725070838237423,
-          9.195501935327645,
-          -10.5971611174536,
-          -12.662241933271554,
-          -9.486505657556059,
-          -10.331332395554748,
-          9.069952915398268,
-          8.33447004078491,
-          10.159184374901136,
-          -9.310487154541683,
-          -8.710014130278354,
-          10.606024587948193,
-          8.183903615991568,
-          -11.246700503953523,
-          11.024007159115104,
-          10.956946285997807,
-          -10.211565004697842,
-          -9.80399133739304,
-          10.025178934887597,
-          10.439262796733287,
-          -11.307823662285237,
-          9.960474763654284,
-          8.973909759943274,
-          -10.182532086907244,
-          8.790685590086158,
-          -11.307951093323307,
-          -9.611204393519554,
-          9.81250863140027,
-          9.77913015544727,
-          10.33930257676728,
-          -9.743678134075381,
-          11.480052270921954,
-          9.475919020583076,
-          -10.084537973320492,
-          9.826418090936324,
-          -11.838233830103707,
-          -10.376384181783617,
-          11.208648996702555,
-          9.988178707444602,
-          10.944270640659433,
-          -11.294085186788669,
-          9.767430437101577,
-          9.26887025723384,
-          -8.694240647289664,
-          -9.787108105666992,
-          -10.049112077387337,
-          11.148271332826745,
-          9.332844327369607
+          2.0262184072877405,
+          3.585967262505812,
+          -4.346523429761922,
+          1.9204244999993634,
+          -4.279891128739035,
+          -0.49990790840061194,
+          -5.010262773378479,
+          -0.5753993729234459,
+          2.1668395166626224,
+          -4.179672657445907,
+          2.0968846055196995,
+          3.7016851478010144,
+          0.06995630116073404,
+          0.9407625670370825,
+          -2.40390373229004,
+          -3.6289684025095346,
+          4.599198875588049,
+          4.295617272273444,
+          -4.1218704037482405,
+          -1.4014466070510587,
+          3.1067793315050993,
+          3.304554638118087,
+          2.5182977514757283,
+          -3.3349641324434796,
+          4.411682817085949,
+          -4.884674121713473,
+          0.6782926149972255,
+          -4.283281780834036,
+          4.632566986475795,
+          -2.222065151951275,
+          -1.3235421599142057,
+          0.9766942375825263,
+          -1.1306389140589848,
+          -1.1301646311504707,
+          5.01791741631155,
+          -4.781532545662103,
+          3.264718847028372,
+          -0.8215110076555723,
+          1.6648395900274453,
+          0.3168376434509277,
+          4.429660430535081,
+          1.64964714319209,
+          -3.936550811398998,
+          3.8296602651731613,
+          4.04035681248437,
+          -1.0817483293540548,
+          3.5297476089107187,
+          2.3031630432576042,
+          0.17720422180413475,
+          -3.4737876915013115,
+          1.970292750183523,
+          4.988138487027354,
+          -4.37787688010445,
+          -1.5340324677568056,
+          -0.5340002411752005,
+          -2.1574419121498134,
+          -3.170859207131774,
+          3.9320890495005143,
+          4.325725483924576,
+          2.610801654553523,
+          3.330522642484188,
+          -0.05953032291100335,
+          1.5826157797634446,
+          2.97668432337099,
+          0.4900824825914114,
+          -4.6356372289101175,
+          0.3244321407780575,
+          0.12222976367136962,
+          3.829009782127412,
+          -2.1986937137507416,
+          3.8775642794261325,
+          2.340040002506279,
+          -3.0392182219984014,
+          -3.425563855164853,
+          0.41960965084618085,
+          -4.3249941525692055,
+          4.060059567822489,
+          -1.1647285670739995,
+          -2.635059279118018,
+          -1.2679468383457264,
+          0.2493464716037641,
+          -1.0957652012085832,
+          -2.650920235087579,
+          -2.31884406116103,
+          4.189689133951311,
+          4.177176506526185,
+          -3.1661744522573896,
+          1.1000095964459122,
+          4.445778631248079,
+          0.10202172904567242,
+          1.4798661058838105,
+          -1.217151286030325,
+          -3.6576232568525864,
+          2.9327886024302794,
+          0.07228316038749405,
+          -1.095445687826623,
+          0.23692387937911707,
+          -3.7272171452792566,
+          -2.029609126913766,
+          -1.527805125004626,
+          2.7051281723695606,
+          -2.0136679961394472,
+          1.3283976701358808,
+          -1.1595334210022474,
+          0.16296544453001616,
+          0.8776893806787776,
+          1.0641931139205951,
+          0.6911522036262685,
+          3.339362113271041,
+          4.949795295634664,
+          2.368812728203941,
+          -4.065837692421543,
+          -1.773094058845421,
+          -0.6417771942846198,
+          -3.865030825507415,
+          2.534514140526909,
+          -3.666652481605735,
+          -0.9256614430010925,
+          -5.0546323896997105,
+          -1.0050239019507572,
+          -0.22525463821945557,
+          4.08201919011946,
+          -4.702723897800214,
+          -0.8916664990210013,
+          -0.6731712310210272,
+          -3.105143316385724,
+          -0.45975447022731153,
+          -2.5694636477294748,
+          -4.1297265628128415,
+          -4.431157265031834,
+          -4.272585351334486,
+          1.3087803156850972,
+          -1.0724089461153516,
+          2.6937632341092126,
+          4.611565851668826,
+          -0.358753645083036,
+          0.622831953099471,
+          4.483903235365973,
+          -3.456080236054328,
+          -4.062678754599842,
+          0.936675184579193,
+          2.67959629673485,
+          -2.498104170632717,
+          -4.471254572931715,
+          -2.8330258091902034,
+          -3.5615205860301122,
+          2.711560269951261,
+          -1.839589774844189,
+          -1.8332907406025067,
+          -1.141024613110516,
+          0.5564854613272123,
+          -2.5153758968610322,
+          1.1715020752653658,
+          2.1415314214567385,
+          2.982015105096461,
+          4.765451232655221,
+          -4.65398800259365,
+          -0.5065328750583005,
+          2.4719088843955825,
+          -3.307476046331189,
+          -2.668364294145705,
+          -1.1257067941508958,
+          -0.44091280736718197,
+          -5.006112420683366,
+          -4.8013398582775775,
+          3.246082642176046,
+          1.057830406250682,
+          4.4608324277206775,
+          3.6695809526799783,
+          -0.06556380525284133,
+          3.1178439029107414,
+          -2.4199660293869734,
+          -0.2059859840515399,
+          4.28508177807037,
+          2.9499030306184606,
+          -3.4831724555871175,
+          -3.812165549443643,
+          4.4589525895060875,
+          -0.38478622500136517,
+          -2.757220154418287,
+          4.253066060450229,
+          2.3963961932433167,
+          3.107916250743396,
+          -2.7490054054779653,
+          3.397399756538511,
+          4.804342854423392,
+          -2.891467393462176,
+          0.7747083851488155,
+          -2.1601177985600595,
+          1.7963290247365888,
+          4.214526688430259,
+          4.532187351167283,
+          3.998290156910355,
+          -3.802376529033972,
+          -0.48368722544404896,
+          2.4071834738427773,
+          -0.7536377932837306,
+          -2.601051096947271,
+          1.8160010423028128,
+          -0.17977573796781066,
+          4.308020853053876,
+          -3.2242966459792664,
+          -3.69017148094195,
+          -4.3734353840529545,
+          -0.4546934396583522,
+          -4.415446810832664,
+          -3.531051591527598,
+          1.442890096894807,
+          0.3683814934671279,
+          4.095341357219035,
+          -3.355057489747903,
+          -4.107539423962189,
+          -1.9735262791206347,
+          5.059764191777643,
+          0.43753514578058006,
+          1.355105348525436,
+          -4.159240954226038,
+          0.6406122491353523,
+          1.6031854594945294,
+          -1.2116010570051179,
+          3.736724804391712,
+          -2.7460050096175173,
+          -1.2013742400277487,
+          -1.0807418127343835,
+          1.9819926853254133,
+          3.860405318742907,
+          4.485700707444809,
+          -4.201501293583874,
+          -0.0524763923803393,
+          -1.6618191399933355,
+          -2.8653770585800165,
+          -0.4562788882729354,
+          2.213198588618874,
+          -5.049517493066747,
+          1.8818082144016088,
+          -1.8982359587191184,
+          1.1779122275859377,
+          -1.3343287857812474,
+          3.9613005455298476,
+          3.571900848054649,
+          2.4895689557113503,
+          -4.513773577919679,
+          1.6657162168818607,
+          3.6559344254530535,
+          -3.757820642906155,
+          0.7890449714820615,
+          -1.2690043700711633,
+          0.8734792501010906,
+          -3.9467622741384663,
+          1.4708422779521229,
+          0.23528603532112236,
+          0.9521223931424938,
+          2.726469985311171,
+          3.3737697679537524,
+          -3.481058104537464,
+          0.8601708423624199,
+          0.2773937133341722,
+          -3.8337963895242515,
+          3.4771392387383964,
+          2.2927912771706414,
+          2.061185896668647,
+          1.346750168117694,
+          2.431194792133125,
+          -4.642064169901165,
+          -3.8729546712494045,
+          2.275082018056648,
+          4.405401272059051,
+          -2.6982061600911558,
+          1.2528656052111806,
+          1.3362778534543507,
+          -2.6251113546272307,
+          -2.7644269949421694,
+          1.9742265264208756,
+          4.9547794861034555,
+          -0.43938705732826566,
+          3.092967955650047,
+          -0.18347966010389793,
+          -3.9229481799153687,
+          2.910610592563298,
+          1.4212337879321213,
+          1.4278812657778754,
+          1.0688142799573548,
+          -2.6622021596557786,
+          -1.5023436819464369,
+          2.947287538296526,
+          -0.5797031457823927,
+          1.8608658003277236,
+          2.361853212113987,
+          -0.28320604954062745,
+          4.339673338054699,
+          -4.789262714310644,
+          0.08646745838519099,
+          2.8615940378690805,
+          -1.4692670231565517,
+          -2.23391712856879,
+          -0.11778544571637362,
+          2.061735826150164,
+          -4.858078337649181,
+          3.0182610695350798,
+          -1.1691336778014252,
+          0.5065296036726608,
+          4.696905744219214,
+          0.2278909653925112,
+          0.489775987569387,
+          -3.148860489713826,
+          -1.6195871094072065,
+          4.627818038290898,
+          -3.998228973988433,
+          -4.341480783078835,
+          -0.03450967358868873,
+          2.8045439200000963,
+          3.091321528515464,
+          -3.6734831101999683,
+          4.734287626158307,
+          -3.841298771884054,
+          0.7679541350036141,
+          3.7456691682418795,
+          -1.710620549075248,
+          1.7463655416726604,
+          4.225857702383212,
+          -4.634995336576597,
+          -2.8788948580555935,
+          -1.7504710245183017,
+          -4.848632014761292,
+          1.9642569756520896,
+          -0.3857937761807557,
+          -2.573483119792437,
+          -0.20477188577842664,
+          5.027363698760387,
+          -3.1233238204777596,
+          -1.840763885606207,
+          -4.0443701484030115,
+          -2.8690359305218243,
+          -2.996274718302923,
+          2.614112640166991,
+          -1.0079141578687638,
+          4.3764786176229284,
+          1.726712416896281,
+          1.9444026689825211,
+          -1.011582075614534,
+          -2.4840099841208514,
+          -0.8833512119245697,
+          -4.065161679654663,
+          -0.03663240181675942,
+          1.1127340056255965,
+          -2.6619801945950727,
+          2.6582416259065687,
+          -1.2296378060224904,
+          1.9883452686313374,
+          3.1647950626869354,
+          1.2970406494245115,
+          -3.0159452043385073,
+          4.920648276006575,
+          -3.993532909660783,
+          2.558429515562554,
+          -2.0127391076837386,
+          4.348672464687081,
+          -3.4335641843321953,
+          -3.055395074716581,
+          -3.2135000029524043,
+          0.6110069073597924,
+          3.2859847023743027,
+          -2.9548814879190024,
+          0.07847810444845127,
+          0.48972017597358963,
+          -4.884644713247768,
+          -2.7280593670244033,
+          4.555488364166316,
+          5.118503848647992,
+          0.08313023477464565,
+          4.577247431091268,
+          -3.652679304097474,
+          -2.8936475415449188,
+          1.580086272150452,
+          -1.0579790176419381,
+          4.41224549656114,
+          -0.21696261340244583,
+          4.90838840859793,
+          1.0429645726071604,
+          0.11797949351613024,
+          -3.8909851325209712,
+          -0.39696721692093284,
+          0.7289751661431261,
+          -0.5849164943871621,
+          3.3252892174663424,
+          2.925585722292518,
+          3.1350311996481013,
+          -4.885860190538474,
+          5.068912331781811,
+          -2.5802212908589586,
+          0.2986097432834063,
+          1.124837221338936,
+          -4.178827249873614,
+          -3.796726038143071,
+          0.12005498367821499,
+          -1.8226977157954907,
+          -0.838875222384047,
+          -1.5204211613212562,
+          -1.997890662304238,
+          -4.762148114803293,
+          2.0677833843500473,
+          0.5728024784357499,
+          2.5352683458108762,
+          -3.4086579787594573,
+          2.844271162958634,
+          -3.6041279950010097,
+          0.426224189001843,
+          -0.711571943137332,
+          -0.8736083469752369,
+          -0.20379523394376786,
+          -3.737341627227603,
+          -4.547654510659134,
+          -0.956959526454555,
+          -2.2711089487048226,
+          -2.5671309143487653,
+          1.2063629511368061,
+          0.36194611947446553,
+          -4.6188828715074175,
+          -3.356745324771288,
+          -1.9619774908644576,
+          1.0197702965399067,
+          3.2437646767565154,
+          -5.001012472517424,
+          4.49069565619,
+          -2.124488344958744,
+          1.0221216812781933,
+          4.425022264925944,
+          0.5757129011607898,
+          -1.774889491753826,
+          4.21810203998992,
+          0.3688907254729328,
+          0.952954417349348,
+          2.895455905867389,
+          -4.914680680421279,
+          -0.16537748673658204,
+          0.8444388607812687,
+          -0.9042179795066971,
+          -1.6957535491497255,
+          0.9961171181537427,
+          4.04955590449507,
+          -4.155636583483041,
+          -1.3845490452101252,
+          1.7800878342983797,
+          -0.6008471779507687,
+          2.177972078080378,
+          0.4389860603651625,
+          -3.7347859881468355,
+          3.0907577163430906,
+          -4.083945880039764,
+          -1.7534300488007148,
+          -2.4583083771881213,
+          3.676829210974561,
+          2.1215459188524397,
+          3.74940888856315,
+          -0.9720962974595038,
+          2.6857655417479123,
+          4.278698268263628,
+          3.8234261168682737,
+          -4.81449895769905,
+          1.7445405462557622,
+          -3.4426427997017877,
+          4.0006431199111026,
+          4.3403599937668735,
+          -1.7705471762972071,
+          2.323377817996904,
+          -1.1068277116905012,
+          0.8936402300684563,
+          -1.6033598906206308,
+          -4.821746922422417,
+          -0.21538391842046423,
+          -4.426992795638979,
+          1.1480138090945227,
+          1.0814874499019131,
+          -1.5815394482082494,
+          4.450832672164428,
+          -3.7785454517826387,
+          3.3364036590405854,
+          -3.2267854855794686,
+          0.8325766259842773,
+          -3.3466259825061977,
+          3.7010058798582373,
+          0.7062252891574659,
+          5.063817085710032,
+          2.0204421106191575,
+          2.56301957717789,
+          4.719288522685813,
+          1.8708146137171155,
+          0.6852417478140458,
+          3.952466388659725,
+          3.478621533194146,
+          -3.952461513879517,
+          3.909412483028796,
+          -3.376931374274765,
+          3.5604115066571014,
+          -4.89434553946625,
+          -1.471276267878062,
+          -1.7143480665083106,
+          -0.06854188065831401,
+          1.469838720819542,
+          2.021789495021191,
+          1.1448326497802697,
+          4.03898952991739,
+          -0.9101137629670957,
+          1.2382998357784203,
+          -1.8053236209980352,
+          -2.856886293724388,
+          -1.3060189454468878,
+          2.728896730961166,
+          -1.7361980811318527,
+          5.073566218390099,
+          3.9927520214470364,
+          0.7347968203992457,
+          -4.561886904630141,
+          3.5897876401104254,
+          -3.850155561500998,
+          1.8766443949121099,
+          2.457873778008449,
+          1.228934781519011,
+          0.4533250452638997,
+          -4.763273059475198,
+          4.911110608706772,
+          -2.9391689137181083,
+          1.2493732609153607,
+          -0.43964769991690567,
+          0.17233387444025272,
+          -2.2617311655280674,
+          -1.1207532443996189,
+          3.118531233073498,
+          3.225372914419885,
+          -3.116921299395786,
+          0.5170117239959593,
+          2.850309999124293,
+          -3.528672139525326,
+          1.6841115558657664,
+          -1.571126366532504,
+          -0.6863626063488457,
+          4.087755530432049,
+          3.7567761624175953,
+          -4.821942333845063,
+          2.5874183699871134,
+          -3.053748386224336,
+          3.151630518717929,
+          0.007241408392895998,
+          0.20911030580092138,
+          3.4210500499048573,
+          2.4430704437910906,
+          -0.004100221823966521,
+          -2.759567545203948,
+          -3.4652220226013464,
+          -5.076629197861181,
+          -4.615812921089707,
+          1.0854064670516461,
+          -4.8560127530026875,
+          5.130548694001669,
+          -1.4946552406273126,
+          5.12218077987898,
+          5.031171419959304,
+          -0.7559693766212394,
+          -1.2592331183557386,
+          1.792072942780507,
+          4.923521413578695,
+          2.3619888553582866,
+          -3.073691269396434,
+          3.3090028229327144,
+          1.7995804098484394,
+          -3.119420770962434,
+          0.6248947091043444,
+          -0.9077524196197189,
+          4.801266471486444,
+          0.7687809781758563,
+          -1.8873929480984013,
+          3.0063985030844274,
+          -2.8778560512668787,
+          0.5212867139259973,
+          3.999877644038677,
+          0.9827895541162786,
+          -2.926935731394973,
+          1.512347986707617,
+          -1.7095923986051305,
+          0.521264133141881,
+          1.7285440286923066,
+          2.500372833819939,
+          -4.634977908924358,
+          2.822559588297663,
+          -1.9670485735217365,
+          1.8183036882967496,
+          -4.6718066484092065,
+          2.042505532475226,
+          3.4013430155282363,
+          -4.363765782135443,
+          2.4155205730870914,
+          0.25006180222896024,
+          -0.7440159858821307,
+          -3.173105893383437,
+          -1.2267156941580786,
+          -3.2180258864071325,
+          1.2904705104660668,
+          -3.533667923630367,
+          0.2534245726413724,
+          0.053160144729118564,
+          4.632455370854001,
+          2.588308460737437,
+          3.1067713981615794,
+          2.242940319198927,
+          3.3613875338839714,
+          3.5346948789693213,
+          -3.216252090305339,
+          -2.1858864714314423,
+          4.812724680043483,
+          -1.73145040653259,
+          0.8649042329189776,
+          0.023185651413974107,
+          4.277777600240825,
+          4.563052310342509,
+          2.6534709482036893,
+          0.05771131002960583,
+          4.861347011556883,
+          -3.0826151211212904,
+          3.1795636850859657,
+          0.9810969131945759,
+          0.9763299315009695,
+          0.5240563307058643,
+          -4.191232766452532,
+          4.582612014099351,
+          -0.8156021198161651,
+          -0.9188141380834933,
+          -0.8287742713475383,
+          -3.375242465902341,
+          1.2929419915259404,
+          -4.034348253604042,
+          -0.09250767265791993,
+          -3.7896800392387395,
+          2.5920666326202504,
+          2.002640572685011,
+          0.6742553861717901,
+          2.6160707941464656,
+          -2.049222595825397,
+          -1.1420838376201576,
+          2.0039380287045097,
+          4.119456181139136,
+          2.3423168373318797,
+          3.1123091551632465,
+          2.8829699477227138,
+          3.0401508926364,
+          -0.6080467070767712,
+          -1.2158478018595265,
+          0.03374653129662253,
+          3.4943377333185284,
+          -1.8517629515798935,
+          0.12929290857087317,
+          4.99143294995221,
+          -4.904473703992185,
+          1.5364849915631806,
+          3.520905209294969,
+          3.3519915057547207,
+          1.8427499436068828,
+          1.02760422843446,
+          -4.0415159878654645,
+          2.19966464422317,
+          3.522766534936337,
+          -1.2795010124423354,
+          -0.8758703205400833,
+          1.3051822208942534,
+          2.5171007442026916,
+          2.1005916062708163,
+          -0.13515323117200762
          ]
         },
         {
@@ -14758,1345 +17355,2677 @@
          "scene": "scene",
          "showlegend": true,
          "text": [
-          "Complementary_64_2",
-          "example_4",
-          "redundancy_32_2",
-          "mutual_error_2_2",
-          "Complementary_79_2",
-          "Complementary_8_2",
-          "Complementary_7_2",
-          "redundancy_54_2",
-          "Complementary_29_2",
-          "example_34",
-          "example_35",
-          "mutual_error_25_2",
-          "redundancy_6_2",
-          "example_47",
-          "Complementary_5_2",
-          "example_53",
-          "mutual_error_11_2",
-          "redundancy_20_2",
-          "redundancy_31_2",
-          "example_71",
-          "example_80",
-          "Complementary_85_2",
-          "redundancy_15_2",
-          "example_91",
-          "redundancy_37_2",
-          "redundancy_50_2",
-          "example_99",
-          "example_102",
-          "redundancy_14_2",
-          "Complementary_34_2",
-          "example_106",
-          "Complementary_26_2",
-          "example_119",
-          "example_121",
-          "example_122",
-          "example_123",
-          "Complementary_21_2",
-          "Complementary_86_2",
-          "example_130",
-          "example_134",
-          "example_138",
-          "example_143",
-          "Complementary_39_2",
-          "Complementary_95_2",
-          "example_150",
-          "mutual_error_7_2",
-          "Complementary_27_2",
-          "redundancy_59_2",
-          "redundancy_9_2",
-          "Complementary_93_2",
-          "example_166",
-          "example_170",
-          "example_183",
-          "redundancy_55_2",
-          "example_187",
-          "redundancy_1_2",
-          "example_191",
-          "redundancy_16_2",
-          "Complementary_30_2",
-          "Complementary_80_2",
-          "Complementary_25_2",
-          "Complementary_73_2",
-          "redundancy_41_2",
-          "example_207",
-          "example_214",
-          "example_216",
-          "example_217",
-          "Complementary_67_2",
-          "Complementary_51_2",
-          "example_230",
-          "Complementary_75_2",
-          "Complementary_69_2",
-          "redundancy_46_2",
-          "redundancy_7_2",
-          "Complementary_96_2",
-          "example_243",
-          "Complementary_59_2",
-          "example_251",
-          "example_252",
-          "example_253",
-          "example_258",
-          "redundancy_3_2",
-          "redundancy_28_2",
-          "example_269",
-          "Complementary_6_2",
-          "Complementary_84_2",
-          "example_276",
-          "Complementary_66_2",
-          "example_282",
-          "example_288",
-          "Complementary_88_2",
-          "example_295",
-          "mutual_error_31_2",
-          "Complementary_87_2",
-          "example_308",
-          "example_313",
-          "example_315",
-          "example_317",
-          "example_325",
-          "example_330",
-          "example_337",
-          "example_339",
-          "example_343",
-          "Complementary_52_2",
-          "example_347",
-          "mutual_error_23_2",
-          "example_358",
-          "example_366",
-          "redundancy_62_2",
-          "mutual_error_29_2",
-          "redundancy_22_2",
-          "Complementary_20_2",
-          "example_379",
-          "redundancy_52_2",
-          "Complementary_56_2",
-          "mutual_error_28_2",
-          "example_387",
-          "example_389",
-          "redundancy_40_2",
-          "mutual_error_32_2",
-          "example_397",
-          "Complementary_40_2",
-          "mutual_error_10_2",
-          "example_402",
-          "Complementary_24_2",
-          "example_406",
-          "Complementary_58_2",
-          "example_413",
-          "redundancy_63_2",
-          "Complementary_2_2",
-          "example_418",
-          "example_419",
-          "Complementary_32_2",
-          "mutual_error_18_2",
-          "example_435",
-          "redundancy_53_2",
-          "redundancy_0_2",
-          "example_452",
-          "example_454",
-          "example_455",
-          "example_458",
-          "example_459",
-          "redundancy_64_2",
-          "Complementary_28_2",
-          "mutual_error_22_2",
-          "Complementary_9_2",
-          "example_471",
-          "example_472",
-          "redundancy_30_2",
-          "Complementary_48_2",
-          "Complementary_60_2",
-          "example_484",
-          "mutual_error_24_2",
-          "Complementary_12_2",
-          "redundancy_18_2",
-          "redundancy_60_2",
-          "example_496",
-          "example_498",
-          "redundancy_36_2",
-          "example_504",
-          "example_505",
-          "redundancy_57_2",
-          "example_509",
-          "Complementary_14_2",
-          "example_520",
-          "example_524",
-          "Complementary_82_2",
-          "mutual_error_20_2",
-          "Complementary_61_2",
-          "example_553",
-          "Complementary_18_2",
-          "Complementary_33_2",
-          "Complementary_4_2",
-          "example_561",
-          "redundancy_65_2",
-          "Complementary_68_2",
-          "example_564",
-          "example_565",
-          "Complementary_37_2",
-          "redundancy_38_2",
-          "redundancy_39_2",
-          "redundancy_47_2",
-          "example_577",
-          "mutual_error_13_2",
-          "mutual_error_26_2",
-          "Complementary_74_2",
-          "example_607",
-          "example_608",
-          "example_609",
-          "Complementary_0_2",
-          "example_612",
-          "example_614",
-          "example_619",
-          "Complementary_16_2",
-          "redundancy_49_2",
-          "example_627",
-          "example_632",
-          "Complementary_57_2",
-          "Complementary_78_2",
-          "Complementary_19_2",
-          "Complementary_47_2",
-          "Complementary_53_2",
-          "Complementary_98_2",
-          "Complementary_10_2",
-          "Complementary_81_2",
-          "example_648",
-          "Complementary_17_2",
-          "Complementary_72_2",
-          "example_658",
-          "mutual_error_8_2",
-          "redundancy_21_2",
-          "example_663",
-          "Complementary_1_2",
-          "example_672",
-          "example_674",
-          "example_676",
-          "redundancy_24_2",
-          "example_683",
-          "example_686",
-          "example_690",
-          "Complementary_62_2",
-          "example_698",
-          "example_699",
-          "redundancy_56_2",
-          "example_701",
-          "example_702",
-          "example_708",
-          "redundancy_11_2",
-          "Complementary_97_2",
-          "Complementary_42_2",
-          "example_724",
-          "example_725",
-          "example_726",
-          "redundancy_35_2",
-          "Complementary_49_2",
-          "mutual_error_21_2",
-          "example_735",
-          "example_738",
-          "Complementary_44_2",
-          "mutual_error_17_2",
-          "example_745",
-          "redundancy_5_2",
-          "redundancy_58_2",
-          "example_749",
-          "Complementary_22_2",
-          "mutual_error_19_2",
-          "example_761",
-          "example_763",
-          "Complementary_36_2",
-          "example_766",
-          "example_767",
-          "Complementary_71_2",
-          "Complementary_15_2",
-          "example_771",
-          "example_772",
-          "Complementary_76_2",
-          "example_776",
-          "mutual_error_27_2",
-          "Complementary_38_2",
-          "example_783",
-          "example_784",
-          "mutual_error_15_2",
-          "Complementary_77_2",
-          "example_791",
-          "example_794",
-          "redundancy_19_2",
-          "Complementary_70_2",
-          "Complementary_13_2",
-          "Complementary_11_2",
-          "Complementary_63_2",
-          "redundancy_61_2",
-          "Complementary_45_2",
-          "example_815",
-          "example_818",
-          "redundancy_26_2",
-          "mutual_error_9_2",
-          "Complementary_35_2",
-          "example_838",
-          "mutual_error_14_2",
-          "Complementary_83_2",
-          "example_841",
-          "mutual_error_6_2",
-          "mutual_error_4_2",
-          "redundancy_17_2",
-          "Complementary_54_2",
-          "Complementary_90_2",
-          "redundancy_2_2",
-          "Complementary_31_2",
-          "redundancy_4_2",
-          "Complementary_23_2",
-          "Complementary_50_2",
-          "Complementary_46_2",
-          "example_871",
-          "example_873",
-          "redundancy_51_2",
-          "example_875",
-          "example_877",
-          "Complementary_89_2",
-          "example_879",
-          "Complementary_41_2",
-          "example_888",
-          "example_889",
-          "example_890",
-          "Complementary_3_2",
-          "Complementary_65_2",
-          "redundancy_33_2",
-          "example_905",
-          "Complementary_43_2",
-          "example_914",
-          "example_918",
-          "example_921",
-          "example_927",
-          "example_928",
-          "example_930",
-          "mutual_error_5_2",
-          "example_942",
-          "redundancy_45_2",
-          "example_944",
-          "example_952",
-          "example_955",
-          "mutual_error_30_2",
-          "Complementary_55_2",
-          "example_961",
-          "example_971",
-          "Complementary_94_2",
-          "Complementary_92_2",
-          "redundancy_29_2",
-          "mutual_error_12_2",
-          "redundancy_10_2",
-          "redundancy_34_2",
-          "mutual_error_16_2",
-          "Complementary_91_2",
-          "example_995"
+          "1332_l_2_m-0_0.18-1_0.04-2_0.09-3_0.22",
+          "1333_l_2_m-0_0.77-1_0.05-2_0.68-3_0.39",
+          "1334_l_2_m-0_0.15-1_0.04-2_0.0-3_0.79",
+          "1335_l_2_m-0_0.99-1_0.14-2_0.05-3_0.18",
+          "1336_l_2_m-0_0.78-1_0.05-2_0.09-3_0.61",
+          "1337_l_2_m-0_0.26-1_0.07-2_0.04-3_0.11",
+          "1338_l_2_c_0_1_3-0_0.4-1_0.0-2_0.19-3_1.04",
+          "1339_l_2_c_0_2_3-0_1.71-1_0.96-2_0.32-3_1.33",
+          "1340_l_2_c_1_2_3-0_0.84-1_0.58-2_0.1-3_0.1",
+          "1341_l_2_c_0_1_3-0_0.05-1_0.29-2_0.02-3_0.17",
+          "1342_l_2_c_0_2_3-0_1.46-1_0.66-2_0.97-3_0.4",
+          "1343_l_2_c_1_2_3-0_1.61-1_0.16-2_0.36-3_0.05",
+          "1344_l_2_c_0_1_3-0_0.27-1_0.42-2_0.04-3_0.02",
+          "1345_l_2_c_0_2_3-0_0.95-1_0.44-2_0.06-3_0.27",
+          "1346_l_2_c_1_2_3-0_0.56-1_0.07-2_0.28-3_0.52",
+          "1347_l_2_c_0_1_3-0_0.2-1_0.0-2_0.8-3_1.41",
+          "1348_l_2_c_0_2_3-0_0.44-1_1.31-2_0.22-3_0.36",
+          "1349_l_2_c_1_2_3-0_1.56-1_0.16-2_0.25-3_0.42",
+          "1350_l_2_c_0_1_3-0_0.49-1_0.18-2_0.28-3_0.01",
+          "1351_l_2_c_0_2_3-0_0.58-1_0.38-2_1.02-3_0.65",
+          "1352_l_2_c_1_2_3-0_1.38-1_0.01-2_0.0-3_0.31",
+          "1353_l_2_c_0_1_3-0_0.04-1_0.15-2_0.03-3_0.13",
+          "1354_l_2_c_0_2_3-0_0.64-1_1.22-2_0.58-3_0.31",
+          "1355_l_2_c_1_2_3-0_0.84-1_0.01-2_0.11-3_1.01",
+          "1356_l_2_c_0_1_3-0_1.21-1_0.02-2_1.51-3_0.4",
+          "1357_l_2_c_0_2_3-0_0.13-1_0.23-2_0.18-3_0.01",
+          "1358_l_2_c_1_2_3-0_0.33-1_0.2-2_0.06-3_1.12",
+          "1359_l_2_c_0_1_3-0_0.42-1_0.15-2_1.31-3_0.3",
+          "1360_l_2_c_0_2_3-0_0.87-1_2.48-2_0.05-3_0.11",
+          "1361_l_2_c_1_2_3-0_0.48-1_0.54-2_0.01-3_1.25",
+          "1362_l_2_c_0_1_3-0_0.83-1_0.72-2_0.27-3_0.92",
+          "1363_l_2_c_0_2_3-0_1.13-1_2.54-2_0.13-3_0.12",
+          "1364_l_2_c_1_2_3-0_0.03-1_0.29-2_0.25-3_0.37",
+          "1365_l_2_c_0_1_3-0_0.47-1_0.49-2_1.18-3_1.36",
+          "1366_l_2_c_0_2_3-0_0.21-1_0.43-2_0.63-3_0.18",
+          "1367_l_2_c_1_2_3-0_0.37-1_0.27-2_0.61-3_0.1",
+          "1368_l_2_c_0_1_3-0_0.09-1_0.72-2_2.0-3_0.14",
+          "1369_l_2_c_0_2_3-0_0.3-1_1.66-2_0.6-3_0.97",
+          "1370_l_2_c_1_2_3-0_0.71-1_0.02-2_0.48-3_0.5",
+          "1371_l_2_c_0_1_2-0_0.21-1_0.08-2_0.83-3_0.12",
+          "1372_l_2_c_0_1_3-0_0.86-1_0.7-2_1.01-3_0.13",
+          "1373_l_2_c_0_2_3-0_0.14-1_1.54-2_0.05-3_0.79",
+          "1374_l_2_c_1_2_3-0_1.08-1_0.11-2_0.01-3_0.2",
+          "1375_l_2_c_0_1_2-0_1.53-1_0.46-2_0.34-3_0.94",
+          "1376_l_2_c_0_1_3-0_1.53-1_0.25-2_0.7-3_0.5",
+          "1377_l_2_c_0_2_3-0_0.15-1_0.08-2_0.0-3_0.5",
+          "1378_l_2_c_1_2_3-0_1.7-1_0.69-2_0.34-3_0.14",
+          "1379_l_2_c_0_1_2-0_0.52-1_1.04-2_0.09-3_0.6",
+          "1380_l_2_c_0_1_3-0_0.04-1_0.22-2_0.48-3_0.61",
+          "1381_l_2_c_0_2_3-0_0.1-1_0.58-2_0.24-3_0.56",
+          "1382_l_2_c_1_2_3-0_0.62-1_0.04-2_0.37-3_0.09",
+          "1383_l_2_c_0_1_2-0_0.24-1_0.34-2_0.15-3_0.36",
+          "1384_l_2_c_0_1_3-0_0.01-1_0.38-2_1.0-3_1.15",
+          "1385_l_2_c_0_2_3-0_0.12-1_0.16-2_0.0-3_0.21",
+          "1386_l_2_c_1_2_3-0_1.01-1_0.6-2_0.01-3_0.56",
+          "1387_l_2_c_0_1_2-0_0.31-1_0.01-2_0.43-3_1.32",
+          "1388_l_2_c_0_1_3-0_0.06-1_0.23-2_1.64-3_1.16",
+          "1389_l_2_c_0_2_3-0_0.1-1_0.25-2_0.15-3_0.74",
+          "1390_l_2_c_1_2_3-0_0.88-1_0.22-2_0.64-3_0.34",
+          "1391_l_2_c_0_1_2-0_0.69-1_0.57-2_0.86-3_0.98",
+          "1392_l_2_c_0_1_3-0_0.26-1_0.25-2_0.9-3_0.82",
+          "1393_l_2_c_0_2_3-0_0.55-1_0.73-2_0.28-3_0.46",
+          "1394_l_2_c_1_2_3-0_0.79-1_0.14-2_1.21-3_0.3",
+          "1395_l_2_c_0_1_2-0_1.25-1_0.0-2_0.23-3_1.01",
+          "1396_l_2_c_0_1_3-0_1.23-1_0.68-2_0.04-3_0.66",
+          "1397_l_2_c_0_2_3-0_0.26-1_0.02-2_0.16-3_0.12",
+          "1398_l_2_c_1_2_3-0_0.65-1_0.78-2_0.37-3_0.0",
+          "1399_l_2_c_0_1_2-0_0.35-1_0.07-2_0.01-3_0.85",
+          "1400_l_2_c_0_1_3-0_0.3-1_0.03-2_0.18-3_0.59",
+          "1401_l_2_c_0_2_3-0_0.31-1_0.5-2_0.27-3_0.12",
+          "1402_l_2_c_1_2_3-0_1.06-1_0.05-2_0.12-3_0.82",
+          "1403_l_2_c_0_1_2-0_1.11-1_0.78-2_0.48-3_0.36",
+          "1404_l_2_c_0_1_3-0_0.5-1_0.3-2_0.97-3_0.72",
+          "1405_l_2_c_0_2_3-0_0.69-1_0.49-2_0.04-3_0.29",
+          "1406_l_2_c_1_2_3-0_1.93-1_0.36-2_0.29-3_0.1",
+          "1407_l_2_c_0_1_2-0_0.01-1_0.3-2_0.57-3_0.11",
+          "1408_l_2_c_0_1_3-0_0.28-1_0.22-2_2.11-3_0.5",
+          "1409_l_2_c_0_2_3-0_0.63-1_0.69-2_0.1-3_0.74",
+          "1410_l_2_c_1_2_3-0_2.88-1_0.39-2_0.4-3_0.56",
+          "1411_l_2_c_0_1_2-0_0.12-1_0.05-2_0.52-3_0.9",
+          "1412_l_2_c_0_1_3-0_0.68-1_0.44-2_1.1-3_0.81",
+          "1413_l_2_c_0_2_3-0_0.13-1_0.26-2_0.51-3_0.01",
+          "1414_l_2_c_1_2_3-0_1.59-1_0.66-2_0.02-3_0.29",
+          "1415_l_2_c_0_1_2-0_0.31-1_0.44-2_0.42-3_0.1",
+          "1416_l_2_c_0_1_3-0_0.83-1_0.37-2_0.61-3_0.22",
+          "1417_l_2_c_0_2_3-0_0.53-1_0.08-2_0.02-3_0.44",
+          "1418_l_2_c_1_2_3-0_0.95-1_0.3-2_0.49-3_0.94",
+          "1419_l_2_c_0_1_2-0_0.98-1_0.08-2_0.03-3_0.5",
+          "1420_l_2_c_0_1_3-0_1.69-1_0.28-2_0.51-3_0.74",
+          "1421_l_2_c_0_2_3-0_0.03-1_1.73-2_0.44-3_0.05",
+          "1422_l_2_c_1_2_3-0_0.45-1_0.52-2_0.06-3_1.21",
+          "1423_l_2_c_0_1_2-0_0.24-1_0.17-2_0.59-3_0.7",
+          "1424_l_2_c_0_1_3-0_0.47-1_0.34-2_0.86-3_0.13",
+          "1425_l_2_c_0_2_3-0_0.08-1_1.14-2_0.23-3_1.52",
+          "1426_l_2_c_1_2_3-0_1.58-1_0.24-2_0.6-3_0.34",
+          "1427_l_2_c_0_1_2-0_0.4-1_0.7-2_0.02-3_1.82",
+          "1428_l_2_c_0_1_3-0_0.28-1_0.66-2_1.9-3_0.72",
+          "1429_l_2_c_0_2_3-0_1.08-1_0.59-2_0.16-3_0.56",
+          "1430_l_2_c_1_2_3-0_0.25-1_0.14-2_0.19-3_0.44",
+          "1431_l_2_c_0_1_2-0_0.39-1_0.2-2_0.13-3_0.46",
+          "1432_l_2_c_0_1_3-0_0.14-1_0.02-2_1.53-3_0.29",
+          "1433_l_2_c_0_2_3-0_0.03-1_0.95-2_0.23-3_0.13",
+          "1434_l_2_c_1_2_3-0_0.68-1_0.77-2_0.18-3_0.71",
+          "1435_l_2_c_0_1_2-0_1.93-1_0.06-2_0.26-3_2.7",
+          "1436_l_2_c_0_1_3-0_0.97-1_0.01-2_0.48-3_0.1",
+          "1437_l_2_c_0_2_3-0_0.68-1_0.33-2_0.11-3_0.49",
+          "1438_l_2_c_1_2_3-0_0.94-1_0.12-2_0.53-3_0.32",
+          "1439_l_2_c_0_1_2-0_0.04-1_0.28-2_0.76-3_0.05",
+          "1440_l_2_c_0_1_3-0_0.09-1_0.42-2_1.05-3_0.55",
+          "1441_l_2_c_0_2_3-0_1.74-1_0.96-2_0.48-3_0.06",
+          "1442_l_2_c_1_2_3-0_1.08-1_0.52-2_0.67-3_0.56",
+          "1443_l_2_c_0_1_2-0_0.26-1_0.42-2_0.1-3_0.6",
+          "1444_l_2_c_0_1_3-0_1.52-1_0.52-2_0.35-3_0.55",
+          "1445_l_2_c_0_2_3-0_0.37-1_1.21-2_0.63-3_0.04",
+          "1446_l_2_c_1_2_3-0_0.55-1_0.19-2_0.6-3_0.97",
+          "1447_l_2_c_0_1_2-0_0.18-1_0.07-2_0.41-3_1.25",
+          "1448_l_2_c_0_1_3-0_0.6-1_0.08-2_0.6-3_0.47",
+          "1449_l_2_c_0_2_3-0_0.38-1_0.54-2_0.39-3_0.03",
+          "1450_l_2_c_1_2_3-0_0.9-1_0.04-2_0.48-3_0.5",
+          "1451_l_2_c_0_1_2-0_0.19-1_0.1-2_0.65-3_0.29",
+          "1452_l_2_c_0_1_3-0_0.94-1_0.02-2_0.46-3_0.21",
+          "1453_l_2_c_0_2_3-0_1.23-1_1.51-2_0.12-3_0.91",
+          "1454_l_2_c_1_2_3-0_0.35-1_0.16-2_0.26-3_0.46",
+          "1455_l_2_c_0_1_2-0_0.12-1_0.06-2_0.01-3_1.16",
+          "1456_l_2_c_0_1_3-0_0.12-1_0.26-2_0.31-3_0.36",
+          "1457_l_2_c_0_2_3-0_0.05-1_1.61-2_0.04-3_0.1",
+          "1458_l_2_c_1_2_3-0_0.8-1_0.54-2_0.21-3_1.15",
+          "1459_l_2_c_0_1_2-0_0.96-1_0.45-2_0.35-3_0.2",
+          "1460_l_2_c_0_1_3-0_0.82-1_0.02-2_1.89-3_0.06",
+          "1461_l_2_c_0_2_3-0_0.06-1_1.02-2_0.55-3_0.09",
+          "1462_l_2_c_1_2_3-0_1.31-1_0.31-2_0.04-3_1.15",
+          "1463_l_2_c_0_1_2-0_0.66-1_0.12-2_0.57-3_0.66",
+          "1464_l_2_c_0_1_3-0_1.76-1_0.16-2_3.53-3_0.01",
+          "1465_l_2_c_0_2_3-0_0.29-1_2.01-2_0.09-3_0.21",
+          "1466_l_2_c_1_2_3-0_0.6-1_0.03-2_0.05-3_0.47",
+          "1467_l_2_c_0_1_2-0_0.37-1_0.3-2_0.01-3_1.47",
+          "1468_l_2_c_0_1_3-0_0.24-1_0.05-2_0.26-3_0.18",
+          "1469_l_2_c_0_2_3-0_0.01-1_1.33-2_0.0-3_0.24",
+          "1470_l_2_c_1_2_3-0_0.27-1_0.01-2_0.01-3_0.14",
+          "1471_l_2_c_0_1_2-0_0.16-1_0.03-2_0.22-3_0.4",
+          "1472_l_2_c_0_1_3-0_0.81-1_0.27-2_0.66-3_0.98",
+          "1473_l_2_c_0_2_3-0_0.2-1_0.09-2_0.17-3_0.22",
+          "1474_l_2_c_1_2_3-0_0.02-1_0.92-2_0.0-3_0.09",
+          "1475_l_2_c_0_1_2-0_0.61-1_0.14-2_0.23-3_1.28",
+          "1476_l_2_c_0_1_3-0_0.42-1_0.77-2_1.54-3_1.54",
+          "1477_l_2_c_0_2_3-0_0.47-1_0.2-2_0.03-3_0.39",
+          "1478_l_2_c_1_2_3-0_0.62-1_0.14-2_0.01-3_0.74",
+          "1479_l_2_c_0_1_2-0_0.53-1_0.2-2_0.19-3_0.4",
+          "1480_l_2_c_0_1_3-0_0.6-1_0.89-2_0.29-3_0.77",
+          "1481_l_2_c_0_2_3-0_0.27-1_0.45-2_0.08-3_0.01",
+          "1482_l_2_c_1_2_3-0_0.12-1_0.15-2_0.3-3_0.98",
+          "1483_l_2_c_0_1_2-0_0.49-1_0.51-2_0.26-3_0.19",
+          "1484_l_2_c_0_1_3-0_0.29-1_0.05-2_1.05-3_0.2",
+          "1485_l_2_c_0_2_3-0_1.48-1_0.86-2_0.49-3_0.46",
+          "1486_l_2_c_1_2_3-0_1.32-1_0.12-2_0.36-3_0.03",
+          "1487_l_2_c_0_1_2-0_0.39-1_0.0-2_0.1-3_0.66",
+          "1488_l_2_c_0_1_3-0_0.73-1_0.42-2_0.33-3_0.12",
+          "1489_l_2_c_0_2_3-0_1.62-1_1.1-2_0.73-3_0.25",
+          "1490_l_2_c_1_2_3-0_0.63-1_0.15-2_0.05-3_0.22",
+          "1491_l_2_c_0_1_2-0_0.42-1_0.51-2_0.13-3_0.23",
+          "1492_l_2_c_0_1_3-0_0.11-1_0.03-2_1.59-3_0.45",
+          "1493_l_2_c_0_2_3-0_0.34-1_0.78-2_0.15-3_0.09",
+          "1494_l_2_c_1_2_3-0_0.51-1_0.0-2_0.32-3_0.55",
+          "1495_l_2_c_0_1_2-0_1.13-1_0.11-2_0.13-3_0.02",
+          "1496_l_2_c_0_1_3-0_0.0-1_0.64-2_0.02-3_1.09",
+          "1497_l_2_c_0_2_3-0_0.37-1_1.61-2_0.07-3_0.72",
+          "1498_l_2_c_1_2_3-0_1.55-1_0.29-2_0.94-3_0.09",
+          "1499_l_2_c_0_1_2-0_0.16-1_0.02-2_0.32-3_1.41",
+          "1500_l_2_c_0_1_3-0_0.03-1_0.1-2_1.66-3_0.36",
+          "1501_l_2_c_0_2_3-0_0.43-1_0.97-2_0.01-3_1.1",
+          "1502_l_2_c_1_2_3-0_0.63-1_0.17-2_0.03-3_0.17",
+          "1503_l_2_c_0_1_2-0_0.1-1_0.02-2_0.03-3_0.97",
+          "1504_l_2_c_0_1_3-0_0.03-1_0.01-2_0.07-3_0.47",
+          "1505_l_2_c_0_2_3-0_1.21-1_0.93-2_0.12-3_0.78",
+          "1506_l_2_c_1_2_3-0_0.72-1_0.01-2_0.17-3_0.24",
+          "1507_l_2_c_0_1_2-0_0.44-1_0.95-2_0.52-3_0.0",
+          "1508_l_2_c_0_1_3-0_0.36-1_0.59-2_1.38-3_0.66",
+          "1509_l_2_c_0_2_3-0_0.59-1_0.16-2_0.43-3_0.28",
+          "1510_l_2_c_1_2_3-0_0.01-1_0.15-2_0.68-3_0.21",
+          "1511_l_2_c_0_1_2-0_0.11-1_0.23-2_0.76-3_0.97",
+          "1512_l_2_c_0_1_3-0_0.16-1_0.21-2_0.57-3_2.33",
+          "1513_l_2_c_0_2_3-0_1.68-1_0.67-2_0.63-3_2.17",
+          "1514_l_2_c_1_2_3-0_0.92-1_0.43-2_1.1-3_0.06",
+          "1515_l_2_c_0_1_2-0_0.75-1_0.22-2_0.38-3_1.67",
+          "1516_l_2_c_0_1_3-0_0.25-1_0.16-2_1.5-3_1.53",
+          "1517_l_2_c_0_2_3-0_0.5-1_1.48-2_0.92-3_1.58",
+          "1518_l_2_c_1_2_3-0_0.01-1_0.01-2_0.57-3_0.24",
+          "1519_l_2_c_0_1_2-0_0.41-1_0.03-2_0.12-3_0.32",
+          "1520_l_2_c_0_1_3-0_0.56-1_0.51-2_1.03-3_0.67",
+          "1521_l_2_c_0_2_3-0_1.11-1_1.18-2_0.02-3_0.52",
+          "1522_l_2_c_1_2_3-0_2.09-1_0.09-2_0.68-3_1.55",
+          "1523_l_2_c_0_1_2-0_0.74-1_0.7-2_0.3-3_0.73",
+          "1524_l_2_c_0_1_3-0_0.19-1_0.09-2_0.1-3_0.08",
+          "1525_l_2_c_0_2_3-0_0.09-1_2.72-2_0.04-3_0.94",
+          "1526_l_2_c_1_2_3-0_0.89-1_0.2-2_0.72-3_1.04",
+          "1527_l_2_c_0_1_2-0_0.23-1_0.47-2_0.8-3_0.35",
+          "1528_l_2_c_0_1_3-0_0.09-1_0.15-2_0.38-3_1.11",
+          "1529_l_2_c_0_2_3-0_0.4-1_0.36-2_0.45-3_0.46",
+          "1530_l_2_c_1_2_3-0_0.1-1_0.58-2_0.12-3_0.3",
+          "1531_l_2_c_0_1_2-0_1.37-1_0.07-2_0.03-3_1.88",
+          "1532_l_2_c_0_1_3-0_0.19-1_0.73-2_0.11-3_1.09",
+          "1533_l_2_c_0_2_3-0_0.14-1_0.9-2_0.15-3_0.11",
+          "1534_l_2_c_1_2_3-0_0.69-1_0.44-2_0.45-3_0.06",
+          "1535_l_2_c_0_1_2-0_1.93-1_0.27-2_0.19-3_1.27",
+          "1536_l_2_c_0_1_3-0_0.05-1_0.68-2_0.59-3_0.69",
+          "1537_l_2_c_0_2_3-0_0.32-1_0.71-2_0.97-3_0.96",
+          "1538_l_2_c_1_2_3-0_0.55-1_0.24-2_0.02-3_1.87",
+          "1539_l_2_c_0_1_2-0_1.54-1_0.41-2_0.29-3_0.24",
+          "1540_l_2_c_0_1_3-0_0.09-1_0.42-2_0.95-3_0.39",
+          "1541_l_2_c_0_2_3-0_0.98-1_0.61-2_0.11-3_0.1",
+          "1542_l_2_c_1_2_3-0_1.14-1_0.34-2_0.68-3_0.09",
+          "1543_l_2_c_0_1_2-0_0.25-1_0.3-2_0.03-3_0.22",
+          "1544_l_2_c_0_1_3-0_0.55-1_0.48-2_0.63-3_0.32",
+          "1545_l_2_c_0_2_3-0_0.56-1_1.52-2_0.17-3_0.93",
+          "1546_l_2_c_1_2_3-0_0.04-1_0.02-2_0.09-3_0.25",
+          "1547_l_2_c_0_1_2-0_0.0-1_1.28-2_0.02-3_0.52",
+          "1548_l_2_c_0_1_3-0_0.53-1_0.86-2_1.26-3_0.28",
+          "1549_l_2_c_0_2_3-0_0.04-1_0.07-2_0.06-3_0.18",
+          "1550_l_2_c_1_2_3-0_0.6-1_0.18-2_0.06-3_0.17",
+          "1551_l_2_c_0_1_2-0_0.17-1_0.01-2_0.08-3_0.66",
+          "1552_l_2_c_0_1_3-0_0.69-1_0.31-2_0.39-3_0.81",
+          "1553_l_2_c_0_2_3-0_0.07-1_1.28-2_0.36-3_1.83",
+          "1554_l_2_c_1_2_3-0_2.08-1_0.39-2_0.05-3_0.29",
+          "1555_l_2_c_0_1_2-0_0.32-1_0.06-2_0.11-3_0.13",
+          "1556_l_2_c_0_1_3-0_0.5-1_0.03-2_0.22-3_1.59",
+          "1557_l_2_c_0_2_3-0_1.11-1_0.47-2_0.15-3_1.68",
+          "1558_l_2_c_1_2_3-0_0.55-1_0.14-2_0.04-3_0.04",
+          "1559_l_2_c_0_1_2-0_0.36-1_0.08-2_0.14-3_0.09",
+          "1560_l_2_c_0_1_3-0_0.01-1_0.08-2_0.56-3_0.28",
+          "1561_l_2_c_0_2_3-0_0.72-1_0.21-2_0.42-3_0.55",
+          "1562_l_2_c_1_2_3-0_0.25-1_0.23-2_0.01-3_1.0",
+          "1563_l_2_c_0_1_2-0_0.23-1_0.2-2_0.07-3_0.07",
+          "1564_l_2_c_0_1_3-0_0.19-1_0.09-2_0.72-3_0.23",
+          "1565_l_2_c_0_2_3-0_1.08-1_0.07-2_0.01-3_0.76",
+          "1566_l_2_c_1_2_3-0_0.6-1_0.21-2_0.04-3_0.62",
+          "1567_l_2_c_0_1_2-0_1.01-1_0.13-2_0.12-3_0.65",
+          "1568_l_2_c_0_1_3-0_1.19-1_0.35-2_1.05-3_0.23",
+          "1569_l_2_c_0_2_3-0_0.5-1_0.18-2_0.0-3_1.32",
+          "1570_l_2_c_1_2_3-0_1.06-1_0.25-2_0.56-3_0.64",
+          "1571_l_2_c_0_1_2-0_0.15-1_0.06-2_0.52-3_2.34",
+          "1572_l_2_c_0_1_3-0_0.81-1_0.41-2_0.23-3_0.34",
+          "1573_l_2_c_0_2_3-0_0.39-1_2.06-2_0.0-3_0.76",
+          "1574_l_2_c_1_2_3-0_2.06-1_0.25-2_0.06-3_0.11",
+          "1575_l_2_c_0_1_2-0_0.75-1_0.18-2_0.13-3_0.31",
+          "1576_l_2_c_0_1_3-0_0.17-1_1.11-2_0.45-3_0.38",
+          "1577_l_2_c_0_2_3-0_0.15-1_0.17-2_0.16-3_0.37",
+          "1578_l_2_c_1_2_3-0_1.89-1_0.55-2_0.19-3_0.01",
+          "1579_l_2_c_0_1_2-0_0.1-1_0.06-2_0.05-3_0.98",
+          "1580_l_2_c_0_1_3-0_0.18-1_0.36-2_1.17-3_0.38",
+          "1581_l_2_c_0_2_3-0_0.11-1_0.15-2_0.17-3_0.15",
+          "1582_l_2_c_1_2_3-0_1.12-1_0.05-2_0.34-3_0.44",
+          "1583_l_2_c_0_1_2-0_0.12-1_0.84-2_1.06-3_1.41",
+          "1584_l_2_c_0_1_3-0_0.95-1_0.34-2_0.17-3_0.96",
+          "1585_l_2_c_0_2_3-0_0.93-1_0.24-2_0.44-3_0.71",
+          "1586_l_2_c_1_2_3-0_1.68-1_0.11-2_0.74-3_0.35",
+          "1587_l_2_c_0_1_2-0_0.24-1_0.01-2_0.11-3_0.12",
+          "1588_l_2_c_0_1_3-0_0.81-1_0.01-2_0.66-3_0.24",
+          "1589_l_2_c_0_2_3-0_0.54-1_0.39-2_0.23-3_0.26",
+          "1590_l_2_c_1_2_3-0_0.85-1_0.09-2_0.19-3_1.51",
+          "1591_l_2_c_0_1_2-0_1.04-1_0.59-2_0.01-3_1.19",
+          "1592_l_2_c_0_1_3-0_0.13-1_0.09-2_0.43-3_0.36",
+          "1593_l_2_c_0_2_3-0_0.74-1_1.41-2_0.7-3_0.84",
+          "1594_l_2_c_1_2_3-0_0.64-1_0.38-2_0.13-3_0.23",
+          "1595_l_2_c_0_1_2-0_1.26-1_0.16-2_0.42-3_1.41",
+          "1596_l_2_c_0_1_3-0_0.29-1_0.29-2_0.05-3_0.12",
+          "1597_l_2_c_0_2_3-0_0.32-1_0.1-2_0.09-3_0.22",
+          "1598_l_2_c_1_2_3-0_1.26-1_0.21-2_0.53-3_0.22",
+          "1599_l_2_c_0_1_2-0_0.27-1_0.58-2_0.65-3_1.82",
+          "1600_l_2_c_0_1_3-0_0.28-1_0.1-2_1.39-3_0.03",
+          "1601_l_2_c_0_2_3-0_0.62-1_1.69-2_0.19-3_0.73",
+          "1602_l_2_c_1_2_3-0_0.18-1_0.94-2_0.33-3_0.82",
+          "1603_l_2_c_0_1_2-0_0.24-1_0.6-2_0.42-3_0.86",
+          "1604_l_2_c_0_1_3-0_0.01-1_0.88-2_1.02-3_0.01",
+          "1605_l_2_c_0_2_3-0_0.13-1_1.06-2_0.07-3_0.09",
+          "1606_l_2_c_1_2_3-0_0.22-1_0.78-2_0.15-3_1.05",
+          "1607_l_2_c_0_1_2-0_0.24-1_0.23-2_0.87-3_0.05",
+          "1608_l_2_c_0_1_3-0_0.78-1_0.0-2_1.16-3_0.46",
+          "1609_l_2_c_0_2_3-0_0.18-1_0.33-2_0.11-3_0.04",
+          "1610_l_2_c_1_2_3-0_0.9-1_0.53-2_0.1-3_0.46",
+          "1611_l_2_c_0_1_2-0_0.06-1_0.0-2_0.05-3_0.33",
+          "1612_l_2_c_0_1_3-0_0.21-1_0.67-2_0.07-3_0.17",
+          "1613_l_2_c_0_2_3-0_0.8-1_0.37-2_0.59-3_0.46",
+          "1614_l_2_c_1_2_3-0_0.92-1_0.03-2_0.84-3_0.2",
+          "1615_l_2_c_0_1_2-0_0.65-1_0.01-2_0.4-3_0.29",
+          "1616_l_2_c_0_1_3-0_0.65-1_0.04-2_0.26-3_1.31",
+          "1617_l_2_c_0_2_3-0_1.98-1_0.26-2_0.04-3_1.02",
+          "1618_l_2_c_1_2_3-0_1.52-1_0.09-2_0.17-3_0.13",
+          "1619_l_2_c_0_1_2-0_0.1-1_0.16-2_0.29-3_1.91",
+          "1620_l_2_c_0_1_3-0_0.11-1_0.01-2_1.25-3_0.42",
+          "1621_l_2_c_0_2_3-0_0.21-1_0.98-2_1.21-3_0.9",
+          "1622_l_2_c_1_2_3-0_0.65-1_0.01-2_0.32-3_0.14",
+          "1623_l_2_c_0_1_2-0_0.94-1_0.16-2_0.46-3_0.31",
+          "1624_l_2_c_0_1_3-0_0.78-1_0.58-2_1.24-3_0.54",
+          "1625_l_2_c_0_2_3-0_0.18-1_0.52-2_0.02-3_0.78",
+          "1626_l_2_c_1_2_3-0_1.49-1_0.36-2_0.62-3_0.33",
+          "1627_l_2_c_0_1_2-0_1.18-1_0.15-2_0.02-3_0.36",
+          "1628_l_2_c_0_1_3-0_0.58-1_1.11-2_0.71-3_1.16",
+          "1629_l_2_c_0_2_3-0_0.77-1_0.79-2_0.82-3_0.29",
+          "1630_l_2_c_1_2_3-0_1.11-1_1.08-2_0.22-3_0.92",
+          "1631_l_2_c_0_1_2-0_0.05-1_0.54-2_0.32-3_0.55",
+          "1632_l_2_c_0_1_3-0_0.09-1_0.19-2_0.09-3_0.2",
+          "1633_l_2_c_0_2_3-0_0.17-1_1.97-2_0.08-3_0.08",
+          "1634_l_2_c_1_2_3-0_1.2-1_0.75-2_0.02-3_0.63",
+          "1635_l_2_c_0_1_2-0_0.25-1_0.06-2_0.18-3_0.07",
+          "1636_l_2_c_0_1_3-0_0.32-1_0.42-2_0.99-3_1.04",
+          "1637_l_2_c_0_2_3-0_1.46-1_0.91-2_0.54-3_0.13",
+          "1638_l_2_c_1_2_3-0_1.16-1_0.57-2_0.0-3_0.49",
+          "1639_l_2_c_0_1_2-0_0.14-1_0.06-2_0.24-3_0.03",
+          "1640_l_2_c_0_1_3-0_0.94-1_0.68-2_0.47-3_0.62",
+          "1641_l_2_c_0_2_3-0_0.46-1_0.03-2_0.05-3_0.43",
+          "1642_l_2_c_1_2_3-0_0.02-1_0.87-2_0.04-3_0.38",
+          "1643_l_2_c_0_1_2-0_1.09-1_0.27-2_0.78-3_0.0",
+          "1644_l_2_c_0_1_3-0_0.15-1_0.35-2_0.4-3_0.07",
+          "1645_l_2_c_0_2_3-0_0.53-1_1.83-2_0.03-3_0.11",
+          "1646_l_2_c_1_2_3-0_0.86-1_0.21-2_0.0-3_0.0",
+          "1647_l_2_c_0_1_2-0_2.29-1_0.66-2_0.07-3_0.04",
+          "1648_l_2_c_0_1_3-0_0.72-1_0.11-2_0.17-3_0.0",
+          "1649_l_2_c_0_2_3-0_0.31-1_0.49-2_0.77-3_1.04",
+          "1650_l_2_c_1_2_3-0_0.31-1_0.06-2_0.45-3_0.02",
+          "1651_l_2_c_0_1_2-0_0.4-1_0.65-2_0.13-3_0.85",
+          "1652_l_2_c_0_1_3-0_0.73-1_0.15-2_1.36-3_0.13",
+          "1653_l_2_c_0_2_3-0_1.17-1_1.56-2_0.42-3_0.02",
+          "1654_l_2_c_1_2_3-0_0.01-1_0.29-2_0.25-3_0.08",
+          "1655_l_2_c_0_1_2-0_0.62-1_0.27-2_0.49-3_2.55",
+          "1656_l_2_c_0_1_3-0_0.4-1_0.25-2_0.72-3_0.31",
+          "1657_l_2_c_0_2_3-0_0.41-1_1.46-2_0.24-3_0.26",
+          "1658_l_2_c_1_2_3-0_1.81-1_0.23-2_0.04-3_0.09",
+          "1659_l_2_c_0_1_2-0_0.03-1_0.67-2_0.11-3_0.5",
+          "1660_l_2_c_0_1_3-0_0.16-1_0.47-2_1.4-3_0.5",
+          "1661_l_2_c_0_2_3-0_1.58-1_1.67-2_0.05-3_1.09",
+          "1662_l_2_c_1_2_3-0_0.84-1_0.15-2_0.27-3_0.47",
+          "1663_l_2_c_0_1_2-0_0.66-1_0.17-2_0.02-3_0.44",
+          "1664_l_2_c_0_1_3-0_0.14-1_0.78-2_1.82-3_1.29",
+          "1665_l_2_c_0_2_3-0_0.16-1_0.75-2_0.17-3_0.03",
+          "1666_l_2_c_1_2_3-0_1.56-1_0.62-2_0.26-3_0.04",
+          "1667_l_2_c_0_1_2-0_0.78-1_0.94-2_0.01-3_0.8",
+          "1668_l_2_c_0_1_3-0_1.54-1_0.31-2_0.69-3_0.35",
+          "1669_l_2_c_0_2_3-0_0.56-1_0.15-2_0.23-3_0.31",
+          "1670_l_2_c_1_2_3-0_0.24-1_0.4-2_0.1-3_0.16",
+          "1671_l_2_c_0_1_2-0_0.17-1_0.07-2_0.33-3_0.84",
+          "1672_l_2_c_0_1_3-0_0.3-1_0.49-2_1.47-3_1.27",
+          "1673_l_2_c_0_2_3-0_0.76-1_0.88-2_0.35-3_0.1",
+          "1674_l_2_c_1_2_3-0_0.82-1_0.3-2_0.07-3_0.1",
+          "1675_l_2_c_0_1_2-0_0.83-1_0.13-2_0.25-3_0.82",
+          "1676_l_2_c_0_1_3-0_0.45-1_0.08-2_1.47-3_1.33",
+          "1677_l_2_c_0_2_3-0_0.17-1_1.04-2_0.58-3_0.24",
+          "1678_l_2_c_1_2_3-0_0.03-1_0.24-2_0.51-3_0.13",
+          "1679_l_2_c_0_1_2-0_1.3-1_0.02-2_0.1-3_0.07",
+          "1680_l_2_c_0_1_3-0_0.1-1_0.17-2_0.11-3_0.81",
+          "1681_l_2_c_0_2_3-0_0.54-1_1.12-2_0.11-3_0.6",
+          "1682_l_2_c_1_2_3-0_0.12-1_0.14-2_0.83-3_0.81",
+          "1683_l_2_c_0_1_2-0_0.02-1_0.36-2_0.0-3_0.3",
+          "1684_l_2_c_0_1_3-0_1.41-1_0.05-2_0.03-3_0.2",
+          "1685_l_2_c_0_2_3-0_0.85-1_0.16-2_0.05-3_1.23",
+          "1686_l_2_c_1_2_3-0_0.48-1_0.05-2_0.09-3_1.41",
+          "1687_l_2_c_0_1_2-0_1.65-1_0.0-2_0.04-3_2.41",
+          "1688_l_2_c_0_1_3-0_0.78-1_0.01-2_0.98-3_0.55",
+          "1689_l_2_c_0_2_3-0_0.03-1_1.7-2_0.03-3_0.11",
+          "1690_l_2_c_1_2_3-0_0.51-1_0.79-2_0.61-3_0.22",
+          "1691_l_2_c_0_1_2-0_1.54-1_0.05-2_0.12-3_2.07",
+          "1692_l_2_c_0_1_3-0_0.79-1_0.24-2_0.86-3_1.27",
+          "1693_l_2_c_2_3-0_0.8-1_1.53-2_0.09-3_0.56",
+          "1694_l_2_r-0_0.06-1_0.48-2_0.65-3_1.33",
+          "1695_l_2_r-0_0.19-1_0.85-2_1.53-3_0.54",
+          "1696_l_2_r-0_0.82-1_1.0-2_0.48-3_1.02",
+          "1697_l_2_r-0_0.37-1_1.25-2_2.82-3_0.03",
+          "1698_l_2_r-0_0.94-1_3.91-2_0.96-3_0.91",
+          "1699_l_2_r-0_1.3-1_0.43-2_0.57-3_2.33",
+          "1700_l_2_r-0_1.29-1_1.85-2_1.34-3_2.15",
+          "1701_l_2_r-0_1.17-1_0.79-2_1.13-3_0.38",
+          "1702_l_2_r-0_1.32-1_0.84-2_0.42-3_0.72",
+          "1703_l_2_r-0_0.6-1_0.85-2_1.93-3_0.96",
+          "1704_l_2_r-0_1.45-1_0.08-2_1.07-3_0.65",
+          "1705_l_2_r-0_0.01-1_0.35-2_0.28-3_0.91",
+          "1706_l_2_r-0_0.04-1_3.24-2_1.8-3_0.13",
+          "1707_l_2_r-0_0.13-1_0.28-2_0.0-3_0.35",
+          "1708_l_2_r-0_0.34-1_0.22-2_0.09-3_0.87",
+          "1709_l_2_r-0_1.8-1_1.5-2_0.62-3_2.9",
+          "1710_l_2_r-0_2.65-1_0.15-2_1.98-3_0.67",
+          "1711_l_2_r-0_0.71-1_1.34-2_0.72-3_0.77",
+          "1712_l_2_r-0_0.21-1_0.91-2_0.12-3_0.96",
+          "1713_l_2_r-0_0.71-1_1.13-2_0.41-3_2.23",
+          "1714_l_2_r-0_1.52-1_2.31-2_0.9-3_1.38",
+          "1715_l_2_r-0_0.5-1_1.29-2_0.42-3_0.93",
+          "1716_l_2_r-0_0.31-1_0.73-2_0.54-3_1.98",
+          "1717_l_2_r-0_1.3-1_0.5-2_1.6-3_1.7",
+          "1718_l_2_r-0_0.64-1_0.14-2_0.61-3_0.79",
+          "1719_l_2_r-0_2.09-1_0.77-2_1.28-3_1.47",
+          "1720_l_2_r-0_1.2-1_1.25-2_0.23-3_0.78",
+          "1721_l_2_r-0_0.87-1_0.58-2_0.47-3_0.92",
+          "1722_l_2_r-0_0.88-1_0.31-2_1.29-3_0.27",
+          "1723_l_2_r-0_0.72-1_0.79-2_0.75-3_1.3",
+          "1724_l_2_r-0_1.25-1_0.59-2_0.7-3_0.85",
+          "1725_l_2_r-0_0.66-1_0.16-2_0.66-3_0.63",
+          "1726_l_2_r-0_1.31-1_1.03-2_0.25-3_0.11",
+          "1727_l_2_r-0_0.19-1_0.12-2_0.46-3_0.88",
+          "1728_l_2_r-0_1.33-1_0.03-2_0.17-3_0.74",
+          "1729_l_2_r-0_0.13-1_1.31-2_1.7-3_0.44",
+          "1730_l_2_r-0_1.64-1_0.26-2_0.57-3_1.32",
+          "1731_l_2_r-0_1.38-1_0.71-2_0.34-3_0.2",
+          "1732_l_2_r-0_0.69-1_0.66-2_0.85-3_0.41",
+          "1733_l_2_r-0_1.16-1_0.71-2_0.18-3_0.49",
+          "1734_l_2_r-0_2.04-1_0.69-2_2.16-3_1.31",
+          "1735_l_2_r-0_0.85-1_0.01-2_1.34-3_0.69",
+          "1736_l_2_r-0_1.54-1_2.1-2_0.02-3_0.28",
+          "1737_l_2_r-0_0.3-1_1.77-2_0.57-3_1.07",
+          "1738_l_2_r-0_1.28-1_0.02-2_1.08-3_0.28",
+          "1739_l_2_r-0_0.77-1_0.11-2_0.66-3_0.43",
+          "1740_l_2_r-0_0.2-1_1.01-2_1.13-3_1.57",
+          "1741_l_2_r-0_0.2-1_0.65-2_0.74-3_1.14",
+          "1742_l_2_r-0_0.47-1_0.96-2_1.88-3_0.18",
+          "1743_l_2_r-0_0.58-1_1.37-2_2.71-3_1.1",
+          "1744_l_2_r-0_1.35-1_0.67-2_0.81-3_1.18",
+          "1745_l_2_r-0_0.73-1_0.78-2_1.1-3_1.32",
+          "1746_l_2_r-0_0.41-1_0.62-2_0.29-3_0.63",
+          "1747_l_2_r-0_0.07-1_0.11-2_0.95-3_0.58",
+          "1748_l_2_r-0_0.18-1_0.14-2_0.35-3_0.48",
+          "1749_l_2_r-0_0.28-1_0.38-2_0.57-3_0.69",
+          "1750_l_2_r-0_0.81-1_0.5-2_1.57-3_0.63",
+          "1751_l_2_r-0_0.9-1_1.42-2_0.99-3_1.04",
+          "1752_l_2_r-0_0.02-1_0.46-2_0.06-3_0.19",
+          "1753_l_2_r-0_0.74-1_1.46-2_0.54-3_0.03",
+          "1754_l_2_r-0_0.73-1_0.35-2_1.55-3_1.58",
+          "1755_l_2_r-0_0.72-1_0.49-2_0.75-3_1.34",
+          "1756_l_2_r-0_0.39-1_0.32-2_1.08-3_0.34",
+          "1757_l_2_r-0_0.36-1_2.19-2_0.62-3_0.03",
+          "1758_l_2_r-0_0.26-1_0.55-2_0.27-3_1.26",
+          "1759_l_2_r-0_0.73-1_0.86-2_0.54-3_0.1",
+          "1760_l_2_r-0_0.12-1_0.58-2_0.87-3_1.39",
+          "1761_l_2_r-0_0.34-1_0.65-2_0.98-3_0.95",
+          "1762_l_2_r-0_0.35-1_1.83-2_0.4-3_2.21",
+          "1763_l_2_r-0_0.39-1_1.26-2_0.86-3_1.9",
+          "1764_l_2_r-0_1.29-1_1.14-2_0.5-3_1.15",
+          "1765_l_2_r-0_0.57-1_0.41-2_1.77-3_1.03",
+          "1766_l_2_r-0_0.49-1_0.48-2_0.77-3_0.26",
+          "1767_l_2_r-0_1.08-1_1.74-2_1.97-3_0.89",
+          "1768_l_2_r-0_1.17-1_0.15-2_0.24-3_0.4",
+          "1769_l_2_r-0_0.19-1_0.51-2_1.78-3_1.03",
+          "1770_l_2_r-0_0.41-1_0.27-2_1.46-3_2.34",
+          "1771_l_2_r-0_0.9-1_0.2-2_0.87-3_0.81",
+          "1772_l_2_r-0_0.09-1_0.78-2_1.56-3_2.23",
+          "1773_l_2_r-0_0.29-1_0.68-2_1.23-3_0.71",
+          "1774_l_2_r-0_0.6-1_1.58-2_0.22-3_0.3",
+          "1775_l_2_r-0_0.76-1_0.69-2_1.51-3_0.27",
+          "1776_l_2_r-0_0.36-1_1.5-2_0.84-3_1.56",
+          "1777_l_2_r-0_2.67-1_0.06-2_1.31-3_2.26",
+          "1778_l_2_r-0_0.27-1_0.41-2_0.04-3_3.33",
+          "1779_l_2_r-0_0.36-1_0.89-2_1.09-3_0.3",
+          "1780_l_2_r-0_1.01-1_0.39-2_2.79-3_0.74",
+          "1781_l_2_r-0_1.6-1_0.51-2_1.34-3_0.23",
+          "1782_l_2_r-0_0.01-1_0.12-2_0.8-3_0.11",
+          "1783_l_2_r-0_0.65-1_1.38-2_0.57-3_0.72",
+          "1784_l_2_r-0_0.47-1_0.71-2_0.42-3_0.46",
+          "1785_l_2_r-0_0.69-1_0.32-2_0.25-3_0.07",
+          "1786_l_2_r-0_0.92-1_0.22-2_0.46-3_0.64",
+          "1787_l_2_r-0_0.66-1_0.3-2_0.22-3_1.3",
+          "1788_l_2_r-0_1.55-1_1.75-2_0.49-3_0.13",
+          "1789_l_2_r-0_0.45-1_0.21-2_3.13-3_0.16",
+          "1790_l_2_r-0_2.68-1_0.39-2_1.41-3_0.6",
+          "1791_l_2_r-0_0.05-1_0.38-2_1.4-3_0.32",
+          "1792_l_2_r-0_0.4-1_0.55-2_1.0-3_1.37",
+          "1793_l_2_r-0_0.08-1_0.01-2_0.36-3_0.32",
+          "1794_l_2_r-0_0.5-1_1.14-2_0.33-3_2.67",
+          "1795_l_2_r-0_1.06-1_0.58-2_0.72-3_0.1",
+          "1796_l_2_r-0_2.55-1_1.34-2_0.37-3_1.23",
+          "1797_l_2_r-0_0.9-1_1.54-2_0.19-3_0.59",
+          "1798_l_2_r-0_0.47-1_1.01-2_0.07-3_1.92",
+          "1799_l_2_r-0_0.86-1_0.05-2_1.07-3_0.74",
+          "1800_l_2_r-0_0.41-1_0.28-2_0.58-3_1.66",
+          "1801_l_2_r-0_0.75-1_0.67-2_0.73-3_0.08",
+          "1802_l_2_r-0_0.65-1_1.38-2_0.25-3_1.18",
+          "1803_l_2_r-0_2.29-1_0.34-2_2.05-3_0.55",
+          "1804_l_2_r-0_1.49-1_0.75-2_1.64-3_0.0",
+          "1805_l_2_r-0_0.0-1_0.58-2_0.39-3_0.56",
+          "1806_l_2_r-0_0.18-1_1.34-2_0.11-3_0.88",
+          "1807_l_2_r-0_0.12-1_0.36-2_0.21-3_1.44",
+          "1808_l_2_r-0_1.98-1_0.97-2_0.82-3_1.27",
+          "1809_l_2_r-0_0.85-1_0.49-2_0.98-3_0.07",
+          "1810_l_2_r-0_0.79-1_2.29-2_0.64-3_0.75",
+          "1811_l_2_r-0_0.1-1_0.83-2_0.38-3_1.39",
+          "1812_l_2_r-0_0.98-1_2.04-2_0.3-3_0.53",
+          "1813_l_2_r-0_0.46-1_0.14-2_1.74-3_0.23",
+          "1814_l_2_r-0_0.9-1_0.37-2_0.2-3_0.1",
+          "1815_l_2_r-0_0.23-1_0.03-2_0.59-3_1.09",
+          "1816_l_2_r-0_2.62-1_1.56-2_0.54-3_1.58",
+          "1817_l_2_r-0_0.63-1_0.36-2_0.82-3_1.22",
+          "1818_l_2_r-0_0.26-1_0.62-2_1.03-3_0.58",
+          "1819_l_2_r-0_1.27-1_0.35-2_2.19-3_0.29",
+          "1820_l_2_r-0_0.05-1_0.09-2_1.25-3_0.64",
+          "1821_l_2_r-0_1.3-1_1.6-2_1.72-3_1.22",
+          "1822_l_2_r-0_2.13-1_0.89-2_0.16-3_1.1",
+          "1823_l_2_r-0_0.03-1_0.23-2_0.24-3_0.5",
+          "1824_l_2_r-0_2.4-1_2.52-2_0.68-3_0.12",
+          "1825_l_2_r-0_0.9-1_0.31-2_2.1-3_0.93",
+          "1826_l_2_r-0_0.52-1_0.75-2_0.66-3_1.04",
+          "1827_l_2_r-0_1.32-1_1.54-2_1.36-3_0.06",
+          "1828_l_2_r-0_1.27-1_0.17-2_0.6-3_1.02",
+          "1829_l_2_r-0_0.25-1_0.34-2_0.71-3_0.95",
+          "1830_l_2_r-0_0.28-1_0.61-2_1.6-3_0.67",
+          "1831_l_2_r-0_0.25-1_1.0-2_0.36-3_0.09",
+          "1832_l_2_r-0_0.46-1_0.68-2_2.16-3_0.76",
+          "1833_l_2_r-0_1.04-1_1.69-2_2.31-3_0.78",
+          "1834_l_2_r-0_0.04-1_0.17-2_0.2-3_0.66",
+          "1835_l_2_r-0_1.26-1_1.4-2_0.33-3_1.02",
+          "1836_l_2_r-0_0.16-1_0.91-2_1.39-3_3.5",
+          "1837_l_2_r-0_0.47-1_0.18-2_0.66-3_0.64",
+          "1838_l_2_r-0_0.28-1_2.69-2_1.13-3_0.27",
+          "1839_l_2_r-0_1.4-1_0.02-2_0.09-3_0.47",
+          "1840_l_2_r-0_1.13-1_1.26-2_0.91-3_0.31",
+          "1841_l_2_r-0_0.18-1_1.59-2_0.39-3_1.59",
+          "1842_l_2_r-0_0.69-1_2.0-2_1.16-3_0.83",
+          "1843_l_2_r-0_0.73-1_0.58-2_1.26-3_0.85",
+          "1844_l_2_r-0_0.84-1_0.03-2_0.79-3_0.19",
+          "1845_l_2_r-0_0.1-1_1.54-2_0.75-3_0.98",
+          "1846_l_2_r-0_1.0-1_0.15-2_2.26-3_0.67",
+          "1847_l_2_r-0_0.05-1_2.84-2_1.17-3_0.97",
+          "1848_l_2_r-0_0.42-1_0.25-2_0.5-3_0.3",
+          "1849_l_2_r-0_0.76-1_0.8-2_2.28-3_0.03",
+          "1850_l_2_r-0_0.17-1_0.72-2_1.67-3_0.93",
+          "1851_l_2_r-0_0.49-1_1.25-2_0.07-3_1.17",
+          "1852_l_2_r-0_0.91-1_1.73-2_0.09-3_0.8",
+          "1853_l_2_r-0_0.25-1_0.18-2_0.57-3_1.28",
+          "1854_l_2_r-0_0.27-1_0.31-2_0.35-3_1.6",
+          "1855_l_2_r-0_1.21-1_0.49-2_3.44-3_0.39",
+          "1856_l_2_r-0_0.59-1_0.38-2_1.44-3_0.19",
+          "1857_l_2_r-0_0.97-1_0.66-2_0.78-3_0.35",
+          "1858_l_2_r-0_1.53-1_1.4-2_0.07-3_0.81",
+          "1859_l_2_r-0_1.16-1_1.16-2_1.09-3_1.78",
+          "1860_l_2_r-0_0.68-1_1.61-2_0.88-3_0.82",
+          "1861_l_2_r-0_0.52-1_2.44-2_1.71-3_1.06",
+          "1862_l_2_r-0_1.6-1_0.02-2_2.03-3_1.29",
+          "1863_l_2_r-0_1.18-1_0.2-2_1.1-3_0.32",
+          "1864_l_2_r-0_0.81-1_2.02-2_1.13-3_0.69",
+          "1865_l_2_r-0_1.24-1_0.15-2_0.43-3_1.1",
+          "1866_l_2_r-0_0.18-1_2.57-2_1.16-3_1.07",
+          "1867_l_2_r-0_0.98-1_0.1-2_0.47-3_0.75",
+          "1868_l_2_r-0_1.04-1_1.08-2_1.49-3_1.14",
+          "1869_l_2_r-0_0.15-1_1.23-2_1.34-3_0.45",
+          "1870_l_2_r-0_0.39-1_1.03-2_0.13-3_1.14",
+          "1871_l_2_r-0_0.01-1_0.88-2_1.39-3_1.34",
+          "1872_l_2_r-0_1.65-1_1.08-2_2.57-3_1.2",
+          "1873_l_2_r-0_0.12-1_1.77-2_0.37-3_0.51",
+          "1874_l_2_r-0_0.74-1_0.5-2_2.33-3_1.39",
+          "1875_l_2_r-0_0.13-1_0.73-2_1.59-3_3.12",
+          "1876_l_2_r-0_0.03-1_0.72-2_0.89-3_0.7",
+          "1877_l_2_r-0_2.08-1_0.98-2_0.07-3_0.13",
+          "1878_l_2_r-0_1.08-1_1.05-2_1.05-3_0.25",
+          "1879_l_2_r-0_0.96-1_0.39-2_1.73-3_2.03",
+          "1880_l_2_r-0_1.17-1_0.44-2_1.06-3_1.03",
+          "1881_l_2_r-0_0.73-1_1.34-2_1.02-3_0.83",
+          "1882_l_2_r-0_1.46-1_1.76-2_1.31-3_0.75",
+          "1883_l_2_r-0_1.45-1_1.07-2_0.44-3_1.48",
+          "1884_l_2_r-0_1.49-1_0.74-2_0.11-3_0.85",
+          "1885_l_2_r-0_2.14-1_0.25-2_0.15-3_1.32",
+          "1886_l_2_r-0_0.9-1_0.26-2_0.58-3_1.7",
+          "1887_l_2_r-0_1.18-1_0.39-2_1.76-3_0.31",
+          "1888_l_2_r-0_0.93-1_1.94-2_0.63-3_0.58",
+          "1889_l_2_r-0_0.74-1_0.91-2_0.67-3_0.92",
+          "1890_l_2_r-0_1.26-1_0.69-2_0.35-3_1.68",
+          "1891_l_2_r-0_0.56-1_0.13-2_1.02-3_0.01",
+          "1892_l_2_r-0_0.78-1_0.87-2_0.43-3_1.05",
+          "1893_l_2_r-0_1.16-1_1.08-2_0.06-3_0.09",
+          "1894_l_2_r-0_1.36-1_1.68-2_1.58-3_0.36",
+          "1895_l_2_r-0_0.71-1_1.41-2_1.23-3_0.67",
+          "1896_l_2_r-0_0.08-1_0.47-2_1.32-3_0.4",
+          "1897_l_2_r-0_0.14-1_1.73-2_0.6-3_1.08",
+          "1898_l_2_r-0_1.72-1_0.03-2_2.02-3_1.27",
+          "1899_l_2_r-0_0.0-1_1.17-2_0.11-3_0.75",
+          "1900_l_2_r-0_1.71-1_1.44-2_0.29-3_0.81",
+          "1901_l_2_r-0_1.91-1_0.0-2_2.02-3_1.13",
+          "1902_l_2_r-0_1.86-1_0.47-2_0.54-3_0.03",
+          "1903_l_2_r-0_0.27-1_0.6-2_0.03-3_0.21",
+          "1904_l_2_r-0_0.2-1_0.9-2_1.15-3_0.87",
+          "1905_l_2_r-0_1.46-1_0.88-2_0.03-3_1.66",
+          "1906_l_2_r-0_0.66-1_0.61-2_1.23-3_1.07",
+          "1907_l_2_r-0_0.02-1_1.28-2_1.74-3_0.09",
+          "1908_l_2_r-0_0.94-1_0.68-2_1.76-3_1.39",
+          "1909_l_2_r-0_0.24-1_1.26-2_1.45-3_1.16",
+          "1910_l_2_r-0_0.9-1_0.24-2_1.06-3_0.04",
+          "1911_l_2_r-0_0.5-1_0.13-2_1.19-3_0.58",
+          "1912_l_2_r-0_0.11-1_0.14-2_2.14-3_0.42",
+          "1913_l_2_r-0_1.43-1_0.32-2_0.25-3_0.46",
+          "1914_l_2_r-0_0.09-1_0.13-2_1.92-3_0.06",
+          "1915_l_2_r-0_0.69-1_0.46-2_0.5-3_1.52",
+          "1916_l_2_r-0_0.26-1_1.15-2_1.81-3_0.72",
+          "1917_l_2_r-0_0.93-1_0.01-2_0.99-3_1.37",
+          "1918_l_2_r-0_2.0-1_0.72-2_0.77-3_0.84",
+          "1919_l_2_r-0_1.58-1_1.33-2_0.28-3_0.09",
+          "1920_l_2_r-0_0.28-1_0.95-2_2.65-3_0.95",
+          "1921_l_2_r-0_2.1-1_0.05-2_0.49-3_0.5",
+          "1922_l_2_r-0_0.22-1_0.52-2_0.69-3_0.25",
+          "1923_l_2_r-0_1.39-1_0.87-2_0.73-3_1.46",
+          "1924_l_2_r-0_1.08-1_0.35-2_1.4-3_0.02",
+          "1925_l_2_r-0_1.05-1_2.01-2_0.77-3_0.57",
+          "1926_l_2_r-0_1.03-1_0.3-2_0.02-3_1.0",
+          "1927_l_2_r-0_0.07-1_0.7-2_0.2-3_1.78",
+          "1928_l_2_r-0_0.6-1_0.34-2_0.08-3_1.27",
+          "1929_l_2_r-0_0.23-1_0.07-2_0.63-3_0.23",
+          "1930_l_2_r-0_1.14-1_1.26-2_0.49-3_0.47",
+          "1931_l_2_r-0_0.26-1_0.85-2_0.81-3_1.82",
+          "1932_l_2_r-0_2.09-1_1.1-2_0.53-3_0.78",
+          "1933_l_2_r-0_0.52-1_0.42-2_1.45-3_0.49",
+          "1934_l_2_r-0_1.85-1_0.54-2_0.52-3_0.55",
+          "1935_l_2_r-0_0.18-1_1.09-2_0.09-3_0.2",
+          "1936_l_2_r-0_1.77-1_0.22-2_2.35-3_1.82",
+          "1937_l_2_r-0_1.27-1_1.0-2_0.16-3_1.15",
+          "1938_l_2_r-0_1.48-1_0.88-2_0.04-3_1.49",
+          "1939_l_2_r-0_0.73-1_0.83-2_0.18-3_1.35",
+          "1940_l_2_r-0_1.8-1_0.87-2_0.78-3_0.17",
+          "1941_l_2_r-0_0.44-1_1.78-2_0.89-3_1.23",
+          "1942_l_2_r-0_0.18-1_0.37-2_0.76-3_0.48",
+          "1943_l_2_r-0_1.76-1_0.06-2_0.68-3_1.54",
+          "1944_l_2_r-0_0.26-1_0.22-2_0.97-3_1.64",
+          "1945_l_2_r-0_0.43-1_0.43-2_0.66-3_0.26",
+          "1946_l_2_r-0_0.74-1_0.44-2_0.78-3_0.53",
+          "1947_l_2_r-0_0.11-1_0.78-2_0.58-3_0.12",
+          "1948_l_2_r-0_1.72-1_0.07-2_0.28-3_0.82",
+          "1949_l_2_r-0_0.74-1_0.68-2_0.75-3_0.29",
+          "1950_l_2_r-0_1.32-1_1.52-2_0.7-3_0.69",
+          "1951_l_2_r-0_1.02-1_1.13-2_0.33-3_0.2",
+          "1952_l_2_r-0_0.01-1_0.95-2_1.51-3_0.58",
+          "1953_l_2_r-0_1.8-1_0.2-2_1.49-3_0.54",
+          "1954_l_2_r-0_1.06-1_0.2-2_0.51-3_0.55",
+          "1955_l_2_r-0_0.51-1_1.21-2_0.15-3_1.56",
+          "1956_l_2_r-0_1.66-1_2.74-2_0.15-3_0.94",
+          "1957_l_2_r-0_1.7-1_1.86-2_1.33-3_0.76",
+          "1958_l_2_r-0_0.01-1_1.0-2_1.16-3_1.05",
+          "1959_l_2_r-0_0.05-1_0.02-2_0.45-3_2.22",
+          "1960_l_2_r-0_0.94-1_0.19-2_1.23-3_2.67",
+          "1961_l_2_r-0_1.33-1_1.54-2_2.08-3_1.22",
+          "1962_l_2_r-0_0.56-1_0.71-2_0.08-3_0.22",
+          "1963_l_2_r-0_1.44-1_0.27-2_0.41-3_0.05",
+          "1964_l_2_r-0_0.06-1_0.39-2_0.25-3_0.39",
+          "1965_l_2_r-0_0.3-1_0.5-2_0.84-3_1.51",
+          "1966_l_2_r-0_1.37-1_2.65-2_0.29-3_0.81",
+          "1967_l_2_r-0_0.85-1_0.38-2_0.27-3_1.24",
+          "1968_l_2_r-0_1.66-1_1.16-2_0.02-3_0.42",
+          "1969_l_2_r-0_0.59-1_0.11-2_0.37-3_0.79",
+          "1970_l_2_r-0_0.72-1_0.09-2_1.49-3_1.04",
+          "1971_l_2_r-0_0.01-1_0.3-2_1.19-3_0.53",
+          "1972_l_2_r-0_0.58-1_0.75-2_0.34-3_0.99",
+          "1973_l_2_r-0_0.05-1_1.0-2_0.13-3_0.05",
+          "1974_l_2_r-0_0.63-1_3.46-2_1.02-3_1.54",
+          "1975_l_2_r-0_0.45-1_0.3-2_1.14-3_0.11",
+          "1976_l_2_r-0_0.96-1_0.36-2_0.33-3_0.65",
+          "1977_l_2_r-0_1.59-1_1.69-2_1.51-3_0.07",
+          "1978_l_2_r-0_0.47-1_1.04-2_0.37-3_0.76",
+          "1979_l_2_r-0_0.79-1_0.87-2_0.82-3_3.42",
+          "1980_l_2_r-0_0.26-1_1.75-2_2.34-3_0.98",
+          "1981_l_2_r-0_1.15-1_0.57-2_0.59-3_1.89",
+          "1982_l_2_r-0_1.49-1_0.92-2_0.46-3_0.84",
+          "1983_l_2_r-0_1.29-1_0.35-2_0.63-3_1.91",
+          "1984_l_2_r-0_0.75-1_2.05-2_0.53-3_0.28",
+          "1985_l_2_r-0_0.43-1_0.42-2_0.42-3_0.08",
+          "1986_l_2_r-0_0.07-1_0.99-2_1.7-3_0.98",
+          "1987_l_2_r-0_0.71-1_0.86-2_1.89-3_0.98",
+          "1988_l_2_r-0_1.23-1_0.03-2_1.96-3_0.57",
+          "1989_l_2_r-0_1.48-1_0.69-2_1.18-3_0.13",
+          "1990_l_2_r-0_0.2-1_0.94-2_0.33-3_1.44",
+          "1991_l_2_r-0_0.47-1_0.3-2_0.07-3_1.05",
+          "1992_l_2_r-0_0.57-1_0.66-2_2.18-3_0.63",
+          "1993_l_2_r-0_0.48-1_2.22-2_0.75-3_0.41",
+          "1994_l_2_r-0_0.33-1_1.0-2_1.25-3_0.03",
+          "1995_l_2_r-0_2.07-1_0.49-2_0.51-3_0.33",
+          "1996_l_2_r-0_0.31-1_1.02-2_1.08-3_0.01",
+          "1997_l_2_r-0_1.91-1_1.01-2_1.7-3_0.98"
          ],
          "type": "scatter3d",
          "x": [
-          9.943541709685444,
-          -10.258673430292879,
-          -8.625923975822245,
-          10.498437196095338,
-          -11.949101699227047,
-          -10.568483987916386,
-          -10.485428636587447,
-          -10.544109698371713,
-          10.616241686937872,
-          9.04114708820485,
-          -10.18273032698746,
-          9.903934902405624,
-          8.714122961158875,
-          -9.648977201146403,
-          9.486952815618976,
-          10.053301542907487,
-          9.880978065477448,
-          -10.36053236822578,
-          -10.989521501360919,
-          -9.772583893030713,
-          -8.9075047382102,
-          -8.665952701378346,
-          9.49536959968615,
-          9.388086105550805,
-          -9.156594100638914,
-          -9.809325091949955,
-          -9.456750308639009,
-          11.450000941729945,
-          -8.358201656368212,
-          -10.215228357242676,
-          9.886338783196232,
-          -9.759889326502856,
-          9.95946252690397,
-          -9.058799290144375,
-          -9.291833959401139,
-          10.739171582529252,
-          -10.198777350688498,
-          -8.480670841134632,
-          11.567586796151408,
-          -10.42573338992485,
-          12.203726596769767,
-          -7.910581578717371,
-          -9.19153935809946,
-          9.34328700070143,
-          -9.296194051867735,
-          -9.659608240017361,
-          -10.975639184446129,
-          8.929290841705416,
-          9.480543075510617,
-          -12.844393987467425,
-          9.90816173514918,
-          11.4041122364131,
-          9.981553232407833,
-          9.477217821341274,
-          -11.842471031516471,
-          -9.803114066367387,
-          9.950243169722244,
-          -10.300545848055297,
-          10.309712447703012,
-          9.462039355677861,
-          10.65989193003823,
-          -7.48917558290827,
-          -11.134849010986668,
-          9.411557736983628,
-          -10.90456848809998,
-          11.111113145671416,
-          11.547399367556492,
-          10.12058478179946,
-          -10.032545257730535,
-          -9.181765167849736,
-          -10.463731006274598,
-          -9.135500936335404,
-          -4.4458433605006595,
-          -8.185672880727108,
-          -10.66021686410598,
-          -9.59928790228302,
-          8.30080790248132,
-          9.216249880245904,
-          -9.00548736055067,
-          6.411813987235454,
-          9.741010293432648,
-          11.085592252195992,
-          -11.130537142078014,
-          -9.696224975005423,
-          -9.502707474686872,
-          -9.523771472792868,
-          -12.020850691225684,
-          -9.001269660654172,
-          10.579791355256535,
-          -9.090549514483651,
-          -11.55724117156434,
-          9.282719773923038,
-          -10.882213763846963,
-          -9.50063322949754,
-          10.783089908349062,
-          -9.742066624847661,
-          -11.161617608513541,
-          -7.561112066327409,
-          8.194280214639507,
-          11.248528620758723,
-          9.680430322228036,
-          9.860064521837744,
-          9.879465159154485,
-          -10.014876599143903,
-          11.244042520411995,
-          -11.901710625087857,
-          -9.186426896975831,
-          -7.383362689826887,
-          10.677099428199943,
-          -10.290913615993055,
-          -11.983939056312574,
-          -9.686673831723787,
-          -9.168051503551629,
-          11.381723047725368,
-          -8.577798856349068,
-          9.773519366728893,
-          9.60549224443307,
-          -9.091606940871426,
-          12.017018025807856,
-          -10.675975271342626,
-          -8.85918687906892,
-          -10.909037843070873,
-          9.957596787912935,
-          -9.3518554500943,
-          9.930523535754801,
-          -10.07426624385998,
-          9.443610111120329,
-          -10.31929102453595,
-          -8.686461926941357,
-          -9.578457254654952,
-          -12.37784182385077,
-          10.66536104861247,
-          9.53133758851955,
-          -10.723806874742106,
-          -10.052740702570695,
-          10.231054706984612,
-          -11.317864918135315,
-          -9.151421653131383,
-          -10.312257218316965,
-          8.796922434258557,
-          10.66141050735977,
-          -8.2365578470459,
-          9.543360169736165,
-          -8.258953880784173,
-          -10.228373660864944,
-          -10.346528529033552,
-          -9.922132152607945,
-          -10.385747317623046,
-          11.317192058858303,
-          9.607438795814465,
-          -10.791954928136239,
-          -8.59696286517149,
-          9.962520624304153,
-          -9.935154897675611,
-          -13.229604891631222,
-          -8.248404268505107,
-          10.527734105629674,
-          11.020670298962497,
-          9.135827425220771,
-          7.718662160088202,
-          -11.453886449389667,
-          10.36623621268776,
-          10.359359779873841,
-          -11.619647643866918,
-          10.150090905510659,
-          10.290005866824103,
-          -10.699294593196145,
-          -9.539313733173502,
-          -8.74031059650063,
-          -11.377787184298619,
-          10.143478323135758,
-          9.462476730409492,
-          -10.256859481265277,
-          -10.437088085590158,
-          -8.814840216656286,
-          11.075644487240304,
-          -7.5286686738402215,
-          -9.85608108158269,
-          9.831275175142997,
-          11.290033115916538,
-          11.173669295478282,
-          -10.343593352219045,
-          -11.437296988195342,
-          9.910490425423136,
-          -10.214534283374416,
-          10.859627387537662,
-          -13.008156982978747,
-          9.170136835758349,
-          -10.606384919377383,
-          -8.909952493799716,
-          -11.759224391745747,
-          8.712600198526598,
-          -12.72455224587983,
-          -9.97152228774042,
-          10.380468165049994,
-          9.306398837592347,
-          -9.847686216426712,
-          10.670957807414803,
-          -8.959332600376559,
-          10.875384883666518,
-          -10.54949534090203,
-          9.664657055701792,
-          10.819324295320259,
-          8.981522301953333,
-          -7.584498039222124,
-          8.205600671202939,
-          -8.655014986164776,
-          9.788564447727918,
-          9.256142842968266,
-          9.62055797715438,
-          -9.846694488689433,
-          9.878895259389822,
-          10.527447197568154,
-          -8.43436709041625,
-          12.967291179358629,
-          -11.280379151988281,
-          10.849564141872738,
-          7.79501892274836,
-          9.519766846526371,
-          -10.592691930938015,
-          -7.845825586202506,
-          11.07744973747916,
-          -10.062452588029478,
-          8.925221102472275,
-          10.671225435886804,
-          9.168879648401106,
-          -12.073734419926957,
-          -11.163193324281803,
-          -9.672042143125571,
-          8.866663010132761,
-          -12.791051297764715,
-          -12.308359746993167,
-          -11.700489836777871,
-          8.092215427848963,
-          -9.865583798301579,
-          8.892158439584316,
-          -8.114310190422035,
-          -11.346879585239824,
-          -11.181071536522083,
-          8.8261987277762,
-          -9.945814362459144,
-          8.905791293196316,
-          10.88294527997039,
-          12.19828592918689,
-          -9.938618693023438,
-          -8.947207325702111,
-          -9.143865437523132,
-          -9.591581906262048,
-          -11.530171679049774,
-          11.07850905638301,
-          -7.54146450599157,
-          -7.069008316125503,
-          8.94955983764246,
-          10.353439170126341,
-          -9.64652714663671,
-          8.682991259915864,
-          9.51034890955221,
-          -11.409067626782084,
-          11.266097407815865,
-          9.921068430136218,
-          8.867682647024393,
-          8.869852453612655,
-          -9.94261472429938,
-          -8.741084193689858,
-          12.312760578208279,
-          -10.014737252643235,
-          -11.527941312507355,
-          -9.37441206967528,
-          -10.039154212635983,
-          -10.223306584459785,
-          9.986944014352137,
-          10.6057720690914,
-          9.672625116239333,
-          -10.836901194185677,
-          11.112988891464322,
-          9.28088208063835,
-          11.77846023551302,
-          -8.752039912997189,
-          -8.13164896291008,
-          10.220653115207943,
-          -10.679647964021097,
-          9.029604831913932,
-          -11.172729848791322,
-          -8.919436318526422,
-          10.482647438044319,
-          -12.763896217784858,
-          10.385671512044397,
-          10.85381165488771,
-          -9.550169960784682,
-          -11.483706944936964,
-          11.004837888975887,
-          10.143628637260374,
-          8.142229212007534,
-          -10.896270799947148,
-          9.571544603600483,
-          12.673588696897614,
-          -10.448429514697978,
-          10.900554907222233,
-          -11.084947907809724,
-          11.224596671737972,
-          9.566374575805675,
-          -8.959484583353497,
-          -10.115652218541843,
-          9.5452369971285,
-          -8.994791424394103,
-          -12.451642225805664,
-          10.259425621048864,
-          -9.619554550338604,
-          10.2426971475919,
-          -10.657874861693141,
-          -8.370601706633863,
-          10.135627278892382,
-          9.888233516877877,
-          8.114194844823794,
-          9.699470680464204,
-          -9.975141499747966,
-          11.272854864091043,
-          -9.584691736373488,
-          -10.659815802349284,
-          -11.032994211322945,
-          -10.28621361548159,
-          -9.262103147567839,
-          -9.754122822329386,
-          11.110253696886357,
-          10.60515497866242,
-          11.574286266570702,
-          -11.196578374692141,
-          9.282471786622338,
-          9.598245394407027,
-          9.49026511678323,
-          10.638892804069707,
-          8.73334804506938,
-          9.8277631349391
+          0.30971863077889084,
+          -0.9885907115940256,
+          1.2899801971245486,
+          0.9941889503146785,
+          3.399565303609757,
+          -0.25762445673269063,
+          -0.42634031492696267,
+          1.7080732220551482,
+          2.1302564152364236,
+          1.0549129644713604,
+          2.6107706919472164,
+          1.9972531070549882,
+          1.7477456292160647,
+          0.9653891471292486,
+          2.1704348342146016,
+          1.4206530782868994,
+          -1.9245855973520576,
+          1.5622912107189006,
+          -0.48611233252399355,
+          -0.5751939740674703,
+          1.3794827399851848,
+          -0.9143330881806178,
+          -0.8384532760914218,
+          1.1006441472956354,
+          2.862572663424586,
+          -1.123498158803685,
+          2.343512199372489,
+          2.389424291568302,
+          0.8723740169932874,
+          2.497787647195281,
+          1.1196888709946298,
+          1.5339636217955617,
+          0.02723502053543103,
+          -0.47409937747498154,
+          1.2927725020445213,
+          0.36604875853812247,
+          -0.4638417348660997,
+          0.2963996027274268,
+          1.7471505921068198,
+          -0.2097295600561957,
+          0.8643883622811291,
+          -0.13974129088807907,
+          2.9962602519449932,
+          1.7002064418692209,
+          -1.531766114955027,
+          -0.15075662918871147,
+          1.7048989136227948,
+          -1.4137124966963674,
+          -0.4828594645853699,
+          -0.0970401856296419,
+          0.6214897984899531,
+          1.0303897007944196,
+          -0.013280785609969703,
+          -0.11594399575499903,
+          1.0064791534272453,
+          3.434227981967263,
+          1.8047641994874621,
+          -0.874468708746442,
+          1.9273241470432971,
+          -1.0788616195852017,
+          -0.5500502965101639,
+          -1.1455182628773297,
+          0.7892762841034456,
+          -1.2524539307566602,
+          1.2318911219115745,
+          -1.653471311553309,
+          0.6541622358136012,
+          -0.3508866644561721,
+          -0.30273161869665777,
+          0.3118818360543607,
+          1.6981672123723612,
+          1.2538953778212198,
+          -0.4998508347292778,
+          -0.6949757813075592,
+          1.9310949641283137,
+          -0.009064001318425774,
+          0.2774168871684225,
+          -0.6298715858413497,
+          2.8813231527758068,
+          -0.11609080734991362,
+          -0.6808723802743157,
+          0.12839224998993148,
+          1.5935372782915955,
+          -0.31036962486328235,
+          -0.8341947511888634,
+          2.3564831144303717,
+          0.9491136240858177,
+          -0.9782765798245263,
+          2.422155548155418,
+          -0.02788400105762512,
+          0.44552205187040095,
+          0.23838160481295056,
+          2.910106837807707,
+          1.0270121224294595,
+          1.5795807879516692,
+          2.7920471164415868,
+          -0.2831829011298663,
+          -1.7030355601245142,
+          0.2496552562882257,
+          3.7077747457047487,
+          -1.2883855176695644,
+          -0.034371803919231114,
+          1.527255969032669,
+          2.2513821208834646,
+          -0.9686875129627497,
+          -0.6786498978647864,
+          0.9449566411594656,
+          -0.23919445917486404,
+          -0.09220282389507406,
+          2.131283396676231,
+          1.0840079219047871,
+          1.1087207328253395,
+          1.999322536494061,
+          -0.5760152521333473,
+          1.4676352103384476,
+          -0.18431480077139417,
+          -0.5972241649549845,
+          -1.4773317688268146,
+          0.900773987776614,
+          -0.6884773844940808,
+          -0.938000924849826,
+          -1.8932720869273463,
+          1.401613226386143,
+          0.12330277360502973,
+          -0.1183853549235756,
+          0.05087856968299609,
+          1.2007073491550702,
+          -2.112964188004491,
+          -0.8167235200780603,
+          1.6934271338495677,
+          2.7225573340801335,
+          -0.6600102442323932,
+          -1.7565802763832639,
+          -0.5443227634081393,
+          0.6047315068164585,
+          1.7277605537252103,
+          -1.2429865234350026,
+          1.849086272879215,
+          1.2656203414822564,
+          1.3451354114468979,
+          2.541173264754617,
+          0.9045466340464795,
+          0.016600928275282256,
+          0.9662007409216735,
+          0.42213286514729265,
+          -0.4706163323461017,
+          0.8585158843641221,
+          -0.5267100444671711,
+          -0.5959843612051554,
+          1.6847406707413521,
+          2.5963866099222237,
+          -0.49101720745169497,
+          -0.576948311104458,
+          3.6641348485529774,
+          1.7155916624538672,
+          -0.3912546856228609,
+          1.9713795616375664,
+          -2.2043567414586134,
+          2.134831573016774,
+          -0.42068722964785454,
+          -0.7682838848506681,
+          3.627708908984639,
+          0.5123706623421855,
+          1.7417364723130353,
+          -0.00489638302424189,
+          1.3980500828018518,
+          2.010248311647559,
+          1.2269011994958035,
+          0.028569145563551723,
+          -0.7137103756097773,
+          2.5272047184112276,
+          -2.01160718131493,
+          -0.02669872430242126,
+          2.381766516513135,
+          1.2882431873636895,
+          0.4353605565621267,
+          -1.3906713234561123,
+          -0.5906681845245438,
+          0.011523182538018761,
+          0.25381378319897296,
+          -0.16398509252879734,
+          -1.6795817006327343,
+          0.9168861122683003,
+          2.2565943203231837,
+          -0.254341243523853,
+          -1.2863629176808584,
+          1.7117548232299282,
+          0.6588070892204143,
+          0.5587150024145864,
+          1.1094276080366894,
+          2.0881287549167347,
+          -0.7416228533265177,
+          -1.115339238632366,
+          -0.08556138998039065,
+          0.8912640406204606,
+          -0.23130502001061792,
+          -0.09380538713375941,
+          -0.4014785719144438,
+          0.8471800309880557,
+          3.193804716643448,
+          2.181710250718936,
+          -1.1044908443590513,
+          4.273677524605699,
+          2.2977408869834814,
+          -0.3974526556993305,
+          -1.9802279434829506,
+          2.3692578507052775,
+          1.953424400198862,
+          -0.13264801119718683,
+          1.6513787224051721,
+          1.1399900187885597,
+          -0.252348572111438,
+          0.5464829712539763,
+          2.544797257875094,
+          0.8505757160160338,
+          0.29463933822847277,
+          -0.5268905944828461,
+          -1.7617219894231733,
+          0.6001924302368903,
+          -0.16735132222372218,
+          -0.6851244523523061,
+          1.406252047740156,
+          2.3784181594188727,
+          -0.3159375162365736,
+          -0.500022764324457,
+          -1.110006288703711,
+          0.5530091513123601,
+          -0.358118402615369,
+          0.006271864137046279,
+          1.8646421346557134,
+          0.24704773398941482,
+          -0.2287473576598127,
+          -0.18567348635296388,
+          -1.7939757150183313,
+          0.5968324688011821,
+          3.2289949268914344,
+          -1.1949328744007133,
+          2.8331566911456694,
+          4.2085388053047055,
+          0.14797769564023944,
+          -0.8066737080022863,
+          1.4786403139186248,
+          2.3601388451426324,
+          0.7451778865097147,
+          0.1680910420732914,
+          0.14519052017406442,
+          1.8894435206631717,
+          0.6954056652753169,
+          -0.27297540560289546,
+          -0.1890959734875648,
+          1.5234374616186868,
+          0.7452433696867322,
+          0.9455349211297678,
+          0.9926553930723173,
+          1.681393801325339,
+          -0.532516574106191,
+          1.124319242065281,
+          -0.5400695609921404,
+          4.156575106636806,
+          -1.4772008439350421,
+          1.365746001058517,
+          0.7420250281383839,
+          1.5821545179349208,
+          -1.264897874932954,
+          -0.2949418557788839,
+          -0.31744888662110315,
+          2.053072807389551,
+          -1.8587309431740264,
+          1.1918841012463215,
+          -0.6217742737007423,
+          0.17627918674614051,
+          -2.231513581201646,
+          0.9134709247062535,
+          -0.1287422912110774,
+          1.3913777344703635,
+          -0.23598230285417943,
+          3.12503252270854,
+          1.0304269646326765,
+          0.9021836763976379,
+          0.8405882816933983,
+          -0.2060443787571029,
+          2.513555678005937,
+          1.4140505394268068,
+          0.8388929560015812,
+          -0.6521319085969288,
+          1.9810194280727838,
+          3.19957582286637,
+          -0.23807142008768567,
+          2.3225760427688993,
+          0.2147588635191494,
+          0.8779557254346105,
+          1.5960604621926278,
+          -0.7763077894157149,
+          -0.4970988029694021,
+          1.4887865428659997,
+          1.1826030303291304,
+          -1.0616145348728292,
+          -0.7652113788681789,
+          2.17013724702152,
+          -0.5729426878819053,
+          0.7618909657948431,
+          -0.17247819118718,
+          1.2036969253479155,
+          -0.2931871183071211,
+          -2.070592414107013,
+          2.116733174033147,
+          2.5827190069585817,
+          -0.14152691204303203,
+          -0.9370345722235929,
+          1.4974168627930589,
+          2.467732880007464,
+          -1.0872088616134539,
+          2.174014987505492,
+          0.5269039019634948,
+          0.8635227371646407,
+          -3.563999666198682,
+          0.7237294647446952,
+          -0.31362233291814,
+          0.3097509501042748,
+          0.5344887155453539,
+          -1.0573121982058638,
+          -1.1680524718468357,
+          0.3622482757329287,
+          -2.2801238682198126,
+          -0.40390246868222257,
+          -0.8553100678596435,
+          2.6222156794226628,
+          0.029113808226228333,
+          1.530638312692595,
+          2.121975891489347,
+          1.6080063191601335,
+          3.099019219721246,
+          -0.13755549345333007,
+          -0.15766295981059764,
+          1.5589422394930237,
+          2.356309274143313,
+          4.438829272595637,
+          -0.5638556410149553,
+          0.24163413502278464,
+          -0.1719641100570053,
+          -0.29605056191141066,
+          -1.230698914423312,
+          1.2703778610402052,
+          -1.4304201797473644,
+          1.98482783655361,
+          -0.17028967407798046,
+          1.3422988774971565,
+          -1.295891689481437,
+          -0.26357347919895213,
+          -0.5374953210611706,
+          2.5355014287374527,
+          -0.5547869476072178,
+          2.978534087590566,
+          -0.8462826888501302,
+          0.4822978721599739,
+          3.1954384757941976,
+          -0.922061267995749,
+          -0.031692356343976824,
+          1.5208770194628787,
+          2.7170314685053234,
+          -0.7857852114404089,
+          0.7993496723935476,
+          2.02360312887937,
+          0.19454837233744582,
+          2.3158905283511784,
+          0.4107819274171213,
+          0.9540459507762262,
+          1.2981807075444471,
+          2.8745317469867353,
+          1.2439151690010601,
+          1.870955231530906,
+          0.5966497885535258,
+          1.6091429023780437,
+          1.837366143531158,
+          1.4082553133418476,
+          0.7031117936634009,
+          0.3375323879693646,
+          2.6158282881941797,
+          2.6453176977408868,
+          0.8144896636595701,
+          3.8920557813775667,
+          0.7051368855363382,
+          1.5215076470931117,
+          1.8583611581545236,
+          1.582258693671104,
+          1.7558823975610953,
+          0.6405763219958625,
+          3.313289987899836,
+          1.2032704765047026,
+          1.4032547256103887,
+          0.8819341426280908,
+          0.7185192703439264,
+          1.7499666230201139,
+          3.448803816575926,
+          2.351241698951722,
+          0.19463953531686873,
+          1.3257971938541866,
+          0.6829700154863857,
+          1.6355392207905122,
+          1.4888706750934648,
+          0.6865350062326818,
+          1.1559143066139637,
+          3.7673761952906566,
+          1.434453798423804,
+          1.5426282520055241,
+          1.8520539352239984,
+          3.176410668774923,
+          2.9949159176877815,
+          0.19627027814291453,
+          1.797816887104069,
+          2.355775319465322,
+          1.3335098080894139,
+          1.351317553898442,
+          0.7320985018138508,
+          0.4097755123464626,
+          1.132627451768162,
+          1.619789576194019,
+          0.8538369799227117,
+          2.5482114742819135,
+          1.7161211483171106,
+          0.38029568714774675,
+          1.2911074035884276,
+          2.4074862179517122,
+          0.7206016793194854,
+          0.3933457304571534,
+          2.1042923727637888,
+          0.8083201139656189,
+          0.8589779544632785,
+          0.11554702430031816,
+          2.340962571093222,
+          0.3476121527836743,
+          2.2853205503276297,
+          3.3936244849169324,
+          2.1444757057747004,
+          0.48817893669645607,
+          1.863562213694682,
+          4.171887127974518,
+          0.22281395608659005,
+          1.2332370423686707,
+          0.8961435691064329,
+          0.09296548232402291,
+          0.2890175475212865,
+          0.6048790762964713,
+          0.7621842037601391,
+          0.36053971905347504,
+          3.7829069835049496,
+          1.117532005349535,
+          0.35858470029803446,
+          1.0051267525795549,
+          1.6042680505310707,
+          0.008694218584874958,
+          0.65339874071578,
+          1.9709794017188278,
+          0.685188249480118,
+          0.9150261348216059,
+          0.7004903720678738,
+          1.8579961931472715,
+          2.581651749831681,
+          2.8209373644545233,
+          0.05306604231552581,
+          2.555013677520562,
+          0.6091784131842519,
+          2.3052919501503033,
+          1.0583336298585555,
+          2.867555306897658,
+          0.8966046906512798,
+          0.47214961352475915,
+          3.8711919174158553,
+          0.41074088288911836,
+          2.307877149146007,
+          3.7871784229171426,
+          2.328317331271184,
+          2.3211729791705,
+          0.003751848625137111,
+          1.2269344029504086,
+          0.11582483462562088,
+          1.9786200830346834,
+          0.8454476774484629,
+          1.435055747664621,
+          1.1046203212410415,
+          1.772216595961344,
+          1.0354057022012055,
+          0.9006292093295738,
+          0.22545778455536014,
+          2.6150517761553136,
+          0.7620746873839118,
+          1.264552051757826,
+          1.2662851983202421,
+          2.5403352489226716,
+          1.7337216890161131,
+          2.130767648386211,
+          1.4547964560735864,
+          2.874589074925251,
+          1.3196853338968804,
+          0.5206332178372286,
+          2.5353648576310555,
+          1.2728940250529979,
+          0.469805590529468,
+          2.609626243255362,
+          1.1247134631747016,
+          2.20726575596819,
+          1.5145752315999104,
+          1.8400731935194345,
+          2.190301844726016,
+          0.2738329768106944,
+          0.9501384368087236,
+          2.1016963952774863,
+          1.3950106196796648,
+          2.1281924159736363,
+          0.6128834444311843,
+          0.6909720299054825,
+          1.029126261358206,
+          1.441202923064887,
+          0.10359097303420572,
+          1.3193368730610358,
+          0.4955655829433526,
+          0.4165652501497098,
+          4.053903144283099,
+          0.4025105169808899,
+          0.4909547373120986,
+          0.9098357647042902,
+          0.8143611919722158,
+          2.1710254227889694,
+          1.2065806542628277,
+          0.7671256651553109,
+          2.625474784264883,
+          1.5326472321009446,
+          1.159137219335635,
+          1.6002212276200365,
+          1.7943993498800934,
+          1.5952417279029154,
+          1.1778607178323819,
+          1.852679070240591,
+          1.2407626600141528,
+          1.7579613346309235,
+          1.207054188429613,
+          3.7022028699048857,
+          3.7194773411657973,
+          2.868641091797114,
+          0.006472891675196046,
+          3.59778845009458,
+          1.998506999722546,
+          0.7389201065346126,
+          0.12523070241571177,
+          1.6549552680511455,
+          2.3914340137008927,
+          2.2538507361589755,
+          1.0568721062300037,
+          1.862149210885431,
+          1.261798786985771,
+          1.6061199397663657,
+          1.6400968669348286,
+          1.4924138124469204,
+          2.272296239522015,
+          0.9445645643810662,
+          1.7368942591202456,
+          0.9278267106069588,
+          0.7374657384022656,
+          1.2648158333657473,
+          0.5649604285508454,
+          0.7829239036698986,
+          2.901267200193101,
+          1.9110333052807906,
+          0.7125294825435258,
+          1.937029033965333,
+          2.591941682955386,
+          1.9738308257126689,
+          0.0001241066052287687,
+          1.705883582211356,
+          2.577429609349408,
+          2.4087493752795117,
+          0.26536873437385855,
+          0.8050774371346276,
+          2.514983080539918,
+          2.5088111146494856,
+          0.023154251817315008,
+          0.9562060447789607,
+          0.23513335129269386,
+          0.8991376926397696,
+          0.5008546086677153,
+          0.35959223506009186,
+          2.364116605727353,
+          0.08904662258620843,
+          0.6922139880948206,
+          0.2630598275214767,
+          0.926414603988269,
+          2.0018861089889968,
+          1.5759115911441566,
+          2.1710388840400308,
+          3.2188995143100194,
+          0.22424255062004328,
+          1.391293274064084,
+          1.1764971492539424,
+          1.1594556127588458,
+          1.032921778045972,
+          0.6970191221925965,
+          1.0624113918162832,
+          2.072004569985638,
+          1.143806096379609,
+          1.2325144781313946,
+          2.0892879224318093,
+          0.5226529591851243,
+          1.8498930986129065,
+          0.1795012768736085,
+          2.403434617853212,
+          1.2729918037595482,
+          1.4789038351000632,
+          2.1216467984912715,
+          1.8377174653423753,
+          1.2927800367729239,
+          0.7957012493356797,
+          1.7627891229816073,
+          1.143299858912386,
+          0.5444383482553432,
+          2.555385274893574,
+          1.7453861708920946,
+          2.225259147159485,
+          0.7364444635667515,
+          1.6991577285422363,
+          2.481553250678364,
+          0.8248241904561906,
+          3.168894648205743,
+          1.058123379134484,
+          0.5075900366618805,
+          1.9259309287759971,
+          1.7031262282776034,
+          0.011377725179192333,
+          0.6734942520903733,
+          1.8232703264646473,
+          1.3251645123842712,
+          1.3999206657611907,
+          1.890632740944636,
+          0.9910696117090042,
+          0.3013152725399144,
+          1.3711795219733816,
+          2.6314818852025086,
+          1.659478034427131,
+          1.7364402492089355,
+          2.1644369668831915,
+          2.2592095681768347,
+          0.6038995721559104,
+          0.05251346418340552,
+          0.6341707264974652,
+          2.984161427514641,
+          0.9647090178827463,
+          2.169742818689943,
+          1.940514614960556,
+          2.712603088838929,
+          5.132699078217058,
+          1.193973821469403,
+          2.1625837276875624,
+          1.3878588203860331,
+          2.4438876519351718,
+          3.640957224594625,
+          0.32978725254728203,
+          0.9421857605505264,
+          2.674038647130528,
+          2.3717432259492846,
+          1.884500070346593,
+          0.4709765362562788,
+          0.5695780423816093,
+          1.258895622673974,
+          1.2449063264391482,
+          3.6813873943551485,
+          0.30806116634496494,
+          1.9119336676686107
          ],
          "y": [
-          9.886893227022442,
-          10.773651621037954,
-          -10.629589330084983,
-          -10.92932131183356,
-          -10.680932212434232,
-          -9.476904388513178,
-          -10.308512628925278,
-          -9.144755177175787,
-          9.609244313587205,
-          10.60750777345438,
-          10.750722942310249,
-          -9.531412240232113,
-          10.853858090276079,
-          10.343675393609251,
-          10.35862307273032,
-          -10.431726998779165,
-          -10.754633153582468,
-          -9.50085471742716,
-          -9.87992210273878,
-          -9.655085286808967,
-          9.127943975911931,
-          -10.215482430621542,
-          10.211339620939565,
-          -9.815258858189521,
-          -9.643609287447903,
-          -9.6176741501513,
-          -10.582846836016529,
-          9.085574283685428,
-          -9.54791497008529,
-          -10.234454812202708,
-          -10.033266925750528,
-          -10.823415701281435,
-          -8.54866017391296,
-          -10.011729700867217,
-          -10.10359246828548,
-          -9.430242103523925,
-          -9.158185590793822,
-          9.981918961855518,
-          8.771563774478134,
-          10.166528304933205,
-          -10.680019098605788,
-          8.849594979338697,
-          8.466152070093596,
-          10.21777673824989,
-          -10.249260899767402,
-          10.26362379519091,
-          9.030149675107173,
-          10.759701834215331,
-          10.497261117722003,
-          -10.114859918879302,
-          10.063819152881726,
-          -10.832833633792916,
-          10.101515295216664,
-          10.26712809499519,
-          10.787270417984397,
-          -9.838346735464192,
-          10.193409627505442,
-          -9.848608826668707,
-          -9.354594559228747,
-          10.353784300599608,
-          -9.363959053060096,
-          10.045201891858381,
-          -10.718070917339519,
-          10.66006344152859,
-          -9.748848326283738,
-          -11.985941345815505,
-          -9.994467405029816,
-          9.975851907463555,
-          8.911483542369862,
-          9.21185605311914,
-          9.48258081716125,
-          10.815446933117709,
-          -9.93514546102687,
-          -9.632375760272842,
-          10.532197049615151,
-          9.021075606893232,
-          11.369317079192278,
-          -9.59790623745828,
-          -9.603293628560552,
-          -8.435881890938107,
-          10.198179657331908,
-          9.060993372240121,
-          -10.51543673074876,
-          9.703903380684709,
-          10.452215759701318,
-          11.629302873152168,
-          -9.908056753299563,
-          -9.022754151507431,
-          9.484802397575528,
-          -10.015406621033007,
-          -10.338922115326856,
-          10.543174033194617,
-          9.164000334711371,
-          9.009924312478201,
-          9.599395007981435,
-          10.000774100392565,
-          9.500074976072806,
-          -9.916113959608696,
-          -9.503592324865076,
-          -10.307467794667264,
-          -9.913816111069732,
-          -10.13374194911141,
-          9.907807405208727,
-          -10.08792418644806,
-          9.086839766711034,
-          11.731240444842413,
-          -9.7248102938021,
-          -9.350110415094843,
-          9.556344878249003,
-          9.797217244535231,
-          -9.86900909249255,
-          -10.235642768072672,
-          9.39809158946556,
-          9.12142071248952,
-          -10.256923588612018,
-          -10.62011703730812,
-          -9.311422664353453,
-          -9.90979724997251,
-          8.792369252794005,
-          9.431406504485047,
-          -10.328199156856005,
-          -10.191789615020197,
-          -9.493067473323638,
-          -10.304884854135482,
-          10.014447176903724,
-          -9.683753795840586,
-          10.228021929857084,
-          11.249014895154616,
-          -9.553890143708397,
-          10.594033450756784,
-          -10.014023275154209,
-          -9.774022485828867,
-          -11.190458777238685,
-          7.628273273444094,
-          10.75559382457884,
-          9.92263368118755,
-          -9.441469160880107,
-          9.198935435222136,
-          10.181108522507976,
-          10.96194984221889,
-          -8.898588006020017,
-          8.015855873975827,
-          10.436302790792606,
-          10.514223623986327,
-          10.281282808922928,
-          10.701339895015979,
-          -9.663090382585048,
-          10.13129176955149,
-          8.976757229955966,
-          -8.337437066587317,
-          10.905137030161622,
-          -9.857583874178598,
-          -10.217538736075248,
-          9.11396026075059,
-          -10.106134127174741,
-          -10.444020183354139,
-          9.626881771058395,
-          9.066829149387987,
-          10.559172149696826,
-          -10.856354416637645,
-          11.631088680408391,
-          9.699552688092158,
-          9.757607552349832,
-          10.099221639504407,
-          9.926371782186713,
-          -10.032484630978027,
-          12.259927493526177,
-          9.930850450808341,
-          10.90066185288903,
-          -9.343413224842452,
-          9.776453341769873,
-          -11.17599631030519,
-          -10.609976085921776,
-          9.857096102262403,
-          -10.584593633342305,
-          9.45382908356168,
-          -9.586041597489363,
-          -10.37642541256824,
-          -9.35067191875219,
-          8.961332045644607,
-          9.452283710474658,
-          -9.787717217589547,
-          12.07183555186472,
-          -9.423941090123126,
-          10.094863363242014,
-          -9.477679783605254,
-          -10.168521990058544,
-          -9.956223632821992,
-          10.681053357964636,
-          -9.956458565643475,
-          -10.280128333052705,
-          10.828671919068112,
-          -10.68125723568371,
-          -9.78032225813347,
-          9.706439679030995,
-          -9.23545343613396,
-          -10.299516500607895,
-          -11.138141527988394,
-          -10.18077331806936,
-          -10.182842783370566,
-          -9.453873935214931,
-          10.25025942653784,
-          -10.177151430779775,
-          -9.298346478192295,
-          -9.718973759022358,
-          11.270987710741142,
-          -9.56863086333563,
-          -10.46796454898012,
-          10.444016774162026,
-          -9.040564268384262,
-          -10.495250331634455,
-          9.98458090655537,
-          -8.768346748909934,
-          -9.610226875790692,
-          -10.422110113962448,
-          10.594518768854712,
-          9.375634631922953,
-          11.373244713735525,
-          10.156125588676431,
-          -9.845304401270704,
-          9.619906272560826,
-          9.10129297118627,
-          -9.530089209813154,
-          10.91494666534488,
-          -9.563901970174761,
-          10.667760419536297,
-          -9.783088198208835,
-          -10.656207035801295,
-          10.02863029460755,
-          -9.084856037046436,
-          11.808887392032265,
-          -10.024871055219178,
-          10.566943282734325,
-          11.371312694601682,
-          -10.195646529582739,
-          -10.138378805609007,
-          -9.700335018032616,
-          11.811947519948383,
-          11.405714578844513,
-          -9.829609772870214,
-          -9.736494145592584,
-          10.877567657070832,
-          9.374127167910826,
-          8.576361978071978,
-          -9.57898604637961,
-          10.595645888355538,
-          8.137491718953779,
-          9.849600055586832,
-          -10.676057960845123,
-          -11.549064333823885,
-          -9.79167080164317,
-          -9.636700577663056,
-          10.732159646230485,
-          -10.04359773391948,
-          -9.882021770355509,
-          10.909319280232907,
-          -9.863074723143644,
-          11.240230332320806,
-          -9.565672535112506,
-          10.19477733753517,
-          -9.364796509945515,
-          -11.819028783371435,
-          -9.691982518080652,
-          9.114150388536533,
-          -9.318488614441023,
-          -9.435480074538045,
-          -9.606439971442269,
-          -10.457319591995379,
-          -9.919973995820703,
-          -9.366921154616373,
-          9.84725805961535,
-          9.644857693180498,
-          10.403859609566457,
-          -10.454667302639855,
-          9.345067132697976,
-          -10.741973474531115,
-          8.748006735748808,
-          8.56556023848776,
-          10.457371157284047,
-          9.638757550781452,
-          -9.448692247747191,
-          -11.541061691388474,
-          9.468052051621163,
-          -9.441372909469706,
-          -9.16323271007058,
-          -10.556025051751593,
-          9.917771936416827,
-          -9.221995239024546,
-          -10.404888212288805,
-          10.2548252840017,
-          -9.775430721371386,
-          -10.089927514158523,
-          -10.138098291642656,
-          10.375687519609738,
-          10.570396119451638,
-          8.210784367076931,
-          -9.94858067447323,
-          -9.858335523965899,
-          -9.87246006966977,
-          9.165082301649349,
-          9.980946794708817,
-          -9.759477013874085,
-          -9.64326937207056,
-          10.129668029307982,
-          7.696017543967889,
-          -10.654488988038832,
-          9.878991479554797,
-          10.548445892525415,
-          9.933624764214345,
-          -10.967174721863016,
-          9.662834147898455,
-          9.676920819862158,
-          9.984855044333376,
-          -11.118218393397802,
-          -9.834860249596181,
-          -10.661014696338022,
-          9.172839315810743,
-          -9.929493410079102,
-          -9.374971445658796,
-          10.972672018806284,
-          10.812307105305127,
-          10.511385388874867,
-          -9.323410510023045,
-          -11.216436794394207,
-          9.616154422534857,
-          -10.336180761083039,
-          -10.457914763147327,
-          -11.011077598298934,
-          10.24173676105599,
-          10.432189323833505,
-          -8.890571905547665,
-          -9.830676399891317,
-          10.103580177512587
+          0.8120325353063325,
+          -2.904616449977882,
+          0.15161220525819274,
+          1.072859680651204,
+          1.2912647630065472,
+          1.3556702130530027,
+          0.7408982269993196,
+          1.7527733463051431,
+          -1.0778324086528857,
+          0.04827112703713321,
+          1.4610395261332991,
+          -1.6052809414547313,
+          0.2727134843253243,
+          0.9703067416572047,
+          -0.5601592510634609,
+          1.373292408932027,
+          0.44178682640275424,
+          -1.5780169971394722,
+          -2.784987732991687,
+          -2.6530905996890204,
+          -2.3604444198022607,
+          -0.04158810847509542,
+          0.9207735779004629,
+          -0.8355029655995221,
+          1.2076780520647072,
+          -0.13458822279280502,
+          -0.33109842910515774,
+          0.4158452994734694,
+          1.626720178881767,
+          -2.3880053537435644,
+          0.8293517915312527,
+          1.133815039109611,
+          -1.3157610890802611,
+          -2.5208910747253475,
+          0.21334834976609995,
+          -2.0317004041516786,
+          -1.7617062585534757,
+          1.4305894038206732,
+          -0.7053136333173615,
+          1.5727149254051471,
+          1.2268459215408027,
+          -2.5388145604340675,
+          -1.0846518415862099,
+          2.131011948417665,
+          -3.2917698603949503,
+          -1.4543765736635101,
+          -3.7952392486703226,
+          -0.5224558388949603,
+          0.04160583613505198,
+          -0.4714677615335706,
+          -1.6882072972439763,
+          0.24313350866802286,
+          -2.8065201105574955,
+          -1.4205324577893577,
+          -1.8312244826414323,
+          0.3117467676281016,
+          0.05794951358931977,
+          -0.1027628336045624,
+          -0.8845499057743923,
+          -2.3673546418333755,
+          0.2597428737465106,
+          -0.9568474235964401,
+          -2.945507945702582,
+          -1.6960392605749515,
+          2.3520966585492027,
+          0.2642687574976419,
+          -0.7082675197364583,
+          -1.8062374796200453,
+          -1.9939566572300238,
+          0.3844005879681085,
+          -1.0611857147380084,
+          1.112236734535692,
+          -2.0395937717371107,
+          -0.90633794445756,
+          -1.9765792970378389,
+          -1.9243395842507232,
+          2.036371245501431,
+          -1.412260734222166,
+          -3.2563813065399643,
+          0.6080809968211474,
+          -2.7031070195831863,
+          0.8174837334376828,
+          -2.464855602604484,
+          1.5330810968805912,
+          -1.7491073601756146,
+          0.5267526147755499,
+          -1.6764873146398538,
+          -4.149697639395802,
+          1.6910627547908588,
+          -2.7667311916991433,
+          -4.274962462843083,
+          2.3828915834613373,
+          0.46513843915218334,
+          0.0811571199932517,
+          -1.6263925297044546,
+          0.40426591609397255,
+          -2.0244624743853676,
+          -1.0833637320747296,
+          -1.4818120798323027,
+          0.3852775306704417,
+          1.8980985602438625,
+          -1.5554896536787342,
+          -0.6807639498336475,
+          1.9334088565773677,
+          -1.168242513148052,
+          -3.4715134934481298,
+          -1.3563291329215406,
+          -0.03877113232748686,
+          0.9020813421511369,
+          1.7436815420761569,
+          -2.6342543175897672,
+          0.25815264702686025,
+          1.5240506303600556,
+          -0.3651006579559253,
+          -0.5539313326683776,
+          1.4829507264871769,
+          1.5027866886911188,
+          0.38303894562878793,
+          -3.8592826135059366,
+          -0.2140289161963308,
+          -2.7400993959901534,
+          -1.233984525726494,
+          -0.3522171938713091,
+          0.4241186655352258,
+          -1.2995684352553232,
+          0.4439461772927473,
+          -0.7963185420582247,
+          -0.9645067878337729,
+          -2.2004545650463507,
+          0.06357853538899905,
+          -1.3053229223760008,
+          -1.9800551977980199,
+          -2.598224452828619,
+          -0.28526575560866285,
+          -1.0722002299137832,
+          0.373649096749076,
+          -0.24173720934415865,
+          0.010887628645374736,
+          -2.3830194488154843,
+          0.15544085356226978,
+          0.8109793143436592,
+          0.19655197293499072,
+          -2.1312100564042336,
+          0.6126758776449472,
+          1.0050460372348926,
+          -1.8478245829015223,
+          -0.6170216054880475,
+          -0.5335091027137194,
+          -2.175630517926221,
+          0.26958549890624295,
+          -0.11878378853275351,
+          -1.4682705055116847,
+          -0.4258286207910472,
+          1.8821265050699783,
+          -2.737136857726152,
+          -0.43999544288541725,
+          0.7269939621198298,
+          -1.624884968208332,
+          -1.4766090896188553,
+          -1.5577612732179076,
+          -0.10910636851060973,
+          0.3389944450553959,
+          -1.796276789759246,
+          1.1323405730691332,
+          -0.630290539775553,
+          0.3701326599376742,
+          -1.5481203373605168,
+          0.1631545855075307,
+          0.03456007123601257,
+          0.42634859099086375,
+          -0.6309899960321447,
+          -2.8443632280199784,
+          -1.6215393323550757,
+          1.2107552371073536,
+          -3.3442370076440993,
+          0.47392277705918406,
+          2.0997242611041385,
+          0.8912788405900574,
+          -0.9695930811100811,
+          0.11292156048116087,
+          -4.1408644687883145,
+          -3.074144531625899,
+          -2.550082373777121,
+          0.7454475490840262,
+          -2.8523813144167516,
+          -0.5009609316145545,
+          -0.14644015226573848,
+          0.4113180097706941,
+          0.6532176727917061,
+          1.1791933388014435,
+          -2.1416474488969204,
+          -1.9496135183690417,
+          0.19188353761545063,
+          -2.4290445570029733,
+          -2.326824077333095,
+          -1.5699682205962178,
+          -0.6046828280010663,
+          -0.8955957336831576,
+          -0.0983743143650131,
+          1.3729912007312484,
+          0.19076903220866837,
+          -0.14107979076689026,
+          -0.6932962912074012,
+          1.9327951349731056,
+          -0.04976153939490069,
+          -1.1546186507274898,
+          -0.5503543271709912,
+          1.5353234545576195,
+          -0.09072339434649801,
+          0.9771763562551521,
+          -1.408499937579526,
+          -2.7968771976709066,
+          1.4909769782698485,
+          0.8420478914514029,
+          -0.8159226376240893,
+          0.0037620355090033364,
+          -1.4661934647116766,
+          -0.03535148847837033,
+          -0.9967275455986419,
+          -1.2107516186061695,
+          -1.4008010116907692,
+          0.076380727435994,
+          -2.084229921531054,
+          -3.0439078921654685,
+          -1.6829391475503213,
+          -3.344561567593224,
+          -2.6573760875212953,
+          -0.7537535082864623,
+          0.6920584241444991,
+          0.7177652591965393,
+          -2.542209828233007,
+          -1.3430565464367905,
+          -0.5359443667649166,
+          -1.0784157721557104,
+          -1.2205439663495448,
+          1.012959690324188,
+          -1.8373645590385246,
+          0.4997778348312125,
+          -1.0554804472530992,
+          0.16592777825966643,
+          -0.9443193918724596,
+          0.39065162374248574,
+          -3.0162956710468825,
+          1.983517969952803,
+          0.4523742101884247,
+          0.6230998708640805,
+          -4.49190389377174,
+          0.09812884428579882,
+          0.17680692199508785,
+          -3.0510971947261023,
+          -2.0980682600909333,
+          0.12122388748471713,
+          1.8213518542325158,
+          0.9329727695898427,
+          -3.554992800058074,
+          -0.24175793322743933,
+          0.806961249322564,
+          -2.077031865056928,
+          -0.8489680150762273,
+          -1.0395310481212647,
+          0.8092479164200028,
+          0.8215636550103702,
+          -0.6429373149831186,
+          -2.088174817583261,
+          -0.6613754829598071,
+          -1.3605428069388297,
+          -1.2552185566652883,
+          -2.2000466801494962,
+          0.27506004473978907,
+          -2.7090860400605643,
+          -1.1896645994171549,
+          -0.2414700307171036,
+          0.6542737040414006,
+          -1.3306687831612136,
+          -0.2204743882724981,
+          -1.3713938946626911,
+          0.7792459510518785,
+          0.18430642019907295,
+          -2.171219566018477,
+          0.0648411236974451,
+          -1.1116505002492432,
+          0.8030090546214779,
+          -1.7967321729671872,
+          0.6530011082578131,
+          -3.10200324105882,
+          2.5579788911305155,
+          -1.5170749900702307,
+          0.10161579755818684,
+          0.10834504472418827,
+          0.41310249732529947,
+          -1.2851866620969905,
+          0.9368541222316533,
+          1.229576559865611,
+          0.18072368296207997,
+          -2.3019894754963612,
+          1.1998595752380594,
+          -0.5840341993270017,
+          -2.358858195513581,
+          -1.1062078453114814,
+          0.054163583553949124,
+          0.09403384444819785,
+          0.298857146714111,
+          -2.3240273106549685,
+          -0.25482123238259036,
+          0.31665484960698054,
+          1.459152945289898,
+          -1.1612282358143255,
+          -1.7054528574239831,
+          -1.1665859041421986,
+          0.4583326957502487,
+          -0.023154476332858387,
+          -2.0172119537618096,
+          0.15488094206469882,
+          1.407214099925692,
+          -1.8910665322188382,
+          -2.549103611212702,
+          1.6847599761015313,
+          0.7398053823799597,
+          -1.796231627546406,
+          0.3983436495565753,
+          0.7279842832935044,
+          -2.873963944444143,
+          -2.37979713272921,
+          -2.4125569534454403,
+          -3.3803861785251463,
+          0.4117185461847992,
+          -1.8136978076002963,
+          2.7272595941422573,
+          0.16119617181346135,
+          1.5814070940562188,
+          -1.3392147659060745,
+          0.6574241494707667,
+          0.27341713785174115,
+          -1.4726700200399097,
+          -1.7682340230290483,
+          0.7802885733476388,
+          1.5375221454973018,
+          -1.8120780851127762,
+          -2.0986786270902424,
+          -1.5438173641038697,
+          1.8402454505974966,
+          -0.7582818619281089,
+          -0.8197856889988996,
+          -0.8289357266545304,
+          0.4532119781157211,
+          -1.420386832633648,
+          -0.03171952016512403,
+          -1.386546835681586,
+          0.09769387748069014,
+          -0.8053511725327914,
+          -0.1245010822272008,
+          0.8318506970825688,
+          1.4135461418658148,
+          -2.150656138933022,
+          -2.7340741751089075,
+          1.6497662054531887,
+          -0.7783099477201747,
+          0.12702469176630915,
+          -0.5097647128580961,
+          1.5352494713487594,
+          -1.5840566701698064,
+          -1.9601658407019453,
+          -0.06088767772338133,
+          -2.557185087035571,
+          -2.6284797821151686,
+          -0.3720849755320699,
+          -0.9412184775888639,
+          -1.968043474282601,
+          -1.2940287173612777,
+          -1.170964973358646,
+          -3.5603060461504366,
+          -1.6476629480639726,
+          -1.446793035709854,
+          -0.0072666674378680796,
+          -2.964318938469927,
+          -0.1293399611919842,
+          -1.5173682768651389,
+          -1.8021215550394658,
+          -3.6793002121850535,
+          -0.7113536670428988,
+          -0.9368664595421886,
+          -1.5270286524538679,
+          -1.868730262844001,
+          -0.5045743582261799,
+          -0.30614547595139774,
+          -1.4386054348626143,
+          -2.8046258798892323,
+          -2.0888631703957836,
+          -3.5479547495490724,
+          -0.8740682187832651,
+          -1.391703861203109,
+          -1.1451111117238653,
+          -1.2528261616090393,
+          -2.7277124045400125,
+          -2.356773789818825,
+          -1.3860467034306716,
+          -1.6088499936044511,
+          -0.1274412024667947,
+          -2.920835586752344,
+          -1.916944803483341,
+          -1.8177535025946439,
+          -2.8065254637289274,
+          -2.041690120965666,
+          -2.7236169750289063,
+          -1.7518060757073506,
+          -1.5113633290057131,
+          -1.696098617431842,
+          -0.7721640032201517,
+          -2.4849928623388897,
+          -2.7262941130115297,
+          -2.528122012959348,
+          -0.5800399299956533,
+          -2.7076561992447457,
+          -2.5262230288153096,
+          -2.66867142171356,
+          -0.07318402978019423,
+          -0.1848943759109074,
+          -0.46399648582677455,
+          -0.8116846719631388,
+          -1.3913557978165783,
+          -2.235957787990363,
+          -0.7385247871699543,
+          -0.7331485193137255,
+          -1.7951526366301902,
+          -2.0308770629882136,
+          -0.3587660173618167,
+          -0.2562513517713719,
+          -0.7260647270315082,
+          -1.8722044610392967,
+          -0.3378280117992687,
+          -2.697549846228103,
+          -0.39161847009538187,
+          -1.2869489377660834,
+          -0.5662265128871418,
+          -0.9710702917745861,
+          -1.0785068395828723,
+          -3.056995056903706,
+          -0.18781146308373708,
+          -1.9452970976825044,
+          -2.377396263798097,
+          -2.2676959759934885,
+          -0.3244017498334858,
+          -1.1780737996545576,
+          -2.0948759613733787,
+          -0.5889584980196234,
+          -2.811067063054776,
+          -0.2734067749835416,
+          -4.237956338618574,
+          -2.8776653144423903,
+          -1.8665264706407116,
+          -0.7791318271316978,
+          -1.1402805327782963,
+          -0.4696749801175667,
+          -1.4810367003132712,
+          -3.5248137554754404,
+          -1.0434178902983935,
+          -1.5504397782568953,
+          -0.45038926576492133,
+          -2.681035858000633,
+          -0.8757098984426865,
+          -0.39687439550309056,
+          -2.2151835190525064,
+          -0.5005508678911317,
+          -3.0433832265161613,
+          -2.7644697958043976,
+          -1.3749382479566903,
+          -0.9640908581047741,
+          -0.8576296733446196,
+          -0.6049398352300254,
+          -0.7502299436029767,
+          -0.6450195164159751,
+          -2.381205261103119,
+          -1.4876516917032108,
+          -0.12603888642472727,
+          -1.652404976978758,
+          -0.857780811910143,
+          -2.822232541407079,
+          -1.6235494030169249,
+          -0.7894045037454156,
+          -0.1039862584521406,
+          -0.9834166579482918,
+          -0.4647595829093787,
+          -1.0094157225782578,
+          -1.2724846866904314,
+          -2.6849337902926225,
+          -0.6342843521653432,
+          -0.2620660509516085,
+          -2.2573273851137206,
+          -0.05807456900518804,
+          -1.2953503259398362,
+          -2.5254937740215997,
+          -0.028372631464980147,
+          -2.402932590140481,
+          -2.9359120718755367,
+          -0.8081726860580802,
+          -1.3164487628002668,
+          -3.8062961911522137,
+          -3.9346538057650577,
+          -0.2806407717064625,
+          -0.24668599338174235,
+          -0.4603563147480574,
+          -1.0355441216080634,
+          -0.03640462351554574,
+          -1.2620349966108029,
+          -0.15998317499700065,
+          -0.4748120442670285,
+          -0.28084873960373424,
+          -1.8841658007134638,
+          -1.9241627289445478,
+          -2.1426687266581226,
+          -2.078884854350693,
+          -0.7921141069419956,
+          -0.8431647443499879,
+          -0.81720304226813,
+          -1.0046074024245297,
+          -0.05335769957723635,
+          -1.8647068269948965,
+          -0.7596011149403852,
+          -0.1661498728609513,
+          -1.2157686300843307,
+          -3.2548299185461866,
+          -0.2545225689259526,
+          -0.26503495577904,
+          -3.2808756616029626,
+          -0.5896070455245085,
+          -0.966479261035041,
+          -3.1032760934113166,
+          -1.2653353481294178,
+          -0.6827510427222643,
+          -1.4077044864272517,
+          -1.8876839372386711,
+          -1.1895450574659228,
+          -0.8122971931573253,
+          -2.394520481100809,
+          -0.18436765318952353,
+          -0.9791285141251672,
+          -1.5270606581708117,
+          -1.1011261650348758,
+          -0.39342752833264494,
+          -2.148643169827749,
+          -1.6532741766095507,
+          -0.5002407669769126,
+          -1.881313986451002,
+          -0.9857978742908028,
+          -0.030180316937233997,
+          -2.0808167558933723,
+          -1.081750838536639,
+          -0.9578657301916441,
+          -2.4651225598584663,
+          -0.7296374482169729,
+          -1.479138177874221,
+          -1.4457627895641756,
+          -3.821867611549828,
+          -2.4108548558529974,
+          -0.8973885219363245,
+          -5.0766857239143155,
+          -3.7612511388457683,
+          -1.6527341177791781,
+          -1.5567861084891983,
+          -1.59407607337178,
+          -2.4214492942246,
+          -1.1589227750001145,
+          -1.3573416183341909,
+          -0.7929670160391743,
+          -3.0651303647294132,
+          -0.14272120313924264,
+          -1.716237319559783,
+          -2.2475014571268552,
+          -2.343013355263309,
+          -1.913914426208469,
+          -1.85521844227123,
+          -2.058601982175028,
+          -0.20039640635340894,
+          -1.4552378339276553,
+          -0.6616664845391151,
+          -1.0556895277499387,
+          -0.9367680564053963,
+          -0.7747169006084433,
+          -1.2164111610288142,
+          -2.8712662061484857,
+          -0.10587743157647311,
+          -1.428840118666985,
+          -0.3699293188686511,
+          -3.241047762705184,
+          -0.4025151251606517,
+          -1.35719959968718,
+          -2.7594582084269543,
+          -2.842137146152359,
+          -0.27985477470467257,
+          -2.10432178863864,
+          -3.3660675583498207,
+          -1.9632475320445628,
+          -1.0816241831620237,
+          -1.0545183924000225,
+          -2.128235859876492,
+          -0.06983651967770799,
+          -0.6026922130510495,
+          -0.22812683054155292,
+          -1.8136846750160425,
+          -1.5242755333387903,
+          -2.8368609985950357,
+          -2.300640225515429,
+          -3.477163834952239,
+          -2.9879626297621495,
+          -1.7724302580197147,
+          -4.836163964162319,
+          -1.7273362200368898,
+          -0.7311111272131948,
+          -1.965645165337077,
+          -0.44219089094207065,
+          -1.1664799465498452,
+          -2.3239980091503565,
+          -2.087711700718781,
+          -1.529330949939876,
+          -2.0628183965271365,
+          -0.11382520468171953,
+          -1.7233862888928573,
+          -1.222580716002856,
+          -1.3214198218909148,
+          -1.0155730082201007,
+          -0.5497667697779687,
+          -1.8025575488045111,
+          -2.0539800563229234,
+          -1.8998438731656129,
+          -1.659412997326203,
+          -1.6986464882863874,
+          -1.9634747702366067,
+          -1.0233153793514476,
+          -0.9429962166683942,
+          -2.5307944241244114,
+          -0.5646286166965465,
+          -1.4354390686194511,
+          -0.06327537556312757,
+          -0.3618702014093216,
+          -2.1624689548797305,
+          -1.8670148910689663,
+          -2.5421450955016924,
+          -0.594871657364309,
+          -1.1983660933199434,
+          -0.5863285089231491,
+          -0.576936961381559,
+          -3.120393993659814,
+          -1.614814004562438,
+          -0.45322090447911545,
+          -2.0265815183572036,
+          -1.5890657159581811,
+          -0.4707535389329939,
+          -0.789174088090413,
+          -0.264032674640745,
+          -1.5159263937706648,
+          -1.4861719291939772,
+          -1.876582577225411,
+          -0.7500111868892221,
+          -1.9114825183849988,
+          -0.07464482712356857,
+          -0.7130311223713626,
+          -1.2318355580401326,
+          -1.8819006677617822,
+          -2.810651070804887,
+          -0.8645238351157213,
+          -3.529345000859943,
+          -0.47511432224865124,
+          -0.33121473793138245,
+          -2.0653008875259395,
+          -1.3107271967877598,
+          -2.2305257896509647
          ],
          "z": [
-          11.134264672335316,
-          9.852843424323213,
-          -10.041529039381238,
-          10.463426549165197,
-          -8.554944330885958,
-          -11.129482375668326,
-          -8.203333398700822,
-          -10.568760429541717,
-          9.437390416477374,
-          10.680119314125768,
-          10.852494701076507,
-          9.24130961069817,
-          10.708856659799272,
-          10.512760895168046,
-          10.106252576387794,
-          -11.085406475381902,
-          10.563518888250185,
-          -10.37082796620628,
-          -10.33539671867577,
-          -11.21527582676156,
-          9.311848176242808,
-          -9.165701942676268,
-          11.300119737675065,
-          -9.691509878128507,
-          -12.200662089437115,
-          -9.992091495934288,
-          -9.476700473128643,
-          9.123193526085519,
-          -11.736351177125973,
-          -8.63384407628417,
-          -9.693316467474789,
-          -10.008607315930869,
-          -9.07527781643782,
-          -9.838119064469684,
-          -10.765634151449229,
-          -10.008920626795092,
-          -11.011779389868712,
-          -9.035213194446028,
-          10.640948269092327,
-          10.365357675526521,
-          -11.802973309284974,
-          9.205593293775534,
-          -11.756129114921768,
-          11.870999612724109,
-          -9.730586973970773,
-          -10.19009800647638,
-          -11.734746822914682,
-          10.256492925033129,
-          9.129224659199725,
-          -8.122414507022684,
-          9.882407336336339,
-          -11.56055321817371,
-          9.303881281618628,
-          10.637757635358245,
-          9.595110590252904,
-          -11.47287102714887,
-          8.803456002639999,
-          -11.305504845936646,
-          9.211449661154695,
-          10.15056744139987,
-          9.244884524170272,
-          -8.622868169789937,
-          -8.143506405510069,
-          8.532000545667646,
-          -10.501565678532614,
-          -12.619415204239276,
-          -10.988366100218613,
-          9.54728273183063,
-          -10.450173829645184,
-          9.85360187388049,
-          -10.074492949826036,
-          -8.385361170241316,
-          -12.056307591018868,
-          -11.148060497364925,
-          10.334282133200604,
-          9.621713655005815,
-          9.286110565006235,
-          -9.046208201535482,
-          -11.493790557429243,
-          -6.1757250204357454,
-          9.859590694485885,
-          11.100901163498198,
-          -8.711601393405388,
-          9.87572025931899,
-          -8.998267257885837,
-          -9.524611315031702,
-          -9.30675667505701,
-          -13.73310630574944,
-          10.578049082851997,
-          -10.504129591858577,
-          -7.228021418945616,
-          9.830491414839239,
-          -9.36957502708723,
-          9.576053896218253,
-          8.860353063678302,
-          10.789161708931648,
-          9.119796052402986,
-          -11.684077813820727,
-          -8.681688696592204,
-          -11.598089638320632,
-          -9.720824833166688,
-          -9.769328025072658,
-          11.500695751877352,
-          -9.93288882949131,
-          9.952557861879738,
-          -9.527543777412866,
-          -10.654667988092585,
-          -12.194660581853508,
-          9.564365691860218,
-          -9.447246574189478,
-          -9.450908309295,
-          -9.224437495066416,
-          9.884874035519717,
-          9.026415864363742,
-          -9.19837672341817,
-          10.734940785866735,
-          -9.1704280606971,
-          -10.10552930116827,
-          8.097452972598235,
-          -9.662572109031634,
-          -10.181631289668342,
-          -9.583683310981426,
-          9.912843371352764,
-          -10.072772362002093,
-          10.328572639916743,
-          -10.609984189278547,
-          11.119358424701105,
-          11.107690865590863,
-          -11.840348810097696,
-          -9.857077695531357,
-          -9.68284191833003,
-          -10.232600169839529,
-          11.975778685102673,
-          -12.806658853674692,
-          11.22773695344374,
-          9.184697593144666,
-          -9.921010289007532,
-          9.028267519185757,
-          10.085840978763107,
-          9.505375813582475,
-          -9.014421282250668,
-          9.57617843003726,
-          9.211343674951403,
-          -9.394995002612685,
-          -9.345213944365197,
-          -11.180190874781186,
-          -10.957858676695645,
-          8.955953904183094,
-          10.67586991992589,
-          7.769919864653933,
-          -9.72742752890503,
-          -10.279574755832702,
-          11.32902232044281,
-          -11.755063430398948,
-          -8.344369216425296,
-          -10.02644511379405,
-          9.900283848053494,
-          11.493195016663115,
-          10.583947194475718,
-          -9.358433883138433,
-          10.686344901540338,
-          10.045541011585293,
-          9.830015595411897,
-          -11.544231384612637,
-          9.722056106993456,
-          -10.603605788033924,
-          -9.439329963559508,
-          -10.713018816881698,
-          -9.632167480322757,
-          -10.200877381782238,
-          10.703320106695436,
-          10.657236957119995,
-          -8.373507523803628,
-          10.008324715901423,
-          -9.76176836300644,
-          8.098911528499949,
-          -11.267032424642657,
-          -9.545011377355003,
-          9.653550737519064,
-          10.664854229735177,
-          7.756074320369326,
-          -10.590387454024576,
-          10.039745648545798,
-          9.606679407091114,
-          -10.499833585541204,
-          9.573075707962722,
-          -7.612403036402938,
-          -8.926790821822383,
-          9.622635235769545,
-          -9.229802460808076,
-          -8.090720694537413,
-          11.028177302734425,
-          -6.737963214569566,
-          -10.680420976223104,
-          10.059809453177273,
-          -9.494158187949202,
-          -10.701634104019426,
-          10.561294840228184,
-          -9.506629259627951,
-          9.784731317634183,
-          -10.891232025980909,
-          9.911908964963786,
-          -10.833829559226377,
-          9.12949555721316,
-          -10.912112013907532,
-          10.35060381679225,
-          -13.320653294795921,
-          11.121893281341517,
-          10.918751015776497,
-          8.45003673208447,
-          -9.139687299930717,
-          10.676317860754459,
-          8.010009222944104,
-          -12.096869231098818,
-          -12.095280479470755,
-          10.383583298075461,
-          9.835999987925721,
-          12.000499956377404,
-          11.560738328077445,
-          -9.197399391608963,
-          -9.951633810245838,
-          10.637155032732728,
-          -11.437203934259085,
-          8.81194596522117,
-          -9.421593378109085,
-          9.742952530068106,
-          -8.489576301483751,
-          -7.833164802146369,
-          11.016525538841103,
-          8.718583468899283,
-          10.172670544732782,
-          -8.792305328323065,
-          9.935652709278086,
-          10.373556551642174,
-          -10.49653016266789,
-          9.60616643887641,
-          -11.094481721506767,
-          10.879818065068081,
-          -9.848813815886317,
-          9.29429864174915,
-          -10.639290846168628,
-          9.460083597830028,
-          9.841473674850477,
-          8.599003090885033,
-          -11.404820164083755,
-          -9.407137365715943,
-          9.124022238121803,
-          9.41171185857959,
-          -8.551570933308733,
-          -12.150726734683857,
-          -10.319464681643376,
-          -12.953048216108026,
-          10.425099194881327,
-          -10.105162654838699,
-          -9.937986544155816,
-          10.36331117829913,
-          -8.903973229572086,
-          -10.55184680576174,
-          9.289618690708014,
-          9.127362721504234,
-          -8.779486129015138,
-          11.835617581094589,
-          -10.122407138049446,
-          10.550967668545892,
-          -10.544337513846221,
-          -10.999457139454432,
-          -10.217238978354775,
-          -9.273199840276662,
-          -11.016841201216002,
-          -11.1698761576848,
-          11.167516499331306,
-          9.367674950355974,
-          9.100356457449077,
-          -9.295523443175176,
-          8.807767162251315,
-          10.864778329375858,
-          9.762752539491188,
-          8.965630007859824,
-          -8.414566028129338,
-          11.763424515850577,
-          -10.648967614178057,
-          10.325627608522714,
-          -12.006823983263937,
-          -11.032905695103823,
-          7.875355978931259,
-          -7.872987374040557,
-          8.557078125255877,
-          9.890897193959669,
-          -10.28435753600134,
-          -10.475033177427358,
-          9.483873421238133,
-          9.947919718785567,
-          -9.264259204398924,
-          9.873526527385298,
-          8.127000270071488,
-          8.389059148072546,
-          -10.895680868870553,
-          -10.382640628865277,
-          -9.395302232740342,
-          9.814085385807294,
-          12.582735790931647,
-          -9.497992301641332,
-          -10.039165505360259,
-          11.421793936583319,
-          -11.67074914432345,
-          -8.31027365502481,
-          9.519758512892825,
-          -8.071444252740665,
-          9.188803029414686,
-          -8.004772044376526,
-          9.160362137335046,
-          11.677643450807432,
-          10.79582576356283,
-          -9.338248290768874,
-          10.859458472390237,
-          -9.105542360478184,
-          9.007882679044494,
-          -11.289027225317689,
-          -10.629720184289466,
-          10.435050628080758,
-          -9.946808984708365,
-          -8.711619620589921,
-          -11.294483794743602,
-          -11.703103208010667,
-          9.739141307271156,
-          -11.151981599907982,
-          -8.121055009946007,
-          11.671249057897967,
-          10.342526449988778,
-          9.430432555792846,
-          7.447090681185524,
-          -9.113207565300755,
-          10.334691697174396
+          -0.18010679550866282,
+          -0.7672426548564824,
+          -4.457953968275022,
+          -1.9116350337326868,
+          0.7781010797877048,
+          3.891111966305096,
+          0.3960386241004237,
+          2.0953495032792713,
+          0.8445197083791554,
+          -1.9831737181544695,
+          -3.7477449632684636,
+          1.7164476181439108,
+          1.9444020148866006,
+          0.9483580206928721,
+          0.6255700766988932,
+          0.20436654856021708,
+          4.45950244723297,
+          -2.174294394889508,
+          5.040583615626097,
+          2.2108772564559898,
+          -4.790845993867425,
+          4.860809033599231,
+          -0.6416924967306716,
+          -1.4116907722196008,
+          -4.054224633280421,
+          1.0626734098777453,
+          1.1596547973526263,
+          -3.4630485361538903,
+          -1.906871093242362,
+          0.4812003688042443,
+          4.766293984622377,
+          3.1244038198031747,
+          0.8841943048764955,
+          3.379506706777499,
+          1.5971801507217522,
+          2.7188393236452226,
+          0.08586492775399268,
+          5.026197956634262,
+          0.8802081900566359,
+          -3.6985516129184046,
+          2.1972021939600026,
+          -1.5214008933689045,
+          -4.135710592072413,
+          -1.531533394395102,
+          1.817379638637937,
+          -2.1173798799633796,
+          1.7709406351892376,
+          -0.6715032453560754,
+          -1.780055056808299,
+          -4.200101914872481,
+          3.6244097630052936,
+          3.0710102096307024,
+          3.2164062303559904,
+          3.8856350854051938,
+          -2.957225932759161,
+          1.9179881261655796,
+          2.6928599142890945,
+          2.224282131997003,
+          1.1290459804662394,
+          -0.6910060824271911,
+          -3.656812081574361,
+          0.5501778381289775,
+          1.9740298485384624,
+          -3.6843077361541443,
+          4.968052171725112,
+          1.271106970177338,
+          -3.544029750917712,
+          4.314029421900632,
+          2.425859024941132,
+          -2.1128055330204405,
+          -3.897608838167139,
+          2.121751313382636,
+          2.4477076300412133,
+          -3.7533552726424992,
+          -2.9235939314583717,
+          4.9442550208496465,
+          1.2459899976833366,
+          -3.88156877092638,
+          -4.643449552867564,
+          -1.6639472303532434,
+          2.7939292191208693,
+          3.990384363762179,
+          4.938235869590259,
+          -2.274245905884132,
+          3.671201800825046,
+          -1.0658324968328987,
+          4.906754006980413,
+          4.295718812252587,
+          -3.259700597991161,
+          -1.0190334049440795,
+          4.405381101195345,
+          -3.17206652209362,
+          3.450760045495609,
+          0.15530150934826548,
+          -3.029448044328557,
+          -4.069302590749717,
+          -1.4853104670925878,
+          -4.636655782451689,
+          0.7201723070641783,
+          0.8356241554721207,
+          -0.13886045261635083,
+          -2.3217142923257197,
+          3.695450511885398,
+          -2.810156206099232,
+          2.3349901974356415,
+          2.265795071424101,
+          3.0582782906153474,
+          4.801591189176464,
+          -4.634213154968704,
+          2.876277020994607,
+          1.6596416785399484,
+          -0.2934035069240384,
+          3.8983159543262884,
+          1.4064006045919317,
+          2.459442908715901,
+          -1.362213667493569,
+          -0.9865380747139163,
+          1.804151847787229,
+          3.943223207911511,
+          -0.1876017249175641,
+          3.935008081300892,
+          1.3602422882307987,
+          -5.045976297080276,
+          1.1678062234908246,
+          0.8987043170125819,
+          -3.1967655448030277,
+          -2.4763188412212847,
+          4.340210435002489,
+          -2.450942093928689,
+          -3.898501588164942,
+          2.016887450410854,
+          -4.390123731424806,
+          3.5569587277502714,
+          2.978472469539292,
+          -4.466689220775764,
+          -4.508442527164456,
+          1.5345684890703364,
+          4.379528842789598,
+          -0.2662728147146298,
+          -0.35755918460962377,
+          3.9818290413998474,
+          1.0295099647594421,
+          4.494523397037962,
+          2.2509136033789874,
+          -2.5520408386171187,
+          -4.146433386849946,
+          -5.020314826231734,
+          -1.8176922367654367,
+          4.618997270761674,
+          -2.04777914860471,
+          0.9083924460479986,
+          -2.131396531359586,
+          0.2947126822223973,
+          1.4766143390287576,
+          1.3195845171936593,
+          4.535975194042163,
+          2.462919216150457,
+          -2.280527433085931,
+          0.6261922036795582,
+          -3.4910396881243915,
+          -4.0061396961432365,
+          3.313809312309105,
+          1.1663933400273807,
+          -4.359978594669121,
+          -3.45683365151378,
+          1.2679686906443601,
+          3.691220259529916,
+          2.806888462726734,
+          0.9866796882416882,
+          4.449486062975917,
+          -0.8700757013996778,
+          0.10235929544132549,
+          4.108778937348727,
+          5.096419185498019,
+          0.7188541473762422,
+          2.606032782782594,
+          0.3582092983605305,
+          -3.1020008173686158,
+          4.266394567684892,
+          1.448872931185508,
+          -3.798205987393038,
+          -2.248922318021415,
+          1.172241698777798,
+          3.5286731977109573,
+          -1.8112612298453987,
+          0.8555254927938236,
+          -0.01442637257959234,
+          4.20971165303238,
+          4.5762826448882,
+          -2.9509364735839307,
+          3.5512814927917935,
+          2.1121616841888633,
+          1.143121626690771,
+          3.0435090226884904,
+          -3.273923045804408,
+          -1.6655335302663161,
+          -0.13833657625606754,
+          -0.9177871200257597,
+          1.2880632622004873,
+          2.5846471023306252,
+          -1.221941728006128,
+          4.412847525856896,
+          3.834314566643349,
+          -2.0774154646832823,
+          -2.893869646885553,
+          -0.31936908763138394,
+          -1.2833697393153125,
+          4.340875465619837,
+          2.4063725091390573,
+          4.559940441120367,
+          -1.2149858840665457,
+          1.4022727357977933,
+          3.711525222111306,
+          0.5556909755316957,
+          0.04109612068744628,
+          1.655959226721615,
+          0.5950312820720791,
+          1.5817010160616807,
+          2.537307509968267,
+          0.8419871569929409,
+          -2.7246932084772246,
+          -0.06977329971468116,
+          -5.074847636647655,
+          3.826445596149248,
+          -2.385039478762332,
+          3.984876781103421,
+          -1.5885674556652005,
+          -2.8392850327184607,
+          1.0192413219898429,
+          -1.3284575346463683,
+          1.2064976619243613,
+          3.563593028054222,
+          -4.501884576347162,
+          -2.749714498543354,
+          -1.5981567293786245,
+          -1.0985036908103214,
+          -3.9802568508464224,
+          -4.654386764471292,
+          -2.470594687803465,
+          -1.9527372043928102,
+          -1.4654876811164819,
+          2.4497059472787077,
+          -2.061595583247422,
+          1.0673643001849369,
+          -1.9709626112232774,
+          2.185282073878927,
+          4.064609800194806,
+          -2.368253187065985,
+          -3.2793492578040366,
+          -0.11316557050709974,
+          -1.1235627410186693,
+          0.8380945396276767,
+          -2.1727325902247325,
+          2.3808302108970016,
+          4.275181431306231,
+          3.034370822611746,
+          -2.780109720719436,
+          -3.6248607282502396,
+          -4.860164574115111,
+          -2.2584046536396643,
+          -0.12504854030464152,
+          -1.072356559989431,
+          3.664296579771306,
+          -2.642215893308167,
+          2.8058122602923543,
+          -3.057058185414543,
+          -4.268690549671485,
+          0.274683948723184,
+          4.964979322778874,
+          1.9633825661155155,
+          0.17612318711621722,
+          -4.749054880161511,
+          -0.007461188373298455,
+          -1.8535441616311146,
+          0.9328046244272583,
+          -2.4730046734356557,
+          -4.074586042519064,
+          3.0805319617812303,
+          -2.712521841636407,
+          -1.6985336268382643,
+          -1.9488648423044856,
+          -3.8972566283783916,
+          -0.9163411898755216,
+          2.3427664473781418,
+          -4.546587080141759,
+          2.019603221466011,
+          -1.5867614905654515,
+          1.3948336849906449,
+          2.9861220826729946,
+          -2.659529801811356,
+          -0.6466040580634864,
+          -4.920081117745847,
+          0.8881196880164532,
+          3.7871118349417676,
+          -2.182244409901131,
+          5.057996520423509,
+          -1.2221727718832294,
+          2.0635455509066523,
+          4.153925192099812,
+          -4.9130053503886675,
+          -0.7725723823737294,
+          0.4498215159668142,
+          -2.485489372913258,
+          -0.762193397675655,
+          4.912017758172017,
+          -1.6781728363635535,
+          -3.348347863102221,
+          -2.4865080601901597,
+          -3.8828780375851375,
+          -1.1088315657200418,
+          -2.638945799619078,
+          4.730108250236721,
+          -0.5222169566375507,
+          5.030686974257935,
+          1.6426687161354048,
+          2.2864817653698264,
+          -2.3101648646156083,
+          -4.146281501290099,
+          0.9450857874123608,
+          2.099860707652174,
+          -3.3495090586607708,
+          -2.8331415719960344,
+          -0.01039919877954798,
+          0.6193676610716476,
+          2.54202969681897,
+          3.7454874873370594,
+          2.0646806757352785,
+          -1.7353960305579048,
+          -3.000702744203245,
+          -4.091147718760283,
+          0.8426488221100366,
+          -2.640666399472402,
+          3.008458892927078,
+          -0.46570868410807353,
+          2.7591115188912196,
+          3.5078584330910667,
+          -4.84140428576252,
+          -4.271376429003688,
+          2.7989257178246385,
+          0.3384549101911354,
+          -3.9884341305316777,
+          -2.543054332428709,
+          3.9849227849458453,
+          -2.610848143614594,
+          -1.7337121715234356,
+          -1.1569967353785273,
+          1.8329637352501438,
+          3.9130122333922275,
+          -3.589334547674845,
+          2.011226260587586,
+          -3.4104100146340484,
+          0.0162511020790701,
+          -3.2406018885451804,
+          3.9979449236834634,
+          0.7562853300176684,
+          5.058550264116438,
+          -4.440784506042762,
+          1.778867730162979,
+          -3.427063722170859,
+          1.8052542367046058,
+          3.6994797037790663,
+          -2.704840832315911,
+          -1.5797649514325616,
+          -4.3774994315565126,
+          -0.8169459266521084,
+          3.6139220618785055,
+          -4.950383557568272,
+          1.7550587793579409,
+          -4.716517344439534,
+          -4.666605702181398,
+          1.3204030174101007,
+          -0.7840469647387378,
+          -1.9286143638014588,
+          -0.6333574043036378,
+          -0.03981026851945746,
+          -4.769354743791948,
+          1.3581226528685333,
+          1.8619731296004076,
+          3.749689237497045,
+          1.6095058068601897,
+          -0.21000122497478024,
+          1.3994789768991458,
+          3.1344456497800044,
+          5.048205210874131,
+          -2.105940391233378,
+          -1.2976826484750301,
+          2.547020458791164,
+          -2.189668570688336,
+          -2.8743455200280343,
+          -4.337853518360965,
+          -3.7426352901669846,
+          3.8849403288973674,
+          3.672054471091747,
+          -0.6602308529266274,
+          -1.3127777042151756,
+          3.5148159136938437,
+          -3.2571853068446726,
+          -2.335798472448177,
+          2.96544008247879,
+          -1.3758247878939915,
+          -4.077190654225953,
+          -4.716124876862889,
+          3.1380257770395295,
+          -0.8532866797203189,
+          -4.315096661013493,
+          -0.3006160685217045,
+          1.2842663731781165,
+          -3.7146147111673544,
+          0.40729304537951805,
+          -0.2008326858048637,
+          -0.4742617545592509,
+          -4.38595915254145,
+          1.6326864972125543,
+          1.6649350352753487,
+          -4.099003119575341,
+          -4.607920429495612,
+          -1.1700486793176523,
+          0.2810762557685784,
+          2.9223222551876127,
+          0.9024029873071271,
+          0.024783118178101304,
+          -2.0661140262987687,
+          -1.1078180879037367,
+          -3.5746842564958534,
+          1.8259639956557496,
+          -0.524107136315199,
+          3.859359723340641,
+          2.2608909470303002,
+          3.1530162316553136,
+          0.4905344063047261,
+          -3.692972844459243,
+          4.5597985315977505,
+          -1.484054140700691,
+          1.442062888237733,
+          -1.0874202489179043,
+          4.993424492409747,
+          -1.1701804003989427,
+          1.6606744771195059,
+          -0.41055324038902086,
+          1.2473364755046479,
+          1.7754690057070253,
+          -2.011071583322603,
+          2.444904416747546,
+          2.897113439549865,
+          4.652063126115036,
+          2.6743823082398643,
+          -0.5263001858319134,
+          -0.4190545825725911,
+          -2.7092557702007394,
+          -3.2424952605966753,
+          -3.3542557507392816,
+          -1.8636689620851707,
+          -4.6795052513835405,
+          2.175491949100567,
+          4.5459580282598635,
+          -0.6560228549671994,
+          4.539147846147823,
+          -4.300790406464515,
+          3.156698864354941,
+          -0.0823050495433515,
+          3.3028426696779425,
+          -0.07878670125927378,
+          1.8021678763530655,
+          2.875898054559994,
+          -2.5544488455102807,
+          1.4098432320456178,
+          2.436217721365322,
+          -4.4092617873387585,
+          -2.2668327110256095,
+          1.5676456462079864,
+          4.206736780617985,
+          2.286061151773639,
+          3.7741837565209453,
+          -0.3433906049538695,
+          -0.18307162107114205,
+          -2.2323207414297177,
+          4.301605446859164,
+          4.75476580157711,
+          -1.6009969819023144,
+          3.464187105746208,
+          -2.6830902731242134,
+          0.94826822455307,
+          -2.8412171328204425,
+          2.4673470501812087,
+          -3.7401759429587766,
+          1.2230279073861539,
+          -3.850105339675697,
+          2.6654183583817224,
+          0.045449722248616986,
+          3.513701900590399,
+          2.6602988684919646,
+          -0.6116040834612946,
+          -4.417578559340845,
+          0.9001824601466399,
+          -4.163906679177962,
+          -2.448510056160502,
+          4.667652275808083,
+          0.25189122316408596,
+          -3.0650891465629875,
+          2.8353629947574515,
+          -2.3599267425970316,
+          -4.777413355930363,
+          -2.9330456107779628,
+          -4.564618299402309,
+          -3.710676796008792,
+          4.340252570092219,
+          -4.600155002566445,
+          1.561436324714287,
+          -1.130357349330449,
+          0.17940962360876433,
+          -2.7012660143787275,
+          -0.7285407519332479,
+          4.266643386598505,
+          2.190090300564685,
+          3.0940745072064066,
+          -3.2739411258538746,
+          1.2891888603639643,
+          -3.335277524020574,
+          -3.968792002002597,
+          -2.436370465830782,
+          1.637369409522698,
+          -2.295981795704355,
+          -0.7774668912445524,
+          5.101243964364456,
+          -4.000684892385912,
+          4.30315526923376,
+          -3.9775450370138214,
+          -2.4142574048383607,
+          -1.5484775915954354,
+          -0.5161347685226447,
+          3.1641117756910075,
+          4.500093000636739,
+          1.5475646095814595,
+          -2.067395152038096,
+          1.3534601128542931,
+          3.6908057263604244,
+          1.0403760844838539,
+          0.15201681803558031,
+          -4.046283398933412,
+          -1.9271750769426883,
+          -5.058595191028031,
+          0.11537337433629791,
+          -2.7031696422304474,
+          -1.1730118443170108,
+          -0.11000269051447553,
+          -5.043909621102462,
+          -1.6710759505731572,
+          -4.272899853409514,
+          -1.1654409023781334,
+          -3.3005869338735128,
+          -1.458196102488004,
+          3.9032591717888474,
+          -2.6684786569045813,
+          -2.140009946629527,
+          3.155387017552136,
+          -1.1788877812484264,
+          2.120847699682945,
+          3.811766411717586,
+          -2.984919557563421,
+          -1.5971025503733611,
+          2.060446438468908,
+          -2.436038200852696,
+          2.6884172247414195,
+          -2.095047697061673,
+          -0.08396722835045356,
+          3.325566821101577,
+          -2.1929870089035495,
+          -2.8488768663786597,
+          -3.8874764257117747,
+          3.9686112536503915,
+          -2.3052104365962296,
+          3.189286939902762,
+          2.518285754534574,
+          5.044231024567291,
+          -1.5938016048847556,
+          4.870560357419305,
+          -2.886936464132061,
+          -2.786146359895992,
+          -3.5424238207168353,
+          -0.8289704634962263,
+          5.079236308685817,
+          -4.900825728472474,
+          4.940838384489523,
+          -2.848866410473999,
+          3.7313593659962043,
+          -2.5037276678738927,
+          3.3219395881924756,
+          -4.02862962966484,
+          -0.5444893412298129,
+          4.404508646853796,
+          3.4567506158413837,
+          -2.7357249542201654,
+          -2.25451788759861,
+          -5.015351207760341,
+          -3.5845912256898504,
+          3.798139714702864,
+          -4.625794485901265,
+          3.199109106546852,
+          2.5676382984821364,
+          -0.26484383395888145,
+          4.138105863584822,
+          -1.5619871789989905,
+          4.281158440786592,
+          -1.8395447174452135,
+          3.1674816672867303,
+          -1.3282166484682025,
+          -2.194462027123575,
+          3.8888771826828927,
+          -1.7992784131610038,
+          5.066799007492935,
+          0.18196578196725444,
+          -2.437608803193887,
+          0.255183107748695,
+          -0.4297067378932944,
+          -0.7425337303128163,
+          1.3756210189765623,
+          -3.9003308374084633,
+          -1.3843556124987786,
+          -2.8191924313012717,
+          -1.1690801849704595,
+          0.0111200197326502,
+          2.1621278930525696,
+          -4.94822644488639,
+          1.9672058906413916,
+          -4.328458751966387,
+          -2.0118004800375306,
+          5.087596721193566,
+          0.05381663808647996,
+          -3.3366184322006225,
+          4.251894705444431,
+          -4.357362539172068,
+          1.4580548542158231,
+          -1.7927847584578056,
+          0.5245692316978454,
+          -1.4413961434560334,
+          -0.8545787201639161,
+          3.074775676842175,
+          -2.94578806204494,
+          0.7231847594752265,
+          -0.014432680968033296,
+          -2.0185964115349635,
+          2.4102642762676982,
+          4.902906182712294,
+          0.6861334165101418,
+          -4.80033281090374,
+          -4.473309676511215,
+          2.587913547980147,
+          -2.7502220082428424,
+          -2.5702995282379018,
+          -1.1531475461081855,
+          3.7115000871883845,
+          1.2941543775266373,
+          3.9566140512985237,
+          0.4269741260115447,
+          4.3945033819344586,
+          -2.14241268262119,
+          -4.943102572801483,
+          -1.4823577699331985,
+          -0.1991525312925857,
+          1.643315056006636,
+          2.01893768188254,
+          -1.0012831800113915,
+          -3.8619134565151993,
+          4.6685776436908535,
+          3.3417802610117837,
+          2.4747846248706864
          ]
         },
         {
@@ -16112,1345 +20041,2677 @@
          "scene": "scene2",
          "showlegend": false,
          "text": [
-          "example_2",
-          "redundancy_40_0",
-          "Complementary_79_0",
-          "mutual_error_24_0",
-          "example_9",
-          "example_10",
-          "example_23",
-          "redundancy_18_0",
-          "example_29",
-          "example_30",
-          "mutual_error_6_0",
-          "example_33",
-          "example_39",
-          "Complementary_53_0",
-          "Complementary_70_0",
-          "mutual_error_28_0",
-          "redundancy_62_0",
-          "Complementary_98_0",
-          "example_60",
-          "Complementary_42_0",
-          "Complementary_89_0",
-          "example_66",
-          "mutual_error_27_0",
-          "example_70",
-          "example_72",
-          "example_76",
-          "Complementary_78_0",
-          "mutual_error_16_0",
-          "redundancy_25_0",
-          "example_81",
-          "example_82",
-          "Complementary_22_0",
-          "example_86",
-          "example_88",
-          "example_96",
-          "mutual_error_9_0",
-          "example_101",
-          "Complementary_10_0",
-          "Complementary_81_0",
-          "example_110",
-          "example_118",
-          "Complementary_58_0",
-          "redundancy_8_0",
-          "Complementary_74_0",
-          "example_137",
-          "example_139",
-          "example_141",
-          "redundancy_5_0",
-          "Complementary_0_0",
-          "Complementary_14_0",
-          "example_165",
-          "example_168",
-          "example_174",
-          "redundancy_55_0",
-          "Complementary_8_0",
-          "example_196",
-          "redundancy_11_0",
-          "example_199",
-          "example_204",
-          "example_208",
-          "Complementary_18_0",
-          "Complementary_77_0",
-          "example_211",
-          "redundancy_6_0",
-          "example_213",
-          "Complementary_49_0",
-          "example_218",
-          "example_221",
-          "redundancy_48_0",
-          "redundancy_30_0",
-          "example_231",
-          "example_235",
-          "example_237",
-          "Complementary_54_0",
-          "example_244",
-          "example_247",
-          "Complementary_47_0",
-          "redundancy_9_0",
-          "Complementary_92_0",
-          "Complementary_68_0",
-          "Complementary_44_0",
-          "redundancy_15_0",
-          "Complementary_41_0",
-          "Complementary_16_0",
-          "example_266",
-          "example_275",
-          "redundancy_61_0",
-          "example_280",
-          "Complementary_65_0",
-          "example_286",
-          "mutual_error_25_0",
-          "mutual_error_30_0",
-          "example_292",
-          "redundancy_53_0",
-          "example_296",
-          "Complementary_17_0",
-          "example_299",
-          "mutual_error_15_0",
-          "example_305",
-          "example_306",
-          "Complementary_84_0",
-          "example_309",
-          "Complementary_57_0",
-          "example_311",
-          "redundancy_54_0",
-          "redundancy_43_0",
-          "Complementary_55_0",
-          "redundancy_2_0",
-          "redundancy_34_0",
-          "example_323",
-          "example_327",
-          "mutual_error_32_0",
-          "Complementary_20_0",
-          "redundancy_17_0",
-          "Complementary_38_0",
-          "Complementary_3_0",
-          "Complementary_7_0",
-          "example_346",
-          "example_350",
-          "example_351",
-          "example_352",
-          "example_355",
-          "redundancy_31_0",
-          "Complementary_46_0",
-          "example_361",
-          "example_362",
-          "Complementary_52_0",
-          "example_365",
-          "mutual_error_23_0",
-          "mutual_error_2_0",
-          "redundancy_65_0",
-          "Complementary_87_0",
-          "example_382",
-          "example_388",
-          "example_394",
-          "example_398",
-          "example_404",
-          "Complementary_56_0",
-          "Complementary_63_0",
-          "example_423",
-          "Complementary_24_0",
-          "example_425",
-          "example_428",
-          "mutual_error_21_0",
-          "Complementary_23_0",
-          "example_432",
-          "example_433",
-          "example_436",
-          "example_439",
-          "example_442",
-          "example_447",
-          "Complementary_12_0",
-          "redundancy_42_0",
-          "example_450",
-          "mutual_error_31_0",
-          "redundancy_21_0",
-          "example_456",
-          "example_462",
-          "Complementary_1_0",
-          "Complementary_88_0",
-          "example_468",
-          "example_477",
-          "Complementary_48_0",
-          "redundancy_28_0",
-          "example_482",
-          "Complementary_91_0",
-          "Complementary_82_0",
-          "Complementary_27_0",
-          "Complementary_97_0",
-          "example_499",
-          "redundancy_63_0",
-          "example_513",
-          "Complementary_71_0",
-          "redundancy_12_0",
-          "example_518",
-          "example_521",
-          "example_522",
-          "Complementary_43_0",
-          "example_526",
-          "example_527",
-          "Complementary_96_0",
-          "example_529",
-          "Complementary_37_0",
-          "example_534",
-          "example_535",
-          "example_538",
-          "example_539",
-          "example_541",
-          "example_542",
-          "example_543",
-          "Complementary_59_0",
-          "Complementary_31_0",
-          "example_549",
-          "example_551",
-          "example_554",
-          "Complementary_60_0",
-          "example_570",
-          "Complementary_86_0",
-          "mutual_error_3_0",
-          "example_576",
-          "example_578",
-          "example_580",
-          "mutual_error_8_0",
-          "mutual_error_19_0",
-          "mutual_error_11_0",
-          "example_593",
-          "Complementary_72_0",
-          "Complementary_35_0",
-          "example_597",
-          "redundancy_14_0",
-          "redundancy_7_0",
-          "Complementary_25_0",
-          "redundancy_47_0",
-          "example_605",
-          "example_618",
-          "Complementary_62_0",
-          "redundancy_20_0",
-          "example_625",
-          "example_630",
-          "example_634",
-          "Complementary_34_0",
-          "Complementary_9_0",
-          "example_644",
-          "Complementary_19_0",
-          "example_650",
-          "example_652",
-          "redundancy_60_0",
-          "redundancy_37_0",
-          "mutual_error_20_0",
-          "Complementary_28_0",
-          "Complementary_73_0",
-          "example_689",
-          "Complementary_4_0",
-          "example_696",
-          "example_697",
-          "redundancy_29_0",
-          "Complementary_45_0",
-          "example_707",
-          "mutual_error_18_0",
-          "example_712",
-          "example_713",
-          "redundancy_36_0",
-          "example_716",
-          "example_720",
-          "mutual_error_29_0",
-          "Complementary_26_0",
-          "redundancy_24_0",
-          "example_737",
-          "mutual_error_14_0",
-          "redundancy_35_0",
-          "example_746",
-          "example_750",
-          "redundancy_64_0",
-          "example_765",
-          "example_773",
-          "Complementary_13_0",
-          "mutual_error_22_0",
-          "mutual_error_10_0",
-          "Complementary_15_0",
-          "Complementary_80_0",
-          "example_788",
-          "Complementary_5_0",
-          "redundancy_32_0",
-          "redundancy_13_0",
-          "Complementary_30_0",
-          "redundancy_50_0",
-          "Complementary_66_0",
-          "Complementary_51_0",
-          "Complementary_2_0",
-          "redundancy_27_0",
-          "Complementary_85_0",
-          "example_819",
-          "Complementary_76_0",
-          "example_824",
-          "mutual_error_4_0",
-          "mutual_error_5_0",
-          "redundancy_33_0",
-          "example_834",
-          "Complementary_75_0",
-          "Complementary_33_0",
-          "example_843",
-          "redundancy_16_0",
-          "redundancy_3_0",
-          "Complementary_93_0",
-          "example_858",
-          "redundancy_1_0",
-          "redundancy_10_0",
-          "mutual_error_26_0",
-          "Complementary_36_0",
-          "redundancy_52_0",
-          "example_876",
-          "redundancy_4_0",
-          "Complementary_21_0",
-          "mutual_error_1_0",
-          "example_892",
-          "Complementary_83_0",
-          "redundancy_51_0",
-          "redundancy_0_0",
-          "example_901",
-          "redundancy_56_0",
-          "mutual_error_0_0",
-          "example_909",
-          "Complementary_50_0",
-          "redundancy_19_0",
-          "Complementary_95_0",
-          "Complementary_90_0",
-          "example_922",
-          "Complementary_61_0",
-          "Complementary_6_0",
-          "Complementary_69_0",
-          "Complementary_94_0",
-          "example_934",
-          "example_935",
-          "Complementary_11_0",
-          "example_939",
-          "example_940",
-          "example_945",
-          "Complementary_67_0",
-          "mutual_error_7_0",
-          "redundancy_57_0",
-          "mutual_error_17_0",
-          "Complementary_40_0",
-          "Complementary_32_0",
-          "example_960",
-          "redundancy_59_0",
-          "Complementary_29_0",
-          "Complementary_39_0",
-          "redundancy_44_0",
-          "example_984",
-          "example_985",
-          "redundancy_45_0",
-          "Complementary_64_0",
-          "redundancy_38_0"
+          "0_l_0_m-0_2.4-1_0.58-2_0.67-3_0.97",
+          "1_l_0_m-0_0.19-1_0.26-2_0.99-3_0.5",
+          "2_l_0_m-0_2.09-1_0.3-2_0.75-3_0.13",
+          "3_l_0_m-0_0.04-1_0.73-2_1.31-3_0.4",
+          "4_l_0_m-0_0.59-1_0.13-2_0.67-3_0.97",
+          "5_l_0_m-0_0.66-1_0.05-2_0.18-3_0.03",
+          "6_l_0_c_1_2_3-0_0.94-1_0.1-2_0.23-3_0.3",
+          "7_l_0_c_1_2_3-0_0.21-1_0.11-2_0.01-3_1.4",
+          "8_l_0_c_1_2_3-0_0.22-1_0.75-2_1.82-3_0.33",
+          "9_l_0_c_1_2_3-0_0.55-1_0.67-2_0.33-3_0.39",
+          "10_l_0_c_1_2_3-0_0.37-1_0.75-2_0.7-3_1.43",
+          "11_l_0_c_1_2_3-0_1.46-1_0.99-2_0.23-3_0.79",
+          "12_l_0_c_1_2_3-0_1.6-1_0.29-2_1.48-3_0.06",
+          "13_l_0_c_1_2_3-0_0.09-1_0.85-2_0.86-3_0.09",
+          "14_l_0_c_1_2_3-0_1.43-1_0.86-2_0.81-3_0.59",
+          "15_l_0_c_0_1_2-0_0.65-1_0.78-2_0.13-3_1.35",
+          "16_l_0_c_1_2_3-0_0.52-1_0.31-2_0.58-3_0.24",
+          "17_l_0_c_0_1_2-0_0.65-1_0.04-2_0.07-3_1.46",
+          "18_l_0_c_1_2_3-0_0.4-1_0.48-2_0.96-3_1.37",
+          "19_l_0_c_0_1_2-0_0.3-1_0.61-2_1.07-3_0.03",
+          "20_l_0_c_1_2_3-0_0.01-1_0.54-2_1.43-3_1.4",
+          "21_l_0_c_0_1_2-0_0.58-1_1.21-2_0.22-3_0.94",
+          "22_l_0_c_1_2_3-0_0.53-1_0.6-2_0.85-3_0.0",
+          "23_l_0_c_0_1_2-0_0.34-1_1.06-2_0.53-3_1.21",
+          "24_l_0_c_1_2_3-0_0.65-1_1.44-2_1.2-3_0.0",
+          "25_l_0_c_0_1_2-0_0.29-1_0.01-2_0.62-3_1.62",
+          "26_l_0_c_1_2_3-0_0.21-1_0.41-2_1.81-3_0.91",
+          "27_l_0_c_0_1_2-0_0.01-1_0.38-2_0.09-3_1.22",
+          "28_l_0_c_1_2_3-0_0.29-1_0.07-2_0.25-3_0.56",
+          "29_l_0_c_0_1_2-0_0.11-1_0.27-2_0.76-3_0.72",
+          "30_l_0_c_1_2_3-0_1.58-1_0.22-2_1.64-3_0.24",
+          "31_l_0_c_0_1_2-0_0.04-1_1.18-2_0.57-3_1.1",
+          "32_l_0_c_1_2_3-0_0.06-1_1.54-2_0.54-3_0.29",
+          "33_l_0_c_0_1_2-0_0.09-1_0.35-2_0.08-3_0.59",
+          "34_l_0_c_1_2_3-0_0.75-1_0.26-2_0.42-3_0.61",
+          "35_l_0_c_0_1_2-0_0.94-1_0.33-2_1.08-3_0.47",
+          "36_l_0_c_1_2_3-0_0.84-1_0.21-2_1.76-3_1.26",
+          "37_l_0_c_0_1_2-0_1.06-1_0.55-2_0.31-3_0.36",
+          "38_l_0_c_1_2_3-0_0.31-1_0.51-2_0.77-3_0.43",
+          "39_l_0_c_0_1_2-0_0.89-1_0.11-2_0.37-3_2.67",
+          "40_l_0_c_1_2_3-0_0.16-1_0.53-2_0.07-3_0.17",
+          "41_l_0_c_0_1_2-0_0.15-1_0.07-2_0.3-3_0.1",
+          "42_l_0_c_1_2_3-0_0.02-1_0.33-2_1.0-3_0.26",
+          "43_l_0_c_0_1_2-0_0.44-1_2.02-2_0.01-3_0.49",
+          "44_l_0_c_1_2_3-0_0.16-1_0.12-2_0.27-3_0.53",
+          "45_l_0_c_0_1_2-0_0.37-1_1.51-2_0.7-3_0.58",
+          "46_l_0_c_1_2_3-0_1.76-1_0.68-2_0.25-3_1.71",
+          "47_l_0_c_0_1_2-0_0.07-1_1.64-2_0.35-3_1.54",
+          "48_l_0_c_1_2_3-0_1.98-1_0.69-2_0.38-3_0.29",
+          "49_l_0_c_0_1_2-0_1.46-1_0.1-2_0.18-3_1.28",
+          "50_l_0_c_0_1_3-0_0.29-1_0.58-2_0.2-3_0.97",
+          "51_l_0_c_1_2_3-0_1.21-1_1.03-2_0.61-3_0.15",
+          "52_l_0_c_0_1_2-0_1.45-1_1.34-2_2.56-3_1.74",
+          "53_l_0_c_0_1_3-0_0.12-1_0.29-2_0.32-3_0.28",
+          "54_l_0_c_1_2_3-0_1.06-1_0.32-2_0.19-3_0.44",
+          "55_l_0_c_0_1_2-0_0.69-1_0.08-2_0.6-3_0.98",
+          "56_l_0_c_0_1_3-0_0.21-1_0.27-2_0.12-3_0.78",
+          "57_l_0_c_1_2_3-0_0.66-1_0.58-2_0.37-3_0.95",
+          "58_l_0_c_0_1_2-0_0.06-1_0.7-2_1.37-3_0.21",
+          "59_l_0_c_0_1_3-0_0.09-1_0.71-2_0.25-3_0.08",
+          "60_l_0_c_1_2_3-0_0.4-1_1.02-2_1.07-3_0.64",
+          "61_l_0_c_0_1_2-0_0.4-1_0.66-2_1.37-3_0.98",
+          "62_l_0_c_0_1_3-0_0.85-1_0.29-2_0.31-3_0.27",
+          "63_l_0_c_1_2_3-0_0.47-1_0.97-2_1.26-3_1.31",
+          "64_l_0_c_0_1_2-0_0.46-1_0.33-2_0.26-3_0.79",
+          "65_l_0_c_0_1_3-0_0.05-1_0.98-2_0.39-3_0.67",
+          "66_l_0_c_1_2_3-0_1.36-1_0.49-2_0.24-3_0.73",
+          "67_l_0_c_0_1_2-0_0.45-1_0.59-2_0.05-3_0.12",
+          "68_l_0_c_0_1_3-0_0.34-1_0.77-2_0.08-3_0.6",
+          "69_l_0_c_1_2_3-0_1.25-1_0.13-2_0.66-3_0.67",
+          "70_l_0_c_0_1_2-0_0.87-1_1.32-2_0.03-3_0.57",
+          "71_l_0_c_0_1_3-0_0.29-1_0.19-2_0.02-3_0.83",
+          "72_l_0_c_1_2_3-0_1.65-1_0.76-2_0.76-3_0.04",
+          "73_l_0_c_0_1_2-0_0.37-1_0.63-2_0.83-3_0.66",
+          "74_l_0_c_0_1_3-0_0.19-1_0.05-2_0.12-3_0.06",
+          "75_l_0_c_1_2_3-0_0.71-1_0.28-2_0.06-3_0.68",
+          "76_l_0_c_0_1_2-0_0.21-1_0.0-2_0.53-3_2.45",
+          "77_l_0_c_0_1_3-0_1.44-1_0.5-2_0.0-3_0.43",
+          "78_l_0_c_1_2_3-0_0.17-1_1.56-2_1.18-3_0.62",
+          "79_l_0_c_0_1_2-0_0.0-1_0.5-2_0.03-3_1.05",
+          "80_l_0_c_0_1_3-0_0.03-1_0.62-2_0.13-3_1.33",
+          "81_l_0_c_1_2_3-0_1.59-1_0.65-2_0.23-3_0.77",
+          "82_l_0_c_0_1_2-0_0.38-1_1.27-2_0.54-3_0.72",
+          "83_l_0_c_0_1_3-0_0.43-1_0.15-2_0.01-3_1.47",
+          "84_l_0_c_1_2_3-0_0.5-1_0.92-2_0.58-3_0.3",
+          "85_l_0_c_0_1_2-0_0.25-1_1.29-2_0.33-3_0.06",
+          "86_l_0_c_0_1_3-0_1.32-1_0.01-2_0.39-3_0.06",
+          "87_l_0_c_1_2_3-0_0.14-1_0.51-2_0.05-3_1.1",
+          "88_l_0_c_0_1_2-0_0.04-1_0.08-2_0.73-3_0.3",
+          "89_l_0_c_0_1_3-0_0.29-1_1.32-2_0.07-3_1.04",
+          "90_l_0_c_1_2_3-0_0.23-1_0.23-2_0.16-3_0.38",
+          "91_l_0_c_0_1_2-0_0.56-1_0.25-2_0.28-3_1.86",
+          "92_l_0_c_0_1_3-0_0.05-1_0.06-2_0.34-3_0.47",
+          "93_l_0_c_1_2_3-0_1.81-1_0.7-2_0.54-3_0.24",
+          "94_l_0_c_0_1_2-0_0.4-1_0.7-2_0.46-3_1.08",
+          "95_l_0_c_0_1_3-0_1.16-1_0.56-2_0.0-3_0.11",
+          "96_l_0_c_1_2_3-0_0.71-1_0.83-2_0.32-3_0.84",
+          "97_l_0_c_0_1_2-0_1.07-1_0.25-2_0.4-3_0.88",
+          "98_l_0_c_0_1_3-0_0.53-1_0.17-2_0.08-3_0.71",
+          "99_l_0_c_1_2_3-0_0.54-1_0.77-2_1.08-3_0.58",
+          "100_l_0_c_0_1_2-0_0.03-1_0.6-2_0.81-3_1.08",
+          "101_l_0_c_0_1_3-0_0.95-1_1.28-2_0.11-3_0.76",
+          "102_l_0_c_1_2_3-0_0.96-1_0.25-2_0.45-3_0.72",
+          "103_l_0_c_0_1_2-0_0.34-1_0.12-2_0.91-3_0.52",
+          "104_l_0_c_0_1_3-0_1.02-1_1.91-2_0.14-3_0.91",
+          "105_l_0_c_1_2_3-0_0.66-1_0.3-2_0.26-3_0.61",
+          "106_l_0_c_0_1_2-0_0.06-1_0.24-2_1.09-3_0.37",
+          "107_l_0_c_0_1_3-0_0.01-1_0.44-2_0.11-3_0.88",
+          "108_l_0_c_1_2_3-0_0.24-1_0.16-2_0.07-3_0.82",
+          "109_l_0_c_0_1_2-0_0.08-1_0.3-2_0.18-3_3.13",
+          "110_l_0_c_0_1_3-0_0.02-1_0.48-2_0.14-3_0.79",
+          "111_l_0_c_1_2_3-0_0.4-1_0.41-2_0.01-3_0.32",
+          "112_l_0_c_0_1_2-0_0.83-1_0.06-2_0.37-3_1.63",
+          "113_l_0_c_0_1_3-0_0.12-1_0.33-2_0.01-3_0.39",
+          "114_l_0_c_1_2_3-0_1.37-1_0.44-2_0.25-3_0.13",
+          "115_l_0_c_0_1_2-0_0.23-1_0.75-2_0.16-3_0.55",
+          "116_l_0_c_0_1_3-0_0.91-1_0.42-2_0.15-3_0.79",
+          "117_l_0_c_1_2_3-0_2.14-1_0.87-2_1.22-3_0.34",
+          "118_l_0_c_0_1_2-0_0.07-1_1.32-2_0.35-3_1.08",
+          "119_l_0_c_0_1_3-0_0.46-1_0.33-2_0.2-3_0.28",
+          "120_l_0_c_1_2_3-0_0.97-1_0.19-2_0.71-3_0.65",
+          "121_l_0_c_0_1_2-0_0.51-1_0.73-2_0.62-3_0.62",
+          "122_l_0_c_0_1_3-0_0.04-1_0.36-2_0.36-3_0.39",
+          "123_l_0_c_1_2_3-0_1.52-1_0.36-2_1.13-3_0.12",
+          "124_l_0_c_0_1_2-0_0.88-1_0.49-2_0.41-3_0.06",
+          "125_l_0_c_0_1_3-0_0.4-1_0.88-2_0.22-3_0.63",
+          "126_l_0_c_1_2_3-0_2.36-1_0.67-2_0.25-3_0.6",
+          "127_l_0_c_0_1_2-0_0.02-1_0.76-2_0.62-3_1.25",
+          "128_l_0_c_0_1_3-0_0.43-1_0.28-2_0.37-3_0.23",
+          "129_l_0_c_1_2_3-0_0.26-1_0.72-2_0.3-3_0.65",
+          "130_l_0_c_0_1_2-0_0.62-1_0.12-2_0.88-3_0.08",
+          "131_l_0_c_0_1_3-0_0.88-1_0.09-2_0.06-3_0.14",
+          "132_l_0_c_1_2_3-0_2.15-1_0.28-2_0.77-3_0.65",
+          "133_l_0_c_0_1_2-0_1.4-1_1.55-2_0.72-3_1.84",
+          "134_l_0_c_0_1_3-0_0.15-1_2.36-2_0.14-3_0.01",
+          "135_l_0_c_1_2_3-0_0.34-1_0.43-2_0.83-3_0.3",
+          "136_l_0_c_0_1_2-0_1.45-1_1.47-2_0.74-3_1.76",
+          "137_l_0_c_0_1_3-0_0.45-1_0.27-2_0.17-3_0.41",
+          "138_l_0_c_1_2_3-0_1.76-1_0.12-2_0.96-3_0.52",
+          "139_l_0_c_0_1_2-0_0.8-1_1.11-2_0.42-3_0.71",
+          "140_l_0_c_0_1_3-0_1.32-1_0.48-2_0.2-3_0.41",
+          "141_l_0_c_1_2_3-0_0.48-1_1.4-2_0.8-3_0.91",
+          "142_l_0_c_0_1_2-0_0.96-1_0.63-2_0.07-3_0.91",
+          "143_l_0_c_0_1_3-0_0.83-1_1.26-2_0.3-3_0.77",
+          "144_l_0_c_1_2_3-0_0.96-1_0.6-2_1.68-3_0.75",
+          "145_l_0_c_0_1_2-0_0.31-1_0.07-2_0.28-3_0.91",
+          "146_l_0_c_0_1_3-0_0.57-1_0.95-2_0.1-3_0.79",
+          "147_l_0_c_1_2_3-0_1.57-1_1.87-2_0.62-3_0.4",
+          "148_l_0_c_0_1_2-0_0.54-1_0.37-2_0.2-3_0.36",
+          "149_l_0_c_0_1_3-0_0.82-1_0.31-2_0.13-3_0.3",
+          "150_l_0_c_1_2_3-0_0.76-1_1.0-2_0.17-3_0.09",
+          "151_l_0_c_0_1_2-0_0.76-1_0.63-2_0.18-3_1.09",
+          "152_l_0_c_0_1_3-0_0.12-1_0.21-2_0.03-3_0.46",
+          "153_l_0_c_1_2_3-0_1.67-1_0.51-2_0.15-3_0.14",
+          "154_l_0_c_0_1_2-0_1.85-1_0.59-2_0.94-3_1.0",
+          "155_l_0_c_0_1_3-0_0.72-1_0.19-2_0.07-3_0.42",
+          "156_l_0_c_1_2_3-0_1.53-1_0.67-2_0.32-3_0.21",
+          "157_l_0_c_0_1_2-0_0.91-1_0.22-2_0.01-3_0.94",
+          "158_l_0_c_0_1_3-0_0.99-1_0.07-2_0.03-3_0.44",
+          "159_l_0_c_1_2_3-0_1.87-1_0.45-2_0.13-3_0.84",
+          "160_l_0_c_0_1_2-0_0.55-1_1.68-2_0.5-3_0.43",
+          "161_l_0_c_0_1_3-0_0.23-1_0.89-2_0.22-3_0.25",
+          "162_l_0_c_1_2_3-0_1.95-1_1.36-2_0.13-3_0.41",
+          "163_l_0_c_0_1_2-0_0.39-1_0.91-2_0.58-3_0.04",
+          "164_l_0_c_0_1_3-0_0.43-1_0.7-2_0.47-3_0.35",
+          "165_l_0_c_1_2_3-0_1.88-1_0.62-2_1.4-3_0.5",
+          "166_l_0_c_0_1_2-0_0.84-1_0.23-2_0.5-3_0.61",
+          "167_l_0_c_0_1_3-0_0.27-1_1.24-2_0.02-3_0.2",
+          "168_l_0_c_0_2_3-0_0.51-1_0.24-2_0.22-3_0.84",
+          "169_l_0_c_1_2_3-0_0.96-1_0.14-2_0.06-3_0.32",
+          "170_l_0_c_0_1_2-0_0.33-1_0.19-2_0.67-3_2.43",
+          "171_l_0_c_0_1_3-0_0.02-1_1.91-2_0.02-3_0.89",
+          "172_l_0_c_0_2_3-0_0.09-1_0.06-2_1.76-3_0.25",
+          "173_l_0_c_1_2_3-0_0.46-1_0.17-2_0.63-3_0.69",
+          "174_l_0_c_0_1_2-0_0.86-1_0.33-2_1.69-3_0.15",
+          "175_l_0_c_0_1_3-0_0.86-1_1.95-2_0.58-3_0.3",
+          "176_l_0_c_0_2_3-0_0.67-1_0.61-2_0.09-3_0.5",
+          "177_l_0_c_1_2_3-0_1.36-1_1.63-2_0.5-3_0.5",
+          "178_l_0_c_0_1_2-0_0.88-1_0.68-2_0.48-3_0.37",
+          "179_l_0_c_0_1_3-0_0.17-1_0.53-2_0.2-3_0.85",
+          "180_l_0_c_0_2_3-0_1.02-1_0.15-2_0.51-3_0.09",
+          "181_l_0_c_1_2_3-0_0.44-1_0.08-2_0.67-3_0.09",
+          "182_l_0_c_0_1_2-0_0.35-1_0.12-2_0.43-3_1.1",
+          "183_l_0_c_0_1_3-0_0.02-1_0.01-2_0.14-3_0.5",
+          "184_l_0_c_0_2_3-0_1.02-1_0.39-2_0.25-3_0.71",
+          "185_l_0_c_1_2_3-0_0.61-1_2.62-2_1.83-3_0.12",
+          "186_l_0_c_0_1_2-0_0.19-1_0.78-2_0.11-3_0.31",
+          "187_l_0_c_0_1_3-0_0.36-1_0.29-2_0.04-3_0.05",
+          "188_l_0_c_0_2_3-0_0.59-1_0.17-2_0.17-3_0.34",
+          "189_l_0_c_1_2_3-0_0.72-1_0.12-2_1.03-3_0.17",
+          "190_l_0_c_0_1_2-0_1.44-1_0.38-2_0.15-3_0.07",
+          "191_l_0_c_0_1_3-0_0.06-1_0.49-2_0.04-3_0.68",
+          "192_l_0_c_0_2_3-0_0.62-1_0.13-2_0.58-3_1.0",
+          "193_l_0_c_1_2_3-0_0.2-1_0.08-2_0.43-3_0.38",
+          "194_l_0_c_0_1_2-0_0.18-1_0.63-2_0.38-3_1.89",
+          "195_l_0_c_0_1_3-0_0.09-1_0.35-2_0.0-3_0.62",
+          "196_l_0_c_0_2_3-0_1.4-1_0.35-2_0.3-3_0.2",
+          "197_l_0_c_1_2_3-0_0.74-1_0.47-2_0.8-3_0.9",
+          "198_l_0_c_0_1_2-0_0.22-1_0.56-2_0.48-3_0.35",
+          "199_l_0_c_0_1_3-0_0.73-1_0.35-2_0.02-3_0.78",
+          "200_l_0_c_0_2_3-0_1.41-1_0.19-2_0.63-3_1.05",
+          "201_l_0_c_1_2_3-0_1.94-1_0.01-2_1.37-3_0.65",
+          "202_l_0_c_0_1_2-0_0.97-1_0.5-2_1.42-3_0.01",
+          "203_l_0_c_0_1_3-0_2.33-1_0.97-2_0.03-3_0.16",
+          "204_l_0_c_0_2_3-0_0.12-1_0.0-2_2.7-3_0.77",
+          "205_l_0_c_1_2_3-0_1.48-1_0.09-2_0.31-3_0.04",
+          "206_l_0_c_0_1_2-0_1.15-1_0.42-2_0.23-3_0.03",
+          "207_l_0_c_0_1_3-0_0.58-1_0.03-2_0.42-3_0.91",
+          "208_l_0_c_0_2_3-0_0.28-1_0.1-2_0.57-3_0.67",
+          "209_l_0_c_1_2_3-0_0.9-1_0.31-2_0.71-3_0.99",
+          "210_l_0_c_0_1_2-0_0.5-1_0.4-2_0.07-3_0.66",
+          "211_l_0_c_0_1_3-0_1.07-1_0.42-2_0.12-3_1.5",
+          "212_l_0_c_0_2_3-0_0.67-1_0.0-2_0.73-3_0.15",
+          "213_l_0_c_1_2_3-0_0.12-1_0.61-2_0.29-3_1.08",
+          "214_l_0_c_0_1_2-0_0.5-1_0.87-2_1.62-3_0.17",
+          "215_l_0_c_0_1_3-0_0.04-1_0.21-2_0.34-3_1.09",
+          "216_l_0_c_0_2_3-0_0.07-1_0.09-2_1.18-3_0.13",
+          "217_l_0_c_1_2_3-0_0.4-1_1.25-2_0.61-3_1.28",
+          "218_l_0_c_0_1_2-0_0.54-1_0.84-2_0.73-3_0.02",
+          "219_l_0_c_0_1_3-0_0.65-1_1.4-2_0.42-3_0.96",
+          "220_l_0_c_0_2_3-0_1.47-1_0.02-2_0.06-3_0.47",
+          "221_l_0_c_1_2_3-0_1.14-1_0.21-2_0.41-3_0.34",
+          "222_l_0_c_0_1_2-0_0.02-1_0.2-2_0.76-3_0.11",
+          "223_l_0_c_0_1_3-0_0.73-1_0.45-2_0.04-3_0.54",
+          "224_l_0_c_0_2_3-0_0.04-1_0.21-2_1.64-3_0.35",
+          "225_l_0_c_1_2_3-0_0.24-1_0.28-2_1.16-3_0.01",
+          "226_l_0_c_0_1_2-0_0.09-1_0.19-2_0.75-3_0.98",
+          "227_l_0_c_0_1_3-0_0.5-1_0.47-2_0.15-3_0.21",
+          "228_l_0_c_0_2_3-0_0.98-1_0.13-2_0.45-3_0.22",
+          "229_l_0_c_1_2_3-0_0.5-1_0.03-2_0.19-3_0.71",
+          "230_l_0_c_0_1_2-0_0.39-1_0.04-2_1.28-3_1.12",
+          "231_l_0_c_0_1_3-0_0.54-1_1.35-2_0.18-3_0.37",
+          "232_l_0_c_0_2_3-0_0.62-1_0.53-2_1.59-3_0.61",
+          "233_l_0_c_1_2_3-0_1.43-1_1.5-2_0.97-3_0.15",
+          "234_l_0_c_0_1_2-0_0.2-1_0.03-2_0.34-3_2.92",
+          "235_l_0_c_0_1_3-0_0.2-1_0.88-2_0.01-3_1.05",
+          "236_l_0_c_0_2_3-0_1.07-1_0.44-2_0.1-3_0.54",
+          "237_l_0_c_1_2_3-0_2.12-1_0.02-2_0.35-3_0.28",
+          "238_l_0_c_0_1_2-0_1.17-1_0.81-2_0.51-3_0.79",
+          "239_l_0_c_0_1_3-0_0.41-1_1.64-2_0.05-3_0.61",
+          "240_l_0_c_0_2_3-0_0.13-1_0.21-2_0.33-3_0.27",
+          "241_l_0_c_1_2_3-0_0.34-1_2.19-2_0.24-3_1.46",
+          "242_l_0_c_0_1_2-0_0.12-1_0.33-2_0.06-3_0.3",
+          "243_l_0_c_0_1_3-0_0.75-1_0.86-2_0.47-3_0.26",
+          "244_l_0_c_0_2_3-0_0.56-1_0.2-2_0.13-3_0.65",
+          "245_l_0_c_1_2_3-0_1.99-1_0.32-2_0.2-3_0.2",
+          "246_l_0_c_0_1_2-0_0.11-1_0.36-2_0.08-3_0.34",
+          "247_l_0_c_0_1_3-0_0.09-1_1.41-2_0.27-3_0.24",
+          "248_l_0_c_0_2_3-0_0.17-1_0.45-2_0.48-3_0.06",
+          "249_l_0_c_1_2_3-0_1.14-1_0.8-2_0.86-3_0.91",
+          "250_l_0_c_0_1_2-0_0.29-1_0.65-2_0.57-3_1.26",
+          "251_l_0_c_0_1_3-0_0.14-1_0.09-2_0.0-3_0.22",
+          "252_l_0_c_0_2_3-0_0.99-1_0.05-2_0.62-3_0.63",
+          "253_l_0_c_1_2_3-0_0.62-1_0.59-2_1.56-3_0.29",
+          "254_l_0_c_0_1_2-0_0.32-1_0.96-2_0.2-3_0.33",
+          "255_l_0_c_0_1_3-0_0.85-1_2.17-2_0.15-3_0.82",
+          "256_l_0_c_0_2_3-0_0.93-1_0.08-2_0.33-3_1.44",
+          "257_l_0_c_1_2_3-0_0.8-1_0.21-2_0.69-3_0.07",
+          "258_l_0_c_0_1_2-0_0.41-1_1.63-2_0.11-3_0.71",
+          "259_l_0_c_0_1_3-0_0.08-1_0.58-2_0.06-3_0.03",
+          "260_l_0_c_0_2_3-0_0.7-1_0.33-2_0.21-3_0.14",
+          "261_l_0_c_1_2_3-0_0.42-1_0.04-2_0.07-3_0.52",
+          "262_l_0_c_0_1_2-0_1.92-1_1.55-2_0.71-3_0.32",
+          "263_l_0_c_0_1_3-0_0.1-1_1.02-2_0.03-3_0.27",
+          "264_l_0_c_0_2_3-0_1.06-1_0.0-2_0.03-3_1.53",
+          "265_l_0_c_1_2_3-0_0.29-1_0.16-2_0.71-3_0.28",
+          "266_l_0_c_0_1_2-0_0.68-1_0.79-2_0.03-3_0.28",
+          "267_l_0_c_0_1_3-0_0.8-1_0.07-2_0.02-3_1.27",
+          "268_l_0_c_0_2_3-0_0.19-1_0.02-2_0.02-3_1.22",
+          "269_l_0_c_1_2_3-0_0.74-1_0.27-2_0.15-3_0.1",
+          "270_l_0_c_0_1_2-0_1.19-1_0.32-2_0.27-3_2.91",
+          "271_l_0_c_0_1_3-0_0.57-1_0.95-2_0.0-3_0.42",
+          "272_l_0_c_0_2_3-0_0.8-1_0.05-2_0.01-3_0.07",
+          "273_l_0_c_1_2_3-0_1.12-1_0.67-2_0.25-3_0.71",
+          "274_l_0_c_0_1_2-0_0.41-1_1.62-2_0.2-3_0.33",
+          "275_l_0_c_0_1_3-0_0.03-1_1.64-2_0.11-3_0.36",
+          "276_l_0_c_0_2_3-0_0.08-1_0.03-2_0.88-3_0.72",
+          "277_l_0_c_1_2_3-0_0.26-1_0.53-2_0.86-3_0.24",
+          "278_l_0_c_0_1_2-0_0.33-1_0.27-2_0.03-3_1.37",
+          "279_l_0_c_0_1_3-0_0.54-1_0.33-2_0.04-3_0.02",
+          "280_l_0_c_0_2_3-0_0.02-1_0.16-2_0.1-3_0.26",
+          "281_l_0_c_1_2_3-0_0.25-1_0.61-2_1.11-3_0.87",
+          "282_l_0_c_0_1_2-0_0.93-1_0.81-2_0.65-3_0.53",
+          "283_l_0_c_0_1_3-0_0.01-1_1.45-2_0.22-3_0.37",
+          "284_l_0_c_0_2_3-0_0.4-1_0.24-2_0.76-3_0.36",
+          "285_l_0_c_1_2_3-0_0.23-1_0.3-2_0.24-3_0.17",
+          "286_l_0_c_0_1_2-0_0.08-1_0.51-2_0.26-3_0.01",
+          "287_l_0_c_0_1_3-0_1.0-1_0.45-2_0.24-3_0.01",
+          "288_l_0_c_0_2_3-0_1.7-1_0.06-2_0.42-3_0.1",
+          "289_l_0_c_1_2_3-0_0.04-1_0.29-2_0.44-3_0.89",
+          "290_l_0_c_0_1_2-0_1.22-1_0.8-2_0.19-3_1.34",
+          "291_l_0_c_0_1_3-0_0.37-1_0.18-2_0.0-3_0.21",
+          "292_l_0_c_0_2_3-0_0.19-1_0.07-2_0.69-3_0.52",
+          "293_l_0_c_1_2_3-0_0.08-1_1.06-2_0.66-3_0.18",
+          "294_l_0_c_0_1_2-0_0.42-1_0.59-2_0.54-3_0.64",
+          "295_l_0_c_0_1_3-0_0.02-1_1.21-2_0.24-3_0.14",
+          "296_l_0_c_0_2_3-0_0.7-1_0.16-2_0.01-3_0.05",
+          "297_l_0_c_1_2_3-0_1.26-1_1.38-2_0.54-3_0.11",
+          "298_l_0_c_0_1_2-0_0.5-1_1.73-2_0.77-3_0.27",
+          "299_l_0_c_0_1_3-0_0.35-1_0.17-2_0.12-3_0.26",
+          "300_l_0_c_0_2_3-0_1.88-1_0.01-2_0.15-3_0.36",
+          "301_l_0_c_1_2_3-0_1.19-1_0.75-2_0.32-3_0.24",
+          "302_l_0_c_0_1_2-0_1.03-1_0.57-2_0.27-3_1.16",
+          "303_l_0_c_0_1_3-0_0.95-1_0.15-2_0.23-3_0.39",
+          "304_l_0_c_0_2_3-0_0.49-1_0.1-2_1.35-3_0.5",
+          "305_l_0_c_1_2_3-0_0.17-1_0.79-2_1.12-3_0.76",
+          "306_l_0_c_0_1_2-0_0.39-1_0.49-2_1.38-3_0.59",
+          "307_l_0_c_0_1_3-0_0.37-1_0.11-2_0.37-3_2.06",
+          "308_l_0_c_0_2_3-0_0.7-1_0.03-2_0.27-3_1.07",
+          "309_l_0_c_1_2_3-0_0.37-1_0.28-2_0.45-3_0.31",
+          "310_l_0_c_0_1_2-0_1.05-1_0.85-2_0.1-3_1.13",
+          "311_l_0_c_0_1_3-0_0.52-1_0.52-2_0.07-3_0.6",
+          "312_l_0_c_0_2_3-0_0.45-1_0.57-2_0.81-3_0.1",
+          "313_l_0_c_1_2_3-0_0.2-1_0.29-2_0.6-3_0.1",
+          "314_l_0_c_0_1_2-0_0.56-1_0.12-2_0.17-3_1.17",
+          "315_l_0_c_0_1_3-0_0.87-1_1.42-2_0.56-3_0.54",
+          "316_l_0_c_0_2_3-0_0.42-1_0.18-2_0.06-3_0.21",
+          "317_l_0_c_1_2_3-0_1.41-1_0.45-2_0.43-3_0.52",
+          "318_l_0_c_0_1_2-0_0.34-1_0.39-2_0.55-3_0.14",
+          "319_l_0_c_0_1_3-0_0.08-1_0.15-2_0.04-3_1.11",
+          "320_l_0_c_0_2_3-0_0.48-1_0.0-2_0.73-3_0.07",
+          "321_l_0_c_1_2_3-0_0.83-1_0.35-2_0.24-3_1.44",
+          "322_l_0_c_0_1_2-0_0.55-1_0.22-2_1.33-3_0.45",
+          "323_l_0_c_0_1_3-0_1.75-1_0.01-2_0.1-3_0.54",
+          "324_l_0_c_0_2_3-0_0.17-1_0.05-2_0.19-3_1.14",
+          "325_l_0_c_1_2_3-0_0.51-1_0.77-2_0.74-3_0.12",
+          "326_l_0_c_0_1_2-0_0.42-1_0.67-2_0.01-3_0.33",
+          "327_l_0_c_0_1_3-0_1.23-1_0.65-2_0.09-3_0.25",
+          "328_l_0_c_0_2_3-0_0.16-1_0.05-2_0.73-3_0.51",
+          "329_l_0_c_1_2_3-0_0.01-1_0.47-2_0.24-3_1.68",
+          "330_l_0_c_0_1_2-0_0.14-1_0.48-2_0.21-3_0.24",
+          "331_l_0_c_0_1_3-0_1.01-1_0.01-2_0.47-3_0.38",
+          "332_l_0_c_0_2_3-0_0.59-1_0.13-2_0.94-3_0.17",
+          "333_l_0_c_1_2_3-0_0.75-1_0.05-2_0.95-3_0.17",
+          "334_l_0_c_0_1_2-0_0.66-1_0.71-2_0.15-3_0.8",
+          "335_l_0_c_0_1_3-0_0.64-1_0.97-2_0.22-3_0.04",
+          "336_l_0_c_0_2_3-0_0.43-1_0.03-2_0.55-3_0.38",
+          "337_l_0_c_1_2_3-0_0.89-1_0.45-2_0.37-3_0.96",
+          "338_l_0_c_0_1_2-0_0.71-1_0.6-2_0.43-3_1.02",
+          "339_l_0_c_0_1_3-0_1.01-1_0.03-2_0.07-3_0.25",
+          "340_l_0_c_0_2_3-0_0.36-1_0.2-2_0.6-3_0.12",
+          "341_l_0_c_1_2_3-0_1.41-1_0.21-2_1.73-3_0.31",
+          "342_l_0_c_0_1_2-0_0.83-1_0.47-2_0.45-3_0.57",
+          "343_l_0_c_0_1_3-0_0.21-1_0.05-2_0.02-3_0.41",
+          "344_l_0_c_0_2_3-0_0.03-1_0.13-2_0.87-3_0.0",
+          "345_l_0_c_1_2_3-0_1.3-1_0.05-2_0.05-3_0.03",
+          "346_l_0_c_0_1_2-0_0.18-1_0.63-2_0.8-3_1.07",
+          "347_l_0_c_0_1_3-0_0.42-1_1.61-2_0.15-3_0.28",
+          "348_l_0_c_0_2_3-0_0.37-1_0.2-2_0.67-3_0.46",
+          "349_l_0_c_1_2_3-0_1.21-1_0.57-2_0.75-3_0.94",
+          "350_l_0_c_0_1_2-0_0.42-1_0.43-2_0.08-3_0.78",
+          "351_l_0_c_0_1_3-0_0.09-1_0.26-2_0.57-3_0.6",
+          "352_l_0_c_0_2_3-0_0.41-1_0.18-2_0.02-3_1.65",
+          "353_l_0_c_1_2_3-0_0.83-1_1.08-2_0.41-3_0.78",
+          "354_l_0_c_0_1_2-0_0.53-1_0.11-2_0.03-3_0.95",
+          "355_l_0_c_0_1_3-0_1.04-1_0.06-2_0.07-3_0.74",
+          "356_l_0_c_0_2_3-0_0.82-1_0.25-2_0.51-3_1.48",
+          "357_l_0_c_1_2_3-0_0.28-1_0.97-2_0.33-3_0.22",
+          "358_l_0_c_0_1_2-0_0.96-1_0.21-2_0.55-3_0.51",
+          "359_l_0_c_0_1_3-0_0.29-1_0.85-2_0.0-3_0.01",
+          "360_l_0_c_0_2_3-0_0.37-1_0.0-2_0.27-3_0.11",
+          "361_l_0_c_1_2_3-0_1.1-1_1.42-2_1.57-3_0.75",
+          "362_l_0_c_0_1_2-0_0.1-1_0.1-2_0.19-3_0.72",
+          "363_l_0_c_0_1_3-0_0.54-1_0.21-2_0.27-3_0.47",
+          "364_l_0_c_0_2_3-0_0.0-1_0.18-2_0.99-3_0.57",
+          "365_l_0_c_1_2_3-0_1.2-1_0.0-2_0.46-3_0.22",
+          "366_l_0_c_0_1_2-0_0.04-1_0.79-2_0.58-3_2.26",
+          "367_l_0_c_0_1_3-0_0.69-1_0.46-2_0.21-3_0.63",
+          "368_l_0_c_0_2_3-0_0.84-1_0.25-2_0.01-3_1.58",
+          "369_l_0_c_1_2_3-0_0.79-1_1.57-2_1.02-3_0.12",
+          "370_l_0_c_0_1_2-0_1.37-1_0.08-2_0.38-3_0.02",
+          "371_l_0_c_0_1_3-0_0.66-1_0.1-2_0.07-3_0.3",
+          "372_l_0_c_0_2_3-0_0.04-1_0.01-2_0.83-3_0.49",
+          "373_l_0_c_1_2_3-0_0.04-1_0.32-2_0.52-3_0.0",
+          "374_l_0_c_0_1_2-0_0.17-1_1.52-2_1.11-3_0.93",
+          "375_l_0_c_0_1_3-0_0.62-1_0.14-2_0.28-3_1.31",
+          "376_l_0_c_0_2_3-0_0.05-1_0.34-2_0.67-3_1.07",
+          "377_l_0_c_1_2_3-0_0.3-1_1.49-2_0.12-3_0.36",
+          "378_l_0_c_0_1_2-0_0.96-1_0.08-2_1.15-3_0.16",
+          "379_l_0_c_0_1_3-0_0.03-1_0.4-2_0.16-3_0.77",
+          "380_l_0_c_0_2_3-0_0.88-1_0.03-2_0.54-3_0.18",
+          "381_l_0_c_1_2_3-0_0.77-1_0.88-2_0.54-3_0.06",
+          "382_l_0_c_0_1_2-0_0.27-1_0.49-2_0.58-3_0.33",
+          "383_l_0_c_0_1_3-0_0.6-1_1.38-2_0.1-3_0.92",
+          "384_l_0_c_0_2_3-0_0.01-1_0.12-2_0.47-3_0.42",
+          "385_l_0_c_1_2_3-0_1.66-1_0.87-2_0.92-3_0.85",
+          "386_l_0_c_0_1_2-0_0.25-1_0.02-2_0.35-3_1.3",
+          "387_l_0_c_0_1_3-0_0.37-1_0.38-2_0.03-3_0.59",
+          "388_l_0_c_0_2_3-0_0.31-1_0.01-2_0.2-3_0.06",
+          "389_l_0_c_1_2_3-0_0.17-1_0.93-2_0.35-3_0.41",
+          "390_l_0_c_0_1_2-0_1.91-1_0.61-2_0.7-3_0.0",
+          "391_l_0_c_0_1_3-0_0.24-1_0.06-2_0.09-3_0.05",
+          "392_l_0_c_0_2_3-0_0.16-1_0.03-2_0.09-3_0.36",
+          "393_l_0_c_1_2_3-0_1.09-1_0.77-2_1.63-3_1.27",
+          "394_l_0_c_0_1_2-0_0.14-1_0.11-2_0.28-3_0.78",
+          "395_l_0_c_0_1_3-0_0.94-1_0.86-2_0.01-3_0.19",
+          "396_l_0_c_0_2_3-0_0.27-1_0.08-2_0.67-3_0.05",
+          "397_l_0_c_1_2_3-0_1.17-1_0.45-2_0.83-3_1.08",
+          "398_l_0_c_0_1_2-0_0.41-1_0.24-2_0.81-3_1.91",
+          "399_l_0_c_3-0_0.41-1_0.26-2_0.35-3_0.71",
+          "400_l_0_r-0_0.43-1_0.04-2_0.59-3_0.83",
+          "401_l_0_r-0_1.43-1_0.01-2_0.46-3_0.06",
+          "402_l_0_r-0_0.78-1_0.36-2_0.11-3_0.63",
+          "403_l_0_r-0_0.89-1_0.11-2_0.0-3_0.61",
+          "404_l_0_r-0_1.52-1_0.16-2_0.04-3_1.25",
+          "405_l_0_r-0_0.0-1_0.05-2_0.23-3_0.48",
+          "406_l_0_r-0_1.03-1_0.04-2_0.01-3_1.2",
+          "407_l_0_r-0_0.63-1_0.27-2_0.04-3_0.47",
+          "408_l_0_r-0_0.12-1_0.23-2_0.0-3_1.16",
+          "409_l_0_r-0_1.4-1_0.15-2_0.32-3_0.87",
+          "410_l_0_r-0_0.25-1_0.21-2_0.12-3_1.27",
+          "411_l_0_r-0_0.1-1_0.07-2_0.28-3_1.17",
+          "412_l_0_r-0_0.01-1_0.1-2_0.06-3_2.13",
+          "413_l_0_r-0_0.58-1_0.15-2_0.1-3_0.14",
+          "414_l_0_r-0_1.17-1_0.07-2_0.32-3_0.67",
+          "415_l_0_r-0_0.33-1_0.14-2_0.16-3_0.79",
+          "416_l_0_r-0_0.15-1_0.03-2_0.02-3_0.65",
+          "417_l_0_r-0_0.26-1_0.02-2_0.27-3_0.76",
+          "418_l_0_r-0_0.76-1_0.12-2_0.01-3_2.09",
+          "419_l_0_r-0_0.62-1_0.17-2_0.04-3_0.15",
+          "420_l_0_r-0_1.9-1_0.36-2_0.24-3_1.36",
+          "421_l_0_r-0_0.54-1_0.04-2_0.07-3_0.0",
+          "422_l_0_r-0_1.29-1_0.71-2_0.43-3_0.64",
+          "423_l_0_r-0_0.16-1_0.19-2_0.07-3_1.77",
+          "424_l_0_r-0_0.97-1_0.17-2_0.11-3_0.38",
+          "425_l_0_r-0_0.19-1_0.2-2_0.01-3_1.43",
+          "426_l_0_r-0_0.15-1_0.18-2_0.19-3_2.21",
+          "427_l_0_r-0_0.79-1_0.07-2_0.15-3_2.13",
+          "428_l_0_r-0_0.91-1_0.59-2_0.15-3_1.07",
+          "429_l_0_r-0_1.36-1_0.0-2_0.22-3_0.42",
+          "430_l_0_r-0_0.25-1_0.01-2_0.05-3_0.51",
+          "431_l_0_r-0_1.29-1_0.02-2_0.0-3_0.26",
+          "432_l_0_r-0_1.09-1_0.0-2_0.05-3_0.01",
+          "433_l_0_r-0_0.0-1_0.23-2_0.01-3_0.02",
+          "434_l_0_r-0_1.61-1_0.01-2_0.21-3_1.94",
+          "435_l_0_r-0_0.5-1_0.16-2_0.01-3_1.22",
+          "436_l_0_r-0_0.19-1_0.04-2_0.04-3_1.15",
+          "437_l_0_r-0_1.12-1_0.22-2_0.05-3_0.29",
+          "438_l_0_r-0_0.7-1_0.01-2_0.1-3_0.21",
+          "439_l_0_r-0_1.87-1_0.0-2_0.29-3_0.19",
+          "440_l_0_r-0_0.88-1_0.25-2_0.04-3_1.33",
+          "441_l_0_r-0_0.27-1_0.17-2_0.39-3_1.46",
+          "442_l_0_r-0_1.66-1_0.02-2_0.3-3_0.96",
+          "443_l_0_r-0_0.28-1_0.01-2_0.01-3_1.64",
+          "444_l_0_r-0_2.76-1_0.06-2_0.04-3_0.52",
+          "445_l_0_r-0_0.13-1_0.1-2_0.0-3_0.35",
+          "446_l_0_r-0_0.31-1_0.28-2_0.35-3_0.77",
+          "447_l_0_r-0_0.48-1_0.02-2_0.25-3_0.45",
+          "448_l_0_r-0_0.77-1_0.06-2_0.02-3_0.49",
+          "449_l_0_r-0_2.3-1_0.37-2_0.14-3_0.82",
+          "450_l_0_r-0_0.28-1_0.26-2_0.11-3_1.25",
+          "451_l_0_r-0_0.07-1_0.02-2_0.11-3_1.75",
+          "452_l_0_r-0_0.74-1_0.04-2_0.29-3_0.75",
+          "453_l_0_r-0_2.61-1_0.19-2_0.09-3_1.02",
+          "454_l_0_r-0_0.73-1_0.03-2_0.17-3_0.55",
+          "455_l_0_r-0_2.01-1_0.18-2_0.27-3_0.13",
+          "456_l_0_r-0_1.77-1_0.02-2_0.18-3_0.93",
+          "457_l_0_r-0_0.83-1_0.11-2_0.48-3_0.8",
+          "458_l_0_r-0_0.52-1_0.05-2_0.36-3_0.56",
+          "459_l_0_r-0_0.53-1_0.41-2_0.06-3_0.49",
+          "460_l_0_r-0_0.83-1_0.43-2_0.26-3_1.05",
+          "461_l_0_r-0_0.06-1_0.12-2_0.03-3_1.44",
+          "462_l_0_r-0_0.34-1_0.0-2_0.34-3_2.22",
+          "463_l_0_r-0_1.34-1_0.03-2_0.02-3_0.31",
+          "464_l_0_r-0_1.77-1_0.34-2_0.26-3_0.85",
+          "465_l_0_r-0_0.66-1_0.07-2_0.12-3_0.77",
+          "466_l_0_r-0_0.49-1_0.01-2_0.12-3_0.24",
+          "467_l_0_r-0_0.8-1_0.18-2_0.02-3_0.09",
+          "468_l_0_r-0_0.27-1_0.14-2_0.13-3_0.22",
+          "469_l_0_r-0_0.29-1_0.0-2_0.14-3_1.01",
+          "470_l_0_r-0_0.07-1_0.45-2_0.15-3_0.3",
+          "471_l_0_r-0_0.06-1_0.2-2_0.24-3_1.57",
+          "472_l_0_r-0_0.42-1_0.02-2_0.01-3_1.08",
+          "473_l_0_r-0_0.47-1_0.62-2_0.43-3_1.78",
+          "474_l_0_r-0_0.71-1_0.11-2_0.06-3_1.44",
+          "475_l_0_r-0_0.33-1_0.08-2_0.15-3_1.09",
+          "476_l_0_r-0_1.4-1_0.04-2_0.04-3_0.96",
+          "477_l_0_r-0_0.1-1_0.0-2_0.32-3_1.71",
+          "478_l_0_r-0_2.1-1_0.01-2_0.08-3_0.99",
+          "479_l_0_r-0_0.43-1_0.24-2_0.09-3_0.14",
+          "480_l_0_r-0_0.12-1_0.01-2_0.1-3_0.7",
+          "481_l_0_r-0_0.44-1_0.16-2_0.24-3_1.13",
+          "482_l_0_r-0_0.49-1_0.23-2_0.03-3_1.56",
+          "483_l_0_r-0_0.7-1_0.27-2_0.2-3_0.23",
+          "484_l_0_r-0_1.57-1_0.02-2_0.5-3_0.65",
+          "485_l_0_r-0_1.49-1_0.09-2_0.42-3_0.39",
+          "486_l_0_r-0_0.66-1_0.34-2_0.17-3_0.64",
+          "487_l_0_r-0_1.15-1_0.03-2_0.01-3_0.2",
+          "488_l_0_r-0_0.57-1_0.16-2_0.6-3_1.51",
+          "489_l_0_r-0_0.08-1_0.37-2_0.25-3_0.1",
+          "490_l_0_r-0_0.3-1_0.6-2_0.33-3_0.15",
+          "491_l_0_r-0_0.58-1_0.22-2_0.14-3_0.79",
+          "492_l_0_r-0_2.17-1_0.19-2_0.02-3_0.35",
+          "493_l_0_r-0_1.18-1_0.1-2_0.04-3_0.46",
+          "494_l_0_r-0_0.77-1_0.12-2_0.33-3_0.8",
+          "495_l_0_r-0_2.36-1_0.06-2_0.18-3_0.96",
+          "496_l_0_r-0_0.43-1_0.21-2_0.05-3_0.13",
+          "497_l_0_r-0_0.8-1_0.0-2_0.12-3_0.56",
+          "498_l_0_r-0_0.44-1_0.05-2_0.04-3_2.41",
+          "499_l_0_r-0_1.18-1_0.05-2_0.02-3_0.42",
+          "500_l_0_r-0_0.77-1_0.12-2_0.01-3_0.85",
+          "501_l_0_r-0_0.91-1_0.01-2_0.28-3_1.76",
+          "502_l_0_r-0_0.48-1_0.01-2_0.2-3_1.78",
+          "503_l_0_r-0_0.9-1_0.21-2_0.01-3_0.87",
+          "504_l_0_r-0_1.54-1_0.54-2_0.01-3_1.02",
+          "505_l_0_r-0_2.02-1_0.15-2_0.47-3_0.59",
+          "506_l_0_r-0_1.1-1_0.08-2_0.04-3_0.5",
+          "507_l_0_r-0_0.34-1_0.01-2_0.05-3_1.4",
+          "508_l_0_r-0_0.15-1_0.04-2_0.28-3_2.15",
+          "509_l_0_r-0_1.53-1_0.14-2_0.14-3_0.48",
+          "510_l_0_r-0_0.58-1_0.05-2_0.16-3_0.68",
+          "511_l_0_r-0_1.27-1_0.03-2_0.13-3_0.6",
+          "512_l_0_r-0_0.1-1_0.17-2_0.25-3_0.27",
+          "513_l_0_r-0_0.48-1_0.09-2_0.02-3_1.2",
+          "514_l_0_r-0_0.26-1_0.28-2_0.0-3_0.38",
+          "515_l_0_r-0_0.29-1_0.14-2_0.03-3_0.27",
+          "516_l_0_r-0_0.21-1_0.33-2_0.55-3_0.47",
+          "517_l_0_r-0_0.2-1_0.09-2_0.0-3_1.09",
+          "518_l_0_r-0_0.16-1_0.06-2_0.42-3_0.79",
+          "519_l_0_r-0_0.03-1_0.13-2_0.26-3_0.91",
+          "520_l_0_r-0_1.42-1_0.2-2_0.04-3_0.21",
+          "521_l_0_r-0_0.8-1_0.06-2_0.05-3_0.92",
+          "522_l_0_r-0_1.38-1_0.19-2_0.48-3_0.1",
+          "523_l_0_r-0_1.14-1_0.09-2_0.27-3_1.25",
+          "524_l_0_r-0_0.13-1_0.12-2_0.48-3_0.59",
+          "525_l_0_r-0_1.32-1_0.17-2_0.07-3_0.59",
+          "526_l_0_r-0_0.46-1_0.07-2_0.48-3_0.88",
+          "527_l_0_r-0_0.61-1_0.11-2_0.05-3_0.63",
+          "528_l_0_r-0_1.15-1_0.07-2_0.15-3_0.51",
+          "529_l_0_r-0_1.32-1_0.0-2_0.08-3_1.46",
+          "530_l_0_r-0_0.64-1_0.07-2_0.0-3_1.32",
+          "531_l_0_r-0_0.48-1_0.22-2_0.01-3_0.58",
+          "532_l_0_r-0_0.31-1_0.09-2_0.5-3_1.35",
+          "533_l_0_r-0_0.15-1_0.13-2_0.18-3_0.37",
+          "534_l_0_r-0_0.74-1_0.03-2_0.04-3_0.98",
+          "535_l_0_r-0_0.39-1_0.09-2_0.03-3_0.48",
+          "536_l_0_r-0_2.05-1_0.05-2_0.4-3_0.95",
+          "537_l_0_r-0_0.41-1_0.12-2_0.01-3_0.03",
+          "538_l_0_r-0_2.52-1_0.27-2_0.35-3_0.55",
+          "539_l_0_r-0_1.02-1_0.29-2_0.02-3_0.01",
+          "540_l_0_r-0_0.03-1_0.13-2_0.03-3_0.62",
+          "541_l_0_r-0_0.86-1_0.25-2_0.26-3_0.77",
+          "542_l_0_r-0_0.65-1_0.09-2_0.19-3_1.21",
+          "543_l_0_r-0_0.51-1_0.02-2_0.01-3_1.02",
+          "544_l_0_r-0_0.56-1_0.0-2_0.19-3_0.88",
+          "545_l_0_r-0_0.04-1_0.37-2_0.14-3_2.44",
+          "546_l_0_r-0_1.36-1_0.34-2_0.0-3_0.24",
+          "547_l_0_r-0_0.02-1_0.05-2_0.05-3_0.63",
+          "548_l_0_r-0_1.78-1_0.49-2_0.04-3_0.86",
+          "549_l_0_r-0_0.05-1_0.15-2_0.2-3_0.35",
+          "550_l_0_r-0_0.1-1_0.06-2_0.35-3_0.56",
+          "551_l_0_r-0_0.68-1_0.05-2_0.21-3_0.69",
+          "552_l_0_r-0_2.65-1_0.01-2_0.24-3_0.52",
+          "553_l_0_r-0_1.46-1_0.17-2_0.33-3_0.28",
+          "554_l_0_r-0_0.58-1_0.04-2_0.06-3_0.91",
+          "555_l_0_r-0_0.06-1_0.74-2_0.23-3_0.89",
+          "556_l_0_r-0_2.18-1_0.02-2_0.02-3_0.37",
+          "557_l_0_r-0_0.84-1_0.01-2_0.06-3_0.24",
+          "558_l_0_r-0_1.43-1_0.0-2_0.26-3_1.7",
+          "559_l_0_r-0_0.96-1_0.04-2_0.07-3_0.99",
+          "560_l_0_r-0_0.84-1_0.12-2_0.32-3_1.56",
+          "561_l_0_r-0_0.33-1_0.12-2_0.22-3_0.21",
+          "562_l_0_r-0_0.27-1_0.0-2_0.03-3_0.17",
+          "563_l_0_r-0_1.2-1_0.5-2_0.08-3_0.58",
+          "564_l_0_r-0_0.6-1_0.12-2_0.16-3_0.16",
+          "565_l_0_r-0_1.14-1_0.12-2_0.45-3_0.01",
+          "566_l_0_r-0_1.76-1_0.03-2_0.05-3_0.48",
+          "567_l_0_r-0_1.62-1_0.51-2_0.03-3_0.24",
+          "568_l_0_r-0_1.83-1_0.12-2_0.1-3_0.69",
+          "569_l_0_r-0_1.72-1_0.28-2_0.5-3_0.24",
+          "570_l_0_r-0_1.25-1_0.41-2_0.23-3_0.21",
+          "571_l_0_r-0_1.12-1_0.07-2_0.33-3_1.09",
+          "572_l_0_r-0_1.09-1_0.08-2_0.0-3_0.11",
+          "573_l_0_r-0_1.5-1_0.03-2_0.0-3_0.02",
+          "574_l_0_r-0_1.36-1_0.05-2_0.11-3_0.34",
+          "575_l_0_r-0_0.27-1_0.52-2_0.03-3_1.53",
+          "576_l_0_r-0_1.36-1_0.26-2_0.0-3_0.26",
+          "577_l_0_r-0_1.25-1_0.2-2_0.33-3_0.13",
+          "578_l_0_r-0_0.6-1_0.03-2_0.39-3_0.42",
+          "579_l_0_r-0_0.7-1_0.2-2_0.1-3_0.7",
+          "580_l_0_r-0_1.57-1_0.01-2_0.26-3_0.36",
+          "581_l_0_r-0_1.6-1_0.03-2_0.12-3_0.18",
+          "582_l_0_r-0_0.14-1_0.07-2_0.15-3_0.22",
+          "583_l_0_r-0_0.59-1_0.25-2_0.26-3_0.32",
+          "584_l_0_r-0_2.37-1_0.12-2_0.44-3_0.13",
+          "585_l_0_r-0_1.26-1_0.06-2_0.09-3_0.95",
+          "586_l_0_r-0_0.74-1_0.05-2_0.06-3_0.77",
+          "587_l_0_r-0_0.92-1_0.09-2_0.15-3_0.06",
+          "588_l_0_r-0_0.92-1_0.12-2_0.11-3_1.05",
+          "589_l_0_r-0_0.45-1_0.24-2_0.13-3_0.9",
+          "590_l_0_r-0_0.81-1_0.06-2_0.05-3_1.02",
+          "591_l_0_r-0_0.58-1_0.05-2_0.04-3_1.23",
+          "592_l_0_r-0_0.18-1_0.02-2_0.21-3_0.71",
+          "593_l_0_r-0_0.58-1_0.11-2_0.16-3_0.1",
+          "594_l_0_r-0_1.07-1_0.11-2_0.24-3_1.11",
+          "595_l_0_r-0_0.21-1_0.11-2_0.02-3_0.86",
+          "596_l_0_r-0_0.18-1_0.14-2_0.03-3_0.25",
+          "597_l_0_r-0_0.96-1_0.3-2_0.07-3_0.54",
+          "598_l_0_r-0_0.36-1_0.15-2_0.05-3_0.21",
+          "599_l_0_r-0_0.1-1_0.08-2_0.19-3_4.1",
+          "600_l_0_r-0_0.16-1_0.14-2_0.06-3_0.54",
+          "601_l_0_r-0_0.26-1_0.15-2_0.03-3_2.41",
+          "602_l_0_r-0_0.26-1_0.01-2_0.14-3_0.37",
+          "603_l_0_r-0_0.02-1_0.07-2_0.22-3_0.63",
+          "604_l_0_r-0_0.74-1_0.1-2_0.02-3_2.15",
+          "605_l_0_r-0_0.95-1_0.05-2_0.2-3_0.61",
+          "606_l_0_r-0_0.6-1_0.03-2_0.06-3_0.71",
+          "607_l_0_r-0_0.52-1_0.1-2_0.47-3_1.23",
+          "608_l_0_r-0_0.31-1_0.0-2_0.2-3_0.55",
+          "609_l_0_r-0_1.17-1_0.03-2_0.13-3_0.83",
+          "610_l_0_r-0_0.04-1_0.0-2_0.01-3_1.4",
+          "611_l_0_r-0_0.32-1_0.12-2_0.07-3_0.68",
+          "612_l_0_r-0_0.58-1_0.12-2_0.02-3_2.95",
+          "613_l_0_r-0_0.74-1_0.04-2_0.14-3_1.0",
+          "614_l_0_r-0_1.31-1_0.11-2_0.15-3_0.18",
+          "615_l_0_r-0_0.52-1_0.01-2_0.03-3_0.48",
+          "616_l_0_r-0_1.5-1_0.02-2_0.36-3_1.16",
+          "617_l_0_r-0_0.53-1_0.26-2_0.07-3_0.66",
+          "618_l_0_r-0_1.99-1_0.28-2_0.2-3_1.68",
+          "619_l_0_r-0_1.75-1_0.44-2_0.05-3_1.6",
+          "620_l_0_r-0_0.03-1_0.01-2_0.07-3_0.35",
+          "621_l_0_r-0_0.45-1_0.01-2_0.52-3_0.77",
+          "622_l_0_r-0_1.4-1_0.0-2_0.24-3_0.86",
+          "623_l_0_r-0_0.45-1_0.1-2_0.22-3_0.54",
+          "624_l_0_r-0_1.03-1_0.39-2_0.34-3_0.26",
+          "625_l_0_r-0_1.2-1_0.58-2_0.17-3_1.09",
+          "626_l_0_r-0_0.37-1_0.06-2_0.2-3_0.49",
+          "627_l_0_r-0_1.48-1_0.01-2_0.22-3_1.12",
+          "628_l_0_r-0_0.14-1_0.01-2_0.37-3_1.29",
+          "629_l_0_r-0_0.38-1_0.16-2_0.0-3_1.28",
+          "630_l_0_r-0_0.21-1_0.04-2_0.25-3_0.88",
+          "631_l_0_r-0_0.96-1_0.23-2_0.01-3_0.55",
+          "632_l_0_r-0_1.47-1_0.01-2_0.03-3_2.04",
+          "633_l_0_r-0_0.04-1_0.02-2_0.1-3_2.03",
+          "634_l_0_r-0_1.05-1_0.04-2_0.03-3_1.21",
+          "635_l_0_r-0_0.81-1_0.04-2_0.18-3_0.73",
+          "636_l_0_r-0_0.32-1_0.03-2_0.15-3_0.81",
+          "637_l_0_r-0_0.8-1_0.28-2_0.02-3_0.13",
+          "638_l_0_r-0_0.56-1_0.04-2_0.01-3_0.26",
+          "639_l_0_r-0_1.35-1_0.04-2_0.15-3_0.98",
+          "640_l_0_r-0_0.23-1_0.3-2_0.0-3_0.28",
+          "641_l_0_r-0_0.01-1_0.04-2_0.05-3_0.83",
+          "642_l_0_r-0_0.28-1_0.11-2_0.26-3_0.86",
+          "643_l_0_r-0_2.01-1_0.14-2_0.2-3_1.49",
+          "644_l_0_r-0_0.87-1_0.07-2_0.09-3_0.37",
+          "645_l_0_r-0_0.1-1_0.21-2_0.14-3_0.15",
+          "646_l_0_r-0_0.9-1_0.46-2_0.25-3_0.54",
+          "647_l_0_r-0_0.93-1_0.19-2_0.26-3_0.11",
+          "648_l_0_r-0_0.73-1_0.02-2_0.12-3_0.8",
+          "649_l_0_r-0_0.09-1_0.09-2_0.07-3_0.1",
+          "650_l_0_r-0_0.5-1_0.05-2_0.23-3_1.96",
+          "651_l_0_r-0_0.23-1_0.15-2_0.27-3_1.08",
+          "652_l_0_r-0_0.64-1_0.11-2_0.25-3_0.98",
+          "653_l_0_r-0_0.44-1_0.12-2_0.14-3_1.23",
+          "654_l_0_r-0_0.63-1_0.03-2_0.01-3_1.1",
+          "655_l_0_r-0_0.63-1_0.1-2_0.1-3_0.28",
+          "656_l_0_r-0_0.24-1_0.4-2_0.02-3_0.22",
+          "657_l_0_r-0_0.25-1_0.01-2_0.03-3_0.18",
+          "658_l_0_r-0_1.18-1_0.15-2_0.04-3_0.79",
+          "659_l_0_r-0_1.22-1_0.19-2_0.07-3_0.03",
+          "660_l_0_r-0_0.59-1_0.14-2_0.02-3_0.47",
+          "661_l_0_r-0_1.74-1_0.23-2_0.26-3_0.56",
+          "662_l_0_r-0_1.92-1_0.08-2_0.04-3_0.17",
+          "663_l_0_r-0_0.84-1_0.14-2_0.01-3_0.41",
+          "664_l_0_r-0_2.42-1_0.02-2_0.24-3_1.16",
+          "665_l_0_r-0_0.4-1_0.44-2_0.05-3_0.86"
          ],
          "type": "scatter3d",
          "x": [
-          -0.9500779265243806,
-          0.4333294070385597,
-          0.34070096314954956,
-          -0.08447062357878354,
-          1.278745754130064,
-          1.296583837150803,
-          0.8028920120626046,
-          1.5514365381755453,
-          0.7126411258503655,
-          -0.6515397134301908,
-          0.568998894167061,
-          1.399546841015706,
-          0.5087369723386781,
-          0.7191307542023415,
-          0.7875412749657305,
-          1.684104990934741,
-          0.4570242932279879,
-          1.3131234171929917,
-          -0.042174807098444456,
-          0.7122971118708835,
-          1.473196583225226,
-          0.6292035662004736,
-          -0.0864109533556181,
-          1.9427637251523104,
-          1.683062581508265,
-          -0.9660484129679181,
-          1.5765611205089947,
-          0.4116384356932218,
-          0.28930800753298924,
-          0.5911038250105045,
-          1.1902829099224217,
-          -0.07916181690449209,
-          1.574081282106535,
-          -0.06804713836624043,
-          2.7107757776943866,
-          2.047176655002997,
-          0.07559143177000194,
-          1.8524412648213424,
-          0.3306439037497052,
-          0.8699291587164673,
-          3.3403002158569794,
-          1.315719422296524,
-          1.017414248998231,
-          1.2578616172949595,
-          0.5728894512673681,
-          3.476929133723412,
-          2.814649167323078,
-          0.8547713541610804,
-          0.33961862946446086,
-          1.2516538689865537,
-          0.49810588500233,
-          0.03442499379016106,
-          1.0697807022152186,
-          1.8321102172211272,
-          2.1021953187712,
-          1.004529291051558,
-          0.7597911289974798,
-          1.8143398145678733,
-          3.391873389457284,
-          0.3898502544198549,
-          1.1259238204854551,
-          1.6009137824153346,
-          0.6144410200375149,
-          1.1331664893627056,
-          0.11219861966234623,
-          0.4147094686836301,
-          0.4407742020447891,
-          3.3803877461644896,
-          0.7185399201117044,
-          1.47849973179589,
-          1.4408197989057157,
-          1.2223777489305565,
-          2.651914336867378,
-          0.4509455688411341,
-          1.3339450479990393,
-          0.9620853218672304,
-          1.1601441649153745,
-          0.9642423556264857,
-          1.6121568069555516,
-          1.535856942488638,
-          1.090083477540107,
-          0.6607952347901164,
-          0.9678140490557173,
-          0.3280238466465043,
-          0.8730121867950196,
-          1.6212560942035292,
-          1.4783003922546893,
-          2.0678566772944,
-          1.7300800925375974,
-          0.3995530344113254,
-          -0.36624662939711095,
-          0.5526370508387843,
-          0.10405299641122112,
-          0.24771117823853173,
-          0.28722211517240603,
-          0.563709809005843,
-          1.1381927477913205,
-          2.271696791522558,
-          0.4956347996193934,
-          1.0410808640947542,
-          0.49498272925482356,
-          1.5762287195956262,
-          0.30966293755165464,
-          2.9172595345040717,
-          0.5334924726498829,
-          1.5648641321559589,
-          1.4464467833047774,
-          1.470868859375381,
-          1.6546884930081445,
-          1.3009683766424112,
-          -0.17043575749750195,
-          0.23486533289037959,
-          -0.14655016370745777,
-          1.539041496752759,
-          2.0511217477579984,
-          0.7047987468973038,
-          0.2725342937663279,
-          0.7508789965112811,
-          3.060826563902659,
-          0.9187204519864143,
-          -1.4187754670694206,
-          0.8294073352099312,
-          1.6913563810805252,
-          0.34829585178176636,
-          0.6995571911724485,
-          0.7559044378414586,
-          0.7809414119753914,
-          1.5847253470359406,
-          0.9962514661981484,
-          1.6067300025201066,
-          1.1556753876883867,
-          -0.9308336007240829,
-          2.2689650254316334,
-          -0.5370679870688635,
-          0.3174599538464543,
-          0.4672989124450223,
-          0.5909821521850606,
-          1.0057851148266534,
-          1.8176863130545542,
-          1.7861205475982458,
-          1.336321809621686,
-          1.0988240450164317,
-          0.25524384321561133,
-          -0.26875100760128334,
-          0.9150334031118526,
-          1.3316739616352777,
-          2.0416667330833507,
-          1.1598353519080975,
-          1.4963464110704923,
-          0.993383755846512,
-          -0.9517426090104495,
-          0.5443375019863393,
-          1.2676962543586618,
-          0.6838837193695892,
-          0.7863228294117843,
-          0.8102217004320189,
-          0.006174711142728828,
-          -0.2675777045330776,
-          0.6930036428373965,
-          -0.19785374532591082,
-          2.4103123065906455,
-          1.0051431405418494,
-          2.1644646925122126,
-          1.45583767838814,
-          1.0796940673827122,
-          1.098080450279794,
-          2.378357221422549,
-          0.6460486123262317,
-          1.5567959468277808,
-          0.07797567482281809,
-          0.6205207439882559,
-          -0.2595627288697413,
-          0.5323904665827726,
-          0.5689000104743072,
-          1.1299189044112796,
-          -0.17066253020018896,
-          0.2612847344576137,
-          1.3520386129581203,
-          1.5205607958438698,
-          1.795432706807433,
-          0.6457902383345511,
-          1.025672315207612,
-          -0.1804984869976387,
-          -0.044187178864023346,
-          0.9397192509720186,
-          1.7442291195615973,
-          0.2700033284199236,
-          1.1446276337895438,
-          3.1009871898131114,
-          0.9257478925069176,
-          0.46894082962132433,
-          0.30370642094760525,
-          0.8462148348538082,
-          0.5957217557879211,
-          1.4926094868130526,
-          1.2614045025472107,
-          1.5325964876140654,
-          1.5529431891981056,
-          0.04491771186417248,
-          1.5954953007219737,
-          -1.1772360688967356,
-          1.0162065994840517,
-          0.7523884635585489,
-          1.1919937886222676,
-          0.38674618534992844,
-          -0.20064373232109523,
-          1.9639512510547117,
-          0.763466747903876,
-          0.13461049495477317,
-          0.41665706712151207,
-          1.3341262473382347,
-          -0.6056334030627877,
-          1.067470025257223,
-          0.6201087913124164,
-          0.6745787286271689,
-          1.9583327146851413,
-          0.923814330048081,
-          -0.18144126157730978,
-          1.0941764691736422,
-          0.07657079427860747,
-          0.5131781274817024,
-          2.1612222731541637,
-          2.318607828178045,
-          1.8524088777981969,
-          1.0429073261676913,
-          0.6087322850924592,
-          1.0379637282106353,
-          0.09327103464990594,
-          -0.7606364433375037,
-          0.2242140106874001,
-          1.0021184210174725,
-          1.6980834649176682,
-          1.3601309512775628,
-          1.6518415719803556,
-          1.1432130832061305,
-          1.645296958431043,
-          0.3043545498798037,
-          -0.5341809606872214,
-          0.6774512897733784,
-          -0.0439209802489835,
-          1.5068025945524743,
-          1.4653840768191757,
-          0.46165054248902315,
-          0.27855925016979444,
-          0.43109514691057527,
-          0.5378840362001438,
-          1.4644876055772338,
-          1.3901721928800852,
-          0.7998654457718624,
-          0.3797357033323213,
-          1.2575817492104369,
-          0.6493266063414036,
-          0.5854361367513066,
-          1.0662747373442347,
-          0.7339363442379968,
-          1.1000486277777453,
-          0.24034823916662207,
-          2.2587612397600685,
-          1.8090542890877785,
-          1.3956975066080046,
-          0.6362154703901288,
-          1.2385580706395474,
-          1.586515157618,
-          0.36621135422219964,
-          2.3589499512671157,
-          1.3031538283762734,
-          1.1414789529346736,
-          0.6657930019335512,
-          1.2780795955735271,
-          0.46027320184822995,
-          1.2782045960209798,
-          1.6503111974963427,
-          0.8177581758214612,
-          1.9031675919947766,
-          1.6290854090140003,
-          2.264915894972302,
-          0.7294632628387333,
-          3.0602140726246807,
-          0.8627882969557995,
-          1.6604889823456972,
-          0.5959305497475267,
-          1.7839731429926151,
-          1.7069754644705992,
-          0.745625582973438,
-          1.1606928674649046,
-          0.8256371635874657,
-          1.0816447090182537,
-          0.13858727081365785,
-          1.6633830488473853,
-          0.49824223883027974,
-          0.9564543279211194,
-          1.0407982182238125,
-          1.2065056251458304,
-          2.09252541467842,
-          1.8681754795558938,
-          0.3624201421224643,
-          -0.05845048942103781,
-          1.5921029832024916,
-          3.93818806715577,
-          0.5665683623598554,
-          0.984312033243062,
-          -0.8415656164845604,
-          1.0517178848131874,
-          1.7240942025060932,
-          1.7540858050384984,
-          0.7436443571468536,
-          1.5201764216002716,
-          1.347066272200277,
-          0.2691651003023291,
-          -0.22439977322102966,
-          0.4364468187512991,
-          -0.8316512287136264,
-          0.7686240425099611,
-          -0.10466835610210667,
-          2.056030371565714,
-          -0.20269102889486756,
-          0.5973317887632685,
-          0.4561984045386336,
-          1.9980841726036553,
-          0.9627821413362261,
-          1.2156627874860644,
-          1.9565494617872687,
-          2.2175480219507158,
-          0.6102378638835688,
-          2.0010648425707633,
-          1.506811397663049,
-          0.5350769856352794,
-          1.2111247768446667,
-          1.4031701666343896,
-          -0.6539595596163144,
-          0.22977301688985796,
-          0.6735823738519049,
-          0.047601614869526965
+          2.302564279586444,
+          -0.26138883192142526,
+          0.7626755441714261,
+          2.012149941253018,
+          0.7087438242248565,
+          -1.198736967740629,
+          -0.0983474759436914,
+          1.9850030928522222,
+          -1.853016336133858,
+          1.2026061166414033,
+          0.7522214558522718,
+          -2.4773435394976815,
+          0.2863878035179829,
+          2.384316094041633,
+          -0.9669143123689479,
+          -1.1630227043115677,
+          2.684072234065746,
+          -0.04228618456644824,
+          -0.4769998348072906,
+          -0.6053533896699109,
+          1.6154340080197847,
+          -3.325682403859197,
+          -1.074006870209245,
+          -1.072115096781255,
+          -1.4836297797097495,
+          1.7086416830300295,
+          -0.40598733401787246,
+          -0.580681427843806,
+          2.8340497002307643,
+          -1.4735024188696118,
+          1.4154789432093888,
+          1.8513469090916845,
+          1.5438236592016066,
+          -2.0589048434020905,
+          3.4100181550355733,
+          0.3327746421474667,
+          0.21307881524319064,
+          1.153796566918824,
+          -0.7264948164568171,
+          0.11099071796716511,
+          -1.9668942328471275,
+          -0.06609215463959227,
+          0.3305815374772518,
+          -2.6434059633673708,
+          0.14625937437866118,
+          -1.5110666355532365,
+          1.980025603457512,
+          3.3015718989965133,
+          1.3492020125995043,
+          -0.10387337344652804,
+          2.0783836818714003,
+          1.2965788527032673,
+          -1.8818914449986162,
+          -1.3583623790813966,
+          0.31580758637781153,
+          -2.2723760562235333,
+          -1.6354458089445807,
+          0.5775870856563222,
+          -2.7817235443839574,
+          1.769793206546086,
+          1.0236956160830812,
+          -3.5651284177024785,
+          0.29159641289791843,
+          1.1201679405099294,
+          -2.074513201336456,
+          0.9750374971848748,
+          -0.4860933131344432,
+          2.4366346207497944,
+          -0.7740060793471824,
+          2.246082681991344,
+          1.3168913196680352,
+          -1.5101989362988686,
+          -2.7548819743222936,
+          -1.185507478400927,
+          -0.17085601238415404,
+          0.8550136573296079,
+          0.0010366177597492944,
+          0.4992801395248022,
+          -2.4452396362599917,
+          -0.49805737061752825,
+          -0.6174532201925337,
+          -3.341163657713552,
+          2.9686418656093028,
+          -2.5929091804928466,
+          0.9164522434805941,
+          -1.4803396391753927,
+          -2.4671016645478527,
+          2.8452367081035104,
+          0.08436164174708026,
+          1.536257288464404,
+          0.23452983668680752,
+          0.7689005299158661,
+          -2.7488894119899547,
+          0.8271067934267249,
+          -1.1759608955250132,
+          0.5640334684462939,
+          1.7200175860703493,
+          -1.671438317437111,
+          -1.526370554357972,
+          0.7652592103301801,
+          -1.9745672927436613,
+          -1.3528993799425448,
+          1.0505194025995641,
+          0.6615495609791905,
+          -3.0781357028605285,
+          -0.46153903767138527,
+          -0.23640276772508328,
+          2.1086814292085436,
+          3.674702756473442,
+          -0.31660766452780126,
+          1.207103867868727,
+          -1.793424042559153,
+          1.3074031598113312,
+          -1.9221848961091974,
+          0.7861963147535624,
+          3.3958954051253873,
+          0.4197024328362321,
+          -2.301264635994639,
+          2.0330697550628134,
+          0.5624627033331984,
+          -1.0727832571933593,
+          1.2672581409032329,
+          0.3608931172526133,
+          1.3611411924765024,
+          1.9095897790982912,
+          0.8835289804721662,
+          -0.6692806149403273,
+          1.7967155450281285,
+          1.1904208941902652,
+          2.196871403991906,
+          -2.043763509358738,
+          -0.09025650582463698,
+          -0.28384977660472566,
+          2.670222347567862,
+          -5.64313390141246,
+          -2.02367226282504,
+          -1.8622610891834557,
+          1.901451910456323,
+          3.9758547767957646,
+          -1.1080597691118206,
+          -0.4754575447078037,
+          3.0052763713895483,
+          -1.373756944209883,
+          1.4677581749916437,
+          0.6043788311501849,
+          -0.0743551182432224,
+          -2.259399727838607,
+          2.7645952370503672,
+          0.3724196486818083,
+          1.219579586345025,
+          1.0995963917192246,
+          -2.526540453883872,
+          0.3420828231561371,
+          -0.5098227630601159,
+          -0.5916738885624772,
+          -1.520007675963716,
+          -1.2811760058165935,
+          0.21837666197614228,
+          -0.07023276378028828,
+          -0.4484810145578922,
+          -2.0657178035536323,
+          1.25528858765982,
+          -1.6084879756443378,
+          -0.9056762798824132,
+          1.5965048576175949,
+          -0.6243957720622115,
+          0.23095056108808415,
+          1.2364026150867322,
+          -0.23680971017960717,
+          1.5527550572571387,
+          1.2429291757023544,
+          1.9131939139092864,
+          0.06212933375381337,
+          2.0398789220972295,
+          -1.901402163894563,
+          2.6486801197509298,
+          -0.7758770944291333,
+          3.013526097263605,
+          0.6829282247830791,
+          0.5289026439580405,
+          0.9545318434273729,
+          0.07869300553853757,
+          0.12030629579836295,
+          0.012077524777034028,
+          0.7103734191544866,
+          -3.4526529869649165,
+          1.753134045046221,
+          0.9739770105696623,
+          -0.17121076942494906,
+          -1.381094831762339,
+          -2.09080154508666,
+          -0.4908622947320089,
+          -0.12729735777217618,
+          1.9935247588164797,
+          1.1410048113661109,
+          2.3456456066221705,
+          -1.0547922432840635,
+          -0.4737545558862763,
+          0.8266887936953916,
+          -0.44327301061002194,
+          -0.3957957218944915,
+          -1.8013357477570533,
+          -0.8580525806340459,
+          -1.1418149512938702,
+          0.012535534278927766,
+          -3.389143847850242,
+          -1.8684758007965832,
+          3.0305751745695924,
+          0.15475479357245295,
+          0.31115434115279994,
+          -0.401430852217812,
+          -2.1622692407808763,
+          0.014979274131644462,
+          0.6143960277542192,
+          -0.8692172659821977,
+          0.966026549232002,
+          0.08614358673703978,
+          -1.2507189065528965,
+          -1.7529986963876498,
+          3.492056539534146,
+          -0.2933972488510074,
+          0.9547497306153045,
+          -2.1146905886122283,
+          -0.45003002462223674,
+          0.690946607606799,
+          -1.307408808154226,
+          -1.8476224915351183,
+          -0.6842610889451161,
+          -0.12678160854000048,
+          0.1661461364177828,
+          -1.847929950447892,
+          1.3530323170410683,
+          -0.8545674273806827,
+          1.8239638615037035,
+          -1.7669388833300015,
+          0.8758052293713277,
+          0.6210739717715469,
+          -1.6276438167623375,
+          -0.8110524270544892,
+          3.6807247252964452,
+          -0.9832903616733496,
+          2.2779285708733847,
+          4.004120492677677,
+          0.8625712036518706,
+          0.5669586362452219,
+          -1.6617050942942058,
+          -0.35794910604276703,
+          -2.5420597597527825,
+          -0.6224796909705287,
+          -1.6214480114174044,
+          -1.505749474521615,
+          -1.6904767088810766,
+          -0.053300487385378174,
+          -0.5895690558968699,
+          -0.9640067095563775,
+          2.171065998706108,
+          -0.08186006588643295,
+          -0.2082011779327084,
+          -2.3645415871174533,
+          0.9141682646296657,
+          1.2099080424366904,
+          0.8718664382555106,
+          -1.8639228968842307,
+          -1.0188111743407078,
+          0.11017608858733427,
+          0.1577030516303962,
+          -0.7914106008515664,
+          -1.4072237628245046,
+          -0.5387603955300715,
+          1.3410603004027934,
+          -2.17512919702269,
+          -1.7526050185797855,
+          0.053371130880356235,
+          -1.9165268012585637,
+          1.6246210311865625,
+          3.2747328879680366,
+          -0.27211819723703684,
+          2.1709478959839688,
+          0.7165973109546865,
+          0.33311316829794824,
+          -0.727869528978975,
+          0.6080697308227235,
+          2.010716588475525,
+          1.4537041434637374,
+          0.5526977915444715,
+          1.348775272860397,
+          -0.5483028046639239,
+          0.45438157861597744,
+          0.06299972844155154,
+          -0.2886954483967673,
+          -1.6074182049577939,
+          -0.6611127373329396,
+          0.11911804678075964,
+          2.389418544820396,
+          1.9786800826324034,
+          1.3330019248220906,
+          0.6574162530352927,
+          1.9468499875508343,
+          -4.767004130212815,
+          1.12307036911087,
+          -0.1308583979632507,
+          -0.7499225372156203,
+          -1.7369961715705124,
+          -0.15143050583690015,
+          0.5231386676306496,
+          0.8520412821691917,
+          1.1321632958706247,
+          -0.3371967545439019,
+          0.0330951228325214,
+          -1.324954036877791,
+          2.7967490849154144,
+          -0.9175303759525953,
+          -0.5670906055116826,
+          2.0704238880886323,
+          1.5676511215690014,
+          -2.1490932425563924,
+          -0.8684671751654759,
+          -3.2492639908772496,
+          0.3908857194696153,
+          1.7382926507735736,
+          -0.004641542048267548,
+          -0.35250505152495804,
+          1.9308496023334207,
+          1.6005652798570644,
+          -0.05134197784824021,
+          -0.7695908037638614,
+          1.4553523750448913,
+          -0.6513027608300556,
+          0.10709545852958946,
+          -4.217730180100434,
+          1.997151902910683,
+          0.005791777447379079,
+          0.126434998070629,
+          -0.5324777293371713,
+          0.7124047225390896,
+          -0.9701786473781778,
+          0.034288356171967085,
+          -2.5483016315220746,
+          1.4084592341061575,
+          3.6729034318932334,
+          -0.2142010886972735,
+          -0.28388278320055416,
+          0.5400821259259391,
+          0.04884693159350134,
+          -0.4635360338518937,
+          -0.051592704598980785,
+          -0.7519747640376304,
+          1.6587439261877284,
+          -0.24191567773611222,
+          -0.5693730783827978,
+          -0.4339806254699183,
+          -0.26480650715623755,
+          0.30228873586918387,
+          -1.175373427627857,
+          2.959931755178485,
+          -1.761579461513534,
+          0.31032507762799805,
+          0.96616698944657,
+          1.4844873662459477,
+          -1.8104392544214827,
+          0.00018614177315148857,
+          -1.415855106940537,
+          5.75089564825453,
+          0.21389787119670994,
+          -0.883246625153568,
+          0.29182109085348495,
+          -0.7882941377547804,
+          3.0321462564253023,
+          -0.28099702977878893,
+          -2.0893267573210177,
+          3.5084332419735453,
+          -0.46753732278392734,
+          -0.7487156547942423,
+          -0.31810876513884406,
+          -1.5168134371209765,
+          2.457655427212635,
+          -0.33820062785764454,
+          -1.669881448728958,
+          -0.08217908343513704,
+          2.4744553438833825,
+          -0.10749742832402102,
+          -1.6363097584186195,
+          -2.1204578350853045,
+          1.3771209952444003,
+          0.3484181169942184,
+          1.187323748340914,
+          5.416582091424814,
+          -1.9816446181492027,
+          0.00939290401160011,
+          -0.9258145196341742,
+          0.6440831064865706,
+          -0.056182451037426986,
+          -0.03326741667112485,
+          0.767555709600033,
+          1.2078420772789284,
+          1.1973361149882034,
+          -0.0887335020913609,
+          -2.4828173734745795,
+          -0.23557706714275356,
+          -0.6060696242329853,
+          -0.4261760629979451,
+          -0.19210890361755706,
+          -0.43809751728156554,
+          0.3427764582889718,
+          0.15882520855244564,
+          -1.1360511620807416,
+          0.06250260071318572,
+          1.2183363745937414,
+          0.7726589684707306,
+          -0.8048135095299574,
+          -0.22804792057709566,
+          0.0709528451677165,
+          -0.09557004247747736,
+          0.8550074440608122,
+          -0.0675096234216866,
+          0.14466943558205136,
+          0.5958484216446815,
+          0.02221693230531494,
+          -0.6183328170951771,
+          0.477045410439989,
+          0.7013988302424004,
+          -0.03629365255897309,
+          0.7053680165842863,
+          0.1869383903512814,
+          0.7238715930301173,
+          -0.6354934622322819,
+          0.2501579846726832,
+          0.20918951504351033,
+          1.133335105519659,
+          0.004514670823413806,
+          0.010809406727805922,
+          -0.02097278015703046,
+          -0.02668605274864548,
+          0.23266665834819122,
+          0.11609081015625668,
+          0.46205541719536347,
+          -1.128678118943114,
+          0.22147004451747576,
+          0.07214998666321465,
+          -0.004736680929489285,
+          -0.248102582543185,
+          0.5544610830082992,
+          -0.06028435470231628,
+          -0.0073525642942247295,
+          -0.8115394090097892,
+          0.7882706376819784,
+          -0.2779083200521351,
+          0.022567788270673326,
+          0.0632260449598681,
+          0.8346649995508613,
+          -0.5298649969691812,
+          -0.1367320806996921,
+          0.959307322064514,
+          0.1900476461152681,
+          -0.03244782834092328,
+          0.578560336288793,
+          -0.01713213645668885,
+          0.6135159562690566,
+          0.051794203131025236,
+          0.41252011065015254,
+          -0.43085237270523263,
+          0.7702649118879444,
+          0.5451854404416373,
+          -0.11674653921141269,
+          0.8648984600773636,
+          0.14463129863714372,
+          0.011147528749896713,
+          1.0989923386098615,
+          -0.1402626335177906,
+          -0.003865698346551373,
+          -0.4543961252459431,
+          0.1990939619691127,
+          0.6921074378800354,
+          0.615272721562896,
+          -0.10856990544689354,
+          -0.3281806787764177,
+          0.04140631345136351,
+          0.0064947815421400705,
+          0.010573553724151516,
+          -1.1589956839776514,
+          -0.0951463285561023,
+          -0.34878919617846954,
+          0.2677061055906993,
+          0.4370438413819852,
+          0.05252764004712061,
+          -0.3055579874493321,
+          0.418869872253731,
+          -0.11602880041304632,
+          -0.16519848500371892,
+          0.4132713283142512,
+          0.6011179487626037,
+          0.21642628961024835,
+          -0.18999897445528321,
+          0.664261811574892,
+          0.285358324747015,
+          -0.07367308877320818,
+          -0.21487034078636755,
+          -0.5099991085278897,
+          0.05103564436496579,
+          0.0532724623919099,
+          -0.24553317918665432,
+          0.010755241727090477,
+          -0.2418819855224086,
+          0.2190418095466212,
+          -0.8230442390866505,
+          0.5784871833100453,
+          0.34048191436563935,
+          -0.4265804942213281,
+          -0.04480646245835452,
+          -0.17364735313329954,
+          0.7060782844552097,
+          0.1684789731953533,
+          -0.16742452564943883,
+          -0.08919049924637905,
+          -0.5908721760736734,
+          -0.14206734008354613,
+          0.33782978972130423,
+          0.08666100392363854,
+          -0.7261732031324991,
+          -0.14389026272482,
+          -0.5423911250491402,
+          -0.20031528878583932,
+          -0.3050396016635311,
+          -0.7202385867203835,
+          -0.30900863611217966,
+          -0.17156910294569097,
+          0.07098905971459034,
+          0.10685250366262652,
+          1.251293764655237,
+          -0.00488726990927416,
+          -0.5513864909522654,
+          -0.365321847322723,
+          0.0910959004492998,
+          -0.14406742490042418,
+          0.4073218230064669,
+          -0.1314532872397985,
+          -0.13522937617749498,
+          -0.1197456105494001,
+          -0.2950126405562605,
+          -0.30509173900112413,
+          -0.12643283285922377,
+          -0.43120636407629487,
+          -0.3607983655898398,
+          -0.0692100007876171,
+          -0.0030436985405476857,
+          0.371488157520179,
+          -0.4018933423548215,
+          -0.05910541518271675,
+          -0.7000305224916263,
+          -0.6667875860788253,
+          0.3531243270555544,
+          0.12760333822198736,
+          -0.014178273461913906,
+          -0.17149374459706943,
+          -0.1778701261072634,
+          0.7428098626247844,
+          -0.4347511160430561,
+          0.0482961619708127,
+          -0.00032545548730745756,
+          0.09785148522386757,
+          1.217396790188022,
+          -0.7052393229761114,
+          0.023800801141296582,
+          -1.172579948949079,
+          0.36543955060330896,
+          -0.12417819091861779,
+          -0.1739769269984116,
+          -0.5087616525184225,
+          0.5303146225739516,
+          -0.8697023269475186,
+          -0.9910063390898719,
+          0.15587867443590142,
+          -0.09152382411443112,
+          -0.9573782342248538,
+          -0.18618003742912126,
+          -0.680676493350311,
+          0.2556934239498336,
+          -0.2762542993717564,
+          0.046461678913522125,
+          0.26134954117112363,
+          0.014975171807102491,
+          1.0043647535639433,
+          -0.5718690021093257,
+          -0.9656553981201059,
+          -0.12856644018031832,
+          -0.06101750214573517,
+          0.9464944787289395,
+          0.2550552536584647,
+          -0.5990734463251018,
+          0.2397898782239612,
+          -1.164645812112247,
+          0.053723675131298415,
+          -0.017903537992573906,
+          -1.1001961161698917,
+          0.11092568253916478,
+          -1.087743421330375,
+          0.13870629725947012,
+          -0.5583761368421994,
+          0.14920738413733325,
+          -0.8846357585715124,
+          0.4427564720962898,
+          0.5582167793208725,
+          0.11117778142367953,
+          0.24490978602230687,
+          -0.12486690441560086,
+          -0.15828981731170416,
+          0.02547433596298069,
+          0.3574191381340155,
+          0.011133536166772207,
+          -0.31247433996663765,
+          -0.1351486416803844,
+          0.44053868272277974,
+          0.2799796451637268,
+          0.04494817016128439,
+          0.10620904763864741,
+          -0.014500557119952307,
+          0.05074579920415606,
+          0.263086873589788,
+          0.39741557859560744,
+          -1.2750901126847611,
+          -0.10876254475333062,
+          0.12199000553986106,
+          -0.002816502779328105,
+          0.790305068443179,
+          -0.48567672848268423,
+          0.5848320370326608,
+          1.1191976286407654,
+          -0.06196542267362903,
+          0.008808233896566132,
+          0.2113694923340749,
+          -0.04017685281042454,
+          0.2327532297874013,
+          0.3714665814667497,
+          -0.02470672084851467,
+          -0.03976319105396404,
+          -0.5537099001129784,
+          0.12081758749021586,
+          0.6526866511413827,
+          0.1552836031584832,
+          0.16247575248231833,
+          -1.0010184497287187,
+          -0.03820115928018126,
+          0.5748078819077526,
+          -0.14287763596821484,
+          -0.3387603388561167,
+          0.6406254834206911,
+          0.4559243419652021,
+          0.19173104092527687,
+          -0.1846872450740823,
+          -0.090936414660824,
+          -0.8357301678714628,
+          -0.4257871522329015,
+          -0.48602569896782144,
+          0.11724999038146783,
+          -0.03333165840918584,
+          -0.283158423739767,
+          -0.4027801446169887,
+          0.15620322107369103,
+          -0.5071000579529283,
+          1.1338723383816818,
+          0.14320201341131764,
+          0.22702395120404925,
+          -0.15992453238979337,
+          0.293481896897523,
+          -0.02375210215552284,
+          0.9053667047143397
          ],
          "y": [
-          0.9966423799600188,
-          1.7639453637154663,
-          0.7638454321427735,
-          0.9946694266738753,
-          0.26789122531162934,
-          1.4265679117836776,
-          1.758065706173968,
-          1.7258211480387973,
-          3.6646144920014345,
-          2.973733442735852,
-          0.3240623351961729,
-          0.850189281254209,
-          1.2995204194161605,
-          2.498958462667532,
-          1.250430283001045,
-          1.1345832848122468,
-          1.294454597301972,
-          1.6675849604766078,
-          -0.32123373766369157,
-          0.7502273879596166,
-          1.2008242896744736,
-          3.22815443334965,
-          1.491557919402587,
-          3.7859119139940556,
-          1.3945236051618757,
-          1.443375982102375,
-          1.938411423873292,
-          1.012814304566495,
-          1.6836183119363326,
-          1.2099260524129978,
-          2.150834649684363,
-          0.7732392033498553,
-          2.9581316153017756,
-          1.292035721730908,
-          1.4260250117929785,
-          0.9439142737213257,
-          -1.0802826172424518,
-          0.8340315922050752,
-          0.061820148778757744,
-          1.8893179073293531,
-          0.3432296416482836,
-          2.172697577185067,
-          1.4855939200440023,
-          -0.1937118542442775,
-          1.3430485306940432,
-          -0.24256400279970558,
-          1.100803870459774,
-          0.9175540408508466,
-          2.2224021616505025,
-          1.9269996287341686,
-          0.45537661066170265,
-          0.8928727828293237,
-          1.3079615520802954,
-          1.5469684731271998,
-          0.34882370610822466,
-          1.6973874787119347,
-          1.9310118548691044,
-          3.9971982917191387,
-          2.0869156177890007,
-          0.9473881266436244,
-          1.5066364549090028,
-          1.1394524660291971,
-          1.190923731755106,
-          1.335126133073664,
-          0.9117397698649587,
-          0.675524842503575,
-          2.075934122700799,
-          2.125679932123462,
-          0.9939381742264052,
-          1.5389630726557222,
-          0.35186756611222225,
-          1.160611302155168,
-          1.5251446587882715,
-          2.5107316515392135,
-          0.620092033459423,
-          1.0985260249053879,
-          0.020434685365449012,
-          0.7158604453110327,
-          0.10112618912267035,
-          0.13769306383631896,
-          1.1687225773458771,
-          1.2919658624579071,
-          1.0854772503482972,
-          1.9211890378245602,
-          0.16802889192146864,
-          0.12186492692735618,
-          1.033601707353556,
-          -0.14678309862654926,
-          1.2277091184759583,
-          1.3727672242764022,
-          0.5859947648615954,
-          1.8520150349084945,
-          1.2710342528612446,
-          1.2155456350099518,
-          1.0065479666366344,
-          1.3147099423907598,
-          1.2961335898856048,
-          0.850033708829139,
-          1.2991834608137984,
-          -0.7072259945705526,
-          0.8360740232444841,
-          -0.00848142728631629,
-          1.4410826618604038,
-          2.4639007861743227,
-          0.5910844650800138,
-          0.5112002016490684,
-          0.8949984970958785,
-          1.9878344213079937,
-          1.565200217084599,
-          0.20386849445704525,
-          0.23272742764001764,
-          1.426367818973557,
-          0.33284044993367345,
-          0.6779880293825954,
-          0.17084107751459998,
-          1.6145472376508678,
-          -0.2204142108110847,
-          0.8441909178180934,
-          0.4709753493612223,
-          1.4586004538776307,
-          1.111088351304833,
-          1.4074180346519753,
-          0.4096383081946693,
-          0.8658466730075947,
-          0.9328836124648887,
-          0.2517253452223045,
-          0.9933960895166353,
-          -0.09211990972239636,
-          2.597674996704983,
-          -0.07681697362705608,
-          1.0554799187653805,
-          0.02332230469264529,
-          2.703270926017345,
-          1.6690447424705321,
-          0.4832324324537103,
-          1.0200297488243475,
-          1.3812691469679788,
-          1.0901104292310864,
-          0.7662086324002829,
-          2.7975448446859867,
-          0.28186234123727016,
-          0.21224174237956073,
-          0.9475523003508809,
-          0.3320583295404953,
-          -0.3321257652766474,
-          1.042249604426835,
-          -0.7962765667775356,
-          2.7301167692088395,
-          0.2776998120464077,
-          2.1907286489798454,
-          1.4550755757203704,
-          1.7370228555563136,
-          1.85311026444974,
-          0.03387347687090991,
-          0.10055202374032557,
-          1.5063634710620628,
-          1.3072039458978721,
-          1.1609754975871556,
-          0.3827009302419545,
-          0.36520451789575814,
-          0.46645466261594626,
-          1.3933783444697123,
-          0.8418106201778006,
-          0.4439474425205966,
-          0.3951256009908166,
-          2.0288491536095945,
-          0.6338803106246527,
-          1.722495769442937,
-          2.100428442256864,
-          0.28417408612524986,
-          1.194838818985597,
-          1.357192878994939,
-          0.2753257883176953,
-          1.7775497655241281,
-          1.1793980391804457,
-          1.5953232878926642,
-          0.4598609605363897,
-          1.3091577195174642,
-          0.960483457768439,
-          1.029174426768096,
-          0.9168193398955913,
-          1.2495924760743833,
-          0.7344771385666513,
-          1.8479287533552817,
-          -0.010881496589601358,
-          1.8559972903065458,
-          1.8868426594885852,
-          1.8731692923815881,
-          -0.7592870200405772,
-          0.7200338671934707,
-          1.818313736319962,
-          1.865271157294546,
-          0.8565767835410709,
-          0.18326206813509993,
-          1.4527625878480657,
-          0.5854837825323496,
-          0.45278155973402723,
-          0.35675156878743286,
-          0.6744865870050636,
-          1.1862524599012663,
-          2.369114367674751,
-          1.5012490868072028,
-          -0.374173452371543,
-          2.592225073648775,
-          0.6610914543241663,
-          -1.0813413886427115,
-          -0.04991354536952741,
-          -0.21584398282536843,
-          0.9842223111003292,
-          1.1029652424646106,
-          1.4811458907651867,
-          0.9239510923029574,
-          1.430013523811355,
-          1.115860758842,
-          2.3089894097291124,
-          -0.28255669300528763,
-          1.9363373808293303,
-          0.9339780140539713,
-          1.7403334225564788,
-          -1.2816620724205774,
-          0.3311035082707853,
-          0.12230348648343947,
-          -0.1178943387202076,
-          1.392547815237406,
-          0.9973142741367578,
-          0.11107519094022933,
-          1.1440522315264967,
-          1.435946323899337,
-          0.7149044841716616,
-          1.4209727825314666,
-          0.7853054526131628,
-          -1.754521628398373,
-          1.4174590313631659,
-          1.4629127794931132,
-          2.0755949081983305,
-          1.438023605328097,
-          0.05906404735711457,
-          3.728499745296607,
-          1.8410815386064159,
-          1.559811761930761,
-          -1.133184427628144,
-          1.0432316896448903,
-          1.2397968337419887,
-          1.3689151288291943,
-          2.095873454976826,
-          1.0543356594653925,
-          0.640244983394368,
-          1.282000542554511,
-          -0.24858168909976452,
-          1.2937473516739988,
-          -0.3007350703873357,
-          0.51236092650142,
-          0.20377587722618073,
-          1.7848886874941852,
-          -1.4857949122861833,
-          0.7972799705633297,
-          -0.023734445277818317,
-          1.4829299451775868,
-          0.6711691734127601,
-          1.0148160099305055,
-          0.22988089276824675,
-          1.0613436642408636,
-          0.23104008732520764,
-          0.5878388549517861,
-          0.47166911088957575,
-          0.3647386154413911,
-          0.8742073723416702,
-          0.040027480855959086,
-          2.1092079825867307,
-          1.1424048666281323,
-          1.1555794692306387,
-          1.8584588426390307,
-          1.6884365198746685,
-          -1.011981365705703,
-          0.3772694189962521,
-          2.0031370033055653,
-          1.6232554234584726,
-          0.5521849961282339,
-          1.5634099508221322,
-          0.8675744150566632,
-          1.6883470370380196,
-          0.7109987813987828,
-          1.249725487053597,
-          1.7368371241051792,
-          0.9933214269473278,
-          0.27438254343671276,
-          1.3945440343166744,
-          1.652167885115686,
-          1.018777723387947,
-          0.36196983434762553,
-          1.1728916847876925,
-          -0.0749895671304055,
-          1.0892282868747492,
-          1.599441015306259,
-          0.27411241616800597,
-          1.147822090303245,
-          0.7621861178515793,
-          1.6230110292977487,
-          0.3333807225052775,
-          0.6122390771837759,
-          0.7288903073532056,
-          2.12859406747858,
-          0.2971671870645589,
-          0.5291696234962182,
-          0.8416803874046215,
-          1.6104399993168492,
-          0.9884102156811788,
-          -0.45730476898553585,
-          1.7104245340914495,
-          0.7187063473304306,
-          2.5895633328625776,
-          0.09889671301564296,
-          0.977322474512659,
-          1.5356402250166092,
-          0.47721878343382895,
-          0.8912489771663821,
-          0.49297173720897636,
-          0.8400578517011661,
-          1.0432040486855039,
-          0.3226377712782307,
-          1.435683111924503,
-          -0.011037130045730592,
-          0.5949490470544472,
-          1.1087849058607961,
-          1.2968271085458802,
-          1.5452584830261196,
-          0.819346617954279,
-          0.5817510847201688,
-          1.422014359410694,
-          1.0098137403964043,
-          1.5435243325500279,
-          1.4293507136612709,
-          0.6714467482097025
+          0.9507387236641733,
+          -1.4609018669659382,
+          -1.640833639157046,
+          -1.864401230680103,
+          1.7019811899518815,
+          -1.003460686331533,
+          -3.498216488880672,
+          -0.11350820011281265,
+          -5.210487560954349,
+          1.1917327635940695,
+          1.686082905587799,
+          2.9006765042918947,
+          1.106477144437962,
+          0.8488448788626374,
+          -0.863080779367745,
+          -1.5329601448748382,
+          0.3099484930405093,
+          2.5255412404343076,
+          1.163147986825835,
+          -1.2154270466008164,
+          -0.5358724251098488,
+          2.8744513546657093,
+          -1.666076683534091,
+          1.0925188844368094,
+          -1.4437583979258524,
+          0.009164278178071722,
+          1.1534329882290357,
+          1.8571886453125797,
+          -0.7907093384020175,
+          0.26812946507649554,
+          -0.21719398490866917,
+          1.959072947448237,
+          -1.969333288917625,
+          -0.3547435756889889,
+          0.4270527843337112,
+          1.3832994443893414,
+          1.9382393086967924,
+          0.546980135332814,
+          1.3056687441344415,
+          0.4554253185888012,
+          0.5278660831610479,
+          2.27981897549948,
+          1.192483607058695,
+          -3.079247704537666,
+          2.343367786754232,
+          -1.5443178167126999,
+          -1.217872905271079,
+          -1.6378366071660027,
+          0.6871439671113541,
+          1.3389523643931345,
+          0.582017891690025,
+          1.0337911176413537,
+          1.3352210114041536,
+          0.7747661193768982,
+          1.313093790863373,
+          3.25804795495609,
+          -1.0990136567042288,
+          2.9535619710024203,
+          -0.7023707855442013,
+          -0.7054855647489746,
+          -2.5273012175915093,
+          2.842328542103315,
+          -1.3956923655844684,
+          -2.1003783563951623,
+          2.404772830906539,
+          2.487053960921078,
+          1.5072351687483079,
+          0.594946370112716,
+          -4.470460630329637,
+          2.082649817500747,
+          2.0765034337594384,
+          -0.5736424231181826,
+          -0.7640212701543557,
+          0.6299558930117277,
+          0.054970783611795436,
+          -0.28262316163588386,
+          3.0445046798020674,
+          -0.5006269097822741,
+          -2.851224897993285,
+          1.5584617383141581,
+          0.9529134801682912,
+          -0.6471018155017065,
+          -1.2725531706982716,
+          0.618288676530415,
+          1.528442651796016,
+          -1.8098297402100623,
+          -1.9994433319426057,
+          -1.9886235516619797,
+          -1.5665311787873546,
+          -1.3224794379610318,
+          -3.326036909516454,
+          0.24593377421074764,
+          -1.321072119167412,
+          -1.6705034919303605,
+          2.086940470567741,
+          0.7322715165566391,
+          -0.8299759915442038,
+          0.25012962161698515,
+          0.16541155395717655,
+          -0.9449570957230445,
+          -0.6021913053371268,
+          -1.280063795575897,
+          0.2521249467225228,
+          0.1247538077838758,
+          -3.1133619263873777,
+          -0.30398588858561576,
+          -0.5335224095860793,
+          1.0025565867210748,
+          -0.15843612602889323,
+          -0.29860919233947786,
+          -1.7654855086285068,
+          -0.40744857049802835,
+          -0.7640606713300573,
+          3.689344104551064,
+          0.43942145983682956,
+          -0.7478997412102066,
+          -1.004594469575615,
+          1.1546088187389623,
+          -3.1706020592444677,
+          1.9615838529030967,
+          -1.081079547334837,
+          -1.6122612888527617,
+          0.41675590413802116,
+          0.3556434401965458,
+          0.4882745454361191,
+          1.5198167697033402,
+          -1.7671026194252275,
+          0.7612604359399182,
+          -0.279765588107726,
+          0.7210380922272451,
+          0.3759657595269117,
+          1.91381829097679,
+          2.6004059694906303,
+          -1.5547164402953138,
+          -2.363175468118765,
+          2.1252158732889854,
+          -1.4657283541394175,
+          -0.702113482874212,
+          0.6370671146936465,
+          2.1018676505649716,
+          1.405122611523421,
+          -1.3990067592155464,
+          1.1480190120526672,
+          -1.2583633811338604,
+          0.7818794890055422,
+          1.5325009719406082,
+          -1.430507411459513,
+          1.8712451148302363,
+          -1.1039088747310042,
+          -0.3092644273528608,
+          1.0046024898827677,
+          2.196040826004229,
+          -1.4503291930350437,
+          -2.1954854598542575,
+          1.3638395270154844,
+          -0.22000041174756702,
+          -1.7504162497878641,
+          -1.65681226805223,
+          0.9924424103930889,
+          0.629441506238905,
+          3.4326115500031977,
+          -0.8917815896781386,
+          -1.4895876804553456,
+          2.0517536721328398,
+          -0.7012475041209548,
+          -1.4131033410798406,
+          0.9693950168859247,
+          -2.5448582265299375,
+          -1.1911657079574993,
+          0.1390532824563251,
+          -1.1334599452830727,
+          2.0805579187632115,
+          -0.693779705327176,
+          -0.2769041071155993,
+          -0.32748473185800103,
+          2.3792582428308338,
+          0.6144698925221288,
+          3.0092062445387073,
+          0.8531220720760068,
+          1.32008072252813,
+          -0.5329859974494561,
+          1.1957861904680407,
+          0.37795427793769626,
+          -1.069761315210953,
+          -0.48095978556024527,
+          2.622077378390932,
+          -0.7804650607651666,
+          -1.1334290911408165,
+          1.0509102675697415,
+          -0.672263028858006,
+          -0.3788173626722076,
+          -1.2682316231232935,
+          -0.5118340433165404,
+          -0.081061637004674,
+          -2.4977196436223057,
+          -1.0794019464850795,
+          -0.3549401042344638,
+          -2.1218560233260693,
+          -0.5582924875189139,
+          -0.35146414808768695,
+          0.49063123877977904,
+          -0.0063226708709991615,
+          -2.534032264421242,
+          -0.9655360447409832,
+          -0.004880631905791272,
+          2.789799804362405,
+          -0.41515998799187714,
+          -0.026590113047491582,
+          0.15582274413084818,
+          0.6693721109387395,
+          0.635058515638188,
+          -0.8186628693726372,
+          -0.0009337727572149829,
+          1.111019614517812,
+          2.717398172366105,
+          0.21000480953039344,
+          0.5165125124624442,
+          -2.2685278343601216,
+          0.8430446388966251,
+          -1.8294193835315096,
+          -0.18058543409831881,
+          0.20705028112294988,
+          -0.19770041564976637,
+          1.2017590528751638,
+          0.20732458442887125,
+          -0.28432120735595434,
+          -0.1944383914641133,
+          0.4681494135074747,
+          -0.17581793134202092,
+          1.5037397557332848,
+          0.08033829635208746,
+          2.743245102337111,
+          -0.5269595694258096,
+          -2.2852417422997724,
+          0.5724001395770959,
+          0.9461444855431792,
+          0.436372421897348,
+          0.2521165122008171,
+          -1.3718684651684878,
+          1.6376525323564495,
+          -1.057608258791175,
+          -2.1913152001736047,
+          0.32625461473296663,
+          2.571523918004652,
+          0.20277965709142748,
+          -0.31535932899989777,
+          -1.6487091992273222,
+          1.414543453499205,
+          0.4496630750617773,
+          -3.0797018311096096,
+          -1.67737816558978,
+          -0.09278600687868041,
+          0.4317082103712811,
+          1.6341217972252013,
+          1.006450767109474,
+          -2.941258157142888,
+          0.7275244702033437,
+          -1.9079118138283795,
+          -2.679739509295975,
+          0.5805864639467728,
+          0.7010367006341026,
+          1.995733420968161,
+          -2.5965941014992775,
+          -2.356310641821905,
+          0.0007911766904949945,
+          2.9152530222810924,
+          1.6079915529564839,
+          -0.07111556108835232,
+          0.01739075824917262,
+          0.2657697721181378,
+          -0.4549273590621395,
+          0.9466406577000411,
+          0.5271492666552559,
+          0.6713298035599874,
+          -1.968667330689397,
+          2.0681417699905453,
+          0.02802636719596589,
+          0.5254375989008989,
+          -0.27183180530191087,
+          1.85772602677457,
+          -0.16273401694017872,
+          0.6237607031941697,
+          0.8076779383648881,
+          2.416528461849385,
+          0.5761506975514916,
+          -0.3028719516783794,
+          1.4928957330512143,
+          -1.1101216437618469,
+          -0.08898267160727794,
+          1.5114715195168198,
+          0.7998027981060454,
+          -2.8896486253286393,
+          0.06895900873472428,
+          -1.490792151421512,
+          -1.8809174691168706,
+          1.2102405221951047,
+          0.16007494776391762,
+          -2.5361858065533815,
+          4.0039140790247485,
+          -1.117157519722987,
+          -0.005398838721984577,
+          -1.2807593470391945,
+          -1.4065563643751147,
+          -1.9536947446225512,
+          0.1032210978561462,
+          -0.7908749905969928,
+          -1.0339427103124705,
+          0.11396851403570954,
+          -0.029497253806490112,
+          -0.2800375457424895,
+          -2.1750398393231323,
+          -0.5233670306447188,
+          0.6612519161745563,
+          0.8570682736074848,
+          0.3457111814953548,
+          1.5441723118429775,
+          0.17801035979137766,
+          -1.5302779208223036,
+          3.413789935884034,
+          0.7390574628206835,
+          -0.10622278812665485,
+          1.339425392304214,
+          0.2226484752998057,
+          0.012565581264524445,
+          0.2417431169617102,
+          1.0497586973670678,
+          -0.7493942494031723,
+          0.6936973174009294,
+          -0.09050731229752926,
+          -2.325340145657693,
+          0.479611336542983,
+          0.3194797815987404,
+          -0.28180471440108185,
+          0.0455758041942531,
+          -4.512504480234752,
+          1.3159001846445053,
+          -0.8672478604154873,
+          -1.318987092707462,
+          0.5969380854812109,
+          -0.03230419163262233,
+          0.9453911100767574,
+          2.599232314113786,
+          -1.6038323487424455,
+          1.6038563159971413,
+          0.12773541614250922,
+          1.4740955086951153,
+          1.2616373846827704,
+          1.611695810602449,
+          0.20315088377477986,
+          2.649763211171915,
+          0.7496986873576182,
+          -1.1471274285561792,
+          0.17721574698111234,
+          1.7556047547815559,
+          -2.4115801556347494,
+          0.060748987986955875,
+          0.2511386427186481,
+          -2.7807743033098737,
+          -1.9838986617137768,
+          1.3547771093983703,
+          1.340555491137276e-05,
+          3.998870185598647,
+          -2.8080933095574747,
+          0.23977805909955116,
+          -0.9242042463611809,
+          1.8192527677686785,
+          1.60911752132923,
+          0.45574286046862483,
+          -1.2555166954946624,
+          2.7043498766638443,
+          -0.6464922165806761,
+          0.10060404763424102,
+          1.153559555791587,
+          -1.420484926641484,
+          -2.545376264220138,
+          1.715790788786535,
+          -0.6134842659534847,
+          -1.946237874410779,
+          2.2201360808808435,
+          -0.3977037678053374,
+          0.058808751171267534,
+          -0.8821230851687596,
+          0.48836883552817834,
+          1.747549620984022,
+          -0.3783485623204143,
+          -0.8667291375171329,
+          1.0379311630005312,
+          2.291604166069388,
+          0.06250718244532008,
+          4.525970364441258,
+          0.6059063870065526,
+          0.468875705067526,
+          -1.0525741531502009,
+          -1.894894087333862,
+          -0.9529753951619035,
+          -0.9608062451536233,
+          -0.27000857058494215,
+          -0.8936726567941927,
+          -1.1881797919106774,
+          0.8789619846249255,
+          -0.044203689207128735,
+          0.04214963635808731,
+          -0.35500473434017416,
+          0.12931388336367242,
+          -0.34942446796249327,
+          0.6114305232381789,
+          0.7750988074248736,
+          -0.27278660245260605,
+          1.1468528723011227,
+          0.15141185820415767,
+          0.20796221952400187,
+          -0.21806120063909373,
+          0.11365644731071431,
+          -0.23476793990367958,
+          0.48062897187980014,
+          0.9796662496154682,
+          0.4818706102364924,
+          -0.12457823037473095,
+          -0.5114902306136153,
+          0.17225422284308187,
+          -0.35979968363769765,
+          0.27044393174798304,
+          -0.7069479277855016,
+          0.6699139881771468,
+          1.0638960228202812,
+          0.6275122787848856,
+          -0.18133430333483963,
+          -0.06800478176566882,
+          -0.5896579319569151,
+          -0.17074414071048336,
+          0.5384835026334868,
+          -0.038901268849381894,
+          -0.004345570391338937,
+          0.5553069102627668,
+          -0.607467468553227,
+          0.15804901464392085,
+          0.0386352650007871,
+          0.2750266214769868,
+          -0.013537549942608591,
+          -0.009208174576372073,
+          -0.6920331731519335,
+          0.1683101698775422,
+          -1.2436096818044238,
+          0.009636574584223415,
+          -0.4243342949176514,
+          -0.9141289298286145,
+          0.5887174031733619,
+          -0.2553003034150493,
+          -0.3314477831790814,
+          0.3749830047362919,
+          0.3326279615282467,
+          0.16202431357544173,
+          -0.042279445735669774,
+          -0.31379377622578103,
+          -0.39546325535862464,
+          -0.1813837539634242,
+          -0.4838546626414723,
+          0.3122816979419086,
+          -0.18521629832357472,
+          1.014816003020535,
+          -0.6847224265398735,
+          -0.34761865885174975,
+          -0.0010879182458665103,
+          0.033689664716109645,
+          -0.34297672392947337,
+          0.07034136803774425,
+          -0.6146283973210291,
+          0.18066874738361116,
+          0.24701640854746582,
+          0.005831517100199118,
+          -0.8074238527232648,
+          -0.1962207577757132,
+          0.3003349623347941,
+          -0.8521818554451426,
+          0.40505369178150674,
+          0.08467588183532945,
+          -0.39963072007241535,
+          0.07760937381741173,
+          -0.007604336141021661,
+          -0.24462042422475483,
+          -0.31787495261700893,
+          -0.9299262257432003,
+          -0.2256629366364449,
+          0.27368987824548563,
+          0.023368998275195386,
+          -0.1975812061498684,
+          -0.38054897001965415,
+          0.030205431623405776,
+          -0.15613936795301633,
+          -0.3713148213131985,
+          -0.8563145790097807,
+          0.6132101852563157,
+          -0.22329883280319054,
+          -1.3029682900070514,
+          -0.2673290345769261,
+          0.05768039973483042,
+          -0.34954168707330896,
+          0.0038226141822543303,
+          0.3625817342971802,
+          0.047430132179959825,
+          -0.12384074291393202,
+          -0.012004127210053466,
+          0.17002123092342675,
+          0.9858449475181511,
+          -0.6358197648712212,
+          0.1471306005176655,
+          -0.07777324097675156,
+          0.6404117280682888,
+          -0.7111505379515354,
+          0.14375968949036802,
+          -0.046021049283079755,
+          -0.032531787369088475,
+          1.1211991399436767,
+          -0.27599712110493,
+          -0.2778098496917429,
+          0.21279504201641924,
+          0.6810891177396245,
+          -0.11518790207636491,
+          -0.06292325531168921,
+          -0.12852825994853762,
+          -0.19573801913511044,
+          0.06110700445436372,
+          0.22856969886471365,
+          -0.2943724852385639,
+          -0.2859139764414744,
+          -0.5884735946022883,
+          0.15658783157786488,
+          -0.2666618630495401,
+          -0.07075394583749854,
+          0.018299795162921132,
+          0.09221708652677182,
+          -1.390564001760982,
+          0.1889628774951814,
+          1.1452024118818125,
+          -0.03470524175158525,
+          -0.14475572517113142,
+          0.05084290575777056,
+          -0.5326285125885568,
+          -0.27137522575843454,
+          0.6070665819214298,
+          0.23643531940872212,
+          -1.1248112486628863,
+          0.088760437387161,
+          0.01967127676004696,
+          -0.03974323872927394,
+          0.8472927484852483,
+          -0.335154386367008,
+          -0.04595601261519409,
+          -0.4914900813008438,
+          0.1925405262597624,
+          0.06394771617409853,
+          0.07184730782215322,
+          -0.061921913526794256,
+          1.0266856361334087,
+          -0.039453782308062325,
+          0.8276786666520652,
+          -0.022163672693607514,
+          0.1333062772405066,
+          0.11083751354930584,
+          0.5620096512529557,
+          -0.766596633680566,
+          0.11573454376849096,
+          0.003423133870876108,
+          0.49677560923192715,
+          -0.12324543794102501,
+          -0.27034474818608883,
+          -0.28003913126323443,
+          0.8330001880105893,
+          0.18578742024556433,
+          -0.2804601101457663,
+          0.5028143268618775,
+          0.1586706379482543,
+          -0.07999556959058139,
+          -0.030452654656929593,
+          -0.33902215966426524,
+          -0.5586360671323508,
+          0.3343278635044793,
+          -0.5461316518433342,
+          -0.025008096912850383,
+          -0.19641377495817924,
+          -0.1535555805731031,
+          -0.9095850109868004,
+          0.4772031851788046,
+          -0.24993369079875055,
+          0.11875011744841703,
+          0.8096195510928034,
+          0.27094928031284155,
+          -0.3799822779835486,
+          0.6098301888271483,
+          -0.5447397697398922,
+          0.07869096858330253,
+          0.06002166393467011,
+          0.7835074855469458,
+          0.4998187634064203,
+          -0.7315124848208409,
+          0.29229016969519894,
+          0.2473485357171275,
+          0.9870911460087383,
+          1.1444199854734214,
+          0.5242004077142726,
+          -0.9801343304510399,
+          0.149489968870826,
+          -0.012721169958383698,
+          0.46117181541333535,
+          -0.09594703563609658,
+          0.41494576956396273,
+          0.20305230575691374,
+          0.6487745859454398,
+          -0.00022074233256796254,
+          0.17098222248227998,
+          -0.056821760226498826,
+          0.21253816370451556,
+          0.11922842718275994,
+          -0.2641702145423113,
+          -0.19867162823959075,
+          0.3001933198339789,
+          -0.02446395182743563,
+          0.5855056505174773,
+          -1.2316415485734225,
+          0.4371829058847728,
+          -0.1914767011964607,
+          -0.1775267066727883,
+          -0.05253015804037996,
+          -0.10300099953429079,
+          -0.6752275371939169,
+          -0.7267488995963441,
+          -0.05508023004472249,
+          0.0674729532147538,
+          0.01871469639252447,
+          0.1600566923202637,
+          -0.13395241083370266,
+          0.2977417168497117,
+          -0.34294640025188305,
+          0.19377183597970224,
+          -0.1825353592570158,
+          0.2274816761841238,
+          0.027394917711578728,
+          0.27641396930753515,
+          0.08000875754122393,
+          0.15250786791642096,
+          -0.3175290757550497,
+          -0.03600446398310789,
+          0.10557927433555114,
+          -0.17650868100264347,
+          -0.06847583766020592,
+          0.2082913208219915,
+          -0.6053262776921167,
+          0.8550441974898146,
+          0.022620479178419067,
+          -0.7105093554104904,
+          -0.8175987487174903,
+          -0.15498914154855037,
+          0.1130656009263308,
+          -0.4589749924826032,
+          -0.8440700170089213,
+          0.1718437844426501,
+          0.8073076235736172,
+          0.005581675994112762,
+          -0.15392156596322976,
+          0.6241787956120264,
+          1.0700428997281846,
+          -0.5483155654048668,
+          0.07859870519093119,
+          0.14447487809789772,
+          -0.08307895509946082,
+          0.6830069763351194
          ],
          "z": [
-          2.4845207658487,
-          0.9550804618455668,
-          0.19606162327283638,
-          1.835969924272277,
-          0.44326548767523066,
-          1.6952675002522368,
-          2.757826899501951,
-          1.3492927723542074,
-          2.8744244469332436,
-          0.8367216147716967,
-          2.322548462831661,
-          0.050399755934995794,
-          -0.06404592724557245,
-          1.9328388923622373,
-          1.6802871657177567,
-          2.311480818960295,
-          0.133965554776608,
-          -0.7944435850889013,
-          1.9865140038042008,
-          1.5285392018314015,
-          0.041920620358639304,
-          0.8374720353237433,
-          1.5042572444841515,
-          1.9818219444386038,
-          1.5605292848705128,
-          2.722627660704549,
-          2.2204763910810748,
-          -0.16849089209926693,
-          0.26504812316462223,
-          0.36756096192382504,
-          0.9136150156485014,
-          1.6726128910898423,
-          1.489811254794013,
-          3.748782415910065,
-          2.9706783914664907,
-          2.1629808803918413,
-          0.20482498758616596,
-          1.220145190351275,
-          1.3571625857012706,
-          1.8301176644952266,
-          2.6761895075020155,
-          0.5239822524010569,
-          0.12848940566684275,
-          1.9957835101574903,
-          1.4661471304949543,
-          1.5282699389151055,
-          2.654668315866706,
-          1.6871403060029788,
-          1.0621792298122876,
-          0.3242819975844681,
-          0.7280000276918639,
-          0.3350334886800035,
-          0.7371509338396272,
-          0.7355196512313774,
-          1.2422442324896497,
-          0.27433239711697943,
-          1.493117527216005,
-          1.1051599818512121,
-          0.06884214984339876,
-          1.6984327820629752,
-          0.5991346649902977,
-          1.7824660218746737,
-          1.1071453297375684,
-          1.3646018037048318,
-          0.7962404865055797,
-          0.16852132709850942,
-          1.1457586393276573,
-          1.2431030583284144,
-          0.5507146520641917,
-          0.13926201152689677,
-          -0.911642210919043,
-          0.9818331185945455,
-          2.359718213000896,
-          1.264824242464778,
-          1.5553796561497686,
-          0.799555017322775,
-          0.1982108920489496,
-          1.527568116112033,
-          -1.9538234854006244,
-          0.41304179002371555,
-          1.2301808062292197,
-          1.4456435044900993,
-          0.8109420791476254,
-          0.6678222060692613,
-          1.5945090026314697,
-          2.8205802682649663,
-          1.3836443849696414,
-          -0.5309276325126464,
-          0.265995005710849,
-          0.0934922190672296,
-          0.07530776947646789,
-          2.563961336859704,
-          0.26393478145935023,
-          1.7715225308761193,
-          1.8541996486128163,
-          1.8058977770010687,
-          0.41184687467943126,
-          -0.1154200035302062,
-          0.7492123927893681,
-          2.1322873748389384,
-          1.4022623446643774,
-          -0.7230460292912313,
-          0.6932273153363696,
-          1.555294190013616,
-          0.30068112674332814,
-          1.2079296919616744,
-          0.24673578826285802,
-          1.4463742447585357,
-          1.8793072927089765,
-          0.12084680090645394,
-          3.2785173159559986,
-          2.191720302401696,
-          1.0332232385169595,
-          1.1720589223662587,
-          1.4425624290228072,
-          2.109099465476719,
-          0.5713977630512899,
-          0.6766463305612846,
-          0.8142632365815013,
-          1.908222524091729,
-          -0.044925034622251614,
-          1.63942804219255,
-          1.7495550374451283,
-          0.1274054735938469,
-          0.16739278026115167,
-          0.5797359688411714,
-          0.9761562318638836,
-          -0.47314587664652996,
-          1.857322191906177,
-          1.737528063466538,
-          1.2429025407112515,
-          -0.7998395353884376,
-          -0.07446276635600202,
-          -1.4902817083763287,
-          1.2769943311191005,
-          1.7400783657052865,
-          1.8181755254714744,
-          -0.40567680770400183,
-          1.4732152090075887,
-          0.5362027303501207,
-          0.3846076742451229,
-          0.21615826091531587,
-          1.5799721710336103,
-          0.43833944307457395,
-          0.19043319791042768,
-          0.5958460942926773,
-          0.6593959222562333,
-          -0.6797453265189957,
-          0.42134894587954486,
-          2.761501893492003,
-          0.8895988360984115,
-          0.7581820874710199,
-          0.8944750612290459,
-          2.7459036321856196,
-          -0.44288857405769355,
-          0.1438923473435697,
-          1.0442061748804525,
-          2.507707699313365,
-          1.69857548086202,
-          -0.6131300189146887,
-          2.783918606607485,
-          0.819449709114261,
-          1.5185128336026552,
-          0.026032955750899256,
-          0.2489766086094758,
-          0.5682488249688722,
-          1.1244375979069443,
-          0.6833422352633562,
-          2.8041190919644037,
-          1.126770601142113,
-          0.3029210871993032,
-          -1.3214853420775783,
-          0.8571733614048495,
-          0.8896000959009566,
-          1.620093197586867,
-          -0.4058596858654655,
-          0.6451492686481846,
-          0.31595396962095834,
-          0.006566400866884314,
-          1.269783929399936,
-          1.5661773907701724,
-          0.8528283521515636,
-          0.09466383248514754,
-          2.865727355968457,
-          0.861203599054464,
-          0.5371694765696294,
-          0.5475757351909585,
-          0.6129469737662724,
-          1.4193418724616254,
-          1.1127489380767497,
-          0.7059056916113662,
-          1.6961897158262458,
-          0.9673440962596901,
-          1.7239970324019036,
-          3.7008664695495948,
-          2.126517893685703,
-          2.7897907703084006,
-          0.23391954385307034,
-          2.3212111260775763,
-          2.0610418591835806,
-          0.6058419034739262,
-          1.536487727121329,
-          0.9218300638642067,
-          0.8147340850696418,
-          2.450340258759062,
-          1.8178664249496361,
-          1.269235132886258,
-          -0.34842751278098105,
-          0.4155065672056013,
-          0.37349978395667327,
-          1.2872965727490873,
-          0.2397376002965207,
-          0.6530265468948827,
-          1.1745156615457952,
-          -0.510924561816994,
-          1.8105949731485924,
-          0.5290101897359968,
-          2.5685339387093267,
-          0.7854974331757808,
-          -0.11185070666402885,
-          0.6678022838580666,
-          1.1707989039338025,
-          0.2158884659437612,
-          1.2385841879306048,
-          0.48156436812249614,
-          0.48329089057011465,
-          0.6543463433943308,
-          1.6673831031405686,
-          0.5274991069150956,
-          0.98405027302323,
-          -0.25615527450738673,
-          1.2518694483180255,
-          1.0811438318496203,
-          0.324960988580532,
-          1.3142893154787072,
-          0.7371831767029405,
-          1.5321161341863818,
-          -0.3634042473375141,
-          2.2287280552289204,
-          1.1426213926688829,
-          3.099752547995989,
-          0.09758527925587457,
-          2.103626910444787,
-          1.063107121492024,
-          1.3345576345378802,
-          -0.336269636551354,
-          0.7086679938750535,
-          1.3763885618891993,
-          1.2068163617914038,
-          1.3265959599163561,
-          2.44700461758506,
-          0.34182472586289614,
-          0.30630203238333276,
-          0.4095592297967251,
-          0.41447843810426077,
-          -0.19999558009364304,
-          2.017174214170156,
-          1.6320232236170216,
-          2.0347991305262365,
-          1.9354943958784454,
-          0.6511480028087999,
-          0.6878686324587128,
-          1.1126852001603738,
-          0.45923664502277795,
-          1.4165235447151714,
-          0.25033304905408615,
-          2.8224633429937906,
-          1.365396208236193,
-          0.38977930746214606,
-          0.4978921751703025,
-          -0.07075437633850257,
-          1.250943193236659,
-          1.3397830221392302,
-          -0.731324578876315,
-          -0.05132901802327883,
-          1.2317927626259249,
-          0.8772285743131895,
-          2.9979482045129,
-          0.8370878066237647,
-          1.0847977290261435,
-          1.6651060515214793,
-          1.1262558727139327,
-          0.9543571466662046,
-          1.1480574138908146,
-          1.7355668983025718,
-          1.3574701858487241,
-          0.9824826371042515,
-          0.1640602238334915,
-          1.2727933862859797,
-          1.2823526639796525,
-          2.89557477322856,
-          0.9976565968504798,
-          1.0630176588992286,
-          2.099073062553966,
-          1.2991956221800895,
-          -1.5314300457780048,
-          0.5891428008635256,
-          1.5356540513524743,
-          0.32428846984130766,
-          0.12222269356418969,
-          -0.4912278313904628,
-          -1.757853629547368,
-          0.9057561564752484,
-          1.5413793726352385,
-          2.8680329249591097,
-          0.6706035440374569,
-          1.5660574588320673,
-          1.42345833183039,
-          -0.05584463743384083,
-          0.8814657659711358,
-          2.3854377816563823,
-          0.8639035413183507,
-          0.3299094261819665,
-          -0.19415865609131666,
-          0.957551470988244,
-          -0.950095160018759,
-          0.8642043597429852,
-          0.44931915334323747,
-          -0.03779547301818398,
-          1.2093543301876148,
-          2.240965598738532,
-          2.0877267513388533,
-          0.20152720320036754,
-          -0.06843748584582876,
-          0.7867115866140528,
-          1.8869526074731717,
-          -0.7459690324749819,
-          0.6503012546412495,
-          0.7832849886135727,
-          2.1433042743300135,
-          1.6816606513974395,
-          2.1609526907425614,
-          0.8916651526307058
+          0.5776123229889528,
+          0.6015422959646285,
+          -0.2980547663250448,
+          -0.7320299046114773,
+          0.12956705276243652,
+          -0.05014209692267762,
+          2.1292198683426338,
+          1.2620018208263835,
+          -0.7513096299772757,
+          -0.6657895206037923,
+          0.8573675927224065,
+          0.9880593342449369,
+          1.8960815524564198,
+          2.651107843018613,
+          2.6716543021079624,
+          0.7824774940370717,
+          -0.9096974050348459,
+          0.05333946960918059,
+          1.669866942459377,
+          -1.0764696762200219,
+          0.781578116918783,
+          -1.2115230612583727,
+          0.6009803835453298,
+          -1.0644018708755745,
+          -2.9886645166992136,
+          0.798636815274409,
+          -1.009676571790968,
+          -0.37564869839231635,
+          0.07204706139192825,
+          0.5810854451368509,
+          0.6076866514315334,
+          1.1817523104187317,
+          -1.61659952455136,
+          1.5840188345031274,
+          -0.2643407660539322,
+          2.397925255750337,
+          -0.8925738444019516,
+          0.8090395545404174,
+          0.5113244500026899,
+          1.8155873159025298,
+          -0.8711923113490421,
+          0.0917468079482159,
+          1.5065226833387428,
+          2.0172401362121803,
+          0.1249721116306855,
+          1.5583803654441841,
+          0.6812438945214693,
+          -2.8060989330444235,
+          -1.3825452125300597,
+          -0.8676734146736937,
+          -1.3931562592479836,
+          -1.552848269330532,
+          3.0666464008115915,
+          0.2868381705716488,
+          0.9006633261193767,
+          -0.08091514485371888,
+          0.2667987563108488,
+          1.5713040158740528,
+          2.236107203180505,
+          -0.8002043287568426,
+          -1.395512699110684,
+          0.6572577577204296,
+          3.250600507415324,
+          -0.9739080814705956,
+          0.32554808189928053,
+          1.2555788038576978,
+          -2.7155776645163074,
+          -0.9375838447475819,
+          2.9373446027086416,
+          -0.13176115370156405,
+          1.516389768102531,
+          -0.18647396413103035,
+          3.851201254225534,
+          0.9325263592445588,
+          1.5865689795019537,
+          -1.4525295063029635,
+          -1.4070439422728647,
+          -1.3451684918167608,
+          -1.5580729580465402,
+          1.1279965769440483,
+          -1.1465338512212342,
+          0.9942665317870786,
+          1.9360238734449857,
+          -0.15075448319137524,
+          2.50190184718929,
+          1.292782599341811,
+          0.014115721786173102,
+          -0.5088905357046525,
+          -0.5139478651011615,
+          -2.438526851404156,
+          4.729127307447215,
+          -1.3099937336161231,
+          -0.058316708326056475,
+          -0.7025828389220454,
+          0.6977866565831318,
+          2.041705073399282,
+          1.2595522073225096,
+          2.1190460413070076,
+          -0.28852559268920014,
+          -1.257712301822877,
+          1.7255735438117012,
+          1.9162351466368708,
+          1.5023637236520437,
+          1.3964947928424158,
+          1.9052078712928844,
+          1.7747757731955778,
+          -1.6899263486064096,
+          -0.4377850300081463,
+          0.22460253748810702,
+          -3.787479747863574,
+          0.47660258162811503,
+          -1.252182073107447,
+          -0.05884607870308581,
+          0.32721907072576517,
+          -1.4020207936715179,
+          1.7934971336863812,
+          1.6481013189904608,
+          0.8741879107466859,
+          -1.3154505872554927,
+          -0.3328953442229446,
+          -0.19035114104791542,
+          -0.7292085523316502,
+          2.2072004615635743,
+          1.2658715337974205,
+          1.898067653097707,
+          1.9265892465557473,
+          2.5336822670081194,
+          -1.3064933272581492,
+          -1.0512868111264877,
+          1.1080803761937434,
+          -0.11642217986466229,
+          2.0963735436842454,
+          -1.2265506695141952,
+          3.7382537271360703,
+          -3.9469709887563496,
+          -0.4254151238571442,
+          2.810359522198097,
+          0.2742143104898706,
+          0.12476238568275162,
+          -1.3551258927098262,
+          0.8052452094889329,
+          1.4875940442879172,
+          -0.6257664796075267,
+          1.3040753089609267,
+          -1.2554334597024726,
+          -0.7770331067602001,
+          -0.948796263905562,
+          2.057286663580855,
+          -1.1418189355451,
+          -1.543800959457578,
+          1.076449886694538,
+          -0.6256879750382087,
+          0.2114733708998387,
+          2.3533889331716797,
+          0.8126113152024048,
+          -0.1933519253090284,
+          -0.6665108850654071,
+          3.7654423687040546,
+          1.1725175340660374,
+          1.6977352970087505,
+          -1.6798585339010819,
+          0.9917749026073854,
+          1.3622212686265969,
+          -1.2367386326674048,
+          1.7285479416811944,
+          -2.3165497003727737,
+          1.3130425410321156,
+          -1.9830244590657098,
+          -0.6952880306074339,
+          -1.9848908127234215,
+          0.19325312757801943,
+          -3.0263510258848414,
+          -0.12941746613482555,
+          -0.17487599927457653,
+          -1.1031100148579904,
+          -1.9484235484480994,
+          -0.990779379428171,
+          -1.6274920689111163,
+          -1.2432741969010292,
+          -1.3141687610005544,
+          -0.14624701263188125,
+          2.4398259963290587,
+          -1.7841242753179307,
+          -2.5342687691530434,
+          -0.3917072150267685,
+          2.6654463412927094,
+          -1.78695811377408,
+          -0.29364126016675535,
+          -0.6393913354663842,
+          0.12067014685453131,
+          1.3093122878845929,
+          0.8600453396682589,
+          0.15098252198336484,
+          -2.7670948822201322,
+          0.6274896534627457,
+          0.3530483102823863,
+          -0.3565974289234693,
+          1.192186651288402,
+          -1.6937135496122002,
+          3.7916882251978565,
+          0.1894107323451594,
+          0.9412006059665105,
+          -0.4960129039126483,
+          1.1861386847647777,
+          -0.013660192481235154,
+          0.08923519400781948,
+          1.3833600797602728,
+          -1.119477297403264,
+          -0.10289038192047686,
+          2.5281500087930233,
+          -2.291273363963967,
+          0.42317789407104134,
+          -0.011082109527892046,
+          1.1382544686963973,
+          -3.133395656244069,
+          -2.131141830167382,
+          0.22778299778934688,
+          -2.353725239366368,
+          -2.2241268165275567,
+          -1.397471643424169,
+          -0.021547132937350815,
+          -1.5275700343795533,
+          0.3236062446666114,
+          -1.7360460284191355,
+          -0.24899547889883814,
+          -0.8240265049399832,
+          0.28808929078365353,
+          -1.6534625867981663,
+          -0.4752355080817485,
+          0.026991924045708243,
+          -0.04104026082378802,
+          -1.6562666691573773,
+          -0.6302700120153734,
+          -1.4959657033028368,
+          -0.03102682628001643,
+          -0.932719860315406,
+          -0.5054164325469334,
+          -0.023987967489261373,
+          -1.1834137585633877,
+          -2.547056002043938,
+          0.2141520095234683,
+          -4.921692254386499,
+          -0.5326493489861829,
+          1.1550480253315312,
+          -0.2383066990837037,
+          1.1643829154985783,
+          -1.1570396527847886,
+          2.25008209922639,
+          -0.6341534935257145,
+          -0.7983147456108101,
+          -0.6547164722428058,
+          1.5488000268380822,
+          0.2722047015260171,
+          0.9648295224768634,
+          -2.8673641711882145,
+          5.701982429819013,
+          0.1294928268400552,
+          -1.4515586158141651,
+          1.6266030177585997,
+          -4.883882337151836,
+          -0.32504670209609204,
+          -0.03740461417417495,
+          1.548606000761463,
+          1.8768364618360114,
+          -0.07335059426695506,
+          -2.1618933014722406,
+          -0.7862399699933471,
+          -2.0217830760053372,
+          -0.05955729060401601,
+          -1.530551703084092,
+          -0.31842042097207296,
+          1.7565820589130092,
+          -0.6646085583892551,
+          0.9186003467075392,
+          -3.001164206673148,
+          -1.6405481041049386,
+          -0.0879085737742692,
+          -0.5681611595874826,
+          -1.8003861319204575,
+          -0.48214790279832975,
+          0.3433075097906711,
+          1.5888638317888475,
+          -3.3285380497771024,
+          -1.9599154417421791,
+          -0.23622362749402445,
+          -0.6281753075974502,
+          0.5106161286834212,
+          3.9768008445110286,
+          0.15741736927243866,
+          -0.4120402543244183,
+          0.8240543022936692,
+          -0.17967442150088136,
+          -0.3755531677074986,
+          -1.0574664146185895,
+          -0.5915731151811617,
+          1.3529815156755696,
+          -0.3085216647633355,
+          -1.3802981356940789,
+          1.728651219657044,
+          -0.16721643286854415,
+          0.0424259786197795,
+          3.0925138776171535,
+          0.5654069008481213,
+          -1.7651090077004814,
+          -0.39398046334900794,
+          -1.102532723569074,
+          -0.49308615106925996,
+          1.7834288438306427,
+          -0.1700722646693045,
+          -1.5539737544585204,
+          -0.8514072455649453,
+          -3.023783701408207,
+          -1.1958821561969453,
+          -0.29401584729379476,
+          -0.11908074931889907,
+          -1.4163764743213698,
+          -1.1768261035265353,
+          -0.45225116992756753,
+          -1.2460078508101973,
+          -0.1541577558102047,
+          0.1977311390793398,
+          -0.6369784130496613,
+          -1.3169416582366529,
+          1.2427752155129745,
+          0.34923377506045233,
+          1.7714991506943143,
+          -0.6654666743664335,
+          1.420562273980966,
+          -0.052623828592884246,
+          0.4679698973534559,
+          0.7317356162107835,
+          1.732027502585971,
+          0.35942559942676117,
+          2.801964913236424,
+          -2.4933588558629487,
+          -2.5266426161308613,
+          -0.5775642486986698,
+          0.44543416340354475,
+          2.8282260680152187,
+          0.8834769408537159,
+          0.19909972626929298,
+          -0.2091026073080625,
+          -0.4656682287851256,
+          -0.10224107729671608,
+          0.5065003354986787,
+          -0.3995625996171638,
+          -0.6325570902536753,
+          -4.699995707533344,
+          -0.3713081514414218,
+          0.6868226000231509,
+          -2.828867802090856,
+          2.2521390528275584,
+          -0.3864338826889912,
+          1.0838032422132122,
+          0.10909200084349158,
+          -0.3677369641185583,
+          0.5426253435292504,
+          -1.1926954701444403,
+          0.20993763400402182,
+          -0.8525069334611098,
+          0.0004985844647144197,
+          1.6052576906325269,
+          0.09638650201303356,
+          -2.6272504279560716,
+          -0.18497941650866603,
+          0.002928655600117649,
+          -1.8104771217761308,
+          1.7847929654427426,
+          -0.25053698316668693,
+          -1.5727906081780003,
+          0.07983416870741918,
+          -2.9604455431031527,
+          0.009871493534298302,
+          0.845206033455862,
+          2.9821696202353407,
+          0.14146461848763348,
+          -1.151174099326699,
+          1.4935656021779766,
+          -0.6171109096195003,
+          -1.0300762696453598,
+          -0.03435032007554297,
+          -2.5565646502896744,
+          0.8506415803944156,
+          2.0488909994875812,
+          0.11616099024702695,
+          -1.5300047316019383,
+          0.022875641888802218,
+          0.37625366165861546,
+          -0.03090394037381158,
+          2.6845041724817182,
+          -1.7740849555112355,
+          -1.9231486229553842,
+          -0.1729666250621518,
+          1.058273574155701,
+          0.11308609980279835,
+          -0.8597377372396212,
+          -0.07851005027082654,
+          0.4542919758792331,
+          1.0992120815223352,
+          -0.25680905688503886,
+          -1.0976253130027913,
+          -0.012976625168609989,
+          -0.6027756581612468,
+          -0.10692623444935155,
+          0.5226195729988808,
+          0.04830586010663889,
+          0.042490872669989195,
+          0.6581132306148819,
+          -0.22693173129552638,
+          -0.4572072294132441,
+          -1.129656169737092,
+          0.314045434129862,
+          -1.1097696285965788,
+          -0.15470117170776979,
+          -0.6642913563108013,
+          -0.5450479659190252,
+          -0.028668411187296503,
+          0.032060851635267756,
+          0.12194482986678797,
+          0.2730194071571314,
+          -0.8736254304107208,
+          0.07631532155614025,
+          1.0242883564990137,
+          -0.9469636921186401,
+          0.17427323343539133,
+          -0.1962874221487151,
+          -0.3363165306310678,
+          0.06621101823788794,
+          -0.6503228873038772,
+          -0.23953787216364197,
+          0.3026147720182378,
+          -0.05153426899282096,
+          -0.05070996975237597,
+          0.6068614641731186,
+          0.011460845785799286,
+          0.32599864533943235,
+          -0.7015576419148218,
+          -0.30575388633738515,
+          -0.054043073203964696,
+          0.010106290323876293,
+          -0.6240420985379534,
+          0.7982915799424529,
+          -0.017606159862463614,
+          -0.030284735903567724,
+          0.06346400504800387,
+          0.1011274585275438,
+          -0.7753912663656723,
+          -0.17876840972111357,
+          -0.24763127735533896,
+          0.726456910846267,
+          -0.25515774177564154,
+          -0.02112789090622789,
+          -0.7227869983470655,
+          1.0741098051371767,
+          0.19732985218019727,
+          0.8966782734795341,
+          0.17073173802150765,
+          -0.11177698486611917,
+          -0.21647837393883945,
+          0.5897558158753354,
+          0.5523210928906757,
+          -0.12395003553428477,
+          -0.16161680535012712,
+          -0.20167084555495268,
+          0.5243642724080261,
+          0.3034258524238977,
+          -0.11036426187640719,
+          -0.6204678203442496,
+          -0.36055653356150696,
+          -0.0013010198808110663,
+          0.5082557800143572,
+          0.6992383549681382,
+          0.02131076474451946,
+          0.9622795045491278,
+          -0.28703581323332283,
+          -0.22717591128508585,
+          -0.04587577820587505,
+          0.00014496385455716352,
+          -0.05167880454472759,
+          -0.26467670943942656,
+          -0.01009284432109022,
+          -0.15540378119911688,
+          -0.24821184860930048,
+          0.7926428408168378,
+          0.02890446550587319,
+          -0.0901195784249264,
+          0.33773246242047844,
+          -0.598294182923884,
+          0.2349957358075827,
+          0.4158689300100805,
+          -1.0284142353362034,
+          -0.5823891356608846,
+          0.5088368890906605,
+          0.10136532152905313,
+          -0.12415715157600218,
+          -0.09592024443283625,
+          0.2320661197971102,
+          -0.6791323768895215,
+          0.642226889689161,
+          0.09245363709330383,
+          -0.1403534146709635,
+          0.053009507000489155,
+          -0.008017899469765432,
+          -0.20993560868744873,
+          -0.5428360843058571,
+          -0.852371235556168,
+          0.499141731349117,
+          0.011787978694017095,
+          0.11410003764209274,
+          -0.42447648307036734,
+          0.6651761807823449,
+          0.7127930231429388,
+          0.3752324619845307,
+          0.41346769260459554,
+          -0.32974617771225745,
+          -0.5004680724261127,
+          -0.3265194064404347,
+          -0.12209259744943574,
+          -0.7766255668029766,
+          0.2576537769189721,
+          0.6341031516686002,
+          0.11321678746439459,
+          0.18542233944347244,
+          -0.09468230343456871,
+          -0.12141647364756808,
+          -1.170842176717786,
+          0.1346350046849825,
+          0.3833744093404465,
+          -0.45956146568457695,
+          0.04414093490825911,
+          0.0695235759766022,
+          -0.22341393654879813,
+          0.24884096560710303,
+          -0.13468293124603217,
+          -0.25217818130608693,
+          -0.08597440084081694,
+          -0.6053558371547617,
+          0.32487147772595404,
+          0.9312328927527675,
+          0.28832223741047036,
+          -0.6563782757465806,
+          0.2468946463117273,
+          0.2644828982945492,
+          0.09880217815077284,
+          0.2706282941600507,
+          -0.8240231969071063,
+          0.5437962412692318,
+          -0.05611560563285584,
+          1.1394402023854966,
+          -0.1534875110049764,
+          -0.2869942417659041,
+          -0.045866370332887665,
+          0.00519877191703459,
+          -0.8281349008860533,
+          0.07318974680888891,
+          -0.8196633449750539,
+          -0.18322099049014398,
+          0.01218205099425929,
+          0.07405509704798795,
+          -0.03676667343542181,
+          -0.12433927821783644,
+          -0.2059045770108741,
+          -0.012680804448913263,
+          0.5483844229582538,
+          0.20748623770971455,
+          0.23895689171544526,
+          -0.03261733807878516,
+          -0.5623160650488399,
+          0.12345569830994318,
+          -0.39838409939933045,
+          0.4082607628655049,
+          0.06667503034337086,
+          -0.30027075177668244,
+          0.7969306207229534,
+          -0.04995793784767046,
+          0.5225149362904103,
+          0.7160226186814719,
+          -0.19898542551544998,
+          -0.5854008706537654,
+          0.2335970982889984,
+          0.0669269181861549,
+          -0.031989202416528834,
+          0.06619059193059601,
+          -0.47902551240018615,
+          -0.8245134384979722,
+          0.46451280229072944,
+          0.04784275720465153,
+          0.08801615691479986,
+          -0.11777419194325917,
+          -0.5846428844834289,
+          0.05862061050575618,
+          0.10387028694623104,
+          0.2608969128622493,
+          0.11123608531326967,
+          0.18305501282512043,
+          -0.10823792116252572,
+          -0.7833606601506433,
+          -0.29890886424113966,
+          -0.1540963382870882,
+          0.08300086830785622,
+          -0.13740365507410804,
+          -0.5756420276048054,
+          -0.13168377310932966,
+          0.06772393104586782,
+          -0.23137507430481274,
+          -0.04976980202301055,
+          0.7950912282313873,
+          0.09663749114223341,
+          -0.002676185381079095,
+          -0.03018227293825706,
+          0.003987287602327677,
+          0.12077261190134986,
+          -0.28015799953801274,
+          0.2485991949959266,
+          0.8489846905826355,
+          -0.08691518384660445,
+          -0.03446765299096173,
+          1.3280662658541247,
+          0.2764195215100299,
+          0.5289777517274822,
+          0.010297199285463488,
+          -0.005972463868225344,
+          0.6105242206651555,
+          0.24136442513179632,
+          0.38981314546152235,
+          0.86806523285274,
+          0.19490797980629906,
+          -0.00741820871767205,
+          -0.02255366162659793,
+          1.4364966865050983,
+          0.1359459812716876,
+          -0.3566137956283156,
+          -0.005010913803418883,
+          0.21073140489827102,
+          0.7550824725508364,
+          -0.035401617941937476,
+          -0.15735564525674162,
+          0.9790985063953359,
+          -0.04060268097898836,
+          -0.037155675460467566,
+          -0.3042694658023883,
+          0.1611616019633491,
+          0.2473938649474972,
+          0.3853551527817921,
+          0.12335494487089847,
+          -0.40913334937581164,
+          -0.6814201784155515,
+          0.831616141005089,
+          -0.11324824103368487,
+          -0.3782756841719141,
+          0.04745349482686579,
+          -0.16772169487580496,
+          1.1137279071911546,
+          0.1718452325638626,
+          0.9413552839969567,
+          0.09952575623992435,
+          0.9947177736218095,
+          -0.40157472531971533,
+          0.28298843812556645,
+          -0.1916789336381598,
+          -0.7908986961674175,
+          0.26547251541785005,
+          -0.15998608982791707,
+          -0.728479946261583,
+          -1.098904994824419,
+          0.44168490740846056
          ]
         },
         {
@@ -17466,1345 +22727,2677 @@
          "scene": "scene2",
          "showlegend": false,
          "text": [
-          "Complementary_85_1",
-          "Complementary_1_1",
-          "redundancy_42_1",
-          "example_12",
-          "example_15",
-          "Complementary_25_1",
-          "Complementary_27_1",
-          "redundancy_11_1",
-          "example_19",
-          "Complementary_48_1",
-          "mutual_error_32_1",
-          "redundancy_50_1",
-          "example_28",
-          "mutual_error_23_1",
-          "Complementary_49_1",
-          "example_41",
-          "Complementary_65_1",
-          "Complementary_56_1",
-          "Complementary_63_1",
-          "Complementary_76_1",
-          "redundancy_62_1",
-          "Complementary_71_1",
-          "example_51",
-          "Complementary_37_1",
-          "Complementary_62_1",
-          "Complementary_88_1",
-          "example_68",
-          "example_69",
-          "example_73",
-          "example_74",
-          "Complementary_12_1",
-          "example_83",
-          "example_89",
-          "mutual_error_18_1",
-          "Complementary_36_1",
-          "redundancy_10_1",
-          "example_94",
-          "redundancy_19_1",
-          "mutual_error_12_1",
-          "Complementary_95_1",
-          "example_111",
-          "redundancy_64_1",
-          "example_114",
-          "Complementary_82_1",
-          "Complementary_72_1",
-          "example_117",
-          "mutual_error_29_1",
-          "redundancy_13_1",
-          "redundancy_22_1",
-          "Complementary_5_1",
-          "example_131",
-          "example_132",
-          "Complementary_14_1",
-          "redundancy_46_1",
-          "redundancy_36_1",
-          "mutual_error_22_1",
-          "redundancy_29_1",
-          "Complementary_31_1",
-          "example_152",
-          "example_153",
-          "mutual_error_5_1",
-          "Complementary_15_1",
-          "example_162",
-          "Complementary_50_1",
-          "example_164",
-          "example_167",
-          "Complementary_24_1",
-          "example_171",
-          "example_172",
-          "Complementary_61_1",
-          "example_175",
-          "example_176",
-          "example_177",
-          "Complementary_4_1",
-          "redundancy_23_1",
-          "Complementary_83_1",
-          "example_181",
-          "example_182",
-          "example_185",
-          "example_188",
-          "mutual_error_19_1",
-          "example_193",
-          "example_194",
-          "Complementary_30_1",
-          "mutual_error_3_1",
-          "example_220",
-          "example_222",
-          "redundancy_65_1",
-          "redundancy_51_1",
-          "redundancy_31_1",
-          "Complementary_64_1",
-          "example_234",
-          "example_236",
-          "example_238",
-          "example_245",
-          "example_248",
-          "example_255",
-          "example_257",
-          "redundancy_4_1",
-          "Complementary_77_1",
-          "example_268",
-          "Complementary_8_1",
-          "redundancy_34_1",
-          "Complementary_92_1",
-          "Complementary_69_1",
-          "redundancy_39_1",
-          "redundancy_48_1",
-          "Complementary_0_1",
-          "Complementary_58_1",
-          "Complementary_6_1",
-          "Complementary_26_1",
-          "Complementary_2_1",
-          "example_304",
-          "mutual_error_16_1",
-          "example_320",
-          "example_322",
-          "example_324",
-          "Complementary_35_1",
-          "example_329",
-          "example_335",
-          "example_336",
-          "example_338",
-          "mutual_error_8_1",
-          "example_341",
-          "redundancy_14_1",
-          "example_349",
-          "Complementary_51_1",
-          "example_354",
-          "mutual_error_30_1",
-          "redundancy_7_1",
-          "example_364",
-          "mutual_error_15_1",
-          "Complementary_89_1",
-          "Complementary_87_1",
-          "mutual_error_6_1",
-          "mutual_error_7_1",
-          "Complementary_40_1",
-          "redundancy_32_1",
-          "redundancy_33_1",
-          "redundancy_17_1",
-          "example_395",
-          "Complementary_17_1",
-          "example_399",
-          "example_405",
-          "Complementary_97_1",
-          "Complementary_81_1",
-          "redundancy_26_1",
-          "example_412",
-          "example_416",
-          "redundancy_61_1",
-          "redundancy_49_1",
-          "example_426",
-          "example_431",
-          "Complementary_74_1",
-          "example_437",
-          "example_440",
-          "example_443",
-          "Complementary_42_1",
-          "example_445",
-          "Complementary_75_1",
-          "example_457",
-          "Complementary_44_1",
-          "Complementary_67_1",
-          "Complementary_55_1",
-          "redundancy_52_1",
-          "Complementary_46_1",
-          "Complementary_18_1",
-          "example_486",
-          "redundancy_55_1",
-          "redundancy_57_1",
-          "Complementary_22_1",
-          "example_495",
-          "Complementary_32_1",
-          "example_501",
-          "Complementary_52_1",
-          "example_506",
-          "redundancy_37_1",
-          "Complementary_3_1",
-          "example_515",
-          "example_517",
-          "example_519",
-          "mutual_error_28_1",
-          "redundancy_41_1",
-          "example_531",
-          "example_532",
-          "example_536",
-          "Complementary_43_1",
-          "Complementary_54_1",
-          "redundancy_43_1",
-          "mutual_error_4_1",
-          "example_557",
-          "example_559",
-          "example_567",
-          "example_568",
-          "mutual_error_26_1",
-          "example_579",
-          "redundancy_56_1",
-          "example_582",
-          "example_583",
-          "example_584",
-          "Complementary_70_1",
-          "mutual_error_27_1",
-          "Complementary_21_1",
-          "redundancy_28_1",
-          "example_601",
-          "example_604",
-          "example_606",
-          "mutual_error_11_1",
-          "mutual_error_9_1",
-          "Complementary_80_1",
-          "example_616",
-          "example_617",
-          "Complementary_90_1",
-          "redundancy_35_1",
-          "example_628",
-          "example_629",
-          "Complementary_11_1",
-          "example_633",
-          "example_636",
-          "example_638",
-          "example_653",
-          "example_655",
-          "example_656",
-          "example_657",
-          "redundancy_40_1",
-          "Complementary_20_1",
-          "example_665",
-          "example_666",
-          "example_667",
-          "redundancy_15_1",
-          "Complementary_10_1",
-          "mutual_error_13_1",
-          "example_673",
-          "example_675",
-          "redundancy_63_1",
-          "Complementary_53_1",
-          "redundancy_38_1",
-          "example_685",
-          "example_687",
-          "example_692",
-          "example_693",
-          "example_695",
-          "example_703",
-          "example_705",
-          "example_711",
-          "mutual_error_1_1",
-          "example_717",
-          "Complementary_29_1",
-          "example_722",
-          "example_730",
-          "example_731",
-          "example_732",
-          "example_734",
-          "mutual_error_20_1",
-          "redundancy_8_1",
-          "example_752",
-          "mutual_error_25_1",
-          "redundancy_45_1",
-          "example_755",
-          "example_756",
-          "Complementary_33_1",
-          "example_758",
-          "redundancy_47_1",
-          "example_770",
-          "mutual_error_24_1",
-          "example_785",
-          "example_789",
-          "Complementary_47_1",
-          "Complementary_91_1",
-          "example_803",
-          "Complementary_16_1",
-          "Complementary_59_1",
-          "example_816",
-          "example_817",
-          "example_820",
-          "example_822",
-          "example_827",
-          "redundancy_44_1",
-          "redundancy_12_1",
-          "Complementary_68_1",
-          "example_833",
-          "Complementary_84_1",
-          "Complementary_66_1",
-          "example_853",
-          "redundancy_27_1",
-          "Complementary_7_1",
-          "example_861",
-          "example_863",
-          "Complementary_23_1",
-          "example_865",
-          "Complementary_38_1",
-          "Complementary_79_1",
-          "example_884",
-          "Complementary_98_1",
-          "redundancy_58_1",
-          "Complementary_60_1",
-          "Complementary_93_1",
-          "mutual_error_17_1",
-          "example_902",
-          "Complementary_41_1",
-          "Complementary_45_1",
-          "mutual_error_14_1",
-          "Complementary_96_1",
-          "example_919",
-          "mutual_error_21_1",
-          "mutual_error_0_1",
-          "Complementary_78_1",
-          "Complementary_13_1",
-          "mutual_error_31_1",
-          "redundancy_24_1",
-          "example_941",
-          "example_949",
-          "Complementary_9_1",
-          "Complementary_39_1",
-          "redundancy_59_1",
-          "Complementary_34_1",
-          "Complementary_28_1",
-          "example_964",
-          "Complementary_86_1",
-          "example_966",
-          "redundancy_60_1",
-          "example_968",
-          "example_969",
-          "redundancy_18_1",
-          "Complementary_19_1",
-          "example_983",
-          "redundancy_53_1",
-          "example_989",
-          "Complementary_73_1",
-          "Complementary_94_1",
-          "Complementary_57_1",
-          "mutual_error_10_1",
-          "redundancy_21_1"
+          "666_l_1_m-0_1.99-1_0.33-2_0.2-3_0.74",
+          "667_l_1_m-0_0.73-1_0.02-2_0.57-3_0.01",
+          "668_l_1_m-0_0.33-1_0.26-2_0.04-3_0.02",
+          "669_l_1_m-0_0.1-1_0.21-2_0.43-3_0.35",
+          "670_l_1_m-0_1.23-1_0.02-2_0.07-3_0.71",
+          "671_l_1_m-0_0.5-1_0.01-2_0.27-3_0.4",
+          "672_l_1_c_0_1_3-0_0.9-1_0.03-2_0.32-3_0.76",
+          "673_l_1_c_0_1_3-0_0.06-1_0.0-2_0.63-3_0.51",
+          "674_l_1_c_0_1_3-0_0.23-1_0.15-2_0.13-3_0.53",
+          "675_l_1_c_0_1_3-0_0.41-1_0.13-2_0.83-3_0.46",
+          "676_l_1_c_0_1_3-0_0.21-1_0.17-2_0.82-3_0.27",
+          "677_l_1_c_0_1_3-0_0.06-1_0.04-2_0.76-3_0.08",
+          "678_l_1_c_0_1_3-0_0.07-1_0.09-2_0.94-3_1.04",
+          "679_l_1_c_0_1_3-0_0.19-1_0.32-2_0.15-3_0.2",
+          "680_l_1_c_0_1_3-0_0.45-1_0.49-2_1.48-3_1.57",
+          "681_l_1_c_0_1_3-0_0.33-1_0.03-2_0.37-3_0.26",
+          "682_l_1_c_0_1_3-0_0.42-1_0.21-2_0.74-3_0.19",
+          "683_l_1_c_0_1_3-0_0.85-1_0.3-2_0.73-3_0.37",
+          "684_l_1_c_0_1_3-0_1.19-1_0.07-2_0.19-3_0.54",
+          "685_l_1_c_0_1_3-0_0.03-1_0.28-2_0.79-3_1.74",
+          "686_l_1_c_0_1_3-0_0.17-1_0.22-2_0.07-3_0.32",
+          "687_l_1_c_0_2_3-0_0.09-1_0.19-2_0.1-3_1.54",
+          "688_l_1_c_0_1_3-0_0.61-1_0.16-2_0.89-3_0.22",
+          "689_l_1_c_0_2_3-0_0.1-1_1.03-2_0.43-3_1.17",
+          "690_l_1_c_0_1_3-0_0.82-1_0.1-2_0.66-3_0.96",
+          "691_l_1_c_0_2_3-0_0.25-1_0.59-2_0.58-3_0.08",
+          "692_l_1_c_0_1_3-0_0.57-1_0.16-2_1.43-3_0.48",
+          "693_l_1_c_0_2_3-0_0.61-1_0.21-2_0.03-3_1.04",
+          "694_l_1_c_0_1_3-0_0.26-1_0.23-2_0.28-3_0.09",
+          "695_l_1_c_0_2_3-0_0.38-1_0.52-2_0.11-3_0.27",
+          "696_l_1_c_0_1_3-0_0.05-1_0.47-2_0.51-3_0.22",
+          "697_l_1_c_0_2_3-0_0.59-1_0.36-2_0.15-3_1.88",
+          "698_l_1_c_0_1_3-0_0.18-1_0.54-2_0.38-3_0.4",
+          "699_l_1_c_0_2_3-0_0.05-1_0.51-2_0.19-3_0.62",
+          "700_l_1_c_0_1_3-0_0.5-1_0.31-2_0.04-3_0.2",
+          "701_l_1_c_0_2_3-0_0.04-1_0.45-2_0.09-3_0.05",
+          "702_l_1_c_0_1_3-0_0.96-1_0.12-2_0.16-3_0.05",
+          "703_l_1_c_0_2_3-0_0.45-1_0.18-2_0.21-3_0.45",
+          "704_l_1_c_0_1_3-0_0.88-1_0.64-2_0.08-3_0.69",
+          "705_l_1_c_0_2_3-0_0.32-1_0.15-2_0.14-3_0.39",
+          "706_l_1_c_0_1_3-0_0.09-1_0.28-2_0.03-3_0.29",
+          "707_l_1_c_0_2_3-0_0.3-1_0.73-2_0.3-3_0.01",
+          "708_l_1_c_0_1_3-0_0.05-1_0.48-2_0.37-3_0.14",
+          "709_l_1_c_0_2_3-0_0.54-1_1.23-2_0.03-3_0.45",
+          "710_l_1_c_0_1_3-0_0.13-1_0.12-2_0.65-3_0.06",
+          "711_l_1_c_0_2_3-0_0.28-1_0.2-2_0.6-3_0.52",
+          "712_l_1_c_0_1_3-0_0.33-1_0.22-2_0.84-3_0.22",
+          "713_l_1_c_0_2_3-0_0.08-1_0.24-2_0.3-3_0.62",
+          "714_l_1_c_0_1_3-0_0.18-1_0.16-2_0.63-3_0.17",
+          "715_l_1_c_0_2_3-0_0.43-1_0.5-2_0.33-3_0.77",
+          "716_l_1_c_0_1_3-0_0.66-1_0.29-2_0.68-3_0.47",
+          "717_l_1_c_0_2_3-0_0.07-1_0.36-2_0.23-3_0.14",
+          "718_l_1_c_0_1_3-0_0.06-1_0.14-2_0.98-3_1.51",
+          "719_l_1_c_0_2_3-0_1.38-1_0.12-2_0.2-3_0.06",
+          "720_l_1_c_0_1_3-0_0.51-1_0.02-2_0.18-3_1.12",
+          "721_l_1_c_0_2_3-0_0.24-1_0.14-2_0.05-3_0.31",
+          "722_l_1_c_0_1_3-0_0.15-1_0.47-2_0.73-3_0.43",
+          "723_l_1_c_0_2_3-0_0.02-1_0.17-2_0.05-3_0.41",
+          "724_l_1_c_0_1_3-0_0.3-1_0.27-2_0.77-3_0.79",
+          "725_l_1_c_0_2_3-0_1.1-1_0.61-2_0.07-3_0.54",
+          "726_l_1_c_0_1_3-0_0.31-1_0.01-2_0.11-3_0.08",
+          "727_l_1_c_0_2_3-0_0.06-1_0.12-2_0.02-3_0.16",
+          "728_l_1_c_0_1_3-0_0.09-1_0.03-2_0.02-3_0.74",
+          "729_l_1_c_0_2_3-0_0.47-1_0.3-2_0.09-3_0.97",
+          "730_l_1_c_0_1_3-0_0.49-1_0.12-2_0.57-3_0.09",
+          "731_l_1_c_0_2_3-0_1.35-1_0.11-2_0.39-3_0.23",
+          "732_l_1_c_0_1_3-0_0.32-1_0.05-2_0.58-3_0.25",
+          "733_l_1_c_0_2_3-0_0.12-1_0.63-2_0.19-3_0.3",
+          "734_l_1_c_0_1_3-0_0.42-1_0.05-2_0.5-3_1.44",
+          "735_l_1_c_0_2_3-0_0.16-1_0.67-2_0.08-3_0.14",
+          "736_l_1_c_0_1_3-0_0.05-1_0.13-2_0.29-3_0.17",
+          "737_l_1_c_0_2_3-0_0.36-1_0.26-2_0.02-3_0.34",
+          "738_l_1_c_0_1_3-0_0.42-1_0.03-2_0.17-3_0.01",
+          "739_l_1_c_0_2_3-0_0.86-1_0.12-2_0.14-3_1.11",
+          "740_l_1_c_0_1_3-0_0.42-1_0.11-2_0.27-3_0.41",
+          "741_l_1_c_0_2_3-0_0.31-1_0.61-2_0.03-3_0.73",
+          "742_l_1_c_0_1_3-0_0.42-1_0.01-2_0.74-3_0.53",
+          "743_l_1_c_0_2_3-0_0.14-1_0.35-2_0.43-3_0.33",
+          "744_l_1_c_0_1_3-0_0.84-1_0.07-2_0.52-3_0.69",
+          "745_l_1_c_0_2_3-0_0.42-1_0.01-2_0.0-3_0.65",
+          "746_l_1_c_0_1_3-0_0.25-1_0.09-2_1.24-3_0.41",
+          "747_l_1_c_0_2_3-0_0.55-1_1.38-2_0.23-3_0.43",
+          "748_l_1_c_0_1_3-0_2.0-1_0.43-2_0.95-3_1.49",
+          "749_l_1_c_0_2_3-0_0.22-1_0.11-2_0.08-3_0.33",
+          "750_l_1_c_0_1_3-0_0.57-1_0.5-2_0.18-3_0.17",
+          "751_l_1_c_0_2_3-0_0.2-1_0.82-2_0.15-3_0.44",
+          "752_l_1_c_0_1_3-0_0.42-1_0.24-2_0.1-3_1.67",
+          "753_l_1_c_0_2_3-0_0.85-1_0.37-2_0.08-3_0.11",
+          "754_l_1_c_0_1_3-0_0.08-1_0.11-2_0.38-3_0.67",
+          "755_l_1_c_0_2_3-0_0.1-1_0.57-2_0.03-3_1.05",
+          "756_l_1_c_0_1_3-0_0.15-1_0.46-2_0.2-3_1.4",
+          "757_l_1_c_0_2_3-0_0.42-1_0.27-2_0.08-3_0.9",
+          "758_l_1_c_0_1_3-0_1.26-1_0.09-2_0.15-3_0.38",
+          "759_l_1_c_0_2_3-0_0.34-1_0.39-2_0.23-3_1.08",
+          "760_l_1_c_0_1_3-0_0.07-1_0.28-2_0.19-3_0.07",
+          "761_l_1_c_0_2_3-0_0.89-1_0.37-2_0.04-3_0.31",
+          "762_l_1_c_0_1_3-0_0.02-1_0.01-2_1.11-3_0.43",
+          "763_l_1_c_0_2_3-0_0.01-1_0.5-2_0.42-3_0.67",
+          "764_l_1_c_0_1_3-0_0.1-1_0.14-2_0.23-3_0.33",
+          "765_l_1_c_0_2_3-0_0.3-1_0.09-2_0.17-3_0.59",
+          "766_l_1_c_0_1_3-0_1.21-1_0.29-2_0.32-3_0.22",
+          "767_l_1_c_0_2_3-0_1.47-1_0.11-2_0.2-3_0.63",
+          "768_l_1_c_0_1_3-0_0.18-1_0.29-2_0.07-3_0.17",
+          "769_l_1_c_0_2_3-0_0.65-1_0.16-2_0.42-3_0.01",
+          "770_l_1_c_0_1_3-0_0.11-1_0.27-2_0.78-3_0.0",
+          "771_l_1_c_0_2_3-0_0.63-1_1.02-2_0.21-3_0.01",
+          "772_l_1_c_0_1_3-0_1.06-1_0.76-2_1.05-3_0.47",
+          "773_l_1_c_0_2_3-0_0.37-1_0.08-2_0.55-3_1.53",
+          "774_l_1_c_0_1_3-0_0.37-1_0.23-2_0.79-3_0.08",
+          "775_l_1_c_0_2_3-0_1.42-1_0.32-2_0.17-3_0.31",
+          "776_l_1_c_0_1_3-0_0.07-1_0.21-2_0.57-3_0.23",
+          "777_l_1_c_0_2_3-0_0.07-1_0.1-2_0.26-3_0.2",
+          "778_l_1_c_0_1_3-0_1.0-1_0.41-2_0.09-3_0.44",
+          "779_l_1_c_0_2_3-0_0.64-1_1.02-2_0.58-3_0.96",
+          "780_l_1_c_0_1_3-0_0.92-1_0.34-2_1.19-3_0.12",
+          "781_l_1_c_0_2_3-0_0.51-1_0.11-2_0.16-3_0.15",
+          "782_l_1_c_0_1_3-0_0.18-1_0.6-2_0.45-3_0.12",
+          "783_l_1_c_0_2_3-0_0.31-1_0.51-2_0.19-3_1.44",
+          "784_l_1_c_0_1_3-0_0.37-1_0.47-2_1.04-3_0.24",
+          "785_l_1_c_0_2_3-0_0.38-1_0.95-2_0.3-3_0.48",
+          "786_l_1_c_0_1_3-0_0.17-1_0.17-2_0.25-3_0.11",
+          "787_l_1_c_0_2_3-0_0.1-1_0.72-2_0.24-3_0.5",
+          "788_l_1_c_0_1_3-0_1.06-1_0.23-2_0.59-3_0.0",
+          "789_l_1_c_0_2_3-0_0.05-1_0.73-2_0.3-3_1.62",
+          "790_l_1_c_0_1_3-0_0.67-1_0.44-2_0.23-3_1.13",
+          "791_l_1_c_0_2_3-0_0.05-1_0.06-2_0.61-3_0.13",
+          "792_l_1_c_0_1_3-0_0.18-1_0.07-2_0.55-3_1.37",
+          "793_l_1_c_0_2_3-0_0.36-1_0.02-2_0.45-3_0.91",
+          "794_l_1_c_0_1_3-0_1.08-1_0.28-2_0.68-3_0.37",
+          "795_l_1_c_0_2_3-0_0.52-1_0.38-2_0.16-3_0.11",
+          "796_l_1_c_0_1_3-0_0.41-1_0.03-2_0.71-3_0.33",
+          "797_l_1_c_0_2_3-0_0.2-1_0.02-2_0.38-3_0.04",
+          "798_l_1_c_0_1_3-0_1.01-1_0.0-2_0.86-3_1.02",
+          "799_l_1_c_0_2_3-0_0.37-1_0.14-2_0.8-3_0.0",
+          "800_l_1_c_0_1_3-0_0.25-1_0.17-2_0.1-3_0.91",
+          "801_l_1_c_0_2_3-0_0.24-1_0.03-2_0.44-3_1.34",
+          "802_l_1_c_0_1_3-0_0.18-1_0.01-2_0.64-3_1.06",
+          "803_l_1_c_0_2_3-0_0.21-1_0.18-2_0.27-3_0.42",
+          "804_l_1_c_0_1_3-0_0.14-1_0.27-2_0.01-3_0.07",
+          "805_l_1_c_0_2_3-0_0.36-1_0.42-2_0.14-3_0.91",
+          "806_l_1_c_0_1_3-0_0.22-1_0.04-2_0.1-3_0.25",
+          "807_l_1_c_0_2_3-0_0.43-1_0.94-2_0.47-3_0.47",
+          "808_l_1_c_1_2_3-0_1.39-1_0.45-2_0.18-3_0.46",
+          "809_l_1_c_0_1_3-0_0.13-1_0.33-2_0.86-3_0.73",
+          "810_l_1_c_0_2_3-0_0.62-1_0.45-2_0.74-3_0.75",
+          "811_l_1_c_1_2_3-0_1.31-1_0.07-2_0.64-3_0.39",
+          "812_l_1_c_0_1_3-0_0.29-1_0.13-2_0.36-3_0.67",
+          "813_l_1_c_0_2_3-0_0.53-1_0.49-2_0.27-3_0.21",
+          "814_l_1_c_1_2_3-0_0.38-1_0.04-2_0.12-3_0.41",
+          "815_l_1_c_0_1_3-0_0.4-1_0.04-2_0.05-3_0.61",
+          "816_l_1_c_0_2_3-0_0.02-1_0.44-2_0.33-3_0.37",
+          "817_l_1_c_1_2_3-0_1.07-1_0.28-2_0.03-3_0.9",
+          "818_l_1_c_0_1_3-0_0.77-1_0.45-2_0.74-3_0.3",
+          "819_l_1_c_0_2_3-0_1.61-1_0.25-2_0.2-3_0.06",
+          "820_l_1_c_1_2_3-0_1.2-1_0.14-2_0.29-3_0.65",
+          "821_l_1_c_0_1_3-0_0.31-1_0.18-2_0.62-3_0.24",
+          "822_l_1_c_0_2_3-0_0.47-1_0.22-2_0.56-3_0.38",
+          "823_l_1_c_1_2_3-0_0.51-1_0.23-2_0.24-3_0.66",
+          "824_l_1_c_0_1_3-0_0.87-1_0.35-2_0.18-3_0.43",
+          "825_l_1_c_0_2_3-0_1.51-1_0.28-2_0.65-3_0.48",
+          "826_l_1_c_1_2_3-0_1.72-1_0.47-2_0.4-3_0.11",
+          "827_l_1_c_0_1_3-0_0.76-1_0.06-2_0.04-3_0.9",
+          "828_l_1_c_0_2_3-0_0.44-1_0.74-2_0.07-3_1.12",
+          "829_l_1_c_1_2_3-0_0.53-1_0.22-2_0.15-3_0.29",
+          "830_l_1_c_0_1_3-0_0.07-1_0.23-2_0.21-3_0.06",
+          "831_l_1_c_0_2_3-0_0.39-1_1.29-2_0.26-3_0.24",
+          "832_l_1_c_1_2_3-0_0.64-1_0.39-2_0.41-3_0.07",
+          "833_l_1_c_0_1_3-0_0.07-1_0.27-2_0.06-3_0.64",
+          "834_l_1_c_0_2_3-0_1.1-1_0.55-2_0.14-3_0.15",
+          "835_l_1_c_1_2_3-0_0.07-1_0.11-2_0.12-3_0.77",
+          "836_l_1_c_0_1_3-0_0.83-1_0.57-2_0.36-3_0.88",
+          "837_l_1_c_0_2_3-0_0.83-1_0.06-2_0.09-3_0.36",
+          "838_l_1_c_1_2_3-0_0.21-1_0.55-2_0.01-3_0.49",
+          "839_l_1_c_0_1_3-0_0.28-1_0.54-2_0.54-3_0.22",
+          "840_l_1_c_0_2_3-0_0.36-1_0.2-2_0.18-3_0.36",
+          "841_l_1_c_1_2_3-0_0.33-1_0.04-2_0.09-3_0.22",
+          "842_l_1_c_0_1_3-0_0.48-1_0.1-2_0.59-3_0.72",
+          "843_l_1_c_0_2_3-0_0.59-1_0.58-2_0.18-3_1.01",
+          "844_l_1_c_1_2_3-0_0.38-1_0.18-2_0.06-3_0.18",
+          "845_l_1_c_0_1_3-0_0.31-1_0.14-2_0.08-3_0.18",
+          "846_l_1_c_0_2_3-0_0.53-1_0.04-2_0.33-3_0.15",
+          "847_l_1_c_1_2_3-0_0.09-1_0.32-2_0.03-3_1.69",
+          "848_l_1_c_0_1_3-0_0.03-1_0.18-2_0.86-3_0.91",
+          "849_l_1_c_0_2_3-0_0.09-1_0.19-2_0.4-3_0.52",
+          "850_l_1_c_1_2_3-0_1.42-1_0.08-2_0.39-3_0.34",
+          "851_l_1_c_0_1_3-0_0.58-1_0.11-2_0.13-3_0.82",
+          "852_l_1_c_0_2_3-0_0.04-1_0.14-2_0.28-3_0.04",
+          "853_l_1_c_1_2_3-0_0.77-1_0.69-2_0.18-3_0.03",
+          "854_l_1_c_0_1_3-0_1.39-1_0.07-2_0.17-3_0.19",
+          "855_l_1_c_0_2_3-0_0.04-1_0.13-2_0.44-3_0.07",
+          "856_l_1_c_1_2_3-0_2.19-1_0.03-2_0.01-3_0.19",
+          "857_l_1_c_0_1_3-0_0.38-1_0.01-2_0.32-3_0.37",
+          "858_l_1_c_0_2_3-0_0.37-1_0.18-2_0.6-3_0.58",
+          "859_l_1_c_1_2_3-0_0.1-1_0.11-2_0.6-3_0.26",
+          "860_l_1_c_0_1_3-0_0.4-1_0.01-2_0.42-3_0.08",
+          "861_l_1_c_0_2_3-0_0.18-1_0.54-2_0.11-3_0.24",
+          "862_l_1_c_1_2_3-0_0.75-1_0.33-2_0.2-3_0.83",
+          "863_l_1_c_0_1_3-0_0.6-1_0.06-2_0.97-3_0.17",
+          "864_l_1_c_0_2_3-0_0.19-1_0.49-2_0.37-3_0.17",
+          "865_l_1_c_1_2_3-0_0.18-1_0.16-2_0.01-3_0.37",
+          "866_l_1_c_0_1_3-0_0.18-1_0.23-2_0.39-3_0.36",
+          "867_l_1_c_0_2_3-0_0.96-1_0.79-2_0.14-3_0.09",
+          "868_l_1_c_1_2_3-0_0.59-1_0.04-2_0.27-3_0.74",
+          "869_l_1_c_0_1_3-0_0.03-1_0.08-2_0.54-3_0.03",
+          "870_l_1_c_0_2_3-0_0.45-1_0.05-2_0.15-3_0.24",
+          "871_l_1_c_1_2_3-0_0.66-1_0.09-2_0.24-3_0.08",
+          "872_l_1_c_0_1_3-0_1.55-1_0.18-2_0.17-3_0.35",
+          "873_l_1_c_0_2_3-0_0.58-1_0.96-2_0.17-3_0.22",
+          "874_l_1_c_1_2_3-0_0.37-1_0.63-2_0.42-3_0.31",
+          "875_l_1_c_0_1_3-0_1.03-1_0.01-2_0.43-3_0.81",
+          "876_l_1_c_0_2_3-0_0.03-1_0.21-2_0.29-3_1.09",
+          "877_l_1_c_1_2_3-0_1.24-1_0.07-2_0.05-3_1.51",
+          "878_l_1_c_0_1_3-0_0.28-1_0.26-2_0.92-3_0.44",
+          "879_l_1_c_0_2_3-0_0.12-1_0.23-2_0.37-3_0.53",
+          "880_l_1_c_1_2_3-0_0.44-1_0.52-2_0.35-3_0.07",
+          "881_l_1_c_0_1_3-0_0.37-1_0.19-2_0.34-3_0.51",
+          "882_l_1_c_0_2_3-0_0.46-1_0.35-2_0.36-3_0.0",
+          "883_l_1_c_1_2_3-0_0.56-1_0.04-2_0.22-3_0.18",
+          "884_l_1_c_0_1_3-0_0.9-1_0.1-2_0.01-3_0.57",
+          "885_l_1_c_0_2_3-0_0.1-1_0.99-2_0.03-3_0.78",
+          "886_l_1_c_1_2_3-0_0.77-1_0.15-2_0.16-3_0.17",
+          "887_l_1_c_0_1_3-0_0.06-1_0.09-2_0.82-3_0.1",
+          "888_l_1_c_0_2_3-0_0.64-1_0.69-2_0.0-3_0.67",
+          "889_l_1_c_1_2_3-0_0.67-1_0.12-2_0.25-3_0.61",
+          "890_l_1_c_0_1_3-0_0.31-1_0.07-2_0.64-3_0.16",
+          "891_l_1_c_0_2_3-0_1.06-1_1.63-2_0.27-3_0.53",
+          "892_l_1_c_1_2_3-0_2.27-1_0.26-2_0.25-3_0.39",
+          "893_l_1_c_0_1_3-0_0.81-1_0.43-2_0.08-3_1.09",
+          "894_l_1_c_0_2_3-0_0.05-1_0.3-2_0.14-3_0.52",
+          "895_l_1_c_1_2_3-0_1.6-1_0.16-2_0.13-3_0.06",
+          "896_l_1_c_0_1_3-0_0.62-1_0.07-2_0.02-3_0.26",
+          "897_l_1_c_0_2_3-0_0.46-1_0.77-2_0.17-3_0.21",
+          "898_l_1_c_1_2_3-0_1.35-1_0.03-2_0.62-3_1.39",
+          "899_l_1_c_0_1_3-0_0.85-1_0.04-2_0.32-3_0.73",
+          "900_l_1_c_0_2_3-0_0.7-1_0.31-2_0.0-3_0.08",
+          "901_l_1_c_1_2_3-0_1.13-1_0.2-2_0.27-3_0.73",
+          "902_l_1_c_0_1_3-0_0.47-1_0.14-2_0.02-3_0.28",
+          "903_l_1_c_0_2_3-0_0.59-1_0.33-2_0.45-3_0.29",
+          "904_l_1_c_1_2_3-0_1.03-1_0.62-2_0.47-3_0.1",
+          "905_l_1_c_0_1_3-0_0.19-1_0.19-2_1.36-3_0.23",
+          "906_l_1_c_0_2_3-0_0.61-1_0.01-2_0.08-3_0.92",
+          "907_l_1_c_1_2_3-0_0.87-1_0.38-2_0.11-3_0.05",
+          "908_l_1_c_0_1_3-0_0.76-1_0.2-2_0.05-3_0.08",
+          "909_l_1_c_0_2_3-0_0.22-1_0.26-2_0.17-3_0.48",
+          "910_l_1_c_1_2_3-0_0.19-1_0.08-2_0.05-3_1.63",
+          "911_l_1_c_0_1_3-0_0.29-1_0.04-2_0.68-3_0.36",
+          "912_l_1_c_0_2_3-0_0.18-1_0.26-2_0.5-3_0.52",
+          "913_l_1_c_1_2_3-0_0.01-1_0.32-2_0.67-3_0.08",
+          "914_l_1_c_0_1_3-0_0.35-1_0.13-2_0.74-3_0.68",
+          "915_l_1_c_0_2_3-0_0.07-1_0.27-2_0.16-3_0.52",
+          "916_l_1_c_1_2_3-0_0.24-1_0.26-2_0.09-3_0.2",
+          "917_l_1_c_0_1_3-0_0.36-1_0.46-2_0.14-3_0.58",
+          "918_l_1_c_0_2_3-0_0.99-1_0.73-2_0.65-3_0.03",
+          "919_l_1_c_1_2_3-0_0.66-1_0.17-2_0.21-3_0.65",
+          "920_l_1_c_0_1_3-0_0.1-1_0.34-2_0.13-3_0.52",
+          "921_l_1_c_0_2_3-0_0.7-1_0.21-2_0.19-3_0.72",
+          "922_l_1_c_1_2_3-0_0.28-1_0.19-2_0.13-3_0.04",
+          "923_l_1_c_0_1_3-0_0.12-1_0.04-2_0.84-3_0.39",
+          "924_l_1_c_0_2_3-0_1.07-1_0.16-2_0.09-3_0.05",
+          "925_l_1_c_1_2_3-0_0.88-1_0.17-2_0.48-3_1.61",
+          "926_l_1_c_0_1_3-0_0.99-1_0.12-2_1.32-3_0.07",
+          "927_l_1_c_0_2_3-0_0.2-1_0.22-2_0.19-3_0.04",
+          "928_l_1_c_1_2_3-0_1.84-1_0.33-2_0.08-3_0.35",
+          "929_l_1_c_0_1_3-0_0.08-1_0.11-2_0.04-3_0.17",
+          "930_l_1_c_2_3-0_1.09-1_0.6-2_0.17-3_1.01",
+          "931_l_1_c_3-0_0.25-1_0.11-2_0.27-3_0.36",
+          "932_l_1_c_3-0_0.65-1_1.06-2_0.38-3_1.03",
+          "933_l_1_r-0_1.79-1_0.14-2_0.5-3_1.46",
+          "934_l_1_r-0_0.48-1_0.47-2_0.33-3_0.68",
+          "935_l_1_r-0_0.52-1_0.67-2_0.59-3_0.96",
+          "936_l_1_r-0_1.43-1_0.68-2_0.03-3_0.49",
+          "937_l_1_r-0_1.01-1_0.59-2_0.53-3_0.19",
+          "938_l_1_r-0_0.11-1_0.71-2_0.32-3_0.88",
+          "939_l_1_r-0_0.48-1_0.81-2_0.49-3_0.82",
+          "940_l_1_r-0_0.44-1_1.08-2_0.54-3_1.36",
+          "941_l_1_r-0_1.97-1_0.41-2_0.41-3_2.38",
+          "942_l_1_r-0_0.18-1_0.25-2_0.08-3_0.25",
+          "943_l_1_r-0_0.13-1_0.49-2_0.69-3_0.63",
+          "944_l_1_r-0_0.63-1_0.9-2_0.2-3_0.77",
+          "945_l_1_r-0_1.38-1_0.69-2_0.62-3_0.06",
+          "946_l_1_r-0_1.43-1_0.83-2_0.24-3_1.68",
+          "947_l_1_r-0_0.25-1_1.21-2_1.05-3_1.34",
+          "948_l_1_r-0_0.21-1_0.31-2_1.09-3_1.14",
+          "949_l_1_r-0_0.75-1_0.63-2_0.27-3_0.18",
+          "950_l_1_r-0_1.44-1_0.2-2_0.19-3_0.15",
+          "951_l_1_r-0_0.52-1_0.38-2_1.31-3_1.84",
+          "952_l_1_r-0_0.06-1_0.5-2_0.04-3_0.37",
+          "953_l_1_r-0_2.36-1_0.12-2_0.5-3_1.04",
+          "954_l_1_r-0_0.28-1_0.18-2_0.71-3_0.85",
+          "955_l_1_r-0_2.23-1_0.29-2_0.43-3_0.06",
+          "956_l_1_r-0_0.08-1_0.04-2_0.09-3_0.83",
+          "957_l_1_r-0_0.09-1_0.61-2_0.48-3_1.32",
+          "958_l_1_r-0_2.86-1_0.06-2_1.06-3_0.73",
+          "959_l_1_r-0_1.02-1_0.58-2_0.51-3_0.85",
+          "960_l_1_r-0_0.73-1_0.4-2_0.47-3_0.54",
+          "961_l_1_r-0_0.12-1_0.62-2_1.04-3_0.51",
+          "962_l_1_r-0_0.74-1_0.06-2_0.52-3_0.04",
+          "963_l_1_r-0_1.11-1_0.05-2_0.21-3_0.34",
+          "964_l_1_r-0_0.36-1_0.31-2_1.11-3_1.7",
+          "965_l_1_r-0_1.17-1_0.45-2_0.63-3_1.24",
+          "966_l_1_r-0_0.51-1_0.56-2_0.39-3_0.31",
+          "967_l_1_r-0_0.16-1_0.51-2_0.45-3_1.67",
+          "968_l_1_r-0_0.23-1_0.22-2_1.08-3_0.77",
+          "969_l_1_r-0_0.49-1_0.86-2_0.3-3_1.6",
+          "970_l_1_r-0_1.5-1_0.76-2_0.17-3_0.56",
+          "971_l_1_r-0_0.47-1_0.89-2_0.14-3_0.01",
+          "972_l_1_r-0_0.93-1_0.4-2_0.83-3_1.14",
+          "973_l_1_r-0_0.05-1_0.76-2_0.63-3_0.66",
+          "974_l_1_r-0_0.29-1_0.61-2_0.27-3_2.31",
+          "975_l_1_r-0_0.03-1_0.31-2_0.36-3_1.13",
+          "976_l_1_r-0_0.45-1_0.47-2_0.08-3_0.55",
+          "977_l_1_r-0_0.41-1_0.67-2_0.95-3_0.25",
+          "978_l_1_r-0_0.4-1_0.43-2_0.72-3_0.93",
+          "979_l_1_r-0_2.44-1_0.16-2_1.07-3_1.24",
+          "980_l_1_r-0_1.82-1_1.23-2_1.28-3_0.79",
+          "981_l_1_r-0_0.52-1_0.32-2_0.38-3_0.54",
+          "982_l_1_r-0_0.13-1_0.09-2_0.1-3_1.07",
+          "983_l_1_r-0_1.02-1_0.26-2_0.25-3_0.66",
+          "984_l_1_r-0_0.07-1_0.4-2_0.8-3_2.37",
+          "985_l_1_r-0_2.1-1_0.28-2_0.33-3_1.39",
+          "986_l_1_r-0_0.08-1_0.62-2_0.87-3_1.56",
+          "987_l_1_r-0_0.5-1_0.21-2_0.38-3_0.77",
+          "988_l_1_r-0_0.35-1_0.9-2_0.76-3_0.09",
+          "989_l_1_r-0_0.35-1_0.79-2_0.64-3_0.19",
+          "990_l_1_r-0_1.96-1_0.37-2_0.59-3_0.9",
+          "991_l_1_r-0_0.39-1_0.26-2_0.55-3_1.64",
+          "992_l_1_r-0_1.41-1_0.77-2_0.94-3_2.11",
+          "993_l_1_r-0_0.02-1_0.33-2_0.54-3_0.31",
+          "994_l_1_r-0_0.19-1_0.29-2_1.49-3_0.44",
+          "995_l_1_r-0_0.32-1_0.52-2_0.62-3_1.61",
+          "996_l_1_r-0_0.67-1_1.58-2_0.17-3_1.19",
+          "997_l_1_r-0_2.06-1_0.3-2_0.19-3_0.22",
+          "998_l_1_r-0_0.12-1_0.9-2_1.05-3_1.46",
+          "999_l_1_r-0_1.59-1_0.3-2_0.59-3_1.73",
+          "1000_l_1_r-0_0.07-1_0.03-2_0.07-3_0.03",
+          "1001_l_1_r-0_1.01-1_0.02-2_0.47-3_0.42",
+          "1002_l_1_r-0_0.75-1_0.05-2_0.5-3_1.43",
+          "1003_l_1_r-0_0.82-1_0.13-2_0.09-3_1.08",
+          "1004_l_1_r-0_1.31-1_0.06-2_0.0-3_0.04",
+          "1005_l_1_r-0_0.9-1_1.08-2_0.55-3_0.44",
+          "1006_l_1_r-0_0.85-1_0.14-2_0.11-3_1.14",
+          "1007_l_1_r-0_0.86-1_0.95-2_0.13-3_0.58",
+          "1008_l_1_r-0_0.62-1_0.93-2_0.54-3_0.51",
+          "1009_l_1_r-0_0.04-1_0.05-2_0.72-3_0.63",
+          "1010_l_1_r-0_1.11-1_0.41-2_0.75-3_1.04",
+          "1011_l_1_r-0_0.94-1_0.29-2_1.06-3_2.42",
+          "1012_l_1_r-0_1.19-1_0.25-2_0.12-3_1.26",
+          "1013_l_1_r-0_0.05-1_0.26-2_0.09-3_0.03",
+          "1014_l_1_r-0_0.87-1_0.34-2_0.13-3_0.8",
+          "1015_l_1_r-0_0.44-1_0.48-2_0.23-3_0.42",
+          "1016_l_1_r-0_1.3-1_0.51-2_0.65-3_0.06",
+          "1017_l_1_r-0_1.52-1_0.44-2_0.7-3_1.62",
+          "1018_l_1_r-0_0.24-1_0.89-2_0.21-3_0.24",
+          "1019_l_1_r-0_0.38-1_0.79-2_0.03-3_0.33",
+          "1020_l_1_r-0_1.43-1_0.38-2_0.78-3_1.07",
+          "1021_l_1_r-0_0.54-1_0.74-2_0.49-3_1.02",
+          "1022_l_1_r-0_0.03-1_0.2-2_0.32-3_0.85",
+          "1023_l_1_r-0_0.85-1_0.87-2_0.57-3_0.83",
+          "1024_l_1_r-0_1.54-1_0.16-2_0.62-3_0.56",
+          "1025_l_1_r-0_0.97-1_0.3-2_0.3-3_0.19",
+          "1026_l_1_r-0_0.61-1_0.01-2_0.33-3_1.38",
+          "1027_l_1_r-0_1.47-1_0.4-2_0.45-3_0.55",
+          "1028_l_1_r-0_0.91-1_0.25-2_1.09-3_0.4",
+          "1029_l_1_r-0_0.08-1_0.31-2_0.39-3_0.14",
+          "1030_l_1_r-0_0.14-1_1.01-2_0.17-3_1.14",
+          "1031_l_1_r-0_1.1-1_0.15-2_1.05-3_1.45",
+          "1032_l_1_r-0_0.84-1_0.63-2_0.75-3_2.04",
+          "1033_l_1_r-0_0.59-1_1.06-2_1.15-3_1.05",
+          "1034_l_1_r-0_1.36-1_0.01-2_0.49-3_1.12",
+          "1035_l_1_r-0_0.08-1_0.22-2_0.98-3_0.57",
+          "1036_l_1_r-0_1.51-1_0.23-2_0.15-3_0.73",
+          "1037_l_1_r-0_0.55-1_1.36-2_0.23-3_1.2",
+          "1038_l_1_r-0_1.27-1_1.25-2_0.1-3_0.22",
+          "1039_l_1_r-0_1.42-1_0.37-2_0.34-3_0.75",
+          "1040_l_1_r-0_0.87-1_0.13-2_0.34-3_0.21",
+          "1041_l_1_r-0_2.2-1_0.18-2_0.12-3_0.75",
+          "1042_l_1_r-0_0.22-1_0.51-2_1.14-3_0.98",
+          "1043_l_1_r-0_0.4-1_0.44-2_0.74-3_0.86",
+          "1044_l_1_r-0_0.02-1_0.19-2_0.59-3_0.54",
+          "1045_l_1_r-0_0.12-1_0.79-2_0.26-3_0.34",
+          "1046_l_1_r-0_1.03-1_0.2-2_0.16-3_0.4",
+          "1047_l_1_r-0_0.13-1_0.11-2_0.92-3_0.96",
+          "1048_l_1_r-0_0.42-1_0.95-2_0.75-3_0.04",
+          "1049_l_1_r-0_0.58-1_0.45-2_0.29-3_1.65",
+          "1050_l_1_r-0_2.4-1_0.03-2_0.26-3_1.39",
+          "1051_l_1_r-0_0.92-1_0.38-2_0.92-3_0.08",
+          "1052_l_1_r-0_1.67-1_0.23-2_0.23-3_0.39",
+          "1053_l_1_r-0_1.22-1_0.02-2_0.23-3_0.44",
+          "1054_l_1_r-0_0.62-1_0.75-2_0.17-3_0.94",
+          "1055_l_1_r-0_0.45-1_0.17-2_0.12-3_2.21",
+          "1056_l_1_r-0_0.3-1_0.55-2_1.4-3_0.51",
+          "1057_l_1_r-0_1.12-1_1.48-2_0.35-3_0.28",
+          "1058_l_1_r-0_1.97-1_0.59-2_0.38-3_1.2",
+          "1059_l_1_r-0_0.37-1_1.12-2_0.12-3_0.14",
+          "1060_l_1_r-0_0.12-1_0.51-2_0.24-3_0.06",
+          "1061_l_1_r-0_1.24-1_0.31-2_0.83-3_0.54",
+          "1062_l_1_r-0_0.49-1_0.28-2_0.2-3_1.13",
+          "1063_l_1_r-0_0.24-1_0.21-2_0.08-3_0.05",
+          "1064_l_1_r-0_0.24-1_1.12-2_0.71-3_0.75",
+          "1065_l_1_r-0_0.89-1_1.83-2_0.58-3_0.71",
+          "1066_l_1_r-0_0.13-1_1.62-2_0.33-3_1.38",
+          "1067_l_1_r-0_0.57-1_0.43-2_0.48-3_0.09",
+          "1068_l_1_r-0_0.35-1_0.56-2_0.58-3_0.38",
+          "1069_l_1_r-0_1.73-1_0.77-2_0.46-3_0.31",
+          "1070_l_1_r-0_2.03-1_0.03-2_0.45-3_0.32",
+          "1071_l_1_r-0_0.4-1_0.39-2_0.93-3_0.89",
+          "1072_l_1_r-0_0.43-1_0.45-2_0.43-3_1.75",
+          "1073_l_1_r-0_0.22-1_0.41-2_0.35-3_0.9",
+          "1074_l_1_r-0_0.37-1_0.39-2_0.81-3_1.36",
+          "1075_l_1_r-0_0.2-1_0.02-2_0.07-3_0.97",
+          "1076_l_1_r-0_0.56-1_0.19-2_0.58-3_0.75",
+          "1077_l_1_r-0_1.2-1_0.11-2_0.09-3_0.1",
+          "1078_l_1_r-0_0.05-1_0.31-2_0.17-3_1.33",
+          "1079_l_1_r-0_0.6-1_0.15-2_0.18-3_1.34",
+          "1080_l_1_r-0_1.08-1_0.92-2_0.38-3_1.29",
+          "1081_l_1_r-0_1.21-1_0.61-2_0.38-3_0.54",
+          "1082_l_1_r-0_0.07-1_0.08-2_0.06-3_0.03",
+          "1083_l_1_r-0_0.93-1_0.13-2_0.05-3_1.21",
+          "1084_l_1_r-0_0.49-1_0.13-2_0.43-3_0.66",
+          "1085_l_1_r-0_0.72-1_0.85-2_0.68-3_1.87",
+          "1086_l_1_r-0_1.02-1_0.16-2_0.14-3_0.78",
+          "1087_l_1_r-0_2.57-1_0.77-2_0.18-3_1.09",
+          "1088_l_1_r-0_0.63-1_0.58-2_0.18-3_1.53",
+          "1089_l_1_r-0_0.37-1_0.34-2_1.12-3_0.27",
+          "1090_l_1_r-0_0.35-1_0.07-2_0.85-3_0.72",
+          "1091_l_1_r-0_1.02-1_0.4-2_0.51-3_1.21",
+          "1092_l_1_r-0_3.07-1_0.65-2_0.61-3_0.57",
+          "1093_l_1_r-0_0.57-1_0.65-2_0.45-3_0.47",
+          "1094_l_1_r-0_0.77-1_0.19-2_0.48-3_0.51",
+          "1095_l_1_r-0_1.08-1_0.83-2_1.14-3_0.52",
+          "1096_l_1_r-0_0.37-1_0.35-2_0.39-3_1.67",
+          "1097_l_1_r-0_0.16-1_0.27-2_0.16-3_0.8",
+          "1098_l_1_r-0_2.15-1_0.71-2_0.61-3_0.37",
+          "1099_l_1_r-0_0.3-1_0.3-2_0.69-3_1.23",
+          "1100_l_1_r-0_0.17-1_0.1-2_0.35-3_0.22",
+          "1101_l_1_r-0_0.57-1_0.13-2_0.25-3_0.7",
+          "1102_l_1_r-0_0.65-1_0.09-2_0.37-3_0.9",
+          "1103_l_1_r-0_0.18-1_0.64-2_0.12-3_2.11",
+          "1104_l_1_r-0_0.79-1_0.39-2_0.28-3_2.63",
+          "1105_l_1_r-0_0.28-1_0.36-2_0.26-3_2.6",
+          "1106_l_1_r-0_0.63-1_0.02-2_0.59-3_0.45",
+          "1107_l_1_r-0_1.3-1_0.33-2_0.35-3_0.42",
+          "1108_l_1_r-0_1.64-1_0.67-2_0.96-3_0.37",
+          "1109_l_1_r-0_0.02-1_0.18-2_1.05-3_0.74",
+          "1110_l_1_r-0_0.55-1_0.02-2_0.62-3_0.93",
+          "1111_l_1_r-0_0.4-1_0.7-2_0.63-3_1.21",
+          "1112_l_1_r-0_1.37-1_0.15-2_0.6-3_0.17",
+          "1113_l_1_r-0_2.07-1_0.62-2_0.92-3_0.59",
+          "1114_l_1_r-0_0.54-1_0.3-2_0.53-3_1.18",
+          "1115_l_1_r-0_1.42-1_0.34-2_0.59-3_0.2",
+          "1116_l_1_r-0_0.58-1_0.64-2_1.17-3_2.24",
+          "1117_l_1_r-0_0.32-1_0.62-2_0.27-3_0.15",
+          "1118_l_1_r-0_0.76-1_0.87-2_0.46-3_0.13",
+          "1119_l_1_r-0_0.62-1_0.1-2_0.06-3_0.55",
+          "1120_l_1_r-0_0.97-1_0.86-2_0.13-3_0.26",
+          "1121_l_1_r-0_1.53-1_0.85-2_0.02-3_1.53",
+          "1122_l_1_r-0_0.1-1_0.38-2_0.62-3_0.82",
+          "1123_l_1_r-0_0.78-1_0.73-2_0.51-3_0.48",
+          "1124_l_1_r-0_0.23-1_0.8-2_0.1-3_2.14",
+          "1125_l_1_r-0_0.44-1_0.26-2_0.4-3_0.35",
+          "1126_l_1_r-0_1.38-1_1.22-2_0.02-3_0.23",
+          "1127_l_1_r-0_1.06-1_1.03-2_0.2-3_0.31",
+          "1128_l_1_r-0_1.35-1_0.68-2_0.03-3_1.03",
+          "1129_l_1_r-0_0.35-1_0.92-2_0.98-3_0.25",
+          "1130_l_1_r-0_1.81-1_0.41-2_0.77-3_0.84",
+          "1131_l_1_r-0_0.78-1_0.57-2_0.38-3_0.8",
+          "1132_l_1_r-0_0.69-1_1.51-2_0.38-3_0.49",
+          "1133_l_1_r-0_0.08-1_0.7-2_0.76-3_0.2",
+          "1134_l_1_r-0_1.14-1_0.42-2_0.58-3_0.66",
+          "1135_l_1_r-0_0.22-1_0.01-2_0.81-3_2.49",
+          "1136_l_1_r-0_0.96-1_1.14-2_0.58-3_0.3",
+          "1137_l_1_r-0_0.45-1_0.17-2_0.74-3_0.9",
+          "1138_l_1_r-0_0.58-1_0.2-2_1.39-3_0.09",
+          "1139_l_1_r-0_0.03-1_0.44-2_0.0-3_2.16",
+          "1140_l_1_r-0_0.65-1_0.91-2_0.25-3_0.93",
+          "1141_l_1_r-0_0.26-1_0.95-2_0.57-3_1.86",
+          "1142_l_1_r-0_1.5-1_0.02-2_0.22-3_0.47",
+          "1143_l_1_r-0_0.88-1_0.16-2_0.33-3_0.54",
+          "1144_l_1_r-0_0.37-1_1.12-2_0.44-3_0.13",
+          "1145_l_1_r-0_0.71-1_0.53-2_0.47-3_0.2",
+          "1146_l_1_r-0_0.89-1_0.93-2_1.08-3_1.36",
+          "1147_l_1_r-0_0.22-1_0.06-2_0.6-3_0.65",
+          "1148_l_1_r-0_0.95-1_1.12-2_0.78-3_0.43",
+          "1149_l_1_r-0_0.45-1_0.33-2_0.21-3_0.49",
+          "1150_l_1_r-0_0.95-1_0.44-2_0.29-3_0.79",
+          "1151_l_1_r-0_0.21-1_0.69-2_0.13-3_2.13",
+          "1152_l_1_r-0_0.84-1_0.26-2_0.02-3_0.24",
+          "1153_l_1_r-0_0.37-1_0.29-2_0.77-3_1.31",
+          "1154_l_1_r-0_1.2-1_0.12-2_0.13-3_0.28",
+          "1155_l_1_r-0_1.66-1_0.9-2_0.59-3_1.88",
+          "1156_l_1_r-0_1.41-1_0.55-2_0.03-3_0.62",
+          "1157_l_1_r-0_0.29-1_0.79-2_0.88-3_1.55",
+          "1158_l_1_r-0_0.44-1_0.09-2_0.53-3_0.35",
+          "1159_l_1_r-0_2.17-1_0.1-2_0.99-3_1.97",
+          "1160_l_1_r-0_0.26-1_0.55-2_0.27-3_1.05",
+          "1161_l_1_r-0_1.16-1_0.41-2_0.91-3_1.0",
+          "1162_l_1_r-0_0.65-1_0.49-2_1.04-3_1.09",
+          "1163_l_1_r-0_0.07-1_0.63-2_0.86-3_0.02",
+          "1164_l_1_r-0_1.47-1_1.07-2_0.32-3_0.75",
+          "1165_l_1_r-0_1.1-1_0.28-2_0.65-3_0.3",
+          "1166_l_1_r-0_1.14-1_0.76-2_0.78-3_0.86",
+          "1167_l_1_r-0_1.8-1_0.24-2_0.05-3_0.49",
+          "1168_l_1_r-0_0.52-1_0.17-2_0.27-3_0.26",
+          "1169_l_1_r-0_1.24-1_0.6-2_0.25-3_0.73",
+          "1170_l_1_r-0_0.81-1_0.88-2_0.37-3_1.23",
+          "1171_l_1_r-0_2.15-1_0.71-2_0.59-3_0.1",
+          "1172_l_1_r-0_0.28-1_0.03-2_0.9-3_1.37",
+          "1173_l_1_r-0_2.02-1_0.65-2_0.95-3_1.95",
+          "1174_l_1_r-0_1.05-1_0.64-2_0.53-3_2.49",
+          "1175_l_1_r-0_0.7-1_0.2-2_0.22-3_0.01",
+          "1176_l_1_r-0_2.01-1_0.74-2_0.37-3_0.44",
+          "1177_l_1_r-0_0.73-1_0.91-2_0.97-3_1.77",
+          "1178_l_1_r-0_1.26-1_0.61-2_0.91-3_1.47",
+          "1179_l_1_r-0_1.23-1_0.16-2_0.15-3_2.8",
+          "1180_l_1_r-0_0.5-1_0.79-2_0.32-3_0.79",
+          "1181_l_1_r-0_1.39-1_0.56-2_0.63-3_0.97",
+          "1182_l_1_r-0_0.6-1_0.3-2_1.42-3_0.24",
+          "1183_l_1_r-0_1.23-1_0.14-2_0.07-3_0.88",
+          "1184_l_1_r-0_0.45-1_0.12-2_0.31-3_0.3",
+          "1185_l_1_r-0_0.42-1_1.16-2_0.4-3_1.73",
+          "1186_l_1_r-0_0.89-1_0.17-2_0.78-3_1.79",
+          "1187_l_1_r-0_0.23-1_0.19-2_0.28-3_1.26",
+          "1188_l_1_r-0_0.78-1_0.36-2_0.1-3_1.5",
+          "1189_l_1_r-0_0.44-1_0.25-2_1.26-3_1.08",
+          "1190_l_1_r-0_0.17-1_0.03-2_0.99-3_0.21",
+          "1191_l_1_r-0_1.24-1_0.52-2_0.15-3_0.77",
+          "1192_l_1_r-0_1.12-1_0.3-2_0.97-3_0.46",
+          "1193_l_1_r-0_0.71-1_0.14-2_0.38-3_1.75",
+          "1194_l_1_r-0_0.3-1_0.49-2_0.69-3_0.32",
+          "1195_l_1_r-0_1.08-1_0.91-2_0.05-3_0.52",
+          "1196_l_1_r-0_0.52-1_0.7-2_0.05-3_1.14",
+          "1197_l_1_r-0_1.13-1_0.06-2_0.3-3_0.69",
+          "1198_l_1_r-0_1.91-1_0.28-2_0.25-3_1.67",
+          "1199_l_1_r-0_1.68-1_0.9-2_0.98-3_0.45",
+          "1200_l_1_r-0_0.1-1_0.38-2_1.32-3_0.63",
+          "1201_l_1_r-0_0.5-1_0.17-2_0.44-3_0.95",
+          "1202_l_1_r-0_0.33-1_0.92-2_0.7-3_1.36",
+          "1203_l_1_r-0_0.81-1_0.22-2_0.47-3_1.68",
+          "1204_l_1_r-0_0.59-1_0.7-2_0.67-3_0.88",
+          "1205_l_1_r-0_0.65-1_0.09-2_0.19-3_0.97",
+          "1206_l_1_r-0_1.22-1_0.14-2_0.24-3_1.64",
+          "1207_l_1_r-0_0.72-1_0.53-2_0.46-3_0.84",
+          "1208_l_1_r-0_0.01-1_0.25-2_0.06-3_0.48",
+          "1209_l_1_r-0_0.21-1_0.37-2_0.28-3_0.14",
+          "1210_l_1_r-0_1.79-1_0.15-2_0.09-3_1.37",
+          "1211_l_1_r-0_1.67-1_1.03-2_0.12-3_0.15",
+          "1212_l_1_r-0_0.0-1_0.2-2_0.43-3_0.18",
+          "1213_l_1_r-0_1.07-1_0.22-2_0.61-3_1.43",
+          "1214_l_1_r-0_1.07-1_0.2-2_0.15-3_0.69",
+          "1215_l_1_r-0_0.26-1_0.2-2_0.84-3_0.87",
+          "1216_l_1_r-0_0.08-1_0.31-2_0.21-3_2.2",
+          "1217_l_1_r-0_1.09-1_0.05-2_1.56-3_2.26",
+          "1218_l_1_r-0_0.21-1_1.37-2_0.34-3_0.27",
+          "1219_l_1_r-0_3.37-1_0.56-2_0.08-3_0.15",
+          "1220_l_1_r-0_0.54-1_0.84-2_0.35-3_0.15",
+          "1221_l_1_r-0_0.23-1_0.52-2_0.27-3_1.98",
+          "1222_l_1_r-0_0.3-1_0.74-2_0.08-3_0.17",
+          "1223_l_1_r-0_0.76-1_0.22-2_0.69-3_1.83",
+          "1224_l_1_r-0_0.55-1_0.96-2_0.11-3_1.54",
+          "1225_l_1_r-0_0.15-1_0.35-2_0.94-3_1.23",
+          "1226_l_1_r-0_1.56-1_1.06-2_0.05-3_0.24",
+          "1227_l_1_r-0_0.09-1_0.46-2_0.12-3_0.07",
+          "1228_l_1_r-0_1.04-1_1.13-2_0.28-3_0.69",
+          "1229_l_1_r-0_0.87-1_0.13-2_0.05-3_1.48",
+          "1230_l_1_r-0_0.03-1_1.38-2_1.01-3_0.18",
+          "1231_l_1_r-0_0.61-1_0.16-2_0.51-3_0.72",
+          "1232_l_1_r-0_0.62-1_0.18-2_0.27-3_0.19",
+          "1233_l_1_r-0_0.28-1_0.07-2_0.74-3_0.25",
+          "1234_l_1_r-0_1.13-1_1.22-2_1.09-3_0.47",
+          "1235_l_1_r-0_0.14-1_0.02-2_0.06-3_0.77",
+          "1236_l_1_r-0_0.86-1_0.62-2_0.96-3_1.19",
+          "1237_l_1_r-0_1.0-1_0.2-2_0.18-3_1.08",
+          "1238_l_1_r-0_0.76-1_0.44-2_0.6-3_0.57",
+          "1239_l_1_r-0_0.52-1_0.19-2_0.25-3_0.59",
+          "1240_l_1_r-0_2.26-1_0.02-2_0.35-3_1.32",
+          "1241_l_1_r-0_0.93-1_0.06-2_0.34-3_0.42",
+          "1242_l_1_r-0_2.52-1_0.59-2_0.12-3_0.44",
+          "1243_l_1_r-0_0.74-1_0.09-2_0.16-3_0.46",
+          "1244_l_1_r-0_0.26-1_1.14-2_0.79-3_0.09",
+          "1245_l_1_r-0_0.52-1_0.33-2_0.08-3_1.8",
+          "1246_l_1_r-0_0.48-1_0.14-2_0.99-3_1.23",
+          "1247_l_1_r-0_0.42-1_0.57-2_1.02-3_1.36",
+          "1248_l_1_r-0_0.11-1_0.2-2_0.1-3_0.9",
+          "1249_l_1_r-0_0.55-1_1.0-2_0.92-3_0.05",
+          "1250_l_1_r-0_0.86-1_0.28-2_0.21-3_0.22",
+          "1251_l_1_r-0_0.5-1_0.39-2_0.75-3_1.4",
+          "1252_l_1_r-0_0.77-1_0.23-2_0.71-3_0.22",
+          "1253_l_1_r-0_0.96-1_0.26-2_0.56-3_0.36",
+          "1254_l_1_r-0_0.56-1_0.24-2_0.13-3_1.43",
+          "1255_l_1_r-0_0.16-1_0.61-2_0.15-3_1.24",
+          "1256_l_1_r-0_0.86-1_0.2-2_0.42-3_0.66",
+          "1257_l_1_r-0_0.09-1_1.09-2_0.75-3_1.99",
+          "1258_l_1_r-0_0.71-1_0.07-2_0.08-3_0.12",
+          "1259_l_1_r-0_0.02-1_1.14-2_0.59-3_2.0",
+          "1260_l_1_r-0_1.23-1_0.73-2_0.42-3_0.76",
+          "1261_l_1_r-0_0.35-1_0.38-2_0.66-3_0.04",
+          "1262_l_1_r-0_0.48-1_0.67-2_0.25-3_1.48",
+          "1263_l_1_r-0_2.08-1_0.17-2_0.28-3_0.03",
+          "1264_l_1_r-0_0.25-1_0.15-2_0.03-3_0.36",
+          "1265_l_1_r-0_0.05-1_0.1-2_0.89-3_1.69",
+          "1266_l_1_r-0_2.61-1_0.08-2_0.12-3_1.16",
+          "1267_l_1_r-0_0.79-1_0.63-2_0.84-3_0.57",
+          "1268_l_1_r-0_0.46-1_0.14-2_0.24-3_0.74",
+          "1269_l_1_r-0_0.46-1_0.25-2_0.32-3_0.25",
+          "1270_l_1_r-0_1.02-1_1.66-2_0.17-3_0.63",
+          "1271_l_1_r-0_1.89-1_0.66-2_0.42-3_0.04",
+          "1272_l_1_r-0_0.56-1_0.35-2_1.76-3_0.09",
+          "1273_l_1_r-0_0.79-1_0.43-2_0.16-3_1.49",
+          "1274_l_1_r-0_1.3-1_0.25-2_0.67-3_0.9",
+          "1275_l_1_r-0_0.59-1_0.16-2_0.87-3_0.93",
+          "1276_l_1_r-0_0.05-1_0.16-2_0.84-3_1.93",
+          "1277_l_1_r-0_0.02-1_0.06-2_0.57-3_1.63",
+          "1278_l_1_r-0_1.34-1_0.08-2_0.42-3_0.73",
+          "1279_l_1_r-0_1.39-1_0.57-2_0.22-3_1.83",
+          "1280_l_1_r-0_0.66-1_0.26-2_0.24-3_0.75",
+          "1281_l_1_r-0_0.06-1_0.8-2_0.34-3_0.96",
+          "1282_l_1_r-0_0.39-1_0.42-2_0.27-3_0.32",
+          "1283_l_1_r-0_0.52-1_0.14-2_1.03-3_0.19",
+          "1284_l_1_r-0_0.08-1_0.09-2_0.79-3_0.95",
+          "1285_l_1_r-0_0.98-1_0.99-2_0.48-3_0.29",
+          "1286_l_1_r-0_0.16-1_0.38-2_0.63-3_0.29",
+          "1287_l_1_r-0_0.52-1_0.45-2_0.03-3_0.71",
+          "1288_l_1_r-0_1.23-1_1.0-2_0.02-3_0.6",
+          "1289_l_1_r-0_0.01-1_0.87-2_0.41-3_0.13",
+          "1290_l_1_r-0_0.82-1_1.11-2_0.69-3_0.13",
+          "1291_l_1_r-0_0.79-1_0.93-2_0.1-3_0.49",
+          "1292_l_1_r-0_0.74-1_1.43-2_0.86-3_1.0",
+          "1293_l_1_r-0_0.44-1_0.07-2_0.26-3_0.11",
+          "1294_l_1_r-0_1.23-1_0.63-2_0.69-3_0.71",
+          "1295_l_1_r-0_0.28-1_0.09-2_0.61-3_1.94",
+          "1296_l_1_r-0_0.09-1_0.12-2_0.87-3_1.4",
+          "1297_l_1_r-0_0.93-1_0.04-2_0.06-3_0.52",
+          "1298_l_1_r-0_1.73-1_0.04-2_0.69-3_0.26",
+          "1299_l_1_r-0_0.53-1_0.36-2_0.66-3_1.2",
+          "1300_l_1_r-0_0.67-1_0.37-2_0.98-3_0.69",
+          "1301_l_1_r-0_0.54-1_0.33-2_0.77-3_0.53",
+          "1302_l_1_r-0_1.06-1_0.73-2_0.51-3_0.32",
+          "1303_l_1_r-0_0.13-1_0.12-2_0.48-3_0.39",
+          "1304_l_1_r-0_0.36-1_0.11-2_0.11-3_0.21",
+          "1305_l_1_r-0_0.51-1_1.22-2_1.43-3_0.44",
+          "1306_l_1_r-0_0.43-1_0.26-2_0.44-3_0.0",
+          "1307_l_1_r-0_1.72-1_0.03-2_0.02-3_1.3",
+          "1308_l_1_r-0_1.28-1_0.4-2_0.16-3_1.94",
+          "1309_l_1_r-0_1.33-1_0.13-2_0.93-3_0.71",
+          "1310_l_1_r-0_0.61-1_0.54-2_0.59-3_1.22",
+          "1311_l_1_r-0_0.1-1_0.39-2_0.49-3_0.03",
+          "1312_l_1_r-0_0.03-1_0.41-2_0.32-3_1.69",
+          "1313_l_1_r-0_0.42-1_0.73-2_0.12-3_2.04",
+          "1314_l_1_r-0_0.19-1_0.53-2_0.02-3_0.71",
+          "1315_l_1_r-0_0.13-1_0.65-2_0.23-3_0.97",
+          "1316_l_1_r-0_0.41-1_0.81-2_0.49-3_1.85",
+          "1317_l_1_r-0_1.76-1_1.08-2_0.21-3_0.72",
+          "1318_l_1_r-0_1.07-1_0.01-2_0.28-3_0.5",
+          "1319_l_1_r-0_0.98-1_1.38-2_0.63-3_0.85",
+          "1320_l_1_r-0_1.18-1_0.06-2_0.66-3_0.59",
+          "1321_l_1_r-0_0.14-1_0.19-2_0.72-3_1.24",
+          "1322_l_1_r-0_1.03-1_1.2-2_0.44-3_0.47",
+          "1323_l_1_r-0_0.66-1_0.56-2_0.24-3_1.18",
+          "1324_l_1_r-0_0.19-1_0.27-2_0.33-3_0.0",
+          "1325_l_1_r-0_1.62-1_0.43-2_0.53-3_0.72",
+          "1326_l_1_r-0_1.21-1_1.13-2_0.34-3_0.58",
+          "1327_l_1_r-0_0.44-1_0.13-2_0.85-3_0.72",
+          "1328_l_1_r-0_0.18-1_0.5-2_0.7-3_0.02",
+          "1329_l_1_r-0_0.21-1_1.55-2_0.12-3_0.14",
+          "1330_l_1_r-0_0.34-1_0.64-2_0.24-3_1.14",
+          "1331_l_1_r-0_0.14-1_0.52-2_0.6-3_0.41"
          ],
          "type": "scatter3d",
          "x": [
-          0.03460384081829948,
-          0.6262791295095664,
-          0.2731106167952879,
-          1.6935176642254062,
-          -0.2630353535770662,
-          0.29988240818458667,
-          0.07659952747491927,
-          0.10150951322715507,
-          0.40337630601655083,
-          0.7021046552564693,
-          0.38220372651897205,
-          1.6952692270887475,
-          2.121950491915225,
-          1.3638404342926127,
-          0.5979506997252101,
-          -0.609287086687434,
-          1.8241523634556387,
-          0.4888022014386153,
-          1.2556995380481428,
-          1.0113323783677342,
-          0.14888521316561343,
-          -0.14706559971907684,
-          -1.8151236899058496,
-          1.6135361291851882,
-          1.0723603899083844,
-          2.351088946337002,
-          -0.8758090928476314,
-          0.916667799375653,
-          2.520664172981186,
-          1.415311477240334,
-          0.1717942943407028,
-          2.890840420039165,
-          0.17478712445428357,
-          1.36358427384619,
-          -0.15365935142656872,
-          0.8121571799362091,
-          1.5304234639752379,
-          1.052939468234801,
-          0.7746518662869923,
-          5.2973206617679125e-05,
-          0.2931465984856564,
-          2.38238274568994,
-          -0.17843671293067564,
-          0.913453839319397,
-          1.928767535075775,
-          2.5327838847681052,
-          0.46998924122003405,
-          -0.17051493012890884,
-          0.14115572170104085,
-          0.37017519575359015,
-          -0.1485833152387388,
-          -0.8454238848045357,
-          0.42069469142095683,
-          2.2281152937809283,
-          0.8952279883184657,
-          1.479119127782772,
-          1.5669802632671008,
-          0.8318603539508328,
-          1.5100665931710657,
-          0.9554551357552115,
-          1.5341359422659844,
-          0.32366028423645454,
-          0.5555204701222954,
-          1.8713536757310174,
-          -0.2582963852509055,
-          3.1321464601437015,
-          0.7512765759174674,
-          2.204675935756925,
-          -1.9118039447172657,
-          0.7522928015655027,
-          1.0321154554323206,
-          1.1432866718820254,
-          2.0826249210022105,
-          2.224638731215175,
-          0.6481262037134841,
-          1.6416252324412084,
-          -0.70686256219305,
-          -0.28494466195482815,
-          2.5300474415616288,
-          0.021925737336447648,
-          0.4411837082632051,
-          0.14282762610829425,
-          0.2166912432749365,
-          1.2528766575156671,
-          2.027191560040414,
-          2.432988276709578,
-          2.091027909191477,
-          1.231669939018727,
-          1.0166209813624136,
-          1.775765385282725,
-          0.9594776164730683,
-          -2.0942892490913896,
-          2.5533546990558946,
-          0.746851499957055,
-          2.2719183034223662,
-          1.6862885417318136,
-          0.7783966098173505,
-          1.8954602236748324,
-          1.2735945732616776,
-          0.6659469179431545,
-          0.3126455656417064,
-          1.0393091987434653,
-          -0.7383975785217862,
-          2.3747979700547797,
-          0.7791655079629174,
-          2.0153427862709963,
-          -0.2893820891033929,
-          0.4356970541893739,
-          0.02511569536095859,
-          -0.6758401645518477,
-          0.33966873719988355,
-          1.3081283365365046,
-          0.46587835838710434,
-          1.143737437820857,
-          1.4245485997196692,
-          2.153327763396889,
-          0.14607108542864256,
-          1.790641583887672,
-          -0.5110935484525234,
-          1.3450861860150827,
-          2.4824440287546365,
-          -0.9387999093815778,
-          1.9072346600576204,
-          2.438028721873262,
-          1.8166035703577128,
-          1.452289992570918,
-          0.13640160726818218,
-          -1.1427198463985464,
-          0.13643164029010735,
-          0.8880833148007954,
-          2.4148401364592598,
-          2.162902572544139,
-          -0.3111438217869762,
-          1.0746816394542391,
-          1.362184322104694,
-          0.8114081488936834,
-          0.44459960055766123,
-          2.1272811234320694,
-          0.7330603128603741,
-          1.6252284708731022,
-          1.6040248469495526,
-          0.12723892921146174,
-          0.9022050029157971,
-          2.2740596432667957,
-          0.3144454285164948,
-          1.5011620700684523,
-          1.405029604444193,
-          0.9015546858232515,
-          0.22749139360783988,
-          0.6072410475831909,
-          1.669868037904822,
-          0.1860282041094884,
-          2.053069717594912,
-          0.7685819387950076,
-          1.032426604187004,
-          -1.429112337166646,
-          1.063183668807756,
-          1.9668834167557434,
-          2.5912152908822934,
-          1.3091381873347978,
-          -0.7772637986896467,
-          0.7033312633255284,
-          0.25437953282782644,
-          0.9554013280047766,
-          -0.3945595133260753,
-          1.3821312758908035,
-          -0.04718435524822828,
-          1.1280988843589868,
-          0.9680661099491893,
-          2.006624631596515,
-          0.25630008309481667,
-          1.501894389860622,
-          0.8449379553015215,
-          1.8488054577314492,
-          0.28196691782772587,
-          0.23249296332618952,
-          0.26414642408763944,
-          1.1903101253970567,
-          -0.4820732754824262,
-          0.5730196284932376,
-          0.8102484427403169,
-          -0.22656057990196543,
-          -0.45528897590121553,
-          2.351957305398458,
-          0.08238401089366787,
-          1.1382252365018404,
-          1.1415592668957943,
-          1.1927987925062689,
-          1.1973684622346912,
-          2.0170655439701535,
-          2.237150975478716,
-          0.1927222299896293,
-          0.411308300530726,
-          0.9153291025003358,
-          0.42450978690387864,
-          -0.383467312455986,
-          0.42277904361788665,
-          1.2752486875683642,
-          2.2939892132916677,
-          0.6461824737878189,
-          0.7319674126723894,
-          1.6690752544963647,
-          0.5964066630130899,
-          -0.2117682074893643,
-          2.515945146294234,
-          1.882924805586752,
-          -0.06147297292362763,
-          1.437017622073419,
-          1.3429829673663183,
-          0.6462092688576861,
-          2.537854951326482,
-          -0.6465113866019412,
-          2.321880992159802,
-          1.1962723384408633,
-          0.041071732285383744,
-          1.178931728938161,
-          1.5512833327755875,
-          -0.21371219897325022,
-          1.9221734565070863,
-          2.031415906434008,
-          0.17916104114970866,
-          0.8037063822542334,
-          0.47811658629495546,
-          1.4778141529206552,
-          0.7794374655910106,
-          2.132405540709269,
-          0.4201448185366716,
-          1.31537289612739,
-          -0.21678564108141773,
-          -0.23533397930347966,
-          0.1552625912088238,
-          1.7810089546071515,
-          1.5746929937075995,
-          2.173900931574208,
-          1.4014668584815455,
-          0.6476951266508295,
-          2.285759036510566,
-          1.6685626163371268,
-          1.3051726345805077,
-          2.1007998054227173,
-          -1.5258316858046084,
-          2.0363859085870253,
-          2.04784905688975,
-          -0.950900466789381,
-          -0.6101697979934344,
-          0.33573213504141797,
-          0.5808662064110953,
-          0.21543300739747706,
-          2.334946728383643,
-          1.85835123300539,
-          -0.4203017800706945,
-          1.3904842938743351,
-          0.5294608604705827,
-          1.682652507292588,
-          0.1437118763397196,
-          1.020271892122288,
-          1.7126620321270067,
-          0.3086651388372236,
-          2.446822840111534,
-          3.4359851242292434,
-          1.5929508094251297,
-          -0.7985004951846741,
-          0.28445558024147255,
-          -0.6963162351162222,
-          1.555987433690139,
-          2.268358611496067,
-          -0.19705500482641058,
-          0.7685477850123458,
-          -0.8770391546303089,
-          1.037092341936456,
-          2.782024112701473,
-          0.9276709986976931,
-          0.6400238264190989,
-          2.3435465066220513,
-          1.7567270028534283,
-          2.0458029156995154,
-          0.01902908147392468,
-          -0.4762304803093984,
-          1.8600850677428205,
-          1.14599591431264,
-          1.9993809463927898,
-          1.6012367881516734,
-          1.2594788230864766,
-          2.3127240692726616,
-          -0.6171517144400436,
-          0.432804848984899,
-          0.9694069357692444,
-          2.218665210788921,
-          2.1812216342206012,
-          -0.13307517309215688,
-          1.4101515677135938,
-          0.5766225097642634,
-          -1.0152219054323766,
-          1.7911536503642258,
-          2.2812696454013426,
-          1.5870424240678338,
-          -0.10208456477606531,
-          0.9446064745176643,
-          2.585679173100759,
-          1.2405807577265922,
-          2.3686234226985103,
-          1.1076034362229508,
-          0.2740819140062214,
-          1.2774211112373433,
-          1.6727204878601407,
-          1.1508676285115624,
-          2.9417461220517027,
-          0.6772554472766577,
-          1.2661778652041802,
-          2.4861513251433442,
-          1.4170804980086447,
-          -0.15463694888472812,
-          0.5238008396010128,
-          1.2789230971674435,
-          0.38314466689642257,
-          1.1498721979352746,
-          0.6316672899608237,
-          1.5912895892934729,
-          2.0325617203605524,
-          0.28997491318489865,
-          -0.19557532822344537,
-          0.05319990581866829,
-          2.516347465799197,
-          1.793639294330103,
-          0.9915863340286349,
-          0.9629919059267664,
-          2.0468009034913464,
-          -0.7227224815653555,
-          1.2961845539884636,
-          2.9212374170896127,
-          1.3770609096283999,
-          1.2040003810776914,
-          -0.1212795914817848
+          0.8649143860663394,
+          -0.18561516388330423,
+          0.3247524616193127,
+          -0.576374092605437,
+          1.2868436988520167,
+          -0.6923126445278853,
+          0.6737016679032609,
+          -0.0023043472794935767,
+          -1.0804417872633327,
+          0.5185120663637975,
+          0.9282521224368149,
+          -0.23241089785644362,
+          -0.09216852703117172,
+          1.0067131982756412,
+          0.4930508770087504,
+          -1.169751060305773,
+          -0.21219598064811157,
+          1.0476371584084017,
+          -0.6081932387170427,
+          0.2820907093847358,
+          -0.6188041405669519,
+          -2.4125438400702293,
+          0.16444463072420162,
+          -2.19276615453289,
+          1.2985378450445337,
+          -0.588608558419047,
+          -0.1558499999167484,
+          -0.21409850966310215,
+          0.22598226282796857,
+          0.7783535333917502,
+          -1.0210070624727823,
+          -0.35666106599979064,
+          0.5427146091451772,
+          -1.8341574849226205,
+          -0.46267806250385946,
+          -2.816031226234192,
+          0.8716161449709328,
+          -0.17545812231030417,
+          0.6353607042152863,
+          2.4678075412203224,
+          -0.28433300424406077,
+          -1.6308259199841264,
+          1.0445418964791378,
+          -1.4605519390684083,
+          0.3598382660062799,
+          -0.20497148083438946,
+          0.22354955561940545,
+          -0.8434956972193371,
+          -0.16117222474563825,
+          1.0268731755500633,
+          0.37696685847634614,
+          -0.4476410879776551,
+          -0.5141552559365313,
+          -0.25224655879394975,
+          -0.02086337381677755,
+          1.9418718288090524,
+          -0.5567858648087975,
+          1.354158245343242,
+          -0.38008465505430433,
+          1.976528169888219,
+          -0.6461555125021493,
+          0.7084511144170467,
+          0.22976565018147618,
+          0.7125156545901346,
+          -1.389140671496189,
+          2.298105135822346,
+          -0.04588065748791901,
+          -0.9277739476353776,
+          1.0120319117022778,
+          -0.6661995234564249,
+          0.2443020410945617,
+          -2.9883793434388686,
+          -1.2012824852391826,
+          0.12388576544074453,
+          -0.4466692554252137,
+          -0.6089639760099069,
+          -1.2620713848442044,
+          -2.5213968041807986,
+          0.2602793020761772,
+          -1.6936258141373368,
+          -0.8237729268299738,
+          -1.774537790361275,
+          0.8652079101117492,
+          -2.804203002035723,
+          -0.7973233310304929,
+          -1.1516528719953234,
+          -0.9845061587956208,
+          -0.9460491427827261,
+          1.0996957878598423,
+          0.7207454894271841,
+          -0.4609046975335797,
+          -0.6000683490306878,
+          -1.058394175354737,
+          -0.38757992099114935,
+          0.4737503196571929,
+          0.365377252670894,
+          -0.27566824100540166,
+          -0.4965675737514528,
+          0.32690893885271316,
+          0.5032190482137295,
+          0.46836772581439223,
+          0.4873361094062391,
+          -0.6520052847224695,
+          -1.2557428616212594,
+          1.3358947017011853,
+          1.7074601820616726,
+          0.7634652105161218,
+          -1.4283212709086495,
+          1.2785381372900197,
+          -1.129881262544512,
+          0.8690101051106789,
+          1.4731282297389614,
+          0.47522137589686353,
+          1.02457576183809,
+          -0.8592977630579791,
+          -1.197155165655679,
+          0.6033767109302474,
+          -0.5078491391288485,
+          -1.1436254588952304,
+          1.28450431401755,
+          0.9955251337812699,
+          1.529417149392553,
+          -0.22904796908322403,
+          -1.0663033511272169,
+          0.6982417351835962,
+          -2.219183103590407,
+          0.06669552452155264,
+          1.8829973805579265,
+          -0.28249333218109074,
+          1.5380616452442963,
+          -0.9790165829905668,
+          -0.015848341442844444,
+          0.3006872638646095,
+          0.13977923483642601,
+          1.4426561819515582,
+          2.1893754666188006,
+          -0.00923339946196143,
+          0.1754946150340025,
+          -1.2015456882403832,
+          1.0191076257466232,
+          -0.4610040119900241,
+          0.9386766640013652,
+          0.5621013247413452,
+          -0.9037712014002905,
+          -1.8523475090614412,
+          -0.7212078920638365,
+          -0.969613976613776,
+          -0.4861048908695619,
+          -0.5348374149353685,
+          0.42918995990920744,
+          -0.4400565504921075,
+          0.27718539335601416,
+          0.4549279821792729,
+          -0.4636595861991812,
+          0.7475839287114664,
+          1.2785942526393614,
+          0.2185569463113242,
+          1.2008063098710076,
+          0.3911939625210059,
+          -0.5794049937356482,
+          1.2403912112479822,
+          -0.23324104572732138,
+          -0.7369182781695381,
+          0.4077399505404409,
+          0.23489815866685018,
+          1.287561225642641,
+          -0.7153724015558396,
+          0.26583931813615924,
+          -1.2014195783141797,
+          -0.2839241726762393,
+          0.7076956569292523,
+          0.06132957999637528,
+          0.8106047464839773,
+          0.5443954367637632,
+          -1.3987101607952066,
+          0.03879045502809341,
+          0.4856101302528512,
+          2.2556116524366208,
+          0.17607889015728595,
+          0.14175770160203152,
+          1.379862376184735,
+          -0.3154251095615703,
+          0.47534577256239957,
+          -2.9705265860412604,
+          -0.9003112315296515,
+          0.5862050670784815,
+          -0.5513777396109584,
+          -0.7184954677037834,
+          1.1687623355238022,
+          1.0850124491512831,
+          1.1526695219317706,
+          0.30067766676470475,
+          -0.9998535664832249,
+          0.31318443576220956,
+          -0.02913505681941217,
+          0.5360692151924161,
+          0.3251349257762482,
+          -0.05786019596599324,
+          1.3554066960185711,
+          -0.16041073324764774,
+          -1.2036900813534224,
+          -1.2728535656371676,
+          0.242685439544347,
+          -0.07789516662992334,
+          -1.148821510026772,
+          0.6599155981414863,
+          -0.7229726812812838,
+          -0.9638234393632186,
+          0.627171753758912,
+          0.5210381846730313,
+          0.20559860561966162,
+          -0.22555629083630446,
+          0.5150626981660957,
+          -2.1873846800663026,
+          -0.9508358274815731,
+          0.19384854070271676,
+          -1.2453029957710513,
+          -1.0057772425155382,
+          0.180876501427078,
+          1.5064591529917126,
+          1.1555882297464828,
+          -0.5738527951252876,
+          -1.4471056720181377,
+          0.42176894695291484,
+          -0.32955048548626,
+          -1.6567551883363056,
+          0.45402919162423444,
+          -0.7635150158482231,
+          -0.3027572303342955,
+          0.16350002510453102,
+          -0.30762249059983227,
+          -0.9708423369774101,
+          0.16911516945610605,
+          1.2459722649640215,
+          1.0025702292866485,
+          -0.5150572734309941,
+          -0.13596800673816614,
+          -2.2658436609739763,
+          0.6316073378880958,
+          -0.18863869758554677,
+          -0.006350442969658526,
+          -0.3801745092536959,
+          0.19959406787441633,
+          0.26115919902356766,
+          -0.41132505575812545,
+          0.04182205320992321,
+          -0.2648069078869624,
+          -0.48323302546680136,
+          -0.13115694138696662,
+          0.2653584134736783,
+          1.0615730019881005,
+          0.45947560798297715,
+          2.2218246952281744,
+          0.3462265055034698,
+          -0.3393992743835827,
+          -2.1929842962550747,
+          0.5676403476317582,
+          0.10799590175432135,
+          1.5459368308831638,
+          0.1743003959848218,
+          0.1204672695943384,
+          -0.22412757765606367,
+          1.2086544318101502,
+          0.8677672472463253,
+          0.5985464541042723,
+          -0.10855349504336678,
+          -1.4427604200135493,
+          -0.13877412563754382,
+          1.5527020672646146,
+          0.7919317790517953,
+          0.6772314443675419,
+          -1.7941251881379503,
+          -1.6665556646520872,
+          -0.8124650066378881,
+          1.0773795289265735,
+          0.409717963135948,
+          -2.238025579311688,
+          -1.6091127805834906,
+          -1.1117380371150458,
+          -1.4178899349968244,
+          -0.8288259341155005,
+          2.683396689800686,
+          -2.7918894199901083,
+          0.6263360259206044,
+          0.20073786230643093,
+          0.3841015315334788,
+          0.5018802244326301,
+          2.3459447926411445,
+          0.1812959977006299,
+          -0.9672049708962913,
+          0.7837829143624456,
+          1.434814918361322,
+          -1.2521193629337022,
+          1.5214729894976178,
+          -1.1226727161746552,
+          0.6182716676700285,
+          1.684097047198588,
+          0.05065947585040279,
+          -0.30609111381953624,
+          -0.6646993633309133,
+          -0.5593785473492593,
+          0.5102239468933836,
+          -1.924617877052289,
+          0.8600616459982308,
+          2.0934345312765785,
+          0.8979781319054866,
+          1.304892424811682,
+          -1.2734136634022482,
+          -1.9333969709279506,
+          -1.7956686481902355,
+          -1.7629549784524439,
+          -0.8453243562375842,
+          0.4276549677836516,
+          -0.8052793550387632,
+          2.225305474287158,
+          1.6946816650512582,
+          0.1396534925191556,
+          -2.5229972336644804,
+          -1.612887994715039,
+          -2.152866556140534,
+          -0.9181666074900735,
+          -1.535997005526439,
+          1.8263823296027537,
+          -1.5043166381252395,
+          -0.36824748186160705,
+          -2.1826404241285395,
+          1.305783658920201,
+          -1.394257510408746,
+          -2.1237992811991364,
+          -0.5199323387463186,
+          1.7642276973633255,
+          -1.7504894666975777,
+          0.8967974489966852,
+          0.522474360409472,
+          -0.027019373063110027,
+          -1.6006845775041691,
+          1.2787259726944664,
+          -1.5241911471798335,
+          -1.6444810489113022,
+          1.085415790414659,
+          1.387471759031209,
+          -2.344229701550428,
+          2.3585494540791214,
+          0.04961244156008858,
+          -1.3022599485463087,
+          1.413481233502089,
+          0.25486214102630333,
+          -0.2619426124300499,
+          -1.9060366741076145,
+          -1.3919854938467937,
+          -1.8195787393231628,
+          0.4357213156747867,
+          -1.1566549345593653,
+          -1.42296392868644,
+          -1.1690891052046006,
+          1.236180194314113,
+          0.2037342135499455,
+          -1.1689649730189204,
+          -3.0160002562922195,
+          -0.2992467145030965,
+          2.1731488693594594,
+          -1.7825316772108717,
+          -1.9685238893515076,
+          0.30968888835808206,
+          -1.18976562811535,
+          1.0585443670330488,
+          0.6261954711008998,
+          1.0604801866760094,
+          0.007568717488486258,
+          2.156436648000088,
+          -0.735052546306027,
+          -1.3615579269637526,
+          -2.188613066095526,
+          0.37407453052370016,
+          0.125814826883394,
+          1.6608295765275525,
+          -0.512720075016566,
+          1.4969502323027177,
+          0.8240427159670948,
+          1.971534599296381,
+          2.5289278534968838,
+          -2.0391960511504945,
+          -2.3828110206855295,
+          -1.4829683026221538,
+          1.4411811527964142,
+          -1.4673319888133993,
+          -1.765466667068032,
+          0.737151050000447,
+          -0.7454732527378723,
+          -1.1693401857004848,
+          -0.7839501126743381,
+          1.4819709771923095,
+          -1.3648449814526569,
+          1.5994629768687372,
+          0.5052545362658107,
+          -0.3122643111726045,
+          -0.48392156093627375,
+          -0.21007571969524386,
+          -1.5151383400381302,
+          -2.537535519757246,
+          2.2578255477962856,
+          2.1307148658035433,
+          1.6562032045422475,
+          -0.8186972880105282,
+          -0.39014536664655214,
+          -1.8539214624812363,
+          0.7104811484833785,
+          -2.081981028896874,
+          2.5850386285445097,
+          1.3201659344303258,
+          0.4309685816276184,
+          -0.662633540756058,
+          -0.30747914772637625,
+          -0.28537805600045757,
+          -3.145786963088538,
+          -0.8834138126060298,
+          0.24191150198829833,
+          0.13069908743745337,
+          -0.5645011859670488,
+          0.8733958675968077,
+          -0.6255298573067989,
+          -0.7797095095059013,
+          0.5768766960812859,
+          -1.3756195834723177,
+          -0.0691050309793827,
+          -2.1597389289294378,
+          -0.861106335774575,
+          -2.9536689898584405,
+          -0.1935786327384653,
+          0.8286788814973071,
+          -0.3508758355104536,
+          0.26630330415637465,
+          -1.7363300980907175,
+          0.30432180482905385,
+          0.9086798363962894,
+          1.730197142680856,
+          -2.335948078205228,
+          -1.754983681883418,
+          -1.9824044741982394,
+          0.35984156386772126,
+          1.563214229046434,
+          -2.1082575129373247,
+          -1.9433077909147929,
+          0.1758565325678893,
+          0.023759097904990957,
+          0.9096268032590965,
+          -0.1472383748266604,
+          2.4517624728247,
+          -2.9951965827455496,
+          -1.7787295796498195,
+          -1.2703785206403573,
+          -1.044594135774546,
+          1.67249927811679,
+          0.6564565367738974,
+          -2.9212884753676036,
+          -0.8507164056927352,
+          0.9895863680268727,
+          1.855384181315002,
+          0.803421359111101,
+          -2.880959389765134,
+          -1.4402120325402858,
+          1.029585139213987,
+          0.8310052386102502,
+          -0.9579686528837472,
+          0.4111918490907633,
+          0.5662145825041836,
+          -1.7136569974099487,
+          -2.111942925272924,
+          -1.4975345158617164,
+          -0.020008340663830084,
+          1.1447250116608862,
+          1.1221332352458748,
+          1.4417873585506662,
+          -1.0458680046495246,
+          -1.4480031009189562,
+          0.9500930914737372,
+          -0.5633639689068997,
+          -1.4743666882398279,
+          -1.706781620362887,
+          -1.345569919116309,
+          -0.9336894193002118,
+          -1.531033032311038,
+          -1.5545530278548592,
+          0.5299532467708395,
+          -1.7317409312859935,
+          -1.7567709647058838,
+          0.8230290080269906,
+          -0.28613289542068154,
+          0.12478871211932407,
+          -0.8967188880921978,
+          2.1248396652178343,
+          2.4292682706559297,
+          2.1297307570676627,
+          -0.10116008489507698,
+          1.4031423571182695,
+          -0.4310923979011529,
+          -0.49198968821211814,
+          2.2368673215069976,
+          -1.0673890119438871,
+          1.78820446930211,
+          1.3413319231455572,
+          -3.01188403142578,
+          0.16962950187848871,
+          -0.6007959193455528,
+          -1.4850115721611863,
+          1.1363055949774392,
+          0.034441565343584814,
+          -0.6494590581298276,
+          1.856505518677621,
+          1.7308682371824478,
+          -0.7441567706592468,
+          -1.351082456343028,
+          1.9838627433338871,
+          0.5416886504694208,
+          1.6622386456478855,
+          -1.3468248808158942,
+          0.30421819913089826,
+          -0.6381081263761176,
+          -1.9790484222499658,
+          -2.8205421712429355,
+          -0.7744449490099221,
+          -1.4072182524915449,
+          -1.5799453864924846,
+          -1.8023646135276588,
+          -0.03327373161568249,
+          -0.5173042632023179,
+          -0.3036308023547187,
+          0.14476646641408364,
+          -1.85790324898805,
+          -1.2480204203252754,
+          2.631994779535393,
+          2.0184631976520664,
+          1.2633104106750606,
+          -1.9956821650712473,
+          1.8231875028243876,
+          1.8933197924797802,
+          -1.1884536086001534,
+          -2.2864625900164843,
+          -0.7953730592174542,
+          0.20977120496153914,
+          0.4453231720464696,
+          0.5554692947054023,
+          0.25335729842927157,
+          -1.913886521785534,
+          0.14634683279953653,
+          -2.3358380893842625,
+          -1.2161409180549543,
+          0.22164509029509546,
+          0.381830148101308,
+          0.19769882988060378,
+          0.3100665871396145,
+          0.05204415315093551,
+          -1.9655081157450491,
+          0.7070703886191003,
+          -0.844394377128568,
+          0.5162492904292771,
+          -0.7360411229871725,
+          1.4059545750679263,
+          1.6146833418085738,
+          0.34990050073475903,
+          1.4052515461126414,
+          1.4577083364212915,
+          1.9711345773382953,
+          1.6277705554015933,
+          1.6167526659244207,
+          -0.15755084980214454,
+          0.17624319839669916,
+          0.8099627246184149,
+          -2.0105606377610425,
+          -0.023242122427084518,
+          0.6224365042272584,
+          -1.848192138156601,
+          -2.2217610725357035,
+          1.4852041391472,
+          0.02233164168357506,
+          0.06184446204123516,
+          0.5943276340182434,
+          -0.08851723306055173,
+          1.1427803956982352,
+          -1.6450044415706864,
+          1.2434663898476235,
+          -0.6190558314875189,
+          0.20581099808274708,
+          0.9972140469152825,
+          -0.27894322196920446,
+          0.39138781078372725,
+          -1.981946708148291,
+          0.26080226293819414,
+          0.24327463648316566,
+          0.6105798812437561,
+          1.2469526631834178,
+          -1.0884110236558644,
+          2.620101910118596,
+          1.3461164069226548,
+          -1.867547548435479,
+          0.37804495721571924,
+          1.3451898533170639,
+          -0.17252491860861774,
+          0.14893001549396964,
+          0.5559826793036646,
+          -0.08096920397397546,
+          0.6335614786822458,
+          -0.14112161458704597,
+          0.25454732310285855,
+          1.8549473284285065,
+          1.6159807275690217,
+          1.652715286354982,
+          0.430294222209306,
+          1.0850306471546654,
+          0.2717790793281559,
+          -0.16178071600768162,
+          -1.3100184416079355,
+          0.08288352524358325,
+          2.002088651464114,
+          0.26267327617858166,
+          -1.3289185208989753,
+          -1.5166819404048524,
+          -1.3493773114130514,
+          1.6279975650552434,
+          1.648068633618013,
+          1.2860730697662595,
+          0.765701499798806,
+          -1.251465858708416,
+          1.1837949882814254,
+          1.412382869447803,
+          -0.9349488828494825,
+          1.43077007630124,
+          -0.06526131276769835,
+          0.6307759787814847,
+          -0.8693308542226048,
+          -2.8345192925121903,
+          -0.037384710207059274,
+          -0.03683360061991501,
+          1.260654487072926,
+          0.3722836926912376,
+          1.274202591567072,
+          0.7326691679208431,
+          -2.2312862221842176,
+          -0.10564680397826434,
+          1.5900909427346577,
+          -0.25567240474119984,
+          -1.857631790859629,
+          -1.820932486668359,
+          -0.7096066967079985,
+          -2.329461860540219,
+          -0.38535511564528785,
+          -1.0799730659932596,
+          2.3412631745412553,
+          1.083517281899239,
+          0.920354359828427,
+          1.2117863931773414,
+          1.2443421535501342,
+          -2.1785070290077746,
+          2.723750689496253,
+          2.0540226247864593,
+          -0.7668459223579516,
+          2.1220946288972646,
+          0.5595252048972467,
+          -0.2682989515529871,
+          -1.9949439098218227,
+          1.1681395981532636,
+          2.361076258317138,
+          1.602989050389912,
+          1.5526748594909734,
+          0.6358956868572705,
+          2.2108303793457647
          ],
          "y": [
-          0.41048286750348917,
-          1.369979213880747,
-          2.0452075820322504,
-          -0.42207532742582665,
-          0.51487005790013,
-          -0.19171913361734316,
-          0.8340382685270753,
-          0.7292135030209369,
-          -1.3775698299271024,
-          1.618289303310708,
-          0.5028659761300638,
-          1.3641700631424107,
-          -0.537503218234725,
-          1.3460344109108018,
-          1.7451868818938276,
-          0.9622582037913995,
-          0.7565189303670996,
-          1.4427533213091044,
-          1.4287279932940682,
-          1.6761016136499132,
-          -0.2222257195919537,
-          1.249736067863812,
-          0.7970316568521146,
-          -0.14425481626462022,
-          -0.6292090390800535,
-          1.9133910908021825,
-          2.520277988882833,
-          2.6857441919739613,
-          0.7370250859842957,
-          2.4215032852330935,
-          1.315309626770591,
-          0.5944126432523211,
-          0.6416055169719763,
-          1.6546419928245037,
-          0.9063786809293886,
-          2.1074992401181563,
-          0.6016613773112474,
-          2.330451671562317,
-          1.1377584051740373,
-          2.3173839179398215,
-          0.8300208137890694,
-          0.33344376876695414,
-          0.5827651647616855,
-          2.090979027619465,
-          0.5619213518964632,
-          1.3647117732084855,
-          0.5972427100935827,
-          2.031761904499625,
-          -0.08215813582799503,
-          2.4619928308683203,
-          0.7526490728510868,
-          0.24496600408950142,
-          -0.1111237664157756,
-          2.1259303306340565,
-          0.4865116362259464,
-          1.6287305482596373,
-          -0.664665985025513,
-          1.1499950899077391,
-          1.7929053718372017,
-          -1.6266847559986117,
-          -0.027313423050972396,
-          0.8487009602302926,
-          0.15403696737074835,
-          -0.071019562531488,
-          0.7823845772823329,
-          1.2463479529484989,
-          1.8349894273785858,
-          0.8903451508825406,
-          -0.4446412530684143,
-          1.0399066945197613,
-          2.0876069851989536,
-          0.24321963297913285,
-          0.5051193418206804,
-          0.6165219810761133,
-          1.9456890374971552,
-          -1.567585117933758,
-          0.7321605674316889,
-          0.6548627695234095,
-          1.8468537431799008,
-          1.0723755156148924,
-          1.6689644817181823,
-          1.4918144010879626,
-          1.7852553595715475,
-          2.7846356069497724,
-          0.9831986840222596,
-          1.7986482071911434,
-          1.2501477160353562,
-          0.24728075809693206,
-          1.8839831604696675,
-          -0.08320168318460142,
-          2.2040011300856515,
-          0.5527756403224762,
-          1.0397994541160163,
-          -0.20356689622883262,
-          -0.2581972900269258,
-          2.2403834346054214,
-          2.7308151930447426,
-          1.8372094867286812,
-          1.1105491195521309,
-          -0.29874168661049194,
-          2.0982358035234263,
-          0.08767448593364213,
-          0.6415538106933251,
-          0.43944265490563184,
-          1.2444544496055499,
-          0.6472992049963928,
-          1.7348113435104173,
-          0.141524108827358,
-          1.3354213204803695,
-          0.41130747530800793,
-          1.4924834847446222,
-          0.9228197238863036,
-          2.126457757129158,
-          0.5821764811906188,
-          1.4576716111935861,
-          0.5098090937713118,
-          2.1382814448895795,
-          1.9393198902324555,
-          2.055353067471044,
-          0.06800887471646044,
-          1.9379896002913397,
-          -0.13544419433712318,
-          0.6140668734844359,
-          1.0688746395137692,
-          -0.17834612480684564,
-          1.4485808792518473,
-          0.5069005390237061,
-          0.5667158263721457,
-          0.21781325599790113,
-          1.951056862481465,
-          2.685064345333184,
-          0.8528446947831395,
-          1.880214139624177,
-          -0.001137557885149576,
-          0.475107434363515,
-          0.9210733242254443,
-          0.29008086704793545,
-          0.2827360941556528,
-          2.67602145875993,
-          2.1644758470500056,
-          -0.6599055625051826,
-          1.1649568754090247,
-          2.184984447600316,
-          0.049958119734183404,
-          -0.4889222560705766,
-          -1.1767797009718484,
-          0.030720801655634733,
-          2.343008083736131,
-          1.7397592906972692,
-          -0.501836924629838,
-          0.05601498465211174,
-          0.39009729305079777,
-          1.1482029686278978,
-          1.2455281720561682,
-          -0.5941826797254006,
-          2.6424192459283224,
-          1.2419149843214985,
-          1.3226706307420115,
-          1.542774673912562,
-          1.062150906085727,
-          1.4760108000656256,
-          0.0028564532143137145,
-          0.3803762453107101,
-          0.29401483450108945,
-          1.1006755030989341,
-          0.009302490463767632,
-          0.19659054020756295,
-          0.18313849978504193,
-          2.4320786039045634,
-          0.43302360899572123,
-          0.681857367338573,
-          3.09924951925509,
-          2.1884749665035237,
-          0.9355778004228114,
-          0.400278154068619,
-          -1.1439668316219942,
-          1.8601507958725465,
-          1.7645995976355802,
-          1.157039170196768,
-          -0.10001664207466265,
-          3.5197076456453744,
-          0.8141943899002217,
-          1.870178174746771,
-          0.1636615003353723,
-          2.420271085267462,
-          2.5329782475310845,
-          1.7031563164196175,
-          2.459160994188691,
-          2.128002626201508,
-          1.125558522473578,
-          2.3122079936015316,
-          2.3653287482758216,
-          0.4862002472919651,
-          -0.5396256942059605,
-          0.06652884157495864,
-          0.8781543886889648,
-          2.4120963746775894,
-          -0.5843275778483972,
-          0.7088362295736588,
-          -0.23186868813308026,
-          2.6630422595961174,
-          0.5790664354162341,
-          1.8566651198694064,
-          1.676837654111007,
-          -0.4264831566211651,
-          -0.21554321205105698,
-          1.1156207904214335,
-          0.35727840611728634,
-          2.15423480489976,
-          1.085339775794894,
-          1.8549446510561496,
-          1.4300891561717521,
-          0.9529414592256135,
-          2.3125491943402263,
-          1.6741440051199892,
-          0.9305339483874253,
-          -0.00013892123995673522,
-          1.8636055068862878,
-          0.8702091707953066,
-          1.3218351900227705,
-          1.4407567544387643,
-          2.4571018262274054,
-          -0.13905666613971035,
-          2.4769220222146995,
-          -0.356545052286539,
-          0.3782343124111677,
-          -0.07836416379486533,
-          -0.308778304485956,
-          0.1658409532834192,
-          0.3816031470393474,
-          0.1893424443013274,
-          0.3654786765660586,
-          0.32908562231522887,
-          -0.018037671922815024,
-          2.519019572530981,
-          1.0629450965419935,
-          0.33831012903368063,
-          -0.44812477527686845,
-          0.23352022709143072,
-          -0.25929555188003817,
-          1.4917798896006909,
-          1.8513421221731372,
-          2.2304843563583523,
-          1.0923814589989698,
-          0.6328564289527687,
-          1.504154550950278,
-          -0.23725498287462776,
-          2.208323285947233,
-          1.0413268318770033,
-          1.8756563632282364,
-          1.917366649477848,
-          2.0751207489817567,
-          -0.41269115249263133,
-          0.19662129283370988,
-          -0.1669178013714432,
-          -0.5322217872403114,
-          1.1518475496415705,
-          1.7750894117456406,
-          1.2439861879976468,
-          -0.3350162456480239,
-          0.24776546347255746,
-          1.0701858524227446,
-          1.5374620867252018,
-          1.358741388108303,
-          0.3915629586088579,
-          1.93680567713306,
-          3.706687940975501,
-          1.8017851843284858,
-          -0.6064589010404138,
-          0.2703421177058798,
-          0.6311168970629761,
-          0.2623737347291455,
-          1.4121143007306018,
-          0.3762839650836073,
-          3.0515094640855813,
-          0.522593768402184,
-          1.9510213361781545,
-          1.444874916677123,
-          1.3796100564144804,
-          2.399097479263414,
-          0.8758716251822958,
-          2.8619148781501726,
-          1.0187961919854918,
-          -0.13687118163441547,
-          0.47304485643500804,
-          1.64323541855256,
-          1.2245994767082595,
-          0.6071561092327927,
-          0.9038557120755105,
-          -0.4861622746066161,
-          -0.0380485814246605,
-          -0.2590027269681512,
-          1.5933365996313635,
-          1.4567707777004593,
-          1.1135214964779416,
-          1.3929073590143917,
-          1.367529047561412,
-          0.42606536692579977,
-          1.9559380601783107,
-          0.6960773523846274,
-          0.30549683861519006,
-          0.3914081944307215,
-          3.150310793331211,
-          0.227026565833379,
-          0.3717015079822469,
-          1.1858778836222663,
-          2.1041751565436755,
-          1.7068962909185121,
-          1.111694130106675,
-          1.4517002009759392,
-          -1.0435383538962357,
-          0.11939354021835069,
-          1.1660188478745723,
-          1.7298430351149832,
-          1.8467223387708436,
-          1.5967937773308143,
-          0.519640327508645,
-          1.668248123941353,
-          0.28604708784044663,
-          1.652080237354908,
-          0.3374828536932596,
-          2.7750370211274653,
-          1.7184902973171294,
-          0.1274887233943638,
-          0.7022643511187688,
-          0.15895156960170553,
-          1.1473188590313954,
-          1.5340629563169517,
-          1.1602592866416654,
-          1.153854228873499,
-          1.7814289194655282,
-          1.6771499741332931,
-          1.8881573217434418
+          0.38139957152747855,
+          -0.1368818060960698,
+          0.5254353853471031,
+          0.2724372358284521,
+          -0.5421571366624871,
+          -0.009001171691843432,
+          -0.031080646016454234,
+          -0.00714668715657939,
+          0.36396140579018305,
+          -0.952227173283164,
+          1.0875851640277043,
+          -0.60408459230156,
+          1.07265396234021,
+          0.3170473342592891,
+          -0.5636430819897061,
+          -0.034592827088742194,
+          1.0451617303247425,
+          0.6768187554265597,
+          -0.06950515809738829,
+          0.5757238443895873,
+          -0.22355742106313953,
+          0.1932937681797074,
+          -1.224472802651723,
+          -1.034729799468132,
+          0.10363883501803194,
+          -1.5444756166628608,
+          -0.8320658435363724,
+          -1.0355853850438896,
+          0.28634394897802096,
+          -1.7998676480962839,
+          -0.4653798096814183,
+          0.9874592379898127,
+          -0.5776015866912975,
+          0.5096047709404521,
+          -0.30868657683456874,
+          -0.5376370031005868,
+          -0.20189094050853862,
+          0.5102601220086379,
+          0.8194902078548937,
+          1.0085592754668093,
+          1.0524372022473139,
+          0.728355851568599,
+          -0.4796716252643382,
+          -2.061877201666369,
+          0.1225710670626521,
+          1.6730340219787128,
+          0.8073698177435115,
+          0.2352018461707023,
+          1.265995179034145,
+          0.5016755203171902,
+          0.8879038970738188,
+          1.415624905562728,
+          -0.4954829843679829,
+          1.7677135427744448,
+          -0.06491669720205066,
+          0.13914158212953004,
+          -0.46732092838845896,
+          0.6402413635039695,
+          -0.49675359198649655,
+          1.8747473082635733,
+          0.010773521296269541,
+          2.057997591208131,
+          0.030580980691694674,
+          -2.380854206897169,
+          0.13682777801253537,
+          0.7483609126458672,
+          0.07069609359217884,
+          2.351157308550583,
+          0.0455115557617655,
+          1.1887418840905275,
+          0.2105328010148335,
+          -0.25834792400257595,
+          -0.5348517827521306,
+          0.4971415200624095,
+          0.11264498813704538,
+          -2.196206803973503,
+          -0.6351395044960261,
+          2.4383057167595954,
+          0.6684781017647574,
+          0.013350850517179958,
+          -1.034396746800853,
+          1.8376786508696046,
+          0.428259359674603,
+          -1.3770850630643752,
+          -0.49703027122270826,
+          -1.6784799075698251,
+          -0.6018299965251105,
+          -0.3668028013132197,
+          -0.10956353391176683,
+          -1.9025402885588063,
+          0.9099600740730598,
+          -0.2681029099873366,
+          -0.08740239699648789,
+          0.6517937183729818,
+          0.2782852627824355,
+          1.7183324378248392,
+          0.01241382774586443,
+          0.5994037858333487,
+          0.14439300565544563,
+          -0.09176585883235439,
+          1.3270575020568218,
+          1.9404765001369446,
+          0.28840825300349604,
+          0.9735942551033899,
+          0.5634670688846845,
+          1.1248030022718392,
+          -0.9071570708450831,
+          0.08037021212309378,
+          -0.226424507774883,
+          0.9393497642719606,
+          -0.2120216656223991,
+          -2.630494943019857,
+          -0.41327750701908744,
+          -1.3326802341172126,
+          0.3393624904512818,
+          2.1498220777546435,
+          -0.6439692343650947,
+          0.9071821140197662,
+          0.5890496296834942,
+          -1.7363812926620676,
+          -0.26918972708278643,
+          -0.7246956152079502,
+          -0.2756578915050074,
+          -0.731115825304735,
+          -0.44373282258120134,
+          0.7685823421979829,
+          -0.5654328170434144,
+          -0.02262890195769714,
+          0.9624536508648842,
+          -0.7144652027458566,
+          -0.03247685167148275,
+          1.9059619506778367,
+          0.0005886999091628698,
+          1.8954724667933216,
+          -0.16610431673601755,
+          -1.4909260022431667,
+          -0.49337325201526727,
+          -2.224570738545101,
+          0.26561251865293894,
+          -0.420421720835849,
+          1.3191637635851594,
+          1.0884457885075594,
+          0.44815245548031574,
+          -0.6194713195403423,
+          0.46948524546272424,
+          0.7225400779775876,
+          -0.12516206603415453,
+          1.2056784540305632,
+          -0.2685018539783037,
+          -1.129731221716473,
+          1.8743046450783551,
+          -0.8720861493248729,
+          -0.45286475515552216,
+          0.2516859870175957,
+          -0.137093524089568,
+          -0.1839276231806173,
+          1.8770157784678876,
+          0.22622073772162393,
+          0.3866993292856248,
+          -2.230296713808308,
+          -0.470452631621191,
+          1.427082700067049,
+          -1.1196786603225881,
+          0.2797259410127121,
+          0.9676026860162198,
+          -1.520228437356648,
+          0.3888639250423398,
+          -0.69685810150911,
+          -1.4813120492157825,
+          0.9089372128810785,
+          -0.837476544666413,
+          -1.6293490530630481,
+          0.9051239724656798,
+          0.8967519329634233,
+          0.20103103487984303,
+          -0.31624299986986293,
+          0.10000764926826623,
+          0.5819291542971096,
+          -0.3679627922410202,
+          -0.8461299382171632,
+          0.03577583430100052,
+          -0.43311467147166194,
+          -0.3895013081031599,
+          -0.19055114080326085,
+          -0.928585503890402,
+          -0.10951906329083758,
+          0.14136321717545247,
+          0.6864995326902986,
+          -0.07061262807440032,
+          0.1318249931191118,
+          -0.2239942959293608,
+          0.009975830695804837,
+          0.17624598952429046,
+          -0.337268350625844,
+          0.014285617017484434,
+          -1.4111786563754967,
+          -0.6733494162725959,
+          0.15437006640267945,
+          0.8071368096389548,
+          -0.4767050471174574,
+          -0.2283368119412908,
+          -0.7883198133584621,
+          -0.1093095100951168,
+          -0.7167604628519603,
+          2.1922191041513934,
+          0.08548947575706202,
+          0.17857994987498033,
+          -1.4240049543506146,
+          0.6740614920479944,
+          -0.8133776276528298,
+          1.180252187815042,
+          -0.612252698921283,
+          -1.3800201936622722,
+          -0.2277020636070531,
+          0.9442792682626336,
+          0.2822160240793815,
+          -0.35270971610188145,
+          0.12666416434189937,
+          -0.6551311901917972,
+          -0.9858641970370225,
+          0.15173867339989272,
+          1.0742236147421125,
+          -0.9607545280610709,
+          0.6184730659122917,
+          1.3849745820717074,
+          -1.8566585819120776,
+          0.3743889202905102,
+          -0.4332370635390537,
+          -1.7440288379423856,
+          0.33967217641598346,
+          -1.2034468747467437,
+          0.7652658528817581,
+          -0.03412530333336121,
+          0.03967133308481759,
+          -0.31137939199766534,
+          -0.474558398998765,
+          1.2958222370970784,
+          0.3329039290598858,
+          0.6197797709511131,
+          0.32692350943588855,
+          1.4053082985851917,
+          -0.46107891026759124,
+          -0.5896454778682525,
+          -2.734446595770858,
+          -0.7857397870203926,
+          1.2629325085110177,
+          2.1154757354306892,
+          0.3180584338036289,
+          -0.6712300400733078,
+          0.9928137449270948,
+          0.6849980720040636,
+          0.6234676193638934,
+          -0.72806030696538,
+          0.39624117606686876,
+          0.5021463936719779,
+          0.9087329112480003,
+          0.8663428795266652,
+          0.04335562350733334,
+          -0.16464425964894447,
+          -0.7647803716525049,
+          -0.12429878278394835,
+          -1.1965540417608127,
+          0.32641527495431344,
+          -1.2042178632392984,
+          -0.6592072222661266,
+          -1.2481811514633172,
+          1.1663947173166516,
+          -1.8320064498631217,
+          -1.2516101042348313,
+          1.6842202252981702,
+          -1.1510719491411812,
+          -0.593830529900336,
+          -1.0145908517728093,
+          -2.3319597834343404,
+          -2.423037574216818,
+          -1.7768545786520022,
+          -1.8836581062221476,
+          -0.4876245380319349,
+          0.8977829812414241,
+          -0.689854619226826,
+          -1.6386027818398363,
+          -1.4624980599487354,
+          -0.3092479491788329,
+          -0.6658604190114429,
+          -1.6194864139458223,
+          -1.1858265612595542,
+          1.3612486388100973,
+          0.8688450780421579,
+          1.5372395985686245,
+          -0.29149114474719795,
+          -1.8081919443216579,
+          2.025557598077856,
+          -0.062030004383957664,
+          0.5838272942940773,
+          2.459435854381648,
+          -2.114689433678073,
+          0.7309076332448021,
+          -0.49826881338831364,
+          -0.6380288380912772,
+          1.9865666843503147,
+          -1.5526130128103441,
+          0.5379949067747318,
+          -0.6635274745295611,
+          -1.999440728509746,
+          0.7561754127043369,
+          0.8922117790655363,
+          -1.4549778925097623,
+          -0.7624436247102727,
+          1.053972668570143,
+          0.6550641646870211,
+          -0.47049399894233385,
+          0.6724941123206752,
+          1.8016502299758528,
+          -0.16203797294328948,
+          1.2310505233090734,
+          -1.4855503770433514,
+          0.08768696689559394,
+          0.9102171940792224,
+          -0.41102388295561904,
+          0.2834453015525038,
+          0.6187781834237354,
+          0.2097143302830058,
+          0.8982583665259803,
+          -1.6450801935011214,
+          1.1869411287251088,
+          -0.9446504678293203,
+          -0.773445768124312,
+          -1.6914451091074727,
+          0.7960689909558398,
+          2.054239571549969,
+          -2.13084117526071,
+          -0.29846810718904065,
+          -1.8431605253207657,
+          0.29832820079640937,
+          1.008008061102247,
+          0.024247179429223206,
+          0.046536839829739184,
+          1.6152650745155719,
+          0.09999450486248848,
+          -1.401744605735237,
+          -0.865205049543075,
+          0.9454333989578112,
+          -0.930827337604811,
+          0.31493029185062976,
+          1.2612966203219549,
+          1.5939891304113278,
+          1.223119455848915,
+          0.5299798937509439,
+          0.6414113437754059,
+          -0.484225602825074,
+          -0.5138147567024679,
+          2.4143426281022347,
+          1.663348797680476,
+          -2.1723758694142346,
+          0.37640392081604,
+          0.7351801689094423,
+          2.0881396812199546,
+          -1.414241820265967,
+          -1.5463444837544513,
+          -1.102203091297828,
+          1.3058173973545997,
+          1.779305244490429,
+          0.25425869297149006,
+          -0.6967460722199723,
+          -1.0097955927603417,
+          1.7150022248562413,
+          -1.3373323257989165,
+          -1.2689878818336122,
+          -0.11725511544701499,
+          1.3892653865786797,
+          -1.3013970573020064,
+          -2.102772290037464,
+          -1.3876432931744302,
+          2.441423918946873,
+          -0.6258892640359611,
+          0.17764080012146394,
+          -1.5466499107087233,
+          -0.4353842009761665,
+          0.1946941275873327,
+          1.0321228175762311,
+          -0.21897270179970188,
+          0.23215137033708153,
+          -0.9464328906997075,
+          0.8201357390142134,
+          -0.993872259403578,
+          1.058555505549635,
+          1.5327209083449582,
+          -0.022910032935136132,
+          0.983276174733566,
+          0.16754864804307124,
+          1.3948328608573548,
+          1.5923580347294244,
+          -0.5922099808462856,
+          1.1192575364750255,
+          -2.1482611204490745,
+          -1.6199700964094466,
+          2.032294570675316,
+          -2.205247370093956,
+          -1.15976052768628,
+          -1.9274137958724855,
+          1.6206842804959438,
+          -0.4347816891332411,
+          -1.0240451558688128,
+          1.9687408437358913,
+          -1.6660687703801818,
+          -1.570944109172155,
+          -0.4493722658139537,
+          -1.481817435332841,
+          0.3869224824426962,
+          -0.020533044709368155,
+          -0.18525229771659282,
+          0.10915694532639675,
+          -1.707124079530275,
+          -0.15272724672073518,
+          0.9246482052394767,
+          1.2825753241432216,
+          -0.08406572540954442,
+          2.5398365582873015,
+          0.12817133790529486,
+          -0.8529937239988,
+          -0.16217666096712668,
+          -0.7686249513406768,
+          -1.378089319693918,
+          0.3386286955675544,
+          2.4824754719629523,
+          -0.3972009255342342,
+          -2.4359017529900275,
+          -0.6467207733131752,
+          -2.2486258379946173,
+          -1.6455413617830807,
+          -2.0672239289593803,
+          2.105311165599756,
+          -1.2624873995598558,
+          1.848511879553251,
+          -1.7847598455681073,
+          0.1253206035742252,
+          -0.8343216118171977,
+          2.1227810383247943,
+          0.3892838513109147,
+          -0.8185510081184574,
+          0.015421663402746602,
+          0.7593995064981051,
+          2.6585179917881407,
+          1.8776313419925763,
+          1.3124536192356202,
+          0.6973840009925846,
+          0.3900902540588095,
+          1.0663605446704703,
+          0.30265297775752253,
+          -1.0257506506109746,
+          0.6440539438205819,
+          1.4858976606336425,
+          -0.8697721534165149,
+          -1.5283783756626168,
+          -0.856419115405751,
+          -1.9491750487412034,
+          -0.3814349603009082,
+          -1.2340115258276143,
+          1.1239141488813498,
+          0.2629507080068059,
+          1.2206281918819402,
+          1.5308345991087609,
+          0.6840142758137348,
+          -0.9171887358049554,
+          -2.0017725504043646,
+          1.4346685356513258,
+          -1.505442341660206,
+          0.7000207903732534,
+          0.41993711398912703,
+          2.382579874822282,
+          1.1636408815447992,
+          -0.17061027900625345,
+          0.9591282278934888,
+          0.4397107361555013,
+          -0.9082950889608863,
+          -1.5350968286317714,
+          0.016118977251256317,
+          0.32764621841340263,
+          -1.624921260860858,
+          -2.1253368210423536,
+          1.2795570426785081,
+          0.21993478305871983,
+          -2.1477491600460517,
+          1.673243059508886,
+          0.4430151413123005,
+          -1.0159312576601174,
+          -1.3524942372039122,
+          -0.9837992038407619,
+          -3.051694091737324,
+          1.0549961670270513,
+          -1.6272887614091307,
+          0.7858198400795797,
+          1.8084518735955049,
+          1.440644308108642,
+          0.5452157099543821,
+          -0.414289619007284,
+          1.4224920268461863,
+          -0.63225218889538,
+          -1.1065172206665672,
+          0.2751096565785279,
+          -0.7575406721151988,
+          0.2443817834794329,
+          -2.154968941684519,
+          2.123929021041526,
+          0.8832491080478975,
+          -2.950666734087143,
+          1.2457470876164636,
+          0.8681227920079984,
+          -0.6439618365138043,
+          0.2049724104246174,
+          1.6004206939215269,
+          -1.965741967239349,
+          -0.6138714192858016,
+          2.260578791212188,
+          0.7901738326745092,
+          0.5575943084102409,
+          -0.795542654946449,
+          1.549767177325161,
+          -0.12059010519542607,
+          1.1632940027320955,
+          -0.17149382011410214,
+          -1.7281076125662498,
+          1.3207526679771224,
+          1.0899459146232686,
+          -0.07140653721091027,
+          -1.2168486253252657,
+          1.4633794582070279,
+          2.2787916256015968,
+          -0.48778872150674224,
+          1.4164563077557377,
+          1.1845630776402192,
+          -0.7256103745838757,
+          2.0106225136453935,
+          1.356776707551039,
+          -0.3825133290125374,
+          0.9167549273300205,
+          0.9433070214495917,
+          -0.7231697037298663,
+          -0.7019000498326501,
+          0.09296537387806267,
+          -0.14426516739922537,
+          1.684677650700739,
+          2.256026027418863,
+          -0.36626192150740666,
+          -1.5629907536396455,
+          -1.0263817640128563,
+          1.752442623521612,
+          2.2289610569668463,
+          -0.20180245821638854,
+          -1.3523912161687728,
+          -0.7785745997280255,
+          -2.9409353294199607,
+          1.3687818824209406,
+          0.562053284655064,
+          -1.1008541443210407,
+          0.6580586368232202,
+          -2.4073548071593334,
+          0.21702462530493172,
+          0.9574560562214354,
+          1.5698482224169403,
+          1.0603847382574356,
+          0.46226150821542034,
+          -1.6113881911919221,
+          0.13074936206306143,
+          1.3769580934200067,
+          1.5734557666298497,
+          1.952855481600769,
+          2.1634487152503104,
+          -1.224021951786363,
+          1.4572870241738027,
+          0.8594789822653572,
+          -0.2010892922674337,
+          0.5456112209730023,
+          -0.1887416261692718,
+          -1.4685657986885996,
+          -0.6464508261507513,
+          2.4258276502742127,
+          1.3757522604703305,
+          1.349436608501498,
+          -0.3349449224823565,
+          0.1381188021045271,
+          -1.2551166195522332,
+          -0.1981203781337343,
+          -1.270581320781238,
+          1.5397995891093508,
+          -2.2529122048251344,
+          0.22995499190475766,
+          1.1703546402036888,
+          2.380047064172851,
+          -2.473927369961402,
+          0.20320614939727139,
+          -1.3639120012241184,
+          -0.06700949822984159,
+          1.3983384530900702,
+          -2.250488464713575,
+          1.4290983422339887,
+          1.5023089552825137,
+          1.6349850500166556,
+          1.57995192505491,
+          -1.405431184174676,
+          0.35601362693019056,
+          1.2241847288772154,
+          1.3929051602689282,
+          -2.2114557224899904,
+          1.6626908294656784,
+          0.658071208961353,
+          -0.3484249735318879,
+          2.044894393754657,
+          0.2471108518970496,
+          1.6793482538421292,
+          -1.1830268291825567,
+          -0.06422497481365089,
+          0.32232716704965375,
+          -0.5669050202698407,
+          1.0215351262009271,
+          0.8042122826158769,
+          -1.6584839212660023,
+          0.14228904723926858,
+          0.08618058893447074,
+          0.9902687339010154,
+          0.3781447735336628,
+          -2.0367380566966236,
+          1.0128885730415094,
+          1.8806659082300508,
+          -1.111032759938666,
+          -1.4220667232874278,
+          -1.572206364503812,
+          2.204040168719046,
+          -0.7032990114418548,
+          1.9108748300827714,
+          1.2920481041665695,
+          0.36322840787200067,
+          2.1813695215009,
+          -0.3600749608217485,
+          1.5979085797097141,
+          -0.33077701358773404,
+          -2.8358509562998977,
+          -1.4887102992474637,
+          1.832306580485643,
+          1.215320537219126,
+          0.6044187838141938,
+          -0.031867717964604976,
+          -1.3987295330748744,
+          -2.1042759210596222,
+          -0.5360635432141957,
+          2.4628774243092226,
+          -1.1806347321340394,
+          1.4173026447332313,
+          -1.0830530901379514,
+          -1.467565636786915,
+          -0.8110142957743595,
+          1.0783857339159755,
+          0.2605135128707983,
+          1.3798866055391192,
+          -0.5936716395531093,
+          -0.18540613967960062,
+          1.19704230032408,
+          -1.225924723794115,
+          -2.2496938161614195,
+          1.1433570323600568,
+          2.6658686077397125,
+          -0.12637171238154513,
+          -0.5035045348054519,
+          -1.5679287375374538,
+          2.534454424146265,
+          -1.2733341942418084
          ],
          "z": [
-          0.23451877955791434,
-          0.19598700204575348,
-          2.2148840301830344,
-          1.5858172974674507,
-          0.6699472647559992,
-          0.7914935690462497,
-          0.6292490161923526,
-          2.3427769644230034,
-          1.7002219112822892,
-          1.4166590605485936,
-          0.27253519354572053,
-          0.0008130970383418701,
-          0.9444094768007286,
-          1.5542544760265211,
-          2.483258884856591,
-          1.3859567362586327,
-          0.18429395190065578,
-          1.0419180402386254,
-          0.7956927913998342,
-          0.7845232838356602,
-          1.2745139874932834,
-          0.5690561995147726,
-          1.1349395301632499,
-          0.3212958678883886,
-          1.344000106305036,
-          1.2122996176604766,
-          0.016623277051320162,
-          2.2327283420682846,
-          1.487313163053316,
-          1.9987265700830985,
-          1.2668261710803872,
-          0.2011484559827037,
-          -0.894834367582211,
-          0.6033038200347931,
-          1.9078606377044913,
-          2.305645561840047,
-          3.0850296762606915,
-          0.851117203979117,
-          0.5586224967053708,
-          3.2067827246151004,
-          -0.17228249690295283,
-          1.8741698718964994,
-          2.3707918338057774,
-          2.662777289179469,
-          1.7206105486789331,
-          1.2832699501465985,
-          1.2557842523263654,
-          1.510678883166039,
-          -0.17869113179625473,
-          0.7532627194465251,
-          0.27740321859852235,
-          2.8966040685739283,
-          0.9474458380798065,
-          0.5715715652444233,
-          2.3427476033167656,
-          0.812402999908388,
-          1.296251931889965,
-          0.9061543837766335,
-          2.290425324616862,
-          0.837043689194159,
-          0.8610272684448933,
-          1.2566852308914787,
-          -0.7417641123833023,
-          0.857714307554852,
-          0.19619681990291427,
-          0.29181383864041754,
-          1.8498203653189065,
-          2.533622845732923,
-          1.7749361071084744,
-          -0.14279069499640085,
-          1.762063873862598,
-          2.4754541310422944,
-          -0.2843694083091741,
-          1.8454065567820555,
-          -0.028038659092863627,
-          -0.41982531345756957,
-          -1.5536310156485982,
-          0.7639658098439591,
-          0.4839734682782717,
-          1.7947740384603357,
-          0.2814572932209597,
-          1.7733998160676112,
-          -0.14930457739016179,
-          1.4027181892698217,
-          1.6421077589986135,
-          1.9219366012853558,
-          1.92398267912015,
-          2.4761148745657646,
-          2.609343375609877,
-          0.6808819103020967,
-          0.5430059614435407,
-          0.9773558698636258,
-          0.33261594563987185,
-          2.5909413585541055,
-          1.3327052943741828,
-          -0.031997891365239006,
-          0.3336827834553743,
-          1.7237994164444208,
-          -0.477772107753317,
-          2.7222673909870254,
-          -1.3708853733064381,
-          0.5375008468000306,
-          0.8000700768815832,
-          2.694175758191056,
-          2.0388397119820936,
-          1.828740453685575,
-          -0.0946920440273713,
-          0.48460620188457915,
-          0.5112229550865932,
-          1.3957115324169533,
-          0.5293268550178198,
-          1.5428637203582198,
-          1.1405564032067497,
-          1.5919119062445883,
-          2.165157123894522,
-          1.908090298262139,
-          1.3094161851420503,
-          1.3644260771353478,
-          -0.471211744279153,
-          2.211265496493013,
-          1.9895993295904706,
-          1.6424744465726187,
-          0.7631821569631416,
-          1.2898111955666192,
-          -0.09601204787105355,
-          2.5576792718222423,
-          0.6931682556114053,
-          1.9308732890656914,
-          1.1563251439554436,
-          1.9988621603282146,
-          -1.0199261739422751,
-          1.0309480882678301,
-          3.2461880135582653,
-          2.6003972988892943,
-          1.904149594851582,
-          0.6255995520010933,
-          2.0920554114388015,
-          0.8858297322395192,
-          0.9700453538734701,
-          0.035342411104943405,
-          1.0888229622787884,
-          2.1320968808346894,
-          2.817310819725607,
-          -0.5251056410143606,
-          0.07126368446721532,
-          1.394111930370858,
-          1.8439892521191967,
-          1.87411408181786,
-          2.485216584147117,
-          1.039864207491586,
-          0.010340712488731363,
-          -0.44561020077656255,
-          0.2972729345727071,
-          1.558558153281572,
-          1.030268671108619,
-          1.0436401324657378,
-          -0.56410176347928,
-          2.1055931452894843,
-          1.140293425700544,
-          0.8506865781283248,
-          -0.30682134116114845,
-          0.9351907464388698,
-          1.7524362008174794,
-          2.1687689170111204,
-          1.6160257087476715,
-          0.45542706817620837,
-          1.5036366361778613,
-          -1.147132099966032,
-          0.6996818574345273,
-          1.954164514190924,
-          0.9483020606247683,
-          0.29377664593192343,
-          0.34565812894489656,
-          -0.35996821367227416,
-          0.8515773528408002,
-          1.102382198347653,
-          0.34136791904496955,
-          -0.5748799874627346,
-          1.0712313974590144,
-          0.5607822351781873,
-          1.134907116338128,
-          0.9393145667980793,
-          0.4801747778264611,
-          1.829223585637112,
-          1.1870689379766,
-          1.8719934654268633,
-          0.6322644167240337,
-          0.7926432313059953,
-          2.160248131829619,
-          0.30152624178685383,
-          0.11589085897007867,
-          0.796701755423195,
-          2.3727496662488736,
-          -0.1946834680165519,
-          0.7447938655603754,
-          1.2652570235804022,
-          0.5309293820561816,
-          2.4242834142738574,
-          2.055054548942551,
-          1.5792986450796365,
-          1.539723679738307,
-          0.9295264261225442,
-          1.1940210045057993,
-          -0.08110934782411294,
-          -1.0678183764773013,
-          -1.5430931894747788,
-          0.0341283657449033,
-          1.4705714594002974,
-          0.8767580611488662,
-          2.40943442405091,
-          1.5344685350685112,
-          0.19617535175725476,
-          1.1832419104587184,
-          1.3441337048280655,
-          1.7162624964685291,
-          2.3597392550370184,
-          2.0833921435833522,
-          1.5248649917251287,
-          2.0237023365900986,
-          0.21864230438305376,
-          1.9063432353971521,
-          -0.12390112492288452,
-          0.8047054202038013,
-          0.4350484733447796,
-          1.2043198839883198,
-          0.9043869765880796,
-          1.4826650260413066,
-          1.984950103005851,
-          1.5425042296645155,
-          1.2068825297567904,
-          0.06094685629802932,
-          1.645183496480902,
-          2.415910640492677,
-          1.318159327409885,
-          1.0111680095063278,
-          0.6247048302865794,
-          -0.14057848948855445,
-          0.7961165310201455,
-          -0.6970961432894554,
-          1.4010583076936327,
-          0.539812951102121,
-          0.6827716117785245,
-          -0.33833062682046355,
-          0.6003035091640092,
-          2.122969371585736,
-          1.4766135070198145,
-          0.8485839320135734,
-          1.2447846196034997,
-          1.554967164998613,
-          0.1339932910173739,
-          -0.5170730369056327,
-          0.1833869701790134,
-          1.1247638628773853,
-          1.6273984856213408,
-          1.1980786170315993,
-          0.7302593933883423,
-          0.3139384734563212,
-          2.511322799203203,
-          1.1919220050361132,
-          0.9145811671669335,
-          2.0264193771346006,
-          -0.013793740969723078,
-          -0.5482616682308352,
-          2.1574219459938258,
-          1.406542138266695,
-          2.2199431992328313,
-          2.0625720057333625,
-          -0.006308005593086863,
-          0.5116922132885082,
-          -0.027994073217439075,
-          0.9704924013809287,
-          0.29893646902081294,
-          2.3964657004557335,
-          0.6815831462816963,
-          2.3066170692950476,
-          -0.37439924847412853,
-          1.4625479227977496,
-          1.6421210038765839,
-          0.16381288546167505,
-          1.6208299452898662,
-          -0.208192458358039,
-          0.7870213434497887,
-          0.14446733009438406,
-          1.7471865901250934,
-          1.277479241337466,
-          1.3898651580657173,
-          2.383424078555975,
-          2.107272972003804,
-          1.7541879610324034,
-          1.492719346567025,
-          0.671890711639759,
-          0.9583925046296061,
-          1.2618572072457253,
-          -2.3359015494690962,
-          1.2410789764058132,
-          0.9758285736417913,
-          -0.32486130385023904,
-          1.0092900683066945,
-          2.9435840873775634,
-          0.09034797416696161,
-          1.2288492080959075,
-          0.9533752347853308,
-          -0.004704860706795877,
-          2.097075306412628,
-          0.8024713957087851,
-          1.6361804886840359,
-          0.4866033192239385,
-          2.267273646318382,
-          -0.09792636306704638,
-          0.7766015836579091,
-          0.4694196443527907,
-          1.764187616135564,
-          1.9964626154129834,
-          0.8206719721269684,
-          1.9846557981376103,
-          2.457437949370436,
-          -0.5941763252676036,
-          2.0941668356151313,
-          1.5451408795105408,
-          1.83922514466879,
-          0.917856954427135,
-          1.0317839048706399,
-          1.2909134015923316,
-          0.35549229812432814,
-          1.7261275213503737,
-          2.6828883889478314,
-          0.0646027400177065,
-          0.9174096745834879,
-          0.630756108384243,
-          0.3087875622088828,
-          0.5748070467271157,
-          0.7975568258166643,
-          1.8760457766719285
+          -0.3255848834866313,
+          0.02460866034353304,
+          -0.25721011330255156,
+          0.21215714079121528,
+          -0.01756342904910383,
+          0.616776809182989,
+          -1.1001304033306685,
+          -0.0034082801855338436,
+          -0.15098711395100317,
+          -0.12671845479906574,
+          0.1707741613739296,
+          -0.035915936705467964,
+          -0.24761588397471007,
+          -0.7781264731569333,
+          -0.9186135801801024,
+          0.8333987315922892,
+          0.9151600833487806,
+          -0.29816342117194644,
+          -0.07941622493053521,
+          0.630911238760226,
+          -1.0535977959236158,
+          0.318270694189058,
+          -0.8278598777092242,
+          -1.46324665361829,
+          0.11478061783241886,
+          -0.601966469590018,
+          -0.9879281895227918,
+          1.178098054007906,
+          -1.1934705416043898,
+          0.5242632807768661,
+          0.982424118726375,
+          -1.7518996090162857,
+          1.0201239838229452,
+          -0.9300847870562938,
+          1.0407461125140949,
+          0.45236558946182187,
+          0.1240311069664557,
+          1.4856674718123302,
+          -0.6613233300592478,
+          0.1536191107180311,
+          0.8881623278512332,
+          -1.5239224723378628,
+          0.5981049959843465,
+          -1.2333489942625455,
+          -0.6761668567433545,
+          1.5439707863565941,
+          0.8100357314139252,
+          2.1666737696529714,
+          -0.7277899957740132,
+          1.5674746321533237,
+          -0.2931049229075643,
+          0.36137801259613705,
+          0.1420675758947649,
+          0.12458625659373132,
+          -0.2250017083459636,
+          -0.9578701097780049,
+          0.6717301798493805,
+          0.16867817390574602,
+          -0.27313331630049725,
+          -0.6124603779302866,
+          0.8985339066464516,
+          0.11528015033155144,
+          -0.33410972057556865,
+          0.3002253624247842,
+          0.11582174776134777,
+          -0.11462517350095248,
+          0.6840453386898306,
+          -0.6272564946289568,
+          0.9229183889833915,
+          1.3972808277336697,
+          0.13168712627870635,
+          1.2362775844467466,
+          0.025570679786231877,
+          1.8829237554497686,
+          -0.15647616104437306,
+          0.7079313558369209,
+          -0.011475813624462497,
+          0.3495935143345822,
+          -0.06592897157819755,
+          -1.3852092977279251,
+          0.09329369106083239,
+          -1.3773320109044684,
+          0.6881620969357045,
+          -0.11180509569390787,
+          -1.062553827138937,
+          -0.822437494874744,
+          -0.2422354323327491,
+          1.3598896516593828,
+          -0.19286487475464642,
+          -0.5706518168534039,
+          -1.0045298908223586,
+          2.576956685834514,
+          0.8525968729047819,
+          1.895910847984188,
+          -0.27662989105378943,
+          0.6253063498566314,
+          1.4324998576349823,
+          -2.035685580502705,
+          -0.7327523609008704,
+          2.0169855922941022,
+          0.2859014676786682,
+          -0.11181629561874178,
+          0.7086289524051272,
+          0.16398398945500037,
+          0.26916940365316416,
+          1.0238939550845447,
+          -0.8527412515242075,
+          -1.0465773330918098,
+          0.25053011078372384,
+          -0.31946244480817076,
+          0.4935936020842533,
+          0.09885424330609939,
+          -0.7193750756676606,
+          -1.0733143200340463,
+          -0.51335701818207,
+          0.1071614120541321,
+          0.8564362901241607,
+          2.1332775520289546,
+          -0.46822910631992914,
+          0.9523132308958233,
+          0.1664321217095445,
+          1.228842786131392,
+          -0.9239625758076151,
+          1.4898841633666315,
+          -0.6655327336350206,
+          0.05920137078521251,
+          0.5131393417202735,
+          0.8565780730780337,
+          -0.6088186164340215,
+          -0.38354276642704177,
+          -0.19049085087195108,
+          -0.3644326211476751,
+          0.8557269920586976,
+          0.24342238113412576,
+          -0.29103742738504684,
+          0.03244109531772605,
+          0.579881974868748,
+          0.4923237617010938,
+          0.8499304148822793,
+          -1.3527761672123353,
+          0.035997217858394506,
+          -1.5777720580198822,
+          -0.8344825521430888,
+          -0.33156825180676586,
+          0.4498532412648393,
+          -0.06716841023029313,
+          0.45938811175735045,
+          -2.6346673059629975,
+          0.041185143587342175,
+          -0.04344143773519218,
+          -0.825508276558616,
+          0.44954697492100876,
+          -0.8004913131545065,
+          -1.4898412623974897,
+          1.1052304334379637,
+          0.4489201029169051,
+          -0.33442593984920016,
+          -0.3942064287641757,
+          0.3508374577954646,
+          -0.2798220763078555,
+          -0.6585214858493188,
+          -0.05750718885574774,
+          0.7536577685520585,
+          -0.2207879875791853,
+          -0.8159778197943099,
+          -1.639173813659054,
+          -0.41305385183411936,
+          -1.1494296803610968,
+          -0.5501397017972866,
+          0.10565759149563698,
+          -0.5659871909440048,
+          0.2513912709053566,
+          -0.545487812903205,
+          0.5517852645417073,
+          2.330299172015449,
+          -0.10663692097436081,
+          1.1590697302313429,
+          0.6684359337990987,
+          1.2437933999890727,
+          0.260998045166469,
+          -1.411207187071552,
+          1.276158224716768,
+          -0.18114908685101525,
+          -1.7847102497570293,
+          0.07576595593667597,
+          1.3121860805681063,
+          -2.8205391172924252,
+          0.8730136536949468,
+          0.7764293774460895,
+          2.6580529124877974,
+          -0.028454033333646683,
+          -0.7048917469013829,
+          1.389662459584434,
+          0.10789186422096651,
+          -0.025211771981631128,
+          -1.4245020079608797,
+          -0.46244234621337055,
+          -1.364542336112046,
+          0.4938122049099954,
+          0.6359154255947441,
+          0.5622822578036284,
+          -1.7514886569470003,
+          0.037485199676636605,
+          1.2681709587269776,
+          0.053716630151464086,
+          1.2526979045005164,
+          1.0360864906091194,
+          1.140676135977698,
+          0.8489780473291553,
+          -0.01054749287487481,
+          2.484180764944931,
+          0.06843399290796187,
+          0.25527418228401233,
+          -1.7005004069450156,
+          0.5224423342315556,
+          -0.23121577729109147,
+          -1.462053393548604,
+          0.04104356280539635,
+          -0.0964161740392957,
+          1.1622321896381334,
+          -0.17176256210867444,
+          0.09100852199569387,
+          -0.6889136383168569,
+          -0.12352873600609839,
+          -0.06985112183544656,
+          1.6317601809497249,
+          0.25844930378751013,
+          -1.1742473378273464,
+          0.49308507725677114,
+          -1.1877490814354394,
+          0.07063166614879916,
+          1.6442341337153827,
+          1.4180738576184986,
+          0.1813870432080136,
+          1.3237452196862132,
+          0.20082313859790782,
+          -0.663332440437881,
+          -1.9150601166272754,
+          0.9486113336239471,
+          0.29013232474566314,
+          -1.4958049292146451,
+          -0.6099596406246319,
+          -0.6046458843448153,
+          -1.4476196334588673,
+          -0.08406452628980203,
+          -0.3955027645804827,
+          -1.2579414006940783,
+          -1.082059413682114,
+          -0.5452231775370965,
+          -1.777054304228861,
+          0.2624057581542379,
+          0.5020711817901605,
+          0.9579715405417312,
+          -0.16936083999271684,
+          -0.7550296512152369,
+          0.21481681343698716,
+          -0.187429539488182,
+          0.8910123602885663,
+          -0.8322727797457585,
+          -0.8375069880887361,
+          -1.2368385941189612,
+          -0.9703021326816242,
+          0.40655278143768087,
+          -0.11241562505153199,
+          2.0770360809642243,
+          -2.0120599484058066,
+          1.0550149802125812,
+          0.4194726655255623,
+          -0.47059377586879503,
+          -0.6668505543755231,
+          -1.2086740494249322,
+          -2.1865011743582654,
+          -0.7095695533324015,
+          -2.0377675155440107,
+          -1.852072428373978,
+          2.145008008707614,
+          0.2466423186721153,
+          0.6858987133530188,
+          0.9594498234834997,
+          0.7986922096772381,
+          -1.3257070525555432,
+          -1.2146758589450914,
+          1.0552291282557902,
+          1.6452621282351176,
+          0.35486599245933925,
+          1.475575131895099,
+          1.3479993619653345,
+          0.12289576845867067,
+          -1.8756714050746441,
+          1.9072556573455917,
+          -0.03548079220145464,
+          0.6123616778249589,
+          -1.9223867179244367,
+          0.5835108403002798,
+          0.40090082177998587,
+          -1.290959782599135,
+          0.06199690332193132,
+          2.001277393308874,
+          1.368851359752252,
+          -0.4526282101204357,
+          -2.668094811949232,
+          -1.7479281880502922,
+          0.22143764754215184,
+          2.095291268119331,
+          -1.5281102775819335,
+          -1.008043960588919,
+          -0.3996113529487636,
+          -1.7214663245298611,
+          0.6108571068090265,
+          -0.3102791339643011,
+          -0.6101702309109499,
+          1.389102636802206,
+          1.7133177323774926,
+          1.837496710707359,
+          -2.123105124457924,
+          -0.3195709916979725,
+          2.5197204115658414,
+          0.26209414795803276,
+          -0.3956634404181522,
+          -1.4981485029598653,
+          -1.6110800796270948,
+          -1.188582413800023,
+          2.47611583105723,
+          -0.7944619672379489,
+          1.3200685807387018,
+          0.26231204734725555,
+          -1.18130665170747,
+          0.33196848560204806,
+          0.29153205922792375,
+          0.5970938001330213,
+          1.575704731350984,
+          -1.0307763993272432,
+          -1.4376696823823614,
+          2.41164914274673,
+          -1.1473806886818692,
+          1.0853919103505478,
+          -2.5705506453823905,
+          0.13007469431025678,
+          -0.05982379498001818,
+          -1.083753507494012,
+          0.14069835808380865,
+          -1.2603476986684385,
+          -1.4532485612429775,
+          -1.5520325865731435,
+          0.40893219820194865,
+          0.2888223903747029,
+          1.622789860934698,
+          1.3822974311276792,
+          -0.34359757482968584,
+          -1.1844848428779498,
+          -2.2444002012010857,
+          -0.7189645807479024,
+          -0.8922105834525504,
+          -0.7935407288869814,
+          1.6795354785206642,
+          -0.9835462597165697,
+          -0.22631429700541933,
+          0.8666061639622656,
+          -0.15731072742263005,
+          -1.2257378549854483,
+          0.010632531399545203,
+          0.39847120838141376,
+          -0.28986837051185665,
+          1.6586917341443603,
+          1.1158845501843406,
+          0.1530554643587672,
+          -3.0991034557179233,
+          -1.589810737967455,
+          1.6749573720982942,
+          -0.22021272830827157,
+          -0.2319912150642039,
+          2.142581455203042,
+          1.2479844538725875,
+          -0.5130619739450876,
+          -1.502288802920714,
+          1.5687616560364266,
+          -0.6065760991865251,
+          0.5487616847760309,
+          3.1583869840645944,
+          -0.7948753503560964,
+          0.19760661490691114,
+          -0.10619240919964072,
+          -1.3510926901827325,
+          -0.44762811317021095,
+          0.027677273859593766,
+          -0.3848962114822647,
+          0.2250465251094125,
+          2.014023153352324,
+          2.272881001911196,
+          1.4939325564926875,
+          0.549730552545228,
+          -1.6984854223300994,
+          -2.657486542412343,
+          -1.6521754612014783,
+          0.5552102014307884,
+          -1.8339553666693915,
+          -0.27699143606734156,
+          -1.2498395421463457,
+          1.124992663525331,
+          1.8263595297902535,
+          1.8277143985831361,
+          1.1882845593585112,
+          0.5624240669835918,
+          -0.7691425684338838,
+          -0.02702407511160812,
+          -0.39349461957245496,
+          -2.794826734429504,
+          0.4077328021700481,
+          0.9790238833393933,
+          -1.0781003992660267,
+          -2.4091736757067186,
+          3.460343909917442,
+          -1.4794724483137458,
+          1.5908291278906943,
+          -1.3067324862593077,
+          -0.6085462182943961,
+          1.9427281651357469,
+          -1.2333674791027585,
+          1.8181529821238651,
+          0.9618474954012901,
+          -1.6236865681476256,
+          -1.7570167271738968,
+          0.6266373034075966,
+          0.9680648189082464,
+          0.4258527384724856,
+          0.5042929940167885,
+          0.6545860289594695,
+          -1.371425619327465,
+          0.5863183891770505,
+          -1.1081224048866916,
+          2.1126168784390864,
+          -0.5994205278304758,
+          -0.7133016018129895,
+          0.8939525348948969,
+          0.0995984859036626,
+          0.2867241758767067,
+          0.0883204979965584,
+          -0.641331199965715,
+          1.0893431172250863,
+          -1.301664143001175,
+          1.1611420237278083,
+          -0.33261220676264464,
+          -0.673148174199451,
+          -0.34152850781455857,
+          3.201487647859877,
+          1.8783757803837613,
+          2.6159710588078005,
+          0.622769860562803,
+          0.4547248353898825,
+          0.3386193589874078,
+          -2.4480364516924005,
+          0.6202528627412639,
+          -2.7577195609814056,
+          0.09792101867525607,
+          1.2731165461626919,
+          -1.041033781407843,
+          -1.1966187134178832,
+          -0.7329741789870828,
+          1.5221479738335408,
+          -1.147357591609048,
+          1.7359034353943013,
+          1.1941387679470488,
+          1.4886101377625744,
+          1.7225421244968653,
+          -1.700971033667388,
+          -1.1609628035532185,
+          -1.604626304708119,
+          1.6874081979150948,
+          -1.3896733276920088,
+          0.009713755235684197,
+          2.1080727094893463,
+          1.113642307635351,
+          -0.20292590545273315,
+          1.897283556341226,
+          1.0413839362048087,
+          -1.006113923108601,
+          -2.2242420572562724,
+          0.16443232817538714,
+          -1.119689301876908,
+          -0.5323919483979379,
+          -1.8553971990706033,
+          0.05601451663194755,
+          1.1163815563501303,
+          -0.32810651293956805,
+          -0.4448063291606464,
+          -0.6917730879875446,
+          -0.26328509794356014,
+          -1.479941406291532,
+          -1.5222453137357146,
+          -1.6388769684900106,
+          0.5468773256631153,
+          1.743359586038148,
+          0.08746008808615709,
+          0.5170995264107977,
+          -1.1253995784773905,
+          1.8318594022336887,
+          -2.017146375610753,
+          -2.1542016026790654,
+          -1.4184337408828358,
+          0.38718459127149696,
+          -1.1115434279102379,
+          0.3058822058333688,
+          -0.9582796597937888,
+          0.6956310953670407,
+          1.2704032540051549,
+          0.711921155392626,
+          -1.5353303498252475,
+          2.0874112118860046,
+          0.9166206012998555,
+          -1.4499789501230862,
+          0.9642837185251789,
+          -0.9136208084520843,
+          0.9864157198059411,
+          0.15873117627940417,
+          2.4274428457232977,
+          -0.7094327574694749,
+          -1.9733314283858394,
+          -0.14172222835041365,
+          1.7419042712694859,
+          1.182954893510363,
+          1.3475302622276588,
+          0.1887966325645444,
+          -0.3604643280842154,
+          -0.2521813595337348,
+          -1.814579459538151,
+          1.0163591793297835,
+          -1.4550214624213627,
+          -1.44220395116031,
+          -0.5898242544721892,
+          0.9124616985261941,
+          -0.7028058162022303,
+          0.05957652278209448,
+          0.2794121833555091,
+          -0.8984255488224272,
+          1.6101649636343758,
+          0.16597008559085424,
+          -0.922614519997443,
+          0.217638317829035,
+          -1.155573058068131,
+          1.6588874058326293,
+          2.9985945357061663,
+          -0.5347284830960095,
+          0.9087626362492107,
+          2.3435520924847335,
+          -1.1368417937920472,
+          -1.4447727824191956,
+          0.19613270731690705,
+          -0.9176749287994355,
+          1.4845568817358317,
+          1.2649822895183815,
+          -1.7126654453091588,
+          0.7898267849290332,
+          -1.728240989091742,
+          1.882500877561496,
+          2.1167607721630017,
+          -2.3356684564700716,
+          0.9230692675522303,
+          -2.4258083059174647,
+          2.049084002803128,
+          -0.759548247654144,
+          1.4656062978187152,
+          -1.2856611198210868,
+          1.1343347082716386,
+          0.7236776444748416,
+          -1.5151978148659992,
+          1.2354888518418519,
+          -0.3403273200330459,
+          0.06796807458053984,
+          -1.8823630882395266,
+          -1.842314057641085,
+          1.0935695818158433,
+          -0.5959779554787505,
+          0.436268966192123,
+          -1.6548918929237932,
+          2.132758054136255,
+          1.5367267824923294,
+          2.1673913410561685,
+          0.6101584170910328,
+          1.1938838876630147,
+          -0.892606327478849,
+          -1.1749135343968524,
+          -0.5703974611912773,
+          -1.632193521900137,
+          -1.8023042901428896,
+          -0.5947917695373629,
+          0.7650369851350141,
+          0.9353354244638458,
+          1.0184634275459967,
+          0.5423391186402139,
+          -1.9080128300511165,
+          -0.839954397271974,
+          -1.3825875717380476,
+          1.2590643745541492,
+          1.1432073015412654,
+          0.7286234443924419,
+          -0.3825706484668096,
+          -0.6678988240661469,
+          0.9615025026368886,
+          -2.990124294225579,
+          0.10285019119977613,
+          -2.369434355170138,
+          1.7109681391192662,
+          -1.0414569133610196,
+          0.48102804301065527,
+          -1.76707169320187,
+          1.5209682761817875,
+          0.6437663168787879,
+          2.3508761354517222,
+          -1.629803767209825,
+          -0.15607634319978475,
+          -1.7612725347142897,
+          -2.6154437847924545,
+          1.9755284632338617,
+          0.944965338027824,
+          -1.3969102162293374,
+          1.0284821596823275,
+          -0.4163855169351085,
+          -1.265306908656208,
+          1.0484741245394553,
+          -1.372423377588776,
+          0.9690191114357768,
+          0.4509215299092526,
+          -0.999296178860169,
+          0.8696231359164095,
+          2.0960991792962687,
+          -2.0414250225028048,
+          2.776645411563586,
+          -0.4486771120940557,
+          -1.504303481220846,
+          0.09483481540282333,
+          0.1200185570166435,
+          -2.1301808695446987,
+          1.1017321152610982,
+          0.9965758916047807,
+          -0.4313118074913877,
+          2.6765836425057206,
+          1.2415991667829098,
+          0.11788220183224478,
+          1.2421698176837963,
+          1.236258171663729,
+          2.016576293066961,
+          0.9285509220730273,
+          0.3995503942240236,
+          -0.12672534355354245,
+          1.382303700669314,
+          -1.6223215547142273,
+          -0.4095307971097184,
+          -0.7307220564971425,
+          0.5274258947403967,
+          0.6547610396138386,
+          1.0527430033671161,
+          -2.450822791112722,
+          -0.007399593411905737,
+          2.0196797849401857,
+          -0.057597780656111076,
+          2.651998899130683,
+          -2.192750060584908,
+          1.1419141829292205,
+          1.1424584714266224,
+          -0.42883929876551674,
+          1.1317217861568427,
+          1.8139724690248504,
+          1.5405077312234794,
+          -1.7882596167628437,
+          0.969688771185321,
+          0.5211194329381564
          ]
         },
         {
@@ -18820,1345 +25413,2677 @@
          "scene": "scene2",
          "showlegend": false,
          "text": [
-          "Complementary_64_2",
-          "example_4",
-          "redundancy_32_2",
-          "mutual_error_2_2",
-          "Complementary_79_2",
-          "Complementary_8_2",
-          "Complementary_7_2",
-          "redundancy_54_2",
-          "Complementary_29_2",
-          "example_34",
-          "example_35",
-          "mutual_error_25_2",
-          "redundancy_6_2",
-          "example_47",
-          "Complementary_5_2",
-          "example_53",
-          "mutual_error_11_2",
-          "redundancy_20_2",
-          "redundancy_31_2",
-          "example_71",
-          "example_80",
-          "Complementary_85_2",
-          "redundancy_15_2",
-          "example_91",
-          "redundancy_37_2",
-          "redundancy_50_2",
-          "example_99",
-          "example_102",
-          "redundancy_14_2",
-          "Complementary_34_2",
-          "example_106",
-          "Complementary_26_2",
-          "example_119",
-          "example_121",
-          "example_122",
-          "example_123",
-          "Complementary_21_2",
-          "Complementary_86_2",
-          "example_130",
-          "example_134",
-          "example_138",
-          "example_143",
-          "Complementary_39_2",
-          "Complementary_95_2",
-          "example_150",
-          "mutual_error_7_2",
-          "Complementary_27_2",
-          "redundancy_59_2",
-          "redundancy_9_2",
-          "Complementary_93_2",
-          "example_166",
-          "example_170",
-          "example_183",
-          "redundancy_55_2",
-          "example_187",
-          "redundancy_1_2",
-          "example_191",
-          "redundancy_16_2",
-          "Complementary_30_2",
-          "Complementary_80_2",
-          "Complementary_25_2",
-          "Complementary_73_2",
-          "redundancy_41_2",
-          "example_207",
-          "example_214",
-          "example_216",
-          "example_217",
-          "Complementary_67_2",
-          "Complementary_51_2",
-          "example_230",
-          "Complementary_75_2",
-          "Complementary_69_2",
-          "redundancy_46_2",
-          "redundancy_7_2",
-          "Complementary_96_2",
-          "example_243",
-          "Complementary_59_2",
-          "example_251",
-          "example_252",
-          "example_253",
-          "example_258",
-          "redundancy_3_2",
-          "redundancy_28_2",
-          "example_269",
-          "Complementary_6_2",
-          "Complementary_84_2",
-          "example_276",
-          "Complementary_66_2",
-          "example_282",
-          "example_288",
-          "Complementary_88_2",
-          "example_295",
-          "mutual_error_31_2",
-          "Complementary_87_2",
-          "example_308",
-          "example_313",
-          "example_315",
-          "example_317",
-          "example_325",
-          "example_330",
-          "example_337",
-          "example_339",
-          "example_343",
-          "Complementary_52_2",
-          "example_347",
-          "mutual_error_23_2",
-          "example_358",
-          "example_366",
-          "redundancy_62_2",
-          "mutual_error_29_2",
-          "redundancy_22_2",
-          "Complementary_20_2",
-          "example_379",
-          "redundancy_52_2",
-          "Complementary_56_2",
-          "mutual_error_28_2",
-          "example_387",
-          "example_389",
-          "redundancy_40_2",
-          "mutual_error_32_2",
-          "example_397",
-          "Complementary_40_2",
-          "mutual_error_10_2",
-          "example_402",
-          "Complementary_24_2",
-          "example_406",
-          "Complementary_58_2",
-          "example_413",
-          "redundancy_63_2",
-          "Complementary_2_2",
-          "example_418",
-          "example_419",
-          "Complementary_32_2",
-          "mutual_error_18_2",
-          "example_435",
-          "redundancy_53_2",
-          "redundancy_0_2",
-          "example_452",
-          "example_454",
-          "example_455",
-          "example_458",
-          "example_459",
-          "redundancy_64_2",
-          "Complementary_28_2",
-          "mutual_error_22_2",
-          "Complementary_9_2",
-          "example_471",
-          "example_472",
-          "redundancy_30_2",
-          "Complementary_48_2",
-          "Complementary_60_2",
-          "example_484",
-          "mutual_error_24_2",
-          "Complementary_12_2",
-          "redundancy_18_2",
-          "redundancy_60_2",
-          "example_496",
-          "example_498",
-          "redundancy_36_2",
-          "example_504",
-          "example_505",
-          "redundancy_57_2",
-          "example_509",
-          "Complementary_14_2",
-          "example_520",
-          "example_524",
-          "Complementary_82_2",
-          "mutual_error_20_2",
-          "Complementary_61_2",
-          "example_553",
-          "Complementary_18_2",
-          "Complementary_33_2",
-          "Complementary_4_2",
-          "example_561",
-          "redundancy_65_2",
-          "Complementary_68_2",
-          "example_564",
-          "example_565",
-          "Complementary_37_2",
-          "redundancy_38_2",
-          "redundancy_39_2",
-          "redundancy_47_2",
-          "example_577",
-          "mutual_error_13_2",
-          "mutual_error_26_2",
-          "Complementary_74_2",
-          "example_607",
-          "example_608",
-          "example_609",
-          "Complementary_0_2",
-          "example_612",
-          "example_614",
-          "example_619",
-          "Complementary_16_2",
-          "redundancy_49_2",
-          "example_627",
-          "example_632",
-          "Complementary_57_2",
-          "Complementary_78_2",
-          "Complementary_19_2",
-          "Complementary_47_2",
-          "Complementary_53_2",
-          "Complementary_98_2",
-          "Complementary_10_2",
-          "Complementary_81_2",
-          "example_648",
-          "Complementary_17_2",
-          "Complementary_72_2",
-          "example_658",
-          "mutual_error_8_2",
-          "redundancy_21_2",
-          "example_663",
-          "Complementary_1_2",
-          "example_672",
-          "example_674",
-          "example_676",
-          "redundancy_24_2",
-          "example_683",
-          "example_686",
-          "example_690",
-          "Complementary_62_2",
-          "example_698",
-          "example_699",
-          "redundancy_56_2",
-          "example_701",
-          "example_702",
-          "example_708",
-          "redundancy_11_2",
-          "Complementary_97_2",
-          "Complementary_42_2",
-          "example_724",
-          "example_725",
-          "example_726",
-          "redundancy_35_2",
-          "Complementary_49_2",
-          "mutual_error_21_2",
-          "example_735",
-          "example_738",
-          "Complementary_44_2",
-          "mutual_error_17_2",
-          "example_745",
-          "redundancy_5_2",
-          "redundancy_58_2",
-          "example_749",
-          "Complementary_22_2",
-          "mutual_error_19_2",
-          "example_761",
-          "example_763",
-          "Complementary_36_2",
-          "example_766",
-          "example_767",
-          "Complementary_71_2",
-          "Complementary_15_2",
-          "example_771",
-          "example_772",
-          "Complementary_76_2",
-          "example_776",
-          "mutual_error_27_2",
-          "Complementary_38_2",
-          "example_783",
-          "example_784",
-          "mutual_error_15_2",
-          "Complementary_77_2",
-          "example_791",
-          "example_794",
-          "redundancy_19_2",
-          "Complementary_70_2",
-          "Complementary_13_2",
-          "Complementary_11_2",
-          "Complementary_63_2",
-          "redundancy_61_2",
-          "Complementary_45_2",
-          "example_815",
-          "example_818",
-          "redundancy_26_2",
-          "mutual_error_9_2",
-          "Complementary_35_2",
-          "example_838",
-          "mutual_error_14_2",
-          "Complementary_83_2",
-          "example_841",
-          "mutual_error_6_2",
-          "mutual_error_4_2",
-          "redundancy_17_2",
-          "Complementary_54_2",
-          "Complementary_90_2",
-          "redundancy_2_2",
-          "Complementary_31_2",
-          "redundancy_4_2",
-          "Complementary_23_2",
-          "Complementary_50_2",
-          "Complementary_46_2",
-          "example_871",
-          "example_873",
-          "redundancy_51_2",
-          "example_875",
-          "example_877",
-          "Complementary_89_2",
-          "example_879",
-          "Complementary_41_2",
-          "example_888",
-          "example_889",
-          "example_890",
-          "Complementary_3_2",
-          "Complementary_65_2",
-          "redundancy_33_2",
-          "example_905",
-          "Complementary_43_2",
-          "example_914",
-          "example_918",
-          "example_921",
-          "example_927",
-          "example_928",
-          "example_930",
-          "mutual_error_5_2",
-          "example_942",
-          "redundancy_45_2",
-          "example_944",
-          "example_952",
-          "example_955",
-          "mutual_error_30_2",
-          "Complementary_55_2",
-          "example_961",
-          "example_971",
-          "Complementary_94_2",
-          "Complementary_92_2",
-          "redundancy_29_2",
-          "mutual_error_12_2",
-          "redundancy_10_2",
-          "redundancy_34_2",
-          "mutual_error_16_2",
-          "Complementary_91_2",
-          "example_995"
+          "1332_l_2_m-0_0.18-1_0.04-2_0.09-3_0.22",
+          "1333_l_2_m-0_0.77-1_0.05-2_0.68-3_0.39",
+          "1334_l_2_m-0_0.15-1_0.04-2_0.0-3_0.79",
+          "1335_l_2_m-0_0.99-1_0.14-2_0.05-3_0.18",
+          "1336_l_2_m-0_0.78-1_0.05-2_0.09-3_0.61",
+          "1337_l_2_m-0_0.26-1_0.07-2_0.04-3_0.11",
+          "1338_l_2_c_0_1_3-0_0.4-1_0.0-2_0.19-3_1.04",
+          "1339_l_2_c_0_2_3-0_1.71-1_0.96-2_0.32-3_1.33",
+          "1340_l_2_c_1_2_3-0_0.84-1_0.58-2_0.1-3_0.1",
+          "1341_l_2_c_0_1_3-0_0.05-1_0.29-2_0.02-3_0.17",
+          "1342_l_2_c_0_2_3-0_1.46-1_0.66-2_0.97-3_0.4",
+          "1343_l_2_c_1_2_3-0_1.61-1_0.16-2_0.36-3_0.05",
+          "1344_l_2_c_0_1_3-0_0.27-1_0.42-2_0.04-3_0.02",
+          "1345_l_2_c_0_2_3-0_0.95-1_0.44-2_0.06-3_0.27",
+          "1346_l_2_c_1_2_3-0_0.56-1_0.07-2_0.28-3_0.52",
+          "1347_l_2_c_0_1_3-0_0.2-1_0.0-2_0.8-3_1.41",
+          "1348_l_2_c_0_2_3-0_0.44-1_1.31-2_0.22-3_0.36",
+          "1349_l_2_c_1_2_3-0_1.56-1_0.16-2_0.25-3_0.42",
+          "1350_l_2_c_0_1_3-0_0.49-1_0.18-2_0.28-3_0.01",
+          "1351_l_2_c_0_2_3-0_0.58-1_0.38-2_1.02-3_0.65",
+          "1352_l_2_c_1_2_3-0_1.38-1_0.01-2_0.0-3_0.31",
+          "1353_l_2_c_0_1_3-0_0.04-1_0.15-2_0.03-3_0.13",
+          "1354_l_2_c_0_2_3-0_0.64-1_1.22-2_0.58-3_0.31",
+          "1355_l_2_c_1_2_3-0_0.84-1_0.01-2_0.11-3_1.01",
+          "1356_l_2_c_0_1_3-0_1.21-1_0.02-2_1.51-3_0.4",
+          "1357_l_2_c_0_2_3-0_0.13-1_0.23-2_0.18-3_0.01",
+          "1358_l_2_c_1_2_3-0_0.33-1_0.2-2_0.06-3_1.12",
+          "1359_l_2_c_0_1_3-0_0.42-1_0.15-2_1.31-3_0.3",
+          "1360_l_2_c_0_2_3-0_0.87-1_2.48-2_0.05-3_0.11",
+          "1361_l_2_c_1_2_3-0_0.48-1_0.54-2_0.01-3_1.25",
+          "1362_l_2_c_0_1_3-0_0.83-1_0.72-2_0.27-3_0.92",
+          "1363_l_2_c_0_2_3-0_1.13-1_2.54-2_0.13-3_0.12",
+          "1364_l_2_c_1_2_3-0_0.03-1_0.29-2_0.25-3_0.37",
+          "1365_l_2_c_0_1_3-0_0.47-1_0.49-2_1.18-3_1.36",
+          "1366_l_2_c_0_2_3-0_0.21-1_0.43-2_0.63-3_0.18",
+          "1367_l_2_c_1_2_3-0_0.37-1_0.27-2_0.61-3_0.1",
+          "1368_l_2_c_0_1_3-0_0.09-1_0.72-2_2.0-3_0.14",
+          "1369_l_2_c_0_2_3-0_0.3-1_1.66-2_0.6-3_0.97",
+          "1370_l_2_c_1_2_3-0_0.71-1_0.02-2_0.48-3_0.5",
+          "1371_l_2_c_0_1_2-0_0.21-1_0.08-2_0.83-3_0.12",
+          "1372_l_2_c_0_1_3-0_0.86-1_0.7-2_1.01-3_0.13",
+          "1373_l_2_c_0_2_3-0_0.14-1_1.54-2_0.05-3_0.79",
+          "1374_l_2_c_1_2_3-0_1.08-1_0.11-2_0.01-3_0.2",
+          "1375_l_2_c_0_1_2-0_1.53-1_0.46-2_0.34-3_0.94",
+          "1376_l_2_c_0_1_3-0_1.53-1_0.25-2_0.7-3_0.5",
+          "1377_l_2_c_0_2_3-0_0.15-1_0.08-2_0.0-3_0.5",
+          "1378_l_2_c_1_2_3-0_1.7-1_0.69-2_0.34-3_0.14",
+          "1379_l_2_c_0_1_2-0_0.52-1_1.04-2_0.09-3_0.6",
+          "1380_l_2_c_0_1_3-0_0.04-1_0.22-2_0.48-3_0.61",
+          "1381_l_2_c_0_2_3-0_0.1-1_0.58-2_0.24-3_0.56",
+          "1382_l_2_c_1_2_3-0_0.62-1_0.04-2_0.37-3_0.09",
+          "1383_l_2_c_0_1_2-0_0.24-1_0.34-2_0.15-3_0.36",
+          "1384_l_2_c_0_1_3-0_0.01-1_0.38-2_1.0-3_1.15",
+          "1385_l_2_c_0_2_3-0_0.12-1_0.16-2_0.0-3_0.21",
+          "1386_l_2_c_1_2_3-0_1.01-1_0.6-2_0.01-3_0.56",
+          "1387_l_2_c_0_1_2-0_0.31-1_0.01-2_0.43-3_1.32",
+          "1388_l_2_c_0_1_3-0_0.06-1_0.23-2_1.64-3_1.16",
+          "1389_l_2_c_0_2_3-0_0.1-1_0.25-2_0.15-3_0.74",
+          "1390_l_2_c_1_2_3-0_0.88-1_0.22-2_0.64-3_0.34",
+          "1391_l_2_c_0_1_2-0_0.69-1_0.57-2_0.86-3_0.98",
+          "1392_l_2_c_0_1_3-0_0.26-1_0.25-2_0.9-3_0.82",
+          "1393_l_2_c_0_2_3-0_0.55-1_0.73-2_0.28-3_0.46",
+          "1394_l_2_c_1_2_3-0_0.79-1_0.14-2_1.21-3_0.3",
+          "1395_l_2_c_0_1_2-0_1.25-1_0.0-2_0.23-3_1.01",
+          "1396_l_2_c_0_1_3-0_1.23-1_0.68-2_0.04-3_0.66",
+          "1397_l_2_c_0_2_3-0_0.26-1_0.02-2_0.16-3_0.12",
+          "1398_l_2_c_1_2_3-0_0.65-1_0.78-2_0.37-3_0.0",
+          "1399_l_2_c_0_1_2-0_0.35-1_0.07-2_0.01-3_0.85",
+          "1400_l_2_c_0_1_3-0_0.3-1_0.03-2_0.18-3_0.59",
+          "1401_l_2_c_0_2_3-0_0.31-1_0.5-2_0.27-3_0.12",
+          "1402_l_2_c_1_2_3-0_1.06-1_0.05-2_0.12-3_0.82",
+          "1403_l_2_c_0_1_2-0_1.11-1_0.78-2_0.48-3_0.36",
+          "1404_l_2_c_0_1_3-0_0.5-1_0.3-2_0.97-3_0.72",
+          "1405_l_2_c_0_2_3-0_0.69-1_0.49-2_0.04-3_0.29",
+          "1406_l_2_c_1_2_3-0_1.93-1_0.36-2_0.29-3_0.1",
+          "1407_l_2_c_0_1_2-0_0.01-1_0.3-2_0.57-3_0.11",
+          "1408_l_2_c_0_1_3-0_0.28-1_0.22-2_2.11-3_0.5",
+          "1409_l_2_c_0_2_3-0_0.63-1_0.69-2_0.1-3_0.74",
+          "1410_l_2_c_1_2_3-0_2.88-1_0.39-2_0.4-3_0.56",
+          "1411_l_2_c_0_1_2-0_0.12-1_0.05-2_0.52-3_0.9",
+          "1412_l_2_c_0_1_3-0_0.68-1_0.44-2_1.1-3_0.81",
+          "1413_l_2_c_0_2_3-0_0.13-1_0.26-2_0.51-3_0.01",
+          "1414_l_2_c_1_2_3-0_1.59-1_0.66-2_0.02-3_0.29",
+          "1415_l_2_c_0_1_2-0_0.31-1_0.44-2_0.42-3_0.1",
+          "1416_l_2_c_0_1_3-0_0.83-1_0.37-2_0.61-3_0.22",
+          "1417_l_2_c_0_2_3-0_0.53-1_0.08-2_0.02-3_0.44",
+          "1418_l_2_c_1_2_3-0_0.95-1_0.3-2_0.49-3_0.94",
+          "1419_l_2_c_0_1_2-0_0.98-1_0.08-2_0.03-3_0.5",
+          "1420_l_2_c_0_1_3-0_1.69-1_0.28-2_0.51-3_0.74",
+          "1421_l_2_c_0_2_3-0_0.03-1_1.73-2_0.44-3_0.05",
+          "1422_l_2_c_1_2_3-0_0.45-1_0.52-2_0.06-3_1.21",
+          "1423_l_2_c_0_1_2-0_0.24-1_0.17-2_0.59-3_0.7",
+          "1424_l_2_c_0_1_3-0_0.47-1_0.34-2_0.86-3_0.13",
+          "1425_l_2_c_0_2_3-0_0.08-1_1.14-2_0.23-3_1.52",
+          "1426_l_2_c_1_2_3-0_1.58-1_0.24-2_0.6-3_0.34",
+          "1427_l_2_c_0_1_2-0_0.4-1_0.7-2_0.02-3_1.82",
+          "1428_l_2_c_0_1_3-0_0.28-1_0.66-2_1.9-3_0.72",
+          "1429_l_2_c_0_2_3-0_1.08-1_0.59-2_0.16-3_0.56",
+          "1430_l_2_c_1_2_3-0_0.25-1_0.14-2_0.19-3_0.44",
+          "1431_l_2_c_0_1_2-0_0.39-1_0.2-2_0.13-3_0.46",
+          "1432_l_2_c_0_1_3-0_0.14-1_0.02-2_1.53-3_0.29",
+          "1433_l_2_c_0_2_3-0_0.03-1_0.95-2_0.23-3_0.13",
+          "1434_l_2_c_1_2_3-0_0.68-1_0.77-2_0.18-3_0.71",
+          "1435_l_2_c_0_1_2-0_1.93-1_0.06-2_0.26-3_2.7",
+          "1436_l_2_c_0_1_3-0_0.97-1_0.01-2_0.48-3_0.1",
+          "1437_l_2_c_0_2_3-0_0.68-1_0.33-2_0.11-3_0.49",
+          "1438_l_2_c_1_2_3-0_0.94-1_0.12-2_0.53-3_0.32",
+          "1439_l_2_c_0_1_2-0_0.04-1_0.28-2_0.76-3_0.05",
+          "1440_l_2_c_0_1_3-0_0.09-1_0.42-2_1.05-3_0.55",
+          "1441_l_2_c_0_2_3-0_1.74-1_0.96-2_0.48-3_0.06",
+          "1442_l_2_c_1_2_3-0_1.08-1_0.52-2_0.67-3_0.56",
+          "1443_l_2_c_0_1_2-0_0.26-1_0.42-2_0.1-3_0.6",
+          "1444_l_2_c_0_1_3-0_1.52-1_0.52-2_0.35-3_0.55",
+          "1445_l_2_c_0_2_3-0_0.37-1_1.21-2_0.63-3_0.04",
+          "1446_l_2_c_1_2_3-0_0.55-1_0.19-2_0.6-3_0.97",
+          "1447_l_2_c_0_1_2-0_0.18-1_0.07-2_0.41-3_1.25",
+          "1448_l_2_c_0_1_3-0_0.6-1_0.08-2_0.6-3_0.47",
+          "1449_l_2_c_0_2_3-0_0.38-1_0.54-2_0.39-3_0.03",
+          "1450_l_2_c_1_2_3-0_0.9-1_0.04-2_0.48-3_0.5",
+          "1451_l_2_c_0_1_2-0_0.19-1_0.1-2_0.65-3_0.29",
+          "1452_l_2_c_0_1_3-0_0.94-1_0.02-2_0.46-3_0.21",
+          "1453_l_2_c_0_2_3-0_1.23-1_1.51-2_0.12-3_0.91",
+          "1454_l_2_c_1_2_3-0_0.35-1_0.16-2_0.26-3_0.46",
+          "1455_l_2_c_0_1_2-0_0.12-1_0.06-2_0.01-3_1.16",
+          "1456_l_2_c_0_1_3-0_0.12-1_0.26-2_0.31-3_0.36",
+          "1457_l_2_c_0_2_3-0_0.05-1_1.61-2_0.04-3_0.1",
+          "1458_l_2_c_1_2_3-0_0.8-1_0.54-2_0.21-3_1.15",
+          "1459_l_2_c_0_1_2-0_0.96-1_0.45-2_0.35-3_0.2",
+          "1460_l_2_c_0_1_3-0_0.82-1_0.02-2_1.89-3_0.06",
+          "1461_l_2_c_0_2_3-0_0.06-1_1.02-2_0.55-3_0.09",
+          "1462_l_2_c_1_2_3-0_1.31-1_0.31-2_0.04-3_1.15",
+          "1463_l_2_c_0_1_2-0_0.66-1_0.12-2_0.57-3_0.66",
+          "1464_l_2_c_0_1_3-0_1.76-1_0.16-2_3.53-3_0.01",
+          "1465_l_2_c_0_2_3-0_0.29-1_2.01-2_0.09-3_0.21",
+          "1466_l_2_c_1_2_3-0_0.6-1_0.03-2_0.05-3_0.47",
+          "1467_l_2_c_0_1_2-0_0.37-1_0.3-2_0.01-3_1.47",
+          "1468_l_2_c_0_1_3-0_0.24-1_0.05-2_0.26-3_0.18",
+          "1469_l_2_c_0_2_3-0_0.01-1_1.33-2_0.0-3_0.24",
+          "1470_l_2_c_1_2_3-0_0.27-1_0.01-2_0.01-3_0.14",
+          "1471_l_2_c_0_1_2-0_0.16-1_0.03-2_0.22-3_0.4",
+          "1472_l_2_c_0_1_3-0_0.81-1_0.27-2_0.66-3_0.98",
+          "1473_l_2_c_0_2_3-0_0.2-1_0.09-2_0.17-3_0.22",
+          "1474_l_2_c_1_2_3-0_0.02-1_0.92-2_0.0-3_0.09",
+          "1475_l_2_c_0_1_2-0_0.61-1_0.14-2_0.23-3_1.28",
+          "1476_l_2_c_0_1_3-0_0.42-1_0.77-2_1.54-3_1.54",
+          "1477_l_2_c_0_2_3-0_0.47-1_0.2-2_0.03-3_0.39",
+          "1478_l_2_c_1_2_3-0_0.62-1_0.14-2_0.01-3_0.74",
+          "1479_l_2_c_0_1_2-0_0.53-1_0.2-2_0.19-3_0.4",
+          "1480_l_2_c_0_1_3-0_0.6-1_0.89-2_0.29-3_0.77",
+          "1481_l_2_c_0_2_3-0_0.27-1_0.45-2_0.08-3_0.01",
+          "1482_l_2_c_1_2_3-0_0.12-1_0.15-2_0.3-3_0.98",
+          "1483_l_2_c_0_1_2-0_0.49-1_0.51-2_0.26-3_0.19",
+          "1484_l_2_c_0_1_3-0_0.29-1_0.05-2_1.05-3_0.2",
+          "1485_l_2_c_0_2_3-0_1.48-1_0.86-2_0.49-3_0.46",
+          "1486_l_2_c_1_2_3-0_1.32-1_0.12-2_0.36-3_0.03",
+          "1487_l_2_c_0_1_2-0_0.39-1_0.0-2_0.1-3_0.66",
+          "1488_l_2_c_0_1_3-0_0.73-1_0.42-2_0.33-3_0.12",
+          "1489_l_2_c_0_2_3-0_1.62-1_1.1-2_0.73-3_0.25",
+          "1490_l_2_c_1_2_3-0_0.63-1_0.15-2_0.05-3_0.22",
+          "1491_l_2_c_0_1_2-0_0.42-1_0.51-2_0.13-3_0.23",
+          "1492_l_2_c_0_1_3-0_0.11-1_0.03-2_1.59-3_0.45",
+          "1493_l_2_c_0_2_3-0_0.34-1_0.78-2_0.15-3_0.09",
+          "1494_l_2_c_1_2_3-0_0.51-1_0.0-2_0.32-3_0.55",
+          "1495_l_2_c_0_1_2-0_1.13-1_0.11-2_0.13-3_0.02",
+          "1496_l_2_c_0_1_3-0_0.0-1_0.64-2_0.02-3_1.09",
+          "1497_l_2_c_0_2_3-0_0.37-1_1.61-2_0.07-3_0.72",
+          "1498_l_2_c_1_2_3-0_1.55-1_0.29-2_0.94-3_0.09",
+          "1499_l_2_c_0_1_2-0_0.16-1_0.02-2_0.32-3_1.41",
+          "1500_l_2_c_0_1_3-0_0.03-1_0.1-2_1.66-3_0.36",
+          "1501_l_2_c_0_2_3-0_0.43-1_0.97-2_0.01-3_1.1",
+          "1502_l_2_c_1_2_3-0_0.63-1_0.17-2_0.03-3_0.17",
+          "1503_l_2_c_0_1_2-0_0.1-1_0.02-2_0.03-3_0.97",
+          "1504_l_2_c_0_1_3-0_0.03-1_0.01-2_0.07-3_0.47",
+          "1505_l_2_c_0_2_3-0_1.21-1_0.93-2_0.12-3_0.78",
+          "1506_l_2_c_1_2_3-0_0.72-1_0.01-2_0.17-3_0.24",
+          "1507_l_2_c_0_1_2-0_0.44-1_0.95-2_0.52-3_0.0",
+          "1508_l_2_c_0_1_3-0_0.36-1_0.59-2_1.38-3_0.66",
+          "1509_l_2_c_0_2_3-0_0.59-1_0.16-2_0.43-3_0.28",
+          "1510_l_2_c_1_2_3-0_0.01-1_0.15-2_0.68-3_0.21",
+          "1511_l_2_c_0_1_2-0_0.11-1_0.23-2_0.76-3_0.97",
+          "1512_l_2_c_0_1_3-0_0.16-1_0.21-2_0.57-3_2.33",
+          "1513_l_2_c_0_2_3-0_1.68-1_0.67-2_0.63-3_2.17",
+          "1514_l_2_c_1_2_3-0_0.92-1_0.43-2_1.1-3_0.06",
+          "1515_l_2_c_0_1_2-0_0.75-1_0.22-2_0.38-3_1.67",
+          "1516_l_2_c_0_1_3-0_0.25-1_0.16-2_1.5-3_1.53",
+          "1517_l_2_c_0_2_3-0_0.5-1_1.48-2_0.92-3_1.58",
+          "1518_l_2_c_1_2_3-0_0.01-1_0.01-2_0.57-3_0.24",
+          "1519_l_2_c_0_1_2-0_0.41-1_0.03-2_0.12-3_0.32",
+          "1520_l_2_c_0_1_3-0_0.56-1_0.51-2_1.03-3_0.67",
+          "1521_l_2_c_0_2_3-0_1.11-1_1.18-2_0.02-3_0.52",
+          "1522_l_2_c_1_2_3-0_2.09-1_0.09-2_0.68-3_1.55",
+          "1523_l_2_c_0_1_2-0_0.74-1_0.7-2_0.3-3_0.73",
+          "1524_l_2_c_0_1_3-0_0.19-1_0.09-2_0.1-3_0.08",
+          "1525_l_2_c_0_2_3-0_0.09-1_2.72-2_0.04-3_0.94",
+          "1526_l_2_c_1_2_3-0_0.89-1_0.2-2_0.72-3_1.04",
+          "1527_l_2_c_0_1_2-0_0.23-1_0.47-2_0.8-3_0.35",
+          "1528_l_2_c_0_1_3-0_0.09-1_0.15-2_0.38-3_1.11",
+          "1529_l_2_c_0_2_3-0_0.4-1_0.36-2_0.45-3_0.46",
+          "1530_l_2_c_1_2_3-0_0.1-1_0.58-2_0.12-3_0.3",
+          "1531_l_2_c_0_1_2-0_1.37-1_0.07-2_0.03-3_1.88",
+          "1532_l_2_c_0_1_3-0_0.19-1_0.73-2_0.11-3_1.09",
+          "1533_l_2_c_0_2_3-0_0.14-1_0.9-2_0.15-3_0.11",
+          "1534_l_2_c_1_2_3-0_0.69-1_0.44-2_0.45-3_0.06",
+          "1535_l_2_c_0_1_2-0_1.93-1_0.27-2_0.19-3_1.27",
+          "1536_l_2_c_0_1_3-0_0.05-1_0.68-2_0.59-3_0.69",
+          "1537_l_2_c_0_2_3-0_0.32-1_0.71-2_0.97-3_0.96",
+          "1538_l_2_c_1_2_3-0_0.55-1_0.24-2_0.02-3_1.87",
+          "1539_l_2_c_0_1_2-0_1.54-1_0.41-2_0.29-3_0.24",
+          "1540_l_2_c_0_1_3-0_0.09-1_0.42-2_0.95-3_0.39",
+          "1541_l_2_c_0_2_3-0_0.98-1_0.61-2_0.11-3_0.1",
+          "1542_l_2_c_1_2_3-0_1.14-1_0.34-2_0.68-3_0.09",
+          "1543_l_2_c_0_1_2-0_0.25-1_0.3-2_0.03-3_0.22",
+          "1544_l_2_c_0_1_3-0_0.55-1_0.48-2_0.63-3_0.32",
+          "1545_l_2_c_0_2_3-0_0.56-1_1.52-2_0.17-3_0.93",
+          "1546_l_2_c_1_2_3-0_0.04-1_0.02-2_0.09-3_0.25",
+          "1547_l_2_c_0_1_2-0_0.0-1_1.28-2_0.02-3_0.52",
+          "1548_l_2_c_0_1_3-0_0.53-1_0.86-2_1.26-3_0.28",
+          "1549_l_2_c_0_2_3-0_0.04-1_0.07-2_0.06-3_0.18",
+          "1550_l_2_c_1_2_3-0_0.6-1_0.18-2_0.06-3_0.17",
+          "1551_l_2_c_0_1_2-0_0.17-1_0.01-2_0.08-3_0.66",
+          "1552_l_2_c_0_1_3-0_0.69-1_0.31-2_0.39-3_0.81",
+          "1553_l_2_c_0_2_3-0_0.07-1_1.28-2_0.36-3_1.83",
+          "1554_l_2_c_1_2_3-0_2.08-1_0.39-2_0.05-3_0.29",
+          "1555_l_2_c_0_1_2-0_0.32-1_0.06-2_0.11-3_0.13",
+          "1556_l_2_c_0_1_3-0_0.5-1_0.03-2_0.22-3_1.59",
+          "1557_l_2_c_0_2_3-0_1.11-1_0.47-2_0.15-3_1.68",
+          "1558_l_2_c_1_2_3-0_0.55-1_0.14-2_0.04-3_0.04",
+          "1559_l_2_c_0_1_2-0_0.36-1_0.08-2_0.14-3_0.09",
+          "1560_l_2_c_0_1_3-0_0.01-1_0.08-2_0.56-3_0.28",
+          "1561_l_2_c_0_2_3-0_0.72-1_0.21-2_0.42-3_0.55",
+          "1562_l_2_c_1_2_3-0_0.25-1_0.23-2_0.01-3_1.0",
+          "1563_l_2_c_0_1_2-0_0.23-1_0.2-2_0.07-3_0.07",
+          "1564_l_2_c_0_1_3-0_0.19-1_0.09-2_0.72-3_0.23",
+          "1565_l_2_c_0_2_3-0_1.08-1_0.07-2_0.01-3_0.76",
+          "1566_l_2_c_1_2_3-0_0.6-1_0.21-2_0.04-3_0.62",
+          "1567_l_2_c_0_1_2-0_1.01-1_0.13-2_0.12-3_0.65",
+          "1568_l_2_c_0_1_3-0_1.19-1_0.35-2_1.05-3_0.23",
+          "1569_l_2_c_0_2_3-0_0.5-1_0.18-2_0.0-3_1.32",
+          "1570_l_2_c_1_2_3-0_1.06-1_0.25-2_0.56-3_0.64",
+          "1571_l_2_c_0_1_2-0_0.15-1_0.06-2_0.52-3_2.34",
+          "1572_l_2_c_0_1_3-0_0.81-1_0.41-2_0.23-3_0.34",
+          "1573_l_2_c_0_2_3-0_0.39-1_2.06-2_0.0-3_0.76",
+          "1574_l_2_c_1_2_3-0_2.06-1_0.25-2_0.06-3_0.11",
+          "1575_l_2_c_0_1_2-0_0.75-1_0.18-2_0.13-3_0.31",
+          "1576_l_2_c_0_1_3-0_0.17-1_1.11-2_0.45-3_0.38",
+          "1577_l_2_c_0_2_3-0_0.15-1_0.17-2_0.16-3_0.37",
+          "1578_l_2_c_1_2_3-0_1.89-1_0.55-2_0.19-3_0.01",
+          "1579_l_2_c_0_1_2-0_0.1-1_0.06-2_0.05-3_0.98",
+          "1580_l_2_c_0_1_3-0_0.18-1_0.36-2_1.17-3_0.38",
+          "1581_l_2_c_0_2_3-0_0.11-1_0.15-2_0.17-3_0.15",
+          "1582_l_2_c_1_2_3-0_1.12-1_0.05-2_0.34-3_0.44",
+          "1583_l_2_c_0_1_2-0_0.12-1_0.84-2_1.06-3_1.41",
+          "1584_l_2_c_0_1_3-0_0.95-1_0.34-2_0.17-3_0.96",
+          "1585_l_2_c_0_2_3-0_0.93-1_0.24-2_0.44-3_0.71",
+          "1586_l_2_c_1_2_3-0_1.68-1_0.11-2_0.74-3_0.35",
+          "1587_l_2_c_0_1_2-0_0.24-1_0.01-2_0.11-3_0.12",
+          "1588_l_2_c_0_1_3-0_0.81-1_0.01-2_0.66-3_0.24",
+          "1589_l_2_c_0_2_3-0_0.54-1_0.39-2_0.23-3_0.26",
+          "1590_l_2_c_1_2_3-0_0.85-1_0.09-2_0.19-3_1.51",
+          "1591_l_2_c_0_1_2-0_1.04-1_0.59-2_0.01-3_1.19",
+          "1592_l_2_c_0_1_3-0_0.13-1_0.09-2_0.43-3_0.36",
+          "1593_l_2_c_0_2_3-0_0.74-1_1.41-2_0.7-3_0.84",
+          "1594_l_2_c_1_2_3-0_0.64-1_0.38-2_0.13-3_0.23",
+          "1595_l_2_c_0_1_2-0_1.26-1_0.16-2_0.42-3_1.41",
+          "1596_l_2_c_0_1_3-0_0.29-1_0.29-2_0.05-3_0.12",
+          "1597_l_2_c_0_2_3-0_0.32-1_0.1-2_0.09-3_0.22",
+          "1598_l_2_c_1_2_3-0_1.26-1_0.21-2_0.53-3_0.22",
+          "1599_l_2_c_0_1_2-0_0.27-1_0.58-2_0.65-3_1.82",
+          "1600_l_2_c_0_1_3-0_0.28-1_0.1-2_1.39-3_0.03",
+          "1601_l_2_c_0_2_3-0_0.62-1_1.69-2_0.19-3_0.73",
+          "1602_l_2_c_1_2_3-0_0.18-1_0.94-2_0.33-3_0.82",
+          "1603_l_2_c_0_1_2-0_0.24-1_0.6-2_0.42-3_0.86",
+          "1604_l_2_c_0_1_3-0_0.01-1_0.88-2_1.02-3_0.01",
+          "1605_l_2_c_0_2_3-0_0.13-1_1.06-2_0.07-3_0.09",
+          "1606_l_2_c_1_2_3-0_0.22-1_0.78-2_0.15-3_1.05",
+          "1607_l_2_c_0_1_2-0_0.24-1_0.23-2_0.87-3_0.05",
+          "1608_l_2_c_0_1_3-0_0.78-1_0.0-2_1.16-3_0.46",
+          "1609_l_2_c_0_2_3-0_0.18-1_0.33-2_0.11-3_0.04",
+          "1610_l_2_c_1_2_3-0_0.9-1_0.53-2_0.1-3_0.46",
+          "1611_l_2_c_0_1_2-0_0.06-1_0.0-2_0.05-3_0.33",
+          "1612_l_2_c_0_1_3-0_0.21-1_0.67-2_0.07-3_0.17",
+          "1613_l_2_c_0_2_3-0_0.8-1_0.37-2_0.59-3_0.46",
+          "1614_l_2_c_1_2_3-0_0.92-1_0.03-2_0.84-3_0.2",
+          "1615_l_2_c_0_1_2-0_0.65-1_0.01-2_0.4-3_0.29",
+          "1616_l_2_c_0_1_3-0_0.65-1_0.04-2_0.26-3_1.31",
+          "1617_l_2_c_0_2_3-0_1.98-1_0.26-2_0.04-3_1.02",
+          "1618_l_2_c_1_2_3-0_1.52-1_0.09-2_0.17-3_0.13",
+          "1619_l_2_c_0_1_2-0_0.1-1_0.16-2_0.29-3_1.91",
+          "1620_l_2_c_0_1_3-0_0.11-1_0.01-2_1.25-3_0.42",
+          "1621_l_2_c_0_2_3-0_0.21-1_0.98-2_1.21-3_0.9",
+          "1622_l_2_c_1_2_3-0_0.65-1_0.01-2_0.32-3_0.14",
+          "1623_l_2_c_0_1_2-0_0.94-1_0.16-2_0.46-3_0.31",
+          "1624_l_2_c_0_1_3-0_0.78-1_0.58-2_1.24-3_0.54",
+          "1625_l_2_c_0_2_3-0_0.18-1_0.52-2_0.02-3_0.78",
+          "1626_l_2_c_1_2_3-0_1.49-1_0.36-2_0.62-3_0.33",
+          "1627_l_2_c_0_1_2-0_1.18-1_0.15-2_0.02-3_0.36",
+          "1628_l_2_c_0_1_3-0_0.58-1_1.11-2_0.71-3_1.16",
+          "1629_l_2_c_0_2_3-0_0.77-1_0.79-2_0.82-3_0.29",
+          "1630_l_2_c_1_2_3-0_1.11-1_1.08-2_0.22-3_0.92",
+          "1631_l_2_c_0_1_2-0_0.05-1_0.54-2_0.32-3_0.55",
+          "1632_l_2_c_0_1_3-0_0.09-1_0.19-2_0.09-3_0.2",
+          "1633_l_2_c_0_2_3-0_0.17-1_1.97-2_0.08-3_0.08",
+          "1634_l_2_c_1_2_3-0_1.2-1_0.75-2_0.02-3_0.63",
+          "1635_l_2_c_0_1_2-0_0.25-1_0.06-2_0.18-3_0.07",
+          "1636_l_2_c_0_1_3-0_0.32-1_0.42-2_0.99-3_1.04",
+          "1637_l_2_c_0_2_3-0_1.46-1_0.91-2_0.54-3_0.13",
+          "1638_l_2_c_1_2_3-0_1.16-1_0.57-2_0.0-3_0.49",
+          "1639_l_2_c_0_1_2-0_0.14-1_0.06-2_0.24-3_0.03",
+          "1640_l_2_c_0_1_3-0_0.94-1_0.68-2_0.47-3_0.62",
+          "1641_l_2_c_0_2_3-0_0.46-1_0.03-2_0.05-3_0.43",
+          "1642_l_2_c_1_2_3-0_0.02-1_0.87-2_0.04-3_0.38",
+          "1643_l_2_c_0_1_2-0_1.09-1_0.27-2_0.78-3_0.0",
+          "1644_l_2_c_0_1_3-0_0.15-1_0.35-2_0.4-3_0.07",
+          "1645_l_2_c_0_2_3-0_0.53-1_1.83-2_0.03-3_0.11",
+          "1646_l_2_c_1_2_3-0_0.86-1_0.21-2_0.0-3_0.0",
+          "1647_l_2_c_0_1_2-0_2.29-1_0.66-2_0.07-3_0.04",
+          "1648_l_2_c_0_1_3-0_0.72-1_0.11-2_0.17-3_0.0",
+          "1649_l_2_c_0_2_3-0_0.31-1_0.49-2_0.77-3_1.04",
+          "1650_l_2_c_1_2_3-0_0.31-1_0.06-2_0.45-3_0.02",
+          "1651_l_2_c_0_1_2-0_0.4-1_0.65-2_0.13-3_0.85",
+          "1652_l_2_c_0_1_3-0_0.73-1_0.15-2_1.36-3_0.13",
+          "1653_l_2_c_0_2_3-0_1.17-1_1.56-2_0.42-3_0.02",
+          "1654_l_2_c_1_2_3-0_0.01-1_0.29-2_0.25-3_0.08",
+          "1655_l_2_c_0_1_2-0_0.62-1_0.27-2_0.49-3_2.55",
+          "1656_l_2_c_0_1_3-0_0.4-1_0.25-2_0.72-3_0.31",
+          "1657_l_2_c_0_2_3-0_0.41-1_1.46-2_0.24-3_0.26",
+          "1658_l_2_c_1_2_3-0_1.81-1_0.23-2_0.04-3_0.09",
+          "1659_l_2_c_0_1_2-0_0.03-1_0.67-2_0.11-3_0.5",
+          "1660_l_2_c_0_1_3-0_0.16-1_0.47-2_1.4-3_0.5",
+          "1661_l_2_c_0_2_3-0_1.58-1_1.67-2_0.05-3_1.09",
+          "1662_l_2_c_1_2_3-0_0.84-1_0.15-2_0.27-3_0.47",
+          "1663_l_2_c_0_1_2-0_0.66-1_0.17-2_0.02-3_0.44",
+          "1664_l_2_c_0_1_3-0_0.14-1_0.78-2_1.82-3_1.29",
+          "1665_l_2_c_0_2_3-0_0.16-1_0.75-2_0.17-3_0.03",
+          "1666_l_2_c_1_2_3-0_1.56-1_0.62-2_0.26-3_0.04",
+          "1667_l_2_c_0_1_2-0_0.78-1_0.94-2_0.01-3_0.8",
+          "1668_l_2_c_0_1_3-0_1.54-1_0.31-2_0.69-3_0.35",
+          "1669_l_2_c_0_2_3-0_0.56-1_0.15-2_0.23-3_0.31",
+          "1670_l_2_c_1_2_3-0_0.24-1_0.4-2_0.1-3_0.16",
+          "1671_l_2_c_0_1_2-0_0.17-1_0.07-2_0.33-3_0.84",
+          "1672_l_2_c_0_1_3-0_0.3-1_0.49-2_1.47-3_1.27",
+          "1673_l_2_c_0_2_3-0_0.76-1_0.88-2_0.35-3_0.1",
+          "1674_l_2_c_1_2_3-0_0.82-1_0.3-2_0.07-3_0.1",
+          "1675_l_2_c_0_1_2-0_0.83-1_0.13-2_0.25-3_0.82",
+          "1676_l_2_c_0_1_3-0_0.45-1_0.08-2_1.47-3_1.33",
+          "1677_l_2_c_0_2_3-0_0.17-1_1.04-2_0.58-3_0.24",
+          "1678_l_2_c_1_2_3-0_0.03-1_0.24-2_0.51-3_0.13",
+          "1679_l_2_c_0_1_2-0_1.3-1_0.02-2_0.1-3_0.07",
+          "1680_l_2_c_0_1_3-0_0.1-1_0.17-2_0.11-3_0.81",
+          "1681_l_2_c_0_2_3-0_0.54-1_1.12-2_0.11-3_0.6",
+          "1682_l_2_c_1_2_3-0_0.12-1_0.14-2_0.83-3_0.81",
+          "1683_l_2_c_0_1_2-0_0.02-1_0.36-2_0.0-3_0.3",
+          "1684_l_2_c_0_1_3-0_1.41-1_0.05-2_0.03-3_0.2",
+          "1685_l_2_c_0_2_3-0_0.85-1_0.16-2_0.05-3_1.23",
+          "1686_l_2_c_1_2_3-0_0.48-1_0.05-2_0.09-3_1.41",
+          "1687_l_2_c_0_1_2-0_1.65-1_0.0-2_0.04-3_2.41",
+          "1688_l_2_c_0_1_3-0_0.78-1_0.01-2_0.98-3_0.55",
+          "1689_l_2_c_0_2_3-0_0.03-1_1.7-2_0.03-3_0.11",
+          "1690_l_2_c_1_2_3-0_0.51-1_0.79-2_0.61-3_0.22",
+          "1691_l_2_c_0_1_2-0_1.54-1_0.05-2_0.12-3_2.07",
+          "1692_l_2_c_0_1_3-0_0.79-1_0.24-2_0.86-3_1.27",
+          "1693_l_2_c_2_3-0_0.8-1_1.53-2_0.09-3_0.56",
+          "1694_l_2_r-0_0.06-1_0.48-2_0.65-3_1.33",
+          "1695_l_2_r-0_0.19-1_0.85-2_1.53-3_0.54",
+          "1696_l_2_r-0_0.82-1_1.0-2_0.48-3_1.02",
+          "1697_l_2_r-0_0.37-1_1.25-2_2.82-3_0.03",
+          "1698_l_2_r-0_0.94-1_3.91-2_0.96-3_0.91",
+          "1699_l_2_r-0_1.3-1_0.43-2_0.57-3_2.33",
+          "1700_l_2_r-0_1.29-1_1.85-2_1.34-3_2.15",
+          "1701_l_2_r-0_1.17-1_0.79-2_1.13-3_0.38",
+          "1702_l_2_r-0_1.32-1_0.84-2_0.42-3_0.72",
+          "1703_l_2_r-0_0.6-1_0.85-2_1.93-3_0.96",
+          "1704_l_2_r-0_1.45-1_0.08-2_1.07-3_0.65",
+          "1705_l_2_r-0_0.01-1_0.35-2_0.28-3_0.91",
+          "1706_l_2_r-0_0.04-1_3.24-2_1.8-3_0.13",
+          "1707_l_2_r-0_0.13-1_0.28-2_0.0-3_0.35",
+          "1708_l_2_r-0_0.34-1_0.22-2_0.09-3_0.87",
+          "1709_l_2_r-0_1.8-1_1.5-2_0.62-3_2.9",
+          "1710_l_2_r-0_2.65-1_0.15-2_1.98-3_0.67",
+          "1711_l_2_r-0_0.71-1_1.34-2_0.72-3_0.77",
+          "1712_l_2_r-0_0.21-1_0.91-2_0.12-3_0.96",
+          "1713_l_2_r-0_0.71-1_1.13-2_0.41-3_2.23",
+          "1714_l_2_r-0_1.52-1_2.31-2_0.9-3_1.38",
+          "1715_l_2_r-0_0.5-1_1.29-2_0.42-3_0.93",
+          "1716_l_2_r-0_0.31-1_0.73-2_0.54-3_1.98",
+          "1717_l_2_r-0_1.3-1_0.5-2_1.6-3_1.7",
+          "1718_l_2_r-0_0.64-1_0.14-2_0.61-3_0.79",
+          "1719_l_2_r-0_2.09-1_0.77-2_1.28-3_1.47",
+          "1720_l_2_r-0_1.2-1_1.25-2_0.23-3_0.78",
+          "1721_l_2_r-0_0.87-1_0.58-2_0.47-3_0.92",
+          "1722_l_2_r-0_0.88-1_0.31-2_1.29-3_0.27",
+          "1723_l_2_r-0_0.72-1_0.79-2_0.75-3_1.3",
+          "1724_l_2_r-0_1.25-1_0.59-2_0.7-3_0.85",
+          "1725_l_2_r-0_0.66-1_0.16-2_0.66-3_0.63",
+          "1726_l_2_r-0_1.31-1_1.03-2_0.25-3_0.11",
+          "1727_l_2_r-0_0.19-1_0.12-2_0.46-3_0.88",
+          "1728_l_2_r-0_1.33-1_0.03-2_0.17-3_0.74",
+          "1729_l_2_r-0_0.13-1_1.31-2_1.7-3_0.44",
+          "1730_l_2_r-0_1.64-1_0.26-2_0.57-3_1.32",
+          "1731_l_2_r-0_1.38-1_0.71-2_0.34-3_0.2",
+          "1732_l_2_r-0_0.69-1_0.66-2_0.85-3_0.41",
+          "1733_l_2_r-0_1.16-1_0.71-2_0.18-3_0.49",
+          "1734_l_2_r-0_2.04-1_0.69-2_2.16-3_1.31",
+          "1735_l_2_r-0_0.85-1_0.01-2_1.34-3_0.69",
+          "1736_l_2_r-0_1.54-1_2.1-2_0.02-3_0.28",
+          "1737_l_2_r-0_0.3-1_1.77-2_0.57-3_1.07",
+          "1738_l_2_r-0_1.28-1_0.02-2_1.08-3_0.28",
+          "1739_l_2_r-0_0.77-1_0.11-2_0.66-3_0.43",
+          "1740_l_2_r-0_0.2-1_1.01-2_1.13-3_1.57",
+          "1741_l_2_r-0_0.2-1_0.65-2_0.74-3_1.14",
+          "1742_l_2_r-0_0.47-1_0.96-2_1.88-3_0.18",
+          "1743_l_2_r-0_0.58-1_1.37-2_2.71-3_1.1",
+          "1744_l_2_r-0_1.35-1_0.67-2_0.81-3_1.18",
+          "1745_l_2_r-0_0.73-1_0.78-2_1.1-3_1.32",
+          "1746_l_2_r-0_0.41-1_0.62-2_0.29-3_0.63",
+          "1747_l_2_r-0_0.07-1_0.11-2_0.95-3_0.58",
+          "1748_l_2_r-0_0.18-1_0.14-2_0.35-3_0.48",
+          "1749_l_2_r-0_0.28-1_0.38-2_0.57-3_0.69",
+          "1750_l_2_r-0_0.81-1_0.5-2_1.57-3_0.63",
+          "1751_l_2_r-0_0.9-1_1.42-2_0.99-3_1.04",
+          "1752_l_2_r-0_0.02-1_0.46-2_0.06-3_0.19",
+          "1753_l_2_r-0_0.74-1_1.46-2_0.54-3_0.03",
+          "1754_l_2_r-0_0.73-1_0.35-2_1.55-3_1.58",
+          "1755_l_2_r-0_0.72-1_0.49-2_0.75-3_1.34",
+          "1756_l_2_r-0_0.39-1_0.32-2_1.08-3_0.34",
+          "1757_l_2_r-0_0.36-1_2.19-2_0.62-3_0.03",
+          "1758_l_2_r-0_0.26-1_0.55-2_0.27-3_1.26",
+          "1759_l_2_r-0_0.73-1_0.86-2_0.54-3_0.1",
+          "1760_l_2_r-0_0.12-1_0.58-2_0.87-3_1.39",
+          "1761_l_2_r-0_0.34-1_0.65-2_0.98-3_0.95",
+          "1762_l_2_r-0_0.35-1_1.83-2_0.4-3_2.21",
+          "1763_l_2_r-0_0.39-1_1.26-2_0.86-3_1.9",
+          "1764_l_2_r-0_1.29-1_1.14-2_0.5-3_1.15",
+          "1765_l_2_r-0_0.57-1_0.41-2_1.77-3_1.03",
+          "1766_l_2_r-0_0.49-1_0.48-2_0.77-3_0.26",
+          "1767_l_2_r-0_1.08-1_1.74-2_1.97-3_0.89",
+          "1768_l_2_r-0_1.17-1_0.15-2_0.24-3_0.4",
+          "1769_l_2_r-0_0.19-1_0.51-2_1.78-3_1.03",
+          "1770_l_2_r-0_0.41-1_0.27-2_1.46-3_2.34",
+          "1771_l_2_r-0_0.9-1_0.2-2_0.87-3_0.81",
+          "1772_l_2_r-0_0.09-1_0.78-2_1.56-3_2.23",
+          "1773_l_2_r-0_0.29-1_0.68-2_1.23-3_0.71",
+          "1774_l_2_r-0_0.6-1_1.58-2_0.22-3_0.3",
+          "1775_l_2_r-0_0.76-1_0.69-2_1.51-3_0.27",
+          "1776_l_2_r-0_0.36-1_1.5-2_0.84-3_1.56",
+          "1777_l_2_r-0_2.67-1_0.06-2_1.31-3_2.26",
+          "1778_l_2_r-0_0.27-1_0.41-2_0.04-3_3.33",
+          "1779_l_2_r-0_0.36-1_0.89-2_1.09-3_0.3",
+          "1780_l_2_r-0_1.01-1_0.39-2_2.79-3_0.74",
+          "1781_l_2_r-0_1.6-1_0.51-2_1.34-3_0.23",
+          "1782_l_2_r-0_0.01-1_0.12-2_0.8-3_0.11",
+          "1783_l_2_r-0_0.65-1_1.38-2_0.57-3_0.72",
+          "1784_l_2_r-0_0.47-1_0.71-2_0.42-3_0.46",
+          "1785_l_2_r-0_0.69-1_0.32-2_0.25-3_0.07",
+          "1786_l_2_r-0_0.92-1_0.22-2_0.46-3_0.64",
+          "1787_l_2_r-0_0.66-1_0.3-2_0.22-3_1.3",
+          "1788_l_2_r-0_1.55-1_1.75-2_0.49-3_0.13",
+          "1789_l_2_r-0_0.45-1_0.21-2_3.13-3_0.16",
+          "1790_l_2_r-0_2.68-1_0.39-2_1.41-3_0.6",
+          "1791_l_2_r-0_0.05-1_0.38-2_1.4-3_0.32",
+          "1792_l_2_r-0_0.4-1_0.55-2_1.0-3_1.37",
+          "1793_l_2_r-0_0.08-1_0.01-2_0.36-3_0.32",
+          "1794_l_2_r-0_0.5-1_1.14-2_0.33-3_2.67",
+          "1795_l_2_r-0_1.06-1_0.58-2_0.72-3_0.1",
+          "1796_l_2_r-0_2.55-1_1.34-2_0.37-3_1.23",
+          "1797_l_2_r-0_0.9-1_1.54-2_0.19-3_0.59",
+          "1798_l_2_r-0_0.47-1_1.01-2_0.07-3_1.92",
+          "1799_l_2_r-0_0.86-1_0.05-2_1.07-3_0.74",
+          "1800_l_2_r-0_0.41-1_0.28-2_0.58-3_1.66",
+          "1801_l_2_r-0_0.75-1_0.67-2_0.73-3_0.08",
+          "1802_l_2_r-0_0.65-1_1.38-2_0.25-3_1.18",
+          "1803_l_2_r-0_2.29-1_0.34-2_2.05-3_0.55",
+          "1804_l_2_r-0_1.49-1_0.75-2_1.64-3_0.0",
+          "1805_l_2_r-0_0.0-1_0.58-2_0.39-3_0.56",
+          "1806_l_2_r-0_0.18-1_1.34-2_0.11-3_0.88",
+          "1807_l_2_r-0_0.12-1_0.36-2_0.21-3_1.44",
+          "1808_l_2_r-0_1.98-1_0.97-2_0.82-3_1.27",
+          "1809_l_2_r-0_0.85-1_0.49-2_0.98-3_0.07",
+          "1810_l_2_r-0_0.79-1_2.29-2_0.64-3_0.75",
+          "1811_l_2_r-0_0.1-1_0.83-2_0.38-3_1.39",
+          "1812_l_2_r-0_0.98-1_2.04-2_0.3-3_0.53",
+          "1813_l_2_r-0_0.46-1_0.14-2_1.74-3_0.23",
+          "1814_l_2_r-0_0.9-1_0.37-2_0.2-3_0.1",
+          "1815_l_2_r-0_0.23-1_0.03-2_0.59-3_1.09",
+          "1816_l_2_r-0_2.62-1_1.56-2_0.54-3_1.58",
+          "1817_l_2_r-0_0.63-1_0.36-2_0.82-3_1.22",
+          "1818_l_2_r-0_0.26-1_0.62-2_1.03-3_0.58",
+          "1819_l_2_r-0_1.27-1_0.35-2_2.19-3_0.29",
+          "1820_l_2_r-0_0.05-1_0.09-2_1.25-3_0.64",
+          "1821_l_2_r-0_1.3-1_1.6-2_1.72-3_1.22",
+          "1822_l_2_r-0_2.13-1_0.89-2_0.16-3_1.1",
+          "1823_l_2_r-0_0.03-1_0.23-2_0.24-3_0.5",
+          "1824_l_2_r-0_2.4-1_2.52-2_0.68-3_0.12",
+          "1825_l_2_r-0_0.9-1_0.31-2_2.1-3_0.93",
+          "1826_l_2_r-0_0.52-1_0.75-2_0.66-3_1.04",
+          "1827_l_2_r-0_1.32-1_1.54-2_1.36-3_0.06",
+          "1828_l_2_r-0_1.27-1_0.17-2_0.6-3_1.02",
+          "1829_l_2_r-0_0.25-1_0.34-2_0.71-3_0.95",
+          "1830_l_2_r-0_0.28-1_0.61-2_1.6-3_0.67",
+          "1831_l_2_r-0_0.25-1_1.0-2_0.36-3_0.09",
+          "1832_l_2_r-0_0.46-1_0.68-2_2.16-3_0.76",
+          "1833_l_2_r-0_1.04-1_1.69-2_2.31-3_0.78",
+          "1834_l_2_r-0_0.04-1_0.17-2_0.2-3_0.66",
+          "1835_l_2_r-0_1.26-1_1.4-2_0.33-3_1.02",
+          "1836_l_2_r-0_0.16-1_0.91-2_1.39-3_3.5",
+          "1837_l_2_r-0_0.47-1_0.18-2_0.66-3_0.64",
+          "1838_l_2_r-0_0.28-1_2.69-2_1.13-3_0.27",
+          "1839_l_2_r-0_1.4-1_0.02-2_0.09-3_0.47",
+          "1840_l_2_r-0_1.13-1_1.26-2_0.91-3_0.31",
+          "1841_l_2_r-0_0.18-1_1.59-2_0.39-3_1.59",
+          "1842_l_2_r-0_0.69-1_2.0-2_1.16-3_0.83",
+          "1843_l_2_r-0_0.73-1_0.58-2_1.26-3_0.85",
+          "1844_l_2_r-0_0.84-1_0.03-2_0.79-3_0.19",
+          "1845_l_2_r-0_0.1-1_1.54-2_0.75-3_0.98",
+          "1846_l_2_r-0_1.0-1_0.15-2_2.26-3_0.67",
+          "1847_l_2_r-0_0.05-1_2.84-2_1.17-3_0.97",
+          "1848_l_2_r-0_0.42-1_0.25-2_0.5-3_0.3",
+          "1849_l_2_r-0_0.76-1_0.8-2_2.28-3_0.03",
+          "1850_l_2_r-0_0.17-1_0.72-2_1.67-3_0.93",
+          "1851_l_2_r-0_0.49-1_1.25-2_0.07-3_1.17",
+          "1852_l_2_r-0_0.91-1_1.73-2_0.09-3_0.8",
+          "1853_l_2_r-0_0.25-1_0.18-2_0.57-3_1.28",
+          "1854_l_2_r-0_0.27-1_0.31-2_0.35-3_1.6",
+          "1855_l_2_r-0_1.21-1_0.49-2_3.44-3_0.39",
+          "1856_l_2_r-0_0.59-1_0.38-2_1.44-3_0.19",
+          "1857_l_2_r-0_0.97-1_0.66-2_0.78-3_0.35",
+          "1858_l_2_r-0_1.53-1_1.4-2_0.07-3_0.81",
+          "1859_l_2_r-0_1.16-1_1.16-2_1.09-3_1.78",
+          "1860_l_2_r-0_0.68-1_1.61-2_0.88-3_0.82",
+          "1861_l_2_r-0_0.52-1_2.44-2_1.71-3_1.06",
+          "1862_l_2_r-0_1.6-1_0.02-2_2.03-3_1.29",
+          "1863_l_2_r-0_1.18-1_0.2-2_1.1-3_0.32",
+          "1864_l_2_r-0_0.81-1_2.02-2_1.13-3_0.69",
+          "1865_l_2_r-0_1.24-1_0.15-2_0.43-3_1.1",
+          "1866_l_2_r-0_0.18-1_2.57-2_1.16-3_1.07",
+          "1867_l_2_r-0_0.98-1_0.1-2_0.47-3_0.75",
+          "1868_l_2_r-0_1.04-1_1.08-2_1.49-3_1.14",
+          "1869_l_2_r-0_0.15-1_1.23-2_1.34-3_0.45",
+          "1870_l_2_r-0_0.39-1_1.03-2_0.13-3_1.14",
+          "1871_l_2_r-0_0.01-1_0.88-2_1.39-3_1.34",
+          "1872_l_2_r-0_1.65-1_1.08-2_2.57-3_1.2",
+          "1873_l_2_r-0_0.12-1_1.77-2_0.37-3_0.51",
+          "1874_l_2_r-0_0.74-1_0.5-2_2.33-3_1.39",
+          "1875_l_2_r-0_0.13-1_0.73-2_1.59-3_3.12",
+          "1876_l_2_r-0_0.03-1_0.72-2_0.89-3_0.7",
+          "1877_l_2_r-0_2.08-1_0.98-2_0.07-3_0.13",
+          "1878_l_2_r-0_1.08-1_1.05-2_1.05-3_0.25",
+          "1879_l_2_r-0_0.96-1_0.39-2_1.73-3_2.03",
+          "1880_l_2_r-0_1.17-1_0.44-2_1.06-3_1.03",
+          "1881_l_2_r-0_0.73-1_1.34-2_1.02-3_0.83",
+          "1882_l_2_r-0_1.46-1_1.76-2_1.31-3_0.75",
+          "1883_l_2_r-0_1.45-1_1.07-2_0.44-3_1.48",
+          "1884_l_2_r-0_1.49-1_0.74-2_0.11-3_0.85",
+          "1885_l_2_r-0_2.14-1_0.25-2_0.15-3_1.32",
+          "1886_l_2_r-0_0.9-1_0.26-2_0.58-3_1.7",
+          "1887_l_2_r-0_1.18-1_0.39-2_1.76-3_0.31",
+          "1888_l_2_r-0_0.93-1_1.94-2_0.63-3_0.58",
+          "1889_l_2_r-0_0.74-1_0.91-2_0.67-3_0.92",
+          "1890_l_2_r-0_1.26-1_0.69-2_0.35-3_1.68",
+          "1891_l_2_r-0_0.56-1_0.13-2_1.02-3_0.01",
+          "1892_l_2_r-0_0.78-1_0.87-2_0.43-3_1.05",
+          "1893_l_2_r-0_1.16-1_1.08-2_0.06-3_0.09",
+          "1894_l_2_r-0_1.36-1_1.68-2_1.58-3_0.36",
+          "1895_l_2_r-0_0.71-1_1.41-2_1.23-3_0.67",
+          "1896_l_2_r-0_0.08-1_0.47-2_1.32-3_0.4",
+          "1897_l_2_r-0_0.14-1_1.73-2_0.6-3_1.08",
+          "1898_l_2_r-0_1.72-1_0.03-2_2.02-3_1.27",
+          "1899_l_2_r-0_0.0-1_1.17-2_0.11-3_0.75",
+          "1900_l_2_r-0_1.71-1_1.44-2_0.29-3_0.81",
+          "1901_l_2_r-0_1.91-1_0.0-2_2.02-3_1.13",
+          "1902_l_2_r-0_1.86-1_0.47-2_0.54-3_0.03",
+          "1903_l_2_r-0_0.27-1_0.6-2_0.03-3_0.21",
+          "1904_l_2_r-0_0.2-1_0.9-2_1.15-3_0.87",
+          "1905_l_2_r-0_1.46-1_0.88-2_0.03-3_1.66",
+          "1906_l_2_r-0_0.66-1_0.61-2_1.23-3_1.07",
+          "1907_l_2_r-0_0.02-1_1.28-2_1.74-3_0.09",
+          "1908_l_2_r-0_0.94-1_0.68-2_1.76-3_1.39",
+          "1909_l_2_r-0_0.24-1_1.26-2_1.45-3_1.16",
+          "1910_l_2_r-0_0.9-1_0.24-2_1.06-3_0.04",
+          "1911_l_2_r-0_0.5-1_0.13-2_1.19-3_0.58",
+          "1912_l_2_r-0_0.11-1_0.14-2_2.14-3_0.42",
+          "1913_l_2_r-0_1.43-1_0.32-2_0.25-3_0.46",
+          "1914_l_2_r-0_0.09-1_0.13-2_1.92-3_0.06",
+          "1915_l_2_r-0_0.69-1_0.46-2_0.5-3_1.52",
+          "1916_l_2_r-0_0.26-1_1.15-2_1.81-3_0.72",
+          "1917_l_2_r-0_0.93-1_0.01-2_0.99-3_1.37",
+          "1918_l_2_r-0_2.0-1_0.72-2_0.77-3_0.84",
+          "1919_l_2_r-0_1.58-1_1.33-2_0.28-3_0.09",
+          "1920_l_2_r-0_0.28-1_0.95-2_2.65-3_0.95",
+          "1921_l_2_r-0_2.1-1_0.05-2_0.49-3_0.5",
+          "1922_l_2_r-0_0.22-1_0.52-2_0.69-3_0.25",
+          "1923_l_2_r-0_1.39-1_0.87-2_0.73-3_1.46",
+          "1924_l_2_r-0_1.08-1_0.35-2_1.4-3_0.02",
+          "1925_l_2_r-0_1.05-1_2.01-2_0.77-3_0.57",
+          "1926_l_2_r-0_1.03-1_0.3-2_0.02-3_1.0",
+          "1927_l_2_r-0_0.07-1_0.7-2_0.2-3_1.78",
+          "1928_l_2_r-0_0.6-1_0.34-2_0.08-3_1.27",
+          "1929_l_2_r-0_0.23-1_0.07-2_0.63-3_0.23",
+          "1930_l_2_r-0_1.14-1_1.26-2_0.49-3_0.47",
+          "1931_l_2_r-0_0.26-1_0.85-2_0.81-3_1.82",
+          "1932_l_2_r-0_2.09-1_1.1-2_0.53-3_0.78",
+          "1933_l_2_r-0_0.52-1_0.42-2_1.45-3_0.49",
+          "1934_l_2_r-0_1.85-1_0.54-2_0.52-3_0.55",
+          "1935_l_2_r-0_0.18-1_1.09-2_0.09-3_0.2",
+          "1936_l_2_r-0_1.77-1_0.22-2_2.35-3_1.82",
+          "1937_l_2_r-0_1.27-1_1.0-2_0.16-3_1.15",
+          "1938_l_2_r-0_1.48-1_0.88-2_0.04-3_1.49",
+          "1939_l_2_r-0_0.73-1_0.83-2_0.18-3_1.35",
+          "1940_l_2_r-0_1.8-1_0.87-2_0.78-3_0.17",
+          "1941_l_2_r-0_0.44-1_1.78-2_0.89-3_1.23",
+          "1942_l_2_r-0_0.18-1_0.37-2_0.76-3_0.48",
+          "1943_l_2_r-0_1.76-1_0.06-2_0.68-3_1.54",
+          "1944_l_2_r-0_0.26-1_0.22-2_0.97-3_1.64",
+          "1945_l_2_r-0_0.43-1_0.43-2_0.66-3_0.26",
+          "1946_l_2_r-0_0.74-1_0.44-2_0.78-3_0.53",
+          "1947_l_2_r-0_0.11-1_0.78-2_0.58-3_0.12",
+          "1948_l_2_r-0_1.72-1_0.07-2_0.28-3_0.82",
+          "1949_l_2_r-0_0.74-1_0.68-2_0.75-3_0.29",
+          "1950_l_2_r-0_1.32-1_1.52-2_0.7-3_0.69",
+          "1951_l_2_r-0_1.02-1_1.13-2_0.33-3_0.2",
+          "1952_l_2_r-0_0.01-1_0.95-2_1.51-3_0.58",
+          "1953_l_2_r-0_1.8-1_0.2-2_1.49-3_0.54",
+          "1954_l_2_r-0_1.06-1_0.2-2_0.51-3_0.55",
+          "1955_l_2_r-0_0.51-1_1.21-2_0.15-3_1.56",
+          "1956_l_2_r-0_1.66-1_2.74-2_0.15-3_0.94",
+          "1957_l_2_r-0_1.7-1_1.86-2_1.33-3_0.76",
+          "1958_l_2_r-0_0.01-1_1.0-2_1.16-3_1.05",
+          "1959_l_2_r-0_0.05-1_0.02-2_0.45-3_2.22",
+          "1960_l_2_r-0_0.94-1_0.19-2_1.23-3_2.67",
+          "1961_l_2_r-0_1.33-1_1.54-2_2.08-3_1.22",
+          "1962_l_2_r-0_0.56-1_0.71-2_0.08-3_0.22",
+          "1963_l_2_r-0_1.44-1_0.27-2_0.41-3_0.05",
+          "1964_l_2_r-0_0.06-1_0.39-2_0.25-3_0.39",
+          "1965_l_2_r-0_0.3-1_0.5-2_0.84-3_1.51",
+          "1966_l_2_r-0_1.37-1_2.65-2_0.29-3_0.81",
+          "1967_l_2_r-0_0.85-1_0.38-2_0.27-3_1.24",
+          "1968_l_2_r-0_1.66-1_1.16-2_0.02-3_0.42",
+          "1969_l_2_r-0_0.59-1_0.11-2_0.37-3_0.79",
+          "1970_l_2_r-0_0.72-1_0.09-2_1.49-3_1.04",
+          "1971_l_2_r-0_0.01-1_0.3-2_1.19-3_0.53",
+          "1972_l_2_r-0_0.58-1_0.75-2_0.34-3_0.99",
+          "1973_l_2_r-0_0.05-1_1.0-2_0.13-3_0.05",
+          "1974_l_2_r-0_0.63-1_3.46-2_1.02-3_1.54",
+          "1975_l_2_r-0_0.45-1_0.3-2_1.14-3_0.11",
+          "1976_l_2_r-0_0.96-1_0.36-2_0.33-3_0.65",
+          "1977_l_2_r-0_1.59-1_1.69-2_1.51-3_0.07",
+          "1978_l_2_r-0_0.47-1_1.04-2_0.37-3_0.76",
+          "1979_l_2_r-0_0.79-1_0.87-2_0.82-3_3.42",
+          "1980_l_2_r-0_0.26-1_1.75-2_2.34-3_0.98",
+          "1981_l_2_r-0_1.15-1_0.57-2_0.59-3_1.89",
+          "1982_l_2_r-0_1.49-1_0.92-2_0.46-3_0.84",
+          "1983_l_2_r-0_1.29-1_0.35-2_0.63-3_1.91",
+          "1984_l_2_r-0_0.75-1_2.05-2_0.53-3_0.28",
+          "1985_l_2_r-0_0.43-1_0.42-2_0.42-3_0.08",
+          "1986_l_2_r-0_0.07-1_0.99-2_1.7-3_0.98",
+          "1987_l_2_r-0_0.71-1_0.86-2_1.89-3_0.98",
+          "1988_l_2_r-0_1.23-1_0.03-2_1.96-3_0.57",
+          "1989_l_2_r-0_1.48-1_0.69-2_1.18-3_0.13",
+          "1990_l_2_r-0_0.2-1_0.94-2_0.33-3_1.44",
+          "1991_l_2_r-0_0.47-1_0.3-2_0.07-3_1.05",
+          "1992_l_2_r-0_0.57-1_0.66-2_2.18-3_0.63",
+          "1993_l_2_r-0_0.48-1_2.22-2_0.75-3_0.41",
+          "1994_l_2_r-0_0.33-1_1.0-2_1.25-3_0.03",
+          "1995_l_2_r-0_2.07-1_0.49-2_0.51-3_0.33",
+          "1996_l_2_r-0_0.31-1_1.02-2_1.08-3_0.01",
+          "1997_l_2_r-0_1.91-1_1.01-2_1.7-3_0.98"
          ],
          "type": "scatter3d",
          "x": [
-          1.2167912776044933,
-          1.6176206650846505,
-          -1.6799844859644688,
-          1.2017851073709533,
-          1.7070588584012034,
-          -0.05320639604266275,
-          0.7556001644624895,
-          1.557029622487803,
-          0.608006375212285,
-          1.0179725793683083,
-          1.6365420380756674,
-          1.3019306350030213,
-          2.972524773046905,
-          3.0725985407625185,
-          -0.3348268175884932,
-          0.9456591589633503,
-          1.7275473737906202,
-          3.111613218417973,
-          -0.22917103351831725,
-          -0.6854923928685774,
-          1.748120032251875,
-          1.2305415868507292,
-          -1.7564627970907112,
-          1.0807137267264466,
-          0.8868293517099365,
-          0.5073451467865966,
-          1.9132806180402842,
-          0.6349449671950294,
-          1.625076797004073,
-          1.4516624732841938,
-          0.06299301875389263,
-          1.688108024404269,
-          0.3453969790710121,
-          2.6346055117612015,
-          1.0974362869786585,
-          0.49246865647423155,
-          0.8627089320896334,
-          1.4930864020479377,
-          2.112268293035107,
-          2.215873562198981,
-          1.4663216491832922,
-          2.1706787887065,
-          0.5603838469829939,
-          -0.03264269812205778,
-          1.4053541693291354,
-          1.0115938593253715,
-          1.8509369277757801,
-          3.6706753748630647,
-          3.220321858004882,
-          2.8672312871808083,
-          -0.800770701922636,
-          2.1557327121208925,
-          0.44673234131323936,
-          1.611106095446024,
-          0.08871994309704145,
-          -1.160912602766722,
-          1.2438269266167647,
-          0.6403073342991765,
-          -0.05038410734980636,
-          1.7354432862041587,
-          0.516516091596184,
-          2.797016516497954,
-          -0.25514906720515773,
-          1.9386110786254933,
-          0.7589457854060357,
-          2.758272157875278,
-          1.9983045685783836,
-          0.7537098573912,
-          0.07528811959882842,
-          0.9227104998506175,
-          2.9961523197549256,
-          0.573213529076575,
-          0.5085895833104375,
-          1.222387814134697,
-          0.9850295819690459,
-          1.758282386117921,
-          0.3779351650550452,
-          -0.5410330691004628,
-          0.48060867790945705,
-          1.0192188522172703,
-          0.14056181320468908,
-          -0.6139014554789917,
-          0.3344661329913208,
-          0.8214177304857746,
-          1.6196566917631479,
-          -0.1579336997313061,
-          1.725923611648402,
-          1.551126604086956,
-          0.1536530084873401,
-          0.14389917256276952,
-          1.0561839183923203,
-          0.9618304130335718,
-          0.22658507338498413,
-          3.231496335202466,
-          2.293933523105714,
-          1.590688044844191,
-          1.8742401692332415,
-          -0.6540355002607023,
-          1.2425959371534603,
-          -0.07050813463541994,
-          1.0466817341619612,
-          1.5505569328262319,
-          -0.8642698372564723,
-          -0.4732066298752666,
-          1.7752307288377538,
-          1.6015800454021791,
-          1.2607061619712754,
-          0.6478195518804126,
-          -0.9327341425689386,
-          1.1811122888894299,
-          0.38040001989631,
-          1.4136478982823735,
-          2.259045004063905,
-          2.854662133859585,
-          2.041912604177478,
-          -0.13150530135216254,
-          2.3303435074897187,
-          1.3587361439966161,
-          -2.0105225163135167,
-          0.3568495898773447,
-          2.5731360220429025,
-          1.0436436368795876,
-          0.6001773164045324,
-          1.6400560810329172,
-          0.11402991752587133,
-          0.2853871878757034,
-          0.6277434798742951,
-          1.4221181149044622,
-          0.7297076823755049,
-          1.1936553166314927,
-          -0.14141579222721923,
-          1.2032477313054004,
-          -0.48980306536517415,
-          1.479354258818502,
-          0.6777588461642792,
-          0.05902273871728303,
-          2.6018987915899814,
-          1.571530696900742,
-          1.911750123972265,
-          2.4356771037997964,
-          2.455409482172029,
-          2.068704980134618,
-          2.845399681250379,
-          -0.13260729052125386,
-          1.5130478674102508,
-          1.118594423056874,
-          1.683861113931992,
-          0.9955182036232086,
-          2.3548929315218388,
-          0.15097656791796465,
-          1.792740176305772,
-          2.119566116981092,
-          0.45114614036774703,
-          2.1389106114800476,
-          2.583936440963483,
-          0.6137629112886326,
-          1.6942110429452255,
-          1.9230334372357292,
-          2.7831145199925063,
-          -0.5095516224699548,
-          1.819973642346786,
-          0.8584155807056619,
-          0.9220919536686816,
-          2.9396914427283845,
-          0.20937600872704754,
-          0.39434436648936766,
-          0.8944070407113217,
-          0.8515705989358143,
-          1.175365240655334,
-          1.8708175518634642,
-          1.1016077186900108,
-          0.034350360392699786,
-          -0.3206416595298065,
-          -0.6792080900537842,
-          0.29616674193053694,
-          1.0192593090312123,
-          0.35147837049534647,
-          2.733441339384263,
-          0.6392954995504265,
-          2.32240432481173,
-          1.6939832403270372,
-          2.0386542873197353,
-          -0.06270027552789914,
-          0.8183390728141953,
-          0.5138635331511676,
-          0.049824537930205026,
-          0.3846126902374868,
-          0.9180575176081687,
-          -0.6510533950619155,
-          1.0843410321982112,
-          -0.3126605607992783,
-          0.06384955392512082,
-          2.450799466308739,
-          0.9011273743405175,
-          -0.7353107035927715,
-          2.0251346045575813,
-          0.7258885246192786,
-          -0.967094562906154,
-          1.020841482137772,
-          2.0945732912205672,
-          0.7757590444518137,
-          1.0716641397508513,
-          0.16202078532068154,
-          2.634862851160347,
-          1.2018871942914828,
-          1.2971671472249076,
-          2.5857745680463387,
-          1.0939064816604498,
-          0.5087755853828871,
-          0.8076968157183728,
-          1.8967077783687034,
-          -0.1074614086276906,
-          1.809310903931301,
-          1.1650406365377393,
-          1.4412398221702711,
-          1.4550450942422217,
-          1.7240750507443041,
-          -0.14884011961586352,
-          2.9178480016066657,
-          1.2742150351301673,
-          0.7074052500923897,
-          0.9844528463564254,
-          1.7834681062089173,
-          0.6477826811025432,
-          1.1294466425474443,
-          -0.6001892867621594,
-          0.8572250468293068,
-          4.942331010806686,
-          -0.716497577143866,
-          -0.43842671877540407,
-          2.1185414093359496,
-          -0.20996502866717615,
-          1.2896698121381407,
-          -1.2082780198800926,
-          1.804787443527399,
-          1.1305422924283584,
-          0.08168386267159877,
-          -0.47908928809752194,
-          0.9121916483651464,
-          0.8469194955185972,
-          1.1007628229015989,
-          -0.29296601240352804,
-          0.16973784927994828,
-          1.9831784809990212,
-          1.3742167348024783,
-          0.39176085193546073,
-          -0.009203152437389894,
-          -0.4871542357097709,
-          1.10413338802134,
-          0.5695852913127156,
-          0.5043512471206595,
-          0.3931746582136012,
-          1.5033287738455665,
-          0.9552912432404147,
-          -0.9185894235593031,
-          0.8805455987436649,
-          -0.46350310330440614,
-          1.3342999637510085,
-          1.0803850387636549,
-          2.4990120682335486,
-          2.3542109252450834,
-          1.1938090083311184,
-          0.7738247123192391,
-          1.0630776754292401,
-          1.4159226590575908,
-          3.036042832840112,
-          1.2712114752799735,
-          1.3898476493774197,
-          1.24540974177134,
-          -1.0092153440255616,
-          2.901913148662501,
-          0.41559022531176126,
-          1.3651606324751693,
-          1.6019362371032422,
-          2.473737578076169,
-          1.9845698459571985,
-          0.5194565743932242,
-          1.924098128840789,
-          0.662250967298065,
-          1.5687696953394488,
-          1.8782139981549948,
-          1.6306798620978804,
-          0.6719296296353234,
-          -1.9362009437781151,
-          2.7175802050443183,
-          2.987534161023367,
-          0.847622502728823,
-          1.1381475563675751,
-          -0.09039219880743876,
-          -0.12750424708649621,
-          1.6967578627143014,
-          0.39403701605249,
-          2.2838887832702683,
-          1.9546668160293867,
-          0.3461029057680356,
-          0.4296032604032568,
-          0.9944128660318169,
-          0.40558630142202723,
-          -1.3919818895561402,
-          -1.3359536188014358,
-          0.47383462893981254,
-          1.798504904615669,
-          1.9595080570233296,
-          0.7371831574738849,
-          2.116430748782207,
-          2.0788495665089632,
-          0.1100374434428586,
-          3.8906429903991375,
-          2.4536341508749477,
-          1.0160366630134783,
-          -1.1811752376656774,
-          0.28972910168809207,
-          1.9191861536769532,
-          3.0988412303524395,
-          0.7856110680232217,
-          1.5745617175367155,
-          1.8027275724376977,
-          0.5394765788386862,
-          1.4249196023936836,
-          2.358357166430605,
-          1.6957457924726427,
-          0.6881729471254467,
-          2.4478577661513636,
-          2.6382811831364217,
-          1.513042923365815,
-          0.057036627550235974,
-          -0.1554960421287641,
-          1.4955165241448958,
-          -0.1963398992102119,
-          0.48889478767121486,
-          1.0284689404384104,
-          1.0170688251997262,
-          0.5010212569441146
+          -0.09982727326679673,
+          0.772877579235172,
+          -0.8260212969531515,
+          0.14489921943390896,
+          -0.649514679405229,
+          0.11588687554182829,
+          0.0036665583424635765,
+          0.9615720808894471,
+          0.7830979872046594,
+          2.314556825119637,
+          0.65848535817852,
+          1.8754462013299569,
+          -0.41667395999574075,
+          4.065037212106897,
+          -0.15356605975682772,
+          -0.0006581295563094252,
+          1.9980068955673609,
+          0.5167867117702788,
+          0.2751219597675268,
+          -1.9052302979370794,
+          0.14786055632737297,
+          0.15210000237102084,
+          -1.8552663388075066,
+          -0.08460257531898095,
+          0.09633096190757248,
+          0.2284427854606439,
+          1.1591347094785323,
+          0.15079211771311846,
+          4.82719394311428,
+          -0.539488063681101,
+          -0.7150025142509332,
+          -2.77554215378347,
+          -0.2916748522742321,
+          1.2364149408456506,
+          2.103064060950742,
+          -0.5459896694009863,
+          0.8092913974748651,
+          2.1510221204806177,
+          0.6227658016352996,
+          0.07592873263835356,
+          0.6951705641340449,
+          1.899671821698494,
+          0.5330745193460096,
+          -0.8070171466711568,
+          0.5275189316494411,
+          0.08029863989078549,
+          -0.6901535238590122,
+          1.03607227741895,
+          0.3988729257637175,
+          2.5027072317930497,
+          0.05953458883416414,
+          0.3496164552617588,
+          0.38319970120657265,
+          -0.15909000484027652,
+          -0.595535291945034,
+          -0.7503935238009919,
+          0.23284331764823657,
+          2.1649775864257963,
+          -1.0977886157953032,
+          -1.5005885759905284,
+          0.8739879042752433,
+          1.5306286340038895,
+          -1.3033281878646013,
+          -0.0009016112531502106,
+          -1.5121888303100461,
+          -3.3580500894215444,
+          -1.3419417375928473,
+          -0.13197555020293483,
+          -0.8272343904666986,
+          3.786459146450863,
+          -0.5453341528789559,
+          -0.7783083383429991,
+          0.7071022085194598,
+          0.4904841385417215,
+          0.7735449629853006,
+          -2.1802600186917456,
+          1.156548432292765,
+          0.6915045190455358,
+          1.1241121408650936,
+          -1.8146995878152434,
+          0.44376481444316357,
+          0.7530042530282092,
+          1.8236566041595574,
+          1.7351040855728745,
+          -0.3718217726402863,
+          -2.416405550928909,
+          -0.3026842822530131,
+          0.4712189028752094,
+          -0.5591081179017707,
+          2.3428937141189046,
+          -0.746459755655555,
+          -0.20738223044908255,
+          -0.7947942458670647,
+          -3.4196895986094513,
+          -0.24288356425263483,
+          -0.9270088504445188,
+          -0.793369870629563,
+          -0.8494025637893708,
+          -0.523554778198697,
+          -0.41858328635227166,
+          0.024222459508638692,
+          0.9478925742290644,
+          1.0477943327809576,
+          -0.057686700879403904,
+          0.5030228540425464,
+          0.33271641689113757,
+          1.4924589700039685,
+          -0.28138845313275285,
+          -0.7498231387531965,
+          4.0046128987687215,
+          0.5167820964638292,
+          -1.5035124363999885,
+          1.3368191741270532,
+          -1.66009314109973,
+          -0.44699248745512304,
+          -0.10023405234574945,
+          0.5341350361056741,
+          -0.5363876533045161,
+          -0.038642324210827056,
+          -0.09938606789863103,
+          0.02452499846456642,
+          -4.920694318986176,
+          -0.4793821051073821,
+          -1.5848462430649213,
+          -0.6960467322893115,
+          -1.6868404128848835,
+          -0.5397163788783771,
+          0.45411558009246294,
+          1.0141271011776956,
+          1.8808359437325504,
+          0.5153213507166768,
+          -0.26183146615002373,
+          0.7584684134074677,
+          -3.658148840168823,
+          0.7517294396513869,
+          0.4640824224236124,
+          0.27458871633324994,
+          1.3323468715850224,
+          1.123672189373788,
+          -0.025232126481592655,
+          0.3673938907925722,
+          -1.4853258632772954,
+          0.9156601122120942,
+          0.7787814240244829,
+          1.0398422594195338,
+          3.1223891513727176,
+          -0.14470214792122452,
+          -1.6681126036445921,
+          -1.8686616341043036,
+          0.44722402757430146,
+          -0.15161221400814698,
+          -1.4383807871715708,
+          -1.5947503583890739,
+          -1.9254386583661125,
+          -0.3395547100499729,
+          0.004891151540757959,
+          0.5908862645408847,
+          -1.1006138452651015,
+          2.421718434030817,
+          -0.8971726068281869,
+          -0.034021278462578755,
+          -0.77881070355798,
+          -0.003648332268483365,
+          -0.11091465567773018,
+          -0.6384199501210744,
+          1.6079290875511765,
+          -2.3668630867113136,
+          0.5424318145155569,
+          -0.1024803317044044,
+          4.532423357685457,
+          0.1651020275406814,
+          0.016153653535314682,
+          0.08176888516857275,
+          0.9268328051740871,
+          -0.00512947773748385,
+          0.9471882631833556,
+          -1.3962670725231408,
+          -2.0251031094652,
+          1.11263134448464,
+          0.47168427392951207,
+          -0.436088435918877,
+          0.8840560434576368,
+          -0.42914151430146835,
+          0.21536076679820398,
+          0.7734113290182959,
+          -1.9518161182384792,
+          0.011206583303230726,
+          -0.8803287756601677,
+          -0.5062797150849089,
+          -3.936879659557229,
+          0.09268420168704916,
+          -1.6167848591263474,
+          -1.6406147758688734,
+          4.526114798491152,
+          1.451235326796302,
+          2.0281413218464435,
+          1.0789078685987994,
+          -2.4269773363586467,
+          -0.7237609210170468,
+          0.07047319014990545,
+          0.734827805608123,
+          4.656974829047149,
+          1.2179388036831702,
+          0.2745390189473847,
+          0.6804929075194942,
+          -3.463415151929185,
+          -0.6316554093987453,
+          -0.9797127646804769,
+          -1.8993430990033642,
+          3.314416253872656,
+          -0.774869621818317,
+          0.9732235502258653,
+          -0.5800310047678594,
+          -2.0537170154086732,
+          -0.019090582573182944,
+          1.281042653254259,
+          -0.8570938550389011,
+          -1.6828021404974252,
+          -0.44976706281832174,
+          -0.256486455541615,
+          0.5044261107341587,
+          -1.280852382131168,
+          -1.2597083570428331,
+          0.06110949093907111,
+          -0.032516916680572244,
+          3.168084265713207,
+          -0.2769741173504165,
+          -1.4568613291812376,
+          0.08053835539821205,
+          0.21355147603619373,
+          -0.22906970581737232,
+          -1.6497420257315778,
+          0.09476864873271412,
+          -3.3927466248238316,
+          -1.349214809570947,
+          0.12758311489283047,
+          -0.3539867446946279,
+          0.18186125363878772,
+          -0.2516054691989957,
+          0.3530904393977935,
+          -0.4104627120092126,
+          -5.296036111408348,
+          -1.7362282038943055,
+          -0.17669999848917647,
+          1.113178445603578,
+          0.1682898526363644,
+          -0.6223911363906797,
+          0.06371195666979124,
+          -1.394848916477483,
+          3.1064718763743504,
+          0.7244150034508406,
+          0.8447695116766456,
+          0.3361702663098002,
+          1.248145378794262,
+          -0.1077229447796014,
+          0.008786192625957102,
+          0.007006458107257227,
+          1.2031540442829516,
+          -0.42440235340903565,
+          -0.7055305614402863,
+          0.8443653072199205,
+          1.8269401132022043,
+          0.3813746708933264,
+          0.1595315205931397,
+          0.29158980761459624,
+          -0.10170962607255697,
+          0.2122567530510803,
+          -1.519882607811369,
+          -0.1023470185140519,
+          -1.6873336825041785,
+          1.1070609880737008,
+          -1.0652561190740482,
+          0.8777431218694001,
+          -1.0608674667540952,
+          1.4850035023646286,
+          -0.41315713504417445,
+          0.3573613308562492,
+          0.3305125255566117,
+          1.295563915385044,
+          0.003991286259516457,
+          -1.5071543086093784,
+          -2.763644806709662,
+          -0.5022567022218285,
+          -0.006510687801331672,
+          -0.0398897374460957,
+          0.2620534035042726,
+          0.22412887384992355,
+          0.16542828943284435,
+          0.013633029282662515,
+          -2.1176724940983562,
+          1.549021496192632,
+          -0.1808338699586171,
+          0.5817948099646489,
+          -3.6882453898386127,
+          0.3556183749583142,
+          0.14926055851424436,
+          -1.8639487840859665,
+          2.20439362200371,
+          -1.1724503810489066,
+          -0.9605544417181475,
+          -0.9613343175411305,
+          -1.9665895305182164,
+          1.1186770706806084,
+          1.059343131001253,
+          1.7515468015732694,
+          -1.5572692978589642,
+          1.6705120141991958,
+          -0.2744403148750881,
+          -0.9491872904028762,
+          -3.206010605445488,
+          1.942806478407486,
+          -0.30599955854975747,
+          -0.34933786721246246,
+          -1.9733063877466606,
+          -0.21057384941646493,
+          -1.195602783314644,
+          -1.4418405067094908,
+          1.984974088122418,
+          -0.31685477584414123,
+          -0.6455770964629819,
+          -0.18171261074206085,
+          4.00696832067016,
+          1.0110113181740643,
+          -0.8583216300339177,
+          -0.2543260683565349,
+          -1.4645149852610797,
+          0.23257043492685917,
+          -0.6938371446272147,
+          -0.4650238879965639,
+          4.06008584231356,
+          1.7558675837495301,
+          0.7115148002905122,
+          -0.7830522010278,
+          -2.2636631067596547,
+          0.937240231898199,
+          1.012020505259381,
+          -1.36790669309591,
+          -0.15367032283712545,
+          -0.4038445449497042,
+          -0.5022877532106547,
+          0.4904840837364547,
+          0.9550872903738087,
+          0.7878405994067871,
+          0.5803330285981049,
+          0.08417857592146714,
+          -1.040568835409084,
+          -0.8370852946356362,
+          0.2651231368450668,
+          0.16648424260688865,
+          -4.0327599130906355,
+          0.41151154680158836,
+          0.3585833317371361,
+          0.047224197665102684,
+          3.6723504423607105,
+          -0.05873054784618994,
+          -1.1731691250881542,
+          -0.01144925787611653,
+          3.313012487986535,
+          -0.7860126970369651,
+          -1.2055354113394394,
+          -0.29199086555030174,
+          -1.526941536006046,
+          -5.292982750276624,
+          0.849833912911037,
+          2.921968308664157,
+          -2.010190280051646,
+          -3.9130720605177376,
+          2.742977335009046,
+          3.4016764561879347,
+          -1.217947370908162,
+          -0.8377515376688107,
+          0.8499626651059357,
+          -4.575032406077712,
+          2.619225359858903,
+          -4.509507557084977,
+          -2.8175775380037558,
+          -4.209204182263693,
+          -1.4958847916420028,
+          0.15252938396463092,
+          -3.27294430436222,
+          -0.9057461676694474,
+          1.131050410002176,
+          -2.9556419162430623,
+          -2.467503129402379,
+          3.051129651102097,
+          2.6514993593926146,
+          -0.7012212364375657,
+          -4.670537215461498,
+          -1.254619260322698,
+          6.887167563557414,
+          -1.7526708935452455,
+          -0.7859015518044888,
+          -0.592397821602016,
+          0.16342734828149075,
+          -1.2356310876146346,
+          0.6514359744249503,
+          0.03425391631473899,
+          -1.7866201205298307,
+          1.9253632914438417,
+          0.7131477222385237,
+          0.6630942500432707,
+          -0.7102965159927244,
+          0.6936526320801117,
+          -0.009339813592660985,
+          2.095366775700359,
+          5.558070743454331,
+          -5.144813726692524,
+          -0.10533711416051823,
+          -3.489921769589786,
+          2.583035102041714,
+          3.2271412365893397,
+          2.4653947632975295,
+          0.7586762919293081,
+          1.0172740484695226,
+          -1.9264352286616597,
+          4.219689666221021,
+          -1.4851485616593476,
+          -4.383660154830651,
+          0.49763594436134034,
+          3.0756880956826325,
+          -2.5554384496998903,
+          3.137558342437589,
+          0.3472737471060158,
+          2.6614253179425846,
+          0.3167198038553549,
+          -2.2775752517460996,
+          2.3571135932254257,
+          0.8638159903192126,
+          -0.5788011106697697,
+          -3.046533184946499,
+          -2.0448370251126784,
+          1.2601715686391775,
+          1.971130076564149,
+          -1.8059041720356235,
+          -0.4829404543759019,
+          2.20984870535749,
+          0.14582160172530223,
+          2.3630658474425354,
+          -1.8630904729613578,
+          1.9226337994242892,
+          -0.7832553494453458,
+          3.0084496778229943,
+          -1.5807442988266442,
+          3.9715735429706496,
+          1.7250083788370727,
+          1.2668050386931726,
+          1.8808156219730208,
+          4.060975562052605,
+          2.368176536067774,
+          2.365597331232461,
+          0.12304543720923157,
+          -4.734759318557799,
+          2.1595640718300197,
+          2.7517323471998796,
+          -5.5420211772061245,
+          2.8384751969661832,
+          1.7458898121848063,
+          0.21090798672657068,
+          -3.668529744159828,
+          0.3773013994070899,
+          -0.5511660823292981,
+          -1.2185154468443318,
+          4.409965537378589,
+          0.5838325247162909,
+          -2.6006091285820547,
+          -4.23979670330789,
+          -6.136847528951723,
+          2.448561489048484,
+          1.2896442054629025,
+          3.1354386843679727,
+          1.4149767098309047,
+          3.0243177167799593,
+          0.7485155355204995,
+          -2.7990094410596558,
+          -1.3400996001929777,
+          -1.6035227081020906,
+          -2.6739549877698012,
+          -3.9966014069262954,
+          2.359017898606559,
+          0.8275077380322406,
+          2.043455758161392,
+          -1.3415018771824256,
+          0.37262224932941795,
+          3.305228381112448,
+          4.042117257459299,
+          -0.5123258755579797,
+          -0.6188482792082178,
+          0.35127031998221014,
+          0.08897212534572961,
+          -4.964581318918525,
+          -6.2575999906286865,
+          2.8139032301726057,
+          2.7918636030646344,
+          0.30730535233050965,
+          -4.013380748305228,
+          1.9538879782730547,
+          3.704034056568382,
+          -0.33632860676240867,
+          -1.116098908485185,
+          0.9965540036004389,
+          0.8727181560482662,
+          -4.563574923951122,
+          -0.17441012548028373,
+          1.9549334257271047,
+          -2.910699013727418,
+          -2.5940225164498063,
+          -2.6895589979824863,
+          3.1548842102768777,
+          1.257030354320361,
+          -1.5913288214061672,
+          -2.000829945183168,
+          2.1290903204790546,
+          0.028215206519590003,
+          -1.5373730012621245,
+          -2.239025501172392,
+          5.399519121459074,
+          -2.8974979307794513,
+          -4.269960340977464,
+          -2.061736831002871,
+          1.2499658181069133,
+          -3.6774986245069985,
+          -0.18260637632309024,
+          -0.3086418462545933,
+          -0.4875418836100119,
+          -3.710510318217403,
+          1.084491279209801,
+          -1.400994200533268,
+          -3.0645480666801714,
+          -5.239024225463773,
+          -5.071026602886885,
+          2.9603712591566738,
+          -0.1985706060662514,
+          -2.023560972568366,
+          -2.654941093820642,
+          2.5691319380963216,
+          -0.7438952490458752,
+          -4.423616478844071,
+          1.233152733162217,
+          1.0268376623415512,
+          0.8766757486378246,
+          -1.083858634008804,
+          -1.7732472894780535,
+          -0.500547240724469,
+          -3.199142540878571,
+          -0.757939547412281,
+          -0.9753080902816172,
+          -2.814791677028316,
+          4.569909582755335,
+          2.889026628483956,
+          1.7030117065866839,
+          1.7624518184837192,
+          -3.2762329048268612,
+          1.3856689958929518,
+          -3.2674746769172516,
+          1.5999383867894703,
+          0.5705686508958441,
+          -1.9416598553864806,
+          1.0096320497339164,
+          -0.6884168883779269,
+          -0.12736346267631307,
+          0.8711760052003145,
+          1.70937775663494,
+          2.947543277040004,
+          1.4143611551029713,
+          3.674401705206192,
+          1.7291253525027659,
+          2.4777305928794013,
+          1.1969709786703417,
+          3.047372492921687,
+          0.00018091108761608964,
+          -2.037012639899613,
+          -0.5971257175119831,
+          -0.903891292203658,
+          -0.878920684524589,
+          -2.3264835722550568,
+          -2.312405675574949,
+          3.4448509046470095,
+          -5.092034588552932,
+          -2.3686541059327637,
+          -1.8853623746658796,
+          0.14377331717700478,
+          -0.31782749669607985,
+          -0.5726286613484877,
+          -4.398425388825912,
+          -1.1549459030464457,
+          2.670865051640964,
+          3.093886274318639,
+          -3.5691361139609747,
+          4.207715504900355,
+          -0.05120506931445461,
+          -0.5171542057435953,
+          -0.8651038964156954,
+          -0.9742986550060863,
+          2.0132434107552197,
+          -0.29750256057544494,
+          0.8450209008259925,
+          -0.33533858841880304,
+          -6.029011160611138,
+          -2.57396349758736,
+          -1.1721816634579396,
+          -1.3892525526906558,
+          3.192737774815623,
+          -1.0998419265632988,
+          1.086560583902165,
+          -0.22305938927771748,
+          1.0015440606846806,
+          2.276670757211195,
+          -1.8784045661860478,
+          -0.8735267476584359,
+          -1.7788599961964486,
+          0.37123729418455564,
+          1.8451449107265325,
+          -1.4028108458965454,
+          0.4349502639778847,
+          -5.039089762574826,
+          0.782061864145787,
+          -4.409433470315712,
+          -4.087774840762875,
+          -1.9453203980344682,
+          1.5071055269080291,
+          0.9496158810707757,
+          0.4181725049569209,
+          0.2007711095658918,
+          1.207495267723988,
+          4.292878290928423,
+          -1.855030184528451,
+          -5.806649211200156,
+          2.214846672486734,
+          0.19041107083879746,
+          -1.5425384439758612,
+          -2.2731412874244095,
+          -2.198158406611567,
+          -0.8513191425963769,
+          -0.5002736729092514,
+          5.830208810863151,
+          -2.5211813213827163,
+          -1.7002248452011688,
+          -0.1074121513182545,
+          -1.565914957591825,
+          -3.1074437109492052,
+          -6.624385897752632,
+          1.663065462184404,
+          4.149386220421238,
+          1.403796399386681,
+          -1.5791726008517524,
+          -1.9730430368227645,
+          1.0354387556858557,
+          1.8584389224221982,
+          -1.7486780949302754,
+          -0.8278490525578415,
+          -2.5863316661780638,
+          -4.785196054501708,
+          -2.050396286126225,
+          -0.4214306754741722,
+          1.681836461028572,
+          3.172001337189425,
+          3.28984967444352,
+          1.9242986706170158,
+          4.03856806409124,
+          1.0119457718270504,
+          -1.454335906988309,
+          2.8008713509171805,
+          0.9982632886169667,
+          -0.4937907282206094,
+          1.023523107537768,
+          1.0056528416494488
          ],
          "y": [
-          1.5198290026710266,
-          2.2223452564679747,
-          0.7064331634091139,
-          0.602259715754468,
-          0.09679639110454863,
-          0.89141583821961,
-          1.5558584593174067,
-          2.7440102340757324,
-          0.1749881015938134,
-          3.6980404568174263,
-          2.2186081743344968,
-          0.49437941408081154,
-          2.3824333409054326,
-          2.9046798820816377,
-          0.8759227738969604,
-          0.17185986238710327,
-          0.85102833523564,
-          1.5227667423667182,
-          -1.2994555236698986,
-          0.6818192824733171,
-          1.0136556638374574,
-          -1.161055997349271,
-          2.4225951977899767,
-          3.340722611525677,
-          0.5493318224319925,
-          2.683972030069338,
-          1.568352148542643,
-          -0.4747785412383949,
-          2.961104291291467,
-          0.6804875500809651,
-          -0.32940510332508177,
-          0.4460653161577577,
-          0.788089406522519,
-          0.8031888769023731,
-          -1.007303899675303,
-          1.8341005719100685,
-          0.8198973986486422,
-          0.42081385885306977,
-          -0.05951858469417659,
-          1.4880134863760097,
-          2.422258508576327,
-          -0.05104195028669367,
-          1.199982199863687,
-          0.8766884009338395,
-          -0.13858073373438273,
-          -0.025943339699428192,
-          1.5368246839556758,
-          1.4136263777143354,
-          1.6062371934962887,
-          -0.563929264900654,
-          0.6588002673067044,
-          -2.3078999524973884,
-          3.1511640414257696,
-          -0.1328828133542732,
-          0.7947074783714859,
-          0.5124554435934073,
-          -0.243358737609354,
-          2.5206009017632116,
-          0.219739274521202,
-          -1.01149132546182,
-          0.18206270957351778,
-          -1.0219935227480632,
-          -0.4660382014488722,
-          1.5040938319439419,
-          1.2739357369313382,
-          1.4402480302103982,
-          -0.5023889816895173,
-          0.561591111963293,
-          1.3073093537363383,
-          0.8115231811055086,
-          0.18784286946593265,
-          1.7055485647959867,
-          2.34648059555603,
-          -0.9010744288179857,
-          -0.1704617092886238,
-          1.8638273441557671,
-          1.8221564326571629,
-          2.4050555856028932,
-          2.6318888483702207,
-          -0.6950177929753076,
-          2.416834082138803,
-          2.492264509475059,
-          1.7582447761547977,
-          2.40220958950327,
-          1.4546727409425804,
-          0.9356024593752921,
-          2.4926099474640355,
-          0.040267665167065925,
-          2.236619742142975,
-          0.045290166307077384,
-          0.9252187033486918,
-          1.7681169524306939,
-          1.64837277770979,
-          0.6475210544133521,
-          1.1795233015374615,
-          -0.4089842999517348,
-          0.9883898855449564,
-          2.1093715694592854,
-          0.40627080631425805,
-          0.06491716357245303,
-          2.2803520208371357,
-          0.2326525140618355,
-          3.244682255430256,
-          1.3519610742080557,
-          0.6288080487384736,
-          0.11434760224673468,
-          0.8357862159585057,
-          0.9294804472725808,
-          0.7500815151604714,
-          2.0018704135410883,
-          -1.8183042862021788,
-          0.05137809879103317,
-          0.11283741163714545,
-          2.1312990502497464,
-          -0.1482072919717099,
-          1.01578477336065,
-          2.887858987958639,
-          2.7804527512924064,
-          1.6893825429756253,
-          1.2615185967258302,
-          2.5452264458848193,
-          1.1398252713260533,
-          0.9004493168150316,
-          2.688157052902791,
-          1.5038599341724908,
-          -0.33834182532193946,
-          0.6763509552908389,
-          1.8983461250755291,
-          4.096695513772053,
-          1.0557397733263678,
-          1.5002383506982397,
-          1.4380052585187268,
-          1.0487166793938072,
-          0.4543446056374155,
-          -0.3126082671526902,
-          -0.3882924314848524,
-          0.21169073522503656,
-          2.3878459703459733,
-          0.03823757922679816,
-          1.1225551569507715,
-          0.9548144715748379,
-          0.6276816464295158,
-          2.0286987158898997,
-          2.2757718207583224,
-          1.2472881256277393,
-          0.824541564958237,
-          -0.2864694935694123,
-          2.2344569787646913,
-          0.3495260005407831,
-          2.4653794274985183,
-          3.342857008287408,
-          0.5217673921415715,
-          0.5135073844545147,
-          -1.2259354179580777,
-          -0.7562302344795768,
-          2.118912271707174,
-          -0.44853094203370025,
-          1.5512559223347098,
-          1.0744066719261474,
-          1.2305336672113392,
-          1.946243671615314,
-          2.770641872462673,
-          1.9437016343998412,
-          2.001326134799592,
-          0.7176879580750705,
-          2.2032127822922853,
-          1.0984376239245837,
-          1.8247017407860975,
-          1.240487649467761,
-          1.7435106703345966,
-          1.1440309019792263,
-          0.8105004236078709,
-          1.1396819652852321,
-          1.9751071432888088,
-          1.8854705829400955,
-          0.8233249072917574,
-          2.6516389486858793,
-          1.2341941514982053,
-          0.7803129549761602,
-          -0.7993566812164734,
-          0.02759626038937868,
-          -0.9921855663492136,
-          0.5845495169612505,
-          0.7526070600525643,
-          1.4280587476511655,
-          1.2696036940632442,
-          -0.9102541812810507,
-          2.9373842411793847,
-          1.4150725096990842,
-          1.849456255104331,
-          2.0214581040153767,
-          0.19035554029635493,
-          -0.11714176120461284,
-          0.31406549605038203,
-          -0.275870999901924,
-          0.09540878628692606,
-          -0.7210471256296629,
-          -0.47038013467571727,
-          1.4932541761930318,
-          2.132842211712895,
-          0.7891652813454197,
-          1.6966315012177469,
-          1.2515928072617375,
-          1.9017646879402839,
-          2.040026719862688,
-          1.938595803175112,
-          2.055798238466572,
-          1.300175049284521,
-          1.674505033154822,
-          1.544612504184037,
-          0.33063376088124663,
-          2.2014170317870247,
-          3.480650917512143,
-          1.1585496531596429,
-          0.822013792048655,
-          2.8223928325513974,
-          3.010903035413434,
-          0.18104755502627912,
-          0.8709200119531476,
-          0.930780592058482,
-          -0.9890341961712958,
-          2.0681610348759842,
-          0.3866363993767641,
-          -0.6647890014327629,
-          0.7574835504739781,
-          1.7065207734206274,
-          -0.3443404721448917,
-          -0.20430893253951,
-          0.4781694585118518,
-          -0.2699230873275471,
-          -0.5075851347639375,
-          0.8852111783654497,
-          0.10753503228434236,
-          0.3474020906685117,
-          0.67194354932324,
-          1.214864709463865,
-          -0.4899362046402225,
-          -0.10983948926990728,
-          3.079156698466804,
-          1.7156090679730909,
-          0.8123060685782348,
-          -0.017245369286841505,
-          -0.8575714451669172,
-          1.0123900761940074,
-          1.3678195684438652,
-          1.311389937696427,
-          3.2187433575308493,
-          1.718331543194246,
-          1.9163289534385712,
-          2.368189023748578,
-          1.7168795348194514,
-          0.7389965106483204,
-          0.9032505946696451,
-          0.11388734865234973,
-          1.0100670085225807,
-          0.3646934656317964,
-          1.9626135747116324,
-          1.5177207640270725,
-          3.2033098152577577,
-          1.928851246050224,
-          0.7122929444505235,
-          0.993599247396862,
-          0.9532505460972978,
-          -0.6964581544464707,
-          -0.09075371582224645,
-          0.5831003638806108,
-          1.470967069785162,
-          0.6367508177471696,
-          2.0553655467507066,
-          0.7820316150392707,
-          0.47796571015824363,
-          2.058136112567422,
-          1.8248840377287843,
-          0.9585420376702144,
-          -1.4861665677213565,
-          1.6141058052896842,
-          1.5763560176138087,
-          -0.5714891875762731,
-          0.20181410610303396,
-          0.3701137624272849,
-          -0.741716619866104,
-          0.6295722855303296,
-          1.0486838849015436,
-          -0.312840273092726,
-          1.63936284348663,
-          1.1180494666897745,
-          -0.5449093695931155,
-          -1.4153632620785297,
-          2.6133589290794843,
-          2.305776578287521,
-          -0.16033685610015147,
-          0.8738584501226818,
-          -0.02643411063588519,
-          2.2553231895309382,
-          -0.22422500835558057,
-          -0.11758604262332417,
-          1.0335515968182427,
-          -0.14506791648253992,
-          1.3469602968844812,
-          0.18468888521189253,
-          1.1869270525544977,
-          1.915529791724743,
-          1.7577341142099039,
-          1.0448231319322847,
-          1.963737877173107,
-          -1.1592689353197678,
-          0.7238679135188348,
-          1.7037958837508185,
-          0.8279686378843305,
-          1.8995987379794066,
-          1.113160011392783,
-          2.669383459547647,
-          -0.059340687274826553,
-          -0.030095076489489836,
-          1.0475146347612885,
-          2.124414149970889,
-          0.33221760571171,
-          0.6618132830175315,
-          2.6766508027613596,
-          2.0634357218674593,
-          1.191442047344609,
-          0.6723924739078883,
-          0.7208941436400534,
-          0.9553723769335578,
-          1.7769218547601917,
-          2.4773725606308608,
-          -1.5701475485803527,
-          0.16699174416056006,
-          -1.3164448569274905,
-          -2.635200227540102,
-          1.9790358254675167,
-          1.79668416009162,
-          1.2868638428193504
+          -1.0491986821923498,
+          -0.05437858569653544,
+          0.044044160252821776,
+          0.8207287687728788,
+          0.047766699320521105,
+          -0.06532114325289914,
+          -0.0028634383701368485,
+          3.214351112107314,
+          0.58489617605996,
+          0.8842826922688832,
+          -1.627351045465088,
+          0.15533521446182103,
+          -1.6156046452761577,
+          0.4449645349791226,
+          -1.812783139070095,
+          0.16250877435746647,
+          1.313440827623049,
+          0.8280847355371325,
+          -0.18300998313920055,
+          0.3834558311939323,
+          -0.010271474053066913,
+          0.733665785905343,
+          3.4287020546241016,
+          0.017355800393989266,
+          0.017363885403192027,
+          -0.7161800695316178,
+          0.20327780864495515,
+          0.4752053133486313,
+          -3.0597986903584258,
+          2.113291140625301,
+          1.5615477074456052,
+          2.536137370546727,
+          0.7623851957871649,
+          -0.6699633289601284,
+          -2.853626798465953,
+          0.8193179530165188,
+          1.9063338044846878,
+          -1.6636904072002028,
+          1.918136509655349,
+          -0.18971530543313478,
+          -1.1192316302766752,
+          7.277348626294746,
+          -0.11177000280319282,
+          1.02262523325528,
+          -0.8588014259417599,
+          -3.4299894497620333,
+          -1.302611527607886,
+          -1.1795617202659614,
+          -0.225671800177424,
+          -1.2405314155061207,
+          -0.035850644403708345,
+          -1.634494568660205,
+          -0.3987205179708208,
+          -3.6381202681925537,
+          0.8119382926190009,
+          2.1351205403431592,
+          0.7431313259496929,
+          1.6136822602484897,
+          -0.8006597076423327,
+          -0.5736742789609098,
+          -1.5884016258176556,
+          -0.732795691247899,
+          -0.13870514873115158,
+          -1.187268797747934,
+          1.8335487693235781,
+          0.33442932945635007,
+          -1.917276859916195,
+          -0.06531680386336497,
+          0.027365501294141923,
+          -0.4968640927345115,
+          0.05350952132343591,
+          -0.9201374565347263,
+          0.3009591071631707,
+          2.633442350711841,
+          0.8787459898631002,
+          -0.3011834461352396,
+          -0.21656898149080545,
+          3.212918706918129,
+          0.3895236596624219,
+          0.052002144502139046,
+          0.8215815910044129,
+          4.8679228317728995,
+          -0.6550544914304617,
+          -0.674466989572964,
+          -1.1661643973916986,
+          -0.08107090245019821,
+          1.5974416643529123,
+          0.5305432720661445,
+          0.7366962810355895,
+          -1.7301628578204087,
+          -0.5229350477647046,
+          -0.3349449851527863,
+          -1.2651108201901766,
+          4.6179522501347945,
+          -1.5013233201797263,
+          -1.1029752128908985,
+          0.6575654845053679,
+          3.8529062553384184,
+          -0.13761365534741135,
+          -0.19748549822969125,
+          -0.11524432824324277,
+          -6.920858609964409,
+          -0.7665856445754906,
+          -1.0535722666432632,
+          -0.007861210683139348,
+          3.7931005956326262,
+          -0.9565770696628658,
+          -1.5048806140876458,
+          -0.41713560208447553,
+          1.140705239390273,
+          2.2782747754249897,
+          -0.922515869385984,
+          -0.9303557000653273,
+          -4.5576743779344815,
+          -0.19255951130534102,
+          0.06510630244989456,
+          0.075491152208603,
+          -1.4882592984806666,
+          0.17051009071759277,
+          0.5259060238348906,
+          -0.06701061883499951,
+          2.997771660381162,
+          -0.16352512753408407,
+          -0.8665032785473282,
+          -0.25869963156511394,
+          2.303467800736496,
+          1.4590724026733595,
+          0.7163183118930078,
+          -0.14003729491437625,
+          1.9674503674934303,
+          -0.506730684229657,
+          0.31232752541734526,
+          -0.16455287565675905,
+          -2.0141064754492275,
+          0.09295087925696227,
+          0.30184835300061175,
+          0.6303338103421987,
+          -2.3767068926076833,
+          -0.01209353940777193,
+          -0.15897858963649775,
+          0.2721054178245739,
+          -4.988749468696583,
+          1.0260740622519176,
+          -0.13685521548774734,
+          -1.063911728745141,
+          -0.20127866738334574,
+          0.6241841035242236,
+          0.20344666784760673,
+          0.9253093354407075,
+          -3.1166940216303387,
+          0.7854211948050174,
+          0.5113817233036045,
+          1.0432879754004747,
+          1.3459821477893035,
+          -0.2886567859276418,
+          -0.308635292476748,
+          0.4248527029151452,
+          3.2086662934954293,
+          0.1548466477514293,
+          1.9056815034222603,
+          0.6478158990290347,
+          3.330496229231898,
+          -0.3335263089039377,
+          0.8025618305061751,
+          -2.2192325616341226,
+          -1.741850831853844,
+          -0.2932484956239765,
+          -0.2297423591468323,
+          0.48819719401899814,
+          -0.9734228869255142,
+          0.8343969076977499,
+          -0.057398082810235194,
+          0.006438561661770766,
+          2.104854595270998,
+          0.0161639577053253,
+          -1.7713580054188003,
+          0.5923541800480976,
+          -0.15801373294770937,
+          -0.14851006436753367,
+          0.7241352368634656,
+          -0.21296408991365434,
+          0.6726058521887708,
+          1.806343964446774,
+          0.32964561831695416,
+          -1.5164181588459236,
+          -4.425027544568495,
+          -0.20083558505871302,
+          1.4762035796419264,
+          -0.7026690154603478,
+          -1.1822192185353493,
+          -1.1634925991400755,
+          -1.438824230799372,
+          0.08542922042646377,
+          -2.7199733271152784,
+          -0.3804858101711433,
+          -0.4745136280981419,
+          -0.814207818169387,
+          -0.35694491811069146,
+          -1.1285110711687076,
+          -0.5594331252408637,
+          0.9201866720545528,
+          0.9030068505735095,
+          0.4395330258843701,
+          -0.8107549759238007,
+          -1.1136218912384366,
+          2.882223338024266,
+          0.24233930602817735,
+          -1.482987686007915,
+          -0.9950020673300464,
+          -4.0323085361773305,
+          -0.3408581759310124,
+          -0.856201217324015,
+          -0.5058366324578047,
+          1.517176177590576,
+          0.15937149909422682,
+          1.429259169005852,
+          1.1887466490694163,
+          -3.622529081717842,
+          0.17754490688475152,
+          0.14348659395133248,
+          -0.3098882864958399,
+          1.7091639894537154,
+          -1.3572128905873329,
+          -0.5081777804922561,
+          -0.3388718968327776,
+          0.4709201842249053,
+          0.7930304875686713,
+          0.07924554077310844,
+          -2.0708534577220155,
+          4.625587880229347,
+          -0.8051725611840049,
+          0.20224661460327764,
+          0.24381231228513975,
+          2.7954212393937268,
+          1.0118367701225515,
+          2.187699739382302,
+          0.6164628773304207,
+          2.4979687007381726,
+          0.7589920840443204,
+          -0.0554805597000699,
+          0.8418050474957988,
+          -2.0566769315974764,
+          0.9633802082105373,
+          0.559424097100083,
+          -1.5502374371054208,
+          -1.6547812876186885,
+          -0.5463907223515551,
+          0.3506165820789531,
+          -1.0789248904627862,
+          -0.14764374894640797,
+          -0.5598746157917919,
+          1.0444276375178922,
+          0.5648361802250476,
+          -0.23699486655262694,
+          0.36329563262149783,
+          -2.3641854006422403,
+          0.11585490252192283,
+          2.395059274284826,
+          0.10222919531413939,
+          0.5896506139147991,
+          -0.08778914867794553,
+          -1.4087802330986685,
+          -1.0130884254895645,
+          -1.6789848724887293,
+          -0.32463252067398746,
+          3.6081790603429496,
+          -0.992837123588541,
+          -0.5829068700351957,
+          0.29556812687188627,
+          3.050854604137824,
+          0.9392755347139933,
+          -0.5961443633189273,
+          -1.907442763506375,
+          1.8501381876218606,
+          -0.7790473574156683,
+          0.22846876287593865,
+          0.033801206337875526,
+          1.8922086888876135,
+          0.5539287600751441,
+          0.0007176618675756962,
+          0.6659774621644661,
+          0.36710893361299235,
+          -0.11071987512951571,
+          -0.09050752581783444,
+          0.04707890374419513,
+          3.711422677223262,
+          0.3876941874402531,
+          0.4111523496069324,
+          -0.06117472201012469,
+          -0.9812453832841139,
+          0.009891295437457943,
+          0.1584485957756402,
+          -1.2854823243166282,
+          -0.5205872253065962,
+          -0.9275054200284104,
+          1.1950278206975016,
+          1.1160048489715115,
+          -0.7876215200839766,
+          1.0835835465579333,
+          0.9757532056768148,
+          0.5843520546315439,
+          -2.0244614589134766,
+          1.6038900650288075,
+          0.733718959022676,
+          0.41575465435328113,
+          -0.911620100373667,
+          0.9279250440752823,
+          -0.06244727081142045,
+          1.9050483533587554,
+          -1.2685482420020573,
+          -0.8662607964806264,
+          0.268586379790186,
+          -0.8191979507049991,
+          4.05192136039556,
+          1.1218327825688585,
+          1.9857173374258696,
+          -0.11738017019054627,
+          0.48805451544082046,
+          0.06147861329180752,
+          -1.2648494266584143,
+          0.14873616269528978,
+          -1.5610998102000033,
+          -0.5212277821980414,
+          -0.2684560417449103,
+          0.3513191347287366,
+          -4.661778448136604,
+          0.7108513510849989,
+          1.2038127233295601,
+          1.8179806823181737,
+          -5.565628903495035,
+          -0.4739463579148416,
+          0.16615684280495618,
+          0.8922272128702754,
+          1.7506120415362052,
+          -0.6163437094991235,
+          -1.0478241804230644,
+          0.7006909053852127,
+          0.770346444825026,
+          -0.9010567218477543,
+          0.06656513279232262,
+          -0.5757485154814791,
+          -0.8836226737424381,
+          0.6778072919059716,
+          -0.5202615184593774,
+          -0.28982956863689274,
+          2.761370356510831,
+          0.5885842795863812,
+          0.021087898972172475,
+          -0.6000471039391821,
+          1.1214383755135617,
+          0.13525477601537306,
+          -0.6707610028816665,
+          -0.35573758459604987,
+          0.15716656955543956,
+          0.11203012795457525,
+          -0.0024962723935090777,
+          0.24402994190536348,
+          5.648627121987422,
+          1.4763968632726305,
+          -1.0869019320548619,
+          0.23551050963275877,
+          -2.516228041814113,
+          -2.5401970629621795,
+          -1.0245294701227674,
+          -2.1846045326848404,
+          -1.251532544031545,
+          5.274225951162001,
+          3.883958359146757,
+          -3.3955058895603667,
+          -0.7903436231362243,
+          -4.0995935533656445,
+          0.8817393554724212,
+          1.826696995703374,
+          -0.3501280531862099,
+          -3.2447058136716223,
+          4.024227747715957,
+          -3.609228331827361,
+          1.6923667835425615,
+          0.9826514047490967,
+          -1.7838901525832642,
+          2.3566467100685906,
+          1.6803000122090128,
+          -2.3054756690360607,
+          1.2872893739181355,
+          -0.7329728328360511,
+          0.4958264041580142,
+          6.401691849007885,
+          5.756094811213248,
+          -1.6652673426274276,
+          0.578551892493548,
+          -0.31123311757182903,
+          -3.3209861299063625,
+          -1.6158851796055433,
+          1.3968568180408854,
+          -5.808297997357566,
+          -2.931024816412742,
+          -2.4298596263688377,
+          4.7558961846963195,
+          -2.208299520119081,
+          -0.8208716433944143,
+          -1.3940230397449223,
+          -4.898109675122881,
+          -5.560017997839182,
+          -0.9452083570064644,
+          3.425043871983738,
+          -1.7708018602984252,
+          -3.6548764769566153,
+          -2.8186117666452866,
+          1.0149560023922564,
+          -0.650951622105022,
+          0.9552857553346588,
+          1.3697323540576738,
+          -0.672052336801106,
+          -4.744043709415405,
+          -0.6203094551866956,
+          0.11409956821588384,
+          -0.14191589999280033,
+          -0.381962038366754,
+          1.5939639026245105,
+          -1.4197631136248512,
+          -0.611885592971841,
+          3.2107238204036155,
+          1.3737923334346511,
+          0.48771333096389824,
+          1.4301501292137528,
+          2.188471598596461,
+          1.4552838656876723,
+          3.9388576430177507,
+          -0.7665324900651285,
+          0.6519399522363515,
+          1.831598395632184,
+          2.1413949123024976,
+          -1.1373222967781007,
+          -7.121053104901164,
+          0.5918913092209794,
+          -1.742713598378442,
+          2.4799795618146754,
+          2.0429615529650365,
+          -3.4877238230684067,
+          4.0719976027669444,
+          3.1747392744919773,
+          -2.067358281299111,
+          2.4187012061469466,
+          2.026518710608651,
+          -2.9008639788068575,
+          2.9113285206143726,
+          4.617354446293714,
+          -0.8853317355460685,
+          -2.0813376701470303,
+          -1.6522807197562024,
+          0.5067710649115701,
+          2.2877079403562335,
+          1.2857126445649654,
+          -4.698236835256053,
+          -0.21640077377110112,
+          -1.2970072285197733,
+          -2.04417454127679,
+          2.0005505024973878,
+          0.39176202457847586,
+          2.1340696999301576,
+          3.527858124272525,
+          -0.012822293490455088,
+          -1.137168425134532,
+          2.8653981652832967,
+          3.4834879731655484,
+          -1.5443906385730566,
+          -5.709940611640045,
+          -2.2249611666908162,
+          0.28129106964369355,
+          -0.6731958085382913,
+          -1.3822440811192345,
+          0.34067363246050214,
+          -3.032666481595448,
+          0.9022010001420565,
+          2.068047864437136,
+          0.36100376392329825,
+          -0.9657397813039967,
+          -1.5910007217423496,
+          2.7570204419838213,
+          1.140833561528034,
+          2.995018363865937,
+          0.13738192166028038,
+          1.6863027700588897,
+          -0.030398127744775565,
+          1.5585809366726955,
+          0.3562816129415654,
+          -3.826379906085068,
+          1.2243715715215362,
+          -3.655589158585854,
+          1.9996611146461358,
+          1.2439029603609313,
+          0.6726451170716965,
+          2.519273859372341,
+          -2.5310542586108475,
+          0.7545313451791406,
+          1.9630077200314366,
+          0.1710447807519353,
+          2.8708651402680427,
+          -0.6077146864528831,
+          4.462558011423724,
+          0.6750088183758534,
+          3.4622830833891642,
+          -6.0605281005155005,
+          1.3954278593666005,
+          -1.8625704415902113,
+          -0.1834396819868073,
+          -4.247641894347679,
+          -0.018064763611013928,
+          -2.2948252211542304,
+          -2.660054058747502,
+          2.1935758696781065,
+          -5.1628368412615755,
+          2.2433136717845947,
+          1.99375591527824,
+          -5.045018976914972,
+          -5.520163762868853,
+          -0.2463157914875797,
+          0.8046402675471699,
+          0.7227178929819185,
+          2.142822076665967,
+          3.201541360573805,
+          2.2569056243070524,
+          -2.4407511138625124,
+          -6.471751565480364,
+          0.38006291659824104,
+          2.4698073545837085,
+          -3.93551724037828,
+          -3.117696835455863,
+          -1.8662764780585699,
+          2.7462710072883136,
+          0.023104273023642312,
+          -1.6665892217227054,
+          3.441267818974648,
+          -0.15036716656166918,
+          2.8185189824697443,
+          0.10162498120082325,
+          -1.0831309021745357,
+          1.5378100878436254,
+          2.8904679954440673,
+          1.4509681858581975,
+          -2.6594223770528496,
+          -3.979903888656521,
+          -3.54528506928239,
+          0.7294333310096167,
+          0.7199582291557602,
+          -2.640898467040868,
+          1.0544787629533228,
+          0.3904257076564365,
+          -0.4418161896663253,
+          -1.337314343088257,
+          -3.021172120541403,
+          -2.4139624134481577,
+          2.1122110818415933,
+          0.3322498312681144,
+          0.2615845331675943,
+          3.368916483148943,
+          -3.0587010764885663,
+          2.784996078112469,
+          -1.6585018612444515,
+          -2.463922274419706,
+          -1.826974599091203,
+          1.9774958419920892,
+          2.728983593101447,
+          -2.04339845011429,
+          -3.4204731480637736,
+          -2.32937999222168,
+          0.034646510774035195,
+          -2.1105927960131226,
+          1.4412949148114003,
+          -0.8811622145197918,
+          2.122093394014634,
+          6.990736585720156,
+          -1.2559042177421038,
+          2.752790805964149,
+          -1.9261337513907721,
+          1.7274273195903451,
+          -0.6845098874622902,
+          2.033958400536635,
+          -3.0726589282418995,
+          3.0362724459154413,
+          1.7364245979841277,
+          -2.870252731253823,
+          0.13249503838783588,
+          0.4605938777613921,
+          1.5002006521358862,
+          -3.3750094072624557,
+          2.4191907489722473,
+          -2.045877686130716,
+          0.9488007574369636,
+          -0.7779685809646664,
+          2.973469530835599,
+          -1.5569793889191068,
+          -0.34588542813288786,
+          2.1796689387585837,
+          3.547818090600274,
+          0.6990818855565639,
+          -2.7222726728847295,
+          1.9965355541455756,
+          1.264346436769939,
+          0.8483108123784501,
+          1.0993980763923523,
+          -0.41899399376518787,
+          0.53930864181013,
+          2.0279971126322645,
+          4.801044614802541,
+          -3.487193984181571,
+          -2.1420665678031563,
+          -0.8318345114011059,
+          -2.7067920285805376,
+          -3.8823194469024744,
+          5.990801048575537,
+          4.7268712830656865,
+          -0.22132487301588907,
+          2.153662634083681,
+          2.6162667621526063,
+          -1.5565253465425262,
+          -0.06611079963228389,
+          1.2776190222957209,
+          2.5898013286330768,
+          -1.1318095976820974,
+          -6.770642434695189,
+          4.439720430849914,
+          -4.697730465170468,
+          3.7776977772018503,
+          5.120281368137267,
+          3.977772079508198,
+          -4.033452577954723,
+          2.3074307571273525,
+          6.9672747657123155,
+          -2.0043841312067596,
+          -1.7420225618884673,
+          0.27217478016117247,
+          4.75467784056731,
+          2.818208746191598,
+          -2.6474529078722857,
+          0.3791773335031875,
+          -3.7923197954276158,
+          3.694396467901391,
+          0.09148634960229368,
+          -2.006986767515621,
+          -0.7541946033814323,
+          1.0023620326282445,
+          4.162462303678151,
+          0.2967427792731451,
+          2.8672754641016303,
+          1.693805040968474,
+          2.9820501727637945,
+          -4.659873397680594,
+          -1.9447512900606592,
+          3.127784272156074,
+          3.0513390619095895,
+          -0.5731003984035499,
+          3.3063441441553225,
+          0.5797555090310936,
+          -0.9922070612962908,
+          -2.711759368413696,
+          0.46002783397266256,
+          0.6861461316612573,
+          -3.463691331782541,
+          0.300606873156464,
+          -0.6597686164492291,
+          -2.2205299621674,
+          -3.469978985577868,
+          -3.3352571158973197,
+          -1.3743104801645387,
+          1.5940511749356059
          ],
          "z": [
-          0.31541438085866935,
-          0.616056377936541,
-          1.9011117810621716,
-          0.4155007843780497,
-          -0.7189099560288814,
-          1.5980922727774547,
-          0.712415852407903,
-          0.00395505983010791,
-          1.1871015372222726,
-          1.3116342988074248,
-          0.6498089696459983,
-          1.0801597604875535,
-          -0.3443460048305518,
-          0.9935384059209602,
-          2.6361051105963194,
-          0.30843859730622636,
-          0.21317236926496264,
-          1.925290549685498,
-          2.801045196539334,
-          0.7339833044396531,
-          2.2860501038634258,
-          0.5788972278381682,
-          1.4868948111619644,
-          1.3520115910908643,
-          3.259602027742478,
-          -0.1363362231559908,
-          1.7932257178100985,
-          0.8354854682038301,
-          -0.6600681494056964,
-          1.51486117993516,
-          -0.2914555644869643,
-          1.7293697951297506,
-          0.2901573405552761,
-          -0.2673369659665712,
-          -0.7478845946618555,
-          1.9118135935708018,
-          0.9924353403253509,
-          1.822842073216358,
-          0.6745456710949937,
-          1.0208040237725442,
-          1.2198701423739455,
-          0.30705676985293195,
-          1.9574098452321897,
-          0.5098326846234398,
-          -0.2643373017623569,
-          1.024647378210543,
-          2.6546347484020885,
-          1.9901247868928167,
-          0.7970760434657722,
-          -1.217283710253568,
-          3.30408978354919,
-          0.8486370964242577,
-          2.806282296382599,
-          -0.5730085426495004,
-          2.4844340384402286,
-          2.7967534654264914,
-          1.0800412692152601,
-          2.2617611603950003,
-          -0.5024245976435517,
-          1.9291895615477108,
-          1.1405089042856054,
-          1.5443227047657362,
-          0.9998683137730622,
-          1.153649129296619,
-          2.2409391873848064,
-          0.17665046163736386,
-          1.1071864647824161,
-          0.9475173176892859,
-          2.8344313331400874,
-          -0.42886615044966225,
-          1.21092616196393,
-          1.1555250375836563,
-          2.559741947283964,
-          1.0832946375468078,
-          1.132928464827501,
-          1.597472933896761,
-          1.2672106551450557,
-          2.370695988904976,
-          1.2962953655036675,
-          1.3673193878491967,
-          2.623843744269257,
-          0.7463595461074981,
-          -0.7548708515422513,
-          1.4282543975168633,
-          1.551398342778242,
-          -2.329503797508129,
-          1.9088890363692874,
-          -0.663689978196383,
-          0.5373552581187018,
-          0.7334277150710147,
-          2.0445264298181405,
-          2.2330391334509456,
-          0.6130151611218402,
-          0.6221305460386488,
-          2.8489386185618586,
-          1.8240865805442636,
-          -0.2841982109111607,
-          -0.13918212426374965,
-          -0.19546971666551194,
-          2.085671909183638,
-          2.5414571948322537,
-          -0.1246556883329939,
-          0.5603179910815503,
-          -0.17669818577090646,
-          0.0565301755918437,
-          1.2515879179988447,
-          -0.8885234127154062,
-          -0.5648544249554606,
-          2.1622611105711576,
-          1.000160507407085,
-          0.7873102656948813,
-          1.0731042543807434,
-          1.9899508544001079,
-          -0.3925125671384784,
-          2.838754500912114,
-          0.5955377120758963,
-          1.3312227598598763,
-          0.4625936210961862,
-          0.8406414252435357,
-          0.6691894804777281,
-          1.4330463786039467,
-          2.9696566849510955,
-          0.37190216492021666,
-          1.3663274835410772,
-          1.0851959299707874,
-          1.1391684617326208,
-          0.7733067301012807,
-          2.304940204008033,
-          -0.5693563427251942,
-          1.6647630897243626,
-          -0.24830280186931808,
-          1.52000438080081,
-          2.1418965369680096,
-          1.7786827457257894,
-          0.923006335861662,
-          -0.3184013824734664,
-          0.12983684222009784,
-          -0.11939087974590978,
-          1.4345400972542903,
-          0.48436596591967285,
-          2.002579814271594,
-          2.565454659959112,
-          0.07828216351808492,
-          -0.4089039044254048,
-          0.35409182673770334,
-          2.8907298485940296,
-          2.4729835776298295,
-          1.427837860536044,
-          2.249821097053679,
-          -0.7956132206423168,
-          1.1447654911176404,
-          1.290871190644086,
-          1.6642752042571254,
-          0.21244855937129348,
-          1.9051191831693894,
-          3.221203394271961,
-          -0.30551243758297164,
-          -0.13928615921026788,
-          3.4719337724318575,
-          0.22531594233615515,
-          0.3119178734196819,
-          -0.13394633596780414,
-          2.5065286363122667,
-          0.9102744236722214,
-          0.056294568569923875,
-          0.4504456041404138,
-          0.7740167966477512,
-          1.5858129835546557,
-          1.2832249586107185,
-          0.3244314714087837,
-          1.0181184776258714,
-          1.3238392663274503,
-          2.4533971058146764,
-          0.26761725440492,
-          -0.5301309287433318,
-          1.7969359256585957,
-          0.879728060674234,
-          1.064048845017702,
-          2.152934176974773,
-          1.8265839651372482,
-          3.133645604681897,
-          0.711969260560779,
-          -0.336331889215445,
-          2.167195983359095,
-          1.1123379487323768,
-          3.262568808335318,
-          1.598174602990567,
-          1.7310375253855357,
-          0.8307863418344532,
-          -0.865839755203436,
-          1.8223422986875515,
-          1.3198879678544118,
-          1.261625263580771,
-          1.4733411833851433,
-          0.9665251896730941,
-          1.9328287040921976,
-          0.01758375951906299,
-          2.361538202848111,
-          0.9710984765021391,
-          2.105313901493288,
-          3.2354274347569607,
-          1.6373330412721927,
-          0.5121309119262046,
-          0.929366020348026,
-          1.3941265104341478,
-          1.8710452931452175,
-          0.6759278161982182,
-          -0.9793296949964019,
-          0.7248175626136539,
-          0.7074838064506582,
-          2.7514090737489107,
-          0.45512992917648787,
-          0.5030368670794987,
-          2.175454012339135,
-          -0.9550861139181497,
-          2.086530557898822,
-          0.6199463493996933,
-          1.7034935227111718,
-          0.030567556711679877,
-          -0.32643482730799644,
-          1.9359731592656175,
-          1.9613603598188132,
-          0.19261994371588842,
-          2.3427953154217054,
-          -1.313859495606875,
-          0.8288288047584652,
-          1.6590259520210962,
-          1.423079960324353,
-          0.08882993997515543,
-          2.196133717091107,
-          1.9084451656457726,
-          -0.5028017113050698,
-          1.9374062824694955,
-          3.317516231196855,
-          1.1104687558861357,
-          0.6108649040234362,
-          -0.26387156073371654,
-          -0.0037878154636363792,
-          -0.17581098033919784,
-          0.6067635908371546,
-          -0.39934304778587504,
-          1.991646378260802,
-          1.6568660633095018,
-          1.2108723585105148,
-          1.359485939773858,
-          1.4695964832944008,
-          1.7287415864657592,
-          0.8988023726824681,
-          1.4086847622754086,
-          1.9011436305292249,
-          -0.8920849255849255,
-          1.9203961612544849,
-          0.5715782699999642,
-          -0.6196898655166265,
-          2.6984587023755653,
-          0.0365009394839485,
-          1.0420390369972308,
-          0.7432661965199467,
-          1.6321516296907728,
-          -0.24632947774842462,
-          0.6162470190869906,
-          0.49876204249992173,
-          0.20025711188946826,
-          -0.29880355405186143,
-          0.24897319318097777,
-          -0.041005218283787004,
-          1.7349648157519848,
-          1.8471112074394023,
-          0.9777997765646752,
-          0.355377868921527,
-          2.9192813001444593,
-          0.6874225746053093,
-          0.1269474403227726,
-          -0.1376002049642353,
-          2.1200566378997827,
-          0.6401595392196122,
-          -1.342246870407298,
-          -0.6455122451253463,
-          0.2677175895697975,
-          1.3479160781208834,
-          0.14569034958563742,
-          0.15811564971465664,
-          1.4634603556662171,
-          -1.187380914976043,
-          3.847009588957641,
-          -0.21696257684351972,
-          -1.2593862579041861,
-          1.0146559098701267,
-          1.8935422058891094,
-          2.008991476931648,
-          2.431749484241079,
-          1.3266709215421677,
-          0.49230802161661325,
-          0.2665379088310357,
-          -0.357698726867552,
-          2.547640773595271,
-          -0.30300192181480456,
-          -0.8259010941126057,
-          0.8475003216900806,
-          0.5988268282526109,
-          2.281978362376686,
-          2.264050170507165,
-          -0.290167414451457,
-          1.6626783576861648,
-          -0.47811371438768924,
-          0.5009917355702108,
-          -0.08862772067362501,
-          0.6321367063035164,
-          0.2656799976866263,
-          1.9151721507186228,
-          1.7946412035736587,
-          -0.3845966247273489,
-          1.7164302036574002,
-          1.1466325876461747,
-          0.03958307959077112,
-          2.2129839285493706,
-          -1.196446261643099,
-          0.4239748295233322,
-          2.0062507994327152,
-          1.6061496997584692,
-          1.0069247210437144,
-          1.3459436679800665,
-          1.078115692483465,
-          0.8344210274324055,
-          0.4262444495956239,
-          2.011097005586991,
-          2.0270044117876562,
-          0.5997577170681145,
-          1.6228614849614957,
-          3.0920985716179086,
-          0.35684600279888823,
-          1.7180620438372025,
-          2.3252636031273886
+          -0.03944954029513588,
+          0.3621185966508682,
+          0.7805844180432191,
+          -1.824296328623288,
+          -0.38228906954106506,
+          -0.17105866004048387,
+          0.008402277852156395,
+          3.0610016630157784,
+          -1.9240782976902062,
+          0.2898140644022268,
+          3.822596965051781,
+          0.9917625897545016,
+          -1.5970193936656156,
+          2.391151158907906,
+          -0.06545346036157874,
+          -0.09322905531690161,
+          -1.720934004829848,
+          0.15529721680844552,
+          -0.2607564296065389,
+          4.994925846604339,
+          0.3450543631518804,
+          -1.2751915675370866,
+          -1.2155230133519592,
+          -0.014758843026816734,
+          0.22642115325129022,
+          -6.127400549128773,
+          0.7903737130413256,
+          1.627168663738811,
+          -2.4767492338283534,
+          -0.6020138145186517,
+          -0.8066233726395469,
+          -5.397103374048792,
+          -0.6382659777565833,
+          0.49415377564811297,
+          0.43078261001581886,
+          0.2653956715309763,
+          -0.7189712922914249,
+          -1.922926272509109,
+          0.022228715668075074,
+          -0.2479501645516324,
+          1.667503318612014,
+          -1.539703194298322,
+          -1.711018583879968,
+          0.4579375955625353,
+          0.2512608884320115,
+          -1.1301951354287627,
+          -1.8949211090346834,
+          1.1124335040631905,
+          0.22364702931976144,
+          -0.5833415250778899,
+          -0.049506771437174246,
+          0.3416685152885607,
+          -1.8725755835207696,
+          3.180118764786985,
+          -0.9699986669592894,
+          -0.011940043830479485,
+          -0.7880201577268615,
+          -0.2525713260368861,
+          -0.22484466193565636,
+          1.08416115673822,
+          0.25199003302808815,
+          -1.8993614168796316,
+          1.405066150374771,
+          -1.6379763834256258,
+          -0.675203458619053,
+          0.017184866434682443,
+          -0.7830687594918779,
+          -0.0845351550473012,
+          -0.25726752446502077,
+          -6.634092584642499,
+          -0.07023544092400746,
+          1.2905441316382014,
+          0.33776582081105627,
+          -2.544870959858905,
+          -0.3609394391044022,
+          0.3580249772447977,
+          -0.7350575658137415,
+          -2.356531182451057,
+          -1.4530903140455653,
+          0.15136586350805772,
+          0.944747313590022,
+          0.2633522175013211,
+          -1.4744582134693875,
+          0.43724086569722426,
+          0.7973645251929036,
+          2.7944475096411265,
+          -1.7281066529078282,
+          0.0809656571359642,
+          0.27750059756185563,
+          6.541009090467254,
+          -1.4969179900646101,
+          -0.17348342996914123,
+          -0.33612182400172796,
+          1.1405868916384785,
+          1.2327117708303938,
+          0.6984556500902169,
+          1.299718430985665,
+          -0.5876742301461428,
+          -1.3101867740588056,
+          -1.31875952638516,
+          -0.6086185594046788,
+          -2.736038702593417,
+          -0.9754312887000763,
+          -1.219758645535986,
+          0.1278903920876271,
+          2.0554041707604203,
+          -0.11673333742671363,
+          -0.8018195622473333,
+          2.2902736366118965,
+          0.9552152305059185,
+          -0.6547283571185725,
+          0.4182921539919798,
+          -0.5208342955223718,
+          -1.2091518720538172,
+          -2.217660842472399,
+          1.5846731908095748,
+          1.6447794676024472,
+          3.053229258946636,
+          -0.07459341093790933,
+          0.4089061671480061,
+          -0.4024016260413999,
+          1.5091209896777031,
+          -0.49353836856610545,
+          0.06196147394315203,
+          -0.4231149124134885,
+          1.6102211835987374,
+          -1.5373878275298238,
+          0.7604869669573489,
+          0.017437419429689377,
+          -1.0232177719343478,
+          0.30683959008563205,
+          0.11760747965055095,
+          0.20885954633437545,
+          2.8523318290399224,
+          0.030612771860202503,
+          -2.3888430262771636,
+          -0.04791049895282954,
+          -1.9273998821052354,
+          0.8367586670146482,
+          0.07237701891452507,
+          -2.0321446536134284,
+          0.08687581384314842,
+          1.5061634884807504,
+          -1.5764230750444481,
+          0.7734181787880657,
+          -1.803300626566138,
+          -0.563304187348453,
+          -1.2849014240853274,
+          0.8922423785439051,
+          0.7893432848914823,
+          -2.3070783590833357,
+          -1.0428300011038638,
+          0.04863232947776321,
+          -0.8596949533517252,
+          -0.12432982622556117,
+          -0.2598763000828347,
+          -1.1452630356775422,
+          2.7046137642621666,
+          0.33173974006751683,
+          -0.514018924944021,
+          -1.1134332018946365,
+          -4.378605693599458,
+          0.21822394726641986,
+          -0.6071316258360376,
+          0.8171447617586141,
+          1.9560202099759216,
+          0.46717370526981145,
+          -0.022367956830393214,
+          -1.376706392611464,
+          2.4501986484138767,
+          -0.48027816504626863,
+          0.04547315311419028,
+          0.13082351348126012,
+          2.4117852587206197,
+          0.005630524488145087,
+          -1.0471046823951424,
+          0.6203315062486455,
+          3.273257617019992,
+          0.8757475332167449,
+          -0.2271663778050333,
+          0.7175182121999252,
+          2.3211472682297423,
+          -1.3607640177507954,
+          1.5515587426542985,
+          0.15659513147447557,
+          -1.484685623821192,
+          -0.058656548858492356,
+          0.028584343775339863,
+          -0.8598448437937899,
+          -2.932888418188478,
+          0.8756098303606858,
+          0.7024190584423943,
+          -0.20359381779023403,
+          -3.4127161747942196,
+          -0.2020275881585014,
+          -1.006145029497857,
+          0.14881617158789964,
+          4.44269341254633,
+          0.5768843343566925,
+          -0.8623253747268523,
+          -1.1137429902875935,
+          2.31901835390382,
+          -0.6185490249733382,
+          -1.8613074915464611,
+          1.335902420975809,
+          0.7098588136014219,
+          1.0167520880985548,
+          0.40900142477861445,
+          -0.4194564787947977,
+          -0.6073463486405694,
+          0.8991177287827744,
+          0.3018756227935538,
+          0.47879060167475945,
+          -1.64433946873572,
+          -0.7734323931944326,
+          -1.5907579994360224,
+          1.1578938549345046,
+          0.06677643151849731,
+          -0.28183999552381844,
+          0.00921419087807228,
+          2.2890418755106534,
+          2.869283937858752,
+          -0.39216352494913276,
+          0.07318802841005424,
+          -0.9043631408457613,
+          -6.782080716633118,
+          0.14383060415253393,
+          -1.267303617310803,
+          1.2541158469809202,
+          -2.7634631289565306,
+          0.44590495564902716,
+          -1.6168499535320906,
+          -0.11341032627405684,
+          -0.06800456306932266,
+          0.2110946728191898,
+          -0.3592333813437294,
+          0.9773107243267557,
+          -3.966194562602809,
+          0.8147467077297841,
+          -0.47169637303793094,
+          0.7524599097112967,
+          4.021970814753293,
+          0.25479591016917424,
+          1.1749871853617333,
+          1.4041374638942037,
+          5.0550617796086526,
+          -0.8068829210460325,
+          1.2655416244759352,
+          -0.3595591829737749,
+          1.8522482812822119,
+          -0.050799057903433545,
+          -0.8861420217725989,
+          -2.2901004744799827,
+          2.1862872080641735,
+          0.14128530046671584,
+          -0.33888837384019566,
+          -0.5812397655249649,
+          -0.3939021208801859,
+          -0.09110775858677529,
+          1.295575648836833,
+          -0.12100963325266628,
+          2.581192555986464,
+          -0.9416485051048124,
+          0.23987869223753916,
+          -1.0669879507017315,
+          3.1945653314312166,
+          0.9301570849043717,
+          -0.64490777930707,
+          0.313898347895304,
+          -2.648022581626752,
+          -1.1767556526879335,
+          1.6212033417160563,
+          -1.3528736637598224,
+          -3.3146553442436337,
+          -1.1892796716135245,
+          -0.4005929455242752,
+          -0.0002638763662579357,
+          2.854201880297515,
+          -0.5270797232629564,
+          -0.008477241950756121,
+          1.5291812669769878,
+          -1.9330188410340816,
+          0.028825346770735946,
+          -1.1987340816735368,
+          0.06575262132138465,
+          3.4627607881500087,
+          0.08812643416103147,
+          -0.16326585580857822,
+          -0.08789884876894268,
+          -4.5961919710333925,
+          -0.007924820151589141,
+          0.28576115700819865,
+          -0.7681244584638094,
+          1.1958380568799083,
+          1.7006209254635025,
+          -1.1373298608086606,
+          -1.108686936087988,
+          -2.185394726625789,
+          1.28242575320677,
+          0.5391038929951112,
+          -0.18556170890537418,
+          2.030186034106522,
+          0.7494627281788968,
+          -0.06017032218173092,
+          -1.2726771001025239,
+          -2.181623346760632,
+          -0.5651539484019302,
+          0.18479018472349149,
+          0.6827740200012462,
+          -0.033797193912025986,
+          -1.281169066621214,
+          0.5707411126851589,
+          -0.7124409400878876,
+          -1.825093412798515,
+          -0.9903563733232451,
+          -0.662379110798389,
+          -0.10825047425829111,
+          -2.937498633815684,
+          -0.058256180142472164,
+          -1.6891799831655094,
+          -0.612167023022616,
+          4.075100277826954,
+          0.2873187595614737,
+          2.2596244263017735,
+          1.0932584569795039,
+          -4.269271617051962,
+          0.4691566364401566,
+          -0.6656662543448671,
+          0.7384217064302512,
+          -1.6728634294222118,
+          -0.14608097010345616,
+          0.4223525552571001,
+          2.0069784971832614,
+          0.7465014619320457,
+          0.9545128026599435,
+          -0.9398698419543161,
+          0.3146365239713623,
+          -4.638658442784418,
+          -1.3731609936945832,
+          -0.22431702019370822,
+          -0.5548465654737764,
+          -2.483937685481641,
+          0.29537637224578167,
+          -0.13328615318803247,
+          -0.47153641213159536,
+          1.1392426012895953,
+          -0.24402249153146843,
+          0.24913968374128118,
+          -1.2742757110194016,
+          3.1838290582780564,
+          -0.3812025883223222,
+          1.3499671032016356,
+          -0.534142806057821,
+          -3.2053777053852066,
+          -0.05167141809382597,
+          1.285788273532019,
+          -0.013860719849712658,
+          -1.6997689039351311,
+          1.6472127266386818,
+          0.047279372163950895,
+          0.4091808988320887,
+          -1.6511293916911172,
+          0.48179541632802764,
+          3.087195755191053,
+          0.9951475225586813,
+          -2.035043323070005,
+          7.1785162909412445,
+          0.4257294274059859,
+          1.8547092974259323,
+          -2.859628778857847,
+          -3.77666660122418,
+          -2.9568575040870364,
+          -0.07633719780479348,
+          -2.588123508050785,
+          5.247092622630818,
+          0.2837970892847074,
+          0.21641851602565523,
+          -7.422631031145168,
+          -2.3727040365635346,
+          1.3390903347743537,
+          2.1481470609791984,
+          1.580754745038445,
+          3.3429831766439198,
+          3.031192606029368,
+          -2.6411885173187484,
+          -0.5148227071519246,
+          -0.13506314726819332,
+          0.7716356376878137,
+          4.686242331354978,
+          4.721782972040752,
+          3.4636601147293877,
+          2.7104707662364347,
+          -1.9353784485052843,
+          -3.525146598671065,
+          1.0251765684351368,
+          -0.12028735948446108,
+          -0.8898002511339751,
+          1.3087748675538309,
+          0.25729646916878857,
+          -2.4710585999412378,
+          -2.502315928388902,
+          -2.7358840382389973,
+          2.2443526241112477,
+          -2.480606921581232,
+          3.688884051413531,
+          -1.8945668034264411,
+          0.02149675451658026,
+          -2.8783941058282547,
+          -1.5941277740982969,
+          1.6600310910518388,
+          1.6515481305020063,
+          3.0003115495241413,
+          -5.284902180495226,
+          0.7818234164080011,
+          2.186237480760682,
+          2.7055700825228413,
+          3.9729901616668055,
+          -2.9967225273110847,
+          -2.416148215459179,
+          -2.6212078270818244,
+          -0.46077651286175836,
+          -1.4585096073172585,
+          2.098622403677854,
+          1.5053700617845338,
+          -2.377627574284277,
+          -2.4419892689809393,
+          0.5506949060275316,
+          1.7661854548020963,
+          4.727319609102622,
+          -2.3759960369042004,
+          1.9172384413874886,
+          1.9665671230978559,
+          2.8045379686248224,
+          -0.4098085339747783,
+          2.739693097486994,
+          2.174088830252397,
+          -0.912865559281343,
+          -0.514250576897701,
+          -0.2683749297112964,
+          0.19845692607195548,
+          2.846616882267873,
+          -0.6844804980231123,
+          3.9937251937085123,
+          -0.6926717991829306,
+          1.4985020268331128,
+          0.06385270566546808,
+          0.41068332020468223,
+          1.7960078438794236,
+          0.3917428183542584,
+          -0.5058675517255062,
+          -3.2838665808703045,
+          1.3804878089524677,
+          0.7097452448055663,
+          0.3164053882690417,
+          2.595863140310876,
+          0.2958336498584206,
+          -2.035448887687034,
+          -2.150052275747934,
+          1.709239375474386,
+          1.4753534064201976,
+          -1.4982240858948186,
+          -2.9493549148590237,
+          -1.4297546912702201,
+          -4.051539228975266,
+          1.3390796992411014,
+          3.442746405939904,
+          1.0064348142244746,
+          -0.04998303836561128,
+          2.146911857855878,
+          -0.907103511725189,
+          2.4429462704012908,
+          -1.238590913062709,
+          1.666010455475146,
+          0.5823632733125311,
+          -2.3128089495155226,
+          1.9828152429755574,
+          -1.6249552447997961,
+          0.4907529573884572,
+          -2.2894425317965177,
+          -3.7728235036319875,
+          -5.529437011492941,
+          -6.7156160883837845,
+          -2.558660695190301,
+          -1.941237129548399,
+          3.407790462752714,
+          -3.1280625503989237,
+          5.917666046824693,
+          -5.823160908039339,
+          -1.6999209489857354,
+          -1.604716208179315,
+          -0.8904474972346019,
+          0.23119930388062618,
+          -4.863928740765883,
+          5.149709075498057,
+          3.155093805519868,
+          -1.5431436900546418,
+          -2.94041985892076,
+          1.4366660180076514,
+          2.5989894545156282,
+          1.5914800182657318,
+          2.7519336625286104,
+          1.6902505679331368,
+          3.832865581113794,
+          -4.064325067032798,
+          -0.9085487290009947,
+          0.8286484798775546,
+          -3.370509280957439,
+          -2.7334307443641666,
+          -1.6321005278168073,
+          1.5922816042577967,
+          -3.556897817370767,
+          0.5777365287127022,
+          -2.0024851768989356,
+          3.825747974546033,
+          -0.1463906543489739,
+          2.844751980775048,
+          -1.4477815180580946,
+          -1.4157728206627727,
+          2.228517966259357,
+          -2.1666736267983424,
+          1.7290763969116179,
+          3.1676791105145434,
+          -1.7514367272079676,
+          3.279460870136689,
+          -0.803071262614437,
+          0.6576909481898439,
+          -2.104466187457726,
+          -1.1585001030487607,
+          1.6092011030928886,
+          -2.4409589680936326,
+          -4.666851839183301,
+          -4.837489298942841,
+          4.947739554879118,
+          0.5701016580009445,
+          -6.560785456311632,
+          -4.222105560552984,
+          2.280080327038203,
+          3.1140708931967436,
+          -1.273481820031598,
+          2.433632718874396,
+          2.956654694773368,
+          2.451411552213275,
+          2.4253113976598817,
+          -1.644099019241378,
+          3.565644845752842,
+          -3.996200967212384,
+          5.581130556319514,
+          1.9766271800876711,
+          -1.161905390325908,
+          3.0362970747474325,
+          -2.2919887766353866,
+          -1.069400423965607,
+          -0.7350748970173423,
+          -0.25302622784721296,
+          2.862717574554038,
+          -0.3947013144825555,
+          -4.196269516509799,
+          0.9070177639031971,
+          2.7753530745704746,
+          4.577770829900932,
+          4.565868904394347,
+          -1.0828818278466208,
+          1.6784433141289137,
+          1.8718867943887751,
+          0.47427174936057426,
+          -1.8997958793540106,
+          2.1926895256893584,
+          1.17031541539182,
+          4.695559056488026,
+          -3.047508639406713,
+          -0.46605478705163267,
+          0.7282260397862707,
+          2.570841663225848,
+          3.7735435765281995,
+          -0.6054180248661809,
+          -1.2754102804009342,
+          -1.674137095134475,
+          -1.2649476035433265,
+          0.23969553740504568,
+          -0.12696842370021819,
+          -1.820751845319837,
+          1.7166959092250857,
+          -2.56063354054104,
+          4.314179224905247,
+          3.0753035092969103,
+          -0.012907693957834258,
+          -0.7206361941300214,
+          1.3256239354041977,
+          2.682971633284774,
+          -2.790437775586459,
+          1.1405987066055907,
+          2.1177931365098344,
+          -2.704192404405178,
+          -5.0885638891811364,
+          -1.799572912194122,
+          -2.333886646667566,
+          1.0683549302026993,
+          -0.06950197498818667,
+          -1.712044207396362,
+          -3.990976239587813,
+          4.6294228201564005,
+          -3.8605373157435707,
+          -2.387818628281501,
+          -2.7982041774872575,
+          0.3222742816080896,
+          -4.4489524044352375,
+          -0.884391960608514,
+          -3.8832353736507037,
+          -2.231146644251914,
+          -7.250666684054725,
+          5.868802337942535,
+          -0.06174119357672132,
+          -4.257608360507886,
+          1.2908868141605851,
+          0.44494009687332614,
+          1.8186191883772571,
+          0.6750308944106506,
+          0.6763825967834555,
+          -1.5245413160697965,
+          -2.4659604174401726,
+          1.0448752992693693,
+          -0.19584373692351842,
+          1.6043993127367273,
+          -2.247847689668105,
+          2.7362450559125784,
+          2.3575527487493457,
+          -0.998293782716987,
+          0.02470306827095781,
+          -2.986277116691542,
+          -4.748983227719083,
+          0.7080580177899611,
+          3.7979292852409388,
+          -0.39152778178399333,
+          1.542450027497259,
+          5.0899895726616,
+          -5.039376452962082,
+          1.1595428961119052,
+          0.49318338909976195,
+          2.1125551371487337,
+          0.30292496570086247,
+          2.7234829746323928,
+          3.2578413622776488,
+          3.456212991709431,
+          3.0747427737923765,
+          0.3637299660058293,
+          2.4224868556766763,
+          -3.1863427954675534,
+          0.8726733018238001,
+          -2.5576703738369932,
+          0.5690956125467787,
+          -0.9197045357580229,
+          0.35337487280062707,
+          4.25788471711505,
+          3.103729296708741,
+          -2.24413984241211,
+          -0.8575600759359143,
+          -0.03333806981498987,
+          -5.327068992408226,
+          -0.9415171170027336,
+          -2.703827617427617,
+          2.90080104501297,
+          2.541386945336445,
+          -1.5266868115949022,
+          0.7079750856572736,
+          -3.4388707746526204,
+          -3.3233453670691286
          ]
         },
         {
@@ -20174,1345 +28099,2677 @@
          "scene": "scene3",
          "showlegend": false,
          "text": [
-          "example_2",
-          "redundancy_40_0",
-          "Complementary_79_0",
-          "mutual_error_24_0",
-          "example_9",
-          "example_10",
-          "example_23",
-          "redundancy_18_0",
-          "example_29",
-          "example_30",
-          "mutual_error_6_0",
-          "example_33",
-          "example_39",
-          "Complementary_53_0",
-          "Complementary_70_0",
-          "mutual_error_28_0",
-          "redundancy_62_0",
-          "Complementary_98_0",
-          "example_60",
-          "Complementary_42_0",
-          "Complementary_89_0",
-          "example_66",
-          "mutual_error_27_0",
-          "example_70",
-          "example_72",
-          "example_76",
-          "Complementary_78_0",
-          "mutual_error_16_0",
-          "redundancy_25_0",
-          "example_81",
-          "example_82",
-          "Complementary_22_0",
-          "example_86",
-          "example_88",
-          "example_96",
-          "mutual_error_9_0",
-          "example_101",
-          "Complementary_10_0",
-          "Complementary_81_0",
-          "example_110",
-          "example_118",
-          "Complementary_58_0",
-          "redundancy_8_0",
-          "Complementary_74_0",
-          "example_137",
-          "example_139",
-          "example_141",
-          "redundancy_5_0",
-          "Complementary_0_0",
-          "Complementary_14_0",
-          "example_165",
-          "example_168",
-          "example_174",
-          "redundancy_55_0",
-          "Complementary_8_0",
-          "example_196",
-          "redundancy_11_0",
-          "example_199",
-          "example_204",
-          "example_208",
-          "Complementary_18_0",
-          "Complementary_77_0",
-          "example_211",
-          "redundancy_6_0",
-          "example_213",
-          "Complementary_49_0",
-          "example_218",
-          "example_221",
-          "redundancy_48_0",
-          "redundancy_30_0",
-          "example_231",
-          "example_235",
-          "example_237",
-          "Complementary_54_0",
-          "example_244",
-          "example_247",
-          "Complementary_47_0",
-          "redundancy_9_0",
-          "Complementary_92_0",
-          "Complementary_68_0",
-          "Complementary_44_0",
-          "redundancy_15_0",
-          "Complementary_41_0",
-          "Complementary_16_0",
-          "example_266",
-          "example_275",
-          "redundancy_61_0",
-          "example_280",
-          "Complementary_65_0",
-          "example_286",
-          "mutual_error_25_0",
-          "mutual_error_30_0",
-          "example_292",
-          "redundancy_53_0",
-          "example_296",
-          "Complementary_17_0",
-          "example_299",
-          "mutual_error_15_0",
-          "example_305",
-          "example_306",
-          "Complementary_84_0",
-          "example_309",
-          "Complementary_57_0",
-          "example_311",
-          "redundancy_54_0",
-          "redundancy_43_0",
-          "Complementary_55_0",
-          "redundancy_2_0",
-          "redundancy_34_0",
-          "example_323",
-          "example_327",
-          "mutual_error_32_0",
-          "Complementary_20_0",
-          "redundancy_17_0",
-          "Complementary_38_0",
-          "Complementary_3_0",
-          "Complementary_7_0",
-          "example_346",
-          "example_350",
-          "example_351",
-          "example_352",
-          "example_355",
-          "redundancy_31_0",
-          "Complementary_46_0",
-          "example_361",
-          "example_362",
-          "Complementary_52_0",
-          "example_365",
-          "mutual_error_23_0",
-          "mutual_error_2_0",
-          "redundancy_65_0",
-          "Complementary_87_0",
-          "example_382",
-          "example_388",
-          "example_394",
-          "example_398",
-          "example_404",
-          "Complementary_56_0",
-          "Complementary_63_0",
-          "example_423",
-          "Complementary_24_0",
-          "example_425",
-          "example_428",
-          "mutual_error_21_0",
-          "Complementary_23_0",
-          "example_432",
-          "example_433",
-          "example_436",
-          "example_439",
-          "example_442",
-          "example_447",
-          "Complementary_12_0",
-          "redundancy_42_0",
-          "example_450",
-          "mutual_error_31_0",
-          "redundancy_21_0",
-          "example_456",
-          "example_462",
-          "Complementary_1_0",
-          "Complementary_88_0",
-          "example_468",
-          "example_477",
-          "Complementary_48_0",
-          "redundancy_28_0",
-          "example_482",
-          "Complementary_91_0",
-          "Complementary_82_0",
-          "Complementary_27_0",
-          "Complementary_97_0",
-          "example_499",
-          "redundancy_63_0",
-          "example_513",
-          "Complementary_71_0",
-          "redundancy_12_0",
-          "example_518",
-          "example_521",
-          "example_522",
-          "Complementary_43_0",
-          "example_526",
-          "example_527",
-          "Complementary_96_0",
-          "example_529",
-          "Complementary_37_0",
-          "example_534",
-          "example_535",
-          "example_538",
-          "example_539",
-          "example_541",
-          "example_542",
-          "example_543",
-          "Complementary_59_0",
-          "Complementary_31_0",
-          "example_549",
-          "example_551",
-          "example_554",
-          "Complementary_60_0",
-          "example_570",
-          "Complementary_86_0",
-          "mutual_error_3_0",
-          "example_576",
-          "example_578",
-          "example_580",
-          "mutual_error_8_0",
-          "mutual_error_19_0",
-          "mutual_error_11_0",
-          "example_593",
-          "Complementary_72_0",
-          "Complementary_35_0",
-          "example_597",
-          "redundancy_14_0",
-          "redundancy_7_0",
-          "Complementary_25_0",
-          "redundancy_47_0",
-          "example_605",
-          "example_618",
-          "Complementary_62_0",
-          "redundancy_20_0",
-          "example_625",
-          "example_630",
-          "example_634",
-          "Complementary_34_0",
-          "Complementary_9_0",
-          "example_644",
-          "Complementary_19_0",
-          "example_650",
-          "example_652",
-          "redundancy_60_0",
-          "redundancy_37_0",
-          "mutual_error_20_0",
-          "Complementary_28_0",
-          "Complementary_73_0",
-          "example_689",
-          "Complementary_4_0",
-          "example_696",
-          "example_697",
-          "redundancy_29_0",
-          "Complementary_45_0",
-          "example_707",
-          "mutual_error_18_0",
-          "example_712",
-          "example_713",
-          "redundancy_36_0",
-          "example_716",
-          "example_720",
-          "mutual_error_29_0",
-          "Complementary_26_0",
-          "redundancy_24_0",
-          "example_737",
-          "mutual_error_14_0",
-          "redundancy_35_0",
-          "example_746",
-          "example_750",
-          "redundancy_64_0",
-          "example_765",
-          "example_773",
-          "Complementary_13_0",
-          "mutual_error_22_0",
-          "mutual_error_10_0",
-          "Complementary_15_0",
-          "Complementary_80_0",
-          "example_788",
-          "Complementary_5_0",
-          "redundancy_32_0",
-          "redundancy_13_0",
-          "Complementary_30_0",
-          "redundancy_50_0",
-          "Complementary_66_0",
-          "Complementary_51_0",
-          "Complementary_2_0",
-          "redundancy_27_0",
-          "Complementary_85_0",
-          "example_819",
-          "Complementary_76_0",
-          "example_824",
-          "mutual_error_4_0",
-          "mutual_error_5_0",
-          "redundancy_33_0",
-          "example_834",
-          "Complementary_75_0",
-          "Complementary_33_0",
-          "example_843",
-          "redundancy_16_0",
-          "redundancy_3_0",
-          "Complementary_93_0",
-          "example_858",
-          "redundancy_1_0",
-          "redundancy_10_0",
-          "mutual_error_26_0",
-          "Complementary_36_0",
-          "redundancy_52_0",
-          "example_876",
-          "redundancy_4_0",
-          "Complementary_21_0",
-          "mutual_error_1_0",
-          "example_892",
-          "Complementary_83_0",
-          "redundancy_51_0",
-          "redundancy_0_0",
-          "example_901",
-          "redundancy_56_0",
-          "mutual_error_0_0",
-          "example_909",
-          "Complementary_50_0",
-          "redundancy_19_0",
-          "Complementary_95_0",
-          "Complementary_90_0",
-          "example_922",
-          "Complementary_61_0",
-          "Complementary_6_0",
-          "Complementary_69_0",
-          "Complementary_94_0",
-          "example_934",
-          "example_935",
-          "Complementary_11_0",
-          "example_939",
-          "example_940",
-          "example_945",
-          "Complementary_67_0",
-          "mutual_error_7_0",
-          "redundancy_57_0",
-          "mutual_error_17_0",
-          "Complementary_40_0",
-          "Complementary_32_0",
-          "example_960",
-          "redundancy_59_0",
-          "Complementary_29_0",
-          "Complementary_39_0",
-          "redundancy_44_0",
-          "example_984",
-          "example_985",
-          "redundancy_45_0",
-          "Complementary_64_0",
-          "redundancy_38_0"
+          "0_l_0_m-0_2.4-1_0.58-2_0.67-3_0.97",
+          "1_l_0_m-0_0.19-1_0.26-2_0.99-3_0.5",
+          "2_l_0_m-0_2.09-1_0.3-2_0.75-3_0.13",
+          "3_l_0_m-0_0.04-1_0.73-2_1.31-3_0.4",
+          "4_l_0_m-0_0.59-1_0.13-2_0.67-3_0.97",
+          "5_l_0_m-0_0.66-1_0.05-2_0.18-3_0.03",
+          "6_l_0_c_1_2_3-0_0.94-1_0.1-2_0.23-3_0.3",
+          "7_l_0_c_1_2_3-0_0.21-1_0.11-2_0.01-3_1.4",
+          "8_l_0_c_1_2_3-0_0.22-1_0.75-2_1.82-3_0.33",
+          "9_l_0_c_1_2_3-0_0.55-1_0.67-2_0.33-3_0.39",
+          "10_l_0_c_1_2_3-0_0.37-1_0.75-2_0.7-3_1.43",
+          "11_l_0_c_1_2_3-0_1.46-1_0.99-2_0.23-3_0.79",
+          "12_l_0_c_1_2_3-0_1.6-1_0.29-2_1.48-3_0.06",
+          "13_l_0_c_1_2_3-0_0.09-1_0.85-2_0.86-3_0.09",
+          "14_l_0_c_1_2_3-0_1.43-1_0.86-2_0.81-3_0.59",
+          "15_l_0_c_0_1_2-0_0.65-1_0.78-2_0.13-3_1.35",
+          "16_l_0_c_1_2_3-0_0.52-1_0.31-2_0.58-3_0.24",
+          "17_l_0_c_0_1_2-0_0.65-1_0.04-2_0.07-3_1.46",
+          "18_l_0_c_1_2_3-0_0.4-1_0.48-2_0.96-3_1.37",
+          "19_l_0_c_0_1_2-0_0.3-1_0.61-2_1.07-3_0.03",
+          "20_l_0_c_1_2_3-0_0.01-1_0.54-2_1.43-3_1.4",
+          "21_l_0_c_0_1_2-0_0.58-1_1.21-2_0.22-3_0.94",
+          "22_l_0_c_1_2_3-0_0.53-1_0.6-2_0.85-3_0.0",
+          "23_l_0_c_0_1_2-0_0.34-1_1.06-2_0.53-3_1.21",
+          "24_l_0_c_1_2_3-0_0.65-1_1.44-2_1.2-3_0.0",
+          "25_l_0_c_0_1_2-0_0.29-1_0.01-2_0.62-3_1.62",
+          "26_l_0_c_1_2_3-0_0.21-1_0.41-2_1.81-3_0.91",
+          "27_l_0_c_0_1_2-0_0.01-1_0.38-2_0.09-3_1.22",
+          "28_l_0_c_1_2_3-0_0.29-1_0.07-2_0.25-3_0.56",
+          "29_l_0_c_0_1_2-0_0.11-1_0.27-2_0.76-3_0.72",
+          "30_l_0_c_1_2_3-0_1.58-1_0.22-2_1.64-3_0.24",
+          "31_l_0_c_0_1_2-0_0.04-1_1.18-2_0.57-3_1.1",
+          "32_l_0_c_1_2_3-0_0.06-1_1.54-2_0.54-3_0.29",
+          "33_l_0_c_0_1_2-0_0.09-1_0.35-2_0.08-3_0.59",
+          "34_l_0_c_1_2_3-0_0.75-1_0.26-2_0.42-3_0.61",
+          "35_l_0_c_0_1_2-0_0.94-1_0.33-2_1.08-3_0.47",
+          "36_l_0_c_1_2_3-0_0.84-1_0.21-2_1.76-3_1.26",
+          "37_l_0_c_0_1_2-0_1.06-1_0.55-2_0.31-3_0.36",
+          "38_l_0_c_1_2_3-0_0.31-1_0.51-2_0.77-3_0.43",
+          "39_l_0_c_0_1_2-0_0.89-1_0.11-2_0.37-3_2.67",
+          "40_l_0_c_1_2_3-0_0.16-1_0.53-2_0.07-3_0.17",
+          "41_l_0_c_0_1_2-0_0.15-1_0.07-2_0.3-3_0.1",
+          "42_l_0_c_1_2_3-0_0.02-1_0.33-2_1.0-3_0.26",
+          "43_l_0_c_0_1_2-0_0.44-1_2.02-2_0.01-3_0.49",
+          "44_l_0_c_1_2_3-0_0.16-1_0.12-2_0.27-3_0.53",
+          "45_l_0_c_0_1_2-0_0.37-1_1.51-2_0.7-3_0.58",
+          "46_l_0_c_1_2_3-0_1.76-1_0.68-2_0.25-3_1.71",
+          "47_l_0_c_0_1_2-0_0.07-1_1.64-2_0.35-3_1.54",
+          "48_l_0_c_1_2_3-0_1.98-1_0.69-2_0.38-3_0.29",
+          "49_l_0_c_0_1_2-0_1.46-1_0.1-2_0.18-3_1.28",
+          "50_l_0_c_0_1_3-0_0.29-1_0.58-2_0.2-3_0.97",
+          "51_l_0_c_1_2_3-0_1.21-1_1.03-2_0.61-3_0.15",
+          "52_l_0_c_0_1_2-0_1.45-1_1.34-2_2.56-3_1.74",
+          "53_l_0_c_0_1_3-0_0.12-1_0.29-2_0.32-3_0.28",
+          "54_l_0_c_1_2_3-0_1.06-1_0.32-2_0.19-3_0.44",
+          "55_l_0_c_0_1_2-0_0.69-1_0.08-2_0.6-3_0.98",
+          "56_l_0_c_0_1_3-0_0.21-1_0.27-2_0.12-3_0.78",
+          "57_l_0_c_1_2_3-0_0.66-1_0.58-2_0.37-3_0.95",
+          "58_l_0_c_0_1_2-0_0.06-1_0.7-2_1.37-3_0.21",
+          "59_l_0_c_0_1_3-0_0.09-1_0.71-2_0.25-3_0.08",
+          "60_l_0_c_1_2_3-0_0.4-1_1.02-2_1.07-3_0.64",
+          "61_l_0_c_0_1_2-0_0.4-1_0.66-2_1.37-3_0.98",
+          "62_l_0_c_0_1_3-0_0.85-1_0.29-2_0.31-3_0.27",
+          "63_l_0_c_1_2_3-0_0.47-1_0.97-2_1.26-3_1.31",
+          "64_l_0_c_0_1_2-0_0.46-1_0.33-2_0.26-3_0.79",
+          "65_l_0_c_0_1_3-0_0.05-1_0.98-2_0.39-3_0.67",
+          "66_l_0_c_1_2_3-0_1.36-1_0.49-2_0.24-3_0.73",
+          "67_l_0_c_0_1_2-0_0.45-1_0.59-2_0.05-3_0.12",
+          "68_l_0_c_0_1_3-0_0.34-1_0.77-2_0.08-3_0.6",
+          "69_l_0_c_1_2_3-0_1.25-1_0.13-2_0.66-3_0.67",
+          "70_l_0_c_0_1_2-0_0.87-1_1.32-2_0.03-3_0.57",
+          "71_l_0_c_0_1_3-0_0.29-1_0.19-2_0.02-3_0.83",
+          "72_l_0_c_1_2_3-0_1.65-1_0.76-2_0.76-3_0.04",
+          "73_l_0_c_0_1_2-0_0.37-1_0.63-2_0.83-3_0.66",
+          "74_l_0_c_0_1_3-0_0.19-1_0.05-2_0.12-3_0.06",
+          "75_l_0_c_1_2_3-0_0.71-1_0.28-2_0.06-3_0.68",
+          "76_l_0_c_0_1_2-0_0.21-1_0.0-2_0.53-3_2.45",
+          "77_l_0_c_0_1_3-0_1.44-1_0.5-2_0.0-3_0.43",
+          "78_l_0_c_1_2_3-0_0.17-1_1.56-2_1.18-3_0.62",
+          "79_l_0_c_0_1_2-0_0.0-1_0.5-2_0.03-3_1.05",
+          "80_l_0_c_0_1_3-0_0.03-1_0.62-2_0.13-3_1.33",
+          "81_l_0_c_1_2_3-0_1.59-1_0.65-2_0.23-3_0.77",
+          "82_l_0_c_0_1_2-0_0.38-1_1.27-2_0.54-3_0.72",
+          "83_l_0_c_0_1_3-0_0.43-1_0.15-2_0.01-3_1.47",
+          "84_l_0_c_1_2_3-0_0.5-1_0.92-2_0.58-3_0.3",
+          "85_l_0_c_0_1_2-0_0.25-1_1.29-2_0.33-3_0.06",
+          "86_l_0_c_0_1_3-0_1.32-1_0.01-2_0.39-3_0.06",
+          "87_l_0_c_1_2_3-0_0.14-1_0.51-2_0.05-3_1.1",
+          "88_l_0_c_0_1_2-0_0.04-1_0.08-2_0.73-3_0.3",
+          "89_l_0_c_0_1_3-0_0.29-1_1.32-2_0.07-3_1.04",
+          "90_l_0_c_1_2_3-0_0.23-1_0.23-2_0.16-3_0.38",
+          "91_l_0_c_0_1_2-0_0.56-1_0.25-2_0.28-3_1.86",
+          "92_l_0_c_0_1_3-0_0.05-1_0.06-2_0.34-3_0.47",
+          "93_l_0_c_1_2_3-0_1.81-1_0.7-2_0.54-3_0.24",
+          "94_l_0_c_0_1_2-0_0.4-1_0.7-2_0.46-3_1.08",
+          "95_l_0_c_0_1_3-0_1.16-1_0.56-2_0.0-3_0.11",
+          "96_l_0_c_1_2_3-0_0.71-1_0.83-2_0.32-3_0.84",
+          "97_l_0_c_0_1_2-0_1.07-1_0.25-2_0.4-3_0.88",
+          "98_l_0_c_0_1_3-0_0.53-1_0.17-2_0.08-3_0.71",
+          "99_l_0_c_1_2_3-0_0.54-1_0.77-2_1.08-3_0.58",
+          "100_l_0_c_0_1_2-0_0.03-1_0.6-2_0.81-3_1.08",
+          "101_l_0_c_0_1_3-0_0.95-1_1.28-2_0.11-3_0.76",
+          "102_l_0_c_1_2_3-0_0.96-1_0.25-2_0.45-3_0.72",
+          "103_l_0_c_0_1_2-0_0.34-1_0.12-2_0.91-3_0.52",
+          "104_l_0_c_0_1_3-0_1.02-1_1.91-2_0.14-3_0.91",
+          "105_l_0_c_1_2_3-0_0.66-1_0.3-2_0.26-3_0.61",
+          "106_l_0_c_0_1_2-0_0.06-1_0.24-2_1.09-3_0.37",
+          "107_l_0_c_0_1_3-0_0.01-1_0.44-2_0.11-3_0.88",
+          "108_l_0_c_1_2_3-0_0.24-1_0.16-2_0.07-3_0.82",
+          "109_l_0_c_0_1_2-0_0.08-1_0.3-2_0.18-3_3.13",
+          "110_l_0_c_0_1_3-0_0.02-1_0.48-2_0.14-3_0.79",
+          "111_l_0_c_1_2_3-0_0.4-1_0.41-2_0.01-3_0.32",
+          "112_l_0_c_0_1_2-0_0.83-1_0.06-2_0.37-3_1.63",
+          "113_l_0_c_0_1_3-0_0.12-1_0.33-2_0.01-3_0.39",
+          "114_l_0_c_1_2_3-0_1.37-1_0.44-2_0.25-3_0.13",
+          "115_l_0_c_0_1_2-0_0.23-1_0.75-2_0.16-3_0.55",
+          "116_l_0_c_0_1_3-0_0.91-1_0.42-2_0.15-3_0.79",
+          "117_l_0_c_1_2_3-0_2.14-1_0.87-2_1.22-3_0.34",
+          "118_l_0_c_0_1_2-0_0.07-1_1.32-2_0.35-3_1.08",
+          "119_l_0_c_0_1_3-0_0.46-1_0.33-2_0.2-3_0.28",
+          "120_l_0_c_1_2_3-0_0.97-1_0.19-2_0.71-3_0.65",
+          "121_l_0_c_0_1_2-0_0.51-1_0.73-2_0.62-3_0.62",
+          "122_l_0_c_0_1_3-0_0.04-1_0.36-2_0.36-3_0.39",
+          "123_l_0_c_1_2_3-0_1.52-1_0.36-2_1.13-3_0.12",
+          "124_l_0_c_0_1_2-0_0.88-1_0.49-2_0.41-3_0.06",
+          "125_l_0_c_0_1_3-0_0.4-1_0.88-2_0.22-3_0.63",
+          "126_l_0_c_1_2_3-0_2.36-1_0.67-2_0.25-3_0.6",
+          "127_l_0_c_0_1_2-0_0.02-1_0.76-2_0.62-3_1.25",
+          "128_l_0_c_0_1_3-0_0.43-1_0.28-2_0.37-3_0.23",
+          "129_l_0_c_1_2_3-0_0.26-1_0.72-2_0.3-3_0.65",
+          "130_l_0_c_0_1_2-0_0.62-1_0.12-2_0.88-3_0.08",
+          "131_l_0_c_0_1_3-0_0.88-1_0.09-2_0.06-3_0.14",
+          "132_l_0_c_1_2_3-0_2.15-1_0.28-2_0.77-3_0.65",
+          "133_l_0_c_0_1_2-0_1.4-1_1.55-2_0.72-3_1.84",
+          "134_l_0_c_0_1_3-0_0.15-1_2.36-2_0.14-3_0.01",
+          "135_l_0_c_1_2_3-0_0.34-1_0.43-2_0.83-3_0.3",
+          "136_l_0_c_0_1_2-0_1.45-1_1.47-2_0.74-3_1.76",
+          "137_l_0_c_0_1_3-0_0.45-1_0.27-2_0.17-3_0.41",
+          "138_l_0_c_1_2_3-0_1.76-1_0.12-2_0.96-3_0.52",
+          "139_l_0_c_0_1_2-0_0.8-1_1.11-2_0.42-3_0.71",
+          "140_l_0_c_0_1_3-0_1.32-1_0.48-2_0.2-3_0.41",
+          "141_l_0_c_1_2_3-0_0.48-1_1.4-2_0.8-3_0.91",
+          "142_l_0_c_0_1_2-0_0.96-1_0.63-2_0.07-3_0.91",
+          "143_l_0_c_0_1_3-0_0.83-1_1.26-2_0.3-3_0.77",
+          "144_l_0_c_1_2_3-0_0.96-1_0.6-2_1.68-3_0.75",
+          "145_l_0_c_0_1_2-0_0.31-1_0.07-2_0.28-3_0.91",
+          "146_l_0_c_0_1_3-0_0.57-1_0.95-2_0.1-3_0.79",
+          "147_l_0_c_1_2_3-0_1.57-1_1.87-2_0.62-3_0.4",
+          "148_l_0_c_0_1_2-0_0.54-1_0.37-2_0.2-3_0.36",
+          "149_l_0_c_0_1_3-0_0.82-1_0.31-2_0.13-3_0.3",
+          "150_l_0_c_1_2_3-0_0.76-1_1.0-2_0.17-3_0.09",
+          "151_l_0_c_0_1_2-0_0.76-1_0.63-2_0.18-3_1.09",
+          "152_l_0_c_0_1_3-0_0.12-1_0.21-2_0.03-3_0.46",
+          "153_l_0_c_1_2_3-0_1.67-1_0.51-2_0.15-3_0.14",
+          "154_l_0_c_0_1_2-0_1.85-1_0.59-2_0.94-3_1.0",
+          "155_l_0_c_0_1_3-0_0.72-1_0.19-2_0.07-3_0.42",
+          "156_l_0_c_1_2_3-0_1.53-1_0.67-2_0.32-3_0.21",
+          "157_l_0_c_0_1_2-0_0.91-1_0.22-2_0.01-3_0.94",
+          "158_l_0_c_0_1_3-0_0.99-1_0.07-2_0.03-3_0.44",
+          "159_l_0_c_1_2_3-0_1.87-1_0.45-2_0.13-3_0.84",
+          "160_l_0_c_0_1_2-0_0.55-1_1.68-2_0.5-3_0.43",
+          "161_l_0_c_0_1_3-0_0.23-1_0.89-2_0.22-3_0.25",
+          "162_l_0_c_1_2_3-0_1.95-1_1.36-2_0.13-3_0.41",
+          "163_l_0_c_0_1_2-0_0.39-1_0.91-2_0.58-3_0.04",
+          "164_l_0_c_0_1_3-0_0.43-1_0.7-2_0.47-3_0.35",
+          "165_l_0_c_1_2_3-0_1.88-1_0.62-2_1.4-3_0.5",
+          "166_l_0_c_0_1_2-0_0.84-1_0.23-2_0.5-3_0.61",
+          "167_l_0_c_0_1_3-0_0.27-1_1.24-2_0.02-3_0.2",
+          "168_l_0_c_0_2_3-0_0.51-1_0.24-2_0.22-3_0.84",
+          "169_l_0_c_1_2_3-0_0.96-1_0.14-2_0.06-3_0.32",
+          "170_l_0_c_0_1_2-0_0.33-1_0.19-2_0.67-3_2.43",
+          "171_l_0_c_0_1_3-0_0.02-1_1.91-2_0.02-3_0.89",
+          "172_l_0_c_0_2_3-0_0.09-1_0.06-2_1.76-3_0.25",
+          "173_l_0_c_1_2_3-0_0.46-1_0.17-2_0.63-3_0.69",
+          "174_l_0_c_0_1_2-0_0.86-1_0.33-2_1.69-3_0.15",
+          "175_l_0_c_0_1_3-0_0.86-1_1.95-2_0.58-3_0.3",
+          "176_l_0_c_0_2_3-0_0.67-1_0.61-2_0.09-3_0.5",
+          "177_l_0_c_1_2_3-0_1.36-1_1.63-2_0.5-3_0.5",
+          "178_l_0_c_0_1_2-0_0.88-1_0.68-2_0.48-3_0.37",
+          "179_l_0_c_0_1_3-0_0.17-1_0.53-2_0.2-3_0.85",
+          "180_l_0_c_0_2_3-0_1.02-1_0.15-2_0.51-3_0.09",
+          "181_l_0_c_1_2_3-0_0.44-1_0.08-2_0.67-3_0.09",
+          "182_l_0_c_0_1_2-0_0.35-1_0.12-2_0.43-3_1.1",
+          "183_l_0_c_0_1_3-0_0.02-1_0.01-2_0.14-3_0.5",
+          "184_l_0_c_0_2_3-0_1.02-1_0.39-2_0.25-3_0.71",
+          "185_l_0_c_1_2_3-0_0.61-1_2.62-2_1.83-3_0.12",
+          "186_l_0_c_0_1_2-0_0.19-1_0.78-2_0.11-3_0.31",
+          "187_l_0_c_0_1_3-0_0.36-1_0.29-2_0.04-3_0.05",
+          "188_l_0_c_0_2_3-0_0.59-1_0.17-2_0.17-3_0.34",
+          "189_l_0_c_1_2_3-0_0.72-1_0.12-2_1.03-3_0.17",
+          "190_l_0_c_0_1_2-0_1.44-1_0.38-2_0.15-3_0.07",
+          "191_l_0_c_0_1_3-0_0.06-1_0.49-2_0.04-3_0.68",
+          "192_l_0_c_0_2_3-0_0.62-1_0.13-2_0.58-3_1.0",
+          "193_l_0_c_1_2_3-0_0.2-1_0.08-2_0.43-3_0.38",
+          "194_l_0_c_0_1_2-0_0.18-1_0.63-2_0.38-3_1.89",
+          "195_l_0_c_0_1_3-0_0.09-1_0.35-2_0.0-3_0.62",
+          "196_l_0_c_0_2_3-0_1.4-1_0.35-2_0.3-3_0.2",
+          "197_l_0_c_1_2_3-0_0.74-1_0.47-2_0.8-3_0.9",
+          "198_l_0_c_0_1_2-0_0.22-1_0.56-2_0.48-3_0.35",
+          "199_l_0_c_0_1_3-0_0.73-1_0.35-2_0.02-3_0.78",
+          "200_l_0_c_0_2_3-0_1.41-1_0.19-2_0.63-3_1.05",
+          "201_l_0_c_1_2_3-0_1.94-1_0.01-2_1.37-3_0.65",
+          "202_l_0_c_0_1_2-0_0.97-1_0.5-2_1.42-3_0.01",
+          "203_l_0_c_0_1_3-0_2.33-1_0.97-2_0.03-3_0.16",
+          "204_l_0_c_0_2_3-0_0.12-1_0.0-2_2.7-3_0.77",
+          "205_l_0_c_1_2_3-0_1.48-1_0.09-2_0.31-3_0.04",
+          "206_l_0_c_0_1_2-0_1.15-1_0.42-2_0.23-3_0.03",
+          "207_l_0_c_0_1_3-0_0.58-1_0.03-2_0.42-3_0.91",
+          "208_l_0_c_0_2_3-0_0.28-1_0.1-2_0.57-3_0.67",
+          "209_l_0_c_1_2_3-0_0.9-1_0.31-2_0.71-3_0.99",
+          "210_l_0_c_0_1_2-0_0.5-1_0.4-2_0.07-3_0.66",
+          "211_l_0_c_0_1_3-0_1.07-1_0.42-2_0.12-3_1.5",
+          "212_l_0_c_0_2_3-0_0.67-1_0.0-2_0.73-3_0.15",
+          "213_l_0_c_1_2_3-0_0.12-1_0.61-2_0.29-3_1.08",
+          "214_l_0_c_0_1_2-0_0.5-1_0.87-2_1.62-3_0.17",
+          "215_l_0_c_0_1_3-0_0.04-1_0.21-2_0.34-3_1.09",
+          "216_l_0_c_0_2_3-0_0.07-1_0.09-2_1.18-3_0.13",
+          "217_l_0_c_1_2_3-0_0.4-1_1.25-2_0.61-3_1.28",
+          "218_l_0_c_0_1_2-0_0.54-1_0.84-2_0.73-3_0.02",
+          "219_l_0_c_0_1_3-0_0.65-1_1.4-2_0.42-3_0.96",
+          "220_l_0_c_0_2_3-0_1.47-1_0.02-2_0.06-3_0.47",
+          "221_l_0_c_1_2_3-0_1.14-1_0.21-2_0.41-3_0.34",
+          "222_l_0_c_0_1_2-0_0.02-1_0.2-2_0.76-3_0.11",
+          "223_l_0_c_0_1_3-0_0.73-1_0.45-2_0.04-3_0.54",
+          "224_l_0_c_0_2_3-0_0.04-1_0.21-2_1.64-3_0.35",
+          "225_l_0_c_1_2_3-0_0.24-1_0.28-2_1.16-3_0.01",
+          "226_l_0_c_0_1_2-0_0.09-1_0.19-2_0.75-3_0.98",
+          "227_l_0_c_0_1_3-0_0.5-1_0.47-2_0.15-3_0.21",
+          "228_l_0_c_0_2_3-0_0.98-1_0.13-2_0.45-3_0.22",
+          "229_l_0_c_1_2_3-0_0.5-1_0.03-2_0.19-3_0.71",
+          "230_l_0_c_0_1_2-0_0.39-1_0.04-2_1.28-3_1.12",
+          "231_l_0_c_0_1_3-0_0.54-1_1.35-2_0.18-3_0.37",
+          "232_l_0_c_0_2_3-0_0.62-1_0.53-2_1.59-3_0.61",
+          "233_l_0_c_1_2_3-0_1.43-1_1.5-2_0.97-3_0.15",
+          "234_l_0_c_0_1_2-0_0.2-1_0.03-2_0.34-3_2.92",
+          "235_l_0_c_0_1_3-0_0.2-1_0.88-2_0.01-3_1.05",
+          "236_l_0_c_0_2_3-0_1.07-1_0.44-2_0.1-3_0.54",
+          "237_l_0_c_1_2_3-0_2.12-1_0.02-2_0.35-3_0.28",
+          "238_l_0_c_0_1_2-0_1.17-1_0.81-2_0.51-3_0.79",
+          "239_l_0_c_0_1_3-0_0.41-1_1.64-2_0.05-3_0.61",
+          "240_l_0_c_0_2_3-0_0.13-1_0.21-2_0.33-3_0.27",
+          "241_l_0_c_1_2_3-0_0.34-1_2.19-2_0.24-3_1.46",
+          "242_l_0_c_0_1_2-0_0.12-1_0.33-2_0.06-3_0.3",
+          "243_l_0_c_0_1_3-0_0.75-1_0.86-2_0.47-3_0.26",
+          "244_l_0_c_0_2_3-0_0.56-1_0.2-2_0.13-3_0.65",
+          "245_l_0_c_1_2_3-0_1.99-1_0.32-2_0.2-3_0.2",
+          "246_l_0_c_0_1_2-0_0.11-1_0.36-2_0.08-3_0.34",
+          "247_l_0_c_0_1_3-0_0.09-1_1.41-2_0.27-3_0.24",
+          "248_l_0_c_0_2_3-0_0.17-1_0.45-2_0.48-3_0.06",
+          "249_l_0_c_1_2_3-0_1.14-1_0.8-2_0.86-3_0.91",
+          "250_l_0_c_0_1_2-0_0.29-1_0.65-2_0.57-3_1.26",
+          "251_l_0_c_0_1_3-0_0.14-1_0.09-2_0.0-3_0.22",
+          "252_l_0_c_0_2_3-0_0.99-1_0.05-2_0.62-3_0.63",
+          "253_l_0_c_1_2_3-0_0.62-1_0.59-2_1.56-3_0.29",
+          "254_l_0_c_0_1_2-0_0.32-1_0.96-2_0.2-3_0.33",
+          "255_l_0_c_0_1_3-0_0.85-1_2.17-2_0.15-3_0.82",
+          "256_l_0_c_0_2_3-0_0.93-1_0.08-2_0.33-3_1.44",
+          "257_l_0_c_1_2_3-0_0.8-1_0.21-2_0.69-3_0.07",
+          "258_l_0_c_0_1_2-0_0.41-1_1.63-2_0.11-3_0.71",
+          "259_l_0_c_0_1_3-0_0.08-1_0.58-2_0.06-3_0.03",
+          "260_l_0_c_0_2_3-0_0.7-1_0.33-2_0.21-3_0.14",
+          "261_l_0_c_1_2_3-0_0.42-1_0.04-2_0.07-3_0.52",
+          "262_l_0_c_0_1_2-0_1.92-1_1.55-2_0.71-3_0.32",
+          "263_l_0_c_0_1_3-0_0.1-1_1.02-2_0.03-3_0.27",
+          "264_l_0_c_0_2_3-0_1.06-1_0.0-2_0.03-3_1.53",
+          "265_l_0_c_1_2_3-0_0.29-1_0.16-2_0.71-3_0.28",
+          "266_l_0_c_0_1_2-0_0.68-1_0.79-2_0.03-3_0.28",
+          "267_l_0_c_0_1_3-0_0.8-1_0.07-2_0.02-3_1.27",
+          "268_l_0_c_0_2_3-0_0.19-1_0.02-2_0.02-3_1.22",
+          "269_l_0_c_1_2_3-0_0.74-1_0.27-2_0.15-3_0.1",
+          "270_l_0_c_0_1_2-0_1.19-1_0.32-2_0.27-3_2.91",
+          "271_l_0_c_0_1_3-0_0.57-1_0.95-2_0.0-3_0.42",
+          "272_l_0_c_0_2_3-0_0.8-1_0.05-2_0.01-3_0.07",
+          "273_l_0_c_1_2_3-0_1.12-1_0.67-2_0.25-3_0.71",
+          "274_l_0_c_0_1_2-0_0.41-1_1.62-2_0.2-3_0.33",
+          "275_l_0_c_0_1_3-0_0.03-1_1.64-2_0.11-3_0.36",
+          "276_l_0_c_0_2_3-0_0.08-1_0.03-2_0.88-3_0.72",
+          "277_l_0_c_1_2_3-0_0.26-1_0.53-2_0.86-3_0.24",
+          "278_l_0_c_0_1_2-0_0.33-1_0.27-2_0.03-3_1.37",
+          "279_l_0_c_0_1_3-0_0.54-1_0.33-2_0.04-3_0.02",
+          "280_l_0_c_0_2_3-0_0.02-1_0.16-2_0.1-3_0.26",
+          "281_l_0_c_1_2_3-0_0.25-1_0.61-2_1.11-3_0.87",
+          "282_l_0_c_0_1_2-0_0.93-1_0.81-2_0.65-3_0.53",
+          "283_l_0_c_0_1_3-0_0.01-1_1.45-2_0.22-3_0.37",
+          "284_l_0_c_0_2_3-0_0.4-1_0.24-2_0.76-3_0.36",
+          "285_l_0_c_1_2_3-0_0.23-1_0.3-2_0.24-3_0.17",
+          "286_l_0_c_0_1_2-0_0.08-1_0.51-2_0.26-3_0.01",
+          "287_l_0_c_0_1_3-0_1.0-1_0.45-2_0.24-3_0.01",
+          "288_l_0_c_0_2_3-0_1.7-1_0.06-2_0.42-3_0.1",
+          "289_l_0_c_1_2_3-0_0.04-1_0.29-2_0.44-3_0.89",
+          "290_l_0_c_0_1_2-0_1.22-1_0.8-2_0.19-3_1.34",
+          "291_l_0_c_0_1_3-0_0.37-1_0.18-2_0.0-3_0.21",
+          "292_l_0_c_0_2_3-0_0.19-1_0.07-2_0.69-3_0.52",
+          "293_l_0_c_1_2_3-0_0.08-1_1.06-2_0.66-3_0.18",
+          "294_l_0_c_0_1_2-0_0.42-1_0.59-2_0.54-3_0.64",
+          "295_l_0_c_0_1_3-0_0.02-1_1.21-2_0.24-3_0.14",
+          "296_l_0_c_0_2_3-0_0.7-1_0.16-2_0.01-3_0.05",
+          "297_l_0_c_1_2_3-0_1.26-1_1.38-2_0.54-3_0.11",
+          "298_l_0_c_0_1_2-0_0.5-1_1.73-2_0.77-3_0.27",
+          "299_l_0_c_0_1_3-0_0.35-1_0.17-2_0.12-3_0.26",
+          "300_l_0_c_0_2_3-0_1.88-1_0.01-2_0.15-3_0.36",
+          "301_l_0_c_1_2_3-0_1.19-1_0.75-2_0.32-3_0.24",
+          "302_l_0_c_0_1_2-0_1.03-1_0.57-2_0.27-3_1.16",
+          "303_l_0_c_0_1_3-0_0.95-1_0.15-2_0.23-3_0.39",
+          "304_l_0_c_0_2_3-0_0.49-1_0.1-2_1.35-3_0.5",
+          "305_l_0_c_1_2_3-0_0.17-1_0.79-2_1.12-3_0.76",
+          "306_l_0_c_0_1_2-0_0.39-1_0.49-2_1.38-3_0.59",
+          "307_l_0_c_0_1_3-0_0.37-1_0.11-2_0.37-3_2.06",
+          "308_l_0_c_0_2_3-0_0.7-1_0.03-2_0.27-3_1.07",
+          "309_l_0_c_1_2_3-0_0.37-1_0.28-2_0.45-3_0.31",
+          "310_l_0_c_0_1_2-0_1.05-1_0.85-2_0.1-3_1.13",
+          "311_l_0_c_0_1_3-0_0.52-1_0.52-2_0.07-3_0.6",
+          "312_l_0_c_0_2_3-0_0.45-1_0.57-2_0.81-3_0.1",
+          "313_l_0_c_1_2_3-0_0.2-1_0.29-2_0.6-3_0.1",
+          "314_l_0_c_0_1_2-0_0.56-1_0.12-2_0.17-3_1.17",
+          "315_l_0_c_0_1_3-0_0.87-1_1.42-2_0.56-3_0.54",
+          "316_l_0_c_0_2_3-0_0.42-1_0.18-2_0.06-3_0.21",
+          "317_l_0_c_1_2_3-0_1.41-1_0.45-2_0.43-3_0.52",
+          "318_l_0_c_0_1_2-0_0.34-1_0.39-2_0.55-3_0.14",
+          "319_l_0_c_0_1_3-0_0.08-1_0.15-2_0.04-3_1.11",
+          "320_l_0_c_0_2_3-0_0.48-1_0.0-2_0.73-3_0.07",
+          "321_l_0_c_1_2_3-0_0.83-1_0.35-2_0.24-3_1.44",
+          "322_l_0_c_0_1_2-0_0.55-1_0.22-2_1.33-3_0.45",
+          "323_l_0_c_0_1_3-0_1.75-1_0.01-2_0.1-3_0.54",
+          "324_l_0_c_0_2_3-0_0.17-1_0.05-2_0.19-3_1.14",
+          "325_l_0_c_1_2_3-0_0.51-1_0.77-2_0.74-3_0.12",
+          "326_l_0_c_0_1_2-0_0.42-1_0.67-2_0.01-3_0.33",
+          "327_l_0_c_0_1_3-0_1.23-1_0.65-2_0.09-3_0.25",
+          "328_l_0_c_0_2_3-0_0.16-1_0.05-2_0.73-3_0.51",
+          "329_l_0_c_1_2_3-0_0.01-1_0.47-2_0.24-3_1.68",
+          "330_l_0_c_0_1_2-0_0.14-1_0.48-2_0.21-3_0.24",
+          "331_l_0_c_0_1_3-0_1.01-1_0.01-2_0.47-3_0.38",
+          "332_l_0_c_0_2_3-0_0.59-1_0.13-2_0.94-3_0.17",
+          "333_l_0_c_1_2_3-0_0.75-1_0.05-2_0.95-3_0.17",
+          "334_l_0_c_0_1_2-0_0.66-1_0.71-2_0.15-3_0.8",
+          "335_l_0_c_0_1_3-0_0.64-1_0.97-2_0.22-3_0.04",
+          "336_l_0_c_0_2_3-0_0.43-1_0.03-2_0.55-3_0.38",
+          "337_l_0_c_1_2_3-0_0.89-1_0.45-2_0.37-3_0.96",
+          "338_l_0_c_0_1_2-0_0.71-1_0.6-2_0.43-3_1.02",
+          "339_l_0_c_0_1_3-0_1.01-1_0.03-2_0.07-3_0.25",
+          "340_l_0_c_0_2_3-0_0.36-1_0.2-2_0.6-3_0.12",
+          "341_l_0_c_1_2_3-0_1.41-1_0.21-2_1.73-3_0.31",
+          "342_l_0_c_0_1_2-0_0.83-1_0.47-2_0.45-3_0.57",
+          "343_l_0_c_0_1_3-0_0.21-1_0.05-2_0.02-3_0.41",
+          "344_l_0_c_0_2_3-0_0.03-1_0.13-2_0.87-3_0.0",
+          "345_l_0_c_1_2_3-0_1.3-1_0.05-2_0.05-3_0.03",
+          "346_l_0_c_0_1_2-0_0.18-1_0.63-2_0.8-3_1.07",
+          "347_l_0_c_0_1_3-0_0.42-1_1.61-2_0.15-3_0.28",
+          "348_l_0_c_0_2_3-0_0.37-1_0.2-2_0.67-3_0.46",
+          "349_l_0_c_1_2_3-0_1.21-1_0.57-2_0.75-3_0.94",
+          "350_l_0_c_0_1_2-0_0.42-1_0.43-2_0.08-3_0.78",
+          "351_l_0_c_0_1_3-0_0.09-1_0.26-2_0.57-3_0.6",
+          "352_l_0_c_0_2_3-0_0.41-1_0.18-2_0.02-3_1.65",
+          "353_l_0_c_1_2_3-0_0.83-1_1.08-2_0.41-3_0.78",
+          "354_l_0_c_0_1_2-0_0.53-1_0.11-2_0.03-3_0.95",
+          "355_l_0_c_0_1_3-0_1.04-1_0.06-2_0.07-3_0.74",
+          "356_l_0_c_0_2_3-0_0.82-1_0.25-2_0.51-3_1.48",
+          "357_l_0_c_1_2_3-0_0.28-1_0.97-2_0.33-3_0.22",
+          "358_l_0_c_0_1_2-0_0.96-1_0.21-2_0.55-3_0.51",
+          "359_l_0_c_0_1_3-0_0.29-1_0.85-2_0.0-3_0.01",
+          "360_l_0_c_0_2_3-0_0.37-1_0.0-2_0.27-3_0.11",
+          "361_l_0_c_1_2_3-0_1.1-1_1.42-2_1.57-3_0.75",
+          "362_l_0_c_0_1_2-0_0.1-1_0.1-2_0.19-3_0.72",
+          "363_l_0_c_0_1_3-0_0.54-1_0.21-2_0.27-3_0.47",
+          "364_l_0_c_0_2_3-0_0.0-1_0.18-2_0.99-3_0.57",
+          "365_l_0_c_1_2_3-0_1.2-1_0.0-2_0.46-3_0.22",
+          "366_l_0_c_0_1_2-0_0.04-1_0.79-2_0.58-3_2.26",
+          "367_l_0_c_0_1_3-0_0.69-1_0.46-2_0.21-3_0.63",
+          "368_l_0_c_0_2_3-0_0.84-1_0.25-2_0.01-3_1.58",
+          "369_l_0_c_1_2_3-0_0.79-1_1.57-2_1.02-3_0.12",
+          "370_l_0_c_0_1_2-0_1.37-1_0.08-2_0.38-3_0.02",
+          "371_l_0_c_0_1_3-0_0.66-1_0.1-2_0.07-3_0.3",
+          "372_l_0_c_0_2_3-0_0.04-1_0.01-2_0.83-3_0.49",
+          "373_l_0_c_1_2_3-0_0.04-1_0.32-2_0.52-3_0.0",
+          "374_l_0_c_0_1_2-0_0.17-1_1.52-2_1.11-3_0.93",
+          "375_l_0_c_0_1_3-0_0.62-1_0.14-2_0.28-3_1.31",
+          "376_l_0_c_0_2_3-0_0.05-1_0.34-2_0.67-3_1.07",
+          "377_l_0_c_1_2_3-0_0.3-1_1.49-2_0.12-3_0.36",
+          "378_l_0_c_0_1_2-0_0.96-1_0.08-2_1.15-3_0.16",
+          "379_l_0_c_0_1_3-0_0.03-1_0.4-2_0.16-3_0.77",
+          "380_l_0_c_0_2_3-0_0.88-1_0.03-2_0.54-3_0.18",
+          "381_l_0_c_1_2_3-0_0.77-1_0.88-2_0.54-3_0.06",
+          "382_l_0_c_0_1_2-0_0.27-1_0.49-2_0.58-3_0.33",
+          "383_l_0_c_0_1_3-0_0.6-1_1.38-2_0.1-3_0.92",
+          "384_l_0_c_0_2_3-0_0.01-1_0.12-2_0.47-3_0.42",
+          "385_l_0_c_1_2_3-0_1.66-1_0.87-2_0.92-3_0.85",
+          "386_l_0_c_0_1_2-0_0.25-1_0.02-2_0.35-3_1.3",
+          "387_l_0_c_0_1_3-0_0.37-1_0.38-2_0.03-3_0.59",
+          "388_l_0_c_0_2_3-0_0.31-1_0.01-2_0.2-3_0.06",
+          "389_l_0_c_1_2_3-0_0.17-1_0.93-2_0.35-3_0.41",
+          "390_l_0_c_0_1_2-0_1.91-1_0.61-2_0.7-3_0.0",
+          "391_l_0_c_0_1_3-0_0.24-1_0.06-2_0.09-3_0.05",
+          "392_l_0_c_0_2_3-0_0.16-1_0.03-2_0.09-3_0.36",
+          "393_l_0_c_1_2_3-0_1.09-1_0.77-2_1.63-3_1.27",
+          "394_l_0_c_0_1_2-0_0.14-1_0.11-2_0.28-3_0.78",
+          "395_l_0_c_0_1_3-0_0.94-1_0.86-2_0.01-3_0.19",
+          "396_l_0_c_0_2_3-0_0.27-1_0.08-2_0.67-3_0.05",
+          "397_l_0_c_1_2_3-0_1.17-1_0.45-2_0.83-3_1.08",
+          "398_l_0_c_0_1_2-0_0.41-1_0.24-2_0.81-3_1.91",
+          "399_l_0_c_3-0_0.41-1_0.26-2_0.35-3_0.71",
+          "400_l_0_r-0_0.43-1_0.04-2_0.59-3_0.83",
+          "401_l_0_r-0_1.43-1_0.01-2_0.46-3_0.06",
+          "402_l_0_r-0_0.78-1_0.36-2_0.11-3_0.63",
+          "403_l_0_r-0_0.89-1_0.11-2_0.0-3_0.61",
+          "404_l_0_r-0_1.52-1_0.16-2_0.04-3_1.25",
+          "405_l_0_r-0_0.0-1_0.05-2_0.23-3_0.48",
+          "406_l_0_r-0_1.03-1_0.04-2_0.01-3_1.2",
+          "407_l_0_r-0_0.63-1_0.27-2_0.04-3_0.47",
+          "408_l_0_r-0_0.12-1_0.23-2_0.0-3_1.16",
+          "409_l_0_r-0_1.4-1_0.15-2_0.32-3_0.87",
+          "410_l_0_r-0_0.25-1_0.21-2_0.12-3_1.27",
+          "411_l_0_r-0_0.1-1_0.07-2_0.28-3_1.17",
+          "412_l_0_r-0_0.01-1_0.1-2_0.06-3_2.13",
+          "413_l_0_r-0_0.58-1_0.15-2_0.1-3_0.14",
+          "414_l_0_r-0_1.17-1_0.07-2_0.32-3_0.67",
+          "415_l_0_r-0_0.33-1_0.14-2_0.16-3_0.79",
+          "416_l_0_r-0_0.15-1_0.03-2_0.02-3_0.65",
+          "417_l_0_r-0_0.26-1_0.02-2_0.27-3_0.76",
+          "418_l_0_r-0_0.76-1_0.12-2_0.01-3_2.09",
+          "419_l_0_r-0_0.62-1_0.17-2_0.04-3_0.15",
+          "420_l_0_r-0_1.9-1_0.36-2_0.24-3_1.36",
+          "421_l_0_r-0_0.54-1_0.04-2_0.07-3_0.0",
+          "422_l_0_r-0_1.29-1_0.71-2_0.43-3_0.64",
+          "423_l_0_r-0_0.16-1_0.19-2_0.07-3_1.77",
+          "424_l_0_r-0_0.97-1_0.17-2_0.11-3_0.38",
+          "425_l_0_r-0_0.19-1_0.2-2_0.01-3_1.43",
+          "426_l_0_r-0_0.15-1_0.18-2_0.19-3_2.21",
+          "427_l_0_r-0_0.79-1_0.07-2_0.15-3_2.13",
+          "428_l_0_r-0_0.91-1_0.59-2_0.15-3_1.07",
+          "429_l_0_r-0_1.36-1_0.0-2_0.22-3_0.42",
+          "430_l_0_r-0_0.25-1_0.01-2_0.05-3_0.51",
+          "431_l_0_r-0_1.29-1_0.02-2_0.0-3_0.26",
+          "432_l_0_r-0_1.09-1_0.0-2_0.05-3_0.01",
+          "433_l_0_r-0_0.0-1_0.23-2_0.01-3_0.02",
+          "434_l_0_r-0_1.61-1_0.01-2_0.21-3_1.94",
+          "435_l_0_r-0_0.5-1_0.16-2_0.01-3_1.22",
+          "436_l_0_r-0_0.19-1_0.04-2_0.04-3_1.15",
+          "437_l_0_r-0_1.12-1_0.22-2_0.05-3_0.29",
+          "438_l_0_r-0_0.7-1_0.01-2_0.1-3_0.21",
+          "439_l_0_r-0_1.87-1_0.0-2_0.29-3_0.19",
+          "440_l_0_r-0_0.88-1_0.25-2_0.04-3_1.33",
+          "441_l_0_r-0_0.27-1_0.17-2_0.39-3_1.46",
+          "442_l_0_r-0_1.66-1_0.02-2_0.3-3_0.96",
+          "443_l_0_r-0_0.28-1_0.01-2_0.01-3_1.64",
+          "444_l_0_r-0_2.76-1_0.06-2_0.04-3_0.52",
+          "445_l_0_r-0_0.13-1_0.1-2_0.0-3_0.35",
+          "446_l_0_r-0_0.31-1_0.28-2_0.35-3_0.77",
+          "447_l_0_r-0_0.48-1_0.02-2_0.25-3_0.45",
+          "448_l_0_r-0_0.77-1_0.06-2_0.02-3_0.49",
+          "449_l_0_r-0_2.3-1_0.37-2_0.14-3_0.82",
+          "450_l_0_r-0_0.28-1_0.26-2_0.11-3_1.25",
+          "451_l_0_r-0_0.07-1_0.02-2_0.11-3_1.75",
+          "452_l_0_r-0_0.74-1_0.04-2_0.29-3_0.75",
+          "453_l_0_r-0_2.61-1_0.19-2_0.09-3_1.02",
+          "454_l_0_r-0_0.73-1_0.03-2_0.17-3_0.55",
+          "455_l_0_r-0_2.01-1_0.18-2_0.27-3_0.13",
+          "456_l_0_r-0_1.77-1_0.02-2_0.18-3_0.93",
+          "457_l_0_r-0_0.83-1_0.11-2_0.48-3_0.8",
+          "458_l_0_r-0_0.52-1_0.05-2_0.36-3_0.56",
+          "459_l_0_r-0_0.53-1_0.41-2_0.06-3_0.49",
+          "460_l_0_r-0_0.83-1_0.43-2_0.26-3_1.05",
+          "461_l_0_r-0_0.06-1_0.12-2_0.03-3_1.44",
+          "462_l_0_r-0_0.34-1_0.0-2_0.34-3_2.22",
+          "463_l_0_r-0_1.34-1_0.03-2_0.02-3_0.31",
+          "464_l_0_r-0_1.77-1_0.34-2_0.26-3_0.85",
+          "465_l_0_r-0_0.66-1_0.07-2_0.12-3_0.77",
+          "466_l_0_r-0_0.49-1_0.01-2_0.12-3_0.24",
+          "467_l_0_r-0_0.8-1_0.18-2_0.02-3_0.09",
+          "468_l_0_r-0_0.27-1_0.14-2_0.13-3_0.22",
+          "469_l_0_r-0_0.29-1_0.0-2_0.14-3_1.01",
+          "470_l_0_r-0_0.07-1_0.45-2_0.15-3_0.3",
+          "471_l_0_r-0_0.06-1_0.2-2_0.24-3_1.57",
+          "472_l_0_r-0_0.42-1_0.02-2_0.01-3_1.08",
+          "473_l_0_r-0_0.47-1_0.62-2_0.43-3_1.78",
+          "474_l_0_r-0_0.71-1_0.11-2_0.06-3_1.44",
+          "475_l_0_r-0_0.33-1_0.08-2_0.15-3_1.09",
+          "476_l_0_r-0_1.4-1_0.04-2_0.04-3_0.96",
+          "477_l_0_r-0_0.1-1_0.0-2_0.32-3_1.71",
+          "478_l_0_r-0_2.1-1_0.01-2_0.08-3_0.99",
+          "479_l_0_r-0_0.43-1_0.24-2_0.09-3_0.14",
+          "480_l_0_r-0_0.12-1_0.01-2_0.1-3_0.7",
+          "481_l_0_r-0_0.44-1_0.16-2_0.24-3_1.13",
+          "482_l_0_r-0_0.49-1_0.23-2_0.03-3_1.56",
+          "483_l_0_r-0_0.7-1_0.27-2_0.2-3_0.23",
+          "484_l_0_r-0_1.57-1_0.02-2_0.5-3_0.65",
+          "485_l_0_r-0_1.49-1_0.09-2_0.42-3_0.39",
+          "486_l_0_r-0_0.66-1_0.34-2_0.17-3_0.64",
+          "487_l_0_r-0_1.15-1_0.03-2_0.01-3_0.2",
+          "488_l_0_r-0_0.57-1_0.16-2_0.6-3_1.51",
+          "489_l_0_r-0_0.08-1_0.37-2_0.25-3_0.1",
+          "490_l_0_r-0_0.3-1_0.6-2_0.33-3_0.15",
+          "491_l_0_r-0_0.58-1_0.22-2_0.14-3_0.79",
+          "492_l_0_r-0_2.17-1_0.19-2_0.02-3_0.35",
+          "493_l_0_r-0_1.18-1_0.1-2_0.04-3_0.46",
+          "494_l_0_r-0_0.77-1_0.12-2_0.33-3_0.8",
+          "495_l_0_r-0_2.36-1_0.06-2_0.18-3_0.96",
+          "496_l_0_r-0_0.43-1_0.21-2_0.05-3_0.13",
+          "497_l_0_r-0_0.8-1_0.0-2_0.12-3_0.56",
+          "498_l_0_r-0_0.44-1_0.05-2_0.04-3_2.41",
+          "499_l_0_r-0_1.18-1_0.05-2_0.02-3_0.42",
+          "500_l_0_r-0_0.77-1_0.12-2_0.01-3_0.85",
+          "501_l_0_r-0_0.91-1_0.01-2_0.28-3_1.76",
+          "502_l_0_r-0_0.48-1_0.01-2_0.2-3_1.78",
+          "503_l_0_r-0_0.9-1_0.21-2_0.01-3_0.87",
+          "504_l_0_r-0_1.54-1_0.54-2_0.01-3_1.02",
+          "505_l_0_r-0_2.02-1_0.15-2_0.47-3_0.59",
+          "506_l_0_r-0_1.1-1_0.08-2_0.04-3_0.5",
+          "507_l_0_r-0_0.34-1_0.01-2_0.05-3_1.4",
+          "508_l_0_r-0_0.15-1_0.04-2_0.28-3_2.15",
+          "509_l_0_r-0_1.53-1_0.14-2_0.14-3_0.48",
+          "510_l_0_r-0_0.58-1_0.05-2_0.16-3_0.68",
+          "511_l_0_r-0_1.27-1_0.03-2_0.13-3_0.6",
+          "512_l_0_r-0_0.1-1_0.17-2_0.25-3_0.27",
+          "513_l_0_r-0_0.48-1_0.09-2_0.02-3_1.2",
+          "514_l_0_r-0_0.26-1_0.28-2_0.0-3_0.38",
+          "515_l_0_r-0_0.29-1_0.14-2_0.03-3_0.27",
+          "516_l_0_r-0_0.21-1_0.33-2_0.55-3_0.47",
+          "517_l_0_r-0_0.2-1_0.09-2_0.0-3_1.09",
+          "518_l_0_r-0_0.16-1_0.06-2_0.42-3_0.79",
+          "519_l_0_r-0_0.03-1_0.13-2_0.26-3_0.91",
+          "520_l_0_r-0_1.42-1_0.2-2_0.04-3_0.21",
+          "521_l_0_r-0_0.8-1_0.06-2_0.05-3_0.92",
+          "522_l_0_r-0_1.38-1_0.19-2_0.48-3_0.1",
+          "523_l_0_r-0_1.14-1_0.09-2_0.27-3_1.25",
+          "524_l_0_r-0_0.13-1_0.12-2_0.48-3_0.59",
+          "525_l_0_r-0_1.32-1_0.17-2_0.07-3_0.59",
+          "526_l_0_r-0_0.46-1_0.07-2_0.48-3_0.88",
+          "527_l_0_r-0_0.61-1_0.11-2_0.05-3_0.63",
+          "528_l_0_r-0_1.15-1_0.07-2_0.15-3_0.51",
+          "529_l_0_r-0_1.32-1_0.0-2_0.08-3_1.46",
+          "530_l_0_r-0_0.64-1_0.07-2_0.0-3_1.32",
+          "531_l_0_r-0_0.48-1_0.22-2_0.01-3_0.58",
+          "532_l_0_r-0_0.31-1_0.09-2_0.5-3_1.35",
+          "533_l_0_r-0_0.15-1_0.13-2_0.18-3_0.37",
+          "534_l_0_r-0_0.74-1_0.03-2_0.04-3_0.98",
+          "535_l_0_r-0_0.39-1_0.09-2_0.03-3_0.48",
+          "536_l_0_r-0_2.05-1_0.05-2_0.4-3_0.95",
+          "537_l_0_r-0_0.41-1_0.12-2_0.01-3_0.03",
+          "538_l_0_r-0_2.52-1_0.27-2_0.35-3_0.55",
+          "539_l_0_r-0_1.02-1_0.29-2_0.02-3_0.01",
+          "540_l_0_r-0_0.03-1_0.13-2_0.03-3_0.62",
+          "541_l_0_r-0_0.86-1_0.25-2_0.26-3_0.77",
+          "542_l_0_r-0_0.65-1_0.09-2_0.19-3_1.21",
+          "543_l_0_r-0_0.51-1_0.02-2_0.01-3_1.02",
+          "544_l_0_r-0_0.56-1_0.0-2_0.19-3_0.88",
+          "545_l_0_r-0_0.04-1_0.37-2_0.14-3_2.44",
+          "546_l_0_r-0_1.36-1_0.34-2_0.0-3_0.24",
+          "547_l_0_r-0_0.02-1_0.05-2_0.05-3_0.63",
+          "548_l_0_r-0_1.78-1_0.49-2_0.04-3_0.86",
+          "549_l_0_r-0_0.05-1_0.15-2_0.2-3_0.35",
+          "550_l_0_r-0_0.1-1_0.06-2_0.35-3_0.56",
+          "551_l_0_r-0_0.68-1_0.05-2_0.21-3_0.69",
+          "552_l_0_r-0_2.65-1_0.01-2_0.24-3_0.52",
+          "553_l_0_r-0_1.46-1_0.17-2_0.33-3_0.28",
+          "554_l_0_r-0_0.58-1_0.04-2_0.06-3_0.91",
+          "555_l_0_r-0_0.06-1_0.74-2_0.23-3_0.89",
+          "556_l_0_r-0_2.18-1_0.02-2_0.02-3_0.37",
+          "557_l_0_r-0_0.84-1_0.01-2_0.06-3_0.24",
+          "558_l_0_r-0_1.43-1_0.0-2_0.26-3_1.7",
+          "559_l_0_r-0_0.96-1_0.04-2_0.07-3_0.99",
+          "560_l_0_r-0_0.84-1_0.12-2_0.32-3_1.56",
+          "561_l_0_r-0_0.33-1_0.12-2_0.22-3_0.21",
+          "562_l_0_r-0_0.27-1_0.0-2_0.03-3_0.17",
+          "563_l_0_r-0_1.2-1_0.5-2_0.08-3_0.58",
+          "564_l_0_r-0_0.6-1_0.12-2_0.16-3_0.16",
+          "565_l_0_r-0_1.14-1_0.12-2_0.45-3_0.01",
+          "566_l_0_r-0_1.76-1_0.03-2_0.05-3_0.48",
+          "567_l_0_r-0_1.62-1_0.51-2_0.03-3_0.24",
+          "568_l_0_r-0_1.83-1_0.12-2_0.1-3_0.69",
+          "569_l_0_r-0_1.72-1_0.28-2_0.5-3_0.24",
+          "570_l_0_r-0_1.25-1_0.41-2_0.23-3_0.21",
+          "571_l_0_r-0_1.12-1_0.07-2_0.33-3_1.09",
+          "572_l_0_r-0_1.09-1_0.08-2_0.0-3_0.11",
+          "573_l_0_r-0_1.5-1_0.03-2_0.0-3_0.02",
+          "574_l_0_r-0_1.36-1_0.05-2_0.11-3_0.34",
+          "575_l_0_r-0_0.27-1_0.52-2_0.03-3_1.53",
+          "576_l_0_r-0_1.36-1_0.26-2_0.0-3_0.26",
+          "577_l_0_r-0_1.25-1_0.2-2_0.33-3_0.13",
+          "578_l_0_r-0_0.6-1_0.03-2_0.39-3_0.42",
+          "579_l_0_r-0_0.7-1_0.2-2_0.1-3_0.7",
+          "580_l_0_r-0_1.57-1_0.01-2_0.26-3_0.36",
+          "581_l_0_r-0_1.6-1_0.03-2_0.12-3_0.18",
+          "582_l_0_r-0_0.14-1_0.07-2_0.15-3_0.22",
+          "583_l_0_r-0_0.59-1_0.25-2_0.26-3_0.32",
+          "584_l_0_r-0_2.37-1_0.12-2_0.44-3_0.13",
+          "585_l_0_r-0_1.26-1_0.06-2_0.09-3_0.95",
+          "586_l_0_r-0_0.74-1_0.05-2_0.06-3_0.77",
+          "587_l_0_r-0_0.92-1_0.09-2_0.15-3_0.06",
+          "588_l_0_r-0_0.92-1_0.12-2_0.11-3_1.05",
+          "589_l_0_r-0_0.45-1_0.24-2_0.13-3_0.9",
+          "590_l_0_r-0_0.81-1_0.06-2_0.05-3_1.02",
+          "591_l_0_r-0_0.58-1_0.05-2_0.04-3_1.23",
+          "592_l_0_r-0_0.18-1_0.02-2_0.21-3_0.71",
+          "593_l_0_r-0_0.58-1_0.11-2_0.16-3_0.1",
+          "594_l_0_r-0_1.07-1_0.11-2_0.24-3_1.11",
+          "595_l_0_r-0_0.21-1_0.11-2_0.02-3_0.86",
+          "596_l_0_r-0_0.18-1_0.14-2_0.03-3_0.25",
+          "597_l_0_r-0_0.96-1_0.3-2_0.07-3_0.54",
+          "598_l_0_r-0_0.36-1_0.15-2_0.05-3_0.21",
+          "599_l_0_r-0_0.1-1_0.08-2_0.19-3_4.1",
+          "600_l_0_r-0_0.16-1_0.14-2_0.06-3_0.54",
+          "601_l_0_r-0_0.26-1_0.15-2_0.03-3_2.41",
+          "602_l_0_r-0_0.26-1_0.01-2_0.14-3_0.37",
+          "603_l_0_r-0_0.02-1_0.07-2_0.22-3_0.63",
+          "604_l_0_r-0_0.74-1_0.1-2_0.02-3_2.15",
+          "605_l_0_r-0_0.95-1_0.05-2_0.2-3_0.61",
+          "606_l_0_r-0_0.6-1_0.03-2_0.06-3_0.71",
+          "607_l_0_r-0_0.52-1_0.1-2_0.47-3_1.23",
+          "608_l_0_r-0_0.31-1_0.0-2_0.2-3_0.55",
+          "609_l_0_r-0_1.17-1_0.03-2_0.13-3_0.83",
+          "610_l_0_r-0_0.04-1_0.0-2_0.01-3_1.4",
+          "611_l_0_r-0_0.32-1_0.12-2_0.07-3_0.68",
+          "612_l_0_r-0_0.58-1_0.12-2_0.02-3_2.95",
+          "613_l_0_r-0_0.74-1_0.04-2_0.14-3_1.0",
+          "614_l_0_r-0_1.31-1_0.11-2_0.15-3_0.18",
+          "615_l_0_r-0_0.52-1_0.01-2_0.03-3_0.48",
+          "616_l_0_r-0_1.5-1_0.02-2_0.36-3_1.16",
+          "617_l_0_r-0_0.53-1_0.26-2_0.07-3_0.66",
+          "618_l_0_r-0_1.99-1_0.28-2_0.2-3_1.68",
+          "619_l_0_r-0_1.75-1_0.44-2_0.05-3_1.6",
+          "620_l_0_r-0_0.03-1_0.01-2_0.07-3_0.35",
+          "621_l_0_r-0_0.45-1_0.01-2_0.52-3_0.77",
+          "622_l_0_r-0_1.4-1_0.0-2_0.24-3_0.86",
+          "623_l_0_r-0_0.45-1_0.1-2_0.22-3_0.54",
+          "624_l_0_r-0_1.03-1_0.39-2_0.34-3_0.26",
+          "625_l_0_r-0_1.2-1_0.58-2_0.17-3_1.09",
+          "626_l_0_r-0_0.37-1_0.06-2_0.2-3_0.49",
+          "627_l_0_r-0_1.48-1_0.01-2_0.22-3_1.12",
+          "628_l_0_r-0_0.14-1_0.01-2_0.37-3_1.29",
+          "629_l_0_r-0_0.38-1_0.16-2_0.0-3_1.28",
+          "630_l_0_r-0_0.21-1_0.04-2_0.25-3_0.88",
+          "631_l_0_r-0_0.96-1_0.23-2_0.01-3_0.55",
+          "632_l_0_r-0_1.47-1_0.01-2_0.03-3_2.04",
+          "633_l_0_r-0_0.04-1_0.02-2_0.1-3_2.03",
+          "634_l_0_r-0_1.05-1_0.04-2_0.03-3_1.21",
+          "635_l_0_r-0_0.81-1_0.04-2_0.18-3_0.73",
+          "636_l_0_r-0_0.32-1_0.03-2_0.15-3_0.81",
+          "637_l_0_r-0_0.8-1_0.28-2_0.02-3_0.13",
+          "638_l_0_r-0_0.56-1_0.04-2_0.01-3_0.26",
+          "639_l_0_r-0_1.35-1_0.04-2_0.15-3_0.98",
+          "640_l_0_r-0_0.23-1_0.3-2_0.0-3_0.28",
+          "641_l_0_r-0_0.01-1_0.04-2_0.05-3_0.83",
+          "642_l_0_r-0_0.28-1_0.11-2_0.26-3_0.86",
+          "643_l_0_r-0_2.01-1_0.14-2_0.2-3_1.49",
+          "644_l_0_r-0_0.87-1_0.07-2_0.09-3_0.37",
+          "645_l_0_r-0_0.1-1_0.21-2_0.14-3_0.15",
+          "646_l_0_r-0_0.9-1_0.46-2_0.25-3_0.54",
+          "647_l_0_r-0_0.93-1_0.19-2_0.26-3_0.11",
+          "648_l_0_r-0_0.73-1_0.02-2_0.12-3_0.8",
+          "649_l_0_r-0_0.09-1_0.09-2_0.07-3_0.1",
+          "650_l_0_r-0_0.5-1_0.05-2_0.23-3_1.96",
+          "651_l_0_r-0_0.23-1_0.15-2_0.27-3_1.08",
+          "652_l_0_r-0_0.64-1_0.11-2_0.25-3_0.98",
+          "653_l_0_r-0_0.44-1_0.12-2_0.14-3_1.23",
+          "654_l_0_r-0_0.63-1_0.03-2_0.01-3_1.1",
+          "655_l_0_r-0_0.63-1_0.1-2_0.1-3_0.28",
+          "656_l_0_r-0_0.24-1_0.4-2_0.02-3_0.22",
+          "657_l_0_r-0_0.25-1_0.01-2_0.03-3_0.18",
+          "658_l_0_r-0_1.18-1_0.15-2_0.04-3_0.79",
+          "659_l_0_r-0_1.22-1_0.19-2_0.07-3_0.03",
+          "660_l_0_r-0_0.59-1_0.14-2_0.02-3_0.47",
+          "661_l_0_r-0_1.74-1_0.23-2_0.26-3_0.56",
+          "662_l_0_r-0_1.92-1_0.08-2_0.04-3_0.17",
+          "663_l_0_r-0_0.84-1_0.14-2_0.01-3_0.41",
+          "664_l_0_r-0_2.42-1_0.02-2_0.24-3_1.16",
+          "665_l_0_r-0_0.4-1_0.44-2_0.05-3_0.86"
          ],
          "type": "scatter3d",
          "x": [
-          -6.287533108455673,
-          0.7590143886862787,
-          3.5600834218422195,
-          5.219090734913545,
-          4.68605734701318,
-          3.886548746554276,
-          -4.833601618244986,
-          0.5032846636184862,
-          -6.013528375938845,
-          1.689453394638436,
-          5.29848356340864,
-          -2.918383251581588,
-          3.8033897280304334,
-          1.1779597161422979,
-          5.566589385249143,
-          4.195371796668268,
-          2.2099728254273536,
-          0.5532188876007625,
-          4.427719296736176,
-          4.573191487513355,
-          3.336588154349019,
-          -3.9849435742041384,
-          3.5380002774424977,
-          0.2608510965904727,
-          0.8278722752426566,
-          1.8820889679091912,
-          3.8932790473009975,
-          3.8912759413690985,
-          2.032744360357877,
-          -3.0372344931488193,
-          2.7338900948297193,
-          4.253654983941126,
-          -4.195437194655715,
-          3.892331880171876,
-          -5.508517302568059,
-          5.611628657963857,
-          3.347636091873163,
-          3.954974699352761,
-          4.737333796346493,
-          -4.45002460793382,
-          -3.5471737327215394,
-          -0.2528791831000271,
-          0.4948378606961532,
-          0.6415643157272319,
-          -5.295531130341453,
-          4.782935692526695,
-          1.3328626845159848,
-          1.1999620741088965,
-          3.6337246594171377,
-          5.005077172079694,
-          -3.4145246855770717,
-          4.108276382076445,
-          -4.66797662264905,
-          2.03796771679739,
-          4.301820275304486,
-          -4.4220921095598715,
-          1.085046457457006,
-          -4.405912040625274,
-          1.3557906176560444,
-          3.7512649404434533,
-          4.748724412723987,
-          2.363913567289074,
-          0.5268773266019211,
-          4.06905820032463,
-          -5.266650692102429,
-          5.733243509344106,
-          -4.988647560817236,
-          -2.7662217984431834,
-          3.7159651915250906,
-          4.778756217170878,
-          -3.642202128655474,
-          -2.9679012975066477,
-          4.073664258048266,
-          4.093096440593882,
-          -2.811523863327161,
-          3.877614462000734,
-          3.7051966063291606,
-          6.847862960949151,
-          3.7349970071565655,
-          4.78734666823247,
-          6.958957310204621,
-          -0.5388580097857634,
-          4.940201930769127,
-          3.7111800600363267,
-          -5.47428136822842,
-          -5.873654774750964,
-          1.5852135136184073,
-          1.2617973425858002,
-          5.428714803174206,
-          0.8341862717878569,
-          5.034818936861452,
-          4.6567562179790505,
-          -4.712174282371218,
-          3.4386445414113522,
-          -1.9933874391600763,
-          4.883872221801101,
-          -0.21218615386233464,
-          5.304696335114164,
-          1.2473995845443868,
-          -3.1606484515224493,
-          3.5903469876645944,
-          -4.688065129811712,
-          5.424786539387098,
-          -5.146129748639737,
-          5.027831552212293,
-          0.6470570146050363,
-          4.228214452160645,
-          4.203827845244524,
-          3.244938860765128,
-          -5.130625132850521,
-          -6.943278462589857,
-          4.971989775842619,
-          5.25199771911758,
-          0.9602375256557597,
-          3.5031155730040227,
-          0.017162809398092338,
-          -0.019966932156006312,
-          -5.173822499541389,
-          -2.279009234532853,
-          -4.384063872928057,
-          -3.0865589855626694,
-          3.771463580518056,
-          -0.042199147263875525,
-          4.4589866651416425,
-          -0.1566182459221651,
-          -0.7373362677239554,
-          5.041500192979296,
-          1.8928662521069342,
-          3.0889836282458427,
-          6.130177743658254,
-          5.57968368220756,
-          1.4801718592902064,
-          -5.51026556309742,
-          0.10266246305422189,
-          -3.331449972365856,
-          -4.905291303509678,
-          -5.4028221675841674,
-          -0.8041449730571926,
-          4.689093188831317,
-          1.490599860016034,
-          0.2953377269259811,
-          2.8699679412027463,
-          4.2194701621921,
-          3.4760998618916075,
-          1.7717152823753335,
-          -5.730690983752516,
-          1.801794520142338,
-          -3.2868446038912955,
-          -4.540033359806164,
-          3.6620153667452318,
-          -3.6022273790712056,
-          4.671889912730647,
-          3.4689331263244947,
-          3.5163798700469835,
-          5.696646476838397,
-          -0.15287406602439868,
-          0.7849100224788979,
-          -5.079223434179806,
-          4.9434293439581385,
-          5.313498801720421,
-          1.221286527342972,
-          -4.849424918442863,
-          2.1275170062501587,
-          3.4662552658236585,
-          0.5281164776535174,
-          -6.087156854214448,
-          0.4859988684701669,
-          2.3533149785216314,
-          3.830320278595996,
-          -3.0625060989608603,
-          1.3093028363539467,
-          -5.48478925730741,
-          -0.16513500051983898,
-          0.5737241210169406,
-          0.3599870145417014,
-          -5.153579637475427,
-          -3.8450292505245667,
-          4.569350009714035,
-          -4.124254891369812,
-          -3.3881440612793905,
-          1.1877746923886927,
-          2.7780588839004396,
-          4.200264812843217,
-          -4.182130147177086,
-          5.337880835816768,
-          -5.004622668165068,
-          -4.281549542506255,
-          0.7691546807285448,
-          1.4443054919521414,
-          -0.29453424147521234,
-          1.0798257465688323,
-          4.54553581420736,
-          3.5780221770694456,
-          0.24555779107932696,
-          1.5075836269401592,
-          4.7126199975251595,
-          3.7599344509184007,
-          0.9952562306160273,
-          6.31966412457982,
-          0.6393187674937237,
-          1.395156266448522,
-          3.1419899811497767,
-          3.6625426332370936,
-          5.8155353426142575,
-          6.218384179125749,
-          0.7480273904151926,
-          0.013023878535708522,
-          5.637181729436101,
-          0.9382814208399836,
-          0.5260649272556063,
-          0.7751419049641103,
-          5.596357990666948,
-          1.1592828864247455,
-          -0.49940032169647486,
-          -5.675026461882603,
-          3.7373442386176445,
-          4.882387440398084,
-          -4.846030344773909,
-          3.5387991775417436,
-          2.8359325433135556,
-          2.6332249314981047,
-          1.3263133650015013,
-          4.475743821346467,
-          6.28461625614568,
-          1.0762452169347498,
-          -3.462020399281938,
-          1.398545207562101,
-          1.3531536096798793,
-          5.239163517425666,
-          5.838503362565272,
-          1.1681194112935374,
-          -3.21698663532759,
-          0.11748314977222596,
-          -3.482147447607013,
-          -3.308961856816811,
-          -0.3047147132118535,
-          0.8116781535872641,
-          1.4455639144163261,
-          3.660482531217717,
-          -3.0806146875880565,
-          4.696085536889807,
-          4.559197149335537,
-          3.6461505010041706,
-          4.158100284109869,
-          6.5536682825278705,
-          3.5160589017327024,
-          4.397991810229211,
-          -2.8093111709259575,
-          4.927052941873411,
-          -0.584520343343981,
-          -5.684797350732918,
-          3.51180365834718,
-          3.036724761927981,
-          -3.8844078130851782,
-          3.2338709605791998,
-          5.130096660213111,
-          6.459379056317431,
-          5.12468228785874,
-          2.3738310452207845,
-          5.594142835820159,
-          0.40239981701233746,
-          1.7775209625723487,
-          4.569356275721926,
-          0.17162084149337442,
-          3.5833198781783087,
-          0.9909832075943206,
-          0.4901387976816134,
-          4.2611185244336465,
-          0.23703317158031562,
-          3.072029699791113,
-          2.996376079268919,
-          -5.744017071391875,
-          4.021392721476743,
-          3.5757518236253865,
-          5.691610004626809,
-          4.137081333128361,
-          0.6240739575416948,
-          0.03725115815626123,
-          5.293198799089259,
-          4.664705327292711,
-          -4.9459595750367225,
-          0.08432761683103274,
-          0.34958172896337686,
-          4.3585663082058845,
-          -4.770863212995139,
-          4.592663129910243,
-          0.1056998773802934,
-          3.8524063790760623,
-          5.80411954350414,
-          3.274982043317923,
-          2.5418752224864747,
-          4.456832169379267,
-          4.371859687154138,
-          5.547516048752861,
-          5.163230467849662,
-          -0.32618600246613183,
-          4.619876706885422,
-          3.7920184812242357,
-          1.2928880181005757,
-          2.9352401955303797,
-          5.391356530284201,
-          4.34636061701862,
-          3.629384974466685,
-          3.146998698624082,
-          3.665880424311172,
-          1.4656738066567845,
-          -4.8209410353991275,
-          4.172927326101929,
-          3.8214288946070694,
-          -1.1063107665127212,
-          1.2030617228513378,
-          -6.607309640261299,
-          -3.2529350509190276,
-          4.063520606296333,
-          4.401796342395652,
-          5.155732899588572,
-          1.3599419857540576,
-          0.9695508133155623,
-          5.464678079774057,
-          4.356752545484161,
-          4.7981562299058975,
-          0.1262852445810303,
-          1.3718400884230981,
-          -4.626244482846664,
-          1.066043727773452,
-          2.6634058523669237,
-          4.558516419749945,
-          0.2928273606904035,
-          3.6317273956625624,
-          -6.092381648438499,
-          0.8832510019160257,
-          3.6374926167872776,
-          -0.29753076693905944
+          0.668770356043102,
+          -3.469822028257146,
+          -2.246701744911745,
+          -1.537501345600605,
+          -0.6711264940828798,
+          0.1793897989797825,
+          1.1210070143481883,
+          -0.0131609656955011,
+          -2.3298518100461565,
+          -0.4689472033859085,
+          -0.6966669415047012,
+          3.017712129659384,
+          -4.383911092928956,
+          -1.190663174987415,
+          -0.8142070747981415,
+          0.12792547835272916,
+          -2.559464525860789,
+          0.06757104919079714,
+          3.1440376617065153,
+          -4.317903915540729,
+          1.4338268156943565,
+          0.21660890190636298,
+          3.0277180054511277,
+          0.5339349319714664,
+          -1.20336331816764,
+          0.6181478406515162,
+          -1.9994745496438207,
+          0.952310296895185,
+          1.4609186716643672,
+          -1.7127677579747707,
+          -1.6407336739232368,
+          3.0603970041006243,
+          -2.8298375094100585,
+          -1.7038867781931357,
+          -1.655924448006798,
+          -2.317805992499419,
+          -3.4430894932226166,
+          -1.3239882329140742,
+          1.5035808495115794,
+          -1.1064298815883618,
+          0.07358379703161233,
+          -0.303544665338773,
+          2.2049274501387552,
+          -0.025711418298145685,
+          1.4173370915328412,
+          -1.1598530868477737,
+          -0.2480161973954187,
+          0.46048650404415387,
+          -0.3818845633092288,
+          -0.22271557828375552,
+          0.36934426536587167,
+          -0.8536548778911829,
+          -2.8565212965071427,
+          0.7076092376549338,
+          2.1089162248540334,
+          -0.6030158930095347,
+          0.1187175507476848,
+          -1.9534525991778409,
+          -1.5253266925978228,
+          0.4749482028027227,
+          -1.327655936444644,
+          1.371422428941609,
+          -0.6069645242773469,
+          -2.2091847308549943,
+          -0.2590039988799393,
+          -0.9551821753346276,
+          -0.38527033777880015,
+          0.27301802567525174,
+          0.6460371899678222,
+          -0.6587860476459069,
+          0.22885320167300802,
+          -0.017584032705438055,
+          2.6824931395561107,
+          1.8999854070902193,
+          0.36743659110552246,
+          1.5287507281495172,
+          -0.5276951855646121,
+          0.07442321482770951,
+          1.1764415870638765,
+          3.2802132165059357,
+          0.4483902807149578,
+          -0.23228053131413817,
+          -6.051864148206161,
+          -0.027812601640935866,
+          -0.5819679854538261,
+          -2.902107757348837,
+          0.4887546210246347,
+          0.6008955970943555,
+          -1.0846371143166513,
+          -0.09771610840380902,
+          -1.5070890844860136,
+          -3.285610969727997,
+          -0.9091038989216823,
+          2.3264131651176374,
+          2.2506254152784897,
+          -0.005354219401647261,
+          0.3245436298137589,
+          -2.2142471364035754,
+          0.7754740467727018,
+          -1.2279315917137943,
+          1.5087554427982035,
+          -0.7364372098124675,
+          0.5130611222627663,
+          0.9117358061439468,
+          0.7485654806973271,
+          -0.5492204462657579,
+          2.308323759779673,
+          -0.11482413892375375,
+          0.07283696460934357,
+          0.7753723947393719,
+          0.18704053045316765,
+          1.7206209273062345,
+          1.701300648147799,
+          0.007209165457250039,
+          -0.2454119963889592,
+          0.16094147297186265,
+          -0.26357178869950715,
+          1.2244514064480145,
+          -1.8526703984229786,
+          0.8744241037600438,
+          -2.409183912408066,
+          -1.0432420874158372,
+          -0.3587759352359034,
+          2.8792037554814334,
+          0.4763711070483458,
+          -0.8949120835183687,
+          0.48819871891644023,
+          2.732386505629029,
+          0.3674714122582445,
+          -0.6148249852267961,
+          1.528282543728575,
+          -0.059167986125432025,
+          1.5440555847136874,
+          1.9797649307105885,
+          0.6663317843325269,
+          1.3671084496606023,
+          0.7393316580313909,
+          -0.16898931894182267,
+          -1.1235471525874434,
+          0.42499251617756956,
+          -0.20447466710884313,
+          1.052708813123586,
+          0.06716821618233826,
+          -0.2952587622202463,
+          2.145238557913054,
+          -1.4489525541278625,
+          -0.9481912993620802,
+          -1.2511075032130645,
+          0.5774483252630918,
+          -0.5191649976629125,
+          -2.5527100353647953,
+          -0.18111349050174338,
+          -0.026834533127188247,
+          -1.9716311675470661,
+          -3.76816955867177,
+          -0.563277952131166,
+          -1.206702644698161,
+          -0.012818512124679647,
+          0.19655191896229648,
+          -0.722350845904748,
+          2.689127258738596,
+          0.49720923641916837,
+          1.0022678351402594,
+          -1.9848861450341522,
+          0.4742185072112024,
+          2.0488206057494076,
+          -0.7706441399511622,
+          -0.7074169244977289,
+          2.457114769182259,
+          -1.4939493629008727,
+          1.5975739683781607,
+          0.07484244753883415,
+          2.023865960218915,
+          0.6530969167352979,
+          -5.847556831629487,
+          0.5831347730390591,
+          1.1765090195627355,
+          0.5017928334259855,
+          1.986847016908471,
+          -0.20324886713496848,
+          -1.6347714785247651,
+          -3.2990836607101244,
+          -1.3913222744345826,
+          0.6723389640711624,
+          0.25438914324697987,
+          -4.561567351361305,
+          -0.9036841033205343,
+          -0.7007272865782176,
+          -0.1720205618394044,
+          1.9282582316963965,
+          1.2265421126802802,
+          -0.3294130648736125,
+          -1.4795308934881926,
+          0.4332010066361839,
+          0.3815364872410332,
+          0.0038214224758300946,
+          -0.9732715477546602,
+          2.4006731729997695,
+          1.2258598300505545,
+          0.33781921666305126,
+          -1.9126288496419521,
+          1.7055999275245985,
+          -2.319573685379586,
+          0.034128281541003766,
+          5.292706852344926,
+          -3.9495898655007116,
+          -1.5120389588120018,
+          -1.0442335754901382,
+          0.5723431159494556,
+          1.7255712814956594,
+          1.4833295397255384,
+          0.6067877755803858,
+          -1.4253772422194368,
+          0.2941939351438385,
+          -1.6249933409374115,
+          1.1694151025937969,
+          1.1836883778587164,
+          0.6145756376076433,
+          3.5495543641096936,
+          -0.660632951272162,
+          0.3219405085521798,
+          -0.7749740233627899,
+          1.2535005180596506,
+          0.041268145479591595,
+          1.6358715219493494,
+          -1.1624579633480856,
+          -0.7456710390437288,
+          -0.3372565372498494,
+          -1.3811783232791537,
+          -1.1519854694658282,
+          1.2777810821680433,
+          -0.4352489836830749,
+          -1.590270420282508,
+          1.2615610372434076,
+          -0.3429629901423955,
+          -0.07265373658870761,
+          -0.0966555591292602,
+          -1.8706241070344187,
+          -0.5136092051412952,
+          0.35705775561626546,
+          -0.3276365465755825,
+          0.23868534557910873,
+          -2.2432082390723775,
+          -0.4660373381770668,
+          0.132470270408748,
+          -0.47717600279614153,
+          1.3855327841669727,
+          -0.26509062536513683,
+          -0.6856579551866229,
+          4.581045840345982,
+          1.515663204463681,
+          -0.37504022970166245,
+          -1.8836078908424827,
+          2.0668111377643394,
+          0.19777105535517808,
+          0.18250994770405984,
+          2.01264871918164,
+          1.3210829467927832,
+          -0.1053638901419966,
+          -0.05832636956491167,
+          1.9910607240105964,
+          0.7346117860028811,
+          -0.8423169546072163,
+          0.040009973241263534,
+          0.028108280980230067,
+          0.7710268773587011,
+          1.763951795612765,
+          -0.032478134988489636,
+          -1.5407785060601529,
+          1.5135575566745783,
+          -0.2719681661434069,
+          0.0844680982528393,
+          0.7760139161923609,
+          -0.9550487361231552,
+          0.19514870751360566,
+          0.11022207632007115,
+          -1.6946354614790167,
+          0.860252549894766,
+          -0.16765750041750685,
+          0.051998599134896704,
+          2.187140243837739,
+          1.1079370246025981,
+          -1.9511321601655547,
+          0.4508232890054296,
+          2.6376834796018107,
+          2.3717205045227527,
+          -0.33043902842573664,
+          0.24326569107564225,
+          0.4226844728616023,
+          -2.4354469604640787,
+          0.1894088533716166,
+          -0.3781373375232612,
+          0.6926098586460763,
+          0.6647280150966891,
+          0.5420679908877344,
+          -0.6446057216487638,
+          2.1786760659395683,
+          1.1242561740821373,
+          1.9235965668721908,
+          0.11887256094279225,
+          -0.15113114402678515,
+          0.31929141611669853,
+          -0.9085130877750314,
+          -0.4051371050876784,
+          2.207918276064519,
+          -1.2761043486786372,
+          -1.9582141551508254,
+          0.45043432675493167,
+          2.1201745231565847,
+          -0.44517427474922555,
+          1.4473153074076734,
+          0.066092605181323,
+          -2.11708681360958,
+          1.2257941246473791,
+          -2.406219059808152,
+          1.136433396355308,
+          1.5932980174170301,
+          -1.949127772203427,
+          -0.5522735842974115,
+          -0.04939462134108417,
+          -0.7343107683306012,
+          -1.4972265383085501,
+          -1.3829463455471507,
+          0.0953179434760301,
+          -0.19126583037282824,
+          0.7398139309963387,
+          -1.8779245685513914,
+          0.7534386295133245,
+          -0.9924804030345242,
+          0.23612508749823685,
+          -2.98955265084727,
+          0.5515226614207415,
+          -2.9318232546554324,
+          1.6322096387135574,
+          -0.47383740194067064,
+          -1.1527095105448464,
+          -1.5861554412869856,
+          0.36550733019689013,
+          -0.4303356144766356,
+          -0.0660198703944142,
+          0.6735745571334749,
+          2.4383526841043484,
+          -1.5384915772954635,
+          0.029816895648982822,
+          0.8654081927812349,
+          0.052579051970352716,
+          3.8412346276699894,
+          0.1780826240895102,
+          2.345263313934019,
+          -0.837673073648993,
+          0.669102658222572,
+          0.5739628178046104,
+          4.055623173962509,
+          0.4079579207723148,
+          -0.26747930954304455,
+          -0.07176773940304794,
+          2.0244690494354844,
+          -0.771417148767456,
+          -0.6392706757501233,
+          -0.00036152259693557646,
+          -1.0652261957097,
+          1.840383945284807,
+          -2.8727428941911413,
+          -0.43042450109399544,
+          -0.993259129143444,
+          1.0952038851560888,
+          1.2490074156111284,
+          0.20883458095760266,
+          0.18069355227990722,
+          1.8671395554781534,
+          0.3838162878655818,
+          1.0608674190710141,
+          -2.3221899812055202,
+          -0.5239804934134045,
+          2.820127230512491,
+          -1.1687271923986864,
+          -2.718259686724318,
+          2.4447010510634106,
+          1.7384799469442775,
+          0.5353560212220236,
+          -0.5440628357876485,
+          0.959000402870526,
+          1.2619753142853705,
+          1.08472902283296,
+          0.4864239648069803,
+          -1.3927260304111424,
+          -2.9430762392233842,
+          0.2665473958615453,
+          -1.6911793128717612,
+          -1.0512137881772434,
+          2.0980339819165827,
+          0.09701276431081768,
+          -3.5248573805948995,
+          2.6437773021944837,
+          2.7735870036260453,
+          -0.011658180504621399,
+          0.6749458900437048,
+          1.5931037897911333,
+          -0.8091237572455696,
+          0.4361111632967302,
+          0.8449023316662035,
+          -0.6261299974970007,
+          -0.38547873801893034,
+          -0.004949823683376723,
+          -0.5257575633173909,
+          -0.232283518901454,
+          0.263635299607456,
+          0.061680007056477845,
+          0.0029310911932832174,
+          -0.6378988943513362,
+          0.12002573211489621,
+          -0.2815232287629284,
+          -0.060653248621581494,
+          0.7088662563778878,
+          -0.3246720550539971,
+          -0.3191828802977616,
+          0.10409519501705958,
+          0.27205251737299824,
+          0.3574897644468022,
+          -0.3557610567943685,
+          0.38488265205978583,
+          -0.07257335504733803,
+          -1.0081314663983751,
+          0.21681198654537734,
+          0.11177167845299643,
+          0.0224700756721707,
+          0.5552828890705758,
+          -0.19731558921033454,
+          1.1331240525082795,
+          0.21741235723520935,
+          -0.1687831477561816,
+          -0.16170180335948003,
+          -0.1305082616755167,
+          -0.013616452572444726,
+          0.20968682472275765,
+          -0.012001830505563789,
+          -0.1862196367909552,
+          0.04518527490470685,
+          -0.15726120727351892,
+          0.29066234299518634,
+          0.4801718060403002,
+          0.3875005631031959,
+          0.2958872724687143,
+          -0.009037402324883918,
+          0.33217268958688506,
+          0.043233616238392704,
+          -0.3916317215792812,
+          -0.463944199548715,
+          -0.15794662741392804,
+          0.536649416991129,
+          0.1114215745530566,
+          0.10727068911117323,
+          -0.6259880344485241,
+          0.2354211766846465,
+          -0.43051410330944456,
+          -0.6960566641062484,
+          0.467045791153779,
+          0.479331995393405,
+          -0.9036370208220877,
+          0.07347103801748595,
+          0.45446976035854686,
+          -0.030253703060355082,
+          0.5616511779613681,
+          -0.021841396770950924,
+          -0.5857576013354191,
+          -0.11887114239458899,
+          -0.13020191448752166,
+          0.08099137186157473,
+          0.44959163471878644,
+          0.16283200022250424,
+          -0.14957979336078586,
+          -0.9126638050838044,
+          0.6458060540346248,
+          0.5269568444972531,
+          -0.06342392726534408,
+          0.4442618442826571,
+          0.03971791857946638,
+          -0.31927790183524013,
+          0.8341205803887809,
+          -0.6331314345122301,
+          -0.3629475776654386,
+          0.6761177746463213,
+          0.0255286768562484,
+          0.4048723379413291,
+          -0.5573485665121278,
+          -0.977285783629206,
+          -0.2701227105188442,
+          0.008570391494554293,
+          -0.8408630943225882,
+          0.2508912501979905,
+          0.629126023944858,
+          0.9740899469910189,
+          0.03697763539233411,
+          -0.14053990071865577,
+          0.3298687473869965,
+          0.3508322280340667,
+          0.0452197210552638,
+          -0.11631583583571725,
+          0.3027348248303201,
+          0.051892450980202315,
+          0.18072226982125544,
+          -0.750535458270296,
+          -0.6152433428330922,
+          -0.22075509431447035,
+          -0.06367354474889515,
+          -0.4744109673085022,
+          -0.2589419401508473,
+          0.045539931834401595,
+          -0.7335694369181174,
+          0.22330858758459868,
+          -0.33801275954783233,
+          0.12655070511445343,
+          0.3159177134868134,
+          -0.018717283347444214,
+          -0.00044611594990617224,
+          0.09480709938552045,
+          -0.547056528851393,
+          0.7289598632910839,
+          -0.6531738118367684,
+          -0.37219635034804216,
+          -0.03709022102029983,
+          -0.2668289563842,
+          0.8063839284253042,
+          -0.2691183680338635,
+          -0.8489143285832417,
+          0.06872058658451871,
+          -0.5716590665083631,
+          -0.04579735919469407,
+          0.14784473814203747,
+          0.12428421656527758,
+          0.6130419815848468,
+          0.04379928434979232,
+          0.6356659202232243,
+          0.4749700229631417,
+          0.1759841727431218,
+          0.25949485609029527,
+          0.4032456153175193,
+          0.010566763330711569,
+          0.35035940453631664,
+          0.034731408417875,
+          1.047628431433663,
+          -0.2564453470377318,
+          0.18669721242090973,
+          -0.23611347753590772,
+          -1.176321331684067,
+          -0.2421628765685164,
+          -0.0014382699016064282,
+          -0.3780709098649502,
+          -0.10579259167167195,
+          -0.2813088644397651,
+          0.3502224697423108,
+          -0.29214818674350684,
+          -0.23978829556623796,
+          0.33130380564430917,
+          0.2460796026914417,
+          -0.6614005666834566,
+          0.01889211512328473,
+          -0.06197543222445396,
+          -0.26281324922903987,
+          -0.5602901262267252,
+          -0.8591159296808536,
+          1.0995801448221774,
+          -0.21873238208313997,
+          -0.5062243927562089,
+          -0.3998343245826478,
+          0.8836288528131022,
+          0.16487889929827754,
+          0.07538365865127611,
+          0.10399623951649269,
+          -0.5015845002689997,
+          0.29987756527186044,
+          0.3802646083619923,
+          0.00442531901838261,
+          0.006148962100817668,
+          -0.11015105961314167,
+          -0.02643979610077675,
+          -0.001670001094336737,
+          -0.3314873422265252,
+          0.4204061270029284,
+          -0.10159696196833387,
+          0.26450392306449466,
+          -0.4168727355282699,
+          0.23657973247938865,
+          -0.8570021261682776,
+          -1.0212912436095831,
+          0.29757924030307753,
+          0.10252646603365347,
+          0.40229378767843127,
+          0.7183582446473392,
+          -0.5583371940785866,
+          0.1470839347513991,
+          0.17034523903919782,
+          -0.5128863352685251,
+          -0.15550160241918207,
+          0.23690497733896568,
+          0.017144341674361654,
+          0.17521726411026686,
+          -0.06588609251779924,
+          0.8629986143937526,
+          0.4737668751802556,
+          0.14527122940068024,
+          0.4669432501834478,
+          -0.32776508388692543,
+          -0.7640442384260187,
+          0.023427988544072582,
+          -0.20330317584860294,
+          -0.05930435652162906,
+          0.4660858589552491,
+          -1.2486694271137464,
+          0.12556130188852554,
+          -0.244412524103847,
+          -0.1629266367768867,
+          -0.021420643719140264,
+          -0.2157869283704989,
+          -0.2311465350250823,
+          -0.1370121178152385,
+          -0.4334256305792421,
+          0.6434512618619808,
+          -0.4442523526803608,
+          0.48002584024537726,
+          0.3086825707648349,
+          0.5191222334639555,
+          0.5935739328145135,
+          -0.26885331866808354,
+          0.5623365194654931,
+          0.17416305647736788,
+          0.9071587730735715,
+          0.22025221865246838,
+          0.3665382270317063,
+          0.00454716634128993,
+          0.9559246349675279,
+          0.010544053176962293,
+          -0.8625977482667951,
+          0.1917251713794749,
+          -0.16022508890409265,
+          -0.6720599433226527,
+          0.5174061404084463,
+          0.01984305220780836,
+          0.26952042763197015,
+          0.18284586519505208,
+          -0.0001329504073774559,
+          0.1056706753694402,
+          0.9140358502646432,
+          0.5062242964575522,
+          -0.0857530665329636,
+          -0.1363271407066159,
+          -0.25178144152047915,
+          0.7215866436896994,
+          -0.12389264898570894,
+          0.9567194755158093,
+          -0.5100702461090496,
+          0.5668897254923263,
+          0.24707281769904357,
+          -0.21037398316546574,
+          -0.05929378938270972,
+          -0.16957491594227395,
+          0.11344782776753243,
+          0.09694151625996396,
+          -0.26813996756239705,
+          -0.24470415006087884,
+          0.33851452404347976,
+          -0.28369803315356484,
+          0.15943229342477266,
+          0.37459310253557876,
+          0.24245860087198592,
+          0.06711554531566113
          ],
          "y": [
-          5.801747140033004,
-          0.45795227634686986,
-          3.061754457810904,
-          4.00921410391146,
-          4.235193962235402,
-          3.570031624786107,
-          -1.779298752158524,
-          0.9619325543549063,
-          5.234842639632205,
-          -1.2130303595256025,
-          4.50416585303014,
-          -1.404097274694474,
-          3.500926136088445,
-          -0.39161046640603603,
-          -3.906034968371086,
-          -4.498767759506241,
-          2.0524434967122605,
-          -0.12453768630590267,
-          3.92577694824906,
-          -4.042895354646137,
-          2.998557468564068,
-          -3.6069729271335564,
-          4.915090240876333,
-          0.6389881633705315,
-          0.1190279615676213,
-          -0.9708484581129662,
-          -4.02145495175701,
-          -4.047604294646138,
-          -1.9262283397179303,
-          -0.9922986543470307,
-          2.499496175442844,
-          -3.2231552914716906,
-          -1.9583194317674542,
-          3.7972996974566686,
-          4.9524837569814775,
-          -5.904934811259669,
-          2.8523324674912924,
-          -4.22125770116381,
-          4.161550420266712,
-          -4.296167214343425,
-          -2.527278624934648,
-          -1.634579221905565,
-          -1.8225454244690016,
-          -1.4285393537357027,
-          -4.213572929666807,
-          4.316659759835196,
-          -2.389468375781691,
-          0.3882358754932983,
-          -5.777225697658036,
-          4.6793945740633625,
-          -4.321182260827532,
-          3.633442998824102,
-          4.239294368345699,
-          1.8884862004207676,
-          -3.5511815756388443,
-          -3.0969629579185254,
-          -1.98935711457586,
-          -1.1443172875905923,
-          -0.5489835520611578,
-          3.414615172248957,
-          5.805623177256495,
-          2.148404364098943,
-          -0.6203364309246974,
-          3.4497741219250453,
-          -2.3283020603555293,
-          5.025366180532387,
-          4.84796195887648,
-          -1.8698114093722469,
-          3.4747589745530587,
-          4.27216012687512,
-          -3.9973679090374823,
-          -4.54431879090302,
-          3.594410902206345,
-          3.603317875384341,
-          -4.580462442423244,
-          3.2904414179882964,
-          5.469434375864522,
-          6.150785625921376,
-          3.4226483742872853,
-          -3.7016732813844824,
-          -5.3563243915006415,
-          -1.4111418635291106,
-          3.4953296837071104,
-          5.471194164399399,
-          5.069317220937787,
-          4.889082993307451,
-          1.1973382048451433,
-          -2.414192218446172,
-          -4.512781066135887,
-          -1.1707010445019672,
-          -4.940783152572948,
-          -4.302427707224176,
-          4.535424207812136,
-          3.2719228222298655,
-          -5.762017815491577,
-          4.0523099603790005,
-          0.44014702823741947,
-          4.235767245491846,
-          0.2595489898670329,
-          -1.0901170282989203,
-          -5.551824087258499,
-          4.318757128164643,
-          4.912606279537275,
-          4.839693409676668,
-          4.4520124438366775,
-          0.8633752338045372,
-          4.908662257024638,
-          3.721806295167666,
-          2.9185768966445855,
-          4.475247587833877,
-          5.93405135419967,
-          -5.569683909945121,
-          4.3328150837622905,
-          0.29643232698977007,
-          3.0699582190517836,
-          1.3840527651888417,
-          -2.375655235087143,
-          4.60551917433343,
-          -4.982991297030608,
-          -0.039739253594902824,
-          -5.147179750875092,
-          3.368486776070467,
-          -1.0817720794468644,
-          3.1855243519173557,
-          -0.29989466702802803,
-          0.15584757183736442,
-          5.160986394709697,
-          -1.7734958719275173,
-          -4.195303073384161,
-          3.7547731900018517,
-          4.8691152747924225,
-          -2.8811066443899307,
-          5.063795799962139,
-          -0.6580065667471587,
-          -3.2641265574873475,
-          4.509972423260424,
-          4.387021287144338,
-          3.017391751475308,
-          4.25163133735247,
-          -0.40265034808162636,
-          0.526346948276735,
-          2.618642738899071,
-          3.793113370055943,
-          -4.518635518397952,
-          -3.62896057348316,
-          4.683291317403371,
-          -2.604048931927121,
-          -3.586833032357287,
-          -1.268625590792479,
-          3.2039126941731566,
-          -4.244309149018074,
-          -3.98001476128667,
-          3.194583139471157,
-          3.149702727858374,
-          -3.954499959705387,
-          -0.2527484753925514,
-          0.6059120199137488,
-          4.425911486358698,
-          -3.1277881362991637,
-          -5.113889109206947,
-          -2.7024041951682416,
-          -3.045125560613346,
-          -1.8825396667944272,
-          3.0627845594505785,
-          -1.2017450882350091,
-          5.490827959874207,
-          -2.0176287587435295,
-          2.1573154297759243,
-          3.495609693156958,
-          -4.245181403942606,
-          0.6291955827809718,
-          4.7360050315499205,
-          -4.572852080469199,
-          2.100043858879543,
-          -1.0679329374626718,
-          4.838108798965661,
-          3.42560997605195,
-          4.055523539341266,
-          -2.0270413228052924,
-          -2.0590739630614543,
-          -0.2937262375000439,
-          2.54997293573051,
-          3.8747801231090784,
-          -2.3527163179873454,
-          4.661007736413554,
-          4.632688734452695,
-          -4.49477627071113,
-          -1.167670315454198,
-          -0.7422478501213741,
-          -2.3293890035694162,
-          -2.303958568845243,
-          -3.250198983052448,
-          3.185638548385344,
-          -2.1432238125295138,
-          -0.02926858781267294,
-          5.619724813398463,
-          3.542390529411974,
-          -2.5259521623436227,
-          5.427792849367653,
-          -2.1412466159645156,
-          -0.5231205978287302,
-          2.7958632468490907,
-          -3.604092685692363,
-          -4.594853120893453,
-          4.7063020076107485,
-          0.12237298975237298,
-          -4.538449712829697,
-          5.172676298634162,
-          -2.0569416875086937,
-          -0.30733012921712544,
-          -2.102845818511461,
-          -4.00523411742291,
-          -1.7206591755636849,
-          -0.6083580219400772,
-          5.171447870066141,
-          3.567688128582106,
-          4.5377748477631705,
-          4.3421914296379605,
-          3.1597412445600854,
-          2.547261624662859,
-          2.453909134675931,
-          -3.054295917521094,
-          4.043960169146708,
-          -4.004701793121714,
-          -1.7663516473161933,
-          -2.2196030462703433,
-          -0.5358511865058723,
-          -0.3168582882322662,
-          -3.2411653485167946,
-          4.319704125427705,
-          -2.326803430646054,
-          -3.2646134221082534,
-          -0.632447826272907,
-          -3.7835505477568274,
-          -3.690870811359351,
-          -0.864061523125303,
-          1.1172434979689285,
-          -0.5102939775925122,
-          -4.196090817520682,
-          -3.465544788728722,
-          4.353535639843438,
-          4.154314170726775,
-          3.2799463353503184,
-          3.5617557935443864,
-          -4.646169852952886,
-          3.1462524537827883,
-          3.972206987510135,
-          -1.7857798455360687,
-          -5.1231949029263495,
-          -0.2708281621170853,
-          4.839095611167609,
-          3.202746003785922,
-          2.779141008317082,
-          -3.2425105977538253,
-          2.9825939967230912,
-          5.000873526631378,
-          4.1907129253557,
-          -5.358450122790703,
-          2.1299975635900976,
-          -6.035688249238935,
-          -1.4276037933952979,
-          0.15939257554495068,
-          4.024631844116443,
-          -1.3565426096089184,
-          3.2979904373105096,
-          -2.9558734309991994,
-          1.514338545328215,
-          4.669534770803171,
-          -0.5944389254212749,
-          2.696584089650506,
-          -3.976107706493021,
-          5.294644237727777,
-          3.7240461944065366,
-          3.2264985296919275,
-          4.988210859161354,
-          -4.401837387826547,
-          -1.4432482764493675,
-          -1.7571860823768355,
-          4.74573286576586,
-          5.138021656287192,
-          4.820826589882199,
-          -2.787970571156822,
-          1.0576242892782242,
-          4.117551694599357,
-          4.2905637166794355,
-          4.213508006755384,
-          -0.08441988413412516,
-          4.5698920314512295,
-          4.882169974373052,
-          2.890905632041555,
-          2.2632752957641147,
-          4.008955613836108,
-          4.783999996349288,
-          4.570933846891372,
-          4.481632024967473,
-          1.7503174906844658,
-          4.127755389424759,
-          3.3861556502856303,
-          1.0135820868828769,
-          2.6327582422483538,
-          -4.866209332202584,
-          3.893168188011966,
-          3.1501528035005055,
-          2.8132434639296853,
-          3.165083592948565,
-          -1.2407384360797558,
-          4.433408472087306,
-          3.746342343014212,
-          3.25683859844818,
-          0.9362766646622293,
-          -0.5204913603869993,
-          5.621372755875909,
-          -5.793250481329438,
-          3.5663966248490526,
-          4.2336796701322195,
-          4.676186538289693,
-          0.3754128079311646,
-          -0.25015507853751584,
-          -4.205800091523903,
-          3.9685222963793887,
-          4.165683328009116,
-          -0.5329684975578572,
-          0.023676921886554902,
-          -4.695366520355978,
-          -1.0434445523583435,
-          2.381872158972161,
-          -4.42062858347927,
-          -1.1359603022052207,
-          3.233776269436052,
-          5.5036116831065085,
-          -1.5172681149533647,
-          3.283336312211401,
-          -0.2736489302757413
+          -1.7627168861136298,
+          -0.9901351704148386,
+          -0.751036795373464,
+          1.7970977756509767,
+          1.7863316112402745,
+          1.9630802568722845,
+          0.2281329610819771,
+          -0.91002536555239,
+          -1.8207924406602674,
+          -2.2337640798925555,
+          1.484279664950545,
+          -1.2741308481171658,
+          2.9686983083045106,
+          -1.5613529433632956,
+          1.9554091389676647,
+          0.6477453074630912,
+          -0.7603317560911488,
+          1.6506117198836332,
+          5.000800047905931,
+          2.2453526613325216,
+          1.7896444853028177,
+          -0.9104227967775916,
+          -0.8505704388337052,
+          1.5430529956020278,
+          1.2063561824647817,
+          2.487610021917034,
+          -3.0596281620172543,
+          -1.4694710453696243,
+          -1.7340790736783913,
+          -1.488683808676367,
+          -2.6439288871566062,
+          0.5733638656204523,
+          0.9796295622848767,
+          -0.2501624799412897,
+          0.4215829856590395,
+          1.0832035090461358,
+          1.7585333023392538,
+          -0.3126888077284255,
+          -1.0967223170532694,
+          -0.37000176180176864,
+          1.599597916409623,
+          -1.126587890114627,
+          -1.004967718789422,
+          0.01081914554539946,
+          0.27468152897049464,
+          0.6981790322581167,
+          0.9739828717497981,
+          -2.4568880503388657,
+          -2.244500489047262,
+          -1.8688817577898194,
+          0.19733230583107714,
+          0.611168951691346,
+          2.5635495700711077,
+          0.8848284876436217,
+          0.19346517646968972,
+          -1.200695708063114,
+          -0.5397810509723494,
+          -0.7201391681138507,
+          2.3059608260328255,
+          0.7168112920534547,
+          3.8691677774112163,
+          -1.6386069335604938,
+          0.588974283125025,
+          -1.2582887609392872,
+          -2.151003224982118,
+          0.6027408402366228,
+          -1.8602996764441015,
+          -1.6811913826106553,
+          0.08083830594434832,
+          2.1641006875978377,
+          2.629185645496818,
+          -0.13531778521521726,
+          0.7636112146896039,
+          0.9323302234736545,
+          -0.5236336156861991,
+          0.05649659664766568,
+          -1.1880127412699757,
+          0.016044623187666116,
+          -2.115339096456724,
+          0.6486979414156243,
+          0.1262391643604932,
+          5.409409047137898,
+          0.5397880551957105,
+          0.02145567696894087,
+          -1.3842851907628149,
+          -3.7083019370186054,
+          1.304918851072656,
+          0.04849986134425725,
+          -0.984576178138464,
+          0.288503472099051,
+          -0.1580678373731078,
+          0.2777687136604322,
+          0.33837933460425884,
+          -0.8450780704337426,
+          -0.45634057802396505,
+          0.0006373480884675205,
+          1.6861812307523263,
+          0.4016240319556502,
+          0.07709084508641928,
+          -1.0771110965976087,
+          3.086065652888037,
+          -0.10505228955027371,
+          0.4531094123626595,
+          -1.7845032100091074,
+          -0.8415508385170999,
+          0.2592780043388418,
+          2.632055731616175,
+          0.12367809461426588,
+          -0.2855640991026364,
+          -1.69408110189025,
+          -0.13531914335366071,
+          0.011133981184272201,
+          -0.367039258553701,
+          -1.0189066918229968,
+          1.4186218913600148,
+          -1.573427576212909,
+          0.16593598180394717,
+          1.7617044922547604,
+          3.0425459172631695,
+          0.19583996173150148,
+          1.4278963872047723,
+          -0.6156662661114926,
+          -0.8211057927992617,
+          3.137659856538606,
+          -1.4010331174617734,
+          -0.2233047673781649,
+          -0.25351430499005584,
+          -0.6220953768102011,
+          -0.8938865441839197,
+          0.30307447005991534,
+          2.3319497841044714,
+          -0.09370266855654,
+          0.7664556673067238,
+          0.7174927489721556,
+          -0.40629589728879517,
+          -0.8251818194137783,
+          1.7458523848539569,
+          1.463364607085332,
+          -2.9204734617214703,
+          1.4318629818442317,
+          0.61128038932067,
+          -0.795117034128841,
+          -1.3280453493214257,
+          -0.8098348264471649,
+          -1.8284557363495464,
+          -0.27772936524926856,
+          -0.5477838174663842,
+          0.62118075564397,
+          -1.5405446554444413,
+          -0.12567147803156065,
+          0.43990502647967605,
+          -1.7187128406987904,
+          -0.30923673403496504,
+          -2.0614230472886286,
+          1.0481180444161546,
+          -0.2625896096622798,
+          0.32273317367034776,
+          0.3622002606887008,
+          -0.032459228034775967,
+          0.12679456284653642,
+          0.5009783764940391,
+          -0.6381019435747637,
+          0.1266077428148444,
+          1.5977211869012011,
+          -0.5471806328132743,
+          -1.3994908206162977,
+          1.8980024307720198,
+          -0.6349009393735805,
+          0.21780673301247472,
+          -0.47570267397142696,
+          -1.824039358194492,
+          -0.01600462643308888,
+          -1.7582903888642363,
+          -0.6312386401005571,
+          3.0189851238747973,
+          -0.9146466859840646,
+          -0.08905799265496725,
+          -3.424692988649855,
+          -2.811644272439415,
+          0.9449570342137182,
+          -2.5240598663885225,
+          -0.6662008511254596,
+          -0.42943977562669755,
+          -0.13774362965527276,
+          -0.8673138286938968,
+          1.8285951189893506,
+          0.1096487811140559,
+          -0.5030521552277821,
+          2.850397474079475,
+          -3.24875460909702,
+          0.14725586444606545,
+          -0.04261002442221235,
+          0.5786186974319246,
+          -2.9972620457241854,
+          -1.9824023884676698,
+          0.028596092263362596,
+          -1.874458009267069,
+          2.5264213438319985,
+          0.4769181699888176,
+          0.019230538980982936,
+          -1.3295737466348154,
+          1.3653842604613817,
+          1.6058663566942004,
+          0.03555380212758389,
+          -7.393442920325438,
+          -1.036335323411695,
+          0.22578177343696168,
+          -0.7596866573413124,
+          1.4495208613233537,
+          -2.2962086424229207,
+          -0.07474426597670636,
+          -0.12101521730728668,
+          0.7311785753092167,
+          -0.8711628681747525,
+          1.8785005520200695,
+          0.359551321669295,
+          1.7825528526412502,
+          -2.673731451432014,
+          -2.1526955976318143,
+          0.41757354638421906,
+          2.391263035087357,
+          0.41366724471682187,
+          -2.9494098679259655,
+          0.0628749654728323,
+          2.2633955501763894,
+          2.3734675323622736,
+          -2.3730643603086112,
+          0.3828195286508131,
+          -1.007643716103844,
+          0.19317339285265045,
+          3.407951686413869,
+          -0.18271970868745036,
+          -2.575994610452073,
+          -0.9742955676291702,
+          0.8982875551635019,
+          -0.009896068903210374,
+          0.30428687757132705,
+          -1.3236964566404734,
+          1.682995111617568,
+          -0.04501964946681194,
+          1.7659510183952014,
+          -2.44222088455265,
+          -0.06498248919887241,
+          0.8096723797223319,
+          -1.3295672865324277,
+          1.5428372273193267,
+          0.8706123747507029,
+          -0.8100476778461126,
+          0.4816673483848953,
+          -2.4132212252393144,
+          -0.7574683827194395,
+          0.001907362163701634,
+          0.6223736425271875,
+          1.561271712571275,
+          -2.685790908813605,
+          -0.1495418978770136,
+          0.33113305686201,
+          0.8682690573224604,
+          -2.7746632778114146,
+          0.7695030436470243,
+          -0.20789036605458694,
+          0.0684431370852889,
+          -0.706091662685006,
+          -0.03347399787725208,
+          0.8577637164506794,
+          0.7063354123116241,
+          -0.643970486417928,
+          0.024493237407407307,
+          -2.0398380204717355,
+          -0.15334103953263525,
+          -0.8231344425309242,
+          -0.017421925901070247,
+          -1.7636839884969893,
+          0.253739069168178,
+          -1.5546337261902732,
+          1.3708159300076137,
+          -1.1734406665819772,
+          -2.4458379423026533,
+          -2.4744676915475106,
+          -0.03511217158693186,
+          0.09589197288964502,
+          -1.709434332055529,
+          0.648889653487992,
+          0.3268360121392029,
+          0.9499758808082496,
+          -0.2358534389964947,
+          4.033608006980167,
+          -0.7341155525432569,
+          1.1983634769946019,
+          0.9155845816353484,
+          0.7002309566212447,
+          -0.14385373739883184,
+          -2.8777907101747076,
+          -1.6696004172553363,
+          -3.470398942432057,
+          -0.2369210737567588,
+          -1.2234319868155674,
+          0.5355630724997696,
+          1.1116096111811935,
+          -0.12146014362109273,
+          0.1581980619503141,
+          -1.4547802617282073,
+          -0.27473048713029763,
+          -0.234530759349535,
+          -1.3480838714405072,
+          -4.780587507859832,
+          -1.3824096512638646,
+          -0.6153433192507999,
+          -0.27342509096453327,
+          0.9508373384907461,
+          -0.09885620848396647,
+          -0.1798368482596803,
+          1.6853814644065874,
+          0.5997691546857642,
+          1.6340643479512251,
+          0.5585062213161406,
+          0.05779129284415721,
+          -1.3770275749765855,
+          2.070900765977047,
+          0.03710621597716044,
+          -0.9221475655742197,
+          0.2370881486562126,
+          -1.7681442957151594,
+          0.4605352607358988,
+          -0.20547305272727082,
+          0.8893536823100773,
+          -0.22770200405725935,
+          0.701877685569524,
+          3.0085732671678405,
+          -1.1130576107656567,
+          0.21230676566530945,
+          -0.5001180156054165,
+          2.185446907057298,
+          0.9477656115712069,
+          0.1452488902651435,
+          0.7422666092501621,
+          -0.5492861557646607,
+          0.5580539655577922,
+          1.1695092857347489,
+          0.4850034550672688,
+          0.596613148110426,
+          -1.7285595118969428,
+          1.4922778524964249,
+          -0.024930719873177548,
+          -2.6304424454413913,
+          -0.9365207988405363,
+          0.8799660416268865,
+          -0.1494282397657075,
+          -0.6746905202770933,
+          0.7488309596032939,
+          -1.7955742202893221,
+          -0.73676371492786,
+          0.35073596744744845,
+          -2.151580474553595,
+          1.8649759303242754,
+          -0.327352284163577,
+          0.8130161229574735,
+          2.2881672731774727,
+          -1.9433968816393368,
+          0.00010782778433967225,
+          1.570066943813554,
+          -1.5656476675652173,
+          1.7285090483967265,
+          0.2658743501705355,
+          -2.260613194245777,
+          -2.769129512529316,
+          2.955209292250275,
+          0.21048963863776465,
+          0.010539210470124528,
+          -2.1782128039159905,
+          2.6896709497571565,
+          -1.0375210604918632,
+          0.8288900563133151,
+          1.2919210698038843,
+          1.1119115124329961,
+          -0.46733019314325036,
+          -3.3851866156868358,
+          0.12178091791363815,
+          -1.1461881302496422,
+          -0.3229080338954289,
+          1.5589930421291192,
+          -1.92688949474649,
+          0.5808564301854698,
+          -0.1020427118852921,
+          -1.3509666563981135,
+          -0.9723359244284251,
+          0.3503275819192183,
+          -0.0323326120614543,
+          -0.20243041568936615,
+          -0.3520287762519151,
+          2.1595832025026507,
+          0.32827944360078587,
+          -0.26537562944802856,
+          -2.182064474390268,
+          1.9529154301675267,
+          0.017070906084041798,
+          -0.8520610945827208,
+          0.8289024294867865,
+          -0.8743444384008758,
+          1.055302987200791,
+          0.5873955921311086,
+          0.4597772229508337,
+          -0.31490160552113544,
+          0.045481805812455534,
+          -0.0389486955150499,
+          0.6350166456066595,
+          -0.013416104875871051,
+          -0.041377622861147004,
+          -0.005671044303584091,
+          -0.7250012702643921,
+          -0.7669044746378338,
+          0.30058294954798287,
+          -0.5126567330347648,
+          -1.1623009898969265,
+          -0.7422300993696429,
+          0.1612068960293776,
+          0.017072744128502876,
+          -0.43464195577164916,
+          -0.3191791734948943,
+          -0.11662554871909463,
+          -0.3233672045749984,
+          0.28870011157612413,
+          -0.976147934198094,
+          -0.0671598459512527,
+          -0.40143147770794296,
+          -0.014018139653392681,
+          -0.19118948445595607,
+          -0.3170490607065544,
+          -0.1501870273255099,
+          -0.6948678606071758,
+          -0.04582750657298559,
+          0.0012634607897362585,
+          0.5934273312058247,
+          0.2779078779187691,
+          0.8221194987947803,
+          0.0265553343414812,
+          0.04551278368871617,
+          0.49381921847281907,
+          -0.5865835221665918,
+          0.33277634263600264,
+          0.8527791930241271,
+          0.5138815650612107,
+          -1.1846725995743361,
+          0.11528901615077157,
+          -0.043171992751952305,
+          0.0039631694593056915,
+          -1.2539501748420283,
+          -1.1448009515479178,
+          0.02317897668885931,
+          0.6667118434935344,
+          -0.31029612999582906,
+          -0.7104572436414244,
+          -0.42122971792647845,
+          0.0916851792873013,
+          -0.8857602699538454,
+          -0.26514607745416446,
+          -1.0074173549777845,
+          1.1738272642860192,
+          0.3606326449726323,
+          -0.05813637138508747,
+          -0.882902975499475,
+          0.1027352169808892,
+          1.2876367405615152,
+          -0.3557844740910917,
+          0.5964863400710905,
+          0.32039463532792667,
+          0.12203077553156756,
+          -0.0237434856579859,
+          -0.27807099779597566,
+          0.4545481303477854,
+          1.1572325573195512,
+          -0.23809947173500215,
+          -0.05951070475055989,
+          -0.4347330619974564,
+          0.20310051953744068,
+          0.6488621333650534,
+          -0.11189868182070802,
+          -1.1812739198171693,
+          0.08279072240301644,
+          -1.328025103342611,
+          -0.10400637743061865,
+          -0.4153637808051009,
+          0.5019962831050407,
+          0.36209223175627514,
+          -0.9689506921672232,
+          -0.5803452291573611,
+          0.22691595755683358,
+          -0.6138077823093688,
+          -0.7018961342467746,
+          -0.24700865719681322,
+          0.3348925513708663,
+          -0.14254810486842234,
+          0.024992545215732093,
+          0.04427138851630291,
+          0.4368696256396138,
+          0.18005839477354255,
+          0.539092270319384,
+          -0.44837228735511625,
+          0.6073727199867316,
+          0.18720567954172831,
+          -0.011649184683315118,
+          -0.27663055519960394,
+          -0.1980717314349078,
+          0.11933948646977646,
+          -0.017358535784400202,
+          -0.915030840253278,
+          -0.036351351532206276,
+          -0.14799529318927962,
+          -0.27991957818337754,
+          0.37420577006011047,
+          -0.17866836762054789,
+          0.2582703204415438,
+          -0.2536519516435026,
+          0.02095767378047855,
+          -0.03992082526734035,
+          -0.030381590031045857,
+          -0.8314903702331524,
+          0.886812795125223,
+          0.8528732927236201,
+          -0.4948689437068043,
+          -0.6336069102245636,
+          0.292189675719045,
+          0.4759380848516053,
+          -0.4698510048199538,
+          -0.4785319359473871,
+          0.09652946112031992,
+          -0.47836013352515677,
+          -0.5534411926262623,
+          1.1426771408398209,
+          -0.17187774617304713,
+          -0.004433794073130593,
+          0.053676112823670845,
+          0.8463176583786226,
+          -0.3952150677361642,
+          -0.03690832214243715,
+          0.02596700280254744,
+          0.7745115556133617,
+          0.0722275568664569,
+          -0.839950123728947,
+          -0.028111470303445782,
+          0.20223673817058807,
+          -1.0174183639659815,
+          0.9553875464141639,
+          0.014235162349526957,
+          0.4869348015002976,
+          -0.14409032660214402,
+          -0.07734591567841606,
+          0.04687656805110789,
+          -0.03586164597378717,
+          0.27526098828474044,
+          0.41626820535033876,
+          -0.20607659920045426,
+          0.321007483481473,
+          1.1114682474731115,
+          0.0646249010068426,
+          0.38236040883377614,
+          -1.123770428099,
+          0.11618939855134797,
+          0.4117517448176889,
+          -0.08631702899977665,
+          1.0867475563973736,
+          0.47461200076021415,
+          0.14291653112466943,
+          -0.0818769086851137,
+          -0.1553283205352552,
+          0.4486967693972434,
+          0.04633612392775818,
+          0.08928985741137561,
+          1.3427775678765204,
+          0.6218502202209546,
+          0.2874213707020383,
+          -0.5393644815572869,
+          0.30614003827188524,
+          0.025457675107200445,
+          0.5655900251361833,
+          0.08624427723909915,
+          0.03739472868260413,
+          0.37862928526727513,
+          0.6592480689625426,
+          -0.165369550425057,
+          0.796238050148661,
+          0.7164609083712984,
+          0.5042049533348008,
+          1.1005848884233804,
+          0.4374887972773474,
+          0.15988864460839286,
+          0.05998572231308224,
+          0.18439811858892477,
+          -0.4195571202456009,
+          1.2496450450802647,
+          0.4426128446323607,
+          -0.035617699022244424,
+          0.2116735300651589,
+          -0.9082464889217251,
+          -0.29867893712667354,
+          0.153060868450926,
+          -0.5254790779212232,
+          -0.15521288803200597,
+          -0.046349874473054206,
+          -0.47638254241130784,
+          0.05764649748096631,
+          -0.6390927593447868,
+          0.36023981264446797,
+          -0.22010934593125053,
+          -0.24334037144215145,
+          -0.4443276564680115,
+          0.4712590817139077,
+          -1.3180253893342233,
+          -0.5633062126175151,
+          -0.15193096877263026,
+          0.40047413158310974,
+          -0.5324329210445935,
+          0.026080600570541807,
+          -0.13871972544693692,
+          -0.15380343357342807,
+          0.028540220206408826,
+          1.0725535406305833,
+          -0.07474249874795669,
+          -0.2007046753183758,
+          -0.18576946929206858,
+          -0.2062047944455457,
+          0.9989020363902462,
+          -0.2363669186427968,
+          0.3169461459154084,
+          0.33699054332813494,
+          0.35806992015311684,
+          0.4365467157706248,
+          -0.3084847868640521,
+          0.3894553216365278,
+          -1.5314392641569668e-05,
+          0.6277160326162079,
+          0.5601097175510773,
+          1.2037051698845074,
+          -0.17005613308598952,
+          0.04662302915947056,
+          0.18175831323059533,
+          -0.14898595660373565,
+          0.01730001358690596,
+          0.013227477790793522,
+          -0.1507743058646341,
+          -0.11191045395813642,
+          0.19856107672052214,
+          0.44662651486032096,
+          -0.1959323377225796,
+          0.7028344481227088,
+          0.9623082885793853,
+          -0.2805470619311877,
+          -0.26122028070911,
+          0.3860502002319661,
+          0.23895916923163527,
+          -0.23471539096872304,
+          -0.2708852052562397,
+          -0.9188961440075418,
+          -0.14589980945203634,
+          -0.04288745610256447,
+          -0.4311621869641569,
+          0.08257188237852958,
+          -0.0281235443756746,
+          0.04282214982678942,
+          -0.09674429618100136,
+          0.021889774225518563,
+          -0.31275316584363255,
+          -0.3216953388109563,
+          -0.012083928287766915,
+          0.6811247225681911,
+          0.05132945898773243
          ],
          "z": [
-          -2.985868357680068,
-          1.418829203673782,
-          3.764098076967162,
-          -2.804000045649638,
-          0.8257353455458649,
-          2.1793852796560977,
-          -4.408479092612611,
-          1.1152621135807805,
-          -3.1034222050953493,
-          1.8110389968237892,
-          -2.244696875389455,
-          -1.148936712540095,
-          1.4360209498041427,
-          1.4052948668530358,
-          -2.6283177333315817,
-          -2.6395311212093007,
-          3.531255693093176,
-          0.40162580640523454,
-          1.93777276369623,
-          -2.8798470334616613,
-          2.8785787187449747,
-          -2.6217414708328914,
-          -2.337257397158754,
-          0.6247746390657429,
-          0.7357213150625523,
-          2.085516540161917,
-          -2.172848405497252,
-          -2.783182568266904,
-          1.45192975264005,
-          -1.2763518644812604,
-          3.2210030708398936,
-          -2.660427390244882,
-          -3.419172106287756,
-          0.07777342453657399,
-          -3.393598808627857,
-          -3.093511019282448,
-          3.712041456541453,
-          -2.371464491097831,
-          2.118356105910712,
-          -3.742414373247594,
-          -2.0877415100889958,
-          -1.5975567975029543,
-          -0.7007660770019969,
-          -0.008654475549342067,
-          -4.957750206127114,
-          1.4564648624020842,
-          0.2697013782178871,
-          2.0731920552469933,
-          -2.513269205146598,
-          -3.5487651329970427,
-          -1.7172588928729235,
-          2.19756272513172,
-          -2.870374270293625,
-          3.833685199992205,
-          -3.082858370123119,
-          -3.537370508956274,
-          0.17882084397651227,
-          -3.7287581530716407,
-          1.4925006312353162,
-          2.0725703292074256,
-          -3.7034913158117546,
-          3.6236566594324824,
-          0.3483810140415593,
-          3.472973745149869,
-          -5.120913246506471,
-          1.7786760350971522,
-          -2.130410641401232,
-          -0.8913555181607133,
-          1.4569569387802983,
-          2.067930368152145,
-          -2.039886900810209,
-          -0.9519980505786116,
-          2.614812305020307,
-          2.4539783691331465,
-          -0.5904940510139391,
-          4.089310443085488,
-          -2.361103603541295,
-          -0.9929378454082758,
-          1.7730738292845314,
-          -2.830582996025885,
-          -3.3143809578502856,
-          -2.0680262872311417,
-          -3.06924160237505,
-          -2.0302787053820683,
-          -3.59621585871791,
-          -4.196131944740566,
-          3.004850501077338,
-          0.055575286030999704,
-          -2.699717136379608,
-          0.35054129441212156,
-          -2.843266088518846,
-          -2.447020508129129,
-          -2.3955278202899586,
-          1.305388912715082,
-          0.8953190444786472,
-          -3.3804964800325688,
-          -0.44563072217389466,
-          -3.3375673635780316,
-          1.6935513156885897,
-          -1.4494183838249117,
-          -2.280834589439377,
-          -2.978489210828739,
-          -3.567481085510682,
-          -2.233345261731402,
-          1.9105180308856031,
-          1.144544654497849,
-          -2.8860807411054856,
-          2.324011354972086,
-          2.749294435851914,
-          -2.8903625907936696,
-          -3.660237462504156,
-          -2.602659431579039,
-          -0.732400278714608,
-          1.1524693161232524,
-          3.5338148044070063,
-          0.5736006138799539,
-          -1.7813037112718613,
-          -3.706651290597154,
-          0.23033017771069764,
-          -3.5799602353911273,
-          -1.000108818512513,
-          2.8455651265217763,
-          -1.1972792971574453,
-          -3.5761900889039198,
-          -0.5824667117700676,
-          -1.3865235063763635,
-          -3.3615574870172975,
-          1.3823368530966027,
-          -2.428087090417079,
-          -4.182001475178314,
-          1.847416860179187,
-          0.10571994764918635,
-          -2.619922067124173,
-          -0.4805184078219088,
-          -1.7651557983601784,
-          -1.8660487732745166,
-          -3.702713614548819,
-          0.5147043112761917,
-          0.7935433564616434,
-          1.7178171681060745,
-          0.6449540789791568,
-          3.641072310616776,
-          1.9665904732396702,
-          -2.4659785576065882,
-          0.49785289669158916,
-          -4.1838624108242755,
-          0.832945195262379,
-          -1.4765787306875853,
-          -3.8128784309585386,
-          3.153085798908416,
-          -2.0338830063337237,
-          -3.181837170118626,
-          2.3453539627303166,
-          2.6335784743278476,
-          -3.748702909162914,
-          -0.6556724711701946,
-          1.3867392775570209,
-          -3.4152090738165866,
-          -3.155938999564073,
-          -3.3209812582667113,
-          -0.2335453798328,
-          -4.443015750785568,
-          1.4979302765925047,
-          3.411531399151033,
-          -0.1489955202553348,
-          -2.929332912229761,
-          -0.7326059584049841,
-          3.434074983015589,
-          2.478783176303091,
-          -1.1384729902070787,
-          2.089265582329988,
-          -2.855238482868486,
-          -3.2324506021996062,
-          1.597882037201031,
-          -0.4031285084364915,
-          -2.6770408616627366,
-          -2.9242864243617617,
-          1.8584092523184823,
-          -3.2172297961039056,
-          -1.9274168534481266,
-          1.6388376258351962,
-          3.2162011357942624,
-          1.6493961057414972,
-          -3.168209435515195,
-          1.9077996020031662,
-          -2.4846368250169677,
-          -3.4453491970540626,
-          0.34512984641447536,
-          1.7896254756345913,
-          -1.998338664830865,
-          0.321625774424227,
-          -2.141301894408356,
-          2.9713423929022484,
-          -1.2312730476296,
-          2.0942300240523215,
-          -4.0499561948215135,
-          1.166717912398412,
-          -0.1363881706673572,
-          -3.788004119624036,
-          -0.41043302759064815,
-          1.542754860572514,
-          3.859581688569383,
-          -2.9642693309162493,
-          -3.856573604949684,
-          -4.047195535411703,
-          0.9782708785938867,
-          -2.967111339957515,
-          -0.3676158488886627,
-          -0.06847815620877307,
-          0.40983666705944316,
-          -0.1128973957320607,
-          -3.581972790728362,
-          0.595997566064675,
-          -1.6153946500499305,
-          -3.972861422310646,
-          1.1455568172825126,
-          0.6539585476932228,
-          -3.122333766614198,
-          3.2426211748054303,
-          3.335086634159198,
-          3.3355247746196506,
-          0.075119281358631,
-          1.522133429746257,
-          -3.3388424439489035,
-          0.236049225025095,
-          -1.940151504880936,
-          1.5169705967889953,
-          1.8500366463900053,
-          -2.9955023326765997,
-          -2.1871444388141454,
-          0.029482104142663446,
-          -1.5280825494193606,
-          -0.42279414170436047,
-          -1.8722806006257482,
-          -1.6179824673144594,
-          -1.376865205580955,
-          1.6586171427958063,
-          1.5348419450913737,
-          -2.5724376995815987,
-          -1.2126964200244004,
-          0.40151779252149367,
-          1.4548516199452945,
-          2.502896072393209,
-          3.302167812891379,
-          -3.210422485951375,
-          2.6191646928571664,
-          1.7638712026495056,
-          -0.7138567951871009,
-          -2.2632413144652386,
-          -1.153995542262468,
-          -3.319176096681935,
-          2.2739412005549706,
-          2.588530725616284,
-          -2.683681735340673,
-          2.2703218901841833,
-          -3.561266575290666,
-          -3.817973376716302,
-          -2.5686124291600816,
-          3.732756431376548,
-          -3.1925437006728044,
-          -0.650632820499702,
-          2.5780960672399016,
-          1.9746510604216665,
-          -0.672680195850821,
-          2.253828012904635,
-          -0.6849318533735199,
-          1.3329590741954238,
-          -2.7717160458340295,
-          -0.38133419273480995,
-          3.2805911264541203,
-          -1.69637526704118,
-          -2.5717395622469885,
-          1.5882380850536348,
-          2.3248795269747076,
-          -2.515182721007748,
-          -2.7150352509623628,
-          -0.2732635763136275,
-          -1.1550926567695212,
-          -2.652750257876112,
-          -3.127917175974572,
-          -3.1416436075647267,
-          -1.6587888622132438,
-          0.9102246191766132,
-          0.6364767028491702,
-          -4.034754204959949,
-          1.1595672169718194,
-          -0.22605406399753658,
-          -2.989560354956271,
-          -3.8921127684198935,
-          3.485089944754099,
-          4.144708611242273,
-          2.1499079321862244,
-          -2.5233567744564285,
-          -2.232605012315438,
-          1.9110312573496357,
-          0.3532514619319913,
-          1.598613724999625,
-          2.07928720130216,
-          2.302196997897002,
-          3.406072232695074,
-          -2.928267718531446,
-          1.8739683850551434,
-          3.477363832807071,
-          3.319902598667981,
-          3.329611679880059,
-          1.1296542794385995,
-          -2.5732439865465087,
-          2.2143443070992253,
-          3.975416920293873,
-          -1.592784998541834,
-          1.5583238083572999,
-          -4.190211124636973,
-          -1.3429387750095456,
-          2.850709493132254,
-          -0.2251082053377944,
-          0.7100585428340738,
-          2.1729708452759886,
-          1.2392239245758385,
-          -3.1439449720575037,
-          2.1217448741490275,
-          -3.518854447563874,
-          -0.5323121426750222,
-          1.8482679517026912,
-          -3.636589052886759,
-          0.768894904577968,
-          3.5876819720145896,
-          -2.9514362887127445,
-          -0.5014150846176816,
-          2.7249182984221756,
-          -2.539336377616544,
-          0.37421622394980936,
-          2.7861310782279864,
-          -0.7268143236740582
+          -1.6501416934950275,
+          -2.848080717864997,
+          -1.3207323796864467,
+          1.310640810425978,
+          0.693881514346557,
+          2.572128676237958,
+          -3.101231921495113,
+          1.19938382998165,
+          2.438759399565351,
+          -0.32655826402456883,
+          1.8690735892587866,
+          -0.23403581595827727,
+          -1.4772781644687498,
+          0.8585832435289144,
+          -0.9693013240969125,
+          -1.3732337028792776,
+          0.575188998439975,
+          -0.6399326391208435,
+          -0.9594698591120507,
+          -1.0686528894517793,
+          -1.5080935626120657,
+          2.287663779271539,
+          0.8791405528743499,
+          -0.7688237236757196,
+          3.209925042084925,
+          1.0099663759821105,
+          -1.8146905066405992,
+          0.09213955658718971,
+          0.24558257852680498,
+          -0.7632068247724049,
+          -3.194104960863469,
+          3.9180681054210718,
+          -0.5377409097449956,
+          -0.08435634667456998,
+          1.2325320768044101,
+          1.6144739584501155,
+          -2.267314674100752,
+          0.9940197362475404,
+          0.7745586127111493,
+          0.9673509531874435,
+          -1.418360106011104,
+          -1.5482586982003967,
+          1.585953566270386,
+          1.716721618380063,
+          -0.9476106129058364,
+          -1.3639465324193167,
+          1.4103667520666567,
+          -0.3528443194728831,
+          -1.5104627553892604,
+          -0.1816642680960244,
+          -0.233064527417866,
+          1.8004783473966441,
+          2.555825098015415,
+          0.32285187357510564,
+          1.0236783874401734,
+          -1.8605957393985326,
+          0.20845814183821523,
+          0.3699700235255467,
+          1.3667276912174204,
+          0.24830554774933294,
+          -1.0651279225452384,
+          -1.4202054360443765,
+          -0.3080692516642366,
+          -2.2520110987314563,
+          -2.715669988664512,
+          0.38535254815573194,
+          -0.24015101304657197,
+          -0.052455558501459325,
+          -0.29144577267370925,
+          -0.9000285875904649,
+          -0.02826352716165807,
+          -0.17336416261642923,
+          -2.619610318302244,
+          0.83314198859186,
+          0.12467334338275245,
+          1.6258760659734381,
+          -2.1336886362929457,
+          0.004382754826321478,
+          3.528304981887895,
+          -0.025947985904807312,
+          -0.3114931330560122,
+          1.6690716070595697,
+          0.7392800792809706,
+          -0.005065116553399707,
+          -0.8508730775612354,
+          0.33203573556210003,
+          0.3947396384826971,
+          -1.813138706744462,
+          0.7334676051989185,
+          0.07048651846529054,
+          -0.9411627068781926,
+          0.3414515093550977,
+          0.7743533483100268,
+          -0.5388628819353911,
+          -6.235598527604836,
+          0.019323363969711037,
+          -0.34743923247890063,
+          1.6596469080048637,
+          -1.182112940419026,
+          2.2446193772000878,
+          0.8129513581251734,
+          0.3607434219297405,
+          -1.5203455151756635,
+          -1.698467269741568,
+          0.1350041645198822,
+          2.079132155417868,
+          -1.0852054380856728,
+          -0.24394916264572314,
+          1.5952181846680882,
+          -0.1846336428104354,
+          -0.22644309936193094,
+          0.9784012873362611,
+          0.5303041779120935,
+          -0.5565708447999603,
+          0.6501000556136683,
+          1.1412380735112577,
+          -0.14735073510275923,
+          1.6871906016077076,
+          0.35129958742958456,
+          -0.7410235495153354,
+          -0.7110868727339111,
+          -1.0289330044093554,
+          -0.3637629180325035,
+          -1.125463166996525,
+          0.4054480041310384,
+          -0.3281354814560457,
+          2.5173602205593744,
+          2.36021553472322,
+          -0.4910173728685412,
+          4.5287626591418455,
+          0.8848021518773915,
+          0.28384679935544915,
+          0.9113072338092949,
+          1.9711692158945202,
+          0.14268672954893918,
+          -4.497306912906485,
+          1.0964989031810592,
+          0.24279718409955844,
+          -0.9559421025681406,
+          -0.5330656171237416,
+          -0.7888705110301398,
+          -0.9149901629858384,
+          0.9699604101936148,
+          -1.1833709721373789,
+          -1.6816285958811545,
+          0.3154569286700133,
+          -0.09732010809586761,
+          0.7707616075874137,
+          0.2029729619732648,
+          -0.5222348650995476,
+          -0.1708002886336354,
+          0.55389454265997,
+          -0.8217026401455905,
+          0.15285960308516605,
+          0.942196204730147,
+          -0.06743353538535492,
+          1.3645970839261092,
+          -1.9007841224109754,
+          -0.3051281383165256,
+          -1.7788108412595216,
+          0.5172145233999057,
+          0.22406573145639197,
+          1.3281272133408655,
+          0.575661785054244,
+          1.2263773666558788,
+          1.4901647924635397,
+          0.49648449725167715,
+          -0.017484937573415564,
+          -2.717409909821819,
+          0.06179500357664165,
+          -0.6693018077501388,
+          0.22957693902813922,
+          2.2894024836680975,
+          -2.657517521885716,
+          -1.691506083131419,
+          0.671249131867299,
+          1.2728837226230425,
+          0.7435396256378556,
+          0.4752879094534509,
+          -1.1384305298164685,
+          -0.5093929055475375,
+          3.4792378203564964,
+          1.5996699066324418,
+          0.1748206511562898,
+          -1.5262496473125604,
+          2.5294125165385175,
+          -1.990365299012189,
+          0.03634965081254586,
+          0.5479107577396256,
+          -1.0286077672086262,
+          2.145844687914597,
+          0.19060296588444567,
+          -0.6366516837865851,
+          -1.3286564715763982,
+          0.49577590508440833,
+          -0.055397821223111106,
+          0.3006762071330103,
+          -0.8036350862716345,
+          1.499180876275364,
+          0.11645518148114907,
+          -0.6308702380586774,
+          2.161685198898766,
+          -1.4220664237475023,
+          -0.04611028208819194,
+          -2.696832409201243,
+          -0.3071703929450281,
+          -2.302676003103597,
+          -0.4224180040953544,
+          1.563846676192851,
+          -0.712170570883849,
+          -3.180879951549279,
+          -0.6430201963718389,
+          1.2264599294569298,
+          -2.5454829934582976,
+          2.024978960263038,
+          -0.34237401062589656,
+          1.5822980598390384,
+          -1.448230155323044,
+          0.7333671181700311,
+          -1.0155256734746116,
+          -0.062071961643852966,
+          1.652276850965757,
+          -0.7564784382795497,
+          0.0529794122281064,
+          1.7054299613247585,
+          1.4325159962380376,
+          1.8902510502874215,
+          0.1521381548818423,
+          0.4461836083276944,
+          -2.7298837745203057,
+          1.9786721562162102,
+          0.3272816282684996,
+          2.3781585561249416,
+          1.5120790693113828,
+          -1.362785227772923,
+          -0.270276049859364,
+          -2.036324278990537,
+          0.3515019862350167,
+          1.5953993536517548,
+          -0.15734745038441278,
+          1.7977124822741037,
+          1.4525215471971222,
+          -1.2501797796323348,
+          -1.0221524629901988,
+          -1.7847991980139122,
+          -0.20229506119475732,
+          -0.08075229752678971,
+          -0.4156447138300815,
+          -1.7578738550667417,
+          -0.8571490717032109,
+          0.5711976123327668,
+          0.4806656632177172,
+          1.6949707585919052,
+          -2.5558100080936117,
+          -0.8386122037776089,
+          0.24409491264264502,
+          1.8505440767091603,
+          -0.6902912382855961,
+          0.2307974923453526,
+          0.3907846825431616,
+          -2.6506955053852104,
+          -2.0298379856390905,
+          3.155015620369908,
+          -0.051208147656032155,
+          -1.3016258499198943,
+          -2.833074944876408,
+          0.029663504770435584,
+          0.08213156453132758,
+          -0.018513766146216557,
+          1.6904518459622924,
+          -1.6607191798651462,
+          -0.0022002329118967867,
+          -0.011985466497346255,
+          1.4323929092137988,
+          -0.7832764831075599,
+          -0.3896794637169125,
+          -0.8793278615428511,
+          -1.617841173964122,
+          -0.03133889243883342,
+          -0.2513593276992974,
+          2.681876232526449,
+          1.203556497374601,
+          -1.4128592339045007,
+          0.22259604974731945,
+          -0.7555023113894069,
+          -1.0901001201978207,
+          -0.25519993868104834,
+          -0.3200196673585059,
+          -1.6077613429661335,
+          -0.444552583225013,
+          3.8834468475053714,
+          -0.0003798869688894459,
+          0.768073573384204,
+          1.307131867469682,
+          0.7728771293697098,
+          0.7132789523231525,
+          0.010896247485699773,
+          -1.2090114599832154,
+          0.771995407296725,
+          0.25089188148487124,
+          2.216397388348761,
+          -1.3251804686947768,
+          -3.530030907896882,
+          0.40784428739165135,
+          2.7836433136301406,
+          1.1242554855250741,
+          1.9838275161138823,
+          0.3725842762649427,
+          -1.6122524910433562,
+          -1.1402406185413811,
+          -1.6495741595173044,
+          -0.9551156336888882,
+          0.8112264769457345,
+          1.9592244379432093,
+          0.1658120912523977,
+          -0.6583377172168071,
+          -2.006325906196039,
+          0.4311347563750073,
+          -0.6693340007544737,
+          0.1411947264012605,
+          -2.2866818055114564,
+          0.39564124150428026,
+          -1.3330876946791623,
+          -0.2628555699167076,
+          -1.7998109711932897,
+          1.975584333594583,
+          0.01009496927719222,
+          0.09470544100772894,
+          -0.73066354371268,
+          -1.462449519964812,
+          -2.6134463858850583,
+          -0.47195805298304444,
+          -0.9382820652853666,
+          1.4114142503774019,
+          2.2889966454876296,
+          -0.21528490860390442,
+          -1.4817378483155923,
+          -1.9039621971450837,
+          -1.06180760453846,
+          0.6313787725549111,
+          1.7961791731231034,
+          -1.8216839649929861,
+          -0.45068871795556054,
+          0.022867167200956804,
+          -1.5137434515815649,
+          -1.6471111188604384,
+          -0.8004968875316013,
+          0.3147243697069055,
+          0.9652628824807237,
+          -1.0271037266825689,
+          0.08323517512207014,
+          0.6111203832302171,
+          0.01641569784308912,
+          -0.44877592191370624,
+          0.027255514803414815,
+          -0.12823602747318885,
+          0.5114560315686663,
+          0.3288178626637922,
+          -0.5509685253630501,
+          0.0001574491491753217,
+          -0.27310798381846335,
+          3.3982893219016654,
+          0.18548617441343082,
+          0.5655607222838659,
+          1.2422699697820174,
+          -0.4562441168671442,
+          0.5780402176303724,
+          1.1414228607483146,
+          1.646043055430295,
+          -1.0206724867045025,
+          4.0519494048884965,
+          0.0746556796831508,
+          1.4208793046837054,
+          3.8327724579078164,
+          -1.2794427112335014,
+          0.27917436156975245,
+          -0.6748423799166929,
+          2.095474813404529,
+          1.944696922292389,
+          0.16011583744538477,
+          1.5338202015819349,
+          0.5390137548120763,
+          -0.8881883589885045,
+          0.2996278929369754,
+          0.4745080910711817,
+          0.9236552761620423,
+          -0.9833588593265096,
+          0.2487958911603797,
+          -2.402080138400013,
+          -1.3348252214130798,
+          0.6982515252079521,
+          -0.09232227425253423,
+          -0.0944012993166569,
+          -1.6296093280231727,
+          0.28239635388207457,
+          0.04222294464629908,
+          1.17064279064113,
+          0.8842636904989761,
+          2.0360397794185334,
+          -0.3530704085625791,
+          0.6427931201401278,
+          -0.9603052403077079,
+          0.11023630675050182,
+          -0.08812901830174018,
+          -0.2927922029471714,
+          -0.3574654386886381,
+          -0.8747861564406931,
+          0.10598022583581888,
+          -0.01958056253977881,
+          0.31700703916600775,
+          0.4255631550594905,
+          -0.4259850881676342,
+          -0.23533262218593015,
+          -0.10191345361553883,
+          -0.9546023489280283,
+          0.6447388092425052,
+          -0.4271920573709062,
+          0.5213961541029287,
+          0.014339496328517042,
+          0.04063041922129491,
+          0.23620826875818549,
+          -1.3391520083653479,
+          -0.4278193536073881,
+          -0.18071619071457692,
+          -0.11425691433137686,
+          0.00823303288921216,
+          -0.1936222831493052,
+          0.14536583645391288,
+          -0.9613017131993973,
+          -0.27043957057423024,
+          0.3345841631090019,
+          0.8236912490468663,
+          -0.05412379881993445,
+          -0.1347601784770718,
+          0.7354563593827436,
+          -0.04401167032146144,
+          0.036575116826307416,
+          0.11900547122473662,
+          0.10177669848037597,
+          -0.8354988548041336,
+          -0.03855139701452282,
+          0.3867086249943337,
+          -0.7599150385417862,
+          0.850493210160774,
+          0.2485699306708684,
+          0.03542430318998967,
+          -0.3520926066105639,
+          -0.24730584710269443,
+          0.750341210674674,
+          -0.13581269969140014,
+          0.6954248416362174,
+          0.993379969011597,
+          -0.2855903651894885,
+          -0.2335461802717749,
+          0.17217098117147808,
+          0.427432340406943,
+          0.18086631957263088,
+          -0.49645893036917116,
+          0.4809526061182003,
+          -0.0653686624336496,
+          -0.257720619562056,
+          0.1274691481049237,
+          -0.33553851967674936,
+          -0.38687194984749657,
+          -0.2614295001130193,
+          0.11938958789693692,
+          -0.13705195215126428,
+          -0.076730241888212,
+          0.12862629343748386,
+          -0.13835955056127047,
+          -0.7498532025639367,
+          -0.3934839766760665,
+          0.008426675366233989,
+          -0.7461877823061959,
+          1.0734113475217897,
+          0.15210131321313597,
+          1.154362476331235,
+          -0.5877164272222313,
+          -1.1928248807203234,
+          -0.09181562077842326,
+          -0.09737157169281135,
+          -0.23774646520966677,
+          -0.5879972262860044,
+          -0.19936457797213394,
+          0.503522559735769,
+          -0.41618277852226343,
+          0.17119729854562435,
+          -0.3541573917903551,
+          0.598737111510557,
+          0.5413720056584925,
+          0.5066630804659947,
+          0.8175947539855609,
+          -0.09497960791250201,
+          0.09800054981817408,
+          1.286339771234433,
+          0.8516392976683044,
+          0.07731637588975944,
+          0.3031997931577556,
+          0.04298249856975874,
+          -0.015619010302105484,
+          -0.03728261810048038,
+          1.0792398104462728,
+          -0.6092127840745166,
+          -0.009904220188925889,
+          -0.006090405035322584,
+          1.0460974724523355,
+          0.657364043320829,
+          0.40260754314118413,
+          0.9383139567938432,
+          -0.14118224758026976,
+          -0.15575681190297377,
+          1.1952576646042765,
+          0.9400282468787962,
+          -0.017570905614658947,
+          -0.014938065617264358,
+          -0.6536637629950234,
+          1.0054817178164932,
+          0.0005215058924116379,
+          0.4229228010951633,
+          0.2556172840594475,
+          1.064708483616938,
+          0.04952066802631832,
+          -0.8687048971152093,
+          0.3780172598533449,
+          0.8800218128602607,
+          -0.11676038482143208,
+          -0.8583159840359851,
+          0.04765300993039183,
+          0.9208704334043251,
+          0.0814774944696414,
+          -0.8354425828627009,
+          -0.013714832598501649,
+          0.4963882425457629,
+          0.1757959061290497,
+          0.10789748526693325,
+          0.4841342475461497,
+          -0.8655291836272889,
+          0.005781512533027999,
+          0.8505121038218858,
+          -0.02138566194079805,
+          -0.02681322678967464,
+          0.6766514428271038,
+          -0.6396849625289194,
+          -0.882407463524201,
+          -0.1936135900755252,
+          -0.4049498453926489,
+          0.38494729642262554,
+          -1.39931972743546,
+          -0.043990954312833806,
+          0.20239908523784875,
+          -0.6681693701104259,
+          0.30856932088975125,
+          0.29403498497858876,
+          -0.4678038002306521,
+          -0.14546927611180896,
+          -0.23187038200513774,
+          -0.9564018889781282,
+          -0.2322459183210274,
+          0.48101412507005925,
+          0.0726188782662435,
+          0.32265568623917334,
+          0.2153099590277715,
+          0.02781331074962596,
+          -0.18518458055762207,
+          0.29867945428108045,
+          0.9191392943125734,
+          -0.913413295557307,
+          0.025331417172447353,
+          0.19555434017870116,
+          0.6246293476006081,
+          -0.22513321543780718,
+          -0.3275181745191341,
+          -0.038794581461879626,
+          0.001695917705889228,
+          1.1483287214797446,
+          0.2140279741852076,
+          -0.08236948284147262,
+          0.35034026854608474,
+          -0.39039180619303177,
+          -0.33225267562324956,
+          0.9732070136437367,
+          -0.11779777913411177,
+          0.1459652688344548,
+          0.26029020220561,
+          0.5293828501787227,
+          -0.08777093478493658,
+          -0.16751249570249724,
+          -0.1532780280041732,
+          0.11407714719308298,
+          0.1289069397311846,
+          -0.0494898436490467,
+          0.47549190288633236,
+          0.457820855830874,
+          0.8560001104064527,
+          0.3711054323091745,
+          0.06247473954364478,
+          -0.029675259768974702,
+          0.32227922272852416,
+          0.3933855956645592,
+          0.185097049114015,
+          0.12208700514370596,
+          0.027260517419855364,
+          -0.13979067506981835,
+          1.2184862464356025,
+          0.5270787043632349,
+          -0.280882360235918,
+          0.14174662449275705,
+          0.5301529650679981,
+          -0.2040997352401207,
+          -0.6229735716687994,
+          -0.009520502663240737,
+          -0.07148815464719425,
+          0.021608760443249015,
+          -0.14110426254900502,
+          -0.32205231614764634,
+          -0.17779251246727001,
+          -0.36252696178518645,
+          0.18818988945646384,
+          -0.4601529806611364,
+          -0.046591983440157574,
+          -0.06917183585618691,
+          0.8941329727831682,
+          -1.236943641850275,
+          0.21768592045831858,
+          -0.47659473672993957,
+          0.4887441457934173,
+          0.20380054004052164,
+          -0.4375390821259285,
+          0.8014485644513847,
+          0.005665938708168929,
+          0.2531263751276954,
+          -0.17395799241386387,
+          -0.033520165994431424,
+          0.09516165295242711,
+          0.03207593200324387,
+          -0.2719286250738089,
+          0.3762783526863404,
+          -0.8288902794910914,
+          -0.418492763432582,
+          0.5889774432028466,
+          0.2162275710424209,
+          0.0459346764159249,
+          -0.264808216413251,
+          0.5083792398537874,
+          0.9157830492591753,
+          1.0900611714642516,
+          -0.5892539714911329,
+          1.0389769005941347,
+          0.6220135094595072,
+          -0.06816137268485536,
+          -0.3183740843189014,
+          -0.5445113829840414,
+          1.018164856965693,
+          -0.14338565812938353,
+          -0.011624728753078132,
+          -0.09887467758279832,
+          -0.02258158984912474,
+          0.05082553122905311,
+          -0.45698193267020654,
+          -0.07479529678458419,
+          -0.05789746409479076,
+          -0.2555161124945679,
+          0.04460858269181394,
+          0.5736763934008042,
+          0.24354418593284552,
+          0.06036020255609049
          ]
         },
         {
@@ -21528,1345 +30785,2677 @@
          "scene": "scene3",
          "showlegend": false,
          "text": [
-          "Complementary_85_1",
-          "Complementary_1_1",
-          "redundancy_42_1",
-          "example_12",
-          "example_15",
-          "Complementary_25_1",
-          "Complementary_27_1",
-          "redundancy_11_1",
-          "example_19",
-          "Complementary_48_1",
-          "mutual_error_32_1",
-          "redundancy_50_1",
-          "example_28",
-          "mutual_error_23_1",
-          "Complementary_49_1",
-          "example_41",
-          "Complementary_65_1",
-          "Complementary_56_1",
-          "Complementary_63_1",
-          "Complementary_76_1",
-          "redundancy_62_1",
-          "Complementary_71_1",
-          "example_51",
-          "Complementary_37_1",
-          "Complementary_62_1",
-          "Complementary_88_1",
-          "example_68",
-          "example_69",
-          "example_73",
-          "example_74",
-          "Complementary_12_1",
-          "example_83",
-          "example_89",
-          "mutual_error_18_1",
-          "Complementary_36_1",
-          "redundancy_10_1",
-          "example_94",
-          "redundancy_19_1",
-          "mutual_error_12_1",
-          "Complementary_95_1",
-          "example_111",
-          "redundancy_64_1",
-          "example_114",
-          "Complementary_82_1",
-          "Complementary_72_1",
-          "example_117",
-          "mutual_error_29_1",
-          "redundancy_13_1",
-          "redundancy_22_1",
-          "Complementary_5_1",
-          "example_131",
-          "example_132",
-          "Complementary_14_1",
-          "redundancy_46_1",
-          "redundancy_36_1",
-          "mutual_error_22_1",
-          "redundancy_29_1",
-          "Complementary_31_1",
-          "example_152",
-          "example_153",
-          "mutual_error_5_1",
-          "Complementary_15_1",
-          "example_162",
-          "Complementary_50_1",
-          "example_164",
-          "example_167",
-          "Complementary_24_1",
-          "example_171",
-          "example_172",
-          "Complementary_61_1",
-          "example_175",
-          "example_176",
-          "example_177",
-          "Complementary_4_1",
-          "redundancy_23_1",
-          "Complementary_83_1",
-          "example_181",
-          "example_182",
-          "example_185",
-          "example_188",
-          "mutual_error_19_1",
-          "example_193",
-          "example_194",
-          "Complementary_30_1",
-          "mutual_error_3_1",
-          "example_220",
-          "example_222",
-          "redundancy_65_1",
-          "redundancy_51_1",
-          "redundancy_31_1",
-          "Complementary_64_1",
-          "example_234",
-          "example_236",
-          "example_238",
-          "example_245",
-          "example_248",
-          "example_255",
-          "example_257",
-          "redundancy_4_1",
-          "Complementary_77_1",
-          "example_268",
-          "Complementary_8_1",
-          "redundancy_34_1",
-          "Complementary_92_1",
-          "Complementary_69_1",
-          "redundancy_39_1",
-          "redundancy_48_1",
-          "Complementary_0_1",
-          "Complementary_58_1",
-          "Complementary_6_1",
-          "Complementary_26_1",
-          "Complementary_2_1",
-          "example_304",
-          "mutual_error_16_1",
-          "example_320",
-          "example_322",
-          "example_324",
-          "Complementary_35_1",
-          "example_329",
-          "example_335",
-          "example_336",
-          "example_338",
-          "mutual_error_8_1",
-          "example_341",
-          "redundancy_14_1",
-          "example_349",
-          "Complementary_51_1",
-          "example_354",
-          "mutual_error_30_1",
-          "redundancy_7_1",
-          "example_364",
-          "mutual_error_15_1",
-          "Complementary_89_1",
-          "Complementary_87_1",
-          "mutual_error_6_1",
-          "mutual_error_7_1",
-          "Complementary_40_1",
-          "redundancy_32_1",
-          "redundancy_33_1",
-          "redundancy_17_1",
-          "example_395",
-          "Complementary_17_1",
-          "example_399",
-          "example_405",
-          "Complementary_97_1",
-          "Complementary_81_1",
-          "redundancy_26_1",
-          "example_412",
-          "example_416",
-          "redundancy_61_1",
-          "redundancy_49_1",
-          "example_426",
-          "example_431",
-          "Complementary_74_1",
-          "example_437",
-          "example_440",
-          "example_443",
-          "Complementary_42_1",
-          "example_445",
-          "Complementary_75_1",
-          "example_457",
-          "Complementary_44_1",
-          "Complementary_67_1",
-          "Complementary_55_1",
-          "redundancy_52_1",
-          "Complementary_46_1",
-          "Complementary_18_1",
-          "example_486",
-          "redundancy_55_1",
-          "redundancy_57_1",
-          "Complementary_22_1",
-          "example_495",
-          "Complementary_32_1",
-          "example_501",
-          "Complementary_52_1",
-          "example_506",
-          "redundancy_37_1",
-          "Complementary_3_1",
-          "example_515",
-          "example_517",
-          "example_519",
-          "mutual_error_28_1",
-          "redundancy_41_1",
-          "example_531",
-          "example_532",
-          "example_536",
-          "Complementary_43_1",
-          "Complementary_54_1",
-          "redundancy_43_1",
-          "mutual_error_4_1",
-          "example_557",
-          "example_559",
-          "example_567",
-          "example_568",
-          "mutual_error_26_1",
-          "example_579",
-          "redundancy_56_1",
-          "example_582",
-          "example_583",
-          "example_584",
-          "Complementary_70_1",
-          "mutual_error_27_1",
-          "Complementary_21_1",
-          "redundancy_28_1",
-          "example_601",
-          "example_604",
-          "example_606",
-          "mutual_error_11_1",
-          "mutual_error_9_1",
-          "Complementary_80_1",
-          "example_616",
-          "example_617",
-          "Complementary_90_1",
-          "redundancy_35_1",
-          "example_628",
-          "example_629",
-          "Complementary_11_1",
-          "example_633",
-          "example_636",
-          "example_638",
-          "example_653",
-          "example_655",
-          "example_656",
-          "example_657",
-          "redundancy_40_1",
-          "Complementary_20_1",
-          "example_665",
-          "example_666",
-          "example_667",
-          "redundancy_15_1",
-          "Complementary_10_1",
-          "mutual_error_13_1",
-          "example_673",
-          "example_675",
-          "redundancy_63_1",
-          "Complementary_53_1",
-          "redundancy_38_1",
-          "example_685",
-          "example_687",
-          "example_692",
-          "example_693",
-          "example_695",
-          "example_703",
-          "example_705",
-          "example_711",
-          "mutual_error_1_1",
-          "example_717",
-          "Complementary_29_1",
-          "example_722",
-          "example_730",
-          "example_731",
-          "example_732",
-          "example_734",
-          "mutual_error_20_1",
-          "redundancy_8_1",
-          "example_752",
-          "mutual_error_25_1",
-          "redundancy_45_1",
-          "example_755",
-          "example_756",
-          "Complementary_33_1",
-          "example_758",
-          "redundancy_47_1",
-          "example_770",
-          "mutual_error_24_1",
-          "example_785",
-          "example_789",
-          "Complementary_47_1",
-          "Complementary_91_1",
-          "example_803",
-          "Complementary_16_1",
-          "Complementary_59_1",
-          "example_816",
-          "example_817",
-          "example_820",
-          "example_822",
-          "example_827",
-          "redundancy_44_1",
-          "redundancy_12_1",
-          "Complementary_68_1",
-          "example_833",
-          "Complementary_84_1",
-          "Complementary_66_1",
-          "example_853",
-          "redundancy_27_1",
-          "Complementary_7_1",
-          "example_861",
-          "example_863",
-          "Complementary_23_1",
-          "example_865",
-          "Complementary_38_1",
-          "Complementary_79_1",
-          "example_884",
-          "Complementary_98_1",
-          "redundancy_58_1",
-          "Complementary_60_1",
-          "Complementary_93_1",
-          "mutual_error_17_1",
-          "example_902",
-          "Complementary_41_1",
-          "Complementary_45_1",
-          "mutual_error_14_1",
-          "Complementary_96_1",
-          "example_919",
-          "mutual_error_21_1",
-          "mutual_error_0_1",
-          "Complementary_78_1",
-          "Complementary_13_1",
-          "mutual_error_31_1",
-          "redundancy_24_1",
-          "example_941",
-          "example_949",
-          "Complementary_9_1",
-          "Complementary_39_1",
-          "redundancy_59_1",
-          "Complementary_34_1",
-          "Complementary_28_1",
-          "example_964",
-          "Complementary_86_1",
-          "example_966",
-          "redundancy_60_1",
-          "example_968",
-          "example_969",
-          "redundancy_18_1",
-          "Complementary_19_1",
-          "example_983",
-          "redundancy_53_1",
-          "example_989",
-          "Complementary_73_1",
-          "Complementary_94_1",
-          "Complementary_57_1",
-          "mutual_error_10_1",
-          "redundancy_21_1"
+          "666_l_1_m-0_1.99-1_0.33-2_0.2-3_0.74",
+          "667_l_1_m-0_0.73-1_0.02-2_0.57-3_0.01",
+          "668_l_1_m-0_0.33-1_0.26-2_0.04-3_0.02",
+          "669_l_1_m-0_0.1-1_0.21-2_0.43-3_0.35",
+          "670_l_1_m-0_1.23-1_0.02-2_0.07-3_0.71",
+          "671_l_1_m-0_0.5-1_0.01-2_0.27-3_0.4",
+          "672_l_1_c_0_1_3-0_0.9-1_0.03-2_0.32-3_0.76",
+          "673_l_1_c_0_1_3-0_0.06-1_0.0-2_0.63-3_0.51",
+          "674_l_1_c_0_1_3-0_0.23-1_0.15-2_0.13-3_0.53",
+          "675_l_1_c_0_1_3-0_0.41-1_0.13-2_0.83-3_0.46",
+          "676_l_1_c_0_1_3-0_0.21-1_0.17-2_0.82-3_0.27",
+          "677_l_1_c_0_1_3-0_0.06-1_0.04-2_0.76-3_0.08",
+          "678_l_1_c_0_1_3-0_0.07-1_0.09-2_0.94-3_1.04",
+          "679_l_1_c_0_1_3-0_0.19-1_0.32-2_0.15-3_0.2",
+          "680_l_1_c_0_1_3-0_0.45-1_0.49-2_1.48-3_1.57",
+          "681_l_1_c_0_1_3-0_0.33-1_0.03-2_0.37-3_0.26",
+          "682_l_1_c_0_1_3-0_0.42-1_0.21-2_0.74-3_0.19",
+          "683_l_1_c_0_1_3-0_0.85-1_0.3-2_0.73-3_0.37",
+          "684_l_1_c_0_1_3-0_1.19-1_0.07-2_0.19-3_0.54",
+          "685_l_1_c_0_1_3-0_0.03-1_0.28-2_0.79-3_1.74",
+          "686_l_1_c_0_1_3-0_0.17-1_0.22-2_0.07-3_0.32",
+          "687_l_1_c_0_2_3-0_0.09-1_0.19-2_0.1-3_1.54",
+          "688_l_1_c_0_1_3-0_0.61-1_0.16-2_0.89-3_0.22",
+          "689_l_1_c_0_2_3-0_0.1-1_1.03-2_0.43-3_1.17",
+          "690_l_1_c_0_1_3-0_0.82-1_0.1-2_0.66-3_0.96",
+          "691_l_1_c_0_2_3-0_0.25-1_0.59-2_0.58-3_0.08",
+          "692_l_1_c_0_1_3-0_0.57-1_0.16-2_1.43-3_0.48",
+          "693_l_1_c_0_2_3-0_0.61-1_0.21-2_0.03-3_1.04",
+          "694_l_1_c_0_1_3-0_0.26-1_0.23-2_0.28-3_0.09",
+          "695_l_1_c_0_2_3-0_0.38-1_0.52-2_0.11-3_0.27",
+          "696_l_1_c_0_1_3-0_0.05-1_0.47-2_0.51-3_0.22",
+          "697_l_1_c_0_2_3-0_0.59-1_0.36-2_0.15-3_1.88",
+          "698_l_1_c_0_1_3-0_0.18-1_0.54-2_0.38-3_0.4",
+          "699_l_1_c_0_2_3-0_0.05-1_0.51-2_0.19-3_0.62",
+          "700_l_1_c_0_1_3-0_0.5-1_0.31-2_0.04-3_0.2",
+          "701_l_1_c_0_2_3-0_0.04-1_0.45-2_0.09-3_0.05",
+          "702_l_1_c_0_1_3-0_0.96-1_0.12-2_0.16-3_0.05",
+          "703_l_1_c_0_2_3-0_0.45-1_0.18-2_0.21-3_0.45",
+          "704_l_1_c_0_1_3-0_0.88-1_0.64-2_0.08-3_0.69",
+          "705_l_1_c_0_2_3-0_0.32-1_0.15-2_0.14-3_0.39",
+          "706_l_1_c_0_1_3-0_0.09-1_0.28-2_0.03-3_0.29",
+          "707_l_1_c_0_2_3-0_0.3-1_0.73-2_0.3-3_0.01",
+          "708_l_1_c_0_1_3-0_0.05-1_0.48-2_0.37-3_0.14",
+          "709_l_1_c_0_2_3-0_0.54-1_1.23-2_0.03-3_0.45",
+          "710_l_1_c_0_1_3-0_0.13-1_0.12-2_0.65-3_0.06",
+          "711_l_1_c_0_2_3-0_0.28-1_0.2-2_0.6-3_0.52",
+          "712_l_1_c_0_1_3-0_0.33-1_0.22-2_0.84-3_0.22",
+          "713_l_1_c_0_2_3-0_0.08-1_0.24-2_0.3-3_0.62",
+          "714_l_1_c_0_1_3-0_0.18-1_0.16-2_0.63-3_0.17",
+          "715_l_1_c_0_2_3-0_0.43-1_0.5-2_0.33-3_0.77",
+          "716_l_1_c_0_1_3-0_0.66-1_0.29-2_0.68-3_0.47",
+          "717_l_1_c_0_2_3-0_0.07-1_0.36-2_0.23-3_0.14",
+          "718_l_1_c_0_1_3-0_0.06-1_0.14-2_0.98-3_1.51",
+          "719_l_1_c_0_2_3-0_1.38-1_0.12-2_0.2-3_0.06",
+          "720_l_1_c_0_1_3-0_0.51-1_0.02-2_0.18-3_1.12",
+          "721_l_1_c_0_2_3-0_0.24-1_0.14-2_0.05-3_0.31",
+          "722_l_1_c_0_1_3-0_0.15-1_0.47-2_0.73-3_0.43",
+          "723_l_1_c_0_2_3-0_0.02-1_0.17-2_0.05-3_0.41",
+          "724_l_1_c_0_1_3-0_0.3-1_0.27-2_0.77-3_0.79",
+          "725_l_1_c_0_2_3-0_1.1-1_0.61-2_0.07-3_0.54",
+          "726_l_1_c_0_1_3-0_0.31-1_0.01-2_0.11-3_0.08",
+          "727_l_1_c_0_2_3-0_0.06-1_0.12-2_0.02-3_0.16",
+          "728_l_1_c_0_1_3-0_0.09-1_0.03-2_0.02-3_0.74",
+          "729_l_1_c_0_2_3-0_0.47-1_0.3-2_0.09-3_0.97",
+          "730_l_1_c_0_1_3-0_0.49-1_0.12-2_0.57-3_0.09",
+          "731_l_1_c_0_2_3-0_1.35-1_0.11-2_0.39-3_0.23",
+          "732_l_1_c_0_1_3-0_0.32-1_0.05-2_0.58-3_0.25",
+          "733_l_1_c_0_2_3-0_0.12-1_0.63-2_0.19-3_0.3",
+          "734_l_1_c_0_1_3-0_0.42-1_0.05-2_0.5-3_1.44",
+          "735_l_1_c_0_2_3-0_0.16-1_0.67-2_0.08-3_0.14",
+          "736_l_1_c_0_1_3-0_0.05-1_0.13-2_0.29-3_0.17",
+          "737_l_1_c_0_2_3-0_0.36-1_0.26-2_0.02-3_0.34",
+          "738_l_1_c_0_1_3-0_0.42-1_0.03-2_0.17-3_0.01",
+          "739_l_1_c_0_2_3-0_0.86-1_0.12-2_0.14-3_1.11",
+          "740_l_1_c_0_1_3-0_0.42-1_0.11-2_0.27-3_0.41",
+          "741_l_1_c_0_2_3-0_0.31-1_0.61-2_0.03-3_0.73",
+          "742_l_1_c_0_1_3-0_0.42-1_0.01-2_0.74-3_0.53",
+          "743_l_1_c_0_2_3-0_0.14-1_0.35-2_0.43-3_0.33",
+          "744_l_1_c_0_1_3-0_0.84-1_0.07-2_0.52-3_0.69",
+          "745_l_1_c_0_2_3-0_0.42-1_0.01-2_0.0-3_0.65",
+          "746_l_1_c_0_1_3-0_0.25-1_0.09-2_1.24-3_0.41",
+          "747_l_1_c_0_2_3-0_0.55-1_1.38-2_0.23-3_0.43",
+          "748_l_1_c_0_1_3-0_2.0-1_0.43-2_0.95-3_1.49",
+          "749_l_1_c_0_2_3-0_0.22-1_0.11-2_0.08-3_0.33",
+          "750_l_1_c_0_1_3-0_0.57-1_0.5-2_0.18-3_0.17",
+          "751_l_1_c_0_2_3-0_0.2-1_0.82-2_0.15-3_0.44",
+          "752_l_1_c_0_1_3-0_0.42-1_0.24-2_0.1-3_1.67",
+          "753_l_1_c_0_2_3-0_0.85-1_0.37-2_0.08-3_0.11",
+          "754_l_1_c_0_1_3-0_0.08-1_0.11-2_0.38-3_0.67",
+          "755_l_1_c_0_2_3-0_0.1-1_0.57-2_0.03-3_1.05",
+          "756_l_1_c_0_1_3-0_0.15-1_0.46-2_0.2-3_1.4",
+          "757_l_1_c_0_2_3-0_0.42-1_0.27-2_0.08-3_0.9",
+          "758_l_1_c_0_1_3-0_1.26-1_0.09-2_0.15-3_0.38",
+          "759_l_1_c_0_2_3-0_0.34-1_0.39-2_0.23-3_1.08",
+          "760_l_1_c_0_1_3-0_0.07-1_0.28-2_0.19-3_0.07",
+          "761_l_1_c_0_2_3-0_0.89-1_0.37-2_0.04-3_0.31",
+          "762_l_1_c_0_1_3-0_0.02-1_0.01-2_1.11-3_0.43",
+          "763_l_1_c_0_2_3-0_0.01-1_0.5-2_0.42-3_0.67",
+          "764_l_1_c_0_1_3-0_0.1-1_0.14-2_0.23-3_0.33",
+          "765_l_1_c_0_2_3-0_0.3-1_0.09-2_0.17-3_0.59",
+          "766_l_1_c_0_1_3-0_1.21-1_0.29-2_0.32-3_0.22",
+          "767_l_1_c_0_2_3-0_1.47-1_0.11-2_0.2-3_0.63",
+          "768_l_1_c_0_1_3-0_0.18-1_0.29-2_0.07-3_0.17",
+          "769_l_1_c_0_2_3-0_0.65-1_0.16-2_0.42-3_0.01",
+          "770_l_1_c_0_1_3-0_0.11-1_0.27-2_0.78-3_0.0",
+          "771_l_1_c_0_2_3-0_0.63-1_1.02-2_0.21-3_0.01",
+          "772_l_1_c_0_1_3-0_1.06-1_0.76-2_1.05-3_0.47",
+          "773_l_1_c_0_2_3-0_0.37-1_0.08-2_0.55-3_1.53",
+          "774_l_1_c_0_1_3-0_0.37-1_0.23-2_0.79-3_0.08",
+          "775_l_1_c_0_2_3-0_1.42-1_0.32-2_0.17-3_0.31",
+          "776_l_1_c_0_1_3-0_0.07-1_0.21-2_0.57-3_0.23",
+          "777_l_1_c_0_2_3-0_0.07-1_0.1-2_0.26-3_0.2",
+          "778_l_1_c_0_1_3-0_1.0-1_0.41-2_0.09-3_0.44",
+          "779_l_1_c_0_2_3-0_0.64-1_1.02-2_0.58-3_0.96",
+          "780_l_1_c_0_1_3-0_0.92-1_0.34-2_1.19-3_0.12",
+          "781_l_1_c_0_2_3-0_0.51-1_0.11-2_0.16-3_0.15",
+          "782_l_1_c_0_1_3-0_0.18-1_0.6-2_0.45-3_0.12",
+          "783_l_1_c_0_2_3-0_0.31-1_0.51-2_0.19-3_1.44",
+          "784_l_1_c_0_1_3-0_0.37-1_0.47-2_1.04-3_0.24",
+          "785_l_1_c_0_2_3-0_0.38-1_0.95-2_0.3-3_0.48",
+          "786_l_1_c_0_1_3-0_0.17-1_0.17-2_0.25-3_0.11",
+          "787_l_1_c_0_2_3-0_0.1-1_0.72-2_0.24-3_0.5",
+          "788_l_1_c_0_1_3-0_1.06-1_0.23-2_0.59-3_0.0",
+          "789_l_1_c_0_2_3-0_0.05-1_0.73-2_0.3-3_1.62",
+          "790_l_1_c_0_1_3-0_0.67-1_0.44-2_0.23-3_1.13",
+          "791_l_1_c_0_2_3-0_0.05-1_0.06-2_0.61-3_0.13",
+          "792_l_1_c_0_1_3-0_0.18-1_0.07-2_0.55-3_1.37",
+          "793_l_1_c_0_2_3-0_0.36-1_0.02-2_0.45-3_0.91",
+          "794_l_1_c_0_1_3-0_1.08-1_0.28-2_0.68-3_0.37",
+          "795_l_1_c_0_2_3-0_0.52-1_0.38-2_0.16-3_0.11",
+          "796_l_1_c_0_1_3-0_0.41-1_0.03-2_0.71-3_0.33",
+          "797_l_1_c_0_2_3-0_0.2-1_0.02-2_0.38-3_0.04",
+          "798_l_1_c_0_1_3-0_1.01-1_0.0-2_0.86-3_1.02",
+          "799_l_1_c_0_2_3-0_0.37-1_0.14-2_0.8-3_0.0",
+          "800_l_1_c_0_1_3-0_0.25-1_0.17-2_0.1-3_0.91",
+          "801_l_1_c_0_2_3-0_0.24-1_0.03-2_0.44-3_1.34",
+          "802_l_1_c_0_1_3-0_0.18-1_0.01-2_0.64-3_1.06",
+          "803_l_1_c_0_2_3-0_0.21-1_0.18-2_0.27-3_0.42",
+          "804_l_1_c_0_1_3-0_0.14-1_0.27-2_0.01-3_0.07",
+          "805_l_1_c_0_2_3-0_0.36-1_0.42-2_0.14-3_0.91",
+          "806_l_1_c_0_1_3-0_0.22-1_0.04-2_0.1-3_0.25",
+          "807_l_1_c_0_2_3-0_0.43-1_0.94-2_0.47-3_0.47",
+          "808_l_1_c_1_2_3-0_1.39-1_0.45-2_0.18-3_0.46",
+          "809_l_1_c_0_1_3-0_0.13-1_0.33-2_0.86-3_0.73",
+          "810_l_1_c_0_2_3-0_0.62-1_0.45-2_0.74-3_0.75",
+          "811_l_1_c_1_2_3-0_1.31-1_0.07-2_0.64-3_0.39",
+          "812_l_1_c_0_1_3-0_0.29-1_0.13-2_0.36-3_0.67",
+          "813_l_1_c_0_2_3-0_0.53-1_0.49-2_0.27-3_0.21",
+          "814_l_1_c_1_2_3-0_0.38-1_0.04-2_0.12-3_0.41",
+          "815_l_1_c_0_1_3-0_0.4-1_0.04-2_0.05-3_0.61",
+          "816_l_1_c_0_2_3-0_0.02-1_0.44-2_0.33-3_0.37",
+          "817_l_1_c_1_2_3-0_1.07-1_0.28-2_0.03-3_0.9",
+          "818_l_1_c_0_1_3-0_0.77-1_0.45-2_0.74-3_0.3",
+          "819_l_1_c_0_2_3-0_1.61-1_0.25-2_0.2-3_0.06",
+          "820_l_1_c_1_2_3-0_1.2-1_0.14-2_0.29-3_0.65",
+          "821_l_1_c_0_1_3-0_0.31-1_0.18-2_0.62-3_0.24",
+          "822_l_1_c_0_2_3-0_0.47-1_0.22-2_0.56-3_0.38",
+          "823_l_1_c_1_2_3-0_0.51-1_0.23-2_0.24-3_0.66",
+          "824_l_1_c_0_1_3-0_0.87-1_0.35-2_0.18-3_0.43",
+          "825_l_1_c_0_2_3-0_1.51-1_0.28-2_0.65-3_0.48",
+          "826_l_1_c_1_2_3-0_1.72-1_0.47-2_0.4-3_0.11",
+          "827_l_1_c_0_1_3-0_0.76-1_0.06-2_0.04-3_0.9",
+          "828_l_1_c_0_2_3-0_0.44-1_0.74-2_0.07-3_1.12",
+          "829_l_1_c_1_2_3-0_0.53-1_0.22-2_0.15-3_0.29",
+          "830_l_1_c_0_1_3-0_0.07-1_0.23-2_0.21-3_0.06",
+          "831_l_1_c_0_2_3-0_0.39-1_1.29-2_0.26-3_0.24",
+          "832_l_1_c_1_2_3-0_0.64-1_0.39-2_0.41-3_0.07",
+          "833_l_1_c_0_1_3-0_0.07-1_0.27-2_0.06-3_0.64",
+          "834_l_1_c_0_2_3-0_1.1-1_0.55-2_0.14-3_0.15",
+          "835_l_1_c_1_2_3-0_0.07-1_0.11-2_0.12-3_0.77",
+          "836_l_1_c_0_1_3-0_0.83-1_0.57-2_0.36-3_0.88",
+          "837_l_1_c_0_2_3-0_0.83-1_0.06-2_0.09-3_0.36",
+          "838_l_1_c_1_2_3-0_0.21-1_0.55-2_0.01-3_0.49",
+          "839_l_1_c_0_1_3-0_0.28-1_0.54-2_0.54-3_0.22",
+          "840_l_1_c_0_2_3-0_0.36-1_0.2-2_0.18-3_0.36",
+          "841_l_1_c_1_2_3-0_0.33-1_0.04-2_0.09-3_0.22",
+          "842_l_1_c_0_1_3-0_0.48-1_0.1-2_0.59-3_0.72",
+          "843_l_1_c_0_2_3-0_0.59-1_0.58-2_0.18-3_1.01",
+          "844_l_1_c_1_2_3-0_0.38-1_0.18-2_0.06-3_0.18",
+          "845_l_1_c_0_1_3-0_0.31-1_0.14-2_0.08-3_0.18",
+          "846_l_1_c_0_2_3-0_0.53-1_0.04-2_0.33-3_0.15",
+          "847_l_1_c_1_2_3-0_0.09-1_0.32-2_0.03-3_1.69",
+          "848_l_1_c_0_1_3-0_0.03-1_0.18-2_0.86-3_0.91",
+          "849_l_1_c_0_2_3-0_0.09-1_0.19-2_0.4-3_0.52",
+          "850_l_1_c_1_2_3-0_1.42-1_0.08-2_0.39-3_0.34",
+          "851_l_1_c_0_1_3-0_0.58-1_0.11-2_0.13-3_0.82",
+          "852_l_1_c_0_2_3-0_0.04-1_0.14-2_0.28-3_0.04",
+          "853_l_1_c_1_2_3-0_0.77-1_0.69-2_0.18-3_0.03",
+          "854_l_1_c_0_1_3-0_1.39-1_0.07-2_0.17-3_0.19",
+          "855_l_1_c_0_2_3-0_0.04-1_0.13-2_0.44-3_0.07",
+          "856_l_1_c_1_2_3-0_2.19-1_0.03-2_0.01-3_0.19",
+          "857_l_1_c_0_1_3-0_0.38-1_0.01-2_0.32-3_0.37",
+          "858_l_1_c_0_2_3-0_0.37-1_0.18-2_0.6-3_0.58",
+          "859_l_1_c_1_2_3-0_0.1-1_0.11-2_0.6-3_0.26",
+          "860_l_1_c_0_1_3-0_0.4-1_0.01-2_0.42-3_0.08",
+          "861_l_1_c_0_2_3-0_0.18-1_0.54-2_0.11-3_0.24",
+          "862_l_1_c_1_2_3-0_0.75-1_0.33-2_0.2-3_0.83",
+          "863_l_1_c_0_1_3-0_0.6-1_0.06-2_0.97-3_0.17",
+          "864_l_1_c_0_2_3-0_0.19-1_0.49-2_0.37-3_0.17",
+          "865_l_1_c_1_2_3-0_0.18-1_0.16-2_0.01-3_0.37",
+          "866_l_1_c_0_1_3-0_0.18-1_0.23-2_0.39-3_0.36",
+          "867_l_1_c_0_2_3-0_0.96-1_0.79-2_0.14-3_0.09",
+          "868_l_1_c_1_2_3-0_0.59-1_0.04-2_0.27-3_0.74",
+          "869_l_1_c_0_1_3-0_0.03-1_0.08-2_0.54-3_0.03",
+          "870_l_1_c_0_2_3-0_0.45-1_0.05-2_0.15-3_0.24",
+          "871_l_1_c_1_2_3-0_0.66-1_0.09-2_0.24-3_0.08",
+          "872_l_1_c_0_1_3-0_1.55-1_0.18-2_0.17-3_0.35",
+          "873_l_1_c_0_2_3-0_0.58-1_0.96-2_0.17-3_0.22",
+          "874_l_1_c_1_2_3-0_0.37-1_0.63-2_0.42-3_0.31",
+          "875_l_1_c_0_1_3-0_1.03-1_0.01-2_0.43-3_0.81",
+          "876_l_1_c_0_2_3-0_0.03-1_0.21-2_0.29-3_1.09",
+          "877_l_1_c_1_2_3-0_1.24-1_0.07-2_0.05-3_1.51",
+          "878_l_1_c_0_1_3-0_0.28-1_0.26-2_0.92-3_0.44",
+          "879_l_1_c_0_2_3-0_0.12-1_0.23-2_0.37-3_0.53",
+          "880_l_1_c_1_2_3-0_0.44-1_0.52-2_0.35-3_0.07",
+          "881_l_1_c_0_1_3-0_0.37-1_0.19-2_0.34-3_0.51",
+          "882_l_1_c_0_2_3-0_0.46-1_0.35-2_0.36-3_0.0",
+          "883_l_1_c_1_2_3-0_0.56-1_0.04-2_0.22-3_0.18",
+          "884_l_1_c_0_1_3-0_0.9-1_0.1-2_0.01-3_0.57",
+          "885_l_1_c_0_2_3-0_0.1-1_0.99-2_0.03-3_0.78",
+          "886_l_1_c_1_2_3-0_0.77-1_0.15-2_0.16-3_0.17",
+          "887_l_1_c_0_1_3-0_0.06-1_0.09-2_0.82-3_0.1",
+          "888_l_1_c_0_2_3-0_0.64-1_0.69-2_0.0-3_0.67",
+          "889_l_1_c_1_2_3-0_0.67-1_0.12-2_0.25-3_0.61",
+          "890_l_1_c_0_1_3-0_0.31-1_0.07-2_0.64-3_0.16",
+          "891_l_1_c_0_2_3-0_1.06-1_1.63-2_0.27-3_0.53",
+          "892_l_1_c_1_2_3-0_2.27-1_0.26-2_0.25-3_0.39",
+          "893_l_1_c_0_1_3-0_0.81-1_0.43-2_0.08-3_1.09",
+          "894_l_1_c_0_2_3-0_0.05-1_0.3-2_0.14-3_0.52",
+          "895_l_1_c_1_2_3-0_1.6-1_0.16-2_0.13-3_0.06",
+          "896_l_1_c_0_1_3-0_0.62-1_0.07-2_0.02-3_0.26",
+          "897_l_1_c_0_2_3-0_0.46-1_0.77-2_0.17-3_0.21",
+          "898_l_1_c_1_2_3-0_1.35-1_0.03-2_0.62-3_1.39",
+          "899_l_1_c_0_1_3-0_0.85-1_0.04-2_0.32-3_0.73",
+          "900_l_1_c_0_2_3-0_0.7-1_0.31-2_0.0-3_0.08",
+          "901_l_1_c_1_2_3-0_1.13-1_0.2-2_0.27-3_0.73",
+          "902_l_1_c_0_1_3-0_0.47-1_0.14-2_0.02-3_0.28",
+          "903_l_1_c_0_2_3-0_0.59-1_0.33-2_0.45-3_0.29",
+          "904_l_1_c_1_2_3-0_1.03-1_0.62-2_0.47-3_0.1",
+          "905_l_1_c_0_1_3-0_0.19-1_0.19-2_1.36-3_0.23",
+          "906_l_1_c_0_2_3-0_0.61-1_0.01-2_0.08-3_0.92",
+          "907_l_1_c_1_2_3-0_0.87-1_0.38-2_0.11-3_0.05",
+          "908_l_1_c_0_1_3-0_0.76-1_0.2-2_0.05-3_0.08",
+          "909_l_1_c_0_2_3-0_0.22-1_0.26-2_0.17-3_0.48",
+          "910_l_1_c_1_2_3-0_0.19-1_0.08-2_0.05-3_1.63",
+          "911_l_1_c_0_1_3-0_0.29-1_0.04-2_0.68-3_0.36",
+          "912_l_1_c_0_2_3-0_0.18-1_0.26-2_0.5-3_0.52",
+          "913_l_1_c_1_2_3-0_0.01-1_0.32-2_0.67-3_0.08",
+          "914_l_1_c_0_1_3-0_0.35-1_0.13-2_0.74-3_0.68",
+          "915_l_1_c_0_2_3-0_0.07-1_0.27-2_0.16-3_0.52",
+          "916_l_1_c_1_2_3-0_0.24-1_0.26-2_0.09-3_0.2",
+          "917_l_1_c_0_1_3-0_0.36-1_0.46-2_0.14-3_0.58",
+          "918_l_1_c_0_2_3-0_0.99-1_0.73-2_0.65-3_0.03",
+          "919_l_1_c_1_2_3-0_0.66-1_0.17-2_0.21-3_0.65",
+          "920_l_1_c_0_1_3-0_0.1-1_0.34-2_0.13-3_0.52",
+          "921_l_1_c_0_2_3-0_0.7-1_0.21-2_0.19-3_0.72",
+          "922_l_1_c_1_2_3-0_0.28-1_0.19-2_0.13-3_0.04",
+          "923_l_1_c_0_1_3-0_0.12-1_0.04-2_0.84-3_0.39",
+          "924_l_1_c_0_2_3-0_1.07-1_0.16-2_0.09-3_0.05",
+          "925_l_1_c_1_2_3-0_0.88-1_0.17-2_0.48-3_1.61",
+          "926_l_1_c_0_1_3-0_0.99-1_0.12-2_1.32-3_0.07",
+          "927_l_1_c_0_2_3-0_0.2-1_0.22-2_0.19-3_0.04",
+          "928_l_1_c_1_2_3-0_1.84-1_0.33-2_0.08-3_0.35",
+          "929_l_1_c_0_1_3-0_0.08-1_0.11-2_0.04-3_0.17",
+          "930_l_1_c_2_3-0_1.09-1_0.6-2_0.17-3_1.01",
+          "931_l_1_c_3-0_0.25-1_0.11-2_0.27-3_0.36",
+          "932_l_1_c_3-0_0.65-1_1.06-2_0.38-3_1.03",
+          "933_l_1_r-0_1.79-1_0.14-2_0.5-3_1.46",
+          "934_l_1_r-0_0.48-1_0.47-2_0.33-3_0.68",
+          "935_l_1_r-0_0.52-1_0.67-2_0.59-3_0.96",
+          "936_l_1_r-0_1.43-1_0.68-2_0.03-3_0.49",
+          "937_l_1_r-0_1.01-1_0.59-2_0.53-3_0.19",
+          "938_l_1_r-0_0.11-1_0.71-2_0.32-3_0.88",
+          "939_l_1_r-0_0.48-1_0.81-2_0.49-3_0.82",
+          "940_l_1_r-0_0.44-1_1.08-2_0.54-3_1.36",
+          "941_l_1_r-0_1.97-1_0.41-2_0.41-3_2.38",
+          "942_l_1_r-0_0.18-1_0.25-2_0.08-3_0.25",
+          "943_l_1_r-0_0.13-1_0.49-2_0.69-3_0.63",
+          "944_l_1_r-0_0.63-1_0.9-2_0.2-3_0.77",
+          "945_l_1_r-0_1.38-1_0.69-2_0.62-3_0.06",
+          "946_l_1_r-0_1.43-1_0.83-2_0.24-3_1.68",
+          "947_l_1_r-0_0.25-1_1.21-2_1.05-3_1.34",
+          "948_l_1_r-0_0.21-1_0.31-2_1.09-3_1.14",
+          "949_l_1_r-0_0.75-1_0.63-2_0.27-3_0.18",
+          "950_l_1_r-0_1.44-1_0.2-2_0.19-3_0.15",
+          "951_l_1_r-0_0.52-1_0.38-2_1.31-3_1.84",
+          "952_l_1_r-0_0.06-1_0.5-2_0.04-3_0.37",
+          "953_l_1_r-0_2.36-1_0.12-2_0.5-3_1.04",
+          "954_l_1_r-0_0.28-1_0.18-2_0.71-3_0.85",
+          "955_l_1_r-0_2.23-1_0.29-2_0.43-3_0.06",
+          "956_l_1_r-0_0.08-1_0.04-2_0.09-3_0.83",
+          "957_l_1_r-0_0.09-1_0.61-2_0.48-3_1.32",
+          "958_l_1_r-0_2.86-1_0.06-2_1.06-3_0.73",
+          "959_l_1_r-0_1.02-1_0.58-2_0.51-3_0.85",
+          "960_l_1_r-0_0.73-1_0.4-2_0.47-3_0.54",
+          "961_l_1_r-0_0.12-1_0.62-2_1.04-3_0.51",
+          "962_l_1_r-0_0.74-1_0.06-2_0.52-3_0.04",
+          "963_l_1_r-0_1.11-1_0.05-2_0.21-3_0.34",
+          "964_l_1_r-0_0.36-1_0.31-2_1.11-3_1.7",
+          "965_l_1_r-0_1.17-1_0.45-2_0.63-3_1.24",
+          "966_l_1_r-0_0.51-1_0.56-2_0.39-3_0.31",
+          "967_l_1_r-0_0.16-1_0.51-2_0.45-3_1.67",
+          "968_l_1_r-0_0.23-1_0.22-2_1.08-3_0.77",
+          "969_l_1_r-0_0.49-1_0.86-2_0.3-3_1.6",
+          "970_l_1_r-0_1.5-1_0.76-2_0.17-3_0.56",
+          "971_l_1_r-0_0.47-1_0.89-2_0.14-3_0.01",
+          "972_l_1_r-0_0.93-1_0.4-2_0.83-3_1.14",
+          "973_l_1_r-0_0.05-1_0.76-2_0.63-3_0.66",
+          "974_l_1_r-0_0.29-1_0.61-2_0.27-3_2.31",
+          "975_l_1_r-0_0.03-1_0.31-2_0.36-3_1.13",
+          "976_l_1_r-0_0.45-1_0.47-2_0.08-3_0.55",
+          "977_l_1_r-0_0.41-1_0.67-2_0.95-3_0.25",
+          "978_l_1_r-0_0.4-1_0.43-2_0.72-3_0.93",
+          "979_l_1_r-0_2.44-1_0.16-2_1.07-3_1.24",
+          "980_l_1_r-0_1.82-1_1.23-2_1.28-3_0.79",
+          "981_l_1_r-0_0.52-1_0.32-2_0.38-3_0.54",
+          "982_l_1_r-0_0.13-1_0.09-2_0.1-3_1.07",
+          "983_l_1_r-0_1.02-1_0.26-2_0.25-3_0.66",
+          "984_l_1_r-0_0.07-1_0.4-2_0.8-3_2.37",
+          "985_l_1_r-0_2.1-1_0.28-2_0.33-3_1.39",
+          "986_l_1_r-0_0.08-1_0.62-2_0.87-3_1.56",
+          "987_l_1_r-0_0.5-1_0.21-2_0.38-3_0.77",
+          "988_l_1_r-0_0.35-1_0.9-2_0.76-3_0.09",
+          "989_l_1_r-0_0.35-1_0.79-2_0.64-3_0.19",
+          "990_l_1_r-0_1.96-1_0.37-2_0.59-3_0.9",
+          "991_l_1_r-0_0.39-1_0.26-2_0.55-3_1.64",
+          "992_l_1_r-0_1.41-1_0.77-2_0.94-3_2.11",
+          "993_l_1_r-0_0.02-1_0.33-2_0.54-3_0.31",
+          "994_l_1_r-0_0.19-1_0.29-2_1.49-3_0.44",
+          "995_l_1_r-0_0.32-1_0.52-2_0.62-3_1.61",
+          "996_l_1_r-0_0.67-1_1.58-2_0.17-3_1.19",
+          "997_l_1_r-0_2.06-1_0.3-2_0.19-3_0.22",
+          "998_l_1_r-0_0.12-1_0.9-2_1.05-3_1.46",
+          "999_l_1_r-0_1.59-1_0.3-2_0.59-3_1.73",
+          "1000_l_1_r-0_0.07-1_0.03-2_0.07-3_0.03",
+          "1001_l_1_r-0_1.01-1_0.02-2_0.47-3_0.42",
+          "1002_l_1_r-0_0.75-1_0.05-2_0.5-3_1.43",
+          "1003_l_1_r-0_0.82-1_0.13-2_0.09-3_1.08",
+          "1004_l_1_r-0_1.31-1_0.06-2_0.0-3_0.04",
+          "1005_l_1_r-0_0.9-1_1.08-2_0.55-3_0.44",
+          "1006_l_1_r-0_0.85-1_0.14-2_0.11-3_1.14",
+          "1007_l_1_r-0_0.86-1_0.95-2_0.13-3_0.58",
+          "1008_l_1_r-0_0.62-1_0.93-2_0.54-3_0.51",
+          "1009_l_1_r-0_0.04-1_0.05-2_0.72-3_0.63",
+          "1010_l_1_r-0_1.11-1_0.41-2_0.75-3_1.04",
+          "1011_l_1_r-0_0.94-1_0.29-2_1.06-3_2.42",
+          "1012_l_1_r-0_1.19-1_0.25-2_0.12-3_1.26",
+          "1013_l_1_r-0_0.05-1_0.26-2_0.09-3_0.03",
+          "1014_l_1_r-0_0.87-1_0.34-2_0.13-3_0.8",
+          "1015_l_1_r-0_0.44-1_0.48-2_0.23-3_0.42",
+          "1016_l_1_r-0_1.3-1_0.51-2_0.65-3_0.06",
+          "1017_l_1_r-0_1.52-1_0.44-2_0.7-3_1.62",
+          "1018_l_1_r-0_0.24-1_0.89-2_0.21-3_0.24",
+          "1019_l_1_r-0_0.38-1_0.79-2_0.03-3_0.33",
+          "1020_l_1_r-0_1.43-1_0.38-2_0.78-3_1.07",
+          "1021_l_1_r-0_0.54-1_0.74-2_0.49-3_1.02",
+          "1022_l_1_r-0_0.03-1_0.2-2_0.32-3_0.85",
+          "1023_l_1_r-0_0.85-1_0.87-2_0.57-3_0.83",
+          "1024_l_1_r-0_1.54-1_0.16-2_0.62-3_0.56",
+          "1025_l_1_r-0_0.97-1_0.3-2_0.3-3_0.19",
+          "1026_l_1_r-0_0.61-1_0.01-2_0.33-3_1.38",
+          "1027_l_1_r-0_1.47-1_0.4-2_0.45-3_0.55",
+          "1028_l_1_r-0_0.91-1_0.25-2_1.09-3_0.4",
+          "1029_l_1_r-0_0.08-1_0.31-2_0.39-3_0.14",
+          "1030_l_1_r-0_0.14-1_1.01-2_0.17-3_1.14",
+          "1031_l_1_r-0_1.1-1_0.15-2_1.05-3_1.45",
+          "1032_l_1_r-0_0.84-1_0.63-2_0.75-3_2.04",
+          "1033_l_1_r-0_0.59-1_1.06-2_1.15-3_1.05",
+          "1034_l_1_r-0_1.36-1_0.01-2_0.49-3_1.12",
+          "1035_l_1_r-0_0.08-1_0.22-2_0.98-3_0.57",
+          "1036_l_1_r-0_1.51-1_0.23-2_0.15-3_0.73",
+          "1037_l_1_r-0_0.55-1_1.36-2_0.23-3_1.2",
+          "1038_l_1_r-0_1.27-1_1.25-2_0.1-3_0.22",
+          "1039_l_1_r-0_1.42-1_0.37-2_0.34-3_0.75",
+          "1040_l_1_r-0_0.87-1_0.13-2_0.34-3_0.21",
+          "1041_l_1_r-0_2.2-1_0.18-2_0.12-3_0.75",
+          "1042_l_1_r-0_0.22-1_0.51-2_1.14-3_0.98",
+          "1043_l_1_r-0_0.4-1_0.44-2_0.74-3_0.86",
+          "1044_l_1_r-0_0.02-1_0.19-2_0.59-3_0.54",
+          "1045_l_1_r-0_0.12-1_0.79-2_0.26-3_0.34",
+          "1046_l_1_r-0_1.03-1_0.2-2_0.16-3_0.4",
+          "1047_l_1_r-0_0.13-1_0.11-2_0.92-3_0.96",
+          "1048_l_1_r-0_0.42-1_0.95-2_0.75-3_0.04",
+          "1049_l_1_r-0_0.58-1_0.45-2_0.29-3_1.65",
+          "1050_l_1_r-0_2.4-1_0.03-2_0.26-3_1.39",
+          "1051_l_1_r-0_0.92-1_0.38-2_0.92-3_0.08",
+          "1052_l_1_r-0_1.67-1_0.23-2_0.23-3_0.39",
+          "1053_l_1_r-0_1.22-1_0.02-2_0.23-3_0.44",
+          "1054_l_1_r-0_0.62-1_0.75-2_0.17-3_0.94",
+          "1055_l_1_r-0_0.45-1_0.17-2_0.12-3_2.21",
+          "1056_l_1_r-0_0.3-1_0.55-2_1.4-3_0.51",
+          "1057_l_1_r-0_1.12-1_1.48-2_0.35-3_0.28",
+          "1058_l_1_r-0_1.97-1_0.59-2_0.38-3_1.2",
+          "1059_l_1_r-0_0.37-1_1.12-2_0.12-3_0.14",
+          "1060_l_1_r-0_0.12-1_0.51-2_0.24-3_0.06",
+          "1061_l_1_r-0_1.24-1_0.31-2_0.83-3_0.54",
+          "1062_l_1_r-0_0.49-1_0.28-2_0.2-3_1.13",
+          "1063_l_1_r-0_0.24-1_0.21-2_0.08-3_0.05",
+          "1064_l_1_r-0_0.24-1_1.12-2_0.71-3_0.75",
+          "1065_l_1_r-0_0.89-1_1.83-2_0.58-3_0.71",
+          "1066_l_1_r-0_0.13-1_1.62-2_0.33-3_1.38",
+          "1067_l_1_r-0_0.57-1_0.43-2_0.48-3_0.09",
+          "1068_l_1_r-0_0.35-1_0.56-2_0.58-3_0.38",
+          "1069_l_1_r-0_1.73-1_0.77-2_0.46-3_0.31",
+          "1070_l_1_r-0_2.03-1_0.03-2_0.45-3_0.32",
+          "1071_l_1_r-0_0.4-1_0.39-2_0.93-3_0.89",
+          "1072_l_1_r-0_0.43-1_0.45-2_0.43-3_1.75",
+          "1073_l_1_r-0_0.22-1_0.41-2_0.35-3_0.9",
+          "1074_l_1_r-0_0.37-1_0.39-2_0.81-3_1.36",
+          "1075_l_1_r-0_0.2-1_0.02-2_0.07-3_0.97",
+          "1076_l_1_r-0_0.56-1_0.19-2_0.58-3_0.75",
+          "1077_l_1_r-0_1.2-1_0.11-2_0.09-3_0.1",
+          "1078_l_1_r-0_0.05-1_0.31-2_0.17-3_1.33",
+          "1079_l_1_r-0_0.6-1_0.15-2_0.18-3_1.34",
+          "1080_l_1_r-0_1.08-1_0.92-2_0.38-3_1.29",
+          "1081_l_1_r-0_1.21-1_0.61-2_0.38-3_0.54",
+          "1082_l_1_r-0_0.07-1_0.08-2_0.06-3_0.03",
+          "1083_l_1_r-0_0.93-1_0.13-2_0.05-3_1.21",
+          "1084_l_1_r-0_0.49-1_0.13-2_0.43-3_0.66",
+          "1085_l_1_r-0_0.72-1_0.85-2_0.68-3_1.87",
+          "1086_l_1_r-0_1.02-1_0.16-2_0.14-3_0.78",
+          "1087_l_1_r-0_2.57-1_0.77-2_0.18-3_1.09",
+          "1088_l_1_r-0_0.63-1_0.58-2_0.18-3_1.53",
+          "1089_l_1_r-0_0.37-1_0.34-2_1.12-3_0.27",
+          "1090_l_1_r-0_0.35-1_0.07-2_0.85-3_0.72",
+          "1091_l_1_r-0_1.02-1_0.4-2_0.51-3_1.21",
+          "1092_l_1_r-0_3.07-1_0.65-2_0.61-3_0.57",
+          "1093_l_1_r-0_0.57-1_0.65-2_0.45-3_0.47",
+          "1094_l_1_r-0_0.77-1_0.19-2_0.48-3_0.51",
+          "1095_l_1_r-0_1.08-1_0.83-2_1.14-3_0.52",
+          "1096_l_1_r-0_0.37-1_0.35-2_0.39-3_1.67",
+          "1097_l_1_r-0_0.16-1_0.27-2_0.16-3_0.8",
+          "1098_l_1_r-0_2.15-1_0.71-2_0.61-3_0.37",
+          "1099_l_1_r-0_0.3-1_0.3-2_0.69-3_1.23",
+          "1100_l_1_r-0_0.17-1_0.1-2_0.35-3_0.22",
+          "1101_l_1_r-0_0.57-1_0.13-2_0.25-3_0.7",
+          "1102_l_1_r-0_0.65-1_0.09-2_0.37-3_0.9",
+          "1103_l_1_r-0_0.18-1_0.64-2_0.12-3_2.11",
+          "1104_l_1_r-0_0.79-1_0.39-2_0.28-3_2.63",
+          "1105_l_1_r-0_0.28-1_0.36-2_0.26-3_2.6",
+          "1106_l_1_r-0_0.63-1_0.02-2_0.59-3_0.45",
+          "1107_l_1_r-0_1.3-1_0.33-2_0.35-3_0.42",
+          "1108_l_1_r-0_1.64-1_0.67-2_0.96-3_0.37",
+          "1109_l_1_r-0_0.02-1_0.18-2_1.05-3_0.74",
+          "1110_l_1_r-0_0.55-1_0.02-2_0.62-3_0.93",
+          "1111_l_1_r-0_0.4-1_0.7-2_0.63-3_1.21",
+          "1112_l_1_r-0_1.37-1_0.15-2_0.6-3_0.17",
+          "1113_l_1_r-0_2.07-1_0.62-2_0.92-3_0.59",
+          "1114_l_1_r-0_0.54-1_0.3-2_0.53-3_1.18",
+          "1115_l_1_r-0_1.42-1_0.34-2_0.59-3_0.2",
+          "1116_l_1_r-0_0.58-1_0.64-2_1.17-3_2.24",
+          "1117_l_1_r-0_0.32-1_0.62-2_0.27-3_0.15",
+          "1118_l_1_r-0_0.76-1_0.87-2_0.46-3_0.13",
+          "1119_l_1_r-0_0.62-1_0.1-2_0.06-3_0.55",
+          "1120_l_1_r-0_0.97-1_0.86-2_0.13-3_0.26",
+          "1121_l_1_r-0_1.53-1_0.85-2_0.02-3_1.53",
+          "1122_l_1_r-0_0.1-1_0.38-2_0.62-3_0.82",
+          "1123_l_1_r-0_0.78-1_0.73-2_0.51-3_0.48",
+          "1124_l_1_r-0_0.23-1_0.8-2_0.1-3_2.14",
+          "1125_l_1_r-0_0.44-1_0.26-2_0.4-3_0.35",
+          "1126_l_1_r-0_1.38-1_1.22-2_0.02-3_0.23",
+          "1127_l_1_r-0_1.06-1_1.03-2_0.2-3_0.31",
+          "1128_l_1_r-0_1.35-1_0.68-2_0.03-3_1.03",
+          "1129_l_1_r-0_0.35-1_0.92-2_0.98-3_0.25",
+          "1130_l_1_r-0_1.81-1_0.41-2_0.77-3_0.84",
+          "1131_l_1_r-0_0.78-1_0.57-2_0.38-3_0.8",
+          "1132_l_1_r-0_0.69-1_1.51-2_0.38-3_0.49",
+          "1133_l_1_r-0_0.08-1_0.7-2_0.76-3_0.2",
+          "1134_l_1_r-0_1.14-1_0.42-2_0.58-3_0.66",
+          "1135_l_1_r-0_0.22-1_0.01-2_0.81-3_2.49",
+          "1136_l_1_r-0_0.96-1_1.14-2_0.58-3_0.3",
+          "1137_l_1_r-0_0.45-1_0.17-2_0.74-3_0.9",
+          "1138_l_1_r-0_0.58-1_0.2-2_1.39-3_0.09",
+          "1139_l_1_r-0_0.03-1_0.44-2_0.0-3_2.16",
+          "1140_l_1_r-0_0.65-1_0.91-2_0.25-3_0.93",
+          "1141_l_1_r-0_0.26-1_0.95-2_0.57-3_1.86",
+          "1142_l_1_r-0_1.5-1_0.02-2_0.22-3_0.47",
+          "1143_l_1_r-0_0.88-1_0.16-2_0.33-3_0.54",
+          "1144_l_1_r-0_0.37-1_1.12-2_0.44-3_0.13",
+          "1145_l_1_r-0_0.71-1_0.53-2_0.47-3_0.2",
+          "1146_l_1_r-0_0.89-1_0.93-2_1.08-3_1.36",
+          "1147_l_1_r-0_0.22-1_0.06-2_0.6-3_0.65",
+          "1148_l_1_r-0_0.95-1_1.12-2_0.78-3_0.43",
+          "1149_l_1_r-0_0.45-1_0.33-2_0.21-3_0.49",
+          "1150_l_1_r-0_0.95-1_0.44-2_0.29-3_0.79",
+          "1151_l_1_r-0_0.21-1_0.69-2_0.13-3_2.13",
+          "1152_l_1_r-0_0.84-1_0.26-2_0.02-3_0.24",
+          "1153_l_1_r-0_0.37-1_0.29-2_0.77-3_1.31",
+          "1154_l_1_r-0_1.2-1_0.12-2_0.13-3_0.28",
+          "1155_l_1_r-0_1.66-1_0.9-2_0.59-3_1.88",
+          "1156_l_1_r-0_1.41-1_0.55-2_0.03-3_0.62",
+          "1157_l_1_r-0_0.29-1_0.79-2_0.88-3_1.55",
+          "1158_l_1_r-0_0.44-1_0.09-2_0.53-3_0.35",
+          "1159_l_1_r-0_2.17-1_0.1-2_0.99-3_1.97",
+          "1160_l_1_r-0_0.26-1_0.55-2_0.27-3_1.05",
+          "1161_l_1_r-0_1.16-1_0.41-2_0.91-3_1.0",
+          "1162_l_1_r-0_0.65-1_0.49-2_1.04-3_1.09",
+          "1163_l_1_r-0_0.07-1_0.63-2_0.86-3_0.02",
+          "1164_l_1_r-0_1.47-1_1.07-2_0.32-3_0.75",
+          "1165_l_1_r-0_1.1-1_0.28-2_0.65-3_0.3",
+          "1166_l_1_r-0_1.14-1_0.76-2_0.78-3_0.86",
+          "1167_l_1_r-0_1.8-1_0.24-2_0.05-3_0.49",
+          "1168_l_1_r-0_0.52-1_0.17-2_0.27-3_0.26",
+          "1169_l_1_r-0_1.24-1_0.6-2_0.25-3_0.73",
+          "1170_l_1_r-0_0.81-1_0.88-2_0.37-3_1.23",
+          "1171_l_1_r-0_2.15-1_0.71-2_0.59-3_0.1",
+          "1172_l_1_r-0_0.28-1_0.03-2_0.9-3_1.37",
+          "1173_l_1_r-0_2.02-1_0.65-2_0.95-3_1.95",
+          "1174_l_1_r-0_1.05-1_0.64-2_0.53-3_2.49",
+          "1175_l_1_r-0_0.7-1_0.2-2_0.22-3_0.01",
+          "1176_l_1_r-0_2.01-1_0.74-2_0.37-3_0.44",
+          "1177_l_1_r-0_0.73-1_0.91-2_0.97-3_1.77",
+          "1178_l_1_r-0_1.26-1_0.61-2_0.91-3_1.47",
+          "1179_l_1_r-0_1.23-1_0.16-2_0.15-3_2.8",
+          "1180_l_1_r-0_0.5-1_0.79-2_0.32-3_0.79",
+          "1181_l_1_r-0_1.39-1_0.56-2_0.63-3_0.97",
+          "1182_l_1_r-0_0.6-1_0.3-2_1.42-3_0.24",
+          "1183_l_1_r-0_1.23-1_0.14-2_0.07-3_0.88",
+          "1184_l_1_r-0_0.45-1_0.12-2_0.31-3_0.3",
+          "1185_l_1_r-0_0.42-1_1.16-2_0.4-3_1.73",
+          "1186_l_1_r-0_0.89-1_0.17-2_0.78-3_1.79",
+          "1187_l_1_r-0_0.23-1_0.19-2_0.28-3_1.26",
+          "1188_l_1_r-0_0.78-1_0.36-2_0.1-3_1.5",
+          "1189_l_1_r-0_0.44-1_0.25-2_1.26-3_1.08",
+          "1190_l_1_r-0_0.17-1_0.03-2_0.99-3_0.21",
+          "1191_l_1_r-0_1.24-1_0.52-2_0.15-3_0.77",
+          "1192_l_1_r-0_1.12-1_0.3-2_0.97-3_0.46",
+          "1193_l_1_r-0_0.71-1_0.14-2_0.38-3_1.75",
+          "1194_l_1_r-0_0.3-1_0.49-2_0.69-3_0.32",
+          "1195_l_1_r-0_1.08-1_0.91-2_0.05-3_0.52",
+          "1196_l_1_r-0_0.52-1_0.7-2_0.05-3_1.14",
+          "1197_l_1_r-0_1.13-1_0.06-2_0.3-3_0.69",
+          "1198_l_1_r-0_1.91-1_0.28-2_0.25-3_1.67",
+          "1199_l_1_r-0_1.68-1_0.9-2_0.98-3_0.45",
+          "1200_l_1_r-0_0.1-1_0.38-2_1.32-3_0.63",
+          "1201_l_1_r-0_0.5-1_0.17-2_0.44-3_0.95",
+          "1202_l_1_r-0_0.33-1_0.92-2_0.7-3_1.36",
+          "1203_l_1_r-0_0.81-1_0.22-2_0.47-3_1.68",
+          "1204_l_1_r-0_0.59-1_0.7-2_0.67-3_0.88",
+          "1205_l_1_r-0_0.65-1_0.09-2_0.19-3_0.97",
+          "1206_l_1_r-0_1.22-1_0.14-2_0.24-3_1.64",
+          "1207_l_1_r-0_0.72-1_0.53-2_0.46-3_0.84",
+          "1208_l_1_r-0_0.01-1_0.25-2_0.06-3_0.48",
+          "1209_l_1_r-0_0.21-1_0.37-2_0.28-3_0.14",
+          "1210_l_1_r-0_1.79-1_0.15-2_0.09-3_1.37",
+          "1211_l_1_r-0_1.67-1_1.03-2_0.12-3_0.15",
+          "1212_l_1_r-0_0.0-1_0.2-2_0.43-3_0.18",
+          "1213_l_1_r-0_1.07-1_0.22-2_0.61-3_1.43",
+          "1214_l_1_r-0_1.07-1_0.2-2_0.15-3_0.69",
+          "1215_l_1_r-0_0.26-1_0.2-2_0.84-3_0.87",
+          "1216_l_1_r-0_0.08-1_0.31-2_0.21-3_2.2",
+          "1217_l_1_r-0_1.09-1_0.05-2_1.56-3_2.26",
+          "1218_l_1_r-0_0.21-1_1.37-2_0.34-3_0.27",
+          "1219_l_1_r-0_3.37-1_0.56-2_0.08-3_0.15",
+          "1220_l_1_r-0_0.54-1_0.84-2_0.35-3_0.15",
+          "1221_l_1_r-0_0.23-1_0.52-2_0.27-3_1.98",
+          "1222_l_1_r-0_0.3-1_0.74-2_0.08-3_0.17",
+          "1223_l_1_r-0_0.76-1_0.22-2_0.69-3_1.83",
+          "1224_l_1_r-0_0.55-1_0.96-2_0.11-3_1.54",
+          "1225_l_1_r-0_0.15-1_0.35-2_0.94-3_1.23",
+          "1226_l_1_r-0_1.56-1_1.06-2_0.05-3_0.24",
+          "1227_l_1_r-0_0.09-1_0.46-2_0.12-3_0.07",
+          "1228_l_1_r-0_1.04-1_1.13-2_0.28-3_0.69",
+          "1229_l_1_r-0_0.87-1_0.13-2_0.05-3_1.48",
+          "1230_l_1_r-0_0.03-1_1.38-2_1.01-3_0.18",
+          "1231_l_1_r-0_0.61-1_0.16-2_0.51-3_0.72",
+          "1232_l_1_r-0_0.62-1_0.18-2_0.27-3_0.19",
+          "1233_l_1_r-0_0.28-1_0.07-2_0.74-3_0.25",
+          "1234_l_1_r-0_1.13-1_1.22-2_1.09-3_0.47",
+          "1235_l_1_r-0_0.14-1_0.02-2_0.06-3_0.77",
+          "1236_l_1_r-0_0.86-1_0.62-2_0.96-3_1.19",
+          "1237_l_1_r-0_1.0-1_0.2-2_0.18-3_1.08",
+          "1238_l_1_r-0_0.76-1_0.44-2_0.6-3_0.57",
+          "1239_l_1_r-0_0.52-1_0.19-2_0.25-3_0.59",
+          "1240_l_1_r-0_2.26-1_0.02-2_0.35-3_1.32",
+          "1241_l_1_r-0_0.93-1_0.06-2_0.34-3_0.42",
+          "1242_l_1_r-0_2.52-1_0.59-2_0.12-3_0.44",
+          "1243_l_1_r-0_0.74-1_0.09-2_0.16-3_0.46",
+          "1244_l_1_r-0_0.26-1_1.14-2_0.79-3_0.09",
+          "1245_l_1_r-0_0.52-1_0.33-2_0.08-3_1.8",
+          "1246_l_1_r-0_0.48-1_0.14-2_0.99-3_1.23",
+          "1247_l_1_r-0_0.42-1_0.57-2_1.02-3_1.36",
+          "1248_l_1_r-0_0.11-1_0.2-2_0.1-3_0.9",
+          "1249_l_1_r-0_0.55-1_1.0-2_0.92-3_0.05",
+          "1250_l_1_r-0_0.86-1_0.28-2_0.21-3_0.22",
+          "1251_l_1_r-0_0.5-1_0.39-2_0.75-3_1.4",
+          "1252_l_1_r-0_0.77-1_0.23-2_0.71-3_0.22",
+          "1253_l_1_r-0_0.96-1_0.26-2_0.56-3_0.36",
+          "1254_l_1_r-0_0.56-1_0.24-2_0.13-3_1.43",
+          "1255_l_1_r-0_0.16-1_0.61-2_0.15-3_1.24",
+          "1256_l_1_r-0_0.86-1_0.2-2_0.42-3_0.66",
+          "1257_l_1_r-0_0.09-1_1.09-2_0.75-3_1.99",
+          "1258_l_1_r-0_0.71-1_0.07-2_0.08-3_0.12",
+          "1259_l_1_r-0_0.02-1_1.14-2_0.59-3_2.0",
+          "1260_l_1_r-0_1.23-1_0.73-2_0.42-3_0.76",
+          "1261_l_1_r-0_0.35-1_0.38-2_0.66-3_0.04",
+          "1262_l_1_r-0_0.48-1_0.67-2_0.25-3_1.48",
+          "1263_l_1_r-0_2.08-1_0.17-2_0.28-3_0.03",
+          "1264_l_1_r-0_0.25-1_0.15-2_0.03-3_0.36",
+          "1265_l_1_r-0_0.05-1_0.1-2_0.89-3_1.69",
+          "1266_l_1_r-0_2.61-1_0.08-2_0.12-3_1.16",
+          "1267_l_1_r-0_0.79-1_0.63-2_0.84-3_0.57",
+          "1268_l_1_r-0_0.46-1_0.14-2_0.24-3_0.74",
+          "1269_l_1_r-0_0.46-1_0.25-2_0.32-3_0.25",
+          "1270_l_1_r-0_1.02-1_1.66-2_0.17-3_0.63",
+          "1271_l_1_r-0_1.89-1_0.66-2_0.42-3_0.04",
+          "1272_l_1_r-0_0.56-1_0.35-2_1.76-3_0.09",
+          "1273_l_1_r-0_0.79-1_0.43-2_0.16-3_1.49",
+          "1274_l_1_r-0_1.3-1_0.25-2_0.67-3_0.9",
+          "1275_l_1_r-0_0.59-1_0.16-2_0.87-3_0.93",
+          "1276_l_1_r-0_0.05-1_0.16-2_0.84-3_1.93",
+          "1277_l_1_r-0_0.02-1_0.06-2_0.57-3_1.63",
+          "1278_l_1_r-0_1.34-1_0.08-2_0.42-3_0.73",
+          "1279_l_1_r-0_1.39-1_0.57-2_0.22-3_1.83",
+          "1280_l_1_r-0_0.66-1_0.26-2_0.24-3_0.75",
+          "1281_l_1_r-0_0.06-1_0.8-2_0.34-3_0.96",
+          "1282_l_1_r-0_0.39-1_0.42-2_0.27-3_0.32",
+          "1283_l_1_r-0_0.52-1_0.14-2_1.03-3_0.19",
+          "1284_l_1_r-0_0.08-1_0.09-2_0.79-3_0.95",
+          "1285_l_1_r-0_0.98-1_0.99-2_0.48-3_0.29",
+          "1286_l_1_r-0_0.16-1_0.38-2_0.63-3_0.29",
+          "1287_l_1_r-0_0.52-1_0.45-2_0.03-3_0.71",
+          "1288_l_1_r-0_1.23-1_1.0-2_0.02-3_0.6",
+          "1289_l_1_r-0_0.01-1_0.87-2_0.41-3_0.13",
+          "1290_l_1_r-0_0.82-1_1.11-2_0.69-3_0.13",
+          "1291_l_1_r-0_0.79-1_0.93-2_0.1-3_0.49",
+          "1292_l_1_r-0_0.74-1_1.43-2_0.86-3_1.0",
+          "1293_l_1_r-0_0.44-1_0.07-2_0.26-3_0.11",
+          "1294_l_1_r-0_1.23-1_0.63-2_0.69-3_0.71",
+          "1295_l_1_r-0_0.28-1_0.09-2_0.61-3_1.94",
+          "1296_l_1_r-0_0.09-1_0.12-2_0.87-3_1.4",
+          "1297_l_1_r-0_0.93-1_0.04-2_0.06-3_0.52",
+          "1298_l_1_r-0_1.73-1_0.04-2_0.69-3_0.26",
+          "1299_l_1_r-0_0.53-1_0.36-2_0.66-3_1.2",
+          "1300_l_1_r-0_0.67-1_0.37-2_0.98-3_0.69",
+          "1301_l_1_r-0_0.54-1_0.33-2_0.77-3_0.53",
+          "1302_l_1_r-0_1.06-1_0.73-2_0.51-3_0.32",
+          "1303_l_1_r-0_0.13-1_0.12-2_0.48-3_0.39",
+          "1304_l_1_r-0_0.36-1_0.11-2_0.11-3_0.21",
+          "1305_l_1_r-0_0.51-1_1.22-2_1.43-3_0.44",
+          "1306_l_1_r-0_0.43-1_0.26-2_0.44-3_0.0",
+          "1307_l_1_r-0_1.72-1_0.03-2_0.02-3_1.3",
+          "1308_l_1_r-0_1.28-1_0.4-2_0.16-3_1.94",
+          "1309_l_1_r-0_1.33-1_0.13-2_0.93-3_0.71",
+          "1310_l_1_r-0_0.61-1_0.54-2_0.59-3_1.22",
+          "1311_l_1_r-0_0.1-1_0.39-2_0.49-3_0.03",
+          "1312_l_1_r-0_0.03-1_0.41-2_0.32-3_1.69",
+          "1313_l_1_r-0_0.42-1_0.73-2_0.12-3_2.04",
+          "1314_l_1_r-0_0.19-1_0.53-2_0.02-3_0.71",
+          "1315_l_1_r-0_0.13-1_0.65-2_0.23-3_0.97",
+          "1316_l_1_r-0_0.41-1_0.81-2_0.49-3_1.85",
+          "1317_l_1_r-0_1.76-1_1.08-2_0.21-3_0.72",
+          "1318_l_1_r-0_1.07-1_0.01-2_0.28-3_0.5",
+          "1319_l_1_r-0_0.98-1_1.38-2_0.63-3_0.85",
+          "1320_l_1_r-0_1.18-1_0.06-2_0.66-3_0.59",
+          "1321_l_1_r-0_0.14-1_0.19-2_0.72-3_1.24",
+          "1322_l_1_r-0_1.03-1_1.2-2_0.44-3_0.47",
+          "1323_l_1_r-0_0.66-1_0.56-2_0.24-3_1.18",
+          "1324_l_1_r-0_0.19-1_0.27-2_0.33-3_0.0",
+          "1325_l_1_r-0_1.62-1_0.43-2_0.53-3_0.72",
+          "1326_l_1_r-0_1.21-1_1.13-2_0.34-3_0.58",
+          "1327_l_1_r-0_0.44-1_0.13-2_0.85-3_0.72",
+          "1328_l_1_r-0_0.18-1_0.5-2_0.7-3_0.02",
+          "1329_l_1_r-0_0.21-1_1.55-2_0.12-3_0.14",
+          "1330_l_1_r-0_0.34-1_0.64-2_0.24-3_1.14",
+          "1331_l_1_r-0_0.14-1_0.52-2_0.6-3_0.41"
          ],
          "type": "scatter3d",
          "x": [
-          2.035529740960682,
-          4.197241733208283,
-          4.011663027789894,
-          -4.222794221220093,
-          3.535698963137034,
-          4.510984718186639,
-          5.6467967586722265,
-          4.885987597912241,
-          4.630670725557275,
-          5.349253664812049,
-          4.40157732271369,
-          6.583949086502702,
-          5.318793242767585,
-          4.1694719629982515,
-          0.37581013629775495,
-          4.4934660033089315,
-          4.822874714156434,
-          -0.7081802970050408,
-          1.3853850456174437,
-          1.0265045868556648,
-          4.001969976981638,
-          5.416403271568046,
-          -4.514047081799649,
-          -0.7276404515956354,
-          -0.360573946115871,
-          5.551919351192612,
-          -4.325342004977552,
-          -4.588635428831762,
-          5.280251061851318,
-          5.401936512184823,
-          5.868052833727777,
-          6.165846718021379,
-          -4.272551362548461,
-          4.053103934352805,
-          5.837247835931489,
-          5.483047278261219,
-          -4.642790171788529,
-          4.494111605925677,
-          0.70058106986555,
-          -4.56262014061201,
-          4.298030690879247,
-          5.4245595657402745,
-          4.131156527473297,
-          4.127073736661377,
-          3.889458893989482,
-          -3.417888188673208,
-          3.4618213277194574,
-          5.159601800346733,
-          5.654023626635962,
-          4.35377977479649,
-          5.518847522897863,
-          5.059556576292845,
-          0.28901208292343544,
-          4.942817089566707,
-          5.412863033127043,
-          0.21727689256413407,
-          3.9489539116155825,
-          5.841620397119521,
-          -2.8148068328002127,
-          6.2075155719851765,
-          3.585018079515481,
-          3.6788109728617284,
-          3.7739948664925036,
-          5.409865960456127,
-          5.361590124573221,
-          5.45503838491789,
-          5.314601539543202,
-          -4.8476442215024225,
-          3.6111570351534557,
-          5.6059254803604475,
-          5.91924174882535,
-          4.239169754942841,
-          3.9335521205449417,
-          3.6773987131010033,
-          2.625358396392307,
-          -0.012802036331148292,
-          -4.057404692278759,
-          4.740705028930732,
-          -4.643330344705315,
-          3.5364619215183577,
-          1.2450722800218863,
-          -2.7884481622835215,
-          5.287606256447508,
-          4.3477466788478605,
-          4.730154635430173,
-          -2.659109430507621,
-          5.2862514681385395,
-          4.296813063695949,
-          2.3736880303616985,
-          6.118655502913724,
-          3.433569210746926,
-          4.018588146899935,
-          -3.082935074332341,
-          -3.635840888310069,
-          -5.939278744894832,
-          6.355926166535545,
-          -4.879941808691727,
-          4.618923534654823,
-          4.725303456016853,
-          6.203138162340472,
-          5.429901333423494,
-          5.0480585438276435,
-          6.612916339087489,
-          -3.1543156095705642,
-          5.599982421193008,
-          4.489295797277951,
-          4.6423663069933685,
-          6.27467281926305,
-          6.405865527966061,
-          1.0324232579028292,
-          5.653406449272525,
-          2.0134963517671496,
-          -3.5046997662916595,
-          4.3814655266962985,
-          -4.2986834599056225,
-          -5.012112921633768,
-          6.464378109315298,
-          4.605751101928824,
-          -3.8646008233688605,
-          -5.288265339842306,
-          6.6472002653124616,
-          -4.164476454456745,
-          2.073667355036553,
-          6.209602856181853,
-          7.160105297428512,
-          -6.0819955710597915,
-          3.797969477076548,
-          -5.272389719326474,
-          3.84512501870351,
-          5.421590981467991,
-          -5.544311317397127,
-          0.8390308200884634,
-          4.331078946024982,
-          3.9167751196359215,
-          3.458196988354998,
-          -0.5287836303032303,
-          2.21623585316416,
-          4.472185846048465,
-          2.4197662326101783,
-          3.6486581521472816,
-          3.9606582616221804,
-          4.958925471908722,
-          4.37503921370358,
-          -4.629776443848752,
-          -3.029600616705679,
-          4.879705703872348,
-          4.761260676647336,
-          5.052298541788363,
-          3.6131561434168793,
-          4.125706646967149,
-          5.918088386036274,
-          3.030733451839541,
-          3.9994414983606137,
-          4.896692571832886,
-          5.000860363709035,
-          -4.90138612542066,
-          -5.408231338392261,
-          3.585064093080852,
-          5.417924866104643,
-          4.70026281654219,
-          5.302943438226109,
-          6.903775061611881,
-          3.867616112869572,
-          0.21056904701250512,
-          3.264944445164116,
-          3.7325787888301742,
-          4.461539915557194,
-          5.767174377991256,
-          4.739616485864403,
-          2.103933154917551,
-          3.6126921501146025,
-          -2.633215180949203,
-          3.116340741132181,
-          -5.2291369685897005,
-          4.191006293140551,
-          4.561133717120277,
-          6.334569181003374,
-          4.550276581255593,
-          5.479139065866337,
-          4.847093781732697,
-          -4.753434278886543,
-          4.555589733987681,
-          4.923727240228866,
-          4.504069204553961,
-          4.372887479498303,
-          -2.758514487149679,
-          4.902132461538489,
-          6.082682717193623,
-          3.073250489090764,
-          -1.5020192234674932,
-          -4.832779495021149,
-          4.010499313149627,
-          -4.813722471912972,
-          -4.389780738702352,
-          3.782118110170165,
-          3.8696724045596502,
-          4.853396953949445,
-          -4.988559752774977,
-          -4.401768592751414,
-          4.817090777830911,
-          4.1058893394360325,
-          4.732488483107253,
-          5.133872829307471,
-          4.46759353061048,
-          -3.9074542172915487,
-          3.708507195596553,
-          -3.649267540248444,
-          0.829144138323627,
-          1.0485426824372812,
-          2.47292783110042,
-          5.083616444851862,
-          -4.375620433370188,
-          -4.567349378690187,
-          4.195118885250654,
-          2.367480769467156,
-          6.190705606923746,
-          0.3469320552719025,
-          -5.6196957469396045,
-          -5.318026613105402,
-          6.91852093723085,
-          -6.464828900027776,
-          -2.056696363470142,
-          3.5748667680145156,
-          5.771790197387839,
-          5.955488615692204,
-          1.996526462543541,
-          5.780304900114867,
-          5.379084674099682,
-          -2.0079125279836845,
-          4.95500233289893,
-          5.11099567261384,
-          3.8576830558297255,
-          -5.206536461526699,
-          -4.98784220778465,
-          2.983024632221617,
-          5.667853047270833,
-          6.719532045774019,
-          4.260441299652962,
-          -3.749568367114829,
-          4.680736643267513,
-          4.474741380354656,
-          -5.312838714019989,
-          -3.7096484448830997,
-          2.8355929952795274,
-          -4.045956647929771,
-          0.7364332887431774,
-          5.53879311534305,
-          3.9202837873589313,
-          5.439148619594358,
-          -3.511574272164096,
-          -4.073169673862109,
-          -5.338535041998621,
-          -5.204985836789244,
-          3.8160715512743764,
-          4.957180823085043,
-          -5.010049144006031,
-          4.034546977479975,
-          3.4759939865230964,
-          -5.289142867520905,
-          -4.105678475315553,
-          2.3269176984084092,
-          4.907849876763972,
-          4.43965297528414,
-          4.904612338003538,
-          0.6244221598933556,
-          -6.262499249305421,
-          5.185391029526684,
-          -0.12962453391458928,
-          4.473863997419793,
-          5.817172862197748,
-          1.0856185958405928,
-          3.2706792352025476,
-          4.607868727394899,
-          -5.380325767278759,
-          -6.376174500876264,
-          3.9160998653264083,
-          6.829889035058754,
-          5.661754876446363,
-          5.6773286277885875,
-          0.3697616095864889,
-          6.805384729256422,
-          2.5459722388402986,
-          5.2481673130663,
-          4.619491840970946,
-          4.49163434306652,
-          6.329193448627487,
-          6.57431634123505,
-          5.711721089027659,
-          1.2584454584808253,
-          -3.808208804003905,
-          2.3008875592957434,
-          0.27187756729518003,
-          5.7781605038602155,
-          6.780016285936604,
-          5.025011051661237,
-          5.3290183372207,
-          4.529366919825594,
-          4.930333423727591,
-          -3.6333836205747034,
-          4.271421535606995,
-          4.565780921103624,
-          -0.1071665599586965,
-          4.461657663709139,
-          2.9018448964691603,
-          0.01967510225524527,
-          0.13247889756452813,
-          5.248089088852728,
-          2.65640585290355,
-          0.688675878522581,
-          3.9118540309765675,
-          -5.7102827868261326,
-          5.734605273859178,
-          3.3598011523017575,
-          4.9540466779392816,
-          5.738507547220033,
-          4.853465534982218,
-          1.2414371656718703,
-          -4.369569931952984,
-          5.914553191867978,
-          -5.551857133399444,
-          5.435803808470449,
-          4.709084501523431,
-          -3.5279486867750767,
-          5.905150009033954,
-          5.475468575468421,
-          -4.027068435937876,
-          4.756148030165552,
-          5.252919953090507,
-          3.543739188812711,
-          -4.696162477795041,
-          4.436443529432827,
-          4.482057509029336,
-          6.751519245809229
+          0.7300962227313349,
+          0.9444832967954302,
+          0.4921636647618268,
+          0.5476768229285722,
+          -0.40595666419038445,
+          0.284195236007021,
+          -1.0994921022709125,
+          0.632231655085937,
+          -0.1287586919204916,
+          1.0467047305191193,
+          -1.044657303132336,
+          -0.7648236354026244,
+          -1.8890118427853315,
+          -0.14607642616307298,
+          2.097822908865053,
+          -1.2708495248184304,
+          -1.321138394296017,
+          2.2107491267640675,
+          -0.7729425682348602,
+          -1.0011343509622201,
+          1.6201651262335393,
+          1.267649375406023,
+          0.8918139321779911,
+          -1.067991746589748,
+          0.9091701041789941,
+          0.7439919119070395,
+          -1.4335982448803133,
+          0.029003696169047945,
+          0.5628042797327055,
+          -0.11030577371785409,
+          -0.5132048815718602,
+          0.9818288597013276,
+          -0.3830806272677222,
+          0.1852293567669599,
+          0.041245029433630245,
+          0.4935803015400635,
+          -0.48915930940872177,
+          0.2594817802108137,
+          0.07669180292284496,
+          0.6936657683178328,
+          0.02743031899721645,
+          0.7172612791815082,
+          0.6476267180785552,
+          -0.45704487379896397,
+          0.6534535201919924,
+          -0.891582450435417,
+          1.0572955943002575,
+          -0.37950980676363544,
+          -0.7537466509667479,
+          -0.7850796605445399,
+          0.6767725896598369,
+          -1.2880962886965466,
+          0.9768924526370752,
+          1.1476149906062179,
+          -2.789980318476808,
+          1.1554614634092246,
+          -1.2341798916423867,
+          -0.8199301367622727,
+          -0.7716473207511574,
+          -0.10056724374775808,
+          0.8607935873524764,
+          -0.413284144448275,
+          1.5050364584409042,
+          0.08772169798530179,
+          1.1845457336707035,
+          0.4892044658797125,
+          -1.2818978410523092,
+          1.3991785109071422,
+          1.5243369835389908,
+          0.08285682793978724,
+          1.8092779409976691,
+          -1.3256420886533848,
+          0.1660710140135667,
+          -1.3478967378764362,
+          0.26527717001748646,
+          -0.48943953537464685,
+          0.7358213716589215,
+          -0.4783241399549935,
+          1.4392677446333453,
+          0.0020058532417931586,
+          1.2394024143963351,
+          -0.6901227240586423,
+          -0.9503929404959346,
+          0.3432466021383488,
+          0.18471632587620587,
+          -0.18290557540787677,
+          0.09927693609976722,
+          -0.07575817492562952,
+          1.529034174407075,
+          -0.03029331133341092,
+          0.19883724335747913,
+          -0.08095716737693036,
+          -2.3077529694704397,
+          0.7853453155936433,
+          -1.5370773652786391,
+          -1.4464832197336286,
+          1.9477753345654516,
+          -0.8734319377013462,
+          -2.431502034748074,
+          0.5752222936364787,
+          -1.0989418755699238,
+          0.47180323824193826,
+          -0.07049758417937559,
+          -0.9835320202348012,
+          -0.7789972401085311,
+          -0.5714593662322124,
+          1.0521033293055495,
+          0.5522521254234269,
+          -0.7865494865087116,
+          0.16986065357018693,
+          -0.5650262819381325,
+          -0.26075871407872964,
+          -1.6898961199331077,
+          1.0187154330911976,
+          -1.57724294748549,
+          0.3195224635372801,
+          -0.8104950620039676,
+          -1.1376362185424809,
+          1.0425798430391349,
+          -0.9879541259158815,
+          2.018884268886089,
+          -0.43247297494848685,
+          -0.5925393805442192,
+          0.8512633583425944,
+          1.2384345668963956,
+          -0.7396049637758761,
+          1.1457448477058005,
+          0.5965953334825076,
+          2.050383999418526,
+          -1.2774995273341738,
+          0.9604482874802612,
+          1.0320795680238235,
+          0.8616179731614064,
+          0.8046228965650463,
+          -1.8861141898698226,
+          0.7644467293956345,
+          1.9237867003539009,
+          0.7052223454571674,
+          -0.05146357605098353,
+          -0.7227190501399373,
+          -1.1487954867533643,
+          -0.469339683723377,
+          0.6611468366421017,
+          0.8645977599948278,
+          0.7358009223826115,
+          -0.7029555867969371,
+          -0.6029616239793995,
+          -0.2731402575965865,
+          0.546274683351568,
+          0.04822441549472656,
+          -0.32586465578357965,
+          -1.0252448985221836,
+          -1.6812760269877856,
+          -0.9850705429804418,
+          0.2945037142233646,
+          2.025243127248053,
+          -1.0698321365772114,
+          0.8194361936931547,
+          -0.7707826169729921,
+          -0.7482741540107547,
+          0.40238181445846366,
+          -0.03846290208774116,
+          1.0544395347881368,
+          -0.1546535419644874,
+          -0.33835774109764016,
+          0.49324260401875725,
+          -0.4060456619259799,
+          -0.0558042574492496,
+          0.3087899134497109,
+          -0.11786157635662825,
+          -2.3602064340078592,
+          -0.09033745963415744,
+          -1.3892470090279814,
+          -1.4483232342643106,
+          0.2923975060473343,
+          -0.8134864340892308,
+          -1.6971409695970887,
+          0.3899765217441566,
+          0.852794720727502,
+          2.529792542539988,
+          -0.725101518179856,
+          0.4891455110320362,
+          -0.9349230870138293,
+          -0.5779725329152003,
+          0.7177045537690677,
+          0.1343308987207775,
+          0.27645286648930845,
+          1.1538647590545452,
+          1.932465589541849,
+          -0.9618163793878597,
+          0.6409587608617635,
+          1.8494638636354774,
+          0.8002151972679957,
+          -1.046121809163989,
+          -0.4216497605521299,
+          1.08305847710411,
+          -1.2871445117748685,
+          -2.363297908842704,
+          -0.5995010091417731,
+          -0.5009211366105176,
+          1.509550410245511,
+          -1.0756336106510391,
+          -0.27496453151384176,
+          0.6512896212672782,
+          -0.4270479633205581,
+          -0.8831467943427145,
+          1.3927321475055716,
+          0.20190094141144593,
+          0.5233621747486144,
+          -2.1609834685905054,
+          -1.1110461660852902,
+          -0.051864381161523136,
+          -0.9150739398458761,
+          0.37383971347212447,
+          1.2198021501763037,
+          0.8059345702546589,
+          0.36100032919925523,
+          0.9435506811279836,
+          -2.0125611117950832,
+          0.2704381844370968,
+          1.223370108758479,
+          1.1115626608499891,
+          -0.4803147898821664,
+          -0.3265324230615172,
+          -1.3567028088115118,
+          0.9650118800388233,
+          -0.47277571230076787,
+          0.08489106953176885,
+          1.1540381573358431,
+          0.36060683565756035,
+          -0.13316596154084925,
+          1.2706547813587792,
+          -0.6217416445535691,
+          -1.341080917189132,
+          -0.30114347897899685,
+          1.2283385227860106,
+          -1.6094418177856147,
+          0.675542858869805,
+          -0.4697944551860385,
+          1.3622455907585616,
+          0.08426493359542458,
+          1.0167203754011649,
+          1.833612188637331,
+          0.3013716111286976,
+          -0.48306225422474863,
+          -0.6808895291073253,
+          -0.496089905259562,
+          0.8720167544634735,
+          1.7259465343418277,
+          0.9795501156600447,
+          0.5581874444063536,
+          0.14440638506293463,
+          -0.8285440551544652,
+          0.2841131543108195,
+          0.3070874063452354,
+          0.9000872468813089,
+          1.1347732690719994,
+          -2.1064549770658267,
+          -0.3209510255450378,
+          1.1430898212682414,
+          1.721034697629314,
+          0.4750450074328954,
+          0.07872436328773026,
+          -0.04041618494322786,
+          1.1674943558418318,
+          1.8708703751582787,
+          -1.3924927091188557,
+          -0.49511427493100485,
+          -0.32895669588496723,
+          -1.1379378395582587,
+          -2.1456301877996515,
+          1.0413911818925905,
+          -1.5105901517376463,
+          -0.49330987563181783,
+          -1.369822740539259,
+          -0.4098736639278354,
+          0.08174683252455937,
+          -0.6920979774645946,
+          0.20144233730856656,
+          0.6239293648856445,
+          0.5681635414406188,
+          -1.8048529851616992,
+          1.1072117603344487,
+          -1.7009450886831363,
+          0.1864379868598385,
+          1.314979041736007,
+          0.036484673497881,
+          -1.4391002811376106,
+          1.0206679478017016,
+          -0.4346902187649851,
+          0.09491686612867437,
+          2.4055065807232427,
+          -2.0926378276563358,
+          0.5138138369676571,
+          -0.4727740243977754,
+          -1.0372356408971848,
+          2.400842657527983,
+          -1.5523348198972378,
+          -1.1095931800688739,
+          -1.1897590283361401,
+          0.38874045434154814,
+          -0.44656163644028873,
+          1.8023220456090718,
+          0.3034583483405342,
+          -0.9838918947427767,
+          -0.13833293248519518,
+          -0.8272245766374483,
+          3.0338507683549834,
+          1.83928507552436,
+          -2.1088069611608806,
+          -2.67178697665103,
+          1.1518665228499145,
+          0.9146905757266534,
+          1.1852983023037527,
+          -1.635122207298412,
+          1.799128292968565,
+          -0.09812326107581422,
+          -0.8399793687981884,
+          2.102519044320312,
+          -2.0844457756240304,
+          -0.8712398420489961,
+          0.3819729796855585,
+          -1.012662126684793,
+          -2.267158107383947,
+          -1.6598639473642864,
+          -0.546249517415911,
+          -1.711251924309124,
+          -1.2905391675583615,
+          2.088339564405188,
+          1.1474707089357052,
+          0.7438230104612303,
+          2.718797008189675,
+          -1.1673858939440038,
+          -1.161936872944497,
+          2.298263265450113,
+          -1.3826085599447688,
+          -2.929771105948152,
+          0.09356517496323473,
+          -2.2581663172847777,
+          0.545435201322118,
+          0.4252642688992313,
+          -1.4412859878615691,
+          -0.5364013266315865,
+          -1.1500452396992986,
+          -0.7518457416078654,
+          -1.2920225931317408,
+          -1.6062710252263412,
+          1.3570243678285965,
+          -0.13013346810827342,
+          1.7511086130425055,
+          -1.0978441165715294,
+          -0.7042673564032758,
+          -1.9133719403261202,
+          1.7199237510684329,
+          2.2342455165030444,
+          -0.4889798476600637,
+          0.681928532305548,
+          -0.9081427961038704,
+          -2.033076315585872,
+          -0.3017896409666138,
+          1.3871943323672198,
+          1.0589353647927358,
+          2.309070056833761,
+          -1.3550994362386468,
+          2.0037231229203587,
+          1.0522928398858087,
+          1.1281117691682265,
+          1.1532467633862746,
+          0.846794354380436,
+          0.9753312767656301,
+          2.338779732250179,
+          -2.237943852886461,
+          0.8654059629884279,
+          0.6208704519206475,
+          -2.3481152961460623,
+          -1.5261641606884246,
+          1.1401938568542185,
+          1.697582955935084,
+          0.6283094846492469,
+          -0.9221516745238503,
+          -2.6634176086131083,
+          1.4519124243745072,
+          2.3665830150338674,
+          -1.248047009591584,
+          0.2649049638706615,
+          -2.3497578763616493,
+          -0.22604433241933397,
+          0.5834259523891382,
+          -0.16779297566206416,
+          -0.11757460062755765,
+          1.8627619639072435,
+          2.502731983956328,
+          1.8517846464317078,
+          0.1229564454054778,
+          -0.24077507784370347,
+          0.8253273135598782,
+          -0.2036399610045771,
+          -0.08385041136229532,
+          0.7074858814844024,
+          -0.5834877267374277,
+          1.2265941611074986,
+          -0.48149281972798325,
+          -1.243450259387143,
+          0.5357434642401314,
+          1.4653461165311163,
+          -1.0986528754440954,
+          -1.1562400765076133,
+          0.3512197061195112,
+          -0.8110536194269214,
+          1.2163894610481274,
+          0.5775496733999591,
+          0.09331613314448836,
+          1.8258826070801104,
+          2.493325827071066,
+          -0.3765864006181868,
+          -0.7983111661541478,
+          -0.633397970717479,
+          -1.0287085570937744,
+          -0.43070569320295393,
+          0.6845586995906773,
+          -0.90104499276046,
+          -1.9832528748225355,
+          -1.5124988159229251,
+          2.52823901342036,
+          -0.991900202115599,
+          1.2231270832936616,
+          1.4943033549944231,
+          -2.1932734519207866,
+          0.5326396988976194,
+          -1.4027680775930884,
+          0.3929966515938783,
+          1.2281188951524251,
+          0.6103051098781219,
+          -0.7326263005608323,
+          -1.9383563557213719,
+          1.790351543949647,
+          -0.9622120697651796,
+          2.3611407746844977,
+          -0.28027652751977483,
+          0.5491172346437119,
+          2.1933811910866496,
+          0.3530723770830373,
+          -2.1110751048957064,
+          -1.560333496701424,
+          1.6559550262840401,
+          1.5105592555721614,
+          -1.4555476811344255,
+          0.9235281245731471,
+          -0.5320874794161504,
+          0.5889884190691704,
+          1.170151847904283,
+          0.9088388224810408,
+          -0.9306026603589583,
+          0.057768281561122334,
+          -2.0002404282162853,
+          -0.01912816372732448,
+          -2.6296552966829796,
+          -1.156903088339133,
+          0.09787310652589408,
+          0.3976805976258273,
+          1.9657821858600495,
+          0.8062133929885702,
+          -0.031707089528007694,
+          -1.3461284754810556,
+          1.4939249173252278,
+          -1.1729282817774274,
+          -0.3792291483072939,
+          0.8489965989830872,
+          1.2473200084481415,
+          0.812008246544778,
+          -0.8924309724492647,
+          1.2674346899478788,
+          -1.3883991899774222,
+          -0.5750478513506773,
+          1.3342957881771602,
+          0.5749619672807298,
+          0.342096852199848,
+          -0.8070972336266907,
+          1.4394368832127027,
+          -0.9951498206784337,
+          1.6720172632952388,
+          -1.759550241123365,
+          -3.251748445295843,
+          -1.0395874016716309,
+          -0.2871133492479956,
+          -1.157327481971864,
+          0.020309088555102054,
+          1.9431367790480336,
+          -0.12901714606309808,
+          -0.5942123671358068,
+          -0.031932740582129984,
+          -2.208968904408663,
+          -0.5280093118132965,
+          1.183392469874159,
+          1.7885225372037372,
+          -0.9115705306524722,
+          1.6349625432242327,
+          1.3257424194594896,
+          -0.3238379670097588,
+          0.6489334995207101,
+          1.7555860370517924,
+          -1.2229604509067655,
+          1.1333845455122107,
+          -0.9225826148561582,
+          0.3656216921581165,
+          0.5909119743088971,
+          -1.6429632198108652,
+          -0.9517954801240935,
+          -0.9893383351372239,
+          -0.4676919820753886,
+          1.7805854592957533,
+          0.9711513900906759,
+          0.9120845007720881,
+          2.94760301579273,
+          -0.8176238553910173,
+          2.1129994184045393,
+          -1.643120638021375,
+          1.258718418267197,
+          1.8719387881230218,
+          2.3791845746579483,
+          2.451879950500607,
+          1.6164343727901365,
+          0.09695665716833664,
+          -2.2323442048397855,
+          0.9879642502648243,
+          -0.9628734807504334,
+          -0.9738263675775699,
+          -1.550382457205263,
+          0.6922177145990539,
+          0.05086314375413865,
+          0.20900822372076286,
+          -0.3043909691983638,
+          -1.740969128709185,
+          1.4855984803704902,
+          -3.196264511863515,
+          -1.0553643059659759,
+          -2.237977268060468,
+          0.6070275380224831,
+          0.780666582002775,
+          -0.18737087520487186,
+          0.23795402105192887,
+          0.45540987484434753,
+          -0.5870764028704792,
+          -1.4543783818501659,
+          0.09387454656974288,
+          -0.16633571114113926,
+          3.0952100655836596,
+          -0.6110874879295237,
+          -0.1495135623467277,
+          -1.6556863676638427,
+          -1.5387156771833381,
+          -1.9326740462962524,
+          -0.9634008123849649,
+          0.41871554809756184,
+          0.3544819921825613,
+          1.5419307075561108,
+          1.662035481312738,
+          -0.9072439537888024,
+          0.545008944278488,
+          -1.1109393079973997,
+          0.04502277829326271,
+          -0.3405215438428359,
+          1.338029752950522,
+          -0.045463278713706846,
+          -1.0112777615429969,
+          0.9653886931280738,
+          1.7801913443517885,
+          0.7868379154744268,
+          -1.0873161326736687,
+          2.0759005835141138,
+          2.4596746317013602,
+          1.772201740336538,
+          -0.9484194538008947,
+          -1.9906055101165878,
+          -0.3521876926724999,
+          0.7682076510039381,
+          0.11983328681008287,
+          -1.1106042207345501,
+          -1.3940983145714931,
+          0.39912189613924504,
+          2.284226971553204,
+          -1.0276370651804703,
+          1.2214292810191099,
+          -1.6956142932617275,
+          1.5290311556801552,
+          -2.5800095987309013,
+          0.7096513191591358,
+          -0.555402769643968,
+          -2.045294764078012,
+          -1.6886243181511293,
+          0.417135694439129,
+          -0.7486103600691911,
+          1.9714095757348895,
+          1.974813520491913,
+          -0.4209340905660293,
+          0.6614375456430267,
+          -0.7108610306237519,
+          -0.2816638253540541,
+          1.371412911169134,
+          -1.0299986957502365,
+          2.9003619285548354,
+          -1.8223094789386338,
+          1.0842181617702107,
+          2.584702228038465,
+          1.5446494572952507,
+          -2.1411641347363535,
+          -1.7587819988631377,
+          1.417020252234277,
+          -1.3469825329679912,
+          -0.8726026463461075,
+          -1.2158455852669598,
+          0.5683399386518402,
+          -0.42011010983136815,
+          0.42352159319663096,
+          -0.8089837800578386,
+          0.34411477319800965,
+          0.5922395760102005,
+          -1.184085463965462,
+          -0.7904479189176352,
+          -1.349631419218437,
+          -0.8862685737021492,
+          1.1969717810301965,
+          1.8262742123134175,
+          -1.5263080167787717,
+          0.7235435900182104,
+          -0.7289973041952017,
+          -0.8554001044445853,
+          1.6008710439587406,
+          -1.7420681289963817,
+          -0.6883241214842721,
+          1.1221455508084042,
+          -0.05753947369894872,
+          1.4183120553990454,
+          -1.6511354605838204,
+          2.7500528617846705,
+          0.7714728232851507,
+          -0.7786195704746269,
+          -0.47780030013450686,
+          1.3856692735342016,
+          -1.4296173783771957,
+          1.4064803275185238,
+          -0.017386774551994163,
+          -0.2859901104541629,
+          -1.0565655132509197,
+          0.5919310250513962,
+          1.1670930503570016,
+          -2.0081795898144583,
+          2.300569439569333,
+          0.02486729385358481,
+          -1.1725015433619472,
+          0.4902472586362229,
+          0.44253951103559586,
+          2.316805419692296,
+          0.7338116780592713,
+          1.0529369039312582,
+          1.123455166807169,
+          -2.1409137192896748,
+          -1.411248923544293,
+          -1.372027041586134,
+          0.5333091202660238,
+          0.48851293916235505,
+          2.302195918590875,
+          -0.6993111684551411,
+          2.0187116968089818,
+          -0.2354513941664887,
+          1.853186351311706
          ],
          "y": [
-          -4.606278864279102,
-          -3.0143291636734526,
-          -6.340415034680591,
-          4.018754298512284,
-          4.798515780832417,
-          5.003167500566308,
-          -3.3231684990620938,
-          5.573793725845929,
-          -3.8674767974120132,
-          -3.718736408328025,
-          3.7800769343186467,
-          -4.074847361488876,
-          5.031359484668084,
-          3.5563250986886574,
-          -1.5346640372927842,
-          -3.2991814910064647,
-          4.3835530259042566,
-          1.192211867351984,
-          -1.9958253173378067,
-          0.5197292013577887,
-          -2.3239176112856947,
-          -5.500541595213448,
-          -2.9942521390623815,
-          -0.6449289086463512,
-          0.5596143814919788,
-          5.136923757706104,
-          -3.457201456769286,
-          4.030362607959834,
-          -5.044967994432255,
-          5.408731653981388,
-          -5.872039112748859,
-          -4.312784495839664,
-          -0.16301819423350317,
-          3.565525814558164,
-          5.211200310108519,
-          -3.0854119428567968,
-          4.34929499123658,
-          4.874320990617677,
-          -0.7020874104701949,
-          4.399119199660183,
-          5.446679458099463,
-          5.608498566325497,
-          -3.817389440743482,
-          -6.3573424789422806,
-          3.4720683244815174,
-          -3.287841991516034,
-          3.091110164031569,
-          4.979071695628544,
-          5.133003196912499,
-          4.379186668356113,
-          -4.86778626836963,
-          4.634930776323664,
-          -0.1089141937450041,
-          -4.255563780677708,
-          -3.5166745185240127,
-          -1.1420868667664101,
-          -5.249063619177255,
-          -5.9528197715044335,
-          -6.589425374351098,
-          -5.334426241017802,
-          3.2918241295352533,
-          3.2396298489306323,
-          3.764139832809123,
-          4.833950351763329,
-          -4.046037835009249,
-          -3.996075239580246,
-          4.952603166993848,
-          4.645271161017601,
-          5.53466190382319,
-          4.630303198403161,
-          -3.2635542649530977,
-          5.1934733092564604,
-          4.560890433344043,
-          -4.216554618878586,
-          -3.1788673695318828,
-          0.834391317530346,
-          -1.6877876542880799,
-          -3.4125715630976963,
-          3.928393596357005,
-          -3.482664959812311,
-          -3.561594925043621,
-          -1.8427780133920075,
-          -5.328055107916713,
-          3.840191320599141,
-          4.309907364738987,
-          -2.6191311680592557,
-          -5.260147058557813,
-          5.176007235883233,
-          4.95647647532558,
-          5.280192556925085,
-          3.1285516098653603,
-          -3.7821174534090254,
-          -3.8269896078644634,
-          -2.965293751999571,
-          5.388255521628213,
-          4.447921363126804,
-          -2.1820583662737705,
-          -2.0170745813094806,
-          4.830343358128525,
-          -4.108322952556926,
-          4.897840011969802,
-          5.392191736821391,
-          -5.240729478436474,
-          -1.442102612404792,
-          -3.3081438805528744,
-          4.775198117215511,
-          4.198348728552875,
-          3.4500686682446102,
-          -3.462286972859072,
-          -0.4403049954687692,
-          4.420457465938721,
-          -0.23783392001853276,
-          -3.6373279801654124,
-          4.053931886115762,
-          3.903550930949897,
-          4.786041808609768,
-          -3.2519250550212178,
-          4.079677652131315,
-          -5.242265557266016,
-          4.6163580031322935,
-          4.876265930398225,
-          -5.120764472461283,
-          1.0675293526672691,
-          4.823080020640762,
-          -5.34346085910905,
-          5.358675937488117,
-          4.8141208260340465,
-          4.610135631898537,
-          3.4208441135174708,
-          -5.173489933446055,
-          4.800922138646703,
-          -1.349611678178915,
-          -4.187098360594096,
-          -4.878050600086273,
-          3.100743048921065,
-          1.5436076348501895,
-          -4.383375798495829,
-          5.686193133299879,
-          -3.5262396699445464,
-          5.281740027934761,
-          4.65779972751007,
-          6.106121400969115,
-          3.768841261228079,
-          4.13802564528679,
-          -4.982652339221539,
-          5.21814894893666,
-          5.789433311132563,
-          5.185784325484646,
-          -4.430104139659129,
-          -3.7421643665735695,
-          -4.8652328329137395,
-          -3.063054921965104,
-          -3.5729219441897717,
-          4.836919819726238,
-          5.185948783329143,
-          -1.0746263834693908,
-          4.678193266618513,
-          3.2226340222022762,
-          -4.949332543473734,
-          -3.791680699815115,
-          5.317895486255747,
-          -5.703189422893782,
-          3.2977931840610646,
-          -1.1643103873497958,
-          -3.325801761631236,
-          5.7147806314854375,
-          -3.9784983829348683,
-          5.116911574365526,
-          4.874497171407374,
-          -2.608362653432093,
-          4.841522290830144,
-          -3.693594159991805,
-          2.789427297427023,
-          5.011601686820303,
-          -4.588890057754181,
-          -4.245847013377438,
-          -5.834359873153957,
-          -4.0614426894387465,
-          4.394157416733661,
-          4.7936673676325965,
-          4.3577969650655355,
-          4.014118704618964,
-          5.004733977728252,
-          4.6394387566624316,
-          -5.160930605567538,
-          -5.07959574115605,
-          -5.963771575725514,
-          -4.7286988946683834,
-          -5.039921525947653,
-          0.6742680776177022,
-          4.517413867030877,
-          4.5556304136831605,
-          4.357237333051164,
-          -3.7119562465963636,
-          3.4127843240563056,
-          4.507374067487552,
-          -4.9352538227912355,
-          4.335321439456104,
-          3.832035247026088,
-          -4.780721563653187,
-          3.510083509359034,
-          4.09315678663023,
-          3.996619582947922,
-          -4.580223817028904,
-          -4.115577030589142,
-          -4.6643276307107095,
-          -3.011617819841408,
-          0.5434753540881704,
-          0.4484361231294257,
-          -3.36688250032704,
-          3.9195071346873105,
-          3.7261287139541346,
-          4.2052320189169174,
-          -3.1019955949096434,
-          5.43172837326309,
-          -5.200595941073674,
-          -0.6181727995229146,
-          5.106380716342931,
-          4.663271502977915,
-          4.166200891990549,
-          5.718850075304576,
-          -3.992969312868661,
-          -2.476333831840871,
-          -4.211627742236866,
-          5.185001541315784,
-          0.9550696478343331,
-          5.2745389791469135,
-          4.8736270572832945,
-          -1.5678689395185081,
-          5.796526696183638,
-          4.579706244760981,
-          3.5319134403885406,
-          5.204335001081506,
-          4.381779436263033,
-          -3.7063116464930697,
-          3.427420014264465,
-          -4.129694792077233,
-          5.378475900174334,
-          -3.413345845650619,
-          3.9235056605145475,
-          -3.9819385292147844,
-          4.59628180349028,
-          -2.134797573783708,
-          3.7746675471619167,
-          3.6811201017747717,
-          0.3603480016153576,
-          4.237464663146765,
-          3.5024037837609723,
-          5.622409783466116,
-          -1.352740510314596,
-          4.215344821479264,
-          4.911421119470082,
-          -0.18082847509847122,
-          3.404577921652871,
-          4.205354434353466,
-          -2.588358710639946,
-          3.778084197359985,
-          -5.748068742462636,
-          4.853965010255283,
-          -3.7892519534914886,
-          2.0385329132209655,
-          -4.9908502851110095,
-          5.161714031307291,
-          3.677701629222899,
-          -2.6361984390913054,
-          5.3184141640642135,
-          5.74741248542181,
-          -0.7521877716522998,
-          3.5844532054034364,
-          -4.803991769186318,
-          -3.590868772917297,
-          2.9906586226898906,
-          3.7220869618062253,
-          4.50350990032377,
-          5.495538078174632,
-          -3.9560027037213548,
-          4.705723168936539,
-          -5.125858204842021,
-          4.955889787786645,
-          -1.4541000338580128,
-          -4.708587624819028,
-          -4.055425358563793,
-          5.466199045750406,
-          -4.735466822010715,
-          -3.7095816936893113,
-          5.766047536658402,
-          -5.470378701884432,
-          3.534354740769333,
-          1.7820027480791167,
-          -3.627981614743658,
-          2.0690501266706383,
-          -0.8470050707122354,
-          -4.303815314202468,
-          -4.910680379861466,
-          -5.431694926751836,
-          4.591619187297774,
-          5.494036447544028,
-          4.512360903394277,
-          -4.106132338951671,
-          3.7460945408474333,
-          -2.853025222464643,
-          0.8529915503243236,
-          4.156343088780073,
-          -3.4547221898763416,
-          -1.4998790302224725,
-          0.10265655578404731,
-          -3.664886381212983,
-          -0.9529926604194098,
-          -1.4596971088385913,
-          -3.8779982292292274,
-          4.889836028570571,
-          -5.084989882906104,
-          4.507450862692811,
-          4.146891416304157,
-          4.456705890853469,
-          4.485140123762888,
-          -2.108677225918142,
-          4.165853706620112,
-          4.45290288986722,
-          5.079445436678857,
-          4.491999210896369,
-          -5.283801569797546,
-          -3.376692324992672,
-          4.265617331059168,
-          4.96778115152068,
-          -4.733638596994254,
-          3.757794331849564,
-          3.573490573679477,
-          3.201350542711353,
-          4.139446940275391,
-          -4.2180362887538045,
-          3.923065597705041,
-          4.619326370318341
+          1.1244346039283266,
+          0.5659870045806653,
+          -1.3982928078708763,
+          -0.43453739031436533,
+          -0.06968771056712803,
+          -0.27287690845839385,
+          0.31669114797300607,
+          -2.310489663428637,
+          -1.8311317906529374,
+          2.081892249210732,
+          1.0107508775121388,
+          1.5475595491814356,
+          -0.941211834895478,
+          -2.094908608267133,
+          -1.477950151413617,
+          -0.3717085323635723,
+          0.7431764326791132,
+          2.5878463704692387,
+          0.19041665631120216,
+          -1.4210162455772883,
+          -0.07255450474695113,
+          0.3965656671209583,
+          -0.9062659113525839,
+          -0.43834826156997186,
+          1.3003559132673626,
+          -0.8266894118714951,
+          1.4739622110778243,
+          0.6337537514598279,
+          1.6964294560586801,
+          -0.619603793939663,
+          1.4153169601915714,
+          0.14940600450840294,
+          -1.0114657063042516,
+          -1.157368601757503,
+          1.7703442847223203,
+          0.0946942276993615,
+          1.8931942656032705,
+          0.2051267154308041,
+          1.812043645419575,
+          0.14479023644131792,
+          0.14338975614745933,
+          -0.29554579775073264,
+          1.679700157362058,
+          -0.9465395177541397,
+          -1.7283634275731368,
+          0.5991356913852053,
+          -2.202579182890468,
+          0.2959501235584991,
+          2.4878080533535862,
+          -0.7911661281372593,
+          1.844789264428028,
+          -0.2347928669488844,
+          -1.9955394543418497,
+          -0.5083147895280891,
+          -0.7462417930531418,
+          0.08497159670209377,
+          -0.732515100931549,
+          1.2397750694827194,
+          2.052271334806801,
+          0.0692532921369945,
+          -2.1578246415616866,
+          -1.3190198731155534,
+          0.0231979278959085,
+          0.272639268402728,
+          0.5729485765323195,
+          -0.3881747827513114,
+          1.5497709626485283,
+          0.1874733921996868,
+          0.49512196628942035,
+          0.8255972013478174,
+          -0.2906053192147259,
+          0.5808701568028052,
+          0.562102521473999,
+          0.1417197026583069,
+          1.0885462662811052,
+          -0.025963725288774213,
+          1.5740713789062928,
+          0.7668338029690545,
+          0.5232630546124702,
+          -0.7449432224693017,
+          -2.104663920118397,
+          -1.0524875362289268,
+          1.9419329246558523,
+          -0.08221922457692442,
+          -2.5680408833249206,
+          -0.46211361391360467,
+          -0.2290410643325121,
+          -0.586367729034426,
+          -0.38012968237012074,
+          -0.04934691969419762,
+          -0.2607596995323461,
+          1.1099036389652477,
+          -1.049147634389612,
+          0.2497215691997699,
+          -2.6412417849196075,
+          -0.3325841121831408,
+          -1.1067396352172247,
+          -1.1110907218200248,
+          -0.2286111048525201,
+          0.1727285506988235,
+          0.32033552425945516,
+          0.5705940573925085,
+          -1.7113800036537496,
+          0.42319764400916765,
+          -1.4891227583511057,
+          -0.2127162625932905,
+          1.1300051258048143,
+          0.7381675672124801,
+          -1.0919353704457804,
+          -0.6547836717332702,
+          -1.191710780527071,
+          0.5134773760749382,
+          -1.235001956709909,
+          0.584493407851016,
+          1.8043139594424358,
+          0.2976413732281114,
+          2.4391086936361344,
+          0.6700750619260967,
+          2.8585829921953323,
+          0.3020911770794517,
+          -2.4223735057169273,
+          1.3660051842335077,
+          -1.1148832027934505,
+          -0.2958880075785944,
+          -0.2323501060512977,
+          -0.6058894768455145,
+          2.530839059405373,
+          0.7525481638390503,
+          2.185295417852593,
+          0.15802598165347562,
+          0.7075370212079302,
+          0.3762753958995106,
+          2.682595788124725,
+          -0.9537366339727888,
+          0.09653603081085749,
+          1.174611062816274,
+          -1.8791396213080627,
+          -0.27003102075232976,
+          -1.8231978167402498,
+          -1.0267567003647378,
+          1.8715959625197947,
+          0.6180349441047609,
+          -0.17969154177955574,
+          -1.506431992093872,
+          0.8433292393976695,
+          0.8073689339822933,
+          1.4932466671836397,
+          0.5780280761821301,
+          -0.3314051210556895,
+          -1.8986587055745878,
+          1.1299630664300435,
+          0.8621901023210786,
+          -1.6299293406376436,
+          -0.5716924896935892,
+          0.4639686329809245,
+          2.018517735982387,
+          -0.5581241890092885,
+          0.2441914695809723,
+          2.5322996634957478,
+          0.6465123085587612,
+          0.7591218951378602,
+          1.683329895380279,
+          0.6798490733206843,
+          0.4756917233248554,
+          0.21288920795391877,
+          -1.3639863980045277,
+          0.7399485495817392,
+          -0.7206201075109672,
+          1.3106129456954694,
+          0.2305559467686885,
+          0.3600174367151173,
+          -0.38077258095189426,
+          0.016528730814668446,
+          -0.7198568620671436,
+          -0.184714776125272,
+          0.7684715864715246,
+          0.5913590570797662,
+          -0.18240870421586197,
+          0.7722198739465904,
+          0.08451815968253436,
+          -0.3331463274853526,
+          0.030128404659796593,
+          0.8648367540481271,
+          0.4041721570594245,
+          -0.7642812913525984,
+          1.6553039081331848,
+          -0.7322201898816262,
+          0.8502382774038602,
+          -0.1673863046597939,
+          0.8060331406853538,
+          0.9284329936490593,
+          -0.3217398857941901,
+          0.9193526502839974,
+          0.6062795990182475,
+          0.8185627207078238,
+          -0.1052707958232786,
+          0.19510395587903406,
+          -0.9680313841709814,
+          0.36663494028145427,
+          1.2955886609060323,
+          0.3927867165011189,
+          0.14257086070021643,
+          0.9931865203045991,
+          -0.5443993645667033,
+          0.7610562548450145,
+          0.8609537283843147,
+          0.7721790190347898,
+          -0.5386312098688208,
+          0.4184824957059039,
+          -0.43358591024360044,
+          0.8903987183102161,
+          -1.2217380400733593,
+          1.802582563123153,
+          -0.5431708926974653,
+          0.5507026192465168,
+          0.34112280279985835,
+          1.1167294027060959,
+          1.0930491382322665,
+          -0.0136301376068668,
+          -0.7036302240595306,
+          -0.15966512065740449,
+          -1.9300273460603714,
+          1.31017709805822,
+          0.4726058546654327,
+          -0.635377853490602,
+          -0.7009937667908922,
+          -0.7446719069567346,
+          0.30208453549309777,
+          -0.4818700037351255,
+          0.1336211141066474,
+          -0.01986372222383821,
+          -0.31021402687948124,
+          -0.7101330944990494,
+          -0.3154301062021691,
+          -1.1045528311579556,
+          0.45573334661061526,
+          1.322891402878742,
+          0.4520291776910211,
+          -0.6762690187649985,
+          1.4084069912234265,
+          0.9294798802744243,
+          -0.1130253813040571,
+          -1.6343486298411716,
+          -0.1674982487771352,
+          0.05472387097728134,
+          2.276965533627537,
+          0.6120933238920192,
+          0.9483456181599565,
+          -1.123774473785783,
+          -0.9076547992529115,
+          0.1385173356091842,
+          -1.5173230753817823,
+          -0.6547622851922545,
+          0.20962297254718798,
+          -0.12606894492735057,
+          -0.19186270034134809,
+          0.13073382714423015,
+          0.8380697130872953,
+          0.09464612254566843,
+          0.4814543508325347,
+          1.4403726916664246,
+          1.1429940728042407,
+          0.9862689481629806,
+          0.4952629910493708,
+          0.47338005525105586,
+          -0.2653342765825527,
+          1.912206453291557,
+          -1.141484601246961,
+          -1.7455126976231823,
+          1.762359718204947,
+          -0.03302339651833885,
+          0.5289190149263683,
+          2.215764098850683,
+          -1.765232186328267,
+          1.2864550435869695,
+          0.7654001530169989,
+          1.9544663440545302,
+          1.2374459339031534,
+          -2.272278561989228,
+          1.231294128232282,
+          0.2370659288312681,
+          -1.0511081399131708,
+          -1.2357059770972019,
+          -0.2681377641222112,
+          -2.1646239447345383,
+          -1.5389701770581699,
+          -0.31924620788460656,
+          1.6779833937319468,
+          -2.2223894710914784,
+          -1.0150226650316398,
+          -1.3154811738852368,
+          -0.48431788490665334,
+          1.0645039567772328,
+          0.7415525579479559,
+          -1.3387543559393211,
+          -1.3629810063469021,
+          -0.5218498212935381,
+          -2.0705670935561122,
+          2.0198355318520673,
+          0.6342638397374346,
+          1.4566454123791333,
+          -1.8050012927544017,
+          1.7747686544006553,
+          -0.38426655816396255,
+          -0.16520828999383164,
+          1.5815792899047372,
+          1.2432616243595893,
+          -0.9594779412269179,
+          -0.597023190870324,
+          0.36082097421605236,
+          1.3731197382952398,
+          -0.9519687630387903,
+          0.7213743367349714,
+          1.6430496416495186,
+          1.8049734658273124,
+          1.1071141877099882,
+          -0.9467819098621528,
+          -0.2486530724523501,
+          -1.1752914874359504,
+          1.0876229088517104,
+          -0.977922358097271,
+          -1.9517176678196815,
+          0.7550183654199344,
+          1.1701098420343488,
+          -3.8272289421580385,
+          -0.9176220885363666,
+          -1.036917542706139,
+          1.3717100931778488,
+          1.4850653293251614,
+          -1.5832056910980712,
+          -2.2503373968349183,
+          -0.19057017623950726,
+          1.0543222621119588,
+          -0.5926120540209836,
+          0.433473142382581,
+          1.1443593516685366,
+          0.6084479055305819,
+          -0.7600323871889696,
+          0.36506982502544916,
+          -1.4088726036019033,
+          -0.10730458491233506,
+          1.1433761493768875,
+          -0.9027495535082787,
+          -1.7594597633393754,
+          -1.712751573782771,
+          -1.4495273786262943,
+          0.1158853516505784,
+          -0.09225433625303728,
+          0.8830711289139869,
+          0.2331980817757769,
+          -1.8675119838846042,
+          -1.1840716070746793,
+          -0.21080799887402019,
+          1.1646108726600233,
+          0.8108237241721848,
+          2.3757208624871198,
+          -0.3163393835614397,
+          -1.602915935183668,
+          -1.526789629630624,
+          1.275122649917309,
+          -1.4841519157769858,
+          1.0443609827093487,
+          1.0869020383645236,
+          -0.3919290411542804,
+          2.05290914126289,
+          -1.7835124103605549,
+          -0.7517211590358406,
+          -1.6241389267229125,
+          2.129387386980308,
+          1.6214233275053398,
+          -0.15012659052295624,
+          1.1492467082654434,
+          -2.0427491476419064,
+          -0.3384700492438659,
+          0.3420949264716878,
+          2.1735409613568275,
+          2.241196176129193,
+          0.7360666678148092,
+          -2.031180649924606,
+          -0.2611118419401908,
+          0.16219715153535239,
+          -0.9182971052277901,
+          -0.7462087675921653,
+          3.513000292627285,
+          2.061184939220221,
+          1.1293907422536202,
+          -0.987334759322043,
+          -0.23132982880225741,
+          1.58298724167931,
+          -0.7234987179648003,
+          1.4025592543365901,
+          -0.621442048612933,
+          -0.4073564220894655,
+          0.81851560643189,
+          -1.9833155616050153,
+          1.351348257930398,
+          -1.8893172222942163,
+          1.946936634638961,
+          1.5108834907246844,
+          -1.576374025962285,
+          0.32973159704710986,
+          -1.006330931488905,
+          -0.575432496424214,
+          -0.46481981910080405,
+          -0.8569730257423795,
+          -1.9567620319988226,
+          0.4251131693837947,
+          0.6650135347918598,
+          1.2293569507034448,
+          -2.686805215145331,
+          -1.5255686115007348,
+          0.566819770561441,
+          2.541214954746137,
+          -0.8364523344079103,
+          0.5289585504743891,
+          -2.5999941462451814,
+          0.06240019890540613,
+          0.05290757795274658,
+          2.1547015833709784,
+          -0.812212532828222,
+          -0.13875531814506573,
+          1.2613153293946349,
+          -0.18243713433677322,
+          1.1162965467912735,
+          -0.850279033552268,
+          1.148711357138806,
+          1.504197339527735,
+          0.5572033955165099,
+          -0.4826005771854704,
+          1.4201665298650934,
+          -1.7801499364856281,
+          0.1560574042938931,
+          -1.5667882995791484,
+          0.6875147105192712,
+          -0.3472713089527448,
+          -0.24673948466813367,
+          1.4441251830068165,
+          -0.12329422845818715,
+          1.790696922487599,
+          -1.708240897710009,
+          0.5876650313638347,
+          -1.4341548420950159,
+          0.9599217898410256,
+          1.1179028510467337,
+          -1.286480659294476,
+          2.0325361070506296,
+          -1.0246746114328211,
+          -1.0157307178915174,
+          1.5389872553840533,
+          -1.955060895135505,
+          -1.198499535442399,
+          -2.2805839960454346,
+          -0.4637026324381857,
+          0.7643762706630479,
+          -0.9522211549958657,
+          -1.117403638750042,
+          -0.67096860993253,
+          0.5085560086402701,
+          -1.6819545783709344,
+          1.1797651686467632,
+          -0.023106925587515925,
+          1.6234657224270135,
+          -1.3794664966113892,
+          -1.6934653382668519,
+          -0.9641772253094548,
+          0.3789452632818805,
+          -0.8131937463625779,
+          1.661416976843623,
+          -0.5778432578756001,
+          -0.8774594632648225,
+          0.5799897257353754,
+          0.7375186141793681,
+          -1.6020173720445166,
+          -0.0038411297176156396,
+          1.753028806819327,
+          1.0729622795950917,
+          1.489705413345783,
+          -0.3289639506757947,
+          0.8302819887578305,
+          -1.2260965875909338,
+          -1.3727606059725406,
+          -1.0363567570585497,
+          1.7775282719129528,
+          -0.21010816988667066,
+          -1.6139499171573775,
+          0.13453448606112817,
+          -2.526997147832329,
+          0.8722961616641295,
+          -2.0286795061770926,
+          -0.6887985159739147,
+          -0.13270272646593714,
+          -0.9366573379323319,
+          0.6268541632339629,
+          0.9888961147917686,
+          -1.7383564895799353,
+          2.0889362570525916,
+          1.0406432967274442,
+          0.864502613969944,
+          -2.4747019481795247,
+          -1.5507372287620884,
+          0.7834395138340196,
+          -0.045097840387078744,
+          -2.0829915464712068,
+          0.24726052917533126,
+          0.8342694038497007,
+          -1.3295010106918692,
+          1.5741983892406828,
+          1.1558197319529366,
+          0.5252755906687562,
+          -1.5116214863828237,
+          -2.2469464795031038,
+          -1.1046393817924105,
+          -2.283456467382088,
+          -0.15213241710419556,
+          -0.3160787112095607,
+          1.2574412373818076,
+          2.323598761530204,
+          -1.1114678652741878,
+          0.3051135134328,
+          -0.9638906193576247,
+          0.7789143546927486,
+          -0.2795712786757524,
+          1.4189689716473723,
+          2.9039159607151546,
+          -1.580107649721948,
+          -1.6988065724571573,
+          -1.0884578365662796,
+          1.0271156430915511,
+          1.7182779073759997,
+          -2.191849351599899,
+          -2.713698383456401,
+          1.511286995130526,
+          1.2450857675212579,
+          -0.980001416233218,
+          1.3156891564795954,
+          -2.1122472751348735,
+          -2.207631608401694,
+          0.46840880417410435,
+          -0.6731653569037286,
+          0.34159830652868234,
+          2.4618136411239675,
+          -1.6253484798023725,
+          0.06173667722806657,
+          -0.28160153845348296,
+          1.4011190873447887,
+          0.12215427310368965,
+          0.452675862294215,
+          -0.6242557521627182,
+          1.1149665544271197,
+          -0.931938333830333,
+          -0.20563549927233796,
+          2.3011505790747484,
+          1.1444149659337624,
+          -0.07691205513411387,
+          -1.330874033118095,
+          1.0992860499446828,
+          1.7192801480375322,
+          -0.691554517369178,
+          -2.2615678644707358,
+          -1.0088010399197156,
+          -1.973367352462951,
+          -0.11999627657258577,
+          0.28290281184366334,
+          0.9465322014352323,
+          -1.3801513269473589,
+          0.505586043661727,
+          -0.27220684455869504,
+          0.7394861361380733,
+          -1.6812044143572118,
+          -0.05813376734033508,
+          1.4795947346819336,
+          0.17959375463076716,
+          -0.5959105467523933,
+          0.25211308198772925,
+          0.8385359206649612,
+          -0.33870433720453036,
+          1.5367314726740555,
+          -2.505893268081851,
+          -1.453990771835135,
+          -0.0841235262954033,
+          1.341574878369653,
+          1.0206114704542126,
+          0.09664201399816601,
+          -0.924010184933582,
+          -0.20757286205217299,
+          1.9181513106639798,
+          -1.379839389606493,
+          -0.8337181403493237,
+          0.12893494427019045,
+          -0.15121474541931948,
+          0.9208753233924515,
+          -1.3407107960163906,
+          0.07869877680315479,
+          -1.0526695384949831,
+          -1.4699672836277835,
+          -1.801353735868721,
+          -0.25172412236390623,
+          0.8029226134994019,
+          -0.03478659342665916,
+          -0.8930194818477614,
+          0.12017822632500239,
+          -2.219439277820952,
+          0.24115337858435154,
+          -0.3163511614974212,
+          0.17389088030587468,
+          -0.42209114130516306,
+          1.8249673716282078,
+          -0.16196382792278158,
+          0.6652413231927579,
+          -1.6645713949669734,
+          -1.1791336683306968,
+          2.0521212328940592,
+          -1.4330475267529368,
+          2.025189074219879,
+          -0.24461116385213966,
+          1.9625566332787117,
+          -0.26959881862698837,
+          1.0321709868332303,
+          1.1380871884687438,
+          -1.557054732661678,
+          0.6283520328259624,
+          2.0927403027855505,
+          -0.017233570221686936,
+          -1.281597097054108,
+          -0.6931971383556629,
+          1.3705534641410488,
+          0.9478816112777639,
+          0.263587794521715,
+          -0.6854969087417948,
+          -0.6101121200842418,
+          2.644439050177372,
+          -1.323028222903994,
+          0.6943317761815707,
+          -0.6631285343629901,
+          -1.0397321833523017,
+          -1.294398809738555,
+          -1.6333741864274685,
+          1.0433071658492232,
+          -1.1445621017661434,
+          1.5297820833788023,
+          -0.43546672802993414,
+          1.5180805514459819,
+          -0.16083437862678368,
+          1.2965019485218046,
+          -3.0164006407059047,
+          1.3952622930260066,
+          1.8032319567299568,
+          0.12395711867134859,
+          -1.4155377036183843,
+          1.7562387231167995,
+          2.1344188639514394,
+          0.20768426272812274,
+          -0.28117142194717903,
+          -3.217980086890483,
+          1.806118658156625,
+          0.7154476667449676,
+          -1.8970169723818207,
+          -0.746564710377243,
+          0.32524264604967457,
+          2.3632920624726905,
+          0.342203189203689,
+          1.418482203748114,
+          -1.4875647603287698,
+          1.7490358037382412,
+          -2.081890562445814,
+          -0.59519204975336
          ],
          "z": [
-          -0.20871730012555922,
-          -2.6118586083711075,
-          -2.8549418589368574,
-          -2.7415276103043538,
-          -1.2933491481208912,
-          -1.387595895875004,
-          -3.422461453940292,
-          -2.1014921551329815,
-          -2.096499468274777,
-          -3.612107993492225,
-          3.252872917731815,
-          -3.7962415897196795,
-          -2.6580434796617087,
-          3.457829921651274,
-          -0.7183847797362831,
-          -2.655898548768287,
-          -4.137252099326568,
-          -0.5221457559616345,
-          0.4247929708149674,
-          1.5745940864538337,
-          -2.5961360368482653,
-          -3.338387034935504,
-          -3.465891584795692,
-          -1.8816354359477208,
-          -0.2680568680190939,
-          -4.0444597851374615,
-          -3.357775265345977,
-          -3.4926954930799194,
-          -3.424657761185992,
-          -4.423562900757828,
-          -3.090611697897246,
-          -3.469849338480421,
-          -3.6581270607514123,
-          2.935820656493908,
-          0.5819111332760283,
-          -4.00781250481017,
-          -2.3379514150084315,
-          -1.7925954480823179,
-          0.04559678335904127,
-          -2.856842515312452,
-          -2.177869678658505,
-          -3.818892443059658,
-          -3.12690912301358,
-          -3.1368669708540446,
-          2.9398576407663626,
-          -1.6107463401860045,
-          2.8926358366347746,
-          -3.7442742128777575,
-          -3.891141988362917,
-          -2.810185788480683,
-          -3.2898512229303085,
-          -2.9349780015772455,
-          0.23518312850966958,
-          -3.2541294404004817,
-          -3.1672667573630213,
-          -0.5749839939727838,
-          -2.8821162100563407,
-          -2.9626882589458114,
-          -0.5574321640619313,
-          -4.364635737074935,
-          2.2921785063525335,
-          3.4884332452008415,
-          -2.8337171789115807,
-          1.4398777008773014,
-          -3.0162166015448673,
-          -3.275935855979796,
-          -2.3777872749932243,
-          -2.073485016597628,
-          -2.925868215489557,
-          -4.251399948542982,
-          -3.810316449858085,
-          -3.7510609017782235,
-          -3.5964189134468625,
-          -3.1403105817216845,
-          -2.1322323324899584,
-          0.23496996413770388,
-          -2.9693966725674508,
-          -2.9157211394245097,
-          -3.235019049693169,
-          -3.373762927974341,
-          -0.612433061039657,
-          -0.7108225008680564,
-          -2.9391339688106997,
-          2.5255339657933016,
-          1.2395178557933133,
-          -0.7473462468809764,
-          -2.9261619215352055,
-          -3.708177297705509,
-          -3.1648428731967013,
-          -4.51588624229433,
-          2.577054616317484,
-          -3.3391795050850988,
-          -1.295123148720604,
-          -2.274196481573655,
-          -2.270208467852562,
-          -4.650823258288178,
-          -4.357447866614571,
-          -3.062591671446982,
-          -2.891868260770883,
-          -3.7256896979774496,
-          -3.5903195526597704,
-          -3.2208121721153113,
-          -3.6220850920096472,
-          -1.51795635080375,
-          -3.4939984493655505,
-          -0.17253980306181216,
-          -2.829844893199126,
-          -4.691197690950713,
-          -3.4372573325356117,
-          0.9450135713611882,
-          -3.7819607123358816,
-          2.578119904694776,
-          -1.973982823235631,
-          1.0498736387962164,
-          -2.337722069739644,
-          -2.8740424190431995,
-          -3.7005074881484408,
-          2.253423608216121,
-          -2.670621340280536,
-          -3.531467494156161,
-          -4.485802608617681,
-          -2.950748687721044,
-          3.2548127461080476,
-          -3.301896519262871,
-          -3.454170654129303,
-          -3.3376827357212417,
-          -2.76998379587538,
-          -3.893560558683177,
-          2.9962982992092546,
-          -2.971985593918995,
-          -3.8614178663931633,
-          0.25072949778645026,
-          -2.2309482815272577,
-          -2.598813519906249,
-          3.119727988727712,
-          -0.053292504576016086,
-          -2.2015679541509012,
-          -3.710078447594871,
-          -2.2949507198928663,
-          -1.6034692706853375,
-          -2.9449951638255056,
-          -3.3675000602299128,
-          -3.4661563417612067,
-          -4.063421945524569,
-          -1.1921895820245667,
-          -2.390678338419262,
-          -3.593838309328381,
-          -3.14173589268775,
-          -2.252595116410318,
-          -2.5704099837931476,
-          -3.790280125720246,
-          -2.5381387085816725,
-          -2.4323699324550727,
-          -3.131261390303713,
-          -4.222601566579285,
-          -4.469758252960945,
-          -3.5738954311335056,
-          2.824611255800677,
-          -2.4945739188207425,
-          -3.0789597564350255,
-          -2.6240824766098867,
-          -3.740320143452775,
-          3.7192010153942334,
-          -0.3718302409503491,
-          -1.9264452978059277,
-          -2.0828568894848303,
-          -3.039395918127678,
-          -2.0540796107863746,
-          -2.6659530665488704,
-          -1.6378532834904784,
-          -3.0048644886908535,
-          -0.39529855314827556,
-          3.07096725773921,
-          -1.6035016975557266,
-          -2.599901981864113,
-          -2.99455949157743,
-          -3.1640037357525506,
-          -2.8423339435191273,
-          -3.709346165164484,
-          -4.331954942572613,
-          -3.0124918593607233,
-          2.11168553089548,
-          -3.91642438316848,
-          -2.9618324777117144,
-          -2.5898237329816602,
-          -0.5939313647581919,
-          -3.412124030147645,
-          -3.352784523900621,
-          -1.9864656446487554,
-          -2.223325032743028,
-          -2.2544759140229265,
-          -1.9061015986825653,
-          -3.891187868540786,
-          -3.540218642767124,
-          2.712744119432171,
-          -1.4674023425789327,
-          -1.647160075341089,
-          -3.364796519629021,
-          -3.898453531529812,
-          -2.957436824200318,
-          3.158058490677548,
-          2.3321742146449704,
-          -2.9302304690936074,
-          -3.082137654765432,
-          -2.842754726467426,
-          -2.427296513053351,
-          -2.284879680624381,
-          1.2154963978186073,
-          1.7759080645676737,
-          1.2857275364634733,
-          -2.607087759637483,
-          -3.7197172259005438,
-          -3.3722302443218726,
-          -2.527147948457434,
-          -1.8290427731703147,
-          -3.60476795994504,
-          -0.07903392762532513,
-          -2.1184090085910317,
-          -3.3460847728709955,
-          -4.319005787567899,
-          -3.771146535708209,
-          0.6216514965384907,
-          -2.4153390118083498,
-          -3.1385994655036287,
-          -2.8069535567732724,
-          3.4866653406400947,
-          -4.425571039792513,
-          -4.666798092625288,
-          0.6227162106340067,
-          -3.4012179121842268,
-          -2.7866751035483883,
-          1.7885954475282535,
-          -2.2258171701089884,
-          -3.5613664384548978,
-          -2.76771988120093,
-          -3.516830901352581,
-          -3.6586252454089765,
-          -2.4178082997619024,
-          -2.3283205183563567,
-          -2.408800225326305,
-          -2.1152595405828367,
-          -3.5167956109218483,
-          -2.2275674536383034,
-          -3.1192773198330306,
-          -2.4569028133850614,
-          1.1345159875649187,
-          -2.7829811597470075,
-          1.9694393141291502,
-          -4.162453370628693,
-          -1.987743518194238,
-          -2.3800497276287085,
-          -2.304461433421835,
-          -5.1852200163835125,
-          2.5764950731151406,
-          -3.5574582946123616,
-          -4.435647546472207,
-          1.781185600769299,
-          -1.512008459995074,
-          -2.50293856615815,
-          -2.9050084645300043,
-          4.00446044348164,
-          -2.40667884109254,
-          -3.872239038826736,
-          -2.550291815064436,
-          -0.96365850219448,
-          -3.9145894587516534,
-          -3.661309104473002,
-          -0.7706431607179544,
-          -1.5918204249335495,
-          -2.9904798748618293,
-          -0.8421848985149308,
-          2.6684618903286124,
-          -3.7236870169326375,
-          -3.321549118543054,
-          -4.184192704233265,
-          -2.7106181220683037,
-          -3.7348582930804817,
-          -2.972353701591255,
-          -3.9045322836121232,
-          -0.5630406913123385,
-          -3.177542499712991,
-          -1.8713958749266437,
-          -2.832409642018617,
-          -2.912157914238587,
-          -2.7786575655337513,
-          -4.782240571012272,
-          -2.9388353318286717,
-          -2.1693290678423645,
-          2.905037375224696,
-          -2.525079311471943,
-          3.621599076377484,
-          -0.46807084648692476,
-          -2.857624306557793,
-          -3.6990609281187594,
-          -3.625684306381489,
-          -3.36123246612046,
-          -2.614505894585962,
-          0.9976721377143696,
-          -2.2230012391483673,
-          2.411831990323296,
-          -2.3570008470343007,
-          0.11852469785082631,
-          -2.683409175741129,
-          -2.126304605793064,
-          -1.0430101717807818,
-          -0.14228898124188405,
-          -2.974234160948007,
-          2.9882876458122682,
-          -0.007951759263007174,
-          -3.2242509004956643,
-          -3.9307493468375836,
-          -3.5491997783313214,
-          -2.0304416361250786,
-          -2.2551459464330375,
-          -3.789734719867026,
-          0.5425408946202945,
-          0.4049686672083048,
-          -2.615720309869122,
-          -2.4528079281478266,
-          -3.281923954110942,
-          -3.7280993452046713,
-          -3.2091447282824226,
-          -1.905356405507268,
-          -3.257224649527418,
-          -4.1256776818889715,
-          -2.813150217799609,
-          -2.784579878021891,
-          -4.035585002510827,
-          2.8298697506361585,
-          -3.7185232964798924,
-          -2.9480867369346857,
-          2.7944797546887616,
-          -4.684112164989379
+          0.20321874254843386,
+          0.7629132778141549,
+          0.04185909143785895,
+          1.0770372670238582,
+          0.5643411960873621,
+          1.134695254729971,
+          2.091095760802868,
+          -2.417297163897162,
+          -1.2463341446931135,
+          -0.8267707368827174,
+          0.8161825582104137,
+          1.7764277888859605,
+          1.7024591979890995,
+          0.9193568828563092,
+          -1.5371996254047653,
+          -1.60499764697042,
+          -1.7432871494884197,
+          0.7280317960881338,
+          -1.4917257545057367,
+          -0.7897256791413938,
+          1.5198732061412876,
+          0.09915170927817232,
+          1.4325502815172124,
+          0.42609140362774717,
+          0.6631275914056683,
+          0.5827285476875153,
+          1.8055648936480504,
+          -0.1823039641479603,
+          -0.2798933306645652,
+          -0.6788342282708227,
+          1.1834420360448346,
+          0.9850438776136861,
+          -2.9996099432719396,
+          0.2758144313384164,
+          1.3754253717572582,
+          0.24612032874176812,
+          0.1593271760155275,
+          1.446662320476887,
+          1.5578236868255162,
+          1.1925997701894495,
+          -1.6633708517906016,
+          1.0445157719672922,
+          0.36978338446358044,
+          0.029564613123063806,
+          1.8749573529641623,
+          -0.6891081851724294,
+          0.8427310039176792,
+          0.9398912154790183,
+          -0.6263617376499833,
+          0.33080171086673144,
+          0.7912357636968572,
+          -0.4348765512588955,
+          -1.4658378644627335,
+          -0.19667231845175356,
+          -0.17744001186784064,
+          -0.05053872327140008,
+          1.8226127089243123,
+          0.05022036180346093,
+          -2.332260662793372,
+          0.07697824742836784,
+          -0.11443371305568237,
+          -0.018657211721903426,
+          0.2561898888236178,
+          0.7103855153611316,
+          2.463610842311815,
+          -1.0022678577292263,
+          -0.5796070016090161,
+          -0.28577478697867814,
+          0.8835435773592579,
+          1.062997877156547,
+          1.4008415110571046,
+          -0.015711447816133664,
+          2.6362573307605697,
+          -0.23524432857754043,
+          -3.205739982237005,
+          -0.8499174124817349,
+          1.3834188189715741,
+          -0.426770413504044,
+          2.2222097720999407,
+          -0.7808059316926261,
+          -1.7218050134309,
+          0.2279541664578395,
+          1.060772110557968,
+          -1.2450872347309978,
+          -1.0856947944638442,
+          -0.1461354591528455,
+          1.8066847471086105,
+          -1.2812998313760071,
+          2.127218486081894,
+          -0.054059991565737577,
+          3.149019953114257,
+          -0.47427840087330037,
+          0.1479609077852329,
+          -0.22670533969043158,
+          -0.18866250008390817,
+          0.04226893839572959,
+          -1.2738095451491156,
+          -0.41618563940505915,
+          -0.9573707432770624,
+          0.38169704498501783,
+          1.759648221599006,
+          0.2033038229221119,
+          -0.8132365662724791,
+          1.0053060241014322,
+          0.8756747493123789,
+          -0.769437485892882,
+          -1.6580018969530899,
+          0.6578263364416428,
+          0.9514421200958277,
+          -1.2032497760918368,
+          -1.903875778443479,
+          -1.300744813799807,
+          0.0914230925860327,
+          -0.7041338080035865,
+          1.1917698734167521,
+          -0.15509269015672028,
+          -0.4525431145009986,
+          -0.18827146939267542,
+          1.063525469797544,
+          -0.43618607876838783,
+          0.2451166037869396,
+          -0.23619770743114832,
+          1.6239373967551611,
+          -0.8125034970904871,
+          -2.2154728371258736,
+          -0.8621039037013821,
+          0.5470392871450128,
+          -0.4495629455592094,
+          -0.67568420920523,
+          0.47153851952536135,
+          2.6069886763398715,
+          -0.47836178639484644,
+          -1.3695835144382071,
+          -0.828945745173513,
+          -1.134790434465725,
+          -0.4376025432388912,
+          0.636851040170535,
+          0.5749139684099647,
+          -0.01350317637859285,
+          0.1389264437502555,
+          0.09684828600818611,
+          0.6236383938863802,
+          -1.0587753475973058,
+          -1.0996209836342334,
+          -0.9893139293208929,
+          -0.6361984039784176,
+          0.3647362474546425,
+          -0.4213040604854302,
+          0.11682854078395274,
+          0.11999456355754654,
+          0.5133645561673112,
+          0.02966719312980742,
+          -0.7404971100649576,
+          -0.20098369483361142,
+          0.953474996434212,
+          0.6219010816014583,
+          0.6304964266370057,
+          1.1669530941348334,
+          -0.1843366495903407,
+          -1.101856860338105,
+          1.1953806782972607,
+          -1.5159539914014186,
+          -0.07136670805936121,
+          -1.3539647956238154,
+          -1.5481765051445808,
+          0.2607616265336765,
+          -0.7987829501620896,
+          1.7267976748895166,
+          -0.13886414990827162,
+          0.7504414873377483,
+          0.8227953017842993,
+          1.0359532252272612,
+          -0.0076913911808313435,
+          0.5434328820650979,
+          0.19585072709648266,
+          0.09351122725818684,
+          -1.524262087896203,
+          1.144102739290054,
+          0.05850448140871698,
+          0.07994116949198639,
+          -0.36058864222262,
+          1.3573185191138215,
+          -0.9868754602374329,
+          0.4202056823484187,
+          -0.3865780882933424,
+          -1.053378698972275,
+          0.8900432934431581,
+          0.177998197690018,
+          -0.3475622954301736,
+          -0.43886927414038657,
+          0.014703441235193402,
+          0.7726123424919854,
+          0.603033235857717,
+          0.6014096694243366,
+          1.6951263349053072,
+          0.666313866829206,
+          -0.4217212021926936,
+          1.3623464789739927,
+          0.6286037078883281,
+          -0.008725369175953493,
+          1.4563195668261324,
+          -0.17974350530798888,
+          -0.5685787346853499,
+          -1.6708718501128577,
+          0.15227927739858382,
+          -0.23777044893825208,
+          -0.16696872716691014,
+          -0.16929024067721116,
+          1.1383310387997845,
+          2.026465883722471,
+          0.2855526106538521,
+          -0.5362648857873259,
+          -1.1376543963087034,
+          -0.7583857051950229,
+          0.34827760084755677,
+          -1.7445100054613127,
+          0.4604228948577837,
+          -0.22430699853679703,
+          -0.5489271108379212,
+          0.02595861760138888,
+          -0.7387001712184964,
+          -0.8160382596270361,
+          -0.0014509040405446768,
+          -0.2549517121004967,
+          -0.8826369395948903,
+          0.272966226605514,
+          0.24849948713284742,
+          1.9463857071534425,
+          0.13701257500136443,
+          -1.1255239329736628,
+          2.189202585047294,
+          0.16618443747816367,
+          0.6621417752776163,
+          -1.2220468017080341,
+          -0.0019048774580670152,
+          0.2671816249176352,
+          0.020064596948061217,
+          -0.48364386696009,
+          0.5663657659183529,
+          1.5115584056159872,
+          0.5472548624813185,
+          0.1758120337954638,
+          -0.052092600823756954,
+          -1.0710903727416972,
+          0.9997323362869774,
+          -0.9110537511051642,
+          0.5056112398073431,
+          -0.6657797532595332,
+          0.7376823389084705,
+          0.1553067321496108,
+          -0.08529044153142207,
+          0.9736829135143932,
+          -0.772035292169526,
+          -0.4820161848732274,
+          2.3670846948979887,
+          -1.1487794440906562,
+          -0.8506274522514322,
+          2.8461529077923826,
+          0.1582802462562111,
+          0.5139487442885852,
+          1.32096015135472,
+          0.19151883946637227,
+          -0.4248157240440731,
+          2.425661745668124,
+          0.1653325321363884,
+          -0.2896705127795099,
+          0.38161298598125776,
+          -1.8719405240138078,
+          1.2510491121364158,
+          0.5865109513874108,
+          1.9154416109567625,
+          1.450264885883276,
+          -0.3168554066398508,
+          0.5546116446637985,
+          0.5410999206320394,
+          -1.8347970231195743,
+          -0.6974276603795609,
+          0.9258507416989014,
+          0.4496028576779996,
+          -2.1610924897513217,
+          1.5705983165535282,
+          -1.5596882232452043,
+          1.0925685750629974,
+          1.1761472615803379,
+          -0.7472122549596366,
+          -2.210877970174602,
+          -1.925447950952135,
+          0.5030442668960527,
+          -0.7126534102497796,
+          1.5331514459307591,
+          1.967416058868372,
+          -0.6175412977294548,
+          1.8192389818824102,
+          1.251892987089283,
+          -1.2454977531621076,
+          -1.619213184511548,
+          -0.9367394661227245,
+          -0.2050488665236619,
+          -1.235648254565798,
+          -1.183834841496108,
+          -0.5559793485294809,
+          -1.634709369412911,
+          1.0750267287044977,
+          -1.9040386451714362,
+          1.7858173562179926,
+          1.4038784949935266,
+          -1.7187740528193276,
+          0.6297043482495396,
+          0.27447348255632853,
+          1.04566931491749,
+          0.08250090159944183,
+          1.3214295229432294,
+          -1.2405888664149656,
+          1.0682853488020814,
+          -1.2753079783737253,
+          0.3834841439567679,
+          -2.185029235097944,
+          -1.5188304733168927,
+          0.8046344830536024,
+          0.32799319527477516,
+          1.7656254367343474,
+          -0.8243666502736802,
+          0.9348531807775444,
+          0.6366651264097231,
+          -0.5880310924009499,
+          -1.555102733849172,
+          -0.9390558550290994,
+          -0.5441257747893053,
+          -2.3182810957821283,
+          0.6175502927554014,
+          0.17126386028952023,
+          0.9464946051994987,
+          1.464939142010538,
+          -1.1012973493492957,
+          0.06846705619816675,
+          -0.4707349859125768,
+          -0.4983784790999257,
+          1.7264178467059792,
+          -0.003965908893787852,
+          -0.8858588885790283,
+          -1.8446760348084683,
+          -0.12619700889366095,
+          -2.864717581958915,
+          -0.720659571945905,
+          1.100098157890991,
+          -1.0648070408041304,
+          0.5633581498580766,
+          1.4857783372069469,
+          2.599098923027024,
+          -1.5391912981647775,
+          0.6478206145246486,
+          -1.5133798669131557,
+          -1.5967568371302279,
+          0.025676387336887804,
+          0.7789297936883665,
+          0.7559335946069752,
+          1.4151784424909435,
+          0.5677628683877124,
+          0.6201062059245542,
+          -1.2323514818687102,
+          0.33099730722772264,
+          -0.44551096402953366,
+          1.3978594241164541,
+          1.5939682927658934,
+          -0.16976405928672397,
+          1.1128908223221237,
+          1.562931347695641,
+          -1.1735112048449137,
+          0.4896710310874664,
+          1.115079145695308,
+          0.7103656193065893,
+          0.23042445281964644,
+          0.09882621698217307,
+          1.5174867259140719,
+          -2.4433033657842538,
+          0.12165019461495112,
+          -1.1592375045178416,
+          -0.8293027534548368,
+          -0.5878049412582564,
+          1.4916104458083714,
+          -2.1339680326808206,
+          1.4732673411256896,
+          -0.8938820952370664,
+          -0.28971984734861583,
+          1.196615110333344,
+          0.9245946634530462,
+          1.78492877994092,
+          -2.206717446747612,
+          1.6524139663923083,
+          -1.5247531849055884,
+          -2.1068081761327493,
+          0.35014447057525633,
+          -0.3797348691758117,
+          -2.7352808189872904,
+          -2.0646290397056313,
+          0.923671618418551,
+          -0.5209353699488329,
+          -1.7250253822570834,
+          -1.6495022711365046,
+          -0.9324736694809154,
+          -2.0714272154504823,
+          1.3135275178690289,
+          0.7905541321517774,
+          1.9087527800740467,
+          -0.45435692112106385,
+          0.9304976407954539,
+          1.1440814674396644,
+          -1.7065182020102465,
+          -2.0891188675248342,
+          0.06917395922718547,
+          1.4135214669884777,
+          -1.9066575961176266,
+          -0.17078648847473105,
+          0.18141719973683215,
+          -1.3631080082649036,
+          0.380389133492406,
+          2.4556436783093916,
+          -1.604143005256727,
+          -0.4818201699533095,
+          1.1365952980438025,
+          -1.790247891449623,
+          0.18113212354433028,
+          -1.2280729706964233,
+          -2.2276052380399083,
+          1.0060719360984705,
+          -0.5135252930438036,
+          -0.6112376394656316,
+          -0.4472417352820934,
+          -1.80532538111512,
+          1.1409902252951705,
+          -0.5598681626721237,
+          1.3781385477408858,
+          2.074049981607136,
+          -1.9733592589542557,
+          1.9102940354980031,
+          0.5894286007700782,
+          0.36948251546351396,
+          -0.6031393048506195,
+          1.537411638763884,
+          0.261799182913471,
+          -0.8962824752101889,
+          1.5572700756647304,
+          -0.9837584224343431,
+          -1.0479738666837064,
+          -0.624376962820685,
+          -0.6280269397461403,
+          0.6004906424306751,
+          -1.0756027043490277,
+          1.478109704018873,
+          -0.6533797972901837,
+          1.4825762919420398,
+          0.2678861074970764,
+          1.2913089682270964,
+          -2.811555825205182,
+          -0.12613312013873232,
+          -1.1072618490200261,
+          0.6248399234920126,
+          2.311089697672025,
+          1.3123338612988964,
+          -0.9200937163996368,
+          -1.18584625534397,
+          0.2018040196133934,
+          1.4672781029043303,
+          -0.9763607594290914,
+          -0.7730275092638332,
+          1.5358756982090793,
+          1.3349221429168063,
+          -0.7619345041912875,
+          1.406562943561146,
+          -1.1239592485915388,
+          -2.1287698418923795,
+          -1.0206266070061636,
+          -1.6829676791340475,
+          -1.854545872845455,
+          -0.2453753534379888,
+          1.6578368329387507,
+          -0.21700690037549009,
+          1.2770361245636614,
+          0.43871981905886553,
+          -0.46585111320754213,
+          -1.0821108123194303,
+          -0.6025471442161957,
+          -0.7838391872862711,
+          1.6834761402932452,
+          0.8212338242261558,
+          2.0771812941499572,
+          -0.8087419254294935,
+          0.7699582748392656,
+          -0.7053749965047245,
+          1.8411600985285,
+          2.568781181514183,
+          -0.8792881199892175,
+          1.553585838118121,
+          -2.8411790517114186,
+          -0.26694403617043283,
+          1.8451402143809654,
+          1.823642994873973,
+          -1.9185038471180413,
+          0.46614485087258783,
+          -0.6858988134052787,
+          1.0324318200568954,
+          1.3139045931036546,
+          0.2704706909217218,
+          1.921680200482544,
+          -2.8432917543684355,
+          0.6064059510452587,
+          -0.8972727482509505,
+          1.9840648974582886,
+          1.0055074483039306,
+          0.21605564551946835,
+          -0.36829728927897687,
+          1.7136246035852463,
+          1.0506481010044302,
+          -0.3876492138248017,
+          -1.250004340848182,
+          -0.6284039253107213,
+          1.4235254106197772,
+          0.06726090285411913,
+          -0.65847373206942,
+          -0.4009153394445957,
+          0.9782938798281011,
+          -1.209150010026879,
+          -3.395588883001429,
+          -1.2551392561115147,
+          -1.342963615548616,
+          -0.15483350511126764,
+          -1.0116534286187464,
+          -0.3825747738749483,
+          -1.6187676615088518,
+          -0.9814134719137299,
+          -0.04602123645773092,
+          -0.5885158300169883,
+          -0.24729825655930368,
+          -2.175724438566388,
+          1.6959418621099838,
+          -0.4389645921944458,
+          0.7016331747782337,
+          1.872784414843832,
+          2.3241218557259895,
+          -1.508490634463224,
+          1.6265883373474508,
+          -2.097244619459599,
+          -1.6883254959956477,
+          -2.016410062136385,
+          1.738332987527161,
+          -2.342741790361049,
+          0.4290751856240687,
+          1.673156881725558,
+          1.3689133527545925,
+          0.8410588827179001,
+          -0.6284412077644894,
+          1.5623924071529363,
+          -0.34433833169293865,
+          -2.301333613633395,
+          -1.187647289675097,
+          -0.26745367298885486,
+          0.08495960629893572,
+          -1.82949004110518,
+          -0.10585994674653867,
+          0.9390441077857746,
+          -0.23223608041457394,
+          -2.491088096978116,
+          1.1519639723629085,
+          1.243079370836798,
+          -1.3457208575539996,
+          -1.70271836343276,
+          1.4406916184714158,
+          -1.097059196258208,
+          -1.6778952474553372,
+          0.3968604701781855,
+          -0.9584264599883018,
+          -0.5954973987392225,
+          -1.098556438753493,
+          -2.3914889690287495,
+          -1.241471936212198,
+          1.6551176096743252,
+          0.24921224781122328,
+          -0.1582710909354645,
+          0.7860003200599762,
+          2.084093266740833,
+          -0.9938487374551789,
+          1.1584372414801092,
+          -0.9139382413264032,
+          1.330607774392302,
+          1.1813649697572575,
+          -0.7451421581197285,
+          -2.0919859455507477,
+          -1.9923014157872767,
+          -2.1232402991729042,
+          1.1836275934004217,
+          -1.5674028985842974,
+          -0.9651969898598839,
+          1.8986505756475314,
+          -0.5859661086650559,
+          -0.6099478851766862,
+          0.6805021410431037,
+          2.21028932311896,
+          1.599572540403278,
+          -1.2336338727751472,
+          2.39108431456067,
+          0.7932918466391781,
+          -0.8445447420769313,
+          -2.5299297727829684,
+          -2.1488655665618257,
+          1.6978593160671467,
+          0.7620732798803223,
+          -1.9721945378474695,
+          1.3570954507872626,
+          -2.4618119518466375,
+          2.053345451650534,
+          0.8410496372539404,
+          1.9610831495513703,
+          0.7832161107844093,
+          0.21636666668662297,
+          -1.5448185518869122,
+          1.0567602159197467,
+          1.3535555014359004,
+          1.8884010177581083,
+          1.0268359605788182,
+          0.48096120878533893,
+          -1.3308047255796718,
+          -0.028884805871643323,
+          -1.3564557856528328,
+          0.40922061026984735,
+          -2.2329180355818448,
+          0.1014203189145022,
+          -1.0741875496237026,
+          -0.9448183943631504,
+          2.1584663876718886,
+          2.251668716258581,
+          0.8749902402945725,
+          -2.3570325707389364,
+          1.6393647673751957,
+          0.9262939857429183,
+          0.9755310926736283,
+          2.4530153894609708,
+          0.506615575245041,
+          -1.3239008701289143,
+          -0.10869014129856301,
+          3.259460869292055,
+          -0.9920832404804893,
+          0.18795251855539294,
+          1.6528653698599753,
+          0.9300617221404274,
+          2.693797010312234,
+          -0.4923831989134232,
+          0.3211216093281657,
+          0.18867732492124767,
+          -0.6949730881464312,
+          0.22899185050886198,
+          1.2554471566848262,
+          1.5754180121868813,
+          -0.42653160434416176,
+          0.6270239622088023,
+          -0.6552438212196586,
+          2.161685132390021,
+          -0.43835923168733676,
+          0.23796832805023208,
+          -1.3684245890732263,
+          -1.0205512481931451,
+          1.5829937401529766,
+          -0.8450477315776067,
+          1.2959365281477822,
+          -0.1152558471556258,
+          -1.1013445229409786,
+          1.4412536782865837
          ]
         },
         {
@@ -22882,1345 +33471,2677 @@
          "scene": "scene3",
          "showlegend": false,
          "text": [
-          "Complementary_64_2",
-          "example_4",
-          "redundancy_32_2",
-          "mutual_error_2_2",
-          "Complementary_79_2",
-          "Complementary_8_2",
-          "Complementary_7_2",
-          "redundancy_54_2",
-          "Complementary_29_2",
-          "example_34",
-          "example_35",
-          "mutual_error_25_2",
-          "redundancy_6_2",
-          "example_47",
-          "Complementary_5_2",
-          "example_53",
-          "mutual_error_11_2",
-          "redundancy_20_2",
-          "redundancy_31_2",
-          "example_71",
-          "example_80",
-          "Complementary_85_2",
-          "redundancy_15_2",
-          "example_91",
-          "redundancy_37_2",
-          "redundancy_50_2",
-          "example_99",
-          "example_102",
-          "redundancy_14_2",
-          "Complementary_34_2",
-          "example_106",
-          "Complementary_26_2",
-          "example_119",
-          "example_121",
-          "example_122",
-          "example_123",
-          "Complementary_21_2",
-          "Complementary_86_2",
-          "example_130",
-          "example_134",
-          "example_138",
-          "example_143",
-          "Complementary_39_2",
-          "Complementary_95_2",
-          "example_150",
-          "mutual_error_7_2",
-          "Complementary_27_2",
-          "redundancy_59_2",
-          "redundancy_9_2",
-          "Complementary_93_2",
-          "example_166",
-          "example_170",
-          "example_183",
-          "redundancy_55_2",
-          "example_187",
-          "redundancy_1_2",
-          "example_191",
-          "redundancy_16_2",
-          "Complementary_30_2",
-          "Complementary_80_2",
-          "Complementary_25_2",
-          "Complementary_73_2",
-          "redundancy_41_2",
-          "example_207",
-          "example_214",
-          "example_216",
-          "example_217",
-          "Complementary_67_2",
-          "Complementary_51_2",
-          "example_230",
-          "Complementary_75_2",
-          "Complementary_69_2",
-          "redundancy_46_2",
-          "redundancy_7_2",
-          "Complementary_96_2",
-          "example_243",
-          "Complementary_59_2",
-          "example_251",
-          "example_252",
-          "example_253",
-          "example_258",
-          "redundancy_3_2",
-          "redundancy_28_2",
-          "example_269",
-          "Complementary_6_2",
-          "Complementary_84_2",
-          "example_276",
-          "Complementary_66_2",
-          "example_282",
-          "example_288",
-          "Complementary_88_2",
-          "example_295",
-          "mutual_error_31_2",
-          "Complementary_87_2",
-          "example_308",
-          "example_313",
-          "example_315",
-          "example_317",
-          "example_325",
-          "example_330",
-          "example_337",
-          "example_339",
-          "example_343",
-          "Complementary_52_2",
-          "example_347",
-          "mutual_error_23_2",
-          "example_358",
-          "example_366",
-          "redundancy_62_2",
-          "mutual_error_29_2",
-          "redundancy_22_2",
-          "Complementary_20_2",
-          "example_379",
-          "redundancy_52_2",
-          "Complementary_56_2",
-          "mutual_error_28_2",
-          "example_387",
-          "example_389",
-          "redundancy_40_2",
-          "mutual_error_32_2",
-          "example_397",
-          "Complementary_40_2",
-          "mutual_error_10_2",
-          "example_402",
-          "Complementary_24_2",
-          "example_406",
-          "Complementary_58_2",
-          "example_413",
-          "redundancy_63_2",
-          "Complementary_2_2",
-          "example_418",
-          "example_419",
-          "Complementary_32_2",
-          "mutual_error_18_2",
-          "example_435",
-          "redundancy_53_2",
-          "redundancy_0_2",
-          "example_452",
-          "example_454",
-          "example_455",
-          "example_458",
-          "example_459",
-          "redundancy_64_2",
-          "Complementary_28_2",
-          "mutual_error_22_2",
-          "Complementary_9_2",
-          "example_471",
-          "example_472",
-          "redundancy_30_2",
-          "Complementary_48_2",
-          "Complementary_60_2",
-          "example_484",
-          "mutual_error_24_2",
-          "Complementary_12_2",
-          "redundancy_18_2",
-          "redundancy_60_2",
-          "example_496",
-          "example_498",
-          "redundancy_36_2",
-          "example_504",
-          "example_505",
-          "redundancy_57_2",
-          "example_509",
-          "Complementary_14_2",
-          "example_520",
-          "example_524",
-          "Complementary_82_2",
-          "mutual_error_20_2",
-          "Complementary_61_2",
-          "example_553",
-          "Complementary_18_2",
-          "Complementary_33_2",
-          "Complementary_4_2",
-          "example_561",
-          "redundancy_65_2",
-          "Complementary_68_2",
-          "example_564",
-          "example_565",
-          "Complementary_37_2",
-          "redundancy_38_2",
-          "redundancy_39_2",
-          "redundancy_47_2",
-          "example_577",
-          "mutual_error_13_2",
-          "mutual_error_26_2",
-          "Complementary_74_2",
-          "example_607",
-          "example_608",
-          "example_609",
-          "Complementary_0_2",
-          "example_612",
-          "example_614",
-          "example_619",
-          "Complementary_16_2",
-          "redundancy_49_2",
-          "example_627",
-          "example_632",
-          "Complementary_57_2",
-          "Complementary_78_2",
-          "Complementary_19_2",
-          "Complementary_47_2",
-          "Complementary_53_2",
-          "Complementary_98_2",
-          "Complementary_10_2",
-          "Complementary_81_2",
-          "example_648",
-          "Complementary_17_2",
-          "Complementary_72_2",
-          "example_658",
-          "mutual_error_8_2",
-          "redundancy_21_2",
-          "example_663",
-          "Complementary_1_2",
-          "example_672",
-          "example_674",
-          "example_676",
-          "redundancy_24_2",
-          "example_683",
-          "example_686",
-          "example_690",
-          "Complementary_62_2",
-          "example_698",
-          "example_699",
-          "redundancy_56_2",
-          "example_701",
-          "example_702",
-          "example_708",
-          "redundancy_11_2",
-          "Complementary_97_2",
-          "Complementary_42_2",
-          "example_724",
-          "example_725",
-          "example_726",
-          "redundancy_35_2",
-          "Complementary_49_2",
-          "mutual_error_21_2",
-          "example_735",
-          "example_738",
-          "Complementary_44_2",
-          "mutual_error_17_2",
-          "example_745",
-          "redundancy_5_2",
-          "redundancy_58_2",
-          "example_749",
-          "Complementary_22_2",
-          "mutual_error_19_2",
-          "example_761",
-          "example_763",
-          "Complementary_36_2",
-          "example_766",
-          "example_767",
-          "Complementary_71_2",
-          "Complementary_15_2",
-          "example_771",
-          "example_772",
-          "Complementary_76_2",
-          "example_776",
-          "mutual_error_27_2",
-          "Complementary_38_2",
-          "example_783",
-          "example_784",
-          "mutual_error_15_2",
-          "Complementary_77_2",
-          "example_791",
-          "example_794",
-          "redundancy_19_2",
-          "Complementary_70_2",
-          "Complementary_13_2",
-          "Complementary_11_2",
-          "Complementary_63_2",
-          "redundancy_61_2",
-          "Complementary_45_2",
-          "example_815",
-          "example_818",
-          "redundancy_26_2",
-          "mutual_error_9_2",
-          "Complementary_35_2",
-          "example_838",
-          "mutual_error_14_2",
-          "Complementary_83_2",
-          "example_841",
-          "mutual_error_6_2",
-          "mutual_error_4_2",
-          "redundancy_17_2",
-          "Complementary_54_2",
-          "Complementary_90_2",
-          "redundancy_2_2",
-          "Complementary_31_2",
-          "redundancy_4_2",
-          "Complementary_23_2",
-          "Complementary_50_2",
-          "Complementary_46_2",
-          "example_871",
-          "example_873",
-          "redundancy_51_2",
-          "example_875",
-          "example_877",
-          "Complementary_89_2",
-          "example_879",
-          "Complementary_41_2",
-          "example_888",
-          "example_889",
-          "example_890",
-          "Complementary_3_2",
-          "Complementary_65_2",
-          "redundancy_33_2",
-          "example_905",
-          "Complementary_43_2",
-          "example_914",
-          "example_918",
-          "example_921",
-          "example_927",
-          "example_928",
-          "example_930",
-          "mutual_error_5_2",
-          "example_942",
-          "redundancy_45_2",
-          "example_944",
-          "example_952",
-          "example_955",
-          "mutual_error_30_2",
-          "Complementary_55_2",
-          "example_961",
-          "example_971",
-          "Complementary_94_2",
-          "Complementary_92_2",
-          "redundancy_29_2",
-          "mutual_error_12_2",
-          "redundancy_10_2",
-          "redundancy_34_2",
-          "mutual_error_16_2",
-          "Complementary_91_2",
-          "example_995"
+          "1332_l_2_m-0_0.18-1_0.04-2_0.09-3_0.22",
+          "1333_l_2_m-0_0.77-1_0.05-2_0.68-3_0.39",
+          "1334_l_2_m-0_0.15-1_0.04-2_0.0-3_0.79",
+          "1335_l_2_m-0_0.99-1_0.14-2_0.05-3_0.18",
+          "1336_l_2_m-0_0.78-1_0.05-2_0.09-3_0.61",
+          "1337_l_2_m-0_0.26-1_0.07-2_0.04-3_0.11",
+          "1338_l_2_c_0_1_3-0_0.4-1_0.0-2_0.19-3_1.04",
+          "1339_l_2_c_0_2_3-0_1.71-1_0.96-2_0.32-3_1.33",
+          "1340_l_2_c_1_2_3-0_0.84-1_0.58-2_0.1-3_0.1",
+          "1341_l_2_c_0_1_3-0_0.05-1_0.29-2_0.02-3_0.17",
+          "1342_l_2_c_0_2_3-0_1.46-1_0.66-2_0.97-3_0.4",
+          "1343_l_2_c_1_2_3-0_1.61-1_0.16-2_0.36-3_0.05",
+          "1344_l_2_c_0_1_3-0_0.27-1_0.42-2_0.04-3_0.02",
+          "1345_l_2_c_0_2_3-0_0.95-1_0.44-2_0.06-3_0.27",
+          "1346_l_2_c_1_2_3-0_0.56-1_0.07-2_0.28-3_0.52",
+          "1347_l_2_c_0_1_3-0_0.2-1_0.0-2_0.8-3_1.41",
+          "1348_l_2_c_0_2_3-0_0.44-1_1.31-2_0.22-3_0.36",
+          "1349_l_2_c_1_2_3-0_1.56-1_0.16-2_0.25-3_0.42",
+          "1350_l_2_c_0_1_3-0_0.49-1_0.18-2_0.28-3_0.01",
+          "1351_l_2_c_0_2_3-0_0.58-1_0.38-2_1.02-3_0.65",
+          "1352_l_2_c_1_2_3-0_1.38-1_0.01-2_0.0-3_0.31",
+          "1353_l_2_c_0_1_3-0_0.04-1_0.15-2_0.03-3_0.13",
+          "1354_l_2_c_0_2_3-0_0.64-1_1.22-2_0.58-3_0.31",
+          "1355_l_2_c_1_2_3-0_0.84-1_0.01-2_0.11-3_1.01",
+          "1356_l_2_c_0_1_3-0_1.21-1_0.02-2_1.51-3_0.4",
+          "1357_l_2_c_0_2_3-0_0.13-1_0.23-2_0.18-3_0.01",
+          "1358_l_2_c_1_2_3-0_0.33-1_0.2-2_0.06-3_1.12",
+          "1359_l_2_c_0_1_3-0_0.42-1_0.15-2_1.31-3_0.3",
+          "1360_l_2_c_0_2_3-0_0.87-1_2.48-2_0.05-3_0.11",
+          "1361_l_2_c_1_2_3-0_0.48-1_0.54-2_0.01-3_1.25",
+          "1362_l_2_c_0_1_3-0_0.83-1_0.72-2_0.27-3_0.92",
+          "1363_l_2_c_0_2_3-0_1.13-1_2.54-2_0.13-3_0.12",
+          "1364_l_2_c_1_2_3-0_0.03-1_0.29-2_0.25-3_0.37",
+          "1365_l_2_c_0_1_3-0_0.47-1_0.49-2_1.18-3_1.36",
+          "1366_l_2_c_0_2_3-0_0.21-1_0.43-2_0.63-3_0.18",
+          "1367_l_2_c_1_2_3-0_0.37-1_0.27-2_0.61-3_0.1",
+          "1368_l_2_c_0_1_3-0_0.09-1_0.72-2_2.0-3_0.14",
+          "1369_l_2_c_0_2_3-0_0.3-1_1.66-2_0.6-3_0.97",
+          "1370_l_2_c_1_2_3-0_0.71-1_0.02-2_0.48-3_0.5",
+          "1371_l_2_c_0_1_2-0_0.21-1_0.08-2_0.83-3_0.12",
+          "1372_l_2_c_0_1_3-0_0.86-1_0.7-2_1.01-3_0.13",
+          "1373_l_2_c_0_2_3-0_0.14-1_1.54-2_0.05-3_0.79",
+          "1374_l_2_c_1_2_3-0_1.08-1_0.11-2_0.01-3_0.2",
+          "1375_l_2_c_0_1_2-0_1.53-1_0.46-2_0.34-3_0.94",
+          "1376_l_2_c_0_1_3-0_1.53-1_0.25-2_0.7-3_0.5",
+          "1377_l_2_c_0_2_3-0_0.15-1_0.08-2_0.0-3_0.5",
+          "1378_l_2_c_1_2_3-0_1.7-1_0.69-2_0.34-3_0.14",
+          "1379_l_2_c_0_1_2-0_0.52-1_1.04-2_0.09-3_0.6",
+          "1380_l_2_c_0_1_3-0_0.04-1_0.22-2_0.48-3_0.61",
+          "1381_l_2_c_0_2_3-0_0.1-1_0.58-2_0.24-3_0.56",
+          "1382_l_2_c_1_2_3-0_0.62-1_0.04-2_0.37-3_0.09",
+          "1383_l_2_c_0_1_2-0_0.24-1_0.34-2_0.15-3_0.36",
+          "1384_l_2_c_0_1_3-0_0.01-1_0.38-2_1.0-3_1.15",
+          "1385_l_2_c_0_2_3-0_0.12-1_0.16-2_0.0-3_0.21",
+          "1386_l_2_c_1_2_3-0_1.01-1_0.6-2_0.01-3_0.56",
+          "1387_l_2_c_0_1_2-0_0.31-1_0.01-2_0.43-3_1.32",
+          "1388_l_2_c_0_1_3-0_0.06-1_0.23-2_1.64-3_1.16",
+          "1389_l_2_c_0_2_3-0_0.1-1_0.25-2_0.15-3_0.74",
+          "1390_l_2_c_1_2_3-0_0.88-1_0.22-2_0.64-3_0.34",
+          "1391_l_2_c_0_1_2-0_0.69-1_0.57-2_0.86-3_0.98",
+          "1392_l_2_c_0_1_3-0_0.26-1_0.25-2_0.9-3_0.82",
+          "1393_l_2_c_0_2_3-0_0.55-1_0.73-2_0.28-3_0.46",
+          "1394_l_2_c_1_2_3-0_0.79-1_0.14-2_1.21-3_0.3",
+          "1395_l_2_c_0_1_2-0_1.25-1_0.0-2_0.23-3_1.01",
+          "1396_l_2_c_0_1_3-0_1.23-1_0.68-2_0.04-3_0.66",
+          "1397_l_2_c_0_2_3-0_0.26-1_0.02-2_0.16-3_0.12",
+          "1398_l_2_c_1_2_3-0_0.65-1_0.78-2_0.37-3_0.0",
+          "1399_l_2_c_0_1_2-0_0.35-1_0.07-2_0.01-3_0.85",
+          "1400_l_2_c_0_1_3-0_0.3-1_0.03-2_0.18-3_0.59",
+          "1401_l_2_c_0_2_3-0_0.31-1_0.5-2_0.27-3_0.12",
+          "1402_l_2_c_1_2_3-0_1.06-1_0.05-2_0.12-3_0.82",
+          "1403_l_2_c_0_1_2-0_1.11-1_0.78-2_0.48-3_0.36",
+          "1404_l_2_c_0_1_3-0_0.5-1_0.3-2_0.97-3_0.72",
+          "1405_l_2_c_0_2_3-0_0.69-1_0.49-2_0.04-3_0.29",
+          "1406_l_2_c_1_2_3-0_1.93-1_0.36-2_0.29-3_0.1",
+          "1407_l_2_c_0_1_2-0_0.01-1_0.3-2_0.57-3_0.11",
+          "1408_l_2_c_0_1_3-0_0.28-1_0.22-2_2.11-3_0.5",
+          "1409_l_2_c_0_2_3-0_0.63-1_0.69-2_0.1-3_0.74",
+          "1410_l_2_c_1_2_3-0_2.88-1_0.39-2_0.4-3_0.56",
+          "1411_l_2_c_0_1_2-0_0.12-1_0.05-2_0.52-3_0.9",
+          "1412_l_2_c_0_1_3-0_0.68-1_0.44-2_1.1-3_0.81",
+          "1413_l_2_c_0_2_3-0_0.13-1_0.26-2_0.51-3_0.01",
+          "1414_l_2_c_1_2_3-0_1.59-1_0.66-2_0.02-3_0.29",
+          "1415_l_2_c_0_1_2-0_0.31-1_0.44-2_0.42-3_0.1",
+          "1416_l_2_c_0_1_3-0_0.83-1_0.37-2_0.61-3_0.22",
+          "1417_l_2_c_0_2_3-0_0.53-1_0.08-2_0.02-3_0.44",
+          "1418_l_2_c_1_2_3-0_0.95-1_0.3-2_0.49-3_0.94",
+          "1419_l_2_c_0_1_2-0_0.98-1_0.08-2_0.03-3_0.5",
+          "1420_l_2_c_0_1_3-0_1.69-1_0.28-2_0.51-3_0.74",
+          "1421_l_2_c_0_2_3-0_0.03-1_1.73-2_0.44-3_0.05",
+          "1422_l_2_c_1_2_3-0_0.45-1_0.52-2_0.06-3_1.21",
+          "1423_l_2_c_0_1_2-0_0.24-1_0.17-2_0.59-3_0.7",
+          "1424_l_2_c_0_1_3-0_0.47-1_0.34-2_0.86-3_0.13",
+          "1425_l_2_c_0_2_3-0_0.08-1_1.14-2_0.23-3_1.52",
+          "1426_l_2_c_1_2_3-0_1.58-1_0.24-2_0.6-3_0.34",
+          "1427_l_2_c_0_1_2-0_0.4-1_0.7-2_0.02-3_1.82",
+          "1428_l_2_c_0_1_3-0_0.28-1_0.66-2_1.9-3_0.72",
+          "1429_l_2_c_0_2_3-0_1.08-1_0.59-2_0.16-3_0.56",
+          "1430_l_2_c_1_2_3-0_0.25-1_0.14-2_0.19-3_0.44",
+          "1431_l_2_c_0_1_2-0_0.39-1_0.2-2_0.13-3_0.46",
+          "1432_l_2_c_0_1_3-0_0.14-1_0.02-2_1.53-3_0.29",
+          "1433_l_2_c_0_2_3-0_0.03-1_0.95-2_0.23-3_0.13",
+          "1434_l_2_c_1_2_3-0_0.68-1_0.77-2_0.18-3_0.71",
+          "1435_l_2_c_0_1_2-0_1.93-1_0.06-2_0.26-3_2.7",
+          "1436_l_2_c_0_1_3-0_0.97-1_0.01-2_0.48-3_0.1",
+          "1437_l_2_c_0_2_3-0_0.68-1_0.33-2_0.11-3_0.49",
+          "1438_l_2_c_1_2_3-0_0.94-1_0.12-2_0.53-3_0.32",
+          "1439_l_2_c_0_1_2-0_0.04-1_0.28-2_0.76-3_0.05",
+          "1440_l_2_c_0_1_3-0_0.09-1_0.42-2_1.05-3_0.55",
+          "1441_l_2_c_0_2_3-0_1.74-1_0.96-2_0.48-3_0.06",
+          "1442_l_2_c_1_2_3-0_1.08-1_0.52-2_0.67-3_0.56",
+          "1443_l_2_c_0_1_2-0_0.26-1_0.42-2_0.1-3_0.6",
+          "1444_l_2_c_0_1_3-0_1.52-1_0.52-2_0.35-3_0.55",
+          "1445_l_2_c_0_2_3-0_0.37-1_1.21-2_0.63-3_0.04",
+          "1446_l_2_c_1_2_3-0_0.55-1_0.19-2_0.6-3_0.97",
+          "1447_l_2_c_0_1_2-0_0.18-1_0.07-2_0.41-3_1.25",
+          "1448_l_2_c_0_1_3-0_0.6-1_0.08-2_0.6-3_0.47",
+          "1449_l_2_c_0_2_3-0_0.38-1_0.54-2_0.39-3_0.03",
+          "1450_l_2_c_1_2_3-0_0.9-1_0.04-2_0.48-3_0.5",
+          "1451_l_2_c_0_1_2-0_0.19-1_0.1-2_0.65-3_0.29",
+          "1452_l_2_c_0_1_3-0_0.94-1_0.02-2_0.46-3_0.21",
+          "1453_l_2_c_0_2_3-0_1.23-1_1.51-2_0.12-3_0.91",
+          "1454_l_2_c_1_2_3-0_0.35-1_0.16-2_0.26-3_0.46",
+          "1455_l_2_c_0_1_2-0_0.12-1_0.06-2_0.01-3_1.16",
+          "1456_l_2_c_0_1_3-0_0.12-1_0.26-2_0.31-3_0.36",
+          "1457_l_2_c_0_2_3-0_0.05-1_1.61-2_0.04-3_0.1",
+          "1458_l_2_c_1_2_3-0_0.8-1_0.54-2_0.21-3_1.15",
+          "1459_l_2_c_0_1_2-0_0.96-1_0.45-2_0.35-3_0.2",
+          "1460_l_2_c_0_1_3-0_0.82-1_0.02-2_1.89-3_0.06",
+          "1461_l_2_c_0_2_3-0_0.06-1_1.02-2_0.55-3_0.09",
+          "1462_l_2_c_1_2_3-0_1.31-1_0.31-2_0.04-3_1.15",
+          "1463_l_2_c_0_1_2-0_0.66-1_0.12-2_0.57-3_0.66",
+          "1464_l_2_c_0_1_3-0_1.76-1_0.16-2_3.53-3_0.01",
+          "1465_l_2_c_0_2_3-0_0.29-1_2.01-2_0.09-3_0.21",
+          "1466_l_2_c_1_2_3-0_0.6-1_0.03-2_0.05-3_0.47",
+          "1467_l_2_c_0_1_2-0_0.37-1_0.3-2_0.01-3_1.47",
+          "1468_l_2_c_0_1_3-0_0.24-1_0.05-2_0.26-3_0.18",
+          "1469_l_2_c_0_2_3-0_0.01-1_1.33-2_0.0-3_0.24",
+          "1470_l_2_c_1_2_3-0_0.27-1_0.01-2_0.01-3_0.14",
+          "1471_l_2_c_0_1_2-0_0.16-1_0.03-2_0.22-3_0.4",
+          "1472_l_2_c_0_1_3-0_0.81-1_0.27-2_0.66-3_0.98",
+          "1473_l_2_c_0_2_3-0_0.2-1_0.09-2_0.17-3_0.22",
+          "1474_l_2_c_1_2_3-0_0.02-1_0.92-2_0.0-3_0.09",
+          "1475_l_2_c_0_1_2-0_0.61-1_0.14-2_0.23-3_1.28",
+          "1476_l_2_c_0_1_3-0_0.42-1_0.77-2_1.54-3_1.54",
+          "1477_l_2_c_0_2_3-0_0.47-1_0.2-2_0.03-3_0.39",
+          "1478_l_2_c_1_2_3-0_0.62-1_0.14-2_0.01-3_0.74",
+          "1479_l_2_c_0_1_2-0_0.53-1_0.2-2_0.19-3_0.4",
+          "1480_l_2_c_0_1_3-0_0.6-1_0.89-2_0.29-3_0.77",
+          "1481_l_2_c_0_2_3-0_0.27-1_0.45-2_0.08-3_0.01",
+          "1482_l_2_c_1_2_3-0_0.12-1_0.15-2_0.3-3_0.98",
+          "1483_l_2_c_0_1_2-0_0.49-1_0.51-2_0.26-3_0.19",
+          "1484_l_2_c_0_1_3-0_0.29-1_0.05-2_1.05-3_0.2",
+          "1485_l_2_c_0_2_3-0_1.48-1_0.86-2_0.49-3_0.46",
+          "1486_l_2_c_1_2_3-0_1.32-1_0.12-2_0.36-3_0.03",
+          "1487_l_2_c_0_1_2-0_0.39-1_0.0-2_0.1-3_0.66",
+          "1488_l_2_c_0_1_3-0_0.73-1_0.42-2_0.33-3_0.12",
+          "1489_l_2_c_0_2_3-0_1.62-1_1.1-2_0.73-3_0.25",
+          "1490_l_2_c_1_2_3-0_0.63-1_0.15-2_0.05-3_0.22",
+          "1491_l_2_c_0_1_2-0_0.42-1_0.51-2_0.13-3_0.23",
+          "1492_l_2_c_0_1_3-0_0.11-1_0.03-2_1.59-3_0.45",
+          "1493_l_2_c_0_2_3-0_0.34-1_0.78-2_0.15-3_0.09",
+          "1494_l_2_c_1_2_3-0_0.51-1_0.0-2_0.32-3_0.55",
+          "1495_l_2_c_0_1_2-0_1.13-1_0.11-2_0.13-3_0.02",
+          "1496_l_2_c_0_1_3-0_0.0-1_0.64-2_0.02-3_1.09",
+          "1497_l_2_c_0_2_3-0_0.37-1_1.61-2_0.07-3_0.72",
+          "1498_l_2_c_1_2_3-0_1.55-1_0.29-2_0.94-3_0.09",
+          "1499_l_2_c_0_1_2-0_0.16-1_0.02-2_0.32-3_1.41",
+          "1500_l_2_c_0_1_3-0_0.03-1_0.1-2_1.66-3_0.36",
+          "1501_l_2_c_0_2_3-0_0.43-1_0.97-2_0.01-3_1.1",
+          "1502_l_2_c_1_2_3-0_0.63-1_0.17-2_0.03-3_0.17",
+          "1503_l_2_c_0_1_2-0_0.1-1_0.02-2_0.03-3_0.97",
+          "1504_l_2_c_0_1_3-0_0.03-1_0.01-2_0.07-3_0.47",
+          "1505_l_2_c_0_2_3-0_1.21-1_0.93-2_0.12-3_0.78",
+          "1506_l_2_c_1_2_3-0_0.72-1_0.01-2_0.17-3_0.24",
+          "1507_l_2_c_0_1_2-0_0.44-1_0.95-2_0.52-3_0.0",
+          "1508_l_2_c_0_1_3-0_0.36-1_0.59-2_1.38-3_0.66",
+          "1509_l_2_c_0_2_3-0_0.59-1_0.16-2_0.43-3_0.28",
+          "1510_l_2_c_1_2_3-0_0.01-1_0.15-2_0.68-3_0.21",
+          "1511_l_2_c_0_1_2-0_0.11-1_0.23-2_0.76-3_0.97",
+          "1512_l_2_c_0_1_3-0_0.16-1_0.21-2_0.57-3_2.33",
+          "1513_l_2_c_0_2_3-0_1.68-1_0.67-2_0.63-3_2.17",
+          "1514_l_2_c_1_2_3-0_0.92-1_0.43-2_1.1-3_0.06",
+          "1515_l_2_c_0_1_2-0_0.75-1_0.22-2_0.38-3_1.67",
+          "1516_l_2_c_0_1_3-0_0.25-1_0.16-2_1.5-3_1.53",
+          "1517_l_2_c_0_2_3-0_0.5-1_1.48-2_0.92-3_1.58",
+          "1518_l_2_c_1_2_3-0_0.01-1_0.01-2_0.57-3_0.24",
+          "1519_l_2_c_0_1_2-0_0.41-1_0.03-2_0.12-3_0.32",
+          "1520_l_2_c_0_1_3-0_0.56-1_0.51-2_1.03-3_0.67",
+          "1521_l_2_c_0_2_3-0_1.11-1_1.18-2_0.02-3_0.52",
+          "1522_l_2_c_1_2_3-0_2.09-1_0.09-2_0.68-3_1.55",
+          "1523_l_2_c_0_1_2-0_0.74-1_0.7-2_0.3-3_0.73",
+          "1524_l_2_c_0_1_3-0_0.19-1_0.09-2_0.1-3_0.08",
+          "1525_l_2_c_0_2_3-0_0.09-1_2.72-2_0.04-3_0.94",
+          "1526_l_2_c_1_2_3-0_0.89-1_0.2-2_0.72-3_1.04",
+          "1527_l_2_c_0_1_2-0_0.23-1_0.47-2_0.8-3_0.35",
+          "1528_l_2_c_0_1_3-0_0.09-1_0.15-2_0.38-3_1.11",
+          "1529_l_2_c_0_2_3-0_0.4-1_0.36-2_0.45-3_0.46",
+          "1530_l_2_c_1_2_3-0_0.1-1_0.58-2_0.12-3_0.3",
+          "1531_l_2_c_0_1_2-0_1.37-1_0.07-2_0.03-3_1.88",
+          "1532_l_2_c_0_1_3-0_0.19-1_0.73-2_0.11-3_1.09",
+          "1533_l_2_c_0_2_3-0_0.14-1_0.9-2_0.15-3_0.11",
+          "1534_l_2_c_1_2_3-0_0.69-1_0.44-2_0.45-3_0.06",
+          "1535_l_2_c_0_1_2-0_1.93-1_0.27-2_0.19-3_1.27",
+          "1536_l_2_c_0_1_3-0_0.05-1_0.68-2_0.59-3_0.69",
+          "1537_l_2_c_0_2_3-0_0.32-1_0.71-2_0.97-3_0.96",
+          "1538_l_2_c_1_2_3-0_0.55-1_0.24-2_0.02-3_1.87",
+          "1539_l_2_c_0_1_2-0_1.54-1_0.41-2_0.29-3_0.24",
+          "1540_l_2_c_0_1_3-0_0.09-1_0.42-2_0.95-3_0.39",
+          "1541_l_2_c_0_2_3-0_0.98-1_0.61-2_0.11-3_0.1",
+          "1542_l_2_c_1_2_3-0_1.14-1_0.34-2_0.68-3_0.09",
+          "1543_l_2_c_0_1_2-0_0.25-1_0.3-2_0.03-3_0.22",
+          "1544_l_2_c_0_1_3-0_0.55-1_0.48-2_0.63-3_0.32",
+          "1545_l_2_c_0_2_3-0_0.56-1_1.52-2_0.17-3_0.93",
+          "1546_l_2_c_1_2_3-0_0.04-1_0.02-2_0.09-3_0.25",
+          "1547_l_2_c_0_1_2-0_0.0-1_1.28-2_0.02-3_0.52",
+          "1548_l_2_c_0_1_3-0_0.53-1_0.86-2_1.26-3_0.28",
+          "1549_l_2_c_0_2_3-0_0.04-1_0.07-2_0.06-3_0.18",
+          "1550_l_2_c_1_2_3-0_0.6-1_0.18-2_0.06-3_0.17",
+          "1551_l_2_c_0_1_2-0_0.17-1_0.01-2_0.08-3_0.66",
+          "1552_l_2_c_0_1_3-0_0.69-1_0.31-2_0.39-3_0.81",
+          "1553_l_2_c_0_2_3-0_0.07-1_1.28-2_0.36-3_1.83",
+          "1554_l_2_c_1_2_3-0_2.08-1_0.39-2_0.05-3_0.29",
+          "1555_l_2_c_0_1_2-0_0.32-1_0.06-2_0.11-3_0.13",
+          "1556_l_2_c_0_1_3-0_0.5-1_0.03-2_0.22-3_1.59",
+          "1557_l_2_c_0_2_3-0_1.11-1_0.47-2_0.15-3_1.68",
+          "1558_l_2_c_1_2_3-0_0.55-1_0.14-2_0.04-3_0.04",
+          "1559_l_2_c_0_1_2-0_0.36-1_0.08-2_0.14-3_0.09",
+          "1560_l_2_c_0_1_3-0_0.01-1_0.08-2_0.56-3_0.28",
+          "1561_l_2_c_0_2_3-0_0.72-1_0.21-2_0.42-3_0.55",
+          "1562_l_2_c_1_2_3-0_0.25-1_0.23-2_0.01-3_1.0",
+          "1563_l_2_c_0_1_2-0_0.23-1_0.2-2_0.07-3_0.07",
+          "1564_l_2_c_0_1_3-0_0.19-1_0.09-2_0.72-3_0.23",
+          "1565_l_2_c_0_2_3-0_1.08-1_0.07-2_0.01-3_0.76",
+          "1566_l_2_c_1_2_3-0_0.6-1_0.21-2_0.04-3_0.62",
+          "1567_l_2_c_0_1_2-0_1.01-1_0.13-2_0.12-3_0.65",
+          "1568_l_2_c_0_1_3-0_1.19-1_0.35-2_1.05-3_0.23",
+          "1569_l_2_c_0_2_3-0_0.5-1_0.18-2_0.0-3_1.32",
+          "1570_l_2_c_1_2_3-0_1.06-1_0.25-2_0.56-3_0.64",
+          "1571_l_2_c_0_1_2-0_0.15-1_0.06-2_0.52-3_2.34",
+          "1572_l_2_c_0_1_3-0_0.81-1_0.41-2_0.23-3_0.34",
+          "1573_l_2_c_0_2_3-0_0.39-1_2.06-2_0.0-3_0.76",
+          "1574_l_2_c_1_2_3-0_2.06-1_0.25-2_0.06-3_0.11",
+          "1575_l_2_c_0_1_2-0_0.75-1_0.18-2_0.13-3_0.31",
+          "1576_l_2_c_0_1_3-0_0.17-1_1.11-2_0.45-3_0.38",
+          "1577_l_2_c_0_2_3-0_0.15-1_0.17-2_0.16-3_0.37",
+          "1578_l_2_c_1_2_3-0_1.89-1_0.55-2_0.19-3_0.01",
+          "1579_l_2_c_0_1_2-0_0.1-1_0.06-2_0.05-3_0.98",
+          "1580_l_2_c_0_1_3-0_0.18-1_0.36-2_1.17-3_0.38",
+          "1581_l_2_c_0_2_3-0_0.11-1_0.15-2_0.17-3_0.15",
+          "1582_l_2_c_1_2_3-0_1.12-1_0.05-2_0.34-3_0.44",
+          "1583_l_2_c_0_1_2-0_0.12-1_0.84-2_1.06-3_1.41",
+          "1584_l_2_c_0_1_3-0_0.95-1_0.34-2_0.17-3_0.96",
+          "1585_l_2_c_0_2_3-0_0.93-1_0.24-2_0.44-3_0.71",
+          "1586_l_2_c_1_2_3-0_1.68-1_0.11-2_0.74-3_0.35",
+          "1587_l_2_c_0_1_2-0_0.24-1_0.01-2_0.11-3_0.12",
+          "1588_l_2_c_0_1_3-0_0.81-1_0.01-2_0.66-3_0.24",
+          "1589_l_2_c_0_2_3-0_0.54-1_0.39-2_0.23-3_0.26",
+          "1590_l_2_c_1_2_3-0_0.85-1_0.09-2_0.19-3_1.51",
+          "1591_l_2_c_0_1_2-0_1.04-1_0.59-2_0.01-3_1.19",
+          "1592_l_2_c_0_1_3-0_0.13-1_0.09-2_0.43-3_0.36",
+          "1593_l_2_c_0_2_3-0_0.74-1_1.41-2_0.7-3_0.84",
+          "1594_l_2_c_1_2_3-0_0.64-1_0.38-2_0.13-3_0.23",
+          "1595_l_2_c_0_1_2-0_1.26-1_0.16-2_0.42-3_1.41",
+          "1596_l_2_c_0_1_3-0_0.29-1_0.29-2_0.05-3_0.12",
+          "1597_l_2_c_0_2_3-0_0.32-1_0.1-2_0.09-3_0.22",
+          "1598_l_2_c_1_2_3-0_1.26-1_0.21-2_0.53-3_0.22",
+          "1599_l_2_c_0_1_2-0_0.27-1_0.58-2_0.65-3_1.82",
+          "1600_l_2_c_0_1_3-0_0.28-1_0.1-2_1.39-3_0.03",
+          "1601_l_2_c_0_2_3-0_0.62-1_1.69-2_0.19-3_0.73",
+          "1602_l_2_c_1_2_3-0_0.18-1_0.94-2_0.33-3_0.82",
+          "1603_l_2_c_0_1_2-0_0.24-1_0.6-2_0.42-3_0.86",
+          "1604_l_2_c_0_1_3-0_0.01-1_0.88-2_1.02-3_0.01",
+          "1605_l_2_c_0_2_3-0_0.13-1_1.06-2_0.07-3_0.09",
+          "1606_l_2_c_1_2_3-0_0.22-1_0.78-2_0.15-3_1.05",
+          "1607_l_2_c_0_1_2-0_0.24-1_0.23-2_0.87-3_0.05",
+          "1608_l_2_c_0_1_3-0_0.78-1_0.0-2_1.16-3_0.46",
+          "1609_l_2_c_0_2_3-0_0.18-1_0.33-2_0.11-3_0.04",
+          "1610_l_2_c_1_2_3-0_0.9-1_0.53-2_0.1-3_0.46",
+          "1611_l_2_c_0_1_2-0_0.06-1_0.0-2_0.05-3_0.33",
+          "1612_l_2_c_0_1_3-0_0.21-1_0.67-2_0.07-3_0.17",
+          "1613_l_2_c_0_2_3-0_0.8-1_0.37-2_0.59-3_0.46",
+          "1614_l_2_c_1_2_3-0_0.92-1_0.03-2_0.84-3_0.2",
+          "1615_l_2_c_0_1_2-0_0.65-1_0.01-2_0.4-3_0.29",
+          "1616_l_2_c_0_1_3-0_0.65-1_0.04-2_0.26-3_1.31",
+          "1617_l_2_c_0_2_3-0_1.98-1_0.26-2_0.04-3_1.02",
+          "1618_l_2_c_1_2_3-0_1.52-1_0.09-2_0.17-3_0.13",
+          "1619_l_2_c_0_1_2-0_0.1-1_0.16-2_0.29-3_1.91",
+          "1620_l_2_c_0_1_3-0_0.11-1_0.01-2_1.25-3_0.42",
+          "1621_l_2_c_0_2_3-0_0.21-1_0.98-2_1.21-3_0.9",
+          "1622_l_2_c_1_2_3-0_0.65-1_0.01-2_0.32-3_0.14",
+          "1623_l_2_c_0_1_2-0_0.94-1_0.16-2_0.46-3_0.31",
+          "1624_l_2_c_0_1_3-0_0.78-1_0.58-2_1.24-3_0.54",
+          "1625_l_2_c_0_2_3-0_0.18-1_0.52-2_0.02-3_0.78",
+          "1626_l_2_c_1_2_3-0_1.49-1_0.36-2_0.62-3_0.33",
+          "1627_l_2_c_0_1_2-0_1.18-1_0.15-2_0.02-3_0.36",
+          "1628_l_2_c_0_1_3-0_0.58-1_1.11-2_0.71-3_1.16",
+          "1629_l_2_c_0_2_3-0_0.77-1_0.79-2_0.82-3_0.29",
+          "1630_l_2_c_1_2_3-0_1.11-1_1.08-2_0.22-3_0.92",
+          "1631_l_2_c_0_1_2-0_0.05-1_0.54-2_0.32-3_0.55",
+          "1632_l_2_c_0_1_3-0_0.09-1_0.19-2_0.09-3_0.2",
+          "1633_l_2_c_0_2_3-0_0.17-1_1.97-2_0.08-3_0.08",
+          "1634_l_2_c_1_2_3-0_1.2-1_0.75-2_0.02-3_0.63",
+          "1635_l_2_c_0_1_2-0_0.25-1_0.06-2_0.18-3_0.07",
+          "1636_l_2_c_0_1_3-0_0.32-1_0.42-2_0.99-3_1.04",
+          "1637_l_2_c_0_2_3-0_1.46-1_0.91-2_0.54-3_0.13",
+          "1638_l_2_c_1_2_3-0_1.16-1_0.57-2_0.0-3_0.49",
+          "1639_l_2_c_0_1_2-0_0.14-1_0.06-2_0.24-3_0.03",
+          "1640_l_2_c_0_1_3-0_0.94-1_0.68-2_0.47-3_0.62",
+          "1641_l_2_c_0_2_3-0_0.46-1_0.03-2_0.05-3_0.43",
+          "1642_l_2_c_1_2_3-0_0.02-1_0.87-2_0.04-3_0.38",
+          "1643_l_2_c_0_1_2-0_1.09-1_0.27-2_0.78-3_0.0",
+          "1644_l_2_c_0_1_3-0_0.15-1_0.35-2_0.4-3_0.07",
+          "1645_l_2_c_0_2_3-0_0.53-1_1.83-2_0.03-3_0.11",
+          "1646_l_2_c_1_2_3-0_0.86-1_0.21-2_0.0-3_0.0",
+          "1647_l_2_c_0_1_2-0_2.29-1_0.66-2_0.07-3_0.04",
+          "1648_l_2_c_0_1_3-0_0.72-1_0.11-2_0.17-3_0.0",
+          "1649_l_2_c_0_2_3-0_0.31-1_0.49-2_0.77-3_1.04",
+          "1650_l_2_c_1_2_3-0_0.31-1_0.06-2_0.45-3_0.02",
+          "1651_l_2_c_0_1_2-0_0.4-1_0.65-2_0.13-3_0.85",
+          "1652_l_2_c_0_1_3-0_0.73-1_0.15-2_1.36-3_0.13",
+          "1653_l_2_c_0_2_3-0_1.17-1_1.56-2_0.42-3_0.02",
+          "1654_l_2_c_1_2_3-0_0.01-1_0.29-2_0.25-3_0.08",
+          "1655_l_2_c_0_1_2-0_0.62-1_0.27-2_0.49-3_2.55",
+          "1656_l_2_c_0_1_3-0_0.4-1_0.25-2_0.72-3_0.31",
+          "1657_l_2_c_0_2_3-0_0.41-1_1.46-2_0.24-3_0.26",
+          "1658_l_2_c_1_2_3-0_1.81-1_0.23-2_0.04-3_0.09",
+          "1659_l_2_c_0_1_2-0_0.03-1_0.67-2_0.11-3_0.5",
+          "1660_l_2_c_0_1_3-0_0.16-1_0.47-2_1.4-3_0.5",
+          "1661_l_2_c_0_2_3-0_1.58-1_1.67-2_0.05-3_1.09",
+          "1662_l_2_c_1_2_3-0_0.84-1_0.15-2_0.27-3_0.47",
+          "1663_l_2_c_0_1_2-0_0.66-1_0.17-2_0.02-3_0.44",
+          "1664_l_2_c_0_1_3-0_0.14-1_0.78-2_1.82-3_1.29",
+          "1665_l_2_c_0_2_3-0_0.16-1_0.75-2_0.17-3_0.03",
+          "1666_l_2_c_1_2_3-0_1.56-1_0.62-2_0.26-3_0.04",
+          "1667_l_2_c_0_1_2-0_0.78-1_0.94-2_0.01-3_0.8",
+          "1668_l_2_c_0_1_3-0_1.54-1_0.31-2_0.69-3_0.35",
+          "1669_l_2_c_0_2_3-0_0.56-1_0.15-2_0.23-3_0.31",
+          "1670_l_2_c_1_2_3-0_0.24-1_0.4-2_0.1-3_0.16",
+          "1671_l_2_c_0_1_2-0_0.17-1_0.07-2_0.33-3_0.84",
+          "1672_l_2_c_0_1_3-0_0.3-1_0.49-2_1.47-3_1.27",
+          "1673_l_2_c_0_2_3-0_0.76-1_0.88-2_0.35-3_0.1",
+          "1674_l_2_c_1_2_3-0_0.82-1_0.3-2_0.07-3_0.1",
+          "1675_l_2_c_0_1_2-0_0.83-1_0.13-2_0.25-3_0.82",
+          "1676_l_2_c_0_1_3-0_0.45-1_0.08-2_1.47-3_1.33",
+          "1677_l_2_c_0_2_3-0_0.17-1_1.04-2_0.58-3_0.24",
+          "1678_l_2_c_1_2_3-0_0.03-1_0.24-2_0.51-3_0.13",
+          "1679_l_2_c_0_1_2-0_1.3-1_0.02-2_0.1-3_0.07",
+          "1680_l_2_c_0_1_3-0_0.1-1_0.17-2_0.11-3_0.81",
+          "1681_l_2_c_0_2_3-0_0.54-1_1.12-2_0.11-3_0.6",
+          "1682_l_2_c_1_2_3-0_0.12-1_0.14-2_0.83-3_0.81",
+          "1683_l_2_c_0_1_2-0_0.02-1_0.36-2_0.0-3_0.3",
+          "1684_l_2_c_0_1_3-0_1.41-1_0.05-2_0.03-3_0.2",
+          "1685_l_2_c_0_2_3-0_0.85-1_0.16-2_0.05-3_1.23",
+          "1686_l_2_c_1_2_3-0_0.48-1_0.05-2_0.09-3_1.41",
+          "1687_l_2_c_0_1_2-0_1.65-1_0.0-2_0.04-3_2.41",
+          "1688_l_2_c_0_1_3-0_0.78-1_0.01-2_0.98-3_0.55",
+          "1689_l_2_c_0_2_3-0_0.03-1_1.7-2_0.03-3_0.11",
+          "1690_l_2_c_1_2_3-0_0.51-1_0.79-2_0.61-3_0.22",
+          "1691_l_2_c_0_1_2-0_1.54-1_0.05-2_0.12-3_2.07",
+          "1692_l_2_c_0_1_3-0_0.79-1_0.24-2_0.86-3_1.27",
+          "1693_l_2_c_2_3-0_0.8-1_1.53-2_0.09-3_0.56",
+          "1694_l_2_r-0_0.06-1_0.48-2_0.65-3_1.33",
+          "1695_l_2_r-0_0.19-1_0.85-2_1.53-3_0.54",
+          "1696_l_2_r-0_0.82-1_1.0-2_0.48-3_1.02",
+          "1697_l_2_r-0_0.37-1_1.25-2_2.82-3_0.03",
+          "1698_l_2_r-0_0.94-1_3.91-2_0.96-3_0.91",
+          "1699_l_2_r-0_1.3-1_0.43-2_0.57-3_2.33",
+          "1700_l_2_r-0_1.29-1_1.85-2_1.34-3_2.15",
+          "1701_l_2_r-0_1.17-1_0.79-2_1.13-3_0.38",
+          "1702_l_2_r-0_1.32-1_0.84-2_0.42-3_0.72",
+          "1703_l_2_r-0_0.6-1_0.85-2_1.93-3_0.96",
+          "1704_l_2_r-0_1.45-1_0.08-2_1.07-3_0.65",
+          "1705_l_2_r-0_0.01-1_0.35-2_0.28-3_0.91",
+          "1706_l_2_r-0_0.04-1_3.24-2_1.8-3_0.13",
+          "1707_l_2_r-0_0.13-1_0.28-2_0.0-3_0.35",
+          "1708_l_2_r-0_0.34-1_0.22-2_0.09-3_0.87",
+          "1709_l_2_r-0_1.8-1_1.5-2_0.62-3_2.9",
+          "1710_l_2_r-0_2.65-1_0.15-2_1.98-3_0.67",
+          "1711_l_2_r-0_0.71-1_1.34-2_0.72-3_0.77",
+          "1712_l_2_r-0_0.21-1_0.91-2_0.12-3_0.96",
+          "1713_l_2_r-0_0.71-1_1.13-2_0.41-3_2.23",
+          "1714_l_2_r-0_1.52-1_2.31-2_0.9-3_1.38",
+          "1715_l_2_r-0_0.5-1_1.29-2_0.42-3_0.93",
+          "1716_l_2_r-0_0.31-1_0.73-2_0.54-3_1.98",
+          "1717_l_2_r-0_1.3-1_0.5-2_1.6-3_1.7",
+          "1718_l_2_r-0_0.64-1_0.14-2_0.61-3_0.79",
+          "1719_l_2_r-0_2.09-1_0.77-2_1.28-3_1.47",
+          "1720_l_2_r-0_1.2-1_1.25-2_0.23-3_0.78",
+          "1721_l_2_r-0_0.87-1_0.58-2_0.47-3_0.92",
+          "1722_l_2_r-0_0.88-1_0.31-2_1.29-3_0.27",
+          "1723_l_2_r-0_0.72-1_0.79-2_0.75-3_1.3",
+          "1724_l_2_r-0_1.25-1_0.59-2_0.7-3_0.85",
+          "1725_l_2_r-0_0.66-1_0.16-2_0.66-3_0.63",
+          "1726_l_2_r-0_1.31-1_1.03-2_0.25-3_0.11",
+          "1727_l_2_r-0_0.19-1_0.12-2_0.46-3_0.88",
+          "1728_l_2_r-0_1.33-1_0.03-2_0.17-3_0.74",
+          "1729_l_2_r-0_0.13-1_1.31-2_1.7-3_0.44",
+          "1730_l_2_r-0_1.64-1_0.26-2_0.57-3_1.32",
+          "1731_l_2_r-0_1.38-1_0.71-2_0.34-3_0.2",
+          "1732_l_2_r-0_0.69-1_0.66-2_0.85-3_0.41",
+          "1733_l_2_r-0_1.16-1_0.71-2_0.18-3_0.49",
+          "1734_l_2_r-0_2.04-1_0.69-2_2.16-3_1.31",
+          "1735_l_2_r-0_0.85-1_0.01-2_1.34-3_0.69",
+          "1736_l_2_r-0_1.54-1_2.1-2_0.02-3_0.28",
+          "1737_l_2_r-0_0.3-1_1.77-2_0.57-3_1.07",
+          "1738_l_2_r-0_1.28-1_0.02-2_1.08-3_0.28",
+          "1739_l_2_r-0_0.77-1_0.11-2_0.66-3_0.43",
+          "1740_l_2_r-0_0.2-1_1.01-2_1.13-3_1.57",
+          "1741_l_2_r-0_0.2-1_0.65-2_0.74-3_1.14",
+          "1742_l_2_r-0_0.47-1_0.96-2_1.88-3_0.18",
+          "1743_l_2_r-0_0.58-1_1.37-2_2.71-3_1.1",
+          "1744_l_2_r-0_1.35-1_0.67-2_0.81-3_1.18",
+          "1745_l_2_r-0_0.73-1_0.78-2_1.1-3_1.32",
+          "1746_l_2_r-0_0.41-1_0.62-2_0.29-3_0.63",
+          "1747_l_2_r-0_0.07-1_0.11-2_0.95-3_0.58",
+          "1748_l_2_r-0_0.18-1_0.14-2_0.35-3_0.48",
+          "1749_l_2_r-0_0.28-1_0.38-2_0.57-3_0.69",
+          "1750_l_2_r-0_0.81-1_0.5-2_1.57-3_0.63",
+          "1751_l_2_r-0_0.9-1_1.42-2_0.99-3_1.04",
+          "1752_l_2_r-0_0.02-1_0.46-2_0.06-3_0.19",
+          "1753_l_2_r-0_0.74-1_1.46-2_0.54-3_0.03",
+          "1754_l_2_r-0_0.73-1_0.35-2_1.55-3_1.58",
+          "1755_l_2_r-0_0.72-1_0.49-2_0.75-3_1.34",
+          "1756_l_2_r-0_0.39-1_0.32-2_1.08-3_0.34",
+          "1757_l_2_r-0_0.36-1_2.19-2_0.62-3_0.03",
+          "1758_l_2_r-0_0.26-1_0.55-2_0.27-3_1.26",
+          "1759_l_2_r-0_0.73-1_0.86-2_0.54-3_0.1",
+          "1760_l_2_r-0_0.12-1_0.58-2_0.87-3_1.39",
+          "1761_l_2_r-0_0.34-1_0.65-2_0.98-3_0.95",
+          "1762_l_2_r-0_0.35-1_1.83-2_0.4-3_2.21",
+          "1763_l_2_r-0_0.39-1_1.26-2_0.86-3_1.9",
+          "1764_l_2_r-0_1.29-1_1.14-2_0.5-3_1.15",
+          "1765_l_2_r-0_0.57-1_0.41-2_1.77-3_1.03",
+          "1766_l_2_r-0_0.49-1_0.48-2_0.77-3_0.26",
+          "1767_l_2_r-0_1.08-1_1.74-2_1.97-3_0.89",
+          "1768_l_2_r-0_1.17-1_0.15-2_0.24-3_0.4",
+          "1769_l_2_r-0_0.19-1_0.51-2_1.78-3_1.03",
+          "1770_l_2_r-0_0.41-1_0.27-2_1.46-3_2.34",
+          "1771_l_2_r-0_0.9-1_0.2-2_0.87-3_0.81",
+          "1772_l_2_r-0_0.09-1_0.78-2_1.56-3_2.23",
+          "1773_l_2_r-0_0.29-1_0.68-2_1.23-3_0.71",
+          "1774_l_2_r-0_0.6-1_1.58-2_0.22-3_0.3",
+          "1775_l_2_r-0_0.76-1_0.69-2_1.51-3_0.27",
+          "1776_l_2_r-0_0.36-1_1.5-2_0.84-3_1.56",
+          "1777_l_2_r-0_2.67-1_0.06-2_1.31-3_2.26",
+          "1778_l_2_r-0_0.27-1_0.41-2_0.04-3_3.33",
+          "1779_l_2_r-0_0.36-1_0.89-2_1.09-3_0.3",
+          "1780_l_2_r-0_1.01-1_0.39-2_2.79-3_0.74",
+          "1781_l_2_r-0_1.6-1_0.51-2_1.34-3_0.23",
+          "1782_l_2_r-0_0.01-1_0.12-2_0.8-3_0.11",
+          "1783_l_2_r-0_0.65-1_1.38-2_0.57-3_0.72",
+          "1784_l_2_r-0_0.47-1_0.71-2_0.42-3_0.46",
+          "1785_l_2_r-0_0.69-1_0.32-2_0.25-3_0.07",
+          "1786_l_2_r-0_0.92-1_0.22-2_0.46-3_0.64",
+          "1787_l_2_r-0_0.66-1_0.3-2_0.22-3_1.3",
+          "1788_l_2_r-0_1.55-1_1.75-2_0.49-3_0.13",
+          "1789_l_2_r-0_0.45-1_0.21-2_3.13-3_0.16",
+          "1790_l_2_r-0_2.68-1_0.39-2_1.41-3_0.6",
+          "1791_l_2_r-0_0.05-1_0.38-2_1.4-3_0.32",
+          "1792_l_2_r-0_0.4-1_0.55-2_1.0-3_1.37",
+          "1793_l_2_r-0_0.08-1_0.01-2_0.36-3_0.32",
+          "1794_l_2_r-0_0.5-1_1.14-2_0.33-3_2.67",
+          "1795_l_2_r-0_1.06-1_0.58-2_0.72-3_0.1",
+          "1796_l_2_r-0_2.55-1_1.34-2_0.37-3_1.23",
+          "1797_l_2_r-0_0.9-1_1.54-2_0.19-3_0.59",
+          "1798_l_2_r-0_0.47-1_1.01-2_0.07-3_1.92",
+          "1799_l_2_r-0_0.86-1_0.05-2_1.07-3_0.74",
+          "1800_l_2_r-0_0.41-1_0.28-2_0.58-3_1.66",
+          "1801_l_2_r-0_0.75-1_0.67-2_0.73-3_0.08",
+          "1802_l_2_r-0_0.65-1_1.38-2_0.25-3_1.18",
+          "1803_l_2_r-0_2.29-1_0.34-2_2.05-3_0.55",
+          "1804_l_2_r-0_1.49-1_0.75-2_1.64-3_0.0",
+          "1805_l_2_r-0_0.0-1_0.58-2_0.39-3_0.56",
+          "1806_l_2_r-0_0.18-1_1.34-2_0.11-3_0.88",
+          "1807_l_2_r-0_0.12-1_0.36-2_0.21-3_1.44",
+          "1808_l_2_r-0_1.98-1_0.97-2_0.82-3_1.27",
+          "1809_l_2_r-0_0.85-1_0.49-2_0.98-3_0.07",
+          "1810_l_2_r-0_0.79-1_2.29-2_0.64-3_0.75",
+          "1811_l_2_r-0_0.1-1_0.83-2_0.38-3_1.39",
+          "1812_l_2_r-0_0.98-1_2.04-2_0.3-3_0.53",
+          "1813_l_2_r-0_0.46-1_0.14-2_1.74-3_0.23",
+          "1814_l_2_r-0_0.9-1_0.37-2_0.2-3_0.1",
+          "1815_l_2_r-0_0.23-1_0.03-2_0.59-3_1.09",
+          "1816_l_2_r-0_2.62-1_1.56-2_0.54-3_1.58",
+          "1817_l_2_r-0_0.63-1_0.36-2_0.82-3_1.22",
+          "1818_l_2_r-0_0.26-1_0.62-2_1.03-3_0.58",
+          "1819_l_2_r-0_1.27-1_0.35-2_2.19-3_0.29",
+          "1820_l_2_r-0_0.05-1_0.09-2_1.25-3_0.64",
+          "1821_l_2_r-0_1.3-1_1.6-2_1.72-3_1.22",
+          "1822_l_2_r-0_2.13-1_0.89-2_0.16-3_1.1",
+          "1823_l_2_r-0_0.03-1_0.23-2_0.24-3_0.5",
+          "1824_l_2_r-0_2.4-1_2.52-2_0.68-3_0.12",
+          "1825_l_2_r-0_0.9-1_0.31-2_2.1-3_0.93",
+          "1826_l_2_r-0_0.52-1_0.75-2_0.66-3_1.04",
+          "1827_l_2_r-0_1.32-1_1.54-2_1.36-3_0.06",
+          "1828_l_2_r-0_1.27-1_0.17-2_0.6-3_1.02",
+          "1829_l_2_r-0_0.25-1_0.34-2_0.71-3_0.95",
+          "1830_l_2_r-0_0.28-1_0.61-2_1.6-3_0.67",
+          "1831_l_2_r-0_0.25-1_1.0-2_0.36-3_0.09",
+          "1832_l_2_r-0_0.46-1_0.68-2_2.16-3_0.76",
+          "1833_l_2_r-0_1.04-1_1.69-2_2.31-3_0.78",
+          "1834_l_2_r-0_0.04-1_0.17-2_0.2-3_0.66",
+          "1835_l_2_r-0_1.26-1_1.4-2_0.33-3_1.02",
+          "1836_l_2_r-0_0.16-1_0.91-2_1.39-3_3.5",
+          "1837_l_2_r-0_0.47-1_0.18-2_0.66-3_0.64",
+          "1838_l_2_r-0_0.28-1_2.69-2_1.13-3_0.27",
+          "1839_l_2_r-0_1.4-1_0.02-2_0.09-3_0.47",
+          "1840_l_2_r-0_1.13-1_1.26-2_0.91-3_0.31",
+          "1841_l_2_r-0_0.18-1_1.59-2_0.39-3_1.59",
+          "1842_l_2_r-0_0.69-1_2.0-2_1.16-3_0.83",
+          "1843_l_2_r-0_0.73-1_0.58-2_1.26-3_0.85",
+          "1844_l_2_r-0_0.84-1_0.03-2_0.79-3_0.19",
+          "1845_l_2_r-0_0.1-1_1.54-2_0.75-3_0.98",
+          "1846_l_2_r-0_1.0-1_0.15-2_2.26-3_0.67",
+          "1847_l_2_r-0_0.05-1_2.84-2_1.17-3_0.97",
+          "1848_l_2_r-0_0.42-1_0.25-2_0.5-3_0.3",
+          "1849_l_2_r-0_0.76-1_0.8-2_2.28-3_0.03",
+          "1850_l_2_r-0_0.17-1_0.72-2_1.67-3_0.93",
+          "1851_l_2_r-0_0.49-1_1.25-2_0.07-3_1.17",
+          "1852_l_2_r-0_0.91-1_1.73-2_0.09-3_0.8",
+          "1853_l_2_r-0_0.25-1_0.18-2_0.57-3_1.28",
+          "1854_l_2_r-0_0.27-1_0.31-2_0.35-3_1.6",
+          "1855_l_2_r-0_1.21-1_0.49-2_3.44-3_0.39",
+          "1856_l_2_r-0_0.59-1_0.38-2_1.44-3_0.19",
+          "1857_l_2_r-0_0.97-1_0.66-2_0.78-3_0.35",
+          "1858_l_2_r-0_1.53-1_1.4-2_0.07-3_0.81",
+          "1859_l_2_r-0_1.16-1_1.16-2_1.09-3_1.78",
+          "1860_l_2_r-0_0.68-1_1.61-2_0.88-3_0.82",
+          "1861_l_2_r-0_0.52-1_2.44-2_1.71-3_1.06",
+          "1862_l_2_r-0_1.6-1_0.02-2_2.03-3_1.29",
+          "1863_l_2_r-0_1.18-1_0.2-2_1.1-3_0.32",
+          "1864_l_2_r-0_0.81-1_2.02-2_1.13-3_0.69",
+          "1865_l_2_r-0_1.24-1_0.15-2_0.43-3_1.1",
+          "1866_l_2_r-0_0.18-1_2.57-2_1.16-3_1.07",
+          "1867_l_2_r-0_0.98-1_0.1-2_0.47-3_0.75",
+          "1868_l_2_r-0_1.04-1_1.08-2_1.49-3_1.14",
+          "1869_l_2_r-0_0.15-1_1.23-2_1.34-3_0.45",
+          "1870_l_2_r-0_0.39-1_1.03-2_0.13-3_1.14",
+          "1871_l_2_r-0_0.01-1_0.88-2_1.39-3_1.34",
+          "1872_l_2_r-0_1.65-1_1.08-2_2.57-3_1.2",
+          "1873_l_2_r-0_0.12-1_1.77-2_0.37-3_0.51",
+          "1874_l_2_r-0_0.74-1_0.5-2_2.33-3_1.39",
+          "1875_l_2_r-0_0.13-1_0.73-2_1.59-3_3.12",
+          "1876_l_2_r-0_0.03-1_0.72-2_0.89-3_0.7",
+          "1877_l_2_r-0_2.08-1_0.98-2_0.07-3_0.13",
+          "1878_l_2_r-0_1.08-1_1.05-2_1.05-3_0.25",
+          "1879_l_2_r-0_0.96-1_0.39-2_1.73-3_2.03",
+          "1880_l_2_r-0_1.17-1_0.44-2_1.06-3_1.03",
+          "1881_l_2_r-0_0.73-1_1.34-2_1.02-3_0.83",
+          "1882_l_2_r-0_1.46-1_1.76-2_1.31-3_0.75",
+          "1883_l_2_r-0_1.45-1_1.07-2_0.44-3_1.48",
+          "1884_l_2_r-0_1.49-1_0.74-2_0.11-3_0.85",
+          "1885_l_2_r-0_2.14-1_0.25-2_0.15-3_1.32",
+          "1886_l_2_r-0_0.9-1_0.26-2_0.58-3_1.7",
+          "1887_l_2_r-0_1.18-1_0.39-2_1.76-3_0.31",
+          "1888_l_2_r-0_0.93-1_1.94-2_0.63-3_0.58",
+          "1889_l_2_r-0_0.74-1_0.91-2_0.67-3_0.92",
+          "1890_l_2_r-0_1.26-1_0.69-2_0.35-3_1.68",
+          "1891_l_2_r-0_0.56-1_0.13-2_1.02-3_0.01",
+          "1892_l_2_r-0_0.78-1_0.87-2_0.43-3_1.05",
+          "1893_l_2_r-0_1.16-1_1.08-2_0.06-3_0.09",
+          "1894_l_2_r-0_1.36-1_1.68-2_1.58-3_0.36",
+          "1895_l_2_r-0_0.71-1_1.41-2_1.23-3_0.67",
+          "1896_l_2_r-0_0.08-1_0.47-2_1.32-3_0.4",
+          "1897_l_2_r-0_0.14-1_1.73-2_0.6-3_1.08",
+          "1898_l_2_r-0_1.72-1_0.03-2_2.02-3_1.27",
+          "1899_l_2_r-0_0.0-1_1.17-2_0.11-3_0.75",
+          "1900_l_2_r-0_1.71-1_1.44-2_0.29-3_0.81",
+          "1901_l_2_r-0_1.91-1_0.0-2_2.02-3_1.13",
+          "1902_l_2_r-0_1.86-1_0.47-2_0.54-3_0.03",
+          "1903_l_2_r-0_0.27-1_0.6-2_0.03-3_0.21",
+          "1904_l_2_r-0_0.2-1_0.9-2_1.15-3_0.87",
+          "1905_l_2_r-0_1.46-1_0.88-2_0.03-3_1.66",
+          "1906_l_2_r-0_0.66-1_0.61-2_1.23-3_1.07",
+          "1907_l_2_r-0_0.02-1_1.28-2_1.74-3_0.09",
+          "1908_l_2_r-0_0.94-1_0.68-2_1.76-3_1.39",
+          "1909_l_2_r-0_0.24-1_1.26-2_1.45-3_1.16",
+          "1910_l_2_r-0_0.9-1_0.24-2_1.06-3_0.04",
+          "1911_l_2_r-0_0.5-1_0.13-2_1.19-3_0.58",
+          "1912_l_2_r-0_0.11-1_0.14-2_2.14-3_0.42",
+          "1913_l_2_r-0_1.43-1_0.32-2_0.25-3_0.46",
+          "1914_l_2_r-0_0.09-1_0.13-2_1.92-3_0.06",
+          "1915_l_2_r-0_0.69-1_0.46-2_0.5-3_1.52",
+          "1916_l_2_r-0_0.26-1_1.15-2_1.81-3_0.72",
+          "1917_l_2_r-0_0.93-1_0.01-2_0.99-3_1.37",
+          "1918_l_2_r-0_2.0-1_0.72-2_0.77-3_0.84",
+          "1919_l_2_r-0_1.58-1_1.33-2_0.28-3_0.09",
+          "1920_l_2_r-0_0.28-1_0.95-2_2.65-3_0.95",
+          "1921_l_2_r-0_2.1-1_0.05-2_0.49-3_0.5",
+          "1922_l_2_r-0_0.22-1_0.52-2_0.69-3_0.25",
+          "1923_l_2_r-0_1.39-1_0.87-2_0.73-3_1.46",
+          "1924_l_2_r-0_1.08-1_0.35-2_1.4-3_0.02",
+          "1925_l_2_r-0_1.05-1_2.01-2_0.77-3_0.57",
+          "1926_l_2_r-0_1.03-1_0.3-2_0.02-3_1.0",
+          "1927_l_2_r-0_0.07-1_0.7-2_0.2-3_1.78",
+          "1928_l_2_r-0_0.6-1_0.34-2_0.08-3_1.27",
+          "1929_l_2_r-0_0.23-1_0.07-2_0.63-3_0.23",
+          "1930_l_2_r-0_1.14-1_1.26-2_0.49-3_0.47",
+          "1931_l_2_r-0_0.26-1_0.85-2_0.81-3_1.82",
+          "1932_l_2_r-0_2.09-1_1.1-2_0.53-3_0.78",
+          "1933_l_2_r-0_0.52-1_0.42-2_1.45-3_0.49",
+          "1934_l_2_r-0_1.85-1_0.54-2_0.52-3_0.55",
+          "1935_l_2_r-0_0.18-1_1.09-2_0.09-3_0.2",
+          "1936_l_2_r-0_1.77-1_0.22-2_2.35-3_1.82",
+          "1937_l_2_r-0_1.27-1_1.0-2_0.16-3_1.15",
+          "1938_l_2_r-0_1.48-1_0.88-2_0.04-3_1.49",
+          "1939_l_2_r-0_0.73-1_0.83-2_0.18-3_1.35",
+          "1940_l_2_r-0_1.8-1_0.87-2_0.78-3_0.17",
+          "1941_l_2_r-0_0.44-1_1.78-2_0.89-3_1.23",
+          "1942_l_2_r-0_0.18-1_0.37-2_0.76-3_0.48",
+          "1943_l_2_r-0_1.76-1_0.06-2_0.68-3_1.54",
+          "1944_l_2_r-0_0.26-1_0.22-2_0.97-3_1.64",
+          "1945_l_2_r-0_0.43-1_0.43-2_0.66-3_0.26",
+          "1946_l_2_r-0_0.74-1_0.44-2_0.78-3_0.53",
+          "1947_l_2_r-0_0.11-1_0.78-2_0.58-3_0.12",
+          "1948_l_2_r-0_1.72-1_0.07-2_0.28-3_0.82",
+          "1949_l_2_r-0_0.74-1_0.68-2_0.75-3_0.29",
+          "1950_l_2_r-0_1.32-1_1.52-2_0.7-3_0.69",
+          "1951_l_2_r-0_1.02-1_1.13-2_0.33-3_0.2",
+          "1952_l_2_r-0_0.01-1_0.95-2_1.51-3_0.58",
+          "1953_l_2_r-0_1.8-1_0.2-2_1.49-3_0.54",
+          "1954_l_2_r-0_1.06-1_0.2-2_0.51-3_0.55",
+          "1955_l_2_r-0_0.51-1_1.21-2_0.15-3_1.56",
+          "1956_l_2_r-0_1.66-1_2.74-2_0.15-3_0.94",
+          "1957_l_2_r-0_1.7-1_1.86-2_1.33-3_0.76",
+          "1958_l_2_r-0_0.01-1_1.0-2_1.16-3_1.05",
+          "1959_l_2_r-0_0.05-1_0.02-2_0.45-3_2.22",
+          "1960_l_2_r-0_0.94-1_0.19-2_1.23-3_2.67",
+          "1961_l_2_r-0_1.33-1_1.54-2_2.08-3_1.22",
+          "1962_l_2_r-0_0.56-1_0.71-2_0.08-3_0.22",
+          "1963_l_2_r-0_1.44-1_0.27-2_0.41-3_0.05",
+          "1964_l_2_r-0_0.06-1_0.39-2_0.25-3_0.39",
+          "1965_l_2_r-0_0.3-1_0.5-2_0.84-3_1.51",
+          "1966_l_2_r-0_1.37-1_2.65-2_0.29-3_0.81",
+          "1967_l_2_r-0_0.85-1_0.38-2_0.27-3_1.24",
+          "1968_l_2_r-0_1.66-1_1.16-2_0.02-3_0.42",
+          "1969_l_2_r-0_0.59-1_0.11-2_0.37-3_0.79",
+          "1970_l_2_r-0_0.72-1_0.09-2_1.49-3_1.04",
+          "1971_l_2_r-0_0.01-1_0.3-2_1.19-3_0.53",
+          "1972_l_2_r-0_0.58-1_0.75-2_0.34-3_0.99",
+          "1973_l_2_r-0_0.05-1_1.0-2_0.13-3_0.05",
+          "1974_l_2_r-0_0.63-1_3.46-2_1.02-3_1.54",
+          "1975_l_2_r-0_0.45-1_0.3-2_1.14-3_0.11",
+          "1976_l_2_r-0_0.96-1_0.36-2_0.33-3_0.65",
+          "1977_l_2_r-0_1.59-1_1.69-2_1.51-3_0.07",
+          "1978_l_2_r-0_0.47-1_1.04-2_0.37-3_0.76",
+          "1979_l_2_r-0_0.79-1_0.87-2_0.82-3_3.42",
+          "1980_l_2_r-0_0.26-1_1.75-2_2.34-3_0.98",
+          "1981_l_2_r-0_1.15-1_0.57-2_0.59-3_1.89",
+          "1982_l_2_r-0_1.49-1_0.92-2_0.46-3_0.84",
+          "1983_l_2_r-0_1.29-1_0.35-2_0.63-3_1.91",
+          "1984_l_2_r-0_0.75-1_2.05-2_0.53-3_0.28",
+          "1985_l_2_r-0_0.43-1_0.42-2_0.42-3_0.08",
+          "1986_l_2_r-0_0.07-1_0.99-2_1.7-3_0.98",
+          "1987_l_2_r-0_0.71-1_0.86-2_1.89-3_0.98",
+          "1988_l_2_r-0_1.23-1_0.03-2_1.96-3_0.57",
+          "1989_l_2_r-0_1.48-1_0.69-2_1.18-3_0.13",
+          "1990_l_2_r-0_0.2-1_0.94-2_0.33-3_1.44",
+          "1991_l_2_r-0_0.47-1_0.3-2_0.07-3_1.05",
+          "1992_l_2_r-0_0.57-1_0.66-2_2.18-3_0.63",
+          "1993_l_2_r-0_0.48-1_2.22-2_0.75-3_0.41",
+          "1994_l_2_r-0_0.33-1_1.0-2_1.25-3_0.03",
+          "1995_l_2_r-0_2.07-1_0.49-2_0.51-3_0.33",
+          "1996_l_2_r-0_0.31-1_1.02-2_1.08-3_0.01",
+          "1997_l_2_r-0_1.91-1_1.01-2_1.7-3_0.98"
          ],
          "type": "scatter3d",
          "x": [
-          1.1594931107967341,
-          5.451494989448832,
-          -2.382562204292351,
-          3.9280491662494965,
-          1.3283830095497984,
-          -2.2611108512202596,
-          -4.513839911130375,
-          -4.627518130086692,
-          -4.2427283241446,
-          4.188107422988541,
-          4.596325988373823,
-          0.9300793835980776,
-          -2.427277454669105,
-          4.392902456678801,
-          4.063396548955373,
-          0.4813327397913668,
-          4.616968420060963,
-          -5.451607060679496,
-          -4.290570899438033,
-          -4.105965396421797,
-          4.906515296089987,
-          4.820796964202015,
-          -4.161127214088809,
-          -4.648096805893644,
-          -4.941660350874078,
-          -6.040177042177849,
-          3.3965878338145625,
-          -4.498688836832028,
-          -4.177598505585814,
-          -5.439173325952952,
-          6.445301243127364,
-          -4.314151841389329,
-          2.8858680668640613,
-          4.990064631087283,
-          3.9654513897841133,
-          4.597412536232635,
-          4.678865174353367,
-          -6.276019202411582,
-          5.997796924043357,
-          4.454527832267141,
-          5.623922554480298,
-          4.404714126232969,
-          -4.534838897034847,
-          4.54436866171965,
-          -5.865398954165418,
-          3.2689736063836,
-          1.115385691997932,
-          -3.1056278728026574,
-          -3.598622843256011,
-          0.370978142572168,
-          5.244893628571042,
-          5.95785052362808,
-          5.988695581592494,
-          -5.898125757410534,
-          3.8622157850732393,
-          -5.479060725295158,
-          6.193515287992923,
-          -3.642493401024835,
-          -0.089062182886393,
-          4.670280785584219,
-          -4.141112390937981,
-          -4.945555157096765,
-          -2.708318608005777,
-          0.5752012957423187,
-          5.149610045067573,
-          -4.198694980918225,
-          4.6721606709231995,
-          -5.5704891832681085,
-          3.8575597583781107,
-          -6.5037167575829695,
-          2.8868728113213926,
-          -5.221644411348874,
-          -3.654740988040343,
-          -6.70677440263102,
-          -4.526552721493037,
-          5.706755408755928,
-          -3.639954158076567,
-          3.5544170321737,
-          -5.225427365978084,
-          -3.547806375951077,
-          6.296833478470784,
-          -3.8519176315631563,
-          -4.284321206950975,
-          -4.689401517361475,
-          -4.059670102335465,
-          0.5354854641599986,
-          5.066180494874501,
-          0.06849006335144536,
-          4.934774065595859,
-          7.44795625770868,
-          4.8598894394257375,
-          4.188538662872738,
-          -0.08825559392008397,
-          1.3776553598709214,
-          5.894464575097074,
-          4.5464746388967905,
-          -4.139339492149648,
-          5.491044717432286,
-          3.1951457916593213,
-          6.267831766003215,
-          -5.420721198578847,
-          5.518525668595027,
-          4.89596186343478,
-          4.245695194662473,
-          -4.972358740250219,
-          0.3319987279916003,
-          4.755155023894294,
-          -5.623843713384322,
-          -5.291435735546275,
-          4.426038669556407,
-          -2.972152619265383,
-          -5.231271241587388,
-          4.3859335451456385,
-          -4.534609637125483,
-          1.6559796716398507,
-          3.995687984862225,
-          -2.677764808770471,
-          -5.329667184475036,
-          -5.499360147431588,
-          0.7235939076975836,
-          6.879508673426255,
-          4.0369816963301535,
-          3.7270403718598115,
-          4.318712880575074,
-          5.188421679312556,
-          6.710558142676458,
-          -5.201257626833298,
-          -5.0430344176701105,
-          -4.54890928835317,
-          -4.265002813011255,
-          5.337322144448347,
-          2.999802929883977,
-          -3.583650331800512,
-          5.022199325505568,
-          -5.074513209839846,
-          -4.726514757517051,
-          -4.4063614930843364,
-          2.5839341724849128,
-          4.763396324187927,
-          5.0912268569264745,
-          -3.9128951288500913,
-          6.1917137388744345,
-          -5.592506309972199,
-          -5.300429606660864,
-          2.8196523044222013,
-          3.407703322708461,
-          -4.144244359010646,
-          5.383791136813439,
-          -4.342666260899962,
-          -4.788940830542681,
-          -4.443901555267098,
-          -4.22688908855534,
-          1.4047958067304143,
-          0.8598474375878951,
-          -1.90798888268416,
-          -2.3899374105522684,
-          -3.6100992014178677,
-          6.078862590309838,
-          -5.120300468885144,
-          5.276515942556672,
-          5.886441121632483,
-          -3.071670849284956,
-          4.806867272166833,
-          -5.527957320552708,
-          -3.908104527083433,
-          -4.055002642280469,
-          -6.118294880217512,
-          4.704539350746789,
-          -6.044722300631708,
-          -6.300457627445511,
-          -3.1132596221390836,
-          -5.13699013186168,
-          4.282831847444168,
-          3.7121235120518277,
-          -4.9143817113988,
-          0.9262261855509377,
-          5.275962031547235,
-          5.837732820402266,
-          -3.532187844688769,
-          -4.230980098742769,
-          -5.2248999556630675,
-          -4.5232285436579245,
-          3.1149759654560576,
-          1.2440549379469577,
-          3.947060635019104,
-          2.1120977509886414,
-          5.400669496183828,
-          6.31000786978234,
-          4.781596111449487,
-          4.440537123132054,
-          4.743915548004776,
-          4.734479000551976,
-          -4.641475198623916,
-          -4.122151662677166,
-          -4.001878556934008,
-          6.682437754535191,
-          4.742968281688166,
-          -4.010139344218444,
-          -5.685449009822879,
-          0.9236256990189091,
-          3.6255527049045697,
-          -4.3625697631724565,
-          -3.3094961990134824,
-          -2.009494761969281,
-          0.9465330556431508,
-          4.453919312595427,
-          1.188852106711172,
-          -5.298003984708767,
-          -3.5936297480636585,
-          3.646336211865865,
-          -4.11855625054748,
-          4.810988666616084,
-          -4.814265625198698,
-          -5.093009899214075,
-          -6.155079005806064,
-          3.98024302756399,
-          -4.959041484130927,
-          6.279168244800637,
-          5.973282516605398,
-          -3.612291139670695,
-          -5.1329055817661535,
-          5.842374496805664,
-          3.761583771496191,
-          -5.297464464581252,
-          4.288677750109784,
-          -4.644635096777394,
-          -6.246576063253547,
-          -4.179099362348742,
-          -3.2762293554169135,
-          3.261263059191942,
-          6.245818476571795,
-          5.474220139460293,
-          -3.444646036832327,
-          -4.700204842455706,
-          -6.242396679643979,
-          4.132088364704491,
-          -3.2386249199309813,
-          5.520108579017817,
-          4.155560303530369,
-          4.374921348934196,
-          -4.300886126842379,
-          -3.0697733294120018,
-          -4.093400049655713,
-          3.552369518362934,
-          -4.407784004553809,
-          -0.7779668215970184,
-          0.7764121260249,
-          -4.951552242541443,
-          -3.6298443030560485,
-          4.224312230033078,
-          5.137784941129884,
-          -4.9975623316449855,
-          2.054047544405793,
-          4.723691489714466,
-          5.006641586316337,
-          1.0689444947777211,
-          5.671179423622877,
-          -0.4302218637587547,
-          -3.672045031135852,
-          3.5180338364454373,
-          5.5623003619391245,
-          4.37337457927579,
-          -6.103357408969324,
-          4.782479919324986,
-          6.206386300622445,
-          -4.148064628820823,
-          -0.006501286672751294,
-          -3.5642673728297862,
-          1.3742197477965648,
-          3.4853430440595123,
-          -2.949602643036989,
-          1.4569825665732692,
-          4.172606367937778,
-          4.726877394000869,
-          -5.432271637636307,
-          0.8115939856918482,
-          4.757128138475492,
-          -4.73482302433343,
-          4.357885668366626,
-          -6.183528627986631,
-          5.222764089667935,
-          3.412589373730938,
-          0.7162939399533463,
-          -4.379773253478961,
-          -0.6824085009683034,
-          4.32388953695798,
-          -4.477616644160686,
-          5.0313414564643,
-          -5.230939849883055,
-          -4.542894456526158,
-          -6.177500499887472,
-          -4.931105039712812,
-          6.260687458067866,
-          -4.181435637804275,
-          -4.8546311667878435,
-          5.771213399313722,
-          -3.114065760179665,
-          0.9865033095348235,
-          -4.573812867127182,
-          3.248958706611568,
-          -1.1000810757060613,
-          -2.0928698659155147,
-          -5.100991529777142,
-          0.9543586682830937,
-          2.1030904835943387,
-          -5.877874850343206,
-          5.358249785012939,
-          1.6031784540599696,
-          5.2929032663854665,
-          3.8029759682295934,
-          3.910702115824642,
-          3.7780826936993703,
-          -3.6475196304331,
-          3.9942414633017393,
-          1.7095163247880332,
-          5.1360350610873455,
-          -4.370424498820422,
-          4.641005291891183,
-          6.448223802364905,
-          5.829958410184094,
-          4.2643557680569755,
-          -3.7847321415394632,
-          6.340597298405006,
-          2.7375483616779377,
-          1.712104194784673,
-          -5.715380182463404,
-          -5.0332422707162605,
-          0.2256083237551184,
-          -5.98048156786818,
-          -2.7153697808798785,
-          4.299278902077599,
-          -4.295367166569517,
-          6.504908487697338
+          -0.09325690187411163,
+          -1.1016440048805507,
+          0.0010877784721376295,
+          1.4382521907883568,
+          -0.09298496476789311,
+          -1.0574074668924296,
+          3.385641914685392,
+          -0.7244329573617725,
+          1.2900738145688753,
+          2.3429854109784825,
+          -1.6279073581324914,
+          -0.3583538144968496,
+          0.043961130353871204,
+          -0.7046771573298432,
+          0.2760083540059118,
+          -0.8036650726215924,
+          -2.0639585533477733,
+          1.2877734883721756,
+          -0.40921389598701224,
+          1.024242192542652,
+          0.03666926282431157,
+          0.028723185998206686,
+          -0.7078359439451272,
+          -1.367209029734657,
+          1.5101065325168401,
+          0.1778109838146356,
+          -0.063985761873968,
+          1.3075885003666043,
+          1.4599922502451297,
+          0.7752149685605496,
+          1.1454894094923196,
+          -1.7403310563691168,
+          -0.24587832311845023,
+          2.6798566610840235,
+          1.0638042644059973,
+          1.5140091592068785,
+          2.2728960212135325,
+          -1.2300207621286032,
+          -1.0837356312642228,
+          -0.8293130292286522,
+          -5.481358416073191,
+          0.8230984058612782,
+          -0.010987827386712199,
+          -1.3405647299921786,
+          -3.0153313432082527,
+          1.0393491064062708,
+          -0.6692849007093193,
+          -1.3104937196144846,
+          -1.616610955299081,
+          -0.43811107209240496,
+          0.36515667147714503,
+          -1.67646624243411,
+          1.701632341936967,
+          9.243252320616742e-05,
+          1.8370241338215998,
+          -0.9098558666858934,
+          -2.930223272901679,
+          0.14738274698239506,
+          -0.6410423416930998,
+          -0.8573810785536657,
+          -2.8527578517978633,
+          -1.8256099514829809,
+          -1.212545175194354,
+          -0.46054268603448156,
+          1.627541624024467,
+          -0.15554290324339853,
+          0.3683406928799673,
+          -0.28058116355390766,
+          -0.18377698147745736,
+          -0.390719972310321,
+          -1.0185712088188563,
+          -0.4778669108526547,
+          -0.9667487790637976,
+          -1.3960476700964985,
+          0.3941806697716651,
+          1.3647244544413903,
+          2.387067746476622,
+          -0.29558647733340154,
+          -0.4049362266248342,
+          0.6232858518045804,
+          -1.7483790642279085,
+          -0.9339017934853294,
+          0.4282808684626552,
+          -0.7920000191823064,
+          -0.6080310897589979,
+          -0.016565698363668863,
+          1.6201809145722321,
+          -0.4923838806230217,
+          2.5564162465599245,
+          -0.4381302149598619,
+          0.44605776837396727,
+          -1.2743495778720597,
+          -0.8556951772105379,
+          -0.22837751374753568,
+          -0.6011325416909616,
+          -0.020038731190410664,
+          2.6750065362822326,
+          -0.16064897910176207,
+          -0.4941320905607134,
+          0.13112473306399508,
+          3.314116618138154,
+          -0.2320776555447599,
+          -0.21353326125805788,
+          0.4514253077239567,
+          1.328856266692555,
+          0.22104394418349055,
+          -0.5859751647577452,
+          -0.7578003531678861,
+          1.5310329750569822,
+          -1.9996295124854626,
+          -0.9795162541259181,
+          0.09926422735331923,
+          0.34520518819616025,
+          -0.6286593902419909,
+          -0.7761832463531706,
+          -0.5807045792821035,
+          -3.1419526503765285,
+          -0.38762532902186775,
+          1.2226790499689855,
+          1.1718049238772361,
+          1.972337043855988,
+          0.12338010781309391,
+          0.27538993767501635,
+          0.1077855689763214,
+          0.3054000391899156,
+          -0.038316690579014274,
+          -0.21097038923101616,
+          0.5599713995294724,
+          3.0305173059127486,
+          1.1113259094632033,
+          -0.7020339164894794,
+          0.8945157259658089,
+          3.709917835115895,
+          -0.08734776773743785,
+          0.0738188196739187,
+          -0.009690133717962977,
+          0.48160739525195934,
+          1.3895253640154928,
+          0.011869115163948656,
+          2.1287287563538775,
+          0.6626610333478344,
+          0.9258877378860111,
+          -0.0017943341996293782,
+          1.03641607380792,
+          -1.5364493291940808,
+          0.08820666676835867,
+          0.10816353986330692,
+          -0.1945553428289631,
+          0.29441943318750596,
+          0.07629792731139788,
+          -0.7942044566126405,
+          -0.4553594494942279,
+          -2.3659929729862395,
+          -0.5615063001507472,
+          -1.0220412626195396,
+          0.09774449673910691,
+          0.32696072350117333,
+          -1.2275517864119003,
+          0.05433064965830373,
+          0.46551549090011934,
+          1.592686657849566,
+          0.7139679213064992,
+          0.7427620762130565,
+          0.5004375707654954,
+          1.6102858143176741,
+          -0.7008258992483111,
+          1.0592939522024345,
+          -0.5023157660810499,
+          3.0394493773813998,
+          -0.01457021026785774,
+          -0.417451867875092,
+          1.1405326876553934,
+          -0.8502270323560088,
+          -0.11613724275960946,
+          -0.8699078442571655,
+          0.5180737687823768,
+          -3.237119773355859,
+          0.5684259166570943,
+          1.4534860590254801,
+          0.7610369924197494,
+          1.280166661073227,
+          -0.6301093942697014,
+          -1.1136648579997208,
+          0.9533565466887226,
+          -2.8511724636329103,
+          -1.1151566861146058,
+          -0.5735915602020069,
+          0.20650320272301645,
+          1.0338052117555177,
+          0.01864368783318544,
+          -1.3824293239319367,
+          0.9310100564684858,
+          0.4208960224960994,
+          -0.0381539307088192,
+          -0.7396183880458477,
+          -1.2456372402529736,
+          -2.951445217762383,
+          1.0249375823593614,
+          -0.705665201255238,
+          1.1846906303940725,
+          0.10994208312737394,
+          0.3653880641458036,
+          0.4480525026387797,
+          -0.19458131639469672,
+          -0.585957246865726,
+          -1.3165939692196031,
+          -0.02777363472183717,
+          -0.5576759785440912,
+          0.9530950472605154,
+          0.1123913322743454,
+          -0.6839555387418713,
+          -0.41772215302111926,
+          4.117537132660624,
+          -0.24055324763686756,
+          0.12606057315764682,
+          0.7032731156029765,
+          -1.9812179495012623,
+          0.9187231865073076,
+          -0.05733881592255856,
+          -0.07846786993265116,
+          -4.870060939202407,
+          0.36499503296518937,
+          -0.0782241133649392,
+          -1.57301156194928,
+          0.2190630585344672,
+          0.4077890467817243,
+          1.861642512211156,
+          0.1404415725241812,
+          -2.363213220631135,
+          -1.4856850588912922,
+          0.014785543521094313,
+          0.1898958756017542,
+          0.7168790823670375,
+          -0.005795448748228574,
+          -1.4637981751612876,
+          0.12384785352765691,
+          -1.0488737819147125,
+          -0.005054641566542213,
+          0.555727550353619,
+          1.264900333112737,
+          -2.24105146053483,
+          0.0023913616885538414,
+          -0.6056662206371403,
+          -0.13279516588922413,
+          -0.4533482488829635,
+          1.225006603769753,
+          0.2961051553754438,
+          1.7622136518441784,
+          -1.3837659478531552,
+          -0.17297271088091842,
+          -0.3443977496096342,
+          1.063255197323321,
+          -0.876993324786969,
+          -0.4443350748214669,
+          -1.0907603244846265,
+          0.24510706289466372,
+          -3.057977823075501,
+          -1.7454682488787157,
+          -0.3534630375356571,
+          -0.00653466768329079,
+          0.42800717670599764,
+          0.7014659465416989,
+          -0.12729623946925137,
+          0.4151634751250935,
+          7.10254313726796,
+          0.08706277982251687,
+          1.9672050970745918,
+          0.6512360739885901,
+          -1.390135726782056,
+          0.4552188985535369,
+          0.325582056610435,
+          0.42251083445943266,
+          -1.0245499012579693,
+          0.33797252716892656,
+          0.14792012513000813,
+          -0.8693039006777851,
+          -1.1571756098096304,
+          0.11171624641084164,
+          0.09873787007310532,
+          0.14321084103717246,
+          -0.06680140174983233,
+          -1.508653790726687,
+          -1.487402616179464,
+          -2.1349507069621976,
+          3.4963049774624406,
+          -0.035956009579935576,
+          -0.28061510416068586,
+          -0.2883956837146049,
+          -1.2474440652686454,
+          1.2199027937541569,
+          1.013870393512975,
+          -1.8443581697492692,
+          -1.2356789666842118,
+          -2.24411934886251,
+          -0.730286293644158,
+          -0.05922571362688309,
+          4.647614347713037,
+          1.0193205524502473,
+          0.41977673451724706,
+          -1.7857542321496527,
+          4.806352327421521,
+          -0.18304274455946554,
+          0.017595997891239213,
+          0.6266910036465717,
+          -0.9902186628795105,
+          1.6601192132150333,
+          0.003871331776691803,
+          -0.23956056876570062,
+          3.7593380698582575,
+          -1.3097086049442388,
+          0.7582735767644457,
+          -1.1008757489912575,
+          -1.2196289468093071,
+          0.029402798697411893,
+          0.004310573558014774,
+          -0.06680247371590045,
+          -3.0052635643906385,
+          1.579548670811074,
+          -0.4463397774328174,
+          0.25807502350527534,
+          -1.7995727970654412,
+          -1.2838158663003565,
+          -0.2490852656365136,
+          1.6061934034907348,
+          4.686961497031348,
+          0.746999271246398,
+          -0.07141473269634949,
+          -0.10724897528548807,
+          2.392582415231475,
+          0.11095593747595198,
+          1.790661290572362,
+          -0.9471862191756719,
+          -1.8225039712561475,
+          0.16549220708768586,
+          0.2637898215569298,
+          0.014215181327702558,
+          -0.6875183212330845,
+          -0.23186191752244756,
+          0.35459420482040094,
+          0.8411881945870093,
+          -2.7281245892334414,
+          1.0437316834443504,
+          -0.07393857845017052,
+          0.8212215550915909,
+          1.4746302935973326,
+          0.9327632966708642,
+          0.986235209518179,
+          -0.0956290499631464,
+          0.8548715434594253,
+          0.2667326460632329,
+          2.1484818328719,
+          0.5276323011787428,
+          2.2104394947676864,
+          -0.053698590669435525,
+          -0.08947907979929931,
+          -0.15759288792316045,
+          -0.9843639906370479,
+          0.10185500865029036,
+          0.6149286749032252,
+          -1.1717785650292616,
+          -3.1302099717052303,
+          -0.08546125164803307,
+          2.861254666856318,
+          3.1163881962842543,
+          0.4756252677999694,
+          -3.4360386021568936,
+          1.4337998835022399,
+          0.5657678767262115,
+          3.0711210351037317,
+          1.1280263230818526,
+          -4.886374411857881,
+          2.122071513536054,
+          2.4186152858576992,
+          -0.2782862225302262,
+          -2.0127707484240998,
+          -0.0015898864758922332,
+          -0.09099436836281842,
+          0.615533211669019,
+          2.2943104517520356,
+          -3.1761634927645734,
+          4.13704864463989,
+          2.4125384161582164,
+          3.5375168430870945,
+          0.41906578246490017,
+          2.545782388285729,
+          -1.6034764910764747,
+          0.6135025458978323,
+          -1.2817917431646773,
+          -2.4619439588450263,
+          4.365997737283459,
+          -1.294737959273326,
+          3.2194509932222233,
+          -0.6980426936294951,
+          0.8232569080966272,
+          -2.1646538913405076,
+          3.5884892987072505,
+          -0.1696489510381701,
+          1.6990001534601606,
+          5.3056130803352,
+          -4.456335043263517,
+          -0.8513419563741361,
+          2.4584313776906694,
+          -2.1675375761967013,
+          -1.40095109878358,
+          2.742130344653834,
+          -1.6460359430602862,
+          -3.4932697598455067,
+          -0.6614282625879389,
+          5.108477704899268,
+          -1.4841274016298898,
+          -1.8795705666310223,
+          -3.120560627468127,
+          1.012060211078968,
+          -1.9020907959768052,
+          -0.29313583779821634,
+          5.368569653658266,
+          -6.038808036111297,
+          1.5880584137302407,
+          -1.6900418789843565,
+          2.297947639651336,
+          -3.431566648222205,
+          -1.4632646150903923,
+          1.55477728967656,
+          0.7516773717337951,
+          1.0778988575806534,
+          1.522653376424591,
+          0.6780333462169019,
+          0.535857799539038,
+          0.872659792618022,
+          1.9603586209225397,
+          -0.3984330577649937,
+          -0.8552932323342006,
+          -0.8693384392316473,
+          2.4078222432355103,
+          2.3354917335494307,
+          -3.0569921037505154,
+          2.549508738557945,
+          -1.8789540092021537,
+          -1.4645200295411018,
+          4.1910946596969,
+          -1.5580676928747095,
+          1.226768534061309,
+          1.0112822483152577,
+          3.7352251768657285,
+          -3.299389782763629,
+          5.751748544097861,
+          3.3243195478935865,
+          3.4957901089145116,
+          -4.509275472070741,
+          -2.4463690833292935,
+          -2.2761805510999724,
+          2.802437131399484,
+          2.7974813042927162,
+          0.2688307943497491,
+          -1.0255479669953165,
+          -1.7566105926071143,
+          1.575990343264857,
+          3.576136402178379,
+          -1.643868363549014,
+          -5.930194323376596,
+          -1.5634917320802564,
+          -0.8337803049658692,
+          2.020793704357952,
+          -2.5848976548977403,
+          -0.3676731559983138,
+          0.19200702046995774,
+          -0.34696508165314593,
+          -1.0672760837455735,
+          -1.7950427340107835,
+          -0.7318697649240071,
+          -1.6592219644485748,
+          -4.627143904577018,
+          2.330387525997163,
+          3.600958231991549,
+          -0.10835567636058872,
+          0.7204050961591575,
+          -1.353171424440941,
+          -2.1083200423181916,
+          0.6416293247844774,
+          -1.3226488577636286,
+          -0.4257647220567234,
+          -2.754532498065942,
+          0.1971834252398789,
+          -0.5940698427403183,
+          0.5356661840906661,
+          -1.6588795772017257,
+          1.0274150308961072,
+          4.850135221335051,
+          1.2540035555977098,
+          1.8409328502540496,
+          -1.8191754069095778,
+          2.1668352797156025,
+          -2.829967423941794,
+          -2.535722463493932,
+          -2.2127665408265784,
+          -1.6750333940312199,
+          2.799551991814071,
+          3.1883393180986563,
+          -2.617352185463724,
+          0.35594556628689283,
+          -2.159771810293132,
+          -2.3117712368575543,
+          -1.7160872396245437,
+          4.420746653634883,
+          3.503264035039578,
+          2.302385040895602,
+          1.278681224606737,
+          4.361865913614469,
+          -0.9091631648871794,
+          3.0063153084913177,
+          -2.5753296791267886,
+          1.2597334698575293,
+          0.7884311056774036,
+          3.499436861128235,
+          -3.7505119561350155,
+          -4.389355725821718,
+          -1.8304275114510842,
+          -2.492546400071184,
+          -1.6747889488447998,
+          -0.7469741523202388,
+          5.580070444428823,
+          0.7104963048294156,
+          -4.058485331146968,
+          -3.5183267030069945,
+          2.916384002830577,
+          1.8622683429020475,
+          -1.9922847318041303,
+          1.5279193610663235,
+          -0.9947645143742513,
+          -7.522051248184829,
+          2.0325257367466167,
+          1.1024385049240302,
+          -1.1254360565739703,
+          -0.42823071362715687,
+          1.1579102891916133,
+          0.47238352241271203,
+          1.4860602655535522,
+          -5.09091028079135,
+          1.3909283563370165,
+          3.0933008834240816,
+          3.340103280829902,
+          0.36504921879757124,
+          -2.623546724390482,
+          1.5888448121636978,
+          2.373061985430693,
+          -0.07275995706290277,
+          -2.2405661933988723,
+          -2.166250948204343,
+          -1.0627258675938411,
+          -3.6228708803160967,
+          -2.594431054807216,
+          -1.6472392623905165,
+          0.10965769211548851,
+          -2.888238727023985,
+          0.5797364889348966,
+          -3.976614506337065,
+          -0.6273169280412334,
+          0.6744665927640275,
+          4.001194934382627,
+          -2.761387456006495,
+          0.43106399964612613,
+          0.06404566336278245,
+          1.583525691668899,
+          1.2317790222652831,
+          -3.0080539561464517,
+          -0.6045219516057483,
+          -3.6621443360035717,
+          -3.884735987153651,
+          0.28824346466594447,
+          -2.018107143997482,
+          -0.5420582843467379,
+          -3.6965330352517096,
+          2.9350550525305295,
+          0.03414355134008102,
+          -1.718677113049051,
+          2.5999785190345963,
+          1.7608626545031782,
+          -3.6347825362369353,
+          3.2021255616214215,
+          2.761815983327812,
+          4.478319510915163,
+          3.001014230791821,
+          -2.0836737097045943,
+          1.6415425007244537,
+          1.8051724162493987,
+          2.5144221490006364,
+          1.3133853489195408,
+          -0.27643087104341907,
+          2.7421471954642125,
+          -1.6655920315206185,
+          1.8281073630711246,
+          -0.7341673874542409,
+          2.176422825770085,
+          0.7738149989107992,
+          -2.181341930765879,
+          -0.39758772277747595,
+          -3.4041958559341956,
+          -1.3668979389622669,
+          -2.1833151366543935,
+          2.7998185701821794,
+          -0.5290419757036202,
+          1.4507967063528924,
+          -0.5197488854972868,
+          -3.290169914706357,
+          -2.354390775349393,
+          0.1562800356155105,
+          -2.609945529824925,
+          0.1758017757339327,
+          -1.619011158998502,
+          -0.8925799914712442,
+          1.910208200281797,
+          2.082953254468117,
+          1.1785629493923393,
+          -3.8561593831378027,
+          -0.7756431492008332,
+          0.5901561881274971,
+          -0.2762831766183308,
+          2.562081485680229,
+          0.9651104922596865,
+          -0.975198556126408,
+          -1.5867525034955379,
+          2.436368705191804,
+          -1.705128453608426,
+          -1.0897735782584361,
+          -0.2806533704335274,
+          1.331162384514043,
+          1.1579601743165573,
+          2.1602010032085674,
+          1.2272331379889627,
+          2.3049249589558864,
+          3.734651728191875,
+          0.4136780029816056,
+          -0.25394404246373653,
+          -0.8373869586931055,
+          0.294809865676201,
+          2.3390010701132917,
+          -1.4191224295849345,
+          -2.571654058524699,
+          2.9761939316872636,
+          -2.326446610890761,
+          -1.2491192107956552,
+          0.13027182518552083,
+          -1.0173186124953695,
+          -1.1416167430554427,
+          1.736685005284953,
+          1.5134397440680754,
+          -0.3709046421709941,
+          0.9624407373600816,
+          -3.382419765971176,
+          -0.5866684923463186,
+          -0.5261428645916012,
+          2.4538098055315665,
+          0.5277855797740824,
+          -6.925791977911706,
+          -1.7049576989765556,
+          1.8940853770022685,
+          3.850667654915593,
+          2.330642521871674,
+          0.9866889320352351,
+          -0.07086931236761287,
+          -2.282683661495188,
+          -3.134117237025434,
+          1.245472776734277,
+          3.6198082429405836,
+          1.0757854208332167,
+          -2.7911141729455227
          ],
          "y": [
-          -0.20994663999294672,
-          5.096409766032569,
-          -5.439628421829616,
-          3.373369691054456,
-          -0.7594681856680421,
-          -4.845273253545776,
-          3.890821159427231,
-          -4.5942965464059915,
-          -2.282199641837469,
-          4.023533982875501,
-          -4.659849453276334,
-          -0.5932441051859302,
-          -3.753884295908926,
-          -2.5421593544364054,
-          3.5264721091886355,
-          -1.6548964088873248,
-          4.324608991082575,
-          5.061937488747993,
-          3.9592356242412317,
-          -1.9669457541377988,
-          5.232997498817989,
-          4.348823562082014,
-          -1.2115054272374124,
-          4.27155742147986,
-          -3.184342627008819,
-          5.815193603243216,
-          -4.093517018531748,
-          3.6509492786017996,
-          -2.034000144418931,
-          4.934512071965542,
-          -4.7251222236979435,
-          -2.378445619408482,
-          2.5577896708003456,
-          4.302271521008413,
-          -5.953998876876117,
-          4.2648571113285465,
-          4.204807360237563,
-          5.416425010453051,
-          -5.345320449568442,
-          5.318857103356589,
-          5.133379199518248,
-          -5.5650515426760725,
-          -1.8153316159194346,
-          4.112735734176794,
-          5.1489000952173125,
-          2.8729488610549097,
-          -0.23136615516920744,
-          -3.835792922754732,
-          -2.447501025834454,
-          -0.39318660795683835,
-          3.6324297719774847,
-          5.165033353106503,
-          -4.796308024212242,
-          5.154323836983818,
-          -3.4015543806934394,
-          4.697033401025663,
-          5.875155470860258,
-          -4.6156617052956985,
-          -0.7907942504960721,
-          3.924884891639226,
-          -5.517252160120574,
-          4.766782498723178,
-          -4.694274645535781,
-          0.05363879504332314,
-          -5.126814045250511,
-          -1.474628001610463,
-          -3.7044220805936106,
-          -3.505276604865495,
-          3.2739790854459767,
-          5.6078773689130825,
-          2.4660731575996024,
-          4.553272737311457,
-          -3.14561774943402,
-          5.913173316172237,
-          -5.01660800505574,
-          -5.786968425316896,
-          -3.945929001214496,
-          -3.8733834894658656,
-          -3.0314151598219596,
-          -4.721343694044461,
-          -5.456976158028466,
-          -5.399793250250005,
-          -4.55837182953648,
-          3.992990142798977,
-          -4.121652337058366,
-          -1.5805300012802705,
-          4.612933809965714,
-          -3.2114446508928616,
-          -4.2065250219422685,
-          4.158037802610745,
-          4.344539080945089,
-          -3.966192770153755,
-          -0.592611406722125,
-          -1.0684462086035866,
-          4.63317138133598,
-          -4.769401404409832,
-          -0.6294506832829176,
-          4.448952782546549,
-          2.9721711124862953,
-          -2.8214144929888114,
-          4.93970156080692,
-          -5.410050435665877,
-          4.924801819757647,
-          3.7838311290480258,
-          -1.2261269555002956,
-          -1.6552088382507977,
-          5.276404096580045,
-          -3.650180206271891,
-          4.753736921210228,
-          3.970433522623503,
-          -4.8188706779598025,
-          4.508762153855098,
-          -3.9836727451942244,
-          3.9917520775983415,
-          -2.836168305351755,
-          3.4730785603333336,
-          -3.5396212662811823,
-          4.7569223063502974,
-          4.858304649228015,
-          -0.445830464107329,
-          -5.856022784422593,
-          3.7144095841845517,
-          3.2520831902971787,
-          4.7379301893304895,
-          4.763284837868563,
-          3.933566539798852,
-          4.418650830645534,
-          -1.2249307507195586,
-          -2.423393688925088,
-          -2.9569396660992697,
-          -5.009303689850056,
-          -1.4855331430254788,
-          -4.519651331361112,
-          4.411294090708819,
-          -0.5069018888799262,
-          -3.4854964242971413,
-          -0.5144554985792937,
-          -5.200440495687821,
-          4.602558891411554,
-          3.82429765506842,
-          -4.460443161134304,
-          4.306588692984785,
-          5.083357147117704,
-          4.684817065228575,
-          2.4562837945913882,
-          3.016627522012886,
-          3.631993918043432,
-          5.595939229063632,
-          3.9370896923897583,
-          4.3330030110673095,
-          -1.9495024790132334,
-          -2.453431209423606,
-          -0.6951596552877812,
-          -1.2591984087195858,
-          -2.7067605350870143,
-          -2.597906380704698,
-          -2.332477310182571,
-          4.34017146891157,
-          5.068465412455398,
-          -5.5806120398685835,
-          5.276721084247668,
-          -3.8113474506002154,
-          -4.159943681078805,
-          5.041756018672152,
-          -5.491933084413177,
-          -4.627280609011047,
-          5.409519208476209,
-          4.432906577104701,
-          5.255973569720258,
-          5.50089451051296,
-          -4.767998583565985,
-          4.616289869275911,
-          4.026542803703992,
-          -2.92248507427371,
-          4.501859524038152,
-          -1.4444653294519458,
-          4.2167093431733935,
-          4.745223993987322,
-          -2.3940814864448976,
-          -4.635616278327214,
-          4.755882145557979,
-          3.8548450068641538,
-          -3.6209487635519793,
-          -1.986686466374938,
-          3.476375543080473,
-          1.9635483725453793,
-          4.807526827058237,
-          4.454951073159351,
-          5.33399068807503,
-          3.8665276485093227,
-          5.726709376637033,
-          5.219644548948445,
-          4.450289932415686,
-          -3.348823416398065,
-          -3.3279964664211494,
-          -5.825812119158782,
-          4.454920109353914,
-          -2.4445565553339375,
-          5.171219812408059,
-          0.3209675493963988,
-          3.3758253078752998,
-          -4.936657371880644,
-          -2.0599103715527685,
-          -4.523135988927592,
-          -2.3877133132062287,
-          3.9586104428917275,
-          -1.82161336263855,
-          4.962099180595112,
-          -1.1581199478225632,
-          3.376623578396862,
-          3.7101863328690046,
-          -3.4929478642542593,
-          4.254167750204805,
-          -2.8339816997398968,
-          -3.570404331742814,
-          -4.893198413408651,
-          4.721404575713974,
-          3.960176613253625,
-          -5.035557758794271,
-          -1.9487893558868696,
-          4.920899886790373,
-          5.395267159762988,
-          -2.6488480334141773,
-          4.833088785374773,
-          -3.811546135859853,
-          -1.2738527297819466,
-          5.753212312479043,
-          3.8589613726571774,
-          -1.3243435190336916,
-          2.765939803840487,
-          4.816105710459699,
-          -4.830174945674447,
-          -3.7328082065388957,
-          4.2125069189526645,
-          5.6737690276842265,
-          3.6309198117565846,
-          -4.309000583460104,
-          4.325778995689365,
-          3.6759037746689733,
-          3.850889332567919,
-          4.290022416827229,
-          -4.8379782135270055,
-          -2.490186526623906,
-          3.3335761346072874,
-          -0.6678219116162452,
-          2.010030490364851,
-          -0.13271650779896382,
-          4.357555893700814,
-          -3.8714207585341107,
-          -3.9660659169062065,
-          -5.2401155292964186,
-          4.620366703521324,
-          -1.009708670824779,
-          4.589418735310243,
-          -3.763856675672485,
-          -0.72425204273382,
-          -5.27731444482125,
-          -0.5070055141545051,
-          -3.187505633356767,
-          -3.651072551670279,
-          -4.098306200418914,
-          3.9628230835792815,
-          5.260436992387227,
-          5.589055737158577,
-          4.819951526426594,
-          0.06869301061026833,
-          -0.578446551981799,
-          -2.0617853581608516,
-          -0.8103421233949528,
-          3.0568650350658952,
-          -4.284170290387373,
-          -2.0583886495924486,
-          -3.9724545237242928,
-          5.030605227876543,
-          4.613210562180008,
-          0.5168455274284695,
-          4.36569409189,
-          4.1192293943535825,
-          3.8978305495931576,
-          5.596524383031287,
-          4.922534006100469,
-          3.060168816821731,
-          1.0033370006572477,
-          -1.88767842636362,
-          -2.1848121767936006,
-          3.724656682267827,
-          -4.612285014325252,
-          4.604163611452487,
-          4.5225696635415495,
-          -2.6229064263172908,
-          5.454833248801098,
-          4.445811773285679,
-          -4.241926501935799,
-          -4.002850125429913,
-          -2.5169912949576387,
-          -5.749179659773554,
-          -3.40382814343671,
-          -2.2573784611525114,
-          4.0754609511088855,
-          -1.7739057712408717,
-          -0.16073938307027136,
-          -5.211285590492118,
-          4.484345033792243,
-          -0.5229890703478199,
-          -0.622905504907208,
-          5.012296563587851,
-          4.947008924227152,
-          -1.6641901605019065,
-          -3.3255622849009865,
-          4.473131044750824,
-          5.185082927157654,
-          -4.154127656312633,
-          -3.17986258110547,
-          3.5206246812100797,
-          -1.2162386727952113,
-          -3.631191525768446,
-          4.233528831356392,
-          4.143602394195845,
-          4.332362489769938,
-          5.150951166593484,
-          3.838385483970005,
-          -3.132966503243016,
-          5.774937066179678,
-          -4.197920425410398,
-          -0.2487765092736745,
-          5.29109154671341,
-          5.069690434463935,
-          -0.645346761404943,
-          5.46204966799207,
-          -3.66584852486818,
-          3.944308832107391,
-          3.727249519844014,
-          4.589456155576431
+          1.6617764634480272,
+          -2.106597264573904,
+          0.06878033921003923,
+          -2.0019139315744465,
+          -0.5928150619188499,
+          0.6603735992110128,
+          -0.1888145097314362,
+          -0.3157418963691369,
+          -0.09823076896948087,
+          4.6668668167892555,
+          -1.5869261761482194,
+          -0.70653392250715,
+          -0.5852365811343688,
+          0.6397502500374693,
+          -1.487420056863039,
+          -2.9561237009994668,
+          -1.2583174103440309,
+          0.2483969691986181,
+          2.918405962448585,
+          -1.1701195073841606,
+          -0.0009707991490475082,
+          -2.984387697339637,
+          -0.5781951152915388,
+          -0.8613495188041802,
+          4.141325587642559,
+          0.4696317285524235,
+          0.6730257027223217,
+          2.816739650585656,
+          0.05004371410050519,
+          -0.1980514228110401,
+          -4.833008343829403,
+          0.12931784495307103,
+          -0.29984421959906377,
+          -1.182670305134671,
+          -0.6327955733717678,
+          -0.661965801209146,
+          3.2220611294840875,
+          -0.7284244402306214,
+          -1.4047177356627685,
+          0.8705014772680872,
+          1.0102403888002514,
+          0.6379450439365822,
+          1.6133994019931075,
+          0.5040606348960506,
+          1.1378553583384434,
+          -0.00045959581026367504,
+          -1.991650041566955,
+          -0.09172858241168484,
+          5.136865094555706,
+          1.9878859338326653,
+          0.676547784633928,
+          -0.2485469743305462,
+          4.929084954659545,
+          0.3160637171243109,
+          0.47551842628135466,
+          2.2531661568970343,
+          1.6397144793847087,
+          0.28792432743073565,
+          0.9561025464864157,
+          -0.9333364845067145,
+          -0.9042784200602254,
+          -0.2762654735352234,
+          1.3882008870143787,
+          1.131940666072098,
+          0.03696544307424123,
+          -0.6123096128684654,
+          -1.7448716895723524,
+          0.06378885845722546,
+          -4.804159758248118,
+          0.5618541090316571,
+          0.11538274759641802,
+          -0.6688546515384395,
+          -1.649845738210407,
+          0.04286272204384053,
+          -0.29390632537918365,
+          1.2080557046255664,
+          2.1127880287213117,
+          0.10172890150939051,
+          -1.7080222912654663,
+          -0.5155734177694207,
+          1.1012577285088185,
+          -0.5085773723245407,
+          -0.016316828365144122,
+          -0.4181102749319909,
+          -1.862934095692778,
+          -0.01933108881361704,
+          1.7586232642508066,
+          0.03498606651305035,
+          -1.4242991042843227,
+          0.7885203998019029,
+          -2.311192822685466,
+          0.892437588856283,
+          1.3367876817617406,
+          0.7301233689380559,
+          -0.9509053497662344,
+          -1.8657798184433414,
+          1.9040221721476898,
+          0.6685050913973818,
+          1.6824034397223269,
+          -0.28056503077092315,
+          1.5265311079208903,
+          -1.0410946458245138,
+          -0.18006138070656766,
+          -0.25922277660000814,
+          0.4835095972024335,
+          0.10519492359789515,
+          -0.534758670662988,
+          1.2419032753237023,
+          1.052247474356315,
+          0.4833444588482085,
+          0.6686880165286991,
+          -1.896985902968711,
+          3.0831825572328704,
+          1.6127612408683312,
+          -1.1302367847230075,
+          -1.324118661005457,
+          3.5368992559571124,
+          -1.7109799819771456,
+          -0.4809768775744789,
+          1.3930641870185316,
+          4.328514925788868,
+          -0.3449041839888561,
+          0.6113186024293684,
+          0.013932833803470721,
+          -3.037077089449632,
+          0.044315137449697284,
+          0.8455808480605974,
+          -0.3534854386140848,
+          -1.8935236366554828,
+          -1.5324761827889533,
+          1.6574385751180134,
+          0.600561435156261,
+          3.530414529545262,
+          0.3902571705653166,
+          -0.051375636885142156,
+          -1.2956849977730778,
+          -2.5430534320875187,
+          0.08700513686795322,
+          0.18540951249318255,
+          0.21876751726978205,
+          -1.7757618335623218,
+          1.354263805545144,
+          -0.021417399469824995,
+          -0.22708832636450402,
+          1.9582991348845111,
+          -0.031219894273298184,
+          -0.0069864704425884735,
+          -0.24101151383440556,
+          5.589049337984509,
+          0.2891317271186083,
+          0.2976357781850422,
+          -0.2580955480201765,
+          3.2009664063558265,
+          -0.48970659171862707,
+          -0.3570617783109112,
+          -0.10845490450648947,
+          1.7728712760718541,
+          -1.1402357598322153,
+          0.06889696318077063,
+          -1.1510621551059181,
+          2.7910129190071378,
+          -0.3861103575965297,
+          -0.31821729231550233,
+          0.12686776333781752,
+          4.124554004694676,
+          -0.31306550885504,
+          1.8908664373902913,
+          1.3141319458908203,
+          3.335931870810713,
+          0.02635909126873858,
+          -0.025492978194276372,
+          0.26261277415327866,
+          0.07461526861578677,
+          1.782454205487502,
+          0.16992742064919394,
+          1.0436543661191078,
+          1.383617865122998,
+          -0.6570079724444741,
+          -0.6754164714992051,
+          0.8472178131036348,
+          0.5720798983242181,
+          1.1268526858343553,
+          1.297650536185381,
+          0.37839266754202633,
+          -1.4968485480198561,
+          1.7170989610471925,
+          1.1950619729898646,
+          0.12225937395260081,
+          3.7347774726036307,
+          -0.03824639168858701,
+          -0.6782476676689119,
+          -0.9655012790281127,
+          0.10307361534090224,
+          -0.7672827961388664,
+          -0.8811721841113088,
+          0.798413981843375,
+          4.6379548558675,
+          0.4451126479121873,
+          0.12360422575556715,
+          -0.30580560377116556,
+          0.857627904623105,
+          1.1992000967446539,
+          0.6599788612463156,
+          -1.1078749129071706,
+          4.13830079378516,
+          -0.9667385276762145,
+          0.04603629027337683,
+          -0.29413431066711704,
+          3.8365288655577707,
+          0.3684013393029342,
+          1.2494597020868372,
+          -0.029532594202888715,
+          -3.784303773947717,
+          0.41139515629682144,
+          1.6537118982996881,
+          0.7952363824392533,
+          -1.2617952509537982,
+          -0.5300446764648062,
+          -0.12768579418614154,
+          -1.0270957334446627,
+          1.8583781543358031,
+          -0.5860217786656533,
+          0.049565737969007706,
+          -0.10507144528791519,
+          -5.773651854340606,
+          0.709130171828633,
+          1.1179457905640933,
+          -1.6808379824920117,
+          -0.5569796392937423,
+          0.9567030168076749,
+          -0.7272676780067866,
+          0.0670278035702317,
+          2.235235305317147,
+          0.00822058636606281,
+          0.040191632584465356,
+          1.7186639481826873,
+          -3.746795894853478,
+          0.07584131405165985,
+          2.254231482131179,
+          0.5180283251120628,
+          0.23485825675646108,
+          0.08957303686572153,
+          0.868056536695672,
+          0.8245464193383067,
+          1.860753113556915,
+          -0.6969801015111321,
+          -0.18822019129927287,
+          0.052402615180978135,
+          2.165431746713516,
+          -0.6077388210089143,
+          0.47407263302625785,
+          1.2755504993704407,
+          0.1687814928054531,
+          -1.2832654287559382,
+          -0.7446580817411474,
+          1.164183272976538,
+          -0.9070727264878148,
+          0.22884112665777526,
+          0.1938066644926271,
+          0.034731669544241374,
+          -0.7734369448613636,
+          0.83572430374981,
+          -1.045111884391964,
+          -1.275515174891802,
+          -0.9250073399984788,
+          -0.30136804582664733,
+          -0.5348570789168163,
+          -1.3881684383356272,
+          3.165490447574342,
+          -0.19355721581050622,
+          -1.5085414917675426,
+          -1.7822304798891606,
+          1.3948383061197258,
+          0.06736635214494101,
+          0.3833048638551506,
+          1.0010932844495581,
+          2.4105717767566777,
+          0.34955162416148683,
+          0.6277666719167894,
+          0.0840696765133741,
+          -3.556239624474823,
+          -1.746743217949335,
+          0.8444497385843847,
+          -0.39810555430251254,
+          0.30552937646126066,
+          0.5304799911576032,
+          0.47252108496140566,
+          -0.9987568646595988,
+          3.73201243765495,
+          1.2084943265613572,
+          0.3155687925248057,
+          -0.9080208314247601,
+          2.1947199770836923,
+          -0.021118960789095084,
+          -1.5191074621833704,
+          -0.14592286112522118,
+          -0.7074607827781738,
+          1.2000361205531778,
+          -0.22190802897500894,
+          -0.3231029852871193,
+          0.546724243483537,
+          1.6570872099894869,
+          -0.02841907498916092,
+          -0.41103875756826214,
+          2.6067017000778816,
+          0.6130413823626757,
+          -0.6087934367231588,
+          2.1935474527323273,
+          3.2575136790858505,
+          -0.08603452480511557,
+          -0.29528672132023,
+          -0.7754582265145066,
+          0.3954751447795656,
+          -0.10787251177584888,
+          0.005640660990713065,
+          1.579412257225773,
+          2.27301724067528,
+          -0.9158834724112025,
+          1.1557654249920637,
+          -0.12740594561203766,
+          -1.3607809562603939,
+          -0.4177216617847983,
+          1.125072744598212,
+          0.4934500953427179,
+          -0.7173540871585754,
+          -0.509964214431188,
+          0.11066697039852665,
+          1.30549812865183,
+          -1.6456144643953203,
+          -0.048944946949297685,
+          0.2736845456860561,
+          0.0179429967092168,
+          3.7421083872356053,
+          -2.3608451083656705,
+          -0.2742814870197683,
+          -1.924495772705386,
+          3.71227327671523,
+          -0.614936236791449,
+          -0.5026233675566294,
+          0.3276555432468817,
+          -1.9471707065623134,
+          -1.7975425063329868,
+          0.4120861572390437,
+          -0.25445760344316865,
+          -2.715578583675711,
+          0.5804614405532249,
+          0.5132054567583031,
+          0.17741768122549928,
+          -0.11077276370314937,
+          0.10836536045044191,
+          0.8546224736333863,
+          0.4761601052791857,
+          0.0263271227955426,
+          0.24422203033841783,
+          -1.208799291669033,
+          -0.8952392583378813,
+          1.7946989954971526,
+          -0.030397790379646975,
+          1.41811949129301,
+          2.09905538145062,
+          0.8613495782681021,
+          1.0232634902153586,
+          -5.111163090079001,
+          5.360536572211485,
+          -2.098474287970105,
+          -4.89719961996554,
+          -2.046769255713647,
+          -1.539084133220928,
+          5.118554460483594,
+          1.2893773422312977,
+          0.4442786854649936,
+          -2.332617754622039,
+          2.4819593799680413,
+          2.4797444916264033,
+          -6.014036935229902,
+          2.211948218936332,
+          -0.7258522051567685,
+          -2.511739016371943,
+          1.9773491476610057,
+          0.7177701925991314,
+          -6.177732252880265,
+          3.3243010975206553,
+          -1.1236385205797794,
+          -2.752134693334535,
+          -0.5410758720556021,
+          -1.7910057709075715,
+          2.46660789674724,
+          1.9653213982498372,
+          -1.7285297633577879,
+          0.4672835124258289,
+          -1.5749554868371385,
+          -0.7531104910119654,
+          1.3562467215039415,
+          -0.6627226743936777,
+          -0.2481112844282484,
+          0.4562860075243628,
+          1.0551254356388506,
+          -1.7480305181813813,
+          -0.5677991954023249,
+          -0.34292604703550944,
+          -1.1838617112863064,
+          -0.1812078963699324,
+          2.1620332015007597,
+          1.337334039972395,
+          -0.019025815402225924,
+          2.5528599655908697,
+          1.0763191957508662,
+          -2.692382898853627,
+          1.127953084406153,
+          -3.7198019822119908,
+          5.5454854473234,
+          -2.7102374093629393,
+          2.884939044810258,
+          1.0979767631011206,
+          1.8482124025208495,
+          -0.9488074199780446,
+          0.34694950415066417,
+          -0.5721720997959967,
+          -1.5730264180565707,
+          -1.7289359969253724,
+          1.32559163936583,
+          -0.5374745094063185,
+          -3.6858879406774463,
+          1.6089243790971623,
+          -1.587088952008253,
+          2.063380426166741,
+          2.682447748140335,
+          -2.4720985856562447,
+          0.8673890428075558,
+          -0.9840172341134834,
+          2.5314024804606032,
+          -1.8579485113671226,
+          -2.420305457496337,
+          -1.766506207172906,
+          -1.6249547202315284,
+          3.4907427518759433,
+          0.2357952781028223,
+          -2.395591584982506,
+          -3.0882384354168417,
+          0.8669959255596231,
+          -3.0996870479660155,
+          1.2859856293522474,
+          -0.223437399629715,
+          1.5123155997825677,
+          2.6041393028063355,
+          2.4933213059651824,
+          0.036035289935395905,
+          -1.0892893205613963,
+          3.0662177530560792,
+          -2.5777710466616774,
+          -0.8020900721990702,
+          -2.712386878892958,
+          -3.210980993873271,
+          -2.491737169158156,
+          -0.46157986593494255,
+          0.22292806116482838,
+          0.4918108558543877,
+          -3.127279675950834,
+          -2.040951707148213,
+          -1.4045379938794362,
+          0.9961538526844782,
+          -6.482726682723896,
+          3.8073645398120943,
+          -1.1153560155969648,
+          -3.13155519949859,
+          0.8668481789669852,
+          0.06968312587781125,
+          2.53401178967923,
+          -3.2846131636960285,
+          -1.1312035476857099,
+          0.24627936158340116,
+          4.461517621097272,
+          2.703670664265123,
+          -0.39251629369987734,
+          0.3248915208972816,
+          4.616024508596643,
+          2.9776305715631497,
+          -3.1122782456901326,
+          -4.175846054322023,
+          -2.9117216559473604,
+          3.814163271105306,
+          1.7866883175727355,
+          -1.8760490155345941,
+          -3.7469832015699267,
+          1.753863559923087,
+          -0.818217307688226,
+          -1.9537642532158321,
+          4.358819434794273,
+          1.7479728315173115,
+          -1.723484913160758,
+          -0.16178445018942275,
+          0.23867915597610107,
+          -0.6832723309946496,
+          4.689924867102048,
+          -2.539439465899163,
+          3.428142447691939,
+          0.882612552351526,
+          -1.1748749272489627,
+          2.544174471605523,
+          0.6451374968082509,
+          -2.773929582724479,
+          -2.5372860558128183,
+          0.1977888052427304,
+          -0.3283880486835048,
+          3.3021484394471314,
+          1.7974325273272462,
+          1.9924967066071637,
+          -0.2408404721313032,
+          -2.609163877534486,
+          2.5356020544521414,
+          1.1607942270658125,
+          -4.638329164897339,
+          1.1778470970551507,
+          -0.7529627018802738,
+          -2.2602198626119026,
+          -1.1696379372466057,
+          -0.5022241902148072,
+          -3.96010839741237,
+          -3.2626808302385926,
+          0.06605919625472657,
+          0.09354234940098101,
+          2.9351132667496485,
+          -3.7763343137361765,
+          5.186921398008139,
+          1.4373526771771188,
+          -3.9379315228585785,
+          -2.497605924226168,
+          1.0932556744806632,
+          -2.791154132015374,
+          3.2882341435332294,
+          -2.968553874379742,
+          -4.349869395542996,
+          -4.563796402649471,
+          -1.865538939099537,
+          3.96247673844571,
+          1.0201032359951188,
+          -2.3100654443048407,
+          1.3412994293434424,
+          -0.132661915283051,
+          -1.4637359378080796,
+          3.1947936260221,
+          -2.266142784265044,
+          3.4399362817245,
+          1.995176517448499,
+          1.3944483712761315,
+          3.44503576767969,
+          -1.0504152177814892,
+          -3.2198097015643965,
+          -4.768554995476742,
+          1.0199370602026223,
+          -1.9777561135074218,
+          1.9310360154728248,
+          3.1995752114731286,
+          0.15233548765349642,
+          2.37928145338244,
+          -2.61004081630492,
+          -1.168825893941651,
+          -3.022625909759756,
+          -0.3466624250835489,
+          1.0220320666590341,
+          -2.4114756258211596,
+          -1.8836454846889625,
+          1.7503448052110657,
+          4.383583245686888,
+          -1.3176913980107448,
+          3.653753963164082,
+          3.5379686513810538,
+          -3.578577515026968,
+          1.5163268952993283,
+          2.2896598792433,
+          1.4206698895342735,
+          -0.03471507676850354,
+          1.1474855122727379,
+          2.9794640679842326,
+          -1.2298812408261715,
+          -1.735574728973435,
+          -3.5256813728396565,
+          4.409923079079624,
+          -1.2581470161095132,
+          1.1886349660584257,
+          2.1413018565820474,
+          0.2521697718380416,
+          4.483794333518295,
+          -2.212521494708166,
+          -3.4766508891008225,
+          -0.9854791860294284,
+          2.1096621923249907,
+          4.373517825097663,
+          3.0597533713232545,
+          0.48652917252293515,
+          0.6884180877255839,
+          2.541337717174886,
+          -1.4043118183415304,
+          -4.018644084325435,
+          -1.8525137494565294,
+          3.162017699059439,
+          -2.331434005882855,
+          0.6308709308769342,
+          0.4905995312523511,
+          -0.8073603754688911,
+          4.027094799296693,
+          3.5504472172535864,
+          -1.2905362962596842,
+          0.08700778980820174,
+          -2.4928681219074464,
+          1.4359735267762839,
+          0.5450437170361263,
+          4.834159840083237,
+          -6.182174932910704,
+          2.5137747677288087,
+          -2.5421565268453303,
+          0.6825004749084448,
+          -0.9692276951117935,
+          -1.921312237014878,
+          -2.1323741443954476,
+          -0.5804140319332097,
+          3.688346286854874,
+          0.9565519532029946,
+          2.568983899525508,
+          2.5571312228094594,
+          1.5084353309454812,
+          -2.1763589872617657,
+          -4.048146497267456,
+          0.15352506971506347,
+          -2.5390378854258917,
+          1.607725987551311,
+          -5.057411112311457,
+          0.4493921139648043,
+          -1.4157017032817638,
+          2.0759686737350047,
+          1.7219565545290427,
+          4.565415842905052,
+          0.33934859444726534,
+          5.703471634637147,
+          -3.145352357829459,
+          0.2701669407229962,
+          0.023558745079462876,
+          -0.36982057271282315,
+          -3.4806702258045634,
+          -3.5336188995706306,
+          -2.1761995253115227,
+          1.9759837789705932,
+          -2.5764253864384465,
+          -2.316764904274521,
+          3.7820002323685897,
+          1.710017147112412,
+          -2.747061236511561,
+          -2.499384795977462,
+          -2.3440613937640706,
+          1.5635456421043223,
+          4.038090429046455,
+          -1.8726440368371435,
+          4.141748032797508,
+          -0.4741563489506237,
+          -1.9623508753439927,
+          3.9094575802663085,
+          -1.9632962299971781,
+          -1.6960122780423534,
+          -0.33297651337681233,
+          -0.827415841785501,
+          -2.3398261913859084,
+          -0.7496717685086943,
+          2.9045465290053554,
+          0.5118061451286399,
+          2.0571561044832247,
+          2.4420342769947525
          ],
          "z": [
-          1.1816437422247086,
-          -2.3188310579697236,
-          0.09998445812099455,
-          3.690357008511133,
-          1.4034210240255327,
-          0.35556623077224403,
-          -4.223434980750403,
-          -3.60143053002564,
-          -3.5142853680057096,
-          -2.656263408631421,
-          -2.711900478311402,
-          0.826448657086781,
-          -0.3285912471725905,
-          -2.7662987080422803,
-          3.3806028925144544,
-          -0.7028135960776863,
-          0.5491416616042049,
-          -2.39181557263192,
-          -2.784788316203146,
-          -3.167327715789543,
-          -2.215216695776406,
-          1.7610005459303304,
-          -3.1413201519726757,
-          -2.927024979996052,
-          -4.442320372692041,
-          -2.132174138660784,
-          -2.760748028717952,
-          -4.381201082491503,
-          -3.3168192987281486,
-          -3.406240105063054,
-          -3.6566230857923108,
-          -3.3407824988375587,
-          3.048062699285229,
-          -4.173956355180603,
-          -2.6853303113480576,
-          1.1870174032920573,
-          1.9454914481472274,
-          -3.8272916726720325,
-          -3.004067970109291,
-          -2.942793614883403,
-          -3.4281174331964475,
-          -2.3816519926113813,
-          -3.8251923893098763,
-          1.3408678876266928,
-          -3.382384771652795,
-          3.219156272096245,
-          1.5297608178114102,
-          -1.17628514534472,
-          -2.2606441622810443,
-          -0.05483110345354769,
-          -3.0495195714655896,
-          -4.304124808406854,
-          -3.4295645655572806,
-          -3.9396551389949126,
-          -2.9603691340428733,
-          -3.0096928096965017,
-          -1.1973721891454923,
-          -2.059229781273115,
-          -0.9346270061524603,
-          4.143743279240693,
-          -2.877279046574036,
-          -2.7129630736536208,
-          -0.6734056427375363,
-          0.8245327839232042,
-          -3.058765980108719,
-          -3.4219597466773948,
-          -2.8787344359445055,
-          -5.438201249559644,
-          3.605880384969196,
-          -4.248285924526216,
-          4.4013456942122735,
-          -3.5307507939796814,
-          -2.323473256336901,
-          -3.8397132207022056,
-          -3.6028129472192516,
-          -2.097668385760475,
-          -2.061436986177543,
-          -2.4033383096788086,
-          -4.930480511699203,
-          -1.9993873026648377,
-          -3.707748131335765,
-          -2.422870579475494,
-          -3.1941254576260523,
-          -3.461678313009227,
-          -2.9150305387407234,
-          -0.17790781844525128,
-          -4.312579570157352,
-          -2.098403674707449,
-          -3.7525082062088613,
-          -4.58181261838384,
-          1.9320214926439307,
-          -2.6354218869436288,
-          -0.6559898813895103,
-          1.0790322117219566,
-          -3.031817431856319,
-          -2.306789748622662,
-          -3.145129982293478,
-          -4.482722573364332,
-          2.680711298217514,
-          -3.698694028425737,
-          -3.0957953865469703,
-          -2.9113798775538613,
-          -4.049137506890303,
-          2.8532844895432015,
-          -4.551781736952198,
-          -0.6103378694584211,
-          -2.9338915275624364,
-          -5.658389819470701,
-          -3.233313304126336,
-          2.1453374621365935,
-          -0.9354956615376844,
-          -3.789223654867067,
-          -3.0121313632562425,
-          -3.5710405251840545,
-          0.4219155316003448,
-          3.142189612513733,
-          -0.4001915208452831,
-          -2.3772932048420197,
-          -2.9076158945754607,
-          0.5703635119908785,
-          -3.0821028691361065,
-          1.7847025274452561,
-          3.208953620834097,
-          -2.7825146960777767,
-          0.09518233591307057,
-          -4.239565400909699,
-          -4.588451251808492,
-          -4.65384224983726,
-          -3.967041884772554,
-          -3.102158913045967,
-          -2.65890813301598,
-          3.3292282803455646,
-          -2.1872401175895972,
-          2.2761878034789076,
-          -4.911921205674204,
-          -4.125001356594352,
-          -3.7339591305386284,
-          0.49446336088194537,
-          -1.3458804372843554,
-          -2.160215608538241,
-          -2.6320606345587954,
-          -3.254939896116236,
-          -2.2646736292892844,
-          -3.2536622916267652,
-          3.722481989495588,
-          3.2609252881997413,
-          -3.3574884626441004,
-          -4.276990033646683,
-          -1.7541673977144536,
-          -2.5315739154551915,
-          -3.578034467659263,
-          -3.2884818495531984,
-          1.3172228934221881,
-          0.333683961526437,
-          0.7662879161436806,
-          -0.039857093757588835,
-          -2.2167057951338602,
-          -3.0734494128491807,
-          -2.1162792472761462,
-          -3.4136771676804676,
-          -4.548170987843223,
-          -1.1973897237644702,
-          -2.387770507930115,
-          -3.4529673826202725,
-          -2.6133332157602362,
-          -2.6749439439632727,
-          -2.988185296229532,
-          -0.08254609636351207,
-          -3.758155156410403,
-          -3.9774631091891663,
-          -1.0948451286249157,
-          -3.878781929486006,
-          0.8707445935622995,
-          -2.460311542253126,
-          -2.8716815905770763,
-          0.3058975944094725,
-          -3.2753408697058797,
-          -3.4884662414042547,
-          -1.8815113701312098,
-          -3.281177784357584,
-          -3.18171627376699,
-          -3.6465875883277876,
-          -1.9108457715901632,
-          0.47458915246740446,
-          2.564788618248205,
-          3.8175773925927072,
-          -2.7149066826500174,
-          -3.932060531966082,
-          -3.5889408518296264,
-          2.526582715648062,
-          -2.8999016069323496,
-          -2.302154894702653,
-          -1.7828359334719355,
-          -2.99087393722462,
-          -2.895112143372959,
-          -3.871659326006481,
-          -2.9056223421800094,
-          -2.735843418360534,
-          -2.375469068082999,
-          1.4095448230943606,
-          1.7242603638010432,
-          -3.391769425810125,
-          -1.745495132149762,
-          0.9113675680133961,
-          -0.2423496135566724,
-          -4.304630305582791,
-          0.4653519046090493,
-          -2.484462666958227,
-          -2.220450163326356,
-          1.9751938782166467,
-          -3.634840328176638,
-          -3.2104510598139675,
-          -3.8899787177253904,
-          -4.616509737394775,
-          -6.494713018461167,
-          -2.3256480734901936,
-          -2.317682806610162,
-          -3.7237633386659583,
-          -2.7954714886338357,
-          -2.4454735397214624,
-          -2.4861990836462153,
-          -1.6286101955842165,
-          -2.756778149381817,
-          -2.8380678804342327,
-          -2.5658571378960398,
-          -3.919847614824369,
-          -2.485552376666132,
-          -3.6126139287364976,
-          -1.783877377403246,
-          4.169299162214761,
-          -3.586454349981981,
-          -3.7299967823858684,
-          -1.6693608725986908,
-          -3.267006385783169,
-          -3.5959311101910916,
-          3.0249294850352757,
-          -1.349472463629926,
-          -3.702466890511067,
-          2.377546474460389,
-          1.7980909366814144,
-          -2.6428970458171124,
-          -1.1116161254747412,
-          -2.775734910525498,
-          1.5069277905471963,
-          -3.586792963412849,
-          -0.11701129329605853,
-          0.7724406104350166,
-          -3.8795993160458537,
-          -2.023868610185846,
-          -2.690917022751837,
-          -3.382079127581182,
-          -2.2409446753441253,
-          2.2064252104837907,
-          -3.085684341845599,
-          -3.085160586544,
-          1.0193457532141672,
-          -2.7373677620163486,
-          -1.0852670312500523,
-          -2.287569189015153,
-          -2.7527191924203307,
-          -2.9260282669404973,
-          2.1443510106745047,
-          -3.7323187394028357,
-          -1.9530887277118252,
-          -3.6661322104929237,
-          -3.236056901666731,
-          -0.7700902086634399,
-          -2.1511478060987836,
-          1.4918251859015488,
-          3.5682966136727576,
-          -0.917348612896391,
-          0.7991986598170557,
-          -2.563977451355924,
-          -2.8358581952359527,
-          -3.5756093576214014,
-          1.3910132312469332,
-          0.9580490451158015,
-          -3.407645207070137,
-          2.3565274259784674,
-          -3.1977923820543603,
-          -2.432294534902317,
-          3.1464253113223384,
-          1.118469521199404,
-          -3.642749489951707,
-          -2.5775744430677396,
-          3.1445073079325647,
-          -3.5970595128310268,
-          1.0244875650659186,
-          -4.652274737916381,
-          -3.763636160855687,
-          -3.9014327829295934,
-          -2.442361265287595,
-          -3.648374445580198,
-          -3.0259668353561224,
-          -4.3570088899162185,
-          -3.2266266719662715,
-          -1.2050532119046042,
-          -0.21979968044395004,
-          -3.431608686486543,
-          3.487991096962554,
-          -2.031090959251939,
-          0.7894496785207576,
-          -4.139979929770267,
-          0.7401762778745024,
-          2.27321818746067,
-          -3.659110416342199,
-          -2.0500593353381884,
-          1.0923837580128382,
-          -3.442766839165252,
-          -2.0401170228768515,
-          -0.6466900788073628,
-          -2.3580943868332414,
-          -2.155827200758199,
-          2.8253966115103037,
-          1.6450208653151797,
-          -3.0480799015775655,
-          -2.520680764762366,
-          2.071783442733788,
-          -2.7699118582054894,
-          -3.5908606779070933,
-          2.049522278428467,
-          -2.2863105778425035,
-          -4.99035425807983,
-          -1.940036485441478,
-          2.4200836572215607,
-          -2.5688268580644937,
-          -1.8366683367336607,
-          -0.5220266394012341,
-          -2.389054009118467,
-          -0.5195721136972082,
-          1.2369280159405398,
-          -3.8591959173058594,
-          -4.132567396645345
+          -0.35531347156698423,
+          0.6777258865305044,
+          -0.20953283318990626,
+          0.045154677657156986,
+          -2.4206531878703883,
+          -0.04135331691074221,
+          0.822298361341619,
+          -0.7572982405244422,
+          -0.12661596582376955,
+          0.016394259991668325,
+          0.9667139002115319,
+          1.2892729482948224,
+          2.5345813852797323,
+          -0.05731094123511855,
+          0.5668655964579473,
+          1.2682024154773537,
+          -0.21657522581704905,
+          1.2623518385020949,
+          -0.28485017734297907,
+          -1.8516444275193105,
+          -0.011681126335218403,
+          -0.09115576252163249,
+          1.6170249031929476,
+          -0.10657209603039457,
+          -2.1460076100461216,
+          0.28024985417109743,
+          -0.654332587681935,
+          -3.6353648900669797,
+          -0.504579764134604,
+          0.010250097336389832,
+          -0.273377089795874,
+          -0.26266939609824547,
+          -0.26901990732310016,
+          2.5131170812332324,
+          1.039333712392398,
+          -0.6077979290384118,
+          -2.002908958407718,
+          -0.6035687750657627,
+          0.48422920305413236,
+          1.8649455494397518,
+          1.6691578200208848,
+          -0.04813468858175472,
+          0.3708410131295311,
+          -0.33966322376342567,
+          0.7025708226558092,
+          -0.06623396005293346,
+          0.3372195646004807,
+          1.708616339815688,
+          -0.478241253087517,
+          0.24351860355361532,
+          2.0661031796345135,
+          -0.14849551826805713,
+          -1.0010754654376326,
+          0.09692416628016741,
+          0.012038115643588308,
+          -0.4342455844866448,
+          -2.3857442230891417,
+          0.37532608138755913,
+          1.3642698731547591,
+          1.2442643428501317,
+          1.3206630472744842,
+          1.543802467082663,
+          1.5162523217148025,
+          0.2296634182672749,
+          4.299485608539929,
+          -0.6033301213579838,
+          -0.9974059910031142,
+          0.005865931596398736,
+          -5.839445627561965,
+          -0.26843452959601866,
+          -0.9457651879638296,
+          1.4988827405425704,
+          5.772759492294177,
+          -1.3946972898589969,
+          -1.3439097614606277,
+          0.565226212988587,
+          3.461263647862684,
+          0.12554501873040907,
+          0.458995999449233,
+          0.8241340837584085,
+          -2.4140231346198817,
+          -0.6573097125955927,
+          0.6216951597581082,
+          -1.9541368565125825,
+          1.717183670762076,
+          -1.3705617426745904,
+          0.4864555138854684,
+          0.15196666285982116,
+          -0.5055103428231665,
+          0.6435130984348552,
+          0.05912210355838175,
+          -0.5854652969813754,
+          -2.840227081873298,
+          0.6698476669714056,
+          1.0671071112091246,
+          -1.6421967922990852,
+          4.539561059503161,
+          1.0776720965009747,
+          0.19129627401812538,
+          0.5168581012961905,
+          3.967646279428569,
+          -0.2537192903017379,
+          0.6416236770185677,
+          -0.7753689176682875,
+          3.5098298521368148,
+          -1.5095647219618529,
+          0.6975092684514553,
+          -1.055705093038466,
+          -3.289080055497492,
+          1.1742772349070516,
+          0.6692160979458531,
+          1.3126784035287773,
+          2.0944337389986507,
+          1.2694818424169838,
+          -0.604241794298773,
+          -0.4115232976555821,
+          -0.5968985968877325,
+          -0.8105766028802628,
+          0.6838908743124905,
+          0.6454956800230902,
+          -0.46259349764667035,
+          -0.27902924040042476,
+          -0.26249993840333213,
+          0.0425865386981706,
+          -1.3918222433883654,
+          -0.05957316799169612,
+          0.3500094967310084,
+          -1.1646069811958746,
+          2.7724875345927598,
+          -0.5511639438283712,
+          0.03882666303050273,
+          -0.5672484887114124,
+          5.27959429795571,
+          -0.9526666575029451,
+          -0.13821275878333758,
+          -0.3638535016476721,
+          0.2601963617626222,
+          0.0037876914227796725,
+          0.31634240965093946,
+          1.2830210950955476,
+          4.41492144565117,
+          0.16783468717863592,
+          0.021107728734321405,
+          0.6814173866325244,
+          2.630446398440564,
+          -0.17670271446799987,
+          -0.11001160779094153,
+          1.8359711672259313,
+          2.5068056469815323,
+          0.5980327036988423,
+          -1.0782365401619574,
+          1.1628563036811868,
+          -1.0495756184781146,
+          1.8105243715817112,
+          -0.44261210967250625,
+          1.6908413382345981,
+          -3.3059751468335525,
+          0.7279544823486102,
+          0.3751041873368233,
+          -0.13404881937236743,
+          -2.3527700304831862,
+          0.1505254005854181,
+          0.9174873038600516,
+          -0.8624839126514054,
+          0.018270738913680046,
+          -0.07243887943710622,
+          0.9396166095175024,
+          -0.3221262312714341,
+          1.6648777904283643,
+          0.0289957894905985,
+          0.6593531646937161,
+          0.028868236363300957,
+          3.0662920480069786,
+          0.5295923396952134,
+          2.162354866475374,
+          1.3155672175661497,
+          -2.651035566648835,
+          -0.4297144898992453,
+          0.9788536705565654,
+          -1.7406561205163489,
+          -6.483300665778605,
+          0.8673508255008959,
+          -1.1022656054797948,
+          -0.7545848321794022,
+          1.7105338967727526,
+          -0.922558312882581,
+          -1.916095183801276,
+          -0.200087125591673,
+          3.6197266290194543,
+          -0.0392448498953175,
+          -1.9612418568128043,
+          0.2991688275409537,
+          -3.1044396779524615,
+          0.8149215569883757,
+          0.7187289287607286,
+          0.8371569598472952,
+          -0.3847972858140272,
+          -0.5518560082240908,
+          -1.3194539498742073,
+          0.02648747663157424,
+          -3.7670327956814886,
+          0.14608842760717172,
+          -0.7421019335955632,
+          -1.951499257793606,
+          0.6479331602542197,
+          -1.5464127964731904,
+          0.016181222030627503,
+          -1.9866783659500968,
+          -1.1790274620233405,
+          -1.5619667670613728,
+          1.9079511898440673,
+          0.36744214390215196,
+          0.6263860328871323,
+          -0.16862231426560342,
+          -0.09042479909258466,
+          0.018014183544561097,
+          -4.149581721178471,
+          -0.06166717382959541,
+          0.3465203082474408,
+          0.17407835308095293,
+          0.39377471020461974,
+          1.1583677985645346,
+          0.05493636322808915,
+          -1.2839584610880588,
+          -5.110753429585545,
+          -0.1514349874222577,
+          0.04390814211261279,
+          -0.5268981344979107,
+          -3.949708124218976,
+          0.42317801428042207,
+          -1.0420912671054006,
+          0.07027007802502903,
+          -2.3397604391137232,
+          0.008759218074700401,
+          1.356232125053572,
+          1.3282697490160298,
+          2.9863376453100154,
+          0.0026178288809656793,
+          0.8589387575626242,
+          -1.0012504373419362,
+          -2.928291099869751,
+          0.8304749439653883,
+          -0.06340109456778725,
+          -1.5226285060927849,
+          2.0443228363854944,
+          0.15547225867840525,
+          -1.8523272290242734,
+          0.46688027607388954,
+          1.1685676530873474,
+          1.1168680140005594,
+          -0.36365927831612677,
+          -1.1816578018498884,
+          2.711717516305036,
+          -1.0759005259460726,
+          1.8592349501772867,
+          0.11229483469313571,
+          -0.6558393683568663,
+          -0.8189914529075989,
+          0.34356738477448084,
+          -0.03082798636911512,
+          2.72389849947292,
+          -0.8255926340430914,
+          2.1684132053633616,
+          1.4488511106270585,
+          0.0478842750365347,
+          1.17027990776739,
+          -0.6610329922647706,
+          1.6095949138735013,
+          -2.209632670482124,
+          0.4300666012674167,
+          0.44272184395053343,
+          1.403898176190047,
+          2.9870403531022984,
+          -0.7512959365530045,
+          -0.23916193346547868,
+          -1.843679498577987,
+          -3.6251176172076605,
+          0.11988089282972506,
+          1.5910516987388166,
+          0.04742530510776131,
+          -0.21346141342166697,
+          0.593547454398,
+          1.2655492211830053,
+          -1.102587285027451,
+          0.2560027802299536,
+          0.15978729842629436,
+          0.1746328802985315,
+          0.482110768405719,
+          -1.8605055069016052,
+          1.2472628293534296,
+          -0.4206278095814442,
+          0.4614016744234762,
+          2.7755904460709266,
+          -0.5314474244756414,
+          0.615616991371997,
+          -0.016912009513263646,
+          4.136590253990664,
+          0.8219978428236722,
+          1.3798772455645079,
+          -1.230510008646596,
+          0.08881545977827456,
+          0.07874983101248485,
+          0.2171105569794806,
+          -0.18339145723488437,
+          -3.953699853891021,
+          0.5433589585884274,
+          0.9880191959073336,
+          -1.1130899667451986,
+          -0.46573853517177316,
+          0.05013365424049855,
+          0.044217481527646756,
+          -1.5683976345994615,
+          -2.3162503803872285,
+          -0.8485920304797725,
+          0.009887438360011947,
+          -0.20195749393566872,
+          0.17492818215551026,
+          0.774370079668051,
+          -0.7014112969594942,
+          -0.5038998113015014,
+          5.307241911529212,
+          -0.758451381436096,
+          -0.4964239560146786,
+          1.0083767174628577,
+          -5.6323283469861325,
+          -0.2436433031810534,
+          -0.03718537391094323,
+          -0.7902856210675734,
+          -1.3961035845130716,
+          0.12455709205545003,
+          0.6468809993111468,
+          -0.43773484815092895,
+          -4.938456490739519,
+          0.5479899357239174,
+          -0.4881931609068813,
+          0.015576630996436828,
+          -2.5302122299731806,
+          0.3489728635159925,
+          -0.09570247642541017,
+          -0.4889571476579747,
+          1.465346461905039,
+          -0.3541853987785077,
+          -0.38282942255835023,
+          -1.1961751831492908,
+          -3.3148868529900284,
+          0.6232465896282957,
+          0.832410681254453,
+          -0.2640773203781825,
+          2.610019270971725,
+          0.4296964964106342,
+          0.8324816762134924,
+          0.0009304891452709452,
+          -4.26730651642871,
+          -0.08720388748660872,
+          -0.5380678393027465,
+          0.03924413131572679,
+          2.4080280912876098,
+          -0.040538714937009446,
+          1.6473660644576027,
+          -0.11794350346261528,
+          3.403124639470172,
+          -1.0773434099873302,
+          0.6540738479587888,
+          1.531033436694918,
+          4.00317223508611,
+          2.8210097835099526,
+          0.9640666170868982,
+          -3.1112788837083927,
+          -1.344944422803581,
+          2.5105238313902416,
+          0.420080402255116,
+          1.9336001059889307,
+          1.068105795979851,
+          -1.8385625333428253,
+          -1.7967097459286867,
+          1.8184817412985876,
+          3.7491169793842594,
+          -1.951367842113571,
+          -2.4247907605503216,
+          -5.221379897483157,
+          -0.11874412789873313,
+          0.40736567777256844,
+          -0.9040560308269653,
+          -0.5923263576193054,
+          -4.068253293738102,
+          -1.8508953399579635,
+          0.917653995870312,
+          -5.651141450607896,
+          0.22558023497696567,
+          -1.0264193835566757,
+          -2.0822838827096204,
+          -3.8629439159595145,
+          3.6502993074870904,
+          2.3542925868640814,
+          1.364261464393484,
+          -1.1215726676603517,
+          -2.494266604942267,
+          -4.531269687122927,
+          2.000551769969412,
+          0.9471635832964266,
+          2.2179665101909904,
+          1.3814535556723533,
+          -2.9741273539864688,
+          3.6025106394434303,
+          -0.052805366228806536,
+          -0.5728416960877725,
+          2.406716343444264,
+          2.3112593533674106,
+          -3.0572747076641926,
+          0.7365307752101564,
+          -3.0184301059986627,
+          2.7726673677186966,
+          -0.808138369227064,
+          -3.8705065997744517,
+          -2.5137018291687183,
+          1.6342277885096164,
+          -1.4479150388276418,
+          2.874726769178214,
+          1.9905637656000041,
+          -0.9889271596526404,
+          -0.06338674651316369,
+          3.514576293344007,
+          1.584829884930283,
+          -1.9366928816828313,
+          2.9325645585814675,
+          0.6154754418012238,
+          -0.2653173185090628,
+          3.0181853959754394,
+          4.628886530119361,
+          3.674927773848448,
+          1.286778371799913,
+          1.5882254315005213,
+          -0.5016858432707226,
+          3.727197522596411,
+          -0.7686515570734737,
+          1.9713235810243985,
+          2.99572815825907,
+          1.7790585481255496,
+          -3.338045137422692,
+          1.8923163980002615,
+          -1.75292687451143,
+          2.9945643415111673,
+          2.4353710234978116,
+          -2.567864049490686,
+          -0.8425367320045283,
+          1.3055811840602107,
+          -3.4701045026812958,
+          2.615318319039739,
+          -2.7904174989738717,
+          -1.3367646728121758,
+          2.1899623193521807,
+          0.5653618342787581,
+          -0.41993524679237054,
+          -0.2496010431946734,
+          -7.202718858151961,
+          2.2269167712844777,
+          -1.986401186251954,
+          3.8925543774942692,
+          1.4141991570430406,
+          2.185882913850595,
+          -2.8837655881698407,
+          0.36390171079050004,
+          0.3347077471251091,
+          0.7153959328127237,
+          2.3360066983050483,
+          -3.48064994023026,
+          3.7478601154456443,
+          3.1515330700616233,
+          -0.58069259178653,
+          -2.6704665712649263,
+          3.5808142601274255,
+          -2.0540516633448327,
+          1.6443443521770091,
+          2.413125440457457,
+          2.7168609473384824,
+          -0.2068637962355733,
+          0.8239636673882337,
+          0.9794878571819664,
+          0.8798130397354799,
+          -0.37756048048936747,
+          -0.298272787349739,
+          -1.7444957095299247,
+          4.877165068854727,
+          -1.2560313936316914,
+          2.918309961487624,
+          -3.303743633108573,
+          4.662041488598643,
+          -2.1924194836342163,
+          -2.7729016966043765,
+          -1.793455168032716,
+          -3.5357931278725094,
+          2.6749485449758135,
+          3.089706692321196,
+          2.1040922823331756,
+          -0.6574478610948292,
+          -1.3568023127497275,
+          -0.6004803522135578,
+          -0.7135212829301596,
+          -1.5969945355670454,
+          -4.348399259665122,
+          3.0048001303829355,
+          3.0242906048909375,
+          2.9831806210036946,
+          1.0976930113017294,
+          -1.391404786446225,
+          -0.6582039372087553,
+          1.1269855083910445,
+          0.0864768687455212,
+          3.5207968072570246,
+          -0.3869869825746559,
+          2.1040628385258286,
+          -2.826461040955081,
+          2.188552393797245,
+          -2.987842011671396,
+          -2.4029819708735936,
+          1.3593948820336341,
+          -2.5862072467836446,
+          2.275875293786672,
+          2.7554204789720007,
+          -3.825826377720669,
+          -1.2226337953005026,
+          -0.5709602983688431,
+          -0.3478370527368893,
+          3.43841816571029,
+          -4.637137560422887,
+          -0.7839858302867923,
+          0.06836492183290034,
+          4.619023179449109,
+          0.8840469402540462,
+          -1.7108767282971955,
+          -2.116715032045294,
+          1.966348968061612,
+          -2.6779079643534676,
+          -3.156632547246943,
+          -4.614811824278258,
+          3.3922191302541496,
+          -2.262507711550273,
+          2.1572093056480024,
+          -2.5658469089166696,
+          1.3949420978678941,
+          2.565306645074423,
+          1.509767704870607,
+          2.325116316995868,
+          1.630236496837183,
+          -0.8931149277709276,
+          -0.8505293995468454,
+          2.9214316320943796,
+          1.7306706465983774,
+          3.6491478082165028,
+          -1.8634243653177844,
+          1.306898772922891,
+          -0.4354295805768932,
+          0.7313412156986229,
+          -2.0710738092251186,
+          3.897829513495205,
+          -1.7602861437833515,
+          -3.5510253149963638,
+          3.3636558884409125,
+          -0.38142527269575544,
+          2.326551060454298,
+          -1.7720347715228721,
+          2.3649041165879567,
+          2.8559469687317374,
+          -1.960239874141158,
+          1.6458504147875743,
+          2.93477712693421,
+          2.024700491862389,
+          0.11147867969432121,
+          -2.343343203675426,
+          3.7382215465575515,
+          2.2412679290695627,
+          2.994104259917402,
+          2.2007237264074146,
+          -1.4570861789290193,
+          -3.0393078220620855,
+          -3.050642030040429,
+          2.5568624291125253,
+          1.454364016637675,
+          -1.0569589105457151,
+          -3.9048880890435806,
+          3.0890994867961235,
+          -0.6453088890599745,
+          -1.916587312709547,
+          0.49553330292372294,
+          4.675732859692113,
+          -1.6721027295961406,
+          0.7721944703177341,
+          -2.3479005737891425,
+          -2.6512195739937394,
+          -2.0936624237783183,
+          -2.6115283362295143,
+          -1.8325799875348905,
+          -2.544241001524061,
+          -2.6763203984739294,
+          -0.024389270477659774,
+          -0.2027968596306624,
+          -0.08293323607478721,
+          3.5784227253842413,
+          1.2997768069293119,
+          -3.5401817687778134,
+          -3.0103717690568903,
+          -4.985953092827621,
+          -4.256922967490878,
+          1.9077048165398782,
+          -2.481166856236908,
+          2.160002677131222,
+          -0.042910855369502295,
+          -1.1893513322824338,
+          -0.7771834809169708,
+          -3.014346473492267,
+          -0.75686632829856,
+          2.158541037871299,
+          5.275323152645222,
+          -0.6626026211743128,
+          -2.8446461136967094,
+          3.083458696643936,
+          -2.0506095589117384,
+          0.7454275443389742,
+          -0.697593805148865,
+          0.3315288615492791,
+          -3.3004774732449627,
+          -1.4904783576669742,
+          0.5138848168294539,
+          2.3492395268445234,
+          0.15197432239586536,
+          -1.8217670272744297,
+          -2.7397276164037665,
+          2.382251879621614,
+          2.0008473749706135,
+          3.4636456684292636,
+          0.07741608553950456,
+          2.529521810737265,
+          -5.604112603548497,
+          1.218035274863617,
+          2.28968480927008,
+          -0.9247305087852485,
+          -6.070986591914866,
+          2.3629316395213236,
+          1.4850766497873795,
+          1.1852133616858982,
+          -0.33515847758941425,
+          -5.385084419486567,
+          1.3734299446353166,
+          -3.592483729295716,
+          -0.3349733096359226,
+          3.280310908394365,
+          -0.8639088316935273,
+          -0.8156892629584517,
+          2.7879675727700084,
+          -2.1720345488540937,
+          0.45574919063819364,
+          -0.6326454686651912,
+          2.1132085541322243,
+          -0.41743178308549045,
+          -3.677813372939223,
+          -2.8577975084104645,
+          2.265628922445073,
+          1.178429970470615,
+          -2.354405225596376,
+          2.740292193669738,
+          2.1820135301617976,
+          0.8273017202432514,
+          -3.0773586955585577,
+          0.9366022638306084,
+          -1.5164362409183938,
+          1.7025432487577072
          ]
         },
         {
@@ -24236,1345 +36157,2677 @@
          "scene": "scene4",
          "showlegend": false,
          "text": [
-          "example_2",
-          "redundancy_40_0",
-          "Complementary_79_0",
-          "mutual_error_24_0",
-          "example_9",
-          "example_10",
-          "example_23",
-          "redundancy_18_0",
-          "example_29",
-          "example_30",
-          "mutual_error_6_0",
-          "example_33",
-          "example_39",
-          "Complementary_53_0",
-          "Complementary_70_0",
-          "mutual_error_28_0",
-          "redundancy_62_0",
-          "Complementary_98_0",
-          "example_60",
-          "Complementary_42_0",
-          "Complementary_89_0",
-          "example_66",
-          "mutual_error_27_0",
-          "example_70",
-          "example_72",
-          "example_76",
-          "Complementary_78_0",
-          "mutual_error_16_0",
-          "redundancy_25_0",
-          "example_81",
-          "example_82",
-          "Complementary_22_0",
-          "example_86",
-          "example_88",
-          "example_96",
-          "mutual_error_9_0",
-          "example_101",
-          "Complementary_10_0",
-          "Complementary_81_0",
-          "example_110",
-          "example_118",
-          "Complementary_58_0",
-          "redundancy_8_0",
-          "Complementary_74_0",
-          "example_137",
-          "example_139",
-          "example_141",
-          "redundancy_5_0",
-          "Complementary_0_0",
-          "Complementary_14_0",
-          "example_165",
-          "example_168",
-          "example_174",
-          "redundancy_55_0",
-          "Complementary_8_0",
-          "example_196",
-          "redundancy_11_0",
-          "example_199",
-          "example_204",
-          "example_208",
-          "Complementary_18_0",
-          "Complementary_77_0",
-          "example_211",
-          "redundancy_6_0",
-          "example_213",
-          "Complementary_49_0",
-          "example_218",
-          "example_221",
-          "redundancy_48_0",
-          "redundancy_30_0",
-          "example_231",
-          "example_235",
-          "example_237",
-          "Complementary_54_0",
-          "example_244",
-          "example_247",
-          "Complementary_47_0",
-          "redundancy_9_0",
-          "Complementary_92_0",
-          "Complementary_68_0",
-          "Complementary_44_0",
-          "redundancy_15_0",
-          "Complementary_41_0",
-          "Complementary_16_0",
-          "example_266",
-          "example_275",
-          "redundancy_61_0",
-          "example_280",
-          "Complementary_65_0",
-          "example_286",
-          "mutual_error_25_0",
-          "mutual_error_30_0",
-          "example_292",
-          "redundancy_53_0",
-          "example_296",
-          "Complementary_17_0",
-          "example_299",
-          "mutual_error_15_0",
-          "example_305",
-          "example_306",
-          "Complementary_84_0",
-          "example_309",
-          "Complementary_57_0",
-          "example_311",
-          "redundancy_54_0",
-          "redundancy_43_0",
-          "Complementary_55_0",
-          "redundancy_2_0",
-          "redundancy_34_0",
-          "example_323",
-          "example_327",
-          "mutual_error_32_0",
-          "Complementary_20_0",
-          "redundancy_17_0",
-          "Complementary_38_0",
-          "Complementary_3_0",
-          "Complementary_7_0",
-          "example_346",
-          "example_350",
-          "example_351",
-          "example_352",
-          "example_355",
-          "redundancy_31_0",
-          "Complementary_46_0",
-          "example_361",
-          "example_362",
-          "Complementary_52_0",
-          "example_365",
-          "mutual_error_23_0",
-          "mutual_error_2_0",
-          "redundancy_65_0",
-          "Complementary_87_0",
-          "example_382",
-          "example_388",
-          "example_394",
-          "example_398",
-          "example_404",
-          "Complementary_56_0",
-          "Complementary_63_0",
-          "example_423",
-          "Complementary_24_0",
-          "example_425",
-          "example_428",
-          "mutual_error_21_0",
-          "Complementary_23_0",
-          "example_432",
-          "example_433",
-          "example_436",
-          "example_439",
-          "example_442",
-          "example_447",
-          "Complementary_12_0",
-          "redundancy_42_0",
-          "example_450",
-          "mutual_error_31_0",
-          "redundancy_21_0",
-          "example_456",
-          "example_462",
-          "Complementary_1_0",
-          "Complementary_88_0",
-          "example_468",
-          "example_477",
-          "Complementary_48_0",
-          "redundancy_28_0",
-          "example_482",
-          "Complementary_91_0",
-          "Complementary_82_0",
-          "Complementary_27_0",
-          "Complementary_97_0",
-          "example_499",
-          "redundancy_63_0",
-          "example_513",
-          "Complementary_71_0",
-          "redundancy_12_0",
-          "example_518",
-          "example_521",
-          "example_522",
-          "Complementary_43_0",
-          "example_526",
-          "example_527",
-          "Complementary_96_0",
-          "example_529",
-          "Complementary_37_0",
-          "example_534",
-          "example_535",
-          "example_538",
-          "example_539",
-          "example_541",
-          "example_542",
-          "example_543",
-          "Complementary_59_0",
-          "Complementary_31_0",
-          "example_549",
-          "example_551",
-          "example_554",
-          "Complementary_60_0",
-          "example_570",
-          "Complementary_86_0",
-          "mutual_error_3_0",
-          "example_576",
-          "example_578",
-          "example_580",
-          "mutual_error_8_0",
-          "mutual_error_19_0",
-          "mutual_error_11_0",
-          "example_593",
-          "Complementary_72_0",
-          "Complementary_35_0",
-          "example_597",
-          "redundancy_14_0",
-          "redundancy_7_0",
-          "Complementary_25_0",
-          "redundancy_47_0",
-          "example_605",
-          "example_618",
-          "Complementary_62_0",
-          "redundancy_20_0",
-          "example_625",
-          "example_630",
-          "example_634",
-          "Complementary_34_0",
-          "Complementary_9_0",
-          "example_644",
-          "Complementary_19_0",
-          "example_650",
-          "example_652",
-          "redundancy_60_0",
-          "redundancy_37_0",
-          "mutual_error_20_0",
-          "Complementary_28_0",
-          "Complementary_73_0",
-          "example_689",
-          "Complementary_4_0",
-          "example_696",
-          "example_697",
-          "redundancy_29_0",
-          "Complementary_45_0",
-          "example_707",
-          "mutual_error_18_0",
-          "example_712",
-          "example_713",
-          "redundancy_36_0",
-          "example_716",
-          "example_720",
-          "mutual_error_29_0",
-          "Complementary_26_0",
-          "redundancy_24_0",
-          "example_737",
-          "mutual_error_14_0",
-          "redundancy_35_0",
-          "example_746",
-          "example_750",
-          "redundancy_64_0",
-          "example_765",
-          "example_773",
-          "Complementary_13_0",
-          "mutual_error_22_0",
-          "mutual_error_10_0",
-          "Complementary_15_0",
-          "Complementary_80_0",
-          "example_788",
-          "Complementary_5_0",
-          "redundancy_32_0",
-          "redundancy_13_0",
-          "Complementary_30_0",
-          "redundancy_50_0",
-          "Complementary_66_0",
-          "Complementary_51_0",
-          "Complementary_2_0",
-          "redundancy_27_0",
-          "Complementary_85_0",
-          "example_819",
-          "Complementary_76_0",
-          "example_824",
-          "mutual_error_4_0",
-          "mutual_error_5_0",
-          "redundancy_33_0",
-          "example_834",
-          "Complementary_75_0",
-          "Complementary_33_0",
-          "example_843",
-          "redundancy_16_0",
-          "redundancy_3_0",
-          "Complementary_93_0",
-          "example_858",
-          "redundancy_1_0",
-          "redundancy_10_0",
-          "mutual_error_26_0",
-          "Complementary_36_0",
-          "redundancy_52_0",
-          "example_876",
-          "redundancy_4_0",
-          "Complementary_21_0",
-          "mutual_error_1_0",
-          "example_892",
-          "Complementary_83_0",
-          "redundancy_51_0",
-          "redundancy_0_0",
-          "example_901",
-          "redundancy_56_0",
-          "mutual_error_0_0",
-          "example_909",
-          "Complementary_50_0",
-          "redundancy_19_0",
-          "Complementary_95_0",
-          "Complementary_90_0",
-          "example_922",
-          "Complementary_61_0",
-          "Complementary_6_0",
-          "Complementary_69_0",
-          "Complementary_94_0",
-          "example_934",
-          "example_935",
-          "Complementary_11_0",
-          "example_939",
-          "example_940",
-          "example_945",
-          "Complementary_67_0",
-          "mutual_error_7_0",
-          "redundancy_57_0",
-          "mutual_error_17_0",
-          "Complementary_40_0",
-          "Complementary_32_0",
-          "example_960",
-          "redundancy_59_0",
-          "Complementary_29_0",
-          "Complementary_39_0",
-          "redundancy_44_0",
-          "example_984",
-          "example_985",
-          "redundancy_45_0",
-          "Complementary_64_0",
-          "redundancy_38_0"
+          "0_l_0_m-0_2.4-1_0.58-2_0.67-3_0.97",
+          "1_l_0_m-0_0.19-1_0.26-2_0.99-3_0.5",
+          "2_l_0_m-0_2.09-1_0.3-2_0.75-3_0.13",
+          "3_l_0_m-0_0.04-1_0.73-2_1.31-3_0.4",
+          "4_l_0_m-0_0.59-1_0.13-2_0.67-3_0.97",
+          "5_l_0_m-0_0.66-1_0.05-2_0.18-3_0.03",
+          "6_l_0_c_1_2_3-0_0.94-1_0.1-2_0.23-3_0.3",
+          "7_l_0_c_1_2_3-0_0.21-1_0.11-2_0.01-3_1.4",
+          "8_l_0_c_1_2_3-0_0.22-1_0.75-2_1.82-3_0.33",
+          "9_l_0_c_1_2_3-0_0.55-1_0.67-2_0.33-3_0.39",
+          "10_l_0_c_1_2_3-0_0.37-1_0.75-2_0.7-3_1.43",
+          "11_l_0_c_1_2_3-0_1.46-1_0.99-2_0.23-3_0.79",
+          "12_l_0_c_1_2_3-0_1.6-1_0.29-2_1.48-3_0.06",
+          "13_l_0_c_1_2_3-0_0.09-1_0.85-2_0.86-3_0.09",
+          "14_l_0_c_1_2_3-0_1.43-1_0.86-2_0.81-3_0.59",
+          "15_l_0_c_0_1_2-0_0.65-1_0.78-2_0.13-3_1.35",
+          "16_l_0_c_1_2_3-0_0.52-1_0.31-2_0.58-3_0.24",
+          "17_l_0_c_0_1_2-0_0.65-1_0.04-2_0.07-3_1.46",
+          "18_l_0_c_1_2_3-0_0.4-1_0.48-2_0.96-3_1.37",
+          "19_l_0_c_0_1_2-0_0.3-1_0.61-2_1.07-3_0.03",
+          "20_l_0_c_1_2_3-0_0.01-1_0.54-2_1.43-3_1.4",
+          "21_l_0_c_0_1_2-0_0.58-1_1.21-2_0.22-3_0.94",
+          "22_l_0_c_1_2_3-0_0.53-1_0.6-2_0.85-3_0.0",
+          "23_l_0_c_0_1_2-0_0.34-1_1.06-2_0.53-3_1.21",
+          "24_l_0_c_1_2_3-0_0.65-1_1.44-2_1.2-3_0.0",
+          "25_l_0_c_0_1_2-0_0.29-1_0.01-2_0.62-3_1.62",
+          "26_l_0_c_1_2_3-0_0.21-1_0.41-2_1.81-3_0.91",
+          "27_l_0_c_0_1_2-0_0.01-1_0.38-2_0.09-3_1.22",
+          "28_l_0_c_1_2_3-0_0.29-1_0.07-2_0.25-3_0.56",
+          "29_l_0_c_0_1_2-0_0.11-1_0.27-2_0.76-3_0.72",
+          "30_l_0_c_1_2_3-0_1.58-1_0.22-2_1.64-3_0.24",
+          "31_l_0_c_0_1_2-0_0.04-1_1.18-2_0.57-3_1.1",
+          "32_l_0_c_1_2_3-0_0.06-1_1.54-2_0.54-3_0.29",
+          "33_l_0_c_0_1_2-0_0.09-1_0.35-2_0.08-3_0.59",
+          "34_l_0_c_1_2_3-0_0.75-1_0.26-2_0.42-3_0.61",
+          "35_l_0_c_0_1_2-0_0.94-1_0.33-2_1.08-3_0.47",
+          "36_l_0_c_1_2_3-0_0.84-1_0.21-2_1.76-3_1.26",
+          "37_l_0_c_0_1_2-0_1.06-1_0.55-2_0.31-3_0.36",
+          "38_l_0_c_1_2_3-0_0.31-1_0.51-2_0.77-3_0.43",
+          "39_l_0_c_0_1_2-0_0.89-1_0.11-2_0.37-3_2.67",
+          "40_l_0_c_1_2_3-0_0.16-1_0.53-2_0.07-3_0.17",
+          "41_l_0_c_0_1_2-0_0.15-1_0.07-2_0.3-3_0.1",
+          "42_l_0_c_1_2_3-0_0.02-1_0.33-2_1.0-3_0.26",
+          "43_l_0_c_0_1_2-0_0.44-1_2.02-2_0.01-3_0.49",
+          "44_l_0_c_1_2_3-0_0.16-1_0.12-2_0.27-3_0.53",
+          "45_l_0_c_0_1_2-0_0.37-1_1.51-2_0.7-3_0.58",
+          "46_l_0_c_1_2_3-0_1.76-1_0.68-2_0.25-3_1.71",
+          "47_l_0_c_0_1_2-0_0.07-1_1.64-2_0.35-3_1.54",
+          "48_l_0_c_1_2_3-0_1.98-1_0.69-2_0.38-3_0.29",
+          "49_l_0_c_0_1_2-0_1.46-1_0.1-2_0.18-3_1.28",
+          "50_l_0_c_0_1_3-0_0.29-1_0.58-2_0.2-3_0.97",
+          "51_l_0_c_1_2_3-0_1.21-1_1.03-2_0.61-3_0.15",
+          "52_l_0_c_0_1_2-0_1.45-1_1.34-2_2.56-3_1.74",
+          "53_l_0_c_0_1_3-0_0.12-1_0.29-2_0.32-3_0.28",
+          "54_l_0_c_1_2_3-0_1.06-1_0.32-2_0.19-3_0.44",
+          "55_l_0_c_0_1_2-0_0.69-1_0.08-2_0.6-3_0.98",
+          "56_l_0_c_0_1_3-0_0.21-1_0.27-2_0.12-3_0.78",
+          "57_l_0_c_1_2_3-0_0.66-1_0.58-2_0.37-3_0.95",
+          "58_l_0_c_0_1_2-0_0.06-1_0.7-2_1.37-3_0.21",
+          "59_l_0_c_0_1_3-0_0.09-1_0.71-2_0.25-3_0.08",
+          "60_l_0_c_1_2_3-0_0.4-1_1.02-2_1.07-3_0.64",
+          "61_l_0_c_0_1_2-0_0.4-1_0.66-2_1.37-3_0.98",
+          "62_l_0_c_0_1_3-0_0.85-1_0.29-2_0.31-3_0.27",
+          "63_l_0_c_1_2_3-0_0.47-1_0.97-2_1.26-3_1.31",
+          "64_l_0_c_0_1_2-0_0.46-1_0.33-2_0.26-3_0.79",
+          "65_l_0_c_0_1_3-0_0.05-1_0.98-2_0.39-3_0.67",
+          "66_l_0_c_1_2_3-0_1.36-1_0.49-2_0.24-3_0.73",
+          "67_l_0_c_0_1_2-0_0.45-1_0.59-2_0.05-3_0.12",
+          "68_l_0_c_0_1_3-0_0.34-1_0.77-2_0.08-3_0.6",
+          "69_l_0_c_1_2_3-0_1.25-1_0.13-2_0.66-3_0.67",
+          "70_l_0_c_0_1_2-0_0.87-1_1.32-2_0.03-3_0.57",
+          "71_l_0_c_0_1_3-0_0.29-1_0.19-2_0.02-3_0.83",
+          "72_l_0_c_1_2_3-0_1.65-1_0.76-2_0.76-3_0.04",
+          "73_l_0_c_0_1_2-0_0.37-1_0.63-2_0.83-3_0.66",
+          "74_l_0_c_0_1_3-0_0.19-1_0.05-2_0.12-3_0.06",
+          "75_l_0_c_1_2_3-0_0.71-1_0.28-2_0.06-3_0.68",
+          "76_l_0_c_0_1_2-0_0.21-1_0.0-2_0.53-3_2.45",
+          "77_l_0_c_0_1_3-0_1.44-1_0.5-2_0.0-3_0.43",
+          "78_l_0_c_1_2_3-0_0.17-1_1.56-2_1.18-3_0.62",
+          "79_l_0_c_0_1_2-0_0.0-1_0.5-2_0.03-3_1.05",
+          "80_l_0_c_0_1_3-0_0.03-1_0.62-2_0.13-3_1.33",
+          "81_l_0_c_1_2_3-0_1.59-1_0.65-2_0.23-3_0.77",
+          "82_l_0_c_0_1_2-0_0.38-1_1.27-2_0.54-3_0.72",
+          "83_l_0_c_0_1_3-0_0.43-1_0.15-2_0.01-3_1.47",
+          "84_l_0_c_1_2_3-0_0.5-1_0.92-2_0.58-3_0.3",
+          "85_l_0_c_0_1_2-0_0.25-1_1.29-2_0.33-3_0.06",
+          "86_l_0_c_0_1_3-0_1.32-1_0.01-2_0.39-3_0.06",
+          "87_l_0_c_1_2_3-0_0.14-1_0.51-2_0.05-3_1.1",
+          "88_l_0_c_0_1_2-0_0.04-1_0.08-2_0.73-3_0.3",
+          "89_l_0_c_0_1_3-0_0.29-1_1.32-2_0.07-3_1.04",
+          "90_l_0_c_1_2_3-0_0.23-1_0.23-2_0.16-3_0.38",
+          "91_l_0_c_0_1_2-0_0.56-1_0.25-2_0.28-3_1.86",
+          "92_l_0_c_0_1_3-0_0.05-1_0.06-2_0.34-3_0.47",
+          "93_l_0_c_1_2_3-0_1.81-1_0.7-2_0.54-3_0.24",
+          "94_l_0_c_0_1_2-0_0.4-1_0.7-2_0.46-3_1.08",
+          "95_l_0_c_0_1_3-0_1.16-1_0.56-2_0.0-3_0.11",
+          "96_l_0_c_1_2_3-0_0.71-1_0.83-2_0.32-3_0.84",
+          "97_l_0_c_0_1_2-0_1.07-1_0.25-2_0.4-3_0.88",
+          "98_l_0_c_0_1_3-0_0.53-1_0.17-2_0.08-3_0.71",
+          "99_l_0_c_1_2_3-0_0.54-1_0.77-2_1.08-3_0.58",
+          "100_l_0_c_0_1_2-0_0.03-1_0.6-2_0.81-3_1.08",
+          "101_l_0_c_0_1_3-0_0.95-1_1.28-2_0.11-3_0.76",
+          "102_l_0_c_1_2_3-0_0.96-1_0.25-2_0.45-3_0.72",
+          "103_l_0_c_0_1_2-0_0.34-1_0.12-2_0.91-3_0.52",
+          "104_l_0_c_0_1_3-0_1.02-1_1.91-2_0.14-3_0.91",
+          "105_l_0_c_1_2_3-0_0.66-1_0.3-2_0.26-3_0.61",
+          "106_l_0_c_0_1_2-0_0.06-1_0.24-2_1.09-3_0.37",
+          "107_l_0_c_0_1_3-0_0.01-1_0.44-2_0.11-3_0.88",
+          "108_l_0_c_1_2_3-0_0.24-1_0.16-2_0.07-3_0.82",
+          "109_l_0_c_0_1_2-0_0.08-1_0.3-2_0.18-3_3.13",
+          "110_l_0_c_0_1_3-0_0.02-1_0.48-2_0.14-3_0.79",
+          "111_l_0_c_1_2_3-0_0.4-1_0.41-2_0.01-3_0.32",
+          "112_l_0_c_0_1_2-0_0.83-1_0.06-2_0.37-3_1.63",
+          "113_l_0_c_0_1_3-0_0.12-1_0.33-2_0.01-3_0.39",
+          "114_l_0_c_1_2_3-0_1.37-1_0.44-2_0.25-3_0.13",
+          "115_l_0_c_0_1_2-0_0.23-1_0.75-2_0.16-3_0.55",
+          "116_l_0_c_0_1_3-0_0.91-1_0.42-2_0.15-3_0.79",
+          "117_l_0_c_1_2_3-0_2.14-1_0.87-2_1.22-3_0.34",
+          "118_l_0_c_0_1_2-0_0.07-1_1.32-2_0.35-3_1.08",
+          "119_l_0_c_0_1_3-0_0.46-1_0.33-2_0.2-3_0.28",
+          "120_l_0_c_1_2_3-0_0.97-1_0.19-2_0.71-3_0.65",
+          "121_l_0_c_0_1_2-0_0.51-1_0.73-2_0.62-3_0.62",
+          "122_l_0_c_0_1_3-0_0.04-1_0.36-2_0.36-3_0.39",
+          "123_l_0_c_1_2_3-0_1.52-1_0.36-2_1.13-3_0.12",
+          "124_l_0_c_0_1_2-0_0.88-1_0.49-2_0.41-3_0.06",
+          "125_l_0_c_0_1_3-0_0.4-1_0.88-2_0.22-3_0.63",
+          "126_l_0_c_1_2_3-0_2.36-1_0.67-2_0.25-3_0.6",
+          "127_l_0_c_0_1_2-0_0.02-1_0.76-2_0.62-3_1.25",
+          "128_l_0_c_0_1_3-0_0.43-1_0.28-2_0.37-3_0.23",
+          "129_l_0_c_1_2_3-0_0.26-1_0.72-2_0.3-3_0.65",
+          "130_l_0_c_0_1_2-0_0.62-1_0.12-2_0.88-3_0.08",
+          "131_l_0_c_0_1_3-0_0.88-1_0.09-2_0.06-3_0.14",
+          "132_l_0_c_1_2_3-0_2.15-1_0.28-2_0.77-3_0.65",
+          "133_l_0_c_0_1_2-0_1.4-1_1.55-2_0.72-3_1.84",
+          "134_l_0_c_0_1_3-0_0.15-1_2.36-2_0.14-3_0.01",
+          "135_l_0_c_1_2_3-0_0.34-1_0.43-2_0.83-3_0.3",
+          "136_l_0_c_0_1_2-0_1.45-1_1.47-2_0.74-3_1.76",
+          "137_l_0_c_0_1_3-0_0.45-1_0.27-2_0.17-3_0.41",
+          "138_l_0_c_1_2_3-0_1.76-1_0.12-2_0.96-3_0.52",
+          "139_l_0_c_0_1_2-0_0.8-1_1.11-2_0.42-3_0.71",
+          "140_l_0_c_0_1_3-0_1.32-1_0.48-2_0.2-3_0.41",
+          "141_l_0_c_1_2_3-0_0.48-1_1.4-2_0.8-3_0.91",
+          "142_l_0_c_0_1_2-0_0.96-1_0.63-2_0.07-3_0.91",
+          "143_l_0_c_0_1_3-0_0.83-1_1.26-2_0.3-3_0.77",
+          "144_l_0_c_1_2_3-0_0.96-1_0.6-2_1.68-3_0.75",
+          "145_l_0_c_0_1_2-0_0.31-1_0.07-2_0.28-3_0.91",
+          "146_l_0_c_0_1_3-0_0.57-1_0.95-2_0.1-3_0.79",
+          "147_l_0_c_1_2_3-0_1.57-1_1.87-2_0.62-3_0.4",
+          "148_l_0_c_0_1_2-0_0.54-1_0.37-2_0.2-3_0.36",
+          "149_l_0_c_0_1_3-0_0.82-1_0.31-2_0.13-3_0.3",
+          "150_l_0_c_1_2_3-0_0.76-1_1.0-2_0.17-3_0.09",
+          "151_l_0_c_0_1_2-0_0.76-1_0.63-2_0.18-3_1.09",
+          "152_l_0_c_0_1_3-0_0.12-1_0.21-2_0.03-3_0.46",
+          "153_l_0_c_1_2_3-0_1.67-1_0.51-2_0.15-3_0.14",
+          "154_l_0_c_0_1_2-0_1.85-1_0.59-2_0.94-3_1.0",
+          "155_l_0_c_0_1_3-0_0.72-1_0.19-2_0.07-3_0.42",
+          "156_l_0_c_1_2_3-0_1.53-1_0.67-2_0.32-3_0.21",
+          "157_l_0_c_0_1_2-0_0.91-1_0.22-2_0.01-3_0.94",
+          "158_l_0_c_0_1_3-0_0.99-1_0.07-2_0.03-3_0.44",
+          "159_l_0_c_1_2_3-0_1.87-1_0.45-2_0.13-3_0.84",
+          "160_l_0_c_0_1_2-0_0.55-1_1.68-2_0.5-3_0.43",
+          "161_l_0_c_0_1_3-0_0.23-1_0.89-2_0.22-3_0.25",
+          "162_l_0_c_1_2_3-0_1.95-1_1.36-2_0.13-3_0.41",
+          "163_l_0_c_0_1_2-0_0.39-1_0.91-2_0.58-3_0.04",
+          "164_l_0_c_0_1_3-0_0.43-1_0.7-2_0.47-3_0.35",
+          "165_l_0_c_1_2_3-0_1.88-1_0.62-2_1.4-3_0.5",
+          "166_l_0_c_0_1_2-0_0.84-1_0.23-2_0.5-3_0.61",
+          "167_l_0_c_0_1_3-0_0.27-1_1.24-2_0.02-3_0.2",
+          "168_l_0_c_0_2_3-0_0.51-1_0.24-2_0.22-3_0.84",
+          "169_l_0_c_1_2_3-0_0.96-1_0.14-2_0.06-3_0.32",
+          "170_l_0_c_0_1_2-0_0.33-1_0.19-2_0.67-3_2.43",
+          "171_l_0_c_0_1_3-0_0.02-1_1.91-2_0.02-3_0.89",
+          "172_l_0_c_0_2_3-0_0.09-1_0.06-2_1.76-3_0.25",
+          "173_l_0_c_1_2_3-0_0.46-1_0.17-2_0.63-3_0.69",
+          "174_l_0_c_0_1_2-0_0.86-1_0.33-2_1.69-3_0.15",
+          "175_l_0_c_0_1_3-0_0.86-1_1.95-2_0.58-3_0.3",
+          "176_l_0_c_0_2_3-0_0.67-1_0.61-2_0.09-3_0.5",
+          "177_l_0_c_1_2_3-0_1.36-1_1.63-2_0.5-3_0.5",
+          "178_l_0_c_0_1_2-0_0.88-1_0.68-2_0.48-3_0.37",
+          "179_l_0_c_0_1_3-0_0.17-1_0.53-2_0.2-3_0.85",
+          "180_l_0_c_0_2_3-0_1.02-1_0.15-2_0.51-3_0.09",
+          "181_l_0_c_1_2_3-0_0.44-1_0.08-2_0.67-3_0.09",
+          "182_l_0_c_0_1_2-0_0.35-1_0.12-2_0.43-3_1.1",
+          "183_l_0_c_0_1_3-0_0.02-1_0.01-2_0.14-3_0.5",
+          "184_l_0_c_0_2_3-0_1.02-1_0.39-2_0.25-3_0.71",
+          "185_l_0_c_1_2_3-0_0.61-1_2.62-2_1.83-3_0.12",
+          "186_l_0_c_0_1_2-0_0.19-1_0.78-2_0.11-3_0.31",
+          "187_l_0_c_0_1_3-0_0.36-1_0.29-2_0.04-3_0.05",
+          "188_l_0_c_0_2_3-0_0.59-1_0.17-2_0.17-3_0.34",
+          "189_l_0_c_1_2_3-0_0.72-1_0.12-2_1.03-3_0.17",
+          "190_l_0_c_0_1_2-0_1.44-1_0.38-2_0.15-3_0.07",
+          "191_l_0_c_0_1_3-0_0.06-1_0.49-2_0.04-3_0.68",
+          "192_l_0_c_0_2_3-0_0.62-1_0.13-2_0.58-3_1.0",
+          "193_l_0_c_1_2_3-0_0.2-1_0.08-2_0.43-3_0.38",
+          "194_l_0_c_0_1_2-0_0.18-1_0.63-2_0.38-3_1.89",
+          "195_l_0_c_0_1_3-0_0.09-1_0.35-2_0.0-3_0.62",
+          "196_l_0_c_0_2_3-0_1.4-1_0.35-2_0.3-3_0.2",
+          "197_l_0_c_1_2_3-0_0.74-1_0.47-2_0.8-3_0.9",
+          "198_l_0_c_0_1_2-0_0.22-1_0.56-2_0.48-3_0.35",
+          "199_l_0_c_0_1_3-0_0.73-1_0.35-2_0.02-3_0.78",
+          "200_l_0_c_0_2_3-0_1.41-1_0.19-2_0.63-3_1.05",
+          "201_l_0_c_1_2_3-0_1.94-1_0.01-2_1.37-3_0.65",
+          "202_l_0_c_0_1_2-0_0.97-1_0.5-2_1.42-3_0.01",
+          "203_l_0_c_0_1_3-0_2.33-1_0.97-2_0.03-3_0.16",
+          "204_l_0_c_0_2_3-0_0.12-1_0.0-2_2.7-3_0.77",
+          "205_l_0_c_1_2_3-0_1.48-1_0.09-2_0.31-3_0.04",
+          "206_l_0_c_0_1_2-0_1.15-1_0.42-2_0.23-3_0.03",
+          "207_l_0_c_0_1_3-0_0.58-1_0.03-2_0.42-3_0.91",
+          "208_l_0_c_0_2_3-0_0.28-1_0.1-2_0.57-3_0.67",
+          "209_l_0_c_1_2_3-0_0.9-1_0.31-2_0.71-3_0.99",
+          "210_l_0_c_0_1_2-0_0.5-1_0.4-2_0.07-3_0.66",
+          "211_l_0_c_0_1_3-0_1.07-1_0.42-2_0.12-3_1.5",
+          "212_l_0_c_0_2_3-0_0.67-1_0.0-2_0.73-3_0.15",
+          "213_l_0_c_1_2_3-0_0.12-1_0.61-2_0.29-3_1.08",
+          "214_l_0_c_0_1_2-0_0.5-1_0.87-2_1.62-3_0.17",
+          "215_l_0_c_0_1_3-0_0.04-1_0.21-2_0.34-3_1.09",
+          "216_l_0_c_0_2_3-0_0.07-1_0.09-2_1.18-3_0.13",
+          "217_l_0_c_1_2_3-0_0.4-1_1.25-2_0.61-3_1.28",
+          "218_l_0_c_0_1_2-0_0.54-1_0.84-2_0.73-3_0.02",
+          "219_l_0_c_0_1_3-0_0.65-1_1.4-2_0.42-3_0.96",
+          "220_l_0_c_0_2_3-0_1.47-1_0.02-2_0.06-3_0.47",
+          "221_l_0_c_1_2_3-0_1.14-1_0.21-2_0.41-3_0.34",
+          "222_l_0_c_0_1_2-0_0.02-1_0.2-2_0.76-3_0.11",
+          "223_l_0_c_0_1_3-0_0.73-1_0.45-2_0.04-3_0.54",
+          "224_l_0_c_0_2_3-0_0.04-1_0.21-2_1.64-3_0.35",
+          "225_l_0_c_1_2_3-0_0.24-1_0.28-2_1.16-3_0.01",
+          "226_l_0_c_0_1_2-0_0.09-1_0.19-2_0.75-3_0.98",
+          "227_l_0_c_0_1_3-0_0.5-1_0.47-2_0.15-3_0.21",
+          "228_l_0_c_0_2_3-0_0.98-1_0.13-2_0.45-3_0.22",
+          "229_l_0_c_1_2_3-0_0.5-1_0.03-2_0.19-3_0.71",
+          "230_l_0_c_0_1_2-0_0.39-1_0.04-2_1.28-3_1.12",
+          "231_l_0_c_0_1_3-0_0.54-1_1.35-2_0.18-3_0.37",
+          "232_l_0_c_0_2_3-0_0.62-1_0.53-2_1.59-3_0.61",
+          "233_l_0_c_1_2_3-0_1.43-1_1.5-2_0.97-3_0.15",
+          "234_l_0_c_0_1_2-0_0.2-1_0.03-2_0.34-3_2.92",
+          "235_l_0_c_0_1_3-0_0.2-1_0.88-2_0.01-3_1.05",
+          "236_l_0_c_0_2_3-0_1.07-1_0.44-2_0.1-3_0.54",
+          "237_l_0_c_1_2_3-0_2.12-1_0.02-2_0.35-3_0.28",
+          "238_l_0_c_0_1_2-0_1.17-1_0.81-2_0.51-3_0.79",
+          "239_l_0_c_0_1_3-0_0.41-1_1.64-2_0.05-3_0.61",
+          "240_l_0_c_0_2_3-0_0.13-1_0.21-2_0.33-3_0.27",
+          "241_l_0_c_1_2_3-0_0.34-1_2.19-2_0.24-3_1.46",
+          "242_l_0_c_0_1_2-0_0.12-1_0.33-2_0.06-3_0.3",
+          "243_l_0_c_0_1_3-0_0.75-1_0.86-2_0.47-3_0.26",
+          "244_l_0_c_0_2_3-0_0.56-1_0.2-2_0.13-3_0.65",
+          "245_l_0_c_1_2_3-0_1.99-1_0.32-2_0.2-3_0.2",
+          "246_l_0_c_0_1_2-0_0.11-1_0.36-2_0.08-3_0.34",
+          "247_l_0_c_0_1_3-0_0.09-1_1.41-2_0.27-3_0.24",
+          "248_l_0_c_0_2_3-0_0.17-1_0.45-2_0.48-3_0.06",
+          "249_l_0_c_1_2_3-0_1.14-1_0.8-2_0.86-3_0.91",
+          "250_l_0_c_0_1_2-0_0.29-1_0.65-2_0.57-3_1.26",
+          "251_l_0_c_0_1_3-0_0.14-1_0.09-2_0.0-3_0.22",
+          "252_l_0_c_0_2_3-0_0.99-1_0.05-2_0.62-3_0.63",
+          "253_l_0_c_1_2_3-0_0.62-1_0.59-2_1.56-3_0.29",
+          "254_l_0_c_0_1_2-0_0.32-1_0.96-2_0.2-3_0.33",
+          "255_l_0_c_0_1_3-0_0.85-1_2.17-2_0.15-3_0.82",
+          "256_l_0_c_0_2_3-0_0.93-1_0.08-2_0.33-3_1.44",
+          "257_l_0_c_1_2_3-0_0.8-1_0.21-2_0.69-3_0.07",
+          "258_l_0_c_0_1_2-0_0.41-1_1.63-2_0.11-3_0.71",
+          "259_l_0_c_0_1_3-0_0.08-1_0.58-2_0.06-3_0.03",
+          "260_l_0_c_0_2_3-0_0.7-1_0.33-2_0.21-3_0.14",
+          "261_l_0_c_1_2_3-0_0.42-1_0.04-2_0.07-3_0.52",
+          "262_l_0_c_0_1_2-0_1.92-1_1.55-2_0.71-3_0.32",
+          "263_l_0_c_0_1_3-0_0.1-1_1.02-2_0.03-3_0.27",
+          "264_l_0_c_0_2_3-0_1.06-1_0.0-2_0.03-3_1.53",
+          "265_l_0_c_1_2_3-0_0.29-1_0.16-2_0.71-3_0.28",
+          "266_l_0_c_0_1_2-0_0.68-1_0.79-2_0.03-3_0.28",
+          "267_l_0_c_0_1_3-0_0.8-1_0.07-2_0.02-3_1.27",
+          "268_l_0_c_0_2_3-0_0.19-1_0.02-2_0.02-3_1.22",
+          "269_l_0_c_1_2_3-0_0.74-1_0.27-2_0.15-3_0.1",
+          "270_l_0_c_0_1_2-0_1.19-1_0.32-2_0.27-3_2.91",
+          "271_l_0_c_0_1_3-0_0.57-1_0.95-2_0.0-3_0.42",
+          "272_l_0_c_0_2_3-0_0.8-1_0.05-2_0.01-3_0.07",
+          "273_l_0_c_1_2_3-0_1.12-1_0.67-2_0.25-3_0.71",
+          "274_l_0_c_0_1_2-0_0.41-1_1.62-2_0.2-3_0.33",
+          "275_l_0_c_0_1_3-0_0.03-1_1.64-2_0.11-3_0.36",
+          "276_l_0_c_0_2_3-0_0.08-1_0.03-2_0.88-3_0.72",
+          "277_l_0_c_1_2_3-0_0.26-1_0.53-2_0.86-3_0.24",
+          "278_l_0_c_0_1_2-0_0.33-1_0.27-2_0.03-3_1.37",
+          "279_l_0_c_0_1_3-0_0.54-1_0.33-2_0.04-3_0.02",
+          "280_l_0_c_0_2_3-0_0.02-1_0.16-2_0.1-3_0.26",
+          "281_l_0_c_1_2_3-0_0.25-1_0.61-2_1.11-3_0.87",
+          "282_l_0_c_0_1_2-0_0.93-1_0.81-2_0.65-3_0.53",
+          "283_l_0_c_0_1_3-0_0.01-1_1.45-2_0.22-3_0.37",
+          "284_l_0_c_0_2_3-0_0.4-1_0.24-2_0.76-3_0.36",
+          "285_l_0_c_1_2_3-0_0.23-1_0.3-2_0.24-3_0.17",
+          "286_l_0_c_0_1_2-0_0.08-1_0.51-2_0.26-3_0.01",
+          "287_l_0_c_0_1_3-0_1.0-1_0.45-2_0.24-3_0.01",
+          "288_l_0_c_0_2_3-0_1.7-1_0.06-2_0.42-3_0.1",
+          "289_l_0_c_1_2_3-0_0.04-1_0.29-2_0.44-3_0.89",
+          "290_l_0_c_0_1_2-0_1.22-1_0.8-2_0.19-3_1.34",
+          "291_l_0_c_0_1_3-0_0.37-1_0.18-2_0.0-3_0.21",
+          "292_l_0_c_0_2_3-0_0.19-1_0.07-2_0.69-3_0.52",
+          "293_l_0_c_1_2_3-0_0.08-1_1.06-2_0.66-3_0.18",
+          "294_l_0_c_0_1_2-0_0.42-1_0.59-2_0.54-3_0.64",
+          "295_l_0_c_0_1_3-0_0.02-1_1.21-2_0.24-3_0.14",
+          "296_l_0_c_0_2_3-0_0.7-1_0.16-2_0.01-3_0.05",
+          "297_l_0_c_1_2_3-0_1.26-1_1.38-2_0.54-3_0.11",
+          "298_l_0_c_0_1_2-0_0.5-1_1.73-2_0.77-3_0.27",
+          "299_l_0_c_0_1_3-0_0.35-1_0.17-2_0.12-3_0.26",
+          "300_l_0_c_0_2_3-0_1.88-1_0.01-2_0.15-3_0.36",
+          "301_l_0_c_1_2_3-0_1.19-1_0.75-2_0.32-3_0.24",
+          "302_l_0_c_0_1_2-0_1.03-1_0.57-2_0.27-3_1.16",
+          "303_l_0_c_0_1_3-0_0.95-1_0.15-2_0.23-3_0.39",
+          "304_l_0_c_0_2_3-0_0.49-1_0.1-2_1.35-3_0.5",
+          "305_l_0_c_1_2_3-0_0.17-1_0.79-2_1.12-3_0.76",
+          "306_l_0_c_0_1_2-0_0.39-1_0.49-2_1.38-3_0.59",
+          "307_l_0_c_0_1_3-0_0.37-1_0.11-2_0.37-3_2.06",
+          "308_l_0_c_0_2_3-0_0.7-1_0.03-2_0.27-3_1.07",
+          "309_l_0_c_1_2_3-0_0.37-1_0.28-2_0.45-3_0.31",
+          "310_l_0_c_0_1_2-0_1.05-1_0.85-2_0.1-3_1.13",
+          "311_l_0_c_0_1_3-0_0.52-1_0.52-2_0.07-3_0.6",
+          "312_l_0_c_0_2_3-0_0.45-1_0.57-2_0.81-3_0.1",
+          "313_l_0_c_1_2_3-0_0.2-1_0.29-2_0.6-3_0.1",
+          "314_l_0_c_0_1_2-0_0.56-1_0.12-2_0.17-3_1.17",
+          "315_l_0_c_0_1_3-0_0.87-1_1.42-2_0.56-3_0.54",
+          "316_l_0_c_0_2_3-0_0.42-1_0.18-2_0.06-3_0.21",
+          "317_l_0_c_1_2_3-0_1.41-1_0.45-2_0.43-3_0.52",
+          "318_l_0_c_0_1_2-0_0.34-1_0.39-2_0.55-3_0.14",
+          "319_l_0_c_0_1_3-0_0.08-1_0.15-2_0.04-3_1.11",
+          "320_l_0_c_0_2_3-0_0.48-1_0.0-2_0.73-3_0.07",
+          "321_l_0_c_1_2_3-0_0.83-1_0.35-2_0.24-3_1.44",
+          "322_l_0_c_0_1_2-0_0.55-1_0.22-2_1.33-3_0.45",
+          "323_l_0_c_0_1_3-0_1.75-1_0.01-2_0.1-3_0.54",
+          "324_l_0_c_0_2_3-0_0.17-1_0.05-2_0.19-3_1.14",
+          "325_l_0_c_1_2_3-0_0.51-1_0.77-2_0.74-3_0.12",
+          "326_l_0_c_0_1_2-0_0.42-1_0.67-2_0.01-3_0.33",
+          "327_l_0_c_0_1_3-0_1.23-1_0.65-2_0.09-3_0.25",
+          "328_l_0_c_0_2_3-0_0.16-1_0.05-2_0.73-3_0.51",
+          "329_l_0_c_1_2_3-0_0.01-1_0.47-2_0.24-3_1.68",
+          "330_l_0_c_0_1_2-0_0.14-1_0.48-2_0.21-3_0.24",
+          "331_l_0_c_0_1_3-0_1.01-1_0.01-2_0.47-3_0.38",
+          "332_l_0_c_0_2_3-0_0.59-1_0.13-2_0.94-3_0.17",
+          "333_l_0_c_1_2_3-0_0.75-1_0.05-2_0.95-3_0.17",
+          "334_l_0_c_0_1_2-0_0.66-1_0.71-2_0.15-3_0.8",
+          "335_l_0_c_0_1_3-0_0.64-1_0.97-2_0.22-3_0.04",
+          "336_l_0_c_0_2_3-0_0.43-1_0.03-2_0.55-3_0.38",
+          "337_l_0_c_1_2_3-0_0.89-1_0.45-2_0.37-3_0.96",
+          "338_l_0_c_0_1_2-0_0.71-1_0.6-2_0.43-3_1.02",
+          "339_l_0_c_0_1_3-0_1.01-1_0.03-2_0.07-3_0.25",
+          "340_l_0_c_0_2_3-0_0.36-1_0.2-2_0.6-3_0.12",
+          "341_l_0_c_1_2_3-0_1.41-1_0.21-2_1.73-3_0.31",
+          "342_l_0_c_0_1_2-0_0.83-1_0.47-2_0.45-3_0.57",
+          "343_l_0_c_0_1_3-0_0.21-1_0.05-2_0.02-3_0.41",
+          "344_l_0_c_0_2_3-0_0.03-1_0.13-2_0.87-3_0.0",
+          "345_l_0_c_1_2_3-0_1.3-1_0.05-2_0.05-3_0.03",
+          "346_l_0_c_0_1_2-0_0.18-1_0.63-2_0.8-3_1.07",
+          "347_l_0_c_0_1_3-0_0.42-1_1.61-2_0.15-3_0.28",
+          "348_l_0_c_0_2_3-0_0.37-1_0.2-2_0.67-3_0.46",
+          "349_l_0_c_1_2_3-0_1.21-1_0.57-2_0.75-3_0.94",
+          "350_l_0_c_0_1_2-0_0.42-1_0.43-2_0.08-3_0.78",
+          "351_l_0_c_0_1_3-0_0.09-1_0.26-2_0.57-3_0.6",
+          "352_l_0_c_0_2_3-0_0.41-1_0.18-2_0.02-3_1.65",
+          "353_l_0_c_1_2_3-0_0.83-1_1.08-2_0.41-3_0.78",
+          "354_l_0_c_0_1_2-0_0.53-1_0.11-2_0.03-3_0.95",
+          "355_l_0_c_0_1_3-0_1.04-1_0.06-2_0.07-3_0.74",
+          "356_l_0_c_0_2_3-0_0.82-1_0.25-2_0.51-3_1.48",
+          "357_l_0_c_1_2_3-0_0.28-1_0.97-2_0.33-3_0.22",
+          "358_l_0_c_0_1_2-0_0.96-1_0.21-2_0.55-3_0.51",
+          "359_l_0_c_0_1_3-0_0.29-1_0.85-2_0.0-3_0.01",
+          "360_l_0_c_0_2_3-0_0.37-1_0.0-2_0.27-3_0.11",
+          "361_l_0_c_1_2_3-0_1.1-1_1.42-2_1.57-3_0.75",
+          "362_l_0_c_0_1_2-0_0.1-1_0.1-2_0.19-3_0.72",
+          "363_l_0_c_0_1_3-0_0.54-1_0.21-2_0.27-3_0.47",
+          "364_l_0_c_0_2_3-0_0.0-1_0.18-2_0.99-3_0.57",
+          "365_l_0_c_1_2_3-0_1.2-1_0.0-2_0.46-3_0.22",
+          "366_l_0_c_0_1_2-0_0.04-1_0.79-2_0.58-3_2.26",
+          "367_l_0_c_0_1_3-0_0.69-1_0.46-2_0.21-3_0.63",
+          "368_l_0_c_0_2_3-0_0.84-1_0.25-2_0.01-3_1.58",
+          "369_l_0_c_1_2_3-0_0.79-1_1.57-2_1.02-3_0.12",
+          "370_l_0_c_0_1_2-0_1.37-1_0.08-2_0.38-3_0.02",
+          "371_l_0_c_0_1_3-0_0.66-1_0.1-2_0.07-3_0.3",
+          "372_l_0_c_0_2_3-0_0.04-1_0.01-2_0.83-3_0.49",
+          "373_l_0_c_1_2_3-0_0.04-1_0.32-2_0.52-3_0.0",
+          "374_l_0_c_0_1_2-0_0.17-1_1.52-2_1.11-3_0.93",
+          "375_l_0_c_0_1_3-0_0.62-1_0.14-2_0.28-3_1.31",
+          "376_l_0_c_0_2_3-0_0.05-1_0.34-2_0.67-3_1.07",
+          "377_l_0_c_1_2_3-0_0.3-1_1.49-2_0.12-3_0.36",
+          "378_l_0_c_0_1_2-0_0.96-1_0.08-2_1.15-3_0.16",
+          "379_l_0_c_0_1_3-0_0.03-1_0.4-2_0.16-3_0.77",
+          "380_l_0_c_0_2_3-0_0.88-1_0.03-2_0.54-3_0.18",
+          "381_l_0_c_1_2_3-0_0.77-1_0.88-2_0.54-3_0.06",
+          "382_l_0_c_0_1_2-0_0.27-1_0.49-2_0.58-3_0.33",
+          "383_l_0_c_0_1_3-0_0.6-1_1.38-2_0.1-3_0.92",
+          "384_l_0_c_0_2_3-0_0.01-1_0.12-2_0.47-3_0.42",
+          "385_l_0_c_1_2_3-0_1.66-1_0.87-2_0.92-3_0.85",
+          "386_l_0_c_0_1_2-0_0.25-1_0.02-2_0.35-3_1.3",
+          "387_l_0_c_0_1_3-0_0.37-1_0.38-2_0.03-3_0.59",
+          "388_l_0_c_0_2_3-0_0.31-1_0.01-2_0.2-3_0.06",
+          "389_l_0_c_1_2_3-0_0.17-1_0.93-2_0.35-3_0.41",
+          "390_l_0_c_0_1_2-0_1.91-1_0.61-2_0.7-3_0.0",
+          "391_l_0_c_0_1_3-0_0.24-1_0.06-2_0.09-3_0.05",
+          "392_l_0_c_0_2_3-0_0.16-1_0.03-2_0.09-3_0.36",
+          "393_l_0_c_1_2_3-0_1.09-1_0.77-2_1.63-3_1.27",
+          "394_l_0_c_0_1_2-0_0.14-1_0.11-2_0.28-3_0.78",
+          "395_l_0_c_0_1_3-0_0.94-1_0.86-2_0.01-3_0.19",
+          "396_l_0_c_0_2_3-0_0.27-1_0.08-2_0.67-3_0.05",
+          "397_l_0_c_1_2_3-0_1.17-1_0.45-2_0.83-3_1.08",
+          "398_l_0_c_0_1_2-0_0.41-1_0.24-2_0.81-3_1.91",
+          "399_l_0_c_3-0_0.41-1_0.26-2_0.35-3_0.71",
+          "400_l_0_r-0_0.43-1_0.04-2_0.59-3_0.83",
+          "401_l_0_r-0_1.43-1_0.01-2_0.46-3_0.06",
+          "402_l_0_r-0_0.78-1_0.36-2_0.11-3_0.63",
+          "403_l_0_r-0_0.89-1_0.11-2_0.0-3_0.61",
+          "404_l_0_r-0_1.52-1_0.16-2_0.04-3_1.25",
+          "405_l_0_r-0_0.0-1_0.05-2_0.23-3_0.48",
+          "406_l_0_r-0_1.03-1_0.04-2_0.01-3_1.2",
+          "407_l_0_r-0_0.63-1_0.27-2_0.04-3_0.47",
+          "408_l_0_r-0_0.12-1_0.23-2_0.0-3_1.16",
+          "409_l_0_r-0_1.4-1_0.15-2_0.32-3_0.87",
+          "410_l_0_r-0_0.25-1_0.21-2_0.12-3_1.27",
+          "411_l_0_r-0_0.1-1_0.07-2_0.28-3_1.17",
+          "412_l_0_r-0_0.01-1_0.1-2_0.06-3_2.13",
+          "413_l_0_r-0_0.58-1_0.15-2_0.1-3_0.14",
+          "414_l_0_r-0_1.17-1_0.07-2_0.32-3_0.67",
+          "415_l_0_r-0_0.33-1_0.14-2_0.16-3_0.79",
+          "416_l_0_r-0_0.15-1_0.03-2_0.02-3_0.65",
+          "417_l_0_r-0_0.26-1_0.02-2_0.27-3_0.76",
+          "418_l_0_r-0_0.76-1_0.12-2_0.01-3_2.09",
+          "419_l_0_r-0_0.62-1_0.17-2_0.04-3_0.15",
+          "420_l_0_r-0_1.9-1_0.36-2_0.24-3_1.36",
+          "421_l_0_r-0_0.54-1_0.04-2_0.07-3_0.0",
+          "422_l_0_r-0_1.29-1_0.71-2_0.43-3_0.64",
+          "423_l_0_r-0_0.16-1_0.19-2_0.07-3_1.77",
+          "424_l_0_r-0_0.97-1_0.17-2_0.11-3_0.38",
+          "425_l_0_r-0_0.19-1_0.2-2_0.01-3_1.43",
+          "426_l_0_r-0_0.15-1_0.18-2_0.19-3_2.21",
+          "427_l_0_r-0_0.79-1_0.07-2_0.15-3_2.13",
+          "428_l_0_r-0_0.91-1_0.59-2_0.15-3_1.07",
+          "429_l_0_r-0_1.36-1_0.0-2_0.22-3_0.42",
+          "430_l_0_r-0_0.25-1_0.01-2_0.05-3_0.51",
+          "431_l_0_r-0_1.29-1_0.02-2_0.0-3_0.26",
+          "432_l_0_r-0_1.09-1_0.0-2_0.05-3_0.01",
+          "433_l_0_r-0_0.0-1_0.23-2_0.01-3_0.02",
+          "434_l_0_r-0_1.61-1_0.01-2_0.21-3_1.94",
+          "435_l_0_r-0_0.5-1_0.16-2_0.01-3_1.22",
+          "436_l_0_r-0_0.19-1_0.04-2_0.04-3_1.15",
+          "437_l_0_r-0_1.12-1_0.22-2_0.05-3_0.29",
+          "438_l_0_r-0_0.7-1_0.01-2_0.1-3_0.21",
+          "439_l_0_r-0_1.87-1_0.0-2_0.29-3_0.19",
+          "440_l_0_r-0_0.88-1_0.25-2_0.04-3_1.33",
+          "441_l_0_r-0_0.27-1_0.17-2_0.39-3_1.46",
+          "442_l_0_r-0_1.66-1_0.02-2_0.3-3_0.96",
+          "443_l_0_r-0_0.28-1_0.01-2_0.01-3_1.64",
+          "444_l_0_r-0_2.76-1_0.06-2_0.04-3_0.52",
+          "445_l_0_r-0_0.13-1_0.1-2_0.0-3_0.35",
+          "446_l_0_r-0_0.31-1_0.28-2_0.35-3_0.77",
+          "447_l_0_r-0_0.48-1_0.02-2_0.25-3_0.45",
+          "448_l_0_r-0_0.77-1_0.06-2_0.02-3_0.49",
+          "449_l_0_r-0_2.3-1_0.37-2_0.14-3_0.82",
+          "450_l_0_r-0_0.28-1_0.26-2_0.11-3_1.25",
+          "451_l_0_r-0_0.07-1_0.02-2_0.11-3_1.75",
+          "452_l_0_r-0_0.74-1_0.04-2_0.29-3_0.75",
+          "453_l_0_r-0_2.61-1_0.19-2_0.09-3_1.02",
+          "454_l_0_r-0_0.73-1_0.03-2_0.17-3_0.55",
+          "455_l_0_r-0_2.01-1_0.18-2_0.27-3_0.13",
+          "456_l_0_r-0_1.77-1_0.02-2_0.18-3_0.93",
+          "457_l_0_r-0_0.83-1_0.11-2_0.48-3_0.8",
+          "458_l_0_r-0_0.52-1_0.05-2_0.36-3_0.56",
+          "459_l_0_r-0_0.53-1_0.41-2_0.06-3_0.49",
+          "460_l_0_r-0_0.83-1_0.43-2_0.26-3_1.05",
+          "461_l_0_r-0_0.06-1_0.12-2_0.03-3_1.44",
+          "462_l_0_r-0_0.34-1_0.0-2_0.34-3_2.22",
+          "463_l_0_r-0_1.34-1_0.03-2_0.02-3_0.31",
+          "464_l_0_r-0_1.77-1_0.34-2_0.26-3_0.85",
+          "465_l_0_r-0_0.66-1_0.07-2_0.12-3_0.77",
+          "466_l_0_r-0_0.49-1_0.01-2_0.12-3_0.24",
+          "467_l_0_r-0_0.8-1_0.18-2_0.02-3_0.09",
+          "468_l_0_r-0_0.27-1_0.14-2_0.13-3_0.22",
+          "469_l_0_r-0_0.29-1_0.0-2_0.14-3_1.01",
+          "470_l_0_r-0_0.07-1_0.45-2_0.15-3_0.3",
+          "471_l_0_r-0_0.06-1_0.2-2_0.24-3_1.57",
+          "472_l_0_r-0_0.42-1_0.02-2_0.01-3_1.08",
+          "473_l_0_r-0_0.47-1_0.62-2_0.43-3_1.78",
+          "474_l_0_r-0_0.71-1_0.11-2_0.06-3_1.44",
+          "475_l_0_r-0_0.33-1_0.08-2_0.15-3_1.09",
+          "476_l_0_r-0_1.4-1_0.04-2_0.04-3_0.96",
+          "477_l_0_r-0_0.1-1_0.0-2_0.32-3_1.71",
+          "478_l_0_r-0_2.1-1_0.01-2_0.08-3_0.99",
+          "479_l_0_r-0_0.43-1_0.24-2_0.09-3_0.14",
+          "480_l_0_r-0_0.12-1_0.01-2_0.1-3_0.7",
+          "481_l_0_r-0_0.44-1_0.16-2_0.24-3_1.13",
+          "482_l_0_r-0_0.49-1_0.23-2_0.03-3_1.56",
+          "483_l_0_r-0_0.7-1_0.27-2_0.2-3_0.23",
+          "484_l_0_r-0_1.57-1_0.02-2_0.5-3_0.65",
+          "485_l_0_r-0_1.49-1_0.09-2_0.42-3_0.39",
+          "486_l_0_r-0_0.66-1_0.34-2_0.17-3_0.64",
+          "487_l_0_r-0_1.15-1_0.03-2_0.01-3_0.2",
+          "488_l_0_r-0_0.57-1_0.16-2_0.6-3_1.51",
+          "489_l_0_r-0_0.08-1_0.37-2_0.25-3_0.1",
+          "490_l_0_r-0_0.3-1_0.6-2_0.33-3_0.15",
+          "491_l_0_r-0_0.58-1_0.22-2_0.14-3_0.79",
+          "492_l_0_r-0_2.17-1_0.19-2_0.02-3_0.35",
+          "493_l_0_r-0_1.18-1_0.1-2_0.04-3_0.46",
+          "494_l_0_r-0_0.77-1_0.12-2_0.33-3_0.8",
+          "495_l_0_r-0_2.36-1_0.06-2_0.18-3_0.96",
+          "496_l_0_r-0_0.43-1_0.21-2_0.05-3_0.13",
+          "497_l_0_r-0_0.8-1_0.0-2_0.12-3_0.56",
+          "498_l_0_r-0_0.44-1_0.05-2_0.04-3_2.41",
+          "499_l_0_r-0_1.18-1_0.05-2_0.02-3_0.42",
+          "500_l_0_r-0_0.77-1_0.12-2_0.01-3_0.85",
+          "501_l_0_r-0_0.91-1_0.01-2_0.28-3_1.76",
+          "502_l_0_r-0_0.48-1_0.01-2_0.2-3_1.78",
+          "503_l_0_r-0_0.9-1_0.21-2_0.01-3_0.87",
+          "504_l_0_r-0_1.54-1_0.54-2_0.01-3_1.02",
+          "505_l_0_r-0_2.02-1_0.15-2_0.47-3_0.59",
+          "506_l_0_r-0_1.1-1_0.08-2_0.04-3_0.5",
+          "507_l_0_r-0_0.34-1_0.01-2_0.05-3_1.4",
+          "508_l_0_r-0_0.15-1_0.04-2_0.28-3_2.15",
+          "509_l_0_r-0_1.53-1_0.14-2_0.14-3_0.48",
+          "510_l_0_r-0_0.58-1_0.05-2_0.16-3_0.68",
+          "511_l_0_r-0_1.27-1_0.03-2_0.13-3_0.6",
+          "512_l_0_r-0_0.1-1_0.17-2_0.25-3_0.27",
+          "513_l_0_r-0_0.48-1_0.09-2_0.02-3_1.2",
+          "514_l_0_r-0_0.26-1_0.28-2_0.0-3_0.38",
+          "515_l_0_r-0_0.29-1_0.14-2_0.03-3_0.27",
+          "516_l_0_r-0_0.21-1_0.33-2_0.55-3_0.47",
+          "517_l_0_r-0_0.2-1_0.09-2_0.0-3_1.09",
+          "518_l_0_r-0_0.16-1_0.06-2_0.42-3_0.79",
+          "519_l_0_r-0_0.03-1_0.13-2_0.26-3_0.91",
+          "520_l_0_r-0_1.42-1_0.2-2_0.04-3_0.21",
+          "521_l_0_r-0_0.8-1_0.06-2_0.05-3_0.92",
+          "522_l_0_r-0_1.38-1_0.19-2_0.48-3_0.1",
+          "523_l_0_r-0_1.14-1_0.09-2_0.27-3_1.25",
+          "524_l_0_r-0_0.13-1_0.12-2_0.48-3_0.59",
+          "525_l_0_r-0_1.32-1_0.17-2_0.07-3_0.59",
+          "526_l_0_r-0_0.46-1_0.07-2_0.48-3_0.88",
+          "527_l_0_r-0_0.61-1_0.11-2_0.05-3_0.63",
+          "528_l_0_r-0_1.15-1_0.07-2_0.15-3_0.51",
+          "529_l_0_r-0_1.32-1_0.0-2_0.08-3_1.46",
+          "530_l_0_r-0_0.64-1_0.07-2_0.0-3_1.32",
+          "531_l_0_r-0_0.48-1_0.22-2_0.01-3_0.58",
+          "532_l_0_r-0_0.31-1_0.09-2_0.5-3_1.35",
+          "533_l_0_r-0_0.15-1_0.13-2_0.18-3_0.37",
+          "534_l_0_r-0_0.74-1_0.03-2_0.04-3_0.98",
+          "535_l_0_r-0_0.39-1_0.09-2_0.03-3_0.48",
+          "536_l_0_r-0_2.05-1_0.05-2_0.4-3_0.95",
+          "537_l_0_r-0_0.41-1_0.12-2_0.01-3_0.03",
+          "538_l_0_r-0_2.52-1_0.27-2_0.35-3_0.55",
+          "539_l_0_r-0_1.02-1_0.29-2_0.02-3_0.01",
+          "540_l_0_r-0_0.03-1_0.13-2_0.03-3_0.62",
+          "541_l_0_r-0_0.86-1_0.25-2_0.26-3_0.77",
+          "542_l_0_r-0_0.65-1_0.09-2_0.19-3_1.21",
+          "543_l_0_r-0_0.51-1_0.02-2_0.01-3_1.02",
+          "544_l_0_r-0_0.56-1_0.0-2_0.19-3_0.88",
+          "545_l_0_r-0_0.04-1_0.37-2_0.14-3_2.44",
+          "546_l_0_r-0_1.36-1_0.34-2_0.0-3_0.24",
+          "547_l_0_r-0_0.02-1_0.05-2_0.05-3_0.63",
+          "548_l_0_r-0_1.78-1_0.49-2_0.04-3_0.86",
+          "549_l_0_r-0_0.05-1_0.15-2_0.2-3_0.35",
+          "550_l_0_r-0_0.1-1_0.06-2_0.35-3_0.56",
+          "551_l_0_r-0_0.68-1_0.05-2_0.21-3_0.69",
+          "552_l_0_r-0_2.65-1_0.01-2_0.24-3_0.52",
+          "553_l_0_r-0_1.46-1_0.17-2_0.33-3_0.28",
+          "554_l_0_r-0_0.58-1_0.04-2_0.06-3_0.91",
+          "555_l_0_r-0_0.06-1_0.74-2_0.23-3_0.89",
+          "556_l_0_r-0_2.18-1_0.02-2_0.02-3_0.37",
+          "557_l_0_r-0_0.84-1_0.01-2_0.06-3_0.24",
+          "558_l_0_r-0_1.43-1_0.0-2_0.26-3_1.7",
+          "559_l_0_r-0_0.96-1_0.04-2_0.07-3_0.99",
+          "560_l_0_r-0_0.84-1_0.12-2_0.32-3_1.56",
+          "561_l_0_r-0_0.33-1_0.12-2_0.22-3_0.21",
+          "562_l_0_r-0_0.27-1_0.0-2_0.03-3_0.17",
+          "563_l_0_r-0_1.2-1_0.5-2_0.08-3_0.58",
+          "564_l_0_r-0_0.6-1_0.12-2_0.16-3_0.16",
+          "565_l_0_r-0_1.14-1_0.12-2_0.45-3_0.01",
+          "566_l_0_r-0_1.76-1_0.03-2_0.05-3_0.48",
+          "567_l_0_r-0_1.62-1_0.51-2_0.03-3_0.24",
+          "568_l_0_r-0_1.83-1_0.12-2_0.1-3_0.69",
+          "569_l_0_r-0_1.72-1_0.28-2_0.5-3_0.24",
+          "570_l_0_r-0_1.25-1_0.41-2_0.23-3_0.21",
+          "571_l_0_r-0_1.12-1_0.07-2_0.33-3_1.09",
+          "572_l_0_r-0_1.09-1_0.08-2_0.0-3_0.11",
+          "573_l_0_r-0_1.5-1_0.03-2_0.0-3_0.02",
+          "574_l_0_r-0_1.36-1_0.05-2_0.11-3_0.34",
+          "575_l_0_r-0_0.27-1_0.52-2_0.03-3_1.53",
+          "576_l_0_r-0_1.36-1_0.26-2_0.0-3_0.26",
+          "577_l_0_r-0_1.25-1_0.2-2_0.33-3_0.13",
+          "578_l_0_r-0_0.6-1_0.03-2_0.39-3_0.42",
+          "579_l_0_r-0_0.7-1_0.2-2_0.1-3_0.7",
+          "580_l_0_r-0_1.57-1_0.01-2_0.26-3_0.36",
+          "581_l_0_r-0_1.6-1_0.03-2_0.12-3_0.18",
+          "582_l_0_r-0_0.14-1_0.07-2_0.15-3_0.22",
+          "583_l_0_r-0_0.59-1_0.25-2_0.26-3_0.32",
+          "584_l_0_r-0_2.37-1_0.12-2_0.44-3_0.13",
+          "585_l_0_r-0_1.26-1_0.06-2_0.09-3_0.95",
+          "586_l_0_r-0_0.74-1_0.05-2_0.06-3_0.77",
+          "587_l_0_r-0_0.92-1_0.09-2_0.15-3_0.06",
+          "588_l_0_r-0_0.92-1_0.12-2_0.11-3_1.05",
+          "589_l_0_r-0_0.45-1_0.24-2_0.13-3_0.9",
+          "590_l_0_r-0_0.81-1_0.06-2_0.05-3_1.02",
+          "591_l_0_r-0_0.58-1_0.05-2_0.04-3_1.23",
+          "592_l_0_r-0_0.18-1_0.02-2_0.21-3_0.71",
+          "593_l_0_r-0_0.58-1_0.11-2_0.16-3_0.1",
+          "594_l_0_r-0_1.07-1_0.11-2_0.24-3_1.11",
+          "595_l_0_r-0_0.21-1_0.11-2_0.02-3_0.86",
+          "596_l_0_r-0_0.18-1_0.14-2_0.03-3_0.25",
+          "597_l_0_r-0_0.96-1_0.3-2_0.07-3_0.54",
+          "598_l_0_r-0_0.36-1_0.15-2_0.05-3_0.21",
+          "599_l_0_r-0_0.1-1_0.08-2_0.19-3_4.1",
+          "600_l_0_r-0_0.16-1_0.14-2_0.06-3_0.54",
+          "601_l_0_r-0_0.26-1_0.15-2_0.03-3_2.41",
+          "602_l_0_r-0_0.26-1_0.01-2_0.14-3_0.37",
+          "603_l_0_r-0_0.02-1_0.07-2_0.22-3_0.63",
+          "604_l_0_r-0_0.74-1_0.1-2_0.02-3_2.15",
+          "605_l_0_r-0_0.95-1_0.05-2_0.2-3_0.61",
+          "606_l_0_r-0_0.6-1_0.03-2_0.06-3_0.71",
+          "607_l_0_r-0_0.52-1_0.1-2_0.47-3_1.23",
+          "608_l_0_r-0_0.31-1_0.0-2_0.2-3_0.55",
+          "609_l_0_r-0_1.17-1_0.03-2_0.13-3_0.83",
+          "610_l_0_r-0_0.04-1_0.0-2_0.01-3_1.4",
+          "611_l_0_r-0_0.32-1_0.12-2_0.07-3_0.68",
+          "612_l_0_r-0_0.58-1_0.12-2_0.02-3_2.95",
+          "613_l_0_r-0_0.74-1_0.04-2_0.14-3_1.0",
+          "614_l_0_r-0_1.31-1_0.11-2_0.15-3_0.18",
+          "615_l_0_r-0_0.52-1_0.01-2_0.03-3_0.48",
+          "616_l_0_r-0_1.5-1_0.02-2_0.36-3_1.16",
+          "617_l_0_r-0_0.53-1_0.26-2_0.07-3_0.66",
+          "618_l_0_r-0_1.99-1_0.28-2_0.2-3_1.68",
+          "619_l_0_r-0_1.75-1_0.44-2_0.05-3_1.6",
+          "620_l_0_r-0_0.03-1_0.01-2_0.07-3_0.35",
+          "621_l_0_r-0_0.45-1_0.01-2_0.52-3_0.77",
+          "622_l_0_r-0_1.4-1_0.0-2_0.24-3_0.86",
+          "623_l_0_r-0_0.45-1_0.1-2_0.22-3_0.54",
+          "624_l_0_r-0_1.03-1_0.39-2_0.34-3_0.26",
+          "625_l_0_r-0_1.2-1_0.58-2_0.17-3_1.09",
+          "626_l_0_r-0_0.37-1_0.06-2_0.2-3_0.49",
+          "627_l_0_r-0_1.48-1_0.01-2_0.22-3_1.12",
+          "628_l_0_r-0_0.14-1_0.01-2_0.37-3_1.29",
+          "629_l_0_r-0_0.38-1_0.16-2_0.0-3_1.28",
+          "630_l_0_r-0_0.21-1_0.04-2_0.25-3_0.88",
+          "631_l_0_r-0_0.96-1_0.23-2_0.01-3_0.55",
+          "632_l_0_r-0_1.47-1_0.01-2_0.03-3_2.04",
+          "633_l_0_r-0_0.04-1_0.02-2_0.1-3_2.03",
+          "634_l_0_r-0_1.05-1_0.04-2_0.03-3_1.21",
+          "635_l_0_r-0_0.81-1_0.04-2_0.18-3_0.73",
+          "636_l_0_r-0_0.32-1_0.03-2_0.15-3_0.81",
+          "637_l_0_r-0_0.8-1_0.28-2_0.02-3_0.13",
+          "638_l_0_r-0_0.56-1_0.04-2_0.01-3_0.26",
+          "639_l_0_r-0_1.35-1_0.04-2_0.15-3_0.98",
+          "640_l_0_r-0_0.23-1_0.3-2_0.0-3_0.28",
+          "641_l_0_r-0_0.01-1_0.04-2_0.05-3_0.83",
+          "642_l_0_r-0_0.28-1_0.11-2_0.26-3_0.86",
+          "643_l_0_r-0_2.01-1_0.14-2_0.2-3_1.49",
+          "644_l_0_r-0_0.87-1_0.07-2_0.09-3_0.37",
+          "645_l_0_r-0_0.1-1_0.21-2_0.14-3_0.15",
+          "646_l_0_r-0_0.9-1_0.46-2_0.25-3_0.54",
+          "647_l_0_r-0_0.93-1_0.19-2_0.26-3_0.11",
+          "648_l_0_r-0_0.73-1_0.02-2_0.12-3_0.8",
+          "649_l_0_r-0_0.09-1_0.09-2_0.07-3_0.1",
+          "650_l_0_r-0_0.5-1_0.05-2_0.23-3_1.96",
+          "651_l_0_r-0_0.23-1_0.15-2_0.27-3_1.08",
+          "652_l_0_r-0_0.64-1_0.11-2_0.25-3_0.98",
+          "653_l_0_r-0_0.44-1_0.12-2_0.14-3_1.23",
+          "654_l_0_r-0_0.63-1_0.03-2_0.01-3_1.1",
+          "655_l_0_r-0_0.63-1_0.1-2_0.1-3_0.28",
+          "656_l_0_r-0_0.24-1_0.4-2_0.02-3_0.22",
+          "657_l_0_r-0_0.25-1_0.01-2_0.03-3_0.18",
+          "658_l_0_r-0_1.18-1_0.15-2_0.04-3_0.79",
+          "659_l_0_r-0_1.22-1_0.19-2_0.07-3_0.03",
+          "660_l_0_r-0_0.59-1_0.14-2_0.02-3_0.47",
+          "661_l_0_r-0_1.74-1_0.23-2_0.26-3_0.56",
+          "662_l_0_r-0_1.92-1_0.08-2_0.04-3_0.17",
+          "663_l_0_r-0_0.84-1_0.14-2_0.01-3_0.41",
+          "664_l_0_r-0_2.42-1_0.02-2_0.24-3_1.16",
+          "665_l_0_r-0_0.4-1_0.44-2_0.05-3_0.86"
          ],
          "type": "scatter3d",
          "x": [
-          1.5012019041430207,
-          -0.10037352214882503,
-          5.454388602184933,
-          4.975700360219813,
-          1.3549934355037134,
-          -1.417125273749484,
-          -2.5402081313922475,
-          0.16315763791393625,
-          -2.020838703702368,
-          -3.988664476379258,
-          4.426568852523592,
-          0.5418540257490804,
-          3.146259871866359,
-          1.6100327790512672,
-          2.8682978378964155,
-          -0.9615667863569883,
-          -1.4233246380076423,
-          -3.743984275818563,
-          -1.2796971354334192,
-          3.86674665933427,
-          0.41807855717892434,
-          4.9615299032592945,
-          -3.3215953695301574,
-          2.0628127814148316,
-          4.085485259575119,
-          0.9316967358181243,
-          0.6383812486847811,
-          -0.528391346511631,
-          -3.1722844255409752,
-          -5.358095409661853,
-          6.452158059637249,
-          -1.979458928979422,
-          -7.602936738289171,
-          -0.9739381313062097,
-          1.4341080823757473,
-          -5.557182895759145,
-          0.6879571927412947,
-          -1.1560528972291384,
-          -5.875349601074617,
-          0.46776409314382983,
-          4.859796441002167,
-          2.149896171088449,
-          0.8619022617945158,
-          1.6150689920079924,
-          -0.6896194418323063,
-          0.9670787425653383,
-          -6.0861173235366905,
-          -0.995753670040104,
-          0.12276703270919732,
-          -1.7361674675041558,
-          0.08891635989499065,
-          3.30734191382326,
-          6.134537948984621,
-          0.6114484045891662,
-          1.2210525882372059,
-          6.197525573090191,
-          0.1465571226221509,
-          -1.4036252248160404,
-          -2.3989479364357904,
-          -1.8608204634869703,
-          1.6032968758523882,
-          8.129151192511173,
-          1.186161802803249,
-          -0.7510286327755115,
-          3.5109885866440402,
-          4.731405909622088,
-          3.366546335570947,
-          -0.36350174590552675,
-          -1.6531231438875036,
-          0.48829257547995264,
-          4.604441041842022,
-          -0.6119693946369168,
-          -1.2245736527407363,
-          1.6143888936735498,
-          -1.3498418512069867,
-          1.6198092318626658,
-          -0.10064410800977976,
-          -0.2371534684364644,
-          0.19682658727543967,
-          -3.075223692898313,
-          3.1837884777592538,
-          0.5609278718019022,
-          -1.104056521433514,
-          0.251429572325042,
-          2.403261605956151,
-          -1.345344536076483,
-          2.678410695649105,
-          0.41658437654263447,
-          -1.8279098753796605,
-          1.8314470431332077,
-          3.1750724072930185,
-          -3.2421626298596755,
-          -2.7423046138969793,
-          -1.2942019327078493,
-          2.3071673969995747,
-          0.3146230709672386,
-          -3.203283876926409,
-          -1.87720724586141,
-          0.14919140195677733,
-          1.8278381857745505,
-          -0.21655909045213692,
-          -1.57225933589623,
-          -2.976064204602451,
-          -3.1284877175350703,
-          1.6812741320018227,
-          0.20615478835593226,
-          -5.593357032349894,
-          -0.1337150071681476,
-          -2.236171119077523,
-          1.1151559175911518,
-          -1.674655670550938,
-          2.6948162103801585,
-          -2.731670995172217,
-          -0.9463704675744742,
-          0.3255833498920409,
-          -1.412712596253529,
-          0.2701268439252812,
-          -3.1794056658599987,
-          1.2737590066893048,
-          -0.019245449512074103,
-          -0.5980985600421082,
-          1.7007463019260323,
-          0.2389942480339747,
-          4.716262997354531,
-          3.0148460274823567,
-          0.8777261599432489,
-          -3.786881450667805,
-          4.7602851640007575,
-          3.1883908362149733,
-          -2.3286201070894728,
-          -1.090665239916426,
-          -1.8687253783913,
-          2.3944663273228874,
-          -0.8953308568788713,
-          3.057090559998559,
-          2.522330572645851,
-          -3.1501187300193725,
-          -0.21694654679652095,
-          -3.3933562772061117,
-          -1.4288658097372917,
-          0.009128765646815485,
-          0.7405777472801327,
-          -6.124875377520159,
-          1.0263684864028653,
-          3.408657334531591,
-          -5.94684721057874,
-          -4.2074086203356424,
-          -0.6945083080890713,
-          1.9977459512303444,
-          -1.26791914697041,
-          -1.1985755735314452,
-          0.7782896969269758,
-          -1.2936615170833785,
-          -1.1153886637027335,
-          -0.4952943386442826,
-          -1.2359719109011034,
-          -1.5092668164690126,
-          -3.323554379318315,
-          1.2414945931225623,
-          -3.137218908785896,
-          -2.2492365149008227,
-          5.21334933294996,
-          -2.2953293702303106,
-          3.2047832410546024,
-          -0.6061933051330083,
-          3.2677904547048273,
-          -2.810782001931092,
-          -2.269573963461166,
-          0.2385497710161981,
-          -1.662004755910927,
-          1.3182137078875882,
-          -1.0722134642460273,
-          -4.756612172135073,
-          -0.04531665406977642,
-          0.9830339468409709,
-          0.518993900268616,
-          0.5173084630326007,
-          -1.778080308534593,
-          1.7243968024989664,
-          0.814015624680533,
-          2.088165652184861,
-          -0.010332904965636675,
-          0.6758948058365524,
-          3.5731226065710384,
-          2.650454552128412,
-          0.8176794193385959,
-          2.3350735995739127,
-          -0.8192953061960878,
-          -0.28475991772272097,
-          1.6282863127172296,
-          -4.882326586368799,
-          3.372642713139219,
-          1.0646411100720166,
-          -0.32292167873916416,
-          -0.024408987110858486,
-          0.24167389685188626,
-          0.6634566784922532,
-          -6.988562093622483,
-          0.4590721541992105,
-          1.7425810253212264,
-          0.7420058629475119,
-          1.3720642984565263,
-          5.21068797587436,
-          0.9425303074274959,
-          -0.6908061052076364,
-          -1.8071305261611905,
-          0.2968001099536064,
-          -4.0515312410300925,
-          -0.14003949315881978,
-          -1.0846053944287284,
-          2.029229361494452,
-          0.797473960667227,
-          1.0108633340427178,
-          -0.7331398387193994,
-          -1.4559505903458059,
-          0.32642126061789384,
-          0.4204266766243986,
-          0.4961538888110972,
-          -7.8015381948938325,
-          2.8530904397830703,
-          -3.561569262373442,
-          1.9965675729549697,
-          2.1561539073499794,
-          0.7337395581305585,
-          -0.615340272320549,
-          7.3283198428636735,
-          -0.22273406511623312,
-          0.1975661673303847,
-          3.0232372925820608,
-          -2.8002570058887573,
-          -4.636220039226025,
-          -0.9780878565421627,
-          1.3422445256913582,
-          -2.252614401937231,
-          0.24911583612363083,
-          -0.09534923905520855,
-          -0.09235115201337224,
-          0.3291167300672257,
-          -3.0620641503748707,
-          -0.9646915343666721,
-          2.8210813251331035,
-          -0.1573516720496786,
-          1.8443233361003006,
-          1.1238347973495961,
-          -0.569491292246541,
-          -1.3263449435791195,
-          2.8882194161013315,
-          1.3501449380116972,
-          1.3272717089851926,
-          2.1947711359564437,
-          1.5173056264313258,
-          -3.626419584646508,
-          -1.5576031704051474,
-          -0.3698176986745872,
-          -2.569050354084834,
-          0.1999001022362445,
-          2.568468653404198,
-          -1.0161608656090797,
-          -0.4720459741582684,
-          1.349989286799486,
-          -3.5297336650739375,
-          3.782347192686119,
-          0.35590181081470845,
-          2.811061806773209,
-          -3.0245961235687924,
-          1.3456927120523798,
-          -1.8763597546814628,
-          2.408107565862542,
-          -3.880449312465704,
-          -1.7247411829576,
-          -0.9305606818443103,
-          -0.6078880849815232,
-          1.5936658756319608,
-          -0.79787853528824,
-          -3.2309842339251316,
-          5.12335792742525,
-          -0.9727433350797908,
-          0.7362038954775583,
-          0.8346529797485271,
-          -0.6305624360891633,
-          7.207244332546233,
-          0.932816330242269,
-          -1.109047100170095,
-          -1.5338067927571581,
-          2.8410876867696286,
-          0.35753615711807857,
-          0.044256921098564654,
-          4.56139827822939,
-          -1.1939301355532888,
-          -0.6700739417584072,
-          -2.6484757911394188,
-          -0.6812080651949102,
-          1.5957695680940518,
-          -1.4203897960669938,
-          3.511559673935439,
-          6.6400492575732715,
-          2.025421604589477,
-          -2.8980870472418867,
-          4.424125355360419,
-          2.9647542992540963,
-          0.48887727564759775,
-          -5.676502389709809,
-          0.604195354318521,
-          0.032068358466343844,
-          -2.686331773002023,
-          -7.498218569456032,
-          0.8317279924588997,
-          -0.9013663905607382,
-          2.4952878645538967,
-          2.920696247080394,
-          -5.0205828375171135,
-          -0.6394550727708805,
-          -2.826081513221227,
-          -2.0738451294222364,
-          -5.154059511200492,
-          -2.008964326953949,
-          0.5689882843260406,
-          1.1753151828069848,
-          3.5634017499495494,
-          1.4241570234580414,
-          0.3769747743076952,
-          4.010236962918837,
-          -1.8608768694428544,
-          0.9167782580811525,
-          2.247623503617003,
-          -1.6960033687583433,
-          -0.7442938353287023,
-          0.6466108846098859,
-          -7.385222425896282,
-          1.2734254525273363,
-          -0.6766960614811699,
-          3.479340392539328,
-          1.31620644877
+          -0.9887702284502555,
+          -0.5626241309846923,
+          0.13311520079864048,
+          -1.8786672025777416,
+          0.9739141985461885,
+          0.03079789364189134,
+          -2.0343731845297643,
+          1.3962045695554526,
+          -2.5326521801250412,
+          0.862738427968808,
+          1.8748663728198292,
+          -0.7937829574950671,
+          -3.1644944801226678,
+          0.09023194717588834,
+          -3.4620147863141777,
+          -1.6679992668028998,
+          -0.27468608756845136,
+          -1.6917897154322965,
+          -3.0178820512141806,
+          -1.1357417056399093,
+          -2.5886368980453316,
+          -1.203470275757767,
+          0.4546356284430433,
+          -3.352494610304374,
+          0.002347216098981475,
+          -3.5304091511109053,
+          0.9098513435073159,
+          -1.3200034689827107,
+          0.5621853027013988,
+          -0.7194862202142345,
+          0.8099895129463672,
+          -1.0984960993179835,
+          1.579391285831551,
+          -1.3801241140696083,
+          0.6117596754047785,
+          -2.8173121977645037,
+          -1.8093000913022905,
+          -2.5473134445451198,
+          -1.9717831677352538,
+          -2.6733647093968624,
+          -1.8931332378542236,
+          -1.340639542118606,
+          1.0273233370257855,
+          -2.9334891984179476,
+          0.5257787179216817,
+          -1.3086876739509958,
+          -1.9140293450933232,
+          -1.5378907726148554,
+          1.534511430989356,
+          -2.433404839276552,
+          -0.9694123965312192,
+          0.14530573464683005,
+          -4.258580361473568,
+          -1.041346041419183,
+          -2.1517507043728195,
+          -2.9232922124592253,
+          -1.2614934894462702,
+          0.9530915021940234,
+          -0.48990582625633305,
+          1.6183939225997008,
+          1.4960247334184538,
+          -1.716451163451811,
+          0.7180268066138364,
+          2.527819344924087,
+          -3.235775296165383,
+          -0.6668844948296604,
+          1.9492329985294825,
+          -0.9397822284981722,
+          0.6044959687441411,
+          -4.306304890744716,
+          -0.5730746589478737,
+          -0.8283060563231522,
+          -1.0277176408820319,
+          -1.7054275521397524,
+          1.87292429144498,
+          0.6830195601842373,
+          -3.043457029677796,
+          0.9393675338072549,
+          0.6202702273163483,
+          -1.0531026304250826,
+          -1.4324622537931755,
+          -2.235222889059363,
+          -0.9428616177585482,
+          -2.526678359205344,
+          0.3024934235130119,
+          -2.6741856639730535,
+          0.05921893115575183,
+          2.2439157919370962,
+          -1.6021264304295306,
+          -1.1690775213272726,
+          1.6876581904983592,
+          -1.8611331365020285,
+          -2.207519864875621,
+          -1.0458743449135925,
+          -1.375767460847326,
+          -1.240260838251611,
+          -2.4391262367637143,
+          -1.4551431010551927,
+          -0.735628321470627,
+          -1.0454851387278872,
+          -1.1077457856656197,
+          -1.1588851220065137,
+          1.5383579406773746,
+          -1.9077685375114417,
+          0.9128619069565143,
+          0.9255120044479168,
+          -0.3747702065400226,
+          -1.4590742970866333,
+          -1.4576550547922944,
+          -3.3330775793928744,
+          -3.076710850853004,
+          0.7598011426106672,
+          -2.9127606225434874,
+          -0.3949594392078779,
+          -1.5866147419992847,
+          -0.5457269837518837,
+          1.090682327523799,
+          0.6537898276559191,
+          -1.0806459733929816,
+          -0.28278370336093206,
+          0.6459853043537054,
+          -1.0785591393015412,
+          0.3872640384262629,
+          0.11752050263553504,
+          -0.05950971271661831,
+          0.9946702325519601,
+          1.5502189083100797,
+          -1.6078960843000365,
+          0.2253940618162409,
+          -1.801123370358598,
+          -0.2640477963574286,
+          0.6796999915567754,
+          0.6455692030124707,
+          -2.64226180367684,
+          0.3388316880946025,
+          -2.725035797989472,
+          -1.7560007288003736,
+          0.4057025265866683,
+          -2.0845009385101485,
+          -1.1482131045544595,
+          -0.4078748384259311,
+          -2.7990596998432418,
+          -0.9115198538317955,
+          -1.3179247121118935,
+          -1.3794159827853465,
+          -3.0334412459359097,
+          0.7871300786397446,
+          1.2623382625425235,
+          -2.492042959352376,
+          1.7327902217615234,
+          -0.6051851048683607,
+          -1.092853038939686,
+          0.4599908488038904,
+          -3.0434564896912204,
+          -2.7068160591663095,
+          0.6311876990444929,
+          0.21093877090564717,
+          -0.9373826305542678,
+          0.4355602552862601,
+          -0.835261602502032,
+          -0.6005804389635209,
+          0.24744139833969414,
+          0.40810639797836656,
+          -0.041951035356440736,
+          -1.5453094536175365,
+          0.4958561105691708,
+          -0.6130354079901487,
+          -0.20164694204474898,
+          0.8409902302672545,
+          0.3204603902223173,
+          -3.28514154385972,
+          -1.7923101308706837,
+          -1.6233245101872327,
+          -0.694621309822431,
+          -0.14798886742065487,
+          0.7541789273647523,
+          -1.2792347822611987,
+          0.6253420934418332,
+          -1.552388970152745,
+          1.3807228014239517,
+          -0.6237612475239468,
+          -1.6394437587047808,
+          -1.1276831024689955,
+          -0.502029092492146,
+          0.7054510010441868,
+          0.2133511351395394,
+          -2.2337005813166466,
+          0.050790906465561836,
+          1.6509058650471036,
+          -1.624210336146197,
+          -0.06798765658948691,
+          1.3392790620045827,
+          3.00194998312468,
+          0.3800952492020484,
+          -1.885041928757719,
+          -1.2462544170006984,
+          -3.286898835544216,
+          0.8987920995095728,
+          -0.35458044408071887,
+          0.7816930025599866,
+          -1.0501837276079682,
+          0.6464328471525826,
+          -0.012028233065845995,
+          1.299396226022714,
+          1.906626237277599,
+          -1.8668912154763215,
+          -1.1874018487650946,
+          0.9107056312955795,
+          0.7286241583433015,
+          -3.1190128796822187,
+          -0.6605676370452963,
+          1.4992408104321315,
+          -3.4366848094824096,
+          1.08437716037245,
+          -2.1471722466810497,
+          -1.7171747627906098,
+          1.5194110115901962,
+          -1.598942046564328,
+          -0.015459323003455538,
+          -2.6848146560439448,
+          0.6341393692468533,
+          0.9031104375013834,
+          -0.10732264497749777,
+          0.5436553010188041,
+          0.6370550436065752,
+          0.0063415713698737886,
+          -2.933589466671309,
+          -0.9106975503728645,
+          1.0380188148780074,
+          1.7511817526109104,
+          -1.553889045118456,
+          -1.2819966363896185,
+          0.6066974406680965,
+          -0.955609079722407,
+          -2.915879491199587,
+          1.7420134634976767,
+          -2.3091889885648094,
+          0.2826932424058972,
+          -2.4537881020443573,
+          -0.6055122210484893,
+          0.2732415200998828,
+          1.4617357666431308,
+          -0.29629284952938706,
+          -1.4770775340522517,
+          1.429314713958052,
+          0.5579815383385487,
+          -1.6428155599944667,
+          0.8091993540382476,
+          -2.109615227344772,
+          1.6213160912518503,
+          -1.2640870372532103,
+          0.21800246552462088,
+          0.8752558040487601,
+          -0.28688680567185054,
+          -1.5163324331779444,
+          -2.8190507917082406,
+          1.441060015731955,
+          0.06994158641407866,
+          -2.190738206627243,
+          0.03227403194012868,
+          -2.447113700230637,
+          -2.0185078869705664,
+          -0.9201966488645713,
+          -3.4969318560591267,
+          -2.7943883472456346,
+          0.7426441915794073,
+          -3.3037619786113535,
+          -1.2714620813857505,
+          1.2195626147116405,
+          -0.10329139076228988,
+          -3.520323854310613,
+          -1.6619290102212432,
+          -0.7479696706337766,
+          -0.7091458829902683,
+          -3.379633855357443,
+          0.35511781351575245,
+          -1.2744306271428418,
+          0.4201858785386985,
+          -2.127745069818493,
+          0.8951128114800686,
+          -0.4628154053643504,
+          -1.575731005543111,
+          -1.4821750227522013,
+          0.36832586004550816,
+          -0.36279887324587967,
+          0.16868889007315624,
+          -0.007147892099486186,
+          0.010668939673521116,
+          -0.9667522126078772,
+          0.889460507989486,
+          -3.1970840423053506,
+          -3.696555791789195,
+          0.5191901103246561,
+          1.2601286712522337,
+          -2.4376211685269586,
+          -1.864631463663727,
+          0.04586108788073662,
+          1.0485818048470623,
+          -2.167707238283131,
+          0.2600998664203389,
+          0.8417241024516657,
+          -1.055197483815333,
+          -2.5655509585853564,
+          0.39256465383038686,
+          -0.495128805370299,
+          -1.7187491999733475,
+          -2.4749996221959147,
+          -5.476447679052502,
+          -1.1466318694683582,
+          0.3101062994848971,
+          -1.2442962404009354,
+          -2.88132188978385,
+          -1.5411509816669828,
+          0.7763993263874873,
+          -2.1761031469194743,
+          1.5713387345272305,
+          -0.20602763553592618,
+          -0.5154723926002205,
+          -0.1448435627486273,
+          -1.1191524471535412,
+          0.7636826184888847,
+          1.4363252268679947,
+          -1.7782678091446373,
+          -1.4545581414544726,
+          -1.1415617470914023,
+          0.12409491481789625,
+          -2.086554329145254,
+          0.24720254436701805,
+          0.5067647675678437,
+          -3.0021351889440266,
+          -2.0247743959119147,
+          -0.6690207004338296,
+          1.2655014595518903,
+          1.2317683480044597,
+          -0.8013357357500124,
+          0.23218884040058452,
+          0.6670350470093938,
+          1.2064513773251289,
+          -1.0224453171424261,
+          0.2478380977762169,
+          0.1237368867370714,
+          -2.036741537937343,
+          -0.5720607025429228,
+          0.6323831253162844,
+          -1.236664625639141,
+          0.283471932965905,
+          -1.0681022193917014,
+          -0.752203933876808,
+          -0.5163069890304124,
+          0.9369496095547043,
+          -0.780755710047658,
+          0.7294453610942175,
+          -1.7031725112501235,
+          -2.533263059069177,
+          -0.9514284556961915,
+          0.7420524782164533,
+          1.491942836872465,
+          -1.7655036725308877,
+          -0.5072665661693878,
+          0.1385856350265562,
+          -2.337959287541686,
+          0.747152275507625,
+          -1.1973336375154897,
+          1.7805758822106066,
+          -0.5718880325764186,
+          1.8438457082913544,
+          -2.9530281588442993,
+          0.6290313142530091,
+          -2.973563900792156,
+          -0.11586319432690773,
+          -0.6478275055329409,
+          -1.1080760898892965,
+          0.48612533199616337,
+          -2.8588133590970326,
+          -1.0723811024153909,
+          1.6987301277382687,
+          -1.614731735257569,
+          -0.9820565164379254,
+          -2.86698260413296,
+          0.7695356041512995,
+          -1.6617484254831898,
+          0.9665204785031727,
+          -1.110275268670074,
+          -2.8449959696526443,
+          0.4239833658859402,
+          -1.1582500980017256,
+          -3.2818279183142813,
+          -2.2741143033391498,
+          1.8585096650094601,
+          0.40522032005006814,
+          -0.0010712293857572108,
+          -0.8142647480182454,
+          -0.832172691789239,
+          -2.0816970628066125,
+          -1.9898573531913362,
+          -0.46383111368702024,
+          0.05220640752665351,
+          1.0836673698113772,
+          -1.9111905781676277,
+          2.825530094377152,
+          -1.6042305199106732,
+          -2.2816183661514295,
+          -0.6267898695304577,
+          -0.6073029459672451,
+          -1.2453563858626673,
+          -0.48304341833643794,
+          -1.203946335802101,
+          -1.6440765539817583,
+          -1.8759904441240538,
+          -0.8689069504330419,
+          -1.2672551814391257,
+          -2.8794558016544824,
+          -2.132457160627223,
+          -1.301813839468553,
+          -0.6737886735517808,
+          -2.9830265670194884,
+          -0.6484912096981261,
+          -0.7615887550992938,
+          -2.0907796813967963,
+          -1.1789524271038478,
+          -2.089520842266057,
+          -0.00314963439972471,
+          -0.6910527046431115,
+          -3.0756358850591248,
+          -0.37750271700502225,
+          -1.4348462070634502,
+          -2.2090830429800645,
+          -2.237096365411934,
+          -2.7288059070555484,
+          -0.415631662740784,
+          -0.5129448671224724,
+          -0.2550213637271562,
+          -0.014953335720573335,
+          -0.022669947264345125,
+          -1.937601883363425,
+          -1.9695189375524524,
+          -1.2485459498930627,
+          -2.20162733121696,
+          -0.2116340581737799,
+          -0.18909979338949712,
+          -1.3294239527367488,
+          -1.4555036201767437,
+          -3.6740126677959632,
+          -1.6419971652217233,
+          -0.517244537272038,
+          -0.9910746449499616,
+          -1.2563634032349902,
+          -0.555959945657437,
+          -0.9249370810130952,
+          -1.819368834966832,
+          -2.729587075722182,
+          -1.752037543162015,
+          -1.7198365536989875,
+          -2.8573660303739166,
+          -1.6386880249165492,
+          -0.13218197394113362,
+          -1.7743568110347576,
+          -2.117165162826117,
+          -3.0922872898477554,
+          -0.49052166158297783,
+          -1.5983700669416838,
+          -1.9642563175040604,
+          -3.6577843584379237,
+          -2.5413714114152075,
+          -1.558141511933405,
+          -0.7672787907308194,
+          -0.23734313308564192,
+          -1.6705115689870973,
+          -2.004195815455509,
+          -1.0054200455252766,
+          -0.29528965785794403,
+          -3.9518700417268504,
+          -1.0846149890866903,
+          -1.781222464755312,
+          -2.390091466678794,
+          -1.5162201482392401,
+          -0.9618521071896488,
+          -1.7089410062348436,
+          -1.001072489067377,
+          -2.4709206517782585,
+          -0.6962817575908725,
+          -2.517753882426569,
+          -1.5607098993664532,
+          -2.7308292863952977,
+          -2.083873611574976,
+          -2.2409503975773517,
+          -2.1725311993936747,
+          -0.20132092587518213,
+          -1.5105046440973267,
+          -0.1031413869631278,
+          -1.0250593569929691,
+          -2.027387033436505,
+          -1.851390712460586,
+          -2.268159097671142,
+          -1.0405721599951998,
+          -0.9578574243982633,
+          -0.12691017568206442,
+          -0.7883325090424214,
+          -2.4065523196008067,
+          -0.7588239439229676,
+          -1.7779461846586826,
+          -1.7569805782883,
+          -4.2894516601075505,
+          -0.8702829325624222,
+          -1.1697568109017211,
+          -1.1714147216030841,
+          -0.5048175712146816,
+          -1.5954526958261912,
+          -3.5684422064493444,
+          -0.482594490641747,
+          -0.7147108606870063,
+          -1.3582639552971993,
+          -0.2683755601106842,
+          -1.9313398435347517,
+          -2.0155353868200248,
+          -1.3226220051724598,
+          -1.1323829300685415,
+          -1.094546810121815,
+          -3.3174327948438265,
+          -1.5252902234198198,
+          -0.20549008568601645,
+          -1.0117115101010694,
+          -0.10432790799289338,
+          -1.5279299257500698,
+          -1.3922824060323855,
+          -2.579301122689901,
+          -1.6962967591769482,
+          -1.1407134937002568,
+          -1.6761439321351634,
+          -2.935355637760823,
+          -4.538274463518243,
+          -2.6341819970837723,
+          -1.3712388663061439,
+          -0.9786045990481449,
+          -1.2848671041582183,
+          -4.375688311279259,
+          -3.89806167808225,
+          -0.0343799279302236,
+          -0.553993955918082,
+          -0.013081205276772923,
+          -1.6780110192032334,
+          -1.7862572114598618,
+          -3.681841938164162,
+          -1.0231114162442527,
+          -0.8821189848426548,
+          -3.427231068549508,
+          -1.0720088326740174,
+          -1.3076530066744754,
+          -0.9415533402748586,
+          -3.013507648056511,
+          -1.9514704062439965,
+          -0.6872569696682537,
+          -0.5171972283488366,
+          -0.4280718661830182,
+          -0.9082704340818043,
+          -1.31887814674484,
+          -0.7179532209298631,
+          -1.8408556455166585,
+          -1.9846945750165732,
+          -0.9935871422171361,
+          -3.6153660736223743,
+          -0.2064276902054828,
+          -1.5948396559476175,
+          -3.096720536390002,
+          -0.4855489010944305,
+          -0.0073072484077185695,
+          -0.7442669817774301,
+          -0.5760591807636815,
+          -1.38595695425791,
+          -0.7907016557433163,
+          -0.20860866816644053,
+          -1.4805866386969972,
+          -0.655691451328825,
+          -0.0163086911994611,
+          -1.3555765160269035,
+          -1.5274120089593888,
+          -2.236062924488162,
+          -0.12551128047220295,
+          -0.42145053891616235,
+          -0.7019925442714559,
+          -1.0100564103690153,
+          -0.17744268472311497,
+          -1.6301571958132868,
+          -3.155327885622807,
+          -0.12715918656606562,
+          -0.9462785943484638,
+          -0.7729126279210776,
+          -0.06402201265079821,
+          -1.0506417375346129,
+          -0.9035061045025758,
+          -1.0150888703254506,
+          -1.2253007535187068,
+          -2.671135477833596,
+          -0.685291551887933,
+          -1.105349958410332,
+          -1.8336698075315376,
+          -0.24538150845632667,
+          -2.151317822993884,
+          -0.2113974429388482,
+          -4.099428244338647,
+          -1.9583797622326093,
+          -2.411630366409514,
+          -1.2480459590041355,
+          -0.6315074972986552,
+          -2.4776063751972934,
+          -0.6060254033828187,
+          -4.19543752748936,
+          -1.9210726001726868,
+          -0.5536091161689354,
+          -1.7262145378392315,
+          -1.5671276496478108,
+          -1.6254310355737691,
+          -3.4250064545539383,
+          -1.0019934132814363,
+          -0.7289842934961397,
+          -1.1728969143432706,
+          -1.1620271139365796,
+          -0.6553388975213441,
+          -1.6765998013018297,
+          -1.6027216008314533,
+          -0.34763657484505783,
+          -1.6893839260295933,
+          -0.8569091120943224,
+          -0.5437529476665106,
+          -0.26197627157925096,
+          -1.0937280879020563,
+          -2.533856062809228,
+          -1.1191245610094178,
+          -1.9819068750009214,
+          -2.3831476970010885,
+          -0.8758353176867864,
+          -0.563596243976581,
+          -2.0366887398783424,
+          -2.0303152376738804,
+          -2.2226206025488704,
+          -0.7324853318776194,
+          -2.689079683204112,
+          -0.17049916504093632,
+          -0.25728646767908403,
+          -1.5343226454576404,
+          -0.28235988486166885,
+          -1.8983377822831549,
+          -0.8557821066265661,
+          -1.4883759201881408,
+          -1.4187325955682748,
+          -0.15457782248674234,
+          -0.5406267900734472,
+          -0.10762230977874698,
+          -1.9729969504815172,
+          -0.10420186899557982,
+          -1.9581549425520106,
+          -1.4215525342032356,
+          -0.9792043503183008,
+          -1.2286350707767042,
+          -1.226253641468636,
+          -0.27681403775685964,
+          -0.6049293439688219,
+          -0.1823575432755391,
+          -2.902874559731917,
+          -1.9465475752122328,
+          -2.190062300456077,
+          -0.9683250804532538,
+          -0.1745717243571775,
+          -2.3696124263159852,
+          -1.1560493621074637,
+          -2.16783970744517
          ],
          "y": [
-          -0.898810792744466,
-          1.2762864931320124,
-          -2.322535457468739,
-          -1.5062762177942868,
-          -1.2619040663753571,
-          -1.2652773085557543,
-          -0.7032904677008732,
-          -0.6068654688212777,
-          3.0710715558547794,
-          5.072918670355356,
-          -0.17432625808239072,
-          -0.9130288828105368,
-          -4.234671268414235,
-          2.29092591098424,
-          4.710764021807334,
-          0.410524484543609,
-          2.5247854081341705,
-          -4.707570258932742,
-          -2.161905364229063,
-          2.290256840842334,
-          1.9773537981923472,
-          -0.8630082464278692,
-          0.5912949439203498,
-          -2.57674830639529,
-          4.552333916078685,
-          2.848352311586737,
-          0.9937096309725079,
-          3.9110068673370857,
-          1.2943233474626232,
-          -5.296240194422601,
-          -1.6890399789997936,
-          -1.5415174124793354,
-          -0.49778100818583876,
-          -0.531818090662765,
-          0.2976227716578888,
-          -0.49319301360930295,
-          -0.176028773467064,
-          3.011330508919815,
-          -1.1008705955089162,
-          1.2456000475697144,
-          1.212238517944301,
-          -2.5592756353934787,
-          0.4626364091857242,
-          -1.3001566358250063,
-          -1.9175151911676835,
-          0.8422796619810239,
-          -0.5704665316693606,
-          0.9448246826386244,
-          3.524096836195227,
-          2.1375064230904868,
-          0.9013790038665933,
-          -4.606081408981738,
-          2.258579266071765,
-          -3.608445050222631,
-          0.5454670121858687,
-          -1.0540973957143396,
-          1.7861297941001915,
-          -5.790469850862425,
-          -1.1075286019581747,
-          -0.35782406964769226,
-          -2.2021226725912144,
-          4.702581911484514,
-          6.020191624493722,
-          1.6945111535633814,
-          -9.243198957353934,
-          -0.7488162723795863,
-          -1.2228451183986058,
-          -3.3303971775311383,
-          2.646535348869938,
-          -0.014853669539687534,
-          3.0549283369347204,
-          -1.3077973600501338,
-          -0.20386547892682166,
-          -1.1634467969205649,
-          0.5282806275919958,
-          5.479921834193163,
-          0.26486371898639643,
-          -0.224974727483771,
-          5.06108189150352,
-          0.42539296754390554,
-          1.8159953624520482,
-          -0.594796994020123,
-          0.695005166918233,
-          0.6600998872224451,
-          -3.65356511223506,
-          -0.7933239721415102,
-          2.140377316120979,
-          -2.2639836646398015,
-          -2.4300775752600425,
-          -0.5475483475122089,
-          1.4485749648376058,
-          -0.5581139946744438,
-          0.8393768179123301,
-          -1.2018599233302527,
-          0.36587614903770455,
-          -4.780450655287952,
-          1.9240984649666588,
-          -3.630576744228018,
-          1.0920371938362408,
-          1.544895430348307,
-          -4.98699792736343,
-          6.278292615904283,
-          -2.060005123835624,
-          -1.523782968370786,
-          -0.9419324715771198,
-          2.961260172671753,
-          0.04560621564347955,
-          1.785764261445709,
-          -0.40308313228445714,
-          -2.304906123921448,
-          2.073334614980458,
-          -2.8882870541542394,
-          0.9962807059739316,
-          -1.3317540636823524,
-          2.104524071585561,
-          0.5690141982467574,
-          -2.8435005882991944,
-          -1.5435809501526832,
-          1.918584898541924,
-          2.96592904076415,
-          -1.5417755701725178,
-          1.7999673505889129,
-          0.5634883314536894,
-          1.9647208996634256,
-          -1.793072903746578,
-          -5.75508785987836,
-          -0.5063720864825623,
-          1.0056757218575714,
-          -4.025205792980498,
-          4.72575672468107,
-          2.177305012435753,
-          -0.38959198180992205,
-          0.3126760688561933,
-          -2.636684725996798,
-          -0.46591605808160597,
-          1.6127165727508437,
-          9.209580432474604,
-          -2.9768255929766836,
-          -3.6410010353259645,
-          1.9012410994415085,
-          3.536135362304361,
-          3.3017674668076036,
-          3.670043227920733,
-          -1.8012377746634156,
-          -4.7852408344825434,
-          -1.5419008293583123,
-          3.756743810518027,
-          -1.4974660692396633,
-          -1.8414018761193127,
-          0.11646546782525,
-          2.5946465627166666,
-          -0.6313921351513816,
-          -1.1258437386761486,
-          -2.72339902789935,
-          -1.9431289155573483,
-          -1.7519080244428622,
-          1.7593299171882164,
-          0.10423699373526724,
-          3.710401424978449,
-          0.001081459044769535,
-          -2.1029625434557353,
-          -2.7802451895631526,
-          -2.514949219213659,
-          0.9686336025551232,
-          -1.0043660603136737,
-          -6.49301765447154,
-          1.3824566862799021,
-          2.6422921013820972,
-          -1.3214405350781169,
-          -0.9557714028164466,
-          -2.311277516179413,
-          -3.735347095835845,
-          -3.9494812331743736,
-          1.7798127098695675,
-          -0.006350035537301844,
-          0.635498432478856,
-          -0.6175427831190581,
-          -2.6752225426596987,
-          1.9998821772709443,
-          -7.925935346941062,
-          7.19026216815298,
-          2.579217878295525,
-          -1.1257281275553013,
-          1.6695382040014433,
-          0.3682096920122255,
-          -2.2238132954270364,
-          1.8804784215373445,
-          -0.6207190037509017,
-          -0.33191314720052384,
-          -1.9171674192077923,
-          1.2985029845983316,
-          1.6968245065739072,
-          1.330026438406508,
-          0.05008313161019574,
-          -0.032185351109779,
-          -2.9187230904766412,
-          6.907992595631045,
-          1.4575817345209923,
-          -4.881231826986937,
-          -0.3775396602681442,
-          -2.0381576313577967,
-          2.0503178842929084,
-          -0.18325642820523905,
-          -4.1236376403667565,
-          5.267193402078254,
-          2.1843180954130745,
-          -5.305244261670404,
-          -1.372077018454142,
-          1.3510077888588679,
-          1.6558737929641463,
-          -0.5818298205814103,
-          -2.150511639790167,
-          -0.13894563269246873,
-          -2.156960537218298,
-          -2.7171330580190256,
-          1.7900714462101543,
-          2.2050763158418745,
-          1.4024326982115518,
-          4.089091945187876,
-          -0.2619230377348572,
-          4.100868117708014,
-          4.917182966824774,
-          2.5788201032882534,
-          2.2287050301106164,
-          -2.464706054512275,
-          6.483955339401619,
-          -0.6961538147927758,
-          0.3882357467656167,
-          3.0018841923124833,
-          -3.1768403973708987,
-          -3.603468246355238,
-          3.2506254372481163,
-          0.12484707400840625,
-          1.8442775439905708,
-          1.656399877710025,
-          -1.6407980928399413,
-          2.1898081574888266,
-          -0.4437366641362134,
-          -2.7454406707849452,
-          -0.15883895805142312,
-          -4.649293710986616,
-          1.4436891809090382,
-          -0.2881112949239038,
-          -0.7984573894179384,
-          5.188947193895977,
-          -3.5451147772034806,
-          -2.018319270675676,
-          1.664866728879273,
-          -5.303331120050221,
-          1.925258002021285,
-          7.246975378072513,
-          -0.9792857175294876,
-          2.2496825220691457,
-          9.335318150715402,
-          2.7280594338112203,
-          -3.295043979437341,
-          -1.8980173036356731,
-          3.596805938579382,
-          -1.0782263780993049,
-          -6.993440955501305,
-          2.861466348346224,
-          0.06086670766593635,
-          2.154604717935856,
-          -1.63892471317419,
-          -3.1313108735202086,
-          1.6450414275757868,
-          3.6937713568803896,
-          -0.21433790886531,
-          -1.5587060546872797,
-          0.8605345096342726,
-          -5.887253433739436,
-          4.625423618750247,
-          2.1995767313254877,
-          2.3145907153969687,
-          -2.864861745612818,
-          -0.2389592507714903,
-          -2.8284462338317384,
-          4.9258970594427725,
-          2.1163315490045704,
-          -5.315748083362814,
-          -2.254158280494974,
-          0.6425352823944589,
-          -1.0557445069851619,
-          0.8480575936263176,
-          6.687589415589986,
-          -1.9773359386752576,
-          -3.1065849191108406,
-          -0.87076808331685,
-          -0.48068184947798354,
-          -0.5273308497423939,
-          1.8881735441437848,
-          -3.0165119156365012,
-          -3.620752856055545,
-          -2.8800340318358173,
-          -3.9013820230044485,
-          2.7356675681365594,
-          2.566559642260394,
-          -1.3774602713196793,
-          -0.7990702563735143,
-          -0.6088795624117429,
-          3.0582134526745586,
-          0.2627938381280045,
-          2.6868666342031426,
-          0.5405503618755801,
-          -0.1668914878373604,
-          -0.17465918989321,
-          2.399802001937538,
-          3.887154259624725,
-          1.6402416179757813,
-          -0.3448219130256598,
-          2.207121303212212,
-          3.075419036190857,
-          -0.8221069716828728,
-          0.9774714460203623,
-          5.594717130811482,
-          2.2480674769340214,
-          6.770605762088903,
-          2.440837573707358,
-          -0.7711271666179066,
-          -1.1479217773905783,
-          4.395232450374532,
-          -0.628080213692086,
-          -2.6885045722841507,
-          1.6699544376148139,
-          2.9834818482651877,
-          -3.899954030530757,
-          1.4014615135081963,
-          0.3405740883372682,
-          -1.674628415564577,
-          -0.09189862273400855,
-          2.5596988922902857,
-          0.5262049915482132,
-          0.8648627049600156
+          0.9704319673041657,
+          0.5004740932982454,
+          0.31433005163251315,
+          0.4039242884520109,
+          -2.5370901537821036,
+          -0.3485147679849717,
+          0.2976739810460056,
+          -2.2101721446507803,
+          0.327320384797652,
+          0.392305256680338,
+          -1.4340998996207555,
+          1.1232794374422839,
+          0.06410836256258134,
+          -2.370850476496358,
+          0.5942809249543464,
+          -1.3452736952537179,
+          0.23788860270946288,
+          -1.4624828241716392,
+          1.3693562001515764,
+          -0.027674262911265846,
+          1.4045035054108084,
+          -1.3846432132375508,
+          0.19762939646350408,
+          -1.2130854723852644,
+          -0.4478781874142366,
+          -1.620562112163948,
+          -1.769726918264387,
+          -1.2195159428707187,
+          -1.021280158622662,
+          -0.8366880556943648,
+          -0.24472744579473749,
+          -1.689738945016885,
+          -2.006869517955729,
+          -0.585772020438994,
+          -0.6780995180833378,
+          -0.4749166652972304,
+          1.2623663310068647,
+          -0.35905859268723006,
+          0.4330305903991487,
+          -3.0120044066895124,
+          0.1686555274951378,
+          -0.31500012390214727,
+          -0.2645686730434147,
+          -0.49059278203589973,
+          0.6424803582145828,
+          -2.1464465301461764,
+          1.7065100296965725,
+          -2.5860009598446787,
+          -0.2921874077908281,
+          -2.8244196251592424,
+          1.5741563060626294,
+          -0.715050420715256,
+          -1.7401596765241063,
+          0.2797588244706686,
+          0.4407835688126551,
+          -1.1189253404919226,
+          0.8223970413283566,
+          -2.6698792246031413,
+          -0.20952769891942868,
+          0.07702770640365553,
+          -0.6408813629916321,
+          -0.9779690122887007,
+          0.2736470582556314,
+          -1.3111760149850444,
+          -0.7932270740725478,
+          1.391183670859967,
+          0.7293554391615698,
+          -0.6924087691643023,
+          -0.8903760599596708,
+          0.6737872475820761,
+          -0.6546320582627654,
+          1.6728184368627304,
+          0.04415199167287609,
+          -0.6599767020638966,
+          -0.057725531886169135,
+          -2.9227683034543315,
+          -2.4477193905072947,
+          0.4266772400077665,
+          -1.0059065819560162,
+          -1.8074791171378681,
+          1.556246956278767,
+          0.7659425390243433,
+          -0.723274869356439,
+          1.470913160876509,
+          -0.8439051990321741,
+          -3.0162640958848876,
+          -3.5777061633043252,
+          1.1049380934599178,
+          -0.2979771057493985,
+          1.0366624320676805,
+          -0.9607259770674579,
+          -4.918283338162478,
+          0.47406620129472365,
+          0.9436950497277998,
+          -1.0824882203235093,
+          0.10741095760033992,
+          0.8401172263820813,
+          -0.8754929338505386,
+          0.7114070707857261,
+          0.5806931204426085,
+          -1.084571435700954,
+          0.760482692344197,
+          -0.7249298860520478,
+          -0.5204412662723823,
+          -1.7323999791283315,
+          -3.1593367959921266,
+          -1.6582783396216052,
+          0.8823030212984677,
+          0.8217398359903474,
+          -3.1322427572366998,
+          0.7929993706258973,
+          -0.4970022472968977,
+          -1.6462040377939915,
+          0.6803162156040414,
+          0.13361402993242244,
+          -2.8360942618650693,
+          0.7867233817639754,
+          0.34427244350941244,
+          -1.1241529418981628,
+          0.6599523402170779,
+          -2.4155504409008897,
+          -0.6207437427918625,
+          -1.1165598093168243,
+          -0.7326874715525843,
+          -2.2469285646233867,
+          -0.6300118500554921,
+          -0.5975175967565762,
+          -2.190407185454511,
+          0.7591408606569641,
+          0.6485845487617623,
+          -0.07637156162254033,
+          -0.1368028588664384,
+          -2.400825984794533,
+          -1.8441587503957462,
+          0.007957529371466432,
+          0.29895048255931767,
+          -2.1492215910475103,
+          0.8963579756495079,
+          0.5204503250909462,
+          -0.7127875334560069,
+          0.9343152988864105,
+          0.9103226722730626,
+          -1.1819669305323255,
+          0.7680454971912836,
+          0.753426964999588,
+          -0.9069181747645988,
+          -2.1453550002893973,
+          0.4022373260412411,
+          -0.3560200466773086,
+          0.30345030947249496,
+          1.4994190112752257,
+          -2.475795101351391,
+          -2.424362696187174,
+          0.1437380661589216,
+          -0.9970566801248227,
+          0.42448815846044563,
+          -0.6542815987892787,
+          -3.5523440047689423,
+          -4.13704408120674,
+          2.0830923149631646,
+          -0.43362980086767156,
+          -0.9378856846618526,
+          -1.281452725909778,
+          -4.268239630554175,
+          0.34562673244251396,
+          -1.9603269899662634,
+          -3.4637621794491977,
+          0.999163785556471,
+          -1.4855841266966459,
+          -1.2223680414587363,
+          -2.4349414972683014,
+          0.8873230115792108,
+          0.552262469909826,
+          1.2293183443358529,
+          -3.395261758963876,
+          0.2960796199869722,
+          2.182976803734258,
+          -0.49680660003408417,
+          -3.305702943544082,
+          0.8531983439847128,
+          0.09439999741687077,
+          0.0855511177978574,
+          -1.095595850887496,
+          0.50561192734847,
+          -3.8227669646955356,
+          -0.11715217273208423,
+          -2.0314157608235277,
+          -2.2304785113259706,
+          -0.335777635069602,
+          0.17091752594025067,
+          -0.6350459305200438,
+          -0.6811832684550971,
+          -1.0003941094129563,
+          -1.1402745502046556,
+          -2.4887056535361363,
+          0.6210003623416995,
+          0.2007621976088636,
+          1.6035373542835005,
+          -2.338601534750002,
+          -3.3758196592597147,
+          1.0852391052262047,
+          -3.1946550165270473,
+          -2.632694450594375,
+          -0.16264575400276582,
+          -0.7704924487035343,
+          0.04421782562051901,
+          -0.027092098133760456,
+          -4.754848295380599,
+          -2.300998352058012,
+          0.9939271509408341,
+          -2.85917512843701,
+          -3.0095315446483086,
+          0.15374126820931178,
+          -1.4657533935178009,
+          -0.16700954122794665,
+          1.086935888698981,
+          -1.7207477336715724,
+          1.4325278902623193,
+          -0.2940355930517504,
+          0.9649966399155407,
+          0.4728908496150124,
+          0.6853728472848821,
+          -0.26567996578682573,
+          0.6576571154258195,
+          0.34507058273915114,
+          -1.1427991344972002,
+          -0.9827087930321259,
+          0.21102622902745205,
+          -0.2152311027789363,
+          0.711051860644025,
+          -1.1243349715650224,
+          0.3702984574907693,
+          -1.0635345959233522,
+          0.14923713930658544,
+          -3.45914341047305,
+          -3.0060852048429547,
+          0.753522890984933,
+          0.8482398950682692,
+          -2.5822220814190153,
+          1.2769223769717386,
+          0.5422630873777312,
+          -1.4786248728128506,
+          -3.3544552460456587,
+          0.25735472321642283,
+          0.647471070690917,
+          -0.19641858418680969,
+          -0.34399376641917,
+          -0.23523492711580107,
+          0.05597726983157214,
+          -2.4353341810907096,
+          -1.644099535248284,
+          -1.5001776116925023,
+          -0.6343190372315233,
+          0.4897129876623454,
+          -0.3328455656043454,
+          0.8249956006425414,
+          -2.5546882081241353,
+          -2.621101955529328,
+          -0.7130975258240377,
+          -1.447358743078615,
+          0.14305175427809558,
+          0.5216102059929073,
+          -0.7594085613402891,
+          0.2685489300558299,
+          1.5349989565357958,
+          -0.28469912046888624,
+          -0.277794611051837,
+          1.453741538362038,
+          -1.8352430518648406,
+          1.3505507889575452,
+          -2.9086258143260215,
+          1.547904430659719,
+          0.07012287248673821,
+          1.7336535732561855,
+          -0.33208694666962124,
+          -1.7842158696752448,
+          0.719118195047838,
+          -0.23610727662277853,
+          -1.37445612130483,
+          0.02101940292536053,
+          0.2605303860138186,
+          0.8732632631119521,
+          -0.534092199916981,
+          -1.2732135299260356,
+          1.2431265717971254,
+          -1.3559040727871132,
+          -1.3598534677894514,
+          -3.106882142421195,
+          0.09754887029513326,
+          1.961118316909698,
+          -1.344913027569881,
+          0.2080077347361653,
+          -1.5734566899032627,
+          -0.1809631270857991,
+          -1.9247657864295284,
+          0.5274345591237821,
+          -1.8288777612857854,
+          0.10705277528489798,
+          -0.26545199101246564,
+          0.3414893662107026,
+          -1.6427829101876688,
+          0.2392820981601751,
+          -2.4905284471162967,
+          -2.4991715846655653,
+          0.635303959612078,
+          0.761724659024064,
+          -0.5935254084769477,
+          2.061427391697154,
+          1.0711509128734056,
+          -0.8078180621503869,
+          -1.1258474395143474,
+          0.5993317908761895,
+          0.09648313165011824,
+          0.10154183649116222,
+          -1.7571554770713274,
+          1.1008395042182295,
+          0.9251983018927894,
+          1.2407760003209645,
+          -1.6841278618757047,
+          1.1098604506605025,
+          -0.07324338580156553,
+          -1.924637324540516,
+          -0.4523301833426242,
+          0.535890126018403,
+          1.5088414749221855,
+          -1.4109188107684034,
+          -0.33457122969007747,
+          0.43416722672553276,
+          -1.04872295384568,
+          1.8761197440578585,
+          -0.23998107577556982,
+          0.38220944362482334,
+          -0.1651044309702101,
+          -0.1666228719376226,
+          -1.332506382538373,
+          -0.8297492934599912,
+          -0.38492584075190717,
+          -0.9577375995082597,
+          -3.3329939746321875,
+          -0.9525885242290149,
+          -0.5106970784035805,
+          0.3120734278980133,
+          -0.962291010894015,
+          -0.4089933019215546,
+          0.003450257316531813,
+          -1.4129859250296444,
+          -1.8505733185387172,
+          0.2778269633452368,
+          0.7237404040394284,
+          1.0316740661724255,
+          -2.8044077303288146,
+          0.5955412867265872,
+          1.6524637373745872,
+          1.2384284867175546,
+          -3.1999985654300525,
+          1.4850594361611993,
+          -1.4809390237083,
+          0.21526478272411564,
+          -1.8264736337422334,
+          -0.007795042987128187,
+          0.11479123192029572,
+          -2.396415617314985,
+          -0.7185082762429362,
+          0.4681595976263735,
+          0.6209166351072104,
+          0.21749665021876607,
+          -2.260308157733332,
+          -3.7500051462506243,
+          1.5758238750785272,
+          0.31142085953528853,
+          -0.8711714256796499,
+          0.2959950142907861,
+          -2.7827415138098344,
+          0.06368078361278795,
+          -0.933945537948132,
+          -1.3144697843981574,
+          1.2944422074448787,
+          0.3598336085643401,
+          -1.0336138851720726,
+          -1.823744059779619,
+          0.1823349500444813,
+          0.055991733624492834,
+          -0.33167194108091824,
+          0.9199119735818122,
+          -0.43685664915092326,
+          2.180495569974209,
+          -1.4701084209679738,
+          0.5894860961592907,
+          0.061544516546946815,
+          1.8118617170101232,
+          -1.8796498267107715,
+          1.20110222288585,
+          1.210883720763388,
+          1.27212003332179,
+          -0.7758176749380588,
+          0.19357588021618288,
+          -2.178981591233261,
+          -2.1039833877975997,
+          -2.0099153828298766,
+          0.7060006225252722,
+          -2.222479108231762,
+          -0.06435478356046409,
+          -0.7732420624437452,
+          -1.1766777318042245,
+          -2.8063126087519086,
+          -0.7576312065135697,
+          -1.83528502878747,
+          -0.4718905073407884,
+          -2.276060073612877,
+          -3.1343063286515265,
+          -3.3784913628256135,
+          -1.1707522017929273,
+          -4.221323639321674,
+          -0.1382994146866211,
+          -1.5013426965877517,
+          -0.7912976483687485,
+          -2.2511793058241967,
+          -1.8941545139085618,
+          -2.1481358531763544,
+          -0.15356174822356394,
+          -1.3550480201062167,
+          -2.0696546699331186,
+          -0.6384689955785464,
+          -1.7701914420227576,
+          -1.793773429839992,
+          -1.7887929140624566,
+          -2.974433687017144,
+          -2.125489190928117,
+          -1.0676555016659581,
+          -0.5328253224275511,
+          -0.7447744575598858,
+          -2.276249235262991,
+          -2.4069052739504295,
+          -2.5345085503476366,
+          -2.2419017589209096,
+          -1.2176533667517062,
+          -2.1699591628397887,
+          -0.29451059733649865,
+          -1.2259929465751676,
+          -1.7321368596558107,
+          -2.113176944806173,
+          -1.6073215552721942,
+          -0.9557312175729769,
+          -2.7365823664394964,
+          -1.0320201293718305,
+          -0.3502883884068726,
+          -1.9614294960652918,
+          -0.4479520895378851,
+          -1.8595572799125946,
+          -0.815735356893362,
+          -1.2469705605993957,
+          -1.9491740745948685,
+          -0.7453734615186802,
+          -1.0170505889051984,
+          -0.5489542836168447,
+          -0.6527661072539767,
+          -0.9348260054987083,
+          -1.5876802787386148,
+          -0.5601476629783182,
+          -1.2732130445787417,
+          -1.0468100819888657,
+          -1.4351303799680888,
+          -2.22119699526919,
+          -0.30910416259578444,
+          -0.8500247644094452,
+          -3.599601288650145,
+          -0.9623214820328336,
+          -0.08603093258649508,
+          -0.2198384225901553,
+          -1.8715970024732629,
+          -4.311236847654985,
+          -1.7220668702416293,
+          -1.6944461128280386,
+          -2.908569521313022,
+          -2.0639112859507813,
+          -1.085666549332368,
+          -1.5550630949813335,
+          -2.528091618023973,
+          -0.9888044995587066,
+          -0.1438523887823282,
+          -2.1704960066837007,
+          -1.132350236181587,
+          -3.0140478508516813,
+          -0.22597967215626114,
+          -0.6501345776802486,
+          -0.38856747745142595,
+          -0.6352615706418636,
+          -1.4741810511118483,
+          -2.9541210062051064,
+          -1.9960346497778483,
+          -0.8795360813602241,
+          -0.7927019585930672,
+          -0.35303180082228247,
+          -0.46437918742887263,
+          -0.8011485107705555,
+          -2.628398175937411,
+          -2.455189782222492,
+          -1.540609223501371,
+          -2.835978539267617,
+          -1.485896397786578,
+          -0.8544848743601439,
+          -1.7659146905518406,
+          -1.775714783650785,
+          -3.358546602505759,
+          -1.0519888732021643,
+          -0.5891232345105092,
+          -2.985233941945089,
+          -1.4033433583415733,
+          -2.154893404109438,
+          -1.932548774361248,
+          -0.6765871893215888,
+          -0.6034682606567505,
+          -1.6000943827575531,
+          -1.2007573063059152,
+          -0.3816417081629254,
+          -0.6492078115014083,
+          -1.305449780208951,
+          -2.030423353844517,
+          -1.1792698194657867,
+          -1.2519341150546657,
+          -1.9414945763765208,
+          -0.9196342787392204,
+          -1.7899492811753133,
+          -2.3040114376928793,
+          -0.5862801929351208,
+          -1.258905026786803,
+          -0.8762027357963117,
+          -0.6293377765732422,
+          -0.5120811330528455,
+          -1.4642755418656437,
+          -1.3219942312159336,
+          -0.5847188195596709,
+          -1.351371933806504,
+          -0.36746905158875653,
+          -0.9810179365240758,
+          -0.48349905569362905,
+          -1.3508994768382043,
+          -2.0535070693696253,
+          -2.4445211449681024,
+          -0.7712815378050093,
+          -0.6241758569494404,
+          -0.7650584177144734,
+          -1.212827716850463,
+          -1.147096148549868,
+          -1.8316339403195032,
+          -2.4356657865024847,
+          -0.23682104165780926,
+          -1.1258688946976756,
+          -0.8593991008017244,
+          -2.583333516525868,
+          -0.7420218212769201,
+          -2.1281024577989562,
+          -2.265068525370735,
+          -0.2807200789999924,
+          -1.000311002677522,
+          -0.8887286017088722,
+          -0.9144854008646547,
+          -2.507023664573958,
+          -1.6984389664495732,
+          -0.9921409315075913,
+          -1.5622592541599016,
+          -1.4365755952006645,
+          -0.16931542400238153,
+          -1.8508896949092501,
+          -0.1631588098055481,
+          -1.0913338843914273,
+          -0.4832207524802393,
+          -0.24253731867135675,
+          -0.6926640782302518,
+          -0.24477613131873466,
+          -2.0426128359181366,
+          -1.091029679439038,
+          -0.10723823822407319,
+          -1.3294686909537528,
+          -1.5547015851871406,
+          -1.5417340496979475,
+          -0.25958101587698157,
+          -2.465340059384484,
+          -2.7837154394886277,
+          -0.7559293383919111,
+          -1.0351981317617016,
+          -1.9236656375086736,
+          -1.2505953017924802,
+          -0.3982898927680727,
+          -0.5450228221182805,
+          -3.0057052151603436,
+          -1.1660155210629102,
+          -1.9904322895734106,
+          -2.7673973058894576,
+          -2.336388003358972,
+          -1.8666362008273945,
+          -1.5695557001727805,
+          -0.711120258141004,
+          -2.858076991762509,
+          -1.431039420049201,
+          -0.8605622161319534,
+          -0.36524097891249585,
+          -0.5428293500635192,
+          -3.296397350424424,
+          -4.359820849089561,
+          -0.538640281659004,
+          -2.600695143233315,
+          -0.373705102092603,
+          -1.1076573146881272,
+          -2.147344153114176,
+          -0.9715349456486053,
+          -0.7093283838459485,
+          -1.232832849903212,
+          -3.836127041045768,
+          -1.954975314640003,
+          -1.6211618387786153,
+          -1.3463891535216432,
+          -3.694647739249522,
+          -1.0457761939919439,
+          -0.1780955044012742,
+          -0.9608656253181178,
+          -1.964859185268939,
+          -2.214876800213661,
+          -1.7112817818889425,
+          -1.8994647167777585,
+          -1.4095709896633903,
+          -0.7665820301714515,
+          -1.776358859876547,
+          -4.78801841714753,
+          -1.123878293939253,
+          -1.661459466917515,
+          -0.48533353730457307,
+          -2.2915767572401826,
+          -2.226005204772756,
+          -1.2835706843713321,
+          -3.3169165253279935,
+          -2.0927516312262178,
+          -5.1582593268627015,
+          -2.975980720063578,
+          -1.2120735634076816,
+          -1.0358626999330307,
+          -0.8124136593248312,
+          -0.1346845871063148,
+          -1.2499475334618824,
+          -1.1530154419522438,
+          -0.7764314248255041,
+          -0.8290835261173551,
+          -1.5775838921244878,
+          -3.0826517937889837,
+          -0.37160303823750784,
+          -2.6258662697955817,
+          -3.273117444762341,
+          -0.49091281941648246,
+          -0.7954502170820166,
+          -0.597280951636038,
+          -2.238439076035276,
+          -1.084436386499825,
+          -2.7580458238014565,
+          -5.432480501227076,
+          -1.102354233572779,
+          -3.519939082222602,
+          -1.8903508458824754,
+          -0.5652604743902658,
+          -1.7533514912380948,
+          -0.905129502680922,
+          -2.1170816590394077,
+          -0.5585151450019267,
+          -1.309334112115619,
+          -0.4066923313397982,
+          -2.245207373279071,
+          -0.8618479692497777
          ],
          "z": [
-          -8.021049450989889,
-          3.7198250636894885,
-          0.501151059987256,
-          2.663229509578842,
-          0.49132415250807765,
-          -1.9158219933579845,
-          0.5153441303438744,
-          2.4794102783570273,
-          -5.382177888023892,
-          -0.20247255001599765,
-          3.606408105333048,
-          -0.23210911792406871,
-          3.364733285953794,
-          -3.884086907224389,
-          -0.30513666955803925,
-          -5.0694482195199875,
-          -0.17696014788718975,
-          2.264325882866298,
-          0.19712298842797116,
-          -0.17761419924585933,
-          -6.62980101580449,
-          -4.579858819130441,
-          3.385456188723699,
-          -6.770504852889069,
-          -3.603986976468273,
-          0.6589937224259204,
-          0.8961100222709504,
-          -2.870253862994527,
-          0.8794948418103733,
-          1.6611661943227738,
-          7.708723794840796,
-          2.549966485810586,
-          -9.218353719322348,
-          0.6231757546286444,
-          2.2014257216201734,
-          -0.35999784877115065,
-          2.5353082520471095,
-          -0.44283475333066763,
-          6.241361772863269,
-          -1.786571409581953,
-          -7.309078672985981,
-          2.7638288218608325,
-          -0.6218985114424295,
-          0.7517144592054547,
-          0.4602995183480779,
-          -3.649763430797737,
-          3.372951877038537,
-          -0.6800829271733648,
-          0.6378314507890588,
-          1.0532861503395468,
-          1.3685665541653642,
-          7.260981787729986,
-          -0.48751327090097374,
-          0.9710129373167107,
-          1.690770507744648,
-          -0.9544030508828112,
-          0.9940138995218526,
-          -0.6746304734943361,
-          -1.0454233659333056,
-          0.7897254150002386,
-          -2.5903812324294666,
-          -0.5692066707085175,
-          -4.5512687818287105,
-          -1.1928107201423432,
-          -1.3334968146733621,
-          0.9240268985107041,
-          -0.042610852942250865,
-          2.1163161234494416,
-          1.0970024925375834,
-          -3.4282019945658675,
-          -2.3200086678049625,
-          -2.072025234717277,
-          -2.6790823703090125,
-          -3.8972813985363053,
-          2.2053320970784624,
-          1.6374525698238809,
-          0.3782019018161821,
-          0.6574105128799911,
-          -5.711231375202069,
-          2.864165394887752,
-          -0.413090435019791,
-          0.1445323210235873,
-          -0.8994458353059319,
-          -4.7367425794060605,
-          -4.944426507831993,
-          0.11262603784315746,
-          1.4286467233835156,
-          -2.1275740547085307,
-          -3.3188150168004342,
-          0.365397175517922,
-          3.070860175658421,
-          3.05935908355892,
-          0.011720340124285319,
-          2.7871909157862818,
-          -0.08396693995362929,
-          1.093600448773735,
-          1.0605188618650396,
-          2.6586464816718705,
-          -1.0866110131644835,
-          -3.1140054678935085,
-          -3.774521692463466,
-          5.131446482531424,
-          -1.1505226115189735,
-          0.9501562289310811,
-          2.7990900327751174,
-          1.1530720345748193,
-          0.7189782258038196,
-          -2.1734083608472723,
-          2.87589357023684,
-          -1.5905576142359945,
-          -1.3071603830846474,
-          -2.1384759792672234,
-          1.8960547578185125,
-          1.7286578499171545,
-          2.3972091247657574,
-          -1.0432913493237574,
-          0.6621059095988595,
-          0.42310601655782487,
-          2.5203640873990616,
-          0.03413844488003039,
-          0.4694003804951154,
-          -1.6787209056882095,
-          1.286440786651181,
-          -1.5265162033664064,
-          0.7388428368807959,
-          5.48799831769695,
-          -0.12949249518743408,
-          -3.814262698148756,
-          0.9632373340570434,
-          -1.4639906470658441,
-          -0.3986802874288706,
-          -3.0031531911540825,
-          -5.761851043884106,
-          -0.7658563707743689,
-          0.4238911984489739,
-          0.39462666396689305,
-          3.9379320648688507,
-          0.7768875779088638,
-          -2.53973539255759,
-          -6.407454858183259,
-          1.9194339582815572,
-          -0.4919659339851279,
-          1.5966801427264172,
-          3.7917669522595956,
-          -0.3179228389042961,
-          -1.5821237085901534,
-          2.8199783118333257,
-          -1.3516146210110473,
-          1.255497969079245,
-          0.14156902041136282,
-          0.009746889609180256,
-          1.4545998673920384,
-          1.3905386941713214,
-          -2.653893620688293,
-          4.6828468152317,
-          1.225089374129467,
-          -0.413751269301957,
-          -6.25383511605915,
-          4.172019527349153,
-          -0.3876716081102626,
-          0.39480950465353093,
-          -1.521186945290399,
-          -3.07078876520425,
-          0.5033369879654604,
-          1.2547458851420497,
-          -1.0227746958817607,
-          0.06676139867534264,
-          -3.275081200299699,
-          1.4782124901060576,
-          0.838584422082508,
-          -1.5585130880023943,
-          0.6864879837331218,
-          0.7591788317293112,
-          3.4012088715293833,
-          -1.7797781440524427,
-          -1.881078735602243,
-          1.6874578606168384,
-          3.067727880615327,
-          0.03157587581313659,
-          -3.914962515224877,
-          -0.31678750287318386,
-          -7.083594410011868,
-          -1.19633328392537,
-          -0.5485504650571167,
-          -0.9555019846974742,
-          0.8418099369373836,
-          0.28923902944447233,
-          -1.5261235463892848,
-          3.4371466355918776,
-          2.5917835113850645,
-          0.1968958320928672,
-          0.31587109888214626,
-          -1.296895044094302,
-          2.5001494779575117,
-          1.467532808339572,
-          0.2905301717551986,
-          2.4346851767638844,
-          6.740080703649695,
-          0.646391439284821,
-          -1.8392750224841212,
-          -0.8645861483777553,
-          0.20846976374359508,
-          1.538398798092002,
-          1.6469244089001,
-          -0.8712602031937067,
-          0.3564269795271206,
-          2.822093887230558,
-          -0.28139980478898186,
-          -2.4428014302969316,
-          -2.8023750331664092,
-          -0.17981753363143527,
-          0.6652610574231079,
-          1.5634761442251301,
-          -1.0662432946111304,
-          -0.37921892198999496,
-          -2.931948265267289,
-          1.2447320119235286,
-          -2.7237110979905323,
-          -4.359769434494265,
-          -1.4781635112332407,
-          0.19590100221185675,
-          0.8440834615863458,
-          -1.4655643510826588,
-          -0.7726944851720782,
-          -1.4595905558868747,
-          -0.05693523925193371,
-          -3.5831309533940514,
-          -0.4229209717894108,
-          3.454201765420273,
-          0.1905956885406344,
-          0.8798813532319308,
-          -0.13792976486577477,
-          -5.077190219870265,
-          -1.7105463588324628,
-          0.8984530418786728,
-          -0.6590180921679532,
-          -2.219742256892545,
-          0.15933208331479443,
-          -3.354380424150304,
-          -0.6148417840409011,
-          -6.273507825969974,
-          3.1391448856904174,
-          -2.409598234397803,
-          -2.4001345234017886,
-          2.6760411977619256,
-          1.2265685989150654,
-          -0.21528617142060616,
-          0.6310191705013989,
-          0.2913508615943588,
-          1.1094759815844586,
-          -4.009772880397135,
-          1.1784190832670578,
-          -0.6663119929172638,
-          -1.6693385985136677,
-          -0.991820500545652,
-          1.5813235642993142,
-          -4.389532727807522,
-          -1.4659671434316672,
-          -3.653332143657016,
-          3.97526688636945,
-          6.3878325950024335,
-          3.666487162459623,
-          3.268325525600367,
-          -1.5698981867895905,
-          1.91129297033905,
-          2.830641392631943,
-          2.2614745939124936,
-          3.3767824422844095,
-          -0.19900857903859345,
-          -0.10204461902999919,
-          1.8329095526656662,
-          4.865238179562599,
-          -5.972804829628532,
-          -2.426627529902805,
-          -1.0792837361146452,
-          1.1880510605702144,
-          -0.3317320789509116,
-          -3.872606543620533,
-          2.345593713697157,
-          1.015117410840814,
-          -3.683111449408763,
-          -0.8530703915558947,
-          -1.2341055283468494,
-          5.977216260432266,
-          -7.283523325869098,
-          -2.107172973846164,
-          2.1776201173148233,
-          0.7581484422660117,
-          0.9465257544665648,
-          3.321381961770768,
-          1.7901934139090983,
-          -1.8399872035119993,
-          -1.8987054703517203,
-          4.379229892321126,
-          5.477718346571419,
-          -7.531190957859257,
-          -2.2149740218151486,
-          1.723308186229406,
-          -5.897045574505297,
-          1.081480963707406,
-          -4.45768730285796,
-          2.0591793849990974,
-          -4.069999262124721,
-          -3.675262515298213,
-          2.842737278316054,
-          -4.404196455264229,
-          -2.0147645478787375,
-          1.1715007377974642,
-          -0.43488816813137293,
-          -4.925264273794069,
-          -2.7395637597042044,
-          -0.7846647740993332,
-          2.157228531334993,
-          1.1288658078643725,
-          7.080298018854347,
-          1.5421235143810588,
-          -0.7334491745946383,
-          3.195316007303791,
-          -3.032164974559711,
-          0.09292617810319757,
-          0.10452342762800323,
-          -0.6222043953100093,
-          0.8956045850391703,
-          6.05583835865991,
-          -0.00841669711955247,
-          0.045321507556744904,
-          1.083232753262188,
-          2.1733388224767936,
-          -3.8904201131271416,
-          -1.6558399204974623,
-          2.1351863165774945,
-          -3.1235866234194467,
-          -1.4556730263829725
+          1.7999572436542852,
+          -3.9567451393012893,
+          -2.5308156161813375,
+          2.208518762656566,
+          -3.373976360134543,
+          -5.408292567768812,
+          0.5384746526410318,
+          -4.324390056900036,
+          -2.0331144969110424,
+          -0.9203455004905949,
+          2.867120745514968,
+          -3.3503942064737893,
+          2.5375148809786188,
+          -2.1310577190004087,
+          4.53879337497466,
+          2.09921958832473,
+          -1.2620419315314262,
+          2.5470872014371375,
+          3.64325497939845,
+          -2.5611940362921053,
+          -5.450724826764734,
+          0.9407559021814507,
+          5.1929776922143844e-05,
+          1.9099537964733209,
+          -0.7507177896686832,
+          -2.691400326527674,
+          -4.912213249782639,
+          -3.5451856531631494,
+          -3.406287643198316,
+          3.2919724775644683,
+          -2.31953143361243,
+          3.520113644684373,
+          0.28540424280789,
+          3.2648210558041777,
+          -2.7585168951023276,
+          4.118978600882111,
+          -3.484298947548208,
+          -1.5611002460019519,
+          1.067442982785348,
+          -3.2979451129974486,
+          2.9079707131627375,
+          -0.0974095646923212,
+          4.188014336699749,
+          1.4203881716632267,
+          -4.666422505784898,
+          0.5779617926452119,
+          4.337032394759178,
+          -5.179509206774987,
+          1.6105700497431155,
+          1.2758933826009766,
+          -4.147528211188986,
+          4.466220081812357,
+          -3.0674580577463706,
+          1.729992070717346,
+          -1.5619852750530967,
+          -0.9838970992235216,
+          -0.7751281277850044,
+          -4.134632526212277,
+          -2.7936283822859806,
+          -0.26621368747943475,
+          3.6648958299871,
+          1.4157683040393225,
+          1.7537626649968798,
+          -3.492592100378083,
+          2.673484323255619,
+          2.4265666146293983,
+          -3.151074537322206,
+          -0.12167928459817645,
+          -3.6638743692392755,
+          -1.2130955208543783,
+          -1.0556000306148938,
+          -0.8297714923264721,
+          -2.619164313607285,
+          -5.4786049284643425,
+          3.3174096139417637,
+          -2.6803516514255676,
+          4.603417318414542,
+          0.438558722115979,
+          4.363499538865686,
+          4.241790792982504,
+          1.3316093243708895,
+          -2.091734520148451,
+          4.279100513256634,
+          -3.819573285922389,
+          -5.594024179086257,
+          0.0628604128322392,
+          0.5634517373353614,
+          -1.756977848805069,
+          1.6793371989517079,
+          4.453691801947971,
+          -0.38247753149085106,
+          3.322179352686775,
+          2.845821167233468,
+          0.23732853837341583,
+          -1.1885433284622255,
+          -4.794263763839511,
+          2.788294280884199,
+          0.9576524086559983,
+          2.370799236733096,
+          1.1337728115744445,
+          1.8948179436159025,
+          -5.495315179237563,
+          -1.0084982048966635,
+          2.455108422747327,
+          3.1458728499485344,
+          0.6102746067861498,
+          -1.4678308296659397,
+          -3.5886696811571035,
+          1.6550111616346523,
+          3.734364053684481,
+          -5.494281492780125,
+          -0.32295566382868035,
+          -1.630244561703095,
+          -3.7539543493161633,
+          2.9278516842918174,
+          3.525554905689865,
+          -2.541875626009323,
+          2.6127487515068415,
+          -1.498815715589024,
+          -4.531039107718206,
+          -4.208786036870863,
+          -5.777321041077342,
+          -2.629605648193711,
+          -2.6016176917874825,
+          2.4600657453854984,
+          1.3398711812677124,
+          -4.892322730519634,
+          -1.2492317819864587,
+          -3.1742515659598687,
+          3.579914691775607,
+          -3.995849504421621,
+          2.0247238109523495,
+          -0.9274983884235679,
+          2.288384606128626,
+          1.9377867291434523,
+          -1.429809215713858,
+          -4.231523952999464,
+          -1.6054930770603715,
+          1.113624712604012,
+          -3.297856442016979,
+          -5.384601392681733,
+          -5.051085306075823,
+          -2.816564790612274,
+          -1.5455049533431957,
+          1.4635953336115302,
+          -5.4120733385733555,
+          -1.142860612274247,
+          -1.963490618205903,
+          -1.4768191256915602,
+          -0.6980897020630756,
+          0.0873135332503292,
+          -1.293860943372886,
+          -0.6959012510953411,
+          4.201876289827342,
+          3.948716361351482,
+          4.381570559039388,
+          -2.654139697482684,
+          -4.876801233295311,
+          1.5560819788130207,
+          -5.393056140858518,
+          -2.446273984019994,
+          1.1809592951783472,
+          3.7274864529049347,
+          -2.8230369153422488,
+          -3.6799318023349574,
+          2.496775943838535,
+          -1.5056364844516414,
+          3.362319092743017,
+          1.487482386822533,
+          -1.4567574280201372,
+          -5.085131049432539,
+          -2.99072646064265,
+          -0.24910879315018342,
+          -4.56992696378199,
+          4.340164718609805,
+          1.018581826661216,
+          0.503907516032025,
+          -3.6564405591433395,
+          0.3674465934487845,
+          1.1915167825365698,
+          -2.3055321972303315,
+          3.4842853157946463,
+          -5.154664232384952,
+          1.571681026524102,
+          4.231562142694844,
+          0.6130026815639305,
+          -0.31189435324128123,
+          3.219042378460343,
+          -0.8278739994759352,
+          3.185856514642457,
+          2.804315015530869,
+          2.4979408100156393,
+          -5.676119623983693,
+          2.1093309953225603,
+          -5.400959969273605,
+          1.2959465023669674,
+          -1.4098850719257667,
+          -5.647051911167314,
+          -4.922524316482164,
+          3.9087153288781673,
+          2.5598683834936553,
+          -3.383758712338313,
+          4.331238586210579,
+          -2.5306226888930228,
+          4.567922910220145,
+          4.446652638851103,
+          0.6688125426003824,
+          1.3873710352078739,
+          -0.6691568103220664,
+          -3.0303428733467728,
+          -5.541752719943159,
+          4.440740158372344,
+          -2.900389236598394,
+          -4.480902465875387,
+          -4.574366159883185,
+          2.7387493002426266,
+          0.12789417532448422,
+          -1.283878255216936,
+          3.8402845801051475,
+          -4.828809532141261,
+          -1.1125214172375637,
+          0.3439060614025058,
+          2.320472730555765,
+          -4.46408509663681,
+          -2.232332391148129,
+          -4.205054574389278,
+          -2.564334152982476,
+          -0.6833343434265604,
+          1.2360302814325488,
+          4.166071160367728,
+          4.56431783678931,
+          -3.226714941560632,
+          2.8777547932405225,
+          -1.582707731909407,
+          -5.103977636447343,
+          1.0538294012479996,
+          -0.5372320011076255,
+          -3.2539620389999975,
+          -0.7864535685182341,
+          -0.6940214305643684,
+          2.002317739183682,
+          -5.302945533635693,
+          -5.2729554370609275,
+          1.0117446223235715,
+          -4.636977051978591,
+          -2.865705711051214,
+          -4.612940460062924,
+          -0.7318260613839245,
+          -1.4761590229014026,
+          0.9098267172025434,
+          -2.015241772164919,
+          -0.8407056946968829,
+          2.519811566100585,
+          3.875486874119349,
+          0.6001646176283293,
+          4.189069399051587,
+          -4.063650989164277,
+          -1.687418336898891,
+          -0.7141697089863754,
+          3.2651684803995904,
+          1.9691792345067087,
+          -0.8085337269378616,
+          0.3167424121163336,
+          -0.835597755606293,
+          4.401046180366097,
+          -4.877526362134231,
+          4.499015198293832,
+          -3.1771983878460177,
+          -2.327391952867864,
+          -1.7239715167196836,
+          -5.166213756741282,
+          -0.41852978936688423,
+          -5.182715231556573,
+          2.370526118559309,
+          3.988604250982042,
+          -1.4259957883146193,
+          1.5535969857369158,
+          -0.24913773263396966,
+          1.569095792411046,
+          0.8785773815570685,
+          2.166464798548101,
+          -2.4891085656046674,
+          -3.6841969475300647,
+          -1.341192178902329,
+          -3.584293767263223,
+          1.283877092308157,
+          4.535196094083736,
+          4.203808014728165,
+          -1.7911181090368995,
+          3.8736550868670845,
+          4.26556651736706,
+          -4.41827628819158,
+          -1.5029310475283175,
+          -0.7033235001849754,
+          0.6446344190067945,
+          -0.13816921222868928,
+          -4.397802980831106,
+          -4.3818196054569025,
+          -1.3579033237345906,
+          -0.355170707714378,
+          0.36150775480851927,
+          -5.707658879760939,
+          1.1616937405877703,
+          -1.6192295612268577,
+          2.939769133462442,
+          -4.032034133014757,
+          -2.97819578896903,
+          3.790141983757798,
+          -2.7070470624966445,
+          0.8192620101922037,
+          -3.7415520719455606,
+          -0.8390873452275249,
+          0.9194411604510782,
+          -0.5517791604600042,
+          -1.1683044813877812,
+          -0.5402002709902218,
+          -2.662446638958171,
+          2.5384369940892233,
+          -2.6396061102965684,
+          -1.23945833266436,
+          -0.2189136721289371,
+          4.171846942148721,
+          -2.8991328504778235,
+          -4.112743433354224,
+          -2.1608048688093047,
+          0.29324788213504327,
+          3.3261673728815717,
+          -1.058401238303082,
+          3.436449769327276,
+          1.6762897806221364,
+          -5.065682334055713,
+          -1.3422132668296776,
+          2.602096783576136,
+          0.20899957886900022,
+          -5.315261425719823,
+          -0.0371680136304855,
+          -4.157136952778868,
+          -4.124886260815211,
+          -2.2054146865307356,
+          -1.52247271222915,
+          -3.2637417355486145,
+          -1.586709842977836,
+          -2.9543939244936293,
+          0.7886488939715903,
+          -3.8785639869333974,
+          -0.03401377664858263,
+          2.2250495810481405,
+          2.5313845701721567,
+          0.45607310068891405,
+          1.1699474402408416,
+          -3.896541154071996,
+          -3.13500757585358,
+          3.641751493029388,
+          0.783579078144581,
+          -5.585655946795133,
+          -2.77943625238252,
+          -2.1546138572886226,
+          -5.43758164862493,
+          -2.52641745804927,
+          1.3637946760404587,
+          -2.218974585735593,
+          1.8865976481789115,
+          1.6975830095472446,
+          1.8348349863444051,
+          3.334002157625206,
+          -5.190688946816928,
+          -4.571463758000964,
+          1.1775013539237982,
+          -4.520921250502255,
+          -3.2956727706414113,
+          0.023571859651501548,
+          3.2990376623710658,
+          -1.9692758695264168,
+          0.000995659994967646,
+          3.1374736601013042,
+          3.3901423684995526,
+          -1.071340778326772,
+          3.647098237192913,
+          0.1626157443609788,
+          -2.0971401059487844,
+          -0.25623700748412226,
+          -3.648012269839879,
+          3.3095391219560986,
+          -1.3490867057264975,
+          -2.1112548505806608,
+          -0.8482858881797979,
+          1.2987304929645633,
+          -1.8521419742513205,
+          -3.0868015472523878,
+          1.2136829199941088,
+          -5.216336413263394,
+          -0.054732340368704335,
+          -0.35822240967800845,
+          -4.158274070808594,
+          -1.0764248622160588,
+          -1.2545119318507725,
+          -5.134987790683614,
+          3.6173487362618504,
+          -3.980444440046914,
+          -4.4149634807996385,
+          0.8315389295925959,
+          -2.104342560586789,
+          -3.915595076010135,
+          1.4466769324872022,
+          -2.0031857264664796,
+          0.8314781740634656,
+          -2.5121776047809137,
+          3.200575438595007,
+          1.1603086833646845,
+          1.6049785921471909,
+          -5.351283570104224,
+          3.4086255445282374,
+          4.114076417108509,
+          -0.31155921721356794,
+          -4.917857020079854,
+          4.183185882608588,
+          -2.4803353309084657,
+          -5.228349165916789,
+          -2.191255920407962,
+          1.195973346934089,
+          -2.35009597044507,
+          -0.6006939548627273,
+          1.4195892300539255,
+          2.8543138091588167,
+          -1.8092652754439134,
+          -4.410994111207403,
+          -4.806963666966233,
+          4.007088452722479,
+          -1.8733981751404363,
+          3.1697415784681118,
+          3.1593124760810793,
+          -5.451659846503135,
+          0.38689716533126806,
+          -1.4738908577236378,
+          3.3951800748369836,
+          -4.274402274955886,
+          -1.1507969686572546,
+          -5.443639750555611,
+          2.026887010398278,
+          -5.280215712202062,
+          3.195818177782418,
+          -2.887735351746787,
+          4.111313600865638,
+          -5.593831301369242,
+          1.6135384705865548,
+          -1.3926494062803574,
+          -0.7701196928763068,
+          -2.92156278468257,
+          0.48860618164346814,
+          2.17808977519364,
+          -4.3907400794724,
+          -3.532007726472084,
+          4.345850485474014,
+          4.117728625759775,
+          1.3739178590326606,
+          2.6035929376717446,
+          -2.038502847210563,
+          -0.8035966294051926,
+          -4.888016377683062,
+          3.341171363864457,
+          -3.343252445526581,
+          2.474710294473101,
+          -3.8374576695851124,
+          -3.9045371366351223,
+          4.6078404832734945,
+          -1.817085435659862,
+          -1.6247196876367331,
+          2.117689017802558,
+          -1.3340951903748453,
+          -5.66183032699691,
+          -5.741767982271961,
+          -1.5675610321216453,
+          2.917936954789629,
+          -2.6237887105955933,
+          1.4402575683762375,
+          -3.7104376850961254,
+          -4.057581715267434,
+          4.45279938727345,
+          -1.9253946045331207,
+          2.7555529069780116,
+          -5.280028946129146,
+          2.164438407823001,
+          -1.806916359607479,
+          -1.5808842249490924,
+          -2.6900770713947098,
+          -1.4068274464052761,
+          4.079443121017403,
+          -4.626131148806002,
+          1.53094510344933,
+          1.5554972423923044,
+          -0.15461135016706784,
+          -1.2464941774159612,
+          1.5816008669851653,
+          -3.060850706559104,
+          -1.342818470142645,
+          2.4016759866178417,
+          4.242194439008071,
+          0.5623030348860301,
+          3.260904941682072,
+          -0.42249847545044084,
+          2.74838911725572,
+          4.019656480165984,
+          -2.508163521814253,
+          2.8467987642117967,
+          -1.0187072051348824,
+          -3.8624835002777616,
+          -3.4582756870771583,
+          -2.379329748841314,
+          4.121234542345889,
+          1.7998246603947763,
+          1.3197018442482502,
+          -5.288404369262936,
+          2.2430125941243277,
+          -1.2584826624982037,
+          3.3331635891599882,
+          -0.2713384088860886,
+          -0.4715922009377227,
+          -4.223533124506552,
+          0.7880195130772787,
+          0.9139103661187971,
+          -3.8151708403250777,
+          -2.187883145496884,
+          -3.158017142894948,
+          -1.248390796932778,
+          -1.4985955832581848,
+          -0.5877918281637085,
+          2.094460322593596,
+          4.4486739096293695,
+          -2.580838979914086,
+          -3.1747127475704815,
+          2.161503892150204,
+          3.6326106215447096,
+          -4.146654114458575,
+          -4.520166388220856,
+          -2.4862826087720094,
+          3.2701929182230893,
+          0.9517983112221984,
+          4.300607436470826,
+          -4.1923825763035385,
+          -0.9503233841486045,
+          -4.785050869282779,
+          -2.429654308770622,
+          -2.088006686735158,
+          2.0197604608586888,
+          -4.453301814530362,
+          -3.165177242721522,
+          -2.334145071182061,
+          0.6254431827716962,
+          -2.616847128391117,
+          -0.3511869052176735,
+          0.5604914846662625,
+          -5.533584715415601,
+          0.7907651283693591,
+          -5.668585373687845,
+          -4.777863212599686,
+          -4.042607758643317,
+          0.3715417141534907,
+          0.24053723594141907,
+          1.7409486728106174,
+          -4.62336019518138,
+          -1.57427860861472,
+          -2.7549843858885072,
+          -3.56975686020959,
+          -0.5845871146592998,
+          0.7736742731541959,
+          0.30033926423119794,
+          -3.5804663828541536,
+          -4.413290545112742,
+          -2.0054927786457966,
+          -5.379735112228988,
+          -2.8894043502917324,
+          -1.6896204351335493,
+          -5.723486985081453,
+          -3.104219522728685,
+          -0.34475347991705885,
+          -3.73675762170095,
+          -3.35055532327246,
+          3.2774528786642465,
+          1.454439782168789,
+          -4.817770704753136,
+          -0.3603976490719374,
+          -2.1922736048837015,
+          0.2160249562828085,
+          -0.31508552184344296,
+          0.8302269694237152,
+          -3.8989078232754677,
+          4.353911085918418,
+          -3.549163719537728,
+          -2.6614020406439414,
+          2.5242604963639392,
+          -1.3281667633466023,
+          3.063221330549278,
+          -2.605343857150151,
+          -0.10296389735231681,
+          1.797724969191024,
+          1.1852796730105695,
+          2.4085253787563987,
+          4.511298574971236,
+          0.2279561185247676,
+          -5.022659231157002,
+          -1.9302705004209644,
+          -5.7892778180207864,
+          0.6901962191186737,
+          -5.017542964974304,
+          2.689050268634367,
+          -4.107035086361726,
+          2.4160259358569443,
+          -4.471003634430568,
+          3.22998823606543,
+          0.8262258637206248,
+          1.3964295634402326,
+          0.6837673209445017,
+          -2.9489115003444955,
+          -2.2286692530246874,
+          4.3898722165286435,
+          0.4766520360325348,
+          -3.993082686387141,
+          1.5137742371066825,
+          4.63170164896687,
+          -2.996594558435171,
+          -5.3155193200304955,
+          0.8266771219660933,
+          -4.993219311468504,
+          -5.218755476491078,
+          -5.524187332170399,
+          -4.979773776816868,
+          0.7191406726231557,
+          2.813829781237364,
+          -1.2866677559302309,
+          -4.03559284397515,
+          2.691812680588188,
+          0.5535653332549835,
+          2.7247128154014524,
+          -3.1628953048385813,
+          3.1840116574369857,
+          -1.0055572829877457,
+          -4.79293919589358,
+          -0.38522928858222194,
+          2.6341382864995895,
+          -0.9847184523166694,
+          -2.1205833254816198,
+          -1.514885513599646,
+          4.077843127216883,
+          -5.774241641413997,
+          2.6684806760101614,
+          4.160041414578191,
+          4.26996594113499,
+          -1.1493853244397911,
+          -5.676766606984887,
+          1.844205551646529,
+          2.302828432216862,
+          2.100278686880049,
+          -4.30142063689642,
+          3.267552300566197,
+          -4.999501082050136,
+          -0.5521072098409228,
+          0.21655177046331886,
+          -2.4914470903351833,
+          -0.7893283429525013,
+          0.03344258885835494,
+          -0.46568746274061557,
+          3.7272860895617823,
+          -5.607428902253223,
+          2.569486715451002,
+          -1.2371990635286965,
+          -2.0890779810873243
          ]
         },
         {
@@ -25590,1345 +38843,2677 @@
          "scene": "scene4",
          "showlegend": false,
          "text": [
-          "Complementary_85_1",
-          "Complementary_1_1",
-          "redundancy_42_1",
-          "example_12",
-          "example_15",
-          "Complementary_25_1",
-          "Complementary_27_1",
-          "redundancy_11_1",
-          "example_19",
-          "Complementary_48_1",
-          "mutual_error_32_1",
-          "redundancy_50_1",
-          "example_28",
-          "mutual_error_23_1",
-          "Complementary_49_1",
-          "example_41",
-          "Complementary_65_1",
-          "Complementary_56_1",
-          "Complementary_63_1",
-          "Complementary_76_1",
-          "redundancy_62_1",
-          "Complementary_71_1",
-          "example_51",
-          "Complementary_37_1",
-          "Complementary_62_1",
-          "Complementary_88_1",
-          "example_68",
-          "example_69",
-          "example_73",
-          "example_74",
-          "Complementary_12_1",
-          "example_83",
-          "example_89",
-          "mutual_error_18_1",
-          "Complementary_36_1",
-          "redundancy_10_1",
-          "example_94",
-          "redundancy_19_1",
-          "mutual_error_12_1",
-          "Complementary_95_1",
-          "example_111",
-          "redundancy_64_1",
-          "example_114",
-          "Complementary_82_1",
-          "Complementary_72_1",
-          "example_117",
-          "mutual_error_29_1",
-          "redundancy_13_1",
-          "redundancy_22_1",
-          "Complementary_5_1",
-          "example_131",
-          "example_132",
-          "Complementary_14_1",
-          "redundancy_46_1",
-          "redundancy_36_1",
-          "mutual_error_22_1",
-          "redundancy_29_1",
-          "Complementary_31_1",
-          "example_152",
-          "example_153",
-          "mutual_error_5_1",
-          "Complementary_15_1",
-          "example_162",
-          "Complementary_50_1",
-          "example_164",
-          "example_167",
-          "Complementary_24_1",
-          "example_171",
-          "example_172",
-          "Complementary_61_1",
-          "example_175",
-          "example_176",
-          "example_177",
-          "Complementary_4_1",
-          "redundancy_23_1",
-          "Complementary_83_1",
-          "example_181",
-          "example_182",
-          "example_185",
-          "example_188",
-          "mutual_error_19_1",
-          "example_193",
-          "example_194",
-          "Complementary_30_1",
-          "mutual_error_3_1",
-          "example_220",
-          "example_222",
-          "redundancy_65_1",
-          "redundancy_51_1",
-          "redundancy_31_1",
-          "Complementary_64_1",
-          "example_234",
-          "example_236",
-          "example_238",
-          "example_245",
-          "example_248",
-          "example_255",
-          "example_257",
-          "redundancy_4_1",
-          "Complementary_77_1",
-          "example_268",
-          "Complementary_8_1",
-          "redundancy_34_1",
-          "Complementary_92_1",
-          "Complementary_69_1",
-          "redundancy_39_1",
-          "redundancy_48_1",
-          "Complementary_0_1",
-          "Complementary_58_1",
-          "Complementary_6_1",
-          "Complementary_26_1",
-          "Complementary_2_1",
-          "example_304",
-          "mutual_error_16_1",
-          "example_320",
-          "example_322",
-          "example_324",
-          "Complementary_35_1",
-          "example_329",
-          "example_335",
-          "example_336",
-          "example_338",
-          "mutual_error_8_1",
-          "example_341",
-          "redundancy_14_1",
-          "example_349",
-          "Complementary_51_1",
-          "example_354",
-          "mutual_error_30_1",
-          "redundancy_7_1",
-          "example_364",
-          "mutual_error_15_1",
-          "Complementary_89_1",
-          "Complementary_87_1",
-          "mutual_error_6_1",
-          "mutual_error_7_1",
-          "Complementary_40_1",
-          "redundancy_32_1",
-          "redundancy_33_1",
-          "redundancy_17_1",
-          "example_395",
-          "Complementary_17_1",
-          "example_399",
-          "example_405",
-          "Complementary_97_1",
-          "Complementary_81_1",
-          "redundancy_26_1",
-          "example_412",
-          "example_416",
-          "redundancy_61_1",
-          "redundancy_49_1",
-          "example_426",
-          "example_431",
-          "Complementary_74_1",
-          "example_437",
-          "example_440",
-          "example_443",
-          "Complementary_42_1",
-          "example_445",
-          "Complementary_75_1",
-          "example_457",
-          "Complementary_44_1",
-          "Complementary_67_1",
-          "Complementary_55_1",
-          "redundancy_52_1",
-          "Complementary_46_1",
-          "Complementary_18_1",
-          "example_486",
-          "redundancy_55_1",
-          "redundancy_57_1",
-          "Complementary_22_1",
-          "example_495",
-          "Complementary_32_1",
-          "example_501",
-          "Complementary_52_1",
-          "example_506",
-          "redundancy_37_1",
-          "Complementary_3_1",
-          "example_515",
-          "example_517",
-          "example_519",
-          "mutual_error_28_1",
-          "redundancy_41_1",
-          "example_531",
-          "example_532",
-          "example_536",
-          "Complementary_43_1",
-          "Complementary_54_1",
-          "redundancy_43_1",
-          "mutual_error_4_1",
-          "example_557",
-          "example_559",
-          "example_567",
-          "example_568",
-          "mutual_error_26_1",
-          "example_579",
-          "redundancy_56_1",
-          "example_582",
-          "example_583",
-          "example_584",
-          "Complementary_70_1",
-          "mutual_error_27_1",
-          "Complementary_21_1",
-          "redundancy_28_1",
-          "example_601",
-          "example_604",
-          "example_606",
-          "mutual_error_11_1",
-          "mutual_error_9_1",
-          "Complementary_80_1",
-          "example_616",
-          "example_617",
-          "Complementary_90_1",
-          "redundancy_35_1",
-          "example_628",
-          "example_629",
-          "Complementary_11_1",
-          "example_633",
-          "example_636",
-          "example_638",
-          "example_653",
-          "example_655",
-          "example_656",
-          "example_657",
-          "redundancy_40_1",
-          "Complementary_20_1",
-          "example_665",
-          "example_666",
-          "example_667",
-          "redundancy_15_1",
-          "Complementary_10_1",
-          "mutual_error_13_1",
-          "example_673",
-          "example_675",
-          "redundancy_63_1",
-          "Complementary_53_1",
-          "redundancy_38_1",
-          "example_685",
-          "example_687",
-          "example_692",
-          "example_693",
-          "example_695",
-          "example_703",
-          "example_705",
-          "example_711",
-          "mutual_error_1_1",
-          "example_717",
-          "Complementary_29_1",
-          "example_722",
-          "example_730",
-          "example_731",
-          "example_732",
-          "example_734",
-          "mutual_error_20_1",
-          "redundancy_8_1",
-          "example_752",
-          "mutual_error_25_1",
-          "redundancy_45_1",
-          "example_755",
-          "example_756",
-          "Complementary_33_1",
-          "example_758",
-          "redundancy_47_1",
-          "example_770",
-          "mutual_error_24_1",
-          "example_785",
-          "example_789",
-          "Complementary_47_1",
-          "Complementary_91_1",
-          "example_803",
-          "Complementary_16_1",
-          "Complementary_59_1",
-          "example_816",
-          "example_817",
-          "example_820",
-          "example_822",
-          "example_827",
-          "redundancy_44_1",
-          "redundancy_12_1",
-          "Complementary_68_1",
-          "example_833",
-          "Complementary_84_1",
-          "Complementary_66_1",
-          "example_853",
-          "redundancy_27_1",
-          "Complementary_7_1",
-          "example_861",
-          "example_863",
-          "Complementary_23_1",
-          "example_865",
-          "Complementary_38_1",
-          "Complementary_79_1",
-          "example_884",
-          "Complementary_98_1",
-          "redundancy_58_1",
-          "Complementary_60_1",
-          "Complementary_93_1",
-          "mutual_error_17_1",
-          "example_902",
-          "Complementary_41_1",
-          "Complementary_45_1",
-          "mutual_error_14_1",
-          "Complementary_96_1",
-          "example_919",
-          "mutual_error_21_1",
-          "mutual_error_0_1",
-          "Complementary_78_1",
-          "Complementary_13_1",
-          "mutual_error_31_1",
-          "redundancy_24_1",
-          "example_941",
-          "example_949",
-          "Complementary_9_1",
-          "Complementary_39_1",
-          "redundancy_59_1",
-          "Complementary_34_1",
-          "Complementary_28_1",
-          "example_964",
-          "Complementary_86_1",
-          "example_966",
-          "redundancy_60_1",
-          "example_968",
-          "example_969",
-          "redundancy_18_1",
-          "Complementary_19_1",
-          "example_983",
-          "redundancy_53_1",
-          "example_989",
-          "Complementary_73_1",
-          "Complementary_94_1",
-          "Complementary_57_1",
-          "mutual_error_10_1",
-          "redundancy_21_1"
+          "666_l_1_m-0_1.99-1_0.33-2_0.2-3_0.74",
+          "667_l_1_m-0_0.73-1_0.02-2_0.57-3_0.01",
+          "668_l_1_m-0_0.33-1_0.26-2_0.04-3_0.02",
+          "669_l_1_m-0_0.1-1_0.21-2_0.43-3_0.35",
+          "670_l_1_m-0_1.23-1_0.02-2_0.07-3_0.71",
+          "671_l_1_m-0_0.5-1_0.01-2_0.27-3_0.4",
+          "672_l_1_c_0_1_3-0_0.9-1_0.03-2_0.32-3_0.76",
+          "673_l_1_c_0_1_3-0_0.06-1_0.0-2_0.63-3_0.51",
+          "674_l_1_c_0_1_3-0_0.23-1_0.15-2_0.13-3_0.53",
+          "675_l_1_c_0_1_3-0_0.41-1_0.13-2_0.83-3_0.46",
+          "676_l_1_c_0_1_3-0_0.21-1_0.17-2_0.82-3_0.27",
+          "677_l_1_c_0_1_3-0_0.06-1_0.04-2_0.76-3_0.08",
+          "678_l_1_c_0_1_3-0_0.07-1_0.09-2_0.94-3_1.04",
+          "679_l_1_c_0_1_3-0_0.19-1_0.32-2_0.15-3_0.2",
+          "680_l_1_c_0_1_3-0_0.45-1_0.49-2_1.48-3_1.57",
+          "681_l_1_c_0_1_3-0_0.33-1_0.03-2_0.37-3_0.26",
+          "682_l_1_c_0_1_3-0_0.42-1_0.21-2_0.74-3_0.19",
+          "683_l_1_c_0_1_3-0_0.85-1_0.3-2_0.73-3_0.37",
+          "684_l_1_c_0_1_3-0_1.19-1_0.07-2_0.19-3_0.54",
+          "685_l_1_c_0_1_3-0_0.03-1_0.28-2_0.79-3_1.74",
+          "686_l_1_c_0_1_3-0_0.17-1_0.22-2_0.07-3_0.32",
+          "687_l_1_c_0_2_3-0_0.09-1_0.19-2_0.1-3_1.54",
+          "688_l_1_c_0_1_3-0_0.61-1_0.16-2_0.89-3_0.22",
+          "689_l_1_c_0_2_3-0_0.1-1_1.03-2_0.43-3_1.17",
+          "690_l_1_c_0_1_3-0_0.82-1_0.1-2_0.66-3_0.96",
+          "691_l_1_c_0_2_3-0_0.25-1_0.59-2_0.58-3_0.08",
+          "692_l_1_c_0_1_3-0_0.57-1_0.16-2_1.43-3_0.48",
+          "693_l_1_c_0_2_3-0_0.61-1_0.21-2_0.03-3_1.04",
+          "694_l_1_c_0_1_3-0_0.26-1_0.23-2_0.28-3_0.09",
+          "695_l_1_c_0_2_3-0_0.38-1_0.52-2_0.11-3_0.27",
+          "696_l_1_c_0_1_3-0_0.05-1_0.47-2_0.51-3_0.22",
+          "697_l_1_c_0_2_3-0_0.59-1_0.36-2_0.15-3_1.88",
+          "698_l_1_c_0_1_3-0_0.18-1_0.54-2_0.38-3_0.4",
+          "699_l_1_c_0_2_3-0_0.05-1_0.51-2_0.19-3_0.62",
+          "700_l_1_c_0_1_3-0_0.5-1_0.31-2_0.04-3_0.2",
+          "701_l_1_c_0_2_3-0_0.04-1_0.45-2_0.09-3_0.05",
+          "702_l_1_c_0_1_3-0_0.96-1_0.12-2_0.16-3_0.05",
+          "703_l_1_c_0_2_3-0_0.45-1_0.18-2_0.21-3_0.45",
+          "704_l_1_c_0_1_3-0_0.88-1_0.64-2_0.08-3_0.69",
+          "705_l_1_c_0_2_3-0_0.32-1_0.15-2_0.14-3_0.39",
+          "706_l_1_c_0_1_3-0_0.09-1_0.28-2_0.03-3_0.29",
+          "707_l_1_c_0_2_3-0_0.3-1_0.73-2_0.3-3_0.01",
+          "708_l_1_c_0_1_3-0_0.05-1_0.48-2_0.37-3_0.14",
+          "709_l_1_c_0_2_3-0_0.54-1_1.23-2_0.03-3_0.45",
+          "710_l_1_c_0_1_3-0_0.13-1_0.12-2_0.65-3_0.06",
+          "711_l_1_c_0_2_3-0_0.28-1_0.2-2_0.6-3_0.52",
+          "712_l_1_c_0_1_3-0_0.33-1_0.22-2_0.84-3_0.22",
+          "713_l_1_c_0_2_3-0_0.08-1_0.24-2_0.3-3_0.62",
+          "714_l_1_c_0_1_3-0_0.18-1_0.16-2_0.63-3_0.17",
+          "715_l_1_c_0_2_3-0_0.43-1_0.5-2_0.33-3_0.77",
+          "716_l_1_c_0_1_3-0_0.66-1_0.29-2_0.68-3_0.47",
+          "717_l_1_c_0_2_3-0_0.07-1_0.36-2_0.23-3_0.14",
+          "718_l_1_c_0_1_3-0_0.06-1_0.14-2_0.98-3_1.51",
+          "719_l_1_c_0_2_3-0_1.38-1_0.12-2_0.2-3_0.06",
+          "720_l_1_c_0_1_3-0_0.51-1_0.02-2_0.18-3_1.12",
+          "721_l_1_c_0_2_3-0_0.24-1_0.14-2_0.05-3_0.31",
+          "722_l_1_c_0_1_3-0_0.15-1_0.47-2_0.73-3_0.43",
+          "723_l_1_c_0_2_3-0_0.02-1_0.17-2_0.05-3_0.41",
+          "724_l_1_c_0_1_3-0_0.3-1_0.27-2_0.77-3_0.79",
+          "725_l_1_c_0_2_3-0_1.1-1_0.61-2_0.07-3_0.54",
+          "726_l_1_c_0_1_3-0_0.31-1_0.01-2_0.11-3_0.08",
+          "727_l_1_c_0_2_3-0_0.06-1_0.12-2_0.02-3_0.16",
+          "728_l_1_c_0_1_3-0_0.09-1_0.03-2_0.02-3_0.74",
+          "729_l_1_c_0_2_3-0_0.47-1_0.3-2_0.09-3_0.97",
+          "730_l_1_c_0_1_3-0_0.49-1_0.12-2_0.57-3_0.09",
+          "731_l_1_c_0_2_3-0_1.35-1_0.11-2_0.39-3_0.23",
+          "732_l_1_c_0_1_3-0_0.32-1_0.05-2_0.58-3_0.25",
+          "733_l_1_c_0_2_3-0_0.12-1_0.63-2_0.19-3_0.3",
+          "734_l_1_c_0_1_3-0_0.42-1_0.05-2_0.5-3_1.44",
+          "735_l_1_c_0_2_3-0_0.16-1_0.67-2_0.08-3_0.14",
+          "736_l_1_c_0_1_3-0_0.05-1_0.13-2_0.29-3_0.17",
+          "737_l_1_c_0_2_3-0_0.36-1_0.26-2_0.02-3_0.34",
+          "738_l_1_c_0_1_3-0_0.42-1_0.03-2_0.17-3_0.01",
+          "739_l_1_c_0_2_3-0_0.86-1_0.12-2_0.14-3_1.11",
+          "740_l_1_c_0_1_3-0_0.42-1_0.11-2_0.27-3_0.41",
+          "741_l_1_c_0_2_3-0_0.31-1_0.61-2_0.03-3_0.73",
+          "742_l_1_c_0_1_3-0_0.42-1_0.01-2_0.74-3_0.53",
+          "743_l_1_c_0_2_3-0_0.14-1_0.35-2_0.43-3_0.33",
+          "744_l_1_c_0_1_3-0_0.84-1_0.07-2_0.52-3_0.69",
+          "745_l_1_c_0_2_3-0_0.42-1_0.01-2_0.0-3_0.65",
+          "746_l_1_c_0_1_3-0_0.25-1_0.09-2_1.24-3_0.41",
+          "747_l_1_c_0_2_3-0_0.55-1_1.38-2_0.23-3_0.43",
+          "748_l_1_c_0_1_3-0_2.0-1_0.43-2_0.95-3_1.49",
+          "749_l_1_c_0_2_3-0_0.22-1_0.11-2_0.08-3_0.33",
+          "750_l_1_c_0_1_3-0_0.57-1_0.5-2_0.18-3_0.17",
+          "751_l_1_c_0_2_3-0_0.2-1_0.82-2_0.15-3_0.44",
+          "752_l_1_c_0_1_3-0_0.42-1_0.24-2_0.1-3_1.67",
+          "753_l_1_c_0_2_3-0_0.85-1_0.37-2_0.08-3_0.11",
+          "754_l_1_c_0_1_3-0_0.08-1_0.11-2_0.38-3_0.67",
+          "755_l_1_c_0_2_3-0_0.1-1_0.57-2_0.03-3_1.05",
+          "756_l_1_c_0_1_3-0_0.15-1_0.46-2_0.2-3_1.4",
+          "757_l_1_c_0_2_3-0_0.42-1_0.27-2_0.08-3_0.9",
+          "758_l_1_c_0_1_3-0_1.26-1_0.09-2_0.15-3_0.38",
+          "759_l_1_c_0_2_3-0_0.34-1_0.39-2_0.23-3_1.08",
+          "760_l_1_c_0_1_3-0_0.07-1_0.28-2_0.19-3_0.07",
+          "761_l_1_c_0_2_3-0_0.89-1_0.37-2_0.04-3_0.31",
+          "762_l_1_c_0_1_3-0_0.02-1_0.01-2_1.11-3_0.43",
+          "763_l_1_c_0_2_3-0_0.01-1_0.5-2_0.42-3_0.67",
+          "764_l_1_c_0_1_3-0_0.1-1_0.14-2_0.23-3_0.33",
+          "765_l_1_c_0_2_3-0_0.3-1_0.09-2_0.17-3_0.59",
+          "766_l_1_c_0_1_3-0_1.21-1_0.29-2_0.32-3_0.22",
+          "767_l_1_c_0_2_3-0_1.47-1_0.11-2_0.2-3_0.63",
+          "768_l_1_c_0_1_3-0_0.18-1_0.29-2_0.07-3_0.17",
+          "769_l_1_c_0_2_3-0_0.65-1_0.16-2_0.42-3_0.01",
+          "770_l_1_c_0_1_3-0_0.11-1_0.27-2_0.78-3_0.0",
+          "771_l_1_c_0_2_3-0_0.63-1_1.02-2_0.21-3_0.01",
+          "772_l_1_c_0_1_3-0_1.06-1_0.76-2_1.05-3_0.47",
+          "773_l_1_c_0_2_3-0_0.37-1_0.08-2_0.55-3_1.53",
+          "774_l_1_c_0_1_3-0_0.37-1_0.23-2_0.79-3_0.08",
+          "775_l_1_c_0_2_3-0_1.42-1_0.32-2_0.17-3_0.31",
+          "776_l_1_c_0_1_3-0_0.07-1_0.21-2_0.57-3_0.23",
+          "777_l_1_c_0_2_3-0_0.07-1_0.1-2_0.26-3_0.2",
+          "778_l_1_c_0_1_3-0_1.0-1_0.41-2_0.09-3_0.44",
+          "779_l_1_c_0_2_3-0_0.64-1_1.02-2_0.58-3_0.96",
+          "780_l_1_c_0_1_3-0_0.92-1_0.34-2_1.19-3_0.12",
+          "781_l_1_c_0_2_3-0_0.51-1_0.11-2_0.16-3_0.15",
+          "782_l_1_c_0_1_3-0_0.18-1_0.6-2_0.45-3_0.12",
+          "783_l_1_c_0_2_3-0_0.31-1_0.51-2_0.19-3_1.44",
+          "784_l_1_c_0_1_3-0_0.37-1_0.47-2_1.04-3_0.24",
+          "785_l_1_c_0_2_3-0_0.38-1_0.95-2_0.3-3_0.48",
+          "786_l_1_c_0_1_3-0_0.17-1_0.17-2_0.25-3_0.11",
+          "787_l_1_c_0_2_3-0_0.1-1_0.72-2_0.24-3_0.5",
+          "788_l_1_c_0_1_3-0_1.06-1_0.23-2_0.59-3_0.0",
+          "789_l_1_c_0_2_3-0_0.05-1_0.73-2_0.3-3_1.62",
+          "790_l_1_c_0_1_3-0_0.67-1_0.44-2_0.23-3_1.13",
+          "791_l_1_c_0_2_3-0_0.05-1_0.06-2_0.61-3_0.13",
+          "792_l_1_c_0_1_3-0_0.18-1_0.07-2_0.55-3_1.37",
+          "793_l_1_c_0_2_3-0_0.36-1_0.02-2_0.45-3_0.91",
+          "794_l_1_c_0_1_3-0_1.08-1_0.28-2_0.68-3_0.37",
+          "795_l_1_c_0_2_3-0_0.52-1_0.38-2_0.16-3_0.11",
+          "796_l_1_c_0_1_3-0_0.41-1_0.03-2_0.71-3_0.33",
+          "797_l_1_c_0_2_3-0_0.2-1_0.02-2_0.38-3_0.04",
+          "798_l_1_c_0_1_3-0_1.01-1_0.0-2_0.86-3_1.02",
+          "799_l_1_c_0_2_3-0_0.37-1_0.14-2_0.8-3_0.0",
+          "800_l_1_c_0_1_3-0_0.25-1_0.17-2_0.1-3_0.91",
+          "801_l_1_c_0_2_3-0_0.24-1_0.03-2_0.44-3_1.34",
+          "802_l_1_c_0_1_3-0_0.18-1_0.01-2_0.64-3_1.06",
+          "803_l_1_c_0_2_3-0_0.21-1_0.18-2_0.27-3_0.42",
+          "804_l_1_c_0_1_3-0_0.14-1_0.27-2_0.01-3_0.07",
+          "805_l_1_c_0_2_3-0_0.36-1_0.42-2_0.14-3_0.91",
+          "806_l_1_c_0_1_3-0_0.22-1_0.04-2_0.1-3_0.25",
+          "807_l_1_c_0_2_3-0_0.43-1_0.94-2_0.47-3_0.47",
+          "808_l_1_c_1_2_3-0_1.39-1_0.45-2_0.18-3_0.46",
+          "809_l_1_c_0_1_3-0_0.13-1_0.33-2_0.86-3_0.73",
+          "810_l_1_c_0_2_3-0_0.62-1_0.45-2_0.74-3_0.75",
+          "811_l_1_c_1_2_3-0_1.31-1_0.07-2_0.64-3_0.39",
+          "812_l_1_c_0_1_3-0_0.29-1_0.13-2_0.36-3_0.67",
+          "813_l_1_c_0_2_3-0_0.53-1_0.49-2_0.27-3_0.21",
+          "814_l_1_c_1_2_3-0_0.38-1_0.04-2_0.12-3_0.41",
+          "815_l_1_c_0_1_3-0_0.4-1_0.04-2_0.05-3_0.61",
+          "816_l_1_c_0_2_3-0_0.02-1_0.44-2_0.33-3_0.37",
+          "817_l_1_c_1_2_3-0_1.07-1_0.28-2_0.03-3_0.9",
+          "818_l_1_c_0_1_3-0_0.77-1_0.45-2_0.74-3_0.3",
+          "819_l_1_c_0_2_3-0_1.61-1_0.25-2_0.2-3_0.06",
+          "820_l_1_c_1_2_3-0_1.2-1_0.14-2_0.29-3_0.65",
+          "821_l_1_c_0_1_3-0_0.31-1_0.18-2_0.62-3_0.24",
+          "822_l_1_c_0_2_3-0_0.47-1_0.22-2_0.56-3_0.38",
+          "823_l_1_c_1_2_3-0_0.51-1_0.23-2_0.24-3_0.66",
+          "824_l_1_c_0_1_3-0_0.87-1_0.35-2_0.18-3_0.43",
+          "825_l_1_c_0_2_3-0_1.51-1_0.28-2_0.65-3_0.48",
+          "826_l_1_c_1_2_3-0_1.72-1_0.47-2_0.4-3_0.11",
+          "827_l_1_c_0_1_3-0_0.76-1_0.06-2_0.04-3_0.9",
+          "828_l_1_c_0_2_3-0_0.44-1_0.74-2_0.07-3_1.12",
+          "829_l_1_c_1_2_3-0_0.53-1_0.22-2_0.15-3_0.29",
+          "830_l_1_c_0_1_3-0_0.07-1_0.23-2_0.21-3_0.06",
+          "831_l_1_c_0_2_3-0_0.39-1_1.29-2_0.26-3_0.24",
+          "832_l_1_c_1_2_3-0_0.64-1_0.39-2_0.41-3_0.07",
+          "833_l_1_c_0_1_3-0_0.07-1_0.27-2_0.06-3_0.64",
+          "834_l_1_c_0_2_3-0_1.1-1_0.55-2_0.14-3_0.15",
+          "835_l_1_c_1_2_3-0_0.07-1_0.11-2_0.12-3_0.77",
+          "836_l_1_c_0_1_3-0_0.83-1_0.57-2_0.36-3_0.88",
+          "837_l_1_c_0_2_3-0_0.83-1_0.06-2_0.09-3_0.36",
+          "838_l_1_c_1_2_3-0_0.21-1_0.55-2_0.01-3_0.49",
+          "839_l_1_c_0_1_3-0_0.28-1_0.54-2_0.54-3_0.22",
+          "840_l_1_c_0_2_3-0_0.36-1_0.2-2_0.18-3_0.36",
+          "841_l_1_c_1_2_3-0_0.33-1_0.04-2_0.09-3_0.22",
+          "842_l_1_c_0_1_3-0_0.48-1_0.1-2_0.59-3_0.72",
+          "843_l_1_c_0_2_3-0_0.59-1_0.58-2_0.18-3_1.01",
+          "844_l_1_c_1_2_3-0_0.38-1_0.18-2_0.06-3_0.18",
+          "845_l_1_c_0_1_3-0_0.31-1_0.14-2_0.08-3_0.18",
+          "846_l_1_c_0_2_3-0_0.53-1_0.04-2_0.33-3_0.15",
+          "847_l_1_c_1_2_3-0_0.09-1_0.32-2_0.03-3_1.69",
+          "848_l_1_c_0_1_3-0_0.03-1_0.18-2_0.86-3_0.91",
+          "849_l_1_c_0_2_3-0_0.09-1_0.19-2_0.4-3_0.52",
+          "850_l_1_c_1_2_3-0_1.42-1_0.08-2_0.39-3_0.34",
+          "851_l_1_c_0_1_3-0_0.58-1_0.11-2_0.13-3_0.82",
+          "852_l_1_c_0_2_3-0_0.04-1_0.14-2_0.28-3_0.04",
+          "853_l_1_c_1_2_3-0_0.77-1_0.69-2_0.18-3_0.03",
+          "854_l_1_c_0_1_3-0_1.39-1_0.07-2_0.17-3_0.19",
+          "855_l_1_c_0_2_3-0_0.04-1_0.13-2_0.44-3_0.07",
+          "856_l_1_c_1_2_3-0_2.19-1_0.03-2_0.01-3_0.19",
+          "857_l_1_c_0_1_3-0_0.38-1_0.01-2_0.32-3_0.37",
+          "858_l_1_c_0_2_3-0_0.37-1_0.18-2_0.6-3_0.58",
+          "859_l_1_c_1_2_3-0_0.1-1_0.11-2_0.6-3_0.26",
+          "860_l_1_c_0_1_3-0_0.4-1_0.01-2_0.42-3_0.08",
+          "861_l_1_c_0_2_3-0_0.18-1_0.54-2_0.11-3_0.24",
+          "862_l_1_c_1_2_3-0_0.75-1_0.33-2_0.2-3_0.83",
+          "863_l_1_c_0_1_3-0_0.6-1_0.06-2_0.97-3_0.17",
+          "864_l_1_c_0_2_3-0_0.19-1_0.49-2_0.37-3_0.17",
+          "865_l_1_c_1_2_3-0_0.18-1_0.16-2_0.01-3_0.37",
+          "866_l_1_c_0_1_3-0_0.18-1_0.23-2_0.39-3_0.36",
+          "867_l_1_c_0_2_3-0_0.96-1_0.79-2_0.14-3_0.09",
+          "868_l_1_c_1_2_3-0_0.59-1_0.04-2_0.27-3_0.74",
+          "869_l_1_c_0_1_3-0_0.03-1_0.08-2_0.54-3_0.03",
+          "870_l_1_c_0_2_3-0_0.45-1_0.05-2_0.15-3_0.24",
+          "871_l_1_c_1_2_3-0_0.66-1_0.09-2_0.24-3_0.08",
+          "872_l_1_c_0_1_3-0_1.55-1_0.18-2_0.17-3_0.35",
+          "873_l_1_c_0_2_3-0_0.58-1_0.96-2_0.17-3_0.22",
+          "874_l_1_c_1_2_3-0_0.37-1_0.63-2_0.42-3_0.31",
+          "875_l_1_c_0_1_3-0_1.03-1_0.01-2_0.43-3_0.81",
+          "876_l_1_c_0_2_3-0_0.03-1_0.21-2_0.29-3_1.09",
+          "877_l_1_c_1_2_3-0_1.24-1_0.07-2_0.05-3_1.51",
+          "878_l_1_c_0_1_3-0_0.28-1_0.26-2_0.92-3_0.44",
+          "879_l_1_c_0_2_3-0_0.12-1_0.23-2_0.37-3_0.53",
+          "880_l_1_c_1_2_3-0_0.44-1_0.52-2_0.35-3_0.07",
+          "881_l_1_c_0_1_3-0_0.37-1_0.19-2_0.34-3_0.51",
+          "882_l_1_c_0_2_3-0_0.46-1_0.35-2_0.36-3_0.0",
+          "883_l_1_c_1_2_3-0_0.56-1_0.04-2_0.22-3_0.18",
+          "884_l_1_c_0_1_3-0_0.9-1_0.1-2_0.01-3_0.57",
+          "885_l_1_c_0_2_3-0_0.1-1_0.99-2_0.03-3_0.78",
+          "886_l_1_c_1_2_3-0_0.77-1_0.15-2_0.16-3_0.17",
+          "887_l_1_c_0_1_3-0_0.06-1_0.09-2_0.82-3_0.1",
+          "888_l_1_c_0_2_3-0_0.64-1_0.69-2_0.0-3_0.67",
+          "889_l_1_c_1_2_3-0_0.67-1_0.12-2_0.25-3_0.61",
+          "890_l_1_c_0_1_3-0_0.31-1_0.07-2_0.64-3_0.16",
+          "891_l_1_c_0_2_3-0_1.06-1_1.63-2_0.27-3_0.53",
+          "892_l_1_c_1_2_3-0_2.27-1_0.26-2_0.25-3_0.39",
+          "893_l_1_c_0_1_3-0_0.81-1_0.43-2_0.08-3_1.09",
+          "894_l_1_c_0_2_3-0_0.05-1_0.3-2_0.14-3_0.52",
+          "895_l_1_c_1_2_3-0_1.6-1_0.16-2_0.13-3_0.06",
+          "896_l_1_c_0_1_3-0_0.62-1_0.07-2_0.02-3_0.26",
+          "897_l_1_c_0_2_3-0_0.46-1_0.77-2_0.17-3_0.21",
+          "898_l_1_c_1_2_3-0_1.35-1_0.03-2_0.62-3_1.39",
+          "899_l_1_c_0_1_3-0_0.85-1_0.04-2_0.32-3_0.73",
+          "900_l_1_c_0_2_3-0_0.7-1_0.31-2_0.0-3_0.08",
+          "901_l_1_c_1_2_3-0_1.13-1_0.2-2_0.27-3_0.73",
+          "902_l_1_c_0_1_3-0_0.47-1_0.14-2_0.02-3_0.28",
+          "903_l_1_c_0_2_3-0_0.59-1_0.33-2_0.45-3_0.29",
+          "904_l_1_c_1_2_3-0_1.03-1_0.62-2_0.47-3_0.1",
+          "905_l_1_c_0_1_3-0_0.19-1_0.19-2_1.36-3_0.23",
+          "906_l_1_c_0_2_3-0_0.61-1_0.01-2_0.08-3_0.92",
+          "907_l_1_c_1_2_3-0_0.87-1_0.38-2_0.11-3_0.05",
+          "908_l_1_c_0_1_3-0_0.76-1_0.2-2_0.05-3_0.08",
+          "909_l_1_c_0_2_3-0_0.22-1_0.26-2_0.17-3_0.48",
+          "910_l_1_c_1_2_3-0_0.19-1_0.08-2_0.05-3_1.63",
+          "911_l_1_c_0_1_3-0_0.29-1_0.04-2_0.68-3_0.36",
+          "912_l_1_c_0_2_3-0_0.18-1_0.26-2_0.5-3_0.52",
+          "913_l_1_c_1_2_3-0_0.01-1_0.32-2_0.67-3_0.08",
+          "914_l_1_c_0_1_3-0_0.35-1_0.13-2_0.74-3_0.68",
+          "915_l_1_c_0_2_3-0_0.07-1_0.27-2_0.16-3_0.52",
+          "916_l_1_c_1_2_3-0_0.24-1_0.26-2_0.09-3_0.2",
+          "917_l_1_c_0_1_3-0_0.36-1_0.46-2_0.14-3_0.58",
+          "918_l_1_c_0_2_3-0_0.99-1_0.73-2_0.65-3_0.03",
+          "919_l_1_c_1_2_3-0_0.66-1_0.17-2_0.21-3_0.65",
+          "920_l_1_c_0_1_3-0_0.1-1_0.34-2_0.13-3_0.52",
+          "921_l_1_c_0_2_3-0_0.7-1_0.21-2_0.19-3_0.72",
+          "922_l_1_c_1_2_3-0_0.28-1_0.19-2_0.13-3_0.04",
+          "923_l_1_c_0_1_3-0_0.12-1_0.04-2_0.84-3_0.39",
+          "924_l_1_c_0_2_3-0_1.07-1_0.16-2_0.09-3_0.05",
+          "925_l_1_c_1_2_3-0_0.88-1_0.17-2_0.48-3_1.61",
+          "926_l_1_c_0_1_3-0_0.99-1_0.12-2_1.32-3_0.07",
+          "927_l_1_c_0_2_3-0_0.2-1_0.22-2_0.19-3_0.04",
+          "928_l_1_c_1_2_3-0_1.84-1_0.33-2_0.08-3_0.35",
+          "929_l_1_c_0_1_3-0_0.08-1_0.11-2_0.04-3_0.17",
+          "930_l_1_c_2_3-0_1.09-1_0.6-2_0.17-3_1.01",
+          "931_l_1_c_3-0_0.25-1_0.11-2_0.27-3_0.36",
+          "932_l_1_c_3-0_0.65-1_1.06-2_0.38-3_1.03",
+          "933_l_1_r-0_1.79-1_0.14-2_0.5-3_1.46",
+          "934_l_1_r-0_0.48-1_0.47-2_0.33-3_0.68",
+          "935_l_1_r-0_0.52-1_0.67-2_0.59-3_0.96",
+          "936_l_1_r-0_1.43-1_0.68-2_0.03-3_0.49",
+          "937_l_1_r-0_1.01-1_0.59-2_0.53-3_0.19",
+          "938_l_1_r-0_0.11-1_0.71-2_0.32-3_0.88",
+          "939_l_1_r-0_0.48-1_0.81-2_0.49-3_0.82",
+          "940_l_1_r-0_0.44-1_1.08-2_0.54-3_1.36",
+          "941_l_1_r-0_1.97-1_0.41-2_0.41-3_2.38",
+          "942_l_1_r-0_0.18-1_0.25-2_0.08-3_0.25",
+          "943_l_1_r-0_0.13-1_0.49-2_0.69-3_0.63",
+          "944_l_1_r-0_0.63-1_0.9-2_0.2-3_0.77",
+          "945_l_1_r-0_1.38-1_0.69-2_0.62-3_0.06",
+          "946_l_1_r-0_1.43-1_0.83-2_0.24-3_1.68",
+          "947_l_1_r-0_0.25-1_1.21-2_1.05-3_1.34",
+          "948_l_1_r-0_0.21-1_0.31-2_1.09-3_1.14",
+          "949_l_1_r-0_0.75-1_0.63-2_0.27-3_0.18",
+          "950_l_1_r-0_1.44-1_0.2-2_0.19-3_0.15",
+          "951_l_1_r-0_0.52-1_0.38-2_1.31-3_1.84",
+          "952_l_1_r-0_0.06-1_0.5-2_0.04-3_0.37",
+          "953_l_1_r-0_2.36-1_0.12-2_0.5-3_1.04",
+          "954_l_1_r-0_0.28-1_0.18-2_0.71-3_0.85",
+          "955_l_1_r-0_2.23-1_0.29-2_0.43-3_0.06",
+          "956_l_1_r-0_0.08-1_0.04-2_0.09-3_0.83",
+          "957_l_1_r-0_0.09-1_0.61-2_0.48-3_1.32",
+          "958_l_1_r-0_2.86-1_0.06-2_1.06-3_0.73",
+          "959_l_1_r-0_1.02-1_0.58-2_0.51-3_0.85",
+          "960_l_1_r-0_0.73-1_0.4-2_0.47-3_0.54",
+          "961_l_1_r-0_0.12-1_0.62-2_1.04-3_0.51",
+          "962_l_1_r-0_0.74-1_0.06-2_0.52-3_0.04",
+          "963_l_1_r-0_1.11-1_0.05-2_0.21-3_0.34",
+          "964_l_1_r-0_0.36-1_0.31-2_1.11-3_1.7",
+          "965_l_1_r-0_1.17-1_0.45-2_0.63-3_1.24",
+          "966_l_1_r-0_0.51-1_0.56-2_0.39-3_0.31",
+          "967_l_1_r-0_0.16-1_0.51-2_0.45-3_1.67",
+          "968_l_1_r-0_0.23-1_0.22-2_1.08-3_0.77",
+          "969_l_1_r-0_0.49-1_0.86-2_0.3-3_1.6",
+          "970_l_1_r-0_1.5-1_0.76-2_0.17-3_0.56",
+          "971_l_1_r-0_0.47-1_0.89-2_0.14-3_0.01",
+          "972_l_1_r-0_0.93-1_0.4-2_0.83-3_1.14",
+          "973_l_1_r-0_0.05-1_0.76-2_0.63-3_0.66",
+          "974_l_1_r-0_0.29-1_0.61-2_0.27-3_2.31",
+          "975_l_1_r-0_0.03-1_0.31-2_0.36-3_1.13",
+          "976_l_1_r-0_0.45-1_0.47-2_0.08-3_0.55",
+          "977_l_1_r-0_0.41-1_0.67-2_0.95-3_0.25",
+          "978_l_1_r-0_0.4-1_0.43-2_0.72-3_0.93",
+          "979_l_1_r-0_2.44-1_0.16-2_1.07-3_1.24",
+          "980_l_1_r-0_1.82-1_1.23-2_1.28-3_0.79",
+          "981_l_1_r-0_0.52-1_0.32-2_0.38-3_0.54",
+          "982_l_1_r-0_0.13-1_0.09-2_0.1-3_1.07",
+          "983_l_1_r-0_1.02-1_0.26-2_0.25-3_0.66",
+          "984_l_1_r-0_0.07-1_0.4-2_0.8-3_2.37",
+          "985_l_1_r-0_2.1-1_0.28-2_0.33-3_1.39",
+          "986_l_1_r-0_0.08-1_0.62-2_0.87-3_1.56",
+          "987_l_1_r-0_0.5-1_0.21-2_0.38-3_0.77",
+          "988_l_1_r-0_0.35-1_0.9-2_0.76-3_0.09",
+          "989_l_1_r-0_0.35-1_0.79-2_0.64-3_0.19",
+          "990_l_1_r-0_1.96-1_0.37-2_0.59-3_0.9",
+          "991_l_1_r-0_0.39-1_0.26-2_0.55-3_1.64",
+          "992_l_1_r-0_1.41-1_0.77-2_0.94-3_2.11",
+          "993_l_1_r-0_0.02-1_0.33-2_0.54-3_0.31",
+          "994_l_1_r-0_0.19-1_0.29-2_1.49-3_0.44",
+          "995_l_1_r-0_0.32-1_0.52-2_0.62-3_1.61",
+          "996_l_1_r-0_0.67-1_1.58-2_0.17-3_1.19",
+          "997_l_1_r-0_2.06-1_0.3-2_0.19-3_0.22",
+          "998_l_1_r-0_0.12-1_0.9-2_1.05-3_1.46",
+          "999_l_1_r-0_1.59-1_0.3-2_0.59-3_1.73",
+          "1000_l_1_r-0_0.07-1_0.03-2_0.07-3_0.03",
+          "1001_l_1_r-0_1.01-1_0.02-2_0.47-3_0.42",
+          "1002_l_1_r-0_0.75-1_0.05-2_0.5-3_1.43",
+          "1003_l_1_r-0_0.82-1_0.13-2_0.09-3_1.08",
+          "1004_l_1_r-0_1.31-1_0.06-2_0.0-3_0.04",
+          "1005_l_1_r-0_0.9-1_1.08-2_0.55-3_0.44",
+          "1006_l_1_r-0_0.85-1_0.14-2_0.11-3_1.14",
+          "1007_l_1_r-0_0.86-1_0.95-2_0.13-3_0.58",
+          "1008_l_1_r-0_0.62-1_0.93-2_0.54-3_0.51",
+          "1009_l_1_r-0_0.04-1_0.05-2_0.72-3_0.63",
+          "1010_l_1_r-0_1.11-1_0.41-2_0.75-3_1.04",
+          "1011_l_1_r-0_0.94-1_0.29-2_1.06-3_2.42",
+          "1012_l_1_r-0_1.19-1_0.25-2_0.12-3_1.26",
+          "1013_l_1_r-0_0.05-1_0.26-2_0.09-3_0.03",
+          "1014_l_1_r-0_0.87-1_0.34-2_0.13-3_0.8",
+          "1015_l_1_r-0_0.44-1_0.48-2_0.23-3_0.42",
+          "1016_l_1_r-0_1.3-1_0.51-2_0.65-3_0.06",
+          "1017_l_1_r-0_1.52-1_0.44-2_0.7-3_1.62",
+          "1018_l_1_r-0_0.24-1_0.89-2_0.21-3_0.24",
+          "1019_l_1_r-0_0.38-1_0.79-2_0.03-3_0.33",
+          "1020_l_1_r-0_1.43-1_0.38-2_0.78-3_1.07",
+          "1021_l_1_r-0_0.54-1_0.74-2_0.49-3_1.02",
+          "1022_l_1_r-0_0.03-1_0.2-2_0.32-3_0.85",
+          "1023_l_1_r-0_0.85-1_0.87-2_0.57-3_0.83",
+          "1024_l_1_r-0_1.54-1_0.16-2_0.62-3_0.56",
+          "1025_l_1_r-0_0.97-1_0.3-2_0.3-3_0.19",
+          "1026_l_1_r-0_0.61-1_0.01-2_0.33-3_1.38",
+          "1027_l_1_r-0_1.47-1_0.4-2_0.45-3_0.55",
+          "1028_l_1_r-0_0.91-1_0.25-2_1.09-3_0.4",
+          "1029_l_1_r-0_0.08-1_0.31-2_0.39-3_0.14",
+          "1030_l_1_r-0_0.14-1_1.01-2_0.17-3_1.14",
+          "1031_l_1_r-0_1.1-1_0.15-2_1.05-3_1.45",
+          "1032_l_1_r-0_0.84-1_0.63-2_0.75-3_2.04",
+          "1033_l_1_r-0_0.59-1_1.06-2_1.15-3_1.05",
+          "1034_l_1_r-0_1.36-1_0.01-2_0.49-3_1.12",
+          "1035_l_1_r-0_0.08-1_0.22-2_0.98-3_0.57",
+          "1036_l_1_r-0_1.51-1_0.23-2_0.15-3_0.73",
+          "1037_l_1_r-0_0.55-1_1.36-2_0.23-3_1.2",
+          "1038_l_1_r-0_1.27-1_1.25-2_0.1-3_0.22",
+          "1039_l_1_r-0_1.42-1_0.37-2_0.34-3_0.75",
+          "1040_l_1_r-0_0.87-1_0.13-2_0.34-3_0.21",
+          "1041_l_1_r-0_2.2-1_0.18-2_0.12-3_0.75",
+          "1042_l_1_r-0_0.22-1_0.51-2_1.14-3_0.98",
+          "1043_l_1_r-0_0.4-1_0.44-2_0.74-3_0.86",
+          "1044_l_1_r-0_0.02-1_0.19-2_0.59-3_0.54",
+          "1045_l_1_r-0_0.12-1_0.79-2_0.26-3_0.34",
+          "1046_l_1_r-0_1.03-1_0.2-2_0.16-3_0.4",
+          "1047_l_1_r-0_0.13-1_0.11-2_0.92-3_0.96",
+          "1048_l_1_r-0_0.42-1_0.95-2_0.75-3_0.04",
+          "1049_l_1_r-0_0.58-1_0.45-2_0.29-3_1.65",
+          "1050_l_1_r-0_2.4-1_0.03-2_0.26-3_1.39",
+          "1051_l_1_r-0_0.92-1_0.38-2_0.92-3_0.08",
+          "1052_l_1_r-0_1.67-1_0.23-2_0.23-3_0.39",
+          "1053_l_1_r-0_1.22-1_0.02-2_0.23-3_0.44",
+          "1054_l_1_r-0_0.62-1_0.75-2_0.17-3_0.94",
+          "1055_l_1_r-0_0.45-1_0.17-2_0.12-3_2.21",
+          "1056_l_1_r-0_0.3-1_0.55-2_1.4-3_0.51",
+          "1057_l_1_r-0_1.12-1_1.48-2_0.35-3_0.28",
+          "1058_l_1_r-0_1.97-1_0.59-2_0.38-3_1.2",
+          "1059_l_1_r-0_0.37-1_1.12-2_0.12-3_0.14",
+          "1060_l_1_r-0_0.12-1_0.51-2_0.24-3_0.06",
+          "1061_l_1_r-0_1.24-1_0.31-2_0.83-3_0.54",
+          "1062_l_1_r-0_0.49-1_0.28-2_0.2-3_1.13",
+          "1063_l_1_r-0_0.24-1_0.21-2_0.08-3_0.05",
+          "1064_l_1_r-0_0.24-1_1.12-2_0.71-3_0.75",
+          "1065_l_1_r-0_0.89-1_1.83-2_0.58-3_0.71",
+          "1066_l_1_r-0_0.13-1_1.62-2_0.33-3_1.38",
+          "1067_l_1_r-0_0.57-1_0.43-2_0.48-3_0.09",
+          "1068_l_1_r-0_0.35-1_0.56-2_0.58-3_0.38",
+          "1069_l_1_r-0_1.73-1_0.77-2_0.46-3_0.31",
+          "1070_l_1_r-0_2.03-1_0.03-2_0.45-3_0.32",
+          "1071_l_1_r-0_0.4-1_0.39-2_0.93-3_0.89",
+          "1072_l_1_r-0_0.43-1_0.45-2_0.43-3_1.75",
+          "1073_l_1_r-0_0.22-1_0.41-2_0.35-3_0.9",
+          "1074_l_1_r-0_0.37-1_0.39-2_0.81-3_1.36",
+          "1075_l_1_r-0_0.2-1_0.02-2_0.07-3_0.97",
+          "1076_l_1_r-0_0.56-1_0.19-2_0.58-3_0.75",
+          "1077_l_1_r-0_1.2-1_0.11-2_0.09-3_0.1",
+          "1078_l_1_r-0_0.05-1_0.31-2_0.17-3_1.33",
+          "1079_l_1_r-0_0.6-1_0.15-2_0.18-3_1.34",
+          "1080_l_1_r-0_1.08-1_0.92-2_0.38-3_1.29",
+          "1081_l_1_r-0_1.21-1_0.61-2_0.38-3_0.54",
+          "1082_l_1_r-0_0.07-1_0.08-2_0.06-3_0.03",
+          "1083_l_1_r-0_0.93-1_0.13-2_0.05-3_1.21",
+          "1084_l_1_r-0_0.49-1_0.13-2_0.43-3_0.66",
+          "1085_l_1_r-0_0.72-1_0.85-2_0.68-3_1.87",
+          "1086_l_1_r-0_1.02-1_0.16-2_0.14-3_0.78",
+          "1087_l_1_r-0_2.57-1_0.77-2_0.18-3_1.09",
+          "1088_l_1_r-0_0.63-1_0.58-2_0.18-3_1.53",
+          "1089_l_1_r-0_0.37-1_0.34-2_1.12-3_0.27",
+          "1090_l_1_r-0_0.35-1_0.07-2_0.85-3_0.72",
+          "1091_l_1_r-0_1.02-1_0.4-2_0.51-3_1.21",
+          "1092_l_1_r-0_3.07-1_0.65-2_0.61-3_0.57",
+          "1093_l_1_r-0_0.57-1_0.65-2_0.45-3_0.47",
+          "1094_l_1_r-0_0.77-1_0.19-2_0.48-3_0.51",
+          "1095_l_1_r-0_1.08-1_0.83-2_1.14-3_0.52",
+          "1096_l_1_r-0_0.37-1_0.35-2_0.39-3_1.67",
+          "1097_l_1_r-0_0.16-1_0.27-2_0.16-3_0.8",
+          "1098_l_1_r-0_2.15-1_0.71-2_0.61-3_0.37",
+          "1099_l_1_r-0_0.3-1_0.3-2_0.69-3_1.23",
+          "1100_l_1_r-0_0.17-1_0.1-2_0.35-3_0.22",
+          "1101_l_1_r-0_0.57-1_0.13-2_0.25-3_0.7",
+          "1102_l_1_r-0_0.65-1_0.09-2_0.37-3_0.9",
+          "1103_l_1_r-0_0.18-1_0.64-2_0.12-3_2.11",
+          "1104_l_1_r-0_0.79-1_0.39-2_0.28-3_2.63",
+          "1105_l_1_r-0_0.28-1_0.36-2_0.26-3_2.6",
+          "1106_l_1_r-0_0.63-1_0.02-2_0.59-3_0.45",
+          "1107_l_1_r-0_1.3-1_0.33-2_0.35-3_0.42",
+          "1108_l_1_r-0_1.64-1_0.67-2_0.96-3_0.37",
+          "1109_l_1_r-0_0.02-1_0.18-2_1.05-3_0.74",
+          "1110_l_1_r-0_0.55-1_0.02-2_0.62-3_0.93",
+          "1111_l_1_r-0_0.4-1_0.7-2_0.63-3_1.21",
+          "1112_l_1_r-0_1.37-1_0.15-2_0.6-3_0.17",
+          "1113_l_1_r-0_2.07-1_0.62-2_0.92-3_0.59",
+          "1114_l_1_r-0_0.54-1_0.3-2_0.53-3_1.18",
+          "1115_l_1_r-0_1.42-1_0.34-2_0.59-3_0.2",
+          "1116_l_1_r-0_0.58-1_0.64-2_1.17-3_2.24",
+          "1117_l_1_r-0_0.32-1_0.62-2_0.27-3_0.15",
+          "1118_l_1_r-0_0.76-1_0.87-2_0.46-3_0.13",
+          "1119_l_1_r-0_0.62-1_0.1-2_0.06-3_0.55",
+          "1120_l_1_r-0_0.97-1_0.86-2_0.13-3_0.26",
+          "1121_l_1_r-0_1.53-1_0.85-2_0.02-3_1.53",
+          "1122_l_1_r-0_0.1-1_0.38-2_0.62-3_0.82",
+          "1123_l_1_r-0_0.78-1_0.73-2_0.51-3_0.48",
+          "1124_l_1_r-0_0.23-1_0.8-2_0.1-3_2.14",
+          "1125_l_1_r-0_0.44-1_0.26-2_0.4-3_0.35",
+          "1126_l_1_r-0_1.38-1_1.22-2_0.02-3_0.23",
+          "1127_l_1_r-0_1.06-1_1.03-2_0.2-3_0.31",
+          "1128_l_1_r-0_1.35-1_0.68-2_0.03-3_1.03",
+          "1129_l_1_r-0_0.35-1_0.92-2_0.98-3_0.25",
+          "1130_l_1_r-0_1.81-1_0.41-2_0.77-3_0.84",
+          "1131_l_1_r-0_0.78-1_0.57-2_0.38-3_0.8",
+          "1132_l_1_r-0_0.69-1_1.51-2_0.38-3_0.49",
+          "1133_l_1_r-0_0.08-1_0.7-2_0.76-3_0.2",
+          "1134_l_1_r-0_1.14-1_0.42-2_0.58-3_0.66",
+          "1135_l_1_r-0_0.22-1_0.01-2_0.81-3_2.49",
+          "1136_l_1_r-0_0.96-1_1.14-2_0.58-3_0.3",
+          "1137_l_1_r-0_0.45-1_0.17-2_0.74-3_0.9",
+          "1138_l_1_r-0_0.58-1_0.2-2_1.39-3_0.09",
+          "1139_l_1_r-0_0.03-1_0.44-2_0.0-3_2.16",
+          "1140_l_1_r-0_0.65-1_0.91-2_0.25-3_0.93",
+          "1141_l_1_r-0_0.26-1_0.95-2_0.57-3_1.86",
+          "1142_l_1_r-0_1.5-1_0.02-2_0.22-3_0.47",
+          "1143_l_1_r-0_0.88-1_0.16-2_0.33-3_0.54",
+          "1144_l_1_r-0_0.37-1_1.12-2_0.44-3_0.13",
+          "1145_l_1_r-0_0.71-1_0.53-2_0.47-3_0.2",
+          "1146_l_1_r-0_0.89-1_0.93-2_1.08-3_1.36",
+          "1147_l_1_r-0_0.22-1_0.06-2_0.6-3_0.65",
+          "1148_l_1_r-0_0.95-1_1.12-2_0.78-3_0.43",
+          "1149_l_1_r-0_0.45-1_0.33-2_0.21-3_0.49",
+          "1150_l_1_r-0_0.95-1_0.44-2_0.29-3_0.79",
+          "1151_l_1_r-0_0.21-1_0.69-2_0.13-3_2.13",
+          "1152_l_1_r-0_0.84-1_0.26-2_0.02-3_0.24",
+          "1153_l_1_r-0_0.37-1_0.29-2_0.77-3_1.31",
+          "1154_l_1_r-0_1.2-1_0.12-2_0.13-3_0.28",
+          "1155_l_1_r-0_1.66-1_0.9-2_0.59-3_1.88",
+          "1156_l_1_r-0_1.41-1_0.55-2_0.03-3_0.62",
+          "1157_l_1_r-0_0.29-1_0.79-2_0.88-3_1.55",
+          "1158_l_1_r-0_0.44-1_0.09-2_0.53-3_0.35",
+          "1159_l_1_r-0_2.17-1_0.1-2_0.99-3_1.97",
+          "1160_l_1_r-0_0.26-1_0.55-2_0.27-3_1.05",
+          "1161_l_1_r-0_1.16-1_0.41-2_0.91-3_1.0",
+          "1162_l_1_r-0_0.65-1_0.49-2_1.04-3_1.09",
+          "1163_l_1_r-0_0.07-1_0.63-2_0.86-3_0.02",
+          "1164_l_1_r-0_1.47-1_1.07-2_0.32-3_0.75",
+          "1165_l_1_r-0_1.1-1_0.28-2_0.65-3_0.3",
+          "1166_l_1_r-0_1.14-1_0.76-2_0.78-3_0.86",
+          "1167_l_1_r-0_1.8-1_0.24-2_0.05-3_0.49",
+          "1168_l_1_r-0_0.52-1_0.17-2_0.27-3_0.26",
+          "1169_l_1_r-0_1.24-1_0.6-2_0.25-3_0.73",
+          "1170_l_1_r-0_0.81-1_0.88-2_0.37-3_1.23",
+          "1171_l_1_r-0_2.15-1_0.71-2_0.59-3_0.1",
+          "1172_l_1_r-0_0.28-1_0.03-2_0.9-3_1.37",
+          "1173_l_1_r-0_2.02-1_0.65-2_0.95-3_1.95",
+          "1174_l_1_r-0_1.05-1_0.64-2_0.53-3_2.49",
+          "1175_l_1_r-0_0.7-1_0.2-2_0.22-3_0.01",
+          "1176_l_1_r-0_2.01-1_0.74-2_0.37-3_0.44",
+          "1177_l_1_r-0_0.73-1_0.91-2_0.97-3_1.77",
+          "1178_l_1_r-0_1.26-1_0.61-2_0.91-3_1.47",
+          "1179_l_1_r-0_1.23-1_0.16-2_0.15-3_2.8",
+          "1180_l_1_r-0_0.5-1_0.79-2_0.32-3_0.79",
+          "1181_l_1_r-0_1.39-1_0.56-2_0.63-3_0.97",
+          "1182_l_1_r-0_0.6-1_0.3-2_1.42-3_0.24",
+          "1183_l_1_r-0_1.23-1_0.14-2_0.07-3_0.88",
+          "1184_l_1_r-0_0.45-1_0.12-2_0.31-3_0.3",
+          "1185_l_1_r-0_0.42-1_1.16-2_0.4-3_1.73",
+          "1186_l_1_r-0_0.89-1_0.17-2_0.78-3_1.79",
+          "1187_l_1_r-0_0.23-1_0.19-2_0.28-3_1.26",
+          "1188_l_1_r-0_0.78-1_0.36-2_0.1-3_1.5",
+          "1189_l_1_r-0_0.44-1_0.25-2_1.26-3_1.08",
+          "1190_l_1_r-0_0.17-1_0.03-2_0.99-3_0.21",
+          "1191_l_1_r-0_1.24-1_0.52-2_0.15-3_0.77",
+          "1192_l_1_r-0_1.12-1_0.3-2_0.97-3_0.46",
+          "1193_l_1_r-0_0.71-1_0.14-2_0.38-3_1.75",
+          "1194_l_1_r-0_0.3-1_0.49-2_0.69-3_0.32",
+          "1195_l_1_r-0_1.08-1_0.91-2_0.05-3_0.52",
+          "1196_l_1_r-0_0.52-1_0.7-2_0.05-3_1.14",
+          "1197_l_1_r-0_1.13-1_0.06-2_0.3-3_0.69",
+          "1198_l_1_r-0_1.91-1_0.28-2_0.25-3_1.67",
+          "1199_l_1_r-0_1.68-1_0.9-2_0.98-3_0.45",
+          "1200_l_1_r-0_0.1-1_0.38-2_1.32-3_0.63",
+          "1201_l_1_r-0_0.5-1_0.17-2_0.44-3_0.95",
+          "1202_l_1_r-0_0.33-1_0.92-2_0.7-3_1.36",
+          "1203_l_1_r-0_0.81-1_0.22-2_0.47-3_1.68",
+          "1204_l_1_r-0_0.59-1_0.7-2_0.67-3_0.88",
+          "1205_l_1_r-0_0.65-1_0.09-2_0.19-3_0.97",
+          "1206_l_1_r-0_1.22-1_0.14-2_0.24-3_1.64",
+          "1207_l_1_r-0_0.72-1_0.53-2_0.46-3_0.84",
+          "1208_l_1_r-0_0.01-1_0.25-2_0.06-3_0.48",
+          "1209_l_1_r-0_0.21-1_0.37-2_0.28-3_0.14",
+          "1210_l_1_r-0_1.79-1_0.15-2_0.09-3_1.37",
+          "1211_l_1_r-0_1.67-1_1.03-2_0.12-3_0.15",
+          "1212_l_1_r-0_0.0-1_0.2-2_0.43-3_0.18",
+          "1213_l_1_r-0_1.07-1_0.22-2_0.61-3_1.43",
+          "1214_l_1_r-0_1.07-1_0.2-2_0.15-3_0.69",
+          "1215_l_1_r-0_0.26-1_0.2-2_0.84-3_0.87",
+          "1216_l_1_r-0_0.08-1_0.31-2_0.21-3_2.2",
+          "1217_l_1_r-0_1.09-1_0.05-2_1.56-3_2.26",
+          "1218_l_1_r-0_0.21-1_1.37-2_0.34-3_0.27",
+          "1219_l_1_r-0_3.37-1_0.56-2_0.08-3_0.15",
+          "1220_l_1_r-0_0.54-1_0.84-2_0.35-3_0.15",
+          "1221_l_1_r-0_0.23-1_0.52-2_0.27-3_1.98",
+          "1222_l_1_r-0_0.3-1_0.74-2_0.08-3_0.17",
+          "1223_l_1_r-0_0.76-1_0.22-2_0.69-3_1.83",
+          "1224_l_1_r-0_0.55-1_0.96-2_0.11-3_1.54",
+          "1225_l_1_r-0_0.15-1_0.35-2_0.94-3_1.23",
+          "1226_l_1_r-0_1.56-1_1.06-2_0.05-3_0.24",
+          "1227_l_1_r-0_0.09-1_0.46-2_0.12-3_0.07",
+          "1228_l_1_r-0_1.04-1_1.13-2_0.28-3_0.69",
+          "1229_l_1_r-0_0.87-1_0.13-2_0.05-3_1.48",
+          "1230_l_1_r-0_0.03-1_1.38-2_1.01-3_0.18",
+          "1231_l_1_r-0_0.61-1_0.16-2_0.51-3_0.72",
+          "1232_l_1_r-0_0.62-1_0.18-2_0.27-3_0.19",
+          "1233_l_1_r-0_0.28-1_0.07-2_0.74-3_0.25",
+          "1234_l_1_r-0_1.13-1_1.22-2_1.09-3_0.47",
+          "1235_l_1_r-0_0.14-1_0.02-2_0.06-3_0.77",
+          "1236_l_1_r-0_0.86-1_0.62-2_0.96-3_1.19",
+          "1237_l_1_r-0_1.0-1_0.2-2_0.18-3_1.08",
+          "1238_l_1_r-0_0.76-1_0.44-2_0.6-3_0.57",
+          "1239_l_1_r-0_0.52-1_0.19-2_0.25-3_0.59",
+          "1240_l_1_r-0_2.26-1_0.02-2_0.35-3_1.32",
+          "1241_l_1_r-0_0.93-1_0.06-2_0.34-3_0.42",
+          "1242_l_1_r-0_2.52-1_0.59-2_0.12-3_0.44",
+          "1243_l_1_r-0_0.74-1_0.09-2_0.16-3_0.46",
+          "1244_l_1_r-0_0.26-1_1.14-2_0.79-3_0.09",
+          "1245_l_1_r-0_0.52-1_0.33-2_0.08-3_1.8",
+          "1246_l_1_r-0_0.48-1_0.14-2_0.99-3_1.23",
+          "1247_l_1_r-0_0.42-1_0.57-2_1.02-3_1.36",
+          "1248_l_1_r-0_0.11-1_0.2-2_0.1-3_0.9",
+          "1249_l_1_r-0_0.55-1_1.0-2_0.92-3_0.05",
+          "1250_l_1_r-0_0.86-1_0.28-2_0.21-3_0.22",
+          "1251_l_1_r-0_0.5-1_0.39-2_0.75-3_1.4",
+          "1252_l_1_r-0_0.77-1_0.23-2_0.71-3_0.22",
+          "1253_l_1_r-0_0.96-1_0.26-2_0.56-3_0.36",
+          "1254_l_1_r-0_0.56-1_0.24-2_0.13-3_1.43",
+          "1255_l_1_r-0_0.16-1_0.61-2_0.15-3_1.24",
+          "1256_l_1_r-0_0.86-1_0.2-2_0.42-3_0.66",
+          "1257_l_1_r-0_0.09-1_1.09-2_0.75-3_1.99",
+          "1258_l_1_r-0_0.71-1_0.07-2_0.08-3_0.12",
+          "1259_l_1_r-0_0.02-1_1.14-2_0.59-3_2.0",
+          "1260_l_1_r-0_1.23-1_0.73-2_0.42-3_0.76",
+          "1261_l_1_r-0_0.35-1_0.38-2_0.66-3_0.04",
+          "1262_l_1_r-0_0.48-1_0.67-2_0.25-3_1.48",
+          "1263_l_1_r-0_2.08-1_0.17-2_0.28-3_0.03",
+          "1264_l_1_r-0_0.25-1_0.15-2_0.03-3_0.36",
+          "1265_l_1_r-0_0.05-1_0.1-2_0.89-3_1.69",
+          "1266_l_1_r-0_2.61-1_0.08-2_0.12-3_1.16",
+          "1267_l_1_r-0_0.79-1_0.63-2_0.84-3_0.57",
+          "1268_l_1_r-0_0.46-1_0.14-2_0.24-3_0.74",
+          "1269_l_1_r-0_0.46-1_0.25-2_0.32-3_0.25",
+          "1270_l_1_r-0_1.02-1_1.66-2_0.17-3_0.63",
+          "1271_l_1_r-0_1.89-1_0.66-2_0.42-3_0.04",
+          "1272_l_1_r-0_0.56-1_0.35-2_1.76-3_0.09",
+          "1273_l_1_r-0_0.79-1_0.43-2_0.16-3_1.49",
+          "1274_l_1_r-0_1.3-1_0.25-2_0.67-3_0.9",
+          "1275_l_1_r-0_0.59-1_0.16-2_0.87-3_0.93",
+          "1276_l_1_r-0_0.05-1_0.16-2_0.84-3_1.93",
+          "1277_l_1_r-0_0.02-1_0.06-2_0.57-3_1.63",
+          "1278_l_1_r-0_1.34-1_0.08-2_0.42-3_0.73",
+          "1279_l_1_r-0_1.39-1_0.57-2_0.22-3_1.83",
+          "1280_l_1_r-0_0.66-1_0.26-2_0.24-3_0.75",
+          "1281_l_1_r-0_0.06-1_0.8-2_0.34-3_0.96",
+          "1282_l_1_r-0_0.39-1_0.42-2_0.27-3_0.32",
+          "1283_l_1_r-0_0.52-1_0.14-2_1.03-3_0.19",
+          "1284_l_1_r-0_0.08-1_0.09-2_0.79-3_0.95",
+          "1285_l_1_r-0_0.98-1_0.99-2_0.48-3_0.29",
+          "1286_l_1_r-0_0.16-1_0.38-2_0.63-3_0.29",
+          "1287_l_1_r-0_0.52-1_0.45-2_0.03-3_0.71",
+          "1288_l_1_r-0_1.23-1_1.0-2_0.02-3_0.6",
+          "1289_l_1_r-0_0.01-1_0.87-2_0.41-3_0.13",
+          "1290_l_1_r-0_0.82-1_1.11-2_0.69-3_0.13",
+          "1291_l_1_r-0_0.79-1_0.93-2_0.1-3_0.49",
+          "1292_l_1_r-0_0.74-1_1.43-2_0.86-3_1.0",
+          "1293_l_1_r-0_0.44-1_0.07-2_0.26-3_0.11",
+          "1294_l_1_r-0_1.23-1_0.63-2_0.69-3_0.71",
+          "1295_l_1_r-0_0.28-1_0.09-2_0.61-3_1.94",
+          "1296_l_1_r-0_0.09-1_0.12-2_0.87-3_1.4",
+          "1297_l_1_r-0_0.93-1_0.04-2_0.06-3_0.52",
+          "1298_l_1_r-0_1.73-1_0.04-2_0.69-3_0.26",
+          "1299_l_1_r-0_0.53-1_0.36-2_0.66-3_1.2",
+          "1300_l_1_r-0_0.67-1_0.37-2_0.98-3_0.69",
+          "1301_l_1_r-0_0.54-1_0.33-2_0.77-3_0.53",
+          "1302_l_1_r-0_1.06-1_0.73-2_0.51-3_0.32",
+          "1303_l_1_r-0_0.13-1_0.12-2_0.48-3_0.39",
+          "1304_l_1_r-0_0.36-1_0.11-2_0.11-3_0.21",
+          "1305_l_1_r-0_0.51-1_1.22-2_1.43-3_0.44",
+          "1306_l_1_r-0_0.43-1_0.26-2_0.44-3_0.0",
+          "1307_l_1_r-0_1.72-1_0.03-2_0.02-3_1.3",
+          "1308_l_1_r-0_1.28-1_0.4-2_0.16-3_1.94",
+          "1309_l_1_r-0_1.33-1_0.13-2_0.93-3_0.71",
+          "1310_l_1_r-0_0.61-1_0.54-2_0.59-3_1.22",
+          "1311_l_1_r-0_0.1-1_0.39-2_0.49-3_0.03",
+          "1312_l_1_r-0_0.03-1_0.41-2_0.32-3_1.69",
+          "1313_l_1_r-0_0.42-1_0.73-2_0.12-3_2.04",
+          "1314_l_1_r-0_0.19-1_0.53-2_0.02-3_0.71",
+          "1315_l_1_r-0_0.13-1_0.65-2_0.23-3_0.97",
+          "1316_l_1_r-0_0.41-1_0.81-2_0.49-3_1.85",
+          "1317_l_1_r-0_1.76-1_1.08-2_0.21-3_0.72",
+          "1318_l_1_r-0_1.07-1_0.01-2_0.28-3_0.5",
+          "1319_l_1_r-0_0.98-1_1.38-2_0.63-3_0.85",
+          "1320_l_1_r-0_1.18-1_0.06-2_0.66-3_0.59",
+          "1321_l_1_r-0_0.14-1_0.19-2_0.72-3_1.24",
+          "1322_l_1_r-0_1.03-1_1.2-2_0.44-3_0.47",
+          "1323_l_1_r-0_0.66-1_0.56-2_0.24-3_1.18",
+          "1324_l_1_r-0_0.19-1_0.27-2_0.33-3_0.0",
+          "1325_l_1_r-0_1.62-1_0.43-2_0.53-3_0.72",
+          "1326_l_1_r-0_1.21-1_1.13-2_0.34-3_0.58",
+          "1327_l_1_r-0_0.44-1_0.13-2_0.85-3_0.72",
+          "1328_l_1_r-0_0.18-1_0.5-2_0.7-3_0.02",
+          "1329_l_1_r-0_0.21-1_1.55-2_0.12-3_0.14",
+          "1330_l_1_r-0_0.34-1_0.64-2_0.24-3_1.14",
+          "1331_l_1_r-0_0.14-1_0.52-2_0.6-3_0.41"
          ],
          "type": "scatter3d",
          "x": [
-          -4.262739460086965,
-          2.763997674718625,
-          -2.119829501624006,
-          -0.1799842881420453,
-          -1.4458557008745154,
-          -0.7323630640069143,
-          -0.3199121587299715,
-          -3.2963577741372805,
-          -8.09580422641319,
-          -3.4339413393825042,
-          -3.40861838475784,
-          3.3585349923649286,
-          -5.01643017754291,
-          -1.8288815147606567,
-          2.40346797140877,
-          4.483074773043113,
-          0.2510514133239245,
-          -3.1661124285612137,
-          -3.6207556316276124,
-          -2.872024539229596,
-          -2.4865922473761035,
-          0.8061779292028813,
-          4.218770837567477,
-          -1.5873599676519043,
-          -1.7802877591255046,
-          5.101118134723537,
-          0.2578675378250466,
-          -4.421010204039318,
-          0.6134113034284051,
-          1.215180983889418,
-          2.1529060048498394,
-          4.892841606192266,
-          -5.986229188751611,
-          2.0656314442973254,
-          1.9667314895607735,
-          3.969106427390649,
-          -4.5269520388926585,
-          -2.0175089040708123,
-          1.4061819038594807,
-          2.8210337088794546,
-          4.22351745330634,
-          2.2997936241672474,
-          1.2378616884434714,
-          -5.53066406980409,
-          0.7451549375209178,
-          0.6310860604817433,
-          1.4863455811012731,
-          1.3325224115280974,
-          -2.4557826886842693,
-          -0.7851654161462992,
-          -3.6209886814653918,
-          -2.6144984192239704,
-          -1.4191076968285636,
-          -3.055819768076246,
-          -0.0761480803898332,
-          1.5371551538610997,
-          -2.4450466894243985,
-          0.8772129238168268,
-          -0.9608327267966487,
-          6.163764588038454,
-          -0.45882920490359047,
-          2.024828648418424,
-          7.234717437591539,
-          -5.190371562703236,
-          -5.113596361101259,
-          0.3927568451692386,
-          0.6093041252322116,
-          -2.1752655393909914,
-          6.505414222451135,
-          -0.6132644646584858,
-          -2.921727807238481,
-          -1.104729381332122,
-          1.1534683783320825,
-          -0.3975673019201264,
-          5.092031331795394,
-          -4.2288672231008375,
-          0.11683055064119517,
-          -2.4909628568294537,
-          -2.5378016144429347,
-          -6.710784395120792,
-          2.862059386255591,
-          -3.578334621422695,
-          0.26650243871750845,
-          2.3868200177005625,
-          -2.9876601679090657,
-          -0.8350708102203831,
-          4.160071726417152,
-          2.1800741809316952,
-          3.5660094140112397,
-          1.8803605604686244,
-          -2.0487885209730368,
-          2.4932319184253724,
-          4.987528951143428,
-          1.0632360563107284,
-          3.651752231993886,
-          -2.7156604638619193,
-          -1.3758275598855145,
-          3.745734912682906,
-          2.1823635014713143,
-          -2.3104212949106024,
-          -7.342015855422084,
-          -0.6263427652452136,
-          -2.8123299463442444,
-          1.5621938365355275,
-          -2.9190801967808646,
-          2.7355774501027166,
-          -4.89632002981649,
-          -0.04338826662437207,
-          -1.319292391774587,
-          -4.140986435597674,
-          3.2871362412603795,
-          0.44157499984133536,
-          2.4725580660103925,
-          0.5053535478458405,
-          3.786242116560854,
-          1.607687057830593,
-          3.86885917030508,
-          -1.7768359325469203,
-          3.5388697421860287,
-          4.990112582761184,
-          -0.9784766467509762,
-          1.8368583421240368,
-          2.9875012577840923,
-          0.7503383254152016,
-          3.3577877374896663,
-          -4.025848227117994,
-          3.229482668046584,
-          -6.767409328260291,
-          -0.9960079483152093,
-          4.1021495984269585,
-          1.6765360612366096,
-          0.8001842889839914,
-          -5.932816351276646,
-          1.8463560278443092,
-          1.7765528920771991,
-          -1.4401827417214574,
-          1.3152660439591564,
-          1.8253366973445735,
-          -2.859696789113898,
-          -0.7875227908355867,
-          0.9100828740741445,
-          -2.1572959825377933,
-          0.36350738724058085,
-          -3.7292766087171154,
-          -2.183142886592165,
-          -0.554761703626806,
-          3.2359577599746507,
-          4.077859400177189,
-          4.32209517046506,
-          4.708524770063307,
-          3.099088374449208,
-          0.9558351889747096,
-          0.6724766593777788,
-          -1.9796916990319633,
-          -1.9115875447526813,
-          4.604704102661435,
-          -3.756151786720566,
-          0.1264988491613333,
-          -2.871267787924466,
-          3.8527398288416936,
-          -0.026670578667843045,
-          -0.4406947605218737,
-          4.310099493472581,
-          -0.3790590287724325,
-          -1.2914098027605396,
-          -1.213479619780915,
-          0.9166720271781077,
-          2.305741069077047,
-          2.0696168491941775,
-          3.3220247086167145,
-          0.10604217107301309,
-          -0.14583667438830689,
-          -1.104518173414075,
-          3.1279397509551066,
-          0.5266203554824382,
-          3.4797078144828513,
-          1.4093895631790563,
-          1.6993980287614547,
-          -3.6792680723886404,
-          -4.9126997742385585,
-          -5.75085820368147,
-          -2.203374920178495,
-          -4.260704710515839,
-          -0.16367449046226687,
-          -0.34295769829924233,
-          -1.5274448064234838,
-          3.402267181003611,
-          2.974998749067654,
-          3.7969179653841527,
-          -0.5325898384439085,
-          2.961530421974914,
-          6.60491575367549,
-          -0.08494658808055675,
-          -0.00010628104454955066,
-          1.615867056996652,
-          0.1427692977729755,
-          -2.5063733297843562,
-          -4.582220588675825,
-          2.5215626983563246,
-          -0.2633272590754743,
-          -3.2799098136644216,
-          1.2899091531595814,
-          0.7745740506680591,
-          -4.547963121258711,
-          0.4794044885397189,
-          0.8353359833651463,
-          -5.431799643429927,
-          -1.9387121800723457,
-          0.9716631399310273,
-          0.6780111226526188,
-          0.18266133377309068,
-          -1.5210681452528756,
-          4.163992403417596,
-          -4.0748708647345,
-          -4.983007107804598,
-          -0.7040287847878676,
-          2.6921664325472,
-          3.2944534057846604,
-          -1.8582388881983265,
-          -4.635626914317577,
-          -3.0186731847918162,
-          -1.3483853697682069,
-          8.222510074269517,
-          3.379896940101046,
-          -4.221548484305228,
-          0.2705172318631871,
-          -4.076817434382509,
-          1.5065291714903097,
-          2.9269964376705198,
-          -1.5420010145159566,
-          -1.5064815497047033,
-          -2.0142586475821895,
-          -6.447961484348664,
-          1.6520242138057157,
-          4.229326263260961,
-          -2.674075932082457,
-          -1.9464324846794092,
-          2.75086731741367,
-          1.9207317843308322,
-          -2.9160398885647276,
-          -3.3016937301117015,
-          3.1814697129561607,
-          2.944413875360421,
-          0.7071713446845519,
-          6.424034322961511,
-          3.1700988786848203,
-          -4.9975864876764025,
-          2.611814744352864,
-          5.355332482941719,
-          -3.9002571231492844,
-          -1.6599273889660224,
-          1.4096266572828544,
-          -0.8022572929204406,
-          3.2374848269928607,
-          1.0474890541872792,
-          -0.5973112288589678,
-          -2.6842753528053493,
-          1.5607269196627753,
-          6.6663562081151415,
-          -0.20502443656747976,
-          0.5136315403099462,
-          1.7292203524511494,
-          2.7800895042524063,
-          -1.6649899922703109,
-          1.595929943272903,
-          3.0678582861152845,
-          -1.1102501297681708,
-          -0.5725383621853147,
-          -0.6892578941086872,
-          -4.559942693105841,
-          -1.6827534642224713,
-          -0.397596116727708,
-          2.600565377378117,
-          -2.709575601532963,
-          -2.037697088486597,
-          5.421753371882808,
-          -3.248851036172969,
-          3.123353599176048,
-          0.6992642211417872,
-          -4.816004902682377,
-          -2.9622435584282303,
-          4.12080812911028,
-          -1.0524530782465855,
-          -3.664975472073214,
-          -3.694355626807281,
-          3.0203985094622303,
-          -3.1611506157900053,
-          4.305840580899111,
-          -2.883673820816856,
-          -1.8625398212832596,
-          4.913784992011372,
-          2.4858279560732757,
-          -4.422224418929558,
-          -5.666866356288963,
-          -3.653084999907253,
-          3.7160179189502647,
-          3.280152679268475,
-          1.4388445076810539,
-          2.932038420470701,
-          3.0695797785781522,
-          -0.3904764664065094,
-          -2.297874987807091,
-          5.125471200282238,
-          -1.682094278927788,
-          -0.7426205373273865,
-          1.88911709930685,
-          -1.2673319576446844,
-          -1.2565332619061855,
-          -2.547350827867828,
-          -2.87647129489581,
-          2.7380777135074794,
-          -4.732452179988914,
-          1.4267250540944145,
-          -2.3670966084677563,
-          -2.0661528916197165,
-          -1.1606697226846885,
-          2.408519923062637,
-          -3.9089405046287373,
-          3.9673032096972882,
-          3.048828520383992,
-          5.010404186180072,
-          3.8785101361461374,
-          1.3893176858374316,
-          -1.4400767281112108,
-          1.500876339162363,
-          -1.8477051880758455,
-          -0.17899279158732642,
-          -0.9909563796452937,
-          -1.79022269718252,
-          -1.1945347394299537,
-          2.814755259634966,
-          -1.2883230852312098,
-          -2.0478673308105995
+          0.7367808755289185,
+          0.013042851547576229,
+          0.021203596314155915,
+          1.451255719371631,
+          -0.7089965042287093,
+          0.39550198440137585,
+          0.761993455933694,
+          -1.094452135554215,
+          -0.7842676980580504,
+          0.7485296567341881,
+          -0.6733046073959779,
+          1.2100168958272643,
+          1.4169558589872553,
+          -0.8767892757996395,
+          -2.8171205302387543,
+          -2.675504216807502,
+          0.23034774484150788,
+          -1.4915055894264644,
+          0.5359128491358274,
+          1.743268912369408,
+          -0.32097107992024576,
+          1.5364050985065365,
+          1.1275641887226882,
+          -2.1177649593000067,
+          2.0346490895684592,
+          -1.9114720009725752,
+          0.48359625052056887,
+          -1.573189239291111,
+          0.0894053594108637,
+          0.2730623767793465,
+          -1.6990231401787919,
+          1.8816441301279343,
+          0.4016109703220736,
+          0.6246839966885349,
+          -0.9486814579248609,
+          1.6225917309498037,
+          0.04546587481849129,
+          -0.7746877030311763,
+          -2.6927389849213137,
+          -0.38996246888947084,
+          0.2927396672894167,
+          2.6303854591450904,
+          0.14029591690670062,
+          0.4491002904304773,
+          -0.5222959159767087,
+          0.524097077518294,
+          0.7095315515298894,
+          -0.6180352161178047,
+          0.6262865955593151,
+          -1.0675385569670364,
+          0.4656772642822651,
+          -0.5985892158995336,
+          1.510370373239117,
+          -3.2364508978994246,
+          1.120060685068757,
+          -0.6598630452091001,
+          -0.6297380524778936,
+          3.6021758959997943,
+          -2.08436235954321,
+          0.5414404649955826,
+          0.23768074869024614,
+          0.16171919708631877,
+          -3.245728965485383,
+          0.9713690843243155,
+          0.6397967986645321,
+          0.9142693725330722,
+          0.24903958090766576,
+          -0.2957397164958463,
+          1.6225107248403043,
+          0.5721607425812456,
+          0.17041207041448092,
+          0.3436856673932196,
+          0.012549716797331856,
+          1.1086356864225473,
+          0.45116848742305393,
+          0.7265538106478446,
+          0.7297047988981753,
+          0.8072749502150152,
+          -0.6855298877740272,
+          0.650505551965531,
+          0.41310062211539345,
+          0.42576233796783725,
+          1.8481558153000517,
+          0.32551790476708287,
+          -0.8820639097219323,
+          -0.43541142015848255,
+          1.667433893014326,
+          0.10910756781521935,
+          -1.456249234900467,
+          1.0512085580514703,
+          1.8182896143654408,
+          0.9004484805932609,
+          0.383745392423978,
+          -1.081218061526592,
+          0.07186710187574619,
+          -1.0637032648025602,
+          0.4333158643487951,
+          0.6717971469966291,
+          0.3282216156405624,
+          0.8342508042370624,
+          -0.27528609955710726,
+          0.6252343925848034,
+          0.7986246870676064,
+          -2.5865840256313777,
+          -0.003491124897605946,
+          -4.314862059697726,
+          -0.8207777440888211,
+          -2.40366066243395,
+          0.07518556990016712,
+          -0.30741950544210694,
+          0.2259998514441992,
+          1.01654338683461,
+          -0.44103961420038285,
+          2.4299405491138106,
+          0.12412959406119306,
+          0.570107741332524,
+          -0.12182957534625327,
+          1.8340162110630405,
+          0.24318604389811038,
+          -2.2681903294320422,
+          0.10652510546517946,
+          -2.6118583652723073,
+          1.3144816666710124,
+          -1.6230864430194256,
+          -1.1262197248986103,
+          0.12905314640856735,
+          1.3743465893079176,
+          -0.9081193040532434,
+          -0.6350784078977237,
+          0.15027731612075956,
+          1.0166591495372197,
+          -2.0904157987009717,
+          -2.610052288128662,
+          -0.3356722031009062,
+          0.9110949512332256,
+          1.3442464843350237,
+          -1.821043101773392,
+          -0.418475530565964,
+          0.4767839634912969,
+          0.9075151363349354,
+          0.25013822698129373,
+          -1.9763635014681045,
+          0.45795596240878766,
+          0.7307575472568915,
+          0.7450024206960519,
+          -0.7958501626975938,
+          0.6736465210799853,
+          -2.2234730771431384,
+          -2.0709443050974925,
+          0.6136669426890002,
+          -2.025911582040572,
+          0.8972288875523986,
+          0.9195731146815407,
+          0.06335726051515778,
+          1.5410415753486535,
+          -1.2045911788085966,
+          1.1219811224650327,
+          -1.1565801592718907,
+          0.4274242948727469,
+          -0.4843841247820456,
+          0.10819341221249523,
+          -2.328458186229793,
+          -3.5187062607348536,
+          -0.2933013909517984,
+          -1.5451752583004335,
+          0.24463630081726606,
+          0.552727495667032,
+          0.6448725506593211,
+          0.1481557074949169,
+          0.7674412067797141,
+          1.2978774684455425,
+          0.3621441338932583,
+          1.2454080024177379,
+          0.21823177972431274,
+          -0.3578557047354709,
+          -4.022465892517175,
+          -4.124633551759905,
+          -1.3540745781891188,
+          0.1752629983723828,
+          0.1788787561184495,
+          0.15026136952324332,
+          -1.7120770373667331,
+          -0.9663186939790172,
+          -1.9386405128925772,
+          0.34193942351823403,
+          0.8176713686288173,
+          -3.0293782680847903,
+          0.6869321852295436,
+          0.6138186342513305,
+          -1.4663209765221081,
+          -1.1883637725308425,
+          -1.383768375300682,
+          0.5759865339798096,
+          0.26495286980153643,
+          0.7665463204404603,
+          -0.23853061974473266,
+          0.8297632277598501,
+          0.16665225682817564,
+          -2.8460354875446283,
+          -2.068050909620507,
+          -0.35504137840061223,
+          0.09328725929052872,
+          1.6661917534401467,
+          0.11544679600674512,
+          0.42077053658263663,
+          0.08026760226980567,
+          -0.349503462168003,
+          -0.2195662696350188,
+          0.506443597670913,
+          0.8147065943709508,
+          1.3828114209651954,
+          1.5067597191325066,
+          1.3181957684979944,
+          -0.9447731472054853,
+          0.07242595653900574,
+          -0.5053937478052529,
+          0.0019666241989955147,
+          -1.0648434631319257,
+          -1.9292823997449546,
+          -0.8083606462107744,
+          0.6042415189354904,
+          0.10369910534470628,
+          0.6663356288122761,
+          0.6052486322640109,
+          0.1609540824971516,
+          -2.8474454753509537,
+          0.38939460370832535,
+          1.0867674612674079,
+          1.1713579395989444,
+          0.05933815045090629,
+          1.493409028995091,
+          -0.7052197190865159,
+          -1.4112362557450946,
+          0.7289086308775414,
+          0.07976720500058976,
+          1.6494580872685605,
+          0.3268087171249241,
+          -0.29020552174499004,
+          -2.206712935831537,
+          0.2305391313169627,
+          0.9181640624574579,
+          0.04724468242908997,
+          -0.8988856965963392,
+          -1.5921883011417974,
+          -1.6253325853670515,
+          0.3625254404453233,
+          -2.08313367312242,
+          -0.1800919762322537,
+          -2.8066919397649963,
+          1.2118731233700104,
+          0.790168427658255,
+          -0.7926464314904801,
+          0.4153720539179262,
+          0.9473137777983611,
+          0.7995835093917059,
+          0.7221325650570392,
+          -1.2863065721470504,
+          -2.754581155527524,
+          0.5978471565386347,
+          -2.4122994717819006,
+          0.07435400988120389,
+          1.474445077397665,
+          -1.2885800935101686,
+          0.16641675964088298,
+          -2.512284530840118,
+          -0.3613000085239878,
+          1.303534615512154,
+          -1.4557923777653303,
+          -4.382863773832343,
+          -0.958162240358467,
+          -1.2767450996017242,
+          -0.18967154688345156,
+          -2.5238918945330497,
+          -1.3482417016266144,
+          -2.4622615132611347,
+          -2.6909477053484565,
+          -1.638600639974559,
+          -2.230521654513522,
+          -1.0439475665335043,
+          -0.06137180731699565,
+          -2.1351034678704433,
+          -1.9496720301129498,
+          -2.0439890783333667,
+          -1.0648425861250415,
+          -1.4176455863432533,
+          -1.9113846273400028,
+          -0.3701888747900103,
+          -1.0382111999770924,
+          -2.332470015425652,
+          -2.044775877153821,
+          -0.8302430641687041,
+          -3.0879628383625994,
+          -0.7306065391657875,
+          -0.8465115283184317,
+          -0.5379914637021028,
+          -0.5061424070634678,
+          -1.8273864520482654,
+          -0.3373355245629174,
+          -1.6954366035590986,
+          -2.1603353039201276,
+          -0.31025938933435815,
+          -1.6728185370226796,
+          -1.8883629822855053,
+          -1.602593079512146,
+          -0.5551353692318006,
+          -2.4008987231202714,
+          -2.108516276617787,
+          -1.5137116670791504,
+          -3.4336534390813167,
+          -3.271019389808586,
+          -2.8346056955901364,
+          -0.7982835084493283,
+          -2.51958592892667,
+          -2.358558302963436,
+          -1.4281606797811053,
+          -2.3707264470813154,
+          -1.9374728674363446,
+          -0.6569183075277409,
+          -2.3699775510996477,
+          -1.9889430034833624,
+          -4.054190926767686,
+          -0.7744982839542088,
+          -0.6234337702959318,
+          -1.582060918387503,
+          -0.9042444460254058,
+          -2.5483185181834482,
+          -2.1081907862188305,
+          -0.939303436526484,
+          -0.8295715874290345,
+          -1.6141999284756952,
+          -2.617036912956528,
+          -2.520139158491722,
+          -1.461116847301972,
+          -1.968338648477796,
+          -0.025244787514536515,
+          -0.4191904533251294,
+          -1.9760879585947522,
+          -1.080035565476656,
+          -0.04045730618849641,
+          -0.43755562464757536,
+          -2.346128825433043,
+          -0.5843589441301182,
+          -0.51086319159755,
+          -0.633110540044075,
+          -1.044307374261644,
+          -2.96048278187771,
+          -1.260516128403099,
+          -0.027425536106452597,
+          -2.9549037939078273,
+          -0.4188913494436709,
+          -0.48623830219517605,
+          -1.8910000950783625,
+          -0.2445011663468819,
+          -0.32966577070333924,
+          -1.069974712672218,
+          -1.406595996776484,
+          -0.8480622138844605,
+          -1.6596049234359218,
+          -0.5603281382109191,
+          -0.26999774055825354,
+          -2.829720090270071,
+          -0.5522939421394069,
+          -0.40301235566654314,
+          -0.13982441989425598,
+          -1.2786622625870159,
+          -1.4456061543147636,
+          -2.342765241527844,
+          -2.7651412582200248,
+          -2.1734678207638876,
+          -3.0583444470958128,
+          -0.7265049743053418,
+          -1.1958751182873175,
+          -0.7664901341298971,
+          -1.6017699198283988,
+          -1.238541218913921,
+          -1.782096039787303,
+          -1.0248304205592536,
+          -1.9423838103819429,
+          -0.5433851647985077,
+          -0.7450855621964942,
+          -1.7145816022148526,
+          -1.066385476485097,
+          -0.044204060049751415,
+          -1.647084671650056,
+          -1.38638611887078,
+          -0.08469005746622316,
+          -1.3003550334882603,
+          -3.8910290926821545,
+          -0.9406940880983063,
+          -2.2103715143170026,
+          -0.5079401480246645,
+          -0.2805047463697411,
+          -1.2275632486490835,
+          -1.008295632795192,
+          -0.5647173459759447,
+          -0.5364584619852732,
+          -1.1280181510975975,
+          -0.04789036568154004,
+          -0.7478564690748319,
+          -1.0643585337293002,
+          -2.9178875116820473,
+          -2.66785027988388,
+          -0.37692870198082107,
+          -2.336354596801062,
+          -0.8263975525131503,
+          -2.6471110071887907,
+          -4.404144785706613,
+          -0.9004054045539062,
+          -1.8694442792962107,
+          -1.9156694329349815,
+          -1.8102854372877621,
+          -0.10445820557743635,
+          -1.3293959248646534,
+          -3.012035343966241,
+          -1.2905873735939961,
+          -2.5665443674053217,
+          -1.5153631602744961,
+          -1.2100195661876385,
+          -1.2503415214107316,
+          -2.3561767889201866,
+          -0.7827622930238034,
+          -1.4647716311692887,
+          -1.5265687925345532,
+          -0.2709969211685469,
+          -0.7762233609697131,
+          -1.2121921240354605,
+          -0.5678390269364071,
+          -1.952939519191164,
+          -1.3941751616902627,
+          -1.348940772387681,
+          -3.063214119739743,
+          -1.5778453796818048,
+          -1.1246896757933755,
+          -1.9813916749481568,
+          -4.535535304324815,
+          -0.7047927019267309,
+          -2.897850517259606,
+          -2.108565444241277,
+          -2.7723712034126424,
+          -2.5953476335800314,
+          -1.4709263186667076,
+          -2.5533643945584252,
+          -2.713745077751364,
+          -0.7413202067558318,
+          -2.493121010639591,
+          -1.2145959713538534,
+          -0.16867324293858244,
+          -0.8661928011589637,
+          -1.18167389497337,
+          -0.19975522797323353,
+          -2.2430232381166464,
+          -0.14936596359440824,
+          -3.046101972902115,
+          -4.775400196808246,
+          -2.604602817156316,
+          -1.528523331159075,
+          -3.0010894488865114,
+          -0.4842598161662979,
+          -2.13789055214348,
+          -0.34828969154106426,
+          -3.255427490558156,
+          -3.178393924016756,
+          -1.8183591811357682,
+          -1.1928800026902788,
+          -1.8293228779819546,
+          -0.7993963122605849,
+          -2.670875553807247,
+          -1.337207568810146,
+          -1.3332689772799768,
+          -3.34393923738832,
+          -1.1494378040775506,
+          -0.8955451790828343,
+          -0.09340194709031524,
+          -2.1572273886791473,
+          -0.9256896442080222,
+          -2.4383103789901908,
+          -2.88992762379019,
+          -0.8237507512319349,
+          -0.12692115869637033,
+          -2.464411296631228,
+          -2.294294125052879,
+          -2.0526362661406607,
+          -0.4337194347501402,
+          -0.4857049383032127,
+          -1.5237660429390463,
+          -2.7670426917701985,
+          -0.23877474380535968,
+          -4.466838404862102,
+          -1.445554365804542,
+          -1.8843578322071655,
+          -1.0279144312299366,
+          -1.834373969953197,
+          -2.5982087813009374,
+          -1.9667657001241454,
+          -1.8108725334990996,
+          -4.170902473048562,
+          -1.2342629774828415,
+          -0.47532376910845575,
+          -0.747855959877259,
+          -2.0005011764476435,
+          -2.6698498520558793,
+          -1.43869217268784,
+          -0.5746621049850438,
+          -3.281872521796414,
+          -1.226339304462114,
+          -2.4543037652853297,
+          -2.5771384551701915,
+          -1.9545184449774617,
+          -3.071319916923737,
+          -0.009139423768248611,
+          -1.5660723581577862,
+          -2.0435737950725734,
+          -1.4696207915474497,
+          -2.7977567449839023,
+          -0.7908313159128104,
+          -0.9732129421000378,
+          -0.9919456273445483,
+          -3.500160949219709,
+          -2.090368519130286,
+          -1.728781905788423,
+          -1.7892974125693746,
+          -1.9961137629720824,
+          -2.3269040906680285,
+          -1.6132509107966135,
+          -0.8777700028476755,
+          -0.7735080367281155,
+          -3.7702772350528555,
+          -2.4020334090494666,
+          -0.9776605247269415,
+          -0.5236452431916738,
+          -2.401140965774367,
+          -1.9587371931598747,
+          -2.646288982052427,
+          -2.1837577740000667,
+          -0.6327629157299763,
+          -2.2804861464609774,
+          -1.558098635783347,
+          -1.8296357959216984,
+          -0.8778605430532642,
+          -2.2945770075558922,
+          -1.635665905744568,
+          -2.2443322251405977,
+          -0.7520867704130321,
+          -2.120362056826944,
+          -2.8271816405872876,
+          -1.9835692901193176,
+          -0.1765378252498533,
+          -1.4282687937089302,
+          -2.6736504522568745,
+          -0.8689424040112157,
+          -2.2025279516863288,
+          -2.2560757864846925,
+          -0.27340531524036904,
+          -0.15256762656761635,
+          -2.055719110436204,
+          -2.3674132687046425,
+          -0.48327511176574134,
+          -1.8324851911692375,
+          -1.8159452227786839,
+          -1.6613094519239606,
+          -0.7248604382140208,
+          -2.462315253408895,
+          -0.8892532050759925,
+          -2.7267824023876712,
+          -0.1832015759382165,
+          -0.9273857236306329,
+          -2.069456979990951,
+          -0.2533571320456548,
+          -0.7449701664566835,
+          -1.9654072433057932,
+          -1.1893346497962398,
+          -1.4653698883394937,
+          -2.968081986738575,
+          -1.2478232919280308,
+          -3.6937402520350573,
+          -0.4209065136564948,
+          -0.9055256856013476,
+          -1.1821620293695942,
+          -0.09074157330345156,
+          -1.978772732693146,
+          -1.2251415773779235,
+          -2.2853193312729445,
+          -0.9037562492371262,
+          -4.158534649881287,
+          -0.2233281193682255,
+          -2.1239587192831806,
+          -0.22349968411303944,
+          -2.1738789002891075,
+          -1.454014737439235,
+          -1.5045901154816117,
+          -0.6612157319000097,
+          -1.9940340082263501,
+          -0.7595880449992561,
+          -3.6378346927372553,
+          -0.7554379488783188,
+          -0.520663457029548,
+          -2.1363205310513638,
+          -1.106437061117598,
+          -0.4665982023750809,
+          -1.6899259590760969,
+          -1.9649581504983504,
+          -1.469031331722556,
+          -2.0535640866449354,
+          -1.5122444121226737,
+          -0.6327055055659371,
+          -0.040621932208145806,
+          -2.7867353650936506,
+          -2.733562653591803,
+          -0.9012995747096755,
+          -1.1259114463762128,
+          -1.9309549978340215,
+          -1.6326884136854092,
+          -1.5223254699014899,
+          -3.8800870500462548,
+          -2.8623074181914996,
+          -3.1414880686419644,
+          -0.31703656148048875,
+          -0.1938702602069,
+          -0.951313575768213,
+          -0.290768598164852,
+          -1.6646515874753756,
+          -3.2785714091869678,
+          -0.5990459199213638,
+          -0.12923021539052015,
+          -2.968753562349419,
+          -0.9435669899973137,
+          -1.0042307241865664,
+          -3.6871986600032884,
+          -0.7085419654733656,
+          -1.93985322783924,
+          -1.4015184020762328,
+          -0.5217364812663716,
+          -1.819464165851569,
+          -1.9612940655911226,
+          -0.6928130660434209,
+          -1.8612692113912306,
+          -0.3194455224749172,
+          -2.311650197071982,
+          -0.2100957978424145,
+          -1.2573779985092435,
+          -1.045629512838593,
+          -1.3000693944179649,
+          -1.9392029318208563,
+          -1.3275670029814592,
+          -3.798005791219435,
+          -0.15180286351353223,
+          -2.9799127414911153,
+          -2.2279347466778754,
+          -2.097424501469571,
+          -1.2109538744319086,
+          -1.8520416598340277,
+          -0.7164588195274457,
+          -0.5009589726254894,
+          -0.8530964104782853,
+          -0.8839029788475921,
+          -1.8094055438570589,
+          -0.4722389402605187,
+          -1.1842137644305852,
+          -2.9720245909540286,
+          -3.457284045947792,
+          -1.5663313919996036,
+          -0.7199886296828473,
+          -1.9099774195910353,
+          -0.46377333671518306,
+          -1.8731122190345109,
+          -0.9594710986352827
          ],
          "y": [
-          -4.4207226308332475,
-          -0.5970456709356636,
-          1.7833613271725897,
-          3.458949096509666,
-          4.547298250543756,
-          -3.565073081626068,
-          1.348052976575473,
-          3.4394049060155982,
-          0.012981087551303061,
-          -1.3570005492001005,
-          -1.6360557058752272,
-          2.178188883446625,
-          -4.421664618094851,
-          -0.030327752965006147,
-          -0.3784011525653611,
-          3.060929464795412,
-          -4.566100423656219,
-          0.33144189010008585,
-          -1.058780179593787,
-          -3.2559803632840643,
-          1.5030932603730365,
-          -2.781204962547166,
-          1.237921340256452,
-          -3.6805342457973524,
-          2.7357494404908564,
-          3.1593887600685835,
-          4.0476601035465,
-          0.11419217356390453,
-          4.261960126910073,
-          -3.150256837027385,
-          1.3945087183930847,
-          3.8013620846074905,
-          -0.8140724371773221,
-          1.2195310587359725,
-          -0.7972386133539962,
-          0.519981637448978,
-          0.39631433648542014,
-          -2.49087626076677,
-          -0.9086918287831582,
-          -1.384199389166984,
-          3.64720826384756,
-          4.656353215104757,
-          -5.531073726376749,
-          -2.0766569498453213,
-          -0.7836071775405685,
-          5.818417336202036,
-          0.043131914182594135,
-          -1.6205805851750616,
-          -3.9589132917045906,
-          -0.09693172437585434,
-          -2.454529913783691,
-          4.997730125961464,
-          -0.385457537060201,
-          2.9062740193297287,
-          -1.3208012605721176,
-          1.7170965563470857,
-          0.7329655942703978,
-          -0.9347395218246626,
-          1.1107361850560176,
-          -2.95380594610815,
-          1.439369412789531,
-          2.654538890084845,
-          0.7702230885798766,
-          0.3003094605340293,
-          1.478073529411894,
-          1.727482019100937,
-          -2.8820621669040696,
-          -4.541794406864073,
-          0.26315412984626746,
-          4.316811213474322,
-          -0.7127494018871704,
-          6.493169902394864,
-          -0.5299594377675443,
-          -0.8209328393059794,
-          -0.16716436879592597,
-          0.5514111085654648,
-          -1.7195721597555904,
-          6.373531144010188,
-          -2.870781304881444,
-          -1.3565257932664665,
-          2.640286165452921,
-          -1.6532976183402026,
-          0.8254298678775098,
-          -0.444698360432648,
-          -1.2096913966014218,
-          2.293197704599283,
-          2.355617208114705,
-          3.073115023875015,
-          1.3499153622044093,
-          4.524954092265783,
-          -0.2272482385746576,
-          -3.813116059160665,
-          0.18188047817477793,
-          -2.9594839726301734,
-          -0.7758105122848086,
-          3.4621383628571896,
-          -6.015833839663482,
-          3.535081826778631,
-          5.249517917498048,
-          -4.237087213719355,
-          -2.782055406715205,
-          0.20084117611669386,
-          3.9972638165457814,
-          0.1987560224428354,
-          1.391681340547064,
-          -2.770137941098806,
-          -1.8418162659355612,
-          1.185012444820505,
-          -0.1122234088762135,
-          -0.18519182972090542,
-          2.087027708146718,
-          -2.5276836129735036,
-          -1.8036715581184828,
-          0.938178121810426,
-          -3.7489562295889125,
-          5.172136146351736,
-          -3.7477013434493553,
-          -3.096407898370987,
-          0.1142798978888454,
-          -1.3663732750230806,
-          -4.378434512830331,
-          5.269759878238109,
-          -0.3523502668285663,
-          2.0470953995322607,
-          2.543119628559344,
-          2.703060870107827,
-          3.09674512682447,
-          0.6650663224233528,
-          -0.221982617890834,
-          -1.562730681240834,
-          4.285802574185879,
-          -0.09110213114072746,
-          3.6781837059450146,
-          0.8160639338919041,
-          0.6436198319558142,
-          -0.471357566127261,
-          -2.6164892780033218,
-          4.911628583049703,
-          1.2703187485873524,
-          4.645403787325158,
-          -5.000249469306578,
-          0.8792632449691742,
-          -2.4087492966141206,
-          -3.997173608595231,
-          -5.1623542272401,
-          -0.9021923324585652,
-          -1.0073084212313024,
-          -2.576905716855869,
-          4.178817175541553,
-          2.4145413011151184,
-          3.1101216843617183,
-          1.1728451493381524,
-          1.124063923532563,
-          -2.881005600371106,
-          -0.2715835654110122,
-          -4.872815318931814,
-          -1.9582483000899082,
-          -3.5553233994498608,
-          1.1389931452716058,
-          1.6870642948285524,
-          -4.655658319142699,
-          0.6059744273410478,
-          2.0778148322130594,
-          -2.7752765048420427,
-          -1.3954547298266526,
-          -3.5991047776245235,
-          -1.2760964356855589,
-          -3.7766141421495005,
-          1.030286440902986,
-          1.803787921473084,
-          0.8889392530384493,
-          -2.906875911161463,
-          -2.11494208339229,
-          3.9238325823469644,
-          3.4572791954044213,
-          -4.35313434752321,
-          -3.2717548069157187,
-          -0.3486534907995244,
-          -4.211226932513475,
-          0.33844809925005087,
-          4.050174734846795,
-          0.808676589976462,
-          -0.9769800609611382,
-          3.540244434353525,
-          2.8963386563289997,
-          1.958557287530298,
-          -1.49211193241169,
-          1.6930799452121157,
-          1.374617636127297,
-          -0.3199055240869066,
-          3.753268799977535,
-          -0.12695083064134152,
-          7.553243688564171,
-          -4.974205959368,
-          0.9569277931847591,
-          4.049918075101424,
-          -1.91575530972423,
-          -1.545737808768671,
-          -3.237998835606225,
-          -4.697852841701332,
-          0.324062241057321,
-          -0.1890006510162813,
-          -0.5065327923816499,
-          -2.2879619917617653,
-          -6.904032382986957,
-          3.8226907731587336,
-          -2.637365728137093,
-          0.59288096394874,
-          -0.03087077843025122,
-          1.1562501253162645,
-          -0.7034814930679784,
-          3.5882783954474213,
-          0.2920614307374438,
-          1.3113713100775959,
-          2.820339734954518,
-          3.910126576081577,
-          -3.7856209179070883,
-          5.427236441351471,
-          -1.9067517315476137,
-          5.014318113684673,
-          -3.7040737261710976,
-          4.147663411790072,
-          0.8327208206994386,
-          1.4267884602113,
-          -0.34945897780228524,
-          0.8279531572785839,
-          -1.9925406516194395,
-          3.811936485337705,
-          4.936243616912753,
-          2.1156196970683983,
-          3.4146597208294263,
-          2.6894739662029017,
-          4.131983423214092,
-          -3.685219142861247,
-          -1.1716955747055304,
-          3.2066447814392625,
-          1.5095252677610624,
-          -4.375241595467105,
-          2.8086741784250724,
-          -5.967047795728202,
-          -2.649564836620794,
-          0.15372344791075415,
-          3.879541984344496,
-          -1.2735669839394834,
-          5.367467002699923,
-          -0.3756339841994366,
-          -1.0917825166007298,
-          -1.8311821078182429,
-          -0.6919465996994003,
-          0.8907464525496782,
-          -0.6594894633349654,
-          2.0566980973444426,
-          -6.134193548091553,
-          -0.006430256340040579,
-          2.0035391811363596,
-          -6.241958277271381,
-          0.04231153415970765,
-          4.623322014070634,
-          -3.617697839519209,
-          -2.1748061303315573,
-          4.943483757837983,
-          4.040496253870083,
-          3.263905265929293,
-          3.3682961342004,
-          1.0111323848600533,
-          3.036686444335012,
-          3.162882910960859,
-          -1.7841996819641002,
-          -4.396032070703704,
-          5.942399269495237,
-          -1.1069215484174266,
-          -5.743816814718483,
-          2.1364939296338057,
-          0.06057711210386397,
-          1.5950451686864209,
-          -3.1462663864587666,
-          0.1525880483014779,
-          3.307508747014941,
-          -4.613836672871528,
-          -1.8960318797082722,
-          -9.573169176781821,
-          -0.5572688745514635,
-          -2.18450247416937,
-          -4.232200642921315,
-          -1.2947521552196248,
-          0.6518791129922679,
-          -2.394914531954128,
-          2.0679055196459695,
-          0.2479053873742244,
-          -5.557384826496621,
-          -0.028923518348458892,
-          -3.7533095651323176,
-          -3.000721702970001,
-          1.0529558862726978,
-          -3.0063132539120416,
-          -3.597967914770052,
-          4.985750027642397,
-          -2.4739266367548924,
-          -2.6931406741030846,
-          -0.29371334555883294,
-          -1.6755645011605709,
-          1.1316807313572732,
-          3.428852082206616,
-          -3.0108285093655978,
-          2.1077353610279275,
-          2.216068940988134,
-          2.2158251527568353,
-          -0.44945767445271384,
-          -1.3651202891209793,
-          -0.06681186559189896,
-          3.5996944383225205,
-          0.2527232329242618,
-          -1.8371068582058911,
-          -3.243894154830895,
-          4.626820945238411,
-          2.9285503889645743,
-          4.071041225782779,
-          -4.679951476380977,
-          5.350275320548106,
-          -2.650678711311384,
-          -0.7267222525831423,
-          1.166930321641318,
-          1.5987765006119001,
-          -2.6693780028000424,
-          -1.80031595294306,
-          5.268636688427296,
-          -5.809189785147951,
-          -4.742244149696623,
-          2.4150613013695383,
-          -4.020078677697106,
-          2.5935705430056877,
-          -2.6024973712993895,
-          3.0765161825976928
+          0.8491941685891528,
+          4.074825199258266,
+          0.4628929252460261,
+          0.3491922673855481,
+          -1.1723259867180427,
+          1.6549376232988788,
+          3.038697960242466,
+          -1.7726726516122873,
+          -0.5320913348344494,
+          0.45682607603549386,
+          -0.27118087881732444,
+          0.08071876421198443,
+          1.3513721404425636,
+          -0.19524293962180694,
+          -1.5688306627183808,
+          -0.26146836097084813,
+          -0.19330365606033406,
+          -0.36736749369714117,
+          1.0737967006628049,
+          1.8756992419853917,
+          -0.41685901787650015,
+          1.6325817358366081,
+          -0.8831689478364342,
+          -1.171772858872417,
+          0.9625019227924779,
+          -0.07762152114255305,
+          -0.7903746894477923,
+          -3.1554853140519787,
+          0.890569965947631,
+          2.005463123807842,
+          -0.21569593084262761,
+          2.7457477665942474,
+          2.2250395353312338,
+          0.9664445144617272,
+          -0.19964750491772176,
+          -0.048984706519410226,
+          3.215705237585552,
+          -0.45064086080780275,
+          -0.6904133755833004,
+          -0.4719532056548479,
+          2.7093172476632574,
+          -0.005885108807070605,
+          2.599086850963893,
+          1.1367325222843863,
+          -0.05689637084983379,
+          1.5961314151619501,
+          0.22301425109911865,
+          -1.8440317808842037,
+          -0.16921353198379396,
+          -0.7724746195988108,
+          2.089925842371464,
+          -0.1358384538763251,
+          -2.0817059671318203,
+          -0.060813859778862334,
+          1.308596258058495,
+          -0.6220961399208773,
+          -0.430394728042671,
+          0.6107693554862734,
+          -0.8538397143471352,
+          1.160335993493934,
+          0.07961663684061948,
+          0.7389301801330563,
+          -0.741654867583575,
+          0.9834838244555133,
+          2.97298646063354,
+          -0.22577013835748905,
+          1.36147979083715,
+          -1.6288785198816775,
+          2.1538293833837114,
+          0.13902742560869374,
+          1.7769336707204588,
+          -1.7537741205613688,
+          3.6880172804145044,
+          -1.793476584766955,
+          -0.41453736085226,
+          1.7932350184514656,
+          0.5255143546028527,
+          -0.32500740283509244,
+          -1.6064708273496136,
+          1.7266722706050261,
+          2.320217847668699,
+          1.7154559786367498,
+          -1.4879090265538717,
+          0.9766975757028384,
+          -0.17445142370689726,
+          -1.602045833777923,
+          2.6757058007477514,
+          -0.9865112942314869,
+          -0.6664605997057598,
+          1.416145355136105,
+          1.5704770183994077,
+          2.8646823742840315,
+          0.9300986815243232,
+          -1.1655638181418362,
+          0.2683656465494465,
+          -0.31479988382556234,
+          -1.7022172589443185,
+          1.8329296940392925,
+          1.4164537750852604,
+          0.5904785555489244,
+          -0.22259489350061745,
+          1.992810033258954,
+          -0.1666160649173707,
+          -0.013863240871262894,
+          -0.5682727768137601,
+          -0.014985289612978958,
+          -0.9908463487004278,
+          -1.6430471541985425,
+          0.3298097394810712,
+          -0.3677579980037351,
+          0.45665448513705487,
+          -0.20497299269993774,
+          -1.3147496697011722,
+          -0.9598314121078118,
+          -0.7083007199838516,
+          0.1457266461904817,
+          -1.940161776839695,
+          -1.43785900682477,
+          0.3206075280245927,
+          -0.47717092808008243,
+          0.33031940704503515,
+          -0.4957171711298656,
+          0.2298134764408608,
+          -1.7743387691209893,
+          -1.1916552404323846,
+          1.795835562406278,
+          1.3991894371086626,
+          -1.5761430511946304,
+          -0.36610592366179695,
+          -0.19876649054474305,
+          0.32874512054581995,
+          -0.04329397322162065,
+          -1.0216926823191983,
+          -0.0035924141912020424,
+          2.1759651146458685,
+          1.8243800137457507,
+          -1.0565402877815382,
+          -0.7971015957907048,
+          0.07293655694586076,
+          1.7974389907673571,
+          2.619731016286363,
+          -0.4715134397084033,
+          0.7545735696152897,
+          1.5088079364001734,
+          1.1966480253395593,
+          -0.3861580631293746,
+          3.1384294704105726,
+          -0.21289499934449285,
+          -0.4138224735435658,
+          2.2279073996049767,
+          -0.3736079825233294,
+          2.0532698015165236,
+          0.3009166762705844,
+          1.421684039337957,
+          -0.648656919292927,
+          -0.23591855687972685,
+          3.401892559555833,
+          -0.6591420585405239,
+          1.7070264546673863,
+          -1.0391435632444193,
+          1.6263996051934966,
+          -1.047400740799295,
+          -1.4251401905065828,
+          -0.6434256436091645,
+          -0.058529539631742455,
+          1.7599449258583058,
+          0.07118469913231185,
+          -0.9723457260255803,
+          0.4301407222522651,
+          3.193659994057299,
+          0.8818647198597486,
+          1.2226128549426498,
+          -0.8057787785750037,
+          -0.5163008007951804,
+          -1.8927337708463785,
+          -0.21798046576916152,
+          -0.716584740233539,
+          -1.0106068189140842,
+          2.4801006747492718,
+          1.3837948548395569,
+          -0.14835471297863134,
+          -1.6940657277033733,
+          -1.876094542364588,
+          -0.5240187349736287,
+          -1.2272274029943366,
+          -2.535474482497054,
+          -0.03732098331164724,
+          -0.03109134401314484,
+          0.3872014597841794,
+          -0.07096003655882122,
+          -0.18579472448358336,
+          -0.3679592310797084,
+          1.032346587388015,
+          -0.47467273861481996,
+          0.07867781827338605,
+          -0.8086169700180363,
+          2.788337206133491,
+          2.420942096573004,
+          -0.1716373504006632,
+          -0.36645263763439595,
+          -1.637271527603826,
+          1.9930755336319643,
+          0.7365920789842474,
+          -0.03391456592923281,
+          -0.23567326184441284,
+          0.43413779260736485,
+          -0.4047454094485956,
+          -0.29375661103896933,
+          -0.3139150725308575,
+          1.5764704160139962,
+          1.0857924979661067,
+          2.026778113050537,
+          0.43818775880015903,
+          -0.53113955242105,
+          1.3817317869082073,
+          -0.8556428185635605,
+          -0.26681281426972103,
+          -0.1798389541003016,
+          -0.571031225794429,
+          -0.7786556420902617,
+          -0.1736313432074339,
+          1.533488020196488,
+          1.3915284702075081,
+          2.2007637742926827,
+          1.3085205419946937,
+          -0.5256380370063134,
+          1.535481484310952,
+          1.8995547952496548,
+          0.6251556544338807,
+          0.5039471152664767,
+          0.25745052977607297,
+          -0.8988685306972712,
+          -1.3916737332427744,
+          -1.5151337471607769,
+          1.100018411089157,
+          -0.7333825887113135,
+          0.27725293507920523,
+          -0.9896842339037741,
+          -0.3115737313702043,
+          0.9854628556910277,
+          1.8420752239622677,
+          3.9735499773449177,
+          -0.07701986983319697,
+          -0.48378072102354475,
+          -1.7426697614257587,
+          1.4690694634778492,
+          -0.5234846918832197,
+          -0.08346160035159644,
+          -0.6793376264841884,
+          0.5197746260267357,
+          -0.20256283033099098,
+          -0.5786642787306895,
+          0.033988452389488666,
+          2.1079534949797916,
+          0.5249951533561283,
+          3.2859040132370496,
+          -0.03556412760564087,
+          -0.3918161230352364,
+          0.05408860079663658,
+          -1.6074274266850908,
+          2.6580713141718597,
+          0.4298612668982936,
+          -0.349494676650165,
+          2.207345044873742,
+          -1.0083509984398549,
+          -0.9406031304926101,
+          1.0253454413826293,
+          2.3295266157818357,
+          0.6779979522518476,
+          1.8770707119971273,
+          0.48630908466755474,
+          0.9321680841183753,
+          0.8756754329665866,
+          0.8165614288976932,
+          1.3572197070325756,
+          2.379675166603362,
+          0.2508349244632714,
+          0.6255914503685158,
+          0.7724520268770523,
+          1.3153334977755926,
+          1.6766909800207381,
+          1.7496332009676658,
+          1.1446572067887615,
+          0.1794071029440536,
+          0.14667162392743371,
+          1.8418475122243962,
+          1.578754614108666,
+          1.333845357426184,
+          0.8510373537191268,
+          0.05798867213364578,
+          1.48822325579339,
+          1.3238217678478428,
+          1.5791897544524542,
+          1.466405864697962,
+          1.325416193000883,
+          3.0437491125779363,
+          2.6848002158892523,
+          0.5680834660751737,
+          1.9595981228788233,
+          1.7354191241481831,
+          1.7680167294134388,
+          2.014819796363583,
+          0.7741381521315858,
+          2.930515206665758,
+          1.0552625157871678,
+          0.014749742446423464,
+          1.85050777749746,
+          0.6633979602541451,
+          2.3105475476528223,
+          1.1266111361676547,
+          0.762435907431027,
+          1.595231499388788,
+          2.0619872593846993,
+          3.1529635509884044,
+          0.7885241297329334,
+          0.5357350581827034,
+          1.4004179468303974,
+          0.8830258481075495,
+          2.5986658594716374,
+          1.3941819647268212,
+          1.5645611380247981,
+          3.0796523844535164,
+          0.0925057049540351,
+          0.1939355863199923,
+          1.9294582067940365,
+          2.2054817442678223,
+          2.5520289047654545,
+          0.30787157683260746,
+          1.1609692985033964,
+          1.721568312757586,
+          2.637955731784185,
+          1.4716952017167828,
+          1.6654955571449568,
+          1.7317348750517123,
+          1.3965359873444037,
+          1.9950662926228233,
+          1.4314647244059726,
+          2.5112274242165062,
+          2.859496768772308,
+          0.5942167591047826,
+          1.1380700822291037,
+          2.9513307807132914,
+          0.6443081640406121,
+          2.900151912872512,
+          1.050204573783279,
+          2.4231976574961505,
+          2.413578444201129,
+          1.1347974071000173,
+          0.7989922170386794,
+          2.139849064346813,
+          1.6686097776208197,
+          1.618800004811173,
+          1.3579053836350985,
+          2.6284984509555147,
+          1.499644804873291,
+          1.0208834366577217,
+          1.8129523954991078,
+          0.8418462278410246,
+          0.8289200254341289,
+          0.19270673128069848,
+          1.3834262319491488,
+          1.5773053447302043,
+          1.560770052330433,
+          2.541677224798623,
+          2.8233692339459395,
+          1.6285141301200854,
+          2.0636979126409773,
+          1.0487236530562296,
+          1.1220569574363681,
+          0.5685569592331481,
+          2.8372869912684635,
+          1.660181102448909,
+          0.22157109677378428,
+          0.7463650694111255,
+          0.20502003961306114,
+          0.748777337635331,
+          0.9776450003248081,
+          0.8610177214853421,
+          1.0179473323210304,
+          0.34043197950356807,
+          0.40486447239876855,
+          0.9602938428260436,
+          3.6568054988180716,
+          1.9719791776968059,
+          2.435269912000194,
+          2.5514183485759188,
+          0.3915130285841347,
+          0.4394712163761969,
+          2.4223287109792615,
+          3.483109110609542,
+          2.119734337279832,
+          2.007652742745586,
+          1.338681708225234,
+          0.1376886788310966,
+          0.06451984010561262,
+          2.502974757247305,
+          1.740532192572341,
+          1.3475681194620837,
+          2.394046868509778,
+          0.7079018271919406,
+          1.3804363859964668,
+          0.0892575038222112,
+          0.3833616604897463,
+          0.31033538376114644,
+          1.2625759851059764,
+          2.311395217235673,
+          1.7535812099364168,
+          1.2412155998397507,
+          1.356823468504892,
+          0.9692730650232215,
+          0.7549598918710008,
+          1.8855838009709194,
+          2.8666740780720534,
+          1.3429819573857804,
+          1.6210569290896997,
+          1.0672326007938793,
+          0.02755725448486246,
+          2.0062182191789786,
+          0.6555627715287431,
+          1.8698486793615592,
+          1.2048923828643807,
+          1.790000010465829,
+          1.8348458151098646,
+          2.220796155632648,
+          0.7239249754486029,
+          1.8452598464359848,
+          2.86877173848265,
+          0.46578257294958036,
+          0.5111457149718506,
+          0.5195364911849566,
+          1.669219851520837,
+          0.7970947926522772,
+          3.0617994657066774,
+          1.225686830507833,
+          0.22277583490711506,
+          0.6952069585033123,
+          0.8972610292134848,
+          3.0650173515092307,
+          2.6284555931089404,
+          4.33646127235674,
+          0.6634523971354382,
+          0.4154997497619882,
+          0.37398166317002657,
+          2.4027064021997395,
+          0.9314319582835388,
+          2.747476903131015,
+          0.33045145386706376,
+          1.1712926944009563,
+          1.602148051532249,
+          1.4955022401750195,
+          2.6733090984368073,
+          1.63030699817452,
+          2.9743812484027394,
+          0.5514195526539198,
+          0.2609918077401766,
+          2.497503345228131,
+          2.4018618125137943,
+          3.311326121508564,
+          2.235376113998491,
+          2.1427400264918113,
+          0.6476647127037145,
+          0.30594745786366784,
+          1.032774590638698,
+          1.4123097931216386,
+          0.8374736221035816,
+          1.5646588087429518,
+          1.827492197284586,
+          0.4105767235147332,
+          0.6649540813896473,
+          3.293282653701268,
+          1.019288499325982,
+          2.2760510559149445,
+          0.9007399899426287,
+          2.6400290541974076,
+          1.7889492162215896,
+          1.8607790841922842,
+          0.47309401146509167,
+          3.3039026589057148,
+          2.9061997334430556,
+          2.0097027336009416,
+          1.3556493893234693,
+          2.6645084526231972,
+          1.2508668747091063,
+          1.8006726152431178,
+          2.0246509733373665,
+          2.133991811155438,
+          2.8756019847098715,
+          1.308485710889015,
+          1.60910629302369,
+          2.41281366462958,
+          0.6207866701401861,
+          2.447554747576409,
+          1.246036670640006,
+          2.44664038565994,
+          1.0486821699461955,
+          1.0023946229799552,
+          1.0949186858094275,
+          0.020362705262524816,
+          1.0576721563002105,
+          1.2336165523936289,
+          0.8621884903923618,
+          1.5599936290821899,
+          2.5979738911830363,
+          0.7288725645027239,
+          1.2661524810437,
+          0.10352258114955182,
+          1.369949862952478,
+          2.2036139094702447,
+          2.719359767482037,
+          2.385912231456179,
+          0.4431622480770364,
+          1.7701118567684409,
+          1.492174300491191,
+          2.8172008821491206,
+          1.4161936452024484,
+          1.1357453442782424,
+          0.2361229544207587,
+          0.8788652584096158,
+          0.2954889966286107,
+          2.846920213973399,
+          2.9170704744610605,
+          1.6394289847004824,
+          3.2750862569719255,
+          1.0754088114537177,
+          0.21299848804389443,
+          4.282977079220075,
+          1.90391418694301,
+          1.748440482395718,
+          1.164044673833113,
+          1.0241478963656825,
+          1.1394327818918135,
+          0.6947020844495875,
+          1.6735240871289554,
+          0.447694523267118,
+          1.5718456621338,
+          1.0808964107228085,
+          1.360754820236704,
+          1.6802841131932547,
+          1.117907161189887,
+          0.9701734573874105,
+          1.6914849711587954,
+          0.8399565026019161,
+          0.48225108536172545,
+          0.1377059834208434,
+          1.367830109372207,
+          2.020745487321406,
+          1.8883820175702386,
+          1.567112580364466,
+          0.6862003363916829,
+          1.6560454584175788,
+          3.7074884725769692,
+          2.2920662845113373,
+          2.415538267778972,
+          0.9150443561852877,
+          2.3204228842146883,
+          2.6301675327736023,
+          0.17428661235746867,
+          2.1979360656646265,
+          1.5388647696745554,
+          1.2304226427358185,
+          0.30258204842816794,
+          0.1955594076190751,
+          1.4969794101296832,
+          1.480647726849556,
+          1.9558444487875049,
+          0.7206505687017306,
+          0.8881133304609303,
+          2.1064598378885497,
+          0.4669381947710667,
+          0.7683933250539904,
+          2.6908232063311135,
+          2.3918667840246917,
+          0.5720427556765065,
+          3.029701172493983,
+          1.4522681521842666,
+          3.902381744020211,
+          0.43778873018553155,
+          0.4578075248644087,
+          2.1540797427046185,
+          1.8038010080268396,
+          2.079764163140605,
+          1.357384137891123,
+          1.718911595781294,
+          0.04708596728582903,
+          3.3225180983739335,
+          1.3957974150065613,
+          3.3616652856929035,
+          0.4977492970229205,
+          1.4310617107920143,
+          1.2405078584565372,
+          1.0941175614648821,
+          2.0983852549178836,
+          0.11729519463933136,
+          3.922473013210471,
+          0.7991980080820799,
+          1.0245999923707587,
+          1.4769566247174521,
+          2.320239519580409,
+          0.36431138795403806,
+          2.255371612761346,
+          1.164472687856987,
+          0.5717099578341784,
+          1.2283876201026005,
+          0.2533033228483379,
+          1.7579849232574176,
+          0.5090202530447981,
+          0.08640224328740942,
+          1.4852530097407406,
+          1.663517124419457,
+          0.9349526274523026,
+          3.7833725379761183,
+          1.898541235014805,
+          0.728864886755368,
+          1.8271485587643608,
+          1.1447419435298418,
+          1.849011367770533,
+          1.742554431692356,
+          1.580198233073197,
+          3.0423684072402932,
+          1.7609870997439985,
+          1.0421549308407518,
+          0.7072313823115058,
+          3.6959515943979446,
+          1.2928674621615783,
+          0.6981187481179341,
+          0.4893786779748396,
+          1.4945221797210924,
+          0.1098643555965555,
+          1.1443154496794292,
+          2.3430578416721906,
+          3.08186976503082,
+          1.3435147216710615,
+          0.8768881971322687,
+          1.203702655295937,
+          3.4308531923246193,
+          1.3736382618668364,
+          2.7476172318035132,
+          2.1817632592094287,
+          0.32520386064762963,
+          0.4390643495870088,
+          0.0029105736216031852,
+          2.088732649121388,
+          2.246877071789937,
+          2.4497567493504295,
+          1.2194182410106682,
+          0.02819869094014138,
+          2.5485276916986304,
+          2.0420013282071032,
+          0.7083229844592498,
+          0.9653575687746894,
+          1.9544966941275193,
+          1.4913859533227658,
+          3.0336984909816866,
+          3.782909731195616,
+          0.5868708327879095,
+          1.2428397215793932,
+          1.3756328355835983,
+          2.5983566746783713,
+          1.7753503355272464,
+          3.7431955504432493,
+          0.5844720524205556,
+          1.5958703690820601,
+          0.022489659341337176,
+          0.1369431784347781,
+          1.1400845838070195,
+          0.41091937325839345
          ],
          "z": [
-          -2.4347362800044015,
-          0.18313090693483677,
-          -5.181903809285064,
-          2.274802239134218,
-          0.8417616749079653,
-          -0.2323527994086349,
-          4.429658725849382,
-          1.9790695822804298,
-          0.4049661883273283,
-          1.3818811317523192,
-          -1.1492341628039313,
-          3.6456412003948295,
-          3.0114389677334645,
-          -0.42440616485199545,
-          3.3853557373608925,
-          0.8068349029821945,
-          0.2598475465011428,
-          -4.6815414730530485,
-          3.9356036799689362,
-          2.4622263550098387,
-          5.053878163228038,
-          -3.5575375823443256,
-          0.4244224402927802,
-          -1.596689077735587,
-          -3.363266077020781,
-          0.10264427158788995,
-          -0.44140932732425936,
-          -2.148495767382773,
-          -0.07581995865758365,
-          -6.334790100857005,
-          3.8845455279499546,
-          2.907197216575074,
-          2.0278930530007773,
-          0.23660167805291538,
-          -2.226732664736304,
-          -0.7846719328007574,
-          -0.25212099073439326,
-          2.9367841164180644,
-          1.0600745619549252,
-          3.979516254519564,
-          2.298555231293722,
-          -1.1510057526299533,
-          -1.278899950642904,
-          4.9730534008148775,
-          -0.06672430583077878,
-          0.9315657270750535,
-          1.2570506950513451,
-          -3.6315937906676985,
-          -0.07527540972933477,
-          -0.5342914766238869,
-          -4.46416428218323,
-          -9.579919169851244,
-          -5.584960128816421,
-          0.7403940230084105,
-          4.0417150156572434,
-          -0.9395078987333897,
-          3.83084659471556,
-          -0.5703241274011227,
-          -4.0650640016517166,
-          -2.4839795053659044,
-          1.1001068322573635,
-          -4.462492476823413,
-          1.6906857025370108,
-          0.2684964774474853,
-          2.3450832707090123,
-          5.760026151896116,
-          0.3974728776735976,
-          -1.7257702623924365,
-          3.1720921152382755,
-          2.337688105763087,
-          2.7701926880989296,
-          -0.22552493456825423,
-          -5.7010814725304595,
-          -0.5904813212842162,
-          0.5288349234708787,
-          1.759147784430405,
-          -5.423724805162229,
-          -1.1003444574363086,
-          -7.774732743383796,
-          -1.9421303393601357,
-          0.8688434400692968,
-          4.318119462829965,
-          -6.494050982726991,
-          0.2957682467272264,
-          1.0847927302963292,
-          -4.841262663289496,
-          2.544338222635069,
-          -2.670371386868126,
-          -4.272871143459819,
-          2.13340005236065,
-          1.7215626000753903,
-          -4.033634994472133,
-          -0.7239085264132853,
-          2.904344363173738,
-          1.745428693586971,
-          2.2112029280193086,
-          -2.5274266073799705,
-          1.6199605055663462,
-          -0.5411256195706536,
-          -0.37257307818675967,
-          -1.794394106712875,
-          -2.3462734393608384,
-          3.090771258910068,
-          -4.453713867066808,
-          1.1452430539228888,
-          3.5150037668083796,
-          -0.6654555194643862,
-          0.15841053999833266,
-          -4.941597760781299,
-          -1.5217172005344037,
-          -1.925725516094954,
-          3.591730358656495,
-          5.707888649248504,
-          -1.792370237893131,
-          0.4199419514540164,
-          -0.9736590061693077,
-          -4.174284683415724,
-          -0.9381927604199775,
-          -10.023747907990423,
-          -0.31057597749799304,
-          2.1516737085069164,
-          -0.8568558805653254,
-          -1.6033771077957524,
-          4.524299968651802,
-          3.32851855202821,
-          -0.857289921155922,
-          -2.580483673045922,
-          -4.844643691559915,
-          0.5074291255789017,
-          -0.7504691011260166,
-          -5.950133165411665,
-          -1.556982028698728,
-          -4.851081803342545,
-          3.5092840998683323,
-          0.9292329211032262,
-          -2.6783178223828887,
-          1.1446463307558645,
-          1.3516953921204387,
-          3.1290951280415755,
-          -2.9119123988276296,
-          -1.180042045769018,
-          2.5336836237473883,
-          -8.220367356926337,
-          1.6618345050394998,
-          0.7740917182874719,
-          -0.9540863204183222,
-          -3.4118546482393977,
-          2.4503623083791806,
-          -6.03017159816937,
-          0.35429156607851553,
-          0.6899710497836506,
-          5.565978963699254,
-          4.4603066545883125,
-          -2.3122141484023944,
-          -4.1661047290567375,
-          -1.94031566749722,
-          9.019031428849516,
-          0.6307836425393406,
-          -3.9121725140806602,
-          -2.6888123882363417,
-          1.879973279491027,
-          1.391295670737121,
-          3.286557314522358,
-          1.2830416080093314,
-          5.335981211156319,
-          3.8507324476212137,
-          -0.033311743341632095,
-          3.800751424359587,
-          4.937241972412896,
-          -1.319616732247671,
-          -2.0736926801138478,
-          3.672944419091453,
-          -0.7239018883967461,
-          -1.0950753683204046,
-          -1.341025171688895,
-          -3.5057913621707133,
-          2.885792232084292,
-          -0.9051284563033626,
-          -3.8203538526054595,
-          2.343116058252927,
-          1.9308926212979165,
-          -0.7193160625401717,
-          2.2054824468410295,
-          4.6122744989738615,
-          3.9644860224116667,
-          3.39576643711069,
-          1.0610891110541376,
-          -0.5108069055114858,
-          2.661180631562992,
-          -0.9552755403267368,
-          -1.3026206745476783,
-          4.227916467509211,
-          1.176002369698877,
-          4.091495659187616,
-          -0.30556150196246656,
-          2.789275723106422,
-          -2.829268577886142,
-          3.7285215221964454,
-          -2.27956225379187,
-          -4.450908835741883,
-          -3.097702794402129,
-          -3.30080232252545,
-          -1.5631047694017992,
-          0.5236166690223574,
-          -2.651784355788978,
-          -2.316598439664528,
-          0.9178013844678464,
-          2.193910814166672,
-          0.6038868474632401,
-          -0.6142146431182958,
-          -5.0939255146081726,
-          1.4747823436815704,
-          1.9171280684599497,
-          -1.913008267789452,
-          -0.05277666081015362,
-          1.4929861380104197,
-          0.46054492358835597,
-          -3.1578426850013406,
-          3.7707719668198805,
-          -1.5339923921957184,
-          0.6774013323721412,
-          -1.0381338596624086,
-          7.622481161182308,
-          -6.3016099986522205,
-          -3.7205564360646406,
-          2.565518426914736,
-          -4.9745300148580345,
-          2.0662451629869714,
-          3.4569726664796705,
-          3.6896967787230244,
-          -0.09696080592951223,
-          0.26666267514865905,
-          5.595927119281588,
-          2.796071049455837,
-          -3.594553682213463,
-          -0.46657962676224646,
-          -4.111882788634647,
-          4.89275612572847,
-          -6.644371932825091,
-          -4.829881562759628,
-          -1.6428711149061526,
-          -5.898611143757126,
-          5.04730410959333,
-          5.181310951333527,
-          0.3527973653605543,
-          0.13255426524444697,
-          4.3066556421844195,
-          -1.427109080221042,
-          -0.28949627090189795,
-          6.920454053397536,
-          3.7756079044037367,
-          4.341091963245113,
-          -0.6484460632460356,
-          -1.4505694427944902,
-          -4.36510583891927,
-          2.165855604388161,
-          -2.4925628642589968,
-          0.007189475168045477,
-          -1.5653283813929886,
-          -3.5946665763776453,
-          2.120852925491775,
-          -1.1956673642969138,
-          3.594859727731767,
-          1.7956785619192845,
-          -0.6442654951350426,
-          1.2557683464720124,
-          -4.519050544456255,
-          0.3018049668595069,
-          0.9744590507734089,
-          -6.007390211022036,
-          3.7779780091639643,
-          0.3264227353799104,
-          -3.392340372411085,
-          -4.955988850787028,
-          -3.284331866839988,
-          -2.456475436133814,
-          2.7978360849908173,
-          -1.5092978106642796,
-          3.0514124423654474,
-          -0.3801965014616818,
-          4.409228096543457,
-          2.824998852157672,
-          1.17039965878506,
-          1.7133375529987187,
-          3.2579916897803898,
-          2.5729939730204294,
-          0.6871435190098267,
-          1.7865704240032148,
-          3.16754385153935,
-          1.4949177197747403,
-          -1.1069153562009058,
-          -0.9413615175703199,
-          -6.728559785984053,
-          -3.627374855144771,
-          3.4360948875295456,
-          2.496319107706837,
-          5.387924753144097,
-          1.2066655769763472,
-          3.6646143857150633,
-          -2.5578325881829973,
-          3.242866966185388,
-          1.572528509977364,
-          -5.139498355142643,
-          -2.0652207686545383,
-          -0.016344710761113056,
-          1.9885193548713356,
-          -0.6690160995989288,
-          5.067755791499926,
-          -0.8671360662798391,
-          -4.3021218628466125,
-          -0.32241924373342157,
-          -2.9721994231671034,
-          0.9650311023629391,
-          1.1739797162860375,
-          -2.7405955966388804,
-          -1.6361352366134565,
-          1.122348281940579,
-          -0.1766939693717645,
-          1.8426167061098206,
-          -2.3505282314985365,
-          1.3274521566285564,
-          -2.522040904287917,
-          -7.431478521573909,
-          4.135884345311226,
-          1.4757558765530188,
-          0.1476787818494393,
-          -0.7346664593887625,
-          5.88220345132354,
-          3.140216319685536,
-          -1.440421429142522,
-          2.0225940663157087,
-          2.380355568996949,
-          2.96593757155955
+          1.4857926560235217,
+          4.381767361435364,
+          -2.5443356792658065,
+          1.4937025818817729,
+          1.2430925454680253,
+          -4.0050160356806295,
+          -3.76828202181442,
+          0.5055372048120121,
+          -2.4986277642404806,
+          -4.755172934528057,
+          1.9130337423947017,
+          4.158373451695833,
+          -1.035467966466575,
+          4.525061042706734,
+          -3.302688108721227,
+          -2.4550666331623736,
+          -0.3709316089164023,
+          -2.2596381910609136,
+          2.5778744945306444,
+          2.7341467005969458,
+          -0.3454118876189982,
+          2.0245070534248297,
+          -0.21551021919110713,
+          3.060249147418797,
+          -1.7720559149230963,
+          0.8055146817108714,
+          4.050907241170941,
+          1.0442481596632343,
+          4.535912035657396,
+          -2.6100870038118513,
+          2.500919032080483,
+          3.2652397973712057,
+          -4.8935081469119375,
+          -1.1022110030691818,
+          -5.175427665590544,
+          -1.8701238909731002,
+          4.28630663163715,
+          4.077212384850257,
+          2.360611479742741,
+          3.192941704424297,
+          -5.633340430888399,
+          0.4714554956182466,
+          3.334795690429188,
+          0.6087921125829787,
+          3.8904078778320157,
+          -0.6988117132796088,
+          -0.3636133325416733,
+          2.565894127749263,
+          -2.1760477673232517,
+          -4.866581386128681,
+          -2.6414661548534086,
+          -3.6242041459841987,
+          2.0563159597712737,
+          -0.11267017326472306,
+          2.6652586387215598,
+          0.3143626228144525,
+          -1.7651865819880044,
+          0.4146193401040099,
+          -0.7851580370849556,
+          2.8146446989128284,
+          4.6119554616670415,
+          -2.70293933700289,
+          3.5583163881961086,
+          1.8339506931143505,
+          -0.08850698811211011,
+          -1.6557344661294744,
+          -0.256736175858606,
+          2.6783928369186283,
+          -1.4413797214640276,
+          -0.8865673046838216,
+          1.1142126057118515,
+          1.4734757845550206,
+          2.370818883275242,
+          1.8490489443699802,
+          -0.8861603349145302,
+          2.259994396568696,
+          -0.7331088569956945,
+          -1.5120421972943792,
+          -4.605624085700943,
+          -4.398724018380441,
+          -3.9590850330740373,
+          -5.069721685830893,
+          -2.903243148003564,
+          3.578777539166018,
+          -1.0711323826655148,
+          -5.046133625756687,
+          -5.784173097206867,
+          3.189641934287871,
+          3.6130572324159287,
+          4.2048999460670204,
+          -1.3985440384773158,
+          -5.232088356159104,
+          -5.5656930047701945,
+          -5.017179405014726,
+          -0.5458865615493185,
+          -0.6082968258513279,
+          3.101040995275837,
+          2.4497833482550027,
+          -5.046474607610694,
+          -1.6550364236965924,
+          4.537606407840527,
+          2.224962337235156,
+          -1.1775515881100374,
+          0.7469910069434018,
+          0.10213767537245744,
+          2.95041412977604,
+          0.46872745678152583,
+          1.5281529469328197,
+          -0.9846616981012097,
+          -5.1903751033702195,
+          -5.674816110730047,
+          2.237675208201071,
+          3.012648974698725,
+          -1.9820825707181702,
+          -5.721686591292438,
+          -5.643047352423225,
+          0.5306512364681488,
+          1.7602874731127258,
+          -4.247024185308642,
+          4.575937954730528,
+          -2.3593923324006787,
+          -5.236939856291944,
+          -0.0017025906895673515,
+          -5.083166316893744,
+          1.3444920575165327,
+          -2.8132787198597238,
+          2.316308028315876,
+          -5.513943278167621,
+          1.428796116642566,
+          0.1068530205264091,
+          3.0866861282168037,
+          -4.115434900703257,
+          -4.678110361300967,
+          1.4571075082173657,
+          1.8459471779884584,
+          2.7531978868809377,
+          -1.3816179322647208,
+          1.3108498734025815,
+          -0.8237048909368285,
+          -3.3911654297050844,
+          -2.3239369639740075,
+          -4.971036352478267,
+          -3.4865168461636276,
+          -5.680733205492347,
+          -5.1866238116703824,
+          -4.812949559696777,
+          -2.8185310975437425,
+          -0.44837909390004604,
+          -0.481310066842739,
+          -5.597823478065059,
+          2.9635256504227447,
+          4.502237174367662,
+          -2.0628983387636013,
+          3.8840225625963383,
+          2.491136865357805,
+          2.422158514022887,
+          -0.3759426028317101,
+          0.9931588182714277,
+          2.8187875613649167,
+          -4.011722417426025,
+          4.516566996601731,
+          0.8988428525604482,
+          1.1159714165906536,
+          -3.969333666813437,
+          -4.60470682282888,
+          -2.7117555662579553,
+          3.6358613717960937,
+          1.4887821541321147,
+          -4.712173855423789,
+          1.6405435660512833,
+          -4.497349638571103,
+          2.102864179125234,
+          0.49115435307630406,
+          1.7761523226608817,
+          4.079384622244029,
+          -3.5527778052812584,
+          4.179959206679595,
+          -2.1412904289166024,
+          2.9320920939332398,
+          -3.975119983548019,
+          -5.5587645606512135,
+          4.297248192123736,
+          -0.9130181850010644,
+          1.3599332057457758,
+          -3.8808427910287504,
+          -3.1066511726839194,
+          -4.5711597923157505,
+          -1.3459924704715647,
+          -0.18651103485425935,
+          -1.3513964739429838,
+          -3.093096390582036,
+          -4.86842000341737,
+          2.996746134809851,
+          4.100233260103619,
+          -3.3627326799465598,
+          0.7017075178131114,
+          2.656884321413938,
+          -5.030834527434004,
+          0.9461911031041428,
+          -5.087928594726993,
+          0.47708223691393314,
+          -3.4890257880850757,
+          -1.9420026563083637,
+          2.829603502799272,
+          -5.460286784578183,
+          1.0738971078475377,
+          -3.0191169375705385,
+          0.3749168698794456,
+          1.0939030141853552,
+          -2.2192788853992766,
+          -4.599908682580625,
+          3.1127129094933847,
+          -1.3501783694326717,
+          0.7767079841389286,
+          4.560679632406376,
+          -1.8898698381065726,
+          -0.7523560439807495,
+          -2.5100463804061315,
+          -5.042459573297267,
+          -1.8330317614109433,
+          -1.355792882133211,
+          1.7828570752588178,
+          4.527105979481038,
+          -4.241423979906797,
+          -0.3857583926395858,
+          -5.08439571318458,
+          -1.1249224865653407,
+          -5.563926965144752,
+          -0.5164243769320089,
+          2.64966527026374,
+          -3.3691963306135926,
+          -0.2145666452500059,
+          -3.476869611645776,
+          1.5918097036898722,
+          0.9197061720275554,
+          -1.7637629642954131,
+          1.483987552762053,
+          -2.889661565327851,
+          0.10204375410250677,
+          1.1464065892295903,
+          2.120115772669397,
+          -2.2125873670453444,
+          -1.5278873783441647,
+          -2.0842846499620906,
+          -3.2962304801848745,
+          3.3928589632745547,
+          2.9631302627905773,
+          -0.4880363080091321,
+          -1.3544424038827865,
+          -2.7748975256347794,
+          1.675711231814324,
+          -4.116883377358429,
+          0.22055805995584699,
+          -0.6541262876270029,
+          1.067489720989184,
+          3.01453267126377,
+          -5.330001087211724,
+          -3.7359912513716265,
+          -2.5131408424544426,
+          -4.019251745770493,
+          2.418876286372991,
+          0.037047607537854965,
+          0.9872022480751017,
+          -2.2792019337716285,
+          2.610755944605896,
+          3.528471851250539,
+          -2.928923378030009,
+          -4.997650755465384,
+          3.3417007060502675,
+          -4.765668525868719,
+          -1.7792626479490599,
+          -0.5428341227367017,
+          4.622936015594816,
+          -5.670532553535698,
+          -5.361555142857055,
+          -2.785680790335242,
+          1.67195677458123,
+          4.527954239778006,
+          3.8887557453303723,
+          -0.4752010148997847,
+          2.9448171375499674,
+          1.3431541788849097,
+          -1.5641345463677512,
+          -4.471073949571142,
+          4.224931803057786,
+          -5.332150832830268,
+          -5.189827109321532,
+          3.1045482218159295,
+          -4.243372606041261,
+          -1.2813035001411954,
+          1.4297177914352384,
+          -3.303946026816274,
+          -3.5899409599071,
+          -1.690264221980267,
+          -1.723735802347921,
+          0.7057558927644152,
+          -0.043139749829844476,
+          -1.530151312155704,
+          -4.562566787650586,
+          1.2436270265087401,
+          1.044949720679825,
+          3.3922563672523003,
+          -4.128221094818689,
+          -4.701118935250024,
+          1.7379099761668613,
+          -2.0133206720087795,
+          -1.141352808237948,
+          2.9361079454591,
+          -5.562269360200436,
+          -1.5115532149637172,
+          0.5489727878149564,
+          -0.25169398761252726,
+          -0.934620489347755,
+          -1.2409123379494114,
+          2.1531750718653306,
+          0.6970811720195496,
+          1.067828293586909,
+          -0.856709126937174,
+          2.3751927446813257,
+          2.6211313535561365,
+          -2.4455338687055788,
+          2.5417795126413614,
+          -0.4278954556654533,
+          -5.36438445758809,
+          4.611451304645633,
+          1.644263462976622,
+          2.785363983549588,
+          2.6620020903112733,
+          0.4437864122761601,
+          -5.479948352917381,
+          1.1865091322321568,
+          0.2161828945874973,
+          2.1240763505289495,
+          2.8866987128358543,
+          -3.9120248828857216,
+          -5.747732479660014,
+          3.8709079675848086,
+          -2.4162922619003235,
+          -4.616641212297958,
+          4.0563042681338475,
+          2.1753073590521828,
+          2.6569521044090125,
+          2.8164553594353334,
+          -2.0658107640342442,
+          3.174494525470073,
+          -3.8510763837879054,
+          -4.06432576827533,
+          -5.314798291646862,
+          -5.217960120874364,
+          3.216610009084305,
+          -0.057668214627434544,
+          2.4505228432082538,
+          0.6857402425542185,
+          -4.02216017505398,
+          3.328054736352077,
+          1.0718994497862413,
+          -3.4005830620806177,
+          0.8338546298868437,
+          -0.886381312848961,
+          4.103949096007978,
+          -5.458025464289493,
+          -4.6326529847972235,
+          -0.9446762379784497,
+          -0.888798071936443,
+          1.1430454449040317,
+          -4.290285200304713,
+          2.038543592927483,
+          -4.790957134198212,
+          4.492302264615469,
+          2.3805400899449998,
+          -2.917236965108602,
+          1.5037750785106159,
+          -1.3598273677694461,
+          -2.4235175395813924,
+          -3.2696574615545098,
+          -5.4760806233150205,
+          -2.2484050005080736,
+          -2.6965268420023008,
+          1.8263449949889905,
+          -4.7133836534584095,
+          1.9780338024787154,
+          1.5209108417755335,
+          1.4367930825425397,
+          -1.7636452065129156,
+          4.458338399440691,
+          -4.4122394816644235,
+          2.1082204029561984,
+          3.736437586191099,
+          -2.218151118503598,
+          3.075841014705863,
+          -3.9395080347459857,
+          4.56599258659569,
+          -1.2048788280250537,
+          1.214767913563299,
+          3.8901384909427383,
+          -2.4907921614367177,
+          4.157363027087642,
+          -4.358454544736108,
+          -3.9091999353913334,
+          -4.146744786857912,
+          -4.428926541310941,
+          -2.964955212356447,
+          -1.3329523052923333,
+          1.104305764444402,
+          -0.3229124483862549,
+          0.8867046178013975,
+          4.0160057558690445,
+          -5.765880791769935,
+          3.0561990474552507,
+          -3.083200669922567,
+          -0.8110166720739684,
+          3.2266955081468884,
+          -5.073861946531508,
+          1.3944952938849307,
+          -4.275632367676293,
+          0.5407512661376055,
+          2.8771485336026705,
+          -3.4741740057228854,
+          -4.657723871839156,
+          3.643649225043469,
+          -3.260057915425624,
+          -1.087453405754724,
+          -3.089860535996897,
+          2.5746871763638532,
+          2.799980977774619,
+          -5.46509720015794,
+          3.5662776132910343,
+          -1.367035206770299,
+          -4.298865695784676,
+          -1.3151961037500044,
+          2.657841778901674,
+          -5.513360752786348,
+          -0.37256279418181215,
+          -3.3886730785586066,
+          1.6864398757099837,
+          3.243496434225576,
+          -3.114168331573357,
+          2.948102051348214,
+          3.488775267339162,
+          -4.634146746702965,
+          -0.448448909444239,
+          1.5603435789580633,
+          -2.86947955396867,
+          -3.785649191925258,
+          -1.6313448166703965,
+          -5.210828661197522,
+          4.130869038530755,
+          -0.5924597221585488,
+          -5.143291326295304,
+          4.600743374421609,
+          2.429625777733505,
+          4.085617326284004,
+          -0.12660868426412097,
+          2.8565983041090073,
+          3.5206351284413726,
+          -3.973510234328046,
+          0.8154874858340087,
+          -0.9293469561215995,
+          -3.2109201574083563,
+          2.9322301271244386,
+          0.2319210819771147,
+          -4.446263232885183,
+          -4.197130333881253,
+          -0.2548985289573942,
+          -4.78671384787435,
+          -2.8315263700627096,
+          -0.4853483897890305,
+          0.19771886082808177,
+          -3.2505626577928104,
+          -2.4935767614949484,
+          0.2973153256462906,
+          2.6682278621853373,
+          -1.295114141543741,
+          -4.064643787319297,
+          -1.9732263344223369,
+          -2.956887177524135,
+          -0.6694791060181382,
+          -0.5359647482135612,
+          -1.9483060126693474,
+          -0.2011071937141411,
+          -4.290476634322041,
+          -0.6481287043694222,
+          1.2379374174015405,
+          -3.34715046315117,
+          0.7909578629488285,
+          3.3881253612107782,
+          1.9351084401893583,
+          1.703150114300529,
+          0.28250359950404036,
+          -2.3654941041662765,
+          -4.41756650836629,
+          1.552162849978667,
+          0.35226216373422137,
+          3.195814194170503,
+          -3.2281080565987867,
+          -2.4886312509898585,
+          4.534026284061025,
+          -3.9830903696215225,
+          -1.8402599625272495,
+          0.30262877606602157,
+          -2.7235391338767307,
+          -0.49396110487189215,
+          -0.2644753353007694,
+          -5.457713571609493,
+          -1.4822692214308848,
+          0.4081749176563827,
+          -4.0762650664647815,
+          3.406973252993306,
+          -2.4873723655948066,
+          -2.1627838714057854,
+          -5.5857102148150055,
+          -4.4529599884698285,
+          3.5171166038215427,
+          -3.0120626497189593,
+          -2.5316332158298955,
+          -3.6028967741400937,
+          2.7603054286259185,
+          -3.9449965294533187,
+          3.493619911719862,
+          -4.053961903312783,
+          -4.192278798053905,
+          -1.262138557194639,
+          -1.4965348331706245,
+          3.3395778572333876,
+          -5.616363794339182,
+          -2.6627975646688555,
+          -0.4583038441034759,
+          2.944294723887235,
+          0.32393416338224235,
+          1.4606987875059243,
+          -5.522290364156413,
+          3.518514655678893,
+          2.8354451266329486,
+          -3.148721580188758,
+          -3.283734897439775,
+          0.954833948288103,
+          2.762235826296929,
+          -5.433151219534037,
+          -1.3085956746850806,
+          -5.098569425327838,
+          2.2622702859770145,
+          -4.181828328440203,
+          -1.4243163860308528,
+          0.7135091078949012,
+          -3.972990205783846,
+          0.14773705226548195,
+          2.407859394230033,
+          2.848124778370898,
+          -1.9566303710865833,
+          -4.415437900988269,
+          3.6028556922017634,
+          -4.703532357497033,
+          -1.3250282530601227,
+          0.836253191080579,
+          0.15442818715935314,
+          -1.976172102551971,
+          -2.4585784779730004,
+          -5.768390887502674,
+          1.5846704107573215,
+          -5.796627505702217,
+          -0.2446511627199932,
+          -0.07099539497535723,
+          0.6944589241560708,
+          -5.079406669419764,
+          -3.9554498330273913,
+          1.8261376304750767,
+          0.19408594729998008,
+          3.4691046906211698,
+          4.4923459967922375,
+          4.054715554543955,
+          -2.7907809215298642,
+          -1.0800367389046865,
+          -1.5881917180622427,
+          0.5884874185764737,
+          -1.3231255362604184,
+          -5.321256398895139,
+          0.6449232703057781,
+          -2.436240580163542,
+          -0.8425839291447552,
+          -3.7144278632334635,
+          -4.39049905658012,
+          -1.8291362200625847,
+          -5.308178078283015,
+          -4.018179294345206,
+          -2.2305986082023566,
+          -1.879001866446321,
+          -5.719507736712784,
+          -0.36376623963253696,
+          -4.666557176016586,
+          4.049895400960332,
+          -5.363444834662388,
+          -4.298377694162676,
+          2.5836501661244755,
+          -2.002800475025678,
+          1.1071454690261469,
+          -0.04071367874332221,
+          3.2344096483563485,
+          -0.03423119755783155,
+          -5.095028292568272,
+          -2.2518129355902663,
+          3.5346156521299514,
+          3.3166460042407175,
+          0.744289019176688,
+          3.4116851872179668,
+          -3.8504449596807495,
+          -0.2979488155367136,
+          -3.7067486452815843,
+          3.9223177070755204,
+          -1.9126431002726823,
+          1.227166606035592,
+          4.003636233077008,
+          2.832711134687634,
+          -1.0195714893738579,
+          2.640413828418869,
+          0.7478601919188979,
+          -0.961057521123224,
+          2.2925741782481817,
+          1.3197475270379053,
+          3.5572935603451823,
+          3.38261807944557,
+          -0.2928346752255653,
+          -3.4356695199595046,
+          1.0777972083069054,
+          -0.7382817758816751,
+          -0.12976102907086418,
+          -2.1599954801540773,
+          3.971607185203104,
+          2.1790084074049414,
+          4.444167384575571,
+          3.7063105324778762,
+          1.5497998006051361,
+          3.3317497506774805,
+          0.25750652633034576,
+          3.092031728117999,
+          -1.336722850024473,
+          0.5335755985114217,
+          4.462101798775643,
+          -0.39262109810631607,
+          -4.373871538610657,
+          4.535352180851185,
+          -2.597723334201584,
+          2.0605249869728794,
+          3.3957409780696883,
+          -0.7130517225996122,
+          -2.089482979064829,
+          0.7171693628051736,
+          1.686492726241637,
+          -4.412144657223996,
+          1.7402386176248887,
+          1.2593816566814304,
+          -3.0666504740821288,
+          -1.8156419978362477,
+          -5.0230130381310305,
+          1.405060020158417,
+          -5.404980525768534,
+          -5.160569401896935,
+          1.796658127682507,
+          -5.234098035281017,
+          0.0036741931924550997,
+          0.7216432715232912,
+          -4.596717152422706,
+          3.6535151015419833,
+          -1.5004162932825027,
+          1.4619536014821106,
+          -1.93958505937337,
+          3.386704339190117
          ]
         },
         {
@@ -26944,1345 +41529,2677 @@
          "scene": "scene4",
          "showlegend": false,
          "text": [
-          "Complementary_64_2",
-          "example_4",
-          "redundancy_32_2",
-          "mutual_error_2_2",
-          "Complementary_79_2",
-          "Complementary_8_2",
-          "Complementary_7_2",
-          "redundancy_54_2",
-          "Complementary_29_2",
-          "example_34",
-          "example_35",
-          "mutual_error_25_2",
-          "redundancy_6_2",
-          "example_47",
-          "Complementary_5_2",
-          "example_53",
-          "mutual_error_11_2",
-          "redundancy_20_2",
-          "redundancy_31_2",
-          "example_71",
-          "example_80",
-          "Complementary_85_2",
-          "redundancy_15_2",
-          "example_91",
-          "redundancy_37_2",
-          "redundancy_50_2",
-          "example_99",
-          "example_102",
-          "redundancy_14_2",
-          "Complementary_34_2",
-          "example_106",
-          "Complementary_26_2",
-          "example_119",
-          "example_121",
-          "example_122",
-          "example_123",
-          "Complementary_21_2",
-          "Complementary_86_2",
-          "example_130",
-          "example_134",
-          "example_138",
-          "example_143",
-          "Complementary_39_2",
-          "Complementary_95_2",
-          "example_150",
-          "mutual_error_7_2",
-          "Complementary_27_2",
-          "redundancy_59_2",
-          "redundancy_9_2",
-          "Complementary_93_2",
-          "example_166",
-          "example_170",
-          "example_183",
-          "redundancy_55_2",
-          "example_187",
-          "redundancy_1_2",
-          "example_191",
-          "redundancy_16_2",
-          "Complementary_30_2",
-          "Complementary_80_2",
-          "Complementary_25_2",
-          "Complementary_73_2",
-          "redundancy_41_2",
-          "example_207",
-          "example_214",
-          "example_216",
-          "example_217",
-          "Complementary_67_2",
-          "Complementary_51_2",
-          "example_230",
-          "Complementary_75_2",
-          "Complementary_69_2",
-          "redundancy_46_2",
-          "redundancy_7_2",
-          "Complementary_96_2",
-          "example_243",
-          "Complementary_59_2",
-          "example_251",
-          "example_252",
-          "example_253",
-          "example_258",
-          "redundancy_3_2",
-          "redundancy_28_2",
-          "example_269",
-          "Complementary_6_2",
-          "Complementary_84_2",
-          "example_276",
-          "Complementary_66_2",
-          "example_282",
-          "example_288",
-          "Complementary_88_2",
-          "example_295",
-          "mutual_error_31_2",
-          "Complementary_87_2",
-          "example_308",
-          "example_313",
-          "example_315",
-          "example_317",
-          "example_325",
-          "example_330",
-          "example_337",
-          "example_339",
-          "example_343",
-          "Complementary_52_2",
-          "example_347",
-          "mutual_error_23_2",
-          "example_358",
-          "example_366",
-          "redundancy_62_2",
-          "mutual_error_29_2",
-          "redundancy_22_2",
-          "Complementary_20_2",
-          "example_379",
-          "redundancy_52_2",
-          "Complementary_56_2",
-          "mutual_error_28_2",
-          "example_387",
-          "example_389",
-          "redundancy_40_2",
-          "mutual_error_32_2",
-          "example_397",
-          "Complementary_40_2",
-          "mutual_error_10_2",
-          "example_402",
-          "Complementary_24_2",
-          "example_406",
-          "Complementary_58_2",
-          "example_413",
-          "redundancy_63_2",
-          "Complementary_2_2",
-          "example_418",
-          "example_419",
-          "Complementary_32_2",
-          "mutual_error_18_2",
-          "example_435",
-          "redundancy_53_2",
-          "redundancy_0_2",
-          "example_452",
-          "example_454",
-          "example_455",
-          "example_458",
-          "example_459",
-          "redundancy_64_2",
-          "Complementary_28_2",
-          "mutual_error_22_2",
-          "Complementary_9_2",
-          "example_471",
-          "example_472",
-          "redundancy_30_2",
-          "Complementary_48_2",
-          "Complementary_60_2",
-          "example_484",
-          "mutual_error_24_2",
-          "Complementary_12_2",
-          "redundancy_18_2",
-          "redundancy_60_2",
-          "example_496",
-          "example_498",
-          "redundancy_36_2",
-          "example_504",
-          "example_505",
-          "redundancy_57_2",
-          "example_509",
-          "Complementary_14_2",
-          "example_520",
-          "example_524",
-          "Complementary_82_2",
-          "mutual_error_20_2",
-          "Complementary_61_2",
-          "example_553",
-          "Complementary_18_2",
-          "Complementary_33_2",
-          "Complementary_4_2",
-          "example_561",
-          "redundancy_65_2",
-          "Complementary_68_2",
-          "example_564",
-          "example_565",
-          "Complementary_37_2",
-          "redundancy_38_2",
-          "redundancy_39_2",
-          "redundancy_47_2",
-          "example_577",
-          "mutual_error_13_2",
-          "mutual_error_26_2",
-          "Complementary_74_2",
-          "example_607",
-          "example_608",
-          "example_609",
-          "Complementary_0_2",
-          "example_612",
-          "example_614",
-          "example_619",
-          "Complementary_16_2",
-          "redundancy_49_2",
-          "example_627",
-          "example_632",
-          "Complementary_57_2",
-          "Complementary_78_2",
-          "Complementary_19_2",
-          "Complementary_47_2",
-          "Complementary_53_2",
-          "Complementary_98_2",
-          "Complementary_10_2",
-          "Complementary_81_2",
-          "example_648",
-          "Complementary_17_2",
-          "Complementary_72_2",
-          "example_658",
-          "mutual_error_8_2",
-          "redundancy_21_2",
-          "example_663",
-          "Complementary_1_2",
-          "example_672",
-          "example_674",
-          "example_676",
-          "redundancy_24_2",
-          "example_683",
-          "example_686",
-          "example_690",
-          "Complementary_62_2",
-          "example_698",
-          "example_699",
-          "redundancy_56_2",
-          "example_701",
-          "example_702",
-          "example_708",
-          "redundancy_11_2",
-          "Complementary_97_2",
-          "Complementary_42_2",
-          "example_724",
-          "example_725",
-          "example_726",
-          "redundancy_35_2",
-          "Complementary_49_2",
-          "mutual_error_21_2",
-          "example_735",
-          "example_738",
-          "Complementary_44_2",
-          "mutual_error_17_2",
-          "example_745",
-          "redundancy_5_2",
-          "redundancy_58_2",
-          "example_749",
-          "Complementary_22_2",
-          "mutual_error_19_2",
-          "example_761",
-          "example_763",
-          "Complementary_36_2",
-          "example_766",
-          "example_767",
-          "Complementary_71_2",
-          "Complementary_15_2",
-          "example_771",
-          "example_772",
-          "Complementary_76_2",
-          "example_776",
-          "mutual_error_27_2",
-          "Complementary_38_2",
-          "example_783",
-          "example_784",
-          "mutual_error_15_2",
-          "Complementary_77_2",
-          "example_791",
-          "example_794",
-          "redundancy_19_2",
-          "Complementary_70_2",
-          "Complementary_13_2",
-          "Complementary_11_2",
-          "Complementary_63_2",
-          "redundancy_61_2",
-          "Complementary_45_2",
-          "example_815",
-          "example_818",
-          "redundancy_26_2",
-          "mutual_error_9_2",
-          "Complementary_35_2",
-          "example_838",
-          "mutual_error_14_2",
-          "Complementary_83_2",
-          "example_841",
-          "mutual_error_6_2",
-          "mutual_error_4_2",
-          "redundancy_17_2",
-          "Complementary_54_2",
-          "Complementary_90_2",
-          "redundancy_2_2",
-          "Complementary_31_2",
-          "redundancy_4_2",
-          "Complementary_23_2",
-          "Complementary_50_2",
-          "Complementary_46_2",
-          "example_871",
-          "example_873",
-          "redundancy_51_2",
-          "example_875",
-          "example_877",
-          "Complementary_89_2",
-          "example_879",
-          "Complementary_41_2",
-          "example_888",
-          "example_889",
-          "example_890",
-          "Complementary_3_2",
-          "Complementary_65_2",
-          "redundancy_33_2",
-          "example_905",
-          "Complementary_43_2",
-          "example_914",
-          "example_918",
-          "example_921",
-          "example_927",
-          "example_928",
-          "example_930",
-          "mutual_error_5_2",
-          "example_942",
-          "redundancy_45_2",
-          "example_944",
-          "example_952",
-          "example_955",
-          "mutual_error_30_2",
-          "Complementary_55_2",
-          "example_961",
-          "example_971",
-          "Complementary_94_2",
-          "Complementary_92_2",
-          "redundancy_29_2",
-          "mutual_error_12_2",
-          "redundancy_10_2",
-          "redundancy_34_2",
-          "mutual_error_16_2",
-          "Complementary_91_2",
-          "example_995"
+          "1332_l_2_m-0_0.18-1_0.04-2_0.09-3_0.22",
+          "1333_l_2_m-0_0.77-1_0.05-2_0.68-3_0.39",
+          "1334_l_2_m-0_0.15-1_0.04-2_0.0-3_0.79",
+          "1335_l_2_m-0_0.99-1_0.14-2_0.05-3_0.18",
+          "1336_l_2_m-0_0.78-1_0.05-2_0.09-3_0.61",
+          "1337_l_2_m-0_0.26-1_0.07-2_0.04-3_0.11",
+          "1338_l_2_c_0_1_3-0_0.4-1_0.0-2_0.19-3_1.04",
+          "1339_l_2_c_0_2_3-0_1.71-1_0.96-2_0.32-3_1.33",
+          "1340_l_2_c_1_2_3-0_0.84-1_0.58-2_0.1-3_0.1",
+          "1341_l_2_c_0_1_3-0_0.05-1_0.29-2_0.02-3_0.17",
+          "1342_l_2_c_0_2_3-0_1.46-1_0.66-2_0.97-3_0.4",
+          "1343_l_2_c_1_2_3-0_1.61-1_0.16-2_0.36-3_0.05",
+          "1344_l_2_c_0_1_3-0_0.27-1_0.42-2_0.04-3_0.02",
+          "1345_l_2_c_0_2_3-0_0.95-1_0.44-2_0.06-3_0.27",
+          "1346_l_2_c_1_2_3-0_0.56-1_0.07-2_0.28-3_0.52",
+          "1347_l_2_c_0_1_3-0_0.2-1_0.0-2_0.8-3_1.41",
+          "1348_l_2_c_0_2_3-0_0.44-1_1.31-2_0.22-3_0.36",
+          "1349_l_2_c_1_2_3-0_1.56-1_0.16-2_0.25-3_0.42",
+          "1350_l_2_c_0_1_3-0_0.49-1_0.18-2_0.28-3_0.01",
+          "1351_l_2_c_0_2_3-0_0.58-1_0.38-2_1.02-3_0.65",
+          "1352_l_2_c_1_2_3-0_1.38-1_0.01-2_0.0-3_0.31",
+          "1353_l_2_c_0_1_3-0_0.04-1_0.15-2_0.03-3_0.13",
+          "1354_l_2_c_0_2_3-0_0.64-1_1.22-2_0.58-3_0.31",
+          "1355_l_2_c_1_2_3-0_0.84-1_0.01-2_0.11-3_1.01",
+          "1356_l_2_c_0_1_3-0_1.21-1_0.02-2_1.51-3_0.4",
+          "1357_l_2_c_0_2_3-0_0.13-1_0.23-2_0.18-3_0.01",
+          "1358_l_2_c_1_2_3-0_0.33-1_0.2-2_0.06-3_1.12",
+          "1359_l_2_c_0_1_3-0_0.42-1_0.15-2_1.31-3_0.3",
+          "1360_l_2_c_0_2_3-0_0.87-1_2.48-2_0.05-3_0.11",
+          "1361_l_2_c_1_2_3-0_0.48-1_0.54-2_0.01-3_1.25",
+          "1362_l_2_c_0_1_3-0_0.83-1_0.72-2_0.27-3_0.92",
+          "1363_l_2_c_0_2_3-0_1.13-1_2.54-2_0.13-3_0.12",
+          "1364_l_2_c_1_2_3-0_0.03-1_0.29-2_0.25-3_0.37",
+          "1365_l_2_c_0_1_3-0_0.47-1_0.49-2_1.18-3_1.36",
+          "1366_l_2_c_0_2_3-0_0.21-1_0.43-2_0.63-3_0.18",
+          "1367_l_2_c_1_2_3-0_0.37-1_0.27-2_0.61-3_0.1",
+          "1368_l_2_c_0_1_3-0_0.09-1_0.72-2_2.0-3_0.14",
+          "1369_l_2_c_0_2_3-0_0.3-1_1.66-2_0.6-3_0.97",
+          "1370_l_2_c_1_2_3-0_0.71-1_0.02-2_0.48-3_0.5",
+          "1371_l_2_c_0_1_2-0_0.21-1_0.08-2_0.83-3_0.12",
+          "1372_l_2_c_0_1_3-0_0.86-1_0.7-2_1.01-3_0.13",
+          "1373_l_2_c_0_2_3-0_0.14-1_1.54-2_0.05-3_0.79",
+          "1374_l_2_c_1_2_3-0_1.08-1_0.11-2_0.01-3_0.2",
+          "1375_l_2_c_0_1_2-0_1.53-1_0.46-2_0.34-3_0.94",
+          "1376_l_2_c_0_1_3-0_1.53-1_0.25-2_0.7-3_0.5",
+          "1377_l_2_c_0_2_3-0_0.15-1_0.08-2_0.0-3_0.5",
+          "1378_l_2_c_1_2_3-0_1.7-1_0.69-2_0.34-3_0.14",
+          "1379_l_2_c_0_1_2-0_0.52-1_1.04-2_0.09-3_0.6",
+          "1380_l_2_c_0_1_3-0_0.04-1_0.22-2_0.48-3_0.61",
+          "1381_l_2_c_0_2_3-0_0.1-1_0.58-2_0.24-3_0.56",
+          "1382_l_2_c_1_2_3-0_0.62-1_0.04-2_0.37-3_0.09",
+          "1383_l_2_c_0_1_2-0_0.24-1_0.34-2_0.15-3_0.36",
+          "1384_l_2_c_0_1_3-0_0.01-1_0.38-2_1.0-3_1.15",
+          "1385_l_2_c_0_2_3-0_0.12-1_0.16-2_0.0-3_0.21",
+          "1386_l_2_c_1_2_3-0_1.01-1_0.6-2_0.01-3_0.56",
+          "1387_l_2_c_0_1_2-0_0.31-1_0.01-2_0.43-3_1.32",
+          "1388_l_2_c_0_1_3-0_0.06-1_0.23-2_1.64-3_1.16",
+          "1389_l_2_c_0_2_3-0_0.1-1_0.25-2_0.15-3_0.74",
+          "1390_l_2_c_1_2_3-0_0.88-1_0.22-2_0.64-3_0.34",
+          "1391_l_2_c_0_1_2-0_0.69-1_0.57-2_0.86-3_0.98",
+          "1392_l_2_c_0_1_3-0_0.26-1_0.25-2_0.9-3_0.82",
+          "1393_l_2_c_0_2_3-0_0.55-1_0.73-2_0.28-3_0.46",
+          "1394_l_2_c_1_2_3-0_0.79-1_0.14-2_1.21-3_0.3",
+          "1395_l_2_c_0_1_2-0_1.25-1_0.0-2_0.23-3_1.01",
+          "1396_l_2_c_0_1_3-0_1.23-1_0.68-2_0.04-3_0.66",
+          "1397_l_2_c_0_2_3-0_0.26-1_0.02-2_0.16-3_0.12",
+          "1398_l_2_c_1_2_3-0_0.65-1_0.78-2_0.37-3_0.0",
+          "1399_l_2_c_0_1_2-0_0.35-1_0.07-2_0.01-3_0.85",
+          "1400_l_2_c_0_1_3-0_0.3-1_0.03-2_0.18-3_0.59",
+          "1401_l_2_c_0_2_3-0_0.31-1_0.5-2_0.27-3_0.12",
+          "1402_l_2_c_1_2_3-0_1.06-1_0.05-2_0.12-3_0.82",
+          "1403_l_2_c_0_1_2-0_1.11-1_0.78-2_0.48-3_0.36",
+          "1404_l_2_c_0_1_3-0_0.5-1_0.3-2_0.97-3_0.72",
+          "1405_l_2_c_0_2_3-0_0.69-1_0.49-2_0.04-3_0.29",
+          "1406_l_2_c_1_2_3-0_1.93-1_0.36-2_0.29-3_0.1",
+          "1407_l_2_c_0_1_2-0_0.01-1_0.3-2_0.57-3_0.11",
+          "1408_l_2_c_0_1_3-0_0.28-1_0.22-2_2.11-3_0.5",
+          "1409_l_2_c_0_2_3-0_0.63-1_0.69-2_0.1-3_0.74",
+          "1410_l_2_c_1_2_3-0_2.88-1_0.39-2_0.4-3_0.56",
+          "1411_l_2_c_0_1_2-0_0.12-1_0.05-2_0.52-3_0.9",
+          "1412_l_2_c_0_1_3-0_0.68-1_0.44-2_1.1-3_0.81",
+          "1413_l_2_c_0_2_3-0_0.13-1_0.26-2_0.51-3_0.01",
+          "1414_l_2_c_1_2_3-0_1.59-1_0.66-2_0.02-3_0.29",
+          "1415_l_2_c_0_1_2-0_0.31-1_0.44-2_0.42-3_0.1",
+          "1416_l_2_c_0_1_3-0_0.83-1_0.37-2_0.61-3_0.22",
+          "1417_l_2_c_0_2_3-0_0.53-1_0.08-2_0.02-3_0.44",
+          "1418_l_2_c_1_2_3-0_0.95-1_0.3-2_0.49-3_0.94",
+          "1419_l_2_c_0_1_2-0_0.98-1_0.08-2_0.03-3_0.5",
+          "1420_l_2_c_0_1_3-0_1.69-1_0.28-2_0.51-3_0.74",
+          "1421_l_2_c_0_2_3-0_0.03-1_1.73-2_0.44-3_0.05",
+          "1422_l_2_c_1_2_3-0_0.45-1_0.52-2_0.06-3_1.21",
+          "1423_l_2_c_0_1_2-0_0.24-1_0.17-2_0.59-3_0.7",
+          "1424_l_2_c_0_1_3-0_0.47-1_0.34-2_0.86-3_0.13",
+          "1425_l_2_c_0_2_3-0_0.08-1_1.14-2_0.23-3_1.52",
+          "1426_l_2_c_1_2_3-0_1.58-1_0.24-2_0.6-3_0.34",
+          "1427_l_2_c_0_1_2-0_0.4-1_0.7-2_0.02-3_1.82",
+          "1428_l_2_c_0_1_3-0_0.28-1_0.66-2_1.9-3_0.72",
+          "1429_l_2_c_0_2_3-0_1.08-1_0.59-2_0.16-3_0.56",
+          "1430_l_2_c_1_2_3-0_0.25-1_0.14-2_0.19-3_0.44",
+          "1431_l_2_c_0_1_2-0_0.39-1_0.2-2_0.13-3_0.46",
+          "1432_l_2_c_0_1_3-0_0.14-1_0.02-2_1.53-3_0.29",
+          "1433_l_2_c_0_2_3-0_0.03-1_0.95-2_0.23-3_0.13",
+          "1434_l_2_c_1_2_3-0_0.68-1_0.77-2_0.18-3_0.71",
+          "1435_l_2_c_0_1_2-0_1.93-1_0.06-2_0.26-3_2.7",
+          "1436_l_2_c_0_1_3-0_0.97-1_0.01-2_0.48-3_0.1",
+          "1437_l_2_c_0_2_3-0_0.68-1_0.33-2_0.11-3_0.49",
+          "1438_l_2_c_1_2_3-0_0.94-1_0.12-2_0.53-3_0.32",
+          "1439_l_2_c_0_1_2-0_0.04-1_0.28-2_0.76-3_0.05",
+          "1440_l_2_c_0_1_3-0_0.09-1_0.42-2_1.05-3_0.55",
+          "1441_l_2_c_0_2_3-0_1.74-1_0.96-2_0.48-3_0.06",
+          "1442_l_2_c_1_2_3-0_1.08-1_0.52-2_0.67-3_0.56",
+          "1443_l_2_c_0_1_2-0_0.26-1_0.42-2_0.1-3_0.6",
+          "1444_l_2_c_0_1_3-0_1.52-1_0.52-2_0.35-3_0.55",
+          "1445_l_2_c_0_2_3-0_0.37-1_1.21-2_0.63-3_0.04",
+          "1446_l_2_c_1_2_3-0_0.55-1_0.19-2_0.6-3_0.97",
+          "1447_l_2_c_0_1_2-0_0.18-1_0.07-2_0.41-3_1.25",
+          "1448_l_2_c_0_1_3-0_0.6-1_0.08-2_0.6-3_0.47",
+          "1449_l_2_c_0_2_3-0_0.38-1_0.54-2_0.39-3_0.03",
+          "1450_l_2_c_1_2_3-0_0.9-1_0.04-2_0.48-3_0.5",
+          "1451_l_2_c_0_1_2-0_0.19-1_0.1-2_0.65-3_0.29",
+          "1452_l_2_c_0_1_3-0_0.94-1_0.02-2_0.46-3_0.21",
+          "1453_l_2_c_0_2_3-0_1.23-1_1.51-2_0.12-3_0.91",
+          "1454_l_2_c_1_2_3-0_0.35-1_0.16-2_0.26-3_0.46",
+          "1455_l_2_c_0_1_2-0_0.12-1_0.06-2_0.01-3_1.16",
+          "1456_l_2_c_0_1_3-0_0.12-1_0.26-2_0.31-3_0.36",
+          "1457_l_2_c_0_2_3-0_0.05-1_1.61-2_0.04-3_0.1",
+          "1458_l_2_c_1_2_3-0_0.8-1_0.54-2_0.21-3_1.15",
+          "1459_l_2_c_0_1_2-0_0.96-1_0.45-2_0.35-3_0.2",
+          "1460_l_2_c_0_1_3-0_0.82-1_0.02-2_1.89-3_0.06",
+          "1461_l_2_c_0_2_3-0_0.06-1_1.02-2_0.55-3_0.09",
+          "1462_l_2_c_1_2_3-0_1.31-1_0.31-2_0.04-3_1.15",
+          "1463_l_2_c_0_1_2-0_0.66-1_0.12-2_0.57-3_0.66",
+          "1464_l_2_c_0_1_3-0_1.76-1_0.16-2_3.53-3_0.01",
+          "1465_l_2_c_0_2_3-0_0.29-1_2.01-2_0.09-3_0.21",
+          "1466_l_2_c_1_2_3-0_0.6-1_0.03-2_0.05-3_0.47",
+          "1467_l_2_c_0_1_2-0_0.37-1_0.3-2_0.01-3_1.47",
+          "1468_l_2_c_0_1_3-0_0.24-1_0.05-2_0.26-3_0.18",
+          "1469_l_2_c_0_2_3-0_0.01-1_1.33-2_0.0-3_0.24",
+          "1470_l_2_c_1_2_3-0_0.27-1_0.01-2_0.01-3_0.14",
+          "1471_l_2_c_0_1_2-0_0.16-1_0.03-2_0.22-3_0.4",
+          "1472_l_2_c_0_1_3-0_0.81-1_0.27-2_0.66-3_0.98",
+          "1473_l_2_c_0_2_3-0_0.2-1_0.09-2_0.17-3_0.22",
+          "1474_l_2_c_1_2_3-0_0.02-1_0.92-2_0.0-3_0.09",
+          "1475_l_2_c_0_1_2-0_0.61-1_0.14-2_0.23-3_1.28",
+          "1476_l_2_c_0_1_3-0_0.42-1_0.77-2_1.54-3_1.54",
+          "1477_l_2_c_0_2_3-0_0.47-1_0.2-2_0.03-3_0.39",
+          "1478_l_2_c_1_2_3-0_0.62-1_0.14-2_0.01-3_0.74",
+          "1479_l_2_c_0_1_2-0_0.53-1_0.2-2_0.19-3_0.4",
+          "1480_l_2_c_0_1_3-0_0.6-1_0.89-2_0.29-3_0.77",
+          "1481_l_2_c_0_2_3-0_0.27-1_0.45-2_0.08-3_0.01",
+          "1482_l_2_c_1_2_3-0_0.12-1_0.15-2_0.3-3_0.98",
+          "1483_l_2_c_0_1_2-0_0.49-1_0.51-2_0.26-3_0.19",
+          "1484_l_2_c_0_1_3-0_0.29-1_0.05-2_1.05-3_0.2",
+          "1485_l_2_c_0_2_3-0_1.48-1_0.86-2_0.49-3_0.46",
+          "1486_l_2_c_1_2_3-0_1.32-1_0.12-2_0.36-3_0.03",
+          "1487_l_2_c_0_1_2-0_0.39-1_0.0-2_0.1-3_0.66",
+          "1488_l_2_c_0_1_3-0_0.73-1_0.42-2_0.33-3_0.12",
+          "1489_l_2_c_0_2_3-0_1.62-1_1.1-2_0.73-3_0.25",
+          "1490_l_2_c_1_2_3-0_0.63-1_0.15-2_0.05-3_0.22",
+          "1491_l_2_c_0_1_2-0_0.42-1_0.51-2_0.13-3_0.23",
+          "1492_l_2_c_0_1_3-0_0.11-1_0.03-2_1.59-3_0.45",
+          "1493_l_2_c_0_2_3-0_0.34-1_0.78-2_0.15-3_0.09",
+          "1494_l_2_c_1_2_3-0_0.51-1_0.0-2_0.32-3_0.55",
+          "1495_l_2_c_0_1_2-0_1.13-1_0.11-2_0.13-3_0.02",
+          "1496_l_2_c_0_1_3-0_0.0-1_0.64-2_0.02-3_1.09",
+          "1497_l_2_c_0_2_3-0_0.37-1_1.61-2_0.07-3_0.72",
+          "1498_l_2_c_1_2_3-0_1.55-1_0.29-2_0.94-3_0.09",
+          "1499_l_2_c_0_1_2-0_0.16-1_0.02-2_0.32-3_1.41",
+          "1500_l_2_c_0_1_3-0_0.03-1_0.1-2_1.66-3_0.36",
+          "1501_l_2_c_0_2_3-0_0.43-1_0.97-2_0.01-3_1.1",
+          "1502_l_2_c_1_2_3-0_0.63-1_0.17-2_0.03-3_0.17",
+          "1503_l_2_c_0_1_2-0_0.1-1_0.02-2_0.03-3_0.97",
+          "1504_l_2_c_0_1_3-0_0.03-1_0.01-2_0.07-3_0.47",
+          "1505_l_2_c_0_2_3-0_1.21-1_0.93-2_0.12-3_0.78",
+          "1506_l_2_c_1_2_3-0_0.72-1_0.01-2_0.17-3_0.24",
+          "1507_l_2_c_0_1_2-0_0.44-1_0.95-2_0.52-3_0.0",
+          "1508_l_2_c_0_1_3-0_0.36-1_0.59-2_1.38-3_0.66",
+          "1509_l_2_c_0_2_3-0_0.59-1_0.16-2_0.43-3_0.28",
+          "1510_l_2_c_1_2_3-0_0.01-1_0.15-2_0.68-3_0.21",
+          "1511_l_2_c_0_1_2-0_0.11-1_0.23-2_0.76-3_0.97",
+          "1512_l_2_c_0_1_3-0_0.16-1_0.21-2_0.57-3_2.33",
+          "1513_l_2_c_0_2_3-0_1.68-1_0.67-2_0.63-3_2.17",
+          "1514_l_2_c_1_2_3-0_0.92-1_0.43-2_1.1-3_0.06",
+          "1515_l_2_c_0_1_2-0_0.75-1_0.22-2_0.38-3_1.67",
+          "1516_l_2_c_0_1_3-0_0.25-1_0.16-2_1.5-3_1.53",
+          "1517_l_2_c_0_2_3-0_0.5-1_1.48-2_0.92-3_1.58",
+          "1518_l_2_c_1_2_3-0_0.01-1_0.01-2_0.57-3_0.24",
+          "1519_l_2_c_0_1_2-0_0.41-1_0.03-2_0.12-3_0.32",
+          "1520_l_2_c_0_1_3-0_0.56-1_0.51-2_1.03-3_0.67",
+          "1521_l_2_c_0_2_3-0_1.11-1_1.18-2_0.02-3_0.52",
+          "1522_l_2_c_1_2_3-0_2.09-1_0.09-2_0.68-3_1.55",
+          "1523_l_2_c_0_1_2-0_0.74-1_0.7-2_0.3-3_0.73",
+          "1524_l_2_c_0_1_3-0_0.19-1_0.09-2_0.1-3_0.08",
+          "1525_l_2_c_0_2_3-0_0.09-1_2.72-2_0.04-3_0.94",
+          "1526_l_2_c_1_2_3-0_0.89-1_0.2-2_0.72-3_1.04",
+          "1527_l_2_c_0_1_2-0_0.23-1_0.47-2_0.8-3_0.35",
+          "1528_l_2_c_0_1_3-0_0.09-1_0.15-2_0.38-3_1.11",
+          "1529_l_2_c_0_2_3-0_0.4-1_0.36-2_0.45-3_0.46",
+          "1530_l_2_c_1_2_3-0_0.1-1_0.58-2_0.12-3_0.3",
+          "1531_l_2_c_0_1_2-0_1.37-1_0.07-2_0.03-3_1.88",
+          "1532_l_2_c_0_1_3-0_0.19-1_0.73-2_0.11-3_1.09",
+          "1533_l_2_c_0_2_3-0_0.14-1_0.9-2_0.15-3_0.11",
+          "1534_l_2_c_1_2_3-0_0.69-1_0.44-2_0.45-3_0.06",
+          "1535_l_2_c_0_1_2-0_1.93-1_0.27-2_0.19-3_1.27",
+          "1536_l_2_c_0_1_3-0_0.05-1_0.68-2_0.59-3_0.69",
+          "1537_l_2_c_0_2_3-0_0.32-1_0.71-2_0.97-3_0.96",
+          "1538_l_2_c_1_2_3-0_0.55-1_0.24-2_0.02-3_1.87",
+          "1539_l_2_c_0_1_2-0_1.54-1_0.41-2_0.29-3_0.24",
+          "1540_l_2_c_0_1_3-0_0.09-1_0.42-2_0.95-3_0.39",
+          "1541_l_2_c_0_2_3-0_0.98-1_0.61-2_0.11-3_0.1",
+          "1542_l_2_c_1_2_3-0_1.14-1_0.34-2_0.68-3_0.09",
+          "1543_l_2_c_0_1_2-0_0.25-1_0.3-2_0.03-3_0.22",
+          "1544_l_2_c_0_1_3-0_0.55-1_0.48-2_0.63-3_0.32",
+          "1545_l_2_c_0_2_3-0_0.56-1_1.52-2_0.17-3_0.93",
+          "1546_l_2_c_1_2_3-0_0.04-1_0.02-2_0.09-3_0.25",
+          "1547_l_2_c_0_1_2-0_0.0-1_1.28-2_0.02-3_0.52",
+          "1548_l_2_c_0_1_3-0_0.53-1_0.86-2_1.26-3_0.28",
+          "1549_l_2_c_0_2_3-0_0.04-1_0.07-2_0.06-3_0.18",
+          "1550_l_2_c_1_2_3-0_0.6-1_0.18-2_0.06-3_0.17",
+          "1551_l_2_c_0_1_2-0_0.17-1_0.01-2_0.08-3_0.66",
+          "1552_l_2_c_0_1_3-0_0.69-1_0.31-2_0.39-3_0.81",
+          "1553_l_2_c_0_2_3-0_0.07-1_1.28-2_0.36-3_1.83",
+          "1554_l_2_c_1_2_3-0_2.08-1_0.39-2_0.05-3_0.29",
+          "1555_l_2_c_0_1_2-0_0.32-1_0.06-2_0.11-3_0.13",
+          "1556_l_2_c_0_1_3-0_0.5-1_0.03-2_0.22-3_1.59",
+          "1557_l_2_c_0_2_3-0_1.11-1_0.47-2_0.15-3_1.68",
+          "1558_l_2_c_1_2_3-0_0.55-1_0.14-2_0.04-3_0.04",
+          "1559_l_2_c_0_1_2-0_0.36-1_0.08-2_0.14-3_0.09",
+          "1560_l_2_c_0_1_3-0_0.01-1_0.08-2_0.56-3_0.28",
+          "1561_l_2_c_0_2_3-0_0.72-1_0.21-2_0.42-3_0.55",
+          "1562_l_2_c_1_2_3-0_0.25-1_0.23-2_0.01-3_1.0",
+          "1563_l_2_c_0_1_2-0_0.23-1_0.2-2_0.07-3_0.07",
+          "1564_l_2_c_0_1_3-0_0.19-1_0.09-2_0.72-3_0.23",
+          "1565_l_2_c_0_2_3-0_1.08-1_0.07-2_0.01-3_0.76",
+          "1566_l_2_c_1_2_3-0_0.6-1_0.21-2_0.04-3_0.62",
+          "1567_l_2_c_0_1_2-0_1.01-1_0.13-2_0.12-3_0.65",
+          "1568_l_2_c_0_1_3-0_1.19-1_0.35-2_1.05-3_0.23",
+          "1569_l_2_c_0_2_3-0_0.5-1_0.18-2_0.0-3_1.32",
+          "1570_l_2_c_1_2_3-0_1.06-1_0.25-2_0.56-3_0.64",
+          "1571_l_2_c_0_1_2-0_0.15-1_0.06-2_0.52-3_2.34",
+          "1572_l_2_c_0_1_3-0_0.81-1_0.41-2_0.23-3_0.34",
+          "1573_l_2_c_0_2_3-0_0.39-1_2.06-2_0.0-3_0.76",
+          "1574_l_2_c_1_2_3-0_2.06-1_0.25-2_0.06-3_0.11",
+          "1575_l_2_c_0_1_2-0_0.75-1_0.18-2_0.13-3_0.31",
+          "1576_l_2_c_0_1_3-0_0.17-1_1.11-2_0.45-3_0.38",
+          "1577_l_2_c_0_2_3-0_0.15-1_0.17-2_0.16-3_0.37",
+          "1578_l_2_c_1_2_3-0_1.89-1_0.55-2_0.19-3_0.01",
+          "1579_l_2_c_0_1_2-0_0.1-1_0.06-2_0.05-3_0.98",
+          "1580_l_2_c_0_1_3-0_0.18-1_0.36-2_1.17-3_0.38",
+          "1581_l_2_c_0_2_3-0_0.11-1_0.15-2_0.17-3_0.15",
+          "1582_l_2_c_1_2_3-0_1.12-1_0.05-2_0.34-3_0.44",
+          "1583_l_2_c_0_1_2-0_0.12-1_0.84-2_1.06-3_1.41",
+          "1584_l_2_c_0_1_3-0_0.95-1_0.34-2_0.17-3_0.96",
+          "1585_l_2_c_0_2_3-0_0.93-1_0.24-2_0.44-3_0.71",
+          "1586_l_2_c_1_2_3-0_1.68-1_0.11-2_0.74-3_0.35",
+          "1587_l_2_c_0_1_2-0_0.24-1_0.01-2_0.11-3_0.12",
+          "1588_l_2_c_0_1_3-0_0.81-1_0.01-2_0.66-3_0.24",
+          "1589_l_2_c_0_2_3-0_0.54-1_0.39-2_0.23-3_0.26",
+          "1590_l_2_c_1_2_3-0_0.85-1_0.09-2_0.19-3_1.51",
+          "1591_l_2_c_0_1_2-0_1.04-1_0.59-2_0.01-3_1.19",
+          "1592_l_2_c_0_1_3-0_0.13-1_0.09-2_0.43-3_0.36",
+          "1593_l_2_c_0_2_3-0_0.74-1_1.41-2_0.7-3_0.84",
+          "1594_l_2_c_1_2_3-0_0.64-1_0.38-2_0.13-3_0.23",
+          "1595_l_2_c_0_1_2-0_1.26-1_0.16-2_0.42-3_1.41",
+          "1596_l_2_c_0_1_3-0_0.29-1_0.29-2_0.05-3_0.12",
+          "1597_l_2_c_0_2_3-0_0.32-1_0.1-2_0.09-3_0.22",
+          "1598_l_2_c_1_2_3-0_1.26-1_0.21-2_0.53-3_0.22",
+          "1599_l_2_c_0_1_2-0_0.27-1_0.58-2_0.65-3_1.82",
+          "1600_l_2_c_0_1_3-0_0.28-1_0.1-2_1.39-3_0.03",
+          "1601_l_2_c_0_2_3-0_0.62-1_1.69-2_0.19-3_0.73",
+          "1602_l_2_c_1_2_3-0_0.18-1_0.94-2_0.33-3_0.82",
+          "1603_l_2_c_0_1_2-0_0.24-1_0.6-2_0.42-3_0.86",
+          "1604_l_2_c_0_1_3-0_0.01-1_0.88-2_1.02-3_0.01",
+          "1605_l_2_c_0_2_3-0_0.13-1_1.06-2_0.07-3_0.09",
+          "1606_l_2_c_1_2_3-0_0.22-1_0.78-2_0.15-3_1.05",
+          "1607_l_2_c_0_1_2-0_0.24-1_0.23-2_0.87-3_0.05",
+          "1608_l_2_c_0_1_3-0_0.78-1_0.0-2_1.16-3_0.46",
+          "1609_l_2_c_0_2_3-0_0.18-1_0.33-2_0.11-3_0.04",
+          "1610_l_2_c_1_2_3-0_0.9-1_0.53-2_0.1-3_0.46",
+          "1611_l_2_c_0_1_2-0_0.06-1_0.0-2_0.05-3_0.33",
+          "1612_l_2_c_0_1_3-0_0.21-1_0.67-2_0.07-3_0.17",
+          "1613_l_2_c_0_2_3-0_0.8-1_0.37-2_0.59-3_0.46",
+          "1614_l_2_c_1_2_3-0_0.92-1_0.03-2_0.84-3_0.2",
+          "1615_l_2_c_0_1_2-0_0.65-1_0.01-2_0.4-3_0.29",
+          "1616_l_2_c_0_1_3-0_0.65-1_0.04-2_0.26-3_1.31",
+          "1617_l_2_c_0_2_3-0_1.98-1_0.26-2_0.04-3_1.02",
+          "1618_l_2_c_1_2_3-0_1.52-1_0.09-2_0.17-3_0.13",
+          "1619_l_2_c_0_1_2-0_0.1-1_0.16-2_0.29-3_1.91",
+          "1620_l_2_c_0_1_3-0_0.11-1_0.01-2_1.25-3_0.42",
+          "1621_l_2_c_0_2_3-0_0.21-1_0.98-2_1.21-3_0.9",
+          "1622_l_2_c_1_2_3-0_0.65-1_0.01-2_0.32-3_0.14",
+          "1623_l_2_c_0_1_2-0_0.94-1_0.16-2_0.46-3_0.31",
+          "1624_l_2_c_0_1_3-0_0.78-1_0.58-2_1.24-3_0.54",
+          "1625_l_2_c_0_2_3-0_0.18-1_0.52-2_0.02-3_0.78",
+          "1626_l_2_c_1_2_3-0_1.49-1_0.36-2_0.62-3_0.33",
+          "1627_l_2_c_0_1_2-0_1.18-1_0.15-2_0.02-3_0.36",
+          "1628_l_2_c_0_1_3-0_0.58-1_1.11-2_0.71-3_1.16",
+          "1629_l_2_c_0_2_3-0_0.77-1_0.79-2_0.82-3_0.29",
+          "1630_l_2_c_1_2_3-0_1.11-1_1.08-2_0.22-3_0.92",
+          "1631_l_2_c_0_1_2-0_0.05-1_0.54-2_0.32-3_0.55",
+          "1632_l_2_c_0_1_3-0_0.09-1_0.19-2_0.09-3_0.2",
+          "1633_l_2_c_0_2_3-0_0.17-1_1.97-2_0.08-3_0.08",
+          "1634_l_2_c_1_2_3-0_1.2-1_0.75-2_0.02-3_0.63",
+          "1635_l_2_c_0_1_2-0_0.25-1_0.06-2_0.18-3_0.07",
+          "1636_l_2_c_0_1_3-0_0.32-1_0.42-2_0.99-3_1.04",
+          "1637_l_2_c_0_2_3-0_1.46-1_0.91-2_0.54-3_0.13",
+          "1638_l_2_c_1_2_3-0_1.16-1_0.57-2_0.0-3_0.49",
+          "1639_l_2_c_0_1_2-0_0.14-1_0.06-2_0.24-3_0.03",
+          "1640_l_2_c_0_1_3-0_0.94-1_0.68-2_0.47-3_0.62",
+          "1641_l_2_c_0_2_3-0_0.46-1_0.03-2_0.05-3_0.43",
+          "1642_l_2_c_1_2_3-0_0.02-1_0.87-2_0.04-3_0.38",
+          "1643_l_2_c_0_1_2-0_1.09-1_0.27-2_0.78-3_0.0",
+          "1644_l_2_c_0_1_3-0_0.15-1_0.35-2_0.4-3_0.07",
+          "1645_l_2_c_0_2_3-0_0.53-1_1.83-2_0.03-3_0.11",
+          "1646_l_2_c_1_2_3-0_0.86-1_0.21-2_0.0-3_0.0",
+          "1647_l_2_c_0_1_2-0_2.29-1_0.66-2_0.07-3_0.04",
+          "1648_l_2_c_0_1_3-0_0.72-1_0.11-2_0.17-3_0.0",
+          "1649_l_2_c_0_2_3-0_0.31-1_0.49-2_0.77-3_1.04",
+          "1650_l_2_c_1_2_3-0_0.31-1_0.06-2_0.45-3_0.02",
+          "1651_l_2_c_0_1_2-0_0.4-1_0.65-2_0.13-3_0.85",
+          "1652_l_2_c_0_1_3-0_0.73-1_0.15-2_1.36-3_0.13",
+          "1653_l_2_c_0_2_3-0_1.17-1_1.56-2_0.42-3_0.02",
+          "1654_l_2_c_1_2_3-0_0.01-1_0.29-2_0.25-3_0.08",
+          "1655_l_2_c_0_1_2-0_0.62-1_0.27-2_0.49-3_2.55",
+          "1656_l_2_c_0_1_3-0_0.4-1_0.25-2_0.72-3_0.31",
+          "1657_l_2_c_0_2_3-0_0.41-1_1.46-2_0.24-3_0.26",
+          "1658_l_2_c_1_2_3-0_1.81-1_0.23-2_0.04-3_0.09",
+          "1659_l_2_c_0_1_2-0_0.03-1_0.67-2_0.11-3_0.5",
+          "1660_l_2_c_0_1_3-0_0.16-1_0.47-2_1.4-3_0.5",
+          "1661_l_2_c_0_2_3-0_1.58-1_1.67-2_0.05-3_1.09",
+          "1662_l_2_c_1_2_3-0_0.84-1_0.15-2_0.27-3_0.47",
+          "1663_l_2_c_0_1_2-0_0.66-1_0.17-2_0.02-3_0.44",
+          "1664_l_2_c_0_1_3-0_0.14-1_0.78-2_1.82-3_1.29",
+          "1665_l_2_c_0_2_3-0_0.16-1_0.75-2_0.17-3_0.03",
+          "1666_l_2_c_1_2_3-0_1.56-1_0.62-2_0.26-3_0.04",
+          "1667_l_2_c_0_1_2-0_0.78-1_0.94-2_0.01-3_0.8",
+          "1668_l_2_c_0_1_3-0_1.54-1_0.31-2_0.69-3_0.35",
+          "1669_l_2_c_0_2_3-0_0.56-1_0.15-2_0.23-3_0.31",
+          "1670_l_2_c_1_2_3-0_0.24-1_0.4-2_0.1-3_0.16",
+          "1671_l_2_c_0_1_2-0_0.17-1_0.07-2_0.33-3_0.84",
+          "1672_l_2_c_0_1_3-0_0.3-1_0.49-2_1.47-3_1.27",
+          "1673_l_2_c_0_2_3-0_0.76-1_0.88-2_0.35-3_0.1",
+          "1674_l_2_c_1_2_3-0_0.82-1_0.3-2_0.07-3_0.1",
+          "1675_l_2_c_0_1_2-0_0.83-1_0.13-2_0.25-3_0.82",
+          "1676_l_2_c_0_1_3-0_0.45-1_0.08-2_1.47-3_1.33",
+          "1677_l_2_c_0_2_3-0_0.17-1_1.04-2_0.58-3_0.24",
+          "1678_l_2_c_1_2_3-0_0.03-1_0.24-2_0.51-3_0.13",
+          "1679_l_2_c_0_1_2-0_1.3-1_0.02-2_0.1-3_0.07",
+          "1680_l_2_c_0_1_3-0_0.1-1_0.17-2_0.11-3_0.81",
+          "1681_l_2_c_0_2_3-0_0.54-1_1.12-2_0.11-3_0.6",
+          "1682_l_2_c_1_2_3-0_0.12-1_0.14-2_0.83-3_0.81",
+          "1683_l_2_c_0_1_2-0_0.02-1_0.36-2_0.0-3_0.3",
+          "1684_l_2_c_0_1_3-0_1.41-1_0.05-2_0.03-3_0.2",
+          "1685_l_2_c_0_2_3-0_0.85-1_0.16-2_0.05-3_1.23",
+          "1686_l_2_c_1_2_3-0_0.48-1_0.05-2_0.09-3_1.41",
+          "1687_l_2_c_0_1_2-0_1.65-1_0.0-2_0.04-3_2.41",
+          "1688_l_2_c_0_1_3-0_0.78-1_0.01-2_0.98-3_0.55",
+          "1689_l_2_c_0_2_3-0_0.03-1_1.7-2_0.03-3_0.11",
+          "1690_l_2_c_1_2_3-0_0.51-1_0.79-2_0.61-3_0.22",
+          "1691_l_2_c_0_1_2-0_1.54-1_0.05-2_0.12-3_2.07",
+          "1692_l_2_c_0_1_3-0_0.79-1_0.24-2_0.86-3_1.27",
+          "1693_l_2_c_2_3-0_0.8-1_1.53-2_0.09-3_0.56",
+          "1694_l_2_r-0_0.06-1_0.48-2_0.65-3_1.33",
+          "1695_l_2_r-0_0.19-1_0.85-2_1.53-3_0.54",
+          "1696_l_2_r-0_0.82-1_1.0-2_0.48-3_1.02",
+          "1697_l_2_r-0_0.37-1_1.25-2_2.82-3_0.03",
+          "1698_l_2_r-0_0.94-1_3.91-2_0.96-3_0.91",
+          "1699_l_2_r-0_1.3-1_0.43-2_0.57-3_2.33",
+          "1700_l_2_r-0_1.29-1_1.85-2_1.34-3_2.15",
+          "1701_l_2_r-0_1.17-1_0.79-2_1.13-3_0.38",
+          "1702_l_2_r-0_1.32-1_0.84-2_0.42-3_0.72",
+          "1703_l_2_r-0_0.6-1_0.85-2_1.93-3_0.96",
+          "1704_l_2_r-0_1.45-1_0.08-2_1.07-3_0.65",
+          "1705_l_2_r-0_0.01-1_0.35-2_0.28-3_0.91",
+          "1706_l_2_r-0_0.04-1_3.24-2_1.8-3_0.13",
+          "1707_l_2_r-0_0.13-1_0.28-2_0.0-3_0.35",
+          "1708_l_2_r-0_0.34-1_0.22-2_0.09-3_0.87",
+          "1709_l_2_r-0_1.8-1_1.5-2_0.62-3_2.9",
+          "1710_l_2_r-0_2.65-1_0.15-2_1.98-3_0.67",
+          "1711_l_2_r-0_0.71-1_1.34-2_0.72-3_0.77",
+          "1712_l_2_r-0_0.21-1_0.91-2_0.12-3_0.96",
+          "1713_l_2_r-0_0.71-1_1.13-2_0.41-3_2.23",
+          "1714_l_2_r-0_1.52-1_2.31-2_0.9-3_1.38",
+          "1715_l_2_r-0_0.5-1_1.29-2_0.42-3_0.93",
+          "1716_l_2_r-0_0.31-1_0.73-2_0.54-3_1.98",
+          "1717_l_2_r-0_1.3-1_0.5-2_1.6-3_1.7",
+          "1718_l_2_r-0_0.64-1_0.14-2_0.61-3_0.79",
+          "1719_l_2_r-0_2.09-1_0.77-2_1.28-3_1.47",
+          "1720_l_2_r-0_1.2-1_1.25-2_0.23-3_0.78",
+          "1721_l_2_r-0_0.87-1_0.58-2_0.47-3_0.92",
+          "1722_l_2_r-0_0.88-1_0.31-2_1.29-3_0.27",
+          "1723_l_2_r-0_0.72-1_0.79-2_0.75-3_1.3",
+          "1724_l_2_r-0_1.25-1_0.59-2_0.7-3_0.85",
+          "1725_l_2_r-0_0.66-1_0.16-2_0.66-3_0.63",
+          "1726_l_2_r-0_1.31-1_1.03-2_0.25-3_0.11",
+          "1727_l_2_r-0_0.19-1_0.12-2_0.46-3_0.88",
+          "1728_l_2_r-0_1.33-1_0.03-2_0.17-3_0.74",
+          "1729_l_2_r-0_0.13-1_1.31-2_1.7-3_0.44",
+          "1730_l_2_r-0_1.64-1_0.26-2_0.57-3_1.32",
+          "1731_l_2_r-0_1.38-1_0.71-2_0.34-3_0.2",
+          "1732_l_2_r-0_0.69-1_0.66-2_0.85-3_0.41",
+          "1733_l_2_r-0_1.16-1_0.71-2_0.18-3_0.49",
+          "1734_l_2_r-0_2.04-1_0.69-2_2.16-3_1.31",
+          "1735_l_2_r-0_0.85-1_0.01-2_1.34-3_0.69",
+          "1736_l_2_r-0_1.54-1_2.1-2_0.02-3_0.28",
+          "1737_l_2_r-0_0.3-1_1.77-2_0.57-3_1.07",
+          "1738_l_2_r-0_1.28-1_0.02-2_1.08-3_0.28",
+          "1739_l_2_r-0_0.77-1_0.11-2_0.66-3_0.43",
+          "1740_l_2_r-0_0.2-1_1.01-2_1.13-3_1.57",
+          "1741_l_2_r-0_0.2-1_0.65-2_0.74-3_1.14",
+          "1742_l_2_r-0_0.47-1_0.96-2_1.88-3_0.18",
+          "1743_l_2_r-0_0.58-1_1.37-2_2.71-3_1.1",
+          "1744_l_2_r-0_1.35-1_0.67-2_0.81-3_1.18",
+          "1745_l_2_r-0_0.73-1_0.78-2_1.1-3_1.32",
+          "1746_l_2_r-0_0.41-1_0.62-2_0.29-3_0.63",
+          "1747_l_2_r-0_0.07-1_0.11-2_0.95-3_0.58",
+          "1748_l_2_r-0_0.18-1_0.14-2_0.35-3_0.48",
+          "1749_l_2_r-0_0.28-1_0.38-2_0.57-3_0.69",
+          "1750_l_2_r-0_0.81-1_0.5-2_1.57-3_0.63",
+          "1751_l_2_r-0_0.9-1_1.42-2_0.99-3_1.04",
+          "1752_l_2_r-0_0.02-1_0.46-2_0.06-3_0.19",
+          "1753_l_2_r-0_0.74-1_1.46-2_0.54-3_0.03",
+          "1754_l_2_r-0_0.73-1_0.35-2_1.55-3_1.58",
+          "1755_l_2_r-0_0.72-1_0.49-2_0.75-3_1.34",
+          "1756_l_2_r-0_0.39-1_0.32-2_1.08-3_0.34",
+          "1757_l_2_r-0_0.36-1_2.19-2_0.62-3_0.03",
+          "1758_l_2_r-0_0.26-1_0.55-2_0.27-3_1.26",
+          "1759_l_2_r-0_0.73-1_0.86-2_0.54-3_0.1",
+          "1760_l_2_r-0_0.12-1_0.58-2_0.87-3_1.39",
+          "1761_l_2_r-0_0.34-1_0.65-2_0.98-3_0.95",
+          "1762_l_2_r-0_0.35-1_1.83-2_0.4-3_2.21",
+          "1763_l_2_r-0_0.39-1_1.26-2_0.86-3_1.9",
+          "1764_l_2_r-0_1.29-1_1.14-2_0.5-3_1.15",
+          "1765_l_2_r-0_0.57-1_0.41-2_1.77-3_1.03",
+          "1766_l_2_r-0_0.49-1_0.48-2_0.77-3_0.26",
+          "1767_l_2_r-0_1.08-1_1.74-2_1.97-3_0.89",
+          "1768_l_2_r-0_1.17-1_0.15-2_0.24-3_0.4",
+          "1769_l_2_r-0_0.19-1_0.51-2_1.78-3_1.03",
+          "1770_l_2_r-0_0.41-1_0.27-2_1.46-3_2.34",
+          "1771_l_2_r-0_0.9-1_0.2-2_0.87-3_0.81",
+          "1772_l_2_r-0_0.09-1_0.78-2_1.56-3_2.23",
+          "1773_l_2_r-0_0.29-1_0.68-2_1.23-3_0.71",
+          "1774_l_2_r-0_0.6-1_1.58-2_0.22-3_0.3",
+          "1775_l_2_r-0_0.76-1_0.69-2_1.51-3_0.27",
+          "1776_l_2_r-0_0.36-1_1.5-2_0.84-3_1.56",
+          "1777_l_2_r-0_2.67-1_0.06-2_1.31-3_2.26",
+          "1778_l_2_r-0_0.27-1_0.41-2_0.04-3_3.33",
+          "1779_l_2_r-0_0.36-1_0.89-2_1.09-3_0.3",
+          "1780_l_2_r-0_1.01-1_0.39-2_2.79-3_0.74",
+          "1781_l_2_r-0_1.6-1_0.51-2_1.34-3_0.23",
+          "1782_l_2_r-0_0.01-1_0.12-2_0.8-3_0.11",
+          "1783_l_2_r-0_0.65-1_1.38-2_0.57-3_0.72",
+          "1784_l_2_r-0_0.47-1_0.71-2_0.42-3_0.46",
+          "1785_l_2_r-0_0.69-1_0.32-2_0.25-3_0.07",
+          "1786_l_2_r-0_0.92-1_0.22-2_0.46-3_0.64",
+          "1787_l_2_r-0_0.66-1_0.3-2_0.22-3_1.3",
+          "1788_l_2_r-0_1.55-1_1.75-2_0.49-3_0.13",
+          "1789_l_2_r-0_0.45-1_0.21-2_3.13-3_0.16",
+          "1790_l_2_r-0_2.68-1_0.39-2_1.41-3_0.6",
+          "1791_l_2_r-0_0.05-1_0.38-2_1.4-3_0.32",
+          "1792_l_2_r-0_0.4-1_0.55-2_1.0-3_1.37",
+          "1793_l_2_r-0_0.08-1_0.01-2_0.36-3_0.32",
+          "1794_l_2_r-0_0.5-1_1.14-2_0.33-3_2.67",
+          "1795_l_2_r-0_1.06-1_0.58-2_0.72-3_0.1",
+          "1796_l_2_r-0_2.55-1_1.34-2_0.37-3_1.23",
+          "1797_l_2_r-0_0.9-1_1.54-2_0.19-3_0.59",
+          "1798_l_2_r-0_0.47-1_1.01-2_0.07-3_1.92",
+          "1799_l_2_r-0_0.86-1_0.05-2_1.07-3_0.74",
+          "1800_l_2_r-0_0.41-1_0.28-2_0.58-3_1.66",
+          "1801_l_2_r-0_0.75-1_0.67-2_0.73-3_0.08",
+          "1802_l_2_r-0_0.65-1_1.38-2_0.25-3_1.18",
+          "1803_l_2_r-0_2.29-1_0.34-2_2.05-3_0.55",
+          "1804_l_2_r-0_1.49-1_0.75-2_1.64-3_0.0",
+          "1805_l_2_r-0_0.0-1_0.58-2_0.39-3_0.56",
+          "1806_l_2_r-0_0.18-1_1.34-2_0.11-3_0.88",
+          "1807_l_2_r-0_0.12-1_0.36-2_0.21-3_1.44",
+          "1808_l_2_r-0_1.98-1_0.97-2_0.82-3_1.27",
+          "1809_l_2_r-0_0.85-1_0.49-2_0.98-3_0.07",
+          "1810_l_2_r-0_0.79-1_2.29-2_0.64-3_0.75",
+          "1811_l_2_r-0_0.1-1_0.83-2_0.38-3_1.39",
+          "1812_l_2_r-0_0.98-1_2.04-2_0.3-3_0.53",
+          "1813_l_2_r-0_0.46-1_0.14-2_1.74-3_0.23",
+          "1814_l_2_r-0_0.9-1_0.37-2_0.2-3_0.1",
+          "1815_l_2_r-0_0.23-1_0.03-2_0.59-3_1.09",
+          "1816_l_2_r-0_2.62-1_1.56-2_0.54-3_1.58",
+          "1817_l_2_r-0_0.63-1_0.36-2_0.82-3_1.22",
+          "1818_l_2_r-0_0.26-1_0.62-2_1.03-3_0.58",
+          "1819_l_2_r-0_1.27-1_0.35-2_2.19-3_0.29",
+          "1820_l_2_r-0_0.05-1_0.09-2_1.25-3_0.64",
+          "1821_l_2_r-0_1.3-1_1.6-2_1.72-3_1.22",
+          "1822_l_2_r-0_2.13-1_0.89-2_0.16-3_1.1",
+          "1823_l_2_r-0_0.03-1_0.23-2_0.24-3_0.5",
+          "1824_l_2_r-0_2.4-1_2.52-2_0.68-3_0.12",
+          "1825_l_2_r-0_0.9-1_0.31-2_2.1-3_0.93",
+          "1826_l_2_r-0_0.52-1_0.75-2_0.66-3_1.04",
+          "1827_l_2_r-0_1.32-1_1.54-2_1.36-3_0.06",
+          "1828_l_2_r-0_1.27-1_0.17-2_0.6-3_1.02",
+          "1829_l_2_r-0_0.25-1_0.34-2_0.71-3_0.95",
+          "1830_l_2_r-0_0.28-1_0.61-2_1.6-3_0.67",
+          "1831_l_2_r-0_0.25-1_1.0-2_0.36-3_0.09",
+          "1832_l_2_r-0_0.46-1_0.68-2_2.16-3_0.76",
+          "1833_l_2_r-0_1.04-1_1.69-2_2.31-3_0.78",
+          "1834_l_2_r-0_0.04-1_0.17-2_0.2-3_0.66",
+          "1835_l_2_r-0_1.26-1_1.4-2_0.33-3_1.02",
+          "1836_l_2_r-0_0.16-1_0.91-2_1.39-3_3.5",
+          "1837_l_2_r-0_0.47-1_0.18-2_0.66-3_0.64",
+          "1838_l_2_r-0_0.28-1_2.69-2_1.13-3_0.27",
+          "1839_l_2_r-0_1.4-1_0.02-2_0.09-3_0.47",
+          "1840_l_2_r-0_1.13-1_1.26-2_0.91-3_0.31",
+          "1841_l_2_r-0_0.18-1_1.59-2_0.39-3_1.59",
+          "1842_l_2_r-0_0.69-1_2.0-2_1.16-3_0.83",
+          "1843_l_2_r-0_0.73-1_0.58-2_1.26-3_0.85",
+          "1844_l_2_r-0_0.84-1_0.03-2_0.79-3_0.19",
+          "1845_l_2_r-0_0.1-1_1.54-2_0.75-3_0.98",
+          "1846_l_2_r-0_1.0-1_0.15-2_2.26-3_0.67",
+          "1847_l_2_r-0_0.05-1_2.84-2_1.17-3_0.97",
+          "1848_l_2_r-0_0.42-1_0.25-2_0.5-3_0.3",
+          "1849_l_2_r-0_0.76-1_0.8-2_2.28-3_0.03",
+          "1850_l_2_r-0_0.17-1_0.72-2_1.67-3_0.93",
+          "1851_l_2_r-0_0.49-1_1.25-2_0.07-3_1.17",
+          "1852_l_2_r-0_0.91-1_1.73-2_0.09-3_0.8",
+          "1853_l_2_r-0_0.25-1_0.18-2_0.57-3_1.28",
+          "1854_l_2_r-0_0.27-1_0.31-2_0.35-3_1.6",
+          "1855_l_2_r-0_1.21-1_0.49-2_3.44-3_0.39",
+          "1856_l_2_r-0_0.59-1_0.38-2_1.44-3_0.19",
+          "1857_l_2_r-0_0.97-1_0.66-2_0.78-3_0.35",
+          "1858_l_2_r-0_1.53-1_1.4-2_0.07-3_0.81",
+          "1859_l_2_r-0_1.16-1_1.16-2_1.09-3_1.78",
+          "1860_l_2_r-0_0.68-1_1.61-2_0.88-3_0.82",
+          "1861_l_2_r-0_0.52-1_2.44-2_1.71-3_1.06",
+          "1862_l_2_r-0_1.6-1_0.02-2_2.03-3_1.29",
+          "1863_l_2_r-0_1.18-1_0.2-2_1.1-3_0.32",
+          "1864_l_2_r-0_0.81-1_2.02-2_1.13-3_0.69",
+          "1865_l_2_r-0_1.24-1_0.15-2_0.43-3_1.1",
+          "1866_l_2_r-0_0.18-1_2.57-2_1.16-3_1.07",
+          "1867_l_2_r-0_0.98-1_0.1-2_0.47-3_0.75",
+          "1868_l_2_r-0_1.04-1_1.08-2_1.49-3_1.14",
+          "1869_l_2_r-0_0.15-1_1.23-2_1.34-3_0.45",
+          "1870_l_2_r-0_0.39-1_1.03-2_0.13-3_1.14",
+          "1871_l_2_r-0_0.01-1_0.88-2_1.39-3_1.34",
+          "1872_l_2_r-0_1.65-1_1.08-2_2.57-3_1.2",
+          "1873_l_2_r-0_0.12-1_1.77-2_0.37-3_0.51",
+          "1874_l_2_r-0_0.74-1_0.5-2_2.33-3_1.39",
+          "1875_l_2_r-0_0.13-1_0.73-2_1.59-3_3.12",
+          "1876_l_2_r-0_0.03-1_0.72-2_0.89-3_0.7",
+          "1877_l_2_r-0_2.08-1_0.98-2_0.07-3_0.13",
+          "1878_l_2_r-0_1.08-1_1.05-2_1.05-3_0.25",
+          "1879_l_2_r-0_0.96-1_0.39-2_1.73-3_2.03",
+          "1880_l_2_r-0_1.17-1_0.44-2_1.06-3_1.03",
+          "1881_l_2_r-0_0.73-1_1.34-2_1.02-3_0.83",
+          "1882_l_2_r-0_1.46-1_1.76-2_1.31-3_0.75",
+          "1883_l_2_r-0_1.45-1_1.07-2_0.44-3_1.48",
+          "1884_l_2_r-0_1.49-1_0.74-2_0.11-3_0.85",
+          "1885_l_2_r-0_2.14-1_0.25-2_0.15-3_1.32",
+          "1886_l_2_r-0_0.9-1_0.26-2_0.58-3_1.7",
+          "1887_l_2_r-0_1.18-1_0.39-2_1.76-3_0.31",
+          "1888_l_2_r-0_0.93-1_1.94-2_0.63-3_0.58",
+          "1889_l_2_r-0_0.74-1_0.91-2_0.67-3_0.92",
+          "1890_l_2_r-0_1.26-1_0.69-2_0.35-3_1.68",
+          "1891_l_2_r-0_0.56-1_0.13-2_1.02-3_0.01",
+          "1892_l_2_r-0_0.78-1_0.87-2_0.43-3_1.05",
+          "1893_l_2_r-0_1.16-1_1.08-2_0.06-3_0.09",
+          "1894_l_2_r-0_1.36-1_1.68-2_1.58-3_0.36",
+          "1895_l_2_r-0_0.71-1_1.41-2_1.23-3_0.67",
+          "1896_l_2_r-0_0.08-1_0.47-2_1.32-3_0.4",
+          "1897_l_2_r-0_0.14-1_1.73-2_0.6-3_1.08",
+          "1898_l_2_r-0_1.72-1_0.03-2_2.02-3_1.27",
+          "1899_l_2_r-0_0.0-1_1.17-2_0.11-3_0.75",
+          "1900_l_2_r-0_1.71-1_1.44-2_0.29-3_0.81",
+          "1901_l_2_r-0_1.91-1_0.0-2_2.02-3_1.13",
+          "1902_l_2_r-0_1.86-1_0.47-2_0.54-3_0.03",
+          "1903_l_2_r-0_0.27-1_0.6-2_0.03-3_0.21",
+          "1904_l_2_r-0_0.2-1_0.9-2_1.15-3_0.87",
+          "1905_l_2_r-0_1.46-1_0.88-2_0.03-3_1.66",
+          "1906_l_2_r-0_0.66-1_0.61-2_1.23-3_1.07",
+          "1907_l_2_r-0_0.02-1_1.28-2_1.74-3_0.09",
+          "1908_l_2_r-0_0.94-1_0.68-2_1.76-3_1.39",
+          "1909_l_2_r-0_0.24-1_1.26-2_1.45-3_1.16",
+          "1910_l_2_r-0_0.9-1_0.24-2_1.06-3_0.04",
+          "1911_l_2_r-0_0.5-1_0.13-2_1.19-3_0.58",
+          "1912_l_2_r-0_0.11-1_0.14-2_2.14-3_0.42",
+          "1913_l_2_r-0_1.43-1_0.32-2_0.25-3_0.46",
+          "1914_l_2_r-0_0.09-1_0.13-2_1.92-3_0.06",
+          "1915_l_2_r-0_0.69-1_0.46-2_0.5-3_1.52",
+          "1916_l_2_r-0_0.26-1_1.15-2_1.81-3_0.72",
+          "1917_l_2_r-0_0.93-1_0.01-2_0.99-3_1.37",
+          "1918_l_2_r-0_2.0-1_0.72-2_0.77-3_0.84",
+          "1919_l_2_r-0_1.58-1_1.33-2_0.28-3_0.09",
+          "1920_l_2_r-0_0.28-1_0.95-2_2.65-3_0.95",
+          "1921_l_2_r-0_2.1-1_0.05-2_0.49-3_0.5",
+          "1922_l_2_r-0_0.22-1_0.52-2_0.69-3_0.25",
+          "1923_l_2_r-0_1.39-1_0.87-2_0.73-3_1.46",
+          "1924_l_2_r-0_1.08-1_0.35-2_1.4-3_0.02",
+          "1925_l_2_r-0_1.05-1_2.01-2_0.77-3_0.57",
+          "1926_l_2_r-0_1.03-1_0.3-2_0.02-3_1.0",
+          "1927_l_2_r-0_0.07-1_0.7-2_0.2-3_1.78",
+          "1928_l_2_r-0_0.6-1_0.34-2_0.08-3_1.27",
+          "1929_l_2_r-0_0.23-1_0.07-2_0.63-3_0.23",
+          "1930_l_2_r-0_1.14-1_1.26-2_0.49-3_0.47",
+          "1931_l_2_r-0_0.26-1_0.85-2_0.81-3_1.82",
+          "1932_l_2_r-0_2.09-1_1.1-2_0.53-3_0.78",
+          "1933_l_2_r-0_0.52-1_0.42-2_1.45-3_0.49",
+          "1934_l_2_r-0_1.85-1_0.54-2_0.52-3_0.55",
+          "1935_l_2_r-0_0.18-1_1.09-2_0.09-3_0.2",
+          "1936_l_2_r-0_1.77-1_0.22-2_2.35-3_1.82",
+          "1937_l_2_r-0_1.27-1_1.0-2_0.16-3_1.15",
+          "1938_l_2_r-0_1.48-1_0.88-2_0.04-3_1.49",
+          "1939_l_2_r-0_0.73-1_0.83-2_0.18-3_1.35",
+          "1940_l_2_r-0_1.8-1_0.87-2_0.78-3_0.17",
+          "1941_l_2_r-0_0.44-1_1.78-2_0.89-3_1.23",
+          "1942_l_2_r-0_0.18-1_0.37-2_0.76-3_0.48",
+          "1943_l_2_r-0_1.76-1_0.06-2_0.68-3_1.54",
+          "1944_l_2_r-0_0.26-1_0.22-2_0.97-3_1.64",
+          "1945_l_2_r-0_0.43-1_0.43-2_0.66-3_0.26",
+          "1946_l_2_r-0_0.74-1_0.44-2_0.78-3_0.53",
+          "1947_l_2_r-0_0.11-1_0.78-2_0.58-3_0.12",
+          "1948_l_2_r-0_1.72-1_0.07-2_0.28-3_0.82",
+          "1949_l_2_r-0_0.74-1_0.68-2_0.75-3_0.29",
+          "1950_l_2_r-0_1.32-1_1.52-2_0.7-3_0.69",
+          "1951_l_2_r-0_1.02-1_1.13-2_0.33-3_0.2",
+          "1952_l_2_r-0_0.01-1_0.95-2_1.51-3_0.58",
+          "1953_l_2_r-0_1.8-1_0.2-2_1.49-3_0.54",
+          "1954_l_2_r-0_1.06-1_0.2-2_0.51-3_0.55",
+          "1955_l_2_r-0_0.51-1_1.21-2_0.15-3_1.56",
+          "1956_l_2_r-0_1.66-1_2.74-2_0.15-3_0.94",
+          "1957_l_2_r-0_1.7-1_1.86-2_1.33-3_0.76",
+          "1958_l_2_r-0_0.01-1_1.0-2_1.16-3_1.05",
+          "1959_l_2_r-0_0.05-1_0.02-2_0.45-3_2.22",
+          "1960_l_2_r-0_0.94-1_0.19-2_1.23-3_2.67",
+          "1961_l_2_r-0_1.33-1_1.54-2_2.08-3_1.22",
+          "1962_l_2_r-0_0.56-1_0.71-2_0.08-3_0.22",
+          "1963_l_2_r-0_1.44-1_0.27-2_0.41-3_0.05",
+          "1964_l_2_r-0_0.06-1_0.39-2_0.25-3_0.39",
+          "1965_l_2_r-0_0.3-1_0.5-2_0.84-3_1.51",
+          "1966_l_2_r-0_1.37-1_2.65-2_0.29-3_0.81",
+          "1967_l_2_r-0_0.85-1_0.38-2_0.27-3_1.24",
+          "1968_l_2_r-0_1.66-1_1.16-2_0.02-3_0.42",
+          "1969_l_2_r-0_0.59-1_0.11-2_0.37-3_0.79",
+          "1970_l_2_r-0_0.72-1_0.09-2_1.49-3_1.04",
+          "1971_l_2_r-0_0.01-1_0.3-2_1.19-3_0.53",
+          "1972_l_2_r-0_0.58-1_0.75-2_0.34-3_0.99",
+          "1973_l_2_r-0_0.05-1_1.0-2_0.13-3_0.05",
+          "1974_l_2_r-0_0.63-1_3.46-2_1.02-3_1.54",
+          "1975_l_2_r-0_0.45-1_0.3-2_1.14-3_0.11",
+          "1976_l_2_r-0_0.96-1_0.36-2_0.33-3_0.65",
+          "1977_l_2_r-0_1.59-1_1.69-2_1.51-3_0.07",
+          "1978_l_2_r-0_0.47-1_1.04-2_0.37-3_0.76",
+          "1979_l_2_r-0_0.79-1_0.87-2_0.82-3_3.42",
+          "1980_l_2_r-0_0.26-1_1.75-2_2.34-3_0.98",
+          "1981_l_2_r-0_1.15-1_0.57-2_0.59-3_1.89",
+          "1982_l_2_r-0_1.49-1_0.92-2_0.46-3_0.84",
+          "1983_l_2_r-0_1.29-1_0.35-2_0.63-3_1.91",
+          "1984_l_2_r-0_0.75-1_2.05-2_0.53-3_0.28",
+          "1985_l_2_r-0_0.43-1_0.42-2_0.42-3_0.08",
+          "1986_l_2_r-0_0.07-1_0.99-2_1.7-3_0.98",
+          "1987_l_2_r-0_0.71-1_0.86-2_1.89-3_0.98",
+          "1988_l_2_r-0_1.23-1_0.03-2_1.96-3_0.57",
+          "1989_l_2_r-0_1.48-1_0.69-2_1.18-3_0.13",
+          "1990_l_2_r-0_0.2-1_0.94-2_0.33-3_1.44",
+          "1991_l_2_r-0_0.47-1_0.3-2_0.07-3_1.05",
+          "1992_l_2_r-0_0.57-1_0.66-2_2.18-3_0.63",
+          "1993_l_2_r-0_0.48-1_2.22-2_0.75-3_0.41",
+          "1994_l_2_r-0_0.33-1_1.0-2_1.25-3_0.03",
+          "1995_l_2_r-0_2.07-1_0.49-2_0.51-3_0.33",
+          "1996_l_2_r-0_0.31-1_1.02-2_1.08-3_0.01",
+          "1997_l_2_r-0_1.91-1_1.01-2_1.7-3_0.98"
          ],
          "type": "scatter3d",
          "x": [
-          -5.9821584295789245,
-          3.245595424630145,
-          -1.3798801060141914,
-          -2.509812347214617,
-          1.7265851907643572,
-          0.5125863628018118,
-          -0.8925579400870721,
-          4.890420591684023,
-          0.35220353519371067,
-          1.6719770695276435,
-          -1.8397926812816618,
-          -2.155805167545303,
-          -0.18523756892440466,
-          -2.3759911422008217,
-          -2.6576559961128927,
-          0.724617777841233,
-          2.2568107314160475,
-          -0.5837462901648725,
-          -6.909731163209916,
-          4.287778194443629,
-          -2.250614452603797,
-          -0.3520806078583412,
-          6.7497826483623875,
-          1.9978761880843914,
-          3.5074599112692524,
-          4.936908446185576,
-          -1.6014000453615236,
-          -2.10591833522418,
-          2.141736132360429,
-          -0.2813340898850253,
-          1.3111457216145275,
-          -2.8647289363922783,
-          1.9461225810344704,
-          -1.2828342540045883,
-          -5.392287907300922,
-          -3.317045940970639,
-          2.3404216230893207,
-          2.073566456069838,
-          -1.2855729068863118,
-          -5.547983500622685,
-          -1.097101378816173,
-          -3.8679897492787174,
-          -1.4473671028907062,
-          0.3216335417794534,
-          -3.621377749182683,
-          0.5777763636114596,
-          -2.307215650535302,
-          1.826987322455579,
-          0.07051459267588679,
-          2.2591282966366313,
-          -1.250014777827849,
-          0.0009636356549818754,
-          4.100813864129149,
-          3.562674206408005,
-          3.9136836951908403,
-          0.04096284336337844,
-          5.270033845559966,
-          9.849715787827455,
-          -2.4350345014251538,
-          -0.32657269073567907,
-          5.739648200420882,
-          -0.6070252620248617,
-          0.18262644978824694,
-          -0.2922262052401085,
-          3.0212322031064756,
-          2.0718818065644578,
-          -5.020059461738722,
-          -0.15731576802078542,
-          -5.573896633120429,
-          -3.4935192730180793,
-          2.439726047073586,
-          -5.974316195437684,
-          11.941531570246772,
-          -2.5369272749210787,
-          -3.198307929248378,
-          4.543086833828492,
-          -2.840202033720164,
-          -2.412489074932057,
-          8.043430849187548,
-          1.4889778715414386,
-          0.9859333944075424,
-          -0.951130054788114,
-          -6.56116522853588,
-          -1.5438135337149352,
-          -3.5110495765558913,
-          -4.499223950547724,
-          2.1699596309255207,
-          0.24977012740279153,
-          0.863378920436633,
-          4.493165795852655,
-          2.683301282903851,
-          -0.7010353734345958,
-          0.4697910616509186,
-          -6.797308664315017,
-          4.950825277046589,
-          -2.550079881088456,
-          -0.7441164820400606,
-          5.479744731089042,
-          6.51881951442253,
-          5.455474210396772,
-          -2.309878882622734,
-          -1.299989122318648,
-          1.893479233454484,
-          1.3135940543149587,
-          -2.2068577092868904,
-          -0.8319770241739349,
-          0.4836152069054232,
-          3.062934354673164,
-          -5.109823452404892,
-          -3.634285561341766,
-          4.735151236111509,
-          -0.07379775055217637,
-          -5.587205560804104,
-          -0.22785665844748426,
-          0.9390965241276014,
-          -1.5184672714579852,
-          1.1851714356967364,
-          1.119747492661576,
-          -4.409130908068162,
-          0.8285139866667232,
-          3.5297332939445787,
-          1.1902818277317193,
-          0.19047727044732593,
-          1.38397281839102,
-          -3.666117758592787,
-          1.2515260599626055,
-          0.33933930223039227,
-          -0.7587351923875671,
-          0.1942019028015837,
-          -2.08515735596286,
-          5.160285638074716,
-          2.0086064689757888,
-          1.1235360487829447,
-          -2.946103280573676,
-          -0.7467880547969233,
-          -10.46385424896913,
-          -5.470165920525048,
-          0.5574636801827382,
-          1.1590312733363184,
-          -1.9638378831297145,
-          2.5458065101967615,
-          2.9205951642387955,
-          7.351391744797692,
-          0.5505826762555555,
-          -1.4588262702691073,
-          -6.2232030117618855,
-          -3.7953725292917606,
-          7.730617225541131,
-          1.638822558331012,
-          0.0450946914635206,
-          -1.5822297025176737,
-          -2.5252683880505242,
-          -0.3953645277284869,
-          -6.70149276564307,
-          -3.459877367667688,
-          -5.701422881703655,
-          0.8799388172153783,
-          -2.1698428160402807,
-          5.130538254564765,
-          1.7058178316540293,
-          -0.46923313702364194,
-          -0.530828846848374,
-          0.7383300347567313,
-          -1.836030731545334,
-          0.3706983763949379,
-          -0.06753929255039766,
-          -7.87082822193332,
-          1.340077129758288,
-          1.9986791535896273,
-          3.75081189947993,
-          0.8970031456845392,
-          -1.3724746281997675,
-          -0.5831549894183448,
-          -0.8524416559097853,
-          -3.3214350161171398,
-          5.553542611892062,
-          -0.7405078950976623,
-          2.554873452100416,
-          8.262451115210078,
-          7.712940742070653,
-          0.10371362391918863,
-          -3.361638925583462,
-          -3.577620006818051,
-          1.8469283469221394,
-          -0.8083824837524505,
-          -2.1764068575519397,
-          2.0045551194994724,
-          1.787814384713594,
-          -3.145449569982065,
-          0.8724409097378071,
-          -5.568208573541229,
-          2.8073700426058315,
-          -1.446601286587919,
-          1.0633198824167998,
-          5.787077939904653,
-          2.2573987393284844,
-          -4.122884692925015,
-          1.300430846537261,
-          0.17851518194715912,
-          -5.058239640893254,
-          1.3496560756494207,
-          -2.4632225972605997,
-          4.270145333976259,
-          -0.9314977853174025,
-          3.590972328484903,
-          3.8785643657356905,
-          -1.6210402308946197,
-          -1.7032972262709998,
-          5.228330020823285,
-          -0.4434933278939342,
-          5.27548811851514,
-          4.633950989464929,
-          -2.2908467311876466,
-          0.18720049877117192,
-          -5.537961744475123,
-          2.202535867123859,
-          -4.251343448608887,
-          -3.8897318101242657,
-          -1.1530739696072492,
-          1.6494261343842882,
-          -1.6392381212353109,
-          5.375664952078771,
-          -1.4182718041508355,
-          0.8101034076899527,
-          4.363592791560398,
-          1.373118647634243,
-          0.01280098338706406,
-          -5.582955438091392,
-          -0.9432590336823024,
-          4.660091167458831,
-          1.3952150457396022,
-          -4.022985963153969,
-          5.2666408003469325,
-          -5.325689557634647,
-          0.5280177366206891,
-          -1.4458721282500626,
-          3.1642497435074612,
-          1.352370902745477,
-          0.04607028336858149,
-          -2.2971991506522813,
-          1.6494173981040368,
-          -4.477535488285304,
-          -6.628714196479665,
-          3.3672301342731745,
-          2.565236152472675,
-          -1.787195663816046,
-          -1.881833709796923,
-          -3.517189568659733,
-          -1.9663417609536866,
-          -2.3205164928303925,
-          4.845555782448868,
-          -0.3623126262727487,
-          -1.727933005644542,
-          0.3600184326564036,
-          -0.7979176426168694,
-          -6.200458263016246,
-          -2.585434680153093,
-          -0.9341951724020573,
-          0.9457790462575796,
-          -3.345271276948473,
-          -1.871798552379726,
-          -1.8737394605474909,
-          -0.014081772993652358,
-          -1.391948120946096,
-          7.6934271599806525,
-          -4.486091269330623,
-          1.690147668537493,
-          0.6788941022603978,
-          0.8926291517851977,
-          0.5381875759613617,
-          -4.109886835241158,
-          -3.7753569120570107,
-          -0.9795476741161615,
-          -6.353055648277196,
-          -5.56295800203506,
-          -0.461771595989201,
-          2.663875032636729,
-          -0.5624812245990796,
-          1.3910812502101653,
-          -0.8622423044121502,
-          3.6512081278434323,
-          3.1413351151362807,
-          -0.4293687928254811,
-          -5.225836903888352,
-          -5.934285057228446,
-          -0.7046442389192265,
-          7.288576652438355,
-          -1.2516975904738799,
-          -6.601677182542212,
-          -1.0378166962705555,
-          -0.5298464506905279,
-          6.099394866817381,
-          -1.3139233576752338,
-          1.7864472114003271,
-          2.325929596567621,
-          -2.15628339687277,
-          -1.6561083537574322,
-          -3.5818124134954035,
-          -4.853456646172283,
-          0.2409645113097842,
-          1.8878852839167057,
-          -1.5787894745610649,
-          -3.2332359180368497,
-          0.1192944331827177,
-          3.592176418866544,
-          -3.952344531511552,
-          -3.5275699471803064,
-          5.5071278190475415,
-          2.7203447359491784,
-          -2.0551410827079537,
-          -3.7081928522125094,
-          -1.1003178956577757,
-          -4.060485765493909,
-          1.6063023171192996,
-          -0.5263058672634626,
-          4.6807232065058555,
-          -1.4328382552063896,
-          -0.5322087738288331,
-          2.0971820799767515,
-          -1.1600604358901683,
-          -0.4051583444326099,
-          1.4288537271814903,
-          3.7935389638896577,
-          2.356001605857399,
-          -3.2093601842449684,
-          -0.6883020702811111,
-          -3.461714794584438,
-          0.2753013263174181,
-          2.6171653506845765,
-          0.48094334771664,
-          1.5451924287878012,
-          6.116421040407514,
-          -0.1038012388554404
+          -0.21682053297209802,
+          -0.3875159634351506,
+          -0.792732101757964,
+          -0.17641525554795479,
+          2.5285988101632406,
+          -0.10653592128505807,
+          1.942739755492521,
+          1.3265902901634825,
+          -0.10208381484012019,
+          1.2149037530392555,
+          0.9420355376958611,
+          -0.04646011732547328,
+          -0.020201630393774206,
+          -1.1386009510047206,
+          -0.6749311789767167,
+          -1.4096323776303885,
+          0.3578375439888597,
+          2.8478109431976186,
+          2.5972005087307704,
+          0.6495266555453472,
+          -2.9650173228074896,
+          -0.13311993086768648,
+          -0.45238897609459494,
+          -2.4012076680510948,
+          1.0194809198013484,
+          0.01335670501594155,
+          -1.1222981149433582,
+          -0.30375240564022454,
+          -0.10713751538937721,
+          -1.249552246493078,
+          -0.9184077389177381,
+          -0.11542018819045219,
+          -0.37188613935621695,
+          1.5293379047784916,
+          -0.18468294497575788,
+          1.6264007310863633,
+          0.14268955772438807,
+          0.9735568144241158,
+          -1.951375736452687,
+          0.7058228922842686,
+          -0.6857960668406771,
+          2.385557155484664,
+          -0.20222632132552754,
+          3.3520211338851493,
+          -0.49610652777119624,
+          -0.4987316872059362,
+          -0.28741066733140697,
+          2.504919309637849,
+          3.74648394481223,
+          -0.6491465847342028,
+          -1.274209656669179,
+          4.641349926352112,
+          -1.4042218199070295,
+          -0.21118446697776738,
+          -0.5593635526469367,
+          2.2528130760225755,
+          2.7341128451115635,
+          -0.9567342205408713,
+          0.3446934810538772,
+          1.4362616791146035,
+          -0.823947518580239,
+          -0.45604264156379726,
+          3.8114528571136517,
+          2.4915114796959594,
+          -1.2998412573907254,
+          -0.46202103550321816,
+          -0.0021362818376005066,
+          0.854807180194505,
+          1.8099550840011616,
+          -1.1967149899948124,
+          -0.8239152056002399,
+          1.035742402859377,
+          1.7754471481409553,
+          -0.8625397214138875,
+          -0.09689589780160168,
+          2.6261809987437434,
+          -0.49752190682120356,
+          1.1711925080526362,
+          0.5594064734158357,
+          1.644872647558996,
+          1.2782668031182958,
+          0.13158347272412763,
+          -0.9222511308100994,
+          2.7126730983540233,
+          -0.22348147132244,
+          2.1741062655052965,
+          -1.089337655618619,
+          0.5000044774510496,
+          -0.7446247267609898,
+          -0.051260802596673205,
+          -1.4815308311397435,
+          2.564388658490085,
+          0.12897380282041815,
+          1.8833210065877248,
+          -0.33577630385501744,
+          1.8218879474237157,
+          -0.7212415559419101,
+          -1.0462145606976074,
+          -0.43824988285077193,
+          0.462903048269072,
+          -0.2930537271946392,
+          1.8694842403930352,
+          -0.7069546158233211,
+          2.789709828452298,
+          -0.10040127433249801,
+          2.9561593888460758,
+          2.088371285072525,
+          0.0479902192272369,
+          -1.0634541130159803,
+          -0.06463566683906574,
+          -0.5597075731597678,
+          0.6007526304691801,
+          -0.5542556299094443,
+          -0.9612175454889436,
+          1.7068407922148294,
+          2.0937543557064044,
+          1.3513759717429474,
+          -0.028050963421130337,
+          -1.2569414601673232,
+          0.2943777472355785,
+          -0.20648838248303947,
+          -1.2618442948771111,
+          1.5306135218394563,
+          3.013683619531627,
+          -1.3116415931629954,
+          -0.09624164705587157,
+          -1.1472829463544274,
+          0.19934428399205195,
+          -0.056261263367709535,
+          -0.09401902837298737,
+          1.671054432599803,
+          0.6646462435163056,
+          0.005412624992824355,
+          -0.5475501606416533,
+          -0.47158198871106616,
+          2.9906514147623926,
+          0.2821719416956533,
+          1.4778480549400737,
+          -0.5284237770033589,
+          1.9269164629817401,
+          0.9762802218842436,
+          -0.22499452498008932,
+          -0.09307017421200037,
+          2.1056632512571487,
+          -1.5448979356947805,
+          0.6733721634880514,
+          1.789436082800289,
+          1.751018131386581,
+          2.611222767819844,
+          3.061767346103634,
+          -0.9848790026550598,
+          2.36463837946361,
+          1.8990170744329695,
+          -1.0388683995704087,
+          4.169334123120613,
+          3.23624438879155,
+          -0.11607275508918957,
+          0.252648426126557,
+          -0.2158395370609658,
+          2.5986367141351536,
+          -0.9752283396509165,
+          1.056640398802914,
+          2.0013923661729223,
+          0.6917966722662761,
+          1.6279955809519553,
+          -0.717383014347333,
+          -0.09056368496705036,
+          1.4054764350401647,
+          -0.35533050523965715,
+          -1.1040785035932497,
+          -0.16844032578614376,
+          4.168614737942852,
+          -0.4667033538058709,
+          -0.8571487207986785,
+          -0.7087221912358412,
+          0.004325406979668878,
+          -0.660296986145412,
+          -0.4959068702531304,
+          -0.22309591324209488,
+          0.9696775637031286,
+          2.4157507786867436,
+          2.785377200180908,
+          -0.14611256147559937,
+          2.9705546312705913,
+          2.9256715241599114,
+          1.5836581106960053,
+          -0.2389860195293212,
+          0.6433280128301267,
+          2.7678480368860487,
+          -0.7354855428516021,
+          2.4308352531927495,
+          1.4492497986626136,
+          1.1179707104163121,
+          0.9419299690412182,
+          -1.0418201742189148,
+          1.2931147853315563,
+          -1.1071837131514695,
+          -0.45674973309461797,
+          -0.9167271787291567,
+          1.9517499048238116,
+          -1.4046382993220283,
+          -0.1089513645547171,
+          1.021994308308981,
+          2.821436781157293,
+          -0.6904306753837302,
+          -1.4957134493809447,
+          -1.8709701287999292,
+          0.2373556516128601,
+          -0.3862814117195157,
+          -0.8760640365413035,
+          -1.3192157759643708,
+          1.7473448710530102,
+          0.32361228436836165,
+          1.9353230864243165,
+          0.25225565390403903,
+          2.2185794980699227,
+          2.6256897379699633,
+          -0.18430885483270232,
+          0.16515512594627568,
+          0.662141811295103,
+          -0.8114585168348383,
+          1.8277286663207613,
+          1.9822211095074782,
+          0.13402956348491502,
+          2.199075307462243,
+          2.421840709829226,
+          -0.03795538231208284,
+          3.4397730870383008,
+          2.1170247804014277,
+          2.7571404084050504,
+          -1.004621376570988,
+          0.2751816837502916,
+          -0.23124837030550127,
+          -0.7619267086242048,
+          1.7468147621454158,
+          0.6516684821188052,
+          -0.5189436209104052,
+          -2.428206719593206,
+          1.6426688401197056,
+          2.336440366079591,
+          -0.3372057293215971,
+          2.773285772494204,
+          -0.10950776002642071,
+          0.3059618950873473,
+          3.011168425254145,
+          1.378231029884139,
+          1.1981475599897804,
+          2.178395988619862,
+          -0.37633306412478285,
+          0.1491498780969378,
+          1.0867182321518138,
+          1.4148980144888816,
+          -2.0187463346160213,
+          3.164338260550037,
+          -0.3480533004226587,
+          1.7805931953610603,
+          -0.6289558977929877,
+          0.25618684282903736,
+          -2.9866436304190906,
+          3.4014202314702775,
+          -1.4306857056966424,
+          -0.8443644793612477,
+          -0.2267709746724651,
+          1.4113880119372335,
+          0.12031837887057217,
+          0.4504873889486245,
+          -0.22460781262633533,
+          1.9371596703171237,
+          0.03205879859297056,
+          2.638264944750535,
+          2.823180289073031,
+          0.8619041688965688,
+          2.7425085529012283,
+          1.8093007322454882,
+          -1.0544137260929367,
+          3.2529659079934548,
+          -0.4591124173458945,
+          1.0039994031371238,
+          -1.2014015668887272,
+          0.3337991682701884,
+          2.319226592654334,
+          -1.1458460484278632,
+          -0.2572632416601308,
+          0.2905508194978138,
+          -1.3078411589946706,
+          3.215195631787968,
+          0.12906889555821244,
+          2.7327656158554166,
+          4.545435628894289,
+          -0.9037674122829165,
+          -0.1445834944889628,
+          2.5716107346040147,
+          0.5435467061190628,
+          0.7819937410224783,
+          -1.3048280264509553,
+          0.35874154262978797,
+          -1.1593789221968467,
+          0.3150519052428863,
+          -0.916339692090171,
+          1.6821755033602461,
+          3.0958771627406736,
+          -0.3335910276427345,
+          0.6320557231306216,
+          2.432240726679693,
+          -1.314789023164626,
+          0.39691454498726475,
+          -0.49021220421155975,
+          0.028719328110256237,
+          -0.9866020985865376,
+          1.9697335208701285,
+          0.6835046074702145,
+          1.0737079707011483,
+          -0.06792651885049605,
+          -0.11019688296809038,
+          -0.004170847885697437,
+          0.5122798440866257,
+          -0.0029617621071891254,
+          2.269001350664299,
+          -0.8256192634343695,
+          2.713725577648712,
+          -0.12583870949150056,
+          -0.26643609489534925,
+          0.08377307385598853,
+          2.784384412763144,
+          -1.2752111809394426,
+          2.61295882345986,
+          0.0906554379170681,
+          0.5003639155116176,
+          0.49810695892726453,
+          1.1088859486062774,
+          0.7532214521311639,
+          0.44021959916276543,
+          1.5266375187132661,
+          0.7673467512622242,
+          -0.18450964295774908,
+          0.7976695057614334,
+          3.568322481132734,
+          -0.5445101380220936,
+          0.6214260696053008,
+          0.8402269618182322,
+          -1.2698279271451987,
+          0.12944633145005424,
+          -0.09532345518764429,
+          0.8212106252378005,
+          2.604528266543247,
+          -1.9813301633865734,
+          0.7525595874935009,
+          1.608774219258463,
+          2.2289400367708465,
+          -0.6013540543983147,
+          -0.8142761968515766,
+          2.6743174070621913,
+          -0.27579032847152307,
+          -1.361080330734767,
+          -1.4111802686072492,
+          3.3680916954803206,
+          0.7186386568273274,
+          1.1783378170701637,
+          -0.4026822188160992,
+          2.1442599658365347,
+          -1.2749867735466482,
+          -0.5618523463826457,
+          3.676262749720836,
+          0.5437761503891848,
+          1.019872896956594,
+          2.4106451791005785,
+          1.0566697053312295,
+          2.803731091776728,
+          2.2984368244317457,
+          2.7456633538467776,
+          2.1870536040945154,
+          1.5927331851700375,
+          0.6473313897741403,
+          0.9139694025192969,
+          0.12610229326913114,
+          2.4227796389494873,
+          0.8669610823366198,
+          2.8963369420542078,
+          0.6740143052681712,
+          2.337602008803933,
+          0.9605380583687141,
+          2.8912020044168427,
+          1.712342865754616,
+          2.9055248793359834,
+          3.209611893834094,
+          1.7002801540047772,
+          0.7929549558062419,
+          1.4732947569741686,
+          1.0497705391455914,
+          0.9318547498846166,
+          0.6070589334605707,
+          1.301297102738942,
+          1.9099926064669566,
+          0.8726398322664812,
+          0.11196063238156473,
+          0.8803435873922368,
+          4.493514324492141,
+          0.9148176298769992,
+          2.3645195019074605,
+          0.1955866969585861,
+          0.4057411484085707,
+          1.3225933924958524,
+          1.314476507580004,
+          0.6926276642204485,
+          0.27696152641611227,
+          4.083713896152039,
+          1.9129852583737295,
+          3.766275354205019,
+          1.5724256356908533,
+          1.14407807081606,
+          0.5483579031171177,
+          1.402376452097836,
+          1.9146055822512538,
+          1.3209673332861476,
+          2.039897933587149,
+          1.05012550269047,
+          2.357714085314508,
+          0.6855922120077081,
+          1.6417122928613668,
+          1.0351003156384133,
+          2.072867611749837,
+          2.152175033942661,
+          2.7544815377116882,
+          1.339813386533355,
+          0.6132147278556664,
+          1.8204821590148483,
+          1.263698464691201,
+          1.4534521515707817,
+          1.387564859814653,
+          0.9492469884283603,
+          2.2086241246080833,
+          2.508512582760825,
+          1.1463369797527583,
+          1.0305649370811902,
+          0.2578200648575948,
+          0.8942245166128155,
+          0.4027508268693377,
+          1.6099047504296071,
+          3.2850412012699235,
+          1.3616660218995182,
+          2.692101064391612,
+          0.7105800596970657,
+          0.30475367910967643,
+          1.4136645544513888,
+          2.6164127692587122,
+          2.3825746615270993,
+          4.147485162399287,
+          0.2992571074320399,
+          1.3379853538708781,
+          0.2295116353685167,
+          0.1056092524322576,
+          3.4709634771169124,
+          0.46080504319476645,
+          2.9599834185911327,
+          0.8231827552268985,
+          1.3029582394831478,
+          0.12961593599919308,
+          0.2928367530645124,
+          0.604283030848272,
+          0.316783968535554,
+          2.35289668601412,
+          2.471846189184484,
+          2.89474650325022,
+          1.1872153265590133,
+          2.814942631690685,
+          1.4223360422315388,
+          2.574246249304255,
+          2.552050306450373,
+          1.656066955997157,
+          0.07686980557839451,
+          1.4487264903945265,
+          1.042429049471594,
+          0.0005245044325036252,
+          1.4767501310821072,
+          0.8774304202769733,
+          1.4368583840409759,
+          1.2686870445222616,
+          2.231437634622707,
+          1.2481096837466037,
+          2.8859172615713087,
+          0.5273891306236536,
+          0.2310323848211201,
+          2.716279783582682,
+          1.0879767397878641,
+          2.4536439583818264,
+          1.4610973297062708,
+          0.575318169249712,
+          1.2507114061470592,
+          0.6352501102222652,
+          1.2190908841640458,
+          1.4052753676036338,
+          2.4473932302775077,
+          0.12368525685334308,
+          1.5196426685759947,
+          1.0432536771682286,
+          3.5134109958330035,
+          3.1505066686976537,
+          0.9499684776030974,
+          2.069883250751248,
+          2.3890452993329068,
+          2.1971514214466765,
+          0.7829975786081375,
+          2.3066621752303407,
+          2.68156201330204,
+          3.4967085800490643,
+          1.8278835122375527,
+          0.27316052330442586,
+          0.4723099448750322,
+          1.6984692710786735,
+          1.5933905476139787,
+          2.100250540352463,
+          0.8475635031813583,
+          0.18619946027217293,
+          1.3694230046075107,
+          2.1045609692682663,
+          0.9685101286671506,
+          1.8434747863434726,
+          2.2702963112783987,
+          2.340303706444172,
+          2.9966789889993537,
+          2.7818175162815963,
+          1.2750179726083704,
+          1.6015779057942687,
+          0.9771782082330763,
+          1.1719187854134105,
+          2.0926567994846805,
+          1.3157351648475273,
+          4.26925118778785,
+          0.8202656480441647,
+          1.4715010578765428,
+          1.4089836807070637,
+          0.3226683299862051,
+          4.238875138448314,
+          1.9553328011283033,
+          3.004970582859132,
+          2.2922295939519666,
+          2.5223017579039997,
+          0.44928155613113707,
+          1.1409625418047988,
+          2.553850910507385,
+          2.7970520344052003,
+          1.5922500519214338,
+          1.3935300317717212,
+          3.755863236319897,
+          0.7048435292381225,
+          2.716943781619811,
+          0.49910357160612806,
+          2.0253254240752296,
+          1.705448840512934,
+          1.3760310655796146,
+          0.7485214470301662,
+          3.27459805262885,
+          0.8544307887213622,
+          1.3185701395461948,
+          1.704883708751442,
+          1.907403948966762,
+          2.126112151540677,
+          1.3416910300622626,
+          1.798161483985429,
+          0.8311974617109398,
+          1.0488549738412387,
+          0.08751656129673913,
+          0.7694840076999196,
+          1.8449549814969732,
+          0.9220334057001847,
+          1.8390942371805008,
+          3.1059496097686248,
+          1.6386781211326067,
+          1.5423110189250346,
+          1.1999343698905125,
+          1.2713467636201297,
+          2.368902839668944,
+          2.122133068954011,
+          2.584375378377085,
+          1.0729409115377821,
+          1.606438936938882,
+          1.3869502602038384,
+          1.6702496266278515,
+          0.0359512609084639,
+          0.7780165917551094,
+          3.098652718638289,
+          1.6568745511925447,
+          1.7931676064475837,
+          3.12596061806619,
+          0.8944968631744248,
+          3.006290999313528,
+          0.8667423514932446,
+          0.08740104651068303,
+          0.9495365999208479,
+          1.3185513896694956,
+          4.499928038283921,
+          1.4580033010437665,
+          0.01600214733815386,
+          0.5741844486761568,
+          0.9986248281896134,
+          1.8468098480340727,
+          2.5652882550573612,
+          0.23155462866865817,
+          3.783668919566117,
+          2.735728916283846,
+          0.7849270460578261,
+          2.3878185425207974,
+          0.5480739537653593,
+          1.9073362893794643,
+          1.8234485482688152,
+          1.6973775565734344,
+          2.5449369676196127,
+          2.797409690568678,
+          0.17306070054949874,
+          2.643390301519157,
+          0.47661096920087,
+          2.6256725692409835,
+          1.638262022068799,
+          2.7245706633713445,
+          0.5260577533619533,
+          0.11691451786936746,
+          0.8204953712656748,
+          0.29044929531263786,
+          0.6913888185806409,
+          1.0422801403108384,
+          1.3898069090423675,
+          0.7963397730311458,
+          1.4628111314611822,
+          2.3444066408631508,
+          1.5513583008384435,
+          1.1104261465210246,
+          2.9475328729961845,
+          2.397731098656564,
+          4.156739714211328,
+          1.218155194879722,
+          2.1842267704766303,
+          0.054993327321999574,
+          1.0730070613040408,
+          2.2037659658667565,
+          2.6306926806094637,
+          1.9020730646183381,
+          0.4201329197211121,
+          0.7910460733551495,
+          2.4586956614393882,
+          2.57545003557939,
+          0.9853035971270171,
+          0.046780393376523066,
+          1.5430024191497664,
+          0.9416447030906454,
+          2.9010755825732373,
+          0.16320300615889827,
+          0.7596715761034173,
+          3.4229586075590728,
+          1.4838147039569973,
+          2.3806413663727763,
+          0.8375496003821197,
+          2.43697095943525,
+          2.7432446917256157,
+          0.37326876415846144,
+          1.7604810559129378,
+          4.2433865757728135,
+          0.5728160963480275,
+          0.28532160442601706,
+          1.7293338873000907,
+          2.151403710498976,
+          2.424914375784188,
+          0.4090287072289768,
+          0.025249866687655387,
+          2.155715443294523,
+          1.578001139110142,
+          0.9765839256999205
          ],
          "y": [
-          1.2658614978612897,
-          -3.452665514165101,
-          6.459315375651518,
-          -1.1132949776793528,
-          1.4057774029893753,
-          1.2225949845112931,
-          -1.0967101760385627,
-          4.681180248427756,
-          1.7087545825656036,
-          1.8044156557787092,
-          -1.951749936836917,
-          -0.9853254875492443,
-          -7.125727918884534,
-          9.444637584323477,
-          0.37584762833605573,
-          0.09988231388193897,
-          1.4865957953882956,
-          0.11723704394439231,
-          -6.603363351667949,
-          1.5877299068752542,
-          4.049235509632504,
-          -3.832387856251634,
-          -1.5104102287033985,
-          -0.40052463625912,
-          1.1749146269592863,
-          -4.169334823689241,
-          -4.987292405164247,
-          -1.29660377384293,
-          3.0683944068587024,
-          -2.0909868989959923,
-          -3.8878572396392506,
-          0.4040391582208027,
-          0.8618935724714514,
-          0.6284876416857454,
-          -5.850912949295419,
-          3.9818553227105116,
-          -3.259108898394788,
-          0.5492825643946477,
-          -3.7015378897530793,
-          -1.839692115166416,
-          -5.263263237696265,
-          1.4255002990434587,
-          -6.325748588165083,
-          5.532957223827652,
-          -0.9919574732652098,
-          -0.25401243834281584,
-          6.680373877894434,
-          -4.410165338000516,
-          0.9876391591663805,
-          -2.6135322819114646,
-          1.3968334157029956,
-          -0.24066158646062796,
-          -2.935015961240128,
-          5.343617146402175,
-          -1.9092519443786882,
-          -7.273806809930594,
-          2.566893795029014,
-          -2.6177561546382173,
-          6.877269893953692,
-          -1.4548318110373355,
-          -1.9111881884309583,
-          2.676015253414205,
-          6.8845662457960115,
-          3.594194652647639,
-          -1.6606225063250852,
-          2.9683177373667804,
-          0.14035140219097134,
-          -2.178614722922275,
-          -1.5513248157711093,
-          -0.7665904881150056,
-          -3.514208664495141,
-          -0.2729483541775019,
-          -1.5844219710999203,
-          -2.8059687627672467,
-          7.4869459221904195,
-          -0.21313237583182912,
-          -1.6769520788196404,
-          4.0954235292380226,
-          -1.7715681810955528,
-          -6.661222514246144,
-          -4.248143018767562,
-          -2.582704794404028,
-          -0.15782434573930457,
-          -4.379199886814558,
-          -1.6056749870684441,
-          4.810703791833041,
-          -3.159207466669256,
-          -2.5544902573805097,
-          -4.754781273245692,
-          0.6855608108332807,
-          3.511207420602112,
-          5.227845557725796,
-          -0.6560125053837151,
-          -2.25747611117417,
-          0.2435043787239522,
-          3.767826221747296,
-          4.2057368572489136,
-          -0.33300085722108036,
-          1.7367522189777211,
-          -2.08737663805069,
-          -3.9296736638084777,
-          2.428281604459001,
-          1.2088226015238508,
-          -0.4234554949212985,
-          -1.4387804133995412,
-          -0.7808788268596564,
-          0.9814857088130581,
-          -0.10860785004411758,
-          2.3697564026508697,
-          -1.1918749769383306,
-          2.643452992161984,
-          -2.438253000072948,
-          -1.023948961281007,
-          6.962295241598969,
-          1.8259651929487908,
-          -2.11752375531948,
-          4.621875144270395,
-          4.317000639651227,
-          -5.709600787734376,
-          -0.9452592786385691,
-          3.199015722980039,
-          0.8037130986762757,
-          0.7070395785573964,
-          -2.3063847716066346,
-          5.519226074654293,
-          4.158299822535633,
-          -1.2581972530780763,
-          5.359514256451148,
-          7.812416885837398,
-          -2.836149078141516,
-          0.8831593367963514,
-          2.0099855582632378,
-          1.83352494459655,
-          0.16639935390056476,
-          1.6016198792217309,
-          -1.2892611568165906,
-          5.066931424980696,
-          -0.4869523569359534,
-          -5.920497118522112,
-          -3.4572932081959187,
-          4.771639994231741,
-          -4.629908772510918,
-          2.6176401656058466,
-          -2.78797775060892,
-          0.9966744233325725,
-          -4.653664564433542,
-          -2.1862529749027946,
-          1.8941439496803598,
-          -5.048406320793786,
-          -1.5318921873016431,
-          -1.8795147953220193,
-          2.7450721956990454,
-          0.3693791705976988,
-          6.637633369114185,
-          5.476731022791265,
-          4.368923873824689,
-          4.775319681221739,
-          0.5370273787480518,
-          5.250915170671562,
-          0.4923455114917462,
-          -5.793107653845688,
-          -6.805693043542088,
-          -1.3277941889377214,
-          2.770967522211134,
-          -0.1850545990519351,
-          5.091850972644119,
-          6.811599925586062,
-          -2.762483327923993,
-          6.761536304175831,
-          4.097713612391952,
-          -0.4617664714891384,
-          -2.181899108730835,
-          0.38432447813515935,
-          -3.2244068809402426,
-          -3.201955157119541,
-          -5.06320022077731,
-          -6.025116476725119,
-          -2.51563151256449,
-          -2.7638960519964044,
-          1.5261017422727858,
-          -0.03606351411718303,
-          1.3331257828608094,
-          2.8310008592033515,
-          2.508705541214942,
-          0.8846023716833303,
-          -1.007722499811686,
-          -2.1483774606907047,
-          -2.4315402705839606,
-          -3.1070133369441075,
-          1.4957230795871463,
-          4.588505613176968,
-          -6.206153488875464,
-          -3.609024652293959,
-          1.9853938848741515,
-          0.4878759774159765,
-          -0.5915767761387496,
-          -1.8688366377586838,
-          0.9077941461914119,
-          1.1265550501036907,
-          -7.577289501549613,
-          -0.017775045385935963,
-          -0.09636106223739518,
-          -5.786021714319281,
-          -2.053196649408012,
-          -0.8288016103277438,
-          -2.5150375157055858,
-          2.186934950122985,
-          0.036523709831665564,
-          2.823492990214545,
-          1.1889074577779033,
-          1.5058804170496158,
-          -5.275065288838831,
-          -1.2194867500532767,
-          0.47964781312458943,
-          2.0284042432744385,
-          3.482228832420108,
-          -1.1334191598003498,
-          4.778307678966229,
-          -3.8372873039738518,
-          -7.539417500155285,
-          -2.2422277529956345,
-          1.499141102670427,
-          -3.9198441267802884,
-          -8.280643232272732,
-          -3.3122819346225785,
-          -3.42440057117394,
-          0.7419654937272171,
-          1.7786524574353249,
-          0.2409342006177671,
-          1.6728118211409173,
-          0.5623945880124676,
-          4.387500018785913,
-          -0.3044903764421577,
-          -2.65513497993757,
-          -0.6978209709656593,
-          1.9952245898387304,
-          3.6029869567343003,
-          0.3975407744080928,
-          6.512464518756012,
-          -0.026036143467834363,
-          0.8915347067899608,
-          4.8859062485163465,
-          -4.400308332204449,
-          -0.0029929237230428662,
-          0.6009553551047813,
-          -1.415789189859216,
-          -0.8407207383520164,
-          0.8024512722472428,
-          -2.729210396871618,
-          -5.145370073660026,
-          1.406640228747805,
-          0.4854974905431831,
-          1.6679844886304698,
-          -5.18535186236943,
-          -3.901133328702695,
-          -3.3557302501971233,
-          4.385406726824958,
-          1.3661027643898498,
-          -2.0857371666273417,
-          3.5182482470153102,
-          -4.143880445678923,
-          2.778300960730005,
-          2.496168269432734,
-          1.9410513190212038,
-          -0.9058345182881001,
-          4.849894990430074,
-          -6.516234380630611,
-          -0.7873584873129412,
-          -4.629366884677329,
-          3.1541729205983176,
-          7.270344415284983,
-          -1.2723412275722044,
-          -1.6282815654215126,
-          -0.15243599425714194,
-          2.559562917907578,
-          0.7206129442690138,
-          -1.2130570383698953,
-          -4.905185772286245,
-          -1.4565987417546777,
-          3.2773441996355883,
-          2.716783894236573,
-          -1.2949209855880182,
-          -1.6283828695039626,
-          2.2322705977538946,
-          5.034980623655062,
-          -3.8717576261360453,
-          4.612715382935303,
-          3.5466410872193888,
-          0.9193327847648811,
-          -1.3462986052824388,
-          -2.003783523020074,
-          -1.5765526837722348,
-          5.273498248975179,
-          -3.0447014355322364,
-          0.8425075551166338,
-          -1.7469086698583671,
-          3.6084128332140937,
-          -6.797103166768171,
-          1.801816547939745,
-          -1.2048703653280988,
-          2.3214300052361136,
-          0.48451940620084005,
-          3.2349311388995816,
-          -7.921671140564475,
-          0.5091807250489494,
-          5.110233462652169,
-          2.7576240525309634,
-          5.388711832981098,
-          2.524468176997417,
-          1.0875728747449749,
-          5.806727642806977,
-          -0.5776908900699436,
-          3.0219326616562467,
-          -0.5857009803200371,
-          -0.0325146790239593,
-          1.5562263885604894,
-          -6.019311681061821,
-          2.1637448536687094,
-          1.3635943434221227,
-          4.78488503178339,
-          -1.6361065822628649,
-          8.083665704346624,
-          -4.277312787915684,
-          3.179461472490805,
-          1.305085156801056,
-          2.835066277770572,
-          1.5415411950319882,
-          0.285551086656454,
-          1.6174081826352953,
-          -0.4793788113781127,
-          0.012813153695943182,
-          -4.233308525415596,
-          -0.36045041274178125
+          -1.809063083182856,
+          -2.8565931627749377,
+          -1.6874424575975393,
+          -2.197488531417715,
+          2.071439444751699,
+          -0.6533044320320922,
+          1.0442694182937746,
+          2.202298269705896,
+          -0.9479270448613502,
+          0.16967682384695792,
+          0.40042606205810993,
+          1.043081153828517,
+          0.2967558411281601,
+          -1.5619561804645983,
+          -0.5151471001470909,
+          -2.0715340951747656,
+          2.1047169957833725,
+          0.41856297039961965,
+          0.008731088432645473,
+          0.9114987239059475,
+          -0.313931030925382,
+          -2.585799714857373,
+          0.3128368125624008,
+          -1.014869982533351,
+          0.3955573850967835,
+          0.579108067902623,
+          -3.0051559158332473,
+          -0.35256154848722765,
+          -0.5302411937292211,
+          -4.0287226247481955,
+          1.291712989064861,
+          -0.17396822694103975,
+          -2.1003347465512583,
+          1.357139809764862,
+          -2.1857832860352886,
+          0.09723596087796227,
+          0.8375311628318782,
+          1.3183243285712405,
+          0.49628231577025583,
+          -1.0331425942389263,
+          -4.2489142690957475,
+          0.7906240741596631,
+          -2.7949155749620624,
+          -1.934173696162036,
+          -1.6954387516858258,
+          1.655696377019063,
+          0.6900610651070229,
+          -0.5998404998651932,
+          0.6092716664263347,
+          -0.5594283309064872,
+          -0.08847687042812191,
+          -0.7194815497138713,
+          -1.1494627965588333,
+          -1.6806918999993439,
+          -1.5181723763756896,
+          -1.3190850969368333,
+          1.1610931209083604,
+          -0.7449255104160087,
+          0.4445208872566455,
+          -0.9834385712537628,
+          2.7416777844788696,
+          -1.7111691608377106,
+          0.3044019322060185,
+          -1.0119758500513196,
+          -0.6648640714035637,
+          -1.4490855190854957,
+          -0.8534203215538663,
+          -1.7927692537968711,
+          0.5924207143148645,
+          1.223881495662103,
+          -1.067875137198203,
+          -0.5727168953289522,
+          0.7193110539016958,
+          0.2918140738652595,
+          0.4693408766459293,
+          -0.1070798172872135,
+          -1.8806555612131899,
+          0.7355686953683873,
+          0.9022859262723579,
+          -0.8962416283426825,
+          0.8124432611508043,
+          0.00791736100190965,
+          0.2859525344874494,
+          -0.10082055505158616,
+          -0.37849780065956906,
+          0.4373528936403839,
+          -1.5048810703956885,
+          -1.548613460802279,
+          -0.7647644484071425,
+          1.184172157395238,
+          1.2082446279295636,
+          -0.7007466168046586,
+          0.6780624783430345,
+          1.5178004765153807,
+          1.6883362223141418,
+          -2.3415858128863416,
+          -1.600976425714328,
+          -1.8800683034199204,
+          -1.02468790456294,
+          -1.0056621719021437,
+          -2.727422827073311,
+          0.12896824421193798,
+          1.8659428105435305,
+          -2.788857319996194,
+          -1.0026184486125007,
+          0.48891342798405013,
+          0.3216906330881717,
+          -0.7807919476914829,
+          0.552182379943674,
+          -2.0336331810357806,
+          0.7830779827567931,
+          -2.0478009015807883,
+          -1.8094813939374204,
+          -0.036289166304280585,
+          1.3686910769189726,
+          -1.2454970182032654,
+          0.47438850727399573,
+          -0.692910356737608,
+          -3.3091855421547622,
+          -2.078788184731926,
+          0.3309057919391847,
+          -0.912588823028681,
+          0.461767156071901,
+          -1.156430317697128,
+          -2.4787065815273537,
+          1.1912013807084687,
+          -1.558058767704332,
+          -0.20897969687208395,
+          -0.11173955467050511,
+          -1.2246688593484616,
+          1.1456857006518844,
+          -1.0890726073091341,
+          1.216649778499264,
+          0.20687488963792688,
+          -1.3794975832404885,
+          -2.8231027079262203,
+          0.18414355821541406,
+          0.24149061486388868,
+          0.14473458707837628,
+          -0.3993650892410211,
+          1.0257899294701556,
+          -0.7318313521933378,
+          -4.133173522027483,
+          -1.2834244381976039,
+          -2.2782690722912564,
+          0.3909976687256833,
+          0.7381933231171567,
+          -0.3994205830950033,
+          0.767077959364094,
+          0.009566051101857376,
+          -3.992230158548335,
+          -0.18698761742296865,
+          0.19839308619664608,
+          -3.678570516125054,
+          0.12390080005122872,
+          -1.0130750959860664,
+          -0.3818210868326185,
+          0.31917970541896756,
+          -2.726567268189263,
+          -0.23260956474649486,
+          0.45197293512397163,
+          0.09303284012200708,
+          0.5451975960682518,
+          -2.1623911260902937,
+          1.0895864105973403,
+          -3.4419681505632984,
+          -1.9234765938042822,
+          -2.088627607457393,
+          0.4472480726202004,
+          -1.2352805396469801,
+          -0.8443798449070514,
+          -0.9702881036057521,
+          -3.9509734741667195,
+          -0.7827224488065392,
+          0.2381938903723666,
+          -0.6447294415949656,
+          -1.3965434909807042,
+          -0.2822587401298644,
+          -0.2131835822849183,
+          -2.8322000266344842,
+          2.3337608404587,
+          2.170999457493829,
+          0.06342452178372149,
+          -1.6694274009556689,
+          1.5341810036862316,
+          2.7868082224580717,
+          -1.58238832801392,
+          -0.3197577458414532,
+          0.6683136415769209,
+          -0.5155587038756457,
+          1.5772012647783744,
+          -0.7294060890647441,
+          0.22693448848790454,
+          1.6445140836810204,
+          -1.90498121751595,
+          -0.34979622515112985,
+          -1.1583078120740904,
+          0.4687242963043927,
+          -0.2991865775749595,
+          -1.877832717904354,
+          -1.089126177818847,
+          -1.0679577210949167,
+          0.06375745284599899,
+          -1.2698455407106755,
+          -2.213401681407171,
+          -0.9594368590586954,
+          -1.9958590268258762,
+          -2.0827739530767118,
+          -3.3938075116771302,
+          -0.5554104767770063,
+          0.09212759330962594,
+          -0.22314657861431686,
+          1.4571943950937496,
+          0.9331121462911269,
+          0.6006526944046373,
+          -0.516096892915279,
+          0.27530977038342286,
+          -1.475467137326005,
+          0.3833423882203679,
+          -2.5066737337329235,
+          -2.414852755012291,
+          2.169049449083497,
+          0.8724026823926152,
+          -2.5683287948026283,
+          1.5937538897487107,
+          1.675720757976717,
+          0.2791926951496715,
+          -1.639136671437791,
+          0.27626177086968484,
+          0.5520609803868446,
+          -1.1510904625784881,
+          -1.381549143096563,
+          -2.306337061979299,
+          -1.3996001715429824,
+          0.6155469743709459,
+          -2.6331561179493153,
+          -1.7843551133720625,
+          1.3220335535385992,
+          0.6370007756408846,
+          -2.3668580387531364,
+          -2.597089198802024,
+          0.7559576765148113,
+          -1.5396729605783332,
+          -1.0146294191282443,
+          0.37895118480167134,
+          0.3700394491932708,
+          0.00694379560050562,
+          -0.9768198796134062,
+          1.1020222823400188,
+          0.2750930927204027,
+          0.43980856152450065,
+          -2.7997657486019962,
+          -0.956275812713613,
+          0.7056182066182375,
+          0.4509873640688906,
+          -0.12326919493902577,
+          0.7362316860275391,
+          0.36725229688455463,
+          -1.5064197534562138,
+          -2.2941923177583745,
+          -2.7989485217049253,
+          -1.1041499600713103,
+          -2.2709411354315634,
+          -5.272650465186064,
+          0.22897295988247568,
+          0.8877264977656774,
+          -0.972596451155384,
+          -1.8173681541803608,
+          0.2643798406496978,
+          0.7283910797294806,
+          0.8224562994297027,
+          -3.4180799154816737,
+          0.013263384548695578,
+          0.09202898549323635,
+          -1.7527519901590884,
+          -0.8616468446689832,
+          1.914756090536942,
+          0.04387340701466491,
+          0.45921444511516873,
+          -1.161609894811698,
+          0.16997948322194856,
+          -0.46104281027111804,
+          -0.201419942743866,
+          -2.372323182298552,
+          -3.129852705360606,
+          1.023258083321751,
+          0.9864700470965566,
+          -2.4980755394894985,
+          0.4171930589203965,
+          -1.6084429749998128,
+          -3.793628280557834,
+          -0.34705993491565246,
+          0.5593702443199089,
+          0.8853513508516497,
+          -0.3251343644238146,
+          -0.7152425676019123,
+          -2.6177190123557557,
+          0.28744415712178384,
+          -2.874289315006068,
+          -0.5698605214189291,
+          0.19758790447997776,
+          -0.07699968868735607,
+          0.7317114353513834,
+          -0.07353058308919302,
+          -1.0379949994195228,
+          0.12778488390207876,
+          -1.7592945660556407,
+          -1.3669917441919497,
+          -0.6157082719144582,
+          1.0879590105904033,
+          0.3832859857599229,
+          -3.129269197923294,
+          -0.8690502349984899,
+          -2.6286666896474946,
+          -1.7879088144387498,
+          -0.03843459033483143,
+          -0.1420537237200511,
+          1.0372264053401112,
+          -2.281408326532655,
+          -0.8493679164110486,
+          0.8562817829864564,
+          0.024116671956489366,
+          0.32348051876658657,
+          -2.5486742718504036,
+          -0.3108743696079418,
+          0.2586840595801507,
+          0.3586345765273218,
+          -2.769325703071095,
+          1.1987282106519492,
+          1.5854970069404843,
+          0.46715736108619477,
+          -0.6177673334564461,
+          1.2887047587067473,
+          0.029815358585392637,
+          0.04111459498455905,
+          -1.7872682859811904,
+          0.40836090535844694,
+          0.30521569750327204,
+          0.1600900060514323,
+          -1.9928358762829577,
+          -1.3280800018080456,
+          0.10358672005587866,
+          -1.6831292844019456,
+          -2.5070578585869328,
+          1.3305816298400215,
+          0.23972282471287643,
+          0.12889992973385045,
+          -0.07297098599554863,
+          1.940385263907956,
+          -1.7341923349254613,
+          -1.2265247090240516,
+          -0.3044691855544106,
+          -1.985977280390761,
+          -1.2310115530834727,
+          -2.0024328538552485,
+          -2.4119618522421247,
+          0.5504278704668815,
+          0.11403561421051367,
+          0.21658810254118754,
+          -2.404410701748288,
+          -1.811431768342258,
+          -1.1534292858469266,
+          -1.329389939638999,
+          -0.9224761313865784,
+          -3.255204652508491,
+          -0.027887162204139226,
+          -1.7021015821527223,
+          -2.347076590971811,
+          -2.1519125966193386,
+          -0.3838859571955031,
+          -0.718763079918302,
+          -0.9585994350014085,
+          -0.8706338703435674,
+          -1.4542229101468174,
+          -1.8411108567996224,
+          -0.6751172084246431,
+          -2.280240441542568,
+          -2.947603220271504,
+          -2.392253311398953,
+          -0.7746102185932955,
+          -2.5667569177869387,
+          -2.2319357160931323,
+          -1.3822348142845364,
+          -0.9263955434764258,
+          -2.2199550796967564,
+          -1.9799487434938674,
+          -2.7668460723439887,
+          -2.332271085419204,
+          -1.3292881408927535,
+          -0.9162426470040362,
+          -1.2517486098281319,
+          -2.1888418321709784,
+          -0.8537376516098636,
+          -0.6250902193666512,
+          -1.056098315914734,
+          -3.2218326039296556,
+          -0.7430474090071524,
+          -1.1180947431958788,
+          -1.3166886364419264,
+          -1.7404771639785872,
+          -1.5503096020887912,
+          -1.0369788609470227,
+          -3.3816045648971973,
+          -2.6664990672998483,
+          -2.2132443587641104,
+          -1.074881794993854,
+          -0.27887294932406215,
+          -0.4330472443433936,
+          -3.7508115172459817,
+          -3.18486276299124,
+          -0.17873445776834995,
+          -1.095020236430038,
+          -1.1773311482015951,
+          -1.4776320780545813,
+          -0.6322601752852934,
+          -1.3481243165311567,
+          -0.9504107202791452,
+          -1.0139544755367653,
+          -0.6313863065994766,
+          -3.444345354409326,
+          -0.18698205295716752,
+          -2.134698485093854,
+          -5.800002481591007,
+          -2.2633700038182916,
+          -0.5400099615963896,
+          -0.030980339344354735,
+          -2.347237361744039,
+          -0.10318315251276966,
+          -1.6756906115503098,
+          -3.862279963111329,
+          -2.6968755612454585,
+          -1.901357838688961,
+          -1.9868841850843535,
+          -1.84117479869193,
+          -2.753404847317527,
+          -2.5377804294843056,
+          -2.5502777901286713,
+          -1.0329456055842379,
+          -2.3382964212136113,
+          -0.8094413450003577,
+          -2.2263620635613566,
+          -2.0420760537816136,
+          -1.204733658652266,
+          -1.5309007517280229,
+          -1.5646995362116165,
+          -2.2594686304805998,
+          -3.33194188888801,
+          -0.9587676523828298,
+          -1.3166299536843096,
+          -3.370410266555025,
+          -0.6023413324314972,
+          -0.7193165320238911,
+          -1.9640281605536298,
+          -0.6544830189369679,
+          -0.6414117386155593,
+          -2.3226029090631872,
+          -1.2036577517180334,
+          -2.0222522303706336,
+          -1.0917953381375687,
+          -0.31869181672793045,
+          -1.3666335050629288,
+          -0.3218092303352925,
+          -3.540721972528398,
+          -0.09679057401838997,
+          -1.2344049349000317,
+          -0.979360250056949,
+          -2.387310618936901,
+          -0.7354346631158578,
+          -3.5197869609728634,
+          -1.074964363612732,
+          -1.1839892216493206,
+          -0.554345506963471,
+          -1.0728174799465646,
+          -1.1863496261440094,
+          -1.3377675503480635,
+          -3.609067290699106,
+          -2.8341071425648483,
+          -0.06963150838730614,
+          -0.747057690473917,
+          -1.9711539195345384,
+          -0.9171665631442479,
+          -1.1692335184620126,
+          -0.4202904929521305,
+          -1.0949887416155213,
+          -1.5807178452918018,
+          -1.2201096488307523,
+          -1.2925511039205395,
+          -0.2864559175076856,
+          -0.9863376346896268,
+          -1.3010412760922834,
+          -1.0971428924324012,
+          -0.49804797997019135,
+          -0.5797651264212013,
+          -0.9332157968853543,
+          -1.3674890032367084,
+          -0.05538253746827626,
+          -1.0164154624115573,
+          -1.4559400056997323,
+          -1.0372604124292457,
+          -0.08787788883151315,
+          -0.7571191760785836,
+          -2.526073791593191,
+          -0.6605139804606186,
+          -1.018251138653695,
+          -3.7469058340480603,
+          -0.6392319847082839,
+          -1.8869623067381007,
+          -1.51661368865443,
+          -0.31155653087165747,
+          -3.2338888873908083,
+          -0.825321568045407,
+          -2.0990319768731105,
+          -0.6380776909808787,
+          -0.9819428010695248,
+          -0.670908153464114,
+          -1.2391606695305133,
+          -0.2993894954133267,
+          -2.360718168044195,
+          -0.9318400188718555,
+          -1.1691457412770407,
+          -0.8046969384225457,
+          -1.293289017019927,
+          -1.8420526623019409,
+          -0.3864240813977323,
+          -4.0184798354626885,
+          -0.3526423810831204,
+          -1.8415825419918075,
+          -1.7799064125532293,
+          -2.913291608411468,
+          -1.0613224262247267,
+          -1.287057728629426,
+          -2.6280300840456925,
+          -0.6871909257027344,
+          -1.0952061725600775,
+          -1.0684670111336196,
+          -0.7536163504092863,
+          -1.1436259536572815,
+          -2.094168339275617,
+          -1.6349560213962846,
+          -1.3369847897209288,
+          -1.2023252327940392,
+          -0.5136053159173712,
+          -2.535010389180097,
+          -3.1183825094216298,
+          -1.572648879790595,
+          -0.1317354217331006,
+          -0.25413430296596184,
+          -3.4693509964723064,
+          -1.025319885237079,
+          -0.8345517615423037,
+          -1.4000960323897833,
+          -1.4810008379423434,
+          -1.0307652302279282,
+          -1.5013791648518504,
+          -1.8368674646602872,
+          -0.6270300809366646,
+          -0.5840180231210651,
+          -0.9159295708738683,
+          -1.678682255732758,
+          -0.01197866340269449,
+          -1.9936396751763037,
+          -0.9406014029929873,
+          -0.356137063200493,
+          -0.6657896376550709,
+          -0.7935465013616838,
+          -1.26102704063967,
+          -1.2721993955599156,
+          -3.1758886010756084,
+          -0.9484137104152728,
+          -1.125971873008085,
+          -3.1637735665835405,
+          -0.2127472697326398,
+          -0.8737322092190289,
+          -1.9041334439944098,
+          -1.6144306415589709,
+          -0.08623058603195777,
+          -2.237193139998081,
+          -1.1597416302358974,
+          -1.340709731269418,
+          -0.5804159516753586,
+          -0.4225916230723974,
+          -0.46176785082580074,
+          -0.058138517697708614,
+          -1.5167552297888216,
+          -0.72434477616465,
+          -1.3743838588409039,
+          -0.8384023920885655,
+          -2.29525764302666,
+          -1.98546161028914,
+          -0.49634133213822174,
+          -0.2531695540220553,
+          -2.4631730770868066,
+          -1.8134199859191893,
+          -1.6435930660610876,
+          -1.4182735218613685,
+          -1.7797835603671683,
+          -4.536026663312294,
+          -2.2684100784119927,
+          -0.4698247599200014,
+          -1.8152536365835517,
+          -1.9437449365299853,
+          -0.48515598058344445,
+          -1.1686225550815437,
+          -0.19961202324791605,
+          -2.891901417645114,
+          -1.1530815148910072,
+          -1.4923688419699768,
+          -1.3482254812914078,
+          -0.21120641297519405,
+          -1.2268662376441601,
+          -2.904123207312014,
+          -1.5367184698841636,
+          -2.9901047176857927,
+          -0.6876693558073199,
+          -1.3952571337503834,
+          -0.33843577517693657,
+          -1.980579216287956,
+          -1.442062776744588,
+          -3.512472580855325,
+          -0.20025500690617581,
+          -0.5838474484580509,
+          -0.5374507992333888,
+          -0.5470984569601945,
+          -1.5588162262855936,
+          -3.179533519049015,
+          -0.7647351129370346,
+          -1.0503714814561307,
+          -3.2784053020053463,
+          -2.6740666484327766,
+          -1.859620083421663,
+          -1.373759504555442,
+          -2.3831037375771,
+          -0.38977540441618486,
+          -1.511156477729814,
+          -1.554010293109733,
+          -1.2411036939670776,
+          -2.233400076183951,
+          -3.5270279731025527,
+          -1.0437728125581052,
+          -0.531559832975001,
+          -3.439754165657411,
+          -0.5639614665646657,
+          -2.163129973782051,
+          -0.4517059878468017,
+          -0.6535332204914864,
+          -0.07489124839260719,
+          -1.4148760583296824,
+          -3.907449279302292,
+          -0.9774212737640089,
+          -1.8925270202642044,
+          -3.9910257422768147,
+          -1.9099400115706968,
+          -1.689832618395616,
+          -0.0766012961618685,
+          -2.707674381638545,
+          -2.274669393298594,
+          -0.6049012132407214,
+          -0.1309080384925564,
+          -1.4380203083221623,
+          -1.0534531499237871,
+          -0.6258569037490784,
+          -0.7509294950110321,
+          -1.1224379692913653,
+          -1.7059105892518636,
+          -1.7462599936541237,
+          -1.3094567723215371
          ],
          "z": [
-          4.472182846811785,
-          0.2670366475924074,
-          2.558821450042892,
-          2.0040381588149088,
-          0.499859900123698,
-          0.21109485979301823,
-          -0.6896893692811531,
-          0.20268046942294243,
-          0.569028515812178,
-          -5.342543131525999,
-          5.5141459946739735,
-          2.4031369013795634,
-          -0.39182286816452083,
-          -1.0644001238195913,
-          -0.6901366639074955,
-          -0.6218652096477487,
-          1.7896513955161681,
-          8.243069770792207,
-          5.684230025211054,
-          -1.4684683358878823,
-          0.06910326527597613,
-          0.3466196450563509,
-          -2.456800170820498,
-          3.9005499808584125,
-          -5.466837837671039,
-          2.4693164258659768,
-          0.7804792517069506,
-          3.8883125031638004,
-          5.435577215652758,
-          -2.1028637307157263,
-          -0.33590168680474947,
-          0.5524283540346303,
-          0.27705097625274844,
-          4.446938647776967,
-          -6.371712001998967,
-          -6.283627658841549,
-          10.019141590325917,
-          6.165797858630441,
-          1.0463242684638654,
-          -1.0363745483057454,
-          -1.5774955571114322,
-          -0.653802241930439,
-          -2.1994335843401696,
-          6.73244655789446,
-          0.21375366476148652,
-          -3.5987632906337597,
-          3.0984400319243823,
-          3.648359973205635,
-          5.962972062214795,
-          -1.3198134705333486,
-          5.612213017834425,
-          -5.007525412402144,
-          0.759747027684489,
-          -1.316369623953847,
-          0.6319634319489925,
-          -0.008184288299480298,
-          1.3774159662264414,
-          7.482978154974037,
-          -0.3393479695057173,
-          0.848237326107232,
-          -1.5486584568163502,
-          0.37983561091781193,
-          -3.0767249508833854,
-          -6.472529014601497,
-          -3.440193585964177,
-          -2.2331128896219092,
-          1.2927038234139208,
-          -0.40752713345372127,
-          2.1151153234170144,
-          -2.024560184050748,
-          6.5216128471051835,
-          -4.359589627047651,
-          -5.011537840801899,
-          -6.6398157336807575,
-          -2.14388798490312,
-          -1.3071739530158133,
-          -0.48125709515429616,
-          0.6914893253113716,
-          -0.15154469866834547,
-          -3.954593518694038,
-          0.3094996727338263,
-          5.272096783983981,
-          6.039396913820521,
-          -3.440861953104329,
-          6.681587749923935,
-          0.3507373236856644,
-          -4.031620438648713,
-          -2.9606802225248114,
-          1.3397065326502082,
-          2.0552238443875375,
-          5.882126811893492,
-          0.6279647871864276,
-          2.9943129520588982,
-          -3.326290109339433,
-          5.897839742678433,
-          3.1673810535955607,
-          -0.3811391897515657,
-          -0.05618090933225885,
-          2.4289592935101645,
-          0.636715936763357,
-          -1.78111686111213,
-          -4.681895803459802,
-          3.8962390810323315,
-          -1.5175630639460043,
-          3.6821524095046847,
-          1.1627940673090589,
-          5.410061311342541,
-          3.1925306355438585,
-          -2.2727186090101705,
-          0.2162581455835587,
-          -6.329839659751811,
-          -2.1846963964814257,
-          4.876096558742066,
-          5.400446198473811,
-          -0.7150513273761603,
-          -2.084885089518328,
-          -1.7665628188901936,
-          3.3722694563420883,
-          2.3566940177541795,
-          1.3280783142139836,
-          3.188433858280917,
-          -1.9352233522235363,
-          0.7297993262371838,
-          -4.386807062323021,
-          0.23224008501353557,
-          -1.995856809439102,
-          -0.9831280260974693,
-          -1.1557758761629429,
-          -5.755767236609135,
-          5.772622939226213,
-          3.9786746988920814,
-          -1.4384512255591606,
-          1.3144094036638032,
-          -1.3408370629220268,
-          -4.286453554029935,
-          -3.652700477087854,
-          -3.5080669698253053,
-          0.6296357216947445,
-          3.0676606257613077,
-          -6.415545055422796,
-          -5.010274457698264,
-          -1.2470909271096113,
-          4.100642785483202,
-          1.93496519464323,
-          -1.8243526146366138,
-          2.280988910993796,
-          -1.7233028035459568,
-          -7.211650715743662,
-          -6.045915020663853,
-          -1.0597383120008976,
-          1.6947954992423218,
-          1.8499525523083653,
-          -3.8265077082139083,
-          -2.5965057623114642,
-          -2.217616120883897,
-          0.6254889033407777,
-          -0.5906911227642129,
-          -3.8607930209247177,
-          -0.6687497971702582,
-          4.303101378026165,
-          -1.4573505853455127,
-          -1.9467582951607905,
-          -5.64195249818231,
-          1.3318698654808945,
-          5.699030261829023,
-          -1.6436603714776115,
-          2.358159738206029,
-          1.5083851316097627,
-          3.0327598319967275,
-          -1.7366436415574862,
-          3.852704407713399,
-          -6.484156849623581,
-          0.3602414604117415,
-          -3.345135766765135,
-          -4.907889032182201,
-          -1.4310378106709944,
-          -0.3476511418733731,
-          -2.9951951303394115,
-          -2.1784538923529135,
-          1.8447005649124415,
-          5.957022997806983,
-          -6.841373592980301,
-          1.2571273030309564,
-          -1.5992652080900656,
-          1.1899449758861254,
-          -6.528142762433574,
-          -5.106449391794659,
-          4.610986430828934,
-          -0.6540793935434476,
-          0.6021268741153704,
-          0.6132640963189026,
-          3.124730215609857,
-          1.8367256037828936,
-          1.2780855382848895,
-          -4.178283052012651,
-          3.8734143950617828,
-          2.95179903011433,
-          1.314346492303086,
-          0.5418317812589517,
-          10.441312519406058,
-          -2.814394726462474,
-          -1.802317452373923,
-          -0.9160298785337232,
-          -2.3461149866811923,
-          -12.149236025263003,
-          1.0939531752314768,
-          -0.5703990850269078,
-          0.5080864620564478,
-          -2.5633836955054243,
-          1.0391516058623649,
-          6.78255407097354,
-          3.2325824008678485,
-          1.6679705509487466,
-          2.9391314118954526,
-          -0.9261665169001991,
-          -1.7395204834700098,
-          -5.623071918732081,
-          -1.3798683899869453,
-          1.9004027324058241,
-          6.582417934538742,
-          2.648972765034803,
-          0.6426135295616745,
-          4.944833077132907,
-          -2.107304152225986,
-          4.0604115500290385,
-          -1.7313880578060936,
-          -0.7738141303363292,
-          1.1676179910084186,
-          3.5734930719341826,
-          5.800116178580196,
-          -4.803016143314798,
-          -2.9538413266170513,
-          -1.992279428181407,
-          -0.964425304766798,
-          -0.7881755786239777,
-          -0.2589527193296547,
-          -5.356864561391246,
-          4.262147665930199,
-          -0.585958403545165,
-          0.6638615872662901,
-          -1.325069535457578,
-          -5.640895543898114,
-          -3.7208081110684987,
-          -1.3532299768596303,
-          -0.8337880157920969,
-          -2.3242089977267257,
-          -2.215661141520905,
-          -4.11193512581423,
-          2.121330319650672,
-          1.0909238242754549,
-          3.574484848716831,
-          -2.3646800733271576,
-          -6.6604253082289855,
-          0.37586399643703783,
-          -1.1061801612424025,
-          2.0008847859871843,
-          -0.13760170041882153,
-          -0.8344065565499633,
-          0.13849640315470815,
-          1.0578431621142588,
-          0.937526570915543,
-          -0.7417437267757983,
-          2.6068509844631302,
-          4.836721055068029,
-          0.7861433359529273,
-          -3.9270092462576263,
-          3.381281779222072,
-          -1.3578363197580405,
-          -5.796798348691043,
-          2.198315786789556,
-          1.6428875004570462,
-          4.754272875549434,
-          4.012410461887828,
-          -1.4057870700103896,
-          4.879927423166467,
-          -0.6332254589558837,
-          0.4729267892766591,
-          1.1943855849586351,
-          0.9887884500692232,
-          -0.9880140392638398,
-          0.03511559385419429,
-          1.916110410683256,
-          1.8528102555232382,
-          1.800413746484312,
-          2.6767500301874567,
-          0.1427817806130857,
-          -0.026758328518253414,
-          5.509912084442117,
-          5.843181500255583,
-          1.9109637495499836,
-          0.4719311384848875,
-          4.4501495544066705,
-          0.728570158130671,
-          1.763972830248409,
-          7.104089586668218,
-          -4.488692582920049,
-          -4.007759268093651,
-          -0.9304532008915266,
-          -2.778084290297856,
-          -0.06156256252237987,
-          -5.6916934565941615,
-          4.194774355075509,
-          4.970802224855078,
-          -0.2090525844293638,
-          -5.33990327430078,
-          -4.564539917819339,
-          -2.024573757165097,
-          1.2525950080460366,
-          3.759714893201972,
-          -3.3276070671033398,
-          0.3718163411306774,
-          -3.8896333537552645,
-          -1.3751089437397637,
-          -2.001648804476301,
-          0.12231299697354571,
-          2.581876530617521,
-          -1.049510170235897,
-          0.3335224573668773,
-          -8.322271311184213,
-          -3.1482483434487314,
-          -2.2982294458298695,
-          -2.698755314910324,
-          -0.4999777015639099,
-          -2.6985134885476767,
-          6.5954870914260075,
-          0.4802364944998181,
-          4.971126036057544,
-          0.7206540780951234,
-          -6.769868885336649,
-          -7.874743457149266,
-          1.93456911408557,
-          -3.206214047192931,
-          5.142139042221053
+          3.4561278457109728,
+          0.9489049849013629,
+          -2.9052948550980053,
+          1.096511585435489,
+          -0.6068747034381214,
+          -4.294849163950856,
+          -5.708751135816903,
+          3.33262531112591,
+          -5.022877234250648,
+          2.936299716903961,
+          -3.5482160727466727,
+          0.5569431707675712,
+          -1.6201087039455029,
+          0.26664476488075106,
+          1.5737614878521908,
+          2.0780335505808516,
+          -5.41276515251852,
+          -0.7707961289334255,
+          1.2783500716121914,
+          -1.1005963048634415,
+          -1.1880679650515775,
+          -5.403265814223928,
+          -2.9618540922343026,
+          4.387587267996268,
+          -2.804371507121231,
+          3.7860318784730937,
+          2.3549072486432605,
+          -4.741686640296313,
+          -3.5191540831579506,
+          1.648246447804766,
+          1.0225560239719842,
+          3.8744227832405995,
+          1.0470035176486086,
+          4.510070063323552,
+          2.889357971528466,
+          -5.050273791887474,
+          -2.533903477485404,
+          -1.8320428145707535,
+          -1.6566358001214754,
+          0.11950842783120397,
+          0.13053204548723318,
+          1.7055746829089475,
+          -4.033293073745519,
+          -0.9416430913082623,
+          -0.7555172381991495,
+          3.7043037910725216,
+          -0.14032684035453435,
+          1.3929478097892964,
+          -2.4719880090279154,
+          -1.3119715853665133,
+          0.20197872222135516,
+          -0.3646713234219039,
+          4.4707178920389845,
+          -0.7522432242414574,
+          -1.3765713255475767,
+          -5.499914520006609,
+          -1.425013851050008,
+          3.399892703589118,
+          -1.7598681709511217,
+          3.986809624854721,
+          -5.493579315131176,
+          -1.498514983548068,
+          2.1627756437878842,
+          -1.7957862568966965,
+          -0.7484065921742973,
+          0.12077085868220472,
+          -2.5979419346065575,
+          3.705166428229373,
+          1.605230691539636,
+          -0.11897469806716732,
+          -1.9559894460542755,
+          -0.3564591789629805,
+          1.4853926791270533,
+          -5.099504384968613,
+          -4.122555479894831,
+          4.104332747947654,
+          0.8246825610589097,
+          -3.322823603891948,
+          1.3645505721407032,
+          -2.374771238454794,
+          -4.639740634398638,
+          2.949578314726158,
+          -1.446375245878845,
+          -0.598515413445833,
+          1.773426264378391,
+          -2.7882286100417484,
+          -0.9437168304936376,
+          -1.8132513211019208,
+          -1.931305857705691,
+          -4.901570660490008,
+          4.365495779425166,
+          -5.122496584394515,
+          0.6921371894315929,
+          -1.6511024442412232,
+          -4.996836928791193,
+          -5.420559291792688,
+          -1.9936709035137787,
+          -0.5588776064683421,
+          3.163570531898631,
+          4.163937052714501,
+          1.1833209568883252,
+          -0.3160648974185749,
+          3.42853857615657,
+          2.6950055186136543,
+          2.065004222094313,
+          -2.0514716388559444,
+          2.209374149008931,
+          0.4873574743907314,
+          -5.77348486758344,
+          -3.0617298692092647,
+          -2.4719852775529607,
+          2.6649573707709076,
+          -2.645917113869656,
+          2.2259164684363766,
+          0.9749372842784751,
+          -5.200197592338102,
+          -0.9927217787211422,
+          -4.79106523378131,
+          -0.5008801532027976,
+          -2.938546833035711,
+          -1.1185621800823826,
+          -3.5214834199237433,
+          1.8455849412254022,
+          -5.454658834696137,
+          -0.3555007205112357,
+          -1.451052508640891,
+          -3.13030658069484,
+          -5.160486690995933,
+          -1.0266738358793326,
+          2.4030745240218936,
+          -1.9410504007980953,
+          -5.71725292392043,
+          -1.3319763370943463,
+          -4.146198803557399,
+          -0.5640575673817914,
+          -1.4668542008594043,
+          4.588338884065778,
+          -2.0159501260109645,
+          -1.3139131624921765,
+          -5.5750034672212925,
+          4.202870776139881,
+          -2.6420520951813398,
+          -4.677524739818365,
+          3.72002584819536,
+          -2.0475739754080218,
+          -4.605248839942859,
+          -2.3214268223759564,
+          -5.086881741129324,
+          -2.178022285459518,
+          2.7124762065012282,
+          2.1922562245809374,
+          0.9358448090261327,
+          -2.818720988392964,
+          -0.46073955050664583,
+          -0.02921038963567746,
+          0.6649659718344996,
+          -2.613335866108372,
+          -4.121196565045562,
+          0.9386515107019404,
+          -4.800455573860549,
+          4.348306255193674,
+          -0.4981682662602047,
+          -4.9142989530388945,
+          0.02397375757406195,
+          1.8841824540037146,
+          -3.0129672418168822,
+          1.948897513335221,
+          -1.7626748230611904,
+          -5.485157857143432,
+          -1.4216903447264944,
+          3.706125836967945,
+          1.5470128950287423,
+          3.1992653142952934,
+          4.409863727411236,
+          -2.804475566053962,
+          -1.158336619962169,
+          -1.576718972015434,
+          2.7174542564411093,
+          1.4713375162312428,
+          -5.166274645668375,
+          3.8979738732259035,
+          -3.831989703634119,
+          -5.461354754161619,
+          4.185630954715918,
+          4.610633840791716,
+          -3.7109009357963467,
+          0.41693611180518886,
+          3.839443019204931,
+          -2.4536424355419086,
+          -0.8576931539278059,
+          -1.545012134870614,
+          4.052402740808756,
+          0.07581869270258057,
+          1.2634188956964598,
+          3.095238750421097,
+          -2.098436959530114,
+          -5.5856579401992645,
+          -1.706621385868364,
+          -0.4824663142513481,
+          -4.2755088526442515,
+          -2.1408339915847394,
+          -5.654685793543198,
+          -2.515194319917753,
+          1.2773878207360232,
+          4.28781338777189,
+          -2.3954206749544715,
+          -4.950104236625294,
+          -4.643529172092884,
+          4.467161224367042,
+          0.1034370486503704,
+          -3.834920898250339,
+          -4.011954257565087,
+          2.5126712474024453,
+          -1.79779439419063,
+          1.6773091405374423,
+          -1.4462940832910443,
+          -5.531319409509678,
+          1.2380380584517452,
+          -2.264231700575573,
+          3.206684267432066,
+          -2.821756345091106,
+          -3.067673392995703,
+          -0.2896952328350837,
+          -5.7774612645292995,
+          -3.2012022031775453,
+          2.687968766715781,
+          3.8465934666174553,
+          -0.0906759686294869,
+          0.5856810290873904,
+          -4.45191313871528,
+          3.618279863057835,
+          -0.0743580541449429,
+          3.3814504981275126,
+          -1.3267989650365815,
+          3.4018028162034915,
+          1.6750213477713833,
+          -0.22678073296945467,
+          2.5295060758006622,
+          -5.591650767755706,
+          3.5995254842180477,
+          -4.407709329963337,
+          -2.1732305144119293,
+          -4.522706660784572,
+          -3.6720502771811727,
+          2.791602516176977,
+          4.280819085752873,
+          1.8639133632460663,
+          -4.807061938850172,
+          4.598805791207854,
+          -4.494144664128673,
+          -1.6917869961030298,
+          -1.6452510452802143,
+          4.335085821774164,
+          3.7740235669744076,
+          3.9092248110768706,
+          2.4092901715342974,
+          0.23655412871166437,
+          -5.365147605757466,
+          3.3176790725757757,
+          1.1888772995949681,
+          0.362883493481406,
+          1.9655075304130891,
+          0.6538344791543453,
+          4.577967555845933,
+          -3.7571250589130174,
+          -0.22340691816930658,
+          1.6888567429647185,
+          4.016855410475022,
+          2.7844293822666932,
+          2.71449783832898,
+          -2.4687671124015043,
+          -1.1148215284446996,
+          -5.306857439639287,
+          -4.232085653947171,
+          3.169467836831088,
+          0.04635401762043134,
+          -0.5555001223828437,
+          4.246927456730707,
+          0.7332417786609318,
+          -3.9360509206240373,
+          -1.266301902229423,
+          1.9926757254575191,
+          -4.118350909713121,
+          3.210893759439439,
+          1.3984422350062982,
+          -5.593919739267756,
+          -5.366088126104688,
+          -1.909391960898494,
+          4.063143172093976,
+          -2.6235025246198513,
+          -4.701545074534064,
+          0.3105253058455135,
+          -3.604408045611947,
+          -2.3675291302632044,
+          -1.3934013845998843,
+          -3.2964612951916306,
+          4.146758223193793,
+          -3.0624710573229454,
+          -1.158045301157892,
+          0.5451760709204185,
+          2.918130029285865,
+          -5.568960035088001,
+          -5.2765496412348,
+          2.462786305842461,
+          -3.5171804964788738,
+          2.756544999315273,
+          -1.7461915795311915,
+          2.160033448670606,
+          4.332744968162154,
+          -0.4334671396041605,
+          2.5141306375865975,
+          0.00304351439774031,
+          -1.0659821259591098,
+          -3.5546058377818412,
+          -4.019687107468469,
+          -5.551871658817565,
+          1.0173775392373674,
+          -4.010681586435264,
+          0.024257904240688077,
+          1.657777851550816,
+          1.6338969249649473,
+          -0.4580316788015315,
+          3.0734567121839094,
+          4.35427078687363,
+          -1.4996844512261358,
+          -3.7900671885219634,
+          -2.056800435970928,
+          -3.6043354770698683,
+          -3.9941512564374237,
+          1.0884724040989466,
+          -1.0930900991362122,
+          1.2311140238075993,
+          -4.938918418509236,
+          1.1395233947699719,
+          -1.4373317376596342,
+          -2.352111435989986,
+          0.3489082888286017,
+          2.2492172883824937,
+          3.4499510058480913,
+          4.524583042020416,
+          1.9916228140234296,
+          -0.8291782295525882,
+          3.4900320489117975,
+          2.5606399960519477,
+          -4.910086034258399,
+          -5.261875408293647,
+          3.0924456215898966,
+          4.133236078988065,
+          -0.8060009341233805,
+          3.1266476201723536,
+          -2.405105270047861,
+          4.049553964379251,
+          0.197306472745308,
+          4.002452903648986,
+          -2.103882893727023,
+          -5.4165599188210996,
+          1.2394120385903946,
+          4.61068883715767,
+          3.8166304215856366,
+          -2.0699133092558437,
+          1.7653171807372656,
+          -2.175040349287831,
+          -3.562663050674799,
+          3.3870185989529107,
+          2.579065324370034,
+          1.4263952375787312,
+          0.912866527414101,
+          -2.3286938649363265,
+          -2.333991988027878,
+          -1.6200824582457587,
+          1.8461846347153674,
+          -0.9792217552927394,
+          1.6714039888053867,
+          2.6583407677244724,
+          -1.9142557002339604,
+          -0.34552382205252474,
+          -1.2644666852909179,
+          4.609042466843536,
+          2.334005986282615,
+          -1.156604867760957,
+          -5.667410286949815,
+          -5.037945946608492,
+          3.8635706688109144,
+          3.0014505297551084,
+          1.980428291227156,
+          -4.258792008505766,
+          3.003085992866711,
+          3.437232257538237,
+          -0.7781549792077893,
+          -1.9780854872848765,
+          -0.26844600946388475,
+          3.8297411909651915,
+          3.6965199104515056,
+          0.7605614688314084,
+          2.2082101022283096,
+          3.8102664648670848,
+          1.1296105039825353,
+          -0.4415295704697568,
+          1.6129617984151388,
+          -3.093182760079108,
+          3.524295774692308,
+          -0.4944318829594678,
+          -4.24332138782574,
+          4.069734065524757,
+          0.5349831066015103,
+          -5.702081287133357,
+          -1.6213415107051778,
+          -4.331194226621719,
+          -1.8917280628929394,
+          1.7890811067440797,
+          -5.454142772050187,
+          -1.314620070867722,
+          -4.906112003635561,
+          -3.06966123033902,
+          -3.7899300173641746,
+          -0.58313826285662,
+          -0.4831150737625034,
+          -2.075564036191507,
+          -2.994645788908131,
+          -3.2587720336422983,
+          2.3179333645577875,
+          -0.02733251866907338,
+          -1.5818043882855433,
+          -3.7091768489459143,
+          0.33932565892378186,
+          4.38136696572493,
+          -1.9505465653160199,
+          -2.783070510084678,
+          -4.8824978541873785,
+          -5.016961012590156,
+          -3.1670811450714953,
+          -4.334773324574335,
+          -1.6349084897169766,
+          -3.0679903902591787,
+          -1.43090720128147,
+          -2.443636915108305,
+          -4.925701478460647,
+          -1.1354206799551223,
+          -2.8798574944654662,
+          -5.176257969850221,
+          -2.5761510537377883,
+          1.6926361521799222,
+          1.9969006970277388,
+          -0.2744184345578615,
+          2.4401020726110785,
+          4.04685992990401,
+          3.777304616079257,
+          4.115761682378824,
+          0.7421254602067089,
+          -4.297890719536566,
+          -0.8073071279398096,
+          1.70369225495401,
+          -1.3013314811795897,
+          0.06640414692863139,
+          1.7595847852031419,
+          4.37989243373383,
+          -3.6897387316273726,
+          -0.16076401602434665,
+          2.1693765294500524,
+          1.8647486561663902,
+          2.3093324168643763,
+          1.2430578486108406,
+          -2.671155848477639,
+          0.3707133524636026,
+          -3.624558222550126,
+          0.5886324916732288,
+          1.9233839661457441,
+          -1.4943152933323445,
+          -2.5041329686350036,
+          1.3165367502169012,
+          1.4265535680889645,
+          1.5281311765139112,
+          -1.977359620374552,
+          -0.5550106489270474,
+          -3.613089318850324,
+          -5.545482711304519,
+          -2.571490543305229,
+          4.070161571326326,
+          -1.0879306941695832,
+          -1.3887151617970925,
+          -4.339969045796285,
+          -1.803129457432556,
+          -0.10498749788336159,
+          4.246415420287755,
+          -3.1151308175299977,
+          -4.456091755612504,
+          1.1495971826900506,
+          -2.6152075738017677,
+          -2.7712492811031373,
+          3.3328988973598124,
+          -5.083422983797808,
+          -2.062995707180044,
+          -2.1558842920150445,
+          -1.6805312922305164,
+          3.8090896057236963,
+          -4.162837938655667,
+          4.44980418509994,
+          1.1891060132677707,
+          0.6721253756903875,
+          -2.604654778862692,
+          -5.757965767964464,
+          -2.726998223127617,
+          2.59597051298521,
+          4.167633705110277,
+          -3.688475745315083,
+          3.149212858689407,
+          2.093157740509521,
+          -2.569276270930575,
+          -4.863557223801253,
+          3.463885365404569,
+          -3.747351859040721,
+          3.4177201045589447,
+          -1.54810277570218,
+          4.3112812397838,
+          0.7916310871492911,
+          4.094279444049881,
+          -2.919879296664547,
+          0.026925322686805586,
+          1.0877200584878386,
+          -1.5198925229640121,
+          4.343308567786637,
+          3.5547031898262267,
+          2.127194331587795,
+          -4.087870690577247,
+          -0.18677545898537673,
+          2.347128263084712,
+          0.8070877754485988,
+          -3.8138474170941077,
+          -1.6265603324911133,
+          -2.5274916950049193,
+          -4.567095680027976,
+          3.4829668128830855,
+          4.0714843822023346,
+          -5.092756204276435,
+          -3.3458697938362745,
+          2.002427661907971,
+          -3.6481590781424336,
+          4.40589728591324,
+          -4.584214557865006,
+          -4.498963146964764,
+          3.4369100049992793,
+          2.1488559298833207,
+          3.0256309398533157,
+          -4.26875373262025,
+          -5.111274299502037,
+          -5.15504704953047,
+          -5.204732647516818,
+          -2.1004830185171683,
+          1.877367302247798,
+          -1.9724084954707193,
+          -2.8042488684801476,
+          3.972112684890992,
+          3.549348317869918,
+          1.6975122947439703,
+          1.7143073455842845,
+          -0.3076066096140959,
+          -0.6492984404692184,
+          2.8517721040945636,
+          -3.841621545308178,
+          2.169772151752884,
+          4.067585206181595,
+          0.8528376292334086,
+          -3.19889578274917,
+          3.008753497890992,
+          -0.39713367733039373,
+          1.0822128064400305,
+          -2.5606645535155237,
+          -0.7475499435902977,
+          0.8056564442575791,
+          -3.216072473815742,
+          0.02930358170348235,
+          1.8049011873699996,
+          1.567971379160542,
+          1.6637408628909451,
+          -4.830102485543965,
+          2.459641097370091,
+          -3.67553492539927,
+          -4.456509638656018,
+          -2.657501893168327,
+          -1.5465867722079514,
+          -2.4708130346801944,
+          -0.7203458156614282,
+          -0.13941024025132442,
+          4.366836120666396,
+          -1.8071661237210765,
+          -4.485701713449764,
+          4.424373509424851,
+          0.3617825094584397,
+          -2.4479687481366748,
+          -2.295417406813809,
+          -0.7404738575027148,
+          3.4967593182851635,
+          -4.689611936233595,
+          2.03998317483289,
+          4.207133568408994,
+          -5.604165421422726,
+          -1.2720865491154392,
+          0.7138662770557227,
+          -0.5247808256616961,
+          2.573018254962805,
+          3.2393751246071583,
+          4.534937690483857,
+          2.1467374086950395,
+          -1.0636039773232957,
+          -2.514055187429757,
+          -3.1928672745297813,
+          -4.1360323087428235,
+          -1.641754397125963,
+          3.170037694610339,
+          -3.212397466146992,
+          -5.152538193102889,
+          2.0529125802949837,
+          -4.311255126143948,
+          -0.26129174242489306,
+          1.0782695745008795,
+          1.6519493196281436,
+          -2.523576686075845,
+          -2.4517554481036075,
+          -4.170509051848957,
+          -0.47229762835357914,
+          -1.8388387492467837,
+          3.166139765805446,
+          2.5901209526998086,
+          -4.759021124209816,
+          -0.9370694500792593,
+          3.2921540346614604,
+          -1.2647119640911066,
+          2.220441783360399,
+          2.782769780782073,
+          3.284140986275088,
+          0.2200236218355771,
+          -5.367643748773562,
+          -5.723759713010891,
+          1.6181418436996022,
+          -0.8089784411136991,
+          -4.225611205345172,
+          2.0970208788274505,
+          1.2949184785904757,
+          -3.7158740817277436,
+          -3.1296574218516526,
+          -1.9703829474066068,
+          -3.4032983119242215,
+          3.0537580861437617,
+          -0.11043747505605683,
+          0.7105740523261037,
+          -1.3279169772493127,
+          2.53258262042844,
+          -4.113139016549587,
+          -1.3635671401513143,
+          -2.483819986542412,
+          -3.5853011113515345,
+          -5.524705366179098,
+          -0.2802586347925109,
+          3.8093295437628845,
+          -0.9809206452182373,
+          0.9801268830356733,
+          0.7467233293995648,
+          1.2857013531793315,
+          2.2228221579159877,
+          -1.4559211515899557,
+          2.6670937193694337,
+          -3.3489247524187915,
+          2.2675001529908334,
+          0.3310483604941137,
+          -0.006536050478955779,
+          -1.9286439253714147
          ]
         }
        ],
@@ -29182,20 +45099,20 @@
        "<div>\n",
        "        \n",
        "        \n",
-       "            <div id=\"ec605ae7-f730-4b92-a304-d1d045d4b5ae\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div>\n",
+       "            <div id=\"0f3205d4-ae8c-4635-b868-78858398d0d1\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div>\n",
        "            <script type=\"text/javascript\">\n",
        "                require([\"plotly\"], function(Plotly) {\n",
        "                    window.PLOTLYENV=window.PLOTLYENV || {};\n",
        "                    \n",
-       "                if (document.getElementById(\"ec605ae7-f730-4b92-a304-d1d045d4b5ae\")) {\n",
+       "                if (document.getElementById(\"0f3205d4-ae8c-4635-b868-78858398d0d1\")) {\n",
        "                    Plotly.newPlot(\n",
-       "                        'ec605ae7-f730-4b92-a304-d1d045d4b5ae',\n",
-       "                        [{\"hoverinfo\": \"text\", \"legendgroup\": \"Class 0\", \"marker\": {\"color\": \"rgb(31, 119, 180)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 0\", \"scene\": \"scene\", \"showlegend\": true, \"text\": [\"example_2\", \"redundancy_40_0\", \"Complementary_79_0\", \"mutual_error_24_0\", \"example_9\", \"example_10\", \"example_23\", \"redundancy_18_0\", \"example_29\", \"example_30\", \"mutual_error_6_0\", \"example_33\", \"example_39\", \"Complementary_53_0\", \"Complementary_70_0\", \"mutual_error_28_0\", \"redundancy_62_0\", \"Complementary_98_0\", \"example_60\", \"Complementary_42_0\", \"Complementary_89_0\", \"example_66\", \"mutual_error_27_0\", \"example_70\", \"example_72\", \"example_76\", \"Complementary_78_0\", \"mutual_error_16_0\", \"redundancy_25_0\", \"example_81\", \"example_82\", \"Complementary_22_0\", \"example_86\", \"example_88\", \"example_96\", \"mutual_error_9_0\", \"example_101\", \"Complementary_10_0\", \"Complementary_81_0\", \"example_110\", \"example_118\", \"Complementary_58_0\", \"redundancy_8_0\", \"Complementary_74_0\", \"example_137\", \"example_139\", \"example_141\", \"redundancy_5_0\", \"Complementary_0_0\", \"Complementary_14_0\", \"example_165\", \"example_168\", \"example_174\", \"redundancy_55_0\", \"Complementary_8_0\", \"example_196\", \"redundancy_11_0\", \"example_199\", \"example_204\", \"example_208\", \"Complementary_18_0\", \"Complementary_77_0\", \"example_211\", \"redundancy_6_0\", \"example_213\", \"Complementary_49_0\", \"example_218\", \"example_221\", \"redundancy_48_0\", \"redundancy_30_0\", \"example_231\", \"example_235\", \"example_237\", \"Complementary_54_0\", \"example_244\", \"example_247\", \"Complementary_47_0\", \"redundancy_9_0\", \"Complementary_92_0\", \"Complementary_68_0\", \"Complementary_44_0\", \"redundancy_15_0\", \"Complementary_41_0\", \"Complementary_16_0\", \"example_266\", \"example_275\", \"redundancy_61_0\", \"example_280\", \"Complementary_65_0\", \"example_286\", \"mutual_error_25_0\", \"mutual_error_30_0\", \"example_292\", \"redundancy_53_0\", \"example_296\", \"Complementary_17_0\", \"example_299\", \"mutual_error_15_0\", \"example_305\", \"example_306\", \"Complementary_84_0\", \"example_309\", \"Complementary_57_0\", \"example_311\", \"redundancy_54_0\", \"redundancy_43_0\", \"Complementary_55_0\", \"redundancy_2_0\", \"redundancy_34_0\", \"example_323\", \"example_327\", \"mutual_error_32_0\", \"Complementary_20_0\", \"redundancy_17_0\", \"Complementary_38_0\", \"Complementary_3_0\", \"Complementary_7_0\", \"example_346\", \"example_350\", \"example_351\", \"example_352\", \"example_355\", \"redundancy_31_0\", \"Complementary_46_0\", \"example_361\", \"example_362\", \"Complementary_52_0\", \"example_365\", \"mutual_error_23_0\", \"mutual_error_2_0\", \"redundancy_65_0\", \"Complementary_87_0\", \"example_382\", \"example_388\", \"example_394\", \"example_398\", \"example_404\", \"Complementary_56_0\", \"Complementary_63_0\", \"example_423\", \"Complementary_24_0\", \"example_425\", \"example_428\", \"mutual_error_21_0\", \"Complementary_23_0\", \"example_432\", \"example_433\", \"example_436\", \"example_439\", \"example_442\", \"example_447\", \"Complementary_12_0\", \"redundancy_42_0\", \"example_450\", \"mutual_error_31_0\", \"redundancy_21_0\", \"example_456\", \"example_462\", \"Complementary_1_0\", \"Complementary_88_0\", \"example_468\", \"example_477\", \"Complementary_48_0\", \"redundancy_28_0\", \"example_482\", \"Complementary_91_0\", \"Complementary_82_0\", \"Complementary_27_0\", \"Complementary_97_0\", \"example_499\", \"redundancy_63_0\", \"example_513\", \"Complementary_71_0\", \"redundancy_12_0\", \"example_518\", \"example_521\", \"example_522\", \"Complementary_43_0\", \"example_526\", \"example_527\", \"Complementary_96_0\", \"example_529\", \"Complementary_37_0\", \"example_534\", \"example_535\", \"example_538\", \"example_539\", \"example_541\", \"example_542\", \"example_543\", \"Complementary_59_0\", \"Complementary_31_0\", \"example_549\", \"example_551\", \"example_554\", \"Complementary_60_0\", \"example_570\", \"Complementary_86_0\", \"mutual_error_3_0\", \"example_576\", \"example_578\", \"example_580\", \"mutual_error_8_0\", \"mutual_error_19_0\", \"mutual_error_11_0\", \"example_593\", \"Complementary_72_0\", \"Complementary_35_0\", \"example_597\", \"redundancy_14_0\", \"redundancy_7_0\", \"Complementary_25_0\", \"redundancy_47_0\", \"example_605\", \"example_618\", \"Complementary_62_0\", \"redundancy_20_0\", \"example_625\", \"example_630\", \"example_634\", \"Complementary_34_0\", \"Complementary_9_0\", \"example_644\", \"Complementary_19_0\", \"example_650\", \"example_652\", \"redundancy_60_0\", \"redundancy_37_0\", \"mutual_error_20_0\", \"Complementary_28_0\", \"Complementary_73_0\", \"example_689\", \"Complementary_4_0\", \"example_696\", \"example_697\", \"redundancy_29_0\", \"Complementary_45_0\", \"example_707\", \"mutual_error_18_0\", \"example_712\", \"example_713\", \"redundancy_36_0\", \"example_716\", \"example_720\", \"mutual_error_29_0\", \"Complementary_26_0\", \"redundancy_24_0\", \"example_737\", \"mutual_error_14_0\", \"redundancy_35_0\", \"example_746\", \"example_750\", \"redundancy_64_0\", \"example_765\", \"example_773\", \"Complementary_13_0\", \"mutual_error_22_0\", \"mutual_error_10_0\", \"Complementary_15_0\", \"Complementary_80_0\", \"example_788\", \"Complementary_5_0\", \"redundancy_32_0\", \"redundancy_13_0\", \"Complementary_30_0\", \"redundancy_50_0\", \"Complementary_66_0\", \"Complementary_51_0\", \"Complementary_2_0\", \"redundancy_27_0\", \"Complementary_85_0\", \"example_819\", \"Complementary_76_0\", \"example_824\", \"mutual_error_4_0\", \"mutual_error_5_0\", \"redundancy_33_0\", \"example_834\", \"Complementary_75_0\", \"Complementary_33_0\", \"example_843\", \"redundancy_16_0\", \"redundancy_3_0\", \"Complementary_93_0\", \"example_858\", \"redundancy_1_0\", \"redundancy_10_0\", \"mutual_error_26_0\", \"Complementary_36_0\", \"redundancy_52_0\", \"example_876\", \"redundancy_4_0\", \"Complementary_21_0\", \"mutual_error_1_0\", \"example_892\", \"Complementary_83_0\", \"redundancy_51_0\", \"redundancy_0_0\", \"example_901\", \"redundancy_56_0\", \"mutual_error_0_0\", \"example_909\", \"Complementary_50_0\", \"redundancy_19_0\", \"Complementary_95_0\", \"Complementary_90_0\", \"example_922\", \"Complementary_61_0\", \"Complementary_6_0\", \"Complementary_69_0\", \"Complementary_94_0\", \"example_934\", \"example_935\", \"Complementary_11_0\", \"example_939\", \"example_940\", \"example_945\", \"Complementary_67_0\", \"mutual_error_7_0\", \"redundancy_57_0\", \"mutual_error_17_0\", \"Complementary_40_0\", \"Complementary_32_0\", \"example_960\", \"redundancy_59_0\", \"Complementary_29_0\", \"Complementary_39_0\", \"redundancy_44_0\", \"example_984\", \"example_985\", \"redundancy_45_0\", \"Complementary_64_0\", \"redundancy_38_0\"], \"type\": \"scatter3d\", \"x\": [-9.274483722547165, 10.182749971946613, -8.920886167494096, 11.662522426889868, -10.896190638435993, 10.46002153938844, -9.011479976221839, -10.064927478257836, -9.54805604932587, -8.967554109347736, -9.389297469442342, 8.31702467819667, 8.080373603436886, -9.030304228705214, -9.126537722042807, 9.354196951529854, -10.100469320403066, 11.012023642678313, 10.144504523782537, -8.384017297713445, -9.2268664319609, -12.297568286811273, 10.251029094595301, 9.040981209522801, 10.668190439849383, -11.891046522938899, -9.603699580663013, 10.321502966359668, 9.831387901607215, -10.32325584276093, -10.340747809707958, 9.49450800907953, 9.657798999204113, -9.72143931413143, -8.966551712987753, -10.657689851600836, -10.495212356622615, 11.742143491125287, -11.816106868550007, -10.438868716669425, 9.746493507415849, 10.256822396014316, -11.98744149669954, 10.551993963170071, 9.856335695579906, -11.135519393842603, -9.327125901948499, -8.317263043757707, 10.03350203406071, -10.327353227480922, -10.70805149577955, -8.266646506801413, 9.224142414671123, -9.46030913133651, -10.886156852736132, -10.522224622628588, -7.208631539968973, 9.265034005598109, -10.897193851439031, -8.645199106323135, -10.087486975306106, -9.416418894771947, 10.84049690248721, 10.634564528553149, 8.641818778769299, -9.23583412417101, -9.664079798387611, -10.79207533220703, 7.885921385045114, -9.224035300227262, 8.47952988772804, 8.723158752967736, 9.219964588439518, -10.997926681236022, 9.433430428882003, 10.604152638461537, 9.515567066063564, 11.42899510672535, 10.070881155260066, 10.408247803126738, -9.961994958472152, -7.1015661464045685, 8.923460587268758, -8.92031503600557, 9.70965513472096, -9.443273371106514, 9.45869064626437, 10.531070071083995, -11.064349262148411, 11.147952334134027, 9.809272675057029, 9.425548898585745, 11.050291697563937, 10.346681324162365, -8.90489299997826, -9.596100489500225, -13.407120943416558, -9.035176678899978, 10.924298003137807, -10.623380079503894, 9.872384811505318, 9.477163517245513, -9.479995552438925, 11.178417967434196, -10.473045448840795, -8.50711416402356, -8.479641141738806, -10.130381671304907, 9.93684398228607, 7.851621610312742, -12.306782740480028, 8.99703190481938, 9.566589159204725, 9.567326352877744, 11.360196900774866, 10.898742226833265, -10.753286447812563, -7.660789921353288, -10.468870185636648, -9.105860183368343, 10.91172970597093, -9.874930569451653, 10.532753228398217, 11.404776684907462, 9.62024901528275, 10.696965086536231, 7.880610008847992, 9.349042184580691, 9.957341267325422, -9.321929287479096, -8.420063905099902, -10.575408479204363, 9.36299133799725, 11.877774560728783, 9.4811352121527, 10.774948929380573, -11.492165847006573, 8.009384311473736, 12.177591404721946, -11.922756078003472, 10.130270520721979, 10.889107318789163, -7.845481992397943, -9.80380875303458, 9.800234478835744, 9.842871216511925, 9.86678578098678, 8.466707183748323, -8.384791096835666, 8.618329834419919, 9.63944951198026, 8.859231629953193, -9.783205518229233, -9.124860784011565, 8.689345325883478, -11.017869641991428, -10.12485205855199, 11.172074678353301, 10.52296181586402, 10.559321739553539, -10.792061066465788, 10.281079032370211, 8.549807391927853, -9.88786067805026, -10.153925619372018, -8.96710436865634, 10.145581404893155, 11.416542645265046, 10.713417321165881, 10.777484727240786, 10.561454839631814, -10.381850949278514, 9.645953610960152, -10.708059007911926, 9.007708519802236, -10.080949003454245, -9.975886428646332, 8.323563301547466, 8.598710891683167, -11.06800078511054, -10.485196136342092, -8.389713762220651, 10.059515639834403, -11.289439131666743, 9.53856056618424, 9.638826420716388, -9.715106416556822, 11.719134290778047, -9.531865145133127, -10.833668489378962, 8.370335064296762, 10.140035325856129, 9.644786186396868, -11.630350790295179, -9.860034753644447, 9.906876406254344, -9.617392146203315, 10.056474636048195, 8.027739606251208, -9.305762906228077, -10.006659473342262, -9.371876654812777, -9.069785219035412, 10.787181960871791, 9.976801657151873, 9.93774378735386, -8.406188886264628, -9.862854778190005, -11.722003404562694, -9.877475311443115, 10.388591740161424, -8.341318108219486, -10.562375011085969, 10.161340169760285, 9.530700120024592, -9.663302224987687, 10.416081730325834, 9.445703881923377, 10.579477729943733, 9.330211396484243, -9.117344638302104, 11.064178920548907, 10.964590800221192, -9.851184454238112, -11.563017413044786, -9.89053724045178, -11.11821143968469, -11.996733063064507, -8.888677710879893, -9.980561350165036, 9.967250253041787, 9.735984523541793, -9.207676020742277, 10.592782345899499, 10.2350794204237, 10.659868656746958, 11.996233571792585, -10.616190737658272, 11.847414881868664, 9.633306836601543, 9.79625238402967, 10.64278879859573, -10.483963309355033, -8.79695067029022, -11.862736172077142, 9.115903353466523, 10.8795686971334, -12.285924903789745, 11.876177922036632, -9.642766600455387, 9.336589264606129, 11.075346855202799, 9.753186969205068, -7.588947380503218, 10.64209969737429, -9.111476235997415, 12.085192294571169, -9.359699892424894, -9.146568251649601, 10.002277759154616, 10.065097635024603, 7.803801137070254, -11.220156195756601, -10.889803698621957, -9.993785303837956, 10.362278767972128, -11.489891137721045, -10.717419067500588, -9.322894184088058, 9.732743716429166, 8.846888715678816, -11.670565572946542, 10.229388269345401, -11.326737083095344, -9.074134081197892, 10.349941587164217, -11.524115756380588, -10.337853212306843, -9.670280710395257, 10.656286686805247, -11.378104010966638, -11.283380057984322, -9.95297008437745, -8.017340714717909, 11.11861865256079, -12.290705597018553, 10.74632474625807, -9.083656777795056, -11.54845650050124, -9.251828624790123, -9.640315874209472, -10.526923295472514, -9.823508999126402, 9.57549395167449, -8.954809606793384, 9.951563403316744, 10.665189452516625, 9.095512933036044, 10.809370494323726, -10.263155506413346, 8.836315081479553, -10.729536893345086, 9.250050644255507, 12.116918128849726, -9.655361895599446, 10.097174419979167, -7.4876739235383685, -10.55215279344824, 10.127826617799949, 9.722842158773686, 9.758243592489286, 10.665731360897638, 9.646431726390293, -9.887500222275657, 10.723327988661062, -10.321535804397787, -8.8554214475351, -9.918936442216282, -9.790971705186019, 11.579333669669637, -10.294276056081703, 9.748397985822411, -8.074016422875781, 10.397548831936565, -10.777742807157747, 10.455311672105823, -10.08831812155791, 9.890424050585867, -9.478871194297284, -10.917841249421704, 8.865896878732801, -10.306268130779834, 9.672510476270071], \"y\": [-9.830901999820652, -9.112006620388037, -9.395780295720016, -8.51253225982056, 11.336198011836839, -11.298809359210233, 9.637747774651956, 11.049380397897666, -9.491244357493496, 9.709278284947247, 9.875446772424707, -12.466633776422395, -10.803932939681912, 9.682264268551675, 11.279425573734352, -9.877352912112844, 10.485054116255117, -11.350558020409974, -10.723730963999415, 9.094932534961533, -10.41092157883121, -10.87107417645375, -9.652360599091015, -10.48004209119801, -11.110009781653819, 8.106820354977058, 9.829162285535032, -10.459471201694479, -10.203045429580918, 9.828545621949738, -9.956103572881634, -10.344553782699846, 10.220036708864189, 8.910479802221705, 10.232786276188252, 11.383558552547305, -9.680882476929172, -9.615298476204169, -10.48637619060993, 11.424246092902361, 10.23871307117363, -10.906161555703752, 9.413710308462667, -8.1943607172021, -10.045956327720816, 10.618692941355148, -9.904604347722763, 10.40384195049938, -10.237128704286702, 9.195613741303132, 9.259271508811722, 10.49661120612538, 10.663884525709594, 9.121879109110354, 10.597604443087278, -9.963008360518987, 10.179104155272757, -11.121553813985003, 7.476336508708175, -9.677817378567278, 11.18146153360084, -9.704662188833987, -9.02360422065068, -9.809783861165965, 11.075428371616706, 9.657127630689736, 11.32560484562826, 10.440090020297687, -10.318024611958407, 9.366604336824713, 11.256636534402999, -10.489736522255328, -11.418415899256228, 9.352109814082755, -10.125514820021845, 9.634212005088735, -10.238542382218133, -10.014853127775238, -11.283273007342466, -10.062233922445664, 10.340088422411352, 11.479774482189903, -11.316331561421602, 9.938548125116476, -9.591435410693906, 9.275300709615243, -10.504362398199822, 9.655342873352785, 8.014379121369076, 9.177848308189883, -9.12878873492986, -10.03589256634753, 9.217940548331928, -10.714372908206997, 10.2623979105031, 9.69852171367757, 8.392405390900837, 9.049862110010189, 9.21928304974738, 9.781001877686982, -9.584129467171264, 10.37993636847826, 8.694997538815894, 9.189353053468956, 8.478420536627294, 10.537455412158183, 10.392026553229465, 8.805646924143513, -10.703804896840133, -9.940276637995757, 10.201507701760557, -10.397899132115546, -10.043901221170456, -9.802419285239113, -8.457128273149666, -9.122844978466137, 10.272083154502004, 9.72700034419068, 8.629863760097452, 9.868121117690334, -9.247956731999594, -10.864470287437147, -8.97764898057586, -8.840757844614235, 10.076362581099367, 9.466567162788504, -9.32992428072637, -9.0891927153381, -11.35361113406228, 8.643200830511887, 9.503615544482614, -9.895772194095343, -8.906012574117911, -9.398515722540711, -10.02518317661527, -9.484686003889744, 10.184711448267137, -11.299199827697997, -9.084806370727236, -10.021975504146342, -10.278849831592327, -9.942640808818377, 9.532826519457402, 11.575150497236677, -9.674277286051952, 9.912910232196666, 10.080073906579958, 10.99343842559838, 9.714668396045191, 11.004810427474048, 10.23984461110205, -8.656631535604408, 10.043204013956263, -9.357693111532791, -11.011248745666386, 10.10878943452716, 12.724257949246503, -8.958752855542459, -9.307149344255741, -10.041982773700344, 8.792761132246044, 9.86912330566388, -10.488211184084996, 10.715946230383107, 10.080409464682539, 9.71690607768659, 9.908346005141597, -9.503655517730389, 9.465243127964495, -9.650464686907535, -9.244512065473993, 10.38538527325131, -10.442526743725306, 8.18935598190376, -10.054595290164169, -10.346733079476875, 9.82472591322003, -9.750685080498574, -11.179903356614789, -9.616890656813164, -9.935368928995459, -9.978263284490664, -9.840557223721033, 8.083040335515854, -8.578222571750322, -9.738728582288882, -10.165694644134549, 8.757402105152806, 9.571706771728522, -9.546794203008199, -9.70004795724608, -10.614775433714243, -9.592379412628818, -10.752828358288278, -9.967381284439979, -10.12302632580609, 9.512412773700989, 9.914051701978895, -9.78236702682748, 10.813655968037475, 9.991830290843144, -10.137311915485013, 8.517177353052961, -9.129540132512718, -9.018412953687724, 9.91252519534758, 9.617543559966633, 9.722030272226649, -10.102147573263672, 11.531314398414372, -9.76391934883345, 9.708898877975304, 8.931259698845814, 9.915395148259975, 10.298948657450893, 9.569495484556597, -9.100382049986118, 10.40528962495649, -9.411681675303301, 10.4243520422664, 9.9635771397, -11.698667880992504, 9.33589876986022, 9.463320657612831, 10.197929879178844, 10.700964351517234, 8.580225006225056, 9.634748292771844, 8.111388554672285, 10.814717799276591, -9.452562846450872, -9.528304873056808, 9.076603482920373, -10.355150565881823, -11.039881525701302, -10.820937495236615, -10.96266782701845, 7.852232493496841, -10.044829669084221, 10.353830445276337, -10.394851057307383, -10.297722589690235, 8.668514156744079, -9.717425547563005, 13.003596499207175, -10.516575728968059, -9.42744610751845, 9.159517665329178, -9.965640413663944, 6.99759792179478, 10.450075162718168, -9.380636285874694, -9.904259379512803, -10.197330793454057, -9.759360648903865, 9.406585175471683, -9.825862193104495, 9.685094526899753, 10.962011974642843, -10.180116729080172, -9.407626927697743, -10.695268413997445, 8.942554797069945, 10.495141468582476, 8.89783358243366, -10.039443932609727, 10.334630128941159, 9.36132695562598, 12.209142005013133, -9.902990421295685, -10.194444070975774, 8.907859512827704, 9.659597784189465, -10.069041278304093, 10.047712671277486, -10.779805302034093, 9.610943907811622, -10.528723991482313, 9.610959344394463, -10.31527318837736, 10.121772063960194, 8.531464149612306, 10.112529221096795, -10.308431381009251, 9.351738160509166, 9.743178149480357, -9.603883395805983, 9.257379989977197, 10.741532998650742, 8.876363880380074, 9.826794800336613, 8.248115841475252, 9.6461418552261, -10.006159200760141, 10.406043969639278, -9.017849623850864, -9.186933551921667, -10.530775957052787, -9.996963166295341, 9.820438716184416, -9.950348956655237, 9.327041101624753, -10.594667542227603, -8.857788791316764, -10.09309491956272, 10.038587906986761, -10.30649224671631, 9.152061286509484, -11.220067545279289, -10.003045318503366, -9.285568489996884, -10.568759083266011, 10.407242219481212, 9.640562118993946, 9.491224271725875, 12.522420589839186, 11.367520376467619, 9.197397144261274, 8.638808715791228, -10.594948560884273, 10.110029189055352, -10.191023081944797, 8.762227290949756, -10.893979005201363, 9.414716608363673, -8.92564889897951, 9.466003985898231, -9.053412642181547, -9.5946429150011, -10.655717015072533, -9.269600003571227, 13.25009804700765, -11.014358402620854], \"z\": [-11.310445522657766, 9.381433608708386, -11.169340005181358, -10.189700026967522, -8.461127855137544, 11.896067325105935, -10.475828358341452, -10.878449931514693, -10.781641690313418, -10.079897112584124, 9.63561322270778, 12.25995407091564, 10.487332333572716, -9.373374784032679, -9.136992865525826, -9.66246059090205, -9.697838904711846, 12.588132934560475, 11.303087043841636, -7.24321139271394, -9.355932510067335, -6.303481896086504, -10.039665532249133, 10.79749130112686, 11.258819880716622, -12.793986031050604, -9.368315762001867, -10.44805550339581, 9.678695607270129, -9.0796555933584, -9.482055497343948, 10.807396643084095, 10.215290458475215, -9.542814358635958, -8.8658009730657, 11.254211564609095, -11.14460127604595, -10.779249858147754, -9.107334846667303, -9.73664013247696, 9.635824884817167, 10.496931532695871, -12.182499244551174, -8.752813922029803, 9.201954053782389, -9.552997200502066, -10.715530946279506, -9.634988866806378, 9.09525833421066, 9.051210195612777, -11.184066813714587, -9.439230018338746, 9.256761937148323, -9.354078101505937, -8.742364553387796, -10.558600323605821, -7.334657501188463, 10.079095457898939, -10.966121507159695, -10.982581114851158, 11.17147617410209, -11.046152687951574, 8.886759274311093, 10.465854344176353, 9.338685435843868, 9.520625365570128, -9.408136746990538, -8.806040764957098, 11.396562463424154, -9.543672099867155, 9.081467274806982, 10.159683441101215, 11.228387375970117, -9.955863035768314, 9.983355765964287, 9.67916082113066, 10.544461864825594, 9.442604235273844, 11.24286572972047, 9.857275207581745, 10.470428476986783, -7.530051463484307, -10.411529841607827, -9.469054112971515, 9.673056704918004, -9.21723925112137, 10.360488562058249, 9.882496638554167, -12.354617206252794, 9.769488569935863, -9.021934726177635, -9.81290613851767, 10.050797014471168, 11.740337457723806, -9.572393741434658, -9.870910952588034, -12.522160726758809, 8.827362914981876, 10.816421114006516, -10.62708797453961, 9.513067128911732, 10.137899849895835, 9.02702299395548, 9.488514766908068, -12.01327717606884, -9.826172411500437, -8.60973328169861, -10.441314304485681, 10.858287498284355, 10.716750551606264, -10.275866763722954, -10.083925590905313, 9.621276171680641, 11.196323351321725, -9.086702783681332, -9.170192601551769, 9.972255288725131, -8.943138550590351, -10.80140292175822, -9.822876251351538, 9.882739595928962, -8.634345770369395, 9.348519719437652, 8.929796979770876, 11.461191675832008, 9.841938899728625, -8.338938429869716, 8.893930840241818, -11.146770226435965, 8.997612116576908, -9.673193752572116, -10.16695212970146, 8.664437222388514, 9.438704000572363, 10.718015070256884, 10.583684805965769, -9.908967066164713, -10.285390989329215, -10.462307526591902, -8.256686493269443, -9.9580764288722, 9.853397350202275, -9.844366556128037, 10.994990739891158, 9.550087495443803, 11.586119123030668, 10.047872856146228, 10.82919812719792, -9.572911071187644, 9.999960815586343, 10.461136163159084, -8.78874542072071, -9.143820687277234, -11.730556894173287, -9.866639504042794, -8.835193575172813, -8.35489185954391, 8.328776837227402, 9.461081535956373, 9.667022754008055, -11.667045701053304, 9.410752842152414, 10.492662133175612, -11.756701354648726, -8.692702256932924, -8.396284875086039, 9.681115621762315, -10.70829720507204, 10.207311440061089, 10.261666730623455, 9.286147735641826, -8.940485037763633, -9.947615058886145, -9.52814081892055, 8.646886565678818, -8.749247718800275, -9.83179257893213, -8.955111127153183, 11.706105328475648, -10.689070514018061, -9.3887776525507, -11.519581201251016, -10.43944387447143, -13.133504823571032, 9.625445941785038, 10.201600409131993, -9.811537251036457, 9.99594891950063, -9.758328345138256, -10.51295632974877, -8.992321534186674, 10.920130719281314, 9.118042670326624, -8.801236840020872, -8.33705008583956, -10.286498703113272, -10.242629083820205, 10.42409472262018, -8.544019171427143, -8.511567399126033, -10.123346014782216, -10.219213636674414, 10.077323082891827, -10.28533051380222, -9.243596077093253, 10.918667725251943, -10.35527009290145, -9.94353934896424, -8.840538433911863, -8.760952590370906, 9.448621625489329, -10.916883398779417, -10.128911014257623, 9.58545500346874, 10.34840424538547, 10.094352556767475, 9.47720446341386, 10.176442928021508, 10.434836455947273, 10.260342127588569, 9.81646366895581, 11.947763929619331, 9.79256710339737, 9.196715215074443, -11.309801831984439, -10.183809566765298, -11.057698775296663, -11.496149822293177, 9.55783770865464, -9.21365675172485, 9.973439006416983, 8.672148465784078, 9.035613311252096, 9.816578300462272, 11.038618174773074, 11.2702105326404, -11.993425628352783, -10.29918474461422, -10.892083202233488, 9.526140052666863, 10.916346832842901, 10.991973790460928, -10.419439038554595, -10.419112229328242, 11.35170230709279, -9.558317595038995, 9.381345588650337, -11.580732552080278, -11.617103095363543, -12.277823019624133, 10.306749073092407, 8.251607837319902, 10.580358096863499, -11.083070359990527, 10.348747375848497, 9.6399974485664, -11.360675020377347, 9.871395418293785, 10.873950557172144, 11.161869699677903, 8.535684369466919, -9.33672293744777, -10.525420423105093, -11.244929221846402, -8.832088843580573, 9.88605279617724, -11.378945361232994, -11.682062911499386, -8.497056792866537, 10.540348720085534, 10.427274497642587, -11.672992082108838, 11.30976095150851, -9.41046140356344, 11.142208980442728, -11.411411822511086, -9.536726395734725, -9.21032022301995, 9.671845626666334, 9.826827784448252, -10.434591882500223, -11.14519368467455, -9.644051154343757, -11.708179502231868, 8.62206305633376, -9.411230678414272, 9.279439737762186, 10.209277740901129, 8.728564298866653, -11.481377753238801, -10.613993570172243, -13.251766041395335, -11.088682785241438, -9.92015389410055, -9.656436701749028, 9.07458117322933, 9.534143123918161, 10.574269829373938, 10.242692212571216, -10.50107761033982, -8.778294724595986, -10.895076776090633, -10.265828182084682, 8.438975648775049, -9.653986780523297, 9.346650976542218, -11.626124142363192, -11.017956050110667, -11.356263766976078, 10.134459776807184, 9.917928595638434, 10.373233726577237, 8.77032575790473, 10.510171270740544, 10.132125024254714, -8.80123781376722, -9.790875216512902, 10.152377680091439, 9.1920668726197, 10.248665429158612, 11.102065662401333, 10.470438633803052, 10.034975882431313, 11.958099935246587, -11.581097164652007, -8.829694768054576, -11.037745895716817, 8.098124227193297, -10.640397059453875, -7.526372880604891, 10.130260050295677, -8.126610811609414, 11.905381649145244]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 1\", \"marker\": {\"color\": \"rgb(255, 127, 14)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 1\", \"scene\": \"scene\", \"showlegend\": true, \"text\": [\"Complementary_85_1\", \"Complementary_1_1\", \"redundancy_42_1\", \"example_12\", \"example_15\", \"Complementary_25_1\", \"Complementary_27_1\", \"redundancy_11_1\", \"example_19\", \"Complementary_48_1\", \"mutual_error_32_1\", \"redundancy_50_1\", \"example_28\", \"mutual_error_23_1\", \"Complementary_49_1\", \"example_41\", \"Complementary_65_1\", \"Complementary_56_1\", \"Complementary_63_1\", \"Complementary_76_1\", \"redundancy_62_1\", \"Complementary_71_1\", \"example_51\", \"Complementary_37_1\", \"Complementary_62_1\", \"Complementary_88_1\", \"example_68\", \"example_69\", \"example_73\", \"example_74\", \"Complementary_12_1\", \"example_83\", \"example_89\", \"mutual_error_18_1\", \"Complementary_36_1\", \"redundancy_10_1\", \"example_94\", \"redundancy_19_1\", \"mutual_error_12_1\", \"Complementary_95_1\", \"example_111\", \"redundancy_64_1\", \"example_114\", \"Complementary_82_1\", \"Complementary_72_1\", \"example_117\", \"mutual_error_29_1\", \"redundancy_13_1\", \"redundancy_22_1\", \"Complementary_5_1\", \"example_131\", \"example_132\", \"Complementary_14_1\", \"redundancy_46_1\", \"redundancy_36_1\", \"mutual_error_22_1\", \"redundancy_29_1\", \"Complementary_31_1\", \"example_152\", \"example_153\", \"mutual_error_5_1\", \"Complementary_15_1\", \"example_162\", \"Complementary_50_1\", \"example_164\", \"example_167\", \"Complementary_24_1\", \"example_171\", \"example_172\", \"Complementary_61_1\", \"example_175\", \"example_176\", \"example_177\", \"Complementary_4_1\", \"redundancy_23_1\", \"Complementary_83_1\", \"example_181\", \"example_182\", \"example_185\", \"example_188\", \"mutual_error_19_1\", \"example_193\", \"example_194\", \"Complementary_30_1\", \"mutual_error_3_1\", \"example_220\", \"example_222\", \"redundancy_65_1\", \"redundancy_51_1\", \"redundancy_31_1\", \"Complementary_64_1\", \"example_234\", \"example_236\", \"example_238\", \"example_245\", \"example_248\", \"example_255\", \"example_257\", \"redundancy_4_1\", \"Complementary_77_1\", \"example_268\", \"Complementary_8_1\", \"redundancy_34_1\", \"Complementary_92_1\", \"Complementary_69_1\", \"redundancy_39_1\", \"redundancy_48_1\", \"Complementary_0_1\", \"Complementary_58_1\", \"Complementary_6_1\", \"Complementary_26_1\", \"Complementary_2_1\", \"example_304\", \"mutual_error_16_1\", \"example_320\", \"example_322\", \"example_324\", \"Complementary_35_1\", \"example_329\", \"example_335\", \"example_336\", \"example_338\", \"mutual_error_8_1\", \"example_341\", \"redundancy_14_1\", \"example_349\", \"Complementary_51_1\", \"example_354\", \"mutual_error_30_1\", \"redundancy_7_1\", \"example_364\", \"mutual_error_15_1\", \"Complementary_89_1\", \"Complementary_87_1\", \"mutual_error_6_1\", \"mutual_error_7_1\", \"Complementary_40_1\", \"redundancy_32_1\", \"redundancy_33_1\", \"redundancy_17_1\", \"example_395\", \"Complementary_17_1\", \"example_399\", \"example_405\", \"Complementary_97_1\", \"Complementary_81_1\", \"redundancy_26_1\", \"example_412\", \"example_416\", \"redundancy_61_1\", \"redundancy_49_1\", \"example_426\", \"example_431\", \"Complementary_74_1\", \"example_437\", \"example_440\", \"example_443\", \"Complementary_42_1\", \"example_445\", \"Complementary_75_1\", \"example_457\", \"Complementary_44_1\", \"Complementary_67_1\", \"Complementary_55_1\", \"redundancy_52_1\", \"Complementary_46_1\", \"Complementary_18_1\", \"example_486\", \"redundancy_55_1\", \"redundancy_57_1\", \"Complementary_22_1\", \"example_495\", \"Complementary_32_1\", \"example_501\", \"Complementary_52_1\", \"example_506\", \"redundancy_37_1\", \"Complementary_3_1\", \"example_515\", \"example_517\", \"example_519\", \"mutual_error_28_1\", \"redundancy_41_1\", \"example_531\", \"example_532\", \"example_536\", \"Complementary_43_1\", \"Complementary_54_1\", \"redundancy_43_1\", \"mutual_error_4_1\", \"example_557\", \"example_559\", \"example_567\", \"example_568\", \"mutual_error_26_1\", \"example_579\", \"redundancy_56_1\", \"example_582\", \"example_583\", \"example_584\", \"Complementary_70_1\", \"mutual_error_27_1\", \"Complementary_21_1\", \"redundancy_28_1\", \"example_601\", \"example_604\", \"example_606\", \"mutual_error_11_1\", \"mutual_error_9_1\", \"Complementary_80_1\", \"example_616\", \"example_617\", \"Complementary_90_1\", \"redundancy_35_1\", \"example_628\", \"example_629\", \"Complementary_11_1\", \"example_633\", \"example_636\", \"example_638\", \"example_653\", \"example_655\", \"example_656\", \"example_657\", \"redundancy_40_1\", \"Complementary_20_1\", \"example_665\", \"example_666\", \"example_667\", \"redundancy_15_1\", \"Complementary_10_1\", \"mutual_error_13_1\", \"example_673\", \"example_675\", \"redundancy_63_1\", \"Complementary_53_1\", \"redundancy_38_1\", \"example_685\", \"example_687\", \"example_692\", \"example_693\", \"example_695\", \"example_703\", \"example_705\", \"example_711\", \"mutual_error_1_1\", \"example_717\", \"Complementary_29_1\", \"example_722\", \"example_730\", \"example_731\", \"example_732\", \"example_734\", \"mutual_error_20_1\", \"redundancy_8_1\", \"example_752\", \"mutual_error_25_1\", \"redundancy_45_1\", \"example_755\", \"example_756\", \"Complementary_33_1\", \"example_758\", \"redundancy_47_1\", \"example_770\", \"mutual_error_24_1\", \"example_785\", \"example_789\", \"Complementary_47_1\", \"Complementary_91_1\", \"example_803\", \"Complementary_16_1\", \"Complementary_59_1\", \"example_816\", \"example_817\", \"example_820\", \"example_822\", \"example_827\", \"redundancy_44_1\", \"redundancy_12_1\", \"Complementary_68_1\", \"example_833\", \"Complementary_84_1\", \"Complementary_66_1\", \"example_853\", \"redundancy_27_1\", \"Complementary_7_1\", \"example_861\", \"example_863\", \"Complementary_23_1\", \"example_865\", \"Complementary_38_1\", \"Complementary_79_1\", \"example_884\", \"Complementary_98_1\", \"redundancy_58_1\", \"Complementary_60_1\", \"Complementary_93_1\", \"mutual_error_17_1\", \"example_902\", \"Complementary_41_1\", \"Complementary_45_1\", \"mutual_error_14_1\", \"Complementary_96_1\", \"example_919\", \"mutual_error_21_1\", \"mutual_error_0_1\", \"Complementary_78_1\", \"Complementary_13_1\", \"mutual_error_31_1\", \"redundancy_24_1\", \"example_941\", \"example_949\", \"Complementary_9_1\", \"Complementary_39_1\", \"redundancy_59_1\", \"Complementary_34_1\", \"Complementary_28_1\", \"example_964\", \"Complementary_86_1\", \"example_966\", \"redundancy_60_1\", \"example_968\", \"example_969\", \"redundancy_18_1\", \"Complementary_19_1\", \"example_983\", \"redundancy_53_1\", \"example_989\", \"Complementary_73_1\", \"Complementary_94_1\", \"Complementary_57_1\", \"mutual_error_10_1\", \"redundancy_21_1\"], \"type\": \"scatter3d\", \"x\": [-9.981369309161868, 8.059329877373246, 9.309131962373907, 8.749754535503637, -11.116158443335774, -10.89045324689292, -8.55816743351424, 11.15926706645459, 10.236589971494817, 6.7545210433778085, -9.909046429442947, -11.3918155855104, 10.55114960098809, 10.627143192391937, 9.06714970385186, 9.809792972494144, 9.074557399864467, -10.610472293705822, 9.256098640672178, -9.23112470127903, -11.357069997814758, 9.584308810151386, -9.56482987423732, 9.726328787753193, 11.51975878191724, -9.611443496704887, 8.527720911573812, -10.593269171692741, 10.151680649290975, 11.337068244887814, -11.746819645796062, -10.130953940799172, -7.46429996453719, 11.576675042267915, -10.124241330791738, 10.900068741016932, -11.185189645744627, 10.177948649435706, 10.121488116878522, 9.969807308842311, 10.355930163095572, -10.843478596074798, -8.834002023279737, 10.990292535098094, -9.236244715595234, 11.140612065529718, 10.60536486542855, -10.553905090288126, -9.988192336458948, -11.089645090155802, -10.659151848529225, -11.515573014100639, -10.347996573211208, 9.314994337384613, 11.496206213154789, -10.65451107043442, -11.22653361404147, -10.889991078236894, 9.824875479795237, 9.899692623879005, 9.199654270064126, 10.261983385726383, -10.350422114161264, -9.029487945425666, -9.920055322839856, -10.122160045908915, -10.530937342704892, -10.299220757774407, 10.327825144820277, 10.080268081404737, 8.315902869214895, 11.394664460949292, -11.116409253409373, 9.072683866061894, -9.967933045672403, 9.813684373454654, -8.460774208487269, 11.355978978068572, -8.900994310738444, -9.372042726909974, -9.855559389340687, 11.488114653684917, 10.296839052162317, 11.233477480790226, 9.344032212287186, -10.860698945038427, 11.430509840425072, 12.117287340802918, -11.42984915342771, -9.509368161694752, 8.318201411888824, -10.861510864841678, -10.57346746061851, 10.627925658287126, 9.505178698448388, -10.664904238685263, 9.934639188776021, 9.197625295077835, 10.267304098750866, 10.331455156058839, 10.252439437683655, -11.386171087024636, 10.183377085624672, 10.349539919953664, -10.454852815880791, 8.83224218674519, 10.550659257622115, 9.87450916645474, 9.789606192350211, 10.853260026160125, -9.949138137899773, 11.459578640858899, 10.124740759069526, -11.677398732868562, -8.326637972566628, -9.922964266217067, -10.737228131925232, 9.082348949945015, 11.984700174511502, -10.013510677336198, -12.301480285598242, -10.42245666829284, 10.195200706399246, 9.837308598659435, 10.02562167620449, -8.974819678140973, -10.423381766917117, -8.229916525413955, -10.882766875754113, 11.430438138398259, 9.703473584153448, 11.244297372198474, 8.168388991038487, 9.305816678310944, -11.177843628082671, 10.841351061782388, 10.846967419331815, 10.422892903060532, -10.090718649860225, -9.748163027646468, -8.560130686380043, 11.357000551155448, -10.99915863948861, 10.878667096807911, -10.035357504876204, -8.772752764532656, 8.992906507796906, -9.72005486713369, 11.938498045788629, 9.306847233883659, -10.368670113635499, 10.174125749858666, -9.067134658789488, 9.444491532421399, 8.583530941646101, 11.51181751004292, 10.730947943326267, 8.721426665451663, 9.299861870169494, -11.746502665863737, 9.736380517532208, 9.293146350396945, -11.203237453232372, -10.929722243821963, 9.907102460774626, 9.991674086865272, 9.794753275935022, -10.41350194487723, 9.95413786514809, 9.850414349791873, 11.287077480296212, -12.071523454529554, 10.938492917898033, 11.088586361543777, -10.989025128085911, -11.124562811651131, -10.161012108505673, -9.78090317130719, 9.159622020217041, 10.649721777157371, 11.012331904564933, -9.838365814976783, -8.74772647445475, 9.503981392804596, 10.770125597214625, -8.22698956530585, 11.45851452757094, 8.521324156070389, 11.942530109390603, -10.613503262818565, 9.555140520003487, -10.162323685948957, -8.136214049178987, 10.94022554129852, -9.044319674067422, 9.87572046313958, -10.463886726162663, 11.162389620386746, 9.63956345981921, 10.66785287317375, 10.07914490461921, 10.292575774145211, 11.716263978159224, 10.12534435557307, 10.967564819753495, -11.401774930170221, 10.367996908246226, 9.8509088500099, 9.574293190387843, -10.069711103726624, -9.843294499957844, -9.687923979432062, 10.763096722230484, 8.459944758835167, -8.107956443758688, -9.68635709022074, 10.646270079905522, -9.331839289880831, -10.386280317187135, -10.168690923186226, 11.916485171242442, -10.869807414364006, -10.199539271390504, 7.528469007541324, 11.658166379140459, -11.010769253522646, 9.972724844167443, 9.466315817601519, -8.338385850557863, -10.01792745206599, -9.035849496150185, 9.413980078568986, 9.72807617233164, 9.976766513129848, 11.585885434160447, -8.531540425049315, 8.991958862126873, 9.827346963686757, 9.534804172116148, 9.95306186900993, 9.637429620053567, 8.805700106217845, 8.402160370627664, 9.284760076118118, 10.57187939049603, -9.557958048587782, -8.51236879676442, -10.808173052980846, -10.483085659986283, 12.50851643426445, -9.972784764446715, -9.734848525464693, -10.802882102311928, 10.086636802845252, -9.176860307961277, 10.577561965215176, -10.846082640586506, -10.0493946266895, -9.917175315269082, -11.098171567656602, 10.266204246145291, -11.790376260057247, 9.585212393595981, -9.185485469105378, -9.4760744685096, 9.791909902051508, 8.68131005938234, -9.974934080425495, 9.942064799613147, -9.775661543461021, -9.6350493336403, 11.01840515212324, -9.249556364635662, -9.08552591632938, 10.052543872496297, 10.505863802669495, -9.932377250013301, 7.161592028128537, 10.810186067087876, -8.872672520862407, 9.074327271618342, 11.34325678173639, -8.98396243490883, 10.518131680988398, 10.30736992618344, 8.228821285223445, 10.354146496090493, -8.465217709643017, -11.301188386372413, 8.41150930334641, 10.502136925272191, 10.721395716998975, 9.802998387453282, -9.582397285753874, 9.132106951389881, -8.779786971152724, 10.899423294054445, 11.192827008120119, -9.582887644878939, -10.58210239658048, 8.629126926197015, -10.968255780611667, 9.103600363252001, 9.207470829370955, 10.164150249902521, -11.848285604821374, -9.050153582165457, 10.601860138430913, -8.811566325210034, -10.255426276819701, 11.089918791744172, -10.597683530086854, -9.309067426111906, 9.511270360106016, -8.491426635970203, 10.292385520246414, 8.970092571335133, 10.068106118210768, -11.085384166412494, 10.090516016538444, 12.040319943652037, 10.699781977183207, 9.612648577614848, -9.504043930421636, -10.53256498114472, 11.468664690677377, -8.262907309202655, 11.355154795160397, 9.568726578871138, 8.10690254554965, -9.987428282462028, 10.168307960099222, -9.134622618974095], \"y\": [10.164471280906607, -9.104105340936828, -10.175059421214575, -9.923102170594865, -9.351638599754546, 10.327745560683049, 9.101323842922545, -9.21141360795808, 9.57877636957019, -9.874309508314727, 9.020420416829676, 10.803838846654445, -10.127807238837347, -9.404905636348522, -10.568273739809927, 9.932310874579827, -11.617827157928966, 10.217630472280378, -7.698299463425773, 10.280059609007548, 11.722881961099397, -9.735119714558746, -10.453616603783347, -9.182319929153817, -9.447079906585852, 10.245937765829451, -8.244992517515266, 9.775578626736856, -10.536876382620253, 9.104899740091028, 10.496785764118025, -9.65005547711632, -9.033059960670215, -9.281979080347186, 9.480172671431113, -10.146928137333317, -10.705981607081407, -10.424336498082459, -9.150127325382027, -9.289792699983861, -8.6174635505015, 10.31956338267285, 9.432614448293291, -9.533176610191505, 10.052151013222758, 9.201407720902619, -8.467927068264109, 9.09060583070508, 11.643040426987064, 10.999828390730235, 10.015582947183772, -10.177470543458368, 9.840873471290685, -9.586870465615709, -10.303858924540169, 11.437675939747935, 10.883721109839742, 9.714371575187362, 10.161946717921788, 9.932441857366456, -9.512618973347381, -9.4074120797654, -10.920901813398554, 10.214968404756908, 10.235531948872202, 10.424289938308199, 11.073690212636217, 10.330238015035905, -10.313853746264824, -9.781669869192111, 11.203433255896783, 9.1806309067109, 10.900227590037733, -10.593361197426338, 10.034700793130387, -9.61186584886641, 7.735509321930868, 8.947004146527778, -10.614858421165236, -10.347864688619756, 10.669124176358302, -9.672430492841212, 9.683420690403516, -9.147793598669596, -10.263113005885131, 10.900561606727749, 8.775321951028483, -8.572239655172826, 10.866259086077822, 8.897781049771677, -9.676352603206864, 10.421569792332225, -10.449528286797781, -8.707583957100228, 10.381163991161024, -10.092570678568045, 10.105918228103322, -10.785672932620601, -9.659779850993491, -9.427903824926721, 9.894470087267916, 11.562222514535692, -10.988409529916833, -9.516636592399912, 10.358018508687856, -9.772288792952212, -10.128716976743963, -10.173988700335824, -8.989235041433666, -9.662684376251903, 10.482583399358255, -9.832292570039062, 9.811868205610807, 11.353293792195307, 7.913507804918928, -10.099399075520825, -9.747412460787737, -8.99464546506839, -10.379919272642061, -10.359159121049998, -10.203738467708174, -10.239277222335955, -10.646176897472868, 10.259808619166993, -8.406521351720928, 9.075620456458466, 9.385499881884728, -9.287599573529807, 8.67475335563408, -9.627964235858009, 10.356931572733338, -9.880696317204963, -9.17132615450023, -9.888004169908129, 9.307699165251272, -10.348915450128738, -10.304934102803127, -10.439492432352731, 10.970988479670837, 11.037300427931273, -9.813773187178562, -9.280651522340973, 11.499661446896026, -8.993680616161363, 10.208806809495702, 8.784536480444437, -10.191555178894989, 10.947173003125094, 8.692457200099417, -10.25179323256121, 11.044240940101455, -8.466537098142233, -8.972360734191453, -12.211482372836624, -10.53252002434859, 8.978175303571458, 9.528161019337334, -9.102641732118698, 10.383527418340961, 10.500916854530514, 10.339683372531162, -10.234533254954597, 10.984207225915904, 11.373205386320713, -10.299678109570912, -8.777832479828986, -9.928101090457432, 10.813183471161912, -8.878506738592083, -10.499712210491355, -10.078876979814689, -9.97369772176016, -9.33330302046869, 9.1466660635048, 9.753893640487313, 8.707241925496993, 9.808949957616113, 10.586896570472913, 10.464256778174125, 9.430790805646955, 9.091995961481539, 9.94895355430892, 10.640951398936489, -10.191525190665466, -10.640292309649574, 8.441384658452398, -10.033868411723748, -10.292571642934977, -10.713913247960905, 8.281720229255999, 10.309344022519584, 9.901988495976822, -10.050164170612156, 9.36521744681308, 9.772621484545015, 10.038482877779593, 9.973934196799902, 9.143261956534515, 10.176987554747697, 9.556502318310812, -9.875915361417771, -8.2484495235992, -10.123967100533863, -10.169400215930917, -8.792694399161723, -10.427814501874217, 9.918338979649663, -9.767362379298428, -10.73567884879533, 10.058125386220093, -10.915076121308271, -9.337084645587337, -8.464610659756941, -7.930609028998999, -9.258608105341178, -10.932937368581207, -9.727164032065174, -9.620319418409435, 10.9206143128289, -10.462094657735067, 8.694253092624248, 9.273503532985774, -10.086970355831854, -9.327801462980842, -9.503191008256653, 10.184411560396784, 9.957128847899178, 10.219688039571473, 10.110341919090613, 9.68530321811818, 10.267297405263934, -9.976921118715987, 10.05575173175237, -10.455332855572344, -9.804517320268515, 11.18943012347038, -10.22631926351087, 10.305121694147209, 10.25232607531044, 9.914901220801086, 10.33678810910246, 10.93502524896875, 11.24206273624307, -10.473296220959266, 9.524961706535505, 11.07414684914067, -10.47135768360522, 11.984633510909593, -10.233351275452113, -9.362856640122999, -10.110802351617878, 8.96784999743363, -8.713406982214456, -11.846853697990657, 9.458941744734933, -9.351210510313793, 10.927248829746025, 8.708148656387486, -9.697861276199385, -9.557509920125701, -9.551603414324262, -9.980504208539037, -9.836385180518434, -10.885680969881992, 10.047756340460918, 10.239965051054835, 11.008517980615334, 9.397593209514278, -9.853184886440305, -10.525424563113708, 9.927474340022089, -10.692671284480497, -10.650750569329357, -10.521073622846151, 9.948972502451607, 9.776727863411255, 10.598203010177334, -10.613942878475411, -8.679885303609058, 9.40595068595688, 10.80182117887407, -8.353997005523814, 9.086210901639694, 9.781846738137979, -9.526306130491733, -11.082842891597483, -10.116052886353454, -9.67599966094813, 8.410795545949664, -10.71964169067165, -10.222279467790532, -9.513252128276338, 10.35873551306206, 9.873476374004023, -10.537027387918489, 9.742166441262334, -10.08520078519725, -9.192810034862424, 9.69697009732408, 11.25829897704206, -9.62471292915461, 10.5684351500754, -9.739606319191964, 10.592390043313902, -10.914673399458415, 9.212072161821503, 10.346084861186183, -9.850298882990506, 9.758247601481413, 9.855532933265957, -10.990695790696838, -9.910510697463085, 8.394659518731677, -10.715476220759092, 10.417693906676519, -9.815372650521537, -10.388549082670439, 10.009505573463347, 10.935422365845426, 9.973386512966739, -10.807261411463804, -9.437422542757965, 10.130916562323929, 9.901552807162682, 10.791169359475964, -10.643050705625935, 8.922031742913076, 9.10274926698047, -8.74597957743377, -10.995091914859087, 9.833863404973252, -10.525638471285811, 9.76318686124922], \"z\": [10.149475762179543, -7.625774058320822, -9.438545795155145, -9.139863312372968, -10.56073956539626, -10.790377874452718, -10.734038641184487, -10.178892427777987, 11.845346325315965, -7.891884870444547, -10.999018234088446, 10.179800359841078, 10.219023514937636, 8.83587919493598, 10.419474894375622, 11.417373981211433, 12.15451938507514, 10.084985049364962, -7.6938299628075795, 10.326043294429624, 10.27905462290701, 9.63475834752103, -9.655180864979396, 9.48275347181023, 8.009883096324568, -10.910523297465264, -7.365308774063994, 9.808356140965738, 10.689202254181367, 9.47943994099404, -10.582932085779753, -10.472084558823688, -13.754424126547413, 8.76384638086913, 9.438216468234064, -10.713079634905812, -8.506731186064615, -10.046933814845103, 9.486115964404993, -9.925430548414708, -9.292971932377101, 10.536324078320659, 10.585272792159914, -9.527813437195908, 10.781202062634758, 9.67081269480447, 9.175687538775426, 10.641141810539398, 11.952939958039366, -9.516321676668687, 9.98909591672577, -9.134254013714532, -10.437940855721289, -9.357344358209746, -11.071357069951427, -9.68286473572451, 9.699726314853564, 8.909786759245659, 9.676473051385372, 11.047550493142367, 9.051104648425188, -9.340956111465907, -7.407127487151618, -8.879428308824771, 10.936084673441192, 10.326265892598647, 10.566524689773711, 10.068074900943522, 11.15334983434552, 9.79448199452296, 10.265849808125683, 8.405880259645889, 10.575107649824396, 11.130083563183033, 9.443873319274816, -9.61869552167453, -9.64881442262105, 10.169449699505101, -8.379557576849697, -10.465159253669839, -10.069672676658698, -10.283033793799738, 10.63624949652117, -9.950197047456816, 10.656310295878633, 10.772025622820573, 10.962360934061804, -10.017394783719569, 9.530639679390884, 9.445272940588218, -8.901095720704204, -11.435911832369765, -10.381987311903465, 9.884872703754237, 10.069361334352225, -9.278637488828853, 9.660795800019411, -9.78841577422147, -10.0545457370059, 9.640577380225949, 9.417540405100805, 10.485076698873936, -11.288690045000445, -9.514397052744235, 9.548879607599485, -8.991848641870506, -10.02963366195571, -10.284030873586394, 8.55781777891497, 9.115398540921845, -10.208345963157178, -10.52500467253066, 10.887474637503972, -9.541214596106736, 9.320518417795705, -9.567846362947574, -10.06553021014846, -8.219797279276111, -11.577899210708974, -9.31603301693281, -8.184772789778057, -9.60016825906106, 9.921753105688857, 8.985516246561351, -8.784262290503577, 10.075073381742888, -11.170214727363708, -12.442233005189097, -10.30832858287312, -10.309024072436701, 9.063782562852486, 10.448220410466904, -8.287443862806366, 10.239838889520861, -10.179667407916448, 8.750693950647994, 10.011238083907818, -10.93910098243934, 10.502045184107272, 10.273814948913369, -12.098997716896678, 8.447476761032268, 11.307169772970406, 9.157519794916897, 9.515327536174821, 9.808627080346895, -9.779753560473933, 10.169285573074758, 9.157160922239596, -9.484037125992703, 10.360014700446396, -8.786348767765263, -12.391038661821781, 12.189655280648285, -9.16324408519327, 9.315837453900635, 9.534830539357417, -8.310797434848384, 11.103041581419413, -10.76713513761191, 8.883313014942733, -10.042760621658672, 10.06156242893008, 10.849801810909327, -9.632513905003789, 8.376654858622821, 10.459321609881833, -8.610719423988959, -9.12775178632965, -9.980382566891388, -10.627388412441551, -8.568012543571088, -10.162332955722563, 10.369600717442017, 8.773509337283292, -12.191186992247204, 9.391025033744153, -10.256742742295554, 11.479027063181888, 10.449193991830038, 11.132499111268986, -9.85973462880913, 10.80494651444774, 10.687743006384057, -11.024443881873562, 9.467882400177293, -11.291432853535664, 10.826669313343396, -11.879370557532543, -10.963857570212392, 10.353001345223971, 9.871353564543927, -11.303510773087286, 9.413394957599516, -10.83182865463167, 10.190663861760564, 9.641913891870647, 10.103959112988242, 10.606605048967388, 9.650869195859133, 9.123640759141018, 8.480705206192003, -11.184095820908828, -9.836994878889525, -9.06562106374851, -8.648369234624678, 8.708474345874247, 10.501265358450265, 10.45424067070228, 10.255880514333855, -8.624673662949851, -10.77585091279207, 8.68995532871114, -7.7414206198296425, -12.789927416194782, -8.262571418012548, 10.129091968488234, -11.207152546172102, -10.955452033743342, -7.559279726485014, 9.10902388699444, -12.387033965893526, -9.510850526877581, -7.397423489230208, -10.105939773732343, 9.87542663874191, 10.476933102239245, 11.306507253395012, -10.351480829795236, 9.731472631360019, -9.409643598732831, 9.643591078557678, 11.20506669311404, -10.602583599143724, -11.216964714494033, -7.635098453181827, -9.27336103172918, 8.349580484315014, 10.712257195477273, 10.974141735709493, 9.242242592586704, 9.659379232412324, 9.381196478543846, 10.120875700603708, 10.393634840369598, -10.894189626129084, -9.268142836813913, 10.408900301392345, -9.077732416040998, -10.748158957911938, -9.27210975147709, 9.029538959726889, -11.648619970762747, 12.200509784261055, 10.348049735520016, 8.978952702786202, -9.314631766215879, 8.833074171151788, -10.55476501153795, -8.97197465701041, 10.093230806484023, -8.378600106948914, -9.71261108780674, -9.41910942501168, -10.976277985428593, 9.454314132002125, 9.871103387246341, 9.65364421373217, 10.655267244328218, -9.42222903258188, -11.778867597374882, -11.702796078014886, -8.814197310272414, -9.47355176333248, 10.180446474924565, 8.812782391652853, 10.016990422383438, -9.07149804981515, -9.382491777634735, -9.46854275868303, 9.217433517005441, 8.536501577464755, 9.871396835276746, 8.746658333420017, -10.15366193242371, 10.725070838237423, 9.195501935327645, -10.5971611174536, -12.662241933271554, -9.486505657556059, -10.331332395554748, 9.069952915398268, 8.33447004078491, 10.159184374901136, -9.310487154541683, -8.710014130278354, 10.606024587948193, 8.183903615991568, -11.246700503953523, 11.024007159115104, 10.956946285997807, -10.211565004697842, -9.80399133739304, 10.025178934887597, 10.439262796733287, -11.307823662285237, 9.960474763654284, 8.973909759943274, -10.182532086907244, 8.790685590086158, -11.307951093323307, -9.611204393519554, 9.81250863140027, 9.77913015544727, 10.33930257676728, -9.743678134075381, 11.480052270921954, 9.475919020583076, -10.084537973320492, 9.826418090936324, -11.838233830103707, -10.376384181783617, 11.208648996702555, 9.988178707444602, 10.944270640659433, -11.294085186788669, 9.767430437101577, 9.26887025723384, -8.694240647289664, -9.787108105666992, -10.049112077387337, 11.148271332826745, 9.332844327369607]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 2\", \"marker\": {\"color\": \"rgb(44, 160, 44)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 2\", \"scene\": \"scene\", \"showlegend\": true, \"text\": [\"Complementary_64_2\", \"example_4\", \"redundancy_32_2\", \"mutual_error_2_2\", \"Complementary_79_2\", \"Complementary_8_2\", \"Complementary_7_2\", \"redundancy_54_2\", \"Complementary_29_2\", \"example_34\", \"example_35\", \"mutual_error_25_2\", \"redundancy_6_2\", \"example_47\", \"Complementary_5_2\", \"example_53\", \"mutual_error_11_2\", \"redundancy_20_2\", \"redundancy_31_2\", \"example_71\", \"example_80\", \"Complementary_85_2\", \"redundancy_15_2\", \"example_91\", \"redundancy_37_2\", \"redundancy_50_2\", \"example_99\", \"example_102\", \"redundancy_14_2\", \"Complementary_34_2\", \"example_106\", \"Complementary_26_2\", \"example_119\", \"example_121\", \"example_122\", \"example_123\", \"Complementary_21_2\", \"Complementary_86_2\", \"example_130\", \"example_134\", \"example_138\", \"example_143\", \"Complementary_39_2\", \"Complementary_95_2\", \"example_150\", \"mutual_error_7_2\", \"Complementary_27_2\", \"redundancy_59_2\", \"redundancy_9_2\", \"Complementary_93_2\", \"example_166\", \"example_170\", \"example_183\", \"redundancy_55_2\", \"example_187\", \"redundancy_1_2\", \"example_191\", \"redundancy_16_2\", \"Complementary_30_2\", \"Complementary_80_2\", \"Complementary_25_2\", \"Complementary_73_2\", \"redundancy_41_2\", \"example_207\", \"example_214\", \"example_216\", \"example_217\", \"Complementary_67_2\", \"Complementary_51_2\", \"example_230\", \"Complementary_75_2\", \"Complementary_69_2\", \"redundancy_46_2\", \"redundancy_7_2\", \"Complementary_96_2\", \"example_243\", \"Complementary_59_2\", \"example_251\", \"example_252\", \"example_253\", \"example_258\", \"redundancy_3_2\", \"redundancy_28_2\", \"example_269\", \"Complementary_6_2\", \"Complementary_84_2\", \"example_276\", \"Complementary_66_2\", \"example_282\", \"example_288\", \"Complementary_88_2\", \"example_295\", \"mutual_error_31_2\", \"Complementary_87_2\", \"example_308\", \"example_313\", \"example_315\", \"example_317\", \"example_325\", \"example_330\", \"example_337\", \"example_339\", \"example_343\", \"Complementary_52_2\", \"example_347\", \"mutual_error_23_2\", \"example_358\", \"example_366\", \"redundancy_62_2\", \"mutual_error_29_2\", \"redundancy_22_2\", \"Complementary_20_2\", \"example_379\", \"redundancy_52_2\", \"Complementary_56_2\", \"mutual_error_28_2\", \"example_387\", \"example_389\", \"redundancy_40_2\", \"mutual_error_32_2\", \"example_397\", \"Complementary_40_2\", \"mutual_error_10_2\", \"example_402\", \"Complementary_24_2\", \"example_406\", \"Complementary_58_2\", \"example_413\", \"redundancy_63_2\", \"Complementary_2_2\", \"example_418\", \"example_419\", \"Complementary_32_2\", \"mutual_error_18_2\", \"example_435\", \"redundancy_53_2\", \"redundancy_0_2\", \"example_452\", \"example_454\", \"example_455\", \"example_458\", \"example_459\", \"redundancy_64_2\", \"Complementary_28_2\", \"mutual_error_22_2\", \"Complementary_9_2\", \"example_471\", \"example_472\", \"redundancy_30_2\", \"Complementary_48_2\", \"Complementary_60_2\", \"example_484\", \"mutual_error_24_2\", \"Complementary_12_2\", \"redundancy_18_2\", \"redundancy_60_2\", \"example_496\", \"example_498\", \"redundancy_36_2\", \"example_504\", \"example_505\", \"redundancy_57_2\", \"example_509\", \"Complementary_14_2\", \"example_520\", \"example_524\", \"Complementary_82_2\", \"mutual_error_20_2\", \"Complementary_61_2\", \"example_553\", \"Complementary_18_2\", \"Complementary_33_2\", \"Complementary_4_2\", \"example_561\", \"redundancy_65_2\", \"Complementary_68_2\", \"example_564\", \"example_565\", \"Complementary_37_2\", \"redundancy_38_2\", \"redundancy_39_2\", \"redundancy_47_2\", \"example_577\", \"mutual_error_13_2\", \"mutual_error_26_2\", \"Complementary_74_2\", \"example_607\", \"example_608\", \"example_609\", \"Complementary_0_2\", \"example_612\", \"example_614\", \"example_619\", \"Complementary_16_2\", \"redundancy_49_2\", \"example_627\", \"example_632\", \"Complementary_57_2\", \"Complementary_78_2\", \"Complementary_19_2\", \"Complementary_47_2\", \"Complementary_53_2\", \"Complementary_98_2\", \"Complementary_10_2\", \"Complementary_81_2\", \"example_648\", \"Complementary_17_2\", \"Complementary_72_2\", \"example_658\", \"mutual_error_8_2\", \"redundancy_21_2\", \"example_663\", \"Complementary_1_2\", \"example_672\", \"example_674\", \"example_676\", \"redundancy_24_2\", \"example_683\", \"example_686\", \"example_690\", \"Complementary_62_2\", \"example_698\", \"example_699\", \"redundancy_56_2\", \"example_701\", \"example_702\", \"example_708\", \"redundancy_11_2\", \"Complementary_97_2\", \"Complementary_42_2\", \"example_724\", \"example_725\", \"example_726\", \"redundancy_35_2\", \"Complementary_49_2\", \"mutual_error_21_2\", \"example_735\", \"example_738\", \"Complementary_44_2\", \"mutual_error_17_2\", \"example_745\", \"redundancy_5_2\", \"redundancy_58_2\", \"example_749\", \"Complementary_22_2\", \"mutual_error_19_2\", \"example_761\", \"example_763\", \"Complementary_36_2\", \"example_766\", \"example_767\", \"Complementary_71_2\", \"Complementary_15_2\", \"example_771\", \"example_772\", \"Complementary_76_2\", \"example_776\", \"mutual_error_27_2\", \"Complementary_38_2\", \"example_783\", \"example_784\", \"mutual_error_15_2\", \"Complementary_77_2\", \"example_791\", \"example_794\", \"redundancy_19_2\", \"Complementary_70_2\", \"Complementary_13_2\", \"Complementary_11_2\", \"Complementary_63_2\", \"redundancy_61_2\", \"Complementary_45_2\", \"example_815\", \"example_818\", \"redundancy_26_2\", \"mutual_error_9_2\", \"Complementary_35_2\", \"example_838\", \"mutual_error_14_2\", \"Complementary_83_2\", \"example_841\", \"mutual_error_6_2\", \"mutual_error_4_2\", \"redundancy_17_2\", \"Complementary_54_2\", \"Complementary_90_2\", \"redundancy_2_2\", \"Complementary_31_2\", \"redundancy_4_2\", \"Complementary_23_2\", \"Complementary_50_2\", \"Complementary_46_2\", \"example_871\", \"example_873\", \"redundancy_51_2\", \"example_875\", \"example_877\", \"Complementary_89_2\", \"example_879\", \"Complementary_41_2\", \"example_888\", \"example_889\", \"example_890\", \"Complementary_3_2\", \"Complementary_65_2\", \"redundancy_33_2\", \"example_905\", \"Complementary_43_2\", \"example_914\", \"example_918\", \"example_921\", \"example_927\", \"example_928\", \"example_930\", \"mutual_error_5_2\", \"example_942\", \"redundancy_45_2\", \"example_944\", \"example_952\", \"example_955\", \"mutual_error_30_2\", \"Complementary_55_2\", \"example_961\", \"example_971\", \"Complementary_94_2\", \"Complementary_92_2\", \"redundancy_29_2\", \"mutual_error_12_2\", \"redundancy_10_2\", \"redundancy_34_2\", \"mutual_error_16_2\", \"Complementary_91_2\", \"example_995\"], \"type\": \"scatter3d\", \"x\": [9.943541709685444, -10.258673430292879, -8.625923975822245, 10.498437196095338, -11.949101699227047, -10.568483987916386, -10.485428636587447, -10.544109698371713, 10.616241686937872, 9.04114708820485, -10.18273032698746, 9.903934902405624, 8.714122961158875, -9.648977201146403, 9.486952815618976, 10.053301542907487, 9.880978065477448, -10.36053236822578, -10.989521501360919, -9.772583893030713, -8.9075047382102, -8.665952701378346, 9.49536959968615, 9.388086105550805, -9.156594100638914, -9.809325091949955, -9.456750308639009, 11.450000941729945, -8.358201656368212, -10.215228357242676, 9.886338783196232, -9.759889326502856, 9.95946252690397, -9.058799290144375, -9.291833959401139, 10.739171582529252, -10.198777350688498, -8.480670841134632, 11.567586796151408, -10.42573338992485, 12.203726596769767, -7.910581578717371, -9.19153935809946, 9.34328700070143, -9.296194051867735, -9.659608240017361, -10.975639184446129, 8.929290841705416, 9.480543075510617, -12.844393987467425, 9.90816173514918, 11.4041122364131, 9.981553232407833, 9.477217821341274, -11.842471031516471, -9.803114066367387, 9.950243169722244, -10.300545848055297, 10.309712447703012, 9.462039355677861, 10.65989193003823, -7.48917558290827, -11.134849010986668, 9.411557736983628, -10.90456848809998, 11.111113145671416, 11.547399367556492, 10.12058478179946, -10.032545257730535, -9.181765167849736, -10.463731006274598, -9.135500936335404, -4.4458433605006595, -8.185672880727108, -10.66021686410598, -9.59928790228302, 8.30080790248132, 9.216249880245904, -9.00548736055067, 6.411813987235454, 9.741010293432648, 11.085592252195992, -11.130537142078014, -9.696224975005423, -9.502707474686872, -9.523771472792868, -12.020850691225684, -9.001269660654172, 10.579791355256535, -9.090549514483651, -11.55724117156434, 9.282719773923038, -10.882213763846963, -9.50063322949754, 10.783089908349062, -9.742066624847661, -11.161617608513541, -7.561112066327409, 8.194280214639507, 11.248528620758723, 9.680430322228036, 9.860064521837744, 9.879465159154485, -10.014876599143903, 11.244042520411995, -11.901710625087857, -9.186426896975831, -7.383362689826887, 10.677099428199943, -10.290913615993055, -11.983939056312574, -9.686673831723787, -9.168051503551629, 11.381723047725368, -8.577798856349068, 9.773519366728893, 9.60549224443307, -9.091606940871426, 12.017018025807856, -10.675975271342626, -8.85918687906892, -10.909037843070873, 9.957596787912935, -9.3518554500943, 9.930523535754801, -10.07426624385998, 9.443610111120329, -10.31929102453595, -8.686461926941357, -9.578457254654952, -12.37784182385077, 10.66536104861247, 9.53133758851955, -10.723806874742106, -10.052740702570695, 10.231054706984612, -11.317864918135315, -9.151421653131383, -10.312257218316965, 8.796922434258557, 10.66141050735977, -8.2365578470459, 9.543360169736165, -8.258953880784173, -10.228373660864944, -10.346528529033552, -9.922132152607945, -10.385747317623046, 11.317192058858303, 9.607438795814465, -10.791954928136239, -8.59696286517149, 9.962520624304153, -9.935154897675611, -13.229604891631222, -8.248404268505107, 10.527734105629674, 11.020670298962497, 9.135827425220771, 7.718662160088202, -11.453886449389667, 10.36623621268776, 10.359359779873841, -11.619647643866918, 10.150090905510659, 10.290005866824103, -10.699294593196145, -9.539313733173502, -8.74031059650063, -11.377787184298619, 10.143478323135758, 9.462476730409492, -10.256859481265277, -10.437088085590158, -8.814840216656286, 11.075644487240304, -7.5286686738402215, -9.85608108158269, 9.831275175142997, 11.290033115916538, 11.173669295478282, -10.343593352219045, -11.437296988195342, 9.910490425423136, -10.214534283374416, 10.859627387537662, -13.008156982978747, 9.170136835758349, -10.606384919377383, -8.909952493799716, -11.759224391745747, 8.712600198526598, -12.72455224587983, -9.97152228774042, 10.380468165049994, 9.306398837592347, -9.847686216426712, 10.670957807414803, -8.959332600376559, 10.875384883666518, -10.54949534090203, 9.664657055701792, 10.819324295320259, 8.981522301953333, -7.584498039222124, 8.205600671202939, -8.655014986164776, 9.788564447727918, 9.256142842968266, 9.62055797715438, -9.846694488689433, 9.878895259389822, 10.527447197568154, -8.43436709041625, 12.967291179358629, -11.280379151988281, 10.849564141872738, 7.79501892274836, 9.519766846526371, -10.592691930938015, -7.845825586202506, 11.07744973747916, -10.062452588029478, 8.925221102472275, 10.671225435886804, 9.168879648401106, -12.073734419926957, -11.163193324281803, -9.672042143125571, 8.866663010132761, -12.791051297764715, -12.308359746993167, -11.700489836777871, 8.092215427848963, -9.865583798301579, 8.892158439584316, -8.114310190422035, -11.346879585239824, -11.181071536522083, 8.8261987277762, -9.945814362459144, 8.905791293196316, 10.88294527997039, 12.19828592918689, -9.938618693023438, -8.947207325702111, -9.143865437523132, -9.591581906262048, -11.530171679049774, 11.07850905638301, -7.54146450599157, -7.069008316125503, 8.94955983764246, 10.353439170126341, -9.64652714663671, 8.682991259915864, 9.51034890955221, -11.409067626782084, 11.266097407815865, 9.921068430136218, 8.867682647024393, 8.869852453612655, -9.94261472429938, -8.741084193689858, 12.312760578208279, -10.014737252643235, -11.527941312507355, -9.37441206967528, -10.039154212635983, -10.223306584459785, 9.986944014352137, 10.6057720690914, 9.672625116239333, -10.836901194185677, 11.112988891464322, 9.28088208063835, 11.77846023551302, -8.752039912997189, -8.13164896291008, 10.220653115207943, -10.679647964021097, 9.029604831913932, -11.172729848791322, -8.919436318526422, 10.482647438044319, -12.763896217784858, 10.385671512044397, 10.85381165488771, -9.550169960784682, -11.483706944936964, 11.004837888975887, 10.143628637260374, 8.142229212007534, -10.896270799947148, 9.571544603600483, 12.673588696897614, -10.448429514697978, 10.900554907222233, -11.084947907809724, 11.224596671737972, 9.566374575805675, -8.959484583353497, -10.115652218541843, 9.5452369971285, -8.994791424394103, -12.451642225805664, 10.259425621048864, -9.619554550338604, 10.2426971475919, -10.657874861693141, -8.370601706633863, 10.135627278892382, 9.888233516877877, 8.114194844823794, 9.699470680464204, -9.975141499747966, 11.272854864091043, -9.584691736373488, -10.659815802349284, -11.032994211322945, -10.28621361548159, -9.262103147567839, -9.754122822329386, 11.110253696886357, 10.60515497866242, 11.574286266570702, -11.196578374692141, 9.282471786622338, 9.598245394407027, 9.49026511678323, 10.638892804069707, 8.73334804506938, 9.8277631349391], \"y\": [9.886893227022442, 10.773651621037954, -10.629589330084983, -10.92932131183356, -10.680932212434232, -9.476904388513178, -10.308512628925278, -9.144755177175787, 9.609244313587205, 10.60750777345438, 10.750722942310249, -9.531412240232113, 10.853858090276079, 10.343675393609251, 10.35862307273032, -10.431726998779165, -10.754633153582468, -9.50085471742716, -9.87992210273878, -9.655085286808967, 9.127943975911931, -10.215482430621542, 10.211339620939565, -9.815258858189521, -9.643609287447903, -9.6176741501513, -10.582846836016529, 9.085574283685428, -9.54791497008529, -10.234454812202708, -10.033266925750528, -10.823415701281435, -8.54866017391296, -10.011729700867217, -10.10359246828548, -9.430242103523925, -9.158185590793822, 9.981918961855518, 8.771563774478134, 10.166528304933205, -10.680019098605788, 8.849594979338697, 8.466152070093596, 10.21777673824989, -10.249260899767402, 10.26362379519091, 9.030149675107173, 10.759701834215331, 10.497261117722003, -10.114859918879302, 10.063819152881726, -10.832833633792916, 10.101515295216664, 10.26712809499519, 10.787270417984397, -9.838346735464192, 10.193409627505442, -9.848608826668707, -9.354594559228747, 10.353784300599608, -9.363959053060096, 10.045201891858381, -10.718070917339519, 10.66006344152859, -9.748848326283738, -11.985941345815505, -9.994467405029816, 9.975851907463555, 8.911483542369862, 9.21185605311914, 9.48258081716125, 10.815446933117709, -9.93514546102687, -9.632375760272842, 10.532197049615151, 9.021075606893232, 11.369317079192278, -9.59790623745828, -9.603293628560552, -8.435881890938107, 10.198179657331908, 9.060993372240121, -10.51543673074876, 9.703903380684709, 10.452215759701318, 11.629302873152168, -9.908056753299563, -9.022754151507431, 9.484802397575528, -10.015406621033007, -10.338922115326856, 10.543174033194617, 9.164000334711371, 9.009924312478201, 9.599395007981435, 10.000774100392565, 9.500074976072806, -9.916113959608696, -9.503592324865076, -10.307467794667264, -9.913816111069732, -10.13374194911141, 9.907807405208727, -10.08792418644806, 9.086839766711034, 11.731240444842413, -9.7248102938021, -9.350110415094843, 9.556344878249003, 9.797217244535231, -9.86900909249255, -10.235642768072672, 9.39809158946556, 9.12142071248952, -10.256923588612018, -10.62011703730812, -9.311422664353453, -9.90979724997251, 8.792369252794005, 9.431406504485047, -10.328199156856005, -10.191789615020197, -9.493067473323638, -10.304884854135482, 10.014447176903724, -9.683753795840586, 10.228021929857084, 11.249014895154616, -9.553890143708397, 10.594033450756784, -10.014023275154209, -9.774022485828867, -11.190458777238685, 7.628273273444094, 10.75559382457884, 9.92263368118755, -9.441469160880107, 9.198935435222136, 10.181108522507976, 10.96194984221889, -8.898588006020017, 8.015855873975827, 10.436302790792606, 10.514223623986327, 10.281282808922928, 10.701339895015979, -9.663090382585048, 10.13129176955149, 8.976757229955966, -8.337437066587317, 10.905137030161622, -9.857583874178598, -10.217538736075248, 9.11396026075059, -10.106134127174741, -10.444020183354139, 9.626881771058395, 9.066829149387987, 10.559172149696826, -10.856354416637645, 11.631088680408391, 9.699552688092158, 9.757607552349832, 10.099221639504407, 9.926371782186713, -10.032484630978027, 12.259927493526177, 9.930850450808341, 10.90066185288903, -9.343413224842452, 9.776453341769873, -11.17599631030519, -10.609976085921776, 9.857096102262403, -10.584593633342305, 9.45382908356168, -9.586041597489363, -10.37642541256824, -9.35067191875219, 8.961332045644607, 9.452283710474658, -9.787717217589547, 12.07183555186472, -9.423941090123126, 10.094863363242014, -9.477679783605254, -10.168521990058544, -9.956223632821992, 10.681053357964636, -9.956458565643475, -10.280128333052705, 10.828671919068112, -10.68125723568371, -9.78032225813347, 9.706439679030995, -9.23545343613396, -10.299516500607895, -11.138141527988394, -10.18077331806936, -10.182842783370566, -9.453873935214931, 10.25025942653784, -10.177151430779775, -9.298346478192295, -9.718973759022358, 11.270987710741142, -9.56863086333563, -10.46796454898012, 10.444016774162026, -9.040564268384262, -10.495250331634455, 9.98458090655537, -8.768346748909934, -9.610226875790692, -10.422110113962448, 10.594518768854712, 9.375634631922953, 11.373244713735525, 10.156125588676431, -9.845304401270704, 9.619906272560826, 9.10129297118627, -9.530089209813154, 10.91494666534488, -9.563901970174761, 10.667760419536297, -9.783088198208835, -10.656207035801295, 10.02863029460755, -9.084856037046436, 11.808887392032265, -10.024871055219178, 10.566943282734325, 11.371312694601682, -10.195646529582739, -10.138378805609007, -9.700335018032616, 11.811947519948383, 11.405714578844513, -9.829609772870214, -9.736494145592584, 10.877567657070832, 9.374127167910826, 8.576361978071978, -9.57898604637961, 10.595645888355538, 8.137491718953779, 9.849600055586832, -10.676057960845123, -11.549064333823885, -9.79167080164317, -9.636700577663056, 10.732159646230485, -10.04359773391948, -9.882021770355509, 10.909319280232907, -9.863074723143644, 11.240230332320806, -9.565672535112506, 10.19477733753517, -9.364796509945515, -11.819028783371435, -9.691982518080652, 9.114150388536533, -9.318488614441023, -9.435480074538045, -9.606439971442269, -10.457319591995379, -9.919973995820703, -9.366921154616373, 9.84725805961535, 9.644857693180498, 10.403859609566457, -10.454667302639855, 9.345067132697976, -10.741973474531115, 8.748006735748808, 8.56556023848776, 10.457371157284047, 9.638757550781452, -9.448692247747191, -11.541061691388474, 9.468052051621163, -9.441372909469706, -9.16323271007058, -10.556025051751593, 9.917771936416827, -9.221995239024546, -10.404888212288805, 10.2548252840017, -9.775430721371386, -10.089927514158523, -10.138098291642656, 10.375687519609738, 10.570396119451638, 8.210784367076931, -9.94858067447323, -9.858335523965899, -9.87246006966977, 9.165082301649349, 9.980946794708817, -9.759477013874085, -9.64326937207056, 10.129668029307982, 7.696017543967889, -10.654488988038832, 9.878991479554797, 10.548445892525415, 9.933624764214345, -10.967174721863016, 9.662834147898455, 9.676920819862158, 9.984855044333376, -11.118218393397802, -9.834860249596181, -10.661014696338022, 9.172839315810743, -9.929493410079102, -9.374971445658796, 10.972672018806284, 10.812307105305127, 10.511385388874867, -9.323410510023045, -11.216436794394207, 9.616154422534857, -10.336180761083039, -10.457914763147327, -11.011077598298934, 10.24173676105599, 10.432189323833505, -8.890571905547665, -9.830676399891317, 10.103580177512587], \"z\": [11.134264672335316, 9.852843424323213, -10.041529039381238, 10.463426549165197, -8.554944330885958, -11.129482375668326, -8.203333398700822, -10.568760429541717, 9.437390416477374, 10.680119314125768, 10.852494701076507, 9.24130961069817, 10.708856659799272, 10.512760895168046, 10.106252576387794, -11.085406475381902, 10.563518888250185, -10.37082796620628, -10.33539671867577, -11.21527582676156, 9.311848176242808, -9.165701942676268, 11.300119737675065, -9.691509878128507, -12.200662089437115, -9.992091495934288, -9.476700473128643, 9.123193526085519, -11.736351177125973, -8.63384407628417, -9.693316467474789, -10.008607315930869, -9.07527781643782, -9.838119064469684, -10.765634151449229, -10.008920626795092, -11.011779389868712, -9.035213194446028, 10.640948269092327, 10.365357675526521, -11.802973309284974, 9.205593293775534, -11.756129114921768, 11.870999612724109, -9.730586973970773, -10.19009800647638, -11.734746822914682, 10.256492925033129, 9.129224659199725, -8.122414507022684, 9.882407336336339, -11.56055321817371, 9.303881281618628, 10.637757635358245, 9.595110590252904, -11.47287102714887, 8.803456002639999, -11.305504845936646, 9.211449661154695, 10.15056744139987, 9.244884524170272, -8.622868169789937, -8.143506405510069, 8.532000545667646, -10.501565678532614, -12.619415204239276, -10.988366100218613, 9.54728273183063, -10.450173829645184, 9.85360187388049, -10.074492949826036, -8.385361170241316, -12.056307591018868, -11.148060497364925, 10.334282133200604, 9.621713655005815, 9.286110565006235, -9.046208201535482, -11.493790557429243, -6.1757250204357454, 9.859590694485885, 11.100901163498198, -8.711601393405388, 9.87572025931899, -8.998267257885837, -9.524611315031702, -9.30675667505701, -13.73310630574944, 10.578049082851997, -10.504129591858577, -7.228021418945616, 9.830491414839239, -9.36957502708723, 9.576053896218253, 8.860353063678302, 10.789161708931648, 9.119796052402986, -11.684077813820727, -8.681688696592204, -11.598089638320632, -9.720824833166688, -9.769328025072658, 11.500695751877352, -9.93288882949131, 9.952557861879738, -9.527543777412866, -10.654667988092585, -12.194660581853508, 9.564365691860218, -9.447246574189478, -9.450908309295, -9.224437495066416, 9.884874035519717, 9.026415864363742, -9.19837672341817, 10.734940785866735, -9.1704280606971, -10.10552930116827, 8.097452972598235, -9.662572109031634, -10.181631289668342, -9.583683310981426, 9.912843371352764, -10.072772362002093, 10.328572639916743, -10.609984189278547, 11.119358424701105, 11.107690865590863, -11.840348810097696, -9.857077695531357, -9.68284191833003, -10.232600169839529, 11.975778685102673, -12.806658853674692, 11.22773695344374, 9.184697593144666, -9.921010289007532, 9.028267519185757, 10.085840978763107, 9.505375813582475, -9.014421282250668, 9.57617843003726, 9.211343674951403, -9.394995002612685, -9.345213944365197, -11.180190874781186, -10.957858676695645, 8.955953904183094, 10.67586991992589, 7.769919864653933, -9.72742752890503, -10.279574755832702, 11.32902232044281, -11.755063430398948, -8.344369216425296, -10.02644511379405, 9.900283848053494, 11.493195016663115, 10.583947194475718, -9.358433883138433, 10.686344901540338, 10.045541011585293, 9.830015595411897, -11.544231384612637, 9.722056106993456, -10.603605788033924, -9.439329963559508, -10.713018816881698, -9.632167480322757, -10.200877381782238, 10.703320106695436, 10.657236957119995, -8.373507523803628, 10.008324715901423, -9.76176836300644, 8.098911528499949, -11.267032424642657, -9.545011377355003, 9.653550737519064, 10.664854229735177, 7.756074320369326, -10.590387454024576, 10.039745648545798, 9.606679407091114, -10.499833585541204, 9.573075707962722, -7.612403036402938, -8.926790821822383, 9.622635235769545, -9.229802460808076, -8.090720694537413, 11.028177302734425, -6.737963214569566, -10.680420976223104, 10.059809453177273, -9.494158187949202, -10.701634104019426, 10.561294840228184, -9.506629259627951, 9.784731317634183, -10.891232025980909, 9.911908964963786, -10.833829559226377, 9.12949555721316, -10.912112013907532, 10.35060381679225, -13.320653294795921, 11.121893281341517, 10.918751015776497, 8.45003673208447, -9.139687299930717, 10.676317860754459, 8.010009222944104, -12.096869231098818, -12.095280479470755, 10.383583298075461, 9.835999987925721, 12.000499956377404, 11.560738328077445, -9.197399391608963, -9.951633810245838, 10.637155032732728, -11.437203934259085, 8.81194596522117, -9.421593378109085, 9.742952530068106, -8.489576301483751, -7.833164802146369, 11.016525538841103, 8.718583468899283, 10.172670544732782, -8.792305328323065, 9.935652709278086, 10.373556551642174, -10.49653016266789, 9.60616643887641, -11.094481721506767, 10.879818065068081, -9.848813815886317, 9.29429864174915, -10.639290846168628, 9.460083597830028, 9.841473674850477, 8.599003090885033, -11.404820164083755, -9.407137365715943, 9.124022238121803, 9.41171185857959, -8.551570933308733, -12.150726734683857, -10.319464681643376, -12.953048216108026, 10.425099194881327, -10.105162654838699, -9.937986544155816, 10.36331117829913, -8.903973229572086, -10.55184680576174, 9.289618690708014, 9.127362721504234, -8.779486129015138, 11.835617581094589, -10.122407138049446, 10.550967668545892, -10.544337513846221, -10.999457139454432, -10.217238978354775, -9.273199840276662, -11.016841201216002, -11.1698761576848, 11.167516499331306, 9.367674950355974, 9.100356457449077, -9.295523443175176, 8.807767162251315, 10.864778329375858, 9.762752539491188, 8.965630007859824, -8.414566028129338, 11.763424515850577, -10.648967614178057, 10.325627608522714, -12.006823983263937, -11.032905695103823, 7.875355978931259, -7.872987374040557, 8.557078125255877, 9.890897193959669, -10.28435753600134, -10.475033177427358, 9.483873421238133, 9.947919718785567, -9.264259204398924, 9.873526527385298, 8.127000270071488, 8.389059148072546, -10.895680868870553, -10.382640628865277, -9.395302232740342, 9.814085385807294, 12.582735790931647, -9.497992301641332, -10.039165505360259, 11.421793936583319, -11.67074914432345, -8.31027365502481, 9.519758512892825, -8.071444252740665, 9.188803029414686, -8.004772044376526, 9.160362137335046, 11.677643450807432, 10.79582576356283, -9.338248290768874, 10.859458472390237, -9.105542360478184, 9.007882679044494, -11.289027225317689, -10.629720184289466, 10.435050628080758, -9.946808984708365, -8.711619620589921, -11.294483794743602, -11.703103208010667, 9.739141307271156, -11.151981599907982, -8.121055009946007, 11.671249057897967, 10.342526449988778, 9.430432555792846, 7.447090681185524, -9.113207565300755, 10.334691697174396]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 0\", \"marker\": {\"color\": \"rgb(31, 119, 180)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 0\", \"scene\": \"scene2\", \"showlegend\": false, \"text\": [\"example_2\", \"redundancy_40_0\", \"Complementary_79_0\", \"mutual_error_24_0\", \"example_9\", \"example_10\", \"example_23\", \"redundancy_18_0\", \"example_29\", \"example_30\", \"mutual_error_6_0\", \"example_33\", \"example_39\", \"Complementary_53_0\", \"Complementary_70_0\", \"mutual_error_28_0\", \"redundancy_62_0\", \"Complementary_98_0\", \"example_60\", \"Complementary_42_0\", \"Complementary_89_0\", \"example_66\", \"mutual_error_27_0\", \"example_70\", \"example_72\", \"example_76\", \"Complementary_78_0\", \"mutual_error_16_0\", \"redundancy_25_0\", \"example_81\", \"example_82\", \"Complementary_22_0\", \"example_86\", \"example_88\", \"example_96\", \"mutual_error_9_0\", \"example_101\", \"Complementary_10_0\", \"Complementary_81_0\", \"example_110\", \"example_118\", \"Complementary_58_0\", \"redundancy_8_0\", \"Complementary_74_0\", \"example_137\", \"example_139\", \"example_141\", \"redundancy_5_0\", \"Complementary_0_0\", \"Complementary_14_0\", \"example_165\", \"example_168\", \"example_174\", \"redundancy_55_0\", \"Complementary_8_0\", \"example_196\", \"redundancy_11_0\", \"example_199\", \"example_204\", \"example_208\", \"Complementary_18_0\", \"Complementary_77_0\", \"example_211\", \"redundancy_6_0\", \"example_213\", \"Complementary_49_0\", \"example_218\", \"example_221\", \"redundancy_48_0\", \"redundancy_30_0\", \"example_231\", \"example_235\", \"example_237\", \"Complementary_54_0\", \"example_244\", \"example_247\", \"Complementary_47_0\", \"redundancy_9_0\", \"Complementary_92_0\", \"Complementary_68_0\", \"Complementary_44_0\", \"redundancy_15_0\", \"Complementary_41_0\", \"Complementary_16_0\", \"example_266\", \"example_275\", \"redundancy_61_0\", \"example_280\", \"Complementary_65_0\", \"example_286\", \"mutual_error_25_0\", \"mutual_error_30_0\", \"example_292\", \"redundancy_53_0\", \"example_296\", \"Complementary_17_0\", \"example_299\", \"mutual_error_15_0\", \"example_305\", \"example_306\", \"Complementary_84_0\", \"example_309\", \"Complementary_57_0\", \"example_311\", \"redundancy_54_0\", \"redundancy_43_0\", \"Complementary_55_0\", \"redundancy_2_0\", \"redundancy_34_0\", \"example_323\", \"example_327\", \"mutual_error_32_0\", \"Complementary_20_0\", \"redundancy_17_0\", \"Complementary_38_0\", \"Complementary_3_0\", \"Complementary_7_0\", \"example_346\", \"example_350\", \"example_351\", \"example_352\", \"example_355\", \"redundancy_31_0\", \"Complementary_46_0\", \"example_361\", \"example_362\", \"Complementary_52_0\", \"example_365\", \"mutual_error_23_0\", \"mutual_error_2_0\", \"redundancy_65_0\", \"Complementary_87_0\", \"example_382\", \"example_388\", \"example_394\", \"example_398\", \"example_404\", \"Complementary_56_0\", \"Complementary_63_0\", \"example_423\", \"Complementary_24_0\", \"example_425\", \"example_428\", \"mutual_error_21_0\", \"Complementary_23_0\", \"example_432\", \"example_433\", \"example_436\", \"example_439\", \"example_442\", \"example_447\", \"Complementary_12_0\", \"redundancy_42_0\", \"example_450\", \"mutual_error_31_0\", \"redundancy_21_0\", \"example_456\", \"example_462\", \"Complementary_1_0\", \"Complementary_88_0\", \"example_468\", \"example_477\", \"Complementary_48_0\", \"redundancy_28_0\", \"example_482\", \"Complementary_91_0\", \"Complementary_82_0\", \"Complementary_27_0\", \"Complementary_97_0\", \"example_499\", \"redundancy_63_0\", \"example_513\", \"Complementary_71_0\", \"redundancy_12_0\", \"example_518\", \"example_521\", \"example_522\", \"Complementary_43_0\", \"example_526\", \"example_527\", \"Complementary_96_0\", \"example_529\", \"Complementary_37_0\", \"example_534\", \"example_535\", \"example_538\", \"example_539\", \"example_541\", \"example_542\", \"example_543\", \"Complementary_59_0\", \"Complementary_31_0\", \"example_549\", \"example_551\", \"example_554\", \"Complementary_60_0\", \"example_570\", \"Complementary_86_0\", \"mutual_error_3_0\", \"example_576\", \"example_578\", \"example_580\", \"mutual_error_8_0\", \"mutual_error_19_0\", \"mutual_error_11_0\", \"example_593\", \"Complementary_72_0\", \"Complementary_35_0\", \"example_597\", \"redundancy_14_0\", \"redundancy_7_0\", \"Complementary_25_0\", \"redundancy_47_0\", \"example_605\", \"example_618\", \"Complementary_62_0\", \"redundancy_20_0\", \"example_625\", \"example_630\", \"example_634\", \"Complementary_34_0\", \"Complementary_9_0\", \"example_644\", \"Complementary_19_0\", \"example_650\", \"example_652\", \"redundancy_60_0\", \"redundancy_37_0\", \"mutual_error_20_0\", \"Complementary_28_0\", \"Complementary_73_0\", \"example_689\", \"Complementary_4_0\", \"example_696\", \"example_697\", \"redundancy_29_0\", \"Complementary_45_0\", \"example_707\", \"mutual_error_18_0\", \"example_712\", \"example_713\", \"redundancy_36_0\", \"example_716\", \"example_720\", \"mutual_error_29_0\", \"Complementary_26_0\", \"redundancy_24_0\", \"example_737\", \"mutual_error_14_0\", \"redundancy_35_0\", \"example_746\", \"example_750\", \"redundancy_64_0\", \"example_765\", \"example_773\", \"Complementary_13_0\", \"mutual_error_22_0\", \"mutual_error_10_0\", \"Complementary_15_0\", \"Complementary_80_0\", \"example_788\", \"Complementary_5_0\", \"redundancy_32_0\", \"redundancy_13_0\", \"Complementary_30_0\", \"redundancy_50_0\", \"Complementary_66_0\", \"Complementary_51_0\", \"Complementary_2_0\", \"redundancy_27_0\", \"Complementary_85_0\", \"example_819\", \"Complementary_76_0\", \"example_824\", \"mutual_error_4_0\", \"mutual_error_5_0\", \"redundancy_33_0\", \"example_834\", \"Complementary_75_0\", \"Complementary_33_0\", \"example_843\", \"redundancy_16_0\", \"redundancy_3_0\", \"Complementary_93_0\", \"example_858\", \"redundancy_1_0\", \"redundancy_10_0\", \"mutual_error_26_0\", \"Complementary_36_0\", \"redundancy_52_0\", \"example_876\", \"redundancy_4_0\", \"Complementary_21_0\", \"mutual_error_1_0\", \"example_892\", \"Complementary_83_0\", \"redundancy_51_0\", \"redundancy_0_0\", \"example_901\", \"redundancy_56_0\", \"mutual_error_0_0\", \"example_909\", \"Complementary_50_0\", \"redundancy_19_0\", \"Complementary_95_0\", \"Complementary_90_0\", \"example_922\", \"Complementary_61_0\", \"Complementary_6_0\", \"Complementary_69_0\", \"Complementary_94_0\", \"example_934\", \"example_935\", \"Complementary_11_0\", \"example_939\", \"example_940\", \"example_945\", \"Complementary_67_0\", \"mutual_error_7_0\", \"redundancy_57_0\", \"mutual_error_17_0\", \"Complementary_40_0\", \"Complementary_32_0\", \"example_960\", \"redundancy_59_0\", \"Complementary_29_0\", \"Complementary_39_0\", \"redundancy_44_0\", \"example_984\", \"example_985\", \"redundancy_45_0\", \"Complementary_64_0\", \"redundancy_38_0\"], \"type\": \"scatter3d\", \"x\": [-0.9500779265243806, 0.4333294070385597, 0.34070096314954956, -0.08447062357878354, 1.278745754130064, 1.296583837150803, 0.8028920120626046, 1.5514365381755453, 0.7126411258503655, -0.6515397134301908, 0.568998894167061, 1.399546841015706, 0.5087369723386781, 0.7191307542023415, 0.7875412749657305, 1.684104990934741, 0.4570242932279879, 1.3131234171929917, -0.042174807098444456, 0.7122971118708835, 1.473196583225226, 0.6292035662004736, -0.0864109533556181, 1.9427637251523104, 1.683062581508265, -0.9660484129679181, 1.5765611205089947, 0.4116384356932218, 0.28930800753298924, 0.5911038250105045, 1.1902829099224217, -0.07916181690449209, 1.574081282106535, -0.06804713836624043, 2.7107757776943866, 2.047176655002997, 0.07559143177000194, 1.8524412648213424, 0.3306439037497052, 0.8699291587164673, 3.3403002158569794, 1.315719422296524, 1.017414248998231, 1.2578616172949595, 0.5728894512673681, 3.476929133723412, 2.814649167323078, 0.8547713541610804, 0.33961862946446086, 1.2516538689865537, 0.49810588500233, 0.03442499379016106, 1.0697807022152186, 1.8321102172211272, 2.1021953187712, 1.004529291051558, 0.7597911289974798, 1.8143398145678733, 3.391873389457284, 0.3898502544198549, 1.1259238204854551, 1.6009137824153346, 0.6144410200375149, 1.1331664893627056, 0.11219861966234623, 0.4147094686836301, 0.4407742020447891, 3.3803877461644896, 0.7185399201117044, 1.47849973179589, 1.4408197989057157, 1.2223777489305565, 2.651914336867378, 0.4509455688411341, 1.3339450479990393, 0.9620853218672304, 1.1601441649153745, 0.9642423556264857, 1.6121568069555516, 1.535856942488638, 1.090083477540107, 0.6607952347901164, 0.9678140490557173, 0.3280238466465043, 0.8730121867950196, 1.6212560942035292, 1.4783003922546893, 2.0678566772944, 1.7300800925375974, 0.3995530344113254, -0.36624662939711095, 0.5526370508387843, 0.10405299641122112, 0.24771117823853173, 0.28722211517240603, 0.563709809005843, 1.1381927477913205, 2.271696791522558, 0.4956347996193934, 1.0410808640947542, 0.49498272925482356, 1.5762287195956262, 0.30966293755165464, 2.9172595345040717, 0.5334924726498829, 1.5648641321559589, 1.4464467833047774, 1.470868859375381, 1.6546884930081445, 1.3009683766424112, -0.17043575749750195, 0.23486533289037959, -0.14655016370745777, 1.539041496752759, 2.0511217477579984, 0.7047987468973038, 0.2725342937663279, 0.7508789965112811, 3.060826563902659, 0.9187204519864143, -1.4187754670694206, 0.8294073352099312, 1.6913563810805252, 0.34829585178176636, 0.6995571911724485, 0.7559044378414586, 0.7809414119753914, 1.5847253470359406, 0.9962514661981484, 1.6067300025201066, 1.1556753876883867, -0.9308336007240829, 2.2689650254316334, -0.5370679870688635, 0.3174599538464543, 0.4672989124450223, 0.5909821521850606, 1.0057851148266534, 1.8176863130545542, 1.7861205475982458, 1.336321809621686, 1.0988240450164317, 0.25524384321561133, -0.26875100760128334, 0.9150334031118526, 1.3316739616352777, 2.0416667330833507, 1.1598353519080975, 1.4963464110704923, 0.993383755846512, -0.9517426090104495, 0.5443375019863393, 1.2676962543586618, 0.6838837193695892, 0.7863228294117843, 0.8102217004320189, 0.006174711142728828, -0.2675777045330776, 0.6930036428373965, -0.19785374532591082, 2.4103123065906455, 1.0051431405418494, 2.1644646925122126, 1.45583767838814, 1.0796940673827122, 1.098080450279794, 2.378357221422549, 0.6460486123262317, 1.5567959468277808, 0.07797567482281809, 0.6205207439882559, -0.2595627288697413, 0.5323904665827726, 0.5689000104743072, 1.1299189044112796, -0.17066253020018896, 0.2612847344576137, 1.3520386129581203, 1.5205607958438698, 1.795432706807433, 0.6457902383345511, 1.025672315207612, -0.1804984869976387, -0.044187178864023346, 0.9397192509720186, 1.7442291195615973, 0.2700033284199236, 1.1446276337895438, 3.1009871898131114, 0.9257478925069176, 0.46894082962132433, 0.30370642094760525, 0.8462148348538082, 0.5957217557879211, 1.4926094868130526, 1.2614045025472107, 1.5325964876140654, 1.5529431891981056, 0.04491771186417248, 1.5954953007219737, -1.1772360688967356, 1.0162065994840517, 0.7523884635585489, 1.1919937886222676, 0.38674618534992844, -0.20064373232109523, 1.9639512510547117, 0.763466747903876, 0.13461049495477317, 0.41665706712151207, 1.3341262473382347, -0.6056334030627877, 1.067470025257223, 0.6201087913124164, 0.6745787286271689, 1.9583327146851413, 0.923814330048081, -0.18144126157730978, 1.0941764691736422, 0.07657079427860747, 0.5131781274817024, 2.1612222731541637, 2.318607828178045, 1.8524088777981969, 1.0429073261676913, 0.6087322850924592, 1.0379637282106353, 0.09327103464990594, -0.7606364433375037, 0.2242140106874001, 1.0021184210174725, 1.6980834649176682, 1.3601309512775628, 1.6518415719803556, 1.1432130832061305, 1.645296958431043, 0.3043545498798037, -0.5341809606872214, 0.6774512897733784, -0.0439209802489835, 1.5068025945524743, 1.4653840768191757, 0.46165054248902315, 0.27855925016979444, 0.43109514691057527, 0.5378840362001438, 1.4644876055772338, 1.3901721928800852, 0.7998654457718624, 0.3797357033323213, 1.2575817492104369, 0.6493266063414036, 0.5854361367513066, 1.0662747373442347, 0.7339363442379968, 1.1000486277777453, 0.24034823916662207, 2.2587612397600685, 1.8090542890877785, 1.3956975066080046, 0.6362154703901288, 1.2385580706395474, 1.586515157618, 0.36621135422219964, 2.3589499512671157, 1.3031538283762734, 1.1414789529346736, 0.6657930019335512, 1.2780795955735271, 0.46027320184822995, 1.2782045960209798, 1.6503111974963427, 0.8177581758214612, 1.9031675919947766, 1.6290854090140003, 2.264915894972302, 0.7294632628387333, 3.0602140726246807, 0.8627882969557995, 1.6604889823456972, 0.5959305497475267, 1.7839731429926151, 1.7069754644705992, 0.745625582973438, 1.1606928674649046, 0.8256371635874657, 1.0816447090182537, 0.13858727081365785, 1.6633830488473853, 0.49824223883027974, 0.9564543279211194, 1.0407982182238125, 1.2065056251458304, 2.09252541467842, 1.8681754795558938, 0.3624201421224643, -0.05845048942103781, 1.5921029832024916, 3.93818806715577, 0.5665683623598554, 0.984312033243062, -0.8415656164845604, 1.0517178848131874, 1.7240942025060932, 1.7540858050384984, 0.7436443571468536, 1.5201764216002716, 1.347066272200277, 0.2691651003023291, -0.22439977322102966, 0.4364468187512991, -0.8316512287136264, 0.7686240425099611, -0.10466835610210667, 2.056030371565714, -0.20269102889486756, 0.5973317887632685, 0.4561984045386336, 1.9980841726036553, 0.9627821413362261, 1.2156627874860644, 1.9565494617872687, 2.2175480219507158, 0.6102378638835688, 2.0010648425707633, 1.506811397663049, 0.5350769856352794, 1.2111247768446667, 1.4031701666343896, -0.6539595596163144, 0.22977301688985796, 0.6735823738519049, 0.047601614869526965], \"y\": [0.9966423799600188, 1.7639453637154663, 0.7638454321427735, 0.9946694266738753, 0.26789122531162934, 1.4265679117836776, 1.758065706173968, 1.7258211480387973, 3.6646144920014345, 2.973733442735852, 0.3240623351961729, 0.850189281254209, 1.2995204194161605, 2.498958462667532, 1.250430283001045, 1.1345832848122468, 1.294454597301972, 1.6675849604766078, -0.32123373766369157, 0.7502273879596166, 1.2008242896744736, 3.22815443334965, 1.491557919402587, 3.7859119139940556, 1.3945236051618757, 1.443375982102375, 1.938411423873292, 1.012814304566495, 1.6836183119363326, 1.2099260524129978, 2.150834649684363, 0.7732392033498553, 2.9581316153017756, 1.292035721730908, 1.4260250117929785, 0.9439142737213257, -1.0802826172424518, 0.8340315922050752, 0.061820148778757744, 1.8893179073293531, 0.3432296416482836, 2.172697577185067, 1.4855939200440023, -0.1937118542442775, 1.3430485306940432, -0.24256400279970558, 1.100803870459774, 0.9175540408508466, 2.2224021616505025, 1.9269996287341686, 0.45537661066170265, 0.8928727828293237, 1.3079615520802954, 1.5469684731271998, 0.34882370610822466, 1.6973874787119347, 1.9310118548691044, 3.9971982917191387, 2.0869156177890007, 0.9473881266436244, 1.5066364549090028, 1.1394524660291971, 1.190923731755106, 1.335126133073664, 0.9117397698649587, 0.675524842503575, 2.075934122700799, 2.125679932123462, 0.9939381742264052, 1.5389630726557222, 0.35186756611222225, 1.160611302155168, 1.5251446587882715, 2.5107316515392135, 0.620092033459423, 1.0985260249053879, 0.020434685365449012, 0.7158604453110327, 0.10112618912267035, 0.13769306383631896, 1.1687225773458771, 1.2919658624579071, 1.0854772503482972, 1.9211890378245602, 0.16802889192146864, 0.12186492692735618, 1.033601707353556, -0.14678309862654926, 1.2277091184759583, 1.3727672242764022, 0.5859947648615954, 1.8520150349084945, 1.2710342528612446, 1.2155456350099518, 1.0065479666366344, 1.3147099423907598, 1.2961335898856048, 0.850033708829139, 1.2991834608137984, -0.7072259945705526, 0.8360740232444841, -0.00848142728631629, 1.4410826618604038, 2.4639007861743227, 0.5910844650800138, 0.5112002016490684, 0.8949984970958785, 1.9878344213079937, 1.565200217084599, 0.20386849445704525, 0.23272742764001764, 1.426367818973557, 0.33284044993367345, 0.6779880293825954, 0.17084107751459998, 1.6145472376508678, -0.2204142108110847, 0.8441909178180934, 0.4709753493612223, 1.4586004538776307, 1.111088351304833, 1.4074180346519753, 0.4096383081946693, 0.8658466730075947, 0.9328836124648887, 0.2517253452223045, 0.9933960895166353, -0.09211990972239636, 2.597674996704983, -0.07681697362705608, 1.0554799187653805, 0.02332230469264529, 2.703270926017345, 1.6690447424705321, 0.4832324324537103, 1.0200297488243475, 1.3812691469679788, 1.0901104292310864, 0.7662086324002829, 2.7975448446859867, 0.28186234123727016, 0.21224174237956073, 0.9475523003508809, 0.3320583295404953, -0.3321257652766474, 1.042249604426835, -0.7962765667775356, 2.7301167692088395, 0.2776998120464077, 2.1907286489798454, 1.4550755757203704, 1.7370228555563136, 1.85311026444974, 0.03387347687090991, 0.10055202374032557, 1.5063634710620628, 1.3072039458978721, 1.1609754975871556, 0.3827009302419545, 0.36520451789575814, 0.46645466261594626, 1.3933783444697123, 0.8418106201778006, 0.4439474425205966, 0.3951256009908166, 2.0288491536095945, 0.6338803106246527, 1.722495769442937, 2.100428442256864, 0.28417408612524986, 1.194838818985597, 1.357192878994939, 0.2753257883176953, 1.7775497655241281, 1.1793980391804457, 1.5953232878926642, 0.4598609605363897, 1.3091577195174642, 0.960483457768439, 1.029174426768096, 0.9168193398955913, 1.2495924760743833, 0.7344771385666513, 1.8479287533552817, -0.010881496589601358, 1.8559972903065458, 1.8868426594885852, 1.8731692923815881, -0.7592870200405772, 0.7200338671934707, 1.818313736319962, 1.865271157294546, 0.8565767835410709, 0.18326206813509993, 1.4527625878480657, 0.5854837825323496, 0.45278155973402723, 0.35675156878743286, 0.6744865870050636, 1.1862524599012663, 2.369114367674751, 1.5012490868072028, -0.374173452371543, 2.592225073648775, 0.6610914543241663, -1.0813413886427115, -0.04991354536952741, -0.21584398282536843, 0.9842223111003292, 1.1029652424646106, 1.4811458907651867, 0.9239510923029574, 1.430013523811355, 1.115860758842, 2.3089894097291124, -0.28255669300528763, 1.9363373808293303, 0.9339780140539713, 1.7403334225564788, -1.2816620724205774, 0.3311035082707853, 0.12230348648343947, -0.1178943387202076, 1.392547815237406, 0.9973142741367578, 0.11107519094022933, 1.1440522315264967, 1.435946323899337, 0.7149044841716616, 1.4209727825314666, 0.7853054526131628, -1.754521628398373, 1.4174590313631659, 1.4629127794931132, 2.0755949081983305, 1.438023605328097, 0.05906404735711457, 3.728499745296607, 1.8410815386064159, 1.559811761930761, -1.133184427628144, 1.0432316896448903, 1.2397968337419887, 1.3689151288291943, 2.095873454976826, 1.0543356594653925, 0.640244983394368, 1.282000542554511, -0.24858168909976452, 1.2937473516739988, -0.3007350703873357, 0.51236092650142, 0.20377587722618073, 1.7848886874941852, -1.4857949122861833, 0.7972799705633297, -0.023734445277818317, 1.4829299451775868, 0.6711691734127601, 1.0148160099305055, 0.22988089276824675, 1.0613436642408636, 0.23104008732520764, 0.5878388549517861, 0.47166911088957575, 0.3647386154413911, 0.8742073723416702, 0.040027480855959086, 2.1092079825867307, 1.1424048666281323, 1.1555794692306387, 1.8584588426390307, 1.6884365198746685, -1.011981365705703, 0.3772694189962521, 2.0031370033055653, 1.6232554234584726, 0.5521849961282339, 1.5634099508221322, 0.8675744150566632, 1.6883470370380196, 0.7109987813987828, 1.249725487053597, 1.7368371241051792, 0.9933214269473278, 0.27438254343671276, 1.3945440343166744, 1.652167885115686, 1.018777723387947, 0.36196983434762553, 1.1728916847876925, -0.0749895671304055, 1.0892282868747492, 1.599441015306259, 0.27411241616800597, 1.147822090303245, 0.7621861178515793, 1.6230110292977487, 0.3333807225052775, 0.6122390771837759, 0.7288903073532056, 2.12859406747858, 0.2971671870645589, 0.5291696234962182, 0.8416803874046215, 1.6104399993168492, 0.9884102156811788, -0.45730476898553585, 1.7104245340914495, 0.7187063473304306, 2.5895633328625776, 0.09889671301564296, 0.977322474512659, 1.5356402250166092, 0.47721878343382895, 0.8912489771663821, 0.49297173720897636, 0.8400578517011661, 1.0432040486855039, 0.3226377712782307, 1.435683111924503, -0.011037130045730592, 0.5949490470544472, 1.1087849058607961, 1.2968271085458802, 1.5452584830261196, 0.819346617954279, 0.5817510847201688, 1.422014359410694, 1.0098137403964043, 1.5435243325500279, 1.4293507136612709, 0.6714467482097025], \"z\": [2.4845207658487, 0.9550804618455668, 0.19606162327283638, 1.835969924272277, 0.44326548767523066, 1.6952675002522368, 2.757826899501951, 1.3492927723542074, 2.8744244469332436, 0.8367216147716967, 2.322548462831661, 0.050399755934995794, -0.06404592724557245, 1.9328388923622373, 1.6802871657177567, 2.311480818960295, 0.133965554776608, -0.7944435850889013, 1.9865140038042008, 1.5285392018314015, 0.041920620358639304, 0.8374720353237433, 1.5042572444841515, 1.9818219444386038, 1.5605292848705128, 2.722627660704549, 2.2204763910810748, -0.16849089209926693, 0.26504812316462223, 0.36756096192382504, 0.9136150156485014, 1.6726128910898423, 1.489811254794013, 3.748782415910065, 2.9706783914664907, 2.1629808803918413, 0.20482498758616596, 1.220145190351275, 1.3571625857012706, 1.8301176644952266, 2.6761895075020155, 0.5239822524010569, 0.12848940566684275, 1.9957835101574903, 1.4661471304949543, 1.5282699389151055, 2.654668315866706, 1.6871403060029788, 1.0621792298122876, 0.3242819975844681, 0.7280000276918639, 0.3350334886800035, 0.7371509338396272, 0.7355196512313774, 1.2422442324896497, 0.27433239711697943, 1.493117527216005, 1.1051599818512121, 0.06884214984339876, 1.6984327820629752, 0.5991346649902977, 1.7824660218746737, 1.1071453297375684, 1.3646018037048318, 0.7962404865055797, 0.16852132709850942, 1.1457586393276573, 1.2431030583284144, 0.5507146520641917, 0.13926201152689677, -0.911642210919043, 0.9818331185945455, 2.359718213000896, 1.264824242464778, 1.5553796561497686, 0.799555017322775, 0.1982108920489496, 1.527568116112033, -1.9538234854006244, 0.41304179002371555, 1.2301808062292197, 1.4456435044900993, 0.8109420791476254, 0.6678222060692613, 1.5945090026314697, 2.8205802682649663, 1.3836443849696414, -0.5309276325126464, 0.265995005710849, 0.0934922190672296, 0.07530776947646789, 2.563961336859704, 0.26393478145935023, 1.7715225308761193, 1.8541996486128163, 1.8058977770010687, 0.41184687467943126, -0.1154200035302062, 0.7492123927893681, 2.1322873748389384, 1.4022623446643774, -0.7230460292912313, 0.6932273153363696, 1.555294190013616, 0.30068112674332814, 1.2079296919616744, 0.24673578826285802, 1.4463742447585357, 1.8793072927089765, 0.12084680090645394, 3.2785173159559986, 2.191720302401696, 1.0332232385169595, 1.1720589223662587, 1.4425624290228072, 2.109099465476719, 0.5713977630512899, 0.6766463305612846, 0.8142632365815013, 1.908222524091729, -0.044925034622251614, 1.63942804219255, 1.7495550374451283, 0.1274054735938469, 0.16739278026115167, 0.5797359688411714, 0.9761562318638836, -0.47314587664652996, 1.857322191906177, 1.737528063466538, 1.2429025407112515, -0.7998395353884376, -0.07446276635600202, -1.4902817083763287, 1.2769943311191005, 1.7400783657052865, 1.8181755254714744, -0.40567680770400183, 1.4732152090075887, 0.5362027303501207, 0.3846076742451229, 0.21615826091531587, 1.5799721710336103, 0.43833944307457395, 0.19043319791042768, 0.5958460942926773, 0.6593959222562333, -0.6797453265189957, 0.42134894587954486, 2.761501893492003, 0.8895988360984115, 0.7581820874710199, 0.8944750612290459, 2.7459036321856196, -0.44288857405769355, 0.1438923473435697, 1.0442061748804525, 2.507707699313365, 1.69857548086202, -0.6131300189146887, 2.783918606607485, 0.819449709114261, 1.5185128336026552, 0.026032955750899256, 0.2489766086094758, 0.5682488249688722, 1.1244375979069443, 0.6833422352633562, 2.8041190919644037, 1.126770601142113, 0.3029210871993032, -1.3214853420775783, 0.8571733614048495, 0.8896000959009566, 1.620093197586867, -0.4058596858654655, 0.6451492686481846, 0.31595396962095834, 0.006566400866884314, 1.269783929399936, 1.5661773907701724, 0.8528283521515636, 0.09466383248514754, 2.865727355968457, 0.861203599054464, 0.5371694765696294, 0.5475757351909585, 0.6129469737662724, 1.4193418724616254, 1.1127489380767497, 0.7059056916113662, 1.6961897158262458, 0.9673440962596901, 1.7239970324019036, 3.7008664695495948, 2.126517893685703, 2.7897907703084006, 0.23391954385307034, 2.3212111260775763, 2.0610418591835806, 0.6058419034739262, 1.536487727121329, 0.9218300638642067, 0.8147340850696418, 2.450340258759062, 1.8178664249496361, 1.269235132886258, -0.34842751278098105, 0.4155065672056013, 0.37349978395667327, 1.2872965727490873, 0.2397376002965207, 0.6530265468948827, 1.1745156615457952, -0.510924561816994, 1.8105949731485924, 0.5290101897359968, 2.5685339387093267, 0.7854974331757808, -0.11185070666402885, 0.6678022838580666, 1.1707989039338025, 0.2158884659437612, 1.2385841879306048, 0.48156436812249614, 0.48329089057011465, 0.6543463433943308, 1.6673831031405686, 0.5274991069150956, 0.98405027302323, -0.25615527450738673, 1.2518694483180255, 1.0811438318496203, 0.324960988580532, 1.3142893154787072, 0.7371831767029405, 1.5321161341863818, -0.3634042473375141, 2.2287280552289204, 1.1426213926688829, 3.099752547995989, 0.09758527925587457, 2.103626910444787, 1.063107121492024, 1.3345576345378802, -0.336269636551354, 0.7086679938750535, 1.3763885618891993, 1.2068163617914038, 1.3265959599163561, 2.44700461758506, 0.34182472586289614, 0.30630203238333276, 0.4095592297967251, 0.41447843810426077, -0.19999558009364304, 2.017174214170156, 1.6320232236170216, 2.0347991305262365, 1.9354943958784454, 0.6511480028087999, 0.6878686324587128, 1.1126852001603738, 0.45923664502277795, 1.4165235447151714, 0.25033304905408615, 2.8224633429937906, 1.365396208236193, 0.38977930746214606, 0.4978921751703025, -0.07075437633850257, 1.250943193236659, 1.3397830221392302, -0.731324578876315, -0.05132901802327883, 1.2317927626259249, 0.8772285743131895, 2.9979482045129, 0.8370878066237647, 1.0847977290261435, 1.6651060515214793, 1.1262558727139327, 0.9543571466662046, 1.1480574138908146, 1.7355668983025718, 1.3574701858487241, 0.9824826371042515, 0.1640602238334915, 1.2727933862859797, 1.2823526639796525, 2.89557477322856, 0.9976565968504798, 1.0630176588992286, 2.099073062553966, 1.2991956221800895, -1.5314300457780048, 0.5891428008635256, 1.5356540513524743, 0.32428846984130766, 0.12222269356418969, -0.4912278313904628, -1.757853629547368, 0.9057561564752484, 1.5413793726352385, 2.8680329249591097, 0.6706035440374569, 1.5660574588320673, 1.42345833183039, -0.05584463743384083, 0.8814657659711358, 2.3854377816563823, 0.8639035413183507, 0.3299094261819665, -0.19415865609131666, 0.957551470988244, -0.950095160018759, 0.8642043597429852, 0.44931915334323747, -0.03779547301818398, 1.2093543301876148, 2.240965598738532, 2.0877267513388533, 0.20152720320036754, -0.06843748584582876, 0.7867115866140528, 1.8869526074731717, -0.7459690324749819, 0.6503012546412495, 0.7832849886135727, 2.1433042743300135, 1.6816606513974395, 2.1609526907425614, 0.8916651526307058]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 1\", \"marker\": {\"color\": \"rgb(255, 127, 14)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 1\", \"scene\": \"scene2\", \"showlegend\": false, \"text\": [\"Complementary_85_1\", \"Complementary_1_1\", \"redundancy_42_1\", \"example_12\", \"example_15\", \"Complementary_25_1\", \"Complementary_27_1\", \"redundancy_11_1\", \"example_19\", \"Complementary_48_1\", \"mutual_error_32_1\", \"redundancy_50_1\", \"example_28\", \"mutual_error_23_1\", \"Complementary_49_1\", \"example_41\", \"Complementary_65_1\", \"Complementary_56_1\", \"Complementary_63_1\", \"Complementary_76_1\", \"redundancy_62_1\", \"Complementary_71_1\", \"example_51\", \"Complementary_37_1\", \"Complementary_62_1\", \"Complementary_88_1\", \"example_68\", \"example_69\", \"example_73\", \"example_74\", \"Complementary_12_1\", \"example_83\", \"example_89\", \"mutual_error_18_1\", \"Complementary_36_1\", \"redundancy_10_1\", \"example_94\", \"redundancy_19_1\", \"mutual_error_12_1\", \"Complementary_95_1\", \"example_111\", \"redundancy_64_1\", \"example_114\", \"Complementary_82_1\", \"Complementary_72_1\", \"example_117\", \"mutual_error_29_1\", \"redundancy_13_1\", \"redundancy_22_1\", \"Complementary_5_1\", \"example_131\", \"example_132\", \"Complementary_14_1\", \"redundancy_46_1\", \"redundancy_36_1\", \"mutual_error_22_1\", \"redundancy_29_1\", \"Complementary_31_1\", \"example_152\", \"example_153\", \"mutual_error_5_1\", \"Complementary_15_1\", \"example_162\", \"Complementary_50_1\", \"example_164\", \"example_167\", \"Complementary_24_1\", \"example_171\", \"example_172\", \"Complementary_61_1\", \"example_175\", \"example_176\", \"example_177\", \"Complementary_4_1\", \"redundancy_23_1\", \"Complementary_83_1\", \"example_181\", \"example_182\", \"example_185\", \"example_188\", \"mutual_error_19_1\", \"example_193\", \"example_194\", \"Complementary_30_1\", \"mutual_error_3_1\", \"example_220\", \"example_222\", \"redundancy_65_1\", \"redundancy_51_1\", \"redundancy_31_1\", \"Complementary_64_1\", \"example_234\", \"example_236\", \"example_238\", \"example_245\", \"example_248\", \"example_255\", \"example_257\", \"redundancy_4_1\", \"Complementary_77_1\", \"example_268\", \"Complementary_8_1\", \"redundancy_34_1\", \"Complementary_92_1\", \"Complementary_69_1\", \"redundancy_39_1\", \"redundancy_48_1\", \"Complementary_0_1\", \"Complementary_58_1\", \"Complementary_6_1\", \"Complementary_26_1\", \"Complementary_2_1\", \"example_304\", \"mutual_error_16_1\", \"example_320\", \"example_322\", \"example_324\", \"Complementary_35_1\", \"example_329\", \"example_335\", \"example_336\", \"example_338\", \"mutual_error_8_1\", \"example_341\", \"redundancy_14_1\", \"example_349\", \"Complementary_51_1\", \"example_354\", \"mutual_error_30_1\", \"redundancy_7_1\", \"example_364\", \"mutual_error_15_1\", \"Complementary_89_1\", \"Complementary_87_1\", \"mutual_error_6_1\", \"mutual_error_7_1\", \"Complementary_40_1\", \"redundancy_32_1\", \"redundancy_33_1\", \"redundancy_17_1\", \"example_395\", \"Complementary_17_1\", \"example_399\", \"example_405\", \"Complementary_97_1\", \"Complementary_81_1\", \"redundancy_26_1\", \"example_412\", \"example_416\", \"redundancy_61_1\", \"redundancy_49_1\", \"example_426\", \"example_431\", \"Complementary_74_1\", \"example_437\", \"example_440\", \"example_443\", \"Complementary_42_1\", \"example_445\", \"Complementary_75_1\", \"example_457\", \"Complementary_44_1\", \"Complementary_67_1\", \"Complementary_55_1\", \"redundancy_52_1\", \"Complementary_46_1\", \"Complementary_18_1\", \"example_486\", \"redundancy_55_1\", \"redundancy_57_1\", \"Complementary_22_1\", \"example_495\", \"Complementary_32_1\", \"example_501\", \"Complementary_52_1\", \"example_506\", \"redundancy_37_1\", \"Complementary_3_1\", \"example_515\", \"example_517\", \"example_519\", \"mutual_error_28_1\", \"redundancy_41_1\", \"example_531\", \"example_532\", \"example_536\", \"Complementary_43_1\", \"Complementary_54_1\", \"redundancy_43_1\", \"mutual_error_4_1\", \"example_557\", \"example_559\", \"example_567\", \"example_568\", \"mutual_error_26_1\", \"example_579\", \"redundancy_56_1\", \"example_582\", \"example_583\", \"example_584\", \"Complementary_70_1\", \"mutual_error_27_1\", \"Complementary_21_1\", \"redundancy_28_1\", \"example_601\", \"example_604\", \"example_606\", \"mutual_error_11_1\", \"mutual_error_9_1\", \"Complementary_80_1\", \"example_616\", \"example_617\", \"Complementary_90_1\", \"redundancy_35_1\", \"example_628\", \"example_629\", \"Complementary_11_1\", \"example_633\", \"example_636\", \"example_638\", \"example_653\", \"example_655\", \"example_656\", \"example_657\", \"redundancy_40_1\", \"Complementary_20_1\", \"example_665\", \"example_666\", \"example_667\", \"redundancy_15_1\", \"Complementary_10_1\", \"mutual_error_13_1\", \"example_673\", \"example_675\", \"redundancy_63_1\", \"Complementary_53_1\", \"redundancy_38_1\", \"example_685\", \"example_687\", \"example_692\", \"example_693\", \"example_695\", \"example_703\", \"example_705\", \"example_711\", \"mutual_error_1_1\", \"example_717\", \"Complementary_29_1\", \"example_722\", \"example_730\", \"example_731\", \"example_732\", \"example_734\", \"mutual_error_20_1\", \"redundancy_8_1\", \"example_752\", \"mutual_error_25_1\", \"redundancy_45_1\", \"example_755\", \"example_756\", \"Complementary_33_1\", \"example_758\", \"redundancy_47_1\", \"example_770\", \"mutual_error_24_1\", \"example_785\", \"example_789\", \"Complementary_47_1\", \"Complementary_91_1\", \"example_803\", \"Complementary_16_1\", \"Complementary_59_1\", \"example_816\", \"example_817\", \"example_820\", \"example_822\", \"example_827\", \"redundancy_44_1\", \"redundancy_12_1\", \"Complementary_68_1\", \"example_833\", \"Complementary_84_1\", \"Complementary_66_1\", \"example_853\", \"redundancy_27_1\", \"Complementary_7_1\", \"example_861\", \"example_863\", \"Complementary_23_1\", \"example_865\", \"Complementary_38_1\", \"Complementary_79_1\", \"example_884\", \"Complementary_98_1\", \"redundancy_58_1\", \"Complementary_60_1\", \"Complementary_93_1\", \"mutual_error_17_1\", \"example_902\", \"Complementary_41_1\", \"Complementary_45_1\", \"mutual_error_14_1\", \"Complementary_96_1\", \"example_919\", \"mutual_error_21_1\", \"mutual_error_0_1\", \"Complementary_78_1\", \"Complementary_13_1\", \"mutual_error_31_1\", \"redundancy_24_1\", \"example_941\", \"example_949\", \"Complementary_9_1\", \"Complementary_39_1\", \"redundancy_59_1\", \"Complementary_34_1\", \"Complementary_28_1\", \"example_964\", \"Complementary_86_1\", \"example_966\", \"redundancy_60_1\", \"example_968\", \"example_969\", \"redundancy_18_1\", \"Complementary_19_1\", \"example_983\", \"redundancy_53_1\", \"example_989\", \"Complementary_73_1\", \"Complementary_94_1\", \"Complementary_57_1\", \"mutual_error_10_1\", \"redundancy_21_1\"], \"type\": \"scatter3d\", \"x\": [0.03460384081829948, 0.6262791295095664, 0.2731106167952879, 1.6935176642254062, -0.2630353535770662, 0.29988240818458667, 0.07659952747491927, 0.10150951322715507, 0.40337630601655083, 0.7021046552564693, 0.38220372651897205, 1.6952692270887475, 2.121950491915225, 1.3638404342926127, 0.5979506997252101, -0.609287086687434, 1.8241523634556387, 0.4888022014386153, 1.2556995380481428, 1.0113323783677342, 0.14888521316561343, -0.14706559971907684, -1.8151236899058496, 1.6135361291851882, 1.0723603899083844, 2.351088946337002, -0.8758090928476314, 0.916667799375653, 2.520664172981186, 1.415311477240334, 0.1717942943407028, 2.890840420039165, 0.17478712445428357, 1.36358427384619, -0.15365935142656872, 0.8121571799362091, 1.5304234639752379, 1.052939468234801, 0.7746518662869923, 5.2973206617679125e-05, 0.2931465984856564, 2.38238274568994, -0.17843671293067564, 0.913453839319397, 1.928767535075775, 2.5327838847681052, 0.46998924122003405, -0.17051493012890884, 0.14115572170104085, 0.37017519575359015, -0.1485833152387388, -0.8454238848045357, 0.42069469142095683, 2.2281152937809283, 0.8952279883184657, 1.479119127782772, 1.5669802632671008, 0.8318603539508328, 1.5100665931710657, 0.9554551357552115, 1.5341359422659844, 0.32366028423645454, 0.5555204701222954, 1.8713536757310174, -0.2582963852509055, 3.1321464601437015, 0.7512765759174674, 2.204675935756925, -1.9118039447172657, 0.7522928015655027, 1.0321154554323206, 1.1432866718820254, 2.0826249210022105, 2.224638731215175, 0.6481262037134841, 1.6416252324412084, -0.70686256219305, -0.28494466195482815, 2.5300474415616288, 0.021925737336447648, 0.4411837082632051, 0.14282762610829425, 0.2166912432749365, 1.2528766575156671, 2.027191560040414, 2.432988276709578, 2.091027909191477, 1.231669939018727, 1.0166209813624136, 1.775765385282725, 0.9594776164730683, -2.0942892490913896, 2.5533546990558946, 0.746851499957055, 2.2719183034223662, 1.6862885417318136, 0.7783966098173505, 1.8954602236748324, 1.2735945732616776, 0.6659469179431545, 0.3126455656417064, 1.0393091987434653, -0.7383975785217862, 2.3747979700547797, 0.7791655079629174, 2.0153427862709963, -0.2893820891033929, 0.4356970541893739, 0.02511569536095859, -0.6758401645518477, 0.33966873719988355, 1.3081283365365046, 0.46587835838710434, 1.143737437820857, 1.4245485997196692, 2.153327763396889, 0.14607108542864256, 1.790641583887672, -0.5110935484525234, 1.3450861860150827, 2.4824440287546365, -0.9387999093815778, 1.9072346600576204, 2.438028721873262, 1.8166035703577128, 1.452289992570918, 0.13640160726818218, -1.1427198463985464, 0.13643164029010735, 0.8880833148007954, 2.4148401364592598, 2.162902572544139, -0.3111438217869762, 1.0746816394542391, 1.362184322104694, 0.8114081488936834, 0.44459960055766123, 2.1272811234320694, 0.7330603128603741, 1.6252284708731022, 1.6040248469495526, 0.12723892921146174, 0.9022050029157971, 2.2740596432667957, 0.3144454285164948, 1.5011620700684523, 1.405029604444193, 0.9015546858232515, 0.22749139360783988, 0.6072410475831909, 1.669868037904822, 0.1860282041094884, 2.053069717594912, 0.7685819387950076, 1.032426604187004, -1.429112337166646, 1.063183668807756, 1.9668834167557434, 2.5912152908822934, 1.3091381873347978, -0.7772637986896467, 0.7033312633255284, 0.25437953282782644, 0.9554013280047766, -0.3945595133260753, 1.3821312758908035, -0.04718435524822828, 1.1280988843589868, 0.9680661099491893, 2.006624631596515, 0.25630008309481667, 1.501894389860622, 0.8449379553015215, 1.8488054577314492, 0.28196691782772587, 0.23249296332618952, 0.26414642408763944, 1.1903101253970567, -0.4820732754824262, 0.5730196284932376, 0.8102484427403169, -0.22656057990196543, -0.45528897590121553, 2.351957305398458, 0.08238401089366787, 1.1382252365018404, 1.1415592668957943, 1.1927987925062689, 1.1973684622346912, 2.0170655439701535, 2.237150975478716, 0.1927222299896293, 0.411308300530726, 0.9153291025003358, 0.42450978690387864, -0.383467312455986, 0.42277904361788665, 1.2752486875683642, 2.2939892132916677, 0.6461824737878189, 0.7319674126723894, 1.6690752544963647, 0.5964066630130899, -0.2117682074893643, 2.515945146294234, 1.882924805586752, -0.06147297292362763, 1.437017622073419, 1.3429829673663183, 0.6462092688576861, 2.537854951326482, -0.6465113866019412, 2.321880992159802, 1.1962723384408633, 0.041071732285383744, 1.178931728938161, 1.5512833327755875, -0.21371219897325022, 1.9221734565070863, 2.031415906434008, 0.17916104114970866, 0.8037063822542334, 0.47811658629495546, 1.4778141529206552, 0.7794374655910106, 2.132405540709269, 0.4201448185366716, 1.31537289612739, -0.21678564108141773, -0.23533397930347966, 0.1552625912088238, 1.7810089546071515, 1.5746929937075995, 2.173900931574208, 1.4014668584815455, 0.6476951266508295, 2.285759036510566, 1.6685626163371268, 1.3051726345805077, 2.1007998054227173, -1.5258316858046084, 2.0363859085870253, 2.04784905688975, -0.950900466789381, -0.6101697979934344, 0.33573213504141797, 0.5808662064110953, 0.21543300739747706, 2.334946728383643, 1.85835123300539, -0.4203017800706945, 1.3904842938743351, 0.5294608604705827, 1.682652507292588, 0.1437118763397196, 1.020271892122288, 1.7126620321270067, 0.3086651388372236, 2.446822840111534, 3.4359851242292434, 1.5929508094251297, -0.7985004951846741, 0.28445558024147255, -0.6963162351162222, 1.555987433690139, 2.268358611496067, -0.19705500482641058, 0.7685477850123458, -0.8770391546303089, 1.037092341936456, 2.782024112701473, 0.9276709986976931, 0.6400238264190989, 2.3435465066220513, 1.7567270028534283, 2.0458029156995154, 0.01902908147392468, -0.4762304803093984, 1.8600850677428205, 1.14599591431264, 1.9993809463927898, 1.6012367881516734, 1.2594788230864766, 2.3127240692726616, -0.6171517144400436, 0.432804848984899, 0.9694069357692444, 2.218665210788921, 2.1812216342206012, -0.13307517309215688, 1.4101515677135938, 0.5766225097642634, -1.0152219054323766, 1.7911536503642258, 2.2812696454013426, 1.5870424240678338, -0.10208456477606531, 0.9446064745176643, 2.585679173100759, 1.2405807577265922, 2.3686234226985103, 1.1076034362229508, 0.2740819140062214, 1.2774211112373433, 1.6727204878601407, 1.1508676285115624, 2.9417461220517027, 0.6772554472766577, 1.2661778652041802, 2.4861513251433442, 1.4170804980086447, -0.15463694888472812, 0.5238008396010128, 1.2789230971674435, 0.38314466689642257, 1.1498721979352746, 0.6316672899608237, 1.5912895892934729, 2.0325617203605524, 0.28997491318489865, -0.19557532822344537, 0.05319990581866829, 2.516347465799197, 1.793639294330103, 0.9915863340286349, 0.9629919059267664, 2.0468009034913464, -0.7227224815653555, 1.2961845539884636, 2.9212374170896127, 1.3770609096283999, 1.2040003810776914, -0.1212795914817848], \"y\": [0.41048286750348917, 1.369979213880747, 2.0452075820322504, -0.42207532742582665, 0.51487005790013, -0.19171913361734316, 0.8340382685270753, 0.7292135030209369, -1.3775698299271024, 1.618289303310708, 0.5028659761300638, 1.3641700631424107, -0.537503218234725, 1.3460344109108018, 1.7451868818938276, 0.9622582037913995, 0.7565189303670996, 1.4427533213091044, 1.4287279932940682, 1.6761016136499132, -0.2222257195919537, 1.249736067863812, 0.7970316568521146, -0.14425481626462022, -0.6292090390800535, 1.9133910908021825, 2.520277988882833, 2.6857441919739613, 0.7370250859842957, 2.4215032852330935, 1.315309626770591, 0.5944126432523211, 0.6416055169719763, 1.6546419928245037, 0.9063786809293886, 2.1074992401181563, 0.6016613773112474, 2.330451671562317, 1.1377584051740373, 2.3173839179398215, 0.8300208137890694, 0.33344376876695414, 0.5827651647616855, 2.090979027619465, 0.5619213518964632, 1.3647117732084855, 0.5972427100935827, 2.031761904499625, -0.08215813582799503, 2.4619928308683203, 0.7526490728510868, 0.24496600408950142, -0.1111237664157756, 2.1259303306340565, 0.4865116362259464, 1.6287305482596373, -0.664665985025513, 1.1499950899077391, 1.7929053718372017, -1.6266847559986117, -0.027313423050972396, 0.8487009602302926, 0.15403696737074835, -0.071019562531488, 0.7823845772823329, 1.2463479529484989, 1.8349894273785858, 0.8903451508825406, -0.4446412530684143, 1.0399066945197613, 2.0876069851989536, 0.24321963297913285, 0.5051193418206804, 0.6165219810761133, 1.9456890374971552, -1.567585117933758, 0.7321605674316889, 0.6548627695234095, 1.8468537431799008, 1.0723755156148924, 1.6689644817181823, 1.4918144010879626, 1.7852553595715475, 2.7846356069497724, 0.9831986840222596, 1.7986482071911434, 1.2501477160353562, 0.24728075809693206, 1.8839831604696675, -0.08320168318460142, 2.2040011300856515, 0.5527756403224762, 1.0397994541160163, -0.20356689622883262, -0.2581972900269258, 2.2403834346054214, 2.7308151930447426, 1.8372094867286812, 1.1105491195521309, -0.29874168661049194, 2.0982358035234263, 0.08767448593364213, 0.6415538106933251, 0.43944265490563184, 1.2444544496055499, 0.6472992049963928, 1.7348113435104173, 0.141524108827358, 1.3354213204803695, 0.41130747530800793, 1.4924834847446222, 0.9228197238863036, 2.126457757129158, 0.5821764811906188, 1.4576716111935861, 0.5098090937713118, 2.1382814448895795, 1.9393198902324555, 2.055353067471044, 0.06800887471646044, 1.9379896002913397, -0.13544419433712318, 0.6140668734844359, 1.0688746395137692, -0.17834612480684564, 1.4485808792518473, 0.5069005390237061, 0.5667158263721457, 0.21781325599790113, 1.951056862481465, 2.685064345333184, 0.8528446947831395, 1.880214139624177, -0.001137557885149576, 0.475107434363515, 0.9210733242254443, 0.29008086704793545, 0.2827360941556528, 2.67602145875993, 2.1644758470500056, -0.6599055625051826, 1.1649568754090247, 2.184984447600316, 0.049958119734183404, -0.4889222560705766, -1.1767797009718484, 0.030720801655634733, 2.343008083736131, 1.7397592906972692, -0.501836924629838, 0.05601498465211174, 0.39009729305079777, 1.1482029686278978, 1.2455281720561682, -0.5941826797254006, 2.6424192459283224, 1.2419149843214985, 1.3226706307420115, 1.542774673912562, 1.062150906085727, 1.4760108000656256, 0.0028564532143137145, 0.3803762453107101, 0.29401483450108945, 1.1006755030989341, 0.009302490463767632, 0.19659054020756295, 0.18313849978504193, 2.4320786039045634, 0.43302360899572123, 0.681857367338573, 3.09924951925509, 2.1884749665035237, 0.9355778004228114, 0.400278154068619, -1.1439668316219942, 1.8601507958725465, 1.7645995976355802, 1.157039170196768, -0.10001664207466265, 3.5197076456453744, 0.8141943899002217, 1.870178174746771, 0.1636615003353723, 2.420271085267462, 2.5329782475310845, 1.7031563164196175, 2.459160994188691, 2.128002626201508, 1.125558522473578, 2.3122079936015316, 2.3653287482758216, 0.4862002472919651, -0.5396256942059605, 0.06652884157495864, 0.8781543886889648, 2.4120963746775894, -0.5843275778483972, 0.7088362295736588, -0.23186868813308026, 2.6630422595961174, 0.5790664354162341, 1.8566651198694064, 1.676837654111007, -0.4264831566211651, -0.21554321205105698, 1.1156207904214335, 0.35727840611728634, 2.15423480489976, 1.085339775794894, 1.8549446510561496, 1.4300891561717521, 0.9529414592256135, 2.3125491943402263, 1.6741440051199892, 0.9305339483874253, -0.00013892123995673522, 1.8636055068862878, 0.8702091707953066, 1.3218351900227705, 1.4407567544387643, 2.4571018262274054, -0.13905666613971035, 2.4769220222146995, -0.356545052286539, 0.3782343124111677, -0.07836416379486533, -0.308778304485956, 0.1658409532834192, 0.3816031470393474, 0.1893424443013274, 0.3654786765660586, 0.32908562231522887, -0.018037671922815024, 2.519019572530981, 1.0629450965419935, 0.33831012903368063, -0.44812477527686845, 0.23352022709143072, -0.25929555188003817, 1.4917798896006909, 1.8513421221731372, 2.2304843563583523, 1.0923814589989698, 0.6328564289527687, 1.504154550950278, -0.23725498287462776, 2.208323285947233, 1.0413268318770033, 1.8756563632282364, 1.917366649477848, 2.0751207489817567, -0.41269115249263133, 0.19662129283370988, -0.1669178013714432, -0.5322217872403114, 1.1518475496415705, 1.7750894117456406, 1.2439861879976468, -0.3350162456480239, 0.24776546347255746, 1.0701858524227446, 1.5374620867252018, 1.358741388108303, 0.3915629586088579, 1.93680567713306, 3.706687940975501, 1.8017851843284858, -0.6064589010404138, 0.2703421177058798, 0.6311168970629761, 0.2623737347291455, 1.4121143007306018, 0.3762839650836073, 3.0515094640855813, 0.522593768402184, 1.9510213361781545, 1.444874916677123, 1.3796100564144804, 2.399097479263414, 0.8758716251822958, 2.8619148781501726, 1.0187961919854918, -0.13687118163441547, 0.47304485643500804, 1.64323541855256, 1.2245994767082595, 0.6071561092327927, 0.9038557120755105, -0.4861622746066161, -0.0380485814246605, -0.2590027269681512, 1.5933365996313635, 1.4567707777004593, 1.1135214964779416, 1.3929073590143917, 1.367529047561412, 0.42606536692579977, 1.9559380601783107, 0.6960773523846274, 0.30549683861519006, 0.3914081944307215, 3.150310793331211, 0.227026565833379, 0.3717015079822469, 1.1858778836222663, 2.1041751565436755, 1.7068962909185121, 1.111694130106675, 1.4517002009759392, -1.0435383538962357, 0.11939354021835069, 1.1660188478745723, 1.7298430351149832, 1.8467223387708436, 1.5967937773308143, 0.519640327508645, 1.668248123941353, 0.28604708784044663, 1.652080237354908, 0.3374828536932596, 2.7750370211274653, 1.7184902973171294, 0.1274887233943638, 0.7022643511187688, 0.15895156960170553, 1.1473188590313954, 1.5340629563169517, 1.1602592866416654, 1.153854228873499, 1.7814289194655282, 1.6771499741332931, 1.8881573217434418], \"z\": [0.23451877955791434, 0.19598700204575348, 2.2148840301830344, 1.5858172974674507, 0.6699472647559992, 0.7914935690462497, 0.6292490161923526, 2.3427769644230034, 1.7002219112822892, 1.4166590605485936, 0.27253519354572053, 0.0008130970383418701, 0.9444094768007286, 1.5542544760265211, 2.483258884856591, 1.3859567362586327, 0.18429395190065578, 1.0419180402386254, 0.7956927913998342, 0.7845232838356602, 1.2745139874932834, 0.5690561995147726, 1.1349395301632499, 0.3212958678883886, 1.344000106305036, 1.2122996176604766, 0.016623277051320162, 2.2327283420682846, 1.487313163053316, 1.9987265700830985, 1.2668261710803872, 0.2011484559827037, -0.894834367582211, 0.6033038200347931, 1.9078606377044913, 2.305645561840047, 3.0850296762606915, 0.851117203979117, 0.5586224967053708, 3.2067827246151004, -0.17228249690295283, 1.8741698718964994, 2.3707918338057774, 2.662777289179469, 1.7206105486789331, 1.2832699501465985, 1.2557842523263654, 1.510678883166039, -0.17869113179625473, 0.7532627194465251, 0.27740321859852235, 2.8966040685739283, 0.9474458380798065, 0.5715715652444233, 2.3427476033167656, 0.812402999908388, 1.296251931889965, 0.9061543837766335, 2.290425324616862, 0.837043689194159, 0.8610272684448933, 1.2566852308914787, -0.7417641123833023, 0.857714307554852, 0.19619681990291427, 0.29181383864041754, 1.8498203653189065, 2.533622845732923, 1.7749361071084744, -0.14279069499640085, 1.762063873862598, 2.4754541310422944, -0.2843694083091741, 1.8454065567820555, -0.028038659092863627, -0.41982531345756957, -1.5536310156485982, 0.7639658098439591, 0.4839734682782717, 1.7947740384603357, 0.2814572932209597, 1.7733998160676112, -0.14930457739016179, 1.4027181892698217, 1.6421077589986135, 1.9219366012853558, 1.92398267912015, 2.4761148745657646, 2.609343375609877, 0.6808819103020967, 0.5430059614435407, 0.9773558698636258, 0.33261594563987185, 2.5909413585541055, 1.3327052943741828, -0.031997891365239006, 0.3336827834553743, 1.7237994164444208, -0.477772107753317, 2.7222673909870254, -1.3708853733064381, 0.5375008468000306, 0.8000700768815832, 2.694175758191056, 2.0388397119820936, 1.828740453685575, -0.0946920440273713, 0.48460620188457915, 0.5112229550865932, 1.3957115324169533, 0.5293268550178198, 1.5428637203582198, 1.1405564032067497, 1.5919119062445883, 2.165157123894522, 1.908090298262139, 1.3094161851420503, 1.3644260771353478, -0.471211744279153, 2.211265496493013, 1.9895993295904706, 1.6424744465726187, 0.7631821569631416, 1.2898111955666192, -0.09601204787105355, 2.5576792718222423, 0.6931682556114053, 1.9308732890656914, 1.1563251439554436, 1.9988621603282146, -1.0199261739422751, 1.0309480882678301, 3.2461880135582653, 2.6003972988892943, 1.904149594851582, 0.6255995520010933, 2.0920554114388015, 0.8858297322395192, 0.9700453538734701, 0.035342411104943405, 1.0888229622787884, 2.1320968808346894, 2.817310819725607, -0.5251056410143606, 0.07126368446721532, 1.394111930370858, 1.8439892521191967, 1.87411408181786, 2.485216584147117, 1.039864207491586, 0.010340712488731363, -0.44561020077656255, 0.2972729345727071, 1.558558153281572, 1.030268671108619, 1.0436401324657378, -0.56410176347928, 2.1055931452894843, 1.140293425700544, 0.8506865781283248, -0.30682134116114845, 0.9351907464388698, 1.7524362008174794, 2.1687689170111204, 1.6160257087476715, 0.45542706817620837, 1.5036366361778613, -1.147132099966032, 0.6996818574345273, 1.954164514190924, 0.9483020606247683, 0.29377664593192343, 0.34565812894489656, -0.35996821367227416, 0.8515773528408002, 1.102382198347653, 0.34136791904496955, -0.5748799874627346, 1.0712313974590144, 0.5607822351781873, 1.134907116338128, 0.9393145667980793, 0.4801747778264611, 1.829223585637112, 1.1870689379766, 1.8719934654268633, 0.6322644167240337, 0.7926432313059953, 2.160248131829619, 0.30152624178685383, 0.11589085897007867, 0.796701755423195, 2.3727496662488736, -0.1946834680165519, 0.7447938655603754, 1.2652570235804022, 0.5309293820561816, 2.4242834142738574, 2.055054548942551, 1.5792986450796365, 1.539723679738307, 0.9295264261225442, 1.1940210045057993, -0.08110934782411294, -1.0678183764773013, -1.5430931894747788, 0.0341283657449033, 1.4705714594002974, 0.8767580611488662, 2.40943442405091, 1.5344685350685112, 0.19617535175725476, 1.1832419104587184, 1.3441337048280655, 1.7162624964685291, 2.3597392550370184, 2.0833921435833522, 1.5248649917251287, 2.0237023365900986, 0.21864230438305376, 1.9063432353971521, -0.12390112492288452, 0.8047054202038013, 0.4350484733447796, 1.2043198839883198, 0.9043869765880796, 1.4826650260413066, 1.984950103005851, 1.5425042296645155, 1.2068825297567904, 0.06094685629802932, 1.645183496480902, 2.415910640492677, 1.318159327409885, 1.0111680095063278, 0.6247048302865794, -0.14057848948855445, 0.7961165310201455, -0.6970961432894554, 1.4010583076936327, 0.539812951102121, 0.6827716117785245, -0.33833062682046355, 0.6003035091640092, 2.122969371585736, 1.4766135070198145, 0.8485839320135734, 1.2447846196034997, 1.554967164998613, 0.1339932910173739, -0.5170730369056327, 0.1833869701790134, 1.1247638628773853, 1.6273984856213408, 1.1980786170315993, 0.7302593933883423, 0.3139384734563212, 2.511322799203203, 1.1919220050361132, 0.9145811671669335, 2.0264193771346006, -0.013793740969723078, -0.5482616682308352, 2.1574219459938258, 1.406542138266695, 2.2199431992328313, 2.0625720057333625, -0.006308005593086863, 0.5116922132885082, -0.027994073217439075, 0.9704924013809287, 0.29893646902081294, 2.3964657004557335, 0.6815831462816963, 2.3066170692950476, -0.37439924847412853, 1.4625479227977496, 1.6421210038765839, 0.16381288546167505, 1.6208299452898662, -0.208192458358039, 0.7870213434497887, 0.14446733009438406, 1.7471865901250934, 1.277479241337466, 1.3898651580657173, 2.383424078555975, 2.107272972003804, 1.7541879610324034, 1.492719346567025, 0.671890711639759, 0.9583925046296061, 1.2618572072457253, -2.3359015494690962, 1.2410789764058132, 0.9758285736417913, -0.32486130385023904, 1.0092900683066945, 2.9435840873775634, 0.09034797416696161, 1.2288492080959075, 0.9533752347853308, -0.004704860706795877, 2.097075306412628, 0.8024713957087851, 1.6361804886840359, 0.4866033192239385, 2.267273646318382, -0.09792636306704638, 0.7766015836579091, 0.4694196443527907, 1.764187616135564, 1.9964626154129834, 0.8206719721269684, 1.9846557981376103, 2.457437949370436, -0.5941763252676036, 2.0941668356151313, 1.5451408795105408, 1.83922514466879, 0.917856954427135, 1.0317839048706399, 1.2909134015923316, 0.35549229812432814, 1.7261275213503737, 2.6828883889478314, 0.0646027400177065, 0.9174096745834879, 0.630756108384243, 0.3087875622088828, 0.5748070467271157, 0.7975568258166643, 1.8760457766719285]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 2\", \"marker\": {\"color\": \"rgb(44, 160, 44)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 2\", \"scene\": \"scene2\", \"showlegend\": false, \"text\": [\"Complementary_64_2\", \"example_4\", \"redundancy_32_2\", \"mutual_error_2_2\", \"Complementary_79_2\", \"Complementary_8_2\", \"Complementary_7_2\", \"redundancy_54_2\", \"Complementary_29_2\", \"example_34\", \"example_35\", \"mutual_error_25_2\", \"redundancy_6_2\", \"example_47\", \"Complementary_5_2\", \"example_53\", \"mutual_error_11_2\", \"redundancy_20_2\", \"redundancy_31_2\", \"example_71\", \"example_80\", \"Complementary_85_2\", \"redundancy_15_2\", \"example_91\", \"redundancy_37_2\", \"redundancy_50_2\", \"example_99\", \"example_102\", \"redundancy_14_2\", \"Complementary_34_2\", \"example_106\", \"Complementary_26_2\", \"example_119\", \"example_121\", \"example_122\", \"example_123\", \"Complementary_21_2\", \"Complementary_86_2\", \"example_130\", \"example_134\", \"example_138\", \"example_143\", \"Complementary_39_2\", \"Complementary_95_2\", \"example_150\", \"mutual_error_7_2\", \"Complementary_27_2\", \"redundancy_59_2\", \"redundancy_9_2\", \"Complementary_93_2\", \"example_166\", \"example_170\", \"example_183\", \"redundancy_55_2\", \"example_187\", \"redundancy_1_2\", \"example_191\", \"redundancy_16_2\", \"Complementary_30_2\", \"Complementary_80_2\", \"Complementary_25_2\", \"Complementary_73_2\", \"redundancy_41_2\", \"example_207\", \"example_214\", \"example_216\", \"example_217\", \"Complementary_67_2\", \"Complementary_51_2\", \"example_230\", \"Complementary_75_2\", \"Complementary_69_2\", \"redundancy_46_2\", \"redundancy_7_2\", \"Complementary_96_2\", \"example_243\", \"Complementary_59_2\", \"example_251\", \"example_252\", \"example_253\", \"example_258\", \"redundancy_3_2\", \"redundancy_28_2\", \"example_269\", \"Complementary_6_2\", \"Complementary_84_2\", \"example_276\", \"Complementary_66_2\", \"example_282\", \"example_288\", \"Complementary_88_2\", \"example_295\", \"mutual_error_31_2\", \"Complementary_87_2\", \"example_308\", \"example_313\", \"example_315\", \"example_317\", \"example_325\", \"example_330\", \"example_337\", \"example_339\", \"example_343\", \"Complementary_52_2\", \"example_347\", \"mutual_error_23_2\", \"example_358\", \"example_366\", \"redundancy_62_2\", \"mutual_error_29_2\", \"redundancy_22_2\", \"Complementary_20_2\", \"example_379\", \"redundancy_52_2\", \"Complementary_56_2\", \"mutual_error_28_2\", \"example_387\", \"example_389\", \"redundancy_40_2\", \"mutual_error_32_2\", \"example_397\", \"Complementary_40_2\", \"mutual_error_10_2\", \"example_402\", \"Complementary_24_2\", \"example_406\", \"Complementary_58_2\", \"example_413\", \"redundancy_63_2\", \"Complementary_2_2\", \"example_418\", \"example_419\", \"Complementary_32_2\", \"mutual_error_18_2\", \"example_435\", \"redundancy_53_2\", \"redundancy_0_2\", \"example_452\", \"example_454\", \"example_455\", \"example_458\", \"example_459\", \"redundancy_64_2\", \"Complementary_28_2\", \"mutual_error_22_2\", \"Complementary_9_2\", \"example_471\", \"example_472\", \"redundancy_30_2\", \"Complementary_48_2\", \"Complementary_60_2\", \"example_484\", \"mutual_error_24_2\", \"Complementary_12_2\", \"redundancy_18_2\", \"redundancy_60_2\", \"example_496\", \"example_498\", \"redundancy_36_2\", \"example_504\", \"example_505\", \"redundancy_57_2\", \"example_509\", \"Complementary_14_2\", \"example_520\", \"example_524\", \"Complementary_82_2\", \"mutual_error_20_2\", \"Complementary_61_2\", \"example_553\", \"Complementary_18_2\", \"Complementary_33_2\", \"Complementary_4_2\", \"example_561\", \"redundancy_65_2\", \"Complementary_68_2\", \"example_564\", \"example_565\", \"Complementary_37_2\", \"redundancy_38_2\", \"redundancy_39_2\", \"redundancy_47_2\", \"example_577\", \"mutual_error_13_2\", \"mutual_error_26_2\", \"Complementary_74_2\", \"example_607\", \"example_608\", \"example_609\", \"Complementary_0_2\", \"example_612\", \"example_614\", \"example_619\", \"Complementary_16_2\", \"redundancy_49_2\", \"example_627\", \"example_632\", \"Complementary_57_2\", \"Complementary_78_2\", \"Complementary_19_2\", \"Complementary_47_2\", \"Complementary_53_2\", \"Complementary_98_2\", \"Complementary_10_2\", \"Complementary_81_2\", \"example_648\", \"Complementary_17_2\", \"Complementary_72_2\", \"example_658\", \"mutual_error_8_2\", \"redundancy_21_2\", \"example_663\", \"Complementary_1_2\", \"example_672\", \"example_674\", \"example_676\", \"redundancy_24_2\", \"example_683\", \"example_686\", \"example_690\", \"Complementary_62_2\", \"example_698\", \"example_699\", \"redundancy_56_2\", \"example_701\", \"example_702\", \"example_708\", \"redundancy_11_2\", \"Complementary_97_2\", \"Complementary_42_2\", \"example_724\", \"example_725\", \"example_726\", \"redundancy_35_2\", \"Complementary_49_2\", \"mutual_error_21_2\", \"example_735\", \"example_738\", \"Complementary_44_2\", \"mutual_error_17_2\", \"example_745\", \"redundancy_5_2\", \"redundancy_58_2\", \"example_749\", \"Complementary_22_2\", \"mutual_error_19_2\", \"example_761\", \"example_763\", \"Complementary_36_2\", \"example_766\", \"example_767\", \"Complementary_71_2\", \"Complementary_15_2\", \"example_771\", \"example_772\", \"Complementary_76_2\", \"example_776\", \"mutual_error_27_2\", \"Complementary_38_2\", \"example_783\", \"example_784\", \"mutual_error_15_2\", \"Complementary_77_2\", \"example_791\", \"example_794\", \"redundancy_19_2\", \"Complementary_70_2\", \"Complementary_13_2\", \"Complementary_11_2\", \"Complementary_63_2\", \"redundancy_61_2\", \"Complementary_45_2\", \"example_815\", \"example_818\", \"redundancy_26_2\", \"mutual_error_9_2\", \"Complementary_35_2\", \"example_838\", \"mutual_error_14_2\", \"Complementary_83_2\", \"example_841\", \"mutual_error_6_2\", \"mutual_error_4_2\", \"redundancy_17_2\", \"Complementary_54_2\", \"Complementary_90_2\", \"redundancy_2_2\", \"Complementary_31_2\", \"redundancy_4_2\", \"Complementary_23_2\", \"Complementary_50_2\", \"Complementary_46_2\", \"example_871\", \"example_873\", \"redundancy_51_2\", \"example_875\", \"example_877\", \"Complementary_89_2\", \"example_879\", \"Complementary_41_2\", \"example_888\", \"example_889\", \"example_890\", \"Complementary_3_2\", \"Complementary_65_2\", \"redundancy_33_2\", \"example_905\", \"Complementary_43_2\", \"example_914\", \"example_918\", \"example_921\", \"example_927\", \"example_928\", \"example_930\", \"mutual_error_5_2\", \"example_942\", \"redundancy_45_2\", \"example_944\", \"example_952\", \"example_955\", \"mutual_error_30_2\", \"Complementary_55_2\", \"example_961\", \"example_971\", \"Complementary_94_2\", \"Complementary_92_2\", \"redundancy_29_2\", \"mutual_error_12_2\", \"redundancy_10_2\", \"redundancy_34_2\", \"mutual_error_16_2\", \"Complementary_91_2\", \"example_995\"], \"type\": \"scatter3d\", \"x\": [1.2167912776044933, 1.6176206650846505, -1.6799844859644688, 1.2017851073709533, 1.7070588584012034, -0.05320639604266275, 0.7556001644624895, 1.557029622487803, 0.608006375212285, 1.0179725793683083, 1.6365420380756674, 1.3019306350030213, 2.972524773046905, 3.0725985407625185, -0.3348268175884932, 0.9456591589633503, 1.7275473737906202, 3.111613218417973, -0.22917103351831725, -0.6854923928685774, 1.748120032251875, 1.2305415868507292, -1.7564627970907112, 1.0807137267264466, 0.8868293517099365, 0.5073451467865966, 1.9132806180402842, 0.6349449671950294, 1.625076797004073, 1.4516624732841938, 0.06299301875389263, 1.688108024404269, 0.3453969790710121, 2.6346055117612015, 1.0974362869786585, 0.49246865647423155, 0.8627089320896334, 1.4930864020479377, 2.112268293035107, 2.215873562198981, 1.4663216491832922, 2.1706787887065, 0.5603838469829939, -0.03264269812205778, 1.4053541693291354, 1.0115938593253715, 1.8509369277757801, 3.6706753748630647, 3.220321858004882, 2.8672312871808083, -0.800770701922636, 2.1557327121208925, 0.44673234131323936, 1.611106095446024, 0.08871994309704145, -1.160912602766722, 1.2438269266167647, 0.6403073342991765, -0.05038410734980636, 1.7354432862041587, 0.516516091596184, 2.797016516497954, -0.25514906720515773, 1.9386110786254933, 0.7589457854060357, 2.758272157875278, 1.9983045685783836, 0.7537098573912, 0.07528811959882842, 0.9227104998506175, 2.9961523197549256, 0.573213529076575, 0.5085895833104375, 1.222387814134697, 0.9850295819690459, 1.758282386117921, 0.3779351650550452, -0.5410330691004628, 0.48060867790945705, 1.0192188522172703, 0.14056181320468908, -0.6139014554789917, 0.3344661329913208, 0.8214177304857746, 1.6196566917631479, -0.1579336997313061, 1.725923611648402, 1.551126604086956, 0.1536530084873401, 0.14389917256276952, 1.0561839183923203, 0.9618304130335718, 0.22658507338498413, 3.231496335202466, 2.293933523105714, 1.590688044844191, 1.8742401692332415, -0.6540355002607023, 1.2425959371534603, -0.07050813463541994, 1.0466817341619612, 1.5505569328262319, -0.8642698372564723, -0.4732066298752666, 1.7752307288377538, 1.6015800454021791, 1.2607061619712754, 0.6478195518804126, -0.9327341425689386, 1.1811122888894299, 0.38040001989631, 1.4136478982823735, 2.259045004063905, 2.854662133859585, 2.041912604177478, -0.13150530135216254, 2.3303435074897187, 1.3587361439966161, -2.0105225163135167, 0.3568495898773447, 2.5731360220429025, 1.0436436368795876, 0.6001773164045324, 1.6400560810329172, 0.11402991752587133, 0.2853871878757034, 0.6277434798742951, 1.4221181149044622, 0.7297076823755049, 1.1936553166314927, -0.14141579222721923, 1.2032477313054004, -0.48980306536517415, 1.479354258818502, 0.6777588461642792, 0.05902273871728303, 2.6018987915899814, 1.571530696900742, 1.911750123972265, 2.4356771037997964, 2.455409482172029, 2.068704980134618, 2.845399681250379, -0.13260729052125386, 1.5130478674102508, 1.118594423056874, 1.683861113931992, 0.9955182036232086, 2.3548929315218388, 0.15097656791796465, 1.792740176305772, 2.119566116981092, 0.45114614036774703, 2.1389106114800476, 2.583936440963483, 0.6137629112886326, 1.6942110429452255, 1.9230334372357292, 2.7831145199925063, -0.5095516224699548, 1.819973642346786, 0.8584155807056619, 0.9220919536686816, 2.9396914427283845, 0.20937600872704754, 0.39434436648936766, 0.8944070407113217, 0.8515705989358143, 1.175365240655334, 1.8708175518634642, 1.1016077186900108, 0.034350360392699786, -0.3206416595298065, -0.6792080900537842, 0.29616674193053694, 1.0192593090312123, 0.35147837049534647, 2.733441339384263, 0.6392954995504265, 2.32240432481173, 1.6939832403270372, 2.0386542873197353, -0.06270027552789914, 0.8183390728141953, 0.5138635331511676, 0.049824537930205026, 0.3846126902374868, 0.9180575176081687, -0.6510533950619155, 1.0843410321982112, -0.3126605607992783, 0.06384955392512082, 2.450799466308739, 0.9011273743405175, -0.7353107035927715, 2.0251346045575813, 0.7258885246192786, -0.967094562906154, 1.020841482137772, 2.0945732912205672, 0.7757590444518137, 1.0716641397508513, 0.16202078532068154, 2.634862851160347, 1.2018871942914828, 1.2971671472249076, 2.5857745680463387, 1.0939064816604498, 0.5087755853828871, 0.8076968157183728, 1.8967077783687034, -0.1074614086276906, 1.809310903931301, 1.1650406365377393, 1.4412398221702711, 1.4550450942422217, 1.7240750507443041, -0.14884011961586352, 2.9178480016066657, 1.2742150351301673, 0.7074052500923897, 0.9844528463564254, 1.7834681062089173, 0.6477826811025432, 1.1294466425474443, -0.6001892867621594, 0.8572250468293068, 4.942331010806686, -0.716497577143866, -0.43842671877540407, 2.1185414093359496, -0.20996502866717615, 1.2896698121381407, -1.2082780198800926, 1.804787443527399, 1.1305422924283584, 0.08168386267159877, -0.47908928809752194, 0.9121916483651464, 0.8469194955185972, 1.1007628229015989, -0.29296601240352804, 0.16973784927994828, 1.9831784809990212, 1.3742167348024783, 0.39176085193546073, -0.009203152437389894, -0.4871542357097709, 1.10413338802134, 0.5695852913127156, 0.5043512471206595, 0.3931746582136012, 1.5033287738455665, 0.9552912432404147, -0.9185894235593031, 0.8805455987436649, -0.46350310330440614, 1.3342999637510085, 1.0803850387636549, 2.4990120682335486, 2.3542109252450834, 1.1938090083311184, 0.7738247123192391, 1.0630776754292401, 1.4159226590575908, 3.036042832840112, 1.2712114752799735, 1.3898476493774197, 1.24540974177134, -1.0092153440255616, 2.901913148662501, 0.41559022531176126, 1.3651606324751693, 1.6019362371032422, 2.473737578076169, 1.9845698459571985, 0.5194565743932242, 1.924098128840789, 0.662250967298065, 1.5687696953394488, 1.8782139981549948, 1.6306798620978804, 0.6719296296353234, -1.9362009437781151, 2.7175802050443183, 2.987534161023367, 0.847622502728823, 1.1381475563675751, -0.09039219880743876, -0.12750424708649621, 1.6967578627143014, 0.39403701605249, 2.2838887832702683, 1.9546668160293867, 0.3461029057680356, 0.4296032604032568, 0.9944128660318169, 0.40558630142202723, -1.3919818895561402, -1.3359536188014358, 0.47383462893981254, 1.798504904615669, 1.9595080570233296, 0.7371831574738849, 2.116430748782207, 2.0788495665089632, 0.1100374434428586, 3.8906429903991375, 2.4536341508749477, 1.0160366630134783, -1.1811752376656774, 0.28972910168809207, 1.9191861536769532, 3.0988412303524395, 0.7856110680232217, 1.5745617175367155, 1.8027275724376977, 0.5394765788386862, 1.4249196023936836, 2.358357166430605, 1.6957457924726427, 0.6881729471254467, 2.4478577661513636, 2.6382811831364217, 1.513042923365815, 0.057036627550235974, -0.1554960421287641, 1.4955165241448958, -0.1963398992102119, 0.48889478767121486, 1.0284689404384104, 1.0170688251997262, 0.5010212569441146], \"y\": [1.5198290026710266, 2.2223452564679747, 0.7064331634091139, 0.602259715754468, 0.09679639110454863, 0.89141583821961, 1.5558584593174067, 2.7440102340757324, 0.1749881015938134, 3.6980404568174263, 2.2186081743344968, 0.49437941408081154, 2.3824333409054326, 2.9046798820816377, 0.8759227738969604, 0.17185986238710327, 0.85102833523564, 1.5227667423667182, -1.2994555236698986, 0.6818192824733171, 1.0136556638374574, -1.161055997349271, 2.4225951977899767, 3.340722611525677, 0.5493318224319925, 2.683972030069338, 1.568352148542643, -0.4747785412383949, 2.961104291291467, 0.6804875500809651, -0.32940510332508177, 0.4460653161577577, 0.788089406522519, 0.8031888769023731, -1.007303899675303, 1.8341005719100685, 0.8198973986486422, 0.42081385885306977, -0.05951858469417659, 1.4880134863760097, 2.422258508576327, -0.05104195028669367, 1.199982199863687, 0.8766884009338395, -0.13858073373438273, -0.025943339699428192, 1.5368246839556758, 1.4136263777143354, 1.6062371934962887, -0.563929264900654, 0.6588002673067044, -2.3078999524973884, 3.1511640414257696, -0.1328828133542732, 0.7947074783714859, 0.5124554435934073, -0.243358737609354, 2.5206009017632116, 0.219739274521202, -1.01149132546182, 0.18206270957351778, -1.0219935227480632, -0.4660382014488722, 1.5040938319439419, 1.2739357369313382, 1.4402480302103982, -0.5023889816895173, 0.561591111963293, 1.3073093537363383, 0.8115231811055086, 0.18784286946593265, 1.7055485647959867, 2.34648059555603, -0.9010744288179857, -0.1704617092886238, 1.8638273441557671, 1.8221564326571629, 2.4050555856028932, 2.6318888483702207, -0.6950177929753076, 2.416834082138803, 2.492264509475059, 1.7582447761547977, 2.40220958950327, 1.4546727409425804, 0.9356024593752921, 2.4926099474640355, 0.040267665167065925, 2.236619742142975, 0.045290166307077384, 0.9252187033486918, 1.7681169524306939, 1.64837277770979, 0.6475210544133521, 1.1795233015374615, -0.4089842999517348, 0.9883898855449564, 2.1093715694592854, 0.40627080631425805, 0.06491716357245303, 2.2803520208371357, 0.2326525140618355, 3.244682255430256, 1.3519610742080557, 0.6288080487384736, 0.11434760224673468, 0.8357862159585057, 0.9294804472725808, 0.7500815151604714, 2.0018704135410883, -1.8183042862021788, 0.05137809879103317, 0.11283741163714545, 2.1312990502497464, -0.1482072919717099, 1.01578477336065, 2.887858987958639, 2.7804527512924064, 1.6893825429756253, 1.2615185967258302, 2.5452264458848193, 1.1398252713260533, 0.9004493168150316, 2.688157052902791, 1.5038599341724908, -0.33834182532193946, 0.6763509552908389, 1.8983461250755291, 4.096695513772053, 1.0557397733263678, 1.5002383506982397, 1.4380052585187268, 1.0487166793938072, 0.4543446056374155, -0.3126082671526902, -0.3882924314848524, 0.21169073522503656, 2.3878459703459733, 0.03823757922679816, 1.1225551569507715, 0.9548144715748379, 0.6276816464295158, 2.0286987158898997, 2.2757718207583224, 1.2472881256277393, 0.824541564958237, -0.2864694935694123, 2.2344569787646913, 0.3495260005407831, 2.4653794274985183, 3.342857008287408, 0.5217673921415715, 0.5135073844545147, -1.2259354179580777, -0.7562302344795768, 2.118912271707174, -0.44853094203370025, 1.5512559223347098, 1.0744066719261474, 1.2305336672113392, 1.946243671615314, 2.770641872462673, 1.9437016343998412, 2.001326134799592, 0.7176879580750705, 2.2032127822922853, 1.0984376239245837, 1.8247017407860975, 1.240487649467761, 1.7435106703345966, 1.1440309019792263, 0.8105004236078709, 1.1396819652852321, 1.9751071432888088, 1.8854705829400955, 0.8233249072917574, 2.6516389486858793, 1.2341941514982053, 0.7803129549761602, -0.7993566812164734, 0.02759626038937868, -0.9921855663492136, 0.5845495169612505, 0.7526070600525643, 1.4280587476511655, 1.2696036940632442, -0.9102541812810507, 2.9373842411793847, 1.4150725096990842, 1.849456255104331, 2.0214581040153767, 0.19035554029635493, -0.11714176120461284, 0.31406549605038203, -0.275870999901924, 0.09540878628692606, -0.7210471256296629, -0.47038013467571727, 1.4932541761930318, 2.132842211712895, 0.7891652813454197, 1.6966315012177469, 1.2515928072617375, 1.9017646879402839, 2.040026719862688, 1.938595803175112, 2.055798238466572, 1.300175049284521, 1.674505033154822, 1.544612504184037, 0.33063376088124663, 2.2014170317870247, 3.480650917512143, 1.1585496531596429, 0.822013792048655, 2.8223928325513974, 3.010903035413434, 0.18104755502627912, 0.8709200119531476, 0.930780592058482, -0.9890341961712958, 2.0681610348759842, 0.3866363993767641, -0.6647890014327629, 0.7574835504739781, 1.7065207734206274, -0.3443404721448917, -0.20430893253951, 0.4781694585118518, -0.2699230873275471, -0.5075851347639375, 0.8852111783654497, 0.10753503228434236, 0.3474020906685117, 0.67194354932324, 1.214864709463865, -0.4899362046402225, -0.10983948926990728, 3.079156698466804, 1.7156090679730909, 0.8123060685782348, -0.017245369286841505, -0.8575714451669172, 1.0123900761940074, 1.3678195684438652, 1.311389937696427, 3.2187433575308493, 1.718331543194246, 1.9163289534385712, 2.368189023748578, 1.7168795348194514, 0.7389965106483204, 0.9032505946696451, 0.11388734865234973, 1.0100670085225807, 0.3646934656317964, 1.9626135747116324, 1.5177207640270725, 3.2033098152577577, 1.928851246050224, 0.7122929444505235, 0.993599247396862, 0.9532505460972978, -0.6964581544464707, -0.09075371582224645, 0.5831003638806108, 1.470967069785162, 0.6367508177471696, 2.0553655467507066, 0.7820316150392707, 0.47796571015824363, 2.058136112567422, 1.8248840377287843, 0.9585420376702144, -1.4861665677213565, 1.6141058052896842, 1.5763560176138087, -0.5714891875762731, 0.20181410610303396, 0.3701137624272849, -0.741716619866104, 0.6295722855303296, 1.0486838849015436, -0.312840273092726, 1.63936284348663, 1.1180494666897745, -0.5449093695931155, -1.4153632620785297, 2.6133589290794843, 2.305776578287521, -0.16033685610015147, 0.8738584501226818, -0.02643411063588519, 2.2553231895309382, -0.22422500835558057, -0.11758604262332417, 1.0335515968182427, -0.14506791648253992, 1.3469602968844812, 0.18468888521189253, 1.1869270525544977, 1.915529791724743, 1.7577341142099039, 1.0448231319322847, 1.963737877173107, -1.1592689353197678, 0.7238679135188348, 1.7037958837508185, 0.8279686378843305, 1.8995987379794066, 1.113160011392783, 2.669383459547647, -0.059340687274826553, -0.030095076489489836, 1.0475146347612885, 2.124414149970889, 0.33221760571171, 0.6618132830175315, 2.6766508027613596, 2.0634357218674593, 1.191442047344609, 0.6723924739078883, 0.7208941436400534, 0.9553723769335578, 1.7769218547601917, 2.4773725606308608, -1.5701475485803527, 0.16699174416056006, -1.3164448569274905, -2.635200227540102, 1.9790358254675167, 1.79668416009162, 1.2868638428193504], \"z\": [0.31541438085866935, 0.616056377936541, 1.9011117810621716, 0.4155007843780497, -0.7189099560288814, 1.5980922727774547, 0.712415852407903, 0.00395505983010791, 1.1871015372222726, 1.3116342988074248, 0.6498089696459983, 1.0801597604875535, -0.3443460048305518, 0.9935384059209602, 2.6361051105963194, 0.30843859730622636, 0.21317236926496264, 1.925290549685498, 2.801045196539334, 0.7339833044396531, 2.2860501038634258, 0.5788972278381682, 1.4868948111619644, 1.3520115910908643, 3.259602027742478, -0.1363362231559908, 1.7932257178100985, 0.8354854682038301, -0.6600681494056964, 1.51486117993516, -0.2914555644869643, 1.7293697951297506, 0.2901573405552761, -0.2673369659665712, -0.7478845946618555, 1.9118135935708018, 0.9924353403253509, 1.822842073216358, 0.6745456710949937, 1.0208040237725442, 1.2198701423739455, 0.30705676985293195, 1.9574098452321897, 0.5098326846234398, -0.2643373017623569, 1.024647378210543, 2.6546347484020885, 1.9901247868928167, 0.7970760434657722, -1.217283710253568, 3.30408978354919, 0.8486370964242577, 2.806282296382599, -0.5730085426495004, 2.4844340384402286, 2.7967534654264914, 1.0800412692152601, 2.2617611603950003, -0.5024245976435517, 1.9291895615477108, 1.1405089042856054, 1.5443227047657362, 0.9998683137730622, 1.153649129296619, 2.2409391873848064, 0.17665046163736386, 1.1071864647824161, 0.9475173176892859, 2.8344313331400874, -0.42886615044966225, 1.21092616196393, 1.1555250375836563, 2.559741947283964, 1.0832946375468078, 1.132928464827501, 1.597472933896761, 1.2672106551450557, 2.370695988904976, 1.2962953655036675, 1.3673193878491967, 2.623843744269257, 0.7463595461074981, -0.7548708515422513, 1.4282543975168633, 1.551398342778242, -2.329503797508129, 1.9088890363692874, -0.663689978196383, 0.5373552581187018, 0.7334277150710147, 2.0445264298181405, 2.2330391334509456, 0.6130151611218402, 0.6221305460386488, 2.8489386185618586, 1.8240865805442636, -0.2841982109111607, -0.13918212426374965, -0.19546971666551194, 2.085671909183638, 2.5414571948322537, -0.1246556883329939, 0.5603179910815503, -0.17669818577090646, 0.0565301755918437, 1.2515879179988447, -0.8885234127154062, -0.5648544249554606, 2.1622611105711576, 1.000160507407085, 0.7873102656948813, 1.0731042543807434, 1.9899508544001079, -0.3925125671384784, 2.838754500912114, 0.5955377120758963, 1.3312227598598763, 0.4625936210961862, 0.8406414252435357, 0.6691894804777281, 1.4330463786039467, 2.9696566849510955, 0.37190216492021666, 1.3663274835410772, 1.0851959299707874, 1.1391684617326208, 0.7733067301012807, 2.304940204008033, -0.5693563427251942, 1.6647630897243626, -0.24830280186931808, 1.52000438080081, 2.1418965369680096, 1.7786827457257894, 0.923006335861662, -0.3184013824734664, 0.12983684222009784, -0.11939087974590978, 1.4345400972542903, 0.48436596591967285, 2.002579814271594, 2.565454659959112, 0.07828216351808492, -0.4089039044254048, 0.35409182673770334, 2.8907298485940296, 2.4729835776298295, 1.427837860536044, 2.249821097053679, -0.7956132206423168, 1.1447654911176404, 1.290871190644086, 1.6642752042571254, 0.21244855937129348, 1.9051191831693894, 3.221203394271961, -0.30551243758297164, -0.13928615921026788, 3.4719337724318575, 0.22531594233615515, 0.3119178734196819, -0.13394633596780414, 2.5065286363122667, 0.9102744236722214, 0.056294568569923875, 0.4504456041404138, 0.7740167966477512, 1.5858129835546557, 1.2832249586107185, 0.3244314714087837, 1.0181184776258714, 1.3238392663274503, 2.4533971058146764, 0.26761725440492, -0.5301309287433318, 1.7969359256585957, 0.879728060674234, 1.064048845017702, 2.152934176974773, 1.8265839651372482, 3.133645604681897, 0.711969260560779, -0.336331889215445, 2.167195983359095, 1.1123379487323768, 3.262568808335318, 1.598174602990567, 1.7310375253855357, 0.8307863418344532, -0.865839755203436, 1.8223422986875515, 1.3198879678544118, 1.261625263580771, 1.4733411833851433, 0.9665251896730941, 1.9328287040921976, 0.01758375951906299, 2.361538202848111, 0.9710984765021391, 2.105313901493288, 3.2354274347569607, 1.6373330412721927, 0.5121309119262046, 0.929366020348026, 1.3941265104341478, 1.8710452931452175, 0.6759278161982182, -0.9793296949964019, 0.7248175626136539, 0.7074838064506582, 2.7514090737489107, 0.45512992917648787, 0.5030368670794987, 2.175454012339135, -0.9550861139181497, 2.086530557898822, 0.6199463493996933, 1.7034935227111718, 0.030567556711679877, -0.32643482730799644, 1.9359731592656175, 1.9613603598188132, 0.19261994371588842, 2.3427953154217054, -1.313859495606875, 0.8288288047584652, 1.6590259520210962, 1.423079960324353, 0.08882993997515543, 2.196133717091107, 1.9084451656457726, -0.5028017113050698, 1.9374062824694955, 3.317516231196855, 1.1104687558861357, 0.6108649040234362, -0.26387156073371654, -0.0037878154636363792, -0.17581098033919784, 0.6067635908371546, -0.39934304778587504, 1.991646378260802, 1.6568660633095018, 1.2108723585105148, 1.359485939773858, 1.4695964832944008, 1.7287415864657592, 0.8988023726824681, 1.4086847622754086, 1.9011436305292249, -0.8920849255849255, 1.9203961612544849, 0.5715782699999642, -0.6196898655166265, 2.6984587023755653, 0.0365009394839485, 1.0420390369972308, 0.7432661965199467, 1.6321516296907728, -0.24632947774842462, 0.6162470190869906, 0.49876204249992173, 0.20025711188946826, -0.29880355405186143, 0.24897319318097777, -0.041005218283787004, 1.7349648157519848, 1.8471112074394023, 0.9777997765646752, 0.355377868921527, 2.9192813001444593, 0.6874225746053093, 0.1269474403227726, -0.1376002049642353, 2.1200566378997827, 0.6401595392196122, -1.342246870407298, -0.6455122451253463, 0.2677175895697975, 1.3479160781208834, 0.14569034958563742, 0.15811564971465664, 1.4634603556662171, -1.187380914976043, 3.847009588957641, -0.21696257684351972, -1.2593862579041861, 1.0146559098701267, 1.8935422058891094, 2.008991476931648, 2.431749484241079, 1.3266709215421677, 0.49230802161661325, 0.2665379088310357, -0.357698726867552, 2.547640773595271, -0.30300192181480456, -0.8259010941126057, 0.8475003216900806, 0.5988268282526109, 2.281978362376686, 2.264050170507165, -0.290167414451457, 1.6626783576861648, -0.47811371438768924, 0.5009917355702108, -0.08862772067362501, 0.6321367063035164, 0.2656799976866263, 1.9151721507186228, 1.7946412035736587, -0.3845966247273489, 1.7164302036574002, 1.1466325876461747, 0.03958307959077112, 2.2129839285493706, -1.196446261643099, 0.4239748295233322, 2.0062507994327152, 1.6061496997584692, 1.0069247210437144, 1.3459436679800665, 1.078115692483465, 0.8344210274324055, 0.4262444495956239, 2.011097005586991, 2.0270044117876562, 0.5997577170681145, 1.6228614849614957, 3.0920985716179086, 0.35684600279888823, 1.7180620438372025, 2.3252636031273886]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 0\", \"marker\": {\"color\": \"rgb(31, 119, 180)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 0\", \"scene\": \"scene3\", \"showlegend\": false, \"text\": [\"example_2\", \"redundancy_40_0\", \"Complementary_79_0\", \"mutual_error_24_0\", \"example_9\", \"example_10\", \"example_23\", \"redundancy_18_0\", \"example_29\", \"example_30\", \"mutual_error_6_0\", \"example_33\", \"example_39\", \"Complementary_53_0\", \"Complementary_70_0\", \"mutual_error_28_0\", \"redundancy_62_0\", \"Complementary_98_0\", \"example_60\", \"Complementary_42_0\", \"Complementary_89_0\", \"example_66\", \"mutual_error_27_0\", \"example_70\", \"example_72\", \"example_76\", \"Complementary_78_0\", \"mutual_error_16_0\", \"redundancy_25_0\", \"example_81\", \"example_82\", \"Complementary_22_0\", \"example_86\", \"example_88\", \"example_96\", \"mutual_error_9_0\", \"example_101\", \"Complementary_10_0\", \"Complementary_81_0\", \"example_110\", \"example_118\", \"Complementary_58_0\", \"redundancy_8_0\", \"Complementary_74_0\", \"example_137\", \"example_139\", \"example_141\", \"redundancy_5_0\", \"Complementary_0_0\", \"Complementary_14_0\", \"example_165\", \"example_168\", \"example_174\", \"redundancy_55_0\", \"Complementary_8_0\", \"example_196\", \"redundancy_11_0\", \"example_199\", \"example_204\", \"example_208\", \"Complementary_18_0\", \"Complementary_77_0\", \"example_211\", \"redundancy_6_0\", \"example_213\", \"Complementary_49_0\", \"example_218\", \"example_221\", \"redundancy_48_0\", \"redundancy_30_0\", \"example_231\", \"example_235\", \"example_237\", \"Complementary_54_0\", \"example_244\", \"example_247\", \"Complementary_47_0\", \"redundancy_9_0\", \"Complementary_92_0\", \"Complementary_68_0\", \"Complementary_44_0\", \"redundancy_15_0\", \"Complementary_41_0\", \"Complementary_16_0\", \"example_266\", \"example_275\", \"redundancy_61_0\", \"example_280\", \"Complementary_65_0\", \"example_286\", \"mutual_error_25_0\", \"mutual_error_30_0\", \"example_292\", \"redundancy_53_0\", \"example_296\", \"Complementary_17_0\", \"example_299\", \"mutual_error_15_0\", \"example_305\", \"example_306\", \"Complementary_84_0\", \"example_309\", \"Complementary_57_0\", \"example_311\", \"redundancy_54_0\", \"redundancy_43_0\", \"Complementary_55_0\", \"redundancy_2_0\", \"redundancy_34_0\", \"example_323\", \"example_327\", \"mutual_error_32_0\", \"Complementary_20_0\", \"redundancy_17_0\", \"Complementary_38_0\", \"Complementary_3_0\", \"Complementary_7_0\", \"example_346\", \"example_350\", \"example_351\", \"example_352\", \"example_355\", \"redundancy_31_0\", \"Complementary_46_0\", \"example_361\", \"example_362\", \"Complementary_52_0\", \"example_365\", \"mutual_error_23_0\", \"mutual_error_2_0\", \"redundancy_65_0\", \"Complementary_87_0\", \"example_382\", \"example_388\", \"example_394\", \"example_398\", \"example_404\", \"Complementary_56_0\", \"Complementary_63_0\", \"example_423\", \"Complementary_24_0\", \"example_425\", \"example_428\", \"mutual_error_21_0\", \"Complementary_23_0\", \"example_432\", \"example_433\", \"example_436\", \"example_439\", \"example_442\", \"example_447\", \"Complementary_12_0\", \"redundancy_42_0\", \"example_450\", \"mutual_error_31_0\", \"redundancy_21_0\", \"example_456\", \"example_462\", \"Complementary_1_0\", \"Complementary_88_0\", \"example_468\", \"example_477\", \"Complementary_48_0\", \"redundancy_28_0\", \"example_482\", \"Complementary_91_0\", \"Complementary_82_0\", \"Complementary_27_0\", \"Complementary_97_0\", \"example_499\", \"redundancy_63_0\", \"example_513\", \"Complementary_71_0\", \"redundancy_12_0\", \"example_518\", \"example_521\", \"example_522\", \"Complementary_43_0\", \"example_526\", \"example_527\", \"Complementary_96_0\", \"example_529\", \"Complementary_37_0\", \"example_534\", \"example_535\", \"example_538\", \"example_539\", \"example_541\", \"example_542\", \"example_543\", \"Complementary_59_0\", \"Complementary_31_0\", \"example_549\", \"example_551\", \"example_554\", \"Complementary_60_0\", \"example_570\", \"Complementary_86_0\", \"mutual_error_3_0\", \"example_576\", \"example_578\", \"example_580\", \"mutual_error_8_0\", \"mutual_error_19_0\", \"mutual_error_11_0\", \"example_593\", \"Complementary_72_0\", \"Complementary_35_0\", \"example_597\", \"redundancy_14_0\", \"redundancy_7_0\", \"Complementary_25_0\", \"redundancy_47_0\", \"example_605\", \"example_618\", \"Complementary_62_0\", \"redundancy_20_0\", \"example_625\", \"example_630\", \"example_634\", \"Complementary_34_0\", \"Complementary_9_0\", \"example_644\", \"Complementary_19_0\", \"example_650\", \"example_652\", \"redundancy_60_0\", \"redundancy_37_0\", \"mutual_error_20_0\", \"Complementary_28_0\", \"Complementary_73_0\", \"example_689\", \"Complementary_4_0\", \"example_696\", \"example_697\", \"redundancy_29_0\", \"Complementary_45_0\", \"example_707\", \"mutual_error_18_0\", \"example_712\", \"example_713\", \"redundancy_36_0\", \"example_716\", \"example_720\", \"mutual_error_29_0\", \"Complementary_26_0\", \"redundancy_24_0\", \"example_737\", \"mutual_error_14_0\", \"redundancy_35_0\", \"example_746\", \"example_750\", \"redundancy_64_0\", \"example_765\", \"example_773\", \"Complementary_13_0\", \"mutual_error_22_0\", \"mutual_error_10_0\", \"Complementary_15_0\", \"Complementary_80_0\", \"example_788\", \"Complementary_5_0\", \"redundancy_32_0\", \"redundancy_13_0\", \"Complementary_30_0\", \"redundancy_50_0\", \"Complementary_66_0\", \"Complementary_51_0\", \"Complementary_2_0\", \"redundancy_27_0\", \"Complementary_85_0\", \"example_819\", \"Complementary_76_0\", \"example_824\", \"mutual_error_4_0\", \"mutual_error_5_0\", \"redundancy_33_0\", \"example_834\", \"Complementary_75_0\", \"Complementary_33_0\", \"example_843\", \"redundancy_16_0\", \"redundancy_3_0\", \"Complementary_93_0\", \"example_858\", \"redundancy_1_0\", \"redundancy_10_0\", \"mutual_error_26_0\", \"Complementary_36_0\", \"redundancy_52_0\", \"example_876\", \"redundancy_4_0\", \"Complementary_21_0\", \"mutual_error_1_0\", \"example_892\", \"Complementary_83_0\", \"redundancy_51_0\", \"redundancy_0_0\", \"example_901\", \"redundancy_56_0\", \"mutual_error_0_0\", \"example_909\", \"Complementary_50_0\", \"redundancy_19_0\", \"Complementary_95_0\", \"Complementary_90_0\", \"example_922\", \"Complementary_61_0\", \"Complementary_6_0\", \"Complementary_69_0\", \"Complementary_94_0\", \"example_934\", \"example_935\", \"Complementary_11_0\", \"example_939\", \"example_940\", \"example_945\", \"Complementary_67_0\", \"mutual_error_7_0\", \"redundancy_57_0\", \"mutual_error_17_0\", \"Complementary_40_0\", \"Complementary_32_0\", \"example_960\", \"redundancy_59_0\", \"Complementary_29_0\", \"Complementary_39_0\", \"redundancy_44_0\", \"example_984\", \"example_985\", \"redundancy_45_0\", \"Complementary_64_0\", \"redundancy_38_0\"], \"type\": \"scatter3d\", \"x\": [-6.287533108455673, 0.7590143886862787, 3.5600834218422195, 5.219090734913545, 4.68605734701318, 3.886548746554276, -4.833601618244986, 0.5032846636184862, -6.013528375938845, 1.689453394638436, 5.29848356340864, -2.918383251581588, 3.8033897280304334, 1.1779597161422979, 5.566589385249143, 4.195371796668268, 2.2099728254273536, 0.5532188876007625, 4.427719296736176, 4.573191487513355, 3.336588154349019, -3.9849435742041384, 3.5380002774424977, 0.2608510965904727, 0.8278722752426566, 1.8820889679091912, 3.8932790473009975, 3.8912759413690985, 2.032744360357877, -3.0372344931488193, 2.7338900948297193, 4.253654983941126, -4.195437194655715, 3.892331880171876, -5.508517302568059, 5.611628657963857, 3.347636091873163, 3.954974699352761, 4.737333796346493, -4.45002460793382, -3.5471737327215394, -0.2528791831000271, 0.4948378606961532, 0.6415643157272319, -5.295531130341453, 4.782935692526695, 1.3328626845159848, 1.1999620741088965, 3.6337246594171377, 5.005077172079694, -3.4145246855770717, 4.108276382076445, -4.66797662264905, 2.03796771679739, 4.301820275304486, -4.4220921095598715, 1.085046457457006, -4.405912040625274, 1.3557906176560444, 3.7512649404434533, 4.748724412723987, 2.363913567289074, 0.5268773266019211, 4.06905820032463, -5.266650692102429, 5.733243509344106, -4.988647560817236, -2.7662217984431834, 3.7159651915250906, 4.778756217170878, -3.642202128655474, -2.9679012975066477, 4.073664258048266, 4.093096440593882, -2.811523863327161, 3.877614462000734, 3.7051966063291606, 6.847862960949151, 3.7349970071565655, 4.78734666823247, 6.958957310204621, -0.5388580097857634, 4.940201930769127, 3.7111800600363267, -5.47428136822842, -5.873654774750964, 1.5852135136184073, 1.2617973425858002, 5.428714803174206, 0.8341862717878569, 5.034818936861452, 4.6567562179790505, -4.712174282371218, 3.4386445414113522, -1.9933874391600763, 4.883872221801101, -0.21218615386233464, 5.304696335114164, 1.2473995845443868, -3.1606484515224493, 3.5903469876645944, -4.688065129811712, 5.424786539387098, -5.146129748639737, 5.027831552212293, 0.6470570146050363, 4.228214452160645, 4.203827845244524, 3.244938860765128, -5.130625132850521, -6.943278462589857, 4.971989775842619, 5.25199771911758, 0.9602375256557597, 3.5031155730040227, 0.017162809398092338, -0.019966932156006312, -5.173822499541389, -2.279009234532853, -4.384063872928057, -3.0865589855626694, 3.771463580518056, -0.042199147263875525, 4.4589866651416425, -0.1566182459221651, -0.7373362677239554, 5.041500192979296, 1.8928662521069342, 3.0889836282458427, 6.130177743658254, 5.57968368220756, 1.4801718592902064, -5.51026556309742, 0.10266246305422189, -3.331449972365856, -4.905291303509678, -5.4028221675841674, -0.8041449730571926, 4.689093188831317, 1.490599860016034, 0.2953377269259811, 2.8699679412027463, 4.2194701621921, 3.4760998618916075, 1.7717152823753335, -5.730690983752516, 1.801794520142338, -3.2868446038912955, -4.540033359806164, 3.6620153667452318, -3.6022273790712056, 4.671889912730647, 3.4689331263244947, 3.5163798700469835, 5.696646476838397, -0.15287406602439868, 0.7849100224788979, -5.079223434179806, 4.9434293439581385, 5.313498801720421, 1.221286527342972, -4.849424918442863, 2.1275170062501587, 3.4662552658236585, 0.5281164776535174, -6.087156854214448, 0.4859988684701669, 2.3533149785216314, 3.830320278595996, -3.0625060989608603, 1.3093028363539467, -5.48478925730741, -0.16513500051983898, 0.5737241210169406, 0.3599870145417014, -5.153579637475427, -3.8450292505245667, 4.569350009714035, -4.124254891369812, -3.3881440612793905, 1.1877746923886927, 2.7780588839004396, 4.200264812843217, -4.182130147177086, 5.337880835816768, -5.004622668165068, -4.281549542506255, 0.7691546807285448, 1.4443054919521414, -0.29453424147521234, 1.0798257465688323, 4.54553581420736, 3.5780221770694456, 0.24555779107932696, 1.5075836269401592, 4.7126199975251595, 3.7599344509184007, 0.9952562306160273, 6.31966412457982, 0.6393187674937237, 1.395156266448522, 3.1419899811497767, 3.6625426332370936, 5.8155353426142575, 6.218384179125749, 0.7480273904151926, 0.013023878535708522, 5.637181729436101, 0.9382814208399836, 0.5260649272556063, 0.7751419049641103, 5.596357990666948, 1.1592828864247455, -0.49940032169647486, -5.675026461882603, 3.7373442386176445, 4.882387440398084, -4.846030344773909, 3.5387991775417436, 2.8359325433135556, 2.6332249314981047, 1.3263133650015013, 4.475743821346467, 6.28461625614568, 1.0762452169347498, -3.462020399281938, 1.398545207562101, 1.3531536096798793, 5.239163517425666, 5.838503362565272, 1.1681194112935374, -3.21698663532759, 0.11748314977222596, -3.482147447607013, -3.308961856816811, -0.3047147132118535, 0.8116781535872641, 1.4455639144163261, 3.660482531217717, -3.0806146875880565, 4.696085536889807, 4.559197149335537, 3.6461505010041706, 4.158100284109869, 6.5536682825278705, 3.5160589017327024, 4.397991810229211, -2.8093111709259575, 4.927052941873411, -0.584520343343981, -5.684797350732918, 3.51180365834718, 3.036724761927981, -3.8844078130851782, 3.2338709605791998, 5.130096660213111, 6.459379056317431, 5.12468228785874, 2.3738310452207845, 5.594142835820159, 0.40239981701233746, 1.7775209625723487, 4.569356275721926, 0.17162084149337442, 3.5833198781783087, 0.9909832075943206, 0.4901387976816134, 4.2611185244336465, 0.23703317158031562, 3.072029699791113, 2.996376079268919, -5.744017071391875, 4.021392721476743, 3.5757518236253865, 5.691610004626809, 4.137081333128361, 0.6240739575416948, 0.03725115815626123, 5.293198799089259, 4.664705327292711, -4.9459595750367225, 0.08432761683103274, 0.34958172896337686, 4.3585663082058845, -4.770863212995139, 4.592663129910243, 0.1056998773802934, 3.8524063790760623, 5.80411954350414, 3.274982043317923, 2.5418752224864747, 4.456832169379267, 4.371859687154138, 5.547516048752861, 5.163230467849662, -0.32618600246613183, 4.619876706885422, 3.7920184812242357, 1.2928880181005757, 2.9352401955303797, 5.391356530284201, 4.34636061701862, 3.629384974466685, 3.146998698624082, 3.665880424311172, 1.4656738066567845, -4.8209410353991275, 4.172927326101929, 3.8214288946070694, -1.1063107665127212, 1.2030617228513378, -6.607309640261299, -3.2529350509190276, 4.063520606296333, 4.401796342395652, 5.155732899588572, 1.3599419857540576, 0.9695508133155623, 5.464678079774057, 4.356752545484161, 4.7981562299058975, 0.1262852445810303, 1.3718400884230981, -4.626244482846664, 1.066043727773452, 2.6634058523669237, 4.558516419749945, 0.2928273606904035, 3.6317273956625624, -6.092381648438499, 0.8832510019160257, 3.6374926167872776, -0.29753076693905944], \"y\": [5.801747140033004, 0.45795227634686986, 3.061754457810904, 4.00921410391146, 4.235193962235402, 3.570031624786107, -1.779298752158524, 0.9619325543549063, 5.234842639632205, -1.2130303595256025, 4.50416585303014, -1.404097274694474, 3.500926136088445, -0.39161046640603603, -3.906034968371086, -4.498767759506241, 2.0524434967122605, -0.12453768630590267, 3.92577694824906, -4.042895354646137, 2.998557468564068, -3.6069729271335564, 4.915090240876333, 0.6389881633705315, 0.1190279615676213, -0.9708484581129662, -4.02145495175701, -4.047604294646138, -1.9262283397179303, -0.9922986543470307, 2.499496175442844, -3.2231552914716906, -1.9583194317674542, 3.7972996974566686, 4.9524837569814775, -5.904934811259669, 2.8523324674912924, -4.22125770116381, 4.161550420266712, -4.296167214343425, -2.527278624934648, -1.634579221905565, -1.8225454244690016, -1.4285393537357027, -4.213572929666807, 4.316659759835196, -2.389468375781691, 0.3882358754932983, -5.777225697658036, 4.6793945740633625, -4.321182260827532, 3.633442998824102, 4.239294368345699, 1.8884862004207676, -3.5511815756388443, -3.0969629579185254, -1.98935711457586, -1.1443172875905923, -0.5489835520611578, 3.414615172248957, 5.805623177256495, 2.148404364098943, -0.6203364309246974, 3.4497741219250453, -2.3283020603555293, 5.025366180532387, 4.84796195887648, -1.8698114093722469, 3.4747589745530587, 4.27216012687512, -3.9973679090374823, -4.54431879090302, 3.594410902206345, 3.603317875384341, -4.580462442423244, 3.2904414179882964, 5.469434375864522, 6.150785625921376, 3.4226483742872853, -3.7016732813844824, -5.3563243915006415, -1.4111418635291106, 3.4953296837071104, 5.471194164399399, 5.069317220937787, 4.889082993307451, 1.1973382048451433, -2.414192218446172, -4.512781066135887, -1.1707010445019672, -4.940783152572948, -4.302427707224176, 4.535424207812136, 3.2719228222298655, -5.762017815491577, 4.0523099603790005, 0.44014702823741947, 4.235767245491846, 0.2595489898670329, -1.0901170282989203, -5.551824087258499, 4.318757128164643, 4.912606279537275, 4.839693409676668, 4.4520124438366775, 0.8633752338045372, 4.908662257024638, 3.721806295167666, 2.9185768966445855, 4.475247587833877, 5.93405135419967, -5.569683909945121, 4.3328150837622905, 0.29643232698977007, 3.0699582190517836, 1.3840527651888417, -2.375655235087143, 4.60551917433343, -4.982991297030608, -0.039739253594902824, -5.147179750875092, 3.368486776070467, -1.0817720794468644, 3.1855243519173557, -0.29989466702802803, 0.15584757183736442, 5.160986394709697, -1.7734958719275173, -4.195303073384161, 3.7547731900018517, 4.8691152747924225, -2.8811066443899307, 5.063795799962139, -0.6580065667471587, -3.2641265574873475, 4.509972423260424, 4.387021287144338, 3.017391751475308, 4.25163133735247, -0.40265034808162636, 0.526346948276735, 2.618642738899071, 3.793113370055943, -4.518635518397952, -3.62896057348316, 4.683291317403371, -2.604048931927121, -3.586833032357287, -1.268625590792479, 3.2039126941731566, -4.244309149018074, -3.98001476128667, 3.194583139471157, 3.149702727858374, -3.954499959705387, -0.2527484753925514, 0.6059120199137488, 4.425911486358698, -3.1277881362991637, -5.113889109206947, -2.7024041951682416, -3.045125560613346, -1.8825396667944272, 3.0627845594505785, -1.2017450882350091, 5.490827959874207, -2.0176287587435295, 2.1573154297759243, 3.495609693156958, -4.245181403942606, 0.6291955827809718, 4.7360050315499205, -4.572852080469199, 2.100043858879543, -1.0679329374626718, 4.838108798965661, 3.42560997605195, 4.055523539341266, -2.0270413228052924, -2.0590739630614543, -0.2937262375000439, 2.54997293573051, 3.8747801231090784, -2.3527163179873454, 4.661007736413554, 4.632688734452695, -4.49477627071113, -1.167670315454198, -0.7422478501213741, -2.3293890035694162, -2.303958568845243, -3.250198983052448, 3.185638548385344, -2.1432238125295138, -0.02926858781267294, 5.619724813398463, 3.542390529411974, -2.5259521623436227, 5.427792849367653, -2.1412466159645156, -0.5231205978287302, 2.7958632468490907, -3.604092685692363, -4.594853120893453, 4.7063020076107485, 0.12237298975237298, -4.538449712829697, 5.172676298634162, -2.0569416875086937, -0.30733012921712544, -2.102845818511461, -4.00523411742291, -1.7206591755636849, -0.6083580219400772, 5.171447870066141, 3.567688128582106, 4.5377748477631705, 4.3421914296379605, 3.1597412445600854, 2.547261624662859, 2.453909134675931, -3.054295917521094, 4.043960169146708, -4.004701793121714, -1.7663516473161933, -2.2196030462703433, -0.5358511865058723, -0.3168582882322662, -3.2411653485167946, 4.319704125427705, -2.326803430646054, -3.2646134221082534, -0.632447826272907, -3.7835505477568274, -3.690870811359351, -0.864061523125303, 1.1172434979689285, -0.5102939775925122, -4.196090817520682, -3.465544788728722, 4.353535639843438, 4.154314170726775, 3.2799463353503184, 3.5617557935443864, -4.646169852952886, 3.1462524537827883, 3.972206987510135, -1.7857798455360687, -5.1231949029263495, -0.2708281621170853, 4.839095611167609, 3.202746003785922, 2.779141008317082, -3.2425105977538253, 2.9825939967230912, 5.000873526631378, 4.1907129253557, -5.358450122790703, 2.1299975635900976, -6.035688249238935, -1.4276037933952979, 0.15939257554495068, 4.024631844116443, -1.3565426096089184, 3.2979904373105096, -2.9558734309991994, 1.514338545328215, 4.669534770803171, -0.5944389254212749, 2.696584089650506, -3.976107706493021, 5.294644237727777, 3.7240461944065366, 3.2264985296919275, 4.988210859161354, -4.401837387826547, -1.4432482764493675, -1.7571860823768355, 4.74573286576586, 5.138021656287192, 4.820826589882199, -2.787970571156822, 1.0576242892782242, 4.117551694599357, 4.2905637166794355, 4.213508006755384, -0.08441988413412516, 4.5698920314512295, 4.882169974373052, 2.890905632041555, 2.2632752957641147, 4.008955613836108, 4.783999996349288, 4.570933846891372, 4.481632024967473, 1.7503174906844658, 4.127755389424759, 3.3861556502856303, 1.0135820868828769, 2.6327582422483538, -4.866209332202584, 3.893168188011966, 3.1501528035005055, 2.8132434639296853, 3.165083592948565, -1.2407384360797558, 4.433408472087306, 3.746342343014212, 3.25683859844818, 0.9362766646622293, -0.5204913603869993, 5.621372755875909, -5.793250481329438, 3.5663966248490526, 4.2336796701322195, 4.676186538289693, 0.3754128079311646, -0.25015507853751584, -4.205800091523903, 3.9685222963793887, 4.165683328009116, -0.5329684975578572, 0.023676921886554902, -4.695366520355978, -1.0434445523583435, 2.381872158972161, -4.42062858347927, -1.1359603022052207, 3.233776269436052, 5.5036116831065085, -1.5172681149533647, 3.283336312211401, -0.2736489302757413], \"z\": [-2.985868357680068, 1.418829203673782, 3.764098076967162, -2.804000045649638, 0.8257353455458649, 2.1793852796560977, -4.408479092612611, 1.1152621135807805, -3.1034222050953493, 1.8110389968237892, -2.244696875389455, -1.148936712540095, 1.4360209498041427, 1.4052948668530358, -2.6283177333315817, -2.6395311212093007, 3.531255693093176, 0.40162580640523454, 1.93777276369623, -2.8798470334616613, 2.8785787187449747, -2.6217414708328914, -2.337257397158754, 0.6247746390657429, 0.7357213150625523, 2.085516540161917, -2.172848405497252, -2.783182568266904, 1.45192975264005, -1.2763518644812604, 3.2210030708398936, -2.660427390244882, -3.419172106287756, 0.07777342453657399, -3.393598808627857, -3.093511019282448, 3.712041456541453, -2.371464491097831, 2.118356105910712, -3.742414373247594, -2.0877415100889958, -1.5975567975029543, -0.7007660770019969, -0.008654475549342067, -4.957750206127114, 1.4564648624020842, 0.2697013782178871, 2.0731920552469933, -2.513269205146598, -3.5487651329970427, -1.7172588928729235, 2.19756272513172, -2.870374270293625, 3.833685199992205, -3.082858370123119, -3.537370508956274, 0.17882084397651227, -3.7287581530716407, 1.4925006312353162, 2.0725703292074256, -3.7034913158117546, 3.6236566594324824, 0.3483810140415593, 3.472973745149869, -5.120913246506471, 1.7786760350971522, -2.130410641401232, -0.8913555181607133, 1.4569569387802983, 2.067930368152145, -2.039886900810209, -0.9519980505786116, 2.614812305020307, 2.4539783691331465, -0.5904940510139391, 4.089310443085488, -2.361103603541295, -0.9929378454082758, 1.7730738292845314, -2.830582996025885, -3.3143809578502856, -2.0680262872311417, -3.06924160237505, -2.0302787053820683, -3.59621585871791, -4.196131944740566, 3.004850501077338, 0.055575286030999704, -2.699717136379608, 0.35054129441212156, -2.843266088518846, -2.447020508129129, -2.3955278202899586, 1.305388912715082, 0.8953190444786472, -3.3804964800325688, -0.44563072217389466, -3.3375673635780316, 1.6935513156885897, -1.4494183838249117, -2.280834589439377, -2.978489210828739, -3.567481085510682, -2.233345261731402, 1.9105180308856031, 1.144544654497849, -2.8860807411054856, 2.324011354972086, 2.749294435851914, -2.8903625907936696, -3.660237462504156, -2.602659431579039, -0.732400278714608, 1.1524693161232524, 3.5338148044070063, 0.5736006138799539, -1.7813037112718613, -3.706651290597154, 0.23033017771069764, -3.5799602353911273, -1.000108818512513, 2.8455651265217763, -1.1972792971574453, -3.5761900889039198, -0.5824667117700676, -1.3865235063763635, -3.3615574870172975, 1.3823368530966027, -2.428087090417079, -4.182001475178314, 1.847416860179187, 0.10571994764918635, -2.619922067124173, -0.4805184078219088, -1.7651557983601784, -1.8660487732745166, -3.702713614548819, 0.5147043112761917, 0.7935433564616434, 1.7178171681060745, 0.6449540789791568, 3.641072310616776, 1.9665904732396702, -2.4659785576065882, 0.49785289669158916, -4.1838624108242755, 0.832945195262379, -1.4765787306875853, -3.8128784309585386, 3.153085798908416, -2.0338830063337237, -3.181837170118626, 2.3453539627303166, 2.6335784743278476, -3.748702909162914, -0.6556724711701946, 1.3867392775570209, -3.4152090738165866, -3.155938999564073, -3.3209812582667113, -0.2335453798328, -4.443015750785568, 1.4979302765925047, 3.411531399151033, -0.1489955202553348, -2.929332912229761, -0.7326059584049841, 3.434074983015589, 2.478783176303091, -1.1384729902070787, 2.089265582329988, -2.855238482868486, -3.2324506021996062, 1.597882037201031, -0.4031285084364915, -2.6770408616627366, -2.9242864243617617, 1.8584092523184823, -3.2172297961039056, -1.9274168534481266, 1.6388376258351962, 3.2162011357942624, 1.6493961057414972, -3.168209435515195, 1.9077996020031662, -2.4846368250169677, -3.4453491970540626, 0.34512984641447536, 1.7896254756345913, -1.998338664830865, 0.321625774424227, -2.141301894408356, 2.9713423929022484, -1.2312730476296, 2.0942300240523215, -4.0499561948215135, 1.166717912398412, -0.1363881706673572, -3.788004119624036, -0.41043302759064815, 1.542754860572514, 3.859581688569383, -2.9642693309162493, -3.856573604949684, -4.047195535411703, 0.9782708785938867, -2.967111339957515, -0.3676158488886627, -0.06847815620877307, 0.40983666705944316, -0.1128973957320607, -3.581972790728362, 0.595997566064675, -1.6153946500499305, -3.972861422310646, 1.1455568172825126, 0.6539585476932228, -3.122333766614198, 3.2426211748054303, 3.335086634159198, 3.3355247746196506, 0.075119281358631, 1.522133429746257, -3.3388424439489035, 0.236049225025095, -1.940151504880936, 1.5169705967889953, 1.8500366463900053, -2.9955023326765997, -2.1871444388141454, 0.029482104142663446, -1.5280825494193606, -0.42279414170436047, -1.8722806006257482, -1.6179824673144594, -1.376865205580955, 1.6586171427958063, 1.5348419450913737, -2.5724376995815987, -1.2126964200244004, 0.40151779252149367, 1.4548516199452945, 2.502896072393209, 3.302167812891379, -3.210422485951375, 2.6191646928571664, 1.7638712026495056, -0.7138567951871009, -2.2632413144652386, -1.153995542262468, -3.319176096681935, 2.2739412005549706, 2.588530725616284, -2.683681735340673, 2.2703218901841833, -3.561266575290666, -3.817973376716302, -2.5686124291600816, 3.732756431376548, -3.1925437006728044, -0.650632820499702, 2.5780960672399016, 1.9746510604216665, -0.672680195850821, 2.253828012904635, -0.6849318533735199, 1.3329590741954238, -2.7717160458340295, -0.38133419273480995, 3.2805911264541203, -1.69637526704118, -2.5717395622469885, 1.5882380850536348, 2.3248795269747076, -2.515182721007748, -2.7150352509623628, -0.2732635763136275, -1.1550926567695212, -2.652750257876112, -3.127917175974572, -3.1416436075647267, -1.6587888622132438, 0.9102246191766132, 0.6364767028491702, -4.034754204959949, 1.1595672169718194, -0.22605406399753658, -2.989560354956271, -3.8921127684198935, 3.485089944754099, 4.144708611242273, 2.1499079321862244, -2.5233567744564285, -2.232605012315438, 1.9110312573496357, 0.3532514619319913, 1.598613724999625, 2.07928720130216, 2.302196997897002, 3.406072232695074, -2.928267718531446, 1.8739683850551434, 3.477363832807071, 3.319902598667981, 3.329611679880059, 1.1296542794385995, -2.5732439865465087, 2.2143443070992253, 3.975416920293873, -1.592784998541834, 1.5583238083572999, -4.190211124636973, -1.3429387750095456, 2.850709493132254, -0.2251082053377944, 0.7100585428340738, 2.1729708452759886, 1.2392239245758385, -3.1439449720575037, 2.1217448741490275, -3.518854447563874, -0.5323121426750222, 1.8482679517026912, -3.636589052886759, 0.768894904577968, 3.5876819720145896, -2.9514362887127445, -0.5014150846176816, 2.7249182984221756, -2.539336377616544, 0.37421622394980936, 2.7861310782279864, -0.7268143236740582]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 1\", \"marker\": {\"color\": \"rgb(255, 127, 14)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 1\", \"scene\": \"scene3\", \"showlegend\": false, \"text\": [\"Complementary_85_1\", \"Complementary_1_1\", \"redundancy_42_1\", \"example_12\", \"example_15\", \"Complementary_25_1\", \"Complementary_27_1\", \"redundancy_11_1\", \"example_19\", \"Complementary_48_1\", \"mutual_error_32_1\", \"redundancy_50_1\", \"example_28\", \"mutual_error_23_1\", \"Complementary_49_1\", \"example_41\", \"Complementary_65_1\", \"Complementary_56_1\", \"Complementary_63_1\", \"Complementary_76_1\", \"redundancy_62_1\", \"Complementary_71_1\", \"example_51\", \"Complementary_37_1\", \"Complementary_62_1\", \"Complementary_88_1\", \"example_68\", \"example_69\", \"example_73\", \"example_74\", \"Complementary_12_1\", \"example_83\", \"example_89\", \"mutual_error_18_1\", \"Complementary_36_1\", \"redundancy_10_1\", \"example_94\", \"redundancy_19_1\", \"mutual_error_12_1\", \"Complementary_95_1\", \"example_111\", \"redundancy_64_1\", \"example_114\", \"Complementary_82_1\", \"Complementary_72_1\", \"example_117\", \"mutual_error_29_1\", \"redundancy_13_1\", \"redundancy_22_1\", \"Complementary_5_1\", \"example_131\", \"example_132\", \"Complementary_14_1\", \"redundancy_46_1\", \"redundancy_36_1\", \"mutual_error_22_1\", \"redundancy_29_1\", \"Complementary_31_1\", \"example_152\", \"example_153\", \"mutual_error_5_1\", \"Complementary_15_1\", \"example_162\", \"Complementary_50_1\", \"example_164\", \"example_167\", \"Complementary_24_1\", \"example_171\", \"example_172\", \"Complementary_61_1\", \"example_175\", \"example_176\", \"example_177\", \"Complementary_4_1\", \"redundancy_23_1\", \"Complementary_83_1\", \"example_181\", \"example_182\", \"example_185\", \"example_188\", \"mutual_error_19_1\", \"example_193\", \"example_194\", \"Complementary_30_1\", \"mutual_error_3_1\", \"example_220\", \"example_222\", \"redundancy_65_1\", \"redundancy_51_1\", \"redundancy_31_1\", \"Complementary_64_1\", \"example_234\", \"example_236\", \"example_238\", \"example_245\", \"example_248\", \"example_255\", \"example_257\", \"redundancy_4_1\", \"Complementary_77_1\", \"example_268\", \"Complementary_8_1\", \"redundancy_34_1\", \"Complementary_92_1\", \"Complementary_69_1\", \"redundancy_39_1\", \"redundancy_48_1\", \"Complementary_0_1\", \"Complementary_58_1\", \"Complementary_6_1\", \"Complementary_26_1\", \"Complementary_2_1\", \"example_304\", \"mutual_error_16_1\", \"example_320\", \"example_322\", \"example_324\", \"Complementary_35_1\", \"example_329\", \"example_335\", \"example_336\", \"example_338\", \"mutual_error_8_1\", \"example_341\", \"redundancy_14_1\", \"example_349\", \"Complementary_51_1\", \"example_354\", \"mutual_error_30_1\", \"redundancy_7_1\", \"example_364\", \"mutual_error_15_1\", \"Complementary_89_1\", \"Complementary_87_1\", \"mutual_error_6_1\", \"mutual_error_7_1\", \"Complementary_40_1\", \"redundancy_32_1\", \"redundancy_33_1\", \"redundancy_17_1\", \"example_395\", \"Complementary_17_1\", \"example_399\", \"example_405\", \"Complementary_97_1\", \"Complementary_81_1\", \"redundancy_26_1\", \"example_412\", \"example_416\", \"redundancy_61_1\", \"redundancy_49_1\", \"example_426\", \"example_431\", \"Complementary_74_1\", \"example_437\", \"example_440\", \"example_443\", \"Complementary_42_1\", \"example_445\", \"Complementary_75_1\", \"example_457\", \"Complementary_44_1\", \"Complementary_67_1\", \"Complementary_55_1\", \"redundancy_52_1\", \"Complementary_46_1\", \"Complementary_18_1\", \"example_486\", \"redundancy_55_1\", \"redundancy_57_1\", \"Complementary_22_1\", \"example_495\", \"Complementary_32_1\", \"example_501\", \"Complementary_52_1\", \"example_506\", \"redundancy_37_1\", \"Complementary_3_1\", \"example_515\", \"example_517\", \"example_519\", \"mutual_error_28_1\", \"redundancy_41_1\", \"example_531\", \"example_532\", \"example_536\", \"Complementary_43_1\", \"Complementary_54_1\", \"redundancy_43_1\", \"mutual_error_4_1\", \"example_557\", \"example_559\", \"example_567\", \"example_568\", \"mutual_error_26_1\", \"example_579\", \"redundancy_56_1\", \"example_582\", \"example_583\", \"example_584\", \"Complementary_70_1\", \"mutual_error_27_1\", \"Complementary_21_1\", \"redundancy_28_1\", \"example_601\", \"example_604\", \"example_606\", \"mutual_error_11_1\", \"mutual_error_9_1\", \"Complementary_80_1\", \"example_616\", \"example_617\", \"Complementary_90_1\", \"redundancy_35_1\", \"example_628\", \"example_629\", \"Complementary_11_1\", \"example_633\", \"example_636\", \"example_638\", \"example_653\", \"example_655\", \"example_656\", \"example_657\", \"redundancy_40_1\", \"Complementary_20_1\", \"example_665\", \"example_666\", \"example_667\", \"redundancy_15_1\", \"Complementary_10_1\", \"mutual_error_13_1\", \"example_673\", \"example_675\", \"redundancy_63_1\", \"Complementary_53_1\", \"redundancy_38_1\", \"example_685\", \"example_687\", \"example_692\", \"example_693\", \"example_695\", \"example_703\", \"example_705\", \"example_711\", \"mutual_error_1_1\", \"example_717\", \"Complementary_29_1\", \"example_722\", \"example_730\", \"example_731\", \"example_732\", \"example_734\", \"mutual_error_20_1\", \"redundancy_8_1\", \"example_752\", \"mutual_error_25_1\", \"redundancy_45_1\", \"example_755\", \"example_756\", \"Complementary_33_1\", \"example_758\", \"redundancy_47_1\", \"example_770\", \"mutual_error_24_1\", \"example_785\", \"example_789\", \"Complementary_47_1\", \"Complementary_91_1\", \"example_803\", \"Complementary_16_1\", \"Complementary_59_1\", \"example_816\", \"example_817\", \"example_820\", \"example_822\", \"example_827\", \"redundancy_44_1\", \"redundancy_12_1\", \"Complementary_68_1\", \"example_833\", \"Complementary_84_1\", \"Complementary_66_1\", \"example_853\", \"redundancy_27_1\", \"Complementary_7_1\", \"example_861\", \"example_863\", \"Complementary_23_1\", \"example_865\", \"Complementary_38_1\", \"Complementary_79_1\", \"example_884\", \"Complementary_98_1\", \"redundancy_58_1\", \"Complementary_60_1\", \"Complementary_93_1\", \"mutual_error_17_1\", \"example_902\", \"Complementary_41_1\", \"Complementary_45_1\", \"mutual_error_14_1\", \"Complementary_96_1\", \"example_919\", \"mutual_error_21_1\", \"mutual_error_0_1\", \"Complementary_78_1\", \"Complementary_13_1\", \"mutual_error_31_1\", \"redundancy_24_1\", \"example_941\", \"example_949\", \"Complementary_9_1\", \"Complementary_39_1\", \"redundancy_59_1\", \"Complementary_34_1\", \"Complementary_28_1\", \"example_964\", \"Complementary_86_1\", \"example_966\", \"redundancy_60_1\", \"example_968\", \"example_969\", \"redundancy_18_1\", \"Complementary_19_1\", \"example_983\", \"redundancy_53_1\", \"example_989\", \"Complementary_73_1\", \"Complementary_94_1\", \"Complementary_57_1\", \"mutual_error_10_1\", \"redundancy_21_1\"], \"type\": \"scatter3d\", \"x\": [2.035529740960682, 4.197241733208283, 4.011663027789894, -4.222794221220093, 3.535698963137034, 4.510984718186639, 5.6467967586722265, 4.885987597912241, 4.630670725557275, 5.349253664812049, 4.40157732271369, 6.583949086502702, 5.318793242767585, 4.1694719629982515, 0.37581013629775495, 4.4934660033089315, 4.822874714156434, -0.7081802970050408, 1.3853850456174437, 1.0265045868556648, 4.001969976981638, 5.416403271568046, -4.514047081799649, -0.7276404515956354, -0.360573946115871, 5.551919351192612, -4.325342004977552, -4.588635428831762, 5.280251061851318, 5.401936512184823, 5.868052833727777, 6.165846718021379, -4.272551362548461, 4.053103934352805, 5.837247835931489, 5.483047278261219, -4.642790171788529, 4.494111605925677, 0.70058106986555, -4.56262014061201, 4.298030690879247, 5.4245595657402745, 4.131156527473297, 4.127073736661377, 3.889458893989482, -3.417888188673208, 3.4618213277194574, 5.159601800346733, 5.654023626635962, 4.35377977479649, 5.518847522897863, 5.059556576292845, 0.28901208292343544, 4.942817089566707, 5.412863033127043, 0.21727689256413407, 3.9489539116155825, 5.841620397119521, -2.8148068328002127, 6.2075155719851765, 3.585018079515481, 3.6788109728617284, 3.7739948664925036, 5.409865960456127, 5.361590124573221, 5.45503838491789, 5.314601539543202, -4.8476442215024225, 3.6111570351534557, 5.6059254803604475, 5.91924174882535, 4.239169754942841, 3.9335521205449417, 3.6773987131010033, 2.625358396392307, -0.012802036331148292, -4.057404692278759, 4.740705028930732, -4.643330344705315, 3.5364619215183577, 1.2450722800218863, -2.7884481622835215, 5.287606256447508, 4.3477466788478605, 4.730154635430173, -2.659109430507621, 5.2862514681385395, 4.296813063695949, 2.3736880303616985, 6.118655502913724, 3.433569210746926, 4.018588146899935, -3.082935074332341, -3.635840888310069, -5.939278744894832, 6.355926166535545, -4.879941808691727, 4.618923534654823, 4.725303456016853, 6.203138162340472, 5.429901333423494, 5.0480585438276435, 6.612916339087489, -3.1543156095705642, 5.599982421193008, 4.489295797277951, 4.6423663069933685, 6.27467281926305, 6.405865527966061, 1.0324232579028292, 5.653406449272525, 2.0134963517671496, -3.5046997662916595, 4.3814655266962985, -4.2986834599056225, -5.012112921633768, 6.464378109315298, 4.605751101928824, -3.8646008233688605, -5.288265339842306, 6.6472002653124616, -4.164476454456745, 2.073667355036553, 6.209602856181853, 7.160105297428512, -6.0819955710597915, 3.797969477076548, -5.272389719326474, 3.84512501870351, 5.421590981467991, -5.544311317397127, 0.8390308200884634, 4.331078946024982, 3.9167751196359215, 3.458196988354998, -0.5287836303032303, 2.21623585316416, 4.472185846048465, 2.4197662326101783, 3.6486581521472816, 3.9606582616221804, 4.958925471908722, 4.37503921370358, -4.629776443848752, -3.029600616705679, 4.879705703872348, 4.761260676647336, 5.052298541788363, 3.6131561434168793, 4.125706646967149, 5.918088386036274, 3.030733451839541, 3.9994414983606137, 4.896692571832886, 5.000860363709035, -4.90138612542066, -5.408231338392261, 3.585064093080852, 5.417924866104643, 4.70026281654219, 5.302943438226109, 6.903775061611881, 3.867616112869572, 0.21056904701250512, 3.264944445164116, 3.7325787888301742, 4.461539915557194, 5.767174377991256, 4.739616485864403, 2.103933154917551, 3.6126921501146025, -2.633215180949203, 3.116340741132181, -5.2291369685897005, 4.191006293140551, 4.561133717120277, 6.334569181003374, 4.550276581255593, 5.479139065866337, 4.847093781732697, -4.753434278886543, 4.555589733987681, 4.923727240228866, 4.504069204553961, 4.372887479498303, -2.758514487149679, 4.902132461538489, 6.082682717193623, 3.073250489090764, -1.5020192234674932, -4.832779495021149, 4.010499313149627, -4.813722471912972, -4.389780738702352, 3.782118110170165, 3.8696724045596502, 4.853396953949445, -4.988559752774977, -4.401768592751414, 4.817090777830911, 4.1058893394360325, 4.732488483107253, 5.133872829307471, 4.46759353061048, -3.9074542172915487, 3.708507195596553, -3.649267540248444, 0.829144138323627, 1.0485426824372812, 2.47292783110042, 5.083616444851862, -4.375620433370188, -4.567349378690187, 4.195118885250654, 2.367480769467156, 6.190705606923746, 0.3469320552719025, -5.6196957469396045, -5.318026613105402, 6.91852093723085, -6.464828900027776, -2.056696363470142, 3.5748667680145156, 5.771790197387839, 5.955488615692204, 1.996526462543541, 5.780304900114867, 5.379084674099682, -2.0079125279836845, 4.95500233289893, 5.11099567261384, 3.8576830558297255, -5.206536461526699, -4.98784220778465, 2.983024632221617, 5.667853047270833, 6.719532045774019, 4.260441299652962, -3.749568367114829, 4.680736643267513, 4.474741380354656, -5.312838714019989, -3.7096484448830997, 2.8355929952795274, -4.045956647929771, 0.7364332887431774, 5.53879311534305, 3.9202837873589313, 5.439148619594358, -3.511574272164096, -4.073169673862109, -5.338535041998621, -5.204985836789244, 3.8160715512743764, 4.957180823085043, -5.010049144006031, 4.034546977479975, 3.4759939865230964, -5.289142867520905, -4.105678475315553, 2.3269176984084092, 4.907849876763972, 4.43965297528414, 4.904612338003538, 0.6244221598933556, -6.262499249305421, 5.185391029526684, -0.12962453391458928, 4.473863997419793, 5.817172862197748, 1.0856185958405928, 3.2706792352025476, 4.607868727394899, -5.380325767278759, -6.376174500876264, 3.9160998653264083, 6.829889035058754, 5.661754876446363, 5.6773286277885875, 0.3697616095864889, 6.805384729256422, 2.5459722388402986, 5.2481673130663, 4.619491840970946, 4.49163434306652, 6.329193448627487, 6.57431634123505, 5.711721089027659, 1.2584454584808253, -3.808208804003905, 2.3008875592957434, 0.27187756729518003, 5.7781605038602155, 6.780016285936604, 5.025011051661237, 5.3290183372207, 4.529366919825594, 4.930333423727591, -3.6333836205747034, 4.271421535606995, 4.565780921103624, -0.1071665599586965, 4.461657663709139, 2.9018448964691603, 0.01967510225524527, 0.13247889756452813, 5.248089088852728, 2.65640585290355, 0.688675878522581, 3.9118540309765675, -5.7102827868261326, 5.734605273859178, 3.3598011523017575, 4.9540466779392816, 5.738507547220033, 4.853465534982218, 1.2414371656718703, -4.369569931952984, 5.914553191867978, -5.551857133399444, 5.435803808470449, 4.709084501523431, -3.5279486867750767, 5.905150009033954, 5.475468575468421, -4.027068435937876, 4.756148030165552, 5.252919953090507, 3.543739188812711, -4.696162477795041, 4.436443529432827, 4.482057509029336, 6.751519245809229], \"y\": [-4.606278864279102, -3.0143291636734526, -6.340415034680591, 4.018754298512284, 4.798515780832417, 5.003167500566308, -3.3231684990620938, 5.573793725845929, -3.8674767974120132, -3.718736408328025, 3.7800769343186467, -4.074847361488876, 5.031359484668084, 3.5563250986886574, -1.5346640372927842, -3.2991814910064647, 4.3835530259042566, 1.192211867351984, -1.9958253173378067, 0.5197292013577887, -2.3239176112856947, -5.500541595213448, -2.9942521390623815, -0.6449289086463512, 0.5596143814919788, 5.136923757706104, -3.457201456769286, 4.030362607959834, -5.044967994432255, 5.408731653981388, -5.872039112748859, -4.312784495839664, -0.16301819423350317, 3.565525814558164, 5.211200310108519, -3.0854119428567968, 4.34929499123658, 4.874320990617677, -0.7020874104701949, 4.399119199660183, 5.446679458099463, 5.608498566325497, -3.817389440743482, -6.3573424789422806, 3.4720683244815174, -3.287841991516034, 3.091110164031569, 4.979071695628544, 5.133003196912499, 4.379186668356113, -4.86778626836963, 4.634930776323664, -0.1089141937450041, -4.255563780677708, -3.5166745185240127, -1.1420868667664101, -5.249063619177255, -5.9528197715044335, -6.589425374351098, -5.334426241017802, 3.2918241295352533, 3.2396298489306323, 3.764139832809123, 4.833950351763329, -4.046037835009249, -3.996075239580246, 4.952603166993848, 4.645271161017601, 5.53466190382319, 4.630303198403161, -3.2635542649530977, 5.1934733092564604, 4.560890433344043, -4.216554618878586, -3.1788673695318828, 0.834391317530346, -1.6877876542880799, -3.4125715630976963, 3.928393596357005, -3.482664959812311, -3.561594925043621, -1.8427780133920075, -5.328055107916713, 3.840191320599141, 4.309907364738987, -2.6191311680592557, -5.260147058557813, 5.176007235883233, 4.95647647532558, 5.280192556925085, 3.1285516098653603, -3.7821174534090254, -3.8269896078644634, -2.965293751999571, 5.388255521628213, 4.447921363126804, -2.1820583662737705, -2.0170745813094806, 4.830343358128525, -4.108322952556926, 4.897840011969802, 5.392191736821391, -5.240729478436474, -1.442102612404792, -3.3081438805528744, 4.775198117215511, 4.198348728552875, 3.4500686682446102, -3.462286972859072, -0.4403049954687692, 4.420457465938721, -0.23783392001853276, -3.6373279801654124, 4.053931886115762, 3.903550930949897, 4.786041808609768, -3.2519250550212178, 4.079677652131315, -5.242265557266016, 4.6163580031322935, 4.876265930398225, -5.120764472461283, 1.0675293526672691, 4.823080020640762, -5.34346085910905, 5.358675937488117, 4.8141208260340465, 4.610135631898537, 3.4208441135174708, -5.173489933446055, 4.800922138646703, -1.349611678178915, -4.187098360594096, -4.878050600086273, 3.100743048921065, 1.5436076348501895, -4.383375798495829, 5.686193133299879, -3.5262396699445464, 5.281740027934761, 4.65779972751007, 6.106121400969115, 3.768841261228079, 4.13802564528679, -4.982652339221539, 5.21814894893666, 5.789433311132563, 5.185784325484646, -4.430104139659129, -3.7421643665735695, -4.8652328329137395, -3.063054921965104, -3.5729219441897717, 4.836919819726238, 5.185948783329143, -1.0746263834693908, 4.678193266618513, 3.2226340222022762, -4.949332543473734, -3.791680699815115, 5.317895486255747, -5.703189422893782, 3.2977931840610646, -1.1643103873497958, -3.325801761631236, 5.7147806314854375, -3.9784983829348683, 5.116911574365526, 4.874497171407374, -2.608362653432093, 4.841522290830144, -3.693594159991805, 2.789427297427023, 5.011601686820303, -4.588890057754181, -4.245847013377438, -5.834359873153957, -4.0614426894387465, 4.394157416733661, 4.7936673676325965, 4.3577969650655355, 4.014118704618964, 5.004733977728252, 4.6394387566624316, -5.160930605567538, -5.07959574115605, -5.963771575725514, -4.7286988946683834, -5.039921525947653, 0.6742680776177022, 4.517413867030877, 4.5556304136831605, 4.357237333051164, -3.7119562465963636, 3.4127843240563056, 4.507374067487552, -4.9352538227912355, 4.335321439456104, 3.832035247026088, -4.780721563653187, 3.510083509359034, 4.09315678663023, 3.996619582947922, -4.580223817028904, -4.115577030589142, -4.6643276307107095, -3.011617819841408, 0.5434753540881704, 0.4484361231294257, -3.36688250032704, 3.9195071346873105, 3.7261287139541346, 4.2052320189169174, -3.1019955949096434, 5.43172837326309, -5.200595941073674, -0.6181727995229146, 5.106380716342931, 4.663271502977915, 4.166200891990549, 5.718850075304576, -3.992969312868661, -2.476333831840871, -4.211627742236866, 5.185001541315784, 0.9550696478343331, 5.2745389791469135, 4.8736270572832945, -1.5678689395185081, 5.796526696183638, 4.579706244760981, 3.5319134403885406, 5.204335001081506, 4.381779436263033, -3.7063116464930697, 3.427420014264465, -4.129694792077233, 5.378475900174334, -3.413345845650619, 3.9235056605145475, -3.9819385292147844, 4.59628180349028, -2.134797573783708, 3.7746675471619167, 3.6811201017747717, 0.3603480016153576, 4.237464663146765, 3.5024037837609723, 5.622409783466116, -1.352740510314596, 4.215344821479264, 4.911421119470082, -0.18082847509847122, 3.404577921652871, 4.205354434353466, -2.588358710639946, 3.778084197359985, -5.748068742462636, 4.853965010255283, -3.7892519534914886, 2.0385329132209655, -4.9908502851110095, 5.161714031307291, 3.677701629222899, -2.6361984390913054, 5.3184141640642135, 5.74741248542181, -0.7521877716522998, 3.5844532054034364, -4.803991769186318, -3.590868772917297, 2.9906586226898906, 3.7220869618062253, 4.50350990032377, 5.495538078174632, -3.9560027037213548, 4.705723168936539, -5.125858204842021, 4.955889787786645, -1.4541000338580128, -4.708587624819028, -4.055425358563793, 5.466199045750406, -4.735466822010715, -3.7095816936893113, 5.766047536658402, -5.470378701884432, 3.534354740769333, 1.7820027480791167, -3.627981614743658, 2.0690501266706383, -0.8470050707122354, -4.303815314202468, -4.910680379861466, -5.431694926751836, 4.591619187297774, 5.494036447544028, 4.512360903394277, -4.106132338951671, 3.7460945408474333, -2.853025222464643, 0.8529915503243236, 4.156343088780073, -3.4547221898763416, -1.4998790302224725, 0.10265655578404731, -3.664886381212983, -0.9529926604194098, -1.4596971088385913, -3.8779982292292274, 4.889836028570571, -5.084989882906104, 4.507450862692811, 4.146891416304157, 4.456705890853469, 4.485140123762888, -2.108677225918142, 4.165853706620112, 4.45290288986722, 5.079445436678857, 4.491999210896369, -5.283801569797546, -3.376692324992672, 4.265617331059168, 4.96778115152068, -4.733638596994254, 3.757794331849564, 3.573490573679477, 3.201350542711353, 4.139446940275391, -4.2180362887538045, 3.923065597705041, 4.619326370318341], \"z\": [-0.20871730012555922, -2.6118586083711075, -2.8549418589368574, -2.7415276103043538, -1.2933491481208912, -1.387595895875004, -3.422461453940292, -2.1014921551329815, -2.096499468274777, -3.612107993492225, 3.252872917731815, -3.7962415897196795, -2.6580434796617087, 3.457829921651274, -0.7183847797362831, -2.655898548768287, -4.137252099326568, -0.5221457559616345, 0.4247929708149674, 1.5745940864538337, -2.5961360368482653, -3.338387034935504, -3.465891584795692, -1.8816354359477208, -0.2680568680190939, -4.0444597851374615, -3.357775265345977, -3.4926954930799194, -3.424657761185992, -4.423562900757828, -3.090611697897246, -3.469849338480421, -3.6581270607514123, 2.935820656493908, 0.5819111332760283, -4.00781250481017, -2.3379514150084315, -1.7925954480823179, 0.04559678335904127, -2.856842515312452, -2.177869678658505, -3.818892443059658, -3.12690912301358, -3.1368669708540446, 2.9398576407663626, -1.6107463401860045, 2.8926358366347746, -3.7442742128777575, -3.891141988362917, -2.810185788480683, -3.2898512229303085, -2.9349780015772455, 0.23518312850966958, -3.2541294404004817, -3.1672667573630213, -0.5749839939727838, -2.8821162100563407, -2.9626882589458114, -0.5574321640619313, -4.364635737074935, 2.2921785063525335, 3.4884332452008415, -2.8337171789115807, 1.4398777008773014, -3.0162166015448673, -3.275935855979796, -2.3777872749932243, -2.073485016597628, -2.925868215489557, -4.251399948542982, -3.810316449858085, -3.7510609017782235, -3.5964189134468625, -3.1403105817216845, -2.1322323324899584, 0.23496996413770388, -2.9693966725674508, -2.9157211394245097, -3.235019049693169, -3.373762927974341, -0.612433061039657, -0.7108225008680564, -2.9391339688106997, 2.5255339657933016, 1.2395178557933133, -0.7473462468809764, -2.9261619215352055, -3.708177297705509, -3.1648428731967013, -4.51588624229433, 2.577054616317484, -3.3391795050850988, -1.295123148720604, -2.274196481573655, -2.270208467852562, -4.650823258288178, -4.357447866614571, -3.062591671446982, -2.891868260770883, -3.7256896979774496, -3.5903195526597704, -3.2208121721153113, -3.6220850920096472, -1.51795635080375, -3.4939984493655505, -0.17253980306181216, -2.829844893199126, -4.691197690950713, -3.4372573325356117, 0.9450135713611882, -3.7819607123358816, 2.578119904694776, -1.973982823235631, 1.0498736387962164, -2.337722069739644, -2.8740424190431995, -3.7005074881484408, 2.253423608216121, -2.670621340280536, -3.531467494156161, -4.485802608617681, -2.950748687721044, 3.2548127461080476, -3.301896519262871, -3.454170654129303, -3.3376827357212417, -2.76998379587538, -3.893560558683177, 2.9962982992092546, -2.971985593918995, -3.8614178663931633, 0.25072949778645026, -2.2309482815272577, -2.598813519906249, 3.119727988727712, -0.053292504576016086, -2.2015679541509012, -3.710078447594871, -2.2949507198928663, -1.6034692706853375, -2.9449951638255056, -3.3675000602299128, -3.4661563417612067, -4.063421945524569, -1.1921895820245667, -2.390678338419262, -3.593838309328381, -3.14173589268775, -2.252595116410318, -2.5704099837931476, -3.790280125720246, -2.5381387085816725, -2.4323699324550727, -3.131261390303713, -4.222601566579285, -4.469758252960945, -3.5738954311335056, 2.824611255800677, -2.4945739188207425, -3.0789597564350255, -2.6240824766098867, -3.740320143452775, 3.7192010153942334, -0.3718302409503491, -1.9264452978059277, -2.0828568894848303, -3.039395918127678, -2.0540796107863746, -2.6659530665488704, -1.6378532834904784, -3.0048644886908535, -0.39529855314827556, 3.07096725773921, -1.6035016975557266, -2.599901981864113, -2.99455949157743, -3.1640037357525506, -2.8423339435191273, -3.709346165164484, -4.331954942572613, -3.0124918593607233, 2.11168553089548, -3.91642438316848, -2.9618324777117144, -2.5898237329816602, -0.5939313647581919, -3.412124030147645, -3.352784523900621, -1.9864656446487554, -2.223325032743028, -2.2544759140229265, -1.9061015986825653, -3.891187868540786, -3.540218642767124, 2.712744119432171, -1.4674023425789327, -1.647160075341089, -3.364796519629021, -3.898453531529812, -2.957436824200318, 3.158058490677548, 2.3321742146449704, -2.9302304690936074, -3.082137654765432, -2.842754726467426, -2.427296513053351, -2.284879680624381, 1.2154963978186073, 1.7759080645676737, 1.2857275364634733, -2.607087759637483, -3.7197172259005438, -3.3722302443218726, -2.527147948457434, -1.8290427731703147, -3.60476795994504, -0.07903392762532513, -2.1184090085910317, -3.3460847728709955, -4.319005787567899, -3.771146535708209, 0.6216514965384907, -2.4153390118083498, -3.1385994655036287, -2.8069535567732724, 3.4866653406400947, -4.425571039792513, -4.666798092625288, 0.6227162106340067, -3.4012179121842268, -2.7866751035483883, 1.7885954475282535, -2.2258171701089884, -3.5613664384548978, -2.76771988120093, -3.516830901352581, -3.6586252454089765, -2.4178082997619024, -2.3283205183563567, -2.408800225326305, -2.1152595405828367, -3.5167956109218483, -2.2275674536383034, -3.1192773198330306, -2.4569028133850614, 1.1345159875649187, -2.7829811597470075, 1.9694393141291502, -4.162453370628693, -1.987743518194238, -2.3800497276287085, -2.304461433421835, -5.1852200163835125, 2.5764950731151406, -3.5574582946123616, -4.435647546472207, 1.781185600769299, -1.512008459995074, -2.50293856615815, -2.9050084645300043, 4.00446044348164, -2.40667884109254, -3.872239038826736, -2.550291815064436, -0.96365850219448, -3.9145894587516534, -3.661309104473002, -0.7706431607179544, -1.5918204249335495, -2.9904798748618293, -0.8421848985149308, 2.6684618903286124, -3.7236870169326375, -3.321549118543054, -4.184192704233265, -2.7106181220683037, -3.7348582930804817, -2.972353701591255, -3.9045322836121232, -0.5630406913123385, -3.177542499712991, -1.8713958749266437, -2.832409642018617, -2.912157914238587, -2.7786575655337513, -4.782240571012272, -2.9388353318286717, -2.1693290678423645, 2.905037375224696, -2.525079311471943, 3.621599076377484, -0.46807084648692476, -2.857624306557793, -3.6990609281187594, -3.625684306381489, -3.36123246612046, -2.614505894585962, 0.9976721377143696, -2.2230012391483673, 2.411831990323296, -2.3570008470343007, 0.11852469785082631, -2.683409175741129, -2.126304605793064, -1.0430101717807818, -0.14228898124188405, -2.974234160948007, 2.9882876458122682, -0.007951759263007174, -3.2242509004956643, -3.9307493468375836, -3.5491997783313214, -2.0304416361250786, -2.2551459464330375, -3.789734719867026, 0.5425408946202945, 0.4049686672083048, -2.615720309869122, -2.4528079281478266, -3.281923954110942, -3.7280993452046713, -3.2091447282824226, -1.905356405507268, -3.257224649527418, -4.1256776818889715, -2.813150217799609, -2.784579878021891, -4.035585002510827, 2.8298697506361585, -3.7185232964798924, -2.9480867369346857, 2.7944797546887616, -4.684112164989379]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 2\", \"marker\": {\"color\": \"rgb(44, 160, 44)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 2\", \"scene\": \"scene3\", \"showlegend\": false, \"text\": [\"Complementary_64_2\", \"example_4\", \"redundancy_32_2\", \"mutual_error_2_2\", \"Complementary_79_2\", \"Complementary_8_2\", \"Complementary_7_2\", \"redundancy_54_2\", \"Complementary_29_2\", \"example_34\", \"example_35\", \"mutual_error_25_2\", \"redundancy_6_2\", \"example_47\", \"Complementary_5_2\", \"example_53\", \"mutual_error_11_2\", \"redundancy_20_2\", \"redundancy_31_2\", \"example_71\", \"example_80\", \"Complementary_85_2\", \"redundancy_15_2\", \"example_91\", \"redundancy_37_2\", \"redundancy_50_2\", \"example_99\", \"example_102\", \"redundancy_14_2\", \"Complementary_34_2\", \"example_106\", \"Complementary_26_2\", \"example_119\", \"example_121\", \"example_122\", \"example_123\", \"Complementary_21_2\", \"Complementary_86_2\", \"example_130\", \"example_134\", \"example_138\", \"example_143\", \"Complementary_39_2\", \"Complementary_95_2\", \"example_150\", \"mutual_error_7_2\", \"Complementary_27_2\", \"redundancy_59_2\", \"redundancy_9_2\", \"Complementary_93_2\", \"example_166\", \"example_170\", \"example_183\", \"redundancy_55_2\", \"example_187\", \"redundancy_1_2\", \"example_191\", \"redundancy_16_2\", \"Complementary_30_2\", \"Complementary_80_2\", \"Complementary_25_2\", \"Complementary_73_2\", \"redundancy_41_2\", \"example_207\", \"example_214\", \"example_216\", \"example_217\", \"Complementary_67_2\", \"Complementary_51_2\", \"example_230\", \"Complementary_75_2\", \"Complementary_69_2\", \"redundancy_46_2\", \"redundancy_7_2\", \"Complementary_96_2\", \"example_243\", \"Complementary_59_2\", \"example_251\", \"example_252\", \"example_253\", \"example_258\", \"redundancy_3_2\", \"redundancy_28_2\", \"example_269\", \"Complementary_6_2\", \"Complementary_84_2\", \"example_276\", \"Complementary_66_2\", \"example_282\", \"example_288\", \"Complementary_88_2\", \"example_295\", \"mutual_error_31_2\", \"Complementary_87_2\", \"example_308\", \"example_313\", \"example_315\", \"example_317\", \"example_325\", \"example_330\", \"example_337\", \"example_339\", \"example_343\", \"Complementary_52_2\", \"example_347\", \"mutual_error_23_2\", \"example_358\", \"example_366\", \"redundancy_62_2\", \"mutual_error_29_2\", \"redundancy_22_2\", \"Complementary_20_2\", \"example_379\", \"redundancy_52_2\", \"Complementary_56_2\", \"mutual_error_28_2\", \"example_387\", \"example_389\", \"redundancy_40_2\", \"mutual_error_32_2\", \"example_397\", \"Complementary_40_2\", \"mutual_error_10_2\", \"example_402\", \"Complementary_24_2\", \"example_406\", \"Complementary_58_2\", \"example_413\", \"redundancy_63_2\", \"Complementary_2_2\", \"example_418\", \"example_419\", \"Complementary_32_2\", \"mutual_error_18_2\", \"example_435\", \"redundancy_53_2\", \"redundancy_0_2\", \"example_452\", \"example_454\", \"example_455\", \"example_458\", \"example_459\", \"redundancy_64_2\", \"Complementary_28_2\", \"mutual_error_22_2\", \"Complementary_9_2\", \"example_471\", \"example_472\", \"redundancy_30_2\", \"Complementary_48_2\", \"Complementary_60_2\", \"example_484\", \"mutual_error_24_2\", \"Complementary_12_2\", \"redundancy_18_2\", \"redundancy_60_2\", \"example_496\", \"example_498\", \"redundancy_36_2\", \"example_504\", \"example_505\", \"redundancy_57_2\", \"example_509\", \"Complementary_14_2\", \"example_520\", \"example_524\", \"Complementary_82_2\", \"mutual_error_20_2\", \"Complementary_61_2\", \"example_553\", \"Complementary_18_2\", \"Complementary_33_2\", \"Complementary_4_2\", \"example_561\", \"redundancy_65_2\", \"Complementary_68_2\", \"example_564\", \"example_565\", \"Complementary_37_2\", \"redundancy_38_2\", \"redundancy_39_2\", \"redundancy_47_2\", \"example_577\", \"mutual_error_13_2\", \"mutual_error_26_2\", \"Complementary_74_2\", \"example_607\", \"example_608\", \"example_609\", \"Complementary_0_2\", \"example_612\", \"example_614\", \"example_619\", \"Complementary_16_2\", \"redundancy_49_2\", \"example_627\", \"example_632\", \"Complementary_57_2\", \"Complementary_78_2\", \"Complementary_19_2\", \"Complementary_47_2\", \"Complementary_53_2\", \"Complementary_98_2\", \"Complementary_10_2\", \"Complementary_81_2\", \"example_648\", \"Complementary_17_2\", \"Complementary_72_2\", \"example_658\", \"mutual_error_8_2\", \"redundancy_21_2\", \"example_663\", \"Complementary_1_2\", \"example_672\", \"example_674\", \"example_676\", \"redundancy_24_2\", \"example_683\", \"example_686\", \"example_690\", \"Complementary_62_2\", \"example_698\", \"example_699\", \"redundancy_56_2\", \"example_701\", \"example_702\", \"example_708\", \"redundancy_11_2\", \"Complementary_97_2\", \"Complementary_42_2\", \"example_724\", \"example_725\", \"example_726\", \"redundancy_35_2\", \"Complementary_49_2\", \"mutual_error_21_2\", \"example_735\", \"example_738\", \"Complementary_44_2\", \"mutual_error_17_2\", \"example_745\", \"redundancy_5_2\", \"redundancy_58_2\", \"example_749\", \"Complementary_22_2\", \"mutual_error_19_2\", \"example_761\", \"example_763\", \"Complementary_36_2\", \"example_766\", \"example_767\", \"Complementary_71_2\", \"Complementary_15_2\", \"example_771\", \"example_772\", \"Complementary_76_2\", \"example_776\", \"mutual_error_27_2\", \"Complementary_38_2\", \"example_783\", \"example_784\", \"mutual_error_15_2\", \"Complementary_77_2\", \"example_791\", \"example_794\", \"redundancy_19_2\", \"Complementary_70_2\", \"Complementary_13_2\", \"Complementary_11_2\", \"Complementary_63_2\", \"redundancy_61_2\", \"Complementary_45_2\", \"example_815\", \"example_818\", \"redundancy_26_2\", \"mutual_error_9_2\", \"Complementary_35_2\", \"example_838\", \"mutual_error_14_2\", \"Complementary_83_2\", \"example_841\", \"mutual_error_6_2\", \"mutual_error_4_2\", \"redundancy_17_2\", \"Complementary_54_2\", \"Complementary_90_2\", \"redundancy_2_2\", \"Complementary_31_2\", \"redundancy_4_2\", \"Complementary_23_2\", \"Complementary_50_2\", \"Complementary_46_2\", \"example_871\", \"example_873\", \"redundancy_51_2\", \"example_875\", \"example_877\", \"Complementary_89_2\", \"example_879\", \"Complementary_41_2\", \"example_888\", \"example_889\", \"example_890\", \"Complementary_3_2\", \"Complementary_65_2\", \"redundancy_33_2\", \"example_905\", \"Complementary_43_2\", \"example_914\", \"example_918\", \"example_921\", \"example_927\", \"example_928\", \"example_930\", \"mutual_error_5_2\", \"example_942\", \"redundancy_45_2\", \"example_944\", \"example_952\", \"example_955\", \"mutual_error_30_2\", \"Complementary_55_2\", \"example_961\", \"example_971\", \"Complementary_94_2\", \"Complementary_92_2\", \"redundancy_29_2\", \"mutual_error_12_2\", \"redundancy_10_2\", \"redundancy_34_2\", \"mutual_error_16_2\", \"Complementary_91_2\", \"example_995\"], \"type\": \"scatter3d\", \"x\": [1.1594931107967341, 5.451494989448832, -2.382562204292351, 3.9280491662494965, 1.3283830095497984, -2.2611108512202596, -4.513839911130375, -4.627518130086692, -4.2427283241446, 4.188107422988541, 4.596325988373823, 0.9300793835980776, -2.427277454669105, 4.392902456678801, 4.063396548955373, 0.4813327397913668, 4.616968420060963, -5.451607060679496, -4.290570899438033, -4.105965396421797, 4.906515296089987, 4.820796964202015, -4.161127214088809, -4.648096805893644, -4.941660350874078, -6.040177042177849, 3.3965878338145625, -4.498688836832028, -4.177598505585814, -5.439173325952952, 6.445301243127364, -4.314151841389329, 2.8858680668640613, 4.990064631087283, 3.9654513897841133, 4.597412536232635, 4.678865174353367, -6.276019202411582, 5.997796924043357, 4.454527832267141, 5.623922554480298, 4.404714126232969, -4.534838897034847, 4.54436866171965, -5.865398954165418, 3.2689736063836, 1.115385691997932, -3.1056278728026574, -3.598622843256011, 0.370978142572168, 5.244893628571042, 5.95785052362808, 5.988695581592494, -5.898125757410534, 3.8622157850732393, -5.479060725295158, 6.193515287992923, -3.642493401024835, -0.089062182886393, 4.670280785584219, -4.141112390937981, -4.945555157096765, -2.708318608005777, 0.5752012957423187, 5.149610045067573, -4.198694980918225, 4.6721606709231995, -5.5704891832681085, 3.8575597583781107, -6.5037167575829695, 2.8868728113213926, -5.221644411348874, -3.654740988040343, -6.70677440263102, -4.526552721493037, 5.706755408755928, -3.639954158076567, 3.5544170321737, -5.225427365978084, -3.547806375951077, 6.296833478470784, -3.8519176315631563, -4.284321206950975, -4.689401517361475, -4.059670102335465, 0.5354854641599986, 5.066180494874501, 0.06849006335144536, 4.934774065595859, 7.44795625770868, 4.8598894394257375, 4.188538662872738, -0.08825559392008397, 1.3776553598709214, 5.894464575097074, 4.5464746388967905, -4.139339492149648, 5.491044717432286, 3.1951457916593213, 6.267831766003215, -5.420721198578847, 5.518525668595027, 4.89596186343478, 4.245695194662473, -4.972358740250219, 0.3319987279916003, 4.755155023894294, -5.623843713384322, -5.291435735546275, 4.426038669556407, -2.972152619265383, -5.231271241587388, 4.3859335451456385, -4.534609637125483, 1.6559796716398507, 3.995687984862225, -2.677764808770471, -5.329667184475036, -5.499360147431588, 0.7235939076975836, 6.879508673426255, 4.0369816963301535, 3.7270403718598115, 4.318712880575074, 5.188421679312556, 6.710558142676458, -5.201257626833298, -5.0430344176701105, -4.54890928835317, -4.265002813011255, 5.337322144448347, 2.999802929883977, -3.583650331800512, 5.022199325505568, -5.074513209839846, -4.726514757517051, -4.4063614930843364, 2.5839341724849128, 4.763396324187927, 5.0912268569264745, -3.9128951288500913, 6.1917137388744345, -5.592506309972199, -5.300429606660864, 2.8196523044222013, 3.407703322708461, -4.144244359010646, 5.383791136813439, -4.342666260899962, -4.788940830542681, -4.443901555267098, -4.22688908855534, 1.4047958067304143, 0.8598474375878951, -1.90798888268416, -2.3899374105522684, -3.6100992014178677, 6.078862590309838, -5.120300468885144, 5.276515942556672, 5.886441121632483, -3.071670849284956, 4.806867272166833, -5.527957320552708, -3.908104527083433, -4.055002642280469, -6.118294880217512, 4.704539350746789, -6.044722300631708, -6.300457627445511, -3.1132596221390836, -5.13699013186168, 4.282831847444168, 3.7121235120518277, -4.9143817113988, 0.9262261855509377, 5.275962031547235, 5.837732820402266, -3.532187844688769, -4.230980098742769, -5.2248999556630675, -4.5232285436579245, 3.1149759654560576, 1.2440549379469577, 3.947060635019104, 2.1120977509886414, 5.400669496183828, 6.31000786978234, 4.781596111449487, 4.440537123132054, 4.743915548004776, 4.734479000551976, -4.641475198623916, -4.122151662677166, -4.001878556934008, 6.682437754535191, 4.742968281688166, -4.010139344218444, -5.685449009822879, 0.9236256990189091, 3.6255527049045697, -4.3625697631724565, -3.3094961990134824, -2.009494761969281, 0.9465330556431508, 4.453919312595427, 1.188852106711172, -5.298003984708767, -3.5936297480636585, 3.646336211865865, -4.11855625054748, 4.810988666616084, -4.814265625198698, -5.093009899214075, -6.155079005806064, 3.98024302756399, -4.959041484130927, 6.279168244800637, 5.973282516605398, -3.612291139670695, -5.1329055817661535, 5.842374496805664, 3.761583771496191, -5.297464464581252, 4.288677750109784, -4.644635096777394, -6.246576063253547, -4.179099362348742, -3.2762293554169135, 3.261263059191942, 6.245818476571795, 5.474220139460293, -3.444646036832327, -4.700204842455706, -6.242396679643979, 4.132088364704491, -3.2386249199309813, 5.520108579017817, 4.155560303530369, 4.374921348934196, -4.300886126842379, -3.0697733294120018, -4.093400049655713, 3.552369518362934, -4.407784004553809, -0.7779668215970184, 0.7764121260249, -4.951552242541443, -3.6298443030560485, 4.224312230033078, 5.137784941129884, -4.9975623316449855, 2.054047544405793, 4.723691489714466, 5.006641586316337, 1.0689444947777211, 5.671179423622877, -0.4302218637587547, -3.672045031135852, 3.5180338364454373, 5.5623003619391245, 4.37337457927579, -6.103357408969324, 4.782479919324986, 6.206386300622445, -4.148064628820823, -0.006501286672751294, -3.5642673728297862, 1.3742197477965648, 3.4853430440595123, -2.949602643036989, 1.4569825665732692, 4.172606367937778, 4.726877394000869, -5.432271637636307, 0.8115939856918482, 4.757128138475492, -4.73482302433343, 4.357885668366626, -6.183528627986631, 5.222764089667935, 3.412589373730938, 0.7162939399533463, -4.379773253478961, -0.6824085009683034, 4.32388953695798, -4.477616644160686, 5.0313414564643, -5.230939849883055, -4.542894456526158, -6.177500499887472, -4.931105039712812, 6.260687458067866, -4.181435637804275, -4.8546311667878435, 5.771213399313722, -3.114065760179665, 0.9865033095348235, -4.573812867127182, 3.248958706611568, -1.1000810757060613, -2.0928698659155147, -5.100991529777142, 0.9543586682830937, 2.1030904835943387, -5.877874850343206, 5.358249785012939, 1.6031784540599696, 5.2929032663854665, 3.8029759682295934, 3.910702115824642, 3.7780826936993703, -3.6475196304331, 3.9942414633017393, 1.7095163247880332, 5.1360350610873455, -4.370424498820422, 4.641005291891183, 6.448223802364905, 5.829958410184094, 4.2643557680569755, -3.7847321415394632, 6.340597298405006, 2.7375483616779377, 1.712104194784673, -5.715380182463404, -5.0332422707162605, 0.2256083237551184, -5.98048156786818, -2.7153697808798785, 4.299278902077599, -4.295367166569517, 6.504908487697338], \"y\": [-0.20994663999294672, 5.096409766032569, -5.439628421829616, 3.373369691054456, -0.7594681856680421, -4.845273253545776, 3.890821159427231, -4.5942965464059915, -2.282199641837469, 4.023533982875501, -4.659849453276334, -0.5932441051859302, -3.753884295908926, -2.5421593544364054, 3.5264721091886355, -1.6548964088873248, 4.324608991082575, 5.061937488747993, 3.9592356242412317, -1.9669457541377988, 5.232997498817989, 4.348823562082014, -1.2115054272374124, 4.27155742147986, -3.184342627008819, 5.815193603243216, -4.093517018531748, 3.6509492786017996, -2.034000144418931, 4.934512071965542, -4.7251222236979435, -2.378445619408482, 2.5577896708003456, 4.302271521008413, -5.953998876876117, 4.2648571113285465, 4.204807360237563, 5.416425010453051, -5.345320449568442, 5.318857103356589, 5.133379199518248, -5.5650515426760725, -1.8153316159194346, 4.112735734176794, 5.1489000952173125, 2.8729488610549097, -0.23136615516920744, -3.835792922754732, -2.447501025834454, -0.39318660795683835, 3.6324297719774847, 5.165033353106503, -4.796308024212242, 5.154323836983818, -3.4015543806934394, 4.697033401025663, 5.875155470860258, -4.6156617052956985, -0.7907942504960721, 3.924884891639226, -5.517252160120574, 4.766782498723178, -4.694274645535781, 0.05363879504332314, -5.126814045250511, -1.474628001610463, -3.7044220805936106, -3.505276604865495, 3.2739790854459767, 5.6078773689130825, 2.4660731575996024, 4.553272737311457, -3.14561774943402, 5.913173316172237, -5.01660800505574, -5.786968425316896, -3.945929001214496, -3.8733834894658656, -3.0314151598219596, -4.721343694044461, -5.456976158028466, -5.399793250250005, -4.55837182953648, 3.992990142798977, -4.121652337058366, -1.5805300012802705, 4.612933809965714, -3.2114446508928616, -4.2065250219422685, 4.158037802610745, 4.344539080945089, -3.966192770153755, -0.592611406722125, -1.0684462086035866, 4.63317138133598, -4.769401404409832, -0.6294506832829176, 4.448952782546549, 2.9721711124862953, -2.8214144929888114, 4.93970156080692, -5.410050435665877, 4.924801819757647, 3.7838311290480258, -1.2261269555002956, -1.6552088382507977, 5.276404096580045, -3.650180206271891, 4.753736921210228, 3.970433522623503, -4.8188706779598025, 4.508762153855098, -3.9836727451942244, 3.9917520775983415, -2.836168305351755, 3.4730785603333336, -3.5396212662811823, 4.7569223063502974, 4.858304649228015, -0.445830464107329, -5.856022784422593, 3.7144095841845517, 3.2520831902971787, 4.7379301893304895, 4.763284837868563, 3.933566539798852, 4.418650830645534, -1.2249307507195586, -2.423393688925088, -2.9569396660992697, -5.009303689850056, -1.4855331430254788, -4.519651331361112, 4.411294090708819, -0.5069018888799262, -3.4854964242971413, -0.5144554985792937, -5.200440495687821, 4.602558891411554, 3.82429765506842, -4.460443161134304, 4.306588692984785, 5.083357147117704, 4.684817065228575, 2.4562837945913882, 3.016627522012886, 3.631993918043432, 5.595939229063632, 3.9370896923897583, 4.3330030110673095, -1.9495024790132334, -2.453431209423606, -0.6951596552877812, -1.2591984087195858, -2.7067605350870143, -2.597906380704698, -2.332477310182571, 4.34017146891157, 5.068465412455398, -5.5806120398685835, 5.276721084247668, -3.8113474506002154, -4.159943681078805, 5.041756018672152, -5.491933084413177, -4.627280609011047, 5.409519208476209, 4.432906577104701, 5.255973569720258, 5.50089451051296, -4.767998583565985, 4.616289869275911, 4.026542803703992, -2.92248507427371, 4.501859524038152, -1.4444653294519458, 4.2167093431733935, 4.745223993987322, -2.3940814864448976, -4.635616278327214, 4.755882145557979, 3.8548450068641538, -3.6209487635519793, -1.986686466374938, 3.476375543080473, 1.9635483725453793, 4.807526827058237, 4.454951073159351, 5.33399068807503, 3.8665276485093227, 5.726709376637033, 5.219644548948445, 4.450289932415686, -3.348823416398065, -3.3279964664211494, -5.825812119158782, 4.454920109353914, -2.4445565553339375, 5.171219812408059, 0.3209675493963988, 3.3758253078752998, -4.936657371880644, -2.0599103715527685, -4.523135988927592, -2.3877133132062287, 3.9586104428917275, -1.82161336263855, 4.962099180595112, -1.1581199478225632, 3.376623578396862, 3.7101863328690046, -3.4929478642542593, 4.254167750204805, -2.8339816997398968, -3.570404331742814, -4.893198413408651, 4.721404575713974, 3.960176613253625, -5.035557758794271, -1.9487893558868696, 4.920899886790373, 5.395267159762988, -2.6488480334141773, 4.833088785374773, -3.811546135859853, -1.2738527297819466, 5.753212312479043, 3.8589613726571774, -1.3243435190336916, 2.765939803840487, 4.816105710459699, -4.830174945674447, -3.7328082065388957, 4.2125069189526645, 5.6737690276842265, 3.6309198117565846, -4.309000583460104, 4.325778995689365, 3.6759037746689733, 3.850889332567919, 4.290022416827229, -4.8379782135270055, -2.490186526623906, 3.3335761346072874, -0.6678219116162452, 2.010030490364851, -0.13271650779896382, 4.357555893700814, -3.8714207585341107, -3.9660659169062065, -5.2401155292964186, 4.620366703521324, -1.009708670824779, 4.589418735310243, -3.763856675672485, -0.72425204273382, -5.27731444482125, -0.5070055141545051, -3.187505633356767, -3.651072551670279, -4.098306200418914, 3.9628230835792815, 5.260436992387227, 5.589055737158577, 4.819951526426594, 0.06869301061026833, -0.578446551981799, -2.0617853581608516, -0.8103421233949528, 3.0568650350658952, -4.284170290387373, -2.0583886495924486, -3.9724545237242928, 5.030605227876543, 4.613210562180008, 0.5168455274284695, 4.36569409189, 4.1192293943535825, 3.8978305495931576, 5.596524383031287, 4.922534006100469, 3.060168816821731, 1.0033370006572477, -1.88767842636362, -2.1848121767936006, 3.724656682267827, -4.612285014325252, 4.604163611452487, 4.5225696635415495, -2.6229064263172908, 5.454833248801098, 4.445811773285679, -4.241926501935799, -4.002850125429913, -2.5169912949576387, -5.749179659773554, -3.40382814343671, -2.2573784611525114, 4.0754609511088855, -1.7739057712408717, -0.16073938307027136, -5.211285590492118, 4.484345033792243, -0.5229890703478199, -0.622905504907208, 5.012296563587851, 4.947008924227152, -1.6641901605019065, -3.3255622849009865, 4.473131044750824, 5.185082927157654, -4.154127656312633, -3.17986258110547, 3.5206246812100797, -1.2162386727952113, -3.631191525768446, 4.233528831356392, 4.143602394195845, 4.332362489769938, 5.150951166593484, 3.838385483970005, -3.132966503243016, 5.774937066179678, -4.197920425410398, -0.2487765092736745, 5.29109154671341, 5.069690434463935, -0.645346761404943, 5.46204966799207, -3.66584852486818, 3.944308832107391, 3.727249519844014, 4.589456155576431], \"z\": [1.1816437422247086, -2.3188310579697236, 0.09998445812099455, 3.690357008511133, 1.4034210240255327, 0.35556623077224403, -4.223434980750403, -3.60143053002564, -3.5142853680057096, -2.656263408631421, -2.711900478311402, 0.826448657086781, -0.3285912471725905, -2.7662987080422803, 3.3806028925144544, -0.7028135960776863, 0.5491416616042049, -2.39181557263192, -2.784788316203146, -3.167327715789543, -2.215216695776406, 1.7610005459303304, -3.1413201519726757, -2.927024979996052, -4.442320372692041, -2.132174138660784, -2.760748028717952, -4.381201082491503, -3.3168192987281486, -3.406240105063054, -3.6566230857923108, -3.3407824988375587, 3.048062699285229, -4.173956355180603, -2.6853303113480576, 1.1870174032920573, 1.9454914481472274, -3.8272916726720325, -3.004067970109291, -2.942793614883403, -3.4281174331964475, -2.3816519926113813, -3.8251923893098763, 1.3408678876266928, -3.382384771652795, 3.219156272096245, 1.5297608178114102, -1.17628514534472, -2.2606441622810443, -0.05483110345354769, -3.0495195714655896, -4.304124808406854, -3.4295645655572806, -3.9396551389949126, -2.9603691340428733, -3.0096928096965017, -1.1973721891454923, -2.059229781273115, -0.9346270061524603, 4.143743279240693, -2.877279046574036, -2.7129630736536208, -0.6734056427375363, 0.8245327839232042, -3.058765980108719, -3.4219597466773948, -2.8787344359445055, -5.438201249559644, 3.605880384969196, -4.248285924526216, 4.4013456942122735, -3.5307507939796814, -2.323473256336901, -3.8397132207022056, -3.6028129472192516, -2.097668385760475, -2.061436986177543, -2.4033383096788086, -4.930480511699203, -1.9993873026648377, -3.707748131335765, -2.422870579475494, -3.1941254576260523, -3.461678313009227, -2.9150305387407234, -0.17790781844525128, -4.312579570157352, -2.098403674707449, -3.7525082062088613, -4.58181261838384, 1.9320214926439307, -2.6354218869436288, -0.6559898813895103, 1.0790322117219566, -3.031817431856319, -2.306789748622662, -3.145129982293478, -4.482722573364332, 2.680711298217514, -3.698694028425737, -3.0957953865469703, -2.9113798775538613, -4.049137506890303, 2.8532844895432015, -4.551781736952198, -0.6103378694584211, -2.9338915275624364, -5.658389819470701, -3.233313304126336, 2.1453374621365935, -0.9354956615376844, -3.789223654867067, -3.0121313632562425, -3.5710405251840545, 0.4219155316003448, 3.142189612513733, -0.4001915208452831, -2.3772932048420197, -2.9076158945754607, 0.5703635119908785, -3.0821028691361065, 1.7847025274452561, 3.208953620834097, -2.7825146960777767, 0.09518233591307057, -4.239565400909699, -4.588451251808492, -4.65384224983726, -3.967041884772554, -3.102158913045967, -2.65890813301598, 3.3292282803455646, -2.1872401175895972, 2.2761878034789076, -4.911921205674204, -4.125001356594352, -3.7339591305386284, 0.49446336088194537, -1.3458804372843554, -2.160215608538241, -2.6320606345587954, -3.254939896116236, -2.2646736292892844, -3.2536622916267652, 3.722481989495588, 3.2609252881997413, -3.3574884626441004, -4.276990033646683, -1.7541673977144536, -2.5315739154551915, -3.578034467659263, -3.2884818495531984, 1.3172228934221881, 0.333683961526437, 0.7662879161436806, -0.039857093757588835, -2.2167057951338602, -3.0734494128491807, -2.1162792472761462, -3.4136771676804676, -4.548170987843223, -1.1973897237644702, -2.387770507930115, -3.4529673826202725, -2.6133332157602362, -2.6749439439632727, -2.988185296229532, -0.08254609636351207, -3.758155156410403, -3.9774631091891663, -1.0948451286249157, -3.878781929486006, 0.8707445935622995, -2.460311542253126, -2.8716815905770763, 0.3058975944094725, -3.2753408697058797, -3.4884662414042547, -1.8815113701312098, -3.281177784357584, -3.18171627376699, -3.6465875883277876, -1.9108457715901632, 0.47458915246740446, 2.564788618248205, 3.8175773925927072, -2.7149066826500174, -3.932060531966082, -3.5889408518296264, 2.526582715648062, -2.8999016069323496, -2.302154894702653, -1.7828359334719355, -2.99087393722462, -2.895112143372959, -3.871659326006481, -2.9056223421800094, -2.735843418360534, -2.375469068082999, 1.4095448230943606, 1.7242603638010432, -3.391769425810125, -1.745495132149762, 0.9113675680133961, -0.2423496135566724, -4.304630305582791, 0.4653519046090493, -2.484462666958227, -2.220450163326356, 1.9751938782166467, -3.634840328176638, -3.2104510598139675, -3.8899787177253904, -4.616509737394775, -6.494713018461167, -2.3256480734901936, -2.317682806610162, -3.7237633386659583, -2.7954714886338357, -2.4454735397214624, -2.4861990836462153, -1.6286101955842165, -2.756778149381817, -2.8380678804342327, -2.5658571378960398, -3.919847614824369, -2.485552376666132, -3.6126139287364976, -1.783877377403246, 4.169299162214761, -3.586454349981981, -3.7299967823858684, -1.6693608725986908, -3.267006385783169, -3.5959311101910916, 3.0249294850352757, -1.349472463629926, -3.702466890511067, 2.377546474460389, 1.7980909366814144, -2.6428970458171124, -1.1116161254747412, -2.775734910525498, 1.5069277905471963, -3.586792963412849, -0.11701129329605853, 0.7724406104350166, -3.8795993160458537, -2.023868610185846, -2.690917022751837, -3.382079127581182, -2.2409446753441253, 2.2064252104837907, -3.085684341845599, -3.085160586544, 1.0193457532141672, -2.7373677620163486, -1.0852670312500523, -2.287569189015153, -2.7527191924203307, -2.9260282669404973, 2.1443510106745047, -3.7323187394028357, -1.9530887277118252, -3.6661322104929237, -3.236056901666731, -0.7700902086634399, -2.1511478060987836, 1.4918251859015488, 3.5682966136727576, -0.917348612896391, 0.7991986598170557, -2.563977451355924, -2.8358581952359527, -3.5756093576214014, 1.3910132312469332, 0.9580490451158015, -3.407645207070137, 2.3565274259784674, -3.1977923820543603, -2.432294534902317, 3.1464253113223384, 1.118469521199404, -3.642749489951707, -2.5775744430677396, 3.1445073079325647, -3.5970595128310268, 1.0244875650659186, -4.652274737916381, -3.763636160855687, -3.9014327829295934, -2.442361265287595, -3.648374445580198, -3.0259668353561224, -4.3570088899162185, -3.2266266719662715, -1.2050532119046042, -0.21979968044395004, -3.431608686486543, 3.487991096962554, -2.031090959251939, 0.7894496785207576, -4.139979929770267, 0.7401762778745024, 2.27321818746067, -3.659110416342199, -2.0500593353381884, 1.0923837580128382, -3.442766839165252, -2.0401170228768515, -0.6466900788073628, -2.3580943868332414, -2.155827200758199, 2.8253966115103037, 1.6450208653151797, -3.0480799015775655, -2.520680764762366, 2.071783442733788, -2.7699118582054894, -3.5908606779070933, 2.049522278428467, -2.2863105778425035, -4.99035425807983, -1.940036485441478, 2.4200836572215607, -2.5688268580644937, -1.8366683367336607, -0.5220266394012341, -2.389054009118467, -0.5195721136972082, 1.2369280159405398, -3.8591959173058594, -4.132567396645345]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 0\", \"marker\": {\"color\": \"rgb(31, 119, 180)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 0\", \"scene\": \"scene4\", \"showlegend\": false, \"text\": [\"example_2\", \"redundancy_40_0\", \"Complementary_79_0\", \"mutual_error_24_0\", \"example_9\", \"example_10\", \"example_23\", \"redundancy_18_0\", \"example_29\", \"example_30\", \"mutual_error_6_0\", \"example_33\", \"example_39\", \"Complementary_53_0\", \"Complementary_70_0\", \"mutual_error_28_0\", \"redundancy_62_0\", \"Complementary_98_0\", \"example_60\", \"Complementary_42_0\", \"Complementary_89_0\", \"example_66\", \"mutual_error_27_0\", \"example_70\", \"example_72\", \"example_76\", \"Complementary_78_0\", \"mutual_error_16_0\", \"redundancy_25_0\", \"example_81\", \"example_82\", \"Complementary_22_0\", \"example_86\", \"example_88\", \"example_96\", \"mutual_error_9_0\", \"example_101\", \"Complementary_10_0\", \"Complementary_81_0\", \"example_110\", \"example_118\", \"Complementary_58_0\", \"redundancy_8_0\", \"Complementary_74_0\", \"example_137\", \"example_139\", \"example_141\", \"redundancy_5_0\", \"Complementary_0_0\", \"Complementary_14_0\", \"example_165\", \"example_168\", \"example_174\", \"redundancy_55_0\", \"Complementary_8_0\", \"example_196\", \"redundancy_11_0\", \"example_199\", \"example_204\", \"example_208\", \"Complementary_18_0\", \"Complementary_77_0\", \"example_211\", \"redundancy_6_0\", \"example_213\", \"Complementary_49_0\", \"example_218\", \"example_221\", \"redundancy_48_0\", \"redundancy_30_0\", \"example_231\", \"example_235\", \"example_237\", \"Complementary_54_0\", \"example_244\", \"example_247\", \"Complementary_47_0\", \"redundancy_9_0\", \"Complementary_92_0\", \"Complementary_68_0\", \"Complementary_44_0\", \"redundancy_15_0\", \"Complementary_41_0\", \"Complementary_16_0\", \"example_266\", \"example_275\", \"redundancy_61_0\", \"example_280\", \"Complementary_65_0\", \"example_286\", \"mutual_error_25_0\", \"mutual_error_30_0\", \"example_292\", \"redundancy_53_0\", \"example_296\", \"Complementary_17_0\", \"example_299\", \"mutual_error_15_0\", \"example_305\", \"example_306\", \"Complementary_84_0\", \"example_309\", \"Complementary_57_0\", \"example_311\", \"redundancy_54_0\", \"redundancy_43_0\", \"Complementary_55_0\", \"redundancy_2_0\", \"redundancy_34_0\", \"example_323\", \"example_327\", \"mutual_error_32_0\", \"Complementary_20_0\", \"redundancy_17_0\", \"Complementary_38_0\", \"Complementary_3_0\", \"Complementary_7_0\", \"example_346\", \"example_350\", \"example_351\", \"example_352\", \"example_355\", \"redundancy_31_0\", \"Complementary_46_0\", \"example_361\", \"example_362\", \"Complementary_52_0\", \"example_365\", \"mutual_error_23_0\", \"mutual_error_2_0\", \"redundancy_65_0\", \"Complementary_87_0\", \"example_382\", \"example_388\", \"example_394\", \"example_398\", \"example_404\", \"Complementary_56_0\", \"Complementary_63_0\", \"example_423\", \"Complementary_24_0\", \"example_425\", \"example_428\", \"mutual_error_21_0\", \"Complementary_23_0\", \"example_432\", \"example_433\", \"example_436\", \"example_439\", \"example_442\", \"example_447\", \"Complementary_12_0\", \"redundancy_42_0\", \"example_450\", \"mutual_error_31_0\", \"redundancy_21_0\", \"example_456\", \"example_462\", \"Complementary_1_0\", \"Complementary_88_0\", \"example_468\", \"example_477\", \"Complementary_48_0\", \"redundancy_28_0\", \"example_482\", \"Complementary_91_0\", \"Complementary_82_0\", \"Complementary_27_0\", \"Complementary_97_0\", \"example_499\", \"redundancy_63_0\", \"example_513\", \"Complementary_71_0\", \"redundancy_12_0\", \"example_518\", \"example_521\", \"example_522\", \"Complementary_43_0\", \"example_526\", \"example_527\", \"Complementary_96_0\", \"example_529\", \"Complementary_37_0\", \"example_534\", \"example_535\", \"example_538\", \"example_539\", \"example_541\", \"example_542\", \"example_543\", \"Complementary_59_0\", \"Complementary_31_0\", \"example_549\", \"example_551\", \"example_554\", \"Complementary_60_0\", \"example_570\", \"Complementary_86_0\", \"mutual_error_3_0\", \"example_576\", \"example_578\", \"example_580\", \"mutual_error_8_0\", \"mutual_error_19_0\", \"mutual_error_11_0\", \"example_593\", \"Complementary_72_0\", \"Complementary_35_0\", \"example_597\", \"redundancy_14_0\", \"redundancy_7_0\", \"Complementary_25_0\", \"redundancy_47_0\", \"example_605\", \"example_618\", \"Complementary_62_0\", \"redundancy_20_0\", \"example_625\", \"example_630\", \"example_634\", \"Complementary_34_0\", \"Complementary_9_0\", \"example_644\", \"Complementary_19_0\", \"example_650\", \"example_652\", \"redundancy_60_0\", \"redundancy_37_0\", \"mutual_error_20_0\", \"Complementary_28_0\", \"Complementary_73_0\", \"example_689\", \"Complementary_4_0\", \"example_696\", \"example_697\", \"redundancy_29_0\", \"Complementary_45_0\", \"example_707\", \"mutual_error_18_0\", \"example_712\", \"example_713\", \"redundancy_36_0\", \"example_716\", \"example_720\", \"mutual_error_29_0\", \"Complementary_26_0\", \"redundancy_24_0\", \"example_737\", \"mutual_error_14_0\", \"redundancy_35_0\", \"example_746\", \"example_750\", \"redundancy_64_0\", \"example_765\", \"example_773\", \"Complementary_13_0\", \"mutual_error_22_0\", \"mutual_error_10_0\", \"Complementary_15_0\", \"Complementary_80_0\", \"example_788\", \"Complementary_5_0\", \"redundancy_32_0\", \"redundancy_13_0\", \"Complementary_30_0\", \"redundancy_50_0\", \"Complementary_66_0\", \"Complementary_51_0\", \"Complementary_2_0\", \"redundancy_27_0\", \"Complementary_85_0\", \"example_819\", \"Complementary_76_0\", \"example_824\", \"mutual_error_4_0\", \"mutual_error_5_0\", \"redundancy_33_0\", \"example_834\", \"Complementary_75_0\", \"Complementary_33_0\", \"example_843\", \"redundancy_16_0\", \"redundancy_3_0\", \"Complementary_93_0\", \"example_858\", \"redundancy_1_0\", \"redundancy_10_0\", \"mutual_error_26_0\", \"Complementary_36_0\", \"redundancy_52_0\", \"example_876\", \"redundancy_4_0\", \"Complementary_21_0\", \"mutual_error_1_0\", \"example_892\", \"Complementary_83_0\", \"redundancy_51_0\", \"redundancy_0_0\", \"example_901\", \"redundancy_56_0\", \"mutual_error_0_0\", \"example_909\", \"Complementary_50_0\", \"redundancy_19_0\", \"Complementary_95_0\", \"Complementary_90_0\", \"example_922\", \"Complementary_61_0\", \"Complementary_6_0\", \"Complementary_69_0\", \"Complementary_94_0\", \"example_934\", \"example_935\", \"Complementary_11_0\", \"example_939\", \"example_940\", \"example_945\", \"Complementary_67_0\", \"mutual_error_7_0\", \"redundancy_57_0\", \"mutual_error_17_0\", \"Complementary_40_0\", \"Complementary_32_0\", \"example_960\", \"redundancy_59_0\", \"Complementary_29_0\", \"Complementary_39_0\", \"redundancy_44_0\", \"example_984\", \"example_985\", \"redundancy_45_0\", \"Complementary_64_0\", \"redundancy_38_0\"], \"type\": \"scatter3d\", \"x\": [1.5012019041430207, -0.10037352214882503, 5.454388602184933, 4.975700360219813, 1.3549934355037134, -1.417125273749484, -2.5402081313922475, 0.16315763791393625, -2.020838703702368, -3.988664476379258, 4.426568852523592, 0.5418540257490804, 3.146259871866359, 1.6100327790512672, 2.8682978378964155, -0.9615667863569883, -1.4233246380076423, -3.743984275818563, -1.2796971354334192, 3.86674665933427, 0.41807855717892434, 4.9615299032592945, -3.3215953695301574, 2.0628127814148316, 4.085485259575119, 0.9316967358181243, 0.6383812486847811, -0.528391346511631, -3.1722844255409752, -5.358095409661853, 6.452158059637249, -1.979458928979422, -7.602936738289171, -0.9739381313062097, 1.4341080823757473, -5.557182895759145, 0.6879571927412947, -1.1560528972291384, -5.875349601074617, 0.46776409314382983, 4.859796441002167, 2.149896171088449, 0.8619022617945158, 1.6150689920079924, -0.6896194418323063, 0.9670787425653383, -6.0861173235366905, -0.995753670040104, 0.12276703270919732, -1.7361674675041558, 0.08891635989499065, 3.30734191382326, 6.134537948984621, 0.6114484045891662, 1.2210525882372059, 6.197525573090191, 0.1465571226221509, -1.4036252248160404, -2.3989479364357904, -1.8608204634869703, 1.6032968758523882, 8.129151192511173, 1.186161802803249, -0.7510286327755115, 3.5109885866440402, 4.731405909622088, 3.366546335570947, -0.36350174590552675, -1.6531231438875036, 0.48829257547995264, 4.604441041842022, -0.6119693946369168, -1.2245736527407363, 1.6143888936735498, -1.3498418512069867, 1.6198092318626658, -0.10064410800977976, -0.2371534684364644, 0.19682658727543967, -3.075223692898313, 3.1837884777592538, 0.5609278718019022, -1.104056521433514, 0.251429572325042, 2.403261605956151, -1.345344536076483, 2.678410695649105, 0.41658437654263447, -1.8279098753796605, 1.8314470431332077, 3.1750724072930185, -3.2421626298596755, -2.7423046138969793, -1.2942019327078493, 2.3071673969995747, 0.3146230709672386, -3.203283876926409, -1.87720724586141, 0.14919140195677733, 1.8278381857745505, -0.21655909045213692, -1.57225933589623, -2.976064204602451, -3.1284877175350703, 1.6812741320018227, 0.20615478835593226, -5.593357032349894, -0.1337150071681476, -2.236171119077523, 1.1151559175911518, -1.674655670550938, 2.6948162103801585, -2.731670995172217, -0.9463704675744742, 0.3255833498920409, -1.412712596253529, 0.2701268439252812, -3.1794056658599987, 1.2737590066893048, -0.019245449512074103, -0.5980985600421082, 1.7007463019260323, 0.2389942480339747, 4.716262997354531, 3.0148460274823567, 0.8777261599432489, -3.786881450667805, 4.7602851640007575, 3.1883908362149733, -2.3286201070894728, -1.090665239916426, -1.8687253783913, 2.3944663273228874, -0.8953308568788713, 3.057090559998559, 2.522330572645851, -3.1501187300193725, -0.21694654679652095, -3.3933562772061117, -1.4288658097372917, 0.009128765646815485, 0.7405777472801327, -6.124875377520159, 1.0263684864028653, 3.408657334531591, -5.94684721057874, -4.2074086203356424, -0.6945083080890713, 1.9977459512303444, -1.26791914697041, -1.1985755735314452, 0.7782896969269758, -1.2936615170833785, -1.1153886637027335, -0.4952943386442826, -1.2359719109011034, -1.5092668164690126, -3.323554379318315, 1.2414945931225623, -3.137218908785896, -2.2492365149008227, 5.21334933294996, -2.2953293702303106, 3.2047832410546024, -0.6061933051330083, 3.2677904547048273, -2.810782001931092, -2.269573963461166, 0.2385497710161981, -1.662004755910927, 1.3182137078875882, -1.0722134642460273, -4.756612172135073, -0.04531665406977642, 0.9830339468409709, 0.518993900268616, 0.5173084630326007, -1.778080308534593, 1.7243968024989664, 0.814015624680533, 2.088165652184861, -0.010332904965636675, 0.6758948058365524, 3.5731226065710384, 2.650454552128412, 0.8176794193385959, 2.3350735995739127, -0.8192953061960878, -0.28475991772272097, 1.6282863127172296, -4.882326586368799, 3.372642713139219, 1.0646411100720166, -0.32292167873916416, -0.024408987110858486, 0.24167389685188626, 0.6634566784922532, -6.988562093622483, 0.4590721541992105, 1.7425810253212264, 0.7420058629475119, 1.3720642984565263, 5.21068797587436, 0.9425303074274959, -0.6908061052076364, -1.8071305261611905, 0.2968001099536064, -4.0515312410300925, -0.14003949315881978, -1.0846053944287284, 2.029229361494452, 0.797473960667227, 1.0108633340427178, -0.7331398387193994, -1.4559505903458059, 0.32642126061789384, 0.4204266766243986, 0.4961538888110972, -7.8015381948938325, 2.8530904397830703, -3.561569262373442, 1.9965675729549697, 2.1561539073499794, 0.7337395581305585, -0.615340272320549, 7.3283198428636735, -0.22273406511623312, 0.1975661673303847, 3.0232372925820608, -2.8002570058887573, -4.636220039226025, -0.9780878565421627, 1.3422445256913582, -2.252614401937231, 0.24911583612363083, -0.09534923905520855, -0.09235115201337224, 0.3291167300672257, -3.0620641503748707, -0.9646915343666721, 2.8210813251331035, -0.1573516720496786, 1.8443233361003006, 1.1238347973495961, -0.569491292246541, -1.3263449435791195, 2.8882194161013315, 1.3501449380116972, 1.3272717089851926, 2.1947711359564437, 1.5173056264313258, -3.626419584646508, -1.5576031704051474, -0.3698176986745872, -2.569050354084834, 0.1999001022362445, 2.568468653404198, -1.0161608656090797, -0.4720459741582684, 1.349989286799486, -3.5297336650739375, 3.782347192686119, 0.35590181081470845, 2.811061806773209, -3.0245961235687924, 1.3456927120523798, -1.8763597546814628, 2.408107565862542, -3.880449312465704, -1.7247411829576, -0.9305606818443103, -0.6078880849815232, 1.5936658756319608, -0.79787853528824, -3.2309842339251316, 5.12335792742525, -0.9727433350797908, 0.7362038954775583, 0.8346529797485271, -0.6305624360891633, 7.207244332546233, 0.932816330242269, -1.109047100170095, -1.5338067927571581, 2.8410876867696286, 0.35753615711807857, 0.044256921098564654, 4.56139827822939, -1.1939301355532888, -0.6700739417584072, -2.6484757911394188, -0.6812080651949102, 1.5957695680940518, -1.4203897960669938, 3.511559673935439, 6.6400492575732715, 2.025421604589477, -2.8980870472418867, 4.424125355360419, 2.9647542992540963, 0.48887727564759775, -5.676502389709809, 0.604195354318521, 0.032068358466343844, -2.686331773002023, -7.498218569456032, 0.8317279924588997, -0.9013663905607382, 2.4952878645538967, 2.920696247080394, -5.0205828375171135, -0.6394550727708805, -2.826081513221227, -2.0738451294222364, -5.154059511200492, -2.008964326953949, 0.5689882843260406, 1.1753151828069848, 3.5634017499495494, 1.4241570234580414, 0.3769747743076952, 4.010236962918837, -1.8608768694428544, 0.9167782580811525, 2.247623503617003, -1.6960033687583433, -0.7442938353287023, 0.6466108846098859, -7.385222425896282, 1.2734254525273363, -0.6766960614811699, 3.479340392539328, 1.31620644877], \"y\": [-0.898810792744466, 1.2762864931320124, -2.322535457468739, -1.5062762177942868, -1.2619040663753571, -1.2652773085557543, -0.7032904677008732, -0.6068654688212777, 3.0710715558547794, 5.072918670355356, -0.17432625808239072, -0.9130288828105368, -4.234671268414235, 2.29092591098424, 4.710764021807334, 0.410524484543609, 2.5247854081341705, -4.707570258932742, -2.161905364229063, 2.290256840842334, 1.9773537981923472, -0.8630082464278692, 0.5912949439203498, -2.57674830639529, 4.552333916078685, 2.848352311586737, 0.9937096309725079, 3.9110068673370857, 1.2943233474626232, -5.296240194422601, -1.6890399789997936, -1.5415174124793354, -0.49778100818583876, -0.531818090662765, 0.2976227716578888, -0.49319301360930295, -0.176028773467064, 3.011330508919815, -1.1008705955089162, 1.2456000475697144, 1.212238517944301, -2.5592756353934787, 0.4626364091857242, -1.3001566358250063, -1.9175151911676835, 0.8422796619810239, -0.5704665316693606, 0.9448246826386244, 3.524096836195227, 2.1375064230904868, 0.9013790038665933, -4.606081408981738, 2.258579266071765, -3.608445050222631, 0.5454670121858687, -1.0540973957143396, 1.7861297941001915, -5.790469850862425, -1.1075286019581747, -0.35782406964769226, -2.2021226725912144, 4.702581911484514, 6.020191624493722, 1.6945111535633814, -9.243198957353934, -0.7488162723795863, -1.2228451183986058, -3.3303971775311383, 2.646535348869938, -0.014853669539687534, 3.0549283369347204, -1.3077973600501338, -0.20386547892682166, -1.1634467969205649, 0.5282806275919958, 5.479921834193163, 0.26486371898639643, -0.224974727483771, 5.06108189150352, 0.42539296754390554, 1.8159953624520482, -0.594796994020123, 0.695005166918233, 0.6600998872224451, -3.65356511223506, -0.7933239721415102, 2.140377316120979, -2.2639836646398015, -2.4300775752600425, -0.5475483475122089, 1.4485749648376058, -0.5581139946744438, 0.8393768179123301, -1.2018599233302527, 0.36587614903770455, -4.780450655287952, 1.9240984649666588, -3.630576744228018, 1.0920371938362408, 1.544895430348307, -4.98699792736343, 6.278292615904283, -2.060005123835624, -1.523782968370786, -0.9419324715771198, 2.961260172671753, 0.04560621564347955, 1.785764261445709, -0.40308313228445714, -2.304906123921448, 2.073334614980458, -2.8882870541542394, 0.9962807059739316, -1.3317540636823524, 2.104524071585561, 0.5690141982467574, -2.8435005882991944, -1.5435809501526832, 1.918584898541924, 2.96592904076415, -1.5417755701725178, 1.7999673505889129, 0.5634883314536894, 1.9647208996634256, -1.793072903746578, -5.75508785987836, -0.5063720864825623, 1.0056757218575714, -4.025205792980498, 4.72575672468107, 2.177305012435753, -0.38959198180992205, 0.3126760688561933, -2.636684725996798, -0.46591605808160597, 1.6127165727508437, 9.209580432474604, -2.9768255929766836, -3.6410010353259645, 1.9012410994415085, 3.536135362304361, 3.3017674668076036, 3.670043227920733, -1.8012377746634156, -4.7852408344825434, -1.5419008293583123, 3.756743810518027, -1.4974660692396633, -1.8414018761193127, 0.11646546782525, 2.5946465627166666, -0.6313921351513816, -1.1258437386761486, -2.72339902789935, -1.9431289155573483, -1.7519080244428622, 1.7593299171882164, 0.10423699373526724, 3.710401424978449, 0.001081459044769535, -2.1029625434557353, -2.7802451895631526, -2.514949219213659, 0.9686336025551232, -1.0043660603136737, -6.49301765447154, 1.3824566862799021, 2.6422921013820972, -1.3214405350781169, -0.9557714028164466, -2.311277516179413, -3.735347095835845, -3.9494812331743736, 1.7798127098695675, -0.006350035537301844, 0.635498432478856, -0.6175427831190581, -2.6752225426596987, 1.9998821772709443, -7.925935346941062, 7.19026216815298, 2.579217878295525, -1.1257281275553013, 1.6695382040014433, 0.3682096920122255, -2.2238132954270364, 1.8804784215373445, -0.6207190037509017, -0.33191314720052384, -1.9171674192077923, 1.2985029845983316, 1.6968245065739072, 1.330026438406508, 0.05008313161019574, -0.032185351109779, -2.9187230904766412, 6.907992595631045, 1.4575817345209923, -4.881231826986937, -0.3775396602681442, -2.0381576313577967, 2.0503178842929084, -0.18325642820523905, -4.1236376403667565, 5.267193402078254, 2.1843180954130745, -5.305244261670404, -1.372077018454142, 1.3510077888588679, 1.6558737929641463, -0.5818298205814103, -2.150511639790167, -0.13894563269246873, -2.156960537218298, -2.7171330580190256, 1.7900714462101543, 2.2050763158418745, 1.4024326982115518, 4.089091945187876, -0.2619230377348572, 4.100868117708014, 4.917182966824774, 2.5788201032882534, 2.2287050301106164, -2.464706054512275, 6.483955339401619, -0.6961538147927758, 0.3882357467656167, 3.0018841923124833, -3.1768403973708987, -3.603468246355238, 3.2506254372481163, 0.12484707400840625, 1.8442775439905708, 1.656399877710025, -1.6407980928399413, 2.1898081574888266, -0.4437366641362134, -2.7454406707849452, -0.15883895805142312, -4.649293710986616, 1.4436891809090382, -0.2881112949239038, -0.7984573894179384, 5.188947193895977, -3.5451147772034806, -2.018319270675676, 1.664866728879273, -5.303331120050221, 1.925258002021285, 7.246975378072513, -0.9792857175294876, 2.2496825220691457, 9.335318150715402, 2.7280594338112203, -3.295043979437341, -1.8980173036356731, 3.596805938579382, -1.0782263780993049, -6.993440955501305, 2.861466348346224, 0.06086670766593635, 2.154604717935856, -1.63892471317419, -3.1313108735202086, 1.6450414275757868, 3.6937713568803896, -0.21433790886531, -1.5587060546872797, 0.8605345096342726, -5.887253433739436, 4.625423618750247, 2.1995767313254877, 2.3145907153969687, -2.864861745612818, -0.2389592507714903, -2.8284462338317384, 4.9258970594427725, 2.1163315490045704, -5.315748083362814, -2.254158280494974, 0.6425352823944589, -1.0557445069851619, 0.8480575936263176, 6.687589415589986, -1.9773359386752576, -3.1065849191108406, -0.87076808331685, -0.48068184947798354, -0.5273308497423939, 1.8881735441437848, -3.0165119156365012, -3.620752856055545, -2.8800340318358173, -3.9013820230044485, 2.7356675681365594, 2.566559642260394, -1.3774602713196793, -0.7990702563735143, -0.6088795624117429, 3.0582134526745586, 0.2627938381280045, 2.6868666342031426, 0.5405503618755801, -0.1668914878373604, -0.17465918989321, 2.399802001937538, 3.887154259624725, 1.6402416179757813, -0.3448219130256598, 2.207121303212212, 3.075419036190857, -0.8221069716828728, 0.9774714460203623, 5.594717130811482, 2.2480674769340214, 6.770605762088903, 2.440837573707358, -0.7711271666179066, -1.1479217773905783, 4.395232450374532, -0.628080213692086, -2.6885045722841507, 1.6699544376148139, 2.9834818482651877, -3.899954030530757, 1.4014615135081963, 0.3405740883372682, -1.674628415564577, -0.09189862273400855, 2.5596988922902857, 0.5262049915482132, 0.8648627049600156], \"z\": [-8.021049450989889, 3.7198250636894885, 0.501151059987256, 2.663229509578842, 0.49132415250807765, -1.9158219933579845, 0.5153441303438744, 2.4794102783570273, -5.382177888023892, -0.20247255001599765, 3.606408105333048, -0.23210911792406871, 3.364733285953794, -3.884086907224389, -0.30513666955803925, -5.0694482195199875, -0.17696014788718975, 2.264325882866298, 0.19712298842797116, -0.17761419924585933, -6.62980101580449, -4.579858819130441, 3.385456188723699, -6.770504852889069, -3.603986976468273, 0.6589937224259204, 0.8961100222709504, -2.870253862994527, 0.8794948418103733, 1.6611661943227738, 7.708723794840796, 2.549966485810586, -9.218353719322348, 0.6231757546286444, 2.2014257216201734, -0.35999784877115065, 2.5353082520471095, -0.44283475333066763, 6.241361772863269, -1.786571409581953, -7.309078672985981, 2.7638288218608325, -0.6218985114424295, 0.7517144592054547, 0.4602995183480779, -3.649763430797737, 3.372951877038537, -0.6800829271733648, 0.6378314507890588, 1.0532861503395468, 1.3685665541653642, 7.260981787729986, -0.48751327090097374, 0.9710129373167107, 1.690770507744648, -0.9544030508828112, 0.9940138995218526, -0.6746304734943361, -1.0454233659333056, 0.7897254150002386, -2.5903812324294666, -0.5692066707085175, -4.5512687818287105, -1.1928107201423432, -1.3334968146733621, 0.9240268985107041, -0.042610852942250865, 2.1163161234494416, 1.0970024925375834, -3.4282019945658675, -2.3200086678049625, -2.072025234717277, -2.6790823703090125, -3.8972813985363053, 2.2053320970784624, 1.6374525698238809, 0.3782019018161821, 0.6574105128799911, -5.711231375202069, 2.864165394887752, -0.413090435019791, 0.1445323210235873, -0.8994458353059319, -4.7367425794060605, -4.944426507831993, 0.11262603784315746, 1.4286467233835156, -2.1275740547085307, -3.3188150168004342, 0.365397175517922, 3.070860175658421, 3.05935908355892, 0.011720340124285319, 2.7871909157862818, -0.08396693995362929, 1.093600448773735, 1.0605188618650396, 2.6586464816718705, -1.0866110131644835, -3.1140054678935085, -3.774521692463466, 5.131446482531424, -1.1505226115189735, 0.9501562289310811, 2.7990900327751174, 1.1530720345748193, 0.7189782258038196, -2.1734083608472723, 2.87589357023684, -1.5905576142359945, -1.3071603830846474, -2.1384759792672234, 1.8960547578185125, 1.7286578499171545, 2.3972091247657574, -1.0432913493237574, 0.6621059095988595, 0.42310601655782487, 2.5203640873990616, 0.03413844488003039, 0.4694003804951154, -1.6787209056882095, 1.286440786651181, -1.5265162033664064, 0.7388428368807959, 5.48799831769695, -0.12949249518743408, -3.814262698148756, 0.9632373340570434, -1.4639906470658441, -0.3986802874288706, -3.0031531911540825, -5.761851043884106, -0.7658563707743689, 0.4238911984489739, 0.39462666396689305, 3.9379320648688507, 0.7768875779088638, -2.53973539255759, -6.407454858183259, 1.9194339582815572, -0.4919659339851279, 1.5966801427264172, 3.7917669522595956, -0.3179228389042961, -1.5821237085901534, 2.8199783118333257, -1.3516146210110473, 1.255497969079245, 0.14156902041136282, 0.009746889609180256, 1.4545998673920384, 1.3905386941713214, -2.653893620688293, 4.6828468152317, 1.225089374129467, -0.413751269301957, -6.25383511605915, 4.172019527349153, -0.3876716081102626, 0.39480950465353093, -1.521186945290399, -3.07078876520425, 0.5033369879654604, 1.2547458851420497, -1.0227746958817607, 0.06676139867534264, -3.275081200299699, 1.4782124901060576, 0.838584422082508, -1.5585130880023943, 0.6864879837331218, 0.7591788317293112, 3.4012088715293833, -1.7797781440524427, -1.881078735602243, 1.6874578606168384, 3.067727880615327, 0.03157587581313659, -3.914962515224877, -0.31678750287318386, -7.083594410011868, -1.19633328392537, -0.5485504650571167, -0.9555019846974742, 0.8418099369373836, 0.28923902944447233, -1.5261235463892848, 3.4371466355918776, 2.5917835113850645, 0.1968958320928672, 0.31587109888214626, -1.296895044094302, 2.5001494779575117, 1.467532808339572, 0.2905301717551986, 2.4346851767638844, 6.740080703649695, 0.646391439284821, -1.8392750224841212, -0.8645861483777553, 0.20846976374359508, 1.538398798092002, 1.6469244089001, -0.8712602031937067, 0.3564269795271206, 2.822093887230558, -0.28139980478898186, -2.4428014302969316, -2.8023750331664092, -0.17981753363143527, 0.6652610574231079, 1.5634761442251301, -1.0662432946111304, -0.37921892198999496, -2.931948265267289, 1.2447320119235286, -2.7237110979905323, -4.359769434494265, -1.4781635112332407, 0.19590100221185675, 0.8440834615863458, -1.4655643510826588, -0.7726944851720782, -1.4595905558868747, -0.05693523925193371, -3.5831309533940514, -0.4229209717894108, 3.454201765420273, 0.1905956885406344, 0.8798813532319308, -0.13792976486577477, -5.077190219870265, -1.7105463588324628, 0.8984530418786728, -0.6590180921679532, -2.219742256892545, 0.15933208331479443, -3.354380424150304, -0.6148417840409011, -6.273507825969974, 3.1391448856904174, -2.409598234397803, -2.4001345234017886, 2.6760411977619256, 1.2265685989150654, -0.21528617142060616, 0.6310191705013989, 0.2913508615943588, 1.1094759815844586, -4.009772880397135, 1.1784190832670578, -0.6663119929172638, -1.6693385985136677, -0.991820500545652, 1.5813235642993142, -4.389532727807522, -1.4659671434316672, -3.653332143657016, 3.97526688636945, 6.3878325950024335, 3.666487162459623, 3.268325525600367, -1.5698981867895905, 1.91129297033905, 2.830641392631943, 2.2614745939124936, 3.3767824422844095, -0.19900857903859345, -0.10204461902999919, 1.8329095526656662, 4.865238179562599, -5.972804829628532, -2.426627529902805, -1.0792837361146452, 1.1880510605702144, -0.3317320789509116, -3.872606543620533, 2.345593713697157, 1.015117410840814, -3.683111449408763, -0.8530703915558947, -1.2341055283468494, 5.977216260432266, -7.283523325869098, -2.107172973846164, 2.1776201173148233, 0.7581484422660117, 0.9465257544665648, 3.321381961770768, 1.7901934139090983, -1.8399872035119993, -1.8987054703517203, 4.379229892321126, 5.477718346571419, -7.531190957859257, -2.2149740218151486, 1.723308186229406, -5.897045574505297, 1.081480963707406, -4.45768730285796, 2.0591793849990974, -4.069999262124721, -3.675262515298213, 2.842737278316054, -4.404196455264229, -2.0147645478787375, 1.1715007377974642, -0.43488816813137293, -4.925264273794069, -2.7395637597042044, -0.7846647740993332, 2.157228531334993, 1.1288658078643725, 7.080298018854347, 1.5421235143810588, -0.7334491745946383, 3.195316007303791, -3.032164974559711, 0.09292617810319757, 0.10452342762800323, -0.6222043953100093, 0.8956045850391703, 6.05583835865991, -0.00841669711955247, 0.045321507556744904, 1.083232753262188, 2.1733388224767936, -3.8904201131271416, -1.6558399204974623, 2.1351863165774945, -3.1235866234194467, -1.4556730263829725]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 1\", \"marker\": {\"color\": \"rgb(255, 127, 14)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 1\", \"scene\": \"scene4\", \"showlegend\": false, \"text\": [\"Complementary_85_1\", \"Complementary_1_1\", \"redundancy_42_1\", \"example_12\", \"example_15\", \"Complementary_25_1\", \"Complementary_27_1\", \"redundancy_11_1\", \"example_19\", \"Complementary_48_1\", \"mutual_error_32_1\", \"redundancy_50_1\", \"example_28\", \"mutual_error_23_1\", \"Complementary_49_1\", \"example_41\", \"Complementary_65_1\", \"Complementary_56_1\", \"Complementary_63_1\", \"Complementary_76_1\", \"redundancy_62_1\", \"Complementary_71_1\", \"example_51\", \"Complementary_37_1\", \"Complementary_62_1\", \"Complementary_88_1\", \"example_68\", \"example_69\", \"example_73\", \"example_74\", \"Complementary_12_1\", \"example_83\", \"example_89\", \"mutual_error_18_1\", \"Complementary_36_1\", \"redundancy_10_1\", \"example_94\", \"redundancy_19_1\", \"mutual_error_12_1\", \"Complementary_95_1\", \"example_111\", \"redundancy_64_1\", \"example_114\", \"Complementary_82_1\", \"Complementary_72_1\", \"example_117\", \"mutual_error_29_1\", \"redundancy_13_1\", \"redundancy_22_1\", \"Complementary_5_1\", \"example_131\", \"example_132\", \"Complementary_14_1\", \"redundancy_46_1\", \"redundancy_36_1\", \"mutual_error_22_1\", \"redundancy_29_1\", \"Complementary_31_1\", \"example_152\", \"example_153\", \"mutual_error_5_1\", \"Complementary_15_1\", \"example_162\", \"Complementary_50_1\", \"example_164\", \"example_167\", \"Complementary_24_1\", \"example_171\", \"example_172\", \"Complementary_61_1\", \"example_175\", \"example_176\", \"example_177\", \"Complementary_4_1\", \"redundancy_23_1\", \"Complementary_83_1\", \"example_181\", \"example_182\", \"example_185\", \"example_188\", \"mutual_error_19_1\", \"example_193\", \"example_194\", \"Complementary_30_1\", \"mutual_error_3_1\", \"example_220\", \"example_222\", \"redundancy_65_1\", \"redundancy_51_1\", \"redundancy_31_1\", \"Complementary_64_1\", \"example_234\", \"example_236\", \"example_238\", \"example_245\", \"example_248\", \"example_255\", \"example_257\", \"redundancy_4_1\", \"Complementary_77_1\", \"example_268\", \"Complementary_8_1\", \"redundancy_34_1\", \"Complementary_92_1\", \"Complementary_69_1\", \"redundancy_39_1\", \"redundancy_48_1\", \"Complementary_0_1\", \"Complementary_58_1\", \"Complementary_6_1\", \"Complementary_26_1\", \"Complementary_2_1\", \"example_304\", \"mutual_error_16_1\", \"example_320\", \"example_322\", \"example_324\", \"Complementary_35_1\", \"example_329\", \"example_335\", \"example_336\", \"example_338\", \"mutual_error_8_1\", \"example_341\", \"redundancy_14_1\", \"example_349\", \"Complementary_51_1\", \"example_354\", \"mutual_error_30_1\", \"redundancy_7_1\", \"example_364\", \"mutual_error_15_1\", \"Complementary_89_1\", \"Complementary_87_1\", \"mutual_error_6_1\", \"mutual_error_7_1\", \"Complementary_40_1\", \"redundancy_32_1\", \"redundancy_33_1\", \"redundancy_17_1\", \"example_395\", \"Complementary_17_1\", \"example_399\", \"example_405\", \"Complementary_97_1\", \"Complementary_81_1\", \"redundancy_26_1\", \"example_412\", \"example_416\", \"redundancy_61_1\", \"redundancy_49_1\", \"example_426\", \"example_431\", \"Complementary_74_1\", \"example_437\", \"example_440\", \"example_443\", \"Complementary_42_1\", \"example_445\", \"Complementary_75_1\", \"example_457\", \"Complementary_44_1\", \"Complementary_67_1\", \"Complementary_55_1\", \"redundancy_52_1\", \"Complementary_46_1\", \"Complementary_18_1\", \"example_486\", \"redundancy_55_1\", \"redundancy_57_1\", \"Complementary_22_1\", \"example_495\", \"Complementary_32_1\", \"example_501\", \"Complementary_52_1\", \"example_506\", \"redundancy_37_1\", \"Complementary_3_1\", \"example_515\", \"example_517\", \"example_519\", \"mutual_error_28_1\", \"redundancy_41_1\", \"example_531\", \"example_532\", \"example_536\", \"Complementary_43_1\", \"Complementary_54_1\", \"redundancy_43_1\", \"mutual_error_4_1\", \"example_557\", \"example_559\", \"example_567\", \"example_568\", \"mutual_error_26_1\", \"example_579\", \"redundancy_56_1\", \"example_582\", \"example_583\", \"example_584\", \"Complementary_70_1\", \"mutual_error_27_1\", \"Complementary_21_1\", \"redundancy_28_1\", \"example_601\", \"example_604\", \"example_606\", \"mutual_error_11_1\", \"mutual_error_9_1\", \"Complementary_80_1\", \"example_616\", \"example_617\", \"Complementary_90_1\", \"redundancy_35_1\", \"example_628\", \"example_629\", \"Complementary_11_1\", \"example_633\", \"example_636\", \"example_638\", \"example_653\", \"example_655\", \"example_656\", \"example_657\", \"redundancy_40_1\", \"Complementary_20_1\", \"example_665\", \"example_666\", \"example_667\", \"redundancy_15_1\", \"Complementary_10_1\", \"mutual_error_13_1\", \"example_673\", \"example_675\", \"redundancy_63_1\", \"Complementary_53_1\", \"redundancy_38_1\", \"example_685\", \"example_687\", \"example_692\", \"example_693\", \"example_695\", \"example_703\", \"example_705\", \"example_711\", \"mutual_error_1_1\", \"example_717\", \"Complementary_29_1\", \"example_722\", \"example_730\", \"example_731\", \"example_732\", \"example_734\", \"mutual_error_20_1\", \"redundancy_8_1\", \"example_752\", \"mutual_error_25_1\", \"redundancy_45_1\", \"example_755\", \"example_756\", \"Complementary_33_1\", \"example_758\", \"redundancy_47_1\", \"example_770\", \"mutual_error_24_1\", \"example_785\", \"example_789\", \"Complementary_47_1\", \"Complementary_91_1\", \"example_803\", \"Complementary_16_1\", \"Complementary_59_1\", \"example_816\", \"example_817\", \"example_820\", \"example_822\", \"example_827\", \"redundancy_44_1\", \"redundancy_12_1\", \"Complementary_68_1\", \"example_833\", \"Complementary_84_1\", \"Complementary_66_1\", \"example_853\", \"redundancy_27_1\", \"Complementary_7_1\", \"example_861\", \"example_863\", \"Complementary_23_1\", \"example_865\", \"Complementary_38_1\", \"Complementary_79_1\", \"example_884\", \"Complementary_98_1\", \"redundancy_58_1\", \"Complementary_60_1\", \"Complementary_93_1\", \"mutual_error_17_1\", \"example_902\", \"Complementary_41_1\", \"Complementary_45_1\", \"mutual_error_14_1\", \"Complementary_96_1\", \"example_919\", \"mutual_error_21_1\", \"mutual_error_0_1\", \"Complementary_78_1\", \"Complementary_13_1\", \"mutual_error_31_1\", \"redundancy_24_1\", \"example_941\", \"example_949\", \"Complementary_9_1\", \"Complementary_39_1\", \"redundancy_59_1\", \"Complementary_34_1\", \"Complementary_28_1\", \"example_964\", \"Complementary_86_1\", \"example_966\", \"redundancy_60_1\", \"example_968\", \"example_969\", \"redundancy_18_1\", \"Complementary_19_1\", \"example_983\", \"redundancy_53_1\", \"example_989\", \"Complementary_73_1\", \"Complementary_94_1\", \"Complementary_57_1\", \"mutual_error_10_1\", \"redundancy_21_1\"], \"type\": \"scatter3d\", \"x\": [-4.262739460086965, 2.763997674718625, -2.119829501624006, -0.1799842881420453, -1.4458557008745154, -0.7323630640069143, -0.3199121587299715, -3.2963577741372805, -8.09580422641319, -3.4339413393825042, -3.40861838475784, 3.3585349923649286, -5.01643017754291, -1.8288815147606567, 2.40346797140877, 4.483074773043113, 0.2510514133239245, -3.1661124285612137, -3.6207556316276124, -2.872024539229596, -2.4865922473761035, 0.8061779292028813, 4.218770837567477, -1.5873599676519043, -1.7802877591255046, 5.101118134723537, 0.2578675378250466, -4.421010204039318, 0.6134113034284051, 1.215180983889418, 2.1529060048498394, 4.892841606192266, -5.986229188751611, 2.0656314442973254, 1.9667314895607735, 3.969106427390649, -4.5269520388926585, -2.0175089040708123, 1.4061819038594807, 2.8210337088794546, 4.22351745330634, 2.2997936241672474, 1.2378616884434714, -5.53066406980409, 0.7451549375209178, 0.6310860604817433, 1.4863455811012731, 1.3325224115280974, -2.4557826886842693, -0.7851654161462992, -3.6209886814653918, -2.6144984192239704, -1.4191076968285636, -3.055819768076246, -0.0761480803898332, 1.5371551538610997, -2.4450466894243985, 0.8772129238168268, -0.9608327267966487, 6.163764588038454, -0.45882920490359047, 2.024828648418424, 7.234717437591539, -5.190371562703236, -5.113596361101259, 0.3927568451692386, 0.6093041252322116, -2.1752655393909914, 6.505414222451135, -0.6132644646584858, -2.921727807238481, -1.104729381332122, 1.1534683783320825, -0.3975673019201264, 5.092031331795394, -4.2288672231008375, 0.11683055064119517, -2.4909628568294537, -2.5378016144429347, -6.710784395120792, 2.862059386255591, -3.578334621422695, 0.26650243871750845, 2.3868200177005625, -2.9876601679090657, -0.8350708102203831, 4.160071726417152, 2.1800741809316952, 3.5660094140112397, 1.8803605604686244, -2.0487885209730368, 2.4932319184253724, 4.987528951143428, 1.0632360563107284, 3.651752231993886, -2.7156604638619193, -1.3758275598855145, 3.745734912682906, 2.1823635014713143, -2.3104212949106024, -7.342015855422084, -0.6263427652452136, -2.8123299463442444, 1.5621938365355275, -2.9190801967808646, 2.7355774501027166, -4.89632002981649, -0.04338826662437207, -1.319292391774587, -4.140986435597674, 3.2871362412603795, 0.44157499984133536, 2.4725580660103925, 0.5053535478458405, 3.786242116560854, 1.607687057830593, 3.86885917030508, -1.7768359325469203, 3.5388697421860287, 4.990112582761184, -0.9784766467509762, 1.8368583421240368, 2.9875012577840923, 0.7503383254152016, 3.3577877374896663, -4.025848227117994, 3.229482668046584, -6.767409328260291, -0.9960079483152093, 4.1021495984269585, 1.6765360612366096, 0.8001842889839914, -5.932816351276646, 1.8463560278443092, 1.7765528920771991, -1.4401827417214574, 1.3152660439591564, 1.8253366973445735, -2.859696789113898, -0.7875227908355867, 0.9100828740741445, -2.1572959825377933, 0.36350738724058085, -3.7292766087171154, -2.183142886592165, -0.554761703626806, 3.2359577599746507, 4.077859400177189, 4.32209517046506, 4.708524770063307, 3.099088374449208, 0.9558351889747096, 0.6724766593777788, -1.9796916990319633, -1.9115875447526813, 4.604704102661435, -3.756151786720566, 0.1264988491613333, -2.871267787924466, 3.8527398288416936, -0.026670578667843045, -0.4406947605218737, 4.310099493472581, -0.3790590287724325, -1.2914098027605396, -1.213479619780915, 0.9166720271781077, 2.305741069077047, 2.0696168491941775, 3.3220247086167145, 0.10604217107301309, -0.14583667438830689, -1.104518173414075, 3.1279397509551066, 0.5266203554824382, 3.4797078144828513, 1.4093895631790563, 1.6993980287614547, -3.6792680723886404, -4.9126997742385585, -5.75085820368147, -2.203374920178495, -4.260704710515839, -0.16367449046226687, -0.34295769829924233, -1.5274448064234838, 3.402267181003611, 2.974998749067654, 3.7969179653841527, -0.5325898384439085, 2.961530421974914, 6.60491575367549, -0.08494658808055675, -0.00010628104454955066, 1.615867056996652, 0.1427692977729755, -2.5063733297843562, -4.582220588675825, 2.5215626983563246, -0.2633272590754743, -3.2799098136644216, 1.2899091531595814, 0.7745740506680591, -4.547963121258711, 0.4794044885397189, 0.8353359833651463, -5.431799643429927, -1.9387121800723457, 0.9716631399310273, 0.6780111226526188, 0.18266133377309068, -1.5210681452528756, 4.163992403417596, -4.0748708647345, -4.983007107804598, -0.7040287847878676, 2.6921664325472, 3.2944534057846604, -1.8582388881983265, -4.635626914317577, -3.0186731847918162, -1.3483853697682069, 8.222510074269517, 3.379896940101046, -4.221548484305228, 0.2705172318631871, -4.076817434382509, 1.5065291714903097, 2.9269964376705198, -1.5420010145159566, -1.5064815497047033, -2.0142586475821895, -6.447961484348664, 1.6520242138057157, 4.229326263260961, -2.674075932082457, -1.9464324846794092, 2.75086731741367, 1.9207317843308322, -2.9160398885647276, -3.3016937301117015, 3.1814697129561607, 2.944413875360421, 0.7071713446845519, 6.424034322961511, 3.1700988786848203, -4.9975864876764025, 2.611814744352864, 5.355332482941719, -3.9002571231492844, -1.6599273889660224, 1.4096266572828544, -0.8022572929204406, 3.2374848269928607, 1.0474890541872792, -0.5973112288589678, -2.6842753528053493, 1.5607269196627753, 6.6663562081151415, -0.20502443656747976, 0.5136315403099462, 1.7292203524511494, 2.7800895042524063, -1.6649899922703109, 1.595929943272903, 3.0678582861152845, -1.1102501297681708, -0.5725383621853147, -0.6892578941086872, -4.559942693105841, -1.6827534642224713, -0.397596116727708, 2.600565377378117, -2.709575601532963, -2.037697088486597, 5.421753371882808, -3.248851036172969, 3.123353599176048, 0.6992642211417872, -4.816004902682377, -2.9622435584282303, 4.12080812911028, -1.0524530782465855, -3.664975472073214, -3.694355626807281, 3.0203985094622303, -3.1611506157900053, 4.305840580899111, -2.883673820816856, -1.8625398212832596, 4.913784992011372, 2.4858279560732757, -4.422224418929558, -5.666866356288963, -3.653084999907253, 3.7160179189502647, 3.280152679268475, 1.4388445076810539, 2.932038420470701, 3.0695797785781522, -0.3904764664065094, -2.297874987807091, 5.125471200282238, -1.682094278927788, -0.7426205373273865, 1.88911709930685, -1.2673319576446844, -1.2565332619061855, -2.547350827867828, -2.87647129489581, 2.7380777135074794, -4.732452179988914, 1.4267250540944145, -2.3670966084677563, -2.0661528916197165, -1.1606697226846885, 2.408519923062637, -3.9089405046287373, 3.9673032096972882, 3.048828520383992, 5.010404186180072, 3.8785101361461374, 1.3893176858374316, -1.4400767281112108, 1.500876339162363, -1.8477051880758455, -0.17899279158732642, -0.9909563796452937, -1.79022269718252, -1.1945347394299537, 2.814755259634966, -1.2883230852312098, -2.0478673308105995], \"y\": [-4.4207226308332475, -0.5970456709356636, 1.7833613271725897, 3.458949096509666, 4.547298250543756, -3.565073081626068, 1.348052976575473, 3.4394049060155982, 0.012981087551303061, -1.3570005492001005, -1.6360557058752272, 2.178188883446625, -4.421664618094851, -0.030327752965006147, -0.3784011525653611, 3.060929464795412, -4.566100423656219, 0.33144189010008585, -1.058780179593787, -3.2559803632840643, 1.5030932603730365, -2.781204962547166, 1.237921340256452, -3.6805342457973524, 2.7357494404908564, 3.1593887600685835, 4.0476601035465, 0.11419217356390453, 4.261960126910073, -3.150256837027385, 1.3945087183930847, 3.8013620846074905, -0.8140724371773221, 1.2195310587359725, -0.7972386133539962, 0.519981637448978, 0.39631433648542014, -2.49087626076677, -0.9086918287831582, -1.384199389166984, 3.64720826384756, 4.656353215104757, -5.531073726376749, -2.0766569498453213, -0.7836071775405685, 5.818417336202036, 0.043131914182594135, -1.6205805851750616, -3.9589132917045906, -0.09693172437585434, -2.454529913783691, 4.997730125961464, -0.385457537060201, 2.9062740193297287, -1.3208012605721176, 1.7170965563470857, 0.7329655942703978, -0.9347395218246626, 1.1107361850560176, -2.95380594610815, 1.439369412789531, 2.654538890084845, 0.7702230885798766, 0.3003094605340293, 1.478073529411894, 1.727482019100937, -2.8820621669040696, -4.541794406864073, 0.26315412984626746, 4.316811213474322, -0.7127494018871704, 6.493169902394864, -0.5299594377675443, -0.8209328393059794, -0.16716436879592597, 0.5514111085654648, -1.7195721597555904, 6.373531144010188, -2.870781304881444, -1.3565257932664665, 2.640286165452921, -1.6532976183402026, 0.8254298678775098, -0.444698360432648, -1.2096913966014218, 2.293197704599283, 2.355617208114705, 3.073115023875015, 1.3499153622044093, 4.524954092265783, -0.2272482385746576, -3.813116059160665, 0.18188047817477793, -2.9594839726301734, -0.7758105122848086, 3.4621383628571896, -6.015833839663482, 3.535081826778631, 5.249517917498048, -4.237087213719355, -2.782055406715205, 0.20084117611669386, 3.9972638165457814, 0.1987560224428354, 1.391681340547064, -2.770137941098806, -1.8418162659355612, 1.185012444820505, -0.1122234088762135, -0.18519182972090542, 2.087027708146718, -2.5276836129735036, -1.8036715581184828, 0.938178121810426, -3.7489562295889125, 5.172136146351736, -3.7477013434493553, -3.096407898370987, 0.1142798978888454, -1.3663732750230806, -4.378434512830331, 5.269759878238109, -0.3523502668285663, 2.0470953995322607, 2.543119628559344, 2.703060870107827, 3.09674512682447, 0.6650663224233528, -0.221982617890834, -1.562730681240834, 4.285802574185879, -0.09110213114072746, 3.6781837059450146, 0.8160639338919041, 0.6436198319558142, -0.471357566127261, -2.6164892780033218, 4.911628583049703, 1.2703187485873524, 4.645403787325158, -5.000249469306578, 0.8792632449691742, -2.4087492966141206, -3.997173608595231, -5.1623542272401, -0.9021923324585652, -1.0073084212313024, -2.576905716855869, 4.178817175541553, 2.4145413011151184, 3.1101216843617183, 1.1728451493381524, 1.124063923532563, -2.881005600371106, -0.2715835654110122, -4.872815318931814, -1.9582483000899082, -3.5553233994498608, 1.1389931452716058, 1.6870642948285524, -4.655658319142699, 0.6059744273410478, 2.0778148322130594, -2.7752765048420427, -1.3954547298266526, -3.5991047776245235, -1.2760964356855589, -3.7766141421495005, 1.030286440902986, 1.803787921473084, 0.8889392530384493, -2.906875911161463, -2.11494208339229, 3.9238325823469644, 3.4572791954044213, -4.35313434752321, -3.2717548069157187, -0.3486534907995244, -4.211226932513475, 0.33844809925005087, 4.050174734846795, 0.808676589976462, -0.9769800609611382, 3.540244434353525, 2.8963386563289997, 1.958557287530298, -1.49211193241169, 1.6930799452121157, 1.374617636127297, -0.3199055240869066, 3.753268799977535, -0.12695083064134152, 7.553243688564171, -4.974205959368, 0.9569277931847591, 4.049918075101424, -1.91575530972423, -1.545737808768671, -3.237998835606225, -4.697852841701332, 0.324062241057321, -0.1890006510162813, -0.5065327923816499, -2.2879619917617653, -6.904032382986957, 3.8226907731587336, -2.637365728137093, 0.59288096394874, -0.03087077843025122, 1.1562501253162645, -0.7034814930679784, 3.5882783954474213, 0.2920614307374438, 1.3113713100775959, 2.820339734954518, 3.910126576081577, -3.7856209179070883, 5.427236441351471, -1.9067517315476137, 5.014318113684673, -3.7040737261710976, 4.147663411790072, 0.8327208206994386, 1.4267884602113, -0.34945897780228524, 0.8279531572785839, -1.9925406516194395, 3.811936485337705, 4.936243616912753, 2.1156196970683983, 3.4146597208294263, 2.6894739662029017, 4.131983423214092, -3.685219142861247, -1.1716955747055304, 3.2066447814392625, 1.5095252677610624, -4.375241595467105, 2.8086741784250724, -5.967047795728202, -2.649564836620794, 0.15372344791075415, 3.879541984344496, -1.2735669839394834, 5.367467002699923, -0.3756339841994366, -1.0917825166007298, -1.8311821078182429, -0.6919465996994003, 0.8907464525496782, -0.6594894633349654, 2.0566980973444426, -6.134193548091553, -0.006430256340040579, 2.0035391811363596, -6.241958277271381, 0.04231153415970765, 4.623322014070634, -3.617697839519209, -2.1748061303315573, 4.943483757837983, 4.040496253870083, 3.263905265929293, 3.3682961342004, 1.0111323848600533, 3.036686444335012, 3.162882910960859, -1.7841996819641002, -4.396032070703704, 5.942399269495237, -1.1069215484174266, -5.743816814718483, 2.1364939296338057, 0.06057711210386397, 1.5950451686864209, -3.1462663864587666, 0.1525880483014779, 3.307508747014941, -4.613836672871528, -1.8960318797082722, -9.573169176781821, -0.5572688745514635, -2.18450247416937, -4.232200642921315, -1.2947521552196248, 0.6518791129922679, -2.394914531954128, 2.0679055196459695, 0.2479053873742244, -5.557384826496621, -0.028923518348458892, -3.7533095651323176, -3.000721702970001, 1.0529558862726978, -3.0063132539120416, -3.597967914770052, 4.985750027642397, -2.4739266367548924, -2.6931406741030846, -0.29371334555883294, -1.6755645011605709, 1.1316807313572732, 3.428852082206616, -3.0108285093655978, 2.1077353610279275, 2.216068940988134, 2.2158251527568353, -0.44945767445271384, -1.3651202891209793, -0.06681186559189896, 3.5996944383225205, 0.2527232329242618, -1.8371068582058911, -3.243894154830895, 4.626820945238411, 2.9285503889645743, 4.071041225782779, -4.679951476380977, 5.350275320548106, -2.650678711311384, -0.7267222525831423, 1.166930321641318, 1.5987765006119001, -2.6693780028000424, -1.80031595294306, 5.268636688427296, -5.809189785147951, -4.742244149696623, 2.4150613013695383, -4.020078677697106, 2.5935705430056877, -2.6024973712993895, 3.0765161825976928], \"z\": [-2.4347362800044015, 0.18313090693483677, -5.181903809285064, 2.274802239134218, 0.8417616749079653, -0.2323527994086349, 4.429658725849382, 1.9790695822804298, 0.4049661883273283, 1.3818811317523192, -1.1492341628039313, 3.6456412003948295, 3.0114389677334645, -0.42440616485199545, 3.3853557373608925, 0.8068349029821945, 0.2598475465011428, -4.6815414730530485, 3.9356036799689362, 2.4622263550098387, 5.053878163228038, -3.5575375823443256, 0.4244224402927802, -1.596689077735587, -3.363266077020781, 0.10264427158788995, -0.44140932732425936, -2.148495767382773, -0.07581995865758365, -6.334790100857005, 3.8845455279499546, 2.907197216575074, 2.0278930530007773, 0.23660167805291538, -2.226732664736304, -0.7846719328007574, -0.25212099073439326, 2.9367841164180644, 1.0600745619549252, 3.979516254519564, 2.298555231293722, -1.1510057526299533, -1.278899950642904, 4.9730534008148775, -0.06672430583077878, 0.9315657270750535, 1.2570506950513451, -3.6315937906676985, -0.07527540972933477, -0.5342914766238869, -4.46416428218323, -9.579919169851244, -5.584960128816421, 0.7403940230084105, 4.0417150156572434, -0.9395078987333897, 3.83084659471556, -0.5703241274011227, -4.0650640016517166, -2.4839795053659044, 1.1001068322573635, -4.462492476823413, 1.6906857025370108, 0.2684964774474853, 2.3450832707090123, 5.760026151896116, 0.3974728776735976, -1.7257702623924365, 3.1720921152382755, 2.337688105763087, 2.7701926880989296, -0.22552493456825423, -5.7010814725304595, -0.5904813212842162, 0.5288349234708787, 1.759147784430405, -5.423724805162229, -1.1003444574363086, -7.774732743383796, -1.9421303393601357, 0.8688434400692968, 4.318119462829965, -6.494050982726991, 0.2957682467272264, 1.0847927302963292, -4.841262663289496, 2.544338222635069, -2.670371386868126, -4.272871143459819, 2.13340005236065, 1.7215626000753903, -4.033634994472133, -0.7239085264132853, 2.904344363173738, 1.745428693586971, 2.2112029280193086, -2.5274266073799705, 1.6199605055663462, -0.5411256195706536, -0.37257307818675967, -1.794394106712875, -2.3462734393608384, 3.090771258910068, -4.453713867066808, 1.1452430539228888, 3.5150037668083796, -0.6654555194643862, 0.15841053999833266, -4.941597760781299, -1.5217172005344037, -1.925725516094954, 3.591730358656495, 5.707888649248504, -1.792370237893131, 0.4199419514540164, -0.9736590061693077, -4.174284683415724, -0.9381927604199775, -10.023747907990423, -0.31057597749799304, 2.1516737085069164, -0.8568558805653254, -1.6033771077957524, 4.524299968651802, 3.32851855202821, -0.857289921155922, -2.580483673045922, -4.844643691559915, 0.5074291255789017, -0.7504691011260166, -5.950133165411665, -1.556982028698728, -4.851081803342545, 3.5092840998683323, 0.9292329211032262, -2.6783178223828887, 1.1446463307558645, 1.3516953921204387, 3.1290951280415755, -2.9119123988276296, -1.180042045769018, 2.5336836237473883, -8.220367356926337, 1.6618345050394998, 0.7740917182874719, -0.9540863204183222, -3.4118546482393977, 2.4503623083791806, -6.03017159816937, 0.35429156607851553, 0.6899710497836506, 5.565978963699254, 4.4603066545883125, -2.3122141484023944, -4.1661047290567375, -1.94031566749722, 9.019031428849516, 0.6307836425393406, -3.9121725140806602, -2.6888123882363417, 1.879973279491027, 1.391295670737121, 3.286557314522358, 1.2830416080093314, 5.335981211156319, 3.8507324476212137, -0.033311743341632095, 3.800751424359587, 4.937241972412896, -1.319616732247671, -2.0736926801138478, 3.672944419091453, -0.7239018883967461, -1.0950753683204046, -1.341025171688895, -3.5057913621707133, 2.885792232084292, -0.9051284563033626, -3.8203538526054595, 2.343116058252927, 1.9308926212979165, -0.7193160625401717, 2.2054824468410295, 4.6122744989738615, 3.9644860224116667, 3.39576643711069, 1.0610891110541376, -0.5108069055114858, 2.661180631562992, -0.9552755403267368, -1.3026206745476783, 4.227916467509211, 1.176002369698877, 4.091495659187616, -0.30556150196246656, 2.789275723106422, -2.829268577886142, 3.7285215221964454, -2.27956225379187, -4.450908835741883, -3.097702794402129, -3.30080232252545, -1.5631047694017992, 0.5236166690223574, -2.651784355788978, -2.316598439664528, 0.9178013844678464, 2.193910814166672, 0.6038868474632401, -0.6142146431182958, -5.0939255146081726, 1.4747823436815704, 1.9171280684599497, -1.913008267789452, -0.05277666081015362, 1.4929861380104197, 0.46054492358835597, -3.1578426850013406, 3.7707719668198805, -1.5339923921957184, 0.6774013323721412, -1.0381338596624086, 7.622481161182308, -6.3016099986522205, -3.7205564360646406, 2.565518426914736, -4.9745300148580345, 2.0662451629869714, 3.4569726664796705, 3.6896967787230244, -0.09696080592951223, 0.26666267514865905, 5.595927119281588, 2.796071049455837, -3.594553682213463, -0.46657962676224646, -4.111882788634647, 4.89275612572847, -6.644371932825091, -4.829881562759628, -1.6428711149061526, -5.898611143757126, 5.04730410959333, 5.181310951333527, 0.3527973653605543, 0.13255426524444697, 4.3066556421844195, -1.427109080221042, -0.28949627090189795, 6.920454053397536, 3.7756079044037367, 4.341091963245113, -0.6484460632460356, -1.4505694427944902, -4.36510583891927, 2.165855604388161, -2.4925628642589968, 0.007189475168045477, -1.5653283813929886, -3.5946665763776453, 2.120852925491775, -1.1956673642969138, 3.594859727731767, 1.7956785619192845, -0.6442654951350426, 1.2557683464720124, -4.519050544456255, 0.3018049668595069, 0.9744590507734089, -6.007390211022036, 3.7779780091639643, 0.3264227353799104, -3.392340372411085, -4.955988850787028, -3.284331866839988, -2.456475436133814, 2.7978360849908173, -1.5092978106642796, 3.0514124423654474, -0.3801965014616818, 4.409228096543457, 2.824998852157672, 1.17039965878506, 1.7133375529987187, 3.2579916897803898, 2.5729939730204294, 0.6871435190098267, 1.7865704240032148, 3.16754385153935, 1.4949177197747403, -1.1069153562009058, -0.9413615175703199, -6.728559785984053, -3.627374855144771, 3.4360948875295456, 2.496319107706837, 5.387924753144097, 1.2066655769763472, 3.6646143857150633, -2.5578325881829973, 3.242866966185388, 1.572528509977364, -5.139498355142643, -2.0652207686545383, -0.016344710761113056, 1.9885193548713356, -0.6690160995989288, 5.067755791499926, -0.8671360662798391, -4.3021218628466125, -0.32241924373342157, -2.9721994231671034, 0.9650311023629391, 1.1739797162860375, -2.7405955966388804, -1.6361352366134565, 1.122348281940579, -0.1766939693717645, 1.8426167061098206, -2.3505282314985365, 1.3274521566285564, -2.522040904287917, -7.431478521573909, 4.135884345311226, 1.4757558765530188, 0.1476787818494393, -0.7346664593887625, 5.88220345132354, 3.140216319685536, -1.440421429142522, 2.0225940663157087, 2.380355568996949, 2.96593757155955]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 2\", \"marker\": {\"color\": \"rgb(44, 160, 44)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 2\", \"scene\": \"scene4\", \"showlegend\": false, \"text\": [\"Complementary_64_2\", \"example_4\", \"redundancy_32_2\", \"mutual_error_2_2\", \"Complementary_79_2\", \"Complementary_8_2\", \"Complementary_7_2\", \"redundancy_54_2\", \"Complementary_29_2\", \"example_34\", \"example_35\", \"mutual_error_25_2\", \"redundancy_6_2\", \"example_47\", \"Complementary_5_2\", \"example_53\", \"mutual_error_11_2\", \"redundancy_20_2\", \"redundancy_31_2\", \"example_71\", \"example_80\", \"Complementary_85_2\", \"redundancy_15_2\", \"example_91\", \"redundancy_37_2\", \"redundancy_50_2\", \"example_99\", \"example_102\", \"redundancy_14_2\", \"Complementary_34_2\", \"example_106\", \"Complementary_26_2\", \"example_119\", \"example_121\", \"example_122\", \"example_123\", \"Complementary_21_2\", \"Complementary_86_2\", \"example_130\", \"example_134\", \"example_138\", \"example_143\", \"Complementary_39_2\", \"Complementary_95_2\", \"example_150\", \"mutual_error_7_2\", \"Complementary_27_2\", \"redundancy_59_2\", \"redundancy_9_2\", \"Complementary_93_2\", \"example_166\", \"example_170\", \"example_183\", \"redundancy_55_2\", \"example_187\", \"redundancy_1_2\", \"example_191\", \"redundancy_16_2\", \"Complementary_30_2\", \"Complementary_80_2\", \"Complementary_25_2\", \"Complementary_73_2\", \"redundancy_41_2\", \"example_207\", \"example_214\", \"example_216\", \"example_217\", \"Complementary_67_2\", \"Complementary_51_2\", \"example_230\", \"Complementary_75_2\", \"Complementary_69_2\", \"redundancy_46_2\", \"redundancy_7_2\", \"Complementary_96_2\", \"example_243\", \"Complementary_59_2\", \"example_251\", \"example_252\", \"example_253\", \"example_258\", \"redundancy_3_2\", \"redundancy_28_2\", \"example_269\", \"Complementary_6_2\", \"Complementary_84_2\", \"example_276\", \"Complementary_66_2\", \"example_282\", \"example_288\", \"Complementary_88_2\", \"example_295\", \"mutual_error_31_2\", \"Complementary_87_2\", \"example_308\", \"example_313\", \"example_315\", \"example_317\", \"example_325\", \"example_330\", \"example_337\", \"example_339\", \"example_343\", \"Complementary_52_2\", \"example_347\", \"mutual_error_23_2\", \"example_358\", \"example_366\", \"redundancy_62_2\", \"mutual_error_29_2\", \"redundancy_22_2\", \"Complementary_20_2\", \"example_379\", \"redundancy_52_2\", \"Complementary_56_2\", \"mutual_error_28_2\", \"example_387\", \"example_389\", \"redundancy_40_2\", \"mutual_error_32_2\", \"example_397\", \"Complementary_40_2\", \"mutual_error_10_2\", \"example_402\", \"Complementary_24_2\", \"example_406\", \"Complementary_58_2\", \"example_413\", \"redundancy_63_2\", \"Complementary_2_2\", \"example_418\", \"example_419\", \"Complementary_32_2\", \"mutual_error_18_2\", \"example_435\", \"redundancy_53_2\", \"redundancy_0_2\", \"example_452\", \"example_454\", \"example_455\", \"example_458\", \"example_459\", \"redundancy_64_2\", \"Complementary_28_2\", \"mutual_error_22_2\", \"Complementary_9_2\", \"example_471\", \"example_472\", \"redundancy_30_2\", \"Complementary_48_2\", \"Complementary_60_2\", \"example_484\", \"mutual_error_24_2\", \"Complementary_12_2\", \"redundancy_18_2\", \"redundancy_60_2\", \"example_496\", \"example_498\", \"redundancy_36_2\", \"example_504\", \"example_505\", \"redundancy_57_2\", \"example_509\", \"Complementary_14_2\", \"example_520\", \"example_524\", \"Complementary_82_2\", \"mutual_error_20_2\", \"Complementary_61_2\", \"example_553\", \"Complementary_18_2\", \"Complementary_33_2\", \"Complementary_4_2\", \"example_561\", \"redundancy_65_2\", \"Complementary_68_2\", \"example_564\", \"example_565\", \"Complementary_37_2\", \"redundancy_38_2\", \"redundancy_39_2\", \"redundancy_47_2\", \"example_577\", \"mutual_error_13_2\", \"mutual_error_26_2\", \"Complementary_74_2\", \"example_607\", \"example_608\", \"example_609\", \"Complementary_0_2\", \"example_612\", \"example_614\", \"example_619\", \"Complementary_16_2\", \"redundancy_49_2\", \"example_627\", \"example_632\", \"Complementary_57_2\", \"Complementary_78_2\", \"Complementary_19_2\", \"Complementary_47_2\", \"Complementary_53_2\", \"Complementary_98_2\", \"Complementary_10_2\", \"Complementary_81_2\", \"example_648\", \"Complementary_17_2\", \"Complementary_72_2\", \"example_658\", \"mutual_error_8_2\", \"redundancy_21_2\", \"example_663\", \"Complementary_1_2\", \"example_672\", \"example_674\", \"example_676\", \"redundancy_24_2\", \"example_683\", \"example_686\", \"example_690\", \"Complementary_62_2\", \"example_698\", \"example_699\", \"redundancy_56_2\", \"example_701\", \"example_702\", \"example_708\", \"redundancy_11_2\", \"Complementary_97_2\", \"Complementary_42_2\", \"example_724\", \"example_725\", \"example_726\", \"redundancy_35_2\", \"Complementary_49_2\", \"mutual_error_21_2\", \"example_735\", \"example_738\", \"Complementary_44_2\", \"mutual_error_17_2\", \"example_745\", \"redundancy_5_2\", \"redundancy_58_2\", \"example_749\", \"Complementary_22_2\", \"mutual_error_19_2\", \"example_761\", \"example_763\", \"Complementary_36_2\", \"example_766\", \"example_767\", \"Complementary_71_2\", \"Complementary_15_2\", \"example_771\", \"example_772\", \"Complementary_76_2\", \"example_776\", \"mutual_error_27_2\", \"Complementary_38_2\", \"example_783\", \"example_784\", \"mutual_error_15_2\", \"Complementary_77_2\", \"example_791\", \"example_794\", \"redundancy_19_2\", \"Complementary_70_2\", \"Complementary_13_2\", \"Complementary_11_2\", \"Complementary_63_2\", \"redundancy_61_2\", \"Complementary_45_2\", \"example_815\", \"example_818\", \"redundancy_26_2\", \"mutual_error_9_2\", \"Complementary_35_2\", \"example_838\", \"mutual_error_14_2\", \"Complementary_83_2\", \"example_841\", \"mutual_error_6_2\", \"mutual_error_4_2\", \"redundancy_17_2\", \"Complementary_54_2\", \"Complementary_90_2\", \"redundancy_2_2\", \"Complementary_31_2\", \"redundancy_4_2\", \"Complementary_23_2\", \"Complementary_50_2\", \"Complementary_46_2\", \"example_871\", \"example_873\", \"redundancy_51_2\", \"example_875\", \"example_877\", \"Complementary_89_2\", \"example_879\", \"Complementary_41_2\", \"example_888\", \"example_889\", \"example_890\", \"Complementary_3_2\", \"Complementary_65_2\", \"redundancy_33_2\", \"example_905\", \"Complementary_43_2\", \"example_914\", \"example_918\", \"example_921\", \"example_927\", \"example_928\", \"example_930\", \"mutual_error_5_2\", \"example_942\", \"redundancy_45_2\", \"example_944\", \"example_952\", \"example_955\", \"mutual_error_30_2\", \"Complementary_55_2\", \"example_961\", \"example_971\", \"Complementary_94_2\", \"Complementary_92_2\", \"redundancy_29_2\", \"mutual_error_12_2\", \"redundancy_10_2\", \"redundancy_34_2\", \"mutual_error_16_2\", \"Complementary_91_2\", \"example_995\"], \"type\": \"scatter3d\", \"x\": [-5.9821584295789245, 3.245595424630145, -1.3798801060141914, -2.509812347214617, 1.7265851907643572, 0.5125863628018118, -0.8925579400870721, 4.890420591684023, 0.35220353519371067, 1.6719770695276435, -1.8397926812816618, -2.155805167545303, -0.18523756892440466, -2.3759911422008217, -2.6576559961128927, 0.724617777841233, 2.2568107314160475, -0.5837462901648725, -6.909731163209916, 4.287778194443629, -2.250614452603797, -0.3520806078583412, 6.7497826483623875, 1.9978761880843914, 3.5074599112692524, 4.936908446185576, -1.6014000453615236, -2.10591833522418, 2.141736132360429, -0.2813340898850253, 1.3111457216145275, -2.8647289363922783, 1.9461225810344704, -1.2828342540045883, -5.392287907300922, -3.317045940970639, 2.3404216230893207, 2.073566456069838, -1.2855729068863118, -5.547983500622685, -1.097101378816173, -3.8679897492787174, -1.4473671028907062, 0.3216335417794534, -3.621377749182683, 0.5777763636114596, -2.307215650535302, 1.826987322455579, 0.07051459267588679, 2.2591282966366313, -1.250014777827849, 0.0009636356549818754, 4.100813864129149, 3.562674206408005, 3.9136836951908403, 0.04096284336337844, 5.270033845559966, 9.849715787827455, -2.4350345014251538, -0.32657269073567907, 5.739648200420882, -0.6070252620248617, 0.18262644978824694, -0.2922262052401085, 3.0212322031064756, 2.0718818065644578, -5.020059461738722, -0.15731576802078542, -5.573896633120429, -3.4935192730180793, 2.439726047073586, -5.974316195437684, 11.941531570246772, -2.5369272749210787, -3.198307929248378, 4.543086833828492, -2.840202033720164, -2.412489074932057, 8.043430849187548, 1.4889778715414386, 0.9859333944075424, -0.951130054788114, -6.56116522853588, -1.5438135337149352, -3.5110495765558913, -4.499223950547724, 2.1699596309255207, 0.24977012740279153, 0.863378920436633, 4.493165795852655, 2.683301282903851, -0.7010353734345958, 0.4697910616509186, -6.797308664315017, 4.950825277046589, -2.550079881088456, -0.7441164820400606, 5.479744731089042, 6.51881951442253, 5.455474210396772, -2.309878882622734, -1.299989122318648, 1.893479233454484, 1.3135940543149587, -2.2068577092868904, -0.8319770241739349, 0.4836152069054232, 3.062934354673164, -5.109823452404892, -3.634285561341766, 4.735151236111509, -0.07379775055217637, -5.587205560804104, -0.22785665844748426, 0.9390965241276014, -1.5184672714579852, 1.1851714356967364, 1.119747492661576, -4.409130908068162, 0.8285139866667232, 3.5297332939445787, 1.1902818277317193, 0.19047727044732593, 1.38397281839102, -3.666117758592787, 1.2515260599626055, 0.33933930223039227, -0.7587351923875671, 0.1942019028015837, -2.08515735596286, 5.160285638074716, 2.0086064689757888, 1.1235360487829447, -2.946103280573676, -0.7467880547969233, -10.46385424896913, -5.470165920525048, 0.5574636801827382, 1.1590312733363184, -1.9638378831297145, 2.5458065101967615, 2.9205951642387955, 7.351391744797692, 0.5505826762555555, -1.4588262702691073, -6.2232030117618855, -3.7953725292917606, 7.730617225541131, 1.638822558331012, 0.0450946914635206, -1.5822297025176737, -2.5252683880505242, -0.3953645277284869, -6.70149276564307, -3.459877367667688, -5.701422881703655, 0.8799388172153783, -2.1698428160402807, 5.130538254564765, 1.7058178316540293, -0.46923313702364194, -0.530828846848374, 0.7383300347567313, -1.836030731545334, 0.3706983763949379, -0.06753929255039766, -7.87082822193332, 1.340077129758288, 1.9986791535896273, 3.75081189947993, 0.8970031456845392, -1.3724746281997675, -0.5831549894183448, -0.8524416559097853, -3.3214350161171398, 5.553542611892062, -0.7405078950976623, 2.554873452100416, 8.262451115210078, 7.712940742070653, 0.10371362391918863, -3.361638925583462, -3.577620006818051, 1.8469283469221394, -0.8083824837524505, -2.1764068575519397, 2.0045551194994724, 1.787814384713594, -3.145449569982065, 0.8724409097378071, -5.568208573541229, 2.8073700426058315, -1.446601286587919, 1.0633198824167998, 5.787077939904653, 2.2573987393284844, -4.122884692925015, 1.300430846537261, 0.17851518194715912, -5.058239640893254, 1.3496560756494207, -2.4632225972605997, 4.270145333976259, -0.9314977853174025, 3.590972328484903, 3.8785643657356905, -1.6210402308946197, -1.7032972262709998, 5.228330020823285, -0.4434933278939342, 5.27548811851514, 4.633950989464929, -2.2908467311876466, 0.18720049877117192, -5.537961744475123, 2.202535867123859, -4.251343448608887, -3.8897318101242657, -1.1530739696072492, 1.6494261343842882, -1.6392381212353109, 5.375664952078771, -1.4182718041508355, 0.8101034076899527, 4.363592791560398, 1.373118647634243, 0.01280098338706406, -5.582955438091392, -0.9432590336823024, 4.660091167458831, 1.3952150457396022, -4.022985963153969, 5.2666408003469325, -5.325689557634647, 0.5280177366206891, -1.4458721282500626, 3.1642497435074612, 1.352370902745477, 0.04607028336858149, -2.2971991506522813, 1.6494173981040368, -4.477535488285304, -6.628714196479665, 3.3672301342731745, 2.565236152472675, -1.787195663816046, -1.881833709796923, -3.517189568659733, -1.9663417609536866, -2.3205164928303925, 4.845555782448868, -0.3623126262727487, -1.727933005644542, 0.3600184326564036, -0.7979176426168694, -6.200458263016246, -2.585434680153093, -0.9341951724020573, 0.9457790462575796, -3.345271276948473, -1.871798552379726, -1.8737394605474909, -0.014081772993652358, -1.391948120946096, 7.6934271599806525, -4.486091269330623, 1.690147668537493, 0.6788941022603978, 0.8926291517851977, 0.5381875759613617, -4.109886835241158, -3.7753569120570107, -0.9795476741161615, -6.353055648277196, -5.56295800203506, -0.461771595989201, 2.663875032636729, -0.5624812245990796, 1.3910812502101653, -0.8622423044121502, 3.6512081278434323, 3.1413351151362807, -0.4293687928254811, -5.225836903888352, -5.934285057228446, -0.7046442389192265, 7.288576652438355, -1.2516975904738799, -6.601677182542212, -1.0378166962705555, -0.5298464506905279, 6.099394866817381, -1.3139233576752338, 1.7864472114003271, 2.325929596567621, -2.15628339687277, -1.6561083537574322, -3.5818124134954035, -4.853456646172283, 0.2409645113097842, 1.8878852839167057, -1.5787894745610649, -3.2332359180368497, 0.1192944331827177, 3.592176418866544, -3.952344531511552, -3.5275699471803064, 5.5071278190475415, 2.7203447359491784, -2.0551410827079537, -3.7081928522125094, -1.1003178956577757, -4.060485765493909, 1.6063023171192996, -0.5263058672634626, 4.6807232065058555, -1.4328382552063896, -0.5322087738288331, 2.0971820799767515, -1.1600604358901683, -0.4051583444326099, 1.4288537271814903, 3.7935389638896577, 2.356001605857399, -3.2093601842449684, -0.6883020702811111, -3.461714794584438, 0.2753013263174181, 2.6171653506845765, 0.48094334771664, 1.5451924287878012, 6.116421040407514, -0.1038012388554404], \"y\": [1.2658614978612897, -3.452665514165101, 6.459315375651518, -1.1132949776793528, 1.4057774029893753, 1.2225949845112931, -1.0967101760385627, 4.681180248427756, 1.7087545825656036, 1.8044156557787092, -1.951749936836917, -0.9853254875492443, -7.125727918884534, 9.444637584323477, 0.37584762833605573, 0.09988231388193897, 1.4865957953882956, 0.11723704394439231, -6.603363351667949, 1.5877299068752542, 4.049235509632504, -3.832387856251634, -1.5104102287033985, -0.40052463625912, 1.1749146269592863, -4.169334823689241, -4.987292405164247, -1.29660377384293, 3.0683944068587024, -2.0909868989959923, -3.8878572396392506, 0.4040391582208027, 0.8618935724714514, 0.6284876416857454, -5.850912949295419, 3.9818553227105116, -3.259108898394788, 0.5492825643946477, -3.7015378897530793, -1.839692115166416, -5.263263237696265, 1.4255002990434587, -6.325748588165083, 5.532957223827652, -0.9919574732652098, -0.25401243834281584, 6.680373877894434, -4.410165338000516, 0.9876391591663805, -2.6135322819114646, 1.3968334157029956, -0.24066158646062796, -2.935015961240128, 5.343617146402175, -1.9092519443786882, -7.273806809930594, 2.566893795029014, -2.6177561546382173, 6.877269893953692, -1.4548318110373355, -1.9111881884309583, 2.676015253414205, 6.8845662457960115, 3.594194652647639, -1.6606225063250852, 2.9683177373667804, 0.14035140219097134, -2.178614722922275, -1.5513248157711093, -0.7665904881150056, -3.514208664495141, -0.2729483541775019, -1.5844219710999203, -2.8059687627672467, 7.4869459221904195, -0.21313237583182912, -1.6769520788196404, 4.0954235292380226, -1.7715681810955528, -6.661222514246144, -4.248143018767562, -2.582704794404028, -0.15782434573930457, -4.379199886814558, -1.6056749870684441, 4.810703791833041, -3.159207466669256, -2.5544902573805097, -4.754781273245692, 0.6855608108332807, 3.511207420602112, 5.227845557725796, -0.6560125053837151, -2.25747611117417, 0.2435043787239522, 3.767826221747296, 4.2057368572489136, -0.33300085722108036, 1.7367522189777211, -2.08737663805069, -3.9296736638084777, 2.428281604459001, 1.2088226015238508, -0.4234554949212985, -1.4387804133995412, -0.7808788268596564, 0.9814857088130581, -0.10860785004411758, 2.3697564026508697, -1.1918749769383306, 2.643452992161984, -2.438253000072948, -1.023948961281007, 6.962295241598969, 1.8259651929487908, -2.11752375531948, 4.621875144270395, 4.317000639651227, -5.709600787734376, -0.9452592786385691, 3.199015722980039, 0.8037130986762757, 0.7070395785573964, -2.3063847716066346, 5.519226074654293, 4.158299822535633, -1.2581972530780763, 5.359514256451148, 7.812416885837398, -2.836149078141516, 0.8831593367963514, 2.0099855582632378, 1.83352494459655, 0.16639935390056476, 1.6016198792217309, -1.2892611568165906, 5.066931424980696, -0.4869523569359534, -5.920497118522112, -3.4572932081959187, 4.771639994231741, -4.629908772510918, 2.6176401656058466, -2.78797775060892, 0.9966744233325725, -4.653664564433542, -2.1862529749027946, 1.8941439496803598, -5.048406320793786, -1.5318921873016431, -1.8795147953220193, 2.7450721956990454, 0.3693791705976988, 6.637633369114185, 5.476731022791265, 4.368923873824689, 4.775319681221739, 0.5370273787480518, 5.250915170671562, 0.4923455114917462, -5.793107653845688, -6.805693043542088, -1.3277941889377214, 2.770967522211134, -0.1850545990519351, 5.091850972644119, 6.811599925586062, -2.762483327923993, 6.761536304175831, 4.097713612391952, -0.4617664714891384, -2.181899108730835, 0.38432447813515935, -3.2244068809402426, -3.201955157119541, -5.06320022077731, -6.025116476725119, -2.51563151256449, -2.7638960519964044, 1.5261017422727858, -0.03606351411718303, 1.3331257828608094, 2.8310008592033515, 2.508705541214942, 0.8846023716833303, -1.007722499811686, -2.1483774606907047, -2.4315402705839606, -3.1070133369441075, 1.4957230795871463, 4.588505613176968, -6.206153488875464, -3.609024652293959, 1.9853938848741515, 0.4878759774159765, -0.5915767761387496, -1.8688366377586838, 0.9077941461914119, 1.1265550501036907, -7.577289501549613, -0.017775045385935963, -0.09636106223739518, -5.786021714319281, -2.053196649408012, -0.8288016103277438, -2.5150375157055858, 2.186934950122985, 0.036523709831665564, 2.823492990214545, 1.1889074577779033, 1.5058804170496158, -5.275065288838831, -1.2194867500532767, 0.47964781312458943, 2.0284042432744385, 3.482228832420108, -1.1334191598003498, 4.778307678966229, -3.8372873039738518, -7.539417500155285, -2.2422277529956345, 1.499141102670427, -3.9198441267802884, -8.280643232272732, -3.3122819346225785, -3.42440057117394, 0.7419654937272171, 1.7786524574353249, 0.2409342006177671, 1.6728118211409173, 0.5623945880124676, 4.387500018785913, -0.3044903764421577, -2.65513497993757, -0.6978209709656593, 1.9952245898387304, 3.6029869567343003, 0.3975407744080928, 6.512464518756012, -0.026036143467834363, 0.8915347067899608, 4.8859062485163465, -4.400308332204449, -0.0029929237230428662, 0.6009553551047813, -1.415789189859216, -0.8407207383520164, 0.8024512722472428, -2.729210396871618, -5.145370073660026, 1.406640228747805, 0.4854974905431831, 1.6679844886304698, -5.18535186236943, -3.901133328702695, -3.3557302501971233, 4.385406726824958, 1.3661027643898498, -2.0857371666273417, 3.5182482470153102, -4.143880445678923, 2.778300960730005, 2.496168269432734, 1.9410513190212038, -0.9058345182881001, 4.849894990430074, -6.516234380630611, -0.7873584873129412, -4.629366884677329, 3.1541729205983176, 7.270344415284983, -1.2723412275722044, -1.6282815654215126, -0.15243599425714194, 2.559562917907578, 0.7206129442690138, -1.2130570383698953, -4.905185772286245, -1.4565987417546777, 3.2773441996355883, 2.716783894236573, -1.2949209855880182, -1.6283828695039626, 2.2322705977538946, 5.034980623655062, -3.8717576261360453, 4.612715382935303, 3.5466410872193888, 0.9193327847648811, -1.3462986052824388, -2.003783523020074, -1.5765526837722348, 5.273498248975179, -3.0447014355322364, 0.8425075551166338, -1.7469086698583671, 3.6084128332140937, -6.797103166768171, 1.801816547939745, -1.2048703653280988, 2.3214300052361136, 0.48451940620084005, 3.2349311388995816, -7.921671140564475, 0.5091807250489494, 5.110233462652169, 2.7576240525309634, 5.388711832981098, 2.524468176997417, 1.0875728747449749, 5.806727642806977, -0.5776908900699436, 3.0219326616562467, -0.5857009803200371, -0.0325146790239593, 1.5562263885604894, -6.019311681061821, 2.1637448536687094, 1.3635943434221227, 4.78488503178339, -1.6361065822628649, 8.083665704346624, -4.277312787915684, 3.179461472490805, 1.305085156801056, 2.835066277770572, 1.5415411950319882, 0.285551086656454, 1.6174081826352953, -0.4793788113781127, 0.012813153695943182, -4.233308525415596, -0.36045041274178125], \"z\": [4.472182846811785, 0.2670366475924074, 2.558821450042892, 2.0040381588149088, 0.499859900123698, 0.21109485979301823, -0.6896893692811531, 0.20268046942294243, 0.569028515812178, -5.342543131525999, 5.5141459946739735, 2.4031369013795634, -0.39182286816452083, -1.0644001238195913, -0.6901366639074955, -0.6218652096477487, 1.7896513955161681, 8.243069770792207, 5.684230025211054, -1.4684683358878823, 0.06910326527597613, 0.3466196450563509, -2.456800170820498, 3.9005499808584125, -5.466837837671039, 2.4693164258659768, 0.7804792517069506, 3.8883125031638004, 5.435577215652758, -2.1028637307157263, -0.33590168680474947, 0.5524283540346303, 0.27705097625274844, 4.446938647776967, -6.371712001998967, -6.283627658841549, 10.019141590325917, 6.165797858630441, 1.0463242684638654, -1.0363745483057454, -1.5774955571114322, -0.653802241930439, -2.1994335843401696, 6.73244655789446, 0.21375366476148652, -3.5987632906337597, 3.0984400319243823, 3.648359973205635, 5.962972062214795, -1.3198134705333486, 5.612213017834425, -5.007525412402144, 0.759747027684489, -1.316369623953847, 0.6319634319489925, -0.008184288299480298, 1.3774159662264414, 7.482978154974037, -0.3393479695057173, 0.848237326107232, -1.5486584568163502, 0.37983561091781193, -3.0767249508833854, -6.472529014601497, -3.440193585964177, -2.2331128896219092, 1.2927038234139208, -0.40752713345372127, 2.1151153234170144, -2.024560184050748, 6.5216128471051835, -4.359589627047651, -5.011537840801899, -6.6398157336807575, -2.14388798490312, -1.3071739530158133, -0.48125709515429616, 0.6914893253113716, -0.15154469866834547, -3.954593518694038, 0.3094996727338263, 5.272096783983981, 6.039396913820521, -3.440861953104329, 6.681587749923935, 0.3507373236856644, -4.031620438648713, -2.9606802225248114, 1.3397065326502082, 2.0552238443875375, 5.882126811893492, 0.6279647871864276, 2.9943129520588982, -3.326290109339433, 5.897839742678433, 3.1673810535955607, -0.3811391897515657, -0.05618090933225885, 2.4289592935101645, 0.636715936763357, -1.78111686111213, -4.681895803459802, 3.8962390810323315, -1.5175630639460043, 3.6821524095046847, 1.1627940673090589, 5.410061311342541, 3.1925306355438585, -2.2727186090101705, 0.2162581455835587, -6.329839659751811, -2.1846963964814257, 4.876096558742066, 5.400446198473811, -0.7150513273761603, -2.084885089518328, -1.7665628188901936, 3.3722694563420883, 2.3566940177541795, 1.3280783142139836, 3.188433858280917, -1.9352233522235363, 0.7297993262371838, -4.386807062323021, 0.23224008501353557, -1.995856809439102, -0.9831280260974693, -1.1557758761629429, -5.755767236609135, 5.772622939226213, 3.9786746988920814, -1.4384512255591606, 1.3144094036638032, -1.3408370629220268, -4.286453554029935, -3.652700477087854, -3.5080669698253053, 0.6296357216947445, 3.0676606257613077, -6.415545055422796, -5.010274457698264, -1.2470909271096113, 4.100642785483202, 1.93496519464323, -1.8243526146366138, 2.280988910993796, -1.7233028035459568, -7.211650715743662, -6.045915020663853, -1.0597383120008976, 1.6947954992423218, 1.8499525523083653, -3.8265077082139083, -2.5965057623114642, -2.217616120883897, 0.6254889033407777, -0.5906911227642129, -3.8607930209247177, -0.6687497971702582, 4.303101378026165, -1.4573505853455127, -1.9467582951607905, -5.64195249818231, 1.3318698654808945, 5.699030261829023, -1.6436603714776115, 2.358159738206029, 1.5083851316097627, 3.0327598319967275, -1.7366436415574862, 3.852704407713399, -6.484156849623581, 0.3602414604117415, -3.345135766765135, -4.907889032182201, -1.4310378106709944, -0.3476511418733731, -2.9951951303394115, -2.1784538923529135, 1.8447005649124415, 5.957022997806983, -6.841373592980301, 1.2571273030309564, -1.5992652080900656, 1.1899449758861254, -6.528142762433574, -5.106449391794659, 4.610986430828934, -0.6540793935434476, 0.6021268741153704, 0.6132640963189026, 3.124730215609857, 1.8367256037828936, 1.2780855382848895, -4.178283052012651, 3.8734143950617828, 2.95179903011433, 1.314346492303086, 0.5418317812589517, 10.441312519406058, -2.814394726462474, -1.802317452373923, -0.9160298785337232, -2.3461149866811923, -12.149236025263003, 1.0939531752314768, -0.5703990850269078, 0.5080864620564478, -2.5633836955054243, 1.0391516058623649, 6.78255407097354, 3.2325824008678485, 1.6679705509487466, 2.9391314118954526, -0.9261665169001991, -1.7395204834700098, -5.623071918732081, -1.3798683899869453, 1.9004027324058241, 6.582417934538742, 2.648972765034803, 0.6426135295616745, 4.944833077132907, -2.107304152225986, 4.0604115500290385, -1.7313880578060936, -0.7738141303363292, 1.1676179910084186, 3.5734930719341826, 5.800116178580196, -4.803016143314798, -2.9538413266170513, -1.992279428181407, -0.964425304766798, -0.7881755786239777, -0.2589527193296547, -5.356864561391246, 4.262147665930199, -0.585958403545165, 0.6638615872662901, -1.325069535457578, -5.640895543898114, -3.7208081110684987, -1.3532299768596303, -0.8337880157920969, -2.3242089977267257, -2.215661141520905, -4.11193512581423, 2.121330319650672, 1.0909238242754549, 3.574484848716831, -2.3646800733271576, -6.6604253082289855, 0.37586399643703783, -1.1061801612424025, 2.0008847859871843, -0.13760170041882153, -0.8344065565499633, 0.13849640315470815, 1.0578431621142588, 0.937526570915543, -0.7417437267757983, 2.6068509844631302, 4.836721055068029, 0.7861433359529273, -3.9270092462576263, 3.381281779222072, -1.3578363197580405, -5.796798348691043, 2.198315786789556, 1.6428875004570462, 4.754272875549434, 4.012410461887828, -1.4057870700103896, 4.879927423166467, -0.6332254589558837, 0.4729267892766591, 1.1943855849586351, 0.9887884500692232, -0.9880140392638398, 0.03511559385419429, 1.916110410683256, 1.8528102555232382, 1.800413746484312, 2.6767500301874567, 0.1427817806130857, -0.026758328518253414, 5.509912084442117, 5.843181500255583, 1.9109637495499836, 0.4719311384848875, 4.4501495544066705, 0.728570158130671, 1.763972830248409, 7.104089586668218, -4.488692582920049, -4.007759268093651, -0.9304532008915266, -2.778084290297856, -0.06156256252237987, -5.6916934565941615, 4.194774355075509, 4.970802224855078, -0.2090525844293638, -5.33990327430078, -4.564539917819339, -2.024573757165097, 1.2525950080460366, 3.759714893201972, -3.3276070671033398, 0.3718163411306774, -3.8896333537552645, -1.3751089437397637, -2.001648804476301, 0.12231299697354571, 2.581876530617521, -1.049510170235897, 0.3335224573668773, -8.322271311184213, -3.1482483434487314, -2.2982294458298695, -2.698755314910324, -0.4999777015639099, -2.6985134885476767, 6.5954870914260075, 0.4802364944998181, 4.971126036057544, 0.7206540780951234, -6.769868885336649, -7.874743457149266, 1.93456911408557, -3.206214047192931, 5.142139042221053]}],\n",
+       "                        '0f3205d4-ae8c-4635-b868-78858398d0d1',\n",
+       "                        [{\"hoverinfo\": \"text\", \"legendgroup\": \"Class 0\", \"marker\": {\"color\": \"rgb(31, 119, 180)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 0\", \"scene\": \"scene\", \"showlegend\": true, \"text\": [\"0_l_0_m-0_2.4-1_0.58-2_0.67-3_0.97\", \"1_l_0_m-0_0.19-1_0.26-2_0.99-3_0.5\", \"2_l_0_m-0_2.09-1_0.3-2_0.75-3_0.13\", \"3_l_0_m-0_0.04-1_0.73-2_1.31-3_0.4\", \"4_l_0_m-0_0.59-1_0.13-2_0.67-3_0.97\", \"5_l_0_m-0_0.66-1_0.05-2_0.18-3_0.03\", \"6_l_0_c_1_2_3-0_0.94-1_0.1-2_0.23-3_0.3\", \"7_l_0_c_1_2_3-0_0.21-1_0.11-2_0.01-3_1.4\", \"8_l_0_c_1_2_3-0_0.22-1_0.75-2_1.82-3_0.33\", \"9_l_0_c_1_2_3-0_0.55-1_0.67-2_0.33-3_0.39\", \"10_l_0_c_1_2_3-0_0.37-1_0.75-2_0.7-3_1.43\", \"11_l_0_c_1_2_3-0_1.46-1_0.99-2_0.23-3_0.79\", \"12_l_0_c_1_2_3-0_1.6-1_0.29-2_1.48-3_0.06\", \"13_l_0_c_1_2_3-0_0.09-1_0.85-2_0.86-3_0.09\", \"14_l_0_c_1_2_3-0_1.43-1_0.86-2_0.81-3_0.59\", \"15_l_0_c_0_1_2-0_0.65-1_0.78-2_0.13-3_1.35\", \"16_l_0_c_1_2_3-0_0.52-1_0.31-2_0.58-3_0.24\", \"17_l_0_c_0_1_2-0_0.65-1_0.04-2_0.07-3_1.46\", \"18_l_0_c_1_2_3-0_0.4-1_0.48-2_0.96-3_1.37\", \"19_l_0_c_0_1_2-0_0.3-1_0.61-2_1.07-3_0.03\", \"20_l_0_c_1_2_3-0_0.01-1_0.54-2_1.43-3_1.4\", \"21_l_0_c_0_1_2-0_0.58-1_1.21-2_0.22-3_0.94\", \"22_l_0_c_1_2_3-0_0.53-1_0.6-2_0.85-3_0.0\", \"23_l_0_c_0_1_2-0_0.34-1_1.06-2_0.53-3_1.21\", \"24_l_0_c_1_2_3-0_0.65-1_1.44-2_1.2-3_0.0\", \"25_l_0_c_0_1_2-0_0.29-1_0.01-2_0.62-3_1.62\", \"26_l_0_c_1_2_3-0_0.21-1_0.41-2_1.81-3_0.91\", \"27_l_0_c_0_1_2-0_0.01-1_0.38-2_0.09-3_1.22\", \"28_l_0_c_1_2_3-0_0.29-1_0.07-2_0.25-3_0.56\", \"29_l_0_c_0_1_2-0_0.11-1_0.27-2_0.76-3_0.72\", \"30_l_0_c_1_2_3-0_1.58-1_0.22-2_1.64-3_0.24\", \"31_l_0_c_0_1_2-0_0.04-1_1.18-2_0.57-3_1.1\", \"32_l_0_c_1_2_3-0_0.06-1_1.54-2_0.54-3_0.29\", \"33_l_0_c_0_1_2-0_0.09-1_0.35-2_0.08-3_0.59\", \"34_l_0_c_1_2_3-0_0.75-1_0.26-2_0.42-3_0.61\", \"35_l_0_c_0_1_2-0_0.94-1_0.33-2_1.08-3_0.47\", \"36_l_0_c_1_2_3-0_0.84-1_0.21-2_1.76-3_1.26\", \"37_l_0_c_0_1_2-0_1.06-1_0.55-2_0.31-3_0.36\", \"38_l_0_c_1_2_3-0_0.31-1_0.51-2_0.77-3_0.43\", \"39_l_0_c_0_1_2-0_0.89-1_0.11-2_0.37-3_2.67\", \"40_l_0_c_1_2_3-0_0.16-1_0.53-2_0.07-3_0.17\", \"41_l_0_c_0_1_2-0_0.15-1_0.07-2_0.3-3_0.1\", \"42_l_0_c_1_2_3-0_0.02-1_0.33-2_1.0-3_0.26\", \"43_l_0_c_0_1_2-0_0.44-1_2.02-2_0.01-3_0.49\", \"44_l_0_c_1_2_3-0_0.16-1_0.12-2_0.27-3_0.53\", \"45_l_0_c_0_1_2-0_0.37-1_1.51-2_0.7-3_0.58\", \"46_l_0_c_1_2_3-0_1.76-1_0.68-2_0.25-3_1.71\", \"47_l_0_c_0_1_2-0_0.07-1_1.64-2_0.35-3_1.54\", \"48_l_0_c_1_2_3-0_1.98-1_0.69-2_0.38-3_0.29\", \"49_l_0_c_0_1_2-0_1.46-1_0.1-2_0.18-3_1.28\", \"50_l_0_c_0_1_3-0_0.29-1_0.58-2_0.2-3_0.97\", \"51_l_0_c_1_2_3-0_1.21-1_1.03-2_0.61-3_0.15\", \"52_l_0_c_0_1_2-0_1.45-1_1.34-2_2.56-3_1.74\", \"53_l_0_c_0_1_3-0_0.12-1_0.29-2_0.32-3_0.28\", \"54_l_0_c_1_2_3-0_1.06-1_0.32-2_0.19-3_0.44\", \"55_l_0_c_0_1_2-0_0.69-1_0.08-2_0.6-3_0.98\", \"56_l_0_c_0_1_3-0_0.21-1_0.27-2_0.12-3_0.78\", \"57_l_0_c_1_2_3-0_0.66-1_0.58-2_0.37-3_0.95\", \"58_l_0_c_0_1_2-0_0.06-1_0.7-2_1.37-3_0.21\", \"59_l_0_c_0_1_3-0_0.09-1_0.71-2_0.25-3_0.08\", \"60_l_0_c_1_2_3-0_0.4-1_1.02-2_1.07-3_0.64\", \"61_l_0_c_0_1_2-0_0.4-1_0.66-2_1.37-3_0.98\", \"62_l_0_c_0_1_3-0_0.85-1_0.29-2_0.31-3_0.27\", \"63_l_0_c_1_2_3-0_0.47-1_0.97-2_1.26-3_1.31\", \"64_l_0_c_0_1_2-0_0.46-1_0.33-2_0.26-3_0.79\", \"65_l_0_c_0_1_3-0_0.05-1_0.98-2_0.39-3_0.67\", \"66_l_0_c_1_2_3-0_1.36-1_0.49-2_0.24-3_0.73\", \"67_l_0_c_0_1_2-0_0.45-1_0.59-2_0.05-3_0.12\", \"68_l_0_c_0_1_3-0_0.34-1_0.77-2_0.08-3_0.6\", \"69_l_0_c_1_2_3-0_1.25-1_0.13-2_0.66-3_0.67\", \"70_l_0_c_0_1_2-0_0.87-1_1.32-2_0.03-3_0.57\", \"71_l_0_c_0_1_3-0_0.29-1_0.19-2_0.02-3_0.83\", \"72_l_0_c_1_2_3-0_1.65-1_0.76-2_0.76-3_0.04\", \"73_l_0_c_0_1_2-0_0.37-1_0.63-2_0.83-3_0.66\", \"74_l_0_c_0_1_3-0_0.19-1_0.05-2_0.12-3_0.06\", \"75_l_0_c_1_2_3-0_0.71-1_0.28-2_0.06-3_0.68\", \"76_l_0_c_0_1_2-0_0.21-1_0.0-2_0.53-3_2.45\", \"77_l_0_c_0_1_3-0_1.44-1_0.5-2_0.0-3_0.43\", \"78_l_0_c_1_2_3-0_0.17-1_1.56-2_1.18-3_0.62\", \"79_l_0_c_0_1_2-0_0.0-1_0.5-2_0.03-3_1.05\", \"80_l_0_c_0_1_3-0_0.03-1_0.62-2_0.13-3_1.33\", \"81_l_0_c_1_2_3-0_1.59-1_0.65-2_0.23-3_0.77\", \"82_l_0_c_0_1_2-0_0.38-1_1.27-2_0.54-3_0.72\", \"83_l_0_c_0_1_3-0_0.43-1_0.15-2_0.01-3_1.47\", \"84_l_0_c_1_2_3-0_0.5-1_0.92-2_0.58-3_0.3\", \"85_l_0_c_0_1_2-0_0.25-1_1.29-2_0.33-3_0.06\", \"86_l_0_c_0_1_3-0_1.32-1_0.01-2_0.39-3_0.06\", \"87_l_0_c_1_2_3-0_0.14-1_0.51-2_0.05-3_1.1\", \"88_l_0_c_0_1_2-0_0.04-1_0.08-2_0.73-3_0.3\", \"89_l_0_c_0_1_3-0_0.29-1_1.32-2_0.07-3_1.04\", \"90_l_0_c_1_2_3-0_0.23-1_0.23-2_0.16-3_0.38\", \"91_l_0_c_0_1_2-0_0.56-1_0.25-2_0.28-3_1.86\", \"92_l_0_c_0_1_3-0_0.05-1_0.06-2_0.34-3_0.47\", \"93_l_0_c_1_2_3-0_1.81-1_0.7-2_0.54-3_0.24\", \"94_l_0_c_0_1_2-0_0.4-1_0.7-2_0.46-3_1.08\", \"95_l_0_c_0_1_3-0_1.16-1_0.56-2_0.0-3_0.11\", \"96_l_0_c_1_2_3-0_0.71-1_0.83-2_0.32-3_0.84\", \"97_l_0_c_0_1_2-0_1.07-1_0.25-2_0.4-3_0.88\", \"98_l_0_c_0_1_3-0_0.53-1_0.17-2_0.08-3_0.71\", \"99_l_0_c_1_2_3-0_0.54-1_0.77-2_1.08-3_0.58\", \"100_l_0_c_0_1_2-0_0.03-1_0.6-2_0.81-3_1.08\", \"101_l_0_c_0_1_3-0_0.95-1_1.28-2_0.11-3_0.76\", \"102_l_0_c_1_2_3-0_0.96-1_0.25-2_0.45-3_0.72\", \"103_l_0_c_0_1_2-0_0.34-1_0.12-2_0.91-3_0.52\", \"104_l_0_c_0_1_3-0_1.02-1_1.91-2_0.14-3_0.91\", \"105_l_0_c_1_2_3-0_0.66-1_0.3-2_0.26-3_0.61\", \"106_l_0_c_0_1_2-0_0.06-1_0.24-2_1.09-3_0.37\", \"107_l_0_c_0_1_3-0_0.01-1_0.44-2_0.11-3_0.88\", \"108_l_0_c_1_2_3-0_0.24-1_0.16-2_0.07-3_0.82\", \"109_l_0_c_0_1_2-0_0.08-1_0.3-2_0.18-3_3.13\", \"110_l_0_c_0_1_3-0_0.02-1_0.48-2_0.14-3_0.79\", \"111_l_0_c_1_2_3-0_0.4-1_0.41-2_0.01-3_0.32\", \"112_l_0_c_0_1_2-0_0.83-1_0.06-2_0.37-3_1.63\", \"113_l_0_c_0_1_3-0_0.12-1_0.33-2_0.01-3_0.39\", \"114_l_0_c_1_2_3-0_1.37-1_0.44-2_0.25-3_0.13\", \"115_l_0_c_0_1_2-0_0.23-1_0.75-2_0.16-3_0.55\", \"116_l_0_c_0_1_3-0_0.91-1_0.42-2_0.15-3_0.79\", \"117_l_0_c_1_2_3-0_2.14-1_0.87-2_1.22-3_0.34\", \"118_l_0_c_0_1_2-0_0.07-1_1.32-2_0.35-3_1.08\", \"119_l_0_c_0_1_3-0_0.46-1_0.33-2_0.2-3_0.28\", \"120_l_0_c_1_2_3-0_0.97-1_0.19-2_0.71-3_0.65\", \"121_l_0_c_0_1_2-0_0.51-1_0.73-2_0.62-3_0.62\", \"122_l_0_c_0_1_3-0_0.04-1_0.36-2_0.36-3_0.39\", \"123_l_0_c_1_2_3-0_1.52-1_0.36-2_1.13-3_0.12\", \"124_l_0_c_0_1_2-0_0.88-1_0.49-2_0.41-3_0.06\", \"125_l_0_c_0_1_3-0_0.4-1_0.88-2_0.22-3_0.63\", \"126_l_0_c_1_2_3-0_2.36-1_0.67-2_0.25-3_0.6\", \"127_l_0_c_0_1_2-0_0.02-1_0.76-2_0.62-3_1.25\", \"128_l_0_c_0_1_3-0_0.43-1_0.28-2_0.37-3_0.23\", \"129_l_0_c_1_2_3-0_0.26-1_0.72-2_0.3-3_0.65\", \"130_l_0_c_0_1_2-0_0.62-1_0.12-2_0.88-3_0.08\", \"131_l_0_c_0_1_3-0_0.88-1_0.09-2_0.06-3_0.14\", \"132_l_0_c_1_2_3-0_2.15-1_0.28-2_0.77-3_0.65\", \"133_l_0_c_0_1_2-0_1.4-1_1.55-2_0.72-3_1.84\", \"134_l_0_c_0_1_3-0_0.15-1_2.36-2_0.14-3_0.01\", \"135_l_0_c_1_2_3-0_0.34-1_0.43-2_0.83-3_0.3\", \"136_l_0_c_0_1_2-0_1.45-1_1.47-2_0.74-3_1.76\", \"137_l_0_c_0_1_3-0_0.45-1_0.27-2_0.17-3_0.41\", \"138_l_0_c_1_2_3-0_1.76-1_0.12-2_0.96-3_0.52\", \"139_l_0_c_0_1_2-0_0.8-1_1.11-2_0.42-3_0.71\", \"140_l_0_c_0_1_3-0_1.32-1_0.48-2_0.2-3_0.41\", \"141_l_0_c_1_2_3-0_0.48-1_1.4-2_0.8-3_0.91\", \"142_l_0_c_0_1_2-0_0.96-1_0.63-2_0.07-3_0.91\", \"143_l_0_c_0_1_3-0_0.83-1_1.26-2_0.3-3_0.77\", \"144_l_0_c_1_2_3-0_0.96-1_0.6-2_1.68-3_0.75\", \"145_l_0_c_0_1_2-0_0.31-1_0.07-2_0.28-3_0.91\", \"146_l_0_c_0_1_3-0_0.57-1_0.95-2_0.1-3_0.79\", \"147_l_0_c_1_2_3-0_1.57-1_1.87-2_0.62-3_0.4\", \"148_l_0_c_0_1_2-0_0.54-1_0.37-2_0.2-3_0.36\", \"149_l_0_c_0_1_3-0_0.82-1_0.31-2_0.13-3_0.3\", \"150_l_0_c_1_2_3-0_0.76-1_1.0-2_0.17-3_0.09\", \"151_l_0_c_0_1_2-0_0.76-1_0.63-2_0.18-3_1.09\", \"152_l_0_c_0_1_3-0_0.12-1_0.21-2_0.03-3_0.46\", \"153_l_0_c_1_2_3-0_1.67-1_0.51-2_0.15-3_0.14\", \"154_l_0_c_0_1_2-0_1.85-1_0.59-2_0.94-3_1.0\", \"155_l_0_c_0_1_3-0_0.72-1_0.19-2_0.07-3_0.42\", \"156_l_0_c_1_2_3-0_1.53-1_0.67-2_0.32-3_0.21\", \"157_l_0_c_0_1_2-0_0.91-1_0.22-2_0.01-3_0.94\", \"158_l_0_c_0_1_3-0_0.99-1_0.07-2_0.03-3_0.44\", \"159_l_0_c_1_2_3-0_1.87-1_0.45-2_0.13-3_0.84\", \"160_l_0_c_0_1_2-0_0.55-1_1.68-2_0.5-3_0.43\", \"161_l_0_c_0_1_3-0_0.23-1_0.89-2_0.22-3_0.25\", \"162_l_0_c_1_2_3-0_1.95-1_1.36-2_0.13-3_0.41\", \"163_l_0_c_0_1_2-0_0.39-1_0.91-2_0.58-3_0.04\", \"164_l_0_c_0_1_3-0_0.43-1_0.7-2_0.47-3_0.35\", \"165_l_0_c_1_2_3-0_1.88-1_0.62-2_1.4-3_0.5\", \"166_l_0_c_0_1_2-0_0.84-1_0.23-2_0.5-3_0.61\", \"167_l_0_c_0_1_3-0_0.27-1_1.24-2_0.02-3_0.2\", \"168_l_0_c_0_2_3-0_0.51-1_0.24-2_0.22-3_0.84\", \"169_l_0_c_1_2_3-0_0.96-1_0.14-2_0.06-3_0.32\", \"170_l_0_c_0_1_2-0_0.33-1_0.19-2_0.67-3_2.43\", \"171_l_0_c_0_1_3-0_0.02-1_1.91-2_0.02-3_0.89\", \"172_l_0_c_0_2_3-0_0.09-1_0.06-2_1.76-3_0.25\", \"173_l_0_c_1_2_3-0_0.46-1_0.17-2_0.63-3_0.69\", \"174_l_0_c_0_1_2-0_0.86-1_0.33-2_1.69-3_0.15\", \"175_l_0_c_0_1_3-0_0.86-1_1.95-2_0.58-3_0.3\", \"176_l_0_c_0_2_3-0_0.67-1_0.61-2_0.09-3_0.5\", \"177_l_0_c_1_2_3-0_1.36-1_1.63-2_0.5-3_0.5\", \"178_l_0_c_0_1_2-0_0.88-1_0.68-2_0.48-3_0.37\", \"179_l_0_c_0_1_3-0_0.17-1_0.53-2_0.2-3_0.85\", \"180_l_0_c_0_2_3-0_1.02-1_0.15-2_0.51-3_0.09\", \"181_l_0_c_1_2_3-0_0.44-1_0.08-2_0.67-3_0.09\", \"182_l_0_c_0_1_2-0_0.35-1_0.12-2_0.43-3_1.1\", \"183_l_0_c_0_1_3-0_0.02-1_0.01-2_0.14-3_0.5\", \"184_l_0_c_0_2_3-0_1.02-1_0.39-2_0.25-3_0.71\", \"185_l_0_c_1_2_3-0_0.61-1_2.62-2_1.83-3_0.12\", \"186_l_0_c_0_1_2-0_0.19-1_0.78-2_0.11-3_0.31\", \"187_l_0_c_0_1_3-0_0.36-1_0.29-2_0.04-3_0.05\", \"188_l_0_c_0_2_3-0_0.59-1_0.17-2_0.17-3_0.34\", \"189_l_0_c_1_2_3-0_0.72-1_0.12-2_1.03-3_0.17\", \"190_l_0_c_0_1_2-0_1.44-1_0.38-2_0.15-3_0.07\", \"191_l_0_c_0_1_3-0_0.06-1_0.49-2_0.04-3_0.68\", \"192_l_0_c_0_2_3-0_0.62-1_0.13-2_0.58-3_1.0\", \"193_l_0_c_1_2_3-0_0.2-1_0.08-2_0.43-3_0.38\", \"194_l_0_c_0_1_2-0_0.18-1_0.63-2_0.38-3_1.89\", \"195_l_0_c_0_1_3-0_0.09-1_0.35-2_0.0-3_0.62\", \"196_l_0_c_0_2_3-0_1.4-1_0.35-2_0.3-3_0.2\", \"197_l_0_c_1_2_3-0_0.74-1_0.47-2_0.8-3_0.9\", \"198_l_0_c_0_1_2-0_0.22-1_0.56-2_0.48-3_0.35\", \"199_l_0_c_0_1_3-0_0.73-1_0.35-2_0.02-3_0.78\", \"200_l_0_c_0_2_3-0_1.41-1_0.19-2_0.63-3_1.05\", \"201_l_0_c_1_2_3-0_1.94-1_0.01-2_1.37-3_0.65\", \"202_l_0_c_0_1_2-0_0.97-1_0.5-2_1.42-3_0.01\", \"203_l_0_c_0_1_3-0_2.33-1_0.97-2_0.03-3_0.16\", \"204_l_0_c_0_2_3-0_0.12-1_0.0-2_2.7-3_0.77\", \"205_l_0_c_1_2_3-0_1.48-1_0.09-2_0.31-3_0.04\", \"206_l_0_c_0_1_2-0_1.15-1_0.42-2_0.23-3_0.03\", \"207_l_0_c_0_1_3-0_0.58-1_0.03-2_0.42-3_0.91\", \"208_l_0_c_0_2_3-0_0.28-1_0.1-2_0.57-3_0.67\", \"209_l_0_c_1_2_3-0_0.9-1_0.31-2_0.71-3_0.99\", \"210_l_0_c_0_1_2-0_0.5-1_0.4-2_0.07-3_0.66\", \"211_l_0_c_0_1_3-0_1.07-1_0.42-2_0.12-3_1.5\", \"212_l_0_c_0_2_3-0_0.67-1_0.0-2_0.73-3_0.15\", \"213_l_0_c_1_2_3-0_0.12-1_0.61-2_0.29-3_1.08\", \"214_l_0_c_0_1_2-0_0.5-1_0.87-2_1.62-3_0.17\", \"215_l_0_c_0_1_3-0_0.04-1_0.21-2_0.34-3_1.09\", \"216_l_0_c_0_2_3-0_0.07-1_0.09-2_1.18-3_0.13\", \"217_l_0_c_1_2_3-0_0.4-1_1.25-2_0.61-3_1.28\", \"218_l_0_c_0_1_2-0_0.54-1_0.84-2_0.73-3_0.02\", \"219_l_0_c_0_1_3-0_0.65-1_1.4-2_0.42-3_0.96\", \"220_l_0_c_0_2_3-0_1.47-1_0.02-2_0.06-3_0.47\", \"221_l_0_c_1_2_3-0_1.14-1_0.21-2_0.41-3_0.34\", \"222_l_0_c_0_1_2-0_0.02-1_0.2-2_0.76-3_0.11\", \"223_l_0_c_0_1_3-0_0.73-1_0.45-2_0.04-3_0.54\", \"224_l_0_c_0_2_3-0_0.04-1_0.21-2_1.64-3_0.35\", \"225_l_0_c_1_2_3-0_0.24-1_0.28-2_1.16-3_0.01\", \"226_l_0_c_0_1_2-0_0.09-1_0.19-2_0.75-3_0.98\", \"227_l_0_c_0_1_3-0_0.5-1_0.47-2_0.15-3_0.21\", \"228_l_0_c_0_2_3-0_0.98-1_0.13-2_0.45-3_0.22\", \"229_l_0_c_1_2_3-0_0.5-1_0.03-2_0.19-3_0.71\", \"230_l_0_c_0_1_2-0_0.39-1_0.04-2_1.28-3_1.12\", \"231_l_0_c_0_1_3-0_0.54-1_1.35-2_0.18-3_0.37\", \"232_l_0_c_0_2_3-0_0.62-1_0.53-2_1.59-3_0.61\", \"233_l_0_c_1_2_3-0_1.43-1_1.5-2_0.97-3_0.15\", \"234_l_0_c_0_1_2-0_0.2-1_0.03-2_0.34-3_2.92\", \"235_l_0_c_0_1_3-0_0.2-1_0.88-2_0.01-3_1.05\", \"236_l_0_c_0_2_3-0_1.07-1_0.44-2_0.1-3_0.54\", \"237_l_0_c_1_2_3-0_2.12-1_0.02-2_0.35-3_0.28\", \"238_l_0_c_0_1_2-0_1.17-1_0.81-2_0.51-3_0.79\", \"239_l_0_c_0_1_3-0_0.41-1_1.64-2_0.05-3_0.61\", \"240_l_0_c_0_2_3-0_0.13-1_0.21-2_0.33-3_0.27\", \"241_l_0_c_1_2_3-0_0.34-1_2.19-2_0.24-3_1.46\", \"242_l_0_c_0_1_2-0_0.12-1_0.33-2_0.06-3_0.3\", \"243_l_0_c_0_1_3-0_0.75-1_0.86-2_0.47-3_0.26\", \"244_l_0_c_0_2_3-0_0.56-1_0.2-2_0.13-3_0.65\", \"245_l_0_c_1_2_3-0_1.99-1_0.32-2_0.2-3_0.2\", \"246_l_0_c_0_1_2-0_0.11-1_0.36-2_0.08-3_0.34\", \"247_l_0_c_0_1_3-0_0.09-1_1.41-2_0.27-3_0.24\", \"248_l_0_c_0_2_3-0_0.17-1_0.45-2_0.48-3_0.06\", \"249_l_0_c_1_2_3-0_1.14-1_0.8-2_0.86-3_0.91\", \"250_l_0_c_0_1_2-0_0.29-1_0.65-2_0.57-3_1.26\", \"251_l_0_c_0_1_3-0_0.14-1_0.09-2_0.0-3_0.22\", \"252_l_0_c_0_2_3-0_0.99-1_0.05-2_0.62-3_0.63\", \"253_l_0_c_1_2_3-0_0.62-1_0.59-2_1.56-3_0.29\", \"254_l_0_c_0_1_2-0_0.32-1_0.96-2_0.2-3_0.33\", \"255_l_0_c_0_1_3-0_0.85-1_2.17-2_0.15-3_0.82\", \"256_l_0_c_0_2_3-0_0.93-1_0.08-2_0.33-3_1.44\", \"257_l_0_c_1_2_3-0_0.8-1_0.21-2_0.69-3_0.07\", \"258_l_0_c_0_1_2-0_0.41-1_1.63-2_0.11-3_0.71\", \"259_l_0_c_0_1_3-0_0.08-1_0.58-2_0.06-3_0.03\", \"260_l_0_c_0_2_3-0_0.7-1_0.33-2_0.21-3_0.14\", \"261_l_0_c_1_2_3-0_0.42-1_0.04-2_0.07-3_0.52\", \"262_l_0_c_0_1_2-0_1.92-1_1.55-2_0.71-3_0.32\", \"263_l_0_c_0_1_3-0_0.1-1_1.02-2_0.03-3_0.27\", \"264_l_0_c_0_2_3-0_1.06-1_0.0-2_0.03-3_1.53\", \"265_l_0_c_1_2_3-0_0.29-1_0.16-2_0.71-3_0.28\", \"266_l_0_c_0_1_2-0_0.68-1_0.79-2_0.03-3_0.28\", \"267_l_0_c_0_1_3-0_0.8-1_0.07-2_0.02-3_1.27\", \"268_l_0_c_0_2_3-0_0.19-1_0.02-2_0.02-3_1.22\", \"269_l_0_c_1_2_3-0_0.74-1_0.27-2_0.15-3_0.1\", \"270_l_0_c_0_1_2-0_1.19-1_0.32-2_0.27-3_2.91\", \"271_l_0_c_0_1_3-0_0.57-1_0.95-2_0.0-3_0.42\", \"272_l_0_c_0_2_3-0_0.8-1_0.05-2_0.01-3_0.07\", \"273_l_0_c_1_2_3-0_1.12-1_0.67-2_0.25-3_0.71\", \"274_l_0_c_0_1_2-0_0.41-1_1.62-2_0.2-3_0.33\", \"275_l_0_c_0_1_3-0_0.03-1_1.64-2_0.11-3_0.36\", \"276_l_0_c_0_2_3-0_0.08-1_0.03-2_0.88-3_0.72\", \"277_l_0_c_1_2_3-0_0.26-1_0.53-2_0.86-3_0.24\", \"278_l_0_c_0_1_2-0_0.33-1_0.27-2_0.03-3_1.37\", \"279_l_0_c_0_1_3-0_0.54-1_0.33-2_0.04-3_0.02\", \"280_l_0_c_0_2_3-0_0.02-1_0.16-2_0.1-3_0.26\", \"281_l_0_c_1_2_3-0_0.25-1_0.61-2_1.11-3_0.87\", \"282_l_0_c_0_1_2-0_0.93-1_0.81-2_0.65-3_0.53\", \"283_l_0_c_0_1_3-0_0.01-1_1.45-2_0.22-3_0.37\", \"284_l_0_c_0_2_3-0_0.4-1_0.24-2_0.76-3_0.36\", \"285_l_0_c_1_2_3-0_0.23-1_0.3-2_0.24-3_0.17\", \"286_l_0_c_0_1_2-0_0.08-1_0.51-2_0.26-3_0.01\", \"287_l_0_c_0_1_3-0_1.0-1_0.45-2_0.24-3_0.01\", \"288_l_0_c_0_2_3-0_1.7-1_0.06-2_0.42-3_0.1\", \"289_l_0_c_1_2_3-0_0.04-1_0.29-2_0.44-3_0.89\", \"290_l_0_c_0_1_2-0_1.22-1_0.8-2_0.19-3_1.34\", \"291_l_0_c_0_1_3-0_0.37-1_0.18-2_0.0-3_0.21\", \"292_l_0_c_0_2_3-0_0.19-1_0.07-2_0.69-3_0.52\", \"293_l_0_c_1_2_3-0_0.08-1_1.06-2_0.66-3_0.18\", \"294_l_0_c_0_1_2-0_0.42-1_0.59-2_0.54-3_0.64\", \"295_l_0_c_0_1_3-0_0.02-1_1.21-2_0.24-3_0.14\", \"296_l_0_c_0_2_3-0_0.7-1_0.16-2_0.01-3_0.05\", \"297_l_0_c_1_2_3-0_1.26-1_1.38-2_0.54-3_0.11\", \"298_l_0_c_0_1_2-0_0.5-1_1.73-2_0.77-3_0.27\", \"299_l_0_c_0_1_3-0_0.35-1_0.17-2_0.12-3_0.26\", \"300_l_0_c_0_2_3-0_1.88-1_0.01-2_0.15-3_0.36\", \"301_l_0_c_1_2_3-0_1.19-1_0.75-2_0.32-3_0.24\", \"302_l_0_c_0_1_2-0_1.03-1_0.57-2_0.27-3_1.16\", \"303_l_0_c_0_1_3-0_0.95-1_0.15-2_0.23-3_0.39\", \"304_l_0_c_0_2_3-0_0.49-1_0.1-2_1.35-3_0.5\", \"305_l_0_c_1_2_3-0_0.17-1_0.79-2_1.12-3_0.76\", \"306_l_0_c_0_1_2-0_0.39-1_0.49-2_1.38-3_0.59\", \"307_l_0_c_0_1_3-0_0.37-1_0.11-2_0.37-3_2.06\", \"308_l_0_c_0_2_3-0_0.7-1_0.03-2_0.27-3_1.07\", \"309_l_0_c_1_2_3-0_0.37-1_0.28-2_0.45-3_0.31\", \"310_l_0_c_0_1_2-0_1.05-1_0.85-2_0.1-3_1.13\", \"311_l_0_c_0_1_3-0_0.52-1_0.52-2_0.07-3_0.6\", \"312_l_0_c_0_2_3-0_0.45-1_0.57-2_0.81-3_0.1\", \"313_l_0_c_1_2_3-0_0.2-1_0.29-2_0.6-3_0.1\", \"314_l_0_c_0_1_2-0_0.56-1_0.12-2_0.17-3_1.17\", \"315_l_0_c_0_1_3-0_0.87-1_1.42-2_0.56-3_0.54\", \"316_l_0_c_0_2_3-0_0.42-1_0.18-2_0.06-3_0.21\", \"317_l_0_c_1_2_3-0_1.41-1_0.45-2_0.43-3_0.52\", \"318_l_0_c_0_1_2-0_0.34-1_0.39-2_0.55-3_0.14\", \"319_l_0_c_0_1_3-0_0.08-1_0.15-2_0.04-3_1.11\", \"320_l_0_c_0_2_3-0_0.48-1_0.0-2_0.73-3_0.07\", \"321_l_0_c_1_2_3-0_0.83-1_0.35-2_0.24-3_1.44\", \"322_l_0_c_0_1_2-0_0.55-1_0.22-2_1.33-3_0.45\", \"323_l_0_c_0_1_3-0_1.75-1_0.01-2_0.1-3_0.54\", \"324_l_0_c_0_2_3-0_0.17-1_0.05-2_0.19-3_1.14\", \"325_l_0_c_1_2_3-0_0.51-1_0.77-2_0.74-3_0.12\", \"326_l_0_c_0_1_2-0_0.42-1_0.67-2_0.01-3_0.33\", \"327_l_0_c_0_1_3-0_1.23-1_0.65-2_0.09-3_0.25\", \"328_l_0_c_0_2_3-0_0.16-1_0.05-2_0.73-3_0.51\", \"329_l_0_c_1_2_3-0_0.01-1_0.47-2_0.24-3_1.68\", \"330_l_0_c_0_1_2-0_0.14-1_0.48-2_0.21-3_0.24\", \"331_l_0_c_0_1_3-0_1.01-1_0.01-2_0.47-3_0.38\", \"332_l_0_c_0_2_3-0_0.59-1_0.13-2_0.94-3_0.17\", \"333_l_0_c_1_2_3-0_0.75-1_0.05-2_0.95-3_0.17\", \"334_l_0_c_0_1_2-0_0.66-1_0.71-2_0.15-3_0.8\", \"335_l_0_c_0_1_3-0_0.64-1_0.97-2_0.22-3_0.04\", \"336_l_0_c_0_2_3-0_0.43-1_0.03-2_0.55-3_0.38\", \"337_l_0_c_1_2_3-0_0.89-1_0.45-2_0.37-3_0.96\", \"338_l_0_c_0_1_2-0_0.71-1_0.6-2_0.43-3_1.02\", \"339_l_0_c_0_1_3-0_1.01-1_0.03-2_0.07-3_0.25\", \"340_l_0_c_0_2_3-0_0.36-1_0.2-2_0.6-3_0.12\", \"341_l_0_c_1_2_3-0_1.41-1_0.21-2_1.73-3_0.31\", \"342_l_0_c_0_1_2-0_0.83-1_0.47-2_0.45-3_0.57\", \"343_l_0_c_0_1_3-0_0.21-1_0.05-2_0.02-3_0.41\", \"344_l_0_c_0_2_3-0_0.03-1_0.13-2_0.87-3_0.0\", \"345_l_0_c_1_2_3-0_1.3-1_0.05-2_0.05-3_0.03\", \"346_l_0_c_0_1_2-0_0.18-1_0.63-2_0.8-3_1.07\", \"347_l_0_c_0_1_3-0_0.42-1_1.61-2_0.15-3_0.28\", \"348_l_0_c_0_2_3-0_0.37-1_0.2-2_0.67-3_0.46\", \"349_l_0_c_1_2_3-0_1.21-1_0.57-2_0.75-3_0.94\", \"350_l_0_c_0_1_2-0_0.42-1_0.43-2_0.08-3_0.78\", \"351_l_0_c_0_1_3-0_0.09-1_0.26-2_0.57-3_0.6\", \"352_l_0_c_0_2_3-0_0.41-1_0.18-2_0.02-3_1.65\", \"353_l_0_c_1_2_3-0_0.83-1_1.08-2_0.41-3_0.78\", \"354_l_0_c_0_1_2-0_0.53-1_0.11-2_0.03-3_0.95\", \"355_l_0_c_0_1_3-0_1.04-1_0.06-2_0.07-3_0.74\", \"356_l_0_c_0_2_3-0_0.82-1_0.25-2_0.51-3_1.48\", \"357_l_0_c_1_2_3-0_0.28-1_0.97-2_0.33-3_0.22\", \"358_l_0_c_0_1_2-0_0.96-1_0.21-2_0.55-3_0.51\", \"359_l_0_c_0_1_3-0_0.29-1_0.85-2_0.0-3_0.01\", \"360_l_0_c_0_2_3-0_0.37-1_0.0-2_0.27-3_0.11\", \"361_l_0_c_1_2_3-0_1.1-1_1.42-2_1.57-3_0.75\", \"362_l_0_c_0_1_2-0_0.1-1_0.1-2_0.19-3_0.72\", \"363_l_0_c_0_1_3-0_0.54-1_0.21-2_0.27-3_0.47\", \"364_l_0_c_0_2_3-0_0.0-1_0.18-2_0.99-3_0.57\", \"365_l_0_c_1_2_3-0_1.2-1_0.0-2_0.46-3_0.22\", \"366_l_0_c_0_1_2-0_0.04-1_0.79-2_0.58-3_2.26\", \"367_l_0_c_0_1_3-0_0.69-1_0.46-2_0.21-3_0.63\", \"368_l_0_c_0_2_3-0_0.84-1_0.25-2_0.01-3_1.58\", \"369_l_0_c_1_2_3-0_0.79-1_1.57-2_1.02-3_0.12\", \"370_l_0_c_0_1_2-0_1.37-1_0.08-2_0.38-3_0.02\", \"371_l_0_c_0_1_3-0_0.66-1_0.1-2_0.07-3_0.3\", \"372_l_0_c_0_2_3-0_0.04-1_0.01-2_0.83-3_0.49\", \"373_l_0_c_1_2_3-0_0.04-1_0.32-2_0.52-3_0.0\", \"374_l_0_c_0_1_2-0_0.17-1_1.52-2_1.11-3_0.93\", \"375_l_0_c_0_1_3-0_0.62-1_0.14-2_0.28-3_1.31\", \"376_l_0_c_0_2_3-0_0.05-1_0.34-2_0.67-3_1.07\", \"377_l_0_c_1_2_3-0_0.3-1_1.49-2_0.12-3_0.36\", \"378_l_0_c_0_1_2-0_0.96-1_0.08-2_1.15-3_0.16\", \"379_l_0_c_0_1_3-0_0.03-1_0.4-2_0.16-3_0.77\", \"380_l_0_c_0_2_3-0_0.88-1_0.03-2_0.54-3_0.18\", \"381_l_0_c_1_2_3-0_0.77-1_0.88-2_0.54-3_0.06\", \"382_l_0_c_0_1_2-0_0.27-1_0.49-2_0.58-3_0.33\", \"383_l_0_c_0_1_3-0_0.6-1_1.38-2_0.1-3_0.92\", \"384_l_0_c_0_2_3-0_0.01-1_0.12-2_0.47-3_0.42\", \"385_l_0_c_1_2_3-0_1.66-1_0.87-2_0.92-3_0.85\", \"386_l_0_c_0_1_2-0_0.25-1_0.02-2_0.35-3_1.3\", \"387_l_0_c_0_1_3-0_0.37-1_0.38-2_0.03-3_0.59\", \"388_l_0_c_0_2_3-0_0.31-1_0.01-2_0.2-3_0.06\", \"389_l_0_c_1_2_3-0_0.17-1_0.93-2_0.35-3_0.41\", \"390_l_0_c_0_1_2-0_1.91-1_0.61-2_0.7-3_0.0\", \"391_l_0_c_0_1_3-0_0.24-1_0.06-2_0.09-3_0.05\", \"392_l_0_c_0_2_3-0_0.16-1_0.03-2_0.09-3_0.36\", \"393_l_0_c_1_2_3-0_1.09-1_0.77-2_1.63-3_1.27\", \"394_l_0_c_0_1_2-0_0.14-1_0.11-2_0.28-3_0.78\", \"395_l_0_c_0_1_3-0_0.94-1_0.86-2_0.01-3_0.19\", \"396_l_0_c_0_2_3-0_0.27-1_0.08-2_0.67-3_0.05\", \"397_l_0_c_1_2_3-0_1.17-1_0.45-2_0.83-3_1.08\", \"398_l_0_c_0_1_2-0_0.41-1_0.24-2_0.81-3_1.91\", \"399_l_0_c_3-0_0.41-1_0.26-2_0.35-3_0.71\", \"400_l_0_r-0_0.43-1_0.04-2_0.59-3_0.83\", \"401_l_0_r-0_1.43-1_0.01-2_0.46-3_0.06\", \"402_l_0_r-0_0.78-1_0.36-2_0.11-3_0.63\", \"403_l_0_r-0_0.89-1_0.11-2_0.0-3_0.61\", \"404_l_0_r-0_1.52-1_0.16-2_0.04-3_1.25\", \"405_l_0_r-0_0.0-1_0.05-2_0.23-3_0.48\", \"406_l_0_r-0_1.03-1_0.04-2_0.01-3_1.2\", \"407_l_0_r-0_0.63-1_0.27-2_0.04-3_0.47\", \"408_l_0_r-0_0.12-1_0.23-2_0.0-3_1.16\", \"409_l_0_r-0_1.4-1_0.15-2_0.32-3_0.87\", \"410_l_0_r-0_0.25-1_0.21-2_0.12-3_1.27\", \"411_l_0_r-0_0.1-1_0.07-2_0.28-3_1.17\", \"412_l_0_r-0_0.01-1_0.1-2_0.06-3_2.13\", \"413_l_0_r-0_0.58-1_0.15-2_0.1-3_0.14\", \"414_l_0_r-0_1.17-1_0.07-2_0.32-3_0.67\", \"415_l_0_r-0_0.33-1_0.14-2_0.16-3_0.79\", \"416_l_0_r-0_0.15-1_0.03-2_0.02-3_0.65\", \"417_l_0_r-0_0.26-1_0.02-2_0.27-3_0.76\", \"418_l_0_r-0_0.76-1_0.12-2_0.01-3_2.09\", \"419_l_0_r-0_0.62-1_0.17-2_0.04-3_0.15\", \"420_l_0_r-0_1.9-1_0.36-2_0.24-3_1.36\", \"421_l_0_r-0_0.54-1_0.04-2_0.07-3_0.0\", \"422_l_0_r-0_1.29-1_0.71-2_0.43-3_0.64\", \"423_l_0_r-0_0.16-1_0.19-2_0.07-3_1.77\", \"424_l_0_r-0_0.97-1_0.17-2_0.11-3_0.38\", \"425_l_0_r-0_0.19-1_0.2-2_0.01-3_1.43\", \"426_l_0_r-0_0.15-1_0.18-2_0.19-3_2.21\", \"427_l_0_r-0_0.79-1_0.07-2_0.15-3_2.13\", \"428_l_0_r-0_0.91-1_0.59-2_0.15-3_1.07\", \"429_l_0_r-0_1.36-1_0.0-2_0.22-3_0.42\", \"430_l_0_r-0_0.25-1_0.01-2_0.05-3_0.51\", \"431_l_0_r-0_1.29-1_0.02-2_0.0-3_0.26\", \"432_l_0_r-0_1.09-1_0.0-2_0.05-3_0.01\", \"433_l_0_r-0_0.0-1_0.23-2_0.01-3_0.02\", \"434_l_0_r-0_1.61-1_0.01-2_0.21-3_1.94\", \"435_l_0_r-0_0.5-1_0.16-2_0.01-3_1.22\", \"436_l_0_r-0_0.19-1_0.04-2_0.04-3_1.15\", \"437_l_0_r-0_1.12-1_0.22-2_0.05-3_0.29\", \"438_l_0_r-0_0.7-1_0.01-2_0.1-3_0.21\", \"439_l_0_r-0_1.87-1_0.0-2_0.29-3_0.19\", \"440_l_0_r-0_0.88-1_0.25-2_0.04-3_1.33\", \"441_l_0_r-0_0.27-1_0.17-2_0.39-3_1.46\", \"442_l_0_r-0_1.66-1_0.02-2_0.3-3_0.96\", \"443_l_0_r-0_0.28-1_0.01-2_0.01-3_1.64\", \"444_l_0_r-0_2.76-1_0.06-2_0.04-3_0.52\", \"445_l_0_r-0_0.13-1_0.1-2_0.0-3_0.35\", \"446_l_0_r-0_0.31-1_0.28-2_0.35-3_0.77\", \"447_l_0_r-0_0.48-1_0.02-2_0.25-3_0.45\", \"448_l_0_r-0_0.77-1_0.06-2_0.02-3_0.49\", \"449_l_0_r-0_2.3-1_0.37-2_0.14-3_0.82\", \"450_l_0_r-0_0.28-1_0.26-2_0.11-3_1.25\", \"451_l_0_r-0_0.07-1_0.02-2_0.11-3_1.75\", \"452_l_0_r-0_0.74-1_0.04-2_0.29-3_0.75\", \"453_l_0_r-0_2.61-1_0.19-2_0.09-3_1.02\", \"454_l_0_r-0_0.73-1_0.03-2_0.17-3_0.55\", \"455_l_0_r-0_2.01-1_0.18-2_0.27-3_0.13\", \"456_l_0_r-0_1.77-1_0.02-2_0.18-3_0.93\", \"457_l_0_r-0_0.83-1_0.11-2_0.48-3_0.8\", \"458_l_0_r-0_0.52-1_0.05-2_0.36-3_0.56\", \"459_l_0_r-0_0.53-1_0.41-2_0.06-3_0.49\", \"460_l_0_r-0_0.83-1_0.43-2_0.26-3_1.05\", \"461_l_0_r-0_0.06-1_0.12-2_0.03-3_1.44\", \"462_l_0_r-0_0.34-1_0.0-2_0.34-3_2.22\", \"463_l_0_r-0_1.34-1_0.03-2_0.02-3_0.31\", \"464_l_0_r-0_1.77-1_0.34-2_0.26-3_0.85\", \"465_l_0_r-0_0.66-1_0.07-2_0.12-3_0.77\", \"466_l_0_r-0_0.49-1_0.01-2_0.12-3_0.24\", \"467_l_0_r-0_0.8-1_0.18-2_0.02-3_0.09\", \"468_l_0_r-0_0.27-1_0.14-2_0.13-3_0.22\", \"469_l_0_r-0_0.29-1_0.0-2_0.14-3_1.01\", \"470_l_0_r-0_0.07-1_0.45-2_0.15-3_0.3\", \"471_l_0_r-0_0.06-1_0.2-2_0.24-3_1.57\", \"472_l_0_r-0_0.42-1_0.02-2_0.01-3_1.08\", \"473_l_0_r-0_0.47-1_0.62-2_0.43-3_1.78\", \"474_l_0_r-0_0.71-1_0.11-2_0.06-3_1.44\", \"475_l_0_r-0_0.33-1_0.08-2_0.15-3_1.09\", \"476_l_0_r-0_1.4-1_0.04-2_0.04-3_0.96\", \"477_l_0_r-0_0.1-1_0.0-2_0.32-3_1.71\", \"478_l_0_r-0_2.1-1_0.01-2_0.08-3_0.99\", \"479_l_0_r-0_0.43-1_0.24-2_0.09-3_0.14\", \"480_l_0_r-0_0.12-1_0.01-2_0.1-3_0.7\", \"481_l_0_r-0_0.44-1_0.16-2_0.24-3_1.13\", \"482_l_0_r-0_0.49-1_0.23-2_0.03-3_1.56\", \"483_l_0_r-0_0.7-1_0.27-2_0.2-3_0.23\", \"484_l_0_r-0_1.57-1_0.02-2_0.5-3_0.65\", \"485_l_0_r-0_1.49-1_0.09-2_0.42-3_0.39\", \"486_l_0_r-0_0.66-1_0.34-2_0.17-3_0.64\", \"487_l_0_r-0_1.15-1_0.03-2_0.01-3_0.2\", \"488_l_0_r-0_0.57-1_0.16-2_0.6-3_1.51\", \"489_l_0_r-0_0.08-1_0.37-2_0.25-3_0.1\", \"490_l_0_r-0_0.3-1_0.6-2_0.33-3_0.15\", \"491_l_0_r-0_0.58-1_0.22-2_0.14-3_0.79\", \"492_l_0_r-0_2.17-1_0.19-2_0.02-3_0.35\", \"493_l_0_r-0_1.18-1_0.1-2_0.04-3_0.46\", \"494_l_0_r-0_0.77-1_0.12-2_0.33-3_0.8\", \"495_l_0_r-0_2.36-1_0.06-2_0.18-3_0.96\", \"496_l_0_r-0_0.43-1_0.21-2_0.05-3_0.13\", \"497_l_0_r-0_0.8-1_0.0-2_0.12-3_0.56\", \"498_l_0_r-0_0.44-1_0.05-2_0.04-3_2.41\", \"499_l_0_r-0_1.18-1_0.05-2_0.02-3_0.42\", \"500_l_0_r-0_0.77-1_0.12-2_0.01-3_0.85\", \"501_l_0_r-0_0.91-1_0.01-2_0.28-3_1.76\", \"502_l_0_r-0_0.48-1_0.01-2_0.2-3_1.78\", \"503_l_0_r-0_0.9-1_0.21-2_0.01-3_0.87\", \"504_l_0_r-0_1.54-1_0.54-2_0.01-3_1.02\", \"505_l_0_r-0_2.02-1_0.15-2_0.47-3_0.59\", \"506_l_0_r-0_1.1-1_0.08-2_0.04-3_0.5\", \"507_l_0_r-0_0.34-1_0.01-2_0.05-3_1.4\", \"508_l_0_r-0_0.15-1_0.04-2_0.28-3_2.15\", \"509_l_0_r-0_1.53-1_0.14-2_0.14-3_0.48\", \"510_l_0_r-0_0.58-1_0.05-2_0.16-3_0.68\", \"511_l_0_r-0_1.27-1_0.03-2_0.13-3_0.6\", \"512_l_0_r-0_0.1-1_0.17-2_0.25-3_0.27\", \"513_l_0_r-0_0.48-1_0.09-2_0.02-3_1.2\", \"514_l_0_r-0_0.26-1_0.28-2_0.0-3_0.38\", \"515_l_0_r-0_0.29-1_0.14-2_0.03-3_0.27\", \"516_l_0_r-0_0.21-1_0.33-2_0.55-3_0.47\", \"517_l_0_r-0_0.2-1_0.09-2_0.0-3_1.09\", \"518_l_0_r-0_0.16-1_0.06-2_0.42-3_0.79\", \"519_l_0_r-0_0.03-1_0.13-2_0.26-3_0.91\", \"520_l_0_r-0_1.42-1_0.2-2_0.04-3_0.21\", \"521_l_0_r-0_0.8-1_0.06-2_0.05-3_0.92\", \"522_l_0_r-0_1.38-1_0.19-2_0.48-3_0.1\", \"523_l_0_r-0_1.14-1_0.09-2_0.27-3_1.25\", \"524_l_0_r-0_0.13-1_0.12-2_0.48-3_0.59\", \"525_l_0_r-0_1.32-1_0.17-2_0.07-3_0.59\", \"526_l_0_r-0_0.46-1_0.07-2_0.48-3_0.88\", \"527_l_0_r-0_0.61-1_0.11-2_0.05-3_0.63\", \"528_l_0_r-0_1.15-1_0.07-2_0.15-3_0.51\", \"529_l_0_r-0_1.32-1_0.0-2_0.08-3_1.46\", \"530_l_0_r-0_0.64-1_0.07-2_0.0-3_1.32\", \"531_l_0_r-0_0.48-1_0.22-2_0.01-3_0.58\", \"532_l_0_r-0_0.31-1_0.09-2_0.5-3_1.35\", \"533_l_0_r-0_0.15-1_0.13-2_0.18-3_0.37\", \"534_l_0_r-0_0.74-1_0.03-2_0.04-3_0.98\", \"535_l_0_r-0_0.39-1_0.09-2_0.03-3_0.48\", \"536_l_0_r-0_2.05-1_0.05-2_0.4-3_0.95\", \"537_l_0_r-0_0.41-1_0.12-2_0.01-3_0.03\", \"538_l_0_r-0_2.52-1_0.27-2_0.35-3_0.55\", \"539_l_0_r-0_1.02-1_0.29-2_0.02-3_0.01\", \"540_l_0_r-0_0.03-1_0.13-2_0.03-3_0.62\", \"541_l_0_r-0_0.86-1_0.25-2_0.26-3_0.77\", \"542_l_0_r-0_0.65-1_0.09-2_0.19-3_1.21\", \"543_l_0_r-0_0.51-1_0.02-2_0.01-3_1.02\", \"544_l_0_r-0_0.56-1_0.0-2_0.19-3_0.88\", \"545_l_0_r-0_0.04-1_0.37-2_0.14-3_2.44\", \"546_l_0_r-0_1.36-1_0.34-2_0.0-3_0.24\", \"547_l_0_r-0_0.02-1_0.05-2_0.05-3_0.63\", \"548_l_0_r-0_1.78-1_0.49-2_0.04-3_0.86\", \"549_l_0_r-0_0.05-1_0.15-2_0.2-3_0.35\", \"550_l_0_r-0_0.1-1_0.06-2_0.35-3_0.56\", \"551_l_0_r-0_0.68-1_0.05-2_0.21-3_0.69\", \"552_l_0_r-0_2.65-1_0.01-2_0.24-3_0.52\", \"553_l_0_r-0_1.46-1_0.17-2_0.33-3_0.28\", \"554_l_0_r-0_0.58-1_0.04-2_0.06-3_0.91\", \"555_l_0_r-0_0.06-1_0.74-2_0.23-3_0.89\", \"556_l_0_r-0_2.18-1_0.02-2_0.02-3_0.37\", \"557_l_0_r-0_0.84-1_0.01-2_0.06-3_0.24\", \"558_l_0_r-0_1.43-1_0.0-2_0.26-3_1.7\", \"559_l_0_r-0_0.96-1_0.04-2_0.07-3_0.99\", \"560_l_0_r-0_0.84-1_0.12-2_0.32-3_1.56\", \"561_l_0_r-0_0.33-1_0.12-2_0.22-3_0.21\", \"562_l_0_r-0_0.27-1_0.0-2_0.03-3_0.17\", \"563_l_0_r-0_1.2-1_0.5-2_0.08-3_0.58\", \"564_l_0_r-0_0.6-1_0.12-2_0.16-3_0.16\", \"565_l_0_r-0_1.14-1_0.12-2_0.45-3_0.01\", \"566_l_0_r-0_1.76-1_0.03-2_0.05-3_0.48\", \"567_l_0_r-0_1.62-1_0.51-2_0.03-3_0.24\", \"568_l_0_r-0_1.83-1_0.12-2_0.1-3_0.69\", \"569_l_0_r-0_1.72-1_0.28-2_0.5-3_0.24\", \"570_l_0_r-0_1.25-1_0.41-2_0.23-3_0.21\", \"571_l_0_r-0_1.12-1_0.07-2_0.33-3_1.09\", \"572_l_0_r-0_1.09-1_0.08-2_0.0-3_0.11\", \"573_l_0_r-0_1.5-1_0.03-2_0.0-3_0.02\", \"574_l_0_r-0_1.36-1_0.05-2_0.11-3_0.34\", \"575_l_0_r-0_0.27-1_0.52-2_0.03-3_1.53\", \"576_l_0_r-0_1.36-1_0.26-2_0.0-3_0.26\", \"577_l_0_r-0_1.25-1_0.2-2_0.33-3_0.13\", \"578_l_0_r-0_0.6-1_0.03-2_0.39-3_0.42\", \"579_l_0_r-0_0.7-1_0.2-2_0.1-3_0.7\", \"580_l_0_r-0_1.57-1_0.01-2_0.26-3_0.36\", \"581_l_0_r-0_1.6-1_0.03-2_0.12-3_0.18\", \"582_l_0_r-0_0.14-1_0.07-2_0.15-3_0.22\", \"583_l_0_r-0_0.59-1_0.25-2_0.26-3_0.32\", \"584_l_0_r-0_2.37-1_0.12-2_0.44-3_0.13\", \"585_l_0_r-0_1.26-1_0.06-2_0.09-3_0.95\", \"586_l_0_r-0_0.74-1_0.05-2_0.06-3_0.77\", \"587_l_0_r-0_0.92-1_0.09-2_0.15-3_0.06\", \"588_l_0_r-0_0.92-1_0.12-2_0.11-3_1.05\", \"589_l_0_r-0_0.45-1_0.24-2_0.13-3_0.9\", \"590_l_0_r-0_0.81-1_0.06-2_0.05-3_1.02\", \"591_l_0_r-0_0.58-1_0.05-2_0.04-3_1.23\", \"592_l_0_r-0_0.18-1_0.02-2_0.21-3_0.71\", \"593_l_0_r-0_0.58-1_0.11-2_0.16-3_0.1\", \"594_l_0_r-0_1.07-1_0.11-2_0.24-3_1.11\", \"595_l_0_r-0_0.21-1_0.11-2_0.02-3_0.86\", \"596_l_0_r-0_0.18-1_0.14-2_0.03-3_0.25\", \"597_l_0_r-0_0.96-1_0.3-2_0.07-3_0.54\", \"598_l_0_r-0_0.36-1_0.15-2_0.05-3_0.21\", \"599_l_0_r-0_0.1-1_0.08-2_0.19-3_4.1\", \"600_l_0_r-0_0.16-1_0.14-2_0.06-3_0.54\", \"601_l_0_r-0_0.26-1_0.15-2_0.03-3_2.41\", \"602_l_0_r-0_0.26-1_0.01-2_0.14-3_0.37\", \"603_l_0_r-0_0.02-1_0.07-2_0.22-3_0.63\", \"604_l_0_r-0_0.74-1_0.1-2_0.02-3_2.15\", \"605_l_0_r-0_0.95-1_0.05-2_0.2-3_0.61\", \"606_l_0_r-0_0.6-1_0.03-2_0.06-3_0.71\", \"607_l_0_r-0_0.52-1_0.1-2_0.47-3_1.23\", \"608_l_0_r-0_0.31-1_0.0-2_0.2-3_0.55\", \"609_l_0_r-0_1.17-1_0.03-2_0.13-3_0.83\", \"610_l_0_r-0_0.04-1_0.0-2_0.01-3_1.4\", \"611_l_0_r-0_0.32-1_0.12-2_0.07-3_0.68\", \"612_l_0_r-0_0.58-1_0.12-2_0.02-3_2.95\", \"613_l_0_r-0_0.74-1_0.04-2_0.14-3_1.0\", \"614_l_0_r-0_1.31-1_0.11-2_0.15-3_0.18\", \"615_l_0_r-0_0.52-1_0.01-2_0.03-3_0.48\", \"616_l_0_r-0_1.5-1_0.02-2_0.36-3_1.16\", \"617_l_0_r-0_0.53-1_0.26-2_0.07-3_0.66\", \"618_l_0_r-0_1.99-1_0.28-2_0.2-3_1.68\", \"619_l_0_r-0_1.75-1_0.44-2_0.05-3_1.6\", \"620_l_0_r-0_0.03-1_0.01-2_0.07-3_0.35\", \"621_l_0_r-0_0.45-1_0.01-2_0.52-3_0.77\", \"622_l_0_r-0_1.4-1_0.0-2_0.24-3_0.86\", \"623_l_0_r-0_0.45-1_0.1-2_0.22-3_0.54\", \"624_l_0_r-0_1.03-1_0.39-2_0.34-3_0.26\", \"625_l_0_r-0_1.2-1_0.58-2_0.17-3_1.09\", \"626_l_0_r-0_0.37-1_0.06-2_0.2-3_0.49\", \"627_l_0_r-0_1.48-1_0.01-2_0.22-3_1.12\", \"628_l_0_r-0_0.14-1_0.01-2_0.37-3_1.29\", \"629_l_0_r-0_0.38-1_0.16-2_0.0-3_1.28\", \"630_l_0_r-0_0.21-1_0.04-2_0.25-3_0.88\", \"631_l_0_r-0_0.96-1_0.23-2_0.01-3_0.55\", \"632_l_0_r-0_1.47-1_0.01-2_0.03-3_2.04\", \"633_l_0_r-0_0.04-1_0.02-2_0.1-3_2.03\", \"634_l_0_r-0_1.05-1_0.04-2_0.03-3_1.21\", \"635_l_0_r-0_0.81-1_0.04-2_0.18-3_0.73\", \"636_l_0_r-0_0.32-1_0.03-2_0.15-3_0.81\", \"637_l_0_r-0_0.8-1_0.28-2_0.02-3_0.13\", \"638_l_0_r-0_0.56-1_0.04-2_0.01-3_0.26\", \"639_l_0_r-0_1.35-1_0.04-2_0.15-3_0.98\", \"640_l_0_r-0_0.23-1_0.3-2_0.0-3_0.28\", \"641_l_0_r-0_0.01-1_0.04-2_0.05-3_0.83\", \"642_l_0_r-0_0.28-1_0.11-2_0.26-3_0.86\", \"643_l_0_r-0_2.01-1_0.14-2_0.2-3_1.49\", \"644_l_0_r-0_0.87-1_0.07-2_0.09-3_0.37\", \"645_l_0_r-0_0.1-1_0.21-2_0.14-3_0.15\", \"646_l_0_r-0_0.9-1_0.46-2_0.25-3_0.54\", \"647_l_0_r-0_0.93-1_0.19-2_0.26-3_0.11\", \"648_l_0_r-0_0.73-1_0.02-2_0.12-3_0.8\", \"649_l_0_r-0_0.09-1_0.09-2_0.07-3_0.1\", \"650_l_0_r-0_0.5-1_0.05-2_0.23-3_1.96\", \"651_l_0_r-0_0.23-1_0.15-2_0.27-3_1.08\", \"652_l_0_r-0_0.64-1_0.11-2_0.25-3_0.98\", \"653_l_0_r-0_0.44-1_0.12-2_0.14-3_1.23\", \"654_l_0_r-0_0.63-1_0.03-2_0.01-3_1.1\", \"655_l_0_r-0_0.63-1_0.1-2_0.1-3_0.28\", \"656_l_0_r-0_0.24-1_0.4-2_0.02-3_0.22\", \"657_l_0_r-0_0.25-1_0.01-2_0.03-3_0.18\", \"658_l_0_r-0_1.18-1_0.15-2_0.04-3_0.79\", \"659_l_0_r-0_1.22-1_0.19-2_0.07-3_0.03\", \"660_l_0_r-0_0.59-1_0.14-2_0.02-3_0.47\", \"661_l_0_r-0_1.74-1_0.23-2_0.26-3_0.56\", \"662_l_0_r-0_1.92-1_0.08-2_0.04-3_0.17\", \"663_l_0_r-0_0.84-1_0.14-2_0.01-3_0.41\", \"664_l_0_r-0_2.42-1_0.02-2_0.24-3_1.16\", \"665_l_0_r-0_0.4-1_0.44-2_0.05-3_0.86\"], \"type\": \"scatter3d\", \"x\": [-3.1382269831511733, -0.2685318039079335, 2.0888975601701074, 0.04151576413162328, 0.9479128268382166, -0.655983983171899, -2.524820802584446, -0.20552327034998907, -1.1981810750058643, -2.049971796521527, -1.5626676358527434, -1.4617283822336036, -2.224764600365523, -3.1086581926286434, -2.264235871332488, 0.6470212508217288, -3.1373184220422123, 0.64714868453149, -2.263838808839025, -0.299609066150589, -2.554742924044702, -1.8515085054173688, -1.3199342726706278, -2.662844689329333, -0.6488754707086891, -1.5364769378788792, -1.1420757796661993, 0.3260120406942577, -0.2940931806833482, 0.11394324860004179, -1.580039489821564, 0.03500454501418426, -0.06270238592806043, 0.08871654518140337, -2.401802755648407, 0.9383266558714771, -0.8389102201090534, 1.0577680865182932, -3.231678398620726, -1.9870089524173005, -2.0473435253514527, -1.496978438798811, -0.016041831138337792, 0.4436758255099629, -1.1249333264520254, 0.37589829966536703, -3.5370439149556474, 0.0664926234360399, -1.9781341006107835, 1.4598239077273893, 0.8574546304794399, -3.6928192881636943, 1.453460798662559, -1.8479027634695877, -1.1286085995283477, -2.646435907245071, 0.5951714782126474, -1.9218863547632976, -1.7351704998446835, 0.09099597590094288, -2.9833734685812114, 0.4014990320379159, -0.8508928948057878, -1.456069185331315, 0.4555160247077301, -1.4531340766484648, -1.3576442855131312, 0.45343028685225395, -1.3815774725557666, -2.9072880948022335, 0.8749245297152239, -0.9561821839523491, -2.7984676190920688, -2.2142371874041293, 0.3721499783997195, -1.4505516270918792, -0.7130621381145594, -1.581261374410217, -1.223894334778181, -0.47281609866751995, -0.27541458184879875, -1.8909832284160095, -1.7354441500286022, 1.8521598485368438, -0.4966755630874017, 0.2504612392030585, -1.31509091323862, -0.3787775858307796, 0.04140555917963695, 2.2700522489197215, -0.23054547708000728, 1.1582042367294307, -0.05270191317934525, -2.6182632370402414, -0.8990028494545939, 1.1608868485226345, -0.7146734790626437, -2.2924505251082348, 1.2630065702223319, -0.5355522244901503, 0.03331098109491437, -2.967417502037982, -0.9628485959623048, 0.34320944855698565, 1.024540403483989, -0.6601385441383356, -0.060503033324161626, 0.006730529049343792, -0.2415357967766394, 0.37964433780394025, -1.2795327733924122, -0.3956435313414234, -0.9893022233486192, 0.1213194717498769, -1.8061864495598394, 1.5174035482473025, -1.027336324018343, -2.136816150415685, 0.07052297462557289, -4.744101549519119, -1.5763502082578058, 1.0289843044151241, 0.038240588626679894, -1.7614915719557458, -0.8788314643202351, -2.2840225703678034, -3.13654684047019, -0.5449827217179237, -1.365774410691686, -0.2581237798931957, 0.9585205799999339, 1.197420397251825, -3.7319115528836893, -2.239227894778362, -0.6318100397582147, -2.78381020376177, 1.4543762313527369, 0.5999724290752821, -1.7643131124524012, 0.8029447914421828, 1.3235275241956428, -0.4794721183420574, 0.9631718823010895, 0.8344823864745001, -3.3754786891998734, 0.30771863342427497, -1.0091526244774092, -2.6897337486757777, -0.5393576091985118, -0.8181354168258329, -0.7553427822807027, -3.959342785813036, -1.7710967999858354, -3.544424158226561, -2.9040154671132754, 1.9918286580552844, -1.5310259446045569, -3.111701724472069, 0.9885584605399709, -1.987820744637116, -0.5500758347137693, 0.2251667515232556, -1.9533440486040212, -2.7560644428417254, 0.8607731517024084, -1.8753501168875713, -1.397471116225515, -1.278422807714247, -2.823413414474465, -0.9577790895973614, 0.32588196865662566, 0.018351175153526356, 0.08560574952579847, -0.46448350645003966, -1.938693170628241, 0.8569472069594095, 0.6691180802014896, -1.3555118169858464, -3.3066896104576617, -0.47999859739869666, -2.2912449008948785, -0.6503790192191605, 0.3515769937954356, 0.018633843333199618, 1.0229801481683887, -1.3234546628778516, -0.18942179832221784, 0.35935299442089486, 0.5939088538991446, -0.7180878903735002, 1.4355437683189085, 0.9858819038244864, 0.6214512591281074, -0.1967267581152179, 0.17946608570665745, -0.7244293764503971, 1.9300518648191285, -0.8387329126428061, 0.6692696799004787, -0.9825896762279436, 3.519536284567897, -2.20726360199989, -1.3452033274723987, 2.904910930720848, -0.6175207413353527, -1.4837985593689418, 1.1475564507705056, 0.5763639807615355, -0.2822542708374518, -0.9007198117952782, 1.2046981333943947, 1.558549913608584, 0.6699477851483351, -2.5634869004997674, -2.9301314695541096, 0.5481675584227623, -1.562622007867276, -0.4039490669124042, -1.3467830788555941, 0.6453784508232745, -1.6134679706680517, -1.664902626949361, -0.020740325981599583, 1.3858877923753323, 0.5261190780857024, -3.7547066166556937, -1.3096477496280732, 0.4956066946119966, 1.9410303642664637, -1.1449581191876612, 0.3875732940561214, 0.5419115411750295, -3.1930993195831343, -1.4263959346947512, -0.20378711767536017, 0.34380398585546135, 1.072129363195542, -2.1403502712292615, 1.1691395709881167, 0.4148175160944525, -0.12892867068651537, -0.3433765164129142, -1.200422244107755, -1.3694588939770722, 0.5634959140081102, -2.090216065939198, 0.14893592340698691, -1.0091250480265, 0.1743262167057973, -1.1389253340184247, 0.7408554089190476, -2.0937672407624133, 1.4443452659033658, -0.6202728482247255, 0.32427220726674766, -1.3327907240677286, 0.9285672858065517, -1.3502760871938753, -1.7956906358798992, 0.08144917582484634, 0.6953396913662757, -2.3071320572181993, -1.9195906653405985, 0.32287112349432157, -1.0608538957349984, -4.845010164681748, 0.6767049333043147, -0.8436153949943204, -0.41026238555285643, -0.7416557209690089, -2.0586367777369237, -3.678539812674941, -1.147388432652371, -1.1193256014226785, -1.1661858250667299, 0.8946423384022453, -0.08456493164748546, -1.3716061971582576, 1.2316464085779995, 0.5496753317599126, 0.015058310404468367, -0.25395054382165405, 0.9289020521374443, 1.9869139016430264, -2.085684245688965, -0.2283466785765963, 2.07890784825864, -1.000575049945286, -1.7046360018403015, -0.04458922652358677, -2.1517662459722016, 0.44540495634349253, 0.18967353669084153, -0.0782363754174129, 0.42316172823834, 0.024841443976796995, 0.704574721246356, -1.2613381681878701, 0.5027571588822566, 0.34884772548712806, 3.200122595429754, -2.9616049852955504, 1.034187347670796, 0.9536078043647918, 0.4930152201167901, -2.4656215837862803, 0.3919285600643305, -2.1263368868317647, -0.6993203056965186, -0.37455427047524825, 1.0501447170539473, 0.5186742871236714, 0.4548412500085506, -0.1996850473624493, 0.5620150747112402, 0.8706204352007452, 0.41755926891863115, -1.408375478038131, 0.33920234835677077, -1.1906005993766855, 0.4755740690888097, -1.0585596074976775, -1.198064830349557, 1.7537983972292115, 0.9813242430599025, -0.9945295676805687, 0.4210122652778858, -2.8030394520132913, -0.6669512644105907, -2.585884570596723, 0.14151050336496152, 1.0071842714040735, -2.710432957835423, -0.753722368543202, -0.6646890129986978, 0.8010942023542231, -0.995050320351079, -0.8909859292641047, 0.7106148562168246, -1.0088928507361927, -0.5463420547216624, -1.4078268855597396, 0.8310432722266272, 1.4946772986772885, 1.0833806170488116, -1.303200166397914, 0.17912393978415087, 0.5705215882974621, 0.37342497545031583, -1.2137950287535453, -0.7285455990773471, -1.4513649397638138, 0.41287262146621995, -1.8123991471563294, 0.5305759845253497, 1.0392909917652995, -1.459708208931679, -0.2792208751551919, 1.3795232653935887, -2.280287261785606, 0.3714267774776083, -1.0983488618876207, -0.09637966712057089, 0.5390876465569243, -0.06051510849454711, -1.1992388151961826, -0.04341749979519072, 1.544854342958927, 2.585704291572895, -1.845198266906044, 1.3726382265583883, 0.6580791290627968, 0.03940101780880845, -1.1986622871973944, -0.9652399436482899, 0.6164689063376838, 0.5519969750401579, -0.3016797323230158, -1.006822339743948, -1.6727274288682006, -2.1537230826437135, -0.7726033521950484, 0.27399990564925103, 0.5990146485181438, 2.0183886906290205, -1.6569238920803553, -0.2488119286604371, -1.8134334848662774, -0.44594023160393337, -0.16665553299539537, 1.9092901217728135, -3.3510562072124097, -1.4696997379673575, -1.0870911821276175, 0.1399857977803758, -2.4469549139471782, 0.26618707130107433, -1.1734665959619774, -1.3090460976925242, -1.626829533035766, -0.4323949023921293, -1.926455684495671, -1.6782158704643377, -1.3331289131220736, -1.5208415390071293, -0.8452419179235673, -1.029721163317044, -0.6312953135507501, -0.12469639979072422, -1.4023246036370745, -1.64174870591807, -2.339839365605118, -0.96260421076181, -4.10213795639029, -2.0002616209329154, -0.33481286620262707, -2.2562857772798908, -2.6456297634629227, -0.7557146849201826, -2.5050620325301147, -1.9042066139011986, -3.1377428105770018, -1.289470117165747, -2.5219343810315964, -3.423020151908068, -2.522953218638106, -1.4106840938408511, -0.7948905413789137, -1.1116278999443046, -1.7937531700518787, -2.5429304576203346, -1.2931404571713283, -2.2999939077403497, -0.0039759671140015, -2.610707978114246, -0.5021633805893225, -2.2223233383041903, -1.5357621823176264, -0.6959530462770198, -4.74550106843591, -1.1764010774091036, -2.2010387338938, -1.6581708563536899, -2.156203273219802, -4.40051179439025, -1.744721975768083, -0.8931229304063152, -1.058341563686448, -1.9126561939592914, -2.2963445727622784, -0.28325544726678253, -4.09525122564421, -1.3485023539835874, -2.607082676116303, -1.2015378630462163, -3.2807442220297527, -1.7678982724381085, -0.9762421832099875, -3.1664598605080716, -0.5348443135110914, -2.1835400466545947, -0.05648950818702103, -0.33857033026299155, -1.876061930508654, -2.50895580830447, -1.2435691509766227, -1.5242258065495753, -4.044229797647288, -2.3124697757552295, -0.29397257461805126, -0.546506848709746, -0.06336383713456128, -0.42006542143953596, -3.245024646990852, -2.9804836632376412, -0.32562840173755203, -1.3976792306211996, -0.09713499523632063, -2.371726993872241, -0.4330084715783522, -0.23348007454845432, -0.43691698036622073, -1.9954169340772796, -0.7027625554625168, -1.5726481698119705, -1.4934313435608066, -1.2226144336133395, -3.1722630181890636, -0.5724960645765421, -0.38559002458500913, -0.5757272951602972, -2.6237610200418495, -2.699220939584711, -1.6399504624154346, -2.614234356211913, -2.3640812120947365, -0.4279249742706488, -1.0563384158755014, -2.588845756645566, -1.1833534452982504, -1.2396583932145127, -0.9053973348301014, -0.4816942037372196, -1.499223025240171, -1.5412128437894148, -3.8474800557871873, -1.1041935838047567, -1.628600400997545, -3.065507295084662, -1.5265810555002253, -3.1287217942642545, -1.7594964589226518, -1.755955450753509, -0.48495269222622417, -0.5784998920962299, -0.29245823827483675, -1.0329686544301515, -1.182895328031118, -0.15977535075550442, -0.028129448522792755, -2.5775650121113793, -0.7963255126365383, -1.522646325706483, -1.139065482786663, -1.5125685862908793, -1.3190477508967302, -1.4867465453749256, -0.6107449840895126, -1.7026169942133096, -1.8913502572687584, -0.6382672398111335, -0.9986902303424408, -0.3120213776319255, -0.15315711609325955, -0.742017543557862, -1.9178678894437837, -2.085813133987787, -1.5813588430279448, -2.5191187579696774, -1.0215261958778576, -1.6101076189566292, -1.5859543192682062, -1.5062922365554194, -0.8454801709308568, -0.5641621750969663, -2.279950107717542, -1.3588249273822424, -1.7574151030472132, -3.182174216014494, -1.405128114797467, -0.17224414588577897, -0.6803972006643827, -4.35565946625872, -1.6967527699049147, -1.4025880852331178, -0.05612501646705992, -3.4170310115567637, -0.8444612512454752, -3.172167454746042, -0.9585032595511934, -1.6475885614823147, -0.3284173174819893, -1.1248855273193819, -2.0608639948407297, -0.5962176542397593, -1.9912954892315824, -1.758842667212068, -1.630789628453209, -2.4153688213025104, -1.71532282752446, -1.8405063933403878, -1.1233137168148941, -3.863977142390866, -4.409301381734267, -1.3625996264542968, -0.267279446657513, -1.3567480667691723, -1.3116198862741455, -0.6020619382056291, -1.9788788930382601, -2.2289813354242756, -1.736769952530875, -0.13690230764657307, -1.8490842463740627, -2.3691638496948952, -1.9179284313411136, -0.738321360339199, -0.9182976190100148, -1.2706304381309177, -2.154908302804888, -1.3094167034562083, -0.5812866247605885, -0.18272548614250217, -0.5810327437747758, -1.5120765616219218, -2.2994152990411765, -0.2443172249025145, -0.9595730249502779, -0.6580528574113409, -1.6400424463722638, -0.1619800888978189, -0.26077202841438807, -0.3001348772457223, -0.017812425929567333, -0.7397560574257097, -0.949940701634627, -0.5960808447446446, -0.5227430526202029, -0.8184923705854048, -2.8899669754016912, -0.5628649286275906, -0.31736271611671674, -0.5776056376260539, -0.9398816227621116, -2.0521672053417297, -1.931555044001032, -3.1273052488214272, -0.5260198616541357, -3.291770394726719, -1.7546841353355884, -0.9608036041241741, -1.7677057334015869, -4.57793314847721, -0.9015259432498355, -1.0285833352096083, -1.1950718266622684, -0.37010022608883386, -1.4825734688712233, -2.4779785721186203, -1.9432939623296863, -0.21350747189129737, -0.9567587297049666, -2.4805434218497595, -1.9194493782799271, -1.0478948020004373, -1.9191602213040921, -2.924131830942173, -0.7997681264451874, -2.2311810938504637, -1.3453078560966274, -1.4828441586452925, -0.012539004561570977, -1.6921439248023507, -3.466109754045647, -0.8738580530859075, -0.0999731161747931, -0.9008374669931157, -0.9297777887001505, -1.2513598555658176, -1.8315087359522515, -0.5010820510125521, -3.25610100241499, -1.2829984997415735, -0.4421692680534781, -1.121186959588633, -1.986197872795695, -1.51651656865362, -2.288252806149461, -1.1774758250581963, -1.218983146576381, -1.956253232021209, -4.815903925725383, -1.9216163820056806, -0.84128938943193, -2.419868657959957, -3.4513825788772547], \"y\": [2.3954307886598896, 0.19428546941298608, -3.4546903330008227, -1.1989736989944055, -1.085746639640565, 0.9263909679018776, -2.9787953570052506, -1.9312035685096545, -0.21642791717964194, -0.5496830131556781, -1.8917723101587858, -1.6789154406147322, -4.129164197270576, -0.08640972678649839, -1.4271081580721803, 1.442505836980554, -0.5217970769628837, -1.463416957403056, -0.4037397332038333, 0.863383966005874, -0.014153373634245403, 0.5822055811568998, -3.7169250016844653, 0.3369268398950327, -3.3978081729760152, 0.5609314286563327, -0.20693431380989535, -0.012308615236833576, -2.8742720383861764, -0.2780390479336915, -2.0240583415192726, -1.0788983741633902, -0.3233203958976141, 0.22955510032098703, -0.7506221614038189, -2.2649671228764943, -1.7711772111974424, -2.039132163246157, -0.3093580300297877, 0.8876712523087993, -0.8375813677399047, 0.14715644680426787, -1.6912608696145073, -2.126050249500753, -0.15659501280621768, 0.3739615957909932, -1.7590846700021738, -1.2399821138504976, -3.3705370943469575, -2.9211640496991724, -1.6891240843828057, -1.449651887315388, -2.2018132046224035, 0.12377261917142257, -1.0603506574026704, 0.6861665098813825, 0.2115314352555424, -0.6600518807200447, 0.06139714570794319, 2.14057881069755, -0.4003604184356525, -0.5838847762874229, 1.6969947264037448, -0.47055616846950143, -3.149834663597272, 0.05464841278669952, -3.1721378556996056, -2.5963821932693265, 0.34219759017764684, -1.339754904922871, -4.21996663661686, 0.28906302067418643, -1.6464469561458934, 0.3669131681379185, 0.19438188203150375, -2.570725111301042, 0.20516963750167472, 1.442543506304348, -0.17036933041375102, 0.0006995938729166262, 0.03464561662398524, -2.0788790925073575, 0.834973903506433, -0.43156921476592813, -2.734660490300632, -1.4347642237619314, 4.048222208595771, -0.8606072985582913, -1.6228001907693503, -0.29168619859856926, -1.1377856313618817, -0.9722922503864189, 0.19643886146224832, -1.812838711230802, 0.4049724856545618, -1.262364293421106, -0.8319369055292548, 1.0652925857566515, 0.5324119955455913, -0.5815083077809582, -2.042515573064449, 0.945736385703212, -2.096015957176493, -1.3962349970987358, -1.5976692148566718, -2.020101184515358, 0.2677985084297507, 1.0803843188834743, -2.620252210973214, 0.0772772383315321, 0.020510053271014295, -0.7760119150831835, 0.8277257424021167, 0.5678532099992335, -2.092776736463887, -0.2296913003892328, 0.9126804725450053, -2.4136975637050115, 0.7333303028827556, 0.4572694110268467, -0.9739374608473994, -0.5118841529914536, -1.793526970996199, -1.52144996301716, 1.5617392932935061, 0.395311380402549, -2.36081838374732, 0.01859747668338807, 0.42616927005286764, -3.1558793695657483, -2.8318924809808226, -0.8844318272935666, -2.149117322181369, 1.4032630206545402, 0.1484137039136879, -0.34196650232737114, -3.306802863346311, -0.4522344749911501, -2.0327048415886924, -1.6991731469728026, -2.314924911392123, -1.4185598345483197, -1.4782678482716964, -3.949130008451352, -0.961611671096993, -1.0835068053950325, 0.566295633006495, -2.0511435521210384, 0.7549145053232649, 1.0040406625578062, -1.2790770600799317, 0.755862543281701, 0.12326254597141362, -1.6682069990900108, 2.492231345358373, -0.7151823203527594, -2.4164904911922895, 0.912465127455617, -1.590851954173967, -1.870172373055409, 0.7487830172255105, -2.7652973384897837, -2.485854975975739, 0.8975856486158109, -0.43437293586605397, -1.951181886301443, 0.8363132299239173, 0.2737580509117774, 0.5089262290745038, -0.9967353394402533, -1.3373527789757103, -0.4076423853995528, -3.677095449924767, -0.6965413131882829, 0.8569949370363579, 1.5089892217917895, -0.9887546679562306, -1.8520384110026211, 0.8822451162224156, 0.16843038096598484, 1.0240903424867582, -0.4423288683830626, -0.8835961528503483, -2.5257650180556777, 1.060328503163542, -2.0305306483758376, 1.6507624745506178, -1.2592538963647202, -0.6344329640096126, -0.9120678429064605, -2.270259096481742, -0.061339803880832044, -3.0855716465693632, -2.2664351469577393, 0.6522776444810323, 0.09163612039048852, -1.3985001902348626, -0.7390944730482121, -0.2161869734089329, 1.9752115229776357, -1.4093508711933829, -1.9419281046168597, 0.9652567383099588, -2.3282595396567753, 0.11719564107915459, -1.9249867030038377, -2.41451602572545, -1.5628054905023951, 1.340842149903283, -1.7184056566027603, 0.504251673348779, -1.0714005466192564, 0.6847198100086227, -0.11928639523781315, 0.5007685078675641, -0.041258885746238816, 0.07104066965323397, -0.9519332621674222, 0.5428145983497608, -1.9274052723603292, 1.4749305726695043, -1.140750771721886, 0.7879255144400215, -0.7339194603007456, -0.8911398747699633, -0.2386258829707718, 0.09295205277365115, 0.788502476828032, -0.9775058950130691, -0.5026292355110162, -2.453434236311799, -2.1351830550805966, 0.6220930276521901, -1.46295734955105, 1.9070685087481474, -0.6474129257814121, -1.4668597666949807, -2.1163695945404513, -1.3859828535874847, -1.1920804123707283, 0.9802711659814209, -1.7283355649100587, 0.11854192762029414, 0.7472560000991708, 0.7656097985363008, -2.6586513723209038, -0.5875976967036294, 0.08908567542385204, -2.2396470023982147, -2.412272499814871, -0.28925071069914976, 0.14303253952974582, -0.9921353572313941, -2.4429355392960597, -1.4718774959547725, 0.8538295943026251, -1.2324573135571815, -0.8019235326530937, 0.4682444422297152, -0.7775752201007081, -2.108646030484638, -0.4180366034507499, 2.2025512401506293, -0.10077426822562152, 1.9477758286968743, -0.2920837748523196, -1.2883872837970558, 0.8737198454536379, 0.6148874529318069, -0.9456909015693897, 1.1945661576928202, 0.5718876131536463, 0.7965774578620515, -4.9086063981610835, 0.4108756892104113, 0.03486140270026605, 0.0896881761300885, -0.25632339932309656, -1.4116932151108759, -0.9351372672276183, -1.2586026989332801, -1.6311307317743022, -4.063857984508861, -0.5711959384223745, 0.3974709599559183, -2.7748683437217156, 0.07707480636458408, 1.0284701791164723, 2.2172662365197584, -0.7518172037381855, 1.2195788361836053, 0.36538939869885545, -1.6143479414725521, -0.7681685443366353, -3.6135441191133295, -3.1556059589678647, 0.7572566323120249, -2.101761023084611, -2.0973884469655824, 1.462150580918701, -1.8812250332121805, -1.1877519611677867, 1.0304208345396453, -3.129022228168562, -1.9958847598535387, -0.1666852591880289, -2.7551458181808948, 0.36581520856708516, 1.4997248415227977, -1.7439878549955876, -1.927276193472144, 0.5420107337242077, 1.1969319451735174, -2.782728972664283, -1.5220390928199274, -1.940415410423629, 0.7008466613977977, -1.9106610833136046, 0.7377442033552524, 0.07939266122413335, -2.3894533154037707, -3.021897537470895, 0.5451114920865048, -2.0851217037633, -0.1729710852017058, -0.8449740782871195, 1.0607020579986406, 1.2296775468886851, 0.16052214599470305, -0.8229310908339837, -0.9692832779555088, -2.1470353739524235, 0.5903180622759181, -2.9491397035984632, 1.1195455250681174, -0.6408267200382398, 2.017499789927437, -3.575370958602306, -4.0589594071195085, 1.253531775625754, 0.3563775779578764, -2.3027137717063524, -2.370824466837749, -2.5483320272802543, -0.029246077836426854, -3.350657461705896, 0.5804232152106366, -0.4209220095652293, -2.540863233797314, -1.629158903861641, 0.4202904374059413, 0.09407417264098039, 0.7356527856783159, -0.83454978231566, -0.7093836344756081, -2.5799049951708897, 0.8216425101485789, -2.9360992743219985, -1.101410389684119, 0.2938025688150172, -1.3930302619242594, -1.9952467259775872, 1.0635851707293278, 0.8267459200097569, 0.004524022839158759, -1.3373555950759717, 1.953174823010806, -1.2091122270551402, 0.8374341430347803, -2.5056891468567275, -1.5992918484918528, -1.449107897570555, 1.6585015560399832, -0.03556465958753352, 0.16944111558167974, 2.0738926397859627, -3.1219244931158756, -2.1286440566953493, 0.9576714106638458, 0.03059137810158208, 0.8818688653389193, -1.5622820098171197, -3.637196689115332, -1.8095077855435933, 0.007085399788428148, -1.664471859884308, 1.3776956549149726, 1.084181780514185, 0.3066380019349386, -0.6841178659852694, -2.2512263673913595, 0.2380528752632567, 0.16313492704327714, -2.3687600550024976, -1.8518094705087034, 0.9422745545492714, -1.5626151672832858, -1.7513948204978322, 0.413651506033631, -1.1583907901969417, -3.1732620358628147, -3.5009787827629864, -0.7778378936514518, -0.8902783221214257, -2.8103662898699038, -0.0040835137194216165, -1.5996028082297558, -1.10074169553902, -1.73479076636585, -2.6553110880723594, -0.47824129345901956, -0.09668695323905252, -0.01137233011963723, -2.8835565321163967, -1.168131816128225, -1.114017055744274, -0.15112310090416037, -0.25541220017453015, -2.179804851873458, -0.6197754455900832, -2.0912787885518433, -0.5441870477791904, -1.6792186234841868, -2.615229910011946, -0.9723080017281112, -0.1915776847194116, -1.684559163682639, -1.868414853076953, -0.9059292171251723, -1.357977259934846, -1.2226794111743595, -3.5853462869149477, -1.086627827652668, -0.3107192236354076, -1.6070333821224883, -1.602797247751536, -0.18506328580749143, -3.18305478456544, -1.2898885926399646, -2.4668679856274083, -0.8764595414723411, -0.9468354193968795, -2.2443706077476895, -0.28273527177281976, -3.4600738876630115, -0.1284661697213424, -1.2374763393505777, -0.47745826669152114, -1.6390122300261893, -2.6012495808528904, -1.002542140506122, -0.06525461335012162, -2.4790635197469157, -2.7663258875993186, -0.7295497085446847, -2.014612562443083, -1.805311875879724, -0.8345218379215488, -0.5201592854148624, -2.387468415566186, -0.8257725655444159, -0.8770448444190059, -1.646802585995587, -1.3438620631153226, -1.7739386019877295, -0.6573390941616314, -0.486489827549785, -1.0509710934838998, -1.8341131124625885, -0.28871248517905634, -0.06531954613539726, -1.6079601807172363, -1.79848450821771, -0.5247502757131746, -0.7055209738895678, -0.7229999886826877, -2.3775928405306055, -0.9291151970745206, -2.1037204168670205, -1.0170599108097451, -1.8849366221085453, -3.8108124717049203, -1.4956591742252592, -1.049690142373612, -2.1433453248572034, -1.5471804483792133, -0.6570068200898989, -1.1531811320425676, -1.057402567842459, -0.08433682743363491, -0.29953968879940196, -0.5836256795260155, -2.4873823955323564, -1.2227413173689838, -1.5944834868530704, -3.430252000086034, -1.1845606289888428, -2.913849621210364, -3.3514910307278236, -1.8735288986514684, -0.7698304231350603, -3.0751322205995684, -2.38960545043904, -0.9026975669982508, -1.8183659477865595, -2.0187122340031474, -2.163985187527961, -0.33824033658513, -2.184471916385733, -1.7708909294027788, -0.5847290571631808, -1.9921201015568932, -3.799048341462509, -1.065458921677114, -0.2574116641968135, -0.3039558693262965, -0.2051166191728021, -0.2005566035205374, -3.7668492278462185, -3.0307777985897375, -1.4174499525164885, -1.7594944912907806, -1.3806728366213266, -1.8585236133269056, -0.1262863991266604, -1.5237607740098147, -1.4960331104614437, -1.2147792674195863, -3.308785474252605, -1.3223571884852499, -2.7705203590660012, -1.0025084705490845, -3.17619886736655, -1.6440846029271217, -0.8080822659931152, -0.3935555510761901, -2.047269696333604, -0.4136576671968166, -2.83180768545403, -3.800229822736993, -0.02529189535005638, -0.860379773101884, -0.646409085226509, -1.0469303284647056, -2.9546596520419257, -2.243449079523156, -1.9220598159052102, -4.165352359808732, -1.7798222439106388, -0.04600342366382182, -0.10227786029994856, -1.7848767299637964, -2.6480385534575452, -1.4576693648100236, -0.5775692022139638, -1.5667127894715185, -2.176736206879464, -3.0707075653755562, -1.9612580121798189, -1.8909868810875907, -1.6808523411914533, -0.8022973096728392, -1.4279516795914247, -3.4899295460037867, -0.6226725183600812, -2.4293989076064513, -3.558667329212312, -1.6166845811028308, -1.8284242878379924, -3.2207196630872574, -2.497448005200368, -1.5485101151500444, -2.1322742844452525, -1.4980012747887588, -1.6286426815514214, -0.6392989948930923, -1.8615222822203705, -1.250743282545801, -1.6855168050984752, -0.7025766584131969, -1.5661013820760536, -1.5993705099116236, -2.633853392984757, -0.5933265054744699, -4.029922908622392, -1.2555296314721494, -1.3079493435298737, -2.121965774751021, -0.9173240585694388, -0.45388194353844213, -2.054019411134541, -4.208924357914172, -0.33588026784386793, -1.5267142488480026, -1.0720008144078992, -0.2106371412489494, -0.17615119726209127, -4.524870743690293, -0.5047114801493349, -1.9558335497708021, -2.0709415196127203, -1.2372707929697857, -1.0611474705313164, -0.29212736537359085, -2.19371587525087, -1.745486589640877, -1.3228115006533827, -2.3065215804164376, -0.4836350137489408, -1.1676089832853715, -0.04476562649457827, -0.5739983015203158, -2.45402994890963, -1.1548794605960595, -1.3098703368979607, -4.043066561484993, -1.4954502919275074, -2.1153617991102447, -1.986264046199672, -3.501305104579994, -0.032601344636353224, -0.45421921276342114, -1.4032386110471444, -0.4480105455028712, -1.4253307896733343, -2.136840055826716, -0.758971851974797, -1.9879869667580423, -0.6762505394038426, -1.0440870227345058, -1.781135653929471, -1.1305146588269401, -1.4699889525972052, -0.041987714176242585, -2.0564731119200905, -3.235531461226558, -0.3168818178952606, -1.994833580395174, -0.5623687902876786, -3.231813184121568, -0.8650713157810952, -2.0875297793336287, -1.9010982327334585, -2.0104929414010053, -1.158471121527132, -0.26777014282781453, -3.506489494795437, -1.5084089363154076, -0.7285367602515598, -0.08816017914027385, -2.3960739524692602, -2.241457500338134, -0.6416860427269764, -2.7758371486530278, -0.6330422884286174, -0.6264693716431204, -0.2352438449648313, -0.2513774804940171, -3.587398103522838, -1.858389879673994, -0.5877964100916758, -1.738732229620755, -2.3102777042811846, -1.2718888529656491, -4.15670620030543, -0.404698155415234], \"z\": [3.764446811332845, -0.39679708320178886, 2.6175760966023027, -4.034092124455678, 0.5948054417045618, 3.0866834458453534, -0.9350297582253049, 2.562055840070066, 0.242239879014865, 4.7624409003367445, -0.3672437722392292, -2.4456779275403377, -1.5953291744210554, -3.7022202115998937, 4.245382844094977, -4.497866398662186, 2.428833334717183, 1.207901012557942, -4.393022077859171, -1.8067729001173065, -2.2271974661307965, -2.849732630743932, 0.528697172701551, -3.084304181839518, -2.627386397850336, -0.29128565979647014, 0.5049477456966356, -3.7515096101709227, -0.33861303664983033, 1.9725467889166417, -1.8413010067551316, -1.7045706105729996, -0.6580040060053882, 1.3058973260099886, 1.121026149400179, 3.5669840655849674, -1.5487434440438586, 2.7476413055485986, -0.8169016039557482, -2.886135417115915, -0.15520173359178902, -2.8120443489427376, 3.114489319937822, 0.46580992973228597, -4.941604630939238, 2.465098697736307, -4.316316438943181, 1.6631443886855566, 2.649688309094099, 3.512233012255355, 0.2895316777368784, 1.206451220705829, 1.6825417264131008, -1.4184256572538123, -4.184943178458351, -0.9525532421927432, 1.2759789902550782, 2.174994067487111, 3.3419182774549254, -2.612985224545645, 4.062944289018419, 4.947526870547548, 1.7922056627590592, -3.393089319516844, 2.14065539728941, 2.493159308683251, 1.530799250887613, 5.119146674785363, 3.269366158690562, 1.2529021864458993, -1.2376026747058897, 3.4569389385040212, 3.5882802166898164, 1.9638828191422943, -4.471022240450023, -0.7106583367524912, 2.710567306910887, -3.029733977590324, 1.3546149440960376, -3.0585038856192956, -1.046203696381128, 1.5945913256217796, -0.3824766049276551, 2.804687883027455, -4.025903440470987, -3.2506690040752595, -1.7457596333876357, -0.13950185653035518, -3.6248234572803852, -4.299813071925582, 1.974730764189859, 0.5627641280773341, -4.868276950730498, -4.211806711712266, -4.10875159941729, -1.188823562797296, -4.9709007026518695, 1.2442697806598675, -4.311675225398157, -4.859935464876281, 0.27329105916200014, -4.040868285294809, -4.468547634558302, -4.113329110587633, 3.1086667824812713, -1.6765058493446094, -3.513418060561545, -0.03496899088620431, 2.976271101224653, 3.114854574294811, -2.754657227978263, 4.309922376921526, 1.7842763235685775, 0.3351267600576797, -1.3657608389630291, -1.9037426236585535, 2.1491428059385562, 2.7149023207709835, 4.988179622309491, 3.2133749542545145, -1.2466360789121187, -1.8086640292562022, 0.4594218854574317, 2.016020226452575, -4.936043424174197, 4.635336608394758, 3.750375945673084, -1.6508511036827898, -0.882705819777299, -4.560308464261238, 0.6211369658958592, -2.741746972524433, -2.690389737750048, 4.594633497253935, -0.9979487632874333, -4.602652709526366, -2.1452593662543835, 1.5085479882050592, 3.2108565642475133, 3.5630940900607397, 1.5989994299249837, -3.9488251116040285, 3.289573965630141, -4.617605341031343, 1.701776506143033, 1.5017245942108977, -0.9576842171667401, -1.5725415204472508, 2.906550250777384, -2.4069878649365433, -3.079569039304797, 4.145130936960238, 4.858085847544923, -3.754231654936831, -1.8523641490837175, 4.604142210920036, -4.215732286852534, -1.7145522517473535, -1.1515755432142836, 4.752692377954612, -1.0634417768142495, -5.007868716450293, -2.4432092424620357, 0.3905190149653759, 3.91652282116726, -2.3567180566637864, 4.7975680005194326, 5.022787903619313, -2.095817200433943, -4.305353770794583, -1.0986243778756575, 3.997356714793564, 1.6546780313253455, -1.0894515001329643, -0.9815360300136753, 4.205013890175496, -1.6885624231755139, -3.9835275899248774, 1.1677308799982198, 1.0670126073509554, -4.327193411483267, 3.7261155905217516, -3.5318377383372876, 1.3485966353347036, 2.0714515819967563, -0.6118161463924716, 4.476131317500063, 3.7486060970264914, 4.055125248928843, 4.015196000983983, 2.2591281531144274, -4.434992262623378, 2.5923549662002685, -2.388801510415293, -4.4980620475774495, 3.7813397622337535, -4.528918449081854, -4.752965775802172, 2.056871751346508, -0.7307013131669171, -2.6456372104408974, -4.586842899928632, 1.6914725496203813, 2.601514231996501, -4.194560568659664, 4.624091965902596, 5.0192480204737135, -3.3352551009350737, 3.2484677450110278, 3.1194221163223768, -1.3888862649662426, 1.0955720985456816, 3.5565412443955813, -1.2715508988103128, -3.2350055923336005, 1.5817809658951107, 3.3901856805766597, 2.119323292756901, -0.5745652228869886, 2.047189155069355, -1.5954665283351157, 3.5175151627181522, -1.3169583161119793, 4.825794397333293, 0.04429064548172601, -1.3310710908676233, 4.812710187354846, 1.7528707591824055, 1.8347154063872555, 3.33397369782237, -1.3501155647536018, -4.11633944186086, 2.22705452970931, 1.637236391807205, 1.5251428087210792, -0.19558525438031804, 4.017889120008024, -2.7882310261042957, -4.429564926949442, 4.160231267215225, 3.2004883066344396, -4.805113735292116, 2.0521179124624, -5.056654723988944, -1.9302136280008386, -1.990332175191405, 0.11063794350424061, 4.664517835704275, 1.2800790207766415, -4.09803648527929, 2.1954017711504745, -2.0690803982767174, -1.8638447691963727, -1.8483211460136695, 0.5249374913085649, -4.47420271185862, 3.4307432940186215, -2.0093403093632523, 0.4138356078448311, 3.538754408477282, 3.9959429108593083, -5.072605108467337, -2.8883494205959046, 3.6160689329295304, 4.119064434790277, -2.5773106431640507, -2.4060168780338693, 0.7962959628691157, -0.18902378542832388, 2.298996558842159, 2.533529919446309, 4.647905478072347, 2.6972409119051326, 4.061337506700448, 1.6402475778279397, -3.3607622881785866, -3.551880301557048, 1.4256938438301372, -0.32783610465950996, 0.5397132639288484, -4.747014304416559, -3.8639698581152535, 4.7727763172951585, -0.00602304049008584, 1.871988060712832, -4.86614982481729, 3.2481703368930317, 3.922594887577401, -4.901956331016272, 2.016976084033283, -1.5192323890470325, -4.99751931418172, 4.0498759980818955, 0.33692504831413306, -4.995413222310073, 4.275968195956115, 2.337130880866085, -4.283062920212507, 4.822541451282894, -1.900554414087296, 4.310188935348898, 1.2484910557540312, 3.853991836652642, 3.136166606984438, -3.262453906764801, -4.704791398796429, -3.3226071461511015, 1.2299405282788172, 3.5222046488465653, -2.937352655090691, 1.8201535315201944, 4.549628820643886, 0.7353789936192525, -1.5919110828097782, 2.3354741911574886, -4.979866502806031, 1.5782468171042412, 2.6420317908526982, 2.330228885527168, 1.0513420123874697, -0.8724791880709777, 0.8275225576570255, -5.061729045938497, -2.0125948443025874, -3.886957316411559, 0.5130509534824776, -2.878304969019911, -4.461495854270829, 4.183309204693598, -0.012682363947138064, 0.7033328908833676, -3.2472392834807238, 1.2178330988005888, 3.6410199055746633, -2.5318744853931014, -1.2792510664028276, 0.4322437332394289, 1.8995792447626139, -4.789060694219626, 2.4541544273191604, 2.0905411862036836, 3.298874207834264, -1.6208772198798527, -0.21017320479798496, 0.10128107322452973, -4.848083618276237, 4.226572046534508, -2.9740163773055954, -2.7514083525747615, 4.754926189039341, -1.1426544592424834, 2.1316769799942623, -3.4631069267031553, -3.445240286988824, 3.1247287815528795, 1.7365510928517116, -0.9244526508616246, -1.2240918303919872, 0.9586155116285884, -0.99363764864116, -0.4989993170697691, -2.698396653856682, 2.16748642801429, -3.817321220235912, -3.865282282919459, 4.65522346985644, -0.96596794911905, -0.6921038411345313, -4.297975245967385, -0.7872135890612242, -2.9369116019301598, -4.537572217909212, -2.061413130265487, 4.515444277825336, 4.986562698363838, -4.816268841026799, 0.04861812896997719, 4.048781217119319, 4.374335154873484, -1.733785308834943, -4.244798895361273, 2.981974849472496, -4.492787490973568, -3.5080565775551262, -4.6746874264636125, 4.573147398403337, 0.3132186291276611, -0.3688489625402793, 1.0970886155844823, -1.469213173720227, 4.757793286621939, 3.256287361260237, 2.569935561341614, -3.6936258149432413, 2.840075846787564, 4.454736426163303, -1.6655821044003876, 3.5850359633015154, -4.971986957709303, -0.40988059362050766, 3.7804625970644254, -1.4322028435896348, 4.335100288267101, -2.9571014035301144, 3.983407747725038, 1.205791630730924, -3.0527984593221413, 1.4746915209656866, 4.943091205324149, 2.5906865388273683, -0.24536250450427755, 2.206771719453914, -3.826696593559248, -0.5837032852530237, -1.2259080471872728, -2.2604256485498264, -1.4629399128246048, 4.432375591282777, -2.4962456194371225, -4.018576828743447, -2.012025063374444, 2.6914558342923254, 2.7498092129632834, -0.16297412829432556, 3.207670671766267, 3.3656807371470228, -0.14967298138425367, -1.3337486013601496, 3.442951924964688, -2.7868530622280114, 0.25367954379050683, 1.7931300802531567, -2.848121078369183, 0.7730791195576217, -3.0035877582740276, 4.6042826031467525, -3.6553474892069424, 1.1166318273144098, -4.341804694276126, -1.8739943012578255, 1.4770669265791145, 0.26749928204879847, 4.5071997607243075, 1.5018730117066692, 2.7556583314888003, -4.467979361777493, 0.3070414633555725, -1.060726748275969, 0.7704656518691015, 2.8260041427117306, 2.3744123619234268, -3.9603384261819343, 0.7369916536938748, 2.7709426981072607, 2.8467771247688063, 4.499093833897622, -2.7665147832208623, 1.7934505639380154, -4.655495916695253, 4.1469144727997405, 4.03083459986084, -0.5329732995388818, -4.953318116106483, 2.2804726845179246, -3.17518592130223, -1.1294428384694308, 3.6588378232888923, 0.799829500110012, -0.27236452789966936, 1.1241714814007207, 0.798515764529534, 0.11588701288493208, 0.5053510244154156, 0.47462279846887334, 2.70429842901176, 3.436132384398854, 4.171434272779668, 1.1535226858405014, 2.179318781307307, -1.944752383307733, -0.1174361882093713, 1.5529486015045828, -0.4923149637111184, 2.358500231600253, -2.39125588116676, 4.443416820325949, -4.172601289668181, 4.136586241162539, 3.0166712974653267, -2.7179625457667838, -3.063437261534578, -3.1474634571235125, -2.166978057681975, -1.1755113955152958, -0.7734661012199346, -3.1666299801211197, 1.2168859349814491, 0.7951239352713264, -0.44270150619831394, -2.8149700240265005, 2.330224332224713, -2.2730423076001736, 1.1672584290232368, -2.098410892232612, 4.730895253564403, 2.0451862062741233, -3.2565236432910876, 4.379277277067298, -0.1507976164019338, -4.890103961493406, 3.4174592137128306, -1.2704874342457804, -0.09851046900587779, 1.1225813937472253, 3.611629138142926, 1.6012116031641916, 0.23324229129309426, -1.147042786587698, 1.911138978642187, -1.7976888005876965, -3.936172048806471, -3.35913929524714, -3.680111973999748, -4.06749284212192, 5.1296077751121265, 3.8359656694417152, 0.46222292439357027, -0.8884283739411005, 1.1548906219399235, 4.113181423893995, -3.469686878436682, 0.476977216821183, -1.9339533705763716, 4.342964790604081, -3.1308519027275414, -1.6846352944980216, -2.0522909254616226, -3.9165536168912527, -4.6442239158359655, 3.354871879477943, -3.352503516120814, -4.953962893246051, 3.461100152109119, -0.5113113560029756, -4.194019934532856, -0.0401512624583118, -2.0541267917793835, 0.02276695022750541, -3.0789025886174373, 2.508983242914276, 2.2077539793570065, 1.0659824495287715, 3.318320096581574, 1.9307946275250423, 1.2927774783148758, -3.5859602088202847, -2.793954458947605, -2.479282378418205, -1.427713571658991, -0.9797152579652781, 0.840331651701856, 0.6605985183174345, 0.27197250897005, 1.199404780329509, -3.52987499186799, -1.1368422103661127, -4.537250031404014, -2.354992273802066, -2.0180591006141384, 4.689189508264476, 1.249082998904056, 4.243498909302702, 1.086810441238641, 1.5277236185715717, -3.376328511854844, 5.031654694841914, 2.1328453549549513, -1.8443339982639029, 2.0772503959080453, 3.907797798482343, 2.3299951694940217, -3.252860900207405, 4.84911239870003, -3.1172088420931856, -2.748238268011751, -2.033912726817479, -4.17236230881707, 2.834733864327018, -3.909438093460304, 3.942947757835065, -0.8070705488126979, -2.7902271082673833, 4.601670374671023, 2.447279210212785, -4.8078234199146435, -4.103467460051423, 4.701858869543751, 5.017967418016931, 0.36011836358611404, -0.10454701157093638, -0.3146998735319322, -3.2063509794929415, 0.2617057614450822, 3.33031464702992, 2.859580194029567, 1.614137923396524, 4.81998859284728, 4.380986656243542, 0.3056209944534132, 2.0875155922816733, 0.2916460670433825, -1.7603175796624377, -3.3522912889965317, 0.744810708928326, -3.1795740061634215, -0.5166493974546968, -4.591339923930736, 1.9556541136373955, 2.8162049317053883, -4.06093608558246, 3.2940582828744054, 5.116836007403966, -2.197009511998256, -4.053679487611202, -4.113300937225859, 5.024645921291786, 3.6406169702517994, 1.6262621506162667, 0.14137961194373716, -0.37847937363096396, -4.716958976272031, -3.7418902738116215, -1.4862266144927152, 4.277383282523899, -3.8145030275117744, 0.8141285480451366, 3.095860924898221, -3.9611625450010344, 0.6441144935368532, -2.8612443189423726, -0.23491034773823838, -0.40116200510033195, 0.2808109942069956, -2.491877428502252, 1.7667673873599377, 4.33192164980118, 1.0189449256537486, 3.5624076558852034, 0.8870236116499219, 3.4764542263128417, -2.712072954429094, -0.22530716985918886, -3.360728459043996, -4.768302404316039, 1.4422606134845593, -3.3197253941306943, -3.252644310705846, 5.071633601330022, 3.1388616450264406, -1.4061157706969545, 4.134899407277614, -3.709400488121436, -2.464062878245254, 3.3073003919485773, 4.2210901747148695, -1.7221929733884398]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 1\", \"marker\": {\"color\": \"rgb(255, 127, 14)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 1\", \"scene\": \"scene\", \"showlegend\": true, \"text\": [\"666_l_1_m-0_1.99-1_0.33-2_0.2-3_0.74\", \"667_l_1_m-0_0.73-1_0.02-2_0.57-3_0.01\", \"668_l_1_m-0_0.33-1_0.26-2_0.04-3_0.02\", \"669_l_1_m-0_0.1-1_0.21-2_0.43-3_0.35\", \"670_l_1_m-0_1.23-1_0.02-2_0.07-3_0.71\", \"671_l_1_m-0_0.5-1_0.01-2_0.27-3_0.4\", \"672_l_1_c_0_1_3-0_0.9-1_0.03-2_0.32-3_0.76\", \"673_l_1_c_0_1_3-0_0.06-1_0.0-2_0.63-3_0.51\", \"674_l_1_c_0_1_3-0_0.23-1_0.15-2_0.13-3_0.53\", \"675_l_1_c_0_1_3-0_0.41-1_0.13-2_0.83-3_0.46\", \"676_l_1_c_0_1_3-0_0.21-1_0.17-2_0.82-3_0.27\", \"677_l_1_c_0_1_3-0_0.06-1_0.04-2_0.76-3_0.08\", \"678_l_1_c_0_1_3-0_0.07-1_0.09-2_0.94-3_1.04\", \"679_l_1_c_0_1_3-0_0.19-1_0.32-2_0.15-3_0.2\", \"680_l_1_c_0_1_3-0_0.45-1_0.49-2_1.48-3_1.57\", \"681_l_1_c_0_1_3-0_0.33-1_0.03-2_0.37-3_0.26\", \"682_l_1_c_0_1_3-0_0.42-1_0.21-2_0.74-3_0.19\", \"683_l_1_c_0_1_3-0_0.85-1_0.3-2_0.73-3_0.37\", \"684_l_1_c_0_1_3-0_1.19-1_0.07-2_0.19-3_0.54\", \"685_l_1_c_0_1_3-0_0.03-1_0.28-2_0.79-3_1.74\", \"686_l_1_c_0_1_3-0_0.17-1_0.22-2_0.07-3_0.32\", \"687_l_1_c_0_2_3-0_0.09-1_0.19-2_0.1-3_1.54\", \"688_l_1_c_0_1_3-0_0.61-1_0.16-2_0.89-3_0.22\", \"689_l_1_c_0_2_3-0_0.1-1_1.03-2_0.43-3_1.17\", \"690_l_1_c_0_1_3-0_0.82-1_0.1-2_0.66-3_0.96\", \"691_l_1_c_0_2_3-0_0.25-1_0.59-2_0.58-3_0.08\", \"692_l_1_c_0_1_3-0_0.57-1_0.16-2_1.43-3_0.48\", \"693_l_1_c_0_2_3-0_0.61-1_0.21-2_0.03-3_1.04\", \"694_l_1_c_0_1_3-0_0.26-1_0.23-2_0.28-3_0.09\", \"695_l_1_c_0_2_3-0_0.38-1_0.52-2_0.11-3_0.27\", \"696_l_1_c_0_1_3-0_0.05-1_0.47-2_0.51-3_0.22\", \"697_l_1_c_0_2_3-0_0.59-1_0.36-2_0.15-3_1.88\", \"698_l_1_c_0_1_3-0_0.18-1_0.54-2_0.38-3_0.4\", \"699_l_1_c_0_2_3-0_0.05-1_0.51-2_0.19-3_0.62\", \"700_l_1_c_0_1_3-0_0.5-1_0.31-2_0.04-3_0.2\", \"701_l_1_c_0_2_3-0_0.04-1_0.45-2_0.09-3_0.05\", \"702_l_1_c_0_1_3-0_0.96-1_0.12-2_0.16-3_0.05\", \"703_l_1_c_0_2_3-0_0.45-1_0.18-2_0.21-3_0.45\", \"704_l_1_c_0_1_3-0_0.88-1_0.64-2_0.08-3_0.69\", \"705_l_1_c_0_2_3-0_0.32-1_0.15-2_0.14-3_0.39\", \"706_l_1_c_0_1_3-0_0.09-1_0.28-2_0.03-3_0.29\", \"707_l_1_c_0_2_3-0_0.3-1_0.73-2_0.3-3_0.01\", \"708_l_1_c_0_1_3-0_0.05-1_0.48-2_0.37-3_0.14\", \"709_l_1_c_0_2_3-0_0.54-1_1.23-2_0.03-3_0.45\", \"710_l_1_c_0_1_3-0_0.13-1_0.12-2_0.65-3_0.06\", \"711_l_1_c_0_2_3-0_0.28-1_0.2-2_0.6-3_0.52\", \"712_l_1_c_0_1_3-0_0.33-1_0.22-2_0.84-3_0.22\", \"713_l_1_c_0_2_3-0_0.08-1_0.24-2_0.3-3_0.62\", \"714_l_1_c_0_1_3-0_0.18-1_0.16-2_0.63-3_0.17\", \"715_l_1_c_0_2_3-0_0.43-1_0.5-2_0.33-3_0.77\", \"716_l_1_c_0_1_3-0_0.66-1_0.29-2_0.68-3_0.47\", \"717_l_1_c_0_2_3-0_0.07-1_0.36-2_0.23-3_0.14\", \"718_l_1_c_0_1_3-0_0.06-1_0.14-2_0.98-3_1.51\", \"719_l_1_c_0_2_3-0_1.38-1_0.12-2_0.2-3_0.06\", \"720_l_1_c_0_1_3-0_0.51-1_0.02-2_0.18-3_1.12\", \"721_l_1_c_0_2_3-0_0.24-1_0.14-2_0.05-3_0.31\", \"722_l_1_c_0_1_3-0_0.15-1_0.47-2_0.73-3_0.43\", \"723_l_1_c_0_2_3-0_0.02-1_0.17-2_0.05-3_0.41\", \"724_l_1_c_0_1_3-0_0.3-1_0.27-2_0.77-3_0.79\", \"725_l_1_c_0_2_3-0_1.1-1_0.61-2_0.07-3_0.54\", \"726_l_1_c_0_1_3-0_0.31-1_0.01-2_0.11-3_0.08\", \"727_l_1_c_0_2_3-0_0.06-1_0.12-2_0.02-3_0.16\", \"728_l_1_c_0_1_3-0_0.09-1_0.03-2_0.02-3_0.74\", \"729_l_1_c_0_2_3-0_0.47-1_0.3-2_0.09-3_0.97\", \"730_l_1_c_0_1_3-0_0.49-1_0.12-2_0.57-3_0.09\", \"731_l_1_c_0_2_3-0_1.35-1_0.11-2_0.39-3_0.23\", \"732_l_1_c_0_1_3-0_0.32-1_0.05-2_0.58-3_0.25\", \"733_l_1_c_0_2_3-0_0.12-1_0.63-2_0.19-3_0.3\", \"734_l_1_c_0_1_3-0_0.42-1_0.05-2_0.5-3_1.44\", \"735_l_1_c_0_2_3-0_0.16-1_0.67-2_0.08-3_0.14\", \"736_l_1_c_0_1_3-0_0.05-1_0.13-2_0.29-3_0.17\", \"737_l_1_c_0_2_3-0_0.36-1_0.26-2_0.02-3_0.34\", \"738_l_1_c_0_1_3-0_0.42-1_0.03-2_0.17-3_0.01\", \"739_l_1_c_0_2_3-0_0.86-1_0.12-2_0.14-3_1.11\", \"740_l_1_c_0_1_3-0_0.42-1_0.11-2_0.27-3_0.41\", \"741_l_1_c_0_2_3-0_0.31-1_0.61-2_0.03-3_0.73\", \"742_l_1_c_0_1_3-0_0.42-1_0.01-2_0.74-3_0.53\", \"743_l_1_c_0_2_3-0_0.14-1_0.35-2_0.43-3_0.33\", \"744_l_1_c_0_1_3-0_0.84-1_0.07-2_0.52-3_0.69\", \"745_l_1_c_0_2_3-0_0.42-1_0.01-2_0.0-3_0.65\", \"746_l_1_c_0_1_3-0_0.25-1_0.09-2_1.24-3_0.41\", \"747_l_1_c_0_2_3-0_0.55-1_1.38-2_0.23-3_0.43\", \"748_l_1_c_0_1_3-0_2.0-1_0.43-2_0.95-3_1.49\", \"749_l_1_c_0_2_3-0_0.22-1_0.11-2_0.08-3_0.33\", \"750_l_1_c_0_1_3-0_0.57-1_0.5-2_0.18-3_0.17\", \"751_l_1_c_0_2_3-0_0.2-1_0.82-2_0.15-3_0.44\", \"752_l_1_c_0_1_3-0_0.42-1_0.24-2_0.1-3_1.67\", \"753_l_1_c_0_2_3-0_0.85-1_0.37-2_0.08-3_0.11\", \"754_l_1_c_0_1_3-0_0.08-1_0.11-2_0.38-3_0.67\", \"755_l_1_c_0_2_3-0_0.1-1_0.57-2_0.03-3_1.05\", \"756_l_1_c_0_1_3-0_0.15-1_0.46-2_0.2-3_1.4\", \"757_l_1_c_0_2_3-0_0.42-1_0.27-2_0.08-3_0.9\", \"758_l_1_c_0_1_3-0_1.26-1_0.09-2_0.15-3_0.38\", \"759_l_1_c_0_2_3-0_0.34-1_0.39-2_0.23-3_1.08\", \"760_l_1_c_0_1_3-0_0.07-1_0.28-2_0.19-3_0.07\", \"761_l_1_c_0_2_3-0_0.89-1_0.37-2_0.04-3_0.31\", \"762_l_1_c_0_1_3-0_0.02-1_0.01-2_1.11-3_0.43\", \"763_l_1_c_0_2_3-0_0.01-1_0.5-2_0.42-3_0.67\", \"764_l_1_c_0_1_3-0_0.1-1_0.14-2_0.23-3_0.33\", \"765_l_1_c_0_2_3-0_0.3-1_0.09-2_0.17-3_0.59\", \"766_l_1_c_0_1_3-0_1.21-1_0.29-2_0.32-3_0.22\", \"767_l_1_c_0_2_3-0_1.47-1_0.11-2_0.2-3_0.63\", \"768_l_1_c_0_1_3-0_0.18-1_0.29-2_0.07-3_0.17\", \"769_l_1_c_0_2_3-0_0.65-1_0.16-2_0.42-3_0.01\", \"770_l_1_c_0_1_3-0_0.11-1_0.27-2_0.78-3_0.0\", \"771_l_1_c_0_2_3-0_0.63-1_1.02-2_0.21-3_0.01\", \"772_l_1_c_0_1_3-0_1.06-1_0.76-2_1.05-3_0.47\", \"773_l_1_c_0_2_3-0_0.37-1_0.08-2_0.55-3_1.53\", \"774_l_1_c_0_1_3-0_0.37-1_0.23-2_0.79-3_0.08\", \"775_l_1_c_0_2_3-0_1.42-1_0.32-2_0.17-3_0.31\", \"776_l_1_c_0_1_3-0_0.07-1_0.21-2_0.57-3_0.23\", \"777_l_1_c_0_2_3-0_0.07-1_0.1-2_0.26-3_0.2\", \"778_l_1_c_0_1_3-0_1.0-1_0.41-2_0.09-3_0.44\", \"779_l_1_c_0_2_3-0_0.64-1_1.02-2_0.58-3_0.96\", \"780_l_1_c_0_1_3-0_0.92-1_0.34-2_1.19-3_0.12\", \"781_l_1_c_0_2_3-0_0.51-1_0.11-2_0.16-3_0.15\", \"782_l_1_c_0_1_3-0_0.18-1_0.6-2_0.45-3_0.12\", \"783_l_1_c_0_2_3-0_0.31-1_0.51-2_0.19-3_1.44\", \"784_l_1_c_0_1_3-0_0.37-1_0.47-2_1.04-3_0.24\", \"785_l_1_c_0_2_3-0_0.38-1_0.95-2_0.3-3_0.48\", \"786_l_1_c_0_1_3-0_0.17-1_0.17-2_0.25-3_0.11\", \"787_l_1_c_0_2_3-0_0.1-1_0.72-2_0.24-3_0.5\", \"788_l_1_c_0_1_3-0_1.06-1_0.23-2_0.59-3_0.0\", \"789_l_1_c_0_2_3-0_0.05-1_0.73-2_0.3-3_1.62\", \"790_l_1_c_0_1_3-0_0.67-1_0.44-2_0.23-3_1.13\", \"791_l_1_c_0_2_3-0_0.05-1_0.06-2_0.61-3_0.13\", \"792_l_1_c_0_1_3-0_0.18-1_0.07-2_0.55-3_1.37\", \"793_l_1_c_0_2_3-0_0.36-1_0.02-2_0.45-3_0.91\", \"794_l_1_c_0_1_3-0_1.08-1_0.28-2_0.68-3_0.37\", \"795_l_1_c_0_2_3-0_0.52-1_0.38-2_0.16-3_0.11\", \"796_l_1_c_0_1_3-0_0.41-1_0.03-2_0.71-3_0.33\", \"797_l_1_c_0_2_3-0_0.2-1_0.02-2_0.38-3_0.04\", \"798_l_1_c_0_1_3-0_1.01-1_0.0-2_0.86-3_1.02\", \"799_l_1_c_0_2_3-0_0.37-1_0.14-2_0.8-3_0.0\", \"800_l_1_c_0_1_3-0_0.25-1_0.17-2_0.1-3_0.91\", \"801_l_1_c_0_2_3-0_0.24-1_0.03-2_0.44-3_1.34\", \"802_l_1_c_0_1_3-0_0.18-1_0.01-2_0.64-3_1.06\", \"803_l_1_c_0_2_3-0_0.21-1_0.18-2_0.27-3_0.42\", \"804_l_1_c_0_1_3-0_0.14-1_0.27-2_0.01-3_0.07\", \"805_l_1_c_0_2_3-0_0.36-1_0.42-2_0.14-3_0.91\", \"806_l_1_c_0_1_3-0_0.22-1_0.04-2_0.1-3_0.25\", \"807_l_1_c_0_2_3-0_0.43-1_0.94-2_0.47-3_0.47\", \"808_l_1_c_1_2_3-0_1.39-1_0.45-2_0.18-3_0.46\", \"809_l_1_c_0_1_3-0_0.13-1_0.33-2_0.86-3_0.73\", \"810_l_1_c_0_2_3-0_0.62-1_0.45-2_0.74-3_0.75\", \"811_l_1_c_1_2_3-0_1.31-1_0.07-2_0.64-3_0.39\", \"812_l_1_c_0_1_3-0_0.29-1_0.13-2_0.36-3_0.67\", \"813_l_1_c_0_2_3-0_0.53-1_0.49-2_0.27-3_0.21\", \"814_l_1_c_1_2_3-0_0.38-1_0.04-2_0.12-3_0.41\", \"815_l_1_c_0_1_3-0_0.4-1_0.04-2_0.05-3_0.61\", \"816_l_1_c_0_2_3-0_0.02-1_0.44-2_0.33-3_0.37\", \"817_l_1_c_1_2_3-0_1.07-1_0.28-2_0.03-3_0.9\", \"818_l_1_c_0_1_3-0_0.77-1_0.45-2_0.74-3_0.3\", \"819_l_1_c_0_2_3-0_1.61-1_0.25-2_0.2-3_0.06\", \"820_l_1_c_1_2_3-0_1.2-1_0.14-2_0.29-3_0.65\", \"821_l_1_c_0_1_3-0_0.31-1_0.18-2_0.62-3_0.24\", \"822_l_1_c_0_2_3-0_0.47-1_0.22-2_0.56-3_0.38\", \"823_l_1_c_1_2_3-0_0.51-1_0.23-2_0.24-3_0.66\", \"824_l_1_c_0_1_3-0_0.87-1_0.35-2_0.18-3_0.43\", \"825_l_1_c_0_2_3-0_1.51-1_0.28-2_0.65-3_0.48\", \"826_l_1_c_1_2_3-0_1.72-1_0.47-2_0.4-3_0.11\", \"827_l_1_c_0_1_3-0_0.76-1_0.06-2_0.04-3_0.9\", \"828_l_1_c_0_2_3-0_0.44-1_0.74-2_0.07-3_1.12\", \"829_l_1_c_1_2_3-0_0.53-1_0.22-2_0.15-3_0.29\", \"830_l_1_c_0_1_3-0_0.07-1_0.23-2_0.21-3_0.06\", \"831_l_1_c_0_2_3-0_0.39-1_1.29-2_0.26-3_0.24\", \"832_l_1_c_1_2_3-0_0.64-1_0.39-2_0.41-3_0.07\", \"833_l_1_c_0_1_3-0_0.07-1_0.27-2_0.06-3_0.64\", \"834_l_1_c_0_2_3-0_1.1-1_0.55-2_0.14-3_0.15\", \"835_l_1_c_1_2_3-0_0.07-1_0.11-2_0.12-3_0.77\", \"836_l_1_c_0_1_3-0_0.83-1_0.57-2_0.36-3_0.88\", \"837_l_1_c_0_2_3-0_0.83-1_0.06-2_0.09-3_0.36\", \"838_l_1_c_1_2_3-0_0.21-1_0.55-2_0.01-3_0.49\", \"839_l_1_c_0_1_3-0_0.28-1_0.54-2_0.54-3_0.22\", \"840_l_1_c_0_2_3-0_0.36-1_0.2-2_0.18-3_0.36\", \"841_l_1_c_1_2_3-0_0.33-1_0.04-2_0.09-3_0.22\", \"842_l_1_c_0_1_3-0_0.48-1_0.1-2_0.59-3_0.72\", \"843_l_1_c_0_2_3-0_0.59-1_0.58-2_0.18-3_1.01\", \"844_l_1_c_1_2_3-0_0.38-1_0.18-2_0.06-3_0.18\", \"845_l_1_c_0_1_3-0_0.31-1_0.14-2_0.08-3_0.18\", \"846_l_1_c_0_2_3-0_0.53-1_0.04-2_0.33-3_0.15\", \"847_l_1_c_1_2_3-0_0.09-1_0.32-2_0.03-3_1.69\", \"848_l_1_c_0_1_3-0_0.03-1_0.18-2_0.86-3_0.91\", \"849_l_1_c_0_2_3-0_0.09-1_0.19-2_0.4-3_0.52\", \"850_l_1_c_1_2_3-0_1.42-1_0.08-2_0.39-3_0.34\", \"851_l_1_c_0_1_3-0_0.58-1_0.11-2_0.13-3_0.82\", \"852_l_1_c_0_2_3-0_0.04-1_0.14-2_0.28-3_0.04\", \"853_l_1_c_1_2_3-0_0.77-1_0.69-2_0.18-3_0.03\", \"854_l_1_c_0_1_3-0_1.39-1_0.07-2_0.17-3_0.19\", \"855_l_1_c_0_2_3-0_0.04-1_0.13-2_0.44-3_0.07\", \"856_l_1_c_1_2_3-0_2.19-1_0.03-2_0.01-3_0.19\", \"857_l_1_c_0_1_3-0_0.38-1_0.01-2_0.32-3_0.37\", \"858_l_1_c_0_2_3-0_0.37-1_0.18-2_0.6-3_0.58\", \"859_l_1_c_1_2_3-0_0.1-1_0.11-2_0.6-3_0.26\", \"860_l_1_c_0_1_3-0_0.4-1_0.01-2_0.42-3_0.08\", \"861_l_1_c_0_2_3-0_0.18-1_0.54-2_0.11-3_0.24\", \"862_l_1_c_1_2_3-0_0.75-1_0.33-2_0.2-3_0.83\", \"863_l_1_c_0_1_3-0_0.6-1_0.06-2_0.97-3_0.17\", \"864_l_1_c_0_2_3-0_0.19-1_0.49-2_0.37-3_0.17\", \"865_l_1_c_1_2_3-0_0.18-1_0.16-2_0.01-3_0.37\", \"866_l_1_c_0_1_3-0_0.18-1_0.23-2_0.39-3_0.36\", \"867_l_1_c_0_2_3-0_0.96-1_0.79-2_0.14-3_0.09\", \"868_l_1_c_1_2_3-0_0.59-1_0.04-2_0.27-3_0.74\", \"869_l_1_c_0_1_3-0_0.03-1_0.08-2_0.54-3_0.03\", \"870_l_1_c_0_2_3-0_0.45-1_0.05-2_0.15-3_0.24\", \"871_l_1_c_1_2_3-0_0.66-1_0.09-2_0.24-3_0.08\", \"872_l_1_c_0_1_3-0_1.55-1_0.18-2_0.17-3_0.35\", \"873_l_1_c_0_2_3-0_0.58-1_0.96-2_0.17-3_0.22\", \"874_l_1_c_1_2_3-0_0.37-1_0.63-2_0.42-3_0.31\", \"875_l_1_c_0_1_3-0_1.03-1_0.01-2_0.43-3_0.81\", \"876_l_1_c_0_2_3-0_0.03-1_0.21-2_0.29-3_1.09\", \"877_l_1_c_1_2_3-0_1.24-1_0.07-2_0.05-3_1.51\", \"878_l_1_c_0_1_3-0_0.28-1_0.26-2_0.92-3_0.44\", \"879_l_1_c_0_2_3-0_0.12-1_0.23-2_0.37-3_0.53\", \"880_l_1_c_1_2_3-0_0.44-1_0.52-2_0.35-3_0.07\", \"881_l_1_c_0_1_3-0_0.37-1_0.19-2_0.34-3_0.51\", \"882_l_1_c_0_2_3-0_0.46-1_0.35-2_0.36-3_0.0\", \"883_l_1_c_1_2_3-0_0.56-1_0.04-2_0.22-3_0.18\", \"884_l_1_c_0_1_3-0_0.9-1_0.1-2_0.01-3_0.57\", \"885_l_1_c_0_2_3-0_0.1-1_0.99-2_0.03-3_0.78\", \"886_l_1_c_1_2_3-0_0.77-1_0.15-2_0.16-3_0.17\", \"887_l_1_c_0_1_3-0_0.06-1_0.09-2_0.82-3_0.1\", \"888_l_1_c_0_2_3-0_0.64-1_0.69-2_0.0-3_0.67\", \"889_l_1_c_1_2_3-0_0.67-1_0.12-2_0.25-3_0.61\", \"890_l_1_c_0_1_3-0_0.31-1_0.07-2_0.64-3_0.16\", \"891_l_1_c_0_2_3-0_1.06-1_1.63-2_0.27-3_0.53\", \"892_l_1_c_1_2_3-0_2.27-1_0.26-2_0.25-3_0.39\", \"893_l_1_c_0_1_3-0_0.81-1_0.43-2_0.08-3_1.09\", \"894_l_1_c_0_2_3-0_0.05-1_0.3-2_0.14-3_0.52\", \"895_l_1_c_1_2_3-0_1.6-1_0.16-2_0.13-3_0.06\", \"896_l_1_c_0_1_3-0_0.62-1_0.07-2_0.02-3_0.26\", \"897_l_1_c_0_2_3-0_0.46-1_0.77-2_0.17-3_0.21\", \"898_l_1_c_1_2_3-0_1.35-1_0.03-2_0.62-3_1.39\", \"899_l_1_c_0_1_3-0_0.85-1_0.04-2_0.32-3_0.73\", \"900_l_1_c_0_2_3-0_0.7-1_0.31-2_0.0-3_0.08\", \"901_l_1_c_1_2_3-0_1.13-1_0.2-2_0.27-3_0.73\", \"902_l_1_c_0_1_3-0_0.47-1_0.14-2_0.02-3_0.28\", \"903_l_1_c_0_2_3-0_0.59-1_0.33-2_0.45-3_0.29\", \"904_l_1_c_1_2_3-0_1.03-1_0.62-2_0.47-3_0.1\", \"905_l_1_c_0_1_3-0_0.19-1_0.19-2_1.36-3_0.23\", \"906_l_1_c_0_2_3-0_0.61-1_0.01-2_0.08-3_0.92\", \"907_l_1_c_1_2_3-0_0.87-1_0.38-2_0.11-3_0.05\", \"908_l_1_c_0_1_3-0_0.76-1_0.2-2_0.05-3_0.08\", \"909_l_1_c_0_2_3-0_0.22-1_0.26-2_0.17-3_0.48\", \"910_l_1_c_1_2_3-0_0.19-1_0.08-2_0.05-3_1.63\", \"911_l_1_c_0_1_3-0_0.29-1_0.04-2_0.68-3_0.36\", \"912_l_1_c_0_2_3-0_0.18-1_0.26-2_0.5-3_0.52\", \"913_l_1_c_1_2_3-0_0.01-1_0.32-2_0.67-3_0.08\", \"914_l_1_c_0_1_3-0_0.35-1_0.13-2_0.74-3_0.68\", \"915_l_1_c_0_2_3-0_0.07-1_0.27-2_0.16-3_0.52\", \"916_l_1_c_1_2_3-0_0.24-1_0.26-2_0.09-3_0.2\", \"917_l_1_c_0_1_3-0_0.36-1_0.46-2_0.14-3_0.58\", \"918_l_1_c_0_2_3-0_0.99-1_0.73-2_0.65-3_0.03\", \"919_l_1_c_1_2_3-0_0.66-1_0.17-2_0.21-3_0.65\", \"920_l_1_c_0_1_3-0_0.1-1_0.34-2_0.13-3_0.52\", \"921_l_1_c_0_2_3-0_0.7-1_0.21-2_0.19-3_0.72\", \"922_l_1_c_1_2_3-0_0.28-1_0.19-2_0.13-3_0.04\", \"923_l_1_c_0_1_3-0_0.12-1_0.04-2_0.84-3_0.39\", \"924_l_1_c_0_2_3-0_1.07-1_0.16-2_0.09-3_0.05\", \"925_l_1_c_1_2_3-0_0.88-1_0.17-2_0.48-3_1.61\", \"926_l_1_c_0_1_3-0_0.99-1_0.12-2_1.32-3_0.07\", \"927_l_1_c_0_2_3-0_0.2-1_0.22-2_0.19-3_0.04\", \"928_l_1_c_1_2_3-0_1.84-1_0.33-2_0.08-3_0.35\", \"929_l_1_c_0_1_3-0_0.08-1_0.11-2_0.04-3_0.17\", \"930_l_1_c_2_3-0_1.09-1_0.6-2_0.17-3_1.01\", \"931_l_1_c_3-0_0.25-1_0.11-2_0.27-3_0.36\", \"932_l_1_c_3-0_0.65-1_1.06-2_0.38-3_1.03\", \"933_l_1_r-0_1.79-1_0.14-2_0.5-3_1.46\", \"934_l_1_r-0_0.48-1_0.47-2_0.33-3_0.68\", \"935_l_1_r-0_0.52-1_0.67-2_0.59-3_0.96\", \"936_l_1_r-0_1.43-1_0.68-2_0.03-3_0.49\", \"937_l_1_r-0_1.01-1_0.59-2_0.53-3_0.19\", \"938_l_1_r-0_0.11-1_0.71-2_0.32-3_0.88\", \"939_l_1_r-0_0.48-1_0.81-2_0.49-3_0.82\", \"940_l_1_r-0_0.44-1_1.08-2_0.54-3_1.36\", \"941_l_1_r-0_1.97-1_0.41-2_0.41-3_2.38\", \"942_l_1_r-0_0.18-1_0.25-2_0.08-3_0.25\", \"943_l_1_r-0_0.13-1_0.49-2_0.69-3_0.63\", \"944_l_1_r-0_0.63-1_0.9-2_0.2-3_0.77\", \"945_l_1_r-0_1.38-1_0.69-2_0.62-3_0.06\", \"946_l_1_r-0_1.43-1_0.83-2_0.24-3_1.68\", \"947_l_1_r-0_0.25-1_1.21-2_1.05-3_1.34\", \"948_l_1_r-0_0.21-1_0.31-2_1.09-3_1.14\", \"949_l_1_r-0_0.75-1_0.63-2_0.27-3_0.18\", \"950_l_1_r-0_1.44-1_0.2-2_0.19-3_0.15\", \"951_l_1_r-0_0.52-1_0.38-2_1.31-3_1.84\", \"952_l_1_r-0_0.06-1_0.5-2_0.04-3_0.37\", \"953_l_1_r-0_2.36-1_0.12-2_0.5-3_1.04\", \"954_l_1_r-0_0.28-1_0.18-2_0.71-3_0.85\", \"955_l_1_r-0_2.23-1_0.29-2_0.43-3_0.06\", \"956_l_1_r-0_0.08-1_0.04-2_0.09-3_0.83\", \"957_l_1_r-0_0.09-1_0.61-2_0.48-3_1.32\", \"958_l_1_r-0_2.86-1_0.06-2_1.06-3_0.73\", \"959_l_1_r-0_1.02-1_0.58-2_0.51-3_0.85\", \"960_l_1_r-0_0.73-1_0.4-2_0.47-3_0.54\", \"961_l_1_r-0_0.12-1_0.62-2_1.04-3_0.51\", \"962_l_1_r-0_0.74-1_0.06-2_0.52-3_0.04\", \"963_l_1_r-0_1.11-1_0.05-2_0.21-3_0.34\", \"964_l_1_r-0_0.36-1_0.31-2_1.11-3_1.7\", \"965_l_1_r-0_1.17-1_0.45-2_0.63-3_1.24\", \"966_l_1_r-0_0.51-1_0.56-2_0.39-3_0.31\", \"967_l_1_r-0_0.16-1_0.51-2_0.45-3_1.67\", \"968_l_1_r-0_0.23-1_0.22-2_1.08-3_0.77\", \"969_l_1_r-0_0.49-1_0.86-2_0.3-3_1.6\", \"970_l_1_r-0_1.5-1_0.76-2_0.17-3_0.56\", \"971_l_1_r-0_0.47-1_0.89-2_0.14-3_0.01\", \"972_l_1_r-0_0.93-1_0.4-2_0.83-3_1.14\", \"973_l_1_r-0_0.05-1_0.76-2_0.63-3_0.66\", \"974_l_1_r-0_0.29-1_0.61-2_0.27-3_2.31\", \"975_l_1_r-0_0.03-1_0.31-2_0.36-3_1.13\", \"976_l_1_r-0_0.45-1_0.47-2_0.08-3_0.55\", \"977_l_1_r-0_0.41-1_0.67-2_0.95-3_0.25\", \"978_l_1_r-0_0.4-1_0.43-2_0.72-3_0.93\", \"979_l_1_r-0_2.44-1_0.16-2_1.07-3_1.24\", \"980_l_1_r-0_1.82-1_1.23-2_1.28-3_0.79\", \"981_l_1_r-0_0.52-1_0.32-2_0.38-3_0.54\", \"982_l_1_r-0_0.13-1_0.09-2_0.1-3_1.07\", \"983_l_1_r-0_1.02-1_0.26-2_0.25-3_0.66\", \"984_l_1_r-0_0.07-1_0.4-2_0.8-3_2.37\", \"985_l_1_r-0_2.1-1_0.28-2_0.33-3_1.39\", \"986_l_1_r-0_0.08-1_0.62-2_0.87-3_1.56\", \"987_l_1_r-0_0.5-1_0.21-2_0.38-3_0.77\", \"988_l_1_r-0_0.35-1_0.9-2_0.76-3_0.09\", \"989_l_1_r-0_0.35-1_0.79-2_0.64-3_0.19\", \"990_l_1_r-0_1.96-1_0.37-2_0.59-3_0.9\", \"991_l_1_r-0_0.39-1_0.26-2_0.55-3_1.64\", \"992_l_1_r-0_1.41-1_0.77-2_0.94-3_2.11\", \"993_l_1_r-0_0.02-1_0.33-2_0.54-3_0.31\", \"994_l_1_r-0_0.19-1_0.29-2_1.49-3_0.44\", \"995_l_1_r-0_0.32-1_0.52-2_0.62-3_1.61\", \"996_l_1_r-0_0.67-1_1.58-2_0.17-3_1.19\", \"997_l_1_r-0_2.06-1_0.3-2_0.19-3_0.22\", \"998_l_1_r-0_0.12-1_0.9-2_1.05-3_1.46\", \"999_l_1_r-0_1.59-1_0.3-2_0.59-3_1.73\", \"1000_l_1_r-0_0.07-1_0.03-2_0.07-3_0.03\", \"1001_l_1_r-0_1.01-1_0.02-2_0.47-3_0.42\", \"1002_l_1_r-0_0.75-1_0.05-2_0.5-3_1.43\", \"1003_l_1_r-0_0.82-1_0.13-2_0.09-3_1.08\", \"1004_l_1_r-0_1.31-1_0.06-2_0.0-3_0.04\", \"1005_l_1_r-0_0.9-1_1.08-2_0.55-3_0.44\", \"1006_l_1_r-0_0.85-1_0.14-2_0.11-3_1.14\", \"1007_l_1_r-0_0.86-1_0.95-2_0.13-3_0.58\", \"1008_l_1_r-0_0.62-1_0.93-2_0.54-3_0.51\", \"1009_l_1_r-0_0.04-1_0.05-2_0.72-3_0.63\", \"1010_l_1_r-0_1.11-1_0.41-2_0.75-3_1.04\", \"1011_l_1_r-0_0.94-1_0.29-2_1.06-3_2.42\", \"1012_l_1_r-0_1.19-1_0.25-2_0.12-3_1.26\", \"1013_l_1_r-0_0.05-1_0.26-2_0.09-3_0.03\", \"1014_l_1_r-0_0.87-1_0.34-2_0.13-3_0.8\", \"1015_l_1_r-0_0.44-1_0.48-2_0.23-3_0.42\", \"1016_l_1_r-0_1.3-1_0.51-2_0.65-3_0.06\", \"1017_l_1_r-0_1.52-1_0.44-2_0.7-3_1.62\", \"1018_l_1_r-0_0.24-1_0.89-2_0.21-3_0.24\", \"1019_l_1_r-0_0.38-1_0.79-2_0.03-3_0.33\", \"1020_l_1_r-0_1.43-1_0.38-2_0.78-3_1.07\", \"1021_l_1_r-0_0.54-1_0.74-2_0.49-3_1.02\", \"1022_l_1_r-0_0.03-1_0.2-2_0.32-3_0.85\", \"1023_l_1_r-0_0.85-1_0.87-2_0.57-3_0.83\", \"1024_l_1_r-0_1.54-1_0.16-2_0.62-3_0.56\", \"1025_l_1_r-0_0.97-1_0.3-2_0.3-3_0.19\", \"1026_l_1_r-0_0.61-1_0.01-2_0.33-3_1.38\", \"1027_l_1_r-0_1.47-1_0.4-2_0.45-3_0.55\", \"1028_l_1_r-0_0.91-1_0.25-2_1.09-3_0.4\", \"1029_l_1_r-0_0.08-1_0.31-2_0.39-3_0.14\", \"1030_l_1_r-0_0.14-1_1.01-2_0.17-3_1.14\", \"1031_l_1_r-0_1.1-1_0.15-2_1.05-3_1.45\", \"1032_l_1_r-0_0.84-1_0.63-2_0.75-3_2.04\", \"1033_l_1_r-0_0.59-1_1.06-2_1.15-3_1.05\", \"1034_l_1_r-0_1.36-1_0.01-2_0.49-3_1.12\", \"1035_l_1_r-0_0.08-1_0.22-2_0.98-3_0.57\", \"1036_l_1_r-0_1.51-1_0.23-2_0.15-3_0.73\", \"1037_l_1_r-0_0.55-1_1.36-2_0.23-3_1.2\", \"1038_l_1_r-0_1.27-1_1.25-2_0.1-3_0.22\", \"1039_l_1_r-0_1.42-1_0.37-2_0.34-3_0.75\", \"1040_l_1_r-0_0.87-1_0.13-2_0.34-3_0.21\", \"1041_l_1_r-0_2.2-1_0.18-2_0.12-3_0.75\", \"1042_l_1_r-0_0.22-1_0.51-2_1.14-3_0.98\", \"1043_l_1_r-0_0.4-1_0.44-2_0.74-3_0.86\", \"1044_l_1_r-0_0.02-1_0.19-2_0.59-3_0.54\", \"1045_l_1_r-0_0.12-1_0.79-2_0.26-3_0.34\", \"1046_l_1_r-0_1.03-1_0.2-2_0.16-3_0.4\", \"1047_l_1_r-0_0.13-1_0.11-2_0.92-3_0.96\", \"1048_l_1_r-0_0.42-1_0.95-2_0.75-3_0.04\", \"1049_l_1_r-0_0.58-1_0.45-2_0.29-3_1.65\", \"1050_l_1_r-0_2.4-1_0.03-2_0.26-3_1.39\", \"1051_l_1_r-0_0.92-1_0.38-2_0.92-3_0.08\", \"1052_l_1_r-0_1.67-1_0.23-2_0.23-3_0.39\", \"1053_l_1_r-0_1.22-1_0.02-2_0.23-3_0.44\", \"1054_l_1_r-0_0.62-1_0.75-2_0.17-3_0.94\", \"1055_l_1_r-0_0.45-1_0.17-2_0.12-3_2.21\", \"1056_l_1_r-0_0.3-1_0.55-2_1.4-3_0.51\", \"1057_l_1_r-0_1.12-1_1.48-2_0.35-3_0.28\", \"1058_l_1_r-0_1.97-1_0.59-2_0.38-3_1.2\", \"1059_l_1_r-0_0.37-1_1.12-2_0.12-3_0.14\", \"1060_l_1_r-0_0.12-1_0.51-2_0.24-3_0.06\", \"1061_l_1_r-0_1.24-1_0.31-2_0.83-3_0.54\", \"1062_l_1_r-0_0.49-1_0.28-2_0.2-3_1.13\", \"1063_l_1_r-0_0.24-1_0.21-2_0.08-3_0.05\", \"1064_l_1_r-0_0.24-1_1.12-2_0.71-3_0.75\", \"1065_l_1_r-0_0.89-1_1.83-2_0.58-3_0.71\", \"1066_l_1_r-0_0.13-1_1.62-2_0.33-3_1.38\", \"1067_l_1_r-0_0.57-1_0.43-2_0.48-3_0.09\", \"1068_l_1_r-0_0.35-1_0.56-2_0.58-3_0.38\", \"1069_l_1_r-0_1.73-1_0.77-2_0.46-3_0.31\", \"1070_l_1_r-0_2.03-1_0.03-2_0.45-3_0.32\", \"1071_l_1_r-0_0.4-1_0.39-2_0.93-3_0.89\", \"1072_l_1_r-0_0.43-1_0.45-2_0.43-3_1.75\", \"1073_l_1_r-0_0.22-1_0.41-2_0.35-3_0.9\", \"1074_l_1_r-0_0.37-1_0.39-2_0.81-3_1.36\", \"1075_l_1_r-0_0.2-1_0.02-2_0.07-3_0.97\", \"1076_l_1_r-0_0.56-1_0.19-2_0.58-3_0.75\", \"1077_l_1_r-0_1.2-1_0.11-2_0.09-3_0.1\", \"1078_l_1_r-0_0.05-1_0.31-2_0.17-3_1.33\", \"1079_l_1_r-0_0.6-1_0.15-2_0.18-3_1.34\", \"1080_l_1_r-0_1.08-1_0.92-2_0.38-3_1.29\", \"1081_l_1_r-0_1.21-1_0.61-2_0.38-3_0.54\", \"1082_l_1_r-0_0.07-1_0.08-2_0.06-3_0.03\", \"1083_l_1_r-0_0.93-1_0.13-2_0.05-3_1.21\", \"1084_l_1_r-0_0.49-1_0.13-2_0.43-3_0.66\", \"1085_l_1_r-0_0.72-1_0.85-2_0.68-3_1.87\", \"1086_l_1_r-0_1.02-1_0.16-2_0.14-3_0.78\", \"1087_l_1_r-0_2.57-1_0.77-2_0.18-3_1.09\", \"1088_l_1_r-0_0.63-1_0.58-2_0.18-3_1.53\", \"1089_l_1_r-0_0.37-1_0.34-2_1.12-3_0.27\", \"1090_l_1_r-0_0.35-1_0.07-2_0.85-3_0.72\", \"1091_l_1_r-0_1.02-1_0.4-2_0.51-3_1.21\", \"1092_l_1_r-0_3.07-1_0.65-2_0.61-3_0.57\", \"1093_l_1_r-0_0.57-1_0.65-2_0.45-3_0.47\", \"1094_l_1_r-0_0.77-1_0.19-2_0.48-3_0.51\", \"1095_l_1_r-0_1.08-1_0.83-2_1.14-3_0.52\", \"1096_l_1_r-0_0.37-1_0.35-2_0.39-3_1.67\", \"1097_l_1_r-0_0.16-1_0.27-2_0.16-3_0.8\", \"1098_l_1_r-0_2.15-1_0.71-2_0.61-3_0.37\", \"1099_l_1_r-0_0.3-1_0.3-2_0.69-3_1.23\", \"1100_l_1_r-0_0.17-1_0.1-2_0.35-3_0.22\", \"1101_l_1_r-0_0.57-1_0.13-2_0.25-3_0.7\", \"1102_l_1_r-0_0.65-1_0.09-2_0.37-3_0.9\", \"1103_l_1_r-0_0.18-1_0.64-2_0.12-3_2.11\", \"1104_l_1_r-0_0.79-1_0.39-2_0.28-3_2.63\", \"1105_l_1_r-0_0.28-1_0.36-2_0.26-3_2.6\", \"1106_l_1_r-0_0.63-1_0.02-2_0.59-3_0.45\", \"1107_l_1_r-0_1.3-1_0.33-2_0.35-3_0.42\", \"1108_l_1_r-0_1.64-1_0.67-2_0.96-3_0.37\", \"1109_l_1_r-0_0.02-1_0.18-2_1.05-3_0.74\", \"1110_l_1_r-0_0.55-1_0.02-2_0.62-3_0.93\", \"1111_l_1_r-0_0.4-1_0.7-2_0.63-3_1.21\", \"1112_l_1_r-0_1.37-1_0.15-2_0.6-3_0.17\", \"1113_l_1_r-0_2.07-1_0.62-2_0.92-3_0.59\", \"1114_l_1_r-0_0.54-1_0.3-2_0.53-3_1.18\", \"1115_l_1_r-0_1.42-1_0.34-2_0.59-3_0.2\", \"1116_l_1_r-0_0.58-1_0.64-2_1.17-3_2.24\", \"1117_l_1_r-0_0.32-1_0.62-2_0.27-3_0.15\", \"1118_l_1_r-0_0.76-1_0.87-2_0.46-3_0.13\", \"1119_l_1_r-0_0.62-1_0.1-2_0.06-3_0.55\", \"1120_l_1_r-0_0.97-1_0.86-2_0.13-3_0.26\", \"1121_l_1_r-0_1.53-1_0.85-2_0.02-3_1.53\", \"1122_l_1_r-0_0.1-1_0.38-2_0.62-3_0.82\", \"1123_l_1_r-0_0.78-1_0.73-2_0.51-3_0.48\", \"1124_l_1_r-0_0.23-1_0.8-2_0.1-3_2.14\", \"1125_l_1_r-0_0.44-1_0.26-2_0.4-3_0.35\", \"1126_l_1_r-0_1.38-1_1.22-2_0.02-3_0.23\", \"1127_l_1_r-0_1.06-1_1.03-2_0.2-3_0.31\", \"1128_l_1_r-0_1.35-1_0.68-2_0.03-3_1.03\", \"1129_l_1_r-0_0.35-1_0.92-2_0.98-3_0.25\", \"1130_l_1_r-0_1.81-1_0.41-2_0.77-3_0.84\", \"1131_l_1_r-0_0.78-1_0.57-2_0.38-3_0.8\", \"1132_l_1_r-0_0.69-1_1.51-2_0.38-3_0.49\", \"1133_l_1_r-0_0.08-1_0.7-2_0.76-3_0.2\", \"1134_l_1_r-0_1.14-1_0.42-2_0.58-3_0.66\", \"1135_l_1_r-0_0.22-1_0.01-2_0.81-3_2.49\", \"1136_l_1_r-0_0.96-1_1.14-2_0.58-3_0.3\", \"1137_l_1_r-0_0.45-1_0.17-2_0.74-3_0.9\", \"1138_l_1_r-0_0.58-1_0.2-2_1.39-3_0.09\", \"1139_l_1_r-0_0.03-1_0.44-2_0.0-3_2.16\", \"1140_l_1_r-0_0.65-1_0.91-2_0.25-3_0.93\", \"1141_l_1_r-0_0.26-1_0.95-2_0.57-3_1.86\", \"1142_l_1_r-0_1.5-1_0.02-2_0.22-3_0.47\", \"1143_l_1_r-0_0.88-1_0.16-2_0.33-3_0.54\", \"1144_l_1_r-0_0.37-1_1.12-2_0.44-3_0.13\", \"1145_l_1_r-0_0.71-1_0.53-2_0.47-3_0.2\", \"1146_l_1_r-0_0.89-1_0.93-2_1.08-3_1.36\", \"1147_l_1_r-0_0.22-1_0.06-2_0.6-3_0.65\", \"1148_l_1_r-0_0.95-1_1.12-2_0.78-3_0.43\", \"1149_l_1_r-0_0.45-1_0.33-2_0.21-3_0.49\", \"1150_l_1_r-0_0.95-1_0.44-2_0.29-3_0.79\", \"1151_l_1_r-0_0.21-1_0.69-2_0.13-3_2.13\", \"1152_l_1_r-0_0.84-1_0.26-2_0.02-3_0.24\", \"1153_l_1_r-0_0.37-1_0.29-2_0.77-3_1.31\", \"1154_l_1_r-0_1.2-1_0.12-2_0.13-3_0.28\", \"1155_l_1_r-0_1.66-1_0.9-2_0.59-3_1.88\", \"1156_l_1_r-0_1.41-1_0.55-2_0.03-3_0.62\", \"1157_l_1_r-0_0.29-1_0.79-2_0.88-3_1.55\", \"1158_l_1_r-0_0.44-1_0.09-2_0.53-3_0.35\", \"1159_l_1_r-0_2.17-1_0.1-2_0.99-3_1.97\", \"1160_l_1_r-0_0.26-1_0.55-2_0.27-3_1.05\", \"1161_l_1_r-0_1.16-1_0.41-2_0.91-3_1.0\", \"1162_l_1_r-0_0.65-1_0.49-2_1.04-3_1.09\", \"1163_l_1_r-0_0.07-1_0.63-2_0.86-3_0.02\", \"1164_l_1_r-0_1.47-1_1.07-2_0.32-3_0.75\", \"1165_l_1_r-0_1.1-1_0.28-2_0.65-3_0.3\", \"1166_l_1_r-0_1.14-1_0.76-2_0.78-3_0.86\", \"1167_l_1_r-0_1.8-1_0.24-2_0.05-3_0.49\", \"1168_l_1_r-0_0.52-1_0.17-2_0.27-3_0.26\", \"1169_l_1_r-0_1.24-1_0.6-2_0.25-3_0.73\", \"1170_l_1_r-0_0.81-1_0.88-2_0.37-3_1.23\", \"1171_l_1_r-0_2.15-1_0.71-2_0.59-3_0.1\", \"1172_l_1_r-0_0.28-1_0.03-2_0.9-3_1.37\", \"1173_l_1_r-0_2.02-1_0.65-2_0.95-3_1.95\", \"1174_l_1_r-0_1.05-1_0.64-2_0.53-3_2.49\", \"1175_l_1_r-0_0.7-1_0.2-2_0.22-3_0.01\", \"1176_l_1_r-0_2.01-1_0.74-2_0.37-3_0.44\", \"1177_l_1_r-0_0.73-1_0.91-2_0.97-3_1.77\", \"1178_l_1_r-0_1.26-1_0.61-2_0.91-3_1.47\", \"1179_l_1_r-0_1.23-1_0.16-2_0.15-3_2.8\", \"1180_l_1_r-0_0.5-1_0.79-2_0.32-3_0.79\", \"1181_l_1_r-0_1.39-1_0.56-2_0.63-3_0.97\", \"1182_l_1_r-0_0.6-1_0.3-2_1.42-3_0.24\", \"1183_l_1_r-0_1.23-1_0.14-2_0.07-3_0.88\", \"1184_l_1_r-0_0.45-1_0.12-2_0.31-3_0.3\", \"1185_l_1_r-0_0.42-1_1.16-2_0.4-3_1.73\", \"1186_l_1_r-0_0.89-1_0.17-2_0.78-3_1.79\", \"1187_l_1_r-0_0.23-1_0.19-2_0.28-3_1.26\", \"1188_l_1_r-0_0.78-1_0.36-2_0.1-3_1.5\", \"1189_l_1_r-0_0.44-1_0.25-2_1.26-3_1.08\", \"1190_l_1_r-0_0.17-1_0.03-2_0.99-3_0.21\", \"1191_l_1_r-0_1.24-1_0.52-2_0.15-3_0.77\", \"1192_l_1_r-0_1.12-1_0.3-2_0.97-3_0.46\", \"1193_l_1_r-0_0.71-1_0.14-2_0.38-3_1.75\", \"1194_l_1_r-0_0.3-1_0.49-2_0.69-3_0.32\", \"1195_l_1_r-0_1.08-1_0.91-2_0.05-3_0.52\", \"1196_l_1_r-0_0.52-1_0.7-2_0.05-3_1.14\", \"1197_l_1_r-0_1.13-1_0.06-2_0.3-3_0.69\", \"1198_l_1_r-0_1.91-1_0.28-2_0.25-3_1.67\", \"1199_l_1_r-0_1.68-1_0.9-2_0.98-3_0.45\", \"1200_l_1_r-0_0.1-1_0.38-2_1.32-3_0.63\", \"1201_l_1_r-0_0.5-1_0.17-2_0.44-3_0.95\", \"1202_l_1_r-0_0.33-1_0.92-2_0.7-3_1.36\", \"1203_l_1_r-0_0.81-1_0.22-2_0.47-3_1.68\", \"1204_l_1_r-0_0.59-1_0.7-2_0.67-3_0.88\", \"1205_l_1_r-0_0.65-1_0.09-2_0.19-3_0.97\", \"1206_l_1_r-0_1.22-1_0.14-2_0.24-3_1.64\", \"1207_l_1_r-0_0.72-1_0.53-2_0.46-3_0.84\", \"1208_l_1_r-0_0.01-1_0.25-2_0.06-3_0.48\", \"1209_l_1_r-0_0.21-1_0.37-2_0.28-3_0.14\", \"1210_l_1_r-0_1.79-1_0.15-2_0.09-3_1.37\", \"1211_l_1_r-0_1.67-1_1.03-2_0.12-3_0.15\", \"1212_l_1_r-0_0.0-1_0.2-2_0.43-3_0.18\", \"1213_l_1_r-0_1.07-1_0.22-2_0.61-3_1.43\", \"1214_l_1_r-0_1.07-1_0.2-2_0.15-3_0.69\", \"1215_l_1_r-0_0.26-1_0.2-2_0.84-3_0.87\", \"1216_l_1_r-0_0.08-1_0.31-2_0.21-3_2.2\", \"1217_l_1_r-0_1.09-1_0.05-2_1.56-3_2.26\", \"1218_l_1_r-0_0.21-1_1.37-2_0.34-3_0.27\", \"1219_l_1_r-0_3.37-1_0.56-2_0.08-3_0.15\", \"1220_l_1_r-0_0.54-1_0.84-2_0.35-3_0.15\", \"1221_l_1_r-0_0.23-1_0.52-2_0.27-3_1.98\", \"1222_l_1_r-0_0.3-1_0.74-2_0.08-3_0.17\", \"1223_l_1_r-0_0.76-1_0.22-2_0.69-3_1.83\", \"1224_l_1_r-0_0.55-1_0.96-2_0.11-3_1.54\", \"1225_l_1_r-0_0.15-1_0.35-2_0.94-3_1.23\", \"1226_l_1_r-0_1.56-1_1.06-2_0.05-3_0.24\", \"1227_l_1_r-0_0.09-1_0.46-2_0.12-3_0.07\", \"1228_l_1_r-0_1.04-1_1.13-2_0.28-3_0.69\", \"1229_l_1_r-0_0.87-1_0.13-2_0.05-3_1.48\", \"1230_l_1_r-0_0.03-1_1.38-2_1.01-3_0.18\", \"1231_l_1_r-0_0.61-1_0.16-2_0.51-3_0.72\", \"1232_l_1_r-0_0.62-1_0.18-2_0.27-3_0.19\", \"1233_l_1_r-0_0.28-1_0.07-2_0.74-3_0.25\", \"1234_l_1_r-0_1.13-1_1.22-2_1.09-3_0.47\", \"1235_l_1_r-0_0.14-1_0.02-2_0.06-3_0.77\", \"1236_l_1_r-0_0.86-1_0.62-2_0.96-3_1.19\", \"1237_l_1_r-0_1.0-1_0.2-2_0.18-3_1.08\", \"1238_l_1_r-0_0.76-1_0.44-2_0.6-3_0.57\", \"1239_l_1_r-0_0.52-1_0.19-2_0.25-3_0.59\", \"1240_l_1_r-0_2.26-1_0.02-2_0.35-3_1.32\", \"1241_l_1_r-0_0.93-1_0.06-2_0.34-3_0.42\", \"1242_l_1_r-0_2.52-1_0.59-2_0.12-3_0.44\", \"1243_l_1_r-0_0.74-1_0.09-2_0.16-3_0.46\", \"1244_l_1_r-0_0.26-1_1.14-2_0.79-3_0.09\", \"1245_l_1_r-0_0.52-1_0.33-2_0.08-3_1.8\", \"1246_l_1_r-0_0.48-1_0.14-2_0.99-3_1.23\", \"1247_l_1_r-0_0.42-1_0.57-2_1.02-3_1.36\", \"1248_l_1_r-0_0.11-1_0.2-2_0.1-3_0.9\", \"1249_l_1_r-0_0.55-1_1.0-2_0.92-3_0.05\", \"1250_l_1_r-0_0.86-1_0.28-2_0.21-3_0.22\", \"1251_l_1_r-0_0.5-1_0.39-2_0.75-3_1.4\", \"1252_l_1_r-0_0.77-1_0.23-2_0.71-3_0.22\", \"1253_l_1_r-0_0.96-1_0.26-2_0.56-3_0.36\", \"1254_l_1_r-0_0.56-1_0.24-2_0.13-3_1.43\", \"1255_l_1_r-0_0.16-1_0.61-2_0.15-3_1.24\", \"1256_l_1_r-0_0.86-1_0.2-2_0.42-3_0.66\", \"1257_l_1_r-0_0.09-1_1.09-2_0.75-3_1.99\", \"1258_l_1_r-0_0.71-1_0.07-2_0.08-3_0.12\", \"1259_l_1_r-0_0.02-1_1.14-2_0.59-3_2.0\", \"1260_l_1_r-0_1.23-1_0.73-2_0.42-3_0.76\", \"1261_l_1_r-0_0.35-1_0.38-2_0.66-3_0.04\", \"1262_l_1_r-0_0.48-1_0.67-2_0.25-3_1.48\", \"1263_l_1_r-0_2.08-1_0.17-2_0.28-3_0.03\", \"1264_l_1_r-0_0.25-1_0.15-2_0.03-3_0.36\", \"1265_l_1_r-0_0.05-1_0.1-2_0.89-3_1.69\", \"1266_l_1_r-0_2.61-1_0.08-2_0.12-3_1.16\", \"1267_l_1_r-0_0.79-1_0.63-2_0.84-3_0.57\", \"1268_l_1_r-0_0.46-1_0.14-2_0.24-3_0.74\", \"1269_l_1_r-0_0.46-1_0.25-2_0.32-3_0.25\", \"1270_l_1_r-0_1.02-1_1.66-2_0.17-3_0.63\", \"1271_l_1_r-0_1.89-1_0.66-2_0.42-3_0.04\", \"1272_l_1_r-0_0.56-1_0.35-2_1.76-3_0.09\", \"1273_l_1_r-0_0.79-1_0.43-2_0.16-3_1.49\", \"1274_l_1_r-0_1.3-1_0.25-2_0.67-3_0.9\", \"1275_l_1_r-0_0.59-1_0.16-2_0.87-3_0.93\", \"1276_l_1_r-0_0.05-1_0.16-2_0.84-3_1.93\", \"1277_l_1_r-0_0.02-1_0.06-2_0.57-3_1.63\", \"1278_l_1_r-0_1.34-1_0.08-2_0.42-3_0.73\", \"1279_l_1_r-0_1.39-1_0.57-2_0.22-3_1.83\", \"1280_l_1_r-0_0.66-1_0.26-2_0.24-3_0.75\", \"1281_l_1_r-0_0.06-1_0.8-2_0.34-3_0.96\", \"1282_l_1_r-0_0.39-1_0.42-2_0.27-3_0.32\", \"1283_l_1_r-0_0.52-1_0.14-2_1.03-3_0.19\", \"1284_l_1_r-0_0.08-1_0.09-2_0.79-3_0.95\", \"1285_l_1_r-0_0.98-1_0.99-2_0.48-3_0.29\", \"1286_l_1_r-0_0.16-1_0.38-2_0.63-3_0.29\", \"1287_l_1_r-0_0.52-1_0.45-2_0.03-3_0.71\", \"1288_l_1_r-0_1.23-1_1.0-2_0.02-3_0.6\", \"1289_l_1_r-0_0.01-1_0.87-2_0.41-3_0.13\", \"1290_l_1_r-0_0.82-1_1.11-2_0.69-3_0.13\", \"1291_l_1_r-0_0.79-1_0.93-2_0.1-3_0.49\", \"1292_l_1_r-0_0.74-1_1.43-2_0.86-3_1.0\", \"1293_l_1_r-0_0.44-1_0.07-2_0.26-3_0.11\", \"1294_l_1_r-0_1.23-1_0.63-2_0.69-3_0.71\", \"1295_l_1_r-0_0.28-1_0.09-2_0.61-3_1.94\", \"1296_l_1_r-0_0.09-1_0.12-2_0.87-3_1.4\", \"1297_l_1_r-0_0.93-1_0.04-2_0.06-3_0.52\", \"1298_l_1_r-0_1.73-1_0.04-2_0.69-3_0.26\", \"1299_l_1_r-0_0.53-1_0.36-2_0.66-3_1.2\", \"1300_l_1_r-0_0.67-1_0.37-2_0.98-3_0.69\", \"1301_l_1_r-0_0.54-1_0.33-2_0.77-3_0.53\", \"1302_l_1_r-0_1.06-1_0.73-2_0.51-3_0.32\", \"1303_l_1_r-0_0.13-1_0.12-2_0.48-3_0.39\", \"1304_l_1_r-0_0.36-1_0.11-2_0.11-3_0.21\", \"1305_l_1_r-0_0.51-1_1.22-2_1.43-3_0.44\", \"1306_l_1_r-0_0.43-1_0.26-2_0.44-3_0.0\", \"1307_l_1_r-0_1.72-1_0.03-2_0.02-3_1.3\", \"1308_l_1_r-0_1.28-1_0.4-2_0.16-3_1.94\", \"1309_l_1_r-0_1.33-1_0.13-2_0.93-3_0.71\", \"1310_l_1_r-0_0.61-1_0.54-2_0.59-3_1.22\", \"1311_l_1_r-0_0.1-1_0.39-2_0.49-3_0.03\", \"1312_l_1_r-0_0.03-1_0.41-2_0.32-3_1.69\", \"1313_l_1_r-0_0.42-1_0.73-2_0.12-3_2.04\", \"1314_l_1_r-0_0.19-1_0.53-2_0.02-3_0.71\", \"1315_l_1_r-0_0.13-1_0.65-2_0.23-3_0.97\", \"1316_l_1_r-0_0.41-1_0.81-2_0.49-3_1.85\", \"1317_l_1_r-0_1.76-1_1.08-2_0.21-3_0.72\", \"1318_l_1_r-0_1.07-1_0.01-2_0.28-3_0.5\", \"1319_l_1_r-0_0.98-1_1.38-2_0.63-3_0.85\", \"1320_l_1_r-0_1.18-1_0.06-2_0.66-3_0.59\", \"1321_l_1_r-0_0.14-1_0.19-2_0.72-3_1.24\", \"1322_l_1_r-0_1.03-1_1.2-2_0.44-3_0.47\", \"1323_l_1_r-0_0.66-1_0.56-2_0.24-3_1.18\", \"1324_l_1_r-0_0.19-1_0.27-2_0.33-3_0.0\", \"1325_l_1_r-0_1.62-1_0.43-2_0.53-3_0.72\", \"1326_l_1_r-0_1.21-1_1.13-2_0.34-3_0.58\", \"1327_l_1_r-0_0.44-1_0.13-2_0.85-3_0.72\", \"1328_l_1_r-0_0.18-1_0.5-2_0.7-3_0.02\", \"1329_l_1_r-0_0.21-1_1.55-2_0.12-3_0.14\", \"1330_l_1_r-0_0.34-1_0.64-2_0.24-3_1.14\", \"1331_l_1_r-0_0.14-1_0.52-2_0.6-3_0.41\"], \"type\": \"scatter3d\", \"x\": [1.9941935946719802, 0.7327219477256739, -0.3901592202544236, 0.09905144553504108, 1.393003850076552, 0.8230494392451315, 1.994291187932912, 0.06144806240165579, -1.3669594766332147, -0.4075801963906722, 0.21020370577245773, -2.843326558865777, 1.101667388903934, 0.19368053680172181, 1.493111583029874, 0.3877130841590595, 0.4189353668477245, -1.29180323869109, 1.187060024917168, 0.025377725380463678, -3.040746562890056, 0.09476104098157823, 0.6104496022279435, -1.5701746542269583, -1.5542319872024237, -1.2621173617279267, 0.5688677498190926, -1.4719595912076788, 0.25594282339596086, -1.7149598188024238, -0.049210754124953016, -1.065893495750444, -0.2202841362800434, -1.1617190637409587, 0.5019195884685856, -1.2887507733313188, 1.9160864679025518, 0.44500431809031316, -1.616478061385226, -1.8929011489105387, 0.09267793907151312, -1.5529708009438528, -1.312527205711782, 1.0625325578744804, 0.12954799205237766, 0.279610086206044, -0.6628237817779279, 0.07615721057456648, -0.5476889546511086, 1.4692361034541648, -1.7716717516213065, 0.36673769658888666, 0.10773484618245388, 1.380935510340123, -1.1631386832003623, 0.23929788631721172, 0.15493222412302132, -0.8660131642687257, -0.7263344591447957, -1.285488851994287, 0.3069941581329694, -2.372298403056199, -1.532352465580649, 0.4746057950007778, 1.165617397434001, -1.3510304063103837, -0.6103147542177823, 3.2675467595777326, 1.485364222982895, 0.16036483848203908, 0.05489959170001124, -2.307883854909769, 0.41918810021231945, -2.9554009566039374, 1.6148661955974881, -3.3023038961774036, 0.4241892654601964, -0.9752172625642683, 1.5914346126094454, 0.4231112845819378, 0.45488871550320065, -0.5916053323203084, 1.9970268146688719, 0.21614725523648093, -2.315874876712198, -0.6022035267294035, -2.5547995561092884, -0.8473040767745333, 0.07835629829243662, -3.1366157057549175, -0.1458038583916207, -0.41816035213542624, -1.7719945559704788, -3.7178362195186887, -1.6335132613331675, 0.8915926918740362, -0.9524270041258497, 0.005618473278605096, 0.09646857417664312, 0.4890604502548843, 1.2061622895119366, 2.295297751312019, -0.27974064230991236, 1.0595644689503456, -2.4693533163969525, 0.7791152320461068, 1.9367456692808709, 0.37167732688546895, 0.36962232767388237, -1.4230118806523007, 0.06691371825146564, -0.750952535802264, -0.9992652776244962, 0.7084419622145901, -1.947687821172713, -2.6075386603932564, 0.1798439983998723, 0.31460826742144987, -0.5111253217999492, 0.3774192436326018, -0.1690630998610697, 0.3292217356387688, -2.6697671472756923, -0.0520026044270534, -1.4702435942480923, 0.054499035859210565, 0.1816676683390539, 0.36392431597493435, 1.0806572694892198, -2.1949805996701928, -1.001681108886157, 1.0128876406394682, -1.7670704832529407, 0.552608805335592, 0.27109641759562675, 0.5564541108597512, -0.9135589375707288, -0.214167066170032, 1.1047183536065894, -0.3628388876891001, -1.2063667409564873, 0.4326288673474661, -1.3945261583430277, -0.8916075291031825, -1.6471271825496174, -3.0607318643146755, 0.46443691826175515, 0.8331256388419281, -0.38415764860977897, -0.40491183768735584, -0.16758554576666984, -1.9132826943926402, -0.7734171827155676, 1.6077832214155103, -1.1994055546188163, 0.30709264215441645, 1.1275298035807797, -1.4823248232351878, 0.8687895156684011, 1.5079132053130921, -4.204313177973695, -0.7592422326838111, -1.533119052266632, -0.5340207853551152, 0.07218884934592551, 0.39266434383793225, -0.6437185253071529, -1.657590695054058, -1.1035093270836684, -1.9900238773814158, 0.8347588428309309, 0.8305929052020642, -1.4154227000461097, -1.7012310470531826, 1.8659727550230958, -1.3240391243683938, 0.5961485869740861, -0.592566830932157, -0.8404181736966254, 0.3056657991285725, -1.0063150097317388, -0.0927023332162259, 0.02687811894236658, 0.0892867165882738, -1.4169648742812484, -0.8927156649266655, 0.03660517788975004, -2.097857760205846, 1.3948527109106066, -1.5834641111237406, -2.19155938507338, -0.9638442973707757, -0.6087992941767331, -1.5362780143186463, -3.0879892837831147, 0.18322980320514648, -2.0402586616208254, -1.224038184276792, 0.4703248006256697, -1.9516548441515678, 0.1766289158274501, 0.9600300704202485, -1.7659723369208722, 0.031130198431596146, -0.8243414855546841, -1.1222651648266366, -1.5501192651489082, -0.5847053642601988, -0.4159589032812351, -1.0281412433908308, 2.092203541128784, -1.244099403303459, -2.367356576545705, 0.15108770081826828, -0.5351625586437296, 0.5805094989500401, -2.629642723148334, -1.6952016449411262, -0.9044938840471879, -0.09516394925253135, -0.7728472820321536, 0.05886828735671079, -1.430520868041451, -3.6421827765249954, -1.0020769080622538, -2.0007327291374093, -2.2668742095475434, 0.8091067859375376, 0.543093907947005, -1.9233730006348064, 0.6213954207620254, -1.9147393591353368, -1.3514340765211874, 1.105927511540481, 1.343236320820675, -1.7543571224550623, 0.47045720995684603, 0.5871586193593799, -1.0290906924335033, -1.1422362079675108, 1.244915605136812, -0.8714384406978015, -2.419788250018379, 0.5968598401414282, -0.19082143371643345, 0.29172253456758757, 0.5825036958868726, -0.010508838241576446, -0.3544225623888695, 0.07371620415171853, -1.5656999079840617, -0.3580972555891059, -2.221325626189354, -1.3289761976216101, -0.9354503697022809, 0.7021998358722858, -3.0297912868647128, 0.11643206111210014, -1.4389563627400421, -1.534790824177692, 1.7292766022315198, -0.8544305365200381, -1.8373316886118771, 0.08310452333814622, -1.0853060061706892, -0.25341878104188575, -0.6539621627317773, -2.290173443176198, -1.0690527083012091, -0.5164572556536775, -1.430149831925736, -1.8003159120660288, -0.10874700440801732, -0.4766993002005063, -1.5996544753892143, -4.2544335781459806, -1.816271133512938, -2.053236268675696, -0.6321236631368552, -1.3848975370615317, -1.8658186413439168, -0.25336222880114134, -1.9660933135193384, -0.7546724741905775, -1.444651903342977, -0.5153852776641692, -0.05805614840638085, -3.1272457418737187, -0.764888367978978, -2.448232696698515, -0.0774165407609324, -4.090136705405033, -3.358049525274709, -2.672794147848199, -0.7337990450636833, -0.6247029175331762, -1.5023585772062118, -1.1141941371285604, -0.36113499157875606, -1.8890600213331847, -1.3499191294295318, -0.16389154324767918, -1.3400169708095178, -1.036097505298832, -1.5873407315835324, -0.467408650423878, -1.4745238099709537, -1.4584040803999487, -0.2887704775451626, -1.6046215756386628, -1.710023742643351, -0.888230142243995, -0.6104770635913789, -2.9275262248114364, -1.815483386461099, -1.2030253144767171, -0.13123520955127288, -1.66009481637366, -0.8801660451488496, -2.1044409080165707, -0.0845083044110364, -0.5009563350584428, -0.34950756580955966, -0.35274938488095364, -2.4556232034268204, -1.0669060173610112, -1.4468112278796788, -0.019810263083763657, -0.4875893630303296, -1.0220112606769565, -0.6729919421656281, -2.0624423160310625, -1.690150227267548, -1.8496784239179513, -0.07374230307694074, -2.429252947028029, -0.7529764581033868, -0.8199360119967068, -2.2463234883000824, -1.4982685199375207, -0.8485010268106384, -0.8591297722882802, -0.8380373116544994, -2.1588800606035523, -1.1798535835444781, -1.2404841873774206, -1.1896866792886296, -0.052187723459745206, -0.8677509667642752, -0.8664907518063351, -3.643541097666583, -3.2566194694795163, -0.7004555709628922, -1.3088175571120866, -2.0493791898158973, -0.5426530289512159, -0.031170396165830838, -1.1938064467827298, -2.185517067084011, -0.9749523576711433, -3.6116383518162674, -1.4672381781320571, -1.1130469674973034, -1.7620531690505827, -0.29437489215092083, -1.1230893054012807, -0.842245068660632, -0.5916698142211749, -1.3644876632138745, -1.3950995450221204, -1.5099913853278326, -2.9216821260586974, -1.2659491660193818, -2.0544558048599395, -0.8719185027333419, -2.2043691752247065, -2.318580211547551, -0.404014234191836, -0.019851250589491554, -1.1937284393728362, -1.5695047156780622, -0.1269609495336257, -0.6635363523673856, -3.9971493118066186, -2.4040359141790266, -0.9237791851903838, -1.702556762361848, -1.222302401597662, -0.6171351430827172, -2.6108530950257594, -0.3800247203662931, -2.257360993256361, -1.9746385790497165, -1.6904742177596663, -1.385143441786966, -1.6994938501201684, -1.8094925956116565, -0.24396490518699587, -1.0363649177967813, -0.8867499738467588, -1.122269515927175, -1.3150471811119884, -1.1914929717778246, -2.917362027118295, -2.0337483362125637, -1.4269698326434048, -1.5456621794423966, -2.0027194174269756, -0.3655299003685948, -0.22733287086024867, -2.5685917391341273, -1.199841422244833, -2.15583673843099, -0.6038811331859077, -1.267895642599501, -1.7425366185529167, -0.3766414036143494, -2.580896309043723, -0.49212750264271177, -0.9122587175801309, -2.1301983019246404, -2.5711159068426173, -1.1868743053487258, -2.3027009036662074, -0.46297455805500876, -2.3704854149960632, -3.4654927702072755, -1.5160211654527478, -0.7656875054904929, -2.1100645013981962, -0.7005918244711882, -0.18579931855916088, -2.1501250401465537, -0.8035027039451443, -0.9820819119590924, -2.2667988302599316, -0.6544043356379932, -0.700870270412896, -0.791650083871207, -0.6602526149077564, -0.6266618873356874, -1.6101791234836191, -1.7781400414453432, -1.611134414413737, -1.0255827040752235, -0.4026163525850672, -1.3748507314847171, -2.0721781472616487, -0.8192779451165029, -2.2448135098547812, -0.5799140759042976, -0.32255717471932754, -1.5108146216053884, -0.6890057110981507, -1.2759478283980514, -1.9030699330768317, -0.460552212974331, -0.7788113670656559, -0.2294956710815259, -0.43658891627870755, -3.633689510821202, -2.4733887449624294, -2.729887639105387, -0.34695795885216685, -1.805875097794461, -1.462187855514281, -1.5898774501023403, -1.3196305994569475, -1.1377973267776036, -1.7292147192221607, -1.0466761485472185, -0.4524287142297819, -1.3408620720004674, -0.026149769686932167, -0.6514491693946238, -0.2552037590741375, -1.5030019309737468, -0.9267687939147018, -1.8409216706718912, -0.713758030973084, -1.036431326404868, -0.25681559507918517, -1.3321366559261252, -1.0334799034437863, -0.954057469212006, -0.20988500894518136, -0.8427701842937139, -2.0473597166499067, -1.1961549621270702, -1.6625430987166034, -2.5958381156550914, -0.2900871158106477, -0.6487055268859856, -2.1749225486701524, -3.846377739639611, -1.164431072304179, -0.6456682193755774, -1.314272741462416, -1.721552790578674, -1.102376267874372, -1.506043461022057, -1.796714258635847, -1.5159939253625971, -2.053866356750415, -2.8939498759675595, -2.150463418463853, -0.2750764061887284, -2.0677490431085825, -1.888737658601012, -1.7091968953228487, -2.607324034277525, -2.3300735695735693, -1.3519384784125565, -1.5493808617713656, -0.4992915685455427, -3.0016204688273445, -2.1354134976863146, -3.6558703812622797, -2.229378475066911, -2.6440641209631863, -0.8946633095944702, -2.743454841553261, -0.7799219984719139, -0.4433985238244499, -1.1328246881951782, -1.2943728226842888, -3.4387999928608886, -1.4403815128308533, -0.3688307059023611, -1.4547152431385297, -3.034803134787413, -1.1280207024553164, -2.0650638671682113, -1.7325099583517503, -0.10077439349705941, -1.2043326186894143, -1.7824202050716518, -1.0336198364333657, -1.3234956832967504, -0.6528283836308715, -1.9796511493685252, -0.7170782058578263, -1.3810236995674054, -1.3395193732556896, -1.7880541762198705, -1.672732240405831, -1.0486577250440945, -2.7259240355029863, -2.3260948249448727, -1.170015298940035, -2.2039720543839403, -2.210946749108386, -2.0635612870459026, -3.371598892977182, -0.6703522764503592, -1.2254148806337393, -0.3011078318079293, -1.0290954960047658, -1.3460095628349744, -0.2743870749341545, -1.5586004231039041, -0.7311449749820861, -2.1748011434445482, -0.8703992845845296, -1.923837822398853, -2.1854137798435946, -1.571426347923504, -0.277894129472134, -2.910871848262156, -1.341820382727192, -0.8700086394451096, -0.9958251690240595, -1.2865939559700512, -0.7802139823521339, -2.263663950841658, -1.3460283611533794, -2.5185822901844803, -0.742456770767711, -2.7346069127644927, -0.5226364983627889, -0.48305344820211504, -0.41600547141890964, -1.753827208824682, -1.4949128118576547, -0.8623782576251181, -0.4960442421308069, -0.7671888044690902, -1.8360778602359784, -3.0661197066758348, -2.0401923460849023, -0.8584501990756871, -1.8555664845843582, -1.589978191470541, -0.8672782059025231, -3.0313357969914065, -0.3513198423394983, -0.4759562870060938, -2.2665052900659477, -3.1210114914615357, -1.921276278080342, -3.0566670796901976, -0.7934574790255347, -0.46300859472985345, -0.4585505852459387, -1.0191850093183927, -1.885192337929141, -0.90059165702363, -1.916333316712746, -1.2975197949241837, -2.429699798403203, -0.05013088867677806, -1.9734733630745025, -2.295084946492974, -1.8537728686652928, -1.2691929446936034, -1.0249540812918418, -0.387686320779584, -2.252027471451544, -2.065008756282034, -3.164689991452084, -0.15816354995335435, -1.3317993333392926, -2.6163781053349027, -0.9353187088493532, -1.0253140278341424, -1.5017490133233642, -0.7383052669028913, -0.4398735547517766, -2.49107995025334, -0.27534527189832947, -0.1410954783897269, -2.5236990594830297, -1.7312640064103264, -0.52609787885404, -1.4873006509030007, -0.5438863120663944, -1.056881601336416, -0.1296856953061264, -0.3621409973699462, -0.5105332301835297, -0.9475848564888769, -1.7191340444193457, -1.2782467096059718, -1.3333795762628395, -0.8261528560413267, -0.6919851138812974, -0.31307196898460743, -0.4223643807193781, -0.7585362486234649, -0.8135717780578333, -0.40750732664824985, -1.7646739008713999, -1.0771956978828703, -0.9789939143908183, -1.9212171008047965, -0.1961893610809513, -1.3211828134996815, -1.4409358446371776, -0.8040335177466044, -1.6197887542691105, -2.5065967177479087, -0.44301566631775025, -0.1819351292373197, -0.5713961613878862, -2.9880451324842605, -1.13708358118249], \"y\": [2.5743438892877264, 1.1431354101415105, -0.3294365478644792, -0.6398422892370372, 1.2270285859642023, 1.2117389594488766, 0.8963649598100218, 0.948864669255327, -0.2294460761967445, -1.1512816508513404, 1.5144411537298974, -0.06170805182086969, 1.4244439441386794, 0.5339150289863472, 0.4481166914137775, -0.3302314418617207, 1.3486375712341556, -0.850192460154193, 3.203097329439698, -1.3579217122052336, -0.16922821338549965, 0.6050605735306451, 0.8979888949381185, -0.09743213564937014, -0.8220284020493911, -0.24597094392376473, 1.9170690874767338, -0.6086616330204728, 0.5891284602805964, -0.3794646341149417, -1.1441046083327278, -0.5867838638484728, -0.18192500898084263, -0.049479143081919696, 0.63859122024227, -0.03932297895618864, 0.9565673070067591, 1.851058391995163, -0.8822334883660141, -1.3467586002841458, -0.45819859779388383, -0.3028555526936898, -0.05275319730444017, -0.5390304759051383, 2.3781934701024454, 0.5290166299212167, -0.3296268559514628, 1.6483950322702725, -0.6581261080220713, 0.43484930246829734, -0.6608459287851378, -0.0731749573316367, -0.05767074696331154, 4.115196332265118, -0.5050721559774491, 2.201977796420903, 1.2114559869004398, -0.022619775050709556, -0.30117359339110217, -1.09769506082987, 0.5318546812125151, -0.5648251959412927, -0.0935765980620491, 1.7359231041006917, 0.9942698355929341, -1.448918158522015, -0.4515431907558971, 1.2108169192318852, 0.41869104945538693, -0.9026724862498468, -0.9337564749790495, -0.35983798110827303, 2.218947079548012, -0.8583145311308644, 2.7364622167369577, -0.3108064792323646, 1.6115280417988092, -0.14056938776015837, 0.8449505874801309, 0.5223773734239502, 0.40512013539303515, -0.5538827518681582, 2.2046355943437654, 0.6769487920263999, -0.5679119727196875, -0.20014875987334468, -0.4213560809497736, -0.9660163794550705, 1.5356529169838846, -1.0071819703522276, -1.554453472899188, -1.6513785587479592, -1.2626164252777192, -0.3375523611662339, -1.3157718720258553, 1.688067830487077, -0.017258673162839022, 0.4278298756649703, 0.3909769123361898, -0.29521856508563693, -1.5684674932683889, 1.466912924315974, -0.17781457846234705, 0.6493435214732375, -0.11015103067518028, -0.6256206030205387, 1.6932656310016436, 2.8680328647153237, 1.9422539947003874, -1.4857311178942783, 2.237315508477032, -0.068398387060699, -1.1593501876767296, 1.768020342609384, -0.9152075009610767, -0.5115882290372551, 0.6219834940772277, 1.5022872142164392, -0.36701171971142665, 1.3380919246301513, -0.8092332232551607, 0.1011914035841891, -1.063596415036118, -0.4632668941581022, -0.7619804925647651, 2.5825416099251983, 2.1428599484403055, 0.7091536017852464, 2.982519609012586, -0.5187504962693392, -0.4060308965394561, -0.19673503817902893, -1.0057263982158502, 0.36863328502218273, 0.24579771570979458, 0.24182738287679773, -0.18063034037844394, -0.9656845480493985, 0.14488992918679822, -0.40112322114769383, -0.2184576248405241, 1.4601748307298155, 2.1240913093871, -0.1270871105824336, -0.6179237634080186, 1.3110845956367787, -0.2895960581524277, -0.5250790976110884, 1.170781287967531, -0.5740909743762312, -0.019362433683497438, 1.0741757837407597, -1.4028265800686892, 2.4875891789710227, 2.4177448733399878, 1.6447991310969243, 0.468961249212561, 1.194252186532182, 0.9931089319327546, 2.1466822315121252, 1.7179248046245958, -1.8457769660846943, -2.3648093663378353, 1.0188202354563496, 0.5318331595881092, -1.1954047278719346, 1.9363356411577848, -0.06901099845027203, -1.8965272119690635, 1.7149038350139487, 1.9023970919211113, 2.9686007742870935, 0.3541981386287888, -0.2844684678837859, -0.36201797488035314, 0.33333032959827114, 0.4769875788601392, -1.2760133328251628, 0.6565280357070976, 1.7364889469050917, -0.5258392118013051, 0.34518466803308356, 0.2984118333625687, -1.4117284397989462, 2.2177117575457705, -0.5778488260527299, 0.41395937106665104, 2.1397671666911675, 2.062331242615079, -0.043944245618990685, 2.4150745493005035, -0.37845238610235654, -0.37482849383269445, 0.10121811351806109, -0.4011749977401684, -0.25730279491290275, 0.979885082510114, -0.6037864673398763, -0.1929008329212627, 3.130109302777611, -1.0685394191218416, 1.6364752632544666, 0.5900545549454963, 1.3292002566156842, -0.4925085054910425, 0.6617665034034825, -2.0780128389449843, -1.1262529561682202, 1.2286793559547582, -1.0488789559222558, -0.02733475959703191, 2.0599270343720875, -0.28077554135704075, 0.11598936046459396, 2.9918531083101705, -0.37090886413920066, -0.46220317305367664, 0.5589917943702416, -1.0265313480458467, -0.2855513006633257, 1.8164087155634925, -0.5095177877186359, -0.6435599511740355, 0.6687522396519426, -0.31423115808270374, -1.0601722589072278, 3.3709185092764806, 1.4269153355241153, 0.6090960081304404, 1.5958927363114377, 1.5038626052689192, -1.023820299600322, 1.6969657340501036, 0.8499653506234571, 0.6967467893294699, 1.134105456079702, 2.341141048362129, 2.4031831079112145, 1.0443186403510825, -0.19170359208369958, -0.6081459693172466, 1.5433099772082362, -0.7649696174030827, 0.22453239715231588, 1.1004070333418956, 0.5485242259692802, 0.17906214797453013, 0.7759220331603659, -0.9730346301404496, 0.48880593968535657, 1.3339658531822005, -0.524432666416621, -0.9923178270260069, 0.6577484977946806, -0.10384952823594906, 3.0096547623796357, 1.3650871756387226, 1.288764371158702, -1.0723636812396542, 0.8778696874738636, 0.9898139356876513, -0.20318906499956135, 3.336125689251777, 2.4801853487816627, 1.337197807712273, 2.4146153229563603, 2.4699570393808674, 1.7866825349867186, 0.4838472231269165, 1.1022693021126073, 1.739647245743493, 1.0130084489360116, 0.15936521198671683, 1.404547000611151, 1.394495860193496, 1.9666701423011796, 0.9334273953996204, 0.12662932796092052, 4.3403808433232705, 2.3633916105579553, 1.8663829022105918, 1.1779669011079403, 0.21301126849512209, 1.5405601046149933, 3.3320510871327476, 1.1427247109758143, 1.3735349974761384, 2.625115140851846, 2.6270793594023267, 2.228365566095343, 0.31493243506648905, 2.2726660122099847, 3.515891800630189, 1.0162912634857333, 1.4222464172345588, 1.1509591667740178, 0.7414019570334662, 1.9737991897698053, 0.8390583412050882, 2.9020852240026267, 1.0022901083130713, 1.2243315169048594, 1.181142896151652, 0.5187038642267019, 1.5040836611304118, 2.1450583843836566, 0.9326899724776722, 0.05250454262677007, 0.8280857187003923, 1.2734496074357475, 0.44965038031306814, 0.41380635581153136, 0.4022434297833498, 2.4416192558948886, 2.211024326485205, 0.5158153789426791, 0.805783634256195, 1.0192020146974798, 0.06560250591831995, 2.117703111458349, 1.5167588709142428, 1.1546089617530226, 0.9517509627978101, 2.061902277798543, 2.268776408184692, 2.687591080078806, 1.4117014447825333, 1.0801277391427326, 0.18706130360082873, 0.3170030463107544, 2.608347692563568, 2.4371967214599355, 0.12017124203881235, 1.5939522025522943, 2.34325091362328, 2.797373521134011, 3.0289917604267176, 1.667494342664794, 1.3110605422059096, 0.8980352322208935, 3.4880073922518693, 0.9122027901257738, 0.6177985173191862, 3.383075338847999, 1.4130134951210187, 0.9435879076268117, 1.492478511267723, 0.7772592463696326, 1.9419190055948838, 0.44381161723305396, 1.4262689738481011, 1.5209241199274688, 0.23679909462533566, 0.37648743223368053, 1.4336259467170176, 1.8096163032858819, 2.8623616097666558, 0.8494845720671937, 1.5426903146079254, 2.7143442460768217, 1.240818951322062, 1.9377451297433597, 0.9091517560453366, 2.8941061710839167, 0.14187897176804687, 1.0983391215791893, 2.640033958072988, 3.7987162944021544, 1.5243139727298392, 2.4307106296067236, 2.3316300941738564, 0.551631472029585, 1.3630607788565314, 1.4179112882540084, 1.6251240621621275, 3.296052008942092, 0.2762066344520867, 1.1363406000100398, 0.641333028143514, 3.0847705231130687, 1.0280552756985126, 0.14440277058965612, 0.4169692262559759, 2.2953433691570133, 3.14945585827081, 2.22503314287922, 1.6663210391368115, 1.5229660805652494, 1.22088477844021, 0.4469280965588912, 1.301136768941749, 2.0994287970189207, 2.2187207616559546, 0.3663494298871971, 0.8828876055154656, 1.242629586989352, 0.4938654306167185, 0.410515494990069, 0.23619919870275563, 2.977487914887215, 0.12541642334688174, 1.1489348484900095, 0.34863150182806435, 1.7333510279264877, 2.6925401567538265, 0.4022268345234369, 1.1738175432954348, 0.2185873084914779, 1.957633482493979, 1.2703772698069675, 0.5620993815407218, 1.7918374476897985, 0.05278973896560557, 2.434204116330627, 1.0782345823469015, 3.281387431148688, 0.0691603795747282, 0.9270864399183891, 3.129978695714084, 0.7189018743641661, 1.4286479883642578, 2.960467449283737, 0.6328026020501929, 0.37412528337129924, 0.35415163227875035, 2.3822998577405543, 3.065780599320977, 0.574181071756044, 1.2138405265846, 1.0784448205927313, 0.6520498273086761, 0.16392827608449323, 2.6148670458294454, 0.3042029848992951, 2.50536333599989, 0.5680409215298473, 2.4535203768704354, 0.18127164677863838, 1.8687614063913176, 0.2840321463534361, 1.3438949362632302, 1.2967383888176143, 1.6359354686257213, 0.01941535061356081, 0.546372858603712, 1.4429344703204503, 2.4377495834416263, 2.164768937326588, 0.5435644316930004, 1.4212388423067468, 2.165856969659901, 1.760242868963521, 0.7573052122406508, 0.6168231483782136, 1.7841274395770939, 1.5284049568628064, 0.10239546724527748, 1.2918607676849687, 3.0236046925809257, 1.5949270443458399, 1.3762149672590125, 1.062246130482685, 1.3530276633237577, 1.2034975761923894, 2.0167697866432697, 0.7820132228398882, 0.6899375931721607, 0.08035388233833862, 2.169621239572723, 1.5081275212296343, 0.9634810440237155, 2.8685539379220897, 0.5825419596217309, 1.5240852069818274, 0.9340959689093764, 0.78973638367366, 1.9174040299780035, 0.8780428377318834, 0.3663241900416463, 1.5069987038380181, 0.8929602242202236, 0.21635226100033844, 0.9489211703570216, 0.45274146996745745, 1.7232767858607754, 1.8973334207135228, 1.556859290426178, 0.3671478372616028, 2.4869177571581584, 2.104675113991061, 1.4125702199958807, 0.3501031788231367, 0.44270342002992735, 2.5111115838668043, 0.258153610568689, 1.4085399077478298, 1.2103419428618833, 1.8871436352315083, 1.8500028204193584, 2.7897205062541452, 3.816774932074517, 2.8745422384770922, 0.5182573201389942, 1.9244965940839023, 0.8108948224782957, 2.3704375980040404, 0.38250623501378256, 2.019614557631159, 1.0512937915235347, 0.7010492216290038, 2.012896124156234, 1.7038326338809444, 1.257966356820496, 1.227084267529183, 0.5939411822177236, 1.3900316841615408, 0.5974902072157109, 1.8192677035840146, 3.3348621298846157, 0.42311095194713666, 1.7254525175451962, 0.22615763793124122, 1.524632907604416, 1.8988283670534911, 0.9812083880058002, 1.240093490013415, 1.1482352375229437, 0.7055805199210977, 0.3011944613461246, 1.084300407450197, 0.5281579179127651, 3.042116324372371, 1.9129792026210923, 2.002537478547592, 0.39787450362908505, 0.5028270500620475, 0.3328177840332843, 0.8133409352650394, 0.5926788374764365, 3.803781909340979, 1.2230339468791604, 0.9871572569175766, 2.2172040592252307, 1.011353255938253, 1.9487313862934004, 1.908668538642473, 0.9800406767685532, 1.0692674274689589, 1.0712839392836475, 0.2645313244939139, 0.08428734828509954, 1.4639767384615943, 0.21496833830357176, 3.4671890377520738, 0.5370967309142204, 0.23379836751885186, 3.5568805273325723, 1.301142792263413, 0.5460315242983521, 0.14912813943929515, 1.9005003600049237, 0.09237034722468485, 1.0407937829714924, 1.3582129983759919, 0.028232088881630202, 0.608842776633516, 2.1292336436163426, 0.4216734386705019, 1.1300372677443578, 0.14272792998973316, 0.8581710093930683, 2.2105411372159236, 0.7591275597330652, 4.038935423498882, 2.2636403697055325, 0.9294176866272409, 3.1762807842488106, 1.7624681725938112, 0.2566954588556952, 0.8136986911947587, 3.433651955849628, 0.48066225755699465, 0.11425651227264733, 0.5538786698827836, 1.6114346721628134, 1.1528943930556055, 3.9345635943861903, 0.9573495077794433, 0.5568498052296645, 0.15532947187105484, 1.8220764620934524, 0.08599093840979333, 0.7090094213672604, 0.021466279115728515, 1.6256554203340428, 0.7097257795081413, 1.484177928451031, 2.076857794806229, 0.5403551246711138, 2.3383800865565902, 2.6052027137773477, 2.0968952823737177, 2.0773235208750194, 1.17066757175528, 1.955771941120945, 2.6490454612397007, 0.561605326118706, 0.7909899441412135, 2.8240682789337086, 0.5945983738108114, 0.8929085591283844, 1.8525252666396623, 1.3354689902173553, 1.386463819109001, 0.6559045064880451, 2.6656049505253137, 0.8485201037580541, 0.5150516020360221, 0.07810173940276066, 0.9869313837201612, 2.1107855438874203, 0.7456789049565532, 1.2278917132443394, 0.00912811174985606, 3.243959512595764, 0.790368389042654, 0.7562957591834162, 1.5350780073546615, 1.2337376860235958, 3.3679909498949105, 2.6376020559139635, 0.9268526821495264, 1.977279839742649, 2.3607830115145543, 0.8650005159731046, 0.6863105934361695, 2.485985697509868, 1.475787014778866, 2.2598994040169664, 2.7366790475614495, 0.4281810059847473, 1.982735816709329, 1.4192186811364027, 2.35862049941936, 2.6528363378799558, 0.09763581638721908, 1.3486936502513138, 1.7793948487762674, 0.1886944633670048, 0.12729461081951, 1.27723925483655, 1.779184144809045, 1.0665690317648608, 2.6614918908130503, 1.1759596958508312, 0.1388285477566953, 2.6450463701984033, 0.6610687326062039, 0.19356905056355567, 1.873144714474966, 1.2082353714502028, 1.6707860984412193, 1.6618720957417685, 0.2119965322161994, 0.34020546401883756, 2.6050851761475395], \"z\": [2.0262184072877405, 3.585967262505812, -4.346523429761922, 1.9204244999993634, -4.279891128739035, -0.49990790840061194, -5.010262773378479, -0.5753993729234459, 2.1668395166626224, -4.179672657445907, 2.0968846055196995, 3.7016851478010144, 0.06995630116073404, 0.9407625670370825, -2.40390373229004, -3.6289684025095346, 4.599198875588049, 4.295617272273444, -4.1218704037482405, -1.4014466070510587, 3.1067793315050993, 3.304554638118087, 2.5182977514757283, -3.3349641324434796, 4.411682817085949, -4.884674121713473, 0.6782926149972255, -4.283281780834036, 4.632566986475795, -2.222065151951275, -1.3235421599142057, 0.9766942375825263, -1.1306389140589848, -1.1301646311504707, 5.01791741631155, -4.781532545662103, 3.264718847028372, -0.8215110076555723, 1.6648395900274453, 0.3168376434509277, 4.429660430535081, 1.64964714319209, -3.936550811398998, 3.8296602651731613, 4.04035681248437, -1.0817483293540548, 3.5297476089107187, 2.3031630432576042, 0.17720422180413475, -3.4737876915013115, 1.970292750183523, 4.988138487027354, -4.37787688010445, -1.5340324677568056, -0.5340002411752005, -2.1574419121498134, -3.170859207131774, 3.9320890495005143, 4.325725483924576, 2.610801654553523, 3.330522642484188, -0.05953032291100335, 1.5826157797634446, 2.97668432337099, 0.4900824825914114, -4.6356372289101175, 0.3244321407780575, 0.12222976367136962, 3.829009782127412, -2.1986937137507416, 3.8775642794261325, 2.340040002506279, -3.0392182219984014, -3.425563855164853, 0.41960965084618085, -4.3249941525692055, 4.060059567822489, -1.1647285670739995, -2.635059279118018, -1.2679468383457264, 0.2493464716037641, -1.0957652012085832, -2.650920235087579, -2.31884406116103, 4.189689133951311, 4.177176506526185, -3.1661744522573896, 1.1000095964459122, 4.445778631248079, 0.10202172904567242, 1.4798661058838105, -1.217151286030325, -3.6576232568525864, 2.9327886024302794, 0.07228316038749405, -1.095445687826623, 0.23692387937911707, -3.7272171452792566, -2.029609126913766, -1.527805125004626, 2.7051281723695606, -2.0136679961394472, 1.3283976701358808, -1.1595334210022474, 0.16296544453001616, 0.8776893806787776, 1.0641931139205951, 0.6911522036262685, 3.339362113271041, 4.949795295634664, 2.368812728203941, -4.065837692421543, -1.773094058845421, -0.6417771942846198, -3.865030825507415, 2.534514140526909, -3.666652481605735, -0.9256614430010925, -5.0546323896997105, -1.0050239019507572, -0.22525463821945557, 4.08201919011946, -4.702723897800214, -0.8916664990210013, -0.6731712310210272, -3.105143316385724, -0.45975447022731153, -2.5694636477294748, -4.1297265628128415, -4.431157265031834, -4.272585351334486, 1.3087803156850972, -1.0724089461153516, 2.6937632341092126, 4.611565851668826, -0.358753645083036, 0.622831953099471, 4.483903235365973, -3.456080236054328, -4.062678754599842, 0.936675184579193, 2.67959629673485, -2.498104170632717, -4.471254572931715, -2.8330258091902034, -3.5615205860301122, 2.711560269951261, -1.839589774844189, -1.8332907406025067, -1.141024613110516, 0.5564854613272123, -2.5153758968610322, 1.1715020752653658, 2.1415314214567385, 2.982015105096461, 4.765451232655221, -4.65398800259365, -0.5065328750583005, 2.4719088843955825, -3.307476046331189, -2.668364294145705, -1.1257067941508958, -0.44091280736718197, -5.006112420683366, -4.8013398582775775, 3.246082642176046, 1.057830406250682, 4.4608324277206775, 3.6695809526799783, -0.06556380525284133, 3.1178439029107414, -2.4199660293869734, -0.2059859840515399, 4.28508177807037, 2.9499030306184606, -3.4831724555871175, -3.812165549443643, 4.4589525895060875, -0.38478622500136517, -2.757220154418287, 4.253066060450229, 2.3963961932433167, 3.107916250743396, -2.7490054054779653, 3.397399756538511, 4.804342854423392, -2.891467393462176, 0.7747083851488155, -2.1601177985600595, 1.7963290247365888, 4.214526688430259, 4.532187351167283, 3.998290156910355, -3.802376529033972, -0.48368722544404896, 2.4071834738427773, -0.7536377932837306, -2.601051096947271, 1.8160010423028128, -0.17977573796781066, 4.308020853053876, -3.2242966459792664, -3.69017148094195, -4.3734353840529545, -0.4546934396583522, -4.415446810832664, -3.531051591527598, 1.442890096894807, 0.3683814934671279, 4.095341357219035, -3.355057489747903, -4.107539423962189, -1.9735262791206347, 5.059764191777643, 0.43753514578058006, 1.355105348525436, -4.159240954226038, 0.6406122491353523, 1.6031854594945294, -1.2116010570051179, 3.736724804391712, -2.7460050096175173, -1.2013742400277487, -1.0807418127343835, 1.9819926853254133, 3.860405318742907, 4.485700707444809, -4.201501293583874, -0.0524763923803393, -1.6618191399933355, -2.8653770585800165, -0.4562788882729354, 2.213198588618874, -5.049517493066747, 1.8818082144016088, -1.8982359587191184, 1.1779122275859377, -1.3343287857812474, 3.9613005455298476, 3.571900848054649, 2.4895689557113503, -4.513773577919679, 1.6657162168818607, 3.6559344254530535, -3.757820642906155, 0.7890449714820615, -1.2690043700711633, 0.8734792501010906, -3.9467622741384663, 1.4708422779521229, 0.23528603532112236, 0.9521223931424938, 2.726469985311171, 3.3737697679537524, -3.481058104537464, 0.8601708423624199, 0.2773937133341722, -3.8337963895242515, 3.4771392387383964, 2.2927912771706414, 2.061185896668647, 1.346750168117694, 2.431194792133125, -4.642064169901165, -3.8729546712494045, 2.275082018056648, 4.405401272059051, -2.6982061600911558, 1.2528656052111806, 1.3362778534543507, -2.6251113546272307, -2.7644269949421694, 1.9742265264208756, 4.9547794861034555, -0.43938705732826566, 3.092967955650047, -0.18347966010389793, -3.9229481799153687, 2.910610592563298, 1.4212337879321213, 1.4278812657778754, 1.0688142799573548, -2.6622021596557786, -1.5023436819464369, 2.947287538296526, -0.5797031457823927, 1.8608658003277236, 2.361853212113987, -0.28320604954062745, 4.339673338054699, -4.789262714310644, 0.08646745838519099, 2.8615940378690805, -1.4692670231565517, -2.23391712856879, -0.11778544571637362, 2.061735826150164, -4.858078337649181, 3.0182610695350798, -1.1691336778014252, 0.5065296036726608, 4.696905744219214, 0.2278909653925112, 0.489775987569387, -3.148860489713826, -1.6195871094072065, 4.627818038290898, -3.998228973988433, -4.341480783078835, -0.03450967358868873, 2.8045439200000963, 3.091321528515464, -3.6734831101999683, 4.734287626158307, -3.841298771884054, 0.7679541350036141, 3.7456691682418795, -1.710620549075248, 1.7463655416726604, 4.225857702383212, -4.634995336576597, -2.8788948580555935, -1.7504710245183017, -4.848632014761292, 1.9642569756520896, -0.3857937761807557, -2.573483119792437, -0.20477188577842664, 5.027363698760387, -3.1233238204777596, -1.840763885606207, -4.0443701484030115, -2.8690359305218243, -2.996274718302923, 2.614112640166991, -1.0079141578687638, 4.3764786176229284, 1.726712416896281, 1.9444026689825211, -1.011582075614534, -2.4840099841208514, -0.8833512119245697, -4.065161679654663, -0.03663240181675942, 1.1127340056255965, -2.6619801945950727, 2.6582416259065687, -1.2296378060224904, 1.9883452686313374, 3.1647950626869354, 1.2970406494245115, -3.0159452043385073, 4.920648276006575, -3.993532909660783, 2.558429515562554, -2.0127391076837386, 4.348672464687081, -3.4335641843321953, -3.055395074716581, -3.2135000029524043, 0.6110069073597924, 3.2859847023743027, -2.9548814879190024, 0.07847810444845127, 0.48972017597358963, -4.884644713247768, -2.7280593670244033, 4.555488364166316, 5.118503848647992, 0.08313023477464565, 4.577247431091268, -3.652679304097474, -2.8936475415449188, 1.580086272150452, -1.0579790176419381, 4.41224549656114, -0.21696261340244583, 4.90838840859793, 1.0429645726071604, 0.11797949351613024, -3.8909851325209712, -0.39696721692093284, 0.7289751661431261, -0.5849164943871621, 3.3252892174663424, 2.925585722292518, 3.1350311996481013, -4.885860190538474, 5.068912331781811, -2.5802212908589586, 0.2986097432834063, 1.124837221338936, -4.178827249873614, -3.796726038143071, 0.12005498367821499, -1.8226977157954907, -0.838875222384047, -1.5204211613212562, -1.997890662304238, -4.762148114803293, 2.0677833843500473, 0.5728024784357499, 2.5352683458108762, -3.4086579787594573, 2.844271162958634, -3.6041279950010097, 0.426224189001843, -0.711571943137332, -0.8736083469752369, -0.20379523394376786, -3.737341627227603, -4.547654510659134, -0.956959526454555, -2.2711089487048226, -2.5671309143487653, 1.2063629511368061, 0.36194611947446553, -4.6188828715074175, -3.356745324771288, -1.9619774908644576, 1.0197702965399067, 3.2437646767565154, -5.001012472517424, 4.49069565619, -2.124488344958744, 1.0221216812781933, 4.425022264925944, 0.5757129011607898, -1.774889491753826, 4.21810203998992, 0.3688907254729328, 0.952954417349348, 2.895455905867389, -4.914680680421279, -0.16537748673658204, 0.8444388607812687, -0.9042179795066971, -1.6957535491497255, 0.9961171181537427, 4.04955590449507, -4.155636583483041, -1.3845490452101252, 1.7800878342983797, -0.6008471779507687, 2.177972078080378, 0.4389860603651625, -3.7347859881468355, 3.0907577163430906, -4.083945880039764, -1.7534300488007148, -2.4583083771881213, 3.676829210974561, 2.1215459188524397, 3.74940888856315, -0.9720962974595038, 2.6857655417479123, 4.278698268263628, 3.8234261168682737, -4.81449895769905, 1.7445405462557622, -3.4426427997017877, 4.0006431199111026, 4.3403599937668735, -1.7705471762972071, 2.323377817996904, -1.1068277116905012, 0.8936402300684563, -1.6033598906206308, -4.821746922422417, -0.21538391842046423, -4.426992795638979, 1.1480138090945227, 1.0814874499019131, -1.5815394482082494, 4.450832672164428, -3.7785454517826387, 3.3364036590405854, -3.2267854855794686, 0.8325766259842773, -3.3466259825061977, 3.7010058798582373, 0.7062252891574659, 5.063817085710032, 2.0204421106191575, 2.56301957717789, 4.719288522685813, 1.8708146137171155, 0.6852417478140458, 3.952466388659725, 3.478621533194146, -3.952461513879517, 3.909412483028796, -3.376931374274765, 3.5604115066571014, -4.89434553946625, -1.471276267878062, -1.7143480665083106, -0.06854188065831401, 1.469838720819542, 2.021789495021191, 1.1448326497802697, 4.03898952991739, -0.9101137629670957, 1.2382998357784203, -1.8053236209980352, -2.856886293724388, -1.3060189454468878, 2.728896730961166, -1.7361980811318527, 5.073566218390099, 3.9927520214470364, 0.7347968203992457, -4.561886904630141, 3.5897876401104254, -3.850155561500998, 1.8766443949121099, 2.457873778008449, 1.228934781519011, 0.4533250452638997, -4.763273059475198, 4.911110608706772, -2.9391689137181083, 1.2493732609153607, -0.43964769991690567, 0.17233387444025272, -2.2617311655280674, -1.1207532443996189, 3.118531233073498, 3.225372914419885, -3.116921299395786, 0.5170117239959593, 2.850309999124293, -3.528672139525326, 1.6841115558657664, -1.571126366532504, -0.6863626063488457, 4.087755530432049, 3.7567761624175953, -4.821942333845063, 2.5874183699871134, -3.053748386224336, 3.151630518717929, 0.007241408392895998, 0.20911030580092138, 3.4210500499048573, 2.4430704437910906, -0.004100221823966521, -2.759567545203948, -3.4652220226013464, -5.076629197861181, -4.615812921089707, 1.0854064670516461, -4.8560127530026875, 5.130548694001669, -1.4946552406273126, 5.12218077987898, 5.031171419959304, -0.7559693766212394, -1.2592331183557386, 1.792072942780507, 4.923521413578695, 2.3619888553582866, -3.073691269396434, 3.3090028229327144, 1.7995804098484394, -3.119420770962434, 0.6248947091043444, -0.9077524196197189, 4.801266471486444, 0.7687809781758563, -1.8873929480984013, 3.0063985030844274, -2.8778560512668787, 0.5212867139259973, 3.999877644038677, 0.9827895541162786, -2.926935731394973, 1.512347986707617, -1.7095923986051305, 0.521264133141881, 1.7285440286923066, 2.500372833819939, -4.634977908924358, 2.822559588297663, -1.9670485735217365, 1.8183036882967496, -4.6718066484092065, 2.042505532475226, 3.4013430155282363, -4.363765782135443, 2.4155205730870914, 0.25006180222896024, -0.7440159858821307, -3.173105893383437, -1.2267156941580786, -3.2180258864071325, 1.2904705104660668, -3.533667923630367, 0.2534245726413724, 0.053160144729118564, 4.632455370854001, 2.588308460737437, 3.1067713981615794, 2.242940319198927, 3.3613875338839714, 3.5346948789693213, -3.216252090305339, -2.1858864714314423, 4.812724680043483, -1.73145040653259, 0.8649042329189776, 0.023185651413974107, 4.277777600240825, 4.563052310342509, 2.6534709482036893, 0.05771131002960583, 4.861347011556883, -3.0826151211212904, 3.1795636850859657, 0.9810969131945759, 0.9763299315009695, 0.5240563307058643, -4.191232766452532, 4.582612014099351, -0.8156021198161651, -0.9188141380834933, -0.8287742713475383, -3.375242465902341, 1.2929419915259404, -4.034348253604042, -0.09250767265791993, -3.7896800392387395, 2.5920666326202504, 2.002640572685011, 0.6742553861717901, 2.6160707941464656, -2.049222595825397, -1.1420838376201576, 2.0039380287045097, 4.119456181139136, 2.3423168373318797, 3.1123091551632465, 2.8829699477227138, 3.0401508926364, -0.6080467070767712, -1.2158478018595265, 0.03374653129662253, 3.4943377333185284, -1.8517629515798935, 0.12929290857087317, 4.99143294995221, -4.904473703992185, 1.5364849915631806, 3.520905209294969, 3.3519915057547207, 1.8427499436068828, 1.02760422843446, -4.0415159878654645, 2.19966464422317, 3.522766534936337, -1.2795010124423354, -0.8758703205400833, 1.3051822208942534, 2.5171007442026916, 2.1005916062708163, -0.13515323117200762]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 2\", \"marker\": {\"color\": \"rgb(44, 160, 44)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 2\", \"scene\": \"scene\", \"showlegend\": true, \"text\": [\"1332_l_2_m-0_0.18-1_0.04-2_0.09-3_0.22\", \"1333_l_2_m-0_0.77-1_0.05-2_0.68-3_0.39\", \"1334_l_2_m-0_0.15-1_0.04-2_0.0-3_0.79\", \"1335_l_2_m-0_0.99-1_0.14-2_0.05-3_0.18\", \"1336_l_2_m-0_0.78-1_0.05-2_0.09-3_0.61\", \"1337_l_2_m-0_0.26-1_0.07-2_0.04-3_0.11\", \"1338_l_2_c_0_1_3-0_0.4-1_0.0-2_0.19-3_1.04\", \"1339_l_2_c_0_2_3-0_1.71-1_0.96-2_0.32-3_1.33\", \"1340_l_2_c_1_2_3-0_0.84-1_0.58-2_0.1-3_0.1\", \"1341_l_2_c_0_1_3-0_0.05-1_0.29-2_0.02-3_0.17\", \"1342_l_2_c_0_2_3-0_1.46-1_0.66-2_0.97-3_0.4\", \"1343_l_2_c_1_2_3-0_1.61-1_0.16-2_0.36-3_0.05\", \"1344_l_2_c_0_1_3-0_0.27-1_0.42-2_0.04-3_0.02\", \"1345_l_2_c_0_2_3-0_0.95-1_0.44-2_0.06-3_0.27\", \"1346_l_2_c_1_2_3-0_0.56-1_0.07-2_0.28-3_0.52\", \"1347_l_2_c_0_1_3-0_0.2-1_0.0-2_0.8-3_1.41\", \"1348_l_2_c_0_2_3-0_0.44-1_1.31-2_0.22-3_0.36\", \"1349_l_2_c_1_2_3-0_1.56-1_0.16-2_0.25-3_0.42\", \"1350_l_2_c_0_1_3-0_0.49-1_0.18-2_0.28-3_0.01\", \"1351_l_2_c_0_2_3-0_0.58-1_0.38-2_1.02-3_0.65\", \"1352_l_2_c_1_2_3-0_1.38-1_0.01-2_0.0-3_0.31\", \"1353_l_2_c_0_1_3-0_0.04-1_0.15-2_0.03-3_0.13\", \"1354_l_2_c_0_2_3-0_0.64-1_1.22-2_0.58-3_0.31\", \"1355_l_2_c_1_2_3-0_0.84-1_0.01-2_0.11-3_1.01\", \"1356_l_2_c_0_1_3-0_1.21-1_0.02-2_1.51-3_0.4\", \"1357_l_2_c_0_2_3-0_0.13-1_0.23-2_0.18-3_0.01\", \"1358_l_2_c_1_2_3-0_0.33-1_0.2-2_0.06-3_1.12\", \"1359_l_2_c_0_1_3-0_0.42-1_0.15-2_1.31-3_0.3\", \"1360_l_2_c_0_2_3-0_0.87-1_2.48-2_0.05-3_0.11\", \"1361_l_2_c_1_2_3-0_0.48-1_0.54-2_0.01-3_1.25\", \"1362_l_2_c_0_1_3-0_0.83-1_0.72-2_0.27-3_0.92\", \"1363_l_2_c_0_2_3-0_1.13-1_2.54-2_0.13-3_0.12\", \"1364_l_2_c_1_2_3-0_0.03-1_0.29-2_0.25-3_0.37\", \"1365_l_2_c_0_1_3-0_0.47-1_0.49-2_1.18-3_1.36\", \"1366_l_2_c_0_2_3-0_0.21-1_0.43-2_0.63-3_0.18\", \"1367_l_2_c_1_2_3-0_0.37-1_0.27-2_0.61-3_0.1\", \"1368_l_2_c_0_1_3-0_0.09-1_0.72-2_2.0-3_0.14\", \"1369_l_2_c_0_2_3-0_0.3-1_1.66-2_0.6-3_0.97\", \"1370_l_2_c_1_2_3-0_0.71-1_0.02-2_0.48-3_0.5\", \"1371_l_2_c_0_1_2-0_0.21-1_0.08-2_0.83-3_0.12\", \"1372_l_2_c_0_1_3-0_0.86-1_0.7-2_1.01-3_0.13\", \"1373_l_2_c_0_2_3-0_0.14-1_1.54-2_0.05-3_0.79\", \"1374_l_2_c_1_2_3-0_1.08-1_0.11-2_0.01-3_0.2\", \"1375_l_2_c_0_1_2-0_1.53-1_0.46-2_0.34-3_0.94\", \"1376_l_2_c_0_1_3-0_1.53-1_0.25-2_0.7-3_0.5\", \"1377_l_2_c_0_2_3-0_0.15-1_0.08-2_0.0-3_0.5\", \"1378_l_2_c_1_2_3-0_1.7-1_0.69-2_0.34-3_0.14\", \"1379_l_2_c_0_1_2-0_0.52-1_1.04-2_0.09-3_0.6\", \"1380_l_2_c_0_1_3-0_0.04-1_0.22-2_0.48-3_0.61\", \"1381_l_2_c_0_2_3-0_0.1-1_0.58-2_0.24-3_0.56\", \"1382_l_2_c_1_2_3-0_0.62-1_0.04-2_0.37-3_0.09\", \"1383_l_2_c_0_1_2-0_0.24-1_0.34-2_0.15-3_0.36\", \"1384_l_2_c_0_1_3-0_0.01-1_0.38-2_1.0-3_1.15\", \"1385_l_2_c_0_2_3-0_0.12-1_0.16-2_0.0-3_0.21\", \"1386_l_2_c_1_2_3-0_1.01-1_0.6-2_0.01-3_0.56\", \"1387_l_2_c_0_1_2-0_0.31-1_0.01-2_0.43-3_1.32\", \"1388_l_2_c_0_1_3-0_0.06-1_0.23-2_1.64-3_1.16\", \"1389_l_2_c_0_2_3-0_0.1-1_0.25-2_0.15-3_0.74\", \"1390_l_2_c_1_2_3-0_0.88-1_0.22-2_0.64-3_0.34\", \"1391_l_2_c_0_1_2-0_0.69-1_0.57-2_0.86-3_0.98\", \"1392_l_2_c_0_1_3-0_0.26-1_0.25-2_0.9-3_0.82\", \"1393_l_2_c_0_2_3-0_0.55-1_0.73-2_0.28-3_0.46\", \"1394_l_2_c_1_2_3-0_0.79-1_0.14-2_1.21-3_0.3\", \"1395_l_2_c_0_1_2-0_1.25-1_0.0-2_0.23-3_1.01\", \"1396_l_2_c_0_1_3-0_1.23-1_0.68-2_0.04-3_0.66\", \"1397_l_2_c_0_2_3-0_0.26-1_0.02-2_0.16-3_0.12\", \"1398_l_2_c_1_2_3-0_0.65-1_0.78-2_0.37-3_0.0\", \"1399_l_2_c_0_1_2-0_0.35-1_0.07-2_0.01-3_0.85\", \"1400_l_2_c_0_1_3-0_0.3-1_0.03-2_0.18-3_0.59\", \"1401_l_2_c_0_2_3-0_0.31-1_0.5-2_0.27-3_0.12\", \"1402_l_2_c_1_2_3-0_1.06-1_0.05-2_0.12-3_0.82\", \"1403_l_2_c_0_1_2-0_1.11-1_0.78-2_0.48-3_0.36\", \"1404_l_2_c_0_1_3-0_0.5-1_0.3-2_0.97-3_0.72\", \"1405_l_2_c_0_2_3-0_0.69-1_0.49-2_0.04-3_0.29\", \"1406_l_2_c_1_2_3-0_1.93-1_0.36-2_0.29-3_0.1\", \"1407_l_2_c_0_1_2-0_0.01-1_0.3-2_0.57-3_0.11\", \"1408_l_2_c_0_1_3-0_0.28-1_0.22-2_2.11-3_0.5\", \"1409_l_2_c_0_2_3-0_0.63-1_0.69-2_0.1-3_0.74\", \"1410_l_2_c_1_2_3-0_2.88-1_0.39-2_0.4-3_0.56\", \"1411_l_2_c_0_1_2-0_0.12-1_0.05-2_0.52-3_0.9\", \"1412_l_2_c_0_1_3-0_0.68-1_0.44-2_1.1-3_0.81\", \"1413_l_2_c_0_2_3-0_0.13-1_0.26-2_0.51-3_0.01\", \"1414_l_2_c_1_2_3-0_1.59-1_0.66-2_0.02-3_0.29\", \"1415_l_2_c_0_1_2-0_0.31-1_0.44-2_0.42-3_0.1\", \"1416_l_2_c_0_1_3-0_0.83-1_0.37-2_0.61-3_0.22\", \"1417_l_2_c_0_2_3-0_0.53-1_0.08-2_0.02-3_0.44\", \"1418_l_2_c_1_2_3-0_0.95-1_0.3-2_0.49-3_0.94\", \"1419_l_2_c_0_1_2-0_0.98-1_0.08-2_0.03-3_0.5\", \"1420_l_2_c_0_1_3-0_1.69-1_0.28-2_0.51-3_0.74\", \"1421_l_2_c_0_2_3-0_0.03-1_1.73-2_0.44-3_0.05\", \"1422_l_2_c_1_2_3-0_0.45-1_0.52-2_0.06-3_1.21\", \"1423_l_2_c_0_1_2-0_0.24-1_0.17-2_0.59-3_0.7\", \"1424_l_2_c_0_1_3-0_0.47-1_0.34-2_0.86-3_0.13\", \"1425_l_2_c_0_2_3-0_0.08-1_1.14-2_0.23-3_1.52\", \"1426_l_2_c_1_2_3-0_1.58-1_0.24-2_0.6-3_0.34\", \"1427_l_2_c_0_1_2-0_0.4-1_0.7-2_0.02-3_1.82\", \"1428_l_2_c_0_1_3-0_0.28-1_0.66-2_1.9-3_0.72\", \"1429_l_2_c_0_2_3-0_1.08-1_0.59-2_0.16-3_0.56\", \"1430_l_2_c_1_2_3-0_0.25-1_0.14-2_0.19-3_0.44\", \"1431_l_2_c_0_1_2-0_0.39-1_0.2-2_0.13-3_0.46\", \"1432_l_2_c_0_1_3-0_0.14-1_0.02-2_1.53-3_0.29\", \"1433_l_2_c_0_2_3-0_0.03-1_0.95-2_0.23-3_0.13\", \"1434_l_2_c_1_2_3-0_0.68-1_0.77-2_0.18-3_0.71\", \"1435_l_2_c_0_1_2-0_1.93-1_0.06-2_0.26-3_2.7\", \"1436_l_2_c_0_1_3-0_0.97-1_0.01-2_0.48-3_0.1\", \"1437_l_2_c_0_2_3-0_0.68-1_0.33-2_0.11-3_0.49\", \"1438_l_2_c_1_2_3-0_0.94-1_0.12-2_0.53-3_0.32\", \"1439_l_2_c_0_1_2-0_0.04-1_0.28-2_0.76-3_0.05\", \"1440_l_2_c_0_1_3-0_0.09-1_0.42-2_1.05-3_0.55\", \"1441_l_2_c_0_2_3-0_1.74-1_0.96-2_0.48-3_0.06\", \"1442_l_2_c_1_2_3-0_1.08-1_0.52-2_0.67-3_0.56\", \"1443_l_2_c_0_1_2-0_0.26-1_0.42-2_0.1-3_0.6\", \"1444_l_2_c_0_1_3-0_1.52-1_0.52-2_0.35-3_0.55\", \"1445_l_2_c_0_2_3-0_0.37-1_1.21-2_0.63-3_0.04\", \"1446_l_2_c_1_2_3-0_0.55-1_0.19-2_0.6-3_0.97\", \"1447_l_2_c_0_1_2-0_0.18-1_0.07-2_0.41-3_1.25\", \"1448_l_2_c_0_1_3-0_0.6-1_0.08-2_0.6-3_0.47\", \"1449_l_2_c_0_2_3-0_0.38-1_0.54-2_0.39-3_0.03\", \"1450_l_2_c_1_2_3-0_0.9-1_0.04-2_0.48-3_0.5\", \"1451_l_2_c_0_1_2-0_0.19-1_0.1-2_0.65-3_0.29\", \"1452_l_2_c_0_1_3-0_0.94-1_0.02-2_0.46-3_0.21\", \"1453_l_2_c_0_2_3-0_1.23-1_1.51-2_0.12-3_0.91\", \"1454_l_2_c_1_2_3-0_0.35-1_0.16-2_0.26-3_0.46\", \"1455_l_2_c_0_1_2-0_0.12-1_0.06-2_0.01-3_1.16\", \"1456_l_2_c_0_1_3-0_0.12-1_0.26-2_0.31-3_0.36\", \"1457_l_2_c_0_2_3-0_0.05-1_1.61-2_0.04-3_0.1\", \"1458_l_2_c_1_2_3-0_0.8-1_0.54-2_0.21-3_1.15\", \"1459_l_2_c_0_1_2-0_0.96-1_0.45-2_0.35-3_0.2\", \"1460_l_2_c_0_1_3-0_0.82-1_0.02-2_1.89-3_0.06\", \"1461_l_2_c_0_2_3-0_0.06-1_1.02-2_0.55-3_0.09\", \"1462_l_2_c_1_2_3-0_1.31-1_0.31-2_0.04-3_1.15\", \"1463_l_2_c_0_1_2-0_0.66-1_0.12-2_0.57-3_0.66\", \"1464_l_2_c_0_1_3-0_1.76-1_0.16-2_3.53-3_0.01\", \"1465_l_2_c_0_2_3-0_0.29-1_2.01-2_0.09-3_0.21\", \"1466_l_2_c_1_2_3-0_0.6-1_0.03-2_0.05-3_0.47\", \"1467_l_2_c_0_1_2-0_0.37-1_0.3-2_0.01-3_1.47\", \"1468_l_2_c_0_1_3-0_0.24-1_0.05-2_0.26-3_0.18\", \"1469_l_2_c_0_2_3-0_0.01-1_1.33-2_0.0-3_0.24\", \"1470_l_2_c_1_2_3-0_0.27-1_0.01-2_0.01-3_0.14\", \"1471_l_2_c_0_1_2-0_0.16-1_0.03-2_0.22-3_0.4\", \"1472_l_2_c_0_1_3-0_0.81-1_0.27-2_0.66-3_0.98\", \"1473_l_2_c_0_2_3-0_0.2-1_0.09-2_0.17-3_0.22\", \"1474_l_2_c_1_2_3-0_0.02-1_0.92-2_0.0-3_0.09\", \"1475_l_2_c_0_1_2-0_0.61-1_0.14-2_0.23-3_1.28\", \"1476_l_2_c_0_1_3-0_0.42-1_0.77-2_1.54-3_1.54\", \"1477_l_2_c_0_2_3-0_0.47-1_0.2-2_0.03-3_0.39\", \"1478_l_2_c_1_2_3-0_0.62-1_0.14-2_0.01-3_0.74\", \"1479_l_2_c_0_1_2-0_0.53-1_0.2-2_0.19-3_0.4\", \"1480_l_2_c_0_1_3-0_0.6-1_0.89-2_0.29-3_0.77\", \"1481_l_2_c_0_2_3-0_0.27-1_0.45-2_0.08-3_0.01\", \"1482_l_2_c_1_2_3-0_0.12-1_0.15-2_0.3-3_0.98\", \"1483_l_2_c_0_1_2-0_0.49-1_0.51-2_0.26-3_0.19\", \"1484_l_2_c_0_1_3-0_0.29-1_0.05-2_1.05-3_0.2\", \"1485_l_2_c_0_2_3-0_1.48-1_0.86-2_0.49-3_0.46\", \"1486_l_2_c_1_2_3-0_1.32-1_0.12-2_0.36-3_0.03\", \"1487_l_2_c_0_1_2-0_0.39-1_0.0-2_0.1-3_0.66\", \"1488_l_2_c_0_1_3-0_0.73-1_0.42-2_0.33-3_0.12\", \"1489_l_2_c_0_2_3-0_1.62-1_1.1-2_0.73-3_0.25\", \"1490_l_2_c_1_2_3-0_0.63-1_0.15-2_0.05-3_0.22\", \"1491_l_2_c_0_1_2-0_0.42-1_0.51-2_0.13-3_0.23\", \"1492_l_2_c_0_1_3-0_0.11-1_0.03-2_1.59-3_0.45\", \"1493_l_2_c_0_2_3-0_0.34-1_0.78-2_0.15-3_0.09\", \"1494_l_2_c_1_2_3-0_0.51-1_0.0-2_0.32-3_0.55\", \"1495_l_2_c_0_1_2-0_1.13-1_0.11-2_0.13-3_0.02\", \"1496_l_2_c_0_1_3-0_0.0-1_0.64-2_0.02-3_1.09\", \"1497_l_2_c_0_2_3-0_0.37-1_1.61-2_0.07-3_0.72\", \"1498_l_2_c_1_2_3-0_1.55-1_0.29-2_0.94-3_0.09\", \"1499_l_2_c_0_1_2-0_0.16-1_0.02-2_0.32-3_1.41\", \"1500_l_2_c_0_1_3-0_0.03-1_0.1-2_1.66-3_0.36\", \"1501_l_2_c_0_2_3-0_0.43-1_0.97-2_0.01-3_1.1\", \"1502_l_2_c_1_2_3-0_0.63-1_0.17-2_0.03-3_0.17\", \"1503_l_2_c_0_1_2-0_0.1-1_0.02-2_0.03-3_0.97\", \"1504_l_2_c_0_1_3-0_0.03-1_0.01-2_0.07-3_0.47\", \"1505_l_2_c_0_2_3-0_1.21-1_0.93-2_0.12-3_0.78\", \"1506_l_2_c_1_2_3-0_0.72-1_0.01-2_0.17-3_0.24\", \"1507_l_2_c_0_1_2-0_0.44-1_0.95-2_0.52-3_0.0\", \"1508_l_2_c_0_1_3-0_0.36-1_0.59-2_1.38-3_0.66\", \"1509_l_2_c_0_2_3-0_0.59-1_0.16-2_0.43-3_0.28\", \"1510_l_2_c_1_2_3-0_0.01-1_0.15-2_0.68-3_0.21\", \"1511_l_2_c_0_1_2-0_0.11-1_0.23-2_0.76-3_0.97\", \"1512_l_2_c_0_1_3-0_0.16-1_0.21-2_0.57-3_2.33\", \"1513_l_2_c_0_2_3-0_1.68-1_0.67-2_0.63-3_2.17\", \"1514_l_2_c_1_2_3-0_0.92-1_0.43-2_1.1-3_0.06\", \"1515_l_2_c_0_1_2-0_0.75-1_0.22-2_0.38-3_1.67\", \"1516_l_2_c_0_1_3-0_0.25-1_0.16-2_1.5-3_1.53\", \"1517_l_2_c_0_2_3-0_0.5-1_1.48-2_0.92-3_1.58\", \"1518_l_2_c_1_2_3-0_0.01-1_0.01-2_0.57-3_0.24\", \"1519_l_2_c_0_1_2-0_0.41-1_0.03-2_0.12-3_0.32\", \"1520_l_2_c_0_1_3-0_0.56-1_0.51-2_1.03-3_0.67\", \"1521_l_2_c_0_2_3-0_1.11-1_1.18-2_0.02-3_0.52\", \"1522_l_2_c_1_2_3-0_2.09-1_0.09-2_0.68-3_1.55\", \"1523_l_2_c_0_1_2-0_0.74-1_0.7-2_0.3-3_0.73\", \"1524_l_2_c_0_1_3-0_0.19-1_0.09-2_0.1-3_0.08\", \"1525_l_2_c_0_2_3-0_0.09-1_2.72-2_0.04-3_0.94\", \"1526_l_2_c_1_2_3-0_0.89-1_0.2-2_0.72-3_1.04\", \"1527_l_2_c_0_1_2-0_0.23-1_0.47-2_0.8-3_0.35\", \"1528_l_2_c_0_1_3-0_0.09-1_0.15-2_0.38-3_1.11\", \"1529_l_2_c_0_2_3-0_0.4-1_0.36-2_0.45-3_0.46\", \"1530_l_2_c_1_2_3-0_0.1-1_0.58-2_0.12-3_0.3\", \"1531_l_2_c_0_1_2-0_1.37-1_0.07-2_0.03-3_1.88\", \"1532_l_2_c_0_1_3-0_0.19-1_0.73-2_0.11-3_1.09\", \"1533_l_2_c_0_2_3-0_0.14-1_0.9-2_0.15-3_0.11\", \"1534_l_2_c_1_2_3-0_0.69-1_0.44-2_0.45-3_0.06\", \"1535_l_2_c_0_1_2-0_1.93-1_0.27-2_0.19-3_1.27\", \"1536_l_2_c_0_1_3-0_0.05-1_0.68-2_0.59-3_0.69\", \"1537_l_2_c_0_2_3-0_0.32-1_0.71-2_0.97-3_0.96\", \"1538_l_2_c_1_2_3-0_0.55-1_0.24-2_0.02-3_1.87\", \"1539_l_2_c_0_1_2-0_1.54-1_0.41-2_0.29-3_0.24\", \"1540_l_2_c_0_1_3-0_0.09-1_0.42-2_0.95-3_0.39\", \"1541_l_2_c_0_2_3-0_0.98-1_0.61-2_0.11-3_0.1\", \"1542_l_2_c_1_2_3-0_1.14-1_0.34-2_0.68-3_0.09\", \"1543_l_2_c_0_1_2-0_0.25-1_0.3-2_0.03-3_0.22\", \"1544_l_2_c_0_1_3-0_0.55-1_0.48-2_0.63-3_0.32\", \"1545_l_2_c_0_2_3-0_0.56-1_1.52-2_0.17-3_0.93\", \"1546_l_2_c_1_2_3-0_0.04-1_0.02-2_0.09-3_0.25\", \"1547_l_2_c_0_1_2-0_0.0-1_1.28-2_0.02-3_0.52\", \"1548_l_2_c_0_1_3-0_0.53-1_0.86-2_1.26-3_0.28\", \"1549_l_2_c_0_2_3-0_0.04-1_0.07-2_0.06-3_0.18\", \"1550_l_2_c_1_2_3-0_0.6-1_0.18-2_0.06-3_0.17\", \"1551_l_2_c_0_1_2-0_0.17-1_0.01-2_0.08-3_0.66\", \"1552_l_2_c_0_1_3-0_0.69-1_0.31-2_0.39-3_0.81\", \"1553_l_2_c_0_2_3-0_0.07-1_1.28-2_0.36-3_1.83\", \"1554_l_2_c_1_2_3-0_2.08-1_0.39-2_0.05-3_0.29\", \"1555_l_2_c_0_1_2-0_0.32-1_0.06-2_0.11-3_0.13\", \"1556_l_2_c_0_1_3-0_0.5-1_0.03-2_0.22-3_1.59\", \"1557_l_2_c_0_2_3-0_1.11-1_0.47-2_0.15-3_1.68\", \"1558_l_2_c_1_2_3-0_0.55-1_0.14-2_0.04-3_0.04\", \"1559_l_2_c_0_1_2-0_0.36-1_0.08-2_0.14-3_0.09\", \"1560_l_2_c_0_1_3-0_0.01-1_0.08-2_0.56-3_0.28\", \"1561_l_2_c_0_2_3-0_0.72-1_0.21-2_0.42-3_0.55\", \"1562_l_2_c_1_2_3-0_0.25-1_0.23-2_0.01-3_1.0\", \"1563_l_2_c_0_1_2-0_0.23-1_0.2-2_0.07-3_0.07\", \"1564_l_2_c_0_1_3-0_0.19-1_0.09-2_0.72-3_0.23\", \"1565_l_2_c_0_2_3-0_1.08-1_0.07-2_0.01-3_0.76\", \"1566_l_2_c_1_2_3-0_0.6-1_0.21-2_0.04-3_0.62\", \"1567_l_2_c_0_1_2-0_1.01-1_0.13-2_0.12-3_0.65\", \"1568_l_2_c_0_1_3-0_1.19-1_0.35-2_1.05-3_0.23\", \"1569_l_2_c_0_2_3-0_0.5-1_0.18-2_0.0-3_1.32\", \"1570_l_2_c_1_2_3-0_1.06-1_0.25-2_0.56-3_0.64\", \"1571_l_2_c_0_1_2-0_0.15-1_0.06-2_0.52-3_2.34\", \"1572_l_2_c_0_1_3-0_0.81-1_0.41-2_0.23-3_0.34\", \"1573_l_2_c_0_2_3-0_0.39-1_2.06-2_0.0-3_0.76\", \"1574_l_2_c_1_2_3-0_2.06-1_0.25-2_0.06-3_0.11\", \"1575_l_2_c_0_1_2-0_0.75-1_0.18-2_0.13-3_0.31\", \"1576_l_2_c_0_1_3-0_0.17-1_1.11-2_0.45-3_0.38\", \"1577_l_2_c_0_2_3-0_0.15-1_0.17-2_0.16-3_0.37\", \"1578_l_2_c_1_2_3-0_1.89-1_0.55-2_0.19-3_0.01\", \"1579_l_2_c_0_1_2-0_0.1-1_0.06-2_0.05-3_0.98\", \"1580_l_2_c_0_1_3-0_0.18-1_0.36-2_1.17-3_0.38\", \"1581_l_2_c_0_2_3-0_0.11-1_0.15-2_0.17-3_0.15\", \"1582_l_2_c_1_2_3-0_1.12-1_0.05-2_0.34-3_0.44\", \"1583_l_2_c_0_1_2-0_0.12-1_0.84-2_1.06-3_1.41\", \"1584_l_2_c_0_1_3-0_0.95-1_0.34-2_0.17-3_0.96\", \"1585_l_2_c_0_2_3-0_0.93-1_0.24-2_0.44-3_0.71\", \"1586_l_2_c_1_2_3-0_1.68-1_0.11-2_0.74-3_0.35\", \"1587_l_2_c_0_1_2-0_0.24-1_0.01-2_0.11-3_0.12\", \"1588_l_2_c_0_1_3-0_0.81-1_0.01-2_0.66-3_0.24\", \"1589_l_2_c_0_2_3-0_0.54-1_0.39-2_0.23-3_0.26\", \"1590_l_2_c_1_2_3-0_0.85-1_0.09-2_0.19-3_1.51\", \"1591_l_2_c_0_1_2-0_1.04-1_0.59-2_0.01-3_1.19\", \"1592_l_2_c_0_1_3-0_0.13-1_0.09-2_0.43-3_0.36\", \"1593_l_2_c_0_2_3-0_0.74-1_1.41-2_0.7-3_0.84\", \"1594_l_2_c_1_2_3-0_0.64-1_0.38-2_0.13-3_0.23\", \"1595_l_2_c_0_1_2-0_1.26-1_0.16-2_0.42-3_1.41\", \"1596_l_2_c_0_1_3-0_0.29-1_0.29-2_0.05-3_0.12\", \"1597_l_2_c_0_2_3-0_0.32-1_0.1-2_0.09-3_0.22\", \"1598_l_2_c_1_2_3-0_1.26-1_0.21-2_0.53-3_0.22\", \"1599_l_2_c_0_1_2-0_0.27-1_0.58-2_0.65-3_1.82\", \"1600_l_2_c_0_1_3-0_0.28-1_0.1-2_1.39-3_0.03\", \"1601_l_2_c_0_2_3-0_0.62-1_1.69-2_0.19-3_0.73\", \"1602_l_2_c_1_2_3-0_0.18-1_0.94-2_0.33-3_0.82\", \"1603_l_2_c_0_1_2-0_0.24-1_0.6-2_0.42-3_0.86\", \"1604_l_2_c_0_1_3-0_0.01-1_0.88-2_1.02-3_0.01\", \"1605_l_2_c_0_2_3-0_0.13-1_1.06-2_0.07-3_0.09\", \"1606_l_2_c_1_2_3-0_0.22-1_0.78-2_0.15-3_1.05\", \"1607_l_2_c_0_1_2-0_0.24-1_0.23-2_0.87-3_0.05\", \"1608_l_2_c_0_1_3-0_0.78-1_0.0-2_1.16-3_0.46\", \"1609_l_2_c_0_2_3-0_0.18-1_0.33-2_0.11-3_0.04\", \"1610_l_2_c_1_2_3-0_0.9-1_0.53-2_0.1-3_0.46\", \"1611_l_2_c_0_1_2-0_0.06-1_0.0-2_0.05-3_0.33\", \"1612_l_2_c_0_1_3-0_0.21-1_0.67-2_0.07-3_0.17\", \"1613_l_2_c_0_2_3-0_0.8-1_0.37-2_0.59-3_0.46\", \"1614_l_2_c_1_2_3-0_0.92-1_0.03-2_0.84-3_0.2\", \"1615_l_2_c_0_1_2-0_0.65-1_0.01-2_0.4-3_0.29\", \"1616_l_2_c_0_1_3-0_0.65-1_0.04-2_0.26-3_1.31\", \"1617_l_2_c_0_2_3-0_1.98-1_0.26-2_0.04-3_1.02\", \"1618_l_2_c_1_2_3-0_1.52-1_0.09-2_0.17-3_0.13\", \"1619_l_2_c_0_1_2-0_0.1-1_0.16-2_0.29-3_1.91\", \"1620_l_2_c_0_1_3-0_0.11-1_0.01-2_1.25-3_0.42\", \"1621_l_2_c_0_2_3-0_0.21-1_0.98-2_1.21-3_0.9\", \"1622_l_2_c_1_2_3-0_0.65-1_0.01-2_0.32-3_0.14\", \"1623_l_2_c_0_1_2-0_0.94-1_0.16-2_0.46-3_0.31\", \"1624_l_2_c_0_1_3-0_0.78-1_0.58-2_1.24-3_0.54\", \"1625_l_2_c_0_2_3-0_0.18-1_0.52-2_0.02-3_0.78\", \"1626_l_2_c_1_2_3-0_1.49-1_0.36-2_0.62-3_0.33\", \"1627_l_2_c_0_1_2-0_1.18-1_0.15-2_0.02-3_0.36\", \"1628_l_2_c_0_1_3-0_0.58-1_1.11-2_0.71-3_1.16\", \"1629_l_2_c_0_2_3-0_0.77-1_0.79-2_0.82-3_0.29\", \"1630_l_2_c_1_2_3-0_1.11-1_1.08-2_0.22-3_0.92\", \"1631_l_2_c_0_1_2-0_0.05-1_0.54-2_0.32-3_0.55\", \"1632_l_2_c_0_1_3-0_0.09-1_0.19-2_0.09-3_0.2\", \"1633_l_2_c_0_2_3-0_0.17-1_1.97-2_0.08-3_0.08\", \"1634_l_2_c_1_2_3-0_1.2-1_0.75-2_0.02-3_0.63\", \"1635_l_2_c_0_1_2-0_0.25-1_0.06-2_0.18-3_0.07\", \"1636_l_2_c_0_1_3-0_0.32-1_0.42-2_0.99-3_1.04\", \"1637_l_2_c_0_2_3-0_1.46-1_0.91-2_0.54-3_0.13\", \"1638_l_2_c_1_2_3-0_1.16-1_0.57-2_0.0-3_0.49\", \"1639_l_2_c_0_1_2-0_0.14-1_0.06-2_0.24-3_0.03\", \"1640_l_2_c_0_1_3-0_0.94-1_0.68-2_0.47-3_0.62\", \"1641_l_2_c_0_2_3-0_0.46-1_0.03-2_0.05-3_0.43\", \"1642_l_2_c_1_2_3-0_0.02-1_0.87-2_0.04-3_0.38\", \"1643_l_2_c_0_1_2-0_1.09-1_0.27-2_0.78-3_0.0\", \"1644_l_2_c_0_1_3-0_0.15-1_0.35-2_0.4-3_0.07\", \"1645_l_2_c_0_2_3-0_0.53-1_1.83-2_0.03-3_0.11\", \"1646_l_2_c_1_2_3-0_0.86-1_0.21-2_0.0-3_0.0\", \"1647_l_2_c_0_1_2-0_2.29-1_0.66-2_0.07-3_0.04\", \"1648_l_2_c_0_1_3-0_0.72-1_0.11-2_0.17-3_0.0\", \"1649_l_2_c_0_2_3-0_0.31-1_0.49-2_0.77-3_1.04\", \"1650_l_2_c_1_2_3-0_0.31-1_0.06-2_0.45-3_0.02\", \"1651_l_2_c_0_1_2-0_0.4-1_0.65-2_0.13-3_0.85\", \"1652_l_2_c_0_1_3-0_0.73-1_0.15-2_1.36-3_0.13\", \"1653_l_2_c_0_2_3-0_1.17-1_1.56-2_0.42-3_0.02\", \"1654_l_2_c_1_2_3-0_0.01-1_0.29-2_0.25-3_0.08\", \"1655_l_2_c_0_1_2-0_0.62-1_0.27-2_0.49-3_2.55\", \"1656_l_2_c_0_1_3-0_0.4-1_0.25-2_0.72-3_0.31\", \"1657_l_2_c_0_2_3-0_0.41-1_1.46-2_0.24-3_0.26\", \"1658_l_2_c_1_2_3-0_1.81-1_0.23-2_0.04-3_0.09\", \"1659_l_2_c_0_1_2-0_0.03-1_0.67-2_0.11-3_0.5\", \"1660_l_2_c_0_1_3-0_0.16-1_0.47-2_1.4-3_0.5\", \"1661_l_2_c_0_2_3-0_1.58-1_1.67-2_0.05-3_1.09\", \"1662_l_2_c_1_2_3-0_0.84-1_0.15-2_0.27-3_0.47\", \"1663_l_2_c_0_1_2-0_0.66-1_0.17-2_0.02-3_0.44\", \"1664_l_2_c_0_1_3-0_0.14-1_0.78-2_1.82-3_1.29\", \"1665_l_2_c_0_2_3-0_0.16-1_0.75-2_0.17-3_0.03\", \"1666_l_2_c_1_2_3-0_1.56-1_0.62-2_0.26-3_0.04\", \"1667_l_2_c_0_1_2-0_0.78-1_0.94-2_0.01-3_0.8\", \"1668_l_2_c_0_1_3-0_1.54-1_0.31-2_0.69-3_0.35\", \"1669_l_2_c_0_2_3-0_0.56-1_0.15-2_0.23-3_0.31\", \"1670_l_2_c_1_2_3-0_0.24-1_0.4-2_0.1-3_0.16\", \"1671_l_2_c_0_1_2-0_0.17-1_0.07-2_0.33-3_0.84\", \"1672_l_2_c_0_1_3-0_0.3-1_0.49-2_1.47-3_1.27\", \"1673_l_2_c_0_2_3-0_0.76-1_0.88-2_0.35-3_0.1\", \"1674_l_2_c_1_2_3-0_0.82-1_0.3-2_0.07-3_0.1\", \"1675_l_2_c_0_1_2-0_0.83-1_0.13-2_0.25-3_0.82\", \"1676_l_2_c_0_1_3-0_0.45-1_0.08-2_1.47-3_1.33\", \"1677_l_2_c_0_2_3-0_0.17-1_1.04-2_0.58-3_0.24\", \"1678_l_2_c_1_2_3-0_0.03-1_0.24-2_0.51-3_0.13\", \"1679_l_2_c_0_1_2-0_1.3-1_0.02-2_0.1-3_0.07\", \"1680_l_2_c_0_1_3-0_0.1-1_0.17-2_0.11-3_0.81\", \"1681_l_2_c_0_2_3-0_0.54-1_1.12-2_0.11-3_0.6\", \"1682_l_2_c_1_2_3-0_0.12-1_0.14-2_0.83-3_0.81\", \"1683_l_2_c_0_1_2-0_0.02-1_0.36-2_0.0-3_0.3\", \"1684_l_2_c_0_1_3-0_1.41-1_0.05-2_0.03-3_0.2\", \"1685_l_2_c_0_2_3-0_0.85-1_0.16-2_0.05-3_1.23\", \"1686_l_2_c_1_2_3-0_0.48-1_0.05-2_0.09-3_1.41\", \"1687_l_2_c_0_1_2-0_1.65-1_0.0-2_0.04-3_2.41\", \"1688_l_2_c_0_1_3-0_0.78-1_0.01-2_0.98-3_0.55\", \"1689_l_2_c_0_2_3-0_0.03-1_1.7-2_0.03-3_0.11\", \"1690_l_2_c_1_2_3-0_0.51-1_0.79-2_0.61-3_0.22\", \"1691_l_2_c_0_1_2-0_1.54-1_0.05-2_0.12-3_2.07\", \"1692_l_2_c_0_1_3-0_0.79-1_0.24-2_0.86-3_1.27\", \"1693_l_2_c_2_3-0_0.8-1_1.53-2_0.09-3_0.56\", \"1694_l_2_r-0_0.06-1_0.48-2_0.65-3_1.33\", \"1695_l_2_r-0_0.19-1_0.85-2_1.53-3_0.54\", \"1696_l_2_r-0_0.82-1_1.0-2_0.48-3_1.02\", \"1697_l_2_r-0_0.37-1_1.25-2_2.82-3_0.03\", \"1698_l_2_r-0_0.94-1_3.91-2_0.96-3_0.91\", \"1699_l_2_r-0_1.3-1_0.43-2_0.57-3_2.33\", \"1700_l_2_r-0_1.29-1_1.85-2_1.34-3_2.15\", \"1701_l_2_r-0_1.17-1_0.79-2_1.13-3_0.38\", \"1702_l_2_r-0_1.32-1_0.84-2_0.42-3_0.72\", \"1703_l_2_r-0_0.6-1_0.85-2_1.93-3_0.96\", \"1704_l_2_r-0_1.45-1_0.08-2_1.07-3_0.65\", \"1705_l_2_r-0_0.01-1_0.35-2_0.28-3_0.91\", \"1706_l_2_r-0_0.04-1_3.24-2_1.8-3_0.13\", \"1707_l_2_r-0_0.13-1_0.28-2_0.0-3_0.35\", \"1708_l_2_r-0_0.34-1_0.22-2_0.09-3_0.87\", \"1709_l_2_r-0_1.8-1_1.5-2_0.62-3_2.9\", \"1710_l_2_r-0_2.65-1_0.15-2_1.98-3_0.67\", \"1711_l_2_r-0_0.71-1_1.34-2_0.72-3_0.77\", \"1712_l_2_r-0_0.21-1_0.91-2_0.12-3_0.96\", \"1713_l_2_r-0_0.71-1_1.13-2_0.41-3_2.23\", \"1714_l_2_r-0_1.52-1_2.31-2_0.9-3_1.38\", \"1715_l_2_r-0_0.5-1_1.29-2_0.42-3_0.93\", \"1716_l_2_r-0_0.31-1_0.73-2_0.54-3_1.98\", \"1717_l_2_r-0_1.3-1_0.5-2_1.6-3_1.7\", \"1718_l_2_r-0_0.64-1_0.14-2_0.61-3_0.79\", \"1719_l_2_r-0_2.09-1_0.77-2_1.28-3_1.47\", \"1720_l_2_r-0_1.2-1_1.25-2_0.23-3_0.78\", \"1721_l_2_r-0_0.87-1_0.58-2_0.47-3_0.92\", \"1722_l_2_r-0_0.88-1_0.31-2_1.29-3_0.27\", \"1723_l_2_r-0_0.72-1_0.79-2_0.75-3_1.3\", \"1724_l_2_r-0_1.25-1_0.59-2_0.7-3_0.85\", \"1725_l_2_r-0_0.66-1_0.16-2_0.66-3_0.63\", \"1726_l_2_r-0_1.31-1_1.03-2_0.25-3_0.11\", \"1727_l_2_r-0_0.19-1_0.12-2_0.46-3_0.88\", \"1728_l_2_r-0_1.33-1_0.03-2_0.17-3_0.74\", \"1729_l_2_r-0_0.13-1_1.31-2_1.7-3_0.44\", \"1730_l_2_r-0_1.64-1_0.26-2_0.57-3_1.32\", \"1731_l_2_r-0_1.38-1_0.71-2_0.34-3_0.2\", \"1732_l_2_r-0_0.69-1_0.66-2_0.85-3_0.41\", \"1733_l_2_r-0_1.16-1_0.71-2_0.18-3_0.49\", \"1734_l_2_r-0_2.04-1_0.69-2_2.16-3_1.31\", \"1735_l_2_r-0_0.85-1_0.01-2_1.34-3_0.69\", \"1736_l_2_r-0_1.54-1_2.1-2_0.02-3_0.28\", \"1737_l_2_r-0_0.3-1_1.77-2_0.57-3_1.07\", \"1738_l_2_r-0_1.28-1_0.02-2_1.08-3_0.28\", \"1739_l_2_r-0_0.77-1_0.11-2_0.66-3_0.43\", \"1740_l_2_r-0_0.2-1_1.01-2_1.13-3_1.57\", \"1741_l_2_r-0_0.2-1_0.65-2_0.74-3_1.14\", \"1742_l_2_r-0_0.47-1_0.96-2_1.88-3_0.18\", \"1743_l_2_r-0_0.58-1_1.37-2_2.71-3_1.1\", \"1744_l_2_r-0_1.35-1_0.67-2_0.81-3_1.18\", \"1745_l_2_r-0_0.73-1_0.78-2_1.1-3_1.32\", \"1746_l_2_r-0_0.41-1_0.62-2_0.29-3_0.63\", \"1747_l_2_r-0_0.07-1_0.11-2_0.95-3_0.58\", \"1748_l_2_r-0_0.18-1_0.14-2_0.35-3_0.48\", \"1749_l_2_r-0_0.28-1_0.38-2_0.57-3_0.69\", \"1750_l_2_r-0_0.81-1_0.5-2_1.57-3_0.63\", \"1751_l_2_r-0_0.9-1_1.42-2_0.99-3_1.04\", \"1752_l_2_r-0_0.02-1_0.46-2_0.06-3_0.19\", \"1753_l_2_r-0_0.74-1_1.46-2_0.54-3_0.03\", \"1754_l_2_r-0_0.73-1_0.35-2_1.55-3_1.58\", \"1755_l_2_r-0_0.72-1_0.49-2_0.75-3_1.34\", \"1756_l_2_r-0_0.39-1_0.32-2_1.08-3_0.34\", \"1757_l_2_r-0_0.36-1_2.19-2_0.62-3_0.03\", \"1758_l_2_r-0_0.26-1_0.55-2_0.27-3_1.26\", \"1759_l_2_r-0_0.73-1_0.86-2_0.54-3_0.1\", \"1760_l_2_r-0_0.12-1_0.58-2_0.87-3_1.39\", \"1761_l_2_r-0_0.34-1_0.65-2_0.98-3_0.95\", \"1762_l_2_r-0_0.35-1_1.83-2_0.4-3_2.21\", \"1763_l_2_r-0_0.39-1_1.26-2_0.86-3_1.9\", \"1764_l_2_r-0_1.29-1_1.14-2_0.5-3_1.15\", \"1765_l_2_r-0_0.57-1_0.41-2_1.77-3_1.03\", \"1766_l_2_r-0_0.49-1_0.48-2_0.77-3_0.26\", \"1767_l_2_r-0_1.08-1_1.74-2_1.97-3_0.89\", \"1768_l_2_r-0_1.17-1_0.15-2_0.24-3_0.4\", \"1769_l_2_r-0_0.19-1_0.51-2_1.78-3_1.03\", \"1770_l_2_r-0_0.41-1_0.27-2_1.46-3_2.34\", \"1771_l_2_r-0_0.9-1_0.2-2_0.87-3_0.81\", \"1772_l_2_r-0_0.09-1_0.78-2_1.56-3_2.23\", \"1773_l_2_r-0_0.29-1_0.68-2_1.23-3_0.71\", \"1774_l_2_r-0_0.6-1_1.58-2_0.22-3_0.3\", \"1775_l_2_r-0_0.76-1_0.69-2_1.51-3_0.27\", \"1776_l_2_r-0_0.36-1_1.5-2_0.84-3_1.56\", \"1777_l_2_r-0_2.67-1_0.06-2_1.31-3_2.26\", \"1778_l_2_r-0_0.27-1_0.41-2_0.04-3_3.33\", \"1779_l_2_r-0_0.36-1_0.89-2_1.09-3_0.3\", \"1780_l_2_r-0_1.01-1_0.39-2_2.79-3_0.74\", \"1781_l_2_r-0_1.6-1_0.51-2_1.34-3_0.23\", \"1782_l_2_r-0_0.01-1_0.12-2_0.8-3_0.11\", \"1783_l_2_r-0_0.65-1_1.38-2_0.57-3_0.72\", \"1784_l_2_r-0_0.47-1_0.71-2_0.42-3_0.46\", \"1785_l_2_r-0_0.69-1_0.32-2_0.25-3_0.07\", \"1786_l_2_r-0_0.92-1_0.22-2_0.46-3_0.64\", \"1787_l_2_r-0_0.66-1_0.3-2_0.22-3_1.3\", \"1788_l_2_r-0_1.55-1_1.75-2_0.49-3_0.13\", \"1789_l_2_r-0_0.45-1_0.21-2_3.13-3_0.16\", \"1790_l_2_r-0_2.68-1_0.39-2_1.41-3_0.6\", \"1791_l_2_r-0_0.05-1_0.38-2_1.4-3_0.32\", \"1792_l_2_r-0_0.4-1_0.55-2_1.0-3_1.37\", \"1793_l_2_r-0_0.08-1_0.01-2_0.36-3_0.32\", \"1794_l_2_r-0_0.5-1_1.14-2_0.33-3_2.67\", \"1795_l_2_r-0_1.06-1_0.58-2_0.72-3_0.1\", \"1796_l_2_r-0_2.55-1_1.34-2_0.37-3_1.23\", \"1797_l_2_r-0_0.9-1_1.54-2_0.19-3_0.59\", \"1798_l_2_r-0_0.47-1_1.01-2_0.07-3_1.92\", \"1799_l_2_r-0_0.86-1_0.05-2_1.07-3_0.74\", \"1800_l_2_r-0_0.41-1_0.28-2_0.58-3_1.66\", \"1801_l_2_r-0_0.75-1_0.67-2_0.73-3_0.08\", \"1802_l_2_r-0_0.65-1_1.38-2_0.25-3_1.18\", \"1803_l_2_r-0_2.29-1_0.34-2_2.05-3_0.55\", \"1804_l_2_r-0_1.49-1_0.75-2_1.64-3_0.0\", \"1805_l_2_r-0_0.0-1_0.58-2_0.39-3_0.56\", \"1806_l_2_r-0_0.18-1_1.34-2_0.11-3_0.88\", \"1807_l_2_r-0_0.12-1_0.36-2_0.21-3_1.44\", \"1808_l_2_r-0_1.98-1_0.97-2_0.82-3_1.27\", \"1809_l_2_r-0_0.85-1_0.49-2_0.98-3_0.07\", \"1810_l_2_r-0_0.79-1_2.29-2_0.64-3_0.75\", \"1811_l_2_r-0_0.1-1_0.83-2_0.38-3_1.39\", \"1812_l_2_r-0_0.98-1_2.04-2_0.3-3_0.53\", \"1813_l_2_r-0_0.46-1_0.14-2_1.74-3_0.23\", \"1814_l_2_r-0_0.9-1_0.37-2_0.2-3_0.1\", \"1815_l_2_r-0_0.23-1_0.03-2_0.59-3_1.09\", \"1816_l_2_r-0_2.62-1_1.56-2_0.54-3_1.58\", \"1817_l_2_r-0_0.63-1_0.36-2_0.82-3_1.22\", \"1818_l_2_r-0_0.26-1_0.62-2_1.03-3_0.58\", \"1819_l_2_r-0_1.27-1_0.35-2_2.19-3_0.29\", \"1820_l_2_r-0_0.05-1_0.09-2_1.25-3_0.64\", \"1821_l_2_r-0_1.3-1_1.6-2_1.72-3_1.22\", \"1822_l_2_r-0_2.13-1_0.89-2_0.16-3_1.1\", \"1823_l_2_r-0_0.03-1_0.23-2_0.24-3_0.5\", \"1824_l_2_r-0_2.4-1_2.52-2_0.68-3_0.12\", \"1825_l_2_r-0_0.9-1_0.31-2_2.1-3_0.93\", \"1826_l_2_r-0_0.52-1_0.75-2_0.66-3_1.04\", \"1827_l_2_r-0_1.32-1_1.54-2_1.36-3_0.06\", \"1828_l_2_r-0_1.27-1_0.17-2_0.6-3_1.02\", \"1829_l_2_r-0_0.25-1_0.34-2_0.71-3_0.95\", \"1830_l_2_r-0_0.28-1_0.61-2_1.6-3_0.67\", \"1831_l_2_r-0_0.25-1_1.0-2_0.36-3_0.09\", \"1832_l_2_r-0_0.46-1_0.68-2_2.16-3_0.76\", \"1833_l_2_r-0_1.04-1_1.69-2_2.31-3_0.78\", \"1834_l_2_r-0_0.04-1_0.17-2_0.2-3_0.66\", \"1835_l_2_r-0_1.26-1_1.4-2_0.33-3_1.02\", \"1836_l_2_r-0_0.16-1_0.91-2_1.39-3_3.5\", \"1837_l_2_r-0_0.47-1_0.18-2_0.66-3_0.64\", \"1838_l_2_r-0_0.28-1_2.69-2_1.13-3_0.27\", \"1839_l_2_r-0_1.4-1_0.02-2_0.09-3_0.47\", \"1840_l_2_r-0_1.13-1_1.26-2_0.91-3_0.31\", \"1841_l_2_r-0_0.18-1_1.59-2_0.39-3_1.59\", \"1842_l_2_r-0_0.69-1_2.0-2_1.16-3_0.83\", \"1843_l_2_r-0_0.73-1_0.58-2_1.26-3_0.85\", \"1844_l_2_r-0_0.84-1_0.03-2_0.79-3_0.19\", \"1845_l_2_r-0_0.1-1_1.54-2_0.75-3_0.98\", \"1846_l_2_r-0_1.0-1_0.15-2_2.26-3_0.67\", \"1847_l_2_r-0_0.05-1_2.84-2_1.17-3_0.97\", \"1848_l_2_r-0_0.42-1_0.25-2_0.5-3_0.3\", \"1849_l_2_r-0_0.76-1_0.8-2_2.28-3_0.03\", \"1850_l_2_r-0_0.17-1_0.72-2_1.67-3_0.93\", \"1851_l_2_r-0_0.49-1_1.25-2_0.07-3_1.17\", \"1852_l_2_r-0_0.91-1_1.73-2_0.09-3_0.8\", \"1853_l_2_r-0_0.25-1_0.18-2_0.57-3_1.28\", \"1854_l_2_r-0_0.27-1_0.31-2_0.35-3_1.6\", \"1855_l_2_r-0_1.21-1_0.49-2_3.44-3_0.39\", \"1856_l_2_r-0_0.59-1_0.38-2_1.44-3_0.19\", \"1857_l_2_r-0_0.97-1_0.66-2_0.78-3_0.35\", \"1858_l_2_r-0_1.53-1_1.4-2_0.07-3_0.81\", \"1859_l_2_r-0_1.16-1_1.16-2_1.09-3_1.78\", \"1860_l_2_r-0_0.68-1_1.61-2_0.88-3_0.82\", \"1861_l_2_r-0_0.52-1_2.44-2_1.71-3_1.06\", \"1862_l_2_r-0_1.6-1_0.02-2_2.03-3_1.29\", \"1863_l_2_r-0_1.18-1_0.2-2_1.1-3_0.32\", \"1864_l_2_r-0_0.81-1_2.02-2_1.13-3_0.69\", \"1865_l_2_r-0_1.24-1_0.15-2_0.43-3_1.1\", \"1866_l_2_r-0_0.18-1_2.57-2_1.16-3_1.07\", \"1867_l_2_r-0_0.98-1_0.1-2_0.47-3_0.75\", \"1868_l_2_r-0_1.04-1_1.08-2_1.49-3_1.14\", \"1869_l_2_r-0_0.15-1_1.23-2_1.34-3_0.45\", \"1870_l_2_r-0_0.39-1_1.03-2_0.13-3_1.14\", \"1871_l_2_r-0_0.01-1_0.88-2_1.39-3_1.34\", \"1872_l_2_r-0_1.65-1_1.08-2_2.57-3_1.2\", \"1873_l_2_r-0_0.12-1_1.77-2_0.37-3_0.51\", \"1874_l_2_r-0_0.74-1_0.5-2_2.33-3_1.39\", \"1875_l_2_r-0_0.13-1_0.73-2_1.59-3_3.12\", \"1876_l_2_r-0_0.03-1_0.72-2_0.89-3_0.7\", \"1877_l_2_r-0_2.08-1_0.98-2_0.07-3_0.13\", \"1878_l_2_r-0_1.08-1_1.05-2_1.05-3_0.25\", \"1879_l_2_r-0_0.96-1_0.39-2_1.73-3_2.03\", \"1880_l_2_r-0_1.17-1_0.44-2_1.06-3_1.03\", \"1881_l_2_r-0_0.73-1_1.34-2_1.02-3_0.83\", \"1882_l_2_r-0_1.46-1_1.76-2_1.31-3_0.75\", \"1883_l_2_r-0_1.45-1_1.07-2_0.44-3_1.48\", \"1884_l_2_r-0_1.49-1_0.74-2_0.11-3_0.85\", \"1885_l_2_r-0_2.14-1_0.25-2_0.15-3_1.32\", \"1886_l_2_r-0_0.9-1_0.26-2_0.58-3_1.7\", \"1887_l_2_r-0_1.18-1_0.39-2_1.76-3_0.31\", \"1888_l_2_r-0_0.93-1_1.94-2_0.63-3_0.58\", \"1889_l_2_r-0_0.74-1_0.91-2_0.67-3_0.92\", \"1890_l_2_r-0_1.26-1_0.69-2_0.35-3_1.68\", \"1891_l_2_r-0_0.56-1_0.13-2_1.02-3_0.01\", \"1892_l_2_r-0_0.78-1_0.87-2_0.43-3_1.05\", \"1893_l_2_r-0_1.16-1_1.08-2_0.06-3_0.09\", \"1894_l_2_r-0_1.36-1_1.68-2_1.58-3_0.36\", \"1895_l_2_r-0_0.71-1_1.41-2_1.23-3_0.67\", \"1896_l_2_r-0_0.08-1_0.47-2_1.32-3_0.4\", \"1897_l_2_r-0_0.14-1_1.73-2_0.6-3_1.08\", \"1898_l_2_r-0_1.72-1_0.03-2_2.02-3_1.27\", \"1899_l_2_r-0_0.0-1_1.17-2_0.11-3_0.75\", \"1900_l_2_r-0_1.71-1_1.44-2_0.29-3_0.81\", \"1901_l_2_r-0_1.91-1_0.0-2_2.02-3_1.13\", \"1902_l_2_r-0_1.86-1_0.47-2_0.54-3_0.03\", \"1903_l_2_r-0_0.27-1_0.6-2_0.03-3_0.21\", \"1904_l_2_r-0_0.2-1_0.9-2_1.15-3_0.87\", \"1905_l_2_r-0_1.46-1_0.88-2_0.03-3_1.66\", \"1906_l_2_r-0_0.66-1_0.61-2_1.23-3_1.07\", \"1907_l_2_r-0_0.02-1_1.28-2_1.74-3_0.09\", \"1908_l_2_r-0_0.94-1_0.68-2_1.76-3_1.39\", \"1909_l_2_r-0_0.24-1_1.26-2_1.45-3_1.16\", \"1910_l_2_r-0_0.9-1_0.24-2_1.06-3_0.04\", \"1911_l_2_r-0_0.5-1_0.13-2_1.19-3_0.58\", \"1912_l_2_r-0_0.11-1_0.14-2_2.14-3_0.42\", \"1913_l_2_r-0_1.43-1_0.32-2_0.25-3_0.46\", \"1914_l_2_r-0_0.09-1_0.13-2_1.92-3_0.06\", \"1915_l_2_r-0_0.69-1_0.46-2_0.5-3_1.52\", \"1916_l_2_r-0_0.26-1_1.15-2_1.81-3_0.72\", \"1917_l_2_r-0_0.93-1_0.01-2_0.99-3_1.37\", \"1918_l_2_r-0_2.0-1_0.72-2_0.77-3_0.84\", \"1919_l_2_r-0_1.58-1_1.33-2_0.28-3_0.09\", \"1920_l_2_r-0_0.28-1_0.95-2_2.65-3_0.95\", \"1921_l_2_r-0_2.1-1_0.05-2_0.49-3_0.5\", \"1922_l_2_r-0_0.22-1_0.52-2_0.69-3_0.25\", \"1923_l_2_r-0_1.39-1_0.87-2_0.73-3_1.46\", \"1924_l_2_r-0_1.08-1_0.35-2_1.4-3_0.02\", \"1925_l_2_r-0_1.05-1_2.01-2_0.77-3_0.57\", \"1926_l_2_r-0_1.03-1_0.3-2_0.02-3_1.0\", \"1927_l_2_r-0_0.07-1_0.7-2_0.2-3_1.78\", \"1928_l_2_r-0_0.6-1_0.34-2_0.08-3_1.27\", \"1929_l_2_r-0_0.23-1_0.07-2_0.63-3_0.23\", \"1930_l_2_r-0_1.14-1_1.26-2_0.49-3_0.47\", \"1931_l_2_r-0_0.26-1_0.85-2_0.81-3_1.82\", \"1932_l_2_r-0_2.09-1_1.1-2_0.53-3_0.78\", \"1933_l_2_r-0_0.52-1_0.42-2_1.45-3_0.49\", \"1934_l_2_r-0_1.85-1_0.54-2_0.52-3_0.55\", \"1935_l_2_r-0_0.18-1_1.09-2_0.09-3_0.2\", \"1936_l_2_r-0_1.77-1_0.22-2_2.35-3_1.82\", \"1937_l_2_r-0_1.27-1_1.0-2_0.16-3_1.15\", \"1938_l_2_r-0_1.48-1_0.88-2_0.04-3_1.49\", \"1939_l_2_r-0_0.73-1_0.83-2_0.18-3_1.35\", \"1940_l_2_r-0_1.8-1_0.87-2_0.78-3_0.17\", \"1941_l_2_r-0_0.44-1_1.78-2_0.89-3_1.23\", \"1942_l_2_r-0_0.18-1_0.37-2_0.76-3_0.48\", \"1943_l_2_r-0_1.76-1_0.06-2_0.68-3_1.54\", \"1944_l_2_r-0_0.26-1_0.22-2_0.97-3_1.64\", \"1945_l_2_r-0_0.43-1_0.43-2_0.66-3_0.26\", \"1946_l_2_r-0_0.74-1_0.44-2_0.78-3_0.53\", \"1947_l_2_r-0_0.11-1_0.78-2_0.58-3_0.12\", \"1948_l_2_r-0_1.72-1_0.07-2_0.28-3_0.82\", \"1949_l_2_r-0_0.74-1_0.68-2_0.75-3_0.29\", \"1950_l_2_r-0_1.32-1_1.52-2_0.7-3_0.69\", \"1951_l_2_r-0_1.02-1_1.13-2_0.33-3_0.2\", \"1952_l_2_r-0_0.01-1_0.95-2_1.51-3_0.58\", \"1953_l_2_r-0_1.8-1_0.2-2_1.49-3_0.54\", \"1954_l_2_r-0_1.06-1_0.2-2_0.51-3_0.55\", \"1955_l_2_r-0_0.51-1_1.21-2_0.15-3_1.56\", \"1956_l_2_r-0_1.66-1_2.74-2_0.15-3_0.94\", \"1957_l_2_r-0_1.7-1_1.86-2_1.33-3_0.76\", \"1958_l_2_r-0_0.01-1_1.0-2_1.16-3_1.05\", \"1959_l_2_r-0_0.05-1_0.02-2_0.45-3_2.22\", \"1960_l_2_r-0_0.94-1_0.19-2_1.23-3_2.67\", \"1961_l_2_r-0_1.33-1_1.54-2_2.08-3_1.22\", \"1962_l_2_r-0_0.56-1_0.71-2_0.08-3_0.22\", \"1963_l_2_r-0_1.44-1_0.27-2_0.41-3_0.05\", \"1964_l_2_r-0_0.06-1_0.39-2_0.25-3_0.39\", \"1965_l_2_r-0_0.3-1_0.5-2_0.84-3_1.51\", \"1966_l_2_r-0_1.37-1_2.65-2_0.29-3_0.81\", \"1967_l_2_r-0_0.85-1_0.38-2_0.27-3_1.24\", \"1968_l_2_r-0_1.66-1_1.16-2_0.02-3_0.42\", \"1969_l_2_r-0_0.59-1_0.11-2_0.37-3_0.79\", \"1970_l_2_r-0_0.72-1_0.09-2_1.49-3_1.04\", \"1971_l_2_r-0_0.01-1_0.3-2_1.19-3_0.53\", \"1972_l_2_r-0_0.58-1_0.75-2_0.34-3_0.99\", \"1973_l_2_r-0_0.05-1_1.0-2_0.13-3_0.05\", \"1974_l_2_r-0_0.63-1_3.46-2_1.02-3_1.54\", \"1975_l_2_r-0_0.45-1_0.3-2_1.14-3_0.11\", \"1976_l_2_r-0_0.96-1_0.36-2_0.33-3_0.65\", \"1977_l_2_r-0_1.59-1_1.69-2_1.51-3_0.07\", \"1978_l_2_r-0_0.47-1_1.04-2_0.37-3_0.76\", \"1979_l_2_r-0_0.79-1_0.87-2_0.82-3_3.42\", \"1980_l_2_r-0_0.26-1_1.75-2_2.34-3_0.98\", \"1981_l_2_r-0_1.15-1_0.57-2_0.59-3_1.89\", \"1982_l_2_r-0_1.49-1_0.92-2_0.46-3_0.84\", \"1983_l_2_r-0_1.29-1_0.35-2_0.63-3_1.91\", \"1984_l_2_r-0_0.75-1_2.05-2_0.53-3_0.28\", \"1985_l_2_r-0_0.43-1_0.42-2_0.42-3_0.08\", \"1986_l_2_r-0_0.07-1_0.99-2_1.7-3_0.98\", \"1987_l_2_r-0_0.71-1_0.86-2_1.89-3_0.98\", \"1988_l_2_r-0_1.23-1_0.03-2_1.96-3_0.57\", \"1989_l_2_r-0_1.48-1_0.69-2_1.18-3_0.13\", \"1990_l_2_r-0_0.2-1_0.94-2_0.33-3_1.44\", \"1991_l_2_r-0_0.47-1_0.3-2_0.07-3_1.05\", \"1992_l_2_r-0_0.57-1_0.66-2_2.18-3_0.63\", \"1993_l_2_r-0_0.48-1_2.22-2_0.75-3_0.41\", \"1994_l_2_r-0_0.33-1_1.0-2_1.25-3_0.03\", \"1995_l_2_r-0_2.07-1_0.49-2_0.51-3_0.33\", \"1996_l_2_r-0_0.31-1_1.02-2_1.08-3_0.01\", \"1997_l_2_r-0_1.91-1_1.01-2_1.7-3_0.98\"], \"type\": \"scatter3d\", \"x\": [0.30971863077889084, -0.9885907115940256, 1.2899801971245486, 0.9941889503146785, 3.399565303609757, -0.25762445673269063, -0.42634031492696267, 1.7080732220551482, 2.1302564152364236, 1.0549129644713604, 2.6107706919472164, 1.9972531070549882, 1.7477456292160647, 0.9653891471292486, 2.1704348342146016, 1.4206530782868994, -1.9245855973520576, 1.5622912107189006, -0.48611233252399355, -0.5751939740674703, 1.3794827399851848, -0.9143330881806178, -0.8384532760914218, 1.1006441472956354, 2.862572663424586, -1.123498158803685, 2.343512199372489, 2.389424291568302, 0.8723740169932874, 2.497787647195281, 1.1196888709946298, 1.5339636217955617, 0.02723502053543103, -0.47409937747498154, 1.2927725020445213, 0.36604875853812247, -0.4638417348660997, 0.2963996027274268, 1.7471505921068198, -0.2097295600561957, 0.8643883622811291, -0.13974129088807907, 2.9962602519449932, 1.7002064418692209, -1.531766114955027, -0.15075662918871147, 1.7048989136227948, -1.4137124966963674, -0.4828594645853699, -0.0970401856296419, 0.6214897984899531, 1.0303897007944196, -0.013280785609969703, -0.11594399575499903, 1.0064791534272453, 3.434227981967263, 1.8047641994874621, -0.874468708746442, 1.9273241470432971, -1.0788616195852017, -0.5500502965101639, -1.1455182628773297, 0.7892762841034456, -1.2524539307566602, 1.2318911219115745, -1.653471311553309, 0.6541622358136012, -0.3508866644561721, -0.30273161869665777, 0.3118818360543607, 1.6981672123723612, 1.2538953778212198, -0.4998508347292778, -0.6949757813075592, 1.9310949641283137, -0.009064001318425774, 0.2774168871684225, -0.6298715858413497, 2.8813231527758068, -0.11609080734991362, -0.6808723802743157, 0.12839224998993148, 1.5935372782915955, -0.31036962486328235, -0.8341947511888634, 2.3564831144303717, 0.9491136240858177, -0.9782765798245263, 2.422155548155418, -0.02788400105762512, 0.44552205187040095, 0.23838160481295056, 2.910106837807707, 1.0270121224294595, 1.5795807879516692, 2.7920471164415868, -0.2831829011298663, -1.7030355601245142, 0.2496552562882257, 3.7077747457047487, -1.2883855176695644, -0.034371803919231114, 1.527255969032669, 2.2513821208834646, -0.9686875129627497, -0.6786498978647864, 0.9449566411594656, -0.23919445917486404, -0.09220282389507406, 2.131283396676231, 1.0840079219047871, 1.1087207328253395, 1.999322536494061, -0.5760152521333473, 1.4676352103384476, -0.18431480077139417, -0.5972241649549845, -1.4773317688268146, 0.900773987776614, -0.6884773844940808, -0.938000924849826, -1.8932720869273463, 1.401613226386143, 0.12330277360502973, -0.1183853549235756, 0.05087856968299609, 1.2007073491550702, -2.112964188004491, -0.8167235200780603, 1.6934271338495677, 2.7225573340801335, -0.6600102442323932, -1.7565802763832639, -0.5443227634081393, 0.6047315068164585, 1.7277605537252103, -1.2429865234350026, 1.849086272879215, 1.2656203414822564, 1.3451354114468979, 2.541173264754617, 0.9045466340464795, 0.016600928275282256, 0.9662007409216735, 0.42213286514729265, -0.4706163323461017, 0.8585158843641221, -0.5267100444671711, -0.5959843612051554, 1.6847406707413521, 2.5963866099222237, -0.49101720745169497, -0.576948311104458, 3.6641348485529774, 1.7155916624538672, -0.3912546856228609, 1.9713795616375664, -2.2043567414586134, 2.134831573016774, -0.42068722964785454, -0.7682838848506681, 3.627708908984639, 0.5123706623421855, 1.7417364723130353, -0.00489638302424189, 1.3980500828018518, 2.010248311647559, 1.2269011994958035, 0.028569145563551723, -0.7137103756097773, 2.5272047184112276, -2.01160718131493, -0.02669872430242126, 2.381766516513135, 1.2882431873636895, 0.4353605565621267, -1.3906713234561123, -0.5906681845245438, 0.011523182538018761, 0.25381378319897296, -0.16398509252879734, -1.6795817006327343, 0.9168861122683003, 2.2565943203231837, -0.254341243523853, -1.2863629176808584, 1.7117548232299282, 0.6588070892204143, 0.5587150024145864, 1.1094276080366894, 2.0881287549167347, -0.7416228533265177, -1.115339238632366, -0.08556138998039065, 0.8912640406204606, -0.23130502001061792, -0.09380538713375941, -0.4014785719144438, 0.8471800309880557, 3.193804716643448, 2.181710250718936, -1.1044908443590513, 4.273677524605699, 2.2977408869834814, -0.3974526556993305, -1.9802279434829506, 2.3692578507052775, 1.953424400198862, -0.13264801119718683, 1.6513787224051721, 1.1399900187885597, -0.252348572111438, 0.5464829712539763, 2.544797257875094, 0.8505757160160338, 0.29463933822847277, -0.5268905944828461, -1.7617219894231733, 0.6001924302368903, -0.16735132222372218, -0.6851244523523061, 1.406252047740156, 2.3784181594188727, -0.3159375162365736, -0.500022764324457, -1.110006288703711, 0.5530091513123601, -0.358118402615369, 0.006271864137046279, 1.8646421346557134, 0.24704773398941482, -0.2287473576598127, -0.18567348635296388, -1.7939757150183313, 0.5968324688011821, 3.2289949268914344, -1.1949328744007133, 2.8331566911456694, 4.2085388053047055, 0.14797769564023944, -0.8066737080022863, 1.4786403139186248, 2.3601388451426324, 0.7451778865097147, 0.1680910420732914, 0.14519052017406442, 1.8894435206631717, 0.6954056652753169, -0.27297540560289546, -0.1890959734875648, 1.5234374616186868, 0.7452433696867322, 0.9455349211297678, 0.9926553930723173, 1.681393801325339, -0.532516574106191, 1.124319242065281, -0.5400695609921404, 4.156575106636806, -1.4772008439350421, 1.365746001058517, 0.7420250281383839, 1.5821545179349208, -1.264897874932954, -0.2949418557788839, -0.31744888662110315, 2.053072807389551, -1.8587309431740264, 1.1918841012463215, -0.6217742737007423, 0.17627918674614051, -2.231513581201646, 0.9134709247062535, -0.1287422912110774, 1.3913777344703635, -0.23598230285417943, 3.12503252270854, 1.0304269646326765, 0.9021836763976379, 0.8405882816933983, -0.2060443787571029, 2.513555678005937, 1.4140505394268068, 0.8388929560015812, -0.6521319085969288, 1.9810194280727838, 3.19957582286637, -0.23807142008768567, 2.3225760427688993, 0.2147588635191494, 0.8779557254346105, 1.5960604621926278, -0.7763077894157149, -0.4970988029694021, 1.4887865428659997, 1.1826030303291304, -1.0616145348728292, -0.7652113788681789, 2.17013724702152, -0.5729426878819053, 0.7618909657948431, -0.17247819118718, 1.2036969253479155, -0.2931871183071211, -2.070592414107013, 2.116733174033147, 2.5827190069585817, -0.14152691204303203, -0.9370345722235929, 1.4974168627930589, 2.467732880007464, -1.0872088616134539, 2.174014987505492, 0.5269039019634948, 0.8635227371646407, -3.563999666198682, 0.7237294647446952, -0.31362233291814, 0.3097509501042748, 0.5344887155453539, -1.0573121982058638, -1.1680524718468357, 0.3622482757329287, -2.2801238682198126, -0.40390246868222257, -0.8553100678596435, 2.6222156794226628, 0.029113808226228333, 1.530638312692595, 2.121975891489347, 1.6080063191601335, 3.099019219721246, -0.13755549345333007, -0.15766295981059764, 1.5589422394930237, 2.356309274143313, 4.438829272595637, -0.5638556410149553, 0.24163413502278464, -0.1719641100570053, -0.29605056191141066, -1.230698914423312, 1.2703778610402052, -1.4304201797473644, 1.98482783655361, -0.17028967407798046, 1.3422988774971565, -1.295891689481437, -0.26357347919895213, -0.5374953210611706, 2.5355014287374527, -0.5547869476072178, 2.978534087590566, -0.8462826888501302, 0.4822978721599739, 3.1954384757941976, -0.922061267995749, -0.031692356343976824, 1.5208770194628787, 2.7170314685053234, -0.7857852114404089, 0.7993496723935476, 2.02360312887937, 0.19454837233744582, 2.3158905283511784, 0.4107819274171213, 0.9540459507762262, 1.2981807075444471, 2.8745317469867353, 1.2439151690010601, 1.870955231530906, 0.5966497885535258, 1.6091429023780437, 1.837366143531158, 1.4082553133418476, 0.7031117936634009, 0.3375323879693646, 2.6158282881941797, 2.6453176977408868, 0.8144896636595701, 3.8920557813775667, 0.7051368855363382, 1.5215076470931117, 1.8583611581545236, 1.582258693671104, 1.7558823975610953, 0.6405763219958625, 3.313289987899836, 1.2032704765047026, 1.4032547256103887, 0.8819341426280908, 0.7185192703439264, 1.7499666230201139, 3.448803816575926, 2.351241698951722, 0.19463953531686873, 1.3257971938541866, 0.6829700154863857, 1.6355392207905122, 1.4888706750934648, 0.6865350062326818, 1.1559143066139637, 3.7673761952906566, 1.434453798423804, 1.5426282520055241, 1.8520539352239984, 3.176410668774923, 2.9949159176877815, 0.19627027814291453, 1.797816887104069, 2.355775319465322, 1.3335098080894139, 1.351317553898442, 0.7320985018138508, 0.4097755123464626, 1.132627451768162, 1.619789576194019, 0.8538369799227117, 2.5482114742819135, 1.7161211483171106, 0.38029568714774675, 1.2911074035884276, 2.4074862179517122, 0.7206016793194854, 0.3933457304571534, 2.1042923727637888, 0.8083201139656189, 0.8589779544632785, 0.11554702430031816, 2.340962571093222, 0.3476121527836743, 2.2853205503276297, 3.3936244849169324, 2.1444757057747004, 0.48817893669645607, 1.863562213694682, 4.171887127974518, 0.22281395608659005, 1.2332370423686707, 0.8961435691064329, 0.09296548232402291, 0.2890175475212865, 0.6048790762964713, 0.7621842037601391, 0.36053971905347504, 3.7829069835049496, 1.117532005349535, 0.35858470029803446, 1.0051267525795549, 1.6042680505310707, 0.008694218584874958, 0.65339874071578, 1.9709794017188278, 0.685188249480118, 0.9150261348216059, 0.7004903720678738, 1.8579961931472715, 2.581651749831681, 2.8209373644545233, 0.05306604231552581, 2.555013677520562, 0.6091784131842519, 2.3052919501503033, 1.0583336298585555, 2.867555306897658, 0.8966046906512798, 0.47214961352475915, 3.8711919174158553, 0.41074088288911836, 2.307877149146007, 3.7871784229171426, 2.328317331271184, 2.3211729791705, 0.003751848625137111, 1.2269344029504086, 0.11582483462562088, 1.9786200830346834, 0.8454476774484629, 1.435055747664621, 1.1046203212410415, 1.772216595961344, 1.0354057022012055, 0.9006292093295738, 0.22545778455536014, 2.6150517761553136, 0.7620746873839118, 1.264552051757826, 1.2662851983202421, 2.5403352489226716, 1.7337216890161131, 2.130767648386211, 1.4547964560735864, 2.874589074925251, 1.3196853338968804, 0.5206332178372286, 2.5353648576310555, 1.2728940250529979, 0.469805590529468, 2.609626243255362, 1.1247134631747016, 2.20726575596819, 1.5145752315999104, 1.8400731935194345, 2.190301844726016, 0.2738329768106944, 0.9501384368087236, 2.1016963952774863, 1.3950106196796648, 2.1281924159736363, 0.6128834444311843, 0.6909720299054825, 1.029126261358206, 1.441202923064887, 0.10359097303420572, 1.3193368730610358, 0.4955655829433526, 0.4165652501497098, 4.053903144283099, 0.4025105169808899, 0.4909547373120986, 0.9098357647042902, 0.8143611919722158, 2.1710254227889694, 1.2065806542628277, 0.7671256651553109, 2.625474784264883, 1.5326472321009446, 1.159137219335635, 1.6002212276200365, 1.7943993498800934, 1.5952417279029154, 1.1778607178323819, 1.852679070240591, 1.2407626600141528, 1.7579613346309235, 1.207054188429613, 3.7022028699048857, 3.7194773411657973, 2.868641091797114, 0.006472891675196046, 3.59778845009458, 1.998506999722546, 0.7389201065346126, 0.12523070241571177, 1.6549552680511455, 2.3914340137008927, 2.2538507361589755, 1.0568721062300037, 1.862149210885431, 1.261798786985771, 1.6061199397663657, 1.6400968669348286, 1.4924138124469204, 2.272296239522015, 0.9445645643810662, 1.7368942591202456, 0.9278267106069588, 0.7374657384022656, 1.2648158333657473, 0.5649604285508454, 0.7829239036698986, 2.901267200193101, 1.9110333052807906, 0.7125294825435258, 1.937029033965333, 2.591941682955386, 1.9738308257126689, 0.0001241066052287687, 1.705883582211356, 2.577429609349408, 2.4087493752795117, 0.26536873437385855, 0.8050774371346276, 2.514983080539918, 2.5088111146494856, 0.023154251817315008, 0.9562060447789607, 0.23513335129269386, 0.8991376926397696, 0.5008546086677153, 0.35959223506009186, 2.364116605727353, 0.08904662258620843, 0.6922139880948206, 0.2630598275214767, 0.926414603988269, 2.0018861089889968, 1.5759115911441566, 2.1710388840400308, 3.2188995143100194, 0.22424255062004328, 1.391293274064084, 1.1764971492539424, 1.1594556127588458, 1.032921778045972, 0.6970191221925965, 1.0624113918162832, 2.072004569985638, 1.143806096379609, 1.2325144781313946, 2.0892879224318093, 0.5226529591851243, 1.8498930986129065, 0.1795012768736085, 2.403434617853212, 1.2729918037595482, 1.4789038351000632, 2.1216467984912715, 1.8377174653423753, 1.2927800367729239, 0.7957012493356797, 1.7627891229816073, 1.143299858912386, 0.5444383482553432, 2.555385274893574, 1.7453861708920946, 2.225259147159485, 0.7364444635667515, 1.6991577285422363, 2.481553250678364, 0.8248241904561906, 3.168894648205743, 1.058123379134484, 0.5075900366618805, 1.9259309287759971, 1.7031262282776034, 0.011377725179192333, 0.6734942520903733, 1.8232703264646473, 1.3251645123842712, 1.3999206657611907, 1.890632740944636, 0.9910696117090042, 0.3013152725399144, 1.3711795219733816, 2.6314818852025086, 1.659478034427131, 1.7364402492089355, 2.1644369668831915, 2.2592095681768347, 0.6038995721559104, 0.05251346418340552, 0.6341707264974652, 2.984161427514641, 0.9647090178827463, 2.169742818689943, 1.940514614960556, 2.712603088838929, 5.132699078217058, 1.193973821469403, 2.1625837276875624, 1.3878588203860331, 2.4438876519351718, 3.640957224594625, 0.32978725254728203, 0.9421857605505264, 2.674038647130528, 2.3717432259492846, 1.884500070346593, 0.4709765362562788, 0.5695780423816093, 1.258895622673974, 1.2449063264391482, 3.6813873943551485, 0.30806116634496494, 1.9119336676686107], \"y\": [0.8120325353063325, -2.904616449977882, 0.15161220525819274, 1.072859680651204, 1.2912647630065472, 1.3556702130530027, 0.7408982269993196, 1.7527733463051431, -1.0778324086528857, 0.04827112703713321, 1.4610395261332991, -1.6052809414547313, 0.2727134843253243, 0.9703067416572047, -0.5601592510634609, 1.373292408932027, 0.44178682640275424, -1.5780169971394722, -2.784987732991687, -2.6530905996890204, -2.3604444198022607, -0.04158810847509542, 0.9207735779004629, -0.8355029655995221, 1.2076780520647072, -0.13458822279280502, -0.33109842910515774, 0.4158452994734694, 1.626720178881767, -2.3880053537435644, 0.8293517915312527, 1.133815039109611, -1.3157610890802611, -2.5208910747253475, 0.21334834976609995, -2.0317004041516786, -1.7617062585534757, 1.4305894038206732, -0.7053136333173615, 1.5727149254051471, 1.2268459215408027, -2.5388145604340675, -1.0846518415862099, 2.131011948417665, -3.2917698603949503, -1.4543765736635101, -3.7952392486703226, -0.5224558388949603, 0.04160583613505198, -0.4714677615335706, -1.6882072972439763, 0.24313350866802286, -2.8065201105574955, -1.4205324577893577, -1.8312244826414323, 0.3117467676281016, 0.05794951358931977, -0.1027628336045624, -0.8845499057743923, -2.3673546418333755, 0.2597428737465106, -0.9568474235964401, -2.945507945702582, -1.6960392605749515, 2.3520966585492027, 0.2642687574976419, -0.7082675197364583, -1.8062374796200453, -1.9939566572300238, 0.3844005879681085, -1.0611857147380084, 1.112236734535692, -2.0395937717371107, -0.90633794445756, -1.9765792970378389, -1.9243395842507232, 2.036371245501431, -1.412260734222166, -3.2563813065399643, 0.6080809968211474, -2.7031070195831863, 0.8174837334376828, -2.464855602604484, 1.5330810968805912, -1.7491073601756146, 0.5267526147755499, -1.6764873146398538, -4.149697639395802, 1.6910627547908588, -2.7667311916991433, -4.274962462843083, 2.3828915834613373, 0.46513843915218334, 0.0811571199932517, -1.6263925297044546, 0.40426591609397255, -2.0244624743853676, -1.0833637320747296, -1.4818120798323027, 0.3852775306704417, 1.8980985602438625, -1.5554896536787342, -0.6807639498336475, 1.9334088565773677, -1.168242513148052, -3.4715134934481298, -1.3563291329215406, -0.03877113232748686, 0.9020813421511369, 1.7436815420761569, -2.6342543175897672, 0.25815264702686025, 1.5240506303600556, -0.3651006579559253, -0.5539313326683776, 1.4829507264871769, 1.5027866886911188, 0.38303894562878793, -3.8592826135059366, -0.2140289161963308, -2.7400993959901534, -1.233984525726494, -0.3522171938713091, 0.4241186655352258, -1.2995684352553232, 0.4439461772927473, -0.7963185420582247, -0.9645067878337729, -2.2004545650463507, 0.06357853538899905, -1.3053229223760008, -1.9800551977980199, -2.598224452828619, -0.28526575560866285, -1.0722002299137832, 0.373649096749076, -0.24173720934415865, 0.010887628645374736, -2.3830194488154843, 0.15544085356226978, 0.8109793143436592, 0.19655197293499072, -2.1312100564042336, 0.6126758776449472, 1.0050460372348926, -1.8478245829015223, -0.6170216054880475, -0.5335091027137194, -2.175630517926221, 0.26958549890624295, -0.11878378853275351, -1.4682705055116847, -0.4258286207910472, 1.8821265050699783, -2.737136857726152, -0.43999544288541725, 0.7269939621198298, -1.624884968208332, -1.4766090896188553, -1.5577612732179076, -0.10910636851060973, 0.3389944450553959, -1.796276789759246, 1.1323405730691332, -0.630290539775553, 0.3701326599376742, -1.5481203373605168, 0.1631545855075307, 0.03456007123601257, 0.42634859099086375, -0.6309899960321447, -2.8443632280199784, -1.6215393323550757, 1.2107552371073536, -3.3442370076440993, 0.47392277705918406, 2.0997242611041385, 0.8912788405900574, -0.9695930811100811, 0.11292156048116087, -4.1408644687883145, -3.074144531625899, -2.550082373777121, 0.7454475490840262, -2.8523813144167516, -0.5009609316145545, -0.14644015226573848, 0.4113180097706941, 0.6532176727917061, 1.1791933388014435, -2.1416474488969204, -1.9496135183690417, 0.19188353761545063, -2.4290445570029733, -2.326824077333095, -1.5699682205962178, -0.6046828280010663, -0.8955957336831576, -0.0983743143650131, 1.3729912007312484, 0.19076903220866837, -0.14107979076689026, -0.6932962912074012, 1.9327951349731056, -0.04976153939490069, -1.1546186507274898, -0.5503543271709912, 1.5353234545576195, -0.09072339434649801, 0.9771763562551521, -1.408499937579526, -2.7968771976709066, 1.4909769782698485, 0.8420478914514029, -0.8159226376240893, 0.0037620355090033364, -1.4661934647116766, -0.03535148847837033, -0.9967275455986419, -1.2107516186061695, -1.4008010116907692, 0.076380727435994, -2.084229921531054, -3.0439078921654685, -1.6829391475503213, -3.344561567593224, -2.6573760875212953, -0.7537535082864623, 0.6920584241444991, 0.7177652591965393, -2.542209828233007, -1.3430565464367905, -0.5359443667649166, -1.0784157721557104, -1.2205439663495448, 1.012959690324188, -1.8373645590385246, 0.4997778348312125, -1.0554804472530992, 0.16592777825966643, -0.9443193918724596, 0.39065162374248574, -3.0162956710468825, 1.983517969952803, 0.4523742101884247, 0.6230998708640805, -4.49190389377174, 0.09812884428579882, 0.17680692199508785, -3.0510971947261023, -2.0980682600909333, 0.12122388748471713, 1.8213518542325158, 0.9329727695898427, -3.554992800058074, -0.24175793322743933, 0.806961249322564, -2.077031865056928, -0.8489680150762273, -1.0395310481212647, 0.8092479164200028, 0.8215636550103702, -0.6429373149831186, -2.088174817583261, -0.6613754829598071, -1.3605428069388297, -1.2552185566652883, -2.2000466801494962, 0.27506004473978907, -2.7090860400605643, -1.1896645994171549, -0.2414700307171036, 0.6542737040414006, -1.3306687831612136, -0.2204743882724981, -1.3713938946626911, 0.7792459510518785, 0.18430642019907295, -2.171219566018477, 0.0648411236974451, -1.1116505002492432, 0.8030090546214779, -1.7967321729671872, 0.6530011082578131, -3.10200324105882, 2.5579788911305155, -1.5170749900702307, 0.10161579755818684, 0.10834504472418827, 0.41310249732529947, -1.2851866620969905, 0.9368541222316533, 1.229576559865611, 0.18072368296207997, -2.3019894754963612, 1.1998595752380594, -0.5840341993270017, -2.358858195513581, -1.1062078453114814, 0.054163583553949124, 0.09403384444819785, 0.298857146714111, -2.3240273106549685, -0.25482123238259036, 0.31665484960698054, 1.459152945289898, -1.1612282358143255, -1.7054528574239831, -1.1665859041421986, 0.4583326957502487, -0.023154476332858387, -2.0172119537618096, 0.15488094206469882, 1.407214099925692, -1.8910665322188382, -2.549103611212702, 1.6847599761015313, 0.7398053823799597, -1.796231627546406, 0.3983436495565753, 0.7279842832935044, -2.873963944444143, -2.37979713272921, -2.4125569534454403, -3.3803861785251463, 0.4117185461847992, -1.8136978076002963, 2.7272595941422573, 0.16119617181346135, 1.5814070940562188, -1.3392147659060745, 0.6574241494707667, 0.27341713785174115, -1.4726700200399097, -1.7682340230290483, 0.7802885733476388, 1.5375221454973018, -1.8120780851127762, -2.0986786270902424, -1.5438173641038697, 1.8402454505974966, -0.7582818619281089, -0.8197856889988996, -0.8289357266545304, 0.4532119781157211, -1.420386832633648, -0.03171952016512403, -1.386546835681586, 0.09769387748069014, -0.8053511725327914, -0.1245010822272008, 0.8318506970825688, 1.4135461418658148, -2.150656138933022, -2.7340741751089075, 1.6497662054531887, -0.7783099477201747, 0.12702469176630915, -0.5097647128580961, 1.5352494713487594, -1.5840566701698064, -1.9601658407019453, -0.06088767772338133, -2.557185087035571, -2.6284797821151686, -0.3720849755320699, -0.9412184775888639, -1.968043474282601, -1.2940287173612777, -1.170964973358646, -3.5603060461504366, -1.6476629480639726, -1.446793035709854, -0.0072666674378680796, -2.964318938469927, -0.1293399611919842, -1.5173682768651389, -1.8021215550394658, -3.6793002121850535, -0.7113536670428988, -0.9368664595421886, -1.5270286524538679, -1.868730262844001, -0.5045743582261799, -0.30614547595139774, -1.4386054348626143, -2.8046258798892323, -2.0888631703957836, -3.5479547495490724, -0.8740682187832651, -1.391703861203109, -1.1451111117238653, -1.2528261616090393, -2.7277124045400125, -2.356773789818825, -1.3860467034306716, -1.6088499936044511, -0.1274412024667947, -2.920835586752344, -1.916944803483341, -1.8177535025946439, -2.8065254637289274, -2.041690120965666, -2.7236169750289063, -1.7518060757073506, -1.5113633290057131, -1.696098617431842, -0.7721640032201517, -2.4849928623388897, -2.7262941130115297, -2.528122012959348, -0.5800399299956533, -2.7076561992447457, -2.5262230288153096, -2.66867142171356, -0.07318402978019423, -0.1848943759109074, -0.46399648582677455, -0.8116846719631388, -1.3913557978165783, -2.235957787990363, -0.7385247871699543, -0.7331485193137255, -1.7951526366301902, -2.0308770629882136, -0.3587660173618167, -0.2562513517713719, -0.7260647270315082, -1.8722044610392967, -0.3378280117992687, -2.697549846228103, -0.39161847009538187, -1.2869489377660834, -0.5662265128871418, -0.9710702917745861, -1.0785068395828723, -3.056995056903706, -0.18781146308373708, -1.9452970976825044, -2.377396263798097, -2.2676959759934885, -0.3244017498334858, -1.1780737996545576, -2.0948759613733787, -0.5889584980196234, -2.811067063054776, -0.2734067749835416, -4.237956338618574, -2.8776653144423903, -1.8665264706407116, -0.7791318271316978, -1.1402805327782963, -0.4696749801175667, -1.4810367003132712, -3.5248137554754404, -1.0434178902983935, -1.5504397782568953, -0.45038926576492133, -2.681035858000633, -0.8757098984426865, -0.39687439550309056, -2.2151835190525064, -0.5005508678911317, -3.0433832265161613, -2.7644697958043976, -1.3749382479566903, -0.9640908581047741, -0.8576296733446196, -0.6049398352300254, -0.7502299436029767, -0.6450195164159751, -2.381205261103119, -1.4876516917032108, -0.12603888642472727, -1.652404976978758, -0.857780811910143, -2.822232541407079, -1.6235494030169249, -0.7894045037454156, -0.1039862584521406, -0.9834166579482918, -0.4647595829093787, -1.0094157225782578, -1.2724846866904314, -2.6849337902926225, -0.6342843521653432, -0.2620660509516085, -2.2573273851137206, -0.05807456900518804, -1.2953503259398362, -2.5254937740215997, -0.028372631464980147, -2.402932590140481, -2.9359120718755367, -0.8081726860580802, -1.3164487628002668, -3.8062961911522137, -3.9346538057650577, -0.2806407717064625, -0.24668599338174235, -0.4603563147480574, -1.0355441216080634, -0.03640462351554574, -1.2620349966108029, -0.15998317499700065, -0.4748120442670285, -0.28084873960373424, -1.8841658007134638, -1.9241627289445478, -2.1426687266581226, -2.078884854350693, -0.7921141069419956, -0.8431647443499879, -0.81720304226813, -1.0046074024245297, -0.05335769957723635, -1.8647068269948965, -0.7596011149403852, -0.1661498728609513, -1.2157686300843307, -3.2548299185461866, -0.2545225689259526, -0.26503495577904, -3.2808756616029626, -0.5896070455245085, -0.966479261035041, -3.1032760934113166, -1.2653353481294178, -0.6827510427222643, -1.4077044864272517, -1.8876839372386711, -1.1895450574659228, -0.8122971931573253, -2.394520481100809, -0.18436765318952353, -0.9791285141251672, -1.5270606581708117, -1.1011261650348758, -0.39342752833264494, -2.148643169827749, -1.6532741766095507, -0.5002407669769126, -1.881313986451002, -0.9857978742908028, -0.030180316937233997, -2.0808167558933723, -1.081750838536639, -0.9578657301916441, -2.4651225598584663, -0.7296374482169729, -1.479138177874221, -1.4457627895641756, -3.821867611549828, -2.4108548558529974, -0.8973885219363245, -5.0766857239143155, -3.7612511388457683, -1.6527341177791781, -1.5567861084891983, -1.59407607337178, -2.4214492942246, -1.1589227750001145, -1.3573416183341909, -0.7929670160391743, -3.0651303647294132, -0.14272120313924264, -1.716237319559783, -2.2475014571268552, -2.343013355263309, -1.913914426208469, -1.85521844227123, -2.058601982175028, -0.20039640635340894, -1.4552378339276553, -0.6616664845391151, -1.0556895277499387, -0.9367680564053963, -0.7747169006084433, -1.2164111610288142, -2.8712662061484857, -0.10587743157647311, -1.428840118666985, -0.3699293188686511, -3.241047762705184, -0.4025151251606517, -1.35719959968718, -2.7594582084269543, -2.842137146152359, -0.27985477470467257, -2.10432178863864, -3.3660675583498207, -1.9632475320445628, -1.0816241831620237, -1.0545183924000225, -2.128235859876492, -0.06983651967770799, -0.6026922130510495, -0.22812683054155292, -1.8136846750160425, -1.5242755333387903, -2.8368609985950357, -2.300640225515429, -3.477163834952239, -2.9879626297621495, -1.7724302580197147, -4.836163964162319, -1.7273362200368898, -0.7311111272131948, -1.965645165337077, -0.44219089094207065, -1.1664799465498452, -2.3239980091503565, -2.087711700718781, -1.529330949939876, -2.0628183965271365, -0.11382520468171953, -1.7233862888928573, -1.222580716002856, -1.3214198218909148, -1.0155730082201007, -0.5497667697779687, -1.8025575488045111, -2.0539800563229234, -1.8998438731656129, -1.659412997326203, -1.6986464882863874, -1.9634747702366067, -1.0233153793514476, -0.9429962166683942, -2.5307944241244114, -0.5646286166965465, -1.4354390686194511, -0.06327537556312757, -0.3618702014093216, -2.1624689548797305, -1.8670148910689663, -2.5421450955016924, -0.594871657364309, -1.1983660933199434, -0.5863285089231491, -0.576936961381559, -3.120393993659814, -1.614814004562438, -0.45322090447911545, -2.0265815183572036, -1.5890657159581811, -0.4707535389329939, -0.789174088090413, -0.264032674640745, -1.5159263937706648, -1.4861719291939772, -1.876582577225411, -0.7500111868892221, -1.9114825183849988, -0.07464482712356857, -0.7130311223713626, -1.2318355580401326, -1.8819006677617822, -2.810651070804887, -0.8645238351157213, -3.529345000859943, -0.47511432224865124, -0.33121473793138245, -2.0653008875259395, -1.3107271967877598, -2.2305257896509647], \"z\": [-0.18010679550866282, -0.7672426548564824, -4.457953968275022, -1.9116350337326868, 0.7781010797877048, 3.891111966305096, 0.3960386241004237, 2.0953495032792713, 0.8445197083791554, -1.9831737181544695, -3.7477449632684636, 1.7164476181439108, 1.9444020148866006, 0.9483580206928721, 0.6255700766988932, 0.20436654856021708, 4.45950244723297, -2.174294394889508, 5.040583615626097, 2.2108772564559898, -4.790845993867425, 4.860809033599231, -0.6416924967306716, -1.4116907722196008, -4.054224633280421, 1.0626734098777453, 1.1596547973526263, -3.4630485361538903, -1.906871093242362, 0.4812003688042443, 4.766293984622377, 3.1244038198031747, 0.8841943048764955, 3.379506706777499, 1.5971801507217522, 2.7188393236452226, 0.08586492775399268, 5.026197956634262, 0.8802081900566359, -3.6985516129184046, 2.1972021939600026, -1.5214008933689045, -4.135710592072413, -1.531533394395102, 1.817379638637937, -2.1173798799633796, 1.7709406351892376, -0.6715032453560754, -1.780055056808299, -4.200101914872481, 3.6244097630052936, 3.0710102096307024, 3.2164062303559904, 3.8856350854051938, -2.957225932759161, 1.9179881261655796, 2.6928599142890945, 2.224282131997003, 1.1290459804662394, -0.6910060824271911, -3.656812081574361, 0.5501778381289775, 1.9740298485384624, -3.6843077361541443, 4.968052171725112, 1.271106970177338, -3.544029750917712, 4.314029421900632, 2.425859024941132, -2.1128055330204405, -3.897608838167139, 2.121751313382636, 2.4477076300412133, -3.7533552726424992, -2.9235939314583717, 4.9442550208496465, 1.2459899976833366, -3.88156877092638, -4.643449552867564, -1.6639472303532434, 2.7939292191208693, 3.990384363762179, 4.938235869590259, -2.274245905884132, 3.671201800825046, -1.0658324968328987, 4.906754006980413, 4.295718812252587, -3.259700597991161, -1.0190334049440795, 4.405381101195345, -3.17206652209362, 3.450760045495609, 0.15530150934826548, -3.029448044328557, -4.069302590749717, -1.4853104670925878, -4.636655782451689, 0.7201723070641783, 0.8356241554721207, -0.13886045261635083, -2.3217142923257197, 3.695450511885398, -2.810156206099232, 2.3349901974356415, 2.265795071424101, 3.0582782906153474, 4.801591189176464, -4.634213154968704, 2.876277020994607, 1.6596416785399484, -0.2934035069240384, 3.8983159543262884, 1.4064006045919317, 2.459442908715901, -1.362213667493569, -0.9865380747139163, 1.804151847787229, 3.943223207911511, -0.1876017249175641, 3.935008081300892, 1.3602422882307987, -5.045976297080276, 1.1678062234908246, 0.8987043170125819, -3.1967655448030277, -2.4763188412212847, 4.340210435002489, -2.450942093928689, -3.898501588164942, 2.016887450410854, -4.390123731424806, 3.5569587277502714, 2.978472469539292, -4.466689220775764, -4.508442527164456, 1.5345684890703364, 4.379528842789598, -0.2662728147146298, -0.35755918460962377, 3.9818290413998474, 1.0295099647594421, 4.494523397037962, 2.2509136033789874, -2.5520408386171187, -4.146433386849946, -5.020314826231734, -1.8176922367654367, 4.618997270761674, -2.04777914860471, 0.9083924460479986, -2.131396531359586, 0.2947126822223973, 1.4766143390287576, 1.3195845171936593, 4.535975194042163, 2.462919216150457, -2.280527433085931, 0.6261922036795582, -3.4910396881243915, -4.0061396961432365, 3.313809312309105, 1.1663933400273807, -4.359978594669121, -3.45683365151378, 1.2679686906443601, 3.691220259529916, 2.806888462726734, 0.9866796882416882, 4.449486062975917, -0.8700757013996778, 0.10235929544132549, 4.108778937348727, 5.096419185498019, 0.7188541473762422, 2.606032782782594, 0.3582092983605305, -3.1020008173686158, 4.266394567684892, 1.448872931185508, -3.798205987393038, -2.248922318021415, 1.172241698777798, 3.5286731977109573, -1.8112612298453987, 0.8555254927938236, -0.01442637257959234, 4.20971165303238, 4.5762826448882, -2.9509364735839307, 3.5512814927917935, 2.1121616841888633, 1.143121626690771, 3.0435090226884904, -3.273923045804408, -1.6655335302663161, -0.13833657625606754, -0.9177871200257597, 1.2880632622004873, 2.5846471023306252, -1.221941728006128, 4.412847525856896, 3.834314566643349, -2.0774154646832823, -2.893869646885553, -0.31936908763138394, -1.2833697393153125, 4.340875465619837, 2.4063725091390573, 4.559940441120367, -1.2149858840665457, 1.4022727357977933, 3.711525222111306, 0.5556909755316957, 0.04109612068744628, 1.655959226721615, 0.5950312820720791, 1.5817010160616807, 2.537307509968267, 0.8419871569929409, -2.7246932084772246, -0.06977329971468116, -5.074847636647655, 3.826445596149248, -2.385039478762332, 3.984876781103421, -1.5885674556652005, -2.8392850327184607, 1.0192413219898429, -1.3284575346463683, 1.2064976619243613, 3.563593028054222, -4.501884576347162, -2.749714498543354, -1.5981567293786245, -1.0985036908103214, -3.9802568508464224, -4.654386764471292, -2.470594687803465, -1.9527372043928102, -1.4654876811164819, 2.4497059472787077, -2.061595583247422, 1.0673643001849369, -1.9709626112232774, 2.185282073878927, 4.064609800194806, -2.368253187065985, -3.2793492578040366, -0.11316557050709974, -1.1235627410186693, 0.8380945396276767, -2.1727325902247325, 2.3808302108970016, 4.275181431306231, 3.034370822611746, -2.780109720719436, -3.6248607282502396, -4.860164574115111, -2.2584046536396643, -0.12504854030464152, -1.072356559989431, 3.664296579771306, -2.642215893308167, 2.8058122602923543, -3.057058185414543, -4.268690549671485, 0.274683948723184, 4.964979322778874, 1.9633825661155155, 0.17612318711621722, -4.749054880161511, -0.007461188373298455, -1.8535441616311146, 0.9328046244272583, -2.4730046734356557, -4.074586042519064, 3.0805319617812303, -2.712521841636407, -1.6985336268382643, -1.9488648423044856, -3.8972566283783916, -0.9163411898755216, 2.3427664473781418, -4.546587080141759, 2.019603221466011, -1.5867614905654515, 1.3948336849906449, 2.9861220826729946, -2.659529801811356, -0.6466040580634864, -4.920081117745847, 0.8881196880164532, 3.7871118349417676, -2.182244409901131, 5.057996520423509, -1.2221727718832294, 2.0635455509066523, 4.153925192099812, -4.9130053503886675, -0.7725723823737294, 0.4498215159668142, -2.485489372913258, -0.762193397675655, 4.912017758172017, -1.6781728363635535, -3.348347863102221, -2.4865080601901597, -3.8828780375851375, -1.1088315657200418, -2.638945799619078, 4.730108250236721, -0.5222169566375507, 5.030686974257935, 1.6426687161354048, 2.2864817653698264, -2.3101648646156083, -4.146281501290099, 0.9450857874123608, 2.099860707652174, -3.3495090586607708, -2.8331415719960344, -0.01039919877954798, 0.6193676610716476, 2.54202969681897, 3.7454874873370594, 2.0646806757352785, -1.7353960305579048, -3.000702744203245, -4.091147718760283, 0.8426488221100366, -2.640666399472402, 3.008458892927078, -0.46570868410807353, 2.7591115188912196, 3.5078584330910667, -4.84140428576252, -4.271376429003688, 2.7989257178246385, 0.3384549101911354, -3.9884341305316777, -2.543054332428709, 3.9849227849458453, -2.610848143614594, -1.7337121715234356, -1.1569967353785273, 1.8329637352501438, 3.9130122333922275, -3.589334547674845, 2.011226260587586, -3.4104100146340484, 0.0162511020790701, -3.2406018885451804, 3.9979449236834634, 0.7562853300176684, 5.058550264116438, -4.440784506042762, 1.778867730162979, -3.427063722170859, 1.8052542367046058, 3.6994797037790663, -2.704840832315911, -1.5797649514325616, -4.3774994315565126, -0.8169459266521084, 3.6139220618785055, -4.950383557568272, 1.7550587793579409, -4.716517344439534, -4.666605702181398, 1.3204030174101007, -0.7840469647387378, -1.9286143638014588, -0.6333574043036378, -0.03981026851945746, -4.769354743791948, 1.3581226528685333, 1.8619731296004076, 3.749689237497045, 1.6095058068601897, -0.21000122497478024, 1.3994789768991458, 3.1344456497800044, 5.048205210874131, -2.105940391233378, -1.2976826484750301, 2.547020458791164, -2.189668570688336, -2.8743455200280343, -4.337853518360965, -3.7426352901669846, 3.8849403288973674, 3.672054471091747, -0.6602308529266274, -1.3127777042151756, 3.5148159136938437, -3.2571853068446726, -2.335798472448177, 2.96544008247879, -1.3758247878939915, -4.077190654225953, -4.716124876862889, 3.1380257770395295, -0.8532866797203189, -4.315096661013493, -0.3006160685217045, 1.2842663731781165, -3.7146147111673544, 0.40729304537951805, -0.2008326858048637, -0.4742617545592509, -4.38595915254145, 1.6326864972125543, 1.6649350352753487, -4.099003119575341, -4.607920429495612, -1.1700486793176523, 0.2810762557685784, 2.9223222551876127, 0.9024029873071271, 0.024783118178101304, -2.0661140262987687, -1.1078180879037367, -3.5746842564958534, 1.8259639956557496, -0.524107136315199, 3.859359723340641, 2.2608909470303002, 3.1530162316553136, 0.4905344063047261, -3.692972844459243, 4.5597985315977505, -1.484054140700691, 1.442062888237733, -1.0874202489179043, 4.993424492409747, -1.1701804003989427, 1.6606744771195059, -0.41055324038902086, 1.2473364755046479, 1.7754690057070253, -2.011071583322603, 2.444904416747546, 2.897113439549865, 4.652063126115036, 2.6743823082398643, -0.5263001858319134, -0.4190545825725911, -2.7092557702007394, -3.2424952605966753, -3.3542557507392816, -1.8636689620851707, -4.6795052513835405, 2.175491949100567, 4.5459580282598635, -0.6560228549671994, 4.539147846147823, -4.300790406464515, 3.156698864354941, -0.0823050495433515, 3.3028426696779425, -0.07878670125927378, 1.8021678763530655, 2.875898054559994, -2.5544488455102807, 1.4098432320456178, 2.436217721365322, -4.4092617873387585, -2.2668327110256095, 1.5676456462079864, 4.206736780617985, 2.286061151773639, 3.7741837565209453, -0.3433906049538695, -0.18307162107114205, -2.2323207414297177, 4.301605446859164, 4.75476580157711, -1.6009969819023144, 3.464187105746208, -2.6830902731242134, 0.94826822455307, -2.8412171328204425, 2.4673470501812087, -3.7401759429587766, 1.2230279073861539, -3.850105339675697, 2.6654183583817224, 0.045449722248616986, 3.513701900590399, 2.6602988684919646, -0.6116040834612946, -4.417578559340845, 0.9001824601466399, -4.163906679177962, -2.448510056160502, 4.667652275808083, 0.25189122316408596, -3.0650891465629875, 2.8353629947574515, -2.3599267425970316, -4.777413355930363, -2.9330456107779628, -4.564618299402309, -3.710676796008792, 4.340252570092219, -4.600155002566445, 1.561436324714287, -1.130357349330449, 0.17940962360876433, -2.7012660143787275, -0.7285407519332479, 4.266643386598505, 2.190090300564685, 3.0940745072064066, -3.2739411258538746, 1.2891888603639643, -3.335277524020574, -3.968792002002597, -2.436370465830782, 1.637369409522698, -2.295981795704355, -0.7774668912445524, 5.101243964364456, -4.000684892385912, 4.30315526923376, -3.9775450370138214, -2.4142574048383607, -1.5484775915954354, -0.5161347685226447, 3.1641117756910075, 4.500093000636739, 1.5475646095814595, -2.067395152038096, 1.3534601128542931, 3.6908057263604244, 1.0403760844838539, 0.15201681803558031, -4.046283398933412, -1.9271750769426883, -5.058595191028031, 0.11537337433629791, -2.7031696422304474, -1.1730118443170108, -0.11000269051447553, -5.043909621102462, -1.6710759505731572, -4.272899853409514, -1.1654409023781334, -3.3005869338735128, -1.458196102488004, 3.9032591717888474, -2.6684786569045813, -2.140009946629527, 3.155387017552136, -1.1788877812484264, 2.120847699682945, 3.811766411717586, -2.984919557563421, -1.5971025503733611, 2.060446438468908, -2.436038200852696, 2.6884172247414195, -2.095047697061673, -0.08396722835045356, 3.325566821101577, -2.1929870089035495, -2.8488768663786597, -3.8874764257117747, 3.9686112536503915, -2.3052104365962296, 3.189286939902762, 2.518285754534574, 5.044231024567291, -1.5938016048847556, 4.870560357419305, -2.886936464132061, -2.786146359895992, -3.5424238207168353, -0.8289704634962263, 5.079236308685817, -4.900825728472474, 4.940838384489523, -2.848866410473999, 3.7313593659962043, -2.5037276678738927, 3.3219395881924756, -4.02862962966484, -0.5444893412298129, 4.404508646853796, 3.4567506158413837, -2.7357249542201654, -2.25451788759861, -5.015351207760341, -3.5845912256898504, 3.798139714702864, -4.625794485901265, 3.199109106546852, 2.5676382984821364, -0.26484383395888145, 4.138105863584822, -1.5619871789989905, 4.281158440786592, -1.8395447174452135, 3.1674816672867303, -1.3282166484682025, -2.194462027123575, 3.8888771826828927, -1.7992784131610038, 5.066799007492935, 0.18196578196725444, -2.437608803193887, 0.255183107748695, -0.4297067378932944, -0.7425337303128163, 1.3756210189765623, -3.9003308374084633, -1.3843556124987786, -2.8191924313012717, -1.1690801849704595, 0.0111200197326502, 2.1621278930525696, -4.94822644488639, 1.9672058906413916, -4.328458751966387, -2.0118004800375306, 5.087596721193566, 0.05381663808647996, -3.3366184322006225, 4.251894705444431, -4.357362539172068, 1.4580548542158231, -1.7927847584578056, 0.5245692316978454, -1.4413961434560334, -0.8545787201639161, 3.074775676842175, -2.94578806204494, 0.7231847594752265, -0.014432680968033296, -2.0185964115349635, 2.4102642762676982, 4.902906182712294, 0.6861334165101418, -4.80033281090374, -4.473309676511215, 2.587913547980147, -2.7502220082428424, -2.5702995282379018, -1.1531475461081855, 3.7115000871883845, 1.2941543775266373, 3.9566140512985237, 0.4269741260115447, 4.3945033819344586, -2.14241268262119, -4.943102572801483, -1.4823577699331985, -0.1991525312925857, 1.643315056006636, 2.01893768188254, -1.0012831800113915, -3.8619134565151993, 4.6685776436908535, 3.3417802610117837, 2.4747846248706864]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 0\", \"marker\": {\"color\": \"rgb(31, 119, 180)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 0\", \"scene\": \"scene2\", \"showlegend\": false, \"text\": [\"0_l_0_m-0_2.4-1_0.58-2_0.67-3_0.97\", \"1_l_0_m-0_0.19-1_0.26-2_0.99-3_0.5\", \"2_l_0_m-0_2.09-1_0.3-2_0.75-3_0.13\", \"3_l_0_m-0_0.04-1_0.73-2_1.31-3_0.4\", \"4_l_0_m-0_0.59-1_0.13-2_0.67-3_0.97\", \"5_l_0_m-0_0.66-1_0.05-2_0.18-3_0.03\", \"6_l_0_c_1_2_3-0_0.94-1_0.1-2_0.23-3_0.3\", \"7_l_0_c_1_2_3-0_0.21-1_0.11-2_0.01-3_1.4\", \"8_l_0_c_1_2_3-0_0.22-1_0.75-2_1.82-3_0.33\", \"9_l_0_c_1_2_3-0_0.55-1_0.67-2_0.33-3_0.39\", \"10_l_0_c_1_2_3-0_0.37-1_0.75-2_0.7-3_1.43\", \"11_l_0_c_1_2_3-0_1.46-1_0.99-2_0.23-3_0.79\", \"12_l_0_c_1_2_3-0_1.6-1_0.29-2_1.48-3_0.06\", \"13_l_0_c_1_2_3-0_0.09-1_0.85-2_0.86-3_0.09\", \"14_l_0_c_1_2_3-0_1.43-1_0.86-2_0.81-3_0.59\", \"15_l_0_c_0_1_2-0_0.65-1_0.78-2_0.13-3_1.35\", \"16_l_0_c_1_2_3-0_0.52-1_0.31-2_0.58-3_0.24\", \"17_l_0_c_0_1_2-0_0.65-1_0.04-2_0.07-3_1.46\", \"18_l_0_c_1_2_3-0_0.4-1_0.48-2_0.96-3_1.37\", \"19_l_0_c_0_1_2-0_0.3-1_0.61-2_1.07-3_0.03\", \"20_l_0_c_1_2_3-0_0.01-1_0.54-2_1.43-3_1.4\", \"21_l_0_c_0_1_2-0_0.58-1_1.21-2_0.22-3_0.94\", \"22_l_0_c_1_2_3-0_0.53-1_0.6-2_0.85-3_0.0\", \"23_l_0_c_0_1_2-0_0.34-1_1.06-2_0.53-3_1.21\", \"24_l_0_c_1_2_3-0_0.65-1_1.44-2_1.2-3_0.0\", \"25_l_0_c_0_1_2-0_0.29-1_0.01-2_0.62-3_1.62\", \"26_l_0_c_1_2_3-0_0.21-1_0.41-2_1.81-3_0.91\", \"27_l_0_c_0_1_2-0_0.01-1_0.38-2_0.09-3_1.22\", \"28_l_0_c_1_2_3-0_0.29-1_0.07-2_0.25-3_0.56\", \"29_l_0_c_0_1_2-0_0.11-1_0.27-2_0.76-3_0.72\", \"30_l_0_c_1_2_3-0_1.58-1_0.22-2_1.64-3_0.24\", \"31_l_0_c_0_1_2-0_0.04-1_1.18-2_0.57-3_1.1\", \"32_l_0_c_1_2_3-0_0.06-1_1.54-2_0.54-3_0.29\", \"33_l_0_c_0_1_2-0_0.09-1_0.35-2_0.08-3_0.59\", \"34_l_0_c_1_2_3-0_0.75-1_0.26-2_0.42-3_0.61\", \"35_l_0_c_0_1_2-0_0.94-1_0.33-2_1.08-3_0.47\", \"36_l_0_c_1_2_3-0_0.84-1_0.21-2_1.76-3_1.26\", \"37_l_0_c_0_1_2-0_1.06-1_0.55-2_0.31-3_0.36\", \"38_l_0_c_1_2_3-0_0.31-1_0.51-2_0.77-3_0.43\", \"39_l_0_c_0_1_2-0_0.89-1_0.11-2_0.37-3_2.67\", \"40_l_0_c_1_2_3-0_0.16-1_0.53-2_0.07-3_0.17\", \"41_l_0_c_0_1_2-0_0.15-1_0.07-2_0.3-3_0.1\", \"42_l_0_c_1_2_3-0_0.02-1_0.33-2_1.0-3_0.26\", \"43_l_0_c_0_1_2-0_0.44-1_2.02-2_0.01-3_0.49\", \"44_l_0_c_1_2_3-0_0.16-1_0.12-2_0.27-3_0.53\", \"45_l_0_c_0_1_2-0_0.37-1_1.51-2_0.7-3_0.58\", \"46_l_0_c_1_2_3-0_1.76-1_0.68-2_0.25-3_1.71\", \"47_l_0_c_0_1_2-0_0.07-1_1.64-2_0.35-3_1.54\", \"48_l_0_c_1_2_3-0_1.98-1_0.69-2_0.38-3_0.29\", \"49_l_0_c_0_1_2-0_1.46-1_0.1-2_0.18-3_1.28\", \"50_l_0_c_0_1_3-0_0.29-1_0.58-2_0.2-3_0.97\", \"51_l_0_c_1_2_3-0_1.21-1_1.03-2_0.61-3_0.15\", \"52_l_0_c_0_1_2-0_1.45-1_1.34-2_2.56-3_1.74\", \"53_l_0_c_0_1_3-0_0.12-1_0.29-2_0.32-3_0.28\", \"54_l_0_c_1_2_3-0_1.06-1_0.32-2_0.19-3_0.44\", \"55_l_0_c_0_1_2-0_0.69-1_0.08-2_0.6-3_0.98\", \"56_l_0_c_0_1_3-0_0.21-1_0.27-2_0.12-3_0.78\", \"57_l_0_c_1_2_3-0_0.66-1_0.58-2_0.37-3_0.95\", \"58_l_0_c_0_1_2-0_0.06-1_0.7-2_1.37-3_0.21\", \"59_l_0_c_0_1_3-0_0.09-1_0.71-2_0.25-3_0.08\", \"60_l_0_c_1_2_3-0_0.4-1_1.02-2_1.07-3_0.64\", \"61_l_0_c_0_1_2-0_0.4-1_0.66-2_1.37-3_0.98\", \"62_l_0_c_0_1_3-0_0.85-1_0.29-2_0.31-3_0.27\", \"63_l_0_c_1_2_3-0_0.47-1_0.97-2_1.26-3_1.31\", \"64_l_0_c_0_1_2-0_0.46-1_0.33-2_0.26-3_0.79\", \"65_l_0_c_0_1_3-0_0.05-1_0.98-2_0.39-3_0.67\", \"66_l_0_c_1_2_3-0_1.36-1_0.49-2_0.24-3_0.73\", \"67_l_0_c_0_1_2-0_0.45-1_0.59-2_0.05-3_0.12\", \"68_l_0_c_0_1_3-0_0.34-1_0.77-2_0.08-3_0.6\", \"69_l_0_c_1_2_3-0_1.25-1_0.13-2_0.66-3_0.67\", \"70_l_0_c_0_1_2-0_0.87-1_1.32-2_0.03-3_0.57\", \"71_l_0_c_0_1_3-0_0.29-1_0.19-2_0.02-3_0.83\", \"72_l_0_c_1_2_3-0_1.65-1_0.76-2_0.76-3_0.04\", \"73_l_0_c_0_1_2-0_0.37-1_0.63-2_0.83-3_0.66\", \"74_l_0_c_0_1_3-0_0.19-1_0.05-2_0.12-3_0.06\", \"75_l_0_c_1_2_3-0_0.71-1_0.28-2_0.06-3_0.68\", \"76_l_0_c_0_1_2-0_0.21-1_0.0-2_0.53-3_2.45\", \"77_l_0_c_0_1_3-0_1.44-1_0.5-2_0.0-3_0.43\", \"78_l_0_c_1_2_3-0_0.17-1_1.56-2_1.18-3_0.62\", \"79_l_0_c_0_1_2-0_0.0-1_0.5-2_0.03-3_1.05\", \"80_l_0_c_0_1_3-0_0.03-1_0.62-2_0.13-3_1.33\", \"81_l_0_c_1_2_3-0_1.59-1_0.65-2_0.23-3_0.77\", \"82_l_0_c_0_1_2-0_0.38-1_1.27-2_0.54-3_0.72\", \"83_l_0_c_0_1_3-0_0.43-1_0.15-2_0.01-3_1.47\", \"84_l_0_c_1_2_3-0_0.5-1_0.92-2_0.58-3_0.3\", \"85_l_0_c_0_1_2-0_0.25-1_1.29-2_0.33-3_0.06\", \"86_l_0_c_0_1_3-0_1.32-1_0.01-2_0.39-3_0.06\", \"87_l_0_c_1_2_3-0_0.14-1_0.51-2_0.05-3_1.1\", \"88_l_0_c_0_1_2-0_0.04-1_0.08-2_0.73-3_0.3\", \"89_l_0_c_0_1_3-0_0.29-1_1.32-2_0.07-3_1.04\", \"90_l_0_c_1_2_3-0_0.23-1_0.23-2_0.16-3_0.38\", \"91_l_0_c_0_1_2-0_0.56-1_0.25-2_0.28-3_1.86\", \"92_l_0_c_0_1_3-0_0.05-1_0.06-2_0.34-3_0.47\", \"93_l_0_c_1_2_3-0_1.81-1_0.7-2_0.54-3_0.24\", \"94_l_0_c_0_1_2-0_0.4-1_0.7-2_0.46-3_1.08\", \"95_l_0_c_0_1_3-0_1.16-1_0.56-2_0.0-3_0.11\", \"96_l_0_c_1_2_3-0_0.71-1_0.83-2_0.32-3_0.84\", \"97_l_0_c_0_1_2-0_1.07-1_0.25-2_0.4-3_0.88\", \"98_l_0_c_0_1_3-0_0.53-1_0.17-2_0.08-3_0.71\", \"99_l_0_c_1_2_3-0_0.54-1_0.77-2_1.08-3_0.58\", \"100_l_0_c_0_1_2-0_0.03-1_0.6-2_0.81-3_1.08\", \"101_l_0_c_0_1_3-0_0.95-1_1.28-2_0.11-3_0.76\", \"102_l_0_c_1_2_3-0_0.96-1_0.25-2_0.45-3_0.72\", \"103_l_0_c_0_1_2-0_0.34-1_0.12-2_0.91-3_0.52\", \"104_l_0_c_0_1_3-0_1.02-1_1.91-2_0.14-3_0.91\", \"105_l_0_c_1_2_3-0_0.66-1_0.3-2_0.26-3_0.61\", \"106_l_0_c_0_1_2-0_0.06-1_0.24-2_1.09-3_0.37\", \"107_l_0_c_0_1_3-0_0.01-1_0.44-2_0.11-3_0.88\", \"108_l_0_c_1_2_3-0_0.24-1_0.16-2_0.07-3_0.82\", \"109_l_0_c_0_1_2-0_0.08-1_0.3-2_0.18-3_3.13\", \"110_l_0_c_0_1_3-0_0.02-1_0.48-2_0.14-3_0.79\", \"111_l_0_c_1_2_3-0_0.4-1_0.41-2_0.01-3_0.32\", \"112_l_0_c_0_1_2-0_0.83-1_0.06-2_0.37-3_1.63\", \"113_l_0_c_0_1_3-0_0.12-1_0.33-2_0.01-3_0.39\", \"114_l_0_c_1_2_3-0_1.37-1_0.44-2_0.25-3_0.13\", \"115_l_0_c_0_1_2-0_0.23-1_0.75-2_0.16-3_0.55\", \"116_l_0_c_0_1_3-0_0.91-1_0.42-2_0.15-3_0.79\", \"117_l_0_c_1_2_3-0_2.14-1_0.87-2_1.22-3_0.34\", \"118_l_0_c_0_1_2-0_0.07-1_1.32-2_0.35-3_1.08\", \"119_l_0_c_0_1_3-0_0.46-1_0.33-2_0.2-3_0.28\", \"120_l_0_c_1_2_3-0_0.97-1_0.19-2_0.71-3_0.65\", \"121_l_0_c_0_1_2-0_0.51-1_0.73-2_0.62-3_0.62\", \"122_l_0_c_0_1_3-0_0.04-1_0.36-2_0.36-3_0.39\", \"123_l_0_c_1_2_3-0_1.52-1_0.36-2_1.13-3_0.12\", \"124_l_0_c_0_1_2-0_0.88-1_0.49-2_0.41-3_0.06\", \"125_l_0_c_0_1_3-0_0.4-1_0.88-2_0.22-3_0.63\", \"126_l_0_c_1_2_3-0_2.36-1_0.67-2_0.25-3_0.6\", \"127_l_0_c_0_1_2-0_0.02-1_0.76-2_0.62-3_1.25\", \"128_l_0_c_0_1_3-0_0.43-1_0.28-2_0.37-3_0.23\", \"129_l_0_c_1_2_3-0_0.26-1_0.72-2_0.3-3_0.65\", \"130_l_0_c_0_1_2-0_0.62-1_0.12-2_0.88-3_0.08\", \"131_l_0_c_0_1_3-0_0.88-1_0.09-2_0.06-3_0.14\", \"132_l_0_c_1_2_3-0_2.15-1_0.28-2_0.77-3_0.65\", \"133_l_0_c_0_1_2-0_1.4-1_1.55-2_0.72-3_1.84\", \"134_l_0_c_0_1_3-0_0.15-1_2.36-2_0.14-3_0.01\", \"135_l_0_c_1_2_3-0_0.34-1_0.43-2_0.83-3_0.3\", \"136_l_0_c_0_1_2-0_1.45-1_1.47-2_0.74-3_1.76\", \"137_l_0_c_0_1_3-0_0.45-1_0.27-2_0.17-3_0.41\", \"138_l_0_c_1_2_3-0_1.76-1_0.12-2_0.96-3_0.52\", \"139_l_0_c_0_1_2-0_0.8-1_1.11-2_0.42-3_0.71\", \"140_l_0_c_0_1_3-0_1.32-1_0.48-2_0.2-3_0.41\", \"141_l_0_c_1_2_3-0_0.48-1_1.4-2_0.8-3_0.91\", \"142_l_0_c_0_1_2-0_0.96-1_0.63-2_0.07-3_0.91\", \"143_l_0_c_0_1_3-0_0.83-1_1.26-2_0.3-3_0.77\", \"144_l_0_c_1_2_3-0_0.96-1_0.6-2_1.68-3_0.75\", \"145_l_0_c_0_1_2-0_0.31-1_0.07-2_0.28-3_0.91\", \"146_l_0_c_0_1_3-0_0.57-1_0.95-2_0.1-3_0.79\", \"147_l_0_c_1_2_3-0_1.57-1_1.87-2_0.62-3_0.4\", \"148_l_0_c_0_1_2-0_0.54-1_0.37-2_0.2-3_0.36\", \"149_l_0_c_0_1_3-0_0.82-1_0.31-2_0.13-3_0.3\", \"150_l_0_c_1_2_3-0_0.76-1_1.0-2_0.17-3_0.09\", \"151_l_0_c_0_1_2-0_0.76-1_0.63-2_0.18-3_1.09\", \"152_l_0_c_0_1_3-0_0.12-1_0.21-2_0.03-3_0.46\", \"153_l_0_c_1_2_3-0_1.67-1_0.51-2_0.15-3_0.14\", \"154_l_0_c_0_1_2-0_1.85-1_0.59-2_0.94-3_1.0\", \"155_l_0_c_0_1_3-0_0.72-1_0.19-2_0.07-3_0.42\", \"156_l_0_c_1_2_3-0_1.53-1_0.67-2_0.32-3_0.21\", \"157_l_0_c_0_1_2-0_0.91-1_0.22-2_0.01-3_0.94\", \"158_l_0_c_0_1_3-0_0.99-1_0.07-2_0.03-3_0.44\", \"159_l_0_c_1_2_3-0_1.87-1_0.45-2_0.13-3_0.84\", \"160_l_0_c_0_1_2-0_0.55-1_1.68-2_0.5-3_0.43\", \"161_l_0_c_0_1_3-0_0.23-1_0.89-2_0.22-3_0.25\", \"162_l_0_c_1_2_3-0_1.95-1_1.36-2_0.13-3_0.41\", \"163_l_0_c_0_1_2-0_0.39-1_0.91-2_0.58-3_0.04\", \"164_l_0_c_0_1_3-0_0.43-1_0.7-2_0.47-3_0.35\", \"165_l_0_c_1_2_3-0_1.88-1_0.62-2_1.4-3_0.5\", \"166_l_0_c_0_1_2-0_0.84-1_0.23-2_0.5-3_0.61\", \"167_l_0_c_0_1_3-0_0.27-1_1.24-2_0.02-3_0.2\", \"168_l_0_c_0_2_3-0_0.51-1_0.24-2_0.22-3_0.84\", \"169_l_0_c_1_2_3-0_0.96-1_0.14-2_0.06-3_0.32\", \"170_l_0_c_0_1_2-0_0.33-1_0.19-2_0.67-3_2.43\", \"171_l_0_c_0_1_3-0_0.02-1_1.91-2_0.02-3_0.89\", \"172_l_0_c_0_2_3-0_0.09-1_0.06-2_1.76-3_0.25\", \"173_l_0_c_1_2_3-0_0.46-1_0.17-2_0.63-3_0.69\", \"174_l_0_c_0_1_2-0_0.86-1_0.33-2_1.69-3_0.15\", \"175_l_0_c_0_1_3-0_0.86-1_1.95-2_0.58-3_0.3\", \"176_l_0_c_0_2_3-0_0.67-1_0.61-2_0.09-3_0.5\", \"177_l_0_c_1_2_3-0_1.36-1_1.63-2_0.5-3_0.5\", \"178_l_0_c_0_1_2-0_0.88-1_0.68-2_0.48-3_0.37\", \"179_l_0_c_0_1_3-0_0.17-1_0.53-2_0.2-3_0.85\", \"180_l_0_c_0_2_3-0_1.02-1_0.15-2_0.51-3_0.09\", \"181_l_0_c_1_2_3-0_0.44-1_0.08-2_0.67-3_0.09\", \"182_l_0_c_0_1_2-0_0.35-1_0.12-2_0.43-3_1.1\", \"183_l_0_c_0_1_3-0_0.02-1_0.01-2_0.14-3_0.5\", \"184_l_0_c_0_2_3-0_1.02-1_0.39-2_0.25-3_0.71\", \"185_l_0_c_1_2_3-0_0.61-1_2.62-2_1.83-3_0.12\", \"186_l_0_c_0_1_2-0_0.19-1_0.78-2_0.11-3_0.31\", \"187_l_0_c_0_1_3-0_0.36-1_0.29-2_0.04-3_0.05\", \"188_l_0_c_0_2_3-0_0.59-1_0.17-2_0.17-3_0.34\", \"189_l_0_c_1_2_3-0_0.72-1_0.12-2_1.03-3_0.17\", \"190_l_0_c_0_1_2-0_1.44-1_0.38-2_0.15-3_0.07\", \"191_l_0_c_0_1_3-0_0.06-1_0.49-2_0.04-3_0.68\", \"192_l_0_c_0_2_3-0_0.62-1_0.13-2_0.58-3_1.0\", \"193_l_0_c_1_2_3-0_0.2-1_0.08-2_0.43-3_0.38\", \"194_l_0_c_0_1_2-0_0.18-1_0.63-2_0.38-3_1.89\", \"195_l_0_c_0_1_3-0_0.09-1_0.35-2_0.0-3_0.62\", \"196_l_0_c_0_2_3-0_1.4-1_0.35-2_0.3-3_0.2\", \"197_l_0_c_1_2_3-0_0.74-1_0.47-2_0.8-3_0.9\", \"198_l_0_c_0_1_2-0_0.22-1_0.56-2_0.48-3_0.35\", \"199_l_0_c_0_1_3-0_0.73-1_0.35-2_0.02-3_0.78\", \"200_l_0_c_0_2_3-0_1.41-1_0.19-2_0.63-3_1.05\", \"201_l_0_c_1_2_3-0_1.94-1_0.01-2_1.37-3_0.65\", \"202_l_0_c_0_1_2-0_0.97-1_0.5-2_1.42-3_0.01\", \"203_l_0_c_0_1_3-0_2.33-1_0.97-2_0.03-3_0.16\", \"204_l_0_c_0_2_3-0_0.12-1_0.0-2_2.7-3_0.77\", \"205_l_0_c_1_2_3-0_1.48-1_0.09-2_0.31-3_0.04\", \"206_l_0_c_0_1_2-0_1.15-1_0.42-2_0.23-3_0.03\", \"207_l_0_c_0_1_3-0_0.58-1_0.03-2_0.42-3_0.91\", \"208_l_0_c_0_2_3-0_0.28-1_0.1-2_0.57-3_0.67\", \"209_l_0_c_1_2_3-0_0.9-1_0.31-2_0.71-3_0.99\", \"210_l_0_c_0_1_2-0_0.5-1_0.4-2_0.07-3_0.66\", \"211_l_0_c_0_1_3-0_1.07-1_0.42-2_0.12-3_1.5\", \"212_l_0_c_0_2_3-0_0.67-1_0.0-2_0.73-3_0.15\", \"213_l_0_c_1_2_3-0_0.12-1_0.61-2_0.29-3_1.08\", \"214_l_0_c_0_1_2-0_0.5-1_0.87-2_1.62-3_0.17\", \"215_l_0_c_0_1_3-0_0.04-1_0.21-2_0.34-3_1.09\", \"216_l_0_c_0_2_3-0_0.07-1_0.09-2_1.18-3_0.13\", \"217_l_0_c_1_2_3-0_0.4-1_1.25-2_0.61-3_1.28\", \"218_l_0_c_0_1_2-0_0.54-1_0.84-2_0.73-3_0.02\", \"219_l_0_c_0_1_3-0_0.65-1_1.4-2_0.42-3_0.96\", \"220_l_0_c_0_2_3-0_1.47-1_0.02-2_0.06-3_0.47\", \"221_l_0_c_1_2_3-0_1.14-1_0.21-2_0.41-3_0.34\", \"222_l_0_c_0_1_2-0_0.02-1_0.2-2_0.76-3_0.11\", \"223_l_0_c_0_1_3-0_0.73-1_0.45-2_0.04-3_0.54\", \"224_l_0_c_0_2_3-0_0.04-1_0.21-2_1.64-3_0.35\", \"225_l_0_c_1_2_3-0_0.24-1_0.28-2_1.16-3_0.01\", \"226_l_0_c_0_1_2-0_0.09-1_0.19-2_0.75-3_0.98\", \"227_l_0_c_0_1_3-0_0.5-1_0.47-2_0.15-3_0.21\", \"228_l_0_c_0_2_3-0_0.98-1_0.13-2_0.45-3_0.22\", \"229_l_0_c_1_2_3-0_0.5-1_0.03-2_0.19-3_0.71\", \"230_l_0_c_0_1_2-0_0.39-1_0.04-2_1.28-3_1.12\", \"231_l_0_c_0_1_3-0_0.54-1_1.35-2_0.18-3_0.37\", \"232_l_0_c_0_2_3-0_0.62-1_0.53-2_1.59-3_0.61\", \"233_l_0_c_1_2_3-0_1.43-1_1.5-2_0.97-3_0.15\", \"234_l_0_c_0_1_2-0_0.2-1_0.03-2_0.34-3_2.92\", \"235_l_0_c_0_1_3-0_0.2-1_0.88-2_0.01-3_1.05\", \"236_l_0_c_0_2_3-0_1.07-1_0.44-2_0.1-3_0.54\", \"237_l_0_c_1_2_3-0_2.12-1_0.02-2_0.35-3_0.28\", \"238_l_0_c_0_1_2-0_1.17-1_0.81-2_0.51-3_0.79\", \"239_l_0_c_0_1_3-0_0.41-1_1.64-2_0.05-3_0.61\", \"240_l_0_c_0_2_3-0_0.13-1_0.21-2_0.33-3_0.27\", \"241_l_0_c_1_2_3-0_0.34-1_2.19-2_0.24-3_1.46\", \"242_l_0_c_0_1_2-0_0.12-1_0.33-2_0.06-3_0.3\", \"243_l_0_c_0_1_3-0_0.75-1_0.86-2_0.47-3_0.26\", \"244_l_0_c_0_2_3-0_0.56-1_0.2-2_0.13-3_0.65\", \"245_l_0_c_1_2_3-0_1.99-1_0.32-2_0.2-3_0.2\", \"246_l_0_c_0_1_2-0_0.11-1_0.36-2_0.08-3_0.34\", \"247_l_0_c_0_1_3-0_0.09-1_1.41-2_0.27-3_0.24\", \"248_l_0_c_0_2_3-0_0.17-1_0.45-2_0.48-3_0.06\", \"249_l_0_c_1_2_3-0_1.14-1_0.8-2_0.86-3_0.91\", \"250_l_0_c_0_1_2-0_0.29-1_0.65-2_0.57-3_1.26\", \"251_l_0_c_0_1_3-0_0.14-1_0.09-2_0.0-3_0.22\", \"252_l_0_c_0_2_3-0_0.99-1_0.05-2_0.62-3_0.63\", \"253_l_0_c_1_2_3-0_0.62-1_0.59-2_1.56-3_0.29\", \"254_l_0_c_0_1_2-0_0.32-1_0.96-2_0.2-3_0.33\", \"255_l_0_c_0_1_3-0_0.85-1_2.17-2_0.15-3_0.82\", \"256_l_0_c_0_2_3-0_0.93-1_0.08-2_0.33-3_1.44\", \"257_l_0_c_1_2_3-0_0.8-1_0.21-2_0.69-3_0.07\", \"258_l_0_c_0_1_2-0_0.41-1_1.63-2_0.11-3_0.71\", \"259_l_0_c_0_1_3-0_0.08-1_0.58-2_0.06-3_0.03\", \"260_l_0_c_0_2_3-0_0.7-1_0.33-2_0.21-3_0.14\", \"261_l_0_c_1_2_3-0_0.42-1_0.04-2_0.07-3_0.52\", \"262_l_0_c_0_1_2-0_1.92-1_1.55-2_0.71-3_0.32\", \"263_l_0_c_0_1_3-0_0.1-1_1.02-2_0.03-3_0.27\", \"264_l_0_c_0_2_3-0_1.06-1_0.0-2_0.03-3_1.53\", \"265_l_0_c_1_2_3-0_0.29-1_0.16-2_0.71-3_0.28\", \"266_l_0_c_0_1_2-0_0.68-1_0.79-2_0.03-3_0.28\", \"267_l_0_c_0_1_3-0_0.8-1_0.07-2_0.02-3_1.27\", \"268_l_0_c_0_2_3-0_0.19-1_0.02-2_0.02-3_1.22\", \"269_l_0_c_1_2_3-0_0.74-1_0.27-2_0.15-3_0.1\", \"270_l_0_c_0_1_2-0_1.19-1_0.32-2_0.27-3_2.91\", \"271_l_0_c_0_1_3-0_0.57-1_0.95-2_0.0-3_0.42\", \"272_l_0_c_0_2_3-0_0.8-1_0.05-2_0.01-3_0.07\", \"273_l_0_c_1_2_3-0_1.12-1_0.67-2_0.25-3_0.71\", \"274_l_0_c_0_1_2-0_0.41-1_1.62-2_0.2-3_0.33\", \"275_l_0_c_0_1_3-0_0.03-1_1.64-2_0.11-3_0.36\", \"276_l_0_c_0_2_3-0_0.08-1_0.03-2_0.88-3_0.72\", \"277_l_0_c_1_2_3-0_0.26-1_0.53-2_0.86-3_0.24\", \"278_l_0_c_0_1_2-0_0.33-1_0.27-2_0.03-3_1.37\", \"279_l_0_c_0_1_3-0_0.54-1_0.33-2_0.04-3_0.02\", \"280_l_0_c_0_2_3-0_0.02-1_0.16-2_0.1-3_0.26\", \"281_l_0_c_1_2_3-0_0.25-1_0.61-2_1.11-3_0.87\", \"282_l_0_c_0_1_2-0_0.93-1_0.81-2_0.65-3_0.53\", \"283_l_0_c_0_1_3-0_0.01-1_1.45-2_0.22-3_0.37\", \"284_l_0_c_0_2_3-0_0.4-1_0.24-2_0.76-3_0.36\", \"285_l_0_c_1_2_3-0_0.23-1_0.3-2_0.24-3_0.17\", \"286_l_0_c_0_1_2-0_0.08-1_0.51-2_0.26-3_0.01\", \"287_l_0_c_0_1_3-0_1.0-1_0.45-2_0.24-3_0.01\", \"288_l_0_c_0_2_3-0_1.7-1_0.06-2_0.42-3_0.1\", \"289_l_0_c_1_2_3-0_0.04-1_0.29-2_0.44-3_0.89\", \"290_l_0_c_0_1_2-0_1.22-1_0.8-2_0.19-3_1.34\", \"291_l_0_c_0_1_3-0_0.37-1_0.18-2_0.0-3_0.21\", \"292_l_0_c_0_2_3-0_0.19-1_0.07-2_0.69-3_0.52\", \"293_l_0_c_1_2_3-0_0.08-1_1.06-2_0.66-3_0.18\", \"294_l_0_c_0_1_2-0_0.42-1_0.59-2_0.54-3_0.64\", \"295_l_0_c_0_1_3-0_0.02-1_1.21-2_0.24-3_0.14\", \"296_l_0_c_0_2_3-0_0.7-1_0.16-2_0.01-3_0.05\", \"297_l_0_c_1_2_3-0_1.26-1_1.38-2_0.54-3_0.11\", \"298_l_0_c_0_1_2-0_0.5-1_1.73-2_0.77-3_0.27\", \"299_l_0_c_0_1_3-0_0.35-1_0.17-2_0.12-3_0.26\", \"300_l_0_c_0_2_3-0_1.88-1_0.01-2_0.15-3_0.36\", \"301_l_0_c_1_2_3-0_1.19-1_0.75-2_0.32-3_0.24\", \"302_l_0_c_0_1_2-0_1.03-1_0.57-2_0.27-3_1.16\", \"303_l_0_c_0_1_3-0_0.95-1_0.15-2_0.23-3_0.39\", \"304_l_0_c_0_2_3-0_0.49-1_0.1-2_1.35-3_0.5\", \"305_l_0_c_1_2_3-0_0.17-1_0.79-2_1.12-3_0.76\", \"306_l_0_c_0_1_2-0_0.39-1_0.49-2_1.38-3_0.59\", \"307_l_0_c_0_1_3-0_0.37-1_0.11-2_0.37-3_2.06\", \"308_l_0_c_0_2_3-0_0.7-1_0.03-2_0.27-3_1.07\", \"309_l_0_c_1_2_3-0_0.37-1_0.28-2_0.45-3_0.31\", \"310_l_0_c_0_1_2-0_1.05-1_0.85-2_0.1-3_1.13\", \"311_l_0_c_0_1_3-0_0.52-1_0.52-2_0.07-3_0.6\", \"312_l_0_c_0_2_3-0_0.45-1_0.57-2_0.81-3_0.1\", \"313_l_0_c_1_2_3-0_0.2-1_0.29-2_0.6-3_0.1\", \"314_l_0_c_0_1_2-0_0.56-1_0.12-2_0.17-3_1.17\", \"315_l_0_c_0_1_3-0_0.87-1_1.42-2_0.56-3_0.54\", \"316_l_0_c_0_2_3-0_0.42-1_0.18-2_0.06-3_0.21\", \"317_l_0_c_1_2_3-0_1.41-1_0.45-2_0.43-3_0.52\", \"318_l_0_c_0_1_2-0_0.34-1_0.39-2_0.55-3_0.14\", \"319_l_0_c_0_1_3-0_0.08-1_0.15-2_0.04-3_1.11\", \"320_l_0_c_0_2_3-0_0.48-1_0.0-2_0.73-3_0.07\", \"321_l_0_c_1_2_3-0_0.83-1_0.35-2_0.24-3_1.44\", \"322_l_0_c_0_1_2-0_0.55-1_0.22-2_1.33-3_0.45\", \"323_l_0_c_0_1_3-0_1.75-1_0.01-2_0.1-3_0.54\", \"324_l_0_c_0_2_3-0_0.17-1_0.05-2_0.19-3_1.14\", \"325_l_0_c_1_2_3-0_0.51-1_0.77-2_0.74-3_0.12\", \"326_l_0_c_0_1_2-0_0.42-1_0.67-2_0.01-3_0.33\", \"327_l_0_c_0_1_3-0_1.23-1_0.65-2_0.09-3_0.25\", \"328_l_0_c_0_2_3-0_0.16-1_0.05-2_0.73-3_0.51\", \"329_l_0_c_1_2_3-0_0.01-1_0.47-2_0.24-3_1.68\", \"330_l_0_c_0_1_2-0_0.14-1_0.48-2_0.21-3_0.24\", \"331_l_0_c_0_1_3-0_1.01-1_0.01-2_0.47-3_0.38\", \"332_l_0_c_0_2_3-0_0.59-1_0.13-2_0.94-3_0.17\", \"333_l_0_c_1_2_3-0_0.75-1_0.05-2_0.95-3_0.17\", \"334_l_0_c_0_1_2-0_0.66-1_0.71-2_0.15-3_0.8\", \"335_l_0_c_0_1_3-0_0.64-1_0.97-2_0.22-3_0.04\", \"336_l_0_c_0_2_3-0_0.43-1_0.03-2_0.55-3_0.38\", \"337_l_0_c_1_2_3-0_0.89-1_0.45-2_0.37-3_0.96\", \"338_l_0_c_0_1_2-0_0.71-1_0.6-2_0.43-3_1.02\", \"339_l_0_c_0_1_3-0_1.01-1_0.03-2_0.07-3_0.25\", \"340_l_0_c_0_2_3-0_0.36-1_0.2-2_0.6-3_0.12\", \"341_l_0_c_1_2_3-0_1.41-1_0.21-2_1.73-3_0.31\", \"342_l_0_c_0_1_2-0_0.83-1_0.47-2_0.45-3_0.57\", \"343_l_0_c_0_1_3-0_0.21-1_0.05-2_0.02-3_0.41\", \"344_l_0_c_0_2_3-0_0.03-1_0.13-2_0.87-3_0.0\", \"345_l_0_c_1_2_3-0_1.3-1_0.05-2_0.05-3_0.03\", \"346_l_0_c_0_1_2-0_0.18-1_0.63-2_0.8-3_1.07\", \"347_l_0_c_0_1_3-0_0.42-1_1.61-2_0.15-3_0.28\", \"348_l_0_c_0_2_3-0_0.37-1_0.2-2_0.67-3_0.46\", \"349_l_0_c_1_2_3-0_1.21-1_0.57-2_0.75-3_0.94\", \"350_l_0_c_0_1_2-0_0.42-1_0.43-2_0.08-3_0.78\", \"351_l_0_c_0_1_3-0_0.09-1_0.26-2_0.57-3_0.6\", \"352_l_0_c_0_2_3-0_0.41-1_0.18-2_0.02-3_1.65\", \"353_l_0_c_1_2_3-0_0.83-1_1.08-2_0.41-3_0.78\", \"354_l_0_c_0_1_2-0_0.53-1_0.11-2_0.03-3_0.95\", \"355_l_0_c_0_1_3-0_1.04-1_0.06-2_0.07-3_0.74\", \"356_l_0_c_0_2_3-0_0.82-1_0.25-2_0.51-3_1.48\", \"357_l_0_c_1_2_3-0_0.28-1_0.97-2_0.33-3_0.22\", \"358_l_0_c_0_1_2-0_0.96-1_0.21-2_0.55-3_0.51\", \"359_l_0_c_0_1_3-0_0.29-1_0.85-2_0.0-3_0.01\", \"360_l_0_c_0_2_3-0_0.37-1_0.0-2_0.27-3_0.11\", \"361_l_0_c_1_2_3-0_1.1-1_1.42-2_1.57-3_0.75\", \"362_l_0_c_0_1_2-0_0.1-1_0.1-2_0.19-3_0.72\", \"363_l_0_c_0_1_3-0_0.54-1_0.21-2_0.27-3_0.47\", \"364_l_0_c_0_2_3-0_0.0-1_0.18-2_0.99-3_0.57\", \"365_l_0_c_1_2_3-0_1.2-1_0.0-2_0.46-3_0.22\", \"366_l_0_c_0_1_2-0_0.04-1_0.79-2_0.58-3_2.26\", \"367_l_0_c_0_1_3-0_0.69-1_0.46-2_0.21-3_0.63\", \"368_l_0_c_0_2_3-0_0.84-1_0.25-2_0.01-3_1.58\", \"369_l_0_c_1_2_3-0_0.79-1_1.57-2_1.02-3_0.12\", \"370_l_0_c_0_1_2-0_1.37-1_0.08-2_0.38-3_0.02\", \"371_l_0_c_0_1_3-0_0.66-1_0.1-2_0.07-3_0.3\", \"372_l_0_c_0_2_3-0_0.04-1_0.01-2_0.83-3_0.49\", \"373_l_0_c_1_2_3-0_0.04-1_0.32-2_0.52-3_0.0\", \"374_l_0_c_0_1_2-0_0.17-1_1.52-2_1.11-3_0.93\", \"375_l_0_c_0_1_3-0_0.62-1_0.14-2_0.28-3_1.31\", \"376_l_0_c_0_2_3-0_0.05-1_0.34-2_0.67-3_1.07\", \"377_l_0_c_1_2_3-0_0.3-1_1.49-2_0.12-3_0.36\", \"378_l_0_c_0_1_2-0_0.96-1_0.08-2_1.15-3_0.16\", \"379_l_0_c_0_1_3-0_0.03-1_0.4-2_0.16-3_0.77\", \"380_l_0_c_0_2_3-0_0.88-1_0.03-2_0.54-3_0.18\", \"381_l_0_c_1_2_3-0_0.77-1_0.88-2_0.54-3_0.06\", \"382_l_0_c_0_1_2-0_0.27-1_0.49-2_0.58-3_0.33\", \"383_l_0_c_0_1_3-0_0.6-1_1.38-2_0.1-3_0.92\", \"384_l_0_c_0_2_3-0_0.01-1_0.12-2_0.47-3_0.42\", \"385_l_0_c_1_2_3-0_1.66-1_0.87-2_0.92-3_0.85\", \"386_l_0_c_0_1_2-0_0.25-1_0.02-2_0.35-3_1.3\", \"387_l_0_c_0_1_3-0_0.37-1_0.38-2_0.03-3_0.59\", \"388_l_0_c_0_2_3-0_0.31-1_0.01-2_0.2-3_0.06\", \"389_l_0_c_1_2_3-0_0.17-1_0.93-2_0.35-3_0.41\", \"390_l_0_c_0_1_2-0_1.91-1_0.61-2_0.7-3_0.0\", \"391_l_0_c_0_1_3-0_0.24-1_0.06-2_0.09-3_0.05\", \"392_l_0_c_0_2_3-0_0.16-1_0.03-2_0.09-3_0.36\", \"393_l_0_c_1_2_3-0_1.09-1_0.77-2_1.63-3_1.27\", \"394_l_0_c_0_1_2-0_0.14-1_0.11-2_0.28-3_0.78\", \"395_l_0_c_0_1_3-0_0.94-1_0.86-2_0.01-3_0.19\", \"396_l_0_c_0_2_3-0_0.27-1_0.08-2_0.67-3_0.05\", \"397_l_0_c_1_2_3-0_1.17-1_0.45-2_0.83-3_1.08\", \"398_l_0_c_0_1_2-0_0.41-1_0.24-2_0.81-3_1.91\", \"399_l_0_c_3-0_0.41-1_0.26-2_0.35-3_0.71\", \"400_l_0_r-0_0.43-1_0.04-2_0.59-3_0.83\", \"401_l_0_r-0_1.43-1_0.01-2_0.46-3_0.06\", \"402_l_0_r-0_0.78-1_0.36-2_0.11-3_0.63\", \"403_l_0_r-0_0.89-1_0.11-2_0.0-3_0.61\", \"404_l_0_r-0_1.52-1_0.16-2_0.04-3_1.25\", \"405_l_0_r-0_0.0-1_0.05-2_0.23-3_0.48\", \"406_l_0_r-0_1.03-1_0.04-2_0.01-3_1.2\", \"407_l_0_r-0_0.63-1_0.27-2_0.04-3_0.47\", \"408_l_0_r-0_0.12-1_0.23-2_0.0-3_1.16\", \"409_l_0_r-0_1.4-1_0.15-2_0.32-3_0.87\", \"410_l_0_r-0_0.25-1_0.21-2_0.12-3_1.27\", \"411_l_0_r-0_0.1-1_0.07-2_0.28-3_1.17\", \"412_l_0_r-0_0.01-1_0.1-2_0.06-3_2.13\", \"413_l_0_r-0_0.58-1_0.15-2_0.1-3_0.14\", \"414_l_0_r-0_1.17-1_0.07-2_0.32-3_0.67\", \"415_l_0_r-0_0.33-1_0.14-2_0.16-3_0.79\", \"416_l_0_r-0_0.15-1_0.03-2_0.02-3_0.65\", \"417_l_0_r-0_0.26-1_0.02-2_0.27-3_0.76\", \"418_l_0_r-0_0.76-1_0.12-2_0.01-3_2.09\", \"419_l_0_r-0_0.62-1_0.17-2_0.04-3_0.15\", \"420_l_0_r-0_1.9-1_0.36-2_0.24-3_1.36\", \"421_l_0_r-0_0.54-1_0.04-2_0.07-3_0.0\", \"422_l_0_r-0_1.29-1_0.71-2_0.43-3_0.64\", \"423_l_0_r-0_0.16-1_0.19-2_0.07-3_1.77\", \"424_l_0_r-0_0.97-1_0.17-2_0.11-3_0.38\", \"425_l_0_r-0_0.19-1_0.2-2_0.01-3_1.43\", \"426_l_0_r-0_0.15-1_0.18-2_0.19-3_2.21\", \"427_l_0_r-0_0.79-1_0.07-2_0.15-3_2.13\", \"428_l_0_r-0_0.91-1_0.59-2_0.15-3_1.07\", \"429_l_0_r-0_1.36-1_0.0-2_0.22-3_0.42\", \"430_l_0_r-0_0.25-1_0.01-2_0.05-3_0.51\", \"431_l_0_r-0_1.29-1_0.02-2_0.0-3_0.26\", \"432_l_0_r-0_1.09-1_0.0-2_0.05-3_0.01\", \"433_l_0_r-0_0.0-1_0.23-2_0.01-3_0.02\", \"434_l_0_r-0_1.61-1_0.01-2_0.21-3_1.94\", \"435_l_0_r-0_0.5-1_0.16-2_0.01-3_1.22\", \"436_l_0_r-0_0.19-1_0.04-2_0.04-3_1.15\", \"437_l_0_r-0_1.12-1_0.22-2_0.05-3_0.29\", \"438_l_0_r-0_0.7-1_0.01-2_0.1-3_0.21\", \"439_l_0_r-0_1.87-1_0.0-2_0.29-3_0.19\", \"440_l_0_r-0_0.88-1_0.25-2_0.04-3_1.33\", \"441_l_0_r-0_0.27-1_0.17-2_0.39-3_1.46\", \"442_l_0_r-0_1.66-1_0.02-2_0.3-3_0.96\", \"443_l_0_r-0_0.28-1_0.01-2_0.01-3_1.64\", \"444_l_0_r-0_2.76-1_0.06-2_0.04-3_0.52\", \"445_l_0_r-0_0.13-1_0.1-2_0.0-3_0.35\", \"446_l_0_r-0_0.31-1_0.28-2_0.35-3_0.77\", \"447_l_0_r-0_0.48-1_0.02-2_0.25-3_0.45\", \"448_l_0_r-0_0.77-1_0.06-2_0.02-3_0.49\", \"449_l_0_r-0_2.3-1_0.37-2_0.14-3_0.82\", \"450_l_0_r-0_0.28-1_0.26-2_0.11-3_1.25\", \"451_l_0_r-0_0.07-1_0.02-2_0.11-3_1.75\", \"452_l_0_r-0_0.74-1_0.04-2_0.29-3_0.75\", \"453_l_0_r-0_2.61-1_0.19-2_0.09-3_1.02\", \"454_l_0_r-0_0.73-1_0.03-2_0.17-3_0.55\", \"455_l_0_r-0_2.01-1_0.18-2_0.27-3_0.13\", \"456_l_0_r-0_1.77-1_0.02-2_0.18-3_0.93\", \"457_l_0_r-0_0.83-1_0.11-2_0.48-3_0.8\", \"458_l_0_r-0_0.52-1_0.05-2_0.36-3_0.56\", \"459_l_0_r-0_0.53-1_0.41-2_0.06-3_0.49\", \"460_l_0_r-0_0.83-1_0.43-2_0.26-3_1.05\", \"461_l_0_r-0_0.06-1_0.12-2_0.03-3_1.44\", \"462_l_0_r-0_0.34-1_0.0-2_0.34-3_2.22\", \"463_l_0_r-0_1.34-1_0.03-2_0.02-3_0.31\", \"464_l_0_r-0_1.77-1_0.34-2_0.26-3_0.85\", \"465_l_0_r-0_0.66-1_0.07-2_0.12-3_0.77\", \"466_l_0_r-0_0.49-1_0.01-2_0.12-3_0.24\", \"467_l_0_r-0_0.8-1_0.18-2_0.02-3_0.09\", \"468_l_0_r-0_0.27-1_0.14-2_0.13-3_0.22\", \"469_l_0_r-0_0.29-1_0.0-2_0.14-3_1.01\", \"470_l_0_r-0_0.07-1_0.45-2_0.15-3_0.3\", \"471_l_0_r-0_0.06-1_0.2-2_0.24-3_1.57\", \"472_l_0_r-0_0.42-1_0.02-2_0.01-3_1.08\", \"473_l_0_r-0_0.47-1_0.62-2_0.43-3_1.78\", \"474_l_0_r-0_0.71-1_0.11-2_0.06-3_1.44\", \"475_l_0_r-0_0.33-1_0.08-2_0.15-3_1.09\", \"476_l_0_r-0_1.4-1_0.04-2_0.04-3_0.96\", \"477_l_0_r-0_0.1-1_0.0-2_0.32-3_1.71\", \"478_l_0_r-0_2.1-1_0.01-2_0.08-3_0.99\", \"479_l_0_r-0_0.43-1_0.24-2_0.09-3_0.14\", \"480_l_0_r-0_0.12-1_0.01-2_0.1-3_0.7\", \"481_l_0_r-0_0.44-1_0.16-2_0.24-3_1.13\", \"482_l_0_r-0_0.49-1_0.23-2_0.03-3_1.56\", \"483_l_0_r-0_0.7-1_0.27-2_0.2-3_0.23\", \"484_l_0_r-0_1.57-1_0.02-2_0.5-3_0.65\", \"485_l_0_r-0_1.49-1_0.09-2_0.42-3_0.39\", \"486_l_0_r-0_0.66-1_0.34-2_0.17-3_0.64\", \"487_l_0_r-0_1.15-1_0.03-2_0.01-3_0.2\", \"488_l_0_r-0_0.57-1_0.16-2_0.6-3_1.51\", \"489_l_0_r-0_0.08-1_0.37-2_0.25-3_0.1\", \"490_l_0_r-0_0.3-1_0.6-2_0.33-3_0.15\", \"491_l_0_r-0_0.58-1_0.22-2_0.14-3_0.79\", \"492_l_0_r-0_2.17-1_0.19-2_0.02-3_0.35\", \"493_l_0_r-0_1.18-1_0.1-2_0.04-3_0.46\", \"494_l_0_r-0_0.77-1_0.12-2_0.33-3_0.8\", \"495_l_0_r-0_2.36-1_0.06-2_0.18-3_0.96\", \"496_l_0_r-0_0.43-1_0.21-2_0.05-3_0.13\", \"497_l_0_r-0_0.8-1_0.0-2_0.12-3_0.56\", \"498_l_0_r-0_0.44-1_0.05-2_0.04-3_2.41\", \"499_l_0_r-0_1.18-1_0.05-2_0.02-3_0.42\", \"500_l_0_r-0_0.77-1_0.12-2_0.01-3_0.85\", \"501_l_0_r-0_0.91-1_0.01-2_0.28-3_1.76\", \"502_l_0_r-0_0.48-1_0.01-2_0.2-3_1.78\", \"503_l_0_r-0_0.9-1_0.21-2_0.01-3_0.87\", \"504_l_0_r-0_1.54-1_0.54-2_0.01-3_1.02\", \"505_l_0_r-0_2.02-1_0.15-2_0.47-3_0.59\", \"506_l_0_r-0_1.1-1_0.08-2_0.04-3_0.5\", \"507_l_0_r-0_0.34-1_0.01-2_0.05-3_1.4\", \"508_l_0_r-0_0.15-1_0.04-2_0.28-3_2.15\", \"509_l_0_r-0_1.53-1_0.14-2_0.14-3_0.48\", \"510_l_0_r-0_0.58-1_0.05-2_0.16-3_0.68\", \"511_l_0_r-0_1.27-1_0.03-2_0.13-3_0.6\", \"512_l_0_r-0_0.1-1_0.17-2_0.25-3_0.27\", \"513_l_0_r-0_0.48-1_0.09-2_0.02-3_1.2\", \"514_l_0_r-0_0.26-1_0.28-2_0.0-3_0.38\", \"515_l_0_r-0_0.29-1_0.14-2_0.03-3_0.27\", \"516_l_0_r-0_0.21-1_0.33-2_0.55-3_0.47\", \"517_l_0_r-0_0.2-1_0.09-2_0.0-3_1.09\", \"518_l_0_r-0_0.16-1_0.06-2_0.42-3_0.79\", \"519_l_0_r-0_0.03-1_0.13-2_0.26-3_0.91\", \"520_l_0_r-0_1.42-1_0.2-2_0.04-3_0.21\", \"521_l_0_r-0_0.8-1_0.06-2_0.05-3_0.92\", \"522_l_0_r-0_1.38-1_0.19-2_0.48-3_0.1\", \"523_l_0_r-0_1.14-1_0.09-2_0.27-3_1.25\", \"524_l_0_r-0_0.13-1_0.12-2_0.48-3_0.59\", \"525_l_0_r-0_1.32-1_0.17-2_0.07-3_0.59\", \"526_l_0_r-0_0.46-1_0.07-2_0.48-3_0.88\", \"527_l_0_r-0_0.61-1_0.11-2_0.05-3_0.63\", \"528_l_0_r-0_1.15-1_0.07-2_0.15-3_0.51\", \"529_l_0_r-0_1.32-1_0.0-2_0.08-3_1.46\", \"530_l_0_r-0_0.64-1_0.07-2_0.0-3_1.32\", \"531_l_0_r-0_0.48-1_0.22-2_0.01-3_0.58\", \"532_l_0_r-0_0.31-1_0.09-2_0.5-3_1.35\", \"533_l_0_r-0_0.15-1_0.13-2_0.18-3_0.37\", \"534_l_0_r-0_0.74-1_0.03-2_0.04-3_0.98\", \"535_l_0_r-0_0.39-1_0.09-2_0.03-3_0.48\", \"536_l_0_r-0_2.05-1_0.05-2_0.4-3_0.95\", \"537_l_0_r-0_0.41-1_0.12-2_0.01-3_0.03\", \"538_l_0_r-0_2.52-1_0.27-2_0.35-3_0.55\", \"539_l_0_r-0_1.02-1_0.29-2_0.02-3_0.01\", \"540_l_0_r-0_0.03-1_0.13-2_0.03-3_0.62\", \"541_l_0_r-0_0.86-1_0.25-2_0.26-3_0.77\", \"542_l_0_r-0_0.65-1_0.09-2_0.19-3_1.21\", \"543_l_0_r-0_0.51-1_0.02-2_0.01-3_1.02\", \"544_l_0_r-0_0.56-1_0.0-2_0.19-3_0.88\", \"545_l_0_r-0_0.04-1_0.37-2_0.14-3_2.44\", \"546_l_0_r-0_1.36-1_0.34-2_0.0-3_0.24\", \"547_l_0_r-0_0.02-1_0.05-2_0.05-3_0.63\", \"548_l_0_r-0_1.78-1_0.49-2_0.04-3_0.86\", \"549_l_0_r-0_0.05-1_0.15-2_0.2-3_0.35\", \"550_l_0_r-0_0.1-1_0.06-2_0.35-3_0.56\", \"551_l_0_r-0_0.68-1_0.05-2_0.21-3_0.69\", \"552_l_0_r-0_2.65-1_0.01-2_0.24-3_0.52\", \"553_l_0_r-0_1.46-1_0.17-2_0.33-3_0.28\", \"554_l_0_r-0_0.58-1_0.04-2_0.06-3_0.91\", \"555_l_0_r-0_0.06-1_0.74-2_0.23-3_0.89\", \"556_l_0_r-0_2.18-1_0.02-2_0.02-3_0.37\", \"557_l_0_r-0_0.84-1_0.01-2_0.06-3_0.24\", \"558_l_0_r-0_1.43-1_0.0-2_0.26-3_1.7\", \"559_l_0_r-0_0.96-1_0.04-2_0.07-3_0.99\", \"560_l_0_r-0_0.84-1_0.12-2_0.32-3_1.56\", \"561_l_0_r-0_0.33-1_0.12-2_0.22-3_0.21\", \"562_l_0_r-0_0.27-1_0.0-2_0.03-3_0.17\", \"563_l_0_r-0_1.2-1_0.5-2_0.08-3_0.58\", \"564_l_0_r-0_0.6-1_0.12-2_0.16-3_0.16\", \"565_l_0_r-0_1.14-1_0.12-2_0.45-3_0.01\", \"566_l_0_r-0_1.76-1_0.03-2_0.05-3_0.48\", \"567_l_0_r-0_1.62-1_0.51-2_0.03-3_0.24\", \"568_l_0_r-0_1.83-1_0.12-2_0.1-3_0.69\", \"569_l_0_r-0_1.72-1_0.28-2_0.5-3_0.24\", \"570_l_0_r-0_1.25-1_0.41-2_0.23-3_0.21\", \"571_l_0_r-0_1.12-1_0.07-2_0.33-3_1.09\", \"572_l_0_r-0_1.09-1_0.08-2_0.0-3_0.11\", \"573_l_0_r-0_1.5-1_0.03-2_0.0-3_0.02\", \"574_l_0_r-0_1.36-1_0.05-2_0.11-3_0.34\", \"575_l_0_r-0_0.27-1_0.52-2_0.03-3_1.53\", \"576_l_0_r-0_1.36-1_0.26-2_0.0-3_0.26\", \"577_l_0_r-0_1.25-1_0.2-2_0.33-3_0.13\", \"578_l_0_r-0_0.6-1_0.03-2_0.39-3_0.42\", \"579_l_0_r-0_0.7-1_0.2-2_0.1-3_0.7\", \"580_l_0_r-0_1.57-1_0.01-2_0.26-3_0.36\", \"581_l_0_r-0_1.6-1_0.03-2_0.12-3_0.18\", \"582_l_0_r-0_0.14-1_0.07-2_0.15-3_0.22\", \"583_l_0_r-0_0.59-1_0.25-2_0.26-3_0.32\", \"584_l_0_r-0_2.37-1_0.12-2_0.44-3_0.13\", \"585_l_0_r-0_1.26-1_0.06-2_0.09-3_0.95\", \"586_l_0_r-0_0.74-1_0.05-2_0.06-3_0.77\", \"587_l_0_r-0_0.92-1_0.09-2_0.15-3_0.06\", \"588_l_0_r-0_0.92-1_0.12-2_0.11-3_1.05\", \"589_l_0_r-0_0.45-1_0.24-2_0.13-3_0.9\", \"590_l_0_r-0_0.81-1_0.06-2_0.05-3_1.02\", \"591_l_0_r-0_0.58-1_0.05-2_0.04-3_1.23\", \"592_l_0_r-0_0.18-1_0.02-2_0.21-3_0.71\", \"593_l_0_r-0_0.58-1_0.11-2_0.16-3_0.1\", \"594_l_0_r-0_1.07-1_0.11-2_0.24-3_1.11\", \"595_l_0_r-0_0.21-1_0.11-2_0.02-3_0.86\", \"596_l_0_r-0_0.18-1_0.14-2_0.03-3_0.25\", \"597_l_0_r-0_0.96-1_0.3-2_0.07-3_0.54\", \"598_l_0_r-0_0.36-1_0.15-2_0.05-3_0.21\", \"599_l_0_r-0_0.1-1_0.08-2_0.19-3_4.1\", \"600_l_0_r-0_0.16-1_0.14-2_0.06-3_0.54\", \"601_l_0_r-0_0.26-1_0.15-2_0.03-3_2.41\", \"602_l_0_r-0_0.26-1_0.01-2_0.14-3_0.37\", \"603_l_0_r-0_0.02-1_0.07-2_0.22-3_0.63\", \"604_l_0_r-0_0.74-1_0.1-2_0.02-3_2.15\", \"605_l_0_r-0_0.95-1_0.05-2_0.2-3_0.61\", \"606_l_0_r-0_0.6-1_0.03-2_0.06-3_0.71\", \"607_l_0_r-0_0.52-1_0.1-2_0.47-3_1.23\", \"608_l_0_r-0_0.31-1_0.0-2_0.2-3_0.55\", \"609_l_0_r-0_1.17-1_0.03-2_0.13-3_0.83\", \"610_l_0_r-0_0.04-1_0.0-2_0.01-3_1.4\", \"611_l_0_r-0_0.32-1_0.12-2_0.07-3_0.68\", \"612_l_0_r-0_0.58-1_0.12-2_0.02-3_2.95\", \"613_l_0_r-0_0.74-1_0.04-2_0.14-3_1.0\", \"614_l_0_r-0_1.31-1_0.11-2_0.15-3_0.18\", \"615_l_0_r-0_0.52-1_0.01-2_0.03-3_0.48\", \"616_l_0_r-0_1.5-1_0.02-2_0.36-3_1.16\", \"617_l_0_r-0_0.53-1_0.26-2_0.07-3_0.66\", \"618_l_0_r-0_1.99-1_0.28-2_0.2-3_1.68\", \"619_l_0_r-0_1.75-1_0.44-2_0.05-3_1.6\", \"620_l_0_r-0_0.03-1_0.01-2_0.07-3_0.35\", \"621_l_0_r-0_0.45-1_0.01-2_0.52-3_0.77\", \"622_l_0_r-0_1.4-1_0.0-2_0.24-3_0.86\", \"623_l_0_r-0_0.45-1_0.1-2_0.22-3_0.54\", \"624_l_0_r-0_1.03-1_0.39-2_0.34-3_0.26\", \"625_l_0_r-0_1.2-1_0.58-2_0.17-3_1.09\", \"626_l_0_r-0_0.37-1_0.06-2_0.2-3_0.49\", \"627_l_0_r-0_1.48-1_0.01-2_0.22-3_1.12\", \"628_l_0_r-0_0.14-1_0.01-2_0.37-3_1.29\", \"629_l_0_r-0_0.38-1_0.16-2_0.0-3_1.28\", \"630_l_0_r-0_0.21-1_0.04-2_0.25-3_0.88\", \"631_l_0_r-0_0.96-1_0.23-2_0.01-3_0.55\", \"632_l_0_r-0_1.47-1_0.01-2_0.03-3_2.04\", \"633_l_0_r-0_0.04-1_0.02-2_0.1-3_2.03\", \"634_l_0_r-0_1.05-1_0.04-2_0.03-3_1.21\", \"635_l_0_r-0_0.81-1_0.04-2_0.18-3_0.73\", \"636_l_0_r-0_0.32-1_0.03-2_0.15-3_0.81\", \"637_l_0_r-0_0.8-1_0.28-2_0.02-3_0.13\", \"638_l_0_r-0_0.56-1_0.04-2_0.01-3_0.26\", \"639_l_0_r-0_1.35-1_0.04-2_0.15-3_0.98\", \"640_l_0_r-0_0.23-1_0.3-2_0.0-3_0.28\", \"641_l_0_r-0_0.01-1_0.04-2_0.05-3_0.83\", \"642_l_0_r-0_0.28-1_0.11-2_0.26-3_0.86\", \"643_l_0_r-0_2.01-1_0.14-2_0.2-3_1.49\", \"644_l_0_r-0_0.87-1_0.07-2_0.09-3_0.37\", \"645_l_0_r-0_0.1-1_0.21-2_0.14-3_0.15\", \"646_l_0_r-0_0.9-1_0.46-2_0.25-3_0.54\", \"647_l_0_r-0_0.93-1_0.19-2_0.26-3_0.11\", \"648_l_0_r-0_0.73-1_0.02-2_0.12-3_0.8\", \"649_l_0_r-0_0.09-1_0.09-2_0.07-3_0.1\", \"650_l_0_r-0_0.5-1_0.05-2_0.23-3_1.96\", \"651_l_0_r-0_0.23-1_0.15-2_0.27-3_1.08\", \"652_l_0_r-0_0.64-1_0.11-2_0.25-3_0.98\", \"653_l_0_r-0_0.44-1_0.12-2_0.14-3_1.23\", \"654_l_0_r-0_0.63-1_0.03-2_0.01-3_1.1\", \"655_l_0_r-0_0.63-1_0.1-2_0.1-3_0.28\", \"656_l_0_r-0_0.24-1_0.4-2_0.02-3_0.22\", \"657_l_0_r-0_0.25-1_0.01-2_0.03-3_0.18\", \"658_l_0_r-0_1.18-1_0.15-2_0.04-3_0.79\", \"659_l_0_r-0_1.22-1_0.19-2_0.07-3_0.03\", \"660_l_0_r-0_0.59-1_0.14-2_0.02-3_0.47\", \"661_l_0_r-0_1.74-1_0.23-2_0.26-3_0.56\", \"662_l_0_r-0_1.92-1_0.08-2_0.04-3_0.17\", \"663_l_0_r-0_0.84-1_0.14-2_0.01-3_0.41\", \"664_l_0_r-0_2.42-1_0.02-2_0.24-3_1.16\", \"665_l_0_r-0_0.4-1_0.44-2_0.05-3_0.86\"], \"type\": \"scatter3d\", \"x\": [2.302564279586444, -0.26138883192142526, 0.7626755441714261, 2.012149941253018, 0.7087438242248565, -1.198736967740629, -0.0983474759436914, 1.9850030928522222, -1.853016336133858, 1.2026061166414033, 0.7522214558522718, -2.4773435394976815, 0.2863878035179829, 2.384316094041633, -0.9669143123689479, -1.1630227043115677, 2.684072234065746, -0.04228618456644824, -0.4769998348072906, -0.6053533896699109, 1.6154340080197847, -3.325682403859197, -1.074006870209245, -1.072115096781255, -1.4836297797097495, 1.7086416830300295, -0.40598733401787246, -0.580681427843806, 2.8340497002307643, -1.4735024188696118, 1.4154789432093888, 1.8513469090916845, 1.5438236592016066, -2.0589048434020905, 3.4100181550355733, 0.3327746421474667, 0.21307881524319064, 1.153796566918824, -0.7264948164568171, 0.11099071796716511, -1.9668942328471275, -0.06609215463959227, 0.3305815374772518, -2.6434059633673708, 0.14625937437866118, -1.5110666355532365, 1.980025603457512, 3.3015718989965133, 1.3492020125995043, -0.10387337344652804, 2.0783836818714003, 1.2965788527032673, -1.8818914449986162, -1.3583623790813966, 0.31580758637781153, -2.2723760562235333, -1.6354458089445807, 0.5775870856563222, -2.7817235443839574, 1.769793206546086, 1.0236956160830812, -3.5651284177024785, 0.29159641289791843, 1.1201679405099294, -2.074513201336456, 0.9750374971848748, -0.4860933131344432, 2.4366346207497944, -0.7740060793471824, 2.246082681991344, 1.3168913196680352, -1.5101989362988686, -2.7548819743222936, -1.185507478400927, -0.17085601238415404, 0.8550136573296079, 0.0010366177597492944, 0.4992801395248022, -2.4452396362599917, -0.49805737061752825, -0.6174532201925337, -3.341163657713552, 2.9686418656093028, -2.5929091804928466, 0.9164522434805941, -1.4803396391753927, -2.4671016645478527, 2.8452367081035104, 0.08436164174708026, 1.536257288464404, 0.23452983668680752, 0.7689005299158661, -2.7488894119899547, 0.8271067934267249, -1.1759608955250132, 0.5640334684462939, 1.7200175860703493, -1.671438317437111, -1.526370554357972, 0.7652592103301801, -1.9745672927436613, -1.3528993799425448, 1.0505194025995641, 0.6615495609791905, -3.0781357028605285, -0.46153903767138527, -0.23640276772508328, 2.1086814292085436, 3.674702756473442, -0.31660766452780126, 1.207103867868727, -1.793424042559153, 1.3074031598113312, -1.9221848961091974, 0.7861963147535624, 3.3958954051253873, 0.4197024328362321, -2.301264635994639, 2.0330697550628134, 0.5624627033331984, -1.0727832571933593, 1.2672581409032329, 0.3608931172526133, 1.3611411924765024, 1.9095897790982912, 0.8835289804721662, -0.6692806149403273, 1.7967155450281285, 1.1904208941902652, 2.196871403991906, -2.043763509358738, -0.09025650582463698, -0.28384977660472566, 2.670222347567862, -5.64313390141246, -2.02367226282504, -1.8622610891834557, 1.901451910456323, 3.9758547767957646, -1.1080597691118206, -0.4754575447078037, 3.0052763713895483, -1.373756944209883, 1.4677581749916437, 0.6043788311501849, -0.0743551182432224, -2.259399727838607, 2.7645952370503672, 0.3724196486818083, 1.219579586345025, 1.0995963917192246, -2.526540453883872, 0.3420828231561371, -0.5098227630601159, -0.5916738885624772, -1.520007675963716, -1.2811760058165935, 0.21837666197614228, -0.07023276378028828, -0.4484810145578922, -2.0657178035536323, 1.25528858765982, -1.6084879756443378, -0.9056762798824132, 1.5965048576175949, -0.6243957720622115, 0.23095056108808415, 1.2364026150867322, -0.23680971017960717, 1.5527550572571387, 1.2429291757023544, 1.9131939139092864, 0.06212933375381337, 2.0398789220972295, -1.901402163894563, 2.6486801197509298, -0.7758770944291333, 3.013526097263605, 0.6829282247830791, 0.5289026439580405, 0.9545318434273729, 0.07869300553853757, 0.12030629579836295, 0.012077524777034028, 0.7103734191544866, -3.4526529869649165, 1.753134045046221, 0.9739770105696623, -0.17121076942494906, -1.381094831762339, -2.09080154508666, -0.4908622947320089, -0.12729735777217618, 1.9935247588164797, 1.1410048113661109, 2.3456456066221705, -1.0547922432840635, -0.4737545558862763, 0.8266887936953916, -0.44327301061002194, -0.3957957218944915, -1.8013357477570533, -0.8580525806340459, -1.1418149512938702, 0.012535534278927766, -3.389143847850242, -1.8684758007965832, 3.0305751745695924, 0.15475479357245295, 0.31115434115279994, -0.401430852217812, -2.1622692407808763, 0.014979274131644462, 0.6143960277542192, -0.8692172659821977, 0.966026549232002, 0.08614358673703978, -1.2507189065528965, -1.7529986963876498, 3.492056539534146, -0.2933972488510074, 0.9547497306153045, -2.1146905886122283, -0.45003002462223674, 0.690946607606799, -1.307408808154226, -1.8476224915351183, -0.6842610889451161, -0.12678160854000048, 0.1661461364177828, -1.847929950447892, 1.3530323170410683, -0.8545674273806827, 1.8239638615037035, -1.7669388833300015, 0.8758052293713277, 0.6210739717715469, -1.6276438167623375, -0.8110524270544892, 3.6807247252964452, -0.9832903616733496, 2.2779285708733847, 4.004120492677677, 0.8625712036518706, 0.5669586362452219, -1.6617050942942058, -0.35794910604276703, -2.5420597597527825, -0.6224796909705287, -1.6214480114174044, -1.505749474521615, -1.6904767088810766, -0.053300487385378174, -0.5895690558968699, -0.9640067095563775, 2.171065998706108, -0.08186006588643295, -0.2082011779327084, -2.3645415871174533, 0.9141682646296657, 1.2099080424366904, 0.8718664382555106, -1.8639228968842307, -1.0188111743407078, 0.11017608858733427, 0.1577030516303962, -0.7914106008515664, -1.4072237628245046, -0.5387603955300715, 1.3410603004027934, -2.17512919702269, -1.7526050185797855, 0.053371130880356235, -1.9165268012585637, 1.6246210311865625, 3.2747328879680366, -0.27211819723703684, 2.1709478959839688, 0.7165973109546865, 0.33311316829794824, -0.727869528978975, 0.6080697308227235, 2.010716588475525, 1.4537041434637374, 0.5526977915444715, 1.348775272860397, -0.5483028046639239, 0.45438157861597744, 0.06299972844155154, -0.2886954483967673, -1.6074182049577939, -0.6611127373329396, 0.11911804678075964, 2.389418544820396, 1.9786800826324034, 1.3330019248220906, 0.6574162530352927, 1.9468499875508343, -4.767004130212815, 1.12307036911087, -0.1308583979632507, -0.7499225372156203, -1.7369961715705124, -0.15143050583690015, 0.5231386676306496, 0.8520412821691917, 1.1321632958706247, -0.3371967545439019, 0.0330951228325214, -1.324954036877791, 2.7967490849154144, -0.9175303759525953, -0.5670906055116826, 2.0704238880886323, 1.5676511215690014, -2.1490932425563924, -0.8684671751654759, -3.2492639908772496, 0.3908857194696153, 1.7382926507735736, -0.004641542048267548, -0.35250505152495804, 1.9308496023334207, 1.6005652798570644, -0.05134197784824021, -0.7695908037638614, 1.4553523750448913, -0.6513027608300556, 0.10709545852958946, -4.217730180100434, 1.997151902910683, 0.005791777447379079, 0.126434998070629, -0.5324777293371713, 0.7124047225390896, -0.9701786473781778, 0.034288356171967085, -2.5483016315220746, 1.4084592341061575, 3.6729034318932334, -0.2142010886972735, -0.28388278320055416, 0.5400821259259391, 0.04884693159350134, -0.4635360338518937, -0.051592704598980785, -0.7519747640376304, 1.6587439261877284, -0.24191567773611222, -0.5693730783827978, -0.4339806254699183, -0.26480650715623755, 0.30228873586918387, -1.175373427627857, 2.959931755178485, -1.761579461513534, 0.31032507762799805, 0.96616698944657, 1.4844873662459477, -1.8104392544214827, 0.00018614177315148857, -1.415855106940537, 5.75089564825453, 0.21389787119670994, -0.883246625153568, 0.29182109085348495, -0.7882941377547804, 3.0321462564253023, -0.28099702977878893, -2.0893267573210177, 3.5084332419735453, -0.46753732278392734, -0.7487156547942423, -0.31810876513884406, -1.5168134371209765, 2.457655427212635, -0.33820062785764454, -1.669881448728958, -0.08217908343513704, 2.4744553438833825, -0.10749742832402102, -1.6363097584186195, -2.1204578350853045, 1.3771209952444003, 0.3484181169942184, 1.187323748340914, 5.416582091424814, -1.9816446181492027, 0.00939290401160011, -0.9258145196341742, 0.6440831064865706, -0.056182451037426986, -0.03326741667112485, 0.767555709600033, 1.2078420772789284, 1.1973361149882034, -0.0887335020913609, -2.4828173734745795, -0.23557706714275356, -0.6060696242329853, -0.4261760629979451, -0.19210890361755706, -0.43809751728156554, 0.3427764582889718, 0.15882520855244564, -1.1360511620807416, 0.06250260071318572, 1.2183363745937414, 0.7726589684707306, -0.8048135095299574, -0.22804792057709566, 0.0709528451677165, -0.09557004247747736, 0.8550074440608122, -0.0675096234216866, 0.14466943558205136, 0.5958484216446815, 0.02221693230531494, -0.6183328170951771, 0.477045410439989, 0.7013988302424004, -0.03629365255897309, 0.7053680165842863, 0.1869383903512814, 0.7238715930301173, -0.6354934622322819, 0.2501579846726832, 0.20918951504351033, 1.133335105519659, 0.004514670823413806, 0.010809406727805922, -0.02097278015703046, -0.02668605274864548, 0.23266665834819122, 0.11609081015625668, 0.46205541719536347, -1.128678118943114, 0.22147004451747576, 0.07214998666321465, -0.004736680929489285, -0.248102582543185, 0.5544610830082992, -0.06028435470231628, -0.0073525642942247295, -0.8115394090097892, 0.7882706376819784, -0.2779083200521351, 0.022567788270673326, 0.0632260449598681, 0.8346649995508613, -0.5298649969691812, -0.1367320806996921, 0.959307322064514, 0.1900476461152681, -0.03244782834092328, 0.578560336288793, -0.01713213645668885, 0.6135159562690566, 0.051794203131025236, 0.41252011065015254, -0.43085237270523263, 0.7702649118879444, 0.5451854404416373, -0.11674653921141269, 0.8648984600773636, 0.14463129863714372, 0.011147528749896713, 1.0989923386098615, -0.1402626335177906, -0.003865698346551373, -0.4543961252459431, 0.1990939619691127, 0.6921074378800354, 0.615272721562896, -0.10856990544689354, -0.3281806787764177, 0.04140631345136351, 0.0064947815421400705, 0.010573553724151516, -1.1589956839776514, -0.0951463285561023, -0.34878919617846954, 0.2677061055906993, 0.4370438413819852, 0.05252764004712061, -0.3055579874493321, 0.418869872253731, -0.11602880041304632, -0.16519848500371892, 0.4132713283142512, 0.6011179487626037, 0.21642628961024835, -0.18999897445528321, 0.664261811574892, 0.285358324747015, -0.07367308877320818, -0.21487034078636755, -0.5099991085278897, 0.05103564436496579, 0.0532724623919099, -0.24553317918665432, 0.010755241727090477, -0.2418819855224086, 0.2190418095466212, -0.8230442390866505, 0.5784871833100453, 0.34048191436563935, -0.4265804942213281, -0.04480646245835452, -0.17364735313329954, 0.7060782844552097, 0.1684789731953533, -0.16742452564943883, -0.08919049924637905, -0.5908721760736734, -0.14206734008354613, 0.33782978972130423, 0.08666100392363854, -0.7261732031324991, -0.14389026272482, -0.5423911250491402, -0.20031528878583932, -0.3050396016635311, -0.7202385867203835, -0.30900863611217966, -0.17156910294569097, 0.07098905971459034, 0.10685250366262652, 1.251293764655237, -0.00488726990927416, -0.5513864909522654, -0.365321847322723, 0.0910959004492998, -0.14406742490042418, 0.4073218230064669, -0.1314532872397985, -0.13522937617749498, -0.1197456105494001, -0.2950126405562605, -0.30509173900112413, -0.12643283285922377, -0.43120636407629487, -0.3607983655898398, -0.0692100007876171, -0.0030436985405476857, 0.371488157520179, -0.4018933423548215, -0.05910541518271675, -0.7000305224916263, -0.6667875860788253, 0.3531243270555544, 0.12760333822198736, -0.014178273461913906, -0.17149374459706943, -0.1778701261072634, 0.7428098626247844, -0.4347511160430561, 0.0482961619708127, -0.00032545548730745756, 0.09785148522386757, 1.217396790188022, -0.7052393229761114, 0.023800801141296582, -1.172579948949079, 0.36543955060330896, -0.12417819091861779, -0.1739769269984116, -0.5087616525184225, 0.5303146225739516, -0.8697023269475186, -0.9910063390898719, 0.15587867443590142, -0.09152382411443112, -0.9573782342248538, -0.18618003742912126, -0.680676493350311, 0.2556934239498336, -0.2762542993717564, 0.046461678913522125, 0.26134954117112363, 0.014975171807102491, 1.0043647535639433, -0.5718690021093257, -0.9656553981201059, -0.12856644018031832, -0.06101750214573517, 0.9464944787289395, 0.2550552536584647, -0.5990734463251018, 0.2397898782239612, -1.164645812112247, 0.053723675131298415, -0.017903537992573906, -1.1001961161698917, 0.11092568253916478, -1.087743421330375, 0.13870629725947012, -0.5583761368421994, 0.14920738413733325, -0.8846357585715124, 0.4427564720962898, 0.5582167793208725, 0.11117778142367953, 0.24490978602230687, -0.12486690441560086, -0.15828981731170416, 0.02547433596298069, 0.3574191381340155, 0.011133536166772207, -0.31247433996663765, -0.1351486416803844, 0.44053868272277974, 0.2799796451637268, 0.04494817016128439, 0.10620904763864741, -0.014500557119952307, 0.05074579920415606, 0.263086873589788, 0.39741557859560744, -1.2750901126847611, -0.10876254475333062, 0.12199000553986106, -0.002816502779328105, 0.790305068443179, -0.48567672848268423, 0.5848320370326608, 1.1191976286407654, -0.06196542267362903, 0.008808233896566132, 0.2113694923340749, -0.04017685281042454, 0.2327532297874013, 0.3714665814667497, -0.02470672084851467, -0.03976319105396404, -0.5537099001129784, 0.12081758749021586, 0.6526866511413827, 0.1552836031584832, 0.16247575248231833, -1.0010184497287187, -0.03820115928018126, 0.5748078819077526, -0.14287763596821484, -0.3387603388561167, 0.6406254834206911, 0.4559243419652021, 0.19173104092527687, -0.1846872450740823, -0.090936414660824, -0.8357301678714628, -0.4257871522329015, -0.48602569896782144, 0.11724999038146783, -0.03333165840918584, -0.283158423739767, -0.4027801446169887, 0.15620322107369103, -0.5071000579529283, 1.1338723383816818, 0.14320201341131764, 0.22702395120404925, -0.15992453238979337, 0.293481896897523, -0.02375210215552284, 0.9053667047143397], \"y\": [0.9507387236641733, -1.4609018669659382, -1.640833639157046, -1.864401230680103, 1.7019811899518815, -1.003460686331533, -3.498216488880672, -0.11350820011281265, -5.210487560954349, 1.1917327635940695, 1.686082905587799, 2.9006765042918947, 1.106477144437962, 0.8488448788626374, -0.863080779367745, -1.5329601448748382, 0.3099484930405093, 2.5255412404343076, 1.163147986825835, -1.2154270466008164, -0.5358724251098488, 2.8744513546657093, -1.666076683534091, 1.0925188844368094, -1.4437583979258524, 0.009164278178071722, 1.1534329882290357, 1.8571886453125797, -0.7907093384020175, 0.26812946507649554, -0.21719398490866917, 1.959072947448237, -1.969333288917625, -0.3547435756889889, 0.4270527843337112, 1.3832994443893414, 1.9382393086967924, 0.546980135332814, 1.3056687441344415, 0.4554253185888012, 0.5278660831610479, 2.27981897549948, 1.192483607058695, -3.079247704537666, 2.343367786754232, -1.5443178167126999, -1.217872905271079, -1.6378366071660027, 0.6871439671113541, 1.3389523643931345, 0.582017891690025, 1.0337911176413537, 1.3352210114041536, 0.7747661193768982, 1.313093790863373, 3.25804795495609, -1.0990136567042288, 2.9535619710024203, -0.7023707855442013, -0.7054855647489746, -2.5273012175915093, 2.842328542103315, -1.3956923655844684, -2.1003783563951623, 2.404772830906539, 2.487053960921078, 1.5072351687483079, 0.594946370112716, -4.470460630329637, 2.082649817500747, 2.0765034337594384, -0.5736424231181826, -0.7640212701543557, 0.6299558930117277, 0.054970783611795436, -0.28262316163588386, 3.0445046798020674, -0.5006269097822741, -2.851224897993285, 1.5584617383141581, 0.9529134801682912, -0.6471018155017065, -1.2725531706982716, 0.618288676530415, 1.528442651796016, -1.8098297402100623, -1.9994433319426057, -1.9886235516619797, -1.5665311787873546, -1.3224794379610318, -3.326036909516454, 0.24593377421074764, -1.321072119167412, -1.6705034919303605, 2.086940470567741, 0.7322715165566391, -0.8299759915442038, 0.25012962161698515, 0.16541155395717655, -0.9449570957230445, -0.6021913053371268, -1.280063795575897, 0.2521249467225228, 0.1247538077838758, -3.1133619263873777, -0.30398588858561576, -0.5335224095860793, 1.0025565867210748, -0.15843612602889323, -0.29860919233947786, -1.7654855086285068, -0.40744857049802835, -0.7640606713300573, 3.689344104551064, 0.43942145983682956, -0.7478997412102066, -1.004594469575615, 1.1546088187389623, -3.1706020592444677, 1.9615838529030967, -1.081079547334837, -1.6122612888527617, 0.41675590413802116, 0.3556434401965458, 0.4882745454361191, 1.5198167697033402, -1.7671026194252275, 0.7612604359399182, -0.279765588107726, 0.7210380922272451, 0.3759657595269117, 1.91381829097679, 2.6004059694906303, -1.5547164402953138, -2.363175468118765, 2.1252158732889854, -1.4657283541394175, -0.702113482874212, 0.6370671146936465, 2.1018676505649716, 1.405122611523421, -1.3990067592155464, 1.1480190120526672, -1.2583633811338604, 0.7818794890055422, 1.5325009719406082, -1.430507411459513, 1.8712451148302363, -1.1039088747310042, -0.3092644273528608, 1.0046024898827677, 2.196040826004229, -1.4503291930350437, -2.1954854598542575, 1.3638395270154844, -0.22000041174756702, -1.7504162497878641, -1.65681226805223, 0.9924424103930889, 0.629441506238905, 3.4326115500031977, -0.8917815896781386, -1.4895876804553456, 2.0517536721328398, -0.7012475041209548, -1.4131033410798406, 0.9693950168859247, -2.5448582265299375, -1.1911657079574993, 0.1390532824563251, -1.1334599452830727, 2.0805579187632115, -0.693779705327176, -0.2769041071155993, -0.32748473185800103, 2.3792582428308338, 0.6144698925221288, 3.0092062445387073, 0.8531220720760068, 1.32008072252813, -0.5329859974494561, 1.1957861904680407, 0.37795427793769626, -1.069761315210953, -0.48095978556024527, 2.622077378390932, -0.7804650607651666, -1.1334290911408165, 1.0509102675697415, -0.672263028858006, -0.3788173626722076, -1.2682316231232935, -0.5118340433165404, -0.081061637004674, -2.4977196436223057, -1.0794019464850795, -0.3549401042344638, -2.1218560233260693, -0.5582924875189139, -0.35146414808768695, 0.49063123877977904, -0.0063226708709991615, -2.534032264421242, -0.9655360447409832, -0.004880631905791272, 2.789799804362405, -0.41515998799187714, -0.026590113047491582, 0.15582274413084818, 0.6693721109387395, 0.635058515638188, -0.8186628693726372, -0.0009337727572149829, 1.111019614517812, 2.717398172366105, 0.21000480953039344, 0.5165125124624442, -2.2685278343601216, 0.8430446388966251, -1.8294193835315096, -0.18058543409831881, 0.20705028112294988, -0.19770041564976637, 1.2017590528751638, 0.20732458442887125, -0.28432120735595434, -0.1944383914641133, 0.4681494135074747, -0.17581793134202092, 1.5037397557332848, 0.08033829635208746, 2.743245102337111, -0.5269595694258096, -2.2852417422997724, 0.5724001395770959, 0.9461444855431792, 0.436372421897348, 0.2521165122008171, -1.3718684651684878, 1.6376525323564495, -1.057608258791175, -2.1913152001736047, 0.32625461473296663, 2.571523918004652, 0.20277965709142748, -0.31535932899989777, -1.6487091992273222, 1.414543453499205, 0.4496630750617773, -3.0797018311096096, -1.67737816558978, -0.09278600687868041, 0.4317082103712811, 1.6341217972252013, 1.006450767109474, -2.941258157142888, 0.7275244702033437, -1.9079118138283795, -2.679739509295975, 0.5805864639467728, 0.7010367006341026, 1.995733420968161, -2.5965941014992775, -2.356310641821905, 0.0007911766904949945, 2.9152530222810924, 1.6079915529564839, -0.07111556108835232, 0.01739075824917262, 0.2657697721181378, -0.4549273590621395, 0.9466406577000411, 0.5271492666552559, 0.6713298035599874, -1.968667330689397, 2.0681417699905453, 0.02802636719596589, 0.5254375989008989, -0.27183180530191087, 1.85772602677457, -0.16273401694017872, 0.6237607031941697, 0.8076779383648881, 2.416528461849385, 0.5761506975514916, -0.3028719516783794, 1.4928957330512143, -1.1101216437618469, -0.08898267160727794, 1.5114715195168198, 0.7998027981060454, -2.8896486253286393, 0.06895900873472428, -1.490792151421512, -1.8809174691168706, 1.2102405221951047, 0.16007494776391762, -2.5361858065533815, 4.0039140790247485, -1.117157519722987, -0.005398838721984577, -1.2807593470391945, -1.4065563643751147, -1.9536947446225512, 0.1032210978561462, -0.7908749905969928, -1.0339427103124705, 0.11396851403570954, -0.029497253806490112, -0.2800375457424895, -2.1750398393231323, -0.5233670306447188, 0.6612519161745563, 0.8570682736074848, 0.3457111814953548, 1.5441723118429775, 0.17801035979137766, -1.5302779208223036, 3.413789935884034, 0.7390574628206835, -0.10622278812665485, 1.339425392304214, 0.2226484752998057, 0.012565581264524445, 0.2417431169617102, 1.0497586973670678, -0.7493942494031723, 0.6936973174009294, -0.09050731229752926, -2.325340145657693, 0.479611336542983, 0.3194797815987404, -0.28180471440108185, 0.0455758041942531, -4.512504480234752, 1.3159001846445053, -0.8672478604154873, -1.318987092707462, 0.5969380854812109, -0.03230419163262233, 0.9453911100767574, 2.599232314113786, -1.6038323487424455, 1.6038563159971413, 0.12773541614250922, 1.4740955086951153, 1.2616373846827704, 1.611695810602449, 0.20315088377477986, 2.649763211171915, 0.7496986873576182, -1.1471274285561792, 0.17721574698111234, 1.7556047547815559, -2.4115801556347494, 0.060748987986955875, 0.2511386427186481, -2.7807743033098737, -1.9838986617137768, 1.3547771093983703, 1.340555491137276e-05, 3.998870185598647, -2.8080933095574747, 0.23977805909955116, -0.9242042463611809, 1.8192527677686785, 1.60911752132923, 0.45574286046862483, -1.2555166954946624, 2.7043498766638443, -0.6464922165806761, 0.10060404763424102, 1.153559555791587, -1.420484926641484, -2.545376264220138, 1.715790788786535, -0.6134842659534847, -1.946237874410779, 2.2201360808808435, -0.3977037678053374, 0.058808751171267534, -0.8821230851687596, 0.48836883552817834, 1.747549620984022, -0.3783485623204143, -0.8667291375171329, 1.0379311630005312, 2.291604166069388, 0.06250718244532008, 4.525970364441258, 0.6059063870065526, 0.468875705067526, -1.0525741531502009, -1.894894087333862, -0.9529753951619035, -0.9608062451536233, -0.27000857058494215, -0.8936726567941927, -1.1881797919106774, 0.8789619846249255, -0.044203689207128735, 0.04214963635808731, -0.35500473434017416, 0.12931388336367242, -0.34942446796249327, 0.6114305232381789, 0.7750988074248736, -0.27278660245260605, 1.1468528723011227, 0.15141185820415767, 0.20796221952400187, -0.21806120063909373, 0.11365644731071431, -0.23476793990367958, 0.48062897187980014, 0.9796662496154682, 0.4818706102364924, -0.12457823037473095, -0.5114902306136153, 0.17225422284308187, -0.35979968363769765, 0.27044393174798304, -0.7069479277855016, 0.6699139881771468, 1.0638960228202812, 0.6275122787848856, -0.18133430333483963, -0.06800478176566882, -0.5896579319569151, -0.17074414071048336, 0.5384835026334868, -0.038901268849381894, -0.004345570391338937, 0.5553069102627668, -0.607467468553227, 0.15804901464392085, 0.0386352650007871, 0.2750266214769868, -0.013537549942608591, -0.009208174576372073, -0.6920331731519335, 0.1683101698775422, -1.2436096818044238, 0.009636574584223415, -0.4243342949176514, -0.9141289298286145, 0.5887174031733619, -0.2553003034150493, -0.3314477831790814, 0.3749830047362919, 0.3326279615282467, 0.16202431357544173, -0.042279445735669774, -0.31379377622578103, -0.39546325535862464, -0.1813837539634242, -0.4838546626414723, 0.3122816979419086, -0.18521629832357472, 1.014816003020535, -0.6847224265398735, -0.34761865885174975, -0.0010879182458665103, 0.033689664716109645, -0.34297672392947337, 0.07034136803774425, -0.6146283973210291, 0.18066874738361116, 0.24701640854746582, 0.005831517100199118, -0.8074238527232648, -0.1962207577757132, 0.3003349623347941, -0.8521818554451426, 0.40505369178150674, 0.08467588183532945, -0.39963072007241535, 0.07760937381741173, -0.007604336141021661, -0.24462042422475483, -0.31787495261700893, -0.9299262257432003, -0.2256629366364449, 0.27368987824548563, 0.023368998275195386, -0.1975812061498684, -0.38054897001965415, 0.030205431623405776, -0.15613936795301633, -0.3713148213131985, -0.8563145790097807, 0.6132101852563157, -0.22329883280319054, -1.3029682900070514, -0.2673290345769261, 0.05768039973483042, -0.34954168707330896, 0.0038226141822543303, 0.3625817342971802, 0.047430132179959825, -0.12384074291393202, -0.012004127210053466, 0.17002123092342675, 0.9858449475181511, -0.6358197648712212, 0.1471306005176655, -0.07777324097675156, 0.6404117280682888, -0.7111505379515354, 0.14375968949036802, -0.046021049283079755, -0.032531787369088475, 1.1211991399436767, -0.27599712110493, -0.2778098496917429, 0.21279504201641924, 0.6810891177396245, -0.11518790207636491, -0.06292325531168921, -0.12852825994853762, -0.19573801913511044, 0.06110700445436372, 0.22856969886471365, -0.2943724852385639, -0.2859139764414744, -0.5884735946022883, 0.15658783157786488, -0.2666618630495401, -0.07075394583749854, 0.018299795162921132, 0.09221708652677182, -1.390564001760982, 0.1889628774951814, 1.1452024118818125, -0.03470524175158525, -0.14475572517113142, 0.05084290575777056, -0.5326285125885568, -0.27137522575843454, 0.6070665819214298, 0.23643531940872212, -1.1248112486628863, 0.088760437387161, 0.01967127676004696, -0.03974323872927394, 0.8472927484852483, -0.335154386367008, -0.04595601261519409, -0.4914900813008438, 0.1925405262597624, 0.06394771617409853, 0.07184730782215322, -0.061921913526794256, 1.0266856361334087, -0.039453782308062325, 0.8276786666520652, -0.022163672693607514, 0.1333062772405066, 0.11083751354930584, 0.5620096512529557, -0.766596633680566, 0.11573454376849096, 0.003423133870876108, 0.49677560923192715, -0.12324543794102501, -0.27034474818608883, -0.28003913126323443, 0.8330001880105893, 0.18578742024556433, -0.2804601101457663, 0.5028143268618775, 0.1586706379482543, -0.07999556959058139, -0.030452654656929593, -0.33902215966426524, -0.5586360671323508, 0.3343278635044793, -0.5461316518433342, -0.025008096912850383, -0.19641377495817924, -0.1535555805731031, -0.9095850109868004, 0.4772031851788046, -0.24993369079875055, 0.11875011744841703, 0.8096195510928034, 0.27094928031284155, -0.3799822779835486, 0.6098301888271483, -0.5447397697398922, 0.07869096858330253, 0.06002166393467011, 0.7835074855469458, 0.4998187634064203, -0.7315124848208409, 0.29229016969519894, 0.2473485357171275, 0.9870911460087383, 1.1444199854734214, 0.5242004077142726, -0.9801343304510399, 0.149489968870826, -0.012721169958383698, 0.46117181541333535, -0.09594703563609658, 0.41494576956396273, 0.20305230575691374, 0.6487745859454398, -0.00022074233256796254, 0.17098222248227998, -0.056821760226498826, 0.21253816370451556, 0.11922842718275994, -0.2641702145423113, -0.19867162823959075, 0.3001933198339789, -0.02446395182743563, 0.5855056505174773, -1.2316415485734225, 0.4371829058847728, -0.1914767011964607, -0.1775267066727883, -0.05253015804037996, -0.10300099953429079, -0.6752275371939169, -0.7267488995963441, -0.05508023004472249, 0.0674729532147538, 0.01871469639252447, 0.1600566923202637, -0.13395241083370266, 0.2977417168497117, -0.34294640025188305, 0.19377183597970224, -0.1825353592570158, 0.2274816761841238, 0.027394917711578728, 0.27641396930753515, 0.08000875754122393, 0.15250786791642096, -0.3175290757550497, -0.03600446398310789, 0.10557927433555114, -0.17650868100264347, -0.06847583766020592, 0.2082913208219915, -0.6053262776921167, 0.8550441974898146, 0.022620479178419067, -0.7105093554104904, -0.8175987487174903, -0.15498914154855037, 0.1130656009263308, -0.4589749924826032, -0.8440700170089213, 0.1718437844426501, 0.8073076235736172, 0.005581675994112762, -0.15392156596322976, 0.6241787956120264, 1.0700428997281846, -0.5483155654048668, 0.07859870519093119, 0.14447487809789772, -0.08307895509946082, 0.6830069763351194], \"z\": [0.5776123229889528, 0.6015422959646285, -0.2980547663250448, -0.7320299046114773, 0.12956705276243652, -0.05014209692267762, 2.1292198683426338, 1.2620018208263835, -0.7513096299772757, -0.6657895206037923, 0.8573675927224065, 0.9880593342449369, 1.8960815524564198, 2.651107843018613, 2.6716543021079624, 0.7824774940370717, -0.9096974050348459, 0.05333946960918059, 1.669866942459377, -1.0764696762200219, 0.781578116918783, -1.2115230612583727, 0.6009803835453298, -1.0644018708755745, -2.9886645166992136, 0.798636815274409, -1.009676571790968, -0.37564869839231635, 0.07204706139192825, 0.5810854451368509, 0.6076866514315334, 1.1817523104187317, -1.61659952455136, 1.5840188345031274, -0.2643407660539322, 2.397925255750337, -0.8925738444019516, 0.8090395545404174, 0.5113244500026899, 1.8155873159025298, -0.8711923113490421, 0.0917468079482159, 1.5065226833387428, 2.0172401362121803, 0.1249721116306855, 1.5583803654441841, 0.6812438945214693, -2.8060989330444235, -1.3825452125300597, -0.8676734146736937, -1.3931562592479836, -1.552848269330532, 3.0666464008115915, 0.2868381705716488, 0.9006633261193767, -0.08091514485371888, 0.2667987563108488, 1.5713040158740528, 2.236107203180505, -0.8002043287568426, -1.395512699110684, 0.6572577577204296, 3.250600507415324, -0.9739080814705956, 0.32554808189928053, 1.2555788038576978, -2.7155776645163074, -0.9375838447475819, 2.9373446027086416, -0.13176115370156405, 1.516389768102531, -0.18647396413103035, 3.851201254225534, 0.9325263592445588, 1.5865689795019537, -1.4525295063029635, -1.4070439422728647, -1.3451684918167608, -1.5580729580465402, 1.1279965769440483, -1.1465338512212342, 0.9942665317870786, 1.9360238734449857, -0.15075448319137524, 2.50190184718929, 1.292782599341811, 0.014115721786173102, -0.5088905357046525, -0.5139478651011615, -2.438526851404156, 4.729127307447215, -1.3099937336161231, -0.058316708326056475, -0.7025828389220454, 0.6977866565831318, 2.041705073399282, 1.2595522073225096, 2.1190460413070076, -0.28852559268920014, -1.257712301822877, 1.7255735438117012, 1.9162351466368708, 1.5023637236520437, 1.3964947928424158, 1.9052078712928844, 1.7747757731955778, -1.6899263486064096, -0.4377850300081463, 0.22460253748810702, -3.787479747863574, 0.47660258162811503, -1.252182073107447, -0.05884607870308581, 0.32721907072576517, -1.4020207936715179, 1.7934971336863812, 1.6481013189904608, 0.8741879107466859, -1.3154505872554927, -0.3328953442229446, -0.19035114104791542, -0.7292085523316502, 2.2072004615635743, 1.2658715337974205, 1.898067653097707, 1.9265892465557473, 2.5336822670081194, -1.3064933272581492, -1.0512868111264877, 1.1080803761937434, -0.11642217986466229, 2.0963735436842454, -1.2265506695141952, 3.7382537271360703, -3.9469709887563496, -0.4254151238571442, 2.810359522198097, 0.2742143104898706, 0.12476238568275162, -1.3551258927098262, 0.8052452094889329, 1.4875940442879172, -0.6257664796075267, 1.3040753089609267, -1.2554334597024726, -0.7770331067602001, -0.948796263905562, 2.057286663580855, -1.1418189355451, -1.543800959457578, 1.076449886694538, -0.6256879750382087, 0.2114733708998387, 2.3533889331716797, 0.8126113152024048, -0.1933519253090284, -0.6665108850654071, 3.7654423687040546, 1.1725175340660374, 1.6977352970087505, -1.6798585339010819, 0.9917749026073854, 1.3622212686265969, -1.2367386326674048, 1.7285479416811944, -2.3165497003727737, 1.3130425410321156, -1.9830244590657098, -0.6952880306074339, -1.9848908127234215, 0.19325312757801943, -3.0263510258848414, -0.12941746613482555, -0.17487599927457653, -1.1031100148579904, -1.9484235484480994, -0.990779379428171, -1.6274920689111163, -1.2432741969010292, -1.3141687610005544, -0.14624701263188125, 2.4398259963290587, -1.7841242753179307, -2.5342687691530434, -0.3917072150267685, 2.6654463412927094, -1.78695811377408, -0.29364126016675535, -0.6393913354663842, 0.12067014685453131, 1.3093122878845929, 0.8600453396682589, 0.15098252198336484, -2.7670948822201322, 0.6274896534627457, 0.3530483102823863, -0.3565974289234693, 1.192186651288402, -1.6937135496122002, 3.7916882251978565, 0.1894107323451594, 0.9412006059665105, -0.4960129039126483, 1.1861386847647777, -0.013660192481235154, 0.08923519400781948, 1.3833600797602728, -1.119477297403264, -0.10289038192047686, 2.5281500087930233, -2.291273363963967, 0.42317789407104134, -0.011082109527892046, 1.1382544686963973, -3.133395656244069, -2.131141830167382, 0.22778299778934688, -2.353725239366368, -2.2241268165275567, -1.397471643424169, -0.021547132937350815, -1.5275700343795533, 0.3236062446666114, -1.7360460284191355, -0.24899547889883814, -0.8240265049399832, 0.28808929078365353, -1.6534625867981663, -0.4752355080817485, 0.026991924045708243, -0.04104026082378802, -1.6562666691573773, -0.6302700120153734, -1.4959657033028368, -0.03102682628001643, -0.932719860315406, -0.5054164325469334, -0.023987967489261373, -1.1834137585633877, -2.547056002043938, 0.2141520095234683, -4.921692254386499, -0.5326493489861829, 1.1550480253315312, -0.2383066990837037, 1.1643829154985783, -1.1570396527847886, 2.25008209922639, -0.6341534935257145, -0.7983147456108101, -0.6547164722428058, 1.5488000268380822, 0.2722047015260171, 0.9648295224768634, -2.8673641711882145, 5.701982429819013, 0.1294928268400552, -1.4515586158141651, 1.6266030177585997, -4.883882337151836, -0.32504670209609204, -0.03740461417417495, 1.548606000761463, 1.8768364618360114, -0.07335059426695506, -2.1618933014722406, -0.7862399699933471, -2.0217830760053372, -0.05955729060401601, -1.530551703084092, -0.31842042097207296, 1.7565820589130092, -0.6646085583892551, 0.9186003467075392, -3.001164206673148, -1.6405481041049386, -0.0879085737742692, -0.5681611595874826, -1.8003861319204575, -0.48214790279832975, 0.3433075097906711, 1.5888638317888475, -3.3285380497771024, -1.9599154417421791, -0.23622362749402445, -0.6281753075974502, 0.5106161286834212, 3.9768008445110286, 0.15741736927243866, -0.4120402543244183, 0.8240543022936692, -0.17967442150088136, -0.3755531677074986, -1.0574664146185895, -0.5915731151811617, 1.3529815156755696, -0.3085216647633355, -1.3802981356940789, 1.728651219657044, -0.16721643286854415, 0.0424259786197795, 3.0925138776171535, 0.5654069008481213, -1.7651090077004814, -0.39398046334900794, -1.102532723569074, -0.49308615106925996, 1.7834288438306427, -0.1700722646693045, -1.5539737544585204, -0.8514072455649453, -3.023783701408207, -1.1958821561969453, -0.29401584729379476, -0.11908074931889907, -1.4163764743213698, -1.1768261035265353, -0.45225116992756753, -1.2460078508101973, -0.1541577558102047, 0.1977311390793398, -0.6369784130496613, -1.3169416582366529, 1.2427752155129745, 0.34923377506045233, 1.7714991506943143, -0.6654666743664335, 1.420562273980966, -0.052623828592884246, 0.4679698973534559, 0.7317356162107835, 1.732027502585971, 0.35942559942676117, 2.801964913236424, -2.4933588558629487, -2.5266426161308613, -0.5775642486986698, 0.44543416340354475, 2.8282260680152187, 0.8834769408537159, 0.19909972626929298, -0.2091026073080625, -0.4656682287851256, -0.10224107729671608, 0.5065003354986787, -0.3995625996171638, -0.6325570902536753, -4.699995707533344, -0.3713081514414218, 0.6868226000231509, -2.828867802090856, 2.2521390528275584, -0.3864338826889912, 1.0838032422132122, 0.10909200084349158, -0.3677369641185583, 0.5426253435292504, -1.1926954701444403, 0.20993763400402182, -0.8525069334611098, 0.0004985844647144197, 1.6052576906325269, 0.09638650201303356, -2.6272504279560716, -0.18497941650866603, 0.002928655600117649, -1.8104771217761308, 1.7847929654427426, -0.25053698316668693, -1.5727906081780003, 0.07983416870741918, -2.9604455431031527, 0.009871493534298302, 0.845206033455862, 2.9821696202353407, 0.14146461848763348, -1.151174099326699, 1.4935656021779766, -0.6171109096195003, -1.0300762696453598, -0.03435032007554297, -2.5565646502896744, 0.8506415803944156, 2.0488909994875812, 0.11616099024702695, -1.5300047316019383, 0.022875641888802218, 0.37625366165861546, -0.03090394037381158, 2.6845041724817182, -1.7740849555112355, -1.9231486229553842, -0.1729666250621518, 1.058273574155701, 0.11308609980279835, -0.8597377372396212, -0.07851005027082654, 0.4542919758792331, 1.0992120815223352, -0.25680905688503886, -1.0976253130027913, -0.012976625168609989, -0.6027756581612468, -0.10692623444935155, 0.5226195729988808, 0.04830586010663889, 0.042490872669989195, 0.6581132306148819, -0.22693173129552638, -0.4572072294132441, -1.129656169737092, 0.314045434129862, -1.1097696285965788, -0.15470117170776979, -0.6642913563108013, -0.5450479659190252, -0.028668411187296503, 0.032060851635267756, 0.12194482986678797, 0.2730194071571314, -0.8736254304107208, 0.07631532155614025, 1.0242883564990137, -0.9469636921186401, 0.17427323343539133, -0.1962874221487151, -0.3363165306310678, 0.06621101823788794, -0.6503228873038772, -0.23953787216364197, 0.3026147720182378, -0.05153426899282096, -0.05070996975237597, 0.6068614641731186, 0.011460845785799286, 0.32599864533943235, -0.7015576419148218, -0.30575388633738515, -0.054043073203964696, 0.010106290323876293, -0.6240420985379534, 0.7982915799424529, -0.017606159862463614, -0.030284735903567724, 0.06346400504800387, 0.1011274585275438, -0.7753912663656723, -0.17876840972111357, -0.24763127735533896, 0.726456910846267, -0.25515774177564154, -0.02112789090622789, -0.7227869983470655, 1.0741098051371767, 0.19732985218019727, 0.8966782734795341, 0.17073173802150765, -0.11177698486611917, -0.21647837393883945, 0.5897558158753354, 0.5523210928906757, -0.12395003553428477, -0.16161680535012712, -0.20167084555495268, 0.5243642724080261, 0.3034258524238977, -0.11036426187640719, -0.6204678203442496, -0.36055653356150696, -0.0013010198808110663, 0.5082557800143572, 0.6992383549681382, 0.02131076474451946, 0.9622795045491278, -0.28703581323332283, -0.22717591128508585, -0.04587577820587505, 0.00014496385455716352, -0.05167880454472759, -0.26467670943942656, -0.01009284432109022, -0.15540378119911688, -0.24821184860930048, 0.7926428408168378, 0.02890446550587319, -0.0901195784249264, 0.33773246242047844, -0.598294182923884, 0.2349957358075827, 0.4158689300100805, -1.0284142353362034, -0.5823891356608846, 0.5088368890906605, 0.10136532152905313, -0.12415715157600218, -0.09592024443283625, 0.2320661197971102, -0.6791323768895215, 0.642226889689161, 0.09245363709330383, -0.1403534146709635, 0.053009507000489155, -0.008017899469765432, -0.20993560868744873, -0.5428360843058571, -0.852371235556168, 0.499141731349117, 0.011787978694017095, 0.11410003764209274, -0.42447648307036734, 0.6651761807823449, 0.7127930231429388, 0.3752324619845307, 0.41346769260459554, -0.32974617771225745, -0.5004680724261127, -0.3265194064404347, -0.12209259744943574, -0.7766255668029766, 0.2576537769189721, 0.6341031516686002, 0.11321678746439459, 0.18542233944347244, -0.09468230343456871, -0.12141647364756808, -1.170842176717786, 0.1346350046849825, 0.3833744093404465, -0.45956146568457695, 0.04414093490825911, 0.0695235759766022, -0.22341393654879813, 0.24884096560710303, -0.13468293124603217, -0.25217818130608693, -0.08597440084081694, -0.6053558371547617, 0.32487147772595404, 0.9312328927527675, 0.28832223741047036, -0.6563782757465806, 0.2468946463117273, 0.2644828982945492, 0.09880217815077284, 0.2706282941600507, -0.8240231969071063, 0.5437962412692318, -0.05611560563285584, 1.1394402023854966, -0.1534875110049764, -0.2869942417659041, -0.045866370332887665, 0.00519877191703459, -0.8281349008860533, 0.07318974680888891, -0.8196633449750539, -0.18322099049014398, 0.01218205099425929, 0.07405509704798795, -0.03676667343542181, -0.12433927821783644, -0.2059045770108741, -0.012680804448913263, 0.5483844229582538, 0.20748623770971455, 0.23895689171544526, -0.03261733807878516, -0.5623160650488399, 0.12345569830994318, -0.39838409939933045, 0.4082607628655049, 0.06667503034337086, -0.30027075177668244, 0.7969306207229534, -0.04995793784767046, 0.5225149362904103, 0.7160226186814719, -0.19898542551544998, -0.5854008706537654, 0.2335970982889984, 0.0669269181861549, -0.031989202416528834, 0.06619059193059601, -0.47902551240018615, -0.8245134384979722, 0.46451280229072944, 0.04784275720465153, 0.08801615691479986, -0.11777419194325917, -0.5846428844834289, 0.05862061050575618, 0.10387028694623104, 0.2608969128622493, 0.11123608531326967, 0.18305501282512043, -0.10823792116252572, -0.7833606601506433, -0.29890886424113966, -0.1540963382870882, 0.08300086830785622, -0.13740365507410804, -0.5756420276048054, -0.13168377310932966, 0.06772393104586782, -0.23137507430481274, -0.04976980202301055, 0.7950912282313873, 0.09663749114223341, -0.002676185381079095, -0.03018227293825706, 0.003987287602327677, 0.12077261190134986, -0.28015799953801274, 0.2485991949959266, 0.8489846905826355, -0.08691518384660445, -0.03446765299096173, 1.3280662658541247, 0.2764195215100299, 0.5289777517274822, 0.010297199285463488, -0.005972463868225344, 0.6105242206651555, 0.24136442513179632, 0.38981314546152235, 0.86806523285274, 0.19490797980629906, -0.00741820871767205, -0.02255366162659793, 1.4364966865050983, 0.1359459812716876, -0.3566137956283156, -0.005010913803418883, 0.21073140489827102, 0.7550824725508364, -0.035401617941937476, -0.15735564525674162, 0.9790985063953359, -0.04060268097898836, -0.037155675460467566, -0.3042694658023883, 0.1611616019633491, 0.2473938649474972, 0.3853551527817921, 0.12335494487089847, -0.40913334937581164, -0.6814201784155515, 0.831616141005089, -0.11324824103368487, -0.3782756841719141, 0.04745349482686579, -0.16772169487580496, 1.1137279071911546, 0.1718452325638626, 0.9413552839969567, 0.09952575623992435, 0.9947177736218095, -0.40157472531971533, 0.28298843812556645, -0.1916789336381598, -0.7908986961674175, 0.26547251541785005, -0.15998608982791707, -0.728479946261583, -1.098904994824419, 0.44168490740846056]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 1\", \"marker\": {\"color\": \"rgb(255, 127, 14)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 1\", \"scene\": \"scene2\", \"showlegend\": false, \"text\": [\"666_l_1_m-0_1.99-1_0.33-2_0.2-3_0.74\", \"667_l_1_m-0_0.73-1_0.02-2_0.57-3_0.01\", \"668_l_1_m-0_0.33-1_0.26-2_0.04-3_0.02\", \"669_l_1_m-0_0.1-1_0.21-2_0.43-3_0.35\", \"670_l_1_m-0_1.23-1_0.02-2_0.07-3_0.71\", \"671_l_1_m-0_0.5-1_0.01-2_0.27-3_0.4\", \"672_l_1_c_0_1_3-0_0.9-1_0.03-2_0.32-3_0.76\", \"673_l_1_c_0_1_3-0_0.06-1_0.0-2_0.63-3_0.51\", \"674_l_1_c_0_1_3-0_0.23-1_0.15-2_0.13-3_0.53\", \"675_l_1_c_0_1_3-0_0.41-1_0.13-2_0.83-3_0.46\", \"676_l_1_c_0_1_3-0_0.21-1_0.17-2_0.82-3_0.27\", \"677_l_1_c_0_1_3-0_0.06-1_0.04-2_0.76-3_0.08\", \"678_l_1_c_0_1_3-0_0.07-1_0.09-2_0.94-3_1.04\", \"679_l_1_c_0_1_3-0_0.19-1_0.32-2_0.15-3_0.2\", \"680_l_1_c_0_1_3-0_0.45-1_0.49-2_1.48-3_1.57\", \"681_l_1_c_0_1_3-0_0.33-1_0.03-2_0.37-3_0.26\", \"682_l_1_c_0_1_3-0_0.42-1_0.21-2_0.74-3_0.19\", \"683_l_1_c_0_1_3-0_0.85-1_0.3-2_0.73-3_0.37\", \"684_l_1_c_0_1_3-0_1.19-1_0.07-2_0.19-3_0.54\", \"685_l_1_c_0_1_3-0_0.03-1_0.28-2_0.79-3_1.74\", \"686_l_1_c_0_1_3-0_0.17-1_0.22-2_0.07-3_0.32\", \"687_l_1_c_0_2_3-0_0.09-1_0.19-2_0.1-3_1.54\", \"688_l_1_c_0_1_3-0_0.61-1_0.16-2_0.89-3_0.22\", \"689_l_1_c_0_2_3-0_0.1-1_1.03-2_0.43-3_1.17\", \"690_l_1_c_0_1_3-0_0.82-1_0.1-2_0.66-3_0.96\", \"691_l_1_c_0_2_3-0_0.25-1_0.59-2_0.58-3_0.08\", \"692_l_1_c_0_1_3-0_0.57-1_0.16-2_1.43-3_0.48\", \"693_l_1_c_0_2_3-0_0.61-1_0.21-2_0.03-3_1.04\", \"694_l_1_c_0_1_3-0_0.26-1_0.23-2_0.28-3_0.09\", \"695_l_1_c_0_2_3-0_0.38-1_0.52-2_0.11-3_0.27\", \"696_l_1_c_0_1_3-0_0.05-1_0.47-2_0.51-3_0.22\", \"697_l_1_c_0_2_3-0_0.59-1_0.36-2_0.15-3_1.88\", \"698_l_1_c_0_1_3-0_0.18-1_0.54-2_0.38-3_0.4\", \"699_l_1_c_0_2_3-0_0.05-1_0.51-2_0.19-3_0.62\", \"700_l_1_c_0_1_3-0_0.5-1_0.31-2_0.04-3_0.2\", \"701_l_1_c_0_2_3-0_0.04-1_0.45-2_0.09-3_0.05\", \"702_l_1_c_0_1_3-0_0.96-1_0.12-2_0.16-3_0.05\", \"703_l_1_c_0_2_3-0_0.45-1_0.18-2_0.21-3_0.45\", \"704_l_1_c_0_1_3-0_0.88-1_0.64-2_0.08-3_0.69\", \"705_l_1_c_0_2_3-0_0.32-1_0.15-2_0.14-3_0.39\", \"706_l_1_c_0_1_3-0_0.09-1_0.28-2_0.03-3_0.29\", \"707_l_1_c_0_2_3-0_0.3-1_0.73-2_0.3-3_0.01\", \"708_l_1_c_0_1_3-0_0.05-1_0.48-2_0.37-3_0.14\", \"709_l_1_c_0_2_3-0_0.54-1_1.23-2_0.03-3_0.45\", \"710_l_1_c_0_1_3-0_0.13-1_0.12-2_0.65-3_0.06\", \"711_l_1_c_0_2_3-0_0.28-1_0.2-2_0.6-3_0.52\", \"712_l_1_c_0_1_3-0_0.33-1_0.22-2_0.84-3_0.22\", \"713_l_1_c_0_2_3-0_0.08-1_0.24-2_0.3-3_0.62\", \"714_l_1_c_0_1_3-0_0.18-1_0.16-2_0.63-3_0.17\", \"715_l_1_c_0_2_3-0_0.43-1_0.5-2_0.33-3_0.77\", \"716_l_1_c_0_1_3-0_0.66-1_0.29-2_0.68-3_0.47\", \"717_l_1_c_0_2_3-0_0.07-1_0.36-2_0.23-3_0.14\", \"718_l_1_c_0_1_3-0_0.06-1_0.14-2_0.98-3_1.51\", \"719_l_1_c_0_2_3-0_1.38-1_0.12-2_0.2-3_0.06\", \"720_l_1_c_0_1_3-0_0.51-1_0.02-2_0.18-3_1.12\", \"721_l_1_c_0_2_3-0_0.24-1_0.14-2_0.05-3_0.31\", \"722_l_1_c_0_1_3-0_0.15-1_0.47-2_0.73-3_0.43\", \"723_l_1_c_0_2_3-0_0.02-1_0.17-2_0.05-3_0.41\", \"724_l_1_c_0_1_3-0_0.3-1_0.27-2_0.77-3_0.79\", \"725_l_1_c_0_2_3-0_1.1-1_0.61-2_0.07-3_0.54\", \"726_l_1_c_0_1_3-0_0.31-1_0.01-2_0.11-3_0.08\", \"727_l_1_c_0_2_3-0_0.06-1_0.12-2_0.02-3_0.16\", \"728_l_1_c_0_1_3-0_0.09-1_0.03-2_0.02-3_0.74\", \"729_l_1_c_0_2_3-0_0.47-1_0.3-2_0.09-3_0.97\", \"730_l_1_c_0_1_3-0_0.49-1_0.12-2_0.57-3_0.09\", \"731_l_1_c_0_2_3-0_1.35-1_0.11-2_0.39-3_0.23\", \"732_l_1_c_0_1_3-0_0.32-1_0.05-2_0.58-3_0.25\", \"733_l_1_c_0_2_3-0_0.12-1_0.63-2_0.19-3_0.3\", \"734_l_1_c_0_1_3-0_0.42-1_0.05-2_0.5-3_1.44\", \"735_l_1_c_0_2_3-0_0.16-1_0.67-2_0.08-3_0.14\", \"736_l_1_c_0_1_3-0_0.05-1_0.13-2_0.29-3_0.17\", \"737_l_1_c_0_2_3-0_0.36-1_0.26-2_0.02-3_0.34\", \"738_l_1_c_0_1_3-0_0.42-1_0.03-2_0.17-3_0.01\", \"739_l_1_c_0_2_3-0_0.86-1_0.12-2_0.14-3_1.11\", \"740_l_1_c_0_1_3-0_0.42-1_0.11-2_0.27-3_0.41\", \"741_l_1_c_0_2_3-0_0.31-1_0.61-2_0.03-3_0.73\", \"742_l_1_c_0_1_3-0_0.42-1_0.01-2_0.74-3_0.53\", \"743_l_1_c_0_2_3-0_0.14-1_0.35-2_0.43-3_0.33\", \"744_l_1_c_0_1_3-0_0.84-1_0.07-2_0.52-3_0.69\", \"745_l_1_c_0_2_3-0_0.42-1_0.01-2_0.0-3_0.65\", \"746_l_1_c_0_1_3-0_0.25-1_0.09-2_1.24-3_0.41\", \"747_l_1_c_0_2_3-0_0.55-1_1.38-2_0.23-3_0.43\", \"748_l_1_c_0_1_3-0_2.0-1_0.43-2_0.95-3_1.49\", \"749_l_1_c_0_2_3-0_0.22-1_0.11-2_0.08-3_0.33\", \"750_l_1_c_0_1_3-0_0.57-1_0.5-2_0.18-3_0.17\", \"751_l_1_c_0_2_3-0_0.2-1_0.82-2_0.15-3_0.44\", \"752_l_1_c_0_1_3-0_0.42-1_0.24-2_0.1-3_1.67\", \"753_l_1_c_0_2_3-0_0.85-1_0.37-2_0.08-3_0.11\", \"754_l_1_c_0_1_3-0_0.08-1_0.11-2_0.38-3_0.67\", \"755_l_1_c_0_2_3-0_0.1-1_0.57-2_0.03-3_1.05\", \"756_l_1_c_0_1_3-0_0.15-1_0.46-2_0.2-3_1.4\", \"757_l_1_c_0_2_3-0_0.42-1_0.27-2_0.08-3_0.9\", \"758_l_1_c_0_1_3-0_1.26-1_0.09-2_0.15-3_0.38\", \"759_l_1_c_0_2_3-0_0.34-1_0.39-2_0.23-3_1.08\", \"760_l_1_c_0_1_3-0_0.07-1_0.28-2_0.19-3_0.07\", \"761_l_1_c_0_2_3-0_0.89-1_0.37-2_0.04-3_0.31\", \"762_l_1_c_0_1_3-0_0.02-1_0.01-2_1.11-3_0.43\", \"763_l_1_c_0_2_3-0_0.01-1_0.5-2_0.42-3_0.67\", \"764_l_1_c_0_1_3-0_0.1-1_0.14-2_0.23-3_0.33\", \"765_l_1_c_0_2_3-0_0.3-1_0.09-2_0.17-3_0.59\", \"766_l_1_c_0_1_3-0_1.21-1_0.29-2_0.32-3_0.22\", \"767_l_1_c_0_2_3-0_1.47-1_0.11-2_0.2-3_0.63\", \"768_l_1_c_0_1_3-0_0.18-1_0.29-2_0.07-3_0.17\", \"769_l_1_c_0_2_3-0_0.65-1_0.16-2_0.42-3_0.01\", \"770_l_1_c_0_1_3-0_0.11-1_0.27-2_0.78-3_0.0\", \"771_l_1_c_0_2_3-0_0.63-1_1.02-2_0.21-3_0.01\", \"772_l_1_c_0_1_3-0_1.06-1_0.76-2_1.05-3_0.47\", \"773_l_1_c_0_2_3-0_0.37-1_0.08-2_0.55-3_1.53\", \"774_l_1_c_0_1_3-0_0.37-1_0.23-2_0.79-3_0.08\", \"775_l_1_c_0_2_3-0_1.42-1_0.32-2_0.17-3_0.31\", \"776_l_1_c_0_1_3-0_0.07-1_0.21-2_0.57-3_0.23\", \"777_l_1_c_0_2_3-0_0.07-1_0.1-2_0.26-3_0.2\", \"778_l_1_c_0_1_3-0_1.0-1_0.41-2_0.09-3_0.44\", \"779_l_1_c_0_2_3-0_0.64-1_1.02-2_0.58-3_0.96\", \"780_l_1_c_0_1_3-0_0.92-1_0.34-2_1.19-3_0.12\", \"781_l_1_c_0_2_3-0_0.51-1_0.11-2_0.16-3_0.15\", \"782_l_1_c_0_1_3-0_0.18-1_0.6-2_0.45-3_0.12\", \"783_l_1_c_0_2_3-0_0.31-1_0.51-2_0.19-3_1.44\", \"784_l_1_c_0_1_3-0_0.37-1_0.47-2_1.04-3_0.24\", \"785_l_1_c_0_2_3-0_0.38-1_0.95-2_0.3-3_0.48\", \"786_l_1_c_0_1_3-0_0.17-1_0.17-2_0.25-3_0.11\", \"787_l_1_c_0_2_3-0_0.1-1_0.72-2_0.24-3_0.5\", \"788_l_1_c_0_1_3-0_1.06-1_0.23-2_0.59-3_0.0\", \"789_l_1_c_0_2_3-0_0.05-1_0.73-2_0.3-3_1.62\", \"790_l_1_c_0_1_3-0_0.67-1_0.44-2_0.23-3_1.13\", \"791_l_1_c_0_2_3-0_0.05-1_0.06-2_0.61-3_0.13\", \"792_l_1_c_0_1_3-0_0.18-1_0.07-2_0.55-3_1.37\", \"793_l_1_c_0_2_3-0_0.36-1_0.02-2_0.45-3_0.91\", \"794_l_1_c_0_1_3-0_1.08-1_0.28-2_0.68-3_0.37\", \"795_l_1_c_0_2_3-0_0.52-1_0.38-2_0.16-3_0.11\", \"796_l_1_c_0_1_3-0_0.41-1_0.03-2_0.71-3_0.33\", \"797_l_1_c_0_2_3-0_0.2-1_0.02-2_0.38-3_0.04\", \"798_l_1_c_0_1_3-0_1.01-1_0.0-2_0.86-3_1.02\", \"799_l_1_c_0_2_3-0_0.37-1_0.14-2_0.8-3_0.0\", \"800_l_1_c_0_1_3-0_0.25-1_0.17-2_0.1-3_0.91\", \"801_l_1_c_0_2_3-0_0.24-1_0.03-2_0.44-3_1.34\", \"802_l_1_c_0_1_3-0_0.18-1_0.01-2_0.64-3_1.06\", \"803_l_1_c_0_2_3-0_0.21-1_0.18-2_0.27-3_0.42\", \"804_l_1_c_0_1_3-0_0.14-1_0.27-2_0.01-3_0.07\", \"805_l_1_c_0_2_3-0_0.36-1_0.42-2_0.14-3_0.91\", \"806_l_1_c_0_1_3-0_0.22-1_0.04-2_0.1-3_0.25\", \"807_l_1_c_0_2_3-0_0.43-1_0.94-2_0.47-3_0.47\", \"808_l_1_c_1_2_3-0_1.39-1_0.45-2_0.18-3_0.46\", \"809_l_1_c_0_1_3-0_0.13-1_0.33-2_0.86-3_0.73\", \"810_l_1_c_0_2_3-0_0.62-1_0.45-2_0.74-3_0.75\", \"811_l_1_c_1_2_3-0_1.31-1_0.07-2_0.64-3_0.39\", \"812_l_1_c_0_1_3-0_0.29-1_0.13-2_0.36-3_0.67\", \"813_l_1_c_0_2_3-0_0.53-1_0.49-2_0.27-3_0.21\", \"814_l_1_c_1_2_3-0_0.38-1_0.04-2_0.12-3_0.41\", \"815_l_1_c_0_1_3-0_0.4-1_0.04-2_0.05-3_0.61\", \"816_l_1_c_0_2_3-0_0.02-1_0.44-2_0.33-3_0.37\", \"817_l_1_c_1_2_3-0_1.07-1_0.28-2_0.03-3_0.9\", \"818_l_1_c_0_1_3-0_0.77-1_0.45-2_0.74-3_0.3\", \"819_l_1_c_0_2_3-0_1.61-1_0.25-2_0.2-3_0.06\", \"820_l_1_c_1_2_3-0_1.2-1_0.14-2_0.29-3_0.65\", \"821_l_1_c_0_1_3-0_0.31-1_0.18-2_0.62-3_0.24\", \"822_l_1_c_0_2_3-0_0.47-1_0.22-2_0.56-3_0.38\", \"823_l_1_c_1_2_3-0_0.51-1_0.23-2_0.24-3_0.66\", \"824_l_1_c_0_1_3-0_0.87-1_0.35-2_0.18-3_0.43\", \"825_l_1_c_0_2_3-0_1.51-1_0.28-2_0.65-3_0.48\", \"826_l_1_c_1_2_3-0_1.72-1_0.47-2_0.4-3_0.11\", \"827_l_1_c_0_1_3-0_0.76-1_0.06-2_0.04-3_0.9\", \"828_l_1_c_0_2_3-0_0.44-1_0.74-2_0.07-3_1.12\", \"829_l_1_c_1_2_3-0_0.53-1_0.22-2_0.15-3_0.29\", \"830_l_1_c_0_1_3-0_0.07-1_0.23-2_0.21-3_0.06\", \"831_l_1_c_0_2_3-0_0.39-1_1.29-2_0.26-3_0.24\", \"832_l_1_c_1_2_3-0_0.64-1_0.39-2_0.41-3_0.07\", \"833_l_1_c_0_1_3-0_0.07-1_0.27-2_0.06-3_0.64\", \"834_l_1_c_0_2_3-0_1.1-1_0.55-2_0.14-3_0.15\", \"835_l_1_c_1_2_3-0_0.07-1_0.11-2_0.12-3_0.77\", \"836_l_1_c_0_1_3-0_0.83-1_0.57-2_0.36-3_0.88\", \"837_l_1_c_0_2_3-0_0.83-1_0.06-2_0.09-3_0.36\", \"838_l_1_c_1_2_3-0_0.21-1_0.55-2_0.01-3_0.49\", \"839_l_1_c_0_1_3-0_0.28-1_0.54-2_0.54-3_0.22\", \"840_l_1_c_0_2_3-0_0.36-1_0.2-2_0.18-3_0.36\", \"841_l_1_c_1_2_3-0_0.33-1_0.04-2_0.09-3_0.22\", \"842_l_1_c_0_1_3-0_0.48-1_0.1-2_0.59-3_0.72\", \"843_l_1_c_0_2_3-0_0.59-1_0.58-2_0.18-3_1.01\", \"844_l_1_c_1_2_3-0_0.38-1_0.18-2_0.06-3_0.18\", \"845_l_1_c_0_1_3-0_0.31-1_0.14-2_0.08-3_0.18\", \"846_l_1_c_0_2_3-0_0.53-1_0.04-2_0.33-3_0.15\", \"847_l_1_c_1_2_3-0_0.09-1_0.32-2_0.03-3_1.69\", \"848_l_1_c_0_1_3-0_0.03-1_0.18-2_0.86-3_0.91\", \"849_l_1_c_0_2_3-0_0.09-1_0.19-2_0.4-3_0.52\", \"850_l_1_c_1_2_3-0_1.42-1_0.08-2_0.39-3_0.34\", \"851_l_1_c_0_1_3-0_0.58-1_0.11-2_0.13-3_0.82\", \"852_l_1_c_0_2_3-0_0.04-1_0.14-2_0.28-3_0.04\", \"853_l_1_c_1_2_3-0_0.77-1_0.69-2_0.18-3_0.03\", \"854_l_1_c_0_1_3-0_1.39-1_0.07-2_0.17-3_0.19\", \"855_l_1_c_0_2_3-0_0.04-1_0.13-2_0.44-3_0.07\", \"856_l_1_c_1_2_3-0_2.19-1_0.03-2_0.01-3_0.19\", \"857_l_1_c_0_1_3-0_0.38-1_0.01-2_0.32-3_0.37\", \"858_l_1_c_0_2_3-0_0.37-1_0.18-2_0.6-3_0.58\", \"859_l_1_c_1_2_3-0_0.1-1_0.11-2_0.6-3_0.26\", \"860_l_1_c_0_1_3-0_0.4-1_0.01-2_0.42-3_0.08\", \"861_l_1_c_0_2_3-0_0.18-1_0.54-2_0.11-3_0.24\", \"862_l_1_c_1_2_3-0_0.75-1_0.33-2_0.2-3_0.83\", \"863_l_1_c_0_1_3-0_0.6-1_0.06-2_0.97-3_0.17\", \"864_l_1_c_0_2_3-0_0.19-1_0.49-2_0.37-3_0.17\", \"865_l_1_c_1_2_3-0_0.18-1_0.16-2_0.01-3_0.37\", \"866_l_1_c_0_1_3-0_0.18-1_0.23-2_0.39-3_0.36\", \"867_l_1_c_0_2_3-0_0.96-1_0.79-2_0.14-3_0.09\", \"868_l_1_c_1_2_3-0_0.59-1_0.04-2_0.27-3_0.74\", \"869_l_1_c_0_1_3-0_0.03-1_0.08-2_0.54-3_0.03\", \"870_l_1_c_0_2_3-0_0.45-1_0.05-2_0.15-3_0.24\", \"871_l_1_c_1_2_3-0_0.66-1_0.09-2_0.24-3_0.08\", \"872_l_1_c_0_1_3-0_1.55-1_0.18-2_0.17-3_0.35\", \"873_l_1_c_0_2_3-0_0.58-1_0.96-2_0.17-3_0.22\", \"874_l_1_c_1_2_3-0_0.37-1_0.63-2_0.42-3_0.31\", \"875_l_1_c_0_1_3-0_1.03-1_0.01-2_0.43-3_0.81\", \"876_l_1_c_0_2_3-0_0.03-1_0.21-2_0.29-3_1.09\", \"877_l_1_c_1_2_3-0_1.24-1_0.07-2_0.05-3_1.51\", \"878_l_1_c_0_1_3-0_0.28-1_0.26-2_0.92-3_0.44\", \"879_l_1_c_0_2_3-0_0.12-1_0.23-2_0.37-3_0.53\", \"880_l_1_c_1_2_3-0_0.44-1_0.52-2_0.35-3_0.07\", \"881_l_1_c_0_1_3-0_0.37-1_0.19-2_0.34-3_0.51\", \"882_l_1_c_0_2_3-0_0.46-1_0.35-2_0.36-3_0.0\", \"883_l_1_c_1_2_3-0_0.56-1_0.04-2_0.22-3_0.18\", \"884_l_1_c_0_1_3-0_0.9-1_0.1-2_0.01-3_0.57\", \"885_l_1_c_0_2_3-0_0.1-1_0.99-2_0.03-3_0.78\", \"886_l_1_c_1_2_3-0_0.77-1_0.15-2_0.16-3_0.17\", \"887_l_1_c_0_1_3-0_0.06-1_0.09-2_0.82-3_0.1\", \"888_l_1_c_0_2_3-0_0.64-1_0.69-2_0.0-3_0.67\", \"889_l_1_c_1_2_3-0_0.67-1_0.12-2_0.25-3_0.61\", \"890_l_1_c_0_1_3-0_0.31-1_0.07-2_0.64-3_0.16\", \"891_l_1_c_0_2_3-0_1.06-1_1.63-2_0.27-3_0.53\", \"892_l_1_c_1_2_3-0_2.27-1_0.26-2_0.25-3_0.39\", \"893_l_1_c_0_1_3-0_0.81-1_0.43-2_0.08-3_1.09\", \"894_l_1_c_0_2_3-0_0.05-1_0.3-2_0.14-3_0.52\", \"895_l_1_c_1_2_3-0_1.6-1_0.16-2_0.13-3_0.06\", \"896_l_1_c_0_1_3-0_0.62-1_0.07-2_0.02-3_0.26\", \"897_l_1_c_0_2_3-0_0.46-1_0.77-2_0.17-3_0.21\", \"898_l_1_c_1_2_3-0_1.35-1_0.03-2_0.62-3_1.39\", \"899_l_1_c_0_1_3-0_0.85-1_0.04-2_0.32-3_0.73\", \"900_l_1_c_0_2_3-0_0.7-1_0.31-2_0.0-3_0.08\", \"901_l_1_c_1_2_3-0_1.13-1_0.2-2_0.27-3_0.73\", \"902_l_1_c_0_1_3-0_0.47-1_0.14-2_0.02-3_0.28\", \"903_l_1_c_0_2_3-0_0.59-1_0.33-2_0.45-3_0.29\", \"904_l_1_c_1_2_3-0_1.03-1_0.62-2_0.47-3_0.1\", \"905_l_1_c_0_1_3-0_0.19-1_0.19-2_1.36-3_0.23\", \"906_l_1_c_0_2_3-0_0.61-1_0.01-2_0.08-3_0.92\", \"907_l_1_c_1_2_3-0_0.87-1_0.38-2_0.11-3_0.05\", \"908_l_1_c_0_1_3-0_0.76-1_0.2-2_0.05-3_0.08\", \"909_l_1_c_0_2_3-0_0.22-1_0.26-2_0.17-3_0.48\", \"910_l_1_c_1_2_3-0_0.19-1_0.08-2_0.05-3_1.63\", \"911_l_1_c_0_1_3-0_0.29-1_0.04-2_0.68-3_0.36\", \"912_l_1_c_0_2_3-0_0.18-1_0.26-2_0.5-3_0.52\", \"913_l_1_c_1_2_3-0_0.01-1_0.32-2_0.67-3_0.08\", \"914_l_1_c_0_1_3-0_0.35-1_0.13-2_0.74-3_0.68\", \"915_l_1_c_0_2_3-0_0.07-1_0.27-2_0.16-3_0.52\", \"916_l_1_c_1_2_3-0_0.24-1_0.26-2_0.09-3_0.2\", \"917_l_1_c_0_1_3-0_0.36-1_0.46-2_0.14-3_0.58\", \"918_l_1_c_0_2_3-0_0.99-1_0.73-2_0.65-3_0.03\", \"919_l_1_c_1_2_3-0_0.66-1_0.17-2_0.21-3_0.65\", \"920_l_1_c_0_1_3-0_0.1-1_0.34-2_0.13-3_0.52\", \"921_l_1_c_0_2_3-0_0.7-1_0.21-2_0.19-3_0.72\", \"922_l_1_c_1_2_3-0_0.28-1_0.19-2_0.13-3_0.04\", \"923_l_1_c_0_1_3-0_0.12-1_0.04-2_0.84-3_0.39\", \"924_l_1_c_0_2_3-0_1.07-1_0.16-2_0.09-3_0.05\", \"925_l_1_c_1_2_3-0_0.88-1_0.17-2_0.48-3_1.61\", \"926_l_1_c_0_1_3-0_0.99-1_0.12-2_1.32-3_0.07\", \"927_l_1_c_0_2_3-0_0.2-1_0.22-2_0.19-3_0.04\", \"928_l_1_c_1_2_3-0_1.84-1_0.33-2_0.08-3_0.35\", \"929_l_1_c_0_1_3-0_0.08-1_0.11-2_0.04-3_0.17\", \"930_l_1_c_2_3-0_1.09-1_0.6-2_0.17-3_1.01\", \"931_l_1_c_3-0_0.25-1_0.11-2_0.27-3_0.36\", \"932_l_1_c_3-0_0.65-1_1.06-2_0.38-3_1.03\", \"933_l_1_r-0_1.79-1_0.14-2_0.5-3_1.46\", \"934_l_1_r-0_0.48-1_0.47-2_0.33-3_0.68\", \"935_l_1_r-0_0.52-1_0.67-2_0.59-3_0.96\", \"936_l_1_r-0_1.43-1_0.68-2_0.03-3_0.49\", \"937_l_1_r-0_1.01-1_0.59-2_0.53-3_0.19\", \"938_l_1_r-0_0.11-1_0.71-2_0.32-3_0.88\", \"939_l_1_r-0_0.48-1_0.81-2_0.49-3_0.82\", \"940_l_1_r-0_0.44-1_1.08-2_0.54-3_1.36\", \"941_l_1_r-0_1.97-1_0.41-2_0.41-3_2.38\", \"942_l_1_r-0_0.18-1_0.25-2_0.08-3_0.25\", \"943_l_1_r-0_0.13-1_0.49-2_0.69-3_0.63\", \"944_l_1_r-0_0.63-1_0.9-2_0.2-3_0.77\", \"945_l_1_r-0_1.38-1_0.69-2_0.62-3_0.06\", \"946_l_1_r-0_1.43-1_0.83-2_0.24-3_1.68\", \"947_l_1_r-0_0.25-1_1.21-2_1.05-3_1.34\", \"948_l_1_r-0_0.21-1_0.31-2_1.09-3_1.14\", \"949_l_1_r-0_0.75-1_0.63-2_0.27-3_0.18\", \"950_l_1_r-0_1.44-1_0.2-2_0.19-3_0.15\", \"951_l_1_r-0_0.52-1_0.38-2_1.31-3_1.84\", \"952_l_1_r-0_0.06-1_0.5-2_0.04-3_0.37\", \"953_l_1_r-0_2.36-1_0.12-2_0.5-3_1.04\", \"954_l_1_r-0_0.28-1_0.18-2_0.71-3_0.85\", \"955_l_1_r-0_2.23-1_0.29-2_0.43-3_0.06\", \"956_l_1_r-0_0.08-1_0.04-2_0.09-3_0.83\", \"957_l_1_r-0_0.09-1_0.61-2_0.48-3_1.32\", \"958_l_1_r-0_2.86-1_0.06-2_1.06-3_0.73\", \"959_l_1_r-0_1.02-1_0.58-2_0.51-3_0.85\", \"960_l_1_r-0_0.73-1_0.4-2_0.47-3_0.54\", \"961_l_1_r-0_0.12-1_0.62-2_1.04-3_0.51\", \"962_l_1_r-0_0.74-1_0.06-2_0.52-3_0.04\", \"963_l_1_r-0_1.11-1_0.05-2_0.21-3_0.34\", \"964_l_1_r-0_0.36-1_0.31-2_1.11-3_1.7\", \"965_l_1_r-0_1.17-1_0.45-2_0.63-3_1.24\", \"966_l_1_r-0_0.51-1_0.56-2_0.39-3_0.31\", \"967_l_1_r-0_0.16-1_0.51-2_0.45-3_1.67\", \"968_l_1_r-0_0.23-1_0.22-2_1.08-3_0.77\", \"969_l_1_r-0_0.49-1_0.86-2_0.3-3_1.6\", \"970_l_1_r-0_1.5-1_0.76-2_0.17-3_0.56\", \"971_l_1_r-0_0.47-1_0.89-2_0.14-3_0.01\", \"972_l_1_r-0_0.93-1_0.4-2_0.83-3_1.14\", \"973_l_1_r-0_0.05-1_0.76-2_0.63-3_0.66\", \"974_l_1_r-0_0.29-1_0.61-2_0.27-3_2.31\", \"975_l_1_r-0_0.03-1_0.31-2_0.36-3_1.13\", \"976_l_1_r-0_0.45-1_0.47-2_0.08-3_0.55\", \"977_l_1_r-0_0.41-1_0.67-2_0.95-3_0.25\", \"978_l_1_r-0_0.4-1_0.43-2_0.72-3_0.93\", \"979_l_1_r-0_2.44-1_0.16-2_1.07-3_1.24\", \"980_l_1_r-0_1.82-1_1.23-2_1.28-3_0.79\", \"981_l_1_r-0_0.52-1_0.32-2_0.38-3_0.54\", \"982_l_1_r-0_0.13-1_0.09-2_0.1-3_1.07\", \"983_l_1_r-0_1.02-1_0.26-2_0.25-3_0.66\", \"984_l_1_r-0_0.07-1_0.4-2_0.8-3_2.37\", \"985_l_1_r-0_2.1-1_0.28-2_0.33-3_1.39\", \"986_l_1_r-0_0.08-1_0.62-2_0.87-3_1.56\", \"987_l_1_r-0_0.5-1_0.21-2_0.38-3_0.77\", \"988_l_1_r-0_0.35-1_0.9-2_0.76-3_0.09\", \"989_l_1_r-0_0.35-1_0.79-2_0.64-3_0.19\", \"990_l_1_r-0_1.96-1_0.37-2_0.59-3_0.9\", \"991_l_1_r-0_0.39-1_0.26-2_0.55-3_1.64\", \"992_l_1_r-0_1.41-1_0.77-2_0.94-3_2.11\", \"993_l_1_r-0_0.02-1_0.33-2_0.54-3_0.31\", \"994_l_1_r-0_0.19-1_0.29-2_1.49-3_0.44\", \"995_l_1_r-0_0.32-1_0.52-2_0.62-3_1.61\", \"996_l_1_r-0_0.67-1_1.58-2_0.17-3_1.19\", \"997_l_1_r-0_2.06-1_0.3-2_0.19-3_0.22\", \"998_l_1_r-0_0.12-1_0.9-2_1.05-3_1.46\", \"999_l_1_r-0_1.59-1_0.3-2_0.59-3_1.73\", \"1000_l_1_r-0_0.07-1_0.03-2_0.07-3_0.03\", \"1001_l_1_r-0_1.01-1_0.02-2_0.47-3_0.42\", \"1002_l_1_r-0_0.75-1_0.05-2_0.5-3_1.43\", \"1003_l_1_r-0_0.82-1_0.13-2_0.09-3_1.08\", \"1004_l_1_r-0_1.31-1_0.06-2_0.0-3_0.04\", \"1005_l_1_r-0_0.9-1_1.08-2_0.55-3_0.44\", \"1006_l_1_r-0_0.85-1_0.14-2_0.11-3_1.14\", \"1007_l_1_r-0_0.86-1_0.95-2_0.13-3_0.58\", \"1008_l_1_r-0_0.62-1_0.93-2_0.54-3_0.51\", \"1009_l_1_r-0_0.04-1_0.05-2_0.72-3_0.63\", \"1010_l_1_r-0_1.11-1_0.41-2_0.75-3_1.04\", \"1011_l_1_r-0_0.94-1_0.29-2_1.06-3_2.42\", \"1012_l_1_r-0_1.19-1_0.25-2_0.12-3_1.26\", \"1013_l_1_r-0_0.05-1_0.26-2_0.09-3_0.03\", \"1014_l_1_r-0_0.87-1_0.34-2_0.13-3_0.8\", \"1015_l_1_r-0_0.44-1_0.48-2_0.23-3_0.42\", \"1016_l_1_r-0_1.3-1_0.51-2_0.65-3_0.06\", \"1017_l_1_r-0_1.52-1_0.44-2_0.7-3_1.62\", \"1018_l_1_r-0_0.24-1_0.89-2_0.21-3_0.24\", \"1019_l_1_r-0_0.38-1_0.79-2_0.03-3_0.33\", \"1020_l_1_r-0_1.43-1_0.38-2_0.78-3_1.07\", \"1021_l_1_r-0_0.54-1_0.74-2_0.49-3_1.02\", \"1022_l_1_r-0_0.03-1_0.2-2_0.32-3_0.85\", \"1023_l_1_r-0_0.85-1_0.87-2_0.57-3_0.83\", \"1024_l_1_r-0_1.54-1_0.16-2_0.62-3_0.56\", \"1025_l_1_r-0_0.97-1_0.3-2_0.3-3_0.19\", \"1026_l_1_r-0_0.61-1_0.01-2_0.33-3_1.38\", \"1027_l_1_r-0_1.47-1_0.4-2_0.45-3_0.55\", \"1028_l_1_r-0_0.91-1_0.25-2_1.09-3_0.4\", \"1029_l_1_r-0_0.08-1_0.31-2_0.39-3_0.14\", \"1030_l_1_r-0_0.14-1_1.01-2_0.17-3_1.14\", \"1031_l_1_r-0_1.1-1_0.15-2_1.05-3_1.45\", \"1032_l_1_r-0_0.84-1_0.63-2_0.75-3_2.04\", \"1033_l_1_r-0_0.59-1_1.06-2_1.15-3_1.05\", \"1034_l_1_r-0_1.36-1_0.01-2_0.49-3_1.12\", \"1035_l_1_r-0_0.08-1_0.22-2_0.98-3_0.57\", \"1036_l_1_r-0_1.51-1_0.23-2_0.15-3_0.73\", \"1037_l_1_r-0_0.55-1_1.36-2_0.23-3_1.2\", \"1038_l_1_r-0_1.27-1_1.25-2_0.1-3_0.22\", \"1039_l_1_r-0_1.42-1_0.37-2_0.34-3_0.75\", \"1040_l_1_r-0_0.87-1_0.13-2_0.34-3_0.21\", \"1041_l_1_r-0_2.2-1_0.18-2_0.12-3_0.75\", \"1042_l_1_r-0_0.22-1_0.51-2_1.14-3_0.98\", \"1043_l_1_r-0_0.4-1_0.44-2_0.74-3_0.86\", \"1044_l_1_r-0_0.02-1_0.19-2_0.59-3_0.54\", \"1045_l_1_r-0_0.12-1_0.79-2_0.26-3_0.34\", \"1046_l_1_r-0_1.03-1_0.2-2_0.16-3_0.4\", \"1047_l_1_r-0_0.13-1_0.11-2_0.92-3_0.96\", \"1048_l_1_r-0_0.42-1_0.95-2_0.75-3_0.04\", \"1049_l_1_r-0_0.58-1_0.45-2_0.29-3_1.65\", \"1050_l_1_r-0_2.4-1_0.03-2_0.26-3_1.39\", \"1051_l_1_r-0_0.92-1_0.38-2_0.92-3_0.08\", \"1052_l_1_r-0_1.67-1_0.23-2_0.23-3_0.39\", \"1053_l_1_r-0_1.22-1_0.02-2_0.23-3_0.44\", \"1054_l_1_r-0_0.62-1_0.75-2_0.17-3_0.94\", \"1055_l_1_r-0_0.45-1_0.17-2_0.12-3_2.21\", \"1056_l_1_r-0_0.3-1_0.55-2_1.4-3_0.51\", \"1057_l_1_r-0_1.12-1_1.48-2_0.35-3_0.28\", \"1058_l_1_r-0_1.97-1_0.59-2_0.38-3_1.2\", \"1059_l_1_r-0_0.37-1_1.12-2_0.12-3_0.14\", \"1060_l_1_r-0_0.12-1_0.51-2_0.24-3_0.06\", \"1061_l_1_r-0_1.24-1_0.31-2_0.83-3_0.54\", \"1062_l_1_r-0_0.49-1_0.28-2_0.2-3_1.13\", \"1063_l_1_r-0_0.24-1_0.21-2_0.08-3_0.05\", \"1064_l_1_r-0_0.24-1_1.12-2_0.71-3_0.75\", \"1065_l_1_r-0_0.89-1_1.83-2_0.58-3_0.71\", \"1066_l_1_r-0_0.13-1_1.62-2_0.33-3_1.38\", \"1067_l_1_r-0_0.57-1_0.43-2_0.48-3_0.09\", \"1068_l_1_r-0_0.35-1_0.56-2_0.58-3_0.38\", \"1069_l_1_r-0_1.73-1_0.77-2_0.46-3_0.31\", \"1070_l_1_r-0_2.03-1_0.03-2_0.45-3_0.32\", \"1071_l_1_r-0_0.4-1_0.39-2_0.93-3_0.89\", \"1072_l_1_r-0_0.43-1_0.45-2_0.43-3_1.75\", \"1073_l_1_r-0_0.22-1_0.41-2_0.35-3_0.9\", \"1074_l_1_r-0_0.37-1_0.39-2_0.81-3_1.36\", \"1075_l_1_r-0_0.2-1_0.02-2_0.07-3_0.97\", \"1076_l_1_r-0_0.56-1_0.19-2_0.58-3_0.75\", \"1077_l_1_r-0_1.2-1_0.11-2_0.09-3_0.1\", \"1078_l_1_r-0_0.05-1_0.31-2_0.17-3_1.33\", \"1079_l_1_r-0_0.6-1_0.15-2_0.18-3_1.34\", \"1080_l_1_r-0_1.08-1_0.92-2_0.38-3_1.29\", \"1081_l_1_r-0_1.21-1_0.61-2_0.38-3_0.54\", \"1082_l_1_r-0_0.07-1_0.08-2_0.06-3_0.03\", \"1083_l_1_r-0_0.93-1_0.13-2_0.05-3_1.21\", \"1084_l_1_r-0_0.49-1_0.13-2_0.43-3_0.66\", \"1085_l_1_r-0_0.72-1_0.85-2_0.68-3_1.87\", \"1086_l_1_r-0_1.02-1_0.16-2_0.14-3_0.78\", \"1087_l_1_r-0_2.57-1_0.77-2_0.18-3_1.09\", \"1088_l_1_r-0_0.63-1_0.58-2_0.18-3_1.53\", \"1089_l_1_r-0_0.37-1_0.34-2_1.12-3_0.27\", \"1090_l_1_r-0_0.35-1_0.07-2_0.85-3_0.72\", \"1091_l_1_r-0_1.02-1_0.4-2_0.51-3_1.21\", \"1092_l_1_r-0_3.07-1_0.65-2_0.61-3_0.57\", \"1093_l_1_r-0_0.57-1_0.65-2_0.45-3_0.47\", \"1094_l_1_r-0_0.77-1_0.19-2_0.48-3_0.51\", \"1095_l_1_r-0_1.08-1_0.83-2_1.14-3_0.52\", \"1096_l_1_r-0_0.37-1_0.35-2_0.39-3_1.67\", \"1097_l_1_r-0_0.16-1_0.27-2_0.16-3_0.8\", \"1098_l_1_r-0_2.15-1_0.71-2_0.61-3_0.37\", \"1099_l_1_r-0_0.3-1_0.3-2_0.69-3_1.23\", \"1100_l_1_r-0_0.17-1_0.1-2_0.35-3_0.22\", \"1101_l_1_r-0_0.57-1_0.13-2_0.25-3_0.7\", \"1102_l_1_r-0_0.65-1_0.09-2_0.37-3_0.9\", \"1103_l_1_r-0_0.18-1_0.64-2_0.12-3_2.11\", \"1104_l_1_r-0_0.79-1_0.39-2_0.28-3_2.63\", \"1105_l_1_r-0_0.28-1_0.36-2_0.26-3_2.6\", \"1106_l_1_r-0_0.63-1_0.02-2_0.59-3_0.45\", \"1107_l_1_r-0_1.3-1_0.33-2_0.35-3_0.42\", \"1108_l_1_r-0_1.64-1_0.67-2_0.96-3_0.37\", \"1109_l_1_r-0_0.02-1_0.18-2_1.05-3_0.74\", \"1110_l_1_r-0_0.55-1_0.02-2_0.62-3_0.93\", \"1111_l_1_r-0_0.4-1_0.7-2_0.63-3_1.21\", \"1112_l_1_r-0_1.37-1_0.15-2_0.6-3_0.17\", \"1113_l_1_r-0_2.07-1_0.62-2_0.92-3_0.59\", \"1114_l_1_r-0_0.54-1_0.3-2_0.53-3_1.18\", \"1115_l_1_r-0_1.42-1_0.34-2_0.59-3_0.2\", \"1116_l_1_r-0_0.58-1_0.64-2_1.17-3_2.24\", \"1117_l_1_r-0_0.32-1_0.62-2_0.27-3_0.15\", \"1118_l_1_r-0_0.76-1_0.87-2_0.46-3_0.13\", \"1119_l_1_r-0_0.62-1_0.1-2_0.06-3_0.55\", \"1120_l_1_r-0_0.97-1_0.86-2_0.13-3_0.26\", \"1121_l_1_r-0_1.53-1_0.85-2_0.02-3_1.53\", \"1122_l_1_r-0_0.1-1_0.38-2_0.62-3_0.82\", \"1123_l_1_r-0_0.78-1_0.73-2_0.51-3_0.48\", \"1124_l_1_r-0_0.23-1_0.8-2_0.1-3_2.14\", \"1125_l_1_r-0_0.44-1_0.26-2_0.4-3_0.35\", \"1126_l_1_r-0_1.38-1_1.22-2_0.02-3_0.23\", \"1127_l_1_r-0_1.06-1_1.03-2_0.2-3_0.31\", \"1128_l_1_r-0_1.35-1_0.68-2_0.03-3_1.03\", \"1129_l_1_r-0_0.35-1_0.92-2_0.98-3_0.25\", \"1130_l_1_r-0_1.81-1_0.41-2_0.77-3_0.84\", \"1131_l_1_r-0_0.78-1_0.57-2_0.38-3_0.8\", \"1132_l_1_r-0_0.69-1_1.51-2_0.38-3_0.49\", \"1133_l_1_r-0_0.08-1_0.7-2_0.76-3_0.2\", \"1134_l_1_r-0_1.14-1_0.42-2_0.58-3_0.66\", \"1135_l_1_r-0_0.22-1_0.01-2_0.81-3_2.49\", \"1136_l_1_r-0_0.96-1_1.14-2_0.58-3_0.3\", \"1137_l_1_r-0_0.45-1_0.17-2_0.74-3_0.9\", \"1138_l_1_r-0_0.58-1_0.2-2_1.39-3_0.09\", \"1139_l_1_r-0_0.03-1_0.44-2_0.0-3_2.16\", \"1140_l_1_r-0_0.65-1_0.91-2_0.25-3_0.93\", \"1141_l_1_r-0_0.26-1_0.95-2_0.57-3_1.86\", \"1142_l_1_r-0_1.5-1_0.02-2_0.22-3_0.47\", \"1143_l_1_r-0_0.88-1_0.16-2_0.33-3_0.54\", \"1144_l_1_r-0_0.37-1_1.12-2_0.44-3_0.13\", \"1145_l_1_r-0_0.71-1_0.53-2_0.47-3_0.2\", \"1146_l_1_r-0_0.89-1_0.93-2_1.08-3_1.36\", \"1147_l_1_r-0_0.22-1_0.06-2_0.6-3_0.65\", \"1148_l_1_r-0_0.95-1_1.12-2_0.78-3_0.43\", \"1149_l_1_r-0_0.45-1_0.33-2_0.21-3_0.49\", \"1150_l_1_r-0_0.95-1_0.44-2_0.29-3_0.79\", \"1151_l_1_r-0_0.21-1_0.69-2_0.13-3_2.13\", \"1152_l_1_r-0_0.84-1_0.26-2_0.02-3_0.24\", \"1153_l_1_r-0_0.37-1_0.29-2_0.77-3_1.31\", \"1154_l_1_r-0_1.2-1_0.12-2_0.13-3_0.28\", \"1155_l_1_r-0_1.66-1_0.9-2_0.59-3_1.88\", \"1156_l_1_r-0_1.41-1_0.55-2_0.03-3_0.62\", \"1157_l_1_r-0_0.29-1_0.79-2_0.88-3_1.55\", \"1158_l_1_r-0_0.44-1_0.09-2_0.53-3_0.35\", \"1159_l_1_r-0_2.17-1_0.1-2_0.99-3_1.97\", \"1160_l_1_r-0_0.26-1_0.55-2_0.27-3_1.05\", \"1161_l_1_r-0_1.16-1_0.41-2_0.91-3_1.0\", \"1162_l_1_r-0_0.65-1_0.49-2_1.04-3_1.09\", \"1163_l_1_r-0_0.07-1_0.63-2_0.86-3_0.02\", \"1164_l_1_r-0_1.47-1_1.07-2_0.32-3_0.75\", \"1165_l_1_r-0_1.1-1_0.28-2_0.65-3_0.3\", \"1166_l_1_r-0_1.14-1_0.76-2_0.78-3_0.86\", \"1167_l_1_r-0_1.8-1_0.24-2_0.05-3_0.49\", \"1168_l_1_r-0_0.52-1_0.17-2_0.27-3_0.26\", \"1169_l_1_r-0_1.24-1_0.6-2_0.25-3_0.73\", \"1170_l_1_r-0_0.81-1_0.88-2_0.37-3_1.23\", \"1171_l_1_r-0_2.15-1_0.71-2_0.59-3_0.1\", \"1172_l_1_r-0_0.28-1_0.03-2_0.9-3_1.37\", \"1173_l_1_r-0_2.02-1_0.65-2_0.95-3_1.95\", \"1174_l_1_r-0_1.05-1_0.64-2_0.53-3_2.49\", \"1175_l_1_r-0_0.7-1_0.2-2_0.22-3_0.01\", \"1176_l_1_r-0_2.01-1_0.74-2_0.37-3_0.44\", \"1177_l_1_r-0_0.73-1_0.91-2_0.97-3_1.77\", \"1178_l_1_r-0_1.26-1_0.61-2_0.91-3_1.47\", \"1179_l_1_r-0_1.23-1_0.16-2_0.15-3_2.8\", \"1180_l_1_r-0_0.5-1_0.79-2_0.32-3_0.79\", \"1181_l_1_r-0_1.39-1_0.56-2_0.63-3_0.97\", \"1182_l_1_r-0_0.6-1_0.3-2_1.42-3_0.24\", \"1183_l_1_r-0_1.23-1_0.14-2_0.07-3_0.88\", \"1184_l_1_r-0_0.45-1_0.12-2_0.31-3_0.3\", \"1185_l_1_r-0_0.42-1_1.16-2_0.4-3_1.73\", \"1186_l_1_r-0_0.89-1_0.17-2_0.78-3_1.79\", \"1187_l_1_r-0_0.23-1_0.19-2_0.28-3_1.26\", \"1188_l_1_r-0_0.78-1_0.36-2_0.1-3_1.5\", \"1189_l_1_r-0_0.44-1_0.25-2_1.26-3_1.08\", \"1190_l_1_r-0_0.17-1_0.03-2_0.99-3_0.21\", \"1191_l_1_r-0_1.24-1_0.52-2_0.15-3_0.77\", \"1192_l_1_r-0_1.12-1_0.3-2_0.97-3_0.46\", \"1193_l_1_r-0_0.71-1_0.14-2_0.38-3_1.75\", \"1194_l_1_r-0_0.3-1_0.49-2_0.69-3_0.32\", \"1195_l_1_r-0_1.08-1_0.91-2_0.05-3_0.52\", \"1196_l_1_r-0_0.52-1_0.7-2_0.05-3_1.14\", \"1197_l_1_r-0_1.13-1_0.06-2_0.3-3_0.69\", \"1198_l_1_r-0_1.91-1_0.28-2_0.25-3_1.67\", \"1199_l_1_r-0_1.68-1_0.9-2_0.98-3_0.45\", \"1200_l_1_r-0_0.1-1_0.38-2_1.32-3_0.63\", \"1201_l_1_r-0_0.5-1_0.17-2_0.44-3_0.95\", \"1202_l_1_r-0_0.33-1_0.92-2_0.7-3_1.36\", \"1203_l_1_r-0_0.81-1_0.22-2_0.47-3_1.68\", \"1204_l_1_r-0_0.59-1_0.7-2_0.67-3_0.88\", \"1205_l_1_r-0_0.65-1_0.09-2_0.19-3_0.97\", \"1206_l_1_r-0_1.22-1_0.14-2_0.24-3_1.64\", \"1207_l_1_r-0_0.72-1_0.53-2_0.46-3_0.84\", \"1208_l_1_r-0_0.01-1_0.25-2_0.06-3_0.48\", \"1209_l_1_r-0_0.21-1_0.37-2_0.28-3_0.14\", \"1210_l_1_r-0_1.79-1_0.15-2_0.09-3_1.37\", \"1211_l_1_r-0_1.67-1_1.03-2_0.12-3_0.15\", \"1212_l_1_r-0_0.0-1_0.2-2_0.43-3_0.18\", \"1213_l_1_r-0_1.07-1_0.22-2_0.61-3_1.43\", \"1214_l_1_r-0_1.07-1_0.2-2_0.15-3_0.69\", \"1215_l_1_r-0_0.26-1_0.2-2_0.84-3_0.87\", \"1216_l_1_r-0_0.08-1_0.31-2_0.21-3_2.2\", \"1217_l_1_r-0_1.09-1_0.05-2_1.56-3_2.26\", \"1218_l_1_r-0_0.21-1_1.37-2_0.34-3_0.27\", \"1219_l_1_r-0_3.37-1_0.56-2_0.08-3_0.15\", \"1220_l_1_r-0_0.54-1_0.84-2_0.35-3_0.15\", \"1221_l_1_r-0_0.23-1_0.52-2_0.27-3_1.98\", \"1222_l_1_r-0_0.3-1_0.74-2_0.08-3_0.17\", \"1223_l_1_r-0_0.76-1_0.22-2_0.69-3_1.83\", \"1224_l_1_r-0_0.55-1_0.96-2_0.11-3_1.54\", \"1225_l_1_r-0_0.15-1_0.35-2_0.94-3_1.23\", \"1226_l_1_r-0_1.56-1_1.06-2_0.05-3_0.24\", \"1227_l_1_r-0_0.09-1_0.46-2_0.12-3_0.07\", \"1228_l_1_r-0_1.04-1_1.13-2_0.28-3_0.69\", \"1229_l_1_r-0_0.87-1_0.13-2_0.05-3_1.48\", \"1230_l_1_r-0_0.03-1_1.38-2_1.01-3_0.18\", \"1231_l_1_r-0_0.61-1_0.16-2_0.51-3_0.72\", \"1232_l_1_r-0_0.62-1_0.18-2_0.27-3_0.19\", \"1233_l_1_r-0_0.28-1_0.07-2_0.74-3_0.25\", \"1234_l_1_r-0_1.13-1_1.22-2_1.09-3_0.47\", \"1235_l_1_r-0_0.14-1_0.02-2_0.06-3_0.77\", \"1236_l_1_r-0_0.86-1_0.62-2_0.96-3_1.19\", \"1237_l_1_r-0_1.0-1_0.2-2_0.18-3_1.08\", \"1238_l_1_r-0_0.76-1_0.44-2_0.6-3_0.57\", \"1239_l_1_r-0_0.52-1_0.19-2_0.25-3_0.59\", \"1240_l_1_r-0_2.26-1_0.02-2_0.35-3_1.32\", \"1241_l_1_r-0_0.93-1_0.06-2_0.34-3_0.42\", \"1242_l_1_r-0_2.52-1_0.59-2_0.12-3_0.44\", \"1243_l_1_r-0_0.74-1_0.09-2_0.16-3_0.46\", \"1244_l_1_r-0_0.26-1_1.14-2_0.79-3_0.09\", \"1245_l_1_r-0_0.52-1_0.33-2_0.08-3_1.8\", \"1246_l_1_r-0_0.48-1_0.14-2_0.99-3_1.23\", \"1247_l_1_r-0_0.42-1_0.57-2_1.02-3_1.36\", \"1248_l_1_r-0_0.11-1_0.2-2_0.1-3_0.9\", \"1249_l_1_r-0_0.55-1_1.0-2_0.92-3_0.05\", \"1250_l_1_r-0_0.86-1_0.28-2_0.21-3_0.22\", \"1251_l_1_r-0_0.5-1_0.39-2_0.75-3_1.4\", \"1252_l_1_r-0_0.77-1_0.23-2_0.71-3_0.22\", \"1253_l_1_r-0_0.96-1_0.26-2_0.56-3_0.36\", \"1254_l_1_r-0_0.56-1_0.24-2_0.13-3_1.43\", \"1255_l_1_r-0_0.16-1_0.61-2_0.15-3_1.24\", \"1256_l_1_r-0_0.86-1_0.2-2_0.42-3_0.66\", \"1257_l_1_r-0_0.09-1_1.09-2_0.75-3_1.99\", \"1258_l_1_r-0_0.71-1_0.07-2_0.08-3_0.12\", \"1259_l_1_r-0_0.02-1_1.14-2_0.59-3_2.0\", \"1260_l_1_r-0_1.23-1_0.73-2_0.42-3_0.76\", \"1261_l_1_r-0_0.35-1_0.38-2_0.66-3_0.04\", \"1262_l_1_r-0_0.48-1_0.67-2_0.25-3_1.48\", \"1263_l_1_r-0_2.08-1_0.17-2_0.28-3_0.03\", \"1264_l_1_r-0_0.25-1_0.15-2_0.03-3_0.36\", \"1265_l_1_r-0_0.05-1_0.1-2_0.89-3_1.69\", \"1266_l_1_r-0_2.61-1_0.08-2_0.12-3_1.16\", \"1267_l_1_r-0_0.79-1_0.63-2_0.84-3_0.57\", \"1268_l_1_r-0_0.46-1_0.14-2_0.24-3_0.74\", \"1269_l_1_r-0_0.46-1_0.25-2_0.32-3_0.25\", \"1270_l_1_r-0_1.02-1_1.66-2_0.17-3_0.63\", \"1271_l_1_r-0_1.89-1_0.66-2_0.42-3_0.04\", \"1272_l_1_r-0_0.56-1_0.35-2_1.76-3_0.09\", \"1273_l_1_r-0_0.79-1_0.43-2_0.16-3_1.49\", \"1274_l_1_r-0_1.3-1_0.25-2_0.67-3_0.9\", \"1275_l_1_r-0_0.59-1_0.16-2_0.87-3_0.93\", \"1276_l_1_r-0_0.05-1_0.16-2_0.84-3_1.93\", \"1277_l_1_r-0_0.02-1_0.06-2_0.57-3_1.63\", \"1278_l_1_r-0_1.34-1_0.08-2_0.42-3_0.73\", \"1279_l_1_r-0_1.39-1_0.57-2_0.22-3_1.83\", \"1280_l_1_r-0_0.66-1_0.26-2_0.24-3_0.75\", \"1281_l_1_r-0_0.06-1_0.8-2_0.34-3_0.96\", \"1282_l_1_r-0_0.39-1_0.42-2_0.27-3_0.32\", \"1283_l_1_r-0_0.52-1_0.14-2_1.03-3_0.19\", \"1284_l_1_r-0_0.08-1_0.09-2_0.79-3_0.95\", \"1285_l_1_r-0_0.98-1_0.99-2_0.48-3_0.29\", \"1286_l_1_r-0_0.16-1_0.38-2_0.63-3_0.29\", \"1287_l_1_r-0_0.52-1_0.45-2_0.03-3_0.71\", \"1288_l_1_r-0_1.23-1_1.0-2_0.02-3_0.6\", \"1289_l_1_r-0_0.01-1_0.87-2_0.41-3_0.13\", \"1290_l_1_r-0_0.82-1_1.11-2_0.69-3_0.13\", \"1291_l_1_r-0_0.79-1_0.93-2_0.1-3_0.49\", \"1292_l_1_r-0_0.74-1_1.43-2_0.86-3_1.0\", \"1293_l_1_r-0_0.44-1_0.07-2_0.26-3_0.11\", \"1294_l_1_r-0_1.23-1_0.63-2_0.69-3_0.71\", \"1295_l_1_r-0_0.28-1_0.09-2_0.61-3_1.94\", \"1296_l_1_r-0_0.09-1_0.12-2_0.87-3_1.4\", \"1297_l_1_r-0_0.93-1_0.04-2_0.06-3_0.52\", \"1298_l_1_r-0_1.73-1_0.04-2_0.69-3_0.26\", \"1299_l_1_r-0_0.53-1_0.36-2_0.66-3_1.2\", \"1300_l_1_r-0_0.67-1_0.37-2_0.98-3_0.69\", \"1301_l_1_r-0_0.54-1_0.33-2_0.77-3_0.53\", \"1302_l_1_r-0_1.06-1_0.73-2_0.51-3_0.32\", \"1303_l_1_r-0_0.13-1_0.12-2_0.48-3_0.39\", \"1304_l_1_r-0_0.36-1_0.11-2_0.11-3_0.21\", \"1305_l_1_r-0_0.51-1_1.22-2_1.43-3_0.44\", \"1306_l_1_r-0_0.43-1_0.26-2_0.44-3_0.0\", \"1307_l_1_r-0_1.72-1_0.03-2_0.02-3_1.3\", \"1308_l_1_r-0_1.28-1_0.4-2_0.16-3_1.94\", \"1309_l_1_r-0_1.33-1_0.13-2_0.93-3_0.71\", \"1310_l_1_r-0_0.61-1_0.54-2_0.59-3_1.22\", \"1311_l_1_r-0_0.1-1_0.39-2_0.49-3_0.03\", \"1312_l_1_r-0_0.03-1_0.41-2_0.32-3_1.69\", \"1313_l_1_r-0_0.42-1_0.73-2_0.12-3_2.04\", \"1314_l_1_r-0_0.19-1_0.53-2_0.02-3_0.71\", \"1315_l_1_r-0_0.13-1_0.65-2_0.23-3_0.97\", \"1316_l_1_r-0_0.41-1_0.81-2_0.49-3_1.85\", \"1317_l_1_r-0_1.76-1_1.08-2_0.21-3_0.72\", \"1318_l_1_r-0_1.07-1_0.01-2_0.28-3_0.5\", \"1319_l_1_r-0_0.98-1_1.38-2_0.63-3_0.85\", \"1320_l_1_r-0_1.18-1_0.06-2_0.66-3_0.59\", \"1321_l_1_r-0_0.14-1_0.19-2_0.72-3_1.24\", \"1322_l_1_r-0_1.03-1_1.2-2_0.44-3_0.47\", \"1323_l_1_r-0_0.66-1_0.56-2_0.24-3_1.18\", \"1324_l_1_r-0_0.19-1_0.27-2_0.33-3_0.0\", \"1325_l_1_r-0_1.62-1_0.43-2_0.53-3_0.72\", \"1326_l_1_r-0_1.21-1_1.13-2_0.34-3_0.58\", \"1327_l_1_r-0_0.44-1_0.13-2_0.85-3_0.72\", \"1328_l_1_r-0_0.18-1_0.5-2_0.7-3_0.02\", \"1329_l_1_r-0_0.21-1_1.55-2_0.12-3_0.14\", \"1330_l_1_r-0_0.34-1_0.64-2_0.24-3_1.14\", \"1331_l_1_r-0_0.14-1_0.52-2_0.6-3_0.41\"], \"type\": \"scatter3d\", \"x\": [0.8649143860663394, -0.18561516388330423, 0.3247524616193127, -0.576374092605437, 1.2868436988520167, -0.6923126445278853, 0.6737016679032609, -0.0023043472794935767, -1.0804417872633327, 0.5185120663637975, 0.9282521224368149, -0.23241089785644362, -0.09216852703117172, 1.0067131982756412, 0.4930508770087504, -1.169751060305773, -0.21219598064811157, 1.0476371584084017, -0.6081932387170427, 0.2820907093847358, -0.6188041405669519, -2.4125438400702293, 0.16444463072420162, -2.19276615453289, 1.2985378450445337, -0.588608558419047, -0.1558499999167484, -0.21409850966310215, 0.22598226282796857, 0.7783535333917502, -1.0210070624727823, -0.35666106599979064, 0.5427146091451772, -1.8341574849226205, -0.46267806250385946, -2.816031226234192, 0.8716161449709328, -0.17545812231030417, 0.6353607042152863, 2.4678075412203224, -0.28433300424406077, -1.6308259199841264, 1.0445418964791378, -1.4605519390684083, 0.3598382660062799, -0.20497148083438946, 0.22354955561940545, -0.8434956972193371, -0.16117222474563825, 1.0268731755500633, 0.37696685847634614, -0.4476410879776551, -0.5141552559365313, -0.25224655879394975, -0.02086337381677755, 1.9418718288090524, -0.5567858648087975, 1.354158245343242, -0.38008465505430433, 1.976528169888219, -0.6461555125021493, 0.7084511144170467, 0.22976565018147618, 0.7125156545901346, -1.389140671496189, 2.298105135822346, -0.04588065748791901, -0.9277739476353776, 1.0120319117022778, -0.6661995234564249, 0.2443020410945617, -2.9883793434388686, -1.2012824852391826, 0.12388576544074453, -0.4466692554252137, -0.6089639760099069, -1.2620713848442044, -2.5213968041807986, 0.2602793020761772, -1.6936258141373368, -0.8237729268299738, -1.774537790361275, 0.8652079101117492, -2.804203002035723, -0.7973233310304929, -1.1516528719953234, -0.9845061587956208, -0.9460491427827261, 1.0996957878598423, 0.7207454894271841, -0.4609046975335797, -0.6000683490306878, -1.058394175354737, -0.38757992099114935, 0.4737503196571929, 0.365377252670894, -0.27566824100540166, -0.4965675737514528, 0.32690893885271316, 0.5032190482137295, 0.46836772581439223, 0.4873361094062391, -0.6520052847224695, -1.2557428616212594, 1.3358947017011853, 1.7074601820616726, 0.7634652105161218, -1.4283212709086495, 1.2785381372900197, -1.129881262544512, 0.8690101051106789, 1.4731282297389614, 0.47522137589686353, 1.02457576183809, -0.8592977630579791, -1.197155165655679, 0.6033767109302474, -0.5078491391288485, -1.1436254588952304, 1.28450431401755, 0.9955251337812699, 1.529417149392553, -0.22904796908322403, -1.0663033511272169, 0.6982417351835962, -2.219183103590407, 0.06669552452155264, 1.8829973805579265, -0.28249333218109074, 1.5380616452442963, -0.9790165829905668, -0.015848341442844444, 0.3006872638646095, 0.13977923483642601, 1.4426561819515582, 2.1893754666188006, -0.00923339946196143, 0.1754946150340025, -1.2015456882403832, 1.0191076257466232, -0.4610040119900241, 0.9386766640013652, 0.5621013247413452, -0.9037712014002905, -1.8523475090614412, -0.7212078920638365, -0.969613976613776, -0.4861048908695619, -0.5348374149353685, 0.42918995990920744, -0.4400565504921075, 0.27718539335601416, 0.4549279821792729, -0.4636595861991812, 0.7475839287114664, 1.2785942526393614, 0.2185569463113242, 1.2008063098710076, 0.3911939625210059, -0.5794049937356482, 1.2403912112479822, -0.23324104572732138, -0.7369182781695381, 0.4077399505404409, 0.23489815866685018, 1.287561225642641, -0.7153724015558396, 0.26583931813615924, -1.2014195783141797, -0.2839241726762393, 0.7076956569292523, 0.06132957999637528, 0.8106047464839773, 0.5443954367637632, -1.3987101607952066, 0.03879045502809341, 0.4856101302528512, 2.2556116524366208, 0.17607889015728595, 0.14175770160203152, 1.379862376184735, -0.3154251095615703, 0.47534577256239957, -2.9705265860412604, -0.9003112315296515, 0.5862050670784815, -0.5513777396109584, -0.7184954677037834, 1.1687623355238022, 1.0850124491512831, 1.1526695219317706, 0.30067766676470475, -0.9998535664832249, 0.31318443576220956, -0.02913505681941217, 0.5360692151924161, 0.3251349257762482, -0.05786019596599324, 1.3554066960185711, -0.16041073324764774, -1.2036900813534224, -1.2728535656371676, 0.242685439544347, -0.07789516662992334, -1.148821510026772, 0.6599155981414863, -0.7229726812812838, -0.9638234393632186, 0.627171753758912, 0.5210381846730313, 0.20559860561966162, -0.22555629083630446, 0.5150626981660957, -2.1873846800663026, -0.9508358274815731, 0.19384854070271676, -1.2453029957710513, -1.0057772425155382, 0.180876501427078, 1.5064591529917126, 1.1555882297464828, -0.5738527951252876, -1.4471056720181377, 0.42176894695291484, -0.32955048548626, -1.6567551883363056, 0.45402919162423444, -0.7635150158482231, -0.3027572303342955, 0.16350002510453102, -0.30762249059983227, -0.9708423369774101, 0.16911516945610605, 1.2459722649640215, 1.0025702292866485, -0.5150572734309941, -0.13596800673816614, -2.2658436609739763, 0.6316073378880958, -0.18863869758554677, -0.006350442969658526, -0.3801745092536959, 0.19959406787441633, 0.26115919902356766, -0.41132505575812545, 0.04182205320992321, -0.2648069078869624, -0.48323302546680136, -0.13115694138696662, 0.2653584134736783, 1.0615730019881005, 0.45947560798297715, 2.2218246952281744, 0.3462265055034698, -0.3393992743835827, -2.1929842962550747, 0.5676403476317582, 0.10799590175432135, 1.5459368308831638, 0.1743003959848218, 0.1204672695943384, -0.22412757765606367, 1.2086544318101502, 0.8677672472463253, 0.5985464541042723, -0.10855349504336678, -1.4427604200135493, -0.13877412563754382, 1.5527020672646146, 0.7919317790517953, 0.6772314443675419, -1.7941251881379503, -1.6665556646520872, -0.8124650066378881, 1.0773795289265735, 0.409717963135948, -2.238025579311688, -1.6091127805834906, -1.1117380371150458, -1.4178899349968244, -0.8288259341155005, 2.683396689800686, -2.7918894199901083, 0.6263360259206044, 0.20073786230643093, 0.3841015315334788, 0.5018802244326301, 2.3459447926411445, 0.1812959977006299, -0.9672049708962913, 0.7837829143624456, 1.434814918361322, -1.2521193629337022, 1.5214729894976178, -1.1226727161746552, 0.6182716676700285, 1.684097047198588, 0.05065947585040279, -0.30609111381953624, -0.6646993633309133, -0.5593785473492593, 0.5102239468933836, -1.924617877052289, 0.8600616459982308, 2.0934345312765785, 0.8979781319054866, 1.304892424811682, -1.2734136634022482, -1.9333969709279506, -1.7956686481902355, -1.7629549784524439, -0.8453243562375842, 0.4276549677836516, -0.8052793550387632, 2.225305474287158, 1.6946816650512582, 0.1396534925191556, -2.5229972336644804, -1.612887994715039, -2.152866556140534, -0.9181666074900735, -1.535997005526439, 1.8263823296027537, -1.5043166381252395, -0.36824748186160705, -2.1826404241285395, 1.305783658920201, -1.394257510408746, -2.1237992811991364, -0.5199323387463186, 1.7642276973633255, -1.7504894666975777, 0.8967974489966852, 0.522474360409472, -0.027019373063110027, -1.6006845775041691, 1.2787259726944664, -1.5241911471798335, -1.6444810489113022, 1.085415790414659, 1.387471759031209, -2.344229701550428, 2.3585494540791214, 0.04961244156008858, -1.3022599485463087, 1.413481233502089, 0.25486214102630333, -0.2619426124300499, -1.9060366741076145, -1.3919854938467937, -1.8195787393231628, 0.4357213156747867, -1.1566549345593653, -1.42296392868644, -1.1690891052046006, 1.236180194314113, 0.2037342135499455, -1.1689649730189204, -3.0160002562922195, -0.2992467145030965, 2.1731488693594594, -1.7825316772108717, -1.9685238893515076, 0.30968888835808206, -1.18976562811535, 1.0585443670330488, 0.6261954711008998, 1.0604801866760094, 0.007568717488486258, 2.156436648000088, -0.735052546306027, -1.3615579269637526, -2.188613066095526, 0.37407453052370016, 0.125814826883394, 1.6608295765275525, -0.512720075016566, 1.4969502323027177, 0.8240427159670948, 1.971534599296381, 2.5289278534968838, -2.0391960511504945, -2.3828110206855295, -1.4829683026221538, 1.4411811527964142, -1.4673319888133993, -1.765466667068032, 0.737151050000447, -0.7454732527378723, -1.1693401857004848, -0.7839501126743381, 1.4819709771923095, -1.3648449814526569, 1.5994629768687372, 0.5052545362658107, -0.3122643111726045, -0.48392156093627375, -0.21007571969524386, -1.5151383400381302, -2.537535519757246, 2.2578255477962856, 2.1307148658035433, 1.6562032045422475, -0.8186972880105282, -0.39014536664655214, -1.8539214624812363, 0.7104811484833785, -2.081981028896874, 2.5850386285445097, 1.3201659344303258, 0.4309685816276184, -0.662633540756058, -0.30747914772637625, -0.28537805600045757, -3.145786963088538, -0.8834138126060298, 0.24191150198829833, 0.13069908743745337, -0.5645011859670488, 0.8733958675968077, -0.6255298573067989, -0.7797095095059013, 0.5768766960812859, -1.3756195834723177, -0.0691050309793827, -2.1597389289294378, -0.861106335774575, -2.9536689898584405, -0.1935786327384653, 0.8286788814973071, -0.3508758355104536, 0.26630330415637465, -1.7363300980907175, 0.30432180482905385, 0.9086798363962894, 1.730197142680856, -2.335948078205228, -1.754983681883418, -1.9824044741982394, 0.35984156386772126, 1.563214229046434, -2.1082575129373247, -1.9433077909147929, 0.1758565325678893, 0.023759097904990957, 0.9096268032590965, -0.1472383748266604, 2.4517624728247, -2.9951965827455496, -1.7787295796498195, -1.2703785206403573, -1.044594135774546, 1.67249927811679, 0.6564565367738974, -2.9212884753676036, -0.8507164056927352, 0.9895863680268727, 1.855384181315002, 0.803421359111101, -2.880959389765134, -1.4402120325402858, 1.029585139213987, 0.8310052386102502, -0.9579686528837472, 0.4111918490907633, 0.5662145825041836, -1.7136569974099487, -2.111942925272924, -1.4975345158617164, -0.020008340663830084, 1.1447250116608862, 1.1221332352458748, 1.4417873585506662, -1.0458680046495246, -1.4480031009189562, 0.9500930914737372, -0.5633639689068997, -1.4743666882398279, -1.706781620362887, -1.345569919116309, -0.9336894193002118, -1.531033032311038, -1.5545530278548592, 0.5299532467708395, -1.7317409312859935, -1.7567709647058838, 0.8230290080269906, -0.28613289542068154, 0.12478871211932407, -0.8967188880921978, 2.1248396652178343, 2.4292682706559297, 2.1297307570676627, -0.10116008489507698, 1.4031423571182695, -0.4310923979011529, -0.49198968821211814, 2.2368673215069976, -1.0673890119438871, 1.78820446930211, 1.3413319231455572, -3.01188403142578, 0.16962950187848871, -0.6007959193455528, -1.4850115721611863, 1.1363055949774392, 0.034441565343584814, -0.6494590581298276, 1.856505518677621, 1.7308682371824478, -0.7441567706592468, -1.351082456343028, 1.9838627433338871, 0.5416886504694208, 1.6622386456478855, -1.3468248808158942, 0.30421819913089826, -0.6381081263761176, -1.9790484222499658, -2.8205421712429355, -0.7744449490099221, -1.4072182524915449, -1.5799453864924846, -1.8023646135276588, -0.03327373161568249, -0.5173042632023179, -0.3036308023547187, 0.14476646641408364, -1.85790324898805, -1.2480204203252754, 2.631994779535393, 2.0184631976520664, 1.2633104106750606, -1.9956821650712473, 1.8231875028243876, 1.8933197924797802, -1.1884536086001534, -2.2864625900164843, -0.7953730592174542, 0.20977120496153914, 0.4453231720464696, 0.5554692947054023, 0.25335729842927157, -1.913886521785534, 0.14634683279953653, -2.3358380893842625, -1.2161409180549543, 0.22164509029509546, 0.381830148101308, 0.19769882988060378, 0.3100665871396145, 0.05204415315093551, -1.9655081157450491, 0.7070703886191003, -0.844394377128568, 0.5162492904292771, -0.7360411229871725, 1.4059545750679263, 1.6146833418085738, 0.34990050073475903, 1.4052515461126414, 1.4577083364212915, 1.9711345773382953, 1.6277705554015933, 1.6167526659244207, -0.15755084980214454, 0.17624319839669916, 0.8099627246184149, -2.0105606377610425, -0.023242122427084518, 0.6224365042272584, -1.848192138156601, -2.2217610725357035, 1.4852041391472, 0.02233164168357506, 0.06184446204123516, 0.5943276340182434, -0.08851723306055173, 1.1427803956982352, -1.6450044415706864, 1.2434663898476235, -0.6190558314875189, 0.20581099808274708, 0.9972140469152825, -0.27894322196920446, 0.39138781078372725, -1.981946708148291, 0.26080226293819414, 0.24327463648316566, 0.6105798812437561, 1.2469526631834178, -1.0884110236558644, 2.620101910118596, 1.3461164069226548, -1.867547548435479, 0.37804495721571924, 1.3451898533170639, -0.17252491860861774, 0.14893001549396964, 0.5559826793036646, -0.08096920397397546, 0.6335614786822458, -0.14112161458704597, 0.25454732310285855, 1.8549473284285065, 1.6159807275690217, 1.652715286354982, 0.430294222209306, 1.0850306471546654, 0.2717790793281559, -0.16178071600768162, -1.3100184416079355, 0.08288352524358325, 2.002088651464114, 0.26267327617858166, -1.3289185208989753, -1.5166819404048524, -1.3493773114130514, 1.6279975650552434, 1.648068633618013, 1.2860730697662595, 0.765701499798806, -1.251465858708416, 1.1837949882814254, 1.412382869447803, -0.9349488828494825, 1.43077007630124, -0.06526131276769835, 0.6307759787814847, -0.8693308542226048, -2.8345192925121903, -0.037384710207059274, -0.03683360061991501, 1.260654487072926, 0.3722836926912376, 1.274202591567072, 0.7326691679208431, -2.2312862221842176, -0.10564680397826434, 1.5900909427346577, -0.25567240474119984, -1.857631790859629, -1.820932486668359, -0.7096066967079985, -2.329461860540219, -0.38535511564528785, -1.0799730659932596, 2.3412631745412553, 1.083517281899239, 0.920354359828427, 1.2117863931773414, 1.2443421535501342, -2.1785070290077746, 2.723750689496253, 2.0540226247864593, -0.7668459223579516, 2.1220946288972646, 0.5595252048972467, -0.2682989515529871, -1.9949439098218227, 1.1681395981532636, 2.361076258317138, 1.602989050389912, 1.5526748594909734, 0.6358956868572705, 2.2108303793457647], \"y\": [0.38139957152747855, -0.1368818060960698, 0.5254353853471031, 0.2724372358284521, -0.5421571366624871, -0.009001171691843432, -0.031080646016454234, -0.00714668715657939, 0.36396140579018305, -0.952227173283164, 1.0875851640277043, -0.60408459230156, 1.07265396234021, 0.3170473342592891, -0.5636430819897061, -0.034592827088742194, 1.0451617303247425, 0.6768187554265597, -0.06950515809738829, 0.5757238443895873, -0.22355742106313953, 0.1932937681797074, -1.224472802651723, -1.034729799468132, 0.10363883501803194, -1.5444756166628608, -0.8320658435363724, -1.0355853850438896, 0.28634394897802096, -1.7998676480962839, -0.4653798096814183, 0.9874592379898127, -0.5776015866912975, 0.5096047709404521, -0.30868657683456874, -0.5376370031005868, -0.20189094050853862, 0.5102601220086379, 0.8194902078548937, 1.0085592754668093, 1.0524372022473139, 0.728355851568599, -0.4796716252643382, -2.061877201666369, 0.1225710670626521, 1.6730340219787128, 0.8073698177435115, 0.2352018461707023, 1.265995179034145, 0.5016755203171902, 0.8879038970738188, 1.415624905562728, -0.4954829843679829, 1.7677135427744448, -0.06491669720205066, 0.13914158212953004, -0.46732092838845896, 0.6402413635039695, -0.49675359198649655, 1.8747473082635733, 0.010773521296269541, 2.057997591208131, 0.030580980691694674, -2.380854206897169, 0.13682777801253537, 0.7483609126458672, 0.07069609359217884, 2.351157308550583, 0.0455115557617655, 1.1887418840905275, 0.2105328010148335, -0.25834792400257595, -0.5348517827521306, 0.4971415200624095, 0.11264498813704538, -2.196206803973503, -0.6351395044960261, 2.4383057167595954, 0.6684781017647574, 0.013350850517179958, -1.034396746800853, 1.8376786508696046, 0.428259359674603, -1.3770850630643752, -0.49703027122270826, -1.6784799075698251, -0.6018299965251105, -0.3668028013132197, -0.10956353391176683, -1.9025402885588063, 0.9099600740730598, -0.2681029099873366, -0.08740239699648789, 0.6517937183729818, 0.2782852627824355, 1.7183324378248392, 0.01241382774586443, 0.5994037858333487, 0.14439300565544563, -0.09176585883235439, 1.3270575020568218, 1.9404765001369446, 0.28840825300349604, 0.9735942551033899, 0.5634670688846845, 1.1248030022718392, -0.9071570708450831, 0.08037021212309378, -0.226424507774883, 0.9393497642719606, -0.2120216656223991, -2.630494943019857, -0.41327750701908744, -1.3326802341172126, 0.3393624904512818, 2.1498220777546435, -0.6439692343650947, 0.9071821140197662, 0.5890496296834942, -1.7363812926620676, -0.26918972708278643, -0.7246956152079502, -0.2756578915050074, -0.731115825304735, -0.44373282258120134, 0.7685823421979829, -0.5654328170434144, -0.02262890195769714, 0.9624536508648842, -0.7144652027458566, -0.03247685167148275, 1.9059619506778367, 0.0005886999091628698, 1.8954724667933216, -0.16610431673601755, -1.4909260022431667, -0.49337325201526727, -2.224570738545101, 0.26561251865293894, -0.420421720835849, 1.3191637635851594, 1.0884457885075594, 0.44815245548031574, -0.6194713195403423, 0.46948524546272424, 0.7225400779775876, -0.12516206603415453, 1.2056784540305632, -0.2685018539783037, -1.129731221716473, 1.8743046450783551, -0.8720861493248729, -0.45286475515552216, 0.2516859870175957, -0.137093524089568, -0.1839276231806173, 1.8770157784678876, 0.22622073772162393, 0.3866993292856248, -2.230296713808308, -0.470452631621191, 1.427082700067049, -1.1196786603225881, 0.2797259410127121, 0.9676026860162198, -1.520228437356648, 0.3888639250423398, -0.69685810150911, -1.4813120492157825, 0.9089372128810785, -0.837476544666413, -1.6293490530630481, 0.9051239724656798, 0.8967519329634233, 0.20103103487984303, -0.31624299986986293, 0.10000764926826623, 0.5819291542971096, -0.3679627922410202, -0.8461299382171632, 0.03577583430100052, -0.43311467147166194, -0.3895013081031599, -0.19055114080326085, -0.928585503890402, -0.10951906329083758, 0.14136321717545247, 0.6864995326902986, -0.07061262807440032, 0.1318249931191118, -0.2239942959293608, 0.009975830695804837, 0.17624598952429046, -0.337268350625844, 0.014285617017484434, -1.4111786563754967, -0.6733494162725959, 0.15437006640267945, 0.8071368096389548, -0.4767050471174574, -0.2283368119412908, -0.7883198133584621, -0.1093095100951168, -0.7167604628519603, 2.1922191041513934, 0.08548947575706202, 0.17857994987498033, -1.4240049543506146, 0.6740614920479944, -0.8133776276528298, 1.180252187815042, -0.612252698921283, -1.3800201936622722, -0.2277020636070531, 0.9442792682626336, 0.2822160240793815, -0.35270971610188145, 0.12666416434189937, -0.6551311901917972, -0.9858641970370225, 0.15173867339989272, 1.0742236147421125, -0.9607545280610709, 0.6184730659122917, 1.3849745820717074, -1.8566585819120776, 0.3743889202905102, -0.4332370635390537, -1.7440288379423856, 0.33967217641598346, -1.2034468747467437, 0.7652658528817581, -0.03412530333336121, 0.03967133308481759, -0.31137939199766534, -0.474558398998765, 1.2958222370970784, 0.3329039290598858, 0.6197797709511131, 0.32692350943588855, 1.4053082985851917, -0.46107891026759124, -0.5896454778682525, -2.734446595770858, -0.7857397870203926, 1.2629325085110177, 2.1154757354306892, 0.3180584338036289, -0.6712300400733078, 0.9928137449270948, 0.6849980720040636, 0.6234676193638934, -0.72806030696538, 0.39624117606686876, 0.5021463936719779, 0.9087329112480003, 0.8663428795266652, 0.04335562350733334, -0.16464425964894447, -0.7647803716525049, -0.12429878278394835, -1.1965540417608127, 0.32641527495431344, -1.2042178632392984, -0.6592072222661266, -1.2481811514633172, 1.1663947173166516, -1.8320064498631217, -1.2516101042348313, 1.6842202252981702, -1.1510719491411812, -0.593830529900336, -1.0145908517728093, -2.3319597834343404, -2.423037574216818, -1.7768545786520022, -1.8836581062221476, -0.4876245380319349, 0.8977829812414241, -0.689854619226826, -1.6386027818398363, -1.4624980599487354, -0.3092479491788329, -0.6658604190114429, -1.6194864139458223, -1.1858265612595542, 1.3612486388100973, 0.8688450780421579, 1.5372395985686245, -0.29149114474719795, -1.8081919443216579, 2.025557598077856, -0.062030004383957664, 0.5838272942940773, 2.459435854381648, -2.114689433678073, 0.7309076332448021, -0.49826881338831364, -0.6380288380912772, 1.9865666843503147, -1.5526130128103441, 0.5379949067747318, -0.6635274745295611, -1.999440728509746, 0.7561754127043369, 0.8922117790655363, -1.4549778925097623, -0.7624436247102727, 1.053972668570143, 0.6550641646870211, -0.47049399894233385, 0.6724941123206752, 1.8016502299758528, -0.16203797294328948, 1.2310505233090734, -1.4855503770433514, 0.08768696689559394, 0.9102171940792224, -0.41102388295561904, 0.2834453015525038, 0.6187781834237354, 0.2097143302830058, 0.8982583665259803, -1.6450801935011214, 1.1869411287251088, -0.9446504678293203, -0.773445768124312, -1.6914451091074727, 0.7960689909558398, 2.054239571549969, -2.13084117526071, -0.29846810718904065, -1.8431605253207657, 0.29832820079640937, 1.008008061102247, 0.024247179429223206, 0.046536839829739184, 1.6152650745155719, 0.09999450486248848, -1.401744605735237, -0.865205049543075, 0.9454333989578112, -0.930827337604811, 0.31493029185062976, 1.2612966203219549, 1.5939891304113278, 1.223119455848915, 0.5299798937509439, 0.6414113437754059, -0.484225602825074, -0.5138147567024679, 2.4143426281022347, 1.663348797680476, -2.1723758694142346, 0.37640392081604, 0.7351801689094423, 2.0881396812199546, -1.414241820265967, -1.5463444837544513, -1.102203091297828, 1.3058173973545997, 1.779305244490429, 0.25425869297149006, -0.6967460722199723, -1.0097955927603417, 1.7150022248562413, -1.3373323257989165, -1.2689878818336122, -0.11725511544701499, 1.3892653865786797, -1.3013970573020064, -2.102772290037464, -1.3876432931744302, 2.441423918946873, -0.6258892640359611, 0.17764080012146394, -1.5466499107087233, -0.4353842009761665, 0.1946941275873327, 1.0321228175762311, -0.21897270179970188, 0.23215137033708153, -0.9464328906997075, 0.8201357390142134, -0.993872259403578, 1.058555505549635, 1.5327209083449582, -0.022910032935136132, 0.983276174733566, 0.16754864804307124, 1.3948328608573548, 1.5923580347294244, -0.5922099808462856, 1.1192575364750255, -2.1482611204490745, -1.6199700964094466, 2.032294570675316, -2.205247370093956, -1.15976052768628, -1.9274137958724855, 1.6206842804959438, -0.4347816891332411, -1.0240451558688128, 1.9687408437358913, -1.6660687703801818, -1.570944109172155, -0.4493722658139537, -1.481817435332841, 0.3869224824426962, -0.020533044709368155, -0.18525229771659282, 0.10915694532639675, -1.707124079530275, -0.15272724672073518, 0.9246482052394767, 1.2825753241432216, -0.08406572540954442, 2.5398365582873015, 0.12817133790529486, -0.8529937239988, -0.16217666096712668, -0.7686249513406768, -1.378089319693918, 0.3386286955675544, 2.4824754719629523, -0.3972009255342342, -2.4359017529900275, -0.6467207733131752, -2.2486258379946173, -1.6455413617830807, -2.0672239289593803, 2.105311165599756, -1.2624873995598558, 1.848511879553251, -1.7847598455681073, 0.1253206035742252, -0.8343216118171977, 2.1227810383247943, 0.3892838513109147, -0.8185510081184574, 0.015421663402746602, 0.7593995064981051, 2.6585179917881407, 1.8776313419925763, 1.3124536192356202, 0.6973840009925846, 0.3900902540588095, 1.0663605446704703, 0.30265297775752253, -1.0257506506109746, 0.6440539438205819, 1.4858976606336425, -0.8697721534165149, -1.5283783756626168, -0.856419115405751, -1.9491750487412034, -0.3814349603009082, -1.2340115258276143, 1.1239141488813498, 0.2629507080068059, 1.2206281918819402, 1.5308345991087609, 0.6840142758137348, -0.9171887358049554, -2.0017725504043646, 1.4346685356513258, -1.505442341660206, 0.7000207903732534, 0.41993711398912703, 2.382579874822282, 1.1636408815447992, -0.17061027900625345, 0.9591282278934888, 0.4397107361555013, -0.9082950889608863, -1.5350968286317714, 0.016118977251256317, 0.32764621841340263, -1.624921260860858, -2.1253368210423536, 1.2795570426785081, 0.21993478305871983, -2.1477491600460517, 1.673243059508886, 0.4430151413123005, -1.0159312576601174, -1.3524942372039122, -0.9837992038407619, -3.051694091737324, 1.0549961670270513, -1.6272887614091307, 0.7858198400795797, 1.8084518735955049, 1.440644308108642, 0.5452157099543821, -0.414289619007284, 1.4224920268461863, -0.63225218889538, -1.1065172206665672, 0.2751096565785279, -0.7575406721151988, 0.2443817834794329, -2.154968941684519, 2.123929021041526, 0.8832491080478975, -2.950666734087143, 1.2457470876164636, 0.8681227920079984, -0.6439618365138043, 0.2049724104246174, 1.6004206939215269, -1.965741967239349, -0.6138714192858016, 2.260578791212188, 0.7901738326745092, 0.5575943084102409, -0.795542654946449, 1.549767177325161, -0.12059010519542607, 1.1632940027320955, -0.17149382011410214, -1.7281076125662498, 1.3207526679771224, 1.0899459146232686, -0.07140653721091027, -1.2168486253252657, 1.4633794582070279, 2.2787916256015968, -0.48778872150674224, 1.4164563077557377, 1.1845630776402192, -0.7256103745838757, 2.0106225136453935, 1.356776707551039, -0.3825133290125374, 0.9167549273300205, 0.9433070214495917, -0.7231697037298663, -0.7019000498326501, 0.09296537387806267, -0.14426516739922537, 1.684677650700739, 2.256026027418863, -0.36626192150740666, -1.5629907536396455, -1.0263817640128563, 1.752442623521612, 2.2289610569668463, -0.20180245821638854, -1.3523912161687728, -0.7785745997280255, -2.9409353294199607, 1.3687818824209406, 0.562053284655064, -1.1008541443210407, 0.6580586368232202, -2.4073548071593334, 0.21702462530493172, 0.9574560562214354, 1.5698482224169403, 1.0603847382574356, 0.46226150821542034, -1.6113881911919221, 0.13074936206306143, 1.3769580934200067, 1.5734557666298497, 1.952855481600769, 2.1634487152503104, -1.224021951786363, 1.4572870241738027, 0.8594789822653572, -0.2010892922674337, 0.5456112209730023, -0.1887416261692718, -1.4685657986885996, -0.6464508261507513, 2.4258276502742127, 1.3757522604703305, 1.349436608501498, -0.3349449224823565, 0.1381188021045271, -1.2551166195522332, -0.1981203781337343, -1.270581320781238, 1.5397995891093508, -2.2529122048251344, 0.22995499190475766, 1.1703546402036888, 2.380047064172851, -2.473927369961402, 0.20320614939727139, -1.3639120012241184, -0.06700949822984159, 1.3983384530900702, -2.250488464713575, 1.4290983422339887, 1.5023089552825137, 1.6349850500166556, 1.57995192505491, -1.405431184174676, 0.35601362693019056, 1.2241847288772154, 1.3929051602689282, -2.2114557224899904, 1.6626908294656784, 0.658071208961353, -0.3484249735318879, 2.044894393754657, 0.2471108518970496, 1.6793482538421292, -1.1830268291825567, -0.06422497481365089, 0.32232716704965375, -0.5669050202698407, 1.0215351262009271, 0.8042122826158769, -1.6584839212660023, 0.14228904723926858, 0.08618058893447074, 0.9902687339010154, 0.3781447735336628, -2.0367380566966236, 1.0128885730415094, 1.8806659082300508, -1.111032759938666, -1.4220667232874278, -1.572206364503812, 2.204040168719046, -0.7032990114418548, 1.9108748300827714, 1.2920481041665695, 0.36322840787200067, 2.1813695215009, -0.3600749608217485, 1.5979085797097141, -0.33077701358773404, -2.8358509562998977, -1.4887102992474637, 1.832306580485643, 1.215320537219126, 0.6044187838141938, -0.031867717964604976, -1.3987295330748744, -2.1042759210596222, -0.5360635432141957, 2.4628774243092226, -1.1806347321340394, 1.4173026447332313, -1.0830530901379514, -1.467565636786915, -0.8110142957743595, 1.0783857339159755, 0.2605135128707983, 1.3798866055391192, -0.5936716395531093, -0.18540613967960062, 1.19704230032408, -1.225924723794115, -2.2496938161614195, 1.1433570323600568, 2.6658686077397125, -0.12637171238154513, -0.5035045348054519, -1.5679287375374538, 2.534454424146265, -1.2733341942418084], \"z\": [-0.3255848834866313, 0.02460866034353304, -0.25721011330255156, 0.21215714079121528, -0.01756342904910383, 0.616776809182989, -1.1001304033306685, -0.0034082801855338436, -0.15098711395100317, -0.12671845479906574, 0.1707741613739296, -0.035915936705467964, -0.24761588397471007, -0.7781264731569333, -0.9186135801801024, 0.8333987315922892, 0.9151600833487806, -0.29816342117194644, -0.07941622493053521, 0.630911238760226, -1.0535977959236158, 0.318270694189058, -0.8278598777092242, -1.46324665361829, 0.11478061783241886, -0.601966469590018, -0.9879281895227918, 1.178098054007906, -1.1934705416043898, 0.5242632807768661, 0.982424118726375, -1.7518996090162857, 1.0201239838229452, -0.9300847870562938, 1.0407461125140949, 0.45236558946182187, 0.1240311069664557, 1.4856674718123302, -0.6613233300592478, 0.1536191107180311, 0.8881623278512332, -1.5239224723378628, 0.5981049959843465, -1.2333489942625455, -0.6761668567433545, 1.5439707863565941, 0.8100357314139252, 2.1666737696529714, -0.7277899957740132, 1.5674746321533237, -0.2931049229075643, 0.36137801259613705, 0.1420675758947649, 0.12458625659373132, -0.2250017083459636, -0.9578701097780049, 0.6717301798493805, 0.16867817390574602, -0.27313331630049725, -0.6124603779302866, 0.8985339066464516, 0.11528015033155144, -0.33410972057556865, 0.3002253624247842, 0.11582174776134777, -0.11462517350095248, 0.6840453386898306, -0.6272564946289568, 0.9229183889833915, 1.3972808277336697, 0.13168712627870635, 1.2362775844467466, 0.025570679786231877, 1.8829237554497686, -0.15647616104437306, 0.7079313558369209, -0.011475813624462497, 0.3495935143345822, -0.06592897157819755, -1.3852092977279251, 0.09329369106083239, -1.3773320109044684, 0.6881620969357045, -0.11180509569390787, -1.062553827138937, -0.822437494874744, -0.2422354323327491, 1.3598896516593828, -0.19286487475464642, -0.5706518168534039, -1.0045298908223586, 2.576956685834514, 0.8525968729047819, 1.895910847984188, -0.27662989105378943, 0.6253063498566314, 1.4324998576349823, -2.035685580502705, -0.7327523609008704, 2.0169855922941022, 0.2859014676786682, -0.11181629561874178, 0.7086289524051272, 0.16398398945500037, 0.26916940365316416, 1.0238939550845447, -0.8527412515242075, -1.0465773330918098, 0.25053011078372384, -0.31946244480817076, 0.4935936020842533, 0.09885424330609939, -0.7193750756676606, -1.0733143200340463, -0.51335701818207, 0.1071614120541321, 0.8564362901241607, 2.1332775520289546, -0.46822910631992914, 0.9523132308958233, 0.1664321217095445, 1.228842786131392, -0.9239625758076151, 1.4898841633666315, -0.6655327336350206, 0.05920137078521251, 0.5131393417202735, 0.8565780730780337, -0.6088186164340215, -0.38354276642704177, -0.19049085087195108, -0.3644326211476751, 0.8557269920586976, 0.24342238113412576, -0.29103742738504684, 0.03244109531772605, 0.579881974868748, 0.4923237617010938, 0.8499304148822793, -1.3527761672123353, 0.035997217858394506, -1.5777720580198822, -0.8344825521430888, -0.33156825180676586, 0.4498532412648393, -0.06716841023029313, 0.45938811175735045, -2.6346673059629975, 0.041185143587342175, -0.04344143773519218, -0.825508276558616, 0.44954697492100876, -0.8004913131545065, -1.4898412623974897, 1.1052304334379637, 0.4489201029169051, -0.33442593984920016, -0.3942064287641757, 0.3508374577954646, -0.2798220763078555, -0.6585214858493188, -0.05750718885574774, 0.7536577685520585, -0.2207879875791853, -0.8159778197943099, -1.639173813659054, -0.41305385183411936, -1.1494296803610968, -0.5501397017972866, 0.10565759149563698, -0.5659871909440048, 0.2513912709053566, -0.545487812903205, 0.5517852645417073, 2.330299172015449, -0.10663692097436081, 1.1590697302313429, 0.6684359337990987, 1.2437933999890727, 0.260998045166469, -1.411207187071552, 1.276158224716768, -0.18114908685101525, -1.7847102497570293, 0.07576595593667597, 1.3121860805681063, -2.8205391172924252, 0.8730136536949468, 0.7764293774460895, 2.6580529124877974, -0.028454033333646683, -0.7048917469013829, 1.389662459584434, 0.10789186422096651, -0.025211771981631128, -1.4245020079608797, -0.46244234621337055, -1.364542336112046, 0.4938122049099954, 0.6359154255947441, 0.5622822578036284, -1.7514886569470003, 0.037485199676636605, 1.2681709587269776, 0.053716630151464086, 1.2526979045005164, 1.0360864906091194, 1.140676135977698, 0.8489780473291553, -0.01054749287487481, 2.484180764944931, 0.06843399290796187, 0.25527418228401233, -1.7005004069450156, 0.5224423342315556, -0.23121577729109147, -1.462053393548604, 0.04104356280539635, -0.0964161740392957, 1.1622321896381334, -0.17176256210867444, 0.09100852199569387, -0.6889136383168569, -0.12352873600609839, -0.06985112183544656, 1.6317601809497249, 0.25844930378751013, -1.1742473378273464, 0.49308507725677114, -1.1877490814354394, 0.07063166614879916, 1.6442341337153827, 1.4180738576184986, 0.1813870432080136, 1.3237452196862132, 0.20082313859790782, -0.663332440437881, -1.9150601166272754, 0.9486113336239471, 0.29013232474566314, -1.4958049292146451, -0.6099596406246319, -0.6046458843448153, -1.4476196334588673, -0.08406452628980203, -0.3955027645804827, -1.2579414006940783, -1.082059413682114, -0.5452231775370965, -1.777054304228861, 0.2624057581542379, 0.5020711817901605, 0.9579715405417312, -0.16936083999271684, -0.7550296512152369, 0.21481681343698716, -0.187429539488182, 0.8910123602885663, -0.8322727797457585, -0.8375069880887361, -1.2368385941189612, -0.9703021326816242, 0.40655278143768087, -0.11241562505153199, 2.0770360809642243, -2.0120599484058066, 1.0550149802125812, 0.4194726655255623, -0.47059377586879503, -0.6668505543755231, -1.2086740494249322, -2.1865011743582654, -0.7095695533324015, -2.0377675155440107, -1.852072428373978, 2.145008008707614, 0.2466423186721153, 0.6858987133530188, 0.9594498234834997, 0.7986922096772381, -1.3257070525555432, -1.2146758589450914, 1.0552291282557902, 1.6452621282351176, 0.35486599245933925, 1.475575131895099, 1.3479993619653345, 0.12289576845867067, -1.8756714050746441, 1.9072556573455917, -0.03548079220145464, 0.6123616778249589, -1.9223867179244367, 0.5835108403002798, 0.40090082177998587, -1.290959782599135, 0.06199690332193132, 2.001277393308874, 1.368851359752252, -0.4526282101204357, -2.668094811949232, -1.7479281880502922, 0.22143764754215184, 2.095291268119331, -1.5281102775819335, -1.008043960588919, -0.3996113529487636, -1.7214663245298611, 0.6108571068090265, -0.3102791339643011, -0.6101702309109499, 1.389102636802206, 1.7133177323774926, 1.837496710707359, -2.123105124457924, -0.3195709916979725, 2.5197204115658414, 0.26209414795803276, -0.3956634404181522, -1.4981485029598653, -1.6110800796270948, -1.188582413800023, 2.47611583105723, -0.7944619672379489, 1.3200685807387018, 0.26231204734725555, -1.18130665170747, 0.33196848560204806, 0.29153205922792375, 0.5970938001330213, 1.575704731350984, -1.0307763993272432, -1.4376696823823614, 2.41164914274673, -1.1473806886818692, 1.0853919103505478, -2.5705506453823905, 0.13007469431025678, -0.05982379498001818, -1.083753507494012, 0.14069835808380865, -1.2603476986684385, -1.4532485612429775, -1.5520325865731435, 0.40893219820194865, 0.2888223903747029, 1.622789860934698, 1.3822974311276792, -0.34359757482968584, -1.1844848428779498, -2.2444002012010857, -0.7189645807479024, -0.8922105834525504, -0.7935407288869814, 1.6795354785206642, -0.9835462597165697, -0.22631429700541933, 0.8666061639622656, -0.15731072742263005, -1.2257378549854483, 0.010632531399545203, 0.39847120838141376, -0.28986837051185665, 1.6586917341443603, 1.1158845501843406, 0.1530554643587672, -3.0991034557179233, -1.589810737967455, 1.6749573720982942, -0.22021272830827157, -0.2319912150642039, 2.142581455203042, 1.2479844538725875, -0.5130619739450876, -1.502288802920714, 1.5687616560364266, -0.6065760991865251, 0.5487616847760309, 3.1583869840645944, -0.7948753503560964, 0.19760661490691114, -0.10619240919964072, -1.3510926901827325, -0.44762811317021095, 0.027677273859593766, -0.3848962114822647, 0.2250465251094125, 2.014023153352324, 2.272881001911196, 1.4939325564926875, 0.549730552545228, -1.6984854223300994, -2.657486542412343, -1.6521754612014783, 0.5552102014307884, -1.8339553666693915, -0.27699143606734156, -1.2498395421463457, 1.124992663525331, 1.8263595297902535, 1.8277143985831361, 1.1882845593585112, 0.5624240669835918, -0.7691425684338838, -0.02702407511160812, -0.39349461957245496, -2.794826734429504, 0.4077328021700481, 0.9790238833393933, -1.0781003992660267, -2.4091736757067186, 3.460343909917442, -1.4794724483137458, 1.5908291278906943, -1.3067324862593077, -0.6085462182943961, 1.9427281651357469, -1.2333674791027585, 1.8181529821238651, 0.9618474954012901, -1.6236865681476256, -1.7570167271738968, 0.6266373034075966, 0.9680648189082464, 0.4258527384724856, 0.5042929940167885, 0.6545860289594695, -1.371425619327465, 0.5863183891770505, -1.1081224048866916, 2.1126168784390864, -0.5994205278304758, -0.7133016018129895, 0.8939525348948969, 0.0995984859036626, 0.2867241758767067, 0.0883204979965584, -0.641331199965715, 1.0893431172250863, -1.301664143001175, 1.1611420237278083, -0.33261220676264464, -0.673148174199451, -0.34152850781455857, 3.201487647859877, 1.8783757803837613, 2.6159710588078005, 0.622769860562803, 0.4547248353898825, 0.3386193589874078, -2.4480364516924005, 0.6202528627412639, -2.7577195609814056, 0.09792101867525607, 1.2731165461626919, -1.041033781407843, -1.1966187134178832, -0.7329741789870828, 1.5221479738335408, -1.147357591609048, 1.7359034353943013, 1.1941387679470488, 1.4886101377625744, 1.7225421244968653, -1.700971033667388, -1.1609628035532185, -1.604626304708119, 1.6874081979150948, -1.3896733276920088, 0.009713755235684197, 2.1080727094893463, 1.113642307635351, -0.20292590545273315, 1.897283556341226, 1.0413839362048087, -1.006113923108601, -2.2242420572562724, 0.16443232817538714, -1.119689301876908, -0.5323919483979379, -1.8553971990706033, 0.05601451663194755, 1.1163815563501303, -0.32810651293956805, -0.4448063291606464, -0.6917730879875446, -0.26328509794356014, -1.479941406291532, -1.5222453137357146, -1.6388769684900106, 0.5468773256631153, 1.743359586038148, 0.08746008808615709, 0.5170995264107977, -1.1253995784773905, 1.8318594022336887, -2.017146375610753, -2.1542016026790654, -1.4184337408828358, 0.38718459127149696, -1.1115434279102379, 0.3058822058333688, -0.9582796597937888, 0.6956310953670407, 1.2704032540051549, 0.711921155392626, -1.5353303498252475, 2.0874112118860046, 0.9166206012998555, -1.4499789501230862, 0.9642837185251789, -0.9136208084520843, 0.9864157198059411, 0.15873117627940417, 2.4274428457232977, -0.7094327574694749, -1.9733314283858394, -0.14172222835041365, 1.7419042712694859, 1.182954893510363, 1.3475302622276588, 0.1887966325645444, -0.3604643280842154, -0.2521813595337348, -1.814579459538151, 1.0163591793297835, -1.4550214624213627, -1.44220395116031, -0.5898242544721892, 0.9124616985261941, -0.7028058162022303, 0.05957652278209448, 0.2794121833555091, -0.8984255488224272, 1.6101649636343758, 0.16597008559085424, -0.922614519997443, 0.217638317829035, -1.155573058068131, 1.6588874058326293, 2.9985945357061663, -0.5347284830960095, 0.9087626362492107, 2.3435520924847335, -1.1368417937920472, -1.4447727824191956, 0.19613270731690705, -0.9176749287994355, 1.4845568817358317, 1.2649822895183815, -1.7126654453091588, 0.7898267849290332, -1.728240989091742, 1.882500877561496, 2.1167607721630017, -2.3356684564700716, 0.9230692675522303, -2.4258083059174647, 2.049084002803128, -0.759548247654144, 1.4656062978187152, -1.2856611198210868, 1.1343347082716386, 0.7236776444748416, -1.5151978148659992, 1.2354888518418519, -0.3403273200330459, 0.06796807458053984, -1.8823630882395266, -1.842314057641085, 1.0935695818158433, -0.5959779554787505, 0.436268966192123, -1.6548918929237932, 2.132758054136255, 1.5367267824923294, 2.1673913410561685, 0.6101584170910328, 1.1938838876630147, -0.892606327478849, -1.1749135343968524, -0.5703974611912773, -1.632193521900137, -1.8023042901428896, -0.5947917695373629, 0.7650369851350141, 0.9353354244638458, 1.0184634275459967, 0.5423391186402139, -1.9080128300511165, -0.839954397271974, -1.3825875717380476, 1.2590643745541492, 1.1432073015412654, 0.7286234443924419, -0.3825706484668096, -0.6678988240661469, 0.9615025026368886, -2.990124294225579, 0.10285019119977613, -2.369434355170138, 1.7109681391192662, -1.0414569133610196, 0.48102804301065527, -1.76707169320187, 1.5209682761817875, 0.6437663168787879, 2.3508761354517222, -1.629803767209825, -0.15607634319978475, -1.7612725347142897, -2.6154437847924545, 1.9755284632338617, 0.944965338027824, -1.3969102162293374, 1.0284821596823275, -0.4163855169351085, -1.265306908656208, 1.0484741245394553, -1.372423377588776, 0.9690191114357768, 0.4509215299092526, -0.999296178860169, 0.8696231359164095, 2.0960991792962687, -2.0414250225028048, 2.776645411563586, -0.4486771120940557, -1.504303481220846, 0.09483481540282333, 0.1200185570166435, -2.1301808695446987, 1.1017321152610982, 0.9965758916047807, -0.4313118074913877, 2.6765836425057206, 1.2415991667829098, 0.11788220183224478, 1.2421698176837963, 1.236258171663729, 2.016576293066961, 0.9285509220730273, 0.3995503942240236, -0.12672534355354245, 1.382303700669314, -1.6223215547142273, -0.4095307971097184, -0.7307220564971425, 0.5274258947403967, 0.6547610396138386, 1.0527430033671161, -2.450822791112722, -0.007399593411905737, 2.0196797849401857, -0.057597780656111076, 2.651998899130683, -2.192750060584908, 1.1419141829292205, 1.1424584714266224, -0.42883929876551674, 1.1317217861568427, 1.8139724690248504, 1.5405077312234794, -1.7882596167628437, 0.969688771185321, 0.5211194329381564]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 2\", \"marker\": {\"color\": \"rgb(44, 160, 44)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 2\", \"scene\": \"scene2\", \"showlegend\": false, \"text\": [\"1332_l_2_m-0_0.18-1_0.04-2_0.09-3_0.22\", \"1333_l_2_m-0_0.77-1_0.05-2_0.68-3_0.39\", \"1334_l_2_m-0_0.15-1_0.04-2_0.0-3_0.79\", \"1335_l_2_m-0_0.99-1_0.14-2_0.05-3_0.18\", \"1336_l_2_m-0_0.78-1_0.05-2_0.09-3_0.61\", \"1337_l_2_m-0_0.26-1_0.07-2_0.04-3_0.11\", \"1338_l_2_c_0_1_3-0_0.4-1_0.0-2_0.19-3_1.04\", \"1339_l_2_c_0_2_3-0_1.71-1_0.96-2_0.32-3_1.33\", \"1340_l_2_c_1_2_3-0_0.84-1_0.58-2_0.1-3_0.1\", \"1341_l_2_c_0_1_3-0_0.05-1_0.29-2_0.02-3_0.17\", \"1342_l_2_c_0_2_3-0_1.46-1_0.66-2_0.97-3_0.4\", \"1343_l_2_c_1_2_3-0_1.61-1_0.16-2_0.36-3_0.05\", \"1344_l_2_c_0_1_3-0_0.27-1_0.42-2_0.04-3_0.02\", \"1345_l_2_c_0_2_3-0_0.95-1_0.44-2_0.06-3_0.27\", \"1346_l_2_c_1_2_3-0_0.56-1_0.07-2_0.28-3_0.52\", \"1347_l_2_c_0_1_3-0_0.2-1_0.0-2_0.8-3_1.41\", \"1348_l_2_c_0_2_3-0_0.44-1_1.31-2_0.22-3_0.36\", \"1349_l_2_c_1_2_3-0_1.56-1_0.16-2_0.25-3_0.42\", \"1350_l_2_c_0_1_3-0_0.49-1_0.18-2_0.28-3_0.01\", \"1351_l_2_c_0_2_3-0_0.58-1_0.38-2_1.02-3_0.65\", \"1352_l_2_c_1_2_3-0_1.38-1_0.01-2_0.0-3_0.31\", \"1353_l_2_c_0_1_3-0_0.04-1_0.15-2_0.03-3_0.13\", \"1354_l_2_c_0_2_3-0_0.64-1_1.22-2_0.58-3_0.31\", \"1355_l_2_c_1_2_3-0_0.84-1_0.01-2_0.11-3_1.01\", \"1356_l_2_c_0_1_3-0_1.21-1_0.02-2_1.51-3_0.4\", \"1357_l_2_c_0_2_3-0_0.13-1_0.23-2_0.18-3_0.01\", \"1358_l_2_c_1_2_3-0_0.33-1_0.2-2_0.06-3_1.12\", \"1359_l_2_c_0_1_3-0_0.42-1_0.15-2_1.31-3_0.3\", \"1360_l_2_c_0_2_3-0_0.87-1_2.48-2_0.05-3_0.11\", \"1361_l_2_c_1_2_3-0_0.48-1_0.54-2_0.01-3_1.25\", \"1362_l_2_c_0_1_3-0_0.83-1_0.72-2_0.27-3_0.92\", \"1363_l_2_c_0_2_3-0_1.13-1_2.54-2_0.13-3_0.12\", \"1364_l_2_c_1_2_3-0_0.03-1_0.29-2_0.25-3_0.37\", \"1365_l_2_c_0_1_3-0_0.47-1_0.49-2_1.18-3_1.36\", \"1366_l_2_c_0_2_3-0_0.21-1_0.43-2_0.63-3_0.18\", \"1367_l_2_c_1_2_3-0_0.37-1_0.27-2_0.61-3_0.1\", \"1368_l_2_c_0_1_3-0_0.09-1_0.72-2_2.0-3_0.14\", \"1369_l_2_c_0_2_3-0_0.3-1_1.66-2_0.6-3_0.97\", \"1370_l_2_c_1_2_3-0_0.71-1_0.02-2_0.48-3_0.5\", \"1371_l_2_c_0_1_2-0_0.21-1_0.08-2_0.83-3_0.12\", \"1372_l_2_c_0_1_3-0_0.86-1_0.7-2_1.01-3_0.13\", \"1373_l_2_c_0_2_3-0_0.14-1_1.54-2_0.05-3_0.79\", \"1374_l_2_c_1_2_3-0_1.08-1_0.11-2_0.01-3_0.2\", \"1375_l_2_c_0_1_2-0_1.53-1_0.46-2_0.34-3_0.94\", \"1376_l_2_c_0_1_3-0_1.53-1_0.25-2_0.7-3_0.5\", \"1377_l_2_c_0_2_3-0_0.15-1_0.08-2_0.0-3_0.5\", \"1378_l_2_c_1_2_3-0_1.7-1_0.69-2_0.34-3_0.14\", \"1379_l_2_c_0_1_2-0_0.52-1_1.04-2_0.09-3_0.6\", \"1380_l_2_c_0_1_3-0_0.04-1_0.22-2_0.48-3_0.61\", \"1381_l_2_c_0_2_3-0_0.1-1_0.58-2_0.24-3_0.56\", \"1382_l_2_c_1_2_3-0_0.62-1_0.04-2_0.37-3_0.09\", \"1383_l_2_c_0_1_2-0_0.24-1_0.34-2_0.15-3_0.36\", \"1384_l_2_c_0_1_3-0_0.01-1_0.38-2_1.0-3_1.15\", \"1385_l_2_c_0_2_3-0_0.12-1_0.16-2_0.0-3_0.21\", \"1386_l_2_c_1_2_3-0_1.01-1_0.6-2_0.01-3_0.56\", \"1387_l_2_c_0_1_2-0_0.31-1_0.01-2_0.43-3_1.32\", \"1388_l_2_c_0_1_3-0_0.06-1_0.23-2_1.64-3_1.16\", \"1389_l_2_c_0_2_3-0_0.1-1_0.25-2_0.15-3_0.74\", \"1390_l_2_c_1_2_3-0_0.88-1_0.22-2_0.64-3_0.34\", \"1391_l_2_c_0_1_2-0_0.69-1_0.57-2_0.86-3_0.98\", \"1392_l_2_c_0_1_3-0_0.26-1_0.25-2_0.9-3_0.82\", \"1393_l_2_c_0_2_3-0_0.55-1_0.73-2_0.28-3_0.46\", \"1394_l_2_c_1_2_3-0_0.79-1_0.14-2_1.21-3_0.3\", \"1395_l_2_c_0_1_2-0_1.25-1_0.0-2_0.23-3_1.01\", \"1396_l_2_c_0_1_3-0_1.23-1_0.68-2_0.04-3_0.66\", \"1397_l_2_c_0_2_3-0_0.26-1_0.02-2_0.16-3_0.12\", \"1398_l_2_c_1_2_3-0_0.65-1_0.78-2_0.37-3_0.0\", \"1399_l_2_c_0_1_2-0_0.35-1_0.07-2_0.01-3_0.85\", \"1400_l_2_c_0_1_3-0_0.3-1_0.03-2_0.18-3_0.59\", \"1401_l_2_c_0_2_3-0_0.31-1_0.5-2_0.27-3_0.12\", \"1402_l_2_c_1_2_3-0_1.06-1_0.05-2_0.12-3_0.82\", \"1403_l_2_c_0_1_2-0_1.11-1_0.78-2_0.48-3_0.36\", \"1404_l_2_c_0_1_3-0_0.5-1_0.3-2_0.97-3_0.72\", \"1405_l_2_c_0_2_3-0_0.69-1_0.49-2_0.04-3_0.29\", \"1406_l_2_c_1_2_3-0_1.93-1_0.36-2_0.29-3_0.1\", \"1407_l_2_c_0_1_2-0_0.01-1_0.3-2_0.57-3_0.11\", \"1408_l_2_c_0_1_3-0_0.28-1_0.22-2_2.11-3_0.5\", \"1409_l_2_c_0_2_3-0_0.63-1_0.69-2_0.1-3_0.74\", \"1410_l_2_c_1_2_3-0_2.88-1_0.39-2_0.4-3_0.56\", \"1411_l_2_c_0_1_2-0_0.12-1_0.05-2_0.52-3_0.9\", \"1412_l_2_c_0_1_3-0_0.68-1_0.44-2_1.1-3_0.81\", \"1413_l_2_c_0_2_3-0_0.13-1_0.26-2_0.51-3_0.01\", \"1414_l_2_c_1_2_3-0_1.59-1_0.66-2_0.02-3_0.29\", \"1415_l_2_c_0_1_2-0_0.31-1_0.44-2_0.42-3_0.1\", \"1416_l_2_c_0_1_3-0_0.83-1_0.37-2_0.61-3_0.22\", \"1417_l_2_c_0_2_3-0_0.53-1_0.08-2_0.02-3_0.44\", \"1418_l_2_c_1_2_3-0_0.95-1_0.3-2_0.49-3_0.94\", \"1419_l_2_c_0_1_2-0_0.98-1_0.08-2_0.03-3_0.5\", \"1420_l_2_c_0_1_3-0_1.69-1_0.28-2_0.51-3_0.74\", \"1421_l_2_c_0_2_3-0_0.03-1_1.73-2_0.44-3_0.05\", \"1422_l_2_c_1_2_3-0_0.45-1_0.52-2_0.06-3_1.21\", \"1423_l_2_c_0_1_2-0_0.24-1_0.17-2_0.59-3_0.7\", \"1424_l_2_c_0_1_3-0_0.47-1_0.34-2_0.86-3_0.13\", \"1425_l_2_c_0_2_3-0_0.08-1_1.14-2_0.23-3_1.52\", \"1426_l_2_c_1_2_3-0_1.58-1_0.24-2_0.6-3_0.34\", \"1427_l_2_c_0_1_2-0_0.4-1_0.7-2_0.02-3_1.82\", \"1428_l_2_c_0_1_3-0_0.28-1_0.66-2_1.9-3_0.72\", \"1429_l_2_c_0_2_3-0_1.08-1_0.59-2_0.16-3_0.56\", \"1430_l_2_c_1_2_3-0_0.25-1_0.14-2_0.19-3_0.44\", \"1431_l_2_c_0_1_2-0_0.39-1_0.2-2_0.13-3_0.46\", \"1432_l_2_c_0_1_3-0_0.14-1_0.02-2_1.53-3_0.29\", \"1433_l_2_c_0_2_3-0_0.03-1_0.95-2_0.23-3_0.13\", \"1434_l_2_c_1_2_3-0_0.68-1_0.77-2_0.18-3_0.71\", \"1435_l_2_c_0_1_2-0_1.93-1_0.06-2_0.26-3_2.7\", \"1436_l_2_c_0_1_3-0_0.97-1_0.01-2_0.48-3_0.1\", \"1437_l_2_c_0_2_3-0_0.68-1_0.33-2_0.11-3_0.49\", \"1438_l_2_c_1_2_3-0_0.94-1_0.12-2_0.53-3_0.32\", \"1439_l_2_c_0_1_2-0_0.04-1_0.28-2_0.76-3_0.05\", \"1440_l_2_c_0_1_3-0_0.09-1_0.42-2_1.05-3_0.55\", \"1441_l_2_c_0_2_3-0_1.74-1_0.96-2_0.48-3_0.06\", \"1442_l_2_c_1_2_3-0_1.08-1_0.52-2_0.67-3_0.56\", \"1443_l_2_c_0_1_2-0_0.26-1_0.42-2_0.1-3_0.6\", \"1444_l_2_c_0_1_3-0_1.52-1_0.52-2_0.35-3_0.55\", \"1445_l_2_c_0_2_3-0_0.37-1_1.21-2_0.63-3_0.04\", \"1446_l_2_c_1_2_3-0_0.55-1_0.19-2_0.6-3_0.97\", \"1447_l_2_c_0_1_2-0_0.18-1_0.07-2_0.41-3_1.25\", \"1448_l_2_c_0_1_3-0_0.6-1_0.08-2_0.6-3_0.47\", \"1449_l_2_c_0_2_3-0_0.38-1_0.54-2_0.39-3_0.03\", \"1450_l_2_c_1_2_3-0_0.9-1_0.04-2_0.48-3_0.5\", \"1451_l_2_c_0_1_2-0_0.19-1_0.1-2_0.65-3_0.29\", \"1452_l_2_c_0_1_3-0_0.94-1_0.02-2_0.46-3_0.21\", \"1453_l_2_c_0_2_3-0_1.23-1_1.51-2_0.12-3_0.91\", \"1454_l_2_c_1_2_3-0_0.35-1_0.16-2_0.26-3_0.46\", \"1455_l_2_c_0_1_2-0_0.12-1_0.06-2_0.01-3_1.16\", \"1456_l_2_c_0_1_3-0_0.12-1_0.26-2_0.31-3_0.36\", \"1457_l_2_c_0_2_3-0_0.05-1_1.61-2_0.04-3_0.1\", \"1458_l_2_c_1_2_3-0_0.8-1_0.54-2_0.21-3_1.15\", \"1459_l_2_c_0_1_2-0_0.96-1_0.45-2_0.35-3_0.2\", \"1460_l_2_c_0_1_3-0_0.82-1_0.02-2_1.89-3_0.06\", \"1461_l_2_c_0_2_3-0_0.06-1_1.02-2_0.55-3_0.09\", \"1462_l_2_c_1_2_3-0_1.31-1_0.31-2_0.04-3_1.15\", \"1463_l_2_c_0_1_2-0_0.66-1_0.12-2_0.57-3_0.66\", \"1464_l_2_c_0_1_3-0_1.76-1_0.16-2_3.53-3_0.01\", \"1465_l_2_c_0_2_3-0_0.29-1_2.01-2_0.09-3_0.21\", \"1466_l_2_c_1_2_3-0_0.6-1_0.03-2_0.05-3_0.47\", \"1467_l_2_c_0_1_2-0_0.37-1_0.3-2_0.01-3_1.47\", \"1468_l_2_c_0_1_3-0_0.24-1_0.05-2_0.26-3_0.18\", \"1469_l_2_c_0_2_3-0_0.01-1_1.33-2_0.0-3_0.24\", \"1470_l_2_c_1_2_3-0_0.27-1_0.01-2_0.01-3_0.14\", \"1471_l_2_c_0_1_2-0_0.16-1_0.03-2_0.22-3_0.4\", \"1472_l_2_c_0_1_3-0_0.81-1_0.27-2_0.66-3_0.98\", \"1473_l_2_c_0_2_3-0_0.2-1_0.09-2_0.17-3_0.22\", \"1474_l_2_c_1_2_3-0_0.02-1_0.92-2_0.0-3_0.09\", \"1475_l_2_c_0_1_2-0_0.61-1_0.14-2_0.23-3_1.28\", \"1476_l_2_c_0_1_3-0_0.42-1_0.77-2_1.54-3_1.54\", \"1477_l_2_c_0_2_3-0_0.47-1_0.2-2_0.03-3_0.39\", \"1478_l_2_c_1_2_3-0_0.62-1_0.14-2_0.01-3_0.74\", \"1479_l_2_c_0_1_2-0_0.53-1_0.2-2_0.19-3_0.4\", \"1480_l_2_c_0_1_3-0_0.6-1_0.89-2_0.29-3_0.77\", \"1481_l_2_c_0_2_3-0_0.27-1_0.45-2_0.08-3_0.01\", \"1482_l_2_c_1_2_3-0_0.12-1_0.15-2_0.3-3_0.98\", \"1483_l_2_c_0_1_2-0_0.49-1_0.51-2_0.26-3_0.19\", \"1484_l_2_c_0_1_3-0_0.29-1_0.05-2_1.05-3_0.2\", \"1485_l_2_c_0_2_3-0_1.48-1_0.86-2_0.49-3_0.46\", \"1486_l_2_c_1_2_3-0_1.32-1_0.12-2_0.36-3_0.03\", \"1487_l_2_c_0_1_2-0_0.39-1_0.0-2_0.1-3_0.66\", \"1488_l_2_c_0_1_3-0_0.73-1_0.42-2_0.33-3_0.12\", \"1489_l_2_c_0_2_3-0_1.62-1_1.1-2_0.73-3_0.25\", \"1490_l_2_c_1_2_3-0_0.63-1_0.15-2_0.05-3_0.22\", \"1491_l_2_c_0_1_2-0_0.42-1_0.51-2_0.13-3_0.23\", \"1492_l_2_c_0_1_3-0_0.11-1_0.03-2_1.59-3_0.45\", \"1493_l_2_c_0_2_3-0_0.34-1_0.78-2_0.15-3_0.09\", \"1494_l_2_c_1_2_3-0_0.51-1_0.0-2_0.32-3_0.55\", \"1495_l_2_c_0_1_2-0_1.13-1_0.11-2_0.13-3_0.02\", \"1496_l_2_c_0_1_3-0_0.0-1_0.64-2_0.02-3_1.09\", \"1497_l_2_c_0_2_3-0_0.37-1_1.61-2_0.07-3_0.72\", \"1498_l_2_c_1_2_3-0_1.55-1_0.29-2_0.94-3_0.09\", \"1499_l_2_c_0_1_2-0_0.16-1_0.02-2_0.32-3_1.41\", \"1500_l_2_c_0_1_3-0_0.03-1_0.1-2_1.66-3_0.36\", \"1501_l_2_c_0_2_3-0_0.43-1_0.97-2_0.01-3_1.1\", \"1502_l_2_c_1_2_3-0_0.63-1_0.17-2_0.03-3_0.17\", \"1503_l_2_c_0_1_2-0_0.1-1_0.02-2_0.03-3_0.97\", \"1504_l_2_c_0_1_3-0_0.03-1_0.01-2_0.07-3_0.47\", \"1505_l_2_c_0_2_3-0_1.21-1_0.93-2_0.12-3_0.78\", \"1506_l_2_c_1_2_3-0_0.72-1_0.01-2_0.17-3_0.24\", \"1507_l_2_c_0_1_2-0_0.44-1_0.95-2_0.52-3_0.0\", \"1508_l_2_c_0_1_3-0_0.36-1_0.59-2_1.38-3_0.66\", \"1509_l_2_c_0_2_3-0_0.59-1_0.16-2_0.43-3_0.28\", \"1510_l_2_c_1_2_3-0_0.01-1_0.15-2_0.68-3_0.21\", \"1511_l_2_c_0_1_2-0_0.11-1_0.23-2_0.76-3_0.97\", \"1512_l_2_c_0_1_3-0_0.16-1_0.21-2_0.57-3_2.33\", \"1513_l_2_c_0_2_3-0_1.68-1_0.67-2_0.63-3_2.17\", \"1514_l_2_c_1_2_3-0_0.92-1_0.43-2_1.1-3_0.06\", \"1515_l_2_c_0_1_2-0_0.75-1_0.22-2_0.38-3_1.67\", \"1516_l_2_c_0_1_3-0_0.25-1_0.16-2_1.5-3_1.53\", \"1517_l_2_c_0_2_3-0_0.5-1_1.48-2_0.92-3_1.58\", \"1518_l_2_c_1_2_3-0_0.01-1_0.01-2_0.57-3_0.24\", \"1519_l_2_c_0_1_2-0_0.41-1_0.03-2_0.12-3_0.32\", \"1520_l_2_c_0_1_3-0_0.56-1_0.51-2_1.03-3_0.67\", \"1521_l_2_c_0_2_3-0_1.11-1_1.18-2_0.02-3_0.52\", \"1522_l_2_c_1_2_3-0_2.09-1_0.09-2_0.68-3_1.55\", \"1523_l_2_c_0_1_2-0_0.74-1_0.7-2_0.3-3_0.73\", \"1524_l_2_c_0_1_3-0_0.19-1_0.09-2_0.1-3_0.08\", \"1525_l_2_c_0_2_3-0_0.09-1_2.72-2_0.04-3_0.94\", \"1526_l_2_c_1_2_3-0_0.89-1_0.2-2_0.72-3_1.04\", \"1527_l_2_c_0_1_2-0_0.23-1_0.47-2_0.8-3_0.35\", \"1528_l_2_c_0_1_3-0_0.09-1_0.15-2_0.38-3_1.11\", \"1529_l_2_c_0_2_3-0_0.4-1_0.36-2_0.45-3_0.46\", \"1530_l_2_c_1_2_3-0_0.1-1_0.58-2_0.12-3_0.3\", \"1531_l_2_c_0_1_2-0_1.37-1_0.07-2_0.03-3_1.88\", \"1532_l_2_c_0_1_3-0_0.19-1_0.73-2_0.11-3_1.09\", \"1533_l_2_c_0_2_3-0_0.14-1_0.9-2_0.15-3_0.11\", \"1534_l_2_c_1_2_3-0_0.69-1_0.44-2_0.45-3_0.06\", \"1535_l_2_c_0_1_2-0_1.93-1_0.27-2_0.19-3_1.27\", \"1536_l_2_c_0_1_3-0_0.05-1_0.68-2_0.59-3_0.69\", \"1537_l_2_c_0_2_3-0_0.32-1_0.71-2_0.97-3_0.96\", \"1538_l_2_c_1_2_3-0_0.55-1_0.24-2_0.02-3_1.87\", \"1539_l_2_c_0_1_2-0_1.54-1_0.41-2_0.29-3_0.24\", \"1540_l_2_c_0_1_3-0_0.09-1_0.42-2_0.95-3_0.39\", \"1541_l_2_c_0_2_3-0_0.98-1_0.61-2_0.11-3_0.1\", \"1542_l_2_c_1_2_3-0_1.14-1_0.34-2_0.68-3_0.09\", \"1543_l_2_c_0_1_2-0_0.25-1_0.3-2_0.03-3_0.22\", \"1544_l_2_c_0_1_3-0_0.55-1_0.48-2_0.63-3_0.32\", \"1545_l_2_c_0_2_3-0_0.56-1_1.52-2_0.17-3_0.93\", \"1546_l_2_c_1_2_3-0_0.04-1_0.02-2_0.09-3_0.25\", \"1547_l_2_c_0_1_2-0_0.0-1_1.28-2_0.02-3_0.52\", \"1548_l_2_c_0_1_3-0_0.53-1_0.86-2_1.26-3_0.28\", \"1549_l_2_c_0_2_3-0_0.04-1_0.07-2_0.06-3_0.18\", \"1550_l_2_c_1_2_3-0_0.6-1_0.18-2_0.06-3_0.17\", \"1551_l_2_c_0_1_2-0_0.17-1_0.01-2_0.08-3_0.66\", \"1552_l_2_c_0_1_3-0_0.69-1_0.31-2_0.39-3_0.81\", \"1553_l_2_c_0_2_3-0_0.07-1_1.28-2_0.36-3_1.83\", \"1554_l_2_c_1_2_3-0_2.08-1_0.39-2_0.05-3_0.29\", \"1555_l_2_c_0_1_2-0_0.32-1_0.06-2_0.11-3_0.13\", \"1556_l_2_c_0_1_3-0_0.5-1_0.03-2_0.22-3_1.59\", \"1557_l_2_c_0_2_3-0_1.11-1_0.47-2_0.15-3_1.68\", \"1558_l_2_c_1_2_3-0_0.55-1_0.14-2_0.04-3_0.04\", \"1559_l_2_c_0_1_2-0_0.36-1_0.08-2_0.14-3_0.09\", \"1560_l_2_c_0_1_3-0_0.01-1_0.08-2_0.56-3_0.28\", \"1561_l_2_c_0_2_3-0_0.72-1_0.21-2_0.42-3_0.55\", \"1562_l_2_c_1_2_3-0_0.25-1_0.23-2_0.01-3_1.0\", \"1563_l_2_c_0_1_2-0_0.23-1_0.2-2_0.07-3_0.07\", \"1564_l_2_c_0_1_3-0_0.19-1_0.09-2_0.72-3_0.23\", \"1565_l_2_c_0_2_3-0_1.08-1_0.07-2_0.01-3_0.76\", \"1566_l_2_c_1_2_3-0_0.6-1_0.21-2_0.04-3_0.62\", \"1567_l_2_c_0_1_2-0_1.01-1_0.13-2_0.12-3_0.65\", \"1568_l_2_c_0_1_3-0_1.19-1_0.35-2_1.05-3_0.23\", \"1569_l_2_c_0_2_3-0_0.5-1_0.18-2_0.0-3_1.32\", \"1570_l_2_c_1_2_3-0_1.06-1_0.25-2_0.56-3_0.64\", \"1571_l_2_c_0_1_2-0_0.15-1_0.06-2_0.52-3_2.34\", \"1572_l_2_c_0_1_3-0_0.81-1_0.41-2_0.23-3_0.34\", \"1573_l_2_c_0_2_3-0_0.39-1_2.06-2_0.0-3_0.76\", \"1574_l_2_c_1_2_3-0_2.06-1_0.25-2_0.06-3_0.11\", \"1575_l_2_c_0_1_2-0_0.75-1_0.18-2_0.13-3_0.31\", \"1576_l_2_c_0_1_3-0_0.17-1_1.11-2_0.45-3_0.38\", \"1577_l_2_c_0_2_3-0_0.15-1_0.17-2_0.16-3_0.37\", \"1578_l_2_c_1_2_3-0_1.89-1_0.55-2_0.19-3_0.01\", \"1579_l_2_c_0_1_2-0_0.1-1_0.06-2_0.05-3_0.98\", \"1580_l_2_c_0_1_3-0_0.18-1_0.36-2_1.17-3_0.38\", \"1581_l_2_c_0_2_3-0_0.11-1_0.15-2_0.17-3_0.15\", \"1582_l_2_c_1_2_3-0_1.12-1_0.05-2_0.34-3_0.44\", \"1583_l_2_c_0_1_2-0_0.12-1_0.84-2_1.06-3_1.41\", \"1584_l_2_c_0_1_3-0_0.95-1_0.34-2_0.17-3_0.96\", \"1585_l_2_c_0_2_3-0_0.93-1_0.24-2_0.44-3_0.71\", \"1586_l_2_c_1_2_3-0_1.68-1_0.11-2_0.74-3_0.35\", \"1587_l_2_c_0_1_2-0_0.24-1_0.01-2_0.11-3_0.12\", \"1588_l_2_c_0_1_3-0_0.81-1_0.01-2_0.66-3_0.24\", \"1589_l_2_c_0_2_3-0_0.54-1_0.39-2_0.23-3_0.26\", \"1590_l_2_c_1_2_3-0_0.85-1_0.09-2_0.19-3_1.51\", \"1591_l_2_c_0_1_2-0_1.04-1_0.59-2_0.01-3_1.19\", \"1592_l_2_c_0_1_3-0_0.13-1_0.09-2_0.43-3_0.36\", \"1593_l_2_c_0_2_3-0_0.74-1_1.41-2_0.7-3_0.84\", \"1594_l_2_c_1_2_3-0_0.64-1_0.38-2_0.13-3_0.23\", \"1595_l_2_c_0_1_2-0_1.26-1_0.16-2_0.42-3_1.41\", \"1596_l_2_c_0_1_3-0_0.29-1_0.29-2_0.05-3_0.12\", \"1597_l_2_c_0_2_3-0_0.32-1_0.1-2_0.09-3_0.22\", \"1598_l_2_c_1_2_3-0_1.26-1_0.21-2_0.53-3_0.22\", \"1599_l_2_c_0_1_2-0_0.27-1_0.58-2_0.65-3_1.82\", \"1600_l_2_c_0_1_3-0_0.28-1_0.1-2_1.39-3_0.03\", \"1601_l_2_c_0_2_3-0_0.62-1_1.69-2_0.19-3_0.73\", \"1602_l_2_c_1_2_3-0_0.18-1_0.94-2_0.33-3_0.82\", \"1603_l_2_c_0_1_2-0_0.24-1_0.6-2_0.42-3_0.86\", \"1604_l_2_c_0_1_3-0_0.01-1_0.88-2_1.02-3_0.01\", \"1605_l_2_c_0_2_3-0_0.13-1_1.06-2_0.07-3_0.09\", \"1606_l_2_c_1_2_3-0_0.22-1_0.78-2_0.15-3_1.05\", \"1607_l_2_c_0_1_2-0_0.24-1_0.23-2_0.87-3_0.05\", \"1608_l_2_c_0_1_3-0_0.78-1_0.0-2_1.16-3_0.46\", \"1609_l_2_c_0_2_3-0_0.18-1_0.33-2_0.11-3_0.04\", \"1610_l_2_c_1_2_3-0_0.9-1_0.53-2_0.1-3_0.46\", \"1611_l_2_c_0_1_2-0_0.06-1_0.0-2_0.05-3_0.33\", \"1612_l_2_c_0_1_3-0_0.21-1_0.67-2_0.07-3_0.17\", \"1613_l_2_c_0_2_3-0_0.8-1_0.37-2_0.59-3_0.46\", \"1614_l_2_c_1_2_3-0_0.92-1_0.03-2_0.84-3_0.2\", \"1615_l_2_c_0_1_2-0_0.65-1_0.01-2_0.4-3_0.29\", \"1616_l_2_c_0_1_3-0_0.65-1_0.04-2_0.26-3_1.31\", \"1617_l_2_c_0_2_3-0_1.98-1_0.26-2_0.04-3_1.02\", \"1618_l_2_c_1_2_3-0_1.52-1_0.09-2_0.17-3_0.13\", \"1619_l_2_c_0_1_2-0_0.1-1_0.16-2_0.29-3_1.91\", \"1620_l_2_c_0_1_3-0_0.11-1_0.01-2_1.25-3_0.42\", \"1621_l_2_c_0_2_3-0_0.21-1_0.98-2_1.21-3_0.9\", \"1622_l_2_c_1_2_3-0_0.65-1_0.01-2_0.32-3_0.14\", \"1623_l_2_c_0_1_2-0_0.94-1_0.16-2_0.46-3_0.31\", \"1624_l_2_c_0_1_3-0_0.78-1_0.58-2_1.24-3_0.54\", \"1625_l_2_c_0_2_3-0_0.18-1_0.52-2_0.02-3_0.78\", \"1626_l_2_c_1_2_3-0_1.49-1_0.36-2_0.62-3_0.33\", \"1627_l_2_c_0_1_2-0_1.18-1_0.15-2_0.02-3_0.36\", \"1628_l_2_c_0_1_3-0_0.58-1_1.11-2_0.71-3_1.16\", \"1629_l_2_c_0_2_3-0_0.77-1_0.79-2_0.82-3_0.29\", \"1630_l_2_c_1_2_3-0_1.11-1_1.08-2_0.22-3_0.92\", \"1631_l_2_c_0_1_2-0_0.05-1_0.54-2_0.32-3_0.55\", \"1632_l_2_c_0_1_3-0_0.09-1_0.19-2_0.09-3_0.2\", \"1633_l_2_c_0_2_3-0_0.17-1_1.97-2_0.08-3_0.08\", \"1634_l_2_c_1_2_3-0_1.2-1_0.75-2_0.02-3_0.63\", \"1635_l_2_c_0_1_2-0_0.25-1_0.06-2_0.18-3_0.07\", \"1636_l_2_c_0_1_3-0_0.32-1_0.42-2_0.99-3_1.04\", \"1637_l_2_c_0_2_3-0_1.46-1_0.91-2_0.54-3_0.13\", \"1638_l_2_c_1_2_3-0_1.16-1_0.57-2_0.0-3_0.49\", \"1639_l_2_c_0_1_2-0_0.14-1_0.06-2_0.24-3_0.03\", \"1640_l_2_c_0_1_3-0_0.94-1_0.68-2_0.47-3_0.62\", \"1641_l_2_c_0_2_3-0_0.46-1_0.03-2_0.05-3_0.43\", \"1642_l_2_c_1_2_3-0_0.02-1_0.87-2_0.04-3_0.38\", \"1643_l_2_c_0_1_2-0_1.09-1_0.27-2_0.78-3_0.0\", \"1644_l_2_c_0_1_3-0_0.15-1_0.35-2_0.4-3_0.07\", \"1645_l_2_c_0_2_3-0_0.53-1_1.83-2_0.03-3_0.11\", \"1646_l_2_c_1_2_3-0_0.86-1_0.21-2_0.0-3_0.0\", \"1647_l_2_c_0_1_2-0_2.29-1_0.66-2_0.07-3_0.04\", \"1648_l_2_c_0_1_3-0_0.72-1_0.11-2_0.17-3_0.0\", \"1649_l_2_c_0_2_3-0_0.31-1_0.49-2_0.77-3_1.04\", \"1650_l_2_c_1_2_3-0_0.31-1_0.06-2_0.45-3_0.02\", \"1651_l_2_c_0_1_2-0_0.4-1_0.65-2_0.13-3_0.85\", \"1652_l_2_c_0_1_3-0_0.73-1_0.15-2_1.36-3_0.13\", \"1653_l_2_c_0_2_3-0_1.17-1_1.56-2_0.42-3_0.02\", \"1654_l_2_c_1_2_3-0_0.01-1_0.29-2_0.25-3_0.08\", \"1655_l_2_c_0_1_2-0_0.62-1_0.27-2_0.49-3_2.55\", \"1656_l_2_c_0_1_3-0_0.4-1_0.25-2_0.72-3_0.31\", \"1657_l_2_c_0_2_3-0_0.41-1_1.46-2_0.24-3_0.26\", \"1658_l_2_c_1_2_3-0_1.81-1_0.23-2_0.04-3_0.09\", \"1659_l_2_c_0_1_2-0_0.03-1_0.67-2_0.11-3_0.5\", \"1660_l_2_c_0_1_3-0_0.16-1_0.47-2_1.4-3_0.5\", \"1661_l_2_c_0_2_3-0_1.58-1_1.67-2_0.05-3_1.09\", \"1662_l_2_c_1_2_3-0_0.84-1_0.15-2_0.27-3_0.47\", \"1663_l_2_c_0_1_2-0_0.66-1_0.17-2_0.02-3_0.44\", \"1664_l_2_c_0_1_3-0_0.14-1_0.78-2_1.82-3_1.29\", \"1665_l_2_c_0_2_3-0_0.16-1_0.75-2_0.17-3_0.03\", \"1666_l_2_c_1_2_3-0_1.56-1_0.62-2_0.26-3_0.04\", \"1667_l_2_c_0_1_2-0_0.78-1_0.94-2_0.01-3_0.8\", \"1668_l_2_c_0_1_3-0_1.54-1_0.31-2_0.69-3_0.35\", \"1669_l_2_c_0_2_3-0_0.56-1_0.15-2_0.23-3_0.31\", \"1670_l_2_c_1_2_3-0_0.24-1_0.4-2_0.1-3_0.16\", \"1671_l_2_c_0_1_2-0_0.17-1_0.07-2_0.33-3_0.84\", \"1672_l_2_c_0_1_3-0_0.3-1_0.49-2_1.47-3_1.27\", \"1673_l_2_c_0_2_3-0_0.76-1_0.88-2_0.35-3_0.1\", \"1674_l_2_c_1_2_3-0_0.82-1_0.3-2_0.07-3_0.1\", \"1675_l_2_c_0_1_2-0_0.83-1_0.13-2_0.25-3_0.82\", \"1676_l_2_c_0_1_3-0_0.45-1_0.08-2_1.47-3_1.33\", \"1677_l_2_c_0_2_3-0_0.17-1_1.04-2_0.58-3_0.24\", \"1678_l_2_c_1_2_3-0_0.03-1_0.24-2_0.51-3_0.13\", \"1679_l_2_c_0_1_2-0_1.3-1_0.02-2_0.1-3_0.07\", \"1680_l_2_c_0_1_3-0_0.1-1_0.17-2_0.11-3_0.81\", \"1681_l_2_c_0_2_3-0_0.54-1_1.12-2_0.11-3_0.6\", \"1682_l_2_c_1_2_3-0_0.12-1_0.14-2_0.83-3_0.81\", \"1683_l_2_c_0_1_2-0_0.02-1_0.36-2_0.0-3_0.3\", \"1684_l_2_c_0_1_3-0_1.41-1_0.05-2_0.03-3_0.2\", \"1685_l_2_c_0_2_3-0_0.85-1_0.16-2_0.05-3_1.23\", \"1686_l_2_c_1_2_3-0_0.48-1_0.05-2_0.09-3_1.41\", \"1687_l_2_c_0_1_2-0_1.65-1_0.0-2_0.04-3_2.41\", \"1688_l_2_c_0_1_3-0_0.78-1_0.01-2_0.98-3_0.55\", \"1689_l_2_c_0_2_3-0_0.03-1_1.7-2_0.03-3_0.11\", \"1690_l_2_c_1_2_3-0_0.51-1_0.79-2_0.61-3_0.22\", \"1691_l_2_c_0_1_2-0_1.54-1_0.05-2_0.12-3_2.07\", \"1692_l_2_c_0_1_3-0_0.79-1_0.24-2_0.86-3_1.27\", \"1693_l_2_c_2_3-0_0.8-1_1.53-2_0.09-3_0.56\", \"1694_l_2_r-0_0.06-1_0.48-2_0.65-3_1.33\", \"1695_l_2_r-0_0.19-1_0.85-2_1.53-3_0.54\", \"1696_l_2_r-0_0.82-1_1.0-2_0.48-3_1.02\", \"1697_l_2_r-0_0.37-1_1.25-2_2.82-3_0.03\", \"1698_l_2_r-0_0.94-1_3.91-2_0.96-3_0.91\", \"1699_l_2_r-0_1.3-1_0.43-2_0.57-3_2.33\", \"1700_l_2_r-0_1.29-1_1.85-2_1.34-3_2.15\", \"1701_l_2_r-0_1.17-1_0.79-2_1.13-3_0.38\", \"1702_l_2_r-0_1.32-1_0.84-2_0.42-3_0.72\", \"1703_l_2_r-0_0.6-1_0.85-2_1.93-3_0.96\", \"1704_l_2_r-0_1.45-1_0.08-2_1.07-3_0.65\", \"1705_l_2_r-0_0.01-1_0.35-2_0.28-3_0.91\", \"1706_l_2_r-0_0.04-1_3.24-2_1.8-3_0.13\", \"1707_l_2_r-0_0.13-1_0.28-2_0.0-3_0.35\", \"1708_l_2_r-0_0.34-1_0.22-2_0.09-3_0.87\", \"1709_l_2_r-0_1.8-1_1.5-2_0.62-3_2.9\", \"1710_l_2_r-0_2.65-1_0.15-2_1.98-3_0.67\", \"1711_l_2_r-0_0.71-1_1.34-2_0.72-3_0.77\", \"1712_l_2_r-0_0.21-1_0.91-2_0.12-3_0.96\", \"1713_l_2_r-0_0.71-1_1.13-2_0.41-3_2.23\", \"1714_l_2_r-0_1.52-1_2.31-2_0.9-3_1.38\", \"1715_l_2_r-0_0.5-1_1.29-2_0.42-3_0.93\", \"1716_l_2_r-0_0.31-1_0.73-2_0.54-3_1.98\", \"1717_l_2_r-0_1.3-1_0.5-2_1.6-3_1.7\", \"1718_l_2_r-0_0.64-1_0.14-2_0.61-3_0.79\", \"1719_l_2_r-0_2.09-1_0.77-2_1.28-3_1.47\", \"1720_l_2_r-0_1.2-1_1.25-2_0.23-3_0.78\", \"1721_l_2_r-0_0.87-1_0.58-2_0.47-3_0.92\", \"1722_l_2_r-0_0.88-1_0.31-2_1.29-3_0.27\", \"1723_l_2_r-0_0.72-1_0.79-2_0.75-3_1.3\", \"1724_l_2_r-0_1.25-1_0.59-2_0.7-3_0.85\", \"1725_l_2_r-0_0.66-1_0.16-2_0.66-3_0.63\", \"1726_l_2_r-0_1.31-1_1.03-2_0.25-3_0.11\", \"1727_l_2_r-0_0.19-1_0.12-2_0.46-3_0.88\", \"1728_l_2_r-0_1.33-1_0.03-2_0.17-3_0.74\", \"1729_l_2_r-0_0.13-1_1.31-2_1.7-3_0.44\", \"1730_l_2_r-0_1.64-1_0.26-2_0.57-3_1.32\", \"1731_l_2_r-0_1.38-1_0.71-2_0.34-3_0.2\", \"1732_l_2_r-0_0.69-1_0.66-2_0.85-3_0.41\", \"1733_l_2_r-0_1.16-1_0.71-2_0.18-3_0.49\", \"1734_l_2_r-0_2.04-1_0.69-2_2.16-3_1.31\", \"1735_l_2_r-0_0.85-1_0.01-2_1.34-3_0.69\", \"1736_l_2_r-0_1.54-1_2.1-2_0.02-3_0.28\", \"1737_l_2_r-0_0.3-1_1.77-2_0.57-3_1.07\", \"1738_l_2_r-0_1.28-1_0.02-2_1.08-3_0.28\", \"1739_l_2_r-0_0.77-1_0.11-2_0.66-3_0.43\", \"1740_l_2_r-0_0.2-1_1.01-2_1.13-3_1.57\", \"1741_l_2_r-0_0.2-1_0.65-2_0.74-3_1.14\", \"1742_l_2_r-0_0.47-1_0.96-2_1.88-3_0.18\", \"1743_l_2_r-0_0.58-1_1.37-2_2.71-3_1.1\", \"1744_l_2_r-0_1.35-1_0.67-2_0.81-3_1.18\", \"1745_l_2_r-0_0.73-1_0.78-2_1.1-3_1.32\", \"1746_l_2_r-0_0.41-1_0.62-2_0.29-3_0.63\", \"1747_l_2_r-0_0.07-1_0.11-2_0.95-3_0.58\", \"1748_l_2_r-0_0.18-1_0.14-2_0.35-3_0.48\", \"1749_l_2_r-0_0.28-1_0.38-2_0.57-3_0.69\", \"1750_l_2_r-0_0.81-1_0.5-2_1.57-3_0.63\", \"1751_l_2_r-0_0.9-1_1.42-2_0.99-3_1.04\", \"1752_l_2_r-0_0.02-1_0.46-2_0.06-3_0.19\", \"1753_l_2_r-0_0.74-1_1.46-2_0.54-3_0.03\", \"1754_l_2_r-0_0.73-1_0.35-2_1.55-3_1.58\", \"1755_l_2_r-0_0.72-1_0.49-2_0.75-3_1.34\", \"1756_l_2_r-0_0.39-1_0.32-2_1.08-3_0.34\", \"1757_l_2_r-0_0.36-1_2.19-2_0.62-3_0.03\", \"1758_l_2_r-0_0.26-1_0.55-2_0.27-3_1.26\", \"1759_l_2_r-0_0.73-1_0.86-2_0.54-3_0.1\", \"1760_l_2_r-0_0.12-1_0.58-2_0.87-3_1.39\", \"1761_l_2_r-0_0.34-1_0.65-2_0.98-3_0.95\", \"1762_l_2_r-0_0.35-1_1.83-2_0.4-3_2.21\", \"1763_l_2_r-0_0.39-1_1.26-2_0.86-3_1.9\", \"1764_l_2_r-0_1.29-1_1.14-2_0.5-3_1.15\", \"1765_l_2_r-0_0.57-1_0.41-2_1.77-3_1.03\", \"1766_l_2_r-0_0.49-1_0.48-2_0.77-3_0.26\", \"1767_l_2_r-0_1.08-1_1.74-2_1.97-3_0.89\", \"1768_l_2_r-0_1.17-1_0.15-2_0.24-3_0.4\", \"1769_l_2_r-0_0.19-1_0.51-2_1.78-3_1.03\", \"1770_l_2_r-0_0.41-1_0.27-2_1.46-3_2.34\", \"1771_l_2_r-0_0.9-1_0.2-2_0.87-3_0.81\", \"1772_l_2_r-0_0.09-1_0.78-2_1.56-3_2.23\", \"1773_l_2_r-0_0.29-1_0.68-2_1.23-3_0.71\", \"1774_l_2_r-0_0.6-1_1.58-2_0.22-3_0.3\", \"1775_l_2_r-0_0.76-1_0.69-2_1.51-3_0.27\", \"1776_l_2_r-0_0.36-1_1.5-2_0.84-3_1.56\", \"1777_l_2_r-0_2.67-1_0.06-2_1.31-3_2.26\", \"1778_l_2_r-0_0.27-1_0.41-2_0.04-3_3.33\", \"1779_l_2_r-0_0.36-1_0.89-2_1.09-3_0.3\", \"1780_l_2_r-0_1.01-1_0.39-2_2.79-3_0.74\", \"1781_l_2_r-0_1.6-1_0.51-2_1.34-3_0.23\", \"1782_l_2_r-0_0.01-1_0.12-2_0.8-3_0.11\", \"1783_l_2_r-0_0.65-1_1.38-2_0.57-3_0.72\", \"1784_l_2_r-0_0.47-1_0.71-2_0.42-3_0.46\", \"1785_l_2_r-0_0.69-1_0.32-2_0.25-3_0.07\", \"1786_l_2_r-0_0.92-1_0.22-2_0.46-3_0.64\", \"1787_l_2_r-0_0.66-1_0.3-2_0.22-3_1.3\", \"1788_l_2_r-0_1.55-1_1.75-2_0.49-3_0.13\", \"1789_l_2_r-0_0.45-1_0.21-2_3.13-3_0.16\", \"1790_l_2_r-0_2.68-1_0.39-2_1.41-3_0.6\", \"1791_l_2_r-0_0.05-1_0.38-2_1.4-3_0.32\", \"1792_l_2_r-0_0.4-1_0.55-2_1.0-3_1.37\", \"1793_l_2_r-0_0.08-1_0.01-2_0.36-3_0.32\", \"1794_l_2_r-0_0.5-1_1.14-2_0.33-3_2.67\", \"1795_l_2_r-0_1.06-1_0.58-2_0.72-3_0.1\", \"1796_l_2_r-0_2.55-1_1.34-2_0.37-3_1.23\", \"1797_l_2_r-0_0.9-1_1.54-2_0.19-3_0.59\", \"1798_l_2_r-0_0.47-1_1.01-2_0.07-3_1.92\", \"1799_l_2_r-0_0.86-1_0.05-2_1.07-3_0.74\", \"1800_l_2_r-0_0.41-1_0.28-2_0.58-3_1.66\", \"1801_l_2_r-0_0.75-1_0.67-2_0.73-3_0.08\", \"1802_l_2_r-0_0.65-1_1.38-2_0.25-3_1.18\", \"1803_l_2_r-0_2.29-1_0.34-2_2.05-3_0.55\", \"1804_l_2_r-0_1.49-1_0.75-2_1.64-3_0.0\", \"1805_l_2_r-0_0.0-1_0.58-2_0.39-3_0.56\", \"1806_l_2_r-0_0.18-1_1.34-2_0.11-3_0.88\", \"1807_l_2_r-0_0.12-1_0.36-2_0.21-3_1.44\", \"1808_l_2_r-0_1.98-1_0.97-2_0.82-3_1.27\", \"1809_l_2_r-0_0.85-1_0.49-2_0.98-3_0.07\", \"1810_l_2_r-0_0.79-1_2.29-2_0.64-3_0.75\", \"1811_l_2_r-0_0.1-1_0.83-2_0.38-3_1.39\", \"1812_l_2_r-0_0.98-1_2.04-2_0.3-3_0.53\", \"1813_l_2_r-0_0.46-1_0.14-2_1.74-3_0.23\", \"1814_l_2_r-0_0.9-1_0.37-2_0.2-3_0.1\", \"1815_l_2_r-0_0.23-1_0.03-2_0.59-3_1.09\", \"1816_l_2_r-0_2.62-1_1.56-2_0.54-3_1.58\", \"1817_l_2_r-0_0.63-1_0.36-2_0.82-3_1.22\", \"1818_l_2_r-0_0.26-1_0.62-2_1.03-3_0.58\", \"1819_l_2_r-0_1.27-1_0.35-2_2.19-3_0.29\", \"1820_l_2_r-0_0.05-1_0.09-2_1.25-3_0.64\", \"1821_l_2_r-0_1.3-1_1.6-2_1.72-3_1.22\", \"1822_l_2_r-0_2.13-1_0.89-2_0.16-3_1.1\", \"1823_l_2_r-0_0.03-1_0.23-2_0.24-3_0.5\", \"1824_l_2_r-0_2.4-1_2.52-2_0.68-3_0.12\", \"1825_l_2_r-0_0.9-1_0.31-2_2.1-3_0.93\", \"1826_l_2_r-0_0.52-1_0.75-2_0.66-3_1.04\", \"1827_l_2_r-0_1.32-1_1.54-2_1.36-3_0.06\", \"1828_l_2_r-0_1.27-1_0.17-2_0.6-3_1.02\", \"1829_l_2_r-0_0.25-1_0.34-2_0.71-3_0.95\", \"1830_l_2_r-0_0.28-1_0.61-2_1.6-3_0.67\", \"1831_l_2_r-0_0.25-1_1.0-2_0.36-3_0.09\", \"1832_l_2_r-0_0.46-1_0.68-2_2.16-3_0.76\", \"1833_l_2_r-0_1.04-1_1.69-2_2.31-3_0.78\", \"1834_l_2_r-0_0.04-1_0.17-2_0.2-3_0.66\", \"1835_l_2_r-0_1.26-1_1.4-2_0.33-3_1.02\", \"1836_l_2_r-0_0.16-1_0.91-2_1.39-3_3.5\", \"1837_l_2_r-0_0.47-1_0.18-2_0.66-3_0.64\", \"1838_l_2_r-0_0.28-1_2.69-2_1.13-3_0.27\", \"1839_l_2_r-0_1.4-1_0.02-2_0.09-3_0.47\", \"1840_l_2_r-0_1.13-1_1.26-2_0.91-3_0.31\", \"1841_l_2_r-0_0.18-1_1.59-2_0.39-3_1.59\", \"1842_l_2_r-0_0.69-1_2.0-2_1.16-3_0.83\", \"1843_l_2_r-0_0.73-1_0.58-2_1.26-3_0.85\", \"1844_l_2_r-0_0.84-1_0.03-2_0.79-3_0.19\", \"1845_l_2_r-0_0.1-1_1.54-2_0.75-3_0.98\", \"1846_l_2_r-0_1.0-1_0.15-2_2.26-3_0.67\", \"1847_l_2_r-0_0.05-1_2.84-2_1.17-3_0.97\", \"1848_l_2_r-0_0.42-1_0.25-2_0.5-3_0.3\", \"1849_l_2_r-0_0.76-1_0.8-2_2.28-3_0.03\", \"1850_l_2_r-0_0.17-1_0.72-2_1.67-3_0.93\", \"1851_l_2_r-0_0.49-1_1.25-2_0.07-3_1.17\", \"1852_l_2_r-0_0.91-1_1.73-2_0.09-3_0.8\", \"1853_l_2_r-0_0.25-1_0.18-2_0.57-3_1.28\", \"1854_l_2_r-0_0.27-1_0.31-2_0.35-3_1.6\", \"1855_l_2_r-0_1.21-1_0.49-2_3.44-3_0.39\", \"1856_l_2_r-0_0.59-1_0.38-2_1.44-3_0.19\", \"1857_l_2_r-0_0.97-1_0.66-2_0.78-3_0.35\", \"1858_l_2_r-0_1.53-1_1.4-2_0.07-3_0.81\", \"1859_l_2_r-0_1.16-1_1.16-2_1.09-3_1.78\", \"1860_l_2_r-0_0.68-1_1.61-2_0.88-3_0.82\", \"1861_l_2_r-0_0.52-1_2.44-2_1.71-3_1.06\", \"1862_l_2_r-0_1.6-1_0.02-2_2.03-3_1.29\", \"1863_l_2_r-0_1.18-1_0.2-2_1.1-3_0.32\", \"1864_l_2_r-0_0.81-1_2.02-2_1.13-3_0.69\", \"1865_l_2_r-0_1.24-1_0.15-2_0.43-3_1.1\", \"1866_l_2_r-0_0.18-1_2.57-2_1.16-3_1.07\", \"1867_l_2_r-0_0.98-1_0.1-2_0.47-3_0.75\", \"1868_l_2_r-0_1.04-1_1.08-2_1.49-3_1.14\", \"1869_l_2_r-0_0.15-1_1.23-2_1.34-3_0.45\", \"1870_l_2_r-0_0.39-1_1.03-2_0.13-3_1.14\", \"1871_l_2_r-0_0.01-1_0.88-2_1.39-3_1.34\", \"1872_l_2_r-0_1.65-1_1.08-2_2.57-3_1.2\", \"1873_l_2_r-0_0.12-1_1.77-2_0.37-3_0.51\", \"1874_l_2_r-0_0.74-1_0.5-2_2.33-3_1.39\", \"1875_l_2_r-0_0.13-1_0.73-2_1.59-3_3.12\", \"1876_l_2_r-0_0.03-1_0.72-2_0.89-3_0.7\", \"1877_l_2_r-0_2.08-1_0.98-2_0.07-3_0.13\", \"1878_l_2_r-0_1.08-1_1.05-2_1.05-3_0.25\", \"1879_l_2_r-0_0.96-1_0.39-2_1.73-3_2.03\", \"1880_l_2_r-0_1.17-1_0.44-2_1.06-3_1.03\", \"1881_l_2_r-0_0.73-1_1.34-2_1.02-3_0.83\", \"1882_l_2_r-0_1.46-1_1.76-2_1.31-3_0.75\", \"1883_l_2_r-0_1.45-1_1.07-2_0.44-3_1.48\", \"1884_l_2_r-0_1.49-1_0.74-2_0.11-3_0.85\", \"1885_l_2_r-0_2.14-1_0.25-2_0.15-3_1.32\", \"1886_l_2_r-0_0.9-1_0.26-2_0.58-3_1.7\", \"1887_l_2_r-0_1.18-1_0.39-2_1.76-3_0.31\", \"1888_l_2_r-0_0.93-1_1.94-2_0.63-3_0.58\", \"1889_l_2_r-0_0.74-1_0.91-2_0.67-3_0.92\", \"1890_l_2_r-0_1.26-1_0.69-2_0.35-3_1.68\", \"1891_l_2_r-0_0.56-1_0.13-2_1.02-3_0.01\", \"1892_l_2_r-0_0.78-1_0.87-2_0.43-3_1.05\", \"1893_l_2_r-0_1.16-1_1.08-2_0.06-3_0.09\", \"1894_l_2_r-0_1.36-1_1.68-2_1.58-3_0.36\", \"1895_l_2_r-0_0.71-1_1.41-2_1.23-3_0.67\", \"1896_l_2_r-0_0.08-1_0.47-2_1.32-3_0.4\", \"1897_l_2_r-0_0.14-1_1.73-2_0.6-3_1.08\", \"1898_l_2_r-0_1.72-1_0.03-2_2.02-3_1.27\", \"1899_l_2_r-0_0.0-1_1.17-2_0.11-3_0.75\", \"1900_l_2_r-0_1.71-1_1.44-2_0.29-3_0.81\", \"1901_l_2_r-0_1.91-1_0.0-2_2.02-3_1.13\", \"1902_l_2_r-0_1.86-1_0.47-2_0.54-3_0.03\", \"1903_l_2_r-0_0.27-1_0.6-2_0.03-3_0.21\", \"1904_l_2_r-0_0.2-1_0.9-2_1.15-3_0.87\", \"1905_l_2_r-0_1.46-1_0.88-2_0.03-3_1.66\", \"1906_l_2_r-0_0.66-1_0.61-2_1.23-3_1.07\", \"1907_l_2_r-0_0.02-1_1.28-2_1.74-3_0.09\", \"1908_l_2_r-0_0.94-1_0.68-2_1.76-3_1.39\", \"1909_l_2_r-0_0.24-1_1.26-2_1.45-3_1.16\", \"1910_l_2_r-0_0.9-1_0.24-2_1.06-3_0.04\", \"1911_l_2_r-0_0.5-1_0.13-2_1.19-3_0.58\", \"1912_l_2_r-0_0.11-1_0.14-2_2.14-3_0.42\", \"1913_l_2_r-0_1.43-1_0.32-2_0.25-3_0.46\", \"1914_l_2_r-0_0.09-1_0.13-2_1.92-3_0.06\", \"1915_l_2_r-0_0.69-1_0.46-2_0.5-3_1.52\", \"1916_l_2_r-0_0.26-1_1.15-2_1.81-3_0.72\", \"1917_l_2_r-0_0.93-1_0.01-2_0.99-3_1.37\", \"1918_l_2_r-0_2.0-1_0.72-2_0.77-3_0.84\", \"1919_l_2_r-0_1.58-1_1.33-2_0.28-3_0.09\", \"1920_l_2_r-0_0.28-1_0.95-2_2.65-3_0.95\", \"1921_l_2_r-0_2.1-1_0.05-2_0.49-3_0.5\", \"1922_l_2_r-0_0.22-1_0.52-2_0.69-3_0.25\", \"1923_l_2_r-0_1.39-1_0.87-2_0.73-3_1.46\", \"1924_l_2_r-0_1.08-1_0.35-2_1.4-3_0.02\", \"1925_l_2_r-0_1.05-1_2.01-2_0.77-3_0.57\", \"1926_l_2_r-0_1.03-1_0.3-2_0.02-3_1.0\", \"1927_l_2_r-0_0.07-1_0.7-2_0.2-3_1.78\", \"1928_l_2_r-0_0.6-1_0.34-2_0.08-3_1.27\", \"1929_l_2_r-0_0.23-1_0.07-2_0.63-3_0.23\", \"1930_l_2_r-0_1.14-1_1.26-2_0.49-3_0.47\", \"1931_l_2_r-0_0.26-1_0.85-2_0.81-3_1.82\", \"1932_l_2_r-0_2.09-1_1.1-2_0.53-3_0.78\", \"1933_l_2_r-0_0.52-1_0.42-2_1.45-3_0.49\", \"1934_l_2_r-0_1.85-1_0.54-2_0.52-3_0.55\", \"1935_l_2_r-0_0.18-1_1.09-2_0.09-3_0.2\", \"1936_l_2_r-0_1.77-1_0.22-2_2.35-3_1.82\", \"1937_l_2_r-0_1.27-1_1.0-2_0.16-3_1.15\", \"1938_l_2_r-0_1.48-1_0.88-2_0.04-3_1.49\", \"1939_l_2_r-0_0.73-1_0.83-2_0.18-3_1.35\", \"1940_l_2_r-0_1.8-1_0.87-2_0.78-3_0.17\", \"1941_l_2_r-0_0.44-1_1.78-2_0.89-3_1.23\", \"1942_l_2_r-0_0.18-1_0.37-2_0.76-3_0.48\", \"1943_l_2_r-0_1.76-1_0.06-2_0.68-3_1.54\", \"1944_l_2_r-0_0.26-1_0.22-2_0.97-3_1.64\", \"1945_l_2_r-0_0.43-1_0.43-2_0.66-3_0.26\", \"1946_l_2_r-0_0.74-1_0.44-2_0.78-3_0.53\", \"1947_l_2_r-0_0.11-1_0.78-2_0.58-3_0.12\", \"1948_l_2_r-0_1.72-1_0.07-2_0.28-3_0.82\", \"1949_l_2_r-0_0.74-1_0.68-2_0.75-3_0.29\", \"1950_l_2_r-0_1.32-1_1.52-2_0.7-3_0.69\", \"1951_l_2_r-0_1.02-1_1.13-2_0.33-3_0.2\", \"1952_l_2_r-0_0.01-1_0.95-2_1.51-3_0.58\", \"1953_l_2_r-0_1.8-1_0.2-2_1.49-3_0.54\", \"1954_l_2_r-0_1.06-1_0.2-2_0.51-3_0.55\", \"1955_l_2_r-0_0.51-1_1.21-2_0.15-3_1.56\", \"1956_l_2_r-0_1.66-1_2.74-2_0.15-3_0.94\", \"1957_l_2_r-0_1.7-1_1.86-2_1.33-3_0.76\", \"1958_l_2_r-0_0.01-1_1.0-2_1.16-3_1.05\", \"1959_l_2_r-0_0.05-1_0.02-2_0.45-3_2.22\", \"1960_l_2_r-0_0.94-1_0.19-2_1.23-3_2.67\", \"1961_l_2_r-0_1.33-1_1.54-2_2.08-3_1.22\", \"1962_l_2_r-0_0.56-1_0.71-2_0.08-3_0.22\", \"1963_l_2_r-0_1.44-1_0.27-2_0.41-3_0.05\", \"1964_l_2_r-0_0.06-1_0.39-2_0.25-3_0.39\", \"1965_l_2_r-0_0.3-1_0.5-2_0.84-3_1.51\", \"1966_l_2_r-0_1.37-1_2.65-2_0.29-3_0.81\", \"1967_l_2_r-0_0.85-1_0.38-2_0.27-3_1.24\", \"1968_l_2_r-0_1.66-1_1.16-2_0.02-3_0.42\", \"1969_l_2_r-0_0.59-1_0.11-2_0.37-3_0.79\", \"1970_l_2_r-0_0.72-1_0.09-2_1.49-3_1.04\", \"1971_l_2_r-0_0.01-1_0.3-2_1.19-3_0.53\", \"1972_l_2_r-0_0.58-1_0.75-2_0.34-3_0.99\", \"1973_l_2_r-0_0.05-1_1.0-2_0.13-3_0.05\", \"1974_l_2_r-0_0.63-1_3.46-2_1.02-3_1.54\", \"1975_l_2_r-0_0.45-1_0.3-2_1.14-3_0.11\", \"1976_l_2_r-0_0.96-1_0.36-2_0.33-3_0.65\", \"1977_l_2_r-0_1.59-1_1.69-2_1.51-3_0.07\", \"1978_l_2_r-0_0.47-1_1.04-2_0.37-3_0.76\", \"1979_l_2_r-0_0.79-1_0.87-2_0.82-3_3.42\", \"1980_l_2_r-0_0.26-1_1.75-2_2.34-3_0.98\", \"1981_l_2_r-0_1.15-1_0.57-2_0.59-3_1.89\", \"1982_l_2_r-0_1.49-1_0.92-2_0.46-3_0.84\", \"1983_l_2_r-0_1.29-1_0.35-2_0.63-3_1.91\", \"1984_l_2_r-0_0.75-1_2.05-2_0.53-3_0.28\", \"1985_l_2_r-0_0.43-1_0.42-2_0.42-3_0.08\", \"1986_l_2_r-0_0.07-1_0.99-2_1.7-3_0.98\", \"1987_l_2_r-0_0.71-1_0.86-2_1.89-3_0.98\", \"1988_l_2_r-0_1.23-1_0.03-2_1.96-3_0.57\", \"1989_l_2_r-0_1.48-1_0.69-2_1.18-3_0.13\", \"1990_l_2_r-0_0.2-1_0.94-2_0.33-3_1.44\", \"1991_l_2_r-0_0.47-1_0.3-2_0.07-3_1.05\", \"1992_l_2_r-0_0.57-1_0.66-2_2.18-3_0.63\", \"1993_l_2_r-0_0.48-1_2.22-2_0.75-3_0.41\", \"1994_l_2_r-0_0.33-1_1.0-2_1.25-3_0.03\", \"1995_l_2_r-0_2.07-1_0.49-2_0.51-3_0.33\", \"1996_l_2_r-0_0.31-1_1.02-2_1.08-3_0.01\", \"1997_l_2_r-0_1.91-1_1.01-2_1.7-3_0.98\"], \"type\": \"scatter3d\", \"x\": [-0.09982727326679673, 0.772877579235172, -0.8260212969531515, 0.14489921943390896, -0.649514679405229, 0.11588687554182829, 0.0036665583424635765, 0.9615720808894471, 0.7830979872046594, 2.314556825119637, 0.65848535817852, 1.8754462013299569, -0.41667395999574075, 4.065037212106897, -0.15356605975682772, -0.0006581295563094252, 1.9980068955673609, 0.5167867117702788, 0.2751219597675268, -1.9052302979370794, 0.14786055632737297, 0.15210000237102084, -1.8552663388075066, -0.08460257531898095, 0.09633096190757248, 0.2284427854606439, 1.1591347094785323, 0.15079211771311846, 4.82719394311428, -0.539488063681101, -0.7150025142509332, -2.77554215378347, -0.2916748522742321, 1.2364149408456506, 2.103064060950742, -0.5459896694009863, 0.8092913974748651, 2.1510221204806177, 0.6227658016352996, 0.07592873263835356, 0.6951705641340449, 1.899671821698494, 0.5330745193460096, -0.8070171466711568, 0.5275189316494411, 0.08029863989078549, -0.6901535238590122, 1.03607227741895, 0.3988729257637175, 2.5027072317930497, 0.05953458883416414, 0.3496164552617588, 0.38319970120657265, -0.15909000484027652, -0.595535291945034, -0.7503935238009919, 0.23284331764823657, 2.1649775864257963, -1.0977886157953032, -1.5005885759905284, 0.8739879042752433, 1.5306286340038895, -1.3033281878646013, -0.0009016112531502106, -1.5121888303100461, -3.3580500894215444, -1.3419417375928473, -0.13197555020293483, -0.8272343904666986, 3.786459146450863, -0.5453341528789559, -0.7783083383429991, 0.7071022085194598, 0.4904841385417215, 0.7735449629853006, -2.1802600186917456, 1.156548432292765, 0.6915045190455358, 1.1241121408650936, -1.8146995878152434, 0.44376481444316357, 0.7530042530282092, 1.8236566041595574, 1.7351040855728745, -0.3718217726402863, -2.416405550928909, -0.3026842822530131, 0.4712189028752094, -0.5591081179017707, 2.3428937141189046, -0.746459755655555, -0.20738223044908255, -0.7947942458670647, -3.4196895986094513, -0.24288356425263483, -0.9270088504445188, -0.793369870629563, -0.8494025637893708, -0.523554778198697, -0.41858328635227166, 0.024222459508638692, 0.9478925742290644, 1.0477943327809576, -0.057686700879403904, 0.5030228540425464, 0.33271641689113757, 1.4924589700039685, -0.28138845313275285, -0.7498231387531965, 4.0046128987687215, 0.5167820964638292, -1.5035124363999885, 1.3368191741270532, -1.66009314109973, -0.44699248745512304, -0.10023405234574945, 0.5341350361056741, -0.5363876533045161, -0.038642324210827056, -0.09938606789863103, 0.02452499846456642, -4.920694318986176, -0.4793821051073821, -1.5848462430649213, -0.6960467322893115, -1.6868404128848835, -0.5397163788783771, 0.45411558009246294, 1.0141271011776956, 1.8808359437325504, 0.5153213507166768, -0.26183146615002373, 0.7584684134074677, -3.658148840168823, 0.7517294396513869, 0.4640824224236124, 0.27458871633324994, 1.3323468715850224, 1.123672189373788, -0.025232126481592655, 0.3673938907925722, -1.4853258632772954, 0.9156601122120942, 0.7787814240244829, 1.0398422594195338, 3.1223891513727176, -0.14470214792122452, -1.6681126036445921, -1.8686616341043036, 0.44722402757430146, -0.15161221400814698, -1.4383807871715708, -1.5947503583890739, -1.9254386583661125, -0.3395547100499729, 0.004891151540757959, 0.5908862645408847, -1.1006138452651015, 2.421718434030817, -0.8971726068281869, -0.034021278462578755, -0.77881070355798, -0.003648332268483365, -0.11091465567773018, -0.6384199501210744, 1.6079290875511765, -2.3668630867113136, 0.5424318145155569, -0.1024803317044044, 4.532423357685457, 0.1651020275406814, 0.016153653535314682, 0.08176888516857275, 0.9268328051740871, -0.00512947773748385, 0.9471882631833556, -1.3962670725231408, -2.0251031094652, 1.11263134448464, 0.47168427392951207, -0.436088435918877, 0.8840560434576368, -0.42914151430146835, 0.21536076679820398, 0.7734113290182959, -1.9518161182384792, 0.011206583303230726, -0.8803287756601677, -0.5062797150849089, -3.936879659557229, 0.09268420168704916, -1.6167848591263474, -1.6406147758688734, 4.526114798491152, 1.451235326796302, 2.0281413218464435, 1.0789078685987994, -2.4269773363586467, -0.7237609210170468, 0.07047319014990545, 0.734827805608123, 4.656974829047149, 1.2179388036831702, 0.2745390189473847, 0.6804929075194942, -3.463415151929185, -0.6316554093987453, -0.9797127646804769, -1.8993430990033642, 3.314416253872656, -0.774869621818317, 0.9732235502258653, -0.5800310047678594, -2.0537170154086732, -0.019090582573182944, 1.281042653254259, -0.8570938550389011, -1.6828021404974252, -0.44976706281832174, -0.256486455541615, 0.5044261107341587, -1.280852382131168, -1.2597083570428331, 0.06110949093907111, -0.032516916680572244, 3.168084265713207, -0.2769741173504165, -1.4568613291812376, 0.08053835539821205, 0.21355147603619373, -0.22906970581737232, -1.6497420257315778, 0.09476864873271412, -3.3927466248238316, -1.349214809570947, 0.12758311489283047, -0.3539867446946279, 0.18186125363878772, -0.2516054691989957, 0.3530904393977935, -0.4104627120092126, -5.296036111408348, -1.7362282038943055, -0.17669999848917647, 1.113178445603578, 0.1682898526363644, -0.6223911363906797, 0.06371195666979124, -1.394848916477483, 3.1064718763743504, 0.7244150034508406, 0.8447695116766456, 0.3361702663098002, 1.248145378794262, -0.1077229447796014, 0.008786192625957102, 0.007006458107257227, 1.2031540442829516, -0.42440235340903565, -0.7055305614402863, 0.8443653072199205, 1.8269401132022043, 0.3813746708933264, 0.1595315205931397, 0.29158980761459624, -0.10170962607255697, 0.2122567530510803, -1.519882607811369, -0.1023470185140519, -1.6873336825041785, 1.1070609880737008, -1.0652561190740482, 0.8777431218694001, -1.0608674667540952, 1.4850035023646286, -0.41315713504417445, 0.3573613308562492, 0.3305125255566117, 1.295563915385044, 0.003991286259516457, -1.5071543086093784, -2.763644806709662, -0.5022567022218285, -0.006510687801331672, -0.0398897374460957, 0.2620534035042726, 0.22412887384992355, 0.16542828943284435, 0.013633029282662515, -2.1176724940983562, 1.549021496192632, -0.1808338699586171, 0.5817948099646489, -3.6882453898386127, 0.3556183749583142, 0.14926055851424436, -1.8639487840859665, 2.20439362200371, -1.1724503810489066, -0.9605544417181475, -0.9613343175411305, -1.9665895305182164, 1.1186770706806084, 1.059343131001253, 1.7515468015732694, -1.5572692978589642, 1.6705120141991958, -0.2744403148750881, -0.9491872904028762, -3.206010605445488, 1.942806478407486, -0.30599955854975747, -0.34933786721246246, -1.9733063877466606, -0.21057384941646493, -1.195602783314644, -1.4418405067094908, 1.984974088122418, -0.31685477584414123, -0.6455770964629819, -0.18171261074206085, 4.00696832067016, 1.0110113181740643, -0.8583216300339177, -0.2543260683565349, -1.4645149852610797, 0.23257043492685917, -0.6938371446272147, -0.4650238879965639, 4.06008584231356, 1.7558675837495301, 0.7115148002905122, -0.7830522010278, -2.2636631067596547, 0.937240231898199, 1.012020505259381, -1.36790669309591, -0.15367032283712545, -0.4038445449497042, -0.5022877532106547, 0.4904840837364547, 0.9550872903738087, 0.7878405994067871, 0.5803330285981049, 0.08417857592146714, -1.040568835409084, -0.8370852946356362, 0.2651231368450668, 0.16648424260688865, -4.0327599130906355, 0.41151154680158836, 0.3585833317371361, 0.047224197665102684, 3.6723504423607105, -0.05873054784618994, -1.1731691250881542, -0.01144925787611653, 3.313012487986535, -0.7860126970369651, -1.2055354113394394, -0.29199086555030174, -1.526941536006046, -5.292982750276624, 0.849833912911037, 2.921968308664157, -2.010190280051646, -3.9130720605177376, 2.742977335009046, 3.4016764561879347, -1.217947370908162, -0.8377515376688107, 0.8499626651059357, -4.575032406077712, 2.619225359858903, -4.509507557084977, -2.8175775380037558, -4.209204182263693, -1.4958847916420028, 0.15252938396463092, -3.27294430436222, -0.9057461676694474, 1.131050410002176, -2.9556419162430623, -2.467503129402379, 3.051129651102097, 2.6514993593926146, -0.7012212364375657, -4.670537215461498, -1.254619260322698, 6.887167563557414, -1.7526708935452455, -0.7859015518044888, -0.592397821602016, 0.16342734828149075, -1.2356310876146346, 0.6514359744249503, 0.03425391631473899, -1.7866201205298307, 1.9253632914438417, 0.7131477222385237, 0.6630942500432707, -0.7102965159927244, 0.6936526320801117, -0.009339813592660985, 2.095366775700359, 5.558070743454331, -5.144813726692524, -0.10533711416051823, -3.489921769589786, 2.583035102041714, 3.2271412365893397, 2.4653947632975295, 0.7586762919293081, 1.0172740484695226, -1.9264352286616597, 4.219689666221021, -1.4851485616593476, -4.383660154830651, 0.49763594436134034, 3.0756880956826325, -2.5554384496998903, 3.137558342437589, 0.3472737471060158, 2.6614253179425846, 0.3167198038553549, -2.2775752517460996, 2.3571135932254257, 0.8638159903192126, -0.5788011106697697, -3.046533184946499, -2.0448370251126784, 1.2601715686391775, 1.971130076564149, -1.8059041720356235, -0.4829404543759019, 2.20984870535749, 0.14582160172530223, 2.3630658474425354, -1.8630904729613578, 1.9226337994242892, -0.7832553494453458, 3.0084496778229943, -1.5807442988266442, 3.9715735429706496, 1.7250083788370727, 1.2668050386931726, 1.8808156219730208, 4.060975562052605, 2.368176536067774, 2.365597331232461, 0.12304543720923157, -4.734759318557799, 2.1595640718300197, 2.7517323471998796, -5.5420211772061245, 2.8384751969661832, 1.7458898121848063, 0.21090798672657068, -3.668529744159828, 0.3773013994070899, -0.5511660823292981, -1.2185154468443318, 4.409965537378589, 0.5838325247162909, -2.6006091285820547, -4.23979670330789, -6.136847528951723, 2.448561489048484, 1.2896442054629025, 3.1354386843679727, 1.4149767098309047, 3.0243177167799593, 0.7485155355204995, -2.7990094410596558, -1.3400996001929777, -1.6035227081020906, -2.6739549877698012, -3.9966014069262954, 2.359017898606559, 0.8275077380322406, 2.043455758161392, -1.3415018771824256, 0.37262224932941795, 3.305228381112448, 4.042117257459299, -0.5123258755579797, -0.6188482792082178, 0.35127031998221014, 0.08897212534572961, -4.964581318918525, -6.2575999906286865, 2.8139032301726057, 2.7918636030646344, 0.30730535233050965, -4.013380748305228, 1.9538879782730547, 3.704034056568382, -0.33632860676240867, -1.116098908485185, 0.9965540036004389, 0.8727181560482662, -4.563574923951122, -0.17441012548028373, 1.9549334257271047, -2.910699013727418, -2.5940225164498063, -2.6895589979824863, 3.1548842102768777, 1.257030354320361, -1.5913288214061672, -2.000829945183168, 2.1290903204790546, 0.028215206519590003, -1.5373730012621245, -2.239025501172392, 5.399519121459074, -2.8974979307794513, -4.269960340977464, -2.061736831002871, 1.2499658181069133, -3.6774986245069985, -0.18260637632309024, -0.3086418462545933, -0.4875418836100119, -3.710510318217403, 1.084491279209801, -1.400994200533268, -3.0645480666801714, -5.239024225463773, -5.071026602886885, 2.9603712591566738, -0.1985706060662514, -2.023560972568366, -2.654941093820642, 2.5691319380963216, -0.7438952490458752, -4.423616478844071, 1.233152733162217, 1.0268376623415512, 0.8766757486378246, -1.083858634008804, -1.7732472894780535, -0.500547240724469, -3.199142540878571, -0.757939547412281, -0.9753080902816172, -2.814791677028316, 4.569909582755335, 2.889026628483956, 1.7030117065866839, 1.7624518184837192, -3.2762329048268612, 1.3856689958929518, -3.2674746769172516, 1.5999383867894703, 0.5705686508958441, -1.9416598553864806, 1.0096320497339164, -0.6884168883779269, -0.12736346267631307, 0.8711760052003145, 1.70937775663494, 2.947543277040004, 1.4143611551029713, 3.674401705206192, 1.7291253525027659, 2.4777305928794013, 1.1969709786703417, 3.047372492921687, 0.00018091108761608964, -2.037012639899613, -0.5971257175119831, -0.903891292203658, -0.878920684524589, -2.3264835722550568, -2.312405675574949, 3.4448509046470095, -5.092034588552932, -2.3686541059327637, -1.8853623746658796, 0.14377331717700478, -0.31782749669607985, -0.5726286613484877, -4.398425388825912, -1.1549459030464457, 2.670865051640964, 3.093886274318639, -3.5691361139609747, 4.207715504900355, -0.05120506931445461, -0.5171542057435953, -0.8651038964156954, -0.9742986550060863, 2.0132434107552197, -0.29750256057544494, 0.8450209008259925, -0.33533858841880304, -6.029011160611138, -2.57396349758736, -1.1721816634579396, -1.3892525526906558, 3.192737774815623, -1.0998419265632988, 1.086560583902165, -0.22305938927771748, 1.0015440606846806, 2.276670757211195, -1.8784045661860478, -0.8735267476584359, -1.7788599961964486, 0.37123729418455564, 1.8451449107265325, -1.4028108458965454, 0.4349502639778847, -5.039089762574826, 0.782061864145787, -4.409433470315712, -4.087774840762875, -1.9453203980344682, 1.5071055269080291, 0.9496158810707757, 0.4181725049569209, 0.2007711095658918, 1.207495267723988, 4.292878290928423, -1.855030184528451, -5.806649211200156, 2.214846672486734, 0.19041107083879746, -1.5425384439758612, -2.2731412874244095, -2.198158406611567, -0.8513191425963769, -0.5002736729092514, 5.830208810863151, -2.5211813213827163, -1.7002248452011688, -0.1074121513182545, -1.565914957591825, -3.1074437109492052, -6.624385897752632, 1.663065462184404, 4.149386220421238, 1.403796399386681, -1.5791726008517524, -1.9730430368227645, 1.0354387556858557, 1.8584389224221982, -1.7486780949302754, -0.8278490525578415, -2.5863316661780638, -4.785196054501708, -2.050396286126225, -0.4214306754741722, 1.681836461028572, 3.172001337189425, 3.28984967444352, 1.9242986706170158, 4.03856806409124, 1.0119457718270504, -1.454335906988309, 2.8008713509171805, 0.9982632886169667, -0.4937907282206094, 1.023523107537768, 1.0056528416494488], \"y\": [-1.0491986821923498, -0.05437858569653544, 0.044044160252821776, 0.8207287687728788, 0.047766699320521105, -0.06532114325289914, -0.0028634383701368485, 3.214351112107314, 0.58489617605996, 0.8842826922688832, -1.627351045465088, 0.15533521446182103, -1.6156046452761577, 0.4449645349791226, -1.812783139070095, 0.16250877435746647, 1.313440827623049, 0.8280847355371325, -0.18300998313920055, 0.3834558311939323, -0.010271474053066913, 0.733665785905343, 3.4287020546241016, 0.017355800393989266, 0.017363885403192027, -0.7161800695316178, 0.20327780864495515, 0.4752053133486313, -3.0597986903584258, 2.113291140625301, 1.5615477074456052, 2.536137370546727, 0.7623851957871649, -0.6699633289601284, -2.853626798465953, 0.8193179530165188, 1.9063338044846878, -1.6636904072002028, 1.918136509655349, -0.18971530543313478, -1.1192316302766752, 7.277348626294746, -0.11177000280319282, 1.02262523325528, -0.8588014259417599, -3.4299894497620333, -1.302611527607886, -1.1795617202659614, -0.225671800177424, -1.2405314155061207, -0.035850644403708345, -1.634494568660205, -0.3987205179708208, -3.6381202681925537, 0.8119382926190009, 2.1351205403431592, 0.7431313259496929, 1.6136822602484897, -0.8006597076423327, -0.5736742789609098, -1.5884016258176556, -0.732795691247899, -0.13870514873115158, -1.187268797747934, 1.8335487693235781, 0.33442932945635007, -1.917276859916195, -0.06531680386336497, 0.027365501294141923, -0.4968640927345115, 0.05350952132343591, -0.9201374565347263, 0.3009591071631707, 2.633442350711841, 0.8787459898631002, -0.3011834461352396, -0.21656898149080545, 3.212918706918129, 0.3895236596624219, 0.052002144502139046, 0.8215815910044129, 4.8679228317728995, -0.6550544914304617, -0.674466989572964, -1.1661643973916986, -0.08107090245019821, 1.5974416643529123, 0.5305432720661445, 0.7366962810355895, -1.7301628578204087, -0.5229350477647046, -0.3349449851527863, -1.2651108201901766, 4.6179522501347945, -1.5013233201797263, -1.1029752128908985, 0.6575654845053679, 3.8529062553384184, -0.13761365534741135, -0.19748549822969125, -0.11524432824324277, -6.920858609964409, -0.7665856445754906, -1.0535722666432632, -0.007861210683139348, 3.7931005956326262, -0.9565770696628658, -1.5048806140876458, -0.41713560208447553, 1.140705239390273, 2.2782747754249897, -0.922515869385984, -0.9303557000653273, -4.5576743779344815, -0.19255951130534102, 0.06510630244989456, 0.075491152208603, -1.4882592984806666, 0.17051009071759277, 0.5259060238348906, -0.06701061883499951, 2.997771660381162, -0.16352512753408407, -0.8665032785473282, -0.25869963156511394, 2.303467800736496, 1.4590724026733595, 0.7163183118930078, -0.14003729491437625, 1.9674503674934303, -0.506730684229657, 0.31232752541734526, -0.16455287565675905, -2.0141064754492275, 0.09295087925696227, 0.30184835300061175, 0.6303338103421987, -2.3767068926076833, -0.01209353940777193, -0.15897858963649775, 0.2721054178245739, -4.988749468696583, 1.0260740622519176, -0.13685521548774734, -1.063911728745141, -0.20127866738334574, 0.6241841035242236, 0.20344666784760673, 0.9253093354407075, -3.1166940216303387, 0.7854211948050174, 0.5113817233036045, 1.0432879754004747, 1.3459821477893035, -0.2886567859276418, -0.308635292476748, 0.4248527029151452, 3.2086662934954293, 0.1548466477514293, 1.9056815034222603, 0.6478158990290347, 3.330496229231898, -0.3335263089039377, 0.8025618305061751, -2.2192325616341226, -1.741850831853844, -0.2932484956239765, -0.2297423591468323, 0.48819719401899814, -0.9734228869255142, 0.8343969076977499, -0.057398082810235194, 0.006438561661770766, 2.104854595270998, 0.0161639577053253, -1.7713580054188003, 0.5923541800480976, -0.15801373294770937, -0.14851006436753367, 0.7241352368634656, -0.21296408991365434, 0.6726058521887708, 1.806343964446774, 0.32964561831695416, -1.5164181588459236, -4.425027544568495, -0.20083558505871302, 1.4762035796419264, -0.7026690154603478, -1.1822192185353493, -1.1634925991400755, -1.438824230799372, 0.08542922042646377, -2.7199733271152784, -0.3804858101711433, -0.4745136280981419, -0.814207818169387, -0.35694491811069146, -1.1285110711687076, -0.5594331252408637, 0.9201866720545528, 0.9030068505735095, 0.4395330258843701, -0.8107549759238007, -1.1136218912384366, 2.882223338024266, 0.24233930602817735, -1.482987686007915, -0.9950020673300464, -4.0323085361773305, -0.3408581759310124, -0.856201217324015, -0.5058366324578047, 1.517176177590576, 0.15937149909422682, 1.429259169005852, 1.1887466490694163, -3.622529081717842, 0.17754490688475152, 0.14348659395133248, -0.3098882864958399, 1.7091639894537154, -1.3572128905873329, -0.5081777804922561, -0.3388718968327776, 0.4709201842249053, 0.7930304875686713, 0.07924554077310844, -2.0708534577220155, 4.625587880229347, -0.8051725611840049, 0.20224661460327764, 0.24381231228513975, 2.7954212393937268, 1.0118367701225515, 2.187699739382302, 0.6164628773304207, 2.4979687007381726, 0.7589920840443204, -0.0554805597000699, 0.8418050474957988, -2.0566769315974764, 0.9633802082105373, 0.559424097100083, -1.5502374371054208, -1.6547812876186885, -0.5463907223515551, 0.3506165820789531, -1.0789248904627862, -0.14764374894640797, -0.5598746157917919, 1.0444276375178922, 0.5648361802250476, -0.23699486655262694, 0.36329563262149783, -2.3641854006422403, 0.11585490252192283, 2.395059274284826, 0.10222919531413939, 0.5896506139147991, -0.08778914867794553, -1.4087802330986685, -1.0130884254895645, -1.6789848724887293, -0.32463252067398746, 3.6081790603429496, -0.992837123588541, -0.5829068700351957, 0.29556812687188627, 3.050854604137824, 0.9392755347139933, -0.5961443633189273, -1.907442763506375, 1.8501381876218606, -0.7790473574156683, 0.22846876287593865, 0.033801206337875526, 1.8922086888876135, 0.5539287600751441, 0.0007176618675756962, 0.6659774621644661, 0.36710893361299235, -0.11071987512951571, -0.09050752581783444, 0.04707890374419513, 3.711422677223262, 0.3876941874402531, 0.4111523496069324, -0.06117472201012469, -0.9812453832841139, 0.009891295437457943, 0.1584485957756402, -1.2854823243166282, -0.5205872253065962, -0.9275054200284104, 1.1950278206975016, 1.1160048489715115, -0.7876215200839766, 1.0835835465579333, 0.9757532056768148, 0.5843520546315439, -2.0244614589134766, 1.6038900650288075, 0.733718959022676, 0.41575465435328113, -0.911620100373667, 0.9279250440752823, -0.06244727081142045, 1.9050483533587554, -1.2685482420020573, -0.8662607964806264, 0.268586379790186, -0.8191979507049991, 4.05192136039556, 1.1218327825688585, 1.9857173374258696, -0.11738017019054627, 0.48805451544082046, 0.06147861329180752, -1.2648494266584143, 0.14873616269528978, -1.5610998102000033, -0.5212277821980414, -0.2684560417449103, 0.3513191347287366, -4.661778448136604, 0.7108513510849989, 1.2038127233295601, 1.8179806823181737, -5.565628903495035, -0.4739463579148416, 0.16615684280495618, 0.8922272128702754, 1.7506120415362052, -0.6163437094991235, -1.0478241804230644, 0.7006909053852127, 0.770346444825026, -0.9010567218477543, 0.06656513279232262, -0.5757485154814791, -0.8836226737424381, 0.6778072919059716, -0.5202615184593774, -0.28982956863689274, 2.761370356510831, 0.5885842795863812, 0.021087898972172475, -0.6000471039391821, 1.1214383755135617, 0.13525477601537306, -0.6707610028816665, -0.35573758459604987, 0.15716656955543956, 0.11203012795457525, -0.0024962723935090777, 0.24402994190536348, 5.648627121987422, 1.4763968632726305, -1.0869019320548619, 0.23551050963275877, -2.516228041814113, -2.5401970629621795, -1.0245294701227674, -2.1846045326848404, -1.251532544031545, 5.274225951162001, 3.883958359146757, -3.3955058895603667, -0.7903436231362243, -4.0995935533656445, 0.8817393554724212, 1.826696995703374, -0.3501280531862099, -3.2447058136716223, 4.024227747715957, -3.609228331827361, 1.6923667835425615, 0.9826514047490967, -1.7838901525832642, 2.3566467100685906, 1.6803000122090128, -2.3054756690360607, 1.2872893739181355, -0.7329728328360511, 0.4958264041580142, 6.401691849007885, 5.756094811213248, -1.6652673426274276, 0.578551892493548, -0.31123311757182903, -3.3209861299063625, -1.6158851796055433, 1.3968568180408854, -5.808297997357566, -2.931024816412742, -2.4298596263688377, 4.7558961846963195, -2.208299520119081, -0.8208716433944143, -1.3940230397449223, -4.898109675122881, -5.560017997839182, -0.9452083570064644, 3.425043871983738, -1.7708018602984252, -3.6548764769566153, -2.8186117666452866, 1.0149560023922564, -0.650951622105022, 0.9552857553346588, 1.3697323540576738, -0.672052336801106, -4.744043709415405, -0.6203094551866956, 0.11409956821588384, -0.14191589999280033, -0.381962038366754, 1.5939639026245105, -1.4197631136248512, -0.611885592971841, 3.2107238204036155, 1.3737923334346511, 0.48771333096389824, 1.4301501292137528, 2.188471598596461, 1.4552838656876723, 3.9388576430177507, -0.7665324900651285, 0.6519399522363515, 1.831598395632184, 2.1413949123024976, -1.1373222967781007, -7.121053104901164, 0.5918913092209794, -1.742713598378442, 2.4799795618146754, 2.0429615529650365, -3.4877238230684067, 4.0719976027669444, 3.1747392744919773, -2.067358281299111, 2.4187012061469466, 2.026518710608651, -2.9008639788068575, 2.9113285206143726, 4.617354446293714, -0.8853317355460685, -2.0813376701470303, -1.6522807197562024, 0.5067710649115701, 2.2877079403562335, 1.2857126445649654, -4.698236835256053, -0.21640077377110112, -1.2970072285197733, -2.04417454127679, 2.0005505024973878, 0.39176202457847586, 2.1340696999301576, 3.527858124272525, -0.012822293490455088, -1.137168425134532, 2.8653981652832967, 3.4834879731655484, -1.5443906385730566, -5.709940611640045, -2.2249611666908162, 0.28129106964369355, -0.6731958085382913, -1.3822440811192345, 0.34067363246050214, -3.032666481595448, 0.9022010001420565, 2.068047864437136, 0.36100376392329825, -0.9657397813039967, -1.5910007217423496, 2.7570204419838213, 1.140833561528034, 2.995018363865937, 0.13738192166028038, 1.6863027700588897, -0.030398127744775565, 1.5585809366726955, 0.3562816129415654, -3.826379906085068, 1.2243715715215362, -3.655589158585854, 1.9996611146461358, 1.2439029603609313, 0.6726451170716965, 2.519273859372341, -2.5310542586108475, 0.7545313451791406, 1.9630077200314366, 0.1710447807519353, 2.8708651402680427, -0.6077146864528831, 4.462558011423724, 0.6750088183758534, 3.4622830833891642, -6.0605281005155005, 1.3954278593666005, -1.8625704415902113, -0.1834396819868073, -4.247641894347679, -0.018064763611013928, -2.2948252211542304, -2.660054058747502, 2.1935758696781065, -5.1628368412615755, 2.2433136717845947, 1.99375591527824, -5.045018976914972, -5.520163762868853, -0.2463157914875797, 0.8046402675471699, 0.7227178929819185, 2.142822076665967, 3.201541360573805, 2.2569056243070524, -2.4407511138625124, -6.471751565480364, 0.38006291659824104, 2.4698073545837085, -3.93551724037828, -3.117696835455863, -1.8662764780585699, 2.7462710072883136, 0.023104273023642312, -1.6665892217227054, 3.441267818974648, -0.15036716656166918, 2.8185189824697443, 0.10162498120082325, -1.0831309021745357, 1.5378100878436254, 2.8904679954440673, 1.4509681858581975, -2.6594223770528496, -3.979903888656521, -3.54528506928239, 0.7294333310096167, 0.7199582291557602, -2.640898467040868, 1.0544787629533228, 0.3904257076564365, -0.4418161896663253, -1.337314343088257, -3.021172120541403, -2.4139624134481577, 2.1122110818415933, 0.3322498312681144, 0.2615845331675943, 3.368916483148943, -3.0587010764885663, 2.784996078112469, -1.6585018612444515, -2.463922274419706, -1.826974599091203, 1.9774958419920892, 2.728983593101447, -2.04339845011429, -3.4204731480637736, -2.32937999222168, 0.034646510774035195, -2.1105927960131226, 1.4412949148114003, -0.8811622145197918, 2.122093394014634, 6.990736585720156, -1.2559042177421038, 2.752790805964149, -1.9261337513907721, 1.7274273195903451, -0.6845098874622902, 2.033958400536635, -3.0726589282418995, 3.0362724459154413, 1.7364245979841277, -2.870252731253823, 0.13249503838783588, 0.4605938777613921, 1.5002006521358862, -3.3750094072624557, 2.4191907489722473, -2.045877686130716, 0.9488007574369636, -0.7779685809646664, 2.973469530835599, -1.5569793889191068, -0.34588542813288786, 2.1796689387585837, 3.547818090600274, 0.6990818855565639, -2.7222726728847295, 1.9965355541455756, 1.264346436769939, 0.8483108123784501, 1.0993980763923523, -0.41899399376518787, 0.53930864181013, 2.0279971126322645, 4.801044614802541, -3.487193984181571, -2.1420665678031563, -0.8318345114011059, -2.7067920285805376, -3.8823194469024744, 5.990801048575537, 4.7268712830656865, -0.22132487301588907, 2.153662634083681, 2.6162667621526063, -1.5565253465425262, -0.06611079963228389, 1.2776190222957209, 2.5898013286330768, -1.1318095976820974, -6.770642434695189, 4.439720430849914, -4.697730465170468, 3.7776977772018503, 5.120281368137267, 3.977772079508198, -4.033452577954723, 2.3074307571273525, 6.9672747657123155, -2.0043841312067596, -1.7420225618884673, 0.27217478016117247, 4.75467784056731, 2.818208746191598, -2.6474529078722857, 0.3791773335031875, -3.7923197954276158, 3.694396467901391, 0.09148634960229368, -2.006986767515621, -0.7541946033814323, 1.0023620326282445, 4.162462303678151, 0.2967427792731451, 2.8672754641016303, 1.693805040968474, 2.9820501727637945, -4.659873397680594, -1.9447512900606592, 3.127784272156074, 3.0513390619095895, -0.5731003984035499, 3.3063441441553225, 0.5797555090310936, -0.9922070612962908, -2.711759368413696, 0.46002783397266256, 0.6861461316612573, -3.463691331782541, 0.300606873156464, -0.6597686164492291, -2.2205299621674, -3.469978985577868, -3.3352571158973197, -1.3743104801645387, 1.5940511749356059], \"z\": [-0.03944954029513588, 0.3621185966508682, 0.7805844180432191, -1.824296328623288, -0.38228906954106506, -0.17105866004048387, 0.008402277852156395, 3.0610016630157784, -1.9240782976902062, 0.2898140644022268, 3.822596965051781, 0.9917625897545016, -1.5970193936656156, 2.391151158907906, -0.06545346036157874, -0.09322905531690161, -1.720934004829848, 0.15529721680844552, -0.2607564296065389, 4.994925846604339, 0.3450543631518804, -1.2751915675370866, -1.2155230133519592, -0.014758843026816734, 0.22642115325129022, -6.127400549128773, 0.7903737130413256, 1.627168663738811, -2.4767492338283534, -0.6020138145186517, -0.8066233726395469, -5.397103374048792, -0.6382659777565833, 0.49415377564811297, 0.43078261001581886, 0.2653956715309763, -0.7189712922914249, -1.922926272509109, 0.022228715668075074, -0.2479501645516324, 1.667503318612014, -1.539703194298322, -1.711018583879968, 0.4579375955625353, 0.2512608884320115, -1.1301951354287627, -1.8949211090346834, 1.1124335040631905, 0.22364702931976144, -0.5833415250778899, -0.049506771437174246, 0.3416685152885607, -1.8725755835207696, 3.180118764786985, -0.9699986669592894, -0.011940043830479485, -0.7880201577268615, -0.2525713260368861, -0.22484466193565636, 1.08416115673822, 0.25199003302808815, -1.8993614168796316, 1.405066150374771, -1.6379763834256258, -0.675203458619053, 0.017184866434682443, -0.7830687594918779, -0.0845351550473012, -0.25726752446502077, -6.634092584642499, -0.07023544092400746, 1.2905441316382014, 0.33776582081105627, -2.544870959858905, -0.3609394391044022, 0.3580249772447977, -0.7350575658137415, -2.356531182451057, -1.4530903140455653, 0.15136586350805772, 0.944747313590022, 0.2633522175013211, -1.4744582134693875, 0.43724086569722426, 0.7973645251929036, 2.7944475096411265, -1.7281066529078282, 0.0809656571359642, 0.27750059756185563, 6.541009090467254, -1.4969179900646101, -0.17348342996914123, -0.33612182400172796, 1.1405868916384785, 1.2327117708303938, 0.6984556500902169, 1.299718430985665, -0.5876742301461428, -1.3101867740588056, -1.31875952638516, -0.6086185594046788, -2.736038702593417, -0.9754312887000763, -1.219758645535986, 0.1278903920876271, 2.0554041707604203, -0.11673333742671363, -0.8018195622473333, 2.2902736366118965, 0.9552152305059185, -0.6547283571185725, 0.4182921539919798, -0.5208342955223718, -1.2091518720538172, -2.217660842472399, 1.5846731908095748, 1.6447794676024472, 3.053229258946636, -0.07459341093790933, 0.4089061671480061, -0.4024016260413999, 1.5091209896777031, -0.49353836856610545, 0.06196147394315203, -0.4231149124134885, 1.6102211835987374, -1.5373878275298238, 0.7604869669573489, 0.017437419429689377, -1.0232177719343478, 0.30683959008563205, 0.11760747965055095, 0.20885954633437545, 2.8523318290399224, 0.030612771860202503, -2.3888430262771636, -0.04791049895282954, -1.9273998821052354, 0.8367586670146482, 0.07237701891452507, -2.0321446536134284, 0.08687581384314842, 1.5061634884807504, -1.5764230750444481, 0.7734181787880657, -1.803300626566138, -0.563304187348453, -1.2849014240853274, 0.8922423785439051, 0.7893432848914823, -2.3070783590833357, -1.0428300011038638, 0.04863232947776321, -0.8596949533517252, -0.12432982622556117, -0.2598763000828347, -1.1452630356775422, 2.7046137642621666, 0.33173974006751683, -0.514018924944021, -1.1134332018946365, -4.378605693599458, 0.21822394726641986, -0.6071316258360376, 0.8171447617586141, 1.9560202099759216, 0.46717370526981145, -0.022367956830393214, -1.376706392611464, 2.4501986484138767, -0.48027816504626863, 0.04547315311419028, 0.13082351348126012, 2.4117852587206197, 0.005630524488145087, -1.0471046823951424, 0.6203315062486455, 3.273257617019992, 0.8757475332167449, -0.2271663778050333, 0.7175182121999252, 2.3211472682297423, -1.3607640177507954, 1.5515587426542985, 0.15659513147447557, -1.484685623821192, -0.058656548858492356, 0.028584343775339863, -0.8598448437937899, -2.932888418188478, 0.8756098303606858, 0.7024190584423943, -0.20359381779023403, -3.4127161747942196, -0.2020275881585014, -1.006145029497857, 0.14881617158789964, 4.44269341254633, 0.5768843343566925, -0.8623253747268523, -1.1137429902875935, 2.31901835390382, -0.6185490249733382, -1.8613074915464611, 1.335902420975809, 0.7098588136014219, 1.0167520880985548, 0.40900142477861445, -0.4194564787947977, -0.6073463486405694, 0.8991177287827744, 0.3018756227935538, 0.47879060167475945, -1.64433946873572, -0.7734323931944326, -1.5907579994360224, 1.1578938549345046, 0.06677643151849731, -0.28183999552381844, 0.00921419087807228, 2.2890418755106534, 2.869283937858752, -0.39216352494913276, 0.07318802841005424, -0.9043631408457613, -6.782080716633118, 0.14383060415253393, -1.267303617310803, 1.2541158469809202, -2.7634631289565306, 0.44590495564902716, -1.6168499535320906, -0.11341032627405684, -0.06800456306932266, 0.2110946728191898, -0.3592333813437294, 0.9773107243267557, -3.966194562602809, 0.8147467077297841, -0.47169637303793094, 0.7524599097112967, 4.021970814753293, 0.25479591016917424, 1.1749871853617333, 1.4041374638942037, 5.0550617796086526, -0.8068829210460325, 1.2655416244759352, -0.3595591829737749, 1.8522482812822119, -0.050799057903433545, -0.8861420217725989, -2.2901004744799827, 2.1862872080641735, 0.14128530046671584, -0.33888837384019566, -0.5812397655249649, -0.3939021208801859, -0.09110775858677529, 1.295575648836833, -0.12100963325266628, 2.581192555986464, -0.9416485051048124, 0.23987869223753916, -1.0669879507017315, 3.1945653314312166, 0.9301570849043717, -0.64490777930707, 0.313898347895304, -2.648022581626752, -1.1767556526879335, 1.6212033417160563, -1.3528736637598224, -3.3146553442436337, -1.1892796716135245, -0.4005929455242752, -0.0002638763662579357, 2.854201880297515, -0.5270797232629564, -0.008477241950756121, 1.5291812669769878, -1.9330188410340816, 0.028825346770735946, -1.1987340816735368, 0.06575262132138465, 3.4627607881500087, 0.08812643416103147, -0.16326585580857822, -0.08789884876894268, -4.5961919710333925, -0.007924820151589141, 0.28576115700819865, -0.7681244584638094, 1.1958380568799083, 1.7006209254635025, -1.1373298608086606, -1.108686936087988, -2.185394726625789, 1.28242575320677, 0.5391038929951112, -0.18556170890537418, 2.030186034106522, 0.7494627281788968, -0.06017032218173092, -1.2726771001025239, -2.181623346760632, -0.5651539484019302, 0.18479018472349149, 0.6827740200012462, -0.033797193912025986, -1.281169066621214, 0.5707411126851589, -0.7124409400878876, -1.825093412798515, -0.9903563733232451, -0.662379110798389, -0.10825047425829111, -2.937498633815684, -0.058256180142472164, -1.6891799831655094, -0.612167023022616, 4.075100277826954, 0.2873187595614737, 2.2596244263017735, 1.0932584569795039, -4.269271617051962, 0.4691566364401566, -0.6656662543448671, 0.7384217064302512, -1.6728634294222118, -0.14608097010345616, 0.4223525552571001, 2.0069784971832614, 0.7465014619320457, 0.9545128026599435, -0.9398698419543161, 0.3146365239713623, -4.638658442784418, -1.3731609936945832, -0.22431702019370822, -0.5548465654737764, -2.483937685481641, 0.29537637224578167, -0.13328615318803247, -0.47153641213159536, 1.1392426012895953, -0.24402249153146843, 0.24913968374128118, -1.2742757110194016, 3.1838290582780564, -0.3812025883223222, 1.3499671032016356, -0.534142806057821, -3.2053777053852066, -0.05167141809382597, 1.285788273532019, -0.013860719849712658, -1.6997689039351311, 1.6472127266386818, 0.047279372163950895, 0.4091808988320887, -1.6511293916911172, 0.48179541632802764, 3.087195755191053, 0.9951475225586813, -2.035043323070005, 7.1785162909412445, 0.4257294274059859, 1.8547092974259323, -2.859628778857847, -3.77666660122418, -2.9568575040870364, -0.07633719780479348, -2.588123508050785, 5.247092622630818, 0.2837970892847074, 0.21641851602565523, -7.422631031145168, -2.3727040365635346, 1.3390903347743537, 2.1481470609791984, 1.580754745038445, 3.3429831766439198, 3.031192606029368, -2.6411885173187484, -0.5148227071519246, -0.13506314726819332, 0.7716356376878137, 4.686242331354978, 4.721782972040752, 3.4636601147293877, 2.7104707662364347, -1.9353784485052843, -3.525146598671065, 1.0251765684351368, -0.12028735948446108, -0.8898002511339751, 1.3087748675538309, 0.25729646916878857, -2.4710585999412378, -2.502315928388902, -2.7358840382389973, 2.2443526241112477, -2.480606921581232, 3.688884051413531, -1.8945668034264411, 0.02149675451658026, -2.8783941058282547, -1.5941277740982969, 1.6600310910518388, 1.6515481305020063, 3.0003115495241413, -5.284902180495226, 0.7818234164080011, 2.186237480760682, 2.7055700825228413, 3.9729901616668055, -2.9967225273110847, -2.416148215459179, -2.6212078270818244, -0.46077651286175836, -1.4585096073172585, 2.098622403677854, 1.5053700617845338, -2.377627574284277, -2.4419892689809393, 0.5506949060275316, 1.7661854548020963, 4.727319609102622, -2.3759960369042004, 1.9172384413874886, 1.9665671230978559, 2.8045379686248224, -0.4098085339747783, 2.739693097486994, 2.174088830252397, -0.912865559281343, -0.514250576897701, -0.2683749297112964, 0.19845692607195548, 2.846616882267873, -0.6844804980231123, 3.9937251937085123, -0.6926717991829306, 1.4985020268331128, 0.06385270566546808, 0.41068332020468223, 1.7960078438794236, 0.3917428183542584, -0.5058675517255062, -3.2838665808703045, 1.3804878089524677, 0.7097452448055663, 0.3164053882690417, 2.595863140310876, 0.2958336498584206, -2.035448887687034, -2.150052275747934, 1.709239375474386, 1.4753534064201976, -1.4982240858948186, -2.9493549148590237, -1.4297546912702201, -4.051539228975266, 1.3390796992411014, 3.442746405939904, 1.0064348142244746, -0.04998303836561128, 2.146911857855878, -0.907103511725189, 2.4429462704012908, -1.238590913062709, 1.666010455475146, 0.5823632733125311, -2.3128089495155226, 1.9828152429755574, -1.6249552447997961, 0.4907529573884572, -2.2894425317965177, -3.7728235036319875, -5.529437011492941, -6.7156160883837845, -2.558660695190301, -1.941237129548399, 3.407790462752714, -3.1280625503989237, 5.917666046824693, -5.823160908039339, -1.6999209489857354, -1.604716208179315, -0.8904474972346019, 0.23119930388062618, -4.863928740765883, 5.149709075498057, 3.155093805519868, -1.5431436900546418, -2.94041985892076, 1.4366660180076514, 2.5989894545156282, 1.5914800182657318, 2.7519336625286104, 1.6902505679331368, 3.832865581113794, -4.064325067032798, -0.9085487290009947, 0.8286484798775546, -3.370509280957439, -2.7334307443641666, -1.6321005278168073, 1.5922816042577967, -3.556897817370767, 0.5777365287127022, -2.0024851768989356, 3.825747974546033, -0.1463906543489739, 2.844751980775048, -1.4477815180580946, -1.4157728206627727, 2.228517966259357, -2.1666736267983424, 1.7290763969116179, 3.1676791105145434, -1.7514367272079676, 3.279460870136689, -0.803071262614437, 0.6576909481898439, -2.104466187457726, -1.1585001030487607, 1.6092011030928886, -2.4409589680936326, -4.666851839183301, -4.837489298942841, 4.947739554879118, 0.5701016580009445, -6.560785456311632, -4.222105560552984, 2.280080327038203, 3.1140708931967436, -1.273481820031598, 2.433632718874396, 2.956654694773368, 2.451411552213275, 2.4253113976598817, -1.644099019241378, 3.565644845752842, -3.996200967212384, 5.581130556319514, 1.9766271800876711, -1.161905390325908, 3.0362970747474325, -2.2919887766353866, -1.069400423965607, -0.7350748970173423, -0.25302622784721296, 2.862717574554038, -0.3947013144825555, -4.196269516509799, 0.9070177639031971, 2.7753530745704746, 4.577770829900932, 4.565868904394347, -1.0828818278466208, 1.6784433141289137, 1.8718867943887751, 0.47427174936057426, -1.8997958793540106, 2.1926895256893584, 1.17031541539182, 4.695559056488026, -3.047508639406713, -0.46605478705163267, 0.7282260397862707, 2.570841663225848, 3.7735435765281995, -0.6054180248661809, -1.2754102804009342, -1.674137095134475, -1.2649476035433265, 0.23969553740504568, -0.12696842370021819, -1.820751845319837, 1.7166959092250857, -2.56063354054104, 4.314179224905247, 3.0753035092969103, -0.012907693957834258, -0.7206361941300214, 1.3256239354041977, 2.682971633284774, -2.790437775586459, 1.1405987066055907, 2.1177931365098344, -2.704192404405178, -5.0885638891811364, -1.799572912194122, -2.333886646667566, 1.0683549302026993, -0.06950197498818667, -1.712044207396362, -3.990976239587813, 4.6294228201564005, -3.8605373157435707, -2.387818628281501, -2.7982041774872575, 0.3222742816080896, -4.4489524044352375, -0.884391960608514, -3.8832353736507037, -2.231146644251914, -7.250666684054725, 5.868802337942535, -0.06174119357672132, -4.257608360507886, 1.2908868141605851, 0.44494009687332614, 1.8186191883772571, 0.6750308944106506, 0.6763825967834555, -1.5245413160697965, -2.4659604174401726, 1.0448752992693693, -0.19584373692351842, 1.6043993127367273, -2.247847689668105, 2.7362450559125784, 2.3575527487493457, -0.998293782716987, 0.02470306827095781, -2.986277116691542, -4.748983227719083, 0.7080580177899611, 3.7979292852409388, -0.39152778178399333, 1.542450027497259, 5.0899895726616, -5.039376452962082, 1.1595428961119052, 0.49318338909976195, 2.1125551371487337, 0.30292496570086247, 2.7234829746323928, 3.2578413622776488, 3.456212991709431, 3.0747427737923765, 0.3637299660058293, 2.4224868556766763, -3.1863427954675534, 0.8726733018238001, -2.5576703738369932, 0.5690956125467787, -0.9197045357580229, 0.35337487280062707, 4.25788471711505, 3.103729296708741, -2.24413984241211, -0.8575600759359143, -0.03333806981498987, -5.327068992408226, -0.9415171170027336, -2.703827617427617, 2.90080104501297, 2.541386945336445, -1.5266868115949022, 0.7079750856572736, -3.4388707746526204, -3.3233453670691286]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 0\", \"marker\": {\"color\": \"rgb(31, 119, 180)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 0\", \"scene\": \"scene3\", \"showlegend\": false, \"text\": [\"0_l_0_m-0_2.4-1_0.58-2_0.67-3_0.97\", \"1_l_0_m-0_0.19-1_0.26-2_0.99-3_0.5\", \"2_l_0_m-0_2.09-1_0.3-2_0.75-3_0.13\", \"3_l_0_m-0_0.04-1_0.73-2_1.31-3_0.4\", \"4_l_0_m-0_0.59-1_0.13-2_0.67-3_0.97\", \"5_l_0_m-0_0.66-1_0.05-2_0.18-3_0.03\", \"6_l_0_c_1_2_3-0_0.94-1_0.1-2_0.23-3_0.3\", \"7_l_0_c_1_2_3-0_0.21-1_0.11-2_0.01-3_1.4\", \"8_l_0_c_1_2_3-0_0.22-1_0.75-2_1.82-3_0.33\", \"9_l_0_c_1_2_3-0_0.55-1_0.67-2_0.33-3_0.39\", \"10_l_0_c_1_2_3-0_0.37-1_0.75-2_0.7-3_1.43\", \"11_l_0_c_1_2_3-0_1.46-1_0.99-2_0.23-3_0.79\", \"12_l_0_c_1_2_3-0_1.6-1_0.29-2_1.48-3_0.06\", \"13_l_0_c_1_2_3-0_0.09-1_0.85-2_0.86-3_0.09\", \"14_l_0_c_1_2_3-0_1.43-1_0.86-2_0.81-3_0.59\", \"15_l_0_c_0_1_2-0_0.65-1_0.78-2_0.13-3_1.35\", \"16_l_0_c_1_2_3-0_0.52-1_0.31-2_0.58-3_0.24\", \"17_l_0_c_0_1_2-0_0.65-1_0.04-2_0.07-3_1.46\", \"18_l_0_c_1_2_3-0_0.4-1_0.48-2_0.96-3_1.37\", \"19_l_0_c_0_1_2-0_0.3-1_0.61-2_1.07-3_0.03\", \"20_l_0_c_1_2_3-0_0.01-1_0.54-2_1.43-3_1.4\", \"21_l_0_c_0_1_2-0_0.58-1_1.21-2_0.22-3_0.94\", \"22_l_0_c_1_2_3-0_0.53-1_0.6-2_0.85-3_0.0\", \"23_l_0_c_0_1_2-0_0.34-1_1.06-2_0.53-3_1.21\", \"24_l_0_c_1_2_3-0_0.65-1_1.44-2_1.2-3_0.0\", \"25_l_0_c_0_1_2-0_0.29-1_0.01-2_0.62-3_1.62\", \"26_l_0_c_1_2_3-0_0.21-1_0.41-2_1.81-3_0.91\", \"27_l_0_c_0_1_2-0_0.01-1_0.38-2_0.09-3_1.22\", \"28_l_0_c_1_2_3-0_0.29-1_0.07-2_0.25-3_0.56\", \"29_l_0_c_0_1_2-0_0.11-1_0.27-2_0.76-3_0.72\", \"30_l_0_c_1_2_3-0_1.58-1_0.22-2_1.64-3_0.24\", \"31_l_0_c_0_1_2-0_0.04-1_1.18-2_0.57-3_1.1\", \"32_l_0_c_1_2_3-0_0.06-1_1.54-2_0.54-3_0.29\", \"33_l_0_c_0_1_2-0_0.09-1_0.35-2_0.08-3_0.59\", \"34_l_0_c_1_2_3-0_0.75-1_0.26-2_0.42-3_0.61\", \"35_l_0_c_0_1_2-0_0.94-1_0.33-2_1.08-3_0.47\", \"36_l_0_c_1_2_3-0_0.84-1_0.21-2_1.76-3_1.26\", \"37_l_0_c_0_1_2-0_1.06-1_0.55-2_0.31-3_0.36\", \"38_l_0_c_1_2_3-0_0.31-1_0.51-2_0.77-3_0.43\", \"39_l_0_c_0_1_2-0_0.89-1_0.11-2_0.37-3_2.67\", \"40_l_0_c_1_2_3-0_0.16-1_0.53-2_0.07-3_0.17\", \"41_l_0_c_0_1_2-0_0.15-1_0.07-2_0.3-3_0.1\", \"42_l_0_c_1_2_3-0_0.02-1_0.33-2_1.0-3_0.26\", \"43_l_0_c_0_1_2-0_0.44-1_2.02-2_0.01-3_0.49\", \"44_l_0_c_1_2_3-0_0.16-1_0.12-2_0.27-3_0.53\", \"45_l_0_c_0_1_2-0_0.37-1_1.51-2_0.7-3_0.58\", \"46_l_0_c_1_2_3-0_1.76-1_0.68-2_0.25-3_1.71\", \"47_l_0_c_0_1_2-0_0.07-1_1.64-2_0.35-3_1.54\", \"48_l_0_c_1_2_3-0_1.98-1_0.69-2_0.38-3_0.29\", \"49_l_0_c_0_1_2-0_1.46-1_0.1-2_0.18-3_1.28\", \"50_l_0_c_0_1_3-0_0.29-1_0.58-2_0.2-3_0.97\", \"51_l_0_c_1_2_3-0_1.21-1_1.03-2_0.61-3_0.15\", \"52_l_0_c_0_1_2-0_1.45-1_1.34-2_2.56-3_1.74\", \"53_l_0_c_0_1_3-0_0.12-1_0.29-2_0.32-3_0.28\", \"54_l_0_c_1_2_3-0_1.06-1_0.32-2_0.19-3_0.44\", \"55_l_0_c_0_1_2-0_0.69-1_0.08-2_0.6-3_0.98\", \"56_l_0_c_0_1_3-0_0.21-1_0.27-2_0.12-3_0.78\", \"57_l_0_c_1_2_3-0_0.66-1_0.58-2_0.37-3_0.95\", \"58_l_0_c_0_1_2-0_0.06-1_0.7-2_1.37-3_0.21\", \"59_l_0_c_0_1_3-0_0.09-1_0.71-2_0.25-3_0.08\", \"60_l_0_c_1_2_3-0_0.4-1_1.02-2_1.07-3_0.64\", \"61_l_0_c_0_1_2-0_0.4-1_0.66-2_1.37-3_0.98\", \"62_l_0_c_0_1_3-0_0.85-1_0.29-2_0.31-3_0.27\", \"63_l_0_c_1_2_3-0_0.47-1_0.97-2_1.26-3_1.31\", \"64_l_0_c_0_1_2-0_0.46-1_0.33-2_0.26-3_0.79\", \"65_l_0_c_0_1_3-0_0.05-1_0.98-2_0.39-3_0.67\", \"66_l_0_c_1_2_3-0_1.36-1_0.49-2_0.24-3_0.73\", \"67_l_0_c_0_1_2-0_0.45-1_0.59-2_0.05-3_0.12\", \"68_l_0_c_0_1_3-0_0.34-1_0.77-2_0.08-3_0.6\", \"69_l_0_c_1_2_3-0_1.25-1_0.13-2_0.66-3_0.67\", \"70_l_0_c_0_1_2-0_0.87-1_1.32-2_0.03-3_0.57\", \"71_l_0_c_0_1_3-0_0.29-1_0.19-2_0.02-3_0.83\", \"72_l_0_c_1_2_3-0_1.65-1_0.76-2_0.76-3_0.04\", \"73_l_0_c_0_1_2-0_0.37-1_0.63-2_0.83-3_0.66\", \"74_l_0_c_0_1_3-0_0.19-1_0.05-2_0.12-3_0.06\", \"75_l_0_c_1_2_3-0_0.71-1_0.28-2_0.06-3_0.68\", \"76_l_0_c_0_1_2-0_0.21-1_0.0-2_0.53-3_2.45\", \"77_l_0_c_0_1_3-0_1.44-1_0.5-2_0.0-3_0.43\", \"78_l_0_c_1_2_3-0_0.17-1_1.56-2_1.18-3_0.62\", \"79_l_0_c_0_1_2-0_0.0-1_0.5-2_0.03-3_1.05\", \"80_l_0_c_0_1_3-0_0.03-1_0.62-2_0.13-3_1.33\", \"81_l_0_c_1_2_3-0_1.59-1_0.65-2_0.23-3_0.77\", \"82_l_0_c_0_1_2-0_0.38-1_1.27-2_0.54-3_0.72\", \"83_l_0_c_0_1_3-0_0.43-1_0.15-2_0.01-3_1.47\", \"84_l_0_c_1_2_3-0_0.5-1_0.92-2_0.58-3_0.3\", \"85_l_0_c_0_1_2-0_0.25-1_1.29-2_0.33-3_0.06\", \"86_l_0_c_0_1_3-0_1.32-1_0.01-2_0.39-3_0.06\", \"87_l_0_c_1_2_3-0_0.14-1_0.51-2_0.05-3_1.1\", \"88_l_0_c_0_1_2-0_0.04-1_0.08-2_0.73-3_0.3\", \"89_l_0_c_0_1_3-0_0.29-1_1.32-2_0.07-3_1.04\", \"90_l_0_c_1_2_3-0_0.23-1_0.23-2_0.16-3_0.38\", \"91_l_0_c_0_1_2-0_0.56-1_0.25-2_0.28-3_1.86\", \"92_l_0_c_0_1_3-0_0.05-1_0.06-2_0.34-3_0.47\", \"93_l_0_c_1_2_3-0_1.81-1_0.7-2_0.54-3_0.24\", \"94_l_0_c_0_1_2-0_0.4-1_0.7-2_0.46-3_1.08\", \"95_l_0_c_0_1_3-0_1.16-1_0.56-2_0.0-3_0.11\", \"96_l_0_c_1_2_3-0_0.71-1_0.83-2_0.32-3_0.84\", \"97_l_0_c_0_1_2-0_1.07-1_0.25-2_0.4-3_0.88\", \"98_l_0_c_0_1_3-0_0.53-1_0.17-2_0.08-3_0.71\", \"99_l_0_c_1_2_3-0_0.54-1_0.77-2_1.08-3_0.58\", \"100_l_0_c_0_1_2-0_0.03-1_0.6-2_0.81-3_1.08\", \"101_l_0_c_0_1_3-0_0.95-1_1.28-2_0.11-3_0.76\", \"102_l_0_c_1_2_3-0_0.96-1_0.25-2_0.45-3_0.72\", \"103_l_0_c_0_1_2-0_0.34-1_0.12-2_0.91-3_0.52\", \"104_l_0_c_0_1_3-0_1.02-1_1.91-2_0.14-3_0.91\", \"105_l_0_c_1_2_3-0_0.66-1_0.3-2_0.26-3_0.61\", \"106_l_0_c_0_1_2-0_0.06-1_0.24-2_1.09-3_0.37\", \"107_l_0_c_0_1_3-0_0.01-1_0.44-2_0.11-3_0.88\", \"108_l_0_c_1_2_3-0_0.24-1_0.16-2_0.07-3_0.82\", \"109_l_0_c_0_1_2-0_0.08-1_0.3-2_0.18-3_3.13\", \"110_l_0_c_0_1_3-0_0.02-1_0.48-2_0.14-3_0.79\", \"111_l_0_c_1_2_3-0_0.4-1_0.41-2_0.01-3_0.32\", \"112_l_0_c_0_1_2-0_0.83-1_0.06-2_0.37-3_1.63\", \"113_l_0_c_0_1_3-0_0.12-1_0.33-2_0.01-3_0.39\", \"114_l_0_c_1_2_3-0_1.37-1_0.44-2_0.25-3_0.13\", \"115_l_0_c_0_1_2-0_0.23-1_0.75-2_0.16-3_0.55\", \"116_l_0_c_0_1_3-0_0.91-1_0.42-2_0.15-3_0.79\", \"117_l_0_c_1_2_3-0_2.14-1_0.87-2_1.22-3_0.34\", \"118_l_0_c_0_1_2-0_0.07-1_1.32-2_0.35-3_1.08\", \"119_l_0_c_0_1_3-0_0.46-1_0.33-2_0.2-3_0.28\", \"120_l_0_c_1_2_3-0_0.97-1_0.19-2_0.71-3_0.65\", \"121_l_0_c_0_1_2-0_0.51-1_0.73-2_0.62-3_0.62\", \"122_l_0_c_0_1_3-0_0.04-1_0.36-2_0.36-3_0.39\", \"123_l_0_c_1_2_3-0_1.52-1_0.36-2_1.13-3_0.12\", \"124_l_0_c_0_1_2-0_0.88-1_0.49-2_0.41-3_0.06\", \"125_l_0_c_0_1_3-0_0.4-1_0.88-2_0.22-3_0.63\", \"126_l_0_c_1_2_3-0_2.36-1_0.67-2_0.25-3_0.6\", \"127_l_0_c_0_1_2-0_0.02-1_0.76-2_0.62-3_1.25\", \"128_l_0_c_0_1_3-0_0.43-1_0.28-2_0.37-3_0.23\", \"129_l_0_c_1_2_3-0_0.26-1_0.72-2_0.3-3_0.65\", \"130_l_0_c_0_1_2-0_0.62-1_0.12-2_0.88-3_0.08\", \"131_l_0_c_0_1_3-0_0.88-1_0.09-2_0.06-3_0.14\", \"132_l_0_c_1_2_3-0_2.15-1_0.28-2_0.77-3_0.65\", \"133_l_0_c_0_1_2-0_1.4-1_1.55-2_0.72-3_1.84\", \"134_l_0_c_0_1_3-0_0.15-1_2.36-2_0.14-3_0.01\", \"135_l_0_c_1_2_3-0_0.34-1_0.43-2_0.83-3_0.3\", \"136_l_0_c_0_1_2-0_1.45-1_1.47-2_0.74-3_1.76\", \"137_l_0_c_0_1_3-0_0.45-1_0.27-2_0.17-3_0.41\", \"138_l_0_c_1_2_3-0_1.76-1_0.12-2_0.96-3_0.52\", \"139_l_0_c_0_1_2-0_0.8-1_1.11-2_0.42-3_0.71\", \"140_l_0_c_0_1_3-0_1.32-1_0.48-2_0.2-3_0.41\", \"141_l_0_c_1_2_3-0_0.48-1_1.4-2_0.8-3_0.91\", \"142_l_0_c_0_1_2-0_0.96-1_0.63-2_0.07-3_0.91\", \"143_l_0_c_0_1_3-0_0.83-1_1.26-2_0.3-3_0.77\", \"144_l_0_c_1_2_3-0_0.96-1_0.6-2_1.68-3_0.75\", \"145_l_0_c_0_1_2-0_0.31-1_0.07-2_0.28-3_0.91\", \"146_l_0_c_0_1_3-0_0.57-1_0.95-2_0.1-3_0.79\", \"147_l_0_c_1_2_3-0_1.57-1_1.87-2_0.62-3_0.4\", \"148_l_0_c_0_1_2-0_0.54-1_0.37-2_0.2-3_0.36\", \"149_l_0_c_0_1_3-0_0.82-1_0.31-2_0.13-3_0.3\", \"150_l_0_c_1_2_3-0_0.76-1_1.0-2_0.17-3_0.09\", \"151_l_0_c_0_1_2-0_0.76-1_0.63-2_0.18-3_1.09\", \"152_l_0_c_0_1_3-0_0.12-1_0.21-2_0.03-3_0.46\", \"153_l_0_c_1_2_3-0_1.67-1_0.51-2_0.15-3_0.14\", \"154_l_0_c_0_1_2-0_1.85-1_0.59-2_0.94-3_1.0\", \"155_l_0_c_0_1_3-0_0.72-1_0.19-2_0.07-3_0.42\", \"156_l_0_c_1_2_3-0_1.53-1_0.67-2_0.32-3_0.21\", \"157_l_0_c_0_1_2-0_0.91-1_0.22-2_0.01-3_0.94\", \"158_l_0_c_0_1_3-0_0.99-1_0.07-2_0.03-3_0.44\", \"159_l_0_c_1_2_3-0_1.87-1_0.45-2_0.13-3_0.84\", \"160_l_0_c_0_1_2-0_0.55-1_1.68-2_0.5-3_0.43\", \"161_l_0_c_0_1_3-0_0.23-1_0.89-2_0.22-3_0.25\", \"162_l_0_c_1_2_3-0_1.95-1_1.36-2_0.13-3_0.41\", \"163_l_0_c_0_1_2-0_0.39-1_0.91-2_0.58-3_0.04\", \"164_l_0_c_0_1_3-0_0.43-1_0.7-2_0.47-3_0.35\", \"165_l_0_c_1_2_3-0_1.88-1_0.62-2_1.4-3_0.5\", \"166_l_0_c_0_1_2-0_0.84-1_0.23-2_0.5-3_0.61\", \"167_l_0_c_0_1_3-0_0.27-1_1.24-2_0.02-3_0.2\", \"168_l_0_c_0_2_3-0_0.51-1_0.24-2_0.22-3_0.84\", \"169_l_0_c_1_2_3-0_0.96-1_0.14-2_0.06-3_0.32\", \"170_l_0_c_0_1_2-0_0.33-1_0.19-2_0.67-3_2.43\", \"171_l_0_c_0_1_3-0_0.02-1_1.91-2_0.02-3_0.89\", \"172_l_0_c_0_2_3-0_0.09-1_0.06-2_1.76-3_0.25\", \"173_l_0_c_1_2_3-0_0.46-1_0.17-2_0.63-3_0.69\", \"174_l_0_c_0_1_2-0_0.86-1_0.33-2_1.69-3_0.15\", \"175_l_0_c_0_1_3-0_0.86-1_1.95-2_0.58-3_0.3\", \"176_l_0_c_0_2_3-0_0.67-1_0.61-2_0.09-3_0.5\", \"177_l_0_c_1_2_3-0_1.36-1_1.63-2_0.5-3_0.5\", \"178_l_0_c_0_1_2-0_0.88-1_0.68-2_0.48-3_0.37\", \"179_l_0_c_0_1_3-0_0.17-1_0.53-2_0.2-3_0.85\", \"180_l_0_c_0_2_3-0_1.02-1_0.15-2_0.51-3_0.09\", \"181_l_0_c_1_2_3-0_0.44-1_0.08-2_0.67-3_0.09\", \"182_l_0_c_0_1_2-0_0.35-1_0.12-2_0.43-3_1.1\", \"183_l_0_c_0_1_3-0_0.02-1_0.01-2_0.14-3_0.5\", \"184_l_0_c_0_2_3-0_1.02-1_0.39-2_0.25-3_0.71\", \"185_l_0_c_1_2_3-0_0.61-1_2.62-2_1.83-3_0.12\", \"186_l_0_c_0_1_2-0_0.19-1_0.78-2_0.11-3_0.31\", \"187_l_0_c_0_1_3-0_0.36-1_0.29-2_0.04-3_0.05\", \"188_l_0_c_0_2_3-0_0.59-1_0.17-2_0.17-3_0.34\", \"189_l_0_c_1_2_3-0_0.72-1_0.12-2_1.03-3_0.17\", \"190_l_0_c_0_1_2-0_1.44-1_0.38-2_0.15-3_0.07\", \"191_l_0_c_0_1_3-0_0.06-1_0.49-2_0.04-3_0.68\", \"192_l_0_c_0_2_3-0_0.62-1_0.13-2_0.58-3_1.0\", \"193_l_0_c_1_2_3-0_0.2-1_0.08-2_0.43-3_0.38\", \"194_l_0_c_0_1_2-0_0.18-1_0.63-2_0.38-3_1.89\", \"195_l_0_c_0_1_3-0_0.09-1_0.35-2_0.0-3_0.62\", \"196_l_0_c_0_2_3-0_1.4-1_0.35-2_0.3-3_0.2\", \"197_l_0_c_1_2_3-0_0.74-1_0.47-2_0.8-3_0.9\", \"198_l_0_c_0_1_2-0_0.22-1_0.56-2_0.48-3_0.35\", \"199_l_0_c_0_1_3-0_0.73-1_0.35-2_0.02-3_0.78\", \"200_l_0_c_0_2_3-0_1.41-1_0.19-2_0.63-3_1.05\", \"201_l_0_c_1_2_3-0_1.94-1_0.01-2_1.37-3_0.65\", \"202_l_0_c_0_1_2-0_0.97-1_0.5-2_1.42-3_0.01\", \"203_l_0_c_0_1_3-0_2.33-1_0.97-2_0.03-3_0.16\", \"204_l_0_c_0_2_3-0_0.12-1_0.0-2_2.7-3_0.77\", \"205_l_0_c_1_2_3-0_1.48-1_0.09-2_0.31-3_0.04\", \"206_l_0_c_0_1_2-0_1.15-1_0.42-2_0.23-3_0.03\", \"207_l_0_c_0_1_3-0_0.58-1_0.03-2_0.42-3_0.91\", \"208_l_0_c_0_2_3-0_0.28-1_0.1-2_0.57-3_0.67\", \"209_l_0_c_1_2_3-0_0.9-1_0.31-2_0.71-3_0.99\", \"210_l_0_c_0_1_2-0_0.5-1_0.4-2_0.07-3_0.66\", \"211_l_0_c_0_1_3-0_1.07-1_0.42-2_0.12-3_1.5\", \"212_l_0_c_0_2_3-0_0.67-1_0.0-2_0.73-3_0.15\", \"213_l_0_c_1_2_3-0_0.12-1_0.61-2_0.29-3_1.08\", \"214_l_0_c_0_1_2-0_0.5-1_0.87-2_1.62-3_0.17\", \"215_l_0_c_0_1_3-0_0.04-1_0.21-2_0.34-3_1.09\", \"216_l_0_c_0_2_3-0_0.07-1_0.09-2_1.18-3_0.13\", \"217_l_0_c_1_2_3-0_0.4-1_1.25-2_0.61-3_1.28\", \"218_l_0_c_0_1_2-0_0.54-1_0.84-2_0.73-3_0.02\", \"219_l_0_c_0_1_3-0_0.65-1_1.4-2_0.42-3_0.96\", \"220_l_0_c_0_2_3-0_1.47-1_0.02-2_0.06-3_0.47\", \"221_l_0_c_1_2_3-0_1.14-1_0.21-2_0.41-3_0.34\", \"222_l_0_c_0_1_2-0_0.02-1_0.2-2_0.76-3_0.11\", \"223_l_0_c_0_1_3-0_0.73-1_0.45-2_0.04-3_0.54\", \"224_l_0_c_0_2_3-0_0.04-1_0.21-2_1.64-3_0.35\", \"225_l_0_c_1_2_3-0_0.24-1_0.28-2_1.16-3_0.01\", \"226_l_0_c_0_1_2-0_0.09-1_0.19-2_0.75-3_0.98\", \"227_l_0_c_0_1_3-0_0.5-1_0.47-2_0.15-3_0.21\", \"228_l_0_c_0_2_3-0_0.98-1_0.13-2_0.45-3_0.22\", \"229_l_0_c_1_2_3-0_0.5-1_0.03-2_0.19-3_0.71\", \"230_l_0_c_0_1_2-0_0.39-1_0.04-2_1.28-3_1.12\", \"231_l_0_c_0_1_3-0_0.54-1_1.35-2_0.18-3_0.37\", \"232_l_0_c_0_2_3-0_0.62-1_0.53-2_1.59-3_0.61\", \"233_l_0_c_1_2_3-0_1.43-1_1.5-2_0.97-3_0.15\", \"234_l_0_c_0_1_2-0_0.2-1_0.03-2_0.34-3_2.92\", \"235_l_0_c_0_1_3-0_0.2-1_0.88-2_0.01-3_1.05\", \"236_l_0_c_0_2_3-0_1.07-1_0.44-2_0.1-3_0.54\", \"237_l_0_c_1_2_3-0_2.12-1_0.02-2_0.35-3_0.28\", \"238_l_0_c_0_1_2-0_1.17-1_0.81-2_0.51-3_0.79\", \"239_l_0_c_0_1_3-0_0.41-1_1.64-2_0.05-3_0.61\", \"240_l_0_c_0_2_3-0_0.13-1_0.21-2_0.33-3_0.27\", \"241_l_0_c_1_2_3-0_0.34-1_2.19-2_0.24-3_1.46\", \"242_l_0_c_0_1_2-0_0.12-1_0.33-2_0.06-3_0.3\", \"243_l_0_c_0_1_3-0_0.75-1_0.86-2_0.47-3_0.26\", \"244_l_0_c_0_2_3-0_0.56-1_0.2-2_0.13-3_0.65\", \"245_l_0_c_1_2_3-0_1.99-1_0.32-2_0.2-3_0.2\", \"246_l_0_c_0_1_2-0_0.11-1_0.36-2_0.08-3_0.34\", \"247_l_0_c_0_1_3-0_0.09-1_1.41-2_0.27-3_0.24\", \"248_l_0_c_0_2_3-0_0.17-1_0.45-2_0.48-3_0.06\", \"249_l_0_c_1_2_3-0_1.14-1_0.8-2_0.86-3_0.91\", \"250_l_0_c_0_1_2-0_0.29-1_0.65-2_0.57-3_1.26\", \"251_l_0_c_0_1_3-0_0.14-1_0.09-2_0.0-3_0.22\", \"252_l_0_c_0_2_3-0_0.99-1_0.05-2_0.62-3_0.63\", \"253_l_0_c_1_2_3-0_0.62-1_0.59-2_1.56-3_0.29\", \"254_l_0_c_0_1_2-0_0.32-1_0.96-2_0.2-3_0.33\", \"255_l_0_c_0_1_3-0_0.85-1_2.17-2_0.15-3_0.82\", \"256_l_0_c_0_2_3-0_0.93-1_0.08-2_0.33-3_1.44\", \"257_l_0_c_1_2_3-0_0.8-1_0.21-2_0.69-3_0.07\", \"258_l_0_c_0_1_2-0_0.41-1_1.63-2_0.11-3_0.71\", \"259_l_0_c_0_1_3-0_0.08-1_0.58-2_0.06-3_0.03\", \"260_l_0_c_0_2_3-0_0.7-1_0.33-2_0.21-3_0.14\", \"261_l_0_c_1_2_3-0_0.42-1_0.04-2_0.07-3_0.52\", \"262_l_0_c_0_1_2-0_1.92-1_1.55-2_0.71-3_0.32\", \"263_l_0_c_0_1_3-0_0.1-1_1.02-2_0.03-3_0.27\", \"264_l_0_c_0_2_3-0_1.06-1_0.0-2_0.03-3_1.53\", \"265_l_0_c_1_2_3-0_0.29-1_0.16-2_0.71-3_0.28\", \"266_l_0_c_0_1_2-0_0.68-1_0.79-2_0.03-3_0.28\", \"267_l_0_c_0_1_3-0_0.8-1_0.07-2_0.02-3_1.27\", \"268_l_0_c_0_2_3-0_0.19-1_0.02-2_0.02-3_1.22\", \"269_l_0_c_1_2_3-0_0.74-1_0.27-2_0.15-3_0.1\", \"270_l_0_c_0_1_2-0_1.19-1_0.32-2_0.27-3_2.91\", \"271_l_0_c_0_1_3-0_0.57-1_0.95-2_0.0-3_0.42\", \"272_l_0_c_0_2_3-0_0.8-1_0.05-2_0.01-3_0.07\", \"273_l_0_c_1_2_3-0_1.12-1_0.67-2_0.25-3_0.71\", \"274_l_0_c_0_1_2-0_0.41-1_1.62-2_0.2-3_0.33\", \"275_l_0_c_0_1_3-0_0.03-1_1.64-2_0.11-3_0.36\", \"276_l_0_c_0_2_3-0_0.08-1_0.03-2_0.88-3_0.72\", \"277_l_0_c_1_2_3-0_0.26-1_0.53-2_0.86-3_0.24\", \"278_l_0_c_0_1_2-0_0.33-1_0.27-2_0.03-3_1.37\", \"279_l_0_c_0_1_3-0_0.54-1_0.33-2_0.04-3_0.02\", \"280_l_0_c_0_2_3-0_0.02-1_0.16-2_0.1-3_0.26\", \"281_l_0_c_1_2_3-0_0.25-1_0.61-2_1.11-3_0.87\", \"282_l_0_c_0_1_2-0_0.93-1_0.81-2_0.65-3_0.53\", \"283_l_0_c_0_1_3-0_0.01-1_1.45-2_0.22-3_0.37\", \"284_l_0_c_0_2_3-0_0.4-1_0.24-2_0.76-3_0.36\", \"285_l_0_c_1_2_3-0_0.23-1_0.3-2_0.24-3_0.17\", \"286_l_0_c_0_1_2-0_0.08-1_0.51-2_0.26-3_0.01\", \"287_l_0_c_0_1_3-0_1.0-1_0.45-2_0.24-3_0.01\", \"288_l_0_c_0_2_3-0_1.7-1_0.06-2_0.42-3_0.1\", \"289_l_0_c_1_2_3-0_0.04-1_0.29-2_0.44-3_0.89\", \"290_l_0_c_0_1_2-0_1.22-1_0.8-2_0.19-3_1.34\", \"291_l_0_c_0_1_3-0_0.37-1_0.18-2_0.0-3_0.21\", \"292_l_0_c_0_2_3-0_0.19-1_0.07-2_0.69-3_0.52\", \"293_l_0_c_1_2_3-0_0.08-1_1.06-2_0.66-3_0.18\", \"294_l_0_c_0_1_2-0_0.42-1_0.59-2_0.54-3_0.64\", \"295_l_0_c_0_1_3-0_0.02-1_1.21-2_0.24-3_0.14\", \"296_l_0_c_0_2_3-0_0.7-1_0.16-2_0.01-3_0.05\", \"297_l_0_c_1_2_3-0_1.26-1_1.38-2_0.54-3_0.11\", \"298_l_0_c_0_1_2-0_0.5-1_1.73-2_0.77-3_0.27\", \"299_l_0_c_0_1_3-0_0.35-1_0.17-2_0.12-3_0.26\", \"300_l_0_c_0_2_3-0_1.88-1_0.01-2_0.15-3_0.36\", \"301_l_0_c_1_2_3-0_1.19-1_0.75-2_0.32-3_0.24\", \"302_l_0_c_0_1_2-0_1.03-1_0.57-2_0.27-3_1.16\", \"303_l_0_c_0_1_3-0_0.95-1_0.15-2_0.23-3_0.39\", \"304_l_0_c_0_2_3-0_0.49-1_0.1-2_1.35-3_0.5\", \"305_l_0_c_1_2_3-0_0.17-1_0.79-2_1.12-3_0.76\", \"306_l_0_c_0_1_2-0_0.39-1_0.49-2_1.38-3_0.59\", \"307_l_0_c_0_1_3-0_0.37-1_0.11-2_0.37-3_2.06\", \"308_l_0_c_0_2_3-0_0.7-1_0.03-2_0.27-3_1.07\", \"309_l_0_c_1_2_3-0_0.37-1_0.28-2_0.45-3_0.31\", \"310_l_0_c_0_1_2-0_1.05-1_0.85-2_0.1-3_1.13\", \"311_l_0_c_0_1_3-0_0.52-1_0.52-2_0.07-3_0.6\", \"312_l_0_c_0_2_3-0_0.45-1_0.57-2_0.81-3_0.1\", \"313_l_0_c_1_2_3-0_0.2-1_0.29-2_0.6-3_0.1\", \"314_l_0_c_0_1_2-0_0.56-1_0.12-2_0.17-3_1.17\", \"315_l_0_c_0_1_3-0_0.87-1_1.42-2_0.56-3_0.54\", \"316_l_0_c_0_2_3-0_0.42-1_0.18-2_0.06-3_0.21\", \"317_l_0_c_1_2_3-0_1.41-1_0.45-2_0.43-3_0.52\", \"318_l_0_c_0_1_2-0_0.34-1_0.39-2_0.55-3_0.14\", \"319_l_0_c_0_1_3-0_0.08-1_0.15-2_0.04-3_1.11\", \"320_l_0_c_0_2_3-0_0.48-1_0.0-2_0.73-3_0.07\", \"321_l_0_c_1_2_3-0_0.83-1_0.35-2_0.24-3_1.44\", \"322_l_0_c_0_1_2-0_0.55-1_0.22-2_1.33-3_0.45\", \"323_l_0_c_0_1_3-0_1.75-1_0.01-2_0.1-3_0.54\", \"324_l_0_c_0_2_3-0_0.17-1_0.05-2_0.19-3_1.14\", \"325_l_0_c_1_2_3-0_0.51-1_0.77-2_0.74-3_0.12\", \"326_l_0_c_0_1_2-0_0.42-1_0.67-2_0.01-3_0.33\", \"327_l_0_c_0_1_3-0_1.23-1_0.65-2_0.09-3_0.25\", \"328_l_0_c_0_2_3-0_0.16-1_0.05-2_0.73-3_0.51\", \"329_l_0_c_1_2_3-0_0.01-1_0.47-2_0.24-3_1.68\", \"330_l_0_c_0_1_2-0_0.14-1_0.48-2_0.21-3_0.24\", \"331_l_0_c_0_1_3-0_1.01-1_0.01-2_0.47-3_0.38\", \"332_l_0_c_0_2_3-0_0.59-1_0.13-2_0.94-3_0.17\", \"333_l_0_c_1_2_3-0_0.75-1_0.05-2_0.95-3_0.17\", \"334_l_0_c_0_1_2-0_0.66-1_0.71-2_0.15-3_0.8\", \"335_l_0_c_0_1_3-0_0.64-1_0.97-2_0.22-3_0.04\", \"336_l_0_c_0_2_3-0_0.43-1_0.03-2_0.55-3_0.38\", \"337_l_0_c_1_2_3-0_0.89-1_0.45-2_0.37-3_0.96\", \"338_l_0_c_0_1_2-0_0.71-1_0.6-2_0.43-3_1.02\", \"339_l_0_c_0_1_3-0_1.01-1_0.03-2_0.07-3_0.25\", \"340_l_0_c_0_2_3-0_0.36-1_0.2-2_0.6-3_0.12\", \"341_l_0_c_1_2_3-0_1.41-1_0.21-2_1.73-3_0.31\", \"342_l_0_c_0_1_2-0_0.83-1_0.47-2_0.45-3_0.57\", \"343_l_0_c_0_1_3-0_0.21-1_0.05-2_0.02-3_0.41\", \"344_l_0_c_0_2_3-0_0.03-1_0.13-2_0.87-3_0.0\", \"345_l_0_c_1_2_3-0_1.3-1_0.05-2_0.05-3_0.03\", \"346_l_0_c_0_1_2-0_0.18-1_0.63-2_0.8-3_1.07\", \"347_l_0_c_0_1_3-0_0.42-1_1.61-2_0.15-3_0.28\", \"348_l_0_c_0_2_3-0_0.37-1_0.2-2_0.67-3_0.46\", \"349_l_0_c_1_2_3-0_1.21-1_0.57-2_0.75-3_0.94\", \"350_l_0_c_0_1_2-0_0.42-1_0.43-2_0.08-3_0.78\", \"351_l_0_c_0_1_3-0_0.09-1_0.26-2_0.57-3_0.6\", \"352_l_0_c_0_2_3-0_0.41-1_0.18-2_0.02-3_1.65\", \"353_l_0_c_1_2_3-0_0.83-1_1.08-2_0.41-3_0.78\", \"354_l_0_c_0_1_2-0_0.53-1_0.11-2_0.03-3_0.95\", \"355_l_0_c_0_1_3-0_1.04-1_0.06-2_0.07-3_0.74\", \"356_l_0_c_0_2_3-0_0.82-1_0.25-2_0.51-3_1.48\", \"357_l_0_c_1_2_3-0_0.28-1_0.97-2_0.33-3_0.22\", \"358_l_0_c_0_1_2-0_0.96-1_0.21-2_0.55-3_0.51\", \"359_l_0_c_0_1_3-0_0.29-1_0.85-2_0.0-3_0.01\", \"360_l_0_c_0_2_3-0_0.37-1_0.0-2_0.27-3_0.11\", \"361_l_0_c_1_2_3-0_1.1-1_1.42-2_1.57-3_0.75\", \"362_l_0_c_0_1_2-0_0.1-1_0.1-2_0.19-3_0.72\", \"363_l_0_c_0_1_3-0_0.54-1_0.21-2_0.27-3_0.47\", \"364_l_0_c_0_2_3-0_0.0-1_0.18-2_0.99-3_0.57\", \"365_l_0_c_1_2_3-0_1.2-1_0.0-2_0.46-3_0.22\", \"366_l_0_c_0_1_2-0_0.04-1_0.79-2_0.58-3_2.26\", \"367_l_0_c_0_1_3-0_0.69-1_0.46-2_0.21-3_0.63\", \"368_l_0_c_0_2_3-0_0.84-1_0.25-2_0.01-3_1.58\", \"369_l_0_c_1_2_3-0_0.79-1_1.57-2_1.02-3_0.12\", \"370_l_0_c_0_1_2-0_1.37-1_0.08-2_0.38-3_0.02\", \"371_l_0_c_0_1_3-0_0.66-1_0.1-2_0.07-3_0.3\", \"372_l_0_c_0_2_3-0_0.04-1_0.01-2_0.83-3_0.49\", \"373_l_0_c_1_2_3-0_0.04-1_0.32-2_0.52-3_0.0\", \"374_l_0_c_0_1_2-0_0.17-1_1.52-2_1.11-3_0.93\", \"375_l_0_c_0_1_3-0_0.62-1_0.14-2_0.28-3_1.31\", \"376_l_0_c_0_2_3-0_0.05-1_0.34-2_0.67-3_1.07\", \"377_l_0_c_1_2_3-0_0.3-1_1.49-2_0.12-3_0.36\", \"378_l_0_c_0_1_2-0_0.96-1_0.08-2_1.15-3_0.16\", \"379_l_0_c_0_1_3-0_0.03-1_0.4-2_0.16-3_0.77\", \"380_l_0_c_0_2_3-0_0.88-1_0.03-2_0.54-3_0.18\", \"381_l_0_c_1_2_3-0_0.77-1_0.88-2_0.54-3_0.06\", \"382_l_0_c_0_1_2-0_0.27-1_0.49-2_0.58-3_0.33\", \"383_l_0_c_0_1_3-0_0.6-1_1.38-2_0.1-3_0.92\", \"384_l_0_c_0_2_3-0_0.01-1_0.12-2_0.47-3_0.42\", \"385_l_0_c_1_2_3-0_1.66-1_0.87-2_0.92-3_0.85\", \"386_l_0_c_0_1_2-0_0.25-1_0.02-2_0.35-3_1.3\", \"387_l_0_c_0_1_3-0_0.37-1_0.38-2_0.03-3_0.59\", \"388_l_0_c_0_2_3-0_0.31-1_0.01-2_0.2-3_0.06\", \"389_l_0_c_1_2_3-0_0.17-1_0.93-2_0.35-3_0.41\", \"390_l_0_c_0_1_2-0_1.91-1_0.61-2_0.7-3_0.0\", \"391_l_0_c_0_1_3-0_0.24-1_0.06-2_0.09-3_0.05\", \"392_l_0_c_0_2_3-0_0.16-1_0.03-2_0.09-3_0.36\", \"393_l_0_c_1_2_3-0_1.09-1_0.77-2_1.63-3_1.27\", \"394_l_0_c_0_1_2-0_0.14-1_0.11-2_0.28-3_0.78\", \"395_l_0_c_0_1_3-0_0.94-1_0.86-2_0.01-3_0.19\", \"396_l_0_c_0_2_3-0_0.27-1_0.08-2_0.67-3_0.05\", \"397_l_0_c_1_2_3-0_1.17-1_0.45-2_0.83-3_1.08\", \"398_l_0_c_0_1_2-0_0.41-1_0.24-2_0.81-3_1.91\", \"399_l_0_c_3-0_0.41-1_0.26-2_0.35-3_0.71\", \"400_l_0_r-0_0.43-1_0.04-2_0.59-3_0.83\", \"401_l_0_r-0_1.43-1_0.01-2_0.46-3_0.06\", \"402_l_0_r-0_0.78-1_0.36-2_0.11-3_0.63\", \"403_l_0_r-0_0.89-1_0.11-2_0.0-3_0.61\", \"404_l_0_r-0_1.52-1_0.16-2_0.04-3_1.25\", \"405_l_0_r-0_0.0-1_0.05-2_0.23-3_0.48\", \"406_l_0_r-0_1.03-1_0.04-2_0.01-3_1.2\", \"407_l_0_r-0_0.63-1_0.27-2_0.04-3_0.47\", \"408_l_0_r-0_0.12-1_0.23-2_0.0-3_1.16\", \"409_l_0_r-0_1.4-1_0.15-2_0.32-3_0.87\", \"410_l_0_r-0_0.25-1_0.21-2_0.12-3_1.27\", \"411_l_0_r-0_0.1-1_0.07-2_0.28-3_1.17\", \"412_l_0_r-0_0.01-1_0.1-2_0.06-3_2.13\", \"413_l_0_r-0_0.58-1_0.15-2_0.1-3_0.14\", \"414_l_0_r-0_1.17-1_0.07-2_0.32-3_0.67\", \"415_l_0_r-0_0.33-1_0.14-2_0.16-3_0.79\", \"416_l_0_r-0_0.15-1_0.03-2_0.02-3_0.65\", \"417_l_0_r-0_0.26-1_0.02-2_0.27-3_0.76\", \"418_l_0_r-0_0.76-1_0.12-2_0.01-3_2.09\", \"419_l_0_r-0_0.62-1_0.17-2_0.04-3_0.15\", \"420_l_0_r-0_1.9-1_0.36-2_0.24-3_1.36\", \"421_l_0_r-0_0.54-1_0.04-2_0.07-3_0.0\", \"422_l_0_r-0_1.29-1_0.71-2_0.43-3_0.64\", \"423_l_0_r-0_0.16-1_0.19-2_0.07-3_1.77\", \"424_l_0_r-0_0.97-1_0.17-2_0.11-3_0.38\", \"425_l_0_r-0_0.19-1_0.2-2_0.01-3_1.43\", \"426_l_0_r-0_0.15-1_0.18-2_0.19-3_2.21\", \"427_l_0_r-0_0.79-1_0.07-2_0.15-3_2.13\", \"428_l_0_r-0_0.91-1_0.59-2_0.15-3_1.07\", \"429_l_0_r-0_1.36-1_0.0-2_0.22-3_0.42\", \"430_l_0_r-0_0.25-1_0.01-2_0.05-3_0.51\", \"431_l_0_r-0_1.29-1_0.02-2_0.0-3_0.26\", \"432_l_0_r-0_1.09-1_0.0-2_0.05-3_0.01\", \"433_l_0_r-0_0.0-1_0.23-2_0.01-3_0.02\", \"434_l_0_r-0_1.61-1_0.01-2_0.21-3_1.94\", \"435_l_0_r-0_0.5-1_0.16-2_0.01-3_1.22\", \"436_l_0_r-0_0.19-1_0.04-2_0.04-3_1.15\", \"437_l_0_r-0_1.12-1_0.22-2_0.05-3_0.29\", \"438_l_0_r-0_0.7-1_0.01-2_0.1-3_0.21\", \"439_l_0_r-0_1.87-1_0.0-2_0.29-3_0.19\", \"440_l_0_r-0_0.88-1_0.25-2_0.04-3_1.33\", \"441_l_0_r-0_0.27-1_0.17-2_0.39-3_1.46\", \"442_l_0_r-0_1.66-1_0.02-2_0.3-3_0.96\", \"443_l_0_r-0_0.28-1_0.01-2_0.01-3_1.64\", \"444_l_0_r-0_2.76-1_0.06-2_0.04-3_0.52\", \"445_l_0_r-0_0.13-1_0.1-2_0.0-3_0.35\", \"446_l_0_r-0_0.31-1_0.28-2_0.35-3_0.77\", \"447_l_0_r-0_0.48-1_0.02-2_0.25-3_0.45\", \"448_l_0_r-0_0.77-1_0.06-2_0.02-3_0.49\", \"449_l_0_r-0_2.3-1_0.37-2_0.14-3_0.82\", \"450_l_0_r-0_0.28-1_0.26-2_0.11-3_1.25\", \"451_l_0_r-0_0.07-1_0.02-2_0.11-3_1.75\", \"452_l_0_r-0_0.74-1_0.04-2_0.29-3_0.75\", \"453_l_0_r-0_2.61-1_0.19-2_0.09-3_1.02\", \"454_l_0_r-0_0.73-1_0.03-2_0.17-3_0.55\", \"455_l_0_r-0_2.01-1_0.18-2_0.27-3_0.13\", \"456_l_0_r-0_1.77-1_0.02-2_0.18-3_0.93\", \"457_l_0_r-0_0.83-1_0.11-2_0.48-3_0.8\", \"458_l_0_r-0_0.52-1_0.05-2_0.36-3_0.56\", \"459_l_0_r-0_0.53-1_0.41-2_0.06-3_0.49\", \"460_l_0_r-0_0.83-1_0.43-2_0.26-3_1.05\", \"461_l_0_r-0_0.06-1_0.12-2_0.03-3_1.44\", \"462_l_0_r-0_0.34-1_0.0-2_0.34-3_2.22\", \"463_l_0_r-0_1.34-1_0.03-2_0.02-3_0.31\", \"464_l_0_r-0_1.77-1_0.34-2_0.26-3_0.85\", \"465_l_0_r-0_0.66-1_0.07-2_0.12-3_0.77\", \"466_l_0_r-0_0.49-1_0.01-2_0.12-3_0.24\", \"467_l_0_r-0_0.8-1_0.18-2_0.02-3_0.09\", \"468_l_0_r-0_0.27-1_0.14-2_0.13-3_0.22\", \"469_l_0_r-0_0.29-1_0.0-2_0.14-3_1.01\", \"470_l_0_r-0_0.07-1_0.45-2_0.15-3_0.3\", \"471_l_0_r-0_0.06-1_0.2-2_0.24-3_1.57\", \"472_l_0_r-0_0.42-1_0.02-2_0.01-3_1.08\", \"473_l_0_r-0_0.47-1_0.62-2_0.43-3_1.78\", \"474_l_0_r-0_0.71-1_0.11-2_0.06-3_1.44\", \"475_l_0_r-0_0.33-1_0.08-2_0.15-3_1.09\", \"476_l_0_r-0_1.4-1_0.04-2_0.04-3_0.96\", \"477_l_0_r-0_0.1-1_0.0-2_0.32-3_1.71\", \"478_l_0_r-0_2.1-1_0.01-2_0.08-3_0.99\", \"479_l_0_r-0_0.43-1_0.24-2_0.09-3_0.14\", \"480_l_0_r-0_0.12-1_0.01-2_0.1-3_0.7\", \"481_l_0_r-0_0.44-1_0.16-2_0.24-3_1.13\", \"482_l_0_r-0_0.49-1_0.23-2_0.03-3_1.56\", \"483_l_0_r-0_0.7-1_0.27-2_0.2-3_0.23\", \"484_l_0_r-0_1.57-1_0.02-2_0.5-3_0.65\", \"485_l_0_r-0_1.49-1_0.09-2_0.42-3_0.39\", \"486_l_0_r-0_0.66-1_0.34-2_0.17-3_0.64\", \"487_l_0_r-0_1.15-1_0.03-2_0.01-3_0.2\", \"488_l_0_r-0_0.57-1_0.16-2_0.6-3_1.51\", \"489_l_0_r-0_0.08-1_0.37-2_0.25-3_0.1\", \"490_l_0_r-0_0.3-1_0.6-2_0.33-3_0.15\", \"491_l_0_r-0_0.58-1_0.22-2_0.14-3_0.79\", \"492_l_0_r-0_2.17-1_0.19-2_0.02-3_0.35\", \"493_l_0_r-0_1.18-1_0.1-2_0.04-3_0.46\", \"494_l_0_r-0_0.77-1_0.12-2_0.33-3_0.8\", \"495_l_0_r-0_2.36-1_0.06-2_0.18-3_0.96\", \"496_l_0_r-0_0.43-1_0.21-2_0.05-3_0.13\", \"497_l_0_r-0_0.8-1_0.0-2_0.12-3_0.56\", \"498_l_0_r-0_0.44-1_0.05-2_0.04-3_2.41\", \"499_l_0_r-0_1.18-1_0.05-2_0.02-3_0.42\", \"500_l_0_r-0_0.77-1_0.12-2_0.01-3_0.85\", \"501_l_0_r-0_0.91-1_0.01-2_0.28-3_1.76\", \"502_l_0_r-0_0.48-1_0.01-2_0.2-3_1.78\", \"503_l_0_r-0_0.9-1_0.21-2_0.01-3_0.87\", \"504_l_0_r-0_1.54-1_0.54-2_0.01-3_1.02\", \"505_l_0_r-0_2.02-1_0.15-2_0.47-3_0.59\", \"506_l_0_r-0_1.1-1_0.08-2_0.04-3_0.5\", \"507_l_0_r-0_0.34-1_0.01-2_0.05-3_1.4\", \"508_l_0_r-0_0.15-1_0.04-2_0.28-3_2.15\", \"509_l_0_r-0_1.53-1_0.14-2_0.14-3_0.48\", \"510_l_0_r-0_0.58-1_0.05-2_0.16-3_0.68\", \"511_l_0_r-0_1.27-1_0.03-2_0.13-3_0.6\", \"512_l_0_r-0_0.1-1_0.17-2_0.25-3_0.27\", \"513_l_0_r-0_0.48-1_0.09-2_0.02-3_1.2\", \"514_l_0_r-0_0.26-1_0.28-2_0.0-3_0.38\", \"515_l_0_r-0_0.29-1_0.14-2_0.03-3_0.27\", \"516_l_0_r-0_0.21-1_0.33-2_0.55-3_0.47\", \"517_l_0_r-0_0.2-1_0.09-2_0.0-3_1.09\", \"518_l_0_r-0_0.16-1_0.06-2_0.42-3_0.79\", \"519_l_0_r-0_0.03-1_0.13-2_0.26-3_0.91\", \"520_l_0_r-0_1.42-1_0.2-2_0.04-3_0.21\", \"521_l_0_r-0_0.8-1_0.06-2_0.05-3_0.92\", \"522_l_0_r-0_1.38-1_0.19-2_0.48-3_0.1\", \"523_l_0_r-0_1.14-1_0.09-2_0.27-3_1.25\", \"524_l_0_r-0_0.13-1_0.12-2_0.48-3_0.59\", \"525_l_0_r-0_1.32-1_0.17-2_0.07-3_0.59\", \"526_l_0_r-0_0.46-1_0.07-2_0.48-3_0.88\", \"527_l_0_r-0_0.61-1_0.11-2_0.05-3_0.63\", \"528_l_0_r-0_1.15-1_0.07-2_0.15-3_0.51\", \"529_l_0_r-0_1.32-1_0.0-2_0.08-3_1.46\", \"530_l_0_r-0_0.64-1_0.07-2_0.0-3_1.32\", \"531_l_0_r-0_0.48-1_0.22-2_0.01-3_0.58\", \"532_l_0_r-0_0.31-1_0.09-2_0.5-3_1.35\", \"533_l_0_r-0_0.15-1_0.13-2_0.18-3_0.37\", \"534_l_0_r-0_0.74-1_0.03-2_0.04-3_0.98\", \"535_l_0_r-0_0.39-1_0.09-2_0.03-3_0.48\", \"536_l_0_r-0_2.05-1_0.05-2_0.4-3_0.95\", \"537_l_0_r-0_0.41-1_0.12-2_0.01-3_0.03\", \"538_l_0_r-0_2.52-1_0.27-2_0.35-3_0.55\", \"539_l_0_r-0_1.02-1_0.29-2_0.02-3_0.01\", \"540_l_0_r-0_0.03-1_0.13-2_0.03-3_0.62\", \"541_l_0_r-0_0.86-1_0.25-2_0.26-3_0.77\", \"542_l_0_r-0_0.65-1_0.09-2_0.19-3_1.21\", \"543_l_0_r-0_0.51-1_0.02-2_0.01-3_1.02\", \"544_l_0_r-0_0.56-1_0.0-2_0.19-3_0.88\", \"545_l_0_r-0_0.04-1_0.37-2_0.14-3_2.44\", \"546_l_0_r-0_1.36-1_0.34-2_0.0-3_0.24\", \"547_l_0_r-0_0.02-1_0.05-2_0.05-3_0.63\", \"548_l_0_r-0_1.78-1_0.49-2_0.04-3_0.86\", \"549_l_0_r-0_0.05-1_0.15-2_0.2-3_0.35\", \"550_l_0_r-0_0.1-1_0.06-2_0.35-3_0.56\", \"551_l_0_r-0_0.68-1_0.05-2_0.21-3_0.69\", \"552_l_0_r-0_2.65-1_0.01-2_0.24-3_0.52\", \"553_l_0_r-0_1.46-1_0.17-2_0.33-3_0.28\", \"554_l_0_r-0_0.58-1_0.04-2_0.06-3_0.91\", \"555_l_0_r-0_0.06-1_0.74-2_0.23-3_0.89\", \"556_l_0_r-0_2.18-1_0.02-2_0.02-3_0.37\", \"557_l_0_r-0_0.84-1_0.01-2_0.06-3_0.24\", \"558_l_0_r-0_1.43-1_0.0-2_0.26-3_1.7\", \"559_l_0_r-0_0.96-1_0.04-2_0.07-3_0.99\", \"560_l_0_r-0_0.84-1_0.12-2_0.32-3_1.56\", \"561_l_0_r-0_0.33-1_0.12-2_0.22-3_0.21\", \"562_l_0_r-0_0.27-1_0.0-2_0.03-3_0.17\", \"563_l_0_r-0_1.2-1_0.5-2_0.08-3_0.58\", \"564_l_0_r-0_0.6-1_0.12-2_0.16-3_0.16\", \"565_l_0_r-0_1.14-1_0.12-2_0.45-3_0.01\", \"566_l_0_r-0_1.76-1_0.03-2_0.05-3_0.48\", \"567_l_0_r-0_1.62-1_0.51-2_0.03-3_0.24\", \"568_l_0_r-0_1.83-1_0.12-2_0.1-3_0.69\", \"569_l_0_r-0_1.72-1_0.28-2_0.5-3_0.24\", \"570_l_0_r-0_1.25-1_0.41-2_0.23-3_0.21\", \"571_l_0_r-0_1.12-1_0.07-2_0.33-3_1.09\", \"572_l_0_r-0_1.09-1_0.08-2_0.0-3_0.11\", \"573_l_0_r-0_1.5-1_0.03-2_0.0-3_0.02\", \"574_l_0_r-0_1.36-1_0.05-2_0.11-3_0.34\", \"575_l_0_r-0_0.27-1_0.52-2_0.03-3_1.53\", \"576_l_0_r-0_1.36-1_0.26-2_0.0-3_0.26\", \"577_l_0_r-0_1.25-1_0.2-2_0.33-3_0.13\", \"578_l_0_r-0_0.6-1_0.03-2_0.39-3_0.42\", \"579_l_0_r-0_0.7-1_0.2-2_0.1-3_0.7\", \"580_l_0_r-0_1.57-1_0.01-2_0.26-3_0.36\", \"581_l_0_r-0_1.6-1_0.03-2_0.12-3_0.18\", \"582_l_0_r-0_0.14-1_0.07-2_0.15-3_0.22\", \"583_l_0_r-0_0.59-1_0.25-2_0.26-3_0.32\", \"584_l_0_r-0_2.37-1_0.12-2_0.44-3_0.13\", \"585_l_0_r-0_1.26-1_0.06-2_0.09-3_0.95\", \"586_l_0_r-0_0.74-1_0.05-2_0.06-3_0.77\", \"587_l_0_r-0_0.92-1_0.09-2_0.15-3_0.06\", \"588_l_0_r-0_0.92-1_0.12-2_0.11-3_1.05\", \"589_l_0_r-0_0.45-1_0.24-2_0.13-3_0.9\", \"590_l_0_r-0_0.81-1_0.06-2_0.05-3_1.02\", \"591_l_0_r-0_0.58-1_0.05-2_0.04-3_1.23\", \"592_l_0_r-0_0.18-1_0.02-2_0.21-3_0.71\", \"593_l_0_r-0_0.58-1_0.11-2_0.16-3_0.1\", \"594_l_0_r-0_1.07-1_0.11-2_0.24-3_1.11\", \"595_l_0_r-0_0.21-1_0.11-2_0.02-3_0.86\", \"596_l_0_r-0_0.18-1_0.14-2_0.03-3_0.25\", \"597_l_0_r-0_0.96-1_0.3-2_0.07-3_0.54\", \"598_l_0_r-0_0.36-1_0.15-2_0.05-3_0.21\", \"599_l_0_r-0_0.1-1_0.08-2_0.19-3_4.1\", \"600_l_0_r-0_0.16-1_0.14-2_0.06-3_0.54\", \"601_l_0_r-0_0.26-1_0.15-2_0.03-3_2.41\", \"602_l_0_r-0_0.26-1_0.01-2_0.14-3_0.37\", \"603_l_0_r-0_0.02-1_0.07-2_0.22-3_0.63\", \"604_l_0_r-0_0.74-1_0.1-2_0.02-3_2.15\", \"605_l_0_r-0_0.95-1_0.05-2_0.2-3_0.61\", \"606_l_0_r-0_0.6-1_0.03-2_0.06-3_0.71\", \"607_l_0_r-0_0.52-1_0.1-2_0.47-3_1.23\", \"608_l_0_r-0_0.31-1_0.0-2_0.2-3_0.55\", \"609_l_0_r-0_1.17-1_0.03-2_0.13-3_0.83\", \"610_l_0_r-0_0.04-1_0.0-2_0.01-3_1.4\", \"611_l_0_r-0_0.32-1_0.12-2_0.07-3_0.68\", \"612_l_0_r-0_0.58-1_0.12-2_0.02-3_2.95\", \"613_l_0_r-0_0.74-1_0.04-2_0.14-3_1.0\", \"614_l_0_r-0_1.31-1_0.11-2_0.15-3_0.18\", \"615_l_0_r-0_0.52-1_0.01-2_0.03-3_0.48\", \"616_l_0_r-0_1.5-1_0.02-2_0.36-3_1.16\", \"617_l_0_r-0_0.53-1_0.26-2_0.07-3_0.66\", \"618_l_0_r-0_1.99-1_0.28-2_0.2-3_1.68\", \"619_l_0_r-0_1.75-1_0.44-2_0.05-3_1.6\", \"620_l_0_r-0_0.03-1_0.01-2_0.07-3_0.35\", \"621_l_0_r-0_0.45-1_0.01-2_0.52-3_0.77\", \"622_l_0_r-0_1.4-1_0.0-2_0.24-3_0.86\", \"623_l_0_r-0_0.45-1_0.1-2_0.22-3_0.54\", \"624_l_0_r-0_1.03-1_0.39-2_0.34-3_0.26\", \"625_l_0_r-0_1.2-1_0.58-2_0.17-3_1.09\", \"626_l_0_r-0_0.37-1_0.06-2_0.2-3_0.49\", \"627_l_0_r-0_1.48-1_0.01-2_0.22-3_1.12\", \"628_l_0_r-0_0.14-1_0.01-2_0.37-3_1.29\", \"629_l_0_r-0_0.38-1_0.16-2_0.0-3_1.28\", \"630_l_0_r-0_0.21-1_0.04-2_0.25-3_0.88\", \"631_l_0_r-0_0.96-1_0.23-2_0.01-3_0.55\", \"632_l_0_r-0_1.47-1_0.01-2_0.03-3_2.04\", \"633_l_0_r-0_0.04-1_0.02-2_0.1-3_2.03\", \"634_l_0_r-0_1.05-1_0.04-2_0.03-3_1.21\", \"635_l_0_r-0_0.81-1_0.04-2_0.18-3_0.73\", \"636_l_0_r-0_0.32-1_0.03-2_0.15-3_0.81\", \"637_l_0_r-0_0.8-1_0.28-2_0.02-3_0.13\", \"638_l_0_r-0_0.56-1_0.04-2_0.01-3_0.26\", \"639_l_0_r-0_1.35-1_0.04-2_0.15-3_0.98\", \"640_l_0_r-0_0.23-1_0.3-2_0.0-3_0.28\", \"641_l_0_r-0_0.01-1_0.04-2_0.05-3_0.83\", \"642_l_0_r-0_0.28-1_0.11-2_0.26-3_0.86\", \"643_l_0_r-0_2.01-1_0.14-2_0.2-3_1.49\", \"644_l_0_r-0_0.87-1_0.07-2_0.09-3_0.37\", \"645_l_0_r-0_0.1-1_0.21-2_0.14-3_0.15\", \"646_l_0_r-0_0.9-1_0.46-2_0.25-3_0.54\", \"647_l_0_r-0_0.93-1_0.19-2_0.26-3_0.11\", \"648_l_0_r-0_0.73-1_0.02-2_0.12-3_0.8\", \"649_l_0_r-0_0.09-1_0.09-2_0.07-3_0.1\", \"650_l_0_r-0_0.5-1_0.05-2_0.23-3_1.96\", \"651_l_0_r-0_0.23-1_0.15-2_0.27-3_1.08\", \"652_l_0_r-0_0.64-1_0.11-2_0.25-3_0.98\", \"653_l_0_r-0_0.44-1_0.12-2_0.14-3_1.23\", \"654_l_0_r-0_0.63-1_0.03-2_0.01-3_1.1\", \"655_l_0_r-0_0.63-1_0.1-2_0.1-3_0.28\", \"656_l_0_r-0_0.24-1_0.4-2_0.02-3_0.22\", \"657_l_0_r-0_0.25-1_0.01-2_0.03-3_0.18\", \"658_l_0_r-0_1.18-1_0.15-2_0.04-3_0.79\", \"659_l_0_r-0_1.22-1_0.19-2_0.07-3_0.03\", \"660_l_0_r-0_0.59-1_0.14-2_0.02-3_0.47\", \"661_l_0_r-0_1.74-1_0.23-2_0.26-3_0.56\", \"662_l_0_r-0_1.92-1_0.08-2_0.04-3_0.17\", \"663_l_0_r-0_0.84-1_0.14-2_0.01-3_0.41\", \"664_l_0_r-0_2.42-1_0.02-2_0.24-3_1.16\", \"665_l_0_r-0_0.4-1_0.44-2_0.05-3_0.86\"], \"type\": \"scatter3d\", \"x\": [0.668770356043102, -3.469822028257146, -2.246701744911745, -1.537501345600605, -0.6711264940828798, 0.1793897989797825, 1.1210070143481883, -0.0131609656955011, -2.3298518100461565, -0.4689472033859085, -0.6966669415047012, 3.017712129659384, -4.383911092928956, -1.190663174987415, -0.8142070747981415, 0.12792547835272916, -2.559464525860789, 0.06757104919079714, 3.1440376617065153, -4.317903915540729, 1.4338268156943565, 0.21660890190636298, 3.0277180054511277, 0.5339349319714664, -1.20336331816764, 0.6181478406515162, -1.9994745496438207, 0.952310296895185, 1.4609186716643672, -1.7127677579747707, -1.6407336739232368, 3.0603970041006243, -2.8298375094100585, -1.7038867781931357, -1.655924448006798, -2.317805992499419, -3.4430894932226166, -1.3239882329140742, 1.5035808495115794, -1.1064298815883618, 0.07358379703161233, -0.303544665338773, 2.2049274501387552, -0.025711418298145685, 1.4173370915328412, -1.1598530868477737, -0.2480161973954187, 0.46048650404415387, -0.3818845633092288, -0.22271557828375552, 0.36934426536587167, -0.8536548778911829, -2.8565212965071427, 0.7076092376549338, 2.1089162248540334, -0.6030158930095347, 0.1187175507476848, -1.9534525991778409, -1.5253266925978228, 0.4749482028027227, -1.327655936444644, 1.371422428941609, -0.6069645242773469, -2.2091847308549943, -0.2590039988799393, -0.9551821753346276, -0.38527033777880015, 0.27301802567525174, 0.6460371899678222, -0.6587860476459069, 0.22885320167300802, -0.017584032705438055, 2.6824931395561107, 1.8999854070902193, 0.36743659110552246, 1.5287507281495172, -0.5276951855646121, 0.07442321482770951, 1.1764415870638765, 3.2802132165059357, 0.4483902807149578, -0.23228053131413817, -6.051864148206161, -0.027812601640935866, -0.5819679854538261, -2.902107757348837, 0.4887546210246347, 0.6008955970943555, -1.0846371143166513, -0.09771610840380902, -1.5070890844860136, -3.285610969727997, -0.9091038989216823, 2.3264131651176374, 2.2506254152784897, -0.005354219401647261, 0.3245436298137589, -2.2142471364035754, 0.7754740467727018, -1.2279315917137943, 1.5087554427982035, -0.7364372098124675, 0.5130611222627663, 0.9117358061439468, 0.7485654806973271, -0.5492204462657579, 2.308323759779673, -0.11482413892375375, 0.07283696460934357, 0.7753723947393719, 0.18704053045316765, 1.7206209273062345, 1.701300648147799, 0.007209165457250039, -0.2454119963889592, 0.16094147297186265, -0.26357178869950715, 1.2244514064480145, -1.8526703984229786, 0.8744241037600438, -2.409183912408066, -1.0432420874158372, -0.3587759352359034, 2.8792037554814334, 0.4763711070483458, -0.8949120835183687, 0.48819871891644023, 2.732386505629029, 0.3674714122582445, -0.6148249852267961, 1.528282543728575, -0.059167986125432025, 1.5440555847136874, 1.9797649307105885, 0.6663317843325269, 1.3671084496606023, 0.7393316580313909, -0.16898931894182267, -1.1235471525874434, 0.42499251617756956, -0.20447466710884313, 1.052708813123586, 0.06716821618233826, -0.2952587622202463, 2.145238557913054, -1.4489525541278625, -0.9481912993620802, -1.2511075032130645, 0.5774483252630918, -0.5191649976629125, -2.5527100353647953, -0.18111349050174338, -0.026834533127188247, -1.9716311675470661, -3.76816955867177, -0.563277952131166, -1.206702644698161, -0.012818512124679647, 0.19655191896229648, -0.722350845904748, 2.689127258738596, 0.49720923641916837, 1.0022678351402594, -1.9848861450341522, 0.4742185072112024, 2.0488206057494076, -0.7706441399511622, -0.7074169244977289, 2.457114769182259, -1.4939493629008727, 1.5975739683781607, 0.07484244753883415, 2.023865960218915, 0.6530969167352979, -5.847556831629487, 0.5831347730390591, 1.1765090195627355, 0.5017928334259855, 1.986847016908471, -0.20324886713496848, -1.6347714785247651, -3.2990836607101244, -1.3913222744345826, 0.6723389640711624, 0.25438914324697987, -4.561567351361305, -0.9036841033205343, -0.7007272865782176, -0.1720205618394044, 1.9282582316963965, 1.2265421126802802, -0.3294130648736125, -1.4795308934881926, 0.4332010066361839, 0.3815364872410332, 0.0038214224758300946, -0.9732715477546602, 2.4006731729997695, 1.2258598300505545, 0.33781921666305126, -1.9126288496419521, 1.7055999275245985, -2.319573685379586, 0.034128281541003766, 5.292706852344926, -3.9495898655007116, -1.5120389588120018, -1.0442335754901382, 0.5723431159494556, 1.7255712814956594, 1.4833295397255384, 0.6067877755803858, -1.4253772422194368, 0.2941939351438385, -1.6249933409374115, 1.1694151025937969, 1.1836883778587164, 0.6145756376076433, 3.5495543641096936, -0.660632951272162, 0.3219405085521798, -0.7749740233627899, 1.2535005180596506, 0.041268145479591595, 1.6358715219493494, -1.1624579633480856, -0.7456710390437288, -0.3372565372498494, -1.3811783232791537, -1.1519854694658282, 1.2777810821680433, -0.4352489836830749, -1.590270420282508, 1.2615610372434076, -0.3429629901423955, -0.07265373658870761, -0.0966555591292602, -1.8706241070344187, -0.5136092051412952, 0.35705775561626546, -0.3276365465755825, 0.23868534557910873, -2.2432082390723775, -0.4660373381770668, 0.132470270408748, -0.47717600279614153, 1.3855327841669727, -0.26509062536513683, -0.6856579551866229, 4.581045840345982, 1.515663204463681, -0.37504022970166245, -1.8836078908424827, 2.0668111377643394, 0.19777105535517808, 0.18250994770405984, 2.01264871918164, 1.3210829467927832, -0.1053638901419966, -0.05832636956491167, 1.9910607240105964, 0.7346117860028811, -0.8423169546072163, 0.040009973241263534, 0.028108280980230067, 0.7710268773587011, 1.763951795612765, -0.032478134988489636, -1.5407785060601529, 1.5135575566745783, -0.2719681661434069, 0.0844680982528393, 0.7760139161923609, -0.9550487361231552, 0.19514870751360566, 0.11022207632007115, -1.6946354614790167, 0.860252549894766, -0.16765750041750685, 0.051998599134896704, 2.187140243837739, 1.1079370246025981, -1.9511321601655547, 0.4508232890054296, 2.6376834796018107, 2.3717205045227527, -0.33043902842573664, 0.24326569107564225, 0.4226844728616023, -2.4354469604640787, 0.1894088533716166, -0.3781373375232612, 0.6926098586460763, 0.6647280150966891, 0.5420679908877344, -0.6446057216487638, 2.1786760659395683, 1.1242561740821373, 1.9235965668721908, 0.11887256094279225, -0.15113114402678515, 0.31929141611669853, -0.9085130877750314, -0.4051371050876784, 2.207918276064519, -1.2761043486786372, -1.9582141551508254, 0.45043432675493167, 2.1201745231565847, -0.44517427474922555, 1.4473153074076734, 0.066092605181323, -2.11708681360958, 1.2257941246473791, -2.406219059808152, 1.136433396355308, 1.5932980174170301, -1.949127772203427, -0.5522735842974115, -0.04939462134108417, -0.7343107683306012, -1.4972265383085501, -1.3829463455471507, 0.0953179434760301, -0.19126583037282824, 0.7398139309963387, -1.8779245685513914, 0.7534386295133245, -0.9924804030345242, 0.23612508749823685, -2.98955265084727, 0.5515226614207415, -2.9318232546554324, 1.6322096387135574, -0.47383740194067064, -1.1527095105448464, -1.5861554412869856, 0.36550733019689013, -0.4303356144766356, -0.0660198703944142, 0.6735745571334749, 2.4383526841043484, -1.5384915772954635, 0.029816895648982822, 0.8654081927812349, 0.052579051970352716, 3.8412346276699894, 0.1780826240895102, 2.345263313934019, -0.837673073648993, 0.669102658222572, 0.5739628178046104, 4.055623173962509, 0.4079579207723148, -0.26747930954304455, -0.07176773940304794, 2.0244690494354844, -0.771417148767456, -0.6392706757501233, -0.00036152259693557646, -1.0652261957097, 1.840383945284807, -2.8727428941911413, -0.43042450109399544, -0.993259129143444, 1.0952038851560888, 1.2490074156111284, 0.20883458095760266, 0.18069355227990722, 1.8671395554781534, 0.3838162878655818, 1.0608674190710141, -2.3221899812055202, -0.5239804934134045, 2.820127230512491, -1.1687271923986864, -2.718259686724318, 2.4447010510634106, 1.7384799469442775, 0.5353560212220236, -0.5440628357876485, 0.959000402870526, 1.2619753142853705, 1.08472902283296, 0.4864239648069803, -1.3927260304111424, -2.9430762392233842, 0.2665473958615453, -1.6911793128717612, -1.0512137881772434, 2.0980339819165827, 0.09701276431081768, -3.5248573805948995, 2.6437773021944837, 2.7735870036260453, -0.011658180504621399, 0.6749458900437048, 1.5931037897911333, -0.8091237572455696, 0.4361111632967302, 0.8449023316662035, -0.6261299974970007, -0.38547873801893034, -0.004949823683376723, -0.5257575633173909, -0.232283518901454, 0.263635299607456, 0.061680007056477845, 0.0029310911932832174, -0.6378988943513362, 0.12002573211489621, -0.2815232287629284, -0.060653248621581494, 0.7088662563778878, -0.3246720550539971, -0.3191828802977616, 0.10409519501705958, 0.27205251737299824, 0.3574897644468022, -0.3557610567943685, 0.38488265205978583, -0.07257335504733803, -1.0081314663983751, 0.21681198654537734, 0.11177167845299643, 0.0224700756721707, 0.5552828890705758, -0.19731558921033454, 1.1331240525082795, 0.21741235723520935, -0.1687831477561816, -0.16170180335948003, -0.1305082616755167, -0.013616452572444726, 0.20968682472275765, -0.012001830505563789, -0.1862196367909552, 0.04518527490470685, -0.15726120727351892, 0.29066234299518634, 0.4801718060403002, 0.3875005631031959, 0.2958872724687143, -0.009037402324883918, 0.33217268958688506, 0.043233616238392704, -0.3916317215792812, -0.463944199548715, -0.15794662741392804, 0.536649416991129, 0.1114215745530566, 0.10727068911117323, -0.6259880344485241, 0.2354211766846465, -0.43051410330944456, -0.6960566641062484, 0.467045791153779, 0.479331995393405, -0.9036370208220877, 0.07347103801748595, 0.45446976035854686, -0.030253703060355082, 0.5616511779613681, -0.021841396770950924, -0.5857576013354191, -0.11887114239458899, -0.13020191448752166, 0.08099137186157473, 0.44959163471878644, 0.16283200022250424, -0.14957979336078586, -0.9126638050838044, 0.6458060540346248, 0.5269568444972531, -0.06342392726534408, 0.4442618442826571, 0.03971791857946638, -0.31927790183524013, 0.8341205803887809, -0.6331314345122301, -0.3629475776654386, 0.6761177746463213, 0.0255286768562484, 0.4048723379413291, -0.5573485665121278, -0.977285783629206, -0.2701227105188442, 0.008570391494554293, -0.8408630943225882, 0.2508912501979905, 0.629126023944858, 0.9740899469910189, 0.03697763539233411, -0.14053990071865577, 0.3298687473869965, 0.3508322280340667, 0.0452197210552638, -0.11631583583571725, 0.3027348248303201, 0.051892450980202315, 0.18072226982125544, -0.750535458270296, -0.6152433428330922, -0.22075509431447035, -0.06367354474889515, -0.4744109673085022, -0.2589419401508473, 0.045539931834401595, -0.7335694369181174, 0.22330858758459868, -0.33801275954783233, 0.12655070511445343, 0.3159177134868134, -0.018717283347444214, -0.00044611594990617224, 0.09480709938552045, -0.547056528851393, 0.7289598632910839, -0.6531738118367684, -0.37219635034804216, -0.03709022102029983, -0.2668289563842, 0.8063839284253042, -0.2691183680338635, -0.8489143285832417, 0.06872058658451871, -0.5716590665083631, -0.04579735919469407, 0.14784473814203747, 0.12428421656527758, 0.6130419815848468, 0.04379928434979232, 0.6356659202232243, 0.4749700229631417, 0.1759841727431218, 0.25949485609029527, 0.4032456153175193, 0.010566763330711569, 0.35035940453631664, 0.034731408417875, 1.047628431433663, -0.2564453470377318, 0.18669721242090973, -0.23611347753590772, -1.176321331684067, -0.2421628765685164, -0.0014382699016064282, -0.3780709098649502, -0.10579259167167195, -0.2813088644397651, 0.3502224697423108, -0.29214818674350684, -0.23978829556623796, 0.33130380564430917, 0.2460796026914417, -0.6614005666834566, 0.01889211512328473, -0.06197543222445396, -0.26281324922903987, -0.5602901262267252, -0.8591159296808536, 1.0995801448221774, -0.21873238208313997, -0.5062243927562089, -0.3998343245826478, 0.8836288528131022, 0.16487889929827754, 0.07538365865127611, 0.10399623951649269, -0.5015845002689997, 0.29987756527186044, 0.3802646083619923, 0.00442531901838261, 0.006148962100817668, -0.11015105961314167, -0.02643979610077675, -0.001670001094336737, -0.3314873422265252, 0.4204061270029284, -0.10159696196833387, 0.26450392306449466, -0.4168727355282699, 0.23657973247938865, -0.8570021261682776, -1.0212912436095831, 0.29757924030307753, 0.10252646603365347, 0.40229378767843127, 0.7183582446473392, -0.5583371940785866, 0.1470839347513991, 0.17034523903919782, -0.5128863352685251, -0.15550160241918207, 0.23690497733896568, 0.017144341674361654, 0.17521726411026686, -0.06588609251779924, 0.8629986143937526, 0.4737668751802556, 0.14527122940068024, 0.4669432501834478, -0.32776508388692543, -0.7640442384260187, 0.023427988544072582, -0.20330317584860294, -0.05930435652162906, 0.4660858589552491, -1.2486694271137464, 0.12556130188852554, -0.244412524103847, -0.1629266367768867, -0.021420643719140264, -0.2157869283704989, -0.2311465350250823, -0.1370121178152385, -0.4334256305792421, 0.6434512618619808, -0.4442523526803608, 0.48002584024537726, 0.3086825707648349, 0.5191222334639555, 0.5935739328145135, -0.26885331866808354, 0.5623365194654931, 0.17416305647736788, 0.9071587730735715, 0.22025221865246838, 0.3665382270317063, 0.00454716634128993, 0.9559246349675279, 0.010544053176962293, -0.8625977482667951, 0.1917251713794749, -0.16022508890409265, -0.6720599433226527, 0.5174061404084463, 0.01984305220780836, 0.26952042763197015, 0.18284586519505208, -0.0001329504073774559, 0.1056706753694402, 0.9140358502646432, 0.5062242964575522, -0.0857530665329636, -0.1363271407066159, -0.25178144152047915, 0.7215866436896994, -0.12389264898570894, 0.9567194755158093, -0.5100702461090496, 0.5668897254923263, 0.24707281769904357, -0.21037398316546574, -0.05929378938270972, -0.16957491594227395, 0.11344782776753243, 0.09694151625996396, -0.26813996756239705, -0.24470415006087884, 0.33851452404347976, -0.28369803315356484, 0.15943229342477266, 0.37459310253557876, 0.24245860087198592, 0.06711554531566113], \"y\": [-1.7627168861136298, -0.9901351704148386, -0.751036795373464, 1.7970977756509767, 1.7863316112402745, 1.9630802568722845, 0.2281329610819771, -0.91002536555239, -1.8207924406602674, -2.2337640798925555, 1.484279664950545, -1.2741308481171658, 2.9686983083045106, -1.5613529433632956, 1.9554091389676647, 0.6477453074630912, -0.7603317560911488, 1.6506117198836332, 5.000800047905931, 2.2453526613325216, 1.7896444853028177, -0.9104227967775916, -0.8505704388337052, 1.5430529956020278, 1.2063561824647817, 2.487610021917034, -3.0596281620172543, -1.4694710453696243, -1.7340790736783913, -1.488683808676367, -2.6439288871566062, 0.5733638656204523, 0.9796295622848767, -0.2501624799412897, 0.4215829856590395, 1.0832035090461358, 1.7585333023392538, -0.3126888077284255, -1.0967223170532694, -0.37000176180176864, 1.599597916409623, -1.126587890114627, -1.004967718789422, 0.01081914554539946, 0.27468152897049464, 0.6981790322581167, 0.9739828717497981, -2.4568880503388657, -2.244500489047262, -1.8688817577898194, 0.19733230583107714, 0.611168951691346, 2.5635495700711077, 0.8848284876436217, 0.19346517646968972, -1.200695708063114, -0.5397810509723494, -0.7201391681138507, 2.3059608260328255, 0.7168112920534547, 3.8691677774112163, -1.6386069335604938, 0.588974283125025, -1.2582887609392872, -2.151003224982118, 0.6027408402366228, -1.8602996764441015, -1.6811913826106553, 0.08083830594434832, 2.1641006875978377, 2.629185645496818, -0.13531778521521726, 0.7636112146896039, 0.9323302234736545, -0.5236336156861991, 0.05649659664766568, -1.1880127412699757, 0.016044623187666116, -2.115339096456724, 0.6486979414156243, 0.1262391643604932, 5.409409047137898, 0.5397880551957105, 0.02145567696894087, -1.3842851907628149, -3.7083019370186054, 1.304918851072656, 0.04849986134425725, -0.984576178138464, 0.288503472099051, -0.1580678373731078, 0.2777687136604322, 0.33837933460425884, -0.8450780704337426, -0.45634057802396505, 0.0006373480884675205, 1.6861812307523263, 0.4016240319556502, 0.07709084508641928, -1.0771110965976087, 3.086065652888037, -0.10505228955027371, 0.4531094123626595, -1.7845032100091074, -0.8415508385170999, 0.2592780043388418, 2.632055731616175, 0.12367809461426588, -0.2855640991026364, -1.69408110189025, -0.13531914335366071, 0.011133981184272201, -0.367039258553701, -1.0189066918229968, 1.4186218913600148, -1.573427576212909, 0.16593598180394717, 1.7617044922547604, 3.0425459172631695, 0.19583996173150148, 1.4278963872047723, -0.6156662661114926, -0.8211057927992617, 3.137659856538606, -1.4010331174617734, -0.2233047673781649, -0.25351430499005584, -0.6220953768102011, -0.8938865441839197, 0.30307447005991534, 2.3319497841044714, -0.09370266855654, 0.7664556673067238, 0.7174927489721556, -0.40629589728879517, -0.8251818194137783, 1.7458523848539569, 1.463364607085332, -2.9204734617214703, 1.4318629818442317, 0.61128038932067, -0.795117034128841, -1.3280453493214257, -0.8098348264471649, -1.8284557363495464, -0.27772936524926856, -0.5477838174663842, 0.62118075564397, -1.5405446554444413, -0.12567147803156065, 0.43990502647967605, -1.7187128406987904, -0.30923673403496504, -2.0614230472886286, 1.0481180444161546, -0.2625896096622798, 0.32273317367034776, 0.3622002606887008, -0.032459228034775967, 0.12679456284653642, 0.5009783764940391, -0.6381019435747637, 0.1266077428148444, 1.5977211869012011, -0.5471806328132743, -1.3994908206162977, 1.8980024307720198, -0.6349009393735805, 0.21780673301247472, -0.47570267397142696, -1.824039358194492, -0.01600462643308888, -1.7582903888642363, -0.6312386401005571, 3.0189851238747973, -0.9146466859840646, -0.08905799265496725, -3.424692988649855, -2.811644272439415, 0.9449570342137182, -2.5240598663885225, -0.6662008511254596, -0.42943977562669755, -0.13774362965527276, -0.8673138286938968, 1.8285951189893506, 0.1096487811140559, -0.5030521552277821, 2.850397474079475, -3.24875460909702, 0.14725586444606545, -0.04261002442221235, 0.5786186974319246, -2.9972620457241854, -1.9824023884676698, 0.028596092263362596, -1.874458009267069, 2.5264213438319985, 0.4769181699888176, 0.019230538980982936, -1.3295737466348154, 1.3653842604613817, 1.6058663566942004, 0.03555380212758389, -7.393442920325438, -1.036335323411695, 0.22578177343696168, -0.7596866573413124, 1.4495208613233537, -2.2962086424229207, -0.07474426597670636, -0.12101521730728668, 0.7311785753092167, -0.8711628681747525, 1.8785005520200695, 0.359551321669295, 1.7825528526412502, -2.673731451432014, -2.1526955976318143, 0.41757354638421906, 2.391263035087357, 0.41366724471682187, -2.9494098679259655, 0.0628749654728323, 2.2633955501763894, 2.3734675323622736, -2.3730643603086112, 0.3828195286508131, -1.007643716103844, 0.19317339285265045, 3.407951686413869, -0.18271970868745036, -2.575994610452073, -0.9742955676291702, 0.8982875551635019, -0.009896068903210374, 0.30428687757132705, -1.3236964566404734, 1.682995111617568, -0.04501964946681194, 1.7659510183952014, -2.44222088455265, -0.06498248919887241, 0.8096723797223319, -1.3295672865324277, 1.5428372273193267, 0.8706123747507029, -0.8100476778461126, 0.4816673483848953, -2.4132212252393144, -0.7574683827194395, 0.001907362163701634, 0.6223736425271875, 1.561271712571275, -2.685790908813605, -0.1495418978770136, 0.33113305686201, 0.8682690573224604, -2.7746632778114146, 0.7695030436470243, -0.20789036605458694, 0.0684431370852889, -0.706091662685006, -0.03347399787725208, 0.8577637164506794, 0.7063354123116241, -0.643970486417928, 0.024493237407407307, -2.0398380204717355, -0.15334103953263525, -0.8231344425309242, -0.017421925901070247, -1.7636839884969893, 0.253739069168178, -1.5546337261902732, 1.3708159300076137, -1.1734406665819772, -2.4458379423026533, -2.4744676915475106, -0.03511217158693186, 0.09589197288964502, -1.709434332055529, 0.648889653487992, 0.3268360121392029, 0.9499758808082496, -0.2358534389964947, 4.033608006980167, -0.7341155525432569, 1.1983634769946019, 0.9155845816353484, 0.7002309566212447, -0.14385373739883184, -2.8777907101747076, -1.6696004172553363, -3.470398942432057, -0.2369210737567588, -1.2234319868155674, 0.5355630724997696, 1.1116096111811935, -0.12146014362109273, 0.1581980619503141, -1.4547802617282073, -0.27473048713029763, -0.234530759349535, -1.3480838714405072, -4.780587507859832, -1.3824096512638646, -0.6153433192507999, -0.27342509096453327, 0.9508373384907461, -0.09885620848396647, -0.1798368482596803, 1.6853814644065874, 0.5997691546857642, 1.6340643479512251, 0.5585062213161406, 0.05779129284415721, -1.3770275749765855, 2.070900765977047, 0.03710621597716044, -0.9221475655742197, 0.2370881486562126, -1.7681442957151594, 0.4605352607358988, -0.20547305272727082, 0.8893536823100773, -0.22770200405725935, 0.701877685569524, 3.0085732671678405, -1.1130576107656567, 0.21230676566530945, -0.5001180156054165, 2.185446907057298, 0.9477656115712069, 0.1452488902651435, 0.7422666092501621, -0.5492861557646607, 0.5580539655577922, 1.1695092857347489, 0.4850034550672688, 0.596613148110426, -1.7285595118969428, 1.4922778524964249, -0.024930719873177548, -2.6304424454413913, -0.9365207988405363, 0.8799660416268865, -0.1494282397657075, -0.6746905202770933, 0.7488309596032939, -1.7955742202893221, -0.73676371492786, 0.35073596744744845, -2.151580474553595, 1.8649759303242754, -0.327352284163577, 0.8130161229574735, 2.2881672731774727, -1.9433968816393368, 0.00010782778433967225, 1.570066943813554, -1.5656476675652173, 1.7285090483967265, 0.2658743501705355, -2.260613194245777, -2.769129512529316, 2.955209292250275, 0.21048963863776465, 0.010539210470124528, -2.1782128039159905, 2.6896709497571565, -1.0375210604918632, 0.8288900563133151, 1.2919210698038843, 1.1119115124329961, -0.46733019314325036, -3.3851866156868358, 0.12178091791363815, -1.1461881302496422, -0.3229080338954289, 1.5589930421291192, -1.92688949474649, 0.5808564301854698, -0.1020427118852921, -1.3509666563981135, -0.9723359244284251, 0.3503275819192183, -0.0323326120614543, -0.20243041568936615, -0.3520287762519151, 2.1595832025026507, 0.32827944360078587, -0.26537562944802856, -2.182064474390268, 1.9529154301675267, 0.017070906084041798, -0.8520610945827208, 0.8289024294867865, -0.8743444384008758, 1.055302987200791, 0.5873955921311086, 0.4597772229508337, -0.31490160552113544, 0.045481805812455534, -0.0389486955150499, 0.6350166456066595, -0.013416104875871051, -0.041377622861147004, -0.005671044303584091, -0.7250012702643921, -0.7669044746378338, 0.30058294954798287, -0.5126567330347648, -1.1623009898969265, -0.7422300993696429, 0.1612068960293776, 0.017072744128502876, -0.43464195577164916, -0.3191791734948943, -0.11662554871909463, -0.3233672045749984, 0.28870011157612413, -0.976147934198094, -0.0671598459512527, -0.40143147770794296, -0.014018139653392681, -0.19118948445595607, -0.3170490607065544, -0.1501870273255099, -0.6948678606071758, -0.04582750657298559, 0.0012634607897362585, 0.5934273312058247, 0.2779078779187691, 0.8221194987947803, 0.0265553343414812, 0.04551278368871617, 0.49381921847281907, -0.5865835221665918, 0.33277634263600264, 0.8527791930241271, 0.5138815650612107, -1.1846725995743361, 0.11528901615077157, -0.043171992751952305, 0.0039631694593056915, -1.2539501748420283, -1.1448009515479178, 0.02317897668885931, 0.6667118434935344, -0.31029612999582906, -0.7104572436414244, -0.42122971792647845, 0.0916851792873013, -0.8857602699538454, -0.26514607745416446, -1.0074173549777845, 1.1738272642860192, 0.3606326449726323, -0.05813637138508747, -0.882902975499475, 0.1027352169808892, 1.2876367405615152, -0.3557844740910917, 0.5964863400710905, 0.32039463532792667, 0.12203077553156756, -0.0237434856579859, -0.27807099779597566, 0.4545481303477854, 1.1572325573195512, -0.23809947173500215, -0.05951070475055989, -0.4347330619974564, 0.20310051953744068, 0.6488621333650534, -0.11189868182070802, -1.1812739198171693, 0.08279072240301644, -1.328025103342611, -0.10400637743061865, -0.4153637808051009, 0.5019962831050407, 0.36209223175627514, -0.9689506921672232, -0.5803452291573611, 0.22691595755683358, -0.6138077823093688, -0.7018961342467746, -0.24700865719681322, 0.3348925513708663, -0.14254810486842234, 0.024992545215732093, 0.04427138851630291, 0.4368696256396138, 0.18005839477354255, 0.539092270319384, -0.44837228735511625, 0.6073727199867316, 0.18720567954172831, -0.011649184683315118, -0.27663055519960394, -0.1980717314349078, 0.11933948646977646, -0.017358535784400202, -0.915030840253278, -0.036351351532206276, -0.14799529318927962, -0.27991957818337754, 0.37420577006011047, -0.17866836762054789, 0.2582703204415438, -0.2536519516435026, 0.02095767378047855, -0.03992082526734035, -0.030381590031045857, -0.8314903702331524, 0.886812795125223, 0.8528732927236201, -0.4948689437068043, -0.6336069102245636, 0.292189675719045, 0.4759380848516053, -0.4698510048199538, -0.4785319359473871, 0.09652946112031992, -0.47836013352515677, -0.5534411926262623, 1.1426771408398209, -0.17187774617304713, -0.004433794073130593, 0.053676112823670845, 0.8463176583786226, -0.3952150677361642, -0.03690832214243715, 0.02596700280254744, 0.7745115556133617, 0.0722275568664569, -0.839950123728947, -0.028111470303445782, 0.20223673817058807, -1.0174183639659815, 0.9553875464141639, 0.014235162349526957, 0.4869348015002976, -0.14409032660214402, -0.07734591567841606, 0.04687656805110789, -0.03586164597378717, 0.27526098828474044, 0.41626820535033876, -0.20607659920045426, 0.321007483481473, 1.1114682474731115, 0.0646249010068426, 0.38236040883377614, -1.123770428099, 0.11618939855134797, 0.4117517448176889, -0.08631702899977665, 1.0867475563973736, 0.47461200076021415, 0.14291653112466943, -0.0818769086851137, -0.1553283205352552, 0.4486967693972434, 0.04633612392775818, 0.08928985741137561, 1.3427775678765204, 0.6218502202209546, 0.2874213707020383, -0.5393644815572869, 0.30614003827188524, 0.025457675107200445, 0.5655900251361833, 0.08624427723909915, 0.03739472868260413, 0.37862928526727513, 0.6592480689625426, -0.165369550425057, 0.796238050148661, 0.7164609083712984, 0.5042049533348008, 1.1005848884233804, 0.4374887972773474, 0.15988864460839286, 0.05998572231308224, 0.18439811858892477, -0.4195571202456009, 1.2496450450802647, 0.4426128446323607, -0.035617699022244424, 0.2116735300651589, -0.9082464889217251, -0.29867893712667354, 0.153060868450926, -0.5254790779212232, -0.15521288803200597, -0.046349874473054206, -0.47638254241130784, 0.05764649748096631, -0.6390927593447868, 0.36023981264446797, -0.22010934593125053, -0.24334037144215145, -0.4443276564680115, 0.4712590817139077, -1.3180253893342233, -0.5633062126175151, -0.15193096877263026, 0.40047413158310974, -0.5324329210445935, 0.026080600570541807, -0.13871972544693692, -0.15380343357342807, 0.028540220206408826, 1.0725535406305833, -0.07474249874795669, -0.2007046753183758, -0.18576946929206858, -0.2062047944455457, 0.9989020363902462, -0.2363669186427968, 0.3169461459154084, 0.33699054332813494, 0.35806992015311684, 0.4365467157706248, -0.3084847868640521, 0.3894553216365278, -1.5314392641569668e-05, 0.6277160326162079, 0.5601097175510773, 1.2037051698845074, -0.17005613308598952, 0.04662302915947056, 0.18175831323059533, -0.14898595660373565, 0.01730001358690596, 0.013227477790793522, -0.1507743058646341, -0.11191045395813642, 0.19856107672052214, 0.44662651486032096, -0.1959323377225796, 0.7028344481227088, 0.9623082885793853, -0.2805470619311877, -0.26122028070911, 0.3860502002319661, 0.23895916923163527, -0.23471539096872304, -0.2708852052562397, -0.9188961440075418, -0.14589980945203634, -0.04288745610256447, -0.4311621869641569, 0.08257188237852958, -0.0281235443756746, 0.04282214982678942, -0.09674429618100136, 0.021889774225518563, -0.31275316584363255, -0.3216953388109563, -0.012083928287766915, 0.6811247225681911, 0.05132945898773243], \"z\": [-1.6501416934950275, -2.848080717864997, -1.3207323796864467, 1.310640810425978, 0.693881514346557, 2.572128676237958, -3.101231921495113, 1.19938382998165, 2.438759399565351, -0.32655826402456883, 1.8690735892587866, -0.23403581595827727, -1.4772781644687498, 0.8585832435289144, -0.9693013240969125, -1.3732337028792776, 0.575188998439975, -0.6399326391208435, -0.9594698591120507, -1.0686528894517793, -1.5080935626120657, 2.287663779271539, 0.8791405528743499, -0.7688237236757196, 3.209925042084925, 1.0099663759821105, -1.8146905066405992, 0.09213955658718971, 0.24558257852680498, -0.7632068247724049, -3.194104960863469, 3.9180681054210718, -0.5377409097449956, -0.08435634667456998, 1.2325320768044101, 1.6144739584501155, -2.267314674100752, 0.9940197362475404, 0.7745586127111493, 0.9673509531874435, -1.418360106011104, -1.5482586982003967, 1.585953566270386, 1.716721618380063, -0.9476106129058364, -1.3639465324193167, 1.4103667520666567, -0.3528443194728831, -1.5104627553892604, -0.1816642680960244, -0.233064527417866, 1.8004783473966441, 2.555825098015415, 0.32285187357510564, 1.0236783874401734, -1.8605957393985326, 0.20845814183821523, 0.3699700235255467, 1.3667276912174204, 0.24830554774933294, -1.0651279225452384, -1.4202054360443765, -0.3080692516642366, -2.2520110987314563, -2.715669988664512, 0.38535254815573194, -0.24015101304657197, -0.052455558501459325, -0.29144577267370925, -0.9000285875904649, -0.02826352716165807, -0.17336416261642923, -2.619610318302244, 0.83314198859186, 0.12467334338275245, 1.6258760659734381, -2.1336886362929457, 0.004382754826321478, 3.528304981887895, -0.025947985904807312, -0.3114931330560122, 1.6690716070595697, 0.7392800792809706, -0.005065116553399707, -0.8508730775612354, 0.33203573556210003, 0.3947396384826971, -1.813138706744462, 0.7334676051989185, 0.07048651846529054, -0.9411627068781926, 0.3414515093550977, 0.7743533483100268, -0.5388628819353911, -6.235598527604836, 0.019323363969711037, -0.34743923247890063, 1.6596469080048637, -1.182112940419026, 2.2446193772000878, 0.8129513581251734, 0.3607434219297405, -1.5203455151756635, -1.698467269741568, 0.1350041645198822, 2.079132155417868, -1.0852054380856728, -0.24394916264572314, 1.5952181846680882, -0.1846336428104354, -0.22644309936193094, 0.9784012873362611, 0.5303041779120935, -0.5565708447999603, 0.6501000556136683, 1.1412380735112577, -0.14735073510275923, 1.6871906016077076, 0.35129958742958456, -0.7410235495153354, -0.7110868727339111, -1.0289330044093554, -0.3637629180325035, -1.125463166996525, 0.4054480041310384, -0.3281354814560457, 2.5173602205593744, 2.36021553472322, -0.4910173728685412, 4.5287626591418455, 0.8848021518773915, 0.28384679935544915, 0.9113072338092949, 1.9711692158945202, 0.14268672954893918, -4.497306912906485, 1.0964989031810592, 0.24279718409955844, -0.9559421025681406, -0.5330656171237416, -0.7888705110301398, -0.9149901629858384, 0.9699604101936148, -1.1833709721373789, -1.6816285958811545, 0.3154569286700133, -0.09732010809586761, 0.7707616075874137, 0.2029729619732648, -0.5222348650995476, -0.1708002886336354, 0.55389454265997, -0.8217026401455905, 0.15285960308516605, 0.942196204730147, -0.06743353538535492, 1.3645970839261092, -1.9007841224109754, -0.3051281383165256, -1.7788108412595216, 0.5172145233999057, 0.22406573145639197, 1.3281272133408655, 0.575661785054244, 1.2263773666558788, 1.4901647924635397, 0.49648449725167715, -0.017484937573415564, -2.717409909821819, 0.06179500357664165, -0.6693018077501388, 0.22957693902813922, 2.2894024836680975, -2.657517521885716, -1.691506083131419, 0.671249131867299, 1.2728837226230425, 0.7435396256378556, 0.4752879094534509, -1.1384305298164685, -0.5093929055475375, 3.4792378203564964, 1.5996699066324418, 0.1748206511562898, -1.5262496473125604, 2.5294125165385175, -1.990365299012189, 0.03634965081254586, 0.5479107577396256, -1.0286077672086262, 2.145844687914597, 0.19060296588444567, -0.6366516837865851, -1.3286564715763982, 0.49577590508440833, -0.055397821223111106, 0.3006762071330103, -0.8036350862716345, 1.499180876275364, 0.11645518148114907, -0.6308702380586774, 2.161685198898766, -1.4220664237475023, -0.04611028208819194, -2.696832409201243, -0.3071703929450281, -2.302676003103597, -0.4224180040953544, 1.563846676192851, -0.712170570883849, -3.180879951549279, -0.6430201963718389, 1.2264599294569298, -2.5454829934582976, 2.024978960263038, -0.34237401062589656, 1.5822980598390384, -1.448230155323044, 0.7333671181700311, -1.0155256734746116, -0.062071961643852966, 1.652276850965757, -0.7564784382795497, 0.0529794122281064, 1.7054299613247585, 1.4325159962380376, 1.8902510502874215, 0.1521381548818423, 0.4461836083276944, -2.7298837745203057, 1.9786721562162102, 0.3272816282684996, 2.3781585561249416, 1.5120790693113828, -1.362785227772923, -0.270276049859364, -2.036324278990537, 0.3515019862350167, 1.5953993536517548, -0.15734745038441278, 1.7977124822741037, 1.4525215471971222, -1.2501797796323348, -1.0221524629901988, -1.7847991980139122, -0.20229506119475732, -0.08075229752678971, -0.4156447138300815, -1.7578738550667417, -0.8571490717032109, 0.5711976123327668, 0.4806656632177172, 1.6949707585919052, -2.5558100080936117, -0.8386122037776089, 0.24409491264264502, 1.8505440767091603, -0.6902912382855961, 0.2307974923453526, 0.3907846825431616, -2.6506955053852104, -2.0298379856390905, 3.155015620369908, -0.051208147656032155, -1.3016258499198943, -2.833074944876408, 0.029663504770435584, 0.08213156453132758, -0.018513766146216557, 1.6904518459622924, -1.6607191798651462, -0.0022002329118967867, -0.011985466497346255, 1.4323929092137988, -0.7832764831075599, -0.3896794637169125, -0.8793278615428511, -1.617841173964122, -0.03133889243883342, -0.2513593276992974, 2.681876232526449, 1.203556497374601, -1.4128592339045007, 0.22259604974731945, -0.7555023113894069, -1.0901001201978207, -0.25519993868104834, -0.3200196673585059, -1.6077613429661335, -0.444552583225013, 3.8834468475053714, -0.0003798869688894459, 0.768073573384204, 1.307131867469682, 0.7728771293697098, 0.7132789523231525, 0.010896247485699773, -1.2090114599832154, 0.771995407296725, 0.25089188148487124, 2.216397388348761, -1.3251804686947768, -3.530030907896882, 0.40784428739165135, 2.7836433136301406, 1.1242554855250741, 1.9838275161138823, 0.3725842762649427, -1.6122524910433562, -1.1402406185413811, -1.6495741595173044, -0.9551156336888882, 0.8112264769457345, 1.9592244379432093, 0.1658120912523977, -0.6583377172168071, -2.006325906196039, 0.4311347563750073, -0.6693340007544737, 0.1411947264012605, -2.2866818055114564, 0.39564124150428026, -1.3330876946791623, -0.2628555699167076, -1.7998109711932897, 1.975584333594583, 0.01009496927719222, 0.09470544100772894, -0.73066354371268, -1.462449519964812, -2.6134463858850583, -0.47195805298304444, -0.9382820652853666, 1.4114142503774019, 2.2889966454876296, -0.21528490860390442, -1.4817378483155923, -1.9039621971450837, -1.06180760453846, 0.6313787725549111, 1.7961791731231034, -1.8216839649929861, -0.45068871795556054, 0.022867167200956804, -1.5137434515815649, -1.6471111188604384, -0.8004968875316013, 0.3147243697069055, 0.9652628824807237, -1.0271037266825689, 0.08323517512207014, 0.6111203832302171, 0.01641569784308912, -0.44877592191370624, 0.027255514803414815, -0.12823602747318885, 0.5114560315686663, 0.3288178626637922, -0.5509685253630501, 0.0001574491491753217, -0.27310798381846335, 3.3982893219016654, 0.18548617441343082, 0.5655607222838659, 1.2422699697820174, -0.4562441168671442, 0.5780402176303724, 1.1414228607483146, 1.646043055430295, -1.0206724867045025, 4.0519494048884965, 0.0746556796831508, 1.4208793046837054, 3.8327724579078164, -1.2794427112335014, 0.27917436156975245, -0.6748423799166929, 2.095474813404529, 1.944696922292389, 0.16011583744538477, 1.5338202015819349, 0.5390137548120763, -0.8881883589885045, 0.2996278929369754, 0.4745080910711817, 0.9236552761620423, -0.9833588593265096, 0.2487958911603797, -2.402080138400013, -1.3348252214130798, 0.6982515252079521, -0.09232227425253423, -0.0944012993166569, -1.6296093280231727, 0.28239635388207457, 0.04222294464629908, 1.17064279064113, 0.8842636904989761, 2.0360397794185334, -0.3530704085625791, 0.6427931201401278, -0.9603052403077079, 0.11023630675050182, -0.08812901830174018, -0.2927922029471714, -0.3574654386886381, -0.8747861564406931, 0.10598022583581888, -0.01958056253977881, 0.31700703916600775, 0.4255631550594905, -0.4259850881676342, -0.23533262218593015, -0.10191345361553883, -0.9546023489280283, 0.6447388092425052, -0.4271920573709062, 0.5213961541029287, 0.014339496328517042, 0.04063041922129491, 0.23620826875818549, -1.3391520083653479, -0.4278193536073881, -0.18071619071457692, -0.11425691433137686, 0.00823303288921216, -0.1936222831493052, 0.14536583645391288, -0.9613017131993973, -0.27043957057423024, 0.3345841631090019, 0.8236912490468663, -0.05412379881993445, -0.1347601784770718, 0.7354563593827436, -0.04401167032146144, 0.036575116826307416, 0.11900547122473662, 0.10177669848037597, -0.8354988548041336, -0.03855139701452282, 0.3867086249943337, -0.7599150385417862, 0.850493210160774, 0.2485699306708684, 0.03542430318998967, -0.3520926066105639, -0.24730584710269443, 0.750341210674674, -0.13581269969140014, 0.6954248416362174, 0.993379969011597, -0.2855903651894885, -0.2335461802717749, 0.17217098117147808, 0.427432340406943, 0.18086631957263088, -0.49645893036917116, 0.4809526061182003, -0.0653686624336496, -0.257720619562056, 0.1274691481049237, -0.33553851967674936, -0.38687194984749657, -0.2614295001130193, 0.11938958789693692, -0.13705195215126428, -0.076730241888212, 0.12862629343748386, -0.13835955056127047, -0.7498532025639367, -0.3934839766760665, 0.008426675366233989, -0.7461877823061959, 1.0734113475217897, 0.15210131321313597, 1.154362476331235, -0.5877164272222313, -1.1928248807203234, -0.09181562077842326, -0.09737157169281135, -0.23774646520966677, -0.5879972262860044, -0.19936457797213394, 0.503522559735769, -0.41618277852226343, 0.17119729854562435, -0.3541573917903551, 0.598737111510557, 0.5413720056584925, 0.5066630804659947, 0.8175947539855609, -0.09497960791250201, 0.09800054981817408, 1.286339771234433, 0.8516392976683044, 0.07731637588975944, 0.3031997931577556, 0.04298249856975874, -0.015619010302105484, -0.03728261810048038, 1.0792398104462728, -0.6092127840745166, -0.009904220188925889, -0.006090405035322584, 1.0460974724523355, 0.657364043320829, 0.40260754314118413, 0.9383139567938432, -0.14118224758026976, -0.15575681190297377, 1.1952576646042765, 0.9400282468787962, -0.017570905614658947, -0.014938065617264358, -0.6536637629950234, 1.0054817178164932, 0.0005215058924116379, 0.4229228010951633, 0.2556172840594475, 1.064708483616938, 0.04952066802631832, -0.8687048971152093, 0.3780172598533449, 0.8800218128602607, -0.11676038482143208, -0.8583159840359851, 0.04765300993039183, 0.9208704334043251, 0.0814774944696414, -0.8354425828627009, -0.013714832598501649, 0.4963882425457629, 0.1757959061290497, 0.10789748526693325, 0.4841342475461497, -0.8655291836272889, 0.005781512533027999, 0.8505121038218858, -0.02138566194079805, -0.02681322678967464, 0.6766514428271038, -0.6396849625289194, -0.882407463524201, -0.1936135900755252, -0.4049498453926489, 0.38494729642262554, -1.39931972743546, -0.043990954312833806, 0.20239908523784875, -0.6681693701104259, 0.30856932088975125, 0.29403498497858876, -0.4678038002306521, -0.14546927611180896, -0.23187038200513774, -0.9564018889781282, -0.2322459183210274, 0.48101412507005925, 0.0726188782662435, 0.32265568623917334, 0.2153099590277715, 0.02781331074962596, -0.18518458055762207, 0.29867945428108045, 0.9191392943125734, -0.913413295557307, 0.025331417172447353, 0.19555434017870116, 0.6246293476006081, -0.22513321543780718, -0.3275181745191341, -0.038794581461879626, 0.001695917705889228, 1.1483287214797446, 0.2140279741852076, -0.08236948284147262, 0.35034026854608474, -0.39039180619303177, -0.33225267562324956, 0.9732070136437367, -0.11779777913411177, 0.1459652688344548, 0.26029020220561, 0.5293828501787227, -0.08777093478493658, -0.16751249570249724, -0.1532780280041732, 0.11407714719308298, 0.1289069397311846, -0.0494898436490467, 0.47549190288633236, 0.457820855830874, 0.8560001104064527, 0.3711054323091745, 0.06247473954364478, -0.029675259768974702, 0.32227922272852416, 0.3933855956645592, 0.185097049114015, 0.12208700514370596, 0.027260517419855364, -0.13979067506981835, 1.2184862464356025, 0.5270787043632349, -0.280882360235918, 0.14174662449275705, 0.5301529650679981, -0.2040997352401207, -0.6229735716687994, -0.009520502663240737, -0.07148815464719425, 0.021608760443249015, -0.14110426254900502, -0.32205231614764634, -0.17779251246727001, -0.36252696178518645, 0.18818988945646384, -0.4601529806611364, -0.046591983440157574, -0.06917183585618691, 0.8941329727831682, -1.236943641850275, 0.21768592045831858, -0.47659473672993957, 0.4887441457934173, 0.20380054004052164, -0.4375390821259285, 0.8014485644513847, 0.005665938708168929, 0.2531263751276954, -0.17395799241386387, -0.033520165994431424, 0.09516165295242711, 0.03207593200324387, -0.2719286250738089, 0.3762783526863404, -0.8288902794910914, -0.418492763432582, 0.5889774432028466, 0.2162275710424209, 0.0459346764159249, -0.264808216413251, 0.5083792398537874, 0.9157830492591753, 1.0900611714642516, -0.5892539714911329, 1.0389769005941347, 0.6220135094595072, -0.06816137268485536, -0.3183740843189014, -0.5445113829840414, 1.018164856965693, -0.14338565812938353, -0.011624728753078132, -0.09887467758279832, -0.02258158984912474, 0.05082553122905311, -0.45698193267020654, -0.07479529678458419, -0.05789746409479076, -0.2555161124945679, 0.04460858269181394, 0.5736763934008042, 0.24354418593284552, 0.06036020255609049]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 1\", \"marker\": {\"color\": \"rgb(255, 127, 14)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 1\", \"scene\": \"scene3\", \"showlegend\": false, \"text\": [\"666_l_1_m-0_1.99-1_0.33-2_0.2-3_0.74\", \"667_l_1_m-0_0.73-1_0.02-2_0.57-3_0.01\", \"668_l_1_m-0_0.33-1_0.26-2_0.04-3_0.02\", \"669_l_1_m-0_0.1-1_0.21-2_0.43-3_0.35\", \"670_l_1_m-0_1.23-1_0.02-2_0.07-3_0.71\", \"671_l_1_m-0_0.5-1_0.01-2_0.27-3_0.4\", \"672_l_1_c_0_1_3-0_0.9-1_0.03-2_0.32-3_0.76\", \"673_l_1_c_0_1_3-0_0.06-1_0.0-2_0.63-3_0.51\", \"674_l_1_c_0_1_3-0_0.23-1_0.15-2_0.13-3_0.53\", \"675_l_1_c_0_1_3-0_0.41-1_0.13-2_0.83-3_0.46\", \"676_l_1_c_0_1_3-0_0.21-1_0.17-2_0.82-3_0.27\", \"677_l_1_c_0_1_3-0_0.06-1_0.04-2_0.76-3_0.08\", \"678_l_1_c_0_1_3-0_0.07-1_0.09-2_0.94-3_1.04\", \"679_l_1_c_0_1_3-0_0.19-1_0.32-2_0.15-3_0.2\", \"680_l_1_c_0_1_3-0_0.45-1_0.49-2_1.48-3_1.57\", \"681_l_1_c_0_1_3-0_0.33-1_0.03-2_0.37-3_0.26\", \"682_l_1_c_0_1_3-0_0.42-1_0.21-2_0.74-3_0.19\", \"683_l_1_c_0_1_3-0_0.85-1_0.3-2_0.73-3_0.37\", \"684_l_1_c_0_1_3-0_1.19-1_0.07-2_0.19-3_0.54\", \"685_l_1_c_0_1_3-0_0.03-1_0.28-2_0.79-3_1.74\", \"686_l_1_c_0_1_3-0_0.17-1_0.22-2_0.07-3_0.32\", \"687_l_1_c_0_2_3-0_0.09-1_0.19-2_0.1-3_1.54\", \"688_l_1_c_0_1_3-0_0.61-1_0.16-2_0.89-3_0.22\", \"689_l_1_c_0_2_3-0_0.1-1_1.03-2_0.43-3_1.17\", \"690_l_1_c_0_1_3-0_0.82-1_0.1-2_0.66-3_0.96\", \"691_l_1_c_0_2_3-0_0.25-1_0.59-2_0.58-3_0.08\", \"692_l_1_c_0_1_3-0_0.57-1_0.16-2_1.43-3_0.48\", \"693_l_1_c_0_2_3-0_0.61-1_0.21-2_0.03-3_1.04\", \"694_l_1_c_0_1_3-0_0.26-1_0.23-2_0.28-3_0.09\", \"695_l_1_c_0_2_3-0_0.38-1_0.52-2_0.11-3_0.27\", \"696_l_1_c_0_1_3-0_0.05-1_0.47-2_0.51-3_0.22\", \"697_l_1_c_0_2_3-0_0.59-1_0.36-2_0.15-3_1.88\", \"698_l_1_c_0_1_3-0_0.18-1_0.54-2_0.38-3_0.4\", \"699_l_1_c_0_2_3-0_0.05-1_0.51-2_0.19-3_0.62\", \"700_l_1_c_0_1_3-0_0.5-1_0.31-2_0.04-3_0.2\", \"701_l_1_c_0_2_3-0_0.04-1_0.45-2_0.09-3_0.05\", \"702_l_1_c_0_1_3-0_0.96-1_0.12-2_0.16-3_0.05\", \"703_l_1_c_0_2_3-0_0.45-1_0.18-2_0.21-3_0.45\", \"704_l_1_c_0_1_3-0_0.88-1_0.64-2_0.08-3_0.69\", \"705_l_1_c_0_2_3-0_0.32-1_0.15-2_0.14-3_0.39\", \"706_l_1_c_0_1_3-0_0.09-1_0.28-2_0.03-3_0.29\", \"707_l_1_c_0_2_3-0_0.3-1_0.73-2_0.3-3_0.01\", \"708_l_1_c_0_1_3-0_0.05-1_0.48-2_0.37-3_0.14\", \"709_l_1_c_0_2_3-0_0.54-1_1.23-2_0.03-3_0.45\", \"710_l_1_c_0_1_3-0_0.13-1_0.12-2_0.65-3_0.06\", \"711_l_1_c_0_2_3-0_0.28-1_0.2-2_0.6-3_0.52\", \"712_l_1_c_0_1_3-0_0.33-1_0.22-2_0.84-3_0.22\", \"713_l_1_c_0_2_3-0_0.08-1_0.24-2_0.3-3_0.62\", \"714_l_1_c_0_1_3-0_0.18-1_0.16-2_0.63-3_0.17\", \"715_l_1_c_0_2_3-0_0.43-1_0.5-2_0.33-3_0.77\", \"716_l_1_c_0_1_3-0_0.66-1_0.29-2_0.68-3_0.47\", \"717_l_1_c_0_2_3-0_0.07-1_0.36-2_0.23-3_0.14\", \"718_l_1_c_0_1_3-0_0.06-1_0.14-2_0.98-3_1.51\", \"719_l_1_c_0_2_3-0_1.38-1_0.12-2_0.2-3_0.06\", \"720_l_1_c_0_1_3-0_0.51-1_0.02-2_0.18-3_1.12\", \"721_l_1_c_0_2_3-0_0.24-1_0.14-2_0.05-3_0.31\", \"722_l_1_c_0_1_3-0_0.15-1_0.47-2_0.73-3_0.43\", \"723_l_1_c_0_2_3-0_0.02-1_0.17-2_0.05-3_0.41\", \"724_l_1_c_0_1_3-0_0.3-1_0.27-2_0.77-3_0.79\", \"725_l_1_c_0_2_3-0_1.1-1_0.61-2_0.07-3_0.54\", \"726_l_1_c_0_1_3-0_0.31-1_0.01-2_0.11-3_0.08\", \"727_l_1_c_0_2_3-0_0.06-1_0.12-2_0.02-3_0.16\", \"728_l_1_c_0_1_3-0_0.09-1_0.03-2_0.02-3_0.74\", \"729_l_1_c_0_2_3-0_0.47-1_0.3-2_0.09-3_0.97\", \"730_l_1_c_0_1_3-0_0.49-1_0.12-2_0.57-3_0.09\", \"731_l_1_c_0_2_3-0_1.35-1_0.11-2_0.39-3_0.23\", \"732_l_1_c_0_1_3-0_0.32-1_0.05-2_0.58-3_0.25\", \"733_l_1_c_0_2_3-0_0.12-1_0.63-2_0.19-3_0.3\", \"734_l_1_c_0_1_3-0_0.42-1_0.05-2_0.5-3_1.44\", \"735_l_1_c_0_2_3-0_0.16-1_0.67-2_0.08-3_0.14\", \"736_l_1_c_0_1_3-0_0.05-1_0.13-2_0.29-3_0.17\", \"737_l_1_c_0_2_3-0_0.36-1_0.26-2_0.02-3_0.34\", \"738_l_1_c_0_1_3-0_0.42-1_0.03-2_0.17-3_0.01\", \"739_l_1_c_0_2_3-0_0.86-1_0.12-2_0.14-3_1.11\", \"740_l_1_c_0_1_3-0_0.42-1_0.11-2_0.27-3_0.41\", \"741_l_1_c_0_2_3-0_0.31-1_0.61-2_0.03-3_0.73\", \"742_l_1_c_0_1_3-0_0.42-1_0.01-2_0.74-3_0.53\", \"743_l_1_c_0_2_3-0_0.14-1_0.35-2_0.43-3_0.33\", \"744_l_1_c_0_1_3-0_0.84-1_0.07-2_0.52-3_0.69\", \"745_l_1_c_0_2_3-0_0.42-1_0.01-2_0.0-3_0.65\", \"746_l_1_c_0_1_3-0_0.25-1_0.09-2_1.24-3_0.41\", \"747_l_1_c_0_2_3-0_0.55-1_1.38-2_0.23-3_0.43\", \"748_l_1_c_0_1_3-0_2.0-1_0.43-2_0.95-3_1.49\", \"749_l_1_c_0_2_3-0_0.22-1_0.11-2_0.08-3_0.33\", \"750_l_1_c_0_1_3-0_0.57-1_0.5-2_0.18-3_0.17\", \"751_l_1_c_0_2_3-0_0.2-1_0.82-2_0.15-3_0.44\", \"752_l_1_c_0_1_3-0_0.42-1_0.24-2_0.1-3_1.67\", \"753_l_1_c_0_2_3-0_0.85-1_0.37-2_0.08-3_0.11\", \"754_l_1_c_0_1_3-0_0.08-1_0.11-2_0.38-3_0.67\", \"755_l_1_c_0_2_3-0_0.1-1_0.57-2_0.03-3_1.05\", \"756_l_1_c_0_1_3-0_0.15-1_0.46-2_0.2-3_1.4\", \"757_l_1_c_0_2_3-0_0.42-1_0.27-2_0.08-3_0.9\", \"758_l_1_c_0_1_3-0_1.26-1_0.09-2_0.15-3_0.38\", \"759_l_1_c_0_2_3-0_0.34-1_0.39-2_0.23-3_1.08\", \"760_l_1_c_0_1_3-0_0.07-1_0.28-2_0.19-3_0.07\", \"761_l_1_c_0_2_3-0_0.89-1_0.37-2_0.04-3_0.31\", \"762_l_1_c_0_1_3-0_0.02-1_0.01-2_1.11-3_0.43\", \"763_l_1_c_0_2_3-0_0.01-1_0.5-2_0.42-3_0.67\", \"764_l_1_c_0_1_3-0_0.1-1_0.14-2_0.23-3_0.33\", \"765_l_1_c_0_2_3-0_0.3-1_0.09-2_0.17-3_0.59\", \"766_l_1_c_0_1_3-0_1.21-1_0.29-2_0.32-3_0.22\", \"767_l_1_c_0_2_3-0_1.47-1_0.11-2_0.2-3_0.63\", \"768_l_1_c_0_1_3-0_0.18-1_0.29-2_0.07-3_0.17\", \"769_l_1_c_0_2_3-0_0.65-1_0.16-2_0.42-3_0.01\", \"770_l_1_c_0_1_3-0_0.11-1_0.27-2_0.78-3_0.0\", \"771_l_1_c_0_2_3-0_0.63-1_1.02-2_0.21-3_0.01\", \"772_l_1_c_0_1_3-0_1.06-1_0.76-2_1.05-3_0.47\", \"773_l_1_c_0_2_3-0_0.37-1_0.08-2_0.55-3_1.53\", \"774_l_1_c_0_1_3-0_0.37-1_0.23-2_0.79-3_0.08\", \"775_l_1_c_0_2_3-0_1.42-1_0.32-2_0.17-3_0.31\", \"776_l_1_c_0_1_3-0_0.07-1_0.21-2_0.57-3_0.23\", \"777_l_1_c_0_2_3-0_0.07-1_0.1-2_0.26-3_0.2\", \"778_l_1_c_0_1_3-0_1.0-1_0.41-2_0.09-3_0.44\", \"779_l_1_c_0_2_3-0_0.64-1_1.02-2_0.58-3_0.96\", \"780_l_1_c_0_1_3-0_0.92-1_0.34-2_1.19-3_0.12\", \"781_l_1_c_0_2_3-0_0.51-1_0.11-2_0.16-3_0.15\", \"782_l_1_c_0_1_3-0_0.18-1_0.6-2_0.45-3_0.12\", \"783_l_1_c_0_2_3-0_0.31-1_0.51-2_0.19-3_1.44\", \"784_l_1_c_0_1_3-0_0.37-1_0.47-2_1.04-3_0.24\", \"785_l_1_c_0_2_3-0_0.38-1_0.95-2_0.3-3_0.48\", \"786_l_1_c_0_1_3-0_0.17-1_0.17-2_0.25-3_0.11\", \"787_l_1_c_0_2_3-0_0.1-1_0.72-2_0.24-3_0.5\", \"788_l_1_c_0_1_3-0_1.06-1_0.23-2_0.59-3_0.0\", \"789_l_1_c_0_2_3-0_0.05-1_0.73-2_0.3-3_1.62\", \"790_l_1_c_0_1_3-0_0.67-1_0.44-2_0.23-3_1.13\", \"791_l_1_c_0_2_3-0_0.05-1_0.06-2_0.61-3_0.13\", \"792_l_1_c_0_1_3-0_0.18-1_0.07-2_0.55-3_1.37\", \"793_l_1_c_0_2_3-0_0.36-1_0.02-2_0.45-3_0.91\", \"794_l_1_c_0_1_3-0_1.08-1_0.28-2_0.68-3_0.37\", \"795_l_1_c_0_2_3-0_0.52-1_0.38-2_0.16-3_0.11\", \"796_l_1_c_0_1_3-0_0.41-1_0.03-2_0.71-3_0.33\", \"797_l_1_c_0_2_3-0_0.2-1_0.02-2_0.38-3_0.04\", \"798_l_1_c_0_1_3-0_1.01-1_0.0-2_0.86-3_1.02\", \"799_l_1_c_0_2_3-0_0.37-1_0.14-2_0.8-3_0.0\", \"800_l_1_c_0_1_3-0_0.25-1_0.17-2_0.1-3_0.91\", \"801_l_1_c_0_2_3-0_0.24-1_0.03-2_0.44-3_1.34\", \"802_l_1_c_0_1_3-0_0.18-1_0.01-2_0.64-3_1.06\", \"803_l_1_c_0_2_3-0_0.21-1_0.18-2_0.27-3_0.42\", \"804_l_1_c_0_1_3-0_0.14-1_0.27-2_0.01-3_0.07\", \"805_l_1_c_0_2_3-0_0.36-1_0.42-2_0.14-3_0.91\", \"806_l_1_c_0_1_3-0_0.22-1_0.04-2_0.1-3_0.25\", \"807_l_1_c_0_2_3-0_0.43-1_0.94-2_0.47-3_0.47\", \"808_l_1_c_1_2_3-0_1.39-1_0.45-2_0.18-3_0.46\", \"809_l_1_c_0_1_3-0_0.13-1_0.33-2_0.86-3_0.73\", \"810_l_1_c_0_2_3-0_0.62-1_0.45-2_0.74-3_0.75\", \"811_l_1_c_1_2_3-0_1.31-1_0.07-2_0.64-3_0.39\", \"812_l_1_c_0_1_3-0_0.29-1_0.13-2_0.36-3_0.67\", \"813_l_1_c_0_2_3-0_0.53-1_0.49-2_0.27-3_0.21\", \"814_l_1_c_1_2_3-0_0.38-1_0.04-2_0.12-3_0.41\", \"815_l_1_c_0_1_3-0_0.4-1_0.04-2_0.05-3_0.61\", \"816_l_1_c_0_2_3-0_0.02-1_0.44-2_0.33-3_0.37\", \"817_l_1_c_1_2_3-0_1.07-1_0.28-2_0.03-3_0.9\", \"818_l_1_c_0_1_3-0_0.77-1_0.45-2_0.74-3_0.3\", \"819_l_1_c_0_2_3-0_1.61-1_0.25-2_0.2-3_0.06\", \"820_l_1_c_1_2_3-0_1.2-1_0.14-2_0.29-3_0.65\", \"821_l_1_c_0_1_3-0_0.31-1_0.18-2_0.62-3_0.24\", \"822_l_1_c_0_2_3-0_0.47-1_0.22-2_0.56-3_0.38\", \"823_l_1_c_1_2_3-0_0.51-1_0.23-2_0.24-3_0.66\", \"824_l_1_c_0_1_3-0_0.87-1_0.35-2_0.18-3_0.43\", \"825_l_1_c_0_2_3-0_1.51-1_0.28-2_0.65-3_0.48\", \"826_l_1_c_1_2_3-0_1.72-1_0.47-2_0.4-3_0.11\", \"827_l_1_c_0_1_3-0_0.76-1_0.06-2_0.04-3_0.9\", \"828_l_1_c_0_2_3-0_0.44-1_0.74-2_0.07-3_1.12\", \"829_l_1_c_1_2_3-0_0.53-1_0.22-2_0.15-3_0.29\", \"830_l_1_c_0_1_3-0_0.07-1_0.23-2_0.21-3_0.06\", \"831_l_1_c_0_2_3-0_0.39-1_1.29-2_0.26-3_0.24\", \"832_l_1_c_1_2_3-0_0.64-1_0.39-2_0.41-3_0.07\", \"833_l_1_c_0_1_3-0_0.07-1_0.27-2_0.06-3_0.64\", \"834_l_1_c_0_2_3-0_1.1-1_0.55-2_0.14-3_0.15\", \"835_l_1_c_1_2_3-0_0.07-1_0.11-2_0.12-3_0.77\", \"836_l_1_c_0_1_3-0_0.83-1_0.57-2_0.36-3_0.88\", \"837_l_1_c_0_2_3-0_0.83-1_0.06-2_0.09-3_0.36\", \"838_l_1_c_1_2_3-0_0.21-1_0.55-2_0.01-3_0.49\", \"839_l_1_c_0_1_3-0_0.28-1_0.54-2_0.54-3_0.22\", \"840_l_1_c_0_2_3-0_0.36-1_0.2-2_0.18-3_0.36\", \"841_l_1_c_1_2_3-0_0.33-1_0.04-2_0.09-3_0.22\", \"842_l_1_c_0_1_3-0_0.48-1_0.1-2_0.59-3_0.72\", \"843_l_1_c_0_2_3-0_0.59-1_0.58-2_0.18-3_1.01\", \"844_l_1_c_1_2_3-0_0.38-1_0.18-2_0.06-3_0.18\", \"845_l_1_c_0_1_3-0_0.31-1_0.14-2_0.08-3_0.18\", \"846_l_1_c_0_2_3-0_0.53-1_0.04-2_0.33-3_0.15\", \"847_l_1_c_1_2_3-0_0.09-1_0.32-2_0.03-3_1.69\", \"848_l_1_c_0_1_3-0_0.03-1_0.18-2_0.86-3_0.91\", \"849_l_1_c_0_2_3-0_0.09-1_0.19-2_0.4-3_0.52\", \"850_l_1_c_1_2_3-0_1.42-1_0.08-2_0.39-3_0.34\", \"851_l_1_c_0_1_3-0_0.58-1_0.11-2_0.13-3_0.82\", \"852_l_1_c_0_2_3-0_0.04-1_0.14-2_0.28-3_0.04\", \"853_l_1_c_1_2_3-0_0.77-1_0.69-2_0.18-3_0.03\", \"854_l_1_c_0_1_3-0_1.39-1_0.07-2_0.17-3_0.19\", \"855_l_1_c_0_2_3-0_0.04-1_0.13-2_0.44-3_0.07\", \"856_l_1_c_1_2_3-0_2.19-1_0.03-2_0.01-3_0.19\", \"857_l_1_c_0_1_3-0_0.38-1_0.01-2_0.32-3_0.37\", \"858_l_1_c_0_2_3-0_0.37-1_0.18-2_0.6-3_0.58\", \"859_l_1_c_1_2_3-0_0.1-1_0.11-2_0.6-3_0.26\", \"860_l_1_c_0_1_3-0_0.4-1_0.01-2_0.42-3_0.08\", \"861_l_1_c_0_2_3-0_0.18-1_0.54-2_0.11-3_0.24\", \"862_l_1_c_1_2_3-0_0.75-1_0.33-2_0.2-3_0.83\", \"863_l_1_c_0_1_3-0_0.6-1_0.06-2_0.97-3_0.17\", \"864_l_1_c_0_2_3-0_0.19-1_0.49-2_0.37-3_0.17\", \"865_l_1_c_1_2_3-0_0.18-1_0.16-2_0.01-3_0.37\", \"866_l_1_c_0_1_3-0_0.18-1_0.23-2_0.39-3_0.36\", \"867_l_1_c_0_2_3-0_0.96-1_0.79-2_0.14-3_0.09\", \"868_l_1_c_1_2_3-0_0.59-1_0.04-2_0.27-3_0.74\", \"869_l_1_c_0_1_3-0_0.03-1_0.08-2_0.54-3_0.03\", \"870_l_1_c_0_2_3-0_0.45-1_0.05-2_0.15-3_0.24\", \"871_l_1_c_1_2_3-0_0.66-1_0.09-2_0.24-3_0.08\", \"872_l_1_c_0_1_3-0_1.55-1_0.18-2_0.17-3_0.35\", \"873_l_1_c_0_2_3-0_0.58-1_0.96-2_0.17-3_0.22\", \"874_l_1_c_1_2_3-0_0.37-1_0.63-2_0.42-3_0.31\", \"875_l_1_c_0_1_3-0_1.03-1_0.01-2_0.43-3_0.81\", \"876_l_1_c_0_2_3-0_0.03-1_0.21-2_0.29-3_1.09\", \"877_l_1_c_1_2_3-0_1.24-1_0.07-2_0.05-3_1.51\", \"878_l_1_c_0_1_3-0_0.28-1_0.26-2_0.92-3_0.44\", \"879_l_1_c_0_2_3-0_0.12-1_0.23-2_0.37-3_0.53\", \"880_l_1_c_1_2_3-0_0.44-1_0.52-2_0.35-3_0.07\", \"881_l_1_c_0_1_3-0_0.37-1_0.19-2_0.34-3_0.51\", \"882_l_1_c_0_2_3-0_0.46-1_0.35-2_0.36-3_0.0\", \"883_l_1_c_1_2_3-0_0.56-1_0.04-2_0.22-3_0.18\", \"884_l_1_c_0_1_3-0_0.9-1_0.1-2_0.01-3_0.57\", \"885_l_1_c_0_2_3-0_0.1-1_0.99-2_0.03-3_0.78\", \"886_l_1_c_1_2_3-0_0.77-1_0.15-2_0.16-3_0.17\", \"887_l_1_c_0_1_3-0_0.06-1_0.09-2_0.82-3_0.1\", \"888_l_1_c_0_2_3-0_0.64-1_0.69-2_0.0-3_0.67\", \"889_l_1_c_1_2_3-0_0.67-1_0.12-2_0.25-3_0.61\", \"890_l_1_c_0_1_3-0_0.31-1_0.07-2_0.64-3_0.16\", \"891_l_1_c_0_2_3-0_1.06-1_1.63-2_0.27-3_0.53\", \"892_l_1_c_1_2_3-0_2.27-1_0.26-2_0.25-3_0.39\", \"893_l_1_c_0_1_3-0_0.81-1_0.43-2_0.08-3_1.09\", \"894_l_1_c_0_2_3-0_0.05-1_0.3-2_0.14-3_0.52\", \"895_l_1_c_1_2_3-0_1.6-1_0.16-2_0.13-3_0.06\", \"896_l_1_c_0_1_3-0_0.62-1_0.07-2_0.02-3_0.26\", \"897_l_1_c_0_2_3-0_0.46-1_0.77-2_0.17-3_0.21\", \"898_l_1_c_1_2_3-0_1.35-1_0.03-2_0.62-3_1.39\", \"899_l_1_c_0_1_3-0_0.85-1_0.04-2_0.32-3_0.73\", \"900_l_1_c_0_2_3-0_0.7-1_0.31-2_0.0-3_0.08\", \"901_l_1_c_1_2_3-0_1.13-1_0.2-2_0.27-3_0.73\", \"902_l_1_c_0_1_3-0_0.47-1_0.14-2_0.02-3_0.28\", \"903_l_1_c_0_2_3-0_0.59-1_0.33-2_0.45-3_0.29\", \"904_l_1_c_1_2_3-0_1.03-1_0.62-2_0.47-3_0.1\", \"905_l_1_c_0_1_3-0_0.19-1_0.19-2_1.36-3_0.23\", \"906_l_1_c_0_2_3-0_0.61-1_0.01-2_0.08-3_0.92\", \"907_l_1_c_1_2_3-0_0.87-1_0.38-2_0.11-3_0.05\", \"908_l_1_c_0_1_3-0_0.76-1_0.2-2_0.05-3_0.08\", \"909_l_1_c_0_2_3-0_0.22-1_0.26-2_0.17-3_0.48\", \"910_l_1_c_1_2_3-0_0.19-1_0.08-2_0.05-3_1.63\", \"911_l_1_c_0_1_3-0_0.29-1_0.04-2_0.68-3_0.36\", \"912_l_1_c_0_2_3-0_0.18-1_0.26-2_0.5-3_0.52\", \"913_l_1_c_1_2_3-0_0.01-1_0.32-2_0.67-3_0.08\", \"914_l_1_c_0_1_3-0_0.35-1_0.13-2_0.74-3_0.68\", \"915_l_1_c_0_2_3-0_0.07-1_0.27-2_0.16-3_0.52\", \"916_l_1_c_1_2_3-0_0.24-1_0.26-2_0.09-3_0.2\", \"917_l_1_c_0_1_3-0_0.36-1_0.46-2_0.14-3_0.58\", \"918_l_1_c_0_2_3-0_0.99-1_0.73-2_0.65-3_0.03\", \"919_l_1_c_1_2_3-0_0.66-1_0.17-2_0.21-3_0.65\", \"920_l_1_c_0_1_3-0_0.1-1_0.34-2_0.13-3_0.52\", \"921_l_1_c_0_2_3-0_0.7-1_0.21-2_0.19-3_0.72\", \"922_l_1_c_1_2_3-0_0.28-1_0.19-2_0.13-3_0.04\", \"923_l_1_c_0_1_3-0_0.12-1_0.04-2_0.84-3_0.39\", \"924_l_1_c_0_2_3-0_1.07-1_0.16-2_0.09-3_0.05\", \"925_l_1_c_1_2_3-0_0.88-1_0.17-2_0.48-3_1.61\", \"926_l_1_c_0_1_3-0_0.99-1_0.12-2_1.32-3_0.07\", \"927_l_1_c_0_2_3-0_0.2-1_0.22-2_0.19-3_0.04\", \"928_l_1_c_1_2_3-0_1.84-1_0.33-2_0.08-3_0.35\", \"929_l_1_c_0_1_3-0_0.08-1_0.11-2_0.04-3_0.17\", \"930_l_1_c_2_3-0_1.09-1_0.6-2_0.17-3_1.01\", \"931_l_1_c_3-0_0.25-1_0.11-2_0.27-3_0.36\", \"932_l_1_c_3-0_0.65-1_1.06-2_0.38-3_1.03\", \"933_l_1_r-0_1.79-1_0.14-2_0.5-3_1.46\", \"934_l_1_r-0_0.48-1_0.47-2_0.33-3_0.68\", \"935_l_1_r-0_0.52-1_0.67-2_0.59-3_0.96\", \"936_l_1_r-0_1.43-1_0.68-2_0.03-3_0.49\", \"937_l_1_r-0_1.01-1_0.59-2_0.53-3_0.19\", \"938_l_1_r-0_0.11-1_0.71-2_0.32-3_0.88\", \"939_l_1_r-0_0.48-1_0.81-2_0.49-3_0.82\", \"940_l_1_r-0_0.44-1_1.08-2_0.54-3_1.36\", \"941_l_1_r-0_1.97-1_0.41-2_0.41-3_2.38\", \"942_l_1_r-0_0.18-1_0.25-2_0.08-3_0.25\", \"943_l_1_r-0_0.13-1_0.49-2_0.69-3_0.63\", \"944_l_1_r-0_0.63-1_0.9-2_0.2-3_0.77\", \"945_l_1_r-0_1.38-1_0.69-2_0.62-3_0.06\", \"946_l_1_r-0_1.43-1_0.83-2_0.24-3_1.68\", \"947_l_1_r-0_0.25-1_1.21-2_1.05-3_1.34\", \"948_l_1_r-0_0.21-1_0.31-2_1.09-3_1.14\", \"949_l_1_r-0_0.75-1_0.63-2_0.27-3_0.18\", \"950_l_1_r-0_1.44-1_0.2-2_0.19-3_0.15\", \"951_l_1_r-0_0.52-1_0.38-2_1.31-3_1.84\", \"952_l_1_r-0_0.06-1_0.5-2_0.04-3_0.37\", \"953_l_1_r-0_2.36-1_0.12-2_0.5-3_1.04\", \"954_l_1_r-0_0.28-1_0.18-2_0.71-3_0.85\", \"955_l_1_r-0_2.23-1_0.29-2_0.43-3_0.06\", \"956_l_1_r-0_0.08-1_0.04-2_0.09-3_0.83\", \"957_l_1_r-0_0.09-1_0.61-2_0.48-3_1.32\", \"958_l_1_r-0_2.86-1_0.06-2_1.06-3_0.73\", \"959_l_1_r-0_1.02-1_0.58-2_0.51-3_0.85\", \"960_l_1_r-0_0.73-1_0.4-2_0.47-3_0.54\", \"961_l_1_r-0_0.12-1_0.62-2_1.04-3_0.51\", \"962_l_1_r-0_0.74-1_0.06-2_0.52-3_0.04\", \"963_l_1_r-0_1.11-1_0.05-2_0.21-3_0.34\", \"964_l_1_r-0_0.36-1_0.31-2_1.11-3_1.7\", \"965_l_1_r-0_1.17-1_0.45-2_0.63-3_1.24\", \"966_l_1_r-0_0.51-1_0.56-2_0.39-3_0.31\", \"967_l_1_r-0_0.16-1_0.51-2_0.45-3_1.67\", \"968_l_1_r-0_0.23-1_0.22-2_1.08-3_0.77\", \"969_l_1_r-0_0.49-1_0.86-2_0.3-3_1.6\", \"970_l_1_r-0_1.5-1_0.76-2_0.17-3_0.56\", \"971_l_1_r-0_0.47-1_0.89-2_0.14-3_0.01\", \"972_l_1_r-0_0.93-1_0.4-2_0.83-3_1.14\", \"973_l_1_r-0_0.05-1_0.76-2_0.63-3_0.66\", \"974_l_1_r-0_0.29-1_0.61-2_0.27-3_2.31\", \"975_l_1_r-0_0.03-1_0.31-2_0.36-3_1.13\", \"976_l_1_r-0_0.45-1_0.47-2_0.08-3_0.55\", \"977_l_1_r-0_0.41-1_0.67-2_0.95-3_0.25\", \"978_l_1_r-0_0.4-1_0.43-2_0.72-3_0.93\", \"979_l_1_r-0_2.44-1_0.16-2_1.07-3_1.24\", \"980_l_1_r-0_1.82-1_1.23-2_1.28-3_0.79\", \"981_l_1_r-0_0.52-1_0.32-2_0.38-3_0.54\", \"982_l_1_r-0_0.13-1_0.09-2_0.1-3_1.07\", \"983_l_1_r-0_1.02-1_0.26-2_0.25-3_0.66\", \"984_l_1_r-0_0.07-1_0.4-2_0.8-3_2.37\", \"985_l_1_r-0_2.1-1_0.28-2_0.33-3_1.39\", \"986_l_1_r-0_0.08-1_0.62-2_0.87-3_1.56\", \"987_l_1_r-0_0.5-1_0.21-2_0.38-3_0.77\", \"988_l_1_r-0_0.35-1_0.9-2_0.76-3_0.09\", \"989_l_1_r-0_0.35-1_0.79-2_0.64-3_0.19\", \"990_l_1_r-0_1.96-1_0.37-2_0.59-3_0.9\", \"991_l_1_r-0_0.39-1_0.26-2_0.55-3_1.64\", \"992_l_1_r-0_1.41-1_0.77-2_0.94-3_2.11\", \"993_l_1_r-0_0.02-1_0.33-2_0.54-3_0.31\", \"994_l_1_r-0_0.19-1_0.29-2_1.49-3_0.44\", \"995_l_1_r-0_0.32-1_0.52-2_0.62-3_1.61\", \"996_l_1_r-0_0.67-1_1.58-2_0.17-3_1.19\", \"997_l_1_r-0_2.06-1_0.3-2_0.19-3_0.22\", \"998_l_1_r-0_0.12-1_0.9-2_1.05-3_1.46\", \"999_l_1_r-0_1.59-1_0.3-2_0.59-3_1.73\", \"1000_l_1_r-0_0.07-1_0.03-2_0.07-3_0.03\", \"1001_l_1_r-0_1.01-1_0.02-2_0.47-3_0.42\", \"1002_l_1_r-0_0.75-1_0.05-2_0.5-3_1.43\", \"1003_l_1_r-0_0.82-1_0.13-2_0.09-3_1.08\", \"1004_l_1_r-0_1.31-1_0.06-2_0.0-3_0.04\", \"1005_l_1_r-0_0.9-1_1.08-2_0.55-3_0.44\", \"1006_l_1_r-0_0.85-1_0.14-2_0.11-3_1.14\", \"1007_l_1_r-0_0.86-1_0.95-2_0.13-3_0.58\", \"1008_l_1_r-0_0.62-1_0.93-2_0.54-3_0.51\", \"1009_l_1_r-0_0.04-1_0.05-2_0.72-3_0.63\", \"1010_l_1_r-0_1.11-1_0.41-2_0.75-3_1.04\", \"1011_l_1_r-0_0.94-1_0.29-2_1.06-3_2.42\", \"1012_l_1_r-0_1.19-1_0.25-2_0.12-3_1.26\", \"1013_l_1_r-0_0.05-1_0.26-2_0.09-3_0.03\", \"1014_l_1_r-0_0.87-1_0.34-2_0.13-3_0.8\", \"1015_l_1_r-0_0.44-1_0.48-2_0.23-3_0.42\", \"1016_l_1_r-0_1.3-1_0.51-2_0.65-3_0.06\", \"1017_l_1_r-0_1.52-1_0.44-2_0.7-3_1.62\", \"1018_l_1_r-0_0.24-1_0.89-2_0.21-3_0.24\", \"1019_l_1_r-0_0.38-1_0.79-2_0.03-3_0.33\", \"1020_l_1_r-0_1.43-1_0.38-2_0.78-3_1.07\", \"1021_l_1_r-0_0.54-1_0.74-2_0.49-3_1.02\", \"1022_l_1_r-0_0.03-1_0.2-2_0.32-3_0.85\", \"1023_l_1_r-0_0.85-1_0.87-2_0.57-3_0.83\", \"1024_l_1_r-0_1.54-1_0.16-2_0.62-3_0.56\", \"1025_l_1_r-0_0.97-1_0.3-2_0.3-3_0.19\", \"1026_l_1_r-0_0.61-1_0.01-2_0.33-3_1.38\", \"1027_l_1_r-0_1.47-1_0.4-2_0.45-3_0.55\", \"1028_l_1_r-0_0.91-1_0.25-2_1.09-3_0.4\", \"1029_l_1_r-0_0.08-1_0.31-2_0.39-3_0.14\", \"1030_l_1_r-0_0.14-1_1.01-2_0.17-3_1.14\", \"1031_l_1_r-0_1.1-1_0.15-2_1.05-3_1.45\", \"1032_l_1_r-0_0.84-1_0.63-2_0.75-3_2.04\", \"1033_l_1_r-0_0.59-1_1.06-2_1.15-3_1.05\", \"1034_l_1_r-0_1.36-1_0.01-2_0.49-3_1.12\", \"1035_l_1_r-0_0.08-1_0.22-2_0.98-3_0.57\", \"1036_l_1_r-0_1.51-1_0.23-2_0.15-3_0.73\", \"1037_l_1_r-0_0.55-1_1.36-2_0.23-3_1.2\", \"1038_l_1_r-0_1.27-1_1.25-2_0.1-3_0.22\", \"1039_l_1_r-0_1.42-1_0.37-2_0.34-3_0.75\", \"1040_l_1_r-0_0.87-1_0.13-2_0.34-3_0.21\", \"1041_l_1_r-0_2.2-1_0.18-2_0.12-3_0.75\", \"1042_l_1_r-0_0.22-1_0.51-2_1.14-3_0.98\", \"1043_l_1_r-0_0.4-1_0.44-2_0.74-3_0.86\", \"1044_l_1_r-0_0.02-1_0.19-2_0.59-3_0.54\", \"1045_l_1_r-0_0.12-1_0.79-2_0.26-3_0.34\", \"1046_l_1_r-0_1.03-1_0.2-2_0.16-3_0.4\", \"1047_l_1_r-0_0.13-1_0.11-2_0.92-3_0.96\", \"1048_l_1_r-0_0.42-1_0.95-2_0.75-3_0.04\", \"1049_l_1_r-0_0.58-1_0.45-2_0.29-3_1.65\", \"1050_l_1_r-0_2.4-1_0.03-2_0.26-3_1.39\", \"1051_l_1_r-0_0.92-1_0.38-2_0.92-3_0.08\", \"1052_l_1_r-0_1.67-1_0.23-2_0.23-3_0.39\", \"1053_l_1_r-0_1.22-1_0.02-2_0.23-3_0.44\", \"1054_l_1_r-0_0.62-1_0.75-2_0.17-3_0.94\", \"1055_l_1_r-0_0.45-1_0.17-2_0.12-3_2.21\", \"1056_l_1_r-0_0.3-1_0.55-2_1.4-3_0.51\", \"1057_l_1_r-0_1.12-1_1.48-2_0.35-3_0.28\", \"1058_l_1_r-0_1.97-1_0.59-2_0.38-3_1.2\", \"1059_l_1_r-0_0.37-1_1.12-2_0.12-3_0.14\", \"1060_l_1_r-0_0.12-1_0.51-2_0.24-3_0.06\", \"1061_l_1_r-0_1.24-1_0.31-2_0.83-3_0.54\", \"1062_l_1_r-0_0.49-1_0.28-2_0.2-3_1.13\", \"1063_l_1_r-0_0.24-1_0.21-2_0.08-3_0.05\", \"1064_l_1_r-0_0.24-1_1.12-2_0.71-3_0.75\", \"1065_l_1_r-0_0.89-1_1.83-2_0.58-3_0.71\", \"1066_l_1_r-0_0.13-1_1.62-2_0.33-3_1.38\", \"1067_l_1_r-0_0.57-1_0.43-2_0.48-3_0.09\", \"1068_l_1_r-0_0.35-1_0.56-2_0.58-3_0.38\", \"1069_l_1_r-0_1.73-1_0.77-2_0.46-3_0.31\", \"1070_l_1_r-0_2.03-1_0.03-2_0.45-3_0.32\", \"1071_l_1_r-0_0.4-1_0.39-2_0.93-3_0.89\", \"1072_l_1_r-0_0.43-1_0.45-2_0.43-3_1.75\", \"1073_l_1_r-0_0.22-1_0.41-2_0.35-3_0.9\", \"1074_l_1_r-0_0.37-1_0.39-2_0.81-3_1.36\", \"1075_l_1_r-0_0.2-1_0.02-2_0.07-3_0.97\", \"1076_l_1_r-0_0.56-1_0.19-2_0.58-3_0.75\", \"1077_l_1_r-0_1.2-1_0.11-2_0.09-3_0.1\", \"1078_l_1_r-0_0.05-1_0.31-2_0.17-3_1.33\", \"1079_l_1_r-0_0.6-1_0.15-2_0.18-3_1.34\", \"1080_l_1_r-0_1.08-1_0.92-2_0.38-3_1.29\", \"1081_l_1_r-0_1.21-1_0.61-2_0.38-3_0.54\", \"1082_l_1_r-0_0.07-1_0.08-2_0.06-3_0.03\", \"1083_l_1_r-0_0.93-1_0.13-2_0.05-3_1.21\", \"1084_l_1_r-0_0.49-1_0.13-2_0.43-3_0.66\", \"1085_l_1_r-0_0.72-1_0.85-2_0.68-3_1.87\", \"1086_l_1_r-0_1.02-1_0.16-2_0.14-3_0.78\", \"1087_l_1_r-0_2.57-1_0.77-2_0.18-3_1.09\", \"1088_l_1_r-0_0.63-1_0.58-2_0.18-3_1.53\", \"1089_l_1_r-0_0.37-1_0.34-2_1.12-3_0.27\", \"1090_l_1_r-0_0.35-1_0.07-2_0.85-3_0.72\", \"1091_l_1_r-0_1.02-1_0.4-2_0.51-3_1.21\", \"1092_l_1_r-0_3.07-1_0.65-2_0.61-3_0.57\", \"1093_l_1_r-0_0.57-1_0.65-2_0.45-3_0.47\", \"1094_l_1_r-0_0.77-1_0.19-2_0.48-3_0.51\", \"1095_l_1_r-0_1.08-1_0.83-2_1.14-3_0.52\", \"1096_l_1_r-0_0.37-1_0.35-2_0.39-3_1.67\", \"1097_l_1_r-0_0.16-1_0.27-2_0.16-3_0.8\", \"1098_l_1_r-0_2.15-1_0.71-2_0.61-3_0.37\", \"1099_l_1_r-0_0.3-1_0.3-2_0.69-3_1.23\", \"1100_l_1_r-0_0.17-1_0.1-2_0.35-3_0.22\", \"1101_l_1_r-0_0.57-1_0.13-2_0.25-3_0.7\", \"1102_l_1_r-0_0.65-1_0.09-2_0.37-3_0.9\", \"1103_l_1_r-0_0.18-1_0.64-2_0.12-3_2.11\", \"1104_l_1_r-0_0.79-1_0.39-2_0.28-3_2.63\", \"1105_l_1_r-0_0.28-1_0.36-2_0.26-3_2.6\", \"1106_l_1_r-0_0.63-1_0.02-2_0.59-3_0.45\", \"1107_l_1_r-0_1.3-1_0.33-2_0.35-3_0.42\", \"1108_l_1_r-0_1.64-1_0.67-2_0.96-3_0.37\", \"1109_l_1_r-0_0.02-1_0.18-2_1.05-3_0.74\", \"1110_l_1_r-0_0.55-1_0.02-2_0.62-3_0.93\", \"1111_l_1_r-0_0.4-1_0.7-2_0.63-3_1.21\", \"1112_l_1_r-0_1.37-1_0.15-2_0.6-3_0.17\", \"1113_l_1_r-0_2.07-1_0.62-2_0.92-3_0.59\", \"1114_l_1_r-0_0.54-1_0.3-2_0.53-3_1.18\", \"1115_l_1_r-0_1.42-1_0.34-2_0.59-3_0.2\", \"1116_l_1_r-0_0.58-1_0.64-2_1.17-3_2.24\", \"1117_l_1_r-0_0.32-1_0.62-2_0.27-3_0.15\", \"1118_l_1_r-0_0.76-1_0.87-2_0.46-3_0.13\", \"1119_l_1_r-0_0.62-1_0.1-2_0.06-3_0.55\", \"1120_l_1_r-0_0.97-1_0.86-2_0.13-3_0.26\", \"1121_l_1_r-0_1.53-1_0.85-2_0.02-3_1.53\", \"1122_l_1_r-0_0.1-1_0.38-2_0.62-3_0.82\", \"1123_l_1_r-0_0.78-1_0.73-2_0.51-3_0.48\", \"1124_l_1_r-0_0.23-1_0.8-2_0.1-3_2.14\", \"1125_l_1_r-0_0.44-1_0.26-2_0.4-3_0.35\", \"1126_l_1_r-0_1.38-1_1.22-2_0.02-3_0.23\", \"1127_l_1_r-0_1.06-1_1.03-2_0.2-3_0.31\", \"1128_l_1_r-0_1.35-1_0.68-2_0.03-3_1.03\", \"1129_l_1_r-0_0.35-1_0.92-2_0.98-3_0.25\", \"1130_l_1_r-0_1.81-1_0.41-2_0.77-3_0.84\", \"1131_l_1_r-0_0.78-1_0.57-2_0.38-3_0.8\", \"1132_l_1_r-0_0.69-1_1.51-2_0.38-3_0.49\", \"1133_l_1_r-0_0.08-1_0.7-2_0.76-3_0.2\", \"1134_l_1_r-0_1.14-1_0.42-2_0.58-3_0.66\", \"1135_l_1_r-0_0.22-1_0.01-2_0.81-3_2.49\", \"1136_l_1_r-0_0.96-1_1.14-2_0.58-3_0.3\", \"1137_l_1_r-0_0.45-1_0.17-2_0.74-3_0.9\", \"1138_l_1_r-0_0.58-1_0.2-2_1.39-3_0.09\", \"1139_l_1_r-0_0.03-1_0.44-2_0.0-3_2.16\", \"1140_l_1_r-0_0.65-1_0.91-2_0.25-3_0.93\", \"1141_l_1_r-0_0.26-1_0.95-2_0.57-3_1.86\", \"1142_l_1_r-0_1.5-1_0.02-2_0.22-3_0.47\", \"1143_l_1_r-0_0.88-1_0.16-2_0.33-3_0.54\", \"1144_l_1_r-0_0.37-1_1.12-2_0.44-3_0.13\", \"1145_l_1_r-0_0.71-1_0.53-2_0.47-3_0.2\", \"1146_l_1_r-0_0.89-1_0.93-2_1.08-3_1.36\", \"1147_l_1_r-0_0.22-1_0.06-2_0.6-3_0.65\", \"1148_l_1_r-0_0.95-1_1.12-2_0.78-3_0.43\", \"1149_l_1_r-0_0.45-1_0.33-2_0.21-3_0.49\", \"1150_l_1_r-0_0.95-1_0.44-2_0.29-3_0.79\", \"1151_l_1_r-0_0.21-1_0.69-2_0.13-3_2.13\", \"1152_l_1_r-0_0.84-1_0.26-2_0.02-3_0.24\", \"1153_l_1_r-0_0.37-1_0.29-2_0.77-3_1.31\", \"1154_l_1_r-0_1.2-1_0.12-2_0.13-3_0.28\", \"1155_l_1_r-0_1.66-1_0.9-2_0.59-3_1.88\", \"1156_l_1_r-0_1.41-1_0.55-2_0.03-3_0.62\", \"1157_l_1_r-0_0.29-1_0.79-2_0.88-3_1.55\", \"1158_l_1_r-0_0.44-1_0.09-2_0.53-3_0.35\", \"1159_l_1_r-0_2.17-1_0.1-2_0.99-3_1.97\", \"1160_l_1_r-0_0.26-1_0.55-2_0.27-3_1.05\", \"1161_l_1_r-0_1.16-1_0.41-2_0.91-3_1.0\", \"1162_l_1_r-0_0.65-1_0.49-2_1.04-3_1.09\", \"1163_l_1_r-0_0.07-1_0.63-2_0.86-3_0.02\", \"1164_l_1_r-0_1.47-1_1.07-2_0.32-3_0.75\", \"1165_l_1_r-0_1.1-1_0.28-2_0.65-3_0.3\", \"1166_l_1_r-0_1.14-1_0.76-2_0.78-3_0.86\", \"1167_l_1_r-0_1.8-1_0.24-2_0.05-3_0.49\", \"1168_l_1_r-0_0.52-1_0.17-2_0.27-3_0.26\", \"1169_l_1_r-0_1.24-1_0.6-2_0.25-3_0.73\", \"1170_l_1_r-0_0.81-1_0.88-2_0.37-3_1.23\", \"1171_l_1_r-0_2.15-1_0.71-2_0.59-3_0.1\", \"1172_l_1_r-0_0.28-1_0.03-2_0.9-3_1.37\", \"1173_l_1_r-0_2.02-1_0.65-2_0.95-3_1.95\", \"1174_l_1_r-0_1.05-1_0.64-2_0.53-3_2.49\", \"1175_l_1_r-0_0.7-1_0.2-2_0.22-3_0.01\", \"1176_l_1_r-0_2.01-1_0.74-2_0.37-3_0.44\", \"1177_l_1_r-0_0.73-1_0.91-2_0.97-3_1.77\", \"1178_l_1_r-0_1.26-1_0.61-2_0.91-3_1.47\", \"1179_l_1_r-0_1.23-1_0.16-2_0.15-3_2.8\", \"1180_l_1_r-0_0.5-1_0.79-2_0.32-3_0.79\", \"1181_l_1_r-0_1.39-1_0.56-2_0.63-3_0.97\", \"1182_l_1_r-0_0.6-1_0.3-2_1.42-3_0.24\", \"1183_l_1_r-0_1.23-1_0.14-2_0.07-3_0.88\", \"1184_l_1_r-0_0.45-1_0.12-2_0.31-3_0.3\", \"1185_l_1_r-0_0.42-1_1.16-2_0.4-3_1.73\", \"1186_l_1_r-0_0.89-1_0.17-2_0.78-3_1.79\", \"1187_l_1_r-0_0.23-1_0.19-2_0.28-3_1.26\", \"1188_l_1_r-0_0.78-1_0.36-2_0.1-3_1.5\", \"1189_l_1_r-0_0.44-1_0.25-2_1.26-3_1.08\", \"1190_l_1_r-0_0.17-1_0.03-2_0.99-3_0.21\", \"1191_l_1_r-0_1.24-1_0.52-2_0.15-3_0.77\", \"1192_l_1_r-0_1.12-1_0.3-2_0.97-3_0.46\", \"1193_l_1_r-0_0.71-1_0.14-2_0.38-3_1.75\", \"1194_l_1_r-0_0.3-1_0.49-2_0.69-3_0.32\", \"1195_l_1_r-0_1.08-1_0.91-2_0.05-3_0.52\", \"1196_l_1_r-0_0.52-1_0.7-2_0.05-3_1.14\", \"1197_l_1_r-0_1.13-1_0.06-2_0.3-3_0.69\", \"1198_l_1_r-0_1.91-1_0.28-2_0.25-3_1.67\", \"1199_l_1_r-0_1.68-1_0.9-2_0.98-3_0.45\", \"1200_l_1_r-0_0.1-1_0.38-2_1.32-3_0.63\", \"1201_l_1_r-0_0.5-1_0.17-2_0.44-3_0.95\", \"1202_l_1_r-0_0.33-1_0.92-2_0.7-3_1.36\", \"1203_l_1_r-0_0.81-1_0.22-2_0.47-3_1.68\", \"1204_l_1_r-0_0.59-1_0.7-2_0.67-3_0.88\", \"1205_l_1_r-0_0.65-1_0.09-2_0.19-3_0.97\", \"1206_l_1_r-0_1.22-1_0.14-2_0.24-3_1.64\", \"1207_l_1_r-0_0.72-1_0.53-2_0.46-3_0.84\", \"1208_l_1_r-0_0.01-1_0.25-2_0.06-3_0.48\", \"1209_l_1_r-0_0.21-1_0.37-2_0.28-3_0.14\", \"1210_l_1_r-0_1.79-1_0.15-2_0.09-3_1.37\", \"1211_l_1_r-0_1.67-1_1.03-2_0.12-3_0.15\", \"1212_l_1_r-0_0.0-1_0.2-2_0.43-3_0.18\", \"1213_l_1_r-0_1.07-1_0.22-2_0.61-3_1.43\", \"1214_l_1_r-0_1.07-1_0.2-2_0.15-3_0.69\", \"1215_l_1_r-0_0.26-1_0.2-2_0.84-3_0.87\", \"1216_l_1_r-0_0.08-1_0.31-2_0.21-3_2.2\", \"1217_l_1_r-0_1.09-1_0.05-2_1.56-3_2.26\", \"1218_l_1_r-0_0.21-1_1.37-2_0.34-3_0.27\", \"1219_l_1_r-0_3.37-1_0.56-2_0.08-3_0.15\", \"1220_l_1_r-0_0.54-1_0.84-2_0.35-3_0.15\", \"1221_l_1_r-0_0.23-1_0.52-2_0.27-3_1.98\", \"1222_l_1_r-0_0.3-1_0.74-2_0.08-3_0.17\", \"1223_l_1_r-0_0.76-1_0.22-2_0.69-3_1.83\", \"1224_l_1_r-0_0.55-1_0.96-2_0.11-3_1.54\", \"1225_l_1_r-0_0.15-1_0.35-2_0.94-3_1.23\", \"1226_l_1_r-0_1.56-1_1.06-2_0.05-3_0.24\", \"1227_l_1_r-0_0.09-1_0.46-2_0.12-3_0.07\", \"1228_l_1_r-0_1.04-1_1.13-2_0.28-3_0.69\", \"1229_l_1_r-0_0.87-1_0.13-2_0.05-3_1.48\", \"1230_l_1_r-0_0.03-1_1.38-2_1.01-3_0.18\", \"1231_l_1_r-0_0.61-1_0.16-2_0.51-3_0.72\", \"1232_l_1_r-0_0.62-1_0.18-2_0.27-3_0.19\", \"1233_l_1_r-0_0.28-1_0.07-2_0.74-3_0.25\", \"1234_l_1_r-0_1.13-1_1.22-2_1.09-3_0.47\", \"1235_l_1_r-0_0.14-1_0.02-2_0.06-3_0.77\", \"1236_l_1_r-0_0.86-1_0.62-2_0.96-3_1.19\", \"1237_l_1_r-0_1.0-1_0.2-2_0.18-3_1.08\", \"1238_l_1_r-0_0.76-1_0.44-2_0.6-3_0.57\", \"1239_l_1_r-0_0.52-1_0.19-2_0.25-3_0.59\", \"1240_l_1_r-0_2.26-1_0.02-2_0.35-3_1.32\", \"1241_l_1_r-0_0.93-1_0.06-2_0.34-3_0.42\", \"1242_l_1_r-0_2.52-1_0.59-2_0.12-3_0.44\", \"1243_l_1_r-0_0.74-1_0.09-2_0.16-3_0.46\", \"1244_l_1_r-0_0.26-1_1.14-2_0.79-3_0.09\", \"1245_l_1_r-0_0.52-1_0.33-2_0.08-3_1.8\", \"1246_l_1_r-0_0.48-1_0.14-2_0.99-3_1.23\", \"1247_l_1_r-0_0.42-1_0.57-2_1.02-3_1.36\", \"1248_l_1_r-0_0.11-1_0.2-2_0.1-3_0.9\", \"1249_l_1_r-0_0.55-1_1.0-2_0.92-3_0.05\", \"1250_l_1_r-0_0.86-1_0.28-2_0.21-3_0.22\", \"1251_l_1_r-0_0.5-1_0.39-2_0.75-3_1.4\", \"1252_l_1_r-0_0.77-1_0.23-2_0.71-3_0.22\", \"1253_l_1_r-0_0.96-1_0.26-2_0.56-3_0.36\", \"1254_l_1_r-0_0.56-1_0.24-2_0.13-3_1.43\", \"1255_l_1_r-0_0.16-1_0.61-2_0.15-3_1.24\", \"1256_l_1_r-0_0.86-1_0.2-2_0.42-3_0.66\", \"1257_l_1_r-0_0.09-1_1.09-2_0.75-3_1.99\", \"1258_l_1_r-0_0.71-1_0.07-2_0.08-3_0.12\", \"1259_l_1_r-0_0.02-1_1.14-2_0.59-3_2.0\", \"1260_l_1_r-0_1.23-1_0.73-2_0.42-3_0.76\", \"1261_l_1_r-0_0.35-1_0.38-2_0.66-3_0.04\", \"1262_l_1_r-0_0.48-1_0.67-2_0.25-3_1.48\", \"1263_l_1_r-0_2.08-1_0.17-2_0.28-3_0.03\", \"1264_l_1_r-0_0.25-1_0.15-2_0.03-3_0.36\", \"1265_l_1_r-0_0.05-1_0.1-2_0.89-3_1.69\", \"1266_l_1_r-0_2.61-1_0.08-2_0.12-3_1.16\", \"1267_l_1_r-0_0.79-1_0.63-2_0.84-3_0.57\", \"1268_l_1_r-0_0.46-1_0.14-2_0.24-3_0.74\", \"1269_l_1_r-0_0.46-1_0.25-2_0.32-3_0.25\", \"1270_l_1_r-0_1.02-1_1.66-2_0.17-3_0.63\", \"1271_l_1_r-0_1.89-1_0.66-2_0.42-3_0.04\", \"1272_l_1_r-0_0.56-1_0.35-2_1.76-3_0.09\", \"1273_l_1_r-0_0.79-1_0.43-2_0.16-3_1.49\", \"1274_l_1_r-0_1.3-1_0.25-2_0.67-3_0.9\", \"1275_l_1_r-0_0.59-1_0.16-2_0.87-3_0.93\", \"1276_l_1_r-0_0.05-1_0.16-2_0.84-3_1.93\", \"1277_l_1_r-0_0.02-1_0.06-2_0.57-3_1.63\", \"1278_l_1_r-0_1.34-1_0.08-2_0.42-3_0.73\", \"1279_l_1_r-0_1.39-1_0.57-2_0.22-3_1.83\", \"1280_l_1_r-0_0.66-1_0.26-2_0.24-3_0.75\", \"1281_l_1_r-0_0.06-1_0.8-2_0.34-3_0.96\", \"1282_l_1_r-0_0.39-1_0.42-2_0.27-3_0.32\", \"1283_l_1_r-0_0.52-1_0.14-2_1.03-3_0.19\", \"1284_l_1_r-0_0.08-1_0.09-2_0.79-3_0.95\", \"1285_l_1_r-0_0.98-1_0.99-2_0.48-3_0.29\", \"1286_l_1_r-0_0.16-1_0.38-2_0.63-3_0.29\", \"1287_l_1_r-0_0.52-1_0.45-2_0.03-3_0.71\", \"1288_l_1_r-0_1.23-1_1.0-2_0.02-3_0.6\", \"1289_l_1_r-0_0.01-1_0.87-2_0.41-3_0.13\", \"1290_l_1_r-0_0.82-1_1.11-2_0.69-3_0.13\", \"1291_l_1_r-0_0.79-1_0.93-2_0.1-3_0.49\", \"1292_l_1_r-0_0.74-1_1.43-2_0.86-3_1.0\", \"1293_l_1_r-0_0.44-1_0.07-2_0.26-3_0.11\", \"1294_l_1_r-0_1.23-1_0.63-2_0.69-3_0.71\", \"1295_l_1_r-0_0.28-1_0.09-2_0.61-3_1.94\", \"1296_l_1_r-0_0.09-1_0.12-2_0.87-3_1.4\", \"1297_l_1_r-0_0.93-1_0.04-2_0.06-3_0.52\", \"1298_l_1_r-0_1.73-1_0.04-2_0.69-3_0.26\", \"1299_l_1_r-0_0.53-1_0.36-2_0.66-3_1.2\", \"1300_l_1_r-0_0.67-1_0.37-2_0.98-3_0.69\", \"1301_l_1_r-0_0.54-1_0.33-2_0.77-3_0.53\", \"1302_l_1_r-0_1.06-1_0.73-2_0.51-3_0.32\", \"1303_l_1_r-0_0.13-1_0.12-2_0.48-3_0.39\", \"1304_l_1_r-0_0.36-1_0.11-2_0.11-3_0.21\", \"1305_l_1_r-0_0.51-1_1.22-2_1.43-3_0.44\", \"1306_l_1_r-0_0.43-1_0.26-2_0.44-3_0.0\", \"1307_l_1_r-0_1.72-1_0.03-2_0.02-3_1.3\", \"1308_l_1_r-0_1.28-1_0.4-2_0.16-3_1.94\", \"1309_l_1_r-0_1.33-1_0.13-2_0.93-3_0.71\", \"1310_l_1_r-0_0.61-1_0.54-2_0.59-3_1.22\", \"1311_l_1_r-0_0.1-1_0.39-2_0.49-3_0.03\", \"1312_l_1_r-0_0.03-1_0.41-2_0.32-3_1.69\", \"1313_l_1_r-0_0.42-1_0.73-2_0.12-3_2.04\", \"1314_l_1_r-0_0.19-1_0.53-2_0.02-3_0.71\", \"1315_l_1_r-0_0.13-1_0.65-2_0.23-3_0.97\", \"1316_l_1_r-0_0.41-1_0.81-2_0.49-3_1.85\", \"1317_l_1_r-0_1.76-1_1.08-2_0.21-3_0.72\", \"1318_l_1_r-0_1.07-1_0.01-2_0.28-3_0.5\", \"1319_l_1_r-0_0.98-1_1.38-2_0.63-3_0.85\", \"1320_l_1_r-0_1.18-1_0.06-2_0.66-3_0.59\", \"1321_l_1_r-0_0.14-1_0.19-2_0.72-3_1.24\", \"1322_l_1_r-0_1.03-1_1.2-2_0.44-3_0.47\", \"1323_l_1_r-0_0.66-1_0.56-2_0.24-3_1.18\", \"1324_l_1_r-0_0.19-1_0.27-2_0.33-3_0.0\", \"1325_l_1_r-0_1.62-1_0.43-2_0.53-3_0.72\", \"1326_l_1_r-0_1.21-1_1.13-2_0.34-3_0.58\", \"1327_l_1_r-0_0.44-1_0.13-2_0.85-3_0.72\", \"1328_l_1_r-0_0.18-1_0.5-2_0.7-3_0.02\", \"1329_l_1_r-0_0.21-1_1.55-2_0.12-3_0.14\", \"1330_l_1_r-0_0.34-1_0.64-2_0.24-3_1.14\", \"1331_l_1_r-0_0.14-1_0.52-2_0.6-3_0.41\"], \"type\": \"scatter3d\", \"x\": [0.7300962227313349, 0.9444832967954302, 0.4921636647618268, 0.5476768229285722, -0.40595666419038445, 0.284195236007021, -1.0994921022709125, 0.632231655085937, -0.1287586919204916, 1.0467047305191193, -1.044657303132336, -0.7648236354026244, -1.8890118427853315, -0.14607642616307298, 2.097822908865053, -1.2708495248184304, -1.321138394296017, 2.2107491267640675, -0.7729425682348602, -1.0011343509622201, 1.6201651262335393, 1.267649375406023, 0.8918139321779911, -1.067991746589748, 0.9091701041789941, 0.7439919119070395, -1.4335982448803133, 0.029003696169047945, 0.5628042797327055, -0.11030577371785409, -0.5132048815718602, 0.9818288597013276, -0.3830806272677222, 0.1852293567669599, 0.041245029433630245, 0.4935803015400635, -0.48915930940872177, 0.2594817802108137, 0.07669180292284496, 0.6936657683178328, 0.02743031899721645, 0.7172612791815082, 0.6476267180785552, -0.45704487379896397, 0.6534535201919924, -0.891582450435417, 1.0572955943002575, -0.37950980676363544, -0.7537466509667479, -0.7850796605445399, 0.6767725896598369, -1.2880962886965466, 0.9768924526370752, 1.1476149906062179, -2.789980318476808, 1.1554614634092246, -1.2341798916423867, -0.8199301367622727, -0.7716473207511574, -0.10056724374775808, 0.8607935873524764, -0.413284144448275, 1.5050364584409042, 0.08772169798530179, 1.1845457336707035, 0.4892044658797125, -1.2818978410523092, 1.3991785109071422, 1.5243369835389908, 0.08285682793978724, 1.8092779409976691, -1.3256420886533848, 0.1660710140135667, -1.3478967378764362, 0.26527717001748646, -0.48943953537464685, 0.7358213716589215, -0.4783241399549935, 1.4392677446333453, 0.0020058532417931586, 1.2394024143963351, -0.6901227240586423, -0.9503929404959346, 0.3432466021383488, 0.18471632587620587, -0.18290557540787677, 0.09927693609976722, -0.07575817492562952, 1.529034174407075, -0.03029331133341092, 0.19883724335747913, -0.08095716737693036, -2.3077529694704397, 0.7853453155936433, -1.5370773652786391, -1.4464832197336286, 1.9477753345654516, -0.8734319377013462, -2.431502034748074, 0.5752222936364787, -1.0989418755699238, 0.47180323824193826, -0.07049758417937559, -0.9835320202348012, -0.7789972401085311, -0.5714593662322124, 1.0521033293055495, 0.5522521254234269, -0.7865494865087116, 0.16986065357018693, -0.5650262819381325, -0.26075871407872964, -1.6898961199331077, 1.0187154330911976, -1.57724294748549, 0.3195224635372801, -0.8104950620039676, -1.1376362185424809, 1.0425798430391349, -0.9879541259158815, 2.018884268886089, -0.43247297494848685, -0.5925393805442192, 0.8512633583425944, 1.2384345668963956, -0.7396049637758761, 1.1457448477058005, 0.5965953334825076, 2.050383999418526, -1.2774995273341738, 0.9604482874802612, 1.0320795680238235, 0.8616179731614064, 0.8046228965650463, -1.8861141898698226, 0.7644467293956345, 1.9237867003539009, 0.7052223454571674, -0.05146357605098353, -0.7227190501399373, -1.1487954867533643, -0.469339683723377, 0.6611468366421017, 0.8645977599948278, 0.7358009223826115, -0.7029555867969371, -0.6029616239793995, -0.2731402575965865, 0.546274683351568, 0.04822441549472656, -0.32586465578357965, -1.0252448985221836, -1.6812760269877856, -0.9850705429804418, 0.2945037142233646, 2.025243127248053, -1.0698321365772114, 0.8194361936931547, -0.7707826169729921, -0.7482741540107547, 0.40238181445846366, -0.03846290208774116, 1.0544395347881368, -0.1546535419644874, -0.33835774109764016, 0.49324260401875725, -0.4060456619259799, -0.0558042574492496, 0.3087899134497109, -0.11786157635662825, -2.3602064340078592, -0.09033745963415744, -1.3892470090279814, -1.4483232342643106, 0.2923975060473343, -0.8134864340892308, -1.6971409695970887, 0.3899765217441566, 0.852794720727502, 2.529792542539988, -0.725101518179856, 0.4891455110320362, -0.9349230870138293, -0.5779725329152003, 0.7177045537690677, 0.1343308987207775, 0.27645286648930845, 1.1538647590545452, 1.932465589541849, -0.9618163793878597, 0.6409587608617635, 1.8494638636354774, 0.8002151972679957, -1.046121809163989, -0.4216497605521299, 1.08305847710411, -1.2871445117748685, -2.363297908842704, -0.5995010091417731, -0.5009211366105176, 1.509550410245511, -1.0756336106510391, -0.27496453151384176, 0.6512896212672782, -0.4270479633205581, -0.8831467943427145, 1.3927321475055716, 0.20190094141144593, 0.5233621747486144, -2.1609834685905054, -1.1110461660852902, -0.051864381161523136, -0.9150739398458761, 0.37383971347212447, 1.2198021501763037, 0.8059345702546589, 0.36100032919925523, 0.9435506811279836, -2.0125611117950832, 0.2704381844370968, 1.223370108758479, 1.1115626608499891, -0.4803147898821664, -0.3265324230615172, -1.3567028088115118, 0.9650118800388233, -0.47277571230076787, 0.08489106953176885, 1.1540381573358431, 0.36060683565756035, -0.13316596154084925, 1.2706547813587792, -0.6217416445535691, -1.341080917189132, -0.30114347897899685, 1.2283385227860106, -1.6094418177856147, 0.675542858869805, -0.4697944551860385, 1.3622455907585616, 0.08426493359542458, 1.0167203754011649, 1.833612188637331, 0.3013716111286976, -0.48306225422474863, -0.6808895291073253, -0.496089905259562, 0.8720167544634735, 1.7259465343418277, 0.9795501156600447, 0.5581874444063536, 0.14440638506293463, -0.8285440551544652, 0.2841131543108195, 0.3070874063452354, 0.9000872468813089, 1.1347732690719994, -2.1064549770658267, -0.3209510255450378, 1.1430898212682414, 1.721034697629314, 0.4750450074328954, 0.07872436328773026, -0.04041618494322786, 1.1674943558418318, 1.8708703751582787, -1.3924927091188557, -0.49511427493100485, -0.32895669588496723, -1.1379378395582587, -2.1456301877996515, 1.0413911818925905, -1.5105901517376463, -0.49330987563181783, -1.369822740539259, -0.4098736639278354, 0.08174683252455937, -0.6920979774645946, 0.20144233730856656, 0.6239293648856445, 0.5681635414406188, -1.8048529851616992, 1.1072117603344487, -1.7009450886831363, 0.1864379868598385, 1.314979041736007, 0.036484673497881, -1.4391002811376106, 1.0206679478017016, -0.4346902187649851, 0.09491686612867437, 2.4055065807232427, -2.0926378276563358, 0.5138138369676571, -0.4727740243977754, -1.0372356408971848, 2.400842657527983, -1.5523348198972378, -1.1095931800688739, -1.1897590283361401, 0.38874045434154814, -0.44656163644028873, 1.8023220456090718, 0.3034583483405342, -0.9838918947427767, -0.13833293248519518, -0.8272245766374483, 3.0338507683549834, 1.83928507552436, -2.1088069611608806, -2.67178697665103, 1.1518665228499145, 0.9146905757266534, 1.1852983023037527, -1.635122207298412, 1.799128292968565, -0.09812326107581422, -0.8399793687981884, 2.102519044320312, -2.0844457756240304, -0.8712398420489961, 0.3819729796855585, -1.012662126684793, -2.267158107383947, -1.6598639473642864, -0.546249517415911, -1.711251924309124, -1.2905391675583615, 2.088339564405188, 1.1474707089357052, 0.7438230104612303, 2.718797008189675, -1.1673858939440038, -1.161936872944497, 2.298263265450113, -1.3826085599447688, -2.929771105948152, 0.09356517496323473, -2.2581663172847777, 0.545435201322118, 0.4252642688992313, -1.4412859878615691, -0.5364013266315865, -1.1500452396992986, -0.7518457416078654, -1.2920225931317408, -1.6062710252263412, 1.3570243678285965, -0.13013346810827342, 1.7511086130425055, -1.0978441165715294, -0.7042673564032758, -1.9133719403261202, 1.7199237510684329, 2.2342455165030444, -0.4889798476600637, 0.681928532305548, -0.9081427961038704, -2.033076315585872, -0.3017896409666138, 1.3871943323672198, 1.0589353647927358, 2.309070056833761, -1.3550994362386468, 2.0037231229203587, 1.0522928398858087, 1.1281117691682265, 1.1532467633862746, 0.846794354380436, 0.9753312767656301, 2.338779732250179, -2.237943852886461, 0.8654059629884279, 0.6208704519206475, -2.3481152961460623, -1.5261641606884246, 1.1401938568542185, 1.697582955935084, 0.6283094846492469, -0.9221516745238503, -2.6634176086131083, 1.4519124243745072, 2.3665830150338674, -1.248047009591584, 0.2649049638706615, -2.3497578763616493, -0.22604433241933397, 0.5834259523891382, -0.16779297566206416, -0.11757460062755765, 1.8627619639072435, 2.502731983956328, 1.8517846464317078, 0.1229564454054778, -0.24077507784370347, 0.8253273135598782, -0.2036399610045771, -0.08385041136229532, 0.7074858814844024, -0.5834877267374277, 1.2265941611074986, -0.48149281972798325, -1.243450259387143, 0.5357434642401314, 1.4653461165311163, -1.0986528754440954, -1.1562400765076133, 0.3512197061195112, -0.8110536194269214, 1.2163894610481274, 0.5775496733999591, 0.09331613314448836, 1.8258826070801104, 2.493325827071066, -0.3765864006181868, -0.7983111661541478, -0.633397970717479, -1.0287085570937744, -0.43070569320295393, 0.6845586995906773, -0.90104499276046, -1.9832528748225355, -1.5124988159229251, 2.52823901342036, -0.991900202115599, 1.2231270832936616, 1.4943033549944231, -2.1932734519207866, 0.5326396988976194, -1.4027680775930884, 0.3929966515938783, 1.2281188951524251, 0.6103051098781219, -0.7326263005608323, -1.9383563557213719, 1.790351543949647, -0.9622120697651796, 2.3611407746844977, -0.28027652751977483, 0.5491172346437119, 2.1933811910866496, 0.3530723770830373, -2.1110751048957064, -1.560333496701424, 1.6559550262840401, 1.5105592555721614, -1.4555476811344255, 0.9235281245731471, -0.5320874794161504, 0.5889884190691704, 1.170151847904283, 0.9088388224810408, -0.9306026603589583, 0.057768281561122334, -2.0002404282162853, -0.01912816372732448, -2.6296552966829796, -1.156903088339133, 0.09787310652589408, 0.3976805976258273, 1.9657821858600495, 0.8062133929885702, -0.031707089528007694, -1.3461284754810556, 1.4939249173252278, -1.1729282817774274, -0.3792291483072939, 0.8489965989830872, 1.2473200084481415, 0.812008246544778, -0.8924309724492647, 1.2674346899478788, -1.3883991899774222, -0.5750478513506773, 1.3342957881771602, 0.5749619672807298, 0.342096852199848, -0.8070972336266907, 1.4394368832127027, -0.9951498206784337, 1.6720172632952388, -1.759550241123365, -3.251748445295843, -1.0395874016716309, -0.2871133492479956, -1.157327481971864, 0.020309088555102054, 1.9431367790480336, -0.12901714606309808, -0.5942123671358068, -0.031932740582129984, -2.208968904408663, -0.5280093118132965, 1.183392469874159, 1.7885225372037372, -0.9115705306524722, 1.6349625432242327, 1.3257424194594896, -0.3238379670097588, 0.6489334995207101, 1.7555860370517924, -1.2229604509067655, 1.1333845455122107, -0.9225826148561582, 0.3656216921581165, 0.5909119743088971, -1.6429632198108652, -0.9517954801240935, -0.9893383351372239, -0.4676919820753886, 1.7805854592957533, 0.9711513900906759, 0.9120845007720881, 2.94760301579273, -0.8176238553910173, 2.1129994184045393, -1.643120638021375, 1.258718418267197, 1.8719387881230218, 2.3791845746579483, 2.451879950500607, 1.6164343727901365, 0.09695665716833664, -2.2323442048397855, 0.9879642502648243, -0.9628734807504334, -0.9738263675775699, -1.550382457205263, 0.6922177145990539, 0.05086314375413865, 0.20900822372076286, -0.3043909691983638, -1.740969128709185, 1.4855984803704902, -3.196264511863515, -1.0553643059659759, -2.237977268060468, 0.6070275380224831, 0.780666582002775, -0.18737087520487186, 0.23795402105192887, 0.45540987484434753, -0.5870764028704792, -1.4543783818501659, 0.09387454656974288, -0.16633571114113926, 3.0952100655836596, -0.6110874879295237, -0.1495135623467277, -1.6556863676638427, -1.5387156771833381, -1.9326740462962524, -0.9634008123849649, 0.41871554809756184, 0.3544819921825613, 1.5419307075561108, 1.662035481312738, -0.9072439537888024, 0.545008944278488, -1.1109393079973997, 0.04502277829326271, -0.3405215438428359, 1.338029752950522, -0.045463278713706846, -1.0112777615429969, 0.9653886931280738, 1.7801913443517885, 0.7868379154744268, -1.0873161326736687, 2.0759005835141138, 2.4596746317013602, 1.772201740336538, -0.9484194538008947, -1.9906055101165878, -0.3521876926724999, 0.7682076510039381, 0.11983328681008287, -1.1106042207345501, -1.3940983145714931, 0.39912189613924504, 2.284226971553204, -1.0276370651804703, 1.2214292810191099, -1.6956142932617275, 1.5290311556801552, -2.5800095987309013, 0.7096513191591358, -0.555402769643968, -2.045294764078012, -1.6886243181511293, 0.417135694439129, -0.7486103600691911, 1.9714095757348895, 1.974813520491913, -0.4209340905660293, 0.6614375456430267, -0.7108610306237519, -0.2816638253540541, 1.371412911169134, -1.0299986957502365, 2.9003619285548354, -1.8223094789386338, 1.0842181617702107, 2.584702228038465, 1.5446494572952507, -2.1411641347363535, -1.7587819988631377, 1.417020252234277, -1.3469825329679912, -0.8726026463461075, -1.2158455852669598, 0.5683399386518402, -0.42011010983136815, 0.42352159319663096, -0.8089837800578386, 0.34411477319800965, 0.5922395760102005, -1.184085463965462, -0.7904479189176352, -1.349631419218437, -0.8862685737021492, 1.1969717810301965, 1.8262742123134175, -1.5263080167787717, 0.7235435900182104, -0.7289973041952017, -0.8554001044445853, 1.6008710439587406, -1.7420681289963817, -0.6883241214842721, 1.1221455508084042, -0.05753947369894872, 1.4183120553990454, -1.6511354605838204, 2.7500528617846705, 0.7714728232851507, -0.7786195704746269, -0.47780030013450686, 1.3856692735342016, -1.4296173783771957, 1.4064803275185238, -0.017386774551994163, -0.2859901104541629, -1.0565655132509197, 0.5919310250513962, 1.1670930503570016, -2.0081795898144583, 2.300569439569333, 0.02486729385358481, -1.1725015433619472, 0.4902472586362229, 0.44253951103559586, 2.316805419692296, 0.7338116780592713, 1.0529369039312582, 1.123455166807169, -2.1409137192896748, -1.411248923544293, -1.372027041586134, 0.5333091202660238, 0.48851293916235505, 2.302195918590875, -0.6993111684551411, 2.0187116968089818, -0.2354513941664887, 1.853186351311706], \"y\": [1.1244346039283266, 0.5659870045806653, -1.3982928078708763, -0.43453739031436533, -0.06968771056712803, -0.27287690845839385, 0.31669114797300607, -2.310489663428637, -1.8311317906529374, 2.081892249210732, 1.0107508775121388, 1.5475595491814356, -0.941211834895478, -2.094908608267133, -1.477950151413617, -0.3717085323635723, 0.7431764326791132, 2.5878463704692387, 0.19041665631120216, -1.4210162455772883, -0.07255450474695113, 0.3965656671209583, -0.9062659113525839, -0.43834826156997186, 1.3003559132673626, -0.8266894118714951, 1.4739622110778243, 0.6337537514598279, 1.6964294560586801, -0.619603793939663, 1.4153169601915714, 0.14940600450840294, -1.0114657063042516, -1.157368601757503, 1.7703442847223203, 0.0946942276993615, 1.8931942656032705, 0.2051267154308041, 1.812043645419575, 0.14479023644131792, 0.14338975614745933, -0.29554579775073264, 1.679700157362058, -0.9465395177541397, -1.7283634275731368, 0.5991356913852053, -2.202579182890468, 0.2959501235584991, 2.4878080533535862, -0.7911661281372593, 1.844789264428028, -0.2347928669488844, -1.9955394543418497, -0.5083147895280891, -0.7462417930531418, 0.08497159670209377, -0.732515100931549, 1.2397750694827194, 2.052271334806801, 0.0692532921369945, -2.1578246415616866, -1.3190198731155534, 0.0231979278959085, 0.272639268402728, 0.5729485765323195, -0.3881747827513114, 1.5497709626485283, 0.1874733921996868, 0.49512196628942035, 0.8255972013478174, -0.2906053192147259, 0.5808701568028052, 0.562102521473999, 0.1417197026583069, 1.0885462662811052, -0.025963725288774213, 1.5740713789062928, 0.7668338029690545, 0.5232630546124702, -0.7449432224693017, -2.104663920118397, -1.0524875362289268, 1.9419329246558523, -0.08221922457692442, -2.5680408833249206, -0.46211361391360467, -0.2290410643325121, -0.586367729034426, -0.38012968237012074, -0.04934691969419762, -0.2607596995323461, 1.1099036389652477, -1.049147634389612, 0.2497215691997699, -2.6412417849196075, -0.3325841121831408, -1.1067396352172247, -1.1110907218200248, -0.2286111048525201, 0.1727285506988235, 0.32033552425945516, 0.5705940573925085, -1.7113800036537496, 0.42319764400916765, -1.4891227583511057, -0.2127162625932905, 1.1300051258048143, 0.7381675672124801, -1.0919353704457804, -0.6547836717332702, -1.191710780527071, 0.5134773760749382, -1.235001956709909, 0.584493407851016, 1.8043139594424358, 0.2976413732281114, 2.4391086936361344, 0.6700750619260967, 2.8585829921953323, 0.3020911770794517, -2.4223735057169273, 1.3660051842335077, -1.1148832027934505, -0.2958880075785944, -0.2323501060512977, -0.6058894768455145, 2.530839059405373, 0.7525481638390503, 2.185295417852593, 0.15802598165347562, 0.7075370212079302, 0.3762753958995106, 2.682595788124725, -0.9537366339727888, 0.09653603081085749, 1.174611062816274, -1.8791396213080627, -0.27003102075232976, -1.8231978167402498, -1.0267567003647378, 1.8715959625197947, 0.6180349441047609, -0.17969154177955574, -1.506431992093872, 0.8433292393976695, 0.8073689339822933, 1.4932466671836397, 0.5780280761821301, -0.3314051210556895, -1.8986587055745878, 1.1299630664300435, 0.8621901023210786, -1.6299293406376436, -0.5716924896935892, 0.4639686329809245, 2.018517735982387, -0.5581241890092885, 0.2441914695809723, 2.5322996634957478, 0.6465123085587612, 0.7591218951378602, 1.683329895380279, 0.6798490733206843, 0.4756917233248554, 0.21288920795391877, -1.3639863980045277, 0.7399485495817392, -0.7206201075109672, 1.3106129456954694, 0.2305559467686885, 0.3600174367151173, -0.38077258095189426, 0.016528730814668446, -0.7198568620671436, -0.184714776125272, 0.7684715864715246, 0.5913590570797662, -0.18240870421586197, 0.7722198739465904, 0.08451815968253436, -0.3331463274853526, 0.030128404659796593, 0.8648367540481271, 0.4041721570594245, -0.7642812913525984, 1.6553039081331848, -0.7322201898816262, 0.8502382774038602, -0.1673863046597939, 0.8060331406853538, 0.9284329936490593, -0.3217398857941901, 0.9193526502839974, 0.6062795990182475, 0.8185627207078238, -0.1052707958232786, 0.19510395587903406, -0.9680313841709814, 0.36663494028145427, 1.2955886609060323, 0.3927867165011189, 0.14257086070021643, 0.9931865203045991, -0.5443993645667033, 0.7610562548450145, 0.8609537283843147, 0.7721790190347898, -0.5386312098688208, 0.4184824957059039, -0.43358591024360044, 0.8903987183102161, -1.2217380400733593, 1.802582563123153, -0.5431708926974653, 0.5507026192465168, 0.34112280279985835, 1.1167294027060959, 1.0930491382322665, -0.0136301376068668, -0.7036302240595306, -0.15966512065740449, -1.9300273460603714, 1.31017709805822, 0.4726058546654327, -0.635377853490602, -0.7009937667908922, -0.7446719069567346, 0.30208453549309777, -0.4818700037351255, 0.1336211141066474, -0.01986372222383821, -0.31021402687948124, -0.7101330944990494, -0.3154301062021691, -1.1045528311579556, 0.45573334661061526, 1.322891402878742, 0.4520291776910211, -0.6762690187649985, 1.4084069912234265, 0.9294798802744243, -0.1130253813040571, -1.6343486298411716, -0.1674982487771352, 0.05472387097728134, 2.276965533627537, 0.6120933238920192, 0.9483456181599565, -1.123774473785783, -0.9076547992529115, 0.1385173356091842, -1.5173230753817823, -0.6547622851922545, 0.20962297254718798, -0.12606894492735057, -0.19186270034134809, 0.13073382714423015, 0.8380697130872953, 0.09464612254566843, 0.4814543508325347, 1.4403726916664246, 1.1429940728042407, 0.9862689481629806, 0.4952629910493708, 0.47338005525105586, -0.2653342765825527, 1.912206453291557, -1.141484601246961, -1.7455126976231823, 1.762359718204947, -0.03302339651833885, 0.5289190149263683, 2.215764098850683, -1.765232186328267, 1.2864550435869695, 0.7654001530169989, 1.9544663440545302, 1.2374459339031534, -2.272278561989228, 1.231294128232282, 0.2370659288312681, -1.0511081399131708, -1.2357059770972019, -0.2681377641222112, -2.1646239447345383, -1.5389701770581699, -0.31924620788460656, 1.6779833937319468, -2.2223894710914784, -1.0150226650316398, -1.3154811738852368, -0.48431788490665334, 1.0645039567772328, 0.7415525579479559, -1.3387543559393211, -1.3629810063469021, -0.5218498212935381, -2.0705670935561122, 2.0198355318520673, 0.6342638397374346, 1.4566454123791333, -1.8050012927544017, 1.7747686544006553, -0.38426655816396255, -0.16520828999383164, 1.5815792899047372, 1.2432616243595893, -0.9594779412269179, -0.597023190870324, 0.36082097421605236, 1.3731197382952398, -0.9519687630387903, 0.7213743367349714, 1.6430496416495186, 1.8049734658273124, 1.1071141877099882, -0.9467819098621528, -0.2486530724523501, -1.1752914874359504, 1.0876229088517104, -0.977922358097271, -1.9517176678196815, 0.7550183654199344, 1.1701098420343488, -3.8272289421580385, -0.9176220885363666, -1.036917542706139, 1.3717100931778488, 1.4850653293251614, -1.5832056910980712, -2.2503373968349183, -0.19057017623950726, 1.0543222621119588, -0.5926120540209836, 0.433473142382581, 1.1443593516685366, 0.6084479055305819, -0.7600323871889696, 0.36506982502544916, -1.4088726036019033, -0.10730458491233506, 1.1433761493768875, -0.9027495535082787, -1.7594597633393754, -1.712751573782771, -1.4495273786262943, 0.1158853516505784, -0.09225433625303728, 0.8830711289139869, 0.2331980817757769, -1.8675119838846042, -1.1840716070746793, -0.21080799887402019, 1.1646108726600233, 0.8108237241721848, 2.3757208624871198, -0.3163393835614397, -1.602915935183668, -1.526789629630624, 1.275122649917309, -1.4841519157769858, 1.0443609827093487, 1.0869020383645236, -0.3919290411542804, 2.05290914126289, -1.7835124103605549, -0.7517211590358406, -1.6241389267229125, 2.129387386980308, 1.6214233275053398, -0.15012659052295624, 1.1492467082654434, -2.0427491476419064, -0.3384700492438659, 0.3420949264716878, 2.1735409613568275, 2.241196176129193, 0.7360666678148092, -2.031180649924606, -0.2611118419401908, 0.16219715153535239, -0.9182971052277901, -0.7462087675921653, 3.513000292627285, 2.061184939220221, 1.1293907422536202, -0.987334759322043, -0.23132982880225741, 1.58298724167931, -0.7234987179648003, 1.4025592543365901, -0.621442048612933, -0.4073564220894655, 0.81851560643189, -1.9833155616050153, 1.351348257930398, -1.8893172222942163, 1.946936634638961, 1.5108834907246844, -1.576374025962285, 0.32973159704710986, -1.006330931488905, -0.575432496424214, -0.46481981910080405, -0.8569730257423795, -1.9567620319988226, 0.4251131693837947, 0.6650135347918598, 1.2293569507034448, -2.686805215145331, -1.5255686115007348, 0.566819770561441, 2.541214954746137, -0.8364523344079103, 0.5289585504743891, -2.5999941462451814, 0.06240019890540613, 0.05290757795274658, 2.1547015833709784, -0.812212532828222, -0.13875531814506573, 1.2613153293946349, -0.18243713433677322, 1.1162965467912735, -0.850279033552268, 1.148711357138806, 1.504197339527735, 0.5572033955165099, -0.4826005771854704, 1.4201665298650934, -1.7801499364856281, 0.1560574042938931, -1.5667882995791484, 0.6875147105192712, -0.3472713089527448, -0.24673948466813367, 1.4441251830068165, -0.12329422845818715, 1.790696922487599, -1.708240897710009, 0.5876650313638347, -1.4341548420950159, 0.9599217898410256, 1.1179028510467337, -1.286480659294476, 2.0325361070506296, -1.0246746114328211, -1.0157307178915174, 1.5389872553840533, -1.955060895135505, -1.198499535442399, -2.2805839960454346, -0.4637026324381857, 0.7643762706630479, -0.9522211549958657, -1.117403638750042, -0.67096860993253, 0.5085560086402701, -1.6819545783709344, 1.1797651686467632, -0.023106925587515925, 1.6234657224270135, -1.3794664966113892, -1.6934653382668519, -0.9641772253094548, 0.3789452632818805, -0.8131937463625779, 1.661416976843623, -0.5778432578756001, -0.8774594632648225, 0.5799897257353754, 0.7375186141793681, -1.6020173720445166, -0.0038411297176156396, 1.753028806819327, 1.0729622795950917, 1.489705413345783, -0.3289639506757947, 0.8302819887578305, -1.2260965875909338, -1.3727606059725406, -1.0363567570585497, 1.7775282719129528, -0.21010816988667066, -1.6139499171573775, 0.13453448606112817, -2.526997147832329, 0.8722961616641295, -2.0286795061770926, -0.6887985159739147, -0.13270272646593714, -0.9366573379323319, 0.6268541632339629, 0.9888961147917686, -1.7383564895799353, 2.0889362570525916, 1.0406432967274442, 0.864502613969944, -2.4747019481795247, -1.5507372287620884, 0.7834395138340196, -0.045097840387078744, -2.0829915464712068, 0.24726052917533126, 0.8342694038497007, -1.3295010106918692, 1.5741983892406828, 1.1558197319529366, 0.5252755906687562, -1.5116214863828237, -2.2469464795031038, -1.1046393817924105, -2.283456467382088, -0.15213241710419556, -0.3160787112095607, 1.2574412373818076, 2.323598761530204, -1.1114678652741878, 0.3051135134328, -0.9638906193576247, 0.7789143546927486, -0.2795712786757524, 1.4189689716473723, 2.9039159607151546, -1.580107649721948, -1.6988065724571573, -1.0884578365662796, 1.0271156430915511, 1.7182779073759997, -2.191849351599899, -2.713698383456401, 1.511286995130526, 1.2450857675212579, -0.980001416233218, 1.3156891564795954, -2.1122472751348735, -2.207631608401694, 0.46840880417410435, -0.6731653569037286, 0.34159830652868234, 2.4618136411239675, -1.6253484798023725, 0.06173667722806657, -0.28160153845348296, 1.4011190873447887, 0.12215427310368965, 0.452675862294215, -0.6242557521627182, 1.1149665544271197, -0.931938333830333, -0.20563549927233796, 2.3011505790747484, 1.1444149659337624, -0.07691205513411387, -1.330874033118095, 1.0992860499446828, 1.7192801480375322, -0.691554517369178, -2.2615678644707358, -1.0088010399197156, -1.973367352462951, -0.11999627657258577, 0.28290281184366334, 0.9465322014352323, -1.3801513269473589, 0.505586043661727, -0.27220684455869504, 0.7394861361380733, -1.6812044143572118, -0.05813376734033508, 1.4795947346819336, 0.17959375463076716, -0.5959105467523933, 0.25211308198772925, 0.8385359206649612, -0.33870433720453036, 1.5367314726740555, -2.505893268081851, -1.453990771835135, -0.0841235262954033, 1.341574878369653, 1.0206114704542126, 0.09664201399816601, -0.924010184933582, -0.20757286205217299, 1.9181513106639798, -1.379839389606493, -0.8337181403493237, 0.12893494427019045, -0.15121474541931948, 0.9208753233924515, -1.3407107960163906, 0.07869877680315479, -1.0526695384949831, -1.4699672836277835, -1.801353735868721, -0.25172412236390623, 0.8029226134994019, -0.03478659342665916, -0.8930194818477614, 0.12017822632500239, -2.219439277820952, 0.24115337858435154, -0.3163511614974212, 0.17389088030587468, -0.42209114130516306, 1.8249673716282078, -0.16196382792278158, 0.6652413231927579, -1.6645713949669734, -1.1791336683306968, 2.0521212328940592, -1.4330475267529368, 2.025189074219879, -0.24461116385213966, 1.9625566332787117, -0.26959881862698837, 1.0321709868332303, 1.1380871884687438, -1.557054732661678, 0.6283520328259624, 2.0927403027855505, -0.017233570221686936, -1.281597097054108, -0.6931971383556629, 1.3705534641410488, 0.9478816112777639, 0.263587794521715, -0.6854969087417948, -0.6101121200842418, 2.644439050177372, -1.323028222903994, 0.6943317761815707, -0.6631285343629901, -1.0397321833523017, -1.294398809738555, -1.6333741864274685, 1.0433071658492232, -1.1445621017661434, 1.5297820833788023, -0.43546672802993414, 1.5180805514459819, -0.16083437862678368, 1.2965019485218046, -3.0164006407059047, 1.3952622930260066, 1.8032319567299568, 0.12395711867134859, -1.4155377036183843, 1.7562387231167995, 2.1344188639514394, 0.20768426272812274, -0.28117142194717903, -3.217980086890483, 1.806118658156625, 0.7154476667449676, -1.8970169723818207, -0.746564710377243, 0.32524264604967457, 2.3632920624726905, 0.342203189203689, 1.418482203748114, -1.4875647603287698, 1.7490358037382412, -2.081890562445814, -0.59519204975336], \"z\": [0.20321874254843386, 0.7629132778141549, 0.04185909143785895, 1.0770372670238582, 0.5643411960873621, 1.134695254729971, 2.091095760802868, -2.417297163897162, -1.2463341446931135, -0.8267707368827174, 0.8161825582104137, 1.7764277888859605, 1.7024591979890995, 0.9193568828563092, -1.5371996254047653, -1.60499764697042, -1.7432871494884197, 0.7280317960881338, -1.4917257545057367, -0.7897256791413938, 1.5198732061412876, 0.09915170927817232, 1.4325502815172124, 0.42609140362774717, 0.6631275914056683, 0.5827285476875153, 1.8055648936480504, -0.1823039641479603, -0.2798933306645652, -0.6788342282708227, 1.1834420360448346, 0.9850438776136861, -2.9996099432719396, 0.2758144313384164, 1.3754253717572582, 0.24612032874176812, 0.1593271760155275, 1.446662320476887, 1.5578236868255162, 1.1925997701894495, -1.6633708517906016, 1.0445157719672922, 0.36978338446358044, 0.029564613123063806, 1.8749573529641623, -0.6891081851724294, 0.8427310039176792, 0.9398912154790183, -0.6263617376499833, 0.33080171086673144, 0.7912357636968572, -0.4348765512588955, -1.4658378644627335, -0.19667231845175356, -0.17744001186784064, -0.05053872327140008, 1.8226127089243123, 0.05022036180346093, -2.332260662793372, 0.07697824742836784, -0.11443371305568237, -0.018657211721903426, 0.2561898888236178, 0.7103855153611316, 2.463610842311815, -1.0022678577292263, -0.5796070016090161, -0.28577478697867814, 0.8835435773592579, 1.062997877156547, 1.4008415110571046, -0.015711447816133664, 2.6362573307605697, -0.23524432857754043, -3.205739982237005, -0.8499174124817349, 1.3834188189715741, -0.426770413504044, 2.2222097720999407, -0.7808059316926261, -1.7218050134309, 0.2279541664578395, 1.060772110557968, -1.2450872347309978, -1.0856947944638442, -0.1461354591528455, 1.8066847471086105, -1.2812998313760071, 2.127218486081894, -0.054059991565737577, 3.149019953114257, -0.47427840087330037, 0.1479609077852329, -0.22670533969043158, -0.18866250008390817, 0.04226893839572959, -1.2738095451491156, -0.41618563940505915, -0.9573707432770624, 0.38169704498501783, 1.759648221599006, 0.2033038229221119, -0.8132365662724791, 1.0053060241014322, 0.8756747493123789, -0.769437485892882, -1.6580018969530899, 0.6578263364416428, 0.9514421200958277, -1.2032497760918368, -1.903875778443479, -1.300744813799807, 0.0914230925860327, -0.7041338080035865, 1.1917698734167521, -0.15509269015672028, -0.4525431145009986, -0.18827146939267542, 1.063525469797544, -0.43618607876838783, 0.2451166037869396, -0.23619770743114832, 1.6239373967551611, -0.8125034970904871, -2.2154728371258736, -0.8621039037013821, 0.5470392871450128, -0.4495629455592094, -0.67568420920523, 0.47153851952536135, 2.6069886763398715, -0.47836178639484644, -1.3695835144382071, -0.828945745173513, -1.134790434465725, -0.4376025432388912, 0.636851040170535, 0.5749139684099647, -0.01350317637859285, 0.1389264437502555, 0.09684828600818611, 0.6236383938863802, -1.0587753475973058, -1.0996209836342334, -0.9893139293208929, -0.6361984039784176, 0.3647362474546425, -0.4213040604854302, 0.11682854078395274, 0.11999456355754654, 0.5133645561673112, 0.02966719312980742, -0.7404971100649576, -0.20098369483361142, 0.953474996434212, 0.6219010816014583, 0.6304964266370057, 1.1669530941348334, -0.1843366495903407, -1.101856860338105, 1.1953806782972607, -1.5159539914014186, -0.07136670805936121, -1.3539647956238154, -1.5481765051445808, 0.2607616265336765, -0.7987829501620896, 1.7267976748895166, -0.13886414990827162, 0.7504414873377483, 0.8227953017842993, 1.0359532252272612, -0.0076913911808313435, 0.5434328820650979, 0.19585072709648266, 0.09351122725818684, -1.524262087896203, 1.144102739290054, 0.05850448140871698, 0.07994116949198639, -0.36058864222262, 1.3573185191138215, -0.9868754602374329, 0.4202056823484187, -0.3865780882933424, -1.053378698972275, 0.8900432934431581, 0.177998197690018, -0.3475622954301736, -0.43886927414038657, 0.014703441235193402, 0.7726123424919854, 0.603033235857717, 0.6014096694243366, 1.6951263349053072, 0.666313866829206, -0.4217212021926936, 1.3623464789739927, 0.6286037078883281, -0.008725369175953493, 1.4563195668261324, -0.17974350530798888, -0.5685787346853499, -1.6708718501128577, 0.15227927739858382, -0.23777044893825208, -0.16696872716691014, -0.16929024067721116, 1.1383310387997845, 2.026465883722471, 0.2855526106538521, -0.5362648857873259, -1.1376543963087034, -0.7583857051950229, 0.34827760084755677, -1.7445100054613127, 0.4604228948577837, -0.22430699853679703, -0.5489271108379212, 0.02595861760138888, -0.7387001712184964, -0.8160382596270361, -0.0014509040405446768, -0.2549517121004967, -0.8826369395948903, 0.272966226605514, 0.24849948713284742, 1.9463857071534425, 0.13701257500136443, -1.1255239329736628, 2.189202585047294, 0.16618443747816367, 0.6621417752776163, -1.2220468017080341, -0.0019048774580670152, 0.2671816249176352, 0.020064596948061217, -0.48364386696009, 0.5663657659183529, 1.5115584056159872, 0.5472548624813185, 0.1758120337954638, -0.052092600823756954, -1.0710903727416972, 0.9997323362869774, -0.9110537511051642, 0.5056112398073431, -0.6657797532595332, 0.7376823389084705, 0.1553067321496108, -0.08529044153142207, 0.9736829135143932, -0.772035292169526, -0.4820161848732274, 2.3670846948979887, -1.1487794440906562, -0.8506274522514322, 2.8461529077923826, 0.1582802462562111, 0.5139487442885852, 1.32096015135472, 0.19151883946637227, -0.4248157240440731, 2.425661745668124, 0.1653325321363884, -0.2896705127795099, 0.38161298598125776, -1.8719405240138078, 1.2510491121364158, 0.5865109513874108, 1.9154416109567625, 1.450264885883276, -0.3168554066398508, 0.5546116446637985, 0.5410999206320394, -1.8347970231195743, -0.6974276603795609, 0.9258507416989014, 0.4496028576779996, -2.1610924897513217, 1.5705983165535282, -1.5596882232452043, 1.0925685750629974, 1.1761472615803379, -0.7472122549596366, -2.210877970174602, -1.925447950952135, 0.5030442668960527, -0.7126534102497796, 1.5331514459307591, 1.967416058868372, -0.6175412977294548, 1.8192389818824102, 1.251892987089283, -1.2454977531621076, -1.619213184511548, -0.9367394661227245, -0.2050488665236619, -1.235648254565798, -1.183834841496108, -0.5559793485294809, -1.634709369412911, 1.0750267287044977, -1.9040386451714362, 1.7858173562179926, 1.4038784949935266, -1.7187740528193276, 0.6297043482495396, 0.27447348255632853, 1.04566931491749, 0.08250090159944183, 1.3214295229432294, -1.2405888664149656, 1.0682853488020814, -1.2753079783737253, 0.3834841439567679, -2.185029235097944, -1.5188304733168927, 0.8046344830536024, 0.32799319527477516, 1.7656254367343474, -0.8243666502736802, 0.9348531807775444, 0.6366651264097231, -0.5880310924009499, -1.555102733849172, -0.9390558550290994, -0.5441257747893053, -2.3182810957821283, 0.6175502927554014, 0.17126386028952023, 0.9464946051994987, 1.464939142010538, -1.1012973493492957, 0.06846705619816675, -0.4707349859125768, -0.4983784790999257, 1.7264178467059792, -0.003965908893787852, -0.8858588885790283, -1.8446760348084683, -0.12619700889366095, -2.864717581958915, -0.720659571945905, 1.100098157890991, -1.0648070408041304, 0.5633581498580766, 1.4857783372069469, 2.599098923027024, -1.5391912981647775, 0.6478206145246486, -1.5133798669131557, -1.5967568371302279, 0.025676387336887804, 0.7789297936883665, 0.7559335946069752, 1.4151784424909435, 0.5677628683877124, 0.6201062059245542, -1.2323514818687102, 0.33099730722772264, -0.44551096402953366, 1.3978594241164541, 1.5939682927658934, -0.16976405928672397, 1.1128908223221237, 1.562931347695641, -1.1735112048449137, 0.4896710310874664, 1.115079145695308, 0.7103656193065893, 0.23042445281964644, 0.09882621698217307, 1.5174867259140719, -2.4433033657842538, 0.12165019461495112, -1.1592375045178416, -0.8293027534548368, -0.5878049412582564, 1.4916104458083714, -2.1339680326808206, 1.4732673411256896, -0.8938820952370664, -0.28971984734861583, 1.196615110333344, 0.9245946634530462, 1.78492877994092, -2.206717446747612, 1.6524139663923083, -1.5247531849055884, -2.1068081761327493, 0.35014447057525633, -0.3797348691758117, -2.7352808189872904, -2.0646290397056313, 0.923671618418551, -0.5209353699488329, -1.7250253822570834, -1.6495022711365046, -0.9324736694809154, -2.0714272154504823, 1.3135275178690289, 0.7905541321517774, 1.9087527800740467, -0.45435692112106385, 0.9304976407954539, 1.1440814674396644, -1.7065182020102465, -2.0891188675248342, 0.06917395922718547, 1.4135214669884777, -1.9066575961176266, -0.17078648847473105, 0.18141719973683215, -1.3631080082649036, 0.380389133492406, 2.4556436783093916, -1.604143005256727, -0.4818201699533095, 1.1365952980438025, -1.790247891449623, 0.18113212354433028, -1.2280729706964233, -2.2276052380399083, 1.0060719360984705, -0.5135252930438036, -0.6112376394656316, -0.4472417352820934, -1.80532538111512, 1.1409902252951705, -0.5598681626721237, 1.3781385477408858, 2.074049981607136, -1.9733592589542557, 1.9102940354980031, 0.5894286007700782, 0.36948251546351396, -0.6031393048506195, 1.537411638763884, 0.261799182913471, -0.8962824752101889, 1.5572700756647304, -0.9837584224343431, -1.0479738666837064, -0.624376962820685, -0.6280269397461403, 0.6004906424306751, -1.0756027043490277, 1.478109704018873, -0.6533797972901837, 1.4825762919420398, 0.2678861074970764, 1.2913089682270964, -2.811555825205182, -0.12613312013873232, -1.1072618490200261, 0.6248399234920126, 2.311089697672025, 1.3123338612988964, -0.9200937163996368, -1.18584625534397, 0.2018040196133934, 1.4672781029043303, -0.9763607594290914, -0.7730275092638332, 1.5358756982090793, 1.3349221429168063, -0.7619345041912875, 1.406562943561146, -1.1239592485915388, -2.1287698418923795, -1.0206266070061636, -1.6829676791340475, -1.854545872845455, -0.2453753534379888, 1.6578368329387507, -0.21700690037549009, 1.2770361245636614, 0.43871981905886553, -0.46585111320754213, -1.0821108123194303, -0.6025471442161957, -0.7838391872862711, 1.6834761402932452, 0.8212338242261558, 2.0771812941499572, -0.8087419254294935, 0.7699582748392656, -0.7053749965047245, 1.8411600985285, 2.568781181514183, -0.8792881199892175, 1.553585838118121, -2.8411790517114186, -0.26694403617043283, 1.8451402143809654, 1.823642994873973, -1.9185038471180413, 0.46614485087258783, -0.6858988134052787, 1.0324318200568954, 1.3139045931036546, 0.2704706909217218, 1.921680200482544, -2.8432917543684355, 0.6064059510452587, -0.8972727482509505, 1.9840648974582886, 1.0055074483039306, 0.21605564551946835, -0.36829728927897687, 1.7136246035852463, 1.0506481010044302, -0.3876492138248017, -1.250004340848182, -0.6284039253107213, 1.4235254106197772, 0.06726090285411913, -0.65847373206942, -0.4009153394445957, 0.9782938798281011, -1.209150010026879, -3.395588883001429, -1.2551392561115147, -1.342963615548616, -0.15483350511126764, -1.0116534286187464, -0.3825747738749483, -1.6187676615088518, -0.9814134719137299, -0.04602123645773092, -0.5885158300169883, -0.24729825655930368, -2.175724438566388, 1.6959418621099838, -0.4389645921944458, 0.7016331747782337, 1.872784414843832, 2.3241218557259895, -1.508490634463224, 1.6265883373474508, -2.097244619459599, -1.6883254959956477, -2.016410062136385, 1.738332987527161, -2.342741790361049, 0.4290751856240687, 1.673156881725558, 1.3689133527545925, 0.8410588827179001, -0.6284412077644894, 1.5623924071529363, -0.34433833169293865, -2.301333613633395, -1.187647289675097, -0.26745367298885486, 0.08495960629893572, -1.82949004110518, -0.10585994674653867, 0.9390441077857746, -0.23223608041457394, -2.491088096978116, 1.1519639723629085, 1.243079370836798, -1.3457208575539996, -1.70271836343276, 1.4406916184714158, -1.097059196258208, -1.6778952474553372, 0.3968604701781855, -0.9584264599883018, -0.5954973987392225, -1.098556438753493, -2.3914889690287495, -1.241471936212198, 1.6551176096743252, 0.24921224781122328, -0.1582710909354645, 0.7860003200599762, 2.084093266740833, -0.9938487374551789, 1.1584372414801092, -0.9139382413264032, 1.330607774392302, 1.1813649697572575, -0.7451421581197285, -2.0919859455507477, -1.9923014157872767, -2.1232402991729042, 1.1836275934004217, -1.5674028985842974, -0.9651969898598839, 1.8986505756475314, -0.5859661086650559, -0.6099478851766862, 0.6805021410431037, 2.21028932311896, 1.599572540403278, -1.2336338727751472, 2.39108431456067, 0.7932918466391781, -0.8445447420769313, -2.5299297727829684, -2.1488655665618257, 1.6978593160671467, 0.7620732798803223, -1.9721945378474695, 1.3570954507872626, -2.4618119518466375, 2.053345451650534, 0.8410496372539404, 1.9610831495513703, 0.7832161107844093, 0.21636666668662297, -1.5448185518869122, 1.0567602159197467, 1.3535555014359004, 1.8884010177581083, 1.0268359605788182, 0.48096120878533893, -1.3308047255796718, -0.028884805871643323, -1.3564557856528328, 0.40922061026984735, -2.2329180355818448, 0.1014203189145022, -1.0741875496237026, -0.9448183943631504, 2.1584663876718886, 2.251668716258581, 0.8749902402945725, -2.3570325707389364, 1.6393647673751957, 0.9262939857429183, 0.9755310926736283, 2.4530153894609708, 0.506615575245041, -1.3239008701289143, -0.10869014129856301, 3.259460869292055, -0.9920832404804893, 0.18795251855539294, 1.6528653698599753, 0.9300617221404274, 2.693797010312234, -0.4923831989134232, 0.3211216093281657, 0.18867732492124767, -0.6949730881464312, 0.22899185050886198, 1.2554471566848262, 1.5754180121868813, -0.42653160434416176, 0.6270239622088023, -0.6552438212196586, 2.161685132390021, -0.43835923168733676, 0.23796832805023208, -1.3684245890732263, -1.0205512481931451, 1.5829937401529766, -0.8450477315776067, 1.2959365281477822, -0.1152558471556258, -1.1013445229409786, 1.4412536782865837]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 2\", \"marker\": {\"color\": \"rgb(44, 160, 44)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 2\", \"scene\": \"scene3\", \"showlegend\": false, \"text\": [\"1332_l_2_m-0_0.18-1_0.04-2_0.09-3_0.22\", \"1333_l_2_m-0_0.77-1_0.05-2_0.68-3_0.39\", \"1334_l_2_m-0_0.15-1_0.04-2_0.0-3_0.79\", \"1335_l_2_m-0_0.99-1_0.14-2_0.05-3_0.18\", \"1336_l_2_m-0_0.78-1_0.05-2_0.09-3_0.61\", \"1337_l_2_m-0_0.26-1_0.07-2_0.04-3_0.11\", \"1338_l_2_c_0_1_3-0_0.4-1_0.0-2_0.19-3_1.04\", \"1339_l_2_c_0_2_3-0_1.71-1_0.96-2_0.32-3_1.33\", \"1340_l_2_c_1_2_3-0_0.84-1_0.58-2_0.1-3_0.1\", \"1341_l_2_c_0_1_3-0_0.05-1_0.29-2_0.02-3_0.17\", \"1342_l_2_c_0_2_3-0_1.46-1_0.66-2_0.97-3_0.4\", \"1343_l_2_c_1_2_3-0_1.61-1_0.16-2_0.36-3_0.05\", \"1344_l_2_c_0_1_3-0_0.27-1_0.42-2_0.04-3_0.02\", \"1345_l_2_c_0_2_3-0_0.95-1_0.44-2_0.06-3_0.27\", \"1346_l_2_c_1_2_3-0_0.56-1_0.07-2_0.28-3_0.52\", \"1347_l_2_c_0_1_3-0_0.2-1_0.0-2_0.8-3_1.41\", \"1348_l_2_c_0_2_3-0_0.44-1_1.31-2_0.22-3_0.36\", \"1349_l_2_c_1_2_3-0_1.56-1_0.16-2_0.25-3_0.42\", \"1350_l_2_c_0_1_3-0_0.49-1_0.18-2_0.28-3_0.01\", \"1351_l_2_c_0_2_3-0_0.58-1_0.38-2_1.02-3_0.65\", \"1352_l_2_c_1_2_3-0_1.38-1_0.01-2_0.0-3_0.31\", \"1353_l_2_c_0_1_3-0_0.04-1_0.15-2_0.03-3_0.13\", \"1354_l_2_c_0_2_3-0_0.64-1_1.22-2_0.58-3_0.31\", \"1355_l_2_c_1_2_3-0_0.84-1_0.01-2_0.11-3_1.01\", \"1356_l_2_c_0_1_3-0_1.21-1_0.02-2_1.51-3_0.4\", \"1357_l_2_c_0_2_3-0_0.13-1_0.23-2_0.18-3_0.01\", \"1358_l_2_c_1_2_3-0_0.33-1_0.2-2_0.06-3_1.12\", \"1359_l_2_c_0_1_3-0_0.42-1_0.15-2_1.31-3_0.3\", \"1360_l_2_c_0_2_3-0_0.87-1_2.48-2_0.05-3_0.11\", \"1361_l_2_c_1_2_3-0_0.48-1_0.54-2_0.01-3_1.25\", \"1362_l_2_c_0_1_3-0_0.83-1_0.72-2_0.27-3_0.92\", \"1363_l_2_c_0_2_3-0_1.13-1_2.54-2_0.13-3_0.12\", \"1364_l_2_c_1_2_3-0_0.03-1_0.29-2_0.25-3_0.37\", \"1365_l_2_c_0_1_3-0_0.47-1_0.49-2_1.18-3_1.36\", \"1366_l_2_c_0_2_3-0_0.21-1_0.43-2_0.63-3_0.18\", \"1367_l_2_c_1_2_3-0_0.37-1_0.27-2_0.61-3_0.1\", \"1368_l_2_c_0_1_3-0_0.09-1_0.72-2_2.0-3_0.14\", \"1369_l_2_c_0_2_3-0_0.3-1_1.66-2_0.6-3_0.97\", \"1370_l_2_c_1_2_3-0_0.71-1_0.02-2_0.48-3_0.5\", \"1371_l_2_c_0_1_2-0_0.21-1_0.08-2_0.83-3_0.12\", \"1372_l_2_c_0_1_3-0_0.86-1_0.7-2_1.01-3_0.13\", \"1373_l_2_c_0_2_3-0_0.14-1_1.54-2_0.05-3_0.79\", \"1374_l_2_c_1_2_3-0_1.08-1_0.11-2_0.01-3_0.2\", \"1375_l_2_c_0_1_2-0_1.53-1_0.46-2_0.34-3_0.94\", \"1376_l_2_c_0_1_3-0_1.53-1_0.25-2_0.7-3_0.5\", \"1377_l_2_c_0_2_3-0_0.15-1_0.08-2_0.0-3_0.5\", \"1378_l_2_c_1_2_3-0_1.7-1_0.69-2_0.34-3_0.14\", \"1379_l_2_c_0_1_2-0_0.52-1_1.04-2_0.09-3_0.6\", \"1380_l_2_c_0_1_3-0_0.04-1_0.22-2_0.48-3_0.61\", \"1381_l_2_c_0_2_3-0_0.1-1_0.58-2_0.24-3_0.56\", \"1382_l_2_c_1_2_3-0_0.62-1_0.04-2_0.37-3_0.09\", \"1383_l_2_c_0_1_2-0_0.24-1_0.34-2_0.15-3_0.36\", \"1384_l_2_c_0_1_3-0_0.01-1_0.38-2_1.0-3_1.15\", \"1385_l_2_c_0_2_3-0_0.12-1_0.16-2_0.0-3_0.21\", \"1386_l_2_c_1_2_3-0_1.01-1_0.6-2_0.01-3_0.56\", \"1387_l_2_c_0_1_2-0_0.31-1_0.01-2_0.43-3_1.32\", \"1388_l_2_c_0_1_3-0_0.06-1_0.23-2_1.64-3_1.16\", \"1389_l_2_c_0_2_3-0_0.1-1_0.25-2_0.15-3_0.74\", \"1390_l_2_c_1_2_3-0_0.88-1_0.22-2_0.64-3_0.34\", \"1391_l_2_c_0_1_2-0_0.69-1_0.57-2_0.86-3_0.98\", \"1392_l_2_c_0_1_3-0_0.26-1_0.25-2_0.9-3_0.82\", \"1393_l_2_c_0_2_3-0_0.55-1_0.73-2_0.28-3_0.46\", \"1394_l_2_c_1_2_3-0_0.79-1_0.14-2_1.21-3_0.3\", \"1395_l_2_c_0_1_2-0_1.25-1_0.0-2_0.23-3_1.01\", \"1396_l_2_c_0_1_3-0_1.23-1_0.68-2_0.04-3_0.66\", \"1397_l_2_c_0_2_3-0_0.26-1_0.02-2_0.16-3_0.12\", \"1398_l_2_c_1_2_3-0_0.65-1_0.78-2_0.37-3_0.0\", \"1399_l_2_c_0_1_2-0_0.35-1_0.07-2_0.01-3_0.85\", \"1400_l_2_c_0_1_3-0_0.3-1_0.03-2_0.18-3_0.59\", \"1401_l_2_c_0_2_3-0_0.31-1_0.5-2_0.27-3_0.12\", \"1402_l_2_c_1_2_3-0_1.06-1_0.05-2_0.12-3_0.82\", \"1403_l_2_c_0_1_2-0_1.11-1_0.78-2_0.48-3_0.36\", \"1404_l_2_c_0_1_3-0_0.5-1_0.3-2_0.97-3_0.72\", \"1405_l_2_c_0_2_3-0_0.69-1_0.49-2_0.04-3_0.29\", \"1406_l_2_c_1_2_3-0_1.93-1_0.36-2_0.29-3_0.1\", \"1407_l_2_c_0_1_2-0_0.01-1_0.3-2_0.57-3_0.11\", \"1408_l_2_c_0_1_3-0_0.28-1_0.22-2_2.11-3_0.5\", \"1409_l_2_c_0_2_3-0_0.63-1_0.69-2_0.1-3_0.74\", \"1410_l_2_c_1_2_3-0_2.88-1_0.39-2_0.4-3_0.56\", \"1411_l_2_c_0_1_2-0_0.12-1_0.05-2_0.52-3_0.9\", \"1412_l_2_c_0_1_3-0_0.68-1_0.44-2_1.1-3_0.81\", \"1413_l_2_c_0_2_3-0_0.13-1_0.26-2_0.51-3_0.01\", \"1414_l_2_c_1_2_3-0_1.59-1_0.66-2_0.02-3_0.29\", \"1415_l_2_c_0_1_2-0_0.31-1_0.44-2_0.42-3_0.1\", \"1416_l_2_c_0_1_3-0_0.83-1_0.37-2_0.61-3_0.22\", \"1417_l_2_c_0_2_3-0_0.53-1_0.08-2_0.02-3_0.44\", \"1418_l_2_c_1_2_3-0_0.95-1_0.3-2_0.49-3_0.94\", \"1419_l_2_c_0_1_2-0_0.98-1_0.08-2_0.03-3_0.5\", \"1420_l_2_c_0_1_3-0_1.69-1_0.28-2_0.51-3_0.74\", \"1421_l_2_c_0_2_3-0_0.03-1_1.73-2_0.44-3_0.05\", \"1422_l_2_c_1_2_3-0_0.45-1_0.52-2_0.06-3_1.21\", \"1423_l_2_c_0_1_2-0_0.24-1_0.17-2_0.59-3_0.7\", \"1424_l_2_c_0_1_3-0_0.47-1_0.34-2_0.86-3_0.13\", \"1425_l_2_c_0_2_3-0_0.08-1_1.14-2_0.23-3_1.52\", \"1426_l_2_c_1_2_3-0_1.58-1_0.24-2_0.6-3_0.34\", \"1427_l_2_c_0_1_2-0_0.4-1_0.7-2_0.02-3_1.82\", \"1428_l_2_c_0_1_3-0_0.28-1_0.66-2_1.9-3_0.72\", \"1429_l_2_c_0_2_3-0_1.08-1_0.59-2_0.16-3_0.56\", \"1430_l_2_c_1_2_3-0_0.25-1_0.14-2_0.19-3_0.44\", \"1431_l_2_c_0_1_2-0_0.39-1_0.2-2_0.13-3_0.46\", \"1432_l_2_c_0_1_3-0_0.14-1_0.02-2_1.53-3_0.29\", \"1433_l_2_c_0_2_3-0_0.03-1_0.95-2_0.23-3_0.13\", \"1434_l_2_c_1_2_3-0_0.68-1_0.77-2_0.18-3_0.71\", \"1435_l_2_c_0_1_2-0_1.93-1_0.06-2_0.26-3_2.7\", \"1436_l_2_c_0_1_3-0_0.97-1_0.01-2_0.48-3_0.1\", \"1437_l_2_c_0_2_3-0_0.68-1_0.33-2_0.11-3_0.49\", \"1438_l_2_c_1_2_3-0_0.94-1_0.12-2_0.53-3_0.32\", \"1439_l_2_c_0_1_2-0_0.04-1_0.28-2_0.76-3_0.05\", \"1440_l_2_c_0_1_3-0_0.09-1_0.42-2_1.05-3_0.55\", \"1441_l_2_c_0_2_3-0_1.74-1_0.96-2_0.48-3_0.06\", \"1442_l_2_c_1_2_3-0_1.08-1_0.52-2_0.67-3_0.56\", \"1443_l_2_c_0_1_2-0_0.26-1_0.42-2_0.1-3_0.6\", \"1444_l_2_c_0_1_3-0_1.52-1_0.52-2_0.35-3_0.55\", \"1445_l_2_c_0_2_3-0_0.37-1_1.21-2_0.63-3_0.04\", \"1446_l_2_c_1_2_3-0_0.55-1_0.19-2_0.6-3_0.97\", \"1447_l_2_c_0_1_2-0_0.18-1_0.07-2_0.41-3_1.25\", \"1448_l_2_c_0_1_3-0_0.6-1_0.08-2_0.6-3_0.47\", \"1449_l_2_c_0_2_3-0_0.38-1_0.54-2_0.39-3_0.03\", \"1450_l_2_c_1_2_3-0_0.9-1_0.04-2_0.48-3_0.5\", \"1451_l_2_c_0_1_2-0_0.19-1_0.1-2_0.65-3_0.29\", \"1452_l_2_c_0_1_3-0_0.94-1_0.02-2_0.46-3_0.21\", \"1453_l_2_c_0_2_3-0_1.23-1_1.51-2_0.12-3_0.91\", \"1454_l_2_c_1_2_3-0_0.35-1_0.16-2_0.26-3_0.46\", \"1455_l_2_c_0_1_2-0_0.12-1_0.06-2_0.01-3_1.16\", \"1456_l_2_c_0_1_3-0_0.12-1_0.26-2_0.31-3_0.36\", \"1457_l_2_c_0_2_3-0_0.05-1_1.61-2_0.04-3_0.1\", \"1458_l_2_c_1_2_3-0_0.8-1_0.54-2_0.21-3_1.15\", \"1459_l_2_c_0_1_2-0_0.96-1_0.45-2_0.35-3_0.2\", \"1460_l_2_c_0_1_3-0_0.82-1_0.02-2_1.89-3_0.06\", \"1461_l_2_c_0_2_3-0_0.06-1_1.02-2_0.55-3_0.09\", \"1462_l_2_c_1_2_3-0_1.31-1_0.31-2_0.04-3_1.15\", \"1463_l_2_c_0_1_2-0_0.66-1_0.12-2_0.57-3_0.66\", \"1464_l_2_c_0_1_3-0_1.76-1_0.16-2_3.53-3_0.01\", \"1465_l_2_c_0_2_3-0_0.29-1_2.01-2_0.09-3_0.21\", \"1466_l_2_c_1_2_3-0_0.6-1_0.03-2_0.05-3_0.47\", \"1467_l_2_c_0_1_2-0_0.37-1_0.3-2_0.01-3_1.47\", \"1468_l_2_c_0_1_3-0_0.24-1_0.05-2_0.26-3_0.18\", \"1469_l_2_c_0_2_3-0_0.01-1_1.33-2_0.0-3_0.24\", \"1470_l_2_c_1_2_3-0_0.27-1_0.01-2_0.01-3_0.14\", \"1471_l_2_c_0_1_2-0_0.16-1_0.03-2_0.22-3_0.4\", \"1472_l_2_c_0_1_3-0_0.81-1_0.27-2_0.66-3_0.98\", \"1473_l_2_c_0_2_3-0_0.2-1_0.09-2_0.17-3_0.22\", \"1474_l_2_c_1_2_3-0_0.02-1_0.92-2_0.0-3_0.09\", \"1475_l_2_c_0_1_2-0_0.61-1_0.14-2_0.23-3_1.28\", \"1476_l_2_c_0_1_3-0_0.42-1_0.77-2_1.54-3_1.54\", \"1477_l_2_c_0_2_3-0_0.47-1_0.2-2_0.03-3_0.39\", \"1478_l_2_c_1_2_3-0_0.62-1_0.14-2_0.01-3_0.74\", \"1479_l_2_c_0_1_2-0_0.53-1_0.2-2_0.19-3_0.4\", \"1480_l_2_c_0_1_3-0_0.6-1_0.89-2_0.29-3_0.77\", \"1481_l_2_c_0_2_3-0_0.27-1_0.45-2_0.08-3_0.01\", \"1482_l_2_c_1_2_3-0_0.12-1_0.15-2_0.3-3_0.98\", \"1483_l_2_c_0_1_2-0_0.49-1_0.51-2_0.26-3_0.19\", \"1484_l_2_c_0_1_3-0_0.29-1_0.05-2_1.05-3_0.2\", \"1485_l_2_c_0_2_3-0_1.48-1_0.86-2_0.49-3_0.46\", \"1486_l_2_c_1_2_3-0_1.32-1_0.12-2_0.36-3_0.03\", \"1487_l_2_c_0_1_2-0_0.39-1_0.0-2_0.1-3_0.66\", \"1488_l_2_c_0_1_3-0_0.73-1_0.42-2_0.33-3_0.12\", \"1489_l_2_c_0_2_3-0_1.62-1_1.1-2_0.73-3_0.25\", \"1490_l_2_c_1_2_3-0_0.63-1_0.15-2_0.05-3_0.22\", \"1491_l_2_c_0_1_2-0_0.42-1_0.51-2_0.13-3_0.23\", \"1492_l_2_c_0_1_3-0_0.11-1_0.03-2_1.59-3_0.45\", \"1493_l_2_c_0_2_3-0_0.34-1_0.78-2_0.15-3_0.09\", \"1494_l_2_c_1_2_3-0_0.51-1_0.0-2_0.32-3_0.55\", \"1495_l_2_c_0_1_2-0_1.13-1_0.11-2_0.13-3_0.02\", \"1496_l_2_c_0_1_3-0_0.0-1_0.64-2_0.02-3_1.09\", \"1497_l_2_c_0_2_3-0_0.37-1_1.61-2_0.07-3_0.72\", \"1498_l_2_c_1_2_3-0_1.55-1_0.29-2_0.94-3_0.09\", \"1499_l_2_c_0_1_2-0_0.16-1_0.02-2_0.32-3_1.41\", \"1500_l_2_c_0_1_3-0_0.03-1_0.1-2_1.66-3_0.36\", \"1501_l_2_c_0_2_3-0_0.43-1_0.97-2_0.01-3_1.1\", \"1502_l_2_c_1_2_3-0_0.63-1_0.17-2_0.03-3_0.17\", \"1503_l_2_c_0_1_2-0_0.1-1_0.02-2_0.03-3_0.97\", \"1504_l_2_c_0_1_3-0_0.03-1_0.01-2_0.07-3_0.47\", \"1505_l_2_c_0_2_3-0_1.21-1_0.93-2_0.12-3_0.78\", \"1506_l_2_c_1_2_3-0_0.72-1_0.01-2_0.17-3_0.24\", \"1507_l_2_c_0_1_2-0_0.44-1_0.95-2_0.52-3_0.0\", \"1508_l_2_c_0_1_3-0_0.36-1_0.59-2_1.38-3_0.66\", \"1509_l_2_c_0_2_3-0_0.59-1_0.16-2_0.43-3_0.28\", \"1510_l_2_c_1_2_3-0_0.01-1_0.15-2_0.68-3_0.21\", \"1511_l_2_c_0_1_2-0_0.11-1_0.23-2_0.76-3_0.97\", \"1512_l_2_c_0_1_3-0_0.16-1_0.21-2_0.57-3_2.33\", \"1513_l_2_c_0_2_3-0_1.68-1_0.67-2_0.63-3_2.17\", \"1514_l_2_c_1_2_3-0_0.92-1_0.43-2_1.1-3_0.06\", \"1515_l_2_c_0_1_2-0_0.75-1_0.22-2_0.38-3_1.67\", \"1516_l_2_c_0_1_3-0_0.25-1_0.16-2_1.5-3_1.53\", \"1517_l_2_c_0_2_3-0_0.5-1_1.48-2_0.92-3_1.58\", \"1518_l_2_c_1_2_3-0_0.01-1_0.01-2_0.57-3_0.24\", \"1519_l_2_c_0_1_2-0_0.41-1_0.03-2_0.12-3_0.32\", \"1520_l_2_c_0_1_3-0_0.56-1_0.51-2_1.03-3_0.67\", \"1521_l_2_c_0_2_3-0_1.11-1_1.18-2_0.02-3_0.52\", \"1522_l_2_c_1_2_3-0_2.09-1_0.09-2_0.68-3_1.55\", \"1523_l_2_c_0_1_2-0_0.74-1_0.7-2_0.3-3_0.73\", \"1524_l_2_c_0_1_3-0_0.19-1_0.09-2_0.1-3_0.08\", \"1525_l_2_c_0_2_3-0_0.09-1_2.72-2_0.04-3_0.94\", \"1526_l_2_c_1_2_3-0_0.89-1_0.2-2_0.72-3_1.04\", \"1527_l_2_c_0_1_2-0_0.23-1_0.47-2_0.8-3_0.35\", \"1528_l_2_c_0_1_3-0_0.09-1_0.15-2_0.38-3_1.11\", \"1529_l_2_c_0_2_3-0_0.4-1_0.36-2_0.45-3_0.46\", \"1530_l_2_c_1_2_3-0_0.1-1_0.58-2_0.12-3_0.3\", \"1531_l_2_c_0_1_2-0_1.37-1_0.07-2_0.03-3_1.88\", \"1532_l_2_c_0_1_3-0_0.19-1_0.73-2_0.11-3_1.09\", \"1533_l_2_c_0_2_3-0_0.14-1_0.9-2_0.15-3_0.11\", \"1534_l_2_c_1_2_3-0_0.69-1_0.44-2_0.45-3_0.06\", \"1535_l_2_c_0_1_2-0_1.93-1_0.27-2_0.19-3_1.27\", \"1536_l_2_c_0_1_3-0_0.05-1_0.68-2_0.59-3_0.69\", \"1537_l_2_c_0_2_3-0_0.32-1_0.71-2_0.97-3_0.96\", \"1538_l_2_c_1_2_3-0_0.55-1_0.24-2_0.02-3_1.87\", \"1539_l_2_c_0_1_2-0_1.54-1_0.41-2_0.29-3_0.24\", \"1540_l_2_c_0_1_3-0_0.09-1_0.42-2_0.95-3_0.39\", \"1541_l_2_c_0_2_3-0_0.98-1_0.61-2_0.11-3_0.1\", \"1542_l_2_c_1_2_3-0_1.14-1_0.34-2_0.68-3_0.09\", \"1543_l_2_c_0_1_2-0_0.25-1_0.3-2_0.03-3_0.22\", \"1544_l_2_c_0_1_3-0_0.55-1_0.48-2_0.63-3_0.32\", \"1545_l_2_c_0_2_3-0_0.56-1_1.52-2_0.17-3_0.93\", \"1546_l_2_c_1_2_3-0_0.04-1_0.02-2_0.09-3_0.25\", \"1547_l_2_c_0_1_2-0_0.0-1_1.28-2_0.02-3_0.52\", \"1548_l_2_c_0_1_3-0_0.53-1_0.86-2_1.26-3_0.28\", \"1549_l_2_c_0_2_3-0_0.04-1_0.07-2_0.06-3_0.18\", \"1550_l_2_c_1_2_3-0_0.6-1_0.18-2_0.06-3_0.17\", \"1551_l_2_c_0_1_2-0_0.17-1_0.01-2_0.08-3_0.66\", \"1552_l_2_c_0_1_3-0_0.69-1_0.31-2_0.39-3_0.81\", \"1553_l_2_c_0_2_3-0_0.07-1_1.28-2_0.36-3_1.83\", \"1554_l_2_c_1_2_3-0_2.08-1_0.39-2_0.05-3_0.29\", \"1555_l_2_c_0_1_2-0_0.32-1_0.06-2_0.11-3_0.13\", \"1556_l_2_c_0_1_3-0_0.5-1_0.03-2_0.22-3_1.59\", \"1557_l_2_c_0_2_3-0_1.11-1_0.47-2_0.15-3_1.68\", \"1558_l_2_c_1_2_3-0_0.55-1_0.14-2_0.04-3_0.04\", \"1559_l_2_c_0_1_2-0_0.36-1_0.08-2_0.14-3_0.09\", \"1560_l_2_c_0_1_3-0_0.01-1_0.08-2_0.56-3_0.28\", \"1561_l_2_c_0_2_3-0_0.72-1_0.21-2_0.42-3_0.55\", \"1562_l_2_c_1_2_3-0_0.25-1_0.23-2_0.01-3_1.0\", \"1563_l_2_c_0_1_2-0_0.23-1_0.2-2_0.07-3_0.07\", \"1564_l_2_c_0_1_3-0_0.19-1_0.09-2_0.72-3_0.23\", \"1565_l_2_c_0_2_3-0_1.08-1_0.07-2_0.01-3_0.76\", \"1566_l_2_c_1_2_3-0_0.6-1_0.21-2_0.04-3_0.62\", \"1567_l_2_c_0_1_2-0_1.01-1_0.13-2_0.12-3_0.65\", \"1568_l_2_c_0_1_3-0_1.19-1_0.35-2_1.05-3_0.23\", \"1569_l_2_c_0_2_3-0_0.5-1_0.18-2_0.0-3_1.32\", \"1570_l_2_c_1_2_3-0_1.06-1_0.25-2_0.56-3_0.64\", \"1571_l_2_c_0_1_2-0_0.15-1_0.06-2_0.52-3_2.34\", \"1572_l_2_c_0_1_3-0_0.81-1_0.41-2_0.23-3_0.34\", \"1573_l_2_c_0_2_3-0_0.39-1_2.06-2_0.0-3_0.76\", \"1574_l_2_c_1_2_3-0_2.06-1_0.25-2_0.06-3_0.11\", \"1575_l_2_c_0_1_2-0_0.75-1_0.18-2_0.13-3_0.31\", \"1576_l_2_c_0_1_3-0_0.17-1_1.11-2_0.45-3_0.38\", \"1577_l_2_c_0_2_3-0_0.15-1_0.17-2_0.16-3_0.37\", \"1578_l_2_c_1_2_3-0_1.89-1_0.55-2_0.19-3_0.01\", \"1579_l_2_c_0_1_2-0_0.1-1_0.06-2_0.05-3_0.98\", \"1580_l_2_c_0_1_3-0_0.18-1_0.36-2_1.17-3_0.38\", \"1581_l_2_c_0_2_3-0_0.11-1_0.15-2_0.17-3_0.15\", \"1582_l_2_c_1_2_3-0_1.12-1_0.05-2_0.34-3_0.44\", \"1583_l_2_c_0_1_2-0_0.12-1_0.84-2_1.06-3_1.41\", \"1584_l_2_c_0_1_3-0_0.95-1_0.34-2_0.17-3_0.96\", \"1585_l_2_c_0_2_3-0_0.93-1_0.24-2_0.44-3_0.71\", \"1586_l_2_c_1_2_3-0_1.68-1_0.11-2_0.74-3_0.35\", \"1587_l_2_c_0_1_2-0_0.24-1_0.01-2_0.11-3_0.12\", \"1588_l_2_c_0_1_3-0_0.81-1_0.01-2_0.66-3_0.24\", \"1589_l_2_c_0_2_3-0_0.54-1_0.39-2_0.23-3_0.26\", \"1590_l_2_c_1_2_3-0_0.85-1_0.09-2_0.19-3_1.51\", \"1591_l_2_c_0_1_2-0_1.04-1_0.59-2_0.01-3_1.19\", \"1592_l_2_c_0_1_3-0_0.13-1_0.09-2_0.43-3_0.36\", \"1593_l_2_c_0_2_3-0_0.74-1_1.41-2_0.7-3_0.84\", \"1594_l_2_c_1_2_3-0_0.64-1_0.38-2_0.13-3_0.23\", \"1595_l_2_c_0_1_2-0_1.26-1_0.16-2_0.42-3_1.41\", \"1596_l_2_c_0_1_3-0_0.29-1_0.29-2_0.05-3_0.12\", \"1597_l_2_c_0_2_3-0_0.32-1_0.1-2_0.09-3_0.22\", \"1598_l_2_c_1_2_3-0_1.26-1_0.21-2_0.53-3_0.22\", \"1599_l_2_c_0_1_2-0_0.27-1_0.58-2_0.65-3_1.82\", \"1600_l_2_c_0_1_3-0_0.28-1_0.1-2_1.39-3_0.03\", \"1601_l_2_c_0_2_3-0_0.62-1_1.69-2_0.19-3_0.73\", \"1602_l_2_c_1_2_3-0_0.18-1_0.94-2_0.33-3_0.82\", \"1603_l_2_c_0_1_2-0_0.24-1_0.6-2_0.42-3_0.86\", \"1604_l_2_c_0_1_3-0_0.01-1_0.88-2_1.02-3_0.01\", \"1605_l_2_c_0_2_3-0_0.13-1_1.06-2_0.07-3_0.09\", \"1606_l_2_c_1_2_3-0_0.22-1_0.78-2_0.15-3_1.05\", \"1607_l_2_c_0_1_2-0_0.24-1_0.23-2_0.87-3_0.05\", \"1608_l_2_c_0_1_3-0_0.78-1_0.0-2_1.16-3_0.46\", \"1609_l_2_c_0_2_3-0_0.18-1_0.33-2_0.11-3_0.04\", \"1610_l_2_c_1_2_3-0_0.9-1_0.53-2_0.1-3_0.46\", \"1611_l_2_c_0_1_2-0_0.06-1_0.0-2_0.05-3_0.33\", \"1612_l_2_c_0_1_3-0_0.21-1_0.67-2_0.07-3_0.17\", \"1613_l_2_c_0_2_3-0_0.8-1_0.37-2_0.59-3_0.46\", \"1614_l_2_c_1_2_3-0_0.92-1_0.03-2_0.84-3_0.2\", \"1615_l_2_c_0_1_2-0_0.65-1_0.01-2_0.4-3_0.29\", \"1616_l_2_c_0_1_3-0_0.65-1_0.04-2_0.26-3_1.31\", \"1617_l_2_c_0_2_3-0_1.98-1_0.26-2_0.04-3_1.02\", \"1618_l_2_c_1_2_3-0_1.52-1_0.09-2_0.17-3_0.13\", \"1619_l_2_c_0_1_2-0_0.1-1_0.16-2_0.29-3_1.91\", \"1620_l_2_c_0_1_3-0_0.11-1_0.01-2_1.25-3_0.42\", \"1621_l_2_c_0_2_3-0_0.21-1_0.98-2_1.21-3_0.9\", \"1622_l_2_c_1_2_3-0_0.65-1_0.01-2_0.32-3_0.14\", \"1623_l_2_c_0_1_2-0_0.94-1_0.16-2_0.46-3_0.31\", \"1624_l_2_c_0_1_3-0_0.78-1_0.58-2_1.24-3_0.54\", \"1625_l_2_c_0_2_3-0_0.18-1_0.52-2_0.02-3_0.78\", \"1626_l_2_c_1_2_3-0_1.49-1_0.36-2_0.62-3_0.33\", \"1627_l_2_c_0_1_2-0_1.18-1_0.15-2_0.02-3_0.36\", \"1628_l_2_c_0_1_3-0_0.58-1_1.11-2_0.71-3_1.16\", \"1629_l_2_c_0_2_3-0_0.77-1_0.79-2_0.82-3_0.29\", \"1630_l_2_c_1_2_3-0_1.11-1_1.08-2_0.22-3_0.92\", \"1631_l_2_c_0_1_2-0_0.05-1_0.54-2_0.32-3_0.55\", \"1632_l_2_c_0_1_3-0_0.09-1_0.19-2_0.09-3_0.2\", \"1633_l_2_c_0_2_3-0_0.17-1_1.97-2_0.08-3_0.08\", \"1634_l_2_c_1_2_3-0_1.2-1_0.75-2_0.02-3_0.63\", \"1635_l_2_c_0_1_2-0_0.25-1_0.06-2_0.18-3_0.07\", \"1636_l_2_c_0_1_3-0_0.32-1_0.42-2_0.99-3_1.04\", \"1637_l_2_c_0_2_3-0_1.46-1_0.91-2_0.54-3_0.13\", \"1638_l_2_c_1_2_3-0_1.16-1_0.57-2_0.0-3_0.49\", \"1639_l_2_c_0_1_2-0_0.14-1_0.06-2_0.24-3_0.03\", \"1640_l_2_c_0_1_3-0_0.94-1_0.68-2_0.47-3_0.62\", \"1641_l_2_c_0_2_3-0_0.46-1_0.03-2_0.05-3_0.43\", \"1642_l_2_c_1_2_3-0_0.02-1_0.87-2_0.04-3_0.38\", \"1643_l_2_c_0_1_2-0_1.09-1_0.27-2_0.78-3_0.0\", \"1644_l_2_c_0_1_3-0_0.15-1_0.35-2_0.4-3_0.07\", \"1645_l_2_c_0_2_3-0_0.53-1_1.83-2_0.03-3_0.11\", \"1646_l_2_c_1_2_3-0_0.86-1_0.21-2_0.0-3_0.0\", \"1647_l_2_c_0_1_2-0_2.29-1_0.66-2_0.07-3_0.04\", \"1648_l_2_c_0_1_3-0_0.72-1_0.11-2_0.17-3_0.0\", \"1649_l_2_c_0_2_3-0_0.31-1_0.49-2_0.77-3_1.04\", \"1650_l_2_c_1_2_3-0_0.31-1_0.06-2_0.45-3_0.02\", \"1651_l_2_c_0_1_2-0_0.4-1_0.65-2_0.13-3_0.85\", \"1652_l_2_c_0_1_3-0_0.73-1_0.15-2_1.36-3_0.13\", \"1653_l_2_c_0_2_3-0_1.17-1_1.56-2_0.42-3_0.02\", \"1654_l_2_c_1_2_3-0_0.01-1_0.29-2_0.25-3_0.08\", \"1655_l_2_c_0_1_2-0_0.62-1_0.27-2_0.49-3_2.55\", \"1656_l_2_c_0_1_3-0_0.4-1_0.25-2_0.72-3_0.31\", \"1657_l_2_c_0_2_3-0_0.41-1_1.46-2_0.24-3_0.26\", \"1658_l_2_c_1_2_3-0_1.81-1_0.23-2_0.04-3_0.09\", \"1659_l_2_c_0_1_2-0_0.03-1_0.67-2_0.11-3_0.5\", \"1660_l_2_c_0_1_3-0_0.16-1_0.47-2_1.4-3_0.5\", \"1661_l_2_c_0_2_3-0_1.58-1_1.67-2_0.05-3_1.09\", \"1662_l_2_c_1_2_3-0_0.84-1_0.15-2_0.27-3_0.47\", \"1663_l_2_c_0_1_2-0_0.66-1_0.17-2_0.02-3_0.44\", \"1664_l_2_c_0_1_3-0_0.14-1_0.78-2_1.82-3_1.29\", \"1665_l_2_c_0_2_3-0_0.16-1_0.75-2_0.17-3_0.03\", \"1666_l_2_c_1_2_3-0_1.56-1_0.62-2_0.26-3_0.04\", \"1667_l_2_c_0_1_2-0_0.78-1_0.94-2_0.01-3_0.8\", \"1668_l_2_c_0_1_3-0_1.54-1_0.31-2_0.69-3_0.35\", \"1669_l_2_c_0_2_3-0_0.56-1_0.15-2_0.23-3_0.31\", \"1670_l_2_c_1_2_3-0_0.24-1_0.4-2_0.1-3_0.16\", \"1671_l_2_c_0_1_2-0_0.17-1_0.07-2_0.33-3_0.84\", \"1672_l_2_c_0_1_3-0_0.3-1_0.49-2_1.47-3_1.27\", \"1673_l_2_c_0_2_3-0_0.76-1_0.88-2_0.35-3_0.1\", \"1674_l_2_c_1_2_3-0_0.82-1_0.3-2_0.07-3_0.1\", \"1675_l_2_c_0_1_2-0_0.83-1_0.13-2_0.25-3_0.82\", \"1676_l_2_c_0_1_3-0_0.45-1_0.08-2_1.47-3_1.33\", \"1677_l_2_c_0_2_3-0_0.17-1_1.04-2_0.58-3_0.24\", \"1678_l_2_c_1_2_3-0_0.03-1_0.24-2_0.51-3_0.13\", \"1679_l_2_c_0_1_2-0_1.3-1_0.02-2_0.1-3_0.07\", \"1680_l_2_c_0_1_3-0_0.1-1_0.17-2_0.11-3_0.81\", \"1681_l_2_c_0_2_3-0_0.54-1_1.12-2_0.11-3_0.6\", \"1682_l_2_c_1_2_3-0_0.12-1_0.14-2_0.83-3_0.81\", \"1683_l_2_c_0_1_2-0_0.02-1_0.36-2_0.0-3_0.3\", \"1684_l_2_c_0_1_3-0_1.41-1_0.05-2_0.03-3_0.2\", \"1685_l_2_c_0_2_3-0_0.85-1_0.16-2_0.05-3_1.23\", \"1686_l_2_c_1_2_3-0_0.48-1_0.05-2_0.09-3_1.41\", \"1687_l_2_c_0_1_2-0_1.65-1_0.0-2_0.04-3_2.41\", \"1688_l_2_c_0_1_3-0_0.78-1_0.01-2_0.98-3_0.55\", \"1689_l_2_c_0_2_3-0_0.03-1_1.7-2_0.03-3_0.11\", \"1690_l_2_c_1_2_3-0_0.51-1_0.79-2_0.61-3_0.22\", \"1691_l_2_c_0_1_2-0_1.54-1_0.05-2_0.12-3_2.07\", \"1692_l_2_c_0_1_3-0_0.79-1_0.24-2_0.86-3_1.27\", \"1693_l_2_c_2_3-0_0.8-1_1.53-2_0.09-3_0.56\", \"1694_l_2_r-0_0.06-1_0.48-2_0.65-3_1.33\", \"1695_l_2_r-0_0.19-1_0.85-2_1.53-3_0.54\", \"1696_l_2_r-0_0.82-1_1.0-2_0.48-3_1.02\", \"1697_l_2_r-0_0.37-1_1.25-2_2.82-3_0.03\", \"1698_l_2_r-0_0.94-1_3.91-2_0.96-3_0.91\", \"1699_l_2_r-0_1.3-1_0.43-2_0.57-3_2.33\", \"1700_l_2_r-0_1.29-1_1.85-2_1.34-3_2.15\", \"1701_l_2_r-0_1.17-1_0.79-2_1.13-3_0.38\", \"1702_l_2_r-0_1.32-1_0.84-2_0.42-3_0.72\", \"1703_l_2_r-0_0.6-1_0.85-2_1.93-3_0.96\", \"1704_l_2_r-0_1.45-1_0.08-2_1.07-3_0.65\", \"1705_l_2_r-0_0.01-1_0.35-2_0.28-3_0.91\", \"1706_l_2_r-0_0.04-1_3.24-2_1.8-3_0.13\", \"1707_l_2_r-0_0.13-1_0.28-2_0.0-3_0.35\", \"1708_l_2_r-0_0.34-1_0.22-2_0.09-3_0.87\", \"1709_l_2_r-0_1.8-1_1.5-2_0.62-3_2.9\", \"1710_l_2_r-0_2.65-1_0.15-2_1.98-3_0.67\", \"1711_l_2_r-0_0.71-1_1.34-2_0.72-3_0.77\", \"1712_l_2_r-0_0.21-1_0.91-2_0.12-3_0.96\", \"1713_l_2_r-0_0.71-1_1.13-2_0.41-3_2.23\", \"1714_l_2_r-0_1.52-1_2.31-2_0.9-3_1.38\", \"1715_l_2_r-0_0.5-1_1.29-2_0.42-3_0.93\", \"1716_l_2_r-0_0.31-1_0.73-2_0.54-3_1.98\", \"1717_l_2_r-0_1.3-1_0.5-2_1.6-3_1.7\", \"1718_l_2_r-0_0.64-1_0.14-2_0.61-3_0.79\", \"1719_l_2_r-0_2.09-1_0.77-2_1.28-3_1.47\", \"1720_l_2_r-0_1.2-1_1.25-2_0.23-3_0.78\", \"1721_l_2_r-0_0.87-1_0.58-2_0.47-3_0.92\", \"1722_l_2_r-0_0.88-1_0.31-2_1.29-3_0.27\", \"1723_l_2_r-0_0.72-1_0.79-2_0.75-3_1.3\", \"1724_l_2_r-0_1.25-1_0.59-2_0.7-3_0.85\", \"1725_l_2_r-0_0.66-1_0.16-2_0.66-3_0.63\", \"1726_l_2_r-0_1.31-1_1.03-2_0.25-3_0.11\", \"1727_l_2_r-0_0.19-1_0.12-2_0.46-3_0.88\", \"1728_l_2_r-0_1.33-1_0.03-2_0.17-3_0.74\", \"1729_l_2_r-0_0.13-1_1.31-2_1.7-3_0.44\", \"1730_l_2_r-0_1.64-1_0.26-2_0.57-3_1.32\", \"1731_l_2_r-0_1.38-1_0.71-2_0.34-3_0.2\", \"1732_l_2_r-0_0.69-1_0.66-2_0.85-3_0.41\", \"1733_l_2_r-0_1.16-1_0.71-2_0.18-3_0.49\", \"1734_l_2_r-0_2.04-1_0.69-2_2.16-3_1.31\", \"1735_l_2_r-0_0.85-1_0.01-2_1.34-3_0.69\", \"1736_l_2_r-0_1.54-1_2.1-2_0.02-3_0.28\", \"1737_l_2_r-0_0.3-1_1.77-2_0.57-3_1.07\", \"1738_l_2_r-0_1.28-1_0.02-2_1.08-3_0.28\", \"1739_l_2_r-0_0.77-1_0.11-2_0.66-3_0.43\", \"1740_l_2_r-0_0.2-1_1.01-2_1.13-3_1.57\", \"1741_l_2_r-0_0.2-1_0.65-2_0.74-3_1.14\", \"1742_l_2_r-0_0.47-1_0.96-2_1.88-3_0.18\", \"1743_l_2_r-0_0.58-1_1.37-2_2.71-3_1.1\", \"1744_l_2_r-0_1.35-1_0.67-2_0.81-3_1.18\", \"1745_l_2_r-0_0.73-1_0.78-2_1.1-3_1.32\", \"1746_l_2_r-0_0.41-1_0.62-2_0.29-3_0.63\", \"1747_l_2_r-0_0.07-1_0.11-2_0.95-3_0.58\", \"1748_l_2_r-0_0.18-1_0.14-2_0.35-3_0.48\", \"1749_l_2_r-0_0.28-1_0.38-2_0.57-3_0.69\", \"1750_l_2_r-0_0.81-1_0.5-2_1.57-3_0.63\", \"1751_l_2_r-0_0.9-1_1.42-2_0.99-3_1.04\", \"1752_l_2_r-0_0.02-1_0.46-2_0.06-3_0.19\", \"1753_l_2_r-0_0.74-1_1.46-2_0.54-3_0.03\", \"1754_l_2_r-0_0.73-1_0.35-2_1.55-3_1.58\", \"1755_l_2_r-0_0.72-1_0.49-2_0.75-3_1.34\", \"1756_l_2_r-0_0.39-1_0.32-2_1.08-3_0.34\", \"1757_l_2_r-0_0.36-1_2.19-2_0.62-3_0.03\", \"1758_l_2_r-0_0.26-1_0.55-2_0.27-3_1.26\", \"1759_l_2_r-0_0.73-1_0.86-2_0.54-3_0.1\", \"1760_l_2_r-0_0.12-1_0.58-2_0.87-3_1.39\", \"1761_l_2_r-0_0.34-1_0.65-2_0.98-3_0.95\", \"1762_l_2_r-0_0.35-1_1.83-2_0.4-3_2.21\", \"1763_l_2_r-0_0.39-1_1.26-2_0.86-3_1.9\", \"1764_l_2_r-0_1.29-1_1.14-2_0.5-3_1.15\", \"1765_l_2_r-0_0.57-1_0.41-2_1.77-3_1.03\", \"1766_l_2_r-0_0.49-1_0.48-2_0.77-3_0.26\", \"1767_l_2_r-0_1.08-1_1.74-2_1.97-3_0.89\", \"1768_l_2_r-0_1.17-1_0.15-2_0.24-3_0.4\", \"1769_l_2_r-0_0.19-1_0.51-2_1.78-3_1.03\", \"1770_l_2_r-0_0.41-1_0.27-2_1.46-3_2.34\", \"1771_l_2_r-0_0.9-1_0.2-2_0.87-3_0.81\", \"1772_l_2_r-0_0.09-1_0.78-2_1.56-3_2.23\", \"1773_l_2_r-0_0.29-1_0.68-2_1.23-3_0.71\", \"1774_l_2_r-0_0.6-1_1.58-2_0.22-3_0.3\", \"1775_l_2_r-0_0.76-1_0.69-2_1.51-3_0.27\", \"1776_l_2_r-0_0.36-1_1.5-2_0.84-3_1.56\", \"1777_l_2_r-0_2.67-1_0.06-2_1.31-3_2.26\", \"1778_l_2_r-0_0.27-1_0.41-2_0.04-3_3.33\", \"1779_l_2_r-0_0.36-1_0.89-2_1.09-3_0.3\", \"1780_l_2_r-0_1.01-1_0.39-2_2.79-3_0.74\", \"1781_l_2_r-0_1.6-1_0.51-2_1.34-3_0.23\", \"1782_l_2_r-0_0.01-1_0.12-2_0.8-3_0.11\", \"1783_l_2_r-0_0.65-1_1.38-2_0.57-3_0.72\", \"1784_l_2_r-0_0.47-1_0.71-2_0.42-3_0.46\", \"1785_l_2_r-0_0.69-1_0.32-2_0.25-3_0.07\", \"1786_l_2_r-0_0.92-1_0.22-2_0.46-3_0.64\", \"1787_l_2_r-0_0.66-1_0.3-2_0.22-3_1.3\", \"1788_l_2_r-0_1.55-1_1.75-2_0.49-3_0.13\", \"1789_l_2_r-0_0.45-1_0.21-2_3.13-3_0.16\", \"1790_l_2_r-0_2.68-1_0.39-2_1.41-3_0.6\", \"1791_l_2_r-0_0.05-1_0.38-2_1.4-3_0.32\", \"1792_l_2_r-0_0.4-1_0.55-2_1.0-3_1.37\", \"1793_l_2_r-0_0.08-1_0.01-2_0.36-3_0.32\", \"1794_l_2_r-0_0.5-1_1.14-2_0.33-3_2.67\", \"1795_l_2_r-0_1.06-1_0.58-2_0.72-3_0.1\", \"1796_l_2_r-0_2.55-1_1.34-2_0.37-3_1.23\", \"1797_l_2_r-0_0.9-1_1.54-2_0.19-3_0.59\", \"1798_l_2_r-0_0.47-1_1.01-2_0.07-3_1.92\", \"1799_l_2_r-0_0.86-1_0.05-2_1.07-3_0.74\", \"1800_l_2_r-0_0.41-1_0.28-2_0.58-3_1.66\", \"1801_l_2_r-0_0.75-1_0.67-2_0.73-3_0.08\", \"1802_l_2_r-0_0.65-1_1.38-2_0.25-3_1.18\", \"1803_l_2_r-0_2.29-1_0.34-2_2.05-3_0.55\", \"1804_l_2_r-0_1.49-1_0.75-2_1.64-3_0.0\", \"1805_l_2_r-0_0.0-1_0.58-2_0.39-3_0.56\", \"1806_l_2_r-0_0.18-1_1.34-2_0.11-3_0.88\", \"1807_l_2_r-0_0.12-1_0.36-2_0.21-3_1.44\", \"1808_l_2_r-0_1.98-1_0.97-2_0.82-3_1.27\", \"1809_l_2_r-0_0.85-1_0.49-2_0.98-3_0.07\", \"1810_l_2_r-0_0.79-1_2.29-2_0.64-3_0.75\", \"1811_l_2_r-0_0.1-1_0.83-2_0.38-3_1.39\", \"1812_l_2_r-0_0.98-1_2.04-2_0.3-3_0.53\", \"1813_l_2_r-0_0.46-1_0.14-2_1.74-3_0.23\", \"1814_l_2_r-0_0.9-1_0.37-2_0.2-3_0.1\", \"1815_l_2_r-0_0.23-1_0.03-2_0.59-3_1.09\", \"1816_l_2_r-0_2.62-1_1.56-2_0.54-3_1.58\", \"1817_l_2_r-0_0.63-1_0.36-2_0.82-3_1.22\", \"1818_l_2_r-0_0.26-1_0.62-2_1.03-3_0.58\", \"1819_l_2_r-0_1.27-1_0.35-2_2.19-3_0.29\", \"1820_l_2_r-0_0.05-1_0.09-2_1.25-3_0.64\", \"1821_l_2_r-0_1.3-1_1.6-2_1.72-3_1.22\", \"1822_l_2_r-0_2.13-1_0.89-2_0.16-3_1.1\", \"1823_l_2_r-0_0.03-1_0.23-2_0.24-3_0.5\", \"1824_l_2_r-0_2.4-1_2.52-2_0.68-3_0.12\", \"1825_l_2_r-0_0.9-1_0.31-2_2.1-3_0.93\", \"1826_l_2_r-0_0.52-1_0.75-2_0.66-3_1.04\", \"1827_l_2_r-0_1.32-1_1.54-2_1.36-3_0.06\", \"1828_l_2_r-0_1.27-1_0.17-2_0.6-3_1.02\", \"1829_l_2_r-0_0.25-1_0.34-2_0.71-3_0.95\", \"1830_l_2_r-0_0.28-1_0.61-2_1.6-3_0.67\", \"1831_l_2_r-0_0.25-1_1.0-2_0.36-3_0.09\", \"1832_l_2_r-0_0.46-1_0.68-2_2.16-3_0.76\", \"1833_l_2_r-0_1.04-1_1.69-2_2.31-3_0.78\", \"1834_l_2_r-0_0.04-1_0.17-2_0.2-3_0.66\", \"1835_l_2_r-0_1.26-1_1.4-2_0.33-3_1.02\", \"1836_l_2_r-0_0.16-1_0.91-2_1.39-3_3.5\", \"1837_l_2_r-0_0.47-1_0.18-2_0.66-3_0.64\", \"1838_l_2_r-0_0.28-1_2.69-2_1.13-3_0.27\", \"1839_l_2_r-0_1.4-1_0.02-2_0.09-3_0.47\", \"1840_l_2_r-0_1.13-1_1.26-2_0.91-3_0.31\", \"1841_l_2_r-0_0.18-1_1.59-2_0.39-3_1.59\", \"1842_l_2_r-0_0.69-1_2.0-2_1.16-3_0.83\", \"1843_l_2_r-0_0.73-1_0.58-2_1.26-3_0.85\", \"1844_l_2_r-0_0.84-1_0.03-2_0.79-3_0.19\", \"1845_l_2_r-0_0.1-1_1.54-2_0.75-3_0.98\", \"1846_l_2_r-0_1.0-1_0.15-2_2.26-3_0.67\", \"1847_l_2_r-0_0.05-1_2.84-2_1.17-3_0.97\", \"1848_l_2_r-0_0.42-1_0.25-2_0.5-3_0.3\", \"1849_l_2_r-0_0.76-1_0.8-2_2.28-3_0.03\", \"1850_l_2_r-0_0.17-1_0.72-2_1.67-3_0.93\", \"1851_l_2_r-0_0.49-1_1.25-2_0.07-3_1.17\", \"1852_l_2_r-0_0.91-1_1.73-2_0.09-3_0.8\", \"1853_l_2_r-0_0.25-1_0.18-2_0.57-3_1.28\", \"1854_l_2_r-0_0.27-1_0.31-2_0.35-3_1.6\", \"1855_l_2_r-0_1.21-1_0.49-2_3.44-3_0.39\", \"1856_l_2_r-0_0.59-1_0.38-2_1.44-3_0.19\", \"1857_l_2_r-0_0.97-1_0.66-2_0.78-3_0.35\", \"1858_l_2_r-0_1.53-1_1.4-2_0.07-3_0.81\", \"1859_l_2_r-0_1.16-1_1.16-2_1.09-3_1.78\", \"1860_l_2_r-0_0.68-1_1.61-2_0.88-3_0.82\", \"1861_l_2_r-0_0.52-1_2.44-2_1.71-3_1.06\", \"1862_l_2_r-0_1.6-1_0.02-2_2.03-3_1.29\", \"1863_l_2_r-0_1.18-1_0.2-2_1.1-3_0.32\", \"1864_l_2_r-0_0.81-1_2.02-2_1.13-3_0.69\", \"1865_l_2_r-0_1.24-1_0.15-2_0.43-3_1.1\", \"1866_l_2_r-0_0.18-1_2.57-2_1.16-3_1.07\", \"1867_l_2_r-0_0.98-1_0.1-2_0.47-3_0.75\", \"1868_l_2_r-0_1.04-1_1.08-2_1.49-3_1.14\", \"1869_l_2_r-0_0.15-1_1.23-2_1.34-3_0.45\", \"1870_l_2_r-0_0.39-1_1.03-2_0.13-3_1.14\", \"1871_l_2_r-0_0.01-1_0.88-2_1.39-3_1.34\", \"1872_l_2_r-0_1.65-1_1.08-2_2.57-3_1.2\", \"1873_l_2_r-0_0.12-1_1.77-2_0.37-3_0.51\", \"1874_l_2_r-0_0.74-1_0.5-2_2.33-3_1.39\", \"1875_l_2_r-0_0.13-1_0.73-2_1.59-3_3.12\", \"1876_l_2_r-0_0.03-1_0.72-2_0.89-3_0.7\", \"1877_l_2_r-0_2.08-1_0.98-2_0.07-3_0.13\", \"1878_l_2_r-0_1.08-1_1.05-2_1.05-3_0.25\", \"1879_l_2_r-0_0.96-1_0.39-2_1.73-3_2.03\", \"1880_l_2_r-0_1.17-1_0.44-2_1.06-3_1.03\", \"1881_l_2_r-0_0.73-1_1.34-2_1.02-3_0.83\", \"1882_l_2_r-0_1.46-1_1.76-2_1.31-3_0.75\", \"1883_l_2_r-0_1.45-1_1.07-2_0.44-3_1.48\", \"1884_l_2_r-0_1.49-1_0.74-2_0.11-3_0.85\", \"1885_l_2_r-0_2.14-1_0.25-2_0.15-3_1.32\", \"1886_l_2_r-0_0.9-1_0.26-2_0.58-3_1.7\", \"1887_l_2_r-0_1.18-1_0.39-2_1.76-3_0.31\", \"1888_l_2_r-0_0.93-1_1.94-2_0.63-3_0.58\", \"1889_l_2_r-0_0.74-1_0.91-2_0.67-3_0.92\", \"1890_l_2_r-0_1.26-1_0.69-2_0.35-3_1.68\", \"1891_l_2_r-0_0.56-1_0.13-2_1.02-3_0.01\", \"1892_l_2_r-0_0.78-1_0.87-2_0.43-3_1.05\", \"1893_l_2_r-0_1.16-1_1.08-2_0.06-3_0.09\", \"1894_l_2_r-0_1.36-1_1.68-2_1.58-3_0.36\", \"1895_l_2_r-0_0.71-1_1.41-2_1.23-3_0.67\", \"1896_l_2_r-0_0.08-1_0.47-2_1.32-3_0.4\", \"1897_l_2_r-0_0.14-1_1.73-2_0.6-3_1.08\", \"1898_l_2_r-0_1.72-1_0.03-2_2.02-3_1.27\", \"1899_l_2_r-0_0.0-1_1.17-2_0.11-3_0.75\", \"1900_l_2_r-0_1.71-1_1.44-2_0.29-3_0.81\", \"1901_l_2_r-0_1.91-1_0.0-2_2.02-3_1.13\", \"1902_l_2_r-0_1.86-1_0.47-2_0.54-3_0.03\", \"1903_l_2_r-0_0.27-1_0.6-2_0.03-3_0.21\", \"1904_l_2_r-0_0.2-1_0.9-2_1.15-3_0.87\", \"1905_l_2_r-0_1.46-1_0.88-2_0.03-3_1.66\", \"1906_l_2_r-0_0.66-1_0.61-2_1.23-3_1.07\", \"1907_l_2_r-0_0.02-1_1.28-2_1.74-3_0.09\", \"1908_l_2_r-0_0.94-1_0.68-2_1.76-3_1.39\", \"1909_l_2_r-0_0.24-1_1.26-2_1.45-3_1.16\", \"1910_l_2_r-0_0.9-1_0.24-2_1.06-3_0.04\", \"1911_l_2_r-0_0.5-1_0.13-2_1.19-3_0.58\", \"1912_l_2_r-0_0.11-1_0.14-2_2.14-3_0.42\", \"1913_l_2_r-0_1.43-1_0.32-2_0.25-3_0.46\", \"1914_l_2_r-0_0.09-1_0.13-2_1.92-3_0.06\", \"1915_l_2_r-0_0.69-1_0.46-2_0.5-3_1.52\", \"1916_l_2_r-0_0.26-1_1.15-2_1.81-3_0.72\", \"1917_l_2_r-0_0.93-1_0.01-2_0.99-3_1.37\", \"1918_l_2_r-0_2.0-1_0.72-2_0.77-3_0.84\", \"1919_l_2_r-0_1.58-1_1.33-2_0.28-3_0.09\", \"1920_l_2_r-0_0.28-1_0.95-2_2.65-3_0.95\", \"1921_l_2_r-0_2.1-1_0.05-2_0.49-3_0.5\", \"1922_l_2_r-0_0.22-1_0.52-2_0.69-3_0.25\", \"1923_l_2_r-0_1.39-1_0.87-2_0.73-3_1.46\", \"1924_l_2_r-0_1.08-1_0.35-2_1.4-3_0.02\", \"1925_l_2_r-0_1.05-1_2.01-2_0.77-3_0.57\", \"1926_l_2_r-0_1.03-1_0.3-2_0.02-3_1.0\", \"1927_l_2_r-0_0.07-1_0.7-2_0.2-3_1.78\", \"1928_l_2_r-0_0.6-1_0.34-2_0.08-3_1.27\", \"1929_l_2_r-0_0.23-1_0.07-2_0.63-3_0.23\", \"1930_l_2_r-0_1.14-1_1.26-2_0.49-3_0.47\", \"1931_l_2_r-0_0.26-1_0.85-2_0.81-3_1.82\", \"1932_l_2_r-0_2.09-1_1.1-2_0.53-3_0.78\", \"1933_l_2_r-0_0.52-1_0.42-2_1.45-3_0.49\", \"1934_l_2_r-0_1.85-1_0.54-2_0.52-3_0.55\", \"1935_l_2_r-0_0.18-1_1.09-2_0.09-3_0.2\", \"1936_l_2_r-0_1.77-1_0.22-2_2.35-3_1.82\", \"1937_l_2_r-0_1.27-1_1.0-2_0.16-3_1.15\", \"1938_l_2_r-0_1.48-1_0.88-2_0.04-3_1.49\", \"1939_l_2_r-0_0.73-1_0.83-2_0.18-3_1.35\", \"1940_l_2_r-0_1.8-1_0.87-2_0.78-3_0.17\", \"1941_l_2_r-0_0.44-1_1.78-2_0.89-3_1.23\", \"1942_l_2_r-0_0.18-1_0.37-2_0.76-3_0.48\", \"1943_l_2_r-0_1.76-1_0.06-2_0.68-3_1.54\", \"1944_l_2_r-0_0.26-1_0.22-2_0.97-3_1.64\", \"1945_l_2_r-0_0.43-1_0.43-2_0.66-3_0.26\", \"1946_l_2_r-0_0.74-1_0.44-2_0.78-3_0.53\", \"1947_l_2_r-0_0.11-1_0.78-2_0.58-3_0.12\", \"1948_l_2_r-0_1.72-1_0.07-2_0.28-3_0.82\", \"1949_l_2_r-0_0.74-1_0.68-2_0.75-3_0.29\", \"1950_l_2_r-0_1.32-1_1.52-2_0.7-3_0.69\", \"1951_l_2_r-0_1.02-1_1.13-2_0.33-3_0.2\", \"1952_l_2_r-0_0.01-1_0.95-2_1.51-3_0.58\", \"1953_l_2_r-0_1.8-1_0.2-2_1.49-3_0.54\", \"1954_l_2_r-0_1.06-1_0.2-2_0.51-3_0.55\", \"1955_l_2_r-0_0.51-1_1.21-2_0.15-3_1.56\", \"1956_l_2_r-0_1.66-1_2.74-2_0.15-3_0.94\", \"1957_l_2_r-0_1.7-1_1.86-2_1.33-3_0.76\", \"1958_l_2_r-0_0.01-1_1.0-2_1.16-3_1.05\", \"1959_l_2_r-0_0.05-1_0.02-2_0.45-3_2.22\", \"1960_l_2_r-0_0.94-1_0.19-2_1.23-3_2.67\", \"1961_l_2_r-0_1.33-1_1.54-2_2.08-3_1.22\", \"1962_l_2_r-0_0.56-1_0.71-2_0.08-3_0.22\", \"1963_l_2_r-0_1.44-1_0.27-2_0.41-3_0.05\", \"1964_l_2_r-0_0.06-1_0.39-2_0.25-3_0.39\", \"1965_l_2_r-0_0.3-1_0.5-2_0.84-3_1.51\", \"1966_l_2_r-0_1.37-1_2.65-2_0.29-3_0.81\", \"1967_l_2_r-0_0.85-1_0.38-2_0.27-3_1.24\", \"1968_l_2_r-0_1.66-1_1.16-2_0.02-3_0.42\", \"1969_l_2_r-0_0.59-1_0.11-2_0.37-3_0.79\", \"1970_l_2_r-0_0.72-1_0.09-2_1.49-3_1.04\", \"1971_l_2_r-0_0.01-1_0.3-2_1.19-3_0.53\", \"1972_l_2_r-0_0.58-1_0.75-2_0.34-3_0.99\", \"1973_l_2_r-0_0.05-1_1.0-2_0.13-3_0.05\", \"1974_l_2_r-0_0.63-1_3.46-2_1.02-3_1.54\", \"1975_l_2_r-0_0.45-1_0.3-2_1.14-3_0.11\", \"1976_l_2_r-0_0.96-1_0.36-2_0.33-3_0.65\", \"1977_l_2_r-0_1.59-1_1.69-2_1.51-3_0.07\", \"1978_l_2_r-0_0.47-1_1.04-2_0.37-3_0.76\", \"1979_l_2_r-0_0.79-1_0.87-2_0.82-3_3.42\", \"1980_l_2_r-0_0.26-1_1.75-2_2.34-3_0.98\", \"1981_l_2_r-0_1.15-1_0.57-2_0.59-3_1.89\", \"1982_l_2_r-0_1.49-1_0.92-2_0.46-3_0.84\", \"1983_l_2_r-0_1.29-1_0.35-2_0.63-3_1.91\", \"1984_l_2_r-0_0.75-1_2.05-2_0.53-3_0.28\", \"1985_l_2_r-0_0.43-1_0.42-2_0.42-3_0.08\", \"1986_l_2_r-0_0.07-1_0.99-2_1.7-3_0.98\", \"1987_l_2_r-0_0.71-1_0.86-2_1.89-3_0.98\", \"1988_l_2_r-0_1.23-1_0.03-2_1.96-3_0.57\", \"1989_l_2_r-0_1.48-1_0.69-2_1.18-3_0.13\", \"1990_l_2_r-0_0.2-1_0.94-2_0.33-3_1.44\", \"1991_l_2_r-0_0.47-1_0.3-2_0.07-3_1.05\", \"1992_l_2_r-0_0.57-1_0.66-2_2.18-3_0.63\", \"1993_l_2_r-0_0.48-1_2.22-2_0.75-3_0.41\", \"1994_l_2_r-0_0.33-1_1.0-2_1.25-3_0.03\", \"1995_l_2_r-0_2.07-1_0.49-2_0.51-3_0.33\", \"1996_l_2_r-0_0.31-1_1.02-2_1.08-3_0.01\", \"1997_l_2_r-0_1.91-1_1.01-2_1.7-3_0.98\"], \"type\": \"scatter3d\", \"x\": [-0.09325690187411163, -1.1016440048805507, 0.0010877784721376295, 1.4382521907883568, -0.09298496476789311, -1.0574074668924296, 3.385641914685392, -0.7244329573617725, 1.2900738145688753, 2.3429854109784825, -1.6279073581324914, -0.3583538144968496, 0.043961130353871204, -0.7046771573298432, 0.2760083540059118, -0.8036650726215924, -2.0639585533477733, 1.2877734883721756, -0.40921389598701224, 1.024242192542652, 0.03666926282431157, 0.028723185998206686, -0.7078359439451272, -1.367209029734657, 1.5101065325168401, 0.1778109838146356, -0.063985761873968, 1.3075885003666043, 1.4599922502451297, 0.7752149685605496, 1.1454894094923196, -1.7403310563691168, -0.24587832311845023, 2.6798566610840235, 1.0638042644059973, 1.5140091592068785, 2.2728960212135325, -1.2300207621286032, -1.0837356312642228, -0.8293130292286522, -5.481358416073191, 0.8230984058612782, -0.010987827386712199, -1.3405647299921786, -3.0153313432082527, 1.0393491064062708, -0.6692849007093193, -1.3104937196144846, -1.616610955299081, -0.43811107209240496, 0.36515667147714503, -1.67646624243411, 1.701632341936967, 9.243252320616742e-05, 1.8370241338215998, -0.9098558666858934, -2.930223272901679, 0.14738274698239506, -0.6410423416930998, -0.8573810785536657, -2.8527578517978633, -1.8256099514829809, -1.212545175194354, -0.46054268603448156, 1.627541624024467, -0.15554290324339853, 0.3683406928799673, -0.28058116355390766, -0.18377698147745736, -0.390719972310321, -1.0185712088188563, -0.4778669108526547, -0.9667487790637976, -1.3960476700964985, 0.3941806697716651, 1.3647244544413903, 2.387067746476622, -0.29558647733340154, -0.4049362266248342, 0.6232858518045804, -1.7483790642279085, -0.9339017934853294, 0.4282808684626552, -0.7920000191823064, -0.6080310897589979, -0.016565698363668863, 1.6201809145722321, -0.4923838806230217, 2.5564162465599245, -0.4381302149598619, 0.44605776837396727, -1.2743495778720597, -0.8556951772105379, -0.22837751374753568, -0.6011325416909616, -0.020038731190410664, 2.6750065362822326, -0.16064897910176207, -0.4941320905607134, 0.13112473306399508, 3.314116618138154, -0.2320776555447599, -0.21353326125805788, 0.4514253077239567, 1.328856266692555, 0.22104394418349055, -0.5859751647577452, -0.7578003531678861, 1.5310329750569822, -1.9996295124854626, -0.9795162541259181, 0.09926422735331923, 0.34520518819616025, -0.6286593902419909, -0.7761832463531706, -0.5807045792821035, -3.1419526503765285, -0.38762532902186775, 1.2226790499689855, 1.1718049238772361, 1.972337043855988, 0.12338010781309391, 0.27538993767501635, 0.1077855689763214, 0.3054000391899156, -0.038316690579014274, -0.21097038923101616, 0.5599713995294724, 3.0305173059127486, 1.1113259094632033, -0.7020339164894794, 0.8945157259658089, 3.709917835115895, -0.08734776773743785, 0.0738188196739187, -0.009690133717962977, 0.48160739525195934, 1.3895253640154928, 0.011869115163948656, 2.1287287563538775, 0.6626610333478344, 0.9258877378860111, -0.0017943341996293782, 1.03641607380792, -1.5364493291940808, 0.08820666676835867, 0.10816353986330692, -0.1945553428289631, 0.29441943318750596, 0.07629792731139788, -0.7942044566126405, -0.4553594494942279, -2.3659929729862395, -0.5615063001507472, -1.0220412626195396, 0.09774449673910691, 0.32696072350117333, -1.2275517864119003, 0.05433064965830373, 0.46551549090011934, 1.592686657849566, 0.7139679213064992, 0.7427620762130565, 0.5004375707654954, 1.6102858143176741, -0.7008258992483111, 1.0592939522024345, -0.5023157660810499, 3.0394493773813998, -0.01457021026785774, -0.417451867875092, 1.1405326876553934, -0.8502270323560088, -0.11613724275960946, -0.8699078442571655, 0.5180737687823768, -3.237119773355859, 0.5684259166570943, 1.4534860590254801, 0.7610369924197494, 1.280166661073227, -0.6301093942697014, -1.1136648579997208, 0.9533565466887226, -2.8511724636329103, -1.1151566861146058, -0.5735915602020069, 0.20650320272301645, 1.0338052117555177, 0.01864368783318544, -1.3824293239319367, 0.9310100564684858, 0.4208960224960994, -0.0381539307088192, -0.7396183880458477, -1.2456372402529736, -2.951445217762383, 1.0249375823593614, -0.705665201255238, 1.1846906303940725, 0.10994208312737394, 0.3653880641458036, 0.4480525026387797, -0.19458131639469672, -0.585957246865726, -1.3165939692196031, -0.02777363472183717, -0.5576759785440912, 0.9530950472605154, 0.1123913322743454, -0.6839555387418713, -0.41772215302111926, 4.117537132660624, -0.24055324763686756, 0.12606057315764682, 0.7032731156029765, -1.9812179495012623, 0.9187231865073076, -0.05733881592255856, -0.07846786993265116, -4.870060939202407, 0.36499503296518937, -0.0782241133649392, -1.57301156194928, 0.2190630585344672, 0.4077890467817243, 1.861642512211156, 0.1404415725241812, -2.363213220631135, -1.4856850588912922, 0.014785543521094313, 0.1898958756017542, 0.7168790823670375, -0.005795448748228574, -1.4637981751612876, 0.12384785352765691, -1.0488737819147125, -0.005054641566542213, 0.555727550353619, 1.264900333112737, -2.24105146053483, 0.0023913616885538414, -0.6056662206371403, -0.13279516588922413, -0.4533482488829635, 1.225006603769753, 0.2961051553754438, 1.7622136518441784, -1.3837659478531552, -0.17297271088091842, -0.3443977496096342, 1.063255197323321, -0.876993324786969, -0.4443350748214669, -1.0907603244846265, 0.24510706289466372, -3.057977823075501, -1.7454682488787157, -0.3534630375356571, -0.00653466768329079, 0.42800717670599764, 0.7014659465416989, -0.12729623946925137, 0.4151634751250935, 7.10254313726796, 0.08706277982251687, 1.9672050970745918, 0.6512360739885901, -1.390135726782056, 0.4552188985535369, 0.325582056610435, 0.42251083445943266, -1.0245499012579693, 0.33797252716892656, 0.14792012513000813, -0.8693039006777851, -1.1571756098096304, 0.11171624641084164, 0.09873787007310532, 0.14321084103717246, -0.06680140174983233, -1.508653790726687, -1.487402616179464, -2.1349507069621976, 3.4963049774624406, -0.035956009579935576, -0.28061510416068586, -0.2883956837146049, -1.2474440652686454, 1.2199027937541569, 1.013870393512975, -1.8443581697492692, -1.2356789666842118, -2.24411934886251, -0.730286293644158, -0.05922571362688309, 4.647614347713037, 1.0193205524502473, 0.41977673451724706, -1.7857542321496527, 4.806352327421521, -0.18304274455946554, 0.017595997891239213, 0.6266910036465717, -0.9902186628795105, 1.6601192132150333, 0.003871331776691803, -0.23956056876570062, 3.7593380698582575, -1.3097086049442388, 0.7582735767644457, -1.1008757489912575, -1.2196289468093071, 0.029402798697411893, 0.004310573558014774, -0.06680247371590045, -3.0052635643906385, 1.579548670811074, -0.4463397774328174, 0.25807502350527534, -1.7995727970654412, -1.2838158663003565, -0.2490852656365136, 1.6061934034907348, 4.686961497031348, 0.746999271246398, -0.07141473269634949, -0.10724897528548807, 2.392582415231475, 0.11095593747595198, 1.790661290572362, -0.9471862191756719, -1.8225039712561475, 0.16549220708768586, 0.2637898215569298, 0.014215181327702558, -0.6875183212330845, -0.23186191752244756, 0.35459420482040094, 0.8411881945870093, -2.7281245892334414, 1.0437316834443504, -0.07393857845017052, 0.8212215550915909, 1.4746302935973326, 0.9327632966708642, 0.986235209518179, -0.0956290499631464, 0.8548715434594253, 0.2667326460632329, 2.1484818328719, 0.5276323011787428, 2.2104394947676864, -0.053698590669435525, -0.08947907979929931, -0.15759288792316045, -0.9843639906370479, 0.10185500865029036, 0.6149286749032252, -1.1717785650292616, -3.1302099717052303, -0.08546125164803307, 2.861254666856318, 3.1163881962842543, 0.4756252677999694, -3.4360386021568936, 1.4337998835022399, 0.5657678767262115, 3.0711210351037317, 1.1280263230818526, -4.886374411857881, 2.122071513536054, 2.4186152858576992, -0.2782862225302262, -2.0127707484240998, -0.0015898864758922332, -0.09099436836281842, 0.615533211669019, 2.2943104517520356, -3.1761634927645734, 4.13704864463989, 2.4125384161582164, 3.5375168430870945, 0.41906578246490017, 2.545782388285729, -1.6034764910764747, 0.6135025458978323, -1.2817917431646773, -2.4619439588450263, 4.365997737283459, -1.294737959273326, 3.2194509932222233, -0.6980426936294951, 0.8232569080966272, -2.1646538913405076, 3.5884892987072505, -0.1696489510381701, 1.6990001534601606, 5.3056130803352, -4.456335043263517, -0.8513419563741361, 2.4584313776906694, -2.1675375761967013, -1.40095109878358, 2.742130344653834, -1.6460359430602862, -3.4932697598455067, -0.6614282625879389, 5.108477704899268, -1.4841274016298898, -1.8795705666310223, -3.120560627468127, 1.012060211078968, -1.9020907959768052, -0.29313583779821634, 5.368569653658266, -6.038808036111297, 1.5880584137302407, -1.6900418789843565, 2.297947639651336, -3.431566648222205, -1.4632646150903923, 1.55477728967656, 0.7516773717337951, 1.0778988575806534, 1.522653376424591, 0.6780333462169019, 0.535857799539038, 0.872659792618022, 1.9603586209225397, -0.3984330577649937, -0.8552932323342006, -0.8693384392316473, 2.4078222432355103, 2.3354917335494307, -3.0569921037505154, 2.549508738557945, -1.8789540092021537, -1.4645200295411018, 4.1910946596969, -1.5580676928747095, 1.226768534061309, 1.0112822483152577, 3.7352251768657285, -3.299389782763629, 5.751748544097861, 3.3243195478935865, 3.4957901089145116, -4.509275472070741, -2.4463690833292935, -2.2761805510999724, 2.802437131399484, 2.7974813042927162, 0.2688307943497491, -1.0255479669953165, -1.7566105926071143, 1.575990343264857, 3.576136402178379, -1.643868363549014, -5.930194323376596, -1.5634917320802564, -0.8337803049658692, 2.020793704357952, -2.5848976548977403, -0.3676731559983138, 0.19200702046995774, -0.34696508165314593, -1.0672760837455735, -1.7950427340107835, -0.7318697649240071, -1.6592219644485748, -4.627143904577018, 2.330387525997163, 3.600958231991549, -0.10835567636058872, 0.7204050961591575, -1.353171424440941, -2.1083200423181916, 0.6416293247844774, -1.3226488577636286, -0.4257647220567234, -2.754532498065942, 0.1971834252398789, -0.5940698427403183, 0.5356661840906661, -1.6588795772017257, 1.0274150308961072, 4.850135221335051, 1.2540035555977098, 1.8409328502540496, -1.8191754069095778, 2.1668352797156025, -2.829967423941794, -2.535722463493932, -2.2127665408265784, -1.6750333940312199, 2.799551991814071, 3.1883393180986563, -2.617352185463724, 0.35594556628689283, -2.159771810293132, -2.3117712368575543, -1.7160872396245437, 4.420746653634883, 3.503264035039578, 2.302385040895602, 1.278681224606737, 4.361865913614469, -0.9091631648871794, 3.0063153084913177, -2.5753296791267886, 1.2597334698575293, 0.7884311056774036, 3.499436861128235, -3.7505119561350155, -4.389355725821718, -1.8304275114510842, -2.492546400071184, -1.6747889488447998, -0.7469741523202388, 5.580070444428823, 0.7104963048294156, -4.058485331146968, -3.5183267030069945, 2.916384002830577, 1.8622683429020475, -1.9922847318041303, 1.5279193610663235, -0.9947645143742513, -7.522051248184829, 2.0325257367466167, 1.1024385049240302, -1.1254360565739703, -0.42823071362715687, 1.1579102891916133, 0.47238352241271203, 1.4860602655535522, -5.09091028079135, 1.3909283563370165, 3.0933008834240816, 3.340103280829902, 0.36504921879757124, -2.623546724390482, 1.5888448121636978, 2.373061985430693, -0.07275995706290277, -2.2405661933988723, -2.166250948204343, -1.0627258675938411, -3.6228708803160967, -2.594431054807216, -1.6472392623905165, 0.10965769211548851, -2.888238727023985, 0.5797364889348966, -3.976614506337065, -0.6273169280412334, 0.6744665927640275, 4.001194934382627, -2.761387456006495, 0.43106399964612613, 0.06404566336278245, 1.583525691668899, 1.2317790222652831, -3.0080539561464517, -0.6045219516057483, -3.6621443360035717, -3.884735987153651, 0.28824346466594447, -2.018107143997482, -0.5420582843467379, -3.6965330352517096, 2.9350550525305295, 0.03414355134008102, -1.718677113049051, 2.5999785190345963, 1.7608626545031782, -3.6347825362369353, 3.2021255616214215, 2.761815983327812, 4.478319510915163, 3.001014230791821, -2.0836737097045943, 1.6415425007244537, 1.8051724162493987, 2.5144221490006364, 1.3133853489195408, -0.27643087104341907, 2.7421471954642125, -1.6655920315206185, 1.8281073630711246, -0.7341673874542409, 2.176422825770085, 0.7738149989107992, -2.181341930765879, -0.39758772277747595, -3.4041958559341956, -1.3668979389622669, -2.1833151366543935, 2.7998185701821794, -0.5290419757036202, 1.4507967063528924, -0.5197488854972868, -3.290169914706357, -2.354390775349393, 0.1562800356155105, -2.609945529824925, 0.1758017757339327, -1.619011158998502, -0.8925799914712442, 1.910208200281797, 2.082953254468117, 1.1785629493923393, -3.8561593831378027, -0.7756431492008332, 0.5901561881274971, -0.2762831766183308, 2.562081485680229, 0.9651104922596865, -0.975198556126408, -1.5867525034955379, 2.436368705191804, -1.705128453608426, -1.0897735782584361, -0.2806533704335274, 1.331162384514043, 1.1579601743165573, 2.1602010032085674, 1.2272331379889627, 2.3049249589558864, 3.734651728191875, 0.4136780029816056, -0.25394404246373653, -0.8373869586931055, 0.294809865676201, 2.3390010701132917, -1.4191224295849345, -2.571654058524699, 2.9761939316872636, -2.326446610890761, -1.2491192107956552, 0.13027182518552083, -1.0173186124953695, -1.1416167430554427, 1.736685005284953, 1.5134397440680754, -0.3709046421709941, 0.9624407373600816, -3.382419765971176, -0.5866684923463186, -0.5261428645916012, 2.4538098055315665, 0.5277855797740824, -6.925791977911706, -1.7049576989765556, 1.8940853770022685, 3.850667654915593, 2.330642521871674, 0.9866889320352351, -0.07086931236761287, -2.282683661495188, -3.134117237025434, 1.245472776734277, 3.6198082429405836, 1.0757854208332167, -2.7911141729455227], \"y\": [1.6617764634480272, -2.106597264573904, 0.06878033921003923, -2.0019139315744465, -0.5928150619188499, 0.6603735992110128, -0.1888145097314362, -0.3157418963691369, -0.09823076896948087, 4.6668668167892555, -1.5869261761482194, -0.70653392250715, -0.5852365811343688, 0.6397502500374693, -1.487420056863039, -2.9561237009994668, -1.2583174103440309, 0.2483969691986181, 2.918405962448585, -1.1701195073841606, -0.0009707991490475082, -2.984387697339637, -0.5781951152915388, -0.8613495188041802, 4.141325587642559, 0.4696317285524235, 0.6730257027223217, 2.816739650585656, 0.05004371410050519, -0.1980514228110401, -4.833008343829403, 0.12931784495307103, -0.29984421959906377, -1.182670305134671, -0.6327955733717678, -0.661965801209146, 3.2220611294840875, -0.7284244402306214, -1.4047177356627685, 0.8705014772680872, 1.0102403888002514, 0.6379450439365822, 1.6133994019931075, 0.5040606348960506, 1.1378553583384434, -0.00045959581026367504, -1.991650041566955, -0.09172858241168484, 5.136865094555706, 1.9878859338326653, 0.676547784633928, -0.2485469743305462, 4.929084954659545, 0.3160637171243109, 0.47551842628135466, 2.2531661568970343, 1.6397144793847087, 0.28792432743073565, 0.9561025464864157, -0.9333364845067145, -0.9042784200602254, -0.2762654735352234, 1.3882008870143787, 1.131940666072098, 0.03696544307424123, -0.6123096128684654, -1.7448716895723524, 0.06378885845722546, -4.804159758248118, 0.5618541090316571, 0.11538274759641802, -0.6688546515384395, -1.649845738210407, 0.04286272204384053, -0.29390632537918365, 1.2080557046255664, 2.1127880287213117, 0.10172890150939051, -1.7080222912654663, -0.5155734177694207, 1.1012577285088185, -0.5085773723245407, -0.016316828365144122, -0.4181102749319909, -1.862934095692778, -0.01933108881361704, 1.7586232642508066, 0.03498606651305035, -1.4242991042843227, 0.7885203998019029, -2.311192822685466, 0.892437588856283, 1.3367876817617406, 0.7301233689380559, -0.9509053497662344, -1.8657798184433414, 1.9040221721476898, 0.6685050913973818, 1.6824034397223269, -0.28056503077092315, 1.5265311079208903, -1.0410946458245138, -0.18006138070656766, -0.25922277660000814, 0.4835095972024335, 0.10519492359789515, -0.534758670662988, 1.2419032753237023, 1.052247474356315, 0.4833444588482085, 0.6686880165286991, -1.896985902968711, 3.0831825572328704, 1.6127612408683312, -1.1302367847230075, -1.324118661005457, 3.5368992559571124, -1.7109799819771456, -0.4809768775744789, 1.3930641870185316, 4.328514925788868, -0.3449041839888561, 0.6113186024293684, 0.013932833803470721, -3.037077089449632, 0.044315137449697284, 0.8455808480605974, -0.3534854386140848, -1.8935236366554828, -1.5324761827889533, 1.6574385751180134, 0.600561435156261, 3.530414529545262, 0.3902571705653166, -0.051375636885142156, -1.2956849977730778, -2.5430534320875187, 0.08700513686795322, 0.18540951249318255, 0.21876751726978205, -1.7757618335623218, 1.354263805545144, -0.021417399469824995, -0.22708832636450402, 1.9582991348845111, -0.031219894273298184, -0.0069864704425884735, -0.24101151383440556, 5.589049337984509, 0.2891317271186083, 0.2976357781850422, -0.2580955480201765, 3.2009664063558265, -0.48970659171862707, -0.3570617783109112, -0.10845490450648947, 1.7728712760718541, -1.1402357598322153, 0.06889696318077063, -1.1510621551059181, 2.7910129190071378, -0.3861103575965297, -0.31821729231550233, 0.12686776333781752, 4.124554004694676, -0.31306550885504, 1.8908664373902913, 1.3141319458908203, 3.335931870810713, 0.02635909126873858, -0.025492978194276372, 0.26261277415327866, 0.07461526861578677, 1.782454205487502, 0.16992742064919394, 1.0436543661191078, 1.383617865122998, -0.6570079724444741, -0.6754164714992051, 0.8472178131036348, 0.5720798983242181, 1.1268526858343553, 1.297650536185381, 0.37839266754202633, -1.4968485480198561, 1.7170989610471925, 1.1950619729898646, 0.12225937395260081, 3.7347774726036307, -0.03824639168858701, -0.6782476676689119, -0.9655012790281127, 0.10307361534090224, -0.7672827961388664, -0.8811721841113088, 0.798413981843375, 4.6379548558675, 0.4451126479121873, 0.12360422575556715, -0.30580560377116556, 0.857627904623105, 1.1992000967446539, 0.6599788612463156, -1.1078749129071706, 4.13830079378516, -0.9667385276762145, 0.04603629027337683, -0.29413431066711704, 3.8365288655577707, 0.3684013393029342, 1.2494597020868372, -0.029532594202888715, -3.784303773947717, 0.41139515629682144, 1.6537118982996881, 0.7952363824392533, -1.2617952509537982, -0.5300446764648062, -0.12768579418614154, -1.0270957334446627, 1.8583781543358031, -0.5860217786656533, 0.049565737969007706, -0.10507144528791519, -5.773651854340606, 0.709130171828633, 1.1179457905640933, -1.6808379824920117, -0.5569796392937423, 0.9567030168076749, -0.7272676780067866, 0.0670278035702317, 2.235235305317147, 0.00822058636606281, 0.040191632584465356, 1.7186639481826873, -3.746795894853478, 0.07584131405165985, 2.254231482131179, 0.5180283251120628, 0.23485825675646108, 0.08957303686572153, 0.868056536695672, 0.8245464193383067, 1.860753113556915, -0.6969801015111321, -0.18822019129927287, 0.052402615180978135, 2.165431746713516, -0.6077388210089143, 0.47407263302625785, 1.2755504993704407, 0.1687814928054531, -1.2832654287559382, -0.7446580817411474, 1.164183272976538, -0.9070727264878148, 0.22884112665777526, 0.1938066644926271, 0.034731669544241374, -0.7734369448613636, 0.83572430374981, -1.045111884391964, -1.275515174891802, -0.9250073399984788, -0.30136804582664733, -0.5348570789168163, -1.3881684383356272, 3.165490447574342, -0.19355721581050622, -1.5085414917675426, -1.7822304798891606, 1.3948383061197258, 0.06736635214494101, 0.3833048638551506, 1.0010932844495581, 2.4105717767566777, 0.34955162416148683, 0.6277666719167894, 0.0840696765133741, -3.556239624474823, -1.746743217949335, 0.8444497385843847, -0.39810555430251254, 0.30552937646126066, 0.5304799911576032, 0.47252108496140566, -0.9987568646595988, 3.73201243765495, 1.2084943265613572, 0.3155687925248057, -0.9080208314247601, 2.1947199770836923, -0.021118960789095084, -1.5191074621833704, -0.14592286112522118, -0.7074607827781738, 1.2000361205531778, -0.22190802897500894, -0.3231029852871193, 0.546724243483537, 1.6570872099894869, -0.02841907498916092, -0.41103875756826214, 2.6067017000778816, 0.6130413823626757, -0.6087934367231588, 2.1935474527323273, 3.2575136790858505, -0.08603452480511557, -0.29528672132023, -0.7754582265145066, 0.3954751447795656, -0.10787251177584888, 0.005640660990713065, 1.579412257225773, 2.27301724067528, -0.9158834724112025, 1.1557654249920637, -0.12740594561203766, -1.3607809562603939, -0.4177216617847983, 1.125072744598212, 0.4934500953427179, -0.7173540871585754, -0.509964214431188, 0.11066697039852665, 1.30549812865183, -1.6456144643953203, -0.048944946949297685, 0.2736845456860561, 0.0179429967092168, 3.7421083872356053, -2.3608451083656705, -0.2742814870197683, -1.924495772705386, 3.71227327671523, -0.614936236791449, -0.5026233675566294, 0.3276555432468817, -1.9471707065623134, -1.7975425063329868, 0.4120861572390437, -0.25445760344316865, -2.715578583675711, 0.5804614405532249, 0.5132054567583031, 0.17741768122549928, -0.11077276370314937, 0.10836536045044191, 0.8546224736333863, 0.4761601052791857, 0.0263271227955426, 0.24422203033841783, -1.208799291669033, -0.8952392583378813, 1.7946989954971526, -0.030397790379646975, 1.41811949129301, 2.09905538145062, 0.8613495782681021, 1.0232634902153586, -5.111163090079001, 5.360536572211485, -2.098474287970105, -4.89719961996554, -2.046769255713647, -1.539084133220928, 5.118554460483594, 1.2893773422312977, 0.4442786854649936, -2.332617754622039, 2.4819593799680413, 2.4797444916264033, -6.014036935229902, 2.211948218936332, -0.7258522051567685, -2.511739016371943, 1.9773491476610057, 0.7177701925991314, -6.177732252880265, 3.3243010975206553, -1.1236385205797794, -2.752134693334535, -0.5410758720556021, -1.7910057709075715, 2.46660789674724, 1.9653213982498372, -1.7285297633577879, 0.4672835124258289, -1.5749554868371385, -0.7531104910119654, 1.3562467215039415, -0.6627226743936777, -0.2481112844282484, 0.4562860075243628, 1.0551254356388506, -1.7480305181813813, -0.5677991954023249, -0.34292604703550944, -1.1838617112863064, -0.1812078963699324, 2.1620332015007597, 1.337334039972395, -0.019025815402225924, 2.5528599655908697, 1.0763191957508662, -2.692382898853627, 1.127953084406153, -3.7198019822119908, 5.5454854473234, -2.7102374093629393, 2.884939044810258, 1.0979767631011206, 1.8482124025208495, -0.9488074199780446, 0.34694950415066417, -0.5721720997959967, -1.5730264180565707, -1.7289359969253724, 1.32559163936583, -0.5374745094063185, -3.6858879406774463, 1.6089243790971623, -1.587088952008253, 2.063380426166741, 2.682447748140335, -2.4720985856562447, 0.8673890428075558, -0.9840172341134834, 2.5314024804606032, -1.8579485113671226, -2.420305457496337, -1.766506207172906, -1.6249547202315284, 3.4907427518759433, 0.2357952781028223, -2.395591584982506, -3.0882384354168417, 0.8669959255596231, -3.0996870479660155, 1.2859856293522474, -0.223437399629715, 1.5123155997825677, 2.6041393028063355, 2.4933213059651824, 0.036035289935395905, -1.0892893205613963, 3.0662177530560792, -2.5777710466616774, -0.8020900721990702, -2.712386878892958, -3.210980993873271, -2.491737169158156, -0.46157986593494255, 0.22292806116482838, 0.4918108558543877, -3.127279675950834, -2.040951707148213, -1.4045379938794362, 0.9961538526844782, -6.482726682723896, 3.8073645398120943, -1.1153560155969648, -3.13155519949859, 0.8668481789669852, 0.06968312587781125, 2.53401178967923, -3.2846131636960285, -1.1312035476857099, 0.24627936158340116, 4.461517621097272, 2.703670664265123, -0.39251629369987734, 0.3248915208972816, 4.616024508596643, 2.9776305715631497, -3.1122782456901326, -4.175846054322023, -2.9117216559473604, 3.814163271105306, 1.7866883175727355, -1.8760490155345941, -3.7469832015699267, 1.753863559923087, -0.818217307688226, -1.9537642532158321, 4.358819434794273, 1.7479728315173115, -1.723484913160758, -0.16178445018942275, 0.23867915597610107, -0.6832723309946496, 4.689924867102048, -2.539439465899163, 3.428142447691939, 0.882612552351526, -1.1748749272489627, 2.544174471605523, 0.6451374968082509, -2.773929582724479, -2.5372860558128183, 0.1977888052427304, -0.3283880486835048, 3.3021484394471314, 1.7974325273272462, 1.9924967066071637, -0.2408404721313032, -2.609163877534486, 2.5356020544521414, 1.1607942270658125, -4.638329164897339, 1.1778470970551507, -0.7529627018802738, -2.2602198626119026, -1.1696379372466057, -0.5022241902148072, -3.96010839741237, -3.2626808302385926, 0.06605919625472657, 0.09354234940098101, 2.9351132667496485, -3.7763343137361765, 5.186921398008139, 1.4373526771771188, -3.9379315228585785, -2.497605924226168, 1.0932556744806632, -2.791154132015374, 3.2882341435332294, -2.968553874379742, -4.349869395542996, -4.563796402649471, -1.865538939099537, 3.96247673844571, 1.0201032359951188, -2.3100654443048407, 1.3412994293434424, -0.132661915283051, -1.4637359378080796, 3.1947936260221, -2.266142784265044, 3.4399362817245, 1.995176517448499, 1.3944483712761315, 3.44503576767969, -1.0504152177814892, -3.2198097015643965, -4.768554995476742, 1.0199370602026223, -1.9777561135074218, 1.9310360154728248, 3.1995752114731286, 0.15233548765349642, 2.37928145338244, -2.61004081630492, -1.168825893941651, -3.022625909759756, -0.3466624250835489, 1.0220320666590341, -2.4114756258211596, -1.8836454846889625, 1.7503448052110657, 4.383583245686888, -1.3176913980107448, 3.653753963164082, 3.5379686513810538, -3.578577515026968, 1.5163268952993283, 2.2896598792433, 1.4206698895342735, -0.03471507676850354, 1.1474855122727379, 2.9794640679842326, -1.2298812408261715, -1.735574728973435, -3.5256813728396565, 4.409923079079624, -1.2581470161095132, 1.1886349660584257, 2.1413018565820474, 0.2521697718380416, 4.483794333518295, -2.212521494708166, -3.4766508891008225, -0.9854791860294284, 2.1096621923249907, 4.373517825097663, 3.0597533713232545, 0.48652917252293515, 0.6884180877255839, 2.541337717174886, -1.4043118183415304, -4.018644084325435, -1.8525137494565294, 3.162017699059439, -2.331434005882855, 0.6308709308769342, 0.4905995312523511, -0.8073603754688911, 4.027094799296693, 3.5504472172535864, -1.2905362962596842, 0.08700778980820174, -2.4928681219074464, 1.4359735267762839, 0.5450437170361263, 4.834159840083237, -6.182174932910704, 2.5137747677288087, -2.5421565268453303, 0.6825004749084448, -0.9692276951117935, -1.921312237014878, -2.1323741443954476, -0.5804140319332097, 3.688346286854874, 0.9565519532029946, 2.568983899525508, 2.5571312228094594, 1.5084353309454812, -2.1763589872617657, -4.048146497267456, 0.15352506971506347, -2.5390378854258917, 1.607725987551311, -5.057411112311457, 0.4493921139648043, -1.4157017032817638, 2.0759686737350047, 1.7219565545290427, 4.565415842905052, 0.33934859444726534, 5.703471634637147, -3.145352357829459, 0.2701669407229962, 0.023558745079462876, -0.36982057271282315, -3.4806702258045634, -3.5336188995706306, -2.1761995253115227, 1.9759837789705932, -2.5764253864384465, -2.316764904274521, 3.7820002323685897, 1.710017147112412, -2.747061236511561, -2.499384795977462, -2.3440613937640706, 1.5635456421043223, 4.038090429046455, -1.8726440368371435, 4.141748032797508, -0.4741563489506237, -1.9623508753439927, 3.9094575802663085, -1.9632962299971781, -1.6960122780423534, -0.33297651337681233, -0.827415841785501, -2.3398261913859084, -0.7496717685086943, 2.9045465290053554, 0.5118061451286399, 2.0571561044832247, 2.4420342769947525], \"z\": [-0.35531347156698423, 0.6777258865305044, -0.20953283318990626, 0.045154677657156986, -2.4206531878703883, -0.04135331691074221, 0.822298361341619, -0.7572982405244422, -0.12661596582376955, 0.016394259991668325, 0.9667139002115319, 1.2892729482948224, 2.5345813852797323, -0.05731094123511855, 0.5668655964579473, 1.2682024154773537, -0.21657522581704905, 1.2623518385020949, -0.28485017734297907, -1.8516444275193105, -0.011681126335218403, -0.09115576252163249, 1.6170249031929476, -0.10657209603039457, -2.1460076100461216, 0.28024985417109743, -0.654332587681935, -3.6353648900669797, -0.504579764134604, 0.010250097336389832, -0.273377089795874, -0.26266939609824547, -0.26901990732310016, 2.5131170812332324, 1.039333712392398, -0.6077979290384118, -2.002908958407718, -0.6035687750657627, 0.48422920305413236, 1.8649455494397518, 1.6691578200208848, -0.04813468858175472, 0.3708410131295311, -0.33966322376342567, 0.7025708226558092, -0.06623396005293346, 0.3372195646004807, 1.708616339815688, -0.478241253087517, 0.24351860355361532, 2.0661031796345135, -0.14849551826805713, -1.0010754654376326, 0.09692416628016741, 0.012038115643588308, -0.4342455844866448, -2.3857442230891417, 0.37532608138755913, 1.3642698731547591, 1.2442643428501317, 1.3206630472744842, 1.543802467082663, 1.5162523217148025, 0.2296634182672749, 4.299485608539929, -0.6033301213579838, -0.9974059910031142, 0.005865931596398736, -5.839445627561965, -0.26843452959601866, -0.9457651879638296, 1.4988827405425704, 5.772759492294177, -1.3946972898589969, -1.3439097614606277, 0.565226212988587, 3.461263647862684, 0.12554501873040907, 0.458995999449233, 0.8241340837584085, -2.4140231346198817, -0.6573097125955927, 0.6216951597581082, -1.9541368565125825, 1.717183670762076, -1.3705617426745904, 0.4864555138854684, 0.15196666285982116, -0.5055103428231665, 0.6435130984348552, 0.05912210355838175, -0.5854652969813754, -2.840227081873298, 0.6698476669714056, 1.0671071112091246, -1.6421967922990852, 4.539561059503161, 1.0776720965009747, 0.19129627401812538, 0.5168581012961905, 3.967646279428569, -0.2537192903017379, 0.6416236770185677, -0.7753689176682875, 3.5098298521368148, -1.5095647219618529, 0.6975092684514553, -1.055705093038466, -3.289080055497492, 1.1742772349070516, 0.6692160979458531, 1.3126784035287773, 2.0944337389986507, 1.2694818424169838, -0.604241794298773, -0.4115232976555821, -0.5968985968877325, -0.8105766028802628, 0.6838908743124905, 0.6454956800230902, -0.46259349764667035, -0.27902924040042476, -0.26249993840333213, 0.0425865386981706, -1.3918222433883654, -0.05957316799169612, 0.3500094967310084, -1.1646069811958746, 2.7724875345927598, -0.5511639438283712, 0.03882666303050273, -0.5672484887114124, 5.27959429795571, -0.9526666575029451, -0.13821275878333758, -0.3638535016476721, 0.2601963617626222, 0.0037876914227796725, 0.31634240965093946, 1.2830210950955476, 4.41492144565117, 0.16783468717863592, 0.021107728734321405, 0.6814173866325244, 2.630446398440564, -0.17670271446799987, -0.11001160779094153, 1.8359711672259313, 2.5068056469815323, 0.5980327036988423, -1.0782365401619574, 1.1628563036811868, -1.0495756184781146, 1.8105243715817112, -0.44261210967250625, 1.6908413382345981, -3.3059751468335525, 0.7279544823486102, 0.3751041873368233, -0.13404881937236743, -2.3527700304831862, 0.1505254005854181, 0.9174873038600516, -0.8624839126514054, 0.018270738913680046, -0.07243887943710622, 0.9396166095175024, -0.3221262312714341, 1.6648777904283643, 0.0289957894905985, 0.6593531646937161, 0.028868236363300957, 3.0662920480069786, 0.5295923396952134, 2.162354866475374, 1.3155672175661497, -2.651035566648835, -0.4297144898992453, 0.9788536705565654, -1.7406561205163489, -6.483300665778605, 0.8673508255008959, -1.1022656054797948, -0.7545848321794022, 1.7105338967727526, -0.922558312882581, -1.916095183801276, -0.200087125591673, 3.6197266290194543, -0.0392448498953175, -1.9612418568128043, 0.2991688275409537, -3.1044396779524615, 0.8149215569883757, 0.7187289287607286, 0.8371569598472952, -0.3847972858140272, -0.5518560082240908, -1.3194539498742073, 0.02648747663157424, -3.7670327956814886, 0.14608842760717172, -0.7421019335955632, -1.951499257793606, 0.6479331602542197, -1.5464127964731904, 0.016181222030627503, -1.9866783659500968, -1.1790274620233405, -1.5619667670613728, 1.9079511898440673, 0.36744214390215196, 0.6263860328871323, -0.16862231426560342, -0.09042479909258466, 0.018014183544561097, -4.149581721178471, -0.06166717382959541, 0.3465203082474408, 0.17407835308095293, 0.39377471020461974, 1.1583677985645346, 0.05493636322808915, -1.2839584610880588, -5.110753429585545, -0.1514349874222577, 0.04390814211261279, -0.5268981344979107, -3.949708124218976, 0.42317801428042207, -1.0420912671054006, 0.07027007802502903, -2.3397604391137232, 0.008759218074700401, 1.356232125053572, 1.3282697490160298, 2.9863376453100154, 0.0026178288809656793, 0.8589387575626242, -1.0012504373419362, -2.928291099869751, 0.8304749439653883, -0.06340109456778725, -1.5226285060927849, 2.0443228363854944, 0.15547225867840525, -1.8523272290242734, 0.46688027607388954, 1.1685676530873474, 1.1168680140005594, -0.36365927831612677, -1.1816578018498884, 2.711717516305036, -1.0759005259460726, 1.8592349501772867, 0.11229483469313571, -0.6558393683568663, -0.8189914529075989, 0.34356738477448084, -0.03082798636911512, 2.72389849947292, -0.8255926340430914, 2.1684132053633616, 1.4488511106270585, 0.0478842750365347, 1.17027990776739, -0.6610329922647706, 1.6095949138735013, -2.209632670482124, 0.4300666012674167, 0.44272184395053343, 1.403898176190047, 2.9870403531022984, -0.7512959365530045, -0.23916193346547868, -1.843679498577987, -3.6251176172076605, 0.11988089282972506, 1.5910516987388166, 0.04742530510776131, -0.21346141342166697, 0.593547454398, 1.2655492211830053, -1.102587285027451, 0.2560027802299536, 0.15978729842629436, 0.1746328802985315, 0.482110768405719, -1.8605055069016052, 1.2472628293534296, -0.4206278095814442, 0.4614016744234762, 2.7755904460709266, -0.5314474244756414, 0.615616991371997, -0.016912009513263646, 4.136590253990664, 0.8219978428236722, 1.3798772455645079, -1.230510008646596, 0.08881545977827456, 0.07874983101248485, 0.2171105569794806, -0.18339145723488437, -3.953699853891021, 0.5433589585884274, 0.9880191959073336, -1.1130899667451986, -0.46573853517177316, 0.05013365424049855, 0.044217481527646756, -1.5683976345994615, -2.3162503803872285, -0.8485920304797725, 0.009887438360011947, -0.20195749393566872, 0.17492818215551026, 0.774370079668051, -0.7014112969594942, -0.5038998113015014, 5.307241911529212, -0.758451381436096, -0.4964239560146786, 1.0083767174628577, -5.6323283469861325, -0.2436433031810534, -0.03718537391094323, -0.7902856210675734, -1.3961035845130716, 0.12455709205545003, 0.6468809993111468, -0.43773484815092895, -4.938456490739519, 0.5479899357239174, -0.4881931609068813, 0.015576630996436828, -2.5302122299731806, 0.3489728635159925, -0.09570247642541017, -0.4889571476579747, 1.465346461905039, -0.3541853987785077, -0.38282942255835023, -1.1961751831492908, -3.3148868529900284, 0.6232465896282957, 0.832410681254453, -0.2640773203781825, 2.610019270971725, 0.4296964964106342, 0.8324816762134924, 0.0009304891452709452, -4.26730651642871, -0.08720388748660872, -0.5380678393027465, 0.03924413131572679, 2.4080280912876098, -0.040538714937009446, 1.6473660644576027, -0.11794350346261528, 3.403124639470172, -1.0773434099873302, 0.6540738479587888, 1.531033436694918, 4.00317223508611, 2.8210097835099526, 0.9640666170868982, -3.1112788837083927, -1.344944422803581, 2.5105238313902416, 0.420080402255116, 1.9336001059889307, 1.068105795979851, -1.8385625333428253, -1.7967097459286867, 1.8184817412985876, 3.7491169793842594, -1.951367842113571, -2.4247907605503216, -5.221379897483157, -0.11874412789873313, 0.40736567777256844, -0.9040560308269653, -0.5923263576193054, -4.068253293738102, -1.8508953399579635, 0.917653995870312, -5.651141450607896, 0.22558023497696567, -1.0264193835566757, -2.0822838827096204, -3.8629439159595145, 3.6502993074870904, 2.3542925868640814, 1.364261464393484, -1.1215726676603517, -2.494266604942267, -4.531269687122927, 2.000551769969412, 0.9471635832964266, 2.2179665101909904, 1.3814535556723533, -2.9741273539864688, 3.6025106394434303, -0.052805366228806536, -0.5728416960877725, 2.406716343444264, 2.3112593533674106, -3.0572747076641926, 0.7365307752101564, -3.0184301059986627, 2.7726673677186966, -0.808138369227064, -3.8705065997744517, -2.5137018291687183, 1.6342277885096164, -1.4479150388276418, 2.874726769178214, 1.9905637656000041, -0.9889271596526404, -0.06338674651316369, 3.514576293344007, 1.584829884930283, -1.9366928816828313, 2.9325645585814675, 0.6154754418012238, -0.2653173185090628, 3.0181853959754394, 4.628886530119361, 3.674927773848448, 1.286778371799913, 1.5882254315005213, -0.5016858432707226, 3.727197522596411, -0.7686515570734737, 1.9713235810243985, 2.99572815825907, 1.7790585481255496, -3.338045137422692, 1.8923163980002615, -1.75292687451143, 2.9945643415111673, 2.4353710234978116, -2.567864049490686, -0.8425367320045283, 1.3055811840602107, -3.4701045026812958, 2.615318319039739, -2.7904174989738717, -1.3367646728121758, 2.1899623193521807, 0.5653618342787581, -0.41993524679237054, -0.2496010431946734, -7.202718858151961, 2.2269167712844777, -1.986401186251954, 3.8925543774942692, 1.4141991570430406, 2.185882913850595, -2.8837655881698407, 0.36390171079050004, 0.3347077471251091, 0.7153959328127237, 2.3360066983050483, -3.48064994023026, 3.7478601154456443, 3.1515330700616233, -0.58069259178653, -2.6704665712649263, 3.5808142601274255, -2.0540516633448327, 1.6443443521770091, 2.413125440457457, 2.7168609473384824, -0.2068637962355733, 0.8239636673882337, 0.9794878571819664, 0.8798130397354799, -0.37756048048936747, -0.298272787349739, -1.7444957095299247, 4.877165068854727, -1.2560313936316914, 2.918309961487624, -3.303743633108573, 4.662041488598643, -2.1924194836342163, -2.7729016966043765, -1.793455168032716, -3.5357931278725094, 2.6749485449758135, 3.089706692321196, 2.1040922823331756, -0.6574478610948292, -1.3568023127497275, -0.6004803522135578, -0.7135212829301596, -1.5969945355670454, -4.348399259665122, 3.0048001303829355, 3.0242906048909375, 2.9831806210036946, 1.0976930113017294, -1.391404786446225, -0.6582039372087553, 1.1269855083910445, 0.0864768687455212, 3.5207968072570246, -0.3869869825746559, 2.1040628385258286, -2.826461040955081, 2.188552393797245, -2.987842011671396, -2.4029819708735936, 1.3593948820336341, -2.5862072467836446, 2.275875293786672, 2.7554204789720007, -3.825826377720669, -1.2226337953005026, -0.5709602983688431, -0.3478370527368893, 3.43841816571029, -4.637137560422887, -0.7839858302867923, 0.06836492183290034, 4.619023179449109, 0.8840469402540462, -1.7108767282971955, -2.116715032045294, 1.966348968061612, -2.6779079643534676, -3.156632547246943, -4.614811824278258, 3.3922191302541496, -2.262507711550273, 2.1572093056480024, -2.5658469089166696, 1.3949420978678941, 2.565306645074423, 1.509767704870607, 2.325116316995868, 1.630236496837183, -0.8931149277709276, -0.8505293995468454, 2.9214316320943796, 1.7306706465983774, 3.6491478082165028, -1.8634243653177844, 1.306898772922891, -0.4354295805768932, 0.7313412156986229, -2.0710738092251186, 3.897829513495205, -1.7602861437833515, -3.5510253149963638, 3.3636558884409125, -0.38142527269575544, 2.326551060454298, -1.7720347715228721, 2.3649041165879567, 2.8559469687317374, -1.960239874141158, 1.6458504147875743, 2.93477712693421, 2.024700491862389, 0.11147867969432121, -2.343343203675426, 3.7382215465575515, 2.2412679290695627, 2.994104259917402, 2.2007237264074146, -1.4570861789290193, -3.0393078220620855, -3.050642030040429, 2.5568624291125253, 1.454364016637675, -1.0569589105457151, -3.9048880890435806, 3.0890994867961235, -0.6453088890599745, -1.916587312709547, 0.49553330292372294, 4.675732859692113, -1.6721027295961406, 0.7721944703177341, -2.3479005737891425, -2.6512195739937394, -2.0936624237783183, -2.6115283362295143, -1.8325799875348905, -2.544241001524061, -2.6763203984739294, -0.024389270477659774, -0.2027968596306624, -0.08293323607478721, 3.5784227253842413, 1.2997768069293119, -3.5401817687778134, -3.0103717690568903, -4.985953092827621, -4.256922967490878, 1.9077048165398782, -2.481166856236908, 2.160002677131222, -0.042910855369502295, -1.1893513322824338, -0.7771834809169708, -3.014346473492267, -0.75686632829856, 2.158541037871299, 5.275323152645222, -0.6626026211743128, -2.8446461136967094, 3.083458696643936, -2.0506095589117384, 0.7454275443389742, -0.697593805148865, 0.3315288615492791, -3.3004774732449627, -1.4904783576669742, 0.5138848168294539, 2.3492395268445234, 0.15197432239586536, -1.8217670272744297, -2.7397276164037665, 2.382251879621614, 2.0008473749706135, 3.4636456684292636, 0.07741608553950456, 2.529521810737265, -5.604112603548497, 1.218035274863617, 2.28968480927008, -0.9247305087852485, -6.070986591914866, 2.3629316395213236, 1.4850766497873795, 1.1852133616858982, -0.33515847758941425, -5.385084419486567, 1.3734299446353166, -3.592483729295716, -0.3349733096359226, 3.280310908394365, -0.8639088316935273, -0.8156892629584517, 2.7879675727700084, -2.1720345488540937, 0.45574919063819364, -0.6326454686651912, 2.1132085541322243, -0.41743178308549045, -3.677813372939223, -2.8577975084104645, 2.265628922445073, 1.178429970470615, -2.354405225596376, 2.740292193669738, 2.1820135301617976, 0.8273017202432514, -3.0773586955585577, 0.9366022638306084, -1.5164362409183938, 1.7025432487577072]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 0\", \"marker\": {\"color\": \"rgb(31, 119, 180)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 0\", \"scene\": \"scene4\", \"showlegend\": false, \"text\": [\"0_l_0_m-0_2.4-1_0.58-2_0.67-3_0.97\", \"1_l_0_m-0_0.19-1_0.26-2_0.99-3_0.5\", \"2_l_0_m-0_2.09-1_0.3-2_0.75-3_0.13\", \"3_l_0_m-0_0.04-1_0.73-2_1.31-3_0.4\", \"4_l_0_m-0_0.59-1_0.13-2_0.67-3_0.97\", \"5_l_0_m-0_0.66-1_0.05-2_0.18-3_0.03\", \"6_l_0_c_1_2_3-0_0.94-1_0.1-2_0.23-3_0.3\", \"7_l_0_c_1_2_3-0_0.21-1_0.11-2_0.01-3_1.4\", \"8_l_0_c_1_2_3-0_0.22-1_0.75-2_1.82-3_0.33\", \"9_l_0_c_1_2_3-0_0.55-1_0.67-2_0.33-3_0.39\", \"10_l_0_c_1_2_3-0_0.37-1_0.75-2_0.7-3_1.43\", \"11_l_0_c_1_2_3-0_1.46-1_0.99-2_0.23-3_0.79\", \"12_l_0_c_1_2_3-0_1.6-1_0.29-2_1.48-3_0.06\", \"13_l_0_c_1_2_3-0_0.09-1_0.85-2_0.86-3_0.09\", \"14_l_0_c_1_2_3-0_1.43-1_0.86-2_0.81-3_0.59\", \"15_l_0_c_0_1_2-0_0.65-1_0.78-2_0.13-3_1.35\", \"16_l_0_c_1_2_3-0_0.52-1_0.31-2_0.58-3_0.24\", \"17_l_0_c_0_1_2-0_0.65-1_0.04-2_0.07-3_1.46\", \"18_l_0_c_1_2_3-0_0.4-1_0.48-2_0.96-3_1.37\", \"19_l_0_c_0_1_2-0_0.3-1_0.61-2_1.07-3_0.03\", \"20_l_0_c_1_2_3-0_0.01-1_0.54-2_1.43-3_1.4\", \"21_l_0_c_0_1_2-0_0.58-1_1.21-2_0.22-3_0.94\", \"22_l_0_c_1_2_3-0_0.53-1_0.6-2_0.85-3_0.0\", \"23_l_0_c_0_1_2-0_0.34-1_1.06-2_0.53-3_1.21\", \"24_l_0_c_1_2_3-0_0.65-1_1.44-2_1.2-3_0.0\", \"25_l_0_c_0_1_2-0_0.29-1_0.01-2_0.62-3_1.62\", \"26_l_0_c_1_2_3-0_0.21-1_0.41-2_1.81-3_0.91\", \"27_l_0_c_0_1_2-0_0.01-1_0.38-2_0.09-3_1.22\", \"28_l_0_c_1_2_3-0_0.29-1_0.07-2_0.25-3_0.56\", \"29_l_0_c_0_1_2-0_0.11-1_0.27-2_0.76-3_0.72\", \"30_l_0_c_1_2_3-0_1.58-1_0.22-2_1.64-3_0.24\", \"31_l_0_c_0_1_2-0_0.04-1_1.18-2_0.57-3_1.1\", \"32_l_0_c_1_2_3-0_0.06-1_1.54-2_0.54-3_0.29\", \"33_l_0_c_0_1_2-0_0.09-1_0.35-2_0.08-3_0.59\", \"34_l_0_c_1_2_3-0_0.75-1_0.26-2_0.42-3_0.61\", \"35_l_0_c_0_1_2-0_0.94-1_0.33-2_1.08-3_0.47\", \"36_l_0_c_1_2_3-0_0.84-1_0.21-2_1.76-3_1.26\", \"37_l_0_c_0_1_2-0_1.06-1_0.55-2_0.31-3_0.36\", \"38_l_0_c_1_2_3-0_0.31-1_0.51-2_0.77-3_0.43\", \"39_l_0_c_0_1_2-0_0.89-1_0.11-2_0.37-3_2.67\", \"40_l_0_c_1_2_3-0_0.16-1_0.53-2_0.07-3_0.17\", \"41_l_0_c_0_1_2-0_0.15-1_0.07-2_0.3-3_0.1\", \"42_l_0_c_1_2_3-0_0.02-1_0.33-2_1.0-3_0.26\", \"43_l_0_c_0_1_2-0_0.44-1_2.02-2_0.01-3_0.49\", \"44_l_0_c_1_2_3-0_0.16-1_0.12-2_0.27-3_0.53\", \"45_l_0_c_0_1_2-0_0.37-1_1.51-2_0.7-3_0.58\", \"46_l_0_c_1_2_3-0_1.76-1_0.68-2_0.25-3_1.71\", \"47_l_0_c_0_1_2-0_0.07-1_1.64-2_0.35-3_1.54\", \"48_l_0_c_1_2_3-0_1.98-1_0.69-2_0.38-3_0.29\", \"49_l_0_c_0_1_2-0_1.46-1_0.1-2_0.18-3_1.28\", \"50_l_0_c_0_1_3-0_0.29-1_0.58-2_0.2-3_0.97\", \"51_l_0_c_1_2_3-0_1.21-1_1.03-2_0.61-3_0.15\", \"52_l_0_c_0_1_2-0_1.45-1_1.34-2_2.56-3_1.74\", \"53_l_0_c_0_1_3-0_0.12-1_0.29-2_0.32-3_0.28\", \"54_l_0_c_1_2_3-0_1.06-1_0.32-2_0.19-3_0.44\", \"55_l_0_c_0_1_2-0_0.69-1_0.08-2_0.6-3_0.98\", \"56_l_0_c_0_1_3-0_0.21-1_0.27-2_0.12-3_0.78\", \"57_l_0_c_1_2_3-0_0.66-1_0.58-2_0.37-3_0.95\", \"58_l_0_c_0_1_2-0_0.06-1_0.7-2_1.37-3_0.21\", \"59_l_0_c_0_1_3-0_0.09-1_0.71-2_0.25-3_0.08\", \"60_l_0_c_1_2_3-0_0.4-1_1.02-2_1.07-3_0.64\", \"61_l_0_c_0_1_2-0_0.4-1_0.66-2_1.37-3_0.98\", \"62_l_0_c_0_1_3-0_0.85-1_0.29-2_0.31-3_0.27\", \"63_l_0_c_1_2_3-0_0.47-1_0.97-2_1.26-3_1.31\", \"64_l_0_c_0_1_2-0_0.46-1_0.33-2_0.26-3_0.79\", \"65_l_0_c_0_1_3-0_0.05-1_0.98-2_0.39-3_0.67\", \"66_l_0_c_1_2_3-0_1.36-1_0.49-2_0.24-3_0.73\", \"67_l_0_c_0_1_2-0_0.45-1_0.59-2_0.05-3_0.12\", \"68_l_0_c_0_1_3-0_0.34-1_0.77-2_0.08-3_0.6\", \"69_l_0_c_1_2_3-0_1.25-1_0.13-2_0.66-3_0.67\", \"70_l_0_c_0_1_2-0_0.87-1_1.32-2_0.03-3_0.57\", \"71_l_0_c_0_1_3-0_0.29-1_0.19-2_0.02-3_0.83\", \"72_l_0_c_1_2_3-0_1.65-1_0.76-2_0.76-3_0.04\", \"73_l_0_c_0_1_2-0_0.37-1_0.63-2_0.83-3_0.66\", \"74_l_0_c_0_1_3-0_0.19-1_0.05-2_0.12-3_0.06\", \"75_l_0_c_1_2_3-0_0.71-1_0.28-2_0.06-3_0.68\", \"76_l_0_c_0_1_2-0_0.21-1_0.0-2_0.53-3_2.45\", \"77_l_0_c_0_1_3-0_1.44-1_0.5-2_0.0-3_0.43\", \"78_l_0_c_1_2_3-0_0.17-1_1.56-2_1.18-3_0.62\", \"79_l_0_c_0_1_2-0_0.0-1_0.5-2_0.03-3_1.05\", \"80_l_0_c_0_1_3-0_0.03-1_0.62-2_0.13-3_1.33\", \"81_l_0_c_1_2_3-0_1.59-1_0.65-2_0.23-3_0.77\", \"82_l_0_c_0_1_2-0_0.38-1_1.27-2_0.54-3_0.72\", \"83_l_0_c_0_1_3-0_0.43-1_0.15-2_0.01-3_1.47\", \"84_l_0_c_1_2_3-0_0.5-1_0.92-2_0.58-3_0.3\", \"85_l_0_c_0_1_2-0_0.25-1_1.29-2_0.33-3_0.06\", \"86_l_0_c_0_1_3-0_1.32-1_0.01-2_0.39-3_0.06\", \"87_l_0_c_1_2_3-0_0.14-1_0.51-2_0.05-3_1.1\", \"88_l_0_c_0_1_2-0_0.04-1_0.08-2_0.73-3_0.3\", \"89_l_0_c_0_1_3-0_0.29-1_1.32-2_0.07-3_1.04\", \"90_l_0_c_1_2_3-0_0.23-1_0.23-2_0.16-3_0.38\", \"91_l_0_c_0_1_2-0_0.56-1_0.25-2_0.28-3_1.86\", \"92_l_0_c_0_1_3-0_0.05-1_0.06-2_0.34-3_0.47\", \"93_l_0_c_1_2_3-0_1.81-1_0.7-2_0.54-3_0.24\", \"94_l_0_c_0_1_2-0_0.4-1_0.7-2_0.46-3_1.08\", \"95_l_0_c_0_1_3-0_1.16-1_0.56-2_0.0-3_0.11\", \"96_l_0_c_1_2_3-0_0.71-1_0.83-2_0.32-3_0.84\", \"97_l_0_c_0_1_2-0_1.07-1_0.25-2_0.4-3_0.88\", \"98_l_0_c_0_1_3-0_0.53-1_0.17-2_0.08-3_0.71\", \"99_l_0_c_1_2_3-0_0.54-1_0.77-2_1.08-3_0.58\", \"100_l_0_c_0_1_2-0_0.03-1_0.6-2_0.81-3_1.08\", \"101_l_0_c_0_1_3-0_0.95-1_1.28-2_0.11-3_0.76\", \"102_l_0_c_1_2_3-0_0.96-1_0.25-2_0.45-3_0.72\", \"103_l_0_c_0_1_2-0_0.34-1_0.12-2_0.91-3_0.52\", \"104_l_0_c_0_1_3-0_1.02-1_1.91-2_0.14-3_0.91\", \"105_l_0_c_1_2_3-0_0.66-1_0.3-2_0.26-3_0.61\", \"106_l_0_c_0_1_2-0_0.06-1_0.24-2_1.09-3_0.37\", \"107_l_0_c_0_1_3-0_0.01-1_0.44-2_0.11-3_0.88\", \"108_l_0_c_1_2_3-0_0.24-1_0.16-2_0.07-3_0.82\", \"109_l_0_c_0_1_2-0_0.08-1_0.3-2_0.18-3_3.13\", \"110_l_0_c_0_1_3-0_0.02-1_0.48-2_0.14-3_0.79\", \"111_l_0_c_1_2_3-0_0.4-1_0.41-2_0.01-3_0.32\", \"112_l_0_c_0_1_2-0_0.83-1_0.06-2_0.37-3_1.63\", \"113_l_0_c_0_1_3-0_0.12-1_0.33-2_0.01-3_0.39\", \"114_l_0_c_1_2_3-0_1.37-1_0.44-2_0.25-3_0.13\", \"115_l_0_c_0_1_2-0_0.23-1_0.75-2_0.16-3_0.55\", \"116_l_0_c_0_1_3-0_0.91-1_0.42-2_0.15-3_0.79\", \"117_l_0_c_1_2_3-0_2.14-1_0.87-2_1.22-3_0.34\", \"118_l_0_c_0_1_2-0_0.07-1_1.32-2_0.35-3_1.08\", \"119_l_0_c_0_1_3-0_0.46-1_0.33-2_0.2-3_0.28\", \"120_l_0_c_1_2_3-0_0.97-1_0.19-2_0.71-3_0.65\", \"121_l_0_c_0_1_2-0_0.51-1_0.73-2_0.62-3_0.62\", \"122_l_0_c_0_1_3-0_0.04-1_0.36-2_0.36-3_0.39\", \"123_l_0_c_1_2_3-0_1.52-1_0.36-2_1.13-3_0.12\", \"124_l_0_c_0_1_2-0_0.88-1_0.49-2_0.41-3_0.06\", \"125_l_0_c_0_1_3-0_0.4-1_0.88-2_0.22-3_0.63\", \"126_l_0_c_1_2_3-0_2.36-1_0.67-2_0.25-3_0.6\", \"127_l_0_c_0_1_2-0_0.02-1_0.76-2_0.62-3_1.25\", \"128_l_0_c_0_1_3-0_0.43-1_0.28-2_0.37-3_0.23\", \"129_l_0_c_1_2_3-0_0.26-1_0.72-2_0.3-3_0.65\", \"130_l_0_c_0_1_2-0_0.62-1_0.12-2_0.88-3_0.08\", \"131_l_0_c_0_1_3-0_0.88-1_0.09-2_0.06-3_0.14\", \"132_l_0_c_1_2_3-0_2.15-1_0.28-2_0.77-3_0.65\", \"133_l_0_c_0_1_2-0_1.4-1_1.55-2_0.72-3_1.84\", \"134_l_0_c_0_1_3-0_0.15-1_2.36-2_0.14-3_0.01\", \"135_l_0_c_1_2_3-0_0.34-1_0.43-2_0.83-3_0.3\", \"136_l_0_c_0_1_2-0_1.45-1_1.47-2_0.74-3_1.76\", \"137_l_0_c_0_1_3-0_0.45-1_0.27-2_0.17-3_0.41\", \"138_l_0_c_1_2_3-0_1.76-1_0.12-2_0.96-3_0.52\", \"139_l_0_c_0_1_2-0_0.8-1_1.11-2_0.42-3_0.71\", \"140_l_0_c_0_1_3-0_1.32-1_0.48-2_0.2-3_0.41\", \"141_l_0_c_1_2_3-0_0.48-1_1.4-2_0.8-3_0.91\", \"142_l_0_c_0_1_2-0_0.96-1_0.63-2_0.07-3_0.91\", \"143_l_0_c_0_1_3-0_0.83-1_1.26-2_0.3-3_0.77\", \"144_l_0_c_1_2_3-0_0.96-1_0.6-2_1.68-3_0.75\", \"145_l_0_c_0_1_2-0_0.31-1_0.07-2_0.28-3_0.91\", \"146_l_0_c_0_1_3-0_0.57-1_0.95-2_0.1-3_0.79\", \"147_l_0_c_1_2_3-0_1.57-1_1.87-2_0.62-3_0.4\", \"148_l_0_c_0_1_2-0_0.54-1_0.37-2_0.2-3_0.36\", \"149_l_0_c_0_1_3-0_0.82-1_0.31-2_0.13-3_0.3\", \"150_l_0_c_1_2_3-0_0.76-1_1.0-2_0.17-3_0.09\", \"151_l_0_c_0_1_2-0_0.76-1_0.63-2_0.18-3_1.09\", \"152_l_0_c_0_1_3-0_0.12-1_0.21-2_0.03-3_0.46\", \"153_l_0_c_1_2_3-0_1.67-1_0.51-2_0.15-3_0.14\", \"154_l_0_c_0_1_2-0_1.85-1_0.59-2_0.94-3_1.0\", \"155_l_0_c_0_1_3-0_0.72-1_0.19-2_0.07-3_0.42\", \"156_l_0_c_1_2_3-0_1.53-1_0.67-2_0.32-3_0.21\", \"157_l_0_c_0_1_2-0_0.91-1_0.22-2_0.01-3_0.94\", \"158_l_0_c_0_1_3-0_0.99-1_0.07-2_0.03-3_0.44\", \"159_l_0_c_1_2_3-0_1.87-1_0.45-2_0.13-3_0.84\", \"160_l_0_c_0_1_2-0_0.55-1_1.68-2_0.5-3_0.43\", \"161_l_0_c_0_1_3-0_0.23-1_0.89-2_0.22-3_0.25\", \"162_l_0_c_1_2_3-0_1.95-1_1.36-2_0.13-3_0.41\", \"163_l_0_c_0_1_2-0_0.39-1_0.91-2_0.58-3_0.04\", \"164_l_0_c_0_1_3-0_0.43-1_0.7-2_0.47-3_0.35\", \"165_l_0_c_1_2_3-0_1.88-1_0.62-2_1.4-3_0.5\", \"166_l_0_c_0_1_2-0_0.84-1_0.23-2_0.5-3_0.61\", \"167_l_0_c_0_1_3-0_0.27-1_1.24-2_0.02-3_0.2\", \"168_l_0_c_0_2_3-0_0.51-1_0.24-2_0.22-3_0.84\", \"169_l_0_c_1_2_3-0_0.96-1_0.14-2_0.06-3_0.32\", \"170_l_0_c_0_1_2-0_0.33-1_0.19-2_0.67-3_2.43\", \"171_l_0_c_0_1_3-0_0.02-1_1.91-2_0.02-3_0.89\", \"172_l_0_c_0_2_3-0_0.09-1_0.06-2_1.76-3_0.25\", \"173_l_0_c_1_2_3-0_0.46-1_0.17-2_0.63-3_0.69\", \"174_l_0_c_0_1_2-0_0.86-1_0.33-2_1.69-3_0.15\", \"175_l_0_c_0_1_3-0_0.86-1_1.95-2_0.58-3_0.3\", \"176_l_0_c_0_2_3-0_0.67-1_0.61-2_0.09-3_0.5\", \"177_l_0_c_1_2_3-0_1.36-1_1.63-2_0.5-3_0.5\", \"178_l_0_c_0_1_2-0_0.88-1_0.68-2_0.48-3_0.37\", \"179_l_0_c_0_1_3-0_0.17-1_0.53-2_0.2-3_0.85\", \"180_l_0_c_0_2_3-0_1.02-1_0.15-2_0.51-3_0.09\", \"181_l_0_c_1_2_3-0_0.44-1_0.08-2_0.67-3_0.09\", \"182_l_0_c_0_1_2-0_0.35-1_0.12-2_0.43-3_1.1\", \"183_l_0_c_0_1_3-0_0.02-1_0.01-2_0.14-3_0.5\", \"184_l_0_c_0_2_3-0_1.02-1_0.39-2_0.25-3_0.71\", \"185_l_0_c_1_2_3-0_0.61-1_2.62-2_1.83-3_0.12\", \"186_l_0_c_0_1_2-0_0.19-1_0.78-2_0.11-3_0.31\", \"187_l_0_c_0_1_3-0_0.36-1_0.29-2_0.04-3_0.05\", \"188_l_0_c_0_2_3-0_0.59-1_0.17-2_0.17-3_0.34\", \"189_l_0_c_1_2_3-0_0.72-1_0.12-2_1.03-3_0.17\", \"190_l_0_c_0_1_2-0_1.44-1_0.38-2_0.15-3_0.07\", \"191_l_0_c_0_1_3-0_0.06-1_0.49-2_0.04-3_0.68\", \"192_l_0_c_0_2_3-0_0.62-1_0.13-2_0.58-3_1.0\", \"193_l_0_c_1_2_3-0_0.2-1_0.08-2_0.43-3_0.38\", \"194_l_0_c_0_1_2-0_0.18-1_0.63-2_0.38-3_1.89\", \"195_l_0_c_0_1_3-0_0.09-1_0.35-2_0.0-3_0.62\", \"196_l_0_c_0_2_3-0_1.4-1_0.35-2_0.3-3_0.2\", \"197_l_0_c_1_2_3-0_0.74-1_0.47-2_0.8-3_0.9\", \"198_l_0_c_0_1_2-0_0.22-1_0.56-2_0.48-3_0.35\", \"199_l_0_c_0_1_3-0_0.73-1_0.35-2_0.02-3_0.78\", \"200_l_0_c_0_2_3-0_1.41-1_0.19-2_0.63-3_1.05\", \"201_l_0_c_1_2_3-0_1.94-1_0.01-2_1.37-3_0.65\", \"202_l_0_c_0_1_2-0_0.97-1_0.5-2_1.42-3_0.01\", \"203_l_0_c_0_1_3-0_2.33-1_0.97-2_0.03-3_0.16\", \"204_l_0_c_0_2_3-0_0.12-1_0.0-2_2.7-3_0.77\", \"205_l_0_c_1_2_3-0_1.48-1_0.09-2_0.31-3_0.04\", \"206_l_0_c_0_1_2-0_1.15-1_0.42-2_0.23-3_0.03\", \"207_l_0_c_0_1_3-0_0.58-1_0.03-2_0.42-3_0.91\", \"208_l_0_c_0_2_3-0_0.28-1_0.1-2_0.57-3_0.67\", \"209_l_0_c_1_2_3-0_0.9-1_0.31-2_0.71-3_0.99\", \"210_l_0_c_0_1_2-0_0.5-1_0.4-2_0.07-3_0.66\", \"211_l_0_c_0_1_3-0_1.07-1_0.42-2_0.12-3_1.5\", \"212_l_0_c_0_2_3-0_0.67-1_0.0-2_0.73-3_0.15\", \"213_l_0_c_1_2_3-0_0.12-1_0.61-2_0.29-3_1.08\", \"214_l_0_c_0_1_2-0_0.5-1_0.87-2_1.62-3_0.17\", \"215_l_0_c_0_1_3-0_0.04-1_0.21-2_0.34-3_1.09\", \"216_l_0_c_0_2_3-0_0.07-1_0.09-2_1.18-3_0.13\", \"217_l_0_c_1_2_3-0_0.4-1_1.25-2_0.61-3_1.28\", \"218_l_0_c_0_1_2-0_0.54-1_0.84-2_0.73-3_0.02\", \"219_l_0_c_0_1_3-0_0.65-1_1.4-2_0.42-3_0.96\", \"220_l_0_c_0_2_3-0_1.47-1_0.02-2_0.06-3_0.47\", \"221_l_0_c_1_2_3-0_1.14-1_0.21-2_0.41-3_0.34\", \"222_l_0_c_0_1_2-0_0.02-1_0.2-2_0.76-3_0.11\", \"223_l_0_c_0_1_3-0_0.73-1_0.45-2_0.04-3_0.54\", \"224_l_0_c_0_2_3-0_0.04-1_0.21-2_1.64-3_0.35\", \"225_l_0_c_1_2_3-0_0.24-1_0.28-2_1.16-3_0.01\", \"226_l_0_c_0_1_2-0_0.09-1_0.19-2_0.75-3_0.98\", \"227_l_0_c_0_1_3-0_0.5-1_0.47-2_0.15-3_0.21\", \"228_l_0_c_0_2_3-0_0.98-1_0.13-2_0.45-3_0.22\", \"229_l_0_c_1_2_3-0_0.5-1_0.03-2_0.19-3_0.71\", \"230_l_0_c_0_1_2-0_0.39-1_0.04-2_1.28-3_1.12\", \"231_l_0_c_0_1_3-0_0.54-1_1.35-2_0.18-3_0.37\", \"232_l_0_c_0_2_3-0_0.62-1_0.53-2_1.59-3_0.61\", \"233_l_0_c_1_2_3-0_1.43-1_1.5-2_0.97-3_0.15\", \"234_l_0_c_0_1_2-0_0.2-1_0.03-2_0.34-3_2.92\", \"235_l_0_c_0_1_3-0_0.2-1_0.88-2_0.01-3_1.05\", \"236_l_0_c_0_2_3-0_1.07-1_0.44-2_0.1-3_0.54\", \"237_l_0_c_1_2_3-0_2.12-1_0.02-2_0.35-3_0.28\", \"238_l_0_c_0_1_2-0_1.17-1_0.81-2_0.51-3_0.79\", \"239_l_0_c_0_1_3-0_0.41-1_1.64-2_0.05-3_0.61\", \"240_l_0_c_0_2_3-0_0.13-1_0.21-2_0.33-3_0.27\", \"241_l_0_c_1_2_3-0_0.34-1_2.19-2_0.24-3_1.46\", \"242_l_0_c_0_1_2-0_0.12-1_0.33-2_0.06-3_0.3\", \"243_l_0_c_0_1_3-0_0.75-1_0.86-2_0.47-3_0.26\", \"244_l_0_c_0_2_3-0_0.56-1_0.2-2_0.13-3_0.65\", \"245_l_0_c_1_2_3-0_1.99-1_0.32-2_0.2-3_0.2\", \"246_l_0_c_0_1_2-0_0.11-1_0.36-2_0.08-3_0.34\", \"247_l_0_c_0_1_3-0_0.09-1_1.41-2_0.27-3_0.24\", \"248_l_0_c_0_2_3-0_0.17-1_0.45-2_0.48-3_0.06\", \"249_l_0_c_1_2_3-0_1.14-1_0.8-2_0.86-3_0.91\", \"250_l_0_c_0_1_2-0_0.29-1_0.65-2_0.57-3_1.26\", \"251_l_0_c_0_1_3-0_0.14-1_0.09-2_0.0-3_0.22\", \"252_l_0_c_0_2_3-0_0.99-1_0.05-2_0.62-3_0.63\", \"253_l_0_c_1_2_3-0_0.62-1_0.59-2_1.56-3_0.29\", \"254_l_0_c_0_1_2-0_0.32-1_0.96-2_0.2-3_0.33\", \"255_l_0_c_0_1_3-0_0.85-1_2.17-2_0.15-3_0.82\", \"256_l_0_c_0_2_3-0_0.93-1_0.08-2_0.33-3_1.44\", \"257_l_0_c_1_2_3-0_0.8-1_0.21-2_0.69-3_0.07\", \"258_l_0_c_0_1_2-0_0.41-1_1.63-2_0.11-3_0.71\", \"259_l_0_c_0_1_3-0_0.08-1_0.58-2_0.06-3_0.03\", \"260_l_0_c_0_2_3-0_0.7-1_0.33-2_0.21-3_0.14\", \"261_l_0_c_1_2_3-0_0.42-1_0.04-2_0.07-3_0.52\", \"262_l_0_c_0_1_2-0_1.92-1_1.55-2_0.71-3_0.32\", \"263_l_0_c_0_1_3-0_0.1-1_1.02-2_0.03-3_0.27\", \"264_l_0_c_0_2_3-0_1.06-1_0.0-2_0.03-3_1.53\", \"265_l_0_c_1_2_3-0_0.29-1_0.16-2_0.71-3_0.28\", \"266_l_0_c_0_1_2-0_0.68-1_0.79-2_0.03-3_0.28\", \"267_l_0_c_0_1_3-0_0.8-1_0.07-2_0.02-3_1.27\", \"268_l_0_c_0_2_3-0_0.19-1_0.02-2_0.02-3_1.22\", \"269_l_0_c_1_2_3-0_0.74-1_0.27-2_0.15-3_0.1\", \"270_l_0_c_0_1_2-0_1.19-1_0.32-2_0.27-3_2.91\", \"271_l_0_c_0_1_3-0_0.57-1_0.95-2_0.0-3_0.42\", \"272_l_0_c_0_2_3-0_0.8-1_0.05-2_0.01-3_0.07\", \"273_l_0_c_1_2_3-0_1.12-1_0.67-2_0.25-3_0.71\", \"274_l_0_c_0_1_2-0_0.41-1_1.62-2_0.2-3_0.33\", \"275_l_0_c_0_1_3-0_0.03-1_1.64-2_0.11-3_0.36\", \"276_l_0_c_0_2_3-0_0.08-1_0.03-2_0.88-3_0.72\", \"277_l_0_c_1_2_3-0_0.26-1_0.53-2_0.86-3_0.24\", \"278_l_0_c_0_1_2-0_0.33-1_0.27-2_0.03-3_1.37\", \"279_l_0_c_0_1_3-0_0.54-1_0.33-2_0.04-3_0.02\", \"280_l_0_c_0_2_3-0_0.02-1_0.16-2_0.1-3_0.26\", \"281_l_0_c_1_2_3-0_0.25-1_0.61-2_1.11-3_0.87\", \"282_l_0_c_0_1_2-0_0.93-1_0.81-2_0.65-3_0.53\", \"283_l_0_c_0_1_3-0_0.01-1_1.45-2_0.22-3_0.37\", \"284_l_0_c_0_2_3-0_0.4-1_0.24-2_0.76-3_0.36\", \"285_l_0_c_1_2_3-0_0.23-1_0.3-2_0.24-3_0.17\", \"286_l_0_c_0_1_2-0_0.08-1_0.51-2_0.26-3_0.01\", \"287_l_0_c_0_1_3-0_1.0-1_0.45-2_0.24-3_0.01\", \"288_l_0_c_0_2_3-0_1.7-1_0.06-2_0.42-3_0.1\", \"289_l_0_c_1_2_3-0_0.04-1_0.29-2_0.44-3_0.89\", \"290_l_0_c_0_1_2-0_1.22-1_0.8-2_0.19-3_1.34\", \"291_l_0_c_0_1_3-0_0.37-1_0.18-2_0.0-3_0.21\", \"292_l_0_c_0_2_3-0_0.19-1_0.07-2_0.69-3_0.52\", \"293_l_0_c_1_2_3-0_0.08-1_1.06-2_0.66-3_0.18\", \"294_l_0_c_0_1_2-0_0.42-1_0.59-2_0.54-3_0.64\", \"295_l_0_c_0_1_3-0_0.02-1_1.21-2_0.24-3_0.14\", \"296_l_0_c_0_2_3-0_0.7-1_0.16-2_0.01-3_0.05\", \"297_l_0_c_1_2_3-0_1.26-1_1.38-2_0.54-3_0.11\", \"298_l_0_c_0_1_2-0_0.5-1_1.73-2_0.77-3_0.27\", \"299_l_0_c_0_1_3-0_0.35-1_0.17-2_0.12-3_0.26\", \"300_l_0_c_0_2_3-0_1.88-1_0.01-2_0.15-3_0.36\", \"301_l_0_c_1_2_3-0_1.19-1_0.75-2_0.32-3_0.24\", \"302_l_0_c_0_1_2-0_1.03-1_0.57-2_0.27-3_1.16\", \"303_l_0_c_0_1_3-0_0.95-1_0.15-2_0.23-3_0.39\", \"304_l_0_c_0_2_3-0_0.49-1_0.1-2_1.35-3_0.5\", \"305_l_0_c_1_2_3-0_0.17-1_0.79-2_1.12-3_0.76\", \"306_l_0_c_0_1_2-0_0.39-1_0.49-2_1.38-3_0.59\", \"307_l_0_c_0_1_3-0_0.37-1_0.11-2_0.37-3_2.06\", \"308_l_0_c_0_2_3-0_0.7-1_0.03-2_0.27-3_1.07\", \"309_l_0_c_1_2_3-0_0.37-1_0.28-2_0.45-3_0.31\", \"310_l_0_c_0_1_2-0_1.05-1_0.85-2_0.1-3_1.13\", \"311_l_0_c_0_1_3-0_0.52-1_0.52-2_0.07-3_0.6\", \"312_l_0_c_0_2_3-0_0.45-1_0.57-2_0.81-3_0.1\", \"313_l_0_c_1_2_3-0_0.2-1_0.29-2_0.6-3_0.1\", \"314_l_0_c_0_1_2-0_0.56-1_0.12-2_0.17-3_1.17\", \"315_l_0_c_0_1_3-0_0.87-1_1.42-2_0.56-3_0.54\", \"316_l_0_c_0_2_3-0_0.42-1_0.18-2_0.06-3_0.21\", \"317_l_0_c_1_2_3-0_1.41-1_0.45-2_0.43-3_0.52\", \"318_l_0_c_0_1_2-0_0.34-1_0.39-2_0.55-3_0.14\", \"319_l_0_c_0_1_3-0_0.08-1_0.15-2_0.04-3_1.11\", \"320_l_0_c_0_2_3-0_0.48-1_0.0-2_0.73-3_0.07\", \"321_l_0_c_1_2_3-0_0.83-1_0.35-2_0.24-3_1.44\", \"322_l_0_c_0_1_2-0_0.55-1_0.22-2_1.33-3_0.45\", \"323_l_0_c_0_1_3-0_1.75-1_0.01-2_0.1-3_0.54\", \"324_l_0_c_0_2_3-0_0.17-1_0.05-2_0.19-3_1.14\", \"325_l_0_c_1_2_3-0_0.51-1_0.77-2_0.74-3_0.12\", \"326_l_0_c_0_1_2-0_0.42-1_0.67-2_0.01-3_0.33\", \"327_l_0_c_0_1_3-0_1.23-1_0.65-2_0.09-3_0.25\", \"328_l_0_c_0_2_3-0_0.16-1_0.05-2_0.73-3_0.51\", \"329_l_0_c_1_2_3-0_0.01-1_0.47-2_0.24-3_1.68\", \"330_l_0_c_0_1_2-0_0.14-1_0.48-2_0.21-3_0.24\", \"331_l_0_c_0_1_3-0_1.01-1_0.01-2_0.47-3_0.38\", \"332_l_0_c_0_2_3-0_0.59-1_0.13-2_0.94-3_0.17\", \"333_l_0_c_1_2_3-0_0.75-1_0.05-2_0.95-3_0.17\", \"334_l_0_c_0_1_2-0_0.66-1_0.71-2_0.15-3_0.8\", \"335_l_0_c_0_1_3-0_0.64-1_0.97-2_0.22-3_0.04\", \"336_l_0_c_0_2_3-0_0.43-1_0.03-2_0.55-3_0.38\", \"337_l_0_c_1_2_3-0_0.89-1_0.45-2_0.37-3_0.96\", \"338_l_0_c_0_1_2-0_0.71-1_0.6-2_0.43-3_1.02\", \"339_l_0_c_0_1_3-0_1.01-1_0.03-2_0.07-3_0.25\", \"340_l_0_c_0_2_3-0_0.36-1_0.2-2_0.6-3_0.12\", \"341_l_0_c_1_2_3-0_1.41-1_0.21-2_1.73-3_0.31\", \"342_l_0_c_0_1_2-0_0.83-1_0.47-2_0.45-3_0.57\", \"343_l_0_c_0_1_3-0_0.21-1_0.05-2_0.02-3_0.41\", \"344_l_0_c_0_2_3-0_0.03-1_0.13-2_0.87-3_0.0\", \"345_l_0_c_1_2_3-0_1.3-1_0.05-2_0.05-3_0.03\", \"346_l_0_c_0_1_2-0_0.18-1_0.63-2_0.8-3_1.07\", \"347_l_0_c_0_1_3-0_0.42-1_1.61-2_0.15-3_0.28\", \"348_l_0_c_0_2_3-0_0.37-1_0.2-2_0.67-3_0.46\", \"349_l_0_c_1_2_3-0_1.21-1_0.57-2_0.75-3_0.94\", \"350_l_0_c_0_1_2-0_0.42-1_0.43-2_0.08-3_0.78\", \"351_l_0_c_0_1_3-0_0.09-1_0.26-2_0.57-3_0.6\", \"352_l_0_c_0_2_3-0_0.41-1_0.18-2_0.02-3_1.65\", \"353_l_0_c_1_2_3-0_0.83-1_1.08-2_0.41-3_0.78\", \"354_l_0_c_0_1_2-0_0.53-1_0.11-2_0.03-3_0.95\", \"355_l_0_c_0_1_3-0_1.04-1_0.06-2_0.07-3_0.74\", \"356_l_0_c_0_2_3-0_0.82-1_0.25-2_0.51-3_1.48\", \"357_l_0_c_1_2_3-0_0.28-1_0.97-2_0.33-3_0.22\", \"358_l_0_c_0_1_2-0_0.96-1_0.21-2_0.55-3_0.51\", \"359_l_0_c_0_1_3-0_0.29-1_0.85-2_0.0-3_0.01\", \"360_l_0_c_0_2_3-0_0.37-1_0.0-2_0.27-3_0.11\", \"361_l_0_c_1_2_3-0_1.1-1_1.42-2_1.57-3_0.75\", \"362_l_0_c_0_1_2-0_0.1-1_0.1-2_0.19-3_0.72\", \"363_l_0_c_0_1_3-0_0.54-1_0.21-2_0.27-3_0.47\", \"364_l_0_c_0_2_3-0_0.0-1_0.18-2_0.99-3_0.57\", \"365_l_0_c_1_2_3-0_1.2-1_0.0-2_0.46-3_0.22\", \"366_l_0_c_0_1_2-0_0.04-1_0.79-2_0.58-3_2.26\", \"367_l_0_c_0_1_3-0_0.69-1_0.46-2_0.21-3_0.63\", \"368_l_0_c_0_2_3-0_0.84-1_0.25-2_0.01-3_1.58\", \"369_l_0_c_1_2_3-0_0.79-1_1.57-2_1.02-3_0.12\", \"370_l_0_c_0_1_2-0_1.37-1_0.08-2_0.38-3_0.02\", \"371_l_0_c_0_1_3-0_0.66-1_0.1-2_0.07-3_0.3\", \"372_l_0_c_0_2_3-0_0.04-1_0.01-2_0.83-3_0.49\", \"373_l_0_c_1_2_3-0_0.04-1_0.32-2_0.52-3_0.0\", \"374_l_0_c_0_1_2-0_0.17-1_1.52-2_1.11-3_0.93\", \"375_l_0_c_0_1_3-0_0.62-1_0.14-2_0.28-3_1.31\", \"376_l_0_c_0_2_3-0_0.05-1_0.34-2_0.67-3_1.07\", \"377_l_0_c_1_2_3-0_0.3-1_1.49-2_0.12-3_0.36\", \"378_l_0_c_0_1_2-0_0.96-1_0.08-2_1.15-3_0.16\", \"379_l_0_c_0_1_3-0_0.03-1_0.4-2_0.16-3_0.77\", \"380_l_0_c_0_2_3-0_0.88-1_0.03-2_0.54-3_0.18\", \"381_l_0_c_1_2_3-0_0.77-1_0.88-2_0.54-3_0.06\", \"382_l_0_c_0_1_2-0_0.27-1_0.49-2_0.58-3_0.33\", \"383_l_0_c_0_1_3-0_0.6-1_1.38-2_0.1-3_0.92\", \"384_l_0_c_0_2_3-0_0.01-1_0.12-2_0.47-3_0.42\", \"385_l_0_c_1_2_3-0_1.66-1_0.87-2_0.92-3_0.85\", \"386_l_0_c_0_1_2-0_0.25-1_0.02-2_0.35-3_1.3\", \"387_l_0_c_0_1_3-0_0.37-1_0.38-2_0.03-3_0.59\", \"388_l_0_c_0_2_3-0_0.31-1_0.01-2_0.2-3_0.06\", \"389_l_0_c_1_2_3-0_0.17-1_0.93-2_0.35-3_0.41\", \"390_l_0_c_0_1_2-0_1.91-1_0.61-2_0.7-3_0.0\", \"391_l_0_c_0_1_3-0_0.24-1_0.06-2_0.09-3_0.05\", \"392_l_0_c_0_2_3-0_0.16-1_0.03-2_0.09-3_0.36\", \"393_l_0_c_1_2_3-0_1.09-1_0.77-2_1.63-3_1.27\", \"394_l_0_c_0_1_2-0_0.14-1_0.11-2_0.28-3_0.78\", \"395_l_0_c_0_1_3-0_0.94-1_0.86-2_0.01-3_0.19\", \"396_l_0_c_0_2_3-0_0.27-1_0.08-2_0.67-3_0.05\", \"397_l_0_c_1_2_3-0_1.17-1_0.45-2_0.83-3_1.08\", \"398_l_0_c_0_1_2-0_0.41-1_0.24-2_0.81-3_1.91\", \"399_l_0_c_3-0_0.41-1_0.26-2_0.35-3_0.71\", \"400_l_0_r-0_0.43-1_0.04-2_0.59-3_0.83\", \"401_l_0_r-0_1.43-1_0.01-2_0.46-3_0.06\", \"402_l_0_r-0_0.78-1_0.36-2_0.11-3_0.63\", \"403_l_0_r-0_0.89-1_0.11-2_0.0-3_0.61\", \"404_l_0_r-0_1.52-1_0.16-2_0.04-3_1.25\", \"405_l_0_r-0_0.0-1_0.05-2_0.23-3_0.48\", \"406_l_0_r-0_1.03-1_0.04-2_0.01-3_1.2\", \"407_l_0_r-0_0.63-1_0.27-2_0.04-3_0.47\", \"408_l_0_r-0_0.12-1_0.23-2_0.0-3_1.16\", \"409_l_0_r-0_1.4-1_0.15-2_0.32-3_0.87\", \"410_l_0_r-0_0.25-1_0.21-2_0.12-3_1.27\", \"411_l_0_r-0_0.1-1_0.07-2_0.28-3_1.17\", \"412_l_0_r-0_0.01-1_0.1-2_0.06-3_2.13\", \"413_l_0_r-0_0.58-1_0.15-2_0.1-3_0.14\", \"414_l_0_r-0_1.17-1_0.07-2_0.32-3_0.67\", \"415_l_0_r-0_0.33-1_0.14-2_0.16-3_0.79\", \"416_l_0_r-0_0.15-1_0.03-2_0.02-3_0.65\", \"417_l_0_r-0_0.26-1_0.02-2_0.27-3_0.76\", \"418_l_0_r-0_0.76-1_0.12-2_0.01-3_2.09\", \"419_l_0_r-0_0.62-1_0.17-2_0.04-3_0.15\", \"420_l_0_r-0_1.9-1_0.36-2_0.24-3_1.36\", \"421_l_0_r-0_0.54-1_0.04-2_0.07-3_0.0\", \"422_l_0_r-0_1.29-1_0.71-2_0.43-3_0.64\", \"423_l_0_r-0_0.16-1_0.19-2_0.07-3_1.77\", \"424_l_0_r-0_0.97-1_0.17-2_0.11-3_0.38\", \"425_l_0_r-0_0.19-1_0.2-2_0.01-3_1.43\", \"426_l_0_r-0_0.15-1_0.18-2_0.19-3_2.21\", \"427_l_0_r-0_0.79-1_0.07-2_0.15-3_2.13\", \"428_l_0_r-0_0.91-1_0.59-2_0.15-3_1.07\", \"429_l_0_r-0_1.36-1_0.0-2_0.22-3_0.42\", \"430_l_0_r-0_0.25-1_0.01-2_0.05-3_0.51\", \"431_l_0_r-0_1.29-1_0.02-2_0.0-3_0.26\", \"432_l_0_r-0_1.09-1_0.0-2_0.05-3_0.01\", \"433_l_0_r-0_0.0-1_0.23-2_0.01-3_0.02\", \"434_l_0_r-0_1.61-1_0.01-2_0.21-3_1.94\", \"435_l_0_r-0_0.5-1_0.16-2_0.01-3_1.22\", \"436_l_0_r-0_0.19-1_0.04-2_0.04-3_1.15\", \"437_l_0_r-0_1.12-1_0.22-2_0.05-3_0.29\", \"438_l_0_r-0_0.7-1_0.01-2_0.1-3_0.21\", \"439_l_0_r-0_1.87-1_0.0-2_0.29-3_0.19\", \"440_l_0_r-0_0.88-1_0.25-2_0.04-3_1.33\", \"441_l_0_r-0_0.27-1_0.17-2_0.39-3_1.46\", \"442_l_0_r-0_1.66-1_0.02-2_0.3-3_0.96\", \"443_l_0_r-0_0.28-1_0.01-2_0.01-3_1.64\", \"444_l_0_r-0_2.76-1_0.06-2_0.04-3_0.52\", \"445_l_0_r-0_0.13-1_0.1-2_0.0-3_0.35\", \"446_l_0_r-0_0.31-1_0.28-2_0.35-3_0.77\", \"447_l_0_r-0_0.48-1_0.02-2_0.25-3_0.45\", \"448_l_0_r-0_0.77-1_0.06-2_0.02-3_0.49\", \"449_l_0_r-0_2.3-1_0.37-2_0.14-3_0.82\", \"450_l_0_r-0_0.28-1_0.26-2_0.11-3_1.25\", \"451_l_0_r-0_0.07-1_0.02-2_0.11-3_1.75\", \"452_l_0_r-0_0.74-1_0.04-2_0.29-3_0.75\", \"453_l_0_r-0_2.61-1_0.19-2_0.09-3_1.02\", \"454_l_0_r-0_0.73-1_0.03-2_0.17-3_0.55\", \"455_l_0_r-0_2.01-1_0.18-2_0.27-3_0.13\", \"456_l_0_r-0_1.77-1_0.02-2_0.18-3_0.93\", \"457_l_0_r-0_0.83-1_0.11-2_0.48-3_0.8\", \"458_l_0_r-0_0.52-1_0.05-2_0.36-3_0.56\", \"459_l_0_r-0_0.53-1_0.41-2_0.06-3_0.49\", \"460_l_0_r-0_0.83-1_0.43-2_0.26-3_1.05\", \"461_l_0_r-0_0.06-1_0.12-2_0.03-3_1.44\", \"462_l_0_r-0_0.34-1_0.0-2_0.34-3_2.22\", \"463_l_0_r-0_1.34-1_0.03-2_0.02-3_0.31\", \"464_l_0_r-0_1.77-1_0.34-2_0.26-3_0.85\", \"465_l_0_r-0_0.66-1_0.07-2_0.12-3_0.77\", \"466_l_0_r-0_0.49-1_0.01-2_0.12-3_0.24\", \"467_l_0_r-0_0.8-1_0.18-2_0.02-3_0.09\", \"468_l_0_r-0_0.27-1_0.14-2_0.13-3_0.22\", \"469_l_0_r-0_0.29-1_0.0-2_0.14-3_1.01\", \"470_l_0_r-0_0.07-1_0.45-2_0.15-3_0.3\", \"471_l_0_r-0_0.06-1_0.2-2_0.24-3_1.57\", \"472_l_0_r-0_0.42-1_0.02-2_0.01-3_1.08\", \"473_l_0_r-0_0.47-1_0.62-2_0.43-3_1.78\", \"474_l_0_r-0_0.71-1_0.11-2_0.06-3_1.44\", \"475_l_0_r-0_0.33-1_0.08-2_0.15-3_1.09\", \"476_l_0_r-0_1.4-1_0.04-2_0.04-3_0.96\", \"477_l_0_r-0_0.1-1_0.0-2_0.32-3_1.71\", \"478_l_0_r-0_2.1-1_0.01-2_0.08-3_0.99\", \"479_l_0_r-0_0.43-1_0.24-2_0.09-3_0.14\", \"480_l_0_r-0_0.12-1_0.01-2_0.1-3_0.7\", \"481_l_0_r-0_0.44-1_0.16-2_0.24-3_1.13\", \"482_l_0_r-0_0.49-1_0.23-2_0.03-3_1.56\", \"483_l_0_r-0_0.7-1_0.27-2_0.2-3_0.23\", \"484_l_0_r-0_1.57-1_0.02-2_0.5-3_0.65\", \"485_l_0_r-0_1.49-1_0.09-2_0.42-3_0.39\", \"486_l_0_r-0_0.66-1_0.34-2_0.17-3_0.64\", \"487_l_0_r-0_1.15-1_0.03-2_0.01-3_0.2\", \"488_l_0_r-0_0.57-1_0.16-2_0.6-3_1.51\", \"489_l_0_r-0_0.08-1_0.37-2_0.25-3_0.1\", \"490_l_0_r-0_0.3-1_0.6-2_0.33-3_0.15\", \"491_l_0_r-0_0.58-1_0.22-2_0.14-3_0.79\", \"492_l_0_r-0_2.17-1_0.19-2_0.02-3_0.35\", \"493_l_0_r-0_1.18-1_0.1-2_0.04-3_0.46\", \"494_l_0_r-0_0.77-1_0.12-2_0.33-3_0.8\", \"495_l_0_r-0_2.36-1_0.06-2_0.18-3_0.96\", \"496_l_0_r-0_0.43-1_0.21-2_0.05-3_0.13\", \"497_l_0_r-0_0.8-1_0.0-2_0.12-3_0.56\", \"498_l_0_r-0_0.44-1_0.05-2_0.04-3_2.41\", \"499_l_0_r-0_1.18-1_0.05-2_0.02-3_0.42\", \"500_l_0_r-0_0.77-1_0.12-2_0.01-3_0.85\", \"501_l_0_r-0_0.91-1_0.01-2_0.28-3_1.76\", \"502_l_0_r-0_0.48-1_0.01-2_0.2-3_1.78\", \"503_l_0_r-0_0.9-1_0.21-2_0.01-3_0.87\", \"504_l_0_r-0_1.54-1_0.54-2_0.01-3_1.02\", \"505_l_0_r-0_2.02-1_0.15-2_0.47-3_0.59\", \"506_l_0_r-0_1.1-1_0.08-2_0.04-3_0.5\", \"507_l_0_r-0_0.34-1_0.01-2_0.05-3_1.4\", \"508_l_0_r-0_0.15-1_0.04-2_0.28-3_2.15\", \"509_l_0_r-0_1.53-1_0.14-2_0.14-3_0.48\", \"510_l_0_r-0_0.58-1_0.05-2_0.16-3_0.68\", \"511_l_0_r-0_1.27-1_0.03-2_0.13-3_0.6\", \"512_l_0_r-0_0.1-1_0.17-2_0.25-3_0.27\", \"513_l_0_r-0_0.48-1_0.09-2_0.02-3_1.2\", \"514_l_0_r-0_0.26-1_0.28-2_0.0-3_0.38\", \"515_l_0_r-0_0.29-1_0.14-2_0.03-3_0.27\", \"516_l_0_r-0_0.21-1_0.33-2_0.55-3_0.47\", \"517_l_0_r-0_0.2-1_0.09-2_0.0-3_1.09\", \"518_l_0_r-0_0.16-1_0.06-2_0.42-3_0.79\", \"519_l_0_r-0_0.03-1_0.13-2_0.26-3_0.91\", \"520_l_0_r-0_1.42-1_0.2-2_0.04-3_0.21\", \"521_l_0_r-0_0.8-1_0.06-2_0.05-3_0.92\", \"522_l_0_r-0_1.38-1_0.19-2_0.48-3_0.1\", \"523_l_0_r-0_1.14-1_0.09-2_0.27-3_1.25\", \"524_l_0_r-0_0.13-1_0.12-2_0.48-3_0.59\", \"525_l_0_r-0_1.32-1_0.17-2_0.07-3_0.59\", \"526_l_0_r-0_0.46-1_0.07-2_0.48-3_0.88\", \"527_l_0_r-0_0.61-1_0.11-2_0.05-3_0.63\", \"528_l_0_r-0_1.15-1_0.07-2_0.15-3_0.51\", \"529_l_0_r-0_1.32-1_0.0-2_0.08-3_1.46\", \"530_l_0_r-0_0.64-1_0.07-2_0.0-3_1.32\", \"531_l_0_r-0_0.48-1_0.22-2_0.01-3_0.58\", \"532_l_0_r-0_0.31-1_0.09-2_0.5-3_1.35\", \"533_l_0_r-0_0.15-1_0.13-2_0.18-3_0.37\", \"534_l_0_r-0_0.74-1_0.03-2_0.04-3_0.98\", \"535_l_0_r-0_0.39-1_0.09-2_0.03-3_0.48\", \"536_l_0_r-0_2.05-1_0.05-2_0.4-3_0.95\", \"537_l_0_r-0_0.41-1_0.12-2_0.01-3_0.03\", \"538_l_0_r-0_2.52-1_0.27-2_0.35-3_0.55\", \"539_l_0_r-0_1.02-1_0.29-2_0.02-3_0.01\", \"540_l_0_r-0_0.03-1_0.13-2_0.03-3_0.62\", \"541_l_0_r-0_0.86-1_0.25-2_0.26-3_0.77\", \"542_l_0_r-0_0.65-1_0.09-2_0.19-3_1.21\", \"543_l_0_r-0_0.51-1_0.02-2_0.01-3_1.02\", \"544_l_0_r-0_0.56-1_0.0-2_0.19-3_0.88\", \"545_l_0_r-0_0.04-1_0.37-2_0.14-3_2.44\", \"546_l_0_r-0_1.36-1_0.34-2_0.0-3_0.24\", \"547_l_0_r-0_0.02-1_0.05-2_0.05-3_0.63\", \"548_l_0_r-0_1.78-1_0.49-2_0.04-3_0.86\", \"549_l_0_r-0_0.05-1_0.15-2_0.2-3_0.35\", \"550_l_0_r-0_0.1-1_0.06-2_0.35-3_0.56\", \"551_l_0_r-0_0.68-1_0.05-2_0.21-3_0.69\", \"552_l_0_r-0_2.65-1_0.01-2_0.24-3_0.52\", \"553_l_0_r-0_1.46-1_0.17-2_0.33-3_0.28\", \"554_l_0_r-0_0.58-1_0.04-2_0.06-3_0.91\", \"555_l_0_r-0_0.06-1_0.74-2_0.23-3_0.89\", \"556_l_0_r-0_2.18-1_0.02-2_0.02-3_0.37\", \"557_l_0_r-0_0.84-1_0.01-2_0.06-3_0.24\", \"558_l_0_r-0_1.43-1_0.0-2_0.26-3_1.7\", \"559_l_0_r-0_0.96-1_0.04-2_0.07-3_0.99\", \"560_l_0_r-0_0.84-1_0.12-2_0.32-3_1.56\", \"561_l_0_r-0_0.33-1_0.12-2_0.22-3_0.21\", \"562_l_0_r-0_0.27-1_0.0-2_0.03-3_0.17\", \"563_l_0_r-0_1.2-1_0.5-2_0.08-3_0.58\", \"564_l_0_r-0_0.6-1_0.12-2_0.16-3_0.16\", \"565_l_0_r-0_1.14-1_0.12-2_0.45-3_0.01\", \"566_l_0_r-0_1.76-1_0.03-2_0.05-3_0.48\", \"567_l_0_r-0_1.62-1_0.51-2_0.03-3_0.24\", \"568_l_0_r-0_1.83-1_0.12-2_0.1-3_0.69\", \"569_l_0_r-0_1.72-1_0.28-2_0.5-3_0.24\", \"570_l_0_r-0_1.25-1_0.41-2_0.23-3_0.21\", \"571_l_0_r-0_1.12-1_0.07-2_0.33-3_1.09\", \"572_l_0_r-0_1.09-1_0.08-2_0.0-3_0.11\", \"573_l_0_r-0_1.5-1_0.03-2_0.0-3_0.02\", \"574_l_0_r-0_1.36-1_0.05-2_0.11-3_0.34\", \"575_l_0_r-0_0.27-1_0.52-2_0.03-3_1.53\", \"576_l_0_r-0_1.36-1_0.26-2_0.0-3_0.26\", \"577_l_0_r-0_1.25-1_0.2-2_0.33-3_0.13\", \"578_l_0_r-0_0.6-1_0.03-2_0.39-3_0.42\", \"579_l_0_r-0_0.7-1_0.2-2_0.1-3_0.7\", \"580_l_0_r-0_1.57-1_0.01-2_0.26-3_0.36\", \"581_l_0_r-0_1.6-1_0.03-2_0.12-3_0.18\", \"582_l_0_r-0_0.14-1_0.07-2_0.15-3_0.22\", \"583_l_0_r-0_0.59-1_0.25-2_0.26-3_0.32\", \"584_l_0_r-0_2.37-1_0.12-2_0.44-3_0.13\", \"585_l_0_r-0_1.26-1_0.06-2_0.09-3_0.95\", \"586_l_0_r-0_0.74-1_0.05-2_0.06-3_0.77\", \"587_l_0_r-0_0.92-1_0.09-2_0.15-3_0.06\", \"588_l_0_r-0_0.92-1_0.12-2_0.11-3_1.05\", \"589_l_0_r-0_0.45-1_0.24-2_0.13-3_0.9\", \"590_l_0_r-0_0.81-1_0.06-2_0.05-3_1.02\", \"591_l_0_r-0_0.58-1_0.05-2_0.04-3_1.23\", \"592_l_0_r-0_0.18-1_0.02-2_0.21-3_0.71\", \"593_l_0_r-0_0.58-1_0.11-2_0.16-3_0.1\", \"594_l_0_r-0_1.07-1_0.11-2_0.24-3_1.11\", \"595_l_0_r-0_0.21-1_0.11-2_0.02-3_0.86\", \"596_l_0_r-0_0.18-1_0.14-2_0.03-3_0.25\", \"597_l_0_r-0_0.96-1_0.3-2_0.07-3_0.54\", \"598_l_0_r-0_0.36-1_0.15-2_0.05-3_0.21\", \"599_l_0_r-0_0.1-1_0.08-2_0.19-3_4.1\", \"600_l_0_r-0_0.16-1_0.14-2_0.06-3_0.54\", \"601_l_0_r-0_0.26-1_0.15-2_0.03-3_2.41\", \"602_l_0_r-0_0.26-1_0.01-2_0.14-3_0.37\", \"603_l_0_r-0_0.02-1_0.07-2_0.22-3_0.63\", \"604_l_0_r-0_0.74-1_0.1-2_0.02-3_2.15\", \"605_l_0_r-0_0.95-1_0.05-2_0.2-3_0.61\", \"606_l_0_r-0_0.6-1_0.03-2_0.06-3_0.71\", \"607_l_0_r-0_0.52-1_0.1-2_0.47-3_1.23\", \"608_l_0_r-0_0.31-1_0.0-2_0.2-3_0.55\", \"609_l_0_r-0_1.17-1_0.03-2_0.13-3_0.83\", \"610_l_0_r-0_0.04-1_0.0-2_0.01-3_1.4\", \"611_l_0_r-0_0.32-1_0.12-2_0.07-3_0.68\", \"612_l_0_r-0_0.58-1_0.12-2_0.02-3_2.95\", \"613_l_0_r-0_0.74-1_0.04-2_0.14-3_1.0\", \"614_l_0_r-0_1.31-1_0.11-2_0.15-3_0.18\", \"615_l_0_r-0_0.52-1_0.01-2_0.03-3_0.48\", \"616_l_0_r-0_1.5-1_0.02-2_0.36-3_1.16\", \"617_l_0_r-0_0.53-1_0.26-2_0.07-3_0.66\", \"618_l_0_r-0_1.99-1_0.28-2_0.2-3_1.68\", \"619_l_0_r-0_1.75-1_0.44-2_0.05-3_1.6\", \"620_l_0_r-0_0.03-1_0.01-2_0.07-3_0.35\", \"621_l_0_r-0_0.45-1_0.01-2_0.52-3_0.77\", \"622_l_0_r-0_1.4-1_0.0-2_0.24-3_0.86\", \"623_l_0_r-0_0.45-1_0.1-2_0.22-3_0.54\", \"624_l_0_r-0_1.03-1_0.39-2_0.34-3_0.26\", \"625_l_0_r-0_1.2-1_0.58-2_0.17-3_1.09\", \"626_l_0_r-0_0.37-1_0.06-2_0.2-3_0.49\", \"627_l_0_r-0_1.48-1_0.01-2_0.22-3_1.12\", \"628_l_0_r-0_0.14-1_0.01-2_0.37-3_1.29\", \"629_l_0_r-0_0.38-1_0.16-2_0.0-3_1.28\", \"630_l_0_r-0_0.21-1_0.04-2_0.25-3_0.88\", \"631_l_0_r-0_0.96-1_0.23-2_0.01-3_0.55\", \"632_l_0_r-0_1.47-1_0.01-2_0.03-3_2.04\", \"633_l_0_r-0_0.04-1_0.02-2_0.1-3_2.03\", \"634_l_0_r-0_1.05-1_0.04-2_0.03-3_1.21\", \"635_l_0_r-0_0.81-1_0.04-2_0.18-3_0.73\", \"636_l_0_r-0_0.32-1_0.03-2_0.15-3_0.81\", \"637_l_0_r-0_0.8-1_0.28-2_0.02-3_0.13\", \"638_l_0_r-0_0.56-1_0.04-2_0.01-3_0.26\", \"639_l_0_r-0_1.35-1_0.04-2_0.15-3_0.98\", \"640_l_0_r-0_0.23-1_0.3-2_0.0-3_0.28\", \"641_l_0_r-0_0.01-1_0.04-2_0.05-3_0.83\", \"642_l_0_r-0_0.28-1_0.11-2_0.26-3_0.86\", \"643_l_0_r-0_2.01-1_0.14-2_0.2-3_1.49\", \"644_l_0_r-0_0.87-1_0.07-2_0.09-3_0.37\", \"645_l_0_r-0_0.1-1_0.21-2_0.14-3_0.15\", \"646_l_0_r-0_0.9-1_0.46-2_0.25-3_0.54\", \"647_l_0_r-0_0.93-1_0.19-2_0.26-3_0.11\", \"648_l_0_r-0_0.73-1_0.02-2_0.12-3_0.8\", \"649_l_0_r-0_0.09-1_0.09-2_0.07-3_0.1\", \"650_l_0_r-0_0.5-1_0.05-2_0.23-3_1.96\", \"651_l_0_r-0_0.23-1_0.15-2_0.27-3_1.08\", \"652_l_0_r-0_0.64-1_0.11-2_0.25-3_0.98\", \"653_l_0_r-0_0.44-1_0.12-2_0.14-3_1.23\", \"654_l_0_r-0_0.63-1_0.03-2_0.01-3_1.1\", \"655_l_0_r-0_0.63-1_0.1-2_0.1-3_0.28\", \"656_l_0_r-0_0.24-1_0.4-2_0.02-3_0.22\", \"657_l_0_r-0_0.25-1_0.01-2_0.03-3_0.18\", \"658_l_0_r-0_1.18-1_0.15-2_0.04-3_0.79\", \"659_l_0_r-0_1.22-1_0.19-2_0.07-3_0.03\", \"660_l_0_r-0_0.59-1_0.14-2_0.02-3_0.47\", \"661_l_0_r-0_1.74-1_0.23-2_0.26-3_0.56\", \"662_l_0_r-0_1.92-1_0.08-2_0.04-3_0.17\", \"663_l_0_r-0_0.84-1_0.14-2_0.01-3_0.41\", \"664_l_0_r-0_2.42-1_0.02-2_0.24-3_1.16\", \"665_l_0_r-0_0.4-1_0.44-2_0.05-3_0.86\"], \"type\": \"scatter3d\", \"x\": [-0.9887702284502555, -0.5626241309846923, 0.13311520079864048, -1.8786672025777416, 0.9739141985461885, 0.03079789364189134, -2.0343731845297643, 1.3962045695554526, -2.5326521801250412, 0.862738427968808, 1.8748663728198292, -0.7937829574950671, -3.1644944801226678, 0.09023194717588834, -3.4620147863141777, -1.6679992668028998, -0.27468608756845136, -1.6917897154322965, -3.0178820512141806, -1.1357417056399093, -2.5886368980453316, -1.203470275757767, 0.4546356284430433, -3.352494610304374, 0.002347216098981475, -3.5304091511109053, 0.9098513435073159, -1.3200034689827107, 0.5621853027013988, -0.7194862202142345, 0.8099895129463672, -1.0984960993179835, 1.579391285831551, -1.3801241140696083, 0.6117596754047785, -2.8173121977645037, -1.8093000913022905, -2.5473134445451198, -1.9717831677352538, -2.6733647093968624, -1.8931332378542236, -1.340639542118606, 1.0273233370257855, -2.9334891984179476, 0.5257787179216817, -1.3086876739509958, -1.9140293450933232, -1.5378907726148554, 1.534511430989356, -2.433404839276552, -0.9694123965312192, 0.14530573464683005, -4.258580361473568, -1.041346041419183, -2.1517507043728195, -2.9232922124592253, -1.2614934894462702, 0.9530915021940234, -0.48990582625633305, 1.6183939225997008, 1.4960247334184538, -1.716451163451811, 0.7180268066138364, 2.527819344924087, -3.235775296165383, -0.6668844948296604, 1.9492329985294825, -0.9397822284981722, 0.6044959687441411, -4.306304890744716, -0.5730746589478737, -0.8283060563231522, -1.0277176408820319, -1.7054275521397524, 1.87292429144498, 0.6830195601842373, -3.043457029677796, 0.9393675338072549, 0.6202702273163483, -1.0531026304250826, -1.4324622537931755, -2.235222889059363, -0.9428616177585482, -2.526678359205344, 0.3024934235130119, -2.6741856639730535, 0.05921893115575183, 2.2439157919370962, -1.6021264304295306, -1.1690775213272726, 1.6876581904983592, -1.8611331365020285, -2.207519864875621, -1.0458743449135925, -1.375767460847326, -1.240260838251611, -2.4391262367637143, -1.4551431010551927, -0.735628321470627, -1.0454851387278872, -1.1077457856656197, -1.1588851220065137, 1.5383579406773746, -1.9077685375114417, 0.9128619069565143, 0.9255120044479168, -0.3747702065400226, -1.4590742970866333, -1.4576550547922944, -3.3330775793928744, -3.076710850853004, 0.7598011426106672, -2.9127606225434874, -0.3949594392078779, -1.5866147419992847, -0.5457269837518837, 1.090682327523799, 0.6537898276559191, -1.0806459733929816, -0.28278370336093206, 0.6459853043537054, -1.0785591393015412, 0.3872640384262629, 0.11752050263553504, -0.05950971271661831, 0.9946702325519601, 1.5502189083100797, -1.6078960843000365, 0.2253940618162409, -1.801123370358598, -0.2640477963574286, 0.6796999915567754, 0.6455692030124707, -2.64226180367684, 0.3388316880946025, -2.725035797989472, -1.7560007288003736, 0.4057025265866683, -2.0845009385101485, -1.1482131045544595, -0.4078748384259311, -2.7990596998432418, -0.9115198538317955, -1.3179247121118935, -1.3794159827853465, -3.0334412459359097, 0.7871300786397446, 1.2623382625425235, -2.492042959352376, 1.7327902217615234, -0.6051851048683607, -1.092853038939686, 0.4599908488038904, -3.0434564896912204, -2.7068160591663095, 0.6311876990444929, 0.21093877090564717, -0.9373826305542678, 0.4355602552862601, -0.835261602502032, -0.6005804389635209, 0.24744139833969414, 0.40810639797836656, -0.041951035356440736, -1.5453094536175365, 0.4958561105691708, -0.6130354079901487, -0.20164694204474898, 0.8409902302672545, 0.3204603902223173, -3.28514154385972, -1.7923101308706837, -1.6233245101872327, -0.694621309822431, -0.14798886742065487, 0.7541789273647523, -1.2792347822611987, 0.6253420934418332, -1.552388970152745, 1.3807228014239517, -0.6237612475239468, -1.6394437587047808, -1.1276831024689955, -0.502029092492146, 0.7054510010441868, 0.2133511351395394, -2.2337005813166466, 0.050790906465561836, 1.6509058650471036, -1.624210336146197, -0.06798765658948691, 1.3392790620045827, 3.00194998312468, 0.3800952492020484, -1.885041928757719, -1.2462544170006984, -3.286898835544216, 0.8987920995095728, -0.35458044408071887, 0.7816930025599866, -1.0501837276079682, 0.6464328471525826, -0.012028233065845995, 1.299396226022714, 1.906626237277599, -1.8668912154763215, -1.1874018487650946, 0.9107056312955795, 0.7286241583433015, -3.1190128796822187, -0.6605676370452963, 1.4992408104321315, -3.4366848094824096, 1.08437716037245, -2.1471722466810497, -1.7171747627906098, 1.5194110115901962, -1.598942046564328, -0.015459323003455538, -2.6848146560439448, 0.6341393692468533, 0.9031104375013834, -0.10732264497749777, 0.5436553010188041, 0.6370550436065752, 0.0063415713698737886, -2.933589466671309, -0.9106975503728645, 1.0380188148780074, 1.7511817526109104, -1.553889045118456, -1.2819966363896185, 0.6066974406680965, -0.955609079722407, -2.915879491199587, 1.7420134634976767, -2.3091889885648094, 0.2826932424058972, -2.4537881020443573, -0.6055122210484893, 0.2732415200998828, 1.4617357666431308, -0.29629284952938706, -1.4770775340522517, 1.429314713958052, 0.5579815383385487, -1.6428155599944667, 0.8091993540382476, -2.109615227344772, 1.6213160912518503, -1.2640870372532103, 0.21800246552462088, 0.8752558040487601, -0.28688680567185054, -1.5163324331779444, -2.8190507917082406, 1.441060015731955, 0.06994158641407866, -2.190738206627243, 0.03227403194012868, -2.447113700230637, -2.0185078869705664, -0.9201966488645713, -3.4969318560591267, -2.7943883472456346, 0.7426441915794073, -3.3037619786113535, -1.2714620813857505, 1.2195626147116405, -0.10329139076228988, -3.520323854310613, -1.6619290102212432, -0.7479696706337766, -0.7091458829902683, -3.379633855357443, 0.35511781351575245, -1.2744306271428418, 0.4201858785386985, -2.127745069818493, 0.8951128114800686, -0.4628154053643504, -1.575731005543111, -1.4821750227522013, 0.36832586004550816, -0.36279887324587967, 0.16868889007315624, -0.007147892099486186, 0.010668939673521116, -0.9667522126078772, 0.889460507989486, -3.1970840423053506, -3.696555791789195, 0.5191901103246561, 1.2601286712522337, -2.4376211685269586, -1.864631463663727, 0.04586108788073662, 1.0485818048470623, -2.167707238283131, 0.2600998664203389, 0.8417241024516657, -1.055197483815333, -2.5655509585853564, 0.39256465383038686, -0.495128805370299, -1.7187491999733475, -2.4749996221959147, -5.476447679052502, -1.1466318694683582, 0.3101062994848971, -1.2442962404009354, -2.88132188978385, -1.5411509816669828, 0.7763993263874873, -2.1761031469194743, 1.5713387345272305, -0.20602763553592618, -0.5154723926002205, -0.1448435627486273, -1.1191524471535412, 0.7636826184888847, 1.4363252268679947, -1.7782678091446373, -1.4545581414544726, -1.1415617470914023, 0.12409491481789625, -2.086554329145254, 0.24720254436701805, 0.5067647675678437, -3.0021351889440266, -2.0247743959119147, -0.6690207004338296, 1.2655014595518903, 1.2317683480044597, -0.8013357357500124, 0.23218884040058452, 0.6670350470093938, 1.2064513773251289, -1.0224453171424261, 0.2478380977762169, 0.1237368867370714, -2.036741537937343, -0.5720607025429228, 0.6323831253162844, -1.236664625639141, 0.283471932965905, -1.0681022193917014, -0.752203933876808, -0.5163069890304124, 0.9369496095547043, -0.780755710047658, 0.7294453610942175, -1.7031725112501235, -2.533263059069177, -0.9514284556961915, 0.7420524782164533, 1.491942836872465, -1.7655036725308877, -0.5072665661693878, 0.1385856350265562, -2.337959287541686, 0.747152275507625, -1.1973336375154897, 1.7805758822106066, -0.5718880325764186, 1.8438457082913544, -2.9530281588442993, 0.6290313142530091, -2.973563900792156, -0.11586319432690773, -0.6478275055329409, -1.1080760898892965, 0.48612533199616337, -2.8588133590970326, -1.0723811024153909, 1.6987301277382687, -1.614731735257569, -0.9820565164379254, -2.86698260413296, 0.7695356041512995, -1.6617484254831898, 0.9665204785031727, -1.110275268670074, -2.8449959696526443, 0.4239833658859402, -1.1582500980017256, -3.2818279183142813, -2.2741143033391498, 1.8585096650094601, 0.40522032005006814, -0.0010712293857572108, -0.8142647480182454, -0.832172691789239, -2.0816970628066125, -1.9898573531913362, -0.46383111368702024, 0.05220640752665351, 1.0836673698113772, -1.9111905781676277, 2.825530094377152, -1.6042305199106732, -2.2816183661514295, -0.6267898695304577, -0.6073029459672451, -1.2453563858626673, -0.48304341833643794, -1.203946335802101, -1.6440765539817583, -1.8759904441240538, -0.8689069504330419, -1.2672551814391257, -2.8794558016544824, -2.132457160627223, -1.301813839468553, -0.6737886735517808, -2.9830265670194884, -0.6484912096981261, -0.7615887550992938, -2.0907796813967963, -1.1789524271038478, -2.089520842266057, -0.00314963439972471, -0.6910527046431115, -3.0756358850591248, -0.37750271700502225, -1.4348462070634502, -2.2090830429800645, -2.237096365411934, -2.7288059070555484, -0.415631662740784, -0.5129448671224724, -0.2550213637271562, -0.014953335720573335, -0.022669947264345125, -1.937601883363425, -1.9695189375524524, -1.2485459498930627, -2.20162733121696, -0.2116340581737799, -0.18909979338949712, -1.3294239527367488, -1.4555036201767437, -3.6740126677959632, -1.6419971652217233, -0.517244537272038, -0.9910746449499616, -1.2563634032349902, -0.555959945657437, -0.9249370810130952, -1.819368834966832, -2.729587075722182, -1.752037543162015, -1.7198365536989875, -2.8573660303739166, -1.6386880249165492, -0.13218197394113362, -1.7743568110347576, -2.117165162826117, -3.0922872898477554, -0.49052166158297783, -1.5983700669416838, -1.9642563175040604, -3.6577843584379237, -2.5413714114152075, -1.558141511933405, -0.7672787907308194, -0.23734313308564192, -1.6705115689870973, -2.004195815455509, -1.0054200455252766, -0.29528965785794403, -3.9518700417268504, -1.0846149890866903, -1.781222464755312, -2.390091466678794, -1.5162201482392401, -0.9618521071896488, -1.7089410062348436, -1.001072489067377, -2.4709206517782585, -0.6962817575908725, -2.517753882426569, -1.5607098993664532, -2.7308292863952977, -2.083873611574976, -2.2409503975773517, -2.1725311993936747, -0.20132092587518213, -1.5105046440973267, -0.1031413869631278, -1.0250593569929691, -2.027387033436505, -1.851390712460586, -2.268159097671142, -1.0405721599951998, -0.9578574243982633, -0.12691017568206442, -0.7883325090424214, -2.4065523196008067, -0.7588239439229676, -1.7779461846586826, -1.7569805782883, -4.2894516601075505, -0.8702829325624222, -1.1697568109017211, -1.1714147216030841, -0.5048175712146816, -1.5954526958261912, -3.5684422064493444, -0.482594490641747, -0.7147108606870063, -1.3582639552971993, -0.2683755601106842, -1.9313398435347517, -2.0155353868200248, -1.3226220051724598, -1.1323829300685415, -1.094546810121815, -3.3174327948438265, -1.5252902234198198, -0.20549008568601645, -1.0117115101010694, -0.10432790799289338, -1.5279299257500698, -1.3922824060323855, -2.579301122689901, -1.6962967591769482, -1.1407134937002568, -1.6761439321351634, -2.935355637760823, -4.538274463518243, -2.6341819970837723, -1.3712388663061439, -0.9786045990481449, -1.2848671041582183, -4.375688311279259, -3.89806167808225, -0.0343799279302236, -0.553993955918082, -0.013081205276772923, -1.6780110192032334, -1.7862572114598618, -3.681841938164162, -1.0231114162442527, -0.8821189848426548, -3.427231068549508, -1.0720088326740174, -1.3076530066744754, -0.9415533402748586, -3.013507648056511, -1.9514704062439965, -0.6872569696682537, -0.5171972283488366, -0.4280718661830182, -0.9082704340818043, -1.31887814674484, -0.7179532209298631, -1.8408556455166585, -1.9846945750165732, -0.9935871422171361, -3.6153660736223743, -0.2064276902054828, -1.5948396559476175, -3.096720536390002, -0.4855489010944305, -0.0073072484077185695, -0.7442669817774301, -0.5760591807636815, -1.38595695425791, -0.7907016557433163, -0.20860866816644053, -1.4805866386969972, -0.655691451328825, -0.0163086911994611, -1.3555765160269035, -1.5274120089593888, -2.236062924488162, -0.12551128047220295, -0.42145053891616235, -0.7019925442714559, -1.0100564103690153, -0.17744268472311497, -1.6301571958132868, -3.155327885622807, -0.12715918656606562, -0.9462785943484638, -0.7729126279210776, -0.06402201265079821, -1.0506417375346129, -0.9035061045025758, -1.0150888703254506, -1.2253007535187068, -2.671135477833596, -0.685291551887933, -1.105349958410332, -1.8336698075315376, -0.24538150845632667, -2.151317822993884, -0.2113974429388482, -4.099428244338647, -1.9583797622326093, -2.411630366409514, -1.2480459590041355, -0.6315074972986552, -2.4776063751972934, -0.6060254033828187, -4.19543752748936, -1.9210726001726868, -0.5536091161689354, -1.7262145378392315, -1.5671276496478108, -1.6254310355737691, -3.4250064545539383, -1.0019934132814363, -0.7289842934961397, -1.1728969143432706, -1.1620271139365796, -0.6553388975213441, -1.6765998013018297, -1.6027216008314533, -0.34763657484505783, -1.6893839260295933, -0.8569091120943224, -0.5437529476665106, -0.26197627157925096, -1.0937280879020563, -2.533856062809228, -1.1191245610094178, -1.9819068750009214, -2.3831476970010885, -0.8758353176867864, -0.563596243976581, -2.0366887398783424, -2.0303152376738804, -2.2226206025488704, -0.7324853318776194, -2.689079683204112, -0.17049916504093632, -0.25728646767908403, -1.5343226454576404, -0.28235988486166885, -1.8983377822831549, -0.8557821066265661, -1.4883759201881408, -1.4187325955682748, -0.15457782248674234, -0.5406267900734472, -0.10762230977874698, -1.9729969504815172, -0.10420186899557982, -1.9581549425520106, -1.4215525342032356, -0.9792043503183008, -1.2286350707767042, -1.226253641468636, -0.27681403775685964, -0.6049293439688219, -0.1823575432755391, -2.902874559731917, -1.9465475752122328, -2.190062300456077, -0.9683250804532538, -0.1745717243571775, -2.3696124263159852, -1.1560493621074637, -2.16783970744517], \"y\": [0.9704319673041657, 0.5004740932982454, 0.31433005163251315, 0.4039242884520109, -2.5370901537821036, -0.3485147679849717, 0.2976739810460056, -2.2101721446507803, 0.327320384797652, 0.392305256680338, -1.4340998996207555, 1.1232794374422839, 0.06410836256258134, -2.370850476496358, 0.5942809249543464, -1.3452736952537179, 0.23788860270946288, -1.4624828241716392, 1.3693562001515764, -0.027674262911265846, 1.4045035054108084, -1.3846432132375508, 0.19762939646350408, -1.2130854723852644, -0.4478781874142366, -1.620562112163948, -1.769726918264387, -1.2195159428707187, -1.021280158622662, -0.8366880556943648, -0.24472744579473749, -1.689738945016885, -2.006869517955729, -0.585772020438994, -0.6780995180833378, -0.4749166652972304, 1.2623663310068647, -0.35905859268723006, 0.4330305903991487, -3.0120044066895124, 0.1686555274951378, -0.31500012390214727, -0.2645686730434147, -0.49059278203589973, 0.6424803582145828, -2.1464465301461764, 1.7065100296965725, -2.5860009598446787, -0.2921874077908281, -2.8244196251592424, 1.5741563060626294, -0.715050420715256, -1.7401596765241063, 0.2797588244706686, 0.4407835688126551, -1.1189253404919226, 0.8223970413283566, -2.6698792246031413, -0.20952769891942868, 0.07702770640365553, -0.6408813629916321, -0.9779690122887007, 0.2736470582556314, -1.3111760149850444, -0.7932270740725478, 1.391183670859967, 0.7293554391615698, -0.6924087691643023, -0.8903760599596708, 0.6737872475820761, -0.6546320582627654, 1.6728184368627304, 0.04415199167287609, -0.6599767020638966, -0.057725531886169135, -2.9227683034543315, -2.4477193905072947, 0.4266772400077665, -1.0059065819560162, -1.8074791171378681, 1.556246956278767, 0.7659425390243433, -0.723274869356439, 1.470913160876509, -0.8439051990321741, -3.0162640958848876, -3.5777061633043252, 1.1049380934599178, -0.2979771057493985, 1.0366624320676805, -0.9607259770674579, -4.918283338162478, 0.47406620129472365, 0.9436950497277998, -1.0824882203235093, 0.10741095760033992, 0.8401172263820813, -0.8754929338505386, 0.7114070707857261, 0.5806931204426085, -1.084571435700954, 0.760482692344197, -0.7249298860520478, -0.5204412662723823, -1.7323999791283315, -3.1593367959921266, -1.6582783396216052, 0.8823030212984677, 0.8217398359903474, -3.1322427572366998, 0.7929993706258973, -0.4970022472968977, -1.6462040377939915, 0.6803162156040414, 0.13361402993242244, -2.8360942618650693, 0.7867233817639754, 0.34427244350941244, -1.1241529418981628, 0.6599523402170779, -2.4155504409008897, -0.6207437427918625, -1.1165598093168243, -0.7326874715525843, -2.2469285646233867, -0.6300118500554921, -0.5975175967565762, -2.190407185454511, 0.7591408606569641, 0.6485845487617623, -0.07637156162254033, -0.1368028588664384, -2.400825984794533, -1.8441587503957462, 0.007957529371466432, 0.29895048255931767, -2.1492215910475103, 0.8963579756495079, 0.5204503250909462, -0.7127875334560069, 0.9343152988864105, 0.9103226722730626, -1.1819669305323255, 0.7680454971912836, 0.753426964999588, -0.9069181747645988, -2.1453550002893973, 0.4022373260412411, -0.3560200466773086, 0.30345030947249496, 1.4994190112752257, -2.475795101351391, -2.424362696187174, 0.1437380661589216, -0.9970566801248227, 0.42448815846044563, -0.6542815987892787, -3.5523440047689423, -4.13704408120674, 2.0830923149631646, -0.43362980086767156, -0.9378856846618526, -1.281452725909778, -4.268239630554175, 0.34562673244251396, -1.9603269899662634, -3.4637621794491977, 0.999163785556471, -1.4855841266966459, -1.2223680414587363, -2.4349414972683014, 0.8873230115792108, 0.552262469909826, 1.2293183443358529, -3.395261758963876, 0.2960796199869722, 2.182976803734258, -0.49680660003408417, -3.305702943544082, 0.8531983439847128, 0.09439999741687077, 0.0855511177978574, -1.095595850887496, 0.50561192734847, -3.8227669646955356, -0.11715217273208423, -2.0314157608235277, -2.2304785113259706, -0.335777635069602, 0.17091752594025067, -0.6350459305200438, -0.6811832684550971, -1.0003941094129563, -1.1402745502046556, -2.4887056535361363, 0.6210003623416995, 0.2007621976088636, 1.6035373542835005, -2.338601534750002, -3.3758196592597147, 1.0852391052262047, -3.1946550165270473, -2.632694450594375, -0.16264575400276582, -0.7704924487035343, 0.04421782562051901, -0.027092098133760456, -4.754848295380599, -2.300998352058012, 0.9939271509408341, -2.85917512843701, -3.0095315446483086, 0.15374126820931178, -1.4657533935178009, -0.16700954122794665, 1.086935888698981, -1.7207477336715724, 1.4325278902623193, -0.2940355930517504, 0.9649966399155407, 0.4728908496150124, 0.6853728472848821, -0.26567996578682573, 0.6576571154258195, 0.34507058273915114, -1.1427991344972002, -0.9827087930321259, 0.21102622902745205, -0.2152311027789363, 0.711051860644025, -1.1243349715650224, 0.3702984574907693, -1.0635345959233522, 0.14923713930658544, -3.45914341047305, -3.0060852048429547, 0.753522890984933, 0.8482398950682692, -2.5822220814190153, 1.2769223769717386, 0.5422630873777312, -1.4786248728128506, -3.3544552460456587, 0.25735472321642283, 0.647471070690917, -0.19641858418680969, -0.34399376641917, -0.23523492711580107, 0.05597726983157214, -2.4353341810907096, -1.644099535248284, -1.5001776116925023, -0.6343190372315233, 0.4897129876623454, -0.3328455656043454, 0.8249956006425414, -2.5546882081241353, -2.621101955529328, -0.7130975258240377, -1.447358743078615, 0.14305175427809558, 0.5216102059929073, -0.7594085613402891, 0.2685489300558299, 1.5349989565357958, -0.28469912046888624, -0.277794611051837, 1.453741538362038, -1.8352430518648406, 1.3505507889575452, -2.9086258143260215, 1.547904430659719, 0.07012287248673821, 1.7336535732561855, -0.33208694666962124, -1.7842158696752448, 0.719118195047838, -0.23610727662277853, -1.37445612130483, 0.02101940292536053, 0.2605303860138186, 0.8732632631119521, -0.534092199916981, -1.2732135299260356, 1.2431265717971254, -1.3559040727871132, -1.3598534677894514, -3.106882142421195, 0.09754887029513326, 1.961118316909698, -1.344913027569881, 0.2080077347361653, -1.5734566899032627, -0.1809631270857991, -1.9247657864295284, 0.5274345591237821, -1.8288777612857854, 0.10705277528489798, -0.26545199101246564, 0.3414893662107026, -1.6427829101876688, 0.2392820981601751, -2.4905284471162967, -2.4991715846655653, 0.635303959612078, 0.761724659024064, -0.5935254084769477, 2.061427391697154, 1.0711509128734056, -0.8078180621503869, -1.1258474395143474, 0.5993317908761895, 0.09648313165011824, 0.10154183649116222, -1.7571554770713274, 1.1008395042182295, 0.9251983018927894, 1.2407760003209645, -1.6841278618757047, 1.1098604506605025, -0.07324338580156553, -1.924637324540516, -0.4523301833426242, 0.535890126018403, 1.5088414749221855, -1.4109188107684034, -0.33457122969007747, 0.43416722672553276, -1.04872295384568, 1.8761197440578585, -0.23998107577556982, 0.38220944362482334, -0.1651044309702101, -0.1666228719376226, -1.332506382538373, -0.8297492934599912, -0.38492584075190717, -0.9577375995082597, -3.3329939746321875, -0.9525885242290149, -0.5106970784035805, 0.3120734278980133, -0.962291010894015, -0.4089933019215546, 0.003450257316531813, -1.4129859250296444, -1.8505733185387172, 0.2778269633452368, 0.7237404040394284, 1.0316740661724255, -2.8044077303288146, 0.5955412867265872, 1.6524637373745872, 1.2384284867175546, -3.1999985654300525, 1.4850594361611993, -1.4809390237083, 0.21526478272411564, -1.8264736337422334, -0.007795042987128187, 0.11479123192029572, -2.396415617314985, -0.7185082762429362, 0.4681595976263735, 0.6209166351072104, 0.21749665021876607, -2.260308157733332, -3.7500051462506243, 1.5758238750785272, 0.31142085953528853, -0.8711714256796499, 0.2959950142907861, -2.7827415138098344, 0.06368078361278795, -0.933945537948132, -1.3144697843981574, 1.2944422074448787, 0.3598336085643401, -1.0336138851720726, -1.823744059779619, 0.1823349500444813, 0.055991733624492834, -0.33167194108091824, 0.9199119735818122, -0.43685664915092326, 2.180495569974209, -1.4701084209679738, 0.5894860961592907, 0.061544516546946815, 1.8118617170101232, -1.8796498267107715, 1.20110222288585, 1.210883720763388, 1.27212003332179, -0.7758176749380588, 0.19357588021618288, -2.178981591233261, -2.1039833877975997, -2.0099153828298766, 0.7060006225252722, -2.222479108231762, -0.06435478356046409, -0.7732420624437452, -1.1766777318042245, -2.8063126087519086, -0.7576312065135697, -1.83528502878747, -0.4718905073407884, -2.276060073612877, -3.1343063286515265, -3.3784913628256135, -1.1707522017929273, -4.221323639321674, -0.1382994146866211, -1.5013426965877517, -0.7912976483687485, -2.2511793058241967, -1.8941545139085618, -2.1481358531763544, -0.15356174822356394, -1.3550480201062167, -2.0696546699331186, -0.6384689955785464, -1.7701914420227576, -1.793773429839992, -1.7887929140624566, -2.974433687017144, -2.125489190928117, -1.0676555016659581, -0.5328253224275511, -0.7447744575598858, -2.276249235262991, -2.4069052739504295, -2.5345085503476366, -2.2419017589209096, -1.2176533667517062, -2.1699591628397887, -0.29451059733649865, -1.2259929465751676, -1.7321368596558107, -2.113176944806173, -1.6073215552721942, -0.9557312175729769, -2.7365823664394964, -1.0320201293718305, -0.3502883884068726, -1.9614294960652918, -0.4479520895378851, -1.8595572799125946, -0.815735356893362, -1.2469705605993957, -1.9491740745948685, -0.7453734615186802, -1.0170505889051984, -0.5489542836168447, -0.6527661072539767, -0.9348260054987083, -1.5876802787386148, -0.5601476629783182, -1.2732130445787417, -1.0468100819888657, -1.4351303799680888, -2.22119699526919, -0.30910416259578444, -0.8500247644094452, -3.599601288650145, -0.9623214820328336, -0.08603093258649508, -0.2198384225901553, -1.8715970024732629, -4.311236847654985, -1.7220668702416293, -1.6944461128280386, -2.908569521313022, -2.0639112859507813, -1.085666549332368, -1.5550630949813335, -2.528091618023973, -0.9888044995587066, -0.1438523887823282, -2.1704960066837007, -1.132350236181587, -3.0140478508516813, -0.22597967215626114, -0.6501345776802486, -0.38856747745142595, -0.6352615706418636, -1.4741810511118483, -2.9541210062051064, -1.9960346497778483, -0.8795360813602241, -0.7927019585930672, -0.35303180082228247, -0.46437918742887263, -0.8011485107705555, -2.628398175937411, -2.455189782222492, -1.540609223501371, -2.835978539267617, -1.485896397786578, -0.8544848743601439, -1.7659146905518406, -1.775714783650785, -3.358546602505759, -1.0519888732021643, -0.5891232345105092, -2.985233941945089, -1.4033433583415733, -2.154893404109438, -1.932548774361248, -0.6765871893215888, -0.6034682606567505, -1.6000943827575531, -1.2007573063059152, -0.3816417081629254, -0.6492078115014083, -1.305449780208951, -2.030423353844517, -1.1792698194657867, -1.2519341150546657, -1.9414945763765208, -0.9196342787392204, -1.7899492811753133, -2.3040114376928793, -0.5862801929351208, -1.258905026786803, -0.8762027357963117, -0.6293377765732422, -0.5120811330528455, -1.4642755418656437, -1.3219942312159336, -0.5847188195596709, -1.351371933806504, -0.36746905158875653, -0.9810179365240758, -0.48349905569362905, -1.3508994768382043, -2.0535070693696253, -2.4445211449681024, -0.7712815378050093, -0.6241758569494404, -0.7650584177144734, -1.212827716850463, -1.147096148549868, -1.8316339403195032, -2.4356657865024847, -0.23682104165780926, -1.1258688946976756, -0.8593991008017244, -2.583333516525868, -0.7420218212769201, -2.1281024577989562, -2.265068525370735, -0.2807200789999924, -1.000311002677522, -0.8887286017088722, -0.9144854008646547, -2.507023664573958, -1.6984389664495732, -0.9921409315075913, -1.5622592541599016, -1.4365755952006645, -0.16931542400238153, -1.8508896949092501, -0.1631588098055481, -1.0913338843914273, -0.4832207524802393, -0.24253731867135675, -0.6926640782302518, -0.24477613131873466, -2.0426128359181366, -1.091029679439038, -0.10723823822407319, -1.3294686909537528, -1.5547015851871406, -1.5417340496979475, -0.25958101587698157, -2.465340059384484, -2.7837154394886277, -0.7559293383919111, -1.0351981317617016, -1.9236656375086736, -1.2505953017924802, -0.3982898927680727, -0.5450228221182805, -3.0057052151603436, -1.1660155210629102, -1.9904322895734106, -2.7673973058894576, -2.336388003358972, -1.8666362008273945, -1.5695557001727805, -0.711120258141004, -2.858076991762509, -1.431039420049201, -0.8605622161319534, -0.36524097891249585, -0.5428293500635192, -3.296397350424424, -4.359820849089561, -0.538640281659004, -2.600695143233315, -0.373705102092603, -1.1076573146881272, -2.147344153114176, -0.9715349456486053, -0.7093283838459485, -1.232832849903212, -3.836127041045768, -1.954975314640003, -1.6211618387786153, -1.3463891535216432, -3.694647739249522, -1.0457761939919439, -0.1780955044012742, -0.9608656253181178, -1.964859185268939, -2.214876800213661, -1.7112817818889425, -1.8994647167777585, -1.4095709896633903, -0.7665820301714515, -1.776358859876547, -4.78801841714753, -1.123878293939253, -1.661459466917515, -0.48533353730457307, -2.2915767572401826, -2.226005204772756, -1.2835706843713321, -3.3169165253279935, -2.0927516312262178, -5.1582593268627015, -2.975980720063578, -1.2120735634076816, -1.0358626999330307, -0.8124136593248312, -0.1346845871063148, -1.2499475334618824, -1.1530154419522438, -0.7764314248255041, -0.8290835261173551, -1.5775838921244878, -3.0826517937889837, -0.37160303823750784, -2.6258662697955817, -3.273117444762341, -0.49091281941648246, -0.7954502170820166, -0.597280951636038, -2.238439076035276, -1.084436386499825, -2.7580458238014565, -5.432480501227076, -1.102354233572779, -3.519939082222602, -1.8903508458824754, -0.5652604743902658, -1.7533514912380948, -0.905129502680922, -2.1170816590394077, -0.5585151450019267, -1.309334112115619, -0.4066923313397982, -2.245207373279071, -0.8618479692497777], \"z\": [1.7999572436542852, -3.9567451393012893, -2.5308156161813375, 2.208518762656566, -3.373976360134543, -5.408292567768812, 0.5384746526410318, -4.324390056900036, -2.0331144969110424, -0.9203455004905949, 2.867120745514968, -3.3503942064737893, 2.5375148809786188, -2.1310577190004087, 4.53879337497466, 2.09921958832473, -1.2620419315314262, 2.5470872014371375, 3.64325497939845, -2.5611940362921053, -5.450724826764734, 0.9407559021814507, 5.1929776922143844e-05, 1.9099537964733209, -0.7507177896686832, -2.691400326527674, -4.912213249782639, -3.5451856531631494, -3.406287643198316, 3.2919724775644683, -2.31953143361243, 3.520113644684373, 0.28540424280789, 3.2648210558041777, -2.7585168951023276, 4.118978600882111, -3.484298947548208, -1.5611002460019519, 1.067442982785348, -3.2979451129974486, 2.9079707131627375, -0.0974095646923212, 4.188014336699749, 1.4203881716632267, -4.666422505784898, 0.5779617926452119, 4.337032394759178, -5.179509206774987, 1.6105700497431155, 1.2758933826009766, -4.147528211188986, 4.466220081812357, -3.0674580577463706, 1.729992070717346, -1.5619852750530967, -0.9838970992235216, -0.7751281277850044, -4.134632526212277, -2.7936283822859806, -0.26621368747943475, 3.6648958299871, 1.4157683040393225, 1.7537626649968798, -3.492592100378083, 2.673484323255619, 2.4265666146293983, -3.151074537322206, -0.12167928459817645, -3.6638743692392755, -1.2130955208543783, -1.0556000306148938, -0.8297714923264721, -2.619164313607285, -5.4786049284643425, 3.3174096139417637, -2.6803516514255676, 4.603417318414542, 0.438558722115979, 4.363499538865686, 4.241790792982504, 1.3316093243708895, -2.091734520148451, 4.279100513256634, -3.819573285922389, -5.594024179086257, 0.0628604128322392, 0.5634517373353614, -1.756977848805069, 1.6793371989517079, 4.453691801947971, -0.38247753149085106, 3.322179352686775, 2.845821167233468, 0.23732853837341583, -1.1885433284622255, -4.794263763839511, 2.788294280884199, 0.9576524086559983, 2.370799236733096, 1.1337728115744445, 1.8948179436159025, -5.495315179237563, -1.0084982048966635, 2.455108422747327, 3.1458728499485344, 0.6102746067861498, -1.4678308296659397, -3.5886696811571035, 1.6550111616346523, 3.734364053684481, -5.494281492780125, -0.32295566382868035, -1.630244561703095, -3.7539543493161633, 2.9278516842918174, 3.525554905689865, -2.541875626009323, 2.6127487515068415, -1.498815715589024, -4.531039107718206, -4.208786036870863, -5.777321041077342, -2.629605648193711, -2.6016176917874825, 2.4600657453854984, 1.3398711812677124, -4.892322730519634, -1.2492317819864587, -3.1742515659598687, 3.579914691775607, -3.995849504421621, 2.0247238109523495, -0.9274983884235679, 2.288384606128626, 1.9377867291434523, -1.429809215713858, -4.231523952999464, -1.6054930770603715, 1.113624712604012, -3.297856442016979, -5.384601392681733, -5.051085306075823, -2.816564790612274, -1.5455049533431957, 1.4635953336115302, -5.4120733385733555, -1.142860612274247, -1.963490618205903, -1.4768191256915602, -0.6980897020630756, 0.0873135332503292, -1.293860943372886, -0.6959012510953411, 4.201876289827342, 3.948716361351482, 4.381570559039388, -2.654139697482684, -4.876801233295311, 1.5560819788130207, -5.393056140858518, -2.446273984019994, 1.1809592951783472, 3.7274864529049347, -2.8230369153422488, -3.6799318023349574, 2.496775943838535, -1.5056364844516414, 3.362319092743017, 1.487482386822533, -1.4567574280201372, -5.085131049432539, -2.99072646064265, -0.24910879315018342, -4.56992696378199, 4.340164718609805, 1.018581826661216, 0.503907516032025, -3.6564405591433395, 0.3674465934487845, 1.1915167825365698, -2.3055321972303315, 3.4842853157946463, -5.154664232384952, 1.571681026524102, 4.231562142694844, 0.6130026815639305, -0.31189435324128123, 3.219042378460343, -0.8278739994759352, 3.185856514642457, 2.804315015530869, 2.4979408100156393, -5.676119623983693, 2.1093309953225603, -5.400959969273605, 1.2959465023669674, -1.4098850719257667, -5.647051911167314, -4.922524316482164, 3.9087153288781673, 2.5598683834936553, -3.383758712338313, 4.331238586210579, -2.5306226888930228, 4.567922910220145, 4.446652638851103, 0.6688125426003824, 1.3873710352078739, -0.6691568103220664, -3.0303428733467728, -5.541752719943159, 4.440740158372344, -2.900389236598394, -4.480902465875387, -4.574366159883185, 2.7387493002426266, 0.12789417532448422, -1.283878255216936, 3.8402845801051475, -4.828809532141261, -1.1125214172375637, 0.3439060614025058, 2.320472730555765, -4.46408509663681, -2.232332391148129, -4.205054574389278, -2.564334152982476, -0.6833343434265604, 1.2360302814325488, 4.166071160367728, 4.56431783678931, -3.226714941560632, 2.8777547932405225, -1.582707731909407, -5.103977636447343, 1.0538294012479996, -0.5372320011076255, -3.2539620389999975, -0.7864535685182341, -0.6940214305643684, 2.002317739183682, -5.302945533635693, -5.2729554370609275, 1.0117446223235715, -4.636977051978591, -2.865705711051214, -4.612940460062924, -0.7318260613839245, -1.4761590229014026, 0.9098267172025434, -2.015241772164919, -0.8407056946968829, 2.519811566100585, 3.875486874119349, 0.6001646176283293, 4.189069399051587, -4.063650989164277, -1.687418336898891, -0.7141697089863754, 3.2651684803995904, 1.9691792345067087, -0.8085337269378616, 0.3167424121163336, -0.835597755606293, 4.401046180366097, -4.877526362134231, 4.499015198293832, -3.1771983878460177, -2.327391952867864, -1.7239715167196836, -5.166213756741282, -0.41852978936688423, -5.182715231556573, 2.370526118559309, 3.988604250982042, -1.4259957883146193, 1.5535969857369158, -0.24913773263396966, 1.569095792411046, 0.8785773815570685, 2.166464798548101, -2.4891085656046674, -3.6841969475300647, -1.341192178902329, -3.584293767263223, 1.283877092308157, 4.535196094083736, 4.203808014728165, -1.7911181090368995, 3.8736550868670845, 4.26556651736706, -4.41827628819158, -1.5029310475283175, -0.7033235001849754, 0.6446344190067945, -0.13816921222868928, -4.397802980831106, -4.3818196054569025, -1.3579033237345906, -0.355170707714378, 0.36150775480851927, -5.707658879760939, 1.1616937405877703, -1.6192295612268577, 2.939769133462442, -4.032034133014757, -2.97819578896903, 3.790141983757798, -2.7070470624966445, 0.8192620101922037, -3.7415520719455606, -0.8390873452275249, 0.9194411604510782, -0.5517791604600042, -1.1683044813877812, -0.5402002709902218, -2.662446638958171, 2.5384369940892233, -2.6396061102965684, -1.23945833266436, -0.2189136721289371, 4.171846942148721, -2.8991328504778235, -4.112743433354224, -2.1608048688093047, 0.29324788213504327, 3.3261673728815717, -1.058401238303082, 3.436449769327276, 1.6762897806221364, -5.065682334055713, -1.3422132668296776, 2.602096783576136, 0.20899957886900022, -5.315261425719823, -0.0371680136304855, -4.157136952778868, -4.124886260815211, -2.2054146865307356, -1.52247271222915, -3.2637417355486145, -1.586709842977836, -2.9543939244936293, 0.7886488939715903, -3.8785639869333974, -0.03401377664858263, 2.2250495810481405, 2.5313845701721567, 0.45607310068891405, 1.1699474402408416, -3.896541154071996, -3.13500757585358, 3.641751493029388, 0.783579078144581, -5.585655946795133, -2.77943625238252, -2.1546138572886226, -5.43758164862493, -2.52641745804927, 1.3637946760404587, -2.218974585735593, 1.8865976481789115, 1.6975830095472446, 1.8348349863444051, 3.334002157625206, -5.190688946816928, -4.571463758000964, 1.1775013539237982, -4.520921250502255, -3.2956727706414113, 0.023571859651501548, 3.2990376623710658, -1.9692758695264168, 0.000995659994967646, 3.1374736601013042, 3.3901423684995526, -1.071340778326772, 3.647098237192913, 0.1626157443609788, -2.0971401059487844, -0.25623700748412226, -3.648012269839879, 3.3095391219560986, -1.3490867057264975, -2.1112548505806608, -0.8482858881797979, 1.2987304929645633, -1.8521419742513205, -3.0868015472523878, 1.2136829199941088, -5.216336413263394, -0.054732340368704335, -0.35822240967800845, -4.158274070808594, -1.0764248622160588, -1.2545119318507725, -5.134987790683614, 3.6173487362618504, -3.980444440046914, -4.4149634807996385, 0.8315389295925959, -2.104342560586789, -3.915595076010135, 1.4466769324872022, -2.0031857264664796, 0.8314781740634656, -2.5121776047809137, 3.200575438595007, 1.1603086833646845, 1.6049785921471909, -5.351283570104224, 3.4086255445282374, 4.114076417108509, -0.31155921721356794, -4.917857020079854, 4.183185882608588, -2.4803353309084657, -5.228349165916789, -2.191255920407962, 1.195973346934089, -2.35009597044507, -0.6006939548627273, 1.4195892300539255, 2.8543138091588167, -1.8092652754439134, -4.410994111207403, -4.806963666966233, 4.007088452722479, -1.8733981751404363, 3.1697415784681118, 3.1593124760810793, -5.451659846503135, 0.38689716533126806, -1.4738908577236378, 3.3951800748369836, -4.274402274955886, -1.1507969686572546, -5.443639750555611, 2.026887010398278, -5.280215712202062, 3.195818177782418, -2.887735351746787, 4.111313600865638, -5.593831301369242, 1.6135384705865548, -1.3926494062803574, -0.7701196928763068, -2.92156278468257, 0.48860618164346814, 2.17808977519364, -4.3907400794724, -3.532007726472084, 4.345850485474014, 4.117728625759775, 1.3739178590326606, 2.6035929376717446, -2.038502847210563, -0.8035966294051926, -4.888016377683062, 3.341171363864457, -3.343252445526581, 2.474710294473101, -3.8374576695851124, -3.9045371366351223, 4.6078404832734945, -1.817085435659862, -1.6247196876367331, 2.117689017802558, -1.3340951903748453, -5.66183032699691, -5.741767982271961, -1.5675610321216453, 2.917936954789629, -2.6237887105955933, 1.4402575683762375, -3.7104376850961254, -4.057581715267434, 4.45279938727345, -1.9253946045331207, 2.7555529069780116, -5.280028946129146, 2.164438407823001, -1.806916359607479, -1.5808842249490924, -2.6900770713947098, -1.4068274464052761, 4.079443121017403, -4.626131148806002, 1.53094510344933, 1.5554972423923044, -0.15461135016706784, -1.2464941774159612, 1.5816008669851653, -3.060850706559104, -1.342818470142645, 2.4016759866178417, 4.242194439008071, 0.5623030348860301, 3.260904941682072, -0.42249847545044084, 2.74838911725572, 4.019656480165984, -2.508163521814253, 2.8467987642117967, -1.0187072051348824, -3.8624835002777616, -3.4582756870771583, -2.379329748841314, 4.121234542345889, 1.7998246603947763, 1.3197018442482502, -5.288404369262936, 2.2430125941243277, -1.2584826624982037, 3.3331635891599882, -0.2713384088860886, -0.4715922009377227, -4.223533124506552, 0.7880195130772787, 0.9139103661187971, -3.8151708403250777, -2.187883145496884, -3.158017142894948, -1.248390796932778, -1.4985955832581848, -0.5877918281637085, 2.094460322593596, 4.4486739096293695, -2.580838979914086, -3.1747127475704815, 2.161503892150204, 3.6326106215447096, -4.146654114458575, -4.520166388220856, -2.4862826087720094, 3.2701929182230893, 0.9517983112221984, 4.300607436470826, -4.1923825763035385, -0.9503233841486045, -4.785050869282779, -2.429654308770622, -2.088006686735158, 2.0197604608586888, -4.453301814530362, -3.165177242721522, -2.334145071182061, 0.6254431827716962, -2.616847128391117, -0.3511869052176735, 0.5604914846662625, -5.533584715415601, 0.7907651283693591, -5.668585373687845, -4.777863212599686, -4.042607758643317, 0.3715417141534907, 0.24053723594141907, 1.7409486728106174, -4.62336019518138, -1.57427860861472, -2.7549843858885072, -3.56975686020959, -0.5845871146592998, 0.7736742731541959, 0.30033926423119794, -3.5804663828541536, -4.413290545112742, -2.0054927786457966, -5.379735112228988, -2.8894043502917324, -1.6896204351335493, -5.723486985081453, -3.104219522728685, -0.34475347991705885, -3.73675762170095, -3.35055532327246, 3.2774528786642465, 1.454439782168789, -4.817770704753136, -0.3603976490719374, -2.1922736048837015, 0.2160249562828085, -0.31508552184344296, 0.8302269694237152, -3.8989078232754677, 4.353911085918418, -3.549163719537728, -2.6614020406439414, 2.5242604963639392, -1.3281667633466023, 3.063221330549278, -2.605343857150151, -0.10296389735231681, 1.797724969191024, 1.1852796730105695, 2.4085253787563987, 4.511298574971236, 0.2279561185247676, -5.022659231157002, -1.9302705004209644, -5.7892778180207864, 0.6901962191186737, -5.017542964974304, 2.689050268634367, -4.107035086361726, 2.4160259358569443, -4.471003634430568, 3.22998823606543, 0.8262258637206248, 1.3964295634402326, 0.6837673209445017, -2.9489115003444955, -2.2286692530246874, 4.3898722165286435, 0.4766520360325348, -3.993082686387141, 1.5137742371066825, 4.63170164896687, -2.996594558435171, -5.3155193200304955, 0.8266771219660933, -4.993219311468504, -5.218755476491078, -5.524187332170399, -4.979773776816868, 0.7191406726231557, 2.813829781237364, -1.2866677559302309, -4.03559284397515, 2.691812680588188, 0.5535653332549835, 2.7247128154014524, -3.1628953048385813, 3.1840116574369857, -1.0055572829877457, -4.79293919589358, -0.38522928858222194, 2.6341382864995895, -0.9847184523166694, -2.1205833254816198, -1.514885513599646, 4.077843127216883, -5.774241641413997, 2.6684806760101614, 4.160041414578191, 4.26996594113499, -1.1493853244397911, -5.676766606984887, 1.844205551646529, 2.302828432216862, 2.100278686880049, -4.30142063689642, 3.267552300566197, -4.999501082050136, -0.5521072098409228, 0.21655177046331886, -2.4914470903351833, -0.7893283429525013, 0.03344258885835494, -0.46568746274061557, 3.7272860895617823, -5.607428902253223, 2.569486715451002, -1.2371990635286965, -2.0890779810873243]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 1\", \"marker\": {\"color\": \"rgb(255, 127, 14)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 1\", \"scene\": \"scene4\", \"showlegend\": false, \"text\": [\"666_l_1_m-0_1.99-1_0.33-2_0.2-3_0.74\", \"667_l_1_m-0_0.73-1_0.02-2_0.57-3_0.01\", \"668_l_1_m-0_0.33-1_0.26-2_0.04-3_0.02\", \"669_l_1_m-0_0.1-1_0.21-2_0.43-3_0.35\", \"670_l_1_m-0_1.23-1_0.02-2_0.07-3_0.71\", \"671_l_1_m-0_0.5-1_0.01-2_0.27-3_0.4\", \"672_l_1_c_0_1_3-0_0.9-1_0.03-2_0.32-3_0.76\", \"673_l_1_c_0_1_3-0_0.06-1_0.0-2_0.63-3_0.51\", \"674_l_1_c_0_1_3-0_0.23-1_0.15-2_0.13-3_0.53\", \"675_l_1_c_0_1_3-0_0.41-1_0.13-2_0.83-3_0.46\", \"676_l_1_c_0_1_3-0_0.21-1_0.17-2_0.82-3_0.27\", \"677_l_1_c_0_1_3-0_0.06-1_0.04-2_0.76-3_0.08\", \"678_l_1_c_0_1_3-0_0.07-1_0.09-2_0.94-3_1.04\", \"679_l_1_c_0_1_3-0_0.19-1_0.32-2_0.15-3_0.2\", \"680_l_1_c_0_1_3-0_0.45-1_0.49-2_1.48-3_1.57\", \"681_l_1_c_0_1_3-0_0.33-1_0.03-2_0.37-3_0.26\", \"682_l_1_c_0_1_3-0_0.42-1_0.21-2_0.74-3_0.19\", \"683_l_1_c_0_1_3-0_0.85-1_0.3-2_0.73-3_0.37\", \"684_l_1_c_0_1_3-0_1.19-1_0.07-2_0.19-3_0.54\", \"685_l_1_c_0_1_3-0_0.03-1_0.28-2_0.79-3_1.74\", \"686_l_1_c_0_1_3-0_0.17-1_0.22-2_0.07-3_0.32\", \"687_l_1_c_0_2_3-0_0.09-1_0.19-2_0.1-3_1.54\", \"688_l_1_c_0_1_3-0_0.61-1_0.16-2_0.89-3_0.22\", \"689_l_1_c_0_2_3-0_0.1-1_1.03-2_0.43-3_1.17\", \"690_l_1_c_0_1_3-0_0.82-1_0.1-2_0.66-3_0.96\", \"691_l_1_c_0_2_3-0_0.25-1_0.59-2_0.58-3_0.08\", \"692_l_1_c_0_1_3-0_0.57-1_0.16-2_1.43-3_0.48\", \"693_l_1_c_0_2_3-0_0.61-1_0.21-2_0.03-3_1.04\", \"694_l_1_c_0_1_3-0_0.26-1_0.23-2_0.28-3_0.09\", \"695_l_1_c_0_2_3-0_0.38-1_0.52-2_0.11-3_0.27\", \"696_l_1_c_0_1_3-0_0.05-1_0.47-2_0.51-3_0.22\", \"697_l_1_c_0_2_3-0_0.59-1_0.36-2_0.15-3_1.88\", \"698_l_1_c_0_1_3-0_0.18-1_0.54-2_0.38-3_0.4\", \"699_l_1_c_0_2_3-0_0.05-1_0.51-2_0.19-3_0.62\", \"700_l_1_c_0_1_3-0_0.5-1_0.31-2_0.04-3_0.2\", \"701_l_1_c_0_2_3-0_0.04-1_0.45-2_0.09-3_0.05\", \"702_l_1_c_0_1_3-0_0.96-1_0.12-2_0.16-3_0.05\", \"703_l_1_c_0_2_3-0_0.45-1_0.18-2_0.21-3_0.45\", \"704_l_1_c_0_1_3-0_0.88-1_0.64-2_0.08-3_0.69\", \"705_l_1_c_0_2_3-0_0.32-1_0.15-2_0.14-3_0.39\", \"706_l_1_c_0_1_3-0_0.09-1_0.28-2_0.03-3_0.29\", \"707_l_1_c_0_2_3-0_0.3-1_0.73-2_0.3-3_0.01\", \"708_l_1_c_0_1_3-0_0.05-1_0.48-2_0.37-3_0.14\", \"709_l_1_c_0_2_3-0_0.54-1_1.23-2_0.03-3_0.45\", \"710_l_1_c_0_1_3-0_0.13-1_0.12-2_0.65-3_0.06\", \"711_l_1_c_0_2_3-0_0.28-1_0.2-2_0.6-3_0.52\", \"712_l_1_c_0_1_3-0_0.33-1_0.22-2_0.84-3_0.22\", \"713_l_1_c_0_2_3-0_0.08-1_0.24-2_0.3-3_0.62\", \"714_l_1_c_0_1_3-0_0.18-1_0.16-2_0.63-3_0.17\", \"715_l_1_c_0_2_3-0_0.43-1_0.5-2_0.33-3_0.77\", \"716_l_1_c_0_1_3-0_0.66-1_0.29-2_0.68-3_0.47\", \"717_l_1_c_0_2_3-0_0.07-1_0.36-2_0.23-3_0.14\", \"718_l_1_c_0_1_3-0_0.06-1_0.14-2_0.98-3_1.51\", \"719_l_1_c_0_2_3-0_1.38-1_0.12-2_0.2-3_0.06\", \"720_l_1_c_0_1_3-0_0.51-1_0.02-2_0.18-3_1.12\", \"721_l_1_c_0_2_3-0_0.24-1_0.14-2_0.05-3_0.31\", \"722_l_1_c_0_1_3-0_0.15-1_0.47-2_0.73-3_0.43\", \"723_l_1_c_0_2_3-0_0.02-1_0.17-2_0.05-3_0.41\", \"724_l_1_c_0_1_3-0_0.3-1_0.27-2_0.77-3_0.79\", \"725_l_1_c_0_2_3-0_1.1-1_0.61-2_0.07-3_0.54\", \"726_l_1_c_0_1_3-0_0.31-1_0.01-2_0.11-3_0.08\", \"727_l_1_c_0_2_3-0_0.06-1_0.12-2_0.02-3_0.16\", \"728_l_1_c_0_1_3-0_0.09-1_0.03-2_0.02-3_0.74\", \"729_l_1_c_0_2_3-0_0.47-1_0.3-2_0.09-3_0.97\", \"730_l_1_c_0_1_3-0_0.49-1_0.12-2_0.57-3_0.09\", \"731_l_1_c_0_2_3-0_1.35-1_0.11-2_0.39-3_0.23\", \"732_l_1_c_0_1_3-0_0.32-1_0.05-2_0.58-3_0.25\", \"733_l_1_c_0_2_3-0_0.12-1_0.63-2_0.19-3_0.3\", \"734_l_1_c_0_1_3-0_0.42-1_0.05-2_0.5-3_1.44\", \"735_l_1_c_0_2_3-0_0.16-1_0.67-2_0.08-3_0.14\", \"736_l_1_c_0_1_3-0_0.05-1_0.13-2_0.29-3_0.17\", \"737_l_1_c_0_2_3-0_0.36-1_0.26-2_0.02-3_0.34\", \"738_l_1_c_0_1_3-0_0.42-1_0.03-2_0.17-3_0.01\", \"739_l_1_c_0_2_3-0_0.86-1_0.12-2_0.14-3_1.11\", \"740_l_1_c_0_1_3-0_0.42-1_0.11-2_0.27-3_0.41\", \"741_l_1_c_0_2_3-0_0.31-1_0.61-2_0.03-3_0.73\", \"742_l_1_c_0_1_3-0_0.42-1_0.01-2_0.74-3_0.53\", \"743_l_1_c_0_2_3-0_0.14-1_0.35-2_0.43-3_0.33\", \"744_l_1_c_0_1_3-0_0.84-1_0.07-2_0.52-3_0.69\", \"745_l_1_c_0_2_3-0_0.42-1_0.01-2_0.0-3_0.65\", \"746_l_1_c_0_1_3-0_0.25-1_0.09-2_1.24-3_0.41\", \"747_l_1_c_0_2_3-0_0.55-1_1.38-2_0.23-3_0.43\", \"748_l_1_c_0_1_3-0_2.0-1_0.43-2_0.95-3_1.49\", \"749_l_1_c_0_2_3-0_0.22-1_0.11-2_0.08-3_0.33\", \"750_l_1_c_0_1_3-0_0.57-1_0.5-2_0.18-3_0.17\", \"751_l_1_c_0_2_3-0_0.2-1_0.82-2_0.15-3_0.44\", \"752_l_1_c_0_1_3-0_0.42-1_0.24-2_0.1-3_1.67\", \"753_l_1_c_0_2_3-0_0.85-1_0.37-2_0.08-3_0.11\", \"754_l_1_c_0_1_3-0_0.08-1_0.11-2_0.38-3_0.67\", \"755_l_1_c_0_2_3-0_0.1-1_0.57-2_0.03-3_1.05\", \"756_l_1_c_0_1_3-0_0.15-1_0.46-2_0.2-3_1.4\", \"757_l_1_c_0_2_3-0_0.42-1_0.27-2_0.08-3_0.9\", \"758_l_1_c_0_1_3-0_1.26-1_0.09-2_0.15-3_0.38\", \"759_l_1_c_0_2_3-0_0.34-1_0.39-2_0.23-3_1.08\", \"760_l_1_c_0_1_3-0_0.07-1_0.28-2_0.19-3_0.07\", \"761_l_1_c_0_2_3-0_0.89-1_0.37-2_0.04-3_0.31\", \"762_l_1_c_0_1_3-0_0.02-1_0.01-2_1.11-3_0.43\", \"763_l_1_c_0_2_3-0_0.01-1_0.5-2_0.42-3_0.67\", \"764_l_1_c_0_1_3-0_0.1-1_0.14-2_0.23-3_0.33\", \"765_l_1_c_0_2_3-0_0.3-1_0.09-2_0.17-3_0.59\", \"766_l_1_c_0_1_3-0_1.21-1_0.29-2_0.32-3_0.22\", \"767_l_1_c_0_2_3-0_1.47-1_0.11-2_0.2-3_0.63\", \"768_l_1_c_0_1_3-0_0.18-1_0.29-2_0.07-3_0.17\", \"769_l_1_c_0_2_3-0_0.65-1_0.16-2_0.42-3_0.01\", \"770_l_1_c_0_1_3-0_0.11-1_0.27-2_0.78-3_0.0\", \"771_l_1_c_0_2_3-0_0.63-1_1.02-2_0.21-3_0.01\", \"772_l_1_c_0_1_3-0_1.06-1_0.76-2_1.05-3_0.47\", \"773_l_1_c_0_2_3-0_0.37-1_0.08-2_0.55-3_1.53\", \"774_l_1_c_0_1_3-0_0.37-1_0.23-2_0.79-3_0.08\", \"775_l_1_c_0_2_3-0_1.42-1_0.32-2_0.17-3_0.31\", \"776_l_1_c_0_1_3-0_0.07-1_0.21-2_0.57-3_0.23\", \"777_l_1_c_0_2_3-0_0.07-1_0.1-2_0.26-3_0.2\", \"778_l_1_c_0_1_3-0_1.0-1_0.41-2_0.09-3_0.44\", \"779_l_1_c_0_2_3-0_0.64-1_1.02-2_0.58-3_0.96\", \"780_l_1_c_0_1_3-0_0.92-1_0.34-2_1.19-3_0.12\", \"781_l_1_c_0_2_3-0_0.51-1_0.11-2_0.16-3_0.15\", \"782_l_1_c_0_1_3-0_0.18-1_0.6-2_0.45-3_0.12\", \"783_l_1_c_0_2_3-0_0.31-1_0.51-2_0.19-3_1.44\", \"784_l_1_c_0_1_3-0_0.37-1_0.47-2_1.04-3_0.24\", \"785_l_1_c_0_2_3-0_0.38-1_0.95-2_0.3-3_0.48\", \"786_l_1_c_0_1_3-0_0.17-1_0.17-2_0.25-3_0.11\", \"787_l_1_c_0_2_3-0_0.1-1_0.72-2_0.24-3_0.5\", \"788_l_1_c_0_1_3-0_1.06-1_0.23-2_0.59-3_0.0\", \"789_l_1_c_0_2_3-0_0.05-1_0.73-2_0.3-3_1.62\", \"790_l_1_c_0_1_3-0_0.67-1_0.44-2_0.23-3_1.13\", \"791_l_1_c_0_2_3-0_0.05-1_0.06-2_0.61-3_0.13\", \"792_l_1_c_0_1_3-0_0.18-1_0.07-2_0.55-3_1.37\", \"793_l_1_c_0_2_3-0_0.36-1_0.02-2_0.45-3_0.91\", \"794_l_1_c_0_1_3-0_1.08-1_0.28-2_0.68-3_0.37\", \"795_l_1_c_0_2_3-0_0.52-1_0.38-2_0.16-3_0.11\", \"796_l_1_c_0_1_3-0_0.41-1_0.03-2_0.71-3_0.33\", \"797_l_1_c_0_2_3-0_0.2-1_0.02-2_0.38-3_0.04\", \"798_l_1_c_0_1_3-0_1.01-1_0.0-2_0.86-3_1.02\", \"799_l_1_c_0_2_3-0_0.37-1_0.14-2_0.8-3_0.0\", \"800_l_1_c_0_1_3-0_0.25-1_0.17-2_0.1-3_0.91\", \"801_l_1_c_0_2_3-0_0.24-1_0.03-2_0.44-3_1.34\", \"802_l_1_c_0_1_3-0_0.18-1_0.01-2_0.64-3_1.06\", \"803_l_1_c_0_2_3-0_0.21-1_0.18-2_0.27-3_0.42\", \"804_l_1_c_0_1_3-0_0.14-1_0.27-2_0.01-3_0.07\", \"805_l_1_c_0_2_3-0_0.36-1_0.42-2_0.14-3_0.91\", \"806_l_1_c_0_1_3-0_0.22-1_0.04-2_0.1-3_0.25\", \"807_l_1_c_0_2_3-0_0.43-1_0.94-2_0.47-3_0.47\", \"808_l_1_c_1_2_3-0_1.39-1_0.45-2_0.18-3_0.46\", \"809_l_1_c_0_1_3-0_0.13-1_0.33-2_0.86-3_0.73\", \"810_l_1_c_0_2_3-0_0.62-1_0.45-2_0.74-3_0.75\", \"811_l_1_c_1_2_3-0_1.31-1_0.07-2_0.64-3_0.39\", \"812_l_1_c_0_1_3-0_0.29-1_0.13-2_0.36-3_0.67\", \"813_l_1_c_0_2_3-0_0.53-1_0.49-2_0.27-3_0.21\", \"814_l_1_c_1_2_3-0_0.38-1_0.04-2_0.12-3_0.41\", \"815_l_1_c_0_1_3-0_0.4-1_0.04-2_0.05-3_0.61\", \"816_l_1_c_0_2_3-0_0.02-1_0.44-2_0.33-3_0.37\", \"817_l_1_c_1_2_3-0_1.07-1_0.28-2_0.03-3_0.9\", \"818_l_1_c_0_1_3-0_0.77-1_0.45-2_0.74-3_0.3\", \"819_l_1_c_0_2_3-0_1.61-1_0.25-2_0.2-3_0.06\", \"820_l_1_c_1_2_3-0_1.2-1_0.14-2_0.29-3_0.65\", \"821_l_1_c_0_1_3-0_0.31-1_0.18-2_0.62-3_0.24\", \"822_l_1_c_0_2_3-0_0.47-1_0.22-2_0.56-3_0.38\", \"823_l_1_c_1_2_3-0_0.51-1_0.23-2_0.24-3_0.66\", \"824_l_1_c_0_1_3-0_0.87-1_0.35-2_0.18-3_0.43\", \"825_l_1_c_0_2_3-0_1.51-1_0.28-2_0.65-3_0.48\", \"826_l_1_c_1_2_3-0_1.72-1_0.47-2_0.4-3_0.11\", \"827_l_1_c_0_1_3-0_0.76-1_0.06-2_0.04-3_0.9\", \"828_l_1_c_0_2_3-0_0.44-1_0.74-2_0.07-3_1.12\", \"829_l_1_c_1_2_3-0_0.53-1_0.22-2_0.15-3_0.29\", \"830_l_1_c_0_1_3-0_0.07-1_0.23-2_0.21-3_0.06\", \"831_l_1_c_0_2_3-0_0.39-1_1.29-2_0.26-3_0.24\", \"832_l_1_c_1_2_3-0_0.64-1_0.39-2_0.41-3_0.07\", \"833_l_1_c_0_1_3-0_0.07-1_0.27-2_0.06-3_0.64\", \"834_l_1_c_0_2_3-0_1.1-1_0.55-2_0.14-3_0.15\", \"835_l_1_c_1_2_3-0_0.07-1_0.11-2_0.12-3_0.77\", \"836_l_1_c_0_1_3-0_0.83-1_0.57-2_0.36-3_0.88\", \"837_l_1_c_0_2_3-0_0.83-1_0.06-2_0.09-3_0.36\", \"838_l_1_c_1_2_3-0_0.21-1_0.55-2_0.01-3_0.49\", \"839_l_1_c_0_1_3-0_0.28-1_0.54-2_0.54-3_0.22\", \"840_l_1_c_0_2_3-0_0.36-1_0.2-2_0.18-3_0.36\", \"841_l_1_c_1_2_3-0_0.33-1_0.04-2_0.09-3_0.22\", \"842_l_1_c_0_1_3-0_0.48-1_0.1-2_0.59-3_0.72\", \"843_l_1_c_0_2_3-0_0.59-1_0.58-2_0.18-3_1.01\", \"844_l_1_c_1_2_3-0_0.38-1_0.18-2_0.06-3_0.18\", \"845_l_1_c_0_1_3-0_0.31-1_0.14-2_0.08-3_0.18\", \"846_l_1_c_0_2_3-0_0.53-1_0.04-2_0.33-3_0.15\", \"847_l_1_c_1_2_3-0_0.09-1_0.32-2_0.03-3_1.69\", \"848_l_1_c_0_1_3-0_0.03-1_0.18-2_0.86-3_0.91\", \"849_l_1_c_0_2_3-0_0.09-1_0.19-2_0.4-3_0.52\", \"850_l_1_c_1_2_3-0_1.42-1_0.08-2_0.39-3_0.34\", \"851_l_1_c_0_1_3-0_0.58-1_0.11-2_0.13-3_0.82\", \"852_l_1_c_0_2_3-0_0.04-1_0.14-2_0.28-3_0.04\", \"853_l_1_c_1_2_3-0_0.77-1_0.69-2_0.18-3_0.03\", \"854_l_1_c_0_1_3-0_1.39-1_0.07-2_0.17-3_0.19\", \"855_l_1_c_0_2_3-0_0.04-1_0.13-2_0.44-3_0.07\", \"856_l_1_c_1_2_3-0_2.19-1_0.03-2_0.01-3_0.19\", \"857_l_1_c_0_1_3-0_0.38-1_0.01-2_0.32-3_0.37\", \"858_l_1_c_0_2_3-0_0.37-1_0.18-2_0.6-3_0.58\", \"859_l_1_c_1_2_3-0_0.1-1_0.11-2_0.6-3_0.26\", \"860_l_1_c_0_1_3-0_0.4-1_0.01-2_0.42-3_0.08\", \"861_l_1_c_0_2_3-0_0.18-1_0.54-2_0.11-3_0.24\", \"862_l_1_c_1_2_3-0_0.75-1_0.33-2_0.2-3_0.83\", \"863_l_1_c_0_1_3-0_0.6-1_0.06-2_0.97-3_0.17\", \"864_l_1_c_0_2_3-0_0.19-1_0.49-2_0.37-3_0.17\", \"865_l_1_c_1_2_3-0_0.18-1_0.16-2_0.01-3_0.37\", \"866_l_1_c_0_1_3-0_0.18-1_0.23-2_0.39-3_0.36\", \"867_l_1_c_0_2_3-0_0.96-1_0.79-2_0.14-3_0.09\", \"868_l_1_c_1_2_3-0_0.59-1_0.04-2_0.27-3_0.74\", \"869_l_1_c_0_1_3-0_0.03-1_0.08-2_0.54-3_0.03\", \"870_l_1_c_0_2_3-0_0.45-1_0.05-2_0.15-3_0.24\", \"871_l_1_c_1_2_3-0_0.66-1_0.09-2_0.24-3_0.08\", \"872_l_1_c_0_1_3-0_1.55-1_0.18-2_0.17-3_0.35\", \"873_l_1_c_0_2_3-0_0.58-1_0.96-2_0.17-3_0.22\", \"874_l_1_c_1_2_3-0_0.37-1_0.63-2_0.42-3_0.31\", \"875_l_1_c_0_1_3-0_1.03-1_0.01-2_0.43-3_0.81\", \"876_l_1_c_0_2_3-0_0.03-1_0.21-2_0.29-3_1.09\", \"877_l_1_c_1_2_3-0_1.24-1_0.07-2_0.05-3_1.51\", \"878_l_1_c_0_1_3-0_0.28-1_0.26-2_0.92-3_0.44\", \"879_l_1_c_0_2_3-0_0.12-1_0.23-2_0.37-3_0.53\", \"880_l_1_c_1_2_3-0_0.44-1_0.52-2_0.35-3_0.07\", \"881_l_1_c_0_1_3-0_0.37-1_0.19-2_0.34-3_0.51\", \"882_l_1_c_0_2_3-0_0.46-1_0.35-2_0.36-3_0.0\", \"883_l_1_c_1_2_3-0_0.56-1_0.04-2_0.22-3_0.18\", \"884_l_1_c_0_1_3-0_0.9-1_0.1-2_0.01-3_0.57\", \"885_l_1_c_0_2_3-0_0.1-1_0.99-2_0.03-3_0.78\", \"886_l_1_c_1_2_3-0_0.77-1_0.15-2_0.16-3_0.17\", \"887_l_1_c_0_1_3-0_0.06-1_0.09-2_0.82-3_0.1\", \"888_l_1_c_0_2_3-0_0.64-1_0.69-2_0.0-3_0.67\", \"889_l_1_c_1_2_3-0_0.67-1_0.12-2_0.25-3_0.61\", \"890_l_1_c_0_1_3-0_0.31-1_0.07-2_0.64-3_0.16\", \"891_l_1_c_0_2_3-0_1.06-1_1.63-2_0.27-3_0.53\", \"892_l_1_c_1_2_3-0_2.27-1_0.26-2_0.25-3_0.39\", \"893_l_1_c_0_1_3-0_0.81-1_0.43-2_0.08-3_1.09\", \"894_l_1_c_0_2_3-0_0.05-1_0.3-2_0.14-3_0.52\", \"895_l_1_c_1_2_3-0_1.6-1_0.16-2_0.13-3_0.06\", \"896_l_1_c_0_1_3-0_0.62-1_0.07-2_0.02-3_0.26\", \"897_l_1_c_0_2_3-0_0.46-1_0.77-2_0.17-3_0.21\", \"898_l_1_c_1_2_3-0_1.35-1_0.03-2_0.62-3_1.39\", \"899_l_1_c_0_1_3-0_0.85-1_0.04-2_0.32-3_0.73\", \"900_l_1_c_0_2_3-0_0.7-1_0.31-2_0.0-3_0.08\", \"901_l_1_c_1_2_3-0_1.13-1_0.2-2_0.27-3_0.73\", \"902_l_1_c_0_1_3-0_0.47-1_0.14-2_0.02-3_0.28\", \"903_l_1_c_0_2_3-0_0.59-1_0.33-2_0.45-3_0.29\", \"904_l_1_c_1_2_3-0_1.03-1_0.62-2_0.47-3_0.1\", \"905_l_1_c_0_1_3-0_0.19-1_0.19-2_1.36-3_0.23\", \"906_l_1_c_0_2_3-0_0.61-1_0.01-2_0.08-3_0.92\", \"907_l_1_c_1_2_3-0_0.87-1_0.38-2_0.11-3_0.05\", \"908_l_1_c_0_1_3-0_0.76-1_0.2-2_0.05-3_0.08\", \"909_l_1_c_0_2_3-0_0.22-1_0.26-2_0.17-3_0.48\", \"910_l_1_c_1_2_3-0_0.19-1_0.08-2_0.05-3_1.63\", \"911_l_1_c_0_1_3-0_0.29-1_0.04-2_0.68-3_0.36\", \"912_l_1_c_0_2_3-0_0.18-1_0.26-2_0.5-3_0.52\", \"913_l_1_c_1_2_3-0_0.01-1_0.32-2_0.67-3_0.08\", \"914_l_1_c_0_1_3-0_0.35-1_0.13-2_0.74-3_0.68\", \"915_l_1_c_0_2_3-0_0.07-1_0.27-2_0.16-3_0.52\", \"916_l_1_c_1_2_3-0_0.24-1_0.26-2_0.09-3_0.2\", \"917_l_1_c_0_1_3-0_0.36-1_0.46-2_0.14-3_0.58\", \"918_l_1_c_0_2_3-0_0.99-1_0.73-2_0.65-3_0.03\", \"919_l_1_c_1_2_3-0_0.66-1_0.17-2_0.21-3_0.65\", \"920_l_1_c_0_1_3-0_0.1-1_0.34-2_0.13-3_0.52\", \"921_l_1_c_0_2_3-0_0.7-1_0.21-2_0.19-3_0.72\", \"922_l_1_c_1_2_3-0_0.28-1_0.19-2_0.13-3_0.04\", \"923_l_1_c_0_1_3-0_0.12-1_0.04-2_0.84-3_0.39\", \"924_l_1_c_0_2_3-0_1.07-1_0.16-2_0.09-3_0.05\", \"925_l_1_c_1_2_3-0_0.88-1_0.17-2_0.48-3_1.61\", \"926_l_1_c_0_1_3-0_0.99-1_0.12-2_1.32-3_0.07\", \"927_l_1_c_0_2_3-0_0.2-1_0.22-2_0.19-3_0.04\", \"928_l_1_c_1_2_3-0_1.84-1_0.33-2_0.08-3_0.35\", \"929_l_1_c_0_1_3-0_0.08-1_0.11-2_0.04-3_0.17\", \"930_l_1_c_2_3-0_1.09-1_0.6-2_0.17-3_1.01\", \"931_l_1_c_3-0_0.25-1_0.11-2_0.27-3_0.36\", \"932_l_1_c_3-0_0.65-1_1.06-2_0.38-3_1.03\", \"933_l_1_r-0_1.79-1_0.14-2_0.5-3_1.46\", \"934_l_1_r-0_0.48-1_0.47-2_0.33-3_0.68\", \"935_l_1_r-0_0.52-1_0.67-2_0.59-3_0.96\", \"936_l_1_r-0_1.43-1_0.68-2_0.03-3_0.49\", \"937_l_1_r-0_1.01-1_0.59-2_0.53-3_0.19\", \"938_l_1_r-0_0.11-1_0.71-2_0.32-3_0.88\", \"939_l_1_r-0_0.48-1_0.81-2_0.49-3_0.82\", \"940_l_1_r-0_0.44-1_1.08-2_0.54-3_1.36\", \"941_l_1_r-0_1.97-1_0.41-2_0.41-3_2.38\", \"942_l_1_r-0_0.18-1_0.25-2_0.08-3_0.25\", \"943_l_1_r-0_0.13-1_0.49-2_0.69-3_0.63\", \"944_l_1_r-0_0.63-1_0.9-2_0.2-3_0.77\", \"945_l_1_r-0_1.38-1_0.69-2_0.62-3_0.06\", \"946_l_1_r-0_1.43-1_0.83-2_0.24-3_1.68\", \"947_l_1_r-0_0.25-1_1.21-2_1.05-3_1.34\", \"948_l_1_r-0_0.21-1_0.31-2_1.09-3_1.14\", \"949_l_1_r-0_0.75-1_0.63-2_0.27-3_0.18\", \"950_l_1_r-0_1.44-1_0.2-2_0.19-3_0.15\", \"951_l_1_r-0_0.52-1_0.38-2_1.31-3_1.84\", \"952_l_1_r-0_0.06-1_0.5-2_0.04-3_0.37\", \"953_l_1_r-0_2.36-1_0.12-2_0.5-3_1.04\", \"954_l_1_r-0_0.28-1_0.18-2_0.71-3_0.85\", \"955_l_1_r-0_2.23-1_0.29-2_0.43-3_0.06\", \"956_l_1_r-0_0.08-1_0.04-2_0.09-3_0.83\", \"957_l_1_r-0_0.09-1_0.61-2_0.48-3_1.32\", \"958_l_1_r-0_2.86-1_0.06-2_1.06-3_0.73\", \"959_l_1_r-0_1.02-1_0.58-2_0.51-3_0.85\", \"960_l_1_r-0_0.73-1_0.4-2_0.47-3_0.54\", \"961_l_1_r-0_0.12-1_0.62-2_1.04-3_0.51\", \"962_l_1_r-0_0.74-1_0.06-2_0.52-3_0.04\", \"963_l_1_r-0_1.11-1_0.05-2_0.21-3_0.34\", \"964_l_1_r-0_0.36-1_0.31-2_1.11-3_1.7\", \"965_l_1_r-0_1.17-1_0.45-2_0.63-3_1.24\", \"966_l_1_r-0_0.51-1_0.56-2_0.39-3_0.31\", \"967_l_1_r-0_0.16-1_0.51-2_0.45-3_1.67\", \"968_l_1_r-0_0.23-1_0.22-2_1.08-3_0.77\", \"969_l_1_r-0_0.49-1_0.86-2_0.3-3_1.6\", \"970_l_1_r-0_1.5-1_0.76-2_0.17-3_0.56\", \"971_l_1_r-0_0.47-1_0.89-2_0.14-3_0.01\", \"972_l_1_r-0_0.93-1_0.4-2_0.83-3_1.14\", \"973_l_1_r-0_0.05-1_0.76-2_0.63-3_0.66\", \"974_l_1_r-0_0.29-1_0.61-2_0.27-3_2.31\", \"975_l_1_r-0_0.03-1_0.31-2_0.36-3_1.13\", \"976_l_1_r-0_0.45-1_0.47-2_0.08-3_0.55\", \"977_l_1_r-0_0.41-1_0.67-2_0.95-3_0.25\", \"978_l_1_r-0_0.4-1_0.43-2_0.72-3_0.93\", \"979_l_1_r-0_2.44-1_0.16-2_1.07-3_1.24\", \"980_l_1_r-0_1.82-1_1.23-2_1.28-3_0.79\", \"981_l_1_r-0_0.52-1_0.32-2_0.38-3_0.54\", \"982_l_1_r-0_0.13-1_0.09-2_0.1-3_1.07\", \"983_l_1_r-0_1.02-1_0.26-2_0.25-3_0.66\", \"984_l_1_r-0_0.07-1_0.4-2_0.8-3_2.37\", \"985_l_1_r-0_2.1-1_0.28-2_0.33-3_1.39\", \"986_l_1_r-0_0.08-1_0.62-2_0.87-3_1.56\", \"987_l_1_r-0_0.5-1_0.21-2_0.38-3_0.77\", \"988_l_1_r-0_0.35-1_0.9-2_0.76-3_0.09\", \"989_l_1_r-0_0.35-1_0.79-2_0.64-3_0.19\", \"990_l_1_r-0_1.96-1_0.37-2_0.59-3_0.9\", \"991_l_1_r-0_0.39-1_0.26-2_0.55-3_1.64\", \"992_l_1_r-0_1.41-1_0.77-2_0.94-3_2.11\", \"993_l_1_r-0_0.02-1_0.33-2_0.54-3_0.31\", \"994_l_1_r-0_0.19-1_0.29-2_1.49-3_0.44\", \"995_l_1_r-0_0.32-1_0.52-2_0.62-3_1.61\", \"996_l_1_r-0_0.67-1_1.58-2_0.17-3_1.19\", \"997_l_1_r-0_2.06-1_0.3-2_0.19-3_0.22\", \"998_l_1_r-0_0.12-1_0.9-2_1.05-3_1.46\", \"999_l_1_r-0_1.59-1_0.3-2_0.59-3_1.73\", \"1000_l_1_r-0_0.07-1_0.03-2_0.07-3_0.03\", \"1001_l_1_r-0_1.01-1_0.02-2_0.47-3_0.42\", \"1002_l_1_r-0_0.75-1_0.05-2_0.5-3_1.43\", \"1003_l_1_r-0_0.82-1_0.13-2_0.09-3_1.08\", \"1004_l_1_r-0_1.31-1_0.06-2_0.0-3_0.04\", \"1005_l_1_r-0_0.9-1_1.08-2_0.55-3_0.44\", \"1006_l_1_r-0_0.85-1_0.14-2_0.11-3_1.14\", \"1007_l_1_r-0_0.86-1_0.95-2_0.13-3_0.58\", \"1008_l_1_r-0_0.62-1_0.93-2_0.54-3_0.51\", \"1009_l_1_r-0_0.04-1_0.05-2_0.72-3_0.63\", \"1010_l_1_r-0_1.11-1_0.41-2_0.75-3_1.04\", \"1011_l_1_r-0_0.94-1_0.29-2_1.06-3_2.42\", \"1012_l_1_r-0_1.19-1_0.25-2_0.12-3_1.26\", \"1013_l_1_r-0_0.05-1_0.26-2_0.09-3_0.03\", \"1014_l_1_r-0_0.87-1_0.34-2_0.13-3_0.8\", \"1015_l_1_r-0_0.44-1_0.48-2_0.23-3_0.42\", \"1016_l_1_r-0_1.3-1_0.51-2_0.65-3_0.06\", \"1017_l_1_r-0_1.52-1_0.44-2_0.7-3_1.62\", \"1018_l_1_r-0_0.24-1_0.89-2_0.21-3_0.24\", \"1019_l_1_r-0_0.38-1_0.79-2_0.03-3_0.33\", \"1020_l_1_r-0_1.43-1_0.38-2_0.78-3_1.07\", \"1021_l_1_r-0_0.54-1_0.74-2_0.49-3_1.02\", \"1022_l_1_r-0_0.03-1_0.2-2_0.32-3_0.85\", \"1023_l_1_r-0_0.85-1_0.87-2_0.57-3_0.83\", \"1024_l_1_r-0_1.54-1_0.16-2_0.62-3_0.56\", \"1025_l_1_r-0_0.97-1_0.3-2_0.3-3_0.19\", \"1026_l_1_r-0_0.61-1_0.01-2_0.33-3_1.38\", \"1027_l_1_r-0_1.47-1_0.4-2_0.45-3_0.55\", \"1028_l_1_r-0_0.91-1_0.25-2_1.09-3_0.4\", \"1029_l_1_r-0_0.08-1_0.31-2_0.39-3_0.14\", \"1030_l_1_r-0_0.14-1_1.01-2_0.17-3_1.14\", \"1031_l_1_r-0_1.1-1_0.15-2_1.05-3_1.45\", \"1032_l_1_r-0_0.84-1_0.63-2_0.75-3_2.04\", \"1033_l_1_r-0_0.59-1_1.06-2_1.15-3_1.05\", \"1034_l_1_r-0_1.36-1_0.01-2_0.49-3_1.12\", \"1035_l_1_r-0_0.08-1_0.22-2_0.98-3_0.57\", \"1036_l_1_r-0_1.51-1_0.23-2_0.15-3_0.73\", \"1037_l_1_r-0_0.55-1_1.36-2_0.23-3_1.2\", \"1038_l_1_r-0_1.27-1_1.25-2_0.1-3_0.22\", \"1039_l_1_r-0_1.42-1_0.37-2_0.34-3_0.75\", \"1040_l_1_r-0_0.87-1_0.13-2_0.34-3_0.21\", \"1041_l_1_r-0_2.2-1_0.18-2_0.12-3_0.75\", \"1042_l_1_r-0_0.22-1_0.51-2_1.14-3_0.98\", \"1043_l_1_r-0_0.4-1_0.44-2_0.74-3_0.86\", \"1044_l_1_r-0_0.02-1_0.19-2_0.59-3_0.54\", \"1045_l_1_r-0_0.12-1_0.79-2_0.26-3_0.34\", \"1046_l_1_r-0_1.03-1_0.2-2_0.16-3_0.4\", \"1047_l_1_r-0_0.13-1_0.11-2_0.92-3_0.96\", \"1048_l_1_r-0_0.42-1_0.95-2_0.75-3_0.04\", \"1049_l_1_r-0_0.58-1_0.45-2_0.29-3_1.65\", \"1050_l_1_r-0_2.4-1_0.03-2_0.26-3_1.39\", \"1051_l_1_r-0_0.92-1_0.38-2_0.92-3_0.08\", \"1052_l_1_r-0_1.67-1_0.23-2_0.23-3_0.39\", \"1053_l_1_r-0_1.22-1_0.02-2_0.23-3_0.44\", \"1054_l_1_r-0_0.62-1_0.75-2_0.17-3_0.94\", \"1055_l_1_r-0_0.45-1_0.17-2_0.12-3_2.21\", \"1056_l_1_r-0_0.3-1_0.55-2_1.4-3_0.51\", \"1057_l_1_r-0_1.12-1_1.48-2_0.35-3_0.28\", \"1058_l_1_r-0_1.97-1_0.59-2_0.38-3_1.2\", \"1059_l_1_r-0_0.37-1_1.12-2_0.12-3_0.14\", \"1060_l_1_r-0_0.12-1_0.51-2_0.24-3_0.06\", \"1061_l_1_r-0_1.24-1_0.31-2_0.83-3_0.54\", \"1062_l_1_r-0_0.49-1_0.28-2_0.2-3_1.13\", \"1063_l_1_r-0_0.24-1_0.21-2_0.08-3_0.05\", \"1064_l_1_r-0_0.24-1_1.12-2_0.71-3_0.75\", \"1065_l_1_r-0_0.89-1_1.83-2_0.58-3_0.71\", \"1066_l_1_r-0_0.13-1_1.62-2_0.33-3_1.38\", \"1067_l_1_r-0_0.57-1_0.43-2_0.48-3_0.09\", \"1068_l_1_r-0_0.35-1_0.56-2_0.58-3_0.38\", \"1069_l_1_r-0_1.73-1_0.77-2_0.46-3_0.31\", \"1070_l_1_r-0_2.03-1_0.03-2_0.45-3_0.32\", \"1071_l_1_r-0_0.4-1_0.39-2_0.93-3_0.89\", \"1072_l_1_r-0_0.43-1_0.45-2_0.43-3_1.75\", \"1073_l_1_r-0_0.22-1_0.41-2_0.35-3_0.9\", \"1074_l_1_r-0_0.37-1_0.39-2_0.81-3_1.36\", \"1075_l_1_r-0_0.2-1_0.02-2_0.07-3_0.97\", \"1076_l_1_r-0_0.56-1_0.19-2_0.58-3_0.75\", \"1077_l_1_r-0_1.2-1_0.11-2_0.09-3_0.1\", \"1078_l_1_r-0_0.05-1_0.31-2_0.17-3_1.33\", \"1079_l_1_r-0_0.6-1_0.15-2_0.18-3_1.34\", \"1080_l_1_r-0_1.08-1_0.92-2_0.38-3_1.29\", \"1081_l_1_r-0_1.21-1_0.61-2_0.38-3_0.54\", \"1082_l_1_r-0_0.07-1_0.08-2_0.06-3_0.03\", \"1083_l_1_r-0_0.93-1_0.13-2_0.05-3_1.21\", \"1084_l_1_r-0_0.49-1_0.13-2_0.43-3_0.66\", \"1085_l_1_r-0_0.72-1_0.85-2_0.68-3_1.87\", \"1086_l_1_r-0_1.02-1_0.16-2_0.14-3_0.78\", \"1087_l_1_r-0_2.57-1_0.77-2_0.18-3_1.09\", \"1088_l_1_r-0_0.63-1_0.58-2_0.18-3_1.53\", \"1089_l_1_r-0_0.37-1_0.34-2_1.12-3_0.27\", \"1090_l_1_r-0_0.35-1_0.07-2_0.85-3_0.72\", \"1091_l_1_r-0_1.02-1_0.4-2_0.51-3_1.21\", \"1092_l_1_r-0_3.07-1_0.65-2_0.61-3_0.57\", \"1093_l_1_r-0_0.57-1_0.65-2_0.45-3_0.47\", \"1094_l_1_r-0_0.77-1_0.19-2_0.48-3_0.51\", \"1095_l_1_r-0_1.08-1_0.83-2_1.14-3_0.52\", \"1096_l_1_r-0_0.37-1_0.35-2_0.39-3_1.67\", \"1097_l_1_r-0_0.16-1_0.27-2_0.16-3_0.8\", \"1098_l_1_r-0_2.15-1_0.71-2_0.61-3_0.37\", \"1099_l_1_r-0_0.3-1_0.3-2_0.69-3_1.23\", \"1100_l_1_r-0_0.17-1_0.1-2_0.35-3_0.22\", \"1101_l_1_r-0_0.57-1_0.13-2_0.25-3_0.7\", \"1102_l_1_r-0_0.65-1_0.09-2_0.37-3_0.9\", \"1103_l_1_r-0_0.18-1_0.64-2_0.12-3_2.11\", \"1104_l_1_r-0_0.79-1_0.39-2_0.28-3_2.63\", \"1105_l_1_r-0_0.28-1_0.36-2_0.26-3_2.6\", \"1106_l_1_r-0_0.63-1_0.02-2_0.59-3_0.45\", \"1107_l_1_r-0_1.3-1_0.33-2_0.35-3_0.42\", \"1108_l_1_r-0_1.64-1_0.67-2_0.96-3_0.37\", \"1109_l_1_r-0_0.02-1_0.18-2_1.05-3_0.74\", \"1110_l_1_r-0_0.55-1_0.02-2_0.62-3_0.93\", \"1111_l_1_r-0_0.4-1_0.7-2_0.63-3_1.21\", \"1112_l_1_r-0_1.37-1_0.15-2_0.6-3_0.17\", \"1113_l_1_r-0_2.07-1_0.62-2_0.92-3_0.59\", \"1114_l_1_r-0_0.54-1_0.3-2_0.53-3_1.18\", \"1115_l_1_r-0_1.42-1_0.34-2_0.59-3_0.2\", \"1116_l_1_r-0_0.58-1_0.64-2_1.17-3_2.24\", \"1117_l_1_r-0_0.32-1_0.62-2_0.27-3_0.15\", \"1118_l_1_r-0_0.76-1_0.87-2_0.46-3_0.13\", \"1119_l_1_r-0_0.62-1_0.1-2_0.06-3_0.55\", \"1120_l_1_r-0_0.97-1_0.86-2_0.13-3_0.26\", \"1121_l_1_r-0_1.53-1_0.85-2_0.02-3_1.53\", \"1122_l_1_r-0_0.1-1_0.38-2_0.62-3_0.82\", \"1123_l_1_r-0_0.78-1_0.73-2_0.51-3_0.48\", \"1124_l_1_r-0_0.23-1_0.8-2_0.1-3_2.14\", \"1125_l_1_r-0_0.44-1_0.26-2_0.4-3_0.35\", \"1126_l_1_r-0_1.38-1_1.22-2_0.02-3_0.23\", \"1127_l_1_r-0_1.06-1_1.03-2_0.2-3_0.31\", \"1128_l_1_r-0_1.35-1_0.68-2_0.03-3_1.03\", \"1129_l_1_r-0_0.35-1_0.92-2_0.98-3_0.25\", \"1130_l_1_r-0_1.81-1_0.41-2_0.77-3_0.84\", \"1131_l_1_r-0_0.78-1_0.57-2_0.38-3_0.8\", \"1132_l_1_r-0_0.69-1_1.51-2_0.38-3_0.49\", \"1133_l_1_r-0_0.08-1_0.7-2_0.76-3_0.2\", \"1134_l_1_r-0_1.14-1_0.42-2_0.58-3_0.66\", \"1135_l_1_r-0_0.22-1_0.01-2_0.81-3_2.49\", \"1136_l_1_r-0_0.96-1_1.14-2_0.58-3_0.3\", \"1137_l_1_r-0_0.45-1_0.17-2_0.74-3_0.9\", \"1138_l_1_r-0_0.58-1_0.2-2_1.39-3_0.09\", \"1139_l_1_r-0_0.03-1_0.44-2_0.0-3_2.16\", \"1140_l_1_r-0_0.65-1_0.91-2_0.25-3_0.93\", \"1141_l_1_r-0_0.26-1_0.95-2_0.57-3_1.86\", \"1142_l_1_r-0_1.5-1_0.02-2_0.22-3_0.47\", \"1143_l_1_r-0_0.88-1_0.16-2_0.33-3_0.54\", \"1144_l_1_r-0_0.37-1_1.12-2_0.44-3_0.13\", \"1145_l_1_r-0_0.71-1_0.53-2_0.47-3_0.2\", \"1146_l_1_r-0_0.89-1_0.93-2_1.08-3_1.36\", \"1147_l_1_r-0_0.22-1_0.06-2_0.6-3_0.65\", \"1148_l_1_r-0_0.95-1_1.12-2_0.78-3_0.43\", \"1149_l_1_r-0_0.45-1_0.33-2_0.21-3_0.49\", \"1150_l_1_r-0_0.95-1_0.44-2_0.29-3_0.79\", \"1151_l_1_r-0_0.21-1_0.69-2_0.13-3_2.13\", \"1152_l_1_r-0_0.84-1_0.26-2_0.02-3_0.24\", \"1153_l_1_r-0_0.37-1_0.29-2_0.77-3_1.31\", \"1154_l_1_r-0_1.2-1_0.12-2_0.13-3_0.28\", \"1155_l_1_r-0_1.66-1_0.9-2_0.59-3_1.88\", \"1156_l_1_r-0_1.41-1_0.55-2_0.03-3_0.62\", \"1157_l_1_r-0_0.29-1_0.79-2_0.88-3_1.55\", \"1158_l_1_r-0_0.44-1_0.09-2_0.53-3_0.35\", \"1159_l_1_r-0_2.17-1_0.1-2_0.99-3_1.97\", \"1160_l_1_r-0_0.26-1_0.55-2_0.27-3_1.05\", \"1161_l_1_r-0_1.16-1_0.41-2_0.91-3_1.0\", \"1162_l_1_r-0_0.65-1_0.49-2_1.04-3_1.09\", \"1163_l_1_r-0_0.07-1_0.63-2_0.86-3_0.02\", \"1164_l_1_r-0_1.47-1_1.07-2_0.32-3_0.75\", \"1165_l_1_r-0_1.1-1_0.28-2_0.65-3_0.3\", \"1166_l_1_r-0_1.14-1_0.76-2_0.78-3_0.86\", \"1167_l_1_r-0_1.8-1_0.24-2_0.05-3_0.49\", \"1168_l_1_r-0_0.52-1_0.17-2_0.27-3_0.26\", \"1169_l_1_r-0_1.24-1_0.6-2_0.25-3_0.73\", \"1170_l_1_r-0_0.81-1_0.88-2_0.37-3_1.23\", \"1171_l_1_r-0_2.15-1_0.71-2_0.59-3_0.1\", \"1172_l_1_r-0_0.28-1_0.03-2_0.9-3_1.37\", \"1173_l_1_r-0_2.02-1_0.65-2_0.95-3_1.95\", \"1174_l_1_r-0_1.05-1_0.64-2_0.53-3_2.49\", \"1175_l_1_r-0_0.7-1_0.2-2_0.22-3_0.01\", \"1176_l_1_r-0_2.01-1_0.74-2_0.37-3_0.44\", \"1177_l_1_r-0_0.73-1_0.91-2_0.97-3_1.77\", \"1178_l_1_r-0_1.26-1_0.61-2_0.91-3_1.47\", \"1179_l_1_r-0_1.23-1_0.16-2_0.15-3_2.8\", \"1180_l_1_r-0_0.5-1_0.79-2_0.32-3_0.79\", \"1181_l_1_r-0_1.39-1_0.56-2_0.63-3_0.97\", \"1182_l_1_r-0_0.6-1_0.3-2_1.42-3_0.24\", \"1183_l_1_r-0_1.23-1_0.14-2_0.07-3_0.88\", \"1184_l_1_r-0_0.45-1_0.12-2_0.31-3_0.3\", \"1185_l_1_r-0_0.42-1_1.16-2_0.4-3_1.73\", \"1186_l_1_r-0_0.89-1_0.17-2_0.78-3_1.79\", \"1187_l_1_r-0_0.23-1_0.19-2_0.28-3_1.26\", \"1188_l_1_r-0_0.78-1_0.36-2_0.1-3_1.5\", \"1189_l_1_r-0_0.44-1_0.25-2_1.26-3_1.08\", \"1190_l_1_r-0_0.17-1_0.03-2_0.99-3_0.21\", \"1191_l_1_r-0_1.24-1_0.52-2_0.15-3_0.77\", \"1192_l_1_r-0_1.12-1_0.3-2_0.97-3_0.46\", \"1193_l_1_r-0_0.71-1_0.14-2_0.38-3_1.75\", \"1194_l_1_r-0_0.3-1_0.49-2_0.69-3_0.32\", \"1195_l_1_r-0_1.08-1_0.91-2_0.05-3_0.52\", \"1196_l_1_r-0_0.52-1_0.7-2_0.05-3_1.14\", \"1197_l_1_r-0_1.13-1_0.06-2_0.3-3_0.69\", \"1198_l_1_r-0_1.91-1_0.28-2_0.25-3_1.67\", \"1199_l_1_r-0_1.68-1_0.9-2_0.98-3_0.45\", \"1200_l_1_r-0_0.1-1_0.38-2_1.32-3_0.63\", \"1201_l_1_r-0_0.5-1_0.17-2_0.44-3_0.95\", \"1202_l_1_r-0_0.33-1_0.92-2_0.7-3_1.36\", \"1203_l_1_r-0_0.81-1_0.22-2_0.47-3_1.68\", \"1204_l_1_r-0_0.59-1_0.7-2_0.67-3_0.88\", \"1205_l_1_r-0_0.65-1_0.09-2_0.19-3_0.97\", \"1206_l_1_r-0_1.22-1_0.14-2_0.24-3_1.64\", \"1207_l_1_r-0_0.72-1_0.53-2_0.46-3_0.84\", \"1208_l_1_r-0_0.01-1_0.25-2_0.06-3_0.48\", \"1209_l_1_r-0_0.21-1_0.37-2_0.28-3_0.14\", \"1210_l_1_r-0_1.79-1_0.15-2_0.09-3_1.37\", \"1211_l_1_r-0_1.67-1_1.03-2_0.12-3_0.15\", \"1212_l_1_r-0_0.0-1_0.2-2_0.43-3_0.18\", \"1213_l_1_r-0_1.07-1_0.22-2_0.61-3_1.43\", \"1214_l_1_r-0_1.07-1_0.2-2_0.15-3_0.69\", \"1215_l_1_r-0_0.26-1_0.2-2_0.84-3_0.87\", \"1216_l_1_r-0_0.08-1_0.31-2_0.21-3_2.2\", \"1217_l_1_r-0_1.09-1_0.05-2_1.56-3_2.26\", \"1218_l_1_r-0_0.21-1_1.37-2_0.34-3_0.27\", \"1219_l_1_r-0_3.37-1_0.56-2_0.08-3_0.15\", \"1220_l_1_r-0_0.54-1_0.84-2_0.35-3_0.15\", \"1221_l_1_r-0_0.23-1_0.52-2_0.27-3_1.98\", \"1222_l_1_r-0_0.3-1_0.74-2_0.08-3_0.17\", \"1223_l_1_r-0_0.76-1_0.22-2_0.69-3_1.83\", \"1224_l_1_r-0_0.55-1_0.96-2_0.11-3_1.54\", \"1225_l_1_r-0_0.15-1_0.35-2_0.94-3_1.23\", \"1226_l_1_r-0_1.56-1_1.06-2_0.05-3_0.24\", \"1227_l_1_r-0_0.09-1_0.46-2_0.12-3_0.07\", \"1228_l_1_r-0_1.04-1_1.13-2_0.28-3_0.69\", \"1229_l_1_r-0_0.87-1_0.13-2_0.05-3_1.48\", \"1230_l_1_r-0_0.03-1_1.38-2_1.01-3_0.18\", \"1231_l_1_r-0_0.61-1_0.16-2_0.51-3_0.72\", \"1232_l_1_r-0_0.62-1_0.18-2_0.27-3_0.19\", \"1233_l_1_r-0_0.28-1_0.07-2_0.74-3_0.25\", \"1234_l_1_r-0_1.13-1_1.22-2_1.09-3_0.47\", \"1235_l_1_r-0_0.14-1_0.02-2_0.06-3_0.77\", \"1236_l_1_r-0_0.86-1_0.62-2_0.96-3_1.19\", \"1237_l_1_r-0_1.0-1_0.2-2_0.18-3_1.08\", \"1238_l_1_r-0_0.76-1_0.44-2_0.6-3_0.57\", \"1239_l_1_r-0_0.52-1_0.19-2_0.25-3_0.59\", \"1240_l_1_r-0_2.26-1_0.02-2_0.35-3_1.32\", \"1241_l_1_r-0_0.93-1_0.06-2_0.34-3_0.42\", \"1242_l_1_r-0_2.52-1_0.59-2_0.12-3_0.44\", \"1243_l_1_r-0_0.74-1_0.09-2_0.16-3_0.46\", \"1244_l_1_r-0_0.26-1_1.14-2_0.79-3_0.09\", \"1245_l_1_r-0_0.52-1_0.33-2_0.08-3_1.8\", \"1246_l_1_r-0_0.48-1_0.14-2_0.99-3_1.23\", \"1247_l_1_r-0_0.42-1_0.57-2_1.02-3_1.36\", \"1248_l_1_r-0_0.11-1_0.2-2_0.1-3_0.9\", \"1249_l_1_r-0_0.55-1_1.0-2_0.92-3_0.05\", \"1250_l_1_r-0_0.86-1_0.28-2_0.21-3_0.22\", \"1251_l_1_r-0_0.5-1_0.39-2_0.75-3_1.4\", \"1252_l_1_r-0_0.77-1_0.23-2_0.71-3_0.22\", \"1253_l_1_r-0_0.96-1_0.26-2_0.56-3_0.36\", \"1254_l_1_r-0_0.56-1_0.24-2_0.13-3_1.43\", \"1255_l_1_r-0_0.16-1_0.61-2_0.15-3_1.24\", \"1256_l_1_r-0_0.86-1_0.2-2_0.42-3_0.66\", \"1257_l_1_r-0_0.09-1_1.09-2_0.75-3_1.99\", \"1258_l_1_r-0_0.71-1_0.07-2_0.08-3_0.12\", \"1259_l_1_r-0_0.02-1_1.14-2_0.59-3_2.0\", \"1260_l_1_r-0_1.23-1_0.73-2_0.42-3_0.76\", \"1261_l_1_r-0_0.35-1_0.38-2_0.66-3_0.04\", \"1262_l_1_r-0_0.48-1_0.67-2_0.25-3_1.48\", \"1263_l_1_r-0_2.08-1_0.17-2_0.28-3_0.03\", \"1264_l_1_r-0_0.25-1_0.15-2_0.03-3_0.36\", \"1265_l_1_r-0_0.05-1_0.1-2_0.89-3_1.69\", \"1266_l_1_r-0_2.61-1_0.08-2_0.12-3_1.16\", \"1267_l_1_r-0_0.79-1_0.63-2_0.84-3_0.57\", \"1268_l_1_r-0_0.46-1_0.14-2_0.24-3_0.74\", \"1269_l_1_r-0_0.46-1_0.25-2_0.32-3_0.25\", \"1270_l_1_r-0_1.02-1_1.66-2_0.17-3_0.63\", \"1271_l_1_r-0_1.89-1_0.66-2_0.42-3_0.04\", \"1272_l_1_r-0_0.56-1_0.35-2_1.76-3_0.09\", \"1273_l_1_r-0_0.79-1_0.43-2_0.16-3_1.49\", \"1274_l_1_r-0_1.3-1_0.25-2_0.67-3_0.9\", \"1275_l_1_r-0_0.59-1_0.16-2_0.87-3_0.93\", \"1276_l_1_r-0_0.05-1_0.16-2_0.84-3_1.93\", \"1277_l_1_r-0_0.02-1_0.06-2_0.57-3_1.63\", \"1278_l_1_r-0_1.34-1_0.08-2_0.42-3_0.73\", \"1279_l_1_r-0_1.39-1_0.57-2_0.22-3_1.83\", \"1280_l_1_r-0_0.66-1_0.26-2_0.24-3_0.75\", \"1281_l_1_r-0_0.06-1_0.8-2_0.34-3_0.96\", \"1282_l_1_r-0_0.39-1_0.42-2_0.27-3_0.32\", \"1283_l_1_r-0_0.52-1_0.14-2_1.03-3_0.19\", \"1284_l_1_r-0_0.08-1_0.09-2_0.79-3_0.95\", \"1285_l_1_r-0_0.98-1_0.99-2_0.48-3_0.29\", \"1286_l_1_r-0_0.16-1_0.38-2_0.63-3_0.29\", \"1287_l_1_r-0_0.52-1_0.45-2_0.03-3_0.71\", \"1288_l_1_r-0_1.23-1_1.0-2_0.02-3_0.6\", \"1289_l_1_r-0_0.01-1_0.87-2_0.41-3_0.13\", \"1290_l_1_r-0_0.82-1_1.11-2_0.69-3_0.13\", \"1291_l_1_r-0_0.79-1_0.93-2_0.1-3_0.49\", \"1292_l_1_r-0_0.74-1_1.43-2_0.86-3_1.0\", \"1293_l_1_r-0_0.44-1_0.07-2_0.26-3_0.11\", \"1294_l_1_r-0_1.23-1_0.63-2_0.69-3_0.71\", \"1295_l_1_r-0_0.28-1_0.09-2_0.61-3_1.94\", \"1296_l_1_r-0_0.09-1_0.12-2_0.87-3_1.4\", \"1297_l_1_r-0_0.93-1_0.04-2_0.06-3_0.52\", \"1298_l_1_r-0_1.73-1_0.04-2_0.69-3_0.26\", \"1299_l_1_r-0_0.53-1_0.36-2_0.66-3_1.2\", \"1300_l_1_r-0_0.67-1_0.37-2_0.98-3_0.69\", \"1301_l_1_r-0_0.54-1_0.33-2_0.77-3_0.53\", \"1302_l_1_r-0_1.06-1_0.73-2_0.51-3_0.32\", \"1303_l_1_r-0_0.13-1_0.12-2_0.48-3_0.39\", \"1304_l_1_r-0_0.36-1_0.11-2_0.11-3_0.21\", \"1305_l_1_r-0_0.51-1_1.22-2_1.43-3_0.44\", \"1306_l_1_r-0_0.43-1_0.26-2_0.44-3_0.0\", \"1307_l_1_r-0_1.72-1_0.03-2_0.02-3_1.3\", \"1308_l_1_r-0_1.28-1_0.4-2_0.16-3_1.94\", \"1309_l_1_r-0_1.33-1_0.13-2_0.93-3_0.71\", \"1310_l_1_r-0_0.61-1_0.54-2_0.59-3_1.22\", \"1311_l_1_r-0_0.1-1_0.39-2_0.49-3_0.03\", \"1312_l_1_r-0_0.03-1_0.41-2_0.32-3_1.69\", \"1313_l_1_r-0_0.42-1_0.73-2_0.12-3_2.04\", \"1314_l_1_r-0_0.19-1_0.53-2_0.02-3_0.71\", \"1315_l_1_r-0_0.13-1_0.65-2_0.23-3_0.97\", \"1316_l_1_r-0_0.41-1_0.81-2_0.49-3_1.85\", \"1317_l_1_r-0_1.76-1_1.08-2_0.21-3_0.72\", \"1318_l_1_r-0_1.07-1_0.01-2_0.28-3_0.5\", \"1319_l_1_r-0_0.98-1_1.38-2_0.63-3_0.85\", \"1320_l_1_r-0_1.18-1_0.06-2_0.66-3_0.59\", \"1321_l_1_r-0_0.14-1_0.19-2_0.72-3_1.24\", \"1322_l_1_r-0_1.03-1_1.2-2_0.44-3_0.47\", \"1323_l_1_r-0_0.66-1_0.56-2_0.24-3_1.18\", \"1324_l_1_r-0_0.19-1_0.27-2_0.33-3_0.0\", \"1325_l_1_r-0_1.62-1_0.43-2_0.53-3_0.72\", \"1326_l_1_r-0_1.21-1_1.13-2_0.34-3_0.58\", \"1327_l_1_r-0_0.44-1_0.13-2_0.85-3_0.72\", \"1328_l_1_r-0_0.18-1_0.5-2_0.7-3_0.02\", \"1329_l_1_r-0_0.21-1_1.55-2_0.12-3_0.14\", \"1330_l_1_r-0_0.34-1_0.64-2_0.24-3_1.14\", \"1331_l_1_r-0_0.14-1_0.52-2_0.6-3_0.41\"], \"type\": \"scatter3d\", \"x\": [0.7367808755289185, 0.013042851547576229, 0.021203596314155915, 1.451255719371631, -0.7089965042287093, 0.39550198440137585, 0.761993455933694, -1.094452135554215, -0.7842676980580504, 0.7485296567341881, -0.6733046073959779, 1.2100168958272643, 1.4169558589872553, -0.8767892757996395, -2.8171205302387543, -2.675504216807502, 0.23034774484150788, -1.4915055894264644, 0.5359128491358274, 1.743268912369408, -0.32097107992024576, 1.5364050985065365, 1.1275641887226882, -2.1177649593000067, 2.0346490895684592, -1.9114720009725752, 0.48359625052056887, -1.573189239291111, 0.0894053594108637, 0.2730623767793465, -1.6990231401787919, 1.8816441301279343, 0.4016109703220736, 0.6246839966885349, -0.9486814579248609, 1.6225917309498037, 0.04546587481849129, -0.7746877030311763, -2.6927389849213137, -0.38996246888947084, 0.2927396672894167, 2.6303854591450904, 0.14029591690670062, 0.4491002904304773, -0.5222959159767087, 0.524097077518294, 0.7095315515298894, -0.6180352161178047, 0.6262865955593151, -1.0675385569670364, 0.4656772642822651, -0.5985892158995336, 1.510370373239117, -3.2364508978994246, 1.120060685068757, -0.6598630452091001, -0.6297380524778936, 3.6021758959997943, -2.08436235954321, 0.5414404649955826, 0.23768074869024614, 0.16171919708631877, -3.245728965485383, 0.9713690843243155, 0.6397967986645321, 0.9142693725330722, 0.24903958090766576, -0.2957397164958463, 1.6225107248403043, 0.5721607425812456, 0.17041207041448092, 0.3436856673932196, 0.012549716797331856, 1.1086356864225473, 0.45116848742305393, 0.7265538106478446, 0.7297047988981753, 0.8072749502150152, -0.6855298877740272, 0.650505551965531, 0.41310062211539345, 0.42576233796783725, 1.8481558153000517, 0.32551790476708287, -0.8820639097219323, -0.43541142015848255, 1.667433893014326, 0.10910756781521935, -1.456249234900467, 1.0512085580514703, 1.8182896143654408, 0.9004484805932609, 0.383745392423978, -1.081218061526592, 0.07186710187574619, -1.0637032648025602, 0.4333158643487951, 0.6717971469966291, 0.3282216156405624, 0.8342508042370624, -0.27528609955710726, 0.6252343925848034, 0.7986246870676064, -2.5865840256313777, -0.003491124897605946, -4.314862059697726, -0.8207777440888211, -2.40366066243395, 0.07518556990016712, -0.30741950544210694, 0.2259998514441992, 1.01654338683461, -0.44103961420038285, 2.4299405491138106, 0.12412959406119306, 0.570107741332524, -0.12182957534625327, 1.8340162110630405, 0.24318604389811038, -2.2681903294320422, 0.10652510546517946, -2.6118583652723073, 1.3144816666710124, -1.6230864430194256, -1.1262197248986103, 0.12905314640856735, 1.3743465893079176, -0.9081193040532434, -0.6350784078977237, 0.15027731612075956, 1.0166591495372197, -2.0904157987009717, -2.610052288128662, -0.3356722031009062, 0.9110949512332256, 1.3442464843350237, -1.821043101773392, -0.418475530565964, 0.4767839634912969, 0.9075151363349354, 0.25013822698129373, -1.9763635014681045, 0.45795596240878766, 0.7307575472568915, 0.7450024206960519, -0.7958501626975938, 0.6736465210799853, -2.2234730771431384, -2.0709443050974925, 0.6136669426890002, -2.025911582040572, 0.8972288875523986, 0.9195731146815407, 0.06335726051515778, 1.5410415753486535, -1.2045911788085966, 1.1219811224650327, -1.1565801592718907, 0.4274242948727469, -0.4843841247820456, 0.10819341221249523, -2.328458186229793, -3.5187062607348536, -0.2933013909517984, -1.5451752583004335, 0.24463630081726606, 0.552727495667032, 0.6448725506593211, 0.1481557074949169, 0.7674412067797141, 1.2978774684455425, 0.3621441338932583, 1.2454080024177379, 0.21823177972431274, -0.3578557047354709, -4.022465892517175, -4.124633551759905, -1.3540745781891188, 0.1752629983723828, 0.1788787561184495, 0.15026136952324332, -1.7120770373667331, -0.9663186939790172, -1.9386405128925772, 0.34193942351823403, 0.8176713686288173, -3.0293782680847903, 0.6869321852295436, 0.6138186342513305, -1.4663209765221081, -1.1883637725308425, -1.383768375300682, 0.5759865339798096, 0.26495286980153643, 0.7665463204404603, -0.23853061974473266, 0.8297632277598501, 0.16665225682817564, -2.8460354875446283, -2.068050909620507, -0.35504137840061223, 0.09328725929052872, 1.6661917534401467, 0.11544679600674512, 0.42077053658263663, 0.08026760226980567, -0.349503462168003, -0.2195662696350188, 0.506443597670913, 0.8147065943709508, 1.3828114209651954, 1.5067597191325066, 1.3181957684979944, -0.9447731472054853, 0.07242595653900574, -0.5053937478052529, 0.0019666241989955147, -1.0648434631319257, -1.9292823997449546, -0.8083606462107744, 0.6042415189354904, 0.10369910534470628, 0.6663356288122761, 0.6052486322640109, 0.1609540824971516, -2.8474454753509537, 0.38939460370832535, 1.0867674612674079, 1.1713579395989444, 0.05933815045090629, 1.493409028995091, -0.7052197190865159, -1.4112362557450946, 0.7289086308775414, 0.07976720500058976, 1.6494580872685605, 0.3268087171249241, -0.29020552174499004, -2.206712935831537, 0.2305391313169627, 0.9181640624574579, 0.04724468242908997, -0.8988856965963392, -1.5921883011417974, -1.6253325853670515, 0.3625254404453233, -2.08313367312242, -0.1800919762322537, -2.8066919397649963, 1.2118731233700104, 0.790168427658255, -0.7926464314904801, 0.4153720539179262, 0.9473137777983611, 0.7995835093917059, 0.7221325650570392, -1.2863065721470504, -2.754581155527524, 0.5978471565386347, -2.4122994717819006, 0.07435400988120389, 1.474445077397665, -1.2885800935101686, 0.16641675964088298, -2.512284530840118, -0.3613000085239878, 1.303534615512154, -1.4557923777653303, -4.382863773832343, -0.958162240358467, -1.2767450996017242, -0.18967154688345156, -2.5238918945330497, -1.3482417016266144, -2.4622615132611347, -2.6909477053484565, -1.638600639974559, -2.230521654513522, -1.0439475665335043, -0.06137180731699565, -2.1351034678704433, -1.9496720301129498, -2.0439890783333667, -1.0648425861250415, -1.4176455863432533, -1.9113846273400028, -0.3701888747900103, -1.0382111999770924, -2.332470015425652, -2.044775877153821, -0.8302430641687041, -3.0879628383625994, -0.7306065391657875, -0.8465115283184317, -0.5379914637021028, -0.5061424070634678, -1.8273864520482654, -0.3373355245629174, -1.6954366035590986, -2.1603353039201276, -0.31025938933435815, -1.6728185370226796, -1.8883629822855053, -1.602593079512146, -0.5551353692318006, -2.4008987231202714, -2.108516276617787, -1.5137116670791504, -3.4336534390813167, -3.271019389808586, -2.8346056955901364, -0.7982835084493283, -2.51958592892667, -2.358558302963436, -1.4281606797811053, -2.3707264470813154, -1.9374728674363446, -0.6569183075277409, -2.3699775510996477, -1.9889430034833624, -4.054190926767686, -0.7744982839542088, -0.6234337702959318, -1.582060918387503, -0.9042444460254058, -2.5483185181834482, -2.1081907862188305, -0.939303436526484, -0.8295715874290345, -1.6141999284756952, -2.617036912956528, -2.520139158491722, -1.461116847301972, -1.968338648477796, -0.025244787514536515, -0.4191904533251294, -1.9760879585947522, -1.080035565476656, -0.04045730618849641, -0.43755562464757536, -2.346128825433043, -0.5843589441301182, -0.51086319159755, -0.633110540044075, -1.044307374261644, -2.96048278187771, -1.260516128403099, -0.027425536106452597, -2.9549037939078273, -0.4188913494436709, -0.48623830219517605, -1.8910000950783625, -0.2445011663468819, -0.32966577070333924, -1.069974712672218, -1.406595996776484, -0.8480622138844605, -1.6596049234359218, -0.5603281382109191, -0.26999774055825354, -2.829720090270071, -0.5522939421394069, -0.40301235566654314, -0.13982441989425598, -1.2786622625870159, -1.4456061543147636, -2.342765241527844, -2.7651412582200248, -2.1734678207638876, -3.0583444470958128, -0.7265049743053418, -1.1958751182873175, -0.7664901341298971, -1.6017699198283988, -1.238541218913921, -1.782096039787303, -1.0248304205592536, -1.9423838103819429, -0.5433851647985077, -0.7450855621964942, -1.7145816022148526, -1.066385476485097, -0.044204060049751415, -1.647084671650056, -1.38638611887078, -0.08469005746622316, -1.3003550334882603, -3.8910290926821545, -0.9406940880983063, -2.2103715143170026, -0.5079401480246645, -0.2805047463697411, -1.2275632486490835, -1.008295632795192, -0.5647173459759447, -0.5364584619852732, -1.1280181510975975, -0.04789036568154004, -0.7478564690748319, -1.0643585337293002, -2.9178875116820473, -2.66785027988388, -0.37692870198082107, -2.336354596801062, -0.8263975525131503, -2.6471110071887907, -4.404144785706613, -0.9004054045539062, -1.8694442792962107, -1.9156694329349815, -1.8102854372877621, -0.10445820557743635, -1.3293959248646534, -3.012035343966241, -1.2905873735939961, -2.5665443674053217, -1.5153631602744961, -1.2100195661876385, -1.2503415214107316, -2.3561767889201866, -0.7827622930238034, -1.4647716311692887, -1.5265687925345532, -0.2709969211685469, -0.7762233609697131, -1.2121921240354605, -0.5678390269364071, -1.952939519191164, -1.3941751616902627, -1.348940772387681, -3.063214119739743, -1.5778453796818048, -1.1246896757933755, -1.9813916749481568, -4.535535304324815, -0.7047927019267309, -2.897850517259606, -2.108565444241277, -2.7723712034126424, -2.5953476335800314, -1.4709263186667076, -2.5533643945584252, -2.713745077751364, -0.7413202067558318, -2.493121010639591, -1.2145959713538534, -0.16867324293858244, -0.8661928011589637, -1.18167389497337, -0.19975522797323353, -2.2430232381166464, -0.14936596359440824, -3.046101972902115, -4.775400196808246, -2.604602817156316, -1.528523331159075, -3.0010894488865114, -0.4842598161662979, -2.13789055214348, -0.34828969154106426, -3.255427490558156, -3.178393924016756, -1.8183591811357682, -1.1928800026902788, -1.8293228779819546, -0.7993963122605849, -2.670875553807247, -1.337207568810146, -1.3332689772799768, -3.34393923738832, -1.1494378040775506, -0.8955451790828343, -0.09340194709031524, -2.1572273886791473, -0.9256896442080222, -2.4383103789901908, -2.88992762379019, -0.8237507512319349, -0.12692115869637033, -2.464411296631228, -2.294294125052879, -2.0526362661406607, -0.4337194347501402, -0.4857049383032127, -1.5237660429390463, -2.7670426917701985, -0.23877474380535968, -4.466838404862102, -1.445554365804542, -1.8843578322071655, -1.0279144312299366, -1.834373969953197, -2.5982087813009374, -1.9667657001241454, -1.8108725334990996, -4.170902473048562, -1.2342629774828415, -0.47532376910845575, -0.747855959877259, -2.0005011764476435, -2.6698498520558793, -1.43869217268784, -0.5746621049850438, -3.281872521796414, -1.226339304462114, -2.4543037652853297, -2.5771384551701915, -1.9545184449774617, -3.071319916923737, -0.009139423768248611, -1.5660723581577862, -2.0435737950725734, -1.4696207915474497, -2.7977567449839023, -0.7908313159128104, -0.9732129421000378, -0.9919456273445483, -3.500160949219709, -2.090368519130286, -1.728781905788423, -1.7892974125693746, -1.9961137629720824, -2.3269040906680285, -1.6132509107966135, -0.8777700028476755, -0.7735080367281155, -3.7702772350528555, -2.4020334090494666, -0.9776605247269415, -0.5236452431916738, -2.401140965774367, -1.9587371931598747, -2.646288982052427, -2.1837577740000667, -0.6327629157299763, -2.2804861464609774, -1.558098635783347, -1.8296357959216984, -0.8778605430532642, -2.2945770075558922, -1.635665905744568, -2.2443322251405977, -0.7520867704130321, -2.120362056826944, -2.8271816405872876, -1.9835692901193176, -0.1765378252498533, -1.4282687937089302, -2.6736504522568745, -0.8689424040112157, -2.2025279516863288, -2.2560757864846925, -0.27340531524036904, -0.15256762656761635, -2.055719110436204, -2.3674132687046425, -0.48327511176574134, -1.8324851911692375, -1.8159452227786839, -1.6613094519239606, -0.7248604382140208, -2.462315253408895, -0.8892532050759925, -2.7267824023876712, -0.1832015759382165, -0.9273857236306329, -2.069456979990951, -0.2533571320456548, -0.7449701664566835, -1.9654072433057932, -1.1893346497962398, -1.4653698883394937, -2.968081986738575, -1.2478232919280308, -3.6937402520350573, -0.4209065136564948, -0.9055256856013476, -1.1821620293695942, -0.09074157330345156, -1.978772732693146, -1.2251415773779235, -2.2853193312729445, -0.9037562492371262, -4.158534649881287, -0.2233281193682255, -2.1239587192831806, -0.22349968411303944, -2.1738789002891075, -1.454014737439235, -1.5045901154816117, -0.6612157319000097, -1.9940340082263501, -0.7595880449992561, -3.6378346927372553, -0.7554379488783188, -0.520663457029548, -2.1363205310513638, -1.106437061117598, -0.4665982023750809, -1.6899259590760969, -1.9649581504983504, -1.469031331722556, -2.0535640866449354, -1.5122444121226737, -0.6327055055659371, -0.040621932208145806, -2.7867353650936506, -2.733562653591803, -0.9012995747096755, -1.1259114463762128, -1.9309549978340215, -1.6326884136854092, -1.5223254699014899, -3.8800870500462548, -2.8623074181914996, -3.1414880686419644, -0.31703656148048875, -0.1938702602069, -0.951313575768213, -0.290768598164852, -1.6646515874753756, -3.2785714091869678, -0.5990459199213638, -0.12923021539052015, -2.968753562349419, -0.9435669899973137, -1.0042307241865664, -3.6871986600032884, -0.7085419654733656, -1.93985322783924, -1.4015184020762328, -0.5217364812663716, -1.819464165851569, -1.9612940655911226, -0.6928130660434209, -1.8612692113912306, -0.3194455224749172, -2.311650197071982, -0.2100957978424145, -1.2573779985092435, -1.045629512838593, -1.3000693944179649, -1.9392029318208563, -1.3275670029814592, -3.798005791219435, -0.15180286351353223, -2.9799127414911153, -2.2279347466778754, -2.097424501469571, -1.2109538744319086, -1.8520416598340277, -0.7164588195274457, -0.5009589726254894, -0.8530964104782853, -0.8839029788475921, -1.8094055438570589, -0.4722389402605187, -1.1842137644305852, -2.9720245909540286, -3.457284045947792, -1.5663313919996036, -0.7199886296828473, -1.9099774195910353, -0.46377333671518306, -1.8731122190345109, -0.9594710986352827], \"y\": [0.8491941685891528, 4.074825199258266, 0.4628929252460261, 0.3491922673855481, -1.1723259867180427, 1.6549376232988788, 3.038697960242466, -1.7726726516122873, -0.5320913348344494, 0.45682607603549386, -0.27118087881732444, 0.08071876421198443, 1.3513721404425636, -0.19524293962180694, -1.5688306627183808, -0.26146836097084813, -0.19330365606033406, -0.36736749369714117, 1.0737967006628049, 1.8756992419853917, -0.41685901787650015, 1.6325817358366081, -0.8831689478364342, -1.171772858872417, 0.9625019227924779, -0.07762152114255305, -0.7903746894477923, -3.1554853140519787, 0.890569965947631, 2.005463123807842, -0.21569593084262761, 2.7457477665942474, 2.2250395353312338, 0.9664445144617272, -0.19964750491772176, -0.048984706519410226, 3.215705237585552, -0.45064086080780275, -0.6904133755833004, -0.4719532056548479, 2.7093172476632574, -0.005885108807070605, 2.599086850963893, 1.1367325222843863, -0.05689637084983379, 1.5961314151619501, 0.22301425109911865, -1.8440317808842037, -0.16921353198379396, -0.7724746195988108, 2.089925842371464, -0.1358384538763251, -2.0817059671318203, -0.060813859778862334, 1.308596258058495, -0.6220961399208773, -0.430394728042671, 0.6107693554862734, -0.8538397143471352, 1.160335993493934, 0.07961663684061948, 0.7389301801330563, -0.741654867583575, 0.9834838244555133, 2.97298646063354, -0.22577013835748905, 1.36147979083715, -1.6288785198816775, 2.1538293833837114, 0.13902742560869374, 1.7769336707204588, -1.7537741205613688, 3.6880172804145044, -1.793476584766955, -0.41453736085226, 1.7932350184514656, 0.5255143546028527, -0.32500740283509244, -1.6064708273496136, 1.7266722706050261, 2.320217847668699, 1.7154559786367498, -1.4879090265538717, 0.9766975757028384, -0.17445142370689726, -1.602045833777923, 2.6757058007477514, -0.9865112942314869, -0.6664605997057598, 1.416145355136105, 1.5704770183994077, 2.8646823742840315, 0.9300986815243232, -1.1655638181418362, 0.2683656465494465, -0.31479988382556234, -1.7022172589443185, 1.8329296940392925, 1.4164537750852604, 0.5904785555489244, -0.22259489350061745, 1.992810033258954, -0.1666160649173707, -0.013863240871262894, -0.5682727768137601, -0.014985289612978958, -0.9908463487004278, -1.6430471541985425, 0.3298097394810712, -0.3677579980037351, 0.45665448513705487, -0.20497299269993774, -1.3147496697011722, -0.9598314121078118, -0.7083007199838516, 0.1457266461904817, -1.940161776839695, -1.43785900682477, 0.3206075280245927, -0.47717092808008243, 0.33031940704503515, -0.4957171711298656, 0.2298134764408608, -1.7743387691209893, -1.1916552404323846, 1.795835562406278, 1.3991894371086626, -1.5761430511946304, -0.36610592366179695, -0.19876649054474305, 0.32874512054581995, -0.04329397322162065, -1.0216926823191983, -0.0035924141912020424, 2.1759651146458685, 1.8243800137457507, -1.0565402877815382, -0.7971015957907048, 0.07293655694586076, 1.7974389907673571, 2.619731016286363, -0.4715134397084033, 0.7545735696152897, 1.5088079364001734, 1.1966480253395593, -0.3861580631293746, 3.1384294704105726, -0.21289499934449285, -0.4138224735435658, 2.2279073996049767, -0.3736079825233294, 2.0532698015165236, 0.3009166762705844, 1.421684039337957, -0.648656919292927, -0.23591855687972685, 3.401892559555833, -0.6591420585405239, 1.7070264546673863, -1.0391435632444193, 1.6263996051934966, -1.047400740799295, -1.4251401905065828, -0.6434256436091645, -0.058529539631742455, 1.7599449258583058, 0.07118469913231185, -0.9723457260255803, 0.4301407222522651, 3.193659994057299, 0.8818647198597486, 1.2226128549426498, -0.8057787785750037, -0.5163008007951804, -1.8927337708463785, -0.21798046576916152, -0.716584740233539, -1.0106068189140842, 2.4801006747492718, 1.3837948548395569, -0.14835471297863134, -1.6940657277033733, -1.876094542364588, -0.5240187349736287, -1.2272274029943366, -2.535474482497054, -0.03732098331164724, -0.03109134401314484, 0.3872014597841794, -0.07096003655882122, -0.18579472448358336, -0.3679592310797084, 1.032346587388015, -0.47467273861481996, 0.07867781827338605, -0.8086169700180363, 2.788337206133491, 2.420942096573004, -0.1716373504006632, -0.36645263763439595, -1.637271527603826, 1.9930755336319643, 0.7365920789842474, -0.03391456592923281, -0.23567326184441284, 0.43413779260736485, -0.4047454094485956, -0.29375661103896933, -0.3139150725308575, 1.5764704160139962, 1.0857924979661067, 2.026778113050537, 0.43818775880015903, -0.53113955242105, 1.3817317869082073, -0.8556428185635605, -0.26681281426972103, -0.1798389541003016, -0.571031225794429, -0.7786556420902617, -0.1736313432074339, 1.533488020196488, 1.3915284702075081, 2.2007637742926827, 1.3085205419946937, -0.5256380370063134, 1.535481484310952, 1.8995547952496548, 0.6251556544338807, 0.5039471152664767, 0.25745052977607297, -0.8988685306972712, -1.3916737332427744, -1.5151337471607769, 1.100018411089157, -0.7333825887113135, 0.27725293507920523, -0.9896842339037741, -0.3115737313702043, 0.9854628556910277, 1.8420752239622677, 3.9735499773449177, -0.07701986983319697, -0.48378072102354475, -1.7426697614257587, 1.4690694634778492, -0.5234846918832197, -0.08346160035159644, -0.6793376264841884, 0.5197746260267357, -0.20256283033099098, -0.5786642787306895, 0.033988452389488666, 2.1079534949797916, 0.5249951533561283, 3.2859040132370496, -0.03556412760564087, -0.3918161230352364, 0.05408860079663658, -1.6074274266850908, 2.6580713141718597, 0.4298612668982936, -0.349494676650165, 2.207345044873742, -1.0083509984398549, -0.9406031304926101, 1.0253454413826293, 2.3295266157818357, 0.6779979522518476, 1.8770707119971273, 0.48630908466755474, 0.9321680841183753, 0.8756754329665866, 0.8165614288976932, 1.3572197070325756, 2.379675166603362, 0.2508349244632714, 0.6255914503685158, 0.7724520268770523, 1.3153334977755926, 1.6766909800207381, 1.7496332009676658, 1.1446572067887615, 0.1794071029440536, 0.14667162392743371, 1.8418475122243962, 1.578754614108666, 1.333845357426184, 0.8510373537191268, 0.05798867213364578, 1.48822325579339, 1.3238217678478428, 1.5791897544524542, 1.466405864697962, 1.325416193000883, 3.0437491125779363, 2.6848002158892523, 0.5680834660751737, 1.9595981228788233, 1.7354191241481831, 1.7680167294134388, 2.014819796363583, 0.7741381521315858, 2.930515206665758, 1.0552625157871678, 0.014749742446423464, 1.85050777749746, 0.6633979602541451, 2.3105475476528223, 1.1266111361676547, 0.762435907431027, 1.595231499388788, 2.0619872593846993, 3.1529635509884044, 0.7885241297329334, 0.5357350581827034, 1.4004179468303974, 0.8830258481075495, 2.5986658594716374, 1.3941819647268212, 1.5645611380247981, 3.0796523844535164, 0.0925057049540351, 0.1939355863199923, 1.9294582067940365, 2.2054817442678223, 2.5520289047654545, 0.30787157683260746, 1.1609692985033964, 1.721568312757586, 2.637955731784185, 1.4716952017167828, 1.6654955571449568, 1.7317348750517123, 1.3965359873444037, 1.9950662926228233, 1.4314647244059726, 2.5112274242165062, 2.859496768772308, 0.5942167591047826, 1.1380700822291037, 2.9513307807132914, 0.6443081640406121, 2.900151912872512, 1.050204573783279, 2.4231976574961505, 2.413578444201129, 1.1347974071000173, 0.7989922170386794, 2.139849064346813, 1.6686097776208197, 1.618800004811173, 1.3579053836350985, 2.6284984509555147, 1.499644804873291, 1.0208834366577217, 1.8129523954991078, 0.8418462278410246, 0.8289200254341289, 0.19270673128069848, 1.3834262319491488, 1.5773053447302043, 1.560770052330433, 2.541677224798623, 2.8233692339459395, 1.6285141301200854, 2.0636979126409773, 1.0487236530562296, 1.1220569574363681, 0.5685569592331481, 2.8372869912684635, 1.660181102448909, 0.22157109677378428, 0.7463650694111255, 0.20502003961306114, 0.748777337635331, 0.9776450003248081, 0.8610177214853421, 1.0179473323210304, 0.34043197950356807, 0.40486447239876855, 0.9602938428260436, 3.6568054988180716, 1.9719791776968059, 2.435269912000194, 2.5514183485759188, 0.3915130285841347, 0.4394712163761969, 2.4223287109792615, 3.483109110609542, 2.119734337279832, 2.007652742745586, 1.338681708225234, 0.1376886788310966, 0.06451984010561262, 2.502974757247305, 1.740532192572341, 1.3475681194620837, 2.394046868509778, 0.7079018271919406, 1.3804363859964668, 0.0892575038222112, 0.3833616604897463, 0.31033538376114644, 1.2625759851059764, 2.311395217235673, 1.7535812099364168, 1.2412155998397507, 1.356823468504892, 0.9692730650232215, 0.7549598918710008, 1.8855838009709194, 2.8666740780720534, 1.3429819573857804, 1.6210569290896997, 1.0672326007938793, 0.02755725448486246, 2.0062182191789786, 0.6555627715287431, 1.8698486793615592, 1.2048923828643807, 1.790000010465829, 1.8348458151098646, 2.220796155632648, 0.7239249754486029, 1.8452598464359848, 2.86877173848265, 0.46578257294958036, 0.5111457149718506, 0.5195364911849566, 1.669219851520837, 0.7970947926522772, 3.0617994657066774, 1.225686830507833, 0.22277583490711506, 0.6952069585033123, 0.8972610292134848, 3.0650173515092307, 2.6284555931089404, 4.33646127235674, 0.6634523971354382, 0.4154997497619882, 0.37398166317002657, 2.4027064021997395, 0.9314319582835388, 2.747476903131015, 0.33045145386706376, 1.1712926944009563, 1.602148051532249, 1.4955022401750195, 2.6733090984368073, 1.63030699817452, 2.9743812484027394, 0.5514195526539198, 0.2609918077401766, 2.497503345228131, 2.4018618125137943, 3.311326121508564, 2.235376113998491, 2.1427400264918113, 0.6476647127037145, 0.30594745786366784, 1.032774590638698, 1.4123097931216386, 0.8374736221035816, 1.5646588087429518, 1.827492197284586, 0.4105767235147332, 0.6649540813896473, 3.293282653701268, 1.019288499325982, 2.2760510559149445, 0.9007399899426287, 2.6400290541974076, 1.7889492162215896, 1.8607790841922842, 0.47309401146509167, 3.3039026589057148, 2.9061997334430556, 2.0097027336009416, 1.3556493893234693, 2.6645084526231972, 1.2508668747091063, 1.8006726152431178, 2.0246509733373665, 2.133991811155438, 2.8756019847098715, 1.308485710889015, 1.60910629302369, 2.41281366462958, 0.6207866701401861, 2.447554747576409, 1.246036670640006, 2.44664038565994, 1.0486821699461955, 1.0023946229799552, 1.0949186858094275, 0.020362705262524816, 1.0576721563002105, 1.2336165523936289, 0.8621884903923618, 1.5599936290821899, 2.5979738911830363, 0.7288725645027239, 1.2661524810437, 0.10352258114955182, 1.369949862952478, 2.2036139094702447, 2.719359767482037, 2.385912231456179, 0.4431622480770364, 1.7701118567684409, 1.492174300491191, 2.8172008821491206, 1.4161936452024484, 1.1357453442782424, 0.2361229544207587, 0.8788652584096158, 0.2954889966286107, 2.846920213973399, 2.9170704744610605, 1.6394289847004824, 3.2750862569719255, 1.0754088114537177, 0.21299848804389443, 4.282977079220075, 1.90391418694301, 1.748440482395718, 1.164044673833113, 1.0241478963656825, 1.1394327818918135, 0.6947020844495875, 1.6735240871289554, 0.447694523267118, 1.5718456621338, 1.0808964107228085, 1.360754820236704, 1.6802841131932547, 1.117907161189887, 0.9701734573874105, 1.6914849711587954, 0.8399565026019161, 0.48225108536172545, 0.1377059834208434, 1.367830109372207, 2.020745487321406, 1.8883820175702386, 1.567112580364466, 0.6862003363916829, 1.6560454584175788, 3.7074884725769692, 2.2920662845113373, 2.415538267778972, 0.9150443561852877, 2.3204228842146883, 2.6301675327736023, 0.17428661235746867, 2.1979360656646265, 1.5388647696745554, 1.2304226427358185, 0.30258204842816794, 0.1955594076190751, 1.4969794101296832, 1.480647726849556, 1.9558444487875049, 0.7206505687017306, 0.8881133304609303, 2.1064598378885497, 0.4669381947710667, 0.7683933250539904, 2.6908232063311135, 2.3918667840246917, 0.5720427556765065, 3.029701172493983, 1.4522681521842666, 3.902381744020211, 0.43778873018553155, 0.4578075248644087, 2.1540797427046185, 1.8038010080268396, 2.079764163140605, 1.357384137891123, 1.718911595781294, 0.04708596728582903, 3.3225180983739335, 1.3957974150065613, 3.3616652856929035, 0.4977492970229205, 1.4310617107920143, 1.2405078584565372, 1.0941175614648821, 2.0983852549178836, 0.11729519463933136, 3.922473013210471, 0.7991980080820799, 1.0245999923707587, 1.4769566247174521, 2.320239519580409, 0.36431138795403806, 2.255371612761346, 1.164472687856987, 0.5717099578341784, 1.2283876201026005, 0.2533033228483379, 1.7579849232574176, 0.5090202530447981, 0.08640224328740942, 1.4852530097407406, 1.663517124419457, 0.9349526274523026, 3.7833725379761183, 1.898541235014805, 0.728864886755368, 1.8271485587643608, 1.1447419435298418, 1.849011367770533, 1.742554431692356, 1.580198233073197, 3.0423684072402932, 1.7609870997439985, 1.0421549308407518, 0.7072313823115058, 3.6959515943979446, 1.2928674621615783, 0.6981187481179341, 0.4893786779748396, 1.4945221797210924, 0.1098643555965555, 1.1443154496794292, 2.3430578416721906, 3.08186976503082, 1.3435147216710615, 0.8768881971322687, 1.203702655295937, 3.4308531923246193, 1.3736382618668364, 2.7476172318035132, 2.1817632592094287, 0.32520386064762963, 0.4390643495870088, 0.0029105736216031852, 2.088732649121388, 2.246877071789937, 2.4497567493504295, 1.2194182410106682, 0.02819869094014138, 2.5485276916986304, 2.0420013282071032, 0.7083229844592498, 0.9653575687746894, 1.9544966941275193, 1.4913859533227658, 3.0336984909816866, 3.782909731195616, 0.5868708327879095, 1.2428397215793932, 1.3756328355835983, 2.5983566746783713, 1.7753503355272464, 3.7431955504432493, 0.5844720524205556, 1.5958703690820601, 0.022489659341337176, 0.1369431784347781, 1.1400845838070195, 0.41091937325839345], \"z\": [1.4857926560235217, 4.381767361435364, -2.5443356792658065, 1.4937025818817729, 1.2430925454680253, -4.0050160356806295, -3.76828202181442, 0.5055372048120121, -2.4986277642404806, -4.755172934528057, 1.9130337423947017, 4.158373451695833, -1.035467966466575, 4.525061042706734, -3.302688108721227, -2.4550666331623736, -0.3709316089164023, -2.2596381910609136, 2.5778744945306444, 2.7341467005969458, -0.3454118876189982, 2.0245070534248297, -0.21551021919110713, 3.060249147418797, -1.7720559149230963, 0.8055146817108714, 4.050907241170941, 1.0442481596632343, 4.535912035657396, -2.6100870038118513, 2.500919032080483, 3.2652397973712057, -4.8935081469119375, -1.1022110030691818, -5.175427665590544, -1.8701238909731002, 4.28630663163715, 4.077212384850257, 2.360611479742741, 3.192941704424297, -5.633340430888399, 0.4714554956182466, 3.334795690429188, 0.6087921125829787, 3.8904078778320157, -0.6988117132796088, -0.3636133325416733, 2.565894127749263, -2.1760477673232517, -4.866581386128681, -2.6414661548534086, -3.6242041459841987, 2.0563159597712737, -0.11267017326472306, 2.6652586387215598, 0.3143626228144525, -1.7651865819880044, 0.4146193401040099, -0.7851580370849556, 2.8146446989128284, 4.6119554616670415, -2.70293933700289, 3.5583163881961086, 1.8339506931143505, -0.08850698811211011, -1.6557344661294744, -0.256736175858606, 2.6783928369186283, -1.4413797214640276, -0.8865673046838216, 1.1142126057118515, 1.4734757845550206, 2.370818883275242, 1.8490489443699802, -0.8861603349145302, 2.259994396568696, -0.7331088569956945, -1.5120421972943792, -4.605624085700943, -4.398724018380441, -3.9590850330740373, -5.069721685830893, -2.903243148003564, 3.578777539166018, -1.0711323826655148, -5.046133625756687, -5.784173097206867, 3.189641934287871, 3.6130572324159287, 4.2048999460670204, -1.3985440384773158, -5.232088356159104, -5.5656930047701945, -5.017179405014726, -0.5458865615493185, -0.6082968258513279, 3.101040995275837, 2.4497833482550027, -5.046474607610694, -1.6550364236965924, 4.537606407840527, 2.224962337235156, -1.1775515881100374, 0.7469910069434018, 0.10213767537245744, 2.95041412977604, 0.46872745678152583, 1.5281529469328197, -0.9846616981012097, -5.1903751033702195, -5.674816110730047, 2.237675208201071, 3.012648974698725, -1.9820825707181702, -5.721686591292438, -5.643047352423225, 0.5306512364681488, 1.7602874731127258, -4.247024185308642, 4.575937954730528, -2.3593923324006787, -5.236939856291944, -0.0017025906895673515, -5.083166316893744, 1.3444920575165327, -2.8132787198597238, 2.316308028315876, -5.513943278167621, 1.428796116642566, 0.1068530205264091, 3.0866861282168037, -4.115434900703257, -4.678110361300967, 1.4571075082173657, 1.8459471779884584, 2.7531978868809377, -1.3816179322647208, 1.3108498734025815, -0.8237048909368285, -3.3911654297050844, -2.3239369639740075, -4.971036352478267, -3.4865168461636276, -5.680733205492347, -5.1866238116703824, -4.812949559696777, -2.8185310975437425, -0.44837909390004604, -0.481310066842739, -5.597823478065059, 2.9635256504227447, 4.502237174367662, -2.0628983387636013, 3.8840225625963383, 2.491136865357805, 2.422158514022887, -0.3759426028317101, 0.9931588182714277, 2.8187875613649167, -4.011722417426025, 4.516566996601731, 0.8988428525604482, 1.1159714165906536, -3.969333666813437, -4.60470682282888, -2.7117555662579553, 3.6358613717960937, 1.4887821541321147, -4.712173855423789, 1.6405435660512833, -4.497349638571103, 2.102864179125234, 0.49115435307630406, 1.7761523226608817, 4.079384622244029, -3.5527778052812584, 4.179959206679595, -2.1412904289166024, 2.9320920939332398, -3.975119983548019, -5.5587645606512135, 4.297248192123736, -0.9130181850010644, 1.3599332057457758, -3.8808427910287504, -3.1066511726839194, -4.5711597923157505, -1.3459924704715647, -0.18651103485425935, -1.3513964739429838, -3.093096390582036, -4.86842000341737, 2.996746134809851, 4.100233260103619, -3.3627326799465598, 0.7017075178131114, 2.656884321413938, -5.030834527434004, 0.9461911031041428, -5.087928594726993, 0.47708223691393314, -3.4890257880850757, -1.9420026563083637, 2.829603502799272, -5.460286784578183, 1.0738971078475377, -3.0191169375705385, 0.3749168698794456, 1.0939030141853552, -2.2192788853992766, -4.599908682580625, 3.1127129094933847, -1.3501783694326717, 0.7767079841389286, 4.560679632406376, -1.8898698381065726, -0.7523560439807495, -2.5100463804061315, -5.042459573297267, -1.8330317614109433, -1.355792882133211, 1.7828570752588178, 4.527105979481038, -4.241423979906797, -0.3857583926395858, -5.08439571318458, -1.1249224865653407, -5.563926965144752, -0.5164243769320089, 2.64966527026374, -3.3691963306135926, -0.2145666452500059, -3.476869611645776, 1.5918097036898722, 0.9197061720275554, -1.7637629642954131, 1.483987552762053, -2.889661565327851, 0.10204375410250677, 1.1464065892295903, 2.120115772669397, -2.2125873670453444, -1.5278873783441647, -2.0842846499620906, -3.2962304801848745, 3.3928589632745547, 2.9631302627905773, -0.4880363080091321, -1.3544424038827865, -2.7748975256347794, 1.675711231814324, -4.116883377358429, 0.22055805995584699, -0.6541262876270029, 1.067489720989184, 3.01453267126377, -5.330001087211724, -3.7359912513716265, -2.5131408424544426, -4.019251745770493, 2.418876286372991, 0.037047607537854965, 0.9872022480751017, -2.2792019337716285, 2.610755944605896, 3.528471851250539, -2.928923378030009, -4.997650755465384, 3.3417007060502675, -4.765668525868719, -1.7792626479490599, -0.5428341227367017, 4.622936015594816, -5.670532553535698, -5.361555142857055, -2.785680790335242, 1.67195677458123, 4.527954239778006, 3.8887557453303723, -0.4752010148997847, 2.9448171375499674, 1.3431541788849097, -1.5641345463677512, -4.471073949571142, 4.224931803057786, -5.332150832830268, -5.189827109321532, 3.1045482218159295, -4.243372606041261, -1.2813035001411954, 1.4297177914352384, -3.303946026816274, -3.5899409599071, -1.690264221980267, -1.723735802347921, 0.7057558927644152, -0.043139749829844476, -1.530151312155704, -4.562566787650586, 1.2436270265087401, 1.044949720679825, 3.3922563672523003, -4.128221094818689, -4.701118935250024, 1.7379099761668613, -2.0133206720087795, -1.141352808237948, 2.9361079454591, -5.562269360200436, -1.5115532149637172, 0.5489727878149564, -0.25169398761252726, -0.934620489347755, -1.2409123379494114, 2.1531750718653306, 0.6970811720195496, 1.067828293586909, -0.856709126937174, 2.3751927446813257, 2.6211313535561365, -2.4455338687055788, 2.5417795126413614, -0.4278954556654533, -5.36438445758809, 4.611451304645633, 1.644263462976622, 2.785363983549588, 2.6620020903112733, 0.4437864122761601, -5.479948352917381, 1.1865091322321568, 0.2161828945874973, 2.1240763505289495, 2.8866987128358543, -3.9120248828857216, -5.747732479660014, 3.8709079675848086, -2.4162922619003235, -4.616641212297958, 4.0563042681338475, 2.1753073590521828, 2.6569521044090125, 2.8164553594353334, -2.0658107640342442, 3.174494525470073, -3.8510763837879054, -4.06432576827533, -5.314798291646862, -5.217960120874364, 3.216610009084305, -0.057668214627434544, 2.4505228432082538, 0.6857402425542185, -4.02216017505398, 3.328054736352077, 1.0718994497862413, -3.4005830620806177, 0.8338546298868437, -0.886381312848961, 4.103949096007978, -5.458025464289493, -4.6326529847972235, -0.9446762379784497, -0.888798071936443, 1.1430454449040317, -4.290285200304713, 2.038543592927483, -4.790957134198212, 4.492302264615469, 2.3805400899449998, -2.917236965108602, 1.5037750785106159, -1.3598273677694461, -2.4235175395813924, -3.2696574615545098, -5.4760806233150205, -2.2484050005080736, -2.6965268420023008, 1.8263449949889905, -4.7133836534584095, 1.9780338024787154, 1.5209108417755335, 1.4367930825425397, -1.7636452065129156, 4.458338399440691, -4.4122394816644235, 2.1082204029561984, 3.736437586191099, -2.218151118503598, 3.075841014705863, -3.9395080347459857, 4.56599258659569, -1.2048788280250537, 1.214767913563299, 3.8901384909427383, -2.4907921614367177, 4.157363027087642, -4.358454544736108, -3.9091999353913334, -4.146744786857912, -4.428926541310941, -2.964955212356447, -1.3329523052923333, 1.104305764444402, -0.3229124483862549, 0.8867046178013975, 4.0160057558690445, -5.765880791769935, 3.0561990474552507, -3.083200669922567, -0.8110166720739684, 3.2266955081468884, -5.073861946531508, 1.3944952938849307, -4.275632367676293, 0.5407512661376055, 2.8771485336026705, -3.4741740057228854, -4.657723871839156, 3.643649225043469, -3.260057915425624, -1.087453405754724, -3.089860535996897, 2.5746871763638532, 2.799980977774619, -5.46509720015794, 3.5662776132910343, -1.367035206770299, -4.298865695784676, -1.3151961037500044, 2.657841778901674, -5.513360752786348, -0.37256279418181215, -3.3886730785586066, 1.6864398757099837, 3.243496434225576, -3.114168331573357, 2.948102051348214, 3.488775267339162, -4.634146746702965, -0.448448909444239, 1.5603435789580633, -2.86947955396867, -3.785649191925258, -1.6313448166703965, -5.210828661197522, 4.130869038530755, -0.5924597221585488, -5.143291326295304, 4.600743374421609, 2.429625777733505, 4.085617326284004, -0.12660868426412097, 2.8565983041090073, 3.5206351284413726, -3.973510234328046, 0.8154874858340087, -0.9293469561215995, -3.2109201574083563, 2.9322301271244386, 0.2319210819771147, -4.446263232885183, -4.197130333881253, -0.2548985289573942, -4.78671384787435, -2.8315263700627096, -0.4853483897890305, 0.19771886082808177, -3.2505626577928104, -2.4935767614949484, 0.2973153256462906, 2.6682278621853373, -1.295114141543741, -4.064643787319297, -1.9732263344223369, -2.956887177524135, -0.6694791060181382, -0.5359647482135612, -1.9483060126693474, -0.2011071937141411, -4.290476634322041, -0.6481287043694222, 1.2379374174015405, -3.34715046315117, 0.7909578629488285, 3.3881253612107782, 1.9351084401893583, 1.703150114300529, 0.28250359950404036, -2.3654941041662765, -4.41756650836629, 1.552162849978667, 0.35226216373422137, 3.195814194170503, -3.2281080565987867, -2.4886312509898585, 4.534026284061025, -3.9830903696215225, -1.8402599625272495, 0.30262877606602157, -2.7235391338767307, -0.49396110487189215, -0.2644753353007694, -5.457713571609493, -1.4822692214308848, 0.4081749176563827, -4.0762650664647815, 3.406973252993306, -2.4873723655948066, -2.1627838714057854, -5.5857102148150055, -4.4529599884698285, 3.5171166038215427, -3.0120626497189593, -2.5316332158298955, -3.6028967741400937, 2.7603054286259185, -3.9449965294533187, 3.493619911719862, -4.053961903312783, -4.192278798053905, -1.262138557194639, -1.4965348331706245, 3.3395778572333876, -5.616363794339182, -2.6627975646688555, -0.4583038441034759, 2.944294723887235, 0.32393416338224235, 1.4606987875059243, -5.522290364156413, 3.518514655678893, 2.8354451266329486, -3.148721580188758, -3.283734897439775, 0.954833948288103, 2.762235826296929, -5.433151219534037, -1.3085956746850806, -5.098569425327838, 2.2622702859770145, -4.181828328440203, -1.4243163860308528, 0.7135091078949012, -3.972990205783846, 0.14773705226548195, 2.407859394230033, 2.848124778370898, -1.9566303710865833, -4.415437900988269, 3.6028556922017634, -4.703532357497033, -1.3250282530601227, 0.836253191080579, 0.15442818715935314, -1.976172102551971, -2.4585784779730004, -5.768390887502674, 1.5846704107573215, -5.796627505702217, -0.2446511627199932, -0.07099539497535723, 0.6944589241560708, -5.079406669419764, -3.9554498330273913, 1.8261376304750767, 0.19408594729998008, 3.4691046906211698, 4.4923459967922375, 4.054715554543955, -2.7907809215298642, -1.0800367389046865, -1.5881917180622427, 0.5884874185764737, -1.3231255362604184, -5.321256398895139, 0.6449232703057781, -2.436240580163542, -0.8425839291447552, -3.7144278632334635, -4.39049905658012, -1.8291362200625847, -5.308178078283015, -4.018179294345206, -2.2305986082023566, -1.879001866446321, -5.719507736712784, -0.36376623963253696, -4.666557176016586, 4.049895400960332, -5.363444834662388, -4.298377694162676, 2.5836501661244755, -2.002800475025678, 1.1071454690261469, -0.04071367874332221, 3.2344096483563485, -0.03423119755783155, -5.095028292568272, -2.2518129355902663, 3.5346156521299514, 3.3166460042407175, 0.744289019176688, 3.4116851872179668, -3.8504449596807495, -0.2979488155367136, -3.7067486452815843, 3.9223177070755204, -1.9126431002726823, 1.227166606035592, 4.003636233077008, 2.832711134687634, -1.0195714893738579, 2.640413828418869, 0.7478601919188979, -0.961057521123224, 2.2925741782481817, 1.3197475270379053, 3.5572935603451823, 3.38261807944557, -0.2928346752255653, -3.4356695199595046, 1.0777972083069054, -0.7382817758816751, -0.12976102907086418, -2.1599954801540773, 3.971607185203104, 2.1790084074049414, 4.444167384575571, 3.7063105324778762, 1.5497998006051361, 3.3317497506774805, 0.25750652633034576, 3.092031728117999, -1.336722850024473, 0.5335755985114217, 4.462101798775643, -0.39262109810631607, -4.373871538610657, 4.535352180851185, -2.597723334201584, 2.0605249869728794, 3.3957409780696883, -0.7130517225996122, -2.089482979064829, 0.7171693628051736, 1.686492726241637, -4.412144657223996, 1.7402386176248887, 1.2593816566814304, -3.0666504740821288, -1.8156419978362477, -5.0230130381310305, 1.405060020158417, -5.404980525768534, -5.160569401896935, 1.796658127682507, -5.234098035281017, 0.0036741931924550997, 0.7216432715232912, -4.596717152422706, 3.6535151015419833, -1.5004162932825027, 1.4619536014821106, -1.93958505937337, 3.386704339190117]}, {\"hoverinfo\": \"text\", \"legendgroup\": \"Class 2\", \"marker\": {\"color\": \"rgb(44, 160, 44)\", \"opacity\": 0.8, \"size\": 1}, \"mode\": \"markers\", \"name\": \"Class 2\", \"scene\": \"scene4\", \"showlegend\": false, \"text\": [\"1332_l_2_m-0_0.18-1_0.04-2_0.09-3_0.22\", \"1333_l_2_m-0_0.77-1_0.05-2_0.68-3_0.39\", \"1334_l_2_m-0_0.15-1_0.04-2_0.0-3_0.79\", \"1335_l_2_m-0_0.99-1_0.14-2_0.05-3_0.18\", \"1336_l_2_m-0_0.78-1_0.05-2_0.09-3_0.61\", \"1337_l_2_m-0_0.26-1_0.07-2_0.04-3_0.11\", \"1338_l_2_c_0_1_3-0_0.4-1_0.0-2_0.19-3_1.04\", \"1339_l_2_c_0_2_3-0_1.71-1_0.96-2_0.32-3_1.33\", \"1340_l_2_c_1_2_3-0_0.84-1_0.58-2_0.1-3_0.1\", \"1341_l_2_c_0_1_3-0_0.05-1_0.29-2_0.02-3_0.17\", \"1342_l_2_c_0_2_3-0_1.46-1_0.66-2_0.97-3_0.4\", \"1343_l_2_c_1_2_3-0_1.61-1_0.16-2_0.36-3_0.05\", \"1344_l_2_c_0_1_3-0_0.27-1_0.42-2_0.04-3_0.02\", \"1345_l_2_c_0_2_3-0_0.95-1_0.44-2_0.06-3_0.27\", \"1346_l_2_c_1_2_3-0_0.56-1_0.07-2_0.28-3_0.52\", \"1347_l_2_c_0_1_3-0_0.2-1_0.0-2_0.8-3_1.41\", \"1348_l_2_c_0_2_3-0_0.44-1_1.31-2_0.22-3_0.36\", \"1349_l_2_c_1_2_3-0_1.56-1_0.16-2_0.25-3_0.42\", \"1350_l_2_c_0_1_3-0_0.49-1_0.18-2_0.28-3_0.01\", \"1351_l_2_c_0_2_3-0_0.58-1_0.38-2_1.02-3_0.65\", \"1352_l_2_c_1_2_3-0_1.38-1_0.01-2_0.0-3_0.31\", \"1353_l_2_c_0_1_3-0_0.04-1_0.15-2_0.03-3_0.13\", \"1354_l_2_c_0_2_3-0_0.64-1_1.22-2_0.58-3_0.31\", \"1355_l_2_c_1_2_3-0_0.84-1_0.01-2_0.11-3_1.01\", \"1356_l_2_c_0_1_3-0_1.21-1_0.02-2_1.51-3_0.4\", \"1357_l_2_c_0_2_3-0_0.13-1_0.23-2_0.18-3_0.01\", \"1358_l_2_c_1_2_3-0_0.33-1_0.2-2_0.06-3_1.12\", \"1359_l_2_c_0_1_3-0_0.42-1_0.15-2_1.31-3_0.3\", \"1360_l_2_c_0_2_3-0_0.87-1_2.48-2_0.05-3_0.11\", \"1361_l_2_c_1_2_3-0_0.48-1_0.54-2_0.01-3_1.25\", \"1362_l_2_c_0_1_3-0_0.83-1_0.72-2_0.27-3_0.92\", \"1363_l_2_c_0_2_3-0_1.13-1_2.54-2_0.13-3_0.12\", \"1364_l_2_c_1_2_3-0_0.03-1_0.29-2_0.25-3_0.37\", \"1365_l_2_c_0_1_3-0_0.47-1_0.49-2_1.18-3_1.36\", \"1366_l_2_c_0_2_3-0_0.21-1_0.43-2_0.63-3_0.18\", \"1367_l_2_c_1_2_3-0_0.37-1_0.27-2_0.61-3_0.1\", \"1368_l_2_c_0_1_3-0_0.09-1_0.72-2_2.0-3_0.14\", \"1369_l_2_c_0_2_3-0_0.3-1_1.66-2_0.6-3_0.97\", \"1370_l_2_c_1_2_3-0_0.71-1_0.02-2_0.48-3_0.5\", \"1371_l_2_c_0_1_2-0_0.21-1_0.08-2_0.83-3_0.12\", \"1372_l_2_c_0_1_3-0_0.86-1_0.7-2_1.01-3_0.13\", \"1373_l_2_c_0_2_3-0_0.14-1_1.54-2_0.05-3_0.79\", \"1374_l_2_c_1_2_3-0_1.08-1_0.11-2_0.01-3_0.2\", \"1375_l_2_c_0_1_2-0_1.53-1_0.46-2_0.34-3_0.94\", \"1376_l_2_c_0_1_3-0_1.53-1_0.25-2_0.7-3_0.5\", \"1377_l_2_c_0_2_3-0_0.15-1_0.08-2_0.0-3_0.5\", \"1378_l_2_c_1_2_3-0_1.7-1_0.69-2_0.34-3_0.14\", \"1379_l_2_c_0_1_2-0_0.52-1_1.04-2_0.09-3_0.6\", \"1380_l_2_c_0_1_3-0_0.04-1_0.22-2_0.48-3_0.61\", \"1381_l_2_c_0_2_3-0_0.1-1_0.58-2_0.24-3_0.56\", \"1382_l_2_c_1_2_3-0_0.62-1_0.04-2_0.37-3_0.09\", \"1383_l_2_c_0_1_2-0_0.24-1_0.34-2_0.15-3_0.36\", \"1384_l_2_c_0_1_3-0_0.01-1_0.38-2_1.0-3_1.15\", \"1385_l_2_c_0_2_3-0_0.12-1_0.16-2_0.0-3_0.21\", \"1386_l_2_c_1_2_3-0_1.01-1_0.6-2_0.01-3_0.56\", \"1387_l_2_c_0_1_2-0_0.31-1_0.01-2_0.43-3_1.32\", \"1388_l_2_c_0_1_3-0_0.06-1_0.23-2_1.64-3_1.16\", \"1389_l_2_c_0_2_3-0_0.1-1_0.25-2_0.15-3_0.74\", \"1390_l_2_c_1_2_3-0_0.88-1_0.22-2_0.64-3_0.34\", \"1391_l_2_c_0_1_2-0_0.69-1_0.57-2_0.86-3_0.98\", \"1392_l_2_c_0_1_3-0_0.26-1_0.25-2_0.9-3_0.82\", \"1393_l_2_c_0_2_3-0_0.55-1_0.73-2_0.28-3_0.46\", \"1394_l_2_c_1_2_3-0_0.79-1_0.14-2_1.21-3_0.3\", \"1395_l_2_c_0_1_2-0_1.25-1_0.0-2_0.23-3_1.01\", \"1396_l_2_c_0_1_3-0_1.23-1_0.68-2_0.04-3_0.66\", \"1397_l_2_c_0_2_3-0_0.26-1_0.02-2_0.16-3_0.12\", \"1398_l_2_c_1_2_3-0_0.65-1_0.78-2_0.37-3_0.0\", \"1399_l_2_c_0_1_2-0_0.35-1_0.07-2_0.01-3_0.85\", \"1400_l_2_c_0_1_3-0_0.3-1_0.03-2_0.18-3_0.59\", \"1401_l_2_c_0_2_3-0_0.31-1_0.5-2_0.27-3_0.12\", \"1402_l_2_c_1_2_3-0_1.06-1_0.05-2_0.12-3_0.82\", \"1403_l_2_c_0_1_2-0_1.11-1_0.78-2_0.48-3_0.36\", \"1404_l_2_c_0_1_3-0_0.5-1_0.3-2_0.97-3_0.72\", \"1405_l_2_c_0_2_3-0_0.69-1_0.49-2_0.04-3_0.29\", \"1406_l_2_c_1_2_3-0_1.93-1_0.36-2_0.29-3_0.1\", \"1407_l_2_c_0_1_2-0_0.01-1_0.3-2_0.57-3_0.11\", \"1408_l_2_c_0_1_3-0_0.28-1_0.22-2_2.11-3_0.5\", \"1409_l_2_c_0_2_3-0_0.63-1_0.69-2_0.1-3_0.74\", \"1410_l_2_c_1_2_3-0_2.88-1_0.39-2_0.4-3_0.56\", \"1411_l_2_c_0_1_2-0_0.12-1_0.05-2_0.52-3_0.9\", \"1412_l_2_c_0_1_3-0_0.68-1_0.44-2_1.1-3_0.81\", \"1413_l_2_c_0_2_3-0_0.13-1_0.26-2_0.51-3_0.01\", \"1414_l_2_c_1_2_3-0_1.59-1_0.66-2_0.02-3_0.29\", \"1415_l_2_c_0_1_2-0_0.31-1_0.44-2_0.42-3_0.1\", \"1416_l_2_c_0_1_3-0_0.83-1_0.37-2_0.61-3_0.22\", \"1417_l_2_c_0_2_3-0_0.53-1_0.08-2_0.02-3_0.44\", \"1418_l_2_c_1_2_3-0_0.95-1_0.3-2_0.49-3_0.94\", \"1419_l_2_c_0_1_2-0_0.98-1_0.08-2_0.03-3_0.5\", \"1420_l_2_c_0_1_3-0_1.69-1_0.28-2_0.51-3_0.74\", \"1421_l_2_c_0_2_3-0_0.03-1_1.73-2_0.44-3_0.05\", \"1422_l_2_c_1_2_3-0_0.45-1_0.52-2_0.06-3_1.21\", \"1423_l_2_c_0_1_2-0_0.24-1_0.17-2_0.59-3_0.7\", \"1424_l_2_c_0_1_3-0_0.47-1_0.34-2_0.86-3_0.13\", \"1425_l_2_c_0_2_3-0_0.08-1_1.14-2_0.23-3_1.52\", \"1426_l_2_c_1_2_3-0_1.58-1_0.24-2_0.6-3_0.34\", \"1427_l_2_c_0_1_2-0_0.4-1_0.7-2_0.02-3_1.82\", \"1428_l_2_c_0_1_3-0_0.28-1_0.66-2_1.9-3_0.72\", \"1429_l_2_c_0_2_3-0_1.08-1_0.59-2_0.16-3_0.56\", \"1430_l_2_c_1_2_3-0_0.25-1_0.14-2_0.19-3_0.44\", \"1431_l_2_c_0_1_2-0_0.39-1_0.2-2_0.13-3_0.46\", \"1432_l_2_c_0_1_3-0_0.14-1_0.02-2_1.53-3_0.29\", \"1433_l_2_c_0_2_3-0_0.03-1_0.95-2_0.23-3_0.13\", \"1434_l_2_c_1_2_3-0_0.68-1_0.77-2_0.18-3_0.71\", \"1435_l_2_c_0_1_2-0_1.93-1_0.06-2_0.26-3_2.7\", \"1436_l_2_c_0_1_3-0_0.97-1_0.01-2_0.48-3_0.1\", \"1437_l_2_c_0_2_3-0_0.68-1_0.33-2_0.11-3_0.49\", \"1438_l_2_c_1_2_3-0_0.94-1_0.12-2_0.53-3_0.32\", \"1439_l_2_c_0_1_2-0_0.04-1_0.28-2_0.76-3_0.05\", \"1440_l_2_c_0_1_3-0_0.09-1_0.42-2_1.05-3_0.55\", \"1441_l_2_c_0_2_3-0_1.74-1_0.96-2_0.48-3_0.06\", \"1442_l_2_c_1_2_3-0_1.08-1_0.52-2_0.67-3_0.56\", \"1443_l_2_c_0_1_2-0_0.26-1_0.42-2_0.1-3_0.6\", \"1444_l_2_c_0_1_3-0_1.52-1_0.52-2_0.35-3_0.55\", \"1445_l_2_c_0_2_3-0_0.37-1_1.21-2_0.63-3_0.04\", \"1446_l_2_c_1_2_3-0_0.55-1_0.19-2_0.6-3_0.97\", \"1447_l_2_c_0_1_2-0_0.18-1_0.07-2_0.41-3_1.25\", \"1448_l_2_c_0_1_3-0_0.6-1_0.08-2_0.6-3_0.47\", \"1449_l_2_c_0_2_3-0_0.38-1_0.54-2_0.39-3_0.03\", \"1450_l_2_c_1_2_3-0_0.9-1_0.04-2_0.48-3_0.5\", \"1451_l_2_c_0_1_2-0_0.19-1_0.1-2_0.65-3_0.29\", \"1452_l_2_c_0_1_3-0_0.94-1_0.02-2_0.46-3_0.21\", \"1453_l_2_c_0_2_3-0_1.23-1_1.51-2_0.12-3_0.91\", \"1454_l_2_c_1_2_3-0_0.35-1_0.16-2_0.26-3_0.46\", \"1455_l_2_c_0_1_2-0_0.12-1_0.06-2_0.01-3_1.16\", \"1456_l_2_c_0_1_3-0_0.12-1_0.26-2_0.31-3_0.36\", \"1457_l_2_c_0_2_3-0_0.05-1_1.61-2_0.04-3_0.1\", \"1458_l_2_c_1_2_3-0_0.8-1_0.54-2_0.21-3_1.15\", \"1459_l_2_c_0_1_2-0_0.96-1_0.45-2_0.35-3_0.2\", \"1460_l_2_c_0_1_3-0_0.82-1_0.02-2_1.89-3_0.06\", \"1461_l_2_c_0_2_3-0_0.06-1_1.02-2_0.55-3_0.09\", \"1462_l_2_c_1_2_3-0_1.31-1_0.31-2_0.04-3_1.15\", \"1463_l_2_c_0_1_2-0_0.66-1_0.12-2_0.57-3_0.66\", \"1464_l_2_c_0_1_3-0_1.76-1_0.16-2_3.53-3_0.01\", \"1465_l_2_c_0_2_3-0_0.29-1_2.01-2_0.09-3_0.21\", \"1466_l_2_c_1_2_3-0_0.6-1_0.03-2_0.05-3_0.47\", \"1467_l_2_c_0_1_2-0_0.37-1_0.3-2_0.01-3_1.47\", \"1468_l_2_c_0_1_3-0_0.24-1_0.05-2_0.26-3_0.18\", \"1469_l_2_c_0_2_3-0_0.01-1_1.33-2_0.0-3_0.24\", \"1470_l_2_c_1_2_3-0_0.27-1_0.01-2_0.01-3_0.14\", \"1471_l_2_c_0_1_2-0_0.16-1_0.03-2_0.22-3_0.4\", \"1472_l_2_c_0_1_3-0_0.81-1_0.27-2_0.66-3_0.98\", \"1473_l_2_c_0_2_3-0_0.2-1_0.09-2_0.17-3_0.22\", \"1474_l_2_c_1_2_3-0_0.02-1_0.92-2_0.0-3_0.09\", \"1475_l_2_c_0_1_2-0_0.61-1_0.14-2_0.23-3_1.28\", \"1476_l_2_c_0_1_3-0_0.42-1_0.77-2_1.54-3_1.54\", \"1477_l_2_c_0_2_3-0_0.47-1_0.2-2_0.03-3_0.39\", \"1478_l_2_c_1_2_3-0_0.62-1_0.14-2_0.01-3_0.74\", \"1479_l_2_c_0_1_2-0_0.53-1_0.2-2_0.19-3_0.4\", \"1480_l_2_c_0_1_3-0_0.6-1_0.89-2_0.29-3_0.77\", \"1481_l_2_c_0_2_3-0_0.27-1_0.45-2_0.08-3_0.01\", \"1482_l_2_c_1_2_3-0_0.12-1_0.15-2_0.3-3_0.98\", \"1483_l_2_c_0_1_2-0_0.49-1_0.51-2_0.26-3_0.19\", \"1484_l_2_c_0_1_3-0_0.29-1_0.05-2_1.05-3_0.2\", \"1485_l_2_c_0_2_3-0_1.48-1_0.86-2_0.49-3_0.46\", \"1486_l_2_c_1_2_3-0_1.32-1_0.12-2_0.36-3_0.03\", \"1487_l_2_c_0_1_2-0_0.39-1_0.0-2_0.1-3_0.66\", \"1488_l_2_c_0_1_3-0_0.73-1_0.42-2_0.33-3_0.12\", \"1489_l_2_c_0_2_3-0_1.62-1_1.1-2_0.73-3_0.25\", \"1490_l_2_c_1_2_3-0_0.63-1_0.15-2_0.05-3_0.22\", \"1491_l_2_c_0_1_2-0_0.42-1_0.51-2_0.13-3_0.23\", \"1492_l_2_c_0_1_3-0_0.11-1_0.03-2_1.59-3_0.45\", \"1493_l_2_c_0_2_3-0_0.34-1_0.78-2_0.15-3_0.09\", \"1494_l_2_c_1_2_3-0_0.51-1_0.0-2_0.32-3_0.55\", \"1495_l_2_c_0_1_2-0_1.13-1_0.11-2_0.13-3_0.02\", \"1496_l_2_c_0_1_3-0_0.0-1_0.64-2_0.02-3_1.09\", \"1497_l_2_c_0_2_3-0_0.37-1_1.61-2_0.07-3_0.72\", \"1498_l_2_c_1_2_3-0_1.55-1_0.29-2_0.94-3_0.09\", \"1499_l_2_c_0_1_2-0_0.16-1_0.02-2_0.32-3_1.41\", \"1500_l_2_c_0_1_3-0_0.03-1_0.1-2_1.66-3_0.36\", \"1501_l_2_c_0_2_3-0_0.43-1_0.97-2_0.01-3_1.1\", \"1502_l_2_c_1_2_3-0_0.63-1_0.17-2_0.03-3_0.17\", \"1503_l_2_c_0_1_2-0_0.1-1_0.02-2_0.03-3_0.97\", \"1504_l_2_c_0_1_3-0_0.03-1_0.01-2_0.07-3_0.47\", \"1505_l_2_c_0_2_3-0_1.21-1_0.93-2_0.12-3_0.78\", \"1506_l_2_c_1_2_3-0_0.72-1_0.01-2_0.17-3_0.24\", \"1507_l_2_c_0_1_2-0_0.44-1_0.95-2_0.52-3_0.0\", \"1508_l_2_c_0_1_3-0_0.36-1_0.59-2_1.38-3_0.66\", \"1509_l_2_c_0_2_3-0_0.59-1_0.16-2_0.43-3_0.28\", \"1510_l_2_c_1_2_3-0_0.01-1_0.15-2_0.68-3_0.21\", \"1511_l_2_c_0_1_2-0_0.11-1_0.23-2_0.76-3_0.97\", \"1512_l_2_c_0_1_3-0_0.16-1_0.21-2_0.57-3_2.33\", \"1513_l_2_c_0_2_3-0_1.68-1_0.67-2_0.63-3_2.17\", \"1514_l_2_c_1_2_3-0_0.92-1_0.43-2_1.1-3_0.06\", \"1515_l_2_c_0_1_2-0_0.75-1_0.22-2_0.38-3_1.67\", \"1516_l_2_c_0_1_3-0_0.25-1_0.16-2_1.5-3_1.53\", \"1517_l_2_c_0_2_3-0_0.5-1_1.48-2_0.92-3_1.58\", \"1518_l_2_c_1_2_3-0_0.01-1_0.01-2_0.57-3_0.24\", \"1519_l_2_c_0_1_2-0_0.41-1_0.03-2_0.12-3_0.32\", \"1520_l_2_c_0_1_3-0_0.56-1_0.51-2_1.03-3_0.67\", \"1521_l_2_c_0_2_3-0_1.11-1_1.18-2_0.02-3_0.52\", \"1522_l_2_c_1_2_3-0_2.09-1_0.09-2_0.68-3_1.55\", \"1523_l_2_c_0_1_2-0_0.74-1_0.7-2_0.3-3_0.73\", \"1524_l_2_c_0_1_3-0_0.19-1_0.09-2_0.1-3_0.08\", \"1525_l_2_c_0_2_3-0_0.09-1_2.72-2_0.04-3_0.94\", \"1526_l_2_c_1_2_3-0_0.89-1_0.2-2_0.72-3_1.04\", \"1527_l_2_c_0_1_2-0_0.23-1_0.47-2_0.8-3_0.35\", \"1528_l_2_c_0_1_3-0_0.09-1_0.15-2_0.38-3_1.11\", \"1529_l_2_c_0_2_3-0_0.4-1_0.36-2_0.45-3_0.46\", \"1530_l_2_c_1_2_3-0_0.1-1_0.58-2_0.12-3_0.3\", \"1531_l_2_c_0_1_2-0_1.37-1_0.07-2_0.03-3_1.88\", \"1532_l_2_c_0_1_3-0_0.19-1_0.73-2_0.11-3_1.09\", \"1533_l_2_c_0_2_3-0_0.14-1_0.9-2_0.15-3_0.11\", \"1534_l_2_c_1_2_3-0_0.69-1_0.44-2_0.45-3_0.06\", \"1535_l_2_c_0_1_2-0_1.93-1_0.27-2_0.19-3_1.27\", \"1536_l_2_c_0_1_3-0_0.05-1_0.68-2_0.59-3_0.69\", \"1537_l_2_c_0_2_3-0_0.32-1_0.71-2_0.97-3_0.96\", \"1538_l_2_c_1_2_3-0_0.55-1_0.24-2_0.02-3_1.87\", \"1539_l_2_c_0_1_2-0_1.54-1_0.41-2_0.29-3_0.24\", \"1540_l_2_c_0_1_3-0_0.09-1_0.42-2_0.95-3_0.39\", \"1541_l_2_c_0_2_3-0_0.98-1_0.61-2_0.11-3_0.1\", \"1542_l_2_c_1_2_3-0_1.14-1_0.34-2_0.68-3_0.09\", \"1543_l_2_c_0_1_2-0_0.25-1_0.3-2_0.03-3_0.22\", \"1544_l_2_c_0_1_3-0_0.55-1_0.48-2_0.63-3_0.32\", \"1545_l_2_c_0_2_3-0_0.56-1_1.52-2_0.17-3_0.93\", \"1546_l_2_c_1_2_3-0_0.04-1_0.02-2_0.09-3_0.25\", \"1547_l_2_c_0_1_2-0_0.0-1_1.28-2_0.02-3_0.52\", \"1548_l_2_c_0_1_3-0_0.53-1_0.86-2_1.26-3_0.28\", \"1549_l_2_c_0_2_3-0_0.04-1_0.07-2_0.06-3_0.18\", \"1550_l_2_c_1_2_3-0_0.6-1_0.18-2_0.06-3_0.17\", \"1551_l_2_c_0_1_2-0_0.17-1_0.01-2_0.08-3_0.66\", \"1552_l_2_c_0_1_3-0_0.69-1_0.31-2_0.39-3_0.81\", \"1553_l_2_c_0_2_3-0_0.07-1_1.28-2_0.36-3_1.83\", \"1554_l_2_c_1_2_3-0_2.08-1_0.39-2_0.05-3_0.29\", \"1555_l_2_c_0_1_2-0_0.32-1_0.06-2_0.11-3_0.13\", \"1556_l_2_c_0_1_3-0_0.5-1_0.03-2_0.22-3_1.59\", \"1557_l_2_c_0_2_3-0_1.11-1_0.47-2_0.15-3_1.68\", \"1558_l_2_c_1_2_3-0_0.55-1_0.14-2_0.04-3_0.04\", \"1559_l_2_c_0_1_2-0_0.36-1_0.08-2_0.14-3_0.09\", \"1560_l_2_c_0_1_3-0_0.01-1_0.08-2_0.56-3_0.28\", \"1561_l_2_c_0_2_3-0_0.72-1_0.21-2_0.42-3_0.55\", \"1562_l_2_c_1_2_3-0_0.25-1_0.23-2_0.01-3_1.0\", \"1563_l_2_c_0_1_2-0_0.23-1_0.2-2_0.07-3_0.07\", \"1564_l_2_c_0_1_3-0_0.19-1_0.09-2_0.72-3_0.23\", \"1565_l_2_c_0_2_3-0_1.08-1_0.07-2_0.01-3_0.76\", \"1566_l_2_c_1_2_3-0_0.6-1_0.21-2_0.04-3_0.62\", \"1567_l_2_c_0_1_2-0_1.01-1_0.13-2_0.12-3_0.65\", \"1568_l_2_c_0_1_3-0_1.19-1_0.35-2_1.05-3_0.23\", \"1569_l_2_c_0_2_3-0_0.5-1_0.18-2_0.0-3_1.32\", \"1570_l_2_c_1_2_3-0_1.06-1_0.25-2_0.56-3_0.64\", \"1571_l_2_c_0_1_2-0_0.15-1_0.06-2_0.52-3_2.34\", \"1572_l_2_c_0_1_3-0_0.81-1_0.41-2_0.23-3_0.34\", \"1573_l_2_c_0_2_3-0_0.39-1_2.06-2_0.0-3_0.76\", \"1574_l_2_c_1_2_3-0_2.06-1_0.25-2_0.06-3_0.11\", \"1575_l_2_c_0_1_2-0_0.75-1_0.18-2_0.13-3_0.31\", \"1576_l_2_c_0_1_3-0_0.17-1_1.11-2_0.45-3_0.38\", \"1577_l_2_c_0_2_3-0_0.15-1_0.17-2_0.16-3_0.37\", \"1578_l_2_c_1_2_3-0_1.89-1_0.55-2_0.19-3_0.01\", \"1579_l_2_c_0_1_2-0_0.1-1_0.06-2_0.05-3_0.98\", \"1580_l_2_c_0_1_3-0_0.18-1_0.36-2_1.17-3_0.38\", \"1581_l_2_c_0_2_3-0_0.11-1_0.15-2_0.17-3_0.15\", \"1582_l_2_c_1_2_3-0_1.12-1_0.05-2_0.34-3_0.44\", \"1583_l_2_c_0_1_2-0_0.12-1_0.84-2_1.06-3_1.41\", \"1584_l_2_c_0_1_3-0_0.95-1_0.34-2_0.17-3_0.96\", \"1585_l_2_c_0_2_3-0_0.93-1_0.24-2_0.44-3_0.71\", \"1586_l_2_c_1_2_3-0_1.68-1_0.11-2_0.74-3_0.35\", \"1587_l_2_c_0_1_2-0_0.24-1_0.01-2_0.11-3_0.12\", \"1588_l_2_c_0_1_3-0_0.81-1_0.01-2_0.66-3_0.24\", \"1589_l_2_c_0_2_3-0_0.54-1_0.39-2_0.23-3_0.26\", \"1590_l_2_c_1_2_3-0_0.85-1_0.09-2_0.19-3_1.51\", \"1591_l_2_c_0_1_2-0_1.04-1_0.59-2_0.01-3_1.19\", \"1592_l_2_c_0_1_3-0_0.13-1_0.09-2_0.43-3_0.36\", \"1593_l_2_c_0_2_3-0_0.74-1_1.41-2_0.7-3_0.84\", \"1594_l_2_c_1_2_3-0_0.64-1_0.38-2_0.13-3_0.23\", \"1595_l_2_c_0_1_2-0_1.26-1_0.16-2_0.42-3_1.41\", \"1596_l_2_c_0_1_3-0_0.29-1_0.29-2_0.05-3_0.12\", \"1597_l_2_c_0_2_3-0_0.32-1_0.1-2_0.09-3_0.22\", \"1598_l_2_c_1_2_3-0_1.26-1_0.21-2_0.53-3_0.22\", \"1599_l_2_c_0_1_2-0_0.27-1_0.58-2_0.65-3_1.82\", \"1600_l_2_c_0_1_3-0_0.28-1_0.1-2_1.39-3_0.03\", \"1601_l_2_c_0_2_3-0_0.62-1_1.69-2_0.19-3_0.73\", \"1602_l_2_c_1_2_3-0_0.18-1_0.94-2_0.33-3_0.82\", \"1603_l_2_c_0_1_2-0_0.24-1_0.6-2_0.42-3_0.86\", \"1604_l_2_c_0_1_3-0_0.01-1_0.88-2_1.02-3_0.01\", \"1605_l_2_c_0_2_3-0_0.13-1_1.06-2_0.07-3_0.09\", \"1606_l_2_c_1_2_3-0_0.22-1_0.78-2_0.15-3_1.05\", \"1607_l_2_c_0_1_2-0_0.24-1_0.23-2_0.87-3_0.05\", \"1608_l_2_c_0_1_3-0_0.78-1_0.0-2_1.16-3_0.46\", \"1609_l_2_c_0_2_3-0_0.18-1_0.33-2_0.11-3_0.04\", \"1610_l_2_c_1_2_3-0_0.9-1_0.53-2_0.1-3_0.46\", \"1611_l_2_c_0_1_2-0_0.06-1_0.0-2_0.05-3_0.33\", \"1612_l_2_c_0_1_3-0_0.21-1_0.67-2_0.07-3_0.17\", \"1613_l_2_c_0_2_3-0_0.8-1_0.37-2_0.59-3_0.46\", \"1614_l_2_c_1_2_3-0_0.92-1_0.03-2_0.84-3_0.2\", \"1615_l_2_c_0_1_2-0_0.65-1_0.01-2_0.4-3_0.29\", \"1616_l_2_c_0_1_3-0_0.65-1_0.04-2_0.26-3_1.31\", \"1617_l_2_c_0_2_3-0_1.98-1_0.26-2_0.04-3_1.02\", \"1618_l_2_c_1_2_3-0_1.52-1_0.09-2_0.17-3_0.13\", \"1619_l_2_c_0_1_2-0_0.1-1_0.16-2_0.29-3_1.91\", \"1620_l_2_c_0_1_3-0_0.11-1_0.01-2_1.25-3_0.42\", \"1621_l_2_c_0_2_3-0_0.21-1_0.98-2_1.21-3_0.9\", \"1622_l_2_c_1_2_3-0_0.65-1_0.01-2_0.32-3_0.14\", \"1623_l_2_c_0_1_2-0_0.94-1_0.16-2_0.46-3_0.31\", \"1624_l_2_c_0_1_3-0_0.78-1_0.58-2_1.24-3_0.54\", \"1625_l_2_c_0_2_3-0_0.18-1_0.52-2_0.02-3_0.78\", \"1626_l_2_c_1_2_3-0_1.49-1_0.36-2_0.62-3_0.33\", \"1627_l_2_c_0_1_2-0_1.18-1_0.15-2_0.02-3_0.36\", \"1628_l_2_c_0_1_3-0_0.58-1_1.11-2_0.71-3_1.16\", \"1629_l_2_c_0_2_3-0_0.77-1_0.79-2_0.82-3_0.29\", \"1630_l_2_c_1_2_3-0_1.11-1_1.08-2_0.22-3_0.92\", \"1631_l_2_c_0_1_2-0_0.05-1_0.54-2_0.32-3_0.55\", \"1632_l_2_c_0_1_3-0_0.09-1_0.19-2_0.09-3_0.2\", \"1633_l_2_c_0_2_3-0_0.17-1_1.97-2_0.08-3_0.08\", \"1634_l_2_c_1_2_3-0_1.2-1_0.75-2_0.02-3_0.63\", \"1635_l_2_c_0_1_2-0_0.25-1_0.06-2_0.18-3_0.07\", \"1636_l_2_c_0_1_3-0_0.32-1_0.42-2_0.99-3_1.04\", \"1637_l_2_c_0_2_3-0_1.46-1_0.91-2_0.54-3_0.13\", \"1638_l_2_c_1_2_3-0_1.16-1_0.57-2_0.0-3_0.49\", \"1639_l_2_c_0_1_2-0_0.14-1_0.06-2_0.24-3_0.03\", \"1640_l_2_c_0_1_3-0_0.94-1_0.68-2_0.47-3_0.62\", \"1641_l_2_c_0_2_3-0_0.46-1_0.03-2_0.05-3_0.43\", \"1642_l_2_c_1_2_3-0_0.02-1_0.87-2_0.04-3_0.38\", \"1643_l_2_c_0_1_2-0_1.09-1_0.27-2_0.78-3_0.0\", \"1644_l_2_c_0_1_3-0_0.15-1_0.35-2_0.4-3_0.07\", \"1645_l_2_c_0_2_3-0_0.53-1_1.83-2_0.03-3_0.11\", \"1646_l_2_c_1_2_3-0_0.86-1_0.21-2_0.0-3_0.0\", \"1647_l_2_c_0_1_2-0_2.29-1_0.66-2_0.07-3_0.04\", \"1648_l_2_c_0_1_3-0_0.72-1_0.11-2_0.17-3_0.0\", \"1649_l_2_c_0_2_3-0_0.31-1_0.49-2_0.77-3_1.04\", \"1650_l_2_c_1_2_3-0_0.31-1_0.06-2_0.45-3_0.02\", \"1651_l_2_c_0_1_2-0_0.4-1_0.65-2_0.13-3_0.85\", \"1652_l_2_c_0_1_3-0_0.73-1_0.15-2_1.36-3_0.13\", \"1653_l_2_c_0_2_3-0_1.17-1_1.56-2_0.42-3_0.02\", \"1654_l_2_c_1_2_3-0_0.01-1_0.29-2_0.25-3_0.08\", \"1655_l_2_c_0_1_2-0_0.62-1_0.27-2_0.49-3_2.55\", \"1656_l_2_c_0_1_3-0_0.4-1_0.25-2_0.72-3_0.31\", \"1657_l_2_c_0_2_3-0_0.41-1_1.46-2_0.24-3_0.26\", \"1658_l_2_c_1_2_3-0_1.81-1_0.23-2_0.04-3_0.09\", \"1659_l_2_c_0_1_2-0_0.03-1_0.67-2_0.11-3_0.5\", \"1660_l_2_c_0_1_3-0_0.16-1_0.47-2_1.4-3_0.5\", \"1661_l_2_c_0_2_3-0_1.58-1_1.67-2_0.05-3_1.09\", \"1662_l_2_c_1_2_3-0_0.84-1_0.15-2_0.27-3_0.47\", \"1663_l_2_c_0_1_2-0_0.66-1_0.17-2_0.02-3_0.44\", \"1664_l_2_c_0_1_3-0_0.14-1_0.78-2_1.82-3_1.29\", \"1665_l_2_c_0_2_3-0_0.16-1_0.75-2_0.17-3_0.03\", \"1666_l_2_c_1_2_3-0_1.56-1_0.62-2_0.26-3_0.04\", \"1667_l_2_c_0_1_2-0_0.78-1_0.94-2_0.01-3_0.8\", \"1668_l_2_c_0_1_3-0_1.54-1_0.31-2_0.69-3_0.35\", \"1669_l_2_c_0_2_3-0_0.56-1_0.15-2_0.23-3_0.31\", \"1670_l_2_c_1_2_3-0_0.24-1_0.4-2_0.1-3_0.16\", \"1671_l_2_c_0_1_2-0_0.17-1_0.07-2_0.33-3_0.84\", \"1672_l_2_c_0_1_3-0_0.3-1_0.49-2_1.47-3_1.27\", \"1673_l_2_c_0_2_3-0_0.76-1_0.88-2_0.35-3_0.1\", \"1674_l_2_c_1_2_3-0_0.82-1_0.3-2_0.07-3_0.1\", \"1675_l_2_c_0_1_2-0_0.83-1_0.13-2_0.25-3_0.82\", \"1676_l_2_c_0_1_3-0_0.45-1_0.08-2_1.47-3_1.33\", \"1677_l_2_c_0_2_3-0_0.17-1_1.04-2_0.58-3_0.24\", \"1678_l_2_c_1_2_3-0_0.03-1_0.24-2_0.51-3_0.13\", \"1679_l_2_c_0_1_2-0_1.3-1_0.02-2_0.1-3_0.07\", \"1680_l_2_c_0_1_3-0_0.1-1_0.17-2_0.11-3_0.81\", \"1681_l_2_c_0_2_3-0_0.54-1_1.12-2_0.11-3_0.6\", \"1682_l_2_c_1_2_3-0_0.12-1_0.14-2_0.83-3_0.81\", \"1683_l_2_c_0_1_2-0_0.02-1_0.36-2_0.0-3_0.3\", \"1684_l_2_c_0_1_3-0_1.41-1_0.05-2_0.03-3_0.2\", \"1685_l_2_c_0_2_3-0_0.85-1_0.16-2_0.05-3_1.23\", \"1686_l_2_c_1_2_3-0_0.48-1_0.05-2_0.09-3_1.41\", \"1687_l_2_c_0_1_2-0_1.65-1_0.0-2_0.04-3_2.41\", \"1688_l_2_c_0_1_3-0_0.78-1_0.01-2_0.98-3_0.55\", \"1689_l_2_c_0_2_3-0_0.03-1_1.7-2_0.03-3_0.11\", \"1690_l_2_c_1_2_3-0_0.51-1_0.79-2_0.61-3_0.22\", \"1691_l_2_c_0_1_2-0_1.54-1_0.05-2_0.12-3_2.07\", \"1692_l_2_c_0_1_3-0_0.79-1_0.24-2_0.86-3_1.27\", \"1693_l_2_c_2_3-0_0.8-1_1.53-2_0.09-3_0.56\", \"1694_l_2_r-0_0.06-1_0.48-2_0.65-3_1.33\", \"1695_l_2_r-0_0.19-1_0.85-2_1.53-3_0.54\", \"1696_l_2_r-0_0.82-1_1.0-2_0.48-3_1.02\", \"1697_l_2_r-0_0.37-1_1.25-2_2.82-3_0.03\", \"1698_l_2_r-0_0.94-1_3.91-2_0.96-3_0.91\", \"1699_l_2_r-0_1.3-1_0.43-2_0.57-3_2.33\", \"1700_l_2_r-0_1.29-1_1.85-2_1.34-3_2.15\", \"1701_l_2_r-0_1.17-1_0.79-2_1.13-3_0.38\", \"1702_l_2_r-0_1.32-1_0.84-2_0.42-3_0.72\", \"1703_l_2_r-0_0.6-1_0.85-2_1.93-3_0.96\", \"1704_l_2_r-0_1.45-1_0.08-2_1.07-3_0.65\", \"1705_l_2_r-0_0.01-1_0.35-2_0.28-3_0.91\", \"1706_l_2_r-0_0.04-1_3.24-2_1.8-3_0.13\", \"1707_l_2_r-0_0.13-1_0.28-2_0.0-3_0.35\", \"1708_l_2_r-0_0.34-1_0.22-2_0.09-3_0.87\", \"1709_l_2_r-0_1.8-1_1.5-2_0.62-3_2.9\", \"1710_l_2_r-0_2.65-1_0.15-2_1.98-3_0.67\", \"1711_l_2_r-0_0.71-1_1.34-2_0.72-3_0.77\", \"1712_l_2_r-0_0.21-1_0.91-2_0.12-3_0.96\", \"1713_l_2_r-0_0.71-1_1.13-2_0.41-3_2.23\", \"1714_l_2_r-0_1.52-1_2.31-2_0.9-3_1.38\", \"1715_l_2_r-0_0.5-1_1.29-2_0.42-3_0.93\", \"1716_l_2_r-0_0.31-1_0.73-2_0.54-3_1.98\", \"1717_l_2_r-0_1.3-1_0.5-2_1.6-3_1.7\", \"1718_l_2_r-0_0.64-1_0.14-2_0.61-3_0.79\", \"1719_l_2_r-0_2.09-1_0.77-2_1.28-3_1.47\", \"1720_l_2_r-0_1.2-1_1.25-2_0.23-3_0.78\", \"1721_l_2_r-0_0.87-1_0.58-2_0.47-3_0.92\", \"1722_l_2_r-0_0.88-1_0.31-2_1.29-3_0.27\", \"1723_l_2_r-0_0.72-1_0.79-2_0.75-3_1.3\", \"1724_l_2_r-0_1.25-1_0.59-2_0.7-3_0.85\", \"1725_l_2_r-0_0.66-1_0.16-2_0.66-3_0.63\", \"1726_l_2_r-0_1.31-1_1.03-2_0.25-3_0.11\", \"1727_l_2_r-0_0.19-1_0.12-2_0.46-3_0.88\", \"1728_l_2_r-0_1.33-1_0.03-2_0.17-3_0.74\", \"1729_l_2_r-0_0.13-1_1.31-2_1.7-3_0.44\", \"1730_l_2_r-0_1.64-1_0.26-2_0.57-3_1.32\", \"1731_l_2_r-0_1.38-1_0.71-2_0.34-3_0.2\", \"1732_l_2_r-0_0.69-1_0.66-2_0.85-3_0.41\", \"1733_l_2_r-0_1.16-1_0.71-2_0.18-3_0.49\", \"1734_l_2_r-0_2.04-1_0.69-2_2.16-3_1.31\", \"1735_l_2_r-0_0.85-1_0.01-2_1.34-3_0.69\", \"1736_l_2_r-0_1.54-1_2.1-2_0.02-3_0.28\", \"1737_l_2_r-0_0.3-1_1.77-2_0.57-3_1.07\", \"1738_l_2_r-0_1.28-1_0.02-2_1.08-3_0.28\", \"1739_l_2_r-0_0.77-1_0.11-2_0.66-3_0.43\", \"1740_l_2_r-0_0.2-1_1.01-2_1.13-3_1.57\", \"1741_l_2_r-0_0.2-1_0.65-2_0.74-3_1.14\", \"1742_l_2_r-0_0.47-1_0.96-2_1.88-3_0.18\", \"1743_l_2_r-0_0.58-1_1.37-2_2.71-3_1.1\", \"1744_l_2_r-0_1.35-1_0.67-2_0.81-3_1.18\", \"1745_l_2_r-0_0.73-1_0.78-2_1.1-3_1.32\", \"1746_l_2_r-0_0.41-1_0.62-2_0.29-3_0.63\", \"1747_l_2_r-0_0.07-1_0.11-2_0.95-3_0.58\", \"1748_l_2_r-0_0.18-1_0.14-2_0.35-3_0.48\", \"1749_l_2_r-0_0.28-1_0.38-2_0.57-3_0.69\", \"1750_l_2_r-0_0.81-1_0.5-2_1.57-3_0.63\", \"1751_l_2_r-0_0.9-1_1.42-2_0.99-3_1.04\", \"1752_l_2_r-0_0.02-1_0.46-2_0.06-3_0.19\", \"1753_l_2_r-0_0.74-1_1.46-2_0.54-3_0.03\", \"1754_l_2_r-0_0.73-1_0.35-2_1.55-3_1.58\", \"1755_l_2_r-0_0.72-1_0.49-2_0.75-3_1.34\", \"1756_l_2_r-0_0.39-1_0.32-2_1.08-3_0.34\", \"1757_l_2_r-0_0.36-1_2.19-2_0.62-3_0.03\", \"1758_l_2_r-0_0.26-1_0.55-2_0.27-3_1.26\", \"1759_l_2_r-0_0.73-1_0.86-2_0.54-3_0.1\", \"1760_l_2_r-0_0.12-1_0.58-2_0.87-3_1.39\", \"1761_l_2_r-0_0.34-1_0.65-2_0.98-3_0.95\", \"1762_l_2_r-0_0.35-1_1.83-2_0.4-3_2.21\", \"1763_l_2_r-0_0.39-1_1.26-2_0.86-3_1.9\", \"1764_l_2_r-0_1.29-1_1.14-2_0.5-3_1.15\", \"1765_l_2_r-0_0.57-1_0.41-2_1.77-3_1.03\", \"1766_l_2_r-0_0.49-1_0.48-2_0.77-3_0.26\", \"1767_l_2_r-0_1.08-1_1.74-2_1.97-3_0.89\", \"1768_l_2_r-0_1.17-1_0.15-2_0.24-3_0.4\", \"1769_l_2_r-0_0.19-1_0.51-2_1.78-3_1.03\", \"1770_l_2_r-0_0.41-1_0.27-2_1.46-3_2.34\", \"1771_l_2_r-0_0.9-1_0.2-2_0.87-3_0.81\", \"1772_l_2_r-0_0.09-1_0.78-2_1.56-3_2.23\", \"1773_l_2_r-0_0.29-1_0.68-2_1.23-3_0.71\", \"1774_l_2_r-0_0.6-1_1.58-2_0.22-3_0.3\", \"1775_l_2_r-0_0.76-1_0.69-2_1.51-3_0.27\", \"1776_l_2_r-0_0.36-1_1.5-2_0.84-3_1.56\", \"1777_l_2_r-0_2.67-1_0.06-2_1.31-3_2.26\", \"1778_l_2_r-0_0.27-1_0.41-2_0.04-3_3.33\", \"1779_l_2_r-0_0.36-1_0.89-2_1.09-3_0.3\", \"1780_l_2_r-0_1.01-1_0.39-2_2.79-3_0.74\", \"1781_l_2_r-0_1.6-1_0.51-2_1.34-3_0.23\", \"1782_l_2_r-0_0.01-1_0.12-2_0.8-3_0.11\", \"1783_l_2_r-0_0.65-1_1.38-2_0.57-3_0.72\", \"1784_l_2_r-0_0.47-1_0.71-2_0.42-3_0.46\", \"1785_l_2_r-0_0.69-1_0.32-2_0.25-3_0.07\", \"1786_l_2_r-0_0.92-1_0.22-2_0.46-3_0.64\", \"1787_l_2_r-0_0.66-1_0.3-2_0.22-3_1.3\", \"1788_l_2_r-0_1.55-1_1.75-2_0.49-3_0.13\", \"1789_l_2_r-0_0.45-1_0.21-2_3.13-3_0.16\", \"1790_l_2_r-0_2.68-1_0.39-2_1.41-3_0.6\", \"1791_l_2_r-0_0.05-1_0.38-2_1.4-3_0.32\", \"1792_l_2_r-0_0.4-1_0.55-2_1.0-3_1.37\", \"1793_l_2_r-0_0.08-1_0.01-2_0.36-3_0.32\", \"1794_l_2_r-0_0.5-1_1.14-2_0.33-3_2.67\", \"1795_l_2_r-0_1.06-1_0.58-2_0.72-3_0.1\", \"1796_l_2_r-0_2.55-1_1.34-2_0.37-3_1.23\", \"1797_l_2_r-0_0.9-1_1.54-2_0.19-3_0.59\", \"1798_l_2_r-0_0.47-1_1.01-2_0.07-3_1.92\", \"1799_l_2_r-0_0.86-1_0.05-2_1.07-3_0.74\", \"1800_l_2_r-0_0.41-1_0.28-2_0.58-3_1.66\", \"1801_l_2_r-0_0.75-1_0.67-2_0.73-3_0.08\", \"1802_l_2_r-0_0.65-1_1.38-2_0.25-3_1.18\", \"1803_l_2_r-0_2.29-1_0.34-2_2.05-3_0.55\", \"1804_l_2_r-0_1.49-1_0.75-2_1.64-3_0.0\", \"1805_l_2_r-0_0.0-1_0.58-2_0.39-3_0.56\", \"1806_l_2_r-0_0.18-1_1.34-2_0.11-3_0.88\", \"1807_l_2_r-0_0.12-1_0.36-2_0.21-3_1.44\", \"1808_l_2_r-0_1.98-1_0.97-2_0.82-3_1.27\", \"1809_l_2_r-0_0.85-1_0.49-2_0.98-3_0.07\", \"1810_l_2_r-0_0.79-1_2.29-2_0.64-3_0.75\", \"1811_l_2_r-0_0.1-1_0.83-2_0.38-3_1.39\", \"1812_l_2_r-0_0.98-1_2.04-2_0.3-3_0.53\", \"1813_l_2_r-0_0.46-1_0.14-2_1.74-3_0.23\", \"1814_l_2_r-0_0.9-1_0.37-2_0.2-3_0.1\", \"1815_l_2_r-0_0.23-1_0.03-2_0.59-3_1.09\", \"1816_l_2_r-0_2.62-1_1.56-2_0.54-3_1.58\", \"1817_l_2_r-0_0.63-1_0.36-2_0.82-3_1.22\", \"1818_l_2_r-0_0.26-1_0.62-2_1.03-3_0.58\", \"1819_l_2_r-0_1.27-1_0.35-2_2.19-3_0.29\", \"1820_l_2_r-0_0.05-1_0.09-2_1.25-3_0.64\", \"1821_l_2_r-0_1.3-1_1.6-2_1.72-3_1.22\", \"1822_l_2_r-0_2.13-1_0.89-2_0.16-3_1.1\", \"1823_l_2_r-0_0.03-1_0.23-2_0.24-3_0.5\", \"1824_l_2_r-0_2.4-1_2.52-2_0.68-3_0.12\", \"1825_l_2_r-0_0.9-1_0.31-2_2.1-3_0.93\", \"1826_l_2_r-0_0.52-1_0.75-2_0.66-3_1.04\", \"1827_l_2_r-0_1.32-1_1.54-2_1.36-3_0.06\", \"1828_l_2_r-0_1.27-1_0.17-2_0.6-3_1.02\", \"1829_l_2_r-0_0.25-1_0.34-2_0.71-3_0.95\", \"1830_l_2_r-0_0.28-1_0.61-2_1.6-3_0.67\", \"1831_l_2_r-0_0.25-1_1.0-2_0.36-3_0.09\", \"1832_l_2_r-0_0.46-1_0.68-2_2.16-3_0.76\", \"1833_l_2_r-0_1.04-1_1.69-2_2.31-3_0.78\", \"1834_l_2_r-0_0.04-1_0.17-2_0.2-3_0.66\", \"1835_l_2_r-0_1.26-1_1.4-2_0.33-3_1.02\", \"1836_l_2_r-0_0.16-1_0.91-2_1.39-3_3.5\", \"1837_l_2_r-0_0.47-1_0.18-2_0.66-3_0.64\", \"1838_l_2_r-0_0.28-1_2.69-2_1.13-3_0.27\", \"1839_l_2_r-0_1.4-1_0.02-2_0.09-3_0.47\", \"1840_l_2_r-0_1.13-1_1.26-2_0.91-3_0.31\", \"1841_l_2_r-0_0.18-1_1.59-2_0.39-3_1.59\", \"1842_l_2_r-0_0.69-1_2.0-2_1.16-3_0.83\", \"1843_l_2_r-0_0.73-1_0.58-2_1.26-3_0.85\", \"1844_l_2_r-0_0.84-1_0.03-2_0.79-3_0.19\", \"1845_l_2_r-0_0.1-1_1.54-2_0.75-3_0.98\", \"1846_l_2_r-0_1.0-1_0.15-2_2.26-3_0.67\", \"1847_l_2_r-0_0.05-1_2.84-2_1.17-3_0.97\", \"1848_l_2_r-0_0.42-1_0.25-2_0.5-3_0.3\", \"1849_l_2_r-0_0.76-1_0.8-2_2.28-3_0.03\", \"1850_l_2_r-0_0.17-1_0.72-2_1.67-3_0.93\", \"1851_l_2_r-0_0.49-1_1.25-2_0.07-3_1.17\", \"1852_l_2_r-0_0.91-1_1.73-2_0.09-3_0.8\", \"1853_l_2_r-0_0.25-1_0.18-2_0.57-3_1.28\", \"1854_l_2_r-0_0.27-1_0.31-2_0.35-3_1.6\", \"1855_l_2_r-0_1.21-1_0.49-2_3.44-3_0.39\", \"1856_l_2_r-0_0.59-1_0.38-2_1.44-3_0.19\", \"1857_l_2_r-0_0.97-1_0.66-2_0.78-3_0.35\", \"1858_l_2_r-0_1.53-1_1.4-2_0.07-3_0.81\", \"1859_l_2_r-0_1.16-1_1.16-2_1.09-3_1.78\", \"1860_l_2_r-0_0.68-1_1.61-2_0.88-3_0.82\", \"1861_l_2_r-0_0.52-1_2.44-2_1.71-3_1.06\", \"1862_l_2_r-0_1.6-1_0.02-2_2.03-3_1.29\", \"1863_l_2_r-0_1.18-1_0.2-2_1.1-3_0.32\", \"1864_l_2_r-0_0.81-1_2.02-2_1.13-3_0.69\", \"1865_l_2_r-0_1.24-1_0.15-2_0.43-3_1.1\", \"1866_l_2_r-0_0.18-1_2.57-2_1.16-3_1.07\", \"1867_l_2_r-0_0.98-1_0.1-2_0.47-3_0.75\", \"1868_l_2_r-0_1.04-1_1.08-2_1.49-3_1.14\", \"1869_l_2_r-0_0.15-1_1.23-2_1.34-3_0.45\", \"1870_l_2_r-0_0.39-1_1.03-2_0.13-3_1.14\", \"1871_l_2_r-0_0.01-1_0.88-2_1.39-3_1.34\", \"1872_l_2_r-0_1.65-1_1.08-2_2.57-3_1.2\", \"1873_l_2_r-0_0.12-1_1.77-2_0.37-3_0.51\", \"1874_l_2_r-0_0.74-1_0.5-2_2.33-3_1.39\", \"1875_l_2_r-0_0.13-1_0.73-2_1.59-3_3.12\", \"1876_l_2_r-0_0.03-1_0.72-2_0.89-3_0.7\", \"1877_l_2_r-0_2.08-1_0.98-2_0.07-3_0.13\", \"1878_l_2_r-0_1.08-1_1.05-2_1.05-3_0.25\", \"1879_l_2_r-0_0.96-1_0.39-2_1.73-3_2.03\", \"1880_l_2_r-0_1.17-1_0.44-2_1.06-3_1.03\", \"1881_l_2_r-0_0.73-1_1.34-2_1.02-3_0.83\", \"1882_l_2_r-0_1.46-1_1.76-2_1.31-3_0.75\", \"1883_l_2_r-0_1.45-1_1.07-2_0.44-3_1.48\", \"1884_l_2_r-0_1.49-1_0.74-2_0.11-3_0.85\", \"1885_l_2_r-0_2.14-1_0.25-2_0.15-3_1.32\", \"1886_l_2_r-0_0.9-1_0.26-2_0.58-3_1.7\", \"1887_l_2_r-0_1.18-1_0.39-2_1.76-3_0.31\", \"1888_l_2_r-0_0.93-1_1.94-2_0.63-3_0.58\", \"1889_l_2_r-0_0.74-1_0.91-2_0.67-3_0.92\", \"1890_l_2_r-0_1.26-1_0.69-2_0.35-3_1.68\", \"1891_l_2_r-0_0.56-1_0.13-2_1.02-3_0.01\", \"1892_l_2_r-0_0.78-1_0.87-2_0.43-3_1.05\", \"1893_l_2_r-0_1.16-1_1.08-2_0.06-3_0.09\", \"1894_l_2_r-0_1.36-1_1.68-2_1.58-3_0.36\", \"1895_l_2_r-0_0.71-1_1.41-2_1.23-3_0.67\", \"1896_l_2_r-0_0.08-1_0.47-2_1.32-3_0.4\", \"1897_l_2_r-0_0.14-1_1.73-2_0.6-3_1.08\", \"1898_l_2_r-0_1.72-1_0.03-2_2.02-3_1.27\", \"1899_l_2_r-0_0.0-1_1.17-2_0.11-3_0.75\", \"1900_l_2_r-0_1.71-1_1.44-2_0.29-3_0.81\", \"1901_l_2_r-0_1.91-1_0.0-2_2.02-3_1.13\", \"1902_l_2_r-0_1.86-1_0.47-2_0.54-3_0.03\", \"1903_l_2_r-0_0.27-1_0.6-2_0.03-3_0.21\", \"1904_l_2_r-0_0.2-1_0.9-2_1.15-3_0.87\", \"1905_l_2_r-0_1.46-1_0.88-2_0.03-3_1.66\", \"1906_l_2_r-0_0.66-1_0.61-2_1.23-3_1.07\", \"1907_l_2_r-0_0.02-1_1.28-2_1.74-3_0.09\", \"1908_l_2_r-0_0.94-1_0.68-2_1.76-3_1.39\", \"1909_l_2_r-0_0.24-1_1.26-2_1.45-3_1.16\", \"1910_l_2_r-0_0.9-1_0.24-2_1.06-3_0.04\", \"1911_l_2_r-0_0.5-1_0.13-2_1.19-3_0.58\", \"1912_l_2_r-0_0.11-1_0.14-2_2.14-3_0.42\", \"1913_l_2_r-0_1.43-1_0.32-2_0.25-3_0.46\", \"1914_l_2_r-0_0.09-1_0.13-2_1.92-3_0.06\", \"1915_l_2_r-0_0.69-1_0.46-2_0.5-3_1.52\", \"1916_l_2_r-0_0.26-1_1.15-2_1.81-3_0.72\", \"1917_l_2_r-0_0.93-1_0.01-2_0.99-3_1.37\", \"1918_l_2_r-0_2.0-1_0.72-2_0.77-3_0.84\", \"1919_l_2_r-0_1.58-1_1.33-2_0.28-3_0.09\", \"1920_l_2_r-0_0.28-1_0.95-2_2.65-3_0.95\", \"1921_l_2_r-0_2.1-1_0.05-2_0.49-3_0.5\", \"1922_l_2_r-0_0.22-1_0.52-2_0.69-3_0.25\", \"1923_l_2_r-0_1.39-1_0.87-2_0.73-3_1.46\", \"1924_l_2_r-0_1.08-1_0.35-2_1.4-3_0.02\", \"1925_l_2_r-0_1.05-1_2.01-2_0.77-3_0.57\", \"1926_l_2_r-0_1.03-1_0.3-2_0.02-3_1.0\", \"1927_l_2_r-0_0.07-1_0.7-2_0.2-3_1.78\", \"1928_l_2_r-0_0.6-1_0.34-2_0.08-3_1.27\", \"1929_l_2_r-0_0.23-1_0.07-2_0.63-3_0.23\", \"1930_l_2_r-0_1.14-1_1.26-2_0.49-3_0.47\", \"1931_l_2_r-0_0.26-1_0.85-2_0.81-3_1.82\", \"1932_l_2_r-0_2.09-1_1.1-2_0.53-3_0.78\", \"1933_l_2_r-0_0.52-1_0.42-2_1.45-3_0.49\", \"1934_l_2_r-0_1.85-1_0.54-2_0.52-3_0.55\", \"1935_l_2_r-0_0.18-1_1.09-2_0.09-3_0.2\", \"1936_l_2_r-0_1.77-1_0.22-2_2.35-3_1.82\", \"1937_l_2_r-0_1.27-1_1.0-2_0.16-3_1.15\", \"1938_l_2_r-0_1.48-1_0.88-2_0.04-3_1.49\", \"1939_l_2_r-0_0.73-1_0.83-2_0.18-3_1.35\", \"1940_l_2_r-0_1.8-1_0.87-2_0.78-3_0.17\", \"1941_l_2_r-0_0.44-1_1.78-2_0.89-3_1.23\", \"1942_l_2_r-0_0.18-1_0.37-2_0.76-3_0.48\", \"1943_l_2_r-0_1.76-1_0.06-2_0.68-3_1.54\", \"1944_l_2_r-0_0.26-1_0.22-2_0.97-3_1.64\", \"1945_l_2_r-0_0.43-1_0.43-2_0.66-3_0.26\", \"1946_l_2_r-0_0.74-1_0.44-2_0.78-3_0.53\", \"1947_l_2_r-0_0.11-1_0.78-2_0.58-3_0.12\", \"1948_l_2_r-0_1.72-1_0.07-2_0.28-3_0.82\", \"1949_l_2_r-0_0.74-1_0.68-2_0.75-3_0.29\", \"1950_l_2_r-0_1.32-1_1.52-2_0.7-3_0.69\", \"1951_l_2_r-0_1.02-1_1.13-2_0.33-3_0.2\", \"1952_l_2_r-0_0.01-1_0.95-2_1.51-3_0.58\", \"1953_l_2_r-0_1.8-1_0.2-2_1.49-3_0.54\", \"1954_l_2_r-0_1.06-1_0.2-2_0.51-3_0.55\", \"1955_l_2_r-0_0.51-1_1.21-2_0.15-3_1.56\", \"1956_l_2_r-0_1.66-1_2.74-2_0.15-3_0.94\", \"1957_l_2_r-0_1.7-1_1.86-2_1.33-3_0.76\", \"1958_l_2_r-0_0.01-1_1.0-2_1.16-3_1.05\", \"1959_l_2_r-0_0.05-1_0.02-2_0.45-3_2.22\", \"1960_l_2_r-0_0.94-1_0.19-2_1.23-3_2.67\", \"1961_l_2_r-0_1.33-1_1.54-2_2.08-3_1.22\", \"1962_l_2_r-0_0.56-1_0.71-2_0.08-3_0.22\", \"1963_l_2_r-0_1.44-1_0.27-2_0.41-3_0.05\", \"1964_l_2_r-0_0.06-1_0.39-2_0.25-3_0.39\", \"1965_l_2_r-0_0.3-1_0.5-2_0.84-3_1.51\", \"1966_l_2_r-0_1.37-1_2.65-2_0.29-3_0.81\", \"1967_l_2_r-0_0.85-1_0.38-2_0.27-3_1.24\", \"1968_l_2_r-0_1.66-1_1.16-2_0.02-3_0.42\", \"1969_l_2_r-0_0.59-1_0.11-2_0.37-3_0.79\", \"1970_l_2_r-0_0.72-1_0.09-2_1.49-3_1.04\", \"1971_l_2_r-0_0.01-1_0.3-2_1.19-3_0.53\", \"1972_l_2_r-0_0.58-1_0.75-2_0.34-3_0.99\", \"1973_l_2_r-0_0.05-1_1.0-2_0.13-3_0.05\", \"1974_l_2_r-0_0.63-1_3.46-2_1.02-3_1.54\", \"1975_l_2_r-0_0.45-1_0.3-2_1.14-3_0.11\", \"1976_l_2_r-0_0.96-1_0.36-2_0.33-3_0.65\", \"1977_l_2_r-0_1.59-1_1.69-2_1.51-3_0.07\", \"1978_l_2_r-0_0.47-1_1.04-2_0.37-3_0.76\", \"1979_l_2_r-0_0.79-1_0.87-2_0.82-3_3.42\", \"1980_l_2_r-0_0.26-1_1.75-2_2.34-3_0.98\", \"1981_l_2_r-0_1.15-1_0.57-2_0.59-3_1.89\", \"1982_l_2_r-0_1.49-1_0.92-2_0.46-3_0.84\", \"1983_l_2_r-0_1.29-1_0.35-2_0.63-3_1.91\", \"1984_l_2_r-0_0.75-1_2.05-2_0.53-3_0.28\", \"1985_l_2_r-0_0.43-1_0.42-2_0.42-3_0.08\", \"1986_l_2_r-0_0.07-1_0.99-2_1.7-3_0.98\", \"1987_l_2_r-0_0.71-1_0.86-2_1.89-3_0.98\", \"1988_l_2_r-0_1.23-1_0.03-2_1.96-3_0.57\", \"1989_l_2_r-0_1.48-1_0.69-2_1.18-3_0.13\", \"1990_l_2_r-0_0.2-1_0.94-2_0.33-3_1.44\", \"1991_l_2_r-0_0.47-1_0.3-2_0.07-3_1.05\", \"1992_l_2_r-0_0.57-1_0.66-2_2.18-3_0.63\", \"1993_l_2_r-0_0.48-1_2.22-2_0.75-3_0.41\", \"1994_l_2_r-0_0.33-1_1.0-2_1.25-3_0.03\", \"1995_l_2_r-0_2.07-1_0.49-2_0.51-3_0.33\", \"1996_l_2_r-0_0.31-1_1.02-2_1.08-3_0.01\", \"1997_l_2_r-0_1.91-1_1.01-2_1.7-3_0.98\"], \"type\": \"scatter3d\", \"x\": [-0.21682053297209802, -0.3875159634351506, -0.792732101757964, -0.17641525554795479, 2.5285988101632406, -0.10653592128505807, 1.942739755492521, 1.3265902901634825, -0.10208381484012019, 1.2149037530392555, 0.9420355376958611, -0.04646011732547328, -0.020201630393774206, -1.1386009510047206, -0.6749311789767167, -1.4096323776303885, 0.3578375439888597, 2.8478109431976186, 2.5972005087307704, 0.6495266555453472, -2.9650173228074896, -0.13311993086768648, -0.45238897609459494, -2.4012076680510948, 1.0194809198013484, 0.01335670501594155, -1.1222981149433582, -0.30375240564022454, -0.10713751538937721, -1.249552246493078, -0.9184077389177381, -0.11542018819045219, -0.37188613935621695, 1.5293379047784916, -0.18468294497575788, 1.6264007310863633, 0.14268955772438807, 0.9735568144241158, -1.951375736452687, 0.7058228922842686, -0.6857960668406771, 2.385557155484664, -0.20222632132552754, 3.3520211338851493, -0.49610652777119624, -0.4987316872059362, -0.28741066733140697, 2.504919309637849, 3.74648394481223, -0.6491465847342028, -1.274209656669179, 4.641349926352112, -1.4042218199070295, -0.21118446697776738, -0.5593635526469367, 2.2528130760225755, 2.7341128451115635, -0.9567342205408713, 0.3446934810538772, 1.4362616791146035, -0.823947518580239, -0.45604264156379726, 3.8114528571136517, 2.4915114796959594, -1.2998412573907254, -0.46202103550321816, -0.0021362818376005066, 0.854807180194505, 1.8099550840011616, -1.1967149899948124, -0.8239152056002399, 1.035742402859377, 1.7754471481409553, -0.8625397214138875, -0.09689589780160168, 2.6261809987437434, -0.49752190682120356, 1.1711925080526362, 0.5594064734158357, 1.644872647558996, 1.2782668031182958, 0.13158347272412763, -0.9222511308100994, 2.7126730983540233, -0.22348147132244, 2.1741062655052965, -1.089337655618619, 0.5000044774510496, -0.7446247267609898, -0.051260802596673205, -1.4815308311397435, 2.564388658490085, 0.12897380282041815, 1.8833210065877248, -0.33577630385501744, 1.8218879474237157, -0.7212415559419101, -1.0462145606976074, -0.43824988285077193, 0.462903048269072, -0.2930537271946392, 1.8694842403930352, -0.7069546158233211, 2.789709828452298, -0.10040127433249801, 2.9561593888460758, 2.088371285072525, 0.0479902192272369, -1.0634541130159803, -0.06463566683906574, -0.5597075731597678, 0.6007526304691801, -0.5542556299094443, -0.9612175454889436, 1.7068407922148294, 2.0937543557064044, 1.3513759717429474, -0.028050963421130337, -1.2569414601673232, 0.2943777472355785, -0.20648838248303947, -1.2618442948771111, 1.5306135218394563, 3.013683619531627, -1.3116415931629954, -0.09624164705587157, -1.1472829463544274, 0.19934428399205195, -0.056261263367709535, -0.09401902837298737, 1.671054432599803, 0.6646462435163056, 0.005412624992824355, -0.5475501606416533, -0.47158198871106616, 2.9906514147623926, 0.2821719416956533, 1.4778480549400737, -0.5284237770033589, 1.9269164629817401, 0.9762802218842436, -0.22499452498008932, -0.09307017421200037, 2.1056632512571487, -1.5448979356947805, 0.6733721634880514, 1.789436082800289, 1.751018131386581, 2.611222767819844, 3.061767346103634, -0.9848790026550598, 2.36463837946361, 1.8990170744329695, -1.0388683995704087, 4.169334123120613, 3.23624438879155, -0.11607275508918957, 0.252648426126557, -0.2158395370609658, 2.5986367141351536, -0.9752283396509165, 1.056640398802914, 2.0013923661729223, 0.6917966722662761, 1.6279955809519553, -0.717383014347333, -0.09056368496705036, 1.4054764350401647, -0.35533050523965715, -1.1040785035932497, -0.16844032578614376, 4.168614737942852, -0.4667033538058709, -0.8571487207986785, -0.7087221912358412, 0.004325406979668878, -0.660296986145412, -0.4959068702531304, -0.22309591324209488, 0.9696775637031286, 2.4157507786867436, 2.785377200180908, -0.14611256147559937, 2.9705546312705913, 2.9256715241599114, 1.5836581106960053, -0.2389860195293212, 0.6433280128301267, 2.7678480368860487, -0.7354855428516021, 2.4308352531927495, 1.4492497986626136, 1.1179707104163121, 0.9419299690412182, -1.0418201742189148, 1.2931147853315563, -1.1071837131514695, -0.45674973309461797, -0.9167271787291567, 1.9517499048238116, -1.4046382993220283, -0.1089513645547171, 1.021994308308981, 2.821436781157293, -0.6904306753837302, -1.4957134493809447, -1.8709701287999292, 0.2373556516128601, -0.3862814117195157, -0.8760640365413035, -1.3192157759643708, 1.7473448710530102, 0.32361228436836165, 1.9353230864243165, 0.25225565390403903, 2.2185794980699227, 2.6256897379699633, -0.18430885483270232, 0.16515512594627568, 0.662141811295103, -0.8114585168348383, 1.8277286663207613, 1.9822211095074782, 0.13402956348491502, 2.199075307462243, 2.421840709829226, -0.03795538231208284, 3.4397730870383008, 2.1170247804014277, 2.7571404084050504, -1.004621376570988, 0.2751816837502916, -0.23124837030550127, -0.7619267086242048, 1.7468147621454158, 0.6516684821188052, -0.5189436209104052, -2.428206719593206, 1.6426688401197056, 2.336440366079591, -0.3372057293215971, 2.773285772494204, -0.10950776002642071, 0.3059618950873473, 3.011168425254145, 1.378231029884139, 1.1981475599897804, 2.178395988619862, -0.37633306412478285, 0.1491498780969378, 1.0867182321518138, 1.4148980144888816, -2.0187463346160213, 3.164338260550037, -0.3480533004226587, 1.7805931953610603, -0.6289558977929877, 0.25618684282903736, -2.9866436304190906, 3.4014202314702775, -1.4306857056966424, -0.8443644793612477, -0.2267709746724651, 1.4113880119372335, 0.12031837887057217, 0.4504873889486245, -0.22460781262633533, 1.9371596703171237, 0.03205879859297056, 2.638264944750535, 2.823180289073031, 0.8619041688965688, 2.7425085529012283, 1.8093007322454882, -1.0544137260929367, 3.2529659079934548, -0.4591124173458945, 1.0039994031371238, -1.2014015668887272, 0.3337991682701884, 2.319226592654334, -1.1458460484278632, -0.2572632416601308, 0.2905508194978138, -1.3078411589946706, 3.215195631787968, 0.12906889555821244, 2.7327656158554166, 4.545435628894289, -0.9037674122829165, -0.1445834944889628, 2.5716107346040147, 0.5435467061190628, 0.7819937410224783, -1.3048280264509553, 0.35874154262978797, -1.1593789221968467, 0.3150519052428863, -0.916339692090171, 1.6821755033602461, 3.0958771627406736, -0.3335910276427345, 0.6320557231306216, 2.432240726679693, -1.314789023164626, 0.39691454498726475, -0.49021220421155975, 0.028719328110256237, -0.9866020985865376, 1.9697335208701285, 0.6835046074702145, 1.0737079707011483, -0.06792651885049605, -0.11019688296809038, -0.004170847885697437, 0.5122798440866257, -0.0029617621071891254, 2.269001350664299, -0.8256192634343695, 2.713725577648712, -0.12583870949150056, -0.26643609489534925, 0.08377307385598853, 2.784384412763144, -1.2752111809394426, 2.61295882345986, 0.0906554379170681, 0.5003639155116176, 0.49810695892726453, 1.1088859486062774, 0.7532214521311639, 0.44021959916276543, 1.5266375187132661, 0.7673467512622242, -0.18450964295774908, 0.7976695057614334, 3.568322481132734, -0.5445101380220936, 0.6214260696053008, 0.8402269618182322, -1.2698279271451987, 0.12944633145005424, -0.09532345518764429, 0.8212106252378005, 2.604528266543247, -1.9813301633865734, 0.7525595874935009, 1.608774219258463, 2.2289400367708465, -0.6013540543983147, -0.8142761968515766, 2.6743174070621913, -0.27579032847152307, -1.361080330734767, -1.4111802686072492, 3.3680916954803206, 0.7186386568273274, 1.1783378170701637, -0.4026822188160992, 2.1442599658365347, -1.2749867735466482, -0.5618523463826457, 3.676262749720836, 0.5437761503891848, 1.019872896956594, 2.4106451791005785, 1.0566697053312295, 2.803731091776728, 2.2984368244317457, 2.7456633538467776, 2.1870536040945154, 1.5927331851700375, 0.6473313897741403, 0.9139694025192969, 0.12610229326913114, 2.4227796389494873, 0.8669610823366198, 2.8963369420542078, 0.6740143052681712, 2.337602008803933, 0.9605380583687141, 2.8912020044168427, 1.712342865754616, 2.9055248793359834, 3.209611893834094, 1.7002801540047772, 0.7929549558062419, 1.4732947569741686, 1.0497705391455914, 0.9318547498846166, 0.6070589334605707, 1.301297102738942, 1.9099926064669566, 0.8726398322664812, 0.11196063238156473, 0.8803435873922368, 4.493514324492141, 0.9148176298769992, 2.3645195019074605, 0.1955866969585861, 0.4057411484085707, 1.3225933924958524, 1.314476507580004, 0.6926276642204485, 0.27696152641611227, 4.083713896152039, 1.9129852583737295, 3.766275354205019, 1.5724256356908533, 1.14407807081606, 0.5483579031171177, 1.402376452097836, 1.9146055822512538, 1.3209673332861476, 2.039897933587149, 1.05012550269047, 2.357714085314508, 0.6855922120077081, 1.6417122928613668, 1.0351003156384133, 2.072867611749837, 2.152175033942661, 2.7544815377116882, 1.339813386533355, 0.6132147278556664, 1.8204821590148483, 1.263698464691201, 1.4534521515707817, 1.387564859814653, 0.9492469884283603, 2.2086241246080833, 2.508512582760825, 1.1463369797527583, 1.0305649370811902, 0.2578200648575948, 0.8942245166128155, 0.4027508268693377, 1.6099047504296071, 3.2850412012699235, 1.3616660218995182, 2.692101064391612, 0.7105800596970657, 0.30475367910967643, 1.4136645544513888, 2.6164127692587122, 2.3825746615270993, 4.147485162399287, 0.2992571074320399, 1.3379853538708781, 0.2295116353685167, 0.1056092524322576, 3.4709634771169124, 0.46080504319476645, 2.9599834185911327, 0.8231827552268985, 1.3029582394831478, 0.12961593599919308, 0.2928367530645124, 0.604283030848272, 0.316783968535554, 2.35289668601412, 2.471846189184484, 2.89474650325022, 1.1872153265590133, 2.814942631690685, 1.4223360422315388, 2.574246249304255, 2.552050306450373, 1.656066955997157, 0.07686980557839451, 1.4487264903945265, 1.042429049471594, 0.0005245044325036252, 1.4767501310821072, 0.8774304202769733, 1.4368583840409759, 1.2686870445222616, 2.231437634622707, 1.2481096837466037, 2.8859172615713087, 0.5273891306236536, 0.2310323848211201, 2.716279783582682, 1.0879767397878641, 2.4536439583818264, 1.4610973297062708, 0.575318169249712, 1.2507114061470592, 0.6352501102222652, 1.2190908841640458, 1.4052753676036338, 2.4473932302775077, 0.12368525685334308, 1.5196426685759947, 1.0432536771682286, 3.5134109958330035, 3.1505066686976537, 0.9499684776030974, 2.069883250751248, 2.3890452993329068, 2.1971514214466765, 0.7829975786081375, 2.3066621752303407, 2.68156201330204, 3.4967085800490643, 1.8278835122375527, 0.27316052330442586, 0.4723099448750322, 1.6984692710786735, 1.5933905476139787, 2.100250540352463, 0.8475635031813583, 0.18619946027217293, 1.3694230046075107, 2.1045609692682663, 0.9685101286671506, 1.8434747863434726, 2.2702963112783987, 2.340303706444172, 2.9966789889993537, 2.7818175162815963, 1.2750179726083704, 1.6015779057942687, 0.9771782082330763, 1.1719187854134105, 2.0926567994846805, 1.3157351648475273, 4.26925118778785, 0.8202656480441647, 1.4715010578765428, 1.4089836807070637, 0.3226683299862051, 4.238875138448314, 1.9553328011283033, 3.004970582859132, 2.2922295939519666, 2.5223017579039997, 0.44928155613113707, 1.1409625418047988, 2.553850910507385, 2.7970520344052003, 1.5922500519214338, 1.3935300317717212, 3.755863236319897, 0.7048435292381225, 2.716943781619811, 0.49910357160612806, 2.0253254240752296, 1.705448840512934, 1.3760310655796146, 0.7485214470301662, 3.27459805262885, 0.8544307887213622, 1.3185701395461948, 1.704883708751442, 1.907403948966762, 2.126112151540677, 1.3416910300622626, 1.798161483985429, 0.8311974617109398, 1.0488549738412387, 0.08751656129673913, 0.7694840076999196, 1.8449549814969732, 0.9220334057001847, 1.8390942371805008, 3.1059496097686248, 1.6386781211326067, 1.5423110189250346, 1.1999343698905125, 1.2713467636201297, 2.368902839668944, 2.122133068954011, 2.584375378377085, 1.0729409115377821, 1.606438936938882, 1.3869502602038384, 1.6702496266278515, 0.0359512609084639, 0.7780165917551094, 3.098652718638289, 1.6568745511925447, 1.7931676064475837, 3.12596061806619, 0.8944968631744248, 3.006290999313528, 0.8667423514932446, 0.08740104651068303, 0.9495365999208479, 1.3185513896694956, 4.499928038283921, 1.4580033010437665, 0.01600214733815386, 0.5741844486761568, 0.9986248281896134, 1.8468098480340727, 2.5652882550573612, 0.23155462866865817, 3.783668919566117, 2.735728916283846, 0.7849270460578261, 2.3878185425207974, 0.5480739537653593, 1.9073362893794643, 1.8234485482688152, 1.6973775565734344, 2.5449369676196127, 2.797409690568678, 0.17306070054949874, 2.643390301519157, 0.47661096920087, 2.6256725692409835, 1.638262022068799, 2.7245706633713445, 0.5260577533619533, 0.11691451786936746, 0.8204953712656748, 0.29044929531263786, 0.6913888185806409, 1.0422801403108384, 1.3898069090423675, 0.7963397730311458, 1.4628111314611822, 2.3444066408631508, 1.5513583008384435, 1.1104261465210246, 2.9475328729961845, 2.397731098656564, 4.156739714211328, 1.218155194879722, 2.1842267704766303, 0.054993327321999574, 1.0730070613040408, 2.2037659658667565, 2.6306926806094637, 1.9020730646183381, 0.4201329197211121, 0.7910460733551495, 2.4586956614393882, 2.57545003557939, 0.9853035971270171, 0.046780393376523066, 1.5430024191497664, 0.9416447030906454, 2.9010755825732373, 0.16320300615889827, 0.7596715761034173, 3.4229586075590728, 1.4838147039569973, 2.3806413663727763, 0.8375496003821197, 2.43697095943525, 2.7432446917256157, 0.37326876415846144, 1.7604810559129378, 4.2433865757728135, 0.5728160963480275, 0.28532160442601706, 1.7293338873000907, 2.151403710498976, 2.424914375784188, 0.4090287072289768, 0.025249866687655387, 2.155715443294523, 1.578001139110142, 0.9765839256999205], \"y\": [-1.809063083182856, -2.8565931627749377, -1.6874424575975393, -2.197488531417715, 2.071439444751699, -0.6533044320320922, 1.0442694182937746, 2.202298269705896, -0.9479270448613502, 0.16967682384695792, 0.40042606205810993, 1.043081153828517, 0.2967558411281601, -1.5619561804645983, -0.5151471001470909, -2.0715340951747656, 2.1047169957833725, 0.41856297039961965, 0.008731088432645473, 0.9114987239059475, -0.313931030925382, -2.585799714857373, 0.3128368125624008, -1.014869982533351, 0.3955573850967835, 0.579108067902623, -3.0051559158332473, -0.35256154848722765, -0.5302411937292211, -4.0287226247481955, 1.291712989064861, -0.17396822694103975, -2.1003347465512583, 1.357139809764862, -2.1857832860352886, 0.09723596087796227, 0.8375311628318782, 1.3183243285712405, 0.49628231577025583, -1.0331425942389263, -4.2489142690957475, 0.7906240741596631, -2.7949155749620624, -1.934173696162036, -1.6954387516858258, 1.655696377019063, 0.6900610651070229, -0.5998404998651932, 0.6092716664263347, -0.5594283309064872, -0.08847687042812191, -0.7194815497138713, -1.1494627965588333, -1.6806918999993439, -1.5181723763756896, -1.3190850969368333, 1.1610931209083604, -0.7449255104160087, 0.4445208872566455, -0.9834385712537628, 2.7416777844788696, -1.7111691608377106, 0.3044019322060185, -1.0119758500513196, -0.6648640714035637, -1.4490855190854957, -0.8534203215538663, -1.7927692537968711, 0.5924207143148645, 1.223881495662103, -1.067875137198203, -0.5727168953289522, 0.7193110539016958, 0.2918140738652595, 0.4693408766459293, -0.1070798172872135, -1.8806555612131899, 0.7355686953683873, 0.9022859262723579, -0.8962416283426825, 0.8124432611508043, 0.00791736100190965, 0.2859525344874494, -0.10082055505158616, -0.37849780065956906, 0.4373528936403839, -1.5048810703956885, -1.548613460802279, -0.7647644484071425, 1.184172157395238, 1.2082446279295636, -0.7007466168046586, 0.6780624783430345, 1.5178004765153807, 1.6883362223141418, -2.3415858128863416, -1.600976425714328, -1.8800683034199204, -1.02468790456294, -1.0056621719021437, -2.727422827073311, 0.12896824421193798, 1.8659428105435305, -2.788857319996194, -1.0026184486125007, 0.48891342798405013, 0.3216906330881717, -0.7807919476914829, 0.552182379943674, -2.0336331810357806, 0.7830779827567931, -2.0478009015807883, -1.8094813939374204, -0.036289166304280585, 1.3686910769189726, -1.2454970182032654, 0.47438850727399573, -0.692910356737608, -3.3091855421547622, -2.078788184731926, 0.3309057919391847, -0.912588823028681, 0.461767156071901, -1.156430317697128, -2.4787065815273537, 1.1912013807084687, -1.558058767704332, -0.20897969687208395, -0.11173955467050511, -1.2246688593484616, 1.1456857006518844, -1.0890726073091341, 1.216649778499264, 0.20687488963792688, -1.3794975832404885, -2.8231027079262203, 0.18414355821541406, 0.24149061486388868, 0.14473458707837628, -0.3993650892410211, 1.0257899294701556, -0.7318313521933378, -4.133173522027483, -1.2834244381976039, -2.2782690722912564, 0.3909976687256833, 0.7381933231171567, -0.3994205830950033, 0.767077959364094, 0.009566051101857376, -3.992230158548335, -0.18698761742296865, 0.19839308619664608, -3.678570516125054, 0.12390080005122872, -1.0130750959860664, -0.3818210868326185, 0.31917970541896756, -2.726567268189263, -0.23260956474649486, 0.45197293512397163, 0.09303284012200708, 0.5451975960682518, -2.1623911260902937, 1.0895864105973403, -3.4419681505632984, -1.9234765938042822, -2.088627607457393, 0.4472480726202004, -1.2352805396469801, -0.8443798449070514, -0.9702881036057521, -3.9509734741667195, -0.7827224488065392, 0.2381938903723666, -0.6447294415949656, -1.3965434909807042, -0.2822587401298644, -0.2131835822849183, -2.8322000266344842, 2.3337608404587, 2.170999457493829, 0.06342452178372149, -1.6694274009556689, 1.5341810036862316, 2.7868082224580717, -1.58238832801392, -0.3197577458414532, 0.6683136415769209, -0.5155587038756457, 1.5772012647783744, -0.7294060890647441, 0.22693448848790454, 1.6445140836810204, -1.90498121751595, -0.34979622515112985, -1.1583078120740904, 0.4687242963043927, -0.2991865775749595, -1.877832717904354, -1.089126177818847, -1.0679577210949167, 0.06375745284599899, -1.2698455407106755, -2.213401681407171, -0.9594368590586954, -1.9958590268258762, -2.0827739530767118, -3.3938075116771302, -0.5554104767770063, 0.09212759330962594, -0.22314657861431686, 1.4571943950937496, 0.9331121462911269, 0.6006526944046373, -0.516096892915279, 0.27530977038342286, -1.475467137326005, 0.3833423882203679, -2.5066737337329235, -2.414852755012291, 2.169049449083497, 0.8724026823926152, -2.5683287948026283, 1.5937538897487107, 1.675720757976717, 0.2791926951496715, -1.639136671437791, 0.27626177086968484, 0.5520609803868446, -1.1510904625784881, -1.381549143096563, -2.306337061979299, -1.3996001715429824, 0.6155469743709459, -2.6331561179493153, -1.7843551133720625, 1.3220335535385992, 0.6370007756408846, -2.3668580387531364, -2.597089198802024, 0.7559576765148113, -1.5396729605783332, -1.0146294191282443, 0.37895118480167134, 0.3700394491932708, 0.00694379560050562, -0.9768198796134062, 1.1020222823400188, 0.2750930927204027, 0.43980856152450065, -2.7997657486019962, -0.956275812713613, 0.7056182066182375, 0.4509873640688906, -0.12326919493902577, 0.7362316860275391, 0.36725229688455463, -1.5064197534562138, -2.2941923177583745, -2.7989485217049253, -1.1041499600713103, -2.2709411354315634, -5.272650465186064, 0.22897295988247568, 0.8877264977656774, -0.972596451155384, -1.8173681541803608, 0.2643798406496978, 0.7283910797294806, 0.8224562994297027, -3.4180799154816737, 0.013263384548695578, 0.09202898549323635, -1.7527519901590884, -0.8616468446689832, 1.914756090536942, 0.04387340701466491, 0.45921444511516873, -1.161609894811698, 0.16997948322194856, -0.46104281027111804, -0.201419942743866, -2.372323182298552, -3.129852705360606, 1.023258083321751, 0.9864700470965566, -2.4980755394894985, 0.4171930589203965, -1.6084429749998128, -3.793628280557834, -0.34705993491565246, 0.5593702443199089, 0.8853513508516497, -0.3251343644238146, -0.7152425676019123, -2.6177190123557557, 0.28744415712178384, -2.874289315006068, -0.5698605214189291, 0.19758790447997776, -0.07699968868735607, 0.7317114353513834, -0.07353058308919302, -1.0379949994195228, 0.12778488390207876, -1.7592945660556407, -1.3669917441919497, -0.6157082719144582, 1.0879590105904033, 0.3832859857599229, -3.129269197923294, -0.8690502349984899, -2.6286666896474946, -1.7879088144387498, -0.03843459033483143, -0.1420537237200511, 1.0372264053401112, -2.281408326532655, -0.8493679164110486, 0.8562817829864564, 0.024116671956489366, 0.32348051876658657, -2.5486742718504036, -0.3108743696079418, 0.2586840595801507, 0.3586345765273218, -2.769325703071095, 1.1987282106519492, 1.5854970069404843, 0.46715736108619477, -0.6177673334564461, 1.2887047587067473, 0.029815358585392637, 0.04111459498455905, -1.7872682859811904, 0.40836090535844694, 0.30521569750327204, 0.1600900060514323, -1.9928358762829577, -1.3280800018080456, 0.10358672005587866, -1.6831292844019456, -2.5070578585869328, 1.3305816298400215, 0.23972282471287643, 0.12889992973385045, -0.07297098599554863, 1.940385263907956, -1.7341923349254613, -1.2265247090240516, -0.3044691855544106, -1.985977280390761, -1.2310115530834727, -2.0024328538552485, -2.4119618522421247, 0.5504278704668815, 0.11403561421051367, 0.21658810254118754, -2.404410701748288, -1.811431768342258, -1.1534292858469266, -1.329389939638999, -0.9224761313865784, -3.255204652508491, -0.027887162204139226, -1.7021015821527223, -2.347076590971811, -2.1519125966193386, -0.3838859571955031, -0.718763079918302, -0.9585994350014085, -0.8706338703435674, -1.4542229101468174, -1.8411108567996224, -0.6751172084246431, -2.280240441542568, -2.947603220271504, -2.392253311398953, -0.7746102185932955, -2.5667569177869387, -2.2319357160931323, -1.3822348142845364, -0.9263955434764258, -2.2199550796967564, -1.9799487434938674, -2.7668460723439887, -2.332271085419204, -1.3292881408927535, -0.9162426470040362, -1.2517486098281319, -2.1888418321709784, -0.8537376516098636, -0.6250902193666512, -1.056098315914734, -3.2218326039296556, -0.7430474090071524, -1.1180947431958788, -1.3166886364419264, -1.7404771639785872, -1.5503096020887912, -1.0369788609470227, -3.3816045648971973, -2.6664990672998483, -2.2132443587641104, -1.074881794993854, -0.27887294932406215, -0.4330472443433936, -3.7508115172459817, -3.18486276299124, -0.17873445776834995, -1.095020236430038, -1.1773311482015951, -1.4776320780545813, -0.6322601752852934, -1.3481243165311567, -0.9504107202791452, -1.0139544755367653, -0.6313863065994766, -3.444345354409326, -0.18698205295716752, -2.134698485093854, -5.800002481591007, -2.2633700038182916, -0.5400099615963896, -0.030980339344354735, -2.347237361744039, -0.10318315251276966, -1.6756906115503098, -3.862279963111329, -2.6968755612454585, -1.901357838688961, -1.9868841850843535, -1.84117479869193, -2.753404847317527, -2.5377804294843056, -2.5502777901286713, -1.0329456055842379, -2.3382964212136113, -0.8094413450003577, -2.2263620635613566, -2.0420760537816136, -1.204733658652266, -1.5309007517280229, -1.5646995362116165, -2.2594686304805998, -3.33194188888801, -0.9587676523828298, -1.3166299536843096, -3.370410266555025, -0.6023413324314972, -0.7193165320238911, -1.9640281605536298, -0.6544830189369679, -0.6414117386155593, -2.3226029090631872, -1.2036577517180334, -2.0222522303706336, -1.0917953381375687, -0.31869181672793045, -1.3666335050629288, -0.3218092303352925, -3.540721972528398, -0.09679057401838997, -1.2344049349000317, -0.979360250056949, -2.387310618936901, -0.7354346631158578, -3.5197869609728634, -1.074964363612732, -1.1839892216493206, -0.554345506963471, -1.0728174799465646, -1.1863496261440094, -1.3377675503480635, -3.609067290699106, -2.8341071425648483, -0.06963150838730614, -0.747057690473917, -1.9711539195345384, -0.9171665631442479, -1.1692335184620126, -0.4202904929521305, -1.0949887416155213, -1.5807178452918018, -1.2201096488307523, -1.2925511039205395, -0.2864559175076856, -0.9863376346896268, -1.3010412760922834, -1.0971428924324012, -0.49804797997019135, -0.5797651264212013, -0.9332157968853543, -1.3674890032367084, -0.05538253746827626, -1.0164154624115573, -1.4559400056997323, -1.0372604124292457, -0.08787788883151315, -0.7571191760785836, -2.526073791593191, -0.6605139804606186, -1.018251138653695, -3.7469058340480603, -0.6392319847082839, -1.8869623067381007, -1.51661368865443, -0.31155653087165747, -3.2338888873908083, -0.825321568045407, -2.0990319768731105, -0.6380776909808787, -0.9819428010695248, -0.670908153464114, -1.2391606695305133, -0.2993894954133267, -2.360718168044195, -0.9318400188718555, -1.1691457412770407, -0.8046969384225457, -1.293289017019927, -1.8420526623019409, -0.3864240813977323, -4.0184798354626885, -0.3526423810831204, -1.8415825419918075, -1.7799064125532293, -2.913291608411468, -1.0613224262247267, -1.287057728629426, -2.6280300840456925, -0.6871909257027344, -1.0952061725600775, -1.0684670111336196, -0.7536163504092863, -1.1436259536572815, -2.094168339275617, -1.6349560213962846, -1.3369847897209288, -1.2023252327940392, -0.5136053159173712, -2.535010389180097, -3.1183825094216298, -1.572648879790595, -0.1317354217331006, -0.25413430296596184, -3.4693509964723064, -1.025319885237079, -0.8345517615423037, -1.4000960323897833, -1.4810008379423434, -1.0307652302279282, -1.5013791648518504, -1.8368674646602872, -0.6270300809366646, -0.5840180231210651, -0.9159295708738683, -1.678682255732758, -0.01197866340269449, -1.9936396751763037, -0.9406014029929873, -0.356137063200493, -0.6657896376550709, -0.7935465013616838, -1.26102704063967, -1.2721993955599156, -3.1758886010756084, -0.9484137104152728, -1.125971873008085, -3.1637735665835405, -0.2127472697326398, -0.8737322092190289, -1.9041334439944098, -1.6144306415589709, -0.08623058603195777, -2.237193139998081, -1.1597416302358974, -1.340709731269418, -0.5804159516753586, -0.4225916230723974, -0.46176785082580074, -0.058138517697708614, -1.5167552297888216, -0.72434477616465, -1.3743838588409039, -0.8384023920885655, -2.29525764302666, -1.98546161028914, -0.49634133213822174, -0.2531695540220553, -2.4631730770868066, -1.8134199859191893, -1.6435930660610876, -1.4182735218613685, -1.7797835603671683, -4.536026663312294, -2.2684100784119927, -0.4698247599200014, -1.8152536365835517, -1.9437449365299853, -0.48515598058344445, -1.1686225550815437, -0.19961202324791605, -2.891901417645114, -1.1530815148910072, -1.4923688419699768, -1.3482254812914078, -0.21120641297519405, -1.2268662376441601, -2.904123207312014, -1.5367184698841636, -2.9901047176857927, -0.6876693558073199, -1.3952571337503834, -0.33843577517693657, -1.980579216287956, -1.442062776744588, -3.512472580855325, -0.20025500690617581, -0.5838474484580509, -0.5374507992333888, -0.5470984569601945, -1.5588162262855936, -3.179533519049015, -0.7647351129370346, -1.0503714814561307, -3.2784053020053463, -2.6740666484327766, -1.859620083421663, -1.373759504555442, -2.3831037375771, -0.38977540441618486, -1.511156477729814, -1.554010293109733, -1.2411036939670776, -2.233400076183951, -3.5270279731025527, -1.0437728125581052, -0.531559832975001, -3.439754165657411, -0.5639614665646657, -2.163129973782051, -0.4517059878468017, -0.6535332204914864, -0.07489124839260719, -1.4148760583296824, -3.907449279302292, -0.9774212737640089, -1.8925270202642044, -3.9910257422768147, -1.9099400115706968, -1.689832618395616, -0.0766012961618685, -2.707674381638545, -2.274669393298594, -0.6049012132407214, -0.1309080384925564, -1.4380203083221623, -1.0534531499237871, -0.6258569037490784, -0.7509294950110321, -1.1224379692913653, -1.7059105892518636, -1.7462599936541237, -1.3094567723215371], \"z\": [3.4561278457109728, 0.9489049849013629, -2.9052948550980053, 1.096511585435489, -0.6068747034381214, -4.294849163950856, -5.708751135816903, 3.33262531112591, -5.022877234250648, 2.936299716903961, -3.5482160727466727, 0.5569431707675712, -1.6201087039455029, 0.26664476488075106, 1.5737614878521908, 2.0780335505808516, -5.41276515251852, -0.7707961289334255, 1.2783500716121914, -1.1005963048634415, -1.1880679650515775, -5.403265814223928, -2.9618540922343026, 4.387587267996268, -2.804371507121231, 3.7860318784730937, 2.3549072486432605, -4.741686640296313, -3.5191540831579506, 1.648246447804766, 1.0225560239719842, 3.8744227832405995, 1.0470035176486086, 4.510070063323552, 2.889357971528466, -5.050273791887474, -2.533903477485404, -1.8320428145707535, -1.6566358001214754, 0.11950842783120397, 0.13053204548723318, 1.7055746829089475, -4.033293073745519, -0.9416430913082623, -0.7555172381991495, 3.7043037910725216, -0.14032684035453435, 1.3929478097892964, -2.4719880090279154, -1.3119715853665133, 0.20197872222135516, -0.3646713234219039, 4.4707178920389845, -0.7522432242414574, -1.3765713255475767, -5.499914520006609, -1.425013851050008, 3.399892703589118, -1.7598681709511217, 3.986809624854721, -5.493579315131176, -1.498514983548068, 2.1627756437878842, -1.7957862568966965, -0.7484065921742973, 0.12077085868220472, -2.5979419346065575, 3.705166428229373, 1.605230691539636, -0.11897469806716732, -1.9559894460542755, -0.3564591789629805, 1.4853926791270533, -5.099504384968613, -4.122555479894831, 4.104332747947654, 0.8246825610589097, -3.322823603891948, 1.3645505721407032, -2.374771238454794, -4.639740634398638, 2.949578314726158, -1.446375245878845, -0.598515413445833, 1.773426264378391, -2.7882286100417484, -0.9437168304936376, -1.8132513211019208, -1.931305857705691, -4.901570660490008, 4.365495779425166, -5.122496584394515, 0.6921371894315929, -1.6511024442412232, -4.996836928791193, -5.420559291792688, -1.9936709035137787, -0.5588776064683421, 3.163570531898631, 4.163937052714501, 1.1833209568883252, -0.3160648974185749, 3.42853857615657, 2.6950055186136543, 2.065004222094313, -2.0514716388559444, 2.209374149008931, 0.4873574743907314, -5.77348486758344, -3.0617298692092647, -2.4719852775529607, 2.6649573707709076, -2.645917113869656, 2.2259164684363766, 0.9749372842784751, -5.200197592338102, -0.9927217787211422, -4.79106523378131, -0.5008801532027976, -2.938546833035711, -1.1185621800823826, -3.5214834199237433, 1.8455849412254022, -5.454658834696137, -0.3555007205112357, -1.451052508640891, -3.13030658069484, -5.160486690995933, -1.0266738358793326, 2.4030745240218936, -1.9410504007980953, -5.71725292392043, -1.3319763370943463, -4.146198803557399, -0.5640575673817914, -1.4668542008594043, 4.588338884065778, -2.0159501260109645, -1.3139131624921765, -5.5750034672212925, 4.202870776139881, -2.6420520951813398, -4.677524739818365, 3.72002584819536, -2.0475739754080218, -4.605248839942859, -2.3214268223759564, -5.086881741129324, -2.178022285459518, 2.7124762065012282, 2.1922562245809374, 0.9358448090261327, -2.818720988392964, -0.46073955050664583, -0.02921038963567746, 0.6649659718344996, -2.613335866108372, -4.121196565045562, 0.9386515107019404, -4.800455573860549, 4.348306255193674, -0.4981682662602047, -4.9142989530388945, 0.02397375757406195, 1.8841824540037146, -3.0129672418168822, 1.948897513335221, -1.7626748230611904, -5.485157857143432, -1.4216903447264944, 3.706125836967945, 1.5470128950287423, 3.1992653142952934, 4.409863727411236, -2.804475566053962, -1.158336619962169, -1.576718972015434, 2.7174542564411093, 1.4713375162312428, -5.166274645668375, 3.8979738732259035, -3.831989703634119, -5.461354754161619, 4.185630954715918, 4.610633840791716, -3.7109009357963467, 0.41693611180518886, 3.839443019204931, -2.4536424355419086, -0.8576931539278059, -1.545012134870614, 4.052402740808756, 0.07581869270258057, 1.2634188956964598, 3.095238750421097, -2.098436959530114, -5.5856579401992645, -1.706621385868364, -0.4824663142513481, -4.2755088526442515, -2.1408339915847394, -5.654685793543198, -2.515194319917753, 1.2773878207360232, 4.28781338777189, -2.3954206749544715, -4.950104236625294, -4.643529172092884, 4.467161224367042, 0.1034370486503704, -3.834920898250339, -4.011954257565087, 2.5126712474024453, -1.79779439419063, 1.6773091405374423, -1.4462940832910443, -5.531319409509678, 1.2380380584517452, -2.264231700575573, 3.206684267432066, -2.821756345091106, -3.067673392995703, -0.2896952328350837, -5.7774612645292995, -3.2012022031775453, 2.687968766715781, 3.8465934666174553, -0.0906759686294869, 0.5856810290873904, -4.45191313871528, 3.618279863057835, -0.0743580541449429, 3.3814504981275126, -1.3267989650365815, 3.4018028162034915, 1.6750213477713833, -0.22678073296945467, 2.5295060758006622, -5.591650767755706, 3.5995254842180477, -4.407709329963337, -2.1732305144119293, -4.522706660784572, -3.6720502771811727, 2.791602516176977, 4.280819085752873, 1.8639133632460663, -4.807061938850172, 4.598805791207854, -4.494144664128673, -1.6917869961030298, -1.6452510452802143, 4.335085821774164, 3.7740235669744076, 3.9092248110768706, 2.4092901715342974, 0.23655412871166437, -5.365147605757466, 3.3176790725757757, 1.1888772995949681, 0.362883493481406, 1.9655075304130891, 0.6538344791543453, 4.577967555845933, -3.7571250589130174, -0.22340691816930658, 1.6888567429647185, 4.016855410475022, 2.7844293822666932, 2.71449783832898, -2.4687671124015043, -1.1148215284446996, -5.306857439639287, -4.232085653947171, 3.169467836831088, 0.04635401762043134, -0.5555001223828437, 4.246927456730707, 0.7332417786609318, -3.9360509206240373, -1.266301902229423, 1.9926757254575191, -4.118350909713121, 3.210893759439439, 1.3984422350062982, -5.593919739267756, -5.366088126104688, -1.909391960898494, 4.063143172093976, -2.6235025246198513, -4.701545074534064, 0.3105253058455135, -3.604408045611947, -2.3675291302632044, -1.3934013845998843, -3.2964612951916306, 4.146758223193793, -3.0624710573229454, -1.158045301157892, 0.5451760709204185, 2.918130029285865, -5.568960035088001, -5.2765496412348, 2.462786305842461, -3.5171804964788738, 2.756544999315273, -1.7461915795311915, 2.160033448670606, 4.332744968162154, -0.4334671396041605, 2.5141306375865975, 0.00304351439774031, -1.0659821259591098, -3.5546058377818412, -4.019687107468469, -5.551871658817565, 1.0173775392373674, -4.010681586435264, 0.024257904240688077, 1.657777851550816, 1.6338969249649473, -0.4580316788015315, 3.0734567121839094, 4.35427078687363, -1.4996844512261358, -3.7900671885219634, -2.056800435970928, -3.6043354770698683, -3.9941512564374237, 1.0884724040989466, -1.0930900991362122, 1.2311140238075993, -4.938918418509236, 1.1395233947699719, -1.4373317376596342, -2.352111435989986, 0.3489082888286017, 2.2492172883824937, 3.4499510058480913, 4.524583042020416, 1.9916228140234296, -0.8291782295525882, 3.4900320489117975, 2.5606399960519477, -4.910086034258399, -5.261875408293647, 3.0924456215898966, 4.133236078988065, -0.8060009341233805, 3.1266476201723536, -2.405105270047861, 4.049553964379251, 0.197306472745308, 4.002452903648986, -2.103882893727023, -5.4165599188210996, 1.2394120385903946, 4.61068883715767, 3.8166304215856366, -2.0699133092558437, 1.7653171807372656, -2.175040349287831, -3.562663050674799, 3.3870185989529107, 2.579065324370034, 1.4263952375787312, 0.912866527414101, -2.3286938649363265, -2.333991988027878, -1.6200824582457587, 1.8461846347153674, -0.9792217552927394, 1.6714039888053867, 2.6583407677244724, -1.9142557002339604, -0.34552382205252474, -1.2644666852909179, 4.609042466843536, 2.334005986282615, -1.156604867760957, -5.667410286949815, -5.037945946608492, 3.8635706688109144, 3.0014505297551084, 1.980428291227156, -4.258792008505766, 3.003085992866711, 3.437232257538237, -0.7781549792077893, -1.9780854872848765, -0.26844600946388475, 3.8297411909651915, 3.6965199104515056, 0.7605614688314084, 2.2082101022283096, 3.8102664648670848, 1.1296105039825353, -0.4415295704697568, 1.6129617984151388, -3.093182760079108, 3.524295774692308, -0.4944318829594678, -4.24332138782574, 4.069734065524757, 0.5349831066015103, -5.702081287133357, -1.6213415107051778, -4.331194226621719, -1.8917280628929394, 1.7890811067440797, -5.454142772050187, -1.314620070867722, -4.906112003635561, -3.06966123033902, -3.7899300173641746, -0.58313826285662, -0.4831150737625034, -2.075564036191507, -2.994645788908131, -3.2587720336422983, 2.3179333645577875, -0.02733251866907338, -1.5818043882855433, -3.7091768489459143, 0.33932565892378186, 4.38136696572493, -1.9505465653160199, -2.783070510084678, -4.8824978541873785, -5.016961012590156, -3.1670811450714953, -4.334773324574335, -1.6349084897169766, -3.0679903902591787, -1.43090720128147, -2.443636915108305, -4.925701478460647, -1.1354206799551223, -2.8798574944654662, -5.176257969850221, -2.5761510537377883, 1.6926361521799222, 1.9969006970277388, -0.2744184345578615, 2.4401020726110785, 4.04685992990401, 3.777304616079257, 4.115761682378824, 0.7421254602067089, -4.297890719536566, -0.8073071279398096, 1.70369225495401, -1.3013314811795897, 0.06640414692863139, 1.7595847852031419, 4.37989243373383, -3.6897387316273726, -0.16076401602434665, 2.1693765294500524, 1.8647486561663902, 2.3093324168643763, 1.2430578486108406, -2.671155848477639, 0.3707133524636026, -3.624558222550126, 0.5886324916732288, 1.9233839661457441, -1.4943152933323445, -2.5041329686350036, 1.3165367502169012, 1.4265535680889645, 1.5281311765139112, -1.977359620374552, -0.5550106489270474, -3.613089318850324, -5.545482711304519, -2.571490543305229, 4.070161571326326, -1.0879306941695832, -1.3887151617970925, -4.339969045796285, -1.803129457432556, -0.10498749788336159, 4.246415420287755, -3.1151308175299977, -4.456091755612504, 1.1495971826900506, -2.6152075738017677, -2.7712492811031373, 3.3328988973598124, -5.083422983797808, -2.062995707180044, -2.1558842920150445, -1.6805312922305164, 3.8090896057236963, -4.162837938655667, 4.44980418509994, 1.1891060132677707, 0.6721253756903875, -2.604654778862692, -5.757965767964464, -2.726998223127617, 2.59597051298521, 4.167633705110277, -3.688475745315083, 3.149212858689407, 2.093157740509521, -2.569276270930575, -4.863557223801253, 3.463885365404569, -3.747351859040721, 3.4177201045589447, -1.54810277570218, 4.3112812397838, 0.7916310871492911, 4.094279444049881, -2.919879296664547, 0.026925322686805586, 1.0877200584878386, -1.5198925229640121, 4.343308567786637, 3.5547031898262267, 2.127194331587795, -4.087870690577247, -0.18677545898537673, 2.347128263084712, 0.8070877754485988, -3.8138474170941077, -1.6265603324911133, -2.5274916950049193, -4.567095680027976, 3.4829668128830855, 4.0714843822023346, -5.092756204276435, -3.3458697938362745, 2.002427661907971, -3.6481590781424336, 4.40589728591324, -4.584214557865006, -4.498963146964764, 3.4369100049992793, 2.1488559298833207, 3.0256309398533157, -4.26875373262025, -5.111274299502037, -5.15504704953047, -5.204732647516818, -2.1004830185171683, 1.877367302247798, -1.9724084954707193, -2.8042488684801476, 3.972112684890992, 3.549348317869918, 1.6975122947439703, 1.7143073455842845, -0.3076066096140959, -0.6492984404692184, 2.8517721040945636, -3.841621545308178, 2.169772151752884, 4.067585206181595, 0.8528376292334086, -3.19889578274917, 3.008753497890992, -0.39713367733039373, 1.0822128064400305, -2.5606645535155237, -0.7475499435902977, 0.8056564442575791, -3.216072473815742, 0.02930358170348235, 1.8049011873699996, 1.567971379160542, 1.6637408628909451, -4.830102485543965, 2.459641097370091, -3.67553492539927, -4.456509638656018, -2.657501893168327, -1.5465867722079514, -2.4708130346801944, -0.7203458156614282, -0.13941024025132442, 4.366836120666396, -1.8071661237210765, -4.485701713449764, 4.424373509424851, 0.3617825094584397, -2.4479687481366748, -2.295417406813809, -0.7404738575027148, 3.4967593182851635, -4.689611936233595, 2.03998317483289, 4.207133568408994, -5.604165421422726, -1.2720865491154392, 0.7138662770557227, -0.5247808256616961, 2.573018254962805, 3.2393751246071583, 4.534937690483857, 2.1467374086950395, -1.0636039773232957, -2.514055187429757, -3.1928672745297813, -4.1360323087428235, -1.641754397125963, 3.170037694610339, -3.212397466146992, -5.152538193102889, 2.0529125802949837, -4.311255126143948, -0.26129174242489306, 1.0782695745008795, 1.6519493196281436, -2.523576686075845, -2.4517554481036075, -4.170509051848957, -0.47229762835357914, -1.8388387492467837, 3.166139765805446, 2.5901209526998086, -4.759021124209816, -0.9370694500792593, 3.2921540346614604, -1.2647119640911066, 2.220441783360399, 2.782769780782073, 3.284140986275088, 0.2200236218355771, -5.367643748773562, -5.723759713010891, 1.6181418436996022, -0.8089784411136991, -4.225611205345172, 2.0970208788274505, 1.2949184785904757, -3.7158740817277436, -3.1296574218516526, -1.9703829474066068, -3.4032983119242215, 3.0537580861437617, -0.11043747505605683, 0.7105740523261037, -1.3279169772493127, 2.53258262042844, -4.113139016549587, -1.3635671401513143, -2.483819986542412, -3.5853011113515345, -5.524705366179098, -0.2802586347925109, 3.8093295437628845, -0.9809206452182373, 0.9801268830356733, 0.7467233293995648, 1.2857013531793315, 2.2228221579159877, -1.4559211515899557, 2.6670937193694337, -3.3489247524187915, 2.2675001529908334, 0.3310483604941137, -0.006536050478955779, -1.9286439253714147]}],\n",
        "                        {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"View 0\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"View 1\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"View 2\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 0.375, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"View 3\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 0.375, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"scene\": {\"domain\": {\"x\": [0.0, 0.45], \"y\": [0.625, 1.0]}}, \"scene2\": {\"domain\": {\"x\": [0.55, 1.0], \"y\": [0.625, 1.0]}}, \"scene3\": {\"domain\": {\"x\": [0.0, 0.45], \"y\": [0.0, 0.375]}}, \"scene4\": {\"domain\": {\"x\": [0.55, 1.0], \"y\": [0.0, 0.375]}}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"carpet\": [{\"aaxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"white\", \"linecolor\": \"white\", \"minorgridcolor\": \"white\", \"startlinecolor\": \"#2a3f5f\"}, \"baxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"white\", \"linecolor\": \"white\", \"minorgridcolor\": \"white\", \"startlinecolor\": \"#2a3f5f\"}, \"type\": \"carpet\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"contour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"heatmap\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmap\"}], \"heatmapgl\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"histogram2d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2d\"}], \"histogram2dcontour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"surface\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"colorscale\": {\"diverging\": [[0, \"#8e0152\"], [0.1, \"#c51b7d\"], [0.2, \"#de77ae\"], [0.3, \"#f1b6da\"], [0.4, \"#fde0ef\"], [0.5, \"#f7f7f7\"], [0.6, \"#e6f5d0\"], [0.7, \"#b8e186\"], [0.8, \"#7fbc41\"], [0.9, \"#4d9221\"], [1, \"#276419\"]], \"sequential\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"sequentialminus\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}},\n",
        "                        {\"responsive\": true}\n",
        "                    ).then(function(){\n",
        "                            \n",
-       "var gd = document.getElementById('ec605ae7-f730-4b92-a304-d1d045d4b5ae');\n",
+       "var gd = document.getElementById('0f3205d4-ae8c-4635-b868-78858398d0d1');\n",
        "var x = new MutationObserver(function (mutations, observer) {{\n",
        "        var display = window.getComputedStyle(gd).display;\n",
        "        if (!display || display === 'none') {{\n",
diff --git a/docs/source/index.rst b/docs/source/index.rst
index 66f95ecc1068423e8711a99432bc1f690682aac8..5db7d746c64b84ebc91f392a26cc5d1344dc1dcf 100644
--- a/docs/source/index.rst
+++ b/docs/source/index.rst
@@ -6,7 +6,7 @@
 Welcome to multiview_generator's documentation!
 ===============================================
 
-To install SMuDGE, clone the gitlab repository and run
+To install MAGE, clone the gitlab repository and run
 
 .. code-block::
 
diff --git a/multiview_generator/base.py b/multiview_generator/base.py
index 6a61bcc26d05cd79c59f3d5e218d24503cdc58b1..f616c4a5ee5a76406714ec2600fe90bec1a1f442 100644
--- a/multiview_generator/base.py
+++ b/multiview_generator/base.py
@@ -46,7 +46,6 @@ class MultiViewSubProblemsGenerator:
     :type n_classes: int
     :type n_views: int
     :type error_matrix: np.ndarray
-    :type latent_size_multiplicator: float
     :type n_features: int or array-like
     :type class_weights: float or array-like
     :type redundancy: float
@@ -60,7 +59,7 @@ class MultiViewSubProblemsGenerator:
     """
 
     def __init__(self, random_state=42, n_samples=100, n_classes=4, n_views=4,
-                 error_matrix=None, latent_size_multiplicator=2, n_features=3,
+                 error_matrix=None, n_features=3,
                  class_weights=1.0, redundancy=0.0, complementarity=0.0,
                  complementarity_level=3,
                  mutual_error=0.0, name="generated_dataset", config_file=None,
@@ -88,7 +87,6 @@ class MultiViewSubProblemsGenerator:
                                                 type_needed=float).reshape(
                 (n_classes, 1))
             self.complementarity_level = format_array(complementarity_level, n_classes, type_needed=int).reshape(((n_classes, 1)))
-            self.latent_size_mult = latent_size_multiplicator
             self._init_sub_problem_config(sub_problem_configurations,
                                           sub_problem_type)
             self.error_matrix = init_error_matrix(error_matrix, n_classes,
@@ -190,7 +188,7 @@ class MultiViewSubProblemsGenerator:
 
         report_string += "\n\n## Statistical analysis"
 
-        bayes_error = pd.DataFrame(self.bayes_error/self.n_samples_per_class,
+        bayes_error = pd.DataFrame(self.bayes_error,
                      columns=["Class " + str(i + 1)
                             for i in range(self.n_classes)],
                      index=['View ' + str(i + 1) for i in
@@ -211,8 +209,9 @@ class MultiViewSubProblemsGenerator:
 
         report_string += tabulate(dt_error, headers='keys', tablefmt='github')
 
-        self._plot_2d_error(output_path, error=self.error_2D, name="report_bayesian_error_2D.html")
-        self._plot_2d_error(output_path, error=self.error_2D_dt, name="report_dt_error_2D.html")
+        if save:
+            self._plot_2d_error(output_path, error=self.error_2D, file_name="report_bayesian_error_2D.html")
+            self._plot_2d_error(output_path, error=self.error_2D_dt, file_name="report_dt_error_2D.html")
 
         report_string += "\n\nThis report has been automatically generated on {}".format(datetime.now().strftime("%B %d, %Y at %H:%M:%S"))
         if save:
@@ -221,7 +220,7 @@ class MultiViewSubProblemsGenerator:
         self.report = report_string
         return report_string
 
-    def _plot_2d_error(self, output_path, error=None, name=""):
+    def _plot_2d_error(self, output_path, error=None, file_name=""):
         label_index_list = np.concatenate([np.where(self.y == i)[0] for i in
                                            np.unique(
                                                self.y)])
@@ -244,17 +243,19 @@ class MultiViewSubProblemsGenerator:
         fig.update_layout(paper_bgcolor='rgba(0,0,0,0)',
                           plot_bgcolor='rgba(0,0,0,0)')
         fig.update_xaxes(showticklabels=True, )
-        plotly.offline.plot(fig, filename=os.path.join(output_path, name),
+        plotly.offline.plot(fig, filename=os.path.join(output_path, self.name + file_name),
                             auto_open=False)
 
     def _gen_dt_error_mat(self, n_cv=10):
         # TODO : Seems to rely on random state, but unsure
         self.dt_error = np.zeros((self.n_classes, self.n_views))
         self.error_2D_dt = np.zeros((self.n_samples, self.n_views,))
+        self.dt_preds = np.zeros((self.n_samples, self.n_views,))
         classifiers = [generator.get_bayes_classifier() for generator in self._sub_problem_generators]
 
         for view_index, view_data in enumerate(self.dataset):
             pred = cross_val_predict(classifiers[view_index], view_data, self.y, cv=n_cv, )
+            self.dt_preds[:,view_index] = pred
             self.error_2D_dt[:, view_index] = np.equal(self.y, pred).astype(int)
             label_indices = [np.where(self.y == i)[0] for i in
                              range(self.n_classes)]
diff --git a/multiview_generator/base_strs.py b/multiview_generator/base_strs.py
index fef289c54135bcb7f85841eae31bbc6682dc72f6..77b9195ce2e287f7e61094a95280214768e7edba 100644
--- a/multiview_generator/base_strs.py
+++ b/multiview_generator/base_strs.py
@@ -1,3 +1,3 @@
-GENE = "SMuDGE"
-GENE_F = "Synthetic Multimodal Dataset Generation Engine"
+GENE = "MAGE"
+GENE_F = "Multiview Artificial Generation Engine"
 LINK = "https://gitlab.lis-lab.fr/dev/multiview_generator"
\ No newline at end of file
diff --git a/multiview_generator/gaussian_classes.py b/multiview_generator/gaussian_classes.py
new file mode 100644
index 0000000000000000000000000000000000000000..2a6dbdcb180ce123914e275d2b4936e2233745c5
--- /dev/null
+++ b/multiview_generator/gaussian_classes.py
@@ -0,0 +1,317 @@
+
+import numpy as np
+import itertools
+import math
+from scipy.special import erfinv
+
+from .utils import format_array, get_config_from_file, \
+    init_random_state, init_error_matrix, init_list
+from .base_strs import *
+from .base import MultiViewSubProblemsGenerator
+from multiview_generator import sub_problems
+
+
+class MultiViewGaussianSubProblemsGenerator(MultiViewSubProblemsGenerator):
+
+    def __init__(self, random_state=42, n_samples=100, n_classes=4, n_views=4,
+                 error_matrix=None, n_features=3,
+                 class_weights=1.0, redundancy=0.05, complementarity=0.05,
+                 complementarity_level=3,
+                 mutual_error=0.01, name="generated_dataset", config_file=None,
+                 sub_problem_type="base", sub_problem_configurations=None,
+                 sub_problem_generators="StumpsGenerator", random_vertices=False
+                 , **kwargs):
+        """
+
+        :param random_state: int or np.random.RandomState object to fix the
+        random seed
+        :param n_samples: int representing the number of samples in the dataset
+        (the real number of samples can be different in the output dataset, as
+        it will depend on the class distribution of the samples)
+        :param n_classes: int the number of classes in the dataset
+        :param n_views: int the number of views in the dataset
+        :param error_matrix: the error matrix of size n_classes x n_views
+        :param n_features: list of int containing the number fo features for
+        each view
+        :param class_weights: list of floats containing the proportion of
+        samples in each class.
+        :param redundancy: float controlling the ratio of redundant samples
+        :param complementarity: float controlling the ratio of complementary
+        samples
+        :param complementarity_level: float controlling the ratio of views
+        having a good description of the complementary samples.
+        :param mutual_error: float controlling the ratio of complementary
+        samples
+        :param name: string naming the generated dataset
+        :param config_file: string path pointing to a yaml config file
+        :param sub_problem_type: list of string containing the class names for
+        each sub problem type
+        :param sub_problem_configurations: list of dict containing the specific
+        configuration for each sub-problem generator
+        :param kwargs: additional arguments
+        """
+
+        MultiViewSubProblemsGenerator.__init__(self, random_state=random_state,
+                                               n_samples=n_samples,
+                                               n_classes=n_classes,
+                                               n_views=n_views,
+                                               error_matrix=error_matrix,
+                                               n_features=n_features,
+                                               class_weights=class_weights,
+                                               redundancy=redundancy,
+                                               complementarity=complementarity,
+                                               complementarity_level=complementarity_level,
+                                               mutual_error=mutual_error,
+                                               name=name,
+                                               config_file=config_file,
+                                               sub_problem_type=sub_problem_type,
+                                               sub_problem_configurations=sub_problem_configurations,
+                                               **kwargs)
+        self.random_vertices = format_array(random_vertices, n_views, bool)
+        self.sub_problem_generators = format_array(sub_problem_generators, n_views, str)
+
+    def generate_multi_view_dataset(self, ):
+        """
+        This is the main method. It will generate a multiview dataset according
+        to the configuration.
+        To do so,
+
+        * it generates the labels of the multiview dataset,
+        * then it assigns all the subsets of samples (redundant, ...)
+        * finally, for each view it generates a monoview dataset according
+        to the configuration
+
+
+        :return: view_data a list containing the views np.ndarrays and y, the
+        label array.
+        """
+
+        # Generate the labels
+        self.error_2D = np.ones((self.n_samples, self.n_views))
+        # Generate the sample descriptions according to the error matrix
+        self._sub_problem_generators = [_ for _ in range(self.n_views)]
+        for view_index in range(self.n_views):
+            sub_problem_generator = getattr(sub_problems,
+                                            self.sub_problem_generators[view_index])(
+                n_classes=self.n_classes,
+                n_features=self.n_features[view_index],
+                random_vertices=self.random_vertices[view_index],
+                errors=self.error_matrix[:,view_index],
+                random_state=self.rs,
+                n_samples_per_class=self.n_samples_per_class,
+                **self.sub_problem_configurations[view_index])
+            vec = sub_problem_generator.gen_data()
+            self._sub_problem_generators[view_index] = sub_problem_generator
+            self.view_names[view_index] = "view_{}_{}".format(view_index, sub_problem_generator.view_name)
+            self.bayes_error[view_index, :] = sub_problem_generator.bayes_error/self.n_samples_per_class
+            self.generated_data[view_index, :, :,:self.n_features[view_index]] = vec
+            self.selected_vertices[view_index] = sub_problem_generator.selected_vertices
+            self.descriptions[view_index, :,:] = sub_problem_generator.descriptions
+
+        self.y = []
+        for ind, n_samples_ in enumerate(self.n_samples_per_class):
+            self.y += [ind for _ in range(n_samples_)]
+        self.y = np.array(self.y, dtype=int)
+
+
+        self.sample_ids = ["{}_l_{}".format(ind, self.y[ind]) for ind in
+                           range(self.n_samples)]
+
+        self.dataset = [np.zeros((self.n_total_samples,
+                                  self.n_features[view_index]))
+                        for view_index in range(self.n_views)]
+
+        self.assign_mutual_error()
+        self.assign_complementarity()
+        self.assign_redundancy()
+
+        self.get_distance()
+        return self.dataset, self.y
+
+    def assign_mutual_error(self):
+        """
+        Method assigning the mis-describing views to the mutual error samples.
+        """
+        for class_ind in range(self.n_classes):
+            mutual_start = np.sum(self.n_samples_per_class[:class_ind])
+            mutual_end = np.sum(self.n_samples_per_class[:class_ind])+self.mutual_error_per_class[class_ind]
+            for view_index in range(self.n_views):
+                if len(np.where(self.descriptions[view_index, class_ind, :]==-1)[0])<self.mutual_error_per_class[class_ind]:
+                    raise ValueError('For class {}, view {}, the amount of '
+                                     'available mis-described samples is {}, '
+                                     'and for mutual error to be assigned MAGE '
+                                     'needs {}, please reduce the amount of '
+                                     'mutual error or increase the error in '
+                                     'class {}, view {}'.format(class_ind,
+                                                                view_index,
+                                                                len(np.where(self.descriptions[view_index, class_ind, :]==-1)[0]),
+                                                                self.mutual_error_per_class[class_ind],
+                                                                class_ind,
+                                                                view_index))
+                mis_described_random_ind = self.rs.choice(np.where(self.descriptions[view_index, class_ind, :]==-1)[0], self.mutual_error_per_class[class_ind], replace=False)
+                self.dataset[view_index][mutual_start:mutual_end, :] = self.generated_data[view_index, class_ind, mis_described_random_ind, :self.n_features[view_index]]
+                self.error_2D[mutual_start:mutual_end, view_index] = 0
+                self.descriptions[view_index, class_ind, mis_described_random_ind] = 0
+            for sample_ind in np.arange(start=mutual_start, stop=mutual_end):
+                self.sample_ids[sample_ind] = self.sample_ids[sample_ind]+"_m"
+
+    def assign_complementarity(self):
+        """
+        Method assigning mis-described and well-described views to build
+        complementary samples
+        """
+        self.complementarity_ratio = 0
+        for class_ind in range(self.n_classes):
+            complem_level = int(self.complementarity_level[class_ind])
+            complem_start = np.sum(self.n_samples_per_class[:class_ind])+self.mutual_error_per_class[class_ind]
+            complem_ind = 0
+            while complem_level != 0:
+                avail_errors = np.array([len(np.where(self.descriptions[view_index, class_ind, :] ==-1)[0]) for view_index in range(self.n_views)])
+                avail_success = np.array([len(np.where(self.descriptions[view_index, class_ind, :] == 1)[0]) for view_index in range(self.n_views)])
+
+                cond=True
+
+                while cond:
+                    if np.sum(avail_errors) == 0 or np.sum(avail_success) < self.n_views - complem_level:
+                        cond = False
+                        break
+                    elif len(np.where(avail_errors > 0)[0]) < complem_level:
+                        cond = False
+                        break
+                    self.sample_ids[complem_start+complem_ind] += "_c"
+                    self.complementarity_ratio += 1/self.n_samples
+                    sorted_inds = np.argsort(-avail_errors)
+                    selected_failed_views = sorted_inds[:complem_level]
+                    sorted_inds = np.array([i for i in np.argsort(-avail_success) if
+                                            i not in selected_failed_views])
+                    selected_succeeded_views = sorted_inds[
+                                               :self.n_views - complem_level]
+                    for view_index in range(self.n_views):
+                        if view_index in selected_failed_views:
+                            self.error_2D[complem_start+complem_ind, view_index] = 0
+                            chosen_ind = int(self.rs.choice(np.where(self.descriptions[view_index, class_ind, :]==-1)[0],size=1, replace=False))
+                            self.dataset[view_index][complem_start+complem_ind, :] = self.generated_data[view_index, class_ind, chosen_ind, :self.n_features[view_index]]
+                            self.descriptions[view_index, class_ind, chosen_ind] = 0
+                            self.sample_ids[complem_start+complem_ind] += "_{}".format(view_index)
+                            avail_errors[view_index]-=1
+                        elif view_index in selected_succeeded_views:
+                            chosen_ind = int(self.rs.choice(np.where(self.descriptions[view_index, class_ind, :]==1)[0],size=1, replace=False))
+                            self.dataset[view_index][complem_start + complem_ind,:] = self.generated_data[view_index, class_ind, chosen_ind, :self.n_features[view_index]]
+                            self.descriptions[view_index, class_ind, chosen_ind] = 0
+                            avail_success[view_index] -= 1
+                    complem_ind += 1
+                complem_level -= 1
+            self.n_complem[class_ind] = complem_ind
+
+    def assign_redundancy(self):
+        """
+        Method assigning the well-describing views to the redundant samples.
+        """
+        self.real_redundancy_level=0
+        for class_ind in range(self.n_classes):
+            redun_start = int(np.sum(self.n_samples_per_class[:class_ind])+self.mutual_error_per_class[class_ind]+self.n_complem[class_ind])
+            redun_end = np.sum(self.n_samples_per_class[:class_ind+1])
+            for view_index in range(self.n_views):
+                if len(np.where(self.descriptions[view_index, class_ind, :] == 1)[0]) < redun_end - redun_start and len(np.where(self.descriptions[view_index, class_ind, :] == -1)[0])>0:
+                    raise ValueError("For class {}, view {}, reduce the error "
+                                     "(now: {}), or increase the complemetarity "
+                                     "level (now: {}), there is not enough good "
+                                     "descriptions with the current "
+                                     "configuration".format(class_ind,
+                                                            view_index,
+                                                            self.error_matrix[class_ind,
+                                                                              view_index],
+                                                            self.complementarity_level[class_ind]))
+                remaining_good_desc = np.where(self.descriptions[view_index, class_ind, :] == 1)[0]
+                self.dataset[view_index][redun_start:redun_end,:] = self.generated_data[view_index, class_ind,remaining_good_desc, :self.n_features[view_index]]
+                self.descriptions[view_index, class_ind, remaining_good_desc] = 0
+            for sample_ind in np.arange(start=redun_start, stop=redun_end):
+                self.sample_ids[sample_ind] = self.sample_ids[sample_ind] + "_r"
+                self.real_redundancy_level+=1/self.n_samples
+
+    def get_distance(self):
+        """
+        Method that records the distance of each description to the ideal
+        decision limit, will be used later to quantify more precisely the
+        quality of a description.
+        """
+        self.distances = np.zeros((self.n_views, self.n_samples))
+        for view_index, view_data in enumerate(self.dataset):
+            for sample_ind, data in enumerate(view_data):
+                # The closest dimension to the limit
+                dist = np.min(np.abs(data))
+                # dist = np.linalg.norm(data-self.selected_vertices[view_index][self.y[sample_ind]])
+                self.sample_ids[sample_ind] += "-{}_{}".format(view_index, round(dist, 2))
+                self.distances[view_index,sample_ind] = dist
+
+    def _get_generator_report(self, view_index, doc_type=".md"):
+        return "home made gaussian generator"
+
+    def _init_sub_problem_config(self, sub_problem_configs, sub_problem_type):
+        """
+        Initialize the sub problem configurations.
+
+        :param sub_problem_configs:
+        :param sub_problem_type:
+        :return:
+        """
+
+        if sub_problem_configs is None:
+            self.sub_problem_configurations = [
+                {"n_clusters_per_class": 1,
+                 "class_sep": 1.0, }
+                for _ in range(self.n_views)]
+        else:
+            self.sub_problem_configurations = init_list(sub_problem_configs,
+                                                        size=self.n_views,
+                                                        type_needed=dict)
+
+    def _init_base_arguments(self):
+        self.n_samples_per_class = (
+                self.class_weights * self.n_samples).astype(int)
+        self.n_max_samples = np.max(self.n_samples_per_class)
+        self.n_samples = np.sum(self.n_samples_per_class)
+        self.n_complem  =np.zeros(self.n_classes)
+        self.n_max_features = np.max(self.n_features)
+        self.generated_data = self.rs.uniform(low=-self.latent_size_mult, high=self.latent_size_mult, size=(self.n_views, self.n_classes, self.n_max_samples, self.n_max_features))
+        self.descriptions = np.zeros((self.n_views, self.n_classes, self.n_max_samples,))
+        self.n_total_samples = np.sum(self.n_samples_per_class)
+        sample_indices = np.arange(int(np.sum(self.n_samples_per_class)))
+        self.rs.shuffle(sample_indices)
+        self.class_sample_indices = [
+            sample_indices[sum(self.n_samples_per_class[:ind]):
+                            sum(self.n_samples_per_class[:ind + 1])]
+            for ind in range(self.n_classes)]
+        self.well_described = [[_ for _ in range(self.n_views)] for _ in
+                               range(self.n_classes)]
+        self.misdescribed = [[_ for _ in range(self.n_views)] for _ in
+                             range(self.n_classes)]
+        self.redundancy_indices = [_ for _ in range(self.n_classes)]
+        self.mutual_error_indices = [_ for _ in range(self.n_classes)]
+        self.complementarity_samples = [_ for _ in range(self.n_classes)]
+        self.good_views_indices = [_ for _ in range(self.n_classes)]
+        self.bad_views_indices = [_ for _ in range(self.n_classes)]
+        self.available_init_indices = self.class_sample_indices.copy()
+        self.sample_ids = ["sample_{}".format(ind)
+                            for ind
+                            in range(int(np.sum(self.n_samples_per_class)))]
+        self.bayes_error = np.zeros((self.n_views, self.n_classes))
+        self.sub_problems = [[] for _ in range(self.n_views)]
+        self.mutual_error_per_class = np.array(
+            [int(float(self.mutual_error[class_ind]) * n_sample_) for class_ind, n_sample_ in
+             enumerate(self.n_samples_per_class)])
+        self.redundancy_per_class = np.array(
+            [int(self.redundancy[class_ind] * n_sample_) for class_ind, n_sample_ in enumerate(self.n_samples_per_class)])
+        self.view_data = [np.zeros((self.n_samples, self.n_features[view_ind])) for view_ind in range(self.n_views)]
+        self.all_mis_described = [[] for _ in range(self.n_views)]
+        self.all_well_described = [[] for _ in range(self.n_views)]
+        self.selected_vertices = [_ for _ in range(self.n_views)]
+        self.avail_well_described = [[] for _ in range(self.n_views)]
+        self.avail_mis_described = [[] for _ in range(self.n_views)]
+        self.mutual_error_indices = [[] for _ in range(self.n_views)]
+        self.redundancy_indices = [[] for _ in range(self.n_views)]
+        self.complementarity_indices = [[[] for _ in range(self.n_classes)] for _
+                                   in
+                                   range(self.n_views)]
+        self.complem_names = [[] for _ in range(self.n_classes)]
+        self.complem_error = [[] for _ in range(self.n_classes)]
\ No newline at end of file
diff --git a/multiview_generator/sub_problems.py b/multiview_generator/sub_problems.py
index a0805ab7e676a2032f35e4a2cfe05d23c6b8b14c..b08c7f347c280785fa7a345449b6aaf5690d58b6 100644
--- a/multiview_generator/sub_problems.py
+++ b/multiview_generator/sub_problems.py
@@ -5,9 +5,21 @@ from scipy.special import erfinv
 import yaml
 
 
-class BaseSubProblem():
+class BaseSubProblem:
+    """
+    The base class for all the sub-problem generators.
+    """
 
     def __init__(self, n_classes=2, n_features=2, random_vertices=True, errors=np.array([0.5,0.5]), random_state=np.random.RandomState(42), n_samples_per_class=np.array([100,100]), **configuration):
+        """
+
+        :param n_classes: The number of classes
+        :param n_features: The nuber of features describing the samples
+        :param errors: The error rate for each class
+        :param random_state: A numpy.random.RandomState object
+        :param n_samples_per_class: A list conatining the number of samples for each class
+        :param configuration: sub-problem specific configuration.
+        """
         self.n_classes = n_classes
         self.random_vertices = random_vertices
         self.errors = errors
@@ -20,6 +32,11 @@ class BaseSubProblem():
         self.view_name = "generated"
 
     def gen_report(self):
+        """
+        General method the generate the report on the view.
+
+        :return: A string containing the general report for the view
+        """
         view_string = "\n\nThis view is generated with {}, with the following configuration : \n```yaml\n".format(
             self.__class__.__name__)
         view_string += yaml.dump(self.config,
@@ -34,10 +51,16 @@ class StumpsGenerator(BaseSubProblem):
     def gen_data(self):
         """
         Generates the samples according to gaussian distributions with scales
-        computed with the given error and class separation
+        computed with the given error and class separation. This sub-problem is
+        easily understandable by a decision tree.
+
+        The features are built as :
+        relevant_features : the  math.ceil(math.log2(self.n_classes)) first ones,
+        uniform noise features : all the remaining ones
+
 
-        :param view_index:
-        :return:
+        :return: data a np.ndarray of dimension n_classes, n_samples_per_class,
+        n_features containing the samples' descriptions, sorted by class
         """
         self.n_relevant_features = math.ceil(math.log2(self.n_classes))
         self.view_name = "stumps"
@@ -83,6 +106,9 @@ class StumpsGenerator(BaseSubProblem):
         return data
 
     def gen_report(self):
+        """
+        Generates the specific report for StumpsGenerator.
+        """
         base_str = BaseSubProblem.gen_report(self)
         base_str += "\n\nThis view has {} features, among which {} are relevant for classification (they are the {} first columns of the view) the other are filled with uniform noise.".format(
             self.n_features, self.n_relevant_features, self.n_relevant_features)
@@ -91,18 +117,16 @@ class StumpsGenerator(BaseSubProblem):
 
     def get_bayes_classifier(self):
         from sklearn.tree import DecisionTreeClassifier
-        return DecisionTreeClassifier(max_depth=1)
+        return DecisionTreeClassifier(max_depth=math.ceil(math.log2(self.n_classes)))
+
 
 class TreesGenerator(BaseSubProblem):
-    """We stay with depth 2 trees ATM"""
+    """ Work in progress : Similar generator as StumpsGenerator, but that
+    generates several blobs per class """
 
     def gen_data(self):
         """
-        Generates the samples according to gaussian distributions with scales
-        computed with the given error and class separation
-
-        :param view_index:
-        :return:
+        WIP
         """
         self.n_relevant_features = math.ceil(math.log2(self.n_classes))
         self.view_name = "tree_depth_2"
@@ -142,7 +166,6 @@ class TreesGenerator(BaseSubProblem):
 
             # mis_described += list(np.unique(np.where(
             #     np.any(abs(vec[class_ind] - center_coord)>class_sep, axis=1))[0]))
-            # print(len(mis_described)*2/self.n_samples_per_class)
             n_samples_per_blob = int(self.n_samples_per_class[class_ind]/(self.n_relevant_features+1))
             external_error_percentage = self.n_relevant_features / (
                         self.n_relevant_features * 2 + self.n_relevant_features ** 2)
@@ -151,7 +174,6 @@ class TreesGenerator(BaseSubProblem):
                         1 / self.n_relevant_features) - 1)))
             cov = np.identity(
                 self.n_relevant_features) * external_scale**2
-            # print(internal_scale, external_scale)
             for dim_index, update_coord in enumerate(center_coord):
                 beg = n_samples+dim_index*n_samples_per_blob
                 end = n_samples+(dim_index+1)*n_samples_per_blob
@@ -185,6 +207,9 @@ class TreesGenerator(BaseSubProblem):
         return data
 
     def gen_report(self):
+        """
+        WIP
+        """
         base_str = BaseSubProblem.gen_report(self)
         base_str += "\n\nThis view has {} features, among which {} are relevant for classification (they are the {} first columns of the view).".format(self.n_features, self.n_relevant_features, self.n_relevant_features)
         base_str += "\n\n Its empirical bayesian classifier is a decision tree of depth 3"
@@ -194,22 +219,27 @@ class TreesGenerator(BaseSubProblem):
         from sklearn.tree import DecisionTreeClassifier
         return DecisionTreeClassifier(max_depth=2)
 
+
 class RingsGenerator(BaseSubProblem):
 
     def gen_data(self):
         """
         Generates the samples according to gaussian distributions with scales
-        computed with the given error and class separation
+        computed with the given error and class separation. The generator first
+        computes a radius according to the gaussian distribution, then
+        generates n_features-1 random angles to build the polar coordinates of
+        the samples. The dataset returned is the cartesian version of this
+        "polar" dataset.
 
-        :param view_index:
-        :return:
+        :return: data a np.ndarray of dimension n_classes, n_samples_per_class,
+        n_features containing the samples' descriptions, sorted by class
         """
         if self.n_features<2:
             raise ValueError("n_features for view {} must be at least 2, (now: {})".format(1, self.n_features))
         self.view_name = "rings"
         data = np.zeros((self.n_classes, max(self.n_samples_per_class), self.n_features))
         class_sep = self.config["class_sep"]
-        vertices = (np.arange(self.n_classes)+2)*class_sep
+        vertices = (np.arange(self.n_classes)+1)*class_sep
 
         if self.random_vertices == True:
             selected_vertices = self.rs.choice(np.arange(len(vertices)),
@@ -222,8 +252,12 @@ class RingsGenerator(BaseSubProblem):
         for class_ind, center_coord in enumerate(
                 self.selected_vertices):
             error = self.errors[class_ind]
-            scale = ((class_sep/2) / math.sqrt(2)) *  (1 /
-                erfinv(1 - 2*error))
+            if class_ind==0 or class_ind==self.n_classes-1:
+                scale = ((class_sep/2) / math.sqrt(2)) *  (1 /
+                    erfinv(1 - 2*error))
+            else:
+                scale = ((class_sep/2) / math.sqrt(2)) *  (1 /
+                    erfinv( 2*(1-error)**(1/2)-1))
             radii[class_ind, :] = self.rs.normal(center_coord, scale,
                                                  self.n_samples_per_class[
                                                      class_ind])
@@ -254,6 +288,9 @@ class RingsGenerator(BaseSubProblem):
         return data
 
     def gen_report(self):
+        """
+        Generates the specific report for StumpsGenerator.
+        """
         base_str = BaseSubProblem.gen_report(self)
         base_str += "\n\nThis view has {} features, all of them are relevant for classification.".format(
             self.n_features)
@@ -262,9 +299,13 @@ class RingsGenerator(BaseSubProblem):
 
     def get_bayes_classifier(self):
         from sklearn.svm import SVC
-        return SVC(kernel='rbf', gamma=0.1, C=0.001)
+        return SVC(kernel='rbf', gamma='scale', C=0.1)
+
 
 def to_cartesian(radius, angles):
+    """
+    Transforms polar coordinates to cartesian coordinates.
+    """
     a = np.concatenate((np.array([2 * np.pi]), angles))
     si = np.sin(a)
     si[0] = 1
diff --git a/multiview_generator/tests/test_multiple_sub_problems.py b/multiview_generator/tests/test_multiple_sub_problems.py
index 38b09e557e021e0626c2076b2ba0ea1efd9523f7..e2ce0c3cc3997271862b76cd4fe75a631dd5e725 100644
--- a/multiview_generator/tests/test_multiple_sub_problems.py
+++ b/multiview_generator/tests/test_multiple_sub_problems.py
@@ -1,19 +1,19 @@
-import unittest
-import numpy as np
-
-from ..multiple_sub_problems import MultiViewSubProblemsGenerator
-
-
-class Test_MultiViewSubProblemsGenerator(unittest.TestCase):
-
-    @classmethod
-    def setUpClass(cls):
-        pass
-
-    @classmethod
-    def tearDownClass(cls):
-        pass
-
-    def test_simple(self):
-        gene = MultiViewSubProblemsGenerator()
+# import unittest
+# import numpy as np
+#
+# from ..multiple_sub_problems import MultiViewSubProblemsGenerator
+#
+#
+# class Test_MultiViewSubProblemsGenerator(unittest.TestCase):
+#
+#     @classmethod
+#     def setUpClass(cls):
+#         pass
+#
+#     @classmethod
+#     def tearDownClass(cls):
+#         pass
+#
+#     def test_simple(self):
+#         gene = MultiViewSubProblemsGenerator()
 
diff --git a/multiview_generator/utils.py b/multiview_generator/utils.py
index 4510dc202ba01fab813f086de86b0f0f4c3b861c..306176254ac17f6ccccf6d8232c145ed82edf6b3 100644
--- a/multiview_generator/utils.py
+++ b/multiview_generator/utils.py
@@ -36,26 +36,49 @@ def format_array(input, size, type_needed=int):
 
 
 def get_config_from_file(file_path):
+    """
+    Loads the configuration for the yaml config file
+
+    :param file_path: path to the config file.
+    :return:
+    """
     with open(file_path) as config_file:
         yaml_config = yaml.safe_load(config_file)
     return yaml_config
 
 
 def init_class_weights(class_weights, n_classes):
+    """
+    Initializes the class weights. Sets a unifrom distribution if no
+    distribution is specified.
+
+    :param class_weights:
+    :param n_classes:
+    :return:
+    """
     if class_weights is None:
         class_weights = np.ones(n_classes)
     return class_weights / np.sum(class_weights)
 
 
-def init_sub_problem_config(sub_problem_configs, n_views):
-    if sub_problem_configs is None:
-        return [{"n_informative":1,
-                 "n_redundant":1,
-                 "n_repeated":1,
-                 "n_clusters_per_class":1,
-                 "class_sep":1,} for _ in range(n_views)]
+# def init_sub_problem_config(sub_problem_configs, n_views):
+#     if sub_problem_configs is None:
+#         return [{"n_informative":1,
+#                  "n_redundant":1,
+#                  "n_repeated":1,
+#                  "n_clusters_per_class":1,
+#                  "class_sep":1,} for _ in range(n_views)]
+
 
 def init_error_matrix(error_matrix, n_classes, n_views):
+    """
+    Initializes the error matrix
+
+    :param error_matrix:
+    :param n_classes:
+    :param n_views:
+    :return:
+    """
     if error_matrix is None:
         error_matrix = np.zeros((n_classes, n_views)) + 0.3
     elif isinstance(error_matrix, np.ndarray):
@@ -78,6 +101,12 @@ def init_error_matrix(error_matrix, n_classes, n_views):
 
 
 def init_random_state(random_state):
+    """
+    Initalizes the random state.
+
+    :param random_state:
+    :return:
+    """
     if isinstance(random_state, int):
         rs = np.random.RandomState(random_state)
     elif isinstance(random_state, np.random.RandomState):
@@ -90,6 +119,14 @@ def init_random_state(random_state):
 
 
 def init_array_attr(attr, n_repeat, base_val=0):
+    """
+    Transforms a unique attribute into an array with the same value.
+
+    :param attr:
+    :param n_repeat:
+    :param base_val:
+    :return:
+    """
     if attr is None:
         return np.ones((n_repeat, 1)) * base_val
     elif type(attr) == float or type(attr) == int:
@@ -101,6 +138,14 @@ def init_array_attr(attr, n_repeat, base_val=0):
 
 
 def init_list(input, size, type_needed=dict):
+    """
+    Transforms a unique attribute into a list with the same value.
+
+    :param attr:
+    :param n_repeat:
+    :param base_val:
+    :return:
+    """
     if isinstance(input, type_needed):
         return [input for _ in range(size)]
     elif isinstance(input, list):
diff --git a/requirements.txt b/requirements.txt
index 7e4fe279e39409d45b9cc43e880bdfcbc3f131ba..945c9b46d684f08ec84cb316e1dc0061e361f794 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,14 +1 @@
-numpy
-scipy
-scikit-learn>=0.19
-plotly
-h5py
-pyyaml
-jupyter
-tabulate
-pandas
-sphinx>=1.8
-numpydoc
-pandoc
-nbsphinx
-nbsphinx_link
\ No newline at end of file
+.
\ No newline at end of file
diff --git a/setup.py b/setup.py
index f2ca597981846c04edb4ba4d0fdb176403e8f095..b659dfacb9fd5739a18590a9555bff23e4106ca7 100644
--- a/setup.py
+++ b/setup.py
@@ -143,7 +143,8 @@ def setup_package():
     version = get_version()
     multiview_generator_dir = 'multiview_generator'
     set_version(multiview_generator_dir, version)
-    description = 'A multiview dataset generator '
+    description = 'MAGE : Multi-view Artificial Generation Engine, a non-naïve ' \
+                  'multiview dataset generator '
     here = os.path.abspath(os.path.dirname(__file__))
     with open(os.path.join(here, 'README.rst'), encoding='utf-8') as readme:
         long_description = readme.read()
@@ -171,13 +172,15 @@ def setup_package():
         'Operating System :: POSIX :: Linux',
         'Operating System :: MacOS'],
     keywords = ('machine learning, supervised learning, classification, '
-                'ensemble methods, boosting, kernel')
+                'datat generation, multi-view, multi-modal, multi-class')
     packages = find_packages(exclude=['*.tests'])
-    install_requires = ['scikit-learn>=0.19', 'numpy', 'scipy', 'cvxopt' ]
+    install_requires = ['scikit-learn>=0.19', 'numpy', 'scipy', "plotly",
+                        "h5py", 'pyyaml', 'tabulate', 'pandas', ]
     python_requires = '>=3.5'
     extras_require = {
         'dev': ['pytest', 'pytest-cov'],
-        'doc': ['sphinx', 'numpydoc', 'sphinx_gallery', 'matplotlib']}
+        'doc': ['sphinx>=1.8', 'numpydoc', 'sphinx_gallery', 'matplotlib', "jupyter",
+                'pandoc', 'nbshpinx', 'nbsphinx_link']}
     include_package_data = True
 
     setup(name=name,